commit a31dd28d4fdc924d8a6a0ee8cbf90ed4fcc14fb7 Author: wikbom Date: Sat Jun 24 13:41:56 2023 +0200 test push for separate repo zad8 diff --git a/README.md b/README.md new file mode 100644 index 0000000..28328c1 --- /dev/null +++ b/README.md @@ -0,0 +1,9 @@ +Challenging America word-gap prediction +=================================== + +Guess a word in a gap. + +Evaluation metric +----------------- + +LikelihoodHashed is the metric diff --git a/bigram_model.ipynb b/bigram_model.ipynb new file mode 100644 index 0000000..859faa0 --- /dev/null +++ b/bigram_model.ipynb @@ -0,0 +1,287 @@ +{ + "cells": [ + { + "cell_type": "code", + "execution_count": 2, + "id": "813cb6fc", + "metadata": {}, + "outputs": [], + "source": [ + "#!/usr/bin/env python3\n", + "\n", + "import sys\n", + "from collections import Counter \n", + "# print(sys.executable)\n", + "\n", + "def ngrams(iter, size):\n", + " ngram = []\n", + " for item in iter:\n", + " ngram.append(item)\n", + " if len(ngram) == size:\n", + " yield tuple(ngram)\n", + " ngram = ngram[1:]" + ] + }, + { + "cell_type": "code", + "execution_count": 3, + "id": "4ea32711", + "metadata": {}, + "outputs": [], + "source": [ + "def update_counts(dict_dest, dict_temp):\n", + " for key, value in dict_temp.items():\n", + " dict_dest[key]= dict_dest.get(key, 0) + 1\n", + " return dict_dest" + ] + }, + { + "cell_type": "code", + "execution_count": 4, + "id": "02f1dd40", + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "{'a': 2, 'b': 3}\n" + ] + } + ], + "source": [ + "a = {\"a\":1, \"b\":2}\n", + "b = {\"a\":1, \"b\":2}\n", + "print(update_counts(a,b))" + ] + }, + { + "cell_type": "code", + "execution_count": 5, + "id": "01ba3ec0", + "metadata": {}, + "outputs": [], + "source": [ + "\n", + "def update_V_stats(text, V, V_bigrams):\n", + " V_b = list(ngrams(text.split(\" \"), 2))\n", + " count_V = Counter(text.split(\" \"))\n", + " count_V_bigrams = Counter(V_b)\n", + "# V = {key: count_V.get(key, 0) + V.get(key, 0) for key in set(V) | set(count_V)}\n", + "# V_bigrams = {key: count_V_bigrams.get(key, 0) + V_bigrams.get(key, 0) for key in set(V_bigrams) | set(count_V_bigrams)}\n", + " update_counts(V, count_V)\n", + " update_counts(V_bigrams, count_V_bigrams)\n", + " return V, V_bigrams\n" + ] + }, + { + "cell_type": "code", + "execution_count": 6, + "id": "2f1f10c4", + "metadata": {}, + "outputs": [], + "source": [ + "def Prob_bigram(presc_word, foll_word, Udict, Bdict): \n", + " return Bdict.get((presc_word, foll_word))/Udict.get(presc_word)\n", + "\n", + "def Prob_of_word(word, word_before, word_after, Udict, Bdict):\n", + " return Prob_bigram(word_before, word, Udict, Bdict) * Prob_bigram(word, word_after, Udict, Bdict)" + ] + }, + { + "cell_type": "code", + "execution_count": 7, + "id": "0351a8b4", + "metadata": {}, + "outputs": [], + "source": [ + "def get_last_word(text):\n", + " \"\"\"Return the last word of a string.\"\"\"\n", + " last_word = \"\"\n", + " for i in range(len(text)-1, -1, -1):\n", + " if text[i] == ' ':\n", + " return last_word[::-1]\n", + " else:\n", + " last_word += text[i]\n", + " return last_word[::-1]\n", + "\n", + "def get_first_word(text):\n", + " \"\"\"Return the last word of a string.\"\"\"\n", + " word = \"\"\n", + " for i in range(len(text)-1):\n", + " if text[i] == ' ':\n", + " return word\n", + " else:\n", + " word += text[i]\n", + " return word" + ] + }, + { + "cell_type": "code", + "execution_count": 10, + "id": "7032a595", + "metadata": { + "scrolled": false + }, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "0.5\n" + ] + } + ], + "source": [ + "print(Prob_bigram(\"from\",\"the\",V,V2))" + ] + }, + { + "cell_type": "code", + "execution_count": 46, + "id": "cd9443a2", + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "305\n" + ] + } + ], + "source": [ + "p_list = []\n", + "for word in V:\n", + " p_list.append(Prob_two())" + ] + }, + { + "cell_type": "code", + "execution_count": 9, + "id": "82f052a0", + "metadata": {}, + "outputs": [ + { + "ename": "UnicodeDecodeError", + "evalue": "'charmap' codec can't decode byte 0x98 in position 5004: character maps to ", + "output_type": "error", + "traceback": [ + "\u001b[1;31m---------------------------------------------------------------------------\u001b[0m", + "\u001b[1;31mUnicodeDecodeError\u001b[0m Traceback (most recent call last)", + "\u001b[1;32m\u001b[0m in \u001b[0;36m\u001b[1;34m\u001b[0m\n\u001b[0;32m 3\u001b[0m \u001b[0ma\u001b[0m\u001b[1;33m=\u001b[0m\u001b[1;36m1\u001b[0m\u001b[1;33m\u001b[0m\u001b[1;33m\u001b[0m\u001b[0m\n\u001b[0;32m 4\u001b[0m \u001b[1;32mwith\u001b[0m \u001b[0mopen\u001b[0m\u001b[1;33m(\u001b[0m\u001b[1;34m\"./test-A/in.tsv\"\u001b[0m\u001b[1;33m,\u001b[0m \u001b[1;34m'r+'\u001b[0m\u001b[1;33m)\u001b[0m \u001b[1;32mas\u001b[0m \u001b[0mfile\u001b[0m\u001b[1;33m:\u001b[0m\u001b[1;33m\u001b[0m\u001b[1;33m\u001b[0m\u001b[0m\n\u001b[1;32m----> 5\u001b[1;33m \u001b[1;32mfor\u001b[0m \u001b[0mline\u001b[0m \u001b[1;32min\u001b[0m \u001b[0mfile\u001b[0m\u001b[1;33m:\u001b[0m\u001b[1;33m\u001b[0m\u001b[1;33m\u001b[0m\u001b[0m\n\u001b[0m\u001b[0;32m 6\u001b[0m \u001b[1;31m# print(list(ngrams(line.split(\" \"), 2)))\u001b[0m\u001b[1;33m\u001b[0m\u001b[1;33m\u001b[0m\u001b[1;33m\u001b[0m\u001b[0m\n\u001b[0;32m 7\u001b[0m \u001b[0mV\u001b[0m\u001b[1;33m,\u001b[0m \u001b[0mV2\u001b[0m \u001b[1;33m=\u001b[0m \u001b[0mupdate_V_stats\u001b[0m\u001b[1;33m(\u001b[0m\u001b[0mline\u001b[0m\u001b[1;33m,\u001b[0m \u001b[0mV\u001b[0m\u001b[1;33m,\u001b[0m \u001b[0mV2\u001b[0m\u001b[1;33m)\u001b[0m\u001b[1;33m\u001b[0m\u001b[1;33m\u001b[0m\u001b[0m\n", + "\u001b[1;32mc:\\program files\\python39\\lib\\encodings\\cp1250.py\u001b[0m in \u001b[0;36mdecode\u001b[1;34m(self, input, final)\u001b[0m\n\u001b[0;32m 21\u001b[0m \u001b[1;32mclass\u001b[0m \u001b[0mIncrementalDecoder\u001b[0m\u001b[1;33m(\u001b[0m\u001b[0mcodecs\u001b[0m\u001b[1;33m.\u001b[0m\u001b[0mIncrementalDecoder\u001b[0m\u001b[1;33m)\u001b[0m\u001b[1;33m:\u001b[0m\u001b[1;33m\u001b[0m\u001b[1;33m\u001b[0m\u001b[0m\n\u001b[0;32m 22\u001b[0m \u001b[1;32mdef\u001b[0m \u001b[0mdecode\u001b[0m\u001b[1;33m(\u001b[0m\u001b[0mself\u001b[0m\u001b[1;33m,\u001b[0m \u001b[0minput\u001b[0m\u001b[1;33m,\u001b[0m \u001b[0mfinal\u001b[0m\u001b[1;33m=\u001b[0m\u001b[1;32mFalse\u001b[0m\u001b[1;33m)\u001b[0m\u001b[1;33m:\u001b[0m\u001b[1;33m\u001b[0m\u001b[1;33m\u001b[0m\u001b[0m\n\u001b[1;32m---> 23\u001b[1;33m \u001b[1;32mreturn\u001b[0m \u001b[0mcodecs\u001b[0m\u001b[1;33m.\u001b[0m\u001b[0mcharmap_decode\u001b[0m\u001b[1;33m(\u001b[0m\u001b[0minput\u001b[0m\u001b[1;33m,\u001b[0m\u001b[0mself\u001b[0m\u001b[1;33m.\u001b[0m\u001b[0merrors\u001b[0m\u001b[1;33m,\u001b[0m\u001b[0mdecoding_table\u001b[0m\u001b[1;33m)\u001b[0m\u001b[1;33m[\u001b[0m\u001b[1;36m0\u001b[0m\u001b[1;33m]\u001b[0m\u001b[1;33m\u001b[0m\u001b[1;33m\u001b[0m\u001b[0m\n\u001b[0m\u001b[0;32m 24\u001b[0m \u001b[1;33m\u001b[0m\u001b[0m\n\u001b[0;32m 25\u001b[0m \u001b[1;32mclass\u001b[0m \u001b[0mStreamWriter\u001b[0m\u001b[1;33m(\u001b[0m\u001b[0mCodec\u001b[0m\u001b[1;33m,\u001b[0m\u001b[0mcodecs\u001b[0m\u001b[1;33m.\u001b[0m\u001b[0mStreamWriter\u001b[0m\u001b[1;33m)\u001b[0m\u001b[1;33m:\u001b[0m\u001b[1;33m\u001b[0m\u001b[1;33m\u001b[0m\u001b[0m\n", + "\u001b[1;31mUnicodeDecodeError\u001b[0m: 'charmap' codec can't decode byte 0x98 in position 5004: character maps to " + ] + } + ], + "source": [ + "V, V2 = {}, {}\n", + "k = 100\n", + "a=1\n", + "with open(\"./test-A/in.tsv\", 'r+') as file:\n", + " for line in file:\n", + "# print(list(ngrams(line.split(\" \"), 2)))\n", + " V, V2 = update_V_stats(line, V, V2)\n", + "# a+=1\n", + "# if a>100:\n", + "# break\n", + " \n", + "V=dict(sorted(V.items(), key=lambda x: x[1], reverse=True)[:k])\n", + "V2=dict(sorted(V2.items(), key=lambda x: x[1], reverse=True)[:k])\n", + "\n", + "print(V, V2)" + ] + }, + { + "cell_type": "code", + "execution_count": 18, + "id": "e6111e8b", + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "{'and': 7316, 'of': 7298, 'to': 7265, 'the': 7241, 'a': 7023, 'in': 6632, 'that': 6061, 'for': 5813, 'by': 5175, 'as': 5148, 'on': 4965, 'with': 4962, 'at': 4917, 'be': 4867, 'is': 4856, 'it': 4349, 'not': 4218, 'was': 4170, 'from': 4122, 'or': 3992, 'which': 3956, 'this': 3838, 'The': 3751, 'have': 3715, 'all': 3553, 'are': 3500, 'but': 3357, 'an': 3356, 'In': 3322, 'will': 3218, 'his': 3206, 'he': 3165, 'been': 3074, 'one': 2960, 'has': 2951, 'who': 2860, 'their': 2859, 'It': 2850, 'they': 2794, 'had': 2624, 'were': 2456, 'no': 2409, 'so': 2348, 'tho': 2334, 'would': 2300, 'any': 2267, 'when': 2076, 'there': 2030, 'than': 1949, 'I': 1939, 'out': 1917, 'more': 1901, 'other': 1884, 'upon': 1801, 'up': 1788, 'made': 1756, 'DAILY': 1740, 'if': 1731, 'its': 1706, 'two': 1701, 'them': 1652, 'only': 1640, 'time': 1626, 'some': 1613, 'such': 1612, 'about': 1556, 'may': 1553, 'we': 1543, 'can': 1528, 'him': 1505, 'of\\\\nthe': 1505, 'said': 1470, 'Is': 1463, '.': 1443, 'being': 1431, 'our': 1417, 'now': 1410, 'very': 1405, 'do': 1404, 'into': 1402, 'over': 1354, 'WHEELING': 1347, 'should': 1308, 'most': 1297, 'after': 1273, 'under': 1263, 'A': 1250, 'before': 1230, 'could': 1186, 'first': 1186, 'great': 1183, 'every': 1181, 'He': 1170, 'these': 1150, 'those': 1147, 'day': 1141, 'what': 1136, 'man': 1127, 'same': 1122, 'Mr.': 1119} {('of', 'the'): 5890, ('to', 'the'): 3881, ('in', 'the'): 3730, ('and', 'the'): 2467, ('on', 'the'): 2362, ('for', 'the'): 2213, ('by', 'the'): 2027, ('to', 'be'): 2016, ('that', 'the'): 1859, ('of', 'a'): 1762, ('at', 'the'): 1711, ('with', 'the'): 1492, ('from', 'the'): 1444, ('WHEELING', 'DAILY'): 1347, ('it', 'is'): 1197, ('In', 'the'): 1152, ('will', 'be'): 1132, ('in', 'a'): 1082, ('has', 'been'): 939, ('of', 'tho'): 939, ('have', 'been'): 935, ('is', 'a'): 895, ('of', 'this'): 884, ('to', 'a'): 871, ('one', 'of'): 845, ('as', 'a'): 832, ('for', 'a'): 829, ('of', 'his'): 826, ('the', 'same'): 806, ('and', 'a'): 801, ('as', 'the'): 800, ('with', 'a'): 790, ('It', 'is'): 786, ('it', 'was'): 719, ('all', 'the'): 705, ('and', 'that'): 700, ('is', 'the'): 676, ('that', 'he'): 670, ('was', 'a'): 663, ('in', 'this'): 638, ('by', 'a'): 632, ('out', 'of'): 616, ('may', 'be'): 596, ('as', 'to'): 595, ('of', 'their'): 584, ('is', 'not'): 574, ('upon', 'the'): 572, ('and', 'in'): 562, ('the', 'first'): 560, ('that', 'it'): 553, ('had', 'been'): 543, ('would', 'be'): 536, ('the', 'most'): 529, ('and', 'to'): 524, ('part', 'of'): 522, ('a', 'few'): 520, ('to', 'have'): 514, ('of', 'our'): 500, ('of', 'all'): 492, ('to', 'make'): 489, ('It', 'was'): 485, ('he', 'was'): 469, ('to', 'tho'): 465, ('into', 'the'): 462, ('there', 'is'): 462, ('that', 'they'): 453, ('and', 'it'): 450, ('under', 'the'): 441, ('in', 'his'): 440, ('did', 'not'): 422, ('which', 'the'): 418, ('to', 'do'): 418, ('they', 'are'): 417, ('was', 'the'): 413, ('should', 'be'): 405, ('on', 'a'): 404, ('is', 'to'): 403, ('at', 'a'): 398, ('be', 'a'): 396, ('the', 'United'): 393, ('was', 'not'): 391, ('more', 'than'): 389, ('he', 'had'): 388, ('but', 'the'): 382, ('day', 'of'): 381, ('of', 'which'): 373, ('when', 'the'): 371, ('not', 'be'): 370, ('that', 'a'): 370, ('to', 'his'): 367, ('before', 'the'): 364, ('can', 'be'): 356, ('of', 'said'): 355, ('in', 'tho'): 354, ('such', 'a'): 354, ('shall', 'be'): 352, ('the', 'other'): 352, ('of', 'that'): 348, ('over', 'the'): 347, ('number', 'of'): 347}\n", + "[('first\\\\n', 'on'), ('that\\\\n', 'in'), ('been', 'same,\\\\nand'), ('a', 'by'), ('Gossett', 'other\\\\ngentlemen'), ('but\\\\nclinging', 'and'), ('mo', 'people'), ('own', '\\\\ntion'), ('and\\\\nwere', '011'), ('heart.\\\\n', 'was'), ('what\\xad\\\\never', 'the'), ('John', '\\\\nBaptist,'), ('few', 'a'), ('be\\xad\\\\n', 'their'), ('first,', 'are'), ('elevator;', 'the'), ('on', 'they\\\\nwere'), ('at', 'stage\\\\nor'), ('the', 'village'), ('disaffection\\\\n', 'the'), ('con-\\\\n', 'may'), ('hour\\\\nexiinusiing', 'lie'), ('6', 'to'), ('we\\\\n', 'aoeaaas'), ('Western', '\\\\n8i'), ('yesterday\\\\n', 'been'), ('were\\\\n', 'to'), ('to', 'supplications'), ('perhaps,', 'is'), ('do', 'to,'), ('unthoughtedly', 'that\\\\nthe'), ('was', 'on\\\\nschedule'), ('room\\\\n', 'and'), ('instruments', '\\\\nlast.'), ('pending', '\\\\nfore'), ('least\\\\nThe', 'Settlement'), ('be', 'that'), ('thoro', 'In'), ('boasted\\\\nforeign', 'movements,'), ('to', 'nt'), ('individual\\\\neases', 'bo'), ('railroad', 'approaches'), ('and\\\\nState', 'Michigan,'), ('toy,\\\\n', 'playing'), ('will\\\\nsoon', 'if'), ('members', 'the'), ('HIanchc', '\\\\nceeded'), ('Cleveland\\\\n', 'return'), ('the', '\\\\nIs'), ('about', 'a\\\\nyear,'), ('and\\\\nIlttiuiiwli', 'anti'), ('true', 'Ned'), ('they\\\\nfound', 'smoking'), ('attend', 'it'), ('m', '\\\\n•2.29'), ('statement', 'that'), ('Henderson,', 'Washing\\\\nton,Pa.,owuer'), ('There', '\\\\nare'), ('keen', 'lancets,'), ('pane', 'and'), ('won', 'Mrt.'), ('was', '\\\\nabove'), ('Legislature\\\\n', 'its'), ('tbe\\\\n', 'scientific'), ('it', 'unnecessary'), ('composed', 'a\\\\nrectangular'), ('it', 'in\\\\nthe'), ('will', 'relatively'), ('building.\\\\n', 'Dorchester'), ('series', 'wsndcriDgs\\\\nIrom'), ('order,\\\\ngenerally', 'the'), ('05;504,5', '0«,'), ('supervis-\\\\n', 'of'), ('conveyed', 'mortgaged,'), ('and', 'she\\\\nplneed'), ('Center.', 'Garnett'), ('oi', '\\\\nThe'), ('that', 'felt'), ('corresponded\\\\n', 'people'), ('suffering,', 'even'), ('down', '\\\\narm'), ('they', '\\\\nthis'), ('to', '\\\\norated.'), ('a', 'deceiver'), ('can\\\\n', 'examined'), ('equipment', 'have'), ('rello\\\\n', 'to'), ('be\\\\n', 'unduly'), ('elevation', 'literature,'), ('the\\\\n', 'in'), ('There', '\\\\ntransit'), ('the\\\\nneeds', 'modern'), ('life.\\\\n', 'approaching'), ('rising', '156%'), ('the\\\\nleaders', 'them,'), ('ilaro', 'opposition'), ('the', '\\\\nsance,'), ('the', 'nnd'), ('work\\xad\\\\ning', 'the'), ('lapped', 'with'), ('I\\\\n', 'will'), ('somowhat\\\\n', 'Never'), ('deliberately', '\\\\nwith'), ('fried.', 'tell'), ('al\\\\n', 'fundB'), ('I', 'so\\\\nrestless'), ('of', 'to'), ('degrees', 'four'), ('up', 'many\\\\nfortifications'), ('de.\\\\ntached', 'nor'), ('commission', 'season.\\\\nFlashing'), ('Porter', 'his\\\\nlifetime:'), ('Circle,\"', 'the'), ('making', 'imprint'), ('entrenched\\\\nminers,', 'the'), ('let', 'who'), ('a', 'against'), ('grand', 'to'), ('that', 'hired'), ('the', 'what\\xad\\\\never'), ('lucre,', 'palms'), ('in', \"turn!'\\\\n'Read\"), ('of\"', 'delivered,'), ('have', 'the'), ('OKDKK', 'enclose'), ('pots.\\\\n', 'blowers'), ('cites\\\\n', 'Paris'), ('not', 'than'), ('dream', 'paradise,'), ('was', 'up.\\\\nDave'), ('the', 'who'), ('having', 'twice\\\\nshot'), ('the', 'd\\\\nIt'), ('the', 'cemetery'), ('said', 'should'), ('most', 'and'), ('in\\\\n', 'his'), ('actual', 'of'), ('attend', 'it'), ('less\\\\n', 'has'), ('why\\\\nAmerica', 'forced'), ('peri\\\\n', 'from'), ('aforosald,thence', '\\\\nallai'), ('instant\\\\n', 'particularly'), ('side', 'also'), ('i\\\\n', 'existence,'), ('all', 'singular'), ('the\\\\n', 'has'), ('mo:', 'on'), ('every', 'is'), ('these\\\\n', 'and'), ('coming', 'again,'), ('McLoughlin,', 'Mulberry'), ('\"', 'a'), ('ho\\\\nwould', 'him.'), ('finally', 'up'), ('city', 'again'), ('which\\\\nho', 'with'), ('Miss', 'was'), ('brick', 'and\\\\nlot.'), ('had\\\\n', 's'), ('represented.\\\\nWe', 'allow'), ('In', 'to'), ('tor', '\\\\ntransaction'), ('a', 'He'), ('any', '\\\\nsels'), ('element\\\\nmost', 'In'), ('tli\\\\n', 'debato'), ('of', \"Mitchell's\"), ('the', '\\\\nstill'), ('fourteen\\\\n', 'of'), ('by\\\\n', 'Board'), (\"man's\", '\\\\nand'), ('give', 'for'), ('J\\\\n', 'clothing'), ('and', 'propellers\\\\nkept'), ('bis\\\\n', 'personal'), ('Bed\\\\nford,', 'diagonals'), ('has', 'bulk'), ('battle', 'during'), ('member', '\\\\nparliament'), ('Underwood\\\\nand', 'Furry.'), ('the', 'co\\\\nJoyle'), ('his-\\\\ntory,', 'tho'), ('673,', '682.'), ('larger', 'ceut'), ('fc\\\\n', 'is'), ('have', '\\\\nhold'), ('ever', 'great'), ('«-1', 'and'), ('Boys', 'longer'), ('punch.\\\\n', 'down'), ('pungent', 'a\\\\neeches'), ('gold', 'rock'), ('that\\\\n', 'a'), ('new,\\\\n', 'are,'), ('company', 'select'), ('sixty', 'The\\\\nFreight'), ('there', 'a'), ('lighting', 'Iri\\\\nAmerica'), ('that', '\\\\nthe'), ('of', 'Georges'), ('year', 'a\\\\nprune'), ('on', 'at'), ('capitu-\\\\n', 'from'), ('to', 'moun-\\\\ntain.'), ('anil', 'about'), ('measures\\\\n', 'be'), ('and\\\\n', 'there'), ('Walla', 'Oregon;\\\\nFort'), ('Legislature', '\\\\nprescribed'), ('if\\\\n', 'had'), ('thev', 'known'), ('typewriters.\\\\n', 'would'), ('natural', 'than'), ('a', 'kind\\\\nand'), ('in\\\\n', 'lovo'), ('nerves,', 'doing'), ('becoming,', '\\\\nThe'), ('commodities', 'an\\\\nIncreased'), ('military', '\\\\nW'), ('pennant', 'in'), ('the', 'one,'), ('*\\\\n', 'Saloon,'), ('B.', 'Lewis.'), ('water,', 'recogulzo'), ('not', 'the'), ('motion', 'Mr.'), ('master', 'all'), ('had', 'insurance'), ('very\\\\n', 'margin'), ('loan\\\\nmay', 'itself'), ('amendment\\\\n', 'Eldkidqk'), ('unchanged', '1120.'), ('It.', 'Huff'), ('man', 'loses\\\\nIhe'), ('secured,', 'wit;'), ('his', 'jusl'), ('very', 'sheep'), ('and\\\\n', 'of'), ('that\\\\n', 'was'), ('II', 'tu'), ('like\\\\n', 'talons'), ('Czapkay,', 'the*'), ('best', 'of'), ('rocker', 'wr'), ('notion', 'only'), ('.', 'W.'), ('20\\\\nyears', 'rcdconi'), ('as', 'fever,'), ('cards', 'necromancers;'), ('it\\\\n', 'example'), ('Alice\\\\nwas', 'consuming'), ('tho', '1»a\\\\nspoke'), ('success.\\\\n', 'colored'), ('that', 'been'), ('in', 'office'), ('1003\\\\nWalnut', 'on'), ('a\\\\n', 'about'), ('the\\\\n', 'Senator'), (';', 'this'), ('structure', '\\\\nthe'), ('that', 'have'), ('made', 'the'), ('this', '\\\\nthe'), ('nt', 'Hourbon'), ('you', '\\\\nwe'), ('Is', '\\\\nmost'), ('in\\xad\\\\ntense', 'and'), ('as\\\\n', 'i?'), ('of', 'until'), ('of', '\\\\nber'), ('n', 'fresh'), ('subsisting', 'navy,is'), ('on\\\\n', 'they'), ('GjiKc;', 'WatiS^c,'), ('the\\\\n', 'STAR'), ('of', 'elements,'), ('pursued.\\\\n', 'there'), ('by\\\\nthe', 'of'), ('fern', 'she'), ('ill', 'into'), ('township', 'are\\\\nthe'), ('with', 'precision\\\\nand'), ('girl\\\\n', 'as'), ('line.', 'told'), ('mostly', '\\\\nexterior'), ('carry\\\\n', 'the'), ('raos\\\\nnoticeable', 'that'), ('from\\\\n', 'down.'), ('the', 'agent\\\\nthat'), ('that', 'This'), ('every\\\\n', 'population'), ('southern', 'congeal.\\\\n\"I'), ('certifi-\\\\ncates', 'stock'), ('into', 'treasur]\\\\nthe'), ('bonds\\\\n', 'so'), ('known', 'No.'), ('tit', 'per'), ('it', 'mine'), ('earn\\\\n', 'own'), ('warrant\\\\na', 'speedv.'), ('be-\\\\nJi.no', '*.'), ('of', 'contract'), ('far', 'possible'), ('dark\\\\n', 'of'), ('it\\\\nis', 'that'), ('these', '\\\\nlarts,'), ('the', '\\\\nof'), ('existing', 'relative'), ('over', 'land,'), ('of', 'for'), ('mueh', 'and'), ('*®d\\\\n', 'contiguous'), ('designated', 'the'), ('of\\\\n', 'devilish'), ('has\\\\n', 'his'), ('to', 'possible'), ('...\\\\n', 'Elva'), ('had', 're\\\\ncently'), ('sleeping', 'careers\\\\nin'), ('before\\\\n', 'Judge'), ('against\\\\n', 'Government.'), ('streets,', 'field.\\\\nYoo'), ('their\\\\nwagons', 'aro'), ('and', 'ou\\\\nsaid'), ('woman', 'Emi-\\\\nline,'), ('active\\\\nthat', 'was'), ('no', '\\\\nof'), ('river,', 'a'), ('their', '\\\\ntative»'), ('went', 'that'), ('re-\\\\n', 'he'), ('do', '\\\\nalways'), ('eighth\\\\n', 'an'), ('tho', 'j\\\\ns'), ('feet', 'Inches'), ('under\\\\nthis', 'has'), ('across', 'evening'), ('necossary', 'convince'), ('teeth,', 'without'), ('fight', 'at'), ('>1', 'certain'), ('been', '\\\\nthree'), ('Koonce', 'Shuttles-\\\\nworth'), ('as', 'a'), ('her', 'to'), ('manners;\\\\n', 'friendly'), ('on', 'V\\\\n\"Like'), ('the', '\\\\ndock'), ('magic', \"Sandy's\"), ('Marshfield,', 'with'), ('even', 'com-\\\\nbined'), ('a', 'his'), ('the\\\\n', 'latter'), ('to', 'so.'), ('on', '\\\\ntee'), ('with', 'At'), ('l;or', 'lew\\\\nmoments'), ('families', 'raised;'), ('crew,', 'whal¬\\\\ning.'), ('Bldg.\\\\n', 'C.'), ('course,', 'high-\\\\neat'), ('in', 'one'), ('subsequently\\\\nexamined,', 'they'), ('wite.\\\\n', 'wifej'), ('and', 'for'), ('vcre\\\\\\\\i»t«l,', 'in'), ('C.', 'came,'), ('of\\\\n', 'law,'), ('number', 'be'), ('support', '\\\\ndoctrines'), ('all', 'from'), ('which', 'notc'), ('Consul', 'investigatiug'), ('were', 'for'), ('Interest\\\\nend', 'of'), ('the', 'preceding'), ('of', 'party?'), ('or', '\\\\nvessels'), ('cutter', 'some\\\\ntwenty-five'), ('lr\\\\n', 'and'), ('note,\\\\nset', 'in'), ('back¬\\\\n', 'by'), ('ooa.\\\\n', 'to'), ('came\\\\nI', 'work,'), ('an-\\\\nchored', 'Lintin'), ('Great', '\\\\nrhe'), ('touch', 'York\\\\nfirms'), ('tho', 'intor-\\\\nuau'), ('exhibited\\\\nthe', 'or'), ('Bk', 'scald\\xad\\\\ned;'), ('Debt;”', 'those'), ('tho', 'and'), ('67', 'He'), ('nothing', 'saw'), ('bicycle\\\\n', 'in'), ('said\\\\n', 'so'), ('Hitchcock,\\\\n', 'The'), ('aa', 'figure'), ('of', 'acres\\\\nor'), ('or', 'until'), ('year', 'and'), ('135', 'en\\\\ntirely'), ('(tick,\\\\n', 'bis'), ('private\\\\n', 'of'), ('laden', 'opium\\\\nand'), ('there', 'donned'), ('itself.\"\\\\n', 'it'), ('have', 'the'), ('contrc\\\\n', 'tho'), ('removal', '\\\\nrefuse'), ('which\\\\nhas', 'practically'), ('certainty', 'this'), ('the', 'man'), ('ducks\\\\n', 'chickens'), ('to', 'drunk'), ('of', 'and\\\\ndelinquency'), ('left', 'I'), ('they', 'killed\\\\nm'), ('of\\\\nrain', 'drought'), ('At', 'coodualon'), ('to', 'considerable\\\\nheight'), ('the', 'parent'), ('by', 'charge'), ('a', 'was\\\\nhad'), ('name\\\\n', 'which'), ('would\\\\n', 'through'), ('snatched,', 'quick'), ('some', 'at'), ('arisen', '\\\\nmar'), ('the.', 'of'), ('peraon8,', '\\\\nhaa'), ('whose\\\\nparty', 'ts'), ('cause', 'any'), ('militia', 'can'), ('to\\\\n', 'and'), ('witnessed.\\\\n', '\"uionciu'), ('never', 'heard'), ('only', 'surplus'), ('the', 'Church'), ('and', 'a'), ('have', 'papers'), ('the', '\"sweet\\\\nlooking'), ('laud,', 'of'), ('primary', 'file\\\\nwith'), ('history', '\\\\npoetry'), ('Congressman', '\\\\nsea'), ('that\\\\n', 'time'), ('Quesado\\\\n', 'tlio'), ('will', '\\\\ndecidedly'), ('has', 'is'), ('inspector', 'already'), ('And', 'the'), ('spring\\\\nof', 'I'), ('and', 'and\\\\nHairlson'), ('Mayor', 'as'), ('hy\\\\n', 'shadow'), ('Sub-\\\\n', 'Mr.'), ('pre¬\\\\npare', 'her'), ('scv\\\\n', 'seconds.'), ('an\\\\n', 'the'), ('fairs.', 'expending'), ('have\\\\n', 'one,'), ('the\\\\n', 'and'), ('fol-\\\\n', 'an'), ('Pc\\\\nomac', 'resolved'), ('election.\\\\n', 'parlies'), ('tho', '\\\\nurer'), ('and,', 'it\\\\na'), ('at', 'low'), ('all', '\\\\nfor'), ('bits;', 'him\\\\neach'), ('The', 'continued'), ('the\\\\n', 'company'), ('twenty\\\\nyears,', 'mai'), ('cornmii\\\\ntee,', 'authority'), ('only', 'John'), ('that', 'of'), ('meandered', '\\\\naround'), ('to', 'political\\\\ncapital'), ('first', 'at'), ('the\\\\npurse', 'of'), ('could\\\\nnot', 'so.'), ('of\\\\nthe', 'and'), ('ques-\\\\n', 'to'), ('govern¬\\\\nment', 'this'), ('or', 'any'), ('to', 'down'), ('grazing', 'the'), ('of\\\\nthe', 'Hall,'), ('measure,\\\\nand', 'who'), ('were', 'by'), ('tho', 'llad'), ('ol\\\\nan', 'which,'), ('dismissing', '\\\\nmagistrates'), ('n\\\\n', 'political'), ('.', 'owner'), ('Chas.\\\\nSklodowiki,', '\\\\nSloan,'), ('see', '\\\\nfood'), ('eastern\\\\n', 'mills'), ('thought', 'greatest'), ('total', 'of'), ('to', '\\\\nthe'), ('be', 'a'), ('enleietl', 'life'), ('was', 'up'), ('by', 'hand\\\\nof'), ('Catholic', 'in'), ('defence;', 'benefit'), ('awi\\\\nth', 'and'), ('this', '\\\\narrangement'), ('been', '\\\\nWe'), ('expifefcta\\\\n', 'sevprul'), ('and', 'death,'), ('is\\\\nsaid,', 'cau'), ('be\\\\n', 'In'), ('*', 'l,'), ('a', '\\\\nto'), ('wa-\\\\nto', 'conquered.'), ('be-\\\\nreavement?', 'is'), ('He', '\\\\nand'), ('sub\\xad\\\\n', 'in'), ('the', 'of'), ('to\\\\n', 'along'), ('in-\\\\n', 'tax,'), ('of\\\\n', 'enabling'), ('upon', 'footing.\"\\\\nAugust\\'s'), ('supreme', 'of'), ('family.', 'healthier\\\\nthe'), ('follow.', 'rcbols,'), ('\\'98,\"\\\\nwhich', 'given'), ('So,', 'although\\\\ntho'), ('kinder', '\\\\nlike.'), ('had\\\\ngrown', 'and'), ('of', '\\\\nsize,'), ('the\\\\n', 'of'), ('equally', 'was'), ('suj\\\\n', 'a'), ('the\\\\niligbest', 'lor'), ('emnustasww\\\\n', 'in'), ('room', 't\\\\nwell.'), ('I', '\\\\nno'), ('good', 'squaw'), ('whence', 'was'), ('end', 'the'), ('a', 'sticky\\\\nmud'), ('won*or', 'M»#\\\\nstreet,and'), ('con-\\\\nvict', 'at'), ('manifest', 'few'), ('m', 'matter'), ('on\\\\n', 'Transposition,'), ('Henry\\\\nDayCH\\\\n', 'Allen\\\\nElrlck'), ('her', '\\\\nHer'), ('In', 'he\\\\nIs'), ('when\\\\n', 'went'), ('vari-\\\\nous', 'be'), (\"moment's\", '\\\\nthe'), ('up', 'whoso'), ('altitude', 'about'), ('to', '\\\\nprofitable,'), ('d\\\\n', 'hla'), ('occasions\\\\n', 'hold'), ('length', 'the\\\\ncity'), ('active,\\\\n', 'blood'), ('believe', '\\\\nthe'), ('the', '\\\\nthat'), ('Woodall,', 'and'), ('the', 'from'), ('of\\\\n,abit,', 'our'), ('for', '\\\\n^Htcr'), ('him', 'erect'), ('and', 'incredible\\\\namount'), ('H.', '.'), ('and', 'death,'), ('keeping;\\\\n', 'That'), ('in', 'At'), (';', 'at'), ('its', 'the'), ('exercises', 'can\\\\nonly'), ('Reunion.\\\\n', 'Jennie'), ('smoke.\\\\n', 'is'), ('$90', '\\\\nday'), ('on', 'cars'), ('the\\\\n', 'will'), ('e[\\\\n', 'choeen'), ('of', '\\\\nChristian'), ('like', 'inter,\\\\nest,'), ('It\\\\n', 'in'), ('youthful\\\\nbloom', 'and'), ('in', 'change'), ('share\\\\n', 'first'), ('Time\\\\n', 'it'), ('thnt\\\\n', 'and'), ('tiie\\\\n', 'in'), ('what', 'yet'), ('that', 'goes'), ('prosperity', 'the'), ('looaed\\\\nbis', 'on'), ('have', 'latches\\\\nthe'), ('wanted,', 'the\\\\nMapsychooiita'), ('country,', '\\\\nzens'), ('to', 'contractors'), ('when', '\"ring\"\\\\nman'), ('jrprrsentrd\\\\nWe', 'a'), ('&i\\\\n', 'in'), ('young\\\\nladies', 'be'), ('express', 'westward,\\\\nhalf'), ('Goliath\\\\nexelaims,', 'I'), ('the', 'thereof'), ('one', 'tho'), ('no-\\\\n', 'guaranteeing'), ('the', 'weight'), ('uptbe', 'Itund'), ('bearing\\\\n', 'date'), ('so', 'would'), ('fig-\\\\n', 'which'), ('of', 'millions.\\\\nUulortunately'), ('the\\\\nmost', 'that'), ('who\\\\n', 'given'), ('land', 'all'), ('they', '\\\\nto'), ('be', '\\\\nessary'), ('advisability', '\\\\ntstablishing'), ('at\\\\nthe', 'of'), ('national\\\\n', 'Every'), ('white', 'Wtit'), ('One', 'bas'), ('military\\\\nconditions,', 'joined'), ('by', 'of'), ('the\\\\nnomad', 'to'), ('could', 'no'), ('newspapera', 'in'), ('sanction', 'measure,'), ('expectant', 'and\\\\neverything'), ('putting', 'heads'), ('six\\\\n', 'next'), ('a', 'to'), ('cornet\\\\n', 'Taylor,'), ('a\\\\n', 'as'), ('upon', '\\\\nThey'), ('deter', '\\\\nmined'), ('that', 'in'), ('sugar', '\\\\nthe'), ('tell', 'the'), ('illustrate', '\\\\nlength'), ('a\\\\npoint', '75'), ('the', '\\\\nroute,'), ('the\\\\n', 'County'), ('first\\\\ncity', 'have'), ('are\\\\n', 'healing,'), ('A\\\\n', '.showing'), ('Turkey.', 'war'), ('petals,\\\\nrain', 'not'), ('it', 'mw»'), ('sick\\\\n', 'my'), ('the', 'order'), ('in\\\\n', 'bill'), ('Gordy\\\\n', 'Laura'), ('its', 'mark.\\\\nThirteen'), ('nr\\\\n', 'are'), ('1\\\\n', 'Ked'), ('slaughter', 'into'), ('While', 'the'), ('which', '\\\\nbe'), ('by', 'lie'), ('city', 'regularly'), ('in-\\\\n', 'you'), ('shelter', 'from'), ('tho', '\\\\ncnt,'), ('class', 'are'), ('attend', 'it'), ('of\\\\ncscaie.', 'my'), ('second\\\\n', 'of'), ('thus', 'rewards'), ('The', '\\\\nscene'), ('New\\\\n', 'carries'), ('croa\\\\ncreek', 'u'), ('to', 'the'), ('is', 'charge\\\\nof'), ('this', 'elev\\\\ntl-'), ('out', 'the'), ('to', 'the'), ('snoulders.\\\\nThe', \"O'Neal,\"), ('b*', 'study'), ('it', '\\\\nthat'), ('suffering', 'some'), ('in\\\\n', 'and'), ('when\\\\n', 'said,'), ('re-\\\\n', 'and'), ('was\\\\n', \"blacksmith's\"), ('by\\\\n', 'level'), ('all\\\\n', 'see,'), ('th', 'min\\xad\\\\nimum'), ('bo', 'by'), ('under', 'affidavit,\\\\nanswer'), ('a', '\\\\nsruption'), ('advocate*', 'the'), ('crop,\\\\n', 'usually'), ('be', '\\\\nferent'), ('repro-\\\\n', 'and'), ('landed', 'a'), ('another\\\\n', 'published'), ('on\\\\nhis', 'Who'), ('hence', 'attorneys'), ('I', '\\\\nto'), ('of', 'from\\\\na'), ('display', 'force,'), ('months.\\\\nThis', 'was'), ('young', 'at\\\\nheart'), ('with', 'bv'), ('Accommodâtion,\\\\n700.805am,1210,145,406.520.725,1030pm.\\\\n', 'express,'), ('Court,', 'to'), ('the', 'and'), ('exquisite', 'of'), ('the', '\\\\nAt'), ('work', 'as'), ('hero-\\\\n', 'came'), ('$20.\\\\n', 'report'), ('thet--\\\\nstories', 'two'), ('by', 'or'), ('side', 'the'), ('pictures\\\\n', 'him'), ('administration\\\\nboth', 'state'), ('car;', 'E.'), ('America..\\\\nSo', 'coffee'), ('fine', '$7'), ('tint', 'such'), ('persons', 'or'), ('to', 'very'), ('o)', 'its'), ('who', 'been'), ('ublo\\\\n>u;U', 'tktatu'), ('law', 'New'), ('Commis-\\\\n', 'Webb'), ('in', 'For'), ('the', 'of'), ('which\\\\nbecome', \"an'd\"), ('the', '\\\\ntional'), ('spot\\\\n', 'the'), ('matter', 'and'), ('this', '\\\\nbuilding'), ('Esther\\\\n', 'Alice\\\\nSmith,'), ('the', '\\\\nning'), ('or\\\\nMarket', 'and'), ('turned\\\\n', 'the'), ('the', 'as'), ('banks', 'issue'), ('gone\\\\n', 'of'), ('eternal\\\\n', 'and'), ('not', '\\\\nono'), ('But', 'thissbam'), ('and', 'multiplied'), ('to\\\\n', 'his'), ('the', 'was'), ('to-wit;\\\\nAll', 'tract'), ('Vet', '\\\\nawful'), ('iu', '\\\\nterms'), ('world.', '\\\\nhouse'), ('uvury', '\\\\nwas'), ('£n'), ('example', 'the'), ('de-\\\\nmure', 'though'), ('de-\\\\n', 'I'), ('re-\\\\n', 'the'), ('fell', 'feet.'), ('bane-\\\\n', 'to'), ('persons', '\\\\ning'), ('county', '\\\\nNebraska.'), ('sharo\\\\n', 'distrust'), ('tlmt', 'trees\\\\nwere'), ('avoid', 'cabbages\\\\nby'), ('rices', 'many\\\\nkinds'), ('puts', '\\\\nthing'), ('of', 'our'), ('Sunday.', 'of'), ('question\\\\n', 'telling'), ('farm\\xad\\\\n', 'In'), ('argument\\\\n', 'to'), ('who\\\\n', 'off'), ('for', '\\\\ncall'), ('in', 'for'), ('divers\\\\nfees', 'the'), ('Springer,\\\\n', 'Little'), ('and', 'a'), (\"Greeley's\", '\\\\not'), ('proba\\xad\\\\n', 'mat'), ('Theodore', '\\\\nvelt,'), ('\"sti\\\\n', 'after'), ('at\\\\n', 'end'), ('convict', '\\\\nand'), ('tho\\\\n', 'to'), ('was', 'running'), ('tho', 'Sen-\\\\nators'), ('inst.\\\\n', 'officers'), ('obnoxious\\\\n', 'or'), ('in', 'cotton\\\\nfields'), ('the', 'date'), ('one', 'the'), ('bund,', '\\\\nTilkingiaa'), ('Cooper,\\\\nnow', 'running'), ('fairly\\\\n', 'the'), ('credit', '\\\\nwit*'), ('care\\\\n', 'do'), ('s\\\\n', '85.000,000'), ('line', 'tho\\\\nwestern'), ('or', '\\\\ndraft'), ('make', 'effoit\\\\nfor'), ('no', 'business'), ('Episcopal\\\\nmissiou', 'the'), ('lives', 'miles'), ('have\\\\n', 'them'), ('street,\\\\n', '18;'), ('showing', 'November'), ('line;', 'enemy\\\\ncould'), ('upon\\\\n', 'the'), ('P-', 'has'), ('adding', 'a'), ('sure);\\\\n', 'under'), ('careful', 'your'), ('However,\\\\n', 'a'), ('20.\\\\n', 'our'), ('add', 'tliu'), ('diplo-\\\\n', 'and'), ('could', 'hear'), ('profitable', 'to'), ('of', 'world.\\\\nInstead'), ('impacable', 'that'), ('least', 'wait'), ('defendant,', 'even'), ('children,\\\\n', 'of'), ('men,', 'have\\\\nfiled'), ('away\\\\nfrom', 'ranks'), ('clhliil-\\\\nditv.n', 'batbathtuRte.'), ('member.auven', 'cor\\\\nciirring.the'), ('rain', 'had'), ('alarms', 'n'), ('these', 'still'), ('two', 'each'), ('is', 'bo'), ('mounted\\\\non', 'bigb'), ('ordinance;\\\\n\"Provided', 'that'), ('lt', 'been'), ('Hays,\\\\n', 'Mar'), ('decline', '\\\\nthe'), ('opera\\\\nlives', 'mechanics,'), ('to', '\\\\nfonu'), ('much', 'paper,'), ('amounts', 'compensate\\\\nworkers'), ('Kell\\\\nAim,', 'waa'), ('J\\\\n', 'at'), ('of\\\\n', 'day'), ('advance', 'in'), ('ire', 'election'), ('tattoo', '\\\\nhis'), ('tract', 'land'), ('to', 'reports'), ('re\\\\n', 'the'), ('for\\\\nAssembly;', 'for'), ('This\\\\ngives', 'indisputable'), ('two', 'my'), ('with', 'Hue'), ('Jauuary\\\\n', 'elodug'), ('attempts\\\\n', 'then'), ('in', 'York'), ('out\\\\na', 'between'), ('we\\\\nwere', 'a'), ('1', 'demanded\\\\nto'), ('ad-\\\\nvertisement,', 'nut'), ('insurance', '\\\\nall'), ('success', 'the\\\\ntheatre,'), ('and', 'in'), ('ror\\\\n', 'will'), ('It', 'u\\\\ninvolve'), ('previously', 'the'), ('a\\\\n', 'of'), ('River', '\\\\nDistrict'), ('congestion', 'the'), ('tho', 'of'), ('nay,', 'did'), ('explained', 'situation'), ('and\\\\n', 'tlio'), ('denomination', 'venereal,'), ('stuck', 'the'), ('on\\\\n', 'street'), ('noticed', '\\\\nwere'), ('and', 'raised\\\\nit'), ('hottes,', 'rendering'), ('We\\\\nmust', 'a'), ('relieve\\\\naer,', 'by'), ('knowing', 'character'), ('second', 'was'), ('elaps', '\\\\nfore'), ('huge', 'to'), ('moed', 'Administration'), ('dollars;', '\\\\nsaid'), ('young', 'was'), ('on', 'first'), ('parts,', '6\\\\nor'), ('to', 'stake;'), ('state', 'for\\\\nlearly'), ('In', 'ono'), ('rebellion,', 'brain\\\\nwhich'), ('got\\\\nIglit', 'aguln,'), ('the\\\\nspring,', 'that'), ('time', 'the'), ('horror', 'had\\\\nsprung'), ('W»-w', 'Inn'), ('owner', '\\\\nu'), ('As', 'cor\\\\nrespondent'), ('across\\\\n', 'Atlantic'), ('such', 'and'), ('there\\\\nwere', 'to'), ('to', '\\\\nConnellbVille'), ('corollary', 'that\\\\nwhat'), ('Ceme¬\\\\n', 'The'), ('It', 'single'), ('family\\\\nslept.', 'worked'), ('Stillwater,\\\\n', 'through'), ('Mr.', 'was'), ('has', '\\\\npointed'), ('figures.\\\\n', 'Big'), ('tilled', 'iH'), ('eareee).\\\\n', \"H.'Vf^ni\"), ('Rehm.\\\\n', 'E.'), ('J', 'Brad'), ('displayed', 'the'), ('devisee\\\\n', 'Elisabeth'), ('as', 'had'), ('his', 'capsized'), ('floor', 'well'), ('if', 'have'), ('this', '\\\\nthe'), ('and\\\\nsaid', 'did'), ('an', '\\\\nof'), ('by', 'reasonable'), ('in', 'presence'), ('churchman', 'bouud'), ('anywise', 'alning.'), ('stock', 'opened'), ('call\\\\n', 'p.'), ('contained', 'said'), ('assumption', 'pay'), ('on\\\\n', 'mortgage'), ('cemetery', 'the'), ('dirt.\\\\n', 'I'), ('or\\\\n', 'street,'), ('influx\\\\n', 'rivers'), ('1915.', 'of'), ('by', 'Levy'), ('a\\\\n', 'nights'), ('at\\xad\\\\n', 'by'), ('conveyed\\\\n', 'the'), ('enlisted', '\\\\nily'), ('undoubtedly', 'in'), ('quicklime\\\\n', 'been'), (\"b\\\\\\\\'\", '\\\\nropes,'), ('it?\\\\n', 'the'), ('companions', 'Miss\\\\nEichtlherger'), ('matters,', 'was'), ('him', 'destitute'), ('lor', 'the'), ('to\\\\nthe', 'above.'), ('assessment\\\\n', 'above'), ('this\\\\ninterest,', 'Sitka'), ('Butter\\\\n', 'and'), ('delights', '\\\\nthe'), ('as\\\\nwith', 'town'), ('where\\\\n', 'carried'), ('the\\\\nmost', 'and'), ('Fed¬\\\\n', 'Government'), ('represent\\\\nhim', 'being'), ('great', '\\\\nHe'), ('the', 're¬\\\\nverse'), ('join', '\\\\nexecution'), ('taste,', 'dare'), ('to', '\\\\nattack.'), ('when', 'comes'), ('unto\\\\nHis', 'and'), ('of\\\\nbeginning,', '«be'), ('last\\\\n', 'The'), ('six', 'in'), ('beauties.', 'am'), ('the', 'of\\\\nCochise,'), ('cheaper', 'and\\\\nwoolens'), ('based', 'upon'), ('R.', '.'), ('the', 'to\\\\nfull'), ('large', 'in'), ('engine', '\\\\nmills,'), ('of', 'county'), ('must\\\\ndemocratic', 'kindest'), ('ex-\\\\n', 'and'), ('that', 'Norway'), ('my', 'forward,\\\\nso'), ('among', 'banks'), ('to', '\\\\nwhat'), ('fronting\\\\n', '19th'), ('losing', 'and\\\\nthe'), ('to', 'tho'), ('parts.\\\\n', 'it'), ('In', '\\\\nmatrimonial'), ('44', 'to'), ('and', 'bushels'), ('of\\\\ndollar*', 'of'), ('cither', '\\\\na'), ('do,\\\\n', 'there'), ('trial', 'Juno'), ('up,', 'brought'), ('aaktil', '\\\\nnaructer'), ('of', 'National'), ('tention', 'the'), ('fact', 'as\\\\nsigumeut,'), ('feelings,', 'the'), ('gained', '\\\\nbetter'), ('I', 'fancy'), ('and', 'regarding'), ('centralisation', 'the'), ('caught', 'of'), ('wore', 'tiers,'), ('and', 'by'), ('woman,', '\\\\nloved'), ('given,', 'whole'), ('clear,', '\\\\ncare'), ('of', '\\\\nacknowledged'), ('bad\\\\na', 'tired'), ('low', '\\\\nnfty'), ('she', 'walked'), ('my', 'was'), ('to', '\\\\nto'), ('re-\\\\n', 'hands'), ('with', 'sled'), ('our', 'had'), ('a\\\\n', 'quantity'), ('the\\\\nnecessary', '\\\\nA'), ('of', 'officer\\\\nwas'), ('March', 'In\\\\nother'), ('had', 'word\\\\nat'), ('greater', '\\\\nChambers'), ('atten\\\\ntion', 'mixistees,'), ('that', 'within'), ('seizure', 'products,'), ('blk.', '.,'), ('irot\\\\n', 'the'), ('other\\\\n', 'of'), ('a', 'so\\\\nnefarious,'), ('of\\\\n', 'lives'), ('from\\\\n', 'let'), ('to\\\\n', 'even'), ('labor', 'love'), ('shall', 'en\\xad\\\\ntitled'), ('claim\\\\n', 'wilt'), ('In', 'matter'), ('Nichols,\\\\nbegan', 'work'), ('days', 'tho'), ('of\\\\n', 'nature)'), ('st\\\\n', 'Chas.'), ('The\\\\n', 'roadbed'), ('I\\\\nVJams', 'rise'), ('the\\\\n', 'States,'), ('ho', '\\\\ndo'), ('accompanies\\\\n', 'execution'), ('much\\\\n', 'to'), ('consigning', 'each'), ('and\\\\n', 'the'), ('was', '\\\\ntoo'), ('Grand', '\\\\nThe'), ('and', 'Now'), ('n', 'a'), ('in', 'presence'), ('from', 'Log\"'), ('it', 'some'), ('a', '\\\\nCongress'), ('Run,', 'a'), ('before', 'were'), ('V\\\\n', 'do;'), ('grasp', '\\\\nthat'), ('as', 'erup-\\\\ntions'), ('trolley-\\\\nmen', 'a'), ('the', 'and'), ('for\\\\n', 'than'), ('getting\\\\n', 'contract'), ('disgraeo,\\\\n', 'tho'), ('child\\\\nif', 'eighteen'), ('got\\\\n', 'Into,'), ('finally', 'the'), ('to', 'her'), ('of', 'wasteful-\\\\nness'), ('our-\\\\nselves', 'men,'), ('.1', 'Vomifr,the'), ('to', 'a'), ('tho\\\\nline', 'tho'), ('preferable', 'the'), ('the', 'were'), ('have\\\\n', 'the'), ('be', 'on'), ('evidences', '\\\\nutter'), ('from', 'cigarette\\\\nhut'), ('be', 'into'), ('afternoon.', 'is'), (\"Wilde'a\\\\n\", 'were'), ('appeal', 'tho'), ('enter', 'and'), ('lUries', 'would'), ('latest', 'up'), ('combi-\\\\n', 'It'), ('localities,\\\\nand', 'further'), ('per\\\\n', '!'), ('transporta¬\\\\n', 'man,'), ('and', 'going'), ('squeak', 'his'), ('Wiggins', 'get'), ('everlasting', 'and'), ('of', '\\\\nSouth'), ('mission', 'the'), ('.574;', 'lots'), ('tae', 'to\\\\nthe'), ('that', '\\\\ncoat'), ('yet', 'vital'), ('the\\\\n', 'of'), ('for\\\\n', 'her'), ('was', 'a'), ('approxi-\\\\nmately', 'full'), ('.the', '\\\\nheld,'), ('too', '\\\\nThere'), ('made', 'either'), ('a', '\\\\nof'), ('or', ':in'), ('and', 'in'), ('Is', 'every'), ('effectual', 'to'), ('pow-,\\\\n', 'and'), ('waters', 'overflow\\\\nthe'), ('acts.-', 'is'), ('was', 'two'), ('before\\\\n', 'could'), ('also\\\\napplies', 'Harry'), ('41,', '4'), ('The\\\\n', 'is'), ('Boston,', 'he'), ('pump\\\\n', 'drain'), ('south\\\\n', 'Peter'), ('there', 'be'), ('favorable\\\\n', 'as'), ('back', 'the'), ('Panama', 'billious'), ('to', 'coutruof\\\\niVheoling'), ('ue\\\\nis', 'to'), ('of', 'peo-\\\\nple'), ('himself,', 'her'), ('ignorance', 'rags'), ('manner)\\\\n', 'in'), ('water.\\\\n', 'It'), ('truck.\\\\n', 'result'), ('the\\\\ngratification', 'the'), ('ot', 'party'), ('.\\\\n', 'of'), ('grove,\\\\nwhere', 'tine'), ('17.60', 'to'), ('per¬\\\\n', 'betraying'), ('river.\\\\nThere,', 'Ellis'), ('the', '\\\\ncrats'), ('have', '\\\\nchildren'), ('act,', 'the'), ('is', 'subscriber,\\\\ntold'), (\"Mitchell's\", 'It'), ('the', 'wish'), ('mo\\\\n', 'some'), ('His', '\\\\nand'), ('the', 'Httendance.'), ('at-\\\\n', 'to'), ('an', 'combination'), ('is', 'all,'), ('Is', '\\\\nof'), ('oath.\\\\n', 'Incident'), ('great', 'centers'), ('t*\\\\natalltodowithit;forIknowjustas\\\\n', 'what'), ('and', 'that'), ('equitable', '\\\\njustment'), ('friend,\\\\nif', 'should,'), ('De¬\\\\npartment', 'Agriculture'), ('en-\\\\n', 'to'), ('Many\\\\n', 'people'), ('hack', 'off'), ('flag', 'co\\\\nso'), ('would', 'seem'), ('h\\\\n', 'said'), ('the\\\\n', 'to-day,'), ('pow-\\\\n', 'development'), ('years', '\\\\nclusive,'), ('granted.', 'Chalfaiit'), ('the\\\\nground', 'plea'), ('what', 'work'), ('withered', 'in'), ('For', '.\\\\nison'), ('the', 'instance,\\\\nlor'), ('a', '-ale'), ('from\\\\n', \"neighbor's\"), ('calm,', '\\\\nmorning,'), ('the\\\\n', 'of'), ('many', 'griev-\\\\nances,'), ('distauoe', 'about\\\\n25'), ('with', 'object'), ('a', 'farmer\\\\nuntil'), ('at\\\\n9', 'M.,'), ('of', 'company\\\\nor'), ('their', 'For'), ('Thereupon\\\\noaurfriend', 'the'), ('second', 'of\\\\nthis'), ('Great', 'first'), ('condi\\\\ntion,', 'the'), ('can\\\\nInlluto', 'air,'), ('closing\\\\n>.32%c:', 'GM5aG.'), ('feet', 'ground;\\\\nmound'), ('under', '\\\\ndesk,'), ('nmtl\\\\n', 'to'), ('is,', 'an'), ('Egbert,', 'colon'), ('Tpanel:\\\\n', 'P.'), ('United', '\\\\nand'), ('de-\\\\nteraiaatior>.\\\\n', 'Amta'), ('w\\\\n', 'compelled'), ('since\\\\n', 'were'), ('York', 'estab\\xad\\\\nlished'), ('the', 'as'), ('modern', 'have'), ('such', 'deeds,'), ('must\\\\n', 'across'), ('said', 'had'), ('to', 'strongly\\\\ntutreocbed'), ('all', 'Wilmington;\\\\nMr.'), ('a', '\\\\ntion'), ('and', 'Is\\\\nhereby'), ('put', 'arms'), ('competitors\\\\n', 'enables'), ('thi\\\\n', '!'), ('with', 'I'), ('and', 'of'), ('continued\\\\n', 'follow'), ('and', 'surrounding'), ('made\\\\n', 'good'), ('at', '79'), ('arrested\\\\non', 'charge'), ('Central', 'and\\\\nCaldwell'), ('mind', 'reasoning'), ('who', '\\\\npaid'), ('th\\\\n', 'as'), ('commission\\\\ngoing.', 'the'), ('gangway\\\\nunder', 'busy'), ('and\\\\n', '9'), ('lerilUC', 'read'), ('and', 'to'), ('Davis,', '\\\\nIda'), ('which', '\\\\nterested'), ('(\\\\n', 'Heptember'), ('form', 'gov-\\\\nernment.'), ('plain,', 'and\\\\naccessible'), ('their', '\\\\nOne'), ('has', 'to\\\\nsell'), ('the\\\\n', 'renown'), ('what\\\\n', 'want'), ('75', 'a'), ('prop\\\\n', 'iucomo,'), ('north', 'the'), ('him.\\\\nMrs.', 'then'), ('confiscate', 'estate'), ('in', '\\\\ntime'), ('but', 'statement'), ('four', 'dismountid.'), ('We', '\\\\nnot'), ('8atufied\\\\nfrom', 'aeua&<<'), ('wee-\\\\ntern', 'was'), ('Rose,', 'Poplar'), ('buzzard.\\\\nThere', 'undoubtedly'), ('other', 'unmoved'), ('consideration,', '\\\\nin'), ('Is', 'that\\\\nsome'), ('the', 'and'), ('to\\\\nour', 'Mr.'), ('white\\\\n', 'mixed'), ('a', 'of'), ('or\\\\n', 'would'), ('water', '\\\\nare'), ('increasing', 'to'), ('before', 'flight.'), ('an', '\\\\nvance'), ('now', '\\\\nThe'), ('he', 'Capt.'), ('then', 'up'), ('for\\\\n', 'if'), ('cold\\\\nwas', 'loss'), ('Brasted', 'ex\\\\nplained'), ('the\\\\n', 'are'), ('Grand', 'line,'), ('in\\\\nwhich', 'was'), ('was\\\\n', 'prearranged'), ('Dele\\\\n', 'from'), ('not\\\\ntake', 'keen'), ('said', 'I'), ('preach-\\\\n', 'and'), ('ballot', '\\\\nthe'), ('Oc-\\\\n', 'of'), ('as', '\\\\nYesterday'), ('said\\\\ncentre', 'with'), ('an', '\\\\npiary'), ('indebted-\\\\n', 'being'), ('mass.\\\\n', 'The'), ('for', 'famed,'), ('it*', 'r'), ('proper\\\\n', 'anil'), ('not', 'slept-\\\\nin'), ('denva-\\\\nbgiu*', 'the'), ('toe,', 'leaving'), ('of', 'farm'), ('thn\\\\n', 'is'), ('Frazer.', '\\\\nMrs.'), ('to\\\\n', 'the'), ('disposed', 'Rev.'), ('I;—c>', 'had'), ('there', 'talk'), ('are', 'go-\\\\nahead'), ('Strickland,', 'I'), ('abuse\\\\n', 'maltreat'), ('they\\\\n', 'left'), ('Mr.\\\\n', 'succinctly'), ('up', 'for'), ('con\\xad\\\\n', 'at'), ('thence', '77'), ('street,\\\\n', 'with'), ('to', 'mis¬\\\\nchief.'), ('expenses', '\\\\nadministration,'), ('General', 'as'), ('where', 'is'), ('overhead', 'or'), ('Senators,', 'vice'), ('Rev.', 'Cole,\\\\nthe'), ('sur-\\\\n', 'had'), ('T', 'W-\\\\nManchester.'), ('has', 'in\\\\ndisparagement'), ('aud\\\\n', 'acres'), ('Yakjma', 'State'), ('long', 'so'), ('tho', 'woman\\\\nwas'), ('and\\\\n', 'to'), ('1.S.309,', '\\\\nlis.'), ('2:40.\\\\n', 'heat.horses'), ('tho', 'of'), ('cent.\\\\nThis', 'a'), ('and', '\\\\npcaring'), ('day\\\\nhis', 'assembled'), ('Miss\\\\nGarland,', 'Hon.'), ('130', 'j\\\\nfrom'), ('Pass\\\\n', 'Northern'), ('dealers', 'announced'), ('intelligence', 'abolitionists.'), ('1\\\\n', 'of'), ('products', 'the'), ('able', 'support'), ('could', 'a'), ('and', 'for'), ('burnt\\\\n', 'this'), ('It', '\\\\nalio'), ('nud', 'stronger.\\\\nminded'), ('intnxlucfng', 'in'), ('was', 'duly'), ('had\\\\nthe', 'member'), ('some', 'before'), ('fills', '\\\\nfail-'), ('nanera', 'variooa\\\\nsubjects'), ('to', 'the'), ('was\\\\n', 'valley'), ('without', '\\\\never'), ('signed.\\\\n', 'company'), ('both', 'the\\\\nsewers'), ('death', '\\\\nparents'), ('thence', 'the'), ('in', 'yesrs'), ('on', 'earth'), ('vessels,', 'tuffs'), ('and', 'strong'), ('to', 'lhot-e'), ('an', 'and'), ('talks', 'given'), ('patients\\\\n', 'm.to8p.m.'), ('who\\\\nwithout', 'merits'), ('their', 'and\\\\nmodes'), ('was\\\\n', 'umcd'), ('he', '\\\\n[most'), ('the\\\\namount', 'dairy,'), ('dated', 'January.'), ('faithful\\\\nfriends.', 'information'), ('Grand\\\\n', 'House.'), ('sum', 'cash,\\\\nwhich,'), ('trrealer\\\\n', 'when'), ('pre-\\\\n', 'rveil'), ('our', 'cooplnu'), ('issues', '\\\\nwhich'), ('he\\\\n', 'in'), ('or', 'sureties'), ('thence', '17.60'), ('has', 'been'), ('same', 'hundred'), ('forms', 'very'), ('ref-\\\\n', 'he'), ('a\\\\n', 'moored'), ('of', 'bad'), ('power', 'in'), ('He\\\\n', 'taken'), ('the', 'poj\\\\nular'), ('mid', 'its'), ('harmonious\\\\n', 'Conspicuous'), ('there,\\\\n', 'will'), ('there', 'than'), ('investigation', '\\\\nthe'), ('pursues', 'system'), ('snails\\\\n', 'the'), ('family', '\\\\nInvited'), ('or', 'or'), ('open\\\\n', 'averaging'), ('our', '\\\\nirôm'), ('the', 'than'), ('be', 'by'), ('and', 'family'), ('northwest', 'JNew'), ('tl,o-\\\\nrough', 'going'), ('FOR', '\\\\nCharles'), ('divided\\\\n', 'three'), ('to', 'for'), ('a', 'is'), ('quite', 'yet.'), ('in', 'BnesI\\\\napparel,'), ('thus', ';'), ('offend-\\\\n', 'being'), ('had', 'un\\\\nto'), ('pork,', '§14'), ('army.', 'is'), ('with', '\\\\nfore'), ('who\\\\n', 'prospering'), ('Ferry', 'on'), ('mnko', 'best\\\\nof'), ('peculi\\\\n', 'lnfatny.'), ('from', 'in\\xad\\\\nvoking'), ('got\\\\nyou', 'these'), ('has', 'brought'), ('the', 'of'), ('hear\\\\nthose', 'advocates'), ('de\\xad\\\\ntermined', 'of'), ('no', 'sha-\\\\ndow,'), ('divide', '\\\\nweaken'), ('feet.\\\\n', 'figures'), ('sleep\\\\n', 'night.\\\\nmany'), ('advan\\xad\\\\ntages', 'then'), ('thirteen', 'poles'), ('15-\\\\n', 'tooth'), ('marines', 'out'), ('perfect\\\\naccuracy;', 'the'), ('is\\\\nconcerned,', 'obtaining'), ('the', 'of'), ('ol\\\\ngrades', 'thlB'), ('in', 'grandeur.\\\\nThe'), ('everything\\\\ne', 'ever'), ('on', 'side'), ('God\\\\nare', 'about'), ('must', 'cut'), ('Because', 'this,\\\\nthe'), ('walkop\\\\n', 'river'), ('he', 'been'), ('Increased', 'which'), ('Rev.', '.'), ('declined', 'such'), ('determined', '\\\\nwatch,'), ('our', 'ho\\\\nkept'), ('best\\\\n', 'in'), ('the', 'opinion,'), ('on', 'here'), ('ns', 'been'), ('of', 'party'), ('76th\\\\nveteran,', 'veteran,'), ('by\\\\n', 'is'), ('will', '\\\\nthat'), ('say?', 'I'), ('the\\\\nChesapeake', 'Ohio'), ('of', 'which\\\\nresulted'), ('not\\\\nbeen', 'and'), ('horrible', 'The'), ('as', 'in\\\\nthe'), ('at', '\\\\nSOKc;'), ('by\\\\n', 'use'), ('be\\\\n', 'and'), ('at\\\\n', 'doors'), ('privato\\\\n', 'of'), ('years', 'relief,'), ('vital', 'in'), ('twp.\\\\n', 'Shatter,'), (\"an'\", 'never'), ('when', 'wrote\\\\nwe'), ('to\\\\n', 'confinement,'), ('the', 'contain'), ('turnipand', 'Satnpvm'), ('where\\\\n', 'work'), ('deg.', '\\\\nsixty-seven'), ('which\\\\n', 'granted'), ('North', 'postmas-\\\\nters:'), ('advanta-\\\\ngeous', 'the'), ('four', '\\\\nIf'), ('r.vaating\\\\n', 'fitful'), ('depending\\\\n', 'iraoneM'), ('Cbe-\\\\n', 'never'), ('enough', 'the'), ('this', '\\\\nurrnngement'), ('phrase,', 'iti\\\\nlose'), ('do', '\\\\nthings'), ('of', 'enfranchised'), ('as', '\\\\nley'), ('Kurope\\\\n', 'Airica,'), ('every\\\\n', 'of'), ('will', 'held'), ('by', 'acces'), ('domain', 'the'), ('At\\\\n', 'present'), ('senti-\\\\n', 'of'), ('Important', 'and'), ('even\\\\niron.', 'of'), ('Hall', 'Building'), ('tract', '\\\\nland'), ('antagonists', '\\\\nany'), ('Sound\\\\n', 'has'), ('ver\\\\n', 'area,'), ('order,', 'n'), ('It', 'the'), ('in', 'hands'), ('Contracts\\\\n', 'Ed.)'), ('with', 'K'), ('the', 'is'), ('says,\\\\n', 'seemed'), ('with', 'on'), ('to', 'impresied\\\\nbis'), ('deputy,', '\\\\nanteeing'), ('are', '\\\\n\"No,'), ('Hamper', 'Department.\\\\nRegarding'), ('they', 'get'), ('who\\\\nwas', 'close'), ('tho\\\\nWest,', 'through'), ('annoy-\\\\n', 'to'), ('drawing\\\\n', 'and'), ('said\\\\n', 'so'), ('preceding', 'of\\\\nmanflre;'), ('.240', \"\\\\nAlexander's\"), ('law.\\\\n\"But', 'such'), ('by', 'Perry'), ('north-\\\\nwest', 'of'), ('of', 'property'), ('the', '\\\\ntion'), ('uncom\\xad\\\\n', 'than'), ('oil\\\\n', 'party;'), ('thence', 'right'), ('be', '\\\\nby'), ('house,', 'has'), ('thecabiuet.\\\\nThey', 'that'), ('wben', '\\\\n:-ic,'), ('whom', 'have'), ('occasional\\\\n', 'I'), ('Hume', 'u'), ('Company', 'I:\\\\ning'), ('nn', '\\\\nest'), ('as', '\\\\nI'), ('city,', 'succeed'), ('action\\\\n', 'until'), ('ttll', '\\\\nIiqoii'), ('one', 'on'), ('The', 'may'), ('their', 'and'), ('in\\xad\\\\ntense', 'and'), ('mourn', 'right'), ('will', 'from'), ('cents.\\\\n', 'the'), ('days\\\\nin', 'and'), ('to\\\\n', 'Lake'), ('himself\\\\n', 'on'), ('all', 'at'), ('organ-\\\\n', 'and'), ('the', 'were'), ('will\\\\nat', 'reject'), ('been\\\\n', 'to'), ('land', 'eighty-eight'), ('town.\\\\n', 'will'), ('of\\\\n', 'building'), (\"can't\", 'this'), ('this\\\\n', 'Charley'), ('far', 'tha\\\\nhouse.'), ('have', 'to'), ('legislation,', 'v\\\\\\\\e'), ('the', 'which'), ('this\\\\n', 'more'), ('from', 'trade'), ('Formed', 'July,'), ('servey', 'the'), ('a', '\\\\ngo'), ('to', 'ob-'), ('and', 'seu.m'), ('of', 'our'), ('feet;\\\\n', 'the'), ('bo', 'with'), ('a', 'task'), ('in\\\\nFrauee.', 'the'), ('several\\\\nhours', 'than'), ('York\\\\n', 'paper'), ('squadron.', 'Scott'), ('by', 'pin'), ('town', 'left,\\\\nand'), ('of', 'description'), ('feet\\\\nwide', '1,200'), ('ai--', 'i'), ('Meady\\\\n', 'cr'), ('c\\\\n', 'doubt'), ('the\\\\nbank', \"Strong's\"), ('Mr.', 'insists'), ('efficacy,\\\\nConstitutions', 'weak'), ('over\\\\nthe', 'provinces'), ('beeu', 'that'), ('uniform', 'of'), ('girl,', 'teeth\\\\nchattered'), ('District', '7.'), ('Ohio,', '\\\\n1847.'), ('from\\\\n', 'impulses'), ('Putrh.\\\\n', 'afterwards'), ('that\\\\n', 'is'), ('windows', 'the'), ('little\\\\nsufferer', 'gradually'), ('production', '\\\\npower'), ('and', 'and'), ('There\\\\n', 'several'), ('mam', 'unU'), ('leaders', 'the'), ('Underwood\\\\n', 'Thoina-'), ('row', 'cows,'), ('conquest,\\\\n', 'tho'), ('japan\\\\n', 'for'), ('not', 'been'), ('found', 'offerings\\\\nof'), ('1\\\\n', 'of'), ('for', 'Is'), ('the\\\\n', 'aud'), ('prepared', '\\\\nsuch'), ('men', 'have\\\\nkilled'), ('In\\\\n', 'between'), ('every', 'representative'), ('sa', '\\\\nBkBdiciae.'), ('a', 'that'), ('a', 'while,\\\\nin'), ('leading', 'Nevada'), ('99', 'street;'), ('Clocks,\\\\nand', 'required'), ('next', 'or\\\\ntwo'), ('Recording\\\\n', 'Christopher'), ('millions', 'cattle,'), ('once\\\\n', 'her'), ('South', 'dtreelion'), ('IIiirriHon', '7'), ('am\\\\n', 'the'), ('did', '\\\\nthe'), ('was\\\\ncustomary', 'taking'), ('this', '\\\\ncine,'), ('rrackem;', 'J<\\\\n**'), ('llgurcs', '\\\\nwhich'), ('1', 'seen'), ('summer\\\\nhouse,', 'by'), ('possibility', '\\\\nsuch'), ('the', '\\\\na'), ('of\\\\nthing*,', \"«i#akh*>'t\"), ('the', 'of'), ('reached\\\\n', 'foot'), ('and', 'out'), ('of', 'present,'), ('Innttda\\\\n', 'of'), ('above\\\\nsupposition', 'probably'), ('of', 'and'), ('a', 'profit,'), ('ly\\\\n', 'its'), ('to', 'such\\\\nhome'), ('Is', 'most'), ('city', 'to'), ('the', 'eays'), ('still\\\\nbeing', 'Austrian'), ('ago,', 'years'), ('raised,\\\\n', 'familiar'), ('it\\\\n', 'wrong'), ('.\\\\n', 'and'), ('—Any', 'or'), ('into', '\\\\nsington'), ('the', 'killed.'), ('was', 'patri¬\\\\notic'), ('had', '\\\\nhis'), ('which\\\\n', 'mid'), ('p\\\\nume', 'invade'), ('r\\\\n', 'of'), ('amend¬\\\\n', 'proposes'), ('love', 'liiin.'), ('of', 'bene6t!\\\\nThe'), ('and', '\\\\nburg'), ('to', 'a'), ('form', 'grade,'), ('It,\\\\n', 'A,'), ('objeftio\"1\\\\n', 'thrown,'), ('so-eallsd', 'Ksklmo\"\\\\ntribe'), ('permit', 'carry'), ('at', \"o'clock,\\\\nsaying\"), ('ho\\\\npitullzatloti', 'under'), ('of\\\\nsuch', 'I'), ('the', '\\\\nsinking'), ('fhe\\\\ncourts', 'will'), ('system', 'training'), ('small', '\\\\nChairman'), ('stores.', 'man'), ('manufactured', '\\\\nbacco.'), ('northerly\\\\n', 'with'), ('Soon', 'this'), ('his', 'on'), ('County\\\\n', 'when'), ('daughter’s\\\\nhand', 'one'), ('the\\\\n', 'and'), ('Methodist', '\\\\nChurch'), ('Administra¬\\\\n', 'and'), ('their\\\\n', 'principle,'), ('have', 'taken\\\\nto'), ('com\\\\n', 'the'), ('which,\\\\nupon', 'reassembling'), ('redeemable\\\\n', 'the'), ('thoughts\\\\n', 'lawful'), ('aud\\\\nconditions', 'follows;'), ('and', 'tho'), ('of', '\\\\nday'), ('tire', 'the\\\\nartillery.'), ('case', '\\\\nonly'), ('torn', '\\\\nthe'), ('which', 'was'), ('pacify', '\\\\nrougbB,'), ('which', 'the\\\\nUnited'), ('the', 'neck.\\\\nThe'), ('Flouring\\\\ntill', 'by'), ('treasurer', '\\\\nother'), ('would\\\\n', 'on'), ('train\\\\n', 'day,'), ('for\\\\n', 'assessment'), ('op\\\\n', 'to'), ('to', 'navigable'), ('many\\\\ngood', 'rich'), ('wrote', 'a'), ('and', 'that'), ('will', 'opened'), ('the', 'Board\\\\nof'), ('the', 'reformation\\\\ncommenced,'), ('1865', '\\\\nthan'), ('and\\\\n', 'him'), ('it\\\\n', 'cost'), ('work\\\\n', 'tend'), ('lively', '\\\\nnee'), ('L\"se', 'many'), ('author.\\\\n', '11b.snstt-5iod1.ton'), ('all', 'and'), ('action,', 'severe\\\\nstrain'), ('the', 'suitor'), ('MADE', 'THE'), ('&', 'of'), ('accepted', 'a'), ('France,', 'nation'), ('the', 'Railroad'), ('ex-\\\\n', 'coal'), ('|', 'at'), ('the\\\\n', 'Sullivan,'), ('the', 'can'), (\"rare'\\\\n\", 'Hroorns'), ('and', 'entering'), ('shores', 'the\\\\nDelaware'), ('siied\\\\nland', 'nlTeeted'), ('your\\\\n', 'dressed'), ('great\\\\n', 'among'), ('hurler', 'eight\\\\nhits'), ('drama', 'steadily'), ('it', 'the'), ('do', 'we'), ('railroad', 'coal'), ('cash\\\\n7!4aC.K!&c;', '8Jt2>{a^87kc,'), ('said', 'all'), ('the', 'and'), ('is', 'out\\\\nof'), ('votes', 'November,'), ('other\\\\n\"', 'of'), ('removal', 'no'), ('regu¬\\\\n', 'by'), ('In', 'nation'), ('mining', '\\\\nThe'), ('of', '\\\\nover'), ('have\\\\ndone', 'Drug'), ('tbe', 'when'), ('South', 'its'), ('accord\\\\nsaid', 'It'), ('way\\\\nho', 'his'), ('Homer\\\\n', 'Flint,'), ('else,', 'even'), ('oldest', 'have'), ('gave', 'consent,'), ('broke', 'a!\\\\nwept'), ('to', 'by'), ('(rom', 'loom'), ('in\\\\n', 'for'), ('head', 'Virginia,'), ('the\\\\n', 'it'), ('that\\\\n', \"city's\"), ('or', 'surety'), ('ihoiigti', 'look'), ('i\\\\nmy', 'F.ncouraged'), ('had', 'been'), ('cro\\\\n', 'Pearl'), ('at', 'changed,'), ('lias', 'commodious\\\\nhotels,'), ('thought', 'glory'), ('ladies,\\\\n', 'and'), ('and', 'leader,\\\\nand'), ('fired', 'heart'), ('eddy', 'sucked'), ('assert\\\\n', 'her'), ('vote', 'Daniel'), ('Bhe\\\\n', 'at'), ('the', 'of'), ('has', 'seven\\\\nballs'), ('It.\\\\n', 'fix'), ('of', 'freight'), ('Mr.\\\\nuameron.', 'uowen'), ('hurt.\\\\nVansant’«', 'have'), ('fust', '\\\\nLt'), ('wt\\\\n', 'lor'), ('illustrated', 'ever'), ('watch-\\\\n', 'and'), ('outer\\\\n', 'but'), ('wide', 'St.'), ('when\\\\n', 'went'), ('r.otno\\\\n', 'uncle,'), ('least\\\\n', 'readiness'), ('but', 'damage.'), ('?', 'out\\\\nof'), ('the', 'ns'), ('of', 'wall'), ('wheth\\\\n', 'be'), ('cannot', 'goods'), ('Tho', 'is'), ('reso¬\\\\nlution', 'the'), ('age', '\\\\nfcoundntss.'), ('the', 'company\\\\nwould'), ('men', 'left\\\\nthey'), ('and\\\\ncount', 'first'), ('pronounc\\xad\\\\ned', 'eminent'), ('dock', 'appeared'), ('that', 'intended'), ('a\\\\n', 'covered'), ('th\\\\nEastern', 'of'), ('to\\\\n', 'Union'), ('oDlco', 'tho\\\\nsaw'), ('the', 'use'), ('supple', 'of'), ('was', \"Broadwater's\"), ('In', 'demand'), ('t-t', '-'), ('381,805\\\\n', 'than'), ('though', 'raised'), ('batting', '\\\\nlasting'), ('and\\\\nintolerance', 'enables'), ('publ\\\\n', 'and'), ('for', 'centenary'), ('manner\\\\nquite', 'in'), ('is\\\\n', 'does'), ('taxes;\\\\nand', 'decree'), ('place', 're¬\\\\ncovered,'), ('!\\\\n', 'mds'), ('of', '\\\\ntariir,'), ('use', 'with\\\\nall'), ('noon', 'every'), ('r\\\\n', 'thither'), ('appeared', 'the'), ('and', 'from\\\\nDecember'), ('a\\\\nfine', 'block;'), ('ordinary', '\\\\nol'), ('of', 'and'), ('and', 'refuscd'), ('way\\\\n', 'the'), (\"here'called\", 'there\\\\naro'), ('obligations\\\\nand', 'arraign'), ('had\\\\n', 'prepared'), ('in\\\\n', 'part'), ('im-\\\\n', 'of'), ('to', 'from'), ('prop\\xad\\\\n', 'means'), ('when\\\\nstirred', 'at'), ('&\\\\nllida’s', 'nnd'), ('adieu.\\\\n\"I', 'ever'), ('an', 'was'), ('o\\\\n', 'but'), ('betw.ten\\\\nK', 'undfllenflsld,'), ('In\\\\na', 'effective'), ('ground', 'the\\\\nthing'), ('gods.\\\\n\"And', '0'), ('demagogues', 'to\\\\nyou'), ('peo-\\\\n', 'would'), ('the', 'day'), ('how', 'LeutU\\\\nwill'), ('[These', 'mere'), ('writer\\\\n', 'exact'), ('Ninth', '\\\\nFrom'), ('lie', 'that'), ('attend', 'it'), ('part', 'the'), ('my', 'again'), ('and', '\\\\nholidays'), ('from\\\\nDowie.', 'company'), ('have', 'various'), ('House', '\\\\na'), ('Sec\\xad\\\\n', 'strikes'), ('would', 'have'), ('for', '\\\\nagainst'), ('and', 'in'), ('this', 'lives'), ('relief', 'gave'), ('L.\\\\nSimmons,', 'ward,'), ('us', '\\\\none'), ('oc-\\\\n', 'the'), ('for', '\\\\nNow'), ('especial', 'and'), ('which', 'illum-\\\\nined'), ('of\\\\n', 'following'), ('escorted', '\\\\nheeling'), ('street;\\\\nSchool', 'No.'), ('rings', 'biz'), ('is', 'liable'), ('the\\\\n', 'weak'), ('pro\\xad\\\\n', 'Is'), ('time', 'the'), ('expe\\\\n', 'entered'), ('the\\\\nsmall', 'of'), ('wtiicii\\\\ncome', 'the'), ('wall', 'an\\\\njbject'), ('of', '\\\\ncourt'), ('answer', 'purpose.\\\\nWhile'), ('us', 'who'), (').', 'exhaust'), ('I\\\\n', '-«present'), ('a', 'days'), ('and', 'freight'), ('announced', '\\\\nin'), ('Convention\\\\nmake', 'preservation'), ('switch', 'siding'), ('man', 'the\\\\ncourt'), ('blood,\\\\n', 'it'), ('aud', '\\\\nwhat'), ('mate\\xad\\\\n', 'things'), ('again.', 'pen'), ('|,®\\\\n', 'your'), ('it\\\\n', 'remain'), ('colors', 'red,'), ('are\\\\n', 'mentioned'), (\"children's\", 'In'), ('him', 'other'), ('his', 'to'), ('poured', 'or'), ('lady', 'have'), ('to', 'effect'), ('justice,', 'good'), ('advertising\\\\n', 'In'), ('house,\\\\n', 'hall,'), ('The', 'in'), ('was\\\\n', 'wife,'), ('Hil!\\\\n', 'his'), ('system', 'treat-\\\\nment,'), ('know,\\\\nmuch', 'the'), ('perhaps', '\\\\nlie'), ('in', 'to-wit:\\\\nFailure'), ('to', '\\\\ntend'), ('invitt\\\\niu', 'purely'), ('to', 'Superior'), ('wet', 'damage\\\\nSeptember'), ('orders\\\\n', 'to'), ('escape', 'vigilance'), ('only', 'ideal'), ('rel', 'in'), ('forward', 'secretary'), ('The', 'I'), ('not', 'ia'), ('guerilla\\\\nwarfare', 'crown'), ('play.', '\\\\nand'), ('there\\\\nare', \"'.till\"), ('not\\\\n', 'that'), ('a', 'in'), ('in', 'of'), ('said\\\\nlot', 'and'), ('list', 'if'), ('the\\\\n', 'half'), ('it\\\\nwell', 'to'), ('Seventeenth\\\\nIteiriment.', 'killed'), ('M', 'C'), ('and', '\\\\nyour,'), ('thiuk', 'a'), ('its', 'supplies'), ('you', 'pay'), ('Col.', 'was\\\\nstuck'), ('wlilrti«*n>\\\\n', 'the'), ('Sho', 'valued'), ('vole', '\\\\nIt,'), ('Stanley', 'that'), ('to\\\\n', 'the'), ('to\\\\n', 'interests'), (\"'You\\\\n\", 'take'), ('old', 'an'), ('and', '\\\\nnight'), ('invitation\\\\n', 'step'), ('authorized\\\\nto', 'If'), ('of\\\\n', 'Mill'), ('otficial', 'j\\\\nname'), ('W.', '$26;\\\\nHenry'), ('is', 'desirable'), ('at', 'first'), ('rolled', 'n'), ('circular', 'Gortschakoff,\\\\nwhich'), ('that', 'is'), ('comes', '\\\\nnor'), ('each', 'Both\\\\nsquads'), ('the', '\\\\nStates,'), ('post', '\\\\ninches,'), ('it', 'and\\\\nthen'), ('He', '\\\\nthat'), ('of', 'office'), ('built,', 'this\\\\naccount,'), ('straight\\\\n', 'them,'), ('punishments', 'anv\\\\nmore'), ('decrepancy', '\\\\nsome'), ('veil', 'tears'), ('Street', '\\\\nWater'), ('fatal', 'Grey'), ('the\\\\n', 'of'), ('purpose,\\\\n', 'which'), ('once', 'later'), ('or', 'places'), ('effect.\\\\n', 'chords'), ('buildings', 'as'), ('nls\\\\n', 'wolves'), ('using', 'typewriter\\\\nand'), ('it', 'can'), ('I\\\\n', 'did'), ('to', 'easterly'), ('and', 'preference'), ('are', 'the\\\\nwords'), ('Senate', 'man'), ('and', 'many'), ('well.', '.'), ('car', '\\\\ntion'), ('entirely', 'to'), ('One\\\\n', 'two'), ('wa\\\\n\"a', 'argument'), ('of', 'emissaries'), ('locking\\\\n', 'door.'), ('for', 'cortiflcutos,'), ('shutters.\\\\nIron', 'during'), ('of', '\\\\nfour'), ('superior', '\\\\nticle.'), ('Constitutional', 'by'), ('Illinois,', 'Tuntatall,'), ('Rehm.\\\\n', 'E.'), ('and', 'death,'), ('before\\\\n', 'end'), ('frora\\\\n', 'deed'), ('unions\\\\n', 'to'), ('Moschelli', 'Willis'), ('I', 'three'), ('they', 'from'), ('that\\\\n', 'paid'), ('this', 'not'), ('but', 'thought'), ('any\\\\n', 'by'), ('time', 'profound'), ('superior', '\\\\nticle.'), ('for', 'the'), ('behind', \"\\\\ndriver's\"), ('declaration\\\\nJudge', 'is'), ('$1,000\\\\n', 'had'), ('distractions\\\\nand', 'will'), ('and', 'deposited\\\\nin'), ('.', 'Conway'), ('ban', 'exportation.\\\\nBritish'), ('there', 'immediately\\\\nspring'), ('time', 'rush'), ('out', 'then'), ('overboard.', 'that\\\\nmoment'), ('granted', 'the'), ('the', '\\\\nzuro'), ('barely\\\\n', 'rutes,'), ('door', 'the'), ('board', '\\\\nbeen'), ('the\\\\n', 'I'), ('married', '\\\\nBut'), ('hull', '\\\\nwas'), ('W.', '.'), ('he\\\\nwill', 'an'), ('they', 'shaken'), ('prominent\\\\n', 'sold'), ('politics.\\\\nAbout', \"o'clock\"), ('in', 'Home,'), ('after\\\\n', 'received'), ('r', ';o'), ('well', '\\\\nfor'), ('stock.', \"ob'eot\"), ('a', 'of'), ('and', 'belonging'), ('standard', 'tavor;'), ('er', 'de'), ('very\\\\n', 'of'), ('East', 'Sr.;'), ('Larkin', 'the'), ('continue', 'dis\\xad\\\\ncussion'), ('capacity\\\\n', 'from'), ('degico', 'aggressive-\\\\nness'), ('sinkinu*', 'I\\\\nland'), ('methods', '\\\\nReed'), ('posBiblo', 'hi\\\\npowerful'), ('regard', 'law'), ('instead', '\\\\ndoing'), ('being', 'over'), ('to', 'at'), ('most\\\\n', 'search'), ('appear*\\\\nfor', 'applicant,'), ('had', 'and'), ('Pocahontas', 'aro'), ('many', '\\\\nleges'), ('our', 'at'), ('Incapabil-\\\\n', 'to'), (\"Ttiatxa'a\\\\n\", 'pronounced'), ('O', '\\\\nJones,'), ('1841.\\\\n', 'Crisfleld'), ('to', 'a'), ('voices.', 'remainder'), ('small', 'boll,'), ('Clothiers,\\\\nTailors.', 'and'), ('have', 'constructed'), ('presideul,', '\\\\n13;'), ('Deputy', 'could'), ('this\\\\nback', 'feature'), ('and\\\\n', 'n'), ('ii.', 'President'), ('said', '\\\\nof'), ('Chron.', '\\\\n3,'), ('It', 'be'), ('qualified;', '\\\\nSupreme'), ('opportunity.\\\\nGlorious', 'century!'), ('have', 'a'), ('farms.\\\\nThe', 'the'), ('n\\\\nwrong', 'they'), ('horrible', '\\\\nof'), ('two', '\\\\nThe'), ('Ala\\\\n', 'that'), ('ns', 'last'), ('tl\\\\nlittle', '$50'), ('in', 'working,\\\\nworld.'), ('been', '\\\\nfied,'), ('into', 'bead\\\\nto'), ('central\\\\n', 'the'), ('When', 'testimony\\\\nof'), ('61%;', '&'), ('fond\\\\n', 'meat,'), ('he', 'a'), ('follows:', 'when\\\\nsufficient'), ('there-', '\\\\n>ellion'), ('will', 'a'), ('to', '\\\\ncommodate'), ('the', '\\\\nchase'), ('a', 'scale'), ('of\\\\nwaved', 'low'), ('shouting', '\\\\nthe'), ('dis\\\\n', 'of'), ('made', 'the'), ('that', 'everlasting\\\\n\"'), ('not', 'to\\\\nbo>'), ('moreover,', 'to'), ('twirling', 'cane,'), ('strrf;', 'T.\\\\nDunnlgan,'), ('pair', '\\\\nboots,'), ('rl\\\\n', 'feat'), ('ncr*', 'good\\\\nlid,'), ('have', 'murder'), ('and', 'were'), ('he', '\\\\ntilled.'), ('are\\\\n', 'to'), ('on\\\\n', 'transfer'), ('de-\\\\nmands;', 'do'), ('head', 'that'), ('blood', 'be'), ('are\\\\n', 'properly'), ('a', 'catastrophe\\\\nwhich'), ('a', 'of'), ('self\\\\n', 'disposition'), ('he', 'too'), ('person\\\\n', 'cut'), ('in', 'houso'), ('of', 'breach'), ('Just', 'brighter\\\\nand'), ('The', 'will'), ('not', 'and'), ('Russians', 'the'), ('to\\\\n', 'of'), ('conse-\\\\n', 'the'), ('Mrs,', 'Meredith\\\\nMrs.'), ('that', 'belonged'), ('advertised,\\\\nanil', \"Ui-'IIUVU\"), ('Invltoa\\\\n', 'assaults'), ('es¬\\\\n', 'from'), ('Laster', '88,'), ('ambi\\\\n', 'hoyond'), ('ball;', 'to'), ('elongated\\\\n', 'expanded'), ('mostly', '\\\\nexterior'), ('Ken-\\\\n', 'where'), ('no', 'to'), ('sent\\\\nto', 'our'), ('addrcwed', 'the'), ('citizens,', 'by'), ('a', 'of'), ('above', 'oth\\\\ner'), ('of', 'passage'), ('tbe', 'bauds.\\\\nThey'), ('it', 'have'), ('perfect', 'in'), ('Wash\\xad\\\\n', 'tbe'), ('*\\\\n', 'lis'), ('escaping', 'and\\\\nnext'), ('intended', 'make'), ('ho\\\\n', 'that'), ('a', 'that'), ('but', 'condition'), ('that', 'shore'), ('MAY,', 'days,'), ('assault.', 'had\\\\nnever'), ('guard', '\\\\nas'), ('Ocd', 'Joseph'), ('picot\\\\n', 'and'), ('CONVENTION,', 'the'), ('her', 'toward'), ('found\\\\n', 'and'), ('Commissioners,', 'March'), ('o\\\\n', '24th'), ('kind', 'should'), ('the', 'in.'), ('bishop.', 'bishop'), ('to', '\\\\nCommon'), ('of', ';'), ('6tnto', 'is'), ('de¬\\\\nfault,', 'by'), ('the\\\\n', 'of'), ('at', 'within'), ('report', 'at'), ('a', 'of\\\\nrows'), ('as\\\\nabove,', 'will'), ('to\\\\n', 'the'), ('bo', '\\\\nof'), ('character', 'specially'), ('where\\\\n', 'waa'), ('of', 'glorious'), ('struck', '\\\\nMeyer'), ('bad', 'rival'), ('at\\\\n', 'to'), ('the', 'was'), ('cause', 'tears'), ('the\\\\ncountry', 'by'), ('has', 'a'), ('Peru;', '\\\\nBritish,'), ('kind', 'But'), ('gun:', 'run'), ('of', 'congre\\xad\\\\ngation,'), ('of', 'action'), ('oilier,', '\\\\nbook'), ('in', 'a'), ('the\\\\n', 'on'), ('budge', 'the'), ('for', 'Panacea'), ('up.', '\\\\nuniting'), ('how-\\\\never,', 'the'), ('property', 'occupied'), ('Exchange', 'the'), ('I', 'eyes\\\\nbegun'), ('the', '\\\\nhas'), ('manipulation.', '\\\\nably'), ('God;\\\\n', 'is'), ('a', 'and\\\\ncompetent'), ('to', '\\\\nwhether'), ('daily\\\\nand', 'shelling'), ('had', '\\\\npower.\\\\nTears'), ('wife', 'daughters'), ('reconstruct', '\\\\ncabinet.'), ('Is', 'an'), ('executor\\\\n', 'W'), ('a', 'in'), ('might', 'been,'), ('an\\\\n', 'that'), ('If', '\\\\nremain'), ('the', 'Three'), ('demolished.\\\\n', 'the'), ('i*', 'to'), ('overcoat', 'tumbled'), ('the\\\\nchuck', '10'), ('another', 'them.'), ('knew', 'be'), ('agreement,\\\\n', 'make'), ('it', '\\\\nreading'), ('eveu', 'without'), ('contestant,\\\\n', 'the'), ('sylla\\\\n', 'La.'), ('public', 'to'), ('pursues', 'system'), ('pounds', 'a'), ('got\\\\n', 'nprvoun'), ('securely\\\\nfastened', 'the'), ('an', 'at'), ('some', '\\\\nprinted'), ('with\\\\n', 'diligence'), ('most', 'form'), ('to', 'taken'), ('favorable', '\\\\nhome'), ('moved', 'some'), ('marriage', 'Ezekiel'), ('within', '\\\\nState'), ('to\\\\n', 'a'), ('to\\\\n', 'The'), ('to\\\\n', 'ce'), ('Clay,\\\\n', 'perfect'), ('to', '\\\\nwhile'), ('(all\\xad\\\\n', 'to'), ('arid\\\\n', 'of'), ('doing', 'other\\\\ndamage.'), ('and', 'unfold'), ('for', 'meat.'), ('cars.', 'the'), ('to', 'of'), ('of', 'Inti\\\\nstate'), ('navigation\\\\n', 'our'), ('and', 'much\\\\nabove'), ('comonly', 'one'), ('outlining\\\\nschedule', 'will'), ('.\\\\n', 'corner'), ('his,', 'come'), ('this', 'of'), ('the\\\\ncircumstances,', 'a'), ('was', 'and'), ('tho', '\\\\nof'), ('asunmmary', '\\\\nThese'), ('of', 'moon,'), ('county,\\\\nwith', 'right'), ('gave', 'goblins'), ('family', 'sis'), ('in', 'directions'), ('that', '\\\\nterritory;'), ('with-\\\\nout', 'least'), ('explain', 'said'), ('funeral', '\\\\nfrom'), ('hydrophobia,', 'tubs,straw\\\\nhats,'), ('or', 'and'), ('as', 'in\\\\nthe'), ('the', 'heights'), ('physical', 'Com-\\\\nplete'), ('machit\\\\n', 'he'), ('shafts', 'comiiiemo\\\\nrate'), ('carries', 'against'), ('F.', 'aged'), ('all', '\\\\ntime'), ('in\\\\n', 'English'), ('who', 'love'), ('res-\\\\n', 'established'), ('win-\\\\n', 'and'), ('foot\\\\n', 'of'), (\"Unite'\\\\nItates\", 'rank'), ('trying', 'make'), ('I', 'the'), ('confidence\\\\nof', 'people.'), ('in', 'fall.'), ('the', 'what'), ('with\\\\n', 'new'), ('been', '\\\\nThe'), ('Inch\\\\nspace', 'left'), ('Ms.\\\\n', 'Bros.,'), ('a', '\\\\nwhereupon'), ('27', 'white,'), ('withut\\\\n', 'Only'), ('at\\\\nMouuuia', \"l'ark\"), ('in\\\\n', 'Much'), ('a', 'but,'), ('inches\\\\nto', 'feet'), ('avenue,', '\\\\nristown:'), ('10', 'sianuingor'), ('tho', 'power'), ('fifteen', 'beforo'), ('quantity', 'a'), ('man\\\\n', 'tha'), ('of', 'per'), ('water', 'Thomp\\xad\\\\nson'), (\"50n3*'i;\\\\n\", 'Delaware'), ('succinct', 'of'), ('whole', '\\\\nThe'), ('ball', '\\\\ntaining'), ('in', 'office'), ('and', 'of'), ('pay\\\\nour', 'of'), ('the\\\\n', 'consular'), ('wltt\\\\nmllax', 'plants'), ('that\\\\n', 'trap,'), ('notexpect\\\\n', 'or'), ('in', '\\\\ncan'), ('three', 'days.'), ('dam,', 'feet'), ('Lun-\\\\nisiana', 'a'), ('his\\\\n', 'and'), ('was', 'in'), ('Republican\\\\nSenators', 'not'), ('weut', 'blinder\\\\neach'), ('they', '\\\\nwould'), ('to', 'From'), ('generosity,', 'has'), ('the', 'way'), ('Minister', 'Public'), ('in', 'to\\\\nlocation'), ('the', '“Come\\\\nJoe'), ('how', '\\\\ncould'), ('first', 'of'), ('euancs,\\\\n', 'to'), ('ar\\\\n', 'A'), ('Mr.\\\\n', 'stated'), ('expended', 'benefits,'), ('and\\\\n', 'it'), ('tho', 'Falls'), ('tei\\\\n', 'numbered'), ('v\\\\nconsist,', 'also'), ('subserving\\\\n', 'Itest'), ('John,', 'on'), ('held', 'the'), ('head', 'in\\\\nfront.'), ('the\\\\n', 'draws'), ('resumption', 'the'), ('phophesy.\\\\n', 'your'), ('farther\\\\n', 'the'), ('from', '\\\\nThe'), ('away', 'whole'), ('immediately\\\\n', 'thqir'), ('sons', 'these'), ('interdependent,', 'without\\\\nan'), ('it\\\\n', 'point'), ('been', '\\\\ncase'), ('r,l;enay', '\"complete'), ('upon', '\\\\nknees'), ('two', 'the'), ('because\\\\n', 'said'), ('16,', 'At\\\\nthe'), ('the', 'oi'), ('of\\\\nmoneys,', 'so'), ('a', 'ways,'), ('writ\\xad\\\\nten', 'with'), ('under¬\\\\n', 'I'), ('a', '\\\\nIn'), ('Father\\\\n', 'has.'), ('seas', 'terrible'), ('Henderson,\\\\n', 'one'), ('to', 'public,'), ('there', 'a'), ('the', 'of\\\\nhis'), ('thj\\\\n', 'must'), ('believe\\\\nthat', 'situation'), ('the\\\\npublic', 'asked'), ('Mow', '\\\\nhours'), ('nation', 'ever'), (\"spliie.'\", 'was'), ('chargee', 'upon\\\\nit;'), ('sett\\\\n', 'bold'), ('have\\\\n', 'best'), ('so', 'the'), ('which\\\\nthey', 'be'), ('employment.', 'wan\\\\nnot'), ('is', 'that'), ('fronting\\\\n', 'the'), ('the', 'of\\\\ncom'), ('in', 'Fourth\\\\nStreet'), ('!', '\\\\nman,'), ('The\\\\n', 'expects'), ('Overman,\\\\nCharlotte.', 'Mary'), ('and\\\\n', 'producing'), ('was\\\\n', 'and'), ('this', '\\\\nbecause'), ('grant\\\\n', 'they'), ('by', 'constituents,'), ('bad', 'up'), ('a', 'hat.'), ('vague', 'oi\\\\nevil'), (\"the\\\\ndiscoverer's\", 'of'), ('was', 'stiff'), ('the', 'and\\\\nmother'), ('a', 'company.'), ('humanity\\\\n', 'gentleman'), ('that', '\\\\naroma'), ('were', '\\\\nquint'), ('our', '\\\\nchronicles.'), ('of', 'real'), ('pJoper', 'all'), ('And\\\\n', 'they'), ('first', '\\\\nman'), ('which', '\"'), ('the\\\\ntoe.', 'are'), ('tho', 'hard'), ('of', 'same'), ('Defense', 'it'), ('to', '\\\\nthe'), ('V.', ','), ('in', 'extremes\\\\nof'), ('flocks\\\\n', 'lambs,'), ('out\\\\n', 'date,'), ('dis\\\\n', 'their'), ('who\\\\n', 'not'), ('bi\\\\n', 'coal'), ('5*$\\\\n', 'A'), ('caught\\\\nright', 'the'), ('young-\\\\n', 'man'), ('when\\\\nthe', 'meet'), ('companions.\\\\n', 'another'), ('to\\\\nbe', 'and'), ('this', 'from'), ('redtkini,', '\\\\nannibaU'), ('the\\\\nmain', 'to'), ('.', 'wife'), ('Katl«\\\\n', 'sister'), ('entirely', 'insect'), ('I\\\\nmlJl11', 'hunt'), ('learn', 'true'), ('South', 'and'), ('in\\\\nthe', 'almost'), ('unless', 'apply'), ('been', 'to'), ('know', '\\\\nand,'), ('on', 'to'), ('(iov-\\\\nernment.', 'demand'), ('Mrs.', 'G.'), ('for', 'Con¬\\\\ngress'), ('and', 'Whig\\\\ndoctrines'), ('part\\\\nthereof,', 'is'), ('the\\\\n', 'constructor'), ('Con-\\\\n', 'to'), ('pain', 'him'), ('but', 'to'), ('to', 'fire--'), ('dis-\\\\n', 'of'), ('y\\\\n', 'that'), ('by', 'act,\\\\ni'), ('thin\\\\n', 'Sitting'), ('(4', '00\\\\nFhiladelphias'), ('begun\\\\n', 'should'), ('that\\\\n', 'tug'), ('began', 'In'), ('street,\\\\n', 'was'), ('tho\\\\n', 'of'), ('aninnls', 'dairy\\\\npicducts'), ('between', '\\\\nLine'), ('suffering,', 'eveu'), ('almost', 'sight,'), ('MMHST-\\\\na»cria6.4jc;', '0'), ('and', 'crops'), ('ship¬\\\\nwrecked', 'were'), ('any\\\\n', 'property'), ('was\\\\nshot', 'robbers'), ('very', 'bu('), ('boys', 'envel\\xad\\\\noped'), ('ad-\\\\n', 'of'), ('along\\\\nrat', 'us,'), ('a', 'of'), ('tcwouty-scvcn\\\\n', 'They'), ('mostly', '\\\\nexterior'), ('Backstops\\\\n', 'can'), ('during', 'campaign'), ('coukk', '\\\\nsufficient'), ('the\\\\n', 'at'), ('naked,', '\\\\nnnstians'), ('may', 'proper'), ('presented\\\\nat', 'June'), ('a', '\\\\nthat'), ('cold', 'damp'), ('g\\\\n', 'Walter'), ('according', 'the'), ('3,000\\\\n', 'and'), ('have', 'plenty'), ('ten', '\\\\nches'), ('Indiana', 'Wisconsin.'), ('might', 'to'), ('of', '\\\\nelectric'), (\"Colonies'\", '\\\\n*'), ('tooM\\\\n', 'the'), ('to\\\\n', 'fuller'), ('this\\\\n', 'without'), ('one.\\\\nMrs.', 'Thaw,'), ('secure\\\\nCapt.', '’s'), ('riot', 'endangered'), ('extending\\\\n', 'to'), ('heed', 'tbe'), ('McWIlllams', 'to\\\\ntake'), ('left', 'party;'), ('of\\\\npresents', 'Christmas'), ('a', 'result'), ('an\\\\n', 'The'), ('Dis\\xad\\\\ntrict', 'Charles'), ('the', 'of'), ('Salsberry,', 'U.'), ('you\\\\n', 'the'), ('he', 'little\\\\neoiiseipiencu.'), ('it', 'the\\\\nwest'), ('be', 'in'), ('scarce', 'those'), ('(jl>;\\\\ngreat', 'been'), ('of\\\\n', 'the'), ('in', 'part'), ('3oe37c;', 'mixod'), ('elec-\\\\n', 'either'), ('Iligley', 'Col¬\\\\nlier,'), ('registered', '\\\\nthe'), ('my', 'en'), ('hundred', '\\\\nThere'), ('Constitution.\\\\n', 'That'), ('one', 'dolt\\\\nis'), ('It', 'the\\\\nman'), ('white', '\\\\nalls.'), ('tbe', 'were'), ('beautiful', '\\\\nAnd'), ('officials', 'that'), ('and', 'are'), ('rule.\\\\nAt', 'on'), ('c\\\\n', 'a'), ('places', 'the'), ('He', 'married'), ('notice', 'public'), ('that', 'not'), ('and', 'away'), ('tech', 'weigh\\\\nnot'), ('spring\\\\nof', 'I'), ('success¬\\\\n', 'resistance,'), ('in', 'the\\\\nsame'), ('colts\\\\n', 'and'), ('the', 'and'), (\"'\\\\neditorial.\", 'knew'), ('corridor', '\\\\ntime,'), ('floor', 'been'), ('this\\\\nmorning', 'assist'), ('brought\\\\n', 'somo'), ('af\\\\n', 'special'), ('company;', '\\\\nthe'), ('report', 'the'), ('material', 'that\\\\nmixed'), ('a\\\\n', 'of'), ('con\\\\nsuit', '.1'), ('the', '\\\\nside,'), ('channels\\\\n', 'labor,'), ('well\\\\n', 'there'), ('in', 'servioe\\\\nlittle'), ('the', 'will'), ('im-\\\\n', 'of'), ('abund-\\\\n', 'when'), ('by', 'W'), ('and\\\\n', 'with'), ('culmin-\\\\nation', 'supreme'), ('suffrage', 'extended'), ('Isaac', 'J\\\\nMitchell'), ('In', 'work'), ('time.\\\\n', 'report'), ('done\\\\n', 'the'), ('sum', '\\\\n$609,601.50,'), ('First\\\\ntwo', 'were'), ('square', '\\\\nm'), ('the', 'to'), ('time', 'payment.\"'), ('trees', 'blown'), ('cents', 'every'), ('CFnioa\\\\n', 'wiii'), ('have\\\\n', 'in'), ('give', 'to'), ('oth\\xad\\\\n', 'rivers,'), (\"world'\", 'America\\\\ncomes'), ('pathology,', 'pursues'), ('There\\\\n', 'no'), ('Whenever', 'troops'), ('case', 'which\\\\nthe'), ('open', 'and\\\\nprofuse'), ('of', 'Ointment\\\\nthan'), ('Kaffirs\\\\nhave', '20,000'), ('States', 'equally'), ('mem-\\\\n', 'of'), ('people.\\\\n', 'truth'), ('to', 'minute'), ('droDpet\\\\n)', 'rent,'), ('Up,', 'the'), ('maintenance\\\\n', 'their'), ('at', '\\\\nhaving'), ('of', 'Court,'), ('murder\"', '\\\\nthe'), ('the\\\\ncaptain', 'satisfactorily'), ('regis\\xad\\\\n', 'or'), ('phone', 'an'), ('>\\\\n', 'John'), ('noea.}', '\\\\nThen'), ('my', 'and\\\\nmyself'), ('although\\\\nthese', 'take'), ('coli', 'al\\\\ni'), ('to', 'County\\\\nBoard,'), ('in\\xad\\\\nvestigation', 'be'), ('of', 'forced'), ('to', 'and\\\\nmake'), ('olty.\\\\n', '4'), ('u\\xad\\\\n', 'post),'), ('the', 'Mining\\\\nDistrict,'), ('conduct', 'the\\\\nperson'), ('shows', 'prospect'), ('also', 'up'), ('of', 'Union,'), ('While', 'is'), ('week.\\\\nOn', 'Saturday'), ('their', 'and\\\\nso'), ('the', 'of\\\\n1842,'), ('to', 'her.'), ('that', '\\\\nof'), ('rather', 'the'), ('city', 'fespon-'), ('of', 'construc-\\\\ntion'), ('14,', 'the'), ('He', 'In'), ('Barnes.\\\\n', 'comedy'), ('al-\\\\n', 'available'), ('the', 'If'), ('here', 'her'), ('success-\\\\n', 'so'), ('bat\\\\n', 'place'), ('buat\\\\n', 'crop'), ('question', '\\\\nbring'), ('smell', 'perfect'), ('supplied\\\\n', 'arguments'), ('he\\\\ntrie*', 'drum-head'), ('camc', 'alone,\\\\nwith'), ('me\\\\n', 'relief.'), ('this', 'of'), ('Such', 'act'), ('papers', 'an'), ('them', 'burst'), ('hnndsome\\\\nIs', 'handsome'), ('cause.', 'twenty-one'), ('i\\\\nwest', 'of'), ('but\\\\n', 'colored'), ('from', 'to'), ('col-\\\\n', 'and'), ('water.', 'high'), ('to', 'B'), ('coun-\\\\n', 'the'), ('monition', 'admir\\\\nally'), ('engravers,', 'was'), ('ti.', 'No.'), ('kept', 'in'), ('set', 'in'), ('4\\\\n;iut', 'thenco'), ('\"Bring', 'your'), ('Cate-\\\\n', 'If'), ('main-\\\\n', 'good,'), ('promises', 'its'), ('as\\\\n', 'Such'), ('of', 'best'), ('eyes', 'op'), ('ballot-box', '\\\\nlulling'), ('a', 'we'), ('EriK\\\\n', 'ami'), ('matter', 'i:\\\\nright'), ('us', 'uu-\\\\nnoticed.'), ('program,\\\\n', 'the'), ('cash\\\\nIt«', 'as'), ('al-\\\\n', 'instantly'), ('this', 'giving'), ('Tl\\\\n', 'Baltimore'), ('found', '\\\\nrelief'), ('costs', 'much'), ('rejecting\\\\n', 'important'), ('in', \"liar\\\\nkin's\"), ('com\\\\n', 'of'), ('Washington.\\\\n', 'service'), ('mer\\xad\\\\n', 'the'), ('surprised', 'sec\\\\nthe'), ('half\\\\n', 'trading.\\\\nThe'), ('a\\\\nposition', 'power,'), ('took', 'tloor'), ('Len-\\\\n', 'Kid'), ('one\\\\n', 'to'), ('tbo', 'worked'), ('ham-\\\\n', 'shorn'), ('hi\\\\nright', 'privilege.'), ('United', 'Senator.'), ('there', '\\\\nmore'), ('fran-\\\\n', 'I'), ('are\\\\n', 'way'), ('that', 'wishes\\\\nof'), ('four', 'remain'), ('Railroad;', 'acres'), ('for\\\\n1L', 'explanation'), ('the\\\\n', 'of'), ('to\\\\nvote', 'the'), ('at', 'spot'), ('not', '\\\\nly'), ('of\\\\n', 'Neal'), ('feet', 'the'), ('redeemed,\\\\n', 'general'), ('wholly\\\\n', 'Arising'), ('water', 'and'), ('from\\\\n', 'Hawaiian'), ('two', '\\\\nthree'), ('of', 'night'), ('put', 'power'), ('Samuel', 'Albright,'), ('of', 'facts,\\\\nis'), ('down', 'the\\\\nsky,'), ('obtainable).', '\\\\nIndians'), ('beast.', 'low'), ('places\\\\nmil', 'talking'), ('anout'), ('the\\\\ncontest,', 'Pou'), ('from', 'eligible'), ('confess\\\\nand', 'course'), ('tent', 'cvei\\\\nmore'), ('visit', 'one\\\\nof'), ('was', '\\\\nIn'), ('been', '\\\\ntitled'), ('difficult', '\\\\npredict'), ('not', '\\\\nBad'), ('the', 'medicine-w'), ('particularly', '\\\\ncribed'), ('his', '\\\\nous'), ('fact', 'ho'), ('alone', '\\\\nto'), ('to\\\\n', 'the'), ('either', 'the\\\\nlegislators'), ('prog¬\\\\nress', 'their'), ('goods;', 'ad'), ('with\\\\nJai.svrcutter', 'third,'), (\"they'll\", 'be'), ('the\\\\nnext', 'number,'), ('open.', '\\\\nthe'), ('lands\\\\nwhere', 'has'), ('per', 'in'), ('her\\\\n', 'old'), ('positions,', 'because'), ('and', '\\\\nInterests'), ('treaty', 'on'), ('previous-\\\\nyear,', 'many'), ('Repre-\\\\n', 'focuses'), ('juris-\\\\ndiction', 'going'), ('the', 'shall'), ('bo\\\\n', 'Tho'), ('cop\\\\n', '2289598'), ('in', 'commnuity.'), ('havo\\\\n', 'the'), ('they', 'not'), ('city,', 'June,\\\\n1801,'), ('Thursday,\\\\n', 'expected'), ('time,', '\\\\nbefore'), ('WllllHinsporU\\\\n', 'great'), ('with\\\\ntheir', 'comonlv'), ('fo.', 'of'), ('the', 'toy,'), ('for', 'purpose'), ('The', 'was'), ('therefore', 'city'), ('out', '\\\\nvery'), ('to\\\\n', 'program'), ('slice', 'the'), ('and\\\\n', 'acli*'), ('are.', 'private\\\\nrights'), ('will\\\\n', 'this'), ('De\\\\n', 'told'), ('which\\\\n', 'ti.e'), ('7,\\\\n', 'and'), ('rather', 'work,\\\\nweek'), ('member', 'tho'), ('and\\\\n', 'over'), ('automobile', 'which'), ('high¬\\\\n', 'kind'), ('not', '\\\\nhairy'), ('The', '¬\\\\nlug'), ('hoped', '\\\\npay'), ('terms\\\\n', 'idealism.'), ('outlines', '\\\\nchanged'), ('the\\\\n', 'Schools'), ('of\\\\n', 'per'), ('degrees', 'forty'), ('four', '\\\\nthousand'), ('a\\\\n', 'pittance'), ('sail', '\\\\ndescried'), ('20.10', 'pm.\\\\nChester,'), ('a', 'of'), ('ot\\\\n', 'Lewis'), ('weekly\\\\n', 'That'), ('and\\\\n', 'inches'), (\"O'Mara\", '\\\\ninterference'), ('Whalley', 'William'), ('u', 'tli\\\\nliatever'), ('deli-\\\\n', 'will'), ('was', '\\\\nof'), ('languish\\\\n', 'in'), ('raise\\\\n', 'on'), ('com\\xad\\\\nmunion', 'be'), ('commun-\\\\n', 'mourn'), ('and', '\\\\nmanded'), ('of\\\\n', 'ability'), ('behold', 'fair'), ('certain\\\\n', 'subtle'), ('Then', 'i'), ('the', 'uuqiue\\\\nmanner.:'), ('a', '\\\\nof'), ('not', 'relief.'), ('gumest\\\\n', 'tliut'), ('have', 'received.'), ('to', 'principles'), ('trusted', 'him.\\\\nKvidently'), ('been\\\\nhuobllrd', 'wife'), ('tbe', 'of'), ('tho\\\\n', 'of'), ('of', '\\\\nthe'), ('by\\\\ntheir', 'while'), ('front,', 'four'), ('from\\\\n', '80th,'), ('statesmen,', 'the\\\\nmillion,'), ('far\\\\nas', 'come'), ('In', 'of'), ('Wilmington', '\\\\nPhiladelphia,'), ('on', '20lh'), ('in\\\\n', 'their'), ('practi\\xad\\\\ncal', 'so'), ('unne-\\\\n', 'of'), ('Buel', 'and'), ('of', 'franchise'), ('Afser', 'the\\\\nconquest'), ('e\\\\nhim', 'up,'), ('Paul', 'the\\\\norchestra'), ('the', 'Into\\\\nthe'), ('Princess', 'bred'), ('in\\\\n', 'cottons'), ('circuit,', 'he'), ('of', 'nnd'), ('a', '\\\\nof'), ('audFjontsta.\\\\n', 'Wis'), ('leaves', '\\\\nrustled'), ('five', 'old\\\\ndaughter'), ('as', 'direct\\\\nmeasure'), ('and', '\\\\ncious'), ('011', 'first'), ('a', 'thing'), ('his', 'nor'), ('the', 'or'), ('during', '\\\\nilldays'), ('-t', '\\\\nwith'), ('of', 'power'), ('and', 'to'), ('Let', 'garments'), ('evening', '7'), ('re\\\\n', 'Young'), ('be', '\\\\npass'), ('the\\\\n', ';'), ('one-ha-', '\\\\nof'), ('two', 'ac\\\\ncordingly.'), ('W.\\\\n', 'ehs.'), ('and', 'a'), ('of\\\\n', 'and'), ('was\\\\n', 'the'), ('Instance', 'of'), ('company', '\\\\nu'), ('consider', 'important'), ('Christmas,\\\\n', 'us'), ('?', 'how-muc-'), ('distance', 'His'), ('rap-\\\\n', 'advanced.'), ('I', 'Tlii'), ('said\\\\n', 'putting'), ('Louis\\\\n', 'uther'), ('difference', 'wee\\\\nthe'), ('open', 'Thursdays'), ('of', 'at\\\\nsuch'), ('during\\\\n', 'time'), ('by\\\\n', 'regular'), ('clear\\\\nup', 'points'), ('of', 'type.\\\\nBesides.'), ('malarial', '\\\\nson.'), ('by', 'Morgan,\\\\nto'), ('to', 'to'), ('nuaiber', 'rows*'), ('will\\\\n', 'hear'), ('direct\\\\n', 'election'), ('rest\\\\ning', 'these'), ('invest\\\\n', 'paltry'), ('sidewalk\\\\n', 'walked'), ('But', 'willsay\\\\nthat'), ('its\\\\n', 'is'), ('you\\\\nHuit', 'stock'), ('cannot', 'made'), ('he\\\\n', 'leading'), ('certainly', '\\\\nless,'), ('out', \"compli\\xad\\\\nment'd\"), ('Marih.it\\\\n', 'thereupon'), ('the', 'gold'), ('engineer', 'in'), ('man', 'tie'), ('immediate\\\\nancestors', 'those'), ('aud', 'condi-'), ('when\\\\nit', 'passed.'), ('is', 'a'), ('given', 'opportunity'), ('force', 'removed'), ('their', 'among'), ('show-\\\\n', 'Itself'), ('fights.', 'unkuuwn'), ('knowP\\\\n', 'you'), ('trust\\\\nis', 'with'), ('today', 'not\\\\ngiven'), ('mention\\\\nthis', 'disparage'), ('the\\\\nBritish', 'Great'), ('of', 'the'), ('bet-\\\\n', 'and'), ('q\\\\n', 'of'), ('will', 'greatly'), ('tbcueaada,', 'of'), ('common', 'cdu'), ('a', '\\\\ncouple,'), ('is', '\\\\ntending'), ('we', 'them\\\\nto'), ('con-\\\\ntributed', 'the'), ('question', 'no'), ('situate', 'Vakiina\\\\ncounty,'), ('thealmve', '\\\\nthe'), ('Had', 'markets\\\\nbeen'), ('and', 'all'), ('evening.', 'following\\\\nnamed'), ('Cook\\\\n', 'on'), ('seconds,\\\\n', 'made'), ('intend\\\\n', 'claim'), ('after', 'with'), ('his', 'sorghum'), ('the', '\\\\nSea'), ('road', 'ahead.'), ('medals', 'hy'), ('jurisdiction.', '\\\\nIt'), ('thence\\\\n', 'the'), ('county,\\\\n', 'a'), ('the\\\\n', 'of'), ('di\\xad\\\\n', 'responsible'), ('relinquishes', 'purpose'), ('that\\\\n', 'percent'), ('by\\\\nthe', 'Conference'), ('those\\\\nrights', 'privileges'), ('Rosenberg.\\\\nL.', 'J.'), ('H.', 'A.'), ('of\\\\n', 'common'), ('all', 'in'), ('begiuniug.', '\\\\nfor'), ('Intensified', '\\\\nNow'), ('skill', 'eminent'), ('is', 'ev-\\\\nidence'), ('in', 'one'), ('bo', '\\\\nto'), ('that', 'Cleveland;\\\\nthat'), ('the', 'a\\\\ndainty'), ('support', '\\\\ndoctrines'), ('p\\\\nthe', 'of'), ('one', '\\\\nand'), ('all', 'for'), ('t\\\\ntime', 'of'), ('mt', 'which\\\\nalmost'), ('on', 'Edward'), ('of', 'ten'), ('the', '\\\\nwhich'), ('on\\\\nthe', 'side'), ('people\\\\nmake', 'trips'), ('anguished', 'treo'), ('to', 'realization-ofthat\\\\nwealth'), ('latal', 'approach'), ('for\\\\n', 'continuation'), ('and', 'suit'), ('he', '\\\\njemoved'), ('reparations\\\\nso', '2000000000'), ('\"\\\\n', 'to'), ('along', '\\\\nstupidity,'), ('<\\\\nOld', 'King'), ('they\\\\n', 'break'), ('but', 'and'), ('upon', 'tough'), ('aU\"l', 'nlul\\\\nthe'), ('car', 'figured'), ('was\\\\nonly', 'years'), ('to.', 'house.'), ('kings', 'and'), ('the\\\\nUnited', 'court'), ('hirn', 'bellerir.'), ('g\\\\nis', 'conducive'), ('garrison', 'as'), ('skeletons', 'two'), ('ordi-\\\\n', 'nud'), ('an', 'way:'), ('safe.\\\\n\"About', 'hour'), ('road,', '\\\\n100'), ('effectually\\\\nprepa', 'for'), ('Think\\\\n', 'it,'), ('honey', 'assume'), ('i', 'law'), ('fruitful', 'It'), ('complainants,', 'said'), ('direction', '\\\\nthe'), ('specifying', '\\\\nday'), ('a\\\\nsmiling', 'of'), ('dc\\\\nudder', 'and'), ('Anita\\\\n', 'entered'), ('$4,000', 'month.\\\\nShould'), ('who\\\\n', 'throng'), ('not', '\\\\none'), ('all\\\\n', 'responsibility.'), ('on', '\\\\nice,'), ('rcpublscans\\\\n', 'willing'), ('the\\\\nboarding', \"aud'it\"), ('papers\\\\n', 'this'), ('19W»-.1\\\\n', 'to'), ('together.', 'of'), ('in', 'bills\\\\nwill'), ('only', 'to'), ('dtol\\\\n', 'for'), ('ornamental', 'look'), ('courage,', '\\\\ncope'), ('might-have\\\\n', 'expected'), ('the\\\\n', 'tlmo'), ('whic\\\\nms', \"miiK'Hitu,\"), ('turbulent', '\\\\nA'), ('financial', '\\\\nfluences.'), ('delivered', 'said\\\\nAlex.'), ('endlesschain', 'persecutions.\\\\nTowerful'), ('Adams.\\\\n', 'it'), ('was', 'September'), ('his', 'of.'), ('Ot', 'upper'), ('of', 'taxable'), ('the\\\\n', 'have'), ('stepped', 'the\\\\nflounces'), ('of', 'tradi\\xad\\\\ntion;'), ('in-\\\\n', 'them'), ('he', 'to'), ('to', 'and'), ('each', '\\\\ned'), ('un\\\\n', 'way'), ('of', '8th.'), ('public', 'thereof\\\\nin'), ('that', '\\\\ngreater'), ('to\\\\n', 'action.'), ('theory', '\\\\nthis'), ('from\\\\n', 'it'), ('experienced', 'sensa-'), ('ar¬\\\\n', 'at'), ('3.', 'lot'), ('mote.', 'ad\\xad\\\\ndition'), ('and\\\\n', 'specified,'), ('book', 'in'), ('raco', 'time\\\\ngot'), ('mortgage', 'thereby'), ('Leslie', 'Geary,'), ('honest', 'to\\\\navert'), ('per\\\\n', 'Tile'), (',', '\\\\ntras'), ('First', '\\\\nBank'), ('watched\\\\n', 'battle.'), ('by\\\\nthe', 'of'), ('volume,', 'parcels'), ('of', 'pre\\xad\\\\nmium'), ('sot\\\\n', 'inches'), ('not', '\\\\nIt'), ('prevent', 'and'), ('true', 'Congress'), ('hardly', '\\\\nLame'), ('after¬\\\\nnoon,', 'was'), ('aisle.\\\\n', 'smiles,'), ('it', 'be'), ('dose', 'me\\\\nititant'), ('do', 'or'), ('a', '\\\\nestimate'), ('played', '\\\\niiis'), ('th<\\\\n', 'of'), ('best', 'ol'), ('there', 'no'), ('of', 'statutes.\\\\nThis'), ('will', 'worth\\\\nmillions'), ('with', 'gres\\\\nprofusion'), ('of', 'and\\\\ncovered'), ('furnish\\\\nan', 'to'), ('de-', 'In'), ('atmosphere.\\\\n', 'servants'), ('was', 'by'), ('this', 'alone'), ('completed\\\\n', 'contract'), ('W*s', 'Ev\\xad\\\\nery'), ('a', 'reduction'), ('cannot', 'on'), ('to', 'who'), ('its', 'And\\\\nif'), ('any', 'party\\\\nin'), ('cross,', 'is'), ('date', 'tbe'), ('it', 'reasonable'), ('Pugh,', '\\\\nZaehary'), ('in\\xad\\\\ntense', 'and'), ('nobody', 'did'), ('com-\\\\nmon', 'be'), ('worst', '\\\\nwinter'), ('general', '\\\\nfaction.'), ('Foreign\\\\n', 'Co.'), ('Dorfman\\\\n', 'and'), ('the\\\\n', 'to'), ('country.\\\\n\\'\"Throughout', 'a'), ('Eastern', 'This'), ('I\\\\n', 'not,'), ('nnv\\\\ndlher', 'in'), ('knowledge,', '\\\\ngone'), ('course', '.cr'), ('be', 'to'), ('a', '\\\\nipring'), ('her.', 'and\\\\nfaster'), ('declining', 'protect'), ('United\\\\n', 'is'), ('the\\\\n', 'at'), ('great', '\\\\nThen'), ('of', \"won't\\\\ndo.\"), ('own', 'as'), ('back,\\\\n', 'tho'), ('proved', 'a'), ('ought', 'bo'), ('d\\\\n', 'repeated'), ('11-13.\\\\n', 'a'), ('executed.\\\\n', 'twenty'), ('a', 'from'), ('its', 'who'), ('up-\\\\n', 'the'), ('as-\\\\n', 'security'), ('Is', 'to'), ('cannot', 'that'), ('his\\\\n', 'as'), ('succession\\\\n', 'such'), ('of', 'various'), ('same', 'again'), ('clear\\\\n', 'tho'), ('Him', 'longed'), ('years', 'relief,'), ('three\\\\n', 'of'), ('matrimony\\\\n', 'very'), (\"home.\\\\nThere'\", 'great'), ('the', 'fastness'), ('more\\\\nseed', 'the'), ('aud', 'humbly'), ('poles', 'a'), ('impossible\\\\n', 'him'), ('Old', 'Com\\xad\\\\nfort'), ('ex-Senator', '\\\\nAllen'), ('tlioskln,\\\\n', 'when'), ('cattle,', 'worth'), ('an\\\\nexamination', 'be'), ('and', 'the'), ('of', 'was'), ('spring\\\\nof', 'I'), ('Under', 'other'), ('papers', 'various\\\\nsubjects'), ('to', 'said'), ('rights', 'o.'), ('we\\\\n', 'leave'), ('best', 'skill'), ('Purada-\\\\n', 'north'), ('her', 'him\\\\nthat'), ('street,', 'Friday'), ('wit:\\\\n', 'at'), ('its', 'home\\\\ngame'), ('the', 'Associa\\\\ntion\"'), ('or', 'murders,\\\\nrobbery'), ('the', 'and'), ('forward-\\\\n', 'to'), ('the\\\\n', 'of'), ('verj', 'ar-\\\\nticle.'), ('roughweather', 'waited\\\\nfor'), ('settlement', 'The'), ('she', 'like'), ('hereby', 'pledged.\\\\nSbc.'), ('it', '\\\\nother'), ('in', 'Vitlley,\\\\nlands'), ('at', 'An\\xad\\\\ndrew’s'), ('40«ll', 'fanc»'), ('in\\\\n', 'and'), ('that', 'shall'), ('to', 'A'), ('married', 'wife'), ('States\\\\n', 'many'), ('submits', 'whole\\\\nmatter.'), ('and\\\\n', 'by'), ('to', 'early'), ('aro', 'that\\\\nho'), ('motion-\\\\n', 'In'), ('in', 'to'), ('late', 'the'), ('house', 'inspection,'), ('rented', 'of'), ('12', 'cent,'), ('is', 'an\\\\nlong'), ('pressuro\\\\nnnd', 'at'), ('Tbe', '(stance'), ('I', 'Mr.'), ('of', '\\\\nand'), ('otherwise', 'nothing'), ('emptying\\\\n', 'by'), ('great', 'affection,'), ('gaping', 'and'), ('a', 'head'), ('in', 'of'), ('In', 'sphere'), ('are\\\\n', 'idiots,'), ('or', 'or'), ('an', '\\\\nsive'), ('pc\\\\n', 'In'), ('separated', '\\\\nby'), ('extensive\\\\n', 'he'), ('of', 'nnd'), ('disintegrate\\\\nentirely', 'the'), ('people', 'th<\\\\nransvaal.'), ('inter*\\\\n', 'and'), ('the\\\\nplace', 'holding'), ('impersonal\\\\n', 'which'), ('all', 'earnings'), ('pursue', 'work'), ('obtained', 'to'), ('which', 'at\\\\npresent'), ('face\\\\n', 'the'), ('set', 'matter'), ('of', 'aud'), ('their', 'through'), ('fact.\\\\nWhen', 'truth'), ('You', 'Sir,'), ('for\\\\nthere?', 'If'), ('I', 'somo'), ('but', 'nth-elation'), ('token', 'the\\\\nfavor'), ('placed', 'the\\\\nintersection'), ('stations.\\\\nIn', 'respect,'), ('attributa¬\\\\n', 'to'), (':\\\\nNow,', 'by'), ('swal-\\\\n', 'its'), ('prem.', 'the'), ('or', '\\\\nwill'), ('leaat,', 'there'), ('oa\\\\n', '\\\\ncent'), ('the', 'of\\\\nit,'), ('to', '\\\\nbest'), ('under', 'local'), ('rest\\\\n', 'No.'), ('form', 'If'), ('is\\\\nway', 'escape'), ('Bar¬\\\\nbara.', 'veranda'), ('practitioners\\\\n', 'have'), ('of\\\\ntelephones,', 'number'), ('prior\\\\n', 'the'), ('commit-\\\\ntees,', 'most'), ('lionds,\\\\n', 'a'), ('Pro\\\\nfessor', 'rushing'), ('.', 'Berlin;'), ('larger', 'and'), ('Hmraeln\\\\ntho', 'within'), ('by', 'At\\\\nFor'), ('Remem\\xad\\\\nber,', 'the'), ('Turkey', 'that'), ('the', '\\\\ndren'), ('fjnell', '\\\\ndrew'), ('their', 'to'), ('business\\\\n', 'any'), ('form*.\\\\n', 'are'), ('of', 'boats.'), ('assistants*\\\\n', 'shelter'), ('or', 'other'), ('1,', '3,4'), ('and', 'eves\\\\nthat'), ('same', 'thirty-\\\\neight'), ('the', 'Yankee\\\\nare'), ('has', 'to'), ('but', 'Purks'), ('tako', 'a'), ('said', 'he'), ('of', 'who'), ('and,', 'It'), ('of', 'dying'), ('must', '\\\\na'), ('dips', 'ever'), ('The', 'also'), ('candidate', 'Govern-\\\\nor'), ('But', '\\\\nthat'), ('them\\\\n', 'Mr.'), ('.', 'No.'), ('con-\\\\n', 'in'), ('was', 'we'), ('schools', 'introduced\\\\nby'), ('fire\\\\n', 'his'), ('profession', 'a'), ('hay', '\\\\ning'), ('dreaa.\\\\n', 'General'), ('truth', 'my'), ('tins', 'lie'), ('his', 'will'), ('with', 'female\\\\nslaves'), ('incredibly\\\\n', 'prices'), ('a', 'was'), ('and\\\\n', 'leaves,'), ('day', 'September,'), ('can\\\\n', 'examined'), ('con-\\\\n', 'varJor,'), ('three', 'six'), ('committee,', 'bil\\\\nrovides,'), ('The', 'on\\\\nLot'), ('a', 'job'), ('swimming\\\\n', 'for'), ('dlslnnr\\\\nof', 'feet'), ('and\\\\n', \"Harvard's\"), ('platform', '\\\\nla'), ('wrong.\\\\n', 'l?an,'), ('does', 'ma-\\\\ncadam.'), ('the\\\\nhungry', 'struck'), ('the', 'band\\\\nThere'), ('and', 'death,'), ('ro\\xad\\\\n', 'court,'), ('the', 'of'), ('ear', 'give\\\\nher'), ('whose\\\\n', 'record'), ('some', 'and\\\\n$1,516.75.'), ('Town\\\\nuf', '(rovlllo.'), ('the', 'problems'), ('fine', 'to'), ('pe\\\\n', 'The'), ('bual\\\\n', 'November'), ('of\\\\nsoon', 'a'), ('A', 'may'), ('as\\xad\\\\n', 'were'), ('ares', 'merchandise;'), ('de\\xad\\\\n', 'prosecution'), ('urge', 'discreet'), ('give\\\\nthe', 'careful'), ('Leamington.\\\\n', 'was'), ('watchman', 'his'), ('whole\\\\n', 'acting'), ('have\\\\n', 'the'), ('week', \"been\\\\nH>H,'ioo\"), ('seventh\\\\n', 'when'), ('of', '\\\\ntke'), ('only', 'black,'), ('panel,\\\\n', 'those'), ('noon', 'pressure'), ('.4\\\\n', 'said'), ('their', '\\\\nsence'), ('fei\\\\nminutes', 'she'), ('sug-', 'of'), ('am\\\\naMe.to', 'show'), ('lias', 'a'), ('of', 'plants,\\\\nso'), ('spring\\\\nof', 'L'), ('from', 'city'), ('clares', '\\\\nshot'), ('kill\\\\n', 'bury'), ('constable,', 'written\\\\nami'), ('\"cobbler\\\\nshould', 'to'), ('but', 'him'), ('of', '\\\\nfinest'), ('quiet', 'steady.'), ('Every', 'was'), ('they', 'be,'), ('bevy', 'that'), ('tig\\\\n', 'for'), ('her', 'tier'), ('that', 'exchange'), ('tn', 'tA'), ('safely', 'commenced'), ('the', '\\\\nIt'), ('nation.\\\\nAlready', 'this'), ('in\\\\n', 'light'), ('consumed', 'the'), ('the\\\\nexercise', 'today'), ('cmnonly', 'one'), ('early', 'of'), ('the\\\\n', 'so'), ('for\\\\nward', 'the'), ('Blairstown\\\\nto', 'Tho'), ('spruce.', '\\\\ntide-land'), ('and', 'the\\\\nsame'), ('that', 'honest\\\\nmen'), ('patent\\\\n', '$7'), ('Be\\\\nthere', 'a'), ('representa-\\\\ntion,', 'never'), ('the\\\\n', '\"to'), ('but\\\\n', 'this'), ('regiment', 'tempted'), ('be', 're\\\\nsponded'), ('highly', '\\\\nwith'), ('wife\\\\n', 'their'), ('is', 'on'), ('the', 'of'), ('-\\\\n', 'or'), ('division', 'the'), ('no', 'pe-\\\\nrlod'), ('fairly', 'over'), ('symptom*', '\\\\ncame'), ('links', 'a'), ('the', 'of'), ('4ft', 'handicaps'), ('the', 'was'), ('Bakerized', 'make'), ('week', 'about'), ('is', 'say,'), ('serv-\\\\n', 'to'), ('not\\\\nbeing', 'to'), ('the', '\\\\nwhich'), ('employed', 'put'), ('the', 'of'), ('man', 'officiate'), ('acre', 'in'), ('much\\\\nengaged', 'investigating'), ('for', 'the'), ('would', 'upon\\\\nit.'), ('these\\\\nKilters', 'no'), ('51', 'm,\\\\n5'), ('different', 'from'), ('hell-\\\\n', 'purpose,'), ('the\\\\nenumerator', 'placed'), ('this', 'and'), ('Bayhaanc\\\\nMiss', 'Zoecklcr.'), ('theso', 'walls,\\\\nhonco'), ('testimony', '\\\\neld'), ('again', '\\\\nat'), ('reach.', 'explain\\\\nthese'), ('of', 'Btato,'), ('further', 'that'), ('du*\\\\ncourse', 'administration,and'), ('he', 'startled'), ('to\\\\n', 'assessed'), ('barges.', 'flat:'), ('the\\\\nrepairs', 'made,'), ('plat,', 'In'), ('the', '\\\\nclerk'), ('with\\\\n', 'and'), ('advised', 'to'), ('evidences', 'belong-\\\\ning'), ('may', 'questionable\\\\nwhether'), ('Ho', 'Gtorg'), ('it,\\\\n', 'tt'), ('employ', 'such'), ('the\\\\n', 'light'), ('is', 'valuable\\\\nfor'), ('peace', 'have'), ('Mttiii.\\\\n', 'Mensch.'), ('been', 'at'), ('of', 'feet'), ('expense', '\\\\nbringing'), ('subterra\\\\n', 'chambers'), ('land.\\\\n', 'sunset,'), ('the', 'pocket'), ('by', 'Ninety'), ('In', 'walls;'), ('will', 'the'), ('action;', 'toijgu,'), ('are', 'objects'), ('or', 'is\\\\nnow'), ('that', 'bad'), ('Decatur', 'a\\\\nfine'), ('traction\\\\n', 'I'), ('vain', 'in'), ('which', 'were\\\\nprevented'), ('The', '\\\\nthen'), ('so', '\\\\nthat'), ('sulllclent\\\\n', 'for'), ('prescription,', 'has'), ('100', 'north'), ('nom¬\\\\n', '1'), ('finally', 'the'), ('con-\\\\ntented', 'One'), ('to\\\\n', 'tracts.'), ('Quigiej', 'John'), ('m\\\\nSundays,', 'a.'), ('similar', 'my\\\\nown.'), ('said', 'or:c'), ('last\\\\nfairly', 'out,'), ('‘pepper;’', 'on'), ('is', 'only\\\\none'), ('baa', 'uaed'), ('boast', 'his'), ('or\\\\nsome', 'questions'), ('socialists\\\\n', 'were'), ('considerable', 'they\\\\ngradually'), ('v\\\\n', 'and'), ('orphans,', 'patriot\\\\ntizen'), ('to\\\\n', 'the'), ('ut', 'lo'), ('for', 'against'), ('me', 'Isittlo'), ('de\\xad\\\\n', 'prosecution'), ('sensatli\\\\n', 'reaching'), ('of', 'avenue;'), ('bo', 'conquest'), ('he\\\\nmust', 'worth'), ('in', 'and'), ('la\\\\n', 'to'), ('England.\\\\nIlls', 'are'), ('gonerat,', 'judge,'), ('salutarv', 'It'), ('and', 'the'), ('dis-\\\\ntant.', 'pair'), ('to', '\\\\nJackson'), ('be\\\\n', 'tho'), ('cause', 'lea\\\\nens'), ('aI\\\\n', 'by'), ('Consultation\\\\n', 'Correspondence'), ('not', '\\\\nwhen'), ('H.\\\\n', 'natural,'), ('rivalry', 'on'), ('oxtondlng', 'and\\\\nwest'), ('timeof-their\\\\ndisbandment.', 'Trenholm'), ('said', 'them,'), ('made', '\\\\nprosperous'), ('doubtful,', 'the'), ('of\\\\n', 'ibtful'), ('probably', '\\\\nind'), ('Savannah', 'in'), ('join', 'Merchants\\\\nAssociation,'), ('different', 'of'), ('the', 'dollar'), ('tors\\\\n', 'shirt'), (\"enough'\\\\n\", 'is'), ('none', 'these'), ('Quimby', '\\\\n\"There\\'s'), ('I', '\\\\nfeel'), ('patrons', 'the'), ('u.', '\\\\nfooil'), ('the', 'story'), ('period', 'the'), ('in', 'he,'), ('them', 'support,'), ('the\\\\n', 'of'), ('the', '\\\\nhood'), ('armed', 'of'), ('in-\\\\n', 'to'), ('the', 'rings'), ('\"labora-\\\\n', 'charge'), ('intend-\\\\n', 'to'), ('Esq.\\\\nAlso—That', '71,'), ('newspapers\\\\n', 'the'), ('to\\\\n', 'n«'), ('not\\\\nwrithe', 'the'), ('statu!\\\\n', 'order'), ('a', 'years'), ('of', 'waked'), ('started,', '\\\\nwere'), ('oars\\\\nwere', 'good'), ('the', 'of'), ('day,', 'has'), ('protest\\\\n', 'certain'), ('with', 'noise'), ('is', 'be'), ('he\\\\n', 'both'), ('toward\\\\n', 'hcoiio'), ('pieco', 'work,'), ('United\\\\n', 'Cap'), ('thrilling', '\\\\ntions'), ('swift', '\\\\nbination'), ('he', 'to'), ('of', '\\\\nhe'), ('II', 'hotel,'), ('in', 'office,'), ('of', '\\\\nother'), ('railway', 'the'), ('the', 'is,\\\\nand'), ('the', 'of'), ('following', '\\\\nThe'), ('idea', 'the\\\\nsubject'), ('earn-\\\\n', 'He'), ('late', '523'), ('to', '\\\\nthe'), ('cd', 'speedy'), ('to', 'the'), ('.$1.00\\\\nUnited', 'History,'), ('convicts', 'usually'), ('was\\\\n', 'by'), (',\\\\n', 'to'), ('broad\\\\n', 'will'), ('the', 'it'), ('sliding', '\\\\nterial'), ('circumstance', 'a\\\\npresumptive'), ('tho', 'thcro\\\\nwould'), ('party', 'the'), ('and\\\\n', 'will'), ('young', '\\\\nto'), ('Uiia', 'but'), ('both', 'the'), ('&\\\\n11', 'Saloon,'), ('which', '\\\\nis'), ('and', 'espe-\\\\ncially'), ('poor', 'they'), ('wind\\\\nSunday', 'and'), ('on', 'other'), ('tiara', '\\\\ncrowned'), ('the', 'Tho'), ('people', 'pay\\\\nor'), ('rattloMinko', 'that\\\\nlaid'), ('the\\\\notnl', 'of'), ('its', 'are'), ('us.', 'have'), ('Jolly,\\\\nNow', 'Ehe'), ('brothers\\\\nGilbert', '20'), ('Statin\\\\nnotes', 'coin.'), ('The\\\\ngrealest', 'experienced'), ('bom\\\\n', 'of'), ('of', 'face'), ('jail', 'of'), ('success', 'report\\\\nfinancially,'), ('posi\\xad\\\\ntion', 'has'), ('18', 'Newj\\\\npotatoes'), ('van-\\\\n', 'and'), ('sell\\\\n', 'to'), ('near', '\\\\nthe'), ('that\\\\ntree', 'Chatterer'), ('forces\\\\nof', 'without'), ('Uuited', 'commis¬\\\\nsioner'), ('of', '\\\\nWhcoUns,'), ('north-\\\\nwestern', 'now'), ('for', 'be.\\\\ntween'), ('place', 'I\\\\ntuelt'), ('In', 'scheme\\\\nof'), ('the', '\\\\nsoutherly'), ('Wil\\xad\\\\n', 'seven'), ('volunteer', 'and'), ('and', '\\\\nwomen'), ('the', 'of'), ('commerce,\\\\n', 'on'), ('Intersection\\\\n', 'TtVirrv'), ('eni\\\\nthis', 'is'), ('li-\\\\nbrary', 'the'), ('prescribe.\\\\n', 'a'), ('the', 'of'), ('our\\\\n', 'nro'), ('claimed', 'have'), ('old', 'in'), ('was', '\\\\nfor'), ('greater\\\\n', 'fiance'), ('the', 'must'), ('a.', 'that\\\\nduring'), ('vessel', '\\\\nmny'), ('in', 'The'), ('distrust\\\\nupon', 'organization'), ('the\\\\nSherman', 'prosecution'), ('which\\\\n', 'the'), ('Is', 'over'), ('dandelion', 'and\\\\nother'), ('to\\\\n', 'an'), ('our', '\\\\nyear,'), ('he', 'he'), ('injunctions', 'industrial'), ('her\\\\nprecious', 'form'), ('aQ\\\\n', 'was'), ('only\\\\n', 'a'), ('to-\\\\n', 'much'), ('in', 'of'), ('like', 'and'), ('tho', 'and'), ('For\\\\ninstance,', 'Stanley'), ('Cod.', 'Cod'), ('be', 'the\\\\nvotes,'), ('fever,', 'it'), ('said\\\\n', 'may'), ('woman,', 'It'), ('longer\\\\n', 'snbjngated'), ('prisoner', \"ip'\"), ('or', 'at'), ('thnt', 'will\\\\nenable'), ('nu\\\\n', 'strength'), ('believe', 'met'), ('energy;', 'as'), ('a', 'undignified'), ('operation', 'tralus.\\\\nby'), ('has', 'such'), ('an\\\\n', 'house'), ('tlio', 'Tho\\\\nnews'), ('remarkable', 'or'), ('his', '\\\\ntions.'), ('her.', 'put'), ('returned.\\\\n', 'Ellen'), ('the\\\\ncare', 'the'), ('compar-\\\\nison', 'a'), ('of\\\\nher', 'Almost'), ('carried', 'and\\\\nsoon'), ('Sheehan;', 'H.'), ('or\\\\n', 'A'), ('of', '\\\\ntrousers'), ('any\\\\n', 'district:'), ('Darrin', 'at'), ('and', 'which'), ('aud', 'to'), ('the\\\\n', 'department.'), ('to', 'e'), ('tell\\\\nhim', 'she'), ('without', '\\\\never'), ('apou\\\\n', 'momentous'), ('plan', 'servey'), ('such', 'the'), ('old', 'about'), ('West,', 'othert.\\\\nby'), ('you\\\\n', 'the'), ('en', 'and'), ('and', 'over-\\\\nhead'), ('Joseph\\\\n', 'Benjamin'), ('is', 'for'), ('you', 'lie'), ('sbe', 'said:\\\\n“Ibnve'), ('all\\\\n', 'parties'), ('means', '\\\\nbuilding'), ('premises\\\\nhe', 'a'), ('1871,', 'and\\\\nrequire'), ('Fog-\\\\narty.', 'an'), ('forms\\\\nand', 'precludes'), ('was,', 'course,'), ('of', '\\\\nwho'), ('full', 'of'), ('the', 'of'), ('may\\\\n', 'they'), ('sur-\\\\n', 'assei.er'), ('very\\\\nharbor', 'had'), ('un\\xad\\\\n', 'with'), ('city', '\\\\nbeen'), ('Ia\\\\nhis', 'he'), ('of', '\\\\nstruction'), ('Ave-\\\\nnue.', 'to'), ('the', 'and'), ('maintained.', '\\\\nthe'), ('been', '\\\\nBack'), ('causes\\\\n', 'the'), ('AH', 'know'), ('half', 'million'), ('his\\\\nbody', 'nnd'), ('and', 'here\\\\nand'), ('necessity', 'the'), ('although', 'are\\\\nobtained'), ('decade', 'the'), ('ar-\\\\n', 'in'), ('plnce\\\\n', 'tho'), ('has\\\\nwhich', 'for'), ('sweetest', 'of'), ('Campaign.\\\\nWhile', 'definite'), ('held\\\\n', 'an'), ('full\\\\n', 'resulting'), ('the', '\\\\npense'), ('a*', 'it*'), ('our\\\\nopinion', 'use'), ('relatives\\\\n', 'all'), ('house,\\\\n', 'tenants'), ('notes,\\\\n', 'the'), ('money,', 'spite'), ('you', 'a'), ('halloa?\"\\\\n', 'eye'), ('people', 'and'), ('toalmost', '\\\\nEven'), ('the\\\\n', 'gains'), ('t\\\\n', 'yard'), ('they', 'enjoy'), ('and', '\\\\npreciate'), ('5,', '7,'), ('would\\\\n', 'demolished'), ('stuck', 'tbo'), ('could', '\\\\nilp'), ('from', 'A'), ('to', 'ex-offlcio'), ('The\\\\ncountry', 'no'), ('small', 'that\\\\ninniia'), ('in\\\\nrepair', '\"state'), ('con\\\\nuntil', '(lav;'), ('of', 'navel;'), ('hung', \"'paper\\\\n{\"), ('It', 'Carver'), ('work.\\\\n', 'first'), ('who', 'of'), ('He\\\\n', 'tliat'), ('Greece.', 'the'), ('until', 'cannot'), ('the', 'comes\\\\nout'), ('Clalbourne.\\\\n', 'Ten'), ('»4.18', 'm.\\\\n•12.56'), ('five\\\\n', 'in'), ('mayor', '\\\\nclerk'), ('the', 'carries'), ('after', '\\\\npassage'), ('school', '|'), ('excess', 'the'), ('gottlng', 'of'), ('Aat.', '\\\\nIluatlrr'), ('It\\\\n', 'monetary'), ('offices', 'be'), ('a', 'which'), ('he', 'been'), ('$12,500', 'when'), ('yards\\\\n', 'the'), ('most\\\\n', 'budding'), ('people', '\\\\nhave'), ('driv\\xad\\\\n', 'gauge'), ('companies\\\\n', 'good'), ('failed', 'explode.'), ('home.\\\\n', 'Under'), ('two\\\\n', 'down'), ('revolution.\\\\n', 'people'), ('before\\\\n', 'mower,'), ('value', 'the'), ('senate\\\\nto', 'exclusion'), ('noiS\\\\n', 'by'), ('if', 'needs'), ('same', 'liable\\\\nlode'), ('his', 'life.\\\\nIn'), ('The', 'oompany,\\\\nthe'), ('Band,', 'three'), ('line\\\\nof', 'avenue,'), ('reasonable', '\\\\nof'), ('spright-\\\\n', 'his'), ('The', 'Valley,'), ('the\\\\n', 'as'), ('gentlemen', 'so'), ('tired', '\\\\nMarkham.'), ('more\\\\n', 'that,'), ('I', 'ner-\\\\nvous,'), ('j', 'iatereated.'), ('the', 'and'), ('to', 'at'), ('morning\\\\n', 'most'), ('extensive', 'aul'), ('»E\\\\nDuyal,', 'as'), ('rtceully,\\\\nhas', 'sold'), ('for', 'every'), ('it', 'she'), ('or\\\\n', 'receipts'), ('knows.\\\\n', 'Detective'), ('mei\\\\n', 'or'), ('mind,\\\\n', 'deserved'), ('dan-\\\\ngerous', 'fatal'), ('or', '\\\\nvessels'), ('the', 'is'), ('also', 'fuct'), ('court;\\\\none', 'in'), ('the\\\\n', 'required'), ('down', 'steep'), ('1\\\\n', 'that'), ('courts,', 'to'), ('has', 'with'), ('had', '\\\\nTbe'), ('he', 'work'), ('much\\\\n', 'ut'), ('what', 'wrote'), ('got', 'half'), ('approved\\\\nMarch', '1801'), ('corres\\\\npondence', 'this'), ('81', 'AP'), ('us', 'one.\\\\nThoro'), ('horse', 'Shanmrock;'), ('two', '\\\\nwe'), ('note,\\\\nset', 'in'), ('as', '\"Big'), ('what', 're\\\\nlief'), ('Hp\"\\\\n', '4906.50'), ('he', 'pushing'), ('Ham]\\\\n', 'delegation'), ('on', 'river,\\\\naoout'), ('upon', 'success.\\\\nSugar'), ('the', 'in'), ('better\\\\nthe', 'would'), ('to', '\\\\nIsland'), ('because\\\\nof', 'failure'), ('table', '\\\\nproposed'), ('of', 'Government.'), ('moments\\\\n', 'onr'), ('the\\\\n', 'of'), ('scrutinizing', '-as\\\\nto'), ('back\\\\nat', 'Why'), ('rolling', '\\\\nwhere'), ('in\\\\n', 'our'), ('finally', 'known,'), ('pitied', 'blamed.'), (',\\\\ndering', 'In'), ('the', 'to'), ('the', 'will\\\\ncome'), ('specific\\\\ngravity', 'grains'), ('starved', '\\\\njealousies—might'), ('procure', 'of'), ('sales\\\\n', 'Dress'), ('Muscovite', 'slay'), ('accoidance\\\\n', 'tho'), ('recently', '\\\\ncld'), ('of\\\\n', 'in'), ('nud\\\\n', 'from'), ('and', '\\\\ncoffin.'), ('t', 'offered'), ('majority', '\\\\nbalanced'), ('11,430\\\\n', '$2,030.90;'), ('and', 'on'), ('busiest', '\\\\nson.'), ('the', 'tank\\\\nelagged'), ('or', 'compensation,'), ('were\\\\n', 'of'), ('city', 'were'), ('familiar\\\\nwith', 'latest'), ('that', 'after'), ('later', 'a<\\\\na'), ('of', 'lull'), ('behest', 'for'), ('Y.;', 'B.'), ('patient', '\\\\nany'), ('service;', '\\\\nWelty'), ('fans\\\\n', 'win'), ('(lie', 'at'), ('effects,', 'perhaps'), ('of', 'of'), ('our', 'transmitted'), ('78,\\\\n', 'retired'), ('of', 'terrace'), ('defeated', 'Athletics'), ('Guitar', 'ue'), ('en-', 'expression'), ('\"if', 'had'), ('am),', 'truth,'), ('also', 'with\\\\na'), ('invariably\\\\nfrom', 'time'), ('his\\\\nhome,', 'Frye'), ('work\\\\n', 'be'), ('ta\\\\nJ.', 'Massicot,'), (\"'anything\", 'the\\\\nform-'), ('old\\\\n', 'of'), ('bo\\\\nput', 'uso'), ('wbich\\\\n', 'monetary'), ('in', 'stares\\\\nhim'), ('a\\\\n', 'years'), ('apparent!)\\\\ni»y', 'ho]>e'), ('certified', 'upon'), ('photograph*,', 'him'), ('led', '?ettleror\\\\napplicant'), ('$5,000,000,000\\\\n', 'be'), ('the\\\\n', 'haring'), ('the\\\\n', 'cause,'), ('distinguish\\\\n', 'it'), ('pay\\\\n', 'best'), ('the', 'One'), ('been\\\\n', 'at'), ('out', 'SIO,OOO'), ('vote', 'the'), ('been', 'of'), ('retired,', 'th\\\\nmen'), ('money', 'by'), ('last', 'to'), ('Russiaus', 'the'), ('anv\\\\n', 'a'), ('at\\\\n', 'chamber'), ('counter', 'Of'), ('a\\\\n', 'even'), ('utnam\\\\n', 'to'), ('fancy—such\\\\nwomen', 'I'), ('of', '\\\\nting'), ('restrain\\\\nthe', 'defendant'), ('street\\\\nrailway*', 'the'), ('according', 'law.'), ('A.\\\\n', 'Anne'), ('well', '\\\\nnnd'), ('nearer', '\\\\nFrom'), ('under', 'con-\\\\nditions'), ('of', 'certificate;'), ('was', 'to'), ('ho', 'into'), ('compelled,', 'called'), ('c:\\\\n', 'as'), ('companion', 'the'), ('of', '\\\\nalter'), ('three', '\\\\ndred'), ('J\\\\n', 'good'), ('own', 'It\\\\nis'), ('county,', 'this'), ('do', 'rod'), ('a\\\\npretty', 'or'), ('or\\\\nby', '5'), ('Wis', 'and832'), ('embryo\\\\ncity,', 'only'), ('cured', 'it'), (\"the'\\\\n\", 'or'), ('is\\\\n', 'ventilated.'), ('.streets.\\\\n', 'W.'), ('etc.\\\\nReforestry', 'natural'), ('deal\\\\n', 'any'), ('Aug¬\\\\nust', '1118,'), ('certificate', '\\\\nsenting'), ('contract\\\\n', 'Cronin,'), ('Oscar\\\\nGrimes,', 'Frank\\\\nGrimes,'), ('the', 'should\\\\nrealize'), ('making', 'subject\\\\nthe'), ('of\\\\n', 'or'), ('its', '\\\\nweight,'), ('he\\\\nstate*,', 'hi*'), ('t\\\\n', 'most'), ('ought', 'leave\\\\nthe'), ('17S4', 'I\\\\nthe'), ('who', 'already'), ('at', 'laat'), ('assistance', 'a\\\\nspecial'), ('shall', 'eligible'), ('serious.\\\\n', 'E.'), ('expov)', '\\\\nchcat'), ('aid', '\\\\ntheir'), ('profoundly\\\\n', 'from'), ('in', 'J.'), ('France\\\\n', 'send'), ('Pillings', \"Randell'Hunt;\"), ('York.\\\\nHere,', 'we'), ('Ncwporl,\\\\n', 'was'), ('aid', '\\\\nWashington,'), ('treating', 'party'), ('remained', 'the'), ('of', 'good'), ('is\\\\nas', 'as'), ('I\\\\nlooked', 'the'), ('saving\\\\n', 'of'), ('of', 'Med-\\\\nica\"'), ('one\\\\nday', 'him'), ('with', 'rich\\\\nof'), ('37', 'street,\\\\nwho'), ('ri\\\\n', 'was'), ('bo', 'to'), ('it', 'calculated,'), ('Is', 'time'), ('by\\\\nconsistency,', 'and'), ('was', '\\\\nsurprising'), ('4', '5'), ('occupations', 'from'), ('of\\\\nthe', 'of'), ('his', 'easy'), ('the', 'of'), ('Montrose,', 'the'), ('sandy', '\\\\nThe'), ('11.\\\\n', 'Washington'), ('straight\\\\n', 'the'), ('other\\\\n', 'It'), ('it', 'Jesus,'), ('this', '\\\\narrangement'), ('levy\\\\n', 'special'), ('of\\xad\\\\nten', 'to'), ('street', 'that'), ('they', 'be'), ('sill\\\\nclous', 'clay'), ('in', 'same'), ('the', 'people'), ('accordance\\\\n', 'the'), ('$.160,000', 'The'), ('citizens', 'add'), ('with', 'desired'), ('civil', '\\\\nWhile'), ('have', 'them'), ('to', 'in'), ('\\\\\\\\y.tt^', '\\\\nview'), ('cheap', 'prico,'), ('North\\\\n', 'G'), ('ii\\\\n', 'empowered'), ('trimmed\\\\nfront', 'back'), ('time\\\\n', 'is'), ('the', 'This\\\\ncountry'), ('her', 'as'), ('ut\\\\n', 'and'), ('In', 'but\\\\nno'), ('Those', 'have'), ('some\\\\nthing.', \"makin'\"), ('to\\\\n', 'experts'), ('juice,\"', 'is'), ('highest', 'towers\\\\nin'), ('service', 'writs\\\\nrivers,'), ('thought-\\\\n', 'in'), ('Mr».', 'H.'), ('Engineer\\\\npf', 'Board'), ('hate', 'word'), ('bravo', '\\\\nwere'), ('boundaries.\\\\n', 'X'), ('others', 'died'), ('of\\\\n', 'arch'), ('President', 'them\\\\na'), ('schools,', 'laughing\\\\nnt'), ('j\\\\nUnited', 'is'), ('major-\\\\n', 'of'), ('admonish\\\\ntbe', 'instead'), ('merit!\\\\n', 'will'), ('boarded\\\\n', 'considerable'), ('districts', '\\\\nhome.'), ('up', 'any'), ('is', 'the'), ('had\\\\nended,', 'left'), ('New', 'the'), ('tbe\\\\n', 'rushed'), ('vil', 'reform,'), ('\"Ora\\\\n', 'of'), ('the', 'on'), ('record', 'the'), ('a', '\\\\nfactor.'), ('tbo', 'heats\\\\nthe'), ('or', 'other,'), ('always', 'who'), ('Watson,', 'and'), ('governor', 'request-\\\\ned'), ('which', 'trans-\\\\nparent'), ('news\\\\n', 'throughout'), ('desire', 'the\\\\nparties'), ('our', '\\\\nthat'), ('they', 'recently'), ('gold\\\\n', 'to'), ('a', 'section'), ('due', 'Company'), ('Said', 'to'), ('was\\\\n', 'known'), ('may', 'passenger\\\\ntraffic.'), ('and', 'him\\\\nIf'), ('beer,', 'cider,\"'), ('sold', 'to'), ('However,', 'saving'), ('that', '\\\\ncould'), ('tmaller.\\\\nBesides', 'Mr.'), ('B', 'this'), ('have\\\\n', 'to'), ('gave', '\\\\npoints'), ('crawled', 'tho'), ('Amer-\\\\nican', 'manufacturers'), ('and', '\\\\nouo'), ('Is\\\\n', 'recipe'), ('not', 'in'), ('and', 'business'), ('for', 'deal-\\\\ning'), ('justly', 'consid¬\\\\nered'), ('whether', 'would'), ('for', 'ho'), ('the\\\\n', 'falhcr'), ('lu\\\\nwhich', 'arrested'), ('evolutlonar;\\\\npoint', 'view.'), ('was', ';'), ('to', 'back\\\\nwhen'), ('book.', 'is'), ('and', 'room'), ('youngsters', 'those'), ('purify', 'party.\\\\nMr.'), ('Poust,', '\\\\nWilliam'), ('the\\\\ncrowd', 'the'), ('of', '\\\\nheadache,'), ('quart', 'sorghum'), ('good', '\\\\nThe'), ('of\\\\n', 'audience,'), ('while\\\\n', 'a'), ('22\\\\n', 'to'), ('Hopkins', '\\\\ncaptain'), ('Ewing', 'gone'), ('man', '\\\\nit.'), ('enough\\\\ntor', 'to'), ('my\\\\n', 'Edna'), ('moon,', '\\\\nye'), ('by', 'Tucker'), ('of', 'were'), ('God’s\\\\n', 'But'), ('they\\\\n', 'and'), ('but', 'extralite\\\\ndid'), ('farmers', '\\\\ntheir'), ('power', 'aisle,\\\\nthe'), ('not', 'Hall,'), ('des', 'he'), ('interest', '\\\\nfrom'), ('tliusi\\\\n', 'have'), ('Erna', 'her'), ('is', 'to'), ('wv', 'imm«\\\\nrtely.'), ('(Worth’s);', 'T«.\\\\nTitus.'), ('licenses', 'manu\\\\nfncture'), ('un-\\\\n', 'that'), ('Gluck-auf\\\\n', 'to'), ('of', '\\\\nthat'), ('white', 'and'), ('commencing,', 'the\\\\nsame'), ('so', 'money'), ('him', 'honey,\\\\nand'), ('ut-\\\\n', 'a'), ('be', 'with\\\\naccording'), ('an', 'aversion.'), ('almost', 'half'), ('eleg', 'load'), ('side', 'a'), ('her\\\\n', 'who'), ('after', 'resum-e-'), ('district', 'therein'), ('Committee\\\\nto', 'to'), ('to\\\\n', 'tons,'), ('but', 'which'), ('is', '\\\\nbaaed'), ('make', 'of'), ('id', 'Tana*\\\\ngas.'), ('bones', 'singular\\\\ndiscovery'), ('thus', 'from'), ('as\\\\n', 'Texan'), ('the', 'on'), ('dealers', '\\\\nsupplied'), ('to', 'a\\\\ncontinuous'), ('of', 'hath'), ('pro-', '\\\\ntiring'), ('camp\\\\n', 'the'), ('by', 'of'), ('one', 'and'), ('means', 'scctiro\\\\na'), ('Mor\\xad\\\\ngan', 'Rev.'), ('7,000', 'market'), ('One\\\\nsheathed', 'coppered,'), ('tho', '\\\\nof'), ('atti\\xad\\\\ntude', 'was'), ('of', 'the'), ('Bran\\xad\\\\n', 'creek'), ('n', 'family.'), ('to', 'a'), ('turned', 'soldiers'), ('Colonel\\\\n', 'that'), ('and', 'are\\\\nengaged'), ('do', '\\\\nthing'), ('and\\\\nthe', 'fail'), ('report.\\\\nA', 'was,'), ('good.\\\\n', 'Tombstones'), ('their\\\\n', 'being'), ('infan\\\\nMedicine', 'mo'), ('the\\\\n', 'lu'), ('As', 'day'), ('tho\\\\nauspices', 'Ryau'), ('it.', 'af-\\\\nter'), ('order', 'give'), ('M.', 'aged'), ('wheii\\\\napplied', 'him.'), ('gun', '\\\\nplay'), ('misfortune\\\\nrhlch', 'befallen'), ('and', 'articles\\\\nthat'), ('wreath.\\\\n', 'had'), ('of\\\\n', 'stores'), ('may', 'vast'), ('10', 'of'), ('luggage\\\\nHo', 'they'), ('Uili\\\\nDean', 'again'), ('and\\\\nmeets', 'objection'), ('Fund', 'received'), ('..............\\\\n', 'Alfred'), ('will\\\\napply', 'the'), ('Cen\\xad\\\\n', 'College.'), ('follows:\\\\nLocation,', 'Beginning'), ('annual', '\\\\nloss'), ('con\\\\n', 'in'), ('French\\\\n', 'a'), ('place', 'prepare\\\\nfor'), ('attor-\\\\n', 'has'), ('par-\\\\n', 'which'), ('body', 'has'), ('Stato.', 'parent'), ('cannot', '\\\\nreversed'), ('blankets\\\\nharness,', 'and'), ('and\\\\n', 'a'), ('time', 'taken'), ('ol', 'i>ro|>urty'), ('he', '\\\\nnot'), ('lor', 'concerned\\\\nIn'), ('ebb.\\\\n', 'stubborn'), ('the', 'Clyde'), ('let', 'have'), ('seen', 'our'), ('period', 'his'), ('provide', '\\\\nplaintiff'), ('coined\\\\n', 'or'), ('The', 'is'), ('thence', 'residence'), ('Kerr', 'not'), ('of', 'Secretary'), ('and\\\\nthus', 'what'), ('The', 'Gate'), ('about\\\\nIt,', 'gave'), ('the', 'about'), ('introduce\\\\nthe', 'motor'), ('of', '\\\\ndeveloped'), ('never', 'leave'), ('if', 'they'), ('Pomona', 'to'), ('in\\\\n', 'to'), ('discount', '5'), ('to', 'The'), ('cent,\\\\n', 'tliis'), ('Female\\\\nDiseases,', 'properly'), ('the\\\\n', 'so'), ('Congregational\\\\nchurch', 'Bradford'), ('Spanish\\\\ngold', 'silver'), ('from', 'districts'), ('polls\\\\nas', 'and'), ('used.', '\\\\nstead'), ('or', 'at'), ('portion\\\\n', 'the'), ('serious.\\\\n', 'the'), ('No.\\\\n', 'at'), ('bet', 'write'), ('moment,', 'unguarded\\\\nmoment,'), ('credit', 'is'), ('to', 'the'), ('or', 'shall\\\\nbreak'), ('of', 'horse'), ('No-\\\\n', 'is'), ('himself\\\\nbetter', 'to'), ('Semi-\\\\n', 'and'), ('history,', 'valor\\\\noi'), ('nt\\\\n', 'length'), ('had', 'to\\\\nfear'), ('as\\\\n', 'and'), ('tne', '\\\\nprovement'), ('certainly', 'no'), ('whistle\\\\n', 'nearly'), ('»\\\\nas', 'include'), ('the', 'attempt'), ('establish-\\\\nment', 'such'), ('subsequent', 'than\\\\nthe'), ('that', 'will'), ('sky', 'wa\\\\nroical'), ('her', '\\\\nband'), ('thiugs', '\\\\nsometimes'), ('Gunters', '\\\\nconsisting'), ('.\\\\n', 'dump'), ('skill,', 'black\\\\nand'), ('in', 'which\\\\nhis'), ('the', 'I'), ('tho\\\\npresent', 'as'), ('carry', 'war\\\\nwell'), ('7', 'that'), ('the', 'of,'), ('subject\\\\n', 'following'), ('dono.\\\\n', '10'), ('range', 'day,'), ('she', 'about.\\\\nShe'), ('to\\\\n', 'Democratic'), ('have', 'brought'), ('is', 'text'), ('however,', 'not'), ('and', 'making'), ('prove', 'positions.\\\\nSir,'), ('shows\\\\n', 'this'), ('2.34', 'cent,'), ('one', 'practically'), ('ore\\\\na«', 'First,'), ('the', 'week'), ('some', 'Hag.'), ('are\\\\ncaught', 'a'), ('for', 'first'), ('a', 'and'), ('the', 'part'), ('will\\\\n', 'with'), ('throat', '\\\\nme'), ('means', '\\\\nsupport—will'), ('threatened', 'intestine'), ('and\\\\n', 'was'), ('with', 'India'), ('it\\\\n', 'diflicult'), ('friends', 'rela-\\\\ntives,'), ('shares.', 'Centr\\\\nrallied'), ('Patricia', 'yielded'), ('difference\\\\n', 'the'), ('tho', '\\\\nbors,'), ('with\\\\n', 'Mexico'), ('to\\\\n', 'the'), ('of', 'nor'), ('of\\\\nits', 'halfback,'), ('the', 'of\\\\nchoice'), ('water,', 'him\\\\ngo.'), ('frame', 'caught\\\\nseveral'), ('officers,', 'officers\\\\nwho'), ('ol', '\\\\noption,'), ('bo', '\\\\nwork'), ('hemming', 'tlio'), ('and', 'Skerries'), ('indications\\\\nare', 'tbo'), ('individual', 'and'), ('and\\\\ncommissions', 'salary'), ('and', 'by\\\\nthe'), ('ld', 'a\\\\nfurtive'), ('proscribes.', 'test'), ('of', 'says\\\\nHon.'), ('can', 'secured,'), ('for', 'moment'), ('in', 'the'), ('One', 'too'), ('suffrage\\\\n', 'every'), ('the', 'of'), ('men,', 'turtle\\\\nin'), ('folks', 'something'), ('the', '\\\\ntion.'), ('gave', '\\\\npledge'), ('successors,', 'whose'), ('$1.25', '$5.00'), ('J\\\\n', 'H.'), ('at', 'today.\\\\nHowever,'), ('of', '\\\\nbut'), ('the\\\\n', 'were'), ('before', 'has'), ('enemies', 'out\\xad\\\\nrun'), ('andshortly', '\\\\nwards'), ('buying', 'ruinous'), ('a', 'nod'), ('pacitled,', 'to'), ('beautiful', 'color.'), ('girls)', 'their'), ('sit', '\\\\nup,'), ('performed', 'persons'), ('the', 'Jubi\\\\nI'), ('the', 'pieces'), ('Paul\\\\n', 'aged'), ('said', 'or'), ('not', '\\\\nwith'), ('above', 'and'), ('bind-\\\\n', 'exhibition'), ('the', 'several'), ('and', 'us'), ('brought\\\\n', 'through'), ('the', 'and'), ('thick,\\\\n', 'discharge'), ('the\\\\n', 'information'), ('But', 'stood'), ('in\\\\n', 'to'), ('Washington', 'on'), ('welcome', '\\\\nyour'), ('the', 'and'), ('3ai4c\\\\nBAI,TIMOErWheatflrm:No.2red.', '\\\\n96c'), ('rebelled\\\\nagainst', 'defied,'), ('police', '\\\\nments'), ('her\\\\nseivant', 'a'), ('the\\\\n', 'The'), ('sunny\\\\n', '(the'), ('lolls\\\\n', 'its'), ('people,', 'mius'), ('our', 'shall'), ('meandering:\\\\n', 'N.'), ('by', '\\\\nright'), ('the', 'was\\\\nto'), ('them', 'it\\\\n“Well,'), ('noticeable', '\\\\nauoui,'), ('up', 'steep'), ('and', 'it'), ('a', 'amount'), ('is', 'a'), ('whether', 'will'), ('of\\\\nthe', 'Then,'), ('long', 'need,'), ('the', 'and\\\\ndisbursements'), ('I\\\\nonvy', 'in'), ('patient', '\\\\nany'), ('large.\\\\nIn', 'seeond'), ('been', 'unfaltering'), ('poles', 'a'), ('Presidency\\\\n', 'the'), ('shall', 'us'), ('buil-\\\\n', 'refused'), ('other,\\\\n', 'no'), ('po-\\\\n', 'or'), ('without', 'j\\\\nIn'), ('T.', '.'), ('f\\\\n', 'of'), ('business', 'they\\\\nhereafter'), ('Commis-\\\\nsion', 'the'), ('varies\\\\n', 'the'), ('be', 'in'), ('far', 'to'), ('than', 'can'), ('ten,\\\\n', 'twelve,'), ('and', 'And\\\\nits'), ('woman\\\\n', 'have'), ('all', '\\\\nword*'), ('that,', 'French'), ('corner,\\\\nwherewe', 'observed'), ('to', 'appoi\\\\nL.ent'), ('I\\\\nof', 'Bonltans.\\\\n\"Dr.'), ('flight,', 'eminence\\\\nof'), ('a\\\\n', 'by'), (\"the\\\\nworker's\", 'birthday.'), ('seed', 'the'), ('of', 'procession'), ('$1.\\\\n', 'llominv,'), ('ordinary.\\\\n', 'embarrassments'), ('which\\\\npierce', 'inner'), ('is', '\\\\npractical'), ('in', 'mili-'), ('did', '\\\\nObedlah.'), ('not', 'half'), ('eat\\\\n', 'one'), ('in', 'week'), ('off', 'another'), ('dan-\\\\n', 'and'), ('is', 'so'), ('my\\\\n', 'about'), ('the', 'treaty'), ('di¬\\\\n', 'of'), ('for', 'aid'), ('place', '\\\\nbusiness,'), ('the', 'States'), ('lately', 'hy'), ('appearance,\\\\n', 'no'), ('skin', 'the'), ('to\\\\n', 'clearly'), ('of', 'ho'), ('concession\\\\n', 'her'), ('de-\\\\nfense.', 'first'), ('vainly', 'at'), ('clergyman\\\\n', 'the'), ('each\\\\n', 'Every'), ('In', 'judgment,'), ('basing', 'deductions'), ('on', 'bill\\\\nfor'), ('the', 'of'), ('command\\\\n', 'home'), ('years', 'sung'), ('And', 'suroly\\\\nwould'), ('dairy', 'are\\\\npurebred.'), ('II', 'Hi'), ('bravely', 'his'), ('retaining', 'good'), ('known', 'the\\\\n“Nécessitons'), ('a\\\\nkeen', 'to'), ('authorised\\\\n', 'directed'), ('to\\\\nbe', 'by'), ('that', 'injustice'), ('the', 'into'), ('fearless\\\\nasserter', \"man's\"), ('in\\xad\\\\ntense', 'and'), ('the', '\\\\nwould'), ('sit', 'vender'), ('on', '&'), ('any\\\\n', 'was'), ('class\\\\n', 'the'), ('fol-\\\\n', 'F.'), ('Tharp', 'speaker,'), ('private\\\\n', 'of'), ('more', 'than'), ('relatives\\\\n', 'neighbors'), ('in', 'into\\\\nthe'), ('lb', '\\\\nI'), ('practicable,\\\\n', 'could'), ('the\\\\n', 'would'), ('between', 'ponth'), ('would', 'preferable'), ('legislation,', '\\\\nseems'), ('Jacob', '\\\\nler,'), ('recommendations\\\\n', 'of'), ('so', 'a'), ('of\\\\nland', 'owes'), ('inquiry\\\\n', 'the'), ('Mrs.\\\\n', 'and'), ('respect', 'the'), ('t\\\\n', 'we'), ('and', 'the'), ('yankeeism\\\\n', 'ushered'), ('of', 'ailver'), ('a', 'marriage.'), ('--', '\\\\ntogether.'), ('two', 'one'), ('the', 'of'), ('the\\\\nSavanna', 'outside.'), ('.\\\\n', 'a'), ('the\\\\n', 'dishes'), ('tha\\\\n', 'genuine'), ('times,', 'Hist\\\\nball'), ('movement', '\\\\nDecker'), ('assembled', 'the'), ('down', 'road,'), ('of', 'most\\\\nhandsomely'), ('Valley,\\\\n', 'h'), ('city', 'In'), ('election\\\\nin', 'counties'), ('company', 'failed'), ('¬\\\\nlag', 'about'), ('cover\\\\nthe', 'in'), ('condui\\\\n', 'troops'), ('boats', 'get\\\\nwithin'), ('Alaska', 'with'), ('another', 'In'), ('treason\\\\n', 'imperil'), ('acted', 'Fanny'), ('and', '\\\\norder,'), ('s\\\\n', 'cover'), ('seemed\\\\nto', 'no'), ('British', 'to'), ('6uch', 'in-\\\\nability'), ('ol\\\\n', 'game,'), ('plac-\\\\n', 'the'), ('the', 'of'), ('in', '\\\\nmovement'), ('contained', 'advertisement'), ('to', 'her\\\\nthousands,'), ('paye', 'In'), ('is\\\\nby', 'in'), ('and', '\\\\nItem'), ('(overseer)\\\\n', 'nominally'), ('Himself\\\\nthat', 'Spirit,'), ('morning\\\\nmixed', 'the'), ('October', 'n'), ('permanent', 'totai\\\\ndisability,'), ('his', 'in'), ('thJ\\\\n', 'of'), ('Court,', 'said'), ('feast', 'the'), ('le\\\\nbelieve', 'preaching'), ('until', 'provisions\\\\nwere'), ('of', 'o’clock,'), ('near\\\\n', 'which'), ('pteaeane\\xad\\\\n', 'by'), ('are\\\\n', '\"We'), ('the', 'but'), ('lha', 'if'), ('somo\\\\n', 'very'), ('to\\\\n', 'plain'), ('me', 'first'), ('hours\\\\n', 'sank'), ('meet', 'charge.'), ('the\\\\n', 'County'), ('one', 'his'), ('mes-\\\\nsenger', 'that'), ('green,', '\\\\nto'), ('th\\\\n', \"I'm\"), ('nre', 'that'), ('interested\\\\n', 'the'), ('which', 'hope'), ('in-\\\\n', 'between'), ('them-\\\\n', 'arid'), ('afforded.', 'was'), ('saw', 'fall'), ('was', 'and'), ('his', 'and'), ('Vamrod.', 'Nelly,!’’\\\\nsays'), ('trade', 'can'), ('from', 'of'), ('a\\\\n', 'Into'), ('action', 'precisely'), ('Houses', '\\\\nring'), ('or\\\\nMarket', 'and'), ('an', '\\\\nsecond'), ('free\\\\ntransportation', 'ministers'), ('the', '\\\\nspecified'), ('mn.le', 'the'), ('sister,', 'Van,'), ('Milford\\\\n', 'was'), ('baking\\\\nat', 'time'), ('in', 'kitchen,\\\\nwhere'), ('lit\\\\nling', 'made'), ('them', 'most'), ('was', 'trou-\\\\nbled'), ('to', 'they'), ('E.', '94'), ('the', 'of\\\\nsaid'), ('Another', 'lender'), ('modern', 'methods.'), ('perfectly', '\\\\nensure'), ('Vatican,\\\\n', 'so'), ('that', 'only'), ('of\\\\nso', 'my'), ('steam\\\\nfl.37%o:', '6.23c:'), ('of\\\\nany', 'of'), ('more\\\\nin', 'second,'), ('other\\\\nconditions', 'might'), ('k-pt\\\\n', 'at'), ('.Murnt;\\\\n', 'leave'), ('now', 'force'), ('are', 'is'), ('day', 'not1'), ('is', 'war'), ('of\\\\n', 'storm.'), ('proved', 'this'), ('once', 'it'), ('had', '\\\\nseen'), ('with', 'wisdom'), ('of', 'county,'), ('soloists', 'shal\\\\nhear'), ('thereto,', 'was'), ('conquest', 'arms.'), ('wa-\\\\n', 'from'), ('health', '\\\\nr'), ('being', 'up'), ('thence', 'along'), ('potatoes,).Abel', 'T'), ('have', '\\\\ncided'), ('m\\\\n', 'itarlff'), ('at', 'head,'), ('Should', '\\\\nmeter'), ('the', '\\\\nions,'), ('bo\\\\nman,', 'has'), ('understanding', 'the\\\\nBland'), ('their', 'gags,'), ('use', 'It\\\\nas'), ('Feb.\\\\n20,', 'the'), ('.', '.'), ('Second,', 'it'), ('Ho\\\\n', 'long'), ('of', 'being'), ('country', 'oifer\\\\nevery'), ('und', '\\\\nrogue'), ('Republicans', 'that'), ('have', 'on'), ('rear', 'tbe'), ('transgressed\\\\n', 'laws'), ('directions,\\\\n', 'In'), ('some', 'for'), ('one', 'of'), ('are', 'order'), ('interest', 'the'), ('nre', 'to'), ('without,', '\\\\nS.rgeants'), ('preserve', 'give'), ('does', 'atteuuit'), ('of', 'Queen'), ('above', 'labor.\\\\nOur'), ('made', 'aitempt'), ('charac\\\\nter', 'be'), ('thenco', 'weat'), ('beginning.\\\\nNo.', 'A'), ('been', 'visited'), ('interesting.', 'you'), ('H.', 'Caleb'), ('prices', 'for\\\\niugmiin,”'), ('Ex\\\\n1', 'or'), ('1864,', 'a'), ('na-\\\\n', 'and'), ('expenses;\\\\n', 'there'), ('St.', 'Cemetery.\\\\nM11.1,ER—On'), ('7-10', 'thence'), ('Wp', 'not,'), ('has', 'and,\\\\ntherefore,'), ('also\\\\nsimilar', 'from'), ('success', 'tariff'), ('disgraceful', 'the'), ('Mr.', '\\\\nLass'), ('and', 'to'), ('annual', 'of'), ('settled', '\\\\nthat'), ('said', 'of'), ('coming', '1\\\\nlion,'), ('flour-dealers,', 'ete.,'), ('and', 'her'), ('is', 'worn'), ('tli\\\\n', 'value'), ('proneness', 'wander'), ('to', 'fo\\\\nthe'), ('sessions.', 'church\\\\nproperty,'), ('State,', 'forty\\\\nyouug'), ('magnetism,\\\\n', 'not'), ('pleasantly', '\\\\nfrom'), ('the\\\\nfact', 'the'), ('good', 'people'), ('on-\\\\n', 'tbat'), ('of\\\\n', 'frontierby'), ('a', '\\\\nof'), ('respect-\\\\nively.', ';..si'), ('of', '\\\\nculture'), ('cougl\\\\noccasioned', 'y'), ('finest', '\\\\ntion'), ('between', 'Popo'), ('men\\\\nmeet,', 'discuss'), ('Richard\\\\nF.', 'which'), ('oi', 'recreant,'), ('that', 'but'), ('been', '\\\\nthat'), ('gc\\\\n', 'I'), ('any\\\\n', 'all'), ('ul', 'angel,'), ('these\\\\n', 'will'), ('of', 'arose'), ('when', 'looked\\\\n!at'), ('he', 'say,'), ('that', 'Harrison'), ('and\\\\n', 'the'), ('when', 'a'), ('be', 'on'), ('suddenly', 'awake'), ('of', 'own'), ('fact', 'was'), ('made', 'bold'), ('facul\\xad\\\\n', 'He'), ('employed', 'vit.-i'), ('progress', 'the\\\\nvessel,'), ('J.\\\\nAndrews.', 'stranger,'), ('pro-\\\\n', 'opportunity.'), ('tiie', 'and\\\\nthat'), ('women', '\\\\noff'), ('and', 'Ber-\\\\nlin'), ('was', 'seized'), ('with\\\\nthe', 'that'), ('money', 'liberties'), ('Ii\"', '\\\\nn«l'), ('costing,', 'the\\\\nfarm'), ('Doughty’s\\\\nremains', 'the'), ('Twentieth,', 'latter'), ('centre\\\\n', 'of'), ('woman\\\\n', 'is'), ('o\\\\nhouso', 'afford'), ('poi\\\\n>ers', 'the'), ('Poundmaster', 'keep'), ('election', 'officers'), ('South', 'repeat\\\\nhe'), ('corner', 'the'), ('tinio', '\\\\nbocio'), ('revolt-\\\\ners', 'l>een'), ('commitment,', 'in-\\\\ndictmoutaud'), ('tho\\\\n', 'will'), ('commercialccntres,', '\\\\n1h>'), ('know\\\\n', 'this'), ('justiy', 'for'), ('years', 'relief,'), ('it,', 'same'), ('founded', '\\\\npecially'), ('re\\xad\\\\nligious', 'during'), ('aud', 'truck'), ('new', 'of'), ('examine\\\\nFranklin', 'Dodge,'), ('only', 'ounces.\\\\nIn'), ('to', 'rear\\\\nline'), ('issued', 'ibis\\\\nAct,'), ('law', 'to'), ('recognized', '\\\\nperfect'), ('ex¬\\\\n', 'considerable'), ('linv*\\\\n', 'paid'), ('Bank', 'prostrate.'), ('W.\\\\nlard-Pure', 'In'), ('throngs', 'visitors,'), ('seven\\xad\\\\nty-five', '[more'), ('the\\\\n', 'fully'), ('They', 'not'), ('un-\\\\nder', 'transcontinental'), ('cor-\\\\n', 'period'), ('so\\\\n', 'at'), ('abomination', 'a'), ('not', 'pay'), ('a', '\\\\ngree'), ('of\\\\n', 'well'), ('citations', '\\\\nthe'), ('nicked\\\\n', 'one'), ('asit1\\\\nthe', 'Order'), ('tba', '\\\\nla'), ('the', '\\\\nwar'), ('be', 'iu'), ('en\\xad\\\\n', 'In'), ('Such\\\\n', 'also'), ('Aaron', '\\\\nthence'), ('.', 'deceased,'), ('a\\\\nschool,', 'fired'), ('thereto', 'may'), ('Davy', 'advice\\\\nand'), ('the', '\\\\nder'), ('who,', '\\\\nupon,'), ('a', 'or'), ('deal\\\\nart', 'not'), ('break\\\\n', 'hour'), ('competitors.', 'was'), ('easily', '\\\\nas'), ('to', 'fact'), ('on', 'law'), ('to', 'in'), ('these,', 'man’s'), ('slashing', \"It:\\\\ndon't\"), ('body', 'the'), ('open\\\\nquestion,', 'tlie'), ('action\\\\nof', 'Senate,'), ('in\\\\n', 'to'), ('aa', 'via:'), ('greatest', 'living'), ('I\\\\n', 'wish'), ('clerks\\\\nand', 'The'), ('lofty\\\\nstandpoint', 'love'), ('is', 'to'), ('North', 'street'), ('game;\\\\n', 'wended'), ('up', 'eutire'), ('as', 'erup-\\\\ntions'), ('this\\\\n', 'ion.'), ('yoj', 'th«'), ('tho', '\\\\nwill'), ('others', 'died'), ('reduce,\\\\n', 'co-operation'), ('tho\\\\nvoice', 'heard.'), ('M.', '\\\\nalso'), ('was\\\\n', 'selected'), ('deemed', '\\\\nble'), ('of', 'to'), ('Mrs.\\\\n', 'is'), ('N\\\\n', 'JiKlksoU.'), ('ii\\\\n', 'tiiat'), ('for\\\\n', 'in'), ('who\\\\nrarely', 'any'), ('natural', '&'), ('if', 'water'), ('count)\\\\nVsst', 'more'), ('aro\\\\ndrinking,', 'who'), ('is', '\\\\nposed'), ('any', '\\\\nlength'), ('the', 'When'), ('campaigns', 'op\\xad\\\\npression'), ('within\\\\n', 'minutes'), ('In\\\\ntears', 'shame'), ('of', 'and'), ('Judges', 'first'), ('investigation', 'the'), ('Fourth\\\\n', 'District'), ('thence', 'along\\\\nthe'), ('Copper\\\\n', 'property.'), ('west,', 'the'), ('or', 'Nation,'), ('verbal\\\\n', 'one'), ('those\\\\n', 'public'), ('upon', '\\\\nwindlass,'), ('effects', 'great\\\\nnumbers'), ('nnd', 'elements'), ('eum', '\\\\nflvfl'), ('pending.', 'collection'), ('army\\\\n', 'fact'), ('and', 'to'), ('words', 'one'), ('408', 'Twenty-fourth'), ('height', '\\\\narrogance'), ('otbar', \"'\"), ('a\\\\n', 'estate,'), ('established,\\\\n', 'and'), ('the', '\\\\nThe'), ('Is', 'with'), ('and', 'of'), ('standard\\\\n', 'by'), ('hemlock\\\\n', 'to'), ('a', 'In'), ('Salisbury,', 'Amlersonvdle\\\\nand'), ('White\\\\nhorse', 'Skagway-By-The'), ('everybody', 'approaching'), ('was', 'Westcheeter'), ('secure', 'reftoration'), ('poles', 'a'), ('during', 'and'), ('or\\\\nin', 'first'), ('said', 'have'), ('no-\\\\n', 'to'), ('Phil', 'certainly'), ('Illinois,', '\\\\nnoon,'), ('courts\\\\n', 'time'), ('marry.', 'begged'), ('which\\\\n', 'been'), ('But', 'did'), ('either', 'or'), ('at', 'cheaper'), ('Mr.\\\\n', 'pleasant'), ('coming', 'this'), ('the', 'of'), ('quickly', 'out'), ('A\\\\nstone', 'uow'), ('tha\\\\n', 'sheikh'), ('irtsh\\\\n', 'ilit*'), ('Gettys\\xad\\\\n', 'has'), ('chances', 'surviving'), ('moral', '\\\\nother'), ('town,', '6-12'), ('and', '|ialac,e'), ('21st.', 'will'), ('near', 'mining'), ('contractors', 'that'), ('Sunday', 'A\\\\ndaughter'), ('of', 'address'), ('7,\\\\n1668,', 'of'), ('comfort', 'a'), ('they', 'out,\\\\nthe'), ('part', 'u\\\\njoko.'), ('the', 'and'), ('regu-\\\\nlate', 'tratlic;'), ('and,\\\\n', 'away,'), ('and\\\\n', \"'minutes\"), ('emotion,\\\\n', 'th'), ('of\\\\n', 'while'), ('the', 'countries\\\\njust'), ('35,000,000', 'people\\\\nmight'), ('to', 'you'), ('to\\\\n', 'state'), ('place', 'if'), ('a', 'plan*'), ('tho\\\\ntaste', 'old'), ('collarless.', 'sleeves'), ('who\\\\n', 'the'), ('Prai-\\\\n', 'river.'), ('his', 'No.'), ('new\\\\npeople,', 'straightway'), ('John\\\\n', 'to'), ('now\\\\n', 'built'), ('rsovemtor', 'approaching.'), ('to', 'great'), ('and\\\\n', 'a'), ('Munitions', '\\\\nmakes'), ('moat', '\\\\namong'), ('heac\\\\n', 'W.'), ('thrrn', 'once,'), ('thanco', 'two'), ('$1', '10.'), ('several\\\\n', 'in'), ('therein.\\\\n', 'Assistant'), ('the\\\\nterritory.', 'expects'), ('wo\\\\n', 'been'), ('House', 'Representatives'), ('lost)\\\\n', 'brought'), ('even¬\\\\n', 'He'), ('affections', 'kindred—identity'), ('in', '\\\\nsecond'), ('jaw', 'with'), ('to', 'what'), ('that', '\\\\nbegan'), ('will', '\\\\nagain'), ('demonstrates\\\\n', 'there'), ('has', 'private'), ('may\\\\nbe', 'by'), ('a', 'for\\\\nMorningside.'), ('own\\\\n', 'For'), ('Works', 'appoint,'), ('u', 'un\\\\nJimy'), ('the', 'brethren\\\\norganizing'), ('for', '\\\\nhours'), ('loaned', 'us,\\\\nand'), ('and', 'head'), ('stop\\\\nthe', 'they'), ('In\\\\n', 'nil'), ('and', '\\\\ntural'), ('appeared,\\\\n', 'the'), ('pitched', 'respec-\\\\ntable'), ('the', 'and\\\\nshall'), ('de\\xad\\\\nnouncing', 'whole'), ('u|\\\\n', 'receipt'), ('the\\\\n', 'morals!'), ('said\\\\nAlex.', 'Johnson,'), ('upon', 'as'), ('at\\\\ngrief', 'his'), ('in\\xad\\\\ntense', 'and'), ('of\\\\n', 'articles'), ('had\\\\n', 'that'), ('he\\\\n', 'him'), ('to', '\\\\nthe'), ('faith.', 'is,'), ('Alhinu', 'came'), ('usually', '\\\\nthe'), ('immortal', 'th\\\\nsoul,'), ('this', 'careful'), ('many\\\\n', 'us'), ('-', '\\\\nto'), ('say', 'the'), ('by', 'spy'), ('to', '\\\\nspeaking'), ('|h\\\\n', 'vacant'), ('had', 'letters'), ('backs', 'the'), ('the', '\\\\nWhy'), (',\\\\nne', 'seven'), ('and', 'number'), ('acsamed\\\\n', 'them.'), ('heavily\\\\nand', 'to'), ('somebody\\\\n', 'If'), ('pub-\\\\nlished', 'and'), ('as', 'bud'), ('eveu', 'without'), ('voluntarily', 'tho\\\\npoor'), ('business', 'to'), ('a\\\\n', 'assault'), ('and', 'of'), ('days', 'go'), ('the', '\\\\nwat'), ('and', 'they'), ('tirst', '\\\\nstory'), ('and\\\\n', 'feet'), ('is', '\\\\nback'), ('over,', 'theory'), ('live', 'grow'), ('un-\\\\n', 'be'), ('possibility', '“getting'), ('or\\\\n', 'street,'), ('recommondation,\\\\n', 'such'), ('arouae\\\\nau', 'that'), ('cro]\\\\n', 'furnishes'), ('of\\\\n', 'have'), ('Is\\\\n', 'to'), ('then\\\\ntta', 'mora'), ('Brest', '\\\\nfront'), ('an\\\\nleaning', 'the'), ('slender', 'her'), ('was', 'and'), ('that', 'lliichan-\\\\na'), ('JAN', 'A.'), ('of', 'therefor,'), ('you\\\\n', 'the'), ('matter', '\\\\nhand'), ('Mill\\\\nMartin', 'C,'), ('boat,', 'making\\\\ntrip'), ('good', 'be'), ('and', 'great'), ('connection', 'Miss'), ('the', '\\\\nerald'), ('the', 'which\\\\nthey'), ('\"are\\\\n', 'of'), ('accomplished\\\\n', 'tho'), ('patent', 'burn.\\\\ner,'), ('board\\\\n', '8'), ('many', 'over'), ('thewa\\\\n', 'or'), ('in', '(Seminole)'), ('astonishment.', 'expect'), ('j\\\\nthat', 'grows'), ('chil\\\\n', 'in'), ('to\\\\n', 'house.'), ('quarters', 'the'), ('laying', 'myself'), (';7', 'ton,'), ('business', 'envy'), ('on', '\\\\nsides'), ('and', 'ly'), ('State\\\\n', 'Boston.'), ('thesyph\\\\n', 'patient,'), ('or', 'escape,\\\\nleaving'), ('in', 'and'), ('proposed\\\\n', 'It'), ('caused', 'my'), ('perusing', 'letter.'), ('New', 'The\\\\nworkings'), ('making', '\\\\nhome'), ('political', 'of'), ('ouly.\\\\n', 'the'), ('wo', 'in'), ('does-not', '\\\\nto'), ('author-\\\\n', 'to'), ('another', 'from\\\\neast'), ('own\\\\npartisan', 'though'), ('was', 're-\\\\ncently'), ('ol', 'per\\\\ncent'), ('highways', 'three'), ('there.\\\\n', '1'), ('|>', 'cnnsenied'), ('Democratic', '\\\\nMr.'), (\"water's\\\\nedge,\", 'she'), ('Territory.', '\\\\nGovernor'), ('se\\\\ncured', 'a'), ('mentioned', 'posts,'), ('21st,', 'will'), ('worthless', '\\\\nof'), ('seas', 'could'), ('the', '\\\\nply'), ('been', 'by'), ('On', '\\\\nreturn'), ('answer', 'to'), ('occupants,', 'the'), ('the', 'forcholce'), ('the', 'of'), ('gotten', 'by'), ('brick,', '17x85,'), ('one', 'get'), ('from', \"city's\\\\nboundary.\"), ('1827', 'was'), ('gov¬\\\\n', 'from'), ('levied', 'attachment,'), ('may\\\\n', 'proper,'), ('(Jovernment.\\\\nMr.', 'latest'), ('large', '\\\\nount'), ('with', '\\\\ndifficult'), ('fbe', 'and'), ('membership', 'continue'), ('Roth\\\\n', '\\\\nCommonwealth'), ('obnoxious\\\\n', 'of'), ('three', 'This'), ('around\\\\n', 'as'), ('display.', 'will'), ('that', 'inventors'), ('the', 'mistress,\\\\nretired'), ('the', 'toward'), ('.', '\\\\nhemlock'), ('only', 'the'), ('of', 'prayer,\\\\nshould'), ('artist.', 'H\\\\ngave'), ('prac¬\\\\n', 'useless.'), ('to', 'general\\\\nassembly'), ('of', 'earl,'), ('\"Sir,', 'spoiling'), ('Kino\\\\not', 'It'), ('property', 'at'), ('wiser', 'better'), ('gave\\\\n', 'doctors'), ('by\\\\n', 'women.'), ('improving,', 'flesh'), ('result', 'further\\\\ninvestigation'), (\"the\\\\n'Corbin\", 'team'), ('notification', 'given\\\\nhim,'), ('the', 'who\\\\nlooks'), ('on', 'indictment'), ('load', 'his'), ('her', 'sex,'), ('Amster\\\\n', 'and'), ('Fork,', 'beat\\\\nquality,'), ('Co...................\\\\n', 'Middleton'), ('wuo', '\\\\nited'), ('he\\\\nwas', 'there,'), ('the', 'strengthened'), ('is', 'of'), ('Imaginings', 'evil'), ('did', '\\\\novcrnor'), ('dangerous', 'and'), ('priest,', '\\\\nfrom'), ('youth-\\\\n', 'second'), ('of\\\\n', 'wood.'), ('large\\\\n', 'dark'), ('said', 'Notice'), ('for', 'nominal'), ('no', 'really'), ('these', 'A'), ('Mo', '\\\\ned'), ('cause', 'same'), ('indispensable,', 'our'), ('yesterday\\\\nand', 'wo'), ('ye\\\\n', 'The'), ('white', 'outnumber'), ('of', 'ancient'), ('Turkey\\\\nall', 'she'), ('1862', '1877'), ('war\\\\n', 'her'), ('was', 'speaker'), ('son’s', 'of'), ('very\\\\npretty.', 'this'), ('elected', 'deputy,'), ('government\\\\n', 'by'), ('a\\\\nvisitor', 'Hendersonville'), ('nasty', 'primaries.'), ('the', 'tax'), ('and', 'character,'), ('that', 'the\\\\nfollowing'), ('do', 'in,\\\\nwhen'), ('calculate\\\\n', 'his'), ('failed,', 'he'), (',the', '\\\\nsult'), ('Hudson\\\\nriver', 'It'), ('please,', 'military'), ('they', 'from'), ('pre-\\\\n', 'bids'), ('lie', 'I”'), ('appearing\\\\n', 'there'), ('to', 'effect'), ('as', 'Enihassador,'), ('stay', 'ith'), ('instituted,', 'a'), ('than', '\\\\nfelt'), ('mill', 'of.\\\\nwhinh'), ('and', 'Inches'), ('nucleus\\\\nof', 'comet.'), ('agri\\xad\\\\nculture.', 'low-priced'), ('will', '\\\\ndecidedly'), ('other', 'may'), ('absence.', '\\\\nfarther'), ('a', '\\\\nwoman'), ('chains\\\\n', 'a'), ('aud', '\\\\ndee.'), ('men', 'to'), ('ib,en,', 'he'), ('one,', 'see'), ('severs,\\\\n', 'tlie'), ('llacou,', 'ribs'), ('O.', '.'), ('make', \"poor\\\\nman's\"), ('triumphed,\\\\nand', 'wrote'), ('SS\\\\n', 'families'), ('to', '\\\\nscores'), ('the\\\\nthings', 'were'), ('that', '\\\\nwas'), ('theatre', 'filled'), ('Custom', 'and'), ('day', 'presenc'), ('unorgan-\\\\n', 'small'), ('learn', 'only'), ('filed', 'day'), ('of', 'in'), ('bet\\xad\\\\n', 'off'), ('and', 'of'), ('coutrol', 'anil'), ('originalline\\\\nthence', '7'), ('fortu-\\\\nnate', 'the'), ('creed', 'placed'), ('from', '\\\\nYork'), ('cent\\\\n', 'of'), ('in', 'of'), ('plans', 'a'), ('the', 'side'), ('pavement', 'been'), ('near', '\\\\nwood'), ('horse', 'a'), ('list', 'royal'), ('by', 'Inquiry'), ('Mr.', 'and'), ('thclrmoncy', 'generously'), ('oi', 'yearly'), ('the', 'i'), ('of\\\\n', \"uarclay's\"), ('and', 'bury\\\\nhim'), ('of', 'The'), ('tal\\xad\\\\n', 'for'), ('between', 'and'), ('man\\\\n', 'be'), ('and', 'wif>)\\\\nwa«'), ('last', '\\\\nThe'), ('another?', 'kiss'), ('formation', 'discussed,'), ('New', 'and'), ('most', 'becomes'), ('time,', 'Denison'), (';\\\\n', 'bandcd'), ('States,', 'induced'), ('and', 'to'), ('tacts,\\\\n', 'would'), ('set:', 'and'), ('she\\\\n', 'been'), ('ended', '\\\\nfailure.'), ('\"the', 'pillar'), ('liavc', 'a'), ('ami\\\\n.on:\\\\n', 'di'), ('on', 'assured'), ('troops,', '\\\\nyellow'), ('fighting\\\\nanything', 'than'), ('the', '\\\\nthe'), ('and', 'swear'), ('of', 'drug'), ('bos', 'the'), ('was', '\\\\nly'), ('annually', 'the'), ('trans-\\\\nport', 'corn.'), ('bi\\\\n', 'hill'), ('aa\\\\nalmost', 'Your'), ('if', 'are'), ('was', 'to'), ('table\\\\n', 'and'), ('to', 'vessel'), ('they', 'Arrangements'), ('long.\\\\n', 'gallons'), ('nnd', 'it'), ('me', 'in'), ('C.', 'Day,'), ('some', 'that'), ('part', 'tiic'), ('the', '\\\\nCouncil'), ('the\\\\n', 'they'), ('have\\\\n', 'to'), ('husband*,', 'coi\\\\niiy'), ('difficulty', 'seeing.—\\\\nDivers'), ('the\\\\n', 'water,'), ('the', 'and'), ('of', 'trans-\\\\nported'), ('be\\\\n', 'his'), ('being\\\\n', 'vegetable'), ('frankness', 'related'), ('(2)', 'I’.'), ('people', 'to'), ('permanent', 'deposited\\\\nthe'), ('the', 'of'), ('two', '\\\\nwhich'), ('dusky', 'and'), ('Britain\\\\n', 'do'), ('fortunately', 'with\\\\nhim,'), ('thought-\\\\n', 'the'), (\"Arm¬\\\\nstrong's\", 'and'), ('making\\\\n', 'unless'), ('In', 'years\\\\nthat'), ('or', 'by'), ('pastor', '\\\\nthe'), ('the', 'A'), ('from', 'work'), ('entail\\\\nrelatively', 'drains'), ('tc\\\\n', 'a«k'), ('methods,\\\\n', 'our'), ('of', 'Willey'), ('effects', 'a'), ('had\\\\n', 'least'), ('of', '-'), ('tiie', 'picture.'), ('of\\\\n', 'of'), ('Station', '\\\\nthe'), ('of', 'They'), ('head.\\\\n“No;', 'lias'), ('and\\\\n', 'cities'), ('un\\xad\\\\nder', 'will'), ('that', 'Jap-\\\\nanese'), ('connection', 'persooal'), ('play', 'In'), ('bo\\\\n', 'to'), ('com\\xad\\\\n', 'witli'), ('care', 'itself\\\\nwill'), ('to\\\\nthe', 'of'), ('home', 'throw'), ('streaks', 'the'), ('parents', 'the\\\\npubilo'), ('them\\\\nunder', 'with'), ('and\\\\n', 'cords'), ('never\\\\nhad', 'doctor'), ('the', 'until'), ('to\\\\nsee', 'Hull'), ('noisy', 'W'), ('lie\\\\nwas', 'candidate,'), ('from\\\\n', 'must'), ('ao', 'lo'), ('the\\\\nnone', 'liny'), ('not', 'get'), ('a\\\\n', 'out'), ('know\\\\ntho', 'still'), ('day', 'each'), ('the', 'of'), ('seem-\\\\n', 'to'), ('r\\\\n:ommibsion,', 'later'), ('yoke', 'and\\\\nis'), ('May.\\\\n', 'tornado'), ('in', '\\\\nstreet'), ('that', 'is'), ('bill', 'organization'), ('A.', 'Twcu-\\\\ny'), ('the', 'side'), ('a', 'the'), ('incth', 'height.'), ('age', 'the'), ('on', 'by'), ('taken,', 'two'), ('would', 'been'), ('Wright', 'thence\\\\neasterly'), ('retaining', 'little\\\\ngirl,'), ('public.\\\\n', 'charge'), ('we', 'that'), ('the\\\\nordinary', 'game'), ('certain', 'ex-\\\\nceed'), ('of\\\\ngenuine', 'hut'), ('daugh-\\\\n', 'begins,'), ('pbyiscUns', 'the'), ('cabins.\\\\n', 'are'), ('wishes', 'expectations'), ('to', 'unhallowed'), ('by', 'are'), ('not', 'been'), ('lirst', 'It'), ('bur-\\\\nied', 'him.'), ('fainted', 'Had'), ('ttiut', 'father'), ('premises\\\\nare', 'stated'), ('village', 'supplied'), ('shall\\\\n', 'it'), ('\"', 'w'), ('because', 'nothing\\\\nbut'), ('much', 'in'), ('his', 'together'), ('grass\\\\n', 'corn'), ('the', 'Committee,'), ('Harrison', '\\\\nTaylor'), ('wai', '\\\\nwho'), ('shifting\\\\ncrews,', 'an'), ('assumod', '\\\\nmanagement'), ('boisterous\\\\nthat', 'one'), ('out.something\\\\n', 'has'), ('back', '\\\\ntho'), ('told\\\\nof', 'ownership,'), ('bones', 'end\\\\ning'), ('U3\\\\n', 'on'), ('they', 'appoint'), ('a', 'each'), ('States.\\\\n', 'there'), ('in\\\\n', 'state'), ('kind\\\\n', 'canvaaa.'), ('Way', 'in'), ('great-heart\\\\n', 'sage.'), ('and\\\\n', 'bond'), ('that\\\\n', 'to'), ('Dooks', 'the\\\\ncity'), ('guaranteed', 'him'), ('among\\\\nth\"ir', 'comrades'), ('being', \"retu'lers\"), ('of', 'show'), ('Astoria', 'the\\\\ncoolest'), ('her', 'was'), ('grabbed', 'cow\\\\nby'), ('laws,', 'and'), ('of\\\\n', 'are'), ('W.', 'is'), ('was', 'by'), ('pile', 'if'), ('Chief', '\\\\nof'), ('as', 'learned'), ('not\\\\nhoist', 'name'), ('slowly\\\\n', 'very'), ('almost', 'with'), ('Guard\\\\nwell', 'priceless'), ('no', 'that'), ('more', 'heard'), ('each', 'qr'), ('member\\\\n', 'the'), ('of\\\\n', 'United'), ('Lon-\\\\n', 'where'), ('visit', 'am\\\\nJol.'), ('and\\\\nour', 'representatives'), ('all', '\\\\nWho'), ('the', 'front'), ('of-\\\\n', 'of'), ('went', 'When'), ('and\\\\n', 'before'), ('aad', 'witb'), ('W.', 'Devlla.\\\\n111.'), ('on', 'large\\\\nscale,'), ('venereal,', 'hnv»\\\\nmg'), ('city', '\\\\nand'), ('hcadquartors', '\\\\nKansas'), ('ho\\\\nwo.', 'a'), ('bluff', 'overlooked\\\\nhis'), ('at', 'levee'), ('in', 'place'), ('use', '\\\\nother'), ('the', 'comer'), ('dun-\\\\ning', 'embarrassments'), ('wounded,', 'hov\\\\nmany'), ('with', '\\\\nbites'), ('said', 'in'), ('first', '\\\\ngiving'), ('the', 'struck'), ('accusing\\\\nthe', 'of'), ('and', '\\\\nthough'), ('abstract\\\\n', 'under'), ('ship\\\\n\"Rasmussen\"', 'launched.'), ('of', 'table\\\\ncard,'), ('of\\\\nhuman', 'and'), ('is', 'limit'), ('lo', 'wiuio\\\\nMuk'), ('and', 'which,'), ('If', '\\\\nwllblu'), ('they\\\\n', 'licensed'), ('of', 'shrewd,'), ('A', 'is'), ('perpet-\\\\nuate', 'business'), ('bo', 'safely\\\\nfrom'), ('the', 'at'), ('that', 'the\\\\nsages,'), ('W.', 'Sheehan;'), ('at', 'home.'), ('0\\\\n', 'the'), ('weak', 'she'), ('there\\\\n', 'certainly'), ('of', 'danger'), ('the', '\\\\ninal'), ('con*', '\\\\ninced'), ('It', 'th\\\\nam'), ('be', 'by'), ('wine\\\\nshops', 'I'), ('P.', 'who'), ('States', 'in'), ('in', \"\\\\nenemy's\"), ('judge\\\\n', 'the'), ('strange', 'many'), ('mem\\\\n', 'voiced'), ('entertained', '\\\\nnumber'), ('action\\\\n', 'was'), ('II.', 'Monroe'), ('evenin’', 'leve'), ('very\\\\nsame', 'who'), ('resolve\\\\ninto', 'Catarrh,'), ('thought\\\\n', 'mild'), ('example.', 'elephant\\\\ndid'), ('season', 'damage\\\\nis'), ('executed,\\\\n', 'that'), ('the', 'I'), ('pan', '\\\\nFrances'), ('9', 'Brewing'), ('came', 'to'), ('the', 'is\\\\nitifUHing'), ('hubsided', 'a'), ('followed,\\\\n', 'which'), ('to', 'change'), ('adversa\\xad\\\\n', 'If'), ('of', 'to'), ('Without', 'the\\\\ncountry'), ('their\\\\n', 'name,'), ('their', 'who'), ('that', '\\\\nought'), ('ono', 'had'), ('Generals.', 'Gen.'), ('and', '6'), ('miles.\\\\nMany', 'the'), ('in', 'festoons'), ('was', 'insurance'), ('of', 'at\\\\nthe'), ('as', 'couId,'), ('bulletholes', 'his'), ('of', 'writers'), ('contractors', '\\\\nwould'), ('mini\\\\nets', 'almost'), ('ad-\\\\n', 'proclaimed'), ('stood\\\\nout', 'on'), ('ininriuti.4', 'ami'), (\"iiuiui'd\", 'II.'), ('the', '\\\\nabout'), ('mar\\\\n', 'with'), ('adequate', 'quality'), ('straw,\\\\n', 'prescribed'), ('wo\\\\n', 'If'), ('Aat', 'candidates\\\\n•on'), ('aright\\\\n', 'other'), ('and,', '\\\\nto'), ('probal\\\\n', 'Titrnmb'), ('kitchen,\\\\n', 'she'), ('me', 'risk'), ('without', 'under'), ('Chicago,', 'have'), ('Mexico', 'not'), ('con-\\\\nscious', 'recovery'), ('the\\\\n', 'advantageous'), ('of', 'considerable'), ('tired,', '\\\\niwhen'), ('she', 'per\\xad\\\\nhaps'), ('In', 'y'), ('bam-', '\\\\nIt'), ('on\\\\nsackcloth;', 'there'), ('sho\\\\nkept', 'locked'), ('wa\\\\ntcrs', 'Whoellng'), ('to', '\\\\nselves'), ('verbal\\\\n', 'one'), ('bad', 'early'), ('rc-\\\\n', 'from'), ('lady', 'at'), ('tho\\\\n', 'than'), ('mention', 'years'), ('right', 'suffrage'), ('impeachment', 'tl\\\\nHouse,'), ('the', 'the'), ('was\\\\ndone', 'by'), ('Its', 'thcgravo'), ('wasliii;\\\\n', 'o!'), ('ol\\\\ni,', 'are,'), ('down', 'sticking'), ('or', '\\\\nvessels'), ('he', 'either\\\\ntake'), ('or', 'must'), ('escape\\\\n', 'mast'), ('anu\\\\nis', 'without'), ('the', 'week'), ('to', '\\\\nMaryland'), ('she', 'one'), ('tho', 'and'), ('walls', '\\\\nold'), ('will\\\\nbe', 'op'), ('despatch', 'Lord'), ('either', '\\\\ntwo'), ('effect\\\\nto', 'he'), ('reigned,the', 'are\\\\nbalanced,'), ('7\\\\n', 'on'), ('closely', 'Hence\\\\nIt'), ('Ayer', 'the'), ('and', 'half'), ('if', 'leave'), ('tho', 'inci-\\\\ndents'), ('cent\\\\n', 'Tîfty.'), ('loophole\\\\n', 'escape,'), ('regards,', 'skill'), ('he', 'dread-\\\\ning'), ('candidates', 'United\\\\nStates'), ('place', '52-100'), ('of\\\\n', 'two'), ('was\\\\n', 'a'), ('throughout\\\\nthe', 'These'), ('the\\\\n', 'angel'), ('send\\\\n', 'CASH'), ('uprooted', '\\\\nand'), ('Henderson-\\\\nville,', 'of'), ('Americai\\\\nhabit', 'equal'), ('shows\\\\n', 'a'), ('c.ir,taine 19\u001b[0m probabilities\u001b[38;5;241m.\u001b[39mappend((key, \u001b[43mProb_of_word\u001b[49m\u001b[43m(\u001b[49m\u001b[43mkey\u001b[49m\u001b[43m,\u001b[49m\u001b[43m \u001b[49m\u001b[43mitem\u001b[49m\u001b[43m[\u001b[49m\u001b[38;5;241;43m0\u001b[39;49m\u001b[43m]\u001b[49m\u001b[43m,\u001b[49m\u001b[43m \u001b[49m\u001b[43mitem\u001b[49m\u001b[43m[\u001b[49m\u001b[38;5;241;43m1\u001b[39;49m\u001b[43m]\u001b[49m\u001b[43m,\u001b[49m\u001b[43m \u001b[49m\u001b[43mV\u001b[49m\u001b[43m,\u001b[49m\u001b[43m \u001b[49m\u001b[43mV2\u001b[49m\u001b[43m)\u001b[49m))\n\u001b[1;32m 20\u001b[0m prob_else \u001b[38;5;241m=\u001b[39m \u001b[38;5;241m1\u001b[39m\u001b[38;5;241m-\u001b[39m\u001b[38;5;28msum\u001b[39m([x[\u001b[38;5;241m1\u001b[39m] \u001b[38;5;28;01mfor\u001b[39;00m x \u001b[38;5;129;01min\u001b[39;00m probabilities])\n\u001b[1;32m 22\u001b[0m \u001b[38;5;28mprint\u001b[39m(probabilities)\n", + "Cell \u001b[0;32mIn[6], line 5\u001b[0m, in \u001b[0;36mProb_of_word\u001b[0;34m(word, word_before, word_after, Udict, Bdict)\u001b[0m\n\u001b[1;32m 4\u001b[0m \u001b[38;5;28;01mdef\u001b[39;00m \u001b[38;5;21mProb_of_word\u001b[39m(word, word_before, word_after, Udict, Bdict):\n\u001b[0;32m----> 5\u001b[0m \u001b[38;5;28;01mreturn\u001b[39;00m \u001b[43mProb_bigram\u001b[49m\u001b[43m(\u001b[49m\u001b[43mword_before\u001b[49m\u001b[43m,\u001b[49m\u001b[43m \u001b[49m\u001b[43mword\u001b[49m\u001b[43m,\u001b[49m\u001b[43m \u001b[49m\u001b[43mUdict\u001b[49m\u001b[43m,\u001b[49m\u001b[43m \u001b[49m\u001b[43mBdict\u001b[49m\u001b[43m)\u001b[49m \u001b[38;5;241m*\u001b[39m Prob_bigram(word, word_after, Udict, Bdict)\n", + "Cell \u001b[0;32mIn[6], line 2\u001b[0m, in \u001b[0;36mProb_bigram\u001b[0;34m(presc_word, foll_word, Udict, Bdict)\u001b[0m\n\u001b[1;32m 1\u001b[0m \u001b[38;5;28;01mdef\u001b[39;00m \u001b[38;5;21mProb_bigram\u001b[39m(presc_word, foll_word, Udict, Bdict): \n\u001b[0;32m----> 2\u001b[0m \u001b[38;5;28;01mreturn\u001b[39;00m \u001b[43mBdict\u001b[49m\u001b[38;5;241;43m.\u001b[39;49m\u001b[43mget\u001b[49m\u001b[43m(\u001b[49m\u001b[43m(\u001b[49m\u001b[43mpresc_word\u001b[49m\u001b[43m,\u001b[49m\u001b[43m \u001b[49m\u001b[43mfoll_word\u001b[49m\u001b[43m)\u001b[49m\u001b[43m)\u001b[49m\u001b[38;5;241;43m/\u001b[39;49m\u001b[43mUdict\u001b[49m\u001b[38;5;241;43m.\u001b[39;49m\u001b[43mget\u001b[49m\u001b[43m(\u001b[49m\u001b[43mpresc_word\u001b[49m\u001b[43m)\u001b[49m\n", + "\u001b[0;31mTypeError\u001b[0m: unsupported operand type(s) for /: 'NoneType' and 'NoneType'" + ] + } + ], + "source": [ + "\n", + "\n", + "if __name__=='__main__':\n", + " V, V2= {}, {} #unigram stats\n", + "# k= int(sys.argv[1])\n", + " k=100\n", + " predict_words = []\n", + " with open(\"./test-A/in.tsv\", 'r+') as file:\n", + " for line in file:\n", + " V, V2 = update_V_stats(line, V, V2)\n", + " split = line.split('\\t')[6:]\n", + " predict_words.append((get_last_word(split[0]), get_first_word(split[1])))\n", + " \n", + " V=dict(sorted(V.items(), key=lambda x: x[1], reverse=True)[:k])\n", + " V2=dict(sorted(V2.items(), key=lambda x: x[1], reverse=True)[:k])\n", + " print(V, V2)\n", + " print(predict_words)\n", + " for item in predict_words:\n", + " probabilities = []\n", + " for key, value in V.items():\n", + " probabilities.append((key, Prob_of_word(key, item[0], item[1], V, V2)))\n", + " prob_else = 1-sum([x[1] for x in probabilities])\n", + "\n", + " print(probabilities)\n", + "##lewy i prawy kontektst: P(w|wi-2wi-1)*P(wi+1|wi-1w)\n", + "#czyli trzy trigramy, w których w jest w z lewej/w środku/z prawej\n", + "#P(wi|wi-1wi-2) = #wi wi-1 wi-2/(wi-1 wi-2)\n", + "\n", + "# dla słów spoza n pierwszych słów (co do częstości)\n", + "\n" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "60ed4e59", + "metadata": {}, + "outputs": [], + "source": [] + } + ], + "metadata": { + "kernelspec": { + "display_name": "Python 3 (ipykernel)", + "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.10" + } + }, + "nbformat": 4, + "nbformat_minor": 5 +} diff --git a/config.txt b/config.txt new file mode 100644 index 0000000..f352df1 --- /dev/null +++ b/config.txt @@ -0,0 +1 @@ +--metric PerplexityHashed --precision 2 --in-header in-header.tsv --out-header out-header.tsv \ No newline at end of file diff --git a/config/params.yaml b/config/params.yaml new file mode 100644 index 0000000..fba463f --- /dev/null +++ b/config/params.yaml @@ -0,0 +1,8 @@ +epochs: 3 +embed_size: 100 +device: cuda +vocab_size: 20000 +batch_size: 3200 +learning_rate: 0.0003 +k: 20 +wildcard_minweight: 0.001 diff --git a/dev-0/expected.tsv b/dev-0/expected.tsv new file mode 100644 index 0000000..a58fa36 --- /dev/null +++ b/dev-0/expected.tsv @@ -0,0 +1,10519 @@ +hence +character +a +but +missioner +power +shown +this +of +that +laws, +the +re +alley +to +iS'o +lo +situated +ot +< +istrate +will +day +then +ma +in +a +ces +my +rived +at +Gee +date. +new. +Cullom +allow +had +feet; +Book +in +a +this +of +nut +orchestra. +was +the +to +impossible +the +truth +disease, +survey +the +of +the +the +Sticklcy +provisions, +framers +necessary +election +the +be +his +Now. +out- +ner +beautiful +proximity +tow +main +cluded +has +such +advanced +size +individual +"Alta" +back +value +the +velop +sai +it? +and +constant +to +rouge +for +to +of +run +trampling, +road +a +with +tho +but +connected +potveis +with- +took +were +which +as +the +enforced. +not +crowded +Rlone +ticle +the +in +In +right +ditional +forms +We +with +Landing, +ser- +education +thereby, +ure +on +except +of +make +maintained. +hundred +pi +the +and +Goddess +Sonora +not, +the +we +divisions +to +seemed +Zac, +of +thus +you. +somewhat +and +the +jostling +bunch +Every +truth, +feet. +may +or +21. +e +nothing +assembled +corroboration +Los +against +German +A. +you +where +North +pint +Sunday +ad +speaking +this +all +It +a +of +chains; +at +shall +roof +support +that +the +recent +visiting +firing, +G. +two +who +fromaaSty +legislature +up +what +that +ty, +only +peace +tory +convict +grades +next +idle, +S +general +some +Beginning +they +roads +be +read +nor +in +must +keep +practice +rations +To +will +They +tnt +only +present +and +in +"There +IHstrict, +said +bill +the +have +tne +life +soldiers +Jonothan, +in +day +powers +Asiatic +and +i«d +commis- +just +men. +his +thccityol +ons +Convention +is +weight +to +beasts +these +that +$1 +medicines. +neces- +lino +whether +the +it +the +too, +been +; +the +great +whllt +the +so, +And +1 +body +as +We +night +of +returning +for +recently +the +finances, +Imrns +trust +year, +to +a +ng, +the +on +present. +country, +River; +place +reception +pendent +will +steamer +am +at +or +on +things +the +e +transit +which +that +At +I +and +positions +Tues­ +all +honestly +citizens. +cent +it, +of +from +startled +for +thete +the +that +of +process +gel +with +with +mate +of +much +after +strength, +peiiod +been +covered +Seminary; +used +numbered +heavy +pall +guard. +what +sulo +navigation +therefore +the +tures +indignant +strong +lions +supported +shall +piloted +ing +barefooted +developenient +Cause +llu.li +estate +friends +('nderwood.a +roof +r-; +Johnson's +while +of +power +search +principal +named +occasioned; +boundary +whose +visited +and +zeal;—and +over +in +pounds +ed +find, +. +f. +power. +that +J. +me +there +on +to +Xamara. +the +with +him,as +agricultural +proceeded +P. +sale +of +rails +no +MCI).Bids. +and +of +they +of +ground; +and +the +lie +by +of +promptly +history +taxation. +will +the +the +"would +hole +circumstances. +belief +they +When +a +far +means +as +of +should +thickets +Blannerhasset's +of +of +chosen +sustained +large +now." +by +entitled, +fb +ing +in +tue +that +there +approval +not +of +ow +North +the +ing +-Cut +supper +“You’re +men +formed +value +Section +Protection, +for +part, +to +idea +of +by +liberty +lived +place +rink, +se +and +sale, +times +the +see +led +the +all +certificate +my +the +that +Wednesday, +up +tea +the +each +of +ocean, +the +Messersmith +there, +fam- +this +attempt +the +were +more +b\ +constitutional +die +honest +too +take +Thomas +months +of +who +one +His +67-100 +the +the +small +ample +well +of +termined +I +bo +hearing +men +this +Also +sought +houor +was +in +Hawkins' +that +he +year, +by +Course +advance +frescoing +nnd +and +frauds +in +Gen. +coast, +Charles +stare +all +But +Committee +as +their +just +valley +lie +must +The +will, +Burleigh +of +fun- +gen- +was +and +another +possession +gu’de +The +it +a +receipt +districts, +pan +of +J. +*00 +might +have +the +1916 +which +their +gen- +do +re- +I +substitute +prodigy +to- +and +in +heavily +question, +of +lupn +in"-*' +In +growth. +we +he +earliest +gun, +know +the +President +British +colored +au- +proprietary +village +equaliy +also +No +with +is +the +I +appreciate +Traveller +to +as +formed +her +according +alwavs +: +which +fit +to +feet +fioor +not +more +it +latter +a +and +trom +were +this +party +know +1913, +possible +seven +foree +jilace, +the +taking +did +the +and +lo +of +quaint +doing +Minister +nights +t«xthr +was +the +him +of +brought +in +well +depriving +and +and +a +to +ment +that +strictest +< +before +live +majority, +arc +result +accede +ago +yers, +gave +the +lien +that +1884. +this +Congress +to +the +has +the +an +than +tages. +tho +when +nolmdy +Indians +unless +American +“Jesus +ascend +those +We +he +not +coura +most +Vice +of +tt) +Francisco +civil +of +she +7 +taller +a +Miss +has +erect +that +potatoes, +over +proved, +added +the +for +and +such +that +7, +he +of +oilier +hopelessly +notes +floor +tons +«»f +Per +will +ball +Glick +district +qualified +wait +that +by +;ynl +kinds +he +wiil +noise +l/ic~M +this +respec­ +in +bear +into +to +that +Aldershot +of +nation’s +her +the +he +all +George +ing +"Vic +Pensaco- +although +their +raise +Jno +Congrtss. +of +light +that +its +and +case, +without +would +altitude +and +which +is +the +duly +seen +his +is +Prize +entcitaiued, +to- +and +uias:niliccul +for +hospital. +and +the +bond, +from +competent, +or +go +ordinarily +Resolved, +infetlor +of +native +artillery +be +half +in +appearance +on +resolutions +exhibits, +myself +of +I +never +soda +that +in +the +avenue +objects, +Masons +: +the +participate +farmer +city +Judge, +authorities +The +vellous +as +the +Maple +,o +surprised +wanton +among +tame +qf +Mrs. +the +theologians +lib* +homo +administrator +has +Concentrated +sugar +the +bov +W +of +of +Bo:tj +Hill +Bhall +part: +file +Jersey +she +out, +alarm +in +W. +computed +came +not +the +each +how +1898 +must +tion +troth +Diploma +Ia6t. +real, +Cato, +in +off +been +Cae +a +garding +trom +be- +away +fairly +by +smallest +r +kept +Had +saying +president. +oj +ye +one +the +thousand +- +muscular, +own +Company, +Innocent +all +that +done, +knew +seed, +bidder, +the +fective. +the +extent +firm. +home +have +means +Tuberculosis +with +have +and +show +south +in +Kailroad +Brown +death +Mrs. +in +the +the +timothy +A. +be +prejudices +| +of +is +it; +that +f-atriots +you +tide +to +round. +free. +be +till +scorn +over +besl +the* +that +put +perchei +the +an- +lings +is +to +is +and +the +quently +who +not +ft. +Clair’s +Young +clear, +a +only +weap +has +perfectly +the +iumily +reed*, +for +D +evidently +measures +finally +of +expense +if +which +to +deg. +after +He +midnight +wife +npon +the" +last +Kennehee +York. +Inue. +awarded +to +upper +of +ol +fair +trustee +become +the +and, +potent +ihe +the +large +in +one +efit +fastened +laid +Smith +Mexico +three +moun- +the +pup. +. +Bidge, +and +pretty +'111. +you +hvadlund, +of +prices. +not +to +Roanoke, +be +each +old +Hint +from +say +ocean +the +strong +black +will +managed +wrecked, +said +and +that +special +was +of +change +citi- +correct, +ot +the +relations. +and +guards +he +still +j +should +opinious +is +of +injured +with +or +the +quite +varieties +he +, +remember. +same +Kingston +sioners +of +signers +said +people +between +it +ferment, +New +remain +law +Kgvptians'themsclvcs, +hostility +Mathews, +delude +fust +is +merchant +like +no +is +than +Langdon +Mathew; +once +wrote +a +a +organization +as +per +was +and +name +park, +Committee +one +tend +Itepulilican +Genessee +midst +Lanra +and +6- +making +ihe +law, +have +officers +grow +Saunders, +himself +of +In +days +ligence +rights' +there +mothers +to +is +are +election +(ho +further +the +is +the +announcement +miles +up +In +cally +clerk +His +and +anticipate +thing. +some +It +all +apportion +the +their +sosi-i +first +In +being +to +to +as +abb; +Miller +started +of +Dosohue, +the +a +hurt, +this +and +they +parted +then, +aud +the +it +a +than +to +many +Ashley. +Congrese +bridge +is +toesand +all +Considerable +surgeons +one +by +first-class +man +its +that +hoadB. +^tmll +bodiment +professional +the +is +haustive +a +ft +talents, +one +some +now +Jeffries +felling +it +to +She +district, +the +the +the +Nietos +owns. +no! +shall +and +ratification +our +winner +greater +of +of +work, +side. +purpose, +ably +[if +a +sentiment +fresh +yet +see +off +their +she +Representative +for +being +Va., +blood. +Is +? +tnce, +Republican +severe +pawned +treat. +pull +arose +the +with +be +farmer. +might +ec/uinges!) +copper, +mands, +the +more +money, +('onsuella. +The +to +frames +located +statistics +Sccretarv +about +into +of +not +years, +and +the +it +it? +for +240 +is +a +line +(see +due +we +he, +bad +his +for +throw +In +sue +in +name +not +the +hard +nation. +(Mayor) +books +introduc- +prouder +and +a +wus +greater +ill +for +1st +ind +mist +ot +min +party, +another, +of +lips, +Dick +of +below +Mark +on +feet +quarters. +seed +costly +Taylor +owned +that +prevailed +honorable +clustered +said +in +inthe +had +turned +1 +whenever +of +of +have +of +title +when +pilots +for +and +already +it +States. +and +to +us, +good +it +January, +may +addressed +and +e +in +ls»ues +Stevens +a +as +to +trust +is +was +the +the +Tho +past +men +standing, +ght +the +was +distance. +31, +real +The +dignity—ii* +as +In +all +buildings +it, +they +would +few +far +the +now, +it +. +had +eithcrof +pointed +r +tain +i.incolu, +impulse. +dollars +step +bo +his +to +men +Patriots +does +practica¬ +should +he +of +of +this +the +an +follow. +ho +manufacturing +and +school +on +have +near +but +men +the +Fe. +provision +was +agreed, +thnt +in +least +The +of +cause +re- +happy, +have +to +sell; +work +are +finding +and +what +13 +their +been +him +both +is +is +the +stood +tried, +which +ted, +this +with +and +that +year. +are +unshaken +reels +orders +at,d +of +; +boy +"I +who +almost +sive +to +be +permits +eastern +is +sessions. +perfection +State +Sagasta's +want +a +not +and +the +the +previous +remained +friends +Taking +Institute. +hut +its +be +is +exquisite +its +It +often +Sparks; +the +force +tear- +portion +the +; +the +of +confined +on +of +tended +of +he +being +give +three +1 +Scoresby +this +the +our +relief, +listening +receive +great +ated +dastardly +bbouid +still +scene +to +country +a +the +it, +omnipotent +run +ister +the +liberation +Willtams, +excited +to +being +at +Whig; +fifteen +In +fy +re- +the +chopped +Com- +theories +before +thing +Uod +this +il- +crease" +We +the +because +of +COIupf^red, +of +concerned +appointed +They +they +own +clearest +of +are +been +the +Continued +wiih +short, +and +last +to +cases +and +think +weeds +Ins +a +own +and +dyspepsia, +must +the +this +Folding +Green +I +that +of +from +running +Is +a +so +where +afternoon, +Culpepcr +know +would +is +re- +in +majority +friends, +tho +not +would +the +against +the +I +quantity +a +and +moved +lo +cases, +south +$25 +in +and +man's +regular +rises, +cup +highways +It +language, +Conscience +ite +ior +1907. +bast +S. +as +10 +ol +capitals' +valorem +torture +during +sist +live +more +deal +Clark +He +be +speaking +by +Under +the +Tilton, +along +they +It +and +been +literally +average. +the +farther +when +to +Docia +brought +a +dignation, +the +period +plant +expended +llie +per +those +of +in +a +however, +the +heavy +spent +election +a +unchecked. +be +si»t* +men +STATE +lesser +New +an +work +the +that +phrases +with +property +to +witness. +minutely +few +ver, +could +begun +that +sale +emotions +the +il +containing +by +cheapest +to +is +the +have +at +entirely +per +y +been +coterie, +queathed +ground, +vacuity +.up +aerial +We +affectionate +to +as +virtue +tion +fodder. +hundred +$2.50 +11 +regard +States +until +individual +in +to +they +sure +the +I +the +customers. +No, +our +again +W +inexplicable +where +be +where +was +highly, +teams +at +of +>\jis +these +a +waste. +the +Tasso’s +withdraw +the +of +a +now +the +his +adequate +Helium +communion +tenor +evil +has +of +no +Bat +of +we +its +Sheriff'-ale +complete +a +thousand +s +the +the +much +a +this +Bat-. +Wheat +Constitution +of +h) +District. +stvrk +rall +said +which +and +ability +who +wife +productions +to +are +were +legality +himself +small +on +would +urged +ciety +any +Stark, +redemption +by +reaches +To +made +to +away +ing +It +the +into +then +confiscation +for +establish +U. +the +feet +formalities +jjeavenworth +matters +ent +Daily +aso +and +These +In +commander +aforeaatd +> +Also, +green +ellect +gether +her, +&c, +of +that +horses +have +after +I +sted +rice +as +1 +manner +benefactor +Prof +uttered +aftr +homestead +will +from +of +in +May +not +wish +for +war. +ono +August +lenka +Poller +refugl +must +lactation +there +tlm +\"*ra**, +and +awakened +seen +'was +also +that +with +as +request +it +in +had +objection +have +the +. +Shrink +not +lile. +-.-i +Government +it +dare +tietween +nerve +lieutenant +her. +or +gun. +to +per +Louis +for +soldiers +jperfornied +statement +willing +we +from +speedily +temperature. +in +and +it +last +peace +a +on +be +*>r +Delaware. +at +assistance +Turn +thus +*•. +found +tory +Charles +said +As +pounds. +details +Buren, +gested +acting +! +have +and +ssess +of +to +den +however, +dren +Kn«- +the +consideration +of +the +and +arrangement, +Sioux +only +lo +convictions, +ter +sanitary +and +not +the +been +natnro, +and +determine +assessed +championship +their +have +writ +impor- +the +street, +Nast +be +As +the +place +seriously +minutes, +The +distinguished +and +vote, +human +that +very +we +in +She +and +the +to +it +winch +contemplated +upon +out, +•The +object +King +on +quarter, +sum +hair +most +should +around +or +Bridget +many +required +lost +In +fires, +Copies +fifty +streak +varying +here." +a +frontiers, +j» +ing +a +Fourt, +of +n| +containing +j)f +that +to +hotel, +lederalschool +then +as +Congress, +of +D. +laws +just +ol +as +was +property +of +casions +of +could +was +ex- +the +these +Is +port +mibl +ten +venue +speculation +heirs +foremost +of +he +in +close +Secretary, +ferent +epoch +opposition +ULOn +nt.l +pitcher, +make +their +stock, +skirts +it, +Mr. +of +in +of +aid +certificate +see +young +to +lords +il +future +turnips, +by +France, +great +expec- +The +is +tion +as +of +on +enacted +the +a +It +orou +shortly. +his +a +Wen +1 +ot: +which +to +of +mencements. +of +settlement. +bank +other +upon +sold +them. +i +botany +historical +ed +il +as +two +lie +of +and +press. +as +roads, +if +South +without +and +be +favor +will +that +lie +parliament +tea +such +States +the +of +troduced +and +for +nor +obligations. +It +largo +pri +he +tu +and +it +the +was +promise +and +him +now +strange +natives +troduced +for +have +of +a +dog +proffer +that +married, +tacit +llie +Ohio +that +mysterious +somewhat +lil:i<*nlly +to +delight +In +follows: +trilling. +of +cxtoitcd +forty +the +the +of +nil +he +Valdez +Horses +Metz's +be +punishment +styles +hundred +were +new +urged, +the +spirit, +between +from +miles +it +the +it +of +profit +tory +time +pack +nine +whie +ri.tin-ru +York, +meeting +territory +virus +the +William +coo- +Ma +879 +town +dollars. +them, +in +Curtin +The +wc +with +who +he +and +as +face +closed +Davwport +soil +at +a +that +apparatus, +by +reason +man, +tilings +rules +B. +belonging +counties, +Gunnison +to +and +he +from +the +1S56, +on +deco, +by +llight. +'Tract +There +of +regarding +He +storm +appointed, +day +trumpets; +the +scribes +the +Wednesday, +removal +curs +its +could +bettered. +the +• +men +2.70 +you +party +uncorroborat- +be +tho +cat +and +the +wood +declared +calc.nl,it +It +it, +*did +If +j +him +thirs +of +when +of +by +no +tin +twen- +premium +bet +sixty +up +mere +nlfectimiite +tion, +and +for +year +don't +platform +, +is +the +flsh +and +bishop's +Is +apparently, +of +cil, +con- +disqual.fied +to +person +that +wliicli +vale, +the +in +week +an +farming +notice +said +ol +a +repugnant +dinary +lents +of +niade +party +here, +sides, +have +for +saw +the +Kentucky +of +be +<>l +Ui$ +and +this +12 +importer +be +of +whose +and +ol +mortgagee +the +in +of +thousand +Sarah +wheels +sovereignty. +Morns' +Antonio +to +rate +amusement, +j +>r-. +what +in +that +fine +in +a +a +conceded--not +(lie +eniovmenf +beauty +Last +the +es, +»arlicsj +cular +Mr. +or +Dos- +notions +are +at +which +any +now +forthwith +bidder, +their +possible, +Biscuit +giving] +f +with +patients.. +ces +earth +acquiescence +it +captain +of +upon +number +hour +discover +this +are +ih-it +were +distinguish +hope +walk +a +feet +25.26and36;InT.21,N..R.10R. +or +which +the +will +now +Loinbardy +New +neck +a +Geo. +were +and +November +party +appears, +having +from +if +with +of +hath +not +(he +He +read +it +will +could +and +imag- +southwest +jerked +with +the +family +fine +Georgia, +of +lakes +in +six-tenths +it. +that +but +have +myself +51 +the +$40,000. +posed +company +a +and +somewhat +question +after +garments +well +proper* +to +iu +fame, +did +often, +to +it +inefficient +or +family. +or +gain +hones +this +with +aiat +renewal +fright +indication +gomery +conformity +Bend, +being +the +few +and +heard +. +Mon- +hud +the +was +money +to +committee, +brehren +a +Banks, +Code +or +all, +m +immense +necessary +and +a +sale +guard +own +obscured +Generally +the +vi +will +by +lie +course +the +If +unlock +dangerous +did +induced +into +and +Captain +whereas, +that +to +the +of +the +county +the +try +and +cowardly +girls +inquired +my +to +is +that +from +.nowdedge +hundred +towards +$145 +usual +w'lll +their +shut +Cherry +the +Pains +the +Mason +proscip- +j +time +fund, +parlies +upwards +if +on +Zitkie. +four +the +and +(and +seems +some +in +utterly +defei.-ltint +come +in +of +cabin +forget +is +Irom +the +(he +quired +observation +on +mid +The +Mr. +of +the +me +bottom +was +er +consideration +would +hige +ic +Notice +liy +the +ciled +to +work +the +was +ministers +weighing +Nations! +tin* +surplus, +when +that +of +had +thirty-one, +your +the +Women, +supplied +long +by +ur +a +not +For +the +something +take +should +to +no +the +any +scene +illy +oil +more +sometimes +in +front +Sixth +Kimbrough, +ihc +political +valley +it +by +which +laid, +which +the +he +a +under +whole +physicians. +Assembly, +months. +been +much +votes. +they +the +would +Hank:_ +some +for +ed +the +loss +be +houses +but +ten +of +play. +of +shore +Manning +of +niente +these +city, +pressed +willbe +atrtherjssd +thence +the +of +said +seip. +any +not +page +and +fired +hard +care +(icrmt +Wlilla, +tho +newly- +freemen, +info +bar +the +terrible +thrilty +would +on +Your +as +transaction +on +Board +through +and +o' +but, +confidential +It +Washington. +him +raid +once +that +refreshments. +huktd +cap* +if +separate, +where +were +of +he +h +privilege +changes; +the +line +Mates, +all +Kleran. +a +we +him +had +and +what +description +of +itself +slightest +The +than +(mark +half +them, +matters +survey +dav +(possibly) +tho +of +af +? +ot +court +No +no +keepdoiug +New +fly +now +establish, +lines +can +that +but +seen +and +its +in +for +refering +wioh, +uhiiiiaeion +drank +conceived +monument, +find +aide +ing +gave +wished +another +the +ing +large +But +All +lime +was +mid +Slates +is +t.hirty +to +days +declared +victory, +designed +canls +j +ments; +imperiously +K +2-, +Superior +consequence +you +.' +without +that +whom +cities, +French +anl +country +churches +ring +promptly; +in +votes, +canvas +thousand +may +at +tapplng +1 +of +are +to +for +the +beginning, +it +of +in +the +Improvement +"1 +certainly’ +chicily +made +packed. +cellent +gard +J. +ran +ed +this +United +it +him +sheet +my +uuito +and +been +what +any +and +interesting +to +bun, +beet +(of +housecleaning +of +to +his +There +hostility +and +princi¬ +is +then +Sec. +safer +fooled +ing, +whatever +a +hospitable +a +two +the +of +the +pre- +of +expresses +the +and +man +a +the +the +walls +new +2 +Yeast, +died +Secreta- +Lard, +him, +their +both +find +road +itli +immediately +the +slavery; +board +thtt +gas +name +many +and +to +subject:—* +it +for +to +or +several +the +to +horizon +great +three +of +or +ports +the +head. +righteousness, +posi +as +Amen.” +and +neara +The +duly +the +We +the +the +nnd +yelping +that +poor +withdraw, +sentence +Slate, +po­ +? +impression +121. +on +then +Columbia.this +avow +immediate +by +the +to +the +favor, +retarded +curious +and +will +logical +cause +colonial +the +gentleman +made +and +, +qualities +an +?Here +and +dred +of +of +in- +that +not +same +and +in +remains +ly +to +at +1 +numbered +awaiting +account +and +comparison +vote +tie +is +Dr. +the +principal; +Ibi'h +29° +their +day +the +I +notified, +cellar +since +moth, +to +cabin +army, +; +the +po +] +Ministers, +the +officials +and +we +in +n +then +Com- +under +whether +each +Quar­ +of +of +and +and +paucity +the +of +last, +whoare +ilec’d +and +dead +. +been +cated, +the +his +may +that +to +they +It +feed +the +he +Mr. +ilie +into +these, +of +of +was +drug- +instrument +that +resides, +nil +reckless +city +Cincinnati, +the +ful +his +selling +not +General +be +foreign +not +citizens +it +siv +lesson +to +held +re­ +it +very +be +strictly, +down +follows: +in +is +the +this +was +J +resaid. +for +be +before +in +with +rye +Ireland +sides +is +the +rest +sole +w +mended +distinguished +to +Mr. +go +from +impending +son +in +is +was +The +we +such +and +lo +their +respondence +possessions. +attainment +War +with +licerating +minutes, +out +more +the +nate. +is +sense +be +two +canal +the +I). +Edward +house, +with +mi +o +has +of +If +printing +ward +whose +nate +wooden +either +oranges +a +when +enjoy +to, +that +and +with +lie +by +ectiouable +public +Pat +hoofs +his +form +i +for +in +The +Uni'ed +an +the +the +up +in +West +adopted +irom +gold +a +only +but +met +voted +willing, +asked +and +to +will +The +annum; +a +day +whioh +with +of +of +be +nue +he +ever, +first +gen- +without +its +of +is +states, +question +seceded +now +reasons +of +caskets. +be +of +foreclosed +had +fact +proper +closing +! +value. +the +this +and +thence +at +families. +In +to +and +and +It +dinner +pay +these +In +reputation +agcT +is +in +tuy +Duke +valuable +admitted +currency +to +confinement +soon +lo! +ing +h +acts +be +and +peo- +will +We +shine +United +its +tickled +assessed +of +the +its +the +in +which +filled +proved, +iu +per'inent*, +of +one +felt +of +a +Virginia's +experience, +lair. +American +reform +the +that +gress +or +thlngs +saw +as +p- +the +boxes +Richmond, +carpenters' +time +brave +heavy +its +inclusive, +J +pressing +him +of +the +adjustment +who +of +of +as +may +the +of +a +bs +has +who +con- +in +and +States' +the +he +with +t( +mean +upon +for +hax +I +price +Well, +the +buy +in +lime +the +if +he +entire +law, +was +made +took +right +present +a +1 +very +upon +an +was +yet +pro- +examination, +stature, +limited +any +fate +other +and +changed. +ana +the +K +me. +doubt +powers, +dry +of +and +mound +care +guinea +good +gave +expedition +- +had +to +me +it +Eulpie, +almost +.Behind +nd +one +to +ly +why +shall +improved, +the +of +would, +mere +it, +debate. +available +thence +the +state +"Pete," +in +its +entertainments +be +of +country +ties +the +Boom +times +not +extent +commit4Leo +view +pretne +country. +he +consigned +Italy. +of +town, +is +try +ment, +arranged +ha* +(!od! +The +one +another +other +not +the +is +the +its +L +is +machine +to +cooked +of +That +the +manner +to +the +on +have +ncr«. +dominions, +W'illiaiu +hours +Mouse +out +could +The +r +Before +in +2 +velopment +no +cent, +county +in +huge +but +stage +then +great +large +known +part +of +longing +tag +that +and +when—when?" +the +and +hi::'. +furniture +in +the +dec +be +unceremoniously +ol +which +to +part +I +to +soldiers +health, +inseparable +beyond +to +Mrs. +cided +the +rttracted +vested +I +at +himself +Various +above +party +upon +operated +ture +and +have +a +three +far +ot +view +corner +of +the +be +up +girl +favor +pound +in +matter +giving +Canada, +hostesses' +miles +were +carry- +J.n +John +consent +plrdged +states +as +under +the +break +from +nor +dm- +we* +he +Mr. +mity +ccnsnnrption, +stock +ticians +a +and +the +of +fifth +present +together +of +the +attendant +all +house +the +a +interest. +train +following +extra +of +a +tl +assidiously +Dun's +many +a +declared +it +past, +seem +posses- +degrading +a +west. +yellow +of +mid +baa +sense- +of +House +that +on +At +in +been +ill +duty. +a +most +sample +or +from +nnd +did +Clr +my +city. +on +addition +meet +into +have +ureo. +be +Virginia +gave +vnest +broken +attribute. +of +purposes, +to +in +to +man +not +sales +dense, +status +doss +Fever. +resignedly +, +them. +j +found +such +but +uncertain, +D. +reduction +an +sod +the +have +Assembly, +themselves +bands. +of +‘‘Now, +day +ants +ecutor +will +to +Spinal +emancipation +inrlirat +man +person +and +sifted +save +bottom +were +I +lormand +up +but +while +riy +and +Hill +for +a +pouring +evil. +toih +Bureau +a +pectively +Eastern +pair +to +as +iHiring +may +Hudson +j +groups +and +the +Was +rapezunt. +agreed +his +my +on +his +every +announce +Charles +infant +Also482 +Semple +you +in +Tito +tlio +Carolina, +trade, +to +gently, +nance. +and +like +Irish +Gar +any +stepson +and +of +of +bo +$100. +proceeds +under +the +be +sold +and +par- +crop +a +was +be +him +the +for +why +and +bearing +dwelling +right +fur­ +«*.!;-: +assuming +impetus +out +wisdom; +length +Tonopah. +speech +who +and +power, +from +under +two +way +have +great +ready +promptness +that +thought* +down +ing +all +in- +horse +carried +and +one +down. +8. +on +to +this +great +j +and +Is +on +estate +expel +the +false +Lewis +in +which +he +will +ter, +stood +each +himself +any +In +sor +professional +liberty +bb +Mothers +any +shall +of +shadows +products +have +was +doctrine +the +the +and +and +to +settlement +allowed +in +was +money +ring +they +anting +into +that +death +disposition +by +ppeuing +the +“common +they +science, +the +secretions +could +his +impossible +; +a +than +are +within +t +is +November, +& +he +protection +bar- +army +circulation +county. +a +to +3'ields +Is +discussed, +icJound +rhe +.gently +larged +his +manufactur +popular +from +1st +. +served +to +north, +atlantic +O +much +which +the +f'T +completely +Later +per +Oregon; +which +hereafter +want +farm +intelli- +ty +far, +time +to +hubbub +was +The +thousand +taxation +dollars +for +Warren +mile +team +red +must +being +not +disease +the +order +the +was +thing +' +tho +symptoms +fulfilment +been +were +shelter +even +drunken, +his +leaving +with +most +time +hate +over +crack +will +passengers +orgauize +in +July +Jackson, +from +fact +with +with +not, +fail, +their +common­ +this +before +creek. +lire +; +ij +a +resisfctue +he +or +lit* +produce +that +glaring +future +THE +! +Go +changes, +showing +or +beast +consumed, +conditions +this +of +how +Affairs +and +general +settled +timber +oi +Our +and +tenant* +physician, +the +got +the +well +the +Chamberlay +sell +little +delicate +with +failed +“ +the +so +a +come +expressed +was +on +September. +libels +years +or +Direct +purposes +be, +to +bounty +February +done, +master +doc’d. +Persian +to +New +for +cot +rules. +members +today +f +that +movements, +copy +which, +concerns +warning, +him +singing +City +i +6661 +ol +numbering +teacher +We +to +Their +society, +of +to +rounded +troin +number +than +nd +indispensable +es +all, +an +mcJit +tive +on +clamation +room +that +rity +the +the +party +have +•irnctiori* +Great +with +by +mottling +the +she +fourteen +and +fell +blessings +Patrons +of +lost +at +t! +John +known +the +particular +possessed +Bsfdrs +and +Peter +Louis +of +agricultural +is +officers +take +city +the +ands +the +and +1803 +until +Spanish +Those +hlooded +to +saloon, +government +the +shall +instructions +past, +it +an +restraint +United +have +diminished, +those +the +whose +covery +to +under +the +of +One +its +county +Case +at +because +An +therein +him +uncovered. +Lyinnn. +the +from +to +actuated +fat +kept +theskin +shamefully +i\V:: +Nortii +Marquis +(Vittorio +the +lit- +with +blacksmith +do; +with +in +the +of.luue; +seen +sihiii +upon +lessen +hay +freedmen +due +shall +6 +of +from +good +on +He +the +republican +Let +these +and, +sad +Judge +to +boy. +to +as +Provision +him +Iris-extraordinary +husband +the +where +on +e +lion +Then +point +in- +u +snriated +pirates. +miles +la +very +but +Stumpage +Pendleton, +ounty +today +noblest +Barlow +hv +be +St. +shu.i +diggings. +between +planted +present +Great +great +1847, +and +Indian +so +health, +that +express +Mrs. +wlio +you;” +of +put +from +The +down +ileal +done +over +an +and +and +braces +are +mals +in +ol +a +ear- +us +projecting +hia +so +will +signed +had +it +betting +iv- +gallons, +found +position. +of +that +the +of +machine, +fly; +of +facts +organized +the +to +to +whom +theft +of +few +murmur. +a +let +have +eontain +to +the +should, +track +are +sword, +well +t'ie +from +Col. +about +to +of +on +the +remain +r +and +the +notify +goods, +a +the +choosing +in +world +us, +priorities +;ruit +that +J. +the +if +was +commanded +of +following, +has +kick +the +thus +James +to +the +fully +Jchn +lar +invoice +and +snd +Derby +an +ly +portion +the +that +The +by +its +invalid +papers +discharge +whilst +breath. +to +a +direct­ +to +ed +a +Ibe +adequate +where +acceptance +an +house, +therefore, +Sig. +place, +of +sed +died +every +got +Whig, +Britain, +tho +tables, +tunneline +th» +We +ington, +exercises +e +Assessor +Dropsey +tains, +of +his +alleged +It +lal.e +date +all +before. +to +On +Heaerve +ween +censers +cabin, +in +such +was +to. +arc +Ids +its +miles'? +generally +once +other +silent, +where +I +discouraged +he +we +to +some +ity +collections, +the +a +better +liesulntiuiis +Slope, +that +personality. +a +the +acquire +and +richest +contracts, +of +them +posted +was, +hours +tlun +ot +(or*. +shall +requirements. +factories +the +mothers +This +said +should +that +length +Conimoo +gives +and +recovered. +and +wc +stock. +leged +elected +in +them +iwsces +force, +exercise +they +upon +what +Ihe +Tim +mere +true +in +in +his +concerts +a +or +paid +make +down +place +it +use +the +until +to +Ty." +designing +to +think +in +stopped +without +be +by +weighs +used +ing, +to +in.Hfitt +ternations +triumphant +and +to +school +to +cessful +should +other +dining, +to +sacred +grinders; +in +o +canneries +oigatm. +without +and +a +valley +abandonment +bring +asa +by +wholesome, +terms +necessary +studying +in +are +health +apprise +I +declaration +complain +reputation +valley +patriotism. +Washington +oceans +be +414 +every +regard +Arizona +ious +directory +estate +a +the +Folding +on +o'clock +the +sUch +We +beep +animals. +to +injuriously +highest +take +Chat +(he +for +in +form +of +Hughes, +the +pressed +the +help, +James?" +othci +of +ict +much +John's +bullwheel +18, +Resolved, +on. +Catholic, +defendant, +At +will +means +or +to +raise +having +miles +lliem +descent, +their +who +and +would +to +tedious +wrecked +be +years +petitioners, +2rica!e +in +he +the +Oude +in +would +of +death. +it +Little +very +heart +lisfied +missed +which +is +a +yet +the +to +money +other +forget +insist, +not +board’s +first +swept +used +Whig +proper +a +accept- +one +endeavor +amendment +full +eral +and +the +on +every +fprang +of +leaned +studded +extraordinary +new +degrees +is +sweep +and +systematic +it +error +Gulf +ism, +to +Governor +sJ +to +taken +time +tho +was +ket +oil +being +5 +their +an +as +cars +and +A +to +men +S +to +respects +gave +House +(and +it +re- +says +equity +is +a +more +and +necessary +leaving +such +again +have +and +on +of +would +license +bonds +at +and +Henry +11 +46 +freedom, +The +said +mere +proud +found +Green, +or +iwotrer +courtesies +all +secured +«bout +wheels +very +institutions. +face. +road +erage +Tktir +to +nent +half +Mr. +the +jcabnage, +boy. +another +crime; +will +alterations, +land +round +of +mi.xchirl +a +pillow, +to +recede; +gone +Jiut +ono +interest. +to +of +very +at +come +was +false +sell +to:my +. +granted; +Terror +public +that +meeting +Appeals, +manger +towards +positions +may +He +proper +have +civilized +States, +and +J. +i +but +Quick, +night, +and +of +unless +for +plied +to +women +bring. +the +aud +on +who +a +in +revived +Omar +retire +to +principal +always +Cheap +from +in +Miles, +Mexico +and +to +for +The +her +would +winch +man +neighborhood +I +to +Parliament +rations +ne\ +Spain. +to +first +cause, +lHeidelberg +service. +just +Amerc +the +woodwork +of +always +States, +the +by +re- +to +city +a +the +suu +nstitiition +the +the +ehoeo'ate +entirely +Venice, +and +money +successful +election +of +arrest, +iu., +the +der +in +the +S. +their +fill +tween +of +message +resolve +Counrt +sooner +writing, +F.x- +eminent +to +party +Morgan, +deg. +there +judgment +which +up +and +known +meeting +to +Peaceful +they +by +entitl'd +such +the +failed +undersigned +the +be +and +the +not +or. +cate. +H. +centre +warmci +leaving +all +'New +and +and +No. +rioting +has +as +motion. +His +among +such +mill, +of +was +to +and +rises +no +ers. +the +they +I +divide +to +blood. +Lots +so- +adopted +the +of +away +and +came +strong +able +faction, +decided +among +that +be +to +the +and +has +of +el- +The +was +$10,000, +the +lace +disordered +even +getting +York, +over +relating +some +breathed +that +revival +of +-lain +have +is +planted. +State. +the +. +inaction +in +operation +B +pose +a +is +making +ol +at +are +immediately +the +exist +they +my +Galveston +f +learn +the +would +include +innocent +ol +looked +p. +of +'d +Their +that +to +trudging +times +anxiety; +his +with +but +a +frisky +statements +Charles +under +returns +and +tegrity +present +ft. +twelve +top: +contained +'.lie +to +preciated. +to +tho +the +tween +hail +bad +and +a +years' +of +may +for +on +extort +might +is +was +they +uniformly +Petersburg +attacks +and +ore +delivered +Mr. +BigerstafF +father +by +armed +water +If +Messrs. +Northampton +aki +means +of +per +ces +hope +mint +anv +ciibs, +an +guarantees +resolution, +the +mpreve, +is +common +the +aforesaid +the +store, +hits +it +charge. +to +moments +studies, +in +out +from +canal, +by +Dr. +solid +bursting +pro- +eases, +ie +kit- +by +judge +Mrs. +with +not +last +>f +was +uted +the +original +the +gaming +aimed +given +bor +■•rrswered +only +ourselves +him +Washington +Union, +the +our +J. +convention +summer +and +| +and +due +nearly +they +Ci- +, +life. +four +to +a +were +from +pot +their +worse, +the +$30,000 +by +• +We +provide +plant +a +could +engines, +ol +dropped +and +let +this +of +its +descendiug +Rives +of +MeKinley. +up +lim-d; +barrier +finery +always +cylinders,- +keep +acres, +and +the +description +second +laid +of +suc- +execution—ami. +night +upon +deserves +mands +hand, +out +Unquestionably +principles +so +Wages +He +than +by +uniform +would +in +Mot +from +of +swan'p. +the +ef +near +beautiful +opinion +city, +largest +teach +io +sive, +sighted +motion. +It +circumstances. +or +crovasses +like +means +as +even +has +suggests, +corn +hut +this +County +those +fainting +run, +Goods +off +Court +212 +"Young +spirit +di«|n*se +reasons +the +years +stolen +have +dem¬ +the +upon +the +stands +the +requiring +And +and +maybe +said +in +supplies +county +They +huge +this +boon +cally +in +to +the +show +turn +and +ot +met +it +requested +between +of +large +its +12 +there; +(faring +Florida, +to +coming +raised +as +fun," +fresh +113 +for +stretches +would +ed +said +of +and +to +its +nt +their +condition +ol +. +c.imbusrltde +also +the +is +a +In +ran +abundance. +it +ben +be +to +mortgage +minions, +tracts +and +own. +One +citizens, +them, +tow- +to +ordained +under +tions, +the +be +of +are +February +to +points +bate +appears +by +demaadeu +loyal +done +$108.63; +concentrating +scrapers, +his +use +both +the +con- +At +work +of +for +a +of +summary +for +market +land." +the +the +guilty +not +of +it. +that +strong +of +is +fronting +reasons +of +spend +the +the +Mt. +that +this +than +from +been +the +thirty-two +the +she +Watt, +legislature +words: +the +riet, +the +it +disposed +cross +like +home +subdued +Copper +West +being +according +meetings +capacity +arm, +time +I +left +the +copies +to +with +with +extinguished, +a +to +which +spread +ilton +bill, +stepped +to +before +topography +Clerk +it +will +I +ptmcipb +scv» +enemy +anti +ho +pointment +for +whole +tlieir +tiiey +peake +It. +The +W. +cards, +of +the +other +above +"a +to +the +are +lose +State, +Martin +of +inculcate +In- +a +more +his +was, +6, +to +were +reached +within +terri- +reminded +under +owners +men, +To +overthrow +should +has +fast +his, +bank +::i +not +a +aronnd +but +work:nanship +lo +left +difference +old +It +not +removal +Duke +di- +of +person +intermarried +eastward +"An¬ +the +The +what +ample, +plate, +office +e +which +them +vacant +is +gomery +ed +is +sym- +science +gentlemen +with +fu +by +satisfy +that +ip's +very +prove +a +duty +this +t +hirili +not +time +seven +294 +church +housekeepers +doubts +relish +neatest +of +obliter- +to +not +It +home. +Coast +appear +guage +would +that +other +m- +report. +withiu +order +the +bad +regard +dissatisfied +Rov. +taken +ii»h, +the +all +the +the +and +commence +the +in +Is +Mantana. +($39,00) +course +44.60chains +has +procuring +discharge +wealth—which +tho +re¬ +Private +est +son +Chief. +fact +saw +to +the +who +draws +is +who +products +war +Boyle's +Campbell +laboured +and +a +sir." +of +o +others, +the +a +it +arose, +and +; +pay, +Clay. +sities +expect +political +had +; +has +cent +prevent +He +thing +handed +her +hearts +tomorrow +is +s +been +the +that +Virginia +submitted +second +the +the +outspoken +still +arguments +after +tone +a +be +upon +association +as +proceed- +partly +bring +who +branded +and +a +rate, +the +he +bim +in +impossible +He +his +Department, +the +have +in +peace +den +junction, +hot, +utmost +England.) +Inake +raise +doing +constitutional +lor +tliut +lost. +beef +ben +is +Harney +Ga, +spread, +and +the +see +tho +the +Urge +as +was +per +office +that +sHken +sdurees. +Tiic +the +West +of +the +in +in +therefore +the +very +him +circum¬ +k- +such +lie +Murnane, +business +tone +same +to +Banks, +a +coliillllsMunel. +by +walking +the +?|H!cio; +compelled +to +twice +gave +Thus +mi +kiwllh +is +these +a +pronouncing +was +t'jniis +the +solute +for +At +Directors +until +ence +while +the +the +of +dis¬ +keep +liiin +in +life +intestate, +folk. +his +no +re- +pilotd +are +vhich +small +not +"Improved +that +command +figures +figures +is +eight +in +Ins +were +mi +approaching +of +100 +seen, +would +our +people +be +common +to +Mrs. +16 +had +Representatives, +and +tree +va- +es- +perfectly +a +speech, +my +go +the +tests +had +being +to +mission +of +what +be +by +follow +act. +of +correspond +if +most +for +and +it. +of +trust +As +Inquired +sition +sta- +with +abandon- +r< +and +Street, +convince +the +propaganda +do +may +without +neutralized +not +miles. +the +energetic +a +named +They +Sire— +patients +monstrous +which +be +well +where +landed +last +therefore, +to +when +ton +to +the +take +station, +came. +find +expe¬ +you +A +sionaries. +anything +mask +At +they +county +defied, +or +some +of +that +the +he +report +was +in +treaty +proper. +not +their +bared +in +In +and +of +the +are +Congressmen, +the +it +men +and +raged +not +and +Then +none +that +forefathers, +nation +the +made +What +in +from +that +dying +ed +disposition +conn- +further +the +is +judgment +the +been +President +- +f +crop.keep +the +decreed +this +painfully +their +building, +each +though +19, +excellent +Drive. +my +and +spring, +to +boy +of +there +j +the +known, +pine +ern +flow. +servants, +firm +Tong +To +hofiil*97cd +the +has +a +time. +sheep +and +the +revolution, +verse +ataolutely +to +will +cut +reside +are +to +was +n +outfits +business +you +single +themselves +no +de- +known +that +one +sense +that +physicians +is +aie +much +herself +administration, +some +continually +generosity +that +Washington +next +be +time, +have +leaves +etip'aim +to +and +commissioner, +Globe +made +or +skillful +other +visit +then +the +de- +Mallory +by +the +They +the +feet +fiom +tho +’em +would +the +aggression +as +that +people, +failed +took +arraigned +the +which +bacco +through +learn +ought +in +he +far +the +ha* +committee +Deer +we +\Yc +way, +notice, +unsuccessful, +phis +is +carries +full +thus +entitled +half +and +the +the +lands +8. +power +redes +557, +ternate +Norton +rica, +from +States +S:ate +m +Mr. +horse's +will +in +vidious +every +others +to +uha'- +with +soever +best +below +so +not +make +ever +take +*>{ +the +In +party +gun +can +towards +children +to +try +English +as +Peyfona. +Velna +he +these +sur­ +thoroughly +a +shall +country, +(Sam, +ordered +of +which +. +financial +The +it +whole +the +tor +crown +the +Second +independence +terday +slept +the +his +is +families. +of +bnsiness, +to +matter +year, +of +less +which +'et +dinates +with +bv +and +call- +propensities, +a +unladylike, +Mr. +of +i* +of +Instant +deserve +driven +enormous +the +Carter +of +table. +Wiscasset +the +there +that +Such +certain +so +man +struggle, +ing +as +mtddte +employed +an +up +ten +in +l +When +immediately +leaders +the +preaerve +l-er +said +af- +resented +riends +They +vl.lch +workmen, +Ho +at +tions +off +Oregon, +He +and +of +a +existed, +former +and +bribe +the +the +their +can, +as +another, +and +that +the +deputies +In +was +has +produce +at +and +might +about +most +thirty +f'ne +other +in +strife, +long +law +of +like +the +lis +lot, +integrity, +Herbert +that +only +public +sota +tiie +runninjr +further +recognise +flowers. +tiie +ol +traitor +get +the +of +to +principal +cereal +provided +twenty-five +o'clock +over +room +had +protection +payable +aeknowledseil +In +to +hereinafter +rred. +it +that +tha +— +of +line +Townships +in +the +rid +Co +ry +Herald, +dtcisio&s +of +of +ash +cor- +have +horde +in +mountain, +of +receive +Division +the +being +minority +trom +half +all +or +present +vesnls +miln +lieve +on +clever +corporation, +of +disposed +man +Ij.iirt +will +a +of +the +the +up +bracing, +sold +once +district +in +uncleared +plow +the +and +fights. +(in +the’ +duty +can +we +day +bonds. +mid +tho +belt; +scenes +for +nate +their +ago, +assertion, +ol +ship +impose +Mr. +to +Tayern, +their +the +there +n +v111 +Folding +himself +feet +some +work +across +participate +the +natural +Hon. +liud +the +The, +and +the +week +but +Walsh; +if +a +involved +left +Private +Jane +next +35 +when +a +in +istrative +the +that +gentlemen +be +such +chance +It +rolling. +later +that +aggress- +iting +sum, +family +altogether +appear- +nothing +iu +renew +on +large +whole +the +this +the +wide. +chains: +recorded +to +she +they +and +speoific +lo +corner +Third +we +argued +matters +if, +the +make +ratnmfor +A +to +the +embarrassing +!.' +tion, +to +ment +small +be. +nil +was +(he +H. +l +tir«t +month +time +sumer. +from +have +elapse +sorved +highways +bo +but +toward +opportunities +above +behalf, +The +country +time, +valorem +cost +is +as +County, +can +man +preme +Mischievous +"Won't +fair +book +switelmneln, +ahead +California,winch, +and +ordinances +lie +for +and +need +This +in +further +should +very +the +containing +to +what +seek +him +matter +Dart +people, +Counties, +and, +government, +who +of +they +it +and +Townships +lation +essary +her +and +the +lasses +health, +to +dangerous +to +it +certainly +motion, +of. +composed +clerk. +the +directed +were +all +ot +mou'h +Camped +n +tinted +mystery. +Evidence +or +taken +tie +shall +For +writer +ac +goldseekers +weather +spring, +his +use? +right, +nut +such +of +to +bond +other +and +fully +iu +She +good +wa +industries +the +connivance +money, +wlf +reasons, +ones. +scorning +ordinary +such +Fauquier, +out, +leaves +military +my +spectacle. +organized +were +ninth +is +the +hand +will +Walewski +total +purposes +the +but +office +the +the +in +The +had +The +Pole*!—and +to +head- +ten +that +leeliii" +. +com- +all +of +he +a +and +he +siders +Mr. +on +of +maintain +sexual +was +Mr. +to +line +to +squanders +marriage, +that +his +could +thorn, +revokod. +rights +Journal, +three +indeed, +limited +authority +neck +to +but +his +he +then +we +lodged, +Mrs. +the +being +whole +Francisco; +its +1 +circuit +suf +in +of +are +the +of +and +It +next +narrow, +visit +the +before +shield, +servile, +1 +seeding; +IVood +weaker +for +so +in +pub- +and +sure +of +there +County, +all +1st, +somo +con¬ +lowlander. +Ity +greatly +by +issue +26 +deposites +two +you +economizing +youth +as +the +by +prrcee +beautiful +the +been +&c. +w +for +still +the +At +plaintiffs—and +of +month, +goods +conduct +Harpers* +nition +Van +done +was +days +which +such +energy +admisaions +a +observe +it +years +back +prises +poured +and +used +moment +by +in +play +on +of +the +was +and +ibeex +Go +lie +as +in +went +it +cadets +a +weak, +wonders +were +proud +and +back +soason +Hast +give +even +fatal +to +Hut +But +tion. +the +up +bore +they +lllent +of +conserved, +different +any +th +-0- +Well, +supposing +from +a +his +the +ful +year +work +wake +power +of +not +I +One +the +two +manner +first +at +It +the +center +of +crowd +stoppages +muda +Tow-on, +induces +that +The +interest—besides, +and +instrument +insolence, +the +self—and +sells +for +a +have +vessel?shall +credit, +ning +basis, +de- +fact +iu +from +sho +virtuea +no +less +whisk. +disinter +<1 +We +the +elcputics +and +so +the +by +his +has +month +temporarily +was +to +by +was +legitimate +no +very +be +drink +if +97th +this +?' +of +is +of +resumed +on +the +Third—That +whose +story. +as +weather +the +all +learn +appreciated +on +a +of +bushels +him, +sisting +ly +crop +To +the +evidence +of +or +delightfully +duties +England +support +watch +is +cobirlbiiie +of +Rive3,) +rentier +sustained, +hired +of +of +them +\ +spread +vontion +Sexes, +the +who +to +center +doctrine, +make +one +conceited +highest +only +knock +strances +Miller, +inquisitive +cases +condemn +on +difficulty +the +of +believed, +aroused +allowed +inaugurated +for +the +I’nitet* +(8), +well +On +rubbery +Bigler +work +when, +migrating +will +domestic +developes +res +discover +from +the +the +at +sum +of +tho +per +twenty-eighth +th»ir +business +Jockey +Wallachian +influenoe +of +youth +change +paid +Supreme +stant, +Me +appears, +net +one +Daniois, +it +woro +pf +plat, +that +to +the +be- +ber +that +generally +sneers. +twice +most +land +given +naval +reason +from +Sir, +uatico +in +wherever +authority +apt +whenee +debate +rectify- +up +N. +a +may +t-lerted +how +We +cover +giant +at +but +experiencing +working +instruction +died +shall +abandon +15 +beare +of +my +affairs. +put +had +lavished +at +7 +permission +Village. +on +miles +we +me +containing +ij- +bad +is +at¬ +of +to +were +Wishing +that +of +The +through +fi +to +as +l-Uer +compromise +one. +re­ +begin +the +base, +the +dear," +plaint, +most +it +Since +one +stores, +told, +nefit +is +and +from +the +and +his +not +a +we +notice +end +would +now +Elder, +above +susceptible +$10per +should +of +Souther +any +the +judge +and +fowl. +rely, +it +and +state +drawbacks +caabler +Doctor +or +ginning. +tiiat +dates—would +social +is +was +18, +favorably +New +their +erode +lamous +a +ted +has +make +understood +be +physicians. +witness +is +there +Poultry +be +of +the +and +Ohio +made +ers +make +pre- +first +He +from +enter +01! +the +Trinity. +Yet +fair +letter, +that +eleven, +of +experience +all +gado +in +family. +had +without +and +yours +renewal +ing +the +other +considerable +we +counted. +Edition's +am +vas +to +fact +the +the +their +centre +approximated +extraordinary +said +a +Walker, +own, +interests +Sherbrooke, +tion, +the +the +propose +led +ft. +My +full +uninter­ +er +except +of +both +feet +across. +of +thence +as +ignoriug +asked +phce +be +called +the +est +fancy +police +for +hail, +March +constant +in +plump, +perpetuity +machine +proceedings +course +her +devoutly +Amanson +up +One +and +ready +that +eating +that's +the +but +Southern +in +cost, +and +But +riot +the +living +is +banks +entertaining +later +room +1881 +being +the +not +cence. +thoy +for +telegraphed +the +and +est +Missoula +governments +I +been +handle +any +Engineer +arguiueiit +the +rich +fashion +breeze +are +much +small +cloth¬ +this +men +provided +would +costs, +must +by +Dale +the +former +lowish +Had +could +were +150 +members +by +fashionable +and +scrv'ce +having +(Ji +out +on +one +condemn- +nt +oome +keen +millions, +who +Dents +death +That +Langdon, +the +expected. +l +d +pendence +debt, +Whiggeiy +distance +secret +laiul +Abi- +harness, +speak, +and +$528: +elastic; +sayin +to +on +is +forming +c +was +four +lam +body; +Cellini +have +further. +to +ia +by +her +the +where +anticipation, +of +Bose +ministry. +of +sufficiently, +implied +and +nation +plate +have +resolution, +It +sterling, +the +effect +in +own +anyone +negligently +accompanied +would +levard +erecting +whole +shares +authority +present +nounced +mauago +for +basket +which +comical +as +tbe +I +acted; +or +man +fur +do, +of +lodges +there +fate +played +the +willing +Ameri¬ +sus¬ +would +according +parish, +it," +he +dis- +are +lan- +he +in +chine, +fetch +they +applies +made +substitute. +receive +forty +or +hand +in +whoarc +pride, +affect +tion +the +use +reach, +for +the +at +tax +while +thus +of +give +shall +let +of +door +from +taken +blackened +This +respon +missioner +respect +a +the +Correspondent, +views, +alongside +it +and +oats, +willing +give +Mr +Indians. +becomes +in +their'good +od, +exciting +unanimous +Find +him +he +tax +well +turns +comfortable +uable +or +become +and +was +The +*\ +and +with +a +Gen. +out +should +that +for +have +Hindoos, +it +making +rendered +merchantman. +both +of +nent. +ficient. +the +into +sale. +The +mystery +to +This +regular +was +and +two +of +down +ueouily +given +the +is +, +even +en +tent +let +fire +legislative +be +any +Mr. +. +any +thus +the +liad +memory, +was +would +full +sened +it +through +the +a +Kentucky +of +2 +be +The +her +and +announced +all +charged +about +commissions +material +will +ed, +BKirt. +so +prize +did +profits +general +waited +bnt +ler +reputation +inc; +total +City +an +Their +a +; +people +to +ever}-sec:ion +its +for +of +of +ignorant +strange, +covered +the +is +war +the +Liver. +discord. +not +I +elevated +h*ad. +Bank +rendered +constitutional +couple +by +been +course, +give +The +to +non +keep +all +leave +A +street +was +in +himself +I +with +they +life-time, +our +to +in +of +the +trary +which +responsible. +have +that +of +and +consisting +this +and +The +latter +yet +The +ning +fast +free +the +much +and +an +The +ol +Franciscian +a +is +' +but +Fairfax +East +Herald +to +together +Miss +Washington. +but +tt +his +of +her +tf +had +bearing, +as +astonished +some +inflation +over +conceal. +delusive +not +the +well +to +to +o'clock +or +them, +west +was +and +have +that +the +gentleman +be +showing +pcii-o- +violate, +leave +an +upon +he +city +was +convince +Intention +were +house +[ +order +few +proposed +within +through +work +enot- +with- +aud.was +restored +words +D +mud +principle +peril +never +city +Grass +on +may +among +Benefit +of +to +Bootts +he +move +Cuba. +it +been +are +get, +ng +on +Great +; +In +and +who +stated +gentleman +in +prescribe, +tanta- +the +the +informed +tedious +that +worth +South +will +on +of +benecrssary +he +what +about +and +last +; +operation +worth +continue +get +a +at +the +de- +to +I +not +German. +support +Martin, +of +theory +since +informed +c'.s +thank +the +of?,, +pre¬ +No +the +able +top +overturning +Imndrevl +uaphtha, +object +in +to +per +four +l.aws, +extraordinary +could +commonwealth +to +country +night +moval +a +remonstrated, +disgrace +passage +obstacle +Thomas +unite +a +for +commanding +It +being +n +had +the +offered +excited +bill +the +secured. +turned +stock. +£75,954 +Britannic +away +arc +toliowed +of +escape. +who +of +order +has +earth. +lack +port +the +u +bet +are +Seat +of +the +to +days +iu +shall +atlairs +the- +eon, +aro +travels +Buchanan +the +leave +are +to +The +to +posal +men +of +that +believe, +to +the +Holliday. +in +were +Well, +run +exhaustion, +constella- +tjiis +some +tell +then +unconscious +by +known +for +appreciation +the +and +in +resort +saloon +looked +pose +haul +Eastport. +of +nephews +tincture +into +their +bran- +much +May, +! +cause +the +tion +and +conditions +favor +under +the +When +is +a +of +of +the +resembles, +to +to +the +succeeded +not +o +poetic +Sec. +"1 +feet, +within +up +one +new +under +is +be +some +-^flOO +a +aad +age +had +over +only +I +behind +boarding +with +incurred, +bound +twenty-six +admissible, +cutting +no +have +was +raw +am +his +over +in +period +wealthiest +fifty-five +of +Nan­ +hanging +the +I +that +to +and +party +for +! +as +it +widow +the +to +a +use +not +Crittenden +to +'70 +at +generous +apples +do +health +the +line +give»» +ture. +me +The +Bay. +Taken +ounce +chaux, +market +people +it +a +reached +when +of +amendments +of +In +the +truth, +1808 +did +reasonable +gold +can +but +of +Iratiou +can +to +dings, +north +nal +They +one +the +a +to +on +the +aud +ot +emptying +ot +Lexington, +no +inherent +light-headed, +of +of +pine +chatter +grounds. +great +and +every +to +• +be +discovered +entire +doubt +to +thousand +last +on +can +illiams +pro- +numerable +before +on +met +money, +to +lit +to +benefit +will +millions +much +he +Base +men,on +Brooks. +avrar +fire +report +Herbert +ia +corre­ +the +age +hr +trains +depth +the +is +was +for +Assembly +on +the +such +is +No. +witfi +as +familiarity +the +exercise +to +most +acts +hope +a +any +mother, +impressed +changed +expense* +a +Day. +a +smooth +to +quiring +She +ronjuns +Discovery, +man, +wit:- +are +ceedings +with +it +luminous +can +Judge +Shannon +in +level +to +was +the +Page +party: +the +faithfully +and +that +It +some +water, +eighth +when +the +one +it +chamber. +bnt +well +seen +republicans +as +were +acknowledgments, +was +wife! +snid +ol +expedient +without +to +of +United +head +a +attention +duly +on +only +if +hoard +a +willing +shake-up +There +Bridgeport- +population +farm +Ayres, +Refvem, +Department, +strange +That +of +was +letter, +of +discover +for +iim'iiilkt-sI +intended +in +on +Without +farthest +matter, +tho +sotr. +his +still +ry +been +we +be +that +in +seamen +corporation +company +with +1, +use +He +for +on +one +old +time +at +the +and +roots +N +the +of +troublesome, +and +and +which +Koenig- +marl:.' +which +by +in +quarter +oppression +cop- +is +the +iialpin. +•The +mediately +The +the +and +our +resist +three +we +am +t +ilepo +and +and +But +in +visiting +ner +obedience +grown +age +The +consumer, +early +place. +depots, +a +The +and +his +it +processes +land +immediately +said +Siioks. +cloud +rendtr +that +good +Dlace +train +table, +ns +the +and +due +board +a +sheep +icit +raid +Celtic +Is +27 +vast +to +in +1,500 +they +as +generally +(J +to +their +above +was +to +the +assisted +couple +affinity +their +in +there +of +complish +the +the +peaceful +mentioned. +Secretary +you +by +strayed +Washington, +be +houses +of +s +prioe, +and +and +the +in +i.- +Re- +the +after +to +the +of +placed +but +that +said +great +may +training +express +to +estate +Mr. +as +general +of +should +rich +our +.ufflclenl +end +was +L'pon +Kreutzer +ugsint +.S +and +deal +the +execu- +the +of +for'sic. +they +United +good +of +have +the +of +large +gard +Deets +ft. +covered +manufactures. +provisions +1 +sold +cal +this +nervousness +failure +a +hitherto +and +lb +The +the +a +man +the +lingers +No. +governor +prosperity +liiin +never +with +every +promote +retire +curb +to +the +the +of +to +the +It +is +the +that +to +cold +were +* +constitutional +Article +as +human +wears +flowers +The +the! +plat +a +despotism +beautiful +the +xud +time +jKMiplo +They +making +watered +of +your +and +of +Court, +interested +great +Huron,is +a +liood, +by +have +of +touch. +board +of +the +giving +throw +a +xertiotis +In +But +connection +cotton +In +are +brine +to +deeds, +In +rreek, +Francis +not +Harrison, +the +tlm +Inn.I. +Crested +this +against +ance +stated +spot +BUI +land. +be +lands +Smith) +shonts +assistance +of +Virginia, +similar +by +nation +for +only +one +a +of +on +ten +They +deposited +of +brick, +the +of +market, +was +thighs +been +strange +involved +Flour +the +the +City, +to +republic +tl» +which +the +determinedby +the +needing +be +; +Trea +while +have +national +o'i'uty, +the +would +not +a +Administration, +foundation +to +But +thus +and +is +had +a +healthy +help +the +himself +day. +try.atlprding diff --git a/dev-0/hate-speech-info.tsv b/dev-0/hate-speech-info.tsv new file mode 100644 index 0000000..3e8ef70 --- /dev/null +++ b/dev-0/hate-speech-info.tsv @@ -0,0 +1,10519 @@ +0 0.1295 +0 0.0699 +0 0.0605 +0 0.1697 +0 0.1746 +0 0.3541 +0 0.0701 +0 0.1527 +1 0.7609 +0 0.3016 +0 0.3094 +0 0.0704 +1 0.7617 +0 0.0874 +0 0.1766 +0 0.1232 +0 0.0594 +0 0.1035 +0 0.1719 +0 0.2301 +0 0.1235 +0 0.0887 +0 0.1092 +0 0.6886 +0 0.1075 +0 0.0524 +0 0.0954 +0 0.0740 +0 0.1094 +0 0.0459 +0 0.2968 +1 0.7989 +0 0.2046 +0 0.1456 +0 0.0418 +0 0.1746 +0 0.0793 +0 0.0734 +0 0.0654 +0 0.0459 +1 0.8096 +0 0.1012 +0 0.1064 +0 0.1142 +0 0.0665 +0 0.0868 +0 0.0634 +0 0.2237 +0 0.2079 +0 0.1544 +0 0.1924 +0 0.0656 +0 0.0610 +0 0.0622 +0 0.0780 +0 0.0841 +0 0.1285 +0 0.1881 +0 0.2397 +0 0.3276 +0 0.4701 +0 0.2299 +0 0.0829 +0 0.2686 +0 0.1069 +0 0.0670 +0 0.0672 +0 0.0530 +0 0.0932 +0 0.0790 +0 0.0536 +0 0.0810 +0 0.0762 +0 0.0965 +0 0.0987 +1 0.8547 +0 0.1744 +0 0.0534 +0 0.3359 +0 0.1501 +0 0.0609 +0 0.6697 +0 0.0643 +0 0.0583 +0 0.1205 +0 0.3505 +0 0.2302 +0 0.1276 +0 0.5806 +0 0.0776 +0 0.0560 +0 0.0485 +0 0.0893 +1 0.8270 +0 0.0709 +0 0.1541 +0 0.0783 +0 0.0767 +0 0.1797 +0 0.0775 +0 0.2757 +0 0.0689 +0 0.1122 +0 0.2917 +0 0.0993 +0 0.0452 +0 0.0840 +0 0.0983 +0 0.1420 +0 0.0832 +0 0.2766 +0 0.1840 +0 0.1326 +0 0.1553 +0 0.2253 +0 0.1198 +0 0.1858 +0 0.2586 +1 0.7786 +0 0.0909 +0 0.3136 +0 0.0853 +0 0.2038 +0 0.1022 +0 0.1285 +0 0.5455 +0 0.1105 +0 0.0727 +1 0.7935 +0 0.0970 +0 0.1676 +0 0.1480 +0 0.2164 +0 0.1150 +0 0.2532 +0 0.1884 +0 0.0594 +0 0.1441 +0 0.0980 +0 0.1483 +0 0.1278 +0 0.1637 +0 0.0692 +0 0.1165 +0 0.1367 +0 0.2220 +0 0.0442 +0 0.0668 +0 0.0611 +0 0.0982 +0 0.1527 +0 0.1091 +0 0.1486 +0 0.0497 +0 0.1260 +0 0.3953 +0 0.0522 +0 0.1960 +0 0.2168 +0 0.0869 +0 0.0806 +0 0.0485 +0 0.1576 +0 0.0970 +0 0.2110 +0 0.0738 +0 0.0691 +0 0.1506 +0 0.0765 +0 0.0830 +0 0.2389 +0 0.2793 +0 0.0759 +1 0.8464 +0 0.0514 +0 0.0659 +0 0.0750 +0 0.0431 +0 0.1344 +0 0.2059 +0 0.0962 +0 0.0706 +0 0.0747 +0 0.1581 +0 0.0968 +0 0.0903 +0 0.0864 +0 0.1003 +0 0.1680 +0 0.0542 +0 0.1128 +0 0.2311 +0 0.0678 +0 0.0592 +0 0.2053 +0 0.2316 +0 0.0915 +0 0.2085 +0 0.0525 +0 0.6234 +0 0.0878 +0 0.1045 +0 0.2726 +0 0.0934 +0 0.0475 +0 0.0682 +0 0.0898 +0 0.0797 +0 0.0978 +0 0.1106 +0 0.0992 +0 0.1168 +0 0.1432 +0 0.0973 +0 0.2853 +0 0.1953 +0 0.1395 +0 0.6486 +0 0.6992 +0 0.1547 +0 0.4954 +0 0.1233 +0 0.2719 +0 0.0518 +0 0.1392 +0 0.1985 +0 0.2550 +0 0.0709 +0 0.0848 +0 0.1929 +0 0.2367 +0 0.0506 +0 0.1923 +0 0.1756 +0 0.1199 +0 0.0947 +0 0.1178 +0 0.0884 +0 0.1334 +0 0.1568 +0 0.0943 +0 0.0379 +0 0.0591 +0 0.0565 +0 0.1441 +0 0.1148 +0 0.4739 +0 0.3019 +0 0.2253 +0 0.0514 +0 0.0444 +0 0.1367 +0 0.1153 +0 0.1228 +0 0.0702 +0 0.1348 +0 0.0871 +0 0.0450 +0 0.1085 +0 0.1155 +0 0.1312 +0 0.0829 +0 0.1441 +0 0.1159 +0 0.1069 +0 0.0478 +0 0.0495 +0 0.1373 +0 0.1699 +0 0.4379 +0 0.1634 +0 0.2077 +0 0.1993 +0 0.0388 +0 0.1385 +0 0.1040 +0 0.0938 +0 0.2449 +1 0.8057 +0 0.1057 +0 0.0792 +0 0.0484 +0 0.5377 +0 0.1491 +0 0.1515 +0 0.1340 +0 0.1353 +0 0.1482 +0 0.0967 +0 0.0627 +0 0.0700 +0 0.0527 +0 0.0638 +0 0.0470 +0 0.0754 +0 0.0745 +0 0.0842 +0 0.1541 +0 0.0612 +0 0.1684 +0 0.0774 +0 0.2366 +0 0.0585 +0 0.0939 +0 0.1621 +0 0.0302 +0 0.3790 +0 0.0658 +0 0.1169 +0 0.2810 +0 0.1158 +0 0.3016 +0 0.2009 +0 0.1278 +0 0.0879 +0 0.2691 +0 0.0697 +0 0.1978 +0 0.1285 +0 0.0647 +0 0.0764 +0 0.0843 +0 0.1780 +0 0.1403 +0 0.0776 +0 0.1982 +0 0.2148 +0 0.2648 +0 0.1018 +0 0.0969 +0 0.0664 +0 0.1750 +0 0.1303 +0 0.0965 +0 0.0653 +0 0.1215 +0 0.2473 +0 0.0351 +0 0.1709 +0 0.1691 +0 0.1382 +0 0.0662 +0 0.0724 +0 0.0580 +0 0.0674 +0 0.0949 +0 0.1351 +0 0.1257 +0 0.0946 +0 0.0934 +0 0.1438 +0 0.1107 +0 0.2421 +1 0.7835 +0 0.0899 +0 0.2113 +0 0.0702 +0 0.1258 +0 0.1756 +0 0.2089 +0 0.0654 +0 0.0773 +0 0.3061 +0 0.0706 +0 0.2056 +0 0.0978 +0 0.1261 +0 0.2572 +0 0.0855 +0 0.0768 +0 0.4547 +0 0.1319 +0 0.0921 +0 0.1007 +0 0.1697 +1 0.8106 +0 0.1228 +0 0.1362 +0 0.0716 +0 0.1755 +0 0.1241 +0 0.1131 +0 0.0498 +0 0.1983 +0 0.0870 +0 0.1477 +0 0.1310 +0 0.2150 +0 0.1616 +0 0.0463 +0 0.1032 +0 0.0717 +0 0.1031 +0 0.1099 +0 0.0430 +0 0.0830 +0 0.1248 +0 0.1886 +0 0.2269 +0 0.0553 +0 0.0968 +0 0.0814 +0 0.1154 +0 0.1386 +0 0.0417 +0 0.0897 +0 0.0830 +0 0.1286 +0 0.1600 +0 0.0438 +0 0.0570 +0 0.0485 +0 0.0674 +0 0.0742 +0 0.0898 +0 0.1395 +0 0.1783 +0 0.1780 +0 0.0686 +0 0.1071 +0 0.4203 +0 0.1258 +0 0.0589 +0 0.2221 +0 0.1188 +0 0.6419 +0 0.1160 +0 0.1139 +0 0.0392 +0 0.0977 +0 0.1589 +0 0.4701 +0 0.7173 +0 0.0743 +0 0.1485 +0 0.1822 +0 0.2016 +0 0.0572 +0 0.1409 +0 0.2256 +0 0.0498 +0 0.0767 +0 0.0426 +0 0.0878 +0 0.1985 +0 0.0654 +0 0.0404 +0 0.1043 +0 0.2410 +0 0.0604 +0 0.0580 +0 0.2611 +0 0.2010 +0 0.1676 +0 0.0940 +0 0.0608 +0 0.0564 +0 0.1613 +0 0.1123 +0 0.1339 +0 0.1405 +0 0.0888 +0 0.1308 +0 0.0676 +0 0.1372 +0 0.0542 +0 0.1676 +0 0.1290 +0 0.0923 +0 0.0655 +0 0.0734 +0 0.1212 +0 0.0839 +0 0.1027 +0 0.0709 +0 0.0646 +0 0.3191 +1 0.8725 +0 0.0852 +0 0.0788 +0 0.1247 +0 0.1210 +0 0.1768 +0 0.1040 +0 0.1326 +0 0.0804 +0 0.0615 +0 0.0588 +0 0.0424 +0 0.4109 +1 0.7821 +0 0.0984 +0 0.0667 +0 0.0610 +0 0.1382 +0 0.1190 +0 0.0952 +0 0.2930 +0 0.0931 +0 0.0906 +0 0.2793 +0 0.1423 +0 0.1004 +0 0.0750 +0 0.3210 +0 0.0509 +0 0.3122 +0 0.0743 +0 0.1079 +0 0.0771 +0 0.1754 +0 0.1074 +0 0.1437 +0 0.0940 +0 0.2021 +0 0.0348 +0 0.1128 +0 0.0738 +0 0.0508 +0 0.0544 +0 0.0947 +0 0.1190 +0 0.0495 +0 0.0904 +0 0.1735 +0 0.0819 +0 0.1343 +0 0.5982 +0 0.0375 +0 0.0850 +0 0.2210 +0 0.1008 +0 0.1763 +0 0.0619 +0 0.1561 +0 0.0980 +0 0.1107 +0 0.0925 +0 0.1220 +0 0.0967 +0 0.1641 +1 0.8998 +0 0.0903 +0 0.0688 +0 0.1306 +0 0.1333 +0 0.0845 +0 0.1052 +0 0.6724 +0 0.0803 +0 0.2608 +0 0.1587 +0 0.0766 +0 0.0512 +0 0.1540 +0 0.0620 +0 0.1897 +0 0.1378 +0 0.1144 +0 0.1490 +0 0.0406 +0 0.1114 +0 0.0826 +0 0.0867 +0 0.2344 +1 0.8294 +0 0.0939 +0 0.4334 +0 0.1012 +0 0.0699 +0 0.6534 +0 0.4786 +0 0.1606 +0 0.0873 +0 0.1176 +0 0.1464 +0 0.1489 +1 0.7851 +0 0.1748 +0 0.1644 +0 0.0558 +0 0.0473 +0 0.0430 +0 0.1542 +0 0.1386 +0 0.1605 +0 0.0565 +0 0.1483 +0 0.0708 +0 0.0916 +0 0.0738 +0 0.4456 +0 0.4918 +0 0.1095 +0 0.2886 +0 0.0723 +0 0.1117 +0 0.0759 +0 0.0947 +0 0.2156 +0 0.1032 +0 0.0986 +0 0.0476 +0 0.1059 +0 0.1135 +0 0.1594 +0 0.0827 +0 0.1143 +0 0.2080 +0 0.0776 +0 0.0909 +0 0.3008 +0 0.0823 +0 0.0669 +0 0.4329 +0 0.1050 +0 0.0897 +0 0.0672 +1 0.8633 +0 0.2295 +0 0.2729 +0 0.1205 +0 0.0864 +0 0.0674 +0 0.0828 +0 0.1718 +0 0.1105 +0 0.0585 +0 0.0598 +0 0.4346 +0 0.0793 +0 0.0575 +0 0.1182 +0 0.1960 +0 0.1737 +0 0.0584 +0 0.1823 +0 0.0793 +0 0.2104 +0 0.2497 +0 0.1398 +0 0.4991 +0 0.1883 +0 0.0906 +0 0.1452 +0 0.0435 +0 0.1921 +0 0.1716 +0 0.2753 +0 0.1358 +0 0.2078 +0 0.3114 +0 0.1523 +0 0.0690 +0 0.2087 +1 0.8640 +0 0.1434 +0 0.0680 +0 0.4536 +0 0.1447 +0 0.0808 +0 0.1196 +0 0.2562 +0 0.1064 +0 0.2188 +0 0.1332 +0 0.2588 +1 0.8450 +0 0.1046 +0 0.1269 +0 0.1252 +0 0.0495 +0 0.0655 +0 0.1152 +0 0.0768 +0 0.1272 +0 0.0639 +0 0.0789 +0 0.1387 +0 0.2589 +0 0.0561 +0 0.1679 +0 0.3434 +0 0.1251 +0 0.0829 +0 0.0696 +0 0.0800 +0 0.1591 +0 0.1387 +0 0.2522 +0 0.1039 +0 0.1208 +0 0.3220 +0 0.2853 +0 0.2371 +0 0.1012 +0 0.2101 +0 0.3853 +0 0.1538 +0 0.1439 +1 0.8328 +0 0.1129 +0 0.0556 +0 0.1041 +0 0.0623 +0 0.3646 +0 0.0810 +0 0.2148 +0 0.2062 +0 0.3725 +0 0.0871 +0 0.0567 +0 0.5298 +0 0.2090 +0 0.2170 +0 0.0747 +0 0.0811 +0 0.3217 +0 0.3381 +0 0.1363 +0 0.0288 +0 0.1920 +0 0.0984 +0 0.1150 +0 0.1095 +1 0.7988 +0 0.1715 +0 0.2002 +0 0.0946 +0 0.0767 +0 0.0701 +0 0.0540 +0 0.1565 +0 0.0971 +0 0.1361 +0 0.1501 +0 0.0682 +0 0.0886 +0 0.0742 +0 0.1524 +0 0.0872 +0 0.1307 +0 0.0771 +0 0.1090 +0 0.2068 +0 0.0987 +0 0.0668 +0 0.0559 +0 0.0429 +0 0.0592 +0 0.1290 +0 0.1781 +0 0.0928 +0 0.3165 +0 0.3351 +0 0.0897 +0 0.1285 +0 0.0739 +0 0.1992 +0 0.2310 +0 0.0750 +0 0.0715 +0 0.2802 +0 0.1319 +0 0.1154 +0 0.1004 +0 0.2768 +0 0.0985 +0 0.0393 +0 0.1312 +0 0.1007 +0 0.1337 +0 0.0916 +0 0.1368 +0 0.2746 +0 0.1657 +0 0.1707 +0 0.2391 +0 0.1249 +0 0.1064 +0 0.4564 +0 0.1189 +0 0.4788 +0 0.0785 +0 0.0926 +0 0.0658 +0 0.2366 +0 0.0877 +0 0.0511 +0 0.0557 +0 0.1890 +0 0.1857 +0 0.0494 +0 0.5685 +0 0.0517 +0 0.0631 +0 0.0730 +0 0.1193 +0 0.1262 +0 0.0979 +0 0.0848 +0 0.0843 +0 0.0517 +0 0.0891 +0 0.4475 +0 0.2385 +0 0.1761 +0 0.1235 +0 0.0698 +0 0.1956 +0 0.1338 +0 0.1046 +0 0.0479 +0 0.6452 +0 0.0594 +0 0.0400 +0 0.1307 +0 0.5992 +0 0.1385 +0 0.0441 +0 0.0635 +0 0.0605 +0 0.1966 +0 0.0524 +0 0.1117 +0 0.0668 +0 0.1587 +0 0.1412 +0 0.5723 +0 0.0422 +0 0.1304 +0 0.1890 +0 0.1283 +0 0.0709 +0 0.0929 +0 0.0688 +0 0.2598 +0 0.1519 +0 0.3822 +0 0.0673 +0 0.6235 +0 0.0968 +0 0.1007 +0 0.0986 +0 0.1344 +0 0.1004 +0 0.1606 +0 0.2190 +0 0.0919 +0 0.1531 +0 0.0683 +0 0.0940 +0 0.0780 +1 0.7722 +0 0.2835 +0 0.0701 +0 0.0751 +0 0.1919 +0 0.1719 +1 0.8061 +0 0.2226 +0 0.0726 +0 0.0974 +0 0.0887 +0 0.2020 +0 0.0869 +0 0.2182 +0 0.0330 +0 0.2019 +0 0.1099 +0 0.0788 +0 0.5624 +0 0.0485 +0 0.0969 +0 0.1755 +0 0.1162 +0 0.1543 +0 0.1703 +0 0.1983 +0 0.1805 +0 0.0502 +0 0.2065 +0 0.0947 +0 0.1068 +0 0.0812 +0 0.3735 +0 0.1463 +0 0.0852 +0 0.1576 +0 0.1488 +0 0.2625 +0 0.2649 +0 0.2420 +0 0.1147 +0 0.0784 +0 0.2160 +0 0.0745 +1 0.8022 +0 0.1174 +0 0.4389 +0 0.0861 +0 0.0932 +0 0.2021 +0 0.1919 +0 0.1365 +0 0.1094 +0 0.1993 +0 0.2802 +0 0.0660 +0 0.0806 +0 0.1446 +0 0.0798 +0 0.0517 +0 0.2329 +0 0.4955 +0 0.0445 +0 0.0608 +0 0.0760 +0 0.4293 +0 0.0944 +0 0.1023 +0 0.2490 +0 0.1303 +0 0.6148 +0 0.1720 +0 0.1210 +0 0.0502 +0 0.0461 +0 0.0728 +0 0.1682 +0 0.0862 +0 0.1478 +0 0.0758 +0 0.1094 +0 0.1573 +0 0.1105 +0 0.1848 +0 0.2076 +0 0.2452 +0 0.0568 +0 0.0889 +0 0.0415 +0 0.1863 +0 0.0444 +0 0.0535 +0 0.0776 +0 0.1300 +0 0.2405 +0 0.3442 +0 0.1223 +0 0.0574 +0 0.0898 +0 0.2104 +0 0.0960 +0 0.1414 +0 0.1297 +0 0.0680 +0 0.2795 +0 0.1475 +0 0.1846 +0 0.5351 +0 0.0691 +0 0.0720 +1 0.4491 +0 0.2842 +0 0.5143 +0 0.0739 +0 0.4426 +0 0.0443 +0 0.0499 +0 0.3080 +0 0.0712 +0 0.0836 +0 0.0513 +0 0.0727 +0 0.0910 +0 0.1627 +0 0.2058 +0 0.0561 +0 0.2458 +0 0.1768 +0 0.2256 +0 0.0634 +0 0.0391 +0 0.1823 +0 0.0583 +0 0.3437 +0 0.1278 +0 0.1061 +1 0.7518 +0 0.0662 +0 0.1168 +0 0.1852 +0 0.2958 +0 0.0469 +0 0.2059 +0 0.0844 +0 0.0777 +0 0.3004 +0 0.0879 +0 0.1573 +0 0.0713 +0 0.1539 +0 0.3556 +0 0.0663 +0 0.0634 +0 0.0976 +0 0.0348 +0 0.3742 +0 0.1770 +0 0.0401 +0 0.2407 +0 0.0986 +0 0.1102 +0 0.2228 +0 0.1033 +0 0.0882 +0 0.2645 +0 0.0892 +0 0.1472 +0 0.1373 +0 0.1777 +0 0.1380 +0 0.2093 +0 0.0838 +0 0.1879 +0 0.2246 +0 0.0471 +0 0.2745 +0 0.0685 +0 0.2386 +0 0.1617 +0 0.0595 +0 0.1856 +0 0.2212 +0 0.0817 +0 0.1530 +0 0.1301 +0 0.0791 +0 0.0638 +0 0.0678 +0 0.0663 +0 0.0984 +0 0.1058 +0 0.0892 +0 0.0479 +0 0.2632 +0 0.0803 +0 0.1846 +0 0.2019 +0 0.2937 +0 0.1150 +0 0.1347 +0 0.0552 +0 0.0908 +0 0.0422 +0 0.1203 +0 0.1428 +0 0.2769 +0 0.0547 +0 0.7026 +0 0.0756 +0 0.0864 +0 0.3010 +0 0.4436 +0 0.0716 +0 0.0740 +0 0.3726 +0 0.0578 +0 0.1537 +0 0.5456 +0 0.0778 +0 0.0506 +0 0.2412 +1 0.7606 +0 0.1814 +0 0.1027 +0 0.0678 +0 0.0818 +0 0.5417 +0 0.2400 +0 0.5184 +0 0.1138 +0 0.1202 +0 0.1175 +0 0.0425 +0 0.0728 +0 0.0819 +0 0.0789 +0 0.1729 +0 0.0501 +0 0.2191 +0 0.2137 +0 0.1238 +0 0.1874 +0 0.1250 +0 0.4109 +0 0.0913 +0 0.2612 +0 0.3279 +0 0.2357 +0 0.1564 +0 0.2164 +0 0.0607 +0 0.0367 +0 0.2035 +0 0.0839 +1 0.7831 +0 0.1503 +0 0.4318 +0 0.0384 +0 0.2876 +0 0.0417 +0 0.0605 +0 0.1178 +0 0.1139 +0 0.7435 +0 0.1184 +0 0.0716 +0 0.1032 +0 0.3715 +0 0.0933 +0 0.1048 +0 0.0895 +0 0.0836 +0 0.1289 +0 0.0967 +0 0.2693 +0 0.2902 +0 0.1424 +0 0.0613 +0 0.0354 +0 0.1534 +0 0.1557 +0 0.0910 +0 0.0421 +0 0.0836 +0 0.0412 +0 0.1225 +0 0.1283 +0 0.5217 +0 0.2282 +0 0.0641 +0 0.0513 +0 0.0539 +0 0.5690 +0 0.1264 +0 0.3301 +1 0.7774 +0 0.3764 +0 0.0844 +0 0.1457 +0 0.0932 +0 0.4012 +0 0.1179 +0 0.0442 +0 0.1367 +0 0.1031 +0 0.1617 +0 0.1477 +0 0.0916 +0 0.0397 +0 0.0912 +0 0.1224 +0 0.1127 +0 0.0893 +0 0.1827 +0 0.1137 +0 0.0598 +0 0.0563 +0 0.5424 +0 0.0522 +0 0.0734 +0 0.0696 +0 0.0475 +0 0.0552 +0 0.4154 +0 0.1450 +0 0.5288 +0 0.0715 +0 0.0783 +0 0.1314 +0 0.0645 +0 0.1378 +0 0.0789 +0 0.1182 +0 0.2267 +0 0.0362 +0 0.0841 +0 0.5307 +0 0.1081 +0 0.2145 +0 0.0489 +0 0.1930 +0 0.1158 +0 0.4609 +0 0.0697 +0 0.0753 +0 0.0773 +0 0.0702 +0 0.0612 +0 0.1175 +0 0.0705 +0 0.0738 +0 0.0749 +0 0.1100 +0 0.0867 +0 0.0927 +0 0.0542 +0 0.0726 +0 0.0765 +0 0.0696 +0 0.1080 +0 0.2278 +0 0.1798 +0 0.2733 +0 0.1104 +0 0.1523 +0 0.1287 +0 0.1424 +0 0.0452 +0 0.1646 +0 0.0917 +0 0.0853 +0 0.1393 +0 0.4866 +0 0.0359 +0 0.2950 +0 0.0694 +0 0.5686 +0 0.0947 +0 0.3469 +0 0.1465 +0 0.1810 +0 0.0820 +0 0.0818 +0 0.1786 +0 0.0898 +0 0.0884 +0 0.2130 +0 0.1426 +0 0.0974 +0 0.0366 +0 0.0355 +0 0.1203 +0 0.4890 +0 0.1732 +0 0.4774 +1 0.8191 +0 0.1380 +0 0.1285 +0 0.0585 +0 0.0648 +0 0.6669 +0 0.2047 +0 0.2929 +0 0.2335 +0 0.7215 +0 0.0461 +0 0.1087 +0 0.1557 +0 0.0579 +0 0.1355 +0 0.2755 +0 0.1753 +0 0.4642 +0 0.1383 +0 0.0674 +0 0.0768 +0 0.1025 +0 0.1578 +0 0.1544 +0 0.0396 +0 0.1908 +0 0.0991 +0 0.1367 +0 0.3387 +0 0.0854 +0 0.5487 +0 0.3666 +0 0.0460 +0 0.0904 +0 0.0867 +0 0.1279 +0 0.0787 +0 0.0856 +0 0.1463 +0 0.0765 +0 0.1377 +0 0.0661 +0 0.1423 +0 0.0965 +0 0.0664 +0 0.0647 +0 0.0863 +0 0.0425 +0 0.1010 +0 0.0765 +0 0.1045 +0 0.1560 +0 0.0772 +0 0.1189 +0 0.1016 +0 0.2690 +0 0.1576 +0 0.1242 +0 0.1674 +0 0.0411 +0 0.1549 +0 0.0762 +0 0.1081 +0 0.0476 +0 0.1652 +0 0.0601 +0 0.0720 +0 0.1129 +0 0.0744 +0 0.0647 +0 0.0616 +0 0.3921 +0 0.0428 +0 0.1557 +0 0.1145 +0 0.1911 +0 0.0570 +0 0.0469 +0 0.0733 +0 0.2976 +0 0.0557 +0 0.1469 +0 0.1232 +0 0.1101 +0 0.2027 +0 0.1249 +0 0.0830 +0 0.2224 +0 0.0770 +0 0.1359 +0 0.1260 +0 0.2400 +0 0.1409 +0 0.6235 +0 0.6168 +0 0.2601 +0 0.2516 +0 0.0859 +0 0.5102 +0 0.0940 +0 0.2020 +0 0.1954 +0 0.1967 +0 0.1261 +0 0.3101 +0 0.4502 +0 0.1636 +0 0.4167 +0 0.1515 +0 0.0672 +0 0.2953 +0 0.1054 +0 0.1567 +0 0.0656 +0 0.0822 +0 0.7419 +0 0.0637 +0 0.2376 +0 0.0753 +0 0.0786 +0 0.1100 +0 0.0699 +0 0.2204 +0 0.1584 +0 0.0706 +0 0.0424 +0 0.1359 +0 0.0882 +0 0.1795 +0 0.1905 +0 0.1206 +0 0.0590 +0 0.1185 +0 0.1385 +0 0.0737 +0 0.0883 +0 0.1439 +0 0.0473 +0 0.0528 +0 0.0452 +0 0.1350 +0 0.1650 +0 0.0706 +0 0.1126 +0 0.1273 +0 0.1669 +0 0.0933 +0 0.0850 +0 0.1212 +0 0.1917 +0 0.4446 +0 0.2758 +0 0.0674 +0 0.1334 +0 0.0933 +0 0.0833 +0 0.0951 +0 0.4352 +0 0.2955 +0 0.1427 +0 0.2051 +0 0.1543 +0 0.1679 +0 0.0675 +0 0.1616 +0 0.2337 +0 0.1003 +0 0.0389 +0 0.1223 +0 0.1357 +1 0.7758 +0 0.2062 +0 0.2221 +0 0.1285 +0 0.0598 +0 0.0894 +1 0.7722 +0 0.0524 +0 0.2895 +0 0.2606 +0 0.1262 +0 0.2479 +0 0.0760 +0 0.0785 +0 0.0544 +0 0.1925 +0 0.3104 +0 0.0782 +0 0.1982 +0 0.2900 +0 0.0975 +0 0.1709 +0 0.2540 +0 0.0908 +0 0.4176 +0 0.1326 +0 0.7123 +0 0.0592 +0 0.1620 +0 0.2059 +0 0.0806 +0 0.1414 +0 0.1276 +0 0.0887 +0 0.0656 +1 0.7962 +0 0.1089 +0 0.1737 +0 0.1024 +0 0.1620 +0 0.6379 +0 0.0709 +0 0.0482 +0 0.1261 +0 0.1807 +0 0.1225 +0 0.0538 +0 0.2369 +0 0.0787 +0 0.1314 +0 0.1441 +0 0.1294 +0 0.0893 +0 0.2161 +0 0.1190 +0 0.0846 +0 0.4878 +0 0.2428 +0 0.0599 +0 0.0814 +0 0.0524 +0 0.0544 +0 0.2042 +0 0.1114 +0 0.5871 +0 0.1745 +0 0.0825 +0 0.1047 +0 0.1126 +0 0.1073 +1 0.8880 +0 0.2481 +0 0.1707 +0 0.1056 +0 0.0911 +0 0.1060 +0 0.1316 +0 0.1051 +0 0.2992 +0 0.1242 +0 0.0867 +0 0.3260 +0 0.1683 +0 0.2843 +0 0.1158 +0 0.0694 +0 0.2705 +0 0.0852 +0 0.0631 +0 0.1563 +0 0.3131 +0 0.0547 +0 0.1869 +0 0.0689 +0 0.0540 +0 0.0488 +0 0.2506 +0 0.5291 +0 0.0773 +0 0.0696 +0 0.0938 +0 0.1666 +0 0.2602 +0 0.1043 +0 0.1252 +0 0.0868 +0 0.1279 +0 0.2979 +0 0.0659 +0 0.2416 +0 0.1388 +0 0.0460 +0 0.0756 +0 0.3071 +0 0.1051 +0 0.1987 +0 0.1004 +0 0.1190 +0 0.1397 +0 0.2337 +0 0.5739 +0 0.1879 +0 0.0893 +0 0.1819 +1 0.8719 +0 0.3474 +0 0.1111 +0 0.1535 +0 0.2440 +0 0.0363 +0 0.0562 +0 0.2617 +0 0.1855 +0 0.0616 +0 0.1301 +0 0.0465 +0 0.1455 +0 0.1142 +0 0.0903 +0 0.1692 +0 0.1052 +0 0.0989 +0 0.1297 +0 0.2767 +0 0.1993 +0 0.0813 +0 0.4075 +0 0.0469 +0 0.1219 +0 0.1394 +0 0.1130 +0 0.1262 +0 0.2043 +0 0.4694 +0 0.1206 +0 0.0912 +0 0.0435 +0 0.1164 +0 0.0890 +0 0.0566 +0 0.0766 +0 0.1644 +0 0.1240 +0 0.0408 +0 0.1378 +0 0.0533 +0 0.0498 +0 0.5233 +0 0.0890 +0 0.1056 +0 0.0610 +0 0.1411 +0 0.0596 +0 0.2585 +0 0.2413 +0 0.0977 +0 0.0996 +0 0.1269 +0 0.1173 +0 0.1648 +0 0.0855 +0 0.1895 +0 0.0723 +0 0.2225 +0 0.1537 +0 0.0553 +0 0.1360 +0 0.0943 +0 0.0780 +0 0.0624 +0 0.6461 +0 0.0846 +0 0.0558 +0 0.5140 +0 0.0848 +0 0.2342 +0 0.7188 +0 0.1690 +0 0.0614 +0 0.3062 +0 0.0652 +0 0.1935 +0 0.0548 +0 0.0792 +0 0.1091 +0 0.1141 +0 0.1195 +0 0.1365 +0 0.0626 +0 0.1338 +0 0.1070 +0 0.7312 +0 0.1177 +0 0.3161 +0 0.0893 +0 0.2443 +0 0.1114 +0 0.1362 +0 0.1374 +0 0.2547 +0 0.0541 +0 0.1935 +0 0.0877 +0 0.1360 +0 0.1331 +0 0.0717 +0 0.2426 +0 0.0754 +0 0.0945 +0 0.0782 +0 0.0605 +0 0.1185 +0 0.0848 +0 0.0860 +0 0.1357 +0 0.0545 +0 0.0944 +0 0.1553 +0 0.3798 +0 0.1084 +0 0.0696 +0 0.0660 +0 0.1655 +0 0.1631 +0 0.2008 +0 0.2831 +0 0.1225 +0 0.0782 +0 0.4650 +0 0.0744 +0 0.1720 +0 0.2015 +0 0.1714 +0 0.1305 +0 0.0390 +0 0.0549 +0 0.0983 +0 0.3223 +0 0.1110 +0 0.1844 +0 0.1020 +0 0.2374 +0 0.0920 +0 0.1051 +0 0.0805 +0 0.6625 +0 0.0907 +0 0.3676 +0 0.0840 +0 0.0808 +0 0.1138 +0 0.0494 +0 0.1763 +0 0.2496 +0 0.1110 +0 0.0791 +0 0.1299 +0 0.0676 +0 0.1933 +0 0.2466 +0 0.0749 +0 0.0789 +0 0.0924 +0 0.1471 +0 0.1355 +0 0.1884 +0 0.0589 +0 0.0613 +0 0.3698 +0 0.1455 +0 0.0560 +0 0.1137 +0 0.1808 +0 0.2065 +0 0.0901 +0 0.7434 +0 0.0570 +0 0.0892 +0 0.0456 +0 0.0992 +0 0.1012 +0 0.3436 +0 0.0699 +0 0.0848 +0 0.1485 +0 0.0752 +0 0.0498 +0 0.2609 +0 0.0606 +0 0.1510 +0 0.0922 +0 0.1797 +0 0.1932 +1 0.8186 +0 0.0606 +0 0.1910 +0 0.0472 +0 0.1293 +0 0.1116 +0 0.0928 +0 0.1079 +0 0.0754 +0 0.1568 +0 0.0686 +0 0.0821 +0 0.1036 +0 0.1038 +0 0.2306 +0 0.2167 +0 0.0573 +0 0.0804 +0 0.0567 +0 0.0810 +0 0.0596 +0 0.1616 +0 0.3068 +0 0.0697 +0 0.1075 +0 0.5588 +0 0.1617 +0 0.0635 +0 0.1728 +0 0.1489 +0 0.0509 +0 0.0508 +0 0.0740 +0 0.1019 +0 0.1073 +0 0.1596 +0 0.1232 +0 0.1242 +0 0.1840 +0 0.0819 +0 0.1942 +0 0.1041 +0 0.1673 +0 0.0674 +0 0.0670 +0 0.1344 +0 0.0731 +0 0.0635 +0 0.2824 +0 0.0480 +0 0.1616 +0 0.1008 +0 0.5198 +0 0.1252 +0 0.0730 +0 0.0637 +0 0.0505 +0 0.3411 +0 0.4191 +0 0.1488 +0 0.0507 +0 0.0393 +0 0.1552 +0 0.1548 +0 0.1256 +0 0.1598 +0 0.0608 +0 0.0553 +0 0.2170 +0 0.0750 +0 0.0774 +0 0.0977 +1 0.8538 +0 0.4255 +0 0.1524 +0 0.0752 +0 0.1088 +0 0.0391 +0 0.1115 +0 0.0673 +0 0.0750 +0 0.1649 +0 0.1082 +0 0.1127 +0 0.0580 +0 0.1364 +0 0.3833 +0 0.1305 +0 0.2053 +0 0.1188 +0 0.0660 +0 0.0833 +0 0.2101 +0 0.1067 +0 0.2144 +0 0.1519 +0 0.0490 +0 0.3590 +0 0.1317 +0 0.2547 +0 0.1981 +0 0.3711 +0 0.1534 +0 0.1347 +0 0.1342 +0 0.0821 +0 0.0660 +0 0.1417 +0 0.0833 +0 0.0613 +0 0.1801 +0 0.0769 +0 0.0509 +0 0.0549 +0 0.0543 +0 0.0479 +0 0.1629 +0 0.0401 +0 0.0814 +0 0.1611 +0 0.0781 +0 0.1600 +0 0.0478 +0 0.0689 +0 0.1879 +0 0.1286 +0 0.0972 +0 0.0332 +0 0.2507 +0 0.0860 +0 0.0712 +0 0.1652 +0 0.2385 +0 0.0715 +0 0.0542 +0 0.1958 +0 0.0979 +0 0.2434 +0 0.0752 +0 0.1545 +0 0.0925 +0 0.1311 +0 0.1261 +0 0.1576 +0 0.1657 +0 0.1877 +0 0.3582 +0 0.0796 +0 0.1014 +0 0.0963 +0 0.2643 +0 0.1747 +0 0.1589 +0 0.0587 +0 0.2994 +0 0.1576 +0 0.1703 +0 0.1442 +0 0.0623 +0 0.2475 +0 0.1004 +1 0.8111 +0 0.0426 +0 0.0813 +0 0.1074 +0 0.1494 +0 0.0714 +0 0.3411 +0 0.1112 +0 0.0876 +0 0.0398 +0 0.1091 +0 0.1186 +0 0.0864 +0 0.0607 +0 0.0751 +0 0.0463 +0 0.0509 +0 0.1261 +0 0.2277 +0 0.0938 +0 0.0849 +0 0.1015 +0 0.1512 +0 0.2160 +0 0.0907 +0 0.0865 +0 0.1029 +0 0.1943 +0 0.0553 +0 0.1435 +0 0.1713 +0 0.1016 +0 0.0978 +0 0.0358 +0 0.0386 +0 0.0998 +0 0.1894 +0 0.0614 +0 0.0453 +0 0.1128 +0 0.0570 +0 0.0737 +0 0.2814 +0 0.1639 +0 0.0464 +0 0.1279 +0 0.2597 +0 0.0626 +0 0.0827 +0 0.1574 +0 0.0664 +0 0.1451 +0 0.0557 +0 0.1788 +0 0.3561 +0 0.0795 +0 0.2599 +0 0.0959 +0 0.0736 +0 0.1044 +0 0.1184 +0 0.1267 +0 0.1619 +0 0.0780 +0 0.0466 +0 0.1246 +0 0.0663 +0 0.2379 +0 0.0980 +0 0.1130 +0 0.3083 +0 0.0723 +0 0.1407 +0 0.0483 +0 0.0670 +0 0.0935 +0 0.0921 +0 0.0793 +0 0.0719 +0 0.0868 +0 0.0575 +0 0.0861 +0 0.4009 +0 0.5085 +0 0.0608 +0 0.1068 +0 0.0561 +0 0.0530 +0 0.1685 +0 0.3960 +0 0.1299 +0 0.0445 +0 0.1444 +0 0.0953 +0 0.0957 +0 0.2386 +0 0.2639 +0 0.0884 +0 0.0715 +0 0.1146 +0 0.0847 +0 0.1046 +0 0.0623 +0 0.1197 +0 0.2187 +0 0.1431 +0 0.0703 +0 0.2825 +0 0.1268 +0 0.1828 +0 0.0962 +0 0.1847 +0 0.1343 +0 0.0796 +0 0.0493 +0 0.0646 +0 0.0799 +0 0.0512 +0 0.0494 +0 0.0714 +0 0.0495 +0 0.0706 +0 0.0652 +0 0.0582 +0 0.0864 +0 0.0681 +0 0.6591 +0 0.0364 +0 0.0727 +0 0.2048 +0 0.1856 +0 0.0966 +0 0.0901 +0 0.1779 +0 0.1213 +0 0.3529 +0 0.1415 +0 0.1074 +0 0.0762 +0 0.0753 +0 0.0944 +0 0.1005 +0 0.1472 +0 0.1179 +0 0.1633 +0 0.1191 +0 0.0660 +0 0.5964 +0 0.1108 +0 0.2038 +0 0.0875 +0 0.1007 +0 0.3597 +0 0.1767 +0 0.0417 +0 0.0688 +0 0.0565 +0 0.2750 +0 0.0802 +0 0.0740 +0 0.0814 +0 0.0616 +0 0.0521 +0 0.0714 +0 0.2062 +0 0.0553 +0 0.0730 +0 0.0898 +0 0.0875 +0 0.1258 +0 0.0940 +0 0.0881 +0 0.1666 +0 0.4608 +0 0.1196 +0 0.2090 +0 0.2187 +0 0.0659 +0 0.1091 +0 0.0531 +0 0.1659 +0 0.4961 +0 0.0826 +0 0.0704 +0 0.0981 +0 0.1194 +0 0.2286 +0 0.0938 +0 0.1894 +0 0.1688 +0 0.0805 +0 0.0963 +0 0.0814 +0 0.1085 +0 0.1446 +0 0.2240 +0 0.1653 +0 0.1634 +0 0.2199 +0 0.0971 +0 0.1025 +0 0.2777 +0 0.2769 +0 0.0599 +0 0.0698 +0 0.0984 +0 0.1265 +0 0.0923 +0 0.1606 +0 0.0812 +0 0.0996 +0 0.1730 +0 0.3568 +0 0.0475 +0 0.1120 +0 0.0456 +0 0.0606 +0 0.0529 +0 0.0652 +0 0.1732 +0 0.2467 +0 0.0594 +0 0.0903 +0 0.0543 +0 0.1625 +0 0.1205 +0 0.0904 +0 0.0870 +0 0.4313 +0 0.1578 +0 0.0701 +0 0.0645 +0 0.0968 +0 0.2659 +0 0.1035 +0 0.1794 +0 0.1164 +0 0.0453 +0 0.1482 +0 0.0964 +0 0.1729 +0 0.0882 +0 0.0632 +0 0.2420 +0 0.0379 +0 0.2777 +0 0.1118 +0 0.1973 +0 0.1120 +0 0.1402 +0 0.1090 +0 0.1117 +0 0.1283 +0 0.0705 +0 0.1532 +0 0.0992 +0 0.0683 +0 0.4012 +0 0.0810 +0 0.2064 +0 0.0586 +0 0.0467 +0 0.1116 +0 0.5056 +0 0.1565 +0 0.1072 +0 0.1164 +0 0.0813 +0 0.1624 +0 0.0854 +0 0.1545 +0 0.3867 +0 0.5170 +0 0.0818 +0 0.1076 +0 0.1154 +0 0.2101 +0 0.1327 +0 0.1294 +0 0.7267 +1 0.8023 +0 0.0760 +0 0.1738 +0 0.0509 +0 0.1439 +0 0.0915 +0 0.7377 +0 0.0588 +0 0.0747 +0 0.2584 +0 0.2040 +0 0.0389 +0 0.0928 +0 0.3638 +0 0.0706 +0 0.0914 +0 0.1617 +0 0.1658 +0 0.1328 +0 0.1006 +0 0.0856 +0 0.0830 +0 0.0451 +0 0.0609 +0 0.1371 +0 0.0806 +0 0.1567 +0 0.0547 +0 0.0736 +0 0.1752 +0 0.2094 +0 0.4598 +0 0.0435 +0 0.1345 +0 0.0729 +0 0.2105 +0 0.1764 +0 0.1794 +1 0.8122 +0 0.1188 +0 0.1514 +0 0.4369 +0 0.2609 +0 0.0780 +0 0.2761 +0 0.4094 +0 0.1636 +0 0.1095 +0 0.0807 +0 0.2253 +0 0.2532 +0 0.3050 +0 0.2617 +0 0.1379 +0 0.0487 +0 0.1145 +0 0.1808 +0 0.2778 +0 0.0769 +0 0.1089 +0 0.1622 +0 0.2349 +0 0.3279 +0 0.1611 +0 0.1443 +0 0.0883 +1 0.8539 +0 0.1408 +1 0.8186 +0 0.1368 +0 0.0557 +0 0.0847 +0 0.1089 +0 0.2063 +0 0.0884 +0 0.1009 +0 0.1892 +0 0.0547 +0 0.1947 +0 0.1772 +0 0.0499 +0 0.1124 +0 0.1290 +0 0.0420 +0 0.6979 +0 0.0652 +0 0.1756 +0 0.0937 +1 0.8282 +0 0.0614 +0 0.1226 +0 0.4756 +0 0.0703 +0 0.1409 +0 0.4451 +0 0.1001 +0 0.1662 +0 0.1319 +0 0.0669 +0 0.1377 +0 0.0467 +0 0.0664 +0 0.0540 +0 0.2606 +0 0.0675 +0 0.2289 +0 0.2130 +0 0.0679 +0 0.3836 +0 0.0553 +0 0.2017 +0 0.1181 +1 0.7537 +0 0.0512 +0 0.0471 +0 0.1045 +0 0.6850 +0 0.1063 +0 0.0826 +0 0.1263 +0 0.1257 +0 0.2771 +0 0.0942 +0 0.0739 +0 0.0610 +0 0.0737 +0 0.0859 +0 0.3739 +0 0.1240 +0 0.0751 +0 0.1586 +0 0.0902 +0 0.0568 +0 0.1549 +0 0.1388 +0 0.0615 +0 0.0797 +0 0.0441 +0 0.0988 +0 0.1275 +0 0.0889 +0 0.1679 +0 0.1531 +0 0.6731 +0 0.1238 +0 0.1348 +0 0.1704 +0 0.0926 +0 0.3470 +0 0.0710 +0 0.0484 +0 0.1027 +0 0.3207 +0 0.0896 +0 0.0957 +0 0.0501 +0 0.1056 +0 0.0875 +0 0.0702 +0 0.0950 +0 0.0811 +0 0.3503 +0 0.1474 +0 0.0985 +0 0.0655 +0 0.5679 +0 0.1260 +0 0.1669 +0 0.0531 +0 0.0458 +0 0.1295 +0 0.1885 +0 0.1606 +0 0.0861 +0 0.0697 +0 0.1745 +0 0.4566 +0 0.1018 +0 0.3766 +0 0.0581 +0 0.0442 +0 0.1599 +0 0.1036 +0 0.0799 +0 0.1120 +0 0.0774 +0 0.0793 +0 0.7477 +0 0.1300 +0 0.0886 +0 0.2159 +0 0.0963 +0 0.0635 +0 0.0660 +0 0.0652 +0 0.1017 +1 0.8245 +0 0.1012 +0 0.2489 +0 0.0903 +0 0.0858 +0 0.0446 +0 0.0775 +0 0.0570 +0 0.2026 +0 0.2756 +0 0.1542 +0 0.1383 +0 0.0881 +0 0.2449 +0 0.1482 +0 0.1177 +0 0.0524 +0 0.1557 +1 0.7764 +0 0.1360 +0 0.0753 +0 0.0559 +0 0.1048 +0 0.1046 +0 0.0421 +0 0.1112 +0 0.1943 +0 0.1746 +0 0.2416 +0 0.0987 +0 0.0776 +0 0.1039 +0 0.1181 +0 0.0658 +0 0.0884 +0 0.1699 +0 0.0886 +0 0.1235 +0 0.0917 +0 0.1580 +0 0.1385 +0 0.0938 +0 0.0807 +0 0.1621 +0 0.1294 +0 0.0478 +0 0.1173 +0 0.0970 +0 0.2388 +0 0.0742 +0 0.1606 +0 0.1730 +0 0.0484 +0 0.2216 +0 0.0443 +0 0.1098 +0 0.1254 +0 0.1610 +0 0.4190 +0 0.0833 +0 0.0524 +0 0.0823 +0 0.1696 +0 0.0851 +0 0.2192 +0 0.0421 +0 0.1913 +0 0.0490 +0 0.0670 +0 0.0936 +0 0.1655 +0 0.1570 +0 0.3256 +0 0.0854 +0 0.1157 +0 0.0639 +0 0.1441 +0 0.0910 +0 0.0676 +0 0.6889 +0 0.0682 +0 0.2705 +0 0.1073 +0 0.1964 +0 0.1015 +0 0.0910 +0 0.0652 +0 0.5034 +0 0.0671 +0 0.1077 +0 0.1623 +0 0.2627 +0 0.0999 +1 0.8717 +0 0.1829 +0 0.1062 +0 0.0756 +0 0.0502 +0 0.0585 +0 0.0513 +0 0.1032 +0 0.1793 +0 0.4574 +0 0.0637 +0 0.0698 +0 0.0591 +0 0.0558 +0 0.0604 +0 0.0675 +0 0.2506 +0 0.1375 +0 0.4057 +0 0.4053 +0 0.1673 +0 0.1893 +0 0.2053 +0 0.1463 +0 0.1007 +0 0.1913 +0 0.1225 +0 0.0485 +0 0.2026 +0 0.1069 +0 0.1197 +0 0.0822 +0 0.1291 +0 0.0977 +0 0.0711 +0 0.0387 +0 0.1325 +1 0.8422 +0 0.0905 +0 0.7214 +0 0.0842 +0 0.0929 +0 0.1241 +0 0.1065 +0 0.0441 +0 0.0905 +0 0.0831 +0 0.1052 +0 0.2959 +0 0.2570 +0 0.1860 +0 0.0653 +0 0.2937 +0 0.0621 +1 0.8289 +0 0.1246 +0 0.2547 +0 0.1858 +0 0.2252 +0 0.1725 +0 0.0340 +0 0.2073 +0 0.0868 +0 0.0775 +0 0.1234 +0 0.1483 +0 0.1872 +0 0.0549 +0 0.0428 +0 0.0692 +0 0.0773 +0 0.0636 +0 0.0388 +0 0.1481 +0 0.0966 +0 0.1393 +0 0.1484 +0 0.1154 +0 0.3568 +0 0.0757 +0 0.0778 +0 0.7463 +0 0.0662 +0 0.0648 +0 0.0626 +0 0.1174 +0 0.1030 +0 0.1437 +0 0.0559 +0 0.0503 +0 0.4908 +0 0.0879 +0 0.0965 +0 0.0974 +0 0.1238 +0 0.3293 +0 0.1673 +0 0.0729 +0 0.2485 +0 0.0936 +0 0.1675 +0 0.1415 +0 0.1098 +0 0.2569 +0 0.0450 +0 0.1664 +0 0.3888 +0 0.0663 +0 0.0864 +0 0.1449 +0 0.1808 +0 0.0552 +0 0.0577 +0 0.0861 +0 0.7313 +0 0.1974 +0 0.1268 +0 0.1006 +0 0.1922 +0 0.0609 +0 0.1494 +0 0.1747 +0 0.1205 +0 0.0814 +0 0.2007 +0 0.1065 +0 0.1168 +0 0.2320 +0 0.0930 +0 0.1173 +0 0.1200 +0 0.1612 +0 0.1392 +0 0.0662 +0 0.0826 +0 0.1963 +0 0.0795 +0 0.1377 +0 0.0847 +0 0.1184 +0 0.1972 +0 0.2231 +0 0.0550 +0 0.1321 +0 0.1477 +0 0.0455 +0 0.0650 +0 0.0843 +0 0.2066 +0 0.3345 +0 0.0710 +0 0.2414 +0 0.0901 +0 0.4816 +0 0.5300 +0 0.0788 +0 0.0550 +0 0.0610 +0 0.4279 +0 0.1664 +1 0.8074 +0 0.0878 +0 0.1994 +0 0.0856 +0 0.1271 +0 0.1252 +0 0.0611 +0 0.1953 +1 0.7856 +0 0.0652 +0 0.0716 +0 0.0522 +0 0.0903 +0 0.1130 +0 0.1192 +0 0.0426 +0 0.2090 +0 0.0859 +0 0.0588 +0 0.0665 +0 0.2145 +0 0.0492 +0 0.0673 +0 0.3226 +1 0.7916 +0 0.1525 +0 0.0502 +0 0.0658 +0 0.1387 +0 0.0727 +1 0.7588 +0 0.1092 +0 0.0781 +0 0.5062 +0 0.1213 +0 0.3572 +0 0.0542 +0 0.0947 +0 0.0478 +0 0.0552 +0 0.0669 +0 0.1206 +0 0.1460 +0 0.1108 +0 0.0554 +0 0.2141 +0 0.5471 +0 0.2110 +0 0.0778 +0 0.1424 +0 0.0521 +0 0.0638 +0 0.1210 +0 0.3732 +0 0.3161 +0 0.0317 +0 0.1075 +0 0.0617 +0 0.1080 +0 0.1374 +0 0.1493 +0 0.1048 +0 0.3335 +0 0.1555 +0 0.1134 +0 0.0483 +0 0.5827 +0 0.2012 +0 0.1415 +0 0.0865 +1 0.7725 +0 0.1237 +0 0.0573 +0 0.0585 +0 0.7092 +0 0.1517 +0 0.0595 +0 0.1114 +0 0.1673 +0 0.1836 +0 0.0794 +0 0.4532 +0 0.5003 +0 0.0912 +0 0.1169 +0 0.2036 +0 0.1434 +0 0.0897 +0 0.1459 +1 0.7611 +0 0.2230 +0 0.0961 +0 0.1994 +0 0.0818 +0 0.1764 +0 0.2199 +0 0.0747 +0 0.0965 +0 0.1041 +0 0.0770 +0 0.3029 +0 0.0788 +0 0.1279 +0 0.1089 +0 0.0972 +0 0.2422 +0 0.1757 +0 0.0873 +0 0.0953 +0 0.7019 +0 0.2887 +0 0.0822 +0 0.1050 +0 0.1042 +0 0.1328 +0 0.4559 +0 0.3304 +0 0.0337 +0 0.0956 +0 0.1346 +0 0.0840 +0 0.3291 +0 0.0860 +0 0.0705 +0 0.6677 +0 0.2028 +0 0.1282 +0 0.3260 +0 0.0806 +0 0.0603 +0 0.1307 +0 0.2004 +0 0.1474 +0 0.1378 +0 0.2068 +0 0.1460 +0 0.0661 +0 0.2007 +0 0.1623 +1 0.8554 +0 0.1510 +0 0.0802 +0 0.0878 +0 0.0491 +0 0.1669 +0 0.1868 +0 0.0860 +0 0.1467 +0 0.2752 +0 0.2376 +0 0.0562 +0 0.1227 +0 0.0752 +0 0.0851 +0 0.1063 +0 0.0593 +1 0.8582 +0 0.0792 +0 0.1152 +0 0.0710 +0 0.0880 +0 0.1558 +0 0.1628 +0 0.1006 +0 0.1187 +0 0.0818 +0 0.0871 +0 0.1251 +0 0.3417 +0 0.1506 +0 0.1194 +0 0.7077 +0 0.0858 +0 0.1929 +0 0.1156 +0 0.1468 +0 0.1677 +0 0.0504 +0 0.1263 +0 0.1151 +0 0.0687 +0 0.0614 +0 0.0645 +0 0.2475 +0 0.1187 +0 0.1228 +0 0.2028 +0 0.0635 +0 0.0881 +0 0.0675 +0 0.1236 +0 0.2322 +0 0.1436 +0 0.1966 +0 0.0638 +0 0.0514 +0 0.1145 +0 0.0749 +0 0.3586 +0 0.1471 +0 0.1584 +0 0.1074 +0 0.1053 +0 0.2228 +0 0.0739 +0 0.0446 +1 0.7766 +0 0.0980 +0 0.0943 +0 0.1079 +0 0.0425 +0 0.1026 +0 0.1636 +0 0.1037 +0 0.0623 +0 0.1589 +0 0.0767 +0 0.2677 +0 0.0734 +0 0.0466 +0 0.1820 +0 0.1073 +0 0.1541 +0 0.1731 +0 0.1190 +0 0.0969 +0 0.2996 +0 0.0988 +0 0.1569 +0 0.0860 +0 0.1318 +0 0.0528 +0 0.1428 +0 0.1232 +0 0.2345 +0 0.1518 +0 0.3481 +0 0.0354 +0 0.0873 +0 0.1408 +0 0.0841 +0 0.0754 +0 0.1300 +0 0.0997 +0 0.0744 +0 0.1132 +1 0.8192 +0 0.0769 +0 0.1042 +0 0.1732 +0 0.0477 +0 0.1347 +0 0.2607 +0 0.0979 +0 0.0300 +0 0.1836 +0 0.0917 +0 0.0582 +0 0.0878 +0 0.2347 +0 0.2523 +0 0.0696 +0 0.6303 +0 0.4299 +0 0.5938 +0 0.1595 +0 0.1828 +0 0.0947 +0 0.1720 +0 0.1651 +0 0.1131 +0 0.5072 +0 0.2134 +0 0.1806 +0 0.2010 +0 0.0436 +0 0.0907 +0 0.1229 +0 0.0577 +0 0.1152 +0 0.0729 +0 0.0409 +0 0.1510 +0 0.1640 +0 0.3597 +0 0.4782 +0 0.0620 +0 0.5061 +0 0.0508 +0 0.1789 +0 0.0927 +0 0.1998 +0 0.1870 +0 0.0656 +1 0.8275 +0 0.1073 +0 0.1136 +0 0.1196 +0 0.2173 +0 0.1004 +0 0.0637 +0 0.1157 +0 0.0995 +0 0.0987 +0 0.1467 +0 0.1333 +0 0.0951 +0 0.0524 +0 0.0481 +0 0.0648 +0 0.0809 +0 0.2341 +0 0.1039 +0 0.0733 +0 0.1435 +0 0.0535 +0 0.2158 +0 0.2333 +0 0.0842 +0 0.1140 +0 0.0879 +0 0.1712 +0 0.2162 +0 0.1324 +0 0.0651 +0 0.1535 +0 0.1609 +0 0.0797 +0 0.0577 +0 0.1601 +0 0.1255 +0 0.1227 +0 0.0670 +0 0.1965 +0 0.0992 +0 0.0687 +0 0.0890 +0 0.2322 +0 0.0533 +0 0.0995 +0 0.0494 +0 0.0718 +0 0.0831 +0 0.2054 +0 0.2077 +0 0.0955 +0 0.3060 +0 0.2349 +0 0.0767 +0 0.1525 +0 0.1167 +0 0.0738 +0 0.1156 +0 0.0770 +0 0.0895 +0 0.3262 +0 0.1109 +0 0.1241 +1 0.8518 +0 0.0586 +0 0.1714 +0 0.0996 +0 0.1074 +0 0.2223 +0 0.1474 +0 0.0832 +0 0.0545 +0 0.0619 +1 0.8171 +0 0.1048 +0 0.0378 +0 0.2346 +0 0.2037 +0 0.1037 +0 0.0412 +0 0.0559 +0 0.2148 +0 0.0644 +0 0.0947 +0 0.1283 +0 0.0465 +0 0.1298 +0 0.0954 +0 0.2653 +0 0.1359 +0 0.0809 +0 0.1873 +0 0.0899 +0 0.2131 +0 0.0815 +0 0.0792 +0 0.2906 +0 0.2193 +0 0.0953 +0 0.0696 +0 0.0752 +0 0.2327 +0 0.1683 +0 0.1540 +0 0.1436 +0 0.1037 +0 0.3811 +0 0.2663 +0 0.1422 +0 0.3659 +0 0.2355 +0 0.2072 +0 0.4039 +0 0.0939 +0 0.1210 +0 0.1672 +0 0.5696 +0 0.0780 +0 0.2545 +0 0.3837 +0 0.2351 +0 0.1281 +0 0.0572 +0 0.2242 +0 0.1679 +0 0.1488 +0 0.1537 +0 0.0527 +0 0.2298 +0 0.1998 +0 0.1126 +0 0.0884 +0 0.0761 +0 0.3339 +0 0.0513 +0 0.0348 +0 0.1810 +0 0.1226 +0 0.0894 +0 0.0830 +0 0.1403 +0 0.2946 +0 0.2296 +0 0.0688 +0 0.2175 +0 0.1134 +0 0.1152 +0 0.0513 +0 0.0895 +0 0.1478 +0 0.1032 +0 0.2987 +0 0.1012 +0 0.0783 +0 0.1499 +0 0.1421 +0 0.0903 +0 0.0929 +0 0.1121 +0 0.1389 +0 0.0564 +0 0.2243 +0 0.1120 +0 0.1023 +0 0.1032 +0 0.1210 +0 0.0590 +0 0.0670 +0 0.1394 +0 0.0725 +0 0.1121 +0 0.1507 +0 0.0914 +0 0.2937 +0 0.0952 +0 0.0711 +0 0.2305 +0 0.0616 +0 0.1474 +0 0.6640 +0 0.0711 +0 0.1262 +0 0.0509 +0 0.2487 +0 0.0744 +0 0.5015 +0 0.0894 +0 0.2588 +0 0.1767 +0 0.0883 +0 0.0771 +0 0.0991 +0 0.0915 +0 0.1628 +0 0.4716 +0 0.0901 +0 0.0429 +0 0.2043 +0 0.1167 +0 0.0700 +0 0.0906 +0 0.1289 +0 0.2200 +0 0.0657 +0 0.0731 +0 0.0808 +0 0.1293 +0 0.1308 +0 0.0526 +0 0.0702 +0 0.0352 +0 0.1241 +0 0.0626 +0 0.1143 +0 0.2437 +0 0.1217 +1 0.8629 +0 0.0357 +0 0.1126 +0 0.1159 +0 0.0724 +0 0.0786 +0 0.1488 +0 0.0814 +0 0.1099 +0 0.0642 +0 0.0688 +0 0.4913 +0 0.1601 +0 0.6416 +0 0.1361 +0 0.1563 +0 0.0943 +0 0.5523 +0 0.0945 +0 0.0784 +0 0.0948 +0 0.2106 +0 0.1765 +0 0.6595 +0 0.0473 +0 0.0751 +0 0.2012 +0 0.0404 +0 0.1180 +0 0.0660 +0 0.1000 +0 0.0783 +0 0.0647 +0 0.1478 +0 0.1078 +0 0.0701 +0 0.1753 +0 0.0827 +0 0.0397 +0 0.2620 +0 0.2844 +0 0.1080 +0 0.4587 +0 0.0665 +0 0.2518 +0 0.1360 +0 0.1149 +0 0.1084 +0 0.0983 +0 0.0839 +0 0.0901 +0 0.0916 +0 0.0646 +0 0.1059 +0 0.0667 +0 0.1027 +0 0.1046 +0 0.3122 +0 0.1230 +0 0.1361 +0 0.2079 +0 0.4341 +0 0.0634 +0 0.0627 +0 0.1184 +0 0.1416 +0 0.7442 +0 0.1644 +0 0.1148 +0 0.0779 +0 0.0982 +0 0.1213 +0 0.0357 +0 0.1295 +0 0.0949 +0 0.0495 +0 0.0706 +0 0.0663 +0 0.3315 +0 0.1726 +0 0.1272 +0 0.2187 +0 0.0797 +0 0.0997 +0 0.1235 +0 0.0547 +0 0.1659 +0 0.1635 +0 0.0797 +0 0.1630 +0 0.0507 +0 0.0618 +0 0.1949 +0 0.1235 +0 0.0642 +1 0.8058 +0 0.2430 +0 0.1360 +0 0.1471 +0 0.1109 +0 0.0646 +0 0.2033 +0 0.1291 +0 0.0756 +0 0.2002 +0 0.1185 +0 0.1320 +0 0.1520 +0 0.0804 +0 0.6129 +0 0.0582 +0 0.0804 +0 0.0795 +0 0.0681 +0 0.1696 +0 0.1029 +1 0.8379 +0 0.0652 +0 0.3707 +0 0.1707 +1 0.7810 +0 0.0804 +0 0.1236 +0 0.2265 +0 0.1399 +0 0.2772 +1 0.8085 +0 0.0964 +0 0.0706 +0 0.0849 +0 0.0677 +0 0.1431 +0 0.1784 +0 0.3385 +0 0.0614 +0 0.0880 +0 0.1165 +0 0.0811 +0 0.0637 +0 0.0790 +0 0.0705 +0 0.2574 +1 0.8316 +0 0.0673 +0 0.1689 +0 0.0850 +0 0.4085 +0 0.2843 +0 0.2256 +0 0.1039 +0 0.1766 +0 0.3138 +0 0.0405 +0 0.0941 +0 0.1225 +0 0.0993 +0 0.0653 +0 0.2676 +0 0.1141 +0 0.1278 +0 0.2581 +0 0.0836 +0 0.1256 +0 0.4711 +0 0.0777 +0 0.0489 +0 0.0750 +0 0.2789 +0 0.1498 +0 0.0885 +0 0.0882 +0 0.1023 +0 0.0601 +0 0.0458 +0 0.3575 +0 0.1443 +0 0.6890 +0 0.1307 +0 0.0553 +0 0.1041 +0 0.0663 +0 0.0469 +0 0.1464 +0 0.1721 +0 0.0329 +0 0.0850 +0 0.0635 +0 0.0992 +0 0.1188 +0 0.1980 +0 0.0396 +0 0.0946 +0 0.1060 +0 0.2256 +0 0.4352 +0 0.0613 +0 0.0934 +0 0.0422 +0 0.4720 +0 0.0487 +0 0.1749 +0 0.0691 +0 0.1526 +0 0.1756 +0 0.0586 +0 0.2217 +0 0.0490 +0 0.3324 +0 0.1444 +0 0.2270 +0 0.0594 +0 0.0494 +0 0.0484 +1 0.8776 +0 0.1864 +0 0.0503 +0 0.1379 +0 0.0925 +0 0.1112 +0 0.0532 +0 0.0961 +0 0.0718 +0 0.0802 +0 0.1415 +0 0.2733 +0 0.0992 +0 0.0677 +0 0.1521 +0 0.0531 +0 0.2106 +0 0.0584 +0 0.1221 +0 0.1603 +0 0.1855 +0 0.1361 +0 0.1902 +0 0.0725 +0 0.1555 +0 0.0983 +0 0.0575 +0 0.1102 +0 0.2494 +0 0.1300 +0 0.1529 +0 0.1423 +0 0.0911 +1 0.8017 +0 0.0707 +0 0.1976 +0 0.0675 +0 0.0655 +0 0.2395 +0 0.0930 +0 0.3876 +0 0.0889 +0 0.0594 +0 0.2945 +0 0.1385 +0 0.0847 +0 0.1661 +0 0.1723 +0 0.1138 +0 0.0703 +0 0.1523 +0 0.0355 +0 0.1109 +0 0.2710 +0 0.0921 +0 0.0538 +0 0.0509 +0 0.0485 +0 0.0868 +0 0.0492 +0 0.0987 +0 0.1207 +0 0.2167 +0 0.0553 +0 0.4075 +0 0.0961 +0 0.1951 +0 0.0384 +0 0.0897 +0 0.1082 +0 0.3904 +0 0.1441 +0 0.0875 +0 0.0987 +0 0.1395 +0 0.1337 +0 0.1730 +0 0.0853 +0 0.0632 +0 0.0933 +1 0.8122 +0 0.0808 +0 0.1573 +0 0.1294 +0 0.1299 +0 0.0532 +0 0.0613 +0 0.1211 +0 0.0447 +0 0.2365 +0 0.1451 +0 0.1465 +0 0.1146 +0 0.0837 +0 0.0589 +0 0.2166 +0 0.0946 +0 0.0707 +0 0.0752 +0 0.1707 +0 0.1784 +0 0.2181 +0 0.0861 +0 0.0450 +0 0.1745 +0 0.1578 +0 0.1111 +0 0.2139 +0 0.1289 +0 0.5758 +0 0.1255 +0 0.1750 +0 0.0823 +0 0.1392 +0 0.0636 +0 0.0855 +0 0.0763 +0 0.7171 +0 0.0663 +0 0.1329 +0 0.0521 +0 0.0799 +0 0.1521 +0 0.3931 +0 0.1677 +0 0.0540 +0 0.0735 +0 0.0738 +0 0.4987 +0 0.0723 +0 0.0740 +0 0.4322 +0 0.0568 +0 0.1278 +0 0.0810 +0 0.0724 +0 0.0453 +0 0.1873 +0 0.0725 +0 0.1177 +0 0.2815 +0 0.2870 +0 0.1447 +0 0.0776 +0 0.1181 +0 0.0589 +1 0.8033 +0 0.1027 +0 0.0412 +0 0.4439 +0 0.2690 +0 0.2025 +0 0.3125 +0 0.1428 +0 0.0859 +0 0.0420 +0 0.0599 +0 0.2044 +0 0.0616 +0 0.3660 +0 0.0832 +0 0.1760 +0 0.1113 +0 0.1233 +0 0.0511 +0 0.0463 +0 0.3212 +0 0.0794 +0 0.1631 +0 0.0810 +0 0.1498 +0 0.2364 +0 0.0642 +0 0.0947 +0 0.0727 +0 0.4280 +0 0.0695 +0 0.4122 +0 0.1727 +0 0.1084 +0 0.1884 +0 0.0602 +0 0.0643 +0 0.0409 +0 0.2511 +0 0.0712 +0 0.0831 +0 0.0512 +0 0.0642 +0 0.1836 +0 0.0467 +0 0.0437 +0 0.1027 +0 0.0865 +0 0.1388 +0 0.0660 +0 0.2172 +1 0.8602 +0 0.1045 +0 0.0599 +0 0.1755 +0 0.0582 +0 0.1024 +0 0.0711 +0 0.2373 +0 0.5633 +0 0.1521 +0 0.0668 +0 0.1028 +0 0.2083 +0 0.0799 +0 0.0847 +0 0.2922 +0 0.3989 +0 0.0597 +0 0.0699 +0 0.1071 +0 0.0736 +0 0.6588 +0 0.1612 +0 0.0528 +0 0.1463 +0 0.1044 +0 0.0640 +0 0.1196 +0 0.1019 +0 0.1231 +0 0.0588 +0 0.0395 +0 0.1147 +0 0.0528 +0 0.0574 +0 0.0333 +0 0.0715 +0 0.1557 +0 0.0782 +0 0.7038 +0 0.0963 +0 0.0958 +0 0.1475 +0 0.3663 +0 0.1263 +0 0.1164 +0 0.1280 +0 0.2094 +0 0.0463 +0 0.1891 +0 0.0835 +0 0.0443 +0 0.1084 +0 0.0677 +0 0.4005 +0 0.0868 +0 0.1562 +0 0.3524 +0 0.2572 +0 0.0817 +0 0.0639 +0 0.2184 +0 0.1683 +0 0.0677 +0 0.0827 +0 0.1232 +0 0.0653 +0 0.1158 +0 0.1514 +0 0.0477 +0 0.1559 +0 0.0520 +0 0.2028 +0 0.0680 +0 0.7078 +0 0.1609 +0 0.2232 +0 0.0958 +0 0.1996 +0 0.2898 +0 0.1435 +0 0.3647 +0 0.1278 +0 0.0542 +0 0.1325 +0 0.0979 +0 0.1541 +0 0.0595 +0 0.1024 +1 0.7675 +0 0.0955 +0 0.2146 +0 0.0577 +0 0.0683 +0 0.2301 +0 0.0787 +0 0.1487 +0 0.0866 +0 0.0823 +0 0.0869 +0 0.0670 +0 0.0736 +0 0.0869 +0 0.0485 +0 0.0825 +0 0.1164 +0 0.0752 +0 0.1561 +0 0.2310 +0 0.2134 +0 0.2672 +0 0.4858 +0 0.0610 +0 0.0484 +0 0.0677 +0 0.0783 +0 0.0610 +0 0.1152 +0 0.0464 +0 0.0479 +0 0.5209 +0 0.0620 +0 0.2174 +0 0.2686 +0 0.1485 +0 0.0815 +0 0.1223 +0 0.0740 +0 0.0589 +0 0.0652 +0 0.1258 +0 0.0394 +0 0.0645 +0 0.0621 +0 0.0549 +0 0.0639 +0 0.2932 +0 0.0636 +0 0.1812 +0 0.1689 +0 0.0966 +0 0.1923 +0 0.1764 +0 0.1971 +0 0.0475 +0 0.1431 +0 0.0571 +0 0.1694 +0 0.2654 +0 0.1044 +0 0.0702 +0 0.0939 +0 0.1319 +0 0.0754 +0 0.1660 +0 0.0573 +0 0.1594 +0 0.6194 +0 0.1063 +0 0.0699 +0 0.0857 +0 0.2698 +0 0.0635 +0 0.4123 +0 0.0489 +0 0.2454 +0 0.0729 +0 0.0964 +0 0.0888 +0 0.1967 +0 0.0825 +1 0.8007 +0 0.0573 +0 0.1750 +0 0.0824 +0 0.0920 +0 0.1298 +1 0.8035 +0 0.1252 +0 0.0982 +0 0.7286 +0 0.2581 +0 0.0807 +0 0.0655 +0 0.0711 +0 0.1554 +0 0.3018 +1 0.8324 +0 0.0759 +0 0.5681 +0 0.1219 +0 0.4997 +0 0.1072 +0 0.1461 +0 0.0820 +0 0.0824 +0 0.1675 +0 0.0653 +1 0.7561 +0 0.0717 +0 0.1153 +0 0.1038 +0 0.1460 +0 0.0465 +0 0.1671 +0 0.0360 +0 0.2972 +0 0.0667 +0 0.1383 +0 0.3984 +0 0.0475 +0 0.1125 +0 0.0619 +0 0.2333 +0 0.0750 +0 0.0583 +0 0.1417 +0 0.0691 +0 0.1266 +0 0.1836 +0 0.1536 +0 0.0992 +0 0.1961 +0 0.1446 +0 0.1360 +0 0.1897 +0 0.1740 +0 0.0663 +0 0.0525 +0 0.0908 +0 0.1311 +0 0.2109 +0 0.0523 +0 0.3159 +0 0.1461 +0 0.2691 +0 0.1194 +0 0.0938 +0 0.1248 +0 0.0629 +0 0.0912 +0 0.1359 +0 0.7001 +0 0.0588 +0 0.0830 +0 0.2424 +0 0.0515 +0 0.1186 +0 0.0611 +0 0.1144 +0 0.1117 +0 0.1491 +0 0.0534 +0 0.1332 +0 0.2472 +0 0.1200 +0 0.1003 +0 0.1856 +0 0.0731 +0 0.0479 +0 0.0697 +0 0.0941 +0 0.0765 +0 0.1133 +0 0.2651 +1 0.7837 +1 0.7766 +0 0.0925 +0 0.1034 +0 0.0769 +0 0.0390 +0 0.1162 +0 0.1432 +0 0.0676 +0 0.6745 +0 0.3673 +0 0.0756 +0 0.0940 +0 0.0831 +0 0.0613 +0 0.1030 +0 0.0521 +0 0.0345 +0 0.0695 +0 0.3304 +0 0.1475 +0 0.0898 +0 0.2708 +0 0.1996 +0 0.0410 +0 0.0801 +0 0.0859 +0 0.1412 +0 0.1269 +0 0.2385 +0 0.2628 +0 0.0969 +0 0.0992 +0 0.1885 +0 0.1502 +0 0.1577 +0 0.0796 +0 0.2281 +0 0.0380 +0 0.0752 +0 0.0876 +0 0.0672 +0 0.2094 +0 0.1738 +0 0.0866 +0 0.1402 +0 0.2105 +0 0.1920 +0 0.1814 +0 0.0758 +0 0.0838 +0 0.0661 +0 0.0928 +0 0.0594 +0 0.2883 +0 0.1023 +0 0.0406 +0 0.4654 +0 0.0805 +0 0.0751 +0 0.5338 +0 0.0935 +0 0.0594 +0 0.0624 +0 0.1323 +0 0.0816 +0 0.1049 +0 0.1678 +0 0.0785 +0 0.7068 +0 0.0594 +0 0.1461 +0 0.1035 +0 0.1044 +0 0.1844 +0 0.6457 +0 0.0717 +0 0.0790 +0 0.1288 +0 0.1462 +0 0.0483 +0 0.1076 +0 0.0604 +0 0.2894 +0 0.1438 +0 0.3440 +0 0.3402 +0 0.0825 +0 0.0732 +0 0.1789 +0 0.0637 +0 0.0948 +0 0.0388 +0 0.2142 +0 0.0947 +0 0.1602 +0 0.0634 +1 0.8374 +0 0.1102 +0 0.2334 +0 0.1520 +0 0.1003 +0 0.1130 +0 0.6620 +0 0.0495 +0 0.1081 +0 0.0760 +0 0.1504 +0 0.1240 +0 0.0462 +0 0.0518 +0 0.0459 +0 0.2106 +0 0.1108 +0 0.0653 +0 0.0751 +0 0.0727 +0 0.1278 +0 0.0768 +0 0.0407 +0 0.3102 +0 0.1375 +0 0.1583 +0 0.1765 +0 0.6422 +0 0.0764 +0 0.2230 +0 0.3400 +0 0.0938 +0 0.0484 +0 0.0522 +0 0.2578 +0 0.1239 +0 0.1441 +0 0.1893 +0 0.1957 +0 0.0995 +0 0.1031 +0 0.1513 +0 0.1757 +0 0.0635 +0 0.2551 +0 0.1775 +0 0.1359 +0 0.0725 +0 0.0578 +0 0.0741 +0 0.0931 +0 0.0441 +1 0.7986 +0 0.0462 +0 0.0621 +0 0.0746 +0 0.5111 +0 0.0471 +0 0.1676 +0 0.0651 +0 0.0882 +0 0.3530 +0 0.0799 +0 0.7414 +0 0.1638 +0 0.0580 +0 0.1118 +0 0.1678 +0 0.1413 +0 0.1245 +0 0.1721 +0 0.1120 +0 0.1593 +0 0.1576 +0 0.0963 +0 0.0385 +0 0.0951 +0 0.1516 +0 0.2275 +0 0.1719 +0 0.1653 +0 0.0664 +0 0.5740 +0 0.3491 +0 0.0806 +0 0.1129 +0 0.1305 +0 0.2136 +0 0.0860 +0 0.1046 +0 0.0738 +0 0.2795 +0 0.1118 +0 0.2586 +0 0.3321 +0 0.1505 +0 0.1363 +0 0.0348 +0 0.1331 +0 0.0434 +0 0.7037 +0 0.0549 +0 0.0799 +0 0.0800 +0 0.1313 +1 0.7895 +0 0.1526 +0 0.0407 +0 0.0929 +0 0.0790 +0 0.0664 +0 0.2360 +0 0.1625 +0 0.1713 +0 0.2861 +0 0.1094 +0 0.4051 +0 0.3314 +0 0.0626 +1 0.8075 +0 0.0691 +0 0.1854 +0 0.0665 +0 0.0752 +0 0.0931 +0 0.0531 +0 0.0670 +0 0.3548 +0 0.0753 +0 0.0852 +0 0.0643 +0 0.2643 +0 0.1363 +0 0.1498 +0 0.0839 +0 0.1678 +0 0.0747 +0 0.2536 +0 0.0853 +0 0.0640 +0 0.1346 +0 0.2398 +0 0.0704 +0 0.0935 +0 0.0609 +0 0.0792 +0 0.0872 +0 0.1905 +0 0.0710 +0 0.1236 +1 0.7786 +0 0.0797 +0 0.2327 +0 0.1632 +0 0.0438 +0 0.0456 +0 0.1999 +0 0.0810 +0 0.1317 +0 0.1063 +0 0.1370 +0 0.1581 +0 0.1125 +0 0.0664 +0 0.0436 +0 0.6548 +0 0.1558 +0 0.2037 +0 0.0837 +0 0.0689 +0 0.0701 +0 0.1363 +0 0.2566 +0 0.0900 +0 0.1103 +0 0.0900 +0 0.0771 +0 0.0547 +0 0.3859 +0 0.7185 +0 0.0374 +0 0.1642 +0 0.2542 +0 0.1224 +0 0.2715 +0 0.2200 +0 0.1053 +0 0.0582 +0 0.0590 +0 0.2324 +0 0.1286 +0 0.1036 +0 0.1789 +0 0.0611 +0 0.1015 +0 0.1010 +0 0.3052 +0 0.1965 +0 0.0786 +0 0.1045 +0 0.1270 +0 0.1474 +0 0.1352 +0 0.2340 +0 0.1360 +0 0.1435 +0 0.1328 +0 0.0698 +0 0.0597 +0 0.0686 +0 0.1049 +0 0.2000 +0 0.0789 +0 0.0865 +0 0.0725 +0 0.0961 +0 0.0997 +0 0.0630 +0 0.0847 +0 0.1061 +0 0.0543 +0 0.1234 +0 0.1798 +0 0.0327 +0 0.0925 +0 0.1992 +0 0.1875 +0 0.0826 +0 0.7413 +0 0.1771 +0 0.0458 +0 0.1203 +0 0.0951 +0 0.1484 +0 0.3021 +0 0.3514 +0 0.3550 +0 0.0759 +0 0.0704 +0 0.1502 +0 0.3102 +0 0.1809 +0 0.0559 +0 0.0372 +0 0.0715 +0 0.0982 +0 0.2418 +0 0.0536 +0 0.1346 +0 0.1746 +0 0.0495 +0 0.0540 +0 0.1055 +0 0.1341 +0 0.3964 +0 0.1027 +0 0.0937 +0 0.1508 +0 0.1031 +0 0.1455 +0 0.2655 +0 0.0936 +0 0.1570 +0 0.1649 +0 0.1195 +0 0.1258 +0 0.0582 +0 0.0818 +0 0.6506 +0 0.0885 +0 0.3873 +0 0.1588 +0 0.2214 +0 0.0544 +0 0.0682 +0 0.1044 +0 0.2218 +0 0.0498 +0 0.1194 +0 0.0807 +0 0.0975 +0 0.0388 +0 0.4167 +0 0.1132 +0 0.0853 +0 0.2612 +0 0.2097 +0 0.0773 +0 0.5606 +0 0.2445 +0 0.0896 +0 0.1074 +0 0.0949 +0 0.1504 +0 0.1294 +0 0.2668 +0 0.0541 +0 0.4427 +0 0.1757 +0 0.0382 +0 0.0590 +0 0.0763 +0 0.3266 +0 0.0757 +0 0.2043 +0 0.1477 +0 0.0995 +0 0.0394 +0 0.0822 +0 0.1018 +0 0.1219 +0 0.1713 +0 0.3127 +0 0.0874 +0 0.1349 +0 0.0858 +0 0.0793 +0 0.1810 +0 0.0907 +0 0.0652 +0 0.0627 +0 0.1433 +0 0.0625 +0 0.1300 +0 0.4746 +0 0.1777 +0 0.1020 +0 0.0767 +0 0.0701 +0 0.2121 +0 0.1536 +0 0.1862 +0 0.0662 +0 0.0725 +0 0.0581 +0 0.0753 +0 0.1640 +0 0.0871 +0 0.1117 +0 0.2149 +0 0.0689 +0 0.1596 +0 0.1217 +0 0.1525 +0 0.2437 +0 0.1242 +0 0.1211 +0 0.0604 +0 0.0835 +0 0.1595 +0 0.2994 +0 0.0680 +0 0.1746 +0 0.1732 +0 0.5217 +0 0.6148 +0 0.0443 +0 0.4331 +0 0.3015 +0 0.2368 +0 0.1654 +0 0.0816 +0 0.0925 +0 0.1018 +0 0.2445 +0 0.1252 +0 0.0672 +0 0.4154 +0 0.0712 +0 0.0837 +0 0.0724 +0 0.5116 +0 0.1867 +0 0.1253 +0 0.1209 +0 0.2111 +0 0.1135 +0 0.0900 +0 0.1410 +0 0.0967 +0 0.2639 +0 0.2060 +0 0.0741 +0 0.0575 +0 0.2165 +0 0.0788 +0 0.0840 +0 0.0635 +0 0.1706 +0 0.0805 +0 0.1337 +0 0.1006 +0 0.1755 +0 0.2475 +0 0.1143 +0 0.0761 +0 0.0813 +0 0.0933 +0 0.1290 +0 0.1539 +0 0.2101 +0 0.1805 +0 0.2797 +0 0.1492 +0 0.1626 +0 0.0407 +0 0.1259 +0 0.0722 +0 0.0583 +0 0.2204 +0 0.0599 +0 0.1937 +0 0.0834 +0 0.1080 +0 0.1471 +0 0.2155 +0 0.0768 +0 0.0498 +0 0.0938 +0 0.0998 +0 0.1126 +0 0.2779 +0 0.1477 +0 0.0748 +0 0.0601 +0 0.0660 +0 0.1276 +0 0.1769 +0 0.1237 +0 0.0972 +0 0.1482 +0 0.0643 +0 0.0481 +0 0.0608 +0 0.1739 +0 0.3871 +0 0.1487 +0 0.0681 +0 0.0533 +0 0.0829 +0 0.0734 +0 0.0751 +0 0.0805 +0 0.1060 +0 0.0679 +0 0.0563 +0 0.1588 +0 0.1212 +0 0.1134 +0 0.1347 +0 0.0971 +1 0.8504 +0 0.0941 +0 0.1436 +0 0.1022 +0 0.0680 +0 0.2617 +0 0.0940 +0 0.2035 +0 0.2426 +0 0.1802 +0 0.1125 +0 0.0562 +0 0.0593 +0 0.1200 +0 0.1515 +0 0.0760 +0 0.0479 +0 0.0458 +0 0.1820 +0 0.0958 +0 0.1259 +0 0.0980 +0 0.0954 +0 0.1039 +0 0.0621 +0 0.1022 +0 0.1768 +0 0.6142 +0 0.1245 +0 0.1483 +0 0.0485 +0 0.0871 +0 0.3133 +0 0.0877 +0 0.6593 +0 0.0916 +0 0.0736 +0 0.0725 +0 0.1918 +0 0.0645 +0 0.0970 +0 0.1039 +0 0.0770 +0 0.2001 +0 0.6661 +0 0.0524 +0 0.0984 +0 0.0493 +0 0.2161 +0 0.2373 +0 0.0690 +0 0.1483 +0 0.0469 +0 0.1138 +0 0.2931 +0 0.0953 +0 0.0559 +0 0.0944 +1 0.8802 +0 0.0846 +0 0.1179 +0 0.7259 +0 0.0579 +0 0.4613 +0 0.0412 +0 0.0996 +0 0.1219 +0 0.1287 +0 0.2074 +0 0.1038 +0 0.1040 +0 0.2176 +0 0.1585 +0 0.0884 +0 0.1041 +0 0.2948 +0 0.1009 +0 0.1153 +0 0.7261 +0 0.0823 +0 0.1825 +0 0.0967 +0 0.3537 +0 0.1125 +0 0.0616 +0 0.1440 +0 0.3555 +1 0.7587 +0 0.1413 +0 0.1212 +0 0.2844 +0 0.1410 +0 0.0378 +0 0.2253 +0 0.1881 +0 0.1518 +0 0.0804 +0 0.0922 +0 0.1684 +0 0.0851 +0 0.2038 +0 0.1182 +0 0.1599 +0 0.0772 +0 0.1240 +0 0.0676 +0 0.2129 +0 0.1677 +0 0.1627 +0 0.1161 +0 0.1032 +0 0.0900 +0 0.1006 +0 0.0707 +0 0.0542 +0 0.1101 +0 0.0843 +0 0.2833 +0 0.2638 +0 0.2718 +0 0.0706 +0 0.4004 +0 0.1095 +0 0.1616 +0 0.0768 +0 0.1010 +0 0.0882 +0 0.2571 +0 0.2376 +0 0.0767 +0 0.2430 +0 0.0446 +0 0.0787 +0 0.1201 +0 0.1897 +0 0.0941 +0 0.1239 +0 0.0718 +0 0.1443 +0 0.2163 +0 0.0868 +0 0.3922 +0 0.2049 +0 0.0920 +0 0.0433 +0 0.0925 +0 0.0853 +0 0.0939 +0 0.0721 +0 0.3955 +0 0.3028 +0 0.1260 +0 0.1052 +0 0.1439 +0 0.2262 +0 0.0500 +0 0.4433 +0 0.0456 +0 0.2471 +0 0.0340 +0 0.3695 +0 0.2203 +0 0.0856 +0 0.2511 +1 0.8295 +0 0.0352 +0 0.1059 +0 0.0714 +0 0.0616 +0 0.1597 +0 0.0498 +0 0.6355 +0 0.0632 +0 0.0757 +0 0.0700 +0 0.1866 +0 0.1033 +0 0.0730 +0 0.0726 +0 0.0519 +0 0.0749 +0 0.2483 +1 0.8623 +0 0.3836 +0 0.0821 +0 0.0786 +0 0.1074 +0 0.0615 +0 0.0755 +0 0.0665 +0 0.1792 +0 0.0857 +0 0.5291 +0 0.2114 +0 0.0619 +0 0.3523 +0 0.2241 +0 0.0472 +0 0.0634 +0 0.1221 +0 0.2999 +0 0.0536 +0 0.1845 +0 0.0419 +0 0.6606 +0 0.0850 +0 0.1387 +1 0.8662 +0 0.2228 +0 0.1002 +0 0.0913 +0 0.1868 +0 0.1053 +0 0.0458 +1 0.8174 +0 0.0501 +0 0.1539 +0 0.0519 +0 0.0741 +0 0.1017 +0 0.0819 +0 0.3773 +0 0.0983 +0 0.7158 +0 0.0854 +0 0.6130 +0 0.0835 +0 0.1182 +0 0.0619 +0 0.0600 +0 0.0898 +0 0.1750 +0 0.1157 +0 0.0739 +0 0.1529 +0 0.1540 +0 0.1602 +0 0.0831 +0 0.0943 +0 0.0578 +0 0.2309 +0 0.0418 +0 0.1132 +0 0.1428 +1 0.7954 +0 0.1248 +0 0.1897 +0 0.0485 +0 0.3553 +0 0.0737 +0 0.0904 +0 0.0860 +0 0.0742 +0 0.0469 +0 0.0793 +0 0.0755 +0 0.3145 +0 0.2425 +0 0.3655 +0 0.1047 +0 0.1554 +0 0.0681 +0 0.0555 +0 0.0649 +0 0.0939 +0 0.1591 +0 0.1524 +0 0.0886 +0 0.1012 +0 0.1185 +0 0.1527 +0 0.0879 +0 0.0836 +0 0.0946 +0 0.1245 +0 0.1324 +0 0.0647 +0 0.0827 +0 0.0724 +0 0.1885 +0 0.1405 +0 0.0988 +0 0.1854 +0 0.0658 +0 0.0740 +0 0.3230 +0 0.0991 +0 0.1078 +0 0.0395 +0 0.1131 +0 0.1358 +0 0.1111 +0 0.2694 +0 0.3741 +0 0.0577 +0 0.0746 +0 0.2289 +0 0.4669 +0 0.0749 +0 0.1153 +0 0.0556 +0 0.5264 +0 0.0527 +0 0.7446 +0 0.0426 +0 0.3327 +0 0.1039 +0 0.1009 +0 0.1088 +0 0.0970 +0 0.1177 +0 0.0730 +0 0.1040 +0 0.0515 +0 0.2404 +0 0.1336 +0 0.1128 +0 0.1053 +0 0.1236 +0 0.1064 +0 0.3158 +0 0.0507 +0 0.1080 +0 0.0392 +0 0.1185 +0 0.1256 +0 0.1450 +0 0.0839 +0 0.0826 +0 0.1648 +0 0.0801 +0 0.0704 +0 0.1816 +0 0.3114 +0 0.1564 +0 0.0845 +0 0.0865 +0 0.1176 +0 0.0620 +0 0.1532 +0 0.0568 +0 0.1068 +0 0.1495 +0 0.4072 +0 0.0929 +0 0.0423 +0 0.1867 +0 0.0749 +0 0.0642 +0 0.1166 +0 0.2106 +0 0.0667 +0 0.2114 +0 0.1455 +0 0.0479 +0 0.0648 +0 0.0981 +0 0.2312 +0 0.1366 +0 0.0488 +0 0.0547 +0 0.0808 +0 0.1078 +0 0.0395 +0 0.0335 +0 0.1880 +0 0.0708 +0 0.0575 +0 0.0776 +0 0.0739 +0 0.1062 +0 0.2673 +0 0.1486 +0 0.2054 +0 0.1117 +0 0.1350 +0 0.1148 +0 0.0793 +0 0.0612 +0 0.0695 +1 0.8128 +0 0.1943 +0 0.3097 +0 0.0873 +0 0.1019 +0 0.0623 +0 0.3273 +0 0.0690 +0 0.0967 +0 0.1229 +0 0.0662 +0 0.1230 +0 0.0425 +0 0.0707 +0 0.0894 +0 0.0415 +0 0.0862 +0 0.1851 +0 0.1316 +0 0.0999 +0 0.1086 +0 0.1983 +0 0.0896 +0 0.2675 +0 0.1661 +0 0.2555 +0 0.3305 +0 0.0467 +0 0.0477 +0 0.0797 +0 0.1092 +0 0.1523 +0 0.2135 +0 0.2807 +0 0.2403 +0 0.3058 +0 0.1503 +0 0.0465 +0 0.2259 +0 0.0432 +0 0.1681 +0 0.0958 +0 0.0792 +0 0.0916 +0 0.0802 +1 0.8493 +0 0.0745 +0 0.0546 +0 0.0575 +0 0.0623 +0 0.0908 +0 0.1057 +0 0.0457 +0 0.2136 +0 0.1449 +0 0.2683 +0 0.0951 +0 0.0765 +0 0.1339 +1 0.8501 +0 0.0495 +0 0.2015 +0 0.3136 +0 0.1206 +0 0.0767 +0 0.1231 +0 0.0917 +0 0.1313 +0 0.1145 +0 0.1153 +0 0.0823 +0 0.0651 +0 0.2382 +0 0.0488 +0 0.2000 +0 0.0932 +0 0.0429 +0 0.0381 +0 0.0687 +0 0.0806 +0 0.3192 +0 0.0962 +0 0.2063 +0 0.2834 +0 0.1263 +0 0.0513 +0 0.1177 +0 0.2385 +0 0.2741 +0 0.0575 +0 0.1088 +0 0.0995 +0 0.1492 +0 0.4332 +1 0.8478 +0 0.1831 +0 0.5145 +0 0.2451 +0 0.1738 +0 0.2139 +0 0.1280 +0 0.3263 +0 0.1010 +0 0.0438 +0 0.1015 +0 0.1432 +0 0.0671 +0 0.0715 +0 0.0504 +0 0.0294 +0 0.2322 +0 0.1174 +0 0.1160 +0 0.1250 +0 0.0502 +0 0.3047 +0 0.1645 +0 0.0966 +0 0.3023 +0 0.2285 +0 0.0837 +0 0.0698 +0 0.0923 +0 0.0867 +0 0.0591 +0 0.1288 +0 0.2247 +0 0.0774 +0 0.3963 +0 0.2716 +0 0.1780 +0 0.1966 +0 0.0954 +0 0.2335 +0 0.1003 +0 0.0666 +0 0.0688 +0 0.0847 +0 0.1456 +0 0.1092 +0 0.1437 +0 0.5363 +0 0.0466 +0 0.0661 +0 0.1414 +0 0.0968 +0 0.1193 +0 0.0385 +0 0.3766 +0 0.0871 +0 0.1701 +0 0.0836 +0 0.1307 +0 0.0531 +0 0.0588 +1 0.7723 +0 0.1266 +0 0.0853 +0 0.1669 +0 0.0961 +0 0.3159 +0 0.0700 +0 0.1916 +0 0.0655 +0 0.1137 +0 0.0760 +0 0.0610 +0 0.0723 +0 0.1701 +0 0.1071 +0 0.1105 +0 0.1453 +0 0.1814 +0 0.1657 +0 0.1184 +0 0.1617 +0 0.1705 +0 0.4955 +0 0.0527 +0 0.1320 +0 0.2037 +0 0.3228 +0 0.1524 +0 0.0840 +0 0.1511 +0 0.1743 +0 0.0419 +0 0.1351 +0 0.1014 +0 0.2241 +0 0.0921 +0 0.0721 +0 0.0670 +0 0.1308 +0 0.0851 +0 0.1442 +0 0.0808 +0 0.1790 +0 0.0869 +0 0.2346 +0 0.2107 +0 0.1474 +0 0.0367 +0 0.0708 +0 0.4727 +0 0.1895 +0 0.0863 +0 0.2720 +0 0.7079 +0 0.0670 +0 0.0986 +0 0.0716 +0 0.1124 +0 0.1025 +0 0.2504 +0 0.1421 +0 0.0590 +0 0.0359 +0 0.1085 +1 0.8397 +0 0.1005 +0 0.0717 +0 0.1345 +1 0.7716 +0 0.1449 +0 0.0921 +0 0.0483 +0 0.1569 +0 0.0681 +0 0.4625 +0 0.6556 +0 0.1585 +0 0.1628 +0 0.3133 +0 0.3622 +0 0.1759 +0 0.1337 +0 0.0886 +0 0.1484 +0 0.0793 +0 0.1061 +0 0.2013 +0 0.1124 +0 0.0619 +0 0.3129 +0 0.0966 +0 0.1113 +0 0.1422 +0 0.2246 +0 0.3617 +0 0.2931 +0 0.1173 +0 0.2074 +0 0.2147 +0 0.1099 +0 0.1305 +0 0.1121 +0 0.1187 +0 0.0859 +0 0.1009 +0 0.1883 +0 0.1613 +0 0.6801 +0 0.0763 +0 0.0923 +0 0.0933 +0 0.1192 +0 0.0852 +0 0.7214 +0 0.0804 +0 0.0515 +0 0.2167 +0 0.0444 +0 0.0733 +0 0.1315 +0 0.0880 +0 0.0676 +0 0.0475 +0 0.0642 +0 0.0636 +0 0.1096 +0 0.0859 +0 0.0988 +0 0.0726 +0 0.0362 +0 0.1432 +0 0.0946 +0 0.0921 +0 0.7202 +0 0.1199 +0 0.5549 +0 0.0618 +0 0.1366 +0 0.5213 +0 0.2494 +0 0.1465 +0 0.1658 +0 0.1415 +0 0.1790 +0 0.0380 +0 0.2587 +0 0.2210 +0 0.0523 +0 0.2315 +0 0.0910 +1 0.8311 +0 0.0753 +0 0.1602 +0 0.0646 +0 0.0650 +0 0.0732 +0 0.0674 +0 0.0918 +0 0.0854 +0 0.0559 +0 0.0718 +0 0.0756 +0 0.1091 +0 0.2891 +0 0.0942 +0 0.1479 +0 0.3669 +0 0.0729 +0 0.0557 +0 0.2649 +0 0.1041 +0 0.3842 +0 0.1978 +0 0.0732 +0 0.1399 +0 0.1123 +0 0.0708 +0 0.0582 +0 0.1417 +0 0.0474 +0 0.2702 +0 0.0811 +0 0.0966 +0 0.0887 +0 0.0480 +0 0.1804 +1 0.7717 +0 0.1119 +0 0.1297 +0 0.0509 +0 0.0822 +0 0.0827 +0 0.2149 +0 0.1371 +0 0.1439 +0 0.1669 +0 0.1499 +0 0.1544 +0 0.1087 +0 0.0602 +0 0.1878 +0 0.0965 +0 0.2045 +0 0.1643 +0 0.3365 +0 0.1243 +0 0.1150 +0 0.0799 +0 0.3240 +0 0.0766 +0 0.1337 +0 0.1624 +0 0.2931 +0 0.0940 +0 0.0974 +0 0.1254 +0 0.2384 +0 0.0709 +0 0.2854 +0 0.0837 +0 0.2780 +0 0.0871 +0 0.1571 +0 0.0578 +0 0.1367 +0 0.1940 +0 0.1447 +0 0.5046 +0 0.0832 +0 0.0668 +0 0.0774 +0 0.2021 +0 0.1256 +0 0.0730 +0 0.0449 +0 0.1860 +0 0.0655 +0 0.0689 +0 0.1255 +0 0.0901 +0 0.0595 +0 0.0636 +0 0.1200 +0 0.1349 +0 0.1082 +0 0.0726 +0 0.1314 +0 0.1236 +0 0.0728 +0 0.0860 +0 0.1687 +1 0.8456 +0 0.1039 +0 0.1084 +0 0.2989 +0 0.0611 +0 0.0780 +0 0.4169 +0 0.1223 +0 0.0553 +0 0.2248 +0 0.1100 +0 0.1614 +0 0.1617 +0 0.1488 +0 0.0467 +0 0.0588 +0 0.0824 +0 0.1351 +0 0.1192 +1 0.8272 +0 0.1689 +0 0.1610 +0 0.1719 +0 0.0497 +0 0.1202 +0 0.1139 +0 0.2336 +0 0.2627 +0 0.1246 +0 0.0945 +0 0.1018 +0 0.0468 +0 0.1577 +0 0.1942 +0 0.6990 +0 0.2942 +0 0.1042 +0 0.2022 +0 0.2578 +0 0.0585 +0 0.1260 +0 0.0480 +0 0.1009 +0 0.1592 +0 0.1722 +0 0.0601 +0 0.2326 +0 0.0686 +0 0.0707 +0 0.0847 +0 0.2074 +0 0.0874 +0 0.0319 +0 0.1108 +0 0.0577 +0 0.2961 +0 0.0988 +0 0.1056 +0 0.0868 +0 0.0524 +0 0.0507 +0 0.1807 +0 0.1179 +0 0.0602 +0 0.1039 +0 0.0918 +1 0.8398 +0 0.0996 +0 0.1553 +0 0.0467 +0 0.0569 +0 0.0777 +0 0.7056 +0 0.1546 +0 0.0894 +0 0.6110 +0 0.0764 +0 0.0831 +0 0.1011 +0 0.4583 +0 0.0550 +0 0.0557 +0 0.1174 +0 0.0745 +0 0.0932 +0 0.0757 +0 0.0933 +0 0.3395 +0 0.0747 +0 0.0898 +0 0.1564 +0 0.2606 +0 0.1249 +0 0.0441 +0 0.1326 +0 0.0986 +0 0.0693 +0 0.1130 +0 0.5248 +0 0.0472 +0 0.1289 +0 0.2487 +0 0.0795 +0 0.2853 +0 0.0740 +0 0.0561 +0 0.0665 +0 0.2338 +0 0.0799 +0 0.1054 +0 0.1257 +0 0.1524 +0 0.1417 +0 0.1929 +0 0.1089 +0 0.2254 +0 0.1049 +0 0.1015 +0 0.0439 +0 0.0617 +0 0.1940 +0 0.1559 +0 0.0687 +0 0.0887 +0 0.0928 +0 0.1013 +0 0.1267 +0 0.0774 +0 0.0485 +0 0.1343 +0 0.0759 +0 0.1159 +0 0.0689 +0 0.0758 +0 0.1537 +0 0.4028 +0 0.1172 +0 0.0537 +0 0.3883 +0 0.2533 +0 0.0990 +0 0.0473 +0 0.4982 +0 0.2948 +0 0.0659 +0 0.1415 +0 0.1062 +0 0.2211 +0 0.0814 +0 0.1341 +0 0.0649 +0 0.0792 +0 0.1441 +0 0.1438 +0 0.0861 +0 0.1688 +0 0.3078 +0 0.1044 +0 0.3390 +0 0.1003 +0 0.0777 +0 0.1407 +0 0.6395 +0 0.1195 +0 0.0575 +0 0.2078 +0 0.1614 +0 0.1359 +0 0.1903 +0 0.1113 +0 0.1466 +0 0.2562 +0 0.1654 +0 0.0692 +0 0.1437 +0 0.1900 +0 0.0598 +0 0.1174 +0 0.0665 +0 0.0646 +0 0.1286 +0 0.0868 +0 0.0669 +0 0.1253 +0 0.1059 +0 0.1121 +0 0.1581 +0 0.1141 +0 0.0493 +0 0.1650 +0 0.1044 +0 0.0440 +0 0.0768 +0 0.1199 +0 0.1134 +0 0.1570 +0 0.0542 +0 0.0909 +0 0.1482 +0 0.0973 +0 0.0415 +0 0.2538 +0 0.0851 +0 0.2037 +0 0.0474 +0 0.1122 +0 0.1265 +0 0.1091 +0 0.2639 +0 0.1644 +0 0.1280 +0 0.1992 +0 0.1037 +0 0.0943 +0 0.1824 +0 0.0844 +0 0.0798 +0 0.1039 +0 0.0539 +0 0.0648 +0 0.1822 +0 0.2225 +0 0.2612 +0 0.5076 +0 0.1036 +0 0.0968 +0 0.2878 +0 0.1931 +0 0.1465 +0 0.0739 +0 0.1300 +0 0.0417 +0 0.0932 +0 0.0590 +0 0.2193 +0 0.4248 +0 0.1001 +0 0.2062 +0 0.2487 +0 0.0517 +0 0.0512 +0 0.1631 +0 0.1275 +0 0.0640 +0 0.0482 +0 0.0927 +0 0.1592 +0 0.3907 +0 0.1666 +0 0.0840 +0 0.1504 +0 0.0397 +0 0.1454 +0 0.0829 +0 0.0676 +0 0.1095 +0 0.1003 +0 0.1891 +0 0.0690 +0 0.1592 +0 0.3383 +0 0.2307 +0 0.0744 +0 0.0648 +0 0.2020 +0 0.2990 +0 0.1424 +0 0.0932 +0 0.0748 +0 0.1033 +0 0.0915 +0 0.0588 +0 0.0829 +0 0.0729 +0 0.0706 +0 0.0655 +0 0.4990 +1 0.8537 +0 0.1662 +0 0.2610 +0 0.1142 +0 0.1020 +0 0.0940 +0 0.4907 +0 0.0609 +0 0.1082 +0 0.1173 +0 0.0651 +0 0.0763 +0 0.6676 +0 0.1525 +0 0.1300 +0 0.0577 +0 0.1370 +0 0.1334 +0 0.0877 +0 0.1121 +0 0.1169 +0 0.1333 +0 0.0671 +0 0.0445 +0 0.1037 +0 0.1362 +0 0.0443 +0 0.4005 +0 0.0823 +0 0.0421 +0 0.1441 +0 0.0945 +0 0.1605 +0 0.5001 +1 0.8710 +0 0.1830 +0 0.1600 +0 0.0731 +0 0.0468 +0 0.1306 +0 0.2013 +0 0.2530 +0 0.1334 +0 0.1399 +0 0.0930 +0 0.0647 +0 0.1409 +0 0.3746 +0 0.1109 +0 0.1911 +0 0.0865 +0 0.1128 +0 0.4954 +0 0.0929 +0 0.1635 +0 0.1161 +0 0.1494 +0 0.1850 +0 0.0751 +0 0.4094 +0 0.0341 +1 0.8184 +0 0.1068 +0 0.2908 +0 0.2771 +0 0.0596 +0 0.2912 +0 0.1154 +0 0.1070 +0 0.1386 +0 0.3346 +0 0.6742 +0 0.2976 +0 0.5858 +0 0.0584 +0 0.0574 +0 0.2881 +0 0.1168 +0 0.2309 +0 0.0450 +0 0.1153 +0 0.2247 +0 0.0581 +0 0.0552 +0 0.3612 +0 0.2322 +0 0.1026 +0 0.1239 +0 0.0507 +0 0.0881 +0 0.1581 +0 0.0781 +0 0.0580 +0 0.0307 +0 0.0842 +0 0.2746 +0 0.0843 +0 0.1127 +0 0.1098 +0 0.1171 +0 0.1022 +0 0.1738 +0 0.3630 +0 0.1029 +0 0.1150 +0 0.1695 +0 0.0801 +0 0.1733 +0 0.0909 +0 0.0593 +0 0.0951 +0 0.2082 +0 0.1283 +0 0.0982 +0 0.0922 +0 0.1070 +0 0.0978 +0 0.1087 +0 0.1457 +0 0.0391 +0 0.0844 +0 0.1783 +0 0.4807 +1 0.7552 +0 0.0778 +0 0.1098 +0 0.0716 +0 0.0738 +0 0.1598 +0 0.0670 +0 0.0656 +0 0.0494 +0 0.1079 +0 0.0703 +0 0.2853 +0 0.1625 +0 0.1378 +0 0.1523 +0 0.0581 +0 0.2519 +0 0.0626 +0 0.0953 +0 0.0897 +0 0.1796 +0 0.1156 +0 0.0534 +0 0.0778 +0 0.0339 +0 0.0506 +0 0.1269 +0 0.2643 +0 0.1318 +0 0.1876 +0 0.1035 +0 0.0985 +0 0.3145 +0 0.1010 +0 0.5382 +0 0.1438 +1 0.8479 +0 0.1052 +1 0.8106 +0 0.1927 +0 0.0892 +0 0.2552 +0 0.0942 +0 0.1268 +0 0.0539 +0 0.0523 +0 0.0748 +0 0.1053 +0 0.0636 +0 0.0534 +0 0.0810 +0 0.3930 +0 0.6690 +0 0.1360 +0 0.1194 +0 0.0909 +0 0.3071 +0 0.0853 +0 0.1025 +0 0.1078 +0 0.1361 +0 0.0490 +0 0.0938 +0 0.1223 +0 0.1119 +0 0.0868 +0 0.1934 +0 0.1022 +0 0.0651 +0 0.1155 +0 0.1056 +0 0.0607 +0 0.1985 +0 0.1308 +0 0.3243 +0 0.2912 +0 0.0945 +0 0.3718 +0 0.0807 +0 0.1304 +0 0.5854 +0 0.1119 +0 0.2341 +0 0.1652 +0 0.1386 +0 0.1234 +0 0.0624 +0 0.0734 +0 0.2147 +0 0.0388 +0 0.0752 +0 0.0546 +0 0.7180 +0 0.1036 +0 0.0813 +0 0.1435 +0 0.0472 +0 0.1496 +0 0.0794 +0 0.0868 +0 0.0859 +0 0.2564 +0 0.1791 +0 0.0731 +0 0.1201 +0 0.0609 +0 0.0791 +0 0.6911 +0 0.1119 +0 0.1566 +0 0.0706 +0 0.1559 +0 0.2703 +0 0.3889 +0 0.3802 +0 0.1774 +0 0.1326 +0 0.2300 +0 0.2312 +0 0.6959 +0 0.1687 +0 0.1104 +0 0.0606 +0 0.1578 +0 0.1955 +0 0.2874 +0 0.0758 +0 0.0674 +0 0.1552 +0 0.0593 +0 0.3842 +0 0.0905 +0 0.1420 +0 0.2267 +0 0.3408 +0 0.2429 +0 0.1906 +0 0.0416 +0 0.0671 +0 0.0989 +0 0.1874 +0 0.0560 +0 0.0709 +0 0.2543 +0 0.2520 +0 0.0947 +0 0.1422 +0 0.1375 +0 0.0721 +0 0.0670 +0 0.1067 +0 0.1278 +0 0.0531 +0 0.1020 +0 0.2172 +0 0.1006 +0 0.0828 +0 0.0813 +0 0.0623 +0 0.1151 +0 0.0515 +0 0.2563 +0 0.0710 +0 0.1525 +0 0.0586 +0 0.0960 +0 0.4178 +0 0.0624 +0 0.1257 +0 0.0821 +0 0.6083 +0 0.1606 +0 0.0889 +0 0.1316 +0 0.2413 +0 0.3187 +0 0.0661 +0 0.0494 +0 0.1010 +0 0.0607 +0 0.2779 +0 0.0659 +0 0.1820 +0 0.1231 +0 0.0378 +0 0.1327 +0 0.0630 +0 0.1272 +0 0.1022 +0 0.6785 +0 0.1300 +0 0.1630 +0 0.1004 +0 0.2485 +0 0.2158 +0 0.0973 +0 0.0564 +0 0.0781 +0 0.0602 +0 0.1209 +0 0.0593 +0 0.1004 +0 0.3415 +0 0.1300 +0 0.3988 +0 0.1361 +0 0.1061 +0 0.1050 +0 0.1372 +0 0.0992 +0 0.0684 +0 0.3774 +0 0.0989 +0 0.3802 +0 0.2390 +0 0.6744 +1 0.7681 +0 0.1046 +0 0.1096 +0 0.0520 +0 0.0672 +0 0.0527 +0 0.0913 +0 0.3720 +0 0.1068 +0 0.0395 +0 0.1103 +0 0.0540 +0 0.0390 +0 0.1337 +0 0.0889 +0 0.1365 +0 0.1401 +0 0.0709 +0 0.2249 +0 0.0918 +0 0.1038 +0 0.2958 +0 0.4033 +0 0.0709 +0 0.1850 +0 0.0768 +0 0.0560 +1 0.7711 +0 0.4926 +0 0.0846 +0 0.2840 +0 0.0785 +1 0.7794 +0 0.0685 +0 0.1550 +0 0.2149 +0 0.1038 +0 0.1044 +0 0.0423 +0 0.3186 +0 0.0541 +0 0.1037 +0 0.5751 +0 0.1571 +0 0.1480 +0 0.2237 +0 0.0788 +0 0.1386 +0 0.1480 +0 0.1389 +0 0.1601 +0 0.2071 +0 0.0619 +0 0.0670 +0 0.1313 +0 0.1818 +0 0.2417 +0 0.0440 +0 0.0966 +0 0.5160 +0 0.0568 +0 0.0604 +0 0.0602 +0 0.1465 +0 0.0870 +0 0.1153 +0 0.7226 +0 0.1028 +0 0.1945 +0 0.1081 +0 0.2456 +0 0.0672 +0 0.1289 +0 0.1816 +0 0.1197 +0 0.2322 +0 0.0500 +0 0.0885 +0 0.3518 +0 0.0638 +0 0.1255 +0 0.0825 +0 0.1637 +0 0.4963 +0 0.0595 +0 0.1078 +0 0.1710 +0 0.1154 +0 0.1831 +0 0.1570 +0 0.4084 +0 0.4561 +0 0.1184 +0 0.2168 +0 0.1460 +0 0.1235 +1 0.8117 +0 0.1450 +0 0.0847 +0 0.0794 +0 0.1003 +0 0.1274 +0 0.0705 +0 0.6613 +0 0.1035 +0 0.1078 +0 0.5734 +0 0.0879 +0 0.0750 +0 0.1209 +0 0.0427 +0 0.2697 +0 0.0599 +0 0.1346 +1 0.7682 +0 0.3954 +0 0.0587 +0 0.0909 +0 0.4390 +0 0.1195 +0 0.0428 +0 0.0698 +0 0.1358 +0 0.3278 +0 0.0739 +0 0.0628 +0 0.0760 +0 0.0785 +0 0.3162 +0 0.0750 +0 0.0696 +0 0.0561 +0 0.1063 +0 0.0914 +0 0.0752 +0 0.0827 +0 0.0813 +0 0.0583 +0 0.2501 +0 0.2263 +0 0.1024 +0 0.0643 +0 0.0639 +0 0.0652 +0 0.1666 +0 0.2067 +0 0.1276 +0 0.1052 +0 0.1758 +0 0.0753 +0 0.0914 +0 0.1064 +0 0.1109 +0 0.1704 +0 0.1385 +0 0.0804 +0 0.1855 +0 0.1160 +0 0.1410 +0 0.0610 +0 0.0748 +0 0.0699 +0 0.0897 +0 0.0393 +0 0.0919 +0 0.0824 +0 0.0990 +0 0.2167 +0 0.1459 +0 0.1231 +0 0.1441 +0 0.2460 +0 0.1348 +0 0.0328 +0 0.2018 +0 0.1675 +0 0.0953 +0 0.0348 +0 0.1546 +1 0.8427 +0 0.0661 +0 0.0811 +0 0.2632 +0 0.0557 +0 0.0822 +0 0.0582 +0 0.1285 +0 0.5078 +0 0.0488 +0 0.1349 +0 0.1474 +0 0.1794 +0 0.1334 +0 0.0323 +0 0.0720 +0 0.1011 +0 0.1304 +0 0.0842 +0 0.1340 +0 0.1330 +0 0.0603 +0 0.1920 +0 0.0774 +0 0.0888 +0 0.2178 +0 0.1596 +0 0.0820 +0 0.0887 +0 0.2168 +0 0.3043 +1 0.8391 +0 0.0748 +0 0.3431 +0 0.1103 +0 0.0797 +0 0.0472 +0 0.0480 +0 0.3237 +0 0.1249 +0 0.1047 +0 0.1014 +0 0.1905 +0 0.0653 +0 0.0732 +0 0.0821 +0 0.1480 +0 0.0425 +0 0.0486 +0 0.1970 +0 0.0790 +0 0.1648 +0 0.6215 +0 0.2243 +0 0.0533 +0 0.0692 +0 0.0687 +0 0.2343 +0 0.1394 +0 0.1515 +0 0.4708 +0 0.0611 +0 0.0582 +1 0.7775 +0 0.0471 +0 0.0882 +0 0.5053 +0 0.1637 +0 0.1511 +0 0.6107 +0 0.0604 +0 0.0567 +0 0.3459 +0 0.0614 +0 0.3250 +0 0.0602 +0 0.0663 +0 0.1803 +0 0.1979 +0 0.0601 +0 0.0901 +0 0.0952 +0 0.3303 +0 0.1231 +0 0.0627 +0 0.0680 +0 0.1516 +0 0.1163 +0 0.0805 +0 0.1264 +0 0.2101 +0 0.2046 +0 0.0417 +0 0.2704 +0 0.1279 +0 0.1175 +0 0.2254 +0 0.0671 +0 0.1659 +0 0.2583 +0 0.1579 +0 0.1312 +0 0.5971 +0 0.0460 +0 0.0967 +0 0.1002 +0 0.1116 +0 0.0968 +0 0.4740 +0 0.0661 +0 0.0476 +1 0.8268 +0 0.1173 +0 0.0963 +0 0.1980 +0 0.1351 +0 0.1054 +0 0.0915 +0 0.0800 +0 0.1917 +0 0.0831 +0 0.1307 +0 0.3324 +0 0.1462 +0 0.1714 +0 0.0840 +0 0.1054 +0 0.1949 +0 0.1601 +0 0.0627 +0 0.0739 +0 0.1834 +0 0.0723 +0 0.0823 +0 0.3725 +0 0.1499 +0 0.0801 +0 0.1714 +0 0.2078 +0 0.0776 +0 0.1691 +0 0.2514 +0 0.3123 +0 0.1912 +0 0.0521 +0 0.0772 +0 0.0801 +0 0.0990 +0 0.0788 +0 0.1036 +0 0.3076 +0 0.0855 +0 0.2039 +0 0.1807 +0 0.1019 +0 0.0610 +0 0.2213 +0 0.0773 +0 0.1604 +0 0.0669 +0 0.0533 +0 0.2129 +0 0.0738 +0 0.0943 +0 0.0895 +0 0.1315 +0 0.2006 +0 0.2139 +0 0.0764 +0 0.1216 +0 0.0814 +0 0.0460 +0 0.0985 +0 0.1025 +0 0.1023 +0 0.6231 +1 0.7839 +0 0.0665 +0 0.1113 +0 0.1949 +0 0.0450 +0 0.0783 +0 0.1772 +0 0.1660 +0 0.0620 +0 0.0646 +0 0.3962 +0 0.1018 +0 0.2078 +0 0.0982 +0 0.0642 +0 0.1519 +0 0.2031 +0 0.0976 +0 0.0322 +0 0.3686 +0 0.3189 +0 0.1143 +0 0.4274 +0 0.0970 +0 0.1138 +0 0.1985 +0 0.0451 +0 0.0940 +0 0.2351 +0 0.2839 +0 0.0608 +0 0.1427 +0 0.0837 +0 0.0792 +0 0.5053 +0 0.0950 +0 0.1633 +0 0.0706 +0 0.1125 +0 0.0595 +0 0.2233 +0 0.1275 +0 0.1819 +0 0.1047 +0 0.0727 +0 0.1102 +0 0.1254 +0 0.2263 +0 0.1865 +0 0.1573 +0 0.1091 +0 0.0623 +0 0.4263 +0 0.1402 +0 0.6443 +0 0.1537 +0 0.1166 +0 0.6232 +0 0.2445 +0 0.1539 +0 0.1372 +0 0.1395 +0 0.0602 +0 0.1763 +0 0.0463 +0 0.1867 +0 0.1071 +0 0.0647 +0 0.0630 +0 0.1075 +0 0.1512 +0 0.1399 +0 0.3073 +0 0.2145 +0 0.1405 +0 0.0387 +0 0.1386 +0 0.1512 +0 0.0640 +0 0.0852 +0 0.3206 +0 0.0988 +0 0.2946 +0 0.1601 +0 0.1283 +0 0.0882 +0 0.0565 +0 0.0637 +0 0.0927 +0 0.0715 +0 0.0645 +0 0.1582 +0 0.1557 +0 0.0942 +0 0.1395 +0 0.2129 +0 0.1064 +0 0.1085 +0 0.0830 +0 0.1003 +0 0.0823 +0 0.1133 +0 0.0838 +0 0.2431 +0 0.2012 +0 0.2762 +0 0.3214 +0 0.6057 +0 0.0817 +0 0.1505 +0 0.1007 +0 0.0936 +0 0.0684 +0 0.0655 +0 0.1676 +0 0.0485 +0 0.1563 +0 0.1924 +0 0.2760 +0 0.1270 +0 0.1249 +0 0.1192 +0 0.1303 +0 0.1141 +0 0.1748 +0 0.0646 +0 0.0392 +0 0.2000 +0 0.0546 +0 0.0549 +0 0.0848 +0 0.0762 +0 0.1624 +0 0.1379 +0 0.0745 +0 0.0992 +0 0.0917 +0 0.2881 +0 0.1981 +0 0.0977 +0 0.4287 +0 0.0861 +0 0.1067 +0 0.2571 +0 0.0960 +1 0.8568 +0 0.0598 +0 0.1883 +0 0.0435 +0 0.1101 +0 0.1559 +0 0.0783 +0 0.1252 +0 0.0767 +0 0.0861 +0 0.0583 +0 0.0977 +0 0.2509 +0 0.6300 +0 0.1310 +0 0.5047 +0 0.2151 +0 0.1686 +0 0.0972 +0 0.0649 +0 0.0890 +0 0.0705 +0 0.1958 +1 0.7925 +0 0.1010 +0 0.1952 +0 0.0994 +0 0.0860 +0 0.1369 +0 0.1244 +0 0.0580 +0 0.0922 +0 0.0652 +0 0.1820 +0 0.2625 +0 0.1427 +0 0.1022 +0 0.1019 +0 0.2742 +0 0.1867 +0 0.0828 +0 0.0606 +0 0.0979 +0 0.1078 +0 0.1271 +0 0.1206 +0 0.0460 +0 0.0861 +0 0.1756 +0 0.4069 +0 0.1286 +0 0.0812 +0 0.0978 +1 0.7866 +0 0.1397 +0 0.1143 +0 0.2018 +0 0.2787 +0 0.1631 +0 0.0975 +0 0.0545 +0 0.0825 +0 0.1012 +0 0.1517 +0 0.0462 +0 0.0584 +0 0.2967 +0 0.0993 +0 0.0983 +0 0.1281 +0 0.0946 +0 0.0459 +0 0.1489 +0 0.1068 +0 0.1696 +0 0.0773 +0 0.1057 +0 0.4558 +0 0.1644 +0 0.0599 +0 0.0906 +0 0.1412 +0 0.1878 +0 0.0778 +0 0.0672 +0 0.1391 +0 0.1435 +0 0.1539 +0 0.1540 +0 0.1121 +0 0.1734 +0 0.0507 +0 0.0605 +0 0.0757 +0 0.1560 +0 0.1332 +0 0.2375 +0 0.0597 +0 0.0717 +0 0.1418 +0 0.0752 +0 0.1070 +0 0.2054 +0 0.2551 +0 0.1063 +0 0.0753 +0 0.1282 +0 0.1299 +0 0.3044 +0 0.0472 +0 0.0452 +0 0.1163 +0 0.1066 +0 0.1419 +0 0.0609 +0 0.0636 +0 0.1980 +0 0.0768 +0 0.0482 +0 0.0555 +0 0.1035 +0 0.1152 +0 0.5124 +0 0.0771 +0 0.0712 +0 0.1111 +0 0.0561 +0 0.1432 +0 0.1381 +0 0.3136 +0 0.0846 +0 0.0785 +0 0.2047 +0 0.0590 +0 0.0725 +0 0.0919 +0 0.1189 +0 0.0929 +0 0.3549 +0 0.0644 +0 0.1605 +0 0.0920 +0 0.1018 +0 0.0790 +0 0.0925 +0 0.2453 +0 0.0503 +0 0.1044 +0 0.2377 +0 0.7435 +0 0.0847 +1 0.8054 +0 0.1972 +0 0.1785 +0 0.3237 +0 0.0385 +0 0.0603 +0 0.0747 +0 0.1329 +0 0.2447 +0 0.3802 +0 0.5655 +0 0.0488 +0 0.1037 +0 0.1315 +0 0.0441 +0 0.2704 +0 0.2011 +0 0.0531 +0 0.0579 +0 0.2536 +0 0.0754 +0 0.7481 +0 0.0812 +0 0.1963 +0 0.1680 +0 0.0545 +0 0.2001 +0 0.0864 +0 0.0743 +0 0.0765 +0 0.0612 +0 0.0536 +0 0.1416 +0 0.2724 +0 0.0824 +0 0.2464 +0 0.1724 +0 0.1394 +0 0.0683 +0 0.2358 +0 0.2431 +0 0.1523 +0 0.0875 +0 0.0986 +0 0.0686 +0 0.0831 +0 0.1570 +0 0.0527 +0 0.0723 +0 0.2148 +0 0.0812 +0 0.1307 +0 0.2947 +0 0.1679 +0 0.0587 +0 0.2674 +0 0.1315 +0 0.0881 +0 0.2020 +0 0.0557 +0 0.1926 +0 0.1128 +0 0.1784 +0 0.0659 +0 0.1063 +0 0.3355 +0 0.0791 +0 0.0761 +0 0.5277 +0 0.0707 +0 0.1103 +0 0.2118 +0 0.1076 +0 0.0397 +0 0.1640 +0 0.3522 +0 0.2092 +0 0.4933 +0 0.0857 +0 0.0703 +0 0.1921 +0 0.0969 +0 0.0949 +0 0.0734 +0 0.0750 +0 0.0580 +0 0.1850 +0 0.1329 +0 0.0436 +0 0.0963 +0 0.0664 +0 0.0846 +0 0.2486 +0 0.3147 +0 0.0722 +0 0.3021 +0 0.1734 +0 0.2398 +0 0.1886 +0 0.1963 +0 0.1192 +0 0.5297 +0 0.1349 +0 0.1553 +0 0.0913 +0 0.0762 +0 0.1596 +0 0.0659 +0 0.0877 +0 0.0645 +0 0.0721 +0 0.0508 +0 0.1326 +0 0.1362 +0 0.0704 +0 0.2364 +0 0.2200 +0 0.0492 +0 0.2492 +0 0.1744 +0 0.2574 +0 0.2229 +0 0.4350 +0 0.0974 +0 0.1003 +0 0.7178 +0 0.0865 +0 0.0592 +0 0.0711 +0 0.0426 +0 0.0975 +0 0.1067 +0 0.0588 +0 0.0353 +1 0.8129 +0 0.1081 +0 0.2179 +0 0.1574 +0 0.2016 +0 0.1349 +0 0.1738 +0 0.0837 +0 0.2369 +0 0.1024 +0 0.1164 +0 0.2497 +0 0.1234 +0 0.1049 +0 0.3732 +0 0.0476 +0 0.0635 +0 0.1344 +0 0.1871 +0 0.5082 +0 0.0568 +0 0.0796 +0 0.0609 +0 0.0529 +0 0.1047 +0 0.1113 +0 0.0768 +0 0.0914 +0 0.3796 +0 0.0810 +0 0.0759 +0 0.1586 +0 0.1440 +0 0.1166 +0 0.0953 +0 0.0509 +0 0.2381 +0 0.0978 +0 0.1186 +0 0.2206 +0 0.1008 +0 0.3081 +0 0.0662 +0 0.1831 +0 0.3530 +0 0.7366 +0 0.0538 +0 0.0910 +0 0.0696 +0 0.1022 +0 0.0614 +0 0.1016 +0 0.3329 +0 0.1651 +0 0.1030 +0 0.0640 +0 0.1059 +0 0.1125 +0 0.1680 +0 0.0894 +0 0.0779 +0 0.1351 +0 0.2096 +0 0.1609 +0 0.1118 +0 0.2558 +0 0.0549 +0 0.1458 +0 0.2080 +0 0.1188 +0 0.0417 +0 0.0797 +0 0.0716 +0 0.1782 +0 0.1215 +0 0.1784 +0 0.1583 +0 0.1315 +0 0.1025 +0 0.2158 +0 0.1333 +0 0.1144 +0 0.2789 +0 0.1118 +0 0.3615 +0 0.6670 +0 0.1033 +0 0.1093 +0 0.0393 +0 0.1118 +0 0.1988 +0 0.0954 +0 0.2387 +0 0.5022 +0 0.3220 +1 0.8364 +0 0.4027 +0 0.0488 +0 0.0811 +0 0.1392 +0 0.3082 +0 0.0713 +0 0.1737 +0 0.0911 +0 0.1950 +0 0.0711 +0 0.2816 +0 0.1653 +0 0.0960 +0 0.1272 +0 0.3562 +0 0.0680 +0 0.0560 +0 0.0602 +1 0.7805 +0 0.1048 +0 0.1626 +0 0.7316 +0 0.1941 +0 0.2163 +0 0.0421 +0 0.1412 +0 0.0431 +0 0.1918 +1 0.7776 +0 0.0818 +0 0.1036 +0 0.3132 +0 0.0659 +0 0.0950 +0 0.1277 +0 0.1087 +0 0.2253 +0 0.0661 +0 0.1938 +0 0.2326 +0 0.0797 +0 0.0766 +0 0.2686 +0 0.1123 +0 0.1075 +1 0.7680 +0 0.2035 +0 0.0620 +0 0.2704 +0 0.1956 +0 0.1439 +0 0.0833 +0 0.1190 +0 0.0822 +0 0.0471 +0 0.4355 +0 0.1251 +0 0.0751 +0 0.1988 +0 0.1465 +0 0.1398 +0 0.0736 +0 0.4202 +0 0.0754 +0 0.6477 +0 0.0534 +0 0.0749 +0 0.1190 +0 0.0806 +0 0.2586 +0 0.5021 +0 0.2472 +0 0.0649 +0 0.3016 +0 0.0734 +0 0.0808 +0 0.0719 +0 0.1164 +0 0.1361 +0 0.0768 +0 0.0588 +0 0.0796 +0 0.0505 +0 0.0990 +0 0.1085 +0 0.0884 +0 0.0899 +0 0.1981 +0 0.0514 +0 0.1253 +0 0.1863 +0 0.1947 +0 0.1625 +0 0.0725 +0 0.0646 +0 0.1033 +0 0.0721 +0 0.3915 +0 0.0717 +0 0.1514 +0 0.0623 +0 0.0669 +0 0.1105 +0 0.0877 +0 0.1030 +0 0.6595 +0 0.1467 +0 0.2826 +0 0.0886 +0 0.0946 +0 0.0994 +0 0.0679 +1 0.8856 +0 0.1108 +0 0.0545 +1 0.3958 +0 0.0674 +0 0.1608 +0 0.1886 +0 0.0922 +0 0.0771 +0 0.1730 +0 0.0772 +0 0.1513 +0 0.1484 +0 0.0556 +0 0.1264 +0 0.0833 +0 0.1660 +0 0.2223 +0 0.1098 +0 0.1330 +0 0.1788 +0 0.1204 +0 0.3911 +1 0.8647 +0 0.1106 +0 0.2490 +1 0.8551 +0 0.0822 +0 0.0485 +0 0.6504 +0 0.1353 +0 0.0565 +0 0.1416 +0 0.1242 +0 0.4391 +1 0.8172 +1 0.8135 +0 0.6728 +0 0.0629 +0 0.1916 +0 0.0948 +0 0.1581 +0 0.1995 +0 0.0876 +0 0.0865 +0 0.1904 +0 0.1524 +0 0.1284 +0 0.1129 +0 0.0468 +0 0.2092 +1 0.7761 +0 0.5568 +0 0.3182 +0 0.0565 +0 0.1174 +0 0.0845 +0 0.3246 +0 0.0928 +0 0.1673 +0 0.1546 +0 0.0840 +0 0.3771 +0 0.1414 +0 0.0555 +0 0.0988 +0 0.0865 +0 0.0733 +0 0.2261 +0 0.0700 +0 0.1201 +0 0.0477 +0 0.0553 +0 0.0553 +0 0.2257 +0 0.1790 +0 0.3187 +0 0.2423 +0 0.1692 +0 0.1431 +0 0.0996 +0 0.1291 +0 0.0415 +0 0.1858 +0 0.3294 +0 0.1229 +0 0.0778 +0 0.0597 +0 0.0501 +0 0.0629 +0 0.3460 +0 0.0536 +0 0.1383 +0 0.3528 +0 0.0408 +0 0.0464 +0 0.0596 +0 0.1100 +0 0.1093 +0 0.0967 +0 0.2574 +0 0.0939 +0 0.1629 +0 0.1711 +0 0.0588 +0 0.6322 +0 0.0942 +0 0.0984 +0 0.1932 +0 0.0626 +0 0.3498 +0 0.1928 +0 0.3873 +0 0.0840 +0 0.0536 +0 0.1893 +0 0.0833 +0 0.6057 +0 0.1535 +0 0.2645 +1 0.8610 +0 0.1093 +0 0.1124 +0 0.0515 +0 0.1130 +0 0.3462 +0 0.1403 +0 0.0557 +0 0.2937 +0 0.0500 +0 0.2593 +0 0.0946 +0 0.0869 +0 0.0470 +0 0.0544 +0 0.2758 +0 0.0488 +0 0.1795 +0 0.0816 +0 0.1054 +0 0.0933 +0 0.1069 +0 0.0446 +0 0.0588 +0 0.1024 +0 0.0489 +0 0.0683 +0 0.6343 +0 0.0516 +0 0.3979 +0 0.0626 +0 0.1109 +0 0.1835 +0 0.1881 +0 0.1735 +0 0.0458 +0 0.0709 +0 0.2324 +0 0.1772 +0 0.1909 +0 0.1751 +0 0.1214 +0 0.0713 +0 0.3430 +0 0.0888 +0 0.0901 +0 0.3697 +0 0.1680 +0 0.0970 +0 0.1999 +0 0.1100 +0 0.1562 +0 0.0496 +0 0.1193 +0 0.0576 +0 0.1273 +0 0.0659 +0 0.2720 +0 0.1716 +0 0.0981 +0 0.0559 +0 0.0726 +0 0.0473 +0 0.2239 +0 0.1011 +0 0.0614 +0 0.2791 +0 0.0741 +1 0.8403 +0 0.1364 +0 0.0755 +0 0.0426 +0 0.2828 +0 0.0725 +0 0.1305 +0 0.1014 +0 0.0723 +0 0.2079 +0 0.1428 +0 0.0406 +0 0.1334 +0 0.6623 +0 0.1621 +0 0.1095 +0 0.2212 +0 0.0644 +0 0.0860 +0 0.1403 +0 0.0451 +0 0.1582 +0 0.0877 +0 0.6351 +0 0.2010 +0 0.1332 +0 0.2286 +0 0.1475 +0 0.2132 +0 0.1204 +0 0.1416 +0 0.1099 +0 0.2899 +0 0.0356 +0 0.1416 +0 0.1367 +0 0.1497 +0 0.0963 +0 0.1431 +0 0.1018 +0 0.2067 +0 0.2179 +0 0.0584 +0 0.1060 +0 0.2266 +0 0.0542 +0 0.1538 +0 0.1879 +0 0.1525 +0 0.0498 +0 0.1096 +0 0.1550 +0 0.0922 +0 0.3793 +0 0.1286 +0 0.0733 +0 0.2293 +0 0.1254 +0 0.0506 +0 0.0993 +0 0.1325 +0 0.1912 +0 0.1428 +0 0.0367 +0 0.0734 +0 0.0837 +0 0.0916 +0 0.1378 +0 0.1773 +0 0.3013 +0 0.1067 +0 0.0419 +0 0.6487 +0 0.0369 +0 0.2358 +0 0.0703 +0 0.0559 +0 0.0550 +0 0.1842 +0 0.1855 +0 0.0732 +0 0.1118 +0 0.0673 +0 0.0888 +0 0.1394 +0 0.0566 +0 0.0925 +0 0.1423 +0 0.1107 +0 0.1275 +0 0.0934 +0 0.3883 +0 0.0720 +0 0.2251 +0 0.1850 +0 0.0527 +0 0.1416 +0 0.1796 +0 0.0387 +0 0.1354 +0 0.1311 +0 0.0990 +0 0.1245 +0 0.0816 +0 0.0748 +0 0.1115 +0 0.1506 +0 0.0983 +0 0.1876 +0 0.0464 +0 0.0425 +1 0.7561 +0 0.0310 +0 0.0794 +0 0.3295 +0 0.0871 +0 0.3376 +0 0.1217 +0 0.0722 +0 0.0893 +0 0.1054 +0 0.2167 +0 0.2120 +0 0.1018 +0 0.1023 +0 0.1190 +0 0.3266 +0 0.1649 +0 0.1611 +0 0.1404 +0 0.0648 +0 0.0411 +0 0.0748 +0 0.0592 +0 0.1658 +0 0.0677 +0 0.0732 +0 0.1375 +0 0.1678 +0 0.0770 +0 0.0554 +0 0.0765 +1 0.7730 +0 0.1041 +0 0.0817 +0 0.1694 +0 0.0428 +0 0.0980 +0 0.1288 +0 0.1218 +0 0.4094 +0 0.2408 +0 0.1064 +0 0.0730 +0 0.6601 +0 0.1783 +0 0.1002 +0 0.1377 +0 0.2443 +0 0.1716 +0 0.1135 +0 0.5669 +0 0.1178 +0 0.1235 +0 0.1809 +0 0.3403 +0 0.0891 +0 0.1300 +0 0.1644 +0 0.1960 +0 0.0753 +0 0.1640 +0 0.2097 +0 0.0511 +0 0.0739 +0 0.0686 +0 0.0677 +0 0.1766 +0 0.2009 +0 0.1492 +0 0.1459 +0 0.0707 +0 0.4071 +0 0.0993 +0 0.1765 +0 0.0373 +0 0.2565 +0 0.3619 +0 0.1609 +0 0.3025 +0 0.1005 +0 0.0695 +0 0.0591 +0 0.0670 +0 0.0565 +0 0.0807 +0 0.1211 +0 0.0518 +0 0.0612 +0 0.0967 +0 0.0633 +0 0.2779 +0 0.1472 +0 0.0591 +0 0.2016 +0 0.1290 +0 0.1280 +0 0.1208 +0 0.1470 +0 0.2203 +0 0.1147 +0 0.0426 +0 0.1238 +0 0.0821 +0 0.1517 +0 0.0611 +0 0.0684 +0 0.2045 +0 0.0598 +0 0.0761 +0 0.0819 +0 0.0426 +0 0.0885 +0 0.0887 +0 0.1147 +0 0.0599 +0 0.0625 +0 0.0619 +0 0.1868 +0 0.1128 +0 0.0358 +0 0.0577 +0 0.2076 +0 0.2577 +0 0.0694 +0 0.1861 +0 0.1138 +0 0.0636 +0 0.0942 +0 0.0912 +0 0.1282 +0 0.2093 +0 0.4556 +0 0.0871 +0 0.1647 +0 0.1831 +0 0.1111 +1 0.7741 +0 0.0747 +0 0.1408 +0 0.4257 +1 0.7579 +0 0.0314 +0 0.0929 +0 0.2519 +0 0.2302 +0 0.2783 +0 0.1034 +0 0.3033 +0 0.0380 +0 0.1769 +0 0.1562 +0 0.1148 +0 0.5899 +0 0.1060 +0 0.1148 +0 0.0852 +0 0.0307 +0 0.1577 +0 0.1307 +0 0.1599 +0 0.0422 +0 0.1216 +0 0.1078 +0 0.0971 +0 0.0763 +0 0.1188 +0 0.1233 +0 0.0874 +0 0.1145 +0 0.0727 +0 0.0573 +0 0.3186 +0 0.0666 +0 0.0713 +0 0.1481 +0 0.0735 +0 0.1355 +0 0.0937 +0 0.0591 +0 0.1397 +0 0.0981 +0 0.0390 +0 0.0879 +0 0.1523 +0 0.6975 +0 0.0810 +0 0.1519 +0 0.6170 +0 0.1820 +0 0.1314 +0 0.0792 +0 0.0864 +0 0.1659 +0 0.0927 +1 0.7556 +0 0.1427 +0 0.0710 +0 0.0733 +0 0.0503 +0 0.0508 +0 0.1227 +0 0.2039 +0 0.2236 +0 0.0972 +0 0.1475 +0 0.1388 +0 0.0860 +0 0.0916 +0 0.0681 +0 0.1166 +0 0.1083 +0 0.2119 +0 0.0953 +0 0.1255 +0 0.0695 +0 0.0826 +0 0.1036 +0 0.0984 +0 0.1205 +0 0.0912 +0 0.1165 +0 0.1182 +0 0.0483 +0 0.0902 +0 0.1625 +0 0.1439 +0 0.1068 +0 0.0827 +0 0.1899 +0 0.1582 +0 0.0843 +0 0.0932 +0 0.1563 +0 0.0668 +0 0.0928 +0 0.2074 +0 0.0452 +0 0.1254 +0 0.2311 +0 0.0448 +0 0.1053 +0 0.0652 +0 0.0584 +0 0.1327 +0 0.1012 +0 0.1346 +0 0.2642 +0 0.2394 +0 0.0342 +0 0.0568 +0 0.1516 +0 0.2844 +0 0.0813 +0 0.0889 +0 0.0899 +0 0.0552 +0 0.0852 +0 0.3617 +0 0.1362 +0 0.0615 +0 0.2536 +0 0.4052 +0 0.0519 +0 0.0630 +0 0.1886 +0 0.1050 +0 0.0671 +0 0.1758 +0 0.0928 +0 0.1504 +0 0.1342 +0 0.0756 +0 0.1736 +0 0.0978 +0 0.2936 +0 0.0660 +0 0.1014 +0 0.1856 +0 0.5484 +0 0.1848 +0 0.1460 +0 0.0813 +0 0.0916 +0 0.1546 +0 0.0720 +0 0.0969 +0 0.1239 +0 0.0471 +0 0.0654 +0 0.1446 +0 0.1365 +0 0.0730 +0 0.1192 +0 0.0812 +0 0.0957 +0 0.0826 +0 0.0842 +0 0.2684 +0 0.0810 +0 0.0972 +0 0.5967 +0 0.0484 +0 0.1672 +0 0.0520 +0 0.1094 +0 0.3639 +0 0.1122 +0 0.1720 +0 0.1513 +0 0.1247 +0 0.1486 +0 0.2134 +0 0.0651 +0 0.0922 +0 0.0712 +0 0.1063 +0 0.1149 +0 0.2366 +0 0.2300 +0 0.1011 +0 0.0808 +0 0.1635 +0 0.1196 +0 0.0491 +0 0.1626 +0 0.0520 +0 0.0704 +0 0.0935 +0 0.1848 +0 0.0875 +0 0.0877 +0 0.2023 +0 0.5313 +0 0.1113 +0 0.2015 +0 0.0710 +0 0.0779 +0 0.0802 +0 0.3448 +0 0.0687 +0 0.0513 +0 0.0670 +0 0.2709 +0 0.5803 +0 0.1094 +0 0.1211 +0 0.0630 +0 0.1023 +0 0.2475 +0 0.0858 +0 0.0981 +0 0.1191 +0 0.2160 +0 0.1367 +0 0.0956 +0 0.1583 +0 0.1040 +0 0.0381 +0 0.0704 +0 0.1376 +0 0.3395 +0 0.2645 +0 0.0474 +0 0.1814 +0 0.1882 +0 0.1618 +0 0.1673 +0 0.1557 +0 0.1049 +0 0.0544 +0 0.0864 +0 0.0962 +0 0.0830 +0 0.0367 +0 0.1250 +0 0.2298 +0 0.0734 +0 0.2816 +0 0.0928 +0 0.1328 +0 0.1129 +0 0.1336 +0 0.0789 +0 0.1821 +0 0.2813 +0 0.0632 +0 0.0856 +0 0.0890 +0 0.0584 +0 0.0520 +0 0.0944 +0 0.1081 +0 0.0362 +0 0.1211 +0 0.1811 +0 0.2524 +0 0.1076 +0 0.3469 +0 0.0451 +0 0.1033 +0 0.1981 +0 0.0970 +0 0.0843 +0 0.1526 +0 0.1160 +0 0.1431 +0 0.0911 +0 0.0842 +0 0.4495 +0 0.0579 +0 0.2182 +0 0.1608 +0 0.1100 +0 0.6350 +0 0.2990 +0 0.1675 +0 0.1080 +1 0.8213 +0 0.0668 +0 0.1767 +0 0.1563 +0 0.2124 +0 0.0419 +0 0.0575 +0 0.1209 +0 0.1159 +0 0.1021 +0 0.0380 +0 0.0892 +0 0.0802 +0 0.0545 +0 0.0781 +0 0.3969 +0 0.0717 +0 0.3944 +0 0.0793 +0 0.0626 +0 0.0463 +0 0.1328 +0 0.4121 +0 0.0587 +0 0.0684 +0 0.1174 +0 0.1370 +0 0.0584 +0 0.1050 +0 0.1520 +0 0.1791 +0 0.0669 +0 0.1817 +0 0.1701 +0 0.1096 +0 0.0625 +0 0.2856 +0 0.1637 +0 0.3270 +0 0.1263 +0 0.1279 +0 0.2884 +0 0.1314 +0 0.2048 +0 0.2499 +0 0.1077 +0 0.1577 +0 0.7378 +0 0.0955 +0 0.6638 +0 0.1945 +0 0.0450 +0 0.0830 +0 0.1308 +0 0.1124 +0 0.1305 +0 0.2646 +0 0.3072 +0 0.0540 +0 0.3415 +0 0.0821 +0 0.0629 +0 0.0520 +0 0.0561 +0 0.1572 +0 0.1127 +0 0.2416 +0 0.2768 +0 0.2128 +1 0.8372 +0 0.1232 +0 0.0970 +0 0.0955 +0 0.1307 +0 0.0843 +0 0.0836 +0 0.0836 +0 0.0497 +0 0.0590 +0 0.0771 +1 0.7943 +0 0.2121 +0 0.2365 +0 0.0930 +1 0.8363 +0 0.1380 +0 0.0711 +0 0.1374 +0 0.1657 +0 0.0718 +0 0.1065 +0 0.0351 +0 0.2248 +0 0.1036 +0 0.0800 +0 0.1608 +0 0.0920 +0 0.1648 +0 0.1158 +0 0.0715 +0 0.1202 +0 0.5629 +0 0.0407 +0 0.1005 +0 0.3315 +0 0.0620 +0 0.1432 +0 0.1111 +0 0.1362 +0 0.0605 +0 0.1220 +0 0.0895 +0 0.2310 +0 0.1517 +0 0.1513 +0 0.0271 +0 0.0730 +0 0.2770 +0 0.1855 +0 0.0960 +0 0.0490 +0 0.1723 +0 0.1742 +0 0.0844 +0 0.2550 +0 0.1376 +0 0.0433 +0 0.0613 +0 0.1843 +0 0.2301 +0 0.0598 +0 0.2576 +0 0.1888 +0 0.0528 +0 0.1283 +0 0.1009 +0 0.0779 +0 0.1201 +0 0.1626 +0 0.1384 +0 0.1013 +0 0.0969 +0 0.0921 +0 0.1646 +0 0.0832 +0 0.1167 +0 0.1284 +0 0.1405 +0 0.2837 +0 0.1759 +0 0.0656 +0 0.0820 +0 0.1236 +0 0.6738 +0 0.0619 +0 0.1100 +0 0.0430 +0 0.0585 +0 0.1242 +0 0.0516 +0 0.1087 +0 0.1482 +0 0.0599 +0 0.1514 +0 0.6650 +0 0.2765 +0 0.1818 +0 0.2604 +0 0.0917 +0 0.2665 +0 0.1641 +0 0.0420 +0 0.0987 +0 0.0541 +0 0.2827 +0 0.4343 +0 0.0747 +0 0.1375 +0 0.1230 +0 0.0544 +0 0.0798 +0 0.2117 +0 0.2930 +0 0.5000 +0 0.0617 +0 0.1142 +0 0.1047 +0 0.0637 +0 0.1233 +0 0.1369 +0 0.1046 +0 0.5692 +0 0.0692 +0 0.0351 +0 0.0430 +0 0.0542 +0 0.0626 +0 0.1247 +0 0.2872 +0 0.3687 +0 0.0643 +0 0.0535 +0 0.1129 +0 0.1930 +0 0.4070 +0 0.1744 +0 0.0899 +0 0.1621 +0 0.0564 +0 0.0699 +0 0.6869 +0 0.1453 +0 0.0575 +0 0.0492 +0 0.0767 +0 0.1231 +0 0.1239 +0 0.0773 +0 0.0434 +0 0.3762 +0 0.2644 +0 0.1299 +0 0.5235 +0 0.1843 +0 0.1112 +0 0.0550 +0 0.0848 +0 0.4139 +0 0.1584 +0 0.1067 +0 0.2204 +0 0.0708 +0 0.0950 +0 0.2919 +0 0.1338 +0 0.0890 +0 0.0903 +0 0.1424 +0 0.0765 +0 0.1064 +0 0.0660 +0 0.1330 +0 0.0499 +0 0.1763 +0 0.1217 +0 0.1263 +0 0.0798 +0 0.0811 +0 0.0845 +0 0.0585 +0 0.0927 +0 0.0718 +0 0.0699 +0 0.1058 +0 0.1893 +0 0.0376 +0 0.0706 +0 0.0678 +0 0.0325 +0 0.3392 +0 0.0369 +0 0.0740 +0 0.1631 +0 0.1108 +0 0.1661 +0 0.1932 +0 0.0774 +0 0.0344 +0 0.1464 +1 0.8602 +0 0.0500 +0 0.1399 +0 0.0893 +0 0.0828 +0 0.1393 +0 0.2202 +0 0.0861 +0 0.0870 +0 0.1070 +0 0.1013 +0 0.1055 +0 0.0464 +0 0.1368 +0 0.0469 +0 0.1172 +0 0.1647 +0 0.0617 +0 0.1041 +0 0.2013 +0 0.1159 +0 0.0737 +0 0.0879 +0 0.1366 +0 0.0602 +0 0.0485 +0 0.1386 +0 0.0809 +0 0.1065 +0 0.0663 +0 0.0435 +0 0.2195 +0 0.0934 +0 0.1181 +1 0.8444 +0 0.7465 +0 0.0908 +0 0.1138 +0 0.0552 +0 0.0819 +0 0.1401 +0 0.2255 +0 0.1490 +0 0.0981 +0 0.0463 +0 0.0741 +0 0.0572 +0 0.1337 +0 0.1128 +0 0.3128 +0 0.1660 +0 0.1365 +0 0.0682 +0 0.0828 +0 0.0934 +0 0.1140 +0 0.1012 +0 0.1052 +0 0.0807 +0 0.0535 +0 0.2546 +0 0.1192 +0 0.1109 +0 0.1586 +0 0.0910 +0 0.1007 +0 0.2416 +0 0.0866 +0 0.0852 +0 0.0586 +0 0.1604 +0 0.0690 +0 0.0848 +0 0.0397 +0 0.0489 +0 0.1354 +0 0.1010 +0 0.1254 +0 0.0425 +0 0.0499 +0 0.0886 +0 0.0576 +0 0.1082 +0 0.0457 +0 0.1158 +0 0.0539 +0 0.0958 +1 0.8763 +0 0.1978 +1 0.8483 +0 0.0893 +0 0.1419 +0 0.1013 +0 0.1989 +0 0.0490 +0 0.2085 +0 0.0808 +0 0.3807 +0 0.2409 +0 0.0487 +0 0.1107 +0 0.0879 +0 0.2399 +0 0.2326 +0 0.0790 +0 0.2155 +0 0.0548 +0 0.0944 +0 0.1119 +0 0.4044 +0 0.0867 +0 0.2407 +0 0.0437 +0 0.2021 +0 0.0954 +1 0.8336 +0 0.0857 +0 0.1562 +0 0.0666 +0 0.1201 +0 0.0818 +0 0.0948 +0 0.0805 +0 0.0881 +0 0.1509 +0 0.1426 +0 0.2260 +0 0.0374 +0 0.0630 +0 0.0930 +0 0.0824 +0 0.2143 +0 0.2161 +0 0.1889 +0 0.4190 +0 0.0699 +0 0.0368 +0 0.7083 +0 0.1059 +0 0.0341 +0 0.0591 +0 0.1025 +0 0.0653 +0 0.0712 +0 0.0546 +0 0.0968 +0 0.0693 +0 0.3316 +0 0.1313 +0 0.0593 +0 0.0923 +1 0.8416 +0 0.1013 +0 0.0696 +0 0.0865 +0 0.0589 +0 0.0898 +0 0.0646 +0 0.1025 +0 0.1272 +0 0.0570 +0 0.1081 +0 0.1892 +0 0.1924 +0 0.0469 +0 0.1657 +0 0.4381 +0 0.0674 +0 0.0899 +0 0.2714 +0 0.0406 +0 0.1028 +0 0.0559 +0 0.0886 +0 0.0371 +0 0.0843 +0 0.1902 +0 0.6399 +0 0.1053 +0 0.0869 +0 0.0533 +0 0.0908 +0 0.0648 +0 0.0447 +0 0.1709 +0 0.3526 +0 0.0647 +0 0.1361 +0 0.0865 +1 0.7579 +0 0.5912 +0 0.1558 +0 0.2809 +0 0.1378 +0 0.1114 +0 0.1489 +0 0.2961 +0 0.1871 +0 0.0943 +0 0.1535 +0 0.1049 +0 0.0991 +0 0.0774 +0 0.1318 +0 0.0636 +0 0.1320 +0 0.1619 +0 0.4163 +0 0.4454 +0 0.0649 +0 0.0783 +0 0.0793 +0 0.0955 +0 0.1655 +0 0.3058 +0 0.1022 +0 0.0879 +0 0.0414 +0 0.1308 +0 0.1392 +0 0.1601 +0 0.0597 +0 0.1141 +0 0.1307 +0 0.1565 +0 0.1618 +0 0.1635 +0 0.1481 +0 0.2058 +0 0.1145 +0 0.2005 +0 0.0479 +0 0.0958 +0 0.1340 +0 0.1035 +0 0.0663 +0 0.1246 +0 0.1199 +0 0.2006 +0 0.0887 +0 0.1185 +0 0.0366 +0 0.0743 +0 0.0976 +0 0.1362 +0 0.0554 +0 0.1489 +0 0.1097 +0 0.1465 +0 0.2796 +0 0.1059 +0 0.0500 +0 0.0848 +0 0.2498 +0 0.5512 +0 0.0618 +0 0.4202 +0 0.2478 +0 0.1404 +0 0.1268 +0 0.0859 +0 0.2113 +0 0.3716 +0 0.0553 +0 0.1070 +0 0.0547 +0 0.2764 +0 0.1481 +0 0.0800 +0 0.3755 +0 0.2113 +0 0.0974 +0 0.0939 +0 0.1557 +0 0.0657 +0 0.0843 +0 0.0707 +0 0.1444 +0 0.1706 +0 0.0609 +0 0.1503 +0 0.1155 +0 0.0466 +0 0.0783 +0 0.0746 +0 0.0930 +0 0.1702 +0 0.0759 +0 0.1136 +0 0.1159 +0 0.1069 +0 0.1433 +0 0.0755 +0 0.1676 +0 0.1064 +0 0.0844 +0 0.1360 +0 0.0600 +0 0.0843 +0 0.1694 +0 0.6362 +0 0.1524 +0 0.1206 +0 0.0949 +0 0.1375 +1 0.7627 +0 0.1655 +0 0.2175 +0 0.0730 +0 0.0468 +0 0.2243 +0 0.1366 +0 0.0868 +0 0.2822 +0 0.0580 +0 0.2392 +0 0.1269 +0 0.6808 +0 0.0928 +0 0.0626 +0 0.0781 +0 0.1006 +0 0.4194 +0 0.1511 +0 0.0519 +0 0.0708 +0 0.2191 +0 0.2902 +0 0.0627 +0 0.0807 +0 0.1891 +0 0.1641 +0 0.0603 +0 0.5782 +0 0.0693 +0 0.2024 +0 0.0654 +0 0.2080 +0 0.3051 +0 0.1414 +0 0.0448 +0 0.4442 +0 0.1931 +0 0.4806 +0 0.1544 +0 0.0447 +0 0.0591 +0 0.5391 +0 0.1012 +0 0.0513 +0 0.0401 +0 0.0787 +0 0.2141 +0 0.0955 +0 0.2026 +0 0.0807 +0 0.0555 +0 0.3074 +0 0.1637 +0 0.3209 +0 0.0591 +0 0.0808 +0 0.2064 +0 0.1018 +0 0.0792 +0 0.1007 +0 0.1043 +0 0.1863 +0 0.0733 +0 0.0838 +0 0.1310 +0 0.0692 +0 0.1113 +0 0.0883 +0 0.0555 +0 0.2150 +0 0.0801 +0 0.0376 +0 0.0913 +0 0.4188 +0 0.1242 +0 0.0672 +0 0.0583 +0 0.0801 +0 0.1579 +0 0.0321 +0 0.1106 +0 0.0693 +0 0.1326 +0 0.7488 +0 0.2126 +0 0.0893 +0 0.2057 +0 0.0511 +0 0.7342 +0 0.1118 +0 0.6895 +0 0.1303 +0 0.0682 +0 0.4624 +1 0.8820 +0 0.1291 +0 0.0922 +0 0.0578 +0 0.1106 +0 0.1059 +0 0.6652 +0 0.0590 +0 0.0473 +0 0.0876 +0 0.0439 +0 0.1555 +0 0.0672 +0 0.1359 +0 0.1237 +0 0.1182 +0 0.1769 +0 0.2109 +0 0.1017 +0 0.0810 +0 0.1100 +0 0.0629 +0 0.0660 +0 0.0720 +0 0.1082 +0 0.1063 +0 0.0886 +0 0.7235 +0 0.0889 +0 0.0838 +0 0.1292 +0 0.2428 +0 0.1771 +0 0.0708 +0 0.0622 +0 0.0572 +0 0.1235 +0 0.1918 +0 0.0949 +0 0.1432 +0 0.0923 +0 0.0989 +0 0.0965 +0 0.0680 +0 0.1943 +0 0.1206 +1 0.8120 +0 0.0894 +0 0.1615 +0 0.1021 +0 0.1857 +0 0.2561 +0 0.0961 +0 0.0854 +0 0.1783 +0 0.2305 +0 0.0651 +0 0.1135 +0 0.1776 +0 0.1288 +0 0.1088 +0 0.0739 +0 0.0903 +0 0.0773 +0 0.6595 +0 0.0726 +0 0.0548 +0 0.1207 +0 0.1364 +0 0.1198 +0 0.1342 +0 0.1189 +0 0.0784 +0 0.4145 +0 0.5360 +0 0.1422 +0 0.1179 +0 0.0961 +0 0.1135 +0 0.3493 +0 0.0958 +0 0.0820 +0 0.1281 +0 0.1322 +0 0.0773 +0 0.2306 +0 0.0965 +0 0.0749 +0 0.1344 +0 0.0957 +0 0.0781 +0 0.1005 +0 0.0555 +0 0.1691 +0 0.1024 +0 0.2360 +0 0.3461 +0 0.0791 +0 0.0667 +0 0.0558 +0 0.0931 +0 0.0660 +0 0.0818 +0 0.1130 +0 0.0603 +0 0.2360 +0 0.3536 +0 0.0608 +0 0.1300 +0 0.2333 +0 0.1745 +0 0.1111 +0 0.3971 +0 0.1597 +0 0.2281 +0 0.2468 +0 0.3237 +0 0.2542 +0 0.0785 +0 0.0383 +0 0.0801 +0 0.0825 +0 0.6832 +0 0.0611 +0 0.3016 +0 0.0996 +0 0.1022 +0 0.0914 +0 0.3276 +0 0.3425 +0 0.1553 +0 0.1788 +0 0.1862 +0 0.0812 +0 0.0690 +0 0.0593 +0 0.2108 +0 0.0510 +0 0.0921 +0 0.1225 +0 0.0818 +0 0.1455 +0 0.1035 +0 0.1539 +0 0.0676 +0 0.1030 +0 0.2138 +0 0.0915 +0 0.0916 +0 0.0629 +0 0.0687 +0 0.0962 +0 0.0889 +0 0.1357 +0 0.1252 +0 0.0614 +0 0.0754 +0 0.0636 +0 0.0624 +0 0.1437 +0 0.0558 +0 0.4459 +0 0.1441 +0 0.1200 +0 0.7437 +0 0.1051 +0 0.0898 +0 0.1904 +0 0.2026 +0 0.1272 +0 0.0812 +0 0.1228 +0 0.6336 +0 0.5799 +0 0.1310 +1 0.7536 +0 0.0808 +0 0.1451 +0 0.0514 +0 0.0531 +0 0.1003 +0 0.4189 +0 0.1026 +0 0.0682 +0 0.2514 +1 0.8691 +0 0.1117 +0 0.1092 +0 0.1344 +0 0.0498 +0 0.0810 +0 0.0931 +0 0.6939 +0 0.1007 +0 0.1903 +0 0.0749 +0 0.1811 +0 0.0783 +0 0.1363 +0 0.2080 +0 0.2663 +0 0.0311 +0 0.1701 +0 0.0676 +0 0.1198 +0 0.1690 +0 0.1209 +0 0.1345 +0 0.1150 +0 0.1732 +0 0.0888 +0 0.1406 +0 0.1733 +0 0.0604 +0 0.0570 +0 0.0779 +0 0.0314 +0 0.1988 +0 0.0487 +0 0.0420 +0 0.0619 +0 0.1369 +0 0.6620 +0 0.0452 +0 0.0313 +0 0.0901 +0 0.1972 +0 0.1059 +0 0.1427 +0 0.0716 +0 0.0491 +0 0.1116 +0 0.7356 +0 0.0590 +0 0.1222 +0 0.0515 +1 0.8417 +0 0.1048 +0 0.0888 +0 0.2217 +0 0.1176 +0 0.0679 +0 0.1283 +0 0.0667 +0 0.0974 +0 0.2376 +0 0.1010 +0 0.6538 +0 0.2934 +0 0.0710 +0 0.3151 +0 0.2695 +0 0.1513 +0 0.1379 +0 0.2605 +0 0.0498 +0 0.0362 +0 0.4723 +0 0.0812 +1 0.8681 +0 0.0816 +0 0.2669 +0 0.0925 +0 0.0308 +0 0.0438 +0 0.1588 +0 0.0495 +0 0.0963 +0 0.0832 +0 0.1477 +0 0.0478 +0 0.1046 +0 0.1390 +0 0.1828 +0 0.0688 +0 0.0831 +0 0.1139 +0 0.1527 +0 0.0783 +0 0.1311 +0 0.1072 +0 0.2126 +0 0.0643 +0 0.1316 +0 0.3220 +0 0.1830 +0 0.0553 +0 0.0753 +0 0.0931 +0 0.1367 +0 0.1242 +1 0.9014 +0 0.1482 +0 0.1225 +0 0.3334 +0 0.0410 +0 0.0658 +0 0.0921 +0 0.2436 +0 0.1100 +0 0.0410 +0 0.3303 +0 0.1424 +0 0.0933 +0 0.1620 +0 0.0959 +0 0.0880 +0 0.1547 +0 0.0594 +0 0.1064 +0 0.0778 +0 0.1201 +0 0.0611 +0 0.0869 +0 0.1358 +0 0.0745 +0 0.0833 +0 0.0593 +0 0.4909 +0 0.6626 +0 0.2868 +0 0.0611 +0 0.0748 +0 0.0533 +0 0.1316 +0 0.0717 +0 0.0412 +0 0.0646 +0 0.0971 +0 0.0547 +0 0.1233 +0 0.1309 +0 0.0844 +0 0.2630 +0 0.1627 +0 0.1433 +0 0.1785 +0 0.7150 +0 0.2494 +0 0.6729 +0 0.1292 +0 0.0584 +0 0.1786 +0 0.0971 +0 0.1022 +0 0.2227 +0 0.1996 +0 0.1069 +0 0.0408 +0 0.0461 +0 0.1740 +0 0.1729 +0 0.1473 +0 0.0548 +0 0.1569 +0 0.0851 +0 0.0616 +0 0.1495 +0 0.0600 +0 0.1406 +0 0.0676 +0 0.0419 +0 0.1423 +0 0.0870 +0 0.1009 +0 0.0821 +0 0.1508 +0 0.0725 +0 0.0900 +0 0.3316 +0 0.0767 +0 0.5133 +0 0.0943 +0 0.0469 +0 0.1086 +0 0.0888 +0 0.2106 +0 0.2781 +0 0.2647 +0 0.2105 +0 0.0669 +0 0.1989 +0 0.0803 +0 0.0742 +0 0.2942 +0 0.1305 +0 0.1863 +0 0.2118 +0 0.0351 +0 0.0742 +0 0.0863 +0 0.7197 +0 0.1799 +0 0.1249 +0 0.1795 +0 0.0780 +0 0.1362 +0 0.3359 +0 0.0712 +0 0.1095 +0 0.1049 +0 0.2113 +0 0.1924 +0 0.4052 +0 0.1338 +0 0.1412 +0 0.2757 +0 0.1222 +0 0.2176 +0 0.1296 +0 0.5616 +0 0.0931 +0 0.0394 +0 0.0721 +0 0.0547 +0 0.1015 +0 0.0725 +0 0.1299 +0 0.1066 +0 0.0430 +0 0.1379 +0 0.3042 +0 0.0929 +0 0.1041 +0 0.1071 +0 0.2773 +0 0.1332 +0 0.0396 +0 0.1283 +0 0.0483 +0 0.0764 +0 0.0560 +0 0.2373 +0 0.7437 +0 0.0530 +0 0.0842 +0 0.5625 +0 0.1851 +0 0.0879 +0 0.3114 +0 0.0967 +0 0.0830 +0 0.3686 +0 0.0989 +0 0.1439 +0 0.3175 +0 0.0832 +0 0.1041 +0 0.1020 +0 0.0986 +0 0.1138 +0 0.1449 +0 0.1496 +0 0.1126 +0 0.3053 +1 0.8468 +0 0.0959 +0 0.0700 +0 0.0790 +0 0.1291 +0 0.1750 +0 0.3465 +0 0.0767 +0 0.0745 +0 0.1570 +0 0.0553 +0 0.7030 +0 0.0448 +0 0.0638 +0 0.0890 +0 0.0320 +0 0.0804 +0 0.3940 +0 0.0814 +0 0.1668 +0 0.1091 +0 0.0725 +0 0.1679 +0 0.0702 +0 0.1807 +0 0.0772 +0 0.1155 +0 0.0994 +0 0.0587 +0 0.0978 +0 0.1145 +0 0.0808 +0 0.1974 +0 0.0404 +0 0.0568 +0 0.0775 +0 0.2529 +0 0.0918 +0 0.1287 +0 0.0604 +0 0.0951 +1 0.7513 +0 0.0734 +0 0.0762 +1 0.8609 +0 0.2700 +0 0.0622 +0 0.2228 +0 0.3624 +0 0.1213 +0 0.1737 +0 0.0535 +0 0.0705 +0 0.0682 +0 0.1645 +0 0.1173 +0 0.0709 +0 0.1533 +0 0.0685 +0 0.0639 +0 0.1820 +0 0.0645 +0 0.0730 +0 0.0965 +0 0.0525 +1 0.7588 +0 0.2011 +0 0.4049 +0 0.4827 +0 0.1179 +0 0.0717 +0 0.0717 +0 0.0362 +0 0.1263 +0 0.0615 +0 0.1167 +0 0.4897 +0 0.1233 +0 0.1685 +0 0.0617 +0 0.0751 +0 0.0974 +0 0.0786 +0 0.0816 +0 0.0834 +0 0.0747 +0 0.1110 +0 0.0813 +0 0.2010 +0 0.0956 +0 0.0979 +0 0.1067 +0 0.1056 +0 0.0427 +0 0.2036 +0 0.0726 +0 0.3421 +0 0.1395 +0 0.1505 +0 0.1055 +1 0.3132 +0 0.1530 +0 0.2294 +0 0.0854 +0 0.3263 +0 0.1726 +0 0.1292 +0 0.1779 +0 0.1361 +0 0.1482 +0 0.2915 +0 0.1485 +0 0.1787 +0 0.1309 +0 0.1390 +0 0.1156 +0 0.1361 +0 0.1913 +0 0.1513 +0 0.0765 +0 0.1842 +0 0.1585 +0 0.0683 +0 0.0873 +0 0.0549 +0 0.1365 +0 0.1068 +0 0.0529 +0 0.0555 +0 0.0621 +0 0.1315 +0 0.0431 +0 0.1384 +0 0.0925 +0 0.3130 +0 0.0593 +0 0.0763 +0 0.0610 +0 0.1319 +0 0.4709 +0 0.0501 +0 0.2376 +0 0.0466 +1 0.7968 +0 0.0766 +1 0.7672 +0 0.6471 +0 0.3609 +0 0.1174 +0 0.2396 +0 0.2803 +0 0.2680 +0 0.0983 +0 0.5860 +0 0.0907 +0 0.0647 +0 0.0702 +0 0.2447 +0 0.1393 +0 0.0811 +0 0.1137 +0 0.2097 +0 0.1253 +0 0.1032 +0 0.0946 +0 0.0896 +0 0.0559 +0 0.1152 +0 0.6890 +0 0.2359 +0 0.1205 +0 0.0580 +0 0.0692 +0 0.0989 +0 0.1250 +0 0.0944 +0 0.1938 +0 0.2522 +0 0.0777 +0 0.1828 +0 0.1147 +0 0.1188 +0 0.1055 +0 0.0626 +0 0.0728 +0 0.0773 +0 0.1012 +0 0.1374 +0 0.0701 +0 0.0973 +0 0.1580 +0 0.2108 +0 0.0701 +0 0.0810 +0 0.3935 +0 0.0929 +0 0.3957 +0 0.0938 +0 0.1466 +1 0.8609 +0 0.0878 +0 0.0857 +0 0.1007 +0 0.0787 +0 0.0483 +1 0.8050 +0 0.0606 +0 0.0414 +0 0.1632 +0 0.0579 +0 0.2692 +0 0.3279 +0 0.0777 +0 0.6951 +0 0.1894 +0 0.1175 +0 0.1355 +0 0.3037 +0 0.0717 +0 0.1770 +0 0.0464 +0 0.5427 +0 0.1442 +0 0.1238 +1 0.7742 +0 0.0447 +0 0.1519 +0 0.2594 +0 0.0951 +0 0.0860 +0 0.1046 +0 0.2346 +0 0.0897 +0 0.0620 +0 0.2203 +0 0.1815 +0 0.2988 +0 0.0789 +0 0.3038 +0 0.1225 +0 0.0575 +0 0.0353 +0 0.1959 +0 0.6322 +0 0.0860 +0 0.0410 +0 0.1354 +0 0.0774 +0 0.0793 +0 0.1319 +0 0.0578 +0 0.0727 +0 0.0741 +0 0.0622 +0 0.1840 +0 0.3102 +0 0.1427 +0 0.1261 +0 0.0598 +0 0.0942 +0 0.1851 +0 0.3932 +0 0.0512 +0 0.0890 +0 0.1132 +0 0.0670 +0 0.1111 +0 0.0749 +0 0.1811 +0 0.1346 +0 0.1766 +0 0.0948 +0 0.4976 +0 0.2667 +0 0.1389 +0 0.0643 +0 0.2484 +0 0.2816 +0 0.1358 +0 0.0714 +0 0.2011 +0 0.6474 +1 0.8399 +0 0.1022 +0 0.0577 +0 0.0653 +0 0.1899 +0 0.1065 +0 0.0853 +0 0.0487 +0 0.0688 +0 0.1454 +0 0.0820 +0 0.1411 +0 0.2431 +0 0.5966 +1 0.4760 +0 0.0720 +0 0.0872 +0 0.1790 +0 0.2104 +0 0.1567 +0 0.1215 +0 0.0958 +0 0.1157 +0 0.3452 +0 0.1259 +0 0.2088 +0 0.1755 +0 0.0591 +0 0.0594 +0 0.1173 +0 0.2000 +0 0.0647 +0 0.2942 +0 0.0801 +0 0.2698 +0 0.0933 +0 0.0662 +0 0.2086 +0 0.1682 +0 0.1270 +0 0.0610 +0 0.0437 +0 0.0756 +0 0.1685 +0 0.1499 +0 0.1032 +0 0.0671 +0 0.1087 +0 0.0717 +0 0.2162 +0 0.2644 +0 0.0614 +0 0.0449 +0 0.1147 +0 0.2941 +0 0.2190 +0 0.3383 +0 0.0725 +0 0.2935 +0 0.1463 +0 0.7300 +0 0.0361 +0 0.0723 +0 0.1103 +0 0.0712 +0 0.0665 +0 0.1899 +0 0.0840 +0 0.3137 +0 0.2880 +0 0.3217 +0 0.0407 +0 0.0977 +0 0.0683 +0 0.1090 +0 0.1943 +0 0.3649 +0 0.1054 +0 0.0764 +0 0.0457 +0 0.0656 +0 0.0641 +1 0.8318 +0 0.0949 +0 0.0505 +0 0.1328 +0 0.1054 +0 0.1020 +0 0.0782 +0 0.0574 +0 0.1831 +0 0.1255 +0 0.2262 +0 0.1612 +0 0.2888 +0 0.0986 +0 0.0482 +0 0.0788 +0 0.1215 +0 0.2225 +0 0.2924 +0 0.0535 +0 0.1092 +0 0.0896 +0 0.0464 +0 0.1482 +0 0.1996 +0 0.0574 +0 0.2435 +0 0.0487 +0 0.0461 +0 0.2296 +0 0.0518 +0 0.1225 +0 0.0768 +0 0.0768 +0 0.0896 +0 0.1062 +0 0.1852 +0 0.1847 +0 0.0728 +0 0.0656 +0 0.0914 +0 0.1217 +0 0.6928 +0 0.0851 +0 0.0759 +0 0.0601 +0 0.1179 +0 0.0571 +0 0.0800 +0 0.0942 +0 0.3185 +0 0.0895 +0 0.0761 +0 0.1746 +0 0.1046 +0 0.1043 +0 0.1177 +0 0.0903 +0 0.4684 +0 0.1138 +0 0.4620 +0 0.1199 +0 0.0642 +0 0.0659 +0 0.0465 +0 0.1159 +0 0.1198 +0 0.5772 +0 0.0719 +0 0.1388 +0 0.0529 +0 0.0793 +0 0.1321 +0 0.0662 +0 0.0869 +0 0.1206 +0 0.0566 +0 0.1110 +0 0.1153 +0 0.0725 +0 0.0869 +0 0.0958 +0 0.1309 +0 0.1917 +0 0.0617 +0 0.0588 +0 0.0473 +0 0.0937 +0 0.1908 +0 0.2650 +0 0.0439 +0 0.0600 +0 0.0779 +0 0.0676 +0 0.0473 +0 0.3967 +0 0.0556 +0 0.0949 +0 0.1650 +0 0.2443 +1 0.8438 +0 0.1670 +0 0.0750 +0 0.1584 +0 0.1965 +1 0.8081 +0 0.4939 +0 0.2346 +0 0.0885 +0 0.0933 +0 0.5050 +0 0.1468 +0 0.3479 +0 0.0979 +0 0.1301 +0 0.2113 +0 0.1095 +0 0.1349 +0 0.0473 +0 0.1569 +0 0.1746 +0 0.0431 +0 0.1142 +0 0.1120 +0 0.1680 +0 0.0764 +0 0.0971 +0 0.3155 +0 0.0755 +0 0.1026 +0 0.3298 +0 0.0657 +0 0.1285 +0 0.1057 +0 0.1325 +0 0.1113 +0 0.0678 +0 0.2722 +0 0.0599 +0 0.0778 +0 0.1974 +0 0.1347 +0 0.0625 +0 0.2245 +0 0.1204 +0 0.0887 +0 0.1099 +0 0.1610 +0 0.2239 +0 0.0669 +0 0.0603 +0 0.0519 +0 0.0662 +1 0.8311 +0 0.0684 +0 0.0632 +0 0.1675 +0 0.2367 +0 0.0470 +0 0.0879 +0 0.0505 +0 0.1029 +0 0.1418 +0 0.0967 +0 0.2309 +0 0.1000 +0 0.1651 +0 0.1479 +0 0.0425 +0 0.7306 +1 0.8586 +0 0.1232 +0 0.0912 +0 0.1122 +0 0.0965 +0 0.0551 +0 0.1553 +0 0.1669 +0 0.0862 +0 0.1469 +0 0.1116 +0 0.0519 +1 0.8583 +0 0.0526 +0 0.0556 +0 0.2302 +0 0.1206 +0 0.1002 +0 0.0678 +0 0.6847 +0 0.1745 +0 0.0944 +0 0.1294 +0 0.2604 +0 0.0927 +0 0.2406 +0 0.2560 +0 0.0293 +0 0.0795 +0 0.1274 +0 0.0536 +0 0.1439 +0 0.0890 +0 0.1071 +0 0.1115 +0 0.0597 +0 0.6468 +0 0.4286 +0 0.0291 +0 0.1802 +0 0.5611 +0 0.0864 +0 0.2965 +0 0.0717 +0 0.1816 +0 0.0364 +0 0.1613 +0 0.0455 +0 0.1371 +0 0.1450 +0 0.1077 +0 0.1227 +0 0.0651 +0 0.2573 +0 0.2836 +0 0.1747 +0 0.1794 +0 0.1556 +0 0.1267 +0 0.1678 +0 0.0755 +0 0.0385 +0 0.0781 +0 0.0416 +0 0.2632 +0 0.1306 +0 0.0391 +0 0.1617 +0 0.1082 +0 0.0446 +0 0.3470 +0 0.2928 +0 0.1106 +0 0.1035 +0 0.0743 +0 0.4315 +0 0.2209 +0 0.0999 +1 0.8541 +0 0.0982 +0 0.0598 +0 0.1962 +0 0.0870 +0 0.1069 +0 0.3924 +0 0.0666 +1 0.8461 +0 0.0910 +0 0.2436 +1 0.8127 +0 0.2874 +0 0.1285 +0 0.5942 +0 0.1734 +0 0.1103 +0 0.0685 +0 0.2192 +0 0.1114 +0 0.0758 +0 0.0622 +0 0.0833 +0 0.0611 +0 0.0745 +0 0.1689 +0 0.2239 +0 0.1119 +0 0.0906 +0 0.0919 +0 0.3480 +0 0.0595 +0 0.1129 +0 0.0732 +0 0.1239 +0 0.0410 +0 0.0903 +0 0.1122 +0 0.4332 +0 0.0717 +0 0.1352 +0 0.0826 +0 0.1182 +0 0.0750 +0 0.0756 +0 0.0413 +0 0.1378 +0 0.0455 +0 0.0681 +0 0.0772 +0 0.0633 +0 0.2496 +0 0.5413 +0 0.0428 +0 0.0559 +0 0.1202 +0 0.0946 +0 0.1319 +0 0.1362 +0 0.1318 +0 0.1411 +0 0.0702 +0 0.1775 +0 0.1169 +0 0.1048 +0 0.0935 +0 0.1090 +0 0.0719 +0 0.1523 +0 0.1979 +0 0.1069 +0 0.1590 +0 0.1138 +0 0.1337 +0 0.1182 +0 0.1159 +0 0.1060 +0 0.0942 +0 0.0982 +0 0.0684 +0 0.0483 +0 0.0578 +0 0.0314 +0 0.1599 +0 0.5076 +0 0.0766 +0 0.1471 +0 0.1242 +0 0.1549 +0 0.0543 +0 0.1364 +0 0.1972 +0 0.0946 +0 0.0507 +0 0.0898 +0 0.7026 +0 0.1737 +0 0.2317 +0 0.1778 +0 0.0503 +0 0.1329 +0 0.0874 +0 0.1699 +0 0.0838 +0 0.0623 +0 0.0618 +0 0.2273 +0 0.2359 +0 0.2602 +0 0.0662 +0 0.1813 +0 0.2062 +0 0.1812 +0 0.2978 +0 0.0592 +0 0.1204 +0 0.1020 +0 0.0871 +0 0.4065 +0 0.1582 +0 0.3444 +0 0.1229 +0 0.0869 +0 0.0485 +0 0.0685 +0 0.0606 +0 0.0419 +0 0.1052 +0 0.1111 +0 0.2162 +0 0.1009 +1 0.8364 +0 0.3399 +0 0.1191 +0 0.0547 +0 0.0963 +0 0.1204 +0 0.0775 +0 0.1015 +0 0.2064 +0 0.4861 +0 0.0779 +0 0.1583 +0 0.2340 +0 0.1113 +0 0.0545 +0 0.0534 +0 0.0866 +0 0.1908 +0 0.0570 +0 0.0738 +1 0.7630 +0 0.0750 +0 0.1671 +0 0.0961 +0 0.1379 +0 0.0529 +0 0.0831 +0 0.1193 +0 0.0847 +0 0.0903 +0 0.0411 +0 0.1101 +0 0.3279 +0 0.0527 +0 0.2107 +0 0.0954 +0 0.0721 +0 0.1334 +0 0.1396 +0 0.1200 +0 0.2190 +0 0.2472 +0 0.0510 +0 0.0483 +0 0.0974 +0 0.7274 +0 0.0397 +0 0.0612 +0 0.1807 +0 0.0439 +0 0.1909 +0 0.1718 +0 0.1092 +0 0.0877 +0 0.0565 +0 0.0833 +0 0.0844 +0 0.0871 +0 0.0791 +0 0.0902 +0 0.0349 +0 0.1024 +0 0.1536 +0 0.0509 +0 0.1164 +0 0.1589 +0 0.0898 +0 0.0687 +0 0.0801 +0 0.1161 +0 0.6609 +0 0.0658 +0 0.1417 +0 0.1035 +0 0.0682 +0 0.0681 +0 0.0679 +0 0.1105 +0 0.1546 +0 0.1696 +0 0.1295 +0 0.0732 +0 0.4947 +0 0.1428 +0 0.2396 +0 0.1989 +0 0.6346 +0 0.0393 +0 0.0901 +0 0.1594 +0 0.2345 +0 0.1413 +0 0.0456 +0 0.0805 +0 0.1251 +0 0.0814 +0 0.1081 +0 0.1051 +0 0.1116 +0 0.0990 +0 0.0477 +0 0.0980 +0 0.1562 +0 0.5591 +0 0.1750 +0 0.1513 +0 0.1666 +0 0.1274 +0 0.2471 +0 0.1224 +0 0.0829 +1 0.7836 +0 0.0365 +0 0.0590 +0 0.1653 +1 0.7532 +0 0.2708 +0 0.0655 +0 0.1633 +0 0.0743 +0 0.0770 +0 0.1446 +0 0.0664 +0 0.0878 +0 0.1133 +0 0.0540 +0 0.4629 +0 0.4297 +0 0.1059 +0 0.0633 +0 0.0851 +0 0.0681 +0 0.0555 +0 0.0666 +0 0.1014 +0 0.0618 +0 0.2062 +0 0.0454 +0 0.6042 +0 0.1145 +0 0.1878 +0 0.6931 +0 0.6973 +0 0.1903 +0 0.0943 +0 0.1055 +0 0.0605 +0 0.7388 +0 0.0489 +0 0.0728 +0 0.0432 +0 0.1711 +0 0.0924 +0 0.4775 +0 0.1011 +0 0.0684 +0 0.0495 +0 0.0470 +0 0.2410 +0 0.0600 +0 0.3578 +0 0.1337 +0 0.1151 +0 0.1326 +0 0.1102 +0 0.3986 +0 0.1039 +0 0.0923 +0 0.0620 +0 0.0500 +0 0.0909 +0 0.0706 +0 0.1311 +0 0.3050 +1 0.7920 +0 0.0882 +0 0.1673 +0 0.0630 +0 0.0772 +0 0.1438 +0 0.2188 +0 0.1149 +0 0.2444 +0 0.1096 +0 0.1629 +0 0.1669 +0 0.1041 +0 0.0507 +0 0.3741 +0 0.2451 +0 0.1001 +0 0.1190 +0 0.0895 +0 0.2491 +0 0.0787 +0 0.1139 +0 0.1184 +0 0.2063 +0 0.1693 +0 0.2750 +0 0.0439 +0 0.1205 +0 0.0813 +0 0.2644 +0 0.1928 +0 0.1785 +0 0.1094 +0 0.2443 +0 0.2721 +0 0.2032 +0 0.1182 +0 0.2362 +0 0.1403 +0 0.0964 +0 0.0438 +0 0.0791 +0 0.0737 +0 0.1998 +0 0.0969 +0 0.0644 +0 0.0964 +0 0.0897 +0 0.1499 +0 0.0612 +0 0.0863 +0 0.2404 +0 0.0553 +0 0.1509 +0 0.0547 +0 0.0511 +1 0.8351 +0 0.0536 +0 0.6155 +0 0.1098 +0 0.1506 +0 0.0628 +0 0.0911 +0 0.0513 +1 0.7570 +0 0.1236 +0 0.0870 +0 0.0813 +0 0.0590 +0 0.2608 +0 0.1893 +0 0.0737 +1 0.8899 +0 0.1410 +0 0.1074 +0 0.0714 +0 0.1501 +0 0.1006 +0 0.0615 +0 0.0431 +0 0.0668 +0 0.1178 +0 0.2723 +0 0.6307 +0 0.0854 +0 0.1197 +0 0.1109 +0 0.0766 +0 0.1150 +0 0.0637 +0 0.1078 +0 0.1618 +0 0.1845 +0 0.1329 +0 0.0853 +0 0.1705 +0 0.6521 +0 0.1280 +0 0.0862 +0 0.2797 +0 0.1640 +0 0.1917 +0 0.0942 +0 0.5681 +0 0.1666 +0 0.0946 +0 0.3876 +0 0.0539 +0 0.1593 +0 0.0900 +0 0.0797 +0 0.0900 +0 0.0902 +0 0.4805 +0 0.2016 +0 0.0919 +0 0.2181 +0 0.3301 +0 0.3252 +0 0.1061 +0 0.0521 +0 0.1198 +0 0.0716 +0 0.1269 +0 0.0690 +0 0.0350 +0 0.0417 +0 0.1202 +0 0.1103 +0 0.2532 +0 0.1052 +0 0.0518 +0 0.1441 +0 0.2027 +0 0.2624 +0 0.4095 +0 0.0869 +0 0.0903 +0 0.0555 +0 0.1788 +0 0.1320 +0 0.1987 +0 0.3444 +0 0.2852 +0 0.0681 +0 0.1574 +0 0.0645 +0 0.1945 +0 0.0610 +0 0.0859 +0 0.1774 +0 0.0780 +0 0.1059 +0 0.1182 +0 0.1913 +0 0.0821 +0 0.0610 +0 0.0737 +0 0.0601 +0 0.3052 +0 0.0735 +0 0.0491 +0 0.3379 +0 0.1477 +0 0.0578 +0 0.0650 +0 0.0683 +0 0.1513 +0 0.0658 +0 0.2206 +0 0.0567 +0 0.0882 +0 0.3397 +0 0.1121 +0 0.5231 +0 0.1780 +0 0.0762 +0 0.1149 +0 0.0552 +0 0.1085 +0 0.0799 +0 0.0701 +0 0.0509 +0 0.0823 +0 0.0704 +0 0.0463 +0 0.0707 +0 0.1093 +0 0.0623 +0 0.1949 +0 0.1217 +0 0.0667 +0 0.0877 +0 0.0918 +0 0.1373 +0 0.0836 +0 0.7218 +0 0.0725 +0 0.0808 +0 0.6067 +0 0.1316 +0 0.1109 +0 0.0622 +0 0.2164 +0 0.2636 +0 0.2689 +0 0.0368 +0 0.0843 +0 0.0686 +0 0.1246 +0 0.0842 +0 0.1000 +0 0.0752 +0 0.1048 +0 0.1922 +0 0.1603 +0 0.0848 +0 0.0928 +0 0.0813 +0 0.0606 +0 0.7261 +0 0.0556 +0 0.0591 +0 0.1108 +0 0.1177 +0 0.0861 +0 0.2227 +0 0.0707 +0 0.2541 +0 0.1194 +0 0.2176 +0 0.0988 +0 0.3431 +0 0.0480 +0 0.1514 +0 0.0900 +0 0.3903 +0 0.1723 +0 0.0719 +0 0.0574 +0 0.3151 +0 0.6002 +0 0.0850 +0 0.1046 +0 0.2324 +0 0.5249 +0 0.1867 +0 0.1387 +0 0.1579 +0 0.0781 +0 0.1565 +0 0.1034 +0 0.2505 +0 0.4716 +0 0.0616 +0 0.0935 +0 0.0742 +0 0.1783 +0 0.1454 +0 0.0975 +0 0.1686 +0 0.0492 +0 0.0678 +1 0.7690 +0 0.0726 +0 0.1441 +0 0.0629 +0 0.0671 +0 0.0938 +0 0.0818 +0 0.0726 +0 0.1048 +0 0.0679 +0 0.0735 +0 0.1389 +0 0.0616 +0 0.1939 +0 0.3410 +0 0.0917 +0 0.0857 +0 0.0647 +0 0.0616 +0 0.0856 +0 0.2085 +0 0.0559 +0 0.0787 +0 0.0643 +0 0.1794 +0 0.2085 +0 0.1304 +0 0.0973 +0 0.1571 +0 0.0866 +0 0.1170 +0 0.0908 +0 0.0913 +0 0.0552 +0 0.0655 +0 0.0594 +0 0.0838 +0 0.1537 +0 0.2079 +0 0.0683 +0 0.0652 +0 0.2034 +0 0.2349 +0 0.1673 +1 0.8034 +0 0.0522 +0 0.0866 +0 0.0895 +0 0.0614 +0 0.1961 +0 0.1202 +0 0.0940 +0 0.1237 +0 0.1003 +0 0.0460 +0 0.0941 +0 0.2095 +0 0.1448 +0 0.0833 +0 0.1725 +0 0.0420 +0 0.2960 +0 0.1121 +0 0.1495 +0 0.0915 +0 0.1261 +0 0.0900 +0 0.0481 +0 0.1034 +0 0.0894 +0 0.6624 +0 0.2943 +0 0.0623 +0 0.0374 +0 0.3001 +0 0.0810 +0 0.2036 +0 0.0509 +0 0.0626 +0 0.0903 +0 0.1287 +0 0.0942 +0 0.3049 +0 0.2741 +0 0.1308 +0 0.1023 +0 0.1278 +0 0.3012 +0 0.1289 +0 0.0592 +0 0.1067 +0 0.0681 +0 0.1897 +0 0.0445 +0 0.0654 +0 0.0856 +0 0.2182 +0 0.0639 +0 0.0798 +0 0.4505 +0 0.1633 +0 0.1028 +0 0.0495 +0 0.1237 +0 0.2679 +0 0.1306 +0 0.0731 +0 0.0868 +0 0.3215 +0 0.0409 +0 0.0554 +0 0.1280 +0 0.0627 +0 0.1010 +0 0.3549 +0 0.1036 +0 0.1426 +0 0.0674 +0 0.0644 +0 0.2529 +0 0.0557 +0 0.1319 +0 0.1001 +0 0.0730 +0 0.3872 +0 0.2266 +0 0.0989 +0 0.0929 +0 0.1116 +0 0.1549 +1 0.8240 +0 0.2185 +0 0.1550 +1 0.8244 +0 0.0400 +0 0.1501 +0 0.1351 +0 0.2247 +0 0.2602 +0 0.0624 +0 0.0859 +0 0.0614 +0 0.0656 +0 0.0867 +0 0.0875 +0 0.0601 +0 0.0599 +0 0.1398 +0 0.2395 +0 0.2185 +0 0.1690 +0 0.0948 +0 0.0555 +0 0.1221 +0 0.0847 +0 0.1986 +0 0.1227 +0 0.2993 +0 0.0627 +0 0.1406 +0 0.0622 +0 0.1745 +0 0.0453 +0 0.0868 +0 0.0898 +0 0.0349 +0 0.1529 +0 0.4320 +0 0.1568 +0 0.0539 +0 0.0482 +0 0.3146 +0 0.1286 +0 0.2189 +0 0.1464 +0 0.0839 +0 0.0910 +0 0.1809 +0 0.0725 +0 0.0589 +0 0.1299 +0 0.0660 +0 0.0848 +0 0.0882 +0 0.0964 +0 0.0508 +0 0.0892 +0 0.2390 +0 0.0611 +0 0.0398 +0 0.1145 +0 0.0728 +0 0.0674 +0 0.0786 +0 0.1811 +0 0.1601 +0 0.2502 +0 0.0482 +0 0.0721 +0 0.1517 +0 0.1078 +1 0.7916 +0 0.1952 +0 0.0737 +0 0.4314 +0 0.0411 +0 0.1125 +0 0.1699 +0 0.0313 +0 0.0790 +0 0.0490 +0 0.1172 +0 0.3474 +0 0.2471 +0 0.1010 +0 0.2297 +0 0.1427 +0 0.1230 +0 0.1464 +0 0.7231 +0 0.0412 +0 0.0965 +0 0.0602 +0 0.0659 +0 0.3164 +0 0.0808 +0 0.2375 +0 0.2147 +0 0.1274 +0 0.0700 +0 0.0884 +0 0.1062 +0 0.2037 +0 0.0782 +0 0.2525 +0 0.2728 +0 0.0826 +0 0.1733 +0 0.0625 +0 0.1510 +0 0.1711 +0 0.0561 +0 0.0846 +0 0.1760 +0 0.1634 +0 0.0669 +0 0.1310 +0 0.0826 +0 0.0754 +0 0.1353 +0 0.1875 +0 0.0656 +0 0.1886 +0 0.0617 +0 0.0852 +0 0.0692 +0 0.1758 +0 0.1280 +0 0.0765 +0 0.0686 +0 0.3079 +0 0.0837 +0 0.1706 +1 0.7744 +1 0.8737 +0 0.0639 +0 0.1162 +0 0.1556 +0 0.0523 +0 0.0975 +0 0.0917 +0 0.0996 +0 0.0693 +0 0.0891 +0 0.0911 +0 0.0957 +0 0.0672 +0 0.0901 +0 0.4813 +1 0.8315 +0 0.0542 +0 0.0612 +0 0.0583 +0 0.2058 +0 0.1512 +0 0.1411 +0 0.0568 +0 0.1295 +0 0.1056 +0 0.1796 +0 0.0416 +0 0.1022 +0 0.0572 +0 0.0550 +0 0.1339 +0 0.1282 +0 0.1654 +0 0.1411 +0 0.0800 +0 0.0852 +0 0.0519 +0 0.1720 +0 0.2006 +0 0.0619 +0 0.0615 +0 0.0782 +0 0.0603 +0 0.0563 +0 0.0922 +0 0.6044 +0 0.1236 +0 0.1073 +0 0.1129 +0 0.0544 +0 0.6134 +0 0.1013 +0 0.0761 +0 0.0631 +0 0.1750 +0 0.0555 +0 0.1102 +0 0.7337 +0 0.0861 +0 0.0895 +1 0.7747 +0 0.1678 +0 0.0603 +0 0.1457 +0 0.4829 +0 0.0675 +0 0.0977 +0 0.0561 +0 0.3349 +0 0.1434 +0 0.0795 +0 0.0745 +0 0.0848 +0 0.0870 +0 0.1031 +0 0.1095 +0 0.2632 +0 0.0552 +0 0.1061 +0 0.1343 +0 0.1501 +0 0.2607 +0 0.2152 +0 0.1983 +0 0.2014 +0 0.2763 +0 0.0688 +0 0.2832 +0 0.0477 +0 0.1059 +0 0.2772 +0 0.0665 +0 0.0436 +0 0.2042 +0 0.1245 +0 0.1789 +0 0.1694 +0 0.1092 +0 0.0890 +0 0.0321 +0 0.0528 +0 0.0276 +0 0.0637 +0 0.1797 +0 0.1855 +0 0.1169 +0 0.0814 +0 0.3160 +0 0.1479 +0 0.1116 +0 0.1632 +0 0.0824 +1 0.8569 +0 0.6198 +0 0.1205 +0 0.4065 +0 0.1095 +0 0.0858 +0 0.0417 +0 0.3924 +0 0.0633 +0 0.2047 +0 0.1347 +0 0.2720 +0 0.1206 +0 0.1087 +0 0.0784 +0 0.0627 +0 0.1093 +0 0.1035 +0 0.1566 +0 0.0909 +0 0.2040 +0 0.0355 +0 0.1031 +0 0.0718 +0 0.0545 +0 0.0795 +0 0.1687 +0 0.0603 +0 0.1136 +0 0.1191 +0 0.0529 +0 0.0915 +0 0.2951 +0 0.2055 +0 0.6289 +0 0.1154 +0 0.0393 +0 0.2126 +0 0.2117 +1 0.8285 +0 0.1020 +0 0.0367 +0 0.1265 +0 0.1119 +0 0.1344 +0 0.0735 +0 0.0769 +0 0.0842 +0 0.0537 +0 0.1192 +0 0.1396 +0 0.1817 +0 0.0899 +0 0.0850 +0 0.2327 +0 0.4258 +0 0.1198 +0 0.3548 +0 0.0978 +0 0.2192 +0 0.0487 +0 0.1273 +0 0.0945 +0 0.0630 +0 0.2480 +0 0.2231 +0 0.2074 +0 0.1260 +0 0.4816 +0 0.0720 +0 0.0974 +0 0.2304 +0 0.1885 +0 0.0424 +0 0.5809 +0 0.1493 +0 0.1676 +0 0.1010 +0 0.1536 +0 0.0537 +0 0.0744 +0 0.5060 +0 0.0994 +0 0.1015 +0 0.0718 +0 0.0524 +0 0.1708 +0 0.0720 +0 0.1671 +0 0.1244 +0 0.1435 +0 0.0727 +0 0.1009 +0 0.0601 +0 0.1789 +0 0.2304 +0 0.0656 +0 0.0818 +0 0.0576 +0 0.1016 +0 0.1373 +0 0.1094 +0 0.1099 +0 0.1354 +0 0.0844 +0 0.1789 +0 0.1260 +0 0.2539 +0 0.0843 +0 0.1694 +0 0.1841 +0 0.0774 +0 0.0553 +0 0.1312 +0 0.0623 +0 0.2172 +0 0.7056 +0 0.6960 +0 0.0703 +0 0.1026 +0 0.1036 +1 0.8809 +0 0.0506 +0 0.1449 +0 0.0761 +0 0.1278 +0 0.2874 +0 0.1386 +0 0.1443 +0 0.0364 +0 0.0623 +0 0.0883 +0 0.0803 +0 0.2340 +0 0.1553 +0 0.0885 +0 0.0834 +0 0.2570 +0 0.1781 +0 0.1734 +0 0.7029 +0 0.1989 +0 0.0418 +0 0.1236 +0 0.1458 +0 0.1834 +0 0.0616 +0 0.0827 +1 0.8188 +0 0.1020 +0 0.0735 +1 0.8053 +0 0.2081 +0 0.7294 +0 0.1274 +0 0.2022 +0 0.1578 +0 0.1221 +0 0.1048 +0 0.1225 +0 0.0631 +0 0.1522 +0 0.1563 +0 0.5173 +0 0.1329 +0 0.0782 +0 0.1661 +0 0.1609 +0 0.0648 +0 0.0656 +0 0.1199 +0 0.2631 +0 0.2057 +0 0.1429 +0 0.1422 +0 0.0602 +0 0.1002 +0 0.0677 +0 0.1015 +0 0.2596 +0 0.2303 +0 0.1854 +0 0.1038 +1 0.7601 +0 0.0973 +0 0.0617 +0 0.0487 +0 0.1507 +0 0.1070 +0 0.0553 +0 0.3427 +0 0.0541 +0 0.0881 +0 0.1144 +0 0.1268 +0 0.0818 +0 0.0552 +0 0.0413 +0 0.1716 +0 0.0824 +0 0.1003 +0 0.0508 +0 0.1297 +0 0.1057 +0 0.0845 +0 0.0921 +0 0.0690 +0 0.0615 +0 0.0813 +0 0.0689 +0 0.2914 +0 0.3589 +0 0.0945 +0 0.0412 +0 0.1130 +0 0.2307 +0 0.2233 +0 0.1275 +0 0.0443 +0 0.0533 +0 0.2296 +0 0.1101 +0 0.1049 +0 0.0995 +0 0.1630 +0 0.0593 +0 0.2052 +0 0.0681 +0 0.2623 +0 0.0438 +0 0.3584 +0 0.0524 +0 0.0522 +0 0.0602 +0 0.2068 +0 0.0745 +0 0.1853 +0 0.1726 +0 0.0794 +0 0.1809 +0 0.1661 +0 0.0645 +0 0.1136 +1 0.8669 +0 0.0619 +0 0.0575 +0 0.2726 +0 0.2935 +0 0.1262 +0 0.0730 +0 0.2353 +0 0.1526 +0 0.1028 +0 0.2963 +0 0.0541 +0 0.1034 +0 0.2111 +0 0.0761 +0 0.0859 +0 0.0812 +0 0.0650 +0 0.1594 +0 0.0849 +0 0.0764 +0 0.1459 +0 0.1252 +0 0.2775 +0 0.1842 +0 0.3811 +0 0.1176 +0 0.2121 +0 0.0873 +0 0.0622 +0 0.2852 +0 0.1367 +1 0.8012 +0 0.1101 +0 0.1205 +0 0.2993 +0 0.2320 +0 0.1244 +0 0.1599 +0 0.0575 +0 0.1315 +0 0.3172 +0 0.0500 +0 0.1309 +0 0.3019 +0 0.0492 +0 0.0360 +0 0.0859 +0 0.0350 +0 0.0706 +0 0.3994 +0 0.0832 +0 0.1364 +0 0.3020 +0 0.0675 +0 0.0495 +0 0.0487 +0 0.4735 +0 0.1654 +0 0.2408 +0 0.0557 +0 0.2285 +0 0.1117 +0 0.0542 +0 0.0988 +0 0.1071 +0 0.3383 +0 0.0983 +0 0.0747 +0 0.3143 +0 0.1580 +0 0.0756 +0 0.6056 +0 0.1040 +0 0.0707 +0 0.0923 +0 0.0810 +0 0.2195 +0 0.0851 +0 0.1808 +0 0.1842 +0 0.0795 +0 0.0910 +0 0.0489 +0 0.2151 +0 0.1352 +0 0.1265 +0 0.0805 +0 0.0618 +0 0.2059 +0 0.2054 +0 0.1032 +0 0.1498 +0 0.0709 +0 0.1158 +0 0.0889 +0 0.1361 +0 0.3053 +0 0.0581 +1 0.8209 +0 0.1042 +0 0.1075 +0 0.0904 +0 0.2662 +0 0.0606 +0 0.2367 +0 0.1183 +0 0.0608 +0 0.2005 +0 0.0444 +0 0.3101 +0 0.5128 +0 0.1213 +0 0.1469 +0 0.1408 +0 0.3841 +0 0.1047 +0 0.1124 +0 0.1185 +0 0.1148 +0 0.1576 +0 0.1175 +0 0.0862 +0 0.0942 +0 0.1703 +0 0.1257 +0 0.4574 +0 0.0737 +0 0.0943 +0 0.0492 diff --git a/dev-0/out.tsv b/dev-0/out.tsv new file mode 100644 index 0000000..c725631 --- /dev/null +++ b/dev-0/out.tsv @@ -0,0 +1,10519 @@ +the:0.09004193519608815 of:0.0808527555701904 to:0.07102610849684686 and:0.061579839318157255 in:0.03138459192341 a:0.02519891607697045 was:0.024199504178915632 be:0.023680169612051123 is:0.021430464176413266 :0.016748344145702802 by:0.013035727541341574 at:0.011423181778907285 .:0.011219386685744187 for:0.01087104255559128 from:0.010197272311017018 or:0.009795162836353797 are:0.009721883439812626 with:0.009443188523577707 In:0.009205723705036325 :0.4579448019278723 +hundred:0.19160140794283131 dred:0.015615619633938432 eight:0.012380409094179968 degrees:0.011420041528145585 due:0.010172225081055017 north:0.009990009521136215 long:0.009984418605383355 men:0.009953748026201643 dollars:0.009588049026736562 one:0.009495125076285277 three:0.008885119500266698 chains:0.008501339973200206 up:0.008421839173748034 1:0.008359455781181881 North:0.008208611814736927 large:0.007831110458848062 two:0.007743744402867966 four:0.007518192538416658 south:0.007254320852473309 :0.6360752119683669 +a:0.2852526673772555 the:0.2638387584026976 this:0.033371874932046984 other:0.029916225348544136 of:0.026422088846411555 and:0.024347013553990833 his:0.022028077073253674 The:0.019760692124673556 tho:0.01719637781545864 any:0.014260058085402197 A:0.013820159690498587 good:0.012641003594688621 old:0.011821907994654006 every:0.011288426259577173 United:0.010283248875077929 one:0.010203785786917592 to:0.010179814490520061 our:0.00983972098156094 their:0.009762264001893445 :0.16276583476487694 +it:0.10208330972665486 they:0.0813257027731387 and:0.0790796984327953 which:0.06513429102601083 he:0.06064614778340123 you:0.04918891854139841 It:0.04781916929705928 I:0.044148182809800526 who:0.04233872523810317 that:0.03427201998083567 we:0.032139715751665576 there:0.020242123456526446 He:0.01921736161136271 she:0.015331746969788626 They:0.01486092737111063 as:0.01292393491965896 one:0.010344105959734944 this:0.010183989133339523 We:0.008749838859387541 :0.24897009035822704 +able:0.059942193609250016 and:0.048461495933018725 order:0.04475722298795988 enough:0.04168091473166471 is:0.03959934343013438 him:0.03601868121012361 right:0.03463816776561143 was:0.03143782687939826 attempt:0.03125100074133983 time:0.02872596671139976 power:0.028693261682140783 as:0.027656108484268874 have:0.025139494047127744 necessary:0.02507132125189577 them:0.024849314169157484 made:0.024430592090356917 going:0.024283484224789976 unable:0.02390358294540234 ready:0.020868462226803577 :0.377591564878156 +is:0.21803364873260203 be:0.17196231202339207 are:0.11185956233733761 was:0.09345699932866482 and:0.06012048488981006 been:0.031594222030979974 Is:0.029832959598566904 not:0.029284854426310642 were:0.02901440159550506 with:0.023907439190107873 it:0.023859084402588084 of:0.022840916897891896 Cash:0.01834969137671117 sum:0.014627504656737976 bo:0.014598681340047999 amply:0.014236863505733627 as:0.013410726880382888 in:0.012914289209295804 or:0.012840926592986843 :0.05225443098434667 +and:0.09631219532671687 was:0.03513566928966104 held:0.02987715681559008 Beginning:0.024332169066967536 is:0.023122938489353394 look:0.022074108253454683 arrived:0.021820518428646088 that:0.021226918252779888 interest:0.02006974641058921 thereon:0.01971421054267379 made:0.019401567074562896 are:0.019271449916013022 up:0.01806602795372081 him:0.01678700722897829 be:0.016375054451444982 but:0.01586396852970274 out:0.015503094089883073 or:0.013721423267833084 not:0.012734170433403743 :0.5375906061780248 +and:0.13712889236632245 of:0.12539612751373697 is:0.04830087754703676 are:0.044231539061572005 it:0.043302287765315306 after:0.04191463924322571 in:0.03635432637356784 that:0.024437918321490303 was:0.02352410618497065 same:0.022400352251760906 without:0.02214838203842862 not:0.02201211637119719 the:0.021669247830129728 now:0.021264756988634188 there:0.019537944004853997 by:0.019499811405294633 which:0.01720404425741897 from:0.016984791580026838 to:0.01569053153333131 :0.27599730736168565 +of:0.288895365240126 in:0.1297019296021782 and:0.08160715503076461 to:0.06437607531629212 with:0.05857511896905373 for:0.053159207307183626 that:0.034596136600926544 In:0.03019921964357991 on:0.026000459169990005 from:0.022457132776554856 are:0.021354371803953606 by:0.01878886774557101 at:0.01695695068453682 all:0.010088125148173097 upon:0.009714061580471882 nearly:0.008222668965299655 is:0.008199302092857704 but:0.006736129559745992 against:0.006590904246114328 :0.10278081851662631 +and:0.1716485971970451 that:0.1400989318756159 as:0.13700289279980563 but:0.04217126703364742 even:0.03369024981472458 or:0.021330853432285947 But:0.02112444561030227 And:0.01800398571411738 and,:0.01759157065582032 me:0.014945844837500642 asked:0.013388617418746236 know:0.012700470859234694 see:0.012503859685876155 ;:0.012264042087395387 that,:0.011470423184084644 him:0.01047580436533919 or,:0.008655497431389514 Even:0.007900493123505931 than:0.007850790689362869 :0.2841813621842002 +the:0.11919516938815296 of:0.07230453158552728 and:0.05781056740443249 a:0.043018564803886335 to:0.031305092790907506 in:0.020848713353460488 at:0.014270110001066288 .:0.012526810245749479 :0.012413283442322082 for:0.011719122709941797 by:0.010808400946589808 or:0.010404172990115616 The:0.01003576004804544 with:0.009811868184449042 tho:0.009295902015355835 was:0.008924239095331684 that:0.008672304223433876 is:0.0085591147338948 be:0.008335143826716943 :0.5187411282106204 +the:0.6002852433142286 a:0.1011050980854182 be-:0.05218974486767293 The:0.03923154692617932 tho:0.031010815255503598 be¬:0.018122295546608436 be­:0.016457688593183376 no:0.014177162203699554 and:0.01396914806168562 tbe:0.011928969264886746 great:0.009836216604069742 this:0.009128860491064383 to:0.007585870987560288 any:0.007356847662282651 show:0.0054493502618331606 that:0.005103979309916859 other:0.004593171632485096 said:0.004541909127777498 by:0.003908082717591082 :0.04301799908635284 +of:0.13183749286114466 and:0.07725436265204207 to:0.059101678448086926 the:0.05708552948649775 for:0.03784554519876496 a:0.0337568488142545 be:0.030364764374233667 in:0.030313057311352705 was:0.02352110568090035 as:0.022538626295087315 is:0.020948819818570726 or:0.020774032039069697 are:0.019388335288484396 with:0.017738488232452214 by:0.014647356579406575 which:0.014299900764256166 were:0.01415179125331045 that:0.01388807449973729 on:0.013837710459110107 :0.3457064799432375 +:0.04886162056411152 and:0.040019830359908116 made:0.019534249586484108 was:0.01884742032062261 recorded:0.0156557013153549 that:0.014962923641391521 be:0.013346741481126276 is:0.012414190474703378 o'clock:0.011973468167413116 placed:0.011531292464673245 out:0.010920644875481857 found:0.010814196298763954 place:0.010167028437165111 situated:0.009811016372775217 up:0.009511290277384947 them:0.00920663098385622 been:0.009160737073209432 him:0.00901249715764949 are:0.008449437635810648 :0.7047990825121143 +to:0.36025176515569607 and:0.08241039391084376 we:0.06934684684089375 I:0.056386382071651274 will:0.05373489272164294 not:0.05138173061554343 would:0.04205203402315911 they:0.02999081098549014 you:0.028862483671816916 We:0.02205901546665653 should:0.021835313966866998 who:0.021310452292971658 must:0.021285717933973772 can:0.014999159503990049 1:0.012988607734092331 could:0.012249925730038358 They:0.01107413320114236 may:0.009800534893397677 shall:0.009656022124761294 :0.06732377715537162 +and:0.05997839949323416 of:0.04155901520846649 to:0.033993177150932335 the:0.031332599195324745 :0.01759623527336485 a:0.015941127146079388 his:0.01494485698036402 in:0.014566971639128581 at:0.013684312865390317 that:0.013541883054452907 for:0.012311272738223144 -:0.010230354103196927 or:0.010187521108559324 it:0.01005121827291802 alas:0.009527302563138731 her:0.009340400314241243 was:0.008422794877327588 by:0.008292619016982387 :0.007426139594701715 :0.6560717994039732 +of:0.2734166614204484 to:0.09987875797362945 and:0.07177947172491125 for:0.04706910868816631 with:0.04698059864400712 by:0.04232202393543473 that:0.02480575876082181 from:0.024752815390703797 on:0.02243975685235006 a:0.0223604282483973 in:0.02232100488918484 thank:0.021251596841258866 at:0.021211169687275797 the:0.01713847012268702 said:0.017014695983771568 Thank:0.0145277312021215 against:0.014282421050429843 as:0.011204026633637275 Almighty:0.00957652630368802 :0.17466697564707503 +and:0.06911900984437591 them:0.02977367974043073 put:0.02908567729325693 out:0.025988117288274822 carry:0.021094922405956194 was:0.020496295450414526 work:0.019793803679286376 it:0.01931024237490275 that:0.019164015614479595 him:0.018505457900182137 placed:0.0159704901942951 up-:0.015033537339464968 made:0.014322160361255285 up:0.014271535580732367 down:0.013260437300405164 or:0.012859310150814167 men:0.012708226489101231 go:0.012706990069256519 is:0.012349877431639442 :0.6031862134914758 +of:0.11612482305206981 and:0.06356839079129821 in:0.03777915221542686 to:0.03624551483870151 that:0.027443230194629607 on:0.02312822586607452 for:0.022477089050882942 things:0.015359723357775905 those:0.012573795546543136 by:0.011831423162610986 but:0.0096323414493642 upon:0.009457852428527692 with:0.008901882196844254 from:0.008887439883860891 In:0.0070271962038077965 laws:0.006597068072522801 party:0.006220269646256386 law:0.0061105026759166806 ,:0.005817865707339337 :0.5638162136595465 +the:0.11919516938815296 of:0.07230453158552728 and:0.05781056740443249 a:0.043018564803886335 to:0.031305092790907506 in:0.020848713353460488 at:0.014270110001066288 .:0.012526810245749479 :0.012413283442322082 for:0.011719122709941797 by:0.010808400946589808 or:0.010404172990115616 The:0.01003576004804544 with:0.009811868184449042 tho:0.009295902015355835 was:0.008924239095331684 that:0.008672304223433876 is:0.0085591147338948 be:0.008335143826716943 :0.5187411282106204 +and:0.087307163202212 of:0.06777448558535502 as:0.03877901691875604 that:0.03513754157098749 all:0.032487523676641726 but:0.028460537970670732 for:0.02647218735981274 so:0.018821104635412447 fact:0.014153077404321217 says:0.014075988360999268 said:0.013283612059123553 to:0.012656875145228147 or:0.01260912635778496 it:0.012500420721817401 him:0.011621027315363172 in:0.010783679188014213 when:0.010538944636922202 than:0.01011823007317294 if:0.009653060594551698 :0.531766397222853 +to:0.287584041601006 will:0.15769834770257507 not:0.07741817783183999 may:0.0494110113156455 the:0.04514344940223226 and:0.04358857158174068 shall:0.04278893333192914 a:0.0383863002459405 would:0.037048603875255756 can:0.025975117172609155 of:0.025607836435376428 could:0.01827620410436736 who:0.018053688472502803 must:0.017595156481229744 or:0.01625556900108016 his:0.01583973504209045 they:0.014425335074905444 should:0.012476697298300237 might:0.012129408991862088 :0.04329781503751123 +with-:0.05831648684630747 and:0.05553969733695175 find:0.055402678280736174 pointed:0.04834593119944516 go:0.04308656681492487 carry:0.0426486253296774 get:0.03559272844419099 brought:0.03528331343427266 went:0.035072511760528835 taken:0.03362255282729403 come:0.032472162886387476 them:0.03130878557942161 carried:0.02879822300854223 came:0.028184375386178153 it:0.02536050940986234 laid:0.02420933491326844 carrying:0.023980571290292407 him:0.02044299719320994 made:0.019865487627193017 :0.32146646043131505 +and:0.03868242960999506 as:0.031124813427855922 went:0.02352509775927722 him:0.02196555539050794 them:0.018760608639018784 up:0.017985449426794205 is:0.017894175620344187 go:0.017174904667157563 able:0.016756848979943888 going:0.014481672239490295 it:0.014128375989346808 was:0.013277058274565138 time:0.013249953793837373 not:0.012469887553778763 began:0.012465717758716884 way:0.012105610030480113 back:0.012090864562211581 right:0.011941707822828511 amounted:0.011564315359310868 :0.667354953094539 +and:0.06417126765983475 to:0.04178361702108848 will:0.029988845642061827 not:0.028082690131025698 I:0.026354003955522076 the:0.025586356647398417 would:0.019814213898170865 he:0.019152058653431434 is:0.018563723454780908 re-:0.01730782668096934 it:0.01637424878158688 :0.01616937830076277 ma:0.015789400894792173 for:0.014900934007636799 of:0.013839686242899716 in:0.013125841834272444 was:0.012601535698844854 that:0.011683664192247268 they:0.011219074020246498 :0.5824916322824268 +of:0.28767355066866834 to:0.08775711267569858 in:0.08678131196995101 and:0.05160598694501188 on:0.04646139928102899 by:0.04519522654900943 for:0.044547789071328545 with:0.03396756772609607 that:0.033699232901107726 from:0.03075346596941143 at:0.027039283056790858 In:0.021061449543044047 as:0.017514234937992545 all:0.012543839382496166 upon:0.011844431150487573 is:0.00998972746569266 was:0.008814315973987914 into:0.008557199930727406 through:0.007781895704231326 :0.1254109790972375 +the:0.34840274383535863 of:0.12877693273281984 a:0.09056670927733128 and:0.050365173421589825 by:0.044439355698757316 for:0.04224644547851506 to:0.0333634025255026 The:0.020238074019217178 with:0.016604972241061184 their:0.016347518245115836 his:0.014150019072612636 tho:0.013497865885424455 above:0.012671612344164385 or:0.011095756713367233 said:0.010358449826096447 our:0.009524869185231103 this:0.009209099972876528 no:0.009182919746494296 in:0.008599087576521915 :0.10935899220194222 +and:0.05336099986324692 it:0.05107450207400165 to:0.032690009414231204 that:0.02577083458832759 is:0.02418179075762537 It:0.018337744391394926 of:0.015957251334550414 was:0.015925218443885166 which:0.015203814133874938 will:0.014210350737328027 be:0.013935175287412203 them:0.01230844205656587 for:0.011729274657386594 but:0.011590672564601837 as:0.011101813487740064 not:0.01089264591088988 I:0.01070927356699195 or:0.009262912546311232 work:0.008984466464575933 :0.6317728077190583 +the:0.23931310073210876 of:0.21911499208306676 his:0.04257087964405546 to:0.04167282003018301 in:0.03827209589208355 their:0.03795583282132932 good:0.0364220724001348 public:0.030023741627635516 perfect:0.02752248553609018 for:0.027258471089274292 and:0.02366035657457106 my:0.0187874055609008 or:0.018372926266538383 an:0.01625145095750448 her:0.01470756966266343 our:0.01469489214216292 general:0.013803905592646678 no:0.01356189262079306 The:0.013516219393311876 :0.11151688937294568 +was:0.06040893963383711 looked:0.04905093194751218 and:0.048555582335332755 held:0.046864465185500595 arrived:0.043564646037676694 presided:0.03511105586158057 laughed:0.03333365940479187 called:0.029519032799542846 be:0.0273571801210592 aimed:0.02510204347258898 is:0.02465687345219929 sold:0.02367514221224923 made:0.022346796056809285 are:0.020666019603766773 were:0.019633139205719793 them:0.019390326341278536 given:0.018618857951781587 interest:0.018148801724264235 land:0.017180196920472873 :0.4158163097320356 +to:0.07752854502651711 the:0.07673613975495086 of:0.06275014889712596 and:0.04936813194133293 in:0.027937366320264636 be:0.023318286763061143 was:0.020541035155388323 that:0.017867741273576238 for:0.017240801074166114 a:0.016076322469659277 on:0.015801564809150254 is:0.014667800430822147 at:0.013946832259807468 I:0.013564002146502779 which:0.012906278348658162 or:0.011784935684832451 :0.010967318359137649 were:0.010719081303934503 be-:0.0105412047190783 :0.49473646326203374 +we:0.11697155889502145 I:0.0845244512536666 they:0.06703915516010882 and:0.06558267085091485 he:0.061508308129046285 who:0.058481763546437006 which:0.05773813981767161 it:0.055379033506474926 that:0.02606071214813814 We:0.025744075174876164 It:0.025318934836458598 you:0.019324529427879926 or:0.017508844081082813 as:0.015718890788679593 States:0.015634794679267604 person:0.013748972405449958 corporation:0.01266441550192656 He:0.010768626389829575 They:0.010685962768035222 :0.2385961606390343 +the:0.3639556321362812 a:0.14859188030139575 at:0.05752966875274784 of:0.04652203187104951 The:0.046042627861862806 an:0.03016306759876526 for:0.02963469606091993 and:0.025736203981689233 tho:0.02036691405754115 in:0.017074744593949583 his:0.013582121173473247 this:0.01209890723055886 to:0.011507561753440462 tbe:0.009187708475113885 that:0.007668551162244538 A:0.007560771215693254 their:0.00749734173930215 its:0.006581437589586106 very:0.0063156852339375695 :0.1313824472104477 +the:0.13495043060413897 of:0.08116512228138067 and:0.0666484668031579 to:0.061479885922863124 for:0.0225472057129304 in:0.022258265482069606 be:0.02060705238488401 is:0.018128702512605167 was:0.016565762763359006 a:0.015576597161064762 that:0.014241236932705084 their:0.013967877427544685 he:0.012125594536493497 or:0.011887633530224664 will:0.011130101470498135 so:0.0108874112080436 at:0.010863400836486839 :0.010492776840493524 his:0.010323787803221298 :0.43315268778583504 +and:0.011468337578322729 men:0.009444264538827128 in:0.008739790615117619 ;:0.008352583544620297 there:0.007183646050090892 to:0.0068518365607355206 :0.006503380372124513 right:0.006439031418278083 man:0.006429842214349308 hundred:0.006161453393843034 one:0.00600198049733743 time:0.005983845494873496 it:0.004802967014827943 women:0.004797730268557954 work:0.0047574550371684106 him:0.004479716848268249 them:0.004415414345832814 due:0.004401427268565136 wheat:0.0043428598431368495 :0.8774424370951226 +of:0.16169169256142465 and:0.09947978163764039 or:0.08314276006530805 the:0.05846638296260477 about:0.04414662366542439 to:0.0411928475676035 for:0.0376805494325541 by:0.03015889838682633 in:0.024179409102814204 at:0.02256135861903469 are:0.020687900432525812 from:0.020553977096880807 per:0.01990201093790261 than:0.019396692441813176 section:0.017828661497024403 was:0.016058342952433902 is:0.015620731227395082 twenty-:0.014583148699215571 with:0.014492564839353855 :0.2371756658742197 +and:0.07937204038540155 to:0.07144978193605266 of:0.0672060292061216 the:0.05555592158872507 was:0.03668090227291337 be:0.0349085883197884 for:0.032924091876542425 is:0.02664876365997107 in:0.025674788931279047 a:0.023223776118971466 or:0.016939206298533106 that:0.016539581232081792 he:0.014316053657548605 have:0.01328430700369435 not:0.013187005768047653 with:0.012119957551210947 been:0.01201541922496813 it:0.011894114007232226 which:0.01106992325189301 :0.42398974770902353 +feet;:0.11357471220260701 ;:0.044446283732876145 running:0.042121722708375685 feet,:0.0417192490865559 2;:0.039658552584179566 3;:0.03411765781064461 4;:0.03089010786798679 5;:0.027094432118863938 feet::0.02686263544690454 stake;:0.024862317261960174 street,:0.023404342186465223 8;:0.015600645397194537 and:0.01543868484824047 6;:0.014759944263205968 corner;:0.012028934009218293 chains;:0.011678638489437624 lode,:0.011365965759317599 rods;:0.010805626800171617 point,:0.01022440750751124 :0.4483451399182831 +No.:0.16430908390757137 and:0.10125247213643578 the:0.07392555283840004 section:0.05791396625484487 Section:0.043434101885689844 Book:0.036183765183727214 lot:0.026196320309781453 .:0.02529760265530021 of:0.023119053659659956 block:0.018180971848976712 to:0.017055245535323903 at:0.015554434061925432 an:0.014290144872512527 feet:0.013545542400789593 miles:0.012207622094378626 from:0.011729195242791233 S.:0.011680991030657515 west:0.011314643080542098 or:0.011186170832556576 :0.3106231201681351 +of:0.20349261444822628 in:0.12215764323712433 and:0.10294720099549841 by:0.0838835221951857 for:0.058165009018651986 are:0.04828933180801068 In:0.046562280659951334 is:0.03393056770880402 with:0.025656845167847248 without:0.02250666393109908 after:0.01948394752771996 was:0.016512715692867264 thus:0.014758370915076202 After:0.01400707229834038 while:0.01276740137444503 from:0.012550506419021015 that:0.012299796347115224 to:0.011897123313948203 were:0.008697956358244881 :0.12843343058282278 +the:0.14957672291702365 of:0.08498002854255245 and:0.05726623870829423 a:0.04495984628063783 to:0.040159371349577026 in:0.0364293810645345 be:0.017565835952854315 for:0.01494504314278294 was:0.014215201942233868 is:0.013828094687930873 this:0.012113184880053737 or:0.011909582925857093 as:0.011598343721070768 tho:0.011585434102473565 with:0.011313987534899572 In:0.010796003112170636 :0.010668854187104315 his:0.01063646294435309 by:0.01035206669108507 :0.42410031531251047 +this:0.34291910176301865 the:0.3178813781606237 said:0.08215864016650191 that:0.032756676033295434 York:0.022892743320693763 a:0.019527670644017642 The:0.01565739453468729 tho:0.015199054728811227 of:0.014990892831014442 our:0.011890809853489224 other:0.010933565626948274 such:0.00862949584034154 and:0.007830948819617886 his:0.006719915015513865 same:0.006019760606908884 every:0.005813267925062698 tbe:0.0052497497330371 This:0.004619865759699984 thia:0.0034423592088814823 :0.063866709427835 +the:0.27610559311448624 of:0.16202166118156378 and:0.07328369823930733 live:0.05564218555492569 a:0.054451994602264554 The:0.042912769306466016 tho:0.024256889483443903 capital:0.023704936789555955 his:0.022655623169060515 common:0.01963326341176907 other:0.019385100496239354 their:0.019126783707421505 our:0.014038989325097536 that:0.013827056409902354 with:0.013489650040449296 this:0.01336087007697274 in:0.012471049775055523 same:0.012217986303163127 her:0.011957518171758217 :0.11445638084109733 +to:0.5814809218801941 and:0.05791650130276906 not:0.047201395046256665 will:0.04181790823418903 would:0.025529881898846824 they:0.019046818012905104 may:0.017534766871759432 shall:0.014820760528679481 the:0.014221183396059182 there:0.012043468089735321 who:0.011453750451960917 which:0.010879334799608365 should:0.008617394943892312 To:0.008108293502791125 you:0.007373914341955139 can:0.00734438836725843 we:0.007250708339914404 must:0.006499238770249367 or:0.00570627592424886 :0.0941530952967269 +the:0.13686668877934766 and:0.08383514391330024 of:0.059718621169313084 was:0.03727618847344103 a:0.03649334001639883 be:0.0335366488926338 Mr.:0.022871838076320834 is:0.02244851274080329 The:0.021350094452521878 he:0.017827721755689814 to:0.016883384244651054 I:0.016655016658348544 that:0.014634594576832432 in:0.014174758561693103 an:0.013895347242258587 or:0.013867087491632712 his:0.013462461384330614 it:0.0130415659086541 are:0.01261496217524043 :0.39754602348658796 +the:0.24113648451017178 an:0.12583072965750053 any:0.06759288763722322 that:0.047563693568812564 last:0.04332073440286448 such:0.03719417012888072 and:0.03485456517888008 of:0.032493245261096725 a:0.03225271524616693 recorded:0.028158055407961433 some:0.0267816511975538 to:0.02269133399086804 said:0.02045978616714468 no:0.01759280400817003 this:0.016927184853997676 The:0.016469943225779056 first:0.015616906666689667 every:0.015023072170936111 all:0.013885367879390558 :0.14315466883991187 +the:0.164622510216757 of:0.07124655442027641 The:0.06889686753552093 Mr.:0.06325252336407099 and:0.044366166073833896 that:0.04264168951999022 a:0.026935017441304315 Mrs.:0.021417054292642027 his:0.015373932368963752 in:0.015166387820743404 this:0.013228806556018961 :0.013136427543557318 tho:0.012055764911697249 .:0.010810741278177282 which:0.010410363554372798 Dr.:0.009964965976760979 to:0.00981126413214408 at:0.009089697865957478 when:0.008784665899295399 :0.3677885992279155 +of:0.37329467672305094 in:0.10554505579289493 to:0.08492768562145261 for:0.06518132928642896 by:0.050945468864395875 at:0.043998053193945126 with:0.03799941177791311 from:0.037709117360584465 In:0.028639446101148925 and:0.020868755651195732 under:0.018409852088797314 that:0.01808445527010742 on:0.01625114385541687 as:0.0080340870858288 upon:0.007680418084531424 into:0.007474951967624174 all:0.0074586112846349245 about:0.007290649669728931 through:0.00714659349400004 :0.0520602368263194 +and:0.05538588646923613 is:0.05146626930162092 necessary:0.04939641718112379 as:0.04590592443730974 enough:0.04147253624756804 able:0.040167199368239356 order:0.03704539784162315 was:0.0329343354293705 have:0.03245883570297187 him:0.031121904703555175 them:0.028253904891473315 not:0.028223254321069504 ready:0.026706945321321632 willing:0.02577283113395331 right:0.02556058012563461 had:0.025416539211647462 ought:0.02480166207379497 refused:0.023887890094339715 going:0.022756317587865598 :0.3502653685562812 +the:0.17027190784407714 of:0.10585557835912704 and:0.07355927771906935 to:0.05486905984958157 a:0.04543746377447453 in:0.03128555052933153 be:0.028704485173100775 was:0.02350529800142253 is:0.02215549335554494 for:0.02077556258358175 his:0.01804639098945333 or:0.016335100594594944 their:0.015847999621030492 at:0.015526727957625254 been:0.011815834631173878 are:0.01139058447814694 this:0.010362020528084328 tho:0.01035635773045807 its:0.01000473355720393 :0.30289457272291764 +It:0.2869652511530185 it:0.21847989165419662 which:0.09757679774133847 there:0.06121351691252081 that:0.03531101516262228 There:0.031618849754915905 he:0.030890546048208647 and:0.024437197006416275 who:0.021033748799042257 He:0.010707242031008873 as:0.009530375660928073 This:0.009503003395791519 she:0.008125325352523074 what:0.007526278306596313 time:0.007122769805518748 I:0.005971305151081323 She:0.003742396952666151 day:0.003717780286861902 "It:0.0036387179725527142 :0.12188799085219149 +to:0.17789135538741502 and:0.09346109495820032 in:0.050468375914963705 of:0.03819912822078437 know:0.03651152347003744 that:0.03173773533526971 or:0.031402093770941185 determine:0.029154384073267217 question:0.029154377018515636 see:0.02353245959407216 decide:0.023249526430380217 but:0.0207157442045613 matter:0.019976624936296705 ascertain:0.018718166603108974 at:0.01686559236562796 doubtful:0.014423814682537067 for:0.014191043154161401 on:0.013408468967749068 doubt:0.012837165778481015 :0.30310132513362953 +part:0.062325847554271264 one:0.06063111468590399 some:0.037306181508129276 out:0.030654329894436005 members:0.022088577251346518 and:0.01924141362015411 tion:0.018787037941101363 portion:0.018051689715010356 side:0.017943951891416163 that:0.016507907061938807 member:0.01593843659970584 office:0.01574566960076909 majority:0.0154104008831532 front:0.014054186394075671 parts:0.013607560627939948 payment:0.013458169751259314 all:0.013339146994107673 end:0.012284189708442875 time:0.011200658322325753 :0.5704235299945127 +the:0.6522061542567349 a:0.06696633391223385 his:0.02982832699919397 tho:0.023111096634352794 The:0.02106720834343935 of:0.020388393148104863 and:0.019129418659899883 this:0.015150139978477162 said:0.014740344957730373 their:0.011826060816417846 tbe:0.01008583221500431 her:0.007258874104940398 every:0.006046319704939638 our:0.00587359564577024 my:0.004765889015775209 its:0.004653558478452692 in:0.004594477000428906 or:0.004103857743205711 your:0.0039653959446177035 :0.07323872244028012 +of:0.30314984437209974 to:0.11054124686730532 in:0.09079310215393743 on:0.05238448050963721 by:0.04944497465038644 and:0.048053402094514794 for:0.0464069881880675 that:0.03906803894572302 from:0.03798077662363168 with:0.03496582520704284 In:0.022362125782841694 upon:0.01604953137161941 at:0.014873878694489114 as:0.012823641251860276 all:0.01110372269136694 into:0.00971247327922601 through:0.009143728748034851 which:0.00815925266410989 is:0.006669038953758627 :0.07531392695034717 +the:0.7025112410481034 a:0.05472278084606614 The:0.04835947866711641 of:0.04219551666123791 tho:0.03476585338707661 and:0.012340496316434883 in:0.009670820922950947 tbe:0.009247859329263235 by:0.006214986581764929 to:0.005643710997645167 said:0.00531846728590285 one:0.004035032555319742 on:0.0037254694114485587 A:0.003651539771746538 along:0.0026402142428675456 this:0.0024535076988707956 with:0.0023657396333245473 that:0.002293245627203897 or:0.0021507073773208087 :0.04469333163833517 +the:0.13694691779286478 a:0.12770770506662932 of:0.07155133194175464 and:0.06333434399536265 to:0.060973533878366425 from:0.04022305045339537 is:0.03916583115860888 are:0.03381503190493431 electric:0.03204931294604487 no:0.02548576684838001 or:0.023414134975543555 was:0.022086602357623514 in:0.021128734599881974 will:0.020279115875794024 very:0.019375968106370788 with:0.01883178207728508 so:0.018105787076586378 not:0.017020644010599578 it:0.0157880016957276 :0.1917164032382462 +to:0.09708818273815718 and:0.08471712336875929 the:0.05888946482742284 of:0.04894277738968947 in:0.03617168028992521 not:0.03417163055769297 I:0.021805889824396695 a:0.018727303601505464 or:0.017603175021279036 Mr.:0.017037853838329148 you:0.01588262601089754 In:0.015031167938871473 be:0.014907729054273863 by:0.013523537470785251 have:0.01324844248480972 will:0.013083156827153202 he:0.012683181941367623 it:0.011972013921886274 as:0.011026248184805805 :0.44248681470799195 +the:0.164622510216757 of:0.07124655442027641 The:0.06889686753552093 Mr.:0.06325252336407099 and:0.044366166073833896 that:0.04264168951999022 a:0.026935017441304315 Mrs.:0.021417054292642027 his:0.015373932368963752 in:0.015166387820743404 this:0.013228806556018961 :0.013136427543557318 tho:0.012055764911697249 .:0.010810741278177282 which:0.010410363554372798 Dr.:0.009964965976760979 to:0.00981126413214408 at:0.009089697865957478 when:0.008784665899295399 :0.3677885992279155 +one:0.1028303141280697 part:0.05963429477052991 out:0.04766456937681193 some:0.031418679026461914 members:0.030764490253327767 side:0.029940657362655835 portion:0.022063658796890564 office:0.020457735219956013 member:0.019726706386316174 end:0.019666887540649894 tion:0.018667441728710307 parts:0.016814747270460957 people:0.014112771422418794 all:0.014072739582212475 any:0.013183573287639892 One:0.013083578354183906 that:0.013024335602903442 account:0.012482348155001894 many:0.012077825070275192 :0.48731264666452345 +and:0.07544149771999091 as:0.055536095622542185 able:0.04636527187494306 order:0.04222940210493461 began:0.039522725159419986 enough:0.03931553504810509 time:0.032864708209900395 right:0.0272799079547994 going:0.025267570850853415 desire:0.02512085093362298 them:0.02372217650818172 him:0.023510489812096757 me:0.02282935546894917 wish:0.022721677811930692 necessary:0.021718416682609206 trying:0.02171729873662903 power:0.020934072650848536 unable:0.020767636058353477 is:0.020357803929950194 :0.39177750686133916 +I:0.1476700178082391 they:0.06016355816495782 he:0.0591504294388833 and:0.04196740324684201 we:0.04082637166854956 that:0.026321142466156425 it:0.0245829139152565 We:0.022063931716429154 who:0.019027598108371076 which:0.018250482877408568 1:0.01743278842423035 she:0.01720713516725571 you:0.016631991026109516 They:0.016434641796915898 He:0.014477494792968356 It:0.013759959045517372 but:0.009324056907740814 had:0.009154944358288938 was:0.009051608123383603 :0.41550153094649594 +the:0.3954083386097213 court:0.12026764125160032 a:0.07750263512221973 The:0.03303169584474633 his:0.03224837184534424 school:0.029812770014238186 tho:0.022607278855703718 dwelling:0.01690485398821755 opera:0.01534118763747071 clearing:0.014283873426401339 boarding:0.014048116609409607 her:0.013896571979369325 and:0.01156723691724807 of:0.011117160873640279 said:0.011075538329440457 this:0.010526844061106598 their:0.00970153449683168 tbe:0.009615125532606033 custom:0.00814276533800962 :0.1419004592666749 +the:0.1265128134663309 a:0.09930635710420226 was:0.08717561875012765 is:0.08253455392505112 are:0.06355983661984926 be:0.05074483688291412 and:0.04799477243760521 were:0.044306420758068815 his:0.034210996334289485 been:0.03217192831705899 of:0.030039255188499828 he:0.029180498903649835 very:0.028709613289698333 their:0.0284043157814048 had:0.026479583056621493 has:0.01960765678122702 have:0.01878502180580603 as:0.017040023582875735 any:0.016398174169899762 :0.1158377228448194 +his:0.07549619313346606 the:0.06297971574615724 her:0.047679359148127175 John-:0.0390045191311621 sea-:0.02922698055383749 Jack-:0.024035261707355225 of:0.02187541752145803 per-:0.021271123245120427 per:0.019798155180879906 their:0.019580962845074868 my:0.01681090362837594 eldest:0.016496737346394272 a:0.015318226667421386 Wil-:0.014587580085129719 Wil¬:0.012845431467166858 your:0.010301290746845696 and:0.010262849945282957 rea-:0.008404627955843852 youngest:0.007805754606157142 :0.5252189093387437 +and:0.23230091233692393 that:0.08435801933213073 but:0.07694023833692899 But:0.031128007488991794 time:0.028309055258705685 And:0.02277653504099638 or:0.017436844950044838 even:0.0162375771578274 day:0.012700202986917349 especially:0.012283548373393313 ago,:0.012049018991424071 come:0.010659562121707577 days:0.008908031008210932 all:0.008782693924197072 ;:0.00841041840575967 which:0.008096103300441563 him:0.008041035746853841 it:0.00802821643432052 them:0.00794447867037068 :0.38360950013385364 +and:0.11945099780584569 the:0.08045531677831665 a:0.04677743862883456 of:0.039579262840383544 to:0.03527825398132815 in:0.033646061040860036 I:0.02706484146467232 will:0.02407161442557767 for:0.018572828810932116 his:0.016432832696983753 :0.016256290821023103 that:0.015073230871035431 he:0.013292403629552038 con-:0.012392304502630121 their:0.012368166495435559 1:0.011928297075019023 would:0.011773189010209633 was:0.011589489847535378 The:0.011517101644908882 :0.44148007762891633 +the:0.30706935501960464 this:0.1315400685665369 a:0.08415359566046526 any:0.03793787063186654 his:0.03392149947747699 good:0.03159236599103096 same:0.030091053611118832 no:0.027830890075292176 of:0.02686931319405183 in:0.026143818964858373 such:0.02124005799942024 and:0.020472227879572175 to:0.019897513621458328 physical:0.018117399111852596 or:0.016700593638139038 tho:0.015808592371189797 mental:0.014830166263081467 every:0.013604812758403933 their:0.01353915376919008 :0.10763965139538981 +a:0.2583205576088275 the:0.25559024777048706 his:0.07380819512882111 and:0.05737288182456604 The:0.03868124508929126 her:0.028072377628116797 my:0.020583710036067612 their:0.020018178006841508 no:0.019374983178693 of:0.015613080766877513 or:0.015527738788805947 tho:0.015120778839666569 any:0.014365259075976104 your:0.012745373313185331 little:0.011698754338789447 A:0.01108908339891348 this:0.010733890527774298 old:0.01018500052688871 to:0.010184311486919445 :0.09991435266449125 +and:0.10611519255823428 according:0.06952438079283736 as:0.05512747190661193 went:0.04929057670284787 go:0.0456284970162586 subject:0.04133976376235043 them:0.029379267703267962 or:0.027881037793105228 addition:0.025119211782262278 right:0.020088518475273015 restored:0.019919599489726297 regard:0.019748475014844124 sent:0.019722208194202676 than:0.018933347654007785 feet:0.017824760828155695 brought:0.017558447990898965 him:0.016673944255916926 apply:0.016566242528283013 way:0.01649047063316725 :0.36606858491774835 +up:0.02649833166823249 in:0.013922971896482757 him:0.012243987002828772 them,:0.011138389063714607 ;:0.010822328041138932 it,:0.01040908093868909 time:0.010371013084232515 down:0.009129145116288243 out:0.008903541696581644 them:0.008597915586628061 lying:0.008217163564154289 quiet:0.008168689663396627 him,:0.008046272319595567 right:0.008024792627714883 dull:0.00770462366523914 it:0.0073657230846423585 here:0.006918258370115766 years,:0.006870370193253397 made:0.006677838130258562 :0.8089695642868123 +and:0.1488585069238501 was:0.1274836475572752 is:0.11837983886720659 are:0.08343401398202678 be:0.040667889252532535 were:0.038076234569926676 not:0.03687282954113637 been:0.03589700685117061 or:0.03458637491794454 a:0.022209317987925067 of:0.019625377296546936 do:0.017602937895984463 Is:0.016137197439412356 with:0.01596151329562246 by:0.014938464106736977 that:0.01468732077873671 but:0.013967284183086 to:0.013932499364670519 have:0.013891604759106727 :0.17179014042910237 +and:0.07607965573275648 that:0.029003717174563036 was:0.026339483175456965 made:0.021571751969520377 is:0.020537305565204233 as:0.017914075610509415 it:0.01717890841761646 up:0.016709861007033578 but:0.01551316720650669 o'clock:0.014755698743758164 found:0.01405782829206355 them:0.01305334410514391 interest:0.012818695923599957 be:0.011930172246686143 him:0.01191484948114096 out:0.011834932245175319 man:0.01117775421202903 recorded:0.010949129636550672 interested:0.010594433249324011 :0.635065236005361 +not:0.33514348968892443 has:0.14980360228366676 have:0.09711080022761757 had:0.0598004747847891 as:0.057032886427946745 and:0.0522063844796118 is:0.02781927024729907 which:0.01773642460277092 it:0.01565332227052091 are:0.01369034019043376 never:0.01340875710975791 that:0.012056648337100866 was:0.009896256690722081 ever:0.006971084649731337 will:0.006071639773572725 be:0.004879027733182341 but:0.0047132568541329665 shall:0.004225151684121583 would:0.003758454749291596 :0.1070227272148055 +the:0.3339545015704507 said:0.1850560284107273 a:0.04446212061030324 of:0.04211164032624024 this:0.02981900648250985 his:0.027736229547943823 tho:0.019376221141954267 in:0.012987421856347674 their:0.01178596945999201 an:0.011088097600122077 and:0.01037701001886655 The:0.01036616690058917 certain:0.01017599721465579 our:0.010129192876718554 tbe:0.009309785943529566 same:0.009262052962294317 large:0.00808297031258944 such:0.008064084320276284 to:0.007709375682364026 :0.19714612676152515 +and:0.17524848340142002 the:0.0479975854017347 I:0.03440069156281088 was:0.03258729350356271 had:0.024692509024319173 is:0.024276094360795687 he:0.023202660211985637 have:0.020658345259642493 that:0.018503473928167195 of:0.017534178706441465 a:0.016198834413010406 we:0.016106893343663508 but:0.016092330466637328 so:0.01590000704770257 which:0.015646492847489514 then:0.014691969551353299 for:0.014575253708594426 as:0.014531349732309075 will:0.014121026441682137 :0.4420345270866778 +virtue:0.062060494787377685 out:0.05417899169104244 part:0.03289673107629515 one:0.02969369892462812 quarter:0.027015883171169475 favor:0.01993830018372674 result:0.019463829004704194 guilty:0.018891084377354095 means:0.018499162894926688 end:0.018170939082736048 that:0.018121271122199262 construction:0.01726217741616459 presence:0.017003995482744873 tion:0.01673652166540914 case:0.01640819963257697 side:0.016055927605250184 erection:0.015381239457214257 account:0.015287601389485416 hands:0.015156055434805247 :0.5507778956001894 +the:0.19473969872302035 our:0.13126198051453972 their:0.11358840898148766 of:0.09093337184062367 and:0.07322983855864304 his:0.05600295570182808 in:0.04523194350212719 its:0.022203508853707858 my:0.021057757382271624 your:0.020718448460326243 many:0.020607820221677006 fellow:0.019463189950424363 American:0.018884828849251085 other:0.01599936892642094 great:0.013218936760591616 her:0.012886141365169893 public:0.012581105530130495 good:0.011483370915220618 for:0.011278367109781744 :0.0936289578527568 +one:0.05046040490855256 on:0.017326825982101626 receipt,:0.016380893207002867 two:0.016306410615081902 person:0.01053903038033433 law:0.009829622188943836 and:0.00977163609753832 day:0.009073236824790552 man:0.008810498348589236 more:0.008387404018088752 part:0.008093055687957146 year:0.008051327401722003 mortgage:0.007135261281215227 in:0.0069644189054931995 action:0.006614323960653262 sold,:0.006134203142255761 right:0.006039722381070165 side:0.005958090984117297 any:0.005830955172717658 :0.7812926785117743 +the:0.13019246613947535 of:0.11107446398179821 on:0.0648750507221831 to:0.04821166399918852 and:0.041539957608091274 in:0.032509125364570554 by:0.026321367049648534 a:0.023788967617769028 for:0.023085893288489093 that:0.01903806584002458 :0.015481689150491508 or:0.013475173677241761 was:0.012881266769612891 as:0.011117453902780178 In:0.011065692166858631 from:0.010945023773721694 which:0.009931178721716782 upon:0.009445776454576772 with:0.009057001789498819 :0.3749627219822627 +amount:0.10525754868620338 number:0.09499714358660709 power:0.04449389628669038 out:0.038318951547376454 piece:0.03356859967216662 board:0.03247467293554284 state:0.031202638804886874 place:0.02848177583762325 plenty:0.02567826602881076 part:0.023542359373446342 time:0.023372527540127416 thousands:0.021692671227156173 class:0.020981004885382782 kind:0.020913317062145657 rate:0.020641890672470055 kinds:0.01902564347334293 line:0.018633937350118937 value:0.01854077587704519 cost:0.017254349059220783 :0.3599280300936361 +the:0.8574343778308063 tho:0.03425505030406973 The:0.029937809763594204 tbe:0.012861269112153018 and:0.008498753920033707 this:0.005079335736293035 its:0.004998137034121335 their:0.004178601825595656 of:0.003863084274106895 that:0.0032494818229456 his:0.0031202999830217165 in:0.0029894165143103803 from:0.0026827421437712836 to:0.0024813038218613444 a:0.00235930544490986 tlie:0.0022652613288846515 an:0.002002732762274455 our:0.0018761425321817498 tne:0.0017844434257742023 :0.013082450419290795 +the:0.39216399053729906 of:0.1062776913376074 his:0.039068299548946424 their:0.034685965628968606 in:0.03172624323245204 a:0.027074932244675262 our:0.02627301934275836 and:0.026222859323347898 all:0.022359566715766083 for:0.022158654231205666 tho:0.01907863764700957 coal:0.01865431788059556 The:0.015847076141173217 other:0.015784419012155423 good:0.015474388099080253 both:0.015247114054084172 these:0.014156257011014105 that:0.012032002211488202 this:0.01198883013708888 :0.13272573566328383 +the:0.13702161225416812 of:0.12286729481640966 sai:0.09392853642632958 in:0.05601195399138123 a:0.055864600723086605 and:0.03736993439972783 New:0.03608533740378648 an:0.02172500306069517 to:0.01727534091762557 In:0.015648855236997456 The:0.011058922597706142 -:0.010909594437015696 as:0.01083061304706077 for:0.009677547699582036 :0.008583525435524611 that:0.007660401190015153 or:0.007316861198268204 .:0.007079592080603216 State:0.00571085915061829 :0.3263736139333982 +:0.1050303037945524 it.:0.021695533054967794 them.:0.015151946870424307 country.:0.009670358959690309 time.:0.009251113635360578 him.:0.00858601819913688 years.:0.008269051977078546 of:0.008049134884248233 .:0.00785267331699182 year.:0.00771447527316584 day.:0.0072153734721044065 work.:0.006338040125302668 life.:0.004993248278538086 States.:0.004739205677072622 world.:0.004719552292141872 people.:0.004621537307100933 it:0.004470038842094141 State.:0.004429296383087736 tion.:0.0042011873244689 :0.752001910332472 +to:0.24307957351151727 has:0.13210596990679657 had:0.08807354046605177 will:0.08108328449510799 have:0.07571153681138774 and:0.07537317245082914 would:0.048056017729254254 shall:0.02998110716466431 may:0.027267043363891467 should:0.02171461981379398 not:0.021123096045622226 they:0.020564043365952554 I:0.018816821439315727 once:0.01355399794308839 who:0.012144663075476507 he:0.00989583038290783 never:0.009779251472068921 we:0.00942715541155458 can:0.008811873296626336 :0.05243740185409243 +the:0.16807735899698817 of:0.10541662057906837 and:0.05138367848570702 a:0.04141865232648221 to:0.0385989743764065 in:0.026264864977736738 was:0.019530675665220657 his:0.018900421021236905 be:0.017373825006196972 their:0.015767721170721456 for:0.01557246589796783 with:0.014071419046630446 is:0.012922913111931644 at:0.012690452250034052 are:0.010702713108721902 .:0.010158075558988393 Mr.:0.009672788574483367 tho:0.009612591781990074 were:0.009549306361446321 :0.391314481702041 +of:0.2136083930708225 to:0.17056959167119246 in:0.1185645017976971 for:0.08408930637224574 with:0.06249219028850265 on:0.046386472235245606 from:0.032371664261813864 by:0.024399584183735425 In:0.022641613938825304 upon:0.01886926541318272 and:0.01838573661810907 at:0.012243504487732274 about:0.011167554226919157 over:0.00984123493547518 through:0.009196881893949856 into:0.0073222576136522085 made:0.007140416138906313 that:0.007043147245702415 had:0.006695189782620366 :0.11597149382366982 +the:0.1454500361787387 of:0.1080247151493501 to:0.04516715868785427 boy.:0.036249098323069925 and:0.03403580073245388 girl.:0.032660326140049385 a:0.03171979252021135 in:0.02714044436566853 for:0.02365213940166824 be:0.021942286684630472 their:0.021087116084698817 his:0.019774122064073623 was:0.014637031197642503 with:0.014008395154201525 are:0.012730720509515858 is:0.011363112041341867 as:0.011357870543086747 from:0.01063391638067422 were:0.010589399829418696 :0.3667765180116513 +of:0.22243874640105774 to:0.11084430961935277 in:0.11011081159781459 with:0.0739138071797596 and:0.06675152154742926 for:0.043443206285764716 all:0.04206096271359721 on:0.03969062025328686 by:0.025935161024409063 that:0.024506958843510118 upon:0.021910045832886405 from:0.0206607204048458 as:0.01702148161855046 In:0.013375885948953637 made:0.011422828004389762 under:0.01108646122233854 have:0.010199373613041234 at:0.009765194153044587 but:0.009422342812445871 :0.11443956092352178 +not:0.24516721951078438 to:0.16147177095639495 I:0.1243789898395584 don't:0.07705843293625829 we:0.06307871444885146 you:0.05206859416770037 We:0.03368693575443119 they:0.028210607468099707 didn't:0.02620370060002809 would:0.021039711240906523 will:0.02096273927554257 and:0.02093265186945521 who:0.01961177562679387 don’t:0.015522178000160945 can:0.014147605718811426 should:0.011677426082218523 You:0.011663263600273638 They:0.010534057442625772 may:0.010253162597353014 :0.031330462863751664 +the:0.12779779587267664 of:0.09619511516275192 to:0.073503790973182 and:0.04619219688167607 in:0.044560151504560164 at:0.039678603613930774 a:0.029203758306644248 .:0.019671552545736895 for:0.017658615685608323 by:0.017465684942161927 from:0.011962704358886422 A.:0.011701011557076714 with:0.011604930953594625 :0.011182298416153489 In:0.011021312159424897 on:0.009821220984593933 tho:0.008813241588061412 said:0.008466975369990502 his:0.00820625466527357 :0.39429278445801547 +and:0.17118943869278608 is:0.03458501917911043 or:0.030155483734553817 but:0.029281764193574804 be:0.023905233543239854 was:0.02301286722878162 not:0.022917442400473182 that:0.019756277484094135 done:0.019634687022032603 it:0.019426229243797596 him:0.017373428263251545 them:0.016231292404783746 are:0.01572134581528784 made:0.014446942713169606 now:0.012569455325628011 out:0.012402167678822875 only:0.012229170943926063 do:0.011791129138658615 and,:0.011028885444100611 :0.48134173954992693 +they:0.1459258611454559 who:0.08681680471341749 we:0.07952597631726407 which:0.0766673823394807 there:0.06655581705231614 that:0.046705066127921926 They:0.039657866507166274 and:0.03827146604339164 We:0.03820001377641155 There:0.03601431064230763 you:0.02797540311142086 men:0.018858438088085332 people:0.01202228188595231 as:0.008463331802882886 You:0.007616588401989256 these:0.0067085780778124784 These:0.006311562204362263 but:0.005877619217317098 them:0.004891620600451637 :0.24593401194459255 +the:0.1449641844563986 of:0.08710595808597107 and:0.060639991043772136 a:0.038971050768985306 to:0.035497607287402144 his:0.022269846080904755 be:0.02150484315278025 my:0.020367185734705945 I:0.01891633058414471 in:0.01859493769918256 for:0.017350580101599025 was:0.01676359899750709 is:0.015084084537449449 their:0.013269247511876204 at:0.012718929570411921 that:0.01170468572340591 or:0.011400632554895979 it:0.011330438956791117 :0.01130401752938815 :0.4092418496224277 +the:0.5995389667295961 a:0.09839273616243858 and:0.047935607934988474 The:0.030467308582484594 tho:0.027254746299723933 in:0.02603821486738835 al-:0.018769437832038827 of:0.014807017383448518 our:0.012951693533320896 to:0.012562118841575745 is:0.010590395821491247 was:0.010227013850346139 that:0.00839007027096489 In:0.007990224251449709 his:0.00796159740866976 tbe:0.007434859816943969 their:0.007143362171604253 are:0.006604236924498844 as:0.006495909851771027 :0.037444481465256155 +of:0.29939740991739433 in:0.12042270982536037 to:0.08483410242471301 by:0.06871634354095287 for:0.04800076404957816 that:0.04559371139781944 and:0.040727599087911535 with:0.0328315234411849 on:0.032237606976999955 from:0.03124598802387387 In:0.025778896004581175 as:0.02007200566598126 all:0.016334326910811603 upon:0.014540571718575505 at:0.014112564244455592 under:0.013994614059672767 into:0.011610951968294266 through:0.00808406586383358 is:0.007688851823717915 :0.0627753930542879 +the:0.37405569465325 of:0.19612373403810432 a:0.06973884153455777 for:0.06144033278341631 in:0.05341145329695183 our:0.039136399005251996 and:0.025198656951978003 with:0.023486326295131518 The:0.019714932936050294 to:0.01580868766307268 tho:0.015475116007622674 such:0.015163644407797359 by:0.014598506828540785 its:0.008711261916591639 this:0.008533463907484279 their:0.00780262787927475 or:0.007456041570885555 In:0.006993489282036119 great:0.006735863549258345 :0.029414925492743778 +to:0.6291692128487474 not:0.07992793354018139 will:0.048514559383439286 would:0.04158541975203045 and:0.03019755895236123 can:0.026609589049207696 could:0.016644170435330542 should:0.016320407689248397 may:0.015205978011690198 or:0.013560368287031862 shall:0.01234294124661079 cannot:0.010024596914119473 To:0.009687060769100284 must:0.007716262603384896 you:0.0059228625923065875 who:0.00519501671052369 might:0.0050575634925924835 never:0.004393104882905256 we:0.0036785589882159845 :0.017246833850972126 +and:0.07181562702745725 together:0.06672214896410926 connected:0.05460722541492519 connection:0.053485248068146786 accordance:0.040816432970329504 comply:0.022327715315442986 acquainted:0.01991331996883064 compared:0.01902004432375884 contact:0.016949822974841922 familiar:0.016791563233682194 up:0.016271038698657696 do:0.015355480362757417 interfere:0.014875808889703945 charged:0.014646284015101253 pleased:0.013610051164447858 him:0.01274062267734275 but:0.012200014478196207 satisfied:0.011962054640116513 it:0.011810815262474694 :0.4930786815496771 +of:0.09129790931378902 the:0.07369883040827747 and:0.047842263382354346 in:0.04189055351593407 to:0.04045875475680249 a:0.03542341257202578 be:0.02020462051672066 for:0.01979292654746225 was:0.01760256398103379 at:0.017380150555488715 is:0.014984483003968216 with:0.014047653760730413 by:0.01374644383819499 :0.012670486581795598 In:0.01200961464556976 or:0.011563835749786333 from:0.011391516893522809 are:0.011273104484969465 that:0.010755276030689069 :0.4809655994608848 +the:0.11582219672297826 of:0.09062865910345885 to:0.06594872603487203 and:0.05694250827749779 a:0.045367448150969866 in:0.027744533238464496 by:0.02294788393074257 or:0.02185624507590104 that:0.02009225703003152 an:0.01796320060902639 as:0.014447894193885534 with:0.013211613516491352 :0.011963688865026247 The:0.011755477174064017 for:0.010853140840614756 from:0.009952300422052236 which:0.009507548225985952 be-:0.00901936949047196 this:0.008301050823130209 :0.4146742582743349 +and:0.0947489565057897 make:0.07939658945373632 for:0.05570015085816834 that:0.0551973777329706 of:0.047075558366783045 with:0.04647557587804414 to:0.03529162603057169 give:0.03412078997225217 but:0.03070768033931532 in:0.029892975244677527 as:0.02529089025557413 take:0.02522246271298022 making:0.024519553305916972 made:0.022689502585800006 upon:0.021264512744892147 get:0.020243975678059897 find:0.019684262047913424 have:0.019578796119840716 on:0.01949634389638166 :0.292402420270332 +was:0.09590143937999165 be:0.07072325710346251 he:0.06584598485385787 and:0.05255167859249816 been:0.04829509096613933 had:0.041664977299453385 is:0.04155832451365639 above:0.03990240837963866 has:0.03565512548821369 have:0.03337398189877674 were:0.02505396733200424 are:0.018784197877597733 the:0.0184126541619737 as:0.01794099326639944 I:0.01616159050147514 He:0.015243409942697468 being:0.012584112086588894 already:0.012200537744559778 day:0.01186032977040599 :0.32528593884060925 +of:0.21632457388381876 to:0.10663373729366178 on:0.07055454490918173 by:0.06549766142738107 in:0.06181974179202091 with:0.06176441598474709 and:0.04926334534495144 that:0.045836263300736244 from:0.0320896618362652 for:0.03009226932246288 upon:0.02131373885969506 as:0.019018483454455243 at:0.018760739134797266 is:0.01666103968246457 under:0.015803982072676987 all:0.015507386996160763 In:0.014441818818806055 when:0.011747753826317138 was:0.010490813485295482 :0.11537802857410433 +the:0.09684081064840576 and:0.06551335624548284 of:0.05146145169206151 from:0.049520598669154245 a:0.045427902131977435 to:0.0370403239153822 be:0.035669151526387034 was:0.030489628475080553 is:0.026635804908522978 in:0.023878514238638158 are:0.018513936943033917 not:0.017945708099223703 or:0.017556265685966497 been:0.014265228721347686 at:0.013857211504087178 he:0.013733215789660087 were:0.012396679125422956 I:0.012347944480187516 for:0.012197989992860347 :0.4037082772071174 +the:0.6298580949727713 this:0.06436901795022586 tho:0.027135055690909383 The:0.02374675898724013 to:0.02317225581418414 our:0.01995622560953365 and:0.01871339673716525 that:0.013512208295081596 any:0.013455855575234281 other:0.013008198623510927 of:0.012763846787454567 these:0.012745809854077405 tbe:0.012691495902644807 in:0.011479918955790808 said:0.00960162918584715 public:0.009269579109722497 such:0.009245657318476382 its:0.009180502342968097 their:0.00912463138192056 :0.055969860905241156 +:0.10132530864253071 .:0.01586153736849991 it.:0.012994963694550781 them.:0.009972326155771085 day.:0.006466314186158732 him.:0.005963072708890589 time.:0.005952754819220498 of:0.005834450921883061 country.:0.005314225508045209 year.:0.0049247550547799 city.:0.004072303040063511 years.:0.003997040955926161 work.:0.003880377182773483 people.:0.0033836246305601453 States.:0.0031455025043576447 place.:0.0030640999552846737 men.:0.0029656503323313246 way.:0.002952433427976742 out.:0.002933009065662241 :0.7939962498447336 +to:0.4150418977364451 the:0.10420121800819433 a:0.07203011349387783 and:0.03968590134863877 will:0.0346177465673713 of:0.0295628743573838 in:0.023220568964342932 could:0.017626713732772317 can:0.01689899901139481 for:0.01361626747070161 may:0.011895425560408476 or:0.009999652506911394 this:0.00998442548725787 would:0.00902571773011731 by:0.009000992856044238 not:0.008920165291694216 To:0.008135861221548371 lo:0.00810215283571282 that:0.007769558911911855 :0.1496637469072706 +covered:0.08680381579455557 filled:0.07196842463636745 together:0.06150665843706867 and:0.051697935027274676 up:0.04468197513301023 charged:0.02428026223308134 loaded:0.020255639071519407 thence:0.018357725890526647 down:0.018325500412850488 him:0.0179543077952831 them:0.017579917181493886 trimmed:0.017282799410467987 met:0.015486218013302978 away:0.015081545585879905 it:0.014029914745622108 out:0.013713838774552893 supplied:0.013419739584606447 decorated:0.012857727159505252 lined:0.01129170208936547 :0.45242435302366546 +as:0.060857136319576344 up:0.054737892704652256 and:0.04445313741424363 back:0.029448150390291906 down:0.025899914827033334 went:0.02554096426246566 came:0.022769173233221078 according:0.0225438798889887 regard:0.022297325399916895 feet:0.02107326719988104 go:0.02025051116908718 due:0.01936414394046143 come:0.01733440441681411 given:0.017164582147378475 sent:0.01641667769780703 prior:0.015130812905941924 addition:0.013475540765457693 it:0.013262535189871026 known:0.012800566139125615 :0.5241793839877847 +amount:0.07790991376934896 number:0.06988153468630731 out:0.05332095579560835 point:0.051755802748912144 time:0.051589883453714576 plenty:0.03616993007273248 deal:0.02689880977726075 means:0.02528885941950335 thousands:0.025180036850894708 place:0.02399974377904291 course:0.023899925604753895 purpose:0.023325166069001424 right:0.021627602595057235 loss:0.02161304459226503 want:0.021449872146565494 source:0.02075643044010756 way:0.020222469257859168 lack:0.01990666543885223 cost:0.019191927411231505 :0.3650114260909809 +the:0.29450693402281003 a:0.07947224891345193 and:0.06965535068040614 of:0.048234956197133326 in:0.02818013854093704 to:0.025898763867694307 The:0.024449202619757686 tho:0.018885597857569852 by:0.012081969800193146 an:0.0114332368358795 or:0.009851413255759339 with:0.009402175712398583 tbe:0.009093613046620796 that:0.007647658680563688 In:0.007594076626539228 :0.007571040404090331 his:0.007483806547397657 any:0.00710961646318835 on:0.006879473893753169 :0.3135687260338559 +the:0.18544458925020008 of:0.10888872081984345 young:0.07045543069105276 two:0.05326647667640722 and:0.05233803206335964 The:0.03286188999351728 good:0.022686032989893853 three:0.022275004925495615 our:0.01934249903971981 other:0.019104384418877886 some:0.0171713250254833 all:0.01669884203332045 these:0.01576049853205357 by:0.015048914781835825 as:0.01474881018233203 many:0.014312638298723824 business:0.01422611726364917 his:0.013565023024143159 few:0.013488236521085637 :0.2773165334690055 +to:0.346215162042075 will:0.08949796835052055 had:0.07308839579546983 have:0.059563992291352306 has:0.05211417878807014 be-:0.05194812305453886 would:0.04278277094582348 not:0.035184528509495966 and:0.029348896946817943 may:0.023866616120974057 should:0.020493128331811532 must:0.019219153888725703 they:0.01703868280012648 be­:0.01702088562431608 which:0.016675629636920215 shall:0.016205643539806743 who:0.015086404478806404 that:0.014911595552853579 I:0.01449499970215382 :0.044243243599341356 +and:0.06280980550850063 as:0.05344618564615404 is:0.04596078697472132 right:0.04193025369192601 him:0.036297236497974145 able:0.03307518520398734 time:0.0327099384528786 them:0.027298331705389933 enough:0.027104860196985894 not:0.02349441017933237 order:0.023474330958279548 necessary:0.023031616401622417 began:0.022257301356161267 was:0.021855405259832844 used:0.019102221744592158 me:0.018258227108614803 seemed:0.01755844828776125 power:0.016667126678422173 made:0.015887129976090802 :0.4367811981707725 +the:0.37034548605141543 Supreme:0.15478733719554427 said:0.04811433749991727 Circuit:0.03325043599982802 this:0.03292905712984438 Police:0.03228678556176158 District:0.0316703581208853 tho:0.028941882080976287 The:0.0263058292417431 that:0.021258274804126003 preme:0.020029081855651935 and:0.013391970390740197 of:0.012280328749675 County:0.012028678239848106 Corporation:0.011865888879266073 Superior:0.011581980142865446 Probate:0.008840426801300962 a:0.007984802191554962 tbe:0.007243033260858212 :0.11386402580219748 +sum:0.03352282876311118 number:0.028116684882597106 line:0.019995206059833036 city:0.01946514558931857 out:0.019275318828420953 day:0.01666865340772654 county:0.014872697538657208 amount:0.013254184849875051 Board:0.01252325449624941 town:0.012449555905674143 side:0.011663975251122375 part:0.011517157473718155 County:0.011460540331966697 state:0.011087331502382173 City:0.010878919191854432 purpose:0.01081028255427907 and:0.010297866493795984 way:0.009848747943663767 name:0.009522170936943183 :0.711769477998811 +they:0.1761611416163094 who:0.10915719320464351 which:0.057648922351836225 and:0.05442297560954723 we:0.049598310696162794 there:0.03802315037694052 They:0.03640061043244914 that:0.025155840036090178 you:0.022411154941192758 We:0.020462830873065364 There:0.019848716914114786 it:0.01840665803735377 men:0.0143497032397464 them:0.011836852986526536 but:0.010855587017431133 people:0.009086719027032652 as:0.006665723703906808 It:0.006594970552096643 others:0.004290300501170182 :0.3076226378823839 +of:0.2746907316320218 for:0.12120902645144209 by:0.07615260705731654 in:0.07333089379855787 that:0.06197486264049135 to:0.05631401366507765 and:0.05624779004976602 with:0.03706238653442807 all:0.03268302939262902 on:0.023207912473397086 upon:0.022148794556932284 from:0.019635230361620536 as:0.01731743123867147 In:0.017028897669779185 which:0.009774613387002445 or:0.008996072428304096 at:0.008898403104020087 against:0.008528813225001344 if:0.007694852402417647 :0.0661036379311234 +the:0.1113520988699571 of:0.09454989027730847 and:0.08068899569287379 to:0.0653259065062264 in:0.03484647856132048 a:0.03044421252249598 for:0.025696141345739328 or:0.01899625186709326 four:0.015836636063695807 not:0.01507144077568589 at:0.014666411459788838 three:0.014516286950599469 two:0.012795843530173852 with:0.012730750115140623 :0.011353586257453202 .:0.010089300023480767 I:0.009782499180143442 their:0.009694533976847088 be:0.009564234061324183 :0.4009985019626521 +the:0.1313478917741541 of:0.09714729921851274 in:0.08778580292127151 and:0.05740742661359649 to:0.04783526290586834 for:0.039224330690296294 a:0.036893397065781444 In:0.02405781935639874 that:0.023651799819693405 at:0.022884127364620116 by:0.020797220422435318 from:0.018484684468214538 with:0.016703525955486926 his:0.014093396837304236 be:0.013785822417993341 as:0.012932423029360273 on:0.012880239406035415 was:0.012811279500929616 :0.012041704973092048 :0.2962345452589551 +and:0.06317916895143688 was:0.03089079697380977 is:0.020044819943736053 be:0.019406329289829806 are:0.016631216139614186 that:0.015910745835586493 it:0.014132589635136123 been:0.013429954470292457 made:0.013153338042273357 were:0.012494049396038097 or:0.012369181282419555 them:0.011608721240324167 up:0.01101461536327863 him:0.010833186604515583 as:0.010718511743974049 succeeded:0.010682665877813333 engaged:0.010592681714621757 not:0.009777868089593193 now:0.00948198968071834 :0.6826475697249881 +is:0.06777568764212308 not:0.04694900318389856 able:0.046915502381037553 time:0.041481437662192665 right:0.036630146649502766 have:0.03478620256367324 him:0.034088334157743976 enough:0.03247081564055636 and:0.03185911459226069 unable:0.02968770638638643 order:0.028125803209480285 want:0.02735048382842706 attempt:0.02711099857887675 was:0.026966329374669244 had:0.026729359663904734 wish:0.02649786510860296 ready:0.025831344810879463 necessary:0.023671869844433622 them:0.02141682471256764 :0.3626551700087829 +and:0.2268095200814335 was:0.11429514198437024 is:0.09961642426434554 are:0.06268540309239569 but:0.05493804497620433 were:0.05206249157011542 He:0.027757545479087466 be:0.01791502521981681 has:0.017129508510209723 he:0.01608184666515636 have:0.015239331595266057 I:0.014598309726857904 been:0.012933067466148996 Is:0.012900273419581238 it:0.012144025278231234 It:0.011203493589184562 had:0.010822834127662434 which:0.010092267068308916 that:0.0099945515140673 :0.19978089437155624 +of:0.13847070802299635 and:0.08216233320952047 is:0.07793834329326349 with:0.07272310985803991 to:0.06741559013155778 by:0.05466446430884636 as:0.053038323873524806 in:0.050407285687183494 for:0.048414722973520986 was:0.03162299912564117 that:0.028888361899551324 be:0.025371974285869698 made:0.02135043480927879 at:0.01665039906375317 on:0.015103343396569513 such:0.01500769744121824 make:0.014910020099631223 or:0.014429826925892715 from:0.012744025091395947 :0.15768603650274454 +of:0.28281245822575457 in:0.08164906359127318 and:0.0642954265890675 with:0.06237824142943612 for:0.05751503342349584 to:0.05497828245185617 that:0.04644716485662771 by:0.03699779237062071 almost:0.03476631864110727 nearly:0.026825185293465826 on:0.021950110299034487 In:0.018600655759736382 from:0.017447767163536666 at:0.014019602734647517 is:0.013225489103653005 have:0.00974827559121721 but:0.009203304288430202 or:0.008060948162919449 which:0.007866224834231422 :0.1302126551898888 +of:0.24083406506584773 that:0.0918892882416899 and:0.09061647875410947 to:0.08042788395958385 in:0.075000280431384 for:0.056509265196089085 by:0.04334125367419006 with:0.032692089158533555 as:0.02588477993455971 from:0.02444976732177201 In:0.021164892301723838 on:0.016498812601555245 all:0.014745510824051409 when:0.014468451865689173 but:0.013381130389831335 which:0.012024212330035545 at:0.011838273176462006 is:0.011048675487197061 upon:0.00948560458744802 :0.112699284698247 +to:0.1650807626685346 of:0.15123288328367795 the:0.12130085698804223 in:0.09880676651125418 a:0.041210201985963535 and:0.039963245541468434 his:0.03400632178793575 for:0.03279679862749692 I:0.025915183670629144 or:0.022825035875579956 that:0.022819473768037234 with:0.022780639113154373 their:0.02182757849207364 its:0.014026662604657378 this:0.013449979324077365 her:0.01261264190389897 not:0.011769055037153382 In:0.01166761747718935 all:0.011073613086362694 :0.12383468225281288 +It:0.11411432934684294 that:0.06013774561515159 it:0.058156512267090725 which:0.05505951195707326 there:0.04979686950531581 This:0.03443705739576479 and:0.02878190178486995 he:0.02210789840738234 this:0.01735224928609812 There:0.016089594094942324 what:0.014639079528757362 That:0.01442043898984863 :0.011995608629758377 who:0.011724858027439687 What:0.011343111836086104 ?:0.01130956732219734 one:0.010300616923310916 but:0.009584664051947784 Nor:0.008881189529563578 :0.43876719550055837 +fifteen:0.09034850002334271 hundred:0.08352264679082778 twenty:0.0653492960552465 ten:0.05739437013334312 100:0.053669018925683966 six:0.0481790388198378 eight:0.04315028978638811 50:0.042627555394820264 30:0.03212231593970794 five:0.028716835307762943 of:0.027615348182619848 four:0.026002032714044835 40:0.02229650703303224 fifty:0.021538564988898865 two:0.02147619254551643 linear:0.02131601989180339 15:0.021293557778264433 25:0.02043821356808199 200:0.020022449012449747 :0.2519212471083271 +more:0.08025115286284729 person:0.03772685815757937 one:0.02862315275542531 man:0.027845989772922807 law:0.023902153091111805 whether:0.013813305404648703 action:0.01312444230265145 right:0.012801502071640812 time:0.012463130175782768 neglect:0.011407892518085331 power:0.010267734549436013 for:0.01008246136648502 piece:0.009963834083782423 it:0.009875217844737697 two:0.00971497552299746 and:0.009674211873796922 he:0.009548856818981571 little:0.009412862976001782 money:0.009196980087907461 :0.649303285763178 +the:0.5827899604330147 and:0.0763464153260038 The:0.048426342576913604 tho:0.036146757252297296 in:0.028199563590885386 a:0.02183945593679264 great:0.02086010210379052 of:0.018582731894020012 his:0.013634544258435905 tbe:0.013026873367843967 their:0.01299399108631307 good:0.010764524084139467 full:0.00992616272458086 or:0.009778630707586524 no:0.008327620936274113 our:0.008001059917982696 its:0.007930792426327934 that:0.007720005628595651 an:0.007085367048547765 :0.05661909869965414 +the:0.11919516938815296 of:0.07230453158552728 and:0.05781056740443249 a:0.043018564803886335 to:0.031305092790907506 in:0.020848713353460488 at:0.014270110001066288 .:0.012526810245749479 :0.012413283442322082 for:0.011719122709941797 by:0.010808400946589808 or:0.010404172990115616 The:0.01003576004804544 with:0.009811868184449042 tho:0.009295902015355835 was:0.008924239095331684 that:0.008672304223433876 is:0.0085591147338948 be:0.008335143826716943 :0.5187411282106204 +it:0.09626356572514169 they:0.0955788107663338 he:0.06613899471471686 which:0.053682782788685296 you:0.04621553021799093 as:0.0449895598243137 we:0.044954134133749234 who:0.04474498140088235 that:0.04355348855458716 It:0.03913121694714998 and:0.03398483180942683 I:0.03166349030486441 men:0.01531196498148279 one:0.015191076725724988 she:0.012589899051811172 They:0.010500159589546788 He:0.010312902373960781 man:0.010222959513348296 You:0.009179439717016178 :0.27479021085926675 +and:0.06317916895143688 was:0.03089079697380977 is:0.020044819943736053 be:0.019406329289829806 are:0.016631216139614186 that:0.015910745835586493 it:0.014132589635136123 been:0.013429954470292457 made:0.013153338042273357 were:0.012494049396038097 or:0.012369181282419555 them:0.011608721240324167 up:0.01101461536327863 him:0.010833186604515583 as:0.010718511743974049 succeeded:0.010682665877813333 engaged:0.010592681714621757 not:0.009777868089593193 now:0.00948198968071834 :0.6826475697249881 +there:0.13668128598363274 they:0.08061611785432818 you:0.05429992913765726 who:0.051298128344511355 which:0.04995914907507364 that:0.0496780998589775 There:0.04160424918411311 and:0.040207098757420554 we:0.03601934708243059 What:0.030136119534800068 They:0.02920971466929598 "What:0.026639211743917077 men:0.025409169540285218 what:0.02099298033460834 people:0.017789367895487188 We:0.015395414432376724 Nor:0.014341764689273999 them:0.013946830839741117 These:0.012705541876899517 :0.25207047916516984 +the:0.18169361840916123 and:0.09658122053740673 to:0.08351892482280865 a:0.07287645597376376 of:0.0681980237768903 be:0.04139055461101606 his:0.03068707663227198 was:0.029311801775378322 The:0.026940635265754666 he:0.022967170243955202 or:0.02296227842804123 that:0.021924420709407148 in:0.021173229418740225 not:0.01826720503394789 by:0.017514644163726657 had:0.016644650708708884 been:0.016183564296325465 were:0.015219156860643901 have:0.01416597166698204 :0.18077939666506967 +to:0.5320715737953762 the:0.15062960967932654 and:0.044852684632999434 that:0.029428342231204368 this:0.02864159667762907 which:0.022609407272011484 of:0.02158032196896018 a:0.0168350523128457 To:0.009604036667579618 :0.008488360778134158 in:0.007687047013311207 will:0.007455055240640112 not:0.007295983158177355 by:0.0069253095988018685 tho:0.006764285618275284 from:0.006682735215705457 or:0.005505091952965351 only:0.005125733778910173 The:0.0051089606457756075 :0.07570881176137094 +and:0.05917734571267282 closing:0.04405297983259551 was:0.026323119710997635 valued:0.021005792503071843 held:0.01922887441606307 sold:0.018225285914023 2:0.017782437938973866 is:0.017552850459549643 arrived:0.01662711812741857 be:0.01645048243064216 are:0.016339673120917095 White:0.01533836240735085 not:0.015154252504664439 as:0.012706467917481812 that:0.012063629264509927 estimated:0.011864260728812118 Dated:0.0116063700277585 or:0.011444173640079769 made:0.010438189210536826 :0.6256183341318805 +and:0.08995317707915026 to:0.06844710404109794 of:0.04605142056172993 the:0.04074574508561307 which:0.02479116931334353 that:0.023764822140213245 re-:0.020841117231308055 in:0.020803825395358622 for:0.020278423301550053 :0.018417753428486977 not:0.016860793136637672 con-:0.016444405871234195 is:0.014386481772210856 or:0.014080680914153714 be-:0.01352268143271276 I:0.01317002660943805 was:0.011429878269381662 dis-:0.011196807025842847 he:0.01113106290024311 :0.5026826244902934 +well:0.0814393248338422 and:0.06414228466673885 far:0.04915182943518403 such:0.03644421454413046 much:0.027184087071484026 just:0.025360501596647586 but:0.024431773291407697 so:0.024299978709523024 it:0.024182512564232986 soon:0.02284764555776989 known:0.022542522046934795 looks:0.02205392437228626 long:0.01904572921849952 him:0.016796537120458914 is:0.016451888177243218 them:0.014046623396652809 be:0.013284512778534034 that:0.013191383692750995 seemed:0.012571720512628209 :0.4695310064130505 +the:0.09868373883938258 and:0.07480453094193343 of:0.0589114817501612 to:0.04097910657897817 in:0.021158790794043262 that:0.019069334359151844 said:0.018742946492478332 for:0.017316364536936867 his:0.017177121694088426 was:0.016182606169468622 will:0.01591288197902934 he:0.015114551865358882 or:0.014845495585184915 a:0.014513966096661732 be-:0.013853328473103959 be:0.012881045636009362 :0.01244603010237448 is:0.011856827412481646 dis-:0.010720055582638647 :0.49382979511053426 +of:0.47600373519531936 in:0.18111283254734117 to:0.057439627159588225 that:0.04472887672955264 In:0.04093773497342138 for:0.033373754561825446 by:0.021323854944661887 and:0.020422971057825628 from:0.01639047592892187 with:0.009113556786731794 ot:0.008639962624367774 at:0.006741588403520019 which:0.006463755472659399 If:0.006454613664114184 within:0.0059969393026148695 as:0.005740742310037529 ol:0.0056006422173552825 iu:0.005380507032071265 but:0.00485487223777437 :0.04227895685029589 +was:0.17846562676440417 be:0.13523197807767312 been:0.09002517510000241 is:0.07436241226253015 were:0.05726334927454243 and:0.03805503313395122 are:0.03514582337286689 have:0.03251347036199619 had:0.03227709807361652 being:0.025781529040881324 has:0.02281253877561764 Is:0.01576687319280711 he:0.015437572777666025 not:0.011227121766371508 bo:0.010423147734283381 I:0.0063335874717693474 waa:0.005756649342766476 now:0.005338613431520469 or:0.005205055600864174 :0.2015773444438694 +the:0.09228046827311058 and:0.06453923182390564 of:0.04771426400662845 to:0.04035492598981112 in:0.029467389725228364 at:0.021226962288123267 was:0.019841243408890926 is:0.019636575209795882 that:0.019347305010307816 be:0.01866342971255784 on:0.015915079852323086 for:0.015671097760398267 :0.014672184183415987 I:0.012034701874216848 he:0.011305207582296917 as:0.011293927771973166 follows,:0.009028363149698954 or:0.008837402213533747 so:0.00829272178331825 :0.5188775183804649 +the:0.46210690030357676 and:0.0807553923369139 a:0.08066240788272157 The:0.0519360908785329 tho:0.02511334956814519 of:0.024524389231514624 to:0.01701791758335673 at:0.014071022052992892 this:0.012460722598766258 tbe:0.012357230158315247 A:0.009973257500157191 his:0.009970634512234278 is:0.009410635276083172 an:0.009385213138168069 in:0.00854411190745827 was:0.006779361490660346 for:0.006749122969674362 its:0.006737771832432828 that:0.006694553997545062 :0.14374991478075036 +Mr.:0.0700449948534056 A.:0.06830626185471318 .:0.06719358132758477 John:0.040592970477792 of:0.03980636065545076 Mrs.:0.03074515339064727 and:0.029753535082439594 :0.025926767814324795 C.:0.02151121878518703 H.:0.021331627995358163 D.:0.020581485257751584 to:0.02033906621926646 W.:0.0197765729042847 P.:0.019686540710118744 Dr.:0.016860475891577166 President:0.014920041206014988 J.:0.014492190640256915 M.:0.014235197260436865 &:0.011865174238231418 :0.431030783435158 +the:0.499925052488043 The:0.07998094265161686 and:0.06370438552385278 a:0.03877671736296101 said:0.03071758829496858 tho:0.029030194207350056 if:0.028934277790072925 of:0.02557898149521763 that:0.020450556522130636 when:0.01586372584013675 all:0.01567991813015729 these:0.015554952419892501 other:0.015217693952340459 this:0.013365989383424514 or:0.012700737041485832 If:0.012181750015689385 his:0.010870415645639257 tbe:0.009911982184394172 our:0.009290868027616847 :0.05126327102300951 +of:0.122934680062049 to:0.07166483159928014 that:0.0708645959523722 and:0.0696900915903826 in:0.036291207965133895 on:0.034785708029333985 for:0.033889880336482714 was:0.030481611700767696 with:0.03030168139326922 is:0.028735783434529483 as:0.028026646459979147 by:0.021576115631548317 made:0.020789895321544807 from:0.019780803274680205 be:0.01619433717005741 make:0.016057124437259217 have:0.015953458360654007 not:0.015069043185496947 which:0.014599895706827834 :0.3013126083883512 +sum:0.03352282876311118 number:0.028116684882597106 line:0.019995206059833036 city:0.01946514558931857 out:0.019275318828420953 day:0.01666865340772654 county:0.014872697538657208 amount:0.013254184849875051 Board:0.01252325449624941 town:0.012449555905674143 side:0.011663975251122375 part:0.011517157473718155 County:0.011460540331966697 state:0.011087331502382173 City:0.010878919191854432 purpose:0.01081028255427907 and:0.010297866493795984 way:0.009848747943663767 name:0.009522170936943183 :0.711769477998811 +any:0.2507770581647348 a:0.23165835071469779 the:0.12699348907268795 no:0.06057392866084252 Any:0.05693251872547796 other:0.037172058062414796 every:0.03537680623750683 some:0.02965347712291147 of:0.02683105437835257 The:0.018291417030634013 such:0.015875980286589243 one:0.013693752348732784 and:0.012967985401164773 that:0.009686502806569693 No:0.009366876275192875 good:0.009260346298966035 with:0.008626413655253847 in:0.007973271420217101 Every:0.007906359209846942 :0.029382354127206013 +to:0.09510176257557867 and:0.0759782477397007 of:0.044882537993784916 the:0.0315600709783228 is:0.027469709441114137 in:0.024414242512733896 was:0.023644505786906175 con-:0.02072663556943141 will:0.0197525729259325 re-:0.019515757684955143 he:0.01933396268374066 I:0.019168528042120436 for:0.018758717550584603 be:0.018539065847662673 would:0.018528419960293203 that:0.017041510263127942 be-:0.016586329410835588 there:0.01648203693916975 not:0.016023551150036123 :0.45549183494396867 +the:0.12597798178374625 of:0.10542550313352028 and:0.07571845211254795 to:0.04189623512326386 in:0.0316930494589828 be:0.0297674998183792 for:0.029066694154931003 their:0.02480561768414787 was:0.022672769634947767 his:0.02149338123484108 is:0.016817279162195664 that:0.01605062904376472 or:0.014849135036643157 are:0.014771311322097082 much:0.014352910271084283 been:0.014204774305886849 he:0.01394801101667355 a:0.01368296163945811 at:0.013396277615438297 :0.3584095264474502 +and:0.2338847775349163 was:0.09419026081740192 as:0.0548148735869414 is:0.04877032484522931 he:0.04388022035685288 be:0.04104607626375873 not:0.03628472020512234 that:0.03455220262855076 to:0.031008221963008117 would:0.027361218799350613 are:0.027279812735011295 will:0.026254112952361863 were:0.024798707367347447 it:0.02416767774041526 could:0.022839652732051238 I:0.018975758744265096 the:0.017920728311500995 should:0.017430933970009953 been:0.016188138482197467 :0.15735157996370702 +a:0.24288276298699796 this:0.17419425371961494 the:0.14665501621495947 to:0.13007349005900926 last:0.04555232026112352 next:0.032636113486784274 his:0.022910891162329736 that:0.021510207643626267 and:0.020426664809727987 or:0.018716232772560612 of:0.016065960877088448 can:0.014194889741289138 their:0.013868026257052727 on:0.013639935059943325 will:0.01269016659112446 could:0.011171923781896652 present:0.010705467866176651 must:0.010615923722188635 tho:0.009429204243990337 :0.031060548742515594 +;:0.01458927046758731 it,:0.007973265891266864 him:0.007834970369143835 one:0.007240974664279108 in:0.006989508095588829 and:0.006417396987522371 ,:0.006059091806132192 it:0.006014614548599763 up:0.005812344146302806 out:0.005395853159197619 them,:0.005290532062834904 him,:0.004938420268273817 city:0.004793760033506698 :0.004646491011450349 man:0.004641061555670736 country:0.0046164671969483135 feet:0.0044416267197611185 time,:0.004376787347733258 time:0.004358244018157902 :0.8825693196500423 +and:0.1740007248845552 to:0.09876674395409803 not:0.03237349005079717 that:0.024014376656934705 or:0.022840877740201913 who:0.022052598538527538 of:0.021638491270845807 will:0.021298266202625062 re-:0.020505432833915756 which:0.020380619866447413 be-:0.02016858413091057 would:0.01961868809147256 there:0.01909091247887119 it:0.018292331437283312 he:0.018100623252480273 be:0.014906151206566987 I:0.013712294639720561 have:0.013148705999797922 for:0.01233301673244921 :0.39175707003149884 +as:0.1206038360743764 and:0.07365972737773813 is:0.051802042986265354 order:0.03790241637678072 necessary:0.036281675102070504 time:0.03514219705705519 not:0.03370666488763692 right:0.03349640145330493 enough:0.03213824665203337 made:0.029356692367806414 them:0.02882261217269804 him:0.02807528841070846 it:0.025810223583689517 able:0.025655122435993005 have:0.024403531406683047 are:0.021042646316265276 was:0.019507453740885115 or:0.018453640418157825 way:0.016118038605100422 :0.30702154257475134 +the:0.1695025995823458 his:0.13177385791885535 our:0.12960305130292976 a:0.0907516503800155 their:0.0699740286186693 of:0.04884939712129961 her:0.04626544959146687 my:0.0406328194687028 other:0.036156475891771386 The:0.031525387148070926 your:0.021549468642602754 and:0.020804813138061307 young:0.020674288067822472 two:0.014453333284206098 its:0.01418284488651206 some:0.013421082463097603 old:0.01237644447307104 whose:0.009206260007484549 any:0.009167358729814874 :0.06812938928319999 +part:0.03657428691737962 one:0.03616771241019347 out:0.030966446680789808 side:0.02524543405809638 line:0.018148479303287387 amount:0.017412091149752083 all:0.017264442652756784 and:0.016221945272283936 tion:0.014314500984158799 half:0.013699941701240071 use:0.013642406309061769 Court:0.013370541401585752 payment:0.013220662242576375 that:0.013086028437782558 purpose:0.013074072230400876 people:0.011197178581570932 interest:0.011035142270517998 District:0.010995448649107401 day:0.010990407405835751 :0.6623728313416223 +Los:0.8351873399641971 the:0.02791599763279542 and:0.017351580481031845 of:0.016188051223612145 com¬:0.0026549955365063696 to:0.00233323876299148 com-:0.0022887219666114468 all:0.002043177882332868 these:0.0016010489737724135 com­:0.0015819299305416283 It:0.001417773160810825 tho:0.0012671302028743766 their:0.0012491542351100752 that:0.001240136056286235 said:0.0012016321230554413 on:0.0011946460638073105 other:0.001183794264328781 it:0.0011285480236252383 :0.0011126536688845464 :0.07885844984682436 +and:0.08995317707915026 to:0.06844710404109794 of:0.04605142056172993 the:0.04074574508561307 which:0.02479116931334353 that:0.023764822140213245 re-:0.020841117231308055 in:0.020803825395358622 for:0.020278423301550053 :0.018417753428486977 not:0.016860793136637672 con-:0.016444405871234195 is:0.014386481772210856 or:0.014080680914153714 be-:0.01352268143271276 I:0.01317002660943805 was:0.011429878269381662 dis-:0.011196807025842847 he:0.01113106290024311 :0.5026826244902934 +the:0.09814118604372983 of:0.06331656011074577 and:0.036712781813000486 .:0.03466036261249379 a:0.034022199783429394 to:0.02156805866747967 at:0.013659587666308353 :0.013496926423463142 in:0.01338227904854637 The:0.013340446387664868 by:0.012842054855780268 A:0.0125396622251628 W.:0.010688600238995887 S.:0.009105187843745133 E.:0.008886144110302412 No.:0.0086599850996318 A.:0.008593986342267958 Mr.:0.00851183282687108 N.:0.008362541235547832 :0.5685096166648331 +A.:0.46443487404951167 .:0.10010172867584702 Mrs.:0.04477993986667835 J.:0.040312506961452145 W.:0.030599761245996324 S.:0.029443897770265483 M.:0.026454013101126137 C.:0.02443106530603089 N.:0.02365638050600794 Mr.:0.021091007295267857 H.:0.019016345643352 E.:0.018380950627394078 Washington.:0.014837436683824685 D.:0.01422437978252785 L.:0.012974177849267205 R.:0.012301741932659297 F.:0.011406835231302202 Dr.:0.010821701249533742 O.:0.010426658337173102 :0.069304597884782 +I:0.1066566580577298 they:0.07123196959236189 it:0.06980923752209593 and:0.06953711126522845 you:0.06894023745969331 he:0.06680331849086894 which:0.058117166081762685 that:0.05734083312415898 we:0.03193149139650469 who:0.030222852629155944 It:0.0258844256254336 They:0.014801354220817384 1:0.013569931540917353 she:0.013002114369937801 He:0.011405125202839978 there:0.011046174685139038 We:0.009098424210642603 You:0.008868969607542692 This:0.00879322681265947 :0.2519393781045094 +to:0.22425439718872484 that:0.07231230078498865 may:0.06297239405966952 can:0.06219085555445697 will:0.05924664156065582 not:0.05913811188544736 should:0.039338287257880515 must:0.03112541838595882 could:0.028877829490934127 it:0.02599398755414115 would:0.025529999151775083 and:0.025155858856606577 shall:0.022196940579254403 which:0.021252459941975606 if:0.018747147512823296 cannot:0.018277746404493804 might:0.010258965921239325 as:0.009415898305250331 there:0.008033404630639297 :0.1746813549730845 +the:0.15930234103476537 south:0.14916617612565322 north:0.12747015941821727 east:0.11497653682237818 west:0.10139947809509035 one:0.048792612627628046 other:0.04050218611816578 either:0.025502936103615932 a:0.022473503672407975 each:0.022108776560771096 opposite:0.020547929304717542 out-:0.013104247432932122 this:0.012527971499664897 cast:0.012459434028953368 and:0.012228690772812151 tho:0.011236060547429408 northerly:0.011218669246376186 right:0.010764144905735063 left:0.00911543234938189 :0.07410271333330416 +provisions:0.0679938503985306 copy:0.06201617447249093 date:0.05159752313646957 part:0.050661532655167846 one:0.04272232046411394 out:0.039198262926626565 people:0.03688333605300589 publication:0.031622932748407565 members:0.022148687792528047 tion:0.01953442712364951 laws:0.019086435714135187 result:0.017976916451795253 object:0.01720022560087386 portion:0.016216616046388216 that:0.01583665345861985 all:0.015799046403021585 member:0.014650050293503455 passage:0.014513299284273402 purpose:0.01444493434085836 :0.4288967746355404 +the:0.2307382094147763 of:0.0779304488897388 public:0.06219202086881097 Sunday:0.057716534681270075 high:0.05613136662596415 The:0.05381417763152858 this:0.04896803470045236 a:0.04102086653781692 that:0.03647797295497001 This:0.03076692944984127 said:0.018232542820775424 such:0.014144450414804641 new:0.014019645541632113 old:0.012927688019718069 tho:0.011863449781914264 for:0.011820089308981083 his:0.010521497699553314 and:0.01051434379953229 each:0.008748599747436706 :0.1904511311104827 +and:0.09282340355110952 as:0.03424915822214443 of:0.030105204931411614 to:0.024435947575299283 or:0.023077201451125455 the:0.021051156679794035 that:0.02073360277815799 it:0.018863913238325314 in:0.017306604774516857 .:0.017116188029718312 :0.016120134252216974 do:0.013297703250253088 from:0.013200161202222368 which:0.011403866952177957 It:0.010242989176217066 degrees:0.010079600807773127 by:0.009715771143815534 on:0.009374533490154196 was:0.008630424493928765 :0.5971724339996382 +one:0.1028303141280697 part:0.05963429477052991 out:0.04766456937681193 some:0.031418679026461914 members:0.030764490253327767 side:0.029940657362655835 portion:0.022063658796890564 office:0.020457735219956013 member:0.019726706386316174 end:0.019666887540649894 tion:0.018667441728710307 parts:0.016814747270460957 people:0.014112771422418794 all:0.014072739582212475 any:0.013183573287639892 One:0.013083578354183906 that:0.013024335602903442 account:0.012482348155001894 many:0.012077825070275192 :0.48731264666452345 +the:0.25176616898013837 said:0.13201640949978993 of:0.11730452379353208 and:0.0662813437198317 such:0.052587019824493195 The:0.04706268712523806 that:0.023423106951854962 or:0.018720578267188603 this:0.016734603847269935 an:0.015695866329803135 in:0.014055706955184067 tho:0.013520705217269738 :0.011139361557832605 for:0.009500030827865965 State:0.009009365379978814 real:0.007177780797291125 certain:0.006576320237803135 by:0.006469703596234471 tbe:0.006266891608104622 :0.17369182548329545 +the:0.21243819738470204 he:0.08320008864427693 a:0.08184338183356611 I:0.0801755149165979 and:0.07819486078325805 was:0.049744735036128696 be:0.03502889754466876 never:0.03355887272511197 is:0.02914447357903271 first:0.027834439137387923 have:0.02569478274968721 had:0.025185806895979743 are:0.021038443198981252 or:0.017867307692450353 1:0.015693819601230823 ever:0.015475515111947648 The:0.015072378818676535 He:0.014339617683722175 they:0.014086779923198864 :0.12338208673939431 +it:0.24948756596542823 It:0.2101337505644298 he:0.05599846853556781 there:0.054474641161802735 which:0.04752115355738477 that:0.03846391677091141 this:0.027671526973750023 This:0.026879761317076502 and:0.026739708026211565 There:0.026416968586272432 who:0.021918431371741844 He:0.02123885683527484 she:0.01222769270167147 but:0.007372061284882893 what:0.007198874018312155 as:0.006113098930460396 country:0.005552414892164186 work:0.005317476169416592 She:0.005316457186304882 :0.1429571751509355 +of:0.09534048226595096 to:0.09196460148671691 and:0.0891215275363897 the:0.0681754441608717 in:0.06087641223738173 for:0.03247897977900694 that:0.026428018660435378 or:0.019753914979986756 In:0.019534371256625584 which:0.018865159564656907 a:0.017353373493345068 was:0.016664702208526744 from:0.014292653406716052 on:0.014013733378063893 be-:0.013759833341628079 at:0.013714747298808177 with:0.013374723041582066 is:0.013219045095495686 by:0.012656430386668527 :0.34741184642114314 +of:0.28862820419359825 this:0.12066563505248071 in:0.09026050807238417 the:0.07928236601204829 that:0.06230025390455094 said:0.03539732528540004 to:0.03192514091777219 In:0.018065774806518057 and:0.017329206355905808 a:0.014595382764265863 at:0.011669328886667427 second:0.010999029023072078 first:0.01098208531173912 same:0.009796977267610295 for:0.009655997725865327 such:0.008966783542061449 last:0.008678697064823219 or:0.0075476021423306755 every:0.006820327481771434 :0.15543337418913467 +feet;:0.10445700078931523 2;:0.0831014305151237 3;:0.07562263418847799 4;:0.0726930409661444 5;:0.04978212553938402 6;:0.03593191023700588 7;:0.033711235063505145 ;:0.02825134526311609 feet,:0.025436853202025742 running:0.024955807815024926 lode,:0.017841522471970107 stake;:0.01654916313005005 feet::0.016205165746036723 8;:0.015780542068811184 and:0.015603362000889184 street,:0.014302219555763036 9;:0.013564107545520494 corner;:0.012767372591565655 street;:0.011399214516742159 :0.33104394679352833 +of:0.14618490473266627 and:0.12451599374640296 in:0.11745435676723502 that:0.07577403002962141 to:0.05694498610158665 on:0.05597635169046064 nearly:0.03840367658432453 by:0.03774773250806853 with:0.03563338884944036 for:0.03212679063030312 at:0.028441920260939963 from:0.026018542015685254 almost:0.02312526124775157 In:0.019269253817906683 which:0.018687100306811463 but:0.012970163134307901 On:0.011916883513339277 upon:0.0112133189998769 over:0.01074048699926771 :0.1158548580640038 +that:0.20479319771203833 and:0.11881908305564495 which:0.08304066886610764 as:0.07817190796807508 but:0.046459631114144244 what:0.04282797597979751 when:0.037986863742045386 if:0.03530913484147948 If:0.021931503487554727 where:0.01583600744614679 But:0.015719343424876315 should:0.015385093786166893 When:0.014944640909298723 for:0.013641553058560298 As:0.013381138212353155 because:0.012765873900051352 do:0.012017811170462068 whom:0.011684015193005359 Shall:0.010932353544022165 :0.19335220258816957 +the:0.24022538085896597 of:0.0848120845998012 two:0.04566108728083394 three:0.045197573742088125 several:0.03825701964466534 a:0.03822576451730554 their:0.03441703784918663 other:0.034380411470310186 for:0.032212115949656873 all:0.029010873197681496 various:0.02791312366896678 trunk:0.02694161880884619 parallel:0.02582227719631374 our:0.02287106388724366 four:0.02267321024907631 his:0.02169133910504805 or:0.02120338289910956 said:0.019119816266537408 many:0.01888621747044556 :0.16947860133791742 +one:0.07866438238355077 part:0.05729974966283364 some:0.04351520577212045 out:0.042022035100167804 all:0.02745158226822653 portion:0.024034405840308935 any:0.019795425702599873 much:0.018784109062713775 that:0.01834799316398485 and:0.018171375761855582 many:0.016429892319021228 use:0.01628875608318383 tion:0.015661149718499606 account:0.015060168076824625 end:0.014690313477718408 side:0.013787738229685133 value:0.013221484407307478 think:0.013188507935128588 result:0.012701850392752486 :0.5198838746415164 +the:0.3172960007903798 this:0.07917741195019828 The:0.07548450139375433 National:0.07262840476443468 State:0.06196614811574379 said:0.0434618791093405 that:0.02753770989856903 City:0.02585584219137945 a:0.023752528285120037 York:0.019083659020986556 General:0.01822963550593008 tho:0.017652260564342066 American:0.01634187123130558 our:0.01217882436011337 Mr.:0.011620444640448351 and:0.011433874152631189 every:0.010919266573463125 Congressional:0.010517404988541382 Constitutional:0.010157730253604242 :0.1337046022097142 +southeast:0.1856686086863225 the:0.16106861292084962 northwest:0.13554349191440995 northeast:0.11505504095118142 southwest:0.06063469984620893 a:0.042715638553519876 east:0.030054945905154076 west:0.029848296470532106 and:0.0178913094107456 section:0.01535544164135761 to:0.01403924786921692 north:0.011334101589937395 south:0.010521808763989426 Northeast:0.008501291731093409 The:0.007695194379761247 Southwest:0.007379027097319414 of:0.007336861887890539 tho:0.006407082422614403 Northwest:0.006349517016682611 :0.1255997809412129 +two:0.11697009563612643 few:0.07616614233128814 four:0.07225353118345999 many:0.07085718495700122 ten:0.06928179693640932 three:0.05926166536749022 five:0.05068327830347276 twenty:0.05051911575015737 of:0.04254627299396281 six:0.0411130985722366 several:0.04031761923426373 some:0.03243637507581683 for:0.0319937072902721 thirty:0.030373702289663185 the:0.024054206271546492 fifteen:0.02377453600582377 seven:0.021394099470078858 eight:0.020446826984842115 10:0.017556494699667382 :0.10700025064642069 +the:0.23688310272980873 this:0.12043092953375072 a:0.10021727103334711 The:0.06743525649616322 his:0.05647762214418174 that:0.0482273650650119 our:0.035584113628845074 one:0.0282888729615407 said:0.02578801788637299 her:0.025686071216415026 This:0.020990022573268256 and:0.020650149854467094 their:0.018650066933678957 tho:0.018475805039511937 any:0.0156331894444174 your:0.014768713561229154 my:0.014272445444301254 A:0.012662225009467044 every:0.011990223703512009 :0.10588853574070968 +up:0.017218301971897387 ;:0.011016681815460342 him,:0.009913987570230149 hundred:0.009754595488695807 him:0.009453283387123038 made:0.009373216220157887 time:0.007912823659997048 them:0.007579593948769693 them,:0.007246849236304633 it,:0.006891252834886703 out:0.005803013973983525 men:0.005757047289417448 down:0.005495915178909945 to:0.004713719994868151 :0.004584885105243303 and:0.004577632444344763 here:0.004509980035088992 Mr.:0.00442319627840016 dull:0.00433397428690401 :0.858440049279317 +.:0.06137477051454954 of:0.04959133649369621 and:0.045710365827068784 the:0.039626258730554365 by:0.025057411024623354 H.:0.02082816439567233 Mrs.:0.020420743612018524 J.:0.019999808269349415 to:0.017964308707429273 :0.017952559756864092 M.:0.01789870359622088 W.:0.016941830565804807 A.:0.015397177297098025 S.:0.015335565726852244 C.:0.01496752617629943 F.:0.013546023586696952 E.:0.013503794927251548 L.:0.012197605960517268 Miss:0.011983306000321329 :0.5487027388311116 +two:0.21774154296147888 few:0.11676845709537369 six:0.061559986210967955 three:0.05631102342811654 several:0.05185642077014657 four:0.04564609479034119 twenty-four:0.037486792627905746 five:0.03380502023183982 eight:0.03304161753794899 many:0.028609177341982726 24:0.028578011091896047 ten:0.028410194239522724 some:0.022842779264313558 the:0.021509063981266372 thirty:0.018410761312843003 twenty:0.01835505267723137 twelve:0.01747481262822694 one:0.016046700365719757 15:0.015148962504813276 :0.12939752893806483 +he:0.22920118652824625 I:0.148639832972253 who:0.08507526146440698 they:0.07229354706458743 she:0.049821162147270115 which:0.03142916678280497 we:0.031092228617290087 He:0.030661179794103287 and:0.028752768123298248 that:0.019427699794645356 it:0.017718433093530862 have:0.01684963818272796 ho:0.01519155925076562 1:0.012620512989784491 She:0.011198521352846689 They:0.00948612344573749 We:0.007665419096213139 you:0.007625957579429487 man:0.0075376409278780756 :0.16671216079218046 +set:0.3431522982339835 not:0.04552700566962967 lay:0.027541634221423392 laid:0.026649588910021966 setting:0.026147213567458548 put:0.020542845496846367 and:0.019195987140930987 to:0.015952102134319187 brought:0.012411187380683787 was:0.011611744435641688 them:0.009794486271673213 it:0.009745715240139466 go:0.009343341684864297 went:0.008791207547497385 let:0.008336818836224091 cut:0.007405427621244298 made:0.007067590574004375 .:0.006452571482874989 turned:0.006358625247860337 :0.3769726083026784 +the:0.1570879454366584 of:0.07804606027406501 and:0.06787223916973353 a:0.036913117407562514 that:0.03650642298570135 The:0.02495259369096442 in:0.024366179622801448 no:0.021237121796534534 Mr.:0.02095974543727837 which:0.020555747976365113 to:0.019670312615068093 his:0.014514871313338153 for:0.013864556278571553 as:0.012619099712826765 he:0.011995143219360524 their:0.011486225473642654 said:0.011457904953995053 Mrs.:0.010878795762489643 tho:0.010097198257076249 :0.3939187186159666 +and:0.10119789434721585 the:0.08750650826269914 of:0.06965652901268303 to:0.05397231607343732 be:0.036865526523342323 was:0.035053854231348616 in:0.031304212937328754 is:0.026000336185972757 are:0.0211137244270955 were:0.018396838756921496 con-:0.017174874810272 been:0.01699376096117119 for:0.016754654309511306 com-:0.014528737373553537 much:0.013539613194676265 their:0.013377304520975603 he:0.012755370579971337 or:0.012523440083369532 not:0.012362122862064477 :0.38792238054639 +that:0.21097312415356267 and:0.15268847568305033 which:0.09950931213088895 but:0.06476688320082268 as:0.051723209245815756 when:0.043978120041322295 to:0.026137014127546997 where:0.025172060493469463 if:0.022602197143419725 will:0.019476704834955526 would:0.018277740189997425 because:0.0165727629084201 what:0.013830789199962806 while:0.012266495446259318 Then:0.01195150614750911 it:0.01168129910514458 time:0.011536518305591251 so:0.011528912531939817 may:0.011423877014028371 :0.1629029980962928 +in:0.3183759125738131 of:0.10694692991764418 In:0.06980104709383714 to:0.06474917128933189 for:0.044201412561312686 and:0.03938903900525782 with:0.03820937038134861 at:0.03019094372381273 have:0.02375239117046451 that:0.023657464758827722 from:0.02259685533989413 on:0.02054402297774711 is:0.016435966452765523 or:0.016172857637811355 by:0.015593067661393263 as:0.015457417736318087 make:0.013765966667022162 had:0.012525139131882244 all:0.011841546693232206 :0.09479347722628352 +one:0.07591276261110715 out:0.06051731193170748 part:0.05247657393880051 some:0.03764565803631056 account:0.03732080875142556 any:0.025795501308866122 all:0.022573497570587936 that:0.021706034880474935 tion:0.018820497961324994 time:0.018327338823311803 and:0.017698472540372448 use:0.017101246342976464 much:0.016743309263569286 portion:0.016424352739351607 side:0.015150320706867294 end:0.014971280442338157 cause:0.013657752568417643 because:0.013563549560043006 reason:0.012998228641295377 :0.48959550138085167 +the:0.39749834532651884 a:0.07520030034269234 and:0.05540858759821703 The:0.03273515726769502 tho:0.030061875542463562 of:0.020144331424922633 tbe:0.014929647509541684 in:0.014268129706664795 or:0.013333166761078447 .:0.013287381914101323 an:0.009000188755386574 to:0.00880680429595084 :0.007943763822197133 Mr.:0.00773879605474787 by:0.007328417831573476 as:0.005922572098978465 for:0.0047526933692942485 that:0.004736121968310169 on:0.004594595720579333 :0.2713091226890862 +one:0.06754190432163522 part:0.05231163511576496 out:0.04609588594236959 some:0.02740306976054911 side:0.02387622494371665 end:0.022518288784217105 members:0.021845751933956114 portion:0.02151370006345736 all:0.02022572610903207 people:0.016238426460010967 and:0.014555909544903867 that:0.014078768366257871 day:0.013832139668816516 tion:0.013547994796857001 front:0.013380738665131557 any:0.013269620285130524 member:0.01265082101866512 time:0.012443834037564471 office:0.011845495219016932 :0.559824064962947 +it,:0.011355937101754029 it:0.010225808037885637 up:0.009268608791678202 them:0.008429492035327363 in:0.008309682281915386 men:0.008300645966262508 them,:0.007777767357504172 out:0.007614300693056393 him:0.007612499836818203 work:0.007403528652097941 him,:0.0071781748703877634 of:0.007032070884305684 country:0.006987924365480123 here:0.006461359629109241 time:0.006035833750154148 appear:0.005440844268898478 there:0.005429316624483394 ;:0.0052771598566892074 life:0.00508074271786017 :0.857778302278332 +of:0.28767355066866834 to:0.08775711267569858 in:0.08678131196995101 and:0.05160598694501188 on:0.04646139928102899 by:0.04519522654900943 for:0.044547789071328545 with:0.03396756772609607 that:0.033699232901107726 from:0.03075346596941143 at:0.027039283056790858 In:0.021061449543044047 as:0.017514234937992545 all:0.012543839382496166 upon:0.011844431150487573 is:0.00998972746569266 was:0.008814315973987914 into:0.008557199930727406 through:0.007781895704231326 :0.1254109790972375 +to:0.09864282010030183 the:0.08375297126946753 of:0.07074571151673052 and:0.06779046829403 a:0.02766650927741597 in:0.021670314456411932 at:0.021392828982420006 for:0.01627599403114278 is:0.015107338441904122 he:0.014818877918256685 was:0.013808540905081488 by:0.013132601340090633 it:0.012796195965848819 I:0.012723560421513859 :0.0121914922721236 not:0.011777366450725432 .:0.011011346691779235 that:0.01092359583028988 with:0.01073896800850032 :0.4520324978259654 +the:0.6413922223092984 of:0.05230495420504815 tho:0.035432174933825014 said:0.026293878350136624 this:0.024606441091819177 a:0.020494340443585446 for:0.01249653470997815 tbe:0.010881363717746166 his:0.010845790895563295 our:0.010741901652986049 and:0.01029898744729942 other:0.008793175645946309 American:0.008357532223053273 in:0.0077777839950037364 their:0.007567215484580002 The:0.006990578365286274 its:0.006423508035118247 public:0.006359903529300489 these:0.005893423409764274 :0.08504828955466151 +of:0.14626729173130704 and:0.08764378477182433 in:0.08563047452760805 a:0.0585094622762355 is:0.05424189298579097 are:0.048217003895899044 was:0.04283708369118897 for:0.03434117369512593 his:0.030776827994057294 the:0.03029703953229815 most:0.021322295790143175 do:0.021158569359713636 their:0.020941152350499134 would:0.020207353504780916 In:0.018797799846861956 to:0.018164700366792755 by:0.017448130242069086 her:0.017237980762321328 were:0.015676430037884298 :0.2092835526375984 +W:0.07892631551588039 M:0.0649850702455623 J:0.06391667000631429 C:0.05905432254903491 S:0.054856972986157694 E:0.05424348669664422 A:0.0514021035998739 H:0.049828895999379015 B:0.046817024292917286 P:0.04169510535418999 L:0.03908899165768591 F:0.03868396050835962 D:0.03284277583604958 T:0.02839631999315026 R:0.022484651061807727 K:0.02066410658290062 .:0.02003194872932241 G:0.015174321886982735 N:0.014851087760055299 :0.20105586873773182 +the:0.5720067650716996 this:0.058610088244172215 The:0.04913487343589949 a:0.038429139753976486 tho:0.03047434143644166 an:0.028473889730445533 said:0.021532088231188046 of:0.020744183794397797 that:0.019633673724562074 our:0.017230389176567214 tbe:0.012638981319487328 such:0.0125028687821176 and:0.009108645146261526 any:0.007905844640247302 This:0.0066360466214016416 in:0.00617832701425693 federal:0.0059239062719419425 States:0.004805047807656935 his:0.004288530818294219 :0.07274236897898455 +of:0.15133644004434824 or:0.11345345084001414 about:0.10643644191771771 than:0.09301272763677937 and:0.08912071216195676 the:0.06801243472268263 nearly:0.03881400761587886 thousand:0.036196261341752245 over:0.03344987516080574 for:0.03232170827167635 last:0.02835920718718642 containing:0.023936189855433585 exceeding:0.01997084551848983 to:0.019576624824646536 least:0.018489302350574863 in:0.016311198303798433 within:0.014257957069868573 past:0.013162550895247538 first:0.011113126324846902 :0.0716689379562953 +and:0.10038275173527456 Beginning:0.08454506876778513 was:0.04270128988250076 Commencing:0.0405695833232284 is:0.027566222665360032 that:0.019405408689992725 look:0.019015184862769922 it:0.01872728329699828 him:0.018662942658140315 be:0.01834873858796612 are:0.016965247200661948 but:0.016697303740895116 up:0.01624550082114781 them:0.015047790297139343 held:0.014226250042085734 beginning:0.013901322846056665 commencing:0.013833032028030028 out:0.013753735524837454 sold:0.013174941032054379 :0.4752304019970753 +they:0.14354607808644904 there:0.13333349704539463 There:0.09665612905429397 we:0.0862997174104175 who:0.05397252714352916 They:0.05070941110512302 you:0.041972704115184195 which:0.03424925649785949 We:0.028755000019248907 that:0.028431511238468724 and:0.02403694660024544 These:0.020949806318749 people:0.012912166659753763 men:0.012248995605831547 You:0.010664950894430073 these:0.00813449008064507 them:0.008020376249274038 as:0.006169086700469312 or:0.005475660710328446 :0.1924616884643047 +to:0.12075208822205495 the:0.05547271035142502 and:0.05533425364142371 of:0.05510808191174017 in:0.01750921865013805 or:0.014570130870962593 :0.013511333950813234 .:0.012434828447741117 be:0.011855921671505336 not:0.011496287500523263 that:0.011051849391676149 at:0.01087974189093604 I:0.010787491880004071 a:0.010402594460315648 is:0.009321633667070221 by:0.009154292290701561 was:0.008956844828969029 he:0.008661709750364021 will:0.008643609635903222 :0.5430953769857325 +be:0.1629499668055351 was:0.13715870238060549 is:0.09572943676386307 been:0.09323204187312145 and:0.06343943726119768 are:0.05234518882272543 were:0.05044429248765359 being:0.03997314120125058 the:0.027349219527946333 he:0.025757845675607273 Is:0.019790001459067227 ever:0.013896822499134414 have:0.01380185277661779 bo:0.013284192286544382 had:0.012766819294938602 or:0.01128875339544884 a:0.010115974591171892 man:0.00906093321140323 land:0.00873252017478325 :0.13788285751138438 +of:0.28767355066866834 to:0.08775711267569858 in:0.08678131196995101 and:0.05160598694501188 on:0.04646139928102899 by:0.04519522654900943 for:0.044547789071328545 with:0.03396756772609607 that:0.033699232901107726 from:0.03075346596941143 at:0.027039283056790858 In:0.021061449543044047 as:0.017514234937992545 all:0.012543839382496166 upon:0.011844431150487573 is:0.00998972746569266 was:0.008814315973987914 into:0.008557199930727406 through:0.007781895704231326 :0.1254109790972375 +it:0.11764724422919164 and:0.11575023912830898 he:0.07873246056073618 It:0.07419578846874667 that:0.060157878607229515 which:0.05165016422926522 who:0.0362879715136614 nor:0.03275191185236615 What:0.03038931947946174 Nor:0.024531453231816866 this:0.020828957626855826 This:0.01913666553913084 all:0.018270045812797397 only:0.01744232225630222 He:0.017069164625003307 How:0.016563102817425082 she:0.015822463208277352 as:0.014705206489521599 one:0.014179296903119306 :0.22288834342078273 +the:0.16807735899698817 of:0.10541662057906837 and:0.05138367848570702 a:0.04141865232648221 to:0.0385989743764065 in:0.026264864977736738 was:0.019530675665220657 his:0.018900421021236905 be:0.017373825006196972 their:0.015767721170721456 for:0.01557246589796783 with:0.014071419046630446 is:0.012922913111931644 at:0.012690452250034052 are:0.010702713108721902 .:0.010158075558988393 Mr.:0.009672788574483367 tho:0.009612591781990074 were:0.009549306361446321 :0.391314481702041 +to:0.12087333793075265 who:0.11992845067376103 I:0.10136403958401044 they:0.08434177503538849 we:0.0755666803181726 and:0.057091684956779895 would:0.04464244815872413 We:0.0380792879017479 not:0.035628206439219955 which:0.030290405162587384 you:0.029392864735893327 They:0.02614714248976333 will:0.018101626020004574 should:0.017217924423227622 shall:0.016138677440613716 must:0.015403738256562022 may:0.015045117930802196 that:0.013766973903647521 might:0.012375039489277866 :0.12760457914906334 +get:0.053610422214488855 was:0.05051841536969282 and:0.04903958730444051 him:0.038801969319659166 it:0.037410018187455464 them:0.035569152369498175 are:0.03479460583298655 go:0.03206022460430166 come:0.03018624754922308 came:0.02989007710531499 issued:0.028538548420871033 taken:0.028387580006254076 went:0.026471193886938953 got:0.02591677196361888 growing:0.02512307536827857 be:0.024827416016109424 is:0.024256616056951556 served:0.023420563816567756 paid:0.022272217198545566 :0.3779052974088029 +one:0.07141690128837089 part:0.028454420256192436 out:0.023433756267619878 account:0.020400772037063544 that:0.01811972565544912 cause:0.017507194588980663 any:0.017072781158505836 some:0.016822532267398247 tion:0.015076450860288398 and:0.014063730298426379 all:0.013708444514251473 time:0.013707317684087379 use:0.012589396226717729 portion:0.011840306841212896 side:0.009672615179782346 view:0.009671328270681295 virtue:0.00893697007088015 amount:0.008678839646229288 payment:0.008128436470716122 :0.659698080417146 +they:0.16975503617035836 we:0.08717874159447841 who:0.08666726222262452 which:0.06934410151001512 They:0.04451510037832022 that:0.03496200358671482 there:0.03346383325822575 you:0.033356179317239165 and:0.031551610606043834 We:0.028528012269299293 There:0.020524797085591514 men:0.017554462587633626 people:0.012424859031501654 as:0.008201578590515683 I:0.006302313230499523 children:0.006199630637270769 them:0.005942309972234735 these:0.005668894266215227 others:0.005610502244858989 :0.29124877144035877 +of:0.221627194162537 in:0.09402441627945159 to:0.09065761332870419 and:0.06883396668597144 with:0.0667198790599659 that:0.05117379629990085 on:0.03874770291657579 for:0.03832397203303869 by:0.02977616560447493 from:0.025633945444660564 made:0.01837191771244993 In:0.0175762251492334 upon:0.017184748691374492 all:0.01642296680808677 as:0.014552513681968124 at:0.011779571284133554 have:0.010783574534272502 but:0.010398067597020801 had:0.010375705662742828 :0.14603605706343664 +the:0.2081336939935731 to:0.08789257881688736 will:0.07223580176577751 and:0.0710600587657835 an:0.047299887734538276 not:0.043545760821409124 of:0.03868689913663942 no:0.03765743477743814 a:0.0369792444171294 his:0.031734107709952115 The:0.03116800796143037 in:0.02618206557551798 be:0.025204733483043577 may:0.022141237356105417 would:0.021212570229517533 or:0.02057070905207069 their:0.020450073948485574 have:0.019100559409218832 can:0.01887237358397781 :0.11887220146150426 +of:0.09535819706554119 the:0.07756307250046315 and:0.07708252601510572 to:0.0406018774337806 be:0.023619563979351884 was:0.020291969857854926 in:0.020157748755823702 he:0.020011679880813947 a:0.019576031913850708 or:0.019458499701416956 for:0.01940908201675651 are:0.01840122660455304 The:0.01756634325551437 Mr.:0.01751357050928392 that:0.016313920799612795 which:0.01594710581805199 :0.015032671925817807 is:0.01483718028272099 were:0.01421196964257681 :0.436045762041109 +the:0.17414737096771468 and:0.1506579875845545 to:0.07505861820974163 a:0.05937697704126117 can:0.04600781578106584 will:0.03566356180199734 of:0.028287622952363253 that:0.027140572754752176 which:0.02665016595027345 he:0.021039265569450422 The:0.02052699972411736 have:0.02041611377408711 if:0.019606855695635694 had:0.017892560188078485 could:0.017827087286789292 they:0.017771625113118465 for:0.016812612034826542 would:0.016121394605431973 I:0.015675620104362242 :0.19231917286037836 +and:0.09851401225409205 was:0.054087840178930945 are:0.039895026260651355 is:0.035164575765985556 be:0.030143119314241188 or:0.0279837372316518 were:0.02511876938456726 that:0.021308653526896506 it:0.019821904428246526 for:0.01970138285552023 sold:0.017143396952142547 them:0.0165570494373609 in:0.016248675226673268 sale:0.016207808313120665 held:0.016154747061184662 interest:0.014756878698590969 out:0.014046849312757289 look:0.013132939600111889 of:0.012982282094680225 :0.49003035210259416 +a:0.16965073199564806 the:0.109692219115421 A:0.07844314612189227 One:0.05460059324962203 that:0.04106916338769554 one:0.03712857011545665 of:0.03686494830921169 and:0.03498026395427912 last:0.028130214462486623 The:0.025920216483832942 gold:0.017729518906810925 :0.017364691279307867 old:0.015536952445549182 this:0.013833764588116625 first:0.013366922529678889 young:0.012322755739681836 each:0.011727708491591542 every:0.0115957579423305 for:0.011439843446728762 :0.257602017434658 +and:0.17989014704292505 the:0.1682838345874848 of:0.16298378570251448 with:0.04171243413558262 or:0.0361974681527918 no:0.03285148139385936 for:0.028373069068516388 by:0.025792949582205817 in:0.02323981192533315 The:0.022422586843522635 their:0.018088667383903655 as:0.017468891841774456 a:0.01566520349965217 all:0.014603866649116636 any:0.014365174921473205 some:0.013329281012765048 tho:0.011779133479968075 to:0.011396303225337643 that:0.010488034395795832 :0.15006787515547718 +of:0.3373866019306974 on:0.11147131397831822 in:0.10868405254593586 to:0.08566775093326989 from:0.04398638870023026 by:0.036888385291889536 and:0.026201872365545394 along:0.023686343004369753 across:0.023592314453442512 for:0.021776291185689592 In:0.021543133220159678 that:0.021251703586494107 with:0.018887100329545495 at:0.01693863768912717 over:0.014142976332999213 through:0.011167932621729533 into:0.008410613669069674 under:0.008187871953950343 about:0.007606663349252575 :0.051522052858283804 +there:0.26331580452448583 There:0.1896667040323326 It:0.10537903391597335 it:0.10357474490058549 which:0.04016119537313015 This:0.03741232613259072 that:0.03632602473675084 this:0.025795230652104557 he:0.018330403911004295 who:0.018126577096680332 and:0.012887416922525962 He:0.012324691204938969 That:0.01229400182355845 what:0.01048225345069308 Here:0.009765234024698753 "There:0.00530414648789588 as:0.004586488098298707 she:0.0043050969146938 What:0.004073145401913338 :0.08488948039514489 +of:0.16374495768360597 at:0.10637119194877842 in:0.09200753098015066 to:0.07707735370039541 for:0.07125976730470698 on:0.07047994633191061 and:0.052842719796100675 from:0.033475377595949346 In:0.029575959091747654 during:0.02699847842109559 that:0.02451368576345207 until:0.022252103815355827 within:0.021577087041070392 by:0.019781017528441507 with:0.01397805937123127 before:0.013677587643788316 after:0.012846637452722189 when:0.01133233190778724 was:0.01130595681714966 :0.12390224980456022 +said:0.08031638003261056 the:0.07385511705578499 of:0.0720238033361102 to:0.052854259051700964 on:0.03407421744855488 by:0.014751936534134437 his:0.013830693711087026 in:0.012767608758910332 any:0.010077350201464209 a:0.009263065326819203 other:0.009152581299827309 our:0.009065882351346016 their:0.008304688401930771 per:0.007913846448882348 :0.006593155239030234 :0.006230895745610329 American:0.006124345612748958 every:0.005589303066715321 one:0.005498924415252807 :0.5607119459614791 +the:0.2823127046556973 a:0.08791770501375941 of:0.08378162301238665 in:0.05902069581352692 and:0.049440055397373346 to:0.03471025437699777 The:0.03321632383324042 an:0.023806805463039437 for:0.022869281740304337 tho:0.018124794468391225 this:0.017138148282550312 at:0.01293254106122723 said:0.0119493954447063 In:0.011271347043899283 or:0.011167526155915083 his:0.010442694701032791 tbe:0.009224336800655436 their:0.007710016316392323 :0.0076135109945584065 :0.204350239424346 +the:0.5730518916685272 at:0.13425718847929513 tho:0.03497729935704223 its:0.03234878292184262 The:0.03091496009318608 our:0.027210495553136656 their:0.02473193456051838 to:0.022855603056731278 his:0.019384618860762454 tbe:0.013772175209258178 of:0.01325992317522962 At:0.011854760354812826 and:0.008709261887302058 a:0.008225911846042563 in:0.006953821224133268 under:0.006900719675997403 your:0.005166315681568503 on:0.004852702629139914 Its:0.004453073171630042 :0.015118560593843514 +has:0.30040682011446745 have:0.2909490510307005 had:0.19144205761941047 not:0.040337807663749864 having:0.03281509231732157 lias:0.009742778541190107 ever:0.009229215940189429 bad:0.008823331777622664 never:0.008452209903224891 havo:0.007615997613073065 always:0.00623819141181938 just:0.005890534646660164 yet:0.004923819905588311 already:0.004784522274137487 haa:0.003823941785590798 and:0.0034088028643263204 baa:0.003348574459815192 also:0.0031521417694670645 long:0.0030982038579228655 :0.06051690450372237 +the:0.6676121126068043 tho:0.030305890523467285 of:0.025847094358709848 The:0.022469641529982987 on:0.020182597843742593 an:0.018482525545347676 in:0.015109623787797573 and:0.012995209355723064 tbe:0.012984110036711136 their:0.012567564390383087 land:0.01156771728186907 his:0.011399617037799252 or:0.011257759098074017 said:0.009883948770964665 this:0.008484445071106902 its:0.007825463071589336 other:0.006613679053949622 such:0.006071959484601221 to:0.006017615256580349 :0.08132142589479602 +is:0.058202261294343194 able:0.044683733937978067 and:0.042524237344924096 was:0.04034102448191656 him:0.03988722771944321 as:0.03882835703244711 time:0.03472011224638198 not:0.032105377858346516 ready:0.02911196096137148 right:0.028960070926460163 began:0.02709190943814631 them:0.026808480914179887 order:0.026765843713775793 enough:0.024213334151152923 necessary:0.024134594745960056 made:0.021755045544175053 have:0.021689423007173927 had:0.019581421623989882 me:0.018490803081036886 :0.3991047799767969 +and:0.06801980411563592 called:0.05975987546856643 based:0.04056929756857015 down:0.038884916072364016 placed:0.03423965746291783 depend:0.027374652480390206 put:0.026731207328758652 insist:0.025119524967866104 depends:0.02444468632237949 agreed:0.023899560091221253 it:0.022854342891824673 enter:0.02263394002356096 call:0.021876282335471182 look:0.021080936370134484 is:0.020801787775151123 fell:0.02075468496825849 looked:0.01994147837184452 made:0.018538654812787693 one:0.01668400922739733 :0.44479070134489945 +;:0.026571403980587268 it,:0.015870383953832425 him,:0.014366666283007914 them,:0.010562164083232527 it:0.008914797564345324 him:0.008658739974460379 in:0.008563308136534544 time,:0.007630343887807345 States,:0.007612689371982528 country,:0.007362247907852296 ,:0.007288132781311494 people,:0.006911544867979867 years,:0.006897249127247925 up:0.006735676101470539 and:0.006727519134349249 law,:0.006324130571078796 made,:0.005585921996128152 life,:0.005365863658446561 tion,:0.005234115725765018 :0.8258171008925798 +of:0.13084814232797154 in:0.0740836656586379 as:0.0625527229231004 with:0.059577596335708534 to:0.058433603729754965 is:0.05551580107464621 and:0.04946529489577619 was:0.04264000753602388 for:0.04009673021586375 by:0.037684080471064085 be:0.023941707008899252 on:0.02316059851167503 at:0.022644769441950232 such:0.019950936521181326 that:0.017856095877642635 like:0.017386655618315594 In:0.016902219705578994 from:0.016046571451088905 not:0.01205910100844263 :0.21815369968667797 +and:0.09176249555545204 the:0.08913047874612127 of:0.06414954063700179 to:0.03242665732268449 that:0.027981049711601775 a:0.025762176831747675 for:0.02232894637370384 which:0.020466306354765356 in:0.018332474320485244 :0.017859769587354617 or:0.01648021303728492 be-:0.015556454600144634 he:0.013470450648265816 be:0.012004925117390416 -:0.011557613072275666 as:0.011439664373118429 The:0.010796517613985163 re-:0.010517486495681563 no:0.009893082608609898 :0.4770836969923254 +be:0.16267079317914862 was:0.10810304999914779 is:0.10564019092385107 are:0.1035183863741956 been:0.07689148769391506 were:0.06505673318885881 so:0.04494309924875436 and:0.04104682487874642 have:0.026299161328419945 as:0.025474693969301247 very:0.02072280794770189 being:0.01982048560499473 had:0.018132649259133153 much:0.01705315926742732 more:0.01672022800704718 the:0.015480890738888172 Is:0.014907397790777198 has:0.014816464158531934 it:0.01344405860924686 :0.08825743783191267 +of:0.1506687428692429 the:0.14086121832681617 in:0.08416392921946186 a:0.07422577296189595 to:0.031762378545344035 and:0.029461797298865392 as:0.019758522899530766 that:0.019500436390564032 from:0.01759513594830255 In:0.01748821649551702 for:0.014483726580930452 by:0.012195296386397499 with:0.011325310954499058 on:0.011047495590238928 The:0.010939890624567081 at:0.009953760175456879 which:0.008260498277933534 an:0.00793250526800855 tho:0.007822105275747167 :0.31955325991068023 +a:0.32828559921997724 the:0.2078607599520552 very:0.05282416423637345 and:0.04670050793513755 his:0.04141053421276997 their:0.03951930627610245 of:0.03139484042552131 most:0.0287741975122214 its:0.02132586203234564 A:0.02120259052897556 some:0.0202584463102226 The:0.016595622064413614 our:0.016566009669626736 many:0.016040474605614148 good:0.012058551973847881 one:0.012056388356661625 two:0.01150720191055522 these:0.01083916818069817 that:0.0106980644100493 :0.05308171018683096 +it:0.09606523003956101 and:0.07834452498273939 he:0.07573835710880551 they:0.06505364027730551 which:0.056140363761799345 It:0.04263804195366965 I:0.04058537575590958 who:0.03734027966286201 that:0.03654104383065465 you:0.02999648409498698 we:0.02508294337979338 He:0.016379180046647034 she:0.015753592335943395 as:0.013170225282446893 They:0.012039542527671471 the:0.011600591267415169 man:0.00963698976337265 there:0.0095343493601173 This:0.009246936693130866 :0.31811230787516825 +the:0.14454403196713275 of:0.08822112968325602 and:0.061691389463659534 in:0.05789366404838559 a:0.05454627115302113 that:0.024286771972531176 to:0.021498857299905305 for:0.020584468083594817 be:0.019705303760887777 their:0.01762742205119237 his:0.017617725227774887 or:0.017398442101539898 In:0.013784959018787764 as:0.011951596902037483 by:0.011392097178581782 with:0.011170833970680263 tho:0.010864590522188638 feet:0.010114837671983517 her:0.009729316376218319 :0.374376291546641 +sell:0.08409498285478095 and:0.05973211703959264 o'clock:0.05702781779841192 day:0.05546837484059323 sold:0.041401116018386856 held:0.03556973601538335 was:0.032916493186483 died:0.027963664630338156 sale:0.020358449308557257 arrived:0.019828690618235053 cash,:0.015205669271940949 that:0.015202211206690174 sell,:0.015110959780852678 for:0.01489915558961944 up:0.012374548945753249 year:0.012243970864966034 night:0.012117007615054297 morning:0.012112605113760585 as:0.011848615644057349 :0.44352381365654286 +of:0.11155817871690207 the:0.09370212820174463 in:0.06555114191285057 for:0.05507500026599673 to:0.047616122788195936 and:0.04645853629788035 at:0.04255862315696318 a:0.03542582194255171 by:0.02458015520658282 that:0.020365413510324757 or:0.017850776406078503 :0.017037992618570443 from:0.016588234027696047 In:0.015185738918799194 as:0.014419008607072584 with:0.012193522298287142 on:0.011416213598710891 said:0.00999196278986342 this:0.00852641693606345 :0.33289901179886555 +and:0.20543343383946122 he:0.08973217815770555 had:0.08895827168789057 was:0.06377210908160982 I:0.05299076455270705 who:0.041018066449404735 have:0.036000154406613714 be:0.02800679088112792 He:0.02718580114759439 then:0.02610630297483509 to:0.025897313664216427 has:0.023878046972226678 she:0.023041383571913397 not:0.01636495885691714 been:0.015999563937444717 is:0.015482938862697195 were:0.013386825493054548 or:0.01260463116000438 well:0.012106852147143948 :0.1810336121554315 +of:0.22555675065650804 to:0.1812300554538081 from:0.06679858374086756 in:0.06252883718433636 at:0.055235949923104447 and:0.03986614548430074 the:0.022119380169009415 In:0.020827824307422194 by:0.018968978246709903 that:0.0156724746209113 for:0.01336947013719436 a:0.00925427821162355 West:0.009068241131630787 on:0.007973774892451536 with:0.007029190227438233 :0.006607920334866546 or:0.00625721141961552 will:0.005994272758258073 At:0.005099144732112298 :0.21954151636783106 +one:0.10757504863160208 out:0.06393072214258595 part:0.05345953864888265 some:0.04657778396619151 time:0.032653763285528395 account:0.0298978741893603 all:0.02673860913095395 and:0.02324876597992745 that:0.02275453097379819 because:0.021318504223257338 portion:0.02010071224985526 side:0.01926992014112468 any:0.018918137101655273 front:0.016609963575485047 many:0.016563310866764772 end:0.01592265492673931 day:0.015255366376758018 members:0.014811614297040794 result:0.014486922106154784 :0.41890625718633423 +it:0.10042645326670457 and:0.07448793043621132 they:0.06745538804156191 which:0.05610372715754102 he:0.05330802339860615 It:0.04965253849879704 that:0.04316270821032778 you:0.04059136714561362 I:0.034792155959010064 who:0.026123558815079908 we:0.02442900487769299 as:0.013553445253339248 she:0.011719227724809902 He:0.011384828705757256 They:0.010300763918344088 this:0.008245251916723852 the:0.008165201012513676 1:0.0074978238808858086 there:0.007243600680898497 :0.3503570010995813 +of:0.09585853787909852 the:0.07673342324514013 and:0.05179757544906205 to:0.045930064746106954 in:0.028336017877215902 a:0.024099158070020017 be:0.01986861886146132 at:0.01776996056843887 as:0.016902472849265007 was:0.013674270426661111 for:0.013637064209302401 .:0.013518654091323138 his:0.012887760322202907 by:0.01259224826294543 :0.012483216010616327 or:0.011730416728475239 from:0.007567498970190211 is:0.007461738234294665 with:0.007152578246215695 :0.5089987249519641 +it:0.12291356726271781 he:0.10766523848787593 It:0.08126222867785683 which:0.05815091424687329 I:0.054909855356083816 and:0.04607290301292405 who:0.036234513317437905 He:0.03284977251390459 that:0.0307500349566012 she:0.02807960748770171 there:0.017106531141060498 as:0.011444714915749334 She:0.009915288061780691 ho:0.009311744482256256 what:0.009144898696231517 1:0.008083327589627603 This:0.007923029238788926 lie:0.007752420127589498 man:0.007654383581502722 :0.3117750268454358 +of:0.5849362307608286 in:0.15497438679374878 to:0.030972246671720872 In:0.026527818862222725 and:0.02408161937127534 the:0.012764117052723569 by:0.009747871416362816 for:0.009025941166172257 on:0.007431808481293601 with:0.007285969325248009 from:0.0053511517907040285 that:0.0037624443519540703 ot:0.0036832019249916567 this:0.002430235337643012 ol:0.002305977287591103 or:0.0020383146805084875 upon:0.0017224313098356272 his:0.0015801480132698856 their:0.001427565195046334 :0.10695052020685927 +will:0.3104879578070645 would:0.09765465753494185 may:0.05977096073985893 could:0.04856263271990305 should:0.04416406380638849 shall:0.043979875520241865 and:0.04315494833782657 can:0.03626473417726141 not:0.034803564031046084 is:0.03272761596789893 must:0.03258698499232779 they:0.02717431713528167 I:0.024289327869157083 have:0.022299748618902614 has:0.01860804913002833 we:0.016836591123989816 was:0.016313012643757833 might:0.015054661495639365 he:0.01450124409666398 :0.059765052251819835 +the:0.21710928137942423 of:0.09598811061219507 and:0.09527248824614219 The:0.06484816256534764 that:0.023252074393290727 his:0.015731179187244974 tho:0.01397667239395606 these:0.013008250369004179 to:0.01296689331426111 a:0.011135971876279129 in:0.011059229793953134 their:0.010261710428640112 or:0.01021156795511136 Mr.:0.00991081005921989 :0.009455568868739087 as:0.009350082510582027 for:0.00886619398955121 two:0.007991115431686206 if:0.007970823201582527 :0.3506338134237892 +have:0.12514323980105152 has:0.11321191927871813 had:0.10676690852684895 and:0.09447144500497562 was:0.0550144096016394 been:0.050475425261045544 be:0.04959905165658759 is:0.04163936898219134 are:0.03171075139037433 as:0.027182468842753188 not:0.025853599336270797 were:0.0229926254925817 having:0.022127549095639597 who:0.018768457016291786 he:0.018764416205898155 well:0.016314931263797638 the:0.016087474203428084 will:0.014096564659213516 also:0.014092975632661826 :0.1346864187480313 +to:0.07778052724574724 at:0.07393447355644507 of:0.06598610157382215 and:0.051033578743617955 the:0.04842266775089603 on:0.028754203769124236 .:0.02214797458219197 in:0.021997349277782182 for:0.01857107328155007 :0.014809628929877777 or:0.010201902101443975 about:0.009952711121430534 2:0.009481856398130642 from:0.009389398034120046 by:0.008490213571946004 a:0.008012296986870731 with:0.007782633117790828 1:0.007417495505773336 4:0.006378558111005504 :0.4984553563404337 +that:0.13309242498982288 and:0.10518791493803169 as:0.06669283046507236 which:0.06316209426775093 but:0.047173487785610035 what:0.02593656091004242 if:0.025195867798930374 when:0.017057158747657186 If:0.016406905347166455 :0.013897286801220335 time:0.013195617314483439 whom:0.012884878490131525 But:0.012552745750394532 because:0.010833011767262207 it.:0.010273460043703633 where:0.009252800833372286 for:0.009027845580331206 while:0.008225127267158492 so:0.008034840968349308 :0.39091713993350874 +the:0.1726489526984722 of:0.10354692861339074 a:0.0962304379138935 and:0.06490172774878045 to:0.048884303917395566 in:0.03822015547055428 that:0.022215775769243856 The:0.021995553729941886 with:0.015442523504397414 as:0.01538583874967032 which:0.015382076802215122 no:0.014583966745314076 or:0.014402077412237748 an:0.012979920153467307 on:0.012773773315340225 tho:0.011594648795851873 for:0.011436307550225759 be:0.01020985101898232 be-:0.010120721215570989 :0.28604445887505436 +day:0.09018790873775127 State:0.07527654079998712 state:0.06032368353529417 line:0.059478851884982725 side:0.048347487872617674 city:0.039576102489352845 county:0.03924374616835004 County:0.03485973312027606 corner:0.021001081298429494 Board:0.020184989569904967 lot:0.019300187439896335 place:0.016051323810199948 City:0.015152295079878392 town:0.013019464510067373 part:0.01293719490989189 House:0.01022935280077683 act:0.010162045976868369 number:0.009841948922806418 out:0.008805791922593153 :0.39502026915007493 +that:0.13309242498982288 and:0.10518791493803169 as:0.06669283046507236 which:0.06316209426775093 but:0.047173487785610035 what:0.02593656091004242 if:0.025195867798930374 when:0.017057158747657186 If:0.016406905347166455 :0.013897286801220335 time:0.013195617314483439 whom:0.012884878490131525 But:0.012552745750394532 because:0.010833011767262207 it.:0.010273460043703633 where:0.009252800833372286 for:0.009027845580331206 while:0.008225127267158492 so:0.008034840968349308 :0.39091713993350874 +the:0.5279968230395614 of:0.12757921799536684 a:0.0295606543390306 The:0.026043225203915426 and:0.024330458006986737 tho:0.021871547234971606 on:0.017290387005419915 to:0.010281728298181277 his:0.009968237284743851 tbe:0.009917914696786217 said:0.008508455888291465 A:0.007426347087386926 .:0.006740538324965141 in:0.005851084651150705 :0.005567869700105094 her:0.005508223732363608 thence,:0.005378553246030194 dated:0.005251364257131573 Port:0.005082404774506741 :0.13884496523310463 +to:0.1626998349507929 and:0.1143597885978117 of:0.03568347347732664 the:0.030507766946615136 will:0.021517632976228926 not:0.021362645022826362 he:0.019392611278772735 I:0.018136863946233598 in:0.017208605391494255 who:0.016277132642438227 would:0.015579121551165465 or:0.015248600010100722 it:0.013879431533013872 had:0.012765415273396436 was:0.011571174022298831 be:0.011149539716848728 have:0.011079534068083116 a:0.009696091741725366 is:0.008893476100119384 :0.43199126075270755 +the:0.17908370908570936 of:0.13369322293890923 a:0.10727667543246266 in:0.0691564269860068 to:0.04815888784339293 and:0.044216920435997994 for:0.02410985609537931 as:0.022009028789036867 In:0.018754832301223618 by:0.016529624062231484 with:0.015995360489961953 from:0.01577524649137504 that:0.014215121484531282 be:0.013503890880351657 The:0.012683775267895747 at:0.012551313195335676 on:0.012432477098461368 or:0.011593472385790352 an:0.011266396599933762 :0.2159937621360129 +the:0.07308391748213149 and:0.0650236830030406 of:0.06160769942055397 to:0.052268247186185425 be:0.047076308054616864 a:0.0372396837426395 in:0.024252681833945605 was:0.022488248066258144 is:0.02167905136294673 for:0.02153860696418792 are:0.020623701936193742 or:0.01929925567751662 re-:0.01871171112926931 been:0.01861238611348457 pro-:0.01601091340941376 his:0.013531807626344868 not:0.013315154707748283 were:0.013106637980199716 he:0.012779513704430508 :0.42675079059889237 +to:0.14339264545011882 and:0.12334275810699084 was:0.09645391347883225 be:0.07214511925348897 were:0.056002539425342175 been:0.044713776858973965 are:0.03571196793155308 not:0.03267749997546547 will:0.031084332969878673 would:0.02586960262409036 I:0.02502581103926011 he:0.019617222565691067 is:0.016748086200281197 being:0.01579932673175559 then:0.015027859109217785 had:0.014431902576256109 who:0.014232790725139291 the:0.010409345195001874 now:0.008511327777334505 :0.19780217200532788 +and:0.1218837144256788 was:0.04577535571540456 is:0.040239206617053526 are:0.033285740723772425 it:0.031077403013821815 be:0.029173170356271788 that:0.026924684654917715 were:0.021982214389957008 as:0.020504739537844367 found:0.01765516073032446 put:0.017460529277413196 been:0.0168397937025233 placed:0.016549171470802638 made:0.01652987102716457 or:0.013968948606244855 them:0.013705482207403821 held:0.013547493787888543 but:0.013278967335672376 up:0.013268077672478605 :0.47535027474736163 +said:0.1213931158729107 the:0.119622122217928 this:0.07392068032185693 and:0.07187841830162402 a:0.06439502920295978 same:0.036051508420297314 of:0.03110671987834873 next:0.021628255567248972 their:0.01998266348877965 her:0.018531639671993217 second:0.01821966037269473 first:0.016749798474988142 his:0.01652325354595229 to:0.01633709303632187 such:0.015616801734273211 that:0.015423076968750926 certain:0.015121290368218963 each:0.014950837933863276 May:0.014835204587080781 :0.2767128300339085 +the:0.1686254608388007 of:0.08510631124515454 Mr.:0.053063968456177904 The:0.05290176461656073 and:0.04281351925879434 that:0.03659363717531167 a:0.027376597759942865 this:0.016009104250207996 in:0.014329796242200724 :0.013577096541793277 .:0.012332809689052695 Mrs.:0.011483371514010961 tho:0.011366564416127033 to:0.010938551223696477 for:0.010273564804762044 which:0.009103350770352783 as:0.009022855831525262 his:0.008831867202298479 or:0.008219518012985871 :0.39703029015024366 +of:0.09894018911631794 by:0.08321243679859468 and:0.06865924092825015 Rev.:0.06179469690032876 to:0.030544278138794 :0.02591562274442018 in:0.020150223680173784 said:0.020006235703833093 that:0.017938334664435323 Mrs.:0.012566066437805523 from:0.01118251175483977 Address:0.009649115496309797 with:0.008650980218594808 for:0.008555540556878126 as:0.008234938190666603 .:0.008194279237807765 when:0.007533680895893617 which:0.006881221433925741 the:0.006398286987323829 :0.4839921201148065 +the:0.14323871332666807 a:0.13556320238222852 of:0.10496770815022133 his:0.06575072378443932 this:0.05003771817156393 their:0.03718764103910178 no:0.03037187742496317 any:0.029884864209572672 good:0.028645238841712425 and:0.026097262110958926 all:0.02474233426534707 for:0.022395391027782287 her:0.019708311889282105 your:0.019692446583835514 or:0.01955567684528387 purgative:0.01942912116119573 some:0.018868050135469275 our:0.018662266515407477 its:0.016475856467623468 :0.16772559566734307 +to:0.16943324156451017 will:0.07879756193688074 that:0.07300914073181416 would:0.06878712241727805 may:0.05998699052572446 should:0.05117049502881295 and:0.04847497183340541 which:0.03725921039785055 can:0.03246486954610263 shall:0.028246789975658257 could:0.02775230257189106 must:0.02770885970671267 I:0.022787066267925718 not:0.01965143178113998 might:0.019435521434977378 t:0.018396873987282014 but:0.009842407461809043 this:0.009219239964087111 when:0.009119901779180893 :0.18745600108695676 +in:0.29028108320011287 of:0.22784401110592606 In:0.07306997409907404 to:0.05254552607004336 for:0.03885511619126443 and:0.03851998371000752 with:0.0328056264681599 that:0.031746776696157865 by:0.029918128227199716 from:0.023812570602607774 on:0.019360318147573396 all:0.017953226483431717 into:0.010705601797823391 upon:0.010594044969732647 as:0.009688651143539386 through:0.009309207696863437 at:0.007592032594236351 under:0.006704805830126615 which:0.006367369935738359 :0.06132594503038114 +of:0.23742935487858896 in:0.11298819376829423 and:0.10781884060152572 for:0.07931357647938368 that:0.06949640656505064 to:0.047945380754905634 but:0.028195525607586827 with:0.026211546605779443 by:0.02246511576354314 In:0.018605286082240328 from:0.01680464453931068 on:0.012907962605147922 as:0.012479691754419145 or:0.009471209954351575 where:0.009168697287243543 because:0.009024947303622567 But:0.008830269099079389 upon:0.008800755584067992 while:0.007445258990717803 :0.15359733577514081 +he:0.14022651741068584 it:0.08053152335337568 It:0.06922664927086006 and:0.06606670605092674 which:0.06398541864756643 who:0.05930897586478987 He:0.058303660754183806 that:0.04450223066616302 there:0.03693123175151023 she:0.02865361405370893 There:0.025290724313374098 She:0.014223942527273915 ho:0.013369891784123459 lie:0.010884006140202681 as:0.008320757020390394 one:0.008133243277750378 This:0.007895176977971931 what:0.007265225631724428 but:0.00717717921523064 :0.24870332528818748 +the:0.17832435105592767 and:0.07968662174195845 of:0.0785990742969882 a:0.05640190239792627 to:0.03297425679654219 The:0.021089819520910408 by:0.017960551059640617 with:0.01614179945574151 .:0.015083165946412324 in:0.013751680922037513 tho:0.012748079756642829 for:0.009512568416936764 that:0.00937164079900826 :0.009253504518093222 at:0.009133717968737805 his:0.007705251427194824 from:0.007480014607585601 Mr.:0.007293919450585339 an:0.007111616572799341 :0.4093764632883309 +to:0.23999817535877954 would:0.08488690955345475 will:0.06706907330146603 I:0.06401515020527694 we:0.05260265803273664 who:0.046799552646110174 shall:0.042532676462904456 and:0.040450842244688145 they:0.03555543911072877 you:0.035028361717712314 should:0.034749488844816705 must:0.03427726131121297 not:0.0327664028268393 We:0.02712086552146299 may:0.021790051742384704 might:0.014462682320725328 that:0.01405431216164604 They:0.012430860379115253 1:0.011149637785758873 :0.08725959847218008 +he:0.17686834925618505 they:0.12376516608005311 I:0.12106124357992233 who:0.10763120273896035 we:0.05060127747011537 she:0.0491739855400133 and:0.03422636319978907 He:0.030795327339031994 which:0.029569243456051376 it:0.025250215118204133 that:0.023482175517179207 They:0.020149066903251356 have:0.016813911514778394 We:0.014004122275148424 1:0.013336229120043423 ho:0.012706812982192258 you:0.01043858680808112 men:0.00943281835248682 She:0.009266951230340175 :0.12042695151817273 +of:0.19942958546477133 the:0.13692943858550113 and:0.09618547592248014 to:0.08225923282940133 a:0.04961938541991236 his:0.0360621045427976 for:0.029117611198989132 at:0.025021850056566156 all:0.023184599217982438 that:0.022219208720177103 or:0.021474618171783946 by:0.019085384654376928 this:0.018435625630846275 their:0.017913465814090382 with:0.016367321367484 other:0.01613956751650825 on:0.013888430122096172 said:0.013589941770845793 The:0.013126420430379796 :0.14895073256300972 +the:0.48537170804682 The:0.04903498996273039 of:0.04177323429441101 our:0.034266582719070425 his:0.03320223824520483 American:0.02895200895746362 their:0.026369504124972482 and:0.023986112300628856 tho:0.023922638230720165 that:0.023593437318815764 these:0.020469972886543494 other:0.01709731969044807 this:0.010688531095597305 said:0.008857294664295363 tbe:0.007437735815962787 for:0.0072029081705115156 British:0.007112932135645309 a:0.006843493243474172 those:0.006793695820558425 :0.13602366227612603 +of:0.15236998618007339 in:0.10765056780884849 at:0.0896748969662039 to:0.0821216010515669 and:0.053808777687788384 on:0.05034421238453861 In:0.04202796672168298 At:0.041109756172953066 with:0.03255577833881847 that:0.030978745824774206 from:0.029723249719107024 for:0.028153165170669948 is:0.026775143461566498 by:0.025508289202178052 but:0.025383343113485748 all:0.018735391855464436 upon:0.018302142055323406 do:0.018026637518533537 about:0.017432179135168396 :0.10831816963125455 +be:0.21476567267491775 was:0.21105342017590867 been:0.11379224696115377 is:0.07144263826688649 were:0.05573074821099053 are:0.04148380112006562 and:0.03527169784278651 he:0.022124340474651377 being:0.020127840049371605 Is:0.01679782808645441 bo:0.016778633560707294 a:0.01528049931994012 so:0.01493992862316455 have:0.012453954098562774 not:0.01079896164020224 had:0.01059422665040543 has:0.008148649222098011 the:0.008043525030170046 as:0.007424072306469029 :0.09194731568509373 +the:0.37703629600755834 a:0.2518308454449173 of:0.06590413580303084 this:0.041914969038915985 The:0.038479362255768645 with:0.028365113917757496 A:0.02417339501528396 tho:0.018640704731515325 and:0.017875543347959332 that:0.016318774764606112 very:0.01609625410973275 our:0.013082429346346442 his:0.011687988995155042 in:0.010743740132676906 so:0.01067624221637652 two:0.009605617016026899 its:0.0075797300362583486 by:0.007211341144717052 for:0.006732262208113226 :0.025045254467283434 +the:0.3186760769119463 take:0.2922667630637908 taking:0.07111509849540956 to:0.02938697662220678 a:0.029253595485633936 took:0.028087016907728853 taken:0.027487055954247386 and:0.025177133032812382 or:0.02502627603993402 great:0.021259338790563024 in:0.010909092149499963 The:0.010555271228825141 tho:0.010431636192753826 takes:0.009366625602502657 not:0.008254516354321298 of:0.008163940508236045 no:0.007215929394356653 tbe:0.0061442526147353635 con-:0.005479638291908816 :0.05474376635858716 +made:0.09475331170812368 take:0.07931282937279298 make:0.06942786842830553 took:0.06018190631599854 put:0.05556951526982638 give:0.05144893484487832 taken:0.05043572513608857 picked:0.04082586205516022 keep:0.04040224549617611 build:0.038565530540205444 and:0.0327722779690384 gave:0.029223356086452996 break:0.027993759507894424 set:0.023502458708101002 pick:0.023068893141774297 given:0.021143229643167862 it:0.02045051721381984 taking:0.01990908814043749 came:0.019236421856636557 :0.20077626856512135 +the:0.32644629285613563 of:0.09315690661222029 a:0.07338293068182462 his:0.06069342990179477 their:0.05789849908709676 its:0.040785956103474595 and:0.03520163790414275 The:0.03157727385736194 our:0.028421034969436505 no:0.026341215174511694 that:0.01985455781503424 have:0.018872066692150264 to:0.017690927450472002 with:0.015029737936297615 tho:0.014968491148508458 such:0.014493556994789972 by:0.01436779914465153 for:0.013389694079299068 all:0.011810336118603985 :0.0846176554721933 +it:0.10585132745216172 and:0.07710654935245331 I:0.06712153479176775 he:0.05867817015130482 which:0.053700841787128605 they:0.05351210561656362 It:0.04362852193096764 that:0.04003387507326883 you:0.03641010747137459 we:0.025528413642945242 who:0.022306986959409393 there:0.02190240996542134 nor:0.020219035811916895 Nor:0.018149686277373633 He:0.017916611625689152 This:0.01697494557017632 she:0.015955738933714336 but:0.013622858569234546 They:0.012791241596967259 :0.277589037420161 +to:0.29730014070938765 and:0.10906892298713398 will:0.10665366937313804 would:0.0708099608720075 not:0.037216977257469135 could:0.027740994887021003 I:0.02678324382258496 can:0.024270505728570247 the:0.023997808936302982 shall:0.023627598768912034 may:0.022227328297424947 should:0.021571538683358246 we:0.02054370634393079 must:0.017638840385047237 they:0.015825836797294702 might:0.00933050160036538 never:0.008235076766956959 you:0.0075686339839454424 that:0.00648323194995612 :0.12210548184919261 +the:0.16907154159035348 a:0.1230609406072909 and:0.08054771189710144 of:0.07133955417910806 to:0.04545253772230528 The:0.02577385017251659 or:0.020857883824770336 an:0.02073784536901398 in:0.018260497655864308 that:0.018026856969974595 Mr.:0.01696546794047122 not:0.014924899629236502 with:0.012788869035544135 are:0.012533948058401257 tho:0.011998960353328035 will:0.011572116792567982 his:0.010779773166587429 is:0.010467006118754263 have:0.01003083244059178 :0.29380890647621843 +and:0.07558940021936399 recorded:0.030196237618668006 was:0.028917161578042846 made:0.027969746247669736 that:0.027730098932509103 o'clock:0.025060522019555328 up:0.023026552239529506 is:0.020398277211376416 found:0.02003101797656537 placed:0.017482208134164214 out:0.016937164562539058 place:0.016819459500107596 interest:0.016629321966808677 him:0.016002796715253755 situated:0.01573420479581609 it:0.015128305982428461 them:0.014715943643665314 part:0.014646613000297721 interested:0.014450471929902294 :0.5615344957257364 +the:0.8159139878560259 The:0.09522286314620865 tho:0.02626498504784604 his:0.00985622820194548 tbe:0.009642367618583144 a:0.0037517476078226743 its:0.003740400900105727 their:0.0035020074271076775 Tho:0.003280731790196372 this:0.0031639467033665446 my:0.002988998186528932 our:0.0025548866528627588 on:0.0023357518399530946 at:0.002130539679659423 of:0.0020999914685957827 His:0.001770186732167047 tlie:0.001590512812112451 and:0.0014011311235064446 Tbe:0.0011114681748194608 :0.006677267030586509 +of:0.24887037959563943 in:0.12550444458176677 to:0.0937691119183412 with:0.05902220563679932 for:0.04402069858434024 that:0.04162568956158026 by:0.039065671503875125 at:0.03416751398659735 In:0.027704374991141326 and:0.02674751894380238 from:0.026549273533659042 under:0.021689543462473575 on:0.014404076814965375 or:0.011538028079233782 upon:0.009399225301078232 as:0.0076151334529750555 do:0.007116638530536311 ol:0.006293680366192628 is:0.0060202772295257605 :0.14787651392547685 +:0.09247053065469911 .:0.037331501362656325 lots:0.013991091970874973 Mr.:0.012828983991305857 President:0.012201827944837658 it.:0.012196591996883485 and:0.010983880796177334 St.:0.010429004904800641 from:0.009690856609881957 county.:0.009055503596616535 them.:0.007217894317802361 city.:0.007185641534949856 D.:0.006915845228245411 of:0.006563761923389706 2.:0.006422704281838104 1.:0.006333256016939493 No.:0.006207138608489727 him.:0.006145258129334783 A.:0.005960896407885081 :0.7188678297223916 +of:0.28924687333547194 to:0.11999390259158395 in:0.09021482131335995 by:0.06075520308008212 and:0.047475034672871674 with:0.04661736723112947 for:0.04375119073293739 from:0.04143005149613506 that:0.029099836242455882 on:0.02377047091391445 In:0.02375000875460408 all:0.023265122001791125 at:0.019969646542562825 is:0.017498384674288044 upon:0.014524195384869827 through:0.010179790430296045 into:0.009286281278604418 as:0.009038245210935944 was:0.008281471124700361 :0.07085210298740546 +of:0.2020253362482586 that:0.1834240760577089 and:0.09965389159166543 if:0.04522810505314743 as:0.043323345917514064 to:0.037270786435200196 If:0.03649852603128132 all:0.03394665677462336 but:0.03323105296299184 for:0.02826961749899031 in:0.025455800868116076 But:0.019150242971733775 by:0.018937066718959165 which:0.01885434930353856 than:0.01624784728540569 do:0.014101226140402984 when:0.01182742465725783 All:0.010453485399392413 like:0.00967317768929925 :0.11142798439451276 +place:0.6634928965471072 point:0.033212045971715676 day:0.010783416216738572 power:0.009947795745620285 city:0.008729854009986215 out:0.008499822559538812 state:0.007544169377408887 and:0.004432470058523592 the:0.003564134925977697 that:0.003524325518698318 men:0.003493663925643644 case:0.0033799900871278347 feet:0.003261703474949184 act:0.003051952133293849 State:0.0030450384598420077 three:0.0026166193325954314 one:0.002610967069229292 mound:0.0025410217580428447 time:0.0024689747571908895 :0.21879913807076978 +the:0.33268763696895054 a:0.17564206220881678 dining:0.06907414976449502 this:0.038826050659797176 his:0.02376511160930115 and:0.01673380667913693 other:0.01594370016470574 tho:0.01568353409313965 of:0.015560694299737832 her:0.013583858630917697 The:0.012246315781516689 their:0.011099572937337206 same:0.009164353979460216 one:0.009045478728361407 tbe:0.008750741489940844 court:0.00835457607813296 that:0.008027084381859076 or:0.007836479634210443 to:0.007731309024009281 :0.19924348288617338 +and:0.06032833818185264 put:0.04626759383449924 work:0.03921638744840173 it:0.03854040856065956 out:0.03533262048746244 placed:0.030087437350619087 that:0.028628295437688522 him:0.02747694581134341 them:0.026518034583709153 up-:0.02472857702347445 made:0.024571538109792148 down:0.019473505936214244 interest:0.01787310640297392 was:0.017740902534535877 up:0.016579771826493003 depend:0.015853793941622004 go:0.015646066053158495 called:0.015503838313893882 carry:0.014367218932256854 :0.48426561922934935 +to:0.46653334030519344 will:0.09778464036590157 would:0.045951652414064466 and:0.04061886568141445 not:0.03171906720667231 can:0.023848986516476923 must:0.02365206462994743 shall:0.022924428972207336 should:0.02242159856046653 they:0.02063583231213865 could:0.019382358255361342 may:0.016038980033250234 you:0.015830236733114143 we:0.015152158266377653 I:0.01316880801332583 who:0.0093326929621742 or:0.007698915697398826 might:0.007470207797809563 cannot:0.007411442328208372 :0.09142372294849675 +the:0.1351656815161031 of:0.0703152223675276 and:0.06780062401859006 to:0.03884289335887342 a:0.02082443484575605 in:0.01929005086673472 was:0.017863653502860517 on:0.016637339569567203 he:0.01574146154334612 be:0.015237037467052834 that:0.014660807620341974 is:0.014135639332799595 will:0.012925275797029878 an:0.012391972912137963 his:0.011126569439224767 The:0.011040523842078475 Mr.:0.011006887446706104 with:0.010881672610646057 I:0.010371176897237952 :0.4727410750453856 +and:0.10925101585080288 of:0.09523212351273119 the:0.08405000501377789 to:0.03771370679314594 for:0.032238150486892596 a:0.03187300563203929 that:0.029744585089495536 which:0.028819132911761403 or:0.026381580167191054 be:0.01963163098872943 in:0.01884090270315227 as:0.017358310653269916 they:0.01729463018182581 was:0.016855793796917425 are:0.01650856001629639 :0.015791018099353606 who:0.015769157903558793 he:0.015215796993336674 The:0.014218483387887376 :0.3562124098178345 +at:0.30414799107823853 the:0.12418299026702237 of:0.03976406084692346 and:0.03687728736479458 to:0.028995630881983744 At:0.028861365144759524 a:0.019300998237457852 so:0.015903374979633608 that:0.013303832890489324 from:0.01212386319883815 by:0.01167550110957933 :0.010181716396852874 or:0.009847770105452257 in:0.009833614433556648 nt:0.00948446875387701 be:0.009144174261592919 The:0.008742128160630332 as:0.008223967538230776 is:0.008017320821464474 :0.29038794352862224 +and:0.08939268402247397 or:0.05687349754585604 appear:0.05429530567747306 days:0.05057368104141065 that:0.03798978317408274 time:0.036325234219019065 brought:0.025923216698042373 just:0.025188768122919702 long:0.024916162957727632 was:0.023270714274144625 day:0.022723575663473782 laid:0.022436232258905918 years:0.022142835676739015 but:0.021238383296727944 Just:0.018782325207086753 weeks:0.017852412038824067 up:0.017292151449600265 come:0.01635388708038715 made:0.015309192872048714 :0.40011995672305656 +and:0.08995317707915026 to:0.06844710404109794 of:0.04605142056172993 the:0.04074574508561307 which:0.02479116931334353 that:0.023764822140213245 re-:0.020841117231308055 in:0.020803825395358622 for:0.020278423301550053 :0.018417753428486977 not:0.016860793136637672 con-:0.016444405871234195 is:0.014386481772210856 or:0.014080680914153714 be-:0.01352268143271276 I:0.01317002660943805 was:0.011429878269381662 dis-:0.011196807025842847 he:0.01113106290024311 :0.5026826244902934 +of:0.4256419647482547 to:0.09021989558306975 for:0.04766234303751163 that:0.04072430382390645 in:0.03817858165636965 with:0.03624003675393662 by:0.033177372228703 all:0.03149992323195405 as:0.027778698217108124 and:0.026166624047712167 on:0.02443948351950694 upon:0.020773484475002844 from:0.014497907055448941 is:0.009022611710959498 which:0.008971131539426042 In:0.006696984014729664 make:0.00634835730791752 ot:0.0059567472832524285 over:0.00582610303403664 :0.09917744673119328 +the:0.6986841711628498 The:0.03121716950517603 tho:0.030551165091789446 in:0.030316570243238323 a:0.02413534613283169 and:0.023984686066824884 no:0.01842354933816535 to:0.013378323301826053 tbe:0.012441038430778232 make:0.010411494551651126 by:0.008762534472507865 of:0.00813716161504476 In:0.007860871467029832 for:0.0072570492657355835 full:0.007021170907183549 great:0.00662665132811062 or:0.006367855698424723 its:0.005805960874901406 their:0.005549625767744843 :0.04206760477818598 +the:0.1686254608388007 of:0.08510631124515454 Mr.:0.053063968456177904 The:0.05290176461656073 and:0.04281351925879434 that:0.03659363717531167 a:0.027376597759942865 this:0.016009104250207996 in:0.014329796242200724 :0.013577096541793277 .:0.012332809689052695 Mrs.:0.011483371514010961 tho:0.011366564416127033 to:0.010938551223696477 for:0.010273564804762044 which:0.009103350770352783 as:0.009022855831525262 his:0.008831867202298479 or:0.008219518012985871 :0.39703029015024366 +the:0.16807735899698817 of:0.10541662057906837 and:0.05138367848570702 a:0.04141865232648221 to:0.0385989743764065 in:0.026264864977736738 was:0.019530675665220657 his:0.018900421021236905 be:0.017373825006196972 their:0.015767721170721456 for:0.01557246589796783 with:0.014071419046630446 is:0.012922913111931644 at:0.012690452250034052 are:0.010702713108721902 .:0.010158075558988393 Mr.:0.009672788574483367 tho:0.009612591781990074 were:0.009549306361446321 :0.391314481702041 +the:0.3288759154768045 of:0.19037103108075706 and:0.11513424895188007 The:0.0495622180945405 to:0.03314818862282706 for:0.02149227793025031 an:0.021431049419184712 by:0.019713943098708744 their:0.019648857928035675 a:0.019452453767048194 his:0.01608494086900024 tho:0.01584425783887424 our:0.014099691671081422 in:0.013397616684040568 with:0.012564516265272737 most:0.012267983040586804 that:0.01156635647102126 its:0.010886997262932342 any:0.009421156221019961 :0.06403629930613358 +of:0.28767355066866834 to:0.08775711267569858 in:0.08678131196995101 and:0.05160598694501188 on:0.04646139928102899 by:0.04519522654900943 for:0.044547789071328545 with:0.03396756772609607 that:0.033699232901107726 from:0.03075346596941143 at:0.027039283056790858 In:0.021061449543044047 as:0.017514234937992545 all:0.012543839382496166 upon:0.011844431150487573 is:0.00998972746569266 was:0.008814315973987914 into:0.008557199930727406 through:0.007781895704231326 :0.1254109790972375 +of:0.06695954584706283 and:0.06649137032642373 to:0.06601061952379313 the:0.06171729943033423 in:0.05467960970092213 a:0.028607847520134077 was:0.025593805541454278 is:0.025575134465780882 for:0.02227513014141085 that:0.02203423644291701 In:0.016378139785638783 or:0.015262626560564149 at:0.014440266861137486 be:0.014337880734617895 which:0.013575436189030142 be-:0.013320788275858104 on:0.013254535972039225 are:0.0128330814609448 :0.011498114248276568 :0.4341545309716597 +I:0.3667985498845966 to:0.09121924946558983 not:0.07390837793093458 you:0.0719505384967599 we:0.052326271838177466 and:0.04584093377157047 1:0.04468205544137866 We:0.03434240951448708 they:0.022255949190772253 "I:0.020861845485849163 don't:0.020180731573239023 will:0.019376425682495934 would:0.017362193391310246 but:0.011145661197097397 who:0.010382094723299153 may:0.010274997814606108 could:0.010238246156157208 They:0.006529527787432584 can:0.006360076620370999 :0.06296386403387534 +be:0.12362853956580333 have:0.11526269784855153 he:0.08916703583500947 had:0.07162373862734818 and:0.07041705140185889 was:0.05150370515434867 has:0.05097866023025263 I:0.05032093080724675 is:0.03524218306077713 been:0.03383402637353943 are:0.02292293335117518 He:0.022567014187931795 they:0.019479782142247548 were:0.01917651482537902 who:0.016740625215951883 she:0.015844017543778253 so:0.01462623426801988 we:0.011878709977019668 one:0.011836247640859231 :0.15194935194290152 +men:0.01904342872177979 him:0.014807192932906506 time:0.012660088040326718 out:0.012172945494542294 up:0.011790493248904198 city:0.009207770922843384 them:0.009062165194712715 can:0.008849218321466975 in:0.008799965248593071 it:0.008233257646851646 made:0.007876222115349303 ;:0.007836729274626426 will:0.007715511648037694 him,:0.006945533173061073 to:0.006787876009423741 home:0.006620159121580338 :0.006521831690585616 man:0.006436679235976677 and:0.006093822781455381 :0.8215391091769765 +the:0.3740814978037227 a:0.12812500999243526 of:0.05496483771694943 on:0.04618120326601553 and:0.02814388807243245 in:0.025634539961161447 The:0.019708873356646926 for:0.018467024989323972 tho:0.01825059284376505 this:0.01602114578844693 said:0.013459256130751718 to:0.01268261390733192 an:0.012607371082923443 his:0.01008763514886468 any:0.009999445818639709 that:0.009715724943521022 which:0.009426165934906947 from:0.008563428827169593 tbe:0.00818577648031998 :0.1746939679346713 +the:0.1604650114647117 of:0.1117432467564371 and:0.05098773161827756 in:0.049259503884372106 a:0.04122209910502664 to:0.03230318726100877 as:0.019235339353111378 for:0.019101585849871983 that:0.0186583245433639 all:0.01325649888646551 with:0.012342819294663127 con-:0.010659689890307357 their:0.010254965719041121 or:0.010216149826653665 which:0.009898419727728114 In:0.009721798992242505 some:0.009648812466468674 The:0.009602279785785423 by:0.009300597985365847 :0.3911219375890975 +and:0.016894533576533508 it:0.012922517924062295 him:0.012770778435210545 him,:0.011237868309464952 time:0.0090421601931914 them:0.008727072573004592 men:0.008451714726506255 them,:0.008077405942555446 it,:0.007920631051923126 ;:0.0076840027033541515 up:0.007679581983502654 here:0.007027455869270897 man:0.005407987489343892 out:0.00516031338967684 time,:0.00493836331290485 now:0.004862983877496196 ,:0.004722645112886063 is:0.00453653106818544 her:0.004493522234808932 :0.846441930226118 +the:0.1454500361787387 of:0.1080247151493501 to:0.04516715868785427 boy.:0.036249098323069925 and:0.03403580073245388 girl.:0.032660326140049385 a:0.03171979252021135 in:0.02714044436566853 for:0.02365213940166824 be:0.021942286684630472 their:0.021087116084698817 his:0.019774122064073623 was:0.014637031197642503 with:0.014008395154201525 are:0.012730720509515858 is:0.011363112041341867 as:0.011357870543086747 from:0.01063391638067422 were:0.010589399829418696 :0.3667765180116513 +of:0.09129790931378902 the:0.07369883040827747 and:0.047842263382354346 in:0.04189055351593407 to:0.04045875475680249 a:0.03542341257202578 be:0.02020462051672066 for:0.01979292654746225 was:0.01760256398103379 at:0.017380150555488715 is:0.014984483003968216 with:0.014047653760730413 by:0.01374644383819499 :0.012670486581795598 In:0.01200961464556976 or:0.011563835749786333 from:0.011391516893522809 are:0.011273104484969465 that:0.010755276030689069 :0.4809655994608848 +it:0.022111154829173963 it,:0.014727111121726184 him:0.013907888225386238 up:0.0138262207034967 them,:0.011352609750727062 them:0.010474324805607147 ;:0.01020963007041491 and:0.009349318645385738 time:0.008724909069056272 in:0.007620959807195013 him,:0.007142930136970237 out:0.007058809959119192 good:0.006807270190840094 down:0.0059964959437555365 time,:0.005236325800615693 me:0.005134473099188934 me,:0.004775104948752604 long:0.004516313939617069 made:0.004335022245503304 :0.8256931267074681 +of:0.3911257159995634 in:0.13140515088118643 to:0.05658729795929934 In:0.04201833759604176 by:0.03779518628010539 that:0.03751685501549729 on:0.037145148321413766 from:0.03311984282117112 at:0.02884586180356419 with:0.024033979308402686 and:0.023077221844473618 for:0.019361673957808308 upon:0.010299642744264018 ot:0.008478263214121198 To:0.007231942154569363 That:0.005628177513660735 but:0.0055869511894174615 which:0.005540682924122977 ol:0.005481929474455009 :0.08872013899686196 +of:0.314370672445472 in:0.18855157476546056 to:0.059557769570826515 and:0.050578914604246517 from:0.0438090549817042 In:0.03273984589738242 on:0.031950430398585104 at:0.01665563389600567 for:0.013766947676879469 by:0.013643533074993646 all:0.011254825653795802 with:0.008683731962347405 upon:0.007081382243900665 that:0.006588700172833232 fact:0.0064865664766095826 into:0.006124653629190852 said:0.006058312373034165 the:0.0052825116284256094 over:0.005245397451685399 :0.17056954109662123 +and:0.07181562702745725 together:0.06672214896410926 connected:0.05460722541492519 connection:0.053485248068146786 accordance:0.040816432970329504 comply:0.022327715315442986 acquainted:0.01991331996883064 compared:0.01902004432375884 contact:0.016949822974841922 familiar:0.016791563233682194 up:0.016271038698657696 do:0.015355480362757417 interfere:0.014875808889703945 charged:0.014646284015101253 pleased:0.013610051164447858 him:0.01274062267734275 but:0.012200014478196207 satisfied:0.011962054640116513 it:0.011810815262474694 :0.4930786815496771 +the:0.18480055203740484 of:0.08602222001640492 and:0.05665556960937263 a:0.037681975647790744 in:0.030375610509928378 to:0.027395486752758647 .:0.022692221434353444 an:0.018454174601547503 The:0.015478232072415917 Mr.:0.014766271503746646 on:0.012748834145010301 tho:0.012683334442681791 :0.012477424470809219 his:0.01228564320347207 that:0.012095588605478073 by:0.011052278121990661 or:0.009341100208042371 Mrs.:0.008537708878885174 I:0.00841519290055184 :0.40504058083735484 +the:0.28165456231824987 a:0.2104657517436559 of:0.11749657933659072 and:0.07397532710298776 this:0.03961755369353924 his:0.02714813303853352 very:0.0268101826503935 most:0.020683274604204913 by:0.020578213466787544 tho:0.015081928536203175 The:0.013704210359262352 some:0.013153600804688654 for:0.012835037472244726 in:0.012330531694329069 that:0.012296883404936792 our:0.010436821474894626 or:0.010297149330247432 an:0.010196794451988607 with:0.010120856179642023 :0.0601166083366196 +the:0.4649082895536525 The:0.06968950880525619 this:0.06268486837765698 of:0.05738989620241447 said:0.031156448861887603 our:0.02335336194123927 such:0.022968112749874623 any:0.021444210118874846 his:0.020946697874269973 tho:0.018386663709297542 and:0.01494864312971594 their:0.014575181337935901 that:0.009787992318340303 other:0.009071217151022291 an:0.009045602600011426 a:0.008715372106983622 tbe:0.00808484113161916 Said:0.007750374480926591 its:0.007340140604559545 :0.11675257694446123 +that:0.22842389003732402 and:0.09995644221921705 which:0.08244748867892568 when:0.07842955960335522 but:0.05522414279533403 if:0.05161971908155436 as:0.04759053830394068 where:0.03584736422225084 what:0.02582350909677622 because:0.02257209046127591 whom:0.018316059040781592 If:0.01731674581655573 When:0.012964082399271685 though:0.012735061546798146 Then:0.01217545479171745 But:0.011428031572661318 time:0.011300202433566246 I:0.011173893958815295 while:0.01096038403441471 :0.15269533990546383 +of:0.28767355066866834 to:0.08775711267569858 in:0.08678131196995101 and:0.05160598694501188 on:0.04646139928102899 by:0.04519522654900943 for:0.044547789071328545 with:0.03396756772609607 that:0.033699232901107726 from:0.03075346596941143 at:0.027039283056790858 In:0.021061449543044047 as:0.017514234937992545 all:0.012543839382496166 upon:0.011844431150487573 is:0.00998972746569266 was:0.008814315973987914 into:0.008557199930727406 through:0.007781895704231326 :0.1254109790972375 +one:0.1028303141280697 part:0.05963429477052991 out:0.04766456937681193 some:0.031418679026461914 members:0.030764490253327767 side:0.029940657362655835 portion:0.022063658796890564 office:0.020457735219956013 member:0.019726706386316174 end:0.019666887540649894 tion:0.018667441728710307 parts:0.016814747270460957 people:0.014112771422418794 all:0.014072739582212475 any:0.013183573287639892 One:0.013083578354183906 that:0.013024335602903442 account:0.012482348155001894 many:0.012077825070275192 :0.48731264666452345 +of:0.32605167990757866 to:0.07351495279759851 in:0.057767019551215736 with:0.045600473037833045 and:0.04520466681706089 by:0.043827364173738 for:0.04158801169875189 that:0.03984216232093158 at:0.030828427061721248 on:0.026243624660237105 as:0.02200266709334605 from:0.02174078632527377 is:0.021255638497410627 was:0.015846083180933418 all:0.015587528736620594 In:0.014480033917640304 when:0.009789765423108217 be:0.0092967782276503 but:0.008566050956500875 :0.12996628561484921 +of:0.337148820747753 in:0.0848240086428609 to:0.07585911866415743 on:0.06640904508840634 by:0.06037559647376218 and:0.04143444116327032 that:0.03981811883883977 from:0.03347440985492231 with:0.028006982077540064 for:0.020155420400963086 as:0.019924630425314616 at:0.017910461858942735 In:0.01646883081256225 upon:0.01415973817178129 when:0.009618633373292346 before:0.00918795036785595 which:0.008929942886913473 into:0.00852870161894846 through:0.006797622858761971 :0.0999675256731515 +of:0.20465403562037177 the:0.059071656050476734 and:0.04032523081282011 in:0.029780216651784132 with:0.023119990409724418 it:0.02201016122887565 a:0.016276037742945167 for:0.015636897746628325 ar-:0.013962391320084588 to:0.013240827765454287 as:0.01246433282228847 :0.011978614625288235 by:0.011316394035633713 It:0.009554019929438967 more:0.006898132150825462 which:0.006567756362295098 that:0.006381132003874833 all:0.005872357797939235 from:0.005089782564748238 :0.4848000323585026 +the:0.6199942820455786 The:0.07139812016586343 and:0.054189142717449235 tho:0.043996941043373476 a:0.028707688601396008 other:0.020492701450445776 tbe:0.017014932752128654 of:0.00992759656201038 an:0.006790459607879362 large:0.006080758405745122 his:0.006033135080441748 two:0.005967734210408985 that:0.005091538550971741 said:0.004905132944380996 their:0.004703694494875712 any:0.00445925671424049 Tho:0.004277387214518847 our:0.004244859188214366 different:0.0041597379030436895 :0.0765649003470334 +of:0.20319074068124524 to:0.11246231047028186 in:0.1043866672585759 and:0.07472676951995488 with:0.07252857772830953 that:0.050375147190379034 on:0.035528492635550406 from:0.031784187758253216 all:0.026895407618359603 In:0.025474748764383676 at:0.024112233191049787 for:0.023471305934115345 as:0.02227782927558418 by:0.018637452740473518 under:0.015956724838009567 but:0.015605367380844178 up:0.01296628249945798 is:0.012722405792291757 upon:0.012498850783144924 :0.10339849793973542 +it:0.030768376067647017 and:0.025199981462646417 there:0.019862406788793956 them:0.015482147335590985 day:0.0145911039384317 him:0.014541542174806753 made:0.012521774345719718 year:0.011197664505961151 :0.011191077337748458 well:0.01069912456591675 time:0.01056018648384973 out:0.010200573864124193 up:0.010125358049574963 It:0.010118055714280216 me:0.009901978399766125 way:0.009426164336806623 that:0.00897954004821128 :0.008884248681645944 all:0.008009916322692654 :0.7467387795757854 +a:0.32472897691394786 so:0.12387030756389707 the:0.10153407593638254 very:0.056689463924943014 his:0.031898630547823006 not:0.03029042053086456 and:0.028741097522431567 as:0.023898290420872468 have:0.019307917604411105 had:0.0188043019156752 too:0.01833984943705222 her:0.01816332744497957 with:0.016210753558300567 was:0.016142198981488807 how:0.015825689210295393 has:0.014373940862721047 in:0.01332743884015617 to:0.012868548491644635 be:0.011855510885466797 :0.10212925940664641 +of:0.25987611006255046 the:0.23848873712473995 a:0.07194054377533582 and:0.03495190708158888 their:0.033122204142523315 in:0.03216236406948743 his:0.02965180137271341 to:0.020515089704247213 great:0.018161806954394764 its:0.0169454676849533 The:0.016836932569145147 for:0.016608208716070532 by:0.014522349334171694 tho:0.013917556261565805 such:0.013683734168817005 this:0.013677321161593679 an:0.013556018914644882 as:0.013506304706120562 with:0.013060903469754824 :0.11381463872558124 +the:0.11919516938815296 of:0.07230453158552728 and:0.05781056740443249 a:0.043018564803886335 to:0.031305092790907506 in:0.020848713353460488 at:0.014270110001066288 .:0.012526810245749479 :0.012413283442322082 for:0.011719122709941797 by:0.010808400946589808 or:0.010404172990115616 The:0.01003576004804544 with:0.009811868184449042 tho:0.009295902015355835 was:0.008924239095331684 that:0.008672304223433876 is:0.0085591147338948 be:0.008335143826716943 :0.5187411282106204 +is:0.1682686323033664 was:0.161332426406741 be:0.12815596445440533 as:0.12317561540402484 are:0.05414594155238245 were:0.047355162806047735 and:0.04319346033563268 been:0.037115017379724335 Is:0.031018514535055688 he:0.019929072000751065 being:0.019896099883044294 it:0.011250906671771156 has:0.010785719003704855 have:0.01008210892545734 also:0.009191875607611491 now:0.009106124400568684 had:0.006986975944613927 that:0.005910001575155578 bo:0.005556146260479348 :0.09654423454946179 +and:0.10535141632535794 place:0.04946874253849378 was:0.029162054125973183 held:0.025320116323921837 not:0.02296124393286386 arrived:0.022520081089312242 that:0.022497680478830096 them:0.020633393933053048 are:0.020594213915984386 out:0.02025599488831313 be:0.019493846309705614 sold:0.019143376466821564 is:0.01885785956306911 Beginning:0.018703484914907285 or:0.017450589011326092 him:0.016388949589870087 look:0.016219413916075252 were:0.01598120076779452 her:0.015230739240983893 :0.5027656026673432 +:0.08885190521073721 .:0.023307538926399196 it.:0.020252304207042247 them.:0.012185892366844406 Clerk.:0.009960178919323612 him.:0.008690289374471766 thereof.:0.007834380901981249 and:0.007013323023443408 time.:0.006753117529970305 law.:0.00627282585830471 day.:0.006061421043483965 year.:0.005982499465037036 country.:0.005911321209339952 people.:0.005318639039104934 work.:0.005052740680184533 home.:0.004861956860052028 life.:0.004800009252311741 days.:0.004772405522212245 State.:0.004701087765668164 :0.7604161628440872 +the:0.2582241601305599 a:0.22904465076791145 of:0.1071068026457113 in:0.07755718951098121 and:0.03567345965488221 very:0.03151804935508884 to:0.0311131617254017 for:0.02376660322737684 The:0.023279293038485357 In:0.021394267257624992 with:0.02088239784106112 tho:0.02027356184244243 as:0.014821355431707916 is:0.013342145915567016 most:0.012448577189188447 entirely:0.012048222510920224 at:0.012021252138876073 an:0.011551671438999357 by:0.010388392103195384 :0.03254478627401827 +from:0.23815581315935286 and:0.11313605590552997 of:0.11292567729852769 at:0.06375307764708663 in:0.04154399000413096 with:0.027953163243060374 for:0.024036418745114245 by:0.023126555782027783 to:0.02289943001479028 lots:0.018424425527381477 do:0.015836087648437493 a:0.012311955032012014 about:0.012230830312837681 In:0.012144198875008939 that:0.010200852603645425 went:0.009654690982707012 lot:0.009055511608158961 thence:0.008952836403613842 .:0.008352175106811303 :0.21430625409976506 +the:0.20107478871130544 of:0.1049339667900453 other:0.04507461324963603 all:0.0393762712341585 an:0.03661822907014595 a:0.029987002686172874 their:0.02674577803769948 good:0.025736099182392384 this:0.025568295573435033 and:0.023943183329412 in:0.019475650532914234 two:0.019398107786225197 new:0.019318492935260032 his:0.01929381071982417 tho:0.018213766656806754 with:0.017188077342459408 The:0.016498842506441902 these:0.016370823299586286 for:0.014999055733715513 :0.27918514462236355 +and:0.021186013491923682 the:0.014146243872620432 persons:0.01236101470834282 feet:0.011634241374285422 a:0.011547269803354031 line:0.010578312809947879 lot:0.010501473080480016 :0.010255614581298436 which:0.008802575535687113 miles:0.007438735417440684 to:0.007362525335116551 that:0.007250394995022697 :0.006875549943107935 State:0.00667697951718248 it:0.006602167566069832 of:0.00631137796735017 tract:0.005512123623974913 he:0.005090695530058849 county:0.0050233086427229475 :0.8238433822040131 +:0.12635259123219533 it.:0.024623560366433265 them.:0.011080992996605725 ::0.009623445849530841 .:0.009154059955495527 country.:0.008644807731672045 people.:0.007236217349704606 time.:0.007152754873395536 year.:0.007038917427543236 day.:0.007026778000219323 him.:0.006772002359197775 years.:0.006600868162138595 tion.:0.005921271909145563 and:0.005343845625933744 life.:0.004995938115261823 world.:0.004807500596527271 law.:0.004795581257361855 us.:0.004529241876089147 war.:0.004479527652584841 :0.732820096662964 +the:0.16807735899698817 of:0.10541662057906837 and:0.05138367848570702 a:0.04141865232648221 to:0.0385989743764065 in:0.026264864977736738 was:0.019530675665220657 his:0.018900421021236905 be:0.017373825006196972 their:0.015767721170721456 for:0.01557246589796783 with:0.014071419046630446 is:0.012922913111931644 at:0.012690452250034052 are:0.010702713108721902 .:0.010158075558988393 Mr.:0.009672788574483367 tho:0.009612591781990074 were:0.009549306361446321 :0.391314481702041 +the:0.4071374189315913 and:0.06449181461132415 of:0.02892866618288876 in:0.028670005984162618 The:0.02603617389223924 tho:0.024993820467459137 a:0.023579040051412606 to:0.01755553213771617 on:0.014626070241060114 by:0.013447843485786471 or:0.012794166593089693 tbe:0.012024509152999897 :0.010353482361299817 that:0.009291482237329618 In:0.007938246807075932 from:0.007526799010378873 other:0.007469196869028889 all:0.006409533041696086 for:0.00626887758057738 :0.26945732036088327 +line:0.0462668202680728 State:0.03284779777989354 number:0.03191569980371631 name:0.029184006400467533 estate:0.019541175398022328 corner:0.01856563753629764 city:0.018565490027804034 daughter:0.01851610609629203 state:0.017645930273583278 county:0.01743624968156174 son:0.017192553357750884 people:0.01582030506066789 side:0.014966184444832591 part:0.01496354977923847 County:0.014843873953065261 favor:0.014403167743669712 deed:0.014007865468097585 sum:0.013760339386730526 case:0.013535509126087945 :0.6150217384141479 +be:0.3576880751739134 is:0.08639250619951837 was:0.08280882740805251 and:0.06808645918828213 been:0.06068874674289123 have:0.03416355906439452 are:0.032557143352556356 not:0.03237169362434667 had:0.03036694905714997 he:0.029063059372075137 has:0.02362176271605218 were:0.021237995233846525 bo:0.014340798881061906 or:0.012619511166778204 being:0.010770652478861201 Is:0.009755862976209204 it:0.009027452025071067 never:0.008411949098267115 ever:0.007197684411905572 :0.0678293118287668 +of:0.2140776182141921 the:0.2076120258922307 a:0.06530837419787955 in:0.05736371113001566 to:0.04293756808833821 and:0.03334792143510708 from:0.022418384268409596 The:0.022303749970955154 for:0.02210570640336919 that:0.020473725578267526 as:0.020259743841653383 by:0.018193185401637068 on:0.01678282162346506 an:0.01629496642971838 with:0.014927255385754571 In:0.012456284399542952 tho:0.012041641223115105 or:0.010851517898826738 upon:0.009864677494949537 :0.1593791211225724 +;:0.01458927046758731 it,:0.007973265891266864 him:0.007834970369143835 one:0.007240974664279108 in:0.006989508095588829 and:0.006417396987522371 ,:0.006059091806132192 it:0.006014614548599763 up:0.005812344146302806 out:0.005395853159197619 them,:0.005290532062834904 him,:0.004938420268273817 city:0.004793760033506698 :0.004646491011450349 man:0.004641061555670736 country:0.0046164671969483135 feet:0.0044416267197611185 time,:0.004376787347733258 time:0.004358244018157902 :0.8825693196500423 +the:0.11919516938815296 of:0.07230453158552728 and:0.05781056740443249 a:0.043018564803886335 to:0.031305092790907506 in:0.020848713353460488 at:0.014270110001066288 .:0.012526810245749479 :0.012413283442322082 for:0.011719122709941797 by:0.010808400946589808 or:0.010404172990115616 The:0.01003576004804544 with:0.009811868184449042 tho:0.009295902015355835 was:0.008924239095331684 that:0.008672304223433876 is:0.0085591147338948 be:0.008335143826716943 :0.5187411282106204 +of:0.09043409053013649 the:0.08458268447909405 and:0.06941169710674647 to:0.06842685376506503 a:0.03502196399400508 be:0.027631492661475 was:0.02262770347407094 or:0.020899547147549786 is:0.018061672947865565 are:0.017763045964156114 his:0.017114589037761113 for:0.016727962397261282 re-:0.0162769353827767 their:0.01514882567544624 been:0.013878331263912594 were:0.013374436412516415 that:0.01319950985941409 at:0.012567281873590285 :0.012294075404375895 :0.41355730062278084 +thousands:0.3284902097926264 millions:0.30157356025656745 number:0.08062663133021751 hundreds:0.07467411110104502 sum:0.030831881768605313 couple:0.020595891904510936 billions:0.01701207895518943 sands:0.010617059739423234 Millions:0.009630094664462727 Thousands:0.007851763700179008 lions:0.006694202151188266 rate:0.006591778336105107 million:0.005829397932664772 dreds:0.005617294416167109 amount:0.004893845601996297 day:0.004267926451367286 pounds:0.0033541435362825006 all:0.003325024842350855 score:0.003078675439486071 :0.07344442807956472 +made:0.10345323395630536 and:0.090438406499593 or:0.05297446713440619 caused:0.02987511502561879 that:0.02955566174843316 it:0.024549189265325243 accompanied:0.020102239314978235 was:0.02006437342835698 surrounded:0.01892011456570411 followed:0.018599165879737957 done:0.01795549373694524 only:0.01646436850830763 but:0.016434074155704276 ed:0.01642917436393071 secured:0.015720860026929115 him:0.015545060482789533 is:0.015330629545152952 used:0.014978537464968123 them:0.013812797849447691 :0.44779703704736573 +to:0.3533156863088473 will:0.1612186891188678 may:0.09312675790963568 shall:0.057871755561609506 should:0.05192635740097134 would:0.046239134978051814 can:0.03846186426583521 must:0.03717590546106803 not:0.029389027010654902 could:0.02284776002079362 cannot:0.016183890170513585 might:0.01281275569501591 and:0.00831398492079941 it:0.007560140018395601 that:0.0041248485927801275 which:0.003334466839152677 also:0.003122150756534371 never:0.003009813588208109 soon:0.002478902532987578 :0.04648610884927745 +went:0.06527228071368989 go:0.05619934446464802 came:0.040550395705713206 back:0.03555337887687652 it:0.035376220595961315 out:0.03490526632483226 put:0.03355619440406013 down:0.03042882513856963 come:0.028160683632563837 them:0.027165266356164442 enter:0.02685927818294859 up:0.02683395703545789 brought:0.02610450155923051 way:0.025650479473236742 taken:0.024297963337896748 get:0.02381342012574062 entered:0.02315017182132224 thrown:0.022312163284405207 going:0.021115908751936613 :0.3916943002147456 +or:0.18869900275303733 and:0.08879727747242398 not:0.08752669643650104 be:0.07505020537350057 was:0.05546697580344913 the:0.05104896481933855 is:0.04575452431618444 are:0.044637370709190514 with:0.035911034750902994 of:0.030877194270525522 been:0.02739232557921732 were:0.026396395758856658 a:0.025151603169886114 no:0.018910776399961037 much:0.015215516164356369 un-:0.01352598856238801 for:0.01249576191617637 doubt-:0.012203140440523974 by:0.010086747681989465 :0.13385249762159063 +the:0.16534385962490009 and:0.08651203637644914 of:0.07502012709428355 a:0.046409281374666815 be:0.03670625762210698 to:0.03597583239980263 in:0.03138238918910863 was:0.024245158753101362 his:0.02070245818907859 is:0.01879599505382262 that:0.01756245224660682 or:0.014363155102307849 been:0.013310034433693368 this:0.012977828929505178 her:0.012507850394729991 In:0.01205915124879915 an:0.011745963830472134 as:0.011381560132460703 Mr.:0.011337933630024121 :0.3406606743740803 +hundred:0.02334136986593815 up:0.005482494641173394 men:0.005366536521246011 Hundred:0.0047587970519216575 John:0.00441808156134956 William:0.004390720675819281 him:0.004016828614280843 ;:0.003997112205305733 due:0.003721199871732 in:0.0036582900032443304 time:0.003637206863828461 James:0.0035594902370151707 out:0.0034878448964120057 .:0.003467980723571515 1:0.0032804584819785204 day:0.0032444781513863933 ,:0.003058139385740603 :0.0030314555521939613 Robert:0.003005471634785646 :0.9060760430610768 +that:0.2509585090048969 which:0.08881182984551328 if:0.07027316497290699 as:0.06508561456668735 and:0.06190291589470667 when:0.051836060131931753 where:0.04375732552357888 but:0.037022140598042375 whom:0.03430965416588371 what:0.02794002417347712 If:0.02203686351252106 because:0.018183318005097784 after:0.017855748076847498 time:0.01595589337890137 before:0.014861264015734078 though:0.014569815726977688 until:0.013683724452392987 When:0.012489711680144636 said:0.011723784677230006 :0.12574263759652785 +W:0.07892631551588039 M:0.0649850702455623 J:0.06391667000631429 C:0.05905432254903491 S:0.054856972986157694 E:0.05424348669664422 A:0.0514021035998739 H:0.049828895999379015 B:0.046817024292917286 P:0.04169510535418999 L:0.03908899165768591 F:0.03868396050835962 D:0.03284277583604958 T:0.02839631999315026 R:0.022484651061807727 K:0.02066410658290062 .:0.02003194872932241 G:0.015174321886982735 N:0.014851087760055299 :0.20105586873773182 +one:0.10757504863160208 out:0.06393072214258595 part:0.05345953864888265 some:0.04657778396619151 time:0.032653763285528395 account:0.0298978741893603 all:0.02673860913095395 and:0.02324876597992745 that:0.02275453097379819 because:0.021318504223257338 portion:0.02010071224985526 side:0.01926992014112468 any:0.018918137101655273 front:0.016609963575485047 many:0.016563310866764772 end:0.01592265492673931 day:0.015255366376758018 members:0.014811614297040794 result:0.014486922106154784 :0.41890625718633423 +and:0.1561495646620899 fact:0.07104142741953114 said:0.05502622694526545 so:0.051742213337490905 believe:0.0424446872072745 say:0.03968909560568433 know:0.03770642934695025 stated:0.023419618132197714 show:0.021588200983565207 is:0.021195860084741953 says:0.01997723024682379 him:0.018703780856197984 was:0.018159091363922072 saying:0.01741646766769218 thought:0.017365290153584984 found:0.017264611551157195 me:0.0167514964147511 think:0.01566737004011478 knew:0.01391632827400774 :0.3237750097069569 +of:0.15934504492382492 :0.11923104209729353 the:0.09282062507279248 to:0.08826652477843719 in:0.036034458456401394 and:0.03092161162087471 said:0.025780309898603308 for:0.023279804718930673 by:0.018595497303534075 that:0.013059304350728034 at:0.012197794927154592 .:0.012061680815695334 a:0.010654376782096332 In:0.010341059087094817 The:0.010127528942581293 from:0.00993779019964046 follows::0.007783558327984782 with:0.005566676537320541 :0.005091252338621772 :0.3079040588203898 +and:0.08503425215113287 together:0.05335287900593926 covered:0.03253077787715905 him:0.028699283380466227 up:0.02694908563101517 it:0.020075958598700875 met:0.019295061035032795 them:0.018700319853085637 but:0.01578533889291739 thence:0.01248413508838869 filled:0.012418217423982135 out:0.012348631427551895 away:0.012156361159124838 do:0.012018718033405752 down:0.011784916836511368 man:0.011218165866290394 along:0.010245892575704265 connected:0.010128653854803403 ed:0.009471429225277377 :0.5843019220835106 +and:0.07862566760588272 that:0.03221971479025995 of:0.029970148409059746 or:0.016223682973739457 it:0.014437558155976101 the:0.012622897336402464 him:0.01249051096587875 :0.012284478314840275 for:0.012012834709971033 but:0.01190895103282333 them:0.010392070280324196 which:0.010390162373209045 who:0.010184700628734005 to:0.009487568422775832 :0.008544155652309862 as:0.007383357384067841 he:0.00723813394297535 not:0.0070123094202919145 by:0.006526499244734753 :0.6890445983557433 +an:0.480120370331662 the:0.1553724555111993 proposed:0.04039194344894879 this:0.037606075186228174 said:0.02434221063197753 An:0.022137789789679948 from:0.018354439194115547 a:0.0162449994455651 and:0.014335403338917235 of:0.01425854743300842 constitutional:0.013847058608130796 his:0.009790650309803974 their:0.009604091973423401 tho:0.009243773861525688 any:0.008808821120448307 our:0.007616352507798826 in:0.007430832873762844 sufficient:0.007310247935296316 by:0.006399568848096351 :0.09578436765041146 +the:0.11500545585881412 of:0.0897605566703555 and:0.07914879987306167 a:0.05827037833039227 to:0.0386987683614473 was:0.029282661483795363 be:0.023890810389268442 is:0.02056818843792312 been:0.017204803150083207 or:0.017094944717067368 in:0.01610392931760865 are:0.015798243080240505 his:0.01344187865263006 at:0.01321973597799718 for:0.01304287912725108 their:0.012337012043366955 were:0.012236169772424844 :0.01133284696603621 The:0.01095822742659897 :0.3916037103636372 +the:0.16807735899698817 of:0.10541662057906837 and:0.05138367848570702 a:0.04141865232648221 to:0.0385989743764065 in:0.026264864977736738 was:0.019530675665220657 his:0.018900421021236905 be:0.017373825006196972 their:0.015767721170721456 for:0.01557246589796783 with:0.014071419046630446 is:0.012922913111931644 at:0.012690452250034052 are:0.010702713108721902 .:0.010158075558988393 Mr.:0.009672788574483367 tho:0.009612591781990074 were:0.009549306361446321 :0.391314481702041 +and:0.03868242960999506 as:0.031124813427855922 went:0.02352509775927722 him:0.02196555539050794 them:0.018760608639018784 up:0.017985449426794205 is:0.017894175620344187 go:0.017174904667157563 able:0.016756848979943888 going:0.014481672239490295 it:0.014128375989346808 was:0.013277058274565138 time:0.013249953793837373 not:0.012469887553778763 began:0.012465717758716884 way:0.012105610030480113 back:0.012090864562211581 right:0.011941707822828511 amounted:0.011564315359310868 :0.667354953094539 +virtue:0.062060494787377685 out:0.05417899169104244 part:0.03289673107629515 one:0.02969369892462812 quarter:0.027015883171169475 favor:0.01993830018372674 result:0.019463829004704194 guilty:0.018891084377354095 means:0.018499162894926688 end:0.018170939082736048 that:0.018121271122199262 construction:0.01726217741616459 presence:0.017003995482744873 tion:0.01673652166540914 case:0.01640819963257697 side:0.016055927605250184 erection:0.015381239457214257 account:0.015287601389485416 hands:0.015156055434805247 :0.5507778956001894 +:0.06488306779265021 and:0.03845398860230994 was:0.016531892083347623 that:0.01645661979827041 made:0.014835584343731329 it.:0.013858355094845232 file:0.01369338775137818 is:0.010893468326704507 be:0.009349842007826329 but:0.009306189534974519 out:0.008726495817348929 them.:0.007890057836913572 appear:0.007819639354883846 up:0.0076245934578581375 not:0.007543220421766879 .:0.007305364709894093 done:0.007010255498311849 him:0.006970658317107817 part:0.0068746580392174865 :0.7229726612106592 +and:0.09951218603268397 It:0.09336587694978393 it:0.08886911308397653 he:0.0806693391321596 I:0.0688017152204751 which:0.03796209472578699 He:0.03305762780066006 who:0.03190528368100175 1:0.02810647925102544 be:0.022970439667266543 that:0.021861356767231676 she:0.02062887087394015 :0.016247824315825526 as:0.016039996373761082 was:0.013167105515741356 there:0.013070562159344797 have:0.011951952997126702 is:0.011299310091477322 lie:0.01115119480074977 :0.27836167055998173 +of:0.09129790931378902 the:0.07369883040827747 and:0.047842263382354346 in:0.04189055351593407 to:0.04045875475680249 a:0.03542341257202578 be:0.02020462051672066 for:0.01979292654746225 was:0.01760256398103379 at:0.017380150555488715 is:0.014984483003968216 with:0.014047653760730413 by:0.01374644383819499 :0.012670486581795598 In:0.01200961464556976 or:0.011563835749786333 from:0.011391516893522809 are:0.011273104484969465 that:0.010755276030689069 :0.4809655994608848 +day:0.052353260701327085 State:0.03187012975621245 side:0.016926904982265897 corner:0.013051295945133684 county:0.0112908526268676 state:0.010483236476411575 line:0.01010529585371873 part:0.009813808149647617 House:0.009782429495591034 city:0.008998427162570693 quarter:0.007558457755050478 Bank:0.007318160717526284 District:0.006423273717719697 County:0.006394144373167395 and:0.006166054165299129 date:0.005897866476393696 Court:0.005753602371152653 Board:0.005528219592643998 act:0.005036423012498061 :0.7682481566688022 +the:0.7043799583050484 The:0.046613610399292654 a:0.03572014712378112 tho:0.031194431699772734 his:0.02567499748429315 their:0.02375011257399818 its:0.019750086083609186 our:0.015545441314347189 and:0.015395855961073426 of:0.010985651065873101 tbe:0.009794289675602124 very:0.007740265509070768 my:0.006521237361255703 her:0.006081992453846812 with:0.005412325663869752 your:0.004649690552824855 this:0.0035699538207437233 an:0.003171478617192848 Its:0.0023188011732636613 :0.020729673161240574 +and:0.12756167162083162 looked:0.035681500148282044 look:0.03183121880431562 down:0.030641563434472024 called:0.03000298112297169 imposed:0.02959982405014519 bestowed:0.02799800468944728 that:0.02608151084746318 conferred:0.02558679392426599 put:0.022370769118145124 made:0.02176259930691991 out:0.021582558437445713 depend:0.021482457110341947 placed:0.02140406799066276 forced:0.021089481565837738 one:0.02105867752879779 it:0.020331700682218314 dependent:0.019849725214464445 call:0.018935601656482056 :0.4241472927464896 +was:0.1616550586951719 is:0.13994438558174868 are:0.05354803821881683 and:0.05297594928841876 be:0.044442571579085675 had:0.04403483900865972 were:0.03783661601705137 been:0.032056629251497805 has:0.029122329515170176 Is:0.02443852150264503 have:0.023594398338860924 it:0.020184254339167172 that:0.01652582786906441 the:0.014433084986372352 do:0.01321147849453939 of:0.011735929184339319 as:0.011725161664879986 being:0.011408405860747874 a:0.010566728460184657 :0.24555979214357795 +and:0.10402992543013229 that:0.05019092486459068 as:0.042727286857862486 which:0.02533234897998449 the:0.02508012675128413 of:0.022857658890955417 but:0.02193945521435193 :0.021424796317566188 when:0.019315947107283828 an:0.012160285773421877 what:0.011117510159342807 to:0.009847883387652535 for:0.00930937210305684 .:0.009110448322906767 a:0.008401418459977729 time:0.008210823708437065 on:0.008144468143099519 so:0.007721425325186425 said:0.007692928980800737 :0.5743849652221062 +to:0.18873652218535955 told:0.09713314836839264 of:0.09228300598527381 with:0.07847074351504518 tell:0.0645997575266659 tells:0.06224205855278771 for:0.05879173023880071 upon:0.040127277674521865 by:0.034048137953629556 from:0.03150117318749118 among:0.028152497288999934 informs:0.020979910828985062 and:0.01963963767701765 informed:0.01951879745168324 assure:0.017473374394843387 against:0.015493699993382492 on:0.012981391821855372 in:0.012165228737867313 at:0.011568383500086345 :0.0930935231173111 +of:0.23688297991167712 to:0.08544137439647968 with:0.06831021025426992 and:0.06663029439293067 is:0.06132895290239589 in:0.05833124983479274 that:0.04356047760260393 by:0.04086631639624703 for:0.040657496436844624 was:0.026292763717021318 be:0.02198853247523512 as:0.01960183577437275 from:0.019081800932843593 on:0.018371348738530472 all:0.01753741543311244 make:0.015144175723713453 have:0.01455190543576532 under:0.013789973672113265 are:0.01309719629325165 :0.117533699675799 +and:0.10718890218719852 time:0.025932349186452968 week:0.02308199327781494 up:0.015104823887068743 one:0.013266634654567861 that:0.013239672587009928 demand:0.012251817905341654 but:0.01193701087084573 day:0.011572584017130141 here:0.011196280356978791 out:0.009698208223223013 him:0.00948304020437843 them:0.009364687940221016 vote:0.00927277892649565 sent:0.009106245347581279 ready:0.009072958190084303 made:0.009019186340858623 used:0.008841433621534257 work:0.008793967453261619 :0.6715754248219525 +of:0.1566822755556362 in:0.1342171888363991 without:0.06902545126320193 to:0.06471946132973358 have:0.05295078558231103 make:0.049922077460848285 by:0.04731306253251539 for:0.03937561064700403 or:0.03729265578062707 at:0.03483544266923924 that:0.029037408241092185 with:0.0289810851511115 In:0.02584776010383028 had:0.024905591494865025 from:0.02394522771662585 has:0.020145366859516116 than:0.01942800500570359 is:0.019202294142760853 as:0.018689693279194453 :0.10248355634778428 +in:0.01867429167207336 up:0.016477959004942547 ;:0.010671125660107863 him,:0.009680839147087278 him:0.007812207401982878 it,:0.007744970173981971 them,:0.006337892614935437 up,:0.006043934700795907 ,:0.0058006284222871865 years,:0.0052901419573475154 back:0.005269708317846875 men:0.005143567863504991 them:0.004988988634339788 out:0.004948979284423982 :0.004700790157141978 time,:0.004675520316575468 thereof,:0.004626808059380288 it:0.004514204380998278 year,:0.004251281575330404 :0.861346160654916 +of:0.10070608769283206 the:0.08977315241786614 and:0.056723264834917186 to:0.04665389949129709 in:0.040702218588531215 be:0.028966766240175745 a:0.025809764402780558 or:0.025209261706257667 for:0.023877496899798914 is:0.019609443010413858 was:0.01894846311596395 at:0.018731083315582608 as:0.01668374607202523 an:0.015525437030901859 with:0.013288768728182836 that:0.012270422612041665 been:0.011540797021331727 his:0.011449385733140584 are:0.01126409134308181 :0.41126644974287735 +to:0.09864282010030183 the:0.08375297126946753 of:0.07074571151673052 and:0.06779046829403 a:0.02766650927741597 in:0.021670314456411932 at:0.021392828982420006 for:0.01627599403114278 is:0.015107338441904122 he:0.014818877918256685 was:0.013808540905081488 by:0.013132601340090633 it:0.012796195965848819 I:0.012723560421513859 :0.0121914922721236 not:0.011777366450725432 .:0.011011346691779235 that:0.01092359583028988 with:0.01073896800850032 :0.4520324978259654 +of:0.05188752415437746 :0.046779348508952545 and:0.03266335413905939 ::0.031039194789757557 in:0.02579063691148461 the:0.02523060344328556 to:0.018028535527350065 .:0.016845295186360805 as:0.016666897625899547 it:0.015449932373540634 says::0.014280038050018089 that:0.013608094475037566 by:0.01165496005293522 said::0.011444852140335587 it.:0.010153594329597143 -:0.00986869575972293 It:0.007680864020669092 follows::0.006769123739229537 for:0.006676942198168354 :0.6264815125742184 +of:0.1361468949751477 and:0.08176997777018039 in:0.07712824552700816 with:0.07182235853333621 as:0.0705613614973991 to:0.06734047255061232 for:0.0487267660004015 is:0.04330507280199937 by:0.041620214982113685 that:0.038471311047122744 on:0.03630399974945381 was:0.03338311262104651 or:0.02406007739598961 be:0.021006333609790307 such:0.020674214546391154 In:0.019056926268488435 from:0.016175592508731376 upon:0.013269126874470964 had:0.012429668245165419 :0.12574827249515125 +the:0.15928366763609958 of:0.11434925078179692 a:0.04905626637875429 at:0.04904527465498327 and:0.047630300246179064 to:0.033258279511597696 in:0.026765478439480756 .:0.02115813828047521 :0.01538300435885155 for:0.014852454405735955 his:0.01378823340481507 by:0.012983820336185668 on:0.011120380276170625 with:0.010774896096693009 said:0.010636271625916625 The:0.010494302357576072 this:0.010394290565923184 from:0.009872423019568782 tho:0.00894644746446666 :0.3692068201587301 +and:0.09787071543084067 that:0.03991205090281645 made:0.031221506457054484 is:0.02912125731490028 was:0.028890693791197214 placed:0.023433768096613405 as:0.021235169506767154 be:0.020980966078724454 or:0.020654644189757747 it:0.020370894604110082 them:0.02026104908955177 now:0.020235367218671932 up:0.018067424186665796 are:0.01741614296069905 him:0.016338116787566907 out:0.016198840522810645 but:0.016073331244865086 not:0.015666419619017713 down:0.012831635836605852 :0.5122200061607634 +the:0.22578646641943362 and:0.17394454876227283 to:0.08185984558834296 of:0.0597153650070259 The:0.042242133000622975 that:0.02513070294288936 which:0.021741147928152623 or:0.021255328949470454 an:0.01963776616912184 a:0.019146058633459053 tho:0.017974351183232273 his:0.017027013759526588 in:0.013336073130186088 for:0.013189578525289085 by:0.0129416403125088 with:0.012497577232820694 I:0.011620487465004246 at:0.009948337352000727 tbe:0.00876150557866933 :0.19124407205997057 +of:0.25503401283930954 in:0.10740922244834947 to:0.10597888412414609 and:0.06692307121120111 for:0.04665050116116159 by:0.03812879911011325 that:0.0365750966900251 with:0.036113801802230366 from:0.031407299458205966 on:0.029917172151788178 In:0.029000763366404187 is:0.026614961637208934 at:0.019122599296906833 as:0.01696668063648567 was:0.014133986166602568 upon:0.009531996998156581 into:0.00888154951241017 over:0.008467429355132726 all:0.007825787305833392 :0.10431638472832824 +and:0.14544155905785458 of:0.117724883139077 that:0.09505378470735254 in:0.08643035506824852 for:0.07648368557727521 to:0.06770759150745875 by:0.036029399281430896 or:0.035476160825544514 with:0.03017395670779384 at:0.029947053400176123 was:0.029936739455668968 In:0.027320345850910942 is:0.020798904003982866 from:0.019807654438585585 but:0.013967888470437654 had:0.0125734499425726 have:0.012396556768271604 if:0.010501058762276758 be:0.010345946896061935 :0.12088302613901912 +.:0.056373720488867386 and:0.04291883158713683 be-:0.021917164219815342 :0.021741273362574094 of:0.018768325284993004 Mrs.:0.018446625468457226 Mr.:0.017462990059524047 said:0.01490956291637681 W.:0.01363171118140696 the:0.012841463443683894 thence:0.0121825419168769 H.:0.011779607048072861 Miss:0.011476343084713358 A.:0.010966851748350668 J.:0.009940547181272267 C.:0.00964104590340433 to:0.009599641129452632 1:0.009558735798138478 E.:0.009518815206665233 :0.6653242029702177 +the:0.14793913613839646 and:0.12644738238455494 in:0.079682904436728 of:0.07776155172536914 their:0.04894775466056052 for:0.04505762000369987 a:0.036638896646122465 or:0.034206782223999255 to:0.032305154220652894 his:0.032050790849242776 this:0.025014828209683523 her:0.02433678946635292 In:0.0228867357119285 other:0.021161151489754032 much:0.021117929380349502 no:0.02110944272564629 all:0.019154907461153933 good:0.016767552806797512 some:0.012669077826955468 :0.15374361163205202 +of:0.1955040198949752 to:0.10760806227769101 in:0.09706960343625161 for:0.09182996690732952 that:0.07817097566200107 and:0.05843286330106557 by:0.04316543926100927 with:0.04282532060106928 In:0.027497656309397496 as:0.022658222404806434 is:0.01987218043779914 when:0.01640185839584127 was:0.015942251562396554 all:0.015735278319802468 have:0.015574613170105967 which:0.01548378581398806 on:0.01535104994448931 from:0.014407601401430294 at:0.014229078082618977 :0.09124017281593148 +and:0.08992539879612474 that:0.0844453761959803 as:0.055650472056453786 of:0.05562031899468547 to:0.040555788419955316 make:0.037189996829352125 which:0.03536333746764052 but:0.029259896215369344 if:0.026590790296909906 for:0.02502570581741944 with:0.022268509380744997 when:0.02057623614723612 is:0.018606847607363967 on:0.017958315461135077 what:0.01736685272866561 have:0.015599623247670023 in:0.014393328574136822 Be:0.013801468720923782 by:0.013560337942586894 :0.36524139909964576 +the:0.16664323000824444 of:0.13192565124035424 to:0.061353506234237465 and:0.06030220000111629 in:0.037239672645152815 a:0.029281063931017138 with:0.022179840778678038 on:0.021409877252275986 The:0.01887580583436995 by:0.016334245799906024 all:0.01573490915455742 be:0.01467336936335904 from:0.014046397546914077 his:0.01268040595316639 that:0.011912987813370409 :0.011758052529563646 as:0.011406345486682524 is:0.011121893756873667 for:0.010945351346397517 :0.31917519332376293 +of:0.08471158294608466 the:0.0784438437743542 and:0.06720291665013167 to:0.046122408044339536 be:0.04046161143939536 in:0.027015564105553006 or:0.02435480735182264 for:0.020708581282078056 re-:0.019876814990101653 a:0.019001442367514877 was:0.017086966244810257 he:0.01604154291250958 that:0.015254506438979668 been:0.0144517087438338 are:0.013598540775756165 :0.013261930010872289 is:0.012996389654437859 their:0.012513526857303347 by:0.011245002537989195 :0.4446503128721322 +min.:0.12645470086834412 .:0.0859367505367141 N.:0.0758507082956521 Mrs.:0.07081404284188224 M.:0.048338784717823685 W.:0.04792052745590985 mln.:0.046863468211556965 J.:0.04594720366713514 deg.:0.037209101062633226 A.:0.03684529731439443 C.:0.0340251895675856 S.:0.03088012978404026 E.:0.024913397868131296 R.:0.024479533196928013 H.:0.024007495275341188 F.:0.016001220924400622 L.:0.014036729746182119 T.:0.013801638763199882 O.:0.013124198139692548 :0.18154988176245265 +one:0.1028303141280697 part:0.05963429477052991 out:0.04766456937681193 some:0.031418679026461914 members:0.030764490253327767 side:0.029940657362655835 portion:0.022063658796890564 office:0.020457735219956013 member:0.019726706386316174 end:0.019666887540649894 tion:0.018667441728710307 parts:0.016814747270460957 people:0.014112771422418794 all:0.014072739582212475 any:0.013183573287639892 One:0.013083578354183906 that:0.013024335602903442 account:0.012482348155001894 many:0.012077825070275192 :0.48731264666452345 +the:0.08273856936845428 of:0.0768451323767223 to:0.06532015843809355 in:0.05617767839158563 and:0.053862328412630806 a:0.042349983347200436 In:0.021150652611069527 by:0.018815668491441614 for:0.018711199107268848 that:0.01825206078754847 an:0.015692674195818976 with:0.01479676350896966 :0.011638828926836856 which:0.010742400722822886 have:0.010636407874771965 at:0.009984588339976978 is:0.0095650576571206 be-:0.009549057650448015 was:0.009121916314112827 :0.4430488734771058 +and:0.1758453384942267 that:0.04397093570643158 was:0.024587711461217368 or:0.022429806809023924 it:0.02086228471790104 is:0.0193167817404393 but:0.01805607587337638 them:0.016287321457905412 as:0.01549248170110538 be:0.015473585915644239 are:0.015055765486879551 him:0.014925781460977365 been:0.01459671414960911 were:0.013305009600310023 made:0.013016154264144604 interest:0.012543296555694089 not:0.01246832529905463 found:0.010780444775327563 up:0.010628947600926674 :0.5093572369298051 +the:0.49768712196421305 a:0.22640212706821242 The:0.061069676855743944 tho:0.026767683608939222 this:0.020299485924795625 and:0.010735903107577627 his:0.010342108694639267 whole:0.010214997427040023 A:0.00996559505403422 tbe:0.00971713254743517 first:0.009366521185617758 to:0.008700731219556914 its:0.007929547833896192 every:0.007436631498527901 of:0.0073326495948756315 new:0.006475686407857863 great:0.006167177491080886 their:0.005675085340972862 each:0.005513345934812574 :0.05120079124017083 +the:0.11919516938815296 of:0.07230453158552728 and:0.05781056740443249 a:0.043018564803886335 to:0.031305092790907506 in:0.020848713353460488 at:0.014270110001066288 .:0.012526810245749479 :0.012413283442322082 for:0.011719122709941797 by:0.010808400946589808 or:0.010404172990115616 The:0.01003576004804544 with:0.009811868184449042 tho:0.009295902015355835 was:0.008924239095331684 that:0.008672304223433876 is:0.0085591147338948 be:0.008335143826716943 :0.5187411282106204 +be:0.09219781012473957 He:0.0902910398626374 is:0.0893779833078494 and:0.08331036946294472 was:0.08300844521315898 he:0.08056866353037301 also:0.034504922106119634 so:0.03136551593625389 been:0.02897810691745119 have:0.020896477856335843 who:0.01867527406180522 had:0.018197539587103878 Is:0.017546653826958504 hereby:0.017308317899562158 has:0.015165528125876494 I:0.014615771281115039 as:0.013032671538293397 further:0.012634416094045616 it:0.011157198379797471 :0.22616729488757856 +of:0.41399261432079776 to:0.10593140721659669 in:0.08135334752626694 by:0.0639288446214796 with:0.037189207407228905 that:0.03392533425417087 and:0.0319193764509461 for:0.02587226865201833 as:0.021861692119701882 from:0.021082207413606405 on:0.01770947941440643 In:0.0142329508932416 at:0.013166039246118946 upon:0.01124589480825038 under:0.010410093495475626 into:0.00748435079333042 all:0.007170204868017952 ot:0.007029271647079246 which:0.006974023700764053 :0.06652139115050189 +and:0.1585180823625013 was:0.12620830904623973 be:0.10070431819941271 he:0.0419782943712182 is:0.04183234858766237 were:0.04043600190438221 it:0.036265909132046845 He:0.03454744280909745 years:0.033532792215574606 not:0.03294872447413666 are:0.02883360069942885 who:0.026637943610044217 has:0.02212094449698407 I:0.02135195570566855 been:0.02026455711977515 being:0.018912987311422557 which:0.015469727628214032 It:0.015142233290760924 had:0.013868322441926354 :0.16942550459350322 +of:0.2595325747595844 and:0.11014436796018186 that:0.0864417167011859 in:0.07952207381050405 to:0.07186172080695019 with:0.04827059320722771 at:0.03306489771299837 by:0.031872429956579185 for:0.028904193647836696 from:0.02611630531070303 on:0.025214262127006105 In:0.01894970663958561 which:0.010138919440656867 are:0.007784320667302731 upon:0.007630531082838108 but:0.0071000145161259935 the:0.006877113990498161 That:0.006744662948285985 against:0.006494093000955484 :0.12633550171299354 +2;:0.11049579057306758 feet;:0.10791421635616474 3;:0.09457016581405418 4;:0.08945176838543398 5;:0.06834563129902099 6;:0.03461410113772452 8;:0.02437450752685966 ;:0.021811088892508535 lode,:0.019209871347290824 running:0.01880316959276927 feet::0.01701803567792881 feet,:0.016459562065959416 9;:0.01544499450855803 11;:0.014896971432938074 7;:0.014810988443668495 stake;:0.012086048314459776 and:0.011406178764029735 street,:0.010621841376646117 street;:0.007062400559256333 :0.2896026679316609 +the:0.2755098107109494 of:0.13577236602486595 in:0.0655284705677384 Key:0.04417224416797914 to:0.04016432536603998 from:0.036019385334289916 at:0.03196660202046524 and:0.026991137218355204 In:0.02187013745176942 County,:0.021778487472985934 by:0.01326285770716875 tho:0.012934376985444614 a:0.010875638049073067 on:0.010346109865498087 for:0.009992664484823536 .:0.007665652417376964 The:0.0072224372928217555 tbe:0.0060873590664192335 or:0.005906117090265332 :0.21493382070567013 +a:0.31564803202766095 the:0.2858058684473434 her:0.0335790381020718 his:0.03194936868175393 The:0.031116267685105874 very:0.03001350075448249 and:0.02610457733482916 on:0.025752271507705378 A:0.0192175774637059 of:0.019047670183782273 tho:0.015706379965349623 their:0.014262916556338816 with:0.013498588444214202 this:0.012225670545649513 but:0.012056455649141195 our:0.011186516502476835 my:0.009532517605706186 no:0.00878986934635008 some:0.008403225427761729 :0.07510368776857065 +to:0.19378608050415033 a:0.14942578675638193 and:0.08712621512136204 the:0.06869053189970836 of:0.05948427153303898 his:0.04107173271813247 their:0.03426734041994942 will:0.028618755083244463 not:0.020396917044730886 is:0.018792003116545535 was:0.017373696994948565 be:0.01588391142235728 or:0.01531299194716987 from:0.014230666970316743 its:0.012952110272428999 in:0.011417372415561119 are:0.011227937857211172 her:0.011159230159876458 who:0.010020807119013082 :0.17776164064387232 +of:0.28767355066866834 to:0.08775711267569858 in:0.08678131196995101 and:0.05160598694501188 on:0.04646139928102899 by:0.04519522654900943 for:0.044547789071328545 with:0.03396756772609607 that:0.033699232901107726 from:0.03075346596941143 at:0.027039283056790858 In:0.021061449543044047 as:0.017514234937992545 all:0.012543839382496166 upon:0.011844431150487573 is:0.00998972746569266 was:0.008814315973987914 into:0.008557199930727406 through:0.007781895704231326 :0.1254109790972375 +the:0.11919516938815296 of:0.07230453158552728 and:0.05781056740443249 a:0.043018564803886335 to:0.031305092790907506 in:0.020848713353460488 at:0.014270110001066288 .:0.012526810245749479 :0.012413283442322082 for:0.011719122709941797 by:0.010808400946589808 or:0.010404172990115616 The:0.01003576004804544 with:0.009811868184449042 tho:0.009295902015355835 was:0.008924239095331684 that:0.008672304223433876 is:0.0085591147338948 be:0.008335143826716943 :0.5187411282106204 +be:0.27336282679601537 was:0.1548477364228012 been:0.136507853980736 are:0.06167512941115401 is:0.06152797908801985 were:0.061295930385682366 not:0.032174783304687364 and:0.03153733521813884 being:0.028788417434676025 bo:0.01355496094066032 fully:0.011960756536259163 more:0.010006217906848587 it:0.009608734880382887 years:0.009321262185855378 Is:0.008420930841306531 duly:0.007901025181549517 the:0.007857007765612543 or:0.007495518718790088 un-:0.007251809298075205 :0.06390378370274873 +the:0.1570879454366584 of:0.07804606027406501 and:0.06787223916973353 a:0.036913117407562514 that:0.03650642298570135 The:0.02495259369096442 in:0.024366179622801448 no:0.021237121796534534 Mr.:0.02095974543727837 which:0.020555747976365113 to:0.019670312615068093 his:0.014514871313338153 for:0.013864556278571553 as:0.012619099712826765 he:0.011995143219360524 their:0.011486225473642654 said:0.011457904953995053 Mrs.:0.010878795762489643 tho:0.010097198257076249 :0.3939187186159666 +and:0.08934296525867834 of:0.08068838607300491 as:0.07853645433812198 the:0.06307320057451939 to:0.042658746496865775 be:0.030835544751753347 such:0.029703590012664483 much:0.025794511891263566 in:0.023621249210533997 so:0.021449367110620385 is:0.021260609143037765 or:0.019920658237143826 a:0.01927671572579788 his:0.01906207551381598 was:0.01720359984272631 are:0.013935218166333807 their:0.012335998801341931 for:0.011516936419171063 that:0.010287085618050218 :0.36849708681455506 +to:0.28888057698180414 will:0.2407597917425319 would:0.11700028367227422 not:0.05351045352903824 shall:0.05285229282516665 may:0.05191923348182018 should:0.04386240905083339 must:0.02401253694724581 can:0.02059985298521037 could:0.012239740599861038 and:0.011348710700716124 cannot:0.009279779926969513 might:0.006831232032739115 it:0.005847854785837117 never:0.004202666103855122 there:0.003784626076485475 probably:0.0036730070348007576 also:0.00358999433158397 only:0.0034655648483091902 :0.041339392342917676 +and:0.13494966609550382 of:0.07316641737364253 to:0.07075541455588646 the:0.058493680665523205 in:0.04957317167084668 or:0.034218196852765226 that:0.032957151083144585 for:0.023740081132267728 on:0.02372525113826427 in-:0.022059642840300344 which:0.021050432068915235 :0.019992650391152826 by:0.017069113882183004 In:0.0167310746783188 with:0.014170506894792975 from:0.013586836184279336 at:0.01266636453547691 In-:0.009826052731618101 as:0.009471218486562726 :0.3407970767385552 +a:0.32109598884722895 most:0.2069645351944522 the:0.09461389338404035 and:0.08578203405318258 more:0.040068518382187085 of:0.02422720701286924 very:0.023761301418101 are:0.020701888269653176 not:0.02040790691251245 is:0.015550333400766864 be:0.015163377901616417 to:0.014216490491724833 any:0.011345946274506457 some:0.011043908129882377 his:0.01066911684849879 in:0.010099804905671543 or:0.009570862729005687 with:0.009414506837700808 two:0.009247277247163727 :0.04505510175923547 +would:0.14923544395635577 will:0.10945924273026512 to:0.10937812349242475 I:0.09435306681577214 we:0.08735455470320284 they:0.05632316893623356 who:0.045002585721151095 you:0.03951727262947286 not:0.03734332993100734 and:0.03397893423351207 should:0.03079202615141455 We:0.02810760391023402 shall:0.02680420402012075 may:0.021534067413690395 must:0.01854356745302482 They:0.01279026332620054 might:0.009974803611232454 which:0.00873478966105508 people:0.008467270640905992 :0.0713056806627238 +to:0.12022893700269083 and:0.09020394424291768 the:0.08587503820055309 of:0.06450042443224316 in:0.0310058468700829 a:0.017742048521183405 :0.015548046036689871 not:0.01491307651316237 that:0.014112408707955496 for:0.013734482372212283 I:0.013065769926808477 will:0.012848502316304782 at:0.012837991177321897 In:0.012628718855091186 by:0.012491091048660757 be:0.011425930130217754 is:0.0113962101007567 he:0.011342727513475473 or:0.01112522537451577 :0.4219735806571561 +the:0.1604916966188227 of:0.11275865359240217 and:0.07711215696098911 to:0.07357952543518372 in:0.038442084934050845 a:0.0383429392325653 be:0.031935549729258765 for:0.023687353579869633 his:0.022938330903791306 their:0.021679866906020865 was:0.016051393500300423 I:0.014372428877850276 is:0.014141382081180844 he:0.013550986364416807 that:0.013373239787386165 or:0.01186895305038503 with:0.01134461766076533 at:0.011053389841868837 are:0.010330149310961712 :0.2819453016319302 +the:0.11274823966931571 and:0.08329996793360815 to:0.062372082173126384 of:0.05346002906215973 so:0.0299749817344208 is:0.026294180790411077 be:0.020260006954324915 he:0.018124449911071136 was:0.016351044211737983 re-:0.01567649125103956 Mr.:0.014726716630740086 in:0.013675410003338988 for:0.013272602215284653 a:0.012159264338821467 I:0.012040910229586727 or:0.010977326121126826 :0.01035107289213954 are:0.010219913969554774 not:0.009881708091297656 :0.4531336018168938 +to:0.34872800662010023 will:0.173539979560445 would:0.0787938846870041 not:0.06559079319876374 shall:0.06101815310959253 may:0.053921444480807657 should:0.048091268498212145 and:0.029285947220973208 must:0.02222965393192099 can:0.015479234913944036 might:0.009724144604090743 cannot:0.008128309464038731 could:0.008098918429929684 that:0.006203145562232784 only:0.005303496553618645 also:0.005009784316208261 which:0.004941893856687148 it:0.004307941284932654 never:0.004128153986520045 :0.04647584571997768 +of:0.13379422903522165 in:0.10142955780789234 to:0.07097508832524775 In:0.039474275247576886 for:0.03861513890199395 on:0.03082612049793221 :0.02555347226016092 and:0.02391192888522156 at:0.0200992563265133 by:0.018431453033966316 the:0.01733515861995948 from:0.011485908676311574 that:0.010698452318897558 .:0.007145737421232701 with:0.00686043418036507 t:0.006429042023105501 do:0.006062961900758437 near:0.005600063045224643 :0.004782962782184677 :0.41948875871023344 +the:0.4149777638988827 his:0.13015909920425964 my:0.0676668563354682 their:0.045963908467181264 The:0.04161859380128559 her:0.03515010140313791 and:0.02803717772177851 of:0.027770949960936233 tho:0.020806219902532033 our:0.01808730223685371 a:0.016883571994654126 your:0.012502295679523706 whose:0.010681222770548062 His:0.009210253403585335 bis:0.008588591293445427 this:0.00826839470199432 own:0.007907673677655786 tbe:0.007130450924581951 its:0.007094237966736573 :0.0804953346549589 +thereof:0.12357808672931973 such:0.08367546371524556 well:0.05939183037467956 far:0.05472617357884696 and:0.05199201125909644 that:0.02076448698786116 but:0.020039235865316953 soon:0.01988346404793929 much:0.019399747901002063 known:0.019031532282946836 described:0.017906503982810847 so:0.01751847118060108 just:0.01746615251585795 long:0.017260603530792312 it:0.016899299733499625 same:0.016618260247097328 regulations:0.016579646187824985 them:0.014001065536949832 manner:0.013498652999875694 :0.37876931134243574 +out:0.07602681062816183 purpose:0.06869461851267475 means:0.03566084983905679 number:0.03321616902876921 one:0.027714891138092237 all:0.025343102568383485 some:0.021854815028092882 and:0.02145970988651852 point:0.020919867644141346 place:0.01874289182043416 time:0.01871064710432343 way:0.01696710511105948 use:0.016085648816834993 are:0.015713417986900118 necessity:0.013967083545202255 is:0.013835643252048585 course:0.013796230685778465 many:0.013606818653875674 cause:0.01342463558346578 :0.513259043166186 +as:0.5520822240126513 so:0.1142734107085017 and:0.06079401125266067 of:0.03625067727838463 the:0.02514747040944098 is:0.024994830186129854 very:0.01921909050321116 a:0.014302950713375676 be:0.012788147983539194 too:0.012765525825430661 with:0.011454178306460725 far:0.009519313138057818 are:0.009255658304656092 As:0.008663260480022708 such:0.008130060450432953 in:0.008044795997408575 his:0.007944325462139855 was:0.007618265071401494 same:0.006567561798505179 :0.04918424211758888 +the:0.23365212771599775 a:0.17329610717274663 his:0.12168211121123672 of:0.09740126061974458 their:0.0640268089276308 our:0.03834563705732009 to:0.025266053663715912 my:0.024484021382317096 and:0.018652860037217705 this:0.017183278803389435 in:0.01644236877896006 her:0.01608062914377076 your:0.01509758119064771 tho:0.012628744861927032 The:0.012350952567448894 its:0.010520056395543305 other:0.0094517338391024 own:0.008599951619338055 A:0.008198758228194524 :0.07563895678375059 +is:0.2549319385542439 was:0.13933500274871868 and:0.08603504258817728 are:0.08230353198777864 Is:0.04113033064390587 had:0.0364581988447519 were:0.03197148794830405 have:0.03178852151845734 has:0.02390720916685407 if:0.02245958556214738 but:0.021150548556676096 will:0.020407297443172785 do:0.015701153256193062 or:0.014215256105152365 did:0.013496905647282051 that:0.012309434810051745 does:0.011002178151628433 it:0.010736065029960655 could:0.01029048068196698 :0.11936983075457674 +thence:0.18347623513111516 came:0.0546851778242119 get:0.05122049082090562 going:0.04686603837122835 went:0.04039831507235563 feet:0.037485562521897574 walked:0.03377355213593928 go:0.03190676407540575 all:0.027676923649163385 and:0.02604229974754927 dragged:0.023557769479078786 was:0.02092968858262895 got:0.020745776274550827 ran:0.020369282347008497 running:0.01956770025815184 are:0.018451525319811892 were:0.018415184444386362 carried:0.017648021716494853 come:0.016436246221190123 :0.28934744600692597 +of:0.15001978805121516 the:0.10326636891820187 to:0.05565117757264274 in:0.04700681240562653 on:0.034996146966053354 a:0.033391981188149726 and:0.03190554782585787 by:0.02967366225681499 for:0.022470497000783875 at:0.02136791365408333 from:0.020744796043924717 :0.018323042466618207 with:0.017673169643652495 In:0.012901540561780656 that:0.012044439254854182 his:0.009262639664989396 our:0.008764803121566982 their:0.007992395057661276 as:0.007965268573817286 :0.3535780097717054 +and:0.14458563444761147 of:0.10006361485560843 was:0.09226444546629635 are:0.06643491013636758 is:0.050211603584781744 been:0.04728601300896324 the:0.04385685074621604 by:0.038922819141111314 were:0.03595791778866493 had:0.03550248256934791 in:0.02965235633471467 have:0.024333649580144768 for:0.02351403954116202 be:0.021767846175562284 has:0.015593176740483099 that:0.014945398907021054 with:0.013997816348773218 or:0.012972998075690186 After:0.01294041407476551 :0.17419601247671418 +the:0.1769027151217809 of:0.06990417983652975 and:0.055048392089577264 a:0.05140230833896402 to:0.026422129142381037 in:0.024588959692728916 The:0.024255933023057338 Mr.:0.018543725989566336 by:0.01696632832208181 .:0.01693784709479047 at:0.016500950484166353 :0.013824746322097337 with:0.013415735372243758 for:0.012938128306790777 tho:0.01194951927950587 that:0.010783313689347316 his:0.009341482464387835 was:0.008541115628890419 an:0.008015966263988566 :0.41271652353712396 +the:0.2775268483779404 and:0.07739260400602732 an:0.036978052295031746 The:0.027071127503597196 or:0.026620376715244292 first:0.024954161194314747 a:0.020557889052467346 as:0.020540386250689074 tho:0.015866234817108752 other:0.014816099166416484 that:0.011589032034159997 :0.010499485778907337 of:0.010214890798988244 last:0.009949049078561778 on:0.009815366403807356 great:0.009414626711583248 by:0.008953717193940267 good:0.008813032136296597 most:0.008288787431277216 :0.36913823305364063 +of:0.2153313882327268 a:0.09867102606150133 to:0.06990651187235451 in:0.04621331160968973 with:0.042632791391957914 the:0.04160121751068736 and:0.039411712645353474 by:0.030044077682721517 that:0.025809578664499434 for:0.019889844486443632 from:0.01947767110156259 have:0.018986537826783775 had:0.016332438535068394 In:0.014824345699757005 or:0.014419987344086428 is:0.01336266841923625 if:0.01072489490806998 as:0.010694116892583374 be:0.009923613363319723 :0.24074226575159677 +a:0.49785978970515987 the:0.25269699647356425 large:0.0369109871707388 great:0.03414766627705151 The:0.02100690595953598 vast:0.015302876821738429 tho:0.014178056287206045 his:0.012176858995560933 A:0.011941946050009996 good:0.010860941447322772 and:0.008249670286922493 Democratic:0.007248066832092009 overwhelming:0.0066210436572181255 this:0.005691129804359846 our:0.005534255534829538 tbe:0.005183834261220397 their:0.004214590350769817 Republican:0.004024127909159978 every:0.003807120179520895 :0.04134313599601828 +the:0.10183436440776766 of:0.07488606064591445 and:0.06921438588531299 to:0.058443200704807866 in:0.03148886119075279 a:0.029743416098295446 at:0.022818926523871453 or:0.021805115556006675 for:0.019473081652099336 by:0.019121608999993257 that:0.01714402762944994 :0.016948253773071145 said:0.01553087379551614 from:0.014724174073788837 be:0.013755255369884157 was:0.0127616128788576 on:0.012634437354551924 is:0.012385535851993347 with:0.01128861387898912 :0.4229981937290759 +of:0.34221396621524236 to:0.12701047913722474 in:0.12430601379002161 by:0.06515413811858882 on:0.034804065984946043 with:0.03479016296997681 from:0.03227007947551947 and:0.028555425836309992 that:0.025793791466985704 In:0.022449658293483877 at:0.019331893785547685 for:0.013886525545162186 under:0.013101226926417525 upon:0.011473126858000384 as:0.010719800787875843 into:0.009816195576758618 through:0.007713790351631171 which:0.005413643002669582 ot:0.004701914200233751 :0.06549410167740385 +and:0.09615616852063183 depend:0.03473809158575133 that:0.023286477569577267 depends:0.022920800776930407 called:0.02113904123670932 based:0.02112826196261158 look:0.020348166919316433 down:0.01811093189054853 call:0.016938046358453352 made:0.01661233894564072 looked:0.015464388384280853 it:0.015392547621987338 out:0.01510614604072904 effect:0.014207623428242801 act:0.013322747942510683 dependent:0.013021259289591573 or:0.012932169281310274 imposed:0.012877036092939335 enter:0.012784532046002568 :0.5825132241062347 +and:0.06954454630682382 the:0.04591889931765341 to:0.04441537768223494 will:0.0397394699508654 which:0.03902395676601593 said:0.03884001254090859 of:0.03833137054480887 that:0.030175267836648433 may:0.02893916347065599 for:0.027061765505786938 it:0.023382938579402008 there:0.022841550737806325 shall:0.022684019024387738 would:0.020975563107901354 a:0.019245805635819582 or:0.01860143985334092 should:0.018461796486249123 can:0.0182102597929919 as:0.01668322510220108 :0.41592357175749767 +more:0.08839344141635225 law:0.019611628657003492 one:0.019383202762051584 be:0.015353799589241955 good:0.015241941824439774 man:0.01408670379991919 it:0.01388738131036291 and:0.013305053542219315 is:0.011717481233077694 in:0.011553240772087095 made:0.011196814185988172 him:0.010868438415670768 them:0.010482348330620082 time:0.010385415664219803 right:0.01018364464306373 action:0.009989508920270555 little:0.00894706912415742 person:0.008852856988813792 money:0.008461185818260771 :0.6870988430021797 +of:0.28767355066866834 to:0.08775711267569858 in:0.08678131196995101 and:0.05160598694501188 on:0.04646139928102899 by:0.04519522654900943 for:0.044547789071328545 with:0.03396756772609607 that:0.033699232901107726 from:0.03075346596941143 at:0.027039283056790858 In:0.021061449543044047 as:0.017514234937992545 all:0.012543839382496166 upon:0.011844431150487573 is:0.00998972746569266 was:0.008814315973987914 into:0.008557199930727406 through:0.007781895704231326 :0.1254109790972375 +virtue:0.062060494787377685 out:0.05417899169104244 part:0.03289673107629515 one:0.02969369892462812 quarter:0.027015883171169475 favor:0.01993830018372674 result:0.019463829004704194 guilty:0.018891084377354095 means:0.018499162894926688 end:0.018170939082736048 that:0.018121271122199262 construction:0.01726217741616459 presence:0.017003995482744873 tion:0.01673652166540914 case:0.01640819963257697 side:0.016055927605250184 erection:0.015381239457214257 account:0.015287601389485416 hands:0.015156055434805247 :0.5507778956001894 +of:0.10875270250546794 as:0.09387151555444918 for:0.07921267326682616 to:0.07783946919944051 is:0.07099208650093047 by:0.06975236602692281 with:0.052844705106291426 at:0.05037089089380489 and:0.04918538128447525 was:0.046661435959777446 that:0.04255728620407364 in:0.04161021874298587 such:0.025137882178890836 not:0.02372681948544727 be:0.01946930241970516 than:0.01601122854117724 from:0.015466095154841998 have:0.014568156405246299 made:0.014292692810921012 :0.08667709175832458 +It:0.16483324464261526 there:0.15137929784652215 it:0.1389856574030547 There:0.07635769296985051 This:0.047005115735994085 which:0.03400493914593651 he:0.03276953491232582 that:0.032534901302704186 this:0.027705240540618296 He:0.025980981107979893 and:0.02571984886254885 who:0.015928391857077187 Here:0.008658225427457844 That:0.0071330239854848695 she:0.007117899171284279 one:0.006746549293447637 She:0.006029619888080546 man:0.005607440676998042 what:0.0055587671977417805 :0.17894362803227754 +one:0.1028303141280697 part:0.05963429477052991 out:0.04766456937681193 some:0.031418679026461914 members:0.030764490253327767 side:0.029940657362655835 portion:0.022063658796890564 office:0.020457735219956013 member:0.019726706386316174 end:0.019666887540649894 tion:0.018667441728710307 parts:0.016814747270460957 people:0.014112771422418794 all:0.014072739582212475 any:0.013183573287639892 One:0.013083578354183906 that:0.013024335602903442 account:0.012482348155001894 many:0.012077825070275192 :0.48731264666452345 +of:0.13084814232797154 in:0.0740836656586379 as:0.0625527229231004 with:0.059577596335708534 to:0.058433603729754965 is:0.05551580107464621 and:0.04946529489577619 was:0.04264000753602388 for:0.04009673021586375 by:0.037684080471064085 be:0.023941707008899252 on:0.02316059851167503 at:0.022644769441950232 such:0.019950936521181326 that:0.017856095877642635 like:0.017386655618315594 In:0.016902219705578994 from:0.016046571451088905 not:0.01205910100844263 :0.21815369968667797 +the:0.2167486099570274 of:0.13119223687285203 at:0.08220885116803053 to:0.07487579323892771 his:0.05164967395125052 their:0.050815013082062994 this:0.04821668373065791 in:0.03203773433924076 a:0.03092531575767674 for:0.028049559922123008 and:0.02197666359308838 hard:0.02158208320763835 our:0.016707989401268362 tho:0.01548137798454329 its:0.013210019436091916 my:0.012057368998312664 her:0.012013703980551892 day's:0.010527306838226828 or:0.010520759369895319 :0.1182032551705334 +that:0.2688848525691409 and:0.1103182932995788 which:0.07583270823830614 as:0.06094565054419804 but:0.04758566235013788 if:0.04323026304367251 what:0.03709102738747794 If:0.02419767435420891 where:0.024103262362341376 when:0.021174444372792936 because:0.015869646261074226 But:0.015241910390580359 whom:0.011485008106855134 than:0.009831576236436271 think:0.009065988296568548 while:0.008547905270471027 And:0.008366528876799464 That:0.00819253753949059 for:0.006570114567968243 :0.19246494593190064 +and:0.09797188308205676 feet:0.031112598491651013 north:0.029987804934617186 committee:0.024578087061347995 put:0.017959193937738312 Mortgages,:0.017790128703923064 mortgages,:0.016620373774132485 mortgages:0.01572702001914113 men:0.015715828572118583 Committee:0.014083423503717989 that:0.013688190013636817 set:0.013227980833266895 book:0.013202601027716929 placed:0.012888400421041422 fronting:0.011739792505808448 south:0.011531773582576888 was:0.01132021180481452 house:0.011256873173585213 west:0.010692157099731026 :0.6079056774573773 +the:0.3357627611813373 of:0.0727710752821459 said:0.07160407939001716 this:0.06397009100736535 and:0.0363124178786088 The:0.030727728678706812 a:0.02154799331209732 that:0.01868355323657014 Custer:0.017488093688291847 other:0.01662874812263077 tho:0.015376597875437813 such:0.012912463281396388 our:0.012085692529439744 or:0.010281705386356102 Lake:0.010159527263292927 new:0.00998550278902838 Stevens:0.00846983995157036 tbe:0.007426336009455311 for:0.007423890485593624 :0.219381902650658 +and:0.10603786744540887 was:0.04003469011420026 is:0.03612147322196141 that:0.033997962034474694 as:0.031722802854063994 be:0.02767125079187701 are:0.022687346146024672 or:0.02174294281661727 it:0.021229809058644515 them:0.018239480914018145 men:0.018135488539074207 not:0.018104773344516874 were:0.017871606318773426 been:0.016892964786397777 made:0.016302052904091365 engaged:0.014529493320432648 but:0.014515587809253088 than:0.014116392257242824 him:0.014051514688943308 :0.49499450063398365 +cut:0.06454930384670252 cutting:0.02725730654233468 it:0.025134287381588814 and:0.023274787169586888 taken:0.022769081306218988 went:0.022375189117893615 them:0.0220256217001387 of:0.02042777359437249 falling:0.019833392711864184 him:0.01842770315253797 set:0.018059400140429473 take:0.014456965038373376 took:0.014346434528032527 get:0.014304151471694074 broken:0.013960834270450856 come:0.013683938213882826 put:0.013600861406085303 pay:0.013180040130387958 got:0.013078051698422187 :0.6042548765790026 +matter:0.05136075303973786 bushels:0.03792489827480389 purpose:0.03643881498625006 number:0.031574249103751464 out:0.024039827784955666 point:0.022686402984553707 cost:0.02083647242570554 amount:0.01879593504206639 pounds:0.018472193082620814 years:0.01843676438969492 instead:0.018126409648797012 day:0.017104005946124993 question:0.016781267533150002 is:0.01650239125825128 rate:0.01531071256532539 be:0.015294371052160215 means:0.015105215486529273 case:0.014134859145422745 tion:0.011207507999396795 :0.578866948250702 +and:0.08938655578847894 it:0.046342019158889775 pain:0.041251903810146234 was:0.02514461561529863 him:0.023897061420385016 not:0.02386175151769552 that:0.02320631134733673 up:0.02134785174529152 is:0.02055119962248676 but:0.020003960395700987 made:0.019592523480922424 them:0.019112205980502915 found:0.017732412514953798 out:0.016087436034656972 me:0.015967133766096424 be:0.015201457325792025 down:0.014552834115865852 as:0.01364093143384261 pains:0.013515160954300196 :0.5186046739713567 +the:0.13274021941664735 and:0.09403399741956686 a:0.07783651006665013 of:0.05028188752540988 to:0.0343657237278899 for:0.024210652979768713 will:0.01773158045885561 in:0.016225550982920205 their:0.013467217856550183 The:0.013458754707312738 his:0.013159877680219468 as:0.01286557216617176 that:0.012841569878055443 more:0.011702491548537359 he:0.010863487672633121 they:0.01044780780207856 which:0.010166179619688439 I:0.009588548866298027 an:0.008702865383471342 :0.4243095042412749 +up:0.015249795323084117 due:0.013856953403055965 hundred:0.012473667618102863 quiet:0.011129247982001574 out:0.01069679145581608 ;:0.010575365492123762 made:0.010536336159594081 him:0.010461318644894961 it:0.010013967899384212 time:0.00990572519887952 law:0.00968511322880409 down:0.009551741478147968 them,:0.00937593146320674 lying:0.009294981850945181 them:0.00916387612817943 it,:0.009051095190694077 right:0.009009233014241438 dull:0.008476032201173208 work:0.008400624034639191 :0.8020922022330316 +one:0.1028303141280697 part:0.05963429477052991 out:0.04766456937681193 some:0.031418679026461914 members:0.030764490253327767 side:0.029940657362655835 portion:0.022063658796890564 office:0.020457735219956013 member:0.019726706386316174 end:0.019666887540649894 tion:0.018667441728710307 parts:0.016814747270460957 people:0.014112771422418794 all:0.014072739582212475 any:0.013183573287639892 One:0.013083578354183906 that:0.013024335602903442 account:0.012482348155001894 many:0.012077825070275192 :0.48731264666452345 +Section:0.04642821674208934 :0.028653186131612385 .:0.020696448801957156 lot:0.015539348368806515 and:0.012824601953385674 Sec.:0.011092922323392233 April:0.00942615119548416 of:0.008914760127784272 May:0.00890129604056901 the:0.008827995927274642 March:0.007811945399328065 July:0.00779067502014718 ::0.007609565382847532 June:0.0075900404936904715 to:0.007183344371220219 SECTION:0.007103862205052865 that:0.0066631957587456195 1:0.005910230092980732 lots:0.005551059101683914 :0.7644811545619481 +;:0.01458927046758731 it,:0.007973265891266864 him:0.007834970369143835 one:0.007240974664279108 in:0.006989508095588829 and:0.006417396987522371 ,:0.006059091806132192 it:0.006014614548599763 up:0.005812344146302806 out:0.005395853159197619 them,:0.005290532062834904 him,:0.004938420268273817 city:0.004793760033506698 :0.004646491011450349 man:0.004641061555670736 country:0.0046164671969483135 feet:0.0044416267197611185 time,:0.004376787347733258 time:0.004358244018157902 :0.8825693196500423 +of:0.2947203447404917 in:0.11904576965549353 the:0.08721389429960594 and:0.06538299621885679 to:0.03558691326128365 with:0.02628785966812326 for:0.02590916164544352 from:0.025503145977205176 In:0.024618454096687805 by:0.022378683216628677 on:0.014293295356332343 their:0.012345162530963037 his:0.009837386788056556 at:0.008845103664430561 into:0.008349470802118552 or:0.007047371501299103 an:0.007040244513687865 her:0.006930442598349557 that:0.006829918233939578 :0.19083438123100285 +years,:0.011016504374037119 man:0.008831296001434882 it,:0.008256214417610357 him:0.008006708380866076 it:0.0074652978008488986 them,:0.007112050569582162 ;:0.007105161848065395 him,:0.006510698879004272 time:0.0062903181895274645 country:0.005623388300773526 ,:0.005430775180425848 years:0.005355519311043464 time,:0.005335762277801141 up:0.005299490148307085 here:0.005233337824239933 work:0.005128595953937518 :0.005113192807349794 city,:0.005075237759006556 country,:0.004714246338915896 :0.8760962036372226 +in:0.2507036493318816 of:0.2097917161298339 In:0.08163853399021452 by:0.0637365835667296 and:0.0459437610006119 with:0.04121834260989937 to:0.03270295688634008 for:0.031494594546314016 from:0.021526309887488253 as:0.012668509061165978 the:0.01161779590406511 after:0.010172950070390699 all:0.009509107219539698 without:0.009046974430815926 a:0.008731439331548038 After:0.008381452230589823 on:0.007878708205923587 that:0.007625279181520013 his:0.007449996483039777 :0.1271613399320881 +and:0.15926139638565803 of:0.09879630890910952 fact:0.056622873623962205 to:0.054143623370142537 all:0.03292400496581227 in:0.03146318378987459 on:0.029506637278614585 at:0.02940722655375072 is:0.02898339109342788 for:0.02842767716706863 given:0.02284338331829159 say:0.022802725620703037 said:0.02277149112516121 believe:0.022196073086281146 know:0.022192864793136577 from:0.020243761800147673 than:0.016724098474199988 show:0.016203831087200252 was:0.01611571777320347 :0.26736972978425405 +of:0.2826760980516804 to:0.09182489421048218 and:0.08140358039521556 that:0.06080049492805253 in:0.05118593036861891 for:0.05090050767972801 by:0.046344881941354096 at:0.04457410782257044 from:0.034438696505000976 with:0.0326866317521198 on:0.03260489902288348 all:0.02879472775972798 upon:0.012930082335593835 about:0.011663408535467837 as:0.011285153169575882 than:0.01062576320740264 when:0.010492009353188012 In:0.010421734045164818 over:0.01026529254276003 :0.0830811063734126 +he:0.19622511832088452 who:0.08260847541893643 which:0.08204709968555839 He:0.06803066504450776 and:0.061223778910705975 she:0.045779132236038786 that:0.041019548506580954 it:0.03665191780326194 It:0.030843105740105785 She:0.016513308177120132 as:0.015228122145624272 lie:0.013265982522848501 ho:0.012778818894323942 man:0.010593905730462462 what:0.00902006228352514 time:0.008216507285611817 company:0.007935973207270052 one:0.007644379617383222 but:0.007047117728068383 :0.24632698074118156 +of:0.23228368604238855 to:0.11401343741718711 in:0.11375335734264357 and:0.061567139677934174 for:0.056623623851247445 with:0.03649011849765594 by:0.032988342872238 on:0.029263224099056205 oi:0.028399921725993864 or:0.02684957019426721 from:0.025367258308097405 In:0.02251823750702709 at:0.018445619339484517 that:0.014735076288643399 ot:0.013564909231729563 upon:0.01161243681208729 against:0.00963888302676116 ol:0.007142072434128 into:0.006757020981787185 :0.13698606434964236 +is:0.15289513454266535 and:0.12855165088857004 was:0.08130004499262627 are:0.05959571636690607 be:0.05190862137358257 or:0.050462500002812966 had:0.0369401624454112 not:0.036806178480621496 were:0.03268178870199078 Is:0.03155562493070902 have:0.030246049604190056 has:0.029890366306681942 been:0.02746919152593787 only:0.02519940230716936 so:0.02504078982060241 it:0.024665321145472024 but:0.02051915562945628 as:0.01981707027387908 all:0.0167308440077688 :0.11672438665294645 +it:0.15435958396583194 It:0.14596443211764934 there:0.08705516363618279 that:0.053175739824455434 which:0.04578550446343861 There:0.04453056275179407 and:0.040732443556087176 this:0.03774563891242248 This:0.033845441507107825 he:0.026913974670311643 what:0.017745574507806602 who:0.016138538891605686 as:0.015241197035287804 one:0.01477825034150186 He:0.01259641358277991 same:0.010358697776759655 That:0.010213909271724749 time:0.007917947918411654 work:0.007452420839620481 :0.2164485644292203 +of:0.28767355066866834 to:0.08775711267569858 in:0.08678131196995101 and:0.05160598694501188 on:0.04646139928102899 by:0.04519522654900943 for:0.044547789071328545 with:0.03396756772609607 that:0.033699232901107726 from:0.03075346596941143 at:0.027039283056790858 In:0.021061449543044047 as:0.017514234937992545 all:0.012543839382496166 upon:0.011844431150487573 is:0.00998972746569266 was:0.008814315973987914 into:0.008557199930727406 through:0.007781895704231326 :0.1254109790972375 +and:0.10757943400558848 to:0.06518851748083826 of:0.03643430339113641 re-:0.033440770711369576 that:0.026061828943619036 which:0.02553337385984825 in:0.02432041561502044 for:0.023356030088059195 or:0.022350386617975924 the:0.021220911607422482 not:0.01789878976398127 it:0.017292759963734847 he:0.016540420147978848 would:0.015959386126168876 will:0.015566473814774912 pro-:0.014852635549884138 has:0.014434110500869622 :0.014209645909695789 have:0.014114745495330804 :0.47264506040670284 +of:0.20657071791776305 to:0.10414947336996457 for:0.08054499363788276 and:0.07045938849352591 in:0.069942197464445 on:0.06623478420757423 with:0.05890870050804843 at:0.0361963946536899 that:0.034079998834333346 by:0.031015882063365204 from:0.02901962030321368 is:0.02256504683044682 In:0.01853229265320805 upon:0.016852806126857883 was:0.014484660542666521 all:0.014254745171423689 under:0.012128573694713336 over:0.010020221391533283 but:0.009972461543179267 :0.09306704059216508 +to:0.12022893700269083 and:0.09020394424291768 the:0.08587503820055309 of:0.06450042443224316 in:0.0310058468700829 a:0.017742048521183405 :0.015548046036689871 not:0.01491307651316237 that:0.014112408707955496 for:0.013734482372212283 I:0.013065769926808477 will:0.012848502316304782 at:0.012837991177321897 In:0.012628718855091186 by:0.012491091048660757 be:0.011425930130217754 is:0.0113962101007567 he:0.011342727513475473 or:0.01112522537451577 :0.4219735806571561 +of:0.28767355066866834 to:0.08775711267569858 in:0.08678131196995101 and:0.05160598694501188 on:0.04646139928102899 by:0.04519522654900943 for:0.044547789071328545 with:0.03396756772609607 that:0.033699232901107726 from:0.03075346596941143 at:0.027039283056790858 In:0.021061449543044047 as:0.017514234937992545 all:0.012543839382496166 upon:0.011844431150487573 is:0.00998972746569266 was:0.008814315973987914 into:0.008557199930727406 through:0.007781895704231326 :0.1254109790972375 +the:0.6497376227168287 a:0.06975170495878465 The:0.03501451622388046 tho:0.033455421396981516 and:0.021802830686341652 of:0.012898281022141245 other:0.012095846617706648 tbe:0.010277190181257797 great:0.01024281242098853 or:0.009814858327910415 our:0.007644390982131719 any:0.006898387237943967 general:0.005642200849540119 American:0.005320645490612647 young:0.004607221807441866 this:0.004384714755660997 that:0.004229193371372364 new:0.0042054078545541804 no:0.004122726964465287 :0.08685402613345528 +went:0.06527228071368989 go:0.05619934446464802 came:0.040550395705713206 back:0.03555337887687652 it:0.035376220595961315 out:0.03490526632483226 put:0.03355619440406013 down:0.03042882513856963 come:0.028160683632563837 them:0.027165266356164442 enter:0.02685927818294859 up:0.02683395703545789 brought:0.02610450155923051 way:0.025650479473236742 taken:0.024297963337896748 get:0.02381342012574062 entered:0.02315017182132224 thrown:0.022312163284405207 going:0.021115908751936613 :0.3916943002147456 +go:0.08679158233973361 went:0.07822504410702391 going:0.06356376361082444 carried:0.05745473717600956 and:0.04316605505995897 was:0.03957826709198519 goes:0.0355564564577943 came:0.031474989438673696 put:0.028240737647709145 up:0.02249239241227889 work:0.01822094503352051 them:0.01700707533203342 called:0.01625200240640542 him:0.016158992305228798 be:0.015860355038324742 is:0.015124551354092648 come:0.014757490146031251 were:0.014545111477450934 relied:0.013137120651200995 :0.3713923309137196 +the:0.7280648408255119 a:0.060361412986249786 The:0.05858161525993468 tho:0.04584877337334621 tbe:0.018671381682256502 and:0.010520380804199177 great:0.008433731294724571 this:0.007139842235505882 his:0.006482079819239985 in:0.006380196867905709 long:0.004603227217992584 good:0.003984958359730638 Tho:0.0037332984856363167 tlie:0.003676754850853865 to:0.0036622776361233916 of:0.003058702909096944 general:0.0028669408707347062 little:0.0028205527581723322 whole:0.0026031076172650207 :0.017505924145519703 +all:0.28252060321282935 the:0.07428769601972414 many:0.060770581390853604 these:0.060192764557370715 other:0.058570438836973444 as:0.03784382318811149 and:0.03566175349314927 different:0.03323950147884786 some:0.03317869535788473 of:0.033085992256366534 various:0.03007702564921621 such:0.028452578419355702 certain:0.02498133718750798 that:0.023319889345836505 a:0.02155374415440118 All:0.016668744169891964 this:0.01537333962676676 for:0.015085873664909688 what:0.013587700565357923 :0.10054791742464496 +Survey:0.12384381522261086 survey:0.09919828166634975 Cor.:0.05237952922147528 lot:0.033309554737424606 and:0.03032384353996996 of:0.029865285928645926 District:0.023275689291637553 vey:0.021798577808657023 marked:0.02028356242011341 Lot:0.019370214073491484 Liber:0.01928776151126 corner:0.01821046227497996 Ordinance:0.015717661141823946 Sur.:0.01393623826301752 post:0.01114983925739308 .:0.010329878488063621 Corner:0.009114366911726558 Act:0.009108976016052416 certificate:0.008616917026039185 :0.42987954519926785 +the:0.358017247035028 an:0.12627595206808861 his:0.09767035992376374 their:0.05153380037014823 any:0.040120627138301765 a:0.031249109525378464 of:0.03109627967240668 The:0.03054309123326413 in:0.02599863336830986 my:0.024394824574788088 your:0.023253454227672467 its:0.020842028173949777 tho:0.01935875231053251 no:0.018864037871758152 our:0.01599081756587839 and:0.013217708999845897 her:0.011773918522920224 this:0.009495483116066706 every:0.008260123781483936 :0.04104375052041439 +the:0.2029157831613419 of:0.1836534826264943 in:0.1296075593680536 and:0.056535338616332524 are:0.04767291506803279 all:0.03257377770167188 In:0.031507999607953315 a:0.03111864510217254 is:0.02672567272417326 with:0.025120826785113765 was:0.0226022733561341 be:0.02224313633197885 to:0.016911291766301708 from:0.016592796503254136 by:0.015363361431066124 most:0.013964806179999362 The:0.013929570491723792 an:0.01286096157621911 on:0.012361263651714461 :0.08473853795026849 +of:0.24302622732375995 in:0.17272967966010047 on:0.06820626072712327 In:0.06435063433742093 to:0.042847651080657 that:0.04225526377657879 from:0.04062950551364555 and:0.03753875507561928 at:0.03180001731081808 by:0.02937951008041093 for:0.028947142741194996 On:0.027025445257279984 with:0.02146926411749831 upon:0.014293838462036235 At:0.012266304682445042 after:0.011114137833721038 but:0.010095559777505597 about:0.009063338441188722 all:0.00900111756025933 :0.08296034624073649 +of:0.12683726124759198 on:0.07692408861081951 the:0.06944381182521533 in:0.04245445178762474 to:0.03608936499864837 and:0.03463270599767841 :0.02825502453270117 at:0.020571518849831074 by:0.018928603631303036 for:0.018761898857731062 from:0.013699160086197927 day:0.011834315016414795 In:0.011186351907668785 was:0.01038861085065573 that:0.010199901422541652 a:0.010070162940120315 which:0.009551188266776518 State:0.008947167869053342 or:0.008684904703347788 :0.43153950659807844 +and:0.07346680705740258 pay:0.030648344781238852 demand:0.02913253750122405 ready:0.02684830595685448 it:0.025457997877352426 used:0.024149476294152723 paid:0.023981529358656776 is:0.023730165720037506 not:0.023456780926984142 was:0.02148692318733456 or:0.020585124843616017 work:0.0199005693752598 vote:0.01917399822126911 made:0.018988909616509488 enough:0.017651717995728143 them:0.01679605873645422 been:0.01653761527886792 are:0.01599029004166579 him:0.015618336752993917 :0.5353985104763975 +hundred:0.02334136986593815 up:0.005482494641173394 men:0.005366536521246011 Hundred:0.0047587970519216575 John:0.00441808156134956 William:0.004390720675819281 him:0.004016828614280843 ;:0.003997112205305733 due:0.003721199871732 in:0.0036582900032443304 time:0.003637206863828461 James:0.0035594902370151707 out:0.0034878448964120057 .:0.003467980723571515 1:0.0032804584819785204 day:0.0032444781513863933 ,:0.003058139385740603 :0.0030314555521939613 Robert:0.003005471634785646 :0.9060760430610768 +the:0.43445262850608135 and:0.103257211962824 of:0.03654138286629565 The:0.03426925291838248 tho:0.029924868144676146 said:0.017698209789415838 a:0.01580512120807811 an:0.011284999575638801 tbe:0.010968521886784691 as:0.008766081585999267 by:0.007216900255823355 :0.0069371322527913 that:0.006242451384248622 at:0.005327089855160139 States:0.005269080970595874 .:0.0050322244768712995 or:0.004963890151703135 :0.004175629928888911 county:0.003978085021549132 :0.2468892372581919 +a:0.1321460770238192 of:0.12827534847815752 the:0.1280387698308954 in:0.06869297999108763 to:0.06433367405198857 and:0.03145243746183656 by:0.02476321061136477 an:0.019019209580307988 from:0.018856935027429036 for:0.018767686062572123 In:0.018296016516781567 that:0.017237874292285026 at:0.014325632744709186 The:0.013616591026557196 said:0.013320442139772654 with:0.01321482439236435 any:0.012695992857067982 on:0.012615144618821105 or:0.010513314739318625 :0.23881783855286348 +the:0.3234237800673236 a:0.25748543871983137 of:0.152576964164125 in:0.060683566274271246 and:0.02186420419695952 tho:0.018677943633807953 The:0.017319429563392986 In:0.014788000702205628 for:0.008891982655549042 A:0.00849381603313771 great:0.008296203167371941 his:0.007954297256373826 or:0.00783783610236454 by:0.00761503908475229 new:0.00647725059467526 those:0.006375254498421583 tbe:0.006173516259689474 old:0.006101554128743766 other:0.0059820683262823415 :0.05198185457072091 +;:0.01458927046758731 it,:0.007973265891266864 him:0.007834970369143835 one:0.007240974664279108 in:0.006989508095588829 and:0.006417396987522371 ,:0.006059091806132192 it:0.006014614548599763 up:0.005812344146302806 out:0.005395853159197619 them,:0.005290532062834904 him,:0.004938420268273817 city:0.004793760033506698 :0.004646491011450349 man:0.004641061555670736 country:0.0046164671969483135 feet:0.0044416267197611185 time,:0.004376787347733258 time:0.004358244018157902 :0.8825693196500423 +the:0.41323734616056057 of:0.11469141863282407 a:0.11078578615943144 The:0.041931360820135696 his:0.03639663061023967 our:0.033593527984734854 their:0.031134099197140462 in:0.024256483857598203 tho:0.023724781157365153 and:0.02086622384689298 this:0.015551058693961917 that:0.013372108426834851 its:0.013105310785998792 on:0.01185651435660958 tbe:0.011143451646648407 to:0.010170388838861523 your:0.00813075715128159 or:0.007065996980069522 her:0.007022589254627718 :0.050964165438182996 +and:0.06454739073657131 demand:0.023313300174744492 ready:0.0192991955467307 used:0.018559068069203856 time:0.0167973135366693 not:0.012889415712033305 vote:0.012868664167591082 it:0.01277775949265748 candidate:0.012059490274945432 him:0.011492660117416436 them:0.011389360230310022 called:0.010603763162339089 made:0.01030049958521204 up:0.009942829375404135 was:0.009875709402481388 as:0.009516893763303088 patent:0.00929908628672026 or:0.009178704268878403 but:0.00882338719685127 :0.7054655088999369 +;:0.03274669697814272 and:0.027264151200438992 :0.010647156500978076 that:0.007496247020648325 was:0.006522312664704209 it,:0.00610375605265731 as:0.006095917352354943 ,:0.005607784181409964 them,:0.005364309806806677 ::0.004996371036647481 is:0.0049132762311547545 it:0.0047300629235347445 I:0.004621904000834257 men:0.004606875591619405 years,:0.0043351160504465965 :0.003989086592074194 years:0.0037371427055067686 but:0.003708207053323135 States,:0.0036855391737030405 :0.8478280868830145 +the:0.1652759358306277 of:0.06900852881958826 to:0.05709221117683389 in:0.04022160940702983 and:0.03237654061009243 his:0.018894184814995905 was:0.01793391995408184 be:0.01738368940527303 a:0.01704899539853463 for:0.016518835643279037 at:0.01452884488397262 that:0.014342106045006964 their:0.013965418248363967 Mr.:0.013314140357131455 is:0.012693324268181871 In:0.012639168274877734 con-:0.011774429846490153 on:0.011178517578409937 he:0.01072601715782147 :0.43208358227940724 +the:0.4332620591725842 said:0.18540181429706712 State:0.025094662190096796 this:0.024292701534739624 of:0.023618143810654513 and:0.023105286342272095 The:0.020815362581853774 tho:0.01997166314183054 a:0.017656829871269788 County:0.012185661386636237 School:0.009166847142119659 tbe:0.009009913133508329 in:0.007906512600358734 that:0.00651286918483883 other:0.006384082240236117 General:0.005930320366696545 public:0.005381843322488946 any:0.005331163047360248 or:0.004674078150348472 :0.15329818648303942 +is:0.06448054043205155 not:0.05286618613955677 and:0.04974114507820292 able:0.0483902180253495 have:0.0405601236073605 enough:0.03856285872063923 was:0.035250885186764135 ought:0.03257441388036483 right:0.03241230068604824 order:0.03227191436092102 had:0.03195333361889275 necessary:0.027550282352579742 him:0.026211396215144036 are:0.02590200225850308 them:0.02568652848567785 refused:0.025181737065133606 as:0.024992291358063974 ready:0.024726145906807495 willing:0.023432988463314063 :0.33625270815862474 +of:0.15048981524707714 and:0.11246983033383513 a:0.0894713932970791 the:0.08703850104374246 as:0.07929365186513294 so:0.05166233084899158 is:0.0349090544176888 that:0.03246367742302839 very:0.029939611726419416 are:0.024860772172273102 The:0.02466163952369968 some:0.020993138636599983 no:0.01997353549246089 their:0.017262946531123702 be:0.01656656534907653 or:0.0160700510112769 much:0.015416458070145212 in:0.015172990247445239 for:0.014670059380940093 :0.14561397738196372 +at:0.16501348384020328 the:0.15746232619577155 was:0.11091404605805215 be:0.09579523713443312 to:0.07178739752069173 were:0.052196748837584885 is:0.04205748120013629 not:0.03347951280981779 and:0.028009796002084218 are:0.027100377912110542 been:0.02108777396658468 At:0.020814997425365696 will:0.01827555458585809 The:0.012768593499053852 a:0.012171506917154986 being:0.011736587501129754 of:0.01141964600392246 its:0.01091404717276048 those:0.010747254835837248 :0.08524763058144719 +be:0.20346892622829232 is:0.1539984087109941 more:0.08314866729623738 very:0.07542713370679438 was:0.05692887596623064 and:0.05391294380423556 are:0.0406539477599109 as:0.038836409539650944 been:0.03600453326154975 too:0.035151742038227504 most:0.034522002821833576 so:0.03185147861836408 not:0.02600828209239906 much:0.023597580562580097 a:0.023456390031481672 were:0.017768370393321704 Is:0.013011365339619108 or:0.011463283915434786 no:0.010449065310324414 :0.029340592602518055 +of:0.14151035449072158 and:0.052296837713389416 to:0.0422265394674182 in:0.029882871952731222 on:0.029313997653721086 as:0.01824312567508347 the:0.01734917135429187 for:0.015322519339899214 -:0.014698691272758243 is:0.013809920064888282 than:0.01355428008571776 from:0.013233883122930388 with:0.01218003116254144 at:0.011479492484533664 I:0.010939204002129705 was:0.010811330499579174 by:0.009906422659392703 that:0.009836194762032608 before:0.008345335241583861 :0.5240597969946561 +the:0.46976096721315475 of:0.047789113709985585 their:0.047098501475254545 and:0.033423755671293166 a:0.032621860103677326 in:0.03150474846565043 his:0.026858595647845245 tho:0.024274851610562226 our:0.024006751511388907 The:0.01953991478225042 good:0.017043868807098263 any:0.0168535840941337 to:0.016496112444545262 this:0.015099271782778496 my:0.014702123908781232 no:0.014045870935138509 her:0.013710551177208367 for:0.013003661540399463 tbe:0.01220080189801117 :0.10896509322084295 +they:0.07284511826201427 and:0.06867662616644721 who:0.049788612253492216 which:0.04041571477496743 there:0.02979753681671552 that:0.027599654404264307 we:0.027594311756003076 They:0.021696196218190602 men:0.01971295770806787 you:0.019674171169672777 There:0.01919679458529454 people:0.013971071359907241 We:0.012461340506217944 as:0.009106102174864489 I:0.0065016897271393485 lands:0.006180715420369589 them:0.0055694194476062255 1:0.005534796498796383 :0.004957073820020173 :0.5377200969299488 +the:0.3691926924106859 a:0.2751502699921008 this:0.06956436195748873 his:0.04520790893738964 The:0.029221312577954343 tho:0.02452546675165466 their:0.018996089072892967 its:0.014003610018157833 an:0.013261920275920602 her:0.012834289047997608 any:0.012486263642041978 our:0.012177756690673804 my:0.012099226906631512 every:0.011964198719595776 no:0.011919279090894694 one:0.01141056030297316 your:0.010050964817249115 and:0.009443574633983516 This:0.008220342764811109 :0.02726991138890231 +and:0.10355568428426194 a:0.10278465422618022 be:0.10154880051064002 so:0.07606817902907537 are:0.06211071181387181 is:0.0509843368162652 was:0.0505543102477124 the:0.042585085136956226 been:0.03054897063043378 were:0.03053259474724813 not:0.028604866618569674 he:0.02850804470809368 too:0.027534424621551954 very:0.0273346348558138 her:0.027183976065360292 his:0.025860111954880333 their:0.02112896166305347 more:0.018641979164655535 re-:0.01739087532475552 :0.12553879758062067 +of:0.08471158294608466 the:0.0784438437743542 and:0.06720291665013167 to:0.046122408044339536 be:0.04046161143939536 in:0.027015564105553006 or:0.02435480735182264 for:0.020708581282078056 re-:0.019876814990101653 a:0.019001442367514877 was:0.017086966244810257 he:0.01604154291250958 that:0.015254506438979668 been:0.0144517087438338 are:0.013598540775756165 :0.013261930010872289 is:0.012996389654437859 their:0.012513526857303347 by:0.011245002537989195 :0.4446503128721322 +of:0.10315728589955336 the:0.07753783301293042 and:0.06821005571056522 to:0.056544822544980514 by:0.026090028103586477 Mrs.:0.02491153470295127 .:0.021351273840186855 :0.02075803949875941 said:0.014475554566012426 for:0.0109894779256121 that:0.010252036204913125 in:0.009492883993727254 Mr.:0.009443403230415946 The:0.009089338965105272 a:0.007760959936423997 on:0.007716799943959448 boy.:0.007424118387051521 -:0.007239186495682375 was:0.007138217722103802 :0.4994171493154792 +and:0.16049581817151415 days:0.12421407736299125 that:0.0423682206330914 soon:0.03997607409853832 day:0.03853013976753467 years:0.034858151579927776 time:0.032184224911167784 immediately:0.031027442384911633 months:0.02949846719328513 until:0.02693334717058679 shortly:0.025140972811606627 Immediately:0.022637260732891244 Soon:0.022478971419624814 year:0.021042275781545983 Shortly:0.01926602969104937 look:0.01898255565038351 but:0.017248979348461858 and,:0.017059118292236632 long:0.013923833299873161 :0.26113403969877785 +and:0.1740007248845552 to:0.09876674395409803 not:0.03237349005079717 that:0.024014376656934705 or:0.022840877740201913 who:0.022052598538527538 of:0.021638491270845807 will:0.021298266202625062 re-:0.020505432833915756 which:0.020380619866447413 be-:0.02016858413091057 would:0.01961868809147256 there:0.01909091247887119 it:0.018292331437283312 he:0.018100623252480273 be:0.014906151206566987 I:0.013712294639720561 have:0.013148705999797922 for:0.01233301673244921 :0.39175707003149884 +they:0.169806533279317 who:0.10910230129596368 there:0.10088860843978313 There:0.06609035279936817 we:0.06228429700290251 which:0.0540612211088361 They:0.04954453194065121 and:0.04027677367265242 that:0.03629547357682261 We:0.031173388876220544 you:0.0247960320484776 as:0.011492553671595577 men:0.009799516233226807 people:0.008978883612483867 but:0.007278422488061739 it:0.0065801549641316594 them:0.005257739087160376 You:0.005179257767665318 these:0.004586679963072438 :0.19552727817160723 +the:0.30762866751383505 of:0.1716394360981846 and:0.06274815059406258 that:0.049230676876903745 this:0.04551333259634004 for:0.04501749563526319 in:0.04275786489566799 a:0.040077050988199164 their:0.024386359453171972 our:0.02193154699884084 The:0.02080350745249203 its:0.019334789783226156 In:0.017458824991929255 to:0.016654323490444836 tho:0.015788325647616452 at:0.01434775375761776 all:0.011875765048139787 which:0.011473874495422176 by:0.009706695012764307 :0.05062555866987813 +the:0.3194132234871418 his:0.17646700494852868 an:0.06533372101738413 The:0.06171806161730775 their:0.04625757911818628 my:0.04524679236305156 her:0.04139776804347211 His:0.02299940700265995 tho:0.0220341096379684 its:0.021609911491717298 our:0.020324178445451202 and:0.01837854189439077 of:0.013338057927465 a:0.012594290833657524 your:0.012276151868635574 bis:0.00956257676090045 My:0.00895532477579882 to:0.0070516675995990746 this:0.006756822432804282 :0.0672848087338793 +thousand:0.23317595986531764 hundred:0.1808938436809402 of:0.07095051988741743 fifty:0.05440692383415987 million:0.03768328345082281 ten:0.029504902525744926 five:0.02930982045821455 the:0.014528789276842523 to:0.014243310568218788 sand:0.0135511250394322 twenty:0.013441832031457731 twenty-five:0.012198660750314543 two:0.012089042570343675 three:0.011490626314945247 nine:0.011256976735610687 dred:0.01010397905339726 thirty:0.008978387383559204 six:0.0076195757840280464 seven:0.007440518708999007 :0.22613192208023364 +the:0.5754864930055807 a:0.14708272204282846 in:0.03717385730861163 The:0.03687924196451813 tho:0.03053799951808834 of:0.024623182762484354 and:0.017584861629686987 our:0.013575303733573607 tbe:0.012524346406592552 or:0.012039379008736174 In:0.011882875428123895 this:0.010793371743442014 for:0.009692033874935817 great:0.00776131429387159 their:0.005647628783987213 its:0.0056199504238620005 on:0.004892035697115636 his:0.004166739201475574 from:0.004071189307576068 :0.026965473864909197 +the:0.19056875910873175 and:0.11480353817194146 The:0.07535141694973338 of:0.07183260123454151 or:0.06600004782379384 with:0.045770513890927865 by:0.03977952551672489 these:0.039134182043232976 These:0.033830241411145524 but:0.02671316386475022 that:0.025289416921712275 a:0.018695562917285705 are:0.01653648685997384 be:0.01616015826681615 was:0.013438651325959597 for:0.013401481923808746 only:0.013015994206857711 had:0.012799407918304901 tho:0.012778938273678537 :0.1530999113700791 +the:0.2904892233217986 a:0.28193185494781114 of:0.05968273753405794 said:0.03983216341685491 any:0.03448578208362207 or:0.02552567605736236 and:0.024820914732155967 this:0.02166251763842265 by:0.018919398519241452 tho:0.01754959744876363 such:0.01527179651233817 some:0.014470271824647437 his:0.01291134658761219 The:0.012859581680318779 with:0.01153051307463019 certain:0.011016407026397668 their:0.010664728914689005 one:0.009774789112067344 other:0.00969208310310304 :0.0759086164641054 +his:0.26020713093313647 their:0.1272938824119677 her:0.11135567525157876 the:0.06687551864204794 my:0.0640499585708376 our:0.045136044094026176 of:0.02544746097399153 its:0.023268894411902937 your:0.020917523837621858 bis:0.01932046402045642 own:0.017925848023699998 both:0.01362954037358034 said:0.012769964759168927 and:0.011509108222714804 same:0.00960904167615876 this:0.008963590636480383 old:0.0088716582717923 such:0.00834659947095231 other:0.007690840737338548 :0.13581125468054622 +be:0.3740368980274688 was:0.1041747839365837 is:0.10031792690274774 been:0.09333030438626994 are:0.05866292350078616 being:0.04343581818465608 were:0.03710421496949129 not:0.035385103088723335 and:0.023130314008445594 bo:0.01562659349154258 now:0.015442711769738798 Is:0.011629039449255541 well:0.007174779651270796 generally:0.00711203576443035 he:0.006960774619093782 so:0.006869880841435692 as:0.005664953305170367 property:0.005138467409593784 much:0.004966748806775225 :0.04283572788652043 +of:0.2094044326800705 in:0.10323064403071443 to:0.10003830707887722 for:0.06651277384544663 and:0.059888103219910734 with:0.05229638367705768 on:0.04126439815398536 from:0.0354362178188539 by:0.03150820700611748 at:0.023923279676181686 that:0.021401420699051488 upon:0.015462838440665488 In:0.01545720659661401 all:0.012395979629342193 or:0.011833585179611528 as:0.010765835272299391 up:0.010244683825641929 into:0.008022179740618366 through:0.007346693776088779 :0.16256682965285124 +and:0.09182948676813804 made:0.05865530278743353 or:0.04422477929583687 done:0.025278788989888168 that:0.020576795903300752 but:0.020311262009376874 up:0.01975976594729425 it:0.01833350235998764 them:0.017223589135164766 only:0.016693945636092576 given:0.01665241229792097 out:0.016209623477254662 taken:0.0157679138162871 ed:0.0153874435219994 him:0.014551884343458776 shown:0.012548692889998998 paid:0.012426896838788792 provided:0.012371421127691845 caused:0.011543111343320941 :0.538653381510765 +be:0.18741411866646526 is:0.1278737835583218 was:0.10146518803225005 he:0.08955845633968357 and:0.07188257524389728 had:0.04629367583767795 they:0.03626681925759543 have:0.035152944153475155 been:0.03206220425065842 are:0.03192770836674749 I:0.02898444909144705 were:0.024593677419732275 has:0.02364145654807823 Is:0.017019648655366523 it:0.015027373835921775 who:0.01221095774405727 we:0.011902170031587368 she:0.010234701642369224 being:0.010028410421859868 :0.08545968090280802 +the:0.11603527407409524 and:0.08932921258575079 be:0.08022853278957517 are:0.07441326834286215 is:0.0627436828350639 of:0.058796998466087186 in:0.05267762720305412 was:0.05194090319699094 been:0.04937422180861701 to:0.046022627956031 a:0.036756718861520085 were:0.02646958348081617 he:0.02333754088766201 or:0.021618223063780653 have:0.017883856017202895 had:0.016194139479296873 has:0.01613764401428772 it:0.014572621513123721 not:0.014178406150153157 :0.1302889172740292 +of:0.3421699406584619 in:0.0831506811109252 to:0.06519298527445823 and:0.06248458041195434 from:0.04196651939185865 on:0.04106003937934003 by:0.040670272086786696 that:0.03775226611466881 with:0.029248044699259873 for:0.02849465143852817 In:0.021155878649109217 at:0.020770426355487086 all:0.013967742136296805 as:0.012631575611515527 is:0.010344735039276623 was:0.009812120532698112 but:0.009454476091145175 upon:0.008315824149171425 into:0.007054457758250104 :0.11330278311080802 +and:0.10185576633867217 resale:0.05878808522970926 was:0.044983455761146277 is:0.035515147100655 that:0.03277972132176688 inserted:0.032038471189119615 be:0.026757594845757186 it:0.02527993274327406 but:0.02477200898178501 as:0.021650908389318563 them:0.020591099129923605 or:0.020513510639524724 him:0.01895793792980764 are:0.017810541737555915 not:0.01565136695090448 made:0.01524241478892083 been:0.014591392626663688 were:0.01455139725426082 found:0.014403563255245723 :0.4422656837859885 +the:0.3802868676162405 a:0.17486613867890605 of:0.09453636357731354 with:0.044725067679179 in:0.03558052272711845 and:0.03413074166143598 this:0.03277826175409334 The:0.02562136083350444 very:0.024057937465232365 tho:0.017702344719230628 that:0.013183812707279481 our:0.012093988946508708 no:0.011345030157696206 his:0.0108547797268925 are:0.01080256907733342 is:0.0101437293702719 their:0.0097521018080047 two:0.009712845033217598 In:0.00957950776223813 :0.03724602869830314 +of:0.14933548083130957 in:0.13367803154065067 to:0.06090947738803421 with:0.0493804206562508 at:0.04831728199632537 as:0.041159925335339506 by:0.038390343601276404 on:0.03835955256499462 and:0.03782600759206014 is:0.03331946820273745 for:0.032481465185079106 was:0.027966195544091934 In:0.024931365198345275 from:0.0225947358444717 such:0.02169677071405853 make:0.01510053205679994 about:0.012837392575790743 have:0.012662409102358527 that:0.011839772103052672 :0.1862133719669728 +of:0.1069511937626283 for:0.1042126376184292 and:0.08187856583513856 in:0.06958528721428632 to:0.06285631676821357 with:0.05285636515085885 as:0.04711427591051069 was:0.04601476589769445 is:0.04443991607040739 by:0.0397684315028912 make:0.03501596664170925 made:0.03131467375224304 that:0.025543603602394303 on:0.023990311868869373 at:0.020514036660372253 have:0.01918632182223702 not:0.0165216443264095 be:0.01596444761188386 had:0.015888963111290937 :0.13938227487153196 +it:0.17415695299507217 It:0.11891155727867181 which:0.07365354838481436 he:0.05278621298034836 and:0.052455163462033355 that:0.04779863030441497 there:0.03836913956773712 who:0.027935691250516252 what:0.022806886251769864 He:0.018379097711806562 this:0.016230468017935613 This:0.015974795738790782 as:0.015558432565755875 There:0.013825069119859148 object:0.010274091604654605 she:0.00995413027320304 plan:0.009614631966920612 man:0.009582934530166981 notice:0.009234485808389377 :0.26149808018713916 +the:0.16807735899698817 of:0.10541662057906837 and:0.05138367848570702 a:0.04141865232648221 to:0.0385989743764065 in:0.026264864977736738 was:0.019530675665220657 his:0.018900421021236905 be:0.017373825006196972 their:0.015767721170721456 for:0.01557246589796783 with:0.014071419046630446 is:0.012922913111931644 at:0.012690452250034052 are:0.010702713108721902 .:0.010158075558988393 Mr.:0.009672788574483367 tho:0.009612591781990074 were:0.009549306361446321 :0.391314481702041 +of:0.3555734407517428 to:0.07627933214854979 in:0.074070739267691 for:0.06771057071258052 and:0.05823603169668509 that:0.054714733157521615 by:0.04422253036006395 with:0.03636552493381151 on:0.02267509684505175 from:0.019978759640587946 In:0.018029300871880972 at:0.017525429498429463 all:0.013975719189786592 is:0.011372840340577308 as:0.01095769074924679 under:0.009978187212083036 which:0.009875469684639215 upon:0.009852438711323169 or:0.008470942304348606 :0.07913522192339888 +of:0.1623214006672354 the:0.10506813523105575 to:0.06253493259224707 and:0.03899266676073946 a:0.03423959397528167 in:0.027865596842353915 on:0.02485636014622913 at:0.020129985606861772 for:0.017437380554619148 be:0.012985558573539337 as:0.011410314102853272 from:0.011245214940864135 was:0.010891089781227409 that:0.010490538834918016 with:0.010183493909082566 his:0.009558423198263314 :0.00928184691540848 or:0.008907216337734088 said:0.007874039679017685 :0.4027262113504684 +that:0.27435050474302997 when:0.0936504634999025 and:0.07514715140531862 which:0.0637390162622278 as:0.05498557831961495 if:0.0396753277843658 where:0.03847508245584794 but:0.0374686916236321 said:0.03139388692667523 until:0.01900278818390128 while:0.017895471398021518 because:0.017321708662493104 When:0.015948059672308543 time:0.015167154002251356 what:0.013119112870121706 before:0.012734910158522643 If:0.012620547493008344 whom:0.011774683928828633 though:0.010411169831012573 :0.14411869077891537 +he:0.1896126204307852 I:0.1488650671280875 and:0.10871122128091708 they:0.04838745052505353 she:0.043584514993570245 He:0.042766978133585556 we:0.036056632759713506 who:0.028008618172200125 then:0.027575588423999008 it:0.01870828276269173 1:0.016480337306115103 that:0.016165810908923373 She:0.013259395404339952 ho:0.012280652344302593 which:0.010998114313928992 lie:0.010506643139614179 They:0.00931007830026995 It:0.009213259865427415 but:0.008559521525992934 :0.19994921228048207 +of:0.2917268351623647 and:0.08635478758094653 by:0.07644387211221426 to:0.07498956689763257 that:0.07309514938109743 in:0.06705300118453328 from:0.03799613467551662 for:0.03692653866970655 with:0.028065992939779065 provided,:0.025812309374190462 on:0.025181658504020852 In:0.01433826908553186 which:0.014288274129409919 upon:0.011707670743741358 at:0.011067001029860983 all:0.009221910280057397 That:0.009185702809103215 as:0.008633319367177433 before:0.008021653602937029 :0.0888903524701785 +of:0.257962857358814 and:0.10228222876496752 to:0.0959432679021204 by:0.06595249170064538 in:0.05261263569525246 that:0.04799607773377159 from:0.04033535707722095 on:0.040162799073844506 with:0.030122056654618354 for:0.027402761340805982 as:0.014901515864488485 when:0.014744699489371888 at:0.014512277990910092 In:0.011904295580279042 was:0.011220462579913274 is:0.010065158234222774 upon:0.009716600100974228 which:0.009389372943782868 all:0.009035770133982187 :0.13273731378001397 +it:0.11857892928876056 which:0.10419954526017984 It:0.10229720510101595 that:0.06796245048918885 who:0.06088908826247786 he:0.060731706658395446 there:0.047718276913133226 and:0.0298646407467943 There:0.025721626378001235 He:0.023765504777663107 default:0.02149030696489031 as:0.019132676760165265 This:0.015088553278066501 she:0.01413948392901254 what:0.014110548249504374 this:0.009613248172212615 work:0.008813388419150843 man:0.006677000754574867 country:0.0066605789516794795 :0.24154524064513283 +the:0.17713283652499567 a:0.12014435751792449 of:0.07524466384537579 and:0.05238680556719109 to:0.03671305279910663 The:0.02641985029687927 in:0.026255955203428098 as:0.022038943798726104 that:0.021247875750130627 an:0.017155145946903455 at:0.016723197885424302 :0.012129313282217124 which:0.010838880577628834 on:0.010565214310970962 tho:0.010539493248510468 such:0.01025174071508972 for:0.010210069127637656 with:0.00992366205275505 A:0.009138645146923908 :0.32394029640218075 +hundred:0.04504404469239686 one:0.01747812527238779 dollars:0.011892284144907873 up:0.010109944090976554 large:0.010013294758497323 feet:0.008858951904757122 more:0.008161354903106472 day:0.007602319399292234 men:0.007038422378933928 and:0.006937554186975062 two:0.006874218326265237 due:0.006733255451130117 street:0.0063254893368403856 water:0.006257303546449214 out:0.006233288532012559 time:0.0059518887425465015 costs:0.005728902466216922 sale:0.005377542441097439 ing:0.0051873308474207885 :0.8111944845777896 +the:0.5399299140255143 The:0.07425255791840724 not:0.06351088259972591 is:0.046608339227159054 a:0.02849310399835834 was:0.02640080820358123 and:0.026148156088873047 tho:0.01943153601783914 are:0.017364635433826048 its:0.01110418565392228 their:0.010541962014983218 his:0.010259297321204694 in:0.010070378241764363 of:0.00812788332825964 that:0.00681350355590847 Is:0.006078792773382809 were:0.006061394030770082 tbe:0.006060940544863581 can:0.006030624382172501 :0.07571110463948408 +soon:0.1173428218968453 long:0.06845611071010137 far:0.06586458402210342 and:0.05338713523841674 well:0.04721276689687757 just:0.040410486557357676 much:0.03402299648469389 such:0.02955990020079041 but:0.022434012027975653 it:0.02114675467432816 them:0.01916767502404798 that:0.017600621980380246 so:0.0165266987454093 Just:0.01604564356235017 fast:0.01580589996931478 him:0.014587301480449493 known:0.013331641363771945 inasmuch:0.0130188312087346 same:0.00996051535709948 :0.3631176025989518 +it:0.1432559018871836 he:0.1286390292402265 It:0.12841812492596144 I:0.07419050939271307 there:0.04938617973803716 He:0.045081758608067436 and:0.033952574130207525 she:0.03358554252629715 which:0.03324991740427255 who:0.024471633063763265 that:0.02436355036947876 There:0.0217910372166226 this:0.013765403459391496 She:0.012638622749569388 This:0.011133268964823485 ho:0.01096849263777988 lie:0.008862998803520506 but:0.00823064244529776 1:0.00737740561542708 :0.18563740682135935 +on:0.2960249717054278 of:0.17422723491025374 in:0.08742692559172056 to:0.07495375019293102 from:0.04508141205229609 at:0.03756515108455456 In:0.036546318162205126 and:0.02630284067442257 On:0.02561627775811605 by:0.023772707518995947 that:0.022574363226233733 upon:0.017208927112932086 for:0.01501415218125411 along:0.014990077556429844 into:0.012056152549311538 with:0.009060010533129714 ou:0.00865781065589254 which:0.00645994750650883 over:0.005777002875126193 :0.05968396615225792 +.:0.07757558255443718 and:0.03843534386180724 of:0.0268144346312481 S.:0.0264175172007436 W.:0.025498175000942813 M.:0.025135363704256817 A.:0.024804862063442606 the:0.02474724003330152 Mrs.:0.022719485312197266 Mr.:0.02104052037740484 H.:0.0205981215147232 J.:0.017699824120762896 to:0.01665097382578297 lot:0.016496933027763405 D.:0.01636642609084589 C.:0.016238980352349584 :0.015363068006910787 May:0.015321580145209205 E.:0.014540499379382956 :0.536535068796487 +and:0.2771444436620711 is:0.060447727904244755 was:0.05309216082177133 are:0.04498883488508253 be:0.02904665176587781 more:0.028374247429116012 were:0.02120036211901893 but:0.015988496429989427 been:0.015536138741023595 that:0.013068151111180983 or:0.012953896101094424 as:0.011997076956017393 not:0.0099443136457077 Is:0.009027039181533773 I:0.008967281671891682 now:0.008511883993336498 ;:0.008501819973379643 being:0.007383692156225239 and,:0.007102164821014853 :0.35572361663042235 +Mr.:0.28114782734558935 Mrs.:0.08607785311250735 Dr.:0.07336570521210663 of:0.03810506835379293 .:0.034902611465441734 A.:0.03147340206633258 the:0.030477512467737347 John:0.025660576988495918 M.:0.021391310073413144 C.:0.0202836192368786 H.:0.01993398857981599 W.:0.01973218634532446 R.:0.01864604039020663 J.:0.016978595141404984 Gen.:0.01602825247570778 and:0.015116613809996151 St.:0.014471553096016826 The:0.014339022164258537 D.:0.014319231766554372 :0.2065490299084187 +one:0.1028303141280697 part:0.05963429477052991 out:0.04766456937681193 some:0.031418679026461914 members:0.030764490253327767 side:0.029940657362655835 portion:0.022063658796890564 office:0.020457735219956013 member:0.019726706386316174 end:0.019666887540649894 tion:0.018667441728710307 parts:0.016814747270460957 people:0.014112771422418794 all:0.014072739582212475 any:0.013183573287639892 One:0.013083578354183906 that:0.013024335602903442 account:0.012482348155001894 many:0.012077825070275192 :0.48731264666452345 +and:0.08995317707915026 to:0.06844710404109794 of:0.04605142056172993 the:0.04074574508561307 which:0.02479116931334353 that:0.023764822140213245 re-:0.020841117231308055 in:0.020803825395358622 for:0.020278423301550053 :0.018417753428486977 not:0.016860793136637672 con-:0.016444405871234195 is:0.014386481772210856 or:0.014080680914153714 be-:0.01352268143271276 I:0.01317002660943805 was:0.011429878269381662 dis-:0.011196807025842847 he:0.01113106290024311 :0.5026826244902934 +and:0.18788059173973984 as:0.1160592815369378 that:0.1129145986226679 but:0.07038217599580945 when:0.04820663431454561 if:0.045772570794620035 which:0.039678949485629375 do:0.03443102310003362 what:0.02856873512443449 If:0.022682865739362474 But:0.018817709209187013 because:0.016265253441921836 And:0.014182676726836808 so:0.013003246238264956 When:0.012228143594541963 then:0.011635538302360802 where:0.010688046352131799 did:0.010140279753748071 As:0.009195939876667836 :0.17626574005055834 +and:0.07895257911471103 was:0.03596317658514438 out:0.024016824392823457 that:0.023672598027062328 placed:0.022844208461019616 work:0.021707439938587154 made:0.020781005318872947 is:0.020224993929329655 up:0.019794182040466738 put:0.018288921183371155 down:0.0171740551508179 interest:0.01663630075189571 point:0.01659978677065351 him:0.016175999448187352 held:0.015562908663841706 Dakota,:0.014616466073415059 place:0.01424333231426501 Minnesota,:0.014067166610364513 it:0.013665465625771424 :0.5740125895993994 +and:0.07387132609559574 is:0.07328312236991763 as:0.04773317776552537 was:0.04328225018648639 able:0.042887945174683174 not:0.041326531116696416 enough:0.03539686146360627 him:0.034810473883452805 order:0.03379730510068341 necessary:0.027311755213551385 right:0.02728638765674209 them:0.02152191739464329 me:0.021055936364071104 made:0.02038179549121542 are:0.019564352939060836 going:0.018573562707943903 refused:0.018155275803135088 ready:0.017036375836320727 had:0.01606679454614271 :0.36565685289052624 +the:0.2902741916718498 of:0.17851084387824215 said:0.04862634758319497 and:0.028370384274299013 Eng-:0.028273452346014583 for:0.024264043332802115 tho:0.023051735353998657 in:0.020246167280954176 our:0.019926806655122774 this:0.0191791138997473 his:0.01696067391528487 their:0.01496745687755573 a:0.0124478603300856 to:0.012267450734179073 tbe:0.01046987539230753 The:0.010082659045033965 by:0.008861244117839196 with:0.007689047452644496 great:0.0070482498307969845 :0.21748239602804698 +and:0.08523213792953777 to:0.07425610006508139 of:0.06071417669958742 the:0.04322419464702753 in:0.03421134863353001 not:0.0287908049549799 for:0.02798387296848893 that:0.026110852472119025 I:0.02570600474601996 re-:0.024287259293019645 be-:0.021067445943208814 :0.01957634741587974 con-:0.019018427224614103 or:0.017888217200002533 which:0.016541633124877397 In:0.013970106813344116 Mr.:0.013890269036394343 dis-:0.013068499554597235 will:0.011891265061331395 :0.4215710362163587 +and:0.0676190294368366 demand:0.02482750299722694 not:0.022275477171309593 used:0.021364601910771514 was:0.021066005666454814 paid:0.021008796918426095 is:0.019606166843940204 them:0.019536501820475637 been:0.018011013614977256 time:0.017676794408586386 made:0.016644195905159524 be:0.01647863665384237 him:0.015464795116982302 day:0.015394305275769687 are:0.015081636724207063 pay:0.0147042276166238 or:0.01368366992487821 bidder:0.013558593950587627 about:0.013487309840432442 :0.6115107382025119 +he:0.17564383349136126 I:0.12264719497103374 it:0.10711857642098689 they:0.09465591783997006 we:0.04886349057469929 that:0.04135812132943049 who:0.035475463666939724 she:0.034575291480606646 It:0.029741524139566707 you:0.027904126053542366 which:0.027092079451942377 and:0.026878651152908637 He:0.01195367330402687 ho:0.010851008777057962 1:0.010460890940593546 as:0.009546520280353406 man:0.008185778034287656 one:0.007927371739568423 We:0.007703302398792969 :0.16041718395233098 +do:0.38135725862767567 did:0.26597083178019326 does:0.08619584051778495 could:0.07138439561650704 would:0.054509956368381816 will:0.03911260868934924 should:0.010081797081122354 shall:0.009195077767790504 may:0.008925275073817572 Do:0.008414370785343574 and:0.008027647478715528 docs:0.007958262175661502 is:0.006239161339290458 must:0.0057599840638885855 can:0.005062705986852682 I:0.00478598785960484 need:0.004142310341986941 but:0.004130586572955883 we:0.00382637360891428 :0.013919568264163344 +the:0.33697554022927384 a:0.10898663880855818 this:0.059160974269496625 The:0.04270359381187207 that:0.032502856962948946 good:0.03096591293603581 any:0.028899767702032328 of:0.02599355015826656 corn:0.02404397943159723 and:0.023977265874057418 every:0.021875481773254626 wheat:0.019142951310257263 an:0.018807322226114413 tho:0.016144830993915126 great:0.01603637230228645 new:0.015632513443386977 This:0.014934956927333883 cotton:0.014718096466907195 no:0.014185215112567618 :0.13331217925983746 +and:0.07895257911471103 was:0.03596317658514438 out:0.024016824392823457 that:0.023672598027062328 placed:0.022844208461019616 work:0.021707439938587154 made:0.020781005318872947 is:0.020224993929329655 up:0.019794182040466738 put:0.018288921183371155 down:0.0171740551508179 interest:0.01663630075189571 point:0.01659978677065351 him:0.016175999448187352 held:0.015562908663841706 Dakota,:0.014616466073415059 place:0.01424333231426501 Minnesota,:0.014067166610364513 it:0.013665465625771424 :0.5740125895993994 +the:0.42031309931750616 this:0.07056909245498055 said:0.05834831518422105 The:0.054807162746358384 that:0.027076959170086973 of:0.024705356526225054 and:0.02265760641461931 tho:0.018022704942579217 a:0.01350864672223861 Custer:0.013377226102851945 our:0.009095955051309996 tbe:0.008388870914265914 York:0.0075738579665922115 other:0.007541136975857404 such:0.004601024379336507 his:0.004518603765896313 A:0.003920955658748255 or:0.0038688793678857097 your:0.0037943669107657757 :0.22231017942767464 +a:0.25947688986345707 the:0.12432749265216836 so:0.08625665220007557 of:0.08496008206930335 is:0.06181805282531752 with:0.04832305438434882 are:0.043263148003886844 be:0.041861305771731756 and:0.0375952632426013 very:0.028265849411568112 too:0.026900633160025604 as:0.02363581403278771 was:0.01631252274897214 by:0.015387857493187038 been:0.012026200384365372 The:0.010918477153020398 no:0.009641845822149601 A:0.009513585442761208 in:0.00948327172060728 :0.04903200161766496 +of:0.09129790931378902 the:0.07369883040827747 and:0.047842263382354346 in:0.04189055351593407 to:0.04045875475680249 a:0.03542341257202578 be:0.02020462051672066 for:0.01979292654746225 was:0.01760256398103379 at:0.017380150555488715 is:0.014984483003968216 with:0.014047653760730413 by:0.01374644383819499 :0.012670486581795598 In:0.01200961464556976 or:0.011563835749786333 from:0.011391516893522809 are:0.011273104484969465 that:0.010755276030689069 :0.4809655994608848 +and:0.07898266857453799 the:0.0759382141004747 of:0.06475253211543615 to:0.06263605683985181 in:0.023084963679026623 be:0.02276746811493824 he:0.020075509872768488 was:0.01752090665571931 a:0.01751960838293322 that:0.017367617847253543 no:0.0168935151341711 I:0.015437190012280022 for:0.014443674386813028 which:0.013615162365825058 is:0.013422197191254403 or:0.011894572460966918 they:0.011850352938556451 will:0.01177949646755013 been:0.011569504437405403 :0.4774487884222374 +of:0.2165214387432904 with:0.11000124809411192 as:0.07262468594939706 by:0.06751447044369058 and:0.0640255717901777 for:0.04501016994580888 in:0.04391165699861326 to:0.04331434390387061 is:0.04022548855382853 that:0.03320372877069764 such:0.02889380174586635 was:0.02750971332803303 be:0.024106614637955572 on:0.021619417984700864 from:0.017087514632441292 made:0.013402554775022295 upon:0.010791539452912864 like:0.010522856757623794 have:0.010112988922716955 :0.09860019456924039 +of:0.11612482305206981 and:0.06356839079129821 in:0.03777915221542686 to:0.03624551483870151 that:0.027443230194629607 on:0.02312822586607452 for:0.022477089050882942 things:0.015359723357775905 those:0.012573795546543136 by:0.011831423162610986 but:0.0096323414493642 upon:0.009457852428527692 with:0.008901882196844254 from:0.008887439883860891 In:0.0070271962038077965 laws:0.006597068072522801 party:0.006220269646256386 law:0.0061105026759166806 ,:0.005817865707339337 :0.5638162136595465 +the:0.10779121723677947 con-:0.09751217762720392 a:0.09255338681868522 certain:0.03685882406241766 and:0.036133026734628634 acre:0.035787265609107284 con­:0.029309132753666676 con¬:0.028686640879902088 said:0.027492444381443455 or:0.0255191224205739 described:0.02359454317392714 this:0.01971579357767519 of:0.01853402914124427 that:0.018405436679532445 any:0.014392968053471048 pro-:0.011745177161581525 other:0.011294021250193081 in-:0.010782930543373261 con:0.010182235991392487 :0.34270962590320125 +it:0.15590291243815246 there:0.0887784025092866 It:0.07904016205387611 which:0.06936908824431676 they:0.05362226352982171 that:0.04647101454662571 and:0.04420120519214072 he:0.027952982163116303 There:0.027623278151575524 mortgage:0.023443129896555264 you:0.018859539766003214 who:0.017891862574647276 this:0.014117846301193209 I:0.01363040583752058 sale:0.011818751696880098 This:0.010767348085132659 work:0.010306262168963347 as:0.009927627839447666 They:0.008978002990569422 :0.26629791401417535 +of:0.2094044326800705 in:0.10323064403071443 to:0.10003830707887722 for:0.06651277384544663 and:0.059888103219910734 with:0.05229638367705768 on:0.04126439815398536 from:0.0354362178188539 by:0.03150820700611748 at:0.023923279676181686 that:0.021401420699051488 upon:0.015462838440665488 In:0.01545720659661401 all:0.012395979629342193 or:0.011833585179611528 as:0.010765835272299391 up:0.010244683825641929 into:0.008022179740618366 through:0.007346693776088779 :0.16256682965285124 +the:0.53055075326174 a:0.13448068764038715 The:0.0667731258639529 of:0.040741979565632636 tho:0.03419056109890991 and:0.022735342820053673 that:0.013823226437118433 tbe:0.013104106056170328 this:0.012525864244836534 an:0.01097621068395683 our:0.008041978723744191 new:0.006947440660130934 by:0.006290809408139003 every:0.005626318991756681 his:0.005379187968933785 Tho:0.0052454965352754235 or:0.005220379323859326 A:0.0050908247307230635 any:0.004719652721503468 :0.06653605326317576 +It:0.16483324464261526 there:0.15137929784652215 it:0.1389856574030547 There:0.07635769296985051 This:0.047005115735994085 which:0.03400493914593651 he:0.03276953491232582 that:0.032534901302704186 this:0.027705240540618296 He:0.025980981107979893 and:0.02571984886254885 who:0.015928391857077187 Here:0.008658225427457844 That:0.0071330239854848695 she:0.007117899171284279 one:0.006746549293447637 She:0.006029619888080546 man:0.005607440676998042 what:0.0055587671977417805 :0.17894362803227754 +a:0.7057976984628921 the:0.06334557518997386 in:0.04646882987192219 very:0.024451151191823624 of:0.01970074127487615 A:0.016252377310732414 any:0.012978343163790684 some:0.012941044230720521 In:0.012208000316397736 and:0.011716182870959066 no:0.011375962085394353 his:0.005953507168469746 make:0.005853409181644313 with:0.005753203831745313 their:0.0056983563208581256 for:0.005348550738622289 to:0.005017416318050388 every:0.004777789169562646 or:0.004506446802258159 :0.018855414499306326 +number:0.043034686074966744 out:0.03706265727020924 means:0.026403666907364665 purpose:0.021116437584220177 place:0.01900988886454978 and:0.017430082056340657 full:0.017024394293577223 form:0.016605452603114496 amount:0.01607882447407104 line:0.01595939258681507 matter:0.015290165780658322 years:0.014718169498475615 case:0.013787366395632841 be:0.013459972142169555 way:0.013123304621654433 tion:0.012898098185232215 rate:0.01267161169660959 is:0.012379246050060726 sort:0.01207946472062964 :0.648867118193648 +;:0.03183679991576789 and:0.02827150429435597 :0.010398014996957888 it,:0.009319339102908976 that:0.008715455855612357 I:0.008500071477859302 them,:0.007690145529868824 is:0.0075249883018029574 it:0.007429408880617664 but:0.007185422161138684 is,:0.00639129188254342 he:0.005866304913566489 was:0.005623108317151709 the:0.0054980509665755045 ::0.005047049740312956 ,:0.0049881255770122205 States:0.004975865085739499 time,:0.004523528970331593 which,:0.004484616824396533 :0.8247309072054796 +to:0.44173024390023774 will:0.08347180592642518 and:0.07654140398207998 would:0.03995763258971917 I:0.029244993824150026 may:0.025794527027327322 not:0.024040920436993678 could:0.01780927773743631 can:0.01686843288785861 should:0.01575826740701215 shall:0.015264113598068795 must:0.014362704558110591 they:0.013703078314063677 might:0.00996270229689514 we:0.009446018245682293 ever:0.007585287336886961 then:0.007470002949999559 who:0.007036253203813226 To:0.005744240897754366 :0.1372080928794852 +of:0.45828567953706023 in:0.1488854912008865 to:0.07097880784437291 on:0.042003946989017285 by:0.04106548716694851 from:0.03119733782703426 for:0.028410869299865575 In:0.023230796551567373 and:0.021825478768571 that:0.020934211802872527 with:0.01492473970826543 at:0.012005704903547297 upon:0.007832368896795585 ot:0.004746046157150854 into:0.004740775840651747 as:0.004597775500032228 all:0.00425899669122799 which:0.003997320246449803 before:0.0037192379066699104 :0.051358927161012966 +Mr.:0.37762296461811345 Mrs.:0.08038627511105481 W.:0.06251364237888339 J.:0.04938888412931882 .:0.040904652793736104 H.:0.031228376924990114 E.:0.024526424571930012 Dr.:0.023218725851050472 John:0.022646196439923286 C.:0.02218746643338707 M.:0.02134262868180473 F.:0.01980943813429523 G.:0.01903960896156299 L.:0.018612529983074493 A.:0.018587207883677192 and:0.018157442502434933 Senator:0.01721270823870682 Miss:0.016104507245321777 R.:0.015772826690470386 :0.0997374924262639 +of:0.15065214162601331 in:0.051727721827832265 the:0.050213896054371425 and:0.04844023235243908 to:0.038928093010690196 at:0.032908905553486446 for:0.03046618318088273 on:0.027524126096925627 a:0.018837840633855064 by:0.015528875084716004 with:0.014473967782836841 In:0.013330254878536193 was:0.01321860590019841 :0.01070525866597878 from:0.009176755442556682 be:0.009061129164063045 his:0.008597069838384921 or:0.008244144226926164 is:0.00762771069305446 :0.4393370879862524 +the:0.16807735899698817 of:0.10541662057906837 and:0.05138367848570702 a:0.04141865232648221 to:0.0385989743764065 in:0.026264864977736738 was:0.019530675665220657 his:0.018900421021236905 be:0.017373825006196972 their:0.015767721170721456 for:0.01557246589796783 with:0.014071419046630446 is:0.012922913111931644 at:0.012690452250034052 are:0.010702713108721902 .:0.010158075558988393 Mr.:0.009672788574483367 tho:0.009612591781990074 were:0.009549306361446321 :0.391314481702041 +to:0.09864282010030183 the:0.08375297126946753 of:0.07074571151673052 and:0.06779046829403 a:0.02766650927741597 in:0.021670314456411932 at:0.021392828982420006 for:0.01627599403114278 is:0.015107338441904122 he:0.014818877918256685 was:0.013808540905081488 by:0.013132601340090633 it:0.012796195965848819 I:0.012723560421513859 :0.0121914922721236 not:0.011777366450725432 .:0.011011346691779235 that:0.01092359583028988 with:0.01073896800850032 :0.4520324978259654 +the:0.6174636287715428 The:0.061957561939999184 tho:0.02972531052697599 of:0.029231758633578617 that:0.02571073941544998 this:0.01829395675077106 to:0.017371739452287666 and:0.015294205510387503 any:0.014301900027331685 tbe:0.011390991477428735 his:0.010993646691897004 our:0.010324596411626724 their:0.009964863191185757 every:0.009743003442396543 an:0.008398105238188623 a:0.008383285379802236 or:0.006938418971902011 such:0.0063873207346139774 by:0.006219089673268679 :0.08090587775936521 +it:0.24821867953307553 It:0.12491417828142069 there:0.069306522105283 he:0.059799171357782996 that:0.05448913452171614 they:0.04308045581579138 which:0.03975166646880763 and:0.028391784481365753 I:0.017785057885554047 what:0.015014723986643873 who:0.014813518986538871 she:0.012277284734011025 There:0.012075841823057449 This:0.011660321731650861 as:0.011471599182449319 this:0.010417679117785841 work:0.008583289274340197 He:0.00780328791147001 we:0.007024892215396919 :0.20212091058585846 +I:0.2270757494202284 we:0.12198451299124506 they:0.12132007300932493 We:0.08226272443949183 who:0.052078621192277526 to:0.04674868558565357 and:0.039139007277529315 you:0.03728717086809822 They:0.028424842485011023 1:0.02184088342547565 would:0.016222940085224225 "I:0.015062482890720322 will:0.012269401432579468 could:0.01087993986707566 but:0.010327133678487822 can:0.010152250372158306 people:0.009656710944150326 he:0.009398595408284695 not:0.009244240665470645 :0.11762403396151297 +the:0.2221534699770042 of:0.21308653640519057 and:0.049437255633796466 for:0.03844483252225202 The:0.03451347581994519 plant:0.033005423350412025 that:0.026857664622041654 or:0.02273152752949866 as:0.0213618104071247 its:0.020404397977483044 in:0.019142773686568648 all:0.018549354576930594 this:0.017447346854887878 her:0.01732197205688366 tho:0.015131941971089967 any:0.014238368577818194 his:0.013357143810630582 other:0.013120818380078123 our:0.012824788328336221 :0.17586909751202762 +the:0.203376985977038 of:0.07317105014325653 a:0.049932096854869046 and:0.049669150667366824 to:0.041451345444366815 in:0.034233313707894314 The:0.01926514943791699 that:0.017635501571586023 an:0.015228930791621588 by:0.014841647676670332 from:0.013999456353789312 tho:0.013887494681859633 on:0.012025414883665089 :0.011386532853420275 at:0.010129341255617371 for:0.010008173587918745 with:0.009951067195538508 In:0.009242710982003202 as:0.007800059571487469 :0.381764576362114 +of:0.16429167129287006 and:0.15103331036619608 but:0.05916103866327675 know:0.05642866301829085 that:0.036483652352807296 But:0.03368357657414704 to:0.03325437639450407 for:0.029723800568339585 knew:0.02760994155554085 in:0.02277710618638467 or:0.020060151573032533 And:0.019440652326345953 see:0.019080705504038762 as:0.018804273622052448 with:0.018803208971092035 from:0.01786877721976003 is:0.016196279836187995 by:0.014972373317088405 do:0.014411239366331688 :0.22491520129171286 +of:0.12248118080873463 and:0.08911455866763607 to:0.060718186313411304 be:0.05617531793833475 the:0.04850555877328822 a:0.04669679773085377 was:0.033347021182935345 in:0.027563887792699453 at:0.021783993553493433 are:0.018919368224104317 is:0.018298034682996712 were:0.01818318243986118 been:0.017546548232038366 he:0.016464761638105837 with:0.01540626440359704 or:0.01535414000342175 for:0.014119211398596739 by:0.013029065338347643 that:0.01237934714406145 :0.332913573733482 +I:0.20782629462962746 to:0.10150742158215448 we:0.08915211648555643 they:0.06601250755551179 would:0.06064053333550346 We:0.05442639044719931 who:0.04597308974506371 you:0.043232263880474076 will:0.036614408220058695 and:0.03560179069572908 1:0.027085833771361815 not:0.02483104102223797 They:0.02157322190533113 should:0.0180393029617532 must:0.018018153707088307 could:0.01523013580491152 may:0.014551596555921895 which:0.013715917735893816 "I:0.012227484338353906 :0.09274049562026794 +the:0.15979726740915465 and:0.0974889101628097 of:0.07994712868353275 a:0.053058772939628324 The:0.026563932201244658 to:0.025934267934175095 was:0.021094249233709464 that:0.020457227426893803 Mr.:0.019180779887540408 or:0.018838592976515654 be:0.01837974625721799 is:0.014932817551690583 tho:0.014155382420311663 :0.013858036012132584 for:0.013011265323413668 I:0.012549248846426646 are:0.012136141499217221 as:0.011789263578181395 he:0.011530057221557205 :0.3542969124346465 +and:0.06317916895143688 was:0.03089079697380977 is:0.020044819943736053 be:0.019406329289829806 are:0.016631216139614186 that:0.015910745835586493 it:0.014132589635136123 been:0.013429954470292457 made:0.013153338042273357 were:0.012494049396038097 or:0.012369181282419555 them:0.011608721240324167 up:0.01101461536327863 him:0.010833186604515583 as:0.010718511743974049 succeeded:0.010682665877813333 engaged:0.010592681714621757 not:0.009777868089593193 now:0.00948198968071834 :0.6826475697249881 +of:0.11621318981185196 the:0.11281542982589464 and:0.050537908132489796 in:0.0464885017798293 a:0.045812532752801574 for:0.036550854586031425 to:0.030700127712666406 that:0.018702532279646942 In:0.015952752532226885 :0.014185317842094276 by:0.01318682662449071 said:0.011288391698355445 at:0.010819964149665521 or:0.010607611537675357 during:0.00893482184021926 on:0.008595422690894694 -:0.00845757300041284 about:0.008018881824624055 from:0.007043142446454164 :0.42408821693167476 +and:0.41331458107349367 was:0.05564105298718968 Since:0.05400968689366924 And:0.04331444622261826 is:0.021284175057342692 were:0.015566765439833955 but:0.014848974993861373 ;:0.014650199523523201 are:0.0142773167695849 He:0.014252603103474037 I:0.01353473306859902 it:0.009580682928979872 that:0.00921325857438325 even:0.009102464699971329 he:0.00862316633585832 or:0.007945010288694734 be:0.007492115324313499 aud:0.007395301984027002 Why:0.007289924090695575 :0.25766354063988645 +of:0.28767355066866834 to:0.08775711267569858 in:0.08678131196995101 and:0.05160598694501188 on:0.04646139928102899 by:0.04519522654900943 for:0.044547789071328545 with:0.03396756772609607 that:0.033699232901107726 from:0.03075346596941143 at:0.027039283056790858 In:0.021061449543044047 as:0.017514234937992545 all:0.012543839382496166 upon:0.011844431150487573 is:0.00998972746569266 was:0.008814315973987914 into:0.008557199930727406 through:0.007781895704231326 :0.1254109790972375 +the:0.1622944884319589 of:0.0994959569633945 a:0.061219981464022175 and:0.06013281817937913 to:0.05408526681593981 his:0.04627150197433111 in:0.03711681143525799 was:0.027410208965143606 be:0.026707683073376207 is:0.022563583873416875 their:0.020955169386735903 at:0.018926087859028662 for:0.014195271753532687 her:0.011679796245452496 not:0.010175742345201286 tho:0.009392240655170093 are:0.009299334738201671 been:0.009279596802473221 its:0.009251201510743384 :0.2885472575272403 +;:0.027488708181287687 it,:0.01958917362811013 them,:0.011734148321642797 him,:0.009807221804048033 in:0.008313229650925371 time,:0.007688385999744575 him:0.007389625085221205 country,:0.006853233578626019 years,:0.00626528268415626 ,:0.0059988628132242065 and:0.005839985371392634 people,:0.005728202179933982 up:0.005606460628007509 up,:0.005333752120618328 year,:0.005161777230700628 one,:0.00505844778761419 here:0.004939839190866411 out,:0.004781955925715608 it:0.00465859216314566 :0.8407631156550187 +the:0.19979710092866962 of:0.12483581961094871 and:0.1134027917435665 a:0.059435017059662365 two:0.04654845946093054 most:0.03486216259609195 many:0.021067003860499072 three:0.02063837376921121 Two:0.01977877247015505 with:0.019303385829908832 their:0.018829987789324314 in:0.018158495536807946 his:0.017500823967606195 The:0.017112537655205637 some:0.01613826044232496 for:0.016067281433874127 by:0.014378992368076974 or:0.014103572158273623 few:0.013156033936433555 :0.19388512738242883 +and:0.0430198379743032 meth-:0.040417900666172346 of:0.03243117329221043 to:0.02160942447731461 .:0.017051242169778512 :0.013084199254807244 is:0.012487244218096553 by:0.011917122672178503 with:0.009797841252566344 for:0.008956764135401927 in:0.008655148705625821 the:0.007745110912154212 it:0.007470374719281243 was:0.007128559781676324 -:0.0068677064010085635 that:0.00603608785835334 as:0.005826840619639738 two:0.005749525163588421 than:0.005019770073979647 :0.7277281256518631 +of:0.10757436361674565 the:0.09992876908196636 and:0.0645473661246249 a:0.05743504124747777 to:0.05284261162714429 for:0.05060512761088934 in:0.038807126015584927 that:0.029121814546733377 or:0.016759964558687918 as:0.014127896340416049 with:0.01395878092686395 by:0.013101808331926552 which:0.012521478846378033 their:0.012121338621186558 be:0.011696335518995557 all:0.011419306393160319 :0.01097506680472572 not:0.010369185845131437 more:0.010016259251284184 :0.36107035869007714 +not:0.33331321499898836 or:0.09811602337627603 much:0.05237693142085705 be:0.050377951877451234 in:0.04116651743772567 of:0.04086363469600837 no:0.0364767938568912 for:0.03459834122996516 and:0.03067788826534756 with:0.02340011874270719 nor:0.022692163260916724 nothing:0.022124815891777488 to:0.021716992613985735 is:0.020904688430088126 was:0.012615952949990211 been:0.012509363226697491 far:0.009844170237023067 do:0.009806820120474468 at:0.008709332862500682 :0.11670828450432817 +:0.057180237052049124 it.:0.03112027135787407 them.:0.01878759390039664 him.:0.012291280440437874 country.:0.008902190176167937 time.:0.00850728180988427 again.:0.00741209867207621 people.:0.006649189107932196 life.:0.006350863629674442 years.:0.005842136307931348 day.:0.0057512060098802035 ?:0.005642915723240502 .:0.0054683449466105495 her.:0.005316127761045701 all.:0.005086282898369863 year.:0.004888067860339647 us.:0.004827732960343292 world.:0.004800480282936842 work.:0.004521198230653534 :0.7896545008721558 +he:0.24412378114518254 they:0.1296355245010359 I:0.1106974099160066 she:0.06551794511473247 who:0.050126375666211 we:0.04144147741989074 it:0.03282307881584797 which:0.02369758451022361 and:0.023441431257690822 you:0.023208091989936466 He:0.02234208832473841 that:0.02131622881983612 ho:0.017337807395665292 man:0.017200947676961748 one:0.015320285884530941 1:0.009843014261496096 She:0.007955193661766577 It:0.0069283985743163 They:0.0065093401232955055 :0.12953399494063486 +it:0.12175567527684546 he:0.11527828887688028 It:0.07712789666619692 I:0.05831090499983079 and:0.05536569833582008 which:0.05110217547721349 He:0.04270774978385059 who:0.041802533477656945 she:0.02588120306232349 that:0.023797640355249682 there:0.021392384644460128 She:0.011753503641442354 1:0.011715088937660207 as:0.010831847903087109 man:0.009658372000397122 lie:0.00949182857645732 This:0.009232341479577128 ho:0.009137625897784067 There:0.008560000620538508 :0.28409723998672837 +the:0.19228642304071347 of:0.08544358066589247 and:0.07770112146850654 other:0.06945979455643343 The:0.057765356605791886 a:0.03439029129095588 such:0.03422014975463115 his:0.03206021069958311 their:0.021685561276855277 that:0.02019222745303674 these:0.01766039252630915 this:0.017454372797441033 in:0.01729381311932382 my:0.016134320279556306 as:0.015622525611519512 tho:0.01507124977670518 our:0.014965526682013376 more:0.013187394122140417 be:0.012823842044591315 :0.23358184622799993 +and:0.09994206277401263 was:0.07259983394981913 not:0.05381142577343629 in:0.053589189411155945 be:0.04658929767543418 to:0.045936698101441485 of:0.042640341245901305 a:0.04230590703406793 is:0.04204635290203042 the:0.038076981972956184 or:0.034961771791445564 for:0.030083684562185468 are:0.027588409371211087 were:0.025703395987749216 In:0.02487674140789175 that:0.018127135496838587 been:0.01810258918933264 his:0.016599506199934642 her:0.01620608702660577 :0.24921258812654978 +that:0.1577429470632027 as:0.10923886497479111 and:0.08672043336282 but:0.061772185104416934 when:0.046268621430091965 if:0.04053912805634182 which:0.03583043658957001 what:0.03469699835787279 If:0.017549799693531612 time:0.015093292091379796 But:0.013479564131014175 so:0.013332512411984078 When:0.012798766089383108 As:0.012371707961820872 where:0.012345074672329604 because:0.012082138412817583 whom:0.011976813409609549 me.:0.011203231351473716 though:0.010646064031920128 :0.2833114208036285 +the:0.6341564589259524 a:0.08495959974430758 The:0.028619757629310877 first:0.027540563890795993 tho:0.024292795204885333 some:0.021313859807163296 in:0.020720253902622998 any:0.01762316220042532 this:0.014637393006402185 long:0.013747516798525638 that:0.013544303397170582 same:0.012510924181033207 short:0.010108810651381821 tbe:0.009512097255056988 present:0.009394668307318816 of:0.009338802833839872 no:0.00789433893434668 In:0.006896812250809434 and:0.005984532336408529 :0.026203348742242345 +Mr.:0.1860865556895025 Abraham:0.0922222024908401 of:0.08523570550988253 in:0.057170827687097484 and:0.051131771661422284 the:0.043392827943951565 so:0.03536174462595272 .:0.020534487722126585 President:0.02020326909586894 for:0.016458344585524722 by:0.013149678579947376 In:0.0122876455872892 Mrs.:0.011787887577936517 with:0.011282155415247318 from:0.010931009034402537 to:0.010315863498638559 :0.007321114398953733 de-:0.007094583178394021 Dr.:0.007009519491539021 :0.3000228062254823 +there:0.4694266689058738 There:0.23280324800889152 they:0.06884501658022134 They:0.023564906850040757 who:0.016229446145291312 we:0.015926491293224175 and:0.013358365260385318 it:0.0131594770393517 which:0.011879912632440913 thero:0.007102334068788736 that:0.006871025376021419 We:0.005447420530528055 men:0.0054262998119426675 It:0.005373246121270323 you:0.005262451064324877 he:0.0038641391897634657 them:0.003859204273888408 I:0.0038418017581576037 but:0.0032276144496397223 :0.08353093063995387 +a:0.19888522965087077 the:0.14065888064282314 The:0.09393013332094155 young:0.07274691872312065 that:0.05500290565221607 This:0.041195483799534166 this:0.04057895165487954 one:0.02754067584811437 A:0.025835954088177928 every:0.025717122402820976 No:0.025279625748697448 old:0.023100932321975378 no:0.0191881550813994 any:0.018514744506827607 of:0.014758436583608628 business:0.014503815061086155 poor:0.013867272297297426 white:0.012896891357005322 Every:0.012587680360684212 :0.12221019089791925 +of:0.09129790931378902 the:0.07369883040827747 and:0.047842263382354346 in:0.04189055351593407 to:0.04045875475680249 a:0.03542341257202578 be:0.02020462051672066 for:0.01979292654746225 was:0.01760256398103379 at:0.017380150555488715 is:0.014984483003968216 with:0.014047653760730413 by:0.01374644383819499 :0.012670486581795598 In:0.01200961464556976 or:0.011563835749786333 from:0.011391516893522809 are:0.011273104484969465 that:0.010755276030689069 :0.4809655994608848 +the:0.32643580420830276 of:0.10258818861910642 and:0.08417291807643339 a:0.06096906833917246 his:0.0356095242294004 in:0.030784695689308222 to:0.0278852155638886 tho:0.023883889152815987 with:0.02269040316661244 this:0.017471044541966994 by:0.017203615842456447 their:0.016260761896416693 The:0.01333523898770475 for:0.012099691056506356 its:0.010945612682381523 or:0.010656248047156928 every:0.010359962158393524 her:0.009179592845410183 that:0.009090060349803895 :0.1573784645467621 +and:0.2132017975237446 that:0.07422592461110214 but:0.0730254067384115 time:0.039294978614029814 But:0.029644179194774495 And:0.021097773982708797 me:0.01940366799418315 ago,:0.01614914923770343 even:0.014283155407369482 as:0.011891128913303895 or:0.011811630401657013 it:0.011221683718581892 and,:0.010949530980612838 come:0.010565805939691334 ;:0.010288927728275537 days:0.010114257204327091 day:0.010112917394407762 morning:0.010029400791474342 only:0.009458341948235992 :0.3922303416754049 +to:0.21237035939696564 this:0.10588733842343266 in:0.09433315825833635 of:0.08892231276843993 and:0.04848789211816837 that:0.04785751071389602 the:0.0444213439252324 In:0.03931660363573064 without:0.03898475476389072 for:0.037129961057105795 by:0.030233546792281633 not:0.02214284091547046 a:0.01823427761413562 or:0.016011644323280085 any:0.01581621254611022 no:0.013938773077500986 with:0.013659044728981603 every:0.013526307729965487 what:0.01146993317163281 :0.08625618403944256 +of:0.27237667256106624 in:0.09790830816916433 to:0.07578865850006687 for:0.06727140756147164 that:0.05314683499881438 and:0.05260010187559601 by:0.045141473157062614 from:0.03845548289804407 with:0.03731564715307667 at:0.027947348052047197 all:0.026615404885701317 on:0.024278397973068643 In:0.02256384562341126 as:0.01826610653330426 into:0.011685793298071774 upon:0.011549427804032427 which:0.010012163977121572 is:0.009771580389445702 under:0.00950232452888838 :0.08680302006054469 +the:0.4606503558415001 this:0.19452464217414941 a:0.06735780902507557 his:0.02865015914248867 tho:0.028076855843081016 other:0.02192594706674446 our:0.02158416295758114 The:0.01999489673372992 of:0.0193335888408182 whole:0.017164200163676903 that:0.013685342094761415 every:0.012035706989948207 any:0.009541221761552974 one:0.008768893247276689 their:0.007479867789522586 new:0.006879168585509208 tbe:0.00627177259115016 same:0.0058820109075206645 old:0.005718639598758292 :0.04347475864515443 +the:0.14194631811820424 and:0.10864177203996139 be:0.09647925151676834 have:0.05917970537571933 had:0.057195396931568186 was:0.053708053010346236 of:0.052582207000743765 has:0.0475398602534559 an:0.04530948244916094 been:0.03725045131031766 is:0.03241408806019522 with:0.021626507461451852 greatly:0.021290916134313612 a:0.019054188382550408 were:0.017690825871238186 are:0.016205217975413033 The:0.01334408141828682 he:0.013319711109199238 to:0.011990620684458206 :0.13223134489664742 +be:0.29639319464662867 was:0.14848186675047298 been:0.13353203628071209 were:0.0766390425290577 is:0.0709382812592772 are:0.06582312220067922 so:0.02934050735296316 being:0.02606666693500541 as:0.01964641285351048 bo:0.018202975456908924 Is:0.011294450102847504 have:0.01105858522338591 it:0.010717546275781961 has:0.008726894251213733 not:0.008321225493915455 and:0.007878435968365802 had:0.007165056620282311 he:0.006785349536294783 well:0.005476792709772992 :0.03651155755292368 +the:0.6701924833213305 and:0.05735694557343985 The:0.04987324267704375 tho:0.03901344977405646 a:0.02989760891021387 of:0.023319181289590995 in:0.01647053887280345 tbe:0.012925983705157526 or:0.010308150360706965 great:0.009135746520966905 by:0.007712117148080356 his:0.0075757499465807735 other:0.0066809645533757 their:0.006612613381600949 an:0.004918479540436376 its:0.004873034405655993 our:0.004463288272755742 general:0.0044543332390253165 further:0.0043315777651091614 :0.028884510742069366 +the:0.6115644321317313 The:0.0755826115180125 a:0.05929622946324642 and:0.0482238783345138 tho:0.03501358130917487 tbe:0.015126115986393648 by:0.008863531262450196 in:0.008798350771422998 large:0.008113518714863436 average:0.007769154935246891 that:0.007319419151588232 any:0.006769084026300922 great:0.006719558754552558 full:0.006125450268705864 of:0.006092370734623703 high:0.0060850344284680245 or:0.005691568509290068 total:0.005647777686132491 good:0.004846535584377698 :0.06535179642890439 +of:0.27136689330959424 to:0.08674706773439207 and:0.07315081893112191 on:0.05738553672800838 in:0.05579826067840584 with:0.05436249475681895 for:0.05282021631230827 that:0.05121285423141409 by:0.033355386798564424 from:0.03289307733571001 is:0.023063296757632894 at:0.018215571306227682 all:0.017208772630888745 upon:0.016992918077422203 In:0.01569556485524649 as:0.015026469816004674 was:0.013483094957963092 but:0.01012292732432519 under:0.009957821999269485 :0.09014095545868141 +get:0.053610422214488855 was:0.05051841536969282 and:0.04903958730444051 him:0.038801969319659166 it:0.037410018187455464 them:0.035569152369498175 are:0.03479460583298655 go:0.03206022460430166 come:0.03018624754922308 came:0.02989007710531499 issued:0.028538548420871033 taken:0.028387580006254076 went:0.026471193886938953 got:0.02591677196361888 growing:0.02512307536827857 be:0.024827416016109424 is:0.024256616056951556 served:0.023420563816567756 paid:0.022272217198545566 :0.3779052974088029 +to:0.30247209254038004 with:0.1106632470515314 of:0.0668974473209092 for:0.0645264443698115 upon:0.041836903308285045 told:0.03112028092336337 by:0.03021801117581613 before:0.024331588862901744 on:0.023344212574729243 from:0.021525563493786204 in:0.019646343800102637 about:0.016720504222547793 see:0.016376143300213676 against:0.014146763928332156 around:0.011997605051189028 have:0.011738654648965311 at:0.011671396487551593 behind:0.011016402478346813 let:0.009851509886064968 :0.1588988845751722 +and:0.07387132609559574 is:0.07328312236991763 as:0.04773317776552537 was:0.04328225018648639 able:0.042887945174683174 not:0.041326531116696416 enough:0.03539686146360627 him:0.034810473883452805 order:0.03379730510068341 necessary:0.027311755213551385 right:0.02728638765674209 them:0.02152191739464329 me:0.021055936364071104 made:0.02038179549121542 are:0.019564352939060836 going:0.018573562707943903 refused:0.018155275803135088 ready:0.017036375836320727 had:0.01606679454614271 :0.36565685289052624 +hundred:0.02334136986593815 up:0.005482494641173394 men:0.005366536521246011 Hundred:0.0047587970519216575 John:0.00441808156134956 William:0.004390720675819281 him:0.004016828614280843 ;:0.003997112205305733 due:0.003721199871732 in:0.0036582900032443304 time:0.003637206863828461 James:0.0035594902370151707 out:0.0034878448964120057 .:0.003467980723571515 1:0.0032804584819785204 day:0.0032444781513863933 ,:0.003058139385740603 :0.0030314555521939613 Robert:0.003005471634785646 :0.9060760430610768 +and:0.06751335289221745 it:0.03214763507323768 that:0.02996933670548981 made:0.025912680506811794 was:0.024879858212137708 them:0.02483832673780292 found:0.023741468686416172 is:0.019742038283836603 up:0.018268563924991495 as:0.017208879131196005 but:0.016987396373859664 place:0.01540631890801325 not:0.014800413182537648 interest:0.014778388975712216 are:0.014686505873528809 men:0.014045216801780917 or:0.013600996768689307 been:0.013264660380576153 be:0.013105198248003965 :0.5841027643331604 +as:0.06931392982974462 according:0.052071562389565784 up:0.0511867300210483 and:0.040371568633051955 went:0.03351644485287816 back:0.032358406609281 regard:0.03073407747799069 feet:0.02852138506231652 down:0.026379903432040268 owing:0.02466642634685871 due:0.023695193974505355 go:0.022910973192184297 reference:0.020802802907016128 came:0.019883741951819873 sent:0.019874244915639484 attention:0.019565955494145405 come:0.01885185084678811 given:0.018792390567602263 it:0.017366961307524745 :0.4281354501879983 +and:0.09374037605361259 was:0.08453499952942133 committee:0.040678547596274206 went:0.02754522740879413 out:0.02535958290764525 be:0.024135904314376486 that:0.023368002266439508 is:0.02263072421534696 up:0.02251775566270538 go:0.020666252405765067 were:0.018104664883824534 Committee:0.017775151569104076 put:0.016484556708593466 made:0.01563762054373783 set:0.01511754600002897 one:0.011919947546125853 came:0.011391006402029977 work:0.011356785070888895 him:0.010961177179687344 :0.48507417173559814 +is:0.11569204185510726 as:0.09384307991156544 too:0.08178417111903004 and:0.07577593913243559 are:0.07293660682426409 a:0.07190659364559819 be:0.06201377494548949 of:0.05211858889508334 so:0.048695503433295095 very:0.0411397651556683 Is:0.025099475620858486 for:0.022974008937447405 was:0.02246347615704391 the:0.02050959405692597 from:0.019629736915255415 no:0.019179880772373484 in:0.017782736654961016 with:0.013659157071486945 one:0.013231735196168626 :0.10856413369994192 +a:0.2620773337463614 the:0.20324105583268678 The:0.11257681103884135 A:0.08132357570516677 his:0.054034190132403306 this:0.052355547702115854 This:0.026497371922653334 His:0.0249851860657451 my:0.02085742088707422 that:0.01841452409085075 her:0.012407141537246601 of:0.01213869782287371 tho:0.0109482643379005 and:0.01092283827463293 one:0.007998532119099795 Your:0.007984855576034655 every:0.007480126096887059 first:0.007040171907580644 last:0.006877016297768942 :0.05883933890607634 +not:0.387370114853928 was:0.07916439761748471 is:0.07115120414305587 be:0.045533955402841275 and:0.0427224280732606 are:0.03572148188957465 the:0.02759348005747902 were:0.02509700448532533 Not:0.02438259037561473 had:0.02056356788349427 as:0.019068072181812768 have:0.018469122357323738 that:0.016041290655558278 been:0.014004897586474998 has:0.01341150497911202 Is:0.012914805272487022 it:0.011222333378705275 but:0.010869117346610493 used:0.009917712595469272 :0.11378091886438761 +the:0.4026992195008073 of:0.24997174986575008 and:0.04141029822824111 The:0.04097860465642251 tho:0.02584696317384489 an:0.020508966043572524 in:0.017661555684111024 South:0.016645005683205278 North:0.014520710452720322 for:0.014229890075957869 our:0.013409510354527908 by:0.013334852703159192 on:0.010442836677013513 tbe:0.010213072564948723 said:0.01015710458878987 that:0.00977761074324693 from:0.008052805001990926 with:0.007568029119911798 their:0.0061209303481533205 :0.06545028453362493 +feet:0.0719208472326295 poles:0.05759396229176634 up:0.04010587224329879 chains:0.0385088170079141 entitled:0.029123404981740347 went:0.027388526271997813 came:0.025857650765910022 down:0.025633262313841977 him:0.025574415868859987 as:0.024916209858287616 and:0.023917753661251574 subject:0.02185045005331621 brought:0.02171367122116056 them:0.021644069985480026 it:0.02099405133651225 rods:0.019030517253069822 back:0.018922583019034468 go:0.01891708435510451 sent:0.018892511875840953 :0.44649433840298314 +and:0.1175902242740746 he:0.0643443868766118 be:0.05054879747234675 who:0.04872681419139612 it:0.04566204340398288 one:0.04103791404006411 man:0.027700012499888415 was:0.024931235708349233 all:0.024215441866512505 that:0.022758555667082108 men:0.022003616672238956 is:0.01969165183492706 which:0.018790575070506934 they:0.014134890259588589 people:0.013662007855508649 been:0.012191734152927446 are:0.012100299147792907 person:0.011915575960354525 I:0.011878043449684815 :0.39511617959616163 +are:0.11928519131236383 is:0.11241910289495478 by:0.09599853152953502 and:0.0550380061170962 of:0.04896267317202993 was:0.04688568209063488 the:0.04488049105247218 be:0.04365128930215721 more:0.043149474756380625 very:0.041127553141598085 a:0.03720649953054174 so:0.024796127401872665 been:0.024467053944196796 not:0.023926415454679807 were:0.023191604358980527 as:0.02208742105670051 most:0.021199045873251172 Is:0.014624423381824122 all:0.011980835124518266 :0.14412257850421162 +more:0.2940020910723628 rather:0.09468947944840915 less:0.06925416121702552 better:0.046239641517966674 greater:0.039727461403890996 other:0.022804840466526824 and:0.01618367348737074 higher:0.015773494113172908 worse:0.014705605306673945 larger:0.013653818203270393 work:0.009136687831931885 longer:0.008619715843411398 lower:0.008098024109587364 it:0.007746295382374398 later:0.0067027769280959435 stronger:0.006264002407352136 More:0.005873118941159501 time:0.005750679365936004 cheaper:0.005746078332279037 :0.30802835462120237 +the:0.09684081064840576 and:0.06551335624548284 of:0.05146145169206151 from:0.049520598669154245 a:0.045427902131977435 to:0.0370403239153822 be:0.035669151526387034 was:0.030489628475080553 is:0.026635804908522978 in:0.023878514238638158 are:0.018513936943033917 not:0.017945708099223703 or:0.017556265685966497 been:0.014265228721347686 at:0.013857211504087178 he:0.013733215789660087 were:0.012396679125422956 I:0.012347944480187516 for:0.012197989992860347 :0.4037082772071174 +the:0.1864048563217687 of:0.0763282816387499 and:0.056775622996350465 The:0.04076053203023492 that:0.03371010707602529 a:0.03277782567499776 Mr.:0.026815863495821175 in:0.02462440990641813 which:0.019739917572022633 his:0.018397552200257954 to:0.017149259773376165 he:0.0145040348287332 tho:0.01412009567036467 for:0.01260706190893237 Mrs.:0.011546548987961617 as:0.01145601468868743 their:0.01140106772004615 no:0.011343792304204419 pro-:0.008769124543790212 :0.36976803066125685 +the:0.39114153185980854 of:0.10138086591693125 at:0.08197396685761954 a:0.06809830045916151 for:0.029814004344357346 in:0.02634836935990717 to:0.023059487951490786 and:0.022708824689040143 The:0.019512507643043967 tho:0.019331620876690023 by:0.016391757943818953 any:0.014591440519305098 that:0.01364868447908241 other:0.012722737099879282 or:0.012644766241920657 his:0.011213838774639173 our:0.009316746200583375 tbe:0.008693461498237036 on:0.00816890314022113 :0.10823818414426259 +the:0.4446487296423276 a:0.09279105356084276 of:0.05280419681802361 this:0.04289932358739113 an:0.039133444397389715 The:0.027995890047631717 such:0.027372611332427556 tho:0.026237664440336355 other:0.025766458703879194 any:0.024673547178185467 every:0.02110462456142854 our:0.01748108637078967 their:0.016014543322858493 its:0.015640174141545705 his:0.014935056872310368 and:0.0139707732477673 one:0.013608501035238862 each:0.013065344736629216 tbe:0.011854087733251533 :0.05700288826974519 +of:0.342722401310372 in:0.08453823958454315 to:0.07720954195471247 on:0.06055984263938084 that:0.05242150354639578 from:0.041434977487040996 for:0.03842612199763298 and:0.037851651495922116 by:0.033731196034765924 with:0.03053033645120383 In:0.02550467307030034 at:0.01818365290986169 as:0.014810754544438547 which:0.013159945943950478 upon:0.012170913799750216 all:0.00795220050162153 into:0.007830622856565876 but:0.0073673020235956645 is:0.006970390776960472 :0.08562373107098506 +the:0.11500545585881412 of:0.0897605566703555 and:0.07914879987306167 a:0.05827037833039227 to:0.0386987683614473 was:0.029282661483795363 be:0.023890810389268442 is:0.02056818843792312 been:0.017204803150083207 or:0.017094944717067368 in:0.01610392931760865 are:0.015798243080240505 his:0.01344187865263006 at:0.01321973597799718 for:0.01304287912725108 their:0.012337012043366955 were:0.012236169772424844 :0.01133284696603621 The:0.01095822742659897 :0.3916037103636372 +of:0.16763292548627154 in:0.1462570873602159 the:0.14301764856182858 to:0.05817085637152632 a:0.0573597563856376 In:0.0363677130403542 and:0.033347677933938086 from:0.021841431264308746 that:0.01690412764768278 for:0.01625210914404084 by:0.014395526070255177 as:0.01382578579676655 with:0.011295067256998364 at:0.010886755412257625 an:0.010131370120172133 The:0.00852577152806468 :0.008346265188346975 which:0.007342449075466379 tho:0.007163006964860217 :0.20993666939100733 +hundred:0.013633628820093018 ;:0.011172311961148602 him:0.009807052834026905 one:0.00914669734384353 feet:0.0090219372983598 up:0.00838318558829166 mile:0.007527126877816727 feet,:0.0071805242500254255 time:0.006879602834379732 man:0.006817451499927337 it:0.006300585667639516 it,:0.005903705234588485 out:0.005451849962934835 :0.00538718305729827 ,:0.005295204710281874 and:0.005240008239108335 here:0.004938150073064577 water:0.004837308913464981 them:0.004796443021708541 :0.8612800418119979 +of:0.12990676972171378 and:0.10380825532292418 know:0.09457604455321356 to:0.07866983822842714 see:0.04719258218655984 for:0.042498503865104446 just:0.03645901054901103 in:0.036083589483638795 with:0.03242665213336893 but:0.03201522527611575 from:0.0290194935188653 do:0.025536684167952142 him:0.024709538669033193 or:0.023602192053327933 is:0.02080470255211109 Just:0.020290631329387552 knew:0.01961696144373453 tell:0.01832106269258953 matter:0.01816750720498819 :0.1652947550479331 +;:0.021258909754392104 it,:0.017849239057097514 here:0.013380394615109129 him,:0.0131085679066358 them,:0.010439039545757263 him:0.008901070126744166 up:0.008897793963204228 time,:0.008541972451766883 in:0.007558355642369932 years,:0.006711388312844546 up,:0.006387420965244681 it:0.00581613746602584 and:0.005801081453851895 country,:0.0057087804180745 ,:0.005599624973279854 man,:0.005444530802986974 out,:0.005210256429661834 day,:0.0049432424826446495 them:0.004891578008701529 :0.8325506156236068 +of:0.11995858894229315 and:0.05190814595497317 in:0.04826895364987692 that:0.04493731536153755 for:0.02621329399551802 to:0.014264398237021584 on:0.01265746727886542 but:0.011455138992558378 from:0.010608200780434335 by:0.009501112514025458 after:0.008585786447328627 In:0.008138916799229592 bill:0.008011347344982048 with:0.007958936088978385 one:0.007618611554315744 bill,:0.0067307084291911914 ,:0.006169986576017955 which:0.005912943367918462 upon:0.005759226711584125 :0.5843409209733499 +six:0.04499535195037958 four:0.041257674716623775 two:0.040102592299342106 the:0.035942559645228155 hundred:0.03585917781446964 three:0.03512186851696185 five:0.026463148593916467 fifty:0.025847140849265315 their:0.025428868306118287 his:0.025363934154044393 100:0.023981315177043636 twenty:0.023728803803241282 eight:0.020751030217845405 ten:0.0207039458945788 300:0.019588095552784526 of:0.018437032217757537 few:0.017518530662302762 120:0.016444815977869672 seven:0.014943011617852503 :0.4865211020323743 +sum:0.03352282876311118 number:0.028116684882597106 line:0.019995206059833036 city:0.01946514558931857 out:0.019275318828420953 day:0.01666865340772654 county:0.014872697538657208 amount:0.013254184849875051 Board:0.01252325449624941 town:0.012449555905674143 side:0.011663975251122375 part:0.011517157473718155 County:0.011460540331966697 state:0.011087331502382173 City:0.010878919191854432 purpose:0.01081028255427907 and:0.010297866493795984 way:0.009848747943663767 name:0.009522170936943183 :0.711769477998811 +of:0.10427360516941094 and:0.08714025032506632 on:0.03909268055207124 to:0.030643628809793915 that:0.027950870656243767 for:0.02750531920407825 in:0.016231265177872597 with:0.01465881772468721 from:0.014499421596151718 by:0.014300259083539312 Company,:0.010655255355083123 :0.010227348358172341 therein,:0.009417279158971132 county,:0.0070714280803493125 upon:0.00626783981600866 :0.006059601702163614 ;:0.005997289893381422 but:0.005900100001292593 under:0.005383536373356243 :0.5557242029623063 +the:0.22099206090945894 that:0.10368379311936737 this:0.08675094354337214 same:0.08492721270823922 short:0.07407712759422026 a:0.062061875992082585 some:0.05163374423739751 long:0.03869635147320653 first:0.03076727155950779 which:0.028166384094738435 one:0.027794452332352036 in:0.02721873921599219 of:0.023655839266616737 any:0.020544900513515398 to:0.017944480360824005 present:0.01746374554361829 and:0.016821288739762436 In:0.013976894553471996 from:0.011044576559944003 :0.04077831768231213 +in:0.33834382386893597 the:0.16490382704983514 In:0.09093890531843439 a:0.08178672799412436 take:0.06936656631649106 took:0.0324747092735516 and:0.020045011247075386 or:0.018952522672898802 have:0.018016440692057687 to:0.017420924832934687 dis-:0.01658138185751117 had:0.01604608440874804 of:0.012666960029417761 The:0.00985101039259922 tho:0.00908813259306232 his:0.009023428106177444 first:0.008425508196999536 no:0.007696541706309593 iu:0.007125252885787858 :0.05024624055704794 +was:0.10416698397416599 be:0.07604438040097973 and:0.07375887374877109 is:0.07024129690364936 I:0.05033214232550211 not:0.04611079513147147 had:0.03993145370854734 that:0.036417387456039105 but:0.03203799707790929 were:0.0311089834115575 are:0.029357306710559465 been:0.02850592702833477 have:0.025558544330858548 he:0.025110825521096482 has:0.020254401037201546 who:0.018723869498690204 or:0.017462147731955296 which:0.016648676906915447 they:0.015111273845283258 :0.242116733250512 +the:0.6343689503721083 and:0.05570657170920391 a:0.05243609281405627 The:0.037801353557774454 to:0.035989506664894165 tho:0.033381984869364105 tbe:0.013875268711581703 in:0.011998017265045 his:0.01145167318646385 great:0.0111931018924811 or:0.011075862135536824 their:0.007836556229805877 an:0.0068368153386140825 this:0.0061703658696918035 of:0.005826853084016024 its:0.004616624103590078 good:0.004309407614395904 further:0.004233920252585579 general:0.004219580431421208 :0.0456714938973698 +and:0.14879881681404852 that:0.11123252693019148 as:0.09087720548066658 which:0.04007590077863371 but:0.03280951836122717 when:0.026991371674818118 of:0.023811977364838546 for:0.018684596635837117 the:0.016549289357566447 what:0.0156817937823687 to:0.013825849733439874 if:0.01292247940273175 than:0.012036456737002718 When:0.011179014360559366 As:0.010520301819873023 it:0.010075146179028379 do:0.00997227555910379 or:0.009959957863289187 If:0.009818734570932184 :0.37317678659384335 +an:0.22861994858055384 on:0.16844216118257818 to:0.07714771749930631 the:0.04901923105706914 no:0.0422185660353028 this:0.038821286913831556 and:0.03454390628903808 his:0.032496860834754296 of:0.031251064138447956 in:0.023167381465281512 said:0.020247439677713135 or:0.019993821837260794 a:0.01939669596093688 final:0.018780211802985 may:0.018324438168288732 their:0.016278719073206507 any:0.015581023046642481 be:0.014861782318204165 will:0.013891479754024844 :0.11591626436457377 +the:0.318362085855391 of:0.1656380353715039 in:0.11091051069515195 The:0.09463369714925077 In:0.03485716215124069 and:0.025459677449187628 that:0.024985220547876916 Mr.:0.019956369923829962 tho:0.018697808813086806 :0.014714486772071851 from:0.010903469450988575 for:0.009194900098661942 to:0.007706057962598516 tbe:0.0072369160969269946 this:0.006591777411386128 by:0.0065237489889087875 .:0.006053555839062456 as:0.004854608150400979 Tho:0.004651685409144276 :0.1070682258633299 +the:0.0662481817094862 of:0.0530095164954368 :0.04673500866283123 and:0.04308682018490372 a:0.021045412906702126 as:0.019795993116134523 to:0.014236718201777613 that:0.012896913066400572 ::0.012655559617659032 in:0.012157177807221118 The:0.01058441176293675 1:0.009423178108971012 by:0.008930104556303425 with:0.00809515283312518 t:0.007371198112998636 I:0.007111577176936326 -:0.007005487052482255 it:0.0068485485244132544 .:0.0062330375695883065 :0.6255300025336918 +the:0.16871106989263562 of:0.14728162398054315 such:0.08222727344562383 in:0.07743658252347256 his:0.07482290705467796 a:0.05994272956443437 their:0.04298172232833586 and:0.04069232842830773 doing:0.02110958910344793 its:0.01954369683152854 by:0.017812142795894843 as:0.017751532996607516 all:0.017675853907883624 my:0.017247202394453667 any:0.016036785727139114 other:0.014914542081148082 general:0.014717563894613301 good:0.014391329364346216 much:0.014083491584969092 :0.11962003209993699 +and:0.05917734571267282 closing:0.04405297983259551 was:0.026323119710997635 valued:0.021005792503071843 held:0.01922887441606307 sold:0.018225285914023 2:0.017782437938973866 is:0.017552850459549643 arrived:0.01662711812741857 be:0.01645048243064216 are:0.016339673120917095 White:0.01533836240735085 not:0.015154252504664439 as:0.012706467917481812 that:0.012063629264509927 estimated:0.011864260728812118 Dated:0.0116063700277585 or:0.011444173640079769 made:0.010438189210536826 :0.6256183341318805 +that:0.13141435705665513 and:0.11831687512940384 which:0.061856048275872585 as:0.05776746828270018 but:0.04140922775249736 if:0.034270844833037925 what:0.030173820181600502 when:0.02854845103106668 If:0.014143836677380625 where:0.01382456972476155 :0.013134346298795745 time:0.012755787406826414 But:0.010372464416556166 think:0.010298013400411182 it.:0.009949800489332269 so:0.009741371531595041 thought:0.009692165442882057 whom:0.009639810540469192 then:0.009341527846312725 :0.37234921368184287 +the:0.11919516938815296 of:0.07230453158552728 and:0.05781056740443249 a:0.043018564803886335 to:0.031305092790907506 in:0.020848713353460488 at:0.014270110001066288 .:0.012526810245749479 :0.012413283442322082 for:0.011719122709941797 by:0.010808400946589808 or:0.010404172990115616 The:0.01003576004804544 with:0.009811868184449042 tho:0.009295902015355835 was:0.008924239095331684 that:0.008672304223433876 is:0.0085591147338948 be:0.008335143826716943 :0.5187411282106204 +be:0.17502230369812913 was:0.1501031078789168 is:0.08586570372715822 been:0.060467380406546666 have:0.039775465770509014 were:0.036342424459705716 and:0.03581622562971785 he:0.03358819308853778 had:0.031074994507335318 are:0.026194885723371513 being:0.023412970203785317 has:0.021011328947113345 ever:0.01376727821284846 it:0.012244262961445967 well:0.012199202078613204 they:0.011335519064889993 bo:0.010772244235684526 not:0.01058508570203462 hereby:0.008557257176999008 :0.20086416652665756 +the:0.5555538096111853 this:0.03231594499106655 tho:0.02148519131528913 American:0.016223382215990446 of:0.01579719649251847 Mississippi:0.0145070849666438 :0.013578345827910435 York:0.012765989642682737 States:0.01270687834907338 State:0.011673233129316028 National:0.007967907943228696 The:0.007177904422899851 Missouri:0.006559555633375542 our:0.006451863687130708 state:0.006347141334681127 tbe:0.006341480968409603 said:0.0057090966071837055 whole:0.004849287381433731 and:0.004812495587661074 :0.2361762098923197 +went:0.06497679573794887 made:0.05774620104570061 taken:0.05735538638763511 came:0.056344856650764726 it:0.04505332531202812 come:0.04069822942965494 put:0.03596125247119347 brought:0.0330585210733198 and:0.027972859389838487 them:0.027370888436186833 set:0.025848604137249424 given:0.024949489653652502 called:0.024085472591228813 get:0.023855445521074537 him:0.02072571477256628 give:0.02017222231284957 take:0.019964255375992522 got:0.0198039261679289 held:0.01914029588719823 :0.3539162576459883 +of:0.526565589897672 in:0.15799735954330665 the:0.04716352707737356 In:0.030916487879939218 and:0.027584795058269048 for:0.02141022129111616 that:0.020486569331720817 or:0.01020756286777263 by:0.010130427835065079 to:0.009487504890902528 said:0.009137375172658183 ot:0.008988869324293386 The:0.008593791477639872 ol:0.0070304721026510884 from:0.005747381796719307 at:0.004230119053418597 on:0.004217657629058241 :0.003948563699377895 with:0.0036541916960624627 :0.08150153237498327 +and:0.05700767279991192 able:0.050198648933648816 enough:0.04926549911667266 is:0.047721509772861555 necessary:0.04446895465181035 him:0.04346175123263445 not:0.038374363904574306 right:0.036745767451323484 me:0.03381790646319986 order:0.0334178948349899 have:0.03151125243600288 want:0.031475080518140845 glad:0.03085350141091765 them:0.029807019003384918 had:0.029727334055339227 was:0.02674841529749148 wish:0.025357795868443368 desire:0.024285765266570922 time:0.024281957788659502 :0.31047190919342194 +the:0.14359267854213176 of:0.1080923232951811 in:0.08564141234493713 a:0.08504384216948183 and:0.0553463798973374 by:0.03637964921527236 from:0.03615028548537732 their:0.029427392931285493 his:0.02749214568412844 our:0.02402296504451167 or:0.023408335810275686 :0.020910383356139973 In:0.01962973304758984 to:0.019570497036820546 your:0.017998616238798167 for:0.014776947359101872 special:0.014632080642341477 an:0.013887190769724363 said:0.012655856100429502 :0.21034128502913407 +the:0.16807735899698817 of:0.10541662057906837 and:0.05138367848570702 a:0.04141865232648221 to:0.0385989743764065 in:0.026264864977736738 was:0.019530675665220657 his:0.018900421021236905 be:0.017373825006196972 their:0.015767721170721456 for:0.01557246589796783 with:0.014071419046630446 is:0.012922913111931644 at:0.012690452250034052 are:0.010702713108721902 .:0.010158075558988393 Mr.:0.009672788574483367 tho:0.009612591781990074 were:0.009549306361446321 :0.391314481702041 +of:0.07112482679544718 in:0.049575248047251455 the:0.04516422458134517 and:0.03755451254720644 at:0.03509440935571521 to:0.018130088282019147 :0.01627638560734823 In:0.01507230696641984 a:0.014202318037202075 or:0.01296400223921159 by:0.011432044618630326 that:0.011174177848658793 was:0.010841008932049265 with:0.01067205406641329 were:0.009354124364091838 .:0.009180686471108417 be:0.008755491014385114 from:0.008471852575582025 for:0.008183609278440166 :0.5957766283714745 +be:0.13636039364968108 was:0.12969400384585014 he:0.08945744341528765 and:0.07895844794029379 I:0.07364892230202594 is:0.05758506396970324 been:0.039654412466705966 they:0.034434291833282414 have:0.033352876904184384 were:0.03257215028198409 had:0.03011877176669785 we:0.026362000697858212 He:0.020553519180565815 are:0.01960458589303427 she:0.01678893720638239 has:0.015021825157426531 soon:0.013724848023404046 who:0.01331265438376745 We:0.0118508565817988 :0.12594399450006594 +and:0.19300727000087423 to:0.059491015866135824 so:0.0465266184353241 fact:0.0463718886365702 say:0.0387781755230106 know:0.03490522224830725 of:0.03160592720985149 but:0.03098926450321503 than:0.02924280663565801 do:0.027172306541558867 said:0.024933065430165456 is:0.02449745238932044 all:0.02245343542239996 him:0.018890409660430332 as:0.018344749080706338 believe:0.01737515584862712 think:0.01638942755849305 see:0.01615500640335112 with:0.015920128994421932 :0.28595067361157867 +and:0.10750645899011164 of:0.07896076335169248 the:0.07045132605613966 in:0.0610066008843292 a:0.049475161543391995 to:0.03958182867576627 for:0.026316589770114803 that:0.02479089400445158 an:0.02179213319943386 which:0.018283031990482826 as:0.01694857453122836 In:0.01465765822490509 in-:0.012526609574501382 with:0.012387455041318243 or:0.011601843672632778 be:0.010431128989235023 is:0.010051408944122302 :0.00991325352454331 their:0.00919662933875057 :0.39312064969284866 +in:0.20239373745175884 to:0.1696710503086359 of:0.12170347960148437 on:0.08558902377024118 In:0.0577581483860793 at:0.055594341219454 with:0.030288228611446456 and:0.028582656016897464 from:0.026495987763758336 for:0.01943547919371489 that:0.017282695018362684 is:0.01664549799079505 was:0.014473384302039486 upon:0.014262275003875745 up:0.013265625969158682 over:0.011531272751131834 all:0.010017344117886086 by:0.00949187620034389 into:0.009166794135478903 :0.08535110218745685 +part:0.062325847554271264 one:0.06063111468590399 some:0.037306181508129276 out:0.030654329894436005 members:0.022088577251346518 and:0.01924141362015411 tion:0.018787037941101363 portion:0.018051689715010356 side:0.017943951891416163 that:0.016507907061938807 member:0.01593843659970584 office:0.01574566960076909 majority:0.0154104008831532 front:0.014054186394075671 parts:0.013607560627939948 payment:0.013458169751259314 all:0.013339146994107673 end:0.012284189708442875 time:0.011200658322325753 :0.5704235299945127 +the:0.46661676953923126 of:0.0482377700516773 American:0.04413221208729554 many:0.040200223330294896 our:0.039516459097092005 The:0.03923142007095917 young:0.03773961858191121 a:0.032400096846005096 colored:0.024574850673669883 by:0.017736710622589413 tho:0.017489573864674857 his:0.015385810302730278 some:0.013721340175303376 white:0.012475884868328364 other:0.012312745762398396 and:0.011727561524442804 their:0.01061622981509637 those:0.010478402197785563 few:0.009881245204301812 :0.09452507538421241 +of:0.2682705684961946 and:0.1382739896270707 the:0.09791100116006296 that:0.03932562103440398 in:0.03333351963756872 as:0.031117183484153495 for:0.02827705316469845 or:0.02738474162611391 The:0.025635960084239 to:0.01967389247959454 all:0.017656017797539666 their:0.015980109976172704 which:0.014713937491996669 his:0.014537356755361688 than:0.014057779865263652 its:0.010855699010878305 a:0.009625604314477199 when:0.009515070227490376 In:0.008087286965195797 :0.17476760680152362 +the:0.17726248674299455 of:0.08850011518330238 and:0.0680159340178423 to:0.032909814361155414 in:0.02853165769721549 a:0.02223250657691117 at:0.021412290790212243 or:0.01513072393040662 .:0.01305764174068464 for:0.012729411517123186 by:0.012366626951897547 as:0.01142494414399286 be:0.011407050992715155 tho:0.011067122544024229 was:0.010451649111552398 The:0.009947201651621888 :0.009245480150089276 his:0.008606485990601934 that:0.007744996812378088 :0.42695585909327866 +the:0.19181099779236171 of:0.098376387290332 to:0.06206323848827424 and:0.06185746970152953 a:0.05763503445731301 in:0.03203768820605091 be:0.025397557396989286 his:0.024202004373826747 is:0.020632857541508884 or:0.02039536851329297 their:0.018687058446806952 was:0.016925985081584535 for:0.016539289349480842 at:0.011842877958441057 are:0.011754728630963622 this:0.011050266971565748 tho:0.010185182552681348 by:0.009947350688139206 that:0.009348312184219137 :0.2883103443746382 +the:0.11919516938815296 of:0.07230453158552728 and:0.05781056740443249 a:0.043018564803886335 to:0.031305092790907506 in:0.020848713353460488 at:0.014270110001066288 .:0.012526810245749479 :0.012413283442322082 for:0.011719122709941797 by:0.010808400946589808 or:0.010404172990115616 The:0.01003576004804544 with:0.009811868184449042 tho:0.009295902015355835 was:0.008924239095331684 that:0.008672304223433876 is:0.0085591147338948 be:0.008335143826716943 :0.5187411282106204 +be:0.21267019264432532 debt:0.16241767417450087 been:0.07640295954850378 and:0.073304200069369 was:0.05723296067005395 were:0.038554133144786125 is:0.03844257715866771 are:0.036019570048419144 he:0.03350013881640427 being:0.021670067901763592 sale,:0.021196907755543195 notes:0.019446734979397435 money:0.017718734431084016 now:0.016256191215019374 note:0.014711275585018455 had:0.014572075652805286 bo:0.014330654221432851 amount:0.012861405974061971 not:0.01215179311647054 :0.10553975289237313 +and:0.06895261635863048 heirs:0.02995182161828224 was:0.029574408505974425 proceeding:0.0280917943921727 that:0.024534302990814764 held:0.019495073803664983 as:0.01883062878688576 sold:0.017500764868648388 closing:0.016780029653829694 be:0.01536374902894456 is:0.015297504686639336 sell:0.01458905488407428 sale:0.013234070964563364 proceedings:0.01276288739117557 not:0.012571429905155721 him:0.012460857830849891 them:0.011802611026578152 the:0.011531919023166162 land:0.011221181689122369 :0.6144532925908271 +and:0.1551629952817203 was:0.05221805285121983 to:0.051104914228592375 is:0.04186191710086559 are:0.027650334823628275 not:0.026986695604584294 had:0.0269204154475216 that:0.026491417832243156 of:0.026225828356283547 have:0.023864626941300177 or:0.023312950124487718 be:0.022601319732436904 in:0.020553630306713658 but:0.0200502487273217 with:0.019038263507446213 were:0.01895435938462594 made:0.018287324452678312 it:0.018159950888938386 for:0.016471555744644716 :0.3630831986627473 +and:0.07509181549710321 as:0.048377730772513304 up:0.03174734764183977 it:0.02974521973049959 addition:0.029052444965490674 according:0.025026137733327552 them:0.02439032081756059 him:0.021141882604111605 entitled:0.02066828821018786 equal:0.019499000932593165 due:0.017818130139896176 amounting:0.016990873158777453 reference:0.01634333593035152 regard:0.015948001651902542 attention:0.015905127313055694 is:0.01586790264329058 known:0.014974628250434574 subject:0.014935219297093917 go:0.014781447838247985 :0.5306951448717223 +that:0.298271107806373 and:0.15231099468294887 but:0.05425708956536086 if:0.0365746785442632 when:0.036237276966220575 where:0.034875323325062386 which:0.03211973898294982 as:0.02981166807768261 Then:0.02053986173605224 But:0.01983693269486051 If:0.01908825092960859 time:0.018703219266474815 because:0.01148572386555154 until:0.010322078977824858 while:0.010268000802764871 then:0.010120350810279377 though:0.009627610782983168 said:0.00873978076280895 ago:0.008570928221952125 :0.1772393831979776 +and:0.09078744186383737 demand:0.0346988131088753 made:0.02384857155492311 vote:0.023281510653572687 provided:0.020772564742700367 provide:0.019644929097926533 necessary:0.019270187896205954 reason:0.017825995304149394 ready:0.017211721970135842 impossible:0.015272272890421901 candidate:0.014613177675550412 pay:0.013669018812803939 providing:0.013466081626016703 time:0.01313200394221991 work:0.012528306579318669 it:0.012430377952885365 Court:0.012396838781395554 out:0.012388131997801359 paid:0.012220311592217056 :0.5995417419570426 +give:0.1601591168256141 gave:0.1376331060283905 to:0.12636494530176712 with:0.06491425852332282 for:0.05358351182582496 make:0.04712877761264737 made:0.02878547793652837 told:0.028475114915640705 by:0.02564745901828594 giving:0.02436261625730447 gives:0.02401710639057875 of:0.02271509183849988 take:0.018945332238591833 at:0.018765652089571958 upon:0.016664883001155373 given:0.016525784814445152 send:0.013389505097371896 let:0.012937663882777062 took:0.012511897147568531 :0.14547269925411319 +of:0.09129790931378902 the:0.07369883040827747 and:0.047842263382354346 in:0.04189055351593407 to:0.04045875475680249 a:0.03542341257202578 be:0.02020462051672066 for:0.01979292654746225 was:0.01760256398103379 at:0.017380150555488715 is:0.014984483003968216 with:0.014047653760730413 by:0.01374644383819499 :0.012670486581795598 In:0.01200961464556976 or:0.011563835749786333 from:0.011391516893522809 are:0.011273104484969465 that:0.010755276030689069 :0.4809655994608848 +W.:0.0816352895180229 J.:0.06844850324183117 .:0.06286983941587233 A.:0.05745309410024038 Mrs.:0.057188883999506473 Mr.:0.05630334812148963 C.:0.04971369874346728 M.:0.044916267155865476 John:0.03771829047747898 H.:0.035819380847844605 of:0.033215838794968935 and:0.03311273102938 D.:0.02445065140375622 E.:0.02265425869985084 S.:0.021463077636267373 R.:0.021366932199838862 L.:0.019853835675866873 the:0.019839627130526217 Dr.:0.018982403659852137 :0.2319940481480733 +of:0.2159895027034485 to:0.09675011535654567 that:0.09086443831551014 in:0.06097935102922293 and:0.05450457519666278 on:0.045183376749010996 at:0.043488895255063706 for:0.03579016887880197 is:0.03169410933116662 do:0.02744102775574909 with:0.025053225241781555 from:0.02306905284572322 by:0.02217438753676151 but:0.02083930952472308 upon:0.018902789719877928 In:0.017139640167099495 which:0.012100748734060071 as:0.011828951689811865 make:0.011012385470979753 :0.13419394849799912 +of:0.15455906786105178 the:0.14387106609375622 and:0.09972969623774129 to:0.04759766775401768 a:0.043397627098914725 for:0.02385629730062687 at:0.023548339376089494 or:0.0224099426976762 in:0.01944775294170955 all:0.015478679400289234 than:0.014954803251016488 as:0.014352183719408754 about:0.011263825659989015 be:0.010942585601668836 his:0.010181721364766127 other:0.009692060694210256 their:0.009050527338490943 tho:0.008623205733000435 The:0.008298986214515802 :0.3077439636610603 +the:0.30353762764195713 of:0.1731157676587403 The:0.11068533161450322 that:0.0432832256946365 in:0.032928328304642096 and:0.03204771924432481 a:0.025201735260497425 such:0.022151854806635014 an:0.021878094587793266 tho:0.018819989816018498 This:0.01820448048449419 great:0.017694515816741814 his:0.015292691229696025 no:0.014270718929854742 as:0.01397301420970993 this:0.013523074921843865 their:0.011889779643663842 by:0.011328656181155564 any:0.01115871317458329 :0.08801468077850848 +and:0.23850388721496424 so:0.06426508107107316 fact:0.051639963677294086 to:0.049389560043804195 is:0.03208238755842466 of:0.030806992071766244 do:0.03005459396313276 say:0.026439324817861057 than:0.025976451593811838 as:0.02593510529591987 all:0.02470946754685416 but:0.023951406106854835 are:0.02191190519869027 know:0.020873614960650752 was:0.020604932992322737 said:0.020549594154405097 believe:0.017526965447272832 with:0.0156843031038239 think:0.014062570367462772 :0.24403189281361057 +and:0.1257441323083053 to:0.0898945530408457 the:0.06949359080366867 of:0.05497993573853558 in:0.03349722944352892 that:0.029518668798531118 or:0.02332584258015636 a:0.02013381461039279 an:0.019766297409457435 re-:0.016670912129987264 for:0.016096745092453825 :0.015190376816099568 will:0.01490271797965997 any:0.014701368807746348 which:0.013758795563314361 this:0.0127394407693193 In:0.011350631916051651 with:0.01032480446452575 some:0.010323268059325092 :0.396586873668095 +a:0.11177213075942455 the:0.09543698431215787 of:0.0841175590838569 and:0.07910675376413512 to:0.050157659089588434 in:0.04536238845017891 for:0.044537776431812094 that:0.02938308392462598 by:0.02195655887788467 with:0.021917425054095763 an:0.019428690902248177 as:0.018940568749436844 be:0.016467598562953215 which:0.01549558476677605 is:0.015336924548389561 or:0.014872841529621388 In:0.013452806255234628 was:0.01315458864196594 no:0.011181307366851216 :0.27692076892876266 +has:0.3858586980826184 had:0.2912697570595258 have:0.2079075409519244 lias:0.013090243919492716 is:0.011450204122019421 could:0.008603013259720942 it:0.008094303121518367 was:0.0071797875509233685 bad:0.0063130511340830225 will:0.005556457585261672 and:0.004847914286201119 havo:0.0046310592296588 would:0.0040130149594704845 haa:0.003908598488805168 are:0.003841828452888707 do:0.00333100113580232 having:0.0032810969636338284 baa:0.0031972339704866366 It:0.0026228341341831317 :0.020002361591781644 +.:0.05330955824125287 the:0.05314175894802315 and:0.03951906020525599 of:0.036500871693550534 to:0.027542076256083264 Mr.:0.021815508722818858 Mrs.:0.021663185362536114 Miss:0.021613700742073503 a:0.01937377035218912 M.:0.016051079504205295 H.:0.016044043864157028 J.:0.014174511767877901 :0.013963502382777422 A.:0.01365692400671348 W.:0.013212729872643002 C.:0.011896476301988921 by:0.011742599779303258 at:0.01166086589699525 S.:0.011301641915897028 :0.570816134183658 +the:0.37052904877395754 and:0.1027227516099484 any:0.05294025007233774 of:0.04895387368798258 no:0.04520386277200238 that:0.034907078069171385 a:0.03235236246758013 to:0.028811309185758218 this:0.026810157863525242 their:0.023417953736260294 his:0.021606780856331855 little:0.020441394707702527 tho:0.019639557729061622 as:0.018029208771671322 its:0.015871839808972266 or:0.014960373087684858 The:0.013072620244725205 in:0.011838783062024112 with:0.011788416065146216 :0.0851023774281561 +the:0.14613377916116738 a:0.09915120907153838 and:0.08709291288283046 of:0.0762410490757785 to:0.04542490074619659 is:0.025033786255201033 are:0.021679247519951775 or:0.021569414767566384 in:0.019493032232240293 for:0.016675682015973237 was:0.016156162981291498 be:0.015634401684289367 The:0.01344944183486942 with:0.010795018551845321 tho:0.010167952843609511 not:0.009683658473587129 been:0.009478021872577916 have:0.009430763860470162 by:0.008867400691402117 :0.33684216347761353 +:0.048536456709428674 it.:0.02064594643030163 that:0.01881763867515112 him.:0.017062430765553627 and:0.014589935278694892 them.:0.011023412201401872 years.:0.009998772771936356 time.:0.007856265781192301 her.:0.007592724092093442 day.:0.006847063173397001 country.:0.005994856465679489 ago.:0.005686611936214241 people.:0.00539984200941951 life.:0.005036190064717344 up.:0.005027818635039892 year.:0.004879053189099187 again.:0.004816506369710813 way.:0.004384416841969213 which:0.004357071615010544 :0.7904469869939889 +the:0.43473084670962747 a:0.1053055824671763 and:0.08560290595218462 of:0.04932794177176992 to:0.03267654897639881 in:0.028928705253959887 The:0.026396220729016248 tho:0.02279026947415915 or:0.018311928606303797 be:0.016900665305353935 his:0.013357782234745779 this:0.013151799361632806 are:0.01134826883565003 their:0.011295464387244235 is:0.011287361358424489 our:0.009691242097479309 for:0.00937162656995703 its:0.009010305320077504 with:0.008447839006521036 :0.0810666955823176 +the:0.22185501616847497 of:0.08490224116854876 and:0.07138403504349077 a:0.042315248194153124 at:0.029965956059769185 to:0.026691982856740567 The:0.02302256646914768 in:0.017881102905121928 tho:0.01597047638321459 Mr.:0.015386705113929535 .:0.015274285963812091 that:0.013985831370100637 was:0.013035499603625598 :0.012878228803279561 or:0.012765411603279205 for:0.012215601386393798 this:0.011540653210152872 be:0.011378354534884618 an:0.010955233380290802 :0.3355955697815897 +he:0.12703291627425517 it:0.09131180073632957 they:0.058320870404095726 that:0.05080988761940746 I:0.0487608304371097 and:0.044330322957134856 It:0.04224056400387813 who:0.040875510017513224 which:0.03792669584942611 she:0.03043639745618948 we:0.024505794155842597 He:0.018477133078505383 as:0.01798646680521681 you:0.014301121372935975 one:0.01122829300910504 ho:0.01046425803397653 be:0.010153756075079628 man:0.009280478585831644 1:0.008900147497544983 :0.301656755630622 +and:0.10244892575567197 the:0.10060393689440905 of:0.07404065616696219 to:0.03837143162742405 a:0.026335089427381234 he:0.026019737344054848 which:0.02442302024591867 that:0.02150973930001099 be:0.020814151935792773 was:0.018245331853575828 as:0.017747697502352566 they:0.016817479102573245 or:0.015937516014877803 for:0.015294967500503291 his:0.014729872200793038 in:0.013723788084816144 The:0.013569406179834806 who:0.013290229256499838 when:0.013223551226359967 :0.4118534723801877 +the:0.28599894436820167 such:0.13906972962391784 said:0.08044931264851223 no:0.06749292085024816 this:0.05367390855082237 that:0.04536779852799188 and:0.041038379639064274 any:0.032551129472643846 The:0.026843986601893494 to:0.022551185752893957 of:0.021243520890626116 a:0.020490483146896662 tho:0.015206274379236027 or:0.015162062523703812 shall:0.012105034278124812 an:0.011937215427865171 which:0.01146177920504966 great:0.011036821431654478 our:0.009150213652013921 :0.07616929902863968 +to:0.09864282010030183 the:0.08375297126946753 of:0.07074571151673052 and:0.06779046829403 a:0.02766650927741597 in:0.021670314456411932 at:0.021392828982420006 for:0.01627599403114278 is:0.015107338441904122 he:0.014818877918256685 was:0.013808540905081488 by:0.013132601340090633 it:0.012796195965848819 I:0.012723560421513859 :0.0121914922721236 not:0.011777366450725432 .:0.011011346691779235 that:0.01092359583028988 with:0.01073896800850032 :0.4520324978259654 +and:0.1366820442915655 to:0.09642132541133282 of:0.05973563623669816 the:0.04725992623435066 not:0.031592405433768365 or:0.022696173430144104 he:0.022530176729983396 have:0.019827832712693703 who:0.018963797539904313 was:0.018842355095845177 would:0.018102876885551056 be:0.01696108135064372 will:0.016502866741334447 had:0.016484266409284788 is:0.016240468563090575 in:0.015742905222959052 by:0.01525645786065052 that:0.015135928374667316 a:0.015069658079332462 :0.3789518173961998 +of:0.09887070045671081 in:0.08083172509344266 and:0.05366659211939832 with:0.04221737495262821 by:0.03492642946482816 on:0.02961331335190395 for:0.02611832345350878 to:0.025808040975084188 In:0.024570774069518613 as:0.02288801119044862 at:0.020379644242732465 from:0.017581958101427164 the:0.015866631623779673 .:0.01277409143158974 a:0.011363964148816961 A:0.010861706381794765 that:0.010368976820804702 I:0.010362179609629475 :0.010319828150116131 :0.43960973436183665 +those:0.18209007738925853 and:0.06887458944519075 men:0.0646267216962719 man:0.05609670036445206 all:0.045667201069491424 one:0.03656000476124336 people:0.036480514413539715 persons:0.026033942240384432 person:0.024506291031897005 Those:0.023471836439783515 or:0.012204462101482953 women:0.01135371835086082 of:0.010404886187391665 many:0.010254591224305684 woman:0.008799528777383516 others:0.008541308636803547 thoso:0.006880016953772389 States:0.0066086631565158 girl:0.006373621710522506 :0.35317132404944845 +they:0.1422193600349239 there:0.05849232705230136 and:0.05364794518597344 who:0.05060073302875137 we:0.039796496029532724 which:0.03941212764794604 They:0.031471712802734836 There:0.027277972023637694 that:0.026476974477609803 men:0.021156313901298206 it:0.018650113321758758 We:0.01150603832299857 you:0.011134597598392589 I:0.010540813851838039 people:0.010280567277705255 them:0.009160186773977539 as:0.008841656067636882 but:0.007526879745621775 whom:0.007466233559027055 :0.41334095129633414 +to:0.3717898671093363 the:0.07170416153452354 and:0.05816300132275052 in:0.056477032550794434 will:0.05036106113717501 a:0.04832473607301903 of:0.029535879111294506 would:0.022988684501435586 re-:0.022399816756813743 not:0.020647020872443824 for:0.01804646119014846 his:0.01605909963025704 In:0.015783258258701 can:0.014703326382781554 their:0.014428828010199625 its:0.012586457250877836 this:0.011808370133702326 should:0.011421338921333794 must:0.011286925672513274 :0.12048467357989856 +of:0.1733622250582574 to:0.11773295148154868 in:0.09933165752542053 with:0.09300525452299446 for:0.08499683799035164 on:0.06779959424925545 and:0.05355051620082022 by:0.05164558806825533 from:0.031059673536551462 upon:0.025906711872097105 that:0.02075559754005585 at:0.017374492917758954 In:0.015104754527603586 take:0.012663263169443596 or:0.011966648326710148 make:0.01039115956223281 as:0.009541700067147022 made:0.00927316977498617 but:0.00890557115069351 :0.08463263245781605 +the:0.4071374189315913 and:0.06449181461132415 of:0.02892866618288876 in:0.028670005984162618 The:0.02603617389223924 tho:0.024993820467459137 a:0.023579040051412606 to:0.01755553213771617 on:0.014626070241060114 by:0.013447843485786471 or:0.012794166593089693 tbe:0.012024509152999897 :0.010353482361299817 that:0.009291482237329618 In:0.007938246807075932 from:0.007526799010378873 other:0.007469196869028889 all:0.006409533041696086 for:0.00626887758057738 :0.26945732036088327 +the:0.1864866730403369 of:0.10214258064812948 and:0.05549994141568971 a:0.05196624635535982 to:0.05115004090146824 be:0.04579104885513233 in:0.03110103747107456 his:0.0307454196539636 was:0.030186971900981102 is:0.028132521832588925 their:0.027641684795139836 for:0.020009172731581745 been:0.01611381130044442 its:0.014799172745324114 are:0.014002064671223119 or:0.012715474736360147 at:0.011660456421070444 not:0.011351130157368631 tho:0.011219859298471257 :0.24628469106829162 +the:0.15784458541803478 of:0.10918480198431493 and:0.04852680644526956 a:0.027833499301700395 for:0.022994901489273672 to:0.019276361693162238 at:0.015540206956632042 by:0.014370200784933798 :0.013316223826268042 tho:0.01271161074864145 or:0.012348868280110108 be:0.012103141397829592 this:0.011823945236556537 The:0.011254787071647442 as:0.010892793057166198 in:0.01086077409377007 their:0.008926059036134734 his:0.008599701347736771 that:0.008507485860785641 :0.462083245970032 +of:0.09129790931378902 the:0.07369883040827747 and:0.047842263382354346 in:0.04189055351593407 to:0.04045875475680249 a:0.03542341257202578 be:0.02020462051672066 for:0.01979292654746225 was:0.01760256398103379 at:0.017380150555488715 is:0.014984483003968216 with:0.014047653760730413 by:0.01374644383819499 :0.012670486581795598 In:0.01200961464556976 or:0.011563835749786333 from:0.011391516893522809 are:0.011273104484969465 that:0.010755276030689069 :0.4809655994608848 +of:0.23227200451958543 the:0.22014343835553396 in:0.11922663211135574 In:0.04336379885979171 and:0.026409954027211028 for:0.01840720983115814 to:0.016768603269305345 at:0.01501046064344403 The:0.013911601081193676 an:0.010062519891455726 by:0.010030697754980682 on:0.009994384717323139 tho:0.008533357031704809 from:0.008190948989404144 :0.00818958352835059 or:0.0076198989254963575 said:0.007546638493009596 this:0.0072528760869698 ot:0.006923002247195515 :0.20914238963553056 +they:0.11660260499937355 there:0.07893210287847705 we:0.06516820438874027 who:0.05974127404455708 you:0.047650160304690506 which:0.04264319507765879 and:0.03656571263266265 There:0.03557769456216332 that:0.03444981820843358 We:0.0341217831367647 They:0.03309826769553378 men:0.023204575252340855 people:0.019991800194800482 You:0.01231763006423622 as:0.010515966272881245 them:0.010245264036344494 I:0.00912334180660601 but:0.008201917787751856 it:0.007697262086505282 :0.31315142456947825 +the:0.24466030819512005 of:0.20475992485308264 a:0.08903126881666328 this:0.07052352979397146 civil:0.06078507215869062 for:0.03949145279946363 in:0.038245468862715716 from:0.01849840451719619 to:0.018306265036120595 by:0.018087938024172693 on:0.01766324206754441 with:0.015720892706269772 and:0.014824951311289273 that:0.014519304243386719 his:0.014215092709283873 our:0.01318503285647824 their:0.01277204180401388 tho:0.011672676783700668 public:0.01010395656239811 :0.0719331758984382 +the:0.11919516938815296 of:0.07230453158552728 and:0.05781056740443249 a:0.043018564803886335 to:0.031305092790907506 in:0.020848713353460488 at:0.014270110001066288 .:0.012526810245749479 :0.012413283442322082 for:0.011719122709941797 by:0.010808400946589808 or:0.010404172990115616 The:0.01003576004804544 with:0.009811868184449042 tho:0.009295902015355835 was:0.008924239095331684 that:0.008672304223433876 is:0.0085591147338948 be:0.008335143826716943 :0.5187411282106204 +and:0.32811248544943405 was:0.23248219038065623 is:0.07611374560123671 He:0.06407021062029528 were:0.035654122689417395 are:0.026415623596676794 he:0.01781736762894294 be:0.01200551823198087 I:0.011448054860769 it:0.010326504559057708 not:0.009442936281761691 been:0.00885524431026204 Is:0.008744297807192212 It:0.00810182763632753 but:0.007473387374548794 She:0.007466841957221175 will:0.007033368627284939 has:0.006315339293905008 that:0.00623650296726332 :0.11488443012576627 +the:0.14277038002801662 of:0.08565761538411454 and:0.08138231135407792 to:0.05107959848493338 a:0.045497765086510836 in:0.0272305899265926 at:0.023292236477314186 or:0.017816706592851325 The:0.013378296653126363 :0.012698669245308334 with:0.012228147724416787 from:0.012044503716573394 by:0.011779234898512838 for:0.011557885627629359 his:0.01116062475863805 .:0.010429763987623887 on:0.009460639480273756 tho:0.009445219992380224 two:0.008536662330702348 :0.4015531482504032 +hundred:0.013633628820093018 ;:0.011172311961148602 him:0.009807052834026905 one:0.00914669734384353 feet:0.0090219372983598 up:0.00838318558829166 mile:0.007527126877816727 feet,:0.0071805242500254255 time:0.006879602834379732 man:0.006817451499927337 it:0.006300585667639516 it,:0.005903705234588485 out:0.005451849962934835 :0.00538718305729827 ,:0.005295204710281874 and:0.005240008239108335 here:0.004938150073064577 water:0.004837308913464981 them:0.004796443021708541 :0.8612800418119979 +the:0.21965299101229616 a:0.1296308673490221 of:0.07096514448760992 and:0.04151651161798274 The:0.03457927492802955 to:0.02455544896938513 an:0.024189626894219465 his:0.01716425952983068 A:0.01485176505055212 tho:0.014727460803099954 in:0.013368051693751475 Mr.:0.012824514457866424 that:0.012730697745233248 with:0.012632406226406748 :0.01083319152392252 by:0.010397372242861375 her:0.009211789514259883 at:0.008430315629388329 their:0.008286891755473792 :0.30845141856880837 +the:0.13135220900421657 and:0.0712733438143105 of:0.06703749504033206 an:0.036543529958861315 in:0.026806655934644565 to:0.024828090110240595 that:0.02181567292193496 for:0.019964605486391132 :0.01679233051954918 The:0.014820801285302965 or:0.012971223724498503 .:0.012759373475819907 by:0.01210811869951564 tho:0.008731164964105422 which:0.00822802036994121 with:0.008192113273091233 I:0.0075451399850185825 on:0.007522877564687393 this:0.00709332862438631 :0.48261390524315195 +has:0.3185708165296077 have:0.26179923532527755 had:0.19055774559610159 not:0.043851790637490236 having:0.02832177504915682 bad:0.016945634730692848 lias:0.015617457052883667 never:0.015033900940040399 ever:0.01052144779845259 havo:0.00856950063246009 yet:0.007728793116165581 already:0.007471849381643198 it:0.006428292675418802 always:0.006118016027452803 haa:0.005808669607833082 baa:0.0049161058754524836 bas:0.004710578398615359 just:0.0038814551154696965 long:0.0035879621846973834 :0.038558973325088106 +and:0.07948182060109224 of:0.0701986648973731 it:0.04703615513652644 do:0.040545544893623726 by:0.032854394185556995 for:0.030558959154369653 be:0.029420798601375753 was:0.029243890106868873 he:0.02686546265645863 in:0.022509515494988256 made:0.018151705409981966 been:0.017272735222006348 have:0.017022096170599417 with:0.016276702545964146 to:0.01583545344473436 is:0.015660355118406633 had:0.015646622239597573 are:0.015288978838613132 It:0.014932731805978181 :0.4441974134758846 +and:0.14584845297803378 to:0.1310310825387635 of:0.04873782387890286 the:0.03936712953327162 he:0.037831229276205906 be:0.028215207659682218 who:0.023883398297041055 in:0.023292004543613062 I:0.019593251155122875 was:0.017856739512509996 will:0.0177567277666772 not:0.015935649280980128 that:0.015456465014064596 it:0.015368295734911091 a:0.015272953304511845 or:0.014389453479445109 by:0.01433445579535077 He:0.013734392721895677 as:0.01320564033038564 :0.3478896471986311 +more:0.028945745026074197 two:0.02864537011188707 day:0.02776544924991022 one:0.019209366612222955 on:0.01863565018612163 three:0.01458057029892728 ten:0.014550773592100044 state:0.014528415243673197 lot:0.013640419288689485 State:0.01253121755864133 law:0.011348333889034291 five:0.011178800209115868 six:0.010218469193722646 city:0.010174088637104164 year:0.009881709996834265 four:0.009533626351331955 person:0.009448511007358761 piece:0.008125524087714579 action:0.008091002099190024 :0.717966957360346 +the:0.4743119229974809 a:0.24782088583324083 The:0.06339264464236938 and:0.04321091631617999 very:0.023543952916208928 tho:0.022664245003261033 of:0.014078921585598697 be:0.009083206031598031 no:0.00897476659079422 was:0.008133124965771232 his:0.00765225073102731 tbe:0.0072091728944873295 their:0.007168578757882041 he:0.00670059234917775 or:0.00638890109022149 this:0.006291743158126813 most:0.006192013579458441 our:0.00599576173001188 I:0.005446945717331457 :0.024739453109772262 +of:0.2200901075010016 to:0.10045153992059982 in:0.0932413143907623 and:0.08961889668994476 that:0.08128474357067952 for:0.06772737952195754 with:0.037811448255893866 by:0.03734332507563126 In:0.026543725206782977 under:0.02193087989775704 from:0.021356927302113284 but:0.01874107226240975 on:0.018262513459208173 as:0.014838467584730612 at:0.01395202540966417 when:0.013736414474174974 all:0.012747221742459377 upon:0.011755417605259048 is:0.011313306823344334 :0.08625327330562557 +of:0.1989834374444772 in:0.1004721202217017 with:0.08715589653067427 is:0.07095086990668041 to:0.06354610533941893 and:0.057088084850161494 for:0.054526861286616796 was:0.04233026875056805 by:0.03462257274058992 as:0.027003537850023338 be:0.023223717860263032 that:0.022167698865602367 In:0.021860980505172038 such:0.01694331992632047 make:0.01508253422195152 have:0.014533985090899983 made:0.014490635137787864 not:0.01387602645012994 at:0.01380077885695277 :0.10634056816400789 +the:0.22227141750222906 a:0.11454158564184912 at:0.07010175092615567 and:0.06775682371952167 of:0.040630100241511945 in:0.036083817824498654 to:0.030408458206402134 an:0.016492831838774296 for:0.014478773136850162 tho:0.014215785952545242 that:0.013678743406457028 The:0.0135693024624249 as:0.011695057155669151 by:0.011307350888374966 this:0.010305324251871875 his:0.01013526560713238 or:0.00944131131355414 all:0.008948042518981947 with:0.0088950478849756 :0.2740432095202201 +the:0.3155145277344057 to:0.11854147523534705 his:0.08836298287259722 their:0.05529793541507081 of:0.0466830858327245 in:0.04189220598478525 a:0.03983959993839865 at:0.022939858168593064 and:0.022221415296185293 tho:0.019024862344379254 its:0.018880481908275727 our:0.018725613921881337 or:0.016581025603692838 her:0.01479214155545214 my:0.014701499156509708 for:0.012861498958680632 own:0.011661192128527387 ef-:0.008962758228384538 your:0.008443062655935665 :0.1030727770601732 +and:0.07705437548817387 depend:0.031536193375950296 based:0.03144111872793531 placed:0.030957065963502946 depends:0.03075765919212402 called:0.030155936973754766 down:0.02681736716319054 made:0.026577710722022318 effect:0.023344764020024934 that:0.02149799173318628 look:0.02036076372291408 due:0.02026744173692952 call:0.019789339473829694 levied:0.01970103437603757 imposed:0.018928989316509288 put:0.01802119246063272 dependent:0.01689647076264392 out:0.015342186135269933 entered:0.01437601109950992 :0.505176387555858 +is:0.09442325587488039 of:0.08449183819348176 in:0.0815370314230888 as:0.07649619154278077 at:0.0671962449241799 was:0.06215718547697044 to:0.05940043408446283 with:0.055850749007174426 and:0.053541022282754536 for:0.04412659381591538 such:0.03874691485689114 on:0.03276498012364119 by:0.03219209178408866 made:0.027160801499491155 be:0.023423853706045862 that:0.02151996052069041 In:0.021403986345800402 have:0.020034286214463286 had:0.017090778719944102 :0.08544179960325457 +that:0.12877368706521958 and:0.10343811039022899 which:0.0800594611337696 when:0.0599498536653849 as:0.05365331218935483 to:0.05164919583107528 if:0.0270497931800979 will:0.026888923864509424 but:0.025383516994720454 where:0.02293792694881519 what:0.0207777038096785 t:0.019343962651763098 said:0.01729463067489876 would:0.015552874955014286 for:0.015152722422811573 whom:0.014651225618177431 before:0.011897529933941699 not:0.011235367786820124 If:0.010599156710423857 :0.2827110441732945 +time:0.015582320489099202 it:0.013649638096030377 up:0.01252995631660922 him:0.011267870780932726 lying:0.01071995375077326 day:0.009362888044758684 ;:0.009194796338533888 dollars:0.008935813120370577 it,:0.008148779837196763 made:0.00813086351676707 land:0.0078992395127881 years,:0.007289132716938969 due:0.00686993649006836 them:0.006791660597193324 quiet:0.006716095698973156 them,:0.0065571085349640105 here:0.006226395627001566 now:0.006065016581099302 years:0.005995162672081885 :0.8310673712778195 +he:0.25291819314122166 He:0.10639766636109385 who:0.05898578396182951 one:0.05019847689096334 it:0.045939073749848396 she:0.039027501736200135 I:0.037366248150347614 everybody:0.03154257211843895 It:0.023571476467777346 Everybody:0.023522027077109424 man:0.021311321562766654 and:0.02040006474336359 nobody:0.01641218189048915 She:0.01628293166235489 they:0.013848196486965756 ho:0.012700355615545503 we:0.012652929915415409 God:0.01257736498218653 that:0.011656997252967453 :0.1916886362331148 +of:0.28767355066866834 to:0.08775711267569858 in:0.08678131196995101 and:0.05160598694501188 on:0.04646139928102899 by:0.04519522654900943 for:0.044547789071328545 with:0.03396756772609607 that:0.033699232901107726 from:0.03075346596941143 at:0.027039283056790858 In:0.021061449543044047 as:0.017514234937992545 all:0.012543839382496166 upon:0.011844431150487573 is:0.00998972746569266 was:0.008814315973987914 into:0.008557199930727406 through:0.007781895704231326 :0.1254109790972375 +of:0.09129790931378902 the:0.07369883040827747 and:0.047842263382354346 in:0.04189055351593407 to:0.04045875475680249 a:0.03542341257202578 be:0.02020462051672066 for:0.01979292654746225 was:0.01760256398103379 at:0.017380150555488715 is:0.014984483003968216 with:0.014047653760730413 by:0.01374644383819499 :0.012670486581795598 In:0.01200961464556976 or:0.011563835749786333 from:0.011391516893522809 are:0.011273104484969465 that:0.010755276030689069 :0.4809655994608848 +and:0.10214269553251397 of:0.09040688128822227 to:0.08266334484250851 the:0.07952638880880775 in:0.030159081630398647 or:0.02141868930653503 be:0.020558547501083067 a:0.019092232084906114 was:0.01730227941062289 I:0.01685050869379049 is:0.01541184109028007 that:0.015236427571031103 will:0.014324589118144174 not:0.012733753133334462 it:0.012305399851639243 he:0.011611656462904685 for:0.010710394488925572 :0.010474259588190279 In:0.010168478097621888 :0.40590255149853977 +and:0.08404234493186591 was:0.06720968805879128 are:0.05954942960339685 is:0.05424784744049415 were:0.03148080386973287 be:0.02842733132582906 been:0.02582830643793585 that:0.021071133704061502 it:0.01706220919545317 not:0.01671980058237924 them:0.015306026479374858 or:0.015231051442078031 engaged:0.01505314289152859 now:0.014532873703988222 made:0.01406509035125101 found:0.014025099804548094 men:0.0132843184775795 held:0.0123771941447601 put:0.011935039946431593 :0.4675512676085201 +and:0.10185576633867217 resale:0.05878808522970926 was:0.044983455761146277 is:0.035515147100655 that:0.03277972132176688 inserted:0.032038471189119615 be:0.026757594845757186 it:0.02527993274327406 but:0.02477200898178501 as:0.021650908389318563 them:0.020591099129923605 or:0.020513510639524724 him:0.01895793792980764 are:0.017810541737555915 not:0.01565136695090448 made:0.01524241478892083 been:0.014591392626663688 were:0.01455139725426082 found:0.014403563255245723 :0.4422656837859885 +Secretary:0.06562178251427682 out:0.0374528342479852 state:0.03669793364715311 city:0.02873264189140189 State:0.027178428240410377 line:0.021711195979339522 City:0.019979682828647788 number:0.01982449966592285 day:0.019442432046455068 county:0.017550650469255955 side:0.01705921597058266 part:0.016481305550052547 form:0.014828070035286078 lot:0.013693432285495293 board:0.013533511512841514 tion:0.01264513562602875 piece:0.011807814624339202 matter:0.011301306753450903 point:0.011094447423050694 :0.5823636786880239 +of:0.26916610166554966 to:0.11165033873895189 in:0.06803964316451194 for:0.06553231260239333 and:0.06366830916606032 by:0.04914478226708683 with:0.047618828362552254 that:0.045140866544923566 from:0.024988007248282092 all:0.024303618741254376 as:0.02142890155344962 on:0.021412455297682705 at:0.02068311087817189 is:0.017111913146131027 In:0.016127626140316986 upon:0.014658662912955636 was:0.011532108665791178 under:0.009827049278559645 which:0.008870843892746443 :0.08809451973262859 +per:0.8595003387682839 re-:0.018186437212279017 one:0.011778967908904479 a:0.011112126296908548 por:0.005827084085887005 re¬:0.0053318700251852565 ten:0.005204293533707452 the:0.0044071722753975685 six:0.003628817390410231 re­:0.003619299271311777 and:0.003514211686256488 two:0.003424044274217897 five:0.001951113153270527 three:0.0016184570061396667 50:0.0014469805341142006 few:0.001444086871699771 half:0.0013946178614720863 of:0.001304088960677855 four:0.001286250842414805 :0.053019742041461496 +to:0.5203828176827197 and:0.10300243369695863 will:0.04564048960073995 not:0.03608547637728075 at:0.03253129929051683 would:0.014945425706806558 the:0.01438539160911735 a:0.01428729806904631 they:0.012945319297957156 was:0.011217371329370918 we:0.011163184976844952 I:0.01107210777044562 may:0.010250482371528168 now:0.009548343245825146 of:0.00908604649250917 can:0.008133063598382433 from:0.007901595432769234 who:0.007897693679526963 could:0.006571539705885105 :0.11195262006576912 +it:0.11374322064888397 that:0.08849285012647748 he:0.07063955931144668 they:0.06949213004085569 which:0.06736589041601566 I:0.052851628784311155 there:0.052636319515748785 and:0.03940645560462026 It:0.03496997626600035 as:0.029539693226368003 one:0.021375715078995033 who:0.02131540234433632 she:0.01825176246873039 what:0.016375602637648534 nothing:0.01601436614232326 we:0.014986875889322562 you:0.011323834703834875 man:0.011087536301107122 Nothing:0.011076268021484523 :0.23805491247148938 +and:0.150865116501249 he:0.14832368879777336 He:0.07020406167413454 I:0.047600606355665515 it:0.044360903242383905 she:0.035140050220837174 which:0.02934276827474941 It:0.026712716768824793 that:0.026100935875258423 who:0.02460260584389925 then:0.01895650823663362 She:0.018944506957330975 they:0.015542949657050007 soon:0.013221615380071843 ho:0.010586343526732094 immediately:0.00991232575498699 time:0.009446543978523146 lie:0.008816208354461416 They:0.007235743574737546 :0.28308380102469705 +:0.04886162056411152 and:0.040019830359908116 made:0.019534249586484108 was:0.01884742032062261 recorded:0.0156557013153549 that:0.014962923641391521 be:0.013346741481126276 is:0.012414190474703378 o'clock:0.011973468167413116 placed:0.011531292464673245 out:0.010920644875481857 found:0.010814196298763954 place:0.010167028437165111 situated:0.009811016372775217 up:0.009511290277384947 them:0.00920663098385622 been:0.009160737073209432 him:0.00901249715764949 are:0.008449437635810648 :0.7047990825121143 +and:0.06341133254117746 as:0.06259082891459346 order:0.056456003165205215 able:0.05207201748069918 is:0.044713020507936144 enough:0.04243037913116934 necessary:0.039359843632736737 him:0.03361619156125576 was:0.030665654521335114 time:0.0264640239000838 them:0.023856718676681873 not:0.023203136750960876 me:0.021572324247991714 required:0.02117145742556287 desire:0.02116683340872205 unable:0.019897817268225666 have:0.01838624653534061 right:0.018280289611863242 power:0.017701366469714402 :0.36198451424874445 +and:0.0727215533140401 wait:0.04128286310665585 them:0.028395234947109844 there:0.02676852426217594 up:0.026310522278748354 retained:0.02390018491986361 continued:0.02369824179299974 him:0.022794378017548432 not:0.0220358274894264 it:0.02127116650081151 out:0.02018103459230547 time:0.01939014802238687 made:0.01728958352398934 office:0.017198214936531706 postponed:0.015274618331146551 that:0.014864895520864379 remained:0.013204258229158179 but:0.012719761565820718 down:0.012279536428529705 :0.5474194522198874 +of:0.32492849527305706 to:0.0984760251077514 for:0.06456868267467059 in:0.06304847977129492 and:0.05359054747648212 by:0.053563074793569164 that:0.04420469669578679 with:0.04338798892772942 from:0.025979271796258984 on:0.01811948243117574 all:0.017620679973922394 at:0.01634554206524948 is:0.014820594701831289 In:0.012148912125190155 upon:0.011676581261990218 as:0.010792178073417917 but:0.008657420352670742 before:0.008184573753420205 was:0.008053151431184541 :0.10083362131334686 +to:0.4358544193449178 in:0.07882799341063414 a:0.07528770712121953 the:0.07107525515505068 and:0.06252960197872287 of:0.0568493183884382 In:0.02157279858373952 not:0.01602068296709237 this:0.015362136790139605 for:0.014827121024523975 or:0.014420404755730747 at:0.01413056053703984 than:0.013751377824982437 I:0.009846003724823981 with:0.008751452024827263 by:0.008679945198261542 that:0.00856632629193537 will:0.008542534980819484 their:0.00808197709323044 :0.056022382803870195 +the:0.07903606298089898 and:0.06268362667621136 of:0.05110746932783247 be:0.03379370184369944 to:0.03272133585936669 in:0.026599606675735278 a:0.02551222978550374 was:0.025136588607814363 or:0.020646724637620503 been:0.020158259608341417 Mr.:0.018099499039356513 is:0.01800015836839166 con-:0.01774807699764356 for:0.01758231880542202 that:0.017461489472380427 re-:0.01644268600519017 are:0.015737434749375407 dis-:0.015617843342844155 were:0.01421699464783049 :0.47069789256854133 +sum:0.03352282876311118 number:0.028116684882597106 line:0.019995206059833036 city:0.01946514558931857 out:0.019275318828420953 day:0.01666865340772654 county:0.014872697538657208 amount:0.013254184849875051 Board:0.01252325449624941 town:0.012449555905674143 side:0.011663975251122375 part:0.011517157473718155 County:0.011460540331966697 state:0.011087331502382173 City:0.010878919191854432 purpose:0.01081028255427907 and:0.010297866493795984 way:0.009848747943663767 name:0.009522170936943183 :0.711769477998811 +he:0.26292323038545673 He:0.2265724038051696 who:0.08783288306445461 she:0.049642568144062885 It:0.04546171736524122 and:0.0446595268853657 I:0.04082689515359271 it:0.030116152012144713 She:0.022430434076638302 which:0.019452147519500806 They:0.015346520135620705 ho:0.013061932384683663 they:0.01284064770598713 lie:0.012088886337846123 we:0.008146834003556827 We:0.007733128780067456 that:0.007675305515006394 Ho:0.007191221155264032 have:0.004683087430244121 :0.08031447814009628 +to:0.29477043332103375 will:0.14932507332214345 would:0.08287468707984652 may:0.07340593055208235 should:0.058638278188188335 not:0.04580641230087329 can:0.04442760362128931 shall:0.04355723543551076 must:0.03898293417697941 could:0.029664224720697255 cannot:0.01960288436170223 might:0.016317911236162327 and:0.015097725429416339 that:0.008842695886512942 it:0.0058817020988247955 never:0.005688422593598036 also:0.004996365819083631 which:0.004985022083997105 only:0.004417388348509193 :0.05171706942354899 +and:0.1128102284411748 but:0.06266334651609785 that:0.059927410993811416 as:0.02128243386560907 time:0.018255743525828233 But:0.018236429477965898 and,:0.018111096269178374 that,:0.01491739305555469 which,:0.014799155956401152 them,:0.012373100034001503 And:0.01195169822267702 only:0.011399689782196135 which:0.01120740234367666 years,:0.010897616928028476 it:0.010282326546128307 who,:0.009613209423371596 now:0.008955793571020058 or:0.008287844332821991 used:0.0082463611091786 :0.5547817196052782 +the:0.39749834532651884 a:0.07520030034269234 and:0.05540858759821703 The:0.03273515726769502 tho:0.030061875542463562 of:0.020144331424922633 tbe:0.014929647509541684 in:0.014268129706664795 or:0.013333166761078447 .:0.013287381914101323 an:0.009000188755386574 to:0.00880680429595084 :0.007943763822197133 Mr.:0.00773879605474787 by:0.007328417831573476 as:0.005922572098978465 for:0.0047526933692942485 that:0.004736121968310169 on:0.004594595720579333 :0.2713091226890862 +the:0.20533409879605452 to:0.10956731119335822 and:0.07706948393964537 a:0.07102747110393237 of:0.06663724901964553 this:0.034865881403854986 that:0.024720513089409427 one:0.017306571794752437 as:0.01608087043570416 his:0.015240523493773172 The:0.013453919535984755 any:0.012637434482460073 tho:0.012093706583464882 in:0.01176951753706997 than:0.011754111150615369 same:0.010827913977239772 or:0.010488485724106794 our:0.010219925297512974 little:0.009702867733811633 :0.25820214370760364 +the:0.08924583355250688 of:0.06709772970626837 and:0.06096433271195249 to:0.03782353999951829 be:0.03585758479952696 was:0.03538828465307138 his:0.03219223499067965 a:0.029346705700493195 is:0.023004611866364502 at:0.020428809229746006 for:0.020361924766362186 about:0.019958565288780924 were:0.019903044289786932 in:0.018775961762869324 their:0.018766260537036426 or:0.01876171559751903 are:0.0158254358912989 on:0.01377932844056971 been:0.013154963748679955 :0.40836313246696887 +of:0.24697215526840444 in:0.20632016671575062 to:0.05125348025235225 for:0.04700411522827203 by:0.042436755455415746 on:0.04227897222320676 and:0.041844596628654605 with:0.03726681374216574 that:0.032133249330880694 In:0.029798817196347367 upon:0.027374836896322405 all:0.026979789010668574 from:0.021000456472528423 at:0.020783852955277075 or:0.01504103227480522 as:0.014507498973078188 any:0.01412625694758306 if:0.013624104870162745 under:0.011906708354932662 :0.05634634120319141 +of:0.23769576591775432 and:0.1248155656832514 to:0.08493428290285325 in:0.08028097072967644 that:0.05801348043878913 for:0.057231340115211776 with:0.05121400344339803 by:0.028931649199889577 from:0.024125762078389252 at:0.02373008740078377 but:0.020071353521859913 as:0.018430304084749476 In:0.015821205559046866 was:0.012259041327002215 on:0.010857351169528184 after:0.01031405211755785 all:0.010032221935156158 upon:0.009635819887942737 or:0.009596667833843537 :0.11100907465331612 +and:0.12445919451317085 to:0.09930780325183805 of:0.03836547298356526 the:0.03723119252405125 in:0.030710162543462226 he:0.027093206158750372 I:0.021983706950542498 would:0.01964401533434286 had:0.017176415714457497 not:0.016431771430805153 it:0.016074046121716666 who:0.015702130476853426 a:0.015184709443651048 his:0.014819827963624648 she:0.014339974547358456 or:0.012882434932188136 In:0.012475776054616439 that:0.012471627847179834 her:0.012434324766836636 :0.44021220644098874 +the:0.10783242355436633 and:0.09837415659423153 of:0.05193659291028048 to:0.041579937616107863 in:0.033567356889137284 a:0.019247083589798604 for:0.018168260702126977 as:0.01768656158955107 that:0.01753591195559761 which:0.012830176945683072 is:0.01231397249421085 The:0.010979434779100211 :0.010040968003380956 are:0.009839915167676625 or:0.009436940036699142 was:0.009215331395060974 In:0.008715643204499909 on:0.00821693380674686 -:0.007854981201294006 :0.49362741756444967 +he:0.12976820625117658 who:0.09221886342062384 which:0.08202145445505479 they:0.06808463273766263 it:0.06300140281566258 that:0.0536651199481747 I:0.04355172570140108 there:0.03694176174144522 she:0.03568475182996337 It:0.03445956439681276 and:0.03146500019799679 He:0.03013662272772511 have:0.01649641755291053 has:0.014869129143777082 we:0.01270748492222897 She:0.010037042499654298 had:0.010034468298945191 They:0.009824977349933048 ho:0.009403905633941782 :0.21462746837490962 +and:0.08832934385398629 him:0.026983886122743477 application:0.026114251583320973 was:0.02489894908956569 it:0.023075411912330694 up:0.02251060273927451 made:0.02033127255167498 out:0.019486588030277113 time:0.018903019749807147 them:0.018632082326077732 used:0.016786364428856393 but:0.016269712072418657 ready:0.01618805525798725 is:0.016020989807641675 not:0.01564434704203927 demand:0.015432404580140367 asked:0.014792759533761007 that:0.01442331755080464 work:0.014074418411123594 :0.5701022233561686 +of:0.16673885936294291 and:0.1044055664351777 in:0.07421136044780037 on:0.06635166687485097 for:0.054496448587733386 to:0.04808137665973379 that:0.04620061789850445 with:0.033450245507785 or:0.019400748524394832 by:0.01915084354994916 but:0.01883912275370167 from:0.018663712678531227 In:0.01860902022083549 at:0.016985725540382787 is:0.01552913460119309 have:0.01544553847661912 are:0.014209981185240117 upon:0.012556487526060978 was:0.01115082566152316 :0.22452271750703978 +the:0.1423309718397181 of:0.12549808883400856 and:0.12450030161518558 to:0.05372279294249373 as:0.02448789224471226 a:0.023936654431725147 be:0.02165416881146706 in:0.019340937736922654 was:0.017907216856947527 is:0.01733084493468812 or:0.014918811276474325 their:0.011533929281067216 at:0.010108198237335803 his:0.010089308513205721 for:0.010081944951775838 on:0.009645254541890353 are:0.009614608634372279 from:0.00921162495351011 by:0.008973846383105838 :0.3341126029793937 +his:0.30490612337696604 her:0.19041227100003352 the:0.07302201771963071 a:0.04860061689609766 and:0.048418302292365045 my:0.03980532990944194 their:0.02093192175263562 bis:0.020721112041563457 your:0.018777372546646718 our:0.01494721232717839 bride's:0.010625478042097774 little:0.009352828408829955 old:0.008916162353137433 re-:0.007544973055674768 or:0.007260983311879198 to:0.006761676018915613 His:0.006489314847868504 own:0.006082460826421758 its:0.00606789080143049 :0.14935595247118538 +the:0.11647397024205017 and:0.06362047084342998 a:0.05558756058317305 of:0.05184179696935657 be:0.03780708026725856 in:0.03068378334963019 to:0.029893831330664623 was:0.026181618889557768 is:0.02221450019585246 or:0.019678333827005016 an:0.014410693890828689 :0.012800070883144894 at:0.0126101785132988 been:0.012270539776324555 this:0.010846198254420838 I:0.010748802218931574 he:0.010518957518335691 are:0.010195419510755066 not:0.009494414837245396 :0.4411217780987361 +be:0.26883054272017687 was:0.17907282218978823 been:0.07140596871286417 were:0.06818976890979081 is:0.05936903165762657 and:0.04841460858740972 he:0.042455099168427636 are:0.037433242884040735 I:0.03358255518268167 bo:0.017922129458552764 being:0.017763131807502018 they:0.014584338016766143 we:0.01396714260153187 had:0.011722821007403246 have:0.011266533826457401 Is:0.009776229021331212 not:0.008237876141583618 who:0.007464005324190931 He:0.007236720422813596 :0.07030543235906074 +the:0.5156442877862821 The:0.04747205873073863 of:0.042636064828109936 a:0.042336722066076436 national:0.035097669077185395 said:0.030404094301013134 and:0.029434834927383198 tho:0.027262215010064324 our:0.021906877027600666 National:0.021180012854769465 in:0.017096254536305734 his:0.016397578588362292 savings:0.01639188325825745 tbe:0.014808945967278742 this:0.012963526997595634 other:0.01253440130887976 their:0.012468716316299975 for:0.012021371024071583 that:0.010895516619196665 :0.06004696877452887 +;:0.01822171299708269 in:0.008388745624696416 it,:0.006814871688438149 up:0.0059904541322991865 and:0.0057858386867279425 him:0.005663812954674515 ,:0.005441202207075899 them,:0.005373511986278404 him,:0.005176319754531807 it:0.005169366496074744 one:0.004804378000946817 feet,:0.004559233673841247 time,:0.004379206431834202 :0.004242991515985038 :0.004084903039126714 out:0.0038791569260290316 mortgage,:0.003819859657216896 down:0.003816451353602692 county,:0.003805431854016807 :0.8895825510195208 +away:0.05746860598250849 and:0.04985561698690421 taken:0.03950823995165392 miles:0.0355312759828073 feet:0.031845900191456514 come:0.022313957473317422 them:0.021637161013586904 out:0.020621546731341717 came:0.02000539576637417 up:0.019820502682224503 him:0.019195504147748815 received:0.019046714556510396 far:0.018152378296247898 removed:0.017489734983720518 down:0.017467467859455896 it:0.015386533775439217 years:0.01424855034507225 annum:0.014237643714946796 free:0.014107989586278378 :0.5310592799724048 +the:0.11919516938815296 of:0.07230453158552728 and:0.05781056740443249 a:0.043018564803886335 to:0.031305092790907506 in:0.020848713353460488 at:0.014270110001066288 .:0.012526810245749479 :0.012413283442322082 for:0.011719122709941797 by:0.010808400946589808 or:0.010404172990115616 The:0.01003576004804544 with:0.009811868184449042 tho:0.009295902015355835 was:0.008924239095331684 that:0.008672304223433876 is:0.0085591147338948 be:0.008335143826716943 :0.5187411282106204 +the:0.1132967991276985 of:0.07207843088026106 and:0.0685496422562821 to:0.06743690900416531 in:0.057744756186196546 that:0.026950159968344607 In:0.023000287664253893 on:0.021976821434677826 was:0.02141299072671354 is:0.017513594158558146 by:0.017007153606271967 a:0.015679701789379198 be:0.015269479244885231 for:0.01442549186595424 as:0.013925344119762862 or:0.013370823462127777 which:0.013108513118473985 :0.013058273289046431 from:0.012617050270366215 :0.3805777778265806 +and:0.11606046623582099 to:0.07595515155907223 the:0.03972251737886805 of:0.03858987488572155 con-:0.02977731884512904 re-:0.027712069413149194 that:0.027223040308247976 or:0.025927234820816922 which:0.021318959668027552 I:0.01960060298860228 in-:0.0192917949435189 not:0.019147714045509034 he:0.018648025423870014 is:0.017693083178061154 there:0.01680239468234597 for:0.01636405150856417 in:0.01556380425745829 dis-:0.014951307857953738 be:0.01491545441017786 :0.42373513358908504 +to:0.13788460965741448 of:0.1253091743210457 an:0.08819114826417161 in:0.07854988672486053 the:0.07673852283186587 his:0.050230867631855816 a:0.047301354642965254 In:0.02525233051219958 and:0.025139641273324596 into:0.020570858402250713 by:0.019803195578661482 her:0.019296421663329063 or:0.01913771122134419 no:0.018901686800710273 their:0.01565515672767649 from:0.014512825839627106 with:0.014018263447014515 great:0.013603536215442406 my:0.012646771024365856 :0.17625603721987443 +of:0.2748722687552084 a:0.2064757955208517 in:0.0904955660160441 the:0.05841007955528521 with:0.04841942474310035 and:0.04215503303334504 for:0.04070690069037559 to:0.026638796150594005 make:0.01853640749521198 In:0.018255978941494697 some:0.014663163055892717 by:0.014627049159742524 very:0.013777070734171856 no:0.013277939259075392 any:0.011703237781388078 A:0.01027781540111079 or:0.010110939965082857 are:0.009842172033850757 their:0.00893310673284668 :0.06682125497532722 +J:0.08037393243007834 .:0.0703017171567787 W:0.05243012425892102 A:0.05052510174916345 and:0.03651703690780799 E:0.026082445345439482 Mrs.:0.021723302850033044 Mrs:0.020721147656976018 W.:0.019948799065153244 :0.01905362969608404 C:0.016892561932331056 S:0.014536470379859988 H:0.014427252804328765 the:0.013806537221216464 Pa;:0.012034830342117067 R:0.010905847397888671 to:0.00998603077138963 C.:0.008580027299044635 of:0.008502125649016612 :0.4916510790863718 +:0.08991676500005256 it.:0.024876182252886642 them.:0.015555376446999928 country.:0.010080632169118092 time.:0.009919828076503866 year.:0.009045919443051212 him.:0.008706402913896757 day.:0.008365526041436581 years.:0.007170910610110479 .:0.007162254413033022 of:0.006596561086456021 work.:0.006033152944734681 life.:0.005733167395028733 States.:0.005647834637288249 people.:0.005488174469726564 world.:0.005377495189969139 tion.:0.005054441373453409 city.:0.004679257410414675 state.:0.0045111846495728344 :0.7590789334762665 +of:0.173929230524896 and:0.11667666310358503 in:0.08603970904036806 with:0.06996330511428155 to:0.06811637073339848 for:0.051552939463677554 that:0.04492467118135372 by:0.03711197654552394 at:0.034015021797196274 from:0.030644909325300094 In:0.02475651362512929 nearly:0.021576888354087147 on:0.01918022912803143 is:0.016661279886395947 was:0.016324660867573417 are:0.012805604008820587 upon:0.010397080151397385 or:0.010136273193602406 through:0.009477563840768241 :0.14470911011461343 +the:0.20720885055703173 of:0.08395230208740395 his:0.06743760161069935 and:0.06079278901146015 to:0.035750116956170995 for:0.03573209095465436 an:0.03472370429402696 all:0.03398846335137817 a:0.028386936180813258 their:0.027512923186875565 my:0.021520229771943282 with:0.02063325629411805 The:0.018786139260524106 her:0.017749493314089662 in:0.013366127589144149 our:0.012892717922383829 its:0.012837429691583687 tho:0.01256419345806836 many:0.011825244730841289 :0.24133938977678912 +that:0.23950485619438913 as:0.11141305222548842 which:0.09725519798754928 and:0.08953055176343969 if:0.04924405234469195 but:0.04104207360872691 what:0.03750130487100825 because:0.028090910901255116 when:0.026173876892048996 where:0.024992870401172238 than:0.019647374986077094 If:0.018059698518937888 whom:0.014144607143893198 until:0.013659048288941341 for:0.01292713006692789 whether:0.011656698715822965 while:0.008669446456513664 or:0.008660143573888265 though:0.007500897287342986 :0.1393262077718847 +the:0.17087857450522734 a:0.08589450362808732 of:0.07204900942401393 and:0.048970000638454275 in:0.044102718092832636 to:0.03554977072712748 an:0.027974460186219748 that:0.01907337840396254 by:0.017690186847136406 The:0.01623737071041561 for:0.015012140687030754 as:0.01494153907495792 with:0.012733247682698049 tho:0.012008661232288687 In:0.011902442094514612 any:0.01135920260588951 from:0.011170756324830318 :0.010286528766999536 or:0.009929926418317869 :0.35123558194899546 +of:0.09129790931378902 the:0.07369883040827747 and:0.047842263382354346 in:0.04189055351593407 to:0.04045875475680249 a:0.03542341257202578 be:0.02020462051672066 for:0.01979292654746225 was:0.01760256398103379 at:0.017380150555488715 is:0.014984483003968216 with:0.014047653760730413 by:0.01374644383819499 :0.012670486581795598 In:0.01200961464556976 or:0.011563835749786333 from:0.011391516893522809 are:0.011273104484969465 that:0.010755276030689069 :0.4809655994608848 +and:0.10405943424013543 him:0.026002991508672645 but:0.023403080564970376 reason:0.022582582250670283 asked:0.02208234709884886 or:0.01890141555720751 them:0.018879562438303514 it:0.01822017009747826 pay:0.018091046660401344 necessary:0.017606140267545197 made:0.017038133520576506 demand:0.016826260355618912 that:0.016798919258179768 not:0.016233104409450586 time:0.015807954606027203 was:0.0157301882261104 work:0.015559881704081843 do:0.015077960477100269 used:0.01387972341855734 :0.5662191033400638 +in:0.5112283625953743 In:0.134068119389394 of:0.04734664774626412 without:0.04433057311517972 to:0.03298851128912053 and:0.032121338981548585 from:0.0313801960286873 with:0.03054324065052507 not:0.015063758904675137 iu:0.013599062307874152 With:0.012519232280895824 for:0.010657027917024638 no:0.01062622595271008 a:0.010280366029754514 the:0.008860007426384844 will:0.007853144458523772 by:0.007051177623573159 great:0.006743350523560811 that:0.005504413218982319 :0.026235243559947143 +will:0.24494115569189887 to:0.20116156444723413 would:0.14513369977679869 should:0.06868214949742986 shall:0.06822967169993542 may:0.05618630607067221 not:0.04922516215383199 must:0.03103717243242758 can:0.028056753933207994 could:0.01851990864306414 might:0.015697992113615413 cannot:0.01489671030854965 and:0.008208611194905426 never:0.004971981972477986 soon:0.003917800844391405 it:0.003846074561495368 also:0.0036741067622755993 only:0.0029960457046750524 To:0.0028019240670439337 :0.026815208124069297 +the:0.18758721809185047 a:0.12702507093191284 and:0.07676717690065159 of:0.06915820950282121 for:0.044419510591389 in:0.041048480210843605 to:0.036258785673349635 an:0.02758283075421395 The:0.023371655530876913 that:0.014749866972423493 his:0.014104149844545794 with:0.012227171686324981 or:0.01177380941614795 this:0.010307540962492527 tho:0.009952828160684945 most:0.009771944586627225 at:0.009554357496146255 In:0.009347538550294545 their:0.008255103688384915 :0.2557367504480181 +a:0.29233963685099523 the:0.24880166457881445 to:0.07745568343668985 and:0.054612543015141145 as:0.03112676549250905 very:0.028099901661968685 The:0.021892471195696647 of:0.021447900599519884 so:0.018317336292977937 premature:0.016176876126414635 this:0.016038950373151718 be:0.013635739949169792 his:0.013409162410281448 such:0.011666314352149692 tho:0.011344947964302656 would:0.010405658616135063 he:0.01011211579389786 may:0.009825106621686563 or:0.00803319369123582 :0.08425803097726185 +a:0.21965058238380927 the:0.11093358725999464 of:0.08157400048583655 and:0.06358546934826209 his:0.0451269743751716 in:0.045082934062675044 to:0.044249656863858434 that:0.0386319489212869 I:0.033003547527012726 The:0.027337688976446433 which:0.023910324087828613 some:0.021994981523778184 their:0.020198050557964285 whose:0.019368968868089132 not:0.016507700274942184 no:0.016431659808225498 her:0.015030356480076062 His:0.013986314689904238 we:0.012720937664283966 :0.12967431584055414 +be:0.18251436180821282 was:0.11183069727628611 have:0.07654029483712134 has:0.06848455007104229 been:0.06076974251740194 had:0.056873799177091455 is:0.056581946118934176 a:0.040563646492479 are:0.03719053387228259 were:0.03294543253018709 and:0.029565939024611784 hereby:0.017510580668003508 being:0.013581573733960205 the:0.011801003252117226 not:0.011325810461620693 bo:0.011309571190347914 Is:0.011039791512031778 he:0.010205066996712425 having:0.008048369430375986 :0.15031728902917965 +the:0.18123160447524797 and:0.07686070651628574 of:0.07065726156826162 a:0.04143197415884941 be:0.03443898922342863 was:0.03213686530636302 to:0.03058137325438655 in:0.028154489186350152 is:0.026094869523454255 his:0.023784400084596317 their:0.018857341434630696 at:0.01716949223728079 or:0.016695052488801522 are:0.016035143666433813 were:0.01566940052218228 an:0.014672113461012245 been:0.01394183654698577 for:0.011011367643487877 this:0.010519292813148928 :0.3190564258888124 +the:0.23863175633224532 of:0.07388328109843215 and:0.06959895205117447 an:0.05824038945578867 have:0.05427752140196747 The:0.04593770949989372 their:0.045068463041708 his:0.04426620084476567 be:0.03616005312550218 had:0.02921833727520473 was:0.02677164152498945 its:0.02544596980503743 a:0.024124844698180277 been:0.022829101716493227 all:0.021575896078715306 tho:0.018929475005054472 has:0.018534343431851737 to:0.01799148242086319 with:0.016980279554512357 :0.11053430163762017 +and:0.15954896509628302 fact:0.06250413334095033 said:0.05065834510086072 so:0.041377132404438896 is:0.035044982477999385 say:0.031238107057586156 was:0.03080136861091614 him:0.030163903722579304 found:0.028801317587840422 know:0.027089045931031216 show:0.02253951910492264 stated:0.020965932865206496 says:0.020478382261860294 believe:0.019460213424765792 but:0.017059185035050474 thought:0.01632135970667961 see:0.0159709956695605 me:0.01535960772741225 told:0.014380823351940667 :0.33923667952211567 +his:0.23527183717735137 her:0.14047825783828638 their:0.13359293199859765 the:0.10226193378634013 our:0.06396136718489061 my:0.05185067037799996 a:0.05000490285113895 your:0.02863845549314022 or:0.02430552708694683 and:0.022521202928952468 of:0.016468007113641842 bis:0.014910310194768066 its:0.01404282496765014 old:0.013603223953032748 own:0.006442995690579979 said:0.005944755570697483 good:0.005020082621420789 this:0.0048952180402979635 tho:0.004754820654772949 :0.06003067446949347 +and:0.23596241020799996 is:0.11560619458073843 was:0.0983300803092365 but:0.06194638852334644 are:0.049066329971395824 He:0.03597176285451848 were:0.03416205421378738 has:0.021080699031236362 will:0.015636496044659637 It:0.01450657649461584 that:0.014365632495326451 Is:0.01436150573404121 which:0.014088827441362273 he:0.013602503725294948 have:0.012228028837470288 I:0.012161793102141818 had:0.010896022517308422 it:0.010579085676048485 They:0.009801656382735604 :0.20464595185673562 +due:0.014248538104542878 in:0.013099087925098327 costs:0.011587636248561293 land:0.008963359934398212 life:0.007454117832411565 power:0.007337705832462069 ;:0.0069917790602355145 time:0.006769540388014639 States:0.006524728022605155 :0.00623840282025315 water:0.006029643766328674 city:0.006020551091673821 up:0.005834733993363019 gold:0.005802410914198814 tion:0.005802200878595166 men:0.00562368555135877 ,:0.005554755600207496 law:0.005518335893280567 interest:0.0054959339625411645 :0.8581028521798697 +filled:0.06215215226490533 and:0.05837271587838204 covered:0.03244952626654137 together:0.02719680611159855 charged:0.023405542567787704 up:0.02136107284894646 in:0.01915134371353047 them:0.01719266387316449 it:0.015554438583662357 that:0.015348557903108627 not:0.01438732140871394 but:0.013940581428613185 or:0.012516989060555532 him:0.012385471360513711 time:0.011975826894388081 supplied:0.011102665513563375 deal:0.010953691738553631 made:0.010892584277574708 out:0.010768818892602866 :0.5978912294132935 +of:0.045582176942625854 and:0.04337137736444472 the:0.03992483437491192 to:0.023932873656172332 a:0.022330848835057805 in:0.01746629484446495 :0.015608412496962619 I:0.014355491024314986 1:0.013315098737593007 -:0.011304210152019442 that:0.011213470938060755 an:0.0099506765476872 .:0.008789170113723542 for:0.007850487349322617 or:0.007628852219782525 he:0.007406818911344837 his:0.007388687379495894 not:0.00704792779786807 by:0.006822365449050337 :0.6777099248650966 +the:0.29136955079468374 of:0.16154128269330217 a:0.09294704335892119 in:0.06311635101249047 by:0.03775920438465251 at:0.03615268838972144 for:0.0347552202332162 and:0.026893762995933955 his:0.02079125426347829 to:0.019654956576933877 with:0.019236287121751544 The:0.01797109830291385 our:0.01586864783746021 that:0.014341550109882924 any:0.014013284307179963 tho:0.012951650000895888 In:0.011994485149214975 their:0.009788614622860072 upon:0.008810635423921145 :0.08904243242058557 +the:0.2694841810363774 and:0.1115725076711206 a:0.09170718707656482 of:0.07032662994656132 in:0.04811678829980973 to:0.04762356635793211 be:0.026891793783140227 at:0.023101213480877007 or:0.020285056878841343 The:0.015357395523837282 was:0.014258754248268246 their:0.013682130554025436 tho:0.013167692781470446 I:0.01188121267999757 said:0.011227389762598104 are:0.010951541818401623 is:0.010442178987052889 its:0.009907338869382118 were:0.009705261262964456 :0.16931017898077727 +the:0.3280814307846293 a:0.13420564378200325 of:0.11379244904619086 to:0.061456924968026426 and:0.0405124726767934 with:0.030728495251945865 for:0.02504656849756541 tho:0.017513634847778257 on:0.017166129432524404 opened:0.014478263794502552 his:0.013714992891920798 set:0.013431165995975285 in:0.013223664551891317 The:0.012683385388830267 by:0.012223561181870986 their:0.012076285708554745 its:0.01134837512893605 great:0.009428886977909877 from:0.009364267869989203 :0.10852340122216173 +that:0.110525441451913 and:0.09206198641415522 by:0.0717991871952739 to:0.0674278756061277 of:0.06016138378062646 said:0.025141374802604106 :0.023937895938168256 with:0.019908911196174855 as:0.01875255314086796 which:0.017203624747554738 for:0.012753695446786726 but:0.010532574500756568 Rev.:0.009334582279729846 from:0.009132213989298641 when:0.007611122986536681 against:0.006664242285281555 it.:0.006513460754202484 if:0.006506216170776026 in:0.006265147432113193 :0.41676650988105207 +of:0.28414562382152614 to:0.158220243024857 by:0.05795789611497818 that:0.056460418233319834 and:0.04732710199716235 with:0.042724114285448644 in:0.039824586288083455 from:0.03101531011579327 for:0.02832510744769704 under:0.027108204174381707 on:0.026569717073921646 at:0.02482507077607156 all:0.02143305465247768 as:0.019231616802027555 upon:0.017423257040542196 over:0.010228025787368084 which:0.009588456182013781 into:0.007947440294583339 In:0.007736811519574109 :0.08090794436817243 +the:0.16807735899698817 of:0.10541662057906837 and:0.05138367848570702 a:0.04141865232648221 to:0.0385989743764065 in:0.026264864977736738 was:0.019530675665220657 his:0.018900421021236905 be:0.017373825006196972 their:0.015767721170721456 for:0.01557246589796783 with:0.014071419046630446 is:0.012922913111931644 at:0.012690452250034052 are:0.010702713108721902 .:0.010158075558988393 Mr.:0.009672788574483367 tho:0.009612591781990074 were:0.009549306361446321 :0.391314481702041 +time:0.022075420736898724 in:0.01869190994854329 up:0.01097817867133563 right:0.01085264401995122 good:0.010723318013022376 out:0.009770771365915724 hundred:0.009196845248551626 dull:0.008695177338515252 on:0.00839507107514292 him:0.008329816075367405 long:0.007906885689670172 made:0.0077140577013138445 to:0.007683792947765055 them:0.006305912466357111 feet:0.006274074832207778 down:0.006261283037172549 it:0.006243669031205697 of:0.006184171991466201 life:0.006173520893779191 :0.8205434789158182 +in:0.13507542961265392 of:0.13009631215039844 for:0.09950165679763932 to:0.0719765172969668 at:0.06791647921843914 with:0.04995143437900636 and:0.04531258502607932 In:0.038418502563433855 such:0.03425023720655828 as:0.03406329855280369 on:0.031035240257561134 is:0.03089621662725523 by:0.028543389833314475 was:0.0258177677285404 from:0.025146558769904414 that:0.023876758878338147 into:0.020401116350514708 be:0.013925861513421787 have:0.012589726769829017 :0.08020491046734156 +;:0.011236240050211807 in:0.011210029156111285 ,:0.006896439574864985 him:0.006305063874657082 up:0.005786064122350361 it:0.005450352662439279 .:0.004818072982985121 one:0.004572406964618708 hundred:0.004510486766480274 it,:0.004284590244956039 due:0.0039814659984377795 out:0.0038077999953565196 to:0.0036450479305603608 1:0.003638823900315504 city:0.003372291970034323 :0.0033010725599966944 and:0.0031916847577017 them:0.003117043303754169 down:0.0030379164253246742 :0.9028371067588433 +he:0.11603753212466215 and:0.11553212228161547 be:0.06892946539840683 who:0.06314104265856862 it:0.04989819541293248 I:0.04103602978379199 He:0.03899704441423507 she:0.034372310777839345 they:0.03220713149100856 It:0.030306554586307263 was:0.020516815767206528 we:0.01523517282013006 She:0.014097838780276928 then:0.013936179131381987 which:0.013452177125203016 lie:0.013342633623659207 had:0.012896826083497095 not:0.012328122777208884 men:0.01188824387028801 :0.28084856109178047 +came:0.07762389198166651 made:0.07662961749307759 put:0.07411579599933517 taken:0.06259663625975449 set:0.0467563089233556 picked:0.04513095740392597 went:0.043535271043892744 it:0.03951206234790147 come:0.03861676845716184 brought:0.03532250448854404 got:0.033302802726918886 keep:0.03171273440543029 get:0.02791783389268231 make:0.024806987330912814 kept:0.023404679548878617 looked:0.022842562955058165 took:0.021968739607312188 take:0.021778587034395214 them:0.019594333656340432 :0.23183092444345563 +was:0.12738836522847674 be:0.10193446892942017 have:0.09215155166276508 been:0.08095500319135926 had:0.07860841365008547 he:0.07798231513628656 and:0.05762545313492704 has:0.043796141927465324 were:0.041490352376007886 I:0.030891278967734855 He:0.01914246681269967 are:0.017546437366601927 having:0.017380151887030765 is:0.017085681662236046 they:0.01593388130354575 who:0.01519163969753994 being:0.014725831894352408 she:0.012575417373615248 not:0.01171449972840533 :0.12488064806944454 +Resolved,:0.142272295410595 enacted,:0.06607086904178319 enacted.:0.04048975454126422 :0.03680307404309037 Provided,:0.02455472353972481 2.:0.023692591279035627 1.:0.019567207066461666 4.:0.014847778339538608 it.:0.01244131977768174 3.:0.012338765508478695 .:0.012137763793658201 5.:0.01108793466049307 further,:0.008604384135663843 Given,:0.005297883533204409 ::0.004982585911073967 them.:0.00475839686455238 this::0.004071371173820766 him.:0.004017455860060405 ?:0.003991588014891836 :0.5469722575049273 +of:0.09129790931378902 the:0.07369883040827747 and:0.047842263382354346 in:0.04189055351593407 to:0.04045875475680249 a:0.03542341257202578 be:0.02020462051672066 for:0.01979292654746225 was:0.01760256398103379 at:0.017380150555488715 is:0.014984483003968216 with:0.014047653760730413 by:0.01374644383819499 :0.012670486581795598 In:0.01200961464556976 or:0.011563835749786333 from:0.011391516893522809 are:0.011273104484969465 that:0.010755276030689069 :0.4809655994608848 +of:0.14425856360897085 in:0.1346385362867989 on:0.06600407188328067 and:0.050710366062474276 at:0.04611057742205119 In:0.03318496518074946 with:0.03315794345322735 is:0.027135649956046975 was:0.02699546766479687 to:0.026081581512432436 about:0.02343242542616026 for:0.022269913802216115 a:0.021637386134973388 that:0.01930564125520181 from:0.018093133040747687 be:0.017504768267194243 the:0.014425618664700289 or:0.013408577661303931 are:0.012738020429600571 :0.2479067922870727 +this:0.3568782074182691 the:0.312297602023221 said:0.09535723173993942 a:0.05004135244160593 York:0.02205991897557736 that:0.01988930991159466 tho:0.01651790955267761 of:0.013025547609518216 his:0.011163090843389668 such:0.009878323398644506 our:0.00987117934215049 other:0.007905383072836848 any:0.006503755094713681 tbe:0.006221740453685721 every:0.006177776985815608 own:0.005383922832301306 same:0.0049895584198931 The:0.0036855137286464727 or:0.0034264029529987743 :0.03772627320252055 +the:0.09676299055694856 a:0.07595969231259243 three:0.07390308402265464 thousand:0.06376232897417607 two:0.05955355087627938 six:0.05684082039977339 few:0.05211255139781856 several:0.0451800227140562 hundred:0.041482930600295675 of:0.04127248789044292 many:0.036172017905297824 other:0.03491993705108477 five:0.03216293588924431 their:0.030208160163590337 four:0.027927183017832955 ten:0.02682016142791044 fifty:0.025258211935441692 one:0.022456873501503237 our:0.019680333880772127 :0.1365637254822845 +be:0.17029699433269768 been:0.15427320224368102 was:0.15199201136758236 were:0.06877884714486217 are:0.0639411899702337 is:0.04676312011806195 and:0.04211489002639815 resolution:0.022673930429816556 being:0.022238391047992065 unanimously:0.017392674048306824 resolutions:0.016053077835771593 as:0.014355164569763856 bo:0.012738314311328438 he:0.011488773473164404 not:0.011288010558113877 so:0.010215491424171514 Is:0.008942943600413882 property:0.008881536635016084 land:0.007329074901980215 :0.13724236196064363 +of:0.21270210382739882 for:0.11900357610654862 half:0.08704308190311828 in:0.06744041148347787 and:0.06312695284782051 to:0.044079656291641275 as:0.04136573101106629 was:0.04103400567777625 is:0.03124230061244107 that:0.02518315260838508 by:0.024962133963745213 at:0.024943113512341023 than:0.023105103336470045 about:0.021942442435308004 be:0.018746273762397497 with:0.01845607530431417 In:0.018215175124787108 such:0.01630553346257713 have:0.0160844998280894 :0.08401867690029632 +the:0.26942414078673205 of:0.24059205741036904 in:0.057000164617571666 for:0.03909786245480826 by:0.036677197128247095 to:0.033284768554026914 and:0.03054308406455475 with:0.02555283536566737 from:0.02489941631114463 tho:0.018395663161612646 on:0.016453442815007827 a:0.015623252129020028 an:0.014519075028769365 between:0.014011222473749746 In:0.011404831203961668 into:0.010206034525881 their:0.008975245750555897 tbe:0.008572266824169367 The:0.008385105114418001 :0.1153823342797327 +number:0.10702603885574236 place:0.034105847366785076 line:0.03354544805716619 pounds:0.032082008616834454 bushels:0.03148878353253074 point:0.029915950419359617 full:0.024889983222808446 day:0.02293959441068852 means:0.022659113999943876 out:0.02138067877030531 rate:0.0211865159871172 state:0.02093759707743613 cost:0.02066035495098758 form:0.01961891086334818 city:0.019248640868109172 way:0.019091464627689087 thousands:0.01747420406755423 and:0.01721331379454914 one:0.01656152058080616 :0.4669740299302385 +of:0.08093678703632924 to:0.08049306917490255 in:0.07015481243193608 on:0.05170230344893068 by:0.04895290714086388 and:0.04376209905195346 is:0.03808946897332511 for:0.03537924973444113 that:0.030625248505332152 In:0.025911089147997654 with:0.025758737852808487 have:0.022474127070930154 from:0.020742985329875608 or:0.02003650845170918 at:0.019142287955570707 be:0.01875882519233246 not:0.01839612067963802 had:0.017233941611046934 was:0.01521495402254325 :0.3152344771875333 +and:0.13035301432154806 the:0.12387796972931478 was:0.11325113852094647 are:0.06527024848246056 a:0.06459263843029096 were:0.05064702008092712 is:0.04997825940195746 by:0.040925103747501176 been:0.039990792242272345 of:0.030536854299213007 be:0.028330891663168236 in:0.02757216235666594 very:0.022535386197841813 most:0.021505054562377092 so:0.014423087293169969 not:0.01324854110040976 to:0.012731892474614393 his:0.012212136598411645 The:0.012201007625409408 :0.12481680087149981 +time:0.012215478970735825 up:0.011756730374434164 him:0.010594582808776338 him,:0.010336326698065815 it,:0.010231632201445592 ;:0.009867497784629255 day:0.009589854999941404 years,:0.008989893178039698 night:0.008986297805139893 ago,:0.008873328300850298 time,:0.008351555301821306 here:0.007719927473005345 man:0.007515801051023583 house:0.007234505945025066 day,:0.006649511690100492 :0.006484038441474092 morning:0.006475856703642978 home:0.006457386585191617 street:0.006282469765441506 :0.8343873239212157 +it,:0.021215804608184466 ;:0.021209760323610022 in:0.01852960387643753 him:0.017226440804373612 him,:0.015517504135995331 it:0.013827341168683411 me:0.012616590628048749 me,:0.01187130783221111 them,:0.01130205876781514 time:0.009681809901065009 you:0.00957886090149086 and:0.009096715495351895 up:0.00894080593352386 time,:0.007653330335504777 to:0.006975295871586127 down:0.006933413371634118 out:0.006751951194284245 up,:0.0066731605765002555 country,:0.0060495418672168715 :0.7773487024064826 +of:0.28767355066866834 to:0.08775711267569858 in:0.08678131196995101 and:0.05160598694501188 on:0.04646139928102899 by:0.04519522654900943 for:0.044547789071328545 with:0.03396756772609607 that:0.033699232901107726 from:0.03075346596941143 at:0.027039283056790858 In:0.021061449543044047 as:0.017514234937992545 all:0.012543839382496166 upon:0.011844431150487573 is:0.00998972746569266 was:0.008814315973987914 into:0.008557199930727406 through:0.007781895704231326 :0.1254109790972375 +to:0.22112840458606223 I:0.10666802587918207 we:0.08645779879922263 would:0.07054755893757587 they:0.06651501288269966 will:0.06062446215923502 who:0.03684936440616766 We:0.033763598357041805 you:0.03293612949907331 and:0.031116186949247115 should:0.02707806079580704 not:0.02602888067811719 could:0.02465180703572969 must:0.02366619399356664 may:0.018719576313186825 shall:0.017876273893206215 They:0.01779503521207452 1:0.012152780765898019 which:0.01149454385403634 :0.07293030500287015 +the:0.10456488170523487 to:0.09846492171903967 and:0.07649211810071999 of:0.07087212484339483 in:0.034846797517479274 not:0.021272872542601063 I:0.01841917191863314 a:0.017911320755875197 or:0.01777126737638835 In:0.014992706580492067 for:0.014837601873880248 Mr.:0.014712850283868123 by:0.013844809552893524 that:0.013640559191404637 have:0.013281269265977854 :0.013175023811107751 it:0.01089960705820366 their:0.009860323084727476 who:0.009769408621220397 :0.4093703641968579 +the:0.16807735899698817 of:0.10541662057906837 and:0.05138367848570702 a:0.04141865232648221 to:0.0385989743764065 in:0.026264864977736738 was:0.019530675665220657 his:0.018900421021236905 be:0.017373825006196972 their:0.015767721170721456 for:0.01557246589796783 with:0.014071419046630446 is:0.012922913111931644 at:0.012690452250034052 are:0.010702713108721902 .:0.010158075558988393 Mr.:0.009672788574483367 tho:0.009612591781990074 were:0.009549306361446321 :0.391314481702041 +of:0.10036425554061128 and:0.09867255827094257 in:0.04887477001133228 to:0.04309676529803197 fact:0.03312124920228808 said:0.028016465130273754 on:0.025147031828386315 all:0.020897671259005178 is:0.018989333611116044 so:0.018899457882617265 from:0.018463519784011995 for:0.017651195592365977 at:0.016946018612698295 know:0.015554635744109193 believe:0.015397314140675087 say:0.014489633297242495 with:0.013970217188878864 by:0.012605124887586036 In:0.011949884106238937 :0.4258928986115884 +the:0.20614037874648866 of:0.18431956041969774 in:0.1754436957355019 to:0.06230723998660274 In:0.044528729143464355 from:0.042130736765694524 and:0.03199621340186661 The:0.03131481922550988 for:0.028710244476684806 at:0.020513862308363082 a:0.012468190303082239 by:0.011221882226127083 tho:0.009442327394344991 :0.007891365231904104 that:0.006945806463137829 on:0.0056555227899618265 with:0.005170206535625908 iu:0.0044666756043005365 ot:0.00403926483333437 :0.10429327840830685 +the:0.5693280998730349 a:0.06724146053310781 The:0.04882425444741002 and:0.03521589140314652 tho:0.03203626702080707 large:0.014762705325403795 tbe:0.013915613917437095 in:0.011181275058192325 first:0.009619857228107553 every:0.009007969584269181 any:0.008788935578870283 A:0.007667794727117887 this:0.007499937924452186 all:0.007039713321939399 most:0.00697059234934182 or:0.00608096940627439 that:0.0059852768163000105 of:0.005799671537738655 third:0.005576649098531434 :0.1264570648485177 +hundred:0.02334136986593815 up:0.005482494641173394 men:0.005366536521246011 Hundred:0.0047587970519216575 John:0.00441808156134956 William:0.004390720675819281 him:0.004016828614280843 ;:0.003997112205305733 due:0.003721199871732 in:0.0036582900032443304 time:0.003637206863828461 James:0.0035594902370151707 out:0.0034878448964120057 .:0.003467980723571515 1:0.0032804584819785204 day:0.0032444781513863933 ,:0.003058139385740603 :0.0030314555521939613 Robert:0.003005471634785646 :0.9060760430610768 +and:0.106848317713247 it:0.08582832646848777 he:0.0706869304113309 they:0.06532647615912 you:0.05752803937905291 which:0.05745469243233605 I:0.04704349554653221 that:0.046729520410814455 It:0.04164369599155823 we:0.031077154570355033 who:0.025389386953640493 He:0.02004914922698176 but:0.014824476204120194 This:0.013962545939839423 she:0.013173963573104481 as:0.01289953151257549 They:0.012568537489130427 You:0.01231517674939729 the:0.01230258111803667 :0.2513480021503392 +and:0.08802847857673357 him:0.052172970075824145 was:0.03542681819451724 man:0.030431362773220866 it:0.029288088378781416 up:0.020708279568259668 that:0.020571036336634863 found:0.01804151815880068 made:0.017726654982860655 out:0.017249066649085414 time:0.017248369497211622 is:0.0164635781145802 them:0.015112757506419695 confidence:0.014637843296866227 but:0.014176928512072494 himself:0.011931876492387125 or:0.011775222365452837 down:0.010882539895529912 put:0.010458276845277415 :0.546668333779484 +the:0.16807735899698817 of:0.10541662057906837 and:0.05138367848570702 a:0.04141865232648221 to:0.0385989743764065 in:0.026264864977736738 was:0.019530675665220657 his:0.018900421021236905 be:0.017373825006196972 their:0.015767721170721456 for:0.01557246589796783 with:0.014071419046630446 is:0.012922913111931644 at:0.012690452250034052 are:0.010702713108721902 .:0.010158075558988393 Mr.:0.009672788574483367 tho:0.009612591781990074 were:0.009549306361446321 :0.391314481702041 +the:0.11919516938815296 of:0.07230453158552728 and:0.05781056740443249 a:0.043018564803886335 to:0.031305092790907506 in:0.020848713353460488 at:0.014270110001066288 .:0.012526810245749479 :0.012413283442322082 for:0.011719122709941797 by:0.010808400946589808 or:0.010404172990115616 The:0.01003576004804544 with:0.009811868184449042 tho:0.009295902015355835 was:0.008924239095331684 that:0.008672304223433876 is:0.0085591147338948 be:0.008335143826716943 :0.5187411282106204 +and:0.1062364164078435 that:0.03560389535712349 it:0.03469720476733478 found:0.021099538256719994 made:0.020732308673072363 is:0.02060941982721668 him:0.020131156267548543 was:0.019550490217291615 but:0.019154666031600827 them:0.019094889919982958 or:0.01806205586180641 time:0.014407195782092782 interest:0.014345276930085568 out:0.013691345753768862 as:0.01342962685451398 place:0.013274005330756173 man:0.012667739634043563 be:0.012456485931675986 work:0.012081963221172408 :0.5576743189743495 +of:0.09043409053013649 the:0.08458268447909405 and:0.06941169710674647 to:0.06842685376506503 a:0.03502196399400508 be:0.027631492661475 was:0.02262770347407094 or:0.020899547147549786 is:0.018061672947865565 are:0.017763045964156114 his:0.017114589037761113 for:0.016727962397261282 re-:0.0162769353827767 their:0.01514882567544624 been:0.013878331263912594 were:0.013374436412516415 that:0.01319950985941409 at:0.012567281873590285 :0.012294075404375895 :0.41355730062278084 +hundred:0.013633628820093018 ;:0.011172311961148602 him:0.009807052834026905 one:0.00914669734384353 feet:0.0090219372983598 up:0.00838318558829166 mile:0.007527126877816727 feet,:0.0071805242500254255 time:0.006879602834379732 man:0.006817451499927337 it:0.006300585667639516 it,:0.005903705234588485 out:0.005451849962934835 :0.00538718305729827 ,:0.005295204710281874 and:0.005240008239108335 here:0.004938150073064577 water:0.004837308913464981 them:0.004796443021708541 :0.8612800418119979 +and:0.11717132479065025 of:0.05975776404107632 the:0.036894797744751906 be:0.030476697286946262 a:0.029689055699173163 in:0.026487129630288927 is:0.026201236531637237 was:0.025891673231283507 he:0.024166191619701714 I:0.02129953996234262 to:0.020689032195699227 they:0.017691857447921393 that:0.017526962289634983 it:0.017418942196368217 which:0.01639384581937364 as:0.015422020984154518 are:0.015414815296460722 or:0.015342212184098876 for:0.014934605060334663 :0.4501302959881019 +to:0.24588258680531241 will:0.09238037076715472 would:0.08400346470216176 we:0.05618485301514755 shall:0.047360337613866085 I:0.04531924590891624 and:0.040018489763754286 should:0.0377532811849433 not:0.03710667712814514 they:0.03624140678895967 who:0.03606869718809687 you:0.03226959070169079 must:0.029649167466787137 We:0.02276868681822096 may:0.021837593107060304 might:0.01495639958877392 could:0.014045790475211947 They:0.011296694255811188 that:0.011294598574936641 :0.08256206814504911 +the:0.19282279233897082 his:0.1641738039950551 her:0.08228865484211001 my:0.08144193760074507 The:0.06471498547553411 His:0.051026434038680554 My:0.047390292867974325 and:0.02798597007212573 of:0.02798516287081768 Her:0.02584597916380168 whose:0.025713468891555794 a:0.02548860265527032 your:0.01783991522154998 their:0.012348073639806572 tho:0.011321581324114139 bis:0.009858490703539568 little:0.009705444939846503 that:0.00953497114595097 old:0.009107912852606611 :0.10240552535994443 +an:0.31732894021848757 the:0.16401562355980365 to:0.09667607951603263 will:0.049352705615655856 a:0.039771735663456785 of:0.03445151144050715 and:0.02948334294430566 The:0.02699028730573407 An:0.019192945356033313 great:0.018574988322545744 this:0.01853531992184299 any:0.01797326168841622 by:0.01787617887041247 no:0.01773050412283218 not:0.01594025526607411 their:0.015613206337463142 rapid:0.014961308341054141 its:0.013864481847782651 may:0.01156743363037943 :0.05909989003118027 +that:0.1807579030647756 if:0.12674783273499293 as:0.09833030941109948 and:0.08573369088440201 when:0.07713047064839167 which:0.05739684066821991 but:0.04173919545855452 where:0.03015604436903239 If:0.0271614008917874 what:0.02556121633221239 for:0.02230632087552623 because:0.018564955327949738 until:0.018458758408423852 of:0.01645374467598026 before:0.016234787525628205 though:0.014246310794974156 whether:0.011963683297143706 than:0.011516570030952493 When:0.011501809731834551 :0.1070381548681185 +the:0.5545336481773486 corporate:0.17095397551509467 tho:0.032973407446156455 The:0.024238807534572998 a:0.019229904063987932 tbe:0.01336225619090683 first:0.010724320734979968 porate:0.007922870647124778 present:0.007121663384863004 that:0.0064296175878946465 other:0.005571044185001763 of:0.005492156151352063 this:0.00549212169135599 high:0.005271933694755325 early:0.0050639578656306175 said:0.004813683041515909 next:0.00473733236889775 and:0.004519140126220548 new:0.004420828033086724 :0.10612733155925348 +sum:0.03352282876311118 number:0.028116684882597106 line:0.019995206059833036 city:0.01946514558931857 out:0.019275318828420953 day:0.01666865340772654 county:0.014872697538657208 amount:0.013254184849875051 Board:0.01252325449624941 town:0.012449555905674143 side:0.011663975251122375 part:0.011517157473718155 County:0.011460540331966697 state:0.011087331502382173 City:0.010878919191854432 purpose:0.01081028255427907 and:0.010297866493795984 way:0.009848747943663767 name:0.009522170936943183 :0.711769477998811 +to:0.12022893700269083 and:0.09020394424291768 the:0.08587503820055309 of:0.06450042443224316 in:0.0310058468700829 a:0.017742048521183405 :0.015548046036689871 not:0.01491307651316237 that:0.014112408707955496 for:0.013734482372212283 I:0.013065769926808477 will:0.012848502316304782 at:0.012837991177321897 In:0.012628718855091186 by:0.012491091048660757 be:0.011425930130217754 is:0.0113962101007567 he:0.011342727513475473 or:0.01112522537451577 :0.4219735806571561 +and:0.21482562183722825 that:0.08480164682248789 but:0.05287442718857742 time:0.0423415659835888 But:0.018119484202587466 ago,:0.016329371130219508 And:0.016298468803792203 me:0.014738598215405747 morning:0.012341034954072905 them:0.011490213372417207 her:0.01139005378085724 was:0.011266218771649338 day:0.011093165010852873 1:0.010867990596341871 ;:0.010771505281867662 and,:0.009975349380715261 it:0.00991758687233713 days:0.009579702872374909 year:0.009503562383335875 :0.42047443253929045 +hundred:0.035991613718579 hereditaments:0.013972169073437134 time:0.012218658447950387 dollars:0.009678501264412163 up:0.00891221160841765 men:0.008759238142085924 out:0.00868628375968825 interest:0.008457448702096373 made:0.008446433508517124 work:0.006946753956821322 him:0.006686129122319949 ;:0.006655214268077609 it:0.006629527329772302 in:0.006608919726951087 due:0.006587720102325124 land:0.006420102951352881 life:0.00639369841086 will:0.006146505617305512 years:0.005733234837470845 :0.8190696354515593 +of:0.3116400345160693 to:0.07997803217754793 and:0.07897730278476542 that:0.07055991185321092 in:0.061663506132446394 all:0.0421971106775601 by:0.0415775190453197 for:0.03616370235938522 on:0.025516118008417722 from:0.025288685607128176 with:0.02499355108525226 as:0.021983021352855524 which:0.013107204040619505 when:0.012769674303842213 upon:0.010889485226658996 In:0.010858328055177687 among:0.009121047823321023 but:0.008540194815203647 while:0.0077086829982657215 :0.10546688713695254 +the:0.15085600337180502 esti-:0.08482676373792854 of:0.058255741342833386 a:0.05311852612190496 this:0.040641111970629536 inti-:0.03165512105653897 to:0.029718876990007605 any:0.026561897776496986 said:0.023672417385709375 and:0.017619803363542085 that:0.015155389931916605 or:0.013733366566295847 :0.011407248948705827 his:0.009020100502599849 in:0.008243466760837825 for:0.008031511703988815 tho:0.006782882120756202 other:0.005697851453972797 The:0.005325809229686569 :0.3986761096638432 +of:0.30647766517546476 in:0.0972162681878448 to:0.08260710386581718 and:0.04938258603642749 that:0.047552326559020454 on:0.03509540865553958 for:0.0311807395144958 with:0.029765759864946246 by:0.025153619946581288 which:0.020323460999132764 from:0.02003056098156622 at:0.015790901280085992 In:0.014974849079387492 as:0.011847243415751196 than:0.011363246958455636 under:0.009746891918310034 upon:0.009742937065613534 into:0.009476807754298482 or:0.009057263415521452 :0.16221435932573958 +of:0.09210093307381306 and:0.07253561919616269 by:0.06996592072128972 to:0.06661943903135269 :0.027345836811107086 the:0.026437003660851322 a:0.02519065169083682 from:0.016197039914613676 said:0.016071627135471164 in:0.014031828077261303 for:0.012735515818284216 with:0.011156502224433668 that:0.01086765327149961 at:0.010496593266915284 .:0.009545133106765873 an:0.009468688812621081 Mrs.:0.00806366827928582 on:0.00684811020690499 or:0.006490162477344792 :0.4868320732231851 +the:0.1981787163529047 of:0.14203012026889011 a:0.08066581726888782 to:0.07837582290692073 in:0.07507623667991782 and:0.04067756210488051 for:0.029544636581124998 on:0.019856329517394637 The:0.015278301933739141 In:0.013980521686161814 that:0.013829047621633556 an:0.013506466036807234 from:0.013181324730733643 or:0.011785631601218944 with:0.011548818793126425 tho:0.010374049297414287 by:0.009944812398083005 :0.009446345671701413 their:0.009365916079686142 :0.20235352246877308 +the:0.15449710009021564 a:0.09735430952365032 of:0.07662511143543711 and:0.052261325305472464 to:0.04855700817893941 in:0.03537675306562106 Mr.:0.024433126390853415 for:0.018500522313345626 The:0.01813814654572198 with:0.014743424368484784 tho:0.013927329595288094 by:0.013496479307474581 that:0.012851113662909808 his:0.012749035240294197 In:0.012523341196623957 or:0.012459132601070837 was:0.010863605907572607 :0.010612462125041711 an:0.010467679903320924 :0.3485629932426615 +the:0.11919516938815296 of:0.07230453158552728 and:0.05781056740443249 a:0.043018564803886335 to:0.031305092790907506 in:0.020848713353460488 at:0.014270110001066288 .:0.012526810245749479 :0.012413283442322082 for:0.011719122709941797 by:0.010808400946589808 or:0.010404172990115616 The:0.01003576004804544 with:0.009811868184449042 tho:0.009295902015355835 was:0.008924239095331684 that:0.008672304223433876 is:0.0085591147338948 be:0.008335143826716943 :0.5187411282106204 +of:0.13375869813469024 is:0.07727830645657856 in:0.07200440075546105 to:0.06943839194731918 was:0.0673385136437707 and:0.06364238324629833 with:0.05433826851061591 as:0.04992568720263095 be:0.04277935783327789 by:0.033851336381393066 on:0.03282040871800858 for:0.021260686710550796 have:0.019483602686044748 from:0.017699751388571848 In:0.017035064082336078 had:0.016972560101073467 not:0.01658393854348154 made:0.015661875786806955 that:0.015021168205575277 :0.16210559966551485 +one:0.1028303141280697 part:0.05963429477052991 out:0.04766456937681193 some:0.031418679026461914 members:0.030764490253327767 side:0.029940657362655835 portion:0.022063658796890564 office:0.020457735219956013 member:0.019726706386316174 end:0.019666887540649894 tion:0.018667441728710307 parts:0.016814747270460957 people:0.014112771422418794 all:0.014072739582212475 any:0.013183573287639892 One:0.013083578354183906 that:0.013024335602903442 account:0.012482348155001894 many:0.012077825070275192 :0.48731264666452345 +of:0.1430224555426327 to:0.08825716956741143 with:0.0795005348957977 is:0.07093465878635637 and:0.05448090382314705 by:0.05183151876610988 in:0.04988702380971297 for:0.043109111022637564 was:0.04294575210288739 as:0.030067085758617728 have:0.025384376821207102 that:0.02513501980326638 not:0.025062348668159134 make:0.02494922061619218 had:0.022163438264026447 made:0.021887908777501644 be:0.017887593563688988 on:0.017044275358117165 has:0.015999494304120756 :0.14945010974840942 +the:0.11919516938815296 of:0.07230453158552728 and:0.05781056740443249 a:0.043018564803886335 to:0.031305092790907506 in:0.020848713353460488 at:0.014270110001066288 .:0.012526810245749479 :0.012413283442322082 for:0.011719122709941797 by:0.010808400946589808 or:0.010404172990115616 The:0.01003576004804544 with:0.009811868184449042 tho:0.009295902015355835 was:0.008924239095331684 that:0.008672304223433876 is:0.0085591147338948 be:0.008335143826716943 :0.5187411282106204 +and:0.11982700439390927 not:0.059026121056127555 to:0.037616395901469965 wait:0.031759230048118745 on:0.024620432162011503 in:0.02356240289300586 up:0.020920412104379688 of:0.020877181970194354 that:0.016970051301878897 is:0.016808700698952933 out:0.016502136632303616 time:0.014350511142255348 or:0.014220201864179436 but:0.013616209740816836 And:0.013145192697834254 made:0.01273288007577708 it:0.012699155357845864 was:0.01228944297246924 people:0.012027998449376765 :0.5054283385370928 +the:0.38295097075717266 of:0.07128898246208282 in:0.0561276362252161 The:0.045245863876785045 or:0.042535407310737225 and:0.03811355104787693 for:0.030965557691018167 all:0.030676933166863138 tho:0.02895242318867943 mence:0.021558805330557658 a:0.013705082977477296 on:0.012756838061682433 that:0.012640575892196032 tbe:0.012022757424255284 last:0.01198140883538595 In:0.011502884577244243 some:0.010442702387191492 these:0.010368679285704301 to:0.00940735646959748 :0.14575558303227631 +for:0.18722717563761743 or:0.11834613329076667 about:0.07900392122661412 past:0.07084335049399768 of:0.06665975966969716 last:0.0646954457058797 and:0.06274911329856732 the:0.046303938619836706 For:0.03318370594498482 in:0.031772177357178834 than:0.02958320602680293 to:0.022730336321719766 was:0.021942348292977656 next:0.020909895458055775 nearly:0.020131917339418652 within:0.019842572385236106 least:0.01666984089448026 over:0.015024221702303615 only:0.014155279797658652 :0.057225660536206154 +and:0.06493982718590284 the:0.0570540382811904 of:0.05177546865590273 thence:0.034979410040431494 No.:0.02623641664455047 .:0.025615057960554678 at:0.025578277646661225 to:0.025544922457627156 in:0.018526347531829454 July:0.01842808245823524 a:0.017418460957622547 from:0.017361319365110536 May:0.017013641975120546 N:0.016464220334358813 March:0.01567222092494181 Bros:0.015042338160343945 by:0.013801077935935567 A:0.013447294569996679 block:0.012682466910572055 :0.5114191100031118 +the:0.24840340033224825 a:0.19417346921882825 of:0.13285597417171494 and:0.08578683407036611 with:0.031009195205731078 The:0.028997745373864486 his:0.021870802268503263 by:0.02156714085611895 in:0.01978269348669233 tho:0.01878571406918155 A:0.01821300902740181 very:0.014032092257415781 as:0.013063220726742918 their:0.011042443547650686 to:0.010910728080042845 or:0.010009191853416949 that:0.009830986962545803 so:0.009827435908209184 more:0.009315471143775353 :0.08952245143954946 +of:0.3016963475355822 and:0.11880312041784782 that:0.09912438804160191 all:0.05697251521619168 by:0.04812350986945087 to:0.035238498128778314 for:0.03266060880352848 with:0.028849518358643918 as:0.023499477179281157 in:0.022626103106095415 but:0.01828749453319047 when:0.018054794814683545 from:0.014603885843578886 which:0.014345656754719013 on:0.01339272586291633 among:0.012842475917022499 where:0.00894959682158892 than:0.008036679109335273 upon:0.007330899937654624 :0.11556170374830865 +and:0.08097577006507498 was:0.060920617582359005 is:0.03428683749631327 be:0.032128788297295305 put:0.027465572631450746 are:0.027453783429403213 been:0.02738399731109803 came:0.02625305657811219 were:0.024146287896712186 it:0.021834087130565824 succeeded:0.02167906094216022 them:0.020546918254389455 engaged:0.01982372769276478 found:0.019483870647518716 come:0.019170610748716607 up:0.016687034438012335 indulged:0.016500861340597934 as:0.015874843800756874 made:0.01565632703531871 :0.4707279466813796 +of:0.11995858894229315 and:0.05190814595497317 in:0.04826895364987692 that:0.04493731536153755 for:0.02621329399551802 to:0.014264398237021584 on:0.01265746727886542 but:0.011455138992558378 from:0.010608200780434335 by:0.009501112514025458 after:0.008585786447328627 In:0.008138916799229592 bill:0.008011347344982048 with:0.007958936088978385 one:0.007618611554315744 bill,:0.0067307084291911914 ,:0.006169986576017955 which:0.005912943367918462 upon:0.005759226711584125 :0.5843409209733499 +to:0.24218363404431847 will:0.16628008858693424 shall:0.10384317225648775 may:0.09526925703103116 should:0.08240631382343175 would:0.06758850246313527 must:0.05087259332453798 can:0.03768224443286503 not:0.03097807771308268 could:0.029771060794877124 might:0.015431992784993518 cannot:0.01346360490875718 that:0.004873170564887482 and:0.004369513329056443 it:0.0028044175701140016 probably:0.0020045900283630837 also:0.0019180401363467479 which:0.0018038299505051493 lo:0.0015623999214209351 :0.043893496334853996 +of:0.09129790931378902 the:0.07369883040827747 and:0.047842263382354346 in:0.04189055351593407 to:0.04045875475680249 a:0.03542341257202578 be:0.02020462051672066 for:0.01979292654746225 was:0.01760256398103379 at:0.017380150555488715 is:0.014984483003968216 with:0.014047653760730413 by:0.01374644383819499 :0.012670486581795598 In:0.01200961464556976 or:0.011563835749786333 from:0.011391516893522809 are:0.011273104484969465 that:0.010755276030689069 :0.4809655994608848 +of:0.1848447824989748 in:0.14399433496259428 to:0.11197066358207536 for:0.07195990737348999 with:0.050041120269640645 and:0.049463572230633114 at:0.03674486618457717 by:0.027917785583975993 In:0.027140457960607132 on:0.025397939031143815 from:0.02474443694000648 that:0.02356748467592795 do:0.02145529945021087 make:0.02076290208839082 all:0.014109957944414855 or:0.013312955988949616 upon:0.013152881072710402 under:0.01139618663965968 up:0.00897037095457065 :0.11805209456744639 +Mutual:0.23584513382175562 of:0.0785825629359393 the:0.06264570035425464 :0.03165498424789254 and:0.022526968386102048 at:0.01709288727134941 State:0.0120751569380088 a:0.010742814308152701 in:0.00903068100446418 said:0.008498678460983317 The:0.008296970610605425 to:0.00790149014833824 or:0.006624542821623368 for:0.006469960207349075 York:0.006298611598321478 de:0.005757740258882768 from:0.0056820301746153285 :0.005303967929340146 by:0.005271055273587547 :0.4526980632484341 +he:0.2549446097983494 I:0.10766674105083494 He:0.07813282436572684 and:0.06451841971978091 she:0.04257241298629202 It:0.03273955804961334 it:0.0288259709218243 which:0.01790770638620898 they:0.017329157354238945 man:0.013986580990941333 ho:0.012042517618911544 She:0.011915582674745948 lie:0.011243988027466718 then:0.01122462324278461 that:0.01049354126748887 we:0.010215644489497421 who:0.010092581890644112 1:0.009848971232667422 be:0.009148952882718863 :0.2441496150492635 +to:0.505231625649584 will:0.061995201012131324 and:0.048285146411446066 would:0.04735510826221283 not:0.0320872566016309 they:0.028372472100539527 you:0.024187523236056746 I:0.023508860682972747 we:0.019872078086104566 must:0.01837605817164348 can:0.016687051066429755 could:0.015325527601520787 should:0.013671523227420814 who:0.008421369399867438 may:0.007829091866894367 then:0.007417186369907228 it:0.006826590900749383 never:0.006740832849361265 or:0.006584929433633936 :0.10022456706989277 +of:0.28767355066866834 to:0.08775711267569858 in:0.08678131196995101 and:0.05160598694501188 on:0.04646139928102899 by:0.04519522654900943 for:0.044547789071328545 with:0.03396756772609607 that:0.033699232901107726 from:0.03075346596941143 at:0.027039283056790858 In:0.021061449543044047 as:0.017514234937992545 all:0.012543839382496166 upon:0.011844431150487573 is:0.00998972746569266 was:0.008814315973987914 into:0.008557199930727406 through:0.007781895704231326 :0.1254109790972375 +in:0.3694095603135133 of:0.22316428146220985 In:0.0791378073714095 to:0.0721241544927934 for:0.04503880120482231 and:0.02108437023151583 by:0.02013775905595426 on:0.01713650746015233 from:0.016264421650945642 that:0.01592164712838226 into:0.011895781140233999 with:0.010693731422662113 at:0.010054049663791469 as:0.009349202081326741 through:0.0061379251264297476 iu:0.006014051774559874 over:0.0057022223720077005 upon:0.005353698342778516 within:0.00494949907884954 :0.04943052862566162 +.:0.1580101871244603 J.:0.08642207296454299 Mrs.:0.0799555532132903 W.:0.07237170041711377 D.:0.06715345765244578 A.:0.06313002524027697 C.:0.047319901672050066 S.:0.04393162947591828 Mr.:0.03661153211817868 E.:0.036198327680021986 H.:0.03396731801128475 T.:0.029755545813309792 N.:0.024835243663787695 M.:0.023686686776038437 P.:0.02121106804325138 L.:0.020910074290248555 R.:0.02044178746807524 F.:0.018705287770759232 O.:0.018083380114019564 :0.09629922049092621 +and:0.14319424844451145 to:0.10653887384138656 matter:0.07893942073283307 of:0.07379916535548284 know:0.050962787899967915 see:0.05003724362508236 is:0.03844729833123676 in:0.03834151051852022 or:0.03371115367405855 for:0.02322270957273588 not:0.020221373885130827 with:0.018733067921945252 well:0.015765542330893997 just:0.015582614059722782 was:0.014468270360673526 on:0.014066312206778099 him:0.013836834974606738 but:0.012955209885307234 show:0.01280153943163823 :0.2233748229474877 +miles:0.07197785505130863 and:0.034982511888747306 away:0.03495998302673831 feet:0.03107743831890538 down:0.028187368139280893 far:0.02294861477302172 him:0.02138477294404391 free:0.021246187055355203 up:0.020871567895648722 out:0.01991844868667559 taken:0.019849120647691024 them:0.01849538189313273 street:0.016334143922393178 received:0.01603427255232466 returned:0.016009163760008136 days:0.015581537466023589 deed:0.01550039296682902 letter:0.015298465995075283 years:0.014328227241204864 :0.5440145457755918 +of:0.24212894010742042 to:0.11758528607562573 in:0.09850488084124383 for:0.06094607611599334 that:0.05983500275711132 and:0.05263779446836656 by:0.0434678524179431 with:0.03369892216854114 is:0.03185155672552797 In:0.02601113012690808 all:0.023778727683898892 at:0.019996284686680205 was:0.01824239301401065 from:0.016000483623071157 on:0.015285830362016755 have:0.014517725057436827 as:0.01442118746980299 not:0.013764254563409782 upon:0.010307883754846257 :0.08601778798014502 +the:0.21559636436174687 a:0.18793851995534508 of:0.09297668354784212 and:0.03610369044176116 in:0.03157782026892335 on:0.02312588538880736 to:0.021416225625867397 The:0.021009842175002146 that:0.01725437535741983 for:0.014854271603097583 by:0.012172663417344255 tho:0.011916600366812092 more:0.010666508003690752 north:0.010507441025232031 from:0.01027325130979586 In:0.009879171286963577 as:0.009463146447548062 his:0.009347534184773191 an:0.009174375879877714 :0.24374562935214955 +the:0.44728469027856055 each:0.24982912936604523 any:0.08018726695064272 no:0.03239802656020083 of:0.01680502195373841 a:0.015847182877099998 an-:0.014224122438132076 an:0.0138341428909857 tho:0.012735522218083026 every:0.009418038143786127 or:0.008597309321045245 to:0.008396363674058037 this:0.008040578465929728 and:0.007950059182230426 his:0.006834030530000821 their:0.00653794342082108 its:0.006530310436562264 that:0.006240650411620293 tbe:0.005542451128392504 :0.04176715975206495 +and:0.045612343960238604 him:0.027303284707374816 right:0.026974087571779645 not:0.026107306138284915 is:0.024942683068641155 was:0.023197444857372594 as:0.022035436882531376 them:0.02029743006358988 do:0.019433766518179442 way:0.01901845641876511 her:0.018434532527017048 want:0.017584549801638417 will:0.01669300330641614 well:0.016502535810620875 have:0.01535826518631127 enough:0.01433747517949438 said:0.012567476179528999 us:0.012357146212589166 are:0.012051943568847806 :0.6081908320407783 +It:0.3938227986057654 it:0.1726738174539733 which:0.050018405114193885 there:0.04631151153131182 that:0.03956859291890623 There:0.026526076645632234 he:0.02258014796605916 This:0.018298739128649086 what:0.01388621628027422 who:0.011793745145538529 and:0.011299926961654673 this:0.01021535087650905 He:0.008287789526773654 as:0.0077082674909070455 but:0.006718018764720397 That:0.005306631192978641 "It:0.00519610670999711 she:0.005047312323207141 :0.004841442493079235 :0.13889910286986923 +I:0.1669795618359962 we:0.09941552955371491 who:0.09568872418250514 they:0.08537167754210805 would:0.08329123620196315 to:0.0690147433767865 We:0.05279461262510603 you:0.04279866990188878 not:0.02994983670548912 will:0.029354494839209606 and:0.02861672378079273 should:0.02596378770147536 must:0.020923491086338366 They:0.01927662008856763 shall:0.01900926369518725 may:0.016950480955611892 could:0.015191618167292392 might:0.014756992506469255 1:0.013163439662736906 :0.07048849559076074 +one:0.1028303141280697 part:0.05963429477052991 out:0.04766456937681193 some:0.031418679026461914 members:0.030764490253327767 side:0.029940657362655835 portion:0.022063658796890564 office:0.020457735219956013 member:0.019726706386316174 end:0.019666887540649894 tion:0.018667441728710307 parts:0.016814747270460957 people:0.014112771422418794 all:0.014072739582212475 any:0.013183573287639892 One:0.013083578354183906 that:0.013024335602903442 account:0.012482348155001894 many:0.012077825070275192 :0.48731264666452345 +together:0.08099484401878523 and:0.07780803108297926 covered:0.0347242815276588 filled:0.02734824319453264 thence:0.02353160315672457 charged:0.02286981870894935 connection:0.022192500699211786 it:0.020044082992033155 up:0.01895177430968027 met:0.01745789302584553 him:0.01726299432869302 connected:0.016828300618694385 them:0.016006396013506684 compared:0.0151871199906496 that:0.014507877483134266 but:0.01399390223390046 accordance:0.013915797406090388 along:0.012253401982105153 contact:0.011038485472447054 :0.5220826517543784 +and:0.06875884044013889 ready:0.039556640573671316 candidate:0.02666175178108951 demand:0.02449156820973748 called:0.01982206103927004 call:0.019071164155652076 up:0.01840215422438445 used:0.0163151850126909 him:0.01576181706304897 was:0.01476210673002315 necessary:0.014485260181327323 her:0.013453945151824563 time:0.013190895594240692 vote:0.012805882948133803 out:0.012796529922271281 made:0.01276402017535697 as:0.012738527083361293 required:0.012422557215481017 left:0.012331617244727956 :0.6184074752535684 +:0.11701896103957507 it.:0.01807648104382477 them.:0.017861778242940003 time.:0.011525970444400017 year.:0.009881026497889082 .:0.009829611184694984 country.:0.009088853452186742 him.:0.008518375218275207 day.:0.008424570758853151 work.:0.007704136001399109 years.:0.007591956844938837 city.:0.006855128994270727 men.:0.006854563737293722 State.:0.005968513812624656 of:0.00571009396023262 people.:0.005617336059363228 States.:0.005497251636676931 place.:0.005426500945936077 days.:0.005426329830728752 :0.7261225602938963 +it:0.20191747327699497 It:0.15640256398833224 which:0.03557706099944201 and:0.03480827067682007 This:0.0324713904121666 this:0.028594890833518107 he:0.026186025604720914 there:0.026033812583329364 that:0.02561937421492665 result:0.023881033959207165 He:0.022581204531035008 what:0.022308315961225077 fact:0.01861295096431203 who:0.01111703122063576 opinion:0.011042220666655401 same:0.010358107094801443 man:0.00970946181200093 What:0.009579698146070457 one:0.00893371424806466 :0.28326539880574114 +the:0.24739427420409194 too:0.13264329773203618 of:0.0862523245887232 and:0.05247175531450461 a:0.04974740839613292 his:0.027503446962791247 as:0.026429677465456627 for:0.026045936434320207 until:0.02583800395646604 are:0.02574817536172933 is:0.02305716947217958 very:0.02225793160133415 was:0.019868439246116167 our:0.01774867145305382 The:0.015232999877255661 had:0.015200942279890833 their:0.013244685146826913 its:0.012905529264293681 have:0.012774242848767886 :0.14663508839402903 +the:0.18179470057646016 of:0.08674409487437103 and:0.05891648439314675 that:0.051941563313423325 Mr.:0.03611963772989963 The:0.035221556342727924 a:0.033511640089725174 this:0.017206977935928718 or:0.015340377669888175 in:0.015328798889933605 no:0.013728208994337746 to:0.013049490199744891 tho:0.01283137533392388 his:0.012339015515583624 as:0.011873037242155523 an:0.010118708549008397 other:0.009951283100883423 their:0.009878834116132332 :0.009664375379880793 :0.3634398397528449 +to:0.2772771923831724 the:0.14993333950658996 and:0.11097665613671905 for:0.047377172869511854 of:0.046474293264334506 their:0.03421176963273576 with:0.028078943024382463 in:0.023056136717683466 a:0.021065342212436763 or:0.01884091152834319 no:0.0173657087616418 will:0.01686892758471535 his:0.016279863536210422 not:0.015212953098463735 our:0.014635813612589414 its:0.012652212822273839 I:0.012069322467333854 tho:0.011718668753545013 many:0.011092944339357315 :0.11381182774795985 +was:0.27424299623005205 be:0.14955089535347843 been:0.11309969559553298 is:0.09372015881061549 were:0.07732394705136214 so:0.06439950438689059 are:0.06002090323234271 being:0.0227205511226932 and:0.022286314710834858 he:0.01810854551986042 Is:0.011230208641314965 had:0.010815124850466963 not:0.010635764903571971 bo:0.010606609301851316 has:0.010028192400369597 have:0.009367537311136626 I:0.007897670192263643 He:0.007608645438598725 it:0.006196281373411237 :0.019140453573352086 +one:0.1028303141280697 part:0.05963429477052991 out:0.04766456937681193 some:0.031418679026461914 members:0.030764490253327767 side:0.029940657362655835 portion:0.022063658796890564 office:0.020457735219956013 member:0.019726706386316174 end:0.019666887540649894 tion:0.018667441728710307 parts:0.016814747270460957 people:0.014112771422418794 all:0.014072739582212475 any:0.013183573287639892 One:0.013083578354183906 that:0.013024335602903442 account:0.012482348155001894 many:0.012077825070275192 :0.48731264666452345 +a:0.5057648612450251 the:0.24476956332462416 The:0.0410197879797363 A:0.03489607890283911 of:0.02675226228222403 his:0.02446336394724161 tho:0.013132289024579772 in:0.013108738047018136 our:0.012337241074560303 their:0.009799347164138161 its:0.007571695875220601 and:0.007159424656714634 my:0.00645568523011416 with:0.005588236127127944 tbe:0.0050026449653695305 are:0.004755108071528885 every:0.004732370769088995 some:0.004713383734293292 In:0.004243775340758193 :0.022734142237797125 +at:0.35192025072856226 for:0.10647638466568336 of:0.07419067666162908 to:0.06268401504248527 and:0.04244851966578317 At:0.03957536884719112 during:0.03477812045170813 that:0.03418399897315247 in:0.033862175708172966 from:0.025621702324958764 all:0.02429031183628755 by:0.01920866002449512 after:0.013027247536464694 until:0.012536081107947527 on:0.012309965813600979 within:0.011984158727070376 about:0.010433318492459924 In:0.010406822737012949 By:0.010383473933220767 :0.06867874672211355 +from:0.23661006868210094 of:0.10356926025654907 in:0.09454830715644467 at:0.07990821947623085 and:0.06269485390174996 In:0.04140063410142934 to:0.03587780651718617 for:0.03179296422743085 with:0.024738869312878362 by:0.018460754647669695 on:0.01363711758293313 the:0.013506346559381384 is:0.013294286517046852 or:0.011318573032260618 about:0.011222349968861964 as:0.010184608939317247 after:0.008669125151932355 are:0.008133962412613691 than:0.00700362098062085 :0.172428270575362 +the:0.16171695848649584 of:0.14215453897719715 a:0.06100425345885675 and:0.036407288674618815 in:0.036230485613810766 to:0.03543275493426932 for:0.025581183369103703 that:0.022544203428954548 by:0.021823373958388688 from:0.01790644570462038 :0.013734386570567105 more:0.01305603672866295 with:0.013033115469777508 on:0.012606825844103447 The:0.012243659131143761 said:0.011559255398547682 their:0.011063746401250747 which:0.011047440473319044 In:0.0106629194720407 :0.3291911279042711 +the:0.06647623600238486 of:0.06400552517032125 and:0.062281308223140285 be:0.05990300454652408 to:0.04886480238196076 was:0.046359477162698864 is:0.033642421755709494 or:0.024224754484440145 are:0.023949812295997554 been:0.021419866649644067 were:0.01944175848099471 for:0.018415802147964767 as:0.01668021786349543 in:0.015768024701088016 a:0.014332062457127072 on:0.013218118866175774 :0.011989868035949203 being:0.010901119313506834 by:0.010399318984640265 :0.4167265004762365 +the:0.12726855910616955 and:0.0892959780159441 of:0.062229337879632314 to:0.058292991969480845 in:0.037889522208997196 was:0.035486090111862774 a:0.03277831520841599 be:0.02993909980507852 is:0.021492638467572805 been:0.016319288425974923 are:0.01622912479566914 were:0.01571120940653339 at:0.013800451447349702 by:0.013390998935139781 his:0.013046404338315144 an:0.011587498063993411 he:0.010436524486303292 not:0.009967845652912184 or:0.009888058570455908 :0.37395006310419904 +of:0.29137701998350407 and:0.09625898507828831 with:0.08292888731809123 to:0.055872871401122404 in:0.052382328165540205 for:0.045442811993633425 is:0.04081635438719068 that:0.037535687890181996 on:0.034095608409110585 was:0.028302520257145806 from:0.027276699817998497 are:0.024343186264906776 by:0.022769162090445973 or:0.019728679055514623 have:0.01744286440148949 In:0.016660045152816563 the:0.016120378254005984 all:0.014975717184579636 a:0.013256540373365525 :0.0614136525210682 +a:0.4465400460101586 per:0.10382138860699316 the:0.05885950332960514 in:0.0571693878392773 and:0.05632970354604718 to:0.029609558832247845 In:0.021469368776763517 of:0.020305330270909368 one:0.019226200622726626 by:0.014327788276429658 every:0.013530617820016817 other:0.011303850724494273 each:0.011216766049497548 or:0.01102351337062147 that:0.010304210440863413 some:0.010148864509833185 large:0.009707377065129912 with:0.009474837145436048 his:0.008897946286518759 :0.07573374047643021 +the:0.5552113153560109 and:0.10345117894398013 with:0.05860326679420755 The:0.027828796999407785 an:0.024860517619438416 of:0.02425880902757476 tho:0.02140302661191555 or:0.018767214439415023 by:0.014176846547391604 great:0.01241585831901906 a:0.011607368510724926 no:0.010228897252906807 in:0.010071916344187467 any:0.009174805044265735 tbe:0.008599362127447226 as:0.008214486445183918 annual:0.00506905824518856 said:0.004763856386654051 personal:0.004639634402281067 :0.06565378458279952 +of:0.09043409053013649 the:0.08458268447909405 and:0.06941169710674647 to:0.06842685376506503 a:0.03502196399400508 be:0.027631492661475 was:0.02262770347407094 or:0.020899547147549786 is:0.018061672947865565 are:0.017763045964156114 his:0.017114589037761113 for:0.016727962397261282 re-:0.0162769353827767 their:0.01514882567544624 been:0.013878331263912594 were:0.013374436412516415 that:0.01319950985941409 at:0.012567281873590285 :0.012294075404375895 :0.41355730062278084 +the:0.11919516938815296 of:0.07230453158552728 and:0.05781056740443249 a:0.043018564803886335 to:0.031305092790907506 in:0.020848713353460488 at:0.014270110001066288 .:0.012526810245749479 :0.012413283442322082 for:0.011719122709941797 by:0.010808400946589808 or:0.010404172990115616 The:0.01003576004804544 with:0.009811868184449042 tho:0.009295902015355835 was:0.008924239095331684 that:0.008672304223433876 is:0.0085591147338948 be:0.008335143826716943 :0.5187411282106204 +that:0.2073859363375719 and:0.12451647650343532 which:0.09858369103395653 as:0.09547795805771436 but:0.050057191757793384 if:0.048189528794723754 when:0.04185247796698799 where:0.03737910761819856 because:0.030985636327434344 what:0.025558623818788758 If:0.0198905271280095 until:0.012325199709737219 while:0.01117867232659942 whom:0.011137346059782794 for:0.010214315249605713 than:0.01012279006110727 though:0.010091947611072141 whether:0.009031361944622703 But:0.007565231489822598 :0.1374559802030357 +him.:0.04262299412425701 :0.02951152980041572 it.:0.02235718272868886 them.:0.013955058720634602 years.:0.01349638679658387 life.:0.011360518865778102 time.:0.010835662664146033 himself.:0.010582883110457731 man.:0.009062285505582966 me.:0.00792130040369972 there.:0.007406314335424917 her.:0.007313283989376771 day.:0.007065994914326243 country.:0.006782238994279131 again.:0.006750442816726462 city.:0.006653212746291425 death.:0.006443888971418918 .:0.006381509844311833 home.:0.0062306807841571565 :0.7662666298834425 +of:0.18117545416926945 in:0.108137964848937 and:0.08804386704039543 to:0.06819046558606577 on:0.05143499972367859 with:0.034607716293908165 by:0.02897309192632052 In:0.02661374455885228 at:0.023666718612939844 from:0.021763812003343683 for:0.021656057793135793 that:0.019848806336153723 under:0.013526854548850597 upon:0.013480429761829785 as:0.013055317418426164 into:0.011225676231744074 make:0.009573105236385082 the:0.00748550896258456 through:0.0067630261848484205 :0.24977738276233108 +and:0.05378465257991979 able:0.04235268161500452 order:0.0422739620378343 him:0.03706759280479266 right:0.034776233470168984 enough:0.031604755938785783 had:0.031445781070150836 is:0.03138120411677772 willing:0.02834338726154095 was:0.027234188336734872 have:0.02659819016160317 not:0.024413731932477863 them:0.022733314205771175 going:0.02149163064746468 necessary:0.019905644293847603 as:0.019823992138073603 refused:0.019530423119897524 me:0.019515275088376013 made:0.019268249254406625 :0.44545510992637133 +one:0.2982148004780636 a:0.13409792516735047 two:0.09176643099656352 three:0.07274341821968529 five:0.04585008893582946 four:0.03944270418245316 One:0.028740077824290732 six:0.02498052092048205 several:0.02194583514966651 few:0.021186895669062473 eight:0.02043396877867148 the:0.0176761847022152 seven:0.014755016634621991 eighteen:0.014717097981577465 live:0.010474237837957675 nine:0.009630586018570673 A:0.008998415540479069 Two:0.008897995169283439 fifteen:0.008874699472791635 :0.10557310032038411 +the:0.7872181222771389 a:0.048611157722168015 The:0.03815849321743672 tho:0.03338226677216304 his:0.01639397219913431 tbe:0.009734214093520509 full:0.008015763784121215 firm:0.004675489227379431 their:0.0043369748380474955 and:0.00423172176405975 whose:0.003643671174912675 her:0.003558975483944113 no:0.003150630519851451 in:0.002677743616774654 its:0.0026060378951868975 of:0.0023105904026528164 my:0.002241144079291071 great:0.0022196722447686418 our:0.0018758686850494735 :0.019957490002398697 +thousand:0.2036229355105674 hundred:0.1740797451281784 of:0.07834012449112839 million:0.05426191217864034 fifty:0.054028172704383544 five:0.030872892899039696 ten:0.030160978321874234 two:0.02759367613528497 billion:0.022988897842552893 twenty:0.0225110963625922 three:0.020005189287924125 dred:0.019744243596504174 few:0.01920571401738518 eight:0.013594492501090646 sand:0.012936044325787068 twenty-five:0.011277619477943574 six:0.010554165699731229 the:0.009168512547867512 nine:0.009043137499880302 :0.17501044947164413 +in:0.12584751051357324 of:0.09759502479664728 the:0.07371839375246729 and:0.055651754291004454 for:0.04744536705298647 a:0.032925964492396737 to:0.03198260274187316 In:0.029652859996176964 was:0.017176340234656633 by:0.01637913782528117 are:0.015624529717594675 be:0.015359740034713075 from:0.015332737536474472 that:0.014587063309917358 is:0.012292937239714764 which:0.011956538642930331 were:0.011584038466634639 been:0.010892258706962473 with:0.010501774296364555 :0.3524934263516303 +and:0.08503425215113287 together:0.05335287900593926 covered:0.03253077787715905 him:0.028699283380466227 up:0.02694908563101517 it:0.020075958598700875 met:0.019295061035032795 them:0.018700319853085637 but:0.01578533889291739 thence:0.01248413508838869 filled:0.012418217423982135 out:0.012348631427551895 away:0.012156361159124838 do:0.012018718033405752 down:0.011784916836511368 man:0.011218165866290394 along:0.010245892575704265 connected:0.010128653854803403 ed:0.009471429225277377 :0.5843019220835106 +the:0.16573863972674915 a:0.13354955099483998 his:0.1180202259765464 her:0.09048171794412388 at:0.06655598052908006 and:0.053017726447158825 their:0.04367724023918645 of:0.04210111741355645 for:0.031177204947284126 came:0.02745930754723996 go:0.02558566905563514 to:0.021729498069015432 my:0.020462247362147367 went:0.01689448940552879 in:0.01672643789365716 returned:0.015300072458405544 old:0.013850850477480595 our:0.01306543085782927 brought:0.01071755273228885 :0.0728890399222466 +be:0.15347377715639968 is:0.14018331727051275 was:0.12318485900165403 are:0.06002830022019261 been:0.05647700924994294 I:0.049567806723484785 and:0.04683123008088637 were:0.04406284563062519 he:0.03797561907704877 Is:0.02195081370291859 being:0.018418801084236228 an:0.014238848595294826 this:0.012710878566220834 bo:0.010932264848962783 commonly:0.010782251765437522 have:0.009988023176454168 not:0.00986976506657937 it:0.00966539704411271 so-:0.009146453580194074 :0.15951173815884176 +nothing:0.038372714240358576 is:0.025801092779461663 ;:0.02235888137639035 anything:0.013052100561386271 it,:0.01062835286652844 was:0.008912418214507882 and:0.008444401719230972 of:0.00832042379345796 are:0.00793932872062729 him,:0.007234886793974415 none:0.007174549291397742 them,:0.006751516094145618 to:0.006714725392429433 be:0.006510869518404319 ,:0.006223662018109123 time,:0.005923500582351599 have:0.004724622554275163 in:0.0044964238169901685 .:0.0043529309517568865 :0.7950625987142161 +the:0.08118343764282544 and:0.06441256675192149 of:0.05085892272010317 to:0.041758674448135816 a:0.03303230290642404 for:0.026731770714523706 in:0.021655655889618947 be:0.017159764360537875 is:0.016234813375362245 his:0.014761939780123638 was:0.014485225628874256 that:0.013989025265100714 will:0.013890483924970104 -:0.012981615814228332 with:0.012350952840603042 an:0.012321091706986902 he:0.011135397220253064 Mr.:0.011096623571655344 :0.011007234560093362 :0.5179525008776584 +that:0.1384787833413635 and:0.13225816703457685 is:0.11756726753664382 was:0.0870309935274072 but:0.0528225052022462 had:0.04198920383297184 have:0.03486236431838307 be:0.0326987447854311 with:0.02449955542509327 of:0.023656781882197636 Is:0.022218842933505862 has:0.021443388360023793 in:0.019583177367811552 are:0.01847183543555041 were:0.018113882829910007 to:0.014587432982549803 or:0.014341496924730685 if:0.013900326009125736 for:0.01368165195492812 :0.15679359831554954 +the:0.16302452373027795 of:0.10112224883500905 and:0.07447727069189607 to:0.03698932207228917 The:0.0339047005057611 a:0.0322474440839661 that:0.021988397340951257 which:0.02107512246776365 or:0.01498450727295995 was:0.014723837396124932 for:0.012772228570186372 be-:0.012005639938824284 are:0.011047465136234605 said:0.01071183409817993 be:0.009677416381827652 his:0.009516655670143516 is:0.009246242406639335 when:0.009198690765524771 he:0.009161599189920584 :0.3911248534455197 +and:0.08934296525867834 of:0.08068838607300491 as:0.07853645433812198 the:0.06307320057451939 to:0.042658746496865775 be:0.030835544751753347 such:0.029703590012664483 much:0.025794511891263566 in:0.023621249210533997 so:0.021449367110620385 is:0.021260609143037765 or:0.019920658237143826 a:0.01927671572579788 his:0.01906207551381598 was:0.01720359984272631 are:0.013935218166333807 their:0.012335998801341931 for:0.011516936419171063 that:0.010287085618050218 :0.36849708681455506 +well:0.11796971731516617 known:0.10182941933194044 and:0.0843086198858249 far:0.04965959205674443 soon:0.046186720493715853 such:0.04248134511660479 just:0.03185568489520241 long:0.030008239825147224 much:0.0276488530585333 men:0.017829697054719016 regarded:0.017277654063938507 was:0.017259254367924644 act:0.015635994402837545 that:0.015463644898740645 are:0.015322241055713403 about:0.01368110249825856 is:0.01349318778616229 designated:0.013091150796324877 but:0.012893315376177878 :0.3151045657203231 +and:0.08716285544841777 the:0.08359915982612835 of:0.04676747339913376 to:0.04168380653229524 be:0.03834173597650619 in:0.035244481652967764 or:0.027419258732084884 for:0.025296797913982705 he:0.022512155176118136 is:0.01820115841032366 that:0.0175504359614496 I:0.016849250717470884 re-:0.01653721398774126 was:0.014230020243559838 :0.014114939006723753 a:0.013451566831076832 said:0.013224814397073861 dis-:0.011822052949154359 as:0.011444139465815371 :0.4435466833719758 +the:0.3957153629883955 The:0.08864413110053508 of:0.07792734533373888 their:0.0344669637378631 our:0.033815151194774 these:0.030967261428953563 and:0.028637969952920634 tho:0.022377085067541998 such:0.02234169545684347 whose:0.019362583958604157 other:0.017470307208134386 this:0.0166322112445802 These:0.01612447422678807 that:0.015632497439222855 new:0.014180595251825096 his:0.013789948317068866 general:0.01367779277299455 in:0.013393250625019814 its:0.011710884932951898 :0.11213248776124392 +of:0.1513889139463212 the:0.09096913553586852 and:0.08125214142724277 to:0.08066839716328514 on:0.03457107870266387 that:0.03452761182827403 from:0.03447077568813606 in:0.02683745897679796 by:0.025421932770967548 Township:0.01595502923805812 as:0.014005353126468556 containing:0.013961560285198122 :0.01368676095756825 lot:0.013097229047613639 The:0.011239876697442827 or:0.011207286944848766 which:0.010974848284854366 tract:0.009910834591042616 for:0.00899998660809506 :0.3158537881792526 +of:0.09129790931378902 the:0.07369883040827747 and:0.047842263382354346 in:0.04189055351593407 to:0.04045875475680249 a:0.03542341257202578 be:0.02020462051672066 for:0.01979292654746225 was:0.01760256398103379 at:0.017380150555488715 is:0.014984483003968216 with:0.014047653760730413 by:0.01374644383819499 :0.012670486581795598 In:0.01200961464556976 or:0.011563835749786333 from:0.011391516893522809 are:0.011273104484969465 that:0.010755276030689069 :0.4809655994608848 +one:0.1028303141280697 part:0.05963429477052991 out:0.04766456937681193 some:0.031418679026461914 members:0.030764490253327767 side:0.029940657362655835 portion:0.022063658796890564 office:0.020457735219956013 member:0.019726706386316174 end:0.019666887540649894 tion:0.018667441728710307 parts:0.016814747270460957 people:0.014112771422418794 all:0.014072739582212475 any:0.013183573287639892 One:0.013083578354183906 that:0.013024335602903442 account:0.012482348155001894 many:0.012077825070275192 :0.48731264666452345 +and:0.08995317707915026 to:0.06844710404109794 of:0.04605142056172993 the:0.04074574508561307 which:0.02479116931334353 that:0.023764822140213245 re-:0.020841117231308055 in:0.020803825395358622 for:0.020278423301550053 :0.018417753428486977 not:0.016860793136637672 con-:0.016444405871234195 is:0.014386481772210856 or:0.014080680914153714 be-:0.01352268143271276 I:0.01317002660943805 was:0.011429878269381662 dis-:0.011196807025842847 he:0.01113106290024311 :0.5026826244902934 +the:0.19245739967271897 and:0.10938117387488232 of:0.03978093538098338 or:0.02651592341992376 their:0.02542396572995391 her:0.02165335864879322 his:0.021542749281642997 an:0.021176598723059954 for:0.018602397965583467 The:0.016765784746477195 said:0.016408126420614684 in:0.01510431400705831 tho:0.014701745176225063 my:0.010717126734639539 with:0.01017408317122685 on:0.008975264252630698 whose:0.008651880866931434 that:0.008628752140603786 to:0.008086327564908789 :0.40425209222114167 +have:0.30825979017372884 has:0.23335574802959289 had:0.21175046658197516 not:0.030988266201518243 having:0.02927012901615229 bad:0.014171973849594698 ever:0.013086879418728829 never:0.01300501411300987 havo:0.009928021099038665 lias:0.009747205787221536 haa:0.00770115724572842 baa:0.007542997033275567 always:0.006964193192067684 already:0.006843537117543435 yet:0.006280305743339498 long:0.005835741283387316 since:0.003932840742479124 hare:0.003476596932273983 and:0.0033496242557260235 :0.07350951218361794 +and:0.09039093911239561 a:0.04649656547787864 the:0.045735190663591344 of:0.032111908357411664 that:0.02760002716202583 to:0.024358011013293664 which:0.02345439659355629 or:0.018372393672335136 all:0.012649856653129232 with:0.010054240725368497 as:0.01004472289062928 h:0.009834667384015519 at:0.009189110410842048 .:0.009051466151585088 it:0.008890772528674075 :0.007777154567173237 on:0.007606406926749509 his:0.0075213168464304475 for:0.007506971595200774 :0.5903538812677142 +and:0.15097833440648828 he:0.15029057231532736 it:0.09052235064147902 who:0.07701040214282552 It:0.04266926291090589 He:0.04137287226528975 that:0.03508781866814626 she:0.030711664839125224 which:0.030096575204194335 they:0.026377891843588405 one:0.02566787854909058 we:0.019597855132520433 as:0.015998484540365 I:0.015825350122269478 man:0.012957442109214286 ho:0.010572298157106115 you:0.009815758876887659 but:0.009368848422902842 country:0.0076962215156386035 :0.19638211733663496 +is:0.10896519867317825 with:0.10521447616072499 of:0.10200449400857226 was:0.07969474425337067 to:0.0608376837606561 and:0.05857936824742999 by:0.04597021645615716 for:0.04346199966900569 in:0.04087146589722512 as:0.040397224867862895 be:0.03903544337319751 have:0.03159684118362402 had:0.023538176105131908 been:0.022648082543547252 made:0.020862229040465953 make:0.018721439135522187 not:0.018583062675095186 that:0.018160065207866897 has:0.017599444986826626 :0.10225834375453935 +and:0.126029285144886 he:0.1260098401178724 He:0.057702274227234694 I:0.04982468433431159 who:0.049479577276605374 have:0.03824058552444763 she:0.034719532785889524 they:0.03219933920392298 had:0.031404422129075245 the:0.03034010401947832 it:0.02972954282278603 which:0.029276060026488557 be:0.029234482479571593 a:0.029148258429877182 that:0.02457307973556989 was:0.02428314104117718 we:0.02356638553735475 is:0.019249106481692365 has:0.017657188662402654 :0.19633311001935602 +and:0.07266680630332405 of:0.06982264829707056 the:0.06581569819306227 at:0.06000608509607783 to:0.05480797390945479 in:0.036235614570952764 on:0.021777811950300794 a:0.021121069777452577 for:0.01321067146886077 .:0.011738704064856532 In:0.010878510716553002 from:0.010341663299650425 :0.009839624485031373 with:0.008785219035530343 or:0.008377417044931194 by:0.008225115325986122 was:0.006725254758113287 1:0.005599386455955904 his:0.005385734597153745 :0.4976389906496817 +of:0.19356837178995623 to:0.10182274360127028 for:0.09971016025607857 and:0.09739866572118562 in:0.0702757192959506 with:0.05981717484819797 that:0.04886297592163569 by:0.03869430130565654 all:0.031875445554300864 as:0.026609451645378254 upon:0.019915735384776312 or:0.0188376684145554 from:0.017202064400892086 on:0.016636972493998772 have:0.012805458076581488 In:0.011329751040216718 make:0.009000042503343776 under:0.008139846476776107 but:0.007757409356530573 :0.10874004191271815 +of:0.10627913600258207 the:0.10623114349520107 and:0.07347320283514017 to:0.05139569677649346 north:0.04047942784619209 south:0.03986237356293264 at:0.025929968165587527 a:0.024176419886367668 on:0.017773759365606455 east:0.01737508645081886 .:0.01730766566891281 in:0.015350428138065808 W.:0.014010033883894352 by:0.013195263297754162 about:0.012513072744464906 :0.01216917379618066 west:0.012080990802087932 S.:0.011432690831017661 E.:0.01131378653181273 :0.376650679918887 +to:0.08034344102784367 and:0.07559770811618696 of:0.07556417531451855 in:0.06430708336571542 was:0.0433904303290245 the:0.03714196666882291 is:0.035489587378076955 be:0.0327312593685656 for:0.026390414838272 are:0.026389447141360618 a:0.022518133573586962 were:0.020827030628718577 In:0.01908623855113952 will:0.018588649062266573 or:0.015820867600591017 with:0.015642320946412592 have:0.015541197933978465 been:0.014201070507074713 not:0.014037796634584664 :0.3453911810132597 +Railroad:0.11788331008354906 Mining:0.10092579265756703 Railway:0.08570540198493093 Trust:0.05383126402017053 Coal:0.031595002688469244 the:0.030162469763786753 Lumber:0.024881605831768596 Insurance:0.023334963821312824 Manufacturing:0.0229613376811069 Supply:0.02044779498808307 Oil:0.01769025322524178 Power:0.01646928828706581 Improvement:0.01504992688061462 Land:0.015002430692858445 Investment:0.014808681565387574 Medicine:0.013480668216839568 Construction:0.011563160659562794 Light:0.011100830795331897 Water:0.010679088416667318 :0.36142672773968526 +who:0.12931882574811193 he:0.10857086577214292 I:0.10681529008897044 they:0.08124359337422027 and:0.07150246811973829 had:0.05304874993470007 we:0.04419719318575994 she:0.043466635300668535 have:0.03443717485401428 has:0.026496498842054548 He:0.025490932644082448 which:0.025320798249231776 They:0.02005551502295028 then:0.019968006997329216 be:0.017454282400505804 was:0.014447783934254449 She:0.011713558686174026 We:0.01170092856732379 men:0.011518357452578279 :0.1422325408251887 +sale:0.05343049111289683 interest:0.0452942646298905 and:0.040632812219147274 estate:0.03471110852257591 premises:0.03182883289909725 Court:0.027487703474075968 be:0.02469845059676905 line:0.024483186530206563 it:0.023990382807775445 described:0.023491463339403603 land:0.022854418029305042 all:0.021930636091080778 property:0.021595286288730118 was:0.01765524138128073 It:0.016711868108802475 is:0.015781099981741507 corner:0.014953491368366156 title:0.01473052069762703 Interest:0.01441666729642141 :0.5083220746248064 +Mr.:0.24052873601183106 of:0.08265737206864794 the:0.045959558905669044 .:0.039957528267879155 Mrs.:0.0386648404671285 and:0.030155719845968768 by:0.0250840447851702 Dr.:0.02282302969051089 to:0.022730974279695188 that:0.02225208588378541 President:0.014555458710522277 Senator:0.012590930771222909 :0.011754065605285453 Mr:0.011353942131170176 from:0.010886808318009108 C.:0.010573818174785124 H.:0.010267784726427693 said:0.010080747629800817 M.:0.009836557937481592 :0.3262859957890087 +the:0.09684081064840576 and:0.06551335624548284 of:0.05146145169206151 from:0.049520598669154245 a:0.045427902131977435 to:0.0370403239153822 be:0.035669151526387034 was:0.030489628475080553 is:0.026635804908522978 in:0.023878514238638158 are:0.018513936943033917 not:0.017945708099223703 or:0.017556265685966497 been:0.014265228721347686 at:0.013857211504087178 he:0.013733215789660087 were:0.012396679125422956 I:0.012347944480187516 for:0.012197989992860347 :0.4037082772071174 +the:0.3653473636852091 a:0.15082910786522352 The:0.050657551621862834 some:0.04450871114797315 all:0.03972047626072751 and:0.037454752364455564 of:0.03579627662996752 his:0.028477968357399158 in:0.027732651740554913 any:0.022170703791525675 tho:0.02060493367404404 other:0.016483640581567816 to:0.01612886226344345 their:0.014119421110115996 every:0.013717115564396488 this:0.013584998460071931 no:0.013138758112274076 that:0.012586302725400058 In:0.01178682593485006 :0.06415357810893717 +of:0.07631852771292967 the:0.07378482355660859 and:0.06625384905647912 a:0.05712164177622248 to:0.05029322569786066 for:0.041149227753549684 be:0.027926853763770076 in:0.025880729027991087 was:0.021299132035746186 is:0.020488714510510632 or:0.01902047049824504 with:0.015410894052571133 in-:0.014667606062118779 at:0.013859682523716516 are:0.013775011837213968 that:0.012491148038450896 :0.011760372436547019 more:0.011097160902512783 any:0.010760102244724139 :0.4156408265122315 +the:0.18872290321856772 and:0.07990884171328741 of:0.07134501066066128 The:0.043246894817858254 these:0.022760575981405146 that:0.02263940423567282 in:0.01853667557064991 to:0.01558712617289525 a:0.014599616906527581 his:0.014552935584560694 These:0.013550115619968908 which:0.0131780081149281 their:0.01277887611983455 tho:0.011643762153399977 :0.011409164010629988 as:0.011296526840701347 con-:0.011221217959193217 -:0.010832723607073007 for:0.010425522418632843 :0.40076409829355203 +of:0.06428946731209786 the:0.05665207159202832 and:0.05080855430409953 to:0.03311305002838158 by:0.027206987966801686 Mrs.:0.023642954916499467 .:0.01869464160621993 :0.015291917157641147 was:0.010427257196405613 that:0.01004218760027738 said:0.009578717989425086 in:0.008703695920328039 be:0.008458636826685214 from:0.007902940531845449 -:0.00716432420265205 for:0.006845813190452546 were:0.006601573620773157 are:0.006458406451028239 Mr.:0.006398970725580088 :0.6207178308607776 +be:0.18068790266711723 was:0.14622345898350625 is:0.1072553952775235 are:0.09706790235699786 been:0.0697572010328891 were:0.06959240739182429 had:0.03651331477359535 have:0.025542955133245795 bo:0.02429078408107956 not:0.02090390832773485 being:0.020877749410328862 and:0.01842995886843505 has:0.016955087012218397 Is:0.014309038207615287 too:0.013804178640272604 am:0.01328894273825694 so:0.009003398727801539 it:0.0069638027994539985 of:0.0064780663538286255 :0.10105454721627491 +one:0.1028303141280697 part:0.05963429477052991 out:0.04766456937681193 some:0.031418679026461914 members:0.030764490253327767 side:0.029940657362655835 portion:0.022063658796890564 office:0.020457735219956013 member:0.019726706386316174 end:0.019666887540649894 tion:0.018667441728710307 parts:0.016814747270460957 people:0.014112771422418794 all:0.014072739582212475 any:0.013183573287639892 One:0.013083578354183906 that:0.013024335602903442 account:0.012482348155001894 many:0.012077825070275192 :0.48731264666452345 +a:0.3563552795128768 the:0.1882856144462242 to:0.09273628086178407 at:0.0665693977563398 of:0.04454014677712166 in:0.0184865677713301 and:0.016414638014492364 this:0.015289571729297593 tho:0.01255797931212709 for:0.010653697960055936 any:0.01043709475893865 or:0.009586008197979888 said:0.009018042056201327 The:0.007355114907698122 :0.007116701537206052 that:0.006237031311895791 by:0.006112065724589338 In:0.004892740839759276 with:0.004437965392239632 :0.11191806113184226 +and:0.09642829225468479 of:0.0649908338833623 make:0.05509007992253588 to:0.05114479875801638 with:0.04705850261672692 that:0.04564572029099977 for:0.04227719466830708 as:0.039398129732677575 in:0.02982861092794081 is:0.027676791521429205 get:0.027019619300979816 but:0.022999251151255885 made:0.021704672879347405 find:0.020919395658760404 put:0.020378024389838306 give:0.018627185065324646 upon:0.018380123066796775 found:0.017762400745141318 Is:0.017555923558210524 :0.3141144496076642 +is:0.318998533076201 are:0.13535710172459295 and:0.09655125500123726 was:0.041795203296951966 it:0.040648692272335335 Is:0.040138331936386204 but:0.032849672788155614 It:0.027699901770909682 not:0.01908669472365427 be:0.01906985123541655 he:0.01732774366245447 which:0.016002138825000928 has:0.014078995314839164 as:0.012958411577067105 am:0.012876413706578799 that:0.012846345276251683 we:0.012520912466077989 they:0.010848352909695892 have:0.010486389665079476 :0.10685905877111364 +the:0.10191436971762016 and:0.09149760365231525 of:0.046990407391896666 to:0.04447203454029591 be:0.0399971664992969 re-:0.03380041868021997 was:0.03098890755049597 is:0.030002070652698234 or:0.024601317315169697 are:0.023500258911526444 he:0.023266013641366788 not:0.020424396007098233 for:0.01774949907836998 a:0.0176084229017386 they:0.01649055096263196 con-:0.01647796616316871 so:0.01599283279175693 their:0.015803293475210273 were:0.015409821590407448 :0.3720126484767159 +of:0.3516331867801583 to:0.07951994996365336 for:0.0735118742815031 all:0.07087612387299079 and:0.06746707790817673 that:0.06618845028232545 in:0.04955527040128586 by:0.04828626820220719 with:0.020052865147131636 from:0.01787498613726735 as:0.012438586785481324 on:0.011936480680267047 among:0.011879801550401392 In:0.0109712501720619 which:0.010635881755781677 but:0.008759374461126112 when:0.00834719831553456 upon:0.007672786010641377 than:0.007591883788135303 :0.0638007035038695 +the:0.14937000988702226 and:0.07989539917611041 of:0.05035975817921807 in:0.050147029023191 to:0.04473006770811433 I:0.028240932030021444 a:0.024585090040208615 that:0.01775207904248227 In:0.017583115827651957 which:0.01586553577771599 The:0.015471988781916217 :0.015201312496510157 he:0.015191434721752781 for:0.013644127691560865 an:0.013523150450693258 his:0.013439945457832468 con-:0.01219585745565 will:0.012029308232323248 re-:0.011017070271249737 :0.398756787748775 +I:0.14076368629315464 we:0.11446794147024407 they:0.10109255812551222 who:0.08271699016699341 would:0.07499126133306795 to:0.05421035910994527 We:0.046089519424259005 you:0.0448327113843474 and:0.034133957058742774 will:0.02729316215473777 shall:0.026842023858689182 They:0.023938964622296725 not:0.023689556388291975 should:0.01982558969489874 which:0.019574022723923744 might:0.01929238301077331 must:0.018566176886845132 may:0.01715573603749837 men:0.016048246028133817 :0.09347515422764446 +it:0.13660386421470688 It:0.10425801293372679 there:0.08488031767014394 There:0.05574599195382205 which:0.04354687556273636 that:0.04039602108384457 and:0.024584139083569184 he:0.02070531845531699 man:0.012994504396359036 was:0.012219986168934207 one:0.010805820317288412 He:0.010607701193171028 who:0.010545864469599332 but:0.00877639628692894 here:0.00813360392291471 I:0.006826353018537218 year:0.006811584480629641 place:0.006395283195884535 is:0.006180941330883314 :0.38798142026100285 +of:0.1272236790604294 and:0.08634807241940727 for:0.07659505746999914 as:0.05741271559486741 with:0.056757232566543046 is:0.0548728425128229 to:0.0504612499159299 on:0.04919925806167803 was:0.04560238227347624 by:0.04261003300365662 in:0.03662138916966302 that:0.034742262084513524 made:0.02173648332094068 at:0.02023566204894848 such:0.01918399379808619 from:0.018792831966988686 be:0.017946610765671507 than:0.012037990523360636 not:0.011733148911909075 :0.15888710453110827 +:0.11543784020714316 .:0.019451068005701535 it.:0.015871718700220076 them.:0.01210012750236315 him.:0.0077152068169331674 country.:0.007354663732164218 time.:0.007348489726849052 day.:0.007193836547134693 year.:0.006116904518773679 years.:0.005626730280479825 work.:0.005206202862765511 city.:0.004729067960694823 etc.:0.004634698717047007 place.:0.004608291743862527 States.:0.004460543784743756 people.:0.004429386781998217 State.:0.004316195058355215 life.:0.004301949561290754 night.:0.004152770165037465 :0.7539443073264422 +:0.1275418353893615 it.:0.01947684847662108 .:0.01658584046180636 them.:0.013870159130041816 day.:0.010140373797151622 time.:0.00888290098084118 country.:0.00852008605398955 year.:0.007881275020833323 him.:0.0077193133265948035 city.:0.006516495293581419 of:0.006355280653541415 work.:0.005774255380641642 sale.:0.005764566036086839 years.:0.005728546901038852 States.:0.0054614311650188286 people.:0.00469741660019462 place.:0.004598854752714368 world.:0.004584213809091662 law.:0.004495498113014481 :0.7244048086578346 +be:0.321688592281886 was:0.11751852470806116 is:0.10093801491273124 are:0.08469413481759759 been:0.06652382034322198 were:0.04412983312878656 not:0.03436048721088587 and:0.03140603676005147 being:0.028590736745972643 he:0.022753001535998595 bo:0.015619621776447469 have:0.014582261981396236 disbursements:0.013068173173503913 Is:0.012486826906529977 it:0.011747593591329047 has:0.01134998017853992 had:0.008888186212322539 or:0.007893183524082 I:0.006961921450791357 :0.043799068759864355 +the:0.11500545585881412 of:0.0897605566703555 and:0.07914879987306167 a:0.05827037833039227 to:0.0386987683614473 was:0.029282661483795363 be:0.023890810389268442 is:0.02056818843792312 been:0.017204803150083207 or:0.017094944717067368 in:0.01610392931760865 are:0.015798243080240505 his:0.01344187865263006 at:0.01321973597799718 for:0.01304287912725108 their:0.012337012043366955 were:0.012236169772424844 :0.01133284696603621 The:0.01095822742659897 :0.3916037103636372 +and:0.05814936527426264 made:0.026494842759396366 as:0.018301371100464134 was:0.017386594947636266 is:0.01568627661492849 not:0.014930016240672481 but:0.013156670134787463 one:0.012733948396276043 given:0.012454722926830124 him:0.012399803296718899 out:0.012173709255514044 place:0.01216880382964735 be:0.01150990862136641 that:0.01038122834996604 been:0.010190238166985614 up:0.009759756290804118 land:0.009658469036715567 tion:0.009599918421120887 ed:0.009403435408752464 :0.7024609209271546 +be:0.17731785587098664 more:0.17064441284092702 been:0.05333083583426238 was:0.04777070075614027 is:0.043312630854702334 and:0.042654363078281986 not:0.035329260990199146 it:0.03318402465792087 he:0.03202234268560706 less:0.03116025940554805 never:0.018357084815588398 have:0.01811178067008138 ever:0.017302594803210523 further:0.01632360533507453 had:0.015444137425302073 has:0.014230119141087362 are:0.013370522343774316 nor:0.01281195163197531 that:0.01260217064469716 :0.1937193462146332 +the:0.2628965128538198 other:0.15192843559536517 of:0.06043259183998726 all:0.05238486074566627 and:0.04755290503720996 a:0.0368388650689538 or:0.03344714407297487 this:0.025433459699670077 tho:0.024100632795496586 any:0.022436209187151303 different:0.020084521639391065 on:0.019321512090499614 that:0.018071682413587684 qualified:0.017111222744763656 some:0.01543668525752827 by:0.01411936191997438 for:0.013483178493064431 The:0.013132552550795257 every:0.013073410976402588 :0.13771425501769796 +the:0.16414123864389754 a:0.06540016139733415 con-:0.06169097182542557 The:0.04970381596310329 this:0.04504418628937177 This:0.039563896633396975 that:0.031343711242057516 said:0.026410114040918205 of:0.016119148666857718 and:0.015873347216187602 acre:0.01570332575393469 con¬:0.014715384328288618 con­:0.012900939264732533 General:0.010358508127125798 A:0.010322828472052289 in-:0.009001253962235483 or:0.007942461432655448 tho:0.007916198623974842 certain:0.007144808160412233 :0.3877036999560377 +the:0.1601734929003543 of:0.13112955233187845 and:0.051371910373967114 to:0.051165338239959585 a:0.047801986355274884 in:0.04779475267457271 that:0.02605657593283066 for:0.02190012128142276 be-:0.020864382434664243 by:0.019620590396013313 from:0.019225461313202363 which:0.016443920821373477 In:0.014508880455891488 or:0.013290526612334902 as:0.012740885326294455 on:0.012441465412340747 an:0.012276562487514698 :0.011868100153115525 at:0.01021204520646288 :0.2981134492905314 +and:0.09756556368541265 was:0.05426276517937397 is:0.03866664491042744 up:0.02568624008661788 it:0.024967480530237875 made:0.021983496168589956 put:0.021728272405609952 placed:0.021433399872469706 that:0.020699896774439272 are:0.01933805732185307 them:0.019230578399337284 him:0.018697869349579923 be:0.017987018805625865 but:0.017054981134282398 were:0.016928399532571015 as:0.01666685808038748 engaged:0.01649642158281899 found:0.01526160066577768 out:0.014987717957962178 :0.49935673755662546 +and:0.11407116966175274 of:0.07107079484512498 the:0.06656730291979027 to:0.05335924540680701 be:0.02740068005735919 a:0.02260417818487592 more:0.02213765112741375 in:0.02051572430464391 was:0.01921309187923535 or:0.019187461572761966 is:0.01905977581138103 for:0.01903629630887901 that:0.01789181571214341 be-:0.017434743418629745 are:0.014819956712198552 with:0.014357000995703835 were:0.011289330063959966 will:0.01101235889555647 other:0.010533063132933779 :0.42743835898884913 +the:0.649809706210141 The:0.05432389590024939 tho:0.03601694838297663 a:0.03015815332983722 and:0.028155718210410137 tbe:0.016537503292940618 assistant:0.014046071275417045 or:0.011418564302422248 by:0.01119494978695971 of:0.0068072102756830824 in:0.0046697897374103564 for:0.00440668878738535 an:0.004122908950565059 that:0.0037830853969119172 few:0.0034821269040275506 late:0.0032200603740508626 on:0.0031881954466696427 :0.003108470301880008 :0.0030770262945501656 :0.10747292683951208 +of:0.09129790931378902 the:0.07369883040827747 and:0.047842263382354346 in:0.04189055351593407 to:0.04045875475680249 a:0.03542341257202578 be:0.02020462051672066 for:0.01979292654746225 was:0.01760256398103379 at:0.017380150555488715 is:0.014984483003968216 with:0.014047653760730413 by:0.01374644383819499 :0.012670486581795598 In:0.01200961464556976 or:0.011563835749786333 from:0.011391516893522809 are:0.011273104484969465 that:0.010755276030689069 :0.4809655994608848 +all:0.07278771267501256 it:0.054174208981809885 looked:0.041981632935957566 arms:0.03328722373091472 gathered:0.03299200973510747 look:0.03197087155150886 looking:0.03166309465869001 turned:0.0244742528895232 and:0.021952990722621402 get:0.021491398620012484 thrown:0.0207058260225535 passed:0.02062091238760663 turn:0.017200989015797072 way:0.01531953603950311 ran:0.01529402293643528 came:0.015279353078220842 go:0.014950444603926437 run:0.014082661084453905 miles:0.013922354575075666 :0.4848485037552694 +is:0.25639116094107184 was:0.15008061956824764 are:0.13038823867352473 be:0.08674298621546836 not:0.05069332484861146 were:0.04620474193470905 Is:0.035419106037069825 been:0.030352704495276325 and:0.029972646327353598 it:0.0241066476039655 have:0.016423772622745157 had:0.015030608786648492 has:0.012562646116611653 being:0.01231320171937684 so:0.011917407833645536 as:0.009402500115269547 am:0.009271214428779562 made:0.006733995195920008 but:0.006214145234995763 :0.058778331300709134 +to:0.4976198747513117 and:0.06362210590926291 will:0.0429108103376659 not:0.03752277738341807 To:0.030434609023457883 I:0.03012398155105421 they:0.02886533506286166 can:0.022130351276213166 we:0.01896767363188897 you:0.017355238438877738 shall:0.016315936792560142 would:0.015820255091962797 who:0.01570835681546171 may:0.014096078805987363 or:0.011311536229531816 They:0.010497690447640552 could:0.009350232176406383 We:0.009192538134730777 the:0.008571214165848537 :0.09858340397385772 +and:0.23692251251258453 he:0.0622442270373183 be:0.04932366508944727 has:0.04719723768091582 had:0.04653805678507527 have:0.042090497937375945 who:0.036181318967019226 was:0.033167201888593116 is:0.029578164422113144 they:0.02359508639558122 He:0.02131471244847722 are:0.020152404674797005 steam:0.018733113953171586 which:0.018720173256094572 not:0.01852182463947426 as:0.014863073106931628 were:0.01447214244010849 it:0.014116966418541098 will:0.01216785343516113 :0.23909976691121917 +is:0.11552077767259264 that:0.10822058694723778 and:0.10202650039973733 have:0.09390002675161845 had:0.07266157341191194 was:0.07044345375541915 has:0.04322547164616621 but:0.03563707105157151 be:0.03551036784081277 of:0.029547822988403763 made:0.027272908191761723 for:0.02381980353210624 will:0.02376741972231223 in:0.022952801431789415 with:0.020927904836060697 which:0.01710532468487489 are:0.017080933925571386 by:0.014358716431573507 Is:0.014131346898324076 :0.11088918788015428 +the:0.09684081064840576 and:0.06551335624548284 of:0.05146145169206151 from:0.049520598669154245 a:0.045427902131977435 to:0.0370403239153822 be:0.035669151526387034 was:0.030489628475080553 is:0.026635804908522978 in:0.023878514238638158 are:0.018513936943033917 not:0.017945708099223703 or:0.017556265685966497 been:0.014265228721347686 at:0.013857211504087178 he:0.013733215789660087 were:0.012396679125422956 I:0.012347944480187516 for:0.012197989992860347 :0.4037082772071174 +was:0.13041871978125436 be:0.11455665764972722 he:0.10120050715223328 been:0.07134920459251202 is:0.05028232426526252 and:0.0400239210902034 had:0.036481653336778816 were:0.03189327934320254 who:0.0312594151491814 have:0.030531644941339194 has:0.02572132603468069 are:0.024788099923951368 He:0.024053644931822098 above:0.019275699560455016 as:0.016635002674946848 being:0.015534531955492672 I:0.011841268861763052 they:0.011772359426194317 hereinbefore:0.011560682364165359 :0.19982005696483385 +they:0.10114786813218189 who:0.09669161213609892 and:0.0654574451334951 which:0.043133888565849286 men:0.042127080145511 we:0.03992645860569161 They:0.025943670042830175 that:0.023199490427146245 people:0.014916897760685508 as:0.013385781681157859 We:0.011551403707669215 there:0.011214410833690182 guests:0.010319535503559792 I:0.009884659174283727 you:0.009677904728695275 whom:0.009501966226085989 women:0.009311084311077203 others:0.009117204137401138 he:0.008755046981029644 :0.4437365917658602 +to:0.6758616936336641 and:0.0888091673566657 will:0.022772489126615968 not:0.01940888074312404 in:0.015255151114282307 for:0.012035467641566731 that:0.010362257519973833 of:0.010007304051595113 I:0.008643284982983637 can:0.008577761359091786 To:0.008380087663893596 would:0.007969561187521053 by:0.007669417320096359 or:0.007610390777394261 In:0.005833791370623791 could:0.00576633766554402 they:0.005740642269531759 shall:0.005516311498286582 at:0.004867505129373106 :0.06791249758817222 +the:0.11919516938815296 of:0.07230453158552728 and:0.05781056740443249 a:0.043018564803886335 to:0.031305092790907506 in:0.020848713353460488 at:0.014270110001066288 .:0.012526810245749479 :0.012413283442322082 for:0.011719122709941797 by:0.010808400946589808 or:0.010404172990115616 The:0.01003576004804544 with:0.009811868184449042 tho:0.009295902015355835 was:0.008924239095331684 that:0.008672304223433876 is:0.0085591147338948 be:0.008335143826716943 :0.5187411282106204 +the:0.20402614859123597 to:0.2014568520553374 his:0.09637810732746128 and:0.05207967864607415 a:0.04154935524363889 their:0.04136204143189427 her:0.0396443799420071 not:0.034095279813307004 of:0.033095267529122896 or:0.0292633033153593 in:0.024850837441009032 my:0.014465356716410579 The:0.014243204990199038 its:0.01366433233678937 for:0.011718889139805273 tho:0.008859749025407615 will:0.0084594273909129 would:0.007912620312897816 all:0.007828706493447747 :0.11404646225768235 +Young:0.5310038400566889 the:0.08935979652289636 Business:0.03649754923462546 and:0.015289981910818363 of:0.014411247429235809 A:0.013208291752682419 a:0.012610158049758867 :0.010559483072239797 New:0.009420919956121055 The:0.008061056676285362 Grand:0.006385898345112293 this:0.005717854650713046 for:0.005600933032575524 in:0.0048830016102646015 St.:0.004770093739134132 on:0.0046621948287261725 that:0.004495918395782339 City:0.003958795397590252 .:0.003934751239423569 :0.21416823409932564 +the:0.11274823966931571 and:0.08329996793360815 to:0.062372082173126384 of:0.05346002906215973 so:0.0299749817344208 is:0.026294180790411077 be:0.020260006954324915 he:0.018124449911071136 was:0.016351044211737983 re-:0.01567649125103956 Mr.:0.014726716630740086 in:0.013675410003338988 for:0.013272602215284653 a:0.012159264338821467 I:0.012040910229586727 or:0.010977326121126826 :0.01035107289213954 are:0.010219913969554774 not:0.009881708091297656 :0.4531336018168938 +a:0.2905209565048916 the:0.1062548285122239 and:0.08968574624646132 is:0.06834565622790675 very:0.06279740088563375 was:0.043372856904686605 are:0.030612907912571444 of:0.028577034760841197 most:0.026338852559238745 A:0.025965438925898008 be:0.016950533371045903 for:0.013562855039423633 his:0.013102256872165511 been:0.012978423357032618 this:0.012294066197482223 more:0.010464093306492154 in:0.010071864397628295 so:0.009919511134708079 their:0.008954947765970507 :0.11822976911769777 +and:0.07705437548817387 depend:0.031536193375950296 based:0.03144111872793531 placed:0.030957065963502946 depends:0.03075765919212402 called:0.030155936973754766 down:0.02681736716319054 made:0.026577710722022318 effect:0.023344764020024934 that:0.02149799173318628 look:0.02036076372291408 due:0.02026744173692952 call:0.019789339473829694 levied:0.01970103437603757 imposed:0.018928989316509288 put:0.01802119246063272 dependent:0.01689647076264392 out:0.015342186135269933 entered:0.01437601109950992 :0.505176387555858 +and:0.06997218228459136 be:0.06061620348440502 to:0.05772697860732012 was:0.048334596645631195 of:0.04280739765529176 the:0.03254285078036999 is:0.02919230551940765 are:0.026998212424039936 were:0.02652036840922002 been:0.02546165479998583 in:0.021935788024046374 for:0.01640397938507483 not:0.013844125551443171 he:0.013442894893424236 being:0.013232390299229273 I:0.012975387911294978 on:0.01237122632659701 re-:0.012082706492975872 :0.011716353220269001 :0.45082239728538237 +is:0.26578122590242514 are:0.16980708896300356 was:0.11718841302560984 be:0.10529827249597681 were:0.0457208303800615 it:0.035868726440340164 Is:0.03132722602764743 been:0.029290536590628434 and:0.027769158499869454 not:0.02531310713130147 have:0.022245556854441455 had:0.013507303163880807 has:0.012154822253310093 being:0.0112142122023453 as:0.00936492709249808 do:0.007968529843118891 am:0.00766616588565144 found:0.005762180872653316 became:0.005367420334398181 :0.05038429604083866 +was:0.10669621918893385 be:0.08672455669580331 is:0.06268385543778024 been:0.060004211263237545 of:0.05806346289152977 the:0.05561031632376453 and:0.05478245888320167 were:0.03650149097370809 are:0.03512707232055946 to:0.02921838956430559 not:0.02796932548783984 a:0.026137572766799046 being:0.015129333010385814 in:0.013826119796531961 or:0.012509196004623286 for:0.011238467904100331 as:0.009468361531379322 Is:0.008995645703930237 he:0.008246818596241299 :0.28006712565534475 +the:0.11919516938815296 of:0.07230453158552728 and:0.05781056740443249 a:0.043018564803886335 to:0.031305092790907506 in:0.020848713353460488 at:0.014270110001066288 .:0.012526810245749479 :0.012413283442322082 for:0.011719122709941797 by:0.010808400946589808 or:0.010404172990115616 The:0.01003576004804544 with:0.009811868184449042 tho:0.009295902015355835 was:0.008924239095331684 that:0.008672304223433876 is:0.0085591147338948 be:0.008335143826716943 :0.5187411282106204 +part:0.062325847554271264 one:0.06063111468590399 some:0.037306181508129276 out:0.030654329894436005 members:0.022088577251346518 and:0.01924141362015411 tion:0.018787037941101363 portion:0.018051689715010356 side:0.017943951891416163 that:0.016507907061938807 member:0.01593843659970584 office:0.01574566960076909 majority:0.0154104008831532 front:0.014054186394075671 parts:0.013607560627939948 payment:0.013458169751259314 all:0.013339146994107673 end:0.012284189708442875 time:0.011200658322325753 :0.5704235299945127 +the:0.11919516938815296 of:0.07230453158552728 and:0.05781056740443249 a:0.043018564803886335 to:0.031305092790907506 in:0.020848713353460488 at:0.014270110001066288 .:0.012526810245749479 :0.012413283442322082 for:0.011719122709941797 by:0.010808400946589808 or:0.010404172990115616 The:0.01003576004804544 with:0.009811868184449042 tho:0.009295902015355835 was:0.008924239095331684 that:0.008672304223433876 is:0.0085591147338948 be:0.008335143826716943 :0.5187411282106204 +of:0.17012490875962286 to:0.10796286188755846 in:0.08311303595089722 or:0.07163606710829869 by:0.04888489165025855 than:0.04236698308180558 for:0.03773801166854793 at:0.033900647265216945 without:0.03384120208014357 as:0.0318445598213864 that:0.0312161480000952 with:0.029930910508528374 from:0.02355501825786872 and:0.018940767001868874 if:0.018621566694873224 on:0.018234571547249168 have:0.016312595032769602 In:0.015331994868475073 be:0.015147328907862013 :0.15029592990667354 +J.:0.07082381729456454 C.:0.06422289338629616 W.:0.06394572131336697 John:0.0623529753220447 .:0.05889458281845319 James:0.039208217482882855 Mrs.:0.03598842112999452 William:0.030343776312509833 Mary:0.026076079283425754 F.:0.02577056717850156 Charles:0.025645276488961317 E.:0.02544165013562007 A.:0.025077243018083135 George:0.024178230245776 and:0.0224562010022046 H.:0.021456914206886803 G.:0.020716110973310324 R.:0.020362090551017006 M.:0.01898707495184047 :0.3170521569042602 +and:0.13194620777843266 he:0.10471479909429204 it:0.0783532033414083 is:0.04034726235786851 I:0.0353911409205719 He:0.031243488086318747 was:0.03018051336661592 she:0.029323192076961206 It:0.028885019129920315 had:0.01994340494387707 has:0.019622902412792114 as:0.0190060828029682 who:0.018978551856974973 be:0.018259985687189947 have:0.01773537720958149 that:0.016929028446982696 which:0.015024847079260002 also:0.014437401713052342 This:0.014221508490092639 :0.3144560832048389 +as:0.08933308598407283 up:0.044117122492048674 went:0.04266364231950114 and:0.04129315570930867 came:0.03282026945686714 returned:0.02786533594293225 belonging:0.025915378689558413 back:0.025631199046995533 feet:0.02394064878029447 referred:0.021980203608299224 go:0.021616587995268922 them:0.021415878556256453 him:0.021111922834896824 was:0.018353036604722022 sent:0.018175046458579428 regard:0.01804343368197578 given:0.01779932089700442 come:0.01706661826497906 according:0.01646859848630605 :0.4533895141901327 +he:0.10597730602128762 who:0.09329894193674071 I:0.07759723402415239 and:0.05461950308551505 had:0.05302543128467011 they:0.047629850529189145 she:0.0368015108291562 He:0.03481130405013827 it:0.030951237100387954 has:0.030297233423853397 have:0.029601760295941797 was:0.028261603250798826 be:0.02521054704891894 we:0.022464848587581326 which:0.02143291302245308 It:0.018540534416515222 They:0.012814967239400578 were:0.011720634494728661 She:0.011230549909363643 :0.2527120894492071 +the:0.16807735899698817 of:0.10541662057906837 and:0.05138367848570702 a:0.04141865232648221 to:0.0385989743764065 in:0.026264864977736738 was:0.019530675665220657 his:0.018900421021236905 be:0.017373825006196972 their:0.015767721170721456 for:0.01557246589796783 with:0.014071419046630446 is:0.012922913111931644 at:0.012690452250034052 are:0.010702713108721902 .:0.010158075558988393 Mr.:0.009672788574483367 tho:0.009612591781990074 were:0.009549306361446321 :0.391314481702041 +the:0.1250629478126734 of:0.09262979944837846 and:0.06453965580111957 a:0.0515931420115542 to:0.04288732340017343 in:0.029736363774722885 for:0.016783965351800545 at:0.015523002427693921 or:0.012600032948334857 with:0.011709173225572635 :0.011677402911579853 .:0.010260904228644308 his:0.009670724308699195 on:0.00949965639636269 The:0.009367064932898711 is:0.009231918618327072 tho:0.008755143164828897 In:0.008717811415924039 I:0.008103462399590809 :0.45065050542112056 +and:0.11986743234285159 that:0.08678117148381559 as:0.08257224065822068 which:0.04260805500985111 when:0.027972933619183227 if:0.024411438068628045 but:0.019415056682126848 If:0.0115851297944299 while:0.01117399947822388 then:0.011157351183155908 And:0.011034843387210029 where:0.010955847166248646 was:0.010803504919520165 what:0.010716399603337395 is:0.010666633252128853 until:0.010539170123413839 As:0.010480506489970271 day:0.010402359319884582 ;:0.010263710427721206 :0.46559221699007824 +and:0.10827217295018174 he:0.08605298908852264 who:0.061019580830865144 it:0.05069453163484351 He:0.03706774956902684 that:0.033068083353831754 which:0.03164453253235915 It:0.029767289691212836 they:0.027085620899509003 she:0.020408145134862995 there:0.019652177029020893 I:0.018016747563135014 or:0.013945602935844055 two:0.012726112358621876 well:0.012472405273337346 these:0.01105265249577772 we:0.009282571694690987 one:0.008862189681653589 the:0.008811859667314518 :0.3990969856153884 +to:0.5337322946325576 not:0.09459394379815872 will:0.07126656533997872 would:0.06505132890553068 and:0.05197654719114495 may:0.01707059410104596 must:0.01572298540872825 I:0.01465106633672999 we:0.012322796091487393 can:0.011283680869557569 never:0.010999764864546102 should:0.01078211522511251 shall:0.00958265830155272 could:0.009448340818162544 they:0.00706999466610313 cannot:0.006837277188041688 or:0.006499090039575616 thus:0.005501876339673822 might:0.00514726531065883 :0.03945981457165325 +the:0.2617930836311979 minutes:0.17607981722399785 thence:0.13195782490757932 degrees:0.0887133553005922 tho:0.0223699004546018 south:0.017743626490792603 and:0.017604249089629258 The:0.01524218906712643 south-:0.014045201900556062 seconds:0.012918988973110206 utes:0.012216815355400739 grees:0.011089972789473958 north:0.010226390302136342 :0.009848528182195485 tbe:0.008745192554991192 degrees,:0.008523284179582336 north-:0.008502040412370642 deg.:0.007880197953135154 feet:0.007514490991005507 :0.15598485024052497 +for:0.2846661725206224 of:0.08713468001939685 in:0.0741433219172681 to:0.06131468717213704 at:0.05347727834228437 For:0.050910781097110495 and:0.04075565341065709 that:0.03720959850330531 by:0.03445313463959296 In:0.027310534639122468 from:0.018809866742236257 was:0.018187602086335245 take:0.015620900337759341 with:0.015349636800132675 spent:0.014591070626776673 or:0.014071020179601787 about:0.013535492233283035 is:0.013051057757767211 have:0.011623175808287456 :0.1127843351663233 +was:0.09169160258321465 and:0.07688029912067439 is:0.06460488531267686 be:0.03838597167509508 it:0.035410599339765765 the:0.03474630379285313 have:0.03373226971059976 been:0.033519615390217576 he:0.031288294901956566 has:0.02949650955854143 were:0.02881250282734748 I:0.023556795456351632 are:0.02278840465777083 as:0.021899071086477595 had:0.020236266446860874 that:0.0177091962192875 of:0.016054265560571445 one:0.014711432660647382 It:0.009991279500036332 :0.35348443419905373 +a:0.43050059950794944 the:0.22911784816936526 of:0.05484595354682598 The:0.038144683429999215 in:0.031749827865945664 with:0.027449954434008085 and:0.023668153713669836 no:0.018160003963182868 A:0.012134633670350226 an:0.012054191810360194 tho:0.011842320165977643 for:0.011269802227040866 by:0.011174807844746228 or:0.00885359422615238 is:0.008563369205057663 that:0.007532455323061731 very:0.0071679408365458285 this:0.007080535136941567 was:0.007016171437506276 :0.040673153485312974 +to:0.08034344102784367 and:0.07559770811618696 of:0.07556417531451855 in:0.06430708336571542 was:0.0433904303290245 the:0.03714196666882291 is:0.035489587378076955 be:0.0327312593685656 for:0.026390414838272 are:0.026389447141360618 a:0.022518133573586962 were:0.020827030628718577 In:0.01908623855113952 will:0.018588649062266573 or:0.015820867600591017 with:0.015642320946412592 have:0.015541197933978465 been:0.014201070507074713 not:0.014037796634584664 :0.3453911810132597 +and:0.10935077871393015 to:0.09974470601657488 in:0.04770933747766497 I:0.043974628132464236 of:0.030442022038546176 re-:0.028540866157685297 the:0.023866443491138277 not:0.020593618285987214 he:0.018544437167566152 con-:0.0183517907623287 have:0.01740075544530464 be-:0.017157118479826913 In:0.016995344224664564 that:0.016769555726257743 will:0.015922187817155358 so:0.01577081618451794 for:0.01509819693394912 as:0.014460892700366497 it:0.01441820113831821 :0.413888303105753 +the:0.39749834532651884 a:0.07520030034269234 and:0.05540858759821703 The:0.03273515726769502 tho:0.030061875542463562 of:0.020144331424922633 tbe:0.014929647509541684 in:0.014268129706664795 or:0.013333166761078447 .:0.013287381914101323 an:0.009000188755386574 to:0.00880680429595084 :0.007943763822197133 Mr.:0.00773879605474787 by:0.007328417831573476 as:0.005922572098978465 for:0.0047526933692942485 that:0.004736121968310169 on:0.004594595720579333 :0.2713091226890862 +the:0.17027190784407714 of:0.10585557835912704 and:0.07355927771906935 to:0.05486905984958157 a:0.04543746377447453 in:0.03128555052933153 be:0.028704485173100775 was:0.02350529800142253 is:0.02215549335554494 for:0.02077556258358175 his:0.01804639098945333 or:0.016335100594594944 their:0.015847999621030492 at:0.015526727957625254 been:0.011815834631173878 are:0.01139058447814694 this:0.010362020528084328 tho:0.01035635773045807 its:0.01000473355720393 :0.30289457272291764 +;:0.01728503724290684 it,:0.011083247175262552 him,:0.007874485841475667 them,:0.007872372597881986 one:0.00734116518537543 years,:0.00654765591957528 ,:0.006465475987305211 county,:0.0057592068985032096 city,:0.005649947156005024 it:0.005183738211984001 :0.005086501960041609 up:0.004990791859445371 here:0.004911433071310691 time,:0.004710649686386755 him:0.004691333341702117 year,:0.004652774579796443 States,:0.004651113555906939 in:0.004347352099160303 day,:0.004340578540385537 :0.875555139089589 +:0.08921269789765822 it.:0.020431680494296344 them.:0.015727791157572394 .:0.01052405677539611 time.:0.008578927786443036 country.:0.008550230542826463 him.:0.00807024366870027 day.:0.006827814150331872 year.:0.006304788438267449 of:0.0061226400005268055 work.:0.005975285151054181 people.:0.0056262655295429885 city.:0.005193625844622487 place.:0.004590005402142931 years.:0.004444657402066478 life.:0.004443839703800754 world.:0.004250580809698222 States.:0.0040287233077736006 tion.:0.003745876759204638 :0.7763502691780748 +and:0.12438451827363098 that:0.10846359612745074 as:0.062189540614026755 but:0.05212368150787554 when:0.04953659603374089 which:0.02868754012576373 if:0.02559717126552173 When:0.021907172396721106 what:0.0203481430737416 time:0.01672140531764414 If:0.01279700780213428 :0.012737431918923535 where:0.012414605162942067 me.:0.012182900028611922 it.:0.011362543368153207 But:0.010763556018381838 whom:0.009706896657852656 before:0.009446404542007951 Then:0.009304846710761639 :0.38832444305411373 +and:0.08431273243034522 of:0.06749471455515324 the:0.05955607750576761 be:0.05380497964316464 is:0.03903174461984568 was:0.033806978354327034 to:0.028030837418752546 in:0.025243446026274423 as:0.020517165317003573 it:0.019329079912069762 are:0.018543373427273392 he:0.0182014725603489 I:0.01760283606544912 a:0.017252002428919336 that:0.015791492463130566 which:0.015098664005446183 been:0.014771728908539292 has:0.013314288114267495 de-:0.013085407068422367 :0.4242109791754996 +and:0.13642156130205 of:0.10917723496922213 the:0.08402077117016336 to:0.06622563121371125 a:0.030085911521179697 in:0.021682628095860388 that:0.019891808195680323 as:0.01897301631480356 or:0.015952273202863854 for:0.01575177837758657 be-:0.013793862558246545 with:0.01261954019297298 :0.012611040810437716 which:0.010894649830542662 by:0.01032750264443292 at:0.00964720904622525 from:0.009088841679130362 said:0.00885632694019406 will:0.008677510394090003 :0.38430090154060637 +the:0.12996162664141983 of:0.07252159050773845 and:0.06783449587833626 a:0.038579403938654236 to:0.02791938558626818 in:0.023722717519886503 by:0.021308315946615516 for:0.017890481441726835 .:0.017602580527337704 :0.014769588974986753 tho:0.013535443873849296 with:0.012416086600896548 that:0.012412994141153762 at:0.011875219495268066 was:0.011127960855467274 from:0.010611160721419648 Mr.:0.010540027930086432 is:0.010249088646022392 or:0.009962618320669876 :0.46415921245219643 +the:0.49899699011663756 an:0.0840228124871443 a:0.06546431022521784 of:0.04114887299895374 The:0.02655603300783954 tho:0.026286069641349444 our:0.019139684241148435 in:0.017618353576707466 good:0.014169792035402438 other:0.013858016139840786 and:0.013242124477343653 new:0.012534384069539935 most:0.011839589191254545 to:0.011356135040164798 by:0.009562732371499507 every:0.008984181796450018 his:0.008780986310073569 tbe:0.00817154670250071 any:0.00739593640033891 :0.09987144917059276 +the:0.1549390753599655 and:0.09066843362174648 of:0.054350538555775436 to:0.04292610651957916 a:0.027885029756088725 that:0.0223676071260674 I:0.019122154222543767 .:0.01582892421271687 will:0.015676714940327373 The:0.015144027777566597 in:0.012658756235253378 would:0.012131658231455325 Mr.:0.011965480540949374 his:0.011907539427136158 :0.009929326538979395 he:0.009811685443341009 at:0.009671617038603935 tho:0.009075737042940481 for:0.008995615478696923 :0.4439439719302667 +the:0.18203253765429364 a:0.1251127849247451 of:0.07664163909142108 and:0.05302675148573752 that:0.02609818434685039 in:0.024355605855874304 an:0.022145304141769614 The:0.0190202295857321 to:0.018974172488898773 which:0.013463788175172027 any:0.012439591480908204 as:0.011351082775165354 for:0.011345119830882204 tho:0.010818431029672003 some:0.010253602333460744 in-:0.010197662849431213 with:0.010075972524972231 most:0.009166406786797967 on:0.009017581787506206 :0.3434635508507093 +the:0.11919516938815296 of:0.07230453158552728 and:0.05781056740443249 a:0.043018564803886335 to:0.031305092790907506 in:0.020848713353460488 at:0.014270110001066288 .:0.012526810245749479 :0.012413283442322082 for:0.011719122709941797 by:0.010808400946589808 or:0.010404172990115616 The:0.01003576004804544 with:0.009811868184449042 tho:0.009295902015355835 was:0.008924239095331684 that:0.008672304223433876 is:0.0085591147338948 be:0.008335143826716943 :0.5187411282106204 +the:0.14669536459783142 a:0.14420558367952693 was:0.08254570055409037 is:0.05643244392363464 and:0.053209207640807187 that:0.03974182792461183 are:0.03728923930467409 but:0.03493873880292913 be:0.03279904099747617 The:0.032471057966076994 of:0.028539177224686095 were:0.02542409410659838 been:0.023178613548367907 not:0.022568556840257534 if:0.0220855827295567 so:0.018374597649075914 when:0.015041269097587733 in:0.013047704516209162 A:0.0128778564789247 :0.15753434241707706 +the:0.6488189055066312 of:0.06888026164944071 a:0.05497372904810727 tho:0.02799945230843292 every:0.016759837176409956 and:0.015676950643531803 for:0.014969272946051382 The:0.014109648556876301 this:0.013363545532549701 to:0.012659421391306613 their:0.012074891120353162 one:0.010375267442817184 his:0.007441750011462952 tbe:0.006582696439961526 with:0.0063621862212362825 as:0.005912272163345762 its:0.005202871201903583 our:0.0046457607200731535 any:0.004586309735033581 :0.047604970184475015 +is:0.13030857312070512 was:0.09680652415447637 are:0.08201999923717347 did:0.0790595326303509 do:0.07215816208255724 could:0.05799031418203049 and:0.0507887508926188 does:0.04864229928982388 will:0.04854640933576163 would:0.04155227816171379 were:0.03888568717480415 had:0.022728217386867866 Is:0.02002134604877732 if:0.01835653530257919 but:0.01782471105297468 have:0.017598658880332844 has:0.01671622045559762 should:0.012750134334889756 shall:0.01175599227108347 :0.11448965400488138 +the:0.2660575043292539 an:0.08033398535253918 a:0.06646137132549589 to:0.05699715385748634 and:0.050634082948628215 his:0.043940398056204914 per:0.023007062088886178 from:0.022755912746087088 my:0.02226371180661833 in:0.020763067747295805 of:0.01974621957731466 tho:0.017097307917717307 The:0.016230743177199226 by:0.016220847279756232 will:0.01101104149676478 their:0.01093038612580897 her:0.010696737418244546 first:0.01067187992956997 for:0.0101471795809822 :0.22303340723814633 +the:0.418603371288841 White:0.08772411677257305 a:0.04455974353484502 Opera:0.04007087294873045 this:0.037256228771526165 tho:0.017916557495586585 Court:0.013928357727130133 States:0.013549139720989723 that:0.01193245610625919 county:0.01163859367509774 one:0.009625880601276575 said:0.009494144574893051 The:0.008770103932525792 city:0.008278634064849685 and:0.008199984048190332 of:0.0074918329294278345 right:0.006976556631247431 tbe:0.006740225444671877 each:0.006721213454396707 :0.22952198627694165 +the:0.3446842723802034 a:0.2743585160889693 large:0.12144729823405202 The:0.045985455385237524 great:0.03630415150016561 tho:0.03188618375113363 one:0.01415017176130688 small:0.01161565071199183 other:0.010151501815716066 this:0.00865612698634973 tbe:0.00845251242612673 any:0.008382776012638616 every:0.007899911104707781 and:0.007287211898232369 high:0.007252591440051544 old:0.007235214281871661 new:0.006984290839290612 largo:0.0063990621414159446 largest:0.0062811907705096915 :0.03358591047002907 +the:0.4553329842351276 of:0.10161557112360828 in:0.06006805779937537 his:0.036037241516096025 tho:0.03063259145462445 for:0.023649211078140712 a:0.0200147326878329 The:0.018494320652495885 this:0.017188158831483124 their:0.01665694868951162 high:0.015583075856528324 to:0.015006595703685217 tbe:0.01390762598633174 our:0.013674118476887714 and:0.011733751961498189 at:0.01023678676178782 her:0.00996941599894339 other:0.009665169052678608 In:0.008573225624730231 :0.11096041650863282 +of:0.13517398848465897 as:0.09134236212646486 to:0.06560826943523014 for:0.06482390124982468 is:0.062366576145789714 and:0.05891613158051027 in:0.056981878859849885 was:0.05525421778537319 with:0.05158645321617888 that:0.0467796953140668 by:0.03808089317056675 be:0.029997120208529585 on:0.024814468490190214 at:0.023250059133194965 from:0.022207931200059615 such:0.018461367289213864 not:0.017335469376692565 make:0.0170109937447992 have:0.015855819667789768 :0.10315240352101608 +one:0.1028303141280697 part:0.05963429477052991 out:0.04766456937681193 some:0.031418679026461914 members:0.030764490253327767 side:0.029940657362655835 portion:0.022063658796890564 office:0.020457735219956013 member:0.019726706386316174 end:0.019666887540649894 tion:0.018667441728710307 parts:0.016814747270460957 people:0.014112771422418794 all:0.014072739582212475 any:0.013183573287639892 One:0.013083578354183906 that:0.013024335602903442 account:0.012482348155001894 many:0.012077825070275192 :0.48731264666452345 +more:0.5274807895588972 rather:0.1057946054166045 less:0.07606010830618706 better:0.07381668100438046 greater:0.016584406855334494 other:0.015349254834847403 worse:0.014631579973937887 and:0.009353542640771805 larger:0.006469748485866466 it:0.005283627940532769 moro:0.005124558236748205 time:0.0049883249649986675 longer:0.004818261399274521 higher:0.0043729690853615295 More:0.003362644788987288 cheaper:0.0032959924713233148 work:0.003182645280099161 later:0.002711060811869689 lower:0.0026702937807050156 :0.11364890416327254 +of:0.14063529019601506 in:0.11215226216117187 for:0.08077702300164868 with:0.06945692076573849 was:0.05422880462224995 to:0.05299903818348804 and:0.051721247705764334 by:0.044006300440874585 is:0.03843668205910681 had:0.032917621548529646 have:0.031275110995849204 In:0.026290574711180934 as:0.021558796989365702 on:0.01999267971877837 that:0.01962505629439278 has:0.01877571661109627 from:0.017118903763218014 be:0.01658179071740173 not:0.014775851285223324 :0.1356743282289062 +and:0.05824916276726171 of:0.04100804375590603 set:0.036425304004015925 was:0.03376182481260536 them:0.02255487072148447 well:0.02152072483558968 for:0.020622264009760263 .:0.019223947732976785 are:0.018484487591260982 been:0.018223957873964015 be:0.01742398836819592 were:0.01608926458020845 or:0.01606130237415561 is:0.015942036859016805 in:0.01470908213707017 him:0.014598045856518234 to:0.01382119735356258 it:0.01352051322071203 go:0.011866444367048538 :0.5748935367786865 +the:0.15483239913171654 Hood:0.13723480599267482 Hudson:0.05444696335442096 Fall:0.04044661316728667 Red:0.03506078720796894 and:0.03296283143302103 Mississippi:0.024585555872868477 The:0.021218263274872622 Snake:0.01958416679349205 Ohio:0.014651791747067124 Potomac:0.01421058913324497 of:0.013566170644388786 a:0.011214531409014003 this:0.009266903716612592 County:0.009249055894571674 tho:0.009011144540720223 Missouri:0.008815594261862599 York:0.00863350545361459 Pearl:0.007970999839372016 :0.37203732713120935 +he:0.16671502445696526 which:0.09153920101278057 and:0.06910288349532172 who:0.06332653872529359 that:0.049966572465596625 it:0.04787852738873014 He:0.04766820754705965 It:0.035671952849367895 she:0.019251197730385108 what:0.01414667328238995 as:0.013588779755964632 ho:0.012431208771596576 lie:0.012417806871420198 man:0.009968553006882977 She:0.009875496404994024 be:0.009137294584477304 this:0.0070929276066080404 This:0.006837676564082686 company:0.005871674372892856 :0.3065118031071902 +and:0.06812645359496844 of:0.05562043878144162 the:0.04565328811870784 was:0.0411467448591504 about:0.03513738075127145 be:0.03322577248582209 to:0.03189765958345185 west:0.02915125181407436 east:0.026636615075994234 in:0.024747451447534652 were:0.020380975273534496 a:0.01880923944685949 is:0.01862508177084662 are:0.01770808306260517 at:0.016927250726638785 for:0.01683731631314504 on:0.016729353452809965 or:0.014893157619178192 one:0.012846065529873484 :0.4539004202920918 +to:0.08307711069579293 the:0.06274454078308583 of:0.05642788253740947 be:0.044196268148690085 was:0.043242273228997874 and:0.04048190666624896 in:0.03839626864129764 is:0.027631302838362206 on:0.02673016380787129 at:0.026383450682612313 or:0.02432972932136257 for:0.02310377672333969 a:0.021095151147325523 were:0.018148796555312315 by:0.016925945122304536 are:0.01664004160558097 been:0.014529839875433371 In:0.011930024708034337 I:0.011140168046688421 :0.39184535886424965 +the:0.23938131433930548 a:0.15050398139348065 of:0.05417451429837229 and:0.04347676214748504 in:0.03658322993656217 The:0.034729255147919046 an:0.033097354486030725 to:0.018317009242472367 Mr.:0.014360846816900608 tho:0.013348494037980467 his:0.012705021184780414 or:0.011408142983614693 A:0.010388126315242267 on:0.009934847219207309 that:0.0097572150313592 In:0.008438871670696853 as:0.00780130502759924 with:0.007545257458787758 by:0.007318672764784764 :0.27572977849741864 +of:0.31571625725276975 for:0.11638685350362885 to:0.07511484474718395 in:0.0692310167754883 by:0.055844836833368314 that:0.055475949265017956 and:0.051576510601631806 all:0.03201744390775756 with:0.03145150752475421 from:0.02025979305373798 as:0.0190741246959137 In:0.017097234213606063 at:0.013402304798359918 upon:0.010017951632049089 on:0.009148760452693637 through:0.007376845303656373 or:0.006689157041838053 into:0.0066591855411898245 against:0.00634297327107351 :0.08011644958428112 +the:0.14097905379068107 of:0.07331087503882922 and:0.07181330996280533 a:0.05976433406615042 to:0.054517608548006975 be:0.027144583808848956 was:0.021670096559335054 or:0.017850176640821478 is:0.015691986615405103 in:0.01537689140487654 are:0.013527554375639277 :0.013345386361944066 at:0.012159230680710242 been:0.012083769908731407 for:0.012017580091645849 his:0.01156881653886233 were:0.010304989923631205 their:0.009881712923853423 tho:0.009488640365474152 :0.3965034023937479 +of:0.07248269119836963 and:0.047457770018679304 in:0.031978436142049 that:0.02273505296174239 from:0.01993417037691977 one:0.017887228088302776 to:0.014953130979489743 by:0.014000693116042547 at:0.012899631103202403 on:0.010746276195725398 for:0.010554566719594517 those:0.009968458800798293 but:0.00938347929042562 things:0.009208636550730905 with:0.008588158334506482 upon:0.007837842587296558 thing:0.006727198217150466 after:0.0060845234604507805 In:0.005902746212919232 :0.6596693096456042 +of:0.28767355066866834 to:0.08775711267569858 in:0.08678131196995101 and:0.05160598694501188 on:0.04646139928102899 by:0.04519522654900943 for:0.044547789071328545 with:0.03396756772609607 that:0.033699232901107726 from:0.03075346596941143 at:0.027039283056790858 In:0.021061449543044047 as:0.017514234937992545 all:0.012543839382496166 upon:0.011844431150487573 is:0.00998972746569266 was:0.008814315973987914 into:0.008557199930727406 through:0.007781895704231326 :0.1254109790972375 +and:0.107759951811027 the:0.09385054628072402 to:0.053968592559178824 of:0.04839262102953183 a:0.03414974603676544 or:0.03318673116183798 be:0.03175389045093506 was:0.03140859073457843 is:0.02975168873124845 are:0.020885392842301887 as:0.02076651179776067 for:0.016884632625619754 on:0.014442639049605903 that:0.01438151194192424 not:0.014020327477329652 were:0.013980754968364392 in:0.012885640133786371 he:0.012570044884247022 been:0.012104424672561334 :0.38185576081067174 +the:0.08860620254732281 of:0.08771234226848935 to:0.060322074750114967 and:0.054807183675472694 be:0.03674061401008578 was:0.03368015676220006 in:0.03131510561610864 is:0.0310703928833517 on:0.02891602760600153 for:0.025234384038477147 as:0.01719415907812996 a:0.01708947482848645 are:0.016060627216256906 :0.015968322892264967 been:0.015269206159993423 were:0.014884082404898602 with:0.014802606331829019 at:0.013274430269912403 by:0.013236768087829283 :0.38281583857277435 +;:0.013705675187003245 .:0.009578651624597012 in:0.008323518474376627 city:0.006404140925830723 ,:0.006357136710879055 State:0.006108356497954677 him:0.0059242461606307485 :0.004753424033517214 up:0.004752542787832931 :0.004538176348681958 man:0.00453039293787147 and:0.004305211143426673 1:0.004236464348952237 John:0.004082615669859415 wife:0.004039880995789228 men:0.004007519016822567 to:0.0037203533125010437 William:0.003475683727301966 feet,:0.003465733689334113 :0.8926902764068372 +and:0.10342858487618868 was:0.043996137836585555 put:0.03482561275568003 placed:0.03087285328791249 is:0.0243861392719748 that:0.024131185328925265 payable:0.021603779287495347 one:0.017823017241811033 committee:0.017658162107853946 it:0.017436709836733115 him:0.01714908100596311 based:0.016926771885753738 up:0.016588370988378 work:0.015972954162977976 interest:0.015466730164243091 them:0.015227078305738474 feet:0.014089696637711775 were:0.013984090927077359 made:0.01314163821856838 :0.5242914058724278 +of:0.28767355066866834 to:0.08775711267569858 in:0.08678131196995101 and:0.05160598694501188 on:0.04646139928102899 by:0.04519522654900943 for:0.044547789071328545 with:0.03396756772609607 that:0.033699232901107726 from:0.03075346596941143 at:0.027039283056790858 In:0.021061449543044047 as:0.017514234937992545 all:0.012543839382496166 upon:0.011844431150487573 is:0.00998972746569266 was:0.008814315973987914 into:0.008557199930727406 through:0.007781895704231326 :0.1254109790972375 +:0.05408755002078587 that:0.049531093299571755 and:0.026307747831082865 it.:0.023066050300906284 but:0.01604063510609521 as:0.013691133477483644 them.:0.013231826614228009 country.:0.010841946065548622 of:0.010487154798430135 which:0.009468692177853443 people.:0.008334614695462483 years.:0.008004416265567844 time.:0.007956347283674411 If:0.007858697640010603 him.:0.007413514011734311 year.:0.006977232836926869 for:0.006851092903969388 life.:0.006064905382420001 .:0.005982979647669748 :0.7068023696405785 +to:0.6905183433102913 would:0.06347076253097857 will:0.054207236844579766 not:0.03378258425694648 and:0.020613699759539698 can:0.018250939907655875 could:0.018066591817081458 may:0.015646104895870556 should:0.012715197332488297 shall:0.010951843430708557 To:0.007956037815032242 must:0.006812048355312623 it:0.005630046646592764 might:0.00549491129749164 he:0.005413281826865274 I:0.004928073321000133 also:0.004759296582747477 cannot:0.0036086203323930388 never:0.0033037944764297716 :0.012870585259994492 +of:0.3378764609414188 in:0.10534553643738549 on:0.08124284545665508 to:0.06892210259095441 for:0.050823012499283185 from:0.042984692596654925 at:0.038382567034722 and:0.037245376939086375 with:0.028098216556974576 by:0.024900092981755884 In:0.023750160342366808 that:0.018679812825393754 through:0.012722999957507105 upon:0.012031497766961144 into:0.010492119208299478 during:0.00811042951537618 over:0.007757220992732869 all:0.007581708489254235 when:0.006657361452156897 :0.07539578541506083 +W.:0.1307962624427946 .:0.06775288048154478 J.:0.05150789506345944 H.:0.041280548190513175 E.:0.03909375100037453 Miss:0.03720307768093063 A.:0.0366405693453086 Mrs.:0.03329188812943654 F.:0.029970714622096474 John:0.029909869827357025 D.:0.02487007834220799 William:0.02428883120062547 C.:0.023650579983313668 M.:0.0214319181304218 Mr.:0.02092262104963124 James:0.019679246368724024 S.:0.01805529457499814 Mary:0.017323991517390447 of:0.01731129142159653 :0.3140186906272749 +of:0.21740597868025444 in:0.07580386487218015 for:0.0703764706053315 and:0.07011219692124937 to:0.05928597128666265 as:0.053583699588193666 with:0.053069542768878986 by:0.048893672258105314 that:0.038822023094119515 was:0.029046999074303814 at:0.02890985070338973 from:0.027569854458312726 is:0.026791818120108172 on:0.025790722995737193 such:0.021735896392308118 In:0.017261834634591543 but:0.011908254838657758 than:0.011115812994442321 be:0.011112546174444862 :0.10040298953872817 +a:0.31905338058125843 the:0.14292516179125403 each:0.06429059347320745 The:0.05622410182579387 one:0.050634535589840296 this:0.036922648126123406 every:0.03103345342435037 Each:0.030626471386297656 and:0.0301242238168591 One:0.02581454841590868 This:0.021402005892901067 that:0.018450720707892297 A:0.0181584819276065 other:0.015453321185724917 any:0.012401078724326558 no:0.011894258322999767 No:0.011641047880045774 Every:0.010820674010954155 his:0.010018884357408307 :0.0811104085592474 +the:0.1699800281911206 a:0.10100618257662448 of:0.07872539771313505 and:0.04445343205519203 that:0.03352808201875394 any:0.030024034727096926 to:0.027958413912257354 by:0.02793398781404255 The:0.020714154637776625 an:0.018336529298736377 in:0.015975273271174265 no:0.015675787434184293 one:0.014710883783722671 for:0.013850340991342818 some:0.013787947155683303 or:0.013725125010845015 as:0.012396726172045031 tho:0.010703586721615008 said:0.010488863479021693 :0.32502522303563 +protest:0.0730074424705892 and:0.04681802825243419 up:0.030899702949304907 made:0.030264171118175198 voted:0.027440688555916647 claims:0.026193205449708597 vote:0.02440140127865307 guard:0.024204312136449427 fight:0.024036803642483322 assessed:0.023813752314525777 protested:0.022589786792465094 as:0.022585128486233366 protesting:0.02234573029786333 brought:0.022334978248921528 war:0.019874149267129777 charges:0.019147529384197427 is:0.01839132239437071 out:0.0182004416360357 taken:0.017339799780086936 :0.4851116255444558 +of:0.29887108946399166 to:0.06278875825975594 by:0.033623374427441274 in:0.03340527658438239 and:0.031204826345742342 that:0.024017686843840067 with:0.023904437720783347 at:0.023321020893268884 is:0.018664961571427875 for:0.018235406009731066 from:0.017294355275231856 a:0.01704942847500641 the:0.015531874594228374 which:0.012366417860032028 was:0.009926904452020355 on:0.009768893108439603 ot:0.009403299717614017 are:0.009333155332642066 or:0.008855810584797905 :0.3214330224796225 +of:0.16390973071517165 for:0.14052364978538165 to:0.08491893340120145 in:0.08048285439673634 with:0.07457914930239483 do:0.03855508123073476 from:0.02709166347166118 and:0.02516013479030272 on:0.024683313237804864 about:0.02459941243234285 upon:0.020288298759470913 by:0.01835381482868673 In:0.014649038739996102 at:0.01336359339107584 know:0.013270414882898113 see:0.011770125693639517 find:0.01067027105599621 against:0.009565977434720532 made:0.009262895921112622 :0.19330164652867113 +feet:0.09364378950793194 and:0.04223149208500271 sent:0.033864818410292014 according:0.0338091302207662 down:0.029445018679248675 went:0.029369193292408852 as:0.02707201643808549 up:0.026543890415978762 regard:0.025456819146909074 street:0.023908909427815418 go:0.023711753384104663 chains:0.022880321632168975 relating:0.022128829423073777 came:0.022111403860263765 back:0.021381978361157915 returned:0.018903545818660095 chs.:0.016113654518786078 brought:0.015383182008105676 visit:0.015114164164647578 :0.4559260892045923 +the:0.12234586999505878 of:0.0826714479272714 a:0.06489294395187979 and:0.04787538242538197 to:0.04239748380915774 in:0.03099355639734041 on:0.02274063025686678 be-:0.020062408892687227 his:0.016776938088364023 :0.016638907052507677 The:0.015928304430833224 with:0.013122849336351881 as:0.012246104045432924 that:0.011427275175117522 by:0.011064610265087637 which:0.011064469868916276 for:0.01035394284518025 an:0.01023922717350762 said:0.009806356378011204 :0.4263512916850457 +an:0.2823802894096947 to:0.1489745328251265 the:0.1027899909960039 no:0.04820600876360335 I:0.0371018720373801 will:0.03590003195795923 and:0.033798798489815374 not:0.02873770353820791 any:0.023864165144662382 would:0.020058429887307574 An:0.018085362950883626 we:0.018034803259329112 of:0.014764117390004435 a:0.014443191261810354 by:0.013373983861392574 or:0.013233061543398966 We:0.010071075612257209 in:0.00982146416999662 this:0.009803771831096347 :0.11555734507006976 +the:0.49598378878902466 The:0.05669427805387892 con-:0.047700309065073186 tho:0.033310186084325684 a:0.0322781065708727 and:0.030832750669640193 tbe:0.015142106001736334 of:0.013678620273031758 an:0.013344713979942332 con­:0.009133741766418155 all:0.0075981575161225825 other:0.007073308352785533 general:0.0066880271621306405 Con-:0.006329654864087222 large:0.0061734453929388955 :0.005852770376650297 con¬:0.0057964566061953545 great:0.00538752543646846 in:0.005120253006323909 :0.19488180003235323 +to:0.26503562479978116 will:0.1867544474475603 should:0.08016663861329253 may:0.07003078496795453 would:0.06798001655864817 can:0.061497797693672966 could:0.048148094233019544 must:0.04360733650222045 shall:0.04107912378607018 not:0.03799118114531721 cannot:0.018899639893009895 might:0.015370201400308965 and:0.007697916928588548 never:0.006116762736849847 it:0.004564958848449199 soon:0.0036262470945478613 there:0.0032250094138867925 also:0.0027747137313913484 then:0.0027284828792727865 :0.031705021326157684 +the:0.11919516938815296 of:0.07230453158552728 and:0.05781056740443249 a:0.043018564803886335 to:0.031305092790907506 in:0.020848713353460488 at:0.014270110001066288 .:0.012526810245749479 :0.012413283442322082 for:0.011719122709941797 by:0.010808400946589808 or:0.010404172990115616 The:0.01003576004804544 with:0.009811868184449042 tho:0.009295902015355835 was:0.008924239095331684 that:0.008672304223433876 is:0.0085591147338948 be:0.008335143826716943 :0.5187411282106204 +of:0.3016963475355822 and:0.11880312041784782 that:0.09912438804160191 all:0.05697251521619168 by:0.04812350986945087 to:0.035238498128778314 for:0.03266060880352848 with:0.028849518358643918 as:0.023499477179281157 in:0.022626103106095415 but:0.01828749453319047 when:0.018054794814683545 from:0.014603885843578886 which:0.014345656754719013 on:0.01339272586291633 among:0.012842475917022499 where:0.00894959682158892 than:0.008036679109335273 upon:0.007330899937654624 :0.11556170374830865 +and:0.06480717840406575 more:0.028109781355751 that:0.025424725568010113 of:0.021158756341186673 it:0.01958026094081651 as:0.019390556044928578 be:0.01735217245222924 was:0.01720607222193347 is:0.014497336190726089 a:0.013670493003553883 the:0.013488687395567201 all:0.012368097233133708 time:0.012069946553961784 much:0.011627814139173168 to:0.011034472302986561 at:0.010954189758147347 :0.010485782181105867 for:0.00924735803743917 are:0.008953031627452795 :0.657573288247831 +the:0.5992979068266223 and:0.10758287862833903 The:0.035149826191399454 tho:0.025796764473299573 said:0.016728200966627554 certain:0.014403251553070266 of:0.013079791556248409 or:0.013052526663406134 tbe:0.011308428143094188 great:0.01126253664941984 an:0.01073750979428753 other:0.00905148404326197 all:0.00872926835925873 two:0.006913316782781496 real:0.006634369721173423 a:0.005752685542763471 any:0.005634339904746873 Common:0.005242370434236279 large:0.005157242212756117 :0.08748530155320741 +that:0.2968679931546519 and:0.11425017044387295 which:0.07840608290093895 as:0.05491010562796762 but:0.0507899152705152 where:0.04181923077962451 when:0.035062641700354544 if:0.03380554687924101 what:0.020758442484193743 because:0.018037217089969467 than:0.013735011113380735 or:0.012918128578842886 until:0.012502776209915823 If:0.011311753456944896 then:0.009813348823122299 think:0.009286428406352595 But:0.008564209929610272 for:0.007828896643750862 before:0.007640512684116824 :0.1606915878226329 +the:0.29123085080431205 a:0.07743420954397363 his:0.0762622497062339 The:0.07148506162592366 and:0.060745220123283816 that:0.03501534089472131 their:0.0347494521141264 my:0.03297938278492938 our:0.03284426094933265 of:0.02771698675382178 any:0.023449163910462836 other:0.023334190123164546 such:0.0215775428072464 tho:0.02088117609665887 your:0.018786087990323247 its:0.01653602221859503 her:0.015787715756447482 this:0.01397387126065276 no:0.012653840968011611 :0.09155737356777863 +as:0.3717375683453216 is:0.11302534127427948 be:0.06438114416312 best:0.04814173737228299 was:0.04560443512842883 it:0.039392352351801 and:0.03566630321423165 im-:0.028923470520926944 not:0.022124930176735082 are:0.020479947524096005 or:0.017734467444777784 Is:0.016473218928698907 no:0.016192680725961032 all:0.0153733732334245 only:0.01260387559313306 if:0.011848264356170056 been:0.011572281979721715 everything:0.009858733966604425 so:0.009775764782655455 :0.08809010891762943 +of:0.19887519310007298 in:0.12925607927746627 at:0.10329971806779992 to:0.08522682914013198 on:0.05430765438203471 and:0.04265036494602711 that:0.040495987471724997 from:0.03892549274283557 for:0.03861778634874602 with:0.03353786121289692 by:0.031071098448110783 In:0.02708122458612074 upon:0.026788799887718706 all:0.016671655616562055 or:0.015788023637531654 any:0.015625931129150804 make:0.014222753128007505 as:0.011894453053034573 is:0.009550903546262184 :0.06511219027776452 +and:0.0976032445939582 made:0.04634103171461328 or:0.04302738304198237 that:0.0338348278459507 him:0.02437180193228864 only:0.024371139022325468 it:0.020475027272677953 but:0.017199813567286806 accompanied:0.01708493334226266 followed:0.016426855371243675 ed:0.016400086928824532 foreclosed:0.01582533190645784 given:0.015294109698000833 them:0.014501595658044115 done:0.014118744438375694 was:0.012173498162419288 as:0.012083672136081396 secured:0.011704392689105171 than:0.010844761604869291 :0.535317749073232 +of:0.09129790931378902 the:0.07369883040827747 and:0.047842263382354346 in:0.04189055351593407 to:0.04045875475680249 a:0.03542341257202578 be:0.02020462051672066 for:0.01979292654746225 was:0.01760256398103379 at:0.017380150555488715 is:0.014984483003968216 with:0.014047653760730413 by:0.01374644383819499 :0.012670486581795598 In:0.01200961464556976 or:0.011563835749786333 from:0.011391516893522809 are:0.011273104484969465 that:0.010755276030689069 :0.4809655994608848 +that:0.17781904511991697 and:0.09423686570557079 but:0.05223674978778139 if:0.04016513120199459 as:0.037982945128868684 which:0.03656495312209877 when:0.03620935091646469 what:0.02037081136619342 If:0.019416012689411757 But:0.016943554454845234 :0.015337634419914712 because:0.012161905459176947 where:0.011680338054259285 time:0.010214597316421086 it.:0.009961252282950719 think:0.009710217786116403 When:0.009010977606567173 the:0.00840306581145192 while:0.008300767181081607 :0.37227382458891384 +in:0.3312560644617142 of:0.2458338011824109 In:0.058948872083054736 to:0.05615075800663656 for:0.03784720059865193 by:0.026536489933551864 that:0.02621368090255243 into:0.024325748731306857 on:0.023977201101741234 and:0.022588611231967398 with:0.020886823448679284 from:0.017519169595834688 upon:0.010778098462271643 over:0.01029447701767964 as:0.009837678502857279 at:0.008709996101062755 all:0.008388048309200992 through:0.008326059195515519 is:0.006352529063018367 :0.04422869207029173 +the:0.5434868763113659 of:0.06217915682214247 a:0.04982724348196502 American:0.033552074263966086 our:0.027774405697947816 other:0.027708839817166563 tho:0.026050859513794634 The:0.0213285783918287 his:0.015504233694579315 young:0.01360015219254975 my:0.013186995222705486 these:0.012592843330372914 colored:0.011955391430972826 white:0.011251338883836642 old:0.009800940316596871 such:0.009054792583054434 tbe:0.008892479931462877 said:0.007936872648659552 by:0.007821084458777173 :0.08549484100625498 +her.:0.03795492048091359 :0.027130702309271604 it.:0.021406014901057657 him.:0.014125172332724716 them.:0.010173247157383377 day.:0.007256260123143576 life.:0.006875645279673983 years.:0.006791316922280998 time.:0.0064069352891497925 home.:0.0062070379407537365 house.:0.005546694639790593 death.:0.004996392613105093 night.:0.004987537734599552 here.:0.004893710999428324 city.:0.004646733369783952 ago.:0.004571656522204982 mother.:0.00456017015680874 me.:0.004370120956065881 do.:0.00436227625547267 :0.8117374540163872 +the:0.09684081064840576 and:0.06551335624548284 of:0.05146145169206151 from:0.049520598669154245 a:0.045427902131977435 to:0.0370403239153822 be:0.035669151526387034 was:0.030489628475080553 is:0.026635804908522978 in:0.023878514238638158 are:0.018513936943033917 not:0.017945708099223703 or:0.017556265685966497 been:0.014265228721347686 at:0.013857211504087178 he:0.013733215789660087 were:0.012396679125422956 I:0.012347944480187516 for:0.012197989992860347 :0.4037082772071174 +of:0.11612482305206981 and:0.06356839079129821 in:0.03777915221542686 to:0.03624551483870151 that:0.027443230194629607 on:0.02312822586607452 for:0.022477089050882942 things:0.015359723357775905 those:0.012573795546543136 by:0.011831423162610986 but:0.0096323414493642 upon:0.009457852428527692 with:0.008901882196844254 from:0.008887439883860891 In:0.0070271962038077965 laws:0.006597068072522801 party:0.006220269646256386 law:0.0061105026759166806 ,:0.005817865707339337 :0.5638162136595465 +be:0.16767099496938678 is:0.12696999617792273 are:0.10384792267634098 was:0.07611998280098985 and:0.06212993047142543 not:0.055952279722723465 been:0.053176075462240006 were:0.03356384146259006 well:0.031593265879423106 it:0.016786213650256634 much:0.01649855162191874 being:0.016342557337358583 or:0.014343276618357935 Is:0.011398563895534525 them:0.011235004594545218 made:0.010590539933498034 he:0.009470992240700133 land:0.00925688313535213 as:0.008995385126485948 :0.16305774222294972 +the:0.2058790688989008 and:0.11819478569998433 of:0.0818154383602915 to:0.07481392938199474 a:0.02639680032004928 The:0.025246545189985713 not:0.02213064344730608 in:0.02165482072481566 their:0.020311359502794866 an:0.020050060767397515 that:0.017051274284402285 ex-:0.016614152745781884 most:0.01647807298474382 be:0.015198639148718772 I:0.01358581567694658 or:0.013553600982344538 its:0.012457600372780514 for:0.01185293227198886 tho:0.011588157883852698 :0.25412630135491954 +the:0.19525800275743835 their:0.13065203553311555 his:0.1119880787963297 of:0.05665429224279311 her:0.0489847094157805 my:0.0348239361207405 and:0.024457568880741933 our:0.024128672085237186 its:0.023580389373159625 few:0.022233177135470256 all:0.02031674069527288 two:0.019064264897467414 other:0.018392275422588134 many:0.017783810360414765 your:0.01566894998785518 these:0.01512586323726955 The:0.01356236437314485 some:0.01286204776475573 three:0.011473651699397722 :0.18198916922102706 +would:0.14461355198377399 and:0.13517091449237448 but:0.06519734116960603 will:0.05597164611285077 the:0.04492696890700634 do:0.04156189044974179 or:0.034723204859279405 a:0.033376185613881566 is:0.03246199995799831 was:0.026585171517783297 can:0.023634929336170684 did:0.021877706681655 we:0.021304318688842937 may:0.019156228511901633 that:0.018427891669656714 not:0.017499926587586798 I:0.016578109576907352 But:0.016264515374059214 him:0.015946014844249946 :0.21372148366467375 +and:0.07647817136212964 that:0.05296115217752375 Committee:0.040510278560264346 committee:0.037506661015459256 was:0.017391673480442807 going:0.015706108917414335 work:0.015626003480609395 one:0.014869231590464353 or:0.01354705471920915 man:0.012893257631307919 went:0.012383690084929627 but:0.011922505139194343 land:0.011821927896865692 go:0.011821575716992303 him:0.011235603863398742 them:0.011038634485580432 house:0.01058323926173099 men:0.010579147061238968 point:0.009679276350227878 :0.600444807205016 +the:0.1273524710915242 of:0.10579248979368504 and:0.0976236198158057 to:0.029114063992537898 in:0.026887494385976957 be:0.02362418831796332 that:0.02046362107740895 which:0.01997501285142605 much:0.019235461439445434 a:0.01920007034166043 was:0.018234969325898714 as:0.01724228346712752 their:0.01715784926962195 con-:0.016792493649688083 he:0.016680893184704074 is:0.015899605856952936 or:0.015446567607187111 so:0.014903982814327157 are:0.014354424445792964 :0.36301843727126554 +of:0.28767355066866834 to:0.08775711267569858 in:0.08678131196995101 and:0.05160598694501188 on:0.04646139928102899 by:0.04519522654900943 for:0.044547789071328545 with:0.03396756772609607 that:0.033699232901107726 from:0.03075346596941143 at:0.027039283056790858 In:0.021061449543044047 as:0.017514234937992545 all:0.012543839382496166 upon:0.011844431150487573 is:0.00998972746569266 was:0.008814315973987914 into:0.008557199930727406 through:0.007781895704231326 :0.1254109790972375 +and:0.12760914952579921 to:0.09350903998305073 he:0.04427115183796026 of:0.03273712048537543 in:0.024796890005921543 the:0.023894411477150226 was:0.022918342900178634 that:0.02089892373593765 for:0.02039988287876958 will:0.01968918799115977 not:0.01900679191484481 would:0.018586066892747898 or:0.01841067604319294 is:0.01741560228311475 it:0.016623006336143973 had:0.015944658138793255 be:0.014889444862031647 I:0.013999263722461762 him:0.013315311952332166 :0.42008507703303377 +and:0.0881245880003323 just:0.07373323331426233 is:0.06220662979977092 be:0.03719512727929795 much:0.03706866225658913 far:0.036897795961600525 are:0.03618276485124513 not:0.03380176579677533 but:0.03364423969405558 was:0.03147819187654648 it:0.02678818607227986 well:0.025981422367949192 quite:0.023945432638108503 twice:0.02159059793439165 him:0.021280875415348448 or:0.01997206995066426 about:0.019460324198952533 times:0.018682707616508462 used:0.018298783273521867 :0.3326666017017995 +the:0.28461602746684866 his:0.08466148054381563 their:0.07977982031176696 of:0.0763909410001268 her:0.052531611480731585 our:0.05164019804611153 its:0.048415389936590496 great:0.03469439038568501 this:0.031669182190295325 and:0.028670054600914423 a:0.021166034378453623 my:0.019790459212354606 other:0.01954546113235331 own:0.019059326501509516 these:0.014674101616083833 that:0.014309422569672105 your:0.01344619317564327 very:0.013333338044472466 same:0.012433374553099213 :0.07817319285347166 +the:0.5192637773842528 his:0.06697164815398192 a:0.06414090945578331 their:0.02892926746378959 this:0.0271395511345451 tho:0.026005748588529373 her:0.02412792299470686 of:0.01949756126849238 The:0.018782668583223673 our:0.01819754633197928 to:0.015141471324741052 tbe:0.015070693603852131 for:0.013305936686317679 my:0.012942989384362768 own:0.011131025452001227 at:0.010281330260078419 its:0.009539088843585593 your:0.009432703356389214 said:0.009232975580546131 :0.07986518414884151 +of:0.13917146145420697 in:0.09017536636107427 and:0.0820741366481696 with:0.06842278274206942 to:0.05753477506951965 for:0.05233480565750112 by:0.042749950214104215 such:0.04180680620441987 as:0.04072415825260824 is:0.039907492568008886 that:0.03926466833561838 was:0.033564467532931686 at:0.025759191119768335 In:0.019237944905973133 from:0.019098128667011792 have:0.017785295236003165 be:0.017305266611436346 but:0.013799191441926574 on:0.012294781883950815 :0.14598932909369755 +to:0.213490614156897 the:0.15347479515078255 a:0.12516183642181425 and:0.06379446789912839 will:0.05475868182312284 we:0.04145296831276695 not:0.0407897681637417 would:0.032635675910765306 you:0.02933598825406097 they:0.026105282348879946 I:0.02211835778705193 roll:0.020801716887233434 who:0.020163973208255366 can:0.019064961742926125 may:0.01503480250205073 or:0.013487020668360664 that:0.013221853519902562 The:0.012163116221377864 could:0.011813676638915228 :0.07013044238196618 +the:0.45242361801595793 a:0.11246454484002247 gold:0.048179369823721584 The:0.041991388714198725 tho:0.041550313462325926 and:0.03734411982401755 high:0.027437711160063816 any:0.020681689830340595 other:0.01434796639828032 of:0.013632529629986732 tbe:0.013628973360733636 or:0.012741395323997885 every:0.008535282976353756 one:0.007721527122735355 some:0.007029314229062623 great:0.006639175865249017 with:0.006271369941053745 this:0.006061234363221157 all:0.006051657849435747 :0.11426681726924139 +the:0.4071374189315913 and:0.06449181461132415 of:0.02892866618288876 in:0.028670005984162618 The:0.02603617389223924 tho:0.024993820467459137 a:0.023579040051412606 to:0.01755553213771617 on:0.014626070241060114 by:0.013447843485786471 or:0.012794166593089693 tbe:0.012024509152999897 :0.010353482361299817 that:0.009291482237329618 In:0.007938246807075932 from:0.007526799010378873 other:0.007469196869028889 all:0.006409533041696086 for:0.00626887758057738 :0.26945732036088327 +:0.041359481070096696 it.:0.02992678151149307 them.:0.014441531783179268 him.:0.012476942153642475 country.:0.008159761658372658 time.:0.006955582626179855 again.:0.006103253879962851 years.:0.005930032484251444 life.:0.005807739677731956 us.:0.005762740661184078 all.:0.005450922705995324 men.:0.0054290813247337075 people.:0.005365172794036551 so.:0.004861522259324857 tion.:0.004860592806013981 year.:0.004546078047444529 day.:0.004515109300935817 .:0.0044495028591267595 man.:0.004351249819840491 :0.8182469205764537 +a:0.1200672044911874 the:0.11500121258686981 this:0.10328825966347777 some:0.09222360786789945 that:0.06305745578906619 short:0.06055700738628428 same:0.057970055662528115 any:0.05089349233337247 in:0.04558295308361813 of:0.03615284604898665 every:0.035236562018009475 long:0.03446982703499864 one:0.030220440914425523 to:0.02572970821452737 first:0.02249820703545673 present:0.021956178504334765 his:0.017426327319122123 last:0.016451782183128802 good:0.014299188468844396 :0.03591768339386194 +the:0.31921780231494434 a:0.06985918659788727 and:0.04429040372826017 of:0.042887081901758446 this:0.04135715357284154 any:0.038797123445847376 to:0.03577499850689048 our:0.0343721362110966 The:0.02986472886153163 whole:0.028158541544136762 his:0.027795112609071464 other:0.026682563664961897 general:0.022037615685256848 that:0.020608285965332127 tho:0.019229473730449663 some:0.018564667952288488 or:0.013648046576586243 American:0.013316764517656513 in:0.013301388581555993 :0.13923692403164611 +they:0.16685723484317316 who:0.10383728311127911 we:0.06534821060430113 which:0.05877006956104054 and:0.04947656578259235 They:0.04053326413642431 that:0.03746137923875195 We:0.031296260220356205 there:0.026172666077691604 men:0.02217143885316832 you:0.020137576648884423 people:0.01638340423565549 There:0.012360471531601485 these:0.011208716473008749 as:0.009688866954586877 women:0.007602613913930126 them:0.00746924114912823 it:0.0068929097450512455 but:0.0067042326904621094 :0.2986275942289126 +of:0.28767355066866834 to:0.08775711267569858 in:0.08678131196995101 and:0.05160598694501188 on:0.04646139928102899 by:0.04519522654900943 for:0.044547789071328545 with:0.03396756772609607 that:0.033699232901107726 from:0.03075346596941143 at:0.027039283056790858 In:0.021061449543044047 as:0.017514234937992545 all:0.012543839382496166 upon:0.011844431150487573 is:0.00998972746569266 was:0.008814315973987914 into:0.008557199930727406 through:0.007781895704231326 :0.1254109790972375 +one:0.1028303141280697 part:0.05963429477052991 out:0.04766456937681193 some:0.031418679026461914 members:0.030764490253327767 side:0.029940657362655835 portion:0.022063658796890564 office:0.020457735219956013 member:0.019726706386316174 end:0.019666887540649894 tion:0.018667441728710307 parts:0.016814747270460957 people:0.014112771422418794 all:0.014072739582212475 any:0.013183573287639892 One:0.013083578354183906 that:0.013024335602903442 account:0.012482348155001894 many:0.012077825070275192 :0.48731264666452345 +the:0.21040754646803544 Supreme:0.14266742211269104 said:0.09197082733576223 District:0.04678367665957203 Circuit:0.04330361631443042 County:0.04175391673607443 Probate:0.039924635260726524 of:0.039116615149489845 this:0.03511726677262847 a:0.021939093298874637 and:0.020948001560191457 Superior:0.019785317800872466 tho:0.011053154651795374 The:0.009485344679676863 that:0.0064437040776086805 preme:0.006261013606611221 by:0.006116826613273884 Police:0.0059135573356504665 an:0.00565728546187794 :0.19435117810415656 +it:0.12646345559141328 which:0.06874049228939834 and:0.0656467730514304 It:0.055899354080079296 there:0.04819894680944666 they:0.03712179471058455 who:0.02815526182575708 we:0.02681863422926571 that:0.025159511562839045 thereof:0.024851973400234234 as:0.02428947294515817 same:0.020568888037149836 he:0.02001322537743491 election:0.019553934975150428 person:0.019134845881448644 act:0.018245867186635015 I:0.01822575051588607 bonds:0.0165852660779681 or:0.016416112573120735 :0.31891043887959947 +of:0.3110039611683842 to:0.07609914848213424 and:0.07167435165584969 that:0.06682101895080984 in:0.056755801251930645 with:0.053032147615178334 by:0.0410653272441583 for:0.04095081798019798 from:0.0329414507200425 on:0.03277721463553718 all:0.021774528402027506 as:0.017641696115924584 is:0.015804619098096977 In:0.01458736716450939 upon:0.01345772855995915 was:0.011727920909710558 at:0.0113316439673679 but:0.010870940973757673 when:0.010210631920350242 :0.08847168318407307 +he:0.11070465735346224 I:0.0991872189229181 have:0.06667099529152612 had:0.06604053346738765 who:0.06362586767679264 and:0.060564103503596305 we:0.04876156800394578 they:0.04713016540893419 has:0.04643888453400137 He:0.037397259214103584 They:0.02773909961038966 she:0.02597959073459392 be:0.024340916816185203 which:0.02399659742344731 We:0.022610091661877125 was:0.021092644711715767 that:0.016207555163033897 is:0.015260593968920395 also:0.01447215654868862 :0.16077949998448013 +in:0.1854195814115219 of:0.1374274567834752 to:0.07567021334476152 with:0.06451534255051634 from:0.05377185805352245 for:0.0483948398733552 by:0.04671886645161503 upon:0.037759300313292526 on:0.03536436826755738 In:0.03287240112744027 at:0.030131351485725627 and:0.0204782915460042 through:0.01846663448577466 under:0.014484289096971838 after:0.010053743795076108 into:0.006536763564476057 over:0.005783505347276391 that:0.005230665412446388 during:0.004814242901744871 :0.165106284187446 +New:0.5860654217852398 the:0.04794676355559965 and:0.03712383253158029 of:0.029022669347285434 in:0.023750333313600498 on:0.017205057741564455 to:0.016075574538521892 a:0.013840299447725106 for:0.01367616641060054 with:0.005796329054235117 1:0.0057720652157159024 our:0.0053985159738440345 from:0.004937643639498067 In:0.004864214051866192 do:0.004496033165267034 by:0.004358359061261483 at:0.004358155448187671 The:0.004341040550188526 :0.004090650618442939 :0.16588087454977535 +and:0.07679363749608188 recorded:0.05034318189829796 is:0.03987244694939778 was:0.039108830460396066 that:0.03090731742183201 up:0.02798152387589709 held:0.026510158904939848 made:0.02383310938304104 time:0.023768248812720296 as:0.02213581730965383 are:0.020740031256888145 out:0.020069834160134737 it:0.01820013037930063 now:0.018091456176296362 used:0.01780143395631767 engaged:0.016897751664408895 be:0.015516764365235787 not:0.014552692671363618 them:0.013848300328136904 :0.48202733252965946 +and:0.08361398991160907 was:0.025997606180696853 up:0.02423884710664973 that:0.01981955022071554 is:0.015277696309319981 recorded:0.014704738454182959 them:0.013836474802647419 feet:0.013604300570980828 situated:0.013096126740304468 him:0.012598429811667424 as:0.012543644664919262 made:0.012452208559929186 or:0.012161086891859966 put:0.012084114460325231 found:0.01189141889087102 men:0.011763661834280894 are:0.011680361848924375 held:0.011398208596651645 all:0.011088884797532263 :0.6551486493459319 +of:0.09043409053013649 the:0.08458268447909405 and:0.06941169710674647 to:0.06842685376506503 a:0.03502196399400508 be:0.027631492661475 was:0.02262770347407094 or:0.020899547147549786 is:0.018061672947865565 are:0.017763045964156114 his:0.017114589037761113 for:0.016727962397261282 re-:0.0162769353827767 their:0.01514882567544624 been:0.013878331263912594 were:0.013374436412516415 that:0.01319950985941409 at:0.012567281873590285 :0.012294075404375895 :0.41355730062278084 +feet:0.0719208472326295 poles:0.05759396229176634 up:0.04010587224329879 chains:0.0385088170079141 entitled:0.029123404981740347 went:0.027388526271997813 came:0.025857650765910022 down:0.025633262313841977 him:0.025574415868859987 as:0.024916209858287616 and:0.023917753661251574 subject:0.02185045005331621 brought:0.02171367122116056 them:0.021644069985480026 it:0.02099405133651225 rods:0.019030517253069822 back:0.018922583019034468 go:0.01891708435510451 sent:0.018892511875840953 :0.44649433840298314 +the:0.12777399538123826 of:0.059218253429744294 a:0.04185189614380902 and:0.04007154690833416 .:0.03349169607096561 :0.01851351481914527 The:0.014114519813750167 A:0.01216904253001183 on:0.011475589337118891 W.:0.010941993668596129 E.:0.010924049713126428 to:0.010910158549690376 by:0.010857937697430415 No.:0.009141717829779327 Mr.:0.008957790707673595 at:0.0089095631138897 Mrs.:0.008794928542692676 Miss:0.00879445949042081 S.:0.008612614238783288 :0.5434747320137997 +in:0.0718755008640755 and:0.0432601406533192 well:0.03761645683729227 of:0.028015753109210423 known:0.01796525588091204 on:0.014217542705912398 made:0.012682131739783215 In:0.010071771528900828 far:0.007359294003324362 such:0.0070339195561081175 to:0.006423241151998785 :0.006208329903921926 was:0.005890029535346046 not:0.00567579302874444 for:0.005346315968613012 that:0.005104498197065601 is:0.004507909587408709 sale:0.004253507278526955 much:0.0042185147741413895 :0.7012740936953947 +the:0.23454578607420948 a:0.09105356978473847 this:0.06033994988139267 next:0.04894719065083535 to-:0.03759419342744409 per:0.035246322971251555 that:0.03300327693412952 one:0.030673336970672736 every:0.030369847546168775 Thurs-:0.025336224286600754 Fri-:0.022789341048002756 other:0.021119944986753802 Sun-:0.020468058511296055 Tues-:0.019298404639710557 Satur-:0.017783011621178655 same:0.016559185936569725 first:0.016319270142549597 of:0.015120926890626107 to:0.014966044786115977 :0.20746611290975334 +was:0.21664295002993708 is:0.17574261850620276 and:0.08438858664270694 be:0.06973612600590873 it:0.04809771296428516 are:0.043067634425350415 were:0.04196338705597442 as:0.039106813328586135 been:0.03618217704648421 the:0.03616231952598154 not:0.02603014011493239 Is:0.022924296827790226 or:0.01700209081691411 very:0.015698902212569227 had:0.014111126120407587 to:0.013143254218601196 seems:0.01314277172458643 he:0.012471105196036114 in:0.012088946168162496 :0.06129704106858283 +and:0.02158702126659881 it:0.021199913841180956 him:0.01811753765489207 the:0.016858051129974537 made:0.01518641220140393 them:0.01421152089159642 well:0.011161119653192428 up:0.009756660120935116 me:0.009162409729841515 tion:0.008838056585654572 :0.008700693759744731 :0.008633408728682323 .:0.008528774976786734 now:0.008410108485829704 result:0.008402043831037046 men:0.00827372652330931 law:0.008114189892089878 all:0.007770968112609313 is:0.007747455858275428 :0.7783399267563651 +the:0.18002289167119584 of:0.12377675362340007 raw:0.10968568835021597 and:0.060280435092869566 his:0.037560537353654826 with:0.03736840304412917 a:0.03639551096297747 their:0.02884729365929982 or:0.027604300462273336 this:0.025129039956749262 in:0.02321011825222717 all:0.02058544592196547 such:0.019710484363565355 for:0.017104180693539056 to:0.015674822714195902 no:0.011970189540287501 by:0.011734582131306962 any:0.011291857748990147 that:0.010402571960697703 :0.19064489249645938 +a:0.47903668568448116 the:0.193986992204547 his:0.028197441910719802 and:0.027626174696921208 The:0.023913676871191933 their:0.02160388208138771 every:0.0170479730920525 A:0.015935560740268768 of:0.015715873629724597 w:0.014451610774599008 tho:0.014123317449388896 one:0.013151416327698147 this:0.012826974207726733 to:0.012059835558425281 our:0.011875537224317351 other:0.010415255399263426 her:0.009133740063279053 new:0.005502240376930771 great:0.005458518689123345 :0.06693729301795331 +of:0.1802219787665439 for:0.08423228474152575 to:0.07826862129465756 or:0.07022608528864123 by:0.06566298845404345 in:0.06556000031827311 without:0.05588566443489627 that:0.03841697809133154 with:0.03515902678806797 at:0.032855331315545064 from:0.027692835426915707 than:0.027319467937122578 have:0.026384193812352616 as:0.024891066708296158 if:0.02443968063209392 on:0.019815247363552068 make:0.01898101333412031 and:0.014985513144152677 is:0.01430694312957192 :0.09369507901829624 +and:0.07558940021936399 recorded:0.030196237618668006 was:0.028917161578042846 made:0.027969746247669736 that:0.027730098932509103 o'clock:0.025060522019555328 up:0.023026552239529506 is:0.020398277211376416 found:0.02003101797656537 placed:0.017482208134164214 out:0.016937164562539058 place:0.016819459500107596 interest:0.016629321966808677 him:0.016002796715253755 situated:0.01573420479581609 it:0.015128305982428461 them:0.014715943643665314 part:0.014646613000297721 interested:0.014450471929902294 :0.5615344957257364 +the:0.5327136910734289 a:0.1101427208827002 The:0.07021762349742428 in:0.03413528640963278 tho:0.03204971154045059 and:0.02555277675804254 of:0.01917630052990746 on:0.016856125433094542 tbe:0.013656066932600578 for:0.012030865219851111 In:0.011224238488665788 by:0.01026730533838287 A:0.008201047298239273 or:0.00734917681124926 any:0.007031602920185531 said:0.005875177234708933 :0.005299791122541263 no:0.005028586658674644 old:0.004708964266593479 :0.06748294158362589 +J.:0.07082381729456454 C.:0.06422289338629616 W.:0.06394572131336697 John:0.0623529753220447 .:0.05889458281845319 James:0.039208217482882855 Mrs.:0.03598842112999452 William:0.030343776312509833 Mary:0.026076079283425754 F.:0.02577056717850156 Charles:0.025645276488961317 E.:0.02544165013562007 A.:0.025077243018083135 George:0.024178230245776 and:0.0224562010022046 H.:0.021456914206886803 G.:0.020716110973310324 R.:0.020362090551017006 M.:0.01898707495184047 :0.3170521569042602 +was:0.19240824213701593 and:0.11909655209270273 is:0.11001147204611589 the:0.06539561140184516 are:0.05830091494484096 were:0.05652141703860051 an:0.04987169847404663 be:0.04727382039789852 I:0.03076725263594338 been:0.02780692254774266 very:0.02277854353640205 a:0.0202546107765029 Is:0.01970954550812515 1:0.016424061087365587 as:0.015758201627098116 he:0.011679262482029355 so:0.011339232512346899 The:0.010398758065072426 of:0.00918384074437968 :0.10402003994392546 +all:0.11993854506274748 and:0.0590312135181736 it:0.04645543480188015 went:0.041920103334653444 go:0.03317940090148693 looking:0.032355953930596607 turned:0.03216186197100735 was:0.028826683509677823 get:0.02757008801705403 him:0.02696218931693003 them:0.02670915809199553 or:0.023815466385239282 passed:0.022818716568310082 for:0.021006517464541744 spread:0.020887137739191198 look:0.020433217478845543 come:0.019658660109048452 take:0.019627798743826405 came:0.018868930943219443 :0.35677292211157485 +W:0.07892631551588039 M:0.0649850702455623 J:0.06391667000631429 C:0.05905432254903491 S:0.054856972986157694 E:0.05424348669664422 A:0.0514021035998739 H:0.049828895999379015 B:0.046817024292917286 P:0.04169510535418999 L:0.03908899165768591 F:0.03868396050835962 D:0.03284277583604958 T:0.02839631999315026 R:0.022484651061807727 K:0.02066410658290062 .:0.02003194872932241 G:0.015174321886982735 N:0.014851087760055299 :0.20105586873773182 +a:0.5117004720109639 the:0.1338221515589761 young:0.04622900073617035 chair-:0.029143567681911314 every:0.024224036103986647 A:0.022069749810281862 any:0.019293495172552272 The:0.017760012613785375 no:0.014861384144488964 old:0.014827237046532856 one:0.011607862575904727 business:0.010045894564987416 tho:0.009357509957203048 that:0.009158270027080456 first:0.007720012616421041 white:0.0075825583630580685 this:0.006565347012522045 best:0.006432625882393841 colored:0.00588203288484382 :0.09071677923593588 +:0.05422822549923493 it.:0.041716561922040284 you.:0.03976011420314518 them.:0.022091363445075004 me.:0.014319361630490255 letter.:0.01167422010010432 him.:0.010832598562176547 time.:0.010032893437604896 life.:0.00873553095772074 and:0.008330153601862622 man.:0.0077742071022983816 us.:0.007570884410581812 world.:0.007245124782876215 .:0.007209810857927951 ?:0.0068880199250463976 country.:0.006792217741086476 all.:0.0066476919190644615 it:0.006606396916382023 you?:0.006565981559603552 :0.7139786414256779 +the:0.5719106594711968 a:0.08261622727346671 and:0.04813528909713888 tho:0.033146701471096676 The:0.030626165577568257 his:0.01719363773049909 their:0.014088292277773166 of:0.0131365509843053 or:0.01311046912693803 tbe:0.011602203112879258 other:0.010873290763955882 great:0.00945599396674419 by:0.008834252805484957 public:0.007642846649686725 our:0.007408407348266775 best:0.00612639706946834 her:0.0059764571245477386 as:0.005322175421915753 with:0.004755107995588342 :0.09703887473147912 +the:0.39749834532651884 a:0.07520030034269234 and:0.05540858759821703 The:0.03273515726769502 tho:0.030061875542463562 of:0.020144331424922633 tbe:0.014929647509541684 in:0.014268129706664795 or:0.013333166761078447 .:0.013287381914101323 an:0.009000188755386574 to:0.00880680429595084 :0.007943763822197133 Mr.:0.00773879605474787 by:0.007328417831573476 as:0.005922572098978465 for:0.0047526933692942485 that:0.004736121968310169 on:0.004594595720579333 :0.2713091226890862 +was:0.15737032935219122 and:0.12495486753194998 be:0.10703939162009557 been:0.09692697892747697 day:0.06741394938216176 is:0.05740625957441199 complaint:0.03642850647859454 were:0.03574059263583988 duly:0.02480075699509122 has:0.024617185536451622 are:0.02081179732836673 he:0.01921644413646473 land:0.018306459559865505 being:0.014550096970842537 have:0.014510003495819606 had:0.011969186470716892 as:0.011565072715501534 plaint:0.010838100254541409 also:0.00911404541795198 :0.13541997561566432 +of:0.2572351033827066 to:0.09558607348609818 in:0.08424579037499856 and:0.08016452474218641 that:0.07123477608396575 as:0.03962998426167426 by:0.032894925774707345 with:0.03095861535758537 for:0.030213886443394847 on:0.029912004986388574 from:0.026124397184296582 In:0.019434579310061928 all:0.01904911892622898 is:0.01837054935983432 which:0.014685457990171529 at:0.013832250666896641 upon:0.01363245434390612 was:0.012920104815200173 when:0.01241654562922669 :0.09645885688047112 +one:0.1028303141280697 part:0.05963429477052991 out:0.04766456937681193 some:0.031418679026461914 members:0.030764490253327767 side:0.029940657362655835 portion:0.022063658796890564 office:0.020457735219956013 member:0.019726706386316174 end:0.019666887540649894 tion:0.018667441728710307 parts:0.016814747270460957 people:0.014112771422418794 all:0.014072739582212475 any:0.013183573287639892 One:0.013083578354183906 that:0.013024335602903442 account:0.012482348155001894 many:0.012077825070275192 :0.48731264666452345 +and:0.08917482773301734 place:0.06562399401650301 point:0.036194163423449076 places:0.0304047402077274 know:0.02915282622243778 or:0.022626626252434716 that:0.02020191031995241 spot:0.018954638246731038 cases:0.01638974765495069 house,:0.01504528918511947 room,:0.01443885455042379 just:0.012985312532634056 case:0.012650080571291914 room:0.011758822369024516 city,:0.011107582197707066 house:0.010801741853629315 street,:0.010244868290545928 but:0.009559779573555869 country:0.009448724945025092 :0.5522354698538394 +it:0.16558174341344517 It:0.07846395477223078 there:0.068926656508768 they:0.05354081626270712 that:0.04867727640265432 which:0.04505196720686623 he:0.0439264118286433 and:0.04292049757801078 I:0.03259451855648658 we:0.022714282810773655 you:0.017312799630666443 There:0.014753102337007622 she:0.012061733113950288 who:0.011822775785340672 what:0.010328641715673107 law:0.009760151038589949 States:0.009676543902658263 man:0.009568256342280966 men:0.009031003643309513 :0.29228686714993724 +is:0.06430032622756984 was:0.05096260435691364 able:0.04967740105859497 and:0.04633585595258559 him:0.045563041863700936 had:0.04371850683126186 have:0.041204724302817665 enough:0.033819618871679356 as:0.030054240436239596 order:0.02886938218498864 them:0.02842066687548639 necessary:0.02815665415201209 right:0.02806266390930668 not:0.02378459195514922 unable:0.022112684816914016 attempt:0.02092308159498048 ready:0.0205454525584557 me:0.0202873193908945 going:0.019754708641714636 :0.3524464740187342 +and:0.07359963406644195 be:0.052667135004264946 to:0.04483536256874564 of:0.043448293679263235 the:0.03579172892628988 in:0.028005289969665195 was:0.026700397492138477 is:0.024892551934152005 re-:0.024162182625676702 he:0.024086629517294657 are:0.02098604388819216 from:0.020307931541148256 a:0.018606881911690538 or:0.018077853608073062 for:0.017195224169077532 been:0.01615904189338184 I:0.015254891559368164 :0.015184018660626356 which:0.015016145996292442 :0.464022760988217 +the:0.30432131604904644 a:0.16032677933644515 Republican:0.09471849129801363 Democratic:0.07332154832212827 democratic:0.03805429866158208 republican:0.033680935035348594 The:0.023485064403366063 of:0.022352876711198056 his:0.021037225971003007 cratic:0.017118028980482956 tho:0.016696404802291363 that:0.015317828362243656 their:0.0145607271946876 publican:0.013117850731115432 any:0.013048584818056881 and:0.012007052096359487 our:0.011282227683748727 no:0.010783787210948366 lican:0.010774774701713983 :0.09299419763022027 +the:0.34334284849557645 of:0.1220052188307496 a:0.1049913174859313 and:0.04955929212410692 in:0.04242147051636122 his:0.02028602038834498 to:0.01942304258355388 tho:0.018469520536455 this:0.018446377361485813 their:0.017212519398570335 from:0.015994925493650988 by:0.014745390031553321 The:0.011349872452629592 for:0.01077941880784026 or:0.010179618323680825 great:0.009459419993426685 tbe:0.009266167062954923 an:0.008985122796876143 In:0.007836005783754846 :0.14424643153249694 +provisions:0.0679938503985306 copy:0.06201617447249093 date:0.05159752313646957 part:0.050661532655167846 one:0.04272232046411394 out:0.039198262926626565 people:0.03688333605300589 publication:0.031622932748407565 members:0.022148687792528047 tion:0.01953442712364951 laws:0.019086435714135187 result:0.017976916451795253 object:0.01720022560087386 portion:0.016216616046388216 that:0.01583665345861985 all:0.015799046403021585 member:0.014650050293503455 passage:0.014513299284273402 purpose:0.01444493434085836 :0.4288967746355404 +it:0.12446268169980054 It:0.12280480786537545 he:0.08020652832724516 which:0.06073294414750625 and:0.050980027219622276 This:0.05045282889882609 there:0.03713440751770763 that:0.03479346912854159 He:0.034050592549068955 I:0.025956325276684452 who:0.0218090018189395 this:0.021274788707593795 what:0.018497831674433016 she:0.016797366883068703 That:0.015547740538263702 There:0.012197964745074768 What:0.01018044384120964 one:0.008601337446420436 as:0.007989411724092167 :0.24452949999052587 +the:0.2160511462705056 of:0.18300705342291815 a:0.15662747583203243 and:0.06413219690382974 in:0.05321439550470916 to:0.03315118574765787 that:0.032480829292746836 for:0.030238686448716662 The:0.023528896069694844 this:0.022114403532767522 any:0.01870043997332218 tho:0.0168751797475575 on:0.014475371842773244 or:0.014293160808375128 In:0.011720512960034265 by:0.010651359137205465 No:0.010503615818998323 no:0.010170302876061061 with:0.009141394376547908 :0.06792239343354613 +and:0.11132243799111172 the:0.09160310871631079 of:0.06679815939743762 to:0.05055740665004263 a:0.03507993257428666 .:0.029161041469613617 Mr.:0.02203872547323327 his:0.016417225912881615 in:0.01460531604829462 was:0.013667981241076448 by:0.01210354479550806 at:0.011409205674898807 I:0.011291114852043597 he:0.011031642770721913 be:0.010751640926307334 as:0.010190786203092814 Mrs.:0.009667035656549475 her:0.009471757860003139 is:0.009401871562048749 :0.45243006422453713 +the:0.4120659451008907 in:0.08073546877628225 an:0.07486057607215754 and:0.04438560956955333 of:0.033108303225546094 tho:0.02790467471525615 The:0.026345519106810687 In:0.02425209439021859 any:0.020425651907418997 a:0.015874233809280405 great:0.015566466479465356 for:0.015420060734706743 such:0.01539811761633856 or:0.015061670868422836 tbe:0.014446233925768553 large:0.011601331721397752 many:0.010880037464547467 to:0.010538938359983391 their:0.009673436476030368 :0.12045562967992421 +a:0.23763199506452198 the:0.22540713264919654 and:0.09199620869379474 most:0.04357306559077744 The:0.03029107964207597 all:0.027364958151273353 some:0.02494576724015517 of:0.022306483798009986 or:0.019223394802040814 are:0.017722792727000652 was:0.01652005868729596 were:0.016440624764176733 his:0.01565589401782472 two:0.014889911412495408 many:0.012780341787530028 be:0.012565643288711474 that:0.012137158921949111 in:0.011410154163960932 these:0.010886466713727286 :0.13525086788348167 +there:0.19064101918618778 There:0.12329105424559988 they:0.10806722043623442 you:0.061220799231310546 who:0.05748226744544841 we:0.04199138676045388 which:0.03799842900041498 They:0.035408333734634416 and:0.032587121691337984 that:0.023623762720893643 We:0.0154765793987914 You:0.013346753144661829 people:0.01280033575299656 men:0.012476740491117458 as:0.007559047840404208 them:0.007428357799879129 I:0.005774269596359385 or:0.005522653680794968 it:0.0052658594450687626 :0.20103800839741037 +have:0.30825979017372884 has:0.23335574802959289 had:0.21175046658197516 not:0.030988266201518243 having:0.02927012901615229 bad:0.014171973849594698 ever:0.013086879418728829 never:0.01300501411300987 havo:0.009928021099038665 lias:0.009747205787221536 haa:0.00770115724572842 baa:0.007542997033275567 always:0.006964193192067684 already:0.006843537117543435 yet:0.006280305743339498 long:0.005835741283387316 since:0.003932840742479124 hare:0.003476596932273983 and:0.0033496242557260235 :0.07350951218361794 +he:0.23167462760134813 I:0.0838707919698649 who:0.07000070557411461 and:0.05393651107924076 she:0.05282303434099261 He:0.043501374404518345 they:0.04001216366211815 which:0.03011202055909668 that:0.025137229108445916 have:0.025120912957341077 be:0.0219351450988204 we:0.017410161677819277 it:0.014537612718867875 ho:0.013642340848713746 She:0.013459299742975477 has:0.012085522275969233 man:0.010486333548041056 lie:0.009877452188269875 all:0.009128787956142323 :0.2202479726872996 +the:0.054981043479805966 of:0.0383094250831321 and:0.028166137012997694 a:0.023276255229589038 an:0.02193876868953534 -:0.02173795936494025 i:0.02067324374973778 .:0.01849828122150521 to:0.017913989860615195 t:0.01776645592905082 I:0.016481683781022896 :0.01582113983621977 at:0.012060312498607445 in:0.011322363895738732 that:0.009960247233930413 which:0.009487548409353216 by:0.009397591224180872 be:0.008939614268858911 1:0.008564124163700861 :0.6337038150674775 +sum:0.03352282876311118 number:0.028116684882597106 line:0.019995206059833036 city:0.01946514558931857 out:0.019275318828420953 day:0.01666865340772654 county:0.014872697538657208 amount:0.013254184849875051 Board:0.01252325449624941 town:0.012449555905674143 side:0.011663975251122375 part:0.011517157473718155 County:0.011460540331966697 state:0.011087331502382173 City:0.010878919191854432 purpose:0.01081028255427907 and:0.010297866493795984 way:0.009848747943663767 name:0.009522170936943183 :0.711769477998811 +and:0.07359963406644195 be:0.052667135004264946 to:0.04483536256874564 of:0.043448293679263235 the:0.03579172892628988 in:0.028005289969665195 was:0.026700397492138477 is:0.024892551934152005 re-:0.024162182625676702 he:0.024086629517294657 are:0.02098604388819216 from:0.020307931541148256 a:0.018606881911690538 or:0.018077853608073062 for:0.017195224169077532 been:0.01615904189338184 I:0.015254891559368164 :0.015184018660626356 which:0.015016145996292442 :0.464022760988217 +of:0.25874874052892 in:0.17405317943790136 for:0.09554567315415584 that:0.06379896583376085 by:0.05281302622656005 to:0.04925646823797903 In:0.04871321460234997 and:0.04263069004509459 with:0.03805809419354903 have:0.013343638448068334 or:0.011989662921983602 from:0.011495070268727278 is:0.011346157103704943 had:0.009687455877778117 on:0.009652555470078185 under:0.00924674149309045 was:0.008574279100342379 upon:0.008264878904306864 as:0.00784946150211861 :0.07393204664953053 +of:0.38386083485882966 in:0.16435164249008574 on:0.09817687875837851 to:0.06020129024708523 from:0.04085698769066352 In:0.02790344466364059 for:0.02000183449435251 and:0.018991859606835283 by:0.017615662140020173 at:0.016038706349674234 with:0.01492112036901309 that:0.013849201795230916 across:0.011908361031125624 along:0.01091148726128639 into:0.009899726273795768 through:0.009791180367276926 over:0.009116594092316386 upon:0.007343473951145036 ot:0.005209272132136701 :0.05805044142710771 +and:0.23230091233692393 that:0.08435801933213073 but:0.07694023833692899 But:0.031128007488991794 time:0.028309055258705685 And:0.02277653504099638 or:0.017436844950044838 even:0.0162375771578274 day:0.012700202986917349 especially:0.012283548373393313 ago,:0.012049018991424071 come:0.010659562121707577 days:0.008908031008210932 all:0.008782693924197072 ;:0.00841041840575967 which:0.008096103300441563 him:0.008041035746853841 it:0.00802821643432052 them:0.00794447867037068 :0.38360950013385364 +the:0.2603177041296186 a:0.08581102032101535 this:0.08424193955867575 of:0.06816798871346998 in:0.05039794925175704 quarter:0.04973109732880778 every:0.039832729467940954 that:0.03513198233807197 first:0.03036253278706489 said:0.028442379011395413 and:0.02148861610401634 any:0.02097303858179684 tho:0.01571776815036237 or:0.01432947419605746 second:0.014261661380536287 third:0.011276806583561928 The:0.010861336337008826 In:0.01071715583797476 each:0.010554991539534968 :0.13638182838133248 +number:0.08254346461231139 men:0.0451322427996679 place:0.028783043638468165 line:0.02664597374263282 people:0.015598833516345919 and:0.015424679407863186 out:0.015391969672535685 case:0.014984062832440017 board:0.014816686488346173 man:0.014587510453642058 amount:0.014189575861595976 kind:0.013439557753712698 name:0.012963884378215794 city:0.012457769779260722 matter:0.012227970875785208 point:0.012146186222442212 tion:0.012081934729916503 rate:0.01182703699207558 way:0.011247135057416894 :0.612510481185325 +they:0.15978020232714654 we:0.09169517502757588 and:0.04986155776229158 you:0.04910469886513218 who:0.04484154893546315 which:0.03960619734134621 that:0.03758268462743155 They:0.03577048767208522 there:0.03333132167698182 men:0.026461945851272636 You:0.02573651232447781 We:0.02377948828570603 people:0.017512881795080516 There:0.011280443917625399 I:0.010859989065041875 as:0.010560044151730813 them:0.009327403856314108 women:0.007099302155855162 others:0.005019506347222979 :0.30978860801421854 +the:0.2745684377495299 a:0.06517208982856704 of:0.05410728244216577 and:0.04788753133096932 in:0.03305834793172286 The:0.03106621918306794 Mr.:0.02570469393279402 tho:0.018945817474788306 .:0.016925787279365116 as:0.015661821600878083 to:0.015475702300485335 that:0.014607990646024764 his:0.012639394898678475 this:0.012536167631946373 tbe:0.010021375610611206 for:0.009758369280991702 :0.009739481313717241 or:0.009270776704443644 an:0.008980804367155138 :0.3128719084920978 +the:0.32847232595618747 a:0.09128849166357417 of:0.06973174394141028 to:0.06166557906150673 and:0.042921241499747215 in:0.02863844598657462 an:0.024364197265876845 The:0.020261593804391593 at:0.017800272929292208 tho:0.01744675933379249 with:0.014594453905338516 or:0.010589916864299326 for:0.010576025908335665 their:0.010368570514477732 his:0.010083367151222686 this:0.009766067969702264 from:0.009439643821189739 such:0.008919673673198502 its:0.007908205022466355 :0.20416342372741555 +of:0.14229027225300206 in:0.11403832118101093 with:0.07381386451909959 is:0.07353095639293197 for:0.06333777338731664 and:0.05981542792533025 was:0.054776929252279824 to:0.037749962497802284 by:0.03371550489051272 as:0.032512231912010706 In:0.026858144881173388 had:0.024655954513202138 that:0.024231853057477864 but:0.022609667045452628 on:0.0211387222281707 have:0.020794723711628525 such:0.017859490656509106 be:0.016427972598286766 at:0.016056152589476676 :0.12278607450732523 +was:0.11160484515520896 be:0.10570978332880161 been:0.07024956872900491 he:0.06583683830221243 is:0.06258433563155286 have:0.05129413250607465 and:0.04610795990620164 were:0.041587923407405934 are:0.038756401564306736 had:0.028224739902098377 so:0.026397995112363605 has:0.02540928575257562 I:0.024405945762121378 being:0.022120604569661004 they:0.02191113602249437 as:0.020033698989766483 it:0.017775371758295203 who:0.01645588397414805 He:0.014433390254679513 :0.18810015937102664 +the:0.30411772404571996 a:0.12437363565373763 by:0.10263295779577555 of:0.10232026812285241 at:0.0427815775428587 any:0.03242041699691905 in:0.0251643923245102 from:0.022741844439879737 The:0.02227944297821114 no:0.021654416187211957 and:0.016683886141245514 tho:0.016682477315354546 this:0.013398497196029322 said:0.012166816877505105 that:0.011694407317370726 every:0.010549957150303078 tariff:0.009500744867612305 general:0.009431553540249242 his:0.009170068626748885 :0.08923491487990494 +the:0.2006315676619266 of:0.1264468763615139 and:0.06695119123262053 by:0.04627600204255705 Assistant:0.04605900709928593 for:0.02953576117432281 at:0.027006588942630784 to:0.020373927724749906 The:0.016191154352138443 that:0.016161103036704958 in:0.015852356937549526 tho:0.014322684324598147 said:0.012940721592998737 which:0.012683837559614997 as:0.011706157835542231 from:0.011256207283573617 tbe:0.00743261556045943 Mr.:0.007174836144794666 Mrs.:0.007143300399843367 :0.30285410273257435 +an:0.45473845922777867 the:0.13431328395687742 An:0.07970590237875744 The:0.042248246454141096 that:0.027091780042941972 of:0.026790589759829595 and:0.021771937291301374 this:0.016653449284620776 any:0.013494371263896746 no:0.012427697268498267 in:0.012419139872230537 little:0.010803910844566757 tho:0.009369824269984575 This:0.009080229503097255 his:0.008100946930558359 or:0.007543436133995301 other:0.006242170722089817 for:0.006199722353576694 whole:0.005970125946019819 :0.09403477649523755 +the:0.431554819014844 of:0.07782575375284698 and:0.043378606962378406 a:0.03842559981522435 to:0.03722619840962663 by:0.02341452043629473 The:0.02199058722535534 tho:0.013577460758757928 A:0.012993560238669677 with:0.011899291829178 at:0.009806781570636932 from:0.008493468161046045 for:0.008119763726144582 .:0.006436834546388606 that:0.004749249080750623 tbe:0.004550955712239758 old:0.004541828961713947 in:0.004496597323854368 or:0.004050584228706846 :0.23146753824534225 +and:0.09633482275021144 was:0.06797072408469729 is:0.065862492536603 be:0.04361565612294014 are:0.04235809460622038 that:0.033591071971449546 had:0.026936951201357192 or:0.026917445596008848 not:0.021075495693352347 has:0.019778420766230907 were:0.018802347107683217 it:0.017540424753189048 but:0.017117996024870154 have:0.016559782062031275 in:0.015759053470226707 as:0.015075274107200436 for:0.014489651575588507 of:0.012267799102643112 time:0.010854374913617825 :0.41609212155387865 +a:0.18228894964000125 the:0.15864564673351 to:0.1286966729955331 of:0.08782384246675769 and:0.07304260123716788 his:0.031098382759852855 will:0.024383943279772856 for:0.02436331836461072 with:0.02383760065370017 in:0.02274405540472843 not:0.01496836933484488 The:0.013582462686585663 would:0.012923106271632626 per:0.012456614275844555 or:0.01223945457111802 my:0.012176310842530924 their:0.010501956305847663 at:0.009967544822482109 tho:0.008965568973812885 :0.13429359837966573 +it:0.13065774525975032 It:0.09184764754425598 he:0.08980623267704053 which:0.04926738432719698 I:0.04368703420403734 and:0.043328810402848035 He:0.0403650279597439 effort:0.026165436828868915 who:0.025202026005716593 she:0.020945460814985082 that:0.0182607587020871 attempt:0.017599538291409787 mortgage:0.017411680905826326 bill:0.01587419579426604 there:0.013318531040735774 man:0.013085469999891857 what:0.012558871008829466 This:0.011608406523328984 She:0.009852511451257113 :0.30815723025792385 +the:0.4756453081366088 thence:0.07006098413088518 of:0.06613493213550457 at:0.04748433398861664 tho:0.028149832577902358 on:0.023914081201508317 and:0.023440836293515347 along:0.020889476242429563 feet:0.020466382874388823 a:0.01610989454127488 The:0.014285759761667545 from:0.01351957961101596 running:0.010394491112178227 tbe:0.007497880506613238 with:0.005991009286565855 by:0.005934520112949164 his:0.005903723765585281 in:0.005668026313875267 to:0.005641450398592518 :0.13186749700832243 +for:0.1294610296752932 of:0.12288975732651625 with:0.09191896582618093 to:0.07862889362119965 do:0.06444922942922139 in:0.05919219339554635 upon:0.05617705457586407 on:0.035343762242494685 about:0.034984771425776884 by:0.02643550419069875 at:0.024163906661823248 from:0.023544646193755212 against:0.020560925398479868 know:0.015892800139999257 get:0.012474867165092484 over:0.011756509346288515 doing:0.011669625364135933 and:0.01092964255998064 see:0.009521860028580771 :0.15900405543307192 +of:0.3538394518127074 in:0.2713999686901072 to:0.06544788390635355 In:0.05547419112616224 for:0.05507526685983094 by:0.032966871856618805 that:0.026110285560345125 from:0.022310124502708927 and:0.013985535290710676 into:0.011664756948038282 with:0.010329110715594326 on:0.010293610677731355 which:0.007534091441318814 as:0.00644472438036678 ot:0.0061718780214554654 through:0.005792440655990071 iu:0.0057262077785706625 at:0.005722601806752479 throughout:0.004555497297889614 :0.028155500670747322 +it:0.12095170213729357 I:0.10295253072398855 he:0.09334846102451981 It:0.07560258178653198 we:0.07475312662710235 they:0.07214204772571246 We:0.030151283973907466 and:0.02932294138389299 you:0.024017617487323593 she:0.0217617484534564 which:0.02015335738562504 that:0.019474813901445006 He:0.019412464993831032 They:0.016494013645298986 who:0.016280066098497956 man:0.009946927938764435 ho:0.0091155519095246 there:0.009028002202766 people:0.008837686362582114 :0.2252530742379357 +men:0.03716555152371185 hundred:0.026171111808649405 north:0.017938861274403424 city:0.016988664444344496 time:0.016963091986542566 wife:0.015216123841302038 gold:0.012787391201481892 up:0.012041132414409766 land:0.010926605308767498 county:0.010594292604421601 friends:0.010212065601303983 life:0.010079839376986421 long:0.009111090051909892 down:0.008939267138509932 officers:0.008933441788014258 man:0.008327661651262993 to:0.008278247723326238 state:0.00818049631098331 women:0.008015839224928423 :0.74212922472474 +of:0.2098989939863432 the:0.19327490799196084 a:0.07833472147910188 Of:0.0745649972812228 his:0.05585238093423763 this:0.03617080499054435 my:0.026198710927151623 in:0.022473906387131943 our:0.019925127994027632 their:0.019353212041061038 The:0.018912901700011378 any:0.01703481799899709 no:0.014612652745086314 such:0.014257536354751554 and:0.014150161101059277 its:0.01413690942409122 said:0.012354868189653624 her:0.012019415171702075 at:0.010704571830109123 :0.1347684014717554 +the:0.12970555191096148 and:0.07969282385633772 of:0.07803520164470272 to:0.0738847403371458 a:0.03871864922209074 was:0.03862666091046785 in:0.02836310231794324 be:0.026579703187511544 at:0.022696828906246382 his:0.02223723929109726 is:0.015413536880348818 on:0.014529857033236289 their:0.013292580713614095 for:0.013119460177221756 Mr.:0.013033956779172934 been:0.012800614428157966 were:0.011809551367818086 not:0.010646591241453488 from:0.010564547921729428 :0.3452488018727424 +with-:0.26910508468023586 the:0.08881785795332826 and:0.04960605885645922 with¬:0.03880203323816743 sent:0.03158193806947146 with­:0.027722295012944265 it:0.026487194758657715 went:0.021451716432538286 go:0.017736892283342628 taken:0.014080372444194888 was:0.013862569711583582 carry:0.013178603927298563 came:0.012954583749039201 them:0.012553095957687499 of:0.012485449213776655 made:0.012329311627595296 come:0.011851692657836563 brought:0.01173946146105017 set:0.011432217377391215 :0.3012215705874012 +:0.07667447687867439 it.:0.020257805509975954 them.:0.018578221131327455 him.:0.015272359974087189 her.:0.009247513315742657 country.:0.00787797720776152 .:0.0077147656303730655 life.:0.007505115719191223 time.:0.007116338090721826 day.:0.005492949877853535 all.:0.005485262581198328 well.:0.005418098431432162 water.:0.005396843917515598 work.:0.004819517659793614 when.:0.0046981003448813416 us.:0.004620071952039877 night.:0.0045758193155064466 -:0.0044518789074366955 man.:0.0044443619742953275 :0.7793525215801919 +a:0.10428231665461764 some:0.08546759312176397 any:0.07994355163603088 the:0.07303984164940992 in:0.029454522901414374 and:0.02884343605024544 this:0.025060704641437122 of:0.022740220679095605 no:0.021058883424556585 one:0.020076396994361135 that:0.01990260236657794 his:0.017504900306126885 highest:0.015695717123246827 each:0.015345233474476819 other:0.014848341631267395 every:0.01341423614599782 great:0.012967933983424662 certain:0.012541102213184255 large:0.012231607816475996 :0.37458085718628875 +he:0.13106659921503622 it:0.111116803945251 which:0.07958069856570567 who:0.07332525148191239 It:0.06803034685951598 and:0.05619027037099564 He:0.04830804491595306 that:0.043690474266615806 she:0.022638298960425275 as:0.015982616305697438 man:0.015335864581545575 company:0.011865104402850652 one:0.010755124144643028 what:0.009826297707914926 ho:0.009269728353264972 lie:0.009001471068771416 there:0.008261408220677679 She:0.008259186805025302 time:0.008030154025559075 :0.2584662558026389 +of:0.1857266569990424 to:0.12384977035360331 and:0.12000119288420595 with:0.07059290294323237 for:0.06256743099994995 by:0.04490797525279553 is:0.04445809330204666 that:0.04396887546797613 in:0.036182485560654405 as:0.029819757355930714 all:0.021406490179089077 on:0.019556412637602008 from:0.017833864608956994 was:0.016789969988987116 upon:0.015423919742713928 but:0.013834428107985554 are:0.01162672552363643 be:0.010325135483741438 or:0.01003847277388983 :0.1000894398339602 +the:0.1454500361787387 of:0.1080247151493501 to:0.04516715868785427 boy.:0.036249098323069925 and:0.03403580073245388 girl.:0.032660326140049385 a:0.03171979252021135 in:0.02714044436566853 for:0.02365213940166824 be:0.021942286684630472 their:0.021087116084698817 his:0.019774122064073623 was:0.014637031197642503 with:0.014008395154201525 are:0.012730720509515858 is:0.011363112041341867 as:0.011357870543086747 from:0.01063391638067422 were:0.010589399829418696 :0.3667765180116513 +the:0.8584521000425951 The:0.0330697603176337 tho:0.030504791311116726 of:0.013203514654605815 tbe:0.010837521580049997 that:0.005570254371882922 this:0.005137106226912367 in:0.00463692348786426 and:0.0036786793078817143 from:0.0028531070309584464 an:0.002260141783547801 to:0.002163737153513767 tlie:0.002006496645765118 on:0.001967979314851435 these:0.001735814084759589 tne:0.0015197245782689137 for:0.0013193477059492075 a:0.001262820773771208 its:0.001209467828055214 :0.015610711800016722 +the:0.26291580671942194 of:0.10156380729415844 fellow:0.050277911772292 and:0.04813783734832304 other:0.03874228744793054 many:0.03128789748989396 these:0.029264091638182572 our:0.0272592078923471 his:0.024617016109063573 good:0.023543472930899433 their:0.02288519132095342 to:0.01965631897412845 a:0.01953895174913016 or:0.01900510568756739 The:0.01773629983282925 American:0.01729025265365362 such:0.016697765758990454 tho:0.016156915543140866 old:0.014525912075302034 :0.19789794976179176 +p.:0.49300838234824285 a.:0.20428304318171817 p:0.034925771700919074 and:0.02766518613018198 the:0.020654447756072288 of:0.011653676402184048 a:0.009841978705372107 for:0.0047048658980368896 dis-:0.0039007532846581233 New:0.003383282069260527 to:0.003046050220403325 1:0.002959103912020583 as:0.0029588104122273335 p,:0.0027274296596345666 .:0.002481880285154476 or:0.0022758708451089647 in:0.0020775744975322133 little:0.002020531302700192 old:0.001966164057781352 :0.16246519733079098 +for:0.3206269530133618 For:0.3010948753257739 of:0.08179093449419812 by:0.030957849582790638 and:0.030665634099231676 to:0.030230909690824176 in:0.028345707119966417 so:0.01779296290420835 the:0.01443763540058393 at:0.013965798339298896 this:0.010303409351938558 In:0.010283816575613941 that:0.009598548307483842 do:0.009556723505040339 very:0.008816219970201893 an:0.008001776945630135 a:0.007936255823486095 will:0.007708951682098693 can:0.007683618522799265 :0.049201419345469295 +of:0.378322505340393 in:0.21590353539164164 to:0.055753724200738805 In:0.051748357939832894 that:0.04290614021619129 for:0.028317405224377038 and:0.023932685436010362 by:0.02270979676263222 from:0.01866411103727117 on:0.017653155882130407 with:0.013225111466996632 at:0.013104437477700539 but:0.007169652039342596 upon:0.007055696943607091 into:0.006080108594074691 iu:0.005722120159435747 which:0.005497343295200641 ot:0.005198455368848244 make:0.004284875040448484 :0.07575078218312649 +was:0.08772210429063106 and:0.08667772845435588 is:0.05564377045942503 are:0.04372997575867518 were:0.04329112133180536 be:0.03396900474112907 been:0.03271916394441119 to:0.025764396078080818 of:0.01593887348954834 or:0.015148317421197925 came:0.014286440933863696 not:0.014174707673414139 well:0.014003558778447594 being:0.013630657648196922 now:0.012618402900533324 up:0.012184322591315334 them:0.011052919446010456 that:0.010680570067970852 as:0.010333723330291377 :0.4454302406606965 +the:0.19379594192248137 a:0.1586032120205081 at:0.09936221106222416 and:0.04746515123521478 for:0.04403564836532673 of:0.03690678602369703 an:0.028975324883085275 to:0.02598654871092296 in:0.019136644603326175 any:0.019104256234298476 which:0.014284429894487801 that:0.013787919950912133 be-:0.012766191135000403 con-:0.010177439919331491 his:0.010159969504382447 time:0.009891615243818444 from:0.009845403726232485 :0.009677990534648425 tho:0.009592946041824542 :0.22544436898827677 +to:0.5235424859017642 the:0.08475419030939206 of:0.07988386987562575 a:0.049889140830408095 his:0.028142701001942484 and:0.027812197961443186 for:0.024594237792035324 or:0.02264199975946666 in:0.018794281032903735 her:0.013088063096799418 their:0.012531559041418791 not:0.011776409299032184 with:0.010265480690448374 will:0.007891240525098878 at:0.007836441779519698 could:0.006483984273393755 its:0.006405434385900794 can:0.005747603911981862 by:0.005595365321077563 :0.05132331321034721 +the:0.24196072964842366 of:0.07935544901233035 a:0.07335512292885359 and:0.058930596954070415 The:0.02083816509480752 that:0.018354947850990743 to:0.01617275881878213 tho:0.014215505439141313 as:0.013700739157232278 for:0.010432440895545498 in:0.00971398811718297 said:0.00967081179997318 or:0.00888599553404827 this:0.008509167265548694 his:0.00810223377587067 an:0.007839522595771864 :0.006881905810308003 tbe:0.006795608676296175 .:0.006525071938704198 :0.3787592386861185 +more:0.030383348124994256 hundred:0.01642914793608755 time:0.0149582614249818 it:0.013166364934713588 one:0.012383656209419676 and:0.0091347378036164 good:0.008201177390326947 up:0.008166684474497593 due:0.007934096068424892 him:0.007864060663393922 in:0.007110473915706476 them:0.006775308563214122 all:0.0067174108545430735 out:0.006691623937495212 it,:0.006560675142084858 men:0.006530808669410866 long:0.006456615272428256 man:0.006428757376377072 large:0.006362361243509713 :0.8107444299947738 +North:0.008534397447939431 men:0.00827484767913635 good:0.007956030524399707 rights:0.00755257168144298 ;:0.007321879023055627 hundred:0.0072015129881953036 one:0.00606631778404923 time:0.005875142526128772 street:0.005655923923348576 land:0.005530909625548018 state:0.005023929423613874 up:0.005007379113186728 side:0.004964108553158891 :0.004850306093316083 and:0.0048452205427448585 due:0.004828121395671907 city:0.004801516955638679 them,:0.004767976335892619 county:0.004631317947701908 :0.8853105904358305 +of:0.28767355066866834 to:0.08775711267569858 in:0.08678131196995101 and:0.05160598694501188 on:0.04646139928102899 by:0.04519522654900943 for:0.044547789071328545 with:0.03396756772609607 that:0.033699232901107726 from:0.03075346596941143 at:0.027039283056790858 In:0.021061449543044047 as:0.017514234937992545 all:0.012543839382496166 upon:0.011844431150487573 is:0.00998972746569266 was:0.008814315973987914 into:0.008557199930727406 through:0.007781895704231326 :0.1254109790972375 +of:0.2917268351623647 and:0.08635478758094653 by:0.07644387211221426 to:0.07498956689763257 that:0.07309514938109743 in:0.06705300118453328 from:0.03799613467551662 for:0.03692653866970655 with:0.028065992939779065 provided,:0.025812309374190462 on:0.025181658504020852 In:0.01433826908553186 which:0.014288274129409919 upon:0.011707670743741358 at:0.011067001029860983 all:0.009221910280057397 That:0.009185702809103215 as:0.008633319367177433 before:0.008021653602937029 :0.0888903524701785 +one:0.1028303141280697 part:0.05963429477052991 out:0.04766456937681193 some:0.031418679026461914 members:0.030764490253327767 side:0.029940657362655835 portion:0.022063658796890564 office:0.020457735219956013 member:0.019726706386316174 end:0.019666887540649894 tion:0.018667441728710307 parts:0.016814747270460957 people:0.014112771422418794 all:0.014072739582212475 any:0.013183573287639892 One:0.013083578354183906 that:0.013024335602903442 account:0.012482348155001894 many:0.012077825070275192 :0.48731264666452345 +the:0.39749834532651884 a:0.07520030034269234 and:0.05540858759821703 The:0.03273515726769502 tho:0.030061875542463562 of:0.020144331424922633 tbe:0.014929647509541684 in:0.014268129706664795 or:0.013333166761078447 .:0.013287381914101323 an:0.009000188755386574 to:0.00880680429595084 :0.007943763822197133 Mr.:0.00773879605474787 by:0.007328417831573476 as:0.005922572098978465 for:0.0047526933692942485 that:0.004736121968310169 on:0.004594595720579333 :0.2713091226890862 +the:0.4801645742237826 a:0.2109410556986713 at:0.08937302992631334 of:0.03487122148990663 The:0.0340198636952058 tho:0.02139248702030108 in:0.015452045019398751 his:0.012668917608129087 for:0.012005540007659393 and:0.011837934019606276 tbe:0.008244419153972405 A:0.00590634201954582 to:0.005542539521052551 as:0.0052938827779939876 very:0.005059077993604127 half:0.004799113438826403 their:0.00451570199919678 In:0.004272217949082282 its:0.0042361217227732005 :0.028403914714978187 +;:0.05961410004791267 it,:0.02405729917350465 him,:0.012348739310359779 nothing:0.011966137935875705 them,:0.011619927635044646 and:0.010330611288880551 time,:0.00979375397119 ,:0.00772176031598827 is:0.006229730859358793 here,:0.00599355963606679 way,:0.005710150745758363 country,:0.005516263326243343 all,:0.005362011946180895 money,:0.005300808776855374 out,:0.005046149975518835 it;:0.004837788833528185 so,:0.004806311695604337 one,:0.004802709663784293 man,:0.0047713785464694606 :0.7931708063158751 +the:0.4926704294546541 an:0.15780449526233917 The:0.08761999436847503 tho:0.030841546446884534 An:0.02954549172170621 of:0.024790099629562915 a:0.0144512176979018 and:0.013715252184853869 that:0.013464782324367137 his:0.012743649546949343 as:0.01151704320005636 tbe:0.011272261657149953 by:0.009529052926778825 our:0.00918003366444472 some:0.009092425536264749 good:0.009000986226944186 dear:0.00813825806059476 very:0.008045085829861907 their:0.007186806875304329 :0.038391087384906104 +he:0.13007859219839027 I:0.11079417221083068 be:0.10575831989378383 and:0.09791754230133919 have:0.07954705969155111 was:0.05187068838689056 had:0.0490967028786653 has:0.03734973127679697 they:0.03575595433409272 He:0.028822832677326903 who:0.027901064932948423 been:0.027848575753471112 we:0.023826773890613617 she:0.022378638724268513 then:0.020554946064913995 is:0.020270896819458324 1:0.01464790806965778 ever:0.01456328008947769 being:0.014223293924532142 :0.0857930258809909 +to:0.3153215271115505 I:0.08890647932424056 will:0.07654272180737652 we:0.053243254563364796 can:0.05290466493063306 they:0.045611315129276776 would:0.044652986386106944 and:0.038347148125280485 could:0.03416647430489919 not:0.02320169409103406 We:0.018418730864747546 may:0.018213301222247884 you:0.01703689328890808 who:0.015383101107667758 must:0.01341423826535194 should:0.011084534805802529 cannot:0.009396394099198166 shall:0.00830960837395301 They:0.007175845914695571 :0.10766908628366463 +the:0.40420523840754646 a:0.062076061538943336 and:0.06177426069261 of:0.057861390563088505 The:0.03941327489419146 his:0.029778010644036044 tho:0.028522191509666003 to:0.025868714072674666 in:0.02038301948386291 her:0.01455415655443984 its:0.013886089408370677 tbe:0.013793632955648028 our:0.01364144489032461 their:0.01242460432285664 for:0.012310639095547662 that:0.011645728779813335 good:0.010736629069006163 your:0.01065074474185156 two:0.008560697371637411 :0.14691347100388472 +the:0.0764194425086376 to:0.07377813118209936 of:0.06227292320110926 and:0.05652468208245307 a:0.052235733595418984 for:0.024701610052633768 in:0.024246799189427678 that:0.019172646085243893 with:0.014696363893942023 is:0.01467773484802498 or:0.013161363625593843 which:0.013115110005278837 :0.01259247547412342 as:0.011292741448661197 was:0.011268015034616915 be:0.010433262643653922 by:0.010285110261083374 an:0.009232751532034393 are:0.008769821072551764 :0.4801232822634117 +a:0.36247825650892984 the:0.1328631400393691 and:0.04487808191154121 of:0.03598016051911511 A:0.03344414772304855 The:0.020337860572841697 I:0.019272401090647064 his:0.016280450408092267 this:0.01443377220271374 very:0.014011225710706045 to:0.013449222006872659 he:0.01050633968541688 be:0.01041349499286181 by:0.01024022054820635 our:0.009575295220513542 1:0.009503598510566343 no:0.00911626534489062 was:0.009009238221709822 that:0.008968500929260964 :0.2142383278526964 +the:0.11919516938815296 of:0.07230453158552728 and:0.05781056740443249 a:0.043018564803886335 to:0.031305092790907506 in:0.020848713353460488 at:0.014270110001066288 .:0.012526810245749479 :0.012413283442322082 for:0.011719122709941797 by:0.010808400946589808 or:0.010404172990115616 The:0.01003576004804544 with:0.009811868184449042 tho:0.009295902015355835 was:0.008924239095331684 that:0.008672304223433876 is:0.0085591147338948 be:0.008335143826716943 :0.5187411282106204 +it:0.10697635414912482 It:0.08660397492972571 he:0.06577954200674871 I:0.053624817285413885 and:0.042505296824508834 that:0.03910860091545032 which:0.03698091458639078 He:0.02218380456164104 .:0.0206132807473544 who:0.017014412191261985 she:0.012268059733037476 This:0.010893622421111087 as:0.008636225966530551 1:0.008408995388857378 W.:0.007814386782961473 this:0.007763634856935254 what:0.007150237466942473 man:0.006704604375045899 there:0.006072145919049591 :0.43189708889190837 +the:0.267951450020107 a:0.08978457211581554 and:0.08278527365698377 of:0.05532042761045676 to:0.03688260176424521 in:0.032899320884299615 The:0.02418682789810983 tho:0.016136584502203153 an:0.015213717246239274 that:0.014459783045055283 for:0.013475493708919596 his:0.0131277859184323 or:0.009971146982113977 .:0.009687047299110851 will:0.009605724895240642 no:0.00915844438111942 as:0.008941054995318541 with:0.008921535722252573 tbe:0.008720820492235817 :0.2717703868617408 +of:0.1586528557166086 in:0.07474876100359913 and:0.06943369507558449 by:0.06373629996341787 as:0.06263021281335905 with:0.05693794409887777 to:0.05173412329261593 for:0.04448590120139279 such:0.04144476700373335 on:0.03442787074308452 is:0.03226415274299552 at:0.031059059650158396 was:0.025946177013268425 from:0.020823698615584446 In:0.019561216226454032 that:0.016315948643766513 upon:0.01613542839382926 made:0.0152334908636645 after:0.013474144220785429 :0.14995425271722 +the:0.39161415872036215 of:0.10286023052993713 in:0.061190830118714234 their:0.042489981934447106 and:0.03697849799123145 to:0.03641525052746906 a:0.034426160182905265 our:0.03115165604686836 his:0.026158326818240516 The:0.022778754662743803 its:0.021547810260574733 this:0.021321492201683126 on:0.01916045333276333 tho:0.017052861728643 by:0.017016557585961607 In:0.016316833617454403 any:0.014135807152388213 said:0.012023498797331583 or:0.011024001105910163 :0.06333683668437072 +sum:0.03352282876311118 number:0.028116684882597106 line:0.019995206059833036 city:0.01946514558931857 out:0.019275318828420953 day:0.01666865340772654 county:0.014872697538657208 amount:0.013254184849875051 Board:0.01252325449624941 town:0.012449555905674143 side:0.011663975251122375 part:0.011517157473718155 County:0.011460540331966697 state:0.011087331502382173 City:0.010878919191854432 purpose:0.01081028255427907 and:0.010297866493795984 way:0.009848747943663767 name:0.009522170936943183 :0.711769477998811 +of:0.09129790931378902 the:0.07369883040827747 and:0.047842263382354346 in:0.04189055351593407 to:0.04045875475680249 a:0.03542341257202578 be:0.02020462051672066 for:0.01979292654746225 was:0.01760256398103379 at:0.017380150555488715 is:0.014984483003968216 with:0.014047653760730413 by:0.01374644383819499 :0.012670486581795598 In:0.01200961464556976 or:0.011563835749786333 from:0.011391516893522809 are:0.011273104484969465 that:0.010755276030689069 :0.4809655994608848 +and:0.2516948708600109 was:0.06323642471673338 to:0.0459149210732006 is:0.030169457362581094 not:0.028956271105003928 will:0.028510676325194287 but:0.023408501704093077 that:0.022443377771790993 I:0.020301868111510968 him:0.019583246506679634 up:0.01819378163093257 be:0.01599180391622542 you:0.015841045320276057 then:0.013962267179740752 it:0.013665958294464908 back:0.013346108860926638 them:0.01205555532852167 out:0.011956667793285596 over:0.011196156392762282 :0.3385710397460652 +of:0.10036425554061128 and:0.09867255827094257 in:0.04887477001133228 to:0.04309676529803197 fact:0.03312124920228808 said:0.028016465130273754 on:0.025147031828386315 all:0.020897671259005178 is:0.018989333611116044 so:0.018899457882617265 from:0.018463519784011995 for:0.017651195592365977 at:0.016946018612698295 know:0.015554635744109193 believe:0.015397314140675087 say:0.014489633297242495 with:0.013970217188878864 by:0.012605124887586036 In:0.011949884106238937 :0.4258928986115884 +is:0.1520393434326444 and:0.15153982489469228 that:0.09861268408577888 have:0.05833006851775695 was:0.05246111637719342 but:0.04608423259889211 had:0.04291728991810075 be:0.037304115545038895 of:0.035639106516168466 or:0.03436031198081947 Is:0.0278139318588988 has:0.027557844241445063 are:0.024735274522875432 by:0.02413223242158841 with:0.023761559260717394 in:0.023071552044892953 for:0.016872570974128108 And:0.015077167318416167 to:0.01461854729017046 :0.09207122619978161 +to:0.18064955253571816 and:0.09463020473122337 a:0.059482790680772814 be:0.05008963028569554 the:0.043660904563855865 was:0.043169067539319 of:0.03153604194186626 were:0.029318621026073827 been:0.02636446078926678 are:0.024916497917502552 most:0.022459640195402503 I:0.021229136084690035 by:0.01995671973320218 is:0.019255605055636317 will:0.018052536868246538 not:0.01768979540661742 in:0.013653279716568096 or:0.012029931130209734 1:0.011679421367072434 :0.25917616243106056 +let:0.21079447441766144 Let:0.11877541820143994 to:0.07633596491087706 with:0.0711104411308441 of:0.0641949158821517 give:0.05829719361418497 for:0.043140141047955334 make:0.03692431397817397 upon:0.025001185686306375 gave:0.018981823041358998 by:0.01875191814503217 tell:0.01646242076536725 among:0.015357319752519012 and:0.012224899256891332 on:0.011643770948485536 made:0.011233604733847994 in:0.01065826330830099 given:0.009835313791453363 have:0.009762880949127882 :0.15951373643802055 +to:0.24487662775160446 a:0.16201171062869066 the:0.1131140223553236 and:0.03833136608495335 his:0.031006810049397246 will:0.030275421791983812 not:0.027477855670720863 water:0.025637469972347292 good:0.02423753831543931 no:0.021718997881399426 this:0.017489342670543816 or:0.01637999934547768 great:0.015072908203510793 their:0.015058916212506032 of:0.013795006743337997 one:0.013378288998646282 every:0.01323731104217068 her:0.013191656787472607 first:0.010880193252022517 :0.1518285562424516 +I:0.14412001044045586 may:0.09806216808373017 and:0.07988988727269629 we:0.07551607582744245 they:0.06820393767937065 who:0.06607858173808812 not:0.060311478047388234 We:0.053104014483569884 will:0.0478791308688378 to:0.038592703006794064 would:0.03327324939568205 shall:0.0323093732358895 should:0.03204483959841914 can:0.030008781476108276 They:0.024879895215605442 could:0.018994170046173642 might:0.01665130788782981 must:0.016275790895189223 he:0.015186806066016797 :0.04761779873471259 +and:0.17002764950313118 of:0.10962500787574016 by:0.05387510140199261 after:0.05222898862103169 to:0.0513407060889309 in:0.04853085704507901 with:0.040500441585929046 for:0.03907033226370272 without:0.03407274053057911 on:0.027952128899249272 not:0.021202528085816193 from:0.020438156539111626 that:0.015679560243586493 After:0.01223238266647894 or:0.01212121174259395 upon:0.01186978462469404 as:0.011260326922211126 is:0.010470489315470847 persons:0.009911938620582985 :0.2465896674240881 +to:0.18503586548685264 told:0.0854884507740425 tell:0.07699600059097503 with:0.05906639237566864 of:0.05202905962698214 for:0.044854801195274296 asked:0.03524512831794223 let:0.027770982177038495 gave:0.026231223771449038 upon:0.02250469848364553 give:0.02239188729790251 see:0.015930714411085456 at:0.015608519284386316 against:0.015108060309068489 take:0.01462091614651747 on:0.01422177326767379 from:0.013752220413998829 help:0.013327364093231932 before:0.012327148355512104 :0.24648879362075257 +the:0.1865257351412738 ex-:0.06620201469251592 have:0.0633499637713794 has:0.05636034678162644 and:0.05461296294802771 a:0.05309033548733397 had:0.041885078771891564 im-:0.025163941381785265 of:0.024744398008166194 that:0.023290776748199887 an:0.022218422912788454 he:0.02025873329257668 be:0.01720566914967831 w:0.016815117139757706 The:0.01679779506903939 A:0.013992649583665187 ex¬:0.013410370793152054 tho:0.013047015584857435 1:0.012728928065656078 :0.25729974467662853 +he:0.28038799678517357 I:0.12293822175253585 who:0.07769200060811096 she:0.06270040996181644 they:0.04103839904577969 He:0.038656382847900655 and:0.03700874492880437 that:0.02742128990245698 which:0.02666077795991527 we:0.019869264181610394 man:0.017109119899335647 ho:0.01451145196461505 She:0.01356324215676557 it:0.011569433937347228 have:0.01141611376585116 lie:0.009571803553884125 1:0.007327598322586486 be:0.006610098829138367 what:0.006597398897778946 :0.16635025069859324 +and:0.21446137889310138 he:0.09865798462219207 who:0.06581639618011756 which:0.05787920207055679 they:0.05103633433635795 I:0.04536721479235143 have:0.035506178655677706 be:0.031468290185770104 He:0.030038872628165087 has:0.026904428379929422 had:0.02291711083939794 They:0.022020653156189673 we:0.02068284210511948 she:0.018811922012435395 then:0.013535815929640609 that:0.012945944708447888 1:0.00980047424651481 was:0.009160972497967077 committee:0.008903380981250902 :0.20308460277881674 +that:0.12264007071330951 and:0.10528312851835263 but:0.05731565257034666 which:0.04328489112259509 if:0.040652390695557726 as:0.04015964510227747 when:0.03730755853261439 what:0.031288069825615564 If:0.026480183178769424 :0.020541021788395366 because:0.01946365768888685 time:0.016470853043018336 But:0.01642834109093917 so:0.014135984160482184 When:0.01370698309943746 whom:0.012065531197360488 for:0.010738529759367385 it.:0.009638801371863093 while:0.009616622074571835 :0.3517820844662394 +the:0.1264863315033598 of:0.08398575901066685 and:0.05340322492274199 to:0.04966600674836224 for:0.04089307382152015 in:0.031083136047088088 or:0.016736755615518524 be:0.015376265830008572 that:0.01419804910060605 their:0.012308004692544285 by:0.01181996242694313 he:0.011070968428988592 :0.010951524630059151 at:0.01047384298665059 a:0.01037631766482284 was:0.01023729301231533 is:0.00984843336546255 his:0.009479499176263508 as:0.009377414067516958 :0.4612281369485608 +to:0.3085488667966132 will:0.15239796824162166 shall:0.09829670339468395 may:0.055758869981353855 not:0.046615995789469906 should:0.04454226145612215 would:0.03591109076772827 can:0.03340785266192266 must:0.03332139212763286 could:0.020764030025759165 hereof:0.014063401073070698 cannot:0.012530766778608753 might:0.01197174800333052 and:0.011475727586749454 that:0.007909572891965278 also:0.005199988271177877 order:0.005014314285356233 it:0.004787094865491071 never:0.004004687518770563 :0.09247766748257188 +spite:0.038017404187114835 out:0.0372686137516049 and:0.03570169315863753 that:0.02655890867341167 value:0.026090366280772923 part:0.024620158961039675 one:0.022785694164029972 sum:0.022119641127047777 amount:0.019859617002542403 tion:0.01811436175197411 charge:0.017458813565391796 payment:0.017448710700355818 account:0.017441337297585194 any:0.01673074464939334 names:0.016248397088161642 some:0.015729751533454937 end:0.015377415033100016 use:0.015376586282452533 people:0.015234020980039863 :0.5808177638118891 +the:0.13298932067388722 of:0.1004418814391597 and:0.07662688606019724 to:0.0551857220758753 a:0.02999272972017719 be:0.029201343109578753 was:0.02058665909919615 in:0.01894326761523558 is:0.01828977707268639 his:0.017826116723285365 their:0.01581164203254084 or:0.013545868622592317 with:0.013169646022567342 for:0.013045819813289962 by:0.012289098447915663 as:0.011880604736663207 :0.011763443424779946 at:0.011596227858354693 are:0.009875915096283173 :0.385938030355734 +the:0.3796066760977979 a:0.1741159377561059 his:0.040645839378904036 The:0.03344076431063444 one:0.026016466905112653 tho:0.02298699945919756 any:0.020193949473313468 this:0.01962292401460483 every:0.0163343881170295 of:0.014069417309725007 their:0.01328060558663347 each:0.012660226637296945 my:0.010755202737972662 for:0.010362710885219565 tbe:0.010266631418992775 no:0.009973061731915936 its:0.00916286218749502 same:0.009068517787227032 your:0.00889963048357333 :0.15753718772124797 +the:0.21059581447464895 and:0.17905745549336416 an:0.07420777090530833 his:0.051989083816609535 to:0.042653523002165086 a:0.04254526573527712 not:0.04047174544791315 their:0.02532296921197073 will:0.024462214044499393 her:0.023491409310981756 or:0.022849868115595043 no:0.02269688329390297 in:0.02244400726616567 of:0.022148092081382114 is:0.021832235820121223 I:0.021563492849667847 The:0.018839903459662122 its:0.015452167326301119 this:0.01531571381685706 :0.1010603845276066 +the:0.2838644965050256 an:0.19598999718068438 in:0.058761093967093087 of:0.05360924569125345 and:0.05122317046157715 The:0.03440160881050651 tho:0.019121465048711216 a:0.017907668879870265 In:0.017116347926717658 any:0.016517077149294793 An:0.014696846442550262 for:0.013909068805035943 his:0.012682692091707375 its:0.012360733968733136 this:0.012350291445784338 with:0.011510564975404192 tbe:0.010431201924214753 their:0.00993491406016242 no:0.008929371370257382 :0.14368214329541606 +and:0.11407116966175274 of:0.07107079484512498 the:0.06656730291979027 to:0.05335924540680701 be:0.02740068005735919 a:0.02260417818487592 more:0.02213765112741375 in:0.02051572430464391 was:0.01921309187923535 or:0.019187461572761966 is:0.01905977581138103 for:0.01903629630887901 that:0.01789181571214341 be-:0.017434743418629745 are:0.014819956712198552 with:0.014357000995703835 were:0.011289330063959966 will:0.01101235889555647 other:0.010533063132933779 :0.42743835898884913 +a:0.4385523880317451 the:0.0868937169169898 this:0.07154259850760698 that:0.04253971151301872 some:0.041238208543852 any:0.041133553983911754 one:0.026589115550055758 every:0.0246380059388354 and:0.020272552461817674 same:0.019815659414941147 no:0.011441363870947305 first:0.010700749285747246 This:0.009860712868603955 what:0.009580636410363523 A:0.00937277535206392 another:0.007075659373129004 great:0.006865718595766703 by:0.0068284103360327945 very:0.006612411042619256 :0.10744605200195191 +in:0.026839429578577833 ;:0.020890131294478493 it,:0.015401733065856009 them,:0.010633375858992144 one:0.009167591237572171 it:0.008181391243896373 each:0.007914241170003512 country,:0.0077237965344177486 time,:0.00700065465985335 In:0.006984819610312742 him:0.006314628508812091 ,:0.006208269048480639 him,:0.005996237208216914 people,:0.0058788464065282625 years,:0.0058312003290601055 year,:0.005757030355427508 and:0.005698043896787792 on:0.005338970578302965 one,:0.005224544718811613 :0.8260150646956117 +set:0.34360786887532824 laid:0.06824674233087476 not:0.048328761492640405 lay:0.03307682686206915 brought:0.031721454748911436 come:0.027325696710349734 and:0.025748012713287253 put:0.025142649564844397 thrown:0.019324828050905362 cut:0.01819280921705658 setting:0.01783136890983844 to:0.016872075517188268 went:0.016439023254465824 sent:0.016268589884498117 go:0.015849779705269403 came:0.014595211663209947 turned:0.013301721467919712 it:0.013141869276063393 them:0.013082362540790806 :0.22090234721448876 +of:0.09129790931378902 the:0.07369883040827747 and:0.047842263382354346 in:0.04189055351593407 to:0.04045875475680249 a:0.03542341257202578 be:0.02020462051672066 for:0.01979292654746225 was:0.01760256398103379 at:0.017380150555488715 is:0.014984483003968216 with:0.014047653760730413 by:0.01374644383819499 :0.012670486581795598 In:0.01200961464556976 or:0.011563835749786333 from:0.011391516893522809 are:0.011273104484969465 that:0.010755276030689069 :0.4809655994608848 +the:0.395013499833212 a:0.3090675519008259 tho:0.029693757136427495 The:0.028400518002168685 this:0.019631297191817804 any:0.01782033015731111 every:0.017318256119618614 tbe:0.016503171476761384 whole:0.01607230228189177 an:0.014910566700755351 first:0.0134262504744064 large:0.01083226580986057 each:0.009926153916573574 A:0.009203127949453866 no:0.008509525372748069 one:0.007415920193613342 general:0.007099953364835769 little:0.006676525506859567 great:0.006192287986354479 :0.055286738624504235 +he:0.23312472445466215 and:0.1613325048271282 He:0.08945225907349705 I:0.05642148984413231 she:0.042302626872924694 they:0.02884849219191363 who:0.028214538900049258 it:0.02184694075888667 be:0.01924736395453392 that:0.016623200713628355 She:0.015144103804692458 as:0.014412289228420834 then:0.014191006921778626 ho:0.014072366311802378 lie:0.01387197569084636 was:0.013316178345433917 which:0.011991783077592513 we:0.011476617777156807 man:0.009331251639274302 :0.1837782856116456 +the:0.2747723251942209 of:0.23192018372207834 and:0.06380486846093508 his:0.05724203535141108 a:0.03231739633971792 their:0.028123967464459023 with:0.02624940692654257 in:0.018223365453342327 for:0.016635164886124845 our:0.014554833262798548 The:0.01419296960937898 tho:0.013956858145818584 to:0.011645412447955271 said:0.011133178476449231 my:0.010319012797776179 this:0.010246321543414896 other:0.009813455848920544 by:0.009659916260159501 all:0.007635956941287801 :0.1365533708672084 +enter:0.06270755427820027 went:0.05416030459810745 put:0.05272619621307382 it:0.0455846185644705 go:0.04460636620864621 down:0.034777264442219555 came:0.03370286135664425 them:0.033525971399909066 entered:0.033428077424349986 fell:0.030928147452427106 him:0.03084830184513951 brought:0.029199042832362493 up:0.028892586268422994 out:0.02742708846044796 back:0.025796336998986515 thrown:0.02571650239009518 converted:0.025592550464184342 come:0.024341372905034644 divided:0.021681072567567187 :0.333357783329711 +to:0.24490340461131951 not:0.10864224326785939 and:0.09820517015711827 they:0.09809505194574736 be:0.037926941640159015 will:0.03395173223904085 we:0.032906336093769424 he:0.023399440912843766 I:0.01989907479529689 or:0.017084493215327474 would:0.01428631390656065 a:0.013462162220029102 then:0.013331596133042072 that:0.013090300133314386 you:0.012764347056979443 was:0.011455665818120917 it:0.010418200104421639 is:0.009712242882064334 may:0.009302539064158944 :0.17616274380282654 +be:0.16637034519717622 was:0.16334824987682373 is:0.08338072549818869 he:0.08052951864882504 and:0.05979176370922622 I:0.05917132045360175 been:0.05323237642189697 were:0.029894860575957326 have:0.027044334579030865 He:0.023206089362580402 are:0.020876593929330688 we:0.020134939722277544 they:0.017808210252053907 had:0.01650781641418288 also:0.015281253885155855 bo:0.014441731258315951 Is:0.01413278211076435 not:0.01242849590019942 has:0.011073145191007262 :0.11034544701340492 +of:0.09987160531331372 and:0.0940244785757529 any:0.052289673993926554 that:0.0521615695554252 the:0.04831905927447789 in:0.044356237178765114 no:0.04151381823015844 is:0.04116547087035849 by:0.0395679729581452 was:0.0367535264143799 only:0.035954040725474846 a:0.033657189158016486 as:0.030056688903775285 every:0.029268746478307104 but:0.028766964466882358 to:0.02710247242740293 with:0.025970323415340398 some:0.02383791730605758 from:0.02381329870984169 :0.1905489460441979 +the:0.6858217583101649 in:0.07764835494120065 tho:0.0342628646402192 In:0.022981463054555926 a:0.016099461171774958 of:0.013742445427729389 tbe:0.01285816557750839 The:0.011556081659186652 to:0.011126291745009634 his:0.010231980455541105 feet:0.009879907867022962 and:0.008917452852220639 at:0.008616414337876344 its:0.008089066487593704 her:0.005960895376376646 on:0.005537325641845762 their:0.005387257017898736 from:0.0052834761307249305 south:0.0033798060025594305 :0.04161953130298997 +the:0.8159759767917363 tho:0.027720051653559535 his:0.020478071728622673 The:0.01854465008713863 their:0.01511692293773347 and:0.012461187630315559 tbe:0.007905052980950336 in:0.007318027680922731 her:0.005282206499937837 my:0.004791681227006726 of:0.004789401191869348 our:0.004570501592535732 its:0.003797616265704707 a:0.002855916216075934 your:0.002586688609737828 all:0.0020613235781318396 In:0.0018827624379154637 own:0.0016569693439171863 right:0.0015282085992685509 :0.03767678294691966 +the:0.3805550634799788 in:0.25228243267765105 In:0.08505568614166323 tho:0.024519837158371655 of:0.02305315639132469 a:0.021758167614506503 and:0.017518934129676797 tbe:0.01283980283021476 to:0.009989568062689377 The:0.009786310110701567 iu:0.00970360775411324 its:0.008405375808994869 his:0.008339324345435876 from:0.00799068218823221 at:0.007312028094815066 their:0.006566051811791955 with:0.005454389993200152 this:0.005447561249137859 for:0.005144578532306341 :0.09727744162519393 +;:0.01458927046758731 it,:0.007973265891266864 him:0.007834970369143835 one:0.007240974664279108 in:0.006989508095588829 and:0.006417396987522371 ,:0.006059091806132192 it:0.006014614548599763 up:0.005812344146302806 out:0.005395853159197619 them,:0.005290532062834904 him,:0.004938420268273817 city:0.004793760033506698 :0.004646491011450349 man:0.004641061555670736 country:0.0046164671969483135 feet:0.0044416267197611185 time,:0.004376787347733258 time:0.004358244018157902 :0.8825693196500423 +:0.1376073594745596 it.:0.016644954262061994 them.:0.011258858459919857 day.:0.0094239454979886 time.:0.007860234334918817 country.:0.007279826324001252 year.:0.007254551501253196 .:0.006629486516087919 years.:0.005853905900878431 work.:0.005362361127183809 him.:0.0053191414153020995 of:0.00527844265743227 ::0.005266365371017375 people.:0.005258330907267895 city.:0.005254886595747626 to-wit::0.0051159714277941234 States.:0.004988819667373986 one.:0.004793516497823526 county.:0.004453516208410404 :0.7380955258529772 +of:0.3184190360443104 to:0.09837906929557073 that:0.09130553659096319 by:0.07716162857593323 and:0.07688457445143693 with:0.03906316830091578 for:0.025965737317318032 as:0.02542658772834525 all:0.023506616441147255 which:0.01968652879663868 among:0.01841207866951537 in:0.017513619642541476 when:0.01720235800928863 from:0.015449175925616863 on:0.014523860288414415 but:0.011312790402103057 if:0.010474920730546195 where:0.009647153854551638 upon:0.009387241003742929 :0.07927831793109999 +will:0.21082574188937825 to:0.20858040565610497 may:0.09919274135400069 would:0.09881861247526341 shall:0.089918938259542 should:0.06696726864713778 not:0.04883463911389757 must:0.047767853140419446 can:0.030733804450405543 could:0.020848228489155466 might:0.015893765280028307 cannot:0.014585441161001527 and:0.007379384988276351 it:0.003846900087528996 that:0.0036875200758228885 also:0.0035468116851996205 only:0.0021380985299088843 which:0.0020248999352507776 never:0.001914880154912063 :0.021494064626765483 +and:0.14507320772351315 fact:0.08580533594336559 said:0.056464728489513914 so:0.05141663139801109 believe:0.03728868944610554 is:0.032697255055655516 say:0.030323479159427524 know:0.029749358812227955 found:0.025535190692382553 stated:0.021273605064562356 show:0.019511948220510757 but:0.018999393120383457 says:0.018814328565908398 think:0.016893655385130203 was:0.01658797795582863 all:0.01652317309060226 see:0.015409038245983688 opinion:0.015263158537430448 order:0.014744011681695817 :0.33062583341176116 +and:0.0520617319705237 :0.01766117573784162 that:0.013874145111494797 men:0.011685813486197643 them:0.010254249410889264 of:0.009912269189924347 :0.009105300885174097 one:0.008750388200836307 or:0.008519656892791105 it:0.008246328441768112 all:0.008137576837783937 people:0.007719208198576622 but:0.007405995071334827 come:0.006731625576809854 man:0.006148513384311201 two:0.00614372160606757 know:0.00574104142128465 came:0.005562769203934084 him:0.005359952981055405 :0.7899785363914008 +a:0.2717216265506309 the:0.17387327018147705 and:0.09028630135350516 of:0.06750377249360476 most:0.06542573358056397 in:0.03763105421396989 an:0.03198014754482154 very:0.0303477069490219 The:0.028226797478947515 to:0.02357640829420329 with:0.02224299136072594 by:0.02033982331676451 for:0.01956203461560084 his:0.016255479248430123 no:0.01541249771635899 some:0.012587360407076708 this:0.012275809927091813 be:0.011722488148273992 is:0.011681191078513049 :0.036347505540418 +foreclosed:0.0826326115191591 accompanied:0.05930666942049243 made:0.05336585618201428 and:0.05113808815574321 followed:0.0477509052190524 surrounded:0.027001067213274173 up:0.0223956915218854 caused:0.01986528146981332 secured:0.01963201700061169 was:0.019527138795776604 ed:0.0163892391762384 it:0.014428341647705614 occupied:0.014047766264405974 him:0.014002524716027894 surmounted:0.013411064770142235 given:0.012603829803430331 done:0.01236267211154264 covered:0.012285928470556887 that:0.012257320636555267 :0.47459598590557217 +more:0.3025581312188659 less:0.11361229550157692 better:0.055726483044737526 greater:0.04783512755252839 rather:0.04774900978695876 worse:0.025962610454381 larger:0.024338933013280092 higher:0.024145264729856467 other:0.023583406218844298 lower:0.01740816105916675 faster:0.013320113341121102 and:0.011850589620021735 longer:0.010168519541118245 More:0.009644876926096519 smaller:0.00828514368718763 stronger:0.007941849956989464 moro:0.006774069717768751 earlier:0.006379423643939423 cheaper:0.006312927131776862 :0.23540306385378426 +of:0.35692646534167044 by:0.10173783590096953 to:0.07903027399269481 in:0.07081736576777607 and:0.05530042098184208 that:0.05249743411425189 from:0.02657659176565379 on:0.024895914346071323 for:0.023431193239674995 with:0.020321633382531713 as:0.016505078337838673 at:0.01537282447775104 In:0.013914060951897957 which:0.011174396201749568 when:0.009440541929499483 upon:0.009392255430676654 under:0.008801193803457433 before:0.0077758156138572655 against:0.0075993158365328 :0.08748938858360247 +so:0.2129509329260218 are:0.09398054532404412 and:0.0873925893602214 as:0.07635255472976372 of:0.05342179196154557 how:0.03520252746707547 were:0.034703749354985367 had:0.031991991755804354 have:0.03111185631446445 too:0.029677620074086593 is:0.029520257109917177 was:0.02941329075034698 that:0.02813514422096005 be:0.02759879368409925 for:0.02645762824859276 the:0.023722397294220272 great:0.019935563955042625 has:0.01868655332068979 but:0.01498104943743076 :0.09376316271068748 +of:0.09129790931378902 the:0.07369883040827747 and:0.047842263382354346 in:0.04189055351593407 to:0.04045875475680249 a:0.03542341257202578 be:0.02020462051672066 for:0.01979292654746225 was:0.01760256398103379 at:0.017380150555488715 is:0.014984483003968216 with:0.014047653760730413 by:0.01374644383819499 :0.012670486581795598 In:0.01200961464556976 or:0.011563835749786333 from:0.011391516893522809 are:0.011273104484969465 that:0.010755276030689069 :0.4809655994608848 +of:0.09129790931378902 the:0.07369883040827747 and:0.047842263382354346 in:0.04189055351593407 to:0.04045875475680249 a:0.03542341257202578 be:0.02020462051672066 for:0.01979292654746225 was:0.01760256398103379 at:0.017380150555488715 is:0.014984483003968216 with:0.014047653760730413 by:0.01374644383819499 :0.012670486581795598 In:0.01200961464556976 or:0.011563835749786333 from:0.011391516893522809 are:0.011273104484969465 that:0.010755276030689069 :0.4809655994608848 +purpose:0.15629546290636626 instead:0.04067235169987101 cost:0.03789169719030422 means:0.03715155922526685 number:0.03691513157171963 amount:0.030542455119399896 out:0.026054467034596903 capable:0.022536321166439676 method:0.02200269228385709 tion:0.02156280510439008 one:0.018760960717187716 and:0.018276873885807725 pounds:0.01581141998843525 all:0.015703207080161808 way:0.01531371230900811 is:0.014731609287545522 people:0.014606920828488384 part:0.01414165819828799 value:0.014060614152407475 :0.4259680802504584 +be:0.24179257462781184 was:0.15888133563549012 been:0.10047063460900901 is:0.06599646798561973 were:0.0456490847561946 are:0.04066240494529665 and:0.03584695642672779 being:0.01991073322059164 had:0.01947618193973667 he:0.018339091120976526 bo:0.015666651872966834 have:0.015571742037973992 the:0.014357929944856181 has:0.013742724892646916 they:0.01174065174490854 Is:0.009359167190267078 duly:0.006963180238463681 I:0.0064582269096006 a:0.005948564832296699 :0.15216569506856487 +of:0.13704579090905822 to:0.055513043184236374 in:0.046565333055384774 and:0.03523295551671146 :0.03087523181473462 from:0.01949516459285633 at:0.01907819647935198 In:0.01669915177724825 for:0.01658212860021285 on:0.013507248621192694 the:0.013331365681451731 by:0.00968255109534013 .:0.00933077096311367 assists:0.008202820468441223 that:0.006944840149294493 I:0.005861246231712838 with:0.005669356950835542 it.:0.005593973675977764 ot:0.005455665043036593 :0.5383331651898084 +the:0.39336469104418426 a:0.06957625630173567 his:0.06419153304802301 this:0.045014614872140035 of:0.04208998767280136 their:0.032055207113605225 The:0.031151631189229475 and:0.030064198570325683 in:0.026900599011309277 tho:0.01900112053600279 our:0.01893007481573601 my:0.01708975078408411 other:0.016200889022540688 no:0.014785682276855998 any:0.01476467906549993 such:0.01296262047038055 her:0.012194943118396057 your:0.011415757137784564 its:0.010626930868343758 :0.11661883308102154 +and:0.03565958786196829 out:0.031008848347517683 known:0.026685378553362574 made:0.021318177235917814 up:0.020703503423289676 men:0.020453608116104662 it:0.018864381640664098 them:0.018647194892674142 him:0.01742439855393081 of:0.01535204231741207 land:0.014876765630245568 held:0.014162805210817416 is:0.013968958571831992 was:0.01347004440838388 people:0.012809605495621022 ed:0.011718593495917801 not:0.00984926453766317 in:0.009431316210693586 property:0.009236602327203497 :0.6633589231687802 +the:0.15463966984254437 of:0.101901114743798 and:0.04894718433991942 to:0.030383134825344216 be:0.023787088874317595 was:0.022243017953145823 their:0.02209042018925469 for:0.021447751069463387 his:0.02079208132409504 in:0.019365624579711478 on:0.01776358175329433 are:0.016127548149038374 a:0.015384104967891459 is:0.015020725798290899 been:0.01400360760718317 were:0.013880849015882626 he:0.013830345922194481 that:0.012759377631127474 as:0.012581569883497323 :0.4020512015300058 +it:0.11857892928876056 which:0.10419954526017984 It:0.10229720510101595 that:0.06796245048918885 who:0.06088908826247786 he:0.060731706658395446 there:0.047718276913133226 and:0.0298646407467943 There:0.025721626378001235 He:0.023765504777663107 default:0.02149030696489031 as:0.019132676760165265 This:0.015088553278066501 she:0.01413948392901254 what:0.014110548249504374 this:0.009613248172212615 work:0.008813388419150843 man:0.006677000754574867 country:0.0066605789516794795 :0.24154524064513283 +of:0.19887623798151202 West:0.13694029786870174 the:0.11996801922128221 and:0.09359331602903535 in:0.05444335673528416 by:0.02736114064682586 from:0.021220586917532754 to:0.017631506113253623 for:0.014889453121103423 In:0.01466039810814637 said:0.014420789430083217 Miss:0.012476149115530974 at:0.007797147038226006 a:0.0075143969172487375 The:0.007495193908866338 or:0.007305682242098592 with:0.005883737852333538 that:0.005544203974998094 all:0.005338705780253458 :0.22563968099768356 +up:0.027512081273517633 him:0.020209796433688917 made:0.015032862746678982 men:0.014941336864079537 them:0.014090242869133178 time:0.013799137223656074 right:0.013482237867069966 out:0.01326829999967642 it,:0.012658550642655692 down:0.01240428160055896 it:0.011465434125065094 good:0.011312282573271023 here:0.010203536331653074 work:0.010045196261685643 him,:0.009784989027359546 them,:0.009703930446786748 life:0.00833548339647553 long:0.00833099355811042 appear:0.00819453002042771 :0.7542247967384499 +to:0.16559731533842378 and:0.15860533152152917 a:0.0943544460166891 the:0.07562994487777455 of:0.07314733166226445 not:0.05583514963660513 most:0.03484187031618231 or:0.03193971133059423 in:0.026143322198293243 be:0.01745558098297967 an:0.014216376943069563 some:0.013473330864322185 that:0.013073779988563784 this:0.011028580049814482 with:0.010975787693366679 is:0.010872642677677666 I:0.00933373196089138 for:0.008419730739626053 he:0.008358395547937863 :0.16569763965339468 +he:0.13590484085174323 which:0.09057384116164122 it:0.08068953900683236 who:0.06981355564989566 and:0.06667768990287995 He:0.0587270145952341 that:0.05867045431953398 It:0.056356206527968626 she:0.023308693853288504 as:0.022285456732427295 ho:0.012771883041970428 lie:0.011143934458726162 company:0.01024338363170983 She:0.009887719767128714 one:0.008291987406750308 man:0.008138821011883584 what:0.008085212405969098 but:0.007262555403920417 city:0.006359673813629684 :0.2538075364568669 +the:0.12832626835092845 .:0.07484986791559423 said:0.06716762622327503 of:0.03613689672867391 and:0.031144101043811125 :0.028290949498414236 W.:0.02628552016020693 Mr.:0.021171632184409934 E.:0.019095171599169503 General:0.0158629917252928 &:0.013448492142636544 in:0.01326976829152574 South:0.013050742761052886 The:0.012905818577980885 Book:0.012526672819748893 on:0.012009738587259624 North:0.011689572186540015 to:0.010960988281525452 C.:0.010879799889891855 :0.43992738103206197 +and:0.08995317707915026 to:0.06844710404109794 of:0.04605142056172993 the:0.04074574508561307 which:0.02479116931334353 that:0.023764822140213245 re-:0.020841117231308055 in:0.020803825395358622 for:0.020278423301550053 :0.018417753428486977 not:0.016860793136637672 con-:0.016444405871234195 is:0.014386481772210856 or:0.014080680914153714 be-:0.01352268143271276 I:0.01317002660943805 was:0.011429878269381662 dis-:0.011196807025842847 he:0.01113106290024311 :0.5026826244902934 +the:0.16807735899698817 of:0.10541662057906837 and:0.05138367848570702 a:0.04141865232648221 to:0.0385989743764065 in:0.026264864977736738 was:0.019530675665220657 his:0.018900421021236905 be:0.017373825006196972 their:0.015767721170721456 for:0.01557246589796783 with:0.014071419046630446 is:0.012922913111931644 at:0.012690452250034052 are:0.010702713108721902 .:0.010158075558988393 Mr.:0.009672788574483367 tho:0.009612591781990074 were:0.009549306361446321 :0.391314481702041 +and:0.1447782399456304 be:0.132851628275369 was:0.067247728405088 he:0.051294073525317 have:0.04917262183363822 been:0.0441526903306448 is:0.04183299330829949 had:0.03139310136776297 has:0.030734093426232175 I:0.028231934832682545 are:0.021608321988666034 that:0.021454341512684307 were:0.02007820466380896 they:0.014349810472088333 as:0.011581222820485099 or:0.01138064354131677 not:0.011374077147561511 if:0.011087685633020808 she:0.010790229271289293 :0.24360635769841424 +:0.08557085308124038 .:0.0215036628504965 it.:0.017142936292996683 them.:0.013378820625677745 him.:0.008349995906210364 time.:0.008030385659630618 of:0.007503195450174603 day.:0.006654049912184475 country.:0.00649405019276291 year.:0.006137655320269013 work.:0.005242192428005364 years.:0.005055497792814118 city.:0.005008275963663193 people.:0.004173421823722222 tion.:0.004128048409613015 week.:0.004014895723221387 It.:0.00386925243269911 men.:0.003841058828864181 State.:0.0036509619880899027 :0.7792507893176642 +of:0.2539197811149527 to:0.09802849114681189 and:0.07567400692576397 in:0.0647326866874064 on:0.06020855762192762 that:0.053240455640880875 at:0.0456716320260818 by:0.03831688213045854 with:0.03598213858278914 from:0.03576222672257555 for:0.0341751071393689 as:0.01721927929803387 all:0.01679274454285812 In:0.015422349918571386 upon:0.013492053634947989 under:0.009417058258584016 is:0.00794879285558713 through:0.0077533433476819 which:0.007461188409863226 :0.10778122399485489 +the:0.11919516938815296 of:0.07230453158552728 and:0.05781056740443249 a:0.043018564803886335 to:0.031305092790907506 in:0.020848713353460488 at:0.014270110001066288 .:0.012526810245749479 :0.012413283442322082 for:0.011719122709941797 by:0.010808400946589808 or:0.010404172990115616 The:0.01003576004804544 with:0.009811868184449042 tho:0.009295902015355835 was:0.008924239095331684 that:0.008672304223433876 is:0.0085591147338948 be:0.008335143826716943 :0.5187411282106204 +the:0.10906800583842101 of:0.1067164721633229 and:0.0754103765404692 to:0.04292725352299857 a:0.038474023346916277 by:0.019217342120516498 be:0.018672384971506785 in:0.01772617979001134 as:0.014380565948517145 his:0.013710128198505528 :0.013213042293871038 was:0.013074011639521016 at:0.012287605444660506 with:0.010958975489743806 for:0.010741000111190769 .:0.01046183534749067 that:0.010458607274049833 is:0.009794606968292771 I:0.009397633421235212 :0.44230994956875913 +the:0.5354749798366453 their:0.04727512661007263 tho:0.03180657645536241 of:0.029189124523565854 his:0.028980815696630184 in:0.026181970018986426 a:0.02505769629206582 and:0.024562941054901317 its:0.02125342777884806 our:0.01760295655754757 this:0.016696221783397486 tbe:0.01617905125822034 The:0.010626633627460249 both:0.010224617674042374 such:0.009682176584183608 to:0.009656900042547234 on:0.00825435381794331 high:0.007614314180126425 re-:0.007037312630203681 :0.11564280357724974 +the:0.18754590096707682 various:0.10849384414750186 all:0.0846756253049718 other:0.07695919876895731 and:0.06905894849912003 by:0.030234626920597637 a:0.029187842216688367 many:0.02579543430056569 two:0.02386138768600018 The:0.022536334347514318 these:0.02116911898064428 different:0.018216909439070717 of:0.0170919017896242 in:0.015130623179355552 several:0.014781444652370659 tho:0.013897825154048722 or:0.013869443319060511 some:0.01156141477034606 three:0.010491653981606296 :0.20444052157487896 +and:0.09250741093604914 of:0.06895330541934497 put:0.0674514796868645 as:0.06267112065678532 make:0.05425702335259153 that:0.052172000015098294 for:0.0431753586139634 to:0.039608103116352225 with:0.03596771598109795 found:0.025212428927664336 find:0.024833099583985673 made:0.023802655933713977 but:0.02326661010304946 get:0.020143286431190992 give:0.01956366561589181 take:0.018815588507891064 is:0.01846724682485093 upon:0.018178882012065193 by:0.01816454276129662 :0.2717884755202526 +of:0.14779879817845873 to:0.13370590568071233 by:0.06933877271321774 and:0.06150854569500553 that:0.030276388205504923 :0.019956345420325438 at:0.016535310357895697 in:0.015358665924925345 from:0.012573860983974759 for:0.01075058402398121 with:0.010563976080694674 which:0.01021033711647145 .:0.010021095869625787 said:0.00785392908611388 was:0.007822413534706635 as:0.005728534657020572 on:0.005636140895862409 w:0.005430473814633722 Rev:0.005092132070509381 :0.41283778969035984 +tak-:0.2434104493019537 giv-:0.08671062052637947 giv­:0.03261861149012717 was:0.03143674039083027 be:0.025805617597051113 and:0.025215819167545468 tak:0.021593072085355776 wom-:0.019473395331112395 fall-:0.0175834203072694 he:0.01318519363398982 it:0.010657364306478068 were:0.010523101917744122 I:0.01046798101401792 is:0.009365651209094045 are:0.008949268793696213 him:0.008757492702762042 the:0.00803710805375126 being:0.007365847167987478 been:0.007050798686229256 :0.400792446316625 +and:0.08755846463730509 was:0.05579091693219362 is:0.02946134787608188 be:0.024979563286202974 been:0.023957332133012137 that:0.02301913183668297 men:0.022351360743858004 found:0.02083817800639261 were:0.020604291378319428 man:0.01802297594153127 are:0.016561841811946167 but:0.015494533230956847 him:0.014633773919890186 them:0.014568170410465748 it:0.01439405696211471 made:0.013416192895920017 engaged:0.013277956270689579 or:0.012717346699294137 not:0.011849304088702222 :0.5455032609384404 +a:0.21211538322092624 the:0.19546933793587096 any:0.0837433263674313 that:0.06392555342730763 this:0.03900466156601476 every:0.03320437776626297 greater:0.0317962037514499 latter:0.02445227455811817 no:0.02194048191245243 first:0.02122680174566319 in:0.019145450321797694 and:0.01833696914000321 or:0.018018366847473998 large:0.01717044034959002 other:0.015696659241908387 early:0.015427668332717937 upper:0.014960184655747284 take:0.014893052348053108 as:0.0127088152040228 :0.12576399130718802 +of:0.29653410257775753 to:0.13717215516443754 in:0.0952195689184589 by:0.0680774251182107 that:0.06514761368417467 and:0.03670207416498167 for:0.034668155952031494 from:0.02986370547071856 with:0.026431565571510877 under:0.02393203266879438 on:0.01856927882091011 at:0.018537252061226896 In:0.017432302632080076 upon:0.015825692286719914 as:0.0137444106956623 against:0.00977473656456478 which:0.00934051722670901 when:0.00888747896089494 all:0.00810469276919967 :0.06503523869095597 +and:0.11407116966175274 of:0.07107079484512498 the:0.06656730291979027 to:0.05335924540680701 be:0.02740068005735919 a:0.02260417818487592 more:0.02213765112741375 in:0.02051572430464391 was:0.01921309187923535 or:0.019187461572761966 is:0.01905977581138103 for:0.01903629630887901 that:0.01789181571214341 be-:0.017434743418629745 are:0.014819956712198552 with:0.014357000995703835 were:0.011289330063959966 will:0.01101235889555647 other:0.010533063132933779 :0.42743835898884913 +and:0.053453948326808734 :0.050944373333385015 that:0.03309060458993292 or:0.010859431784157034 the:0.009613237464081178 as:0.009032437224738328 but:0.008928423529313386 it.:0.00891194179235344 them.:0.00794431263640556 made:0.007197757754821724 country.:0.0062166538694343465 which:0.006135850815458937 years.:0.00582075014737623 :0.0057869376289293615 time.:0.0056959206599397644 them:0.005582849079522059 of:0.00544165146393068 out:0.005342416589942977 to:0.005296150008395444 :0.7477043513010729 +I:0.15254833884195787 who:0.09862272658347002 they:0.08628583667508939 we:0.07884928638434863 to:0.07513413231212229 We:0.04669786697252346 which:0.040067627688510195 would:0.03878836987167136 and:0.037165556598970494 you:0.033871622905694454 that:0.026502879231868032 They:0.026174460112181407 could:0.015268504068756964 must:0.013794115485044708 1:0.013793429312192074 men:0.013162882784526724 might:0.013048818852563697 not:0.012891035287009084 may:0.012377361078087585 :0.16395514895341157 +the:0.16287760685838365 of:0.0883592780729449 to:0.0618987346693935 and:0.05423685233212741 in:0.030811253892523358 for:0.03057359609188714 be:0.025098115820027647 was:0.01826945122296575 is:0.01662970283289366 a:0.016448402520667066 or:0.01633619095301082 his:0.015510346299682681 their:0.015084175217362073 are:0.014656254371894712 been:0.013019491851438341 were:0.01267572744006931 that:0.012270302451397866 on:0.01131798809455223 :0.011150587255169986 :0.37177594175160794 +be:0.15141417856110137 and:0.13051547530447372 was:0.06816767895610489 is:0.04965129806751125 are:0.03704285924027205 were:0.03398935579315932 he:0.03370355010270429 the:0.02614038738987106 been:0.025147037195174523 being:0.02162599138184843 it:0.016553005128755374 or:0.014484592010257664 bo:0.011350019434485664 not:0.011256077315820966 that:0.010937853196225677 have:0.010714786776014291 had:0.0103594241636467 as:0.01031849961276671 I:0.01028207830280776 :0.3153458520669983 +of:0.3089063828659045 to:0.09293766516812228 in:0.07257660903380969 by:0.05077885695446092 and:0.04961170771621349 that:0.04939614832171043 on:0.046049143486896975 with:0.04315952578627477 from:0.03078972819074715 for:0.027398784622541292 upon:0.019866218777671463 as:0.018161976775238196 In:0.016442096766343763 all:0.015625461603733196 is:0.015390143529890465 at:0.015360565953460761 was:0.012081107212648745 into:0.012004991871894837 over:0.007649922668892147 :0.09481296269354497 +the:0.47788083341013254 a:0.13804394394899905 The:0.1331812848073288 annual:0.04786814544214458 and:0.03076021681092824 tho:0.02364391300522062 to:0.022684220960907744 A:0.013912686934630361 tbe:0.009617115036146052 an:0.007952843342973609 Tho:0.006457525194560588 this:0.005252008988527103 minority:0.005222864025427025 full:0.005036488481227369 detailed:0.004405480753782802 official:0.003839566983452359 said:0.0035734148932383466 any:0.0034209548262098613 Tbe:0.003224878673626232 :0.05302161348053666 +was:0.10893553212763962 and:0.09313632642941165 be:0.09260901152039516 are:0.08560460722419418 is:0.0846486088573246 very:0.07826283183681103 been:0.06857675426416811 the:0.05641289797407724 so:0.047006369569785274 were:0.04296397046182524 of:0.020231926614204313 being:0.01696020919551508 an:0.014891496247730517 Is:0.01316697523486485 now:0.010414605205629188 in:0.010032261748496564 he:0.008187347716852195 am:0.008012595909538445 most:0.007780029400274012 :0.13116564246126275 +;:0.01458927046758731 it,:0.007973265891266864 him:0.007834970369143835 one:0.007240974664279108 in:0.006989508095588829 and:0.006417396987522371 ,:0.006059091806132192 it:0.006014614548599763 up:0.005812344146302806 out:0.005395853159197619 them,:0.005290532062834904 him,:0.004938420268273817 city:0.004793760033506698 :0.004646491011450349 man:0.004641061555670736 country:0.0046164671969483135 feet:0.0044416267197611185 time,:0.004376787347733258 time:0.004358244018157902 :0.8825693196500423 +of:0.09129790931378902 the:0.07369883040827747 and:0.047842263382354346 in:0.04189055351593407 to:0.04045875475680249 a:0.03542341257202578 be:0.02020462051672066 for:0.01979292654746225 was:0.01760256398103379 at:0.017380150555488715 is:0.014984483003968216 with:0.014047653760730413 by:0.01374644383819499 :0.012670486581795598 In:0.01200961464556976 or:0.011563835749786333 from:0.011391516893522809 are:0.011273104484969465 that:0.010755276030689069 :0.4809655994608848 +the:0.49370647665391576 The:0.08690460181088941 of:0.04656144083857722 tho:0.0348890529300322 our:0.02701245326774843 a:0.026424091582772223 and:0.024465925103958713 that:0.01961505325493514 this:0.015498553218089454 States:0.01415288125377245 British:0.012368493155980017 American:0.01067241473471532 new:0.00990182421954441 German:0.008836239621898227 tbe:0.008786684990897757 his:0.008207996970026379 No:0.008082482235075641 federal:0.007670876785132944 other:0.0076700427444530315 :0.12757241462758526 +of:0.29726702526854865 in:0.14808790895102272 to:0.1005812231931967 on:0.07392421517137476 by:0.046869961180755135 In:0.037135207164767835 from:0.03438593655394917 for:0.033763199218429685 and:0.03212963376955461 with:0.030510961733996558 that:0.024263792809915825 upon:0.016795795009636603 all:0.012147200062226127 over:0.011295695899576984 into:0.009652174894563359 through:0.009308239867576156 about:0.007248745127568482 as:0.0071946851010749446 under:0.0068966461161283485 :0.05954175290613734 +they:0.20878972965759837 which:0.07459258685309017 who:0.07272712669897456 and:0.05653001219491293 we:0.052683699425131895 They:0.04953749714861445 men:0.035095864944662526 that:0.03355409206527422 there:0.025865349352946744 it:0.01698769561667907 them:0.013248587607540113 We:0.012315711055541871 people:0.012306089638056149 There:0.011613480399581133 you:0.010832468569301118 as:0.01025435556435053 others:0.010157419565952114 all:0.00953753637671634 children:0.009378488797008032 :0.27299220846806765 +and:0.10799541184552887 is:0.03985400072487149 be:0.03706787565211551 served:0.031985297661073726 that:0.03152057215197113 time:0.02792188259079336 was:0.027530800509016996 or:0.02722861640376396 now:0.023718939218851477 are:0.02170577194352965 made:0.021455840389263767 it:0.01906992874817851 him:0.01755804988964881 property:0.01755265059690988 embraced:0.016961873450828616 included:0.01664869571791473 not:0.016361891814034375 office:0.015108403526755246 but:0.015062322935616585 :0.4666911742293333 +to:0.5103299424534066 will:0.09272169134056238 and:0.04507395657342307 would:0.03671855956843038 not:0.0333385105548305 the:0.0312460262347611 a:0.023865527185454982 that:0.017841292939971234 which:0.01756938471022188 may:0.017523091391335812 can:0.016328649926739817 I:0.014493717407132005 shall:0.013667443245951304 records:0.013666350632748871 must:0.013014878142445313 should:0.012608221259582927 they:0.011780976301856429 you:0.010756173126047555 we:0.010210282794020299 :0.0562453242110776 +one:0.1028303141280697 part:0.05963429477052991 out:0.04766456937681193 some:0.031418679026461914 members:0.030764490253327767 side:0.029940657362655835 portion:0.022063658796890564 office:0.020457735219956013 member:0.019726706386316174 end:0.019666887540649894 tion:0.018667441728710307 parts:0.016814747270460957 people:0.014112771422418794 all:0.014072739582212475 any:0.013183573287639892 One:0.013083578354183906 that:0.013024335602903442 account:0.012482348155001894 many:0.012077825070275192 :0.48731264666452345 +at:0.794137723835529 that:0.013207402484235206 At:0.012356454381145165 to:0.009948372373178485 of:0.009164925848310338 or:0.008786547664932674 and:0.0086946885055126 nt:0.007909805499962161 was:0.006481408274972239 it:0.006461966828913232 than:0.006319967181139396 for:0.005763078076321616 published:0.0056352275773562475 have:0.004949317657020681 the:0.00468732973220391 had:0.004485641461429041 by:0.004471354737680338 be:0.004406833949830233 which:0.004233005843867131 :0.0768989480864603 +of:0.28767355066866834 to:0.08775711267569858 in:0.08678131196995101 and:0.05160598694501188 on:0.04646139928102899 by:0.04519522654900943 for:0.044547789071328545 with:0.03396756772609607 that:0.033699232901107726 from:0.03075346596941143 at:0.027039283056790858 In:0.021061449543044047 as:0.017514234937992545 all:0.012543839382496166 upon:0.011844431150487573 is:0.00998972746569266 was:0.008814315973987914 into:0.008557199930727406 through:0.007781895704231326 :0.1254109790972375 +and:0.15743161113048357 in:0.12448961530907653 of:0.1231229894663492 to:0.08966207366545767 that:0.06961228011001581 at:0.04109035681105526 for:0.04043707103389496 nearly:0.029182854526565594 In:0.028484171917725027 with:0.028021076962633774 on:0.023308398933110992 from:0.022023591385703555 but:0.017435211803714098 by:0.017157741200084127 or:0.015167625091832808 is:0.01484625932887908 almost:0.012914353115022651 as:0.010521235733380544 which:0.009716466984558218 :0.1243750154904565 +the:0.28489264487973776 not:0.18733854561778754 is:0.0595813538479789 The:0.04934482234622293 was:0.04557800092664069 and:0.03711367319603718 are:0.026318324631014023 of:0.024221091221717696 tho:0.018388810733659895 were:0.014460922629137772 that:0.013401138206944378 had:0.012997125055275253 be:0.01242203844910214 have:0.011958321493267915 can:0.010821588267360623 but:0.010672190452002671 with:0.01059742361218885 I:0.01017822295042033 Is:0.009927123813951113 :0.14878663766955233 +the:0.15547354656067278 and:0.07139357723681497 of:0.05564623677043693 a:0.04894069538205326 Mr.:0.031061469869978636 to:0.028825619737893982 The:0.02423769901096794 .:0.018262639737981732 was:0.01754007371329708 be:0.0164154983600082 is:0.01629513886984278 are:0.016095047682999818 his:0.015761097244150847 I:0.014950148794869542 he:0.012711579648401796 in:0.011611396177981632 by:0.011328423778391541 tho:0.011298422522801822 for:0.010979311541340207 :0.4101723773591145 +well:0.12283257265826802 is:0.05979751305115276 and:0.05873127793783799 such:0.05304261131772128 far:0.043817784066253015 soon:0.04331989850101234 be:0.02948346501360095 was:0.02826431844388174 but:0.026611466588470946 are:0.02606642080882949 it:0.025159515420168678 just:0.022449823969547023 so:0.02209413752830488 known:0.021196481078053758 much:0.0202929326046848 long:0.01851156159575258 regarded:0.01791243151336856 not:0.014761487124276721 him:0.013307643636151738 :0.3313466571426627 +the:0.7434275944072024 a:0.07095287435872884 The:0.06781484448225711 tho:0.034283591652143286 his:0.016065023944756177 tbe:0.009916164201795015 our:0.0058069035291137844 of:0.005749509165559213 their:0.005346078921329165 this:0.0042933873516638795 my:0.003495069736183903 its:0.003402814006416822 an:0.003015013548189194 and:0.0027061236372201403 Tho:0.002694242358525999 A:0.0026509066350960927 in:0.0024484398255552762 her:0.0022424414752881304 to:0.002174317443993265 :0.010514659318982373 +it:0.12446268169980054 It:0.12280480786537545 he:0.08020652832724516 which:0.06073294414750625 and:0.050980027219622276 This:0.05045282889882609 there:0.03713440751770763 that:0.03479346912854159 He:0.034050592549068955 I:0.025956325276684452 who:0.0218090018189395 this:0.021274788707593795 what:0.018497831674433016 she:0.016797366883068703 That:0.015547740538263702 There:0.012197964745074768 What:0.01018044384120964 one:0.008601337446420436 as:0.007989411724092167 :0.24452949999052587 +:0.1353947446258213 .:0.015004640766451666 it.:0.014197798327661342 them.:0.009125554044377487 of:0.008303612665997911 him.:0.00821807995521014 time.:0.0072774759458126784 day.:0.006317335634942011 country.:0.005582775272675999 year.:0.005165188317334169 city.:0.005121956074670019 work.:0.004853765542795585 years.:0.00430183108500365 week.:0.00403801598725741 her.:0.0038819385116781 tion.:0.0037799563598581347 men.:0.003641690497754086 life.:0.003639482535077528 morning.:0.003621192172413498 :0.7475329656772073 +of:0.275574333881826 to:0.08636224615023709 in:0.06631904249133982 and:0.053992018225395254 for:0.04185726238848965 by:0.040432462728593715 on:0.0386621368609385 that:0.03746813623829841 In:0.02853879791593314 at:0.02784511394431448 from:0.027249043353089128 with:0.02598983508374518 all:0.014273748255081415 as:0.011953034597961125 upon:0.010404474445179767 is:0.009962155410920995 ot:0.008697425934451705 through:0.008441579399216994 which:0.00831499649011874 :0.17666215620486883 +the:0.42481215795226157 a:0.09357400050416594 and:0.06822841332614611 The:0.046405380208595574 of:0.043986039800645284 tho:0.022981202574730877 at:0.019038166165674913 street:0.01784373666318499 to:0.017558183484447532 was:0.01729978050651047 his:0.01698772607921567 or:0.01671435462429295 in:0.010793189212909098 their:0.010209013499127978 with:0.009902665465016041 be:0.009737145873380194 were:0.009409833972474607 is:0.007835262953874081 A:0.00783063900787196 :0.12785310812547415 +is:0.12589275418012819 and:0.11164841147273451 for:0.08591588006430433 it:0.08354211152075056 the:0.07041696528237432 of:0.055909567494995746 was:0.053511701770847624 no:0.04919705921635673 a:0.043678118884794184 or:0.03390410214556539 to:0.02807611519775643 any:0.027625363293373405 are:0.02622555884299431 with:0.02517438399366955 in:0.02093409457564797 that:0.02064328867039341 still:0.019304097671612848 than:0.01764362254791443 be:0.01636829146211556 :0.08338851171167054 +of:0.08582138944977082 the:0.07033982143905078 a:0.043111211354705074 in:0.03965740114694277 and:0.03875635267096294 on:0.02997300302918765 to:0.028610133789829847 Block:0.026213973280211907 by:0.017763923060240248 In:0.015051892215540569 or:0.013997531594318489 at:0.01373089828761832 feet:0.013447424038548315 that:0.012318183106384446 from:0.012237359044494708 along:0.011735483101801211 for:0.011734487127015619 :0.01050215100389386 was:0.01042374088278778 :0.49357364037669466 +the:0.4100265527682148 a:0.12625142221410698 and:0.08841094486780034 The:0.04744284179309714 in:0.0410292755857838 of:0.029836470148592437 with:0.027761782390675838 that:0.023844318337024203 some:0.02139345585584189 by:0.020811829725930816 tho:0.020054972337494058 right:0.018111287195369 as:0.014179912362606623 any:0.013929161351306259 from:0.012638357787284253 every:0.011794994817707004 one:0.011530067241125756 at:0.01115543902856571 In:0.010166640211859576 :0.038630273979613494 +the:0.16807735899698817 of:0.10541662057906837 and:0.05138367848570702 a:0.04141865232648221 to:0.0385989743764065 in:0.026264864977736738 was:0.019530675665220657 his:0.018900421021236905 be:0.017373825006196972 their:0.015767721170721456 for:0.01557246589796783 with:0.014071419046630446 is:0.012922913111931644 at:0.012690452250034052 are:0.010702713108721902 .:0.010158075558988393 Mr.:0.009672788574483367 tho:0.009612591781990074 were:0.009549306361446321 :0.391314481702041 +the:0.2342709456746253 same:0.10606510171425328 that:0.10263560458586575 some:0.09430394856239292 any:0.06305644436207448 this:0.06073193611056355 a:0.05135353424767298 short:0.046512456659141464 long:0.03419588057985395 of:0.02427403552842239 first:0.023500465774267523 in:0.023038191229741028 which:0.021490478703186183 no:0.015618725389043025 present:0.014034292146478323 one:0.01383681664814622 and:0.011313457654514905 for:0.010004888196620224 In:0.009937325687957842 :0.038825470545178646 +they:0.13914375987785957 who:0.07556168947214206 we:0.06840381660617044 there:0.06098738861257107 which:0.04780629114056908 They:0.041746016714457684 and:0.03687564188113626 There:0.03665111687635472 that:0.033767302049021224 you:0.029485367401958455 men:0.023822939078552936 We:0.020534256658031245 people:0.015412627936125581 You:0.01326022167408733 as:0.01046146826564289 them:0.008297674153930755 These:0.0070131014975380835 I:0.006823145776393525 these:0.005797651040152493 :0.31714852328730464 +such:0.08372327589765703 far:0.06427952999925021 and:0.058626394513280854 well:0.03988105266257923 but:0.025350875240887326 much:0.020474283071995968 it:0.019895036000873226 so:0.019473936105052367 that:0.018705242574576737 long:0.018117298399870644 known:0.016878758525045143 just:0.016305040197223297 soon:0.014626767018325555 thereof:0.012949164127682409 same:0.012197622713807482 this:0.009218314737005802 him:0.007956367730580716 them:0.007757168047550331 But:0.007728668692201658 :0.524855203744554 +have:0.2469819553431475 had:0.23755534075355736 has:0.2227151889340448 be:0.06362418937004766 having:0.031110135087849163 was:0.027956390430674258 and:0.024896119411772062 been:0.024328419929585475 not:0.01696902161008876 were:0.015537888557897906 he:0.012672008461908506 is:0.009488121067014722 lias:0.007964478325488111 are:0.007946212854642669 ever:0.007578744083194264 never:0.006966561897492817 havo:0.005730977596146937 being:0.005492689418932403 I:0.004402910018755382 :0.01908264684775921 +to:0.10024256390479049 I:0.07987194830959128 1:0.05644771471612284 re-:0.053405244853756424 his:0.04910252506202761 a:0.04510626767982384 and:0.038270444954243116 of:0.026244898163044556 the:0.026074403470969655 my:0.02290720232152075 one:0.020685007231551842 her:0.020206345662892367 their:0.01920560276278787 per-:0.017477555322825584 your:0.012686981740874145 in:0.01220069517740164 will:0.011784548009262145 you:0.010672804571073266 not:0.010486361211433488 :0.3659208848740071 +in:0.136816659119863 of:0.13444253453978464 to:0.11478956085841752 for:0.10070185854373419 on:0.061323951934391746 at:0.05785399877781361 and:0.04393931773182464 with:0.03986568604484545 from:0.03271304823786216 by:0.032472523667657634 In:0.02927964236453817 upon:0.02156473737703873 after:0.019284825797688535 that:0.018070959198439727 within:0.016224919765415242 up:0.015056856460272645 during:0.014042559435420961 or:0.012848638848534398 about:0.011857835710732716 :0.08584988558572433 +carry:0.1412497087947734 through-:0.12826013105545556 with-:0.08091675963353849 carrying:0.046277804198627925 pointed:0.03723144396063946 and:0.033126401155713206 sent:0.030773149825916037 brought:0.02747943045078021 carried:0.027073602342564777 find:0.026641036907707145 put:0.02615503321810391 wipe:0.025838030544031883 go:0.022515062343076847 went:0.022513291814153923 get:0.02250598350754256 taken:0.022060176804249623 pointing:0.019443788737956894 cut:0.01939461821188527 bring:0.01927596027535409 :0.2202685862179288 +of:0.3360710278452683 to:0.09758204809718929 that:0.07291181761593109 in:0.07034359398951423 by:0.06069559971503826 and:0.056427394268163455 for:0.04574080631476158 with:0.03538144909284627 from:0.030535961206620537 on:0.026005330422086977 In:0.016616327296340962 at:0.015432899406161129 upon:0.012518668058104141 as:0.01127839837227132 which:0.010922140138042382 under:0.009861603879693658 against:0.009122721613130021 when:0.007151099473928503 all:0.00696317063357632 :0.0674379425613315 +virtue:0.075210003814478 one:0.04095782528272426 out:0.04094950569138581 part:0.028419074482593076 pursuance:0.02647957726952072 result:0.022026114059095867 all:0.02118106610311898 tion:0.020023917198143688 means:0.018922900475692853 favor:0.018260805345050424 quarter:0.018233448924952968 charge:0.017860099745937157 that:0.017772300993585684 instead:0.017470839097896467 case:0.0169504356289914 day:0.016707541651604044 side:0.014491917202008646 is:0.013990033343895042 account:0.013814357655080725 :0.5392782360342442 +in:0.30370084652488455 the:0.2534634480431738 In:0.08233488842016888 and:0.04657587656813973 of:0.03744945707121657 a:0.0299147901918242 to:0.026792881363910552 with:0.022377574390207485 from:0.015716833623866003 tho:0.014207003505531588 for:0.012872567017400954 his:0.012469151111088166 their:0.00945667994633874 its:0.009424503102270129 her:0.009400184161756357 iu:0.008524850932512954 into:0.007110597757770198 right:0.007036044213560284 tbe:0.006701522827401827 :0.08347029922697703 +it:0.15822870593602986 he:0.1279562939571999 It:0.12508725038241905 I:0.0684671662488676 which:0.06279839941933806 He:0.03792908354846033 and:0.03431962796926461 who:0.0309661367267013 she:0.029316418819574766 that:0.02175302200393631 what:0.018804417925511272 This:0.012068087889726745 She:0.011548234493953721 this:0.010747797266953978 there:0.00982447171105061 ho:0.009626766686002455 1:0.008823810104309562 lie:0.008263763419057206 bill:0.008139878374281581 :0.20433066711736106 +of:0.13926421118519683 such:0.08971625508924444 in:0.08159766341234059 as:0.07605363340183795 to:0.06737758757784257 with:0.0568079589300716 for:0.053571552190889105 at:0.04978429872541131 and:0.04656794608794371 by:0.03905188374348879 that:0.03565649494273439 is:0.0327381682463588 on:0.028332439469322828 from:0.02160929220943544 not:0.018365791538143432 In:0.017864124607094117 Such:0.015391558193345478 be:0.014869261074982877 was:0.013821728450434155 :0.1005581509238816 +the:0.6157819317138635 The:0.08542342411284262 and:0.05045692541820288 a:0.03564971302548497 tho:0.0352154823568533 of:0.017004173633895968 tbe:0.01301566306747567 in:0.009652234638412433 or:0.00852343384336113 that:0.006882720993843989 by:0.006014203578577829 :0.004809706826030876 this:0.004729019592485131 are:0.004554839980484005 on:0.004380206737495647 total:0.0042729919382270875 Tho:0.0039641954114284445 great:0.003954928855257326 large:0.0039053909495015164 :0.08080881332627567 +want:0.0555821325535684 and:0.05201842610750406 him:0.04787946166833669 able:0.046971536917513775 enough:0.04513014789746456 is:0.042225333674648306 right:0.03926694800419314 me:0.036151444720856116 not:0.03554201437347708 them:0.03224110170821028 order:0.026928522891092117 have:0.02689342913116554 was:0.025591431662745363 necessary:0.024789661732124144 going:0.024018980267479083 you:0.022120105107880407 had:0.021323552487176663 ought:0.020960357970444217 wish:0.020218681124858744 :0.3531467299992613 +:0.05942101280542576 it.:0.012941101623066529 .:0.009376286406258726 them.:0.008792444594194867 him.:0.006397030116659543 time.:0.005241416075863769 country.:0.005140937523073918 of:0.004539081987389104 day.:0.004387586134667725 year.:0.003996220668114357 work.:0.0037206518135882768 years.:0.003399217813952253 city.:0.0033079822617159793 people.:0.0031745547662579182 place.:0.0027508757260623303 up.:0.00274315922994572 States.:0.0027055439671793014 world.:0.0026939565763279124 tion.:0.0026579752641617727 :0.8516129646460942 +and:0.15992658106113347 which:0.1018745272921699 I:0.08091772512620396 he:0.06436351196196151 it:0.05220075423309837 It:0.04245670075980504 who:0.031190842036261084 that:0.029360349038336342 He:0.01938789157944561 they:0.019005934946344016 then:0.017428705701418405 she:0.017423603369762456 time:0.016390319835482347 but:0.01368942479123457 we:0.013501857705194324 This:0.010898115965591851 :0.010434897734096516 1:0.010078391385324322 this:0.009333203808998897 :0.279136661668137 +feet:0.041977735830593346 hundred:0.028615439210429097 time:0.028606283244706585 men:0.021609172386458 dollars:0.021183737350376257 day:0.018575433472691683 city:0.01723548453129992 county:0.01310804502622238 up:0.013105070876447923 year:0.012988670381545518 interest:0.011456260408299812 land:0.009791408424969188 street:0.009407392829465228 out:0.009252116099859273 life:0.00905031122772533 down:0.00886764302450064 house:0.008597367959825282 wife:0.008063050064736068 night:0.007896080001443343 :0.6996132976484051 +the:0.2782472374031439 and:0.05853086307875382 of:0.057808400149107285 a:0.0505051790196421 in:0.047737229779834744 that:0.029028474107152598 tho:0.018710024088825838 no:0.017339306339466322 any:0.01703662573257265 for:0.016715378203915124 or:0.014389838101205619 to:0.01254353636706294 The:0.011965494146430906 such:0.011478107165062217 their:0.010557144796299397 this:0.009886618703130198 by:0.008203119141950934 In:0.008031362143197362 an:0.0075425481936670265 :0.31274351333957906 +more:0.288580026774029 less:0.12873821148674264 better:0.09534868955721065 rather:0.04194962640752013 greater:0.040424532118066535 worse:0.03384969696669796 higher:0.025407576376996442 other:0.02019796679376318 larger:0.019590520740532656 lower:0.014937612124356962 faster:0.012345450340443966 More:0.012016744824835415 smaller:0.010965829465844899 and:0.010702050515309789 longer:0.010467331274254305 cheaper:0.009647018069677068 time:0.008965063983230211 moro:0.008521139840873743 it:0.008404113646376884 :0.19794079869323755 +and:0.24442158132002012 have:0.07177420806181009 had:0.05789089444985414 he:0.05633224342603676 not:0.054576301504752185 it:0.04973696418963162 who:0.042334197557936486 has:0.03290650540301817 It:0.030799905885983542 I:0.026358047223836847 as:0.022566018355706388 they:0.022158873840988764 is:0.021274926071237488 be:0.0203810840266555 which:0.019346405373132886 never:0.017326338160013454 or:0.017042580219513045 are:0.0165649050065839 only:0.015706204134151667 :0.15950181578913694 +the:0.5273860236853589 The:0.11573035800633485 of:0.06832618694593123 a:0.0457150834563421 tho:0.03255447104181716 this:0.024477913176685025 his:0.0174334519009712 to:0.014068582714948626 in:0.013417123096091665 and:0.01239460897404459 tbe:0.010837151304083867 an:0.009168913657000928 on:0.007227479514253114 by:0.00712720412041152 Tho:0.007025586167395303 old:0.006438766288934671 their:0.006189066528330774 our:0.005747874680379713 This:0.005596471565947167 :0.06213768317473755 +a:0.30021871969532415 the:0.1333109008436724 and:0.10595332137977598 very:0.06025394164276168 of:0.04607690083274983 too:0.03434978490980573 with:0.03327874601781706 is:0.025772795128017337 was:0.023218571715588835 at:0.022187644826959094 so:0.022106956495802174 for:0.017238081382882603 be:0.016395145389186808 A:0.015175663381077481 his:0.014926291609388583 as:0.01244113012557193 this:0.011918328948076307 are:0.011705684535994416 from:0.009583541044411748 :0.08288785009513584 +a:0.3884469936118696 the:0.2516295347949699 large:0.1172598166199743 A:0.04263538507407082 The:0.038751151922176284 great:0.015784669032137842 total:0.012450029176985985 and:0.009906332100247798 tho:0.008795594021867324 whole:0.008551498061751726 any:0.00830995036862049 considerable:0.008078460889881919 this:0.008064962747566476 sufficient:0.00759398209225476 largo:0.007553634725424092 goodly:0.006793601890766698 largest:0.005417677222877226 small:0.005326727807158831 greatest:0.005260218271373045 :0.04238977956802493 +of:0.3555734407517428 to:0.07627933214854979 in:0.074070739267691 for:0.06771057071258052 and:0.05823603169668509 that:0.054714733157521615 by:0.04422253036006395 with:0.03636552493381151 on:0.02267509684505175 from:0.019978759640587946 In:0.018029300871880972 at:0.017525429498429463 all:0.013975719189786592 is:0.011372840340577308 as:0.01095769074924679 under:0.009978187212083036 which:0.009875469684639215 upon:0.009852438711323169 or:0.008470942304348606 :0.07913522192339888 +and:0.053622790723861675 of:0.03515342712220959 the:0.0317374292789001 go:0.021225869071119688 it:0.020573153360330575 to:0.020105413579089026 :0.017795743065361108 that:0.015771147548860835 his:0.014885287657262944 or:0.014551464515219326 him:0.01343852488195006 went:0.012999600247447979 her:0.011786416573109946 was:0.01173610406428577 :0.011541629849173307 alas:0.01045555833631864 for:0.009730560748238854 them:0.009550093322505872 their:0.008948040753853116 :0.6533917453009016 +the:0.41472562076774605 of:0.04715872146696697 School:0.04005386962238408 tho:0.024702669066014364 and:0.024355852990850482 said:0.02203333804671209 Judicial:0.017910576376496866 The:0.01391216973716448 :0.013156580906540817 in:0.01254125827903486 Election:0.012437657611172126 tbe:0.011489686863307194 Congressional:0.010016599814113288 .:0.009737063926472042 Washington.:0.009469071505953138 to:0.009016663796067675 a:0.009006111326660864 Road:0.008625310792930614 by:0.007074794801057666 :0.2815763823023543 +and:0.06874004173847023 to:0.05026939548070715 I:0.04349964003997785 not:0.042594608643243964 he:0.04042161870850496 who:0.037059230599059904 was:0.022380423440557285 or:0.01954179219868712 which:0.019516017944244127 that:0.019305728554858584 they:0.018670929708393767 as:0.018620598531719875 has:0.01748989325057856 be:0.017099633770971633 had:0.014521574959235768 a:0.014518718472099141 will:0.013244621336903743 have:0.013131225764621425 ever:0.012779833511095712 :0.4955944733460692 +a:0.39731407895879883 the:0.10796753592596958 and:0.06524045942271463 most:0.056971192828546575 this:0.05503158330576964 of:0.04291412579157782 more:0.03308977776050894 an:0.02957423046692882 or:0.023350669826501136 for:0.020042656343813317 to:0.019131123948476006 This:0.014576075389353352 that:0.01423191366526419 first:0.012803354121612293 The:0.012657834951125617 in:0.009893702254031987 no:0.009551492875010463 which:0.00925534112150004 A:0.008921106894227829 :0.05648174414826892 +the:0.3066394005483572 of:0.12613553979243655 his:0.04969374795708799 this:0.03874117342640334 a:0.031628633099898495 and:0.024674198978706697 The:0.023958966117400792 their:0.023348101027227144 tho:0.023315725172915726 our:0.02225092055673244 my:0.01649288495161831 by:0.016223812074931197 its:0.015715926766055287 to:0.015575359086985907 that:0.014915712669183318 your:0.014482656441655294 her:0.014463685736512993 in:0.012894508275524819 other:0.012319100943621675 :0.19552994637674478 +the:0.11241664115819995 of:0.06210884446566228 a:0.059611103475104114 and:0.05904975994547726 to:0.044460715059904565 for:0.03414647815265245 in:0.026636303133295743 as:0.016240894443599607 or:0.015875203526463582 that:0.015741130029660086 are:0.012446522425780955 was:0.012258802269328623 is:0.011819304989179637 be:0.011725678084885506 which:0.011513682099522056 -:0.010746504281391584 :0.010278784627825973 their:0.0102263469901559 it:0.009735287231640197 :0.45196201361026994 +be:0.1095992624509685 and:0.10603502815748352 he:0.08898292837103722 was:0.07838366055936861 had:0.05897164286519283 has:0.053838909131930165 have:0.05379556375532097 been:0.04654371014538656 is:0.044307796432731895 are:0.03746163038150928 were:0.036764978535269374 I:0.03324196579147732 it:0.023279819423629267 that:0.016465172894595752 the:0.01436270575169926 she:0.014176246731092341 they:0.013968769147555503 hereby:0.013948002747460862 It:0.013749580556038392 :0.1411226261702524 +;:0.048214511721861864 him,:0.03118801412938965 it,:0.02165525966009788 her,:0.01706009553170372 time,:0.01295691265020207 and:0.012355615309671412 them,:0.01219842894897496 man,:0.010295424491566119 me,:0.008149307292260412 there,:0.007356207913178857 up,:0.006516299982022191 nothing:0.006499279988362063 out,:0.006483638682151871 here,:0.006413446128854645 ,:0.0062344040882351785 him:0.0061262753563238 away,:0.00610969912411711 is:0.005904157614156472 way,:0.00585264359153454 :0.7614303777953352 +of:0.3184190360443104 to:0.09837906929557073 that:0.09130553659096319 by:0.07716162857593323 and:0.07688457445143693 with:0.03906316830091578 for:0.025965737317318032 as:0.02542658772834525 all:0.023506616441147255 which:0.01968652879663868 among:0.01841207866951537 in:0.017513619642541476 when:0.01720235800928863 from:0.015449175925616863 on:0.014523860288414415 but:0.011312790402103057 if:0.010474920730546195 where:0.009647153854551638 upon:0.009387241003742929 :0.07927831793109999 +the:0.1454500361787387 of:0.1080247151493501 to:0.04516715868785427 boy.:0.036249098323069925 and:0.03403580073245388 girl.:0.032660326140049385 a:0.03171979252021135 in:0.02714044436566853 for:0.02365213940166824 be:0.021942286684630472 their:0.021087116084698817 his:0.019774122064073623 was:0.014637031197642503 with:0.014008395154201525 are:0.012730720509515858 is:0.011363112041341867 as:0.011357870543086747 from:0.01063391638067422 were:0.010589399829418696 :0.3667765180116513 +it:0.11901136823590237 he:0.10090605615365725 which:0.09590395723100886 It:0.07421163867897236 and:0.07388171079494203 that:0.042162323603772325 who:0.04062326553346139 He:0.03843701177145249 I:0.034943240185685946 she:0.02768494048433528 there:0.014815352938766966 This:0.013687960626463063 man:0.010378363956629251 bill:0.009462223161134146 She:0.00923214456760207 this:0.008514250179025353 but:0.008433216590518683 as:0.008422784065777147 what:0.008323460856619202 :0.2599647303842738 +and:0.1648336754134807 of:0.09917958819486251 in:0.09316719219868216 by:0.08977229247986185 for:0.056192342436598805 that:0.050427647943524896 to:0.049622309797264064 with:0.04414926158246965 or:0.03057561331828221 was:0.027084290287501218 In:0.02694640194682661 is:0.020165224066701935 on:0.018019349812399756 are:0.017908469442011084 from:0.016168692203033387 as:0.013930082064628688 but:0.011879565865350387 if:0.01040485128122294 while:0.009527534152966938 :0.1490456155123302 +and:0.043015776808721616 :0.04028952622357906 him:0.029849066119168963 was:0.02681302709661934 out:0.014119963913348797 is:0.013074138148868823 be:0.012766846983914327 it:0.011772514041273297 made:0.011223532608227454 up:0.010963937419784348 man:0.010937823438994515 them:0.010623785233086304 found:0.009069041086430609 put:0.008043119849930488 day:0.007916602851218564 that:0.007895868193531492 been:0.0075237704681003536 placed:0.007502762542176327 time:0.0071425151592323455 :0.708456381813793 +the:0.09732967063292698 of:0.09683629982135024 and:0.06312569492817172 to:0.05548799015784702 at:0.04256982292060671 a:0.02722447419091331 .:0.022696539710644986 :0.018386053675759316 by:0.015932544179385964 in:0.015387035350048617 from:0.015197014058268033 for:0.015095713307230316 with:0.014249173279552106 his:0.013552365022559559 said:0.01235180404305902 on:0.011305655695820085 or:0.010535582374453265 Mr.:0.00770309943867762 The:0.007701600741769534 :0.4363318664709556 +of:0.24771856616623836 to:0.10055514755145552 in:0.09984480279807748 and:0.05814117240642057 with:0.05158849496637837 for:0.04613065771486411 on:0.044432355864291194 by:0.03519649785437645 from:0.03338388255327628 at:0.03070401576666744 that:0.026848878623973782 In:0.02041195271981872 upon:0.015248471773457326 as:0.011599582931726849 all:0.011326016994932605 or:0.008867228292995478 up:0.008407673252508876 over:0.007381477118522736 into:0.006992770039889695 :0.13422035461012818 +the:0.14250590530369128 of:0.07413917227492556 and:0.05267262084563457 to:0.051637724419500576 a:0.04093636942780848 in:0.03311811193934384 as:0.03069128605824282 be:0.0267581599922152 was:0.020620267684002352 is:0.01712924408511596 or:0.016599893357907198 con-:0.016066206184889752 that:0.015329125470697227 on:0.015158688312019232 for:0.014460181373462831 are:0.012797401207743845 tho:0.012141313915058918 in-:0.011787667220391793 much:0.010706724825861253 :0.38374393610148727 +the:0.12109040983849975 and:0.074314502831428 of:0.06609585500044123 to:0.03956905103742552 be:0.032033153769342675 in:0.030940936483817263 was:0.028854568397335533 for:0.023418715290198455 a:0.021103801412769397 his:0.02055075341925431 their:0.01742723006938508 were:0.016167135029843356 been:0.015986165317585305 is:0.015911437215440253 are:0.015297072027993346 he:0.013271245649238239 on:0.013007192596366166 that:0.011705058699797152 or:0.011260835185772073 :0.4109948807280669 +:0.05025651254401566 and:0.04096971012016622 that:0.02061799339914108 it:0.020410577310540332 was:0.01764379893568596 them:0.0155202723452597 is:0.013113306726366772 be:0.011958349393115833 him:0.011177750692865529 out:0.010880996605798101 up:0.010345028100181982 made:0.010060346006327254 done:0.010011676628473505 It:0.009962045865073323 come:0.009291011000613665 been:0.009067207618617736 came:0.008825920841234196 work:0.008743484873669563 now:0.008657771097513046 :0.7014862398953405 +of:0.15007497626339414 the:0.12427788620415768 in:0.07051723681492233 other:0.04297204744538058 white:0.033739721852171216 and:0.031702591971710666 on:0.02950923674728075 his:0.0291586005611405 an:0.025204405850151927 their:0.014803519938635507 public:0.014499813753868438 American:0.013860026580028013 these:0.013853508706732564 In:0.01252769621120939 national:0.012480340369609147 new:0.011975634313553737 by:0.011940395761088081 a:0.011923818643971353 into:0.011746447979112687 :0.33223209403188125 +hundred:0.02334136986593815 up:0.005482494641173394 men:0.005366536521246011 Hundred:0.0047587970519216575 John:0.00441808156134956 William:0.004390720675819281 him:0.004016828614280843 ;:0.003997112205305733 due:0.003721199871732 in:0.0036582900032443304 time:0.003637206863828461 James:0.0035594902370151707 out:0.0034878448964120057 .:0.003467980723571515 1:0.0032804584819785204 day:0.0032444781513863933 ,:0.003058139385740603 :0.0030314555521939613 Robert:0.003005471634785646 :0.9060760430610768 +made:0.0999812034390529 and:0.06680208263369662 caused:0.02435411478715239 shown:0.02379785223577525 up:0.023253655008919294 ed:0.02312002180398423 out:0.022293807888227747 taken:0.021988971765594088 done:0.02128782706813444 given:0.020283609421760777 paid:0.017098570970207227 owned:0.01708227903067019 that:0.01698438626809451 or:0.016145946252097726 him:0.015808363688274 followed:0.015366441255538056 appointed:0.015126279845513936 held:0.013990473525433292 approved:0.013949758860964168 :0.5102843542509091 +and:0.08995317707915026 to:0.06844710404109794 of:0.04605142056172993 the:0.04074574508561307 which:0.02479116931334353 that:0.023764822140213245 re-:0.020841117231308055 in:0.020803825395358622 for:0.020278423301550053 :0.018417753428486977 not:0.016860793136637672 con-:0.016444405871234195 is:0.014386481772210856 or:0.014080680914153714 be-:0.01352268143271276 I:0.01317002660943805 was:0.011429878269381662 dis-:0.011196807025842847 he:0.01113106290024311 :0.5026826244902934 +called:0.5421815256630506 depended:0.05262826169620582 agreed:0.049989357481904036 relied:0.0471274317534981 looked:0.0280691106499602 went:0.01600619593850506 levied:0.011185838961471626 due:0.010583399414767884 look:0.010159473687231304 came:0.009952534351412313 decided:0.008929238714771245 go:0.008720483675600733 turned:0.008382110051915796 come:0.008155907366492505 call:0.008091900952998228 prevailed:0.007990915370658637 imposed:0.007658704805097774 depend:0.007332225924597342 put:0.006519395647515041 :0.1493359878923458 +the:0.16889008346404644 and:0.07014648694869381 of:0.05227419029730454 Mr.:0.03800467847958812 The:0.03566701473082823 a:0.02775516448622503 his:0.01991538316304037 I:0.016881286124750244 that:0.01628978960361243 was:0.014329928907225257 he:0.014076357288743553 when:0.011174277060095841 Mrs.:0.010918106026900444 to:0.010737773363421273 in:0.010329160416546019 .:0.010281375136314191 as:0.010207376946321024 tho:0.010106836217815694 be:0.009690860572295942 :0.44132387076623153 +the:0.19307683470951784 his:0.13285867841373294 their:0.10838784587647599 our:0.06725781246146914 her:0.052345576787966 my:0.040844077060083896 its:0.03655681532533307 your:0.03335661363254643 of:0.03275720901596292 both:0.026275367881624427 a:0.02502009338402121 own:0.018498461432644085 tho:0.014152491229969606 and:0.012982899077078678 other:0.012798877061797977 all:0.011578377475011769 or:0.010662529198501984 for:0.010090134778150024 in:0.00947195970000278 :0.15002734549810923 +of:0.11938681721379753 and:0.10502584568527569 such:0.06968320694689192 all:0.062468572009211513 three:0.053363786965172993 many:0.05336016774881227 the:0.053268003398848546 two:0.052352244716289846 or:0.048557927221160695 to:0.04434447000273239 other:0.039065074575237425 by:0.03303173318713692 both:0.027063921876218536 several:0.024964419133002357 few:0.022728264043475666 these:0.019837646562108086 for:0.018962674078209764 their:0.016040208929064777 four:0.014936017613741017 :0.12055899809361206 +of:0.10064710437874355 and:0.04299676607853044 that:0.030160674206603098 in:0.025005221228345437 for:0.022914534216699915 to:0.022586337266377404 by:0.014085585473106007 from:0.012562597564373213 with:0.011425118316443765 but:0.01035368615917012 things:0.008494265586116672 after:0.007868125122028759 upon:0.007513741612693694 on:0.007327960326356862 ,:0.007164460775383225 at:0.006762351043467438 law:0.0066695657353308905 which:0.006615501179774797 land:0.006518199969759132 :0.6413282037606955 +the:0.3524476656325145 of:0.08944134467823148 an:0.050808496870192045 a:0.029813383352444645 The:0.02519537456688085 to:0.021691306824379832 and:0.020802459426075663 tho:0.02014433132192012 in:0.018550669306039973 by:0.01657957735835631 our:0.008347379686945969 tbe:0.008100834268564911 his:0.007551340538282747 per:0.007066019942674423 that:0.006988698820812954 new:0.006616790432003169 for:0.006168858997960772 this:0.006168006626841072 other:0.005895731963279611 :0.290621729385599 +the:0.11041179145280358 and:0.09319135714474888 of:0.045895386387963547 to:0.03029350512960033 he:0.029317794848425102 was:0.027861143593154475 that:0.02652485443987882 be:0.026440058287693278 which:0.02475360329179152 is:0.023281736616301268 have:0.021177655937133166 for:0.019993952456781927 a:0.01947176196951797 in:0.019431331339175014 has:0.0189868283719241 or:0.01784726556247261 are:0.016290722756583866 be-:0.015941404662782783 been:0.015535358803072497 :0.39635248694819525 +went:0.060408967335141256 brought:0.06027413165266614 go:0.05503369656030345 came:0.05202796133717592 put:0.04203545229868049 enter:0.04143702730901108 and:0.030169138714095996 it:0.02965542439735877 them:0.028291903125933604 come:0.027968433685652397 divided:0.0254207093603731 get:0.02243355064374079 out:0.020571033419327266 going:0.01965999565120689 taken:0.01919655227007588 entered:0.017608212322713035 got:0.01702465518202806 down:0.015486427193909804 gone:0.01465745088815807 :0.399639276652448 +he:0.1232603359538998 we:0.11638841639060252 they:0.10940400004408783 I:0.08695116373294126 it:0.07011993050048951 you:0.04644063885759735 It:0.03765003296398011 We:0.037409235428880326 and:0.03414783256147492 who:0.03363166094386811 which:0.031750813660128184 that:0.02402489035966866 she:0.021674447926775652 He:0.020876000786103997 They:0.014990298729583889 man:0.01353694780759424 one:0.009456263869450412 You:0.009070962882249501 there:0.008973934076512024 :0.1492421925241117 +in:0.20067803429104475 of:0.18289496164057406 to:0.10044055400185188 at:0.05469412037509179 or:0.039166639062296296 by:0.03861104316042107 on:0.037511610209361744 for:0.03478117114814902 In:0.03387364936627558 have:0.03260741108106457 from:0.03131767638722909 that:0.027709905219499727 had:0.02374160428162712 with:0.021598671271436023 than:0.020172127726788613 without:0.016935435830290828 make:0.016187473921331325 upon:0.015838389637300377 as:0.014287711855116899 :0.05595180953324923 +to:0.15589010448259247 and:0.10389941283083894 not:0.06289391869398706 the:0.039378187626166065 of:0.031230375973905128 in:0.03032064143258833 I:0.01994916778337872 it:0.019612894227255463 or:0.0180394181510265 have:0.016725307618984515 would:0.016144385275098278 had:0.015655276745865376 be:0.015555764767162793 that:0.014955444283648249 he:0.01482546998227126 is:0.014268312747382876 was:0.013178256896926878 will:0.012997655998270059 a:0.011506373270338963 :0.3719736312123121 +of:0.14894440636196354 to:0.09683049217838997 for:0.08942465118089742 in:0.07117501109928147 with:0.05750364526068299 at:0.054452357026815036 as:0.05192805455412763 and:0.048619327909553124 by:0.046492984650671136 is:0.037544189294610314 on:0.03377241074725576 was:0.03346996268526381 from:0.01823774443385273 be:0.017125619770245057 that:0.015432326458525127 In:0.01373881565613947 not:0.013390027806898748 like:0.012626846343007316 such:0.011310973232764652 :0.12698015334905471 +of:0.13084814232797154 in:0.0740836656586379 as:0.0625527229231004 with:0.059577596335708534 to:0.058433603729754965 is:0.05551580107464621 and:0.04946529489577619 was:0.04264000753602388 for:0.04009673021586375 by:0.037684080471064085 be:0.023941707008899252 on:0.02316059851167503 at:0.022644769441950232 such:0.019950936521181326 that:0.017856095877642635 like:0.017386655618315594 In:0.016902219705578994 from:0.016046571451088905 not:0.01205910100844263 :0.21815369968667797 +in:0.3787174359414882 of:0.23210350902986274 In:0.08448682908032307 from:0.047189322617257154 for:0.04568647625273559 to:0.0420927820160057 and:0.02331622757901211 on:0.017613231263060237 at:0.011152126095077708 all:0.00840078525848548 by:0.006368063623434039 with:0.006001007045887916 into:0.005866218976897563 iu:0.005451671806933307 throughout:0.005435674081570503 upon:0.00467093569943527 that:0.004227828588633374 said:0.0030262526190582843 From:0.0029902765987313744 :0.06420334582611034 +be:0.2359072813966572 is:0.11505565608957544 have:0.06422163696389345 was:0.06283799609727568 are:0.05893998570277903 and:0.054278121701538576 has:0.04920118849971284 been:0.04715376084182572 he:0.038686969557553214 had:0.032172905916534274 hereby:0.026268074369541098 were:0.024727593895535502 Is:0.023994832046502223 not:0.0225429545719549 bo:0.01657647069929145 being:0.014004502084331339 who:0.013856901335373204 also:0.011506141682183356 He:0.011498676887714497 :0.07556834966022699 +was:0.13270567814318388 is:0.08694305800698399 be:0.08357997677009703 and:0.07380225254082733 are:0.06379826971848002 as:0.05091733397505522 were:0.03855296914598312 been:0.03666296156469588 the:0.0300204641356126 not:0.022440573565521513 of:0.022428231345676015 very:0.017805948443829753 being:0.017638087693026137 Is:0.014070053436750496 a:0.012189060345770986 so:0.011581568797825377 for:0.011281557915427145 now:0.010312596208821712 or:0.010158407225936378 :0.25211095102049547 +it:0.09937207286538377 they:0.09227258641429736 and:0.07560819287494493 which:0.07538754992361744 he:0.07161377340802166 I:0.05642708060351296 you:0.05597066998242024 that:0.05320159069169627 It:0.05208084209903893 who:0.034156212791274586 we:0.03154850410455563 she:0.019153292089139688 He:0.015464250243397343 They:0.014752420070134458 This:0.010771287362642499 there:0.009151810241150166 this:0.008623301833691782 as:0.00804741563931392 We:0.007240351638436743 :0.2081567951233296 +and:0.2055218155544566 the:0.13165556597174055 of:0.12389671406043283 or:0.02984353363414194 by:0.027867443291078223 many:0.02649411220172112 for:0.021386076746478477 those:0.019419908407376466 that:0.01931690817775995 all:0.01813434736108548 other:0.016851543863920404 as:0.01633739922730873 The:0.016011910941340527 his:0.015197523719235913 in:0.013345492248446167 to:0.012305640567758727 are:0.012296162238728535 their:0.012127615504095282 some:0.011214574276086669 :0.24977571200680745 +Kansas:0.13285359245740075 York:0.1109552852551424 the:0.08042734106268526 Jersey:0.0617395297463 Lake:0.03671663367606162 Sioux:0.03669018744441452 of:0.035105926259737234 Atlantic:0.026067973220274734 Carson:0.023107299106554714 this:0.015446262556257999 at:0.013902149694589291 Valley:0.013488613235834534 to:0.012638122229370673 Forest:0.01257906666490725 County:0.010575375502998143 said:0.009953389737889593 White:0.009232205171774935 Pacific:0.009097423998640214 a:0.00845121478747818 :0.33997240819168795 +the:0.151564299052826 of:0.09038750472184202 a:0.07461608498201407 and:0.0466615732099648 or:0.03708629888768566 to:0.035569645185394266 in:0.030052392055566975 any:0.021357004017533987 be:0.017082462262097576 no:0.015583554621420614 for:0.01514666947239845 with:0.014723578456062631 by:0.012787654001396713 said:0.012726164481980391 such:0.011693957670550037 tho:0.01002305994460469 their:0.010002787499567302 at:0.00923663004776501 is:0.008936804169325014 :0.37376187526000376 +he:0.24163969841974237 and:0.09728764636637104 who:0.04662022703903449 it:0.03939727852439621 He:0.037485358780783476 man:0.03689022550511813 It:0.03186388900829509 she:0.030914555371913375 as:0.026668585379961366 one:0.023553097946902798 which:0.020111966607263023 that:0.01930456730804092 be:0.017052884535302317 they:0.016413909540395104 ho:0.015757230891632987 lie:0.012225085213526964 I:0.012002472716436386 person:0.010285045149353626 land:0.008026514330767254 :0.2554997613647631 +and:0.0779114823119363 to:0.066675530738193 :0.060839126500769454 the:0.038473832458502964 Mr.:0.0380788913063861 St.:0.03393947382718591 .:0.031842382442352775 that:0.0227779222264836 it.:0.019877049520434627 It:0.015982892953269455 There:0.015402821846604645 of:0.015325719095892212 or:0.012471276396498171 from:0.012387003376065034 which:0.011263924291048121 them.:0.010838413554326864 will:0.009080082683447883 it:0.008656009301773265 :0.007746257776216886 :0.4894299073926127 +was:0.18503452056375774 be:0.15584269141251855 is:0.15133597378448674 been:0.06058307548597318 not:0.04963111954193741 were:0.04468179162656883 are:0.038695104173855 it:0.03756820228190648 so:0.033583111564612196 and:0.03245204513060706 very:0.028934630292757044 Is:0.021450186754478306 too:0.020314513942126126 had:0.01679462983479484 bo:0.014707158612700734 as:0.01339962558452916 has:0.013362417328411598 have:0.012961563704111246 being:0.012544243060617886 :0.05512339531924985 +the:0.19683684691044542 a:0.15619738691893512 to:0.09242514885777511 and:0.06199141897436621 southeast:0.05314075341889905 northwest:0.04799576314006536 section:0.04480195248716315 of:0.034785913386679794 northeast:0.026265645589345535 southwest:0.0230892568270231 said:0.019515201306527577 The:0.014167820636352654 west:0.01259778607771253 lot:0.012187716138864267 range:0.012042973299860588 No.:0.011598215408412816 any:0.011135034975218765 No:0.009936235560155392 A:0.009314075867983234 :0.14897485421821433 +and:0.017534912043794603 ;:0.009707350025590495 .:0.009322340112267475 it:0.008882641901345958 that:0.00824569299437053 :0.007645498622603626 ,:0.0073912503316728665 them:0.006072717004980888 it,:0.005805263671665108 them,:0.005720595222492554 him,:0.0051542290524321755 :0.005041959828794616 up:0.004986465946856535 on:0.0048526034588124755 him:0.004697669634243904 in:0.004327361468261597 well:0.0043055279301498365 of:0.003845569973886025 you,:0.0036743903097069502 :0.8717859604660718 +in:0.25628788320337115 In:0.07270986701645636 the:0.06331986429246367 into:0.05135420666451513 of:0.05120581779142612 and:0.049493185366868954 their:0.04475821207909143 its:0.044542839407642774 his:0.03618943337975751 this:0.026423879697038907 for:0.026397318229896848 right:0.026095978312524158 to:0.021784936169267202 an:0.02116345138865115 no:0.017600007548206967 good:0.017520545236097362 own:0.01550349477775182 took:0.013896879905643051 that:0.012893454428347126 :0.12985874510498233 +and:0.08189559233336957 was:0.034412811973772287 made:0.030452194929576418 that:0.028429614579538954 is:0.02273240165946779 out:0.022249633467878616 up:0.02186480507967773 work:0.02174684863889149 but:0.02027047318699576 put:0.017075515798431345 them:0.015757797283364357 it:0.015079470164977593 him:0.014664500962106726 go:0.01379258451266427 effect:0.01370044384463789 due:0.013235994755461137 people:0.01293977541771161 interest:0.01286929926839455 carry:0.012657357732476993 :0.573172884410605 +May,:0.08133414898459009 D.:0.07564771191675598 January,:0.064716424911538 August,:0.05804331616709138 April,:0.05684571957743694 March,:0.04932217671935681 and:0.043234895025483 June,:0.042397155667949875 October,:0.04190170469526535 February,:0.03890893766866851 July,:0.03560744396929059 September,:0.03369369171291887 Mrs.:0.03065117064300575 November,:0.026138384315772374 .:0.025602917607539306 December,:0.023111451252999942 Mr.:0.021432644805508508 Liber:0.01840196927807985 No.:0.016128427924167636 :0.21587970715658125 +to:0.31019601080253456 will:0.13793678134185958 would:0.07774183426288846 may:0.07078528459128908 should:0.05127128910568003 shall:0.04901700088221223 not:0.04594340671139167 must:0.03257846389794495 can:0.03230794200897745 could:0.02086203652199685 cannot:0.017984019065961077 and:0.017474170306863105 might:0.013535476571922157 it:0.006941357203389574 never:0.005186754057084183 that:0.004968373522249409 also:0.0034185027334872305 only:0.0032209125075107173 soon:0.003102154139878731 :0.09452822976487903 +in:0.13451559145930309 on:0.11223293813777915 of:0.08508039655814104 the:0.07000667274102161 and:0.06436863296162097 at:0.0602315958288644 to:0.0590112089078819 along:0.05769708550882103 In:0.04860395552789216 from:0.041065037745495477 by:0.028859621103750146 At:0.026953181819914004 that:0.019959607468450616 for:0.01912621590160179 only:0.01827925588323138 any:0.01752237850879283 upon:0.016311321970684883 than:0.014357501268856399 as:0.01410558566827992 :0.09071221502961722 +the:0.15014865668603558 of:0.09139703177225163 and:0.07007023163973611 to:0.06011241970727643 at:0.047314794771537175 a:0.035665133738448936 in:0.026055110059678085 his:0.017707233920770903 on:0.01583740400966639 for:0.015708751815850554 :0.01565273880188542 The:0.01320984906294149 from:0.012974834316069377 tho:0.010191341701250302 by:0.009671207170854417 .:0.008648075236148295 their:0.00851597505895103 with:0.0081399043598122 that:0.007666310120297068 :0.37431299605053864 +and:0.09646290120599173 of:0.048138544303077145 to:0.03325992634809616 for:0.02319342161527031 the:0.022890643595652772 wi:0.021224276946270864 I:0.02031319501356871 :0.01790386150583677 that:0.015209658732502594 in:0.011789143804371882 -:0.011079924033866644 .:0.010651785687621863 or:0.010587384772972745 is:0.010238707364677165 with:0.00990096055706843 which:0.009660326541860704 have:0.007391852016273767 by:0.006960601379391218 a:0.006839710629428879 :0.6053031739461996 +of:0.4181741463321904 in:0.30010468388250316 In:0.10784666473658572 on:0.02203438986826228 from:0.01587378068993959 the:0.013394385083754885 at:0.0132949649093365 and:0.012124776031471477 with:0.010177595711784407 for:0.00981495892761386 to:0.008998623017223038 by:0.007489488637411994 ot:0.0036319297174990973 Of:0.00352173829600705 iu:0.002794266042823101 about:0.0025199112834120058 ol:0.002494367118307606 upon:0.0019930869576674287 near:0.0016638054166099553 :0.04105243733959645 +the:0.11919516938815296 of:0.07230453158552728 and:0.05781056740443249 a:0.043018564803886335 to:0.031305092790907506 in:0.020848713353460488 at:0.014270110001066288 .:0.012526810245749479 :0.012413283442322082 for:0.011719122709941797 by:0.010808400946589808 or:0.010404172990115616 The:0.01003576004804544 with:0.009811868184449042 tho:0.009295902015355835 was:0.008924239095331684 that:0.008672304223433876 is:0.0085591147338948 be:0.008335143826716943 :0.5187411282106204 +be:0.14307311178101978 was:0.13771515864933837 been:0.08021104977363333 and:0.06926796736359499 he:0.06456678104942751 is:0.049906862970652874 were:0.04926645583095478 the:0.039571944285656954 I:0.03538618935676349 are:0.029597934815719446 had:0.027933991223564235 have:0.02230703466576445 has:0.01668741870428487 not:0.014919420136541654 being:0.014442825534911148 then:0.013993008959061639 they:0.01368049500891521 bo:0.012103512972194122 she:0.011208390947712848 :0.1531604459702883 +a:0.15049406577981359 the:0.09821189301574723 and:0.05391478895724946 more:0.04855574180192428 an:0.033427825775672035 their:0.03288028352618172 very:0.028990367902524565 his:0.024048550154170602 of:0.0220140628533132 to:0.020826357886828895 great:0.018445313943094774 which:0.01723393137899804 will:0.01643004339591451 this:0.015916414097759023 that:0.015260780682250872 less:0.01440749939001063 who:0.012652356634460842 would:0.01209726431879816 its:0.012094198805770973 :0.35109825969951663 +and:0.1578005279096792 that:0.12327387778696562 as:0.08472470113666422 which:0.06458658094125669 but:0.05900581674058682 if:0.050863379009557286 when:0.04371031589229951 what:0.032375298509690294 If:0.022585768806972443 But:0.019212880843890345 do:0.016942012804038436 so:0.016056178285253984 yet:0.0158492441350064 then:0.013297544807280888 where:0.012051494497933921 all:0.012005365623300793 whom:0.01187688173578615 When:0.011111957753565056 because:0.011061343077103424 :0.22060882970316853 +of:0.14061422670442228 by:0.07397890083971677 to:0.0645957650592629 that:0.06278196009235353 and:0.06171779412995163 with:0.024784207916322815 :0.021296554997849743 which:0.018150544625629747 as:0.015593235006414066 from:0.013045232743111014 Rev.:0.012950377448433107 for:0.01208267405942049 in:0.011345035541060299 but:0.010763995429851557 when:0.010542089526816392 if:0.007472747609427384 said:0.007100416424489038 or:0.00707214494317395 at:0.006990048717905581 :0.41612204818438775 +as:0.06931392982974462 according:0.052071562389565784 up:0.0511867300210483 and:0.040371568633051955 went:0.03351644485287816 back:0.032358406609281 regard:0.03073407747799069 feet:0.02852138506231652 down:0.026379903432040268 owing:0.02466642634685871 due:0.023695193974505355 go:0.022910973192184297 reference:0.020802802907016128 came:0.019883741951819873 sent:0.019874244915639484 attention:0.019565955494145405 come:0.01885185084678811 given:0.018792390567602263 it:0.017366961307524745 :0.4281354501879983 +be:0.2989300013840677 was:0.12316734232376378 is:0.06883809779910062 he:0.055490989108097216 are:0.04425605644655145 been:0.044119385296268264 and:0.04275796799502222 were:0.04262150440473675 have:0.025512026717152962 had:0.01613223546075811 bo:0.015983568479921443 has:0.01577132416580885 I:0.015265153570259545 being:0.014577501611219453 Is:0.012024234997006226 they:0.010037108179602969 who:0.008822660416472464 lie:0.008063301453971558 which:0.006696833763054825 :0.12993270642716356 +number:0.06737991378891858 state:0.057070904989920984 amount:0.04533075744858163 State:0.04370976732078957 sum:0.038044185563009134 board:0.03645986575172957 out:0.0346497849297043 line:0.030655059644618902 rate:0.027857435556408315 county:0.02145582790496153 and:0.02119093058105825 years:0.02081245634432985 Board:0.018653470031735623 day:0.018532037999980894 tion:0.01791930658158907 time:0.016326649523143708 city:0.014209154809423852 act:0.014206377215085365 period:0.013744109983737436 :0.44079200403127344 +a:0.49567002888359796 the:0.22859530339877926 and:0.04020129242059682 very:0.02875720403536908 The:0.02699281096251934 of:0.016940552653955956 his:0.01653810548537853 most:0.013885105437805143 some:0.013227189245633873 tho:0.01100677183215313 A:0.010734632466226988 or:0.009979162805448308 their:0.0094326138126843 two:0.00937402124871423 no:0.009351994913737222 that:0.009201491274055116 any:0.008281202272462668 be:0.007946569140012228 as:0.007829343361713929 :0.02505460434915589 +the:0.164622510216757 of:0.07124655442027641 The:0.06889686753552093 Mr.:0.06325252336407099 and:0.044366166073833896 that:0.04264168951999022 a:0.026935017441304315 Mrs.:0.021417054292642027 his:0.015373932368963752 in:0.015166387820743404 this:0.013228806556018961 :0.013136427543557318 tho:0.012055764911697249 .:0.010810741278177282 which:0.010410363554372798 Dr.:0.009964965976760979 to:0.00981126413214408 at:0.009089697865957478 when:0.008784665899295399 :0.3677885992279155 +the:0.31074895225749877 The:0.10070727911938272 a:0.08242291293873848 his:0.07069726438062085 of:0.04845352917993596 an:0.042588235855633226 at:0.02449589916465401 and:0.024182468708258235 No:0.022558852501876836 tho:0.020108430254990234 that:0.018396241011903562 her:0.01696444109874839 A:0.01535107992917648 no:0.013534928611846152 His:0.013356015024716646 my:0.013251038826872218 their:0.013118082036952017 dis-:0.012790635355221739 this:0.012544233571080797 :0.1227294801718927 +a:0.7490608607818907 the:0.10339745580984473 A:0.03498168027708795 The:0.016928744808207098 young:0.012397476065529172 one:0.012022355892616117 tho:0.006179439563971237 any:0.004658997449044557 first:0.004414694533469378 and:0.004052969863798074 this:0.0038089070466664886 every:0.0034848322741560605 old:0.0028122403410148797 large:0.0026384198028981203 tbe:0.002529854460857119 One:0.002468546095685099 no:0.0024016772390773157 very:0.002399944183899404 per:0.0020246670436832575 :0.026336236466603265 +to:0.280402351999366 will:0.18396015696387144 would:0.09175375716479647 not:0.07609992862635795 may:0.0663184890271737 should:0.062847692773938 shall:0.05371407320396795 can:0.03705439963501822 must:0.036883600751984144 could:0.019868809260628197 cannot:0.016877288579388867 might:0.012905028682475925 and:0.005203243577472468 never:0.00508153550976499 it:0.004687412501529515 only:0.0033014727713921756 also:0.0030778993689748093 soon:0.002547703526832625 To:0.0024866660676049978 :0.03392849000746154 +;:0.014475429743564281 hundred:0.013864139299922947 in:0.009032940042238136 him:0.0073831271343713254 .:0.006151142436873514 it,:0.005690347320661348 up:0.005684014528787031 ,:0.005638711222486578 it:0.005342097768124758 feet,:0.0052112291863649855 and:0.005077909891293496 on:0.005012314300066867 him,:0.0047219379093301015 them,:0.0044116931730567525 them:0.004073830661544583 out:0.00376328576636512 :0.003676568946691224 to:0.003581611783216306 time:0.0035437153187077245 :0.8826639535663329 +sum:0.03352282876311118 number:0.028116684882597106 line:0.019995206059833036 city:0.01946514558931857 out:0.019275318828420953 day:0.01666865340772654 county:0.014872697538657208 amount:0.013254184849875051 Board:0.01252325449624941 town:0.012449555905674143 side:0.011663975251122375 part:0.011517157473718155 County:0.011460540331966697 state:0.011087331502382173 City:0.010878919191854432 purpose:0.01081028255427907 and:0.010297866493795984 way:0.009848747943663767 name:0.009522170936943183 :0.711769477998811 +of:0.09129790931378902 the:0.07369883040827747 and:0.047842263382354346 in:0.04189055351593407 to:0.04045875475680249 a:0.03542341257202578 be:0.02020462051672066 for:0.01979292654746225 was:0.01760256398103379 at:0.017380150555488715 is:0.014984483003968216 with:0.014047653760730413 by:0.01374644383819499 :0.012670486581795598 In:0.01200961464556976 or:0.011563835749786333 from:0.011391516893522809 are:0.011273104484969465 that:0.010755276030689069 :0.4809655994608848 +be:0.2600542984388784 was:0.20210561960053694 been:0.08143739855412285 is:0.06225676613142305 were:0.05886782408110125 he:0.046514080908500594 I:0.034396345520130336 are:0.03395857730291696 and:0.030303554316408143 bo:0.019173767520109485 had:0.016587094376949125 have:0.015972808804932563 they:0.01359617106526336 being:0.012442250136453805 not:0.011951561435566386 we:0.010900529416645854 Is:0.010854967919378011 soon:0.008446753619063073 she:0.008031439457784213 :0.06114819139383563 +the:0.11627723270845242 of:0.07650166835130517 and:0.0487729519691777 be:0.04588451005485056 to:0.035208515685857186 his:0.02793124103248743 was:0.027676051578039235 re-:0.02467096519594529 their:0.023562536365494244 is:0.02284934633470482 in:0.01984075335721388 for:0.01839296146345337 or:0.016665858292998645 been:0.016219485090647464 much:0.016043116669998456 are:0.015988123327245536 at:0.014834128671766832 were:0.014504816623048762 he:0.014328008537533465 :0.4028477286897796 +No.:0.0643559996867421 and:0.05217728663602116 the:0.04457893615527467 of:0.04208592666726906 at:0.029559812124280428 .:0.026941588593129052 a:0.02665337501305524 said:0.02218285368793813 to:0.020968212253776656 :0.012113795208807012 W.:0.010346049690272937 1:0.008885076881085235 or:0.00887777499038276 feet:0.008858771980041424 in:0.00826327866723483 E.:0.007891826548905304 on:0.007224495184656087 C.:0.006686993849698836 street:0.006472148815453404 :0.5838757973659757 +real:0.46378909374038735 the:0.25052326742040454 said:0.0396327441214555 and:0.021540563374219297 The:0.018623753637100216 tho:0.012136840830839083 a:0.01199450925281849 an:0.010956179174138912 of:0.005089516300626537 personal:0.005033888205399722 tbe:0.004845264242607994 any:0.004616886942684225 or:0.004224174839401644 great:0.0032405435016749423 no:0.002694315111039737 :0.0026460855080910183 State:0.002254480168651982 to:0.0018433049862669171 on:0.001795159302622039 :0.1315194293395699 +the:0.27944189849034223 The:0.10845763891760779 of:0.09222241935213263 and:0.04730648944977179 no:0.04548672883663553 more:0.026561102785265463 an:0.024366455901957587 a:0.023821169865545687 his:0.02374918522931412 in:0.023474942778673347 most:0.023232865372246784 with:0.02211444485706097 this:0.018397065363038548 that:0.01750316581193268 any:0.01716903877913249 such:0.01710253258061512 is:0.016778882423901784 was:0.015421410363862818 some:0.015398852090922035 :0.14099371075004058 +the:0.13285758464197805 and:0.12902632097824554 adjoining:0.07830033385690738 of:0.07488799552573248 their:0.059658245401299576 he:0.0453267216312737 his:0.03367287556542683 or:0.033653389288824054 is:0.021146174611144833 which:0.020006701260316354 its:0.019507215331195694 who:0.019189053001891804 said:0.018947049492106804 her:0.01838911011761456 it:0.01815500423043446 mining:0.017782360823972217 adverse:0.017613374314861752 your:0.01738800198409218 be:0.017180794050702955 :0.20631169389197876 +of:0.20241904219982157 on:0.1513826588191612 in:0.12928366262030533 along:0.10486073112437516 to:0.08608265334267558 at:0.0371452565957504 In:0.032093091757332194 from:0.03144625977334554 by:0.029651415485374897 and:0.025152338901668826 that:0.020154412928574256 upon:0.020014470154632813 for:0.016059161883091057 over:0.014408117114247594 into:0.014067012508839507 with:0.013540140293682954 through:0.011737286424155393 across:0.009852223781960774 before:0.008069777524904105 :0.04158028676610089 +the:0.18572461241875607 and:0.09089984187950689 of:0.07156594415960958 a:0.052596679728304147 to:0.039858111089346136 in:0.03547726658772912 The:0.029565427395395145 or:0.017566448940928955 for:0.016911619175139087 as:0.014621665423692089 be:0.014283107007998943 that:0.013797517317248166 all:0.013171504205503715 which:0.012857313726916139 his:0.01256099762401426 are:0.012001327665226663 tho:0.011996471470164432 other:0.011479866234280968 with:0.010647413276470707 :0.3314168646737688 +the:0.35355519159109605 of:0.1580097455803849 a:0.0723438841247387 and:0.04505085361983595 their:0.026570763375126247 The:0.025791137105734246 tho:0.023200657034528848 his:0.022339567829472808 with:0.021971464383316857 its:0.0183738379756048 our:0.014484636694851824 for:0.013971814045166935 by:0.013236835093458826 tbe:0.009862858103277186 in:0.009240513698462557 that:0.00888862358830351 this:0.007624613170940369 said:0.007312556549963203 or:0.007193124636156793 :0.1399773217995794 +they:0.16767459549135477 There:0.14745029858563896 we:0.06366918325935805 and:0.062210161046091825 They:0.05518783521581249 there:0.04377719016906126 who:0.04284767658165712 I:0.04078829412251873 you:0.028856270405604144 which:0.0255686967460196 he:0.0192356484901841 We:0.01761059506516277 it:0.016521473457116086 to:0.014579953692232707 that:0.012012579755874907 will:0.010118679187160626 You:0.009184774123876582 people:0.008988785557281886 wo:0.006799018198617853 :0.20591829084937555 +and:0.1407455398722462 fact:0.08506714162630977 say:0.05479587144696185 said:0.044408543997226525 believe:0.03861214168998984 know:0.03722149766608384 so:0.02949218198872714 all:0.026840617534648167 is:0.02485684623676385 says:0.02080319506927648 show:0.019753617855364183 think:0.019604813932605308 stated:0.01915323696580479 found:0.018146134941886556 see:0.0167888245021748 find:0.01657042962714736 but:0.016239933420412394 was:0.016129903676027527 thought:0.015660136826155212 :0.33810939112418825 +it:0.24821867953307553 It:0.12491417828142069 there:0.069306522105283 he:0.059799171357782996 that:0.05448913452171614 they:0.04308045581579138 which:0.03975166646880763 and:0.028391784481365753 I:0.017785057885554047 what:0.015014723986643873 who:0.014813518986538871 she:0.012277284734011025 There:0.012075841823057449 This:0.011660321731650861 as:0.011471599182449319 this:0.010417679117785841 work:0.008583289274340197 He:0.00780328791147001 we:0.007024892215396919 :0.20212091058585846 +is:0.1738715461353775 was:0.10200041174883466 and:0.06314309819588981 are:0.06165713866472291 but:0.04186982495745935 has:0.039398402850754334 it:0.039060768643964704 will:0.03794363778434516 had:0.037402545107219805 would:0.03590086837796079 were:0.03192449160560687 have:0.03158952705835127 Is:0.031523214743115535 could:0.021283456806792226 do:0.01709497558445978 did:0.015879202494715836 that:0.01478429232657224 does:0.014759611493145945 shall:0.012729480728099887 :0.17518350469261137 +he:0.19730382729371754 I:0.12958965839572137 who:0.07529293336920576 never:0.05747083387042176 He:0.051040129750070606 and:0.048411184191053905 she:0.047377006202001 they:0.0315934463509952 1:0.02403708473778772 ever:0.02228166859487704 be:0.016809988282852562 She:0.01633242287028961 that:0.014574404870261291 ho:0.012997392384471076 we:0.012036251241396356 not:0.010923780178867384 It:0.010431296098488098 lie:0.009665347452675584 it:0.009239073494136446 :0.20159227037070968 +get:0.053610422214488855 was:0.05051841536969282 and:0.04903958730444051 him:0.038801969319659166 it:0.037410018187455464 them:0.035569152369498175 are:0.03479460583298655 go:0.03206022460430166 come:0.03018624754922308 came:0.02989007710531499 issued:0.028538548420871033 taken:0.028387580006254076 went:0.026471193886938953 got:0.02591677196361888 growing:0.02512307536827857 be:0.024827416016109424 is:0.024256616056951556 served:0.023420563816567756 paid:0.022272217198545566 :0.3779052974088029 +the:0.6232532207561536 The:0.05940580733491462 tho:0.03731510850680766 at:0.03068773413185492 of:0.0305766984228368 and:0.01680029618013057 a:0.013698565477637578 tbe:0.013693459234222632 his:0.012596391755724025 this:0.01080628134080746 on:0.01045344117509756 that:0.008828464219439657 to:0.008355908845806542 their:0.008169657084258474 its:0.007438954209029902 our:0.007154210760564679 city:0.0065220260511356 it:0.0064284427128285535 This:0.006247635148851579 :0.08056769665189746 +law:0.026008952534180636 one:0.02334436468213934 druggists,:0.021220313289655506 person:0.01801614210951138 action:0.016810579746192232 man:0.015080679022637815 year:0.014824189088617582 that:0.012063641029888541 whether:0.011395714648510599 them,:0.010774927190884565 thereof:0.010563518936754572 and:0.010158149458688363 property:0.010063970210990198 money:0.009635664980215607 State:0.009522843179680138 it:0.009202082605676041 land:0.009159460785520544 day:0.009152322570423897 party:0.008832019047602245 :0.7431704648822303 +the:0.14048602411779254 of:0.10252225631561868 and:0.07633183975731359 to:0.03245895674061561 that:0.030733737144535016 The:0.02900268575179401 in:0.027931447478085947 which:0.018752304155935415 or:0.01571308762550976 :0.015055749982663399 Mr.:0.0149342694058751 their:0.010852954179470109 on:0.010754035534755927 as:0.01048165637565865 for:0.010288939626440372 said:0.01005519865138013 tho:0.009754500854680081 he:0.009279558727176576 a:0.008993895187521092 :0.41461690238717797 +and:0.14673965838343514 the:0.07845330076898022 to:0.060758333836445196 of:0.036122235082339874 that:0.025407744518104475 a:0.024826177468502585 or:0.023741175205065107 as:0.023179034104775474 I:0.02016841442526425 for:0.01927832448098986 will:0.017896539423344234 would:0.015813699960189758 which:0.015330636956916886 do:0.015120906159651067 they:0.013613859264214507 did:0.013321444347328855 The:0.012205572161390869 in:0.01143204733522154 he:0.011132021947340082 :0.41445887417050004 +and:0.12210698371786961 was:0.11326248495566654 have:0.10126188445430091 be:0.09241584939083457 had:0.07265078849963799 is:0.05058845234664721 been:0.04714190294204138 he:0.0447082933326578 has:0.03020344124023214 were:0.028129391171468177 well:0.027826343357760776 are:0.020870315047004834 never:0.01917548824581594 I:0.01871872357909678 He:0.016122713607444192 on:0.01578079365491803 not:0.015277558972366366 the:0.011202711134840754 having:0.0105184437911305 :0.1410374365582655 +of:0.3538884821934833 to:0.12433103758270153 and:0.06529143989041204 by:0.05107298383391861 with:0.050952209758295744 that:0.050021496616156555 for:0.041182711546963416 from:0.03551096047412747 in:0.031668939099852196 all:0.028913396556755105 Among:0.02825258406639658 upon:0.016430121436704956 among:0.01464749646206962 but:0.010511247374610748 on:0.010441814000415526 as:0.010244986515626815 than:0.009252756650828383 To:0.008801204992123928 which:0.008333997863728251 :0.04925013308482925 +as:0.06931392982974462 according:0.052071562389565784 up:0.0511867300210483 and:0.040371568633051955 went:0.03351644485287816 back:0.032358406609281 regard:0.03073407747799069 feet:0.02852138506231652 down:0.026379903432040268 owing:0.02466642634685871 due:0.023695193974505355 go:0.022910973192184297 reference:0.020802802907016128 came:0.019883741951819873 sent:0.019874244915639484 attention:0.019565955494145405 come:0.01885185084678811 given:0.018792390567602263 it:0.017366961307524745 :0.4281354501879983 +and:0.12602853789373233 to:0.041654206164852124 the:0.027205889434491703 or:0.025611893743784152 is:0.023360843586368665 of:0.022731209071955825 was:0.020417749645773097 are:0.018684430600962167 with:0.017745417727107932 not:0.015836699539203084 on:0.015399836291625672 all:0.014957918087699513 a:0.013887438771532826 were:0.012076564377530907 for:0.011644684199398772 out:0.010286074005146691 be:0.00997652981568933 will:0.009905700793352835 :0.008900688390040871 :0.5526876878597515 +the:0.15575346313544208 other:0.057145439869840754 of:0.05532680045784598 such:0.038133881422730546 in:0.037547458962992046 any:0.029576446786781493 public:0.025747030868869772 and:0.024024565595699862 two:0.023520494096870806 a:0.020021472447547088 school:0.019270457667671107 agricultural:0.018898242337992806 their:0.018843017793230502 this:0.018404950565511453 vital:0.01800094406519706 various:0.01620051056176794 these:0.015952195923097615 all:0.015749708153312267 said:0.015095772394435667 :0.37578714689316317 +the:0.09814118604372983 of:0.06331656011074577 and:0.036712781813000486 .:0.03466036261249379 a:0.034022199783429394 to:0.02156805866747967 at:0.013659587666308353 :0.013496926423463142 in:0.01338227904854637 The:0.013340446387664868 by:0.012842054855780268 A:0.0125396622251628 W.:0.010688600238995887 S.:0.009105187843745133 E.:0.008886144110302412 No.:0.0086599850996318 A.:0.008593986342267958 Mr.:0.00851183282687108 N.:0.008362541235547832 :0.5685096166648331 +:0.03951907051730695 it.:0.028688151949212235 them.:0.015337483746250217 him.:0.013453882747958295 .:0.012916145539980061 ?:0.007456060838196143 her.:0.006296069259315103 me.:0.005829960635432162 life.:0.00560279381311057 time.:0.005427773827018244 world.:0.005216470178391796 I:0.005126709754950389 country.:0.005015606588366614 and:0.004954715322520754 same.:0.004937472264542858 again.:0.004845028510731188 all.:0.004817761058063413 day.:0.004735843293373151 tion.:0.00470654098600456 :0.8141164591692752 +sum:0.03352282876311118 number:0.028116684882597106 line:0.019995206059833036 city:0.01946514558931857 out:0.019275318828420953 day:0.01666865340772654 county:0.014872697538657208 amount:0.013254184849875051 Board:0.01252325449624941 town:0.012449555905674143 side:0.011663975251122375 part:0.011517157473718155 County:0.011460540331966697 state:0.011087331502382173 City:0.010878919191854432 purpose:0.01081028255427907 and:0.010297866493795984 way:0.009848747943663767 name:0.009522170936943183 :0.711769477998811 +it:0.20661626833118804 It:0.13133310388077965 which:0.05346195225056892 he:0.04322413433168328 and:0.0399221355018402 that:0.03638459118631527 there:0.02656324547693805 who:0.022588363007738477 This:0.01601752777676921 He:0.015090910728543903 what:0.013686208311658789 she:0.01181234484166701 this:0.011752239301455133 There:0.009749183368011116 man:0.007759333367156636 as:0.007068481254995637 work:0.006691860301109499 country:0.006039779831696346 but:0.005362639996269743 :0.32787569695361507 +be:0.24562719174445033 was:0.15366846641946558 been:0.10730738714991325 is:0.08060623824446878 are:0.05052158359525032 were:0.047615740338438774 and:0.030383426356651276 being:0.028185367703616106 have:0.024189556675611096 has:0.021568505874240314 he:0.01846051907171106 had:0.017784866931243204 Is:0.013884038561758134 bo:0.011923854201794155 I:0.009202581971441305 hereby:0.00902909426185448 it:0.007045794470001053 not:0.006592877240691934 they:0.005774750485346911 :0.10962815870205195 +the:0.2628013359899579 their:0.0845023958728892 a:0.07999641474126788 his:0.07883483890938323 have:0.0529957174614753 of:0.049624725688477596 and:0.039656954666743224 no:0.03945351317793334 its:0.03074107319872097 in:0.02582661045336441 our:0.01757248464928105 or:0.01686987350569547 for:0.016287166575901412 any:0.01411367197204002 my:0.01373634993915146 by:0.013500173001340366 had:0.013391808078044546 your:0.012711924238338532 The:0.01207982790924784 :0.12430313997074624 +the:0.1378854459619626 of:0.09550816209198172 and:0.0793082284712746 to:0.06325432732593851 a:0.04981744998475612 in:0.04049507588462003 be:0.036034788213397076 is:0.023342186109428096 or:0.020042185465407026 his:0.018536136774378487 was:0.018362645804285444 for:0.015918042951775277 their:0.015879187622248634 as:0.015274637443141725 at:0.013719580768808836 an:0.01347101662130876 that:0.012412869685016129 are:0.01241085713967708 it:0.012346328197267564 :0.30498084748332627 +State:0.2902541600250104 state:0.0680978940194234 County:0.04465541915805778 city:0.04376232326341944 deed:0.03467100789973932 county:0.0327317938620169 day:0.029216004106002946 City:0.02717400384894307 line:0.02171629988519888 Secretary:0.021072005640166477 people:0.01597151694943243 Bank:0.015091010810328076 University:0.014661494559042785 number:0.012602481527953282 part:0.009037730139817934 act:0.008919248117947304 name:0.008484376939456605 office:0.008097995289081032 lot:0.007791086529645025 :0.2849921474293169 +part:0.062325847554271264 one:0.06063111468590399 some:0.037306181508129276 out:0.030654329894436005 members:0.022088577251346518 and:0.01924141362015411 tion:0.018787037941101363 portion:0.018051689715010356 side:0.017943951891416163 that:0.016507907061938807 member:0.01593843659970584 office:0.01574566960076909 majority:0.0154104008831532 front:0.014054186394075671 parts:0.013607560627939948 payment:0.013458169751259314 all:0.013339146994107673 end:0.012284189708442875 time:0.011200658322325753 :0.5704235299945127 +to:0.09749257770986998 the:0.09551206399013314 and:0.09354319224337997 of:0.07480932460768112 in:0.02967229660085893 a:0.025579896041081792 not:0.017538510939051802 I:0.014890048771587954 be:0.014454354650863947 or:0.013502879084097318 he:0.013420350455248153 by:0.013217729847265764 for:0.013182212294170192 is:0.0128700234264903 :0.012502131012163752 at:0.012352874503725284 that:0.011267247520049631 this:0.010977319699742834 In:0.010892947902981794 :0.4113220186995563 +the:0.13523978534994952 and:0.10916395101070428 of:0.06400339692724946 to:0.0508815486938647 for:0.04074165913592381 or:0.03339708418165392 in:0.03313929659973183 be:0.031689596761189175 are:0.026104201551593067 a:0.018138776597057378 their:0.016248960394437035 were:0.01525347417237932 is:0.014169490931147307 was:0.013743165983219967 as:0.012446300318086995 all:0.012308446124477098 with:0.01143540834418554 that:0.01055641095463657 it:0.010401341178156682 :0.33993770479035634 +to:0.14401522014784593 I:0.08717805441967116 would:0.08361228383208522 they:0.07250612364846672 we:0.06597598184142542 who:0.05136360986841521 will:0.048581532657812176 you:0.036303803346831635 and:0.03262750567837507 must:0.02681132061405771 We:0.026497479392441514 shall:0.02444461513167911 not:0.023426718145168758 should:0.022766551002372307 may:0.021516097053646 might:0.01661740567775864 They:0.016135791002525445 which:0.015447058681747887 could:0.01476846332748608 :0.16840438453018802 +and:0.1102231266714582 he:0.075951195328151 be:0.06709020482621113 have:0.06031689041643458 had:0.05851050938917999 re-:0.05799397254967855 was:0.05432671775507023 has:0.04177424682030158 He:0.03639845016085964 they:0.03410579275336145 I:0.030605457056648123 who:0.02850326351662881 been:0.024592922012210233 were:0.022259143460373193 she:0.02031173793193131 re¬:0.018530150486979414 ever:0.018154666379803855 then:0.017801552958977895 we:0.015707242549245982 :0.20584275697649482 +to:0.11072297279764762 or:0.10613980047998905 and:0.07584878414490738 not:0.04107508953982762 of:0.03719930795239555 there:0.027150188177330947 the:0.02707119059246538 nor:0.025270356513242505 that:0.024241483978626317 in:0.015763415321107248 as:0.015610491314474187 than:0.014201938942672014 for:0.01378946478582446 re-:0.012417242777279751 :0.012407866813393597 by:0.012050683302328837 is:0.011754987194787724 never:0.011366555260533555 would:0.010899589151123138 :0.3940185909600431 +of:0.6660718924367526 in:0.07270539553927775 and:0.020370226105775303 In:0.018640521118030835 for:0.018109949437853285 to:0.017637967405308885 on:0.015948778275453674 by:0.013591834140451483 from:0.012782463930930733 ot:0.00929996376279127 the:0.008868000894590139 ol:0.006728376843367357 with:0.005762879295888058 said:0.0037051945366589505 at:0.0017103129915012202 public:0.0016507091350191903 upon:0.0016317975534938284 seller:0.0016164844763276295 or:0.0014791598157963244 :0.10068809230473154 +the:0.29601838389401247 a:0.1047818762696114 same:0.08158816743128042 this:0.0673757974582914 any:0.05939989593633987 some:0.05841282648657398 that:0.05343577284721938 in:0.030224324268425133 first:0.025677312228289777 short:0.025502151843413194 of:0.023617208209961594 long:0.019922958776976276 no:0.015276472600849193 to:0.015244776935803134 one:0.014973830642290764 which:0.013977214754165 tho:0.013548418288583594 present:0.013461078929570765 every:0.012973100753205215 :0.05358843144513745 +the:0.5887928047714912 a:0.12169464334622422 The:0.06416024260622828 his:0.03973950467810466 tho:0.029294047041338502 and:0.02098313399848888 their:0.016054102562307732 its:0.013567815764914521 tbe:0.010571605559840007 our:0.009506915898637199 of:0.008659068987073039 her:0.008502980456356139 your:0.006427525642611567 my:0.006290925926010927 no:0.004581400451530305 or:0.0044743357045197866 A:0.00361585539924074 in:0.0035822723162012263 with:0.0033355203738230856 :0.0351652985150579 +an:0.4895744554865955 the:0.3043009305867315 and:0.029452111244308243 The:0.021271385612861456 tho:0.01397258244073212 to:0.013060943165614285 his:0.011874326578315861 their:0.01126840820895825 fair:0.011014674617885701 a:0.009468687052426544 general:0.008628890485088957 of:0.006413786689103717 An:0.0062328211503918755 said:0.0057482175090877935 tbe:0.004898345762577447 no:0.004678217052496064 any:0.0038932015688400777 au:0.003581683413509213 not:0.0035762922078785516 :0.03609003916659677 +the:0.12929738398532223 of:0.07969298724673742 to:0.07705001702930084 and:0.04629405658501116 be:0.03518648107629889 is:0.026012879773002113 was:0.02483570572325083 in:0.022258254093647078 for:0.019450047450796776 not:0.017135983460042158 a:0.01671038270553375 are:0.0161333045724546 at:0.012969855448504014 he:0.012074574561260933 their:0.011988338534213517 will:0.011820854343721484 or:0.011786989689519353 his:0.011779688336713149 were:0.011487882781156264 :0.40503433260351346 +it:0.18320178070209697 It:0.15887995273119848 he:0.09573787873340457 there:0.08847345691537985 I:0.05067042546688393 There:0.048767671638560196 and:0.03361411631265471 which:0.031783522409874324 He:0.03153666545019079 she:0.020921670992801795 that:0.018395105658803854 This:0.01771331616153334 this:0.013295382393231827 who:0.012884078077184547 but:0.011369538356674197 She:0.009917940546626616 lie:0.009697896331018498 be:0.008893785838567196 ho:0.0081762236994688 :0.14506959158384553 +of:0.20898690036200493 deprive:0.09575062359466542 with:0.07427523315835244 to:0.05360013905609933 upon:0.053020733050237794 for:0.050785056340387644 by:0.04549808729715907 make:0.02663672488282814 give:0.025174179598949156 among:0.02406053867586794 about:0.023202475138315363 on:0.021168687643448602 told:0.020210292499142222 remind:0.01953735709409187 in:0.019129705874416546 keep:0.017410443138216023 let:0.01544281580087007 get:0.01358045081141571 tell:0.013523796939481239 :0.17800575904405047 +and:0.17177026678751983 of:0.13860735617001838 for:0.06395725170549241 to:0.05945796666122475 in:0.044913160913194576 do:0.0414437549761449 or:0.03975851810121813 with:0.03772319822084705 the:0.02939755355741393 as:0.021403676048760468 a:0.01985745626207272 all:0.017832085169152273 that:0.017759766434921033 by:0.017007326124920143 on:0.01552582704079502 it:0.012698358030613342 at:0.011751879650270606 than:0.011311802092635928 when:0.011112412555036822 :0.21571038349774768 +and:0.10925101585080288 of:0.09523212351273119 the:0.08405000501377789 to:0.03771370679314594 for:0.032238150486892596 a:0.03187300563203929 that:0.029744585089495536 which:0.028819132911761403 or:0.026381580167191054 be:0.01963163098872943 in:0.01884090270315227 as:0.017358310653269916 they:0.01729463018182581 was:0.016855793796917425 are:0.01650856001629639 :0.015791018099353606 who:0.015769157903558793 he:0.015215796993336674 The:0.014218483387887376 :0.3562124098178345 +of:0.14288423788710028 and:0.10236331459891809 by:0.09504932127473094 that:0.07801201934284739 to:0.07431380921893645 with:0.03336307492066417 :0.023212427831007583 which:0.022210529727491764 for:0.014226320522092098 when:0.013146587582521328 but:0.013117028202938811 against:0.01172251447451797 from:0.010451646373658292 Rev.:0.010062207466873509 said:0.009594728408093656 as:0.008595308948501688 if:0.008084751110746424 If:0.007836239317886478 ;:0.006885795136333037 :0.31386813765414007 +have:0.13967954791891143 be:0.1334172952807803 had:0.12863625684479205 has:0.11638999880557807 was:0.0763552962414168 and:0.05395657839650328 been:0.04660967771212086 having:0.02717230701392281 were:0.02584635107530341 well:0.020131931983796605 is:0.015403353557058514 not:0.014722097444701938 being:0.01301828681128422 are:0.012075901562256634 bad:0.008700824654085625 duly:0.008269742474500463 he:0.00803355357604379 bo:0.007891692854499468 then:0.006630536301723418 :0.13605876949072032 +of:0.3607731605354783 in:0.15139627225301944 to:0.07149057079235174 from:0.060463998027309 on:0.03920897760981802 and:0.03851231571569886 In:0.036829175293053656 by:0.03608688716788507 at:0.028815516420995266 that:0.020049281063762036 for:0.017937166588796842 upon:0.016111424793214733 as:0.015692483949572837 with:0.011993204753163591 within:0.008519631598571439 ot:0.00833821430100296 between:0.00825116889628723 or:0.006668653337753431 iu:0.00582889211407307 :0.056033004788192446 +of:0.21511751433030307 in:0.12343823314187989 and:0.09640637600894449 with:0.05992951495583025 all:0.04863988233607948 for:0.045256738085088184 to:0.04474215960024487 from:0.03585568531289671 on:0.034023517496237755 by:0.03363151585874224 upon:0.024084253091519577 that:0.023372774117998242 In:0.020521643773347354 but:0.016938338411748934 at:0.016823655032092363 do:0.01070925373021964 as:0.0096979047726073 under:0.00920202397343598 up:0.008242491460019569 :0.1223665245107641 +able:0.04795907955406747 and:0.04353567184461763 is:0.041235567977807294 have:0.03876828334361679 him:0.03662776951487707 had:0.031575658538607075 right:0.02987975483179204 enough:0.029329435508820084 willing:0.028280012905788597 not:0.02682313507330459 them:0.025942367597424534 order:0.025862676912433363 was:0.025636089024478878 necessary:0.0255781117934275 began:0.024933373581299306 ready:0.023995472098691805 ought:0.021512881147108052 want:0.02106226583126587 as:0.020369275689315257 :0.43009311723125676 +a:0.2814324744659879 the:0.26708614783090573 of:0.08009559950383918 with:0.04462622176646893 this:0.033774116374293 and:0.028532776821348003 in:0.026360425907929023 A:0.022444675397036366 so:0.02093199359460009 The:0.019149403994929044 very:0.016309753049326525 that:0.016268997138530094 tho:0.015173986215543563 our:0.013861980341371816 his:0.013281661277999469 two:0.010840631459609633 by:0.010649094696753065 as:0.009148804972145963 for:0.00869612027390667 :0.06033513491747596 +and:0.13080749733576158 of:0.06731146186201895 to:0.056336840590178974 the:0.0355718023682952 for:0.029212115605040685 in:0.02560602972503452 be:0.02219806614008282 is:0.021001708883146276 that:0.01931404132101289 :0.018873700487799572 was:0.018855035501571853 or:0.016977723246715985 I:0.01529834417236265 not:0.014953053553044457 as:0.014840304077231876 Mr.:0.012776443492911545 con-:0.01209225572123772 by:0.011357830133879645 he:0.011305379522925887 :0.4443103662597469 +and:0.09005343616954511 that:0.029236466303695505 was:0.01989414796548935 them:0.018659825481080347 made:0.018073869153086237 as:0.017786521868843334 it:0.017065749074932548 up:0.016732809747416595 or:0.01615275932496896 is:0.015427826660817094 but:0.01499462823666581 him:0.014915022147236303 out:0.01422180407812097 be:0.012634183629104298 than:0.012055438527848366 not:0.011898248251144541 time:0.011506314629588925 men:0.011151670131973577 found:0.010500560446095198 :0.6260387181723469 +to:0.12022893700269083 and:0.09020394424291768 the:0.08587503820055309 of:0.06450042443224316 in:0.0310058468700829 a:0.017742048521183405 :0.015548046036689871 not:0.01491307651316237 that:0.014112408707955496 for:0.013734482372212283 I:0.013065769926808477 will:0.012848502316304782 at:0.012837991177321897 In:0.012628718855091186 by:0.012491091048660757 be:0.011425930130217754 is:0.0113962101007567 he:0.011342727513475473 or:0.01112522537451577 :0.4219735806571561 +Provided,:0.06578376531222681 provided,:0.035096355425080744 probable,:0.03314395447840106 ;:0.02713642663254267 is,:0.025079409308016904 not,:0.0216921911038268 and:0.020503867878009903 vided,:0.02033483909694337 are,:0.015495393743930242 it,:0.01508989288503754 If,:0.01472975755438815 was,:0.014307851365774612 this,:0.012583910741785026 say,:0.01192432355968242 This,:0.01156615217921137 believe,:0.011325725312334946 time,:0.010361712946016446 understood,:0.009801428935910524 which,:0.009045841588929354 :0.6139971999519511 +would:0.13516776815931453 to:0.10175318883572715 who:0.0734216616549984 they:0.06090829687960963 I:0.054414498797697934 which:0.046947310165833735 must:0.0405200574155989 might:0.036445589637541506 shall:0.03272411333844378 and:0.03228038765818951 should:0.03179090655993478 that:0.029508760759060126 not:0.02876680420731567 we:0.028503874055856488 may:0.028150033623979002 could:0.022163961267380006 will:0.019029697840863502 there:0.014322928357478427 They:0.011858887319353098 :0.17032127346582382 +to:0.22374781508833735 for:0.09763629965171612 of:0.09528060140642032 with:0.05886648288979466 upon:0.04397974444630315 about:0.03523709818504376 told:0.029983104214387366 and:0.02996244459192792 in:0.02733829824683879 at:0.020752848086771965 on:0.018483798610665514 from:0.01776007686368757 before:0.016571994844894283 by:0.013140528302369643 after:0.013128765651746603 over:0.01277001107380536 against:0.012741208077837655 see:0.012449011605009311 or:0.011787040640771587 :0.2073828275216711 +can:0.1389053841535448 to:0.1273782174937872 cannot:0.12132318838088021 not:0.10908457559443166 will:0.058594831311205 could:0.056905201413824005 may:0.05440972689666947 would:0.051472590235949314 well:0.04173113909674867 they:0.03379343913642687 shall:0.02817253235893588 should:0.026288880124579462 and:0.025272168005532173 I:0.016614977159461582 we:0.015699170865554134 can't:0.014692625487498986 or:0.010034266824339874 who:0.008860995567288022 you:0.008816144045440018 :0.05094994584790265 +the:0.33728537418581506 The:0.0936851681271346 of:0.0708038276505656 and:0.06340212698749842 our:0.04953004692443622 their:0.04451864212731828 whose:0.03092980219240292 or:0.029804649965783452 these:0.027733219945235303 his:0.027394679925363524 such:0.02563703508400869 tho:0.023618314293949297 that:0.02273963790736067 These:0.02253944084760368 a:0.021228892982430112 this:0.016918245548672266 other:0.01474362305568649 its:0.014157976856553154 in:0.013045163272859511 :0.04928413211932277 +the:0.41373636369503 a:0.05276335994971861 his:0.05062000785233365 of:0.045994123291643325 no:0.030505170454971902 all:0.0286092784204337 their:0.02731995439163045 and:0.025412864787021393 was:0.021233712495587594 at:0.020387039012408032 tho:0.02034294891431041 to:0.018090012069126193 is:0.015602478559012731 in:0.01514135603144876 that:0.014347126728476961 its:0.01433859715541185 for:0.014163465199706158 be:0.013855640702435248 with:0.01381810523604657 :0.1427183950532465 +to:0.12928946729154506 of:0.10215315310830055 in:0.09975630776734207 with:0.07676334073979271 is:0.06701974434152877 was:0.059484427772229787 and:0.05376553013399021 for:0.03623818142987218 as:0.03452592191470903 at:0.03359055564935807 by:0.03146468410105708 be:0.025469953032297276 have:0.022380961001347236 had:0.020700823917291385 In:0.020353709909593995 on:0.017910118257033113 such:0.01740429997541883 made:0.016898794856191605 make:0.013935930181099685 :0.11989409462000136 +and:0.09094993868226862 the:0.054307208899041864 a:0.05392138961230273 to:0.048124695051461504 was:0.042415046601079386 of:0.032956565156814915 is:0.026347035259036262 be:0.02402712008217798 will:0.01533870334040172 were:0.014905271004741752 are:0.012686848935045757 his:0.012080223486785361 at:0.01028068666337354 you:0.009629730515559742 an:0.009573683796103348 with:0.009306196482958001 it:0.008988805206703983 would:0.008781308782036723 in:0.008438887434686376 :0.5059406550074204 +and:0.17758274642457592 was:0.05129691612373827 but:0.041534362215459024 that:0.03487568154044307 is:0.030158016258876798 be:0.024186646117697056 or:0.022152860898720025 for:0.020354624562132433 it:0.020183864907374224 him:0.016485221531708335 not:0.01619122764443446 are:0.015816814886976047 were:0.0146609762502108 them:0.014614535829198637 do:0.013869800162030151 as:0.013798644508352723 will:0.012456890244663031 in:0.01229602067956482 there:0.011936283562895755 :0.4345478656509484 +and:0.09636505565437027 the:0.08409014553729188 to:0.08146247147269703 of:0.07832268958179635 or:0.0266348805338052 Mr.:0.02098496958671108 in:0.019474290609286644 at:0.016863777712200434 for:0.016605845038627384 a:0.015433412325853171 be:0.011906704615196878 it:0.011888031608021665 not:0.011049857393656166 that:0.010534600777502373 by:0.010390042411386868 is:0.009841255125910452 was:0.009450745257877136 I:0.00882506441917845 with:0.008762658978977857 :0.45011350135965267 +to:0.5047278991049695 the:0.058979719225301666 will:0.058605405333828894 and:0.0437303134064172 not:0.04142416949765209 would:0.0401687927927543 a:0.02113376173009456 who:0.020560776760152704 in:0.01733679047210314 it:0.016567454988727887 can:0.015765687193102552 of:0.012464187678775288 we:0.01190271551779829 should:0.011731727072544459 or:0.011592981640738598 they:0.010637333775513314 I:0.009669505260444392 he:0.00943971173800977 for:0.009273858188234226 :0.07328720862283718 +;:0.017337387473378752 it,:0.012895915279969458 in:0.011125898613909922 them,:0.010915887942299082 it:0.008932684289750512 and:0.006897148665648847 him,:0.006326868410061782 country,:0.005989918358507015 him:0.005391803241471428 time,:0.005345977648689723 you:0.004923874753462609 one:0.0047838209319682485 there:0.004743303174500048 people,:0.004554399796642478 :0.004519207345966759 them:0.004432565233426331 men:0.00440598202873179 country:0.004217380907460539 out,:0.004058996359652084 :0.8672009795445026 +and:0.05919877020390995 was:0.057699628844848784 be:0.05669636269743079 the:0.04877590766886138 of:0.03393835494270346 were:0.031194687126727808 for:0.03087071572704788 is:0.030048365367060063 are:0.02893229565404301 to:0.02757049953660478 he:0.0222260618453257 been:0.021646081194849693 I:0.018533057260416607 re-:0.017253641692746288 a:0.016337465346188646 con-:0.01522357359056469 his:0.015057424791180928 or:0.014688189300978587 in:0.01410282692063373 :0.43900609028787724 +is:0.1438168889221525 was:0.1261707819127495 and:0.08453644377224687 are:0.07322693392053488 be:0.0688339030459094 not:0.0660466564393478 been:0.05492318862300374 were:0.029199852998076554 or:0.024987063864979328 have:0.024571357694230297 Is:0.022679745878940123 do:0.020111610863922342 of:0.014459845797539072 has:0.01277548507124052 had:0.011906806806022812 become:0.010892055543834343 in:0.010265209622221987 being:0.010189700997921873 for:0.009662341266846591 :0.1797441269582795 +of:0.12687759495863057 in:0.086675899458877 was:0.07906696666382339 is:0.07786892344118468 with:0.0737719585299093 to:0.05938165370302356 and:0.0578275191442808 for:0.04882731987670399 as:0.03779461998702045 by:0.03566105054858927 be:0.031422056922538855 had:0.027344472342016025 have:0.026070457582272895 In:0.02522485809400829 that:0.02355172097365509 such:0.018015166873865177 not:0.017055132333083207 make:0.016773674487009956 at:0.015357161272561691 :0.11443179280694578 +the:0.5146340543544983 a:0.04503348595538646 tho:0.03367940622796957 The:0.029332950552331986 of:0.023782686775859412 this:0.02251510633229069 and:0.022423204146700796 whole:0.012457720015099514 tbe:0.012437391231188961 or:0.009202867043380898 that:0.009200382950944839 in:0.00885578101036368 his:0.008369973651790654 said:0.006876464397365025 by:0.0064458313103658476 same:0.005511571390728782 other:0.005316847526003914 our:0.005098595462918387 free:0.004736766834986094 :0.21308891282982617 +they:0.14879058423153427 we:0.08721122793726155 who:0.07165616405962402 which:0.06872761118689877 They:0.046202591737067915 and:0.04451318956165796 that:0.03619875089140294 We:0.03603597870190573 you:0.02816141212821868 men:0.020395550923158246 people:0.01372645282793809 there:0.01052532088467263 You:0.009681459727778138 These:0.009210275650752732 as:0.008099211642737058 these:0.007371787963921048 lands:0.007332077779078598 them:0.006440714727017564 States:0.006433631604841086 :0.332286005832533 +a:0.3002611797263966 and:0.06791733109101217 the:0.056944664040526234 as:0.055600300578177955 is:0.048092085968033264 be:0.04701296754179068 was:0.046169278140339914 very:0.027789044262242706 A:0.02601364668201903 of:0.025864679091544333 been:0.023080824595126555 that:0.022437182697497875 so:0.022375787144024925 to:0.02215107051474811 it:0.019639626081882418 are:0.017114203050669713 not:0.016072025050430986 with:0.01460335687494637 or:0.013754276911098071 :0.1261064699574921 +the:0.4064091417144234 their:0.25724308521093725 his:0.10293906447613585 our:0.03465479134072234 her:0.023121098035953434 its:0.021183363484028217 my:0.020592001155743177 your:0.019221432579918398 and:0.015976989340050044 The:0.013848912084768862 tho:0.012943218877834223 of:0.011744242800784612 good:0.006705798447791369 or:0.006314982191275817 a:0.005872409402871639 tbe:0.005476178078156527 own:0.0053993456469431725 bis:0.004698543412491427 whose:0.004627918574285871 :0.020027483144884388 +and:0.07834121285229632 are:0.07705710267718255 was:0.06439016403414363 of:0.06431766166652089 in:0.055551699852272395 is:0.05365717112140563 by:0.04337458900404486 not:0.0427805314872275 were:0.0340744671640546 been:0.029111880342440086 from:0.027178855812586795 one:0.026659393907601765 to:0.026377394123631707 more:0.02479424844359428 for:0.024348614483401917 be:0.024062839075062098 with:0.017446118996664275 after:0.016558149882107766 the:0.014417796865599535 :0.2545001082081614 +to:0.1290182063404948 and:0.09352477670003759 thrown:0.0894742462887001 as:0.06690559186904572 the:0.05557703212076892 be:0.049398227501216085 is:0.049027973864899356 not:0.04653885795065256 an:0.042767877967625906 was:0.03035505953128357 much:0.023588562911858214 of:0.02265790284244095 would:0.02062343773996018 will:0.02026722150488246 are:0.019998527975711732 in:0.01826831912772245 or:0.018140527731352055 almost:0.017779244288917986 kept:0.015935608330735263 :0.16915279741169412 +one:0.1678001327051895 many:0.1178830679155386 some:0.11629649396959849 most:0.05250905917664251 all:0.05247722732702672 Many:0.04393717940457599 Some:0.04145252072400844 none:0.03942274921152021 any:0.03229849807875444 One:0.026981283335526234 Most:0.024449316002334315 each:0.02437347877142535 out:0.01729697182841551 and:0.017064556310207257 that:0.014172725973974322 few:0.01321762799495761 two:0.01173136022198473 part:0.011007786075073578 several:0.009924913510291958 :0.16470305146295422 +as:0.25370403482429527 is:0.20054923231344182 was:0.059663099069467665 are:0.05956464519533474 so:0.059449699334567396 be:0.04602608994321166 very:0.03477810065604288 not:0.02925405787448077 Is:0.029006043965266702 and:0.02635706738978244 a:0.023468957008099124 pretty:0.02238378993549508 were:0.015410397018752348 been:0.013625850592646656 the:0.011867517029170277 too:0.01185581038859541 aa:0.006760170963609964 ns:0.006354988986563959 do:0.006253964015822321 :0.0826664834953535 +is:0.19339595277457883 was:0.12676804586826754 are:0.09321649079216043 ought:0.0872470487198269 and:0.04515758946155385 were:0.03965513466032724 do:0.03700975458160706 it:0.03295950705025728 Is:0.030954985853123843 but:0.020259741094306515 if:0.01991762828922547 am:0.019462899136886713 had:0.01767896144602895 did:0.015593062592359475 have:0.013797509157619861 or:0.012586336201493261 does:0.012058431716948148 has:0.009981273176575642 would:0.009717747712118184 :0.16158189971473477 +the:0.5518280973186177 The:0.11204414844276975 an:0.08699305755604604 tho:0.029362334119614513 his:0.029060698465808086 and:0.021546950347250862 this:0.01698995673537814 our:0.012573849056297354 my:0.012126791746696147 her:0.01171301813427002 their:0.011638181667698573 of:0.011021646896243317 An:0.009952333901955929 a:0.009908897272692032 tbe:0.009357822335318792 This:0.008116214682005213 your:0.00694136523866851 that:0.006430794769934904 its:0.006407767708993602 :0.034986073603740606 +to:0.12354075643190157 and:0.08505277297992589 of:0.04744757283939691 the:0.03673010520209344 in:0.027828707058379372 is:0.023305008409429784 I:0.022144012276299987 for:0.020271140005288447 not:0.0199713319441252 was:0.01932205964909315 will:0.019268066369548417 con-:0.018699135648169458 be-:0.018627423880957478 he:0.017655999283213552 be:0.01709344544110531 that:0.015543213952415522 which:0.015438694118314914 would:0.013939369606180202 re-:0.012827440509741625 :0.42429374439441975 +hundred:0.235208650430195 six:0.029774099803945814 one:0.02251595581386991 seven:0.01479342263655922 dred:0.014314121735630984 eight:0.014111248023303024 two:0.012167841275740353 four:0.011654966148275313 three:0.009874982024616272 long:0.008663303131111159 five:0.007616817360685632 street:0.007541509242274414 ;:0.007220265797750364 ten:0.0068626420410165655 men:0.006733668220232004 years:0.0060775198838737415 year:0.006075703033358699 hour:0.00596132927450083 up:0.005903376683147881 :0.5659285774399129 +the:0.13742010605008512 and:0.10207877426319824 of:0.07397450603172974 The:0.03323666966533758 that:0.028170308219414686 these:0.024611712608994665 These:0.02321426573404504 in:0.02233958880195577 such:0.018503551962230223 to:0.016786282210728126 or:0.01636101860162539 which:0.016209694122772757 as:0.016160870658285174 their:0.015028655951173324 :0.014297837749869223 our:0.011954104112023089 for:0.01170272696380604 many:0.010385161604963049 other:0.010218895688899507 :0.3963452689988633 +more:0.2304132737680837 less:0.0758521070955353 better:0.07235285697313765 rather:0.07225378989516845 other:0.052561950197847616 worse:0.0264051915089765 greater:0.023781074105433946 and:0.017945063064110967 larger:0.017552628694724487 higher:0.01642681248182381 lower:0.013665859300579676 More:0.011851575963603799 that:0.011839262230198986 public:0.011176526598672196 otherwise:0.010931794655807932 work:0.010187589825507963 cheaper:0.00943442284276537 purpose:0.009213425374140468 time:0.008346736061170871 :0.2968080593627103 +the:0.30535005797523657 a:0.2658313878579208 his:0.07780585727869962 The:0.033832144612007106 my:0.02664092215491436 other:0.02036614859833639 any:0.019336242442030156 tho:0.018716118304609886 and:0.01838093826169796 this:0.017746534530072713 in:0.017485694390582365 your:0.01311283644969769 their:0.01301046956674194 one:0.012895488258260738 every:0.012395703805048279 no:0.010890893960472343 to:0.010366335587280829 of:0.010310004772080123 for:0.00939876103564591 :0.08512746015866421 +of:0.09129790931378902 the:0.07369883040827747 and:0.047842263382354346 in:0.04189055351593407 to:0.04045875475680249 a:0.03542341257202578 be:0.02020462051672066 for:0.01979292654746225 was:0.01760256398103379 at:0.017380150555488715 is:0.014984483003968216 with:0.014047653760730413 by:0.01374644383819499 :0.012670486581795598 In:0.01200961464556976 or:0.011563835749786333 from:0.011391516893522809 are:0.011273104484969465 that:0.010755276030689069 :0.4809655994608848 +it:0.14980370725759037 It:0.1417831987182438 This:0.0994395734160535 which:0.06123870759127718 that:0.053827314535707556 this:0.0485319048157116 and:0.03481463816943127 there:0.03163351300029438 he:0.025874957304685715 That:0.02452637228711398 what:0.02101535076138451 who:0.020745118014465793 He:0.01553744098124584 What:0.015466571118696077 There:0.012715435083286795 Here:0.00825702518154719 one:0.007881347531268929 Such:0.007797349307744799 as:0.006397540204786528 :0.21171293471946415 +the:0.31064107108385136 of:0.09454224942900029 and:0.06483619630318947 a:0.05842304187498454 his:0.029013779341802836 to:0.028900114719094528 this:0.0277515918523318 in:0.027440446332609995 said:0.022782277441002165 an:0.02028981824996288 at:0.018413967527228438 tho:0.01705576867538989 from:0.015474296257536328 with:0.014481712448774109 more:0.01240212406080369 that:0.012144072796421265 their:0.01171798803546482 by:0.011306669874510235 The:0.010593253097885487 :0.19078956059815586 +him.:0.050199596674191334 it.:0.022096088306572552 :0.01981052687426552 man.:0.012399108856188706 them.:0.01193932026264836 himself.:0.010654204990581484 time.:0.01031057530017432 years.:0.009808680758754225 her.:0.009593843287287771 life.:0.008821900544862963 day.:0.007406688592075095 house.:0.007194119297968318 night.:0.006833073812170075 there.:0.0068250402966024545 home.:0.006516534265149641 work.:0.006316665560979937 city.:0.006302163883981033 .:0.00624743884084147 death.:0.005779670332259484 :0.7739447592624452 +able:0.055314806602434624 and:0.04822473863463717 sufficient:0.04435367630618899 necessary:0.04322200828397039 enough:0.038662588721029074 willing:0.03521292065200229 as:0.03415409651377949 order:0.03354141673766573 have:0.03341367494076988 is:0.031746639013627447 had:0.02952880300842948 him:0.027529397984864687 compelled:0.027491554814335847 not:0.027047796931801687 required:0.02672112755396693 cash,:0.02406356048040577 made:0.02355794658695556 refused:0.023542347123382195 unable:0.022535118022171407 :0.3691357810875813 +of:0.09129790931378902 the:0.07369883040827747 and:0.047842263382354346 in:0.04189055351593407 to:0.04045875475680249 a:0.03542341257202578 be:0.02020462051672066 for:0.01979292654746225 was:0.01760256398103379 at:0.017380150555488715 is:0.014984483003968216 with:0.014047653760730413 by:0.01374644383819499 :0.012670486581795598 In:0.01200961464556976 or:0.011563835749786333 from:0.011391516893522809 are:0.011273104484969465 that:0.010755276030689069 :0.4809655994608848 +it:0.15590291243815246 there:0.0887784025092866 It:0.07904016205387611 which:0.06936908824431676 they:0.05362226352982171 that:0.04647101454662571 and:0.04420120519214072 he:0.027952982163116303 There:0.027623278151575524 mortgage:0.023443129896555264 you:0.018859539766003214 who:0.017891862574647276 this:0.014117846301193209 I:0.01363040583752058 sale:0.011818751696880098 This:0.010767348085132659 work:0.010306262168963347 as:0.009927627839447666 They:0.008978002990569422 :0.26629791401417535 +be:0.17395523689215442 are:0.10095426939638302 been:0.09326479654192191 is:0.08008007331894515 was:0.0705900817077285 and:0.05026786069419363 were:0.04540258238949294 all:0.029011361322343214 of:0.02614495351514357 set:0.017129129172478264 or:0.017030004903349213 made:0.016601511615648722 if:0.015974585745254222 being:0.014991229444044319 not:0.01410421954501031 as:0.013734899983536414 entirely:0.011798044720749025 bo:0.011138581686132002 so:0.010614545255616063 :0.1862120321498751 +of:0.20142961968740855 in:0.10618070714730564 to:0.10338854048395212 with:0.05015601721103878 and:0.04780938581560751 for:0.04431143424254869 on:0.036297161752119576 from:0.033056897851224565 by:0.03133684455917783 at:0.029051703452240854 that:0.02121090859369867 In:0.019176783174440003 upon:0.013420666616247945 as:0.010302820503962255 through:0.008031201406287828 over:0.00789653806677749 into:0.00751873656808246 but:0.007514228225784257 or:0.007506510631789844 :0.21340329401030514 +of:0.12201413893085852 in:0.12140279646984344 to:0.0793933749352241 and:0.07321348502957437 the:0.04145049157107952 for:0.039362334567832453 In:0.03693755764723218 with:0.027546266220935197 or:0.026498741445959855 a:0.025252129153096742 that:0.018438787434923717 by:0.016864845252626746 from:0.01615077707526625 :0.012500866074263112 an:0.009786580165782073 which:0.009440301703078842 any:0.008441177245000084 as:0.008255092885833266 not:0.007916774399632877 :0.2981334817919567 +one:0.1028303141280697 part:0.05963429477052991 out:0.04766456937681193 some:0.031418679026461914 members:0.030764490253327767 side:0.029940657362655835 portion:0.022063658796890564 office:0.020457735219956013 member:0.019726706386316174 end:0.019666887540649894 tion:0.018667441728710307 parts:0.016814747270460957 people:0.014112771422418794 all:0.014072739582212475 any:0.013183573287639892 One:0.013083578354183906 that:0.013024335602903442 account:0.012482348155001894 many:0.012077825070275192 :0.48731264666452345 +and:0.0969835910551453 sell:0.038620098812154044 sold:0.03353450571894785 that:0.02921722754771374 held:0.019610557246075213 was:0.019474705502610875 sale:0.018709178736553762 the:0.018083662877985445 out:0.01724303222177678 or:0.016253057256718585 in:0.015906589335973154 but:0.013147288857311088 cash,:0.012735359418953365 up:0.012523196737933392 it:0.012317464777042349 as:0.012266541383283359 arrived:0.011989114102282202 is:0.011959919209643042 are:0.011901972695015504 :0.5765229365068809 +I:0.33587040008146063 to:0.09444182412594723 we:0.08055033793098715 not:0.07662238877960369 you:0.05940522297042953 We:0.038389286693353716 they:0.035768902831259684 and:0.03557019197553163 would:0.03347262726048012 will:0.027260411372346523 don't:0.025271777293159842 may:0.02257488246119713 could:0.015964062349581094 1:0.015255312081010488 who:0.014776210996581444 can:0.014410393866627425 "I:0.013132872754573298 should:0.011944634207370337 but:0.009184804620307291 :0.03913345534819176 +be:0.08394943553682208 de-:0.08231016192772128 I:0.08136302554041631 was:0.0776997776444395 and:0.06277304297005576 who:0.04818592053468063 have:0.044296369333150995 he:0.04382365438718426 had:0.03238402307789327 been:0.029889522012502646 is:0.026595783446679625 were:0.02652047745738353 has:0.025941027910359862 we:0.02546011864099645 1:0.025226002417694515 they:0.021706644717274078 are:0.018842907596910093 not:0.018576586188492783 to:0.014534008749942194 :0.20892150990940014 +of:0.26032491302101884 that:0.08063146785871322 and:0.07938273228492261 to:0.07197654147306255 in:0.055182759811440316 for:0.05021125895300422 by:0.04929562738273437 with:0.039827392598108115 at:0.024594369911893888 as:0.021087583297970912 on:0.02081016353987374 from:0.02004202235668546 is:0.0197860378874365 when:0.01580318114760594 but:0.014413668559993126 was:0.014399009236218079 In:0.01404842125270987 if:0.012761234243768786 all:0.012189612096885188 :0.12223200308595426 +the:0.1277442674294538 and:0.08436402833844613 of:0.07707979202620513 to:0.047614139932566454 a:0.04756674629652367 is:0.03815817324859034 was:0.035219071247803546 be:0.03188435586823774 are:0.02588366930602256 in:0.01938019542828319 been:0.01829413687746613 or:0.017621346716869588 an:0.01692556761227729 were:0.015728930318499063 I:0.01328304802599848 he:0.013051354977301513 it:0.012614709782397078 not:0.01249495016209693 that:0.012166717118087951 :0.3319247992868734 +of:0.24625525677594484 to:0.103149395840005 in:0.07111671701560347 with:0.06200429808144848 and:0.0605119866738041 by:0.053734685201227116 for:0.05242743001358523 at:0.034235128505587485 on:0.033424907202165496 from:0.03299861978944814 that:0.0258382221814934 all:0.02196500257390813 In:0.021264351803833688 upon:0.02088157474133313 is:0.020278971588377416 as:0.01915927832574996 was:0.010612432700567295 among:0.007816632223767616 through:0.007650634937451489 :0.09367447382469851 +have:0.1190436011218563 had:0.10710256466689826 has:0.10533792675589372 was:0.08700966956829317 and:0.07097827281886863 been:0.06884786221199243 be:0.059742355359505346 not:0.040713688592650496 or:0.03704675264376331 were:0.03214303245877691 having:0.03067546962178943 is:0.02791053138382861 are:0.02328260445825718 to:0.02197977487203344 ever:0.021950135477446592 of:0.01750479389620998 bad:0.014734716236764396 it:0.013234712091669763 much:0.011690056212390207 :0.08807147955111182 +the:0.6269203778636986 The:0.0737579255449648 tho:0.03999448522239908 and:0.0247789772902934 tbe:0.01697922188748315 of:0.016879686217728607 his:0.014955076696842326 in:0.011710372609658317 I:0.010344744638008298 that:0.010209389592273669 a:0.009642146121798544 this:0.008327227126851596 to:0.007471678890126178 it:0.0073855608696095365 as:0.0064998762511066744 he:0.006423810305633096 her:0.006186520670655716 for:0.005919502505648443 until:0.005617682290783777 :0.0889957374044362 +the:0.1354040392185495 and:0.10051806530283709 of:0.07945644145603158 a:0.05964186542288185 to:0.047439485970601845 in:0.029703098903375427 Mr.:0.026190159668059272 I:0.02023505808965821 or:0.018919579841437297 be:0.01875623081859186 is:0.01827180448620881 was:0.014140050014372109 he:0.013958786488545866 his:0.0137608264790578 are:0.012959241127639009 that:0.012784785066588887 The:0.012256299116252391 not:0.012025793306065012 with:0.011158678283502038 :0.34141971093974416 +and:0.07314648453052329 a:0.06619436822002596 that:0.054592751372358445 the:0.022923317170098247 for:0.01761443070933585 worth:0.015779478434677113 which,:0.014892025820858542 but:0.014415388106340462 and,:0.012547169834266087 that,:0.010371924385414443 was:0.009369002813724466 him:0.009184876701978099 who,:0.009022360935120816 ;:0.00892352914060261 one:0.008347921008370025 day:0.007145866322773005 :0.0067054848210550974 short:0.006162042624907866 as:0.00615084091872799 :0.6255107361288416 +of:0.09129790931378902 the:0.07369883040827747 and:0.047842263382354346 in:0.04189055351593407 to:0.04045875475680249 a:0.03542341257202578 be:0.02020462051672066 for:0.01979292654746225 was:0.01760256398103379 at:0.017380150555488715 is:0.014984483003968216 with:0.014047653760730413 by:0.01374644383819499 :0.012670486581795598 In:0.01200961464556976 or:0.011563835749786333 from:0.011391516893522809 are:0.011273104484969465 that:0.010755276030689069 :0.4809655994608848 +and:0.09072439882519517 be:0.04081141235623435 was:0.03758858751022162 is:0.027727289809624245 been:0.027384414639552497 put:0.027156362515770614 feet:0.025697324506676746 are:0.025305987774335247 engaged:0.024873244684364523 them:0.021470804722763186 up:0.020618152140126075 that:0.02018759845530772 made:0.020014136182049166 were:0.018635324525491704 inches:0.0166509448886068 now:0.016107420967185933 it:0.01561080556269776 increase:0.014698934686121755 men:0.01462506374704633 :0.49311179150062856 +the:0.06647623600238486 of:0.06400552517032125 and:0.062281308223140285 be:0.05990300454652408 to:0.04886480238196076 was:0.046359477162698864 is:0.033642421755709494 or:0.024224754484440145 are:0.023949812295997554 been:0.021419866649644067 were:0.01944175848099471 for:0.018415802147964767 as:0.01668021786349543 in:0.015768024701088016 a:0.014332062457127072 on:0.013218118866175774 :0.011989868035949203 being:0.010901119313506834 by:0.010399318984640265 :0.4167265004762365 +the:0.13042871438055634 and:0.11712894969541227 of:0.10433688678532056 to:0.062383406315954064 a:0.041308102296401694 in:0.03924191733625077 for:0.023995269183837965 is:0.014651406332044438 Mr.:0.014349754816941762 The:0.014258373712447408 be:0.01417965406281643 at:0.013334279058936013 by:0.013330922394426887 as:0.013264681674131753 was:0.012758886388243362 with:0.012569037776081217 his:0.012530578042809482 that:0.012203775111744933 or:0.011315848593535944 :0.3214295560421067 +made:0.0643126829595994 and:0.0627581189230708 or:0.03211605780703522 it:0.0196933030612712 paid:0.01809506963703845 accompanied:0.01809072839028369 that:0.016925424786826303 ed:0.016639887948187927 done:0.01615725991466513 him:0.016120970822416782 caused:0.015256944816503862 out:0.0149090010160046 followed:0.014725757113667077 given:0.014587971361630458 shown:0.014295257476016288 only:0.013221519512460473 claimed:0.012397601206602068 upon:0.011972241731809266 used:0.011724880412870026 :0.594999321102041 +a:0.6104155188661461 of:0.04474563067299717 in:0.04474451339167243 the:0.03440703752177839 A:0.03240756532781086 very:0.03046318408130695 some:0.02812323037934835 no:0.016758636291253855 and:0.01649569360841404 for:0.014944587906427107 any:0.013604549864522319 to:0.012862594012114462 In:0.012687220747033361 with:0.012037976799195896 make:0.010349455469990979 is:0.008061762103211195 or:0.007508744009467719 their:0.006704591998671671 his:0.006309774580987222 :0.03536773236764992 +have:0.17942442776074996 had:0.14344562831180752 has:0.1392292679958798 and:0.0696000222514452 he:0.03917758412999827 was:0.038181487404342615 to:0.03300844268388045 is:0.026320554392946623 been:0.02422419703599153 be:0.020668491497876314 I:0.020071472129506995 are:0.019478402648083298 He:0.019050959820094537 who:0.015628743151074313 were:0.013939780744845259 they:0.012859796299347524 will:0.011088272004236415 having:0.010161053577250745 we:0.010151159461121943 :0.1532902566995207 +that:0.15512995876003335 and:0.09760147359688436 as:0.09291519762759597 which:0.08692423535106045 when:0.08152989656410643 what:0.047878636702304966 to:0.0355676183072479 but:0.03497318143139889 if:0.03135887165634378 where:0.03062995634089753 will:0.01960594149769433 would:0.015724300395824155 If:0.015550988374357736 how:0.015097615205044497 so:0.014279735221575387 said:0.014039212796150233 whom:0.013552182725850773 because:0.012628560475347847 When:0.012363909869166832 :0.17164852710111458 +with-:0.17637249186394321 sent:0.06557198726126752 went:0.05962604563138349 carry:0.04955490307202195 go:0.04602612759138284 and:0.04038704753360265 brought:0.032778784831772316 it:0.0319843312828814 carried:0.027661182097642546 came:0.02741048242964317 taken:0.02593012649731167 them:0.024178471069854587 with¬:0.023887047961768094 with­:0.022548077733846608 put:0.022074064989724942 set:0.021287458994024958 carrying:0.021194092501809255 laid:0.020558124167760563 come:0.01962022464658882 :0.2403489278417694 +the:0.43443873767406316 a:0.10155307194223637 said:0.05244305364966106 of:0.04621825569253725 this:0.033281660205956624 The:0.028700882094534124 national:0.022093926623609615 state:0.022091694220111084 tho:0.021669731004197 State:0.014867025209856423 our:0.012429146948375349 to:0.01143367477891677 county:0.011257002515868846 his:0.009942489172194011 tbe:0.00986834715653864 in:0.009725410405822697 any:0.008162717469050047 an:0.007712052885606035 other:0.007648126737906855 :0.13346299361295805 +and:0.0642204751262458 as:0.054811516053328624 referred:0.03421250590789549 according:0.02287517157402816 him:0.022471823269432437 them:0.021306402089454526 regard:0.0209286216787077 up:0.020546435240010753 back:0.019141756581690043 subject:0.018383437605173525 come:0.016965223111720527 reference:0.016458182587916374 way:0.015717164429744867 addition:0.01518127781645346 came:0.01513661528742955 it:0.015085812030143088 go:0.014120217611288982 is:0.014006896789281388 over:0.013336516403736565 :0.5640939488063181 +and:0.07895257911471103 was:0.03596317658514438 out:0.024016824392823457 that:0.023672598027062328 placed:0.022844208461019616 work:0.021707439938587154 made:0.020781005318872947 is:0.020224993929329655 up:0.019794182040466738 put:0.018288921183371155 down:0.0171740551508179 interest:0.01663630075189571 point:0.01659978677065351 him:0.016175999448187352 held:0.015562908663841706 Dakota,:0.014616466073415059 place:0.01424333231426501 Minnesota,:0.014067166610364513 it:0.013665465625771424 :0.5740125895993994 +and:0.07359963406644195 be:0.052667135004264946 to:0.04483536256874564 of:0.043448293679263235 the:0.03579172892628988 in:0.028005289969665195 was:0.026700397492138477 is:0.024892551934152005 re-:0.024162182625676702 he:0.024086629517294657 are:0.02098604388819216 from:0.020307931541148256 a:0.018606881911690538 or:0.018077853608073062 for:0.017195224169077532 been:0.01615904189338184 I:0.015254891559368164 :0.015184018660626356 which:0.015016145996292442 :0.464022760988217 +as:0.21337045962556023 of:0.08512154506105044 to:0.08300723824606027 and:0.06826930654470302 so:0.05856452042886198 such:0.04812666456813931 in:0.045778646623015076 not:0.03583115316829479 by:0.023312193629669815 is:0.02301187473416457 be:0.019502517508221965 or:0.01926948734370216 than:0.018619480478487094 for:0.016818384264192764 As:0.016691817942900394 that:0.01435863012289338 with:0.014043837443181386 much:0.013773648011203727 about:0.011792560458274329 :0.16973603379742333 +of:0.18773454919646831 in:0.16512757625354166 on:0.161758466101003 the:0.09790592447114341 to:0.04923231136444027 and:0.04566936125892408 In:0.0452133668368979 at:0.042722421997064046 from:0.017263746769607673 for:0.016366870661268497 with:0.013408786917128013 by:0.008020601018095484 or:0.004862820528108231 On:0.004758425405324369 tho:0.004315306810904658 his:0.00425008230559968 East:0.004015963088455337 into:0.003943372284798204 about:0.0038195947690467143 :0.11861045196218048 +and:0.09631219532671687 was:0.03513566928966104 held:0.02987715681559008 Beginning:0.024332169066967536 is:0.023122938489353394 look:0.022074108253454683 arrived:0.021820518428646088 that:0.021226918252779888 interest:0.02006974641058921 thereon:0.01971421054267379 made:0.019401567074562896 are:0.019271449916013022 up:0.01806602795372081 him:0.01678700722897829 be:0.016375054451444982 but:0.01586396852970274 out:0.015503094089883073 or:0.013721423267833084 not:0.012734170433403743 :0.5375906061780248 +in:0.27177533647601715 of:0.18230957491310543 the:0.09317080979532422 In:0.0544681679563339 their:0.0353111747543836 to:0.02575930609143871 his:0.024542564312954804 and:0.023237706865596196 its:0.020612348877902795 for:0.016184662820546192 our:0.014754178249538131 this:0.013305702908522062 further:0.012833069139338947 my:0.011304714265709974 own:0.010424953338748445 without:0.010150439962923002 good:0.009671991233213342 your:0.009212851968695524 or:0.008538832465699534 :0.15143161360400806 +was:0.1367781373716023 be:0.1320857228680554 been:0.10372518654571329 have:0.07125982695782167 were:0.05886283532179617 and:0.05018254806755043 has:0.041074604267172854 are:0.039859871971797835 had:0.036731904626978534 is:0.0361039885596922 being:0.02472249240704125 he:0.022997631873857418 taxes:0.01941509994280155 hereby:0.015771506348703456 they:0.015443310927149219 which:0.009775335225307822 who:0.009476807486984219 I:0.009442283074992374 it:0.009408440215832007 :0.15588246593915 +is:0.1774479565660462 and:0.1243054543848571 was:0.08752311620587074 are:0.07995672610983523 be:0.06891817372037186 not:0.05998374738220474 have:0.040028579853159746 but:0.03644182579822309 were:0.029812226012498035 Is:0.027807522766846393 been:0.023186566537730467 so:0.022064801503758835 has:0.02025418960581536 as:0.019468931028910806 had:0.016747215321205537 very:0.01668152455653001 or:0.015844240397775478 that:0.014982085464413064 they:0.014094157137956113 :0.1034509596459912 +the:0.17027190784407714 of:0.10585557835912704 and:0.07355927771906935 to:0.05486905984958157 a:0.04543746377447453 in:0.03128555052933153 be:0.028704485173100775 was:0.02350529800142253 is:0.02215549335554494 for:0.02077556258358175 his:0.01804639098945333 or:0.016335100594594944 their:0.015847999621030492 at:0.015526727957625254 been:0.011815834631173878 are:0.01139058447814694 this:0.010362020528084328 tho:0.01035635773045807 its:0.01000473355720393 :0.30289457272291764 +the:0.4958806139130312 of:0.06535276006477933 a:0.04216170785024238 tho:0.03355073714857431 this:0.02912204866124971 their:0.027334806928126322 The:0.025718636171622757 and:0.02209566923115562 our:0.021090535152794708 an:0.0194822648641971 any:0.018721571100033894 no:0.018099766421971003 said:0.017077604209924088 each:0.01649371038094724 tbe:0.0146567793448466 his:0.013724659469687062 by:0.012353913024349922 or:0.012321903104345102 to:0.011997593170629376 :0.08176271978749228 +it:0.20689377318318858 he:0.14388147885194477 It:0.1194672333449709 and:0.058199778714183886 who:0.03808407088268705 He:0.03782662104051745 that:0.03337570575133796 she:0.02695180976088169 which:0.025852499386020196 I:0.019599496436312074 this:0.015966041279796107 there:0.012973899120340625 but:0.01264604634084177 This:0.01225994167515711 as:0.011030054030787053 man:0.010482606513944 ho:0.010143992548908925 be:0.009809648895594573 lie:0.008442555329918515 :0.18511274691266674 +and:0.09347296211359307 held:0.034686884149417334 Beginning:0.027241698203474215 arrived:0.025597062862564832 was:0.025349289329859175 made:0.02402109563059964 look:0.020575008477893505 is:0.018866417460174246 up:0.01843104813574822 that:0.017054178990230037 but:0.016071728081781284 thereon:0.01474296291544759 are:0.014543149192421391 out:0.014081356897989068 it:0.012608910318563671 him:0.011792725063018736 or:0.010766100965625061 them:0.010329358556937271 be:0.01016707840920565 :0.578600984245456 +Mrs.:0.1332855689590117 of:0.10893047272463693 and:0.08630678737090226 Mr.:0.06555847133638049 to:0.03562685769316144 by:0.024657569819858643 :0.01889601371466469 Dr.:0.017269096022940893 said:0.011907159614228162 .:0.011589025922423005 Sir:0.011097508573170267 Mrs:0.010679642721115842 the:0.010088850733614851 from:0.010017245676966284 Miss:0.009978442847898204 Rev.:0.008466421084551923 Messrs.:0.005824794681634792 that:0.005800614102999737 W.:0.005796439135199089 :0.4072230172646408 +the:0.2828629552728184 of:0.08684196607894738 a:0.08037608933385229 and:0.04650860138400898 in:0.03718787426209466 to:0.02801252238965092 The:0.023887620363851596 tho:0.020482259652391067 an:0.017676238374035067 or:0.015157274421572236 .:0.013283160952708024 Mr.:0.013240013951886046 that:0.013174474649719527 for:0.011994204523103857 his:0.01167676206582288 tbe:0.01036378906232458 with:0.009886101549782002 their:0.009457206956126505 by:0.009265610393956682 :0.2576652743613473 +sum:0.03352282876311118 number:0.028116684882597106 line:0.019995206059833036 city:0.01946514558931857 out:0.019275318828420953 day:0.01666865340772654 county:0.014872697538657208 amount:0.013254184849875051 Board:0.01252325449624941 town:0.012449555905674143 side:0.011663975251122375 part:0.011517157473718155 County:0.011460540331966697 state:0.011087331502382173 City:0.010878919191854432 purpose:0.01081028255427907 and:0.010297866493795984 way:0.009848747943663767 name:0.009522170936943183 :0.711769477998811 +in:0.12584751051357324 of:0.09759502479664728 the:0.07371839375246729 and:0.055651754291004454 for:0.04744536705298647 a:0.032925964492396737 to:0.03198260274187316 In:0.029652859996176964 was:0.017176340234656633 by:0.01637913782528117 are:0.015624529717594675 be:0.015359740034713075 from:0.015332737536474472 that:0.014587063309917358 is:0.012292937239714764 which:0.011956538642930331 were:0.011584038466634639 been:0.010892258706962473 with:0.010501774296364555 :0.3524934263516303 +part:0.04827126757422882 one:0.03927496329140387 out:0.031048654990070687 side:0.02056718202217637 that:0.019704308853568622 some:0.018358906133568192 end:0.016224405693554215 members:0.016121775498460524 portion:0.014145596321110485 tion:0.013460086918899643 people:0.013436098310300968 member:0.012932960975880991 all:0.012494038595141144 parts:0.012089086625349462 and:0.011292793359365115 any:0.010860680017599078 office:0.010412619189815436 charge:0.010230140499404709 action:0.00961715817261388 :0.6584572769574878 +the:0.5845958204366754 The:0.059646279325937204 and:0.041764476336922866 assessed:0.03926015443260602 par:0.03812645348990866 tho:0.028430927639752312 in:0.021909629602283487 of:0.02019607396286974 a:0.019987806663120666 great:0.018709759220909967 total:0.015713324619915165 general:0.01193556029434643 full:0.0109273595750498 tbe:0.010255563946204185 on:0.0074201556434255736 real:0.007001708539588589 or:0.006988146109555765 relative:0.006210334481610738 best:0.006106666560718502 :0.04381379911859892 +of:0.09129790931378902 the:0.07369883040827747 and:0.047842263382354346 in:0.04189055351593407 to:0.04045875475680249 a:0.03542341257202578 be:0.02020462051672066 for:0.01979292654746225 was:0.01760256398103379 at:0.017380150555488715 is:0.014984483003968216 with:0.014047653760730413 by:0.01374644383819499 :0.012670486581795598 In:0.01200961464556976 or:0.011563835749786333 from:0.011391516893522809 are:0.011273104484969465 that:0.010755276030689069 :0.4809655994608848 +the:0.3442111461110725 this:0.1471322011845817 and:0.08788658183806797 to:0.05481228001758372 a:0.0439323554858646 that:0.038742350488859455 The:0.03185136991098764 will:0.026178066656462468 of:0.02530508965830566 would:0.024560238257538183 our:0.01783543232213411 This:0.01657448162681832 tho:0.014278326150780308 shall:0.014175053930195941 I:0.01050485706644075 his:0.009389188310699733 We:0.007232022821742194 should:0.006880602967568632 same:0.006838172250188647 :0.07068018294410744 +of:0.3182151468742879 to:0.10052716934875947 in:0.08014591876523286 on:0.05623930454204803 and:0.055534467925501166 by:0.05395509239290512 that:0.05276671290021307 from:0.04033029596723495 with:0.023684948110856214 for:0.0228653243999431 at:0.02278190481337771 upon:0.018399145157862208 In:0.014892087046301105 under:0.012536409828602735 all:0.0107024939487284 as:0.010397262059374192 when:0.009084102113121158 which:0.00832642660971971 into:0.008142978959069944 :0.07947280823686094 +and:0.09756556368541265 was:0.05426276517937397 is:0.03866664491042744 up:0.02568624008661788 it:0.024967480530237875 made:0.021983496168589956 put:0.021728272405609952 placed:0.021433399872469706 that:0.020699896774439272 are:0.01933805732185307 them:0.019230578399337284 him:0.018697869349579923 be:0.017987018805625865 but:0.017054981134282398 were:0.016928399532571015 as:0.01666685808038748 engaged:0.01649642158281899 found:0.01526160066577768 out:0.014987717957962178 :0.49935673755662546 +of:0.23433042089704914 in:0.09751037448049105 to:0.09257020146690997 that:0.08405421067511348 and:0.07314531018111287 by:0.052952907823990376 from:0.03940849431622551 with:0.0356678625453585 for:0.03273046163936817 on:0.026948632695769775 as:0.02358034838131607 at:0.01942673393304947 when:0.01933553395334399 In:0.019066573810217563 which:0.017050966124721186 but:0.011961759869426335 if:0.010948434890635754 into:0.010819408748682367 under:0.009864635885514237 :0.08762672768170418 +of:0.31954557892465263 on:0.11089821562191515 to:0.10004291893642632 in:0.074636399347326 from:0.0542615005343517 by:0.050441964271426165 and:0.03238154116120233 at:0.025802252958163487 that:0.025038551408508993 with:0.01978913500546051 for:0.012920218723625549 In:0.012662072136818827 upon:0.009586440281661664 as:0.008004834224778233 over:0.007512020369652096 through:0.006962627617495528 into:0.005705643850206978 before:0.005642737940553904 along:0.005537747070626057 :0.1116275996151479 +not:0.35179900292816996 is:0.10259459106491546 was:0.08334949648492733 and:0.04176533389390588 are:0.04113427338508345 the:0.02782703896279509 be:0.025332680931690735 were:0.024058288421560707 had:0.017696297285411063 Is:0.016171887999309065 as:0.015990960500911096 it:0.015624390060752988 have:0.014425738532771354 but:0.014368299896722822 would:0.011447265114740214 Not:0.011241032033617735 has:0.010514666650076412 that:0.010266386744825814 can:0.010196712525480038 :0.15319565658233275 +of:0.09129790931378902 the:0.07369883040827747 and:0.047842263382354346 in:0.04189055351593407 to:0.04045875475680249 a:0.03542341257202578 be:0.02020462051672066 for:0.01979292654746225 was:0.01760256398103379 at:0.017380150555488715 is:0.014984483003968216 with:0.014047653760730413 by:0.01374644383819499 :0.012670486581795598 In:0.01200961464556976 or:0.011563835749786333 from:0.011391516893522809 are:0.011273104484969465 that:0.010755276030689069 :0.4809655994608848 +I:0.19728872534584774 we:0.11509832382333221 he:0.11303872394027673 they:0.07265581992374832 you:0.06883887800994624 it:0.05706444825815046 We:0.033441656526696846 she:0.0315766304534232 and:0.026157330252827186 who:0.02124320852370618 there:0.019657175933808474 man:0.01727875335233086 You:0.016801123867228707 It:0.015378747943236506 that:0.013066343088436589 which:0.013009251648091991 He:0.011918757976615622 men:0.011696448710966562 ho:0.010760207956814712 :0.13302944446451487 +was:0.13421396691543483 as:0.1255022781681266 has:0.10101271907515094 is:0.0965085799231425 have:0.07726700400679169 be:0.07151860532256563 and:0.05901132672134722 had:0.049218019913445585 been:0.041366820758697465 are:0.025164715791954218 were:0.021970070931307494 not:0.019402972110325673 he:0.018404492069850186 so:0.01797430064261225 it:0.01512137502174808 being:0.013688180869824733 very:0.011388991219163187 I:0.011355695779068883 Is:0.011011467510088482 :0.07789841724935438 +of:0.13084814232797154 in:0.0740836656586379 as:0.0625527229231004 with:0.059577596335708534 to:0.058433603729754965 is:0.05551580107464621 and:0.04946529489577619 was:0.04264000753602388 for:0.04009673021586375 by:0.037684080471064085 be:0.023941707008899252 on:0.02316059851167503 at:0.022644769441950232 such:0.019950936521181326 that:0.017856095877642635 like:0.017386655618315594 In:0.016902219705578994 from:0.016046571451088905 not:0.01205910100844263 :0.21815369968667797 +a:0.4358600001649218 the:0.11768727957999647 of:0.09113335075667443 very:0.03752339876617424 and:0.03268331966985162 in:0.031075856392147546 A:0.026992138183077052 with:0.018331067908030213 some:0.015605771598106982 to:0.012276597232194191 no:0.012134490294275494 too:0.01204233811214073 at:0.011566982363020117 by:0.011406541490065291 so:0.011335643539876277 two:0.010913314374558775 for:0.009608068596493791 many:0.009292354858952183 The:0.0089482861948398 :0.082583199924603 +the:0.39749834532651884 a:0.07520030034269234 and:0.05540858759821703 The:0.03273515726769502 tho:0.030061875542463562 of:0.020144331424922633 tbe:0.014929647509541684 in:0.014268129706664795 or:0.013333166761078447 .:0.013287381914101323 an:0.009000188755386574 to:0.00880680429595084 :0.007943763822197133 Mr.:0.00773879605474787 by:0.007328417831573476 as:0.005922572098978465 for:0.0047526933692942485 that:0.004736121968310169 on:0.004594595720579333 :0.2713091226890862 +It:0.1447001268421553 which:0.0918608046267631 it:0.08167561358114478 There:0.06975525854884569 he:0.05136544480345238 He:0.04789433975117854 there:0.032656216142030396 that:0.031853071377220446 and:0.03027764855745663 who:0.02782874468639914 to:0.01719427429044678 as:0.01686527007870756 This:0.012408907028303526 of:0.009784397516278473 is:0.009352176644807886 :0.008672386060721453 she:0.008407990283254767 they:0.008364442816490073 I:0.0081710805675449 :0.2899118057967982 +the:0.38658470743102663 this:0.10096176969014545 his:0.08327890102762624 any:0.04845528579632926 a:0.042812607041237155 that:0.03957271974832637 her:0.03145219943998399 their:0.028017939796115693 some:0.025936618236659072 every:0.024952975435206675 same:0.022104729619087354 my:0.020750135524317138 of:0.018721499213331983 no:0.018251662220391165 tho:0.016343693366898143 only:0.015207579503612853 other:0.013313267762573732 own:0.013284088661136033 The:0.012457451057986207 :0.0365401694280089 +the:0.16181878548167625 of:0.08478752643350145 and:0.05663067117263581 that:0.043620743026804534 a:0.033459027104437614 or:0.033441937654182935 Mr.:0.026938164513793567 in:0.025386075226473393 The:0.02323796951697098 this:0.01773255274011827 as:0.015108035185351747 which:0.01282016210921336 :0.012747979084699953 to:0.011822361298440314 said:0.011214574708872093 his:0.010769976080213248 their:0.010501158660934496 tho:0.010222834277566964 an:0.010141296391760252 :0.3865981693323528 +a:0.4680050445437524 to:0.12436154886469492 his:0.06060775689206919 the:0.05098247608241129 will:0.029617940735647677 not:0.021975679541253578 no:0.018560716161793063 their:0.017865580172291482 would:0.016620275563129592 this:0.015337900431337878 and:0.01447049662487352 first:0.012301892281092887 her:0.010613159568656355 my:0.010236972739802161 great:0.009549051433757574 or:0.008551904336432851 every:0.007956987695287892 re-:0.007756385527080923 in:0.007590004806898793 :0.08603822599773596 +of:0.20298414943475437 in:0.10344425723469623 to:0.0652651571562161 with:0.042430857983459386 a:0.036144065805240475 and:0.03028569118759816 by:0.027604595533511647 In:0.026767419952118638 from:0.026453968641417157 is:0.019551782008204142 for:0.018578081193085606 have:0.017754452110482564 had:0.017269493322321118 was:0.016630480033191262 as:0.015925776494838905 the:0.013772305720626182 on:0.012989177246102197 that:0.012610554072052482 be:0.0116745311072146 :0.2808632037628687 +the:0.20031753514486977 his:0.1023506960618225 deaf:0.06589556755797503 a:0.06019496361536098 an:0.04461492722250612 their:0.04271786012379617 and:0.03415114743312723 any:0.03258808658830952 no:0.027740908513410708 of:0.0258289823441744 one:0.022212548535034776 to:0.020104799558316806 its:0.019325625269273932 my:0.01647185858907853 some:0.01629261735742654 first:0.015251179050939808 in:0.015144138587961176 tho:0.015066878643927431 on:0.014523656939667852 :0.2082060228630207 +of:0.17385158177016866 in:0.10720732281029154 or:0.09028027215569874 to:0.08908017852176647 for:0.06738707331907273 by:0.06158703147295727 with:0.04590490681441898 than:0.04392619724400444 without:0.04097716064684737 from:0.03539564576223609 at:0.03530912453248012 that:0.028988750201433166 make:0.024011862139142234 have:0.021113058343491628 In:0.019434875561413725 and:0.018966878052362225 if:0.016850096647307425 as:0.016805020859703753 had:0.014967278685057298 :0.04695568446014612 +of:0.10723651193255658 his:0.09729121114451258 to:0.07786817273864151 their:0.06386320611580297 and:0.05517950038845432 the:0.05188818093016145 on:0.04652767702985305 for:0.042128535067078005 in:0.0399691931238617 its:0.03319028305225243 her:0.020963061594107386 our:0.017801778792383947 my:0.01775185032935437 into:0.01634373857077933 great:0.016311693422332355 an:0.015994776315477854 at:0.0158198854320316 with:0.01356899955362144 all:0.012306700985258906 :0.2369950434814782 +and:0.08359961365006148 was:0.04446363985708713 is:0.033088390291463765 that:0.028938345093904243 be:0.025585082511223906 it:0.022043565285641217 made:0.017904192914587454 are:0.01727974413342625 been:0.016509941934692875 not:0.016474485406680638 as:0.01591631492770744 or:0.015822370252582558 were:0.015233368081986014 him:0.014831761042168079 up:0.014673157914626861 described:0.014039847894051473 them:0.013127411311291231 but:0.01287903131597131 now:0.011756292777880798 :0.5648334434029654 +hundred:0.02334136986593815 up:0.005482494641173394 men:0.005366536521246011 Hundred:0.0047587970519216575 John:0.00441808156134956 William:0.004390720675819281 him:0.004016828614280843 ;:0.003997112205305733 due:0.003721199871732 in:0.0036582900032443304 time:0.003637206863828461 James:0.0035594902370151707 out:0.0034878448964120057 .:0.003467980723571515 1:0.0032804584819785204 day:0.0032444781513863933 ,:0.003058139385740603 :0.0030314555521939613 Robert:0.003005471634785646 :0.9060760430610768 +for:0.1947533169723826 during:0.15514791767364824 of:0.11669973027457256 at:0.09197483964682895 in:0.0863184358719484 to:0.0759646001380294 that:0.028009156167405503 In:0.025497128444302967 by:0.024312495944285077 At:0.02129176758388825 and:0.0189855442028262 all:0.01739444093104659 under:0.01678873771839462 from:0.0164129143504569 with:0.014850390962399427 after:0.013434336849657441 During:0.01209355466392977 within:0.011217399317622466 as:0.01108421054015137 :0.04676908174622326 +the:0.11500545585881412 of:0.0897605566703555 and:0.07914879987306167 a:0.05827037833039227 to:0.0386987683614473 was:0.029282661483795363 be:0.023890810389268442 is:0.02056818843792312 been:0.017204803150083207 or:0.017094944717067368 in:0.01610392931760865 are:0.015798243080240505 his:0.01344187865263006 at:0.01321973597799718 for:0.01304287912725108 their:0.012337012043366955 were:0.012236169772424844 :0.01133284696603621 The:0.01095822742659897 :0.3916037103636372 +one:0.10757504863160208 out:0.06393072214258595 part:0.05345953864888265 some:0.04657778396619151 time:0.032653763285528395 account:0.0298978741893603 all:0.02673860913095395 and:0.02324876597992745 that:0.02275453097379819 because:0.021318504223257338 portion:0.02010071224985526 side:0.01926992014112468 any:0.018918137101655273 front:0.016609963575485047 many:0.016563310866764772 end:0.01592265492673931 day:0.015255366376758018 members:0.014811614297040794 result:0.014486922106154784 :0.41890625718633423 +the:0.054981043479805966 of:0.0383094250831321 and:0.028166137012997694 a:0.023276255229589038 an:0.02193876868953534 -:0.02173795936494025 i:0.02067324374973778 .:0.01849828122150521 to:0.017913989860615195 t:0.01776645592905082 I:0.016481683781022896 :0.01582113983621977 at:0.012060312498607445 in:0.011322363895738732 that:0.009960247233930413 which:0.009487548409353216 by:0.009397591224180872 be:0.008939614268858911 1:0.008564124163700861 :0.6337038150674775 +and:0.09756556368541265 was:0.05426276517937397 is:0.03866664491042744 up:0.02568624008661788 it:0.024967480530237875 made:0.021983496168589956 put:0.021728272405609952 placed:0.021433399872469706 that:0.020699896774439272 are:0.01933805732185307 them:0.019230578399337284 him:0.018697869349579923 be:0.017987018805625865 but:0.017054981134282398 were:0.016928399532571015 as:0.01666685808038748 engaged:0.01649642158281899 found:0.01526160066577768 out:0.014987717957962178 :0.49935673755662546 +a:0.5764032849275862 the:0.08675806302156486 to:0.04176998898631188 his:0.028076293211146817 no:0.016525485305308514 and:0.014717568405063495 A:0.013467928262900818 in:0.013098143029073571 or:0.01156712085366623 that:0.010362785326600907 their:0.009446482939115172 this:0.009272782486359696 any:0.008667249241521797 said:0.007953621313538488 it:0.007805636885057199 my:0.007715537506467935 your:0.007282265765727965 of:0.0072682402394853235 from:0.006655107595040317 :0.11418641469846279 +the:0.14208262414920889 of:0.10492389711528148 a:0.08602006009090889 and:0.0569472528115427 to:0.05575698010003712 at:0.04455539904231595 in:0.0381644129035921 that:0.02559831882949393 an:0.0248277102417515 by:0.02428621739917332 for:0.0157790869054803 :0.013853444499696015 with:0.013374501363663027 from:0.013069401303070551 In:0.011992731049983397 The:0.01191607299216975 as:0.011811294185941465 or:0.011531742684227847 on:0.009794116706332134 :0.28271473562612964 +time:0.012215478970735825 up:0.011756730374434164 him:0.010594582808776338 him,:0.010336326698065815 it,:0.010231632201445592 ;:0.009867497784629255 day:0.009589854999941404 years,:0.008989893178039698 night:0.008986297805139893 ago,:0.008873328300850298 time,:0.008351555301821306 here:0.007719927473005345 man:0.007515801051023583 house:0.007234505945025066 day,:0.006649511690100492 :0.006484038441474092 morning:0.006475856703642978 home:0.006457386585191617 street:0.006282469765441506 :0.8343873239212157 +the:0.11919516938815296 of:0.07230453158552728 and:0.05781056740443249 a:0.043018564803886335 to:0.031305092790907506 in:0.020848713353460488 at:0.014270110001066288 .:0.012526810245749479 :0.012413283442322082 for:0.011719122709941797 by:0.010808400946589808 or:0.010404172990115616 The:0.01003576004804544 with:0.009811868184449042 tho:0.009295902015355835 was:0.008924239095331684 that:0.008672304223433876 is:0.0085591147338948 be:0.008335143826716943 :0.5187411282106204 +of:0.19448734057487616 half:0.12442991753578643 for:0.09294675578841047 in:0.07685754013153907 and:0.04561348757098979 about:0.04347620690246557 as:0.039874555336819 to:0.03219517628626989 cents:0.031137835243233745 within:0.02898023442286288 was:0.02557177022544589 is:0.024108722608980768 over:0.023212616183567635 In:0.02187319083902735 on:0.021745381494847515 than:0.021519010957154652 by:0.018366092485254074 with:0.01810130203584791 from:0.015974529674998905 :0.09852833370162228 +of:0.19134781292393724 and:0.12844567692212536 in:0.1099384106772481 to:0.08774878859780957 with:0.07254068130603696 for:0.059863163258100933 that:0.030352139327584987 from:0.024706081309515737 by:0.02409759670090588 on:0.02405447023210097 In:0.023237693310206538 at:0.02153871409332503 was:0.015518062970541863 all:0.014280519241062103 made:0.01360655622445541 but:0.012424159703636133 upon:0.012332792685979343 is:0.011403390083904017 had:0.009000446005115126 :0.11256284442640868 +the:0.24290535092676066 of:0.10212947863512917 a:0.06660964399434167 and:0.06452924439408578 in:0.046145453747171626 an:0.028905285433602743 to:0.024831832657538484 on:0.019033507538981972 with:0.0175265361848234 tho:0.016581792341780286 or:0.015144600471177749 by:0.01478077430982236 In:0.013994505178688731 his:0.013800030491366362 for:0.01148527969354309 The:0.011243185637490409 was:0.010904562522277715 from:0.010552713145501815 that:0.009998499553257437 :0.2578977231426586 +and:0.07895257911471103 was:0.03596317658514438 out:0.024016824392823457 that:0.023672598027062328 placed:0.022844208461019616 work:0.021707439938587154 made:0.020781005318872947 is:0.020224993929329655 up:0.019794182040466738 put:0.018288921183371155 down:0.0171740551508179 interest:0.01663630075189571 point:0.01659978677065351 him:0.016175999448187352 held:0.015562908663841706 Dakota,:0.014616466073415059 place:0.01424333231426501 Minnesota,:0.014067166610364513 it:0.013665465625771424 :0.5740125895993994 +the:0.5808154600182612 The:0.049278699184881945 Assistant:0.044716149714983305 and:0.036899424765566714 tho:0.03175470751659593 by:0.028740524832252812 of:0.020726742511904667 tbe:0.01491737485076764 in:0.009475884189036235 a:0.007941403162685967 that:0.007857675221996076 as:0.0071910473849970255 for:0.00699773495148897 said:0.006973937599821558 on:0.006760029942192008 or:0.0056411101210412425 to:0.00551433729266894 an:0.004099596068726709 upon:0.003610088125026388 :0.1190880725451047 +one:0.015552536992080472 more:0.014252271697624306 on:0.010631301787611593 day:0.010222750824534239 two:0.010216157614982159 person:0.007504694644314241 in:0.007364820929323563 man:0.007179188731169107 law:0.006205362369136604 action:0.006166303509128973 and:0.005659786788634644 city:0.005177234665142273 three:0.005130416479837977 State:0.0047265097104810415 to:0.004696031397422901 ten:0.004594585978494318 of:0.004463781172886088 town:0.004231879326219736 year:0.0040256313925199315 :0.8609987539884558 +and:0.1171412535266295 of:0.0948981895928473 the:0.07418647438859448 to:0.05943807460411192 a:0.04208940466992375 for:0.023533786244376513 more:0.022497401996611672 with:0.020262449682096575 that:0.01968305503041427 in:0.01956821104774345 which:0.017352602604916816 or:0.015313192806825054 as:0.012114837224411252 no:0.011477444644536343 will:0.010679882938002877 The:0.010523700815738736 not:0.010131799691232166 an:0.009961815731188397 be:0.009074636619665802 :0.3990717861401331 +was:0.3828820327519787 be:0.15295870392231226 been:0.11920013914125216 were:0.08006452203131076 is:0.0509981340468065 and:0.04066162426754515 being:0.03041059465658272 are:0.029167482009985583 bo:0.011849266429584395 Is:0.008533803236959623 as:0.007177545948326268 waa:0.005599236599922084 he:0.005381961186434404 when:0.005269090956234111 it:0.0039464682146849355 now:0.003770488256870009 had:0.0036589777461308055 if:0.0036138751934881273 not:0.0034467237166771547 :0.05040932968691426 +of:0.3802559910438929 to:0.08648700177564767 on:0.08432618181434724 in:0.08136165209033348 and:0.040412880880260876 by:0.03733408642397145 that:0.035520243173109 from:0.027520118453104696 for:0.026173790415372336 with:0.01842633827069574 In:0.01696841024939014 as:0.01339539792482192 at:0.011044708524319482 upon:0.010428561403423965 when:0.00841204072766069 which:0.00781365966726446 into:0.006438694882583238 until:0.00628546220984576 all:0.00608353212058247 :0.0943112479493725 +.:0.01645578190521581 -:0.016375072355254244 the:0.012719827091104873 and:0.012040449670746823 a:0.011612788905490171 of:0.010148192832343127 re-:0.010126627925275954 to:0.009244057412170659 :0.0067994388278963215 or:0.006649209216065909 de-:0.006287838171150439 ex-:0.0059753487349181325 or-:0.005767167847887481 I:0.005344669937795423 pre-:0.004251773861761201 Al:0.00395726130494697 i:0.003716302969471666 pro-:0.0035509078983417598 com:0.0035473576924879807 :0.8444299254396751 +and:0.11798477832095398 of:0.07954832714860843 the:0.077228004897551 to:0.04871993807435367 a:0.02581430231859499 or:0.023580669443505283 in:0.021582955981331316 be:0.021233148417129085 for:0.01866401415075816 all:0.01674060493134946 on:0.01618486977705911 are:0.014488788399074082 some:0.014052414720155677 was:0.013812853855159127 that:0.013123805100851597 one:0.01262169908131134 two:0.012534289807182864 about:0.011823952261182151 at:0.011575553302190403 :0.4276850300116983 +of:0.334697967796255 in:0.1520447064149247 to:0.054143136727155025 for:0.04841173197804885 that:0.04715554591408073 In:0.04440082855237383 from:0.0394513160776971 and:0.031128287497342737 with:0.029567920991008176 at:0.02584784261633485 on:0.0239836853054749 by:0.0218463760291028 make:0.019057497248876593 upon:0.013370612582844457 all:0.00981199870399764 take:0.00943825602780144 but:0.009386522892987009 do:0.00905926749579404 after:0.00840420946614761 :0.06779228968175248 +is:0.230926101258704 was:0.17231185500353075 be:0.13012314375285736 and:0.0705002492619135 are:0.06638511184880387 Is:0.04144584310635082 been:0.039906083028054526 he:0.03584703961013122 were:0.030847414844464145 generally:0.02041220207695699 as:0.01860653818487004 so:0.015098241712740311 am:0.013713253385182296 He:0.01216675717656783 being:0.011147305897830181 it:0.010722846389574594 I:0.009955967535965548 bo:0.008360714312077584 not:0.007085441977986965 :0.053437889635437524 +of:0.15346395469926163 in:0.1430018821012243 the:0.08137739312452512 to:0.04097866568123862 and:0.03841922156504125 In:0.033993440099467975 for:0.02979962291689303 a:0.029633480284086713 with:0.016330661038506885 that:0.016121268058914878 their:0.01496353161714397 from:0.013935715069195194 by:0.01255036874492452 as:0.01243787838296109 be:0.01109456923003688 which:0.009599725104398325 or:0.00929247878875487 :0.008676117757169734 at:0.008347424298417255 :0.31498260143783774 +the:0.39749834532651884 a:0.07520030034269234 and:0.05540858759821703 The:0.03273515726769502 tho:0.030061875542463562 of:0.020144331424922633 tbe:0.014929647509541684 in:0.014268129706664795 or:0.013333166761078447 .:0.013287381914101323 an:0.009000188755386574 to:0.00880680429595084 :0.007943763822197133 Mr.:0.00773879605474787 by:0.007328417831573476 as:0.005922572098978465 for:0.0047526933692942485 that:0.004736121968310169 on:0.004594595720579333 :0.2713091226890862 +the:0.1861974716365533 of:0.11328177240432563 and:0.09510962033414457 to:0.044725865293021076 in:0.042374720739014285 at:0.029752404800560343 a:0.02358022851246777 for:0.02071563573968404 or:0.019099217710402617 this:0.016554315096703305 his:0.01539805842479633 be:0.015024722123789459 their:0.01472335740979707 as:0.012261484951973347 its:0.011761363260339707 .:0.01128143078149534 is:0.010622951923544226 on:0.010348573881464112 tho:0.010248877814326743 :0.2959379271615967 +the:0.1940431651957692 a:0.1235378889716458 of:0.10970558572312634 in:0.05376360687780146 and:0.02475560397066005 at:0.017582725877110565 for:0.015475137726565976 The:0.013241798103350716 to:0.012558464808383577 that:0.012088902662500279 In:0.01121863332869984 by:0.010518227459694341 with:0.009702757670020419 his:0.009609772669718495 :0.009343273207516323 tho:0.008224597720367367 from:0.008195955209699197 as:0.007875624654684625 this:0.007780538661996918 :0.3397777395006885 +the:0.16807735899698817 of:0.10541662057906837 and:0.05138367848570702 a:0.04141865232648221 to:0.0385989743764065 in:0.026264864977736738 was:0.019530675665220657 his:0.018900421021236905 be:0.017373825006196972 their:0.015767721170721456 for:0.01557246589796783 with:0.014071419046630446 is:0.012922913111931644 at:0.012690452250034052 are:0.010702713108721902 .:0.010158075558988393 Mr.:0.009672788574483367 tho:0.009612591781990074 were:0.009549306361446321 :0.391314481702041 +and:0.08995317707915026 to:0.06844710404109794 of:0.04605142056172993 the:0.04074574508561307 which:0.02479116931334353 that:0.023764822140213245 re-:0.020841117231308055 in:0.020803825395358622 for:0.020278423301550053 :0.018417753428486977 not:0.016860793136637672 con-:0.016444405871234195 is:0.014386481772210856 or:0.014080680914153714 be-:0.01352268143271276 I:0.01317002660943805 was:0.011429878269381662 dis-:0.011196807025842847 he:0.01113106290024311 :0.5026826244902934 +and:0.09500881008555331 well:0.06206658951236029 regarded:0.036935028935535894 him:0.0314142794209011 known:0.031077052056542338 soon:0.02700320061470986 it:0.02623085774473942 is:0.02438162343435629 but:0.023839390993020203 used:0.021720637341540703 far:0.02045890976727103 just:0.020384524333195254 much:0.01971667289504282 such:0.019521581813054578 them:0.016090407278819097 was:0.015694381145043425 so:0.015081118446204548 act:0.014529263549522683 that:0.014487886332689187 :0.463357784299898 +it,:0.021215804608184466 ;:0.021209760323610022 in:0.01852960387643753 him:0.017226440804373612 him,:0.015517504135995331 it:0.013827341168683411 me:0.012616590628048749 me,:0.01187130783221111 them,:0.01130205876781514 time:0.009681809901065009 you:0.00957886090149086 and:0.009096715495351895 up:0.00894080593352386 time,:0.007653330335504777 to:0.006975295871586127 down:0.006933413371634118 out:0.006751951194284245 up,:0.0066731605765002555 country,:0.0060495418672168715 :0.7773487024064826 +it:0.14980370725759037 It:0.1417831987182438 This:0.0994395734160535 which:0.06123870759127718 that:0.053827314535707556 this:0.0485319048157116 and:0.03481463816943127 there:0.03163351300029438 he:0.025874957304685715 That:0.02452637228711398 what:0.02101535076138451 who:0.020745118014465793 He:0.01553744098124584 What:0.015466571118696077 There:0.012715435083286795 Here:0.00825702518154719 one:0.007881347531268929 Such:0.007797349307744799 as:0.006397540204786528 :0.21171293471946415 +of:0.09129790931378902 the:0.07369883040827747 and:0.047842263382354346 in:0.04189055351593407 to:0.04045875475680249 a:0.03542341257202578 be:0.02020462051672066 for:0.01979292654746225 was:0.01760256398103379 at:0.017380150555488715 is:0.014984483003968216 with:0.014047653760730413 by:0.01374644383819499 :0.012670486581795598 In:0.01200961464556976 or:0.011563835749786333 from:0.011391516893522809 are:0.011273104484969465 that:0.010755276030689069 :0.4809655994608848 +the:0.4544007620394347 a:0.12316582031521157 of:0.062210334489584476 this:0.03697753783943365 other:0.03504677568581165 The:0.027184339871352506 tho:0.025198911369853364 his:0.01627014086162395 new:0.014012842028658016 said:0.013466042525880222 and:0.01026988304660354 school:0.009396714344039709 that:0.009314417269709975 tbe:0.008853346046823675 general:0.00771804888210231 special:0.007547126216544496 private:0.007533937838972755 any:0.0075256012676797445 our:0.007403707605083306 :0.1155037104555964 +the:0.1225076649597919 and:0.07161361224167645 of:0.06473629272949444 that:0.04958618514670853 in:0.028043918893866652 The:0.018977980784367614 which:0.018116365783577473 a:0.016457792131635864 Mr.:0.016204994403703713 any:0.014996833454149294 as:0.014951613809545558 or:0.014949554079500006 such:0.013882217367030407 to:0.013849308168220787 no:0.013167338522426214 he:0.012643594782225433 their:0.01149823381066073 for:0.011150101666402977 other:0.010739089653356843 :0.4609273076116591 +the:0.5444584232761738 of:0.09233088703547045 our:0.046284334013419824 tho:0.028561010348699886 on:0.025832321344707188 this:0.024044824371176637 national:0.023565422966700653 their:0.021170238819562332 general:0.017010975658201623 its:0.01613826193943108 other:0.01561178954970177 his:0.012869244919785076 a:0.011487071574336911 at:0.011253364332139025 to:0.010945935609519338 State:0.01084240427919159 American:0.009927638765309844 in:0.009772504394535638 tbe:0.009734289064348974 :0.05715905773758842 +of:0.11330343124732481 the:0.09149842591409661 in:0.08293636716458272 to:0.07230999546478938 and:0.0701266680243167 a:0.04606214469236509 for:0.024408606045850132 from:0.022969309209505594 In:0.021823202262437755 that:0.01869718714104805 with:0.017946338557361687 by:0.01787414667313615 an:0.016574302615271968 as:0.016418962457634096 or:0.014755382152732631 be:0.01384126537221721 which:0.012777726516336635 at:0.012118712171166317 on:0.01161754316353058 :0.3009402831542959 +of:0.3191161359384774 to:0.08897254515774773 in:0.08000728602355935 that:0.06685689545987865 and:0.05933046716699599 for:0.05239595824550222 by:0.03743351723495306 on:0.036763587633134504 from:0.029900131230267694 with:0.02568954125901604 as:0.020144246528530262 In:0.018902629143675315 upon:0.018734138710439104 all:0.015510196093472097 which:0.012858663197014427 or:0.012274849071228085 into:0.01181265540097111 over:0.009718660785964608 than:0.009199981813579271 :0.07337791390559315 +and:0.19314669346996644 as:0.09544708588834988 that:0.08318869247765472 but:0.02481183136198749 or:0.02372530432940557 But:0.012786118950892818 even:0.012044213299915046 which,:0.011629787426033817 And:0.011614263879710273 do:0.010206736036660616 and,:0.009978878428103443 it:0.008758054490213725 than:0.008121497702406548 or,:0.007713973106416196 which:0.00769867081656253 ;:0.007593401317125696 him:0.007408090846733662 that,:0.00727120235477434 see:0.00712943611963887 :0.4487260676974483 +of:0.22331799298948754 to:0.21872755253195755 in:0.07285641899727337 by:0.06679001141620712 from:0.052401203679539494 and:0.05168400876223157 with:0.02993357655635359 at:0.027177978849352503 In:0.025557429292928414 for:0.01982300822598824 on:0.01918213648641635 that:0.015385467138749 upon:0.011717144366627002 or:0.011296539042347524 ot:0.006746174800442243 into:0.006010526447081187 against:0.005641272403760784 ol:0.004869472153797771 have:0.004551932267952733 :0.12533015359150604 +:0.04139695879490342 them.:0.03350113308105769 it.:0.030570159188310613 him.:0.01936428043210112 day.:0.010730222036575438 time.:0.010217448837759092 said::0.010072749288687474 us.:0.009904370064807448 life.:0.009692224282292302 her.:0.008921149293192416 country.:0.007730119078357426 city.:0.007589509045010042 home.:0.0074646581734759635 out.:0.00745562972425214 people.:0.007017970293102201 years.:0.0069703462698307486 away.:0.006816236033536398 law.:0.006715239644526813 here.:0.006468032604533659 :0.7504015638336876 +is:0.07308567337982469 and:0.06914023058575801 able:0.04288356262332097 not:0.04016261812052896 enough:0.03925660910593931 was:0.03800616579900566 necessary:0.03297426192183351 as:0.0322055147546817 began:0.03071782420566038 right:0.028058790286011055 order:0.02703096257278756 them:0.026945947225478505 ought:0.025691613973180764 him:0.02454766120601596 going:0.023220644456007238 have:0.02293073017915684 ready:0.022308113869164446 unable:0.021719263533394567 are:0.02064415524269248 :0.35746965695955735 +and:0.11046879281749401 the:0.07390882842541156 to:0.04918818618058255 will:0.032664047027329675 a:0.02816633279152904 I:0.02378148143631073 of:0.02299236998368141 that:0.021765246169398435 would:0.020693856674203967 for:0.020257751972759377 or:0.017167832587340646 did:0.015242047569643416 do:0.014167251441378096 which:0.013698649985881042 could:0.013607747600829952 you:0.013071940837597664 he:0.01222720445724955 they:0.01178703053328072 :0.011325302764480023 :0.47281809874361813 +they:0.13367447744842423 who:0.07073806238701752 we:0.06736820885314773 which:0.048528142396448766 They:0.039825250877513145 and:0.03749466422273715 you:0.034994083759823685 We:0.028364347855539217 that:0.02666964281712194 men:0.02291128530976282 people:0.01737861154114656 there:0.013373078024190091 You:0.008361627206008264 them:0.008245920800838621 There:0.007658308211161981 others:0.007490621408008564 women:0.0069161206342838195 children:0.006812318600962714 I:0.00676898393617631 :0.40542624370968683 +the:0.16252600296301706 of:0.09943636141121946 a:0.06972061183976204 to:0.05786006055271911 and:0.051901321414837935 be:0.037439623662398995 in:0.027926045399370266 is:0.026607440308126628 not:0.024117671416066706 was:0.023783954316327426 for:0.02116560723292378 or:0.019279992189698437 their:0.01878366798909115 his:0.0183649522149638 been:0.016598750070275194 are:0.014734104368434184 at:0.014726030078833321 no:0.01294859103405944 with:0.012367286558919744 :0.2687119249789553 +the:0.3857752865467633 and:0.07573377041303175 a:0.06804017637447887 The:0.040849215338813645 in:0.03509600550407702 tho:0.02926718835723283 an:0.027958024996040935 or:0.027204163426383602 all:0.02555957218460118 any:0.025213538650049962 great:0.024923998421214556 of:0.02456417002866461 by:0.024123134447315932 no:0.023946957854545106 such:0.023779253707097454 with:0.014609588644843897 large:0.012426105159837273 tbe:0.012200498352688723 good:0.012194155035649907 :0.08553519655666945 +the:0.4053988601369285 of:0.2227950276770219 in:0.08661419853751876 his:0.0346008479949988 In:0.02312388136183145 a:0.022779593790909013 this:0.019174994304667518 The:0.019062254720817354 that:0.012020573354650791 for:0.011476133201716483 and:0.011033818015829141 tho:0.010542000386253381 other:0.008377814236389468 my:0.008280840573760592 their:0.00799841625029092 our:0.007208396741828815 her:0.005120688504123388 by:0.004678659942504048 tbe:0.0046764922803739 :0.07403650798758578 +was:0.18076398327479767 is:0.1409789328494907 are:0.11559169094388397 been:0.10063680630440912 be:0.09140097670648654 not:0.04597161962753565 were:0.04456008339326855 and:0.0346235713133083 have:0.028176050578331186 has:0.02473592199275894 had:0.01902274889340807 being:0.01867005544026549 Is:0.017676326295829346 become:0.014670262736825703 became:0.011171513100069906 of:0.009856726767231124 or:0.008630459711225596 do:0.007559431595927027 in:0.007268083439641925 :0.07703475503530517 +and:0.11154091740192416 to:0.0756830709403919 the:0.06168318825008967 be:0.054595404188479496 was:0.0525546874917754 of:0.05036736705851568 is:0.04339306839385623 a:0.032464913828694986 are:0.023606168454433172 been:0.021891239493132052 an:0.021809126343003294 not:0.01928554374443088 on:0.017794532573145855 were:0.015070055725874628 will:0.013888270993402346 or:0.013719831526515153 he:0.013576326519782576 as:0.013196221687388906 they:0.011762412600743812 :0.3311176527844198 +the:0.7186827086623295 of:0.07223113870822281 tho:0.021381249313765695 this:0.019966245746633474 to:0.01794495689010215 their:0.015551537429721582 our:0.013251025826546591 tbe:0.011009521966028892 said:0.010543721606248752 its:0.009291899012229736 his:0.008273557326942429 a:0.007259092458229419 The:0.0070153883135843 at:0.006331305611024028 on:0.006011677054250812 by:0.005975301863527321 and:0.0048971358027535775 general:0.004580155829264707 such:0.003938446627866681 :0.03486393395072748 +the:0.3110833987397879 of:0.07236463776929697 and:0.06409230859612164 a:0.057008760868054564 in:0.055160084657577206 their:0.039804499164116214 his:0.034178495695862926 this:0.027311853107880688 any:0.023403713265897824 our:0.022625549361394003 that:0.02235015609748476 tho:0.02202908927472121 two:0.01867862093048104 its:0.017233478100554853 said:0.016115235782079674 these:0.016033790995880055 as:0.015549059972437556 for:0.015057204213174745 other:0.014401716529411307 :0.13451834687778486 +the:0.11919516938815296 of:0.07230453158552728 and:0.05781056740443249 a:0.043018564803886335 to:0.031305092790907506 in:0.020848713353460488 at:0.014270110001066288 .:0.012526810245749479 :0.012413283442322082 for:0.011719122709941797 by:0.010808400946589808 or:0.010404172990115616 The:0.01003576004804544 with:0.009811868184449042 tho:0.009295902015355835 was:0.008924239095331684 that:0.008672304223433876 is:0.0085591147338948 be:0.008335143826716943 :0.5187411282106204 +was:0.15375856836512336 and:0.12060285393754014 is:0.11813347485523129 of:0.04236814009512561 are:0.03792184170534128 in:0.03383286812794574 were:0.03307521602729927 be:0.03159673938276304 not:0.027022688001686012 by:0.025793048626606776 been:0.025180364972273776 for:0.024656619106865944 as:0.023926749154405957 had:0.02377198962067955 that:0.02354414358473114 but:0.02240364649912925 to:0.02139449612793827 have:0.020443397727520254 at:0.020368479449010737 :0.16920467463278258 +of:0.22214253911614815 to:0.15292552953083546 the:0.11293378371637648 in:0.07275671786348112 and:0.051781638926922585 their:0.045803590293496975 all:0.035805066421009196 his:0.0323530852589927 for:0.025475033061395265 both:0.01718718264586816 that:0.01640454961892868 with:0.016163062074093952 or:0.015781018639881853 into:0.015702879544431537 at:0.014957402530544991 own:0.014679399471549007 its:0.01422880938592309 this:0.01301133688422423 In:0.012422041632537767 :0.0964853333833588 +be:0.19707847544722693 was:0.1556642319460433 is:0.11274386847940145 been:0.09713463695451022 are:0.06699672218072149 were:0.04373542822574594 and:0.042182587901849554 being:0.033075002012705 not:0.03213155955935626 as:0.0244775644916847 Is:0.01639688599225164 now:0.013607487873372669 instantly:0.012411094147291808 bo:0.011459472641200426 so:0.008775376768412078 entirely:0.006913201625409162 he:0.005224881639819358 well:0.004436590095195226 persons:0.004402200494611942 :0.11015273152319083 +the:0.14117344734319692 of:0.07921767072475763 and:0.07699184487070236 to:0.042809214222713644 a:0.03791407805822653 in:0.02396483489085983 be:0.017184590766676496 his:0.01586114000519643 or:0.015250977317522615 The:0.013723614785415523 is:0.013570396888354291 for:0.013424748629642828 was:0.0133622346024403 :0.013200792545264167 .:0.013123607706178776 their:0.012333362934545374 Mr.:0.01126373039767266 with:0.010721976863014952 at:0.010525120859165741 :0.4233826155884529 +and:0.04310137793370633 known:0.02495445254227462 day:0.017649730540660866 it:0.01615602066558736 time:0.015512248813101204 that:0.0113358724731315 was:0.010530377612293524 well:0.009320989446612932 up:0.008853663763577395 recorded:0.008626327578909583 said:0.008249547549092209 :0.007651075028110355 out:0.007519813541082384 is:0.00728031099311523 them:0.006525960101374236 morning:0.006453179508276164 one:0.006290743949717936 him:0.006208975115175391 office:0.006112407303205857 :0.7706669255409949 +the:0.6294154831232185 an:0.06633337402481046 The:0.06233322808886166 a:0.04222500965417289 tho:0.035575033919787356 and:0.01764826400854484 large:0.014908882568601664 tbe:0.014138354531348653 great:0.013163107691692726 high:0.009146383988010418 of:0.008868108735103925 best:0.007819505589440643 good:0.007743862130342639 further:0.007634376394625156 total:0.00748268844340512 principal:0.00675432914023336 actual:0.006638211851003523 their:0.006520030618158373 enormous:0.006201828026318837 :0.028449937472319244 +and:0.1484857534632748 of:0.11740029294387458 fact:0.056656038234833755 in:0.043986955086360774 to:0.04358123908413527 on:0.03983314994078974 at:0.037993801982935775 from:0.031121197514965435 said:0.03104977284215706 for:0.029020337980113758 all:0.023136309883978863 with:0.02259068484752832 believe:0.020494170022001452 is:0.01899997164413934 but:0.016345134662721608 say:0.016204192292224712 so:0.01488866127850226 that:0.014397244123476203 show:0.01431608495328872 :0.25849900721869756 +it:0.1057025228158821 and:0.08793905847139186 we:0.0870935065726206 I:0.0642923548968807 he:0.062286686465004806 who:0.05814027222050348 which:0.05625146183625746 they:0.05215353048889746 It:0.04035014446811075 person:0.03493939592611453 that:0.0224209398237831 you:0.020680190827040916 We:0.016578934501057605 there:0.01519098490926545 or:0.014542239558167901 nor:0.013572333260200742 law:0.013124689013869394 as:0.01283833851693686 company:0.012811452582828328 :0.2080909628451859 +the:0.26958954977193217 of:0.16789701910950358 and:0.051604265786880446 for:0.04736721461656861 no:0.03872490781983633 more:0.03542312132770167 lawful:0.03335012701930323 purchase:0.0292165546710344 their:0.028759821201174953 or:0.028652574914696152 any:0.028623885654421935 a:0.02005468551950067 best:0.01926260680457957 all:0.018198032184676406 borrow:0.01804010364587885 much:0.01718898024647324 to:0.01625896510042946 that:0.016001321484908782 by:0.01525648019117745 :0.0995297829293221 +a:0.29123149976825025 the:0.22823327910770605 every:0.04252974198378039 this:0.03650304335553648 one:0.03303748927126265 next:0.027910888004868413 per:0.02700029594364854 any:0.019817942148700217 that:0.018831110129172483 said:0.018158345966386658 first:0.016960333480512686 of:0.016475955603816757 some:0.014399793829045208 same:0.013123699493377966 from:0.013071391754390635 each:0.0120431264539335 by:0.010773180003210849 tho:0.009884716616794558 other:0.009740184418643428 :0.13927398266696223 +the:0.17235159001350722 of:0.1216686372369097 and:0.08112762285788216 a:0.03632519791142213 to:0.03189744912194439 or:0.01784101446975093 be:0.015508352630995004 at:0.012599598230448027 in:0.012238400784019877 for:0.011767212715497537 their:0.0111549421819416 tho:0.010792355926064746 is:0.010589029079035684 was:0.010323671829541034 with:0.010312705378634967 by:0.01011928125734904 The:0.009827247550214123 his:0.009753542918397496 that:0.00911177818714203 :0.39369036971930227 +and:0.41357695420814294 by:0.032366245178968855 of:0.027750876054143035 that:0.025914338674842254 to:0.017718421304076654 :0.011615030397940087 sister,:0.008916299791594345 as:0.008032236867551555 from:0.006815398662559563 daughter,:0.006536564857630778 at:0.0049800529035005075 ;:0.004539935164926599 said:0.004117918990885919 with:0.004062070455960755 when:0.004017553309827471 Mrs.:0.003914971668308325 the:0.0036060161295623614 for:0.003301177278866239 aud:0.0032863366750951716 :0.4039316014256165 +the:0.11919516938815296 of:0.07230453158552728 and:0.05781056740443249 a:0.043018564803886335 to:0.031305092790907506 in:0.020848713353460488 at:0.014270110001066288 .:0.012526810245749479 :0.012413283442322082 for:0.011719122709941797 by:0.010808400946589808 or:0.010404172990115616 The:0.01003576004804544 with:0.009811868184449042 tho:0.009295902015355835 was:0.008924239095331684 that:0.008672304223433876 is:0.0085591147338948 be:0.008335143826716943 :0.5187411282106204 +the:0.2093374424633799 to:0.1664677772488062 in:0.08987244200064559 of:0.06024225725962017 and:0.05592351263950887 a:0.05094321893039192 their:0.043041705749686 his:0.03574740397995729 its:0.03375405297166332 In:0.02457373194673534 our:0.024007241418304476 for:0.019942795242767732 The:0.015968928951265195 with:0.012936924289249026 all:0.012034480409315559 or:0.010779904633376136 tho:0.009722571391082452 her:0.009508778663720427 your:0.009464637394316067 :0.10473019241620832 +of:0.21195484137848505 the:0.09648511213454111 in:0.0857661254546866 and:0.05423220738765127 to:0.042955001310027004 for:0.024135258657752817 from:0.021987572453861053 In:0.021255988045916815 by:0.019230703260397518 :0.018533887951005454 that:0.017774697081546054 a:0.014119713689542136 on:0.013240016976470984 at:0.01320966852044901 with:0.012291566651784666 or:0.010235258301799204 as:0.009823645899787563 in-:0.00960242016109584 which:0.009177294439760609 :0.2929890202434392 +the:0.2189377418620256 this:0.19337190714928532 his:0.06169986276004687 that:0.046571040085391584 first:0.04037544617566665 same:0.03256817899570102 taken:0.02760043257197199 on:0.02621683292864519 took:0.024777236067058256 of:0.023080744277030767 in:0.02248790541015109 a:0.02103833781200095 second:0.020165739237770222 right:0.017996029531743694 their:0.016410283785586816 her:0.015406293935559196 our:0.015254360777030402 tho:0.013561091677358033 to:0.013286963680869353 :0.14819357127910698 +the:0.2412133270956124 .:0.041104145879004725 and:0.030943427732542574 Mr.:0.023450698508969935 of:0.019367414302419807 The:0.01607297962080308 in:0.015922943243690906 a:0.013677855196131072 :0.013604156727675728 tho:0.011930618391291016 W.:0.011866837770993 of-:0.011363986113598889 said:0.010110434736094102 tbe:0.0094131342105071 Mrs.:0.00781250761705214 :0.006904183528198057 or:0.006799308866576875 by:0.006622970244446012 E.:0.006511041383664817 :0.4943080288307278 +the:0.5161373176688923 tho:0.03331269859972445 Missouri:0.02727896219106113 Mississippi:0.025801551777869185 this:0.01746050007043336 Potomac:0.01734433485705023 of:0.016964089238557592 The:0.015255680370891709 tbe:0.01394297197634613 a:0.010523317338833547 Red:0.009439276778586733 Ohio:0.008761766090067782 his:0.007945417501593744 and:0.0068685331447224645 Republican:0.0067994753514112475 Hudson:0.006142492277668102 their:0.005875831424744512 Snake:0.005780524499855529 or:0.005444567954091892 :0.2419206908875983 +to:0.48283697403041154 would:0.09012497328163478 will:0.0777270088046279 and:0.04356135313285373 may:0.04251517806187571 should:0.03112913938655137 must:0.029122105616377195 shall:0.02281942704215003 can:0.016809077844349367 not:0.015322050811702046 of:0.01512118150623007 could:0.014526348450065523 in:0.01111617994893052 I:0.010546080842712352 might:0.008940870693052456 that:0.007756933458759628 you:0.007023186455477823 the:0.0067838429689821905 a:0.005823028372495452 :0.05939505929076032 +a:0.3969609785052692 the:0.12958432776890716 so:0.0636082662142541 of:0.032062129766752524 very:0.02936546958577279 and:0.028637750417592308 with:0.0225156216099692 his:0.02048584770696346 not:0.020251492459194134 by:0.017614221383384088 as:0.014321787018702436 A:0.012976023320502494 that:0.012359976304198654 too:0.0123444832636125 for:0.010942525573194133 in:0.010868774367133932 to:0.010777834089691485 an:0.010648085840053764 how:0.010009957851125543 :0.13266444695372612 +of:0.37925552984141186 in:0.1687897019828205 In:0.0571614080017412 that:0.04360245569278725 with:0.04245336348008684 to:0.04155695192850756 by:0.030058165420364675 and:0.0277545820564935 for:0.025537683765693393 from:0.02403181533072957 upon:0.014236317715285855 but:0.012074584384501335 is:0.011045078386795254 on:0.010900047905453953 at:0.00991724993680014 a:0.008887097644796322 as:0.00845874807076249 With:0.008347601098677016 under:0.008014017317365306 :0.06691760003892598 +that:0.0901935891097656 of:0.07928172731825832 and:0.07111487402341272 as:0.06053551921583654 make:0.057898025914019866 is:0.03933462760215073 have:0.03876900576071697 for:0.037779784465784144 which:0.034762150579288026 to:0.03245895957724814 in:0.0300123946064919 had:0.0294755861128112 if:0.02629673829686218 but:0.0260724075824633 made:0.025415523474880936 when:0.023804006767814093 on:0.022541195638468944 with:0.022434221528727486 what:0.022172257100201237 :0.22864740532479766 +it:0.09332940938647652 It:0.09136669182751483 and:0.05316727596649822 three:0.02782829836734253 a:0.021556438359864382 with:0.020860992765390475 more:0.018566930698788314 two:0.01671954636640785 that:0.015470922233852512 time:0.014766152723412385 be:0.014650984291624987 is:0.013379952403815017 four:0.012563037145042586 have:0.012053877609300281 which:0.011823344148427591 has:0.011552680264122619 was:0.011505698569415622 of:0.011243675570023528 other:0.011065184738710196 :0.5155289065639695 +and:0.0898983534307284 recorded:0.03839146221566241 is:0.03668562203905007 that:0.03431669392481337 was:0.03241998013206866 are:0.027724572492448484 distributed:0.02179882077106108 but:0.01800596869166509 divided:0.01768723397643896 known:0.017021756068469524 be:0.016884730073410792 it:0.015315420617176249 were:0.014487761080509552 out:0.014292757089545834 up:0.014183216524911337 work:0.013587985847310425 them:0.013360650140025847 all:0.013336002124362483 him:0.011966071585439919 :0.5376349411749015 +in:0.1331050896317587 the:0.13164942047591735 a:0.11074997984860456 In:0.0433451552674557 and:0.04013457201845476 of:0.037544310912273005 to:0.03350130714339054 on:0.021767609991629435 any:0.016780898720965835 an:0.016661002185052353 at:0.014565272791526303 right:0.01403629342251468 all:0.012275144010905382 one:0.012197580142301852 that:0.011913560049540537 or:0.01092482152790307 with:0.010050586770544852 some:0.009999167027356412 his:0.009139976962154737 :0.3086582510997499 +and:0.14507320772351315 fact:0.08580533594336559 said:0.056464728489513914 so:0.05141663139801109 believe:0.03728868944610554 is:0.032697255055655516 say:0.030323479159427524 know:0.029749358812227955 found:0.025535190692382553 stated:0.021273605064562356 show:0.019511948220510757 but:0.018999393120383457 says:0.018814328565908398 think:0.016893655385130203 was:0.01658797795582863 all:0.01652317309060226 see:0.015409038245983688 opinion:0.015263158537430448 order:0.014744011681695817 :0.33062583341176116 +that:0.21014047157895346 when:0.11124330457977698 as:0.09057415158683256 and:0.07752072082579096 which:0.0697003313540956 if:0.05607297410610399 where:0.03394141155003729 but:0.031120669937647633 what:0.02048469329604079 until:0.01843432542203941 said:0.018034276834497872 before:0.01799321808707186 time:0.015510525855845453 When:0.014911359250133706 If:0.01383278315031343 Then:0.013389898450981532 while:0.013332611706083035 As:0.013244382000220429 because:0.011925127936933923 :0.14759276249060005 +of:0.22405658785602628 and:0.09958365254343202 to:0.09693019231787392 that:0.06757195775997689 for:0.055116923102096795 in:0.05296093504100745 by:0.044966842242016754 with:0.03735100026791925 all:0.03504457719304697 from:0.02629578548629977 as:0.019620424719251375 at:0.019479798991912673 under:0.018221620472303367 when:0.015960323500505604 on:0.015682012292688192 which:0.015441947992067936 but:0.014674751765619838 upon:0.011318977945891595 In:0.01116560183889091 :0.11755608667117243 +-:0.06305314813868675 to:0.03926738737279278 of:0.030855410395972137 ti:0.02777775010659271 tl:0.02293405971373542 .:0.01812268982262146 t:0.01704934729110254 I:0.014221538264735194 w:0.014156724762025502 :0.014068377436745492 twenty-fiv-:0.012945005510033398 the:0.012934729484890129 a:0.012665793955158882 and:0.012468618102207497 i:0.010185791877823484 r:0.008161182358682621 in:0.008032758227309533 i.:0.007490074901576037 1:0.006822546033261477 :0.6457870662440469 +and:0.1559284722886799 fact:0.07402264193628033 so:0.06758269419969826 know:0.042443677732844756 is:0.04160077557123819 said:0.03641642846015232 say:0.035063647503628434 believe:0.03120303690475855 but:0.024444405736333785 stated:0.018612437040712963 think:0.017150857410206284 was:0.016819152447065687 found:0.014426962198508583 me:0.014280827127352328 all:0.013678965309287291 reason:0.01315042679426266 see:0.01300150230337965 however,:0.012867487218543763 says:0.012207894021078162 :0.34409770779598814 +would:0.10425032949612278 I:0.1036080992618055 who:0.09885825482846156 they:0.08805698224741253 we:0.06533619432753243 to:0.06144379728068203 you:0.04240331918831736 and:0.03541579552414693 which:0.03097280445193114 might:0.028448759212351862 will:0.025663376003637536 We:0.025620602158658683 may:0.024969002116264526 shall:0.02407506930825611 should:0.023600121990037536 must:0.02227239648258409 not:0.020189407614148572 men:0.01922475717206275 They:0.01746759117104943 :0.13712334016453664 +the:0.4322617948761721 and:0.06862277565044202 of:0.06505355503433354 for:0.031102205541520718 The:0.030803675216020253 their:0.024131349348650893 in:0.02373851753677032 other:0.02370761380987859 tho:0.022331208268852452 to:0.02011240606085159 these:0.019121305694018636 his:0.0186147528612086 our:0.015741531762475648 or:0.01529185967302735 from:0.015229457372071821 its:0.014684736190698931 a:0.014579242877338227 this:0.012760603871449196 as:0.011879100049490394 :0.11923230830472867 +the:0.12809209703647573 and:0.07006936767749312 of:0.0646464141006909 a:0.05097076371384494 to:0.04166269430191915 The:0.027811161300343248 he:0.019796952043817966 be:0.01906608811744834 as:0.01822881568656125 was:0.01822380039576485 in:0.0171359756002367 which:0.016278016089385602 Mr.:0.01595140555350505 Mrs.:0.01505918372951099 is:0.013485908754635012 I:0.012244739652778744 on:0.011862689068689506 when:0.011450315999314556 or:0.011334543938923644 :0.4156290672386607 +the:0.1911788579583736 a:0.1504051522074116 and:0.09602203154432522 of:0.055755538357687755 The:0.027179218175823226 an:0.02231328158675105 to:0.017546469186699096 in:0.014479625286903344 that:0.013468030514775454 tho:0.012722770289860776 Mr.:0.01219733136368382 or:0.011865992850510041 was:0.009445343361669597 with:0.00942405564484096 for:0.008537638685314593 his:0.008508105908107352 A:0.00830987003900854 by:0.007752892735319844 be:0.007626594955479675 :0.3142611993474545 +sum:0.1410014036006351 rate:0.0779059387340067 day:0.039357356823944784 amount:0.038351668831707174 number:0.030801915479321564 instead:0.030688316872975803 part:0.028648409614739613 period:0.02843250826435589 distance:0.028052506376756017 out:0.022606318125676376 depth:0.021967036317381828 line:0.017201785534287757 tion:0.014630599161293308 bushels:0.013673408029195484 price:0.01350363276349649 pounds:0.01323679284341189 consisting:0.012852169992882164 work:0.012648982398770214 lot:0.012384170405961497 :0.4010550798292003 +of:0.2926633354929936 in:0.08562167987005666 to:0.08153539417007233 with:0.05562005386966959 that:0.047908921715913114 for:0.04449290373819024 and:0.04408362281697161 by:0.03563779829585633 on:0.031202799111217542 as:0.024413294999777777 is:0.022934599704668573 upon:0.022637571491130975 from:0.021711123592182333 at:0.019494088783566975 under:0.018799238800061954 In:0.016761158949778206 have:0.01569147662229313 make:0.013749258824476232 which:0.012141780400553718 :0.09189989875056913 +the:0.8720164496724387 tho:0.04690213718062064 The:0.020049037744112555 tbe:0.014608353362653797 of:0.010531132155482499 and:0.002859999174544876 by:0.0026471868598776324 a:0.0025839687482875763 tlie:0.0017670966627532552 our:0.0016744398623076587 that:0.0016363278773482784 in:0.0015877691034125033 ihe:0.0014314452382605672 said:0.0012657665366587463 tne:0.0012285756312794174 tha:0.0011553282168626636 this:0.0011250832174796185 from:0.0010033143504130397 ofthe:0.0009208976082912711 :0.01200569079691473 +of:0.09129790931378902 the:0.07369883040827747 and:0.047842263382354346 in:0.04189055351593407 to:0.04045875475680249 a:0.03542341257202578 be:0.02020462051672066 for:0.01979292654746225 was:0.01760256398103379 at:0.017380150555488715 is:0.014984483003968216 with:0.014047653760730413 by:0.01374644383819499 :0.012670486581795598 In:0.01200961464556976 or:0.011563835749786333 from:0.011391516893522809 are:0.011273104484969465 that:0.010755276030689069 :0.4809655994608848 +to:0.31059571406939357 will:0.20425757625330873 would:0.133094322816397 may:0.05360388159749485 should:0.04751723065858571 shall:0.042846075470128905 not:0.03498447710879167 must:0.033197114998686265 can:0.01733161400489818 could:0.013140053132453297 might:0.010038574927070389 cannot:0.008553309467174345 and:0.008238336102433406 it:0.006886561425115729 there:0.00574775815678757 never:0.004645075469242335 only:0.004505185745248458 also:0.00449863383901001 always:0.002953648667362942 :0.05236485609041661 +the:0.23040760556281198 of:0.21122815556782393 West:0.19686560825867627 and:0.051060611420281114 in:0.050870031990126685 by:0.023280996835903813 from:0.018171835110270224 said:0.017633174697402814 for:0.016166094499229858 to:0.01603603869861323 In:0.013451513316136138 at:0.009269098565200853 The:0.007296852109741139 Western:0.007191378706420838 tho:0.0070286800029585985 a:0.004767272671729784 or:0.004697316523998037 tbe:0.0037829894256869168 that:0.003624982785507476 :0.10616976325148028 +of:0.3430981267330341 and:0.16592210177237182 by:0.09419618987272485 with:0.046707366942068666 in:0.038725117133245085 for:0.038679776351320846 the:0.018955448768104774 or:0.01740288613060592 as:0.01619754362461458 more:0.015251474041061903 to:0.014998856003018896 are:0.014179788685421652 so:0.011053947560868938 that:0.010469701366218333 all:0.00983324058516343 In:0.008793679247920716 among:0.0076632753761792256 her:0.007395629833649998 from:0.007211112396632404 :0.11226473757577389 +the:0.2921680691410069 a:0.2364684228665109 large:0.13477920789412925 this:0.04897150672282471 great:0.032920488287495726 in:0.020724265758645506 tho:0.020092570449012862 small:0.01973595475811237 every:0.01838164438139042 The:0.016977315583086988 first:0.016314090222886928 any:0.014267566431412177 vast:0.013260136210854017 and:0.010457504229800237 full:0.010085345938267326 greater:0.010056665558232218 good:0.010010800355139354 considerable:0.009880932258745619 no:0.00978120929009057 :0.053666303662355905 +and:0.12464856629399206 that:0.12257437435184468 which:0.07370917737593659 to:0.07343297931164332 when:0.04173119119273217 as:0.039915073077952175 if:0.035309756656188025 said:0.024222668686869935 what:0.022552591568325214 before:0.019545735438696324 where:0.019094085368361654 will:0.018235706201094236 If:0.016882444918502416 whom:0.01470655896137337 t:0.012439825701495837 while:0.012428741565237657 but:0.011732005544419066 than:0.010790166179415086 for:0.0104494487885949 :0.29459890281732526 +out:0.0696181378012055 purpose:0.048586478681573356 means:0.04668171066878178 matter:0.02945126512139373 right:0.028033613920995185 one:0.025278746907064237 sort:0.020602044494246154 number:0.01974729821951486 time:0.01913476369783697 course:0.019025587975045073 want:0.018970000636879144 point:0.018689163311901017 cost:0.018526056917918084 lack:0.01824669240313133 place:0.018166699054914928 question:0.017957542404430284 full:0.017734616054414044 years:0.017022157326817052 kind:0.01698958924913229 :0.5105378351528049 +per:0.2908511435465278 a:0.2704837792983597 the:0.13843852259543352 last:0.05181941112684287 every:0.03412977261456435 one:0.03294525191091441 this:0.019073056117201535 each:0.01777860172209404 next:0.015296514881651133 his:0.012994076134925734 past:0.010029112189676602 other:0.009555658515019386 our:0.005965186480625703 some:0.00585108816897197 of:0.0057923061738570395 tho:0.005461414259288239 to:0.004782543205624518 that:0.004775030699729066 their:0.004669332806627895 :0.05830819755206448 +the:0.12954522819384148 of:0.10104093608604095 and:0.08328930787087935 in:0.06522837417804922 to:0.04115868142003785 for:0.0385289602711611 a:0.03593228019122017 that:0.02631307473356233 or:0.02608487912855309 In:0.021736687209981814 con-:0.01601821309817524 by:0.014968940062905505 be:0.014629646152668105 The:0.014055300877225115 any:0.013277477849090634 which:0.01299180945639195 with:0.011887365782337246 said:0.011736552955933493 from:0.011266830374400356 :0.309309454107545 +and:0.10119789434721585 the:0.08750650826269914 of:0.06965652901268303 to:0.05397231607343732 be:0.036865526523342323 was:0.035053854231348616 in:0.031304212937328754 is:0.026000336185972757 are:0.0211137244270955 were:0.018396838756921496 con-:0.017174874810272 been:0.01699376096117119 for:0.016754654309511306 com-:0.014528737373553537 much:0.013539613194676265 their:0.013377304520975603 he:0.012755370579971337 or:0.012523440083369532 not:0.012362122862064477 :0.38792238054639 +of:0.29584018869802753 in:0.07138736968112679 to:0.06097704052936717 by:0.0406597018309798 and:0.03629982531296616 from:0.0349772462385269 with:0.033269596662186963 at:0.03134203444578652 that:0.02982043992090231 for:0.025762351498502825 on:0.02257300551327402 In:0.01794647211905561 ol:0.009221829503742373 ot:0.008362055668345412 or:0.008227114626429196 as:0.007877924913960397 upon:0.005880198830390357 all:0.005563636688357868 within:0.004976015985040382 :0.2480359513330314 +to:0.11214303279208189 and:0.05111870877474963 or:0.04836106645478096 know:0.043661791969969284 in:0.03849916580495549 of:0.034064476967249235 that:0.027491745529725428 question:0.02140664280995195 see:0.019046353398009655 doubtful:0.019012516834561 is:0.016541306398930207 matter:0.015981678216322997 on:0.015103405068578695 determine:0.014037500236044689 :0.013642299437851979 at:0.01347890497768447 not:0.013424223029726606 asked:0.01185061491741717 than:0.011780806269405355 :0.4583537601120033 +of:0.07118943828660318 the:0.06737545756275079 to:0.06011912731432849 and:0.04519901467568794 was:0.04004536362316492 be:0.029316374065393048 a:0.025342697970527024 is:0.02291872397666886 for:0.021860931480936097 at:0.019977221882682163 were:0.018960495584123944 :0.01894529479179895 1:0.017871896318106543 in:0.017544272077362623 are:0.01551931255101003 on:0.014825547692884461 or:0.014310029693365334 I:0.014122338527407451 by:0.014088443799414974 :0.44946801812578313 +cents:0.20807669497463568 bushels:0.0425236309253445 a:0.035269891551804676 dollars:0.03242085570270242 cent:0.028635842838395906 the:0.0231158067651274 pounds:0.022609348418811657 feet:0.020647622804550514 $10:0.01651687635758044 $1:0.01638604526122281 half:0.014897485884611402 ten:0.013186386020667889 cent,:0.012644679965677523 two:0.012347750653865718 6:0.012142817845519314 50:0.011395699383007565 1:0.010707468905535889 six:0.010494818836940456 tons:0.010470900344527459 :0.44450937655947076 +of:0.3012532007048593 in:0.1876591664178205 to:0.12866059693124074 for:0.046018568992552675 or:0.04357341753103595 by:0.030737319049819842 at:0.0265562853711235 In:0.026170173856790272 if:0.025966343092660688 as:0.02255849130265189 that:0.022514726887018888 from:0.018395062683327683 and:0.016330275660154783 If:0.013836069017304881 than:0.012097059553609752 against:0.01048689021269875 with:0.010214671312901975 without:0.007684628493590975 before:0.007365676727626337 :0.04092137620121065 +to:0.3947321203499602 will:0.14694983523267505 can:0.06708295170783528 would:0.06684277150549411 and:0.04242100626580481 not:0.040419967517021906 must:0.034710338787829205 should:0.03405038677609424 could:0.03304446079581783 shall:0.03090407715207053 may:0.01980357871171743 or:0.014723284897618193 they:0.008326472012420365 I:0.008246163837152983 who:0.006152635410737978 we:0.005878404351288155 that:0.005652184373621212 have:0.0050063090604254516 you:0.0049826720761210605 :0.029070379178293998 +the:0.42692060175476326 a:0.14355313229049835 his:0.08144006582785243 no:0.0473477197231188 their:0.029910987952529767 and:0.029072230677321946 tho:0.02299183941332061 my:0.02013912491425715 her:0.019701286184133388 any:0.018868811839966148 all:0.017279025103757544 of:0.01488201681822332 its:0.014602221203976626 very:0.013240525255392493 with:0.011539455448501566 The:0.010234865353263796 was:0.009264340485653397 your:0.008641710303314773 is:0.00838607020122695 :0.0509839692489277 +the:0.2999442864872582 and:0.08079264214397476 The:0.05849266766981624 a:0.05563928763873356 by:0.040188235502586586 :0.029043552399496794 in:0.026226654559941286 said:0.023543317986958478 tho:0.02089425287174267 for:0.019353438556092298 A:0.01813763261009342 of:0.016177431727789737 first:0.014893419459115475 that:0.01473134135407147 to:0.013065429404362634 In:0.0119957515362558 tbe:0.011339329363670676 which:0.010300670917192367 with:0.009255987356855252 :0.22498467045399229 +it:0.15590291243815246 there:0.0887784025092866 It:0.07904016205387611 which:0.06936908824431676 they:0.05362226352982171 that:0.04647101454662571 and:0.04420120519214072 he:0.027952982163116303 There:0.027623278151575524 mortgage:0.023443129896555264 you:0.018859539766003214 who:0.017891862574647276 this:0.014117846301193209 I:0.01363040583752058 sale:0.011818751696880098 This:0.010767348085132659 work:0.010306262168963347 as:0.009927627839447666 They:0.008978002990569422 :0.26629791401417535 +sum:0.03352282876311118 number:0.028116684882597106 line:0.019995206059833036 city:0.01946514558931857 out:0.019275318828420953 day:0.01666865340772654 county:0.014872697538657208 amount:0.013254184849875051 Board:0.01252325449624941 town:0.012449555905674143 side:0.011663975251122375 part:0.011517157473718155 County:0.011460540331966697 state:0.011087331502382173 City:0.010878919191854432 purpose:0.01081028255427907 and:0.010297866493795984 way:0.009848747943663767 name:0.009522170936943183 :0.711769477998811 +the:0.1639865528869938 and:0.10234765038729775 of:0.08879657508152633 that:0.025880153854721248 The:0.025433382403492334 a:0.024370551082713656 or:0.01634393227514616 I:0.016181441943630876 in:0.015099075455698116 his:0.015053584421981892 to:0.014011465430673109 these:0.013075652071503832 as:0.012218349609237872 their:0.010994029209686902 tho:0.010839986628587447 which:0.010352552452324287 he:0.009660440328970435 :0.009506122633480924 would:0.009460653077096268 :0.40538784876523676 +be:0.25055977911521427 was:0.13424798492549636 been:0.09801121353491611 were:0.0916222185773913 are:0.07185420706518421 and:0.04716514003831155 is:0.04331221222648743 being:0.03391819387902217 he:0.023015813659020765 have:0.02077855925052466 bo:0.015454923672745152 had:0.01492531716827204 so:0.009876299675084072 ever:0.009225494511719596 has:0.008384965301341304 Is:0.00823628424494897 I:0.007682081420941778 as:0.007582116204754492 they:0.007019008078344838 :0.09612818745027889 +of:0.229808495978243 to:0.1470076418012011 by:0.107051472476224 and:0.0644340051873596 in:0.05943456001489165 at:0.03487426486904874 from:0.026735824337448682 for:0.024904319436622406 that:0.01947538856301223 with:0.018862495602402232 In:0.018043038155501675 :0.016371247702693794 as:0.013236916987392223 on:0.012829343570599247 which:0.011212576981491305 said:0.0074289426286741666 about:0.006957388246447208 upon:0.005853012097920672 when:0.004689007419560978 :0.1697900579432651 +be:0.15231603343587072 not:0.12454552100066694 was:0.07384934634024015 and:0.061679729259595806 I:0.05314575937739971 been:0.04484019737958138 is:0.039841775306237434 are:0.03917704062268227 he:0.0328074258643763 were:0.029588182983335765 have:0.02161444370392827 they:0.02061593042826564 you:0.01715016994206476 had:0.01701303815120648 or:0.016904803201610065 has:0.016196204472590122 being:0.013761153646338557 hereby:0.01347124506272543 well:0.013331489538859466 :0.19715051028242472 +to:0.12022893700269083 and:0.09020394424291768 the:0.08587503820055309 of:0.06450042443224316 in:0.0310058468700829 a:0.017742048521183405 :0.015548046036689871 not:0.01491307651316237 that:0.014112408707955496 for:0.013734482372212283 I:0.013065769926808477 will:0.012848502316304782 at:0.012837991177321897 In:0.012628718855091186 by:0.012491091048660757 be:0.011425930130217754 is:0.0113962101007567 he:0.011342727513475473 or:0.01112522537451577 :0.4219735806571561 +in:0.14048713722096412 for:0.12045306486651125 of:0.1150959154773748 within:0.061090158043955345 and:0.05346109170384797 only:0.04877263632788032 In:0.04433449219687606 with:0.037160146048207214 is:0.0315421892589043 but:0.029830979859766554 by:0.028968633883732185 to:0.025999925223267443 was:0.02505070588261269 after:0.022494641765410772 that:0.022285961534963723 as:0.01690029607373616 from:0.014222657035431458 or:0.013178995054789719 made:0.012188942064310933 :0.13548143047745698 +;:0.02145494749130869 mortgage:0.017556809137559196 Mr.:0.011935484395170929 street:0.009898945846815436 mortgage,:0.00960219144294401 contained,:0.007966654675810815 ,:0.007893310235101602 feet:0.006715483446504837 one:0.006211518489176202 hundred:0.006087444892012141 street,:0.0058141537814087015 1913,:0.005772779023929386 and:0.0056279208669624565 east:0.005413781913084572 up:0.005285543321574482 .:0.005152791423392798 .,:0.005130221362009432 wife:0.004851959905080687 quarter:0.004776482291924574 :0.845851576058229 +the:0.16338638971179179 of:0.08873826761570892 and:0.08791459236654946 to:0.04885425931644899 a:0.0329904232589465 or:0.02377051767525507 in:0.023713210397727866 be:0.02092370075389531 for:0.020501167790737806 their:0.016108260902096085 that:0.014128497895709816 is:0.014110945377794998 not:0.013958166729630572 as:0.013683846011481057 was:0.013188794887106774 tho:0.01118551057612064 Mr.:0.010997788122948927 his:0.010786215411016318 by:0.010773009632788563 :0.3592864355662445 +Mr.:0.23285045342051353 Dr.:0.06370279910866054 .:0.05840717159151738 C.:0.05198453104025107 John:0.050246355098172005 Mrs.:0.04838998395238986 J.:0.04001893773963662 H.:0.038192497911093734 M.:0.038048251087180324 A.:0.03798458042879065 Senator:0.03414566228766698 L.:0.03306722493007956 B.:0.029108316641085204 W.:0.025907776937236456 S.:0.025083057742339834 F.:0.02296674066317426 P.:0.017906506362233045 Charles:0.01735949089471131 William:0.016996932428302046 :0.11663272973496558 +and:0.21912857797141996 that:0.12612960372662618 as:0.09741335600300842 but:0.0412915095351797 even:0.037094035169566664 And:0.02620564510440045 or:0.023466409296357082 But:0.022118025687574577 see:0.02169483661620632 ;:0.0127932422353468 and,:0.012772737420970863 know:0.010709127131252688 Even:0.010049673725760938 that,:0.009609381980062498 asked:0.008178627448094342 or,:0.007415157645841991 which:0.00704121033615635 doubtful:0.006910235158049905 cause,:0.006626540591359064 :0.2923520672167652 +of:0.08785352970863211 and:0.06972378876633922 to:0.06062428622992434 was:0.0595448660920216 in:0.05651586741260432 as:0.0548395421876483 is:0.05311291076980802 at:0.05207679523606382 on:0.04353617256496498 with:0.03832678552848098 by:0.03562060143593828 for:0.02963620106000964 made:0.025832911752721895 be:0.02547825001751957 that:0.022636671122595913 such:0.022097369394226643 from:0.020244220737455573 In:0.011691534079535795 after:0.011615441776880273 :0.2179922541266287 +and:0.08995317707915026 to:0.06844710404109794 of:0.04605142056172993 the:0.04074574508561307 which:0.02479116931334353 that:0.023764822140213245 re-:0.020841117231308055 in:0.020803825395358622 for:0.020278423301550053 :0.018417753428486977 not:0.016860793136637672 con-:0.016444405871234195 is:0.014386481772210856 or:0.014080680914153714 be-:0.01352268143271276 I:0.01317002660943805 was:0.011429878269381662 dis-:0.011196807025842847 he:0.01113106290024311 :0.5026826244902934 +the:0.1454500361787387 of:0.1080247151493501 to:0.04516715868785427 boy.:0.036249098323069925 and:0.03403580073245388 girl.:0.032660326140049385 a:0.03171979252021135 in:0.02714044436566853 for:0.02365213940166824 be:0.021942286684630472 their:0.021087116084698817 his:0.019774122064073623 was:0.014637031197642503 with:0.014008395154201525 are:0.012730720509515858 is:0.011363112041341867 as:0.011357870543086747 from:0.01063391638067422 were:0.010589399829418696 :0.3667765180116513 +the:0.4114971265917158 a:0.0924381882359832 The:0.08075463889766786 protective:0.056829674314692186 of:0.054331240236250175 that:0.03280820490522921 tho:0.02328765407404724 his:0.022530050350874513 new:0.019392327852611906 and:0.019370637654112136 this:0.016143175616167522 our:0.012486857355294072 tbe:0.008469744092018724 her:0.008437909675606228 old:0.00782813548768688 their:0.007645306433118136 present:0.007529691453307578 other:0.007476864749896298 my:0.006705460198021111 :0.10303711182569925 +they:0.1339461974459378 who:0.06449150759567976 there:0.05964669119660761 we:0.0585849824831157 which:0.04520706527438132 and:0.04286863407622332 you:0.03913729104764804 There:0.03396718801066769 They:0.03209640169845594 that:0.031200974702725145 men:0.019845671685432692 We:0.019418999595623168 people:0.013692363921183908 as:0.010974793792506123 them:0.008386153753557493 these:0.008192396320777473 You:0.006556364269777689 These:0.006145955695672415 but:0.0058114506320729896 :0.3588289168019537 +of:0.24771856616623836 to:0.10055514755145552 in:0.09984480279807748 and:0.05814117240642057 with:0.05158849496637837 for:0.04613065771486411 on:0.044432355864291194 by:0.03519649785437645 from:0.03338388255327628 at:0.03070401576666744 that:0.026848878623973782 In:0.02041195271981872 upon:0.015248471773457326 as:0.011599582931726849 all:0.011326016994932605 or:0.008867228292995478 up:0.008407673252508876 over:0.007381477118522736 into:0.006992770039889695 :0.13422035461012818 +and:0.09109663000652922 was:0.07066208593146533 is:0.05834581864120032 be:0.03991676883173516 succeeded:0.0397511976014322 are:0.035004602530245094 made:0.0244215372916235 that:0.023078953635041217 were:0.022404853704896522 been:0.02059108779180297 now:0.02018536297022615 it:0.02010725690039166 them:0.019302865914865887 him:0.01840359705437232 engaged:0.018042637010575634 but:0.017735364352383275 found:0.017458246474402115 or:0.015935481589947932 up:0.015412403775332623 :0.4111432479915309 +on:0.1464182413893912 his:0.0891559292773496 a:0.08837596380167675 to:0.08428800427744418 the:0.06835833311922859 in:0.06688823132507676 of:0.06020500223004615 other:0.048122551988273185 my:0.0411468611959247 one:0.031305088302605984 right:0.029266935526538727 her:0.028601805190301612 or:0.02675373943049254 left:0.024185519049565583 and:0.023084169610054116 their:0.019670911925532227 that:0.018985881172314062 this:0.015025758720453116 In:0.014470078223799561 :0.07469099424393133 +one:0.1028303141280697 part:0.05963429477052991 out:0.04766456937681193 some:0.031418679026461914 members:0.030764490253327767 side:0.029940657362655835 portion:0.022063658796890564 office:0.020457735219956013 member:0.019726706386316174 end:0.019666887540649894 tion:0.018667441728710307 parts:0.016814747270460957 people:0.014112771422418794 all:0.014072739582212475 any:0.013183573287639892 One:0.013083578354183906 that:0.013024335602903442 account:0.012482348155001894 many:0.012077825070275192 :0.48731264666452345 +feet:0.062305778471688486 number:0.04495966487230813 line:0.04438019387104945 out:0.036169892321964686 day:0.03461885732580883 city:0.03422563186921082 one:0.028055714572052925 cost:0.021794251371443148 amount:0.021227342129770087 matter:0.020808680868760508 place:0.019742461844831728 kind:0.01810540599178399 quarter:0.017726566246477577 county:0.017451557911880657 state:0.015823005826146982 town:0.015431271445778981 course:0.014500084902946908 County:0.01404802627974987 plenty:0.013892086130226631 :0.5037335257461196 +said:0.1380451602116429 the:0.11297936005712629 this:0.034343753795264206 a:0.0245905082047395 and:0.023243549649741194 Lake:0.012192976727475007 each:0.01038942495449336 of:0.009011295296381719 any:0.007328577164897384 certain:0.006620315326778114 large:0.006488218513588936 State:0.006258330224530148 Fairfax:0.006235072606618227 Jefferson:0.005931442088841483 Washington:0.0057077412104139715 York:0.005288013141498352 that:0.005010715173826684 tho:0.004763032771848259 Storey:0.004044938028340821 :0.5705275748519535 +the:0.10320354228116865 of:0.10122689874666971 Mr.:0.061107662359530426 and:0.059805988035550844 in:0.03506103887086999 Mrs.:0.027758339362906583 The:0.02525576492389059 to:0.024324593697017224 Miss:0.02253960334828504 that:0.01750847777934154 :0.015993933848251558 for:0.012554574613995107 In:0.010637019556256259 which:0.010586410973340787 his:0.010117215716361476 a:0.009808104623529323 .:0.009721513378360804 be:0.009041595034806003 he:0.009021328998702734 :0.42372639385116534 +be:0.09219781012473957 He:0.0902910398626374 is:0.0893779833078494 and:0.08331036946294472 was:0.08300844521315898 he:0.08056866353037301 also:0.034504922106119634 so:0.03136551593625389 been:0.02897810691745119 have:0.020896477856335843 who:0.01867527406180522 had:0.018197539587103878 Is:0.017546653826958504 hereby:0.017308317899562158 has:0.015165528125876494 I:0.014615771281115039 as:0.013032671538293397 further:0.012634416094045616 it:0.011157198379797471 :0.22616729488757856 +and:0.09952769737424365 was:0.0682710179289271 nothing:0.049837358685677825 is:0.04876040450715247 of:0.048641193212254456 talk:0.03505581490676865 anything:0.033026204461503346 bring:0.031937660063070326 brought:0.029618235428379783 know:0.029335425119130246 thing:0.02657048830590504 me:0.025540761408787922 talking:0.025109944522337797 in:0.024689546815973466 it:0.024411546434011392 much:0.023309248606071333 just:0.021598594193244863 him:0.021002924804710246 something:0.02073259068105701 :0.31202334254079306 +of:0.22933670119358732 in:0.10442071507766257 to:0.09870975621880296 and:0.05792484674130849 that:0.05699428386381208 with:0.05541622687787347 for:0.054215870381105896 by:0.04707970056489793 all:0.029043257661688783 on:0.026084337180924077 from:0.02460917582806484 In:0.023176026555924652 under:0.022490348211247665 as:0.019559725021249343 upon:0.016542259675492697 at:0.014776187100177786 is:0.01351941782796262 into:0.012799155833928629 when:0.009566799001058862 :0.08273520918322935 +of:0.29379908895996193 that:0.12689184865853317 in:0.09083780312727871 to:0.05516669419171383 and:0.044645146537032235 by:0.04312255752819978 In:0.026651660499901995 on:0.02599834448763788 from:0.02276195990604283 but:0.02246182399384019 with:0.020053870322318382 for:0.019710708998940025 at:0.018889344904562913 which:0.014441804854806773 If:0.014332630338057236 under:0.014286696036032383 if:0.012487421148516847 when:0.01072708912007128 upon:0.010507075260089642 :0.11122643112646197 +the:0.20034839761297477 of:0.12827091246989572 to:0.12401430725701314 his:0.06756940994968373 and:0.04991985624501648 in:0.036721108348982956 a:0.03539979560118039 with:0.03253571334045186 their:0.03056120473548166 by:0.02277013032036714 at:0.02057208471860037 for:0.019581794864885375 her:0.01950934927986932 The:0.014411918158836724 from:0.014327622877169276 all:0.01174781664394598 its:0.01153930259174206 tho:0.011357817548234048 said:0.010736235144508027 :0.13710522229116096 +of:0.08364283666122668 the:0.07689330299105152 and:0.07598016131839763 .:0.02784574117422789 Miss:0.02555941212561111 Mrs.:0.02317526276757647 Mr.:0.020679310482902138 to:0.019948708581113053 :0.01670507204911823 by:0.0162926476864705 at:0.014130254593363329 a:0.013848640505714013 his:0.010626597651843397 The:0.010535361606239711 John:0.009012180639810382 with:0.008762550991402891 W.:0.008639774291739571 said:0.008492664821531255 for:0.008206814954180046 :0.5200227041064802 +of:0.29223536820956036 on:0.15036681507951996 in:0.10832353105144817 to:0.07004969810779939 that:0.047073902182438586 by:0.04087763684056849 and:0.036092865529045476 In:0.025188574788478073 from:0.021412300066950805 as:0.019515759395713643 for:0.019246656173843062 with:0.016120976482677362 upon:0.014647039136726563 along:0.014524339214942944 over:0.011073533082393656 when:0.0105598488258158 into:0.010423213287697736 which:0.009666299341447707 all:0.009563256350812798 :0.07203838685211943 +and:0.15340948260294762 he:0.13807171030116785 who:0.09384500824579824 He:0.0845707717952812 have:0.07415805555301702 has:0.053927384059571974 had:0.04083356520969267 be:0.036782300782220376 I:0.03151624949592481 she:0.03151368443153317 hereby:0.027488724149230818 they:0.018948330741824875 which:0.018430877221718982 it:0.018401668306659975 It:0.017068327108092442 also:0.016976429573886228 is:0.011616450437265249 She:0.010388182596085118 was:0.010330316067685388 :0.11072248132039599 +It:0.22709253986456285 it:0.17490767087505776 he:0.04172468869716826 which:0.038621301188078785 and:0.023981962869786155 that:0.019506275459149174 This:0.01643853789448525 who:0.01531097051958916 He:0.01363343410407682 there:0.013436965320214593 what:0.013077799170932542 I:0.011978248333994322 she:0.010534539019956926 this:0.007674235315599262 as:0.006973234643928574 work:0.006262891703658217 but:0.0062617153024308765 :0.006209281349305857 time:0.005835564202299094 :0.3395381441657255 +the:0.14313247119197176 of:0.09657819172074324 on:0.07752669647934379 a:0.07603659825239198 to:0.048203975021880056 and:0.04131463750731218 in:0.03622087107524326 an:0.020117095423491535 or:0.019982310720703843 that:0.019953748630209957 at:0.017948608924837992 for:0.013783073356247172 from:0.012279988709309892 by:0.011345667854446732 In:0.010583508213425127 as:0.00947387223365684 which:0.009385419820730507 :0.009298497630144835 was:0.00879894917014299 :0.31703581806376635 +was:0.2421221727600157 be:0.2194835942992867 been:0.08311304218559973 is:0.07038267611454192 were:0.06576895173077282 are:0.03751739538372175 and:0.03547296841665548 being:0.028272927277534957 had:0.028247336245733102 have:0.02772592176384256 has:0.02342161193384958 bo:0.01455199848282885 not:0.013214622077057684 Is:0.011078084762176818 he:0.009249188739803954 then:0.006912440986204906 it:0.006026490133323182 so:0.006017646775799409 waa:0.0043189995536283485 :0.06610193037762252 +be:0.16768225159498878 and:0.11010666230253947 was:0.08734515638408899 is:0.057980478356053786 were:0.04812260540241611 are:0.04747853260256234 been:0.03798834436665353 the:0.03693981454467199 he:0.033845150225694814 being:0.02192273745973203 have:0.016154788629812712 had:0.015263476610691813 not:0.013559391789771176 bo:0.012681113312215574 it:0.011407648412203366 well:0.010980374199585538 He:0.009480227763557067 but:0.008415825643613706 I:0.008017761267449176 :0.24362765913169804 +of:0.09129790931378902 the:0.07369883040827747 and:0.047842263382354346 in:0.04189055351593407 to:0.04045875475680249 a:0.03542341257202578 be:0.02020462051672066 for:0.01979292654746225 was:0.01760256398103379 at:0.017380150555488715 is:0.014984483003968216 with:0.014047653760730413 by:0.01374644383819499 :0.012670486581795598 In:0.01200961464556976 or:0.011563835749786333 from:0.011391516893522809 are:0.011273104484969465 that:0.010755276030689069 :0.4809655994608848 +the:0.17027190784407714 of:0.10585557835912704 and:0.07355927771906935 to:0.05486905984958157 a:0.04543746377447453 in:0.03128555052933153 be:0.028704485173100775 was:0.02350529800142253 is:0.02215549335554494 for:0.02077556258358175 his:0.01804639098945333 or:0.016335100594594944 their:0.015847999621030492 at:0.015526727957625254 been:0.011815834631173878 are:0.01139058447814694 this:0.010362020528084328 tho:0.01035635773045807 its:0.01000473355720393 :0.30289457272291764 +the:0.5603780379935233 The:0.05772261729065546 an:0.04935201285867741 no:0.048287940996794655 tho:0.03158450371587617 any:0.02379335262537902 a:0.02278882152072504 said:0.019426467378179848 and:0.015583026311528718 prompt:0.015376323542465093 this:0.013885172338855433 of:0.012458470212750232 by:0.011452924449383698 tbe:0.010862067511926188 in:0.008367077215503912 that:0.008262490721229913 immediate:0.006708174457867867 or:0.006437086848685902 on:0.006338446692449637 :0.0699349853175426 +of:0.09129790931378902 the:0.07369883040827747 and:0.047842263382354346 in:0.04189055351593407 to:0.04045875475680249 a:0.03542341257202578 be:0.02020462051672066 for:0.01979292654746225 was:0.01760256398103379 at:0.017380150555488715 is:0.014984483003968216 with:0.014047653760730413 by:0.01374644383819499 :0.012670486581795598 In:0.01200961464556976 or:0.011563835749786333 from:0.011391516893522809 are:0.011273104484969465 that:0.010755276030689069 :0.4809655994608848 +of:0.359759353982294 to:0.10104533274688526 and:0.07014142105181598 in:0.06198331437018771 for:0.048261877178732926 that:0.04166737527886247 with:0.038373432299932425 by:0.03769031041273784 on:0.03400185772366774 from:0.03336948990424232 as:0.020087937222965094 upon:0.01697507016189438 or:0.009921183574593144 at:0.009713766627287556 In:0.008412939870363843 when:0.008024591637705775 all:0.007690016842260238 over:0.007104754105339534 into:0.006798661961964561 :0.07797731304626719 +of:0.09129790931378902 the:0.07369883040827747 and:0.047842263382354346 in:0.04189055351593407 to:0.04045875475680249 a:0.03542341257202578 be:0.02020462051672066 for:0.01979292654746225 was:0.01760256398103379 at:0.017380150555488715 is:0.014984483003968216 with:0.014047653760730413 by:0.01374644383819499 :0.012670486581795598 In:0.01200961464556976 or:0.011563835749786333 from:0.011391516893522809 are:0.011273104484969465 that:0.010755276030689069 :0.4809655994608848 +to:0.09819029201685874 and:0.08744917205719013 of:0.05551876875637923 be:0.049711740153525426 the:0.04234283901496628 was:0.0412376597413129 is:0.03488686573973154 for:0.03381300946381889 in:0.031322632039364556 not:0.028930509086159337 are:0.021270593649901748 or:0.020290098219412838 I:0.01802874600515374 were:0.017958776501552275 been:0.01715155307897541 will:0.01645526719220028 have:0.016347862060537083 he:0.014151859322840903 with:0.014054024730918078 :0.3398877311692006 +the:0.21710928137942423 of:0.09598811061219507 and:0.09527248824614219 The:0.06484816256534764 that:0.023252074393290727 his:0.015731179187244974 tho:0.01397667239395606 these:0.013008250369004179 to:0.01296689331426111 a:0.011135971876279129 in:0.011059229793953134 their:0.010261710428640112 or:0.01021156795511136 Mr.:0.00991081005921989 :0.009455568868739087 as:0.009350082510582027 for:0.00886619398955121 two:0.007991115431686206 if:0.007970823201582527 :0.3506338134237892 +and:0.1417157418003202 so:0.06755684882674218 fact:0.05707173571703629 said:0.04486723127003565 know:0.04457473274659093 say:0.04048471673355019 is:0.029279944568814904 but:0.02438556998593403 believe:0.02348236877231084 stated:0.019305661733568756 all:0.019217712097723813 me:0.019031297091898075 him:0.0175758659888339 order:0.014998765855170048 see:0.01489256018742656 feel:0.014720541888046773 think:0.014424977241856658 was:0.01431732896568077 says:0.013992258106505139 :0.3631041404219543 +the:0.13774949706606668 of:0.0812718080634184 and:0.07749425880548916 a:0.056934194196712265 to:0.04594720158968131 be:0.03612138622205046 was:0.03090058817126644 in:0.026914651383706096 is:0.023285637826217728 are:0.018149640024938157 been:0.015815734123857197 his:0.015806167283614135 or:0.014744707806653653 for:0.012245201579733484 their:0.012053891506850102 were:0.011643163220983934 Mr.:0.010547565938993829 it:0.009924996351954679 from:0.009357823977312154 :0.35209188486050014 +and:0.044638278213916575 was:0.03988514921928145 is:0.02419100430382174 it:0.021512663142123432 be:0.016966945080725503 that:0.016844252747360986 made:0.01548059721537644 him:0.012596498368296172 up:0.012397186438280434 as:0.012369091577449578 were:0.011773265350778338 :0.010817716759490077 done:0.010390346614376503 out:0.010038388780871496 her:0.00994937141803034 returned:0.00992832914053569 are:0.009870415294786026 taken:0.009279819574816708 known:0.008876179429505787 :0.6911945013301767 +the:0.2508645880208642 of:0.11755278853353762 their:0.06201616881699056 a:0.05058615269766821 his:0.04528797413444405 and:0.03959146432557413 great:0.030353400412409796 no:0.02788988933795632 in:0.026547812615807496 its:0.025762826250726633 with:0.023592529711858153 any:0.023286275046135257 rapid:0.021521032945109538 good:0.021381319370004953 to:0.016916435644285344 tho:0.01677630423773082 from:0.016179194679019314 other:0.015853431389225712 our:0.014925043586570272 :0.1521153682440816 +and:0.10799541184552887 is:0.03985400072487149 be:0.03706787565211551 served:0.031985297661073726 that:0.03152057215197113 time:0.02792188259079336 was:0.027530800509016996 or:0.02722861640376396 now:0.023718939218851477 are:0.02170577194352965 made:0.021455840389263767 it:0.01906992874817851 him:0.01755804988964881 property:0.01755265059690988 embraced:0.016961873450828616 included:0.01664869571791473 not:0.016361891814034375 office:0.015108403526755246 but:0.015062322935616585 :0.4666911742293333 +the:0.818914738036614 a:0.034979048834945445 The:0.0327649171504731 tho:0.03206931561175512 tbe:0.012684433286097203 and:0.00477446227383804 final:0.0046501988056554516 great:0.00453172650339781 his:0.004275665858321901 this:0.00403953235224617 with:0.00352538798695532 an:0.003451834107460698 of:0.0034402234750893707 in:0.003175723779379178 by:0.0028128643849937357 full:0.0028128135539600917 no:0.002791453804098185 personal:0.002686645707971089 their:0.002574596525029643 :0.018044417961718406 +the:0.09777078585636206 of:0.07081433100622911 to:0.04559270892947347 and:0.04368018182366854 .:0.03913575466544439 Mr.:0.03645808166343487 a:0.03211783440461773 in:0.02565084019744012 at:0.01775941322943709 his:0.0172171789247959 was:0.0163320836097233 Mrs.:0.016213759057880504 be:0.012438624372100597 H.:0.012297386381579827 :0.011348365562069659 A.:0.010859595947677065 by:0.01012885831062819 W.:0.009987266272602649 In:0.009898957211702395 :0.46329799257313253 +the:0.18711292935720514 a:0.11342746667056415 of:0.09622927265735429 in:0.07170647156493297 on:0.045892451588308465 other:0.037177759103621096 his:0.03377578347530117 and:0.027087655944096133 school:0.022651092129280216 one:0.020687844171937583 this:0.01698932997693675 tho:0.015812448258903544 said:0.015191358682161192 for:0.01421051881185128 any:0.013486228965615386 every:0.011221768289992055 In:0.011175282568440723 by:0.010955971296672305 their:0.01081204166450144 :0.22339632482232413 +of:0.13226139294363082 and:0.08819657205777541 to:0.07614043281900981 is:0.07310022239457957 with:0.07071706798113768 as:0.05942277195285196 was:0.053819584012923555 by:0.04862255746270526 that:0.042185736340703425 for:0.040364901703218575 be:0.02754557998506502 in:0.025512538465420145 such:0.02166208508907617 at:0.019366311063691685 from:0.018209938023179432 made:0.01563848645406745 like:0.015190880494536284 but:0.01393364595197839 make:0.013724991724686676 :0.1433843030797627 +and:0.11096950704919077 of:0.08863565218277956 as:0.06996324927489929 that:0.050786136703344247 to:0.04865126555775839 with:0.04792439187978601 for:0.04541450233124138 but:0.040667921457174454 make:0.03443161305428907 keep:0.02998405566451968 on:0.025331511155036325 put:0.02497474819585598 upon:0.02171398724975496 from:0.020060879491059544 get:0.020007515559007955 take:0.01964540408007727 by:0.01939702247510163 in:0.018260736658736725 which:0.01824631177658264 :0.24393358820380412 +the:0.5701883298756871 and:0.08004473633145245 a:0.054707222159266336 The:0.04013905882786375 tho:0.02479509341848982 this:0.016354119609396357 or:0.015204933574110227 any:0.012278745171097649 by:0.011108379842190088 of:0.010277787963974414 tbe:0.009938154297902856 in:0.009418476758419649 such:0.008156560197762753 that:0.007820562214247463 as:0.0077815526869678105 no:0.007024390695753204 first:0.006926546591233641 great:0.005872104391479497 their:0.004798033673811568 :0.09616521171889335 +to:0.24502576271189921 the:0.17657434672869396 will:0.09035399183462803 would:0.07559596704615802 and:0.046029721133120094 a:0.044722804540445464 may:0.03465028296040797 not:0.029864469695769832 can:0.022397840195129665 could:0.0215364958524868 might:0.02070709540976821 must:0.01752309509031173 The:0.016339491409451262 should:0.013449574102322701 shall:0.012914458938666586 that:0.010516465013090602 or:0.009895242621470415 his:0.009655172661545003 all:0.008744574944623105 :0.09250314711001134 +the:0.3800765101072846 a:0.20799874907659663 of:0.075364417436357 tho:0.022714990467779937 and:0.022577867715810006 The:0.020494424680940725 said:0.014285235330020218 A:0.01193933115897103 tbe:0.008830122291682618 new:0.007826390384281075 by:0.007687614477914748 this:0.007619772315595221 his:0.0069409596695335024 our:0.006801852522267824 for:0.006673385345106155 that:0.006540535173723794 other:0.006478075828523736 in:0.006279923008383538 with:0.00606185852305787 :0.1658079844861698 +the:0.2584611403588303 and:0.08267461579209795 of:0.08230206344355961 The:0.05505473540094725 that:0.03126384114206739 his:0.029099445169717058 a:0.02043368330193318 their:0.01978841947049446 said:0.018163420585136696 these:0.017690293449823497 tho:0.013811078785008278 new:0.012439775651440051 or:0.0120986099277624 good:0.011860041412639096 an:0.01184519284527672 our:0.01091336224030187 such:0.010518551296080394 to:0.009864570541664864 two:0.009397116120101506 :0.28132004306511754 +for:0.38210224079217836 at:0.08121813912951092 For:0.06241966145603969 and:0.05848030536578559 of:0.04673886710630404 in:0.04153713073780201 that:0.03764107373187152 to:0.02890972684335925 by:0.022037846190620526 time:0.019411082708744514 was:0.016305954055333364 have:0.015249418290832454 until:0.01510245545083156 In:0.01464424094593195 spent:0.013998747977633546 is:0.013341749869437496 By:0.01270170382115274 or:0.012352785763592975 from:0.011916605840383898 :0.09289026392265355 +it:0.12646345559141328 which:0.06874049228939834 and:0.0656467730514304 It:0.055899354080079296 there:0.04819894680944666 they:0.03712179471058455 who:0.02815526182575708 we:0.02681863422926571 that:0.025159511562839045 thereof:0.024851973400234234 as:0.02428947294515817 same:0.020568888037149836 he:0.02001322537743491 election:0.019553934975150428 person:0.019134845881448644 act:0.018245867186635015 I:0.01822575051588607 bonds:0.0165852660779681 or:0.016416112573120735 :0.31891043887959947 +to:0.30084653983457776 of:0.07046840331839768 a:0.06198647235643132 and:0.05989720881057751 the:0.041955145454661294 who:0.03459451306359664 not:0.032761317555989045 I:0.032669292740287126 will:0.0290266801617178 they:0.025106242075440488 for:0.02074926174867804 we:0.019569280155386993 that:0.019458681768235505 with:0.016206372434058775 would:0.01609228192224293 which:0.015890535082735628 or:0.013449686558269305 may:0.013183119653814848 you:0.012310864885670368 :0.16277810041923094 +:0.040003530448129425 it.:0.012623566789350152 .:0.012169118866635178 St.:0.011422221709514846 of:0.010350188106098416 years.:0.009300288471553049 him.:0.008908067892139923 and:0.008424748254264567 them.:0.007837220313260933 year.:0.006304999245935296 day.:0.006137654332440135 county.:0.005109173848064641 feet:0.004701473079730837 city.:0.004548772006227762 time.:0.004541615533064026 two:0.004232625482298829 acre.:0.004215657652912696 here.:0.004207828896627364 the:0.004090774296052332 :0.8298704747756996 +be:0.14516578131550617 was:0.08063665992427906 is:0.07486540229473429 and:0.06297866991539078 are:0.06173207207611773 the:0.052017622329203796 he:0.04438552137006651 been:0.04296743876995988 were:0.036729345761194056 it:0.033174306916449924 have:0.01624820026997627 bo:0.014306685014116537 or:0.013863639071584746 that:0.013491476910525185 Is:0.01282376398157225 a:0.01233808369241405 I:0.012077495707377034 as:0.011546840156329619 being:0.01007950576655762 :0.24757148875664448 +matter:0.055864178343118326 number:0.05369061028704779 amount:0.05155370181365554 out:0.03774569896147752 line:0.028422247082374646 kind:0.025959936000954635 sort:0.024366868609753012 purpose:0.022263765207435105 lack:0.02131276768008925 right:0.018706950030345084 kinds:0.018537893435448274 cost:0.01771263499653882 state:0.017654773538684585 deal:0.016970221825664232 means:0.01695915522390557 cause:0.01688378401224547 way:0.01682600455814456 piece:0.016814533795030215 use:0.016495482572944746 :0.5042587920251427 +men:0.2316632574957538 those:0.1150940093628955 man:0.07190358068624189 and:0.03618760296959667 people:0.03508072692307895 one:0.025033493606662696 women:0.023086731023531832 woman:0.018515925708447973 all:0.018421444060192065 persons:0.0169365383958707 Those:0.0142350844292118 friends:0.013155335599770076 others:0.011187000420202594 person:0.010790223462429627 girl:0.009546830864911988 men,:0.007408031676831661 man,:0.00649510017493944 ladies:0.006043840543501844 I:0.005798198164265329 :0.3224170444316635 +:0.0687246338703117 and:0.016562555944730297 .:0.010005045460809043 follows::0.008598090398525193 of:0.007566041476679609 the:0.005467025025427606 to-wit::0.003992322182221165 to:0.0037918594224210338 in:0.00281202905717598 wit::0.00268486554665904 ::0.0024307020739116913 at:0.001956730490356426 lot:0.0019545363485604407 OF:0.0018983170182103057 that:0.0018492386411304946 it.:0.001681586445832594 beginning.:0.0015445582740427166 thereof.:0.0014661755299014917 w:0.0012527918002238738 :0.8527608949928693 +more:0.21654065085661484 the:0.15355284683914475 less:0.12134442442319038 of:0.08887268727483516 an:0.06838714432531544 greater:0.05276994754662136 better:0.034561595484025626 and:0.03367015472776294 in:0.028758535803151502 for:0.022195531362291562 no:0.015266131387149716 larger:0.014305688339290277 their:0.013684685644910995 or:0.01298805296564617 a:0.011155883187184778 to:0.010231957128454452 this:0.009656251355830613 any:0.009411039511282327 that:0.008584627632427323 :0.07306216420486983 +in:0.3434415332372969 of:0.14793384199295295 New:0.10171421580758924 In:0.09024105142186381 to:0.05203985721872919 and:0.03378040003687562 from:0.032613852599491844 with:0.023434465780782142 by:0.019174211365208502 for:0.012967601945825209 the:0.010733473070037549 on:0.009985829085668332 into:0.00776511007578425 iu:0.005405449121353927 upon:0.003846118581306677 :0.003755973427550607 is:0.0037397157955429586 or:0.0037332482785475663 are:0.0035962920504263043 :0.08909775910716639 +the:0.1945045675209859 a:0.09540735232003301 of:0.05477068025979417 and:0.050670010734222545 to:0.03229408095006564 The:0.02427395071558942 that:0.02252090407118924 in:0.01983221581810479 by:0.01602426005107897 an:0.013200040641234114 with:0.01194715025016433 no:0.011005212991760736 as:0.010786276532137642 or:0.010580359480070722 :0.010332057756054168 tho:0.010263122507564322 for:0.00997133287205845 any:0.008283673591633792 his:0.008007886342314583 :0.38432486459394344 +person:0.09827921760660123 more:0.07780562348691118 one:0.03228903136776392 two:0.01976813263385662 owner:0.01722380099580982 day:0.01608565280727025 law:0.015514258667188063 three:0.012146923920704444 piece:0.011887747183866508 action:0.011593904175195216 state:0.011512926290464602 year:0.010526888407133167 five:0.009858949979702894 man:0.009838061281513405 tion:0.00875756162814644 ten:0.008689533649922648 on:0.008465472463630948 public:0.007852312895660086 form:0.00750035780298026 :0.6034036427556783 +the:0.22286236303748205 and:0.14199654101467934 of:0.10035419805513139 an:0.07332145829751202 in:0.037010850524245846 a:0.028548422500462304 his:0.026184473690786084 The:0.019919534858885177 county:0.015779604917394413 as:0.013578063340554275 or:0.010436669308021122 for:0.009829511362087595 with:0.009203261968885908 tho:0.00906877710313867 its:0.00901807837081273 one:0.00878273113676548 by:0.008336348782398114 their:0.007884892894768387 this:0.00776558470845103 :0.23911863412753803 +the:0.22232459741383537 a:0.1185396322661295 of:0.06563814238932328 and:0.0539903156012303 at:0.041898292028845645 an:0.03272066885710775 in:0.03237007007520076 on:0.020604789753032864 to:0.019380470008293373 The:0.019044919387155874 his:0.01653107523923516 for:0.01393665809846983 this:0.013312939957934592 tho:0.01297946267740685 that:0.011547434182007182 was:0.011112811454688102 At:0.009988114168645973 In:0.009884646165011318 from:0.009552983490184184 :0.2636419767862621 +the:0.12770449798329372 and:0.07676572475370608 of:0.045123471847714265 in:0.03559805491100109 to:0.029000539712499895 that:0.02693772677493349 which:0.017521055946676356 or:0.016592138577364267 :0.016494861857150826 for:0.016241026064322595 In:0.013348767892415715 he:0.01269890896992827 this:0.011944397841347432 dis-:0.011145096867037988 re-:0.010450122709738998 a:0.009780095818039987 Mr.:0.009558468159733392 as:0.009302926958874724 be:0.009211136467832724 :0.4935809798863882 +of:0.23188017350110615 and:0.09243802066137181 that:0.06116450570163256 in:0.057954045454596835 with:0.04597192254891148 to:0.044949128111712616 is:0.04177410459959033 for:0.03951083881779196 have:0.03431897043916273 are:0.03412126171423489 by:0.03256286005513897 any:0.03027411241128673 all:0.02139692672534322 had:0.021071009481603283 or:0.019958107288981654 as:0.019707351741550746 has:0.017536733995231507 if:0.016712739675271576 but:0.015121704526710064 :0.12057548254877089 +it:0.15590291243815246 there:0.0887784025092866 It:0.07904016205387611 which:0.06936908824431676 they:0.05362226352982171 that:0.04647101454662571 and:0.04420120519214072 he:0.027952982163116303 There:0.027623278151575524 mortgage:0.023443129896555264 you:0.018859539766003214 who:0.017891862574647276 this:0.014117846301193209 I:0.01363040583752058 sale:0.011818751696880098 This:0.010767348085132659 work:0.010306262168963347 as:0.009927627839447666 They:0.008978002990569422 :0.26629791401417535 +the:0.14097905379068107 of:0.07331087503882922 and:0.07181330996280533 a:0.05976433406615042 to:0.054517608548006975 be:0.027144583808848956 was:0.021670096559335054 or:0.017850176640821478 is:0.015691986615405103 in:0.01537689140487654 are:0.013527554375639277 :0.013345386361944066 at:0.012159230680710242 been:0.012083769908731407 for:0.012017580091645849 his:0.01156881653886233 were:0.010304989923631205 their:0.009881712923853423 tho:0.009488640365474152 :0.3965034023937479 +of:0.14061422670442228 by:0.07397890083971677 to:0.0645957650592629 that:0.06278196009235353 and:0.06171779412995163 with:0.024784207916322815 :0.021296554997849743 which:0.018150544625629747 as:0.015593235006414066 from:0.013045232743111014 Rev.:0.012950377448433107 for:0.01208267405942049 in:0.011345035541060299 but:0.010763995429851557 when:0.010542089526816392 if:0.007472747609427384 said:0.007100416424489038 or:0.00707214494317395 at:0.006990048717905581 :0.41612204818438775 +more:0.22608954135701056 less:0.08468818225093996 better:0.06917500034139656 rather:0.05032900965778734 other:0.0321011830474245 greater:0.03095628496475335 higher:0.02324793744576618 lower:0.022918539443008645 larger:0.016945735230152296 and:0.015693370123387708 worse:0.013593173574696962 faster:0.012626412938083472 later:0.010733506069195377 cheaper:0.01065083011081346 longer:0.01058962038895904 work:0.008829838146905414 time:0.008710723813459572 smaller:0.00867801395771289 year:0.007408252380621351 :0.3350348447579254 +few:0.23647869632802007 two:0.20808102875018772 successive:0.10686455845107104 three:0.07731281070303986 several:0.06239750922976522 six:0.04169893431811007 five:0.03918316651591622 four:0.03432867291394373 ten:0.030961439403820554 some:0.022847083264421964 many:0.020393209303733745 of:0.016632983884790196 the:0.014569807284973217 other:0.012956016456065622 eight:0.011664781271629376 fifteen:0.010966411039508534 for:0.009242004504355632 twenty:0.009045877295938278 Two:0.006622355523045784 :0.026752653557663174 +and:0.26957923831534597 that:0.057084739244568986 but:0.036258307377146436 days:0.033545209953922094 and,:0.03309328697915601 soon:0.030859941727718904 until:0.022812590680399324 shortly:0.020917594530473576 time:0.020149941198346375 day:0.01825207886953759 it:0.01679651558922823 hour:0.01616848716669882 Shortly:0.01598231570852236 even:0.015725523763968147 minutes:0.01431794503372505 months:0.01354106810708607 year:0.012678861572106615 alas!:0.011475121701749597 look:0.011338256134032772 :0.3284229763462671 +that:0.06756085495151042 as:0.06059594066661128 and:0.048986568568400946 which:0.024693179429454218 lots:0.02097499454893107 if:0.020195313022909795 for:0.019149974518276963 No.:0.01830427182796055 should:0.017814458988612433 would:0.017427422879479047 may:0.016957330422234736 will:0.01659540346956415 it:0.015870278434234927 at:0.015821964263821556 can:0.015723851406526837 wi:0.014399283930566635 No:0.014381087883460549 to:0.013980455277900742 If:0.013532559098520096 :0.5460348064110231 +and:0.10564763495052047 as:0.08558952852907038 able:0.05387460323152875 order:0.04580793759179341 enough:0.04213502118558539 is:0.038891051130426055 or:0.037084693137061635 have:0.03204818938851986 used:0.03048617847797856 necessary:0.03028668295084076 them:0.029323069291802006 him:0.029299510016646064 likely:0.026993101048302152 ready:0.025890081115493506 desire:0.025735504637751445 not:0.02521134252727784 than:0.02431496848469359 me:0.024238247987033768 willing:0.023310537011721873 :0.26283211730595246 +and:0.21542399095067086 days:0.0822547236046927 that:0.06590607301732125 soon:0.058970579376743854 years:0.049130708386638994 shortly:0.04255695838027438 but:0.04027004749494958 months:0.026106110689815942 year:0.02472384147879246 look:0.022858913150480796 immediately:0.01973307248287409 and,:0.015821877612635645 hours:0.013654172923449422 weeks:0.013045351674960839 it:0.012650273819498164 be:0.012545190809863861 Soon:0.012235914907293926 time:0.01223103337386208 Shortly:0.01219551471641715 :0.24668565114876403 +he:0.13243111706661526 it:0.11834225396072688 It:0.08546197654917169 which:0.06789368233450652 I:0.06596333867590194 and:0.05020395092642947 He:0.046261547776790556 she:0.03440298972870689 that:0.033158163091963865 who:0.031136424215397807 as:0.015796337201570247 She:0.013604783906989767 there:0.012570081029915704 ho:0.012222421643045036 lie:0.011502230353557156 bill:0.009754498766368212 what:0.009418919426857625 man:0.009102300649277823 but:0.007994909050450404 :0.23177807364575712 +out:0.05941904963054598 one:0.054824042063606755 some:0.05247794090323687 all:0.03926190883783565 part:0.035496978464792696 because:0.025099630466577632 account:0.024761806092616793 many:0.023799186613584284 and:0.02140242809025699 that:0.01934844095643571 portion:0.019105006248878457 value:0.018257503974032613 use:0.01686640358385487 time:0.015610548615003978 amount:0.01525203957993562 tion:0.015055978834802522 cause:0.014538196289420737 any:0.014448371559742294 members:0.014218034247347602 :0.49975650494749196 +the:0.7135033923758437 tho:0.04387548264207339 The:0.042660664829286966 a:0.036874603709276164 an:0.02889842159495942 and:0.020980801837704326 tbe:0.012194233766818538 any:0.009757761069180474 no:0.00934689410267416 right:0.007300642547776593 all:0.0068558532329706275 full:0.006070240652110966 this:0.005613248571775419 great:0.005344148189088562 or:0.004981250832309317 their:0.004610903845973979 other:0.004168892905853201 of:0.003918608118196135 whole:0.003613814088055004 :0.028430141088073072 +of:0.08493743996874009 the:0.04537007712050972 and:0.041506932927266336 in:0.03586212233555753 a:0.03573683082071449 to:0.030385880039074588 -:0.025361483548512063 for:0.014246053942594594 by:0.012216347673762725 .:0.01103989863556381 that:0.010551185155321599 at:0.010374993125063453 In:0.01011125400774165 on:0.009832568924000638 I:0.009426519128921942 is:0.008952552526977567 :0.008595007489776527 as:0.008399059792090114 with:0.008155065813497852 :0.5779387270243127 +the:0.16807735899698817 of:0.10541662057906837 and:0.05138367848570702 a:0.04141865232648221 to:0.0385989743764065 in:0.026264864977736738 was:0.019530675665220657 his:0.018900421021236905 be:0.017373825006196972 their:0.015767721170721456 for:0.01557246589796783 with:0.014071419046630446 is:0.012922913111931644 at:0.012690452250034052 are:0.010702713108721902 .:0.010158075558988393 Mr.:0.009672788574483367 tho:0.009612591781990074 were:0.009549306361446321 :0.391314481702041 +of:0.12586553631718383 is:0.08566873577469558 with:0.07231737327883234 to:0.07072813996875574 was:0.06762736528348554 in:0.0631151860580778 as:0.052980321642700466 on:0.05043105384086842 and:0.05015188707558448 for:0.04211842247729607 by:0.03949164972859431 such:0.02317931936493229 be:0.022936255548013363 made:0.019572429928775226 at:0.01630388737946816 that:0.015551018175365916 not:0.014703553636906945 from:0.014197606858303213 make:0.013302183063720507 :0.13875807459843978 +as:0.16738772798203458 a:0.13304537017111726 any:0.08297220145311633 the:0.07196387575166706 earliest:0.07000325203022419 and:0.048695078397984 every:0.047641648050282724 no:0.0324486182976223 im-:0.030121349530232887 or:0.028870565462813774 very:0.02658973908851607 such:0.026096121478525407 is:0.02164711845885948 all:0.019272507967032487 most:0.01732211329186289 only:0.016737111137722784 this:0.01659165005747327 it:0.016357038518634858 best:0.016303259046735005 :0.10893365382754264 +and:0.12760914952579921 to:0.09350903998305073 he:0.04427115183796026 of:0.03273712048537543 in:0.024796890005921543 the:0.023894411477150226 was:0.022918342900178634 that:0.02089892373593765 for:0.02039988287876958 will:0.01968918799115977 not:0.01900679191484481 would:0.018586066892747898 or:0.01841067604319294 is:0.01741560228311475 it:0.016623006336143973 had:0.015944658138793255 be:0.014889444862031647 I:0.013999263722461762 him:0.013315311952332166 :0.42008507703303377 +was:0.19951427857075385 is:0.11954198513315742 be:0.1037934033276777 he:0.06985822024805399 He:0.06414744028209411 and:0.056062223437763875 been:0.046752020810924694 I:0.042706655239243434 are:0.03953439324217181 were:0.029547375801338982 have:0.025210312885688282 had:0.0196448838101209 am:0.01752431954738693 Is:0.01730382899273644 has:0.014152376401475679 so:0.0119912809732263 she:0.01156205311454907 also:0.009605158238254726 being:0.008671870466982774 :0.09187591947639902 +the:0.19715196306738114 of:0.08107541018070591 a:0.07731883622389232 and:0.06533858296864872 to:0.03500174691668134 in:0.03445908812970258 for:0.022359923756832 at:0.02077541994837452 The:0.019987067856866388 an:0.019676548458444805 is:0.018087876412575397 or:0.01644844964627073 with:0.016292127475182897 tho:0.014203956883195519 Mr.:0.014160831343625616 are:0.013557020717084431 his:0.013554085396125395 was:0.012951333158956435 be:0.011491298798425966 :0.2951084326610279 +of:0.1344593293336879 for:0.08286991336939867 with:0.07647728018596842 in:0.07250458322734814 to:0.07044446485191465 upon:0.048416754863220175 do:0.04745435798125755 about:0.0438951532972514 on:0.032976960127523304 by:0.028022457965659373 against:0.02530691400147372 from:0.022243368968081354 and:0.015668538797981312 get:0.014230930448720671 over:0.013980188461458857 at:0.012415444642654235 know:0.011538893031849256 try:0.010508676676935702 into:0.010066038111177456 :0.22551975165643787 +to:0.09510176257557867 and:0.0759782477397007 of:0.044882537993784916 the:0.0315600709783228 is:0.027469709441114137 in:0.024414242512733896 was:0.023644505786906175 con-:0.02072663556943141 will:0.0197525729259325 re-:0.019515757684955143 he:0.01933396268374066 I:0.019168528042120436 for:0.018758717550584603 be:0.018539065847662673 would:0.018528419960293203 that:0.017041510263127942 be-:0.016586329410835588 there:0.01648203693916975 not:0.016023551150036123 :0.45549183494396867 +a:0.2811768293437868 the:0.26042434553974425 of:0.05736276967317798 The:0.03280172744472473 and:0.029331842330475737 with:0.021336025474638434 his:0.020978794880034537 for:0.020523669445633174 in:0.017924852016261872 this:0.01778940794020324 A:0.015500634590504077 their:0.013227536522739045 tho:0.013146302497838897 our:0.011598124892694467 to:0.010256380579692807 any:0.009536950841113834 these:0.009450055381222101 or:0.00936757473602354 other:0.009332795607698197 :0.13793338026179228 +and:0.12182438348867076 to:0.09621585224395153 the:0.09474985145934617 of:0.046778789638871644 at:0.02727567203535623 or:0.025035789189823635 a:0.024385490379091993 for:0.02320923519788634 will:0.021882278401972956 have:0.020505523035291108 in:0.019713857305268805 that:0.019064446603666355 by:0.01645011594023218 not:0.01587234126693783 an:0.014760121857554275 be-:0.01263728558803518 was:0.012214452534323421 be:0.01213767526136554 :0.011890222274158513 :0.36239661629819553 +person:0.08417821548803338 owner:0.03553676847684971 one:0.03121635562035166 lot:0.028993502128506706 law:0.027470011715990433 man:0.025652404419589138 land:0.024462931747333105 vein:0.022780386374695694 tract:0.02091822323820903 more:0.020098141999199858 action:0.017914337615587448 piece:0.01753145300439694 county:0.017512933001807736 city:0.01704162113016823 day:0.016799880366041388 town:0.01663965410697371 State:0.016513751090250117 year:0.016112340666455782 state:0.01517748026470636 :0.5264496075448535 +the:0.297580808108897 and:0.13506990540176816 a:0.0766214851296385 that:0.06694650510890447 The:0.06569074520135536 of:0.03128407788869178 no:0.030504880661986904 if:0.023157055108773594 tho:0.021225841711100528 or:0.018227530226256804 to:0.017012186165622365 which:0.016819064268113026 so:0.016149320197275833 than:0.014794905949204906 but:0.014233006878037727 If:0.012969192245949408 his:0.012881581197698314 have:0.012841285265320924 as:0.012002225586120277 :0.10298839769928415 +that:0.24377600211184258 and:0.13435991912768572 but:0.07168150809626594 as:0.06359833707293497 which:0.04094174528544221 if:0.03178898714157173 when:0.02633898954679778 of:0.02397717529030809 where:0.021547267384172075 But:0.015524238832081745 think:0.013838867228362228 what:0.01348168029256627 for:0.013286521710675597 because:0.01244775421495958 If:0.011512192736688312 though:0.00872863832271114 And:0.008363469436862725 than:0.008221024862328669 said:0.008130156784910685 :0.22745552452083195 +up:0.05700266716616658 addition:0.04953632882010039 and:0.04490531028211803 came:0.04114305958527159 as:0.04055237558902992 due:0.03201550142716485 according:0.03129993379445457 reference:0.030478730316372868 sent:0.02990980261918604 come:0.02933172411388293 went:0.026782053734389237 Up:0.026552697895023868 regard:0.024442340701925202 given:0.023424952825448295 brought:0.022894402438597753 go:0.022293966736896334 attention:0.02201988315146004 answer:0.019273660204722595 back:0.018803859585491568 :0.4063367490122974 +of:0.16573792443387134 to:0.11147226227747624 in:0.07924937308336845 and:0.07370102736765696 on:0.06789648581443296 with:0.045828352002757755 In:0.04425400919360097 for:0.04275801547352668 that:0.040568582276822814 by:0.03777527283964069 from:0.03357304669749699 is:0.03293410881249853 all:0.023922295045197044 as:0.020281618363620284 upon:0.019601276006515116 was:0.0140945832106649 at:0.013407959048228734 or:0.0117913722750788 Is:0.011563429741865125 :0.10858900603567961 +and:0.21172749058547152 that:0.048555878029517795 soon:0.04717106555706638 days:0.035164251789999976 until:0.03085695734192773 but:0.029632181681728847 years:0.02875001699604169 shortly:0.026358115694303543 and,:0.02399296228906972 day:0.01848910329289961 Soon:0.018220762618902188 look:0.016111616748660237 months:0.01453314053923872 Shortly:0.01416040692308972 long:0.013763014913848149 even:0.013408164292936352 time:0.012772337979283387 minutes:0.01245437976577956 hour:0.011861502603386318 :0.37101665035684855 +of:0.0843146247192127 and:0.07292252036862017 the:0.0725803413969384 was:0.0392133238515665 to:0.0381027960656041 be:0.02748280253519502 were:0.023650679962264512 are:0.019870045635723144 as:0.01947413179775887 is:0.0180711188770387 been:0.015134969484879454 a:0.014913528292156513 in:0.014685679181450776 with:0.01236095677423228 on:0.012294022414732585 for:0.012226032095775516 by:0.010392943004076574 :0.0101128383324785 or:0.009760577233084695 :0.471436067977211 +the:0.2213382764101201 and:0.06416348443721803 a:0.0640966052497709 of:0.054782233399309134 his:0.02188159733777248 other:0.018218859974373187 The:0.017282494683507496 to:0.01507234909370813 one:0.014789991989484188 their:0.014535045781753478 that:0.013771219287104192 tho:0.013287196751272164 this:0.012247733654441999 her:0.010786602538159417 for:0.010055609619365899 little:0.00965030329530793 or:0.008365388008330546 with:0.008238312357742125 white:0.008191345972987516 :0.3982453501582711 +to:0.2580372526992197 not:0.09923650256655957 and:0.09708330278807466 we:0.06338117209258672 I:0.046830712493168815 would:0.04447548492256247 you:0.037788734987445845 will:0.03603485512339256 they:0.032810196587507105 a:0.024740192344919226 who:0.022422180170150605 may:0.02234420316954291 can:0.01810425503819201 must:0.018026867224597624 should:0.017330505192968783 We:0.015174779195972522 or:0.012823770964622748 shall:0.012785271869660598 could:0.01181220734348204 :0.10775755322537353 +and:0.0725949403980445 of:0.06252000025151817 was:0.038634417727730394 is:0.037838503352072464 be:0.03462293345567404 are:0.023471842910895994 them:0.019318257656909744 the:0.01893771708871126 well:0.018567922027628407 with:0.018340796096058928 up:0.015979217336107167 him:0.01552578010540351 to:0.015451002763478857 in:0.01537037633602022 on:0.015052767047767325 been:0.014937833626206395 were:0.01451182276496613 now:0.014414352795157527 out:0.013316333028426965 :0.519593183231222 +of:0.16148285497890796 to:0.1542692555181962 and:0.07627026171123036 in:0.07430788524003587 on:0.05751455419856931 with:0.057415125720207794 for:0.044228429133660575 from:0.04144434910181994 that:0.038927819395179405 by:0.03207883897207416 is:0.027458053013936036 at:0.026288475265930127 In:0.023915273029990542 all:0.020179208013992866 upon:0.019633076758531594 as:0.015748468913613176 was:0.013880966664306582 but:0.012881950106156365 have:0.010154590155612157 :0.09092056410804894 +the:0.39749834532651884 a:0.07520030034269234 and:0.05540858759821703 The:0.03273515726769502 tho:0.030061875542463562 of:0.020144331424922633 tbe:0.014929647509541684 in:0.014268129706664795 or:0.013333166761078447 .:0.013287381914101323 an:0.009000188755386574 to:0.00880680429595084 :0.007943763822197133 Mr.:0.00773879605474787 by:0.007328417831573476 as:0.005922572098978465 for:0.0047526933692942485 that:0.004736121968310169 on:0.004594595720579333 :0.2713091226890862 +one:0.07798655968170567 all:0.0701564311548887 copy:0.04690695820056385 some:0.027625227152969747 out:0.025477954525797434 those:0.02459154416493174 means:0.02404073766879842 purpose:0.02296024622361466 part:0.022077875043067605 any:0.020254061199805943 way:0.01695718583420243 many:0.01538878129643016 end:0.014892268115746548 and:0.01387430440588936 manner:0.011913042152360553 time:0.011678765868898126 most:0.011599288876158725 each:0.01152901784856222 that:0.011431730212607183 :0.5176580203730009 +it:0.23820540184533798 It:0.17125187608174666 there:0.06699202625247924 that:0.05444101382343854 which:0.05159693135467618 he:0.03644889157274139 This:0.03106296088687663 this:0.023580014219472926 There:0.023029087150353292 what:0.018547916019823363 and:0.01640855762134201 who:0.013526993635047864 He:0.010407634217562252 as:0.009370435455373817 work:0.008864361494479285 country:0.006176639406907586 she:0.005819366200524846 matter:0.005749824789147587 man:0.005395594962109445 :0.2021244730105591 +the:0.05677127108848579 .:0.040181642728494345 :0.031698098453087714 and:0.027931346526219408 of:0.01866238886078569 Mr.:0.018001359305587387 Mrs.:0.009306483433240614 The:0.008663803167922037 de-:0.008166744541397316 boy.:0.008076150009490449 Miss:0.007807617030253473 to:0.007587965383253808 -:0.007367084581324208 :0.006756749361884869 Y.:0.005523368796622586 those:0.005238610141800374 Dr.:0.005000025771584306 S.:0.004825522729232359 girl.:0.004708824434756029 :0.7167249436545772 +the:0.11076639060148961 a:0.07849534528798262 and:0.07662355077029165 of:0.07260297245149884 to:0.052614458906641126 in:0.02898323381454322 be:0.028619334122366183 was:0.018316043946281182 is:0.016699142604069347 or:0.015571116417843511 for:0.013777377220018703 his:0.013466243388399383 been:0.012200092708878738 .:0.011651566712874907 :0.01138899460054603 their:0.010869189054887483 no:0.010269055828557971 not:0.010112362588368682 an:0.009710495306262912 :0.3962630336681979 +cents:0.20807669497463568 bushels:0.0425236309253445 a:0.035269891551804676 dollars:0.03242085570270242 cent:0.028635842838395906 the:0.0231158067651274 pounds:0.022609348418811657 feet:0.020647622804550514 $10:0.01651687635758044 $1:0.01638604526122281 half:0.014897485884611402 ten:0.013186386020667889 cent,:0.012644679965677523 two:0.012347750653865718 6:0.012142817845519314 50:0.011395699383007565 1:0.010707468905535889 six:0.010494818836940456 tons:0.010470900344527459 :0.44450937655947076 +W:0.07892631551588039 M:0.0649850702455623 J:0.06391667000631429 C:0.05905432254903491 S:0.054856972986157694 E:0.05424348669664422 A:0.0514021035998739 H:0.049828895999379015 B:0.046817024292917286 P:0.04169510535418999 L:0.03908899165768591 F:0.03868396050835962 D:0.03284277583604958 T:0.02839631999315026 R:0.022484651061807727 K:0.02066410658290062 .:0.02003194872932241 G:0.015174321886982735 N:0.014851087760055299 :0.20105586873773182 +as:0.06931392982974462 according:0.052071562389565784 up:0.0511867300210483 and:0.040371568633051955 went:0.03351644485287816 back:0.032358406609281 regard:0.03073407747799069 feet:0.02852138506231652 down:0.026379903432040268 owing:0.02466642634685871 due:0.023695193974505355 go:0.022910973192184297 reference:0.020802802907016128 came:0.019883741951819873 sent:0.019874244915639484 attention:0.019565955494145405 come:0.01885185084678811 given:0.018792390567602263 it:0.017366961307524745 :0.4281354501879983 +and:0.08934296525867834 of:0.08068838607300491 as:0.07853645433812198 the:0.06307320057451939 to:0.042658746496865775 be:0.030835544751753347 such:0.029703590012664483 much:0.025794511891263566 in:0.023621249210533997 so:0.021449367110620385 is:0.021260609143037765 or:0.019920658237143826 a:0.01927671572579788 his:0.01906207551381598 was:0.01720359984272631 are:0.013935218166333807 their:0.012335998801341931 for:0.011516936419171063 that:0.010287085618050218 :0.36849708681455506 +and:0.2113187817417421 that:0.1503227603926146 of:0.1164936058509417 we:0.0385298773862726 but:0.02985880096022308 to:0.028018658188696 which:0.024496254053214903 for:0.024173573486155876 they:0.023509854356101957 if:0.02086392466919247 when:0.019114673418978958 as:0.0188097808175481 We:0.01641753160522062 where:0.016087752084561466 are:0.015263005055136723 in:0.012403908570878159 If:0.011855627184443787 with:0.011424751278701049 you:0.01076367561701112 :0.19927320328236472 +of:0.20321904276835107 the:0.11101908403737512 and:0.09255478687681788 his:0.06694985822381258 in:0.0588321374468211 their:0.05168239926469026 whose:0.036730155689946475 our:0.03163009966420977 that:0.031230323254129312 all:0.023835907329146377 these:0.023587661110244712 its:0.023527524830579804 public:0.023483722073926343 other:0.022997835621209245 national:0.02202809364908943 such:0.020205923833071012 your:0.01645708101657292 a:0.01624139092643216 agricultural:0.01570576477499521 :0.10708120760857921 +the:0.5504754069678424 of:0.060091716149879584 and:0.05153542289831891 The:0.03629362661370911 an:0.03511439162196471 tho:0.031749658135779464 in:0.018933589124265796 tbe:0.014356046482154751 that:0.011330564471754385 this:0.010408820283592416 to:0.010336075192951868 a:0.009923778021681243 his:0.008022486987032462 its:0.00794399771595982 by:0.007829210249592582 their:0.007291949913612846 In:0.0064037997590357006 from:0.006149007989575074 for:0.005784189078236067 :0.10902626234306088 +and:0.09343475563187024 to:0.08009074928782962 the:0.06369067396144706 of:0.05974235750562986 in:0.03450274689820086 a:0.028189728892718077 at:0.02344400297585688 is:0.01855628447636475 was:0.01841952326648287 be:0.01682080152367771 for:0.016585292046703188 he:0.01425740445082285 or:0.014123067768749767 I:0.01394793891074001 not:0.013635758919023676 it:0.013604467323804234 will:0.012713351933834976 .:0.01163191057987971 :0.010706998355487798 :0.4409021852908759 +they:0.1985580623591744 who:0.07261397851347141 we:0.06235071182530186 and:0.05301737452168632 which:0.04623058700907084 men:0.03886547127239358 They:0.0382713012261962 there:0.03634209056237822 that:0.031220839659277477 it:0.022738254069063563 you:0.020843869152693113 We:0.01799983302229699 people:0.017247825461275283 them:0.013744862184169378 There:0.012677561491265872 all:0.011570868922167138 these:0.010252075141747242 others:0.00889895309813787 but:0.008391458125257016 :0.2771640223829762 +and:0.09976490290645104 as:0.06207915248998886 them:0.03190532514559309 him:0.02573291504021008 is:0.022528991432530655 was:0.02180963462624431 up:0.02112370886135965 right:0.02034487223383014 according:0.019463607731268998 order:0.017964219399295274 made:0.017922237305194103 necessary:0.01753056776313528 way:0.016881424779190926 regard:0.01654388412368345 able:0.015692800338711378 used:0.015200479203000144 entitled:0.014719868069236003 enough:0.014275757559788332 it:0.013597207027651175 :0.5139184439636371 +the:0.25728592764827457 Mr.:0.12392654806730052 of:0.09169439081965766 The:0.07532052742688854 and:0.05606120081057794 Senator:0.0282369779686758 that:0.024217713729145655 Mrs.:0.01887770006223845 .:0.018616857706730484 :0.01642712611501815 in:0.01600869144633464 tho:0.013937923931534176 President:0.010731100328555775 Dr.:0.010404167953664162 for:0.009551645161682937 John:0.00905986381058834 to:0.008434097273897 by:0.007417169305008721 a:0.007131229827046512 :0.19565914060717995 +to:0.17335029906378785 I:0.11191493264327358 we:0.08161011815796082 they:0.06462541890501572 would:0.05716539226292512 you:0.044781006218012155 will:0.04292703255278298 who:0.040554736147910435 We:0.03745992972333576 and:0.03313834953736619 not:0.02408761146121676 shall:0.02324544750579464 should:0.022371260704302395 must:0.02205720211184705 They:0.01702041044010325 1:0.01527628246489426 may:0.014090518598104528 that:0.013174419994356564 could:0.010620076604903906 :0.149529554902106 +the:0.46670046502957374 in:0.12438707032738437 of:0.08002594866273617 and:0.050435586976717114 In:0.046083849183540825 tho:0.023891015767257353 The:0.012421203182176684 that:0.01033476111962044 to:0.0099835964524248 from:0.009628125384761144 tbe:0.00960185012672933 for:0.008300595866298192 or:0.007509139699683909 as:0.0049565309816912715 county,:0.004919885342404741 by:0.0045309043117320565 County,:0.004425907861908698 said:0.004251868864309858 :0.004236993376209717 :0.11237470148283957 +:0.08544287909137954 it.:0.016494113564944426 them.:0.010992489657237859 .:0.010398388054660774 years.:0.008341309896568734 him.:0.007830938480330313 year.:0.00722417050028788 time.:0.006810891649980995 country.:0.006727458058516472 day.:0.006407696487110189 city.:0.006286130806926726 work.:0.005838612742909589 of:0.005614743362535868 States.:0.004772506504945738 It.:0.004666333075989239 ago.:0.004482341979927402 tion.:0.004411246681398666 world.:0.004344287831709014 way.:0.004196611306049353 :0.7877168502665912 +the:0.09699741018754097 of:0.08539884713136908 and:0.07569095734134795 to:0.0708137118172205 in:0.03582177077613146 a:0.03344759944885441 be:0.02800309323743673 was:0.025382063775244938 is:0.018219697667587888 or:0.016763836422902148 at:0.014476264136413838 not:0.012951869732877284 he:0.012638226319860528 I:0.011839942941436945 been:0.011273406090258337 :0.01124994979746153 his:0.010388493650193458 that:0.010118767408815317 for:0.00996982172856908 :0.40755427038847764 +the:0.6285421342474743 a:0.08421273458147925 and:0.05657338039294012 The:0.049108459991834184 tho:0.021777230856563627 is:0.019356342721118542 of:0.017819667973044084 was:0.013344532297555882 are:0.013294468975997837 that:0.009662862278787102 as:0.0071246795447938395 al-:0.00654216750109499 tbe:0.006235401193339799 our:0.00597207741082291 in:0.005605480185479753 to:0.005601675149054202 or:0.005177579107513316 were:0.005136361082000355 with:0.00423462921030459 :0.033678135298801315 +as:0.05729471634571925 up:0.04430965073015733 come:0.03915500656730188 and:0.034294293517799064 back:0.03411766687236335 came:0.03356402097212845 go:0.03245958305552573 it:0.026175332672653342 regard:0.025675490431796306 went:0.023774114907783788 return:0.023245457523849457 them:0.023151599188047635 him:0.02042951252271379 sent:0.01971150145819369 given:0.01952167086863279 brought:0.018577046663596164 out:0.018524484481550398 is:0.018218484921632427 down:0.016545073780232664 :0.4702552925183225 +at:0.11295675697800268 and:0.06306931432515364 to:0.05177910498517986 of:0.03987433268276613 .:0.030294997194446498 the:0.026103811754188275 a:0.021000066793631565 No.:0.016369948469105625 :0.01623994043312597 from:0.01576440893955116 by:0.014476671935952113 A:0.01084996296893071 in:0.009998678713008248 that:0.009562017778683499 W:0.009527586523129 At:0.009509836348474951 or:0.008718171921069233 about:0.008569816305271247 was:0.008307596170319459 :0.5160269787800101 +and:0.13227686702986385 was:0.0856716476457969 is:0.07626961177212849 went:0.04133597159054774 are:0.03477666643564678 it:0.026910838038269932 go:0.026513136664527488 be:0.026287400096089212 that:0.026078937895352722 committee:0.025512428664012276 were:0.025019568712695072 put:0.021713397478363806 but:0.02055674336873831 going:0.01788736639380618 work:0.015796787350502255 Is:0.01564945029109351 them:0.015500463682085944 goes:0.014917701796888588 him:0.014889027175720668 :0.33543598791787027 +that:0.1927938266090584 and:0.10547300916390434 which:0.07588373475656558 as:0.07435579838113325 when:0.06807157257157491 if:0.05052489210493034 but:0.045678674851441475 what:0.03666141432849191 where:0.025465679099979537 will:0.02200322586816717 would:0.020535755255319317 to:0.019597270007514902 said:0.018514859957570417 If:0.016081354162964807 because:0.01562893224453916 so:0.014489303626307749 time:0.01376167857666135 whom:0.013702928602861866 I:0.0135321632301915 :0.156243926600822 +as:0.145128855768746 of:0.10481498844851121 and:0.07967633472044201 to:0.04834450778096023 is:0.04143513974258169 all:0.032820376215729315 in:0.029217964689728988 for:0.026782017341156487 any:0.026730908029068332 that:0.025150562191313754 with:0.024891494867826755 be:0.02169725454885456 are:0.021023833109705566 on:0.018856613609694182 upon:0.015953316248025998 or:0.015635703294913886 by:0.013048487181846284 not:0.012389018276399122 was:0.012180449740525965 :0.2832221741939696 +that:0.2073859363375719 and:0.12451647650343532 which:0.09858369103395653 as:0.09547795805771436 but:0.050057191757793384 if:0.048189528794723754 when:0.04185247796698799 where:0.03737910761819856 because:0.030985636327434344 what:0.025558623818788758 If:0.0198905271280095 until:0.012325199709737219 while:0.01117867232659942 whom:0.011137346059782794 for:0.010214315249605713 than:0.01012279006110727 though:0.010091947611072141 whether:0.009031361944622703 But:0.007565231489822598 :0.1374559802030357 +be:0.2170490108802176 was:0.16146698575093751 been:0.08903469205581882 and:0.07337795643923088 is:0.05799650874134564 were:0.036304999143517154 he:0.023009929749414865 being:0.02120546784151295 are:0.020643954930522377 it:0.013469702946825592 Is:0.013415691982900779 bo:0.012906585092297558 then:0.010580080155661357 that:0.010022203161894823 I:0.00915524991903648 have:0.00869137121697629 lie:0.008626066142053851 now:0.008381242828649821 had:0.007395503066198392 :0.19626679795498728 +and:0.144924817477054 so:0.07446643258737518 said:0.05284483012683997 is:0.03713427245211559 fact:0.03683757564356431 know:0.03259278673912386 say:0.027594753125397255 but:0.022828410589369293 me:0.022535035052416646 all:0.021510442626234562 of:0.02027843739321296 believe:0.0181968895729781 was:0.017449043873061346 him:0.016534013685637134 order:0.015349393999979189 stated:0.015090381447803744 think:0.014847274038713 says:0.01465449002565429 as:0.014380283044519384 :0.3789504364989502 +and:0.1705522864908102 he:0.05488777178812696 I:0.047272468164565845 two:0.043328498794934896 He:0.03200205580728733 never:0.030617703463992334 to:0.029871010851866716 then:0.02781069526118383 ever:0.027230299172353974 one:0.026392318229348257 who:0.02608419687367412 she:0.024336673310856594 it:0.023769762965677444 was:0.02341639071916601 not:0.023008429097613765 is:0.021225220512387313 have:0.020469928772311356 which:0.01989843070012993 It:0.018043802016954377 :0.30878205700675876 +of:0.12954318963933276 the:0.12440396959131649 in:0.10109981126976493 Sand:0.09905368515758717 and:0.04587953721652783 Grand:0.03941634895975945 to:0.029608612381866746 :0.02103859914532113 .:0.020400732036823035 In:0.020324377008481206 from:0.017749522587220682 at:0.017243835983931744 United:0.01676327564002077 by:0.012826508946973918 &:0.008780766948910486 The:0.007871110839281374 East:0.007354251594723644 tho:0.0071683899045692796 on:0.007049524760489522 :0.2654239503870979 +of:0.17363758523252276 and:0.13029186418674887 that:0.07848959768775174 is:0.06060196347043082 to:0.04907116299716143 for:0.04462441210273212 would:0.03388074625561796 not:0.03228329643340138 in:0.03136238736061508 but:0.021805071123743462 as:0.020962689796758416 If:0.02060814246146322 are:0.019750962129697503 if:0.01876279958577695 will:0.018160897224781137 with:0.017760970812408808 or:0.01734162354225159 do:0.01722516159759948 was:0.014904320475338387 :0.17747434552319888 +the:0.09684081064840576 and:0.06551335624548284 of:0.05146145169206151 from:0.049520598669154245 a:0.045427902131977435 to:0.0370403239153822 be:0.035669151526387034 was:0.030489628475080553 is:0.026635804908522978 in:0.023878514238638158 are:0.018513936943033917 not:0.017945708099223703 or:0.017556265685966497 been:0.014265228721347686 at:0.013857211504087178 he:0.013733215789660087 were:0.012396679125422956 I:0.012347944480187516 for:0.012197989992860347 :0.4037082772071174 +of:0.1820016451824548 in:0.10927088207659766 the:0.06032821932847778 on:0.053863173853822756 to:0.0463166950590508 In:0.02961776057668998 and:0.026460226432813712 from:0.02578910214829064 a:0.021515047431078273 by:0.02127260320167511 for:0.01574588647185578 or:0.01439893425555147 with:0.01335881898235619 :0.012014913816989329 as:0.011565511823958164 that:0.009919386459326898 upon:0.00945903192045727 at:0.007336812994043706 The:0.006536441607724423 :0.32222890637678525 +the:0.35956045098034906 a:0.23467972094801587 this:0.08561107728309905 tho:0.028778931834248008 The:0.024344759394745227 to:0.02283318945553468 and:0.021387199585366654 every:0.020525548565918105 of:0.017755058465204764 so:0.017621620432764887 any:0.015821654512996466 that:0.011944497836143512 one:0.011500766926868333 last:0.011410113281401787 tbe:0.010330468499957099 some:0.009472116424633303 very:0.008934496968803001 same:0.008819424004747892 all:0.008677495903444268 :0.0689914086957581 +the:0.11500545585881412 of:0.0897605566703555 and:0.07914879987306167 a:0.05827037833039227 to:0.0386987683614473 was:0.029282661483795363 be:0.023890810389268442 is:0.02056818843792312 been:0.017204803150083207 or:0.017094944717067368 in:0.01610392931760865 are:0.015798243080240505 his:0.01344187865263006 at:0.01321973597799718 for:0.01304287912725108 their:0.012337012043366955 were:0.012236169772424844 :0.01133284696603621 The:0.01095822742659897 :0.3916037103636372 +is:0.08502864087124562 any:0.06381986806068146 and:0.06320362520449951 the:0.05828714525286757 only:0.054987564243301104 no:0.053767415426053476 but:0.04944017883296112 of:0.047193664217106815 to:0.04334777945042252 every:0.03981979186260581 was:0.03464831938516649 some:0.030006962840469983 from:0.028451822075980973 by:0.019336115660850393 in:0.018847561511671208 that:0.018153092176499786 than:0.017854423029316818 for:0.017179677167021207 told:0.016174908100339697 :0.23945144463093843 +the:0.28207233546270677 a:0.27144240062471314 to:0.06102929516546527 and:0.0574686196696254 The:0.035471807479733546 not:0.03199825393950265 of:0.023975545374492924 his:0.022663931274347453 in:0.014779350017628801 tho:0.01467526791653612 this:0.013778407327520484 their:0.012190985304909894 most:0.012125960081825838 will:0.010481197556162036 have:0.010479926256798909 our:0.010231563537127085 that:0.009887805138068227 its:0.009877909875114927 or:0.009674354923729957 :0.08469508307399055 +of:0.14061422670442228 by:0.07397890083971677 to:0.0645957650592629 that:0.06278196009235353 and:0.06171779412995163 with:0.024784207916322815 :0.021296554997849743 which:0.018150544625629747 as:0.015593235006414066 from:0.013045232743111014 Rev.:0.012950377448433107 for:0.01208267405942049 in:0.011345035541060299 but:0.010763995429851557 when:0.010542089526816392 if:0.007472747609427384 said:0.007100416424489038 or:0.00707214494317395 at:0.006990048717905581 :0.41612204818438775 +the:0.6110627174100115 a:0.053315830706049346 this:0.04535067703539739 his:0.035339189918739446 any:0.018760990563525017 tho:0.018327734312912063 good:0.018289648473032164 such:0.017818996729630297 other:0.014669357923129109 and:0.014432099333377493 their:0.01341089197785332 or:0.012942608226495166 every:0.012307818848089106 same:0.011401677378191684 no:0.011133815092766883 our:0.010064286613424678 of:0.009935610484138328 own:0.008781149642788862 great:0.008392479154482331 :0.05326242017596587 +of:0.31542659833269676 in:0.12856090414966204 to:0.08719931594059747 and:0.049132440340499475 on:0.04455481810648031 that:0.0420364067951958 by:0.03756701699799977 from:0.0334506111888947 with:0.027139934822680113 as:0.026918984934214737 In:0.025250855462084092 for:0.020551513182320406 all:0.015457812282708639 over:0.014039967360325657 upon:0.012345478434763033 into:0.01230507555621673 when:0.011744785449988849 at:0.0114419596177265 which:0.009261813896891397 :0.0746137071480535 +a:0.682329994674376 A:0.08724921643451347 past:0.05700188739321099 very:0.028919131396714575 the:0.02779243752256126 last:0.026994930207471186 next:0.01669227648713155 is:0.011782994759493013 are:0.007158684891297522 but:0.006248973246891102 for:0.00576999085268632 and:0.005531254468701157 this:0.004740020777008749 of:0.004574254494588262 in:0.004121273664419991 n:0.003908041677684005 at:0.0038206224074214122 was:0.0033118157026793874 after:0.003176120501602564 :0.00787607843954742 +to:0.6373100382584951 and:0.050871747440874096 or:0.0307816250142004 the:0.030067473423268237 with:0.027936567187627957 of:0.02509301844792478 not:0.023395093370714253 for:0.02068699431981462 at:0.01940387187722017 in:0.01396404157256597 would:0.01222987159311742 will:0.011022088910653573 by:0.009805782569115958 a:0.008853402478016114 without:0.006276628725433635 from:0.006172186017804118 re-:0.005893038468710057 about:0.00511378282236555 In:0.004487051914576544 :0.04963569558750145 +the:0.6938340790629062 The:0.09525095298856659 tho:0.03585625972140809 this:0.03452268819425205 that:0.02161463674388553 and:0.013224896189676616 tbe:0.0130872992343014 This:0.00928711119488592 a:0.0077467061843562 these:0.007209614446043904 I:0.006630846754091773 our:0.0053729017182593125 which:0.004616624788680862 Tho:0.004395291676158532 no:0.004340200841396693 his:0.0040685446511742294 some:0.0038113498562827534 first:0.0033348764703705638 These:0.0030460718667319866 :0.027749047416570822 +the:0.1948068297674915 and:0.10426814005126135 of:0.06359524954220708 a:0.05485179580978882 that:0.028385104234445874 his:0.027749552907251448 The:0.01609479947959344 by:0.015804943462962663 to:0.01408883861979678 our:0.013177336287169989 with:0.012719200786467488 in:0.01224386288290687 her:0.01178956207849804 tho:0.010445861995310847 their:0.009308208502855957 was:0.009149577423338816 on:0.007308830886950332 my:0.007175888738650835 other:0.00686116236900315 :0.3791752541740487 +the:0.11919516938815296 of:0.07230453158552728 and:0.05781056740443249 a:0.043018564803886335 to:0.031305092790907506 in:0.020848713353460488 at:0.014270110001066288 .:0.012526810245749479 :0.012413283442322082 for:0.011719122709941797 by:0.010808400946589808 or:0.010404172990115616 The:0.01003576004804544 with:0.009811868184449042 tho:0.009295902015355835 was:0.008924239095331684 that:0.008672304223433876 is:0.0085591147338948 be:0.008335143826716943 :0.5187411282106204 +the:0.12770449798329372 and:0.07676572475370608 of:0.045123471847714265 in:0.03559805491100109 to:0.029000539712499895 that:0.02693772677493349 which:0.017521055946676356 or:0.016592138577364267 :0.016494861857150826 for:0.016241026064322595 In:0.013348767892415715 he:0.01269890896992827 this:0.011944397841347432 dis-:0.011145096867037988 re-:0.010450122709738998 a:0.009780095818039987 Mr.:0.009558468159733392 as:0.009302926958874724 be:0.009211136467832724 :0.4935809798863882 +and:0.07181562702745725 together:0.06672214896410926 connected:0.05460722541492519 connection:0.053485248068146786 accordance:0.040816432970329504 comply:0.022327715315442986 acquainted:0.01991331996883064 compared:0.01902004432375884 contact:0.016949822974841922 familiar:0.016791563233682194 up:0.016271038698657696 do:0.015355480362757417 interfere:0.014875808889703945 charged:0.014646284015101253 pleased:0.013610051164447858 him:0.01274062267734275 but:0.012200014478196207 satisfied:0.011962054640116513 it:0.011810815262474694 :0.4930786815496771 +provisions:0.0679938503985306 copy:0.06201617447249093 date:0.05159752313646957 part:0.050661532655167846 one:0.04272232046411394 out:0.039198262926626565 people:0.03688333605300589 publication:0.031622932748407565 members:0.022148687792528047 tion:0.01953442712364951 laws:0.019086435714135187 result:0.017976916451795253 object:0.01720022560087386 portion:0.016216616046388216 that:0.01583665345861985 all:0.015799046403021585 member:0.014650050293503455 passage:0.014513299284273402 purpose:0.01444493434085836 :0.4288967746355404 +more:0.17084440547838642 less:0.14293241722454886 rather:0.0702902597534021 better:0.049351827554562896 greater:0.04419403601625298 higher:0.017148959561877213 other:0.016491056495814466 worse:0.015366343077274676 and:0.013795230698543819 lower:0.01372165332074234 larger:0.013453589953958235 longer:0.010151666747820478 cheaper:0.009744749646345663 now:0.009523212310678994 work:0.00929237580511102 smaller:0.008687517459162835 made:0.00826232700915992 time:0.00778246903849922 otherwise:0.007658832225275622 :0.3603070706225822 +the:0.303058045263974 and:0.07323772502095979 an:0.0691817601666105 The:0.06743525992678935 to:0.04446022391943677 of:0.04191362063496192 a:0.03129589268207618 was:0.02668844643094752 that:0.02284464856348787 not:0.022187270840745323 which:0.020237292990834158 is:0.019343565736716122 by:0.018222932056529365 tho:0.018154732273084465 be:0.01652261286351242 for:0.015504648134875704 had:0.014863581805228992 has:0.01446208985208061 as:0.014210417880113622 :0.14517523295703533 +to:0.09510176257557867 and:0.0759782477397007 of:0.044882537993784916 the:0.0315600709783228 is:0.027469709441114137 in:0.024414242512733896 was:0.023644505786906175 con-:0.02072663556943141 will:0.0197525729259325 re-:0.019515757684955143 he:0.01933396268374066 I:0.019168528042120436 for:0.018758717550584603 be:0.018539065847662673 would:0.018528419960293203 that:0.017041510263127942 be-:0.016586329410835588 there:0.01648203693916975 not:0.016023551150036123 :0.45549183494396867 +to:0.4861309535463912 the:0.0752383404338496 of:0.06535194027137682 not:0.046739634364705906 will:0.04547499690566706 and:0.027250047370158657 a:0.02717664952070025 no:0.018695584901978837 shall:0.015439281730370987 may:0.01509249441049731 his:0.015003765264499036 by:0.014981070735774964 an:0.014091046873185062 would:0.011165768748683124 can:0.010809447994847048 should:0.010799061934035022 their:0.010779352931514101 for:0.010349441154948999 without:0.010196667742478622 :0.06823445316433739 +and:0.09827291634089326 to:0.08539080090823187 of:0.08020258284365404 the:0.05129252275312867 or:0.026327955963945767 be:0.02559999716213635 in:0.02298460483305504 was:0.021982807813645085 is:0.019065283325006045 for:0.018961401057409445 not:0.017816495672319806 he:0.01708049742965037 that:0.015160782518627916 on:0.014835113051949528 :0.014108060799083832 which:0.012958556738443306 are:0.012906713127334405 their:0.012483456413982269 were:0.012204393177924275 :0.41936505806957874 +of:0.3326106158622796 in:0.11855289009785334 to:0.07205676705790506 by:0.05836585800473389 that:0.05642009354603867 with:0.0492111077830098 for:0.04269693559308711 and:0.0419231474516432 In:0.02329909541100943 from:0.022369941639813123 as:0.021087228312677144 on:0.0172356317673407 under:0.01498390505170487 upon:0.010776883718346 all:0.01076968385117836 at:0.009069489500290639 into:0.007798543184118058 which:0.007682277526480627 if:0.007416568618434263 :0.07467333602205611 +the:0.25798531495511434 and:0.12191732371889498 of:0.08239604630842749 an:0.07658454047643945 to:0.06521865954095857 The:0.048628122396875015 with:0.034266810694805167 by:0.02756010425944755 was:0.02426312445816307 a:0.021153289944883552 tho:0.019834941882091027 their:0.018502378752905935 be:0.017888280680773472 been:0.017395112922924102 have:0.01651650818299125 most:0.016473335467045335 which:0.0150472519807621 for:0.013737418549858141 were:0.013671736902560516 :0.08995969792407893 +a:0.12830309029177855 of:0.10703991810387324 the:0.08934835817118329 to:0.06929231489784926 in:0.04786998667141324 and:0.0395033728035038 by:0.030842556467414822 with:0.021144989087010502 that:0.01621999567455578 on:0.011995044473556246 as:0.011733954127070059 for:0.010547378668632992 In:0.010542003664623396 at:0.010270121807106835 :0.00937633698634612 from:0.009372409490866878 The:0.009124913928973372 A:0.008792048129324092 his:0.007680284396973448 :0.35000092215794404 +made:0.07691195073979884 and:0.06170372315675989 followed:0.047579260249681524 accompanied:0.046066839087605935 up:0.02979912449720467 foreclosed:0.02675858660514054 given:0.02583137970269292 surrounded:0.024295001005174257 caused:0.02140399242650442 was:0.020786931248253347 ed:0.019845973089428426 occupied:0.019661136887208514 done:0.018239559386064474 covered:0.01722638859247433 owned:0.017102522382688813 taken:0.016490979431875222 that:0.0161097695732159 secured:0.015620685693234576 him:0.015489024150687498 :0.46207717209430593 +of:0.36493539642415856 in:0.1087493296476383 to:0.07253113352983195 by:0.04998322975676103 on:0.04756843508941101 for:0.0453830629678665 and:0.04366950830388332 that:0.0403039785378068 In:0.027423239716094817 with:0.02711337311576667 from:0.02700376474368031 upon:0.014973197404968951 all:0.014956501146574718 at:0.012955473097766712 as:0.012753016718782402 during:0.012652052791741796 when:0.007924885457501012 through:0.00790142023393953 into:0.007302404212267713 :0.05291659710355792 +a:0.49547781144649405 the:0.18079278214764657 A:0.10945489054109012 The:0.03048100564640082 this:0.02343007883846186 and:0.016800015212126797 very:0.01578435738731676 any:0.011881287974201887 one:0.01163863809739789 at:0.011571227106839688 most:0.00906962014680759 tho:0.008992399073021837 of:0.008235222618965093 first:0.007343933425924073 that:0.0069492847132037435 This:0.006814184533235514 no:0.005673959049019381 every:0.005630117988852094 his:0.005473028003987315 :0.02750615604900689 +thousand:0.21793693587065602 hundred:0.10450089596322486 of:0.05246189462445206 million:0.04413368342121029 fifty:0.04197558688783535 ten:0.029909644138728736 five:0.028355157033969538 sand:0.01522605612722017 to:0.013339921297261968 nine:0.010181451682399189 dred:0.008622397707098913 and:0.008406092539063034 two:0.007952575514591588 six:0.006875062460751541 twenty:0.006628985257088262 twenty-five:0.006615703936308748 thirty:0.006269506282044886 100:0.006249109541968642 three:0.0059893543910520585 :0.37736998532307414 +the:0.3177472624608239 this:0.1422038003119358 This:0.12432687509061867 The:0.10801546903123639 that:0.05089768791630652 a:0.045417156011692536 his:0.023588826219409383 tho:0.019963438674020787 which:0.014589833541726261 and:0.01331403917695119 what:0.012131248645024935 our:0.010146966041227352 said:0.009492540190395199 their:0.009438508664136163 His:0.009133061817191266 her:0.008110341601910522 of:0.00804575248950982 no:0.007955406289792195 whole:0.00773518396478081 :0.05674660186131034 +the:0.24324958114271356 and:0.13470783598021244 a:0.047413065303066215 The:0.035821587288233515 his:0.03443809152776707 of:0.026352126240996965 two:0.023783510858406878 their:0.02226425391362425 her:0.02135873158993603 those:0.020803909327817168 all:0.019840776071163135 these:0.01974718755863886 other:0.01782660241677093 he:0.01676144040522543 this:0.016721134252315896 some:0.01520520697934179 tho:0.013955557366234227 our:0.012546347026057985 one:0.012272911523137928 :0.24393014322833972 +the:0.5448308972792827 of:0.09485343529789804 and:0.04114188826194257 tho:0.02886173604170696 their:0.022311460223973553 other:0.01929698507123277 The:0.018486684178449793 his:0.017050502317025946 in:0.016628062259356636 two:0.014934382873584564 for:0.013830011387108617 its:0.012120598525169904 tbe:0.011668610592701816 these:0.010944644823579666 our:0.009238155751034031 with:0.008766422504582639 same:0.007953974332269369 a:0.0075481073471880475 all:0.007328134642487804 :0.09120530628942451 +the:0.4071374189315913 and:0.06449181461132415 of:0.02892866618288876 in:0.028670005984162618 The:0.02603617389223924 tho:0.024993820467459137 a:0.023579040051412606 to:0.01755553213771617 on:0.014626070241060114 by:0.013447843485786471 or:0.012794166593089693 tbe:0.012024509152999897 :0.010353482361299817 that:0.009291482237329618 In:0.007938246807075932 from:0.007526799010378873 other:0.007469196869028889 all:0.006409533041696086 for:0.00626887758057738 :0.26945732036088327 +per:0.2908511435465278 a:0.2704837792983597 the:0.13843852259543352 last:0.05181941112684287 every:0.03412977261456435 one:0.03294525191091441 this:0.019073056117201535 each:0.01777860172209404 next:0.015296514881651133 his:0.012994076134925734 past:0.010029112189676602 other:0.009555658515019386 our:0.005965186480625703 some:0.00585108816897197 of:0.0057923061738570395 tho:0.005461414259288239 to:0.004782543205624518 that:0.004775030699729066 their:0.004669332806627895 :0.05830819755206448 +the:0.36595494229836467 a:0.19544313160873128 of:0.061315249375980395 The:0.0450491694016476 very:0.03404458343508945 and:0.024675922911354203 as:0.023381985724800294 tho:0.019335011283692183 all:0.016115007180830844 no:0.012681986883493522 in:0.010509862133029289 by:0.010397885324765275 that:0.010395381039960903 with:0.00990248243405394 is:0.00933938228310063 his:0.009194361046419927 tbe:0.009013526863795206 such:0.009010968198641521 be:0.008884480900501847 :0.11435467967174699 +Sec.:0.211206116804551 Section:0.19424012369713978 SECTION:0.044589037160574094 March:0.033359202369361636 May:0.03271039582226315 July:0.027991096319103664 April:0.022483120502550184 No.:0.021649592033344725 Sec:0.02026619096483124 .:0.01826038565343835 June:0.017331247412781563 :0.01575199852507786 SEC.:0.010096362660957996 See.:0.009040294716961486 August:0.008645962616456202 January:0.007919659694403718 and:0.0076491134608299705 February:0.007007009772135151 lot:0.0066252536901727985 :0.2821778361230654 +it:0.11875642763280783 he:0.09519356198481815 and:0.08967697546159549 It:0.06292853087961199 she:0.045992212438339855 I:0.03343353930007142 which:0.032678944680041046 He:0.029726183789374753 that:0.026833710030034687 who:0.02170808722743656 as:0.016412820844323644 man:0.01593675469663752 there:0.014968369536834739 be:0.01462785479493063 She:0.014178202423958198 they:0.012377795332780727 one:0.010252786098842713 money:0.007954855358988775 so:0.007548000374182406 :0.32781438711438887 +sum:0.03352282876311118 number:0.028116684882597106 line:0.019995206059833036 city:0.01946514558931857 out:0.019275318828420953 day:0.01666865340772654 county:0.014872697538657208 amount:0.013254184849875051 Board:0.01252325449624941 town:0.012449555905674143 side:0.011663975251122375 part:0.011517157473718155 County:0.011460540331966697 state:0.011087331502382173 City:0.010878919191854432 purpose:0.01081028255427907 and:0.010297866493795984 way:0.009848747943663767 name:0.009522170936943183 :0.711769477998811 +of:0.11831035255435417 and:0.10232799789969581 the:0.09571269710110979 in:0.05967215659021669 to:0.03985591864444199 for:0.03963952872492164 that:0.025965830964425056 at:0.01958500576592774 as:0.016370303642071562 which:0.015579494163107674 a:0.014833622913854781 from:0.014741529648951972 or:0.014609392387172036 with:0.014395770213018879 is:0.013549834632346998 :0.013497557562218935 be:0.012702510161324065 In:0.012236829476792636 in-:0.0114417248744888 :0.3439719420795588 +of:0.19253022776877277 to:0.1572130167071814 with:0.10218265437412818 at:0.0764369735890985 in:0.05204458178738223 from:0.04597009314066989 by:0.042452645528320475 for:0.04152406800545796 on:0.040552636947168895 and:0.040513743410251976 that:0.03149302235355722 upon:0.022262860475523606 gave:0.014085721179899542 over:0.012149702374984842 as:0.011081695313763098 about:0.010681832681930683 or:0.009480289901735455 In:0.009415385785409796 give:0.009274749128028613 :0.07765409954673491 +the:0.3980731811057522 of:0.07850012425405455 and:0.03596309638758628 The:0.023352018018559653 tho:0.022632661105651687 a:0.020115971815893297 or:0.014697249090989128 our:0.014520460448243407 his:0.011785255712908452 :0.011641366148713425 Mr.:0.010124155272988978 in:0.009771867229177394 other:0.009372683019260915 tbe:0.008789820437023222 this:0.008492374750824132 their:0.00843001663762814 an:0.008245127535139625 great:0.006737939273820626 to:0.00664436732480397 :0.2911102644309809 +to:0.16820287409390067 and:0.13211465827242655 of:0.029932185772674622 I:0.02801189662565193 the:0.023136484902272852 had:0.02159773518167427 who:0.02101222318379878 would:0.020936132923728618 not:0.02054076211858964 he:0.019376995570204676 will:0.018181966020541014 have:0.015230816872065931 or:0.013317407078060686 it:0.012745920907422189 that:0.012430437018850944 in:0.011578040496112161 has:0.011381112264303052 which:0.010963520314163977 was:0.010502414123789373 :0.3978064162597681 +and:0.03868242960999506 as:0.031124813427855922 went:0.02352509775927722 him:0.02196555539050794 them:0.018760608639018784 up:0.017985449426794205 is:0.017894175620344187 go:0.017174904667157563 able:0.016756848979943888 going:0.014481672239490295 it:0.014128375989346808 was:0.013277058274565138 time:0.013249953793837373 not:0.012469887553778763 began:0.012465717758716884 way:0.012105610030480113 back:0.012090864562211581 right:0.011941707822828511 amounted:0.011564315359310868 :0.667354953094539 +the:0.16807735899698817 of:0.10541662057906837 and:0.05138367848570702 a:0.04141865232648221 to:0.0385989743764065 in:0.026264864977736738 was:0.019530675665220657 his:0.018900421021236905 be:0.017373825006196972 their:0.015767721170721456 for:0.01557246589796783 with:0.014071419046630446 is:0.012922913111931644 at:0.012690452250034052 are:0.010702713108721902 .:0.010158075558988393 Mr.:0.009672788574483367 tho:0.009612591781990074 were:0.009549306361446321 :0.391314481702041 +it:0.24821867953307553 It:0.12491417828142069 there:0.069306522105283 he:0.059799171357782996 that:0.05448913452171614 they:0.04308045581579138 which:0.03975166646880763 and:0.028391784481365753 I:0.017785057885554047 what:0.015014723986643873 who:0.014813518986538871 she:0.012277284734011025 There:0.012075841823057449 This:0.011660321731650861 as:0.011471599182449319 this:0.010417679117785841 work:0.008583289274340197 He:0.00780328791147001 we:0.007024892215396919 :0.20212091058585846 +a:0.25590966608950544 the:0.24425059795293227 of:0.08274856001210962 and:0.06288805702738234 in:0.03761238399177547 to:0.033361328235442585 their:0.03153102503194157 with:0.030385618620920776 his:0.027839039309230505 The:0.02675148563400259 its:0.025750002546776733 this:0.013271639609521836 by:0.012717405131520169 our:0.0126013428442724 tho:0.011951438285942622 her:0.011946036173554497 A:0.010609507016438547 or:0.01046662984035513 from:0.010013120331226573 :0.04639511631514833 +one:0.1028303141280697 part:0.05963429477052991 out:0.04766456937681193 some:0.031418679026461914 members:0.030764490253327767 side:0.029940657362655835 portion:0.022063658796890564 office:0.020457735219956013 member:0.019726706386316174 end:0.019666887540649894 tion:0.018667441728710307 parts:0.016814747270460957 people:0.014112771422418794 all:0.014072739582212475 any:0.013183573287639892 One:0.013083578354183906 that:0.013024335602903442 account:0.012482348155001894 many:0.012077825070275192 :0.48731264666452345 +the:0.13742010605008512 and:0.10207877426319824 of:0.07397450603172974 The:0.03323666966533758 that:0.028170308219414686 these:0.024611712608994665 These:0.02321426573404504 in:0.02233958880195577 such:0.018503551962230223 to:0.016786282210728126 or:0.01636101860162539 which:0.016209694122772757 as:0.016160870658285174 their:0.015028655951173324 :0.014297837749869223 our:0.011954104112023089 for:0.01170272696380604 many:0.010385161604963049 other:0.010218895688899507 :0.3963452689988633 +the:0.12206837496787275 of:0.10516192293487399 and:0.056650690902444886 The:0.03175128708555386 in:0.031711832524295734 that:0.028661653403449276 to:0.023061192413909453 a:0.017181263200414916 Mr.:0.016294778631247325 for:0.015792935957576366 :0.013394947173780645 which:0.012802104419835798 as:0.012277003634163633 by:0.011638742352156613 or:0.009429350093559481 he:0.008780855649832303 tho:0.008319853242690573 other:0.007196948334789192 -:0.007182151176149171 :0.459642111901404 +able:0.0658608267970607 enough:0.046442231589664665 order:0.04508012521858414 and:0.04305147626676072 right:0.041665586565233066 is:0.04164680675692466 unable:0.03982818855642389 began:0.0362731060048713 ready:0.035880972045779475 him:0.03582625359016541 ought:0.034040777376664805 necessary:0.032934483398583875 want:0.03238185394793794 them:0.02915297291699012 allowed:0.028083197619811727 going:0.027081130015462362 attempt:0.02638675168099446 as:0.025526509126494932 prepared:0.025451710181173412 :0.30640504034441834 +to:0.2832387851020851 will:0.19778855826971317 would:0.11743494240401285 should:0.07457410833482446 may:0.06488433066569635 shall:0.045726602828510064 must:0.04270769935519139 not:0.036805169364297466 can:0.029864837823084196 could:0.020625668525998016 might:0.018505101990267725 cannot:0.01420778839443864 never:0.004515495912631727 and:0.004347455083575689 it:0.0035142225314778795 also:0.0030254271435538513 To:0.0029520335424849118 soon:0.002929029688343219 only:0.002924020135004456 :0.028428722904808863 +was:0.2207922506082637 are:0.13030691010261677 been:0.11434793230417989 be:0.10994796533848289 were:0.10276687600078122 is:0.08963511134125077 being:0.032893955782612096 and:0.019980515683697388 not:0.017329306151898923 am:0.015307445759553112 so:0.012213483373460284 Is:0.009868602575293152 bo:0.009070667428248544 seemed:0.007233797418466555 it:0.007067622338045206 had:0.006009512607368656 or:0.0047746416342398365 waa:0.004396949160175958 too:0.004272021370978156 :0.08078443302038686 +he:0.10021587291520208 and:0.09446377659703384 was:0.0903247916821452 be:0.08559199631056504 is:0.037736017057814215 I:0.03347897509876133 been:0.032370388877660784 He:0.030529823045773275 were:0.027878427392071678 have:0.02637257266005439 they:0.026128357835412657 had:0.0261038200018993 who:0.025158046708138385 are:0.023394327365127917 she:0.021790419932599663 has:0.019070844755929982 it:0.015301043364009503 being:0.011194212983970447 then:0.010724250638969915 :0.2611720347768604 +one:0.1028303141280697 part:0.05963429477052991 out:0.04766456937681193 some:0.031418679026461914 members:0.030764490253327767 side:0.029940657362655835 portion:0.022063658796890564 office:0.020457735219956013 member:0.019726706386316174 end:0.019666887540649894 tion:0.018667441728710307 parts:0.016814747270460957 people:0.014112771422418794 all:0.014072739582212475 any:0.013183573287639892 One:0.013083578354183906 that:0.013024335602903442 account:0.012482348155001894 many:0.012077825070275192 :0.48731264666452345 +and:0.12751280082485839 which:0.12030252347418552 he:0.07151014339947181 that:0.06581408636542142 have:0.06145701028020405 had:0.045976706264805586 has:0.04206948241839824 He:0.025896971219831748 who:0.01996874788720248 then:0.018998218471800794 I:0.018852395356294335 it:0.015032500852418215 she:0.014210439328736533 This:0.014126590745310329 was:0.01291411603385376 they:0.012521649598677761 It:0.011537379027365336 having:0.011505805238398356 but:0.008266022790577716 :0.2805264104221876 +the:0.35777433256725183 to:0.0562842218835823 said:0.053901072138691324 either:0.0481657598495038 this:0.046391489856803574 any:0.03642789229433054 that:0.024962045050650517 tho:0.02364063969568788 at:0.022335219957386975 one:0.020132339006494256 a:0.018957517127038647 an:0.018875424542021776 and:0.018633071249605844 of:0.016325700959749553 lower:0.01336644969229291 tbe:0.012405981252954055 each:0.012024766209332998 The:0.010457686782599637 upper:0.010167439198051326 :0.17777095068597024 +of:0.21132672503265548 to:0.12746684067022918 at:0.09233193659519962 in:0.07118741406714443 for:0.050495470952445186 and:0.03416233790087154 In:0.027504853096183685 that:0.0231426166907873 with:0.017552779829275996 from:0.01737000405263377 by:0.016463602367294418 on:0.01618846955016313 about:0.012267986118391264 but:0.011629910825888297 is:0.011445961580988616 during:0.011251877487045384 under:0.0112154120765955 At:0.00865578019949303 until:0.008168150168231516 :0.21917187073848265 +to:0.19347373004605264 and:0.11581591780094293 that:0.10138799357824158 will:0.06655363013462992 which:0.04622675024771284 as:0.04237136932118861 would:0.03669772891078095 but:0.024199843023761398 not:0.019505714862231096 should:0.018403967344029062 when:0.01574508232720379 may:0.015676982287670442 shall:0.013822114441608725 for:0.013229240599022765 said:0.012387814273880639 than:0.011946039437916086 had:0.011431431083914902 t:0.011338967675397866 then:0.009683248045026679 :0.21910243455878706 +and:0.08108270614863076 was:0.03337636190782731 file:0.032365821031463564 that:0.03137990279433599 made:0.031314984504834185 is:0.024290147357214256 but:0.021687652297752987 people:0.02163715691248356 them:0.018308540566945117 up:0.01813290259134375 not:0.01719986021882492 men:0.01717207578350124 as:0.01527406663907151 be:0.01497643366346667 done:0.014786995807637341 him:0.014620604766485782 been:0.014434796482095821 it:0.01410461709779158 interested:0.013562642022294564 :0.5492917314059991 +It:0.2542294303873996 there:0.12782348782792471 it:0.08171619760424016 There:0.08125995832975863 This:0.03410219657576603 which:0.03172832127680203 that:0.028847145217911582 he:0.02710183567971819 and:0.016257629805421062 He:0.016193340871905267 this:0.01269340954349872 who:0.010004949206161885 I:0.007318147523309761 That:0.00711215131531512 thero:0.007060289432647929 she:0.006272120367336847 Here:0.006024515156153281 :0.005841883153821616 what:0.005699859256345203 :0.23171313146856237 +a:0.23703948313435524 one:0.10620749735010496 the:0.08013272422174056 northeast:0.07063982086672063 southwest:0.040779971925795015 northwest:0.030824716306444063 southeast:0.029373567554003208 this:0.028787623223040994 next:0.022526414000892926 per:0.01999381703158786 first:0.018863276200652597 every:0.018077531631280848 A:0.016458106658453025 to:0.016179872857497998 east:0.01592743031277153 his:0.014210165735090308 second:0.013301032769953933 each:0.012983601584951541 any:0.012700101437303865 :0.1939932451973589 +I:0.14320715925475955 would:0.09377310090620937 they:0.0847452999102177 who:0.07778899053328354 we:0.05743152245181869 to:0.04767024878249183 will:0.03878315718093559 and:0.037446812902498315 you:0.035601536374398855 could:0.034914945767544815 may:0.03122694061851878 We:0.030944154519823464 must:0.028235668872544625 should:0.027040387305997424 shall:0.025601621180709286 might:0.022490603542608366 which:0.022069384505435365 They:0.02059779432686125 1:0.019599155467568633 :0.11983151559577453 +sum:0.03352282876311118 number:0.028116684882597106 line:0.019995206059833036 city:0.01946514558931857 out:0.019275318828420953 day:0.01666865340772654 county:0.014872697538657208 amount:0.013254184849875051 Board:0.01252325449624941 town:0.012449555905674143 side:0.011663975251122375 part:0.011517157473718155 County:0.011460540331966697 state:0.011087331502382173 City:0.010878919191854432 purpose:0.01081028255427907 and:0.010297866493795984 way:0.009848747943663767 name:0.009522170936943183 :0.711769477998811 +of:0.09850476273527224 and:0.08425790361372397 the:0.08067374949423556 to:0.05294735933592163 for:0.02024611240185327 in:0.019841205631864686 a:0.015972288624009432 which:0.013817713625468788 that:0.01364230723625318 with:0.013185370214505072 be:0.013066348874518427 as:0.012999221140153701 was:0.011251160738585227 their:0.010610994016976995 or:0.01041157877367766 are:0.01026526140990455 The:0.009750571600484733 :0.009579836721281794 is:0.009473269335817727 :0.48850298447549134 +away:0.05746860598250849 and:0.04985561698690421 taken:0.03950823995165392 miles:0.0355312759828073 feet:0.031845900191456514 come:0.022313957473317422 them:0.021637161013586904 out:0.020621546731341717 came:0.02000539576637417 up:0.019820502682224503 him:0.019195504147748815 received:0.019046714556510396 far:0.018152378296247898 removed:0.017489734983720518 down:0.017467467859455896 it:0.015386533775439217 years:0.01424855034507225 annum:0.014237643714946796 free:0.014107989586278378 :0.5310592799724048 +of:0.1982838656193466 and:0.10360785279610511 in:0.09372104082024972 to:0.0829659297518808 that:0.08172154069757008 by:0.05224170129765828 with:0.04906903173943374 for:0.03856787517507942 at:0.032799188956939285 from:0.018241140650629484 In:0.01591766816816123 almost:0.014850088495527115 but:0.011987242832968432 which:0.011608473555276782 as:0.010539615271451206 on:0.009318662179037623 when:0.008345220349004817 nearly:0.007027513766491051 where:0.005980651415262339 :0.15220569646192686 +on:0.15577900654588334 was:0.10800785746933621 is:0.09146531769609327 of:0.06694998557656161 and:0.06464788335867265 as:0.05985600683454881 in:0.05189880525448963 to:0.04575813260786592 be:0.035365365825576006 for:0.032710475448174105 or:0.029586129776527054 with:0.028955252253649446 that:0.019355114328520943 made:0.019082537894151767 by:0.01848531592681378 from:0.017806099169385154 upon:0.016867010110666013 such:0.01645758303229017 at:0.014045291002836871 :0.10592082988795724 +and:0.1289780794284744 the:0.045291581263875585 of:0.04451308003364827 be:0.03976722322513227 which:0.03516947497796629 an:0.03259686050424615 he:0.03237509455816283 or:0.029914900521285877 that:0.0261263106680092 one:0.025777849577117422 for:0.025034765552665383 from:0.023418586313678706 is:0.022105753423812758 was:0.02165467102659788 it:0.01999082499138897 land:0.01917832075116506 as:0.019089792637257092 said:0.01747197027616357 :0.016839648665917657 :0.3737052116034346 +and:0.09866518326772991 was:0.06786161030641734 to:0.06642781204289357 that:0.052437013694778385 of:0.036364775575402124 after:0.028966813589371632 but:0.026699032358558507 is:0.024201751950590333 or:0.02065723912715011 for:0.020518490262917313 last:0.019197905848796454 in:0.017276395504125377 as:0.01592233599725995 told:0.01566603510768896 were:0.01460589444062574 until:0.013871448244117422 about:0.013547841000121545 be:0.013447264445834491 which:0.012363937372541968 :0.4203012198630789 +and:0.11169052056022286 is:0.08376118166055223 fact:0.06317478419711188 know:0.03571844277582256 so:0.03393916600893385 say:0.030235927980995753 said:0.026063498457929074 but:0.02526408146519412 was:0.025085058786175563 believe:0.024459824698187086 Is:0.019641462142472522 see:0.019172393069964665 found:0.017027376003201533 find:0.015153383575172019 of:0.014710768670748296 think:0.014372000794719017 reason:0.014099659432687095 show:0.013916398210489282 says:0.013829422379480046 :0.39768464912994056 +the:0.07727671398976102 of:0.07486901057497489 to:0.06576801374968645 and:0.06364469398547178 be:0.04404465700448548 in:0.03934237410689576 for:0.032905587969673966 was:0.030208731654395856 is:0.025925500796666442 con-:0.02285238347713757 or:0.02127332210315157 re-:0.020949441608298442 a:0.019985098955781763 he:0.01977017367980431 are:0.019487690401696182 not:0.01776257114712816 that:0.017683217455063793 been:0.017349511731917486 which:0.014329289440064251 :0.35357201616794487 +the:0.11919516938815296 of:0.07230453158552728 and:0.05781056740443249 a:0.043018564803886335 to:0.031305092790907506 in:0.020848713353460488 at:0.014270110001066288 .:0.012526810245749479 :0.012413283442322082 for:0.011719122709941797 by:0.010808400946589808 or:0.010404172990115616 The:0.01003576004804544 with:0.009811868184449042 tho:0.009295902015355835 was:0.008924239095331684 that:0.008672304223433876 is:0.0085591147338948 be:0.008335143826716943 :0.5187411282106204 +in:0.27639047855874294 the:0.07243500879228965 into:0.06116929969172836 their:0.054834276842488046 his:0.054758258166701886 its:0.05121035547863338 In:0.05080250798123725 of:0.04949297494740044 and:0.035913455122166336 right:0.02929437577263524 this:0.026746019134132965 own:0.01902780767135106 no:0.018771993892789208 her:0.018093543740355756 that:0.017323670286566464 good:0.014708543015089974 for:0.014605445910109992 to:0.014491446050150406 same:0.012951161497345012 :0.10597937744808565 +the:0.08741288820481248 and:0.07392080242938477 be:0.0572668144792991 was:0.05686739458441792 of:0.05297029938296901 to:0.040095074017987696 is:0.03448309022071693 been:0.028380973754521515 a:0.02485235362607966 are:0.02226522268065813 were:0.019682022343204007 in:0.019454144698829248 or:0.019273705289081854 as:0.0158232132157123 not:0.012361914460680723 being:0.010097596398749334 for:0.009388164492904385 :0.00930537568905371 their:0.00894740846790883 :0.3961515415630284 +:0.049353064647958245 it.:0.020772633351667995 them.:0.015209329661722094 him.:0.01081151283647521 time.:0.009927102898812146 .:0.009630963534836943 years.:0.008672196565015602 day.:0.008396059501766332 year.:0.00797516062589161 again.:0.0076358795043313275 country.:0.007374702089422193 up.:0.006488986556219499 water.:0.006202513528281492 all.:0.006085853277109861 feet.:0.005744667861502826 one.:0.005437564981391659 work.:0.005378740448655132 night.:0.0053347228841173645 other.:0.005084237286824897 :0.7974841079579976 +for:0.5692274222279893 For:0.08669361957569444 of:0.0616001701053818 and:0.040845125398277816 in:0.02764270717754931 the:0.023920831613846335 about:0.020334431125112854 past:0.016814644834741224 to:0.015841841945120467 spent:0.014633402819630848 after:0.013845557182866883 are:0.01179865874071401 than:0.011341530672040703 at:0.010978702809893897 was:0.010765549682261066 by:0.010399597945247637 or:0.010064089389170581 is:0.010012111878877263 After:0.009615543028598206 :0.022624461846985394 +of:0.127147929758898 as:0.12213894418806087 in:0.07094649557171707 to:0.0647261014345394 for:0.05146307821461392 and:0.0460350309320333 with:0.04333074808161785 is:0.042947326267378204 that:0.04185872587146606 such:0.038744140387524086 was:0.03345828344318155 by:0.030971621258008494 at:0.02919823634012321 on:0.024336665665122992 be:0.023661982309557347 from:0.01712007638929906 In:0.016668156595123877 made:0.015709339322683216 have:0.01327267347310493 :0.1452644444959466 +J:0.07401782046447476 .:0.061897475356266704 of:0.038450067440701105 and:0.03679334112729357 the:0.03137559349443254 W:0.02877613666426917 to:0.027405282083882196 J.:0.024226450342693204 A:0.018689816875519485 C:0.018474575355384364 H:0.016918587775937858 John:0.01665437507202802 E:0.016322269958996976 by:0.01553106663212787 A.:0.01526510619921079 Mrs.:0.015163012288988129 S:0.014984013727239889 M:0.01481627840965404 W.:0.014376157238685737 :0.4988625734922136 +the:0.237643510362392 of:0.11802034766583251 and:0.08446840778227545 The:0.04273157702618977 per:0.029573669008075284 a:0.025042458216480937 by:0.022750932706924243 with:0.017834124922196774 that:0.017512951669886596 their:0.016418177826716673 tho:0.014737493993789815 to:0.013961700650530465 his:0.013366909143821354 all:0.013327653452822457 :0.013269375148729319 for:0.012475238607958246 this:0.012422190985277502 our:0.01226480497951716 or:0.012133932552934809 :0.26904454329764865 +and:0.07342464673340349 o'clock:0.03232008336673112 made:0.029298095105535556 recorded:0.027445232915888625 was:0.02599943582272528 up:0.025049160859899302 that:0.021780641869299917 it:0.021595579027671227 is:0.018997994012752057 place:0.01670468139938062 them:0.01633934600592949 part:0.016289877314894414 him:0.01611152948547677 but:0.01577437738752311 out:0.015536589083717087 found:0.014661633555119062 as:0.012657027346448432 held:0.012471869637912596 placed:0.012356820529777093 :0.5741853785399147 +necessaries:0.07060965071052092 out:0.04555624699296713 amount:0.03394203536135697 number:0.03370541993015659 state:0.032474659485594415 cost:0.023721754821083043 point:0.020804437397472994 kind:0.02068296452115013 system:0.019597707736885128 matter:0.019353913366319576 line:0.01845942321234778 purpose:0.017682710178550956 source:0.017450183847110227 means:0.017045128638540873 years:0.016000449850785522 lack:0.015785044846173043 piece:0.015742337772752104 kinds:0.015478081165362293 loss:0.014755862122918222 :0.5301519880419521 +the:0.27393436668507976 Wall:0.04773959941539159 Main:0.03133632354259076 of:0.01917715230681945 at:0.014557069084920611 Third:0.014183421024169104 Grand:0.013767814778893462 tho:0.01321246896578505 Fifth:0.01272356204924186 Sixth:0.012375673717835146 Pacific:0.009708711171521759 Market:0.009517808723939826 Seventh:0.008981235443024486 :0.008844562891599577 in:0.0085011307031478 said:0.008492889281502132 Southern:0.008206773694022998 York:0.008013183414182534 Fourteenth:0.007858048240686605 :0.4678682048656455 +have:0.06344281767729552 had:0.05775015441736042 and:0.049440532784198805 is:0.04712328331176118 able:0.04579398117021592 him:0.041158421702660486 not:0.03985473155465372 enough:0.036251724408619665 time:0.03402770081276395 them:0.030851498423683777 unable:0.030657789877215364 want:0.029182519396355498 was:0.028732778055351748 seemed:0.0254921804324813 as:0.024663496909679023 ought:0.023202688101730713 necessary:0.02285136956925389 order:0.02273571697529529 allowed:0.02191882898621908 :0.3238677854332046 +arrived:0.07718395138404315 and:0.0750763854463639 brought:0.07491700233859173 was:0.07217183505417181 came:0.05152031079221869 is:0.04045186190913828 are:0.038124476969460266 come:0.03278839442485232 held:0.027194727100979473 were:0.02522891909308733 up:0.024150832393083188 made:0.023313873727912326 given:0.01917927135811697 put:0.01802138189942474 stay:0.016439354193363457 sent:0.01640160721127512 been:0.015536418189043668 left:0.015240827993995627 placed:0.01427124115665562 :0.3217873273642224 +hundred:0.02334136986593815 up:0.005482494641173394 men:0.005366536521246011 Hundred:0.0047587970519216575 John:0.00441808156134956 William:0.004390720675819281 him:0.004016828614280843 ;:0.003997112205305733 due:0.003721199871732 in:0.0036582900032443304 time:0.003637206863828461 James:0.0035594902370151707 out:0.0034878448964120057 .:0.003467980723571515 1:0.0032804584819785204 day:0.0032444781513863933 ,:0.003058139385740603 :0.0030314555521939613 Robert:0.003005471634785646 :0.9060760430610768 +the:0.15092075996625018 a:0.1000353719846766 of:0.09445102560236565 and:0.04724965330194334 in:0.04189905163377134 to:0.038882297373422144 for:0.023209793990697464 his:0.015820165171310997 on:0.01532528962730177 that:0.014465998662955941 an:0.012999243216067229 their:0.012154594819582164 as:0.011755135822996832 In:0.011464322300261384 with:0.010847113418276013 at:0.010818203176108002 The:0.010661469341253251 is:0.009862755320393816 this:0.009526488079006886 :0.356651267191359 +a:0.23380601014430707 young:0.11009704282226508 the:0.09315932808436125 old:0.03246738869857568 to:0.03007032197636889 and:0.023008181162030805 of:0.019728180283675324 every:0.0168408247564801 A:0.014518342563549938 free:0.013668470858630195 one:0.013562813291639329 poor:0.012295533272599937 The:0.012155212895417569 American:0.011561616248688619 any:0.01021837409823806 our:0.010092584241334685 colored:0.009674614415763772 her:0.009070350077990013 white:0.00902376823770601 :0.3139810418703777 +the:0.6134972711026324 a:0.0598458036164331 of:0.05615437187653311 The:0.039570488422513025 and:0.028168889959098876 tho:0.026645964385741686 to:0.023790468413281383 their:0.022362698213062814 our:0.0192351557085077 in:0.01485061245514421 for:0.011248639954088703 with:0.011044024568425424 on:0.008642804074602318 tbe:0.008277029125835634 his:0.00824563666814582 this:0.0075169044396701 its:0.007414169419850673 by:0.006354760344313941 some:0.0058315870114307635 :0.020302720240688264 +the:0.24723978371121613 a:0.11779817029052742 of:0.08190276700367594 and:0.05396767482802626 in:0.05281541504082214 an:0.031856852159646516 to:0.01916525558708999 tho:0.017281830527357794 The:0.01581738506477014 In:0.013762443017307505 for:0.011901847456834055 with:0.0111901518201421 by:0.009878967276741505 tbe:0.008938079219548109 this:0.008875634239821805 or:0.008843844581792751 :0.008463320241440286 his:0.007844699803293173 that:0.007515073902924399 :0.263940804227022 +he:0.16022610155947614 I:0.14444289493953144 that:0.06337105857062869 they:0.061134697312854806 it:0.056816001719807156 and:0.04648178128702652 you:0.045135703249658404 we:0.04020179364641783 who:0.033136119553144744 which:0.03186290057359717 she:0.027512394810103757 It:0.015634596121683383 one:0.015206979391354498 what:0.014586665971719379 as:0.012511891684546998 He:0.011380801005467758 man:0.011238283229677902 1:0.010938469504997451 ho:0.010865883683739681 :0.1863149821845663 +of:0.30587203950363373 on:0.10662242461762496 to:0.08171532044484374 and:0.0655624360570769 in:0.05169503597193587 by:0.05001204242025427 that:0.047280813091966474 from:0.03026714320697387 with:0.029609628718908966 as:0.029581368767371587 for:0.017556521558368194 upon:0.01530952965632411 all:0.014429451113534362 In:0.014213651516249327 when:0.011236015330607097 at:0.01034996725862771 which:0.009168391096587462 over:0.007997539619307686 was:0.007702043960589761 :0.0928186360892139 +of:0.06695954584706283 and:0.06649137032642373 to:0.06601061952379313 the:0.06171729943033423 in:0.05467960970092213 a:0.028607847520134077 was:0.025593805541454278 is:0.025575134465780882 for:0.02227513014141085 that:0.02203423644291701 In:0.016378139785638783 or:0.015262626560564149 at:0.014440266861137486 be:0.014337880734617895 which:0.013575436189030142 be-:0.013320788275858104 on:0.013254535972039225 are:0.0128330814609448 :0.011498114248276568 :0.4341545309716597 +of:0.11558864932890356 in:0.09150916715920814 to:0.08460536165360605 for:0.06596536446360765 and:0.06353721426746167 with:0.058564034177564096 is:0.04967889413542876 as:0.04603898156319196 by:0.04427583359889217 was:0.03561319374527163 on:0.02691995765637506 that:0.02581454522523754 In:0.019719256930342478 such:0.019592890617928807 from:0.019248467661482915 at:0.019044383867436 made:0.016475898221125367 be:0.01627835909618688 make:0.014831725510705574 :0.16569782112004372 +hundred:0.062433955647376166 men:0.02094866540410435 land:0.01708181032288831 gold:0.015350700154088964 power:0.013492335886294149 one:0.011775880390148586 States:0.011088669182468805 life:0.010871779575480627 Baltimore:0.010004860320273697 city:0.00963800000836391 man:0.008973038449136092 dollars:0.00860723909622748 judgment:0.00860240182333602 rights:0.008447142133335117 three:0.0078124520663749525 in:0.007731658259818847 order:0.007554081164537804 place:0.007428977780196656 up:0.007318134384985173 :0.7438382179505643 +to:0.31019601080253456 will:0.13793678134185958 would:0.07774183426288846 may:0.07078528459128908 should:0.05127128910568003 shall:0.04901700088221223 not:0.04594340671139167 must:0.03257846389794495 can:0.03230794200897745 could:0.02086203652199685 cannot:0.017984019065961077 and:0.017474170306863105 might:0.013535476571922157 it:0.006941357203389574 never:0.005186754057084183 that:0.004968373522249409 also:0.0034185027334872305 only:0.0032209125075107173 soon:0.003102154139878731 :0.09452822976487903 +a:0.1404855024029895 would:0.06731009249960225 was:0.04737270613970842 much:0.04692390102404148 and:0.0392676142835084 the:0.03768488292305406 looked:0.029998623281015546 not:0.028167935706156888 something:0.02814069311155141 is:0.028056114072046997 of:0.02383390611165474 to:0.023580735660611307 I:0.021506566976505097 do:0.02054162410692161 look:0.019187105191123394 more:0.0165897098102472 are:0.016353137340567238 men:0.015850207642261027 will:0.01558987433521592 :0.33255906738121754 +and:0.09866285689535641 do:0.057068102237696025 was:0.047801982655627365 amended:0.04658152142316204 as:0.04176866788065536 is:0.038894860951321865 be:0.038140659589091734 not:0.03772128147218103 are:0.034426117905883166 or:0.024878495538802163 been:0.023522727119673688 were:0.019163849589453157 it:0.015283903629758521 to:0.014391773214224605 of:0.013965349731533412 done:0.012664852776923865 And:0.01254716490096375 doing:0.010829678466567882 so:0.010446987483592594 :0.4002391665375314 +the:0.18941070485687136 of:0.07390279899818201 and:0.06570082437222247 a:0.058469243590548274 in:0.024856988432496216 to:0.020873147706783023 for:0.018682659686982638 or:0.017866694612114674 that:0.017028564531941848 The:0.014409173905624696 tho:0.013452762362497402 any:0.012264366938919611 their:0.011649091646265465 other:0.010378896202069391 his:0.010181810078543935 by:0.009890952379887743 :0.0098587277099488 at:0.008693303303851414 with:0.008048251693860238 :0.4033810369903888 +the:0.151564299052826 of:0.09038750472184202 a:0.07461608498201407 and:0.0466615732099648 or:0.03708629888768566 to:0.035569645185394266 in:0.030052392055566975 any:0.021357004017533987 be:0.017082462262097576 no:0.015583554621420614 for:0.01514666947239845 with:0.014723578456062631 by:0.012787654001396713 said:0.012726164481980391 such:0.011693957670550037 tho:0.01002305994460469 their:0.010002787499567302 at:0.00923663004776501 is:0.008936804169325014 :0.37376187526000376 +of:0.24279017729946262 and:0.08836807433691092 the:0.07360404121966495 to:0.0721949411829046 in:0.04029316315548246 an:0.03221953404056112 by:0.029103702894917604 are:0.020981410728177496 with:0.02008745327881709 without:0.018917257055746674 their:0.01889353490305129 is:0.018892852613384335 his:0.014766954983682327 not:0.013203851058011468 its:0.013037022553910618 great:0.012304872790033157 was:0.011847696178575095 In:0.011640143835497689 be:0.011579891407923794 :0.2342734244832847 +the:0.11274823966931571 and:0.08329996793360815 to:0.062372082173126384 of:0.05346002906215973 so:0.0299749817344208 is:0.026294180790411077 be:0.020260006954324915 he:0.018124449911071136 was:0.016351044211737983 re-:0.01567649125103956 Mr.:0.014726716630740086 in:0.013675410003338988 for:0.013272602215284653 a:0.012159264338821467 I:0.012040910229586727 or:0.010977326121126826 :0.01035107289213954 are:0.010219913969554774 not:0.009881708091297656 :0.4531336018168938 +to:0.15897643407266607 have:0.11129893370180567 had:0.10080984132484723 has:0.08512036276312981 will:0.08435347495393021 not:0.06035859573371976 would:0.055845031769540907 they:0.03385345224435983 may:0.029844544800553593 should:0.02805415169400634 and:0.026464257965833144 I:0.024998791642581047 shall:0.02308773450939061 you:0.02051354397326968 we:0.019943477437087936 must:0.019533156928782113 who:0.015620890708359429 be-:0.014977412713881921 never:0.014750090737985581 :0.07059582032426912 +within:0.5113588212931862 or:0.048896015231287226 and:0.04524255052772538 of:0.04422942828610885 about:0.044159419715343505 than:0.04087339677477205 least:0.03497020207955211 in:0.0338894421585256 for:0.033495790678771106 the:0.021597314661764504 Within:0.01893083671840083 last:0.015678346115496813 over:0.013758002992706424 In:0.009570606944331 past:0.008841194215354889 hundred:0.008634984083838415 to:0.008492639548225253 only:0.008455742841489214 a:0.007383742111299317 :0.04054152302182123 +be:0.1084604598837081 he:0.10232963710557705 was:0.07479217055376616 had:0.0742427641128117 and:0.07300648598813334 I:0.0686738391396203 have:0.05361366804427935 has:0.047393450691095795 He:0.03104726328019716 been:0.028530910589160602 they:0.025274908695589324 who:0.023424771210875384 were:0.021116234620756454 she:0.020825306591578118 not:0.015722149040425716 1:0.013197985824231808 which:0.011011580930561088 lie:0.010043462572374083 we:0.009894835329322853 :0.18639811579593563 +and:0.09631219532671687 was:0.03513566928966104 held:0.02987715681559008 Beginning:0.024332169066967536 is:0.023122938489353394 look:0.022074108253454683 arrived:0.021820518428646088 that:0.021226918252779888 interest:0.02006974641058921 thereon:0.01971421054267379 made:0.019401567074562896 are:0.019271449916013022 up:0.01806602795372081 him:0.01678700722897829 be:0.016375054451444982 but:0.01586396852970274 out:0.015503094089883073 or:0.013721423267833084 not:0.012734170433403743 :0.5375906061780248 +the:0.12046165599566894 of:0.05994660597322698 and:0.05326603073240978 a:0.040028153695319826 to:0.03568382255624167 is:0.02034307088016052 at:0.019677256970568067 in:0.017983960578490884 be:0.017913121064106936 was:0.016269377426286025 :0.013860948682858356 for:0.013138926772660599 .:0.01247862643864389 I:0.012027087933815574 The:0.011980372000011176 or:0.010574556794039564 by:0.010002435099276164 that:0.009651137023990935 with:0.009245490984351817 :0.49446736239787237 +that:0.16832451653748762 and:0.16317551195275604 but:0.09202228048090219 as:0.06626898981545905 which:0.05056182452516285 if:0.034268175887251145 when:0.0327999336955599 where:0.02391654490512962 But:0.021638226096886436 because:0.020516735853829505 of:0.017875962661562897 And:0.017367123587138943 for:0.01715484095146282 If:0.016077584172624653 what:0.011042818726600803 though:0.010176208114312196 until:0.009969674033922531 while:0.008769541776912644 think:0.008148981878890557 :0.20892452434614764 +to:0.30089569136539973 of:0.11209019486461713 the:0.08765662397835788 by:0.049354621781184556 a:0.04903844463675021 in:0.0412861687805914 and:0.03769819130975049 from:0.015729413588028672 The:0.015423009182046036 on:0.014598449300964838 will:0.013480553364939465 that:0.012339379843231874 In:0.011824860951909598 :0.011006757632283086 shall:0.010577577063346198 for:0.009918725863536931 with:0.00888149017824602 which:0.008652891550179643 at:0.00825983667976319 :0.18028711808487308 +is:0.14924347457676312 be:0.11135120974609881 are:0.0974614950641961 was:0.08134911289261117 very:0.07329124017312186 so:0.06986055455576683 as:0.05121080370967905 not:0.049329498305719505 more:0.042471178216997287 been:0.04170571957861452 were:0.02847917689151904 most:0.024917471944232245 and:0.022175606420473642 a:0.02178150537189857 Is:0.021607787515154762 being:0.015044215135664644 no:0.014191778134698548 too:0.013155023092610758 much:0.012851893490420945 :0.057521255183758606 +more:0.22951604873868295 less:0.05446607901084623 better:0.05437785556978729 other:0.04776603503379249 rather:0.04220644736629008 greater:0.01755493139543402 and:0.016076566409778555 worse:0.013637358097997371 higher:0.013033638439956375 larger:0.011662242314588745 it:0.010823601313687236 lower:0.010550285603162075 time:0.010178111237978465 work:0.007992156351792705 faster:0.007266944351280795 that:0.006750131737233378 this:0.006552446295129168 cheaper:0.006514202359453832 More:0.006383093616918489 :0.42569182475620976 +of:0.09384289870582668 and:0.07649344608246937 Mrs.:0.07014296636487531 by:0.0654602245608608 said:0.025664919905475037 .:0.02365627729910911 Mr.:0.01880607997122787 Dr.:0.01791070819904264 :0.016908636915154634 Rev.:0.01645171688947233 A.:0.012159163300323994 to:0.010802337143865115 W.:0.009783906201686718 John:0.009359942300595187 J.:0.008718345660719422 &:0.00775511569527054 M.:0.006434909666757052 C.:0.006141158596760581 H.:0.005886084795596313 :0.49662116174491133 +of:0.18632426185146084 in:0.1128914287465653 by:0.06897735286899777 for:0.06700583153481059 as:0.056233270519846876 and:0.05498469674580215 with:0.05441880072430428 to:0.04615493709896233 that:0.036840997714805444 was:0.03385738463435266 is:0.03262748470381955 on:0.025801243966923272 such:0.023797678843394048 In:0.023519167336871746 or:0.016255047543187063 have:0.015827218163841524 not:0.01551526401828713 from:0.01503676677456482 had:0.01467116487707919 :0.09826000133212343 +of:0.2537665661577496 in:0.13220784935257607 to:0.11074679572430236 for:0.0703915417259246 by:0.05262396998907334 and:0.0518963122790231 that:0.04474717507354864 with:0.044050441490217765 from:0.036897544147652575 In:0.029066431966715555 at:0.02556924207228284 upon:0.0159494086704765 on:0.015506436885438377 all:0.01071316374605647 as:0.010274335927990265 into:0.010243124277796258 under:0.009032903079398573 through:0.008220818148680002 which:0.007647730825405772 :0.059448208459691336 +one:0.015552536992080472 more:0.014252271697624306 on:0.010631301787611593 day:0.010222750824534239 two:0.010216157614982159 person:0.007504694644314241 in:0.007364820929323563 man:0.007179188731169107 law:0.006205362369136604 action:0.006166303509128973 and:0.005659786788634644 city:0.005177234665142273 three:0.005130416479837977 State:0.0047265097104810415 to:0.004696031397422901 ten:0.004594585978494318 of:0.004463781172886088 town:0.004231879326219736 year:0.0040256313925199315 :0.8609987539884558 +to:0.2394951369629941 will:0.22353226697967374 would:0.11211647178261855 may:0.07851005612252442 not:0.06644409444619859 should:0.05728449569763567 shall:0.05538300928988157 must:0.027143096430134513 can:0.023732381757207655 might:0.02234032235613541 could:0.019575790990085405 cannot:0.01198761719455831 and:0.010023622552402517 also:0.006017052495114227 never:0.0049440856897995395 only:0.004163305858056306 it:0.00372497619229142 soon:0.0035785972088887867 hardly:0.003179455834969526 :0.025824164158829755 +of:0.18393418344521567 in:0.13595766313948576 to:0.08129494298544794 and:0.07389422060584412 at:0.04611673390637699 In:0.04411292710092779 on:0.04246892133315722 that:0.04225933681208014 from:0.04168186864548404 for:0.03789250544448127 by:0.03418765132463035 with:0.03331453302885215 was:0.01931723942256354 all:0.018934187138577863 is:0.01632344814454943 during:0.013719032749582928 after:0.013363031370847824 as:0.0127729851665867 under:0.011417068540004021 :0.09603751969530423 +of:0.21958284938423064 to:0.08753751461641575 and:0.08648790436123172 in:0.07833344131256834 on:0.051373015098537055 by:0.05089993464251588 with:0.049651881334486545 that:0.04053467539023611 for:0.0383002070381307 from:0.036097461660921065 at:0.031088026004284054 all:0.024292344580985725 under:0.01926426363332341 In:0.018139502765341094 as:0.017473702442451194 upon:0.015647164781906208 is:0.014813612727326477 was:0.011601266530178936 when:0.009227021180054635 :0.09865421051487444 +of:0.1257909310672679 such:0.08818377161438348 with:0.0781383792734196 to:0.07048369705091789 in:0.06906166178803158 as:0.059546183720558137 for:0.048202152283287336 and:0.04751781567886834 is:0.039614469560759646 at:0.038174185540172705 by:0.0374647446079474 that:0.03191287336971224 on:0.028066247384131875 was:0.024965539369564863 made:0.02211308571834045 make:0.019627257636154128 from:0.019272426596330095 be:0.017396347007251817 In:0.015492739683192789 :0.11797549104970773 +the:0.2152398353741609 and:0.07710714822127046 a:0.06323416987638375 of:0.06127967436545191 to:0.027961453326628194 in:0.025678671539659262 The:0.01622115569153623 his:0.016147920594861448 tho:0.014399817133263678 Mr.:0.013116150538585865 that:0.012727099354235771 an:0.01220890350434409 .:0.011589382771683556 by:0.011077005210146306 with:0.010582421433925349 was:0.010392874382012692 on:0.010342861459107554 I:0.009879221385205793 be:0.00925185733928084 :0.37056237649825635 +not:0.35581174772069923 can:0.10184816241966409 could:0.09138089184648869 would:0.05844772642950301 will:0.05170900527372769 the:0.04680919068598533 and:0.02998783828150335 that:0.024766450945494994 is:0.02162916097303172 Not:0.018673409660487587 may:0.015988850115234494 was:0.01583462688593385 we:0.013730073066086245 The:0.013698873729824628 but:0.013616332729213431 should:0.013362899880304731 shall:0.011211820012134633 they:0.01115604243042508 as:0.01098810506472811 :0.07834879184952909 +and:0.07359963406644195 be:0.052667135004264946 to:0.04483536256874564 of:0.043448293679263235 the:0.03579172892628988 in:0.028005289969665195 was:0.026700397492138477 is:0.024892551934152005 re-:0.024162182625676702 he:0.024086629517294657 are:0.02098604388819216 from:0.020307931541148256 a:0.018606881911690538 or:0.018077853608073062 for:0.017195224169077532 been:0.01615904189338184 I:0.015254891559368164 :0.015184018660626356 which:0.015016145996292442 :0.464022760988217 +of:0.28767355066866834 to:0.08775711267569858 in:0.08678131196995101 and:0.05160598694501188 on:0.04646139928102899 by:0.04519522654900943 for:0.044547789071328545 with:0.03396756772609607 that:0.033699232901107726 from:0.03075346596941143 at:0.027039283056790858 In:0.021061449543044047 as:0.017514234937992545 all:0.012543839382496166 upon:0.011844431150487573 is:0.00998972746569266 was:0.008814315973987914 into:0.008557199930727406 through:0.007781895704231326 :0.1254109790972375 +:0.15144649370557953 it.:0.016157746635818336 them.:0.01470842344868865 time.:0.009966413352432127 country.:0.008745987599439039 year.:0.00829979369706474 .:0.007958677167144362 day.:0.007595822864807325 work.:0.007338728588237643 him.:0.006533234424696402 city.:0.005431757518081934 world.:0.005227369873910714 years.:0.00496189692069873 place.:0.004916311309482641 days.:0.004726358755201496 States.:0.004458758138781377 life.:0.004425047279364718 week.:0.004367641777040044 people.:0.004339270777791211 :0.717394266165739 +for:0.15426310729783102 of:0.08119406605086324 in:0.07604230298935243 as:0.07117866048651544 to:0.06759510847922331 was:0.049007154580361575 and:0.048080939040380924 is:0.03822909642002596 at:0.03593598116134044 with:0.03531239464168762 that:0.03524301033370356 have:0.03364441359118036 by:0.027636499207082988 had:0.02684631251653334 on:0.022389772482580117 In:0.02102245453012631 not:0.018015170478711144 from:0.01555246814446733 make:0.015291299060614197 :0.12651978850741868 +one:0.084329039870417 part:0.044486917868931386 out:0.030961256232480375 sum:0.030481683507399056 all:0.03005992342944709 amount:0.029156558692593683 sale:0.024409673844484423 end:0.02253679583904959 number:0.02205456177625752 value:0.02116212487860747 some:0.021026575069060523 and:0.020308149349412833 day:0.018533240289724917 many:0.01685560138878725 cost:0.01674385163659522 portion:0.0166532769475791 tion:0.016423189352077427 copy:0.016290203413497014 side:0.015666725170525503 :0.5008606514430726 +and:0.12199776407249087 which:0.10552014641856065 he:0.0915365712641388 who:0.05733419863676514 it:0.03564664798433248 time:0.03548009755255953 I:0.03247753731780402 He:0.031678474406506785 It:0.03054655566782166 they:0.027720302172920194 that:0.026997954924042486 This:0.017249660492565988 she:0.016596647191847513 man:0.010310729793967561 one:0.010194637465786508 we:0.009882988550627102 what:0.00906160155567042 length:0.008827796758921416 the:0.00880443288367038 :0.31113525488900046 +and:0.13198511202136204 of:0.12547038074334374 not:0.034238536580272545 to:0.027806851971521825 in:0.0259387663117919 after:0.02076870231518364 with:0.020089442464816788 by:0.019991036712141017 are:0.018417047670537024 is:0.01810484417868102 the:0.01807563969457062 he:0.017166158530686034 without:0.01547580191418745 person:0.015347302652009792 but:0.014340800743427754 it:0.01422645336175829 that:0.014018012000561774 or:0.013315162563293924 persons:0.013248788629427537 :0.42097515894042525 +the:0.28116304123658825 to:0.09169501347543954 a:0.061607427844684925 one:0.0542090857416068 and:0.04456018097543623 an:0.04313205533255028 this:0.04295901172343253 that:0.03076533376800461 will:0.02730354182159658 The:0.021223893433980026 his:0.020864403653904105 tho:0.018418597076738794 other:0.012874094408174861 her:0.012749231439276022 of:0.01092497941470267 in:0.010447052017432243 my:0.010278720199598527 only:0.008897983400051178 same:0.008122497835386369 :0.18680385520141546 +to:0.31019601080253456 will:0.13793678134185958 would:0.07774183426288846 may:0.07078528459128908 should:0.05127128910568003 shall:0.04901700088221223 not:0.04594340671139167 must:0.03257846389794495 can:0.03230794200897745 could:0.02086203652199685 cannot:0.017984019065961077 and:0.017474170306863105 might:0.013535476571922157 it:0.006941357203389574 never:0.005186754057084183 that:0.004968373522249409 also:0.0034185027334872305 only:0.0032209125075107173 soon:0.003102154139878731 :0.09452822976487903 +of:0.11619101381683422 the:0.08851624871148385 Mr.:0.06946721356876012 and:0.05243394575251539 in:0.04906446815834277 that:0.03743769278973447 The:0.028388611034687917 which:0.023233482066739745 Mrs.:0.02024551652171408 to:0.01968568266101125 for:0.01624178425957255 :0.013938271411685061 such:0.012202281344778966 General:0.0119313560502063 as:0.01191049327668683 by:0.011355639250219023 any:0.011059642611687657 he:0.011010638372379991 said:0.010692699366701556 :0.38399331897425826 +of:0.1470360147391043 any:0.09303209324730081 and:0.07098405758339715 in:0.069343264469192 no:0.0689627943093732 the:0.06827568532587859 that:0.04739664927312495 only:0.03521647266336145 some:0.0336821762237136 but:0.03274593226680787 from:0.032315093972774885 to:0.0290767574402911 every:0.026548127477312743 a:0.02375485056545076 No:0.023100206498321566 on:0.021891573427006226 than:0.021785472413217842 by:0.021118599145554612 is:0.020825265927037404 :0.11190891303177891 +the:0.35731767017560423 The:0.07194093596490421 a:0.06534152178014126 and:0.0553811377951653 two:0.03156753619602796 of:0.03073951127908863 no:0.023832404055437344 his:0.02125508387493343 many:0.019287123317189035 little:0.01862808711726718 their:0.01764406411974773 other:0.01708664516245487 tho:0.01643733318533297 three:0.015898263449911958 such:0.015381193817825455 he:0.013429303806793417 all:0.012205681294104489 or:0.012190906893664833 great:0.011714670036841382 :0.1717209266775643 +and:0.05052777674450681 :0.014924021719867002 it:0.014008201108956717 that:0.01299031438550196 of:0.010765503142377252 now:0.010704930817789568 which:0.010418513174217008 Mr.:0.01009945694537323 but:0.008434912566984481 here:0.008417212918899875 be:0.007980027014914924 It:0.006813676046235759 there:0.006806862772120866 the:0.00656061381439146 far:0.006311610013374893 well:0.005890528256294923 when:0.005553591461365785 year:0.00517056605022827 was:0.005138998303934491 :0.7914826827426646 +and:0.16951138713984368 of:0.08968150734291185 to:0.07347224022459058 in:0.06566101810932025 nearly:0.05181701723844071 that:0.045518523373515724 with:0.03709611081765763 are:0.027994120936960805 was:0.02500554392969649 on:0.0238880341786899 is:0.02340984633771719 by:0.023394553160043956 for:0.023288632266997365 from:0.023202950584664025 at:0.02247544134066143 or:0.021593187257961673 as:0.0177964759541813 In:0.016958498657724346 than:0.01582269873761668 :0.20141221241080443 +foreclosed:0.0826326115191591 accompanied:0.05930666942049243 made:0.05336585618201428 and:0.05113808815574321 followed:0.0477509052190524 surrounded:0.027001067213274173 up:0.0223956915218854 caused:0.01986528146981332 secured:0.01963201700061169 was:0.019527138795776604 ed:0.0163892391762384 it:0.014428341647705614 occupied:0.014047766264405974 him:0.014002524716027894 surmounted:0.013411064770142235 given:0.012603829803430331 done:0.01236267211154264 covered:0.012285928470556887 that:0.012257320636555267 :0.47459598590557217 +and:0.14347675541517646 was:0.1299498280815001 is:0.05754814333718967 are:0.05257780504030968 of:0.048908385262630416 were:0.04321828907819945 been:0.0346901124407049 to:0.032963397142926246 while:0.02346210346093169 the:0.021579221085523997 in:0.021059483283791168 not:0.020977275826020773 be:0.02041321185768983 or:0.0202385858784193 with:0.01853583567247721 for:0.017400177267104314 at:0.014941544101453022 a:0.014084378531662141 now:0.014073798289899568 :0.2489016689463901 +be:0.19696239657848733 was:0.13517598002320966 and:0.09096134050629197 is:0.06734217317446681 been:0.06386527140334454 have:0.039860574848512915 had:0.038104714609279174 has:0.03749210256011892 were:0.034206248141134356 being:0.03279801154645104 thickly:0.02920130620964404 he:0.023071541411953406 are:0.020347773255665582 not:0.018348586654918175 a:0.014367961463829489 Is:0.011165867644107952 then:0.010753887232340177 now:0.010589602003796555 bo:0.01034136437040632 :0.11404329636204161 +p.:0.05694932056897303 a.:0.0390153627779282 it:0.029443657545788555 had:0.028167328955555265 was:0.024785021233576256 p:0.024238893143693485 and:0.019868002720574943 there:0.019458925955634396 of:0.017089610933928533 has:0.016734117501179535 to:0.01644800354654081 have:0.015204447228037423 is:0.015171068268532624 It:0.01471178001960264 feet:0.013821134536347798 a:0.012543738398268412 in:0.011532078184722874 at:0.01150250187739978 :0.011209703225351472 :0.601105303378364 +the:0.21977605411880774 of:0.1552712404612363 by:0.034262709605171325 in:0.03394791582125021 and:0.03254339347902355 to:0.03049368286231179 a:0.022264789241207256 that:0.019565037854021295 The:0.018032520735762496 on:0.016932144210943016 from:0.01625942617717516 :0.015305458767158822 said:0.012983295622232065 as:0.012250850770710269 tho:0.012241863628716428 with:0.012142864045367135 for:0.011449212826433365 upon:0.009614971041602279 or:0.008751402607548368 :0.30491116612332114 +of:0.15759155987711146 and:0.1552595113570283 that:0.06883390086446024 to:0.06066629122809641 with:0.05852938901832457 in:0.049879763141889986 by:0.046155815078852525 on:0.0303847734397081 from:0.02610433156208252 as:0.02343511529954801 for:0.01742792735583172 made:0.01421162507185937 but:0.014131936178757746 was:0.014104815890631048 all:0.012801710471736878 at:0.011187386745869686 In:0.010827465381090522 up:0.010729495113058174 upon:0.010389936026200515 :0.2063472508978622 +as:0.3707952625742471 if:0.1503578975290408 is:0.11064181920195296 was:0.09549209633858821 and:0.0654862316751692 that:0.019858008307564942 If:0.019694514817371285 but:0.01675441150047147 be:0.015817531410872332 Is:0.012430652032010858 it:0.012150936411412298 are:0.010824058963881838 had:0.009649037982634636 or:0.008830434414520515 than:0.008515161597991035 him:0.00842992997862884 were:0.006556759765748549 now:0.006437660623864073 not:0.005900940617431253 :0.044376654256597835 +one:0.1028303141280697 part:0.05963429477052991 out:0.04766456937681193 some:0.031418679026461914 members:0.030764490253327767 side:0.029940657362655835 portion:0.022063658796890564 office:0.020457735219956013 member:0.019726706386316174 end:0.019666887540649894 tion:0.018667441728710307 parts:0.016814747270460957 people:0.014112771422418794 all:0.014072739582212475 any:0.013183573287639892 One:0.013083578354183906 that:0.013024335602903442 account:0.012482348155001894 many:0.012077825070275192 :0.48731264666452345 +it:0.171807292498004 It:0.12462071078248387 they:0.08287065090024576 he:0.07655961858699317 we:0.04862910034832227 which:0.044714216823447485 that:0.03982826398521146 who:0.03473031139961547 as:0.026687803642152782 I:0.024747928667035513 and:0.02290300120243566 you:0.02178975967815383 He:0.01926442143872756 she:0.015729506991797263 We:0.013415466537291115 They:0.012171746858188687 there:0.010572367982202133 one:0.009274746982672197 You:0.008625577081683301 :0.19005750761333648 +of:0.3304672916590702 in:0.12773205731728188 for:0.08157410313674818 to:0.07866653617237683 and:0.04578154073767453 that:0.036446741282913295 on:0.031552214600046535 from:0.031494949038368386 at:0.02651853192964453 with:0.025460231725951268 by:0.025414799328006728 In:0.02465096328379817 as:0.013804671952423263 into:0.013518506702890062 all:0.010748687349745076 when:0.00787543011390169 upon:0.0075951141805011375 over:0.0075843502616667145 through:0.006996382581463232 :0.06511689664552825 +of:0.14080953553108172 to:0.1184217904144837 and:0.09163304661216759 in:0.07438156960153573 is:0.05236323581518245 was:0.050682431016550344 for:0.048284880418457105 with:0.048040216442070655 that:0.0445481666276537 from:0.025837693571691005 at:0.024783496406887297 have:0.023830545646486713 by:0.0232177548117699 be:0.021977042202801413 on:0.02164194163048691 In:0.02024930007789595 had:0.017674035111540386 all:0.016508123794313934 as:0.01584308671543853 :0.11827210755150497 +he:0.21917900368207532 I:0.09945665163761262 she:0.06998477229946688 who:0.06198923654943231 He:0.05150950274339051 which:0.04991285961024773 they:0.0454627518641234 that:0.03618979266110483 and:0.03075556558220617 it:0.027352849299015165 She:0.02182295645548868 we:0.016468612581518167 ho:0.015521950936934627 what:0.015426736941350603 It:0.013059379896830828 man:0.012910840844727186 1:0.011213172693967736 have:0.009873942506080527 lie:0.009425400267531163 :0.18148402094689553 +have:0.30825979017372884 has:0.23335574802959289 had:0.21175046658197516 not:0.030988266201518243 having:0.02927012901615229 bad:0.014171973849594698 ever:0.013086879418728829 never:0.01300501411300987 havo:0.009928021099038665 lias:0.009747205787221536 haa:0.00770115724572842 baa:0.007542997033275567 always:0.006964193192067684 already:0.006843537117543435 yet:0.006280305743339498 long:0.005835741283387316 since:0.003932840742479124 hare:0.003476596932273983 and:0.0033496242557260235 :0.07350951218361794 +the:0.11919516938815296 of:0.07230453158552728 and:0.05781056740443249 a:0.043018564803886335 to:0.031305092790907506 in:0.020848713353460488 at:0.014270110001066288 .:0.012526810245749479 :0.012413283442322082 for:0.011719122709941797 by:0.010808400946589808 or:0.010404172990115616 The:0.01003576004804544 with:0.009811868184449042 tho:0.009295902015355835 was:0.008924239095331684 that:0.008672304223433876 is:0.0085591147338948 be:0.008335143826716943 :0.5187411282106204 +of:0.1977536271638498 the:0.10041216972754623 to:0.09475583344720538 a:0.0571632286852386 in:0.05577113613972036 and:0.05443313422108252 at:0.05096713643878509 by:0.029569692296823772 from:0.02581945471950791 with:0.02070158644341389 on:0.018662175201436548 for:0.015824657551850665 The:0.015500113790568293 :0.014908531973857608 an:0.014020232406541136 or:0.013548767648319991 In:0.011805102999758241 that:0.010727782299872736 as:0.01033828132276149 :0.18631735552185974 +was:0.13166574741489676 is:0.11717021702205548 are:0.07314473077863548 and:0.06569820914649796 had:0.062266353799244 do:0.0552105349880401 were:0.04249015775890495 did:0.04202807070632916 have:0.03857515272196849 has:0.03609190448547733 if:0.03463567424655099 but:0.02748525984837425 does:0.02654370827339255 am:0.02445308919527505 could:0.02405341894143093 Is:0.020856748601557822 it:0.01584041572847771 would:0.014119290987049612 he:0.013554420691365301 :0.13311689466447607 +to:0.36254676081886866 a:0.1282443976001372 will:0.077273395762415 the:0.0684698338795588 not:0.04052827135845002 would:0.036428511946799615 and:0.02719425391034303 shall:0.021808774612995133 his:0.021471330947404624 no:0.020566778498244374 can:0.015648511593637768 unanimous:0.01430819465451131 should:0.010915249056928913 may:0.01069895679346217 must:0.010513831339030085 this:0.009182627603118885 electoral:0.00912853147315042 or:0.008714219480851007 per:0.008095294309622978 :0.09726227436047 +:0.05309622172794539 it.:0.02750732720427839 of:0.020579723778046743 them.:0.017038943046665766 him.:0.012954497072942233 day.:0.010437422764595342 as:0.010355872066642824 time.:0.009877831850440577 that:0.009333926173298913 and:0.008080793674349086 ;:0.007918835198365892 people.:0.007798184218520971 in:0.007758956882220505 the:0.007521536634109676 law.:0.007163370257785556 way.:0.006703684560667107 out.:0.006573082884693099 me.:0.006450388209055733 country.:0.006383007211230923 :0.7554663945841453 +the:0.11919516938815296 of:0.07230453158552728 and:0.05781056740443249 a:0.043018564803886335 to:0.031305092790907506 in:0.020848713353460488 at:0.014270110001066288 .:0.012526810245749479 :0.012413283442322082 for:0.011719122709941797 by:0.010808400946589808 or:0.010404172990115616 The:0.01003576004804544 with:0.009811868184449042 tho:0.009295902015355835 was:0.008924239095331684 that:0.008672304223433876 is:0.0085591147338948 be:0.008335143826716943 :0.5187411282106204 +of:0.18538035045241702 in:0.15711370840432756 to:0.10945138178181249 with:0.06052441097277976 from:0.05029172700913102 by:0.043560578214512556 for:0.04024495860873374 upon:0.031584204986858634 on:0.03112974846984614 In:0.023888913364722292 and:0.01873829989589114 at:0.018534958438724526 through:0.013397427885697718 over:0.010103098066381242 after:0.00957154588589249 into:0.008927606811177068 that:0.008186189006559761 one:0.005945149885311662 iu:0.0050942854897681805 :0.16733145636945504 +the:0.12397170260116352 of:0.0943155434282568 and:0.04047242644896243 The:0.039121251000670806 Mr.:0.038849315117364246 that:0.03749617133485052 in:0.035552871266442694 Mrs.:0.022501402823346915 which:0.02123924194599288 a:0.01931574625006573 to:0.018732434543853364 his:0.014277305910035551 when:0.012369804522166431 :0.012284549055542177 as:0.00976422368815642 he:0.00970781880966711 for:0.00927189170209692 tho:0.009034083963245747 said:0.008744635319874062 :0.42197758026824567 +to:0.6650643069592912 will:0.05682500454247537 would:0.04066912556252674 and:0.02478871484200931 not:0.021160909856777748 shall:0.020880467136921294 the:0.0177754793849535 his:0.017637968853507376 should:0.01646226631191186 must:0.011642047819794433 of:0.01027617735429087 who:0.010177574123875046 never:0.009219745255201799 in:0.008611793581905135 could:0.008392661267111131 or:0.008324891156129128 may:0.007998280803261147 I:0.007791091761624442 can:0.0074059743970511125 :0.0278955190293813 +and:0.16162440145436285 the:0.14214297830344846 of:0.09477162688828586 a:0.066301008418286 by:0.05410122546116074 with:0.03672369892260562 for:0.03405184681048003 to:0.03346891659024682 or:0.028129639061280697 that:0.027330544002690322 as:0.026874819766128974 any:0.019879194324639467 his:0.016946834721891863 The:0.016183402689560436 in:0.01397945897878783 their:0.011864597994469086 is:0.010673662983294417 without:0.009623482430478726 which:0.00908962005434886 :0.1852390401435529 +:0.050853854461218005 and:0.022240524379949795 .:0.015818472364645442 was:0.015322179201310647 succeeded:0.009814076563310181 home:0.008594917904052337 came:0.008470645556611608 him:0.007265364484690091 men:0.00710475573395535 man:0.006903735295463818 it.:0.006005704634850688 up:0.005092464305898853 them:0.005025745761906553 friends:0.005017546954445563 :0.0049121486604744346 that:0.004886287574801244 land:0.00487161027391375 people:0.004869942847912079 situated:0.004694635582958001 :0.8012353874576316 +the:0.30093744428918584 and:0.09422557660660531 of:0.07623463147809827 to:0.04574956517643454 The:0.03148456110550925 or:0.029040267245675922 tho:0.02872645531148348 for:0.0235276823820367 their:0.02237509921573949 all:0.01946271266186199 that:0.017418944726275355 tbe:0.0172945475956918 no:0.016962402702486393 said:0.01645005962144211 in:0.016329267469421628 its:0.015804437438502024 his:0.015458671186952558 this:0.015430728978780514 other:0.01466507454044065 :0.18142187026737622 +the:0.15069068048217385 of:0.08554023764308581 and:0.07456355385693933 in:0.03607807331427709 for:0.03454611268458372 to:0.03246779965024409 a:0.02595393710266122 their:0.02067414722457904 be:0.020166122837108183 his:0.018735415838924515 or:0.018462348031619575 that:0.015052586701015959 was:0.012032816808185895 :0.011089036375635394 other:0.010198473284460557 is:0.010054762246837946 he:0.00978397304119191 said:0.00938193764844548 I:0.009168237446659806 :0.3943597477813706 +it:0.12821307145167934 It:0.09224411655907405 they:0.07362671569877899 as:0.05858679339110883 which:0.057696876608351995 that:0.054115070511618214 he:0.05325736351339586 and:0.04674701533912211 we:0.043930989408412884 who:0.0338114885788323 you:0.031023121050060297 I:0.023941548532311917 one:0.013650967180795011 He:0.013514551014167575 she:0.011747871307858385 They:0.009405280998439427 We:0.009016488849301653 You:0.008729475295575058 man:0.00872891378620461 :0.2270122809249115 +the:0.12190531510295975 Mr.:0.107766007376258 of:0.06138664078207221 and:0.05570432743211459 a:0.04340663353220244 was:0.029297663303005157 to:0.02634119118849756 The:0.02360965302823458 be:0.018836022575673895 his:0.01836050731913349 is:0.018000976651805358 at:0.017282909889171066 I:0.015096387027499004 in:0.012380683714837326 .:0.01231158028126183 Mrs.:0.011737990867463051 he:0.011389230662593688 Dr.:0.010816204636218397 it:0.010716360994994558 :0.37265371363400407 +to:0.44230563405312084 will:0.1458333474062594 would:0.0529197372884946 shall:0.05285666493741769 and:0.05187329392872066 not:0.04704293063684227 should:0.031000386377873463 must:0.019983285071850355 may:0.01653656261577405 we:0.0147691858368583 who:0.013303452975935498 can:0.01226555971435804 they:0.011089100558068606 could:0.008462616229357718 you:0.008327471482167784 might:0.00795085600320348 I:0.006402766801097752 that:0.005013318215509718 We:0.004180690203463532 :0.046883139663626214 +of:0.1534989931210022 the:0.11853433097397402 and:0.059646269853866965 a:0.03936461711378504 to:0.03879655609971942 in:0.019417361483656106 by:0.016279717422588453 on:0.012295233944712273 are:0.011946163872399258 one:0.010698183495723858 from:0.010212444859354143 was:0.01003762256453379 north:0.009807711414611966 some:0.00964183004570384 were:0.009425397282478968 The:0.009154093735516339 for:0.008986034280336912 :0.008874337952685466 with:0.007563500475944208 :0.43481960000740677 +of:0.2815423764833564 to:0.1235164241107573 in:0.07053082773255542 by:0.066395448406624 and:0.056415736310027345 that:0.049977042974766975 with:0.04121389150465103 as:0.03663098992829517 for:0.033271572674581064 from:0.0236476253632146 on:0.01873534333286559 In:0.015691816098683146 at:0.015657614068715273 which:0.014930889670404957 is:0.014274436125166235 upon:0.012365490607356974 when:0.012274480824168056 was:0.010461820669460482 under:0.01015101408360582 :0.09131515903074412 +and:0.16276181650057514 the:0.056328490158869614 to:0.04928699287689956 that:0.04789500283824745 a:0.041312916984277935 of:0.03931911909161011 or:0.03907570464387333 as:0.031199466449337535 was:0.01941631180858144 her:0.017801843384137667 for:0.01540095231086082 his:0.014323572795638806 be:0.013923668471581501 by:0.012524218137465206 this:0.012157945522124906 not:0.012109270326908924 at:0.011671578286533955 with:0.01136552770676066 from:0.011260052316126123 :0.37986554938958933 +protest:0.0730074424705892 and:0.04681802825243419 up:0.030899702949304907 made:0.030264171118175198 voted:0.027440688555916647 claims:0.026193205449708597 vote:0.02440140127865307 guard:0.024204312136449427 fight:0.024036803642483322 assessed:0.023813752314525777 protested:0.022589786792465094 as:0.022585128486233366 protesting:0.02234573029786333 brought:0.022334978248921528 war:0.019874149267129777 charges:0.019147529384197427 is:0.01839132239437071 out:0.0182004416360357 taken:0.017339799780086936 :0.4851116255444558 +and:0.08310830496933337 made:0.04194509045311403 accompanied:0.03250891661887826 that:0.03184103220289023 occupied:0.0259931680534942 owned:0.02475145327089126 side:0.024520753580988913 followed:0.021445692570791958 secured:0.02069802090376884 ed:0.019859521756462144 given:0.019074263197068266 surrounded:0.018084724130644186 foreclosed:0.017417104565865482 signed:0.017333152227347638 taken:0.0169227856093996 up:0.016636390237801734 headed:0.016359719631147112 assisted:0.016188413649161786 or:0.015051306302501063 :0.5192601860684499 +be:0.11492468916438475 have:0.11251761926343853 has:0.09973493143907056 and:0.09336815298518174 he:0.07519711647223175 had:0.06146259506926361 was:0.04065229559249664 I:0.040429157580903326 who:0.036109795223244506 been:0.03489879711887761 is:0.02386810736923336 He:0.022573731369581018 they:0.02228091304361195 which:0.018914034945042815 that:0.013529817320964067 she:0.012705616990199592 it:0.012000979199385047 were:0.011755527386632401 there:0.01154388145173138 :0.14053224101452536 +and:0.05369231685953346 is:0.05349122939784135 able:0.047606448216067555 order:0.044951121846130405 have:0.04370868753758696 enough:0.0400685892385512 had:0.03652602081417079 necessary:0.03465268222222907 as:0.03429344916834726 power:0.03187314032751342 him:0.0315027299600552 was:0.03120149875460407 right:0.03117493961202472 unable:0.027397904338437588 going:0.027323212796249604 began:0.02161198880214934 not:0.021607641035533486 ready:0.021105160513150367 them:0.020894644518634486 :0.34431659404118964 +you:0.14052728441098702 they:0.12933575170366796 we:0.1246698133721177 I:0.10553018070166793 he:0.07239104701586145 and:0.050705358816410834 who:0.05045141744409399 We:0.02785033157622308 You:0.02716804796551699 it:0.026497588194871788 which:0.026016824349460305 that:0.02285059833653192 one:0.017681788832924223 she:0.014996924830841592 man:0.013317747385423996 men:0.010867922882900328 They:0.00963912061925149 people:0.008809248985546858 It:0.008553492971459197 :0.11113950960424133 +that:0.24763784368305827 and:0.2182257664811959 if:0.05124790928155723 as:0.04930823810894508 is:0.04373423640801514 but:0.042078516898290584 If:0.02881943886987356 was:0.025089919587711458 when:0.022018805816067213 where:0.018946268939998977 which:0.017212992254895604 of:0.01686598658423628 or:0.015580052494598127 Is:0.01551457255740109 time:0.014719138821400737 a:0.011090355578316408 That:0.011037735989880074 are:0.010361705955946978 while:0.0096371754750654 :0.12987334021354585 +to:0.41668385968349897 will:0.09708462994455373 we:0.0714537451306243 would:0.04049037604565292 I:0.039844699527045155 they:0.034887461815921346 could:0.030277872534034155 may:0.02938051553956095 you:0.028047037040935235 can:0.02580189537745551 and:0.023892613626488556 not:0.019778952968278377 We:0.01537694389531604 should:0.015003090198800842 who:0.011667479463164668 cannot:0.01093099651627393 must:0.010468058761457585 shall:0.008870112139277122 might:0.008169413048367387 :0.06089024674329321 +:0.07915012108870945 it.:0.017496415143422456 them.:0.012775936096190016 day.:0.008312620260266565 .:0.0064640163129179 country.:0.0061841757878673695 year.:0.005859204560221557 time.:0.0052568625397604925 vinegar.:0.0052092101056359025 him.:0.005165480573206729 tion.:0.005101466163023413 ::0.004815180067823944 years.:0.004582651404945225 us.:0.004472118707401662 city.:0.004440658197590462 men.:0.004159995990001867 people.:0.004145285342875115 life.:0.004059198871994263 water.:0.003933477227511311 :0.8074159255586343 +of:0.36793434708446654 in:0.08086480769859784 and:0.04374836386614741 to:0.037605324463924325 the:0.034565973870225565 or:0.02844165331095277 for:0.02839600497094836 at:0.024605380432002666 about:0.02128840653063419 from:0.018382734800387844 on:0.016337217349786767 over:0.015361844146985158 In:0.014176513565174638 by:0.011853665203957376 have:0.010837328350786124 a:0.01057862123144648 with:0.009628395080502691 ing:0.00922763911889651 had:0.00843271201353986 :0.20673306691063686 +it:0.09606523003956101 and:0.07834452498273939 he:0.07573835710880551 they:0.06505364027730551 which:0.056140363761799345 It:0.04263804195366965 I:0.04058537575590958 who:0.03734027966286201 that:0.03654104383065465 you:0.02999648409498698 we:0.02508294337979338 He:0.016379180046647034 she:0.015753592335943395 as:0.013170225282446893 They:0.012039542527671471 the:0.011600591267415169 man:0.00963698976337265 there:0.0095343493601173 This:0.009246936693130866 :0.31811230787516825 +the:0.11919516938815296 of:0.07230453158552728 and:0.05781056740443249 a:0.043018564803886335 to:0.031305092790907506 in:0.020848713353460488 at:0.014270110001066288 .:0.012526810245749479 :0.012413283442322082 for:0.011719122709941797 by:0.010808400946589808 or:0.010404172990115616 The:0.01003576004804544 with:0.009811868184449042 tho:0.009295902015355835 was:0.008924239095331684 that:0.008672304223433876 is:0.0085591147338948 be:0.008335143826716943 :0.5187411282106204 +this:0.18803455358273388 the:0.18290050467056204 a:0.1487746441823921 last:0.1427844789251755 next:0.050719037538366006 Last:0.03729142666682599 one:0.032157669941208916 past:0.0208352924154836 each:0.014741964607883531 A:0.013570921071993642 that:0.012847784915247226 every:0.012588793187981966 and:0.011226629209169286 per:0.011102603321330852 The:0.01077311063073014 same:0.009745491126305846 first:0.009688040553695055 Next:0.009573719520529102 This:0.00952094697640467 :0.07012238695598057 +together:0.16609686069549726 and:0.08235855174617822 connection:0.027565930962423844 connected:0.024599884063808773 it:0.021531885107265766 do:0.019342835882029542 Together:0.01912773751935442 him:0.017267309877033208 them:0.015431151006397734 comply:0.015128305857139252 acquainted:0.015017005435109154 but:0.014544549747275305 gether:0.01434219198813663 familiar:0.014113831359418055 up:0.01144181365700697 charged:0.011098435044326515 satisfied:0.011017783727721666 that:0.01077467825091707 complied:0.01052814900562557 :0.47767110906733506 +the:0.5409492156778634 this:0.1792763372835014 a:0.04277478798470988 tho:0.02017500936871947 The:0.019675794931391922 said:0.018849173608977993 other:0.018217735683519688 his:0.010773533889439135 our:0.01074795762641631 that:0.010088609693263008 every:0.009462037646778393 tbe:0.008528565376572619 any:0.0083154442506297 an:0.007666370447071767 and:0.00725750168700157 these:0.006768494182782034 their:0.006337885759134072 of:0.005811718064098251 its:0.004515146374602648 :0.06280868046352686 +;:0.027488708181287687 it,:0.01958917362811013 them,:0.011734148321642797 him,:0.009807221804048033 in:0.008313229650925371 time,:0.007688385999744575 him:0.007389625085221205 country,:0.006853233578626019 years,:0.00626528268415626 ,:0.0059988628132242065 and:0.005839985371392634 people,:0.005728202179933982 up:0.005606460628007509 up,:0.005333752120618328 year,:0.005161777230700628 one,:0.00505844778761419 here:0.004939839190866411 out,:0.004781955925715608 it:0.00465859216314566 :0.8407631156550187 +he:0.13351488946397833 who:0.08992089710914682 have:0.08111851207807892 I:0.07577176269166809 and:0.07008995095526248 they:0.05614941674563451 has:0.040819866664881015 which:0.04059009387808286 we:0.033700194909026975 He:0.03111283844143676 she:0.029396973656995812 that:0.027572732566323394 it:0.025328633390841498 had:0.023328377667831402 never:0.013537846479723052 1:0.012985727281657646 They:0.01220536109847398 It:0.011730891334991559 be:0.011624051002451194 :0.17850098258351368 +or:0.6180034820956205 the:0.0759998447331182 and:0.050644250334546594 a:0.046623909335829064 of:0.016895432854404993 this:0.009494713978578952 as:0.009129014717958222 in:0.008885968937075248 that:0.008228859519358875 certain:0.00808875335075053 said:0.007979446339778503 any:0.007417424523432133 such:0.005709901553568312 other:0.004931332473735225 same:0.004798891694984816 than:0.004480041559093212 one:0.00419402307901356 no:0.00400085079797154 only:0.003882179310000101 :0.09961167881118144 +that:0.12264007071330951 and:0.10528312851835263 but:0.05731565257034666 which:0.04328489112259509 if:0.040652390695557726 as:0.04015964510227747 when:0.03730755853261439 what:0.031288069825615564 If:0.026480183178769424 :0.020541021788395366 because:0.01946365768888685 time:0.016470853043018336 But:0.01642834109093917 so:0.014135984160482184 When:0.01370698309943746 whom:0.012065531197360488 for:0.010738529759367385 it.:0.009638801371863093 while:0.009616622074571835 :0.3517820844662394 +the:0.09777078585636206 of:0.07081433100622911 to:0.04559270892947347 and:0.04368018182366854 .:0.03913575466544439 Mr.:0.03645808166343487 a:0.03211783440461773 in:0.02565084019744012 at:0.01775941322943709 his:0.0172171789247959 was:0.0163320836097233 Mrs.:0.016213759057880504 be:0.012438624372100597 H.:0.012297386381579827 :0.011348365562069659 A.:0.010859595947677065 by:0.01012885831062819 W.:0.009987266272602649 In:0.009898957211702395 :0.46329799257313253 +day:0.04855316423619405 quarter:0.04241589563750109 corner:0.027375097498769246 .:0.02260938204950203 part:0.020482674455799352 line:0.017524868835244057 side:0.01713060586846372 years:0.01592915378967579 out:0.013792930468113718 son:0.011388607620428745 north:0.009950529168348782 daughter:0.009727722051654794 that:0.009261274841254259 and:0.009200962161031456 end:0.008646538446059327 favor:0.008586490267382292 city:0.008455844221580829 name:0.008395126562914747 tion:0.008347552985848309 :0.6812255788342334 +the:0.24679896629798814 of:0.12156153883483098 a:0.071668064762207 and:0.044431743401528334 Block:0.035437143672518996 to:0.028049800940149326 at:0.02237002898406302 in:0.022128647329474862 on:0.016875074591194077 The:0.01421150837363506 tho:0.011812067867843364 with:0.010316096799344657 or:0.010048293593816286 from:0.008968690305204878 :0.008355486811466776 A:0.00834322452351383 by:0.008031669525080512 this:0.0072827256816976995 .:0.007027777568820499 :0.29528145013562174 +to:0.5420197279994129 and:0.06919901509548929 of:0.056741411423490616 will:0.03479774219362713 a:0.03292737518733861 under:0.02898256559181392 not:0.027682112331190948 with:0.02219378925760123 the:0.021559818293047532 in:0.018690390378698237 by:0.016947658708530045 would:0.016386820137808705 should:0.01347391344647934 that:0.009603602951651944 can:0.00878010383717786 must:0.008465747983385511 no:0.0078738009921689 for:0.007407654993200912 may:0.007324960478534711 :0.047941788719351626 +the:0.12726855910616955 and:0.0892959780159441 of:0.062229337879632314 to:0.058292991969480845 in:0.037889522208997196 was:0.035486090111862774 a:0.03277831520841599 be:0.02993909980507852 is:0.021492638467572805 been:0.016319288425974923 are:0.01622912479566914 were:0.01571120940653339 at:0.013800451447349702 by:0.013390998935139781 his:0.013046404338315144 an:0.011587498063993411 he:0.010436524486303292 not:0.009967845652912184 or:0.009888058570455908 :0.37395006310419904 +in:0.10832172902021678 and:0.08710889013985348 for:0.07696727237049468 of:0.07343647745351742 was:0.07300710675291405 is:0.06339721077643475 to:0.04857362445625515 with:0.039752954665441986 In:0.034736843239486 be:0.03462778122032867 or:0.0343283165113265 by:0.032815596420427 that:0.031198531630449576 are:0.028309161733009906 have:0.028285809674589574 had:0.026298579009913108 at:0.02536265438370231 from:0.0188865153699631 were:0.018441116373308062 :0.11514382879836789 +State:0.08585143005475583 state:0.05530259890277491 city:0.03738520092813341 county:0.03043398224158061 out:0.02465329984439293 part:0.021768976542857244 line:0.01770492002334114 Secretary:0.01752576866602025 side:0.016514807592282025 Board:0.016263358502932503 people:0.015185766365856893 County:0.015087961710773406 City:0.014501238872224768 day:0.013424772325269875 Bank:0.01251734618359331 number:0.011649433233193583 and:0.010395965565573454 name:0.009781018623887408 case:0.00949512149880425 :0.5635570323217521 +the:0.24195047291753632 a:0.08449696197496341 of:0.08336444050366466 and:0.07294145380527745 to:0.054698093146011796 in:0.03243390081020615 The:0.021672921590874934 or:0.019839643332170746 tho:0.016130174357995297 Mr.:0.014224636848443365 for:0.011699665432771667 with:0.011034141899452532 his:0.010299605459068753 their:0.01012163876003422 by:0.009950494282723212 be:0.009927681488071032 that:0.009231568922579621 :0.00881772397950975 are:0.008753180439500147 :0.26741160004914494 +the:0.20695868578903773 this:0.0886150504812745 This:0.07957864600837034 no:0.07561771985957166 said:0.0692716550331237 The:0.0579356181241757 of:0.048454231661460095 such:0.045200635021427446 that:0.04480537093031181 an:0.03458139738895698 any:0.02249871331128292 his:0.01924861524230158 what:0.016760352865583562 which:0.015784738623622768 and:0.01545041633907151 their:0.014990283044563782 tho:0.013600604342165394 its:0.012436156265010309 same:0.011085118810592558 :0.10612599085809567 +of:0.15836807586104265 in:0.1373078937677745 to:0.09819650109616349 with:0.06452604380587228 by:0.059319688182823765 for:0.04700750602831185 was:0.03969822333403119 is:0.038457656889690016 In:0.03364575767975349 as:0.032089282964854964 and:0.030250760782311873 on:0.025848978696755898 have:0.02482373804021733 had:0.024809422553113775 from:0.020567477556981885 make:0.01848439613903966 such:0.01792693740317416 that:0.017197473413846563 at:0.015689036510006214 :0.09478514929423446 +:0.03878150360071564 it.:0.031201708002537295 them.:0.018340596173203015 him.:0.01091994413732167 time.:0.007187127605390471 again.:0.007163718507743896 life.:0.006468091110999827 us.:0.006464832180839413 her.:0.006331449797282725 country.:0.006130960113408559 me.:0.00572480954681574 people.:0.005270967731480488 day.:0.005210496106761133 .:0.0051714687400438945 all.:0.005051208913090216 you.:0.004807529838340322 so.:0.00460350898183231 year.:0.0044839278835279136 and:0.004173390281755229 :0.8155127607469103 +one:0.17896815771583502 some:0.08659644581987248 many:0.04990449165862142 all:0.0478665878503545 One:0.038096175605452455 Some:0.03552640793926947 any:0.030556472203911753 part:0.02863440842448241 out:0.0277194039896207 Many:0.0269363120854098 Most:0.02547340768335081 most:0.024353222153046517 each:0.023219256850445295 none:0.017889879874876717 that:0.01660051196194893 portion:0.013050827281407395 and:0.01196719025110212 those:0.011218763533358999 number:0.01119499011182692 :0.2932270870058063 +of:0.15776664674113342 the:0.05809449131085208 to:0.04773602989083368 and:0.04278431406541614 by:0.0375275757989034 :0.025814069216265133 at:0.0228441170019929 in:0.01927827291060194 for:0.018792248691344857 Mr.:0.016403116183651884 Mrs.:0.013456649123332652 on:0.012969418797056334 that:0.012967406634309538 with:0.01182001785778795 .:0.011803406204152857 said:0.01074941392606144 from:0.009835461031374025 or:0.009272413246238592 St.:0.007312417902252873 :0.45177251346643826 +not:0.15375474032115727 is:0.13482093180247862 was:0.1308686859300313 and:0.08258047442820378 are:0.07308503329314898 be:0.05924528734557286 were:0.045933139356304865 but:0.027586698769615278 Is:0.02217808250671352 been:0.021360558952819998 as:0.0184177994880996 so:0.017992446288422646 being:0.013882600469062277 or:0.012852837615839842 it:0.011918219655013692 them:0.011858225924596419 I:0.011634434835585973 have:0.010843909713789325 more:0.00983680106955495 :0.1283490922339888 +and:0.09787071543084067 that:0.03991205090281645 made:0.031221506457054484 is:0.02912125731490028 was:0.028890693791197214 placed:0.023433768096613405 as:0.021235169506767154 be:0.020980966078724454 or:0.020654644189757747 it:0.020370894604110082 them:0.02026104908955177 now:0.020235367218671932 up:0.018067424186665796 are:0.01741614296069905 him:0.016338116787566907 out:0.016198840522810645 but:0.016073331244865086 not:0.015666419619017713 down:0.012831635836605852 :0.5122200061607634 +and:0.09089283026149332 to:0.05645579378287452 the:0.05609210684122689 of:0.050871109870745744 be:0.03905684809094797 was:0.03752826270241249 were:0.019723964046385347 is:0.018262963243643248 been:0.017210573499990552 or:0.016968654725765815 are:0.016621773079840883 I:0.012203138390458198 that:0.011693527430977102 for:0.011046696370884228 as:0.010932960660722196 he:0.010491834440201265 in:0.010460410531738741 :0.009728234091118643 not:0.008346647265206205 :0.49441167067336667 +has:0.32145275058135026 have:0.3193918807000608 had:0.2011150589872617 having:0.026567330630585726 not:0.02553168390596196 never:0.012791418561337099 bad:0.011778554260266165 always:0.010776856629273943 ever:0.009983510534743133 lias:0.008751431108078307 havo:0.007192494488062646 just:0.004449440245937994 already:0.0038102840655181557 haa:0.0031088271296627803 baa:0.0029822261404230123 yet:0.0026125512115663507 to:0.002401619962864934 bas:0.0023416179908189094 long:0.00208618255245945 :0.01987428031376673 +a:0.5408278909555804 most:0.11533145328034733 very:0.07216705314081599 and:0.05214209773871052 the:0.04469000620374314 his:0.01967662787454404 to:0.01809299840222009 more:0.015529033238827853 in:0.014406120049881083 her:0.012413911398694036 some:0.010702427982440449 A:0.010499591038306609 of:0.008996931647400444 their:0.008721675686042827 few:0.008487195684201332 my:0.008071371652669109 with:0.006306029560701541 two:0.005482366870906435 is:0.005247765490500395 :0.021207452103466497 +of:0.33241372374286643 in:0.15939886375962592 to:0.05811553935807212 for:0.05470171523086438 In:0.052227525746999036 by:0.04371151479971029 that:0.03636674938961089 with:0.03267616149456917 and:0.029371259199513215 on:0.02605637111439418 from:0.024624471590637218 upon:0.020738126730934957 all:0.011319474504842865 as:0.010520300475781345 but:0.009431255002740183 is:0.007105521891415286 make:0.006518895388684305 at:0.006452419987266802 ot:0.005741173523410744 :0.07150893706806065 +of:0.09129790931378902 the:0.07369883040827747 and:0.047842263382354346 in:0.04189055351593407 to:0.04045875475680249 a:0.03542341257202578 be:0.02020462051672066 for:0.01979292654746225 was:0.01760256398103379 at:0.017380150555488715 is:0.014984483003968216 with:0.014047653760730413 by:0.01374644383819499 :0.012670486581795598 In:0.01200961464556976 or:0.011563835749786333 from:0.011391516893522809 are:0.011273104484969465 that:0.010755276030689069 :0.4809655994608848 +of:0.3428143277524452 in:0.08881563555640269 to:0.08068112904208771 by:0.05522026866153625 and:0.054308974602482456 that:0.04301051079966289 on:0.04052844793423841 from:0.037296334465228696 for:0.03635800374804751 with:0.03398933311505597 In:0.02378447009230328 at:0.014946192653540791 as:0.012899403200488851 upon:0.010921438978426729 which:0.010056449773728422 under:0.008968810180078233 before:0.00805014817395349 all:0.007871592560389966 when:0.007675295284258419 :0.08080323342564409 +and:0.13778440996774197 sale:0.07617178195945042 therein:0.060091414071757866 which:0.04244404408983838 that:0.04089072401245745 he:0.035838825295450356 they:0.024272516590769233 as:0.023369350760371048 be:0.022707527248877406 is:0.022262201878875766 was:0.021375968229600098 He:0.020634742813244903 mortgage:0.017567962203267066 It:0.017429424929945342 has:0.017328072668635522 it:0.015566320143580142 I:0.015517367970542992 have:0.014542164990058037 we:0.013751546866351097 :0.35945363330918495 +it:0.10209178694979977 and:0.06798842198721403 which:0.06529554382795044 they:0.05239265979146323 It:0.04930340226399272 that:0.0465118576249107 he:0.04367359991385054 there:0.042076956385350354 you:0.03955072363347642 I:0.03382983806490865 we:0.02601998327680884 who:0.02052308229796935 There:0.017057145520066732 They:0.014525021367185623 this:0.014091696040415727 This:0.013910376101877063 He:0.012026659430221008 1:0.010394536828153063 she:0.009670555795570478 :0.31806615289881524 +and:0.08298540576157572 it:0.050431341131948575 that:0.03274716622008234 is:0.027232274664833227 which:0.0266823494450113 he:0.01994450669130312 but:0.018526468538692414 as:0.01824606978132043 It:0.017302814048062446 be:0.013742968002628437 to:0.01273757353269926 I:0.012418318567021717 they:0.012038869180188238 was:0.011972412174856846 the:0.011965607754689807 :0.009940336332374582 we:0.009526591874301061 are:0.009179294843649995 how:0.009169487064893242 :0.5922101443898672 +of:0.09129790931378902 the:0.07369883040827747 and:0.047842263382354346 in:0.04189055351593407 to:0.04045875475680249 a:0.03542341257202578 be:0.02020462051672066 for:0.01979292654746225 was:0.01760256398103379 at:0.017380150555488715 is:0.014984483003968216 with:0.014047653760730413 by:0.01374644383819499 :0.012670486581795598 In:0.01200961464556976 or:0.011563835749786333 from:0.011391516893522809 are:0.011273104484969465 that:0.010755276030689069 :0.4809655994608848 +the:0.11919516938815296 of:0.07230453158552728 and:0.05781056740443249 a:0.043018564803886335 to:0.031305092790907506 in:0.020848713353460488 at:0.014270110001066288 .:0.012526810245749479 :0.012413283442322082 for:0.011719122709941797 by:0.010808400946589808 or:0.010404172990115616 The:0.01003576004804544 with:0.009811868184449042 tho:0.009295902015355835 was:0.008924239095331684 that:0.008672304223433876 is:0.0085591147338948 be:0.008335143826716943 :0.5187411282106204 +the:0.11274823966931571 and:0.08329996793360815 to:0.062372082173126384 of:0.05346002906215973 so:0.0299749817344208 is:0.026294180790411077 be:0.020260006954324915 he:0.018124449911071136 was:0.016351044211737983 re-:0.01567649125103956 Mr.:0.014726716630740086 in:0.013675410003338988 for:0.013272602215284653 a:0.012159264338821467 I:0.012040910229586727 or:0.010977326121126826 :0.01035107289213954 are:0.010219913969554774 not:0.009881708091297656 :0.4531336018168938 +the:0.24547451115428068 and:0.10000320065579117 a:0.06123869442979875 as:0.03654183135292521 The:0.03125682222270817 of:0.030873560453284623 to:0.029117217059174423 tho:0.024416808903066523 that:0.021093376109372838 by:0.019860766463965313 he:0.01825396763153511 with:0.015745782146973263 I:0.015628753145603864 1:0.013214379228825826 or:0.012736243850487819 tbe:0.012373583448340868 in:0.011008946104009286 :0.011002695304169106 A:0.010877058440846913 :0.27828180189484025 +the:0.11600542905554419 of:0.0808248456852919 to:0.07830834017077572 and:0.07179514259844616 in:0.02513274568151619 is:0.02291399918272989 be:0.02290211492649151 a:0.021628991536893898 was:0.020474425588906664 I:0.019206014084090964 not:0.018829853191680554 for:0.01856959917369034 it:0.016133813462142484 or:0.015889404767135823 at:0.015103465131119969 Mr.:0.01239064023604884 he:0.012205809110658055 that:0.011076055005977827 will:0.010692343693085417 :0.3889169677177736 +of:0.28767355066866834 to:0.08775711267569858 in:0.08678131196995101 and:0.05160598694501188 on:0.04646139928102899 by:0.04519522654900943 for:0.044547789071328545 with:0.03396756772609607 that:0.033699232901107726 from:0.03075346596941143 at:0.027039283056790858 In:0.021061449543044047 as:0.017514234937992545 all:0.012543839382496166 upon:0.011844431150487573 is:0.00998972746569266 was:0.008814315973987914 into:0.008557199930727406 through:0.007781895704231326 :0.1254109790972375 +of:0.1395500977473675 the:0.10644673426447555 to:0.07530950806429193 and:0.06854870292660735 in:0.052970090602221166 a:0.029655505955891906 as:0.019002638101445795 that:0.018804922547822782 which:0.01872900088979476 from:0.017820769197622995 with:0.01746520760890099 for:0.017236326081307943 or:0.016078783514853343 on:0.01461734633082911 :0.014233354423748656 The:0.012611436058732568 by:0.012330964186208358 In:0.012295828575921626 be-:0.010201282663951447 :0.3250915002580042 +he:0.26318944945927136 I:0.08898793676537212 who:0.07264837040278496 she:0.059612176201239285 and:0.0536831460805874 they:0.04400172138727485 He:0.04387151953208142 which:0.03217037463528066 that:0.03206984079615847 we:0.024148603253591996 have:0.018463936760357253 it:0.01470283418394164 be:0.012441513620577608 ho:0.012324718465805476 She:0.011205724996562907 has:0.01008124852511993 man:0.009676723855684783 lie:0.008152170918986687 had:0.0074751682304013385 :0.18009282192891987 +be:0.1720123863911372 and:0.10410615431227747 he:0.09052802105619773 I:0.06709235755831505 was:0.06631714138787227 have:0.06287216278323408 been:0.040379223713735334 ever:0.040023467812127816 had:0.03468036534340357 has:0.02808452854045431 is:0.025350448114426365 they:0.024270252071026715 not:0.019180641304292114 she:0.018850229787737566 never:0.016465626870285077 then:0.015541230958479622 being:0.015489333235310581 were:0.014610983094594519 He:0.013393779876820375 :0.12975166578827224 +in:0.2339774767468031 of:0.17171359271795048 for:0.10488491084299958 to:0.08228205581491808 at:0.06417661346538919 In:0.054264205716000366 on:0.03232507679571275 from:0.03047061250664637 by:0.029591812440347372 with:0.02158383364218253 and:0.01990279665772348 after:0.01734985016898523 into:0.017312485853807475 all:0.01616232677457055 that:0.014803676973312205 during:0.013894690260606076 within:0.01097863325929662 upon:0.010177864898906631 over:0.009364478668589549 :0.043783005795252336 +the:0.11919516938815296 of:0.07230453158552728 and:0.05781056740443249 a:0.043018564803886335 to:0.031305092790907506 in:0.020848713353460488 at:0.014270110001066288 .:0.012526810245749479 :0.012413283442322082 for:0.011719122709941797 by:0.010808400946589808 or:0.010404172990115616 The:0.01003576004804544 with:0.009811868184449042 tho:0.009295902015355835 was:0.008924239095331684 that:0.008672304223433876 is:0.0085591147338948 be:0.008335143826716943 :0.5187411282106204 +to:0.20248282117720492 of:0.1623234417384847 with:0.10136975924755642 for:0.06488879788134935 upon:0.06352400061924934 by:0.042017510336893035 from:0.03372869133254462 on:0.03118585744054247 in:0.026838191546953896 against:0.02566869700146768 among:0.025373558854403327 and:0.020986592705791552 before:0.014721578138455866 about:0.013788301067836933 at:0.012092840065824687 around:0.011125154800913122 see:0.009550285885782547 told:0.008982869160281664 between:0.007662638854047662 :0.12068841214441618 +the:0.311758881659253 his:0.07434413730524897 of:0.07316063287444187 The:0.04322664053795719 their:0.04216528894331037 our:0.04213277733230513 her:0.04004398726345343 a:0.03482205256044163 and:0.033365477434605266 three:0.032658737546787615 old:0.031236578210431253 tho:0.025342751789652694 for:0.024025038985585636 your:0.022089126332870003 my:0.01964240395960284 two:0.01939369780324554 this:0.018128415935794374 other:0.014519933827524133 own:0.014377792442262788 :0.08256564725522623 +and:0.1521164564032001 the:0.07148792404490958 he:0.049762177167584395 as:0.04367937997090793 it:0.042855955910809575 It:0.0389769433086547 Colum-:0.03125666940546964 that:0.029656421562220283 or:0.022456773225898348 these:0.01814378447607244 which:0.016769315387860684 so:0.015595229261498342 of:0.014693998854777837 time:0.013546225001587977 many:0.013195081820227557 He:0.01312348274383724 two:0.01299632963194119 be:0.012857334595095 I:0.01266366953483744 :0.37316684769260977 +I:0.23867564606458053 not:0.13550175151386584 we:0.10651507677629057 you:0.06925932500131948 they:0.0686278104452502 who:0.054970333425485324 We:0.044227041761589286 to:0.04379411320504643 would:0.0268328230410779 and:0.023316634226111296 may:0.02290356345098104 the:0.017297613260551875 a:0.016638854963426684 They:0.01503022187486482 he:0.013840398891359207 1:0.011971175395109133 should:0.011644204118502656 don't:0.011373879905484763 "I:0.010922717005278752 :0.05565681567382423 +about:0.1627996568643985 of:0.15168950761716204 and:0.10727646206127364 than:0.08060833917197248 to:0.07549919007234603 for:0.05593648565143459 at:0.030154427428601523 nearly:0.022999990825829687 over:0.022717025803336312 on:0.022632479802514382 set:0.017569950746602954 until:0.015510981063753749 or:0.013216922698447417 in:0.011977685558846336 be:0.010735284294235953 as:0.010134528715348406 from:0.009939656835857362 was:0.00802156167489271 that:0.007440150479025839 :0.1621397126341201 +to:0.1032712246454519 of:0.06100304389015985 are:0.05932652238761834 and:0.05481677784659415 was:0.05384499182503822 a:0.05066921107761122 is:0.0493930362465022 the:0.04728457261033515 be:0.03659777915903664 for:0.03591270384054704 were:0.03587111789950988 with:0.03428880420650437 in:0.03364579888608308 not:0.030272749145126742 been:0.03010627649005264 by:0.026373157059746917 their:0.02041331943341252 from:0.019406708515920208 all:0.016505260646351737 :0.1999969441883972 +the:0.16807735899698817 of:0.10541662057906837 and:0.05138367848570702 a:0.04141865232648221 to:0.0385989743764065 in:0.026264864977736738 was:0.019530675665220657 his:0.018900421021236905 be:0.017373825006196972 their:0.015767721170721456 for:0.01557246589796783 with:0.014071419046630446 is:0.012922913111931644 at:0.012690452250034052 are:0.010702713108721902 .:0.010158075558988393 Mr.:0.009672788574483367 tho:0.009612591781990074 were:0.009549306361446321 :0.391314481702041 +and:0.18250788729268003 have:0.10998549893904283 be:0.1064891533676342 I:0.07031923196098909 had:0.06182782779822591 he:0.061532549455182904 been:0.04688746578387057 was:0.04575032146212569 has:0.04371088960368361 were:0.031606316023826464 are:0.0286806102186877 they:0.020773583389965013 is:0.020267663261268252 as:0.016642117196912214 we:0.016046263134647798 the:0.015361010673458039 not:0.014853183047658994 having:0.013077231472750249 or:0.011557690571998642 :0.08112350534539181 +and:0.07705437548817387 depend:0.031536193375950296 based:0.03144111872793531 placed:0.030957065963502946 depends:0.03075765919212402 called:0.030155936973754766 down:0.02681736716319054 made:0.026577710722022318 effect:0.023344764020024934 that:0.02149799173318628 look:0.02036076372291408 due:0.02026744173692952 call:0.019789339473829694 levied:0.01970103437603757 imposed:0.018928989316509288 put:0.01802119246063272 dependent:0.01689647076264392 out:0.015342186135269933 entered:0.01437601109950992 :0.505176387555858 +and:0.07558940021936399 recorded:0.030196237618668006 was:0.028917161578042846 made:0.027969746247669736 that:0.027730098932509103 o'clock:0.025060522019555328 up:0.023026552239529506 is:0.020398277211376416 found:0.02003101797656537 placed:0.017482208134164214 out:0.016937164562539058 place:0.016819459500107596 interest:0.016629321966808677 him:0.016002796715253755 situated:0.01573420479581609 it:0.015128305982428461 them:0.014715943643665314 part:0.014646613000297721 interested:0.014450471929902294 :0.5615344957257364 +and:0.06454739073657131 demand:0.023313300174744492 ready:0.0192991955467307 used:0.018559068069203856 time:0.0167973135366693 not:0.012889415712033305 vote:0.012868664167591082 it:0.01277775949265748 candidate:0.012059490274945432 him:0.011492660117416436 them:0.011389360230310022 called:0.010603763162339089 made:0.01030049958521204 up:0.009942829375404135 was:0.009875709402481388 as:0.009516893763303088 patent:0.00929908628672026 or:0.009178704268878403 but:0.00882338719685127 :0.7054655088999369 +the:0.11919516938815296 of:0.07230453158552728 and:0.05781056740443249 a:0.043018564803886335 to:0.031305092790907506 in:0.020848713353460488 at:0.014270110001066288 .:0.012526810245749479 :0.012413283442322082 for:0.011719122709941797 by:0.010808400946589808 or:0.010404172990115616 The:0.01003576004804544 with:0.009811868184449042 tho:0.009295902015355835 was:0.008924239095331684 that:0.008672304223433876 is:0.0085591147338948 be:0.008335143826716943 :0.5187411282106204 +of:0.11272906449670378 is:0.10599575273529974 was:0.08561036922376063 with:0.07569735333038022 by:0.0615202463392414 for:0.059899143998627266 and:0.056223385696680714 to:0.04759963244188905 in:0.04658465804734433 as:0.033296615974734746 made:0.03245018215252952 be:0.02357352058876759 have:0.022504330674344736 not:0.0219132605646902 make:0.020871748321384716 had:0.018715646430127228 on:0.018328258225131847 such:0.017975322238481754 that:0.0174035925649667 :0.12010791595491387 +seems:0.198765988306965 seemed:0.06082549004790231 come:0.037343369728652716 came:0.03671019887236153 as:0.033566263488825424 up:0.03054062892030984 and:0.02809966251409802 it:0.02680414292127518 occurred:0.025946221948256295 brought:0.01766305233256282 is:0.017043732828080905 made:0.01596942571144531 them:0.015367095788284374 sent:0.015322882239908941 back:0.015087275658249646 given:0.01329776255670824 presented:0.011292059537874365 down:0.01114519178840302 known:0.01109451251306025 :0.37711504229677584 +the:0.14093976484967533 of:0.1312188204367872 in:0.06448761251274676 to:0.04793839061849493 and:0.047401252237923776 a:0.033789133214564476 as:0.02491610331093733 at:0.023639839228606525 be:0.02202050181065341 was:0.01745970946099038 that:0.0151870967795438 his:0.012488594477612084 is:0.012372514802889426 with:0.011465632412139569 been:0.011082148899346307 for:0.010909739276785025 The:0.010900746995329827 much:0.010350755839238583 more:0.010325353279774315 :0.34010628955596095 +the:0.07991889195497076 of:0.02300378116037937 two:0.02268863165369738 a:0.021604164894117213 :0.0170244388894882 and:0.012913465325949272 feet:0.012172641914890961 at:0.01188282362400294 his:0.0099525406762766 one:0.009260143431848153 three:0.007534627476477661 1:0.007375887448764328 four:0.006622316961294391 brought:0.006500984254761573 said:0.0063459363984393075 -:0.006122942885529793 :0.0060529362585974395 The:0.005989987642700369 their:0.0052714980468608315 :0.7207613591009535 +feet;:0.15935439875556584 running:0.08377737986376003 feet,:0.0727813677182167 ;:0.041301062968104506 feet::0.03411127454700721 street,:0.023877438464034575 and:0.02321565367154086 point,:0.02085744320894769 2;:0.019565119199508058 stake;:0.018523906031597297 4;:0.018184154177405966 3;:0.017958552419039174 point;:0.01497263383911876 street;:0.014913727332432557 rods;:0.013732981018554762 corner;:0.013540690450593442 5;:0.012308465618204211 chains;:0.011913398535052896 rods,:0.011003538306807038 :0.3731068138745084 +the:0.20738691222423933 a:0.0727418208729847 of:0.05179505848515659 and:0.0477779037184131 Mr.:0.03231718240004206 .:0.02246153483268973 his:0.022282235044362404 an:0.01970772520026884 The:0.01816935677099356 to:0.014127177033793332 Mrs.:0.012820047058522962 in:0.012091536645561047 tho:0.011965836487208118 A:0.011282077631844122 her:0.011133760015529695 at:0.010406142929734019 was:0.009865820868225655 by:0.009672973549879617 with:0.007675394466407244 :0.3933195037641439 +of:0.13799619249065867 and:0.11883064531158104 to:0.062226457017048147 is:0.05293196053706902 with:0.04994748953914694 in:0.044662809735252995 for:0.03900712016990596 was:0.038284881648753225 that:0.03668617971811331 at:0.03377253930836139 by:0.030133232354949874 it:0.022189726579692953 are:0.01965988969925253 from:0.01827713227237573 but:0.017562905779422624 nearly:0.016493111787246474 on:0.013866210344953275 do:0.012472792395505203 were:0.012203849484987293 :0.22179487382572335 +as:0.2780097673241139 the:0.13161782562308563 and:0.05165594753794327 so:0.05034192441259903 very:0.042472469466364876 how:0.038442477979108644 a:0.0342180567665961 if:0.026034915387680217 The:0.024248222166232587 is:0.02271917971536753 that:0.021587164783709385 but:0.017275476583618107 be:0.015573305607582294 are:0.014889125776912262 pretty:0.014671321369098616 do:0.013499840078657609 was:0.012838876797251339 or:0.012426449031577008 many:0.007557694351163366 :0.1689199592413382 +of:0.23334898813708774 the:0.1450535158622162 to:0.11666692590764817 by:0.07535636909999059 in:0.06297151429724089 and:0.04725395668761045 with:0.03136898934220628 which:0.02401210007970707 on:0.02390673758729349 is:0.02272432389992111 that:0.02210685272507604 for:0.021278693716263744 he:0.016126981315196662 upon:0.014889601603731381 from:0.013827308587882472 The:0.012578416090286069 satisfy:0.011397818814601312 be:0.011184932445815688 have:0.011075864818531626 :0.08187010898169302 +day:0.028545157509502577 vein:0.01814528829507179 one:0.016168723317343325 line:0.01444989652054974 side:0.01379825948775132 part:0.013344019870575739 in:0.011796350981328448 on:0.011789169831892463 land:0.011586168629137496 action:0.011358480218249506 costs:0.011336610176058378 owner:0.01081212546204415 city:0.009451657523755382 piece:0.009163806133674011 town:0.008929162134593091 State:0.00883914988423554 house:0.00866684694010124 tion:0.008005644700839556 gold:0.007974604967559265 :0.764838877415737 +statute:0.18503778554392375 and:0.0783983962223686 that:0.033380239341607734 or:0.03152256600567214 as:0.02563417972280283 is:0.02236126157520294 it:0.021719211380978074 was:0.019916659616198235 be:0.019571526470503822 interest:0.018952452254899003 made:0.017678352581659514 described:0.01578673853550229 them:0.015529260604471443 interested:0.01516978637816619 but:0.014400036858924001 not:0.01437132414250767 than:0.013662947787247437 been:0.012665598734066783 engaged:0.011480850852674019 :0.41176082539062353 +and:0.2695455393419967 that:0.0751201191046256 but:0.06596723695217374 time:0.027962171711881385 and,:0.019249733532312276 was:0.018666388082782377 But:0.016701673381841885 it:0.015377683268203341 ago,:0.015138761335896199 And:0.014389623072491383 is:0.012715758388473199 or:0.012376076137248964 as:0.011545220471069928 except:0.011185785516544458 even:0.011030739104685714 which,:0.010720303310691114 him:0.010567722918248168 only:0.009567030334681276 them:0.009535663633795792 :0.36163677040035647 +the:0.18000719220509154 of:0.10482638217209517 in:0.050909888493177555 and:0.04348051557044839 to:0.040580165463523284 a:0.03453095516616114 .:0.026367576860175174 at:0.01994585146237764 for:0.015722050567091698 :0.014403648637848406 by:0.013623804760300869 with:0.013430166002528176 tho:0.011143413334526567 his:0.010275744128317166 or:0.008422855719650388 The:0.008036195053691747 In:0.007981736177676195 from:0.006811373586754697 said:0.006365479847978954 :0.38213500479058526 +the:0.5768643126377856 an:0.07912773177881603 The:0.07873385465135742 a:0.05137503565092224 tho:0.03286970039835303 no:0.0180547275370497 great:0.016211362386483734 tbe:0.015626613951442058 sole:0.01388282075070178 and:0.011400920468076763 primary:0.009360408228165902 this:0.008750262922562658 to:0.00863974692866468 any:0.007864666253807787 little:0.006040852155075534 or:0.005729586033255065 Tho:0.005051117923016962 first:0.0045852449058155715 general:0.004379286802224656 :0.04445174763642276 +the:0.1330767002005149 of:0.12726472491103055 a:0.09687278682708814 and:0.049456564273168566 in:0.0437755725206218 to:0.036979438731355556 that:0.02584810683332598 for:0.020413662112502177 an:0.017898490127194817 his:0.017027519632965143 as:0.015715204873389184 at:0.015467079400947489 The:0.014610080028534861 by:0.01403897199513825 their:0.013892460245178671 with:0.013679733689883653 from:0.013435102421197139 on:0.012255967351876165 be:0.012220604017252454 :0.30507122980683454 +the:0.08741288820481248 and:0.07392080242938477 be:0.0572668144792991 was:0.05686739458441792 of:0.05297029938296901 to:0.040095074017987696 is:0.03448309022071693 been:0.028380973754521515 a:0.02485235362607966 are:0.02226522268065813 were:0.019682022343204007 in:0.019454144698829248 or:0.019273705289081854 as:0.0158232132157123 not:0.012361914460680723 being:0.010097596398749334 for:0.009388164492904385 :0.00930537568905371 their:0.00894740846790883 :0.3961515415630284 +the:0.2193912675795228 of:0.18838932748040946 a:0.09030009729314908 for:0.04488445572498718 and:0.040941115183037204 such:0.03662412026723015 in:0.031183726502314237 all:0.02521317589141864 other:0.0243700885313706 so:0.020776020898093793 from:0.019717169759109664 tho:0.017344815795552016 to:0.015995956776217037 by:0.014337825486006213 any:0.012975342022797577 these:0.012202052491474316 some:0.0119922877847929 last:0.01197365046850793 after:0.011684391541811699 :0.14870311252219748 +of:0.2167363552586267 with:0.10032382514121557 and:0.069972031111965 to:0.06987053780961658 in:0.05414981585822534 on:0.04098791475183916 for:0.025936776149634886 by:0.022317717505336284 is:0.020468282272325715 from:0.018277760331907755 as:0.017932517831108198 a:0.013668515870856875 that:0.011627693449012117 make:0.010823546722539644 all:0.01042844034174453 the:0.010379292831970628 In:0.009331291143726895 give:0.009171413668313536 upon:0.008052618244110047 :0.2585436537059245 +the:0.17186949188796918 of:0.09613600487758009 to:0.06810989472881987 and:0.0671159178156827 a:0.04842755304971689 in:0.029606656037987913 be:0.02592226045891956 is:0.02133049953187464 for:0.021086273175484706 their:0.018418729535074327 at:0.018178161049898205 his:0.017948069219767125 was:0.017687920992466927 this:0.013169019954401257 its:0.013019007776548993 tho:0.011547047340633677 not:0.011018992573181827 or:0.010498610803800934 by:0.010366588313851233 :0.30754330087633996 +it:0.12095170213729357 I:0.10295253072398855 he:0.09334846102451981 It:0.07560258178653198 we:0.07475312662710235 they:0.07214204772571246 We:0.030151283973907466 and:0.02932294138389299 you:0.024017617487323593 she:0.0217617484534564 which:0.02015335738562504 that:0.019474813901445006 He:0.019412464993831032 They:0.016494013645298986 who:0.016280066098497956 man:0.009946927938764435 ho:0.0091155519095246 there:0.009028002202766 people:0.008837686362582114 :0.2252530742379357 +of:0.24740790763900064 in:0.19103460926521115 to:0.093690948962158 at:0.09140756222777556 on:0.07647897467079455 In:0.04231293284959738 from:0.03318841796470005 by:0.025484304531776535 with:0.021193613105326817 for:0.02040039749038093 and:0.01961780361022295 that:0.018308609625756107 into:0.013330875206455494 At:0.00852146499779802 upon:0.008116807827063642 through:0.007761228259240369 over:0.006732131414622821 before:0.006133711285119347 as:0.005939010362763352 :0.06193868870423626 +the:0.1853550640427183 a:0.08399666940394186 of:0.07083218073264719 and:0.05254386180626787 to:0.025239865060284382 The:0.025166423021532058 at:0.018994448289916248 in:0.01724576926152233 Mr.:0.01689032733763933 was:0.014654920886058131 is:0.013754687861046206 his:0.013444533320856737 an:0.013070571943772183 be:0.012390339776696905 or:0.011966436965562035 tho:0.011851951565278792 for:0.011701729213285404 this:0.009859945221052291 are:0.009588716638370798 :0.380451557651551 +of:0.16269362316158134 to:0.10081937503668865 in:0.09232579850309246 and:0.07551805763972963 the:0.059816357665524185 a:0.03758976024303172 with:0.02846489049427916 In:0.027633196672511774 for:0.02307401506027515 from:0.022875966969915066 by:0.018938093599943643 that:0.018893752336422993 as:0.018676938706715145 on:0.017663577404480157 at:0.01665046687808918 was:0.012494023594522771 into:0.010258360357080396 is:0.010077455439893558 or:0.009031228001449081 :0.23550506223477394 +the:0.2782868864702031 and:0.12184574248071028 of:0.07534836880317285 for:0.05695506683567769 a:0.053640962628059764 in:0.050694138802443105 to:0.03710655390882444 or:0.02708922763957916 was:0.026429983899921274 by:0.02254303316723334 an:0.020795503760114395 The:0.01700153664632662 are:0.016601967197175993 is:0.016041105824993532 from:0.015899940271171375 tho:0.015463979257550477 with:0.013283228718949961 were:0.01279676475669168 In:0.011435867280386315 :0.10974014165081464 +to:0.12022893700269083 and:0.09020394424291768 the:0.08587503820055309 of:0.06450042443224316 in:0.0310058468700829 a:0.017742048521183405 :0.015548046036689871 not:0.01491307651316237 that:0.014112408707955496 for:0.013734482372212283 I:0.013065769926808477 will:0.012848502316304782 at:0.012837991177321897 In:0.012628718855091186 by:0.012491091048660757 be:0.011425930130217754 is:0.0113962101007567 he:0.011342727513475473 or:0.01112522537451577 :0.4219735806571561 +the:0.18123160447524797 and:0.07686070651628574 of:0.07065726156826162 a:0.04143197415884941 be:0.03443898922342863 was:0.03213686530636302 to:0.03058137325438655 in:0.028154489186350152 is:0.026094869523454255 his:0.023784400084596317 their:0.018857341434630696 at:0.01716949223728079 or:0.016695052488801522 are:0.016035143666433813 were:0.01566940052218228 an:0.014672113461012245 been:0.01394183654698577 for:0.011011367643487877 this:0.010519292813148928 :0.3190564258888124 +is:0.3186039027953538 was:0.0997677722818113 and:0.0879943762263392 are:0.054948856922516436 be:0.0427289168219546 Is:0.04268649630520824 has:0.040672891183547624 not:0.03626262416048053 it:0.03450686232309162 It:0.02543640721877765 have:0.022948923088311965 he:0.020672794804270703 had:0.018491407295875714 were:0.0169346631127555 as:0.016870986122623437 would:0.014191855632384467 been:0.013429805345440029 He:0.012858927106298379 but:0.012657781129085128 :0.06633375012387369 +and:0.09229219010610085 made:0.04831872464341105 or:0.03306906084889242 but:0.02527336272685039 it:0.02365679568765323 done:0.022823839696743897 shown:0.0219873820342011 him:0.020558697933299265 ed:0.020421730296290467 only:0.020391069924997493 that:0.020100217511068243 up:0.0175858471733421 out:0.017044705103946203 caused:0.016978739667765867 given:0.016621640729678595 paid:0.01580958897161901 them:0.015593452024053708 used:0.015591265553732815 followed:0.015226715191174342 :0.519654974175179 +of:0.1535227947160373 and:0.10098198898958174 in:0.07260828863707008 with:0.05816815803356769 is:0.055857752977252054 to:0.05377719495858619 was:0.053408153586731476 as:0.04289797317354302 by:0.03938401469520152 for:0.03700899887910459 on:0.028544409870911554 that:0.025122840710003612 such:0.024393695352093885 be:0.020170876838449432 at:0.01974089957093391 from:0.017143324683005993 In:0.017038601046552113 than:0.014709432929682586 made:0.014098976781809696 :0.15042162356988154 +of:0.1792976300535425 for:0.10727613390192534 in:0.09391184871505687 and:0.08090115463160233 to:0.08064076516677048 on:0.0470736296560907 that:0.04645341046332486 during:0.036465972708757476 In:0.033482469333965495 by:0.03326295077986889 with:0.031929974828091734 at:0.03149125452504993 from:0.028290142565679938 all:0.019470276488718297 is:0.01811343048726376 upon:0.015401625607347947 after:0.011746049804322941 as:0.011676037388963056 was:0.011481532733912624 :0.08063371015974484 +the:0.19823193478539852 of:0.08698694377256569 to:0.06222583266450553 at:0.03656614154312146 and:0.034932742655731645 by:0.025583580339448714 :0.020808761724035504 in:0.01871157273731872 said:0.016892466510926525 The:0.0159320965527923 from:0.013869751762096224 for:0.013728928329788262 tho:0.011100443427945934 a:0.010461809855644105 with:0.00745633724906721 that:0.007260638514360891 Mr.:0.0063722690646472605 tbe:0.005925932573093535 this:0.005070686536238343 :0.40088112940127363 +of:0.19308303335223953 in:0.12390927884563734 on:0.08348026114253954 to:0.07767060941595928 at:0.05452129103594391 for:0.05121152392703255 and:0.045541077012428134 In:0.036570257726875846 by:0.032920662393873056 with:0.03219793312116034 from:0.0261977644896866 that:0.02498240461493978 was:0.017373090536694846 is:0.01609900507623269 all:0.013681801239522527 when:0.009316547337297238 before:0.008911022194383755 upon:0.007830341542441279 as:0.007406439041082824 :0.13609565595402898 +it:0.18028137702777075 It:0.14162198589461822 which:0.062434641540325936 that:0.06042070762629109 This:0.05492155498254758 he:0.038456424288833474 there:0.036900422260808516 and:0.03537694522463844 this:0.024584360417353124 what:0.01858429416869733 He:0.018338282174839 who:0.016117032686646042 as:0.015505288035868313 notice:0.013053481241927947 There:0.012917260218051209 That:0.0113713958982825 she:0.008794762275013612 man:0.007496899618933063 one:0.006627291706041976 :0.23519559271251192 +the:0.08366732582523558 and:0.04894647825325144 a:0.04792867016558229 it:0.027364756307414827 of:0.024842664634734824 to:0.01880885348809758 at:0.01710449102653038 that:0.01640374355190399 he:0.01566374265043646 for:0.015553522563127415 by:0.01226346255860998 which:0.011219591176506935 as:0.01120894606175413 It:0.0111670516006834 is:0.010299947890248223 in:0.009706961090415722 they:0.009464099310262002 this:0.009099573539550801 from:0.009014877665663395 :0.5892712406399906 +and:0.07558940021936399 recorded:0.030196237618668006 was:0.028917161578042846 made:0.027969746247669736 that:0.027730098932509103 o'clock:0.025060522019555328 up:0.023026552239529506 is:0.020398277211376416 found:0.02003101797656537 placed:0.017482208134164214 out:0.016937164562539058 place:0.016819459500107596 interest:0.016629321966808677 him:0.016002796715253755 situated:0.01573420479581609 it:0.015128305982428461 them:0.014715943643665314 part:0.014646613000297721 interested:0.014450471929902294 :0.5615344957257364 +he:0.16447774761876424 it:0.12776586200868464 and:0.06685105473011813 I:0.05738594340637215 It:0.057343497533885755 He:0.04151173678497689 which:0.03915939645097246 she:0.0388136258435641 who:0.032328857449294625 that:0.023300820821762547 man:0.02116845508534482 lie:0.014154038042928179 be:0.013569485638054893 This:0.013112788508433268 She:0.012202113760786516 there:0.012091464149328508 ho:0.011328911857771308 but:0.010999580243334193 bill:0.0082393772312983 :0.2331952428343245 +the:0.23486788148187326 a:0.22772058725697497 and:0.1023075157416909 of:0.05483578768882437 to:0.04227713987680468 for:0.034812759697489704 with:0.026782834725684056 The:0.01955528377990331 tho:0.019129763604543604 that:0.017088717207896575 by:0.013133671440547183 in:0.011318304767926394 A:0.010376901373934721 from:0.009719543951682461 will:0.00787146427616012 this:0.007648392519929338 his:0.00744683274167887 is:0.007370305164321771 tbe:0.007152942317566972 :0.13758337038456672 +a:0.26465523962916987 by:0.14913114686485318 the:0.12313629523503991 of:0.0827445977119676 and:0.0412978174658581 are:0.03922878395627454 most:0.03145927851086795 some:0.026616031915646637 is:0.025092157225134297 all:0.02377335336424433 to:0.020757724772773264 A:0.018302365586856974 very:0.017641896360654743 with:0.01641147421394373 not:0.013229493282038554 this:0.012464914592109941 other:0.012423335353949006 many:0.012335501442764818 The:0.01144193567248701 :0.05685665684336558 +to:0.2076424230802998 and:0.12355859213531281 will:0.09593310865515113 not:0.08075237133635778 we:0.04933975940953752 may:0.043694181755423146 would:0.03922590351005303 can:0.029383582899606277 you:0.02909660918164374 they:0.02895736048068638 shall:0.026435516312124364 or:0.025537104132068587 I:0.025146475152790004 should:0.024027406521091088 must:0.020400902813769665 be:0.015271473527524147 We:0.013795410557192495 ever:0.01334122370524521 is:0.012080782461013665 :0.09537981237310919 +and:0.09371829588516653 put:0.08518338138709944 as:0.0686856081238517 of:0.06769209894736022 to:0.061273727180715234 for:0.052537574102290575 that:0.04804033680941679 with:0.03475758591533006 make:0.03126125663870397 in:0.024859268017233413 take:0.02162262846319541 get:0.02047568041599992 keep:0.019994823626297373 made:0.019772104990745908 on:0.018936792622727502 but:0.018820502029100107 when:0.01846703255187629 from:0.018012202667871704 by:0.01767779421660038 :0.25721130540841747 +and:0.14507320772351315 fact:0.08580533594336559 said:0.056464728489513914 so:0.05141663139801109 believe:0.03728868944610554 is:0.032697255055655516 say:0.030323479159427524 know:0.029749358812227955 found:0.025535190692382553 stated:0.021273605064562356 show:0.019511948220510757 but:0.018999393120383457 says:0.018814328565908398 think:0.016893655385130203 was:0.01658797795582863 all:0.01652317309060226 see:0.015409038245983688 opinion:0.015263158537430448 order:0.014744011681695817 :0.33062583341176116 +the:0.1406708037095034 and:0.0829573710696507 of:0.07506082005272716 to:0.04577194087695313 The:0.02119464330564006 is:0.01750779448097503 that:0.01721814633543723 was:0.015598043514413634 a:0.015412322798669857 for:0.014749479476862412 as:0.013251796118889872 be:0.013101561504821873 in:0.012084134975095083 which:0.011834152302085003 he:0.011311755422142394 his:0.010939826907316893 or:0.010821603948702524 are:0.010442245577232188 with:0.009339708577164957 :0.4497318490457166 +a:0.17411482505247552 so:0.14289299202571173 feet:0.10525164782854918 the:0.06063240861378325 very:0.0558563157456984 too:0.035085330217686714 inches:0.03199935336233197 as:0.031313990462746966 was:0.029998078418283926 of:0.02386820137613988 not:0.02081031459456471 be:0.01936892159108936 is:0.01896650407980909 with:0.018549202763978558 miles:0.0176353723944803 are:0.01758257859643557 his:0.0174536997641137 and:0.01649700746172409 by:0.01581153097044415 :0.1453117246799529 +and:0.14212282892974618 of:0.1260497754702729 in:0.0713488293016241 said:0.05575583662374457 to:0.03368993234792652 on:0.028972009466505952 fact:0.024476269296409555 for:0.023365048618379784 all:0.022634113520150965 from:0.02176322804514349 In:0.0175586054875821 say:0.016880153512532924 by:0.015658394528295556 believe:0.01436703559799184 with:0.011312118571105065 All:0.011259573099970221 at:0.010591087561019393 says:0.010476261101003958 but:0.010042450956253123 :0.3306764479643418 +is:0.16181177705183017 and:0.10563875433229557 was:0.10267849688520386 have:0.05293364609362046 had:0.04771003221333689 that:0.03960562595390415 do:0.03722867819681688 say:0.031999368880149495 Is:0.03143261411543853 but:0.026754355208994857 be:0.02669067117173386 with:0.026455027395063536 as:0.026170152152168794 knew:0.02434107363482661 has:0.024328079694648504 are:0.018767413312851887 to:0.01848243999575517 it:0.018380765578983455 see:0.01791947981107701 :0.15967154832130034 +a:0.1743499239611934 for:0.13858137756259312 the:0.13080538599991576 of:0.08780505120700965 and:0.0504267603386587 to:0.04237071746791094 at:0.04153600452671363 in:0.03575819683417204 very:0.029122672014651258 A:0.019311250653267466 as:0.017727878212750545 The:0.017017160394091967 all:0.01671383264942171 For:0.016422105814605955 will:0.01610069859894993 with:0.014379793111886753 are:0.013915708317561254 his:0.013835895469433188 that:0.013473276538291433 :0.10934631032692127 +of:0.20997610764659336 in:0.19488182648113575 for:0.06377010498386901 are:0.06340417476744195 and:0.059677107970344534 In:0.058191154645025445 by:0.05108161218318131 the:0.04223442132973566 with:0.04149784819104171 is:0.026569273197716205 from:0.015359775586053526 after:0.01528272944096189 a:0.015080099578323129 to:0.012689425148980435 was:0.009966732798668923 more:0.009401474911385927 without:0.00884427689029277 under:0.008291401097981165 annum,:0.00805270344656429 :0.08474774970470303 +would:0.13516776815931453 to:0.10175318883572715 who:0.0734216616549984 they:0.06090829687960963 I:0.054414498797697934 which:0.046947310165833735 must:0.0405200574155989 might:0.036445589637541506 shall:0.03272411333844378 and:0.03228038765818951 should:0.03179090655993478 that:0.029508760759060126 not:0.02876680420731567 we:0.028503874055856488 may:0.028150033623979002 could:0.022163961267380006 will:0.019029697840863502 there:0.014322928357478427 They:0.011858887319353098 :0.17032127346582382 +of:0.1666997798749216 and:0.09015077964884086 for:0.06488951946619886 the:0.053022775967382835 to:0.04021700551112634 in:0.029553717558018125 at:0.029236120595166767 be:0.01706224521228989 two:0.01600802397135087 a:0.014551216210789046 by:0.014220945132164745 that:0.013930450085724714 millions:0.013338158171122917 or:0.013336377753256481 three:0.011600588849784276 was:0.011415092120262333 all:0.011040571687286834 about:0.010862051379925223 with:0.010470595590817769 :0.36739398521356953 +number:0.08265600495527638 bushels:0.08138072441356228 bushel*:0.05435710188732121 lot:0.029717055732927662 amount:0.028021193552296465 rate:0.027863519725273376 one:0.026281784305819143 piece:0.024898072678386937 cost:0.024266673806610246 instead:0.02016051494647327 out:0.017721048080036095 acres:0.016061052534959507 years:0.015840692694896876 point:0.015744469026804327 tion:0.015135115710186647 sum:0.014889152196952825 purpose:0.01438138071481602 part:0.012188369352446823 line:0.011965110460591821 :0.4654709632243621 +the:0.36300716420940315 a:0.08479104439852557 and:0.06580712447151933 The:0.03587026453229105 of:0.028880835821979693 tho:0.025995066876861712 or:0.014109064848512032 tbe:0.013423000350663277 in:0.013343333689581073 .:0.01097534038402436 to:0.01062052605223996 an:0.010142255539142383 that:0.007295460828216929 :0.0064864528570461955 on:0.006155938489041873 no:0.006140494713123602 great:0.005858668976484144 as:0.005824980602014022 any:0.005418337080659156 :0.27885464527867043 +the:0.13774875774680231 of:0.054589835186555885 to:0.039994674443999366 and:0.0367609017001355 be:0.022600428005353765 in:0.020540446330689185 or:0.020020369248036112 at:0.01989027335829331 a:0.018897184254041497 his:0.01792016421026771 their:0.01368683549135317 was:0.013210679331411719 said:0.012323476692636958 on:0.011126794708799513 is:0.010895214367746014 :0.010876848939747698 for:0.009990497379093756 this:0.009166985590414841 that:0.008569467564580562 :0.5101901654500411 +the:0.3760012880190163 a:0.26845728831650945 of:0.052764127982819216 The:0.04657358684502337 with:0.0343177391677788 and:0.030685332253772665 his:0.021919716620126133 tho:0.018744034935309937 in:0.016872382603218675 this:0.01657441330705967 our:0.015559785148252844 A:0.015399600259808108 very:0.014682032676105173 no:0.010121355380786809 that:0.009220148446610546 their:0.008846504757108672 any:0.008368585045019793 her:0.007569802909868436 some:0.007522381633791327 :0.01879989369201407 +those:0.131603950208728 man:0.07618029265851242 one:0.07488106516145178 and:0.07133778990922185 men:0.05191890680442398 all:0.03684148011170676 people:0.024875935051606415 persons:0.01655178335435497 Those:0.01616875509081486 person:0.01525484193316413 woman:0.012491156511451135 but:0.011787078357609547 others:0.010421270917408831 many:0.0083015044574704 or:0.008174807077073694 man,:0.0067849910953753645 women:0.006336698639709476 men,:0.005867562467380241 girl:0.005848994387884083 :0.40737113580465206 +of:0.09129790931378902 the:0.07369883040827747 and:0.047842263382354346 in:0.04189055351593407 to:0.04045875475680249 a:0.03542341257202578 be:0.02020462051672066 for:0.01979292654746225 was:0.01760256398103379 at:0.017380150555488715 is:0.014984483003968216 with:0.014047653760730413 by:0.01374644383819499 :0.012670486581795598 In:0.01200961464556976 or:0.011563835749786333 from:0.011391516893522809 are:0.011273104484969465 that:0.010755276030689069 :0.4809655994608848 +the:0.2068515538900288 of:0.13464044482904058 their:0.13439487791794102 his:0.04847076882525485 our:0.04205271459653827 good:0.030165098410176477 in:0.028307664793198208 and:0.025882353489619772 a:0.023629891636670907 own:0.023106292620201946 its:0.02125037437078505 best:0.020689589142571456 other:0.019104970460956636 much:0.01880857903006011 this:0.018253762769077708 further:0.015278305765802025 with:0.013259362726809663 public:0.012346537936175576 long:0.01206991103568688 :0.15043694575340402 +of:0.09129790931378902 the:0.07369883040827747 and:0.047842263382354346 in:0.04189055351593407 to:0.04045875475680249 a:0.03542341257202578 be:0.02020462051672066 for:0.01979292654746225 was:0.01760256398103379 at:0.017380150555488715 is:0.014984483003968216 with:0.014047653760730413 by:0.01374644383819499 :0.012670486581795598 In:0.01200961464556976 or:0.011563835749786333 from:0.011391516893522809 are:0.011273104484969465 that:0.010755276030689069 :0.4809655994608848 +be:0.2703905958066641 was:0.1825190633794934 been:0.11096643671888161 were:0.06509372786141827 is:0.057099238281784113 are:0.04184529008275387 being:0.03630682447256296 and:0.024627841955003112 have:0.01806308482611967 has:0.01726271955043243 had:0.016800582318467844 he:0.016524791313150794 bo:0.014018862105691263 Is:0.012229702787387838 I:0.007373479984721961 case:0.005644521748565883 hereby:0.005322764378833766 mortgage:0.004583708370913843 He:0.003876872982300784 :0.08844989107485249 +of:0.13084814232797154 in:0.0740836656586379 as:0.0625527229231004 with:0.059577596335708534 to:0.058433603729754965 is:0.05551580107464621 and:0.04946529489577619 was:0.04264000753602388 for:0.04009673021586375 by:0.037684080471064085 be:0.023941707008899252 on:0.02316059851167503 at:0.022644769441950232 such:0.019950936521181326 that:0.017856095877642635 like:0.017386655618315594 In:0.016902219705578994 from:0.016046571451088905 not:0.01205910100844263 :0.21815369968667797 +the:0.298165025887288 at:0.2192582991252689 to:0.0765320691724499 was:0.03716152694810218 be:0.03527798476618015 and:0.029493169120531272 The:0.029451667140166154 not:0.028555406076980448 At:0.02526550854213891 its:0.023397417396625247 were:0.018678704164221127 his:0.018408358774406015 is:0.017715588651959983 their:0.017684368718337742 are:0.017367232308059043 tho:0.015377734705356073 our:0.014841663138976663 of:0.014199758930668221 a:0.01402871298365097 :0.04813980344863304 +containing:0.19818099187971147 of:0.15611463930052635 about:0.11247357979236323 and:0.07418818201744391 than:0.038615368742445096 west:0.024462451961121748 the:0.024148564339031 or:0.023807217153730714 east:0.022816130765546137 on:0.022346145824275014 to:0.02155654295928496 over:0.019264444722903454 hundred:0.014722298590574442 in:0.01124983864869865 at:0.011200223940928958 taining:0.010722416201783923 with:0.010522650714259335 from:0.009459118071366802 for:0.009213336785021935 :0.18393585758898284 +of:0.3370323017696248 in:0.10200190581322886 to:0.09223688484013629 and:0.06759483615217858 by:0.0486163852735153 that:0.04600751151304702 with:0.031144005588755734 for:0.029424503846602595 all:0.029214578249841753 from:0.028685607848493888 on:0.02295995732279138 In:0.020967038406815987 upon:0.012849442890445643 which:0.011721358640390284 at:0.009638945687548498 into:0.009201143731535457 as:0.009075345719419434 through:0.00830783066177694 under:0.007019785217498237 :0.07530063082635335 +the:0.1995051608067304 of:0.06396229459684612 and:0.05282660488447008 that:0.0348386923597088 The:0.03175596856312186 a:0.02559002970661738 in:0.023004153267151637 or:0.02063445589169463 to:0.018089782799462325 which:0.01681837010133177 no:0.016818072614092686 as:0.016228091281832883 for:0.015810375530307914 tho:0.012928855453868685 any:0.012753077340320081 such:0.012200778634757771 he:0.011989420774490698 Mr.:0.009950685457926179 more:0.009863070689844792 :0.39343205924542335 +to:0.5846183874090697 and:0.06631926486563974 will:0.05936500768769136 not:0.028661855640421778 can:0.027895368535438437 could:0.026640384325704817 would:0.025631080249655575 I:0.02143324283156412 may:0.017778930656548404 should:0.017686831489320005 To:0.012516806049623437 they:0.011135031070434547 we:0.010920344672095187 must:0.009317017476787868 or:0.009211658864933173 that:0.008923304331471335 shall:0.008282681508845952 cannot:0.007932760320328927 who:0.007038023156555741 :0.037692018857869866 +so:0.22313666983613392 as:0.1181500688813472 too:0.1086697772973524 very:0.08829036723697468 a:0.056945423886241346 how:0.043890826384762105 of:0.03370372325895668 is:0.03365229047543262 not:0.02730061725911188 and:0.026297661417343805 with:0.02554145284127209 was:0.020204615689859096 for:0.018991566609250055 in:0.01781635656634697 be:0.017408505042779125 are:0.016979010131706895 How:0.012178077950844027 by:0.011196617934873414 do:0.010350824345377376 :0.08829554695403431 +and:0.0326837819686231 it:0.021542906134790336 was:0.015977168550284908 all:0.01482317637767766 as:0.01182540040589977 that:0.011729162559852012 the:0.011328439213500635 of:0.01097054340123605 a:0.010101571339440415 so:0.008425324216013675 much:0.008194950606750169 or:0.00786617771234013 been:0.007578406728199654 is:0.007545453569380227 up:0.006525464131712949 be:0.006406067468841521 him:0.006380350291153125 day:0.006364707031145767 :0.005926398870763298 :0.7868045494223945 +are:0.11201145864073847 is:0.10478683798792546 was:0.10193244552045005 from:0.09417345993208684 the:0.08406872038068632 and:0.046034406432954283 were:0.04460080607003424 of:0.042487498397051585 in:0.026463959853051694 for:0.025456014251992166 be:0.024861194789549235 Is:0.023701211734958302 been:0.01650744307954646 with:0.015982260844118627 an:0.013309481689264492 a:0.013270674638412815 just:0.011147752689716725 being:0.00973202876967709 after:0.009179938523522727 :0.17929240577426242 +the:0.28095755503989545 a:0.1611131672526459 of:0.0675039106613301 is:0.045927989564568616 as:0.03760122465490446 was:0.03707225622701437 his:0.03558042450339232 and:0.029740894107539887 The:0.02681377221764522 tho:0.01762709547853941 by:0.017420943586068317 with:0.015224358825100698 at:0.012251003190866024 her:0.011445363161643619 their:0.010920045417527701 or:0.010384708129749233 A:0.01023016081808591 are:0.010079633262315105 be:0.009875469409203383 :0.15123002449196427 +of:0.048172239435367574 and:0.04722366918763602 the:0.033642151942004477 -:0.03193944414553698 that:0.019464814854713918 in:0.018422400886414496 to:0.017989224996546888 a:0.016668083590213604 I:0.014423988993911167 for:0.013797782849777535 as:0.012284511178647262 :0.011658385473986897 it:0.01060753235573107 by:0.010386874056870924 .:0.010193174639450462 is:0.00928475301519572 with:0.008798667187443533 one:0.007051228631996577 i:0.006941568062826208 :0.6500495045157286 +of:0.28767355066866834 to:0.08775711267569858 in:0.08678131196995101 and:0.05160598694501188 on:0.04646139928102899 by:0.04519522654900943 for:0.044547789071328545 with:0.03396756772609607 that:0.033699232901107726 from:0.03075346596941143 at:0.027039283056790858 In:0.021061449543044047 as:0.017514234937992545 all:0.012543839382496166 upon:0.011844431150487573 is:0.00998972746569266 was:0.008814315973987914 into:0.008557199930727406 through:0.007781895704231326 :0.1254109790972375 +.:0.14891108402421213 A.:0.08935402284948075 J.:0.08268319761873456 Mrs.:0.08157826252384238 W.:0.0689860789173502 C.:0.05848090001000594 H.:0.0548595451998126 E.:0.04070184899237463 Mr.:0.038858027477450444 Dr.:0.03231349765856666 F.:0.031628799949782446 M.:0.028948924393831853 R.:0.02655421001158226 L.:0.024793088270123078 T.:0.022823818081443105 S.:0.02024401559560204 P.:0.017518323925353532 O.:0.017496711883023004 B.:0.015597005653061328 :0.09666863696436703 +they:0.19335410260787936 we:0.11570330580530865 who:0.0893788125521033 We:0.056240238197877594 you:0.05540979491204705 which:0.053383714682669794 They:0.05320489910968853 and:0.040035215490199505 that:0.026160807933684138 men:0.021660278391146825 people:0.018376753635993046 there:0.017691059753900434 You:0.011047407996541208 but:0.009382340077613852 them:0.009325459110924769 There:0.008003327042241371 these:0.007965393322899974 These:0.007489545195429627 I:0.0073097276506571204 :0.19787781653119385 +just:0.05625523003775768 and:0.053102676114757184 is:0.04280064538024239 such:0.03452971391247597 well:0.03326239150595329 far:0.03274013684233952 it:0.032541270377129825 are:0.02669833614327818 not:0.02436997345721897 was:0.023745123921489076 them:0.023041197095226975 but:0.0204165181616103 be:0.01867828308090707 soon:0.01716928831639693 much:0.01628376853348678 him:0.016200999913316406 might:0.016036342189603793 known:0.015218520435185238 Just:0.014405061611282253 :0.48150452297034213 +of:0.24600347571637168 the:0.2353777459979468 and:0.08634139707025788 The:0.07165104468984662 in:0.03350716833365295 said:0.02868155223957696 that:0.02571739711095958 by:0.024626203867668634 tho:0.022180779618126152 or:0.01962194343439863 These:0.011515363724446892 these:0.010672284284879428 a:0.010562788572404806 In:0.010412631091526715 other:0.009737053609461676 his:0.008732033401099622 if:0.008432073130543538 no:0.008105972657116864 same:0.007735892783063673 :0.11938519866665086 +be:0.2646518319944028 been:0.1565393378036164 was:0.13777056878469557 is:0.06318755556083114 and:0.04534163151470778 were:0.041026634624147525 being:0.03366779079898917 are:0.0240106172295775 as:0.0176140801534367 bo:0.015520455394628128 if:0.013335886552134238 not:0.013119534861902324 ever:0.012927100618240388 Is:0.012830307863238036 well:0.012398582240023926 have:0.010209210993490874 or:0.010121758687219052 now:0.009571489119736057 once:0.008545488150733761 :0.09661013705424872 +of:0.13226139294363082 and:0.08819657205777541 to:0.07614043281900981 is:0.07310022239457957 with:0.07071706798113768 as:0.05942277195285196 was:0.053819584012923555 by:0.04862255746270526 that:0.042185736340703425 for:0.040364901703218575 be:0.02754557998506502 in:0.025512538465420145 such:0.02166208508907617 at:0.019366311063691685 from:0.018209938023179432 made:0.01563848645406745 like:0.015190880494536284 but:0.01393364595197839 make:0.013724991724686676 :0.1433843030797627 +made:0.0643126829595994 and:0.0627581189230708 or:0.03211605780703522 it:0.0196933030612712 paid:0.01809506963703845 accompanied:0.01809072839028369 that:0.016925424786826303 ed:0.016639887948187927 done:0.01615725991466513 him:0.016120970822416782 caused:0.015256944816503862 out:0.0149090010160046 followed:0.014725757113667077 given:0.014587971361630458 shown:0.014295257476016288 only:0.013221519512460473 claimed:0.012397601206602068 upon:0.011972241731809266 used:0.011724880412870026 :0.594999321102041 +in:0.4145344260357395 In:0.22055711289643867 the:0.10441978484098989 of:0.09214035631320876 a:0.02386959945941187 for:0.020818859739627483 and:0.014483461260413936 this:0.009168308455888445 any:0.008755010641172917 iu:0.006895548332034841 from:0.006723380658294138 to:0.00651024191750846 his:0.005212712778330696 or:0.00505306618915587 with:0.004959425999495196 their:0.004378377258013912 tho:0.004196256718300193 into:0.00381526239722158 every:0.0035907172108190512 :0.03891809089793465 +and:0.11731161190197217 that:0.07176033689548811 time:0.03913420627792875 them:0.03622856890358426 all:0.029444640274388086 it:0.021275647674464247 made:0.01940018820983923 or:0.01900825746472663 him:0.017603927167314022 which:0.017324318334036963 but:0.017293802384644463 out:0.011851120805142888 done:0.010891904473165376 there:0.010826934307900566 up:0.010748591288421976 country:0.010742704105675974 times:0.010667341517389151 as:0.010146811051737323 work:0.009834491154988328 :0.5075045958071915 +of:0.173929230524896 and:0.11667666310358503 in:0.08603970904036806 with:0.06996330511428155 to:0.06811637073339848 for:0.051552939463677554 that:0.04492467118135372 by:0.03711197654552394 at:0.034015021797196274 from:0.030644909325300094 In:0.02475651362512929 nearly:0.021576888354087147 on:0.01918022912803143 is:0.016661279886395947 was:0.016324660867573417 are:0.012805604008820587 upon:0.010397080151397385 or:0.010136273193602406 through:0.009477563840768241 :0.14470911011461343 +the:0.316998412039034 and:0.07413845669210899 to:0.06342588064757124 The:0.06149002009642907 an:0.0452999664835599 of:0.04391656016905406 his:0.04173995480381763 a:0.03559820143963221 their:0.024462674642266997 tho:0.022095758202658168 by:0.019326323501031972 or:0.01804339918515669 in:0.017948185424306002 her:0.01667520330107015 its:0.01643451671064038 great:0.015154024738541888 at:0.013306110028752283 my:0.012577366582322273 that:0.012226674408693051 :0.12814231090335307 +was:0.1941440207254012 is:0.09839356733131308 be:0.08083469388014954 were:0.06155642035608099 are:0.0595190258798685 and:0.05074220890111684 been:0.04379909646380199 not:0.04352574860626047 or:0.037665356472390506 of:0.032456616201288924 for:0.022785087322772214 Is:0.02093940732368187 from:0.019902303500478127 by:0.019730198327202707 in:0.01911789439672446 am:0.019006695566007446 being:0.016537305207010772 that:0.01630398885462761 it:0.01474583900260011 :0.12729452568122265 +of:0.20834218805611388 the:0.14143993977414837 in:0.06780458953253125 a:0.04805910012288951 on:0.03968887855494384 to:0.03600886734834703 and:0.027931669392216935 for:0.020513080570795077 by:0.01869128141063965 from:0.017935104970043296 as:0.016712757558910277 In:0.014680874045299176 with:0.013758510044725386 The:0.012600105671595318 that:0.012143061417146805 :0.010255608637448342 upon:0.009136322634561453 which:0.008267515288355247 or:0.00791356316575158 :0.26711698180353755 +the:0.6927246908611882 The:0.04593749397046008 tho:0.03495983461084434 his:0.02549108040967369 its:0.020391722396877858 their:0.020254461807987637 and:0.020250044316701004 our:0.014587699615863188 a:0.013971184918707405 tbe:0.01066389471237422 of:0.010233282946929002 very:0.007742696989892694 my:0.007512649316594031 her:0.007266629592840265 this:0.005447153260894652 an:0.004987778903807838 your:0.004792602985795401 Its:0.0024591940425369298 as:0.0023801694826485983 :0.046945734857383 +the:0.1814540248339123 and:0.09089291067173405 a:0.037870591302078954 of:0.02847741162197034 or:0.028316910827167065 The:0.02629059192288908 old:0.024862712763186412 that:0.020406622081752496 tho:0.016815566669852112 his:0.015094485328632902 but:0.014952768814690653 good:0.014322423485230627 it:0.013691257750151859 two:0.013654502333821835 few:0.0135889455981152 for:0.013548024886001516 to:0.013185491688062014 their:0.013148581732620495 year:0.013136025689105307 :0.4052901499990248 +is:0.139048360861581 of:0.10348034953361103 as:0.09005375870238422 and:0.07464799727575726 to:0.06804211866898019 was:0.0662214121687366 with:0.06370669975185538 in:0.05461737508416738 be:0.04135117541380061 by:0.029788353589499304 for:0.02928696017047702 such:0.02243359758059093 made:0.020668111775232534 that:0.019190210593887074 Is:0.01902549351260535 have:0.017707936455752915 make:0.01621476413391394 at:0.015729702311659877 not:0.014978103926963512 :0.09280751848854385 +the:0.4944028371565771 a:0.22103740205812253 The:0.04457113094456254 of:0.024137589229419446 tho:0.023729999819744906 great:0.021689616343917962 and:0.017621122670920572 large:0.012243006879777188 any:0.010341851497568517 in:0.010247044559819812 tbe:0.008638929912013876 no:0.008513313976838603 every:0.006756167759930685 good:0.006512489071424598 or:0.006265930443511977 other:0.006160252649126665 an:0.0060362676312752175 his:0.005229392305597259 their:0.004851137585166356 :0.06001451750468418 +to:0.45940448394510136 a:0.182352658773643 not:0.053383723121906576 would:0.03789030700557171 will:0.034029756384758435 the:0.030605876198181534 shall:0.021439130624645922 may:0.016613597858043224 could:0.015575683598401183 can:0.013972871485790296 of:0.012997337515908558 and:0.012750554283227935 must:0.012495132172372718 cannot:0.01171424315152071 should:0.009819156199072107 for:0.009554679717708627 no:0.008618462010111471 they:0.008365654138592658 or:0.008104656504889979 :0.03931203531055204 +50:0.10242731711527459 ten:0.09012209069381173 fifty:0.08828334321613678 25:0.07068414402841633 10:0.06002424964543544 five:0.05436071123532399 15:0.05262359462090629 5:0.04198899747864493 20:0.04130302493936521 six:0.035926787127170755 30:0.03497241923506829 75:0.03124083193894006 40:0.028736722529106227 three:0.025940047060499523 twenty:0.025870967450523877 35:0.023118639174545243 60:0.022733154225130975 12:0.018223402145127635 4:0.0180251320257129 :0.13239442411485927 +feet:0.031235016557349858 up:0.030391987387073507 out:0.02720814971819847 said:0.022632106313792148 down:0.018262779282317055 made:0.01721900562355081 and:0.016852054784933908 back:0.01660415682970273 him:0.015961004485647686 was:0.01265760702621935 ing:0.011226809745010757 came:0.010957207282881867 them:0.010427737196272893 it:0.010382968413250591 looked:0.010344200190075094 way:0.009919935541051524 held:0.009853861856781866 home:0.009646007717762832 road:0.009470418034957233 :0.6977469860131699 +and:0.07558940021936399 recorded:0.030196237618668006 was:0.028917161578042846 made:0.027969746247669736 that:0.027730098932509103 o'clock:0.025060522019555328 up:0.023026552239529506 is:0.020398277211376416 found:0.02003101797656537 placed:0.017482208134164214 out:0.016937164562539058 place:0.016819459500107596 interest:0.016629321966808677 him:0.016002796715253755 situated:0.01573420479581609 it:0.015128305982428461 them:0.014715943643665314 part:0.014646613000297721 interested:0.014450471929902294 :0.5615344957257364 +it:0.06482707169531353 and:0.035831809877034874 It:0.02870270032178742 he:0.024994134960151876 three:0.021087615455545276 man:0.019159438232547888 ten:0.012639079483918729 He:0.011851307425491509 .:0.010096666152563886 two:0.010026838407661996 him:0.010014725758372815 one:0.009692928585492734 had:0.008917106225915825 who:0.008417817028422356 himself:0.008225497210241378 four:0.0077141030235220905 -:0.007240773780774589 father:0.007173735691676568 :0.0068916246107241915 :0.6854950260728404 +the:0.31401697119546207 of:0.08342102746458481 The:0.047353459630961 young:0.044088185225424334 business:0.039307718953183114 and:0.035829165463810556 all:0.03522263927915671 other:0.027057356258935673 two:0.026410703273165803 such:0.019442334387481466 tho:0.01920937941355024 by:0.019125252560808468 these:0.017536839757828483 many:0.014031574931228403 white:0.013360839746202668 good:0.013220169740016932 both:0.012699983296799618 laboring:0.01247678097853193 that:0.012016965513400667 :0.19317265292946706 +the:0.13898054982616972 Mr.:0.10134544807074626 of:0.06615392240767116 The:0.043278330440478296 and:0.04162034131663931 that:0.038474065211129 a:0.028836085729107952 Mrs.:0.019741515838392454 .:0.016321296438550317 Dr.:0.015742377033130618 :0.01499245666898834 this:0.014601172820615167 which:0.012022811139796676 in:0.010986353410193092 This:0.009519698186461954 his:0.009450116155350293 to:0.009398710140252132 tho:0.009372386328052828 or:0.009138862077782499 :0.3890235007604919 +it:0.20661626833118804 It:0.13133310388077965 which:0.05346195225056892 he:0.04322413433168328 and:0.0399221355018402 that:0.03638459118631527 there:0.02656324547693805 who:0.022588363007738477 This:0.01601752777676921 He:0.015090910728543903 what:0.013686208311658789 she:0.01181234484166701 this:0.011752239301455133 There:0.009749183368011116 man:0.007759333367156636 as:0.007068481254995637 work:0.006691860301109499 country:0.006039779831696346 but:0.005362639996269743 :0.32787569695361507 +of:0.29887257047535165 in:0.1723006627783194 and:0.06016009252722625 to:0.035087816050695525 by:0.02927523820011402 In:0.027993089292308315 the:0.023696940914111026 for:0.01574510645494197 New:0.01470823042615379 on:0.010449748616293468 or:0.009714876613278 with:0.00940080679006817 from:0.008786351054199745 .:0.007510547118800166 at:0.007377541881138158 :0.006720421349216779 County,:0.006271210050867843 South:0.005643570227219782 county,:0.005187287572613566 :0.24409789160708242 +one:0.10757504863160208 out:0.06393072214258595 part:0.05345953864888265 some:0.04657778396619151 time:0.032653763285528395 account:0.0298978741893603 all:0.02673860913095395 and:0.02324876597992745 that:0.02275453097379819 because:0.021318504223257338 portion:0.02010071224985526 side:0.01926992014112468 any:0.018918137101655273 front:0.016609963575485047 many:0.016563310866764772 end:0.01592265492673931 day:0.015255366376758018 members:0.014811614297040794 result:0.014486922106154784 :0.41890625718633423 +and:0.1389002851390766 or:0.04838759016905948 them:0.031060947335621526 done:0.02875020232654655 only:0.026457668307803835 but:0.026103260449476747 that:0.02501940452266616 him:0.02347785960294379 up:0.022090709885964996 than:0.018732094408619757 one:0.017496000945565186 be:0.01741609423443895 not:0.016587502192074353 is:0.01643543213778822 it:0.01500632640864388 on:0.014816102538980093 made:0.014304593931600891 out:0.01419476852859917 all:0.01400414555299326 :0.46975901138153653 +the:0.33472951430087783 a:0.2659693606186791 this:0.04358399018551909 any:0.026828652312022888 one:0.025385855833108026 his:0.02511604738475645 The:0.024879101801595697 tho:0.02301338546402801 each:0.01974335492395317 every:0.018779484721323254 to:0.015359860003352738 no:0.015348890481776007 and:0.015156606405597194 that:0.014509231627171016 per:0.013668144661960514 an:0.013254479776094607 A:0.011963646506554163 or:0.01121727428489076 said:0.010465455657409539 :0.07002766304932996 +to:0.09696849864260795 the:0.07875775915458072 of:0.06754001566432195 in:0.06418801959380724 and:0.061276692519625316 a:0.04531326357589 at:0.03096882286620214 for:0.02068140143370096 with:0.018151254279050812 that:0.016889297201425513 In:0.016815680895144555 :0.0141142925734659 by:0.013618647284725111 on:0.012632296886258786 is:0.012204124831322168 I:0.011354239021633487 which:0.010897990427670258 from:0.010634822672537953 was:0.010025878163715642 :0.3859670023123135 +and:0.07359963406644195 be:0.052667135004264946 to:0.04483536256874564 of:0.043448293679263235 the:0.03579172892628988 in:0.028005289969665195 was:0.026700397492138477 is:0.024892551934152005 re-:0.024162182625676702 he:0.024086629517294657 are:0.02098604388819216 from:0.020307931541148256 a:0.018606881911690538 or:0.018077853608073062 for:0.017195224169077532 been:0.01615904189338184 I:0.015254891559368164 :0.015184018660626356 which:0.015016145996292442 :0.464022760988217 +of:0.173929230524896 and:0.11667666310358503 in:0.08603970904036806 with:0.06996330511428155 to:0.06811637073339848 for:0.051552939463677554 that:0.04492467118135372 by:0.03711197654552394 at:0.034015021797196274 from:0.030644909325300094 In:0.02475651362512929 nearly:0.021576888354087147 on:0.01918022912803143 is:0.016661279886395947 was:0.016324660867573417 are:0.012805604008820587 upon:0.010397080151397385 or:0.010136273193602406 through:0.009477563840768241 :0.14470911011461343 +sum:0.03352282876311118 number:0.028116684882597106 line:0.019995206059833036 city:0.01946514558931857 out:0.019275318828420953 day:0.01666865340772654 county:0.014872697538657208 amount:0.013254184849875051 Board:0.01252325449624941 town:0.012449555905674143 side:0.011663975251122375 part:0.011517157473718155 County:0.011460540331966697 state:0.011087331502382173 City:0.010878919191854432 purpose:0.01081028255427907 and:0.010297866493795984 way:0.009848747943663767 name:0.009522170936943183 :0.711769477998811 +of:0.10776761857931194 and:0.06147097111579001 to:0.053516731241891546 that:0.05048942272674947 by:0.04461623876125976 girl.:0.021792561838412113 boy.:0.01953349696711034 with:0.018362793457600952 :0.016254900638970816 for:0.014948818917333092 parents,:0.01130785438677362 said:0.010905879659048235 as:0.010489615103666526 but:0.009103232394658411 which:0.009014882721543646 in:0.008977784589613203 from:0.008044498552032469 between:0.007130594158979391 or:0.0063223283400136955 :0.5089497758492408 +to:0.12354075643190157 and:0.08505277297992589 of:0.04744757283939691 the:0.03673010520209344 in:0.027828707058379372 is:0.023305008409429784 I:0.022144012276299987 for:0.020271140005288447 not:0.0199713319441252 was:0.01932205964909315 will:0.019268066369548417 con-:0.018699135648169458 be-:0.018627423880957478 he:0.017655999283213552 be:0.01709344544110531 that:0.015543213952415522 which:0.015438694118314914 would:0.013939369606180202 re-:0.012827440509741625 :0.42429374439441975 +the:0.18786885372447867 and:0.08998994169535424 of:0.08299658175529616 to:0.06350506244084385 a:0.053477692843842 be:0.029015288092350277 their:0.02591677291806705 his:0.023601143149274032 for:0.022052744978454206 in:0.020094280917537254 is:0.019174921914693683 was:0.015733959340738547 or:0.01441481315273373 tho:0.0128391515529128 its:0.012786493550353488 I:0.012182568198982441 at:0.01158283062689511 this:0.010965093533664337 not:0.010776758126179453 :0.2800250474873487 +and:0.18075126547699047 that:0.09268196959533506 as:0.08774814034289831 but:0.06717036288646608 it:0.02801796563653493 and,:0.02018765803931434 But:0.020155917560919202 do:0.01960783226367837 which,:0.019060248203670662 or:0.01782321858075714 him:0.015528862544040609 so:0.012689453638514035 is:0.011860199258521956 me:0.0104911532957791 And:0.010410074479395898 even:0.009920814656616815 them:0.009563409777551182 which:0.009505863537796647 that,:0.00950425980596912 :0.34632133041925006 +they:0.09565288239251273 it:0.09224239793602271 I:0.06540210832481004 he:0.0632771887100394 you:0.06111240361693305 It:0.05953819190211657 which:0.05749457158489674 and:0.05124242813684892 we:0.04311119586137457 that:0.03916356794469176 who:0.021817993131872167 she:0.01748747928292694 They:0.016829837496785533 there:0.015689594817162658 He:0.015048675038437062 We:0.010434538323618773 You:0.010162767254076981 1:0.00983806088241766 men:0.008735128007009693 :0.24471898935544606 +that:0.1433528726477986 when:0.09435936673453281 as:0.07924831599315833 which:0.07876580471511409 and:0.07463338271094276 if:0.04896479965900908 where:0.03752758746932661 but:0.03066462204052195 before:0.027334095897957652 Then:0.02056428158030904 whom:0.019779181583335234 When:0.018893055137065854 what:0.017671313209278408 If:0.01678726524568206 until:0.013502238248498883 because:0.01248540081427173 said:0.01116926038837353 while:0.011156474300399228 time:0.010439616331102228 :0.2317010652933219 +Mr.:0.46507222882056237 and:0.07551352612433568 Mrs.:0.04838743250162587 of:0.038606788935126736 Dr.:0.0330652249424335 the:0.021507586360504 Mr:0.0185922677444938 Senator:0.016794991847119856 .:0.016643066602216317 Henry:0.012734854094577384 to:0.010174151965325152 a:0.009059806686372207 Miss:0.008918908717601301 C.:0.008681459541403222 H.:0.005753608906385213 The:0.005571839594457336 J.:0.0054934572503995555 Judge:0.005349082612616552 S.:0.005104244811178516 :0.18797547194126546 +of:0.4324669027732622 in:0.13654450175308996 to:0.08991425704407785 by:0.03577773804282159 from:0.030693730565855008 In:0.027921360170612385 and:0.027531717326366927 for:0.027195722558993572 that:0.027150300654252578 with:0.020733203384094706 at:0.01585785293868526 on:0.014447524351955812 as:0.01063875276655643 into:0.009897271251651886 all:0.009625807571325307 upon:0.008788054527331848 over:0.007421443458673943 which:0.0070055192226305745 ot:0.006926104829637875 :0.05246223480812428 +of:0.5994180412798455 in:0.08708348573852107 to:0.04052035081146622 In:0.030796125021567897 from:0.029952588565469132 on:0.02979331721681624 for:0.029557089700055408 by:0.019840638017554077 and:0.019475781710434122 after:0.014848078765090573 at:0.010933273335328174 the:0.009964671394925437 with:0.008843162713880682 ot:0.007373164678521169 during:0.00680927591949687 that:0.005620348092963027 into:0.005291252888067078 before:0.004076347436122804 through:0.004024321398035876 :0.0347786853158386 +at:0.2730601620363247 of:0.1362761289224549 to:0.11609025403698944 on:0.1045312479005191 in:0.04234744427198029 from:0.03788686124163664 and:0.035524553964344424 that:0.023087575974010704 with:0.022510676512928686 for:0.019951443603872503 At:0.016713591511101814 by:0.01539876924906695 as:0.01404961917613085 over:0.012004478375051652 was:0.011812413695520338 is:0.011462337816391362 upon:0.010885059517306487 In:0.010114313256723274 about:0.010021156235520128 :0.07527191270212573 +of:0.1250857961480753 for:0.10348725059923523 enable:0.08256674657657519 to:0.07548974259215627 from:0.06320337666955904 with:0.05480635686718066 upon:0.037787490674476454 give:0.03263562274610229 by:0.02973137672307879 allow:0.025568254956304742 want:0.02548542349187038 permit:0.02226883362656532 enables:0.021018903268830234 send:0.020107202171443475 bring:0.01950339915315756 compel:0.019165567985904162 enabled:0.018510144001826347 induce:0.018276009060629785 told:0.018201436857053166 :0.1861010658299756 +in:0.15100824217228018 of:0.1310871033736233 to:0.08496038108110954 for:0.06466532166362847 with:0.05267929540162433 from:0.051306308400469555 by:0.047024534178240096 at:0.035195713212467665 In:0.03439182638478906 and:0.02431199995673231 upon:0.023533533774627156 on:0.020098146115786336 under:0.01584401246920626 after:0.015579405060092527 through:0.015044427902707888 that:0.00882173151047411 over:0.006921586031279294 during:0.006696120942967359 into:0.005883487407324257 :0.20394682296057032 +and:0.08995317707915026 to:0.06844710404109794 of:0.04605142056172993 the:0.04074574508561307 which:0.02479116931334353 that:0.023764822140213245 re-:0.020841117231308055 in:0.020803825395358622 for:0.020278423301550053 :0.018417753428486977 not:0.016860793136637672 con-:0.016444405871234195 is:0.014386481772210856 or:0.014080680914153714 be-:0.01352268143271276 I:0.01317002660943805 was:0.011429878269381662 dis-:0.011196807025842847 he:0.01113106290024311 :0.5026826244902934 +the:0.17212580794882568 of:0.14911767579159946 two:0.05783233797022373 young:0.0543375596320764 and:0.043534502022257865 The:0.03266115474121922 these:0.024969097580506666 white:0.020353163344856602 all:0.01865181432751397 three:0.016722224836337635 other:0.016507427669727515 our:0.01603808543363748 many:0.015197963096452062 by:0.014200117455858622 good:0.014039764640799335 their:0.013884424391569856 for:0.013062366439221547 that:0.012872491810583683 business:0.012732846162799764 :0.2801591747039329 +of:0.06790624470068465 and:0.06119432745018722 to:0.05799041352017574 in:0.05429002282807476 for:0.03316957465640266 with:0.016785845446907123 not:0.016224017015808657 a:0.01136512758167442 is:0.010381032585418224 :0.009586983609563542 that:0.009528243007679895 In:0.009504356104006628 but:0.007717715377533976 was:0.00690736032837934 or:0.006596157589882648 at:0.006130820273671822 about:0.004613257661142672 I:0.004489816057398857 are:0.004432485781484541 :0.6001861984239226 +one:0.1131489054449633 some:0.07292683844455583 many:0.04177586335839287 all:0.03741238811831752 out:0.036733531510679984 part:0.03646128012114051 any:0.025949144817565935 most:0.023945150594173712 portion:0.022626717977395593 that:0.018458867259454427 Some:0.014710432673859845 much:0.01381627062899526 tion:0.01361415857188464 people:0.013613525641643035 members:0.013050762655861154 result:0.012865030630324015 and:0.012800804287906304 none:0.012231252532968825 Many:0.011996314411964118 :0.4508627603179531 +and:0.09713306676337458 as:0.09571960909968467 it:0.04519304329059913 so:0.028786999874832325 is:0.02730034436405483 be:0.023800422877092994 he:0.022701429246755264 that:0.02221167418589817 which:0.01938501075950634 to:0.019305361957117597 the:0.015475368880589547 It:0.015330959769205881 are:0.012596564239695855 they:0.011914031642750402 such:0.011485070595332112 was:0.011437669699422143 will:0.009438401975640033 far:0.009033244999083144 we:0.008729849151641244 :0.4920218766277238 +the:0.3567260407709845 an:0.16071318175780133 in:0.1313414232540866 In:0.045594952407214104 and:0.0438119544320342 The:0.02668182017398525 this:0.02496835865216434 tho:0.01959857095063876 or:0.018267694514238854 a:0.01693988106425909 By:0.01496540089408036 of:0.014941635219153315 good:0.01111532892754839 to:0.00985064113977617 by:0.009606806756110177 large:0.008515913198481329 final:0.008173105471326613 tbe:0.007894578993799379 An:0.007800560401312982 :0.06149215102100429 +and:0.0930455039522489 of:0.08870696387414616 on:0.026119577843788527 that:0.023979778748449216 to:0.022048545327730526 with:0.01982454007125636 for:0.01900838410931384 in:0.014532332273688492 :0.013884759757362947 from:0.01323503270377535 but:0.01265353131605811 by:0.012258540902582977 as:0.010831647061671194 under:0.010519610375068824 is:0.009685140172684906 after:0.008860203022914506 upon:0.008766843110128781 it:0.007852258885237185 work:0.007810933944300048 :0.5753758725475931 +of:0.1746605634164389 in:0.11502059464827095 and:0.1081699793799604 to:0.07423618640684755 that:0.06503163361875061 with:0.03736081315852748 for:0.03498822641133892 In:0.03338702679765615 by:0.025841462460842433 on:0.024457950577249095 from:0.023573287619759818 are:0.02279332307885334 when:0.01552704948045256 at:0.014957157351392887 but:0.012306650557959044 were:0.012208324557635493 was:0.011546636750853868 is:0.008924667866024623 or:0.008596085930290527 :0.17541237993089534 +of:0.1741695958660092 and:0.12001211113578666 to:0.08256103757035693 the:0.07036522902187219 at:0.04850583945095175 in:0.039463207561886454 or:0.03941288294707129 a:0.019837579694657603 from:0.018023082410758687 by:0.017737113379700024 No.:0.016510728034539134 that:0.015058464790235471 for:0.014013939690688126 with:0.012490035334293624 :0.010642333426114136 In:0.00889631122388384 than:0.008821824797951764 about:0.008434675960484255 Miss:0.0077643085852449455 :0.2662796991175139 +of:0.09129790931378902 the:0.07369883040827747 and:0.047842263382354346 in:0.04189055351593407 to:0.04045875475680249 a:0.03542341257202578 be:0.02020462051672066 for:0.01979292654746225 was:0.01760256398103379 at:0.017380150555488715 is:0.014984483003968216 with:0.014047653760730413 by:0.01374644383819499 :0.012670486581795598 In:0.01200961464556976 or:0.011563835749786333 from:0.011391516893522809 are:0.011273104484969465 that:0.010755276030689069 :0.4809655994608848 +the:0.14093976484967533 of:0.1312188204367872 in:0.06448761251274676 to:0.04793839061849493 and:0.047401252237923776 a:0.033789133214564476 as:0.02491610331093733 at:0.023639839228606525 be:0.02202050181065341 was:0.01745970946099038 that:0.0151870967795438 his:0.012488594477612084 is:0.012372514802889426 with:0.011465632412139569 been:0.011082148899346307 for:0.010909739276785025 The:0.010900746995329827 much:0.010350755839238583 more:0.010325353279774315 :0.34010628955596095 +the:0.2894455390557712 a:0.23597606033434312 dining:0.08701091548740215 this:0.038097053604551685 other:0.0272030835402902 of:0.020288205099506282 his:0.02003430412577249 any:0.019548295806097377 one:0.019131788239121247 tho:0.015103609254361348 court:0.0123737878495483 an:0.011082364314251419 every:0.01093185041915197 each:0.010834006728888821 The:0.010087797401848106 that:0.009288525921313847 some:0.00916995784560744 on:0.008697858493313082 and:0.008344519584164276 :0.1363504768946956 +the:0.09485437283890033 and:0.08214002258721136 of:0.06712749668788642 to:0.06362898838167126 be:0.032159734886631534 was:0.03163585938427195 on:0.02787403877444891 or:0.026360841830663832 is:0.02535597749513509 are:0.021243432232075546 by:0.019119002861803375 were:0.01745540011097417 been:0.01523772446118275 said:0.014324296366664852 :0.014236988533695495 not:0.013634787296721476 for:0.013415189877649525 in:0.012951291101858083 which:0.010930167739560672 :0.3953143865509934 +as:0.06931392982974462 according:0.052071562389565784 up:0.0511867300210483 and:0.040371568633051955 went:0.03351644485287816 back:0.032358406609281 regard:0.03073407747799069 feet:0.02852138506231652 down:0.026379903432040268 owing:0.02466642634685871 due:0.023695193974505355 go:0.022910973192184297 reference:0.020802802907016128 came:0.019883741951819873 sent:0.019874244915639484 attention:0.019565955494145405 come:0.01885185084678811 given:0.018792390567602263 it:0.017366961307524745 :0.4281354501879983 +and:0.138171886151071 that:0.10916469991948677 as:0.08617423143335107 which:0.0685699069844464 when:0.039242933711323646 but:0.03223035332099631 what:0.027052059181446767 if:0.022794151915524696 where:0.014750736620828295 If:0.012550242599500067 When:0.011368397756035662 But:0.010731331989107144 so:0.010514786473784713 while:0.009688178141005591 As:0.009418707976152364 whom:0.009263646773434166 for:0.00917199514598782 day:0.00866697137486815 And:0.008417233783687889 :0.3610575487479615 +of:0.13084814232797154 in:0.0740836656586379 as:0.0625527229231004 with:0.059577596335708534 to:0.058433603729754965 is:0.05551580107464621 and:0.04946529489577619 was:0.04264000753602388 for:0.04009673021586375 by:0.037684080471064085 be:0.023941707008899252 on:0.02316059851167503 at:0.022644769441950232 such:0.019950936521181326 that:0.017856095877642635 like:0.017386655618315594 In:0.016902219705578994 from:0.016046571451088905 not:0.01205910100844263 :0.21815369968667797 +on:0.17113731923248432 one:0.0361028724724836 day:0.017992753617244738 in:0.017150833565182245 and:0.011709049682104799 sooner:0.010789232767544642 two:0.010403965926877663 sold,:0.009533394972298624 of:0.00886012311497901 year:0.00866337621167372 hour:0.007443601486180794 ten:0.006936981632587504 at:0.006855686704076497 to:0.006812641243787754 for:0.006694627062719995 ;:0.006253760411734337 man:0.0061773569080947575 week:0.005388461626010595 him:0.0053289688154074056 :0.638764992546527 +the:0.020550124413253715 day:0.016805863127432482 manner:0.01637156991921779 and:0.015665686878186376 way:0.01391161580791103 of:0.01051811750953589 year:0.009596081548436178 tion:0.009130571891679724 county:0.008838232477851996 :0.00850256357900277 time:0.008236434801836194 feet:0.008061789456919119 all:0.008051793724624183 life:0.0075901868250295495 city:0.0075718560186667375 it:0.0071483129199995795 that:0.007113317106857756 law:0.007029097476889917 condition:0.006917115455317543 :0.8013896690613516 +the:0.6490485145166329 a:0.07820426243359234 The:0.041019520023843625 high:0.03101584801801901 tho:0.028048056009734208 low:0.02649429863633093 tbe:0.013950641005592096 and:0.01221006765878618 average:0.010257071984706422 purchase:0.009825625818757552 regular:0.009747777512713073 highest:0.008914426991119502 any:0.006468659025192231 first:0.005809699313474858 in:0.005467438736922699 minimum:0.0048464883982530915 full:0.004675834369445482 on:0.004648991674688221 that:0.004614379120154599 :0.043732398752040984 +was:0.09188832140710244 be:0.08889590680518299 to:0.08339380332815079 and:0.07235487301091631 of:0.049246256965688025 is:0.036386321323346356 been:0.03510438549436708 were:0.027624684233244247 not:0.02753948514532837 in:0.02622013086923332 are:0.02409792795194906 the:0.023964331551482795 by:0.02126933369385827 or:0.018364186050652657 a:0.01750627266303174 all:0.017445729903729952 that:0.011435781428239325 being:0.009070937503112001 from:0.008539073052134874 :0.30865225761924936 +Notice:0.42028419492633484 notice:0.1368693676737673 it:0.049286638954616574 It:0.0459681783147667 that:0.0257351498677468 which:0.024379250325281484 reference:0.0199515821436504 there:0.01923250401326035 he:0.01709251352682523 and:0.014526065991369326 He:0.010674425457070397 There:0.009358478756815126 This:0.007952069781526476 this:0.006931859442703124 what:0.005977676641625522 who:0.005647142416117256 man:0.005473358731125218 That:0.004074524953603554 she:0.003766461679441719 :0.16581855640235257 +the:0.3593399151800053 and:0.056110565339926685 her:0.03288083247129507 his:0.0284341799462073 a:0.027012367291193044 my:0.024800389340783893 came:0.02307950935034365 tho:0.0228480924006757 The:0.0197139607468213 go:0.017741854468270472 or:0.017629601550428878 come:0.016998209957863424 went:0.015582998614486946 it:0.015347824410773593 brought:0.015241209175176539 get:0.014140846174569668 them:0.013720430880888729 their:0.013310910002880665 way:0.011566886696414836 :0.2534994160009943 +:0.09038500089843064 it.:0.027962884083053842 them.:0.02356939685845536 time.:0.014582400253616252 him.:0.013015959461940323 life.:0.01023561013144722 country.:0.010088975024758659 years.:0.009278891425155962 her.:0.008510466567812361 world.:0.008485249996261613 there.:0.007935346671817906 again.:0.007821728429785523 people.:0.0077791915662479665 day.:0.007542908203652139 me.:0.007344877612207124 way.:0.007173214810547455 work.:0.0067398520513470336 year.:0.0064744241036114 and:0.006113579423446026 :0.7179600424264052 +he:0.1609469596173578 they:0.10913255774038837 it:0.1080536758636361 I:0.05679451558012635 who:0.044098043577085716 she:0.042218794738608824 we:0.04071080259973987 and:0.03548350920837775 It:0.033440857805355564 that:0.03261428946016402 which:0.028223434932182698 He:0.020837358453326595 you:0.019060215185367314 as:0.017514270952973022 one:0.012931415770382482 1:0.0119761354767039 ho:0.011225971203081848 what:0.01099597932504367 man:0.010220505829757332 :0.19252070668034077 +a:0.45289088087198004 the:0.269337966783347 large:0.04990398016026576 great:0.047059524082312856 The:0.020902591373904343 vast:0.017251754200665444 tho:0.015010090570813471 A:0.012511439772685626 and:0.01083314911125593 overwhelming:0.009244609106976491 his:0.00841226473076162 good:0.006887275537826818 Democratic:0.006706471402465988 tbe:0.005625086495030457 one:0.004895264993658957 this:0.004759599893855421 other:0.004586302979148321 every:0.00441535999924736 Republican:0.004319623222172576 :0.043446764711625584 +of:0.09129790931378902 the:0.07369883040827747 and:0.047842263382354346 in:0.04189055351593407 to:0.04045875475680249 a:0.03542341257202578 be:0.02020462051672066 for:0.01979292654746225 was:0.01760256398103379 at:0.017380150555488715 is:0.014984483003968216 with:0.014047653760730413 by:0.01374644383819499 :0.012670486581795598 In:0.01200961464556976 or:0.011563835749786333 from:0.011391516893522809 are:0.011273104484969465 that:0.010755276030689069 :0.4809655994608848 +a:0.1361319552817951 is:0.08627286251615326 and:0.06752958930483625 not:0.06614026724268243 to:0.052519878365416724 I:0.04876369514456201 the:0.04632162919026968 we:0.04613910165459135 are:0.0454260206073259 was:0.04407863744649222 will:0.04257728112032487 of:0.03476548641699039 be:0.034500957941342135 have:0.029891256455552 would:0.022588885593160524 been:0.018853736967355 they:0.01851142256977881 Is:0.018509765789504154 very:0.018447957849502344 :0.12102961254236487 +and:0.08995317707915026 to:0.06844710404109794 of:0.04605142056172993 the:0.04074574508561307 which:0.02479116931334353 that:0.023764822140213245 re-:0.020841117231308055 in:0.020803825395358622 for:0.020278423301550053 :0.018417753428486977 not:0.016860793136637672 con-:0.016444405871234195 is:0.014386481772210856 or:0.014080680914153714 be-:0.01352268143271276 I:0.01317002660943805 was:0.011429878269381662 dis-:0.011196807025842847 he:0.01113106290024311 :0.5026826244902934 +there:0.2583059008723863 There:0.22158713503591546 It:0.10665071946923024 it:0.09815234811038466 which:0.03564077108479705 that:0.029112160301188895 and:0.02335330844692426 This:0.02332312247770564 he:0.018202642320303716 who:0.016120768244484353 this:0.013567855555827 That:0.012051178108631624 He:0.01171287549708541 what:0.00967533274873111 "There:0.005973469967711378 she:0.0046935755709879455 Here:0.004476933214263755 What:0.003937413699207736 but:0.003816538288305887 :0.0986459509859276 +to:0.33468305539220056 will:0.060794820917812895 would:0.053029472849089876 not:0.05179793140129354 and:0.048329177004869966 under-:0.04782147552376692 I:0.04676998032207377 the:0.030624434311630727 they:0.027539737267902924 can:0.02716357535904486 a:0.023388007084591142 we:0.021436870394857328 could:0.020452696783583073 must:0.013288169822276466 should:0.013162034564810956 who:0.01294472654173361 never:0.01247192502557119 or:0.012251520499232081 may:0.01220914856818298 :0.12884124036547517 +the:0.1705303568899464 of:0.07053466340245362 and:0.06554430291662436 his:0.05456707141392525 in:0.05253312392581284 a:0.04748675024571009 this:0.04270215577577117 for:0.028505516372264946 on:0.027669269935796863 to:0.022822153843569726 or:0.018603216155580724 The:0.01753173408908957 their:0.01725850567699865 an:0.01385329081271352 other:0.012640965298587681 :0.012357416814071775 my:0.011881766968507916 all:0.011578914840363996 such:0.011094439330503057 :0.2893043852917079 +:0.0991078559195143 it.:0.021858496276579147 them.:0.014730293224091813 .:0.008877195863922245 him.:0.008703233793418001 country.:0.007890810726910641 time.:0.00760963975099526 day.:0.007464274540671691 ?:0.007130761440334224 year.:0.0071133638840326025 work.:0.006742505586329292 follows::0.006478656920014154 ::0.005517527170699224 all.:0.005515722287751661 people.:0.005230539365295853 life.:0.0049843425372387215 years.:0.004877217700556023 out.:0.004737139479154182 city.:0.00451760229792429 :0.7599128212345666 +of:0.14943680838462264 for:0.10350830423248203 with:0.09849160333349241 to:0.07990624932898215 in:0.043107285564240344 upon:0.042817145059349165 by:0.04189437872998551 about:0.0412278917629777 do:0.03061605141710503 against:0.028523723350488524 from:0.025977710696591404 at:0.024344135955892212 on:0.024131741043698137 get:0.01782114766191348 know:0.017428238727218524 over:0.014141639068550534 and:0.012961780410206979 around:0.012549647669094157 between:0.010563016090037585 :0.17955150151307148 +:0.13602784668108586 it.:0.015005075703504787 .:0.011675510371515777 them.:0.010133180010476448 country.:0.01000265409008306 him.:0.008374672641429382 time.:0.007360134752569839 year.:0.006158144492634392 work.:0.005645972474855502 city.:0.005488840389153711 day.:0.005366492846499483 ago.:0.005228742280635007 years.:0.005133027588026216 people.:0.0046512336725516796 State.:0.0044568561180536245 out.:0.004410003649763282 place.:0.0042902104294373754 ::0.004259235873844128 States.:0.004197253159655443 :0.7411349127742249 +it:0.12291356726271781 he:0.10766523848787593 It:0.08126222867785683 which:0.05815091424687329 I:0.054909855356083816 and:0.04607290301292405 who:0.036234513317437905 He:0.03284977251390459 that:0.0307500349566012 she:0.02807960748770171 there:0.017106531141060498 as:0.011444714915749334 She:0.009915288061780691 ho:0.009311744482256256 what:0.009144898696231517 1:0.008083327589627603 This:0.007923029238788926 lie:0.007752420127589498 man:0.007654383581502722 :0.3117750268454358 +the:0.2286742694816433 of:0.1355268555948475 and:0.068477485412794 in:0.05011982839612234 to:0.04244611033033198 a:0.03667786511732141 his:0.03632319753175592 with:0.02457271592400561 be:0.022669282004894892 or:0.02259267420718595 for:0.021173060378009128 as:0.020223079267388255 their:0.016892341683272624 was:0.016365610472540777 this:0.01626119569411317 her:0.014756993670827306 an:0.014179601387488996 taxes,:0.011829482355457445 my:0.01076159376858247 :0.18847675732141694 +of:0.14949551412066506 for:0.14251258833870503 about:0.08964663930485008 in:0.08083195932760222 with:0.0753108628405774 to:0.06974174587759618 upon:0.03515813970810771 against:0.02627295404530761 by:0.025048652898172125 get:0.02475217224981084 at:0.024532042565501285 over:0.024230632452029385 on:0.02156504211155247 from:0.021506221010303233 do:0.02033171622073911 into:0.015355950770620078 before:0.012568676703341558 take:0.011941906960829047 around:0.011406349245501617 :0.11679023324818798 +and:0.07181562702745725 together:0.06672214896410926 connected:0.05460722541492519 connection:0.053485248068146786 accordance:0.040816432970329504 comply:0.022327715315442986 acquainted:0.01991331996883064 compared:0.01902004432375884 contact:0.016949822974841922 familiar:0.016791563233682194 up:0.016271038698657696 do:0.015355480362757417 interfere:0.014875808889703945 charged:0.014646284015101253 pleased:0.013610051164447858 him:0.01274062267734275 but:0.012200014478196207 satisfied:0.011962054640116513 it:0.011810815262474694 :0.4930786815496771 +:0.06937899397615505 it.:0.02953031662913761 .:0.02633048489345552 Resolved,:0.02073080323353886 them.:0.013132300142194107 2.:0.011480662294827783 1.:0.01006042264703606 ::0.008678508600776109 year.:0.008365472051019745 4.:0.008077673504639546 3.:0.007996889318719383 made.:0.007967281185229725 him.:0.007454957911026757 country.:0.007122670647791435 enacted,:0.007089210635058569 time.:0.007075263445930679 ?:0.006671962246689925 life.:0.0060092148937064445 people.:0.0057327760808002 :0.7301141356622665 +the:0.15268137142664015 of:0.09521357821249574 and:0.07262501718617634 in:0.054277942678337306 to:0.048414102733275836 a:0.03280282701489229 for:0.025993848176514643 that:0.025182494189667115 The:0.01731418643488302 In:0.017164602022648325 or:0.01612109107800343 with:0.014337971463367722 as:0.014147658451416367 by:0.013311809937046094 :0.011956450184342115 in-:0.01124675150282658 which:0.010881643070491649 tho:0.009763590441735283 from:0.009318458386752479 :0.3462446054084875 +feet:0.018379984250567197 and:0.01756389042989991 men:0.013667036949544298 it:0.012351371946339194 them:0.01053022267766305 made:0.010114017200542216 well:0.010004711700994677 him:0.00896513810663129 up:0.00826065565955114 all:0.007938882021133466 to:0.007518196623289899 be:0.007352233346158685 now:0.006903879669236957 day:0.006885130725991946 interest:0.006539720221620598 :0.0064002373044280145 the:0.006234230575821766 come:0.00604642078080148 work:0.00603553544983939 :0.8213085043599448 +the:0.4716317986570375 a:0.11780575967285524 The:0.04164189539550279 and:0.029512461701148657 tho:0.02825831645273607 of:0.01803938645711471 said:0.012756319928248968 tbe:0.012617561360255039 by:0.011072867437103152 A:0.010972186605962744 one:0.009098298832971457 great:0.008099019788261646 brief:0.007545697601485526 every:0.006807082401053417 this:0.006762152565532331 whole:0.006289769619932711 annual:0.0058013108857568165 any:0.005664973137090323 other:0.004904596867795573 :0.18371854463215528 +;:0.01607638387467674 up:0.015222955849718634 in:0.014346192144323571 here:0.008419327036594463 misdemeanor,:0.007676740695875136 day:0.007468876058440264 mortgage:0.007047348804902913 years,:0.006699965947609848 county,:0.006616312780263395 him,:0.006405262482834537 it,:0.006224929850560496 and:0.006219932914082968 men:0.006127684792168226 time:0.00608604652443168 ,:0.005880925488780576 dollars:0.00576459057486429 :0.005739379482916212 to:0.005718233432581862 year,:0.005665393056840522 :0.8495935182075337 +it:0.2892392949920123 It:0.17502165027364988 which:0.051781423222428805 he:0.04597420003716042 there:0.03645036004425131 that:0.03590498929774402 and:0.030409682295438056 what:0.0245839893838289 who:0.017733335772546432 He:0.013974721663963616 she:0.012381583775891122 There:0.011729825620187989 This:0.011379745943603935 work:0.009020291967760882 this:0.007854035381757059 as:0.007734806949878918 man:0.00569439369026588 be:0.0056509729705644385 but:0.005558990856792004 :0.20092170586027405 +that:0.20335541366862905 as:0.09376767366927041 and:0.08618064622798619 if:0.08330578756942747 which:0.08228018107630516 when:0.07518959552811179 but:0.04742065808228711 where:0.04725946090405742 because:0.029007375452612498 If:0.026893867049720622 until:0.024425698653267686 what:0.021288580890435112 though:0.01419221646561565 whom:0.013078362013940201 while:0.012519024981993037 for:0.01242554401047497 than:0.011407258640776054 before:0.010985850438729149 When:0.010885931187282328 :0.09313087348907807 +one:0.14824436565194993 some:0.048506849791684604 all:0.039385265068033186 none:0.034325272504074814 many:0.0334629917213836 any:0.028407378444130858 and:0.022076634634064347 each:0.021251331501596638 that:0.018770500216938237 One:0.014220655109818873 out:0.013735996410005087 Some:0.013099904053955478 part:0.011583370151782747 portion:0.010172638546501715 few:0.009902035763521834 most:0.00974823159708332 Many:0.009340146918808955 or:0.009237843625816278 Most:0.00845593699262741 :0.4950726512962221 +the:0.6125598925656085 and:0.0436999725499819 tho:0.04154178638887763 The:0.027356076366256612 said:0.024145483782816557 a:0.0174573146292843 an:0.016072300054419463 tbe:0.01576795178025631 this:0.011430912560513665 of:0.008763246530789595 great:0.005010484343626953 high:0.004184644176846668 by:0.0041579433065080055 that:0.003958908403569634 or:0.003748419147955606 any:0.0035451094857891934 :0.003206290635804089 per:0.0030784028530618152 in:0.003037913752394373 :0.14627694668563912 +and:0.08995317707915026 to:0.06844710404109794 of:0.04605142056172993 the:0.04074574508561307 which:0.02479116931334353 that:0.023764822140213245 re-:0.020841117231308055 in:0.020803825395358622 for:0.020278423301550053 :0.018417753428486977 not:0.016860793136637672 con-:0.016444405871234195 is:0.014386481772210856 or:0.014080680914153714 be-:0.01352268143271276 I:0.01317002660943805 was:0.011429878269381662 dis-:0.011196807025842847 he:0.01113106290024311 :0.5026826244902934 +I:0.31296956780277163 he:0.07895873349598449 had:0.0670749053641855 and:0.06335385580989247 have:0.05433525163225565 we:0.047069117805087705 they:0.038505017797766994 has:0.03629899315018868 He:0.031168727961006462 she:0.03024184981320293 was:0.02752989831398421 We:0.02357246493893271 you:0.021297825920896688 who:0.020976785285536443 1:0.017526400069667436 "I:0.01704898084318259 but:0.010468224980560194 They:0.009888180081352884 She:0.009587635373205913 :0.08112758356033843 +that:0.060700542073233096 and:0.04328632489224686 it.:0.02723853621836393 :0.026345389296710778 them.:0.018695410767699476 as:0.011636107843679239 ?:0.010693006722459765 even:0.010342388569473551 but:0.00942908727814984 us.:0.008043216205392594 it:0.00797552880141223 him.:0.007519423872163117 time.:0.006753249376274514 what:0.0052862130452222275 I:0.005225393518402215 you.:0.005211926495887789 country.:0.005184452924046337 day.:0.005138331118569488 law.:0.005107839085057561 :0.7191876318955555 +as:0.786443306976188 and:0.056715182000284164 aa:0.018792349610077416 that:0.014034353656311668 which:0.010582468199999891 the:0.010415258423060268 ns:0.009141286055113438 of:0.006946637926827957 it:0.0040387556473117266 a*:0.0032352439820721056 how:0.003139468583106796 so:0.003056985701869955 is:0.002997839432236606 How:0.0025859486459327463 but:0.002564212602899676 what:0.002512861213612769 or:0.002353226470942165 for:0.002275198691240474 It:0.0018060261181963588 :0.05536339006271572 +and:0.16032216373779717 of:0.13054475162889262 the:0.07532470692549681 in:0.05764354272787353 for:0.04969919542589703 or:0.040416449895376565 with:0.02986883419536077 to:0.029548492204705398 by:0.028782154084506517 re-:0.02396456925917055 a:0.018918660186797782 that:0.01704743881179217 In:0.016601800423868038 his:0.014153568734274587 on:0.013240901267180877 all:0.010261556991781502 no:0.009531094625192835 said:0.009308213781582766 her:0.00874793483413957 :0.25507397025831297 +and:0.20600665735733836 as:0.0477662493240907 that:0.04294688323279801 it:0.0380915363424814 is:0.03565849378563089 but:0.03166259230037515 was:0.031635137256138056 I:0.02477817566245874 which:0.02009953737073628 know:0.019114046431838293 be:0.018816793525068026 do:0.017019645445905025 knew:0.015129244281481685 by:0.014541886714413258 of:0.013644460304840768 It:0.013579659283902104 or:0.012665139969045728 to:0.01231756132851878 say:0.011191228091277605 :0.3723350719916611 +was:0.12493375889655906 be:0.10922118063557977 is:0.10192269304467123 been:0.08767213237968599 are:0.07575277788241057 and:0.07531341799636404 were:0.03786742353460892 not:0.029491832706496177 of:0.027689139359162077 being:0.02250409037591947 or:0.01976117870561859 become:0.015520374880508933 Is:0.014471836146470584 as:0.013896349509853 for:0.012656463360507087 that:0.011477043592523219 to:0.009937509015442087 have:0.009277950272647552 has:0.008675170552317419 :0.19095767715265424 +the:0.2328084244809777 a:0.16881582446238658 of:0.09319224703957767 and:0.07323266702770757 his:0.03617524503769171 their:0.0352745916417103 The:0.026889982057566524 its:0.02475082929102755 to:0.02445747023442902 as:0.024296192152891874 great:0.021500957270645157 with:0.018453899056080292 her:0.017987766498339202 that:0.017581427096016504 very:0.014506895129736918 no:0.013191787917593683 our:0.013122036536689537 by:0.012943073194220986 most:0.012744402831502478 :0.11707428104320876 +of:0.15048981524707714 and:0.11246983033383513 a:0.0894713932970791 the:0.08703850104374246 as:0.07929365186513294 so:0.05166233084899158 is:0.0349090544176888 that:0.03246367742302839 very:0.029939611726419416 are:0.024860772172273102 The:0.02466163952369968 some:0.020993138636599983 no:0.01997353549246089 their:0.017262946531123702 be:0.01656656534907653 or:0.0160700510112769 much:0.015416458070145212 in:0.015172990247445239 for:0.014670059380940093 :0.14561397738196372 +have:0.16289106828083436 has:0.09381104296478927 never:0.09304688968790971 and:0.07860995355823369 be:0.07031304086642384 had:0.0621473942947225 not:0.04178724532001956 he:0.04161876413583365 ever:0.0332539605248398 or:0.030380775364869363 I:0.02770421540507953 is:0.02579292444787959 there:0.02272424961922071 that:0.018919306404031205 it:0.017805142049510864 who:0.017108382896787473 which:0.016046289593206406 been:0.014583078042428178 they:0.014383897896390208 :0.11607237864699008 +one:0.1028303141280697 part:0.05963429477052991 out:0.04766456937681193 some:0.031418679026461914 members:0.030764490253327767 side:0.029940657362655835 portion:0.022063658796890564 office:0.020457735219956013 member:0.019726706386316174 end:0.019666887540649894 tion:0.018667441728710307 parts:0.016814747270460957 people:0.014112771422418794 all:0.014072739582212475 any:0.013183573287639892 One:0.013083578354183906 that:0.013024335602903442 account:0.012482348155001894 many:0.012077825070275192 :0.48731264666452345 +to:0.2606311312173991 will:0.1456747853364343 would:0.10933290212693034 may:0.07311017329136733 not:0.05483226023575317 should:0.040040908964916785 shall:0.03527031775471923 can:0.030646982891461717 must:0.029437103145305062 could:0.01930580896184339 and:0.016391369843146954 cannot:0.012212080616020747 it:0.010546979946573696 And:0.009454957086203229 might:0.009186494006090553 that:0.0086687888148496 there:0.006770757069402272 only:0.004717071250250503 soon:0.0032923191352612117 :0.11947680830607078 +the:0.1541709862772203 of:0.1328708376222428 in:0.08631478361348735 by:0.061793535651571585 that:0.05378428385199695 and:0.05162065575684244 to:0.047830543337970634 from:0.04483121951839797 on:0.034094929556355034 have:0.029766232120464614 for:0.02666273017615174 a:0.02659396962697219 had:0.02336711613355545 In:0.023093678919432252 with:0.018834020925436883 has:0.013857345054007805 was:0.013685188179345371 The:0.013316524396995589 are:0.013137730775358177 :0.12937368850619488 +to:0.12022893700269083 and:0.09020394424291768 the:0.08587503820055309 of:0.06450042443224316 in:0.0310058468700829 a:0.017742048521183405 :0.015548046036689871 not:0.01491307651316237 that:0.014112408707955496 for:0.013734482372212283 I:0.013065769926808477 will:0.012848502316304782 at:0.012837991177321897 In:0.012628718855091186 by:0.012491091048660757 be:0.011425930130217754 is:0.0113962101007567 he:0.011342727513475473 or:0.01112522537451577 :0.4219735806571561 +and:0.06602725807215198 necessary:0.037557291196503174 ready:0.03754481330585475 candidate:0.03051015049134147 used:0.029891333140515453 demand:0.02872672298511512 made:0.026678084428310565 reason:0.022818568270931587 sufficient:0.020222623032316228 enough:0.01955869720015657 pay:0.018881190750614934 but:0.018396128038022156 out:0.017695536014856048 place:0.0169811525278962 provide:0.01694417744689651 time:0.015995973723142466 up:0.0159498900771544 it:0.015732067811853098 vote:0.01571516425502166 :0.5271731772313456 +the:0.11919516938815296 of:0.07230453158552728 and:0.05781056740443249 a:0.043018564803886335 to:0.031305092790907506 in:0.020848713353460488 at:0.014270110001066288 .:0.012526810245749479 :0.012413283442322082 for:0.011719122709941797 by:0.010808400946589808 or:0.010404172990115616 The:0.01003576004804544 with:0.009811868184449042 tho:0.009295902015355835 was:0.008924239095331684 that:0.008672304223433876 is:0.0085591147338948 be:0.008335143826716943 :0.5187411282106204 +of:0.05419456383756984 and:0.049355514533924505 the:0.03447298938750073 that:0.03133154971505922 as:0.02646907138346735 to:0.01573376488014349 on:0.012503836031329698 :0.012394054608837985 West:0.012143122677202625 or:0.009806435899640512 north:0.00979909211351648 south:0.008430561832025306 York:0.008391228603235016 .:0.00808899812894811 North:0.007702784571640607 it:0.007626451715666779 Court:0.007469875352485597 South:0.007175809992432718 said:0.006996286269964048 :0.6689140084654094 +to:0.09519736517985124 of:0.08670104784439457 in:0.0853311988111441 is:0.08415425647326857 with:0.07051917044179429 for:0.06536216855668121 and:0.05886017028393455 as:0.05197344207408389 was:0.045473555051763634 have:0.03317981060709692 made:0.031217368086413566 make:0.028915194204278457 such:0.02717836420829073 that:0.026340401864184456 by:0.026135298894377948 be:0.02279052350554148 had:0.021929665782250536 at:0.021238580050628765 In:0.01917946526525416 :0.09732295281476695 +the:0.1449641844563986 of:0.08710595808597107 and:0.060639991043772136 a:0.038971050768985306 to:0.035497607287402144 his:0.022269846080904755 be:0.02150484315278025 my:0.020367185734705945 I:0.01891633058414471 in:0.01859493769918256 for:0.017350580101599025 was:0.01676359899750709 is:0.015084084537449449 their:0.013269247511876204 at:0.012718929570411921 that:0.01170468572340591 or:0.011400632554895979 it:0.011330438956791117 :0.01130401752938815 :0.4092418496224277 +the:0.3461806496529104 of:0.2083500420068561 The:0.08451380643365597 said:0.047942519611184016 that:0.0292456887834641 tho:0.017370805046071313 this:0.0170464633055622 and:0.013969257214027506 described:0.011565255323350352 Eng-:0.010965124999655995 our:0.010796535639211534 a:0.010568551016760052 any:0.009646316105757499 his:0.009476850818951468 other:0.00932131611590603 such:0.008691526552874222 these:0.008520659783889675 agricultural:0.008203092122399799 their:0.008186114805839424 :0.12843942466167235 +statute:0.18503778554392375 and:0.0783983962223686 that:0.033380239341607734 or:0.03152256600567214 as:0.02563417972280283 is:0.02236126157520294 it:0.021719211380978074 was:0.019916659616198235 be:0.019571526470503822 interest:0.018952452254899003 made:0.017678352581659514 described:0.01578673853550229 them:0.015529260604471443 interested:0.01516978637816619 but:0.014400036858924001 not:0.01437132414250767 than:0.013662947787247437 been:0.012665598734066783 engaged:0.011480850852674019 :0.41176082539062353 +of:0.2156431854233358 to:0.0807912798712919 know:0.06568210368077453 in:0.0651347366953993 and:0.06367254256806096 with:0.05178204543974902 for:0.049661311877879644 is:0.040648513481268585 see:0.03311698722703431 do:0.032339365040118105 from:0.024985709734308786 or:0.017831477034393688 In:0.01710537695782977 by:0.016818774705059023 that:0.01622202471743053 but:0.016038816512694225 some-:0.015999238233800867 just:0.014435333244023399 matter:0.013255080828307121 :0.14783609672724043 +of:0.28767355066866834 to:0.08775711267569858 in:0.08678131196995101 and:0.05160598694501188 on:0.04646139928102899 by:0.04519522654900943 for:0.044547789071328545 with:0.03396756772609607 that:0.033699232901107726 from:0.03075346596941143 at:0.027039283056790858 In:0.021061449543044047 as:0.017514234937992545 all:0.012543839382496166 upon:0.011844431150487573 is:0.00998972746569266 was:0.008814315973987914 into:0.008557199930727406 through:0.007781895704231326 :0.1254109790972375 +of:0.08404627403426737 and:0.08208970619025431 the:0.0819254341922413 to:0.06239117300669788 a:0.0272707900325657 Mr.:0.026481142074157017 .:0.024219020709445798 in:0.023371171368406034 at:0.01573599029546215 for:0.01432616983274798 or:0.0131499965104512 by:0.011891536596514762 with:0.010873873234955426 :0.010558427593915048 was:0.008466869474774154 No.:0.008244604360537616 that:0.00791532983003588 John:0.00790592206259532 be:0.007164666139022085 :0.470971902460953 +the:0.11919516938815296 of:0.07230453158552728 and:0.05781056740443249 a:0.043018564803886335 to:0.031305092790907506 in:0.020848713353460488 at:0.014270110001066288 .:0.012526810245749479 :0.012413283442322082 for:0.011719122709941797 by:0.010808400946589808 or:0.010404172990115616 The:0.01003576004804544 with:0.009811868184449042 tho:0.009295902015355835 was:0.008924239095331684 that:0.008672304223433876 is:0.0085591147338948 be:0.008335143826716943 :0.5187411282106204 +it:0.18417346170426868 It:0.13111540999937563 which:0.08397110102065705 that:0.06133214874980813 he:0.044717956854298344 there:0.04417950190044695 and:0.042846227622397814 This:0.03518063561710796 what:0.02957674200490048 There:0.02562939084435019 He:0.024784817839301393 who:0.0216027587181165 this:0.02014484799997656 That:0.010535181826318804 she:0.008887251499404381 as:0.008567386993985163 man:0.008539582648872723 one:0.007462873501997777 but:0.007442651224149904 :0.19831007143026558 +in:0.1491087213718296 of:0.14475306232104865 large:0.07395143991603606 and:0.05407795682941606 the:0.04929305141286939 In:0.03046017037847083 great:0.030154824941262266 from:0.028903402795299106 sufficient:0.025425863913111538 such:0.022504519532207227 their:0.02161016884285867 or:0.016491955812621115 vast:0.016032869404039453 for:0.0151553311736552 to:0.014398380740052385 with:0.014276627245449905 this:0.014222201907027011 much:0.012893773580865322 is:0.01277582955031396 :0.25250984833156626 +of:0.09129790931378902 the:0.07369883040827747 and:0.047842263382354346 in:0.04189055351593407 to:0.04045875475680249 a:0.03542341257202578 be:0.02020462051672066 for:0.01979292654746225 was:0.01760256398103379 at:0.017380150555488715 is:0.014984483003968216 with:0.014047653760730413 by:0.01374644383819499 :0.012670486581795598 In:0.01200961464556976 or:0.011563835749786333 from:0.011391516893522809 are:0.011273104484969465 that:0.010755276030689069 :0.4809655994608848 +of:0.09129790931378902 the:0.07369883040827747 and:0.047842263382354346 in:0.04189055351593407 to:0.04045875475680249 a:0.03542341257202578 be:0.02020462051672066 for:0.01979292654746225 was:0.01760256398103379 at:0.017380150555488715 is:0.014984483003968216 with:0.014047653760730413 by:0.01374644383819499 :0.012670486581795598 In:0.01200961464556976 or:0.011563835749786333 from:0.011391516893522809 are:0.011273104484969465 that:0.010755276030689069 :0.4809655994608848 +to:0.8404880773111405 will:0.03435688907697368 and:0.030378754709814767 would:0.013201804413227426 not:0.011434141710364058 can:0.008143333662014968 To:0.0057617397245628196 shall:0.0053550283676278 who:0.004496710661880932 could:0.004481955150444594 should:0.003953333465693029 I:0.003839229966123735 must:0.00345014852460623 may:0.003319026506143057 he:0.002648817252855457 which:0.002648789496828353 be-:0.002415311144322083 that:0.0021940449344566137 re-:0.002191624303322216 :0.014241239617597696 +the:0.11647397024205017 and:0.06362047084342998 a:0.05558756058317305 of:0.05184179696935657 be:0.03780708026725856 in:0.03068378334963019 to:0.029893831330664623 was:0.026181618889557768 is:0.02221450019585246 or:0.019678333827005016 an:0.014410693890828689 :0.012800070883144894 at:0.0126101785132988 been:0.012270539776324555 this:0.010846198254420838 I:0.010748802218931574 he:0.010518957518335691 are:0.010195419510755066 not:0.009494414837245396 :0.4411217780987361 +it:0.132250017961467 he:0.10611683068978595 It:0.10158323269508335 I:0.09385531376711469 there:0.0482272570969675 and:0.047932678423754184 He:0.04689323806798481 which:0.03778870969022465 she:0.03246698667854158 There:0.032109050324957075 that:0.026343354658741405 who:0.01926175852057592 This:0.0173652499265126 She:0.016887653067166317 man:0.01079580816221595 this:0.009690002595939693 1:0.009128986819057064 but:0.009031422398282092 lie:0.007227527567309806 :0.19404492088831835 +Grand:0.7223573679748392 the:0.053830444778993194 and:0.03115591106139824 of:0.009151931970610169 two:0.004388995477173762 in:0.003052686811535376 by:0.002760317092752932 tho:0.002591195514697175 three:0.002319220959875865 a:0.002160599466604602 many:0.0020989394803565113 or:0.001886068181353941 :0.0018596921373317061 The:0.001849368596825758 all:0.0017136198312412765 other:0.0016734458907213265 .:0.0016252916682464218 both:0.0015635874194643113 several:0.0015405028639361512 :0.14942081282204203 +a:0.3601390211066917 the:0.15489628185156404 is:0.06843235817888293 was:0.05177674810495545 are:0.041048897797157466 and:0.030334729329768363 not:0.02787504399198501 be:0.024158158156434243 in:0.023145666854525574 A:0.021195404772205544 were:0.02005650567103594 of:0.016787365085195963 with:0.014030374759793872 The:0.01324926046686991 been:0.012120137766313254 that:0.01200541556374456 but:0.011151844719386673 some:0.01109465369016686 Is:0.009919315277621719 :0.07558281685570091 +sum:0.13509162327779345 rate:0.06581812110686999 one:0.033936023438945515 amount:0.027983125118884428 out:0.026968762438315245 number:0.02480980545377739 consisting:0.022920276950434013 instead:0.02036710943069649 period:0.0199555803486929 that:0.0176315006417946 distance:0.01746654340777028 depth:0.015790810440438268 value:0.015737823384350196 all:0.015008867468685082 payment:0.014972533157490468 part:0.014677050846912476 cost:0.014616053000786108 composed:0.013834472756374316 charge:0.01344322946552705 :0.4679706878654617 +he:0.14916472398398792 I:0.08762598370500584 and:0.08273433523183582 have:0.0691559753855395 be:0.06451742476458917 has:0.038629339436248716 had:0.03707880005160906 who:0.033350239669515856 they:0.03198100083277875 was:0.030566371556699733 it:0.027404822796257344 been:0.022461331303986733 she:0.019245345079081252 you:0.01833129020915623 we:0.01741922088415148 soon:0.016805615141704876 not:0.01647937687433751 He:0.014447697597223523 then:0.014302690163070387 :0.2072984153332203 +and:0.09218329289662154 was:0.043969911104638215 him:0.04026249624831364 it:0.03310935919173114 up:0.026160888693761323 man:0.022994329744699657 found:0.02006165490485769 is:0.019935577108206436 her:0.019082122150321203 out:0.018297692604249703 them:0.01780959898082349 down:0.016528790028020237 that:0.016082072746354557 but:0.016064868530045236 made:0.015921533942317486 confidence:0.015313089666876759 put:0.015014540346533727 home:0.013617682233916347 men:0.013605427931935808 :0.5229850709457757 +be:0.11360722222665144 was:0.10938449936501023 are:0.0855010847528507 and:0.06848782188555438 have:0.06660694390304807 had:0.06380432746143734 has:0.06334254667250577 were:0.06263557268837025 been:0.05953647155862003 is:0.05695050782212115 he:0.020403950410009076 being:0.015820456220188187 as:0.011629774942029202 or:0.010586472172060466 not:0.00983166709376437 so:0.008991178146782013 an:0.00859773243385452 Is:0.008554531708654481 to:0.00832647230291599 :0.14640076623357232 +the:0.14788944866938109 a:0.12283949605542908 and:0.09551130868751667 of:0.07010194966000387 from:0.031938611914236095 his:0.02788538113722377 her:0.02261111940547752 The:0.02096303764890874 for:0.016968122475325476 in:0.015288589234162844 their:0.014622555719005548 with:0.014014537189325306 this:0.013909063080764051 to:0.013095821982641398 said:0.012610422413119443 no:0.011130215991169768 best:0.010295485523645547 my:0.010136884413317882 tho:0.009598557897392593 :0.3175893909019533 +state:0.04167913189162374 out:0.03600302343806989 District:0.03229381795231267 State:0.03163958769939802 day:0.025890521425965703 deed:0.025225549574357672 and:0.022589034185657646 one:0.021490459334517466 part:0.019215871102139334 line:0.01701268245165554 people:0.016433087762903083 city:0.01642449882963199 side:0.01609499823327267 number:0.01529986229300425 secretary:0.014605723144149452 county:0.014173096371402183 time:0.01353408842740024 lot:0.013445180396602543 amount:0.013022626297676988 :0.5929271591882589 +and:0.03868242960999506 as:0.031124813427855922 went:0.02352509775927722 him:0.02196555539050794 them:0.018760608639018784 up:0.017985449426794205 is:0.017894175620344187 go:0.017174904667157563 able:0.016756848979943888 going:0.014481672239490295 it:0.014128375989346808 was:0.013277058274565138 time:0.013249953793837373 not:0.012469887553778763 began:0.012465717758716884 way:0.012105610030480113 back:0.012090864562211581 right:0.011941707822828511 amounted:0.011564315359310868 :0.667354953094539 +the:0.2317234249172943 of:0.09888530408351552 at:0.04715865684628222 for:0.0432737120390516 in:0.04241336039669506 from:0.035042785179207926 and:0.02894411006405567 by:0.02722460922748006 this:0.024343786943520934 with:0.02425698839407688 to:0.021780110355818318 a:0.02118881071819199 between:0.020489343672847715 that:0.019286643614029514 his:0.019051861381217065 their:0.018212677483449468 tho:0.017135012978052252 said:0.016681095157117517 on:0.01615292933917352 :0.22575477720892245 +and:0.07501387695488611 days:0.04620457268788843 was:0.0440220114884276 or:0.0351377640020898 time:0.03474732773773222 that:0.03419637151520699 never:0.032146003935385144 long:0.03184305542640406 be:0.02982699213632672 minutes:0.02742289527591825 ever:0.024863792837074947 is:0.023789952220719314 years:0.021960046209748788 day:0.021515552359675203 just:0.020028580170506665 but:0.019386548815899643 were:0.017608594624758132 night:0.016748090816846275 not:0.016479249655476372 :0.42605872112902937 +the:0.39749834532651884 a:0.07520030034269234 and:0.05540858759821703 The:0.03273515726769502 tho:0.030061875542463562 of:0.020144331424922633 tbe:0.014929647509541684 in:0.014268129706664795 or:0.013333166761078447 .:0.013287381914101323 an:0.009000188755386574 to:0.00880680429595084 :0.007943763822197133 Mr.:0.00773879605474787 by:0.007328417831573476 as:0.005922572098978465 for:0.0047526933692942485 that:0.004736121968310169 on:0.004594595720579333 :0.2713091226890862 +the:0.11919516938815296 of:0.07230453158552728 and:0.05781056740443249 a:0.043018564803886335 to:0.031305092790907506 in:0.020848713353460488 at:0.014270110001066288 .:0.012526810245749479 :0.012413283442322082 for:0.011719122709941797 by:0.010808400946589808 or:0.010404172990115616 The:0.01003576004804544 with:0.009811868184449042 tho:0.009295902015355835 was:0.008924239095331684 that:0.008672304223433876 is:0.0085591147338948 be:0.008335143826716943 :0.5187411282106204 +of:0.17954902324170233 and:0.11546023562547801 in:0.11130532040680881 to:0.08629112370501937 for:0.061641033552244845 by:0.041077244288811494 that:0.040457310758689566 with:0.030464731911988722 In:0.023827093703818417 from:0.02252252226007699 but:0.016891831496710006 on:0.012664763296187905 all:0.011165885898854033 as:0.011148101707256948 upon:0.009944105284848332 at:0.009336234156516462 up:0.008651543200996164 made:0.00845829471768 after:0.00835078888797588 :0.18979281189833572 +and:0.047397567904143276 able:0.036725394505221595 as:0.03405400812532096 is:0.027343992211285154 him:0.027070459302366727 going:0.02582062486598676 was:0.023890216909409415 enough:0.023180801560292588 order:0.022736221623113544 me:0.020084440195494005 said:0.01963877213476936 necessary:0.01955747376129115 time:0.01949212641748222 you:0.018282601246286237 unable:0.017648395648191966 them:0.017234135215452986 it:0.01719572876183927 made:0.01670661067313208 ready:0.015722486267787644 :0.5492179426711331 +any:0.10745739547606298 no:0.08909755498612476 that:0.08428589690793266 No:0.0788003954684007 of:0.0579732014441984 the:0.05669788835941758 and:0.04871254731702039 but:0.04602170681146588 some:0.0459260472086814 every:0.041706513021185505 only:0.0328167277685456 at:0.02285704408530009 for:0.02114959265661433 to:0.021090169727447174 The:0.021035273985623153 Every:0.01883629579863539 each:0.01868834440168126 which:0.018616513412667682 a:0.018267352411027327 :0.14896353875196772 +and:0.20448436040807252 that:0.09658874084439074 but:0.08768613606923051 time:0.04049380941655143 But:0.03190883114208586 or:0.016997792483260315 And:0.01699662229227578 day:0.013924986392584387 ago,:0.011140123108857227 it:0.01021387620294247 even:0.01013734412815634 and,:0.0099193400375064 me:0.00980477449229753 him:0.009667089187298557 days:0.009446861281092908 only:0.009081754337786579 them:0.00847992703835433 come:0.008292794939838822 year:0.008117496029847732 :0.38561734016756954 +of:0.16935323324386728 the:0.09852503282062484 by:0.0774621400749165 and:0.07715367842885903 with:0.07416121544230955 to:0.04274950944891178 made:0.035891986777555 in:0.028954031445212074 for:0.028822786303770713 The:0.02484108385974181 on:0.024616133006587212 that:0.0237275600133779 upon:0.01809441649220565 have:0.01709370952418202 make:0.013922630790035207 from:0.01383433257998078 asked:0.01319366977805398 under:0.012833942746680628 had:0.011825517145035706 :0.19194339007809227 +the:0.22085933773161562 a:0.15476847770332883 of:0.05222303583964632 and:0.05021042031540059 The:0.04590073602378093 A:0.022541012714381397 an:0.018010375958140593 tho:0.017429123882536587 or:0.013738839666071142 to:0.013078419457082638 in:0.01275475745171018 that:0.01231766265918264 his:0.010962552999361115 :0.01089360801232133 Mr.:0.009234824750037942 .:0.009015087207395113 tbe:0.009002717760063028 as:0.008446535838061393 by:0.007913787962496465 :0.29969868606738614 +the:0.16807735899698817 of:0.10541662057906837 and:0.05138367848570702 a:0.04141865232648221 to:0.0385989743764065 in:0.026264864977736738 was:0.019530675665220657 his:0.018900421021236905 be:0.017373825006196972 their:0.015767721170721456 for:0.01557246589796783 with:0.014071419046630446 is:0.012922913111931644 at:0.012690452250034052 are:0.010702713108721902 .:0.010158075558988393 Mr.:0.009672788574483367 tho:0.009612591781990074 were:0.009549306361446321 :0.391314481702041 +and:0.2040407357147352 he:0.050770915271370155 be:0.03884382864983985 who:0.03581525787495837 I:0.03534729332119539 which:0.032478002825267166 that:0.029103425320782646 to:0.026614596271557746 an:0.02437346021592192 the:0.024338956022258915 it:0.022824702984878417 is:0.021597109540118387 or:0.01820961865276396 was:0.016141665790205696 she:0.014654026386206723 they:0.013681726296247441 are:0.012633812697839046 It:0.012407679116455185 this:0.012129590386853585 :0.3529935966605442 +the:0.4824438468866416 a:0.14247323250932173 in:0.048568568845696374 The:0.040798388251780004 this:0.034781517543967466 tho:0.02797606712531075 of:0.01628000071921179 any:0.013915002680404525 that:0.013730582317222201 good:0.013500847682443138 no:0.012511188469746332 tbe:0.011323280792161154 and:0.010651576571166737 In:0.010425207798445897 every:0.010340140404886372 by:0.010084604511029337 great:0.009728003617909908 on:0.007412938058018931 other:0.005906077932564406 :0.07614892728207133 +be:0.26777722894998823 was:0.1197704777111242 been:0.08998779207665172 are:0.08849119928037738 were:0.0774316747854814 is:0.060260304627381044 not:0.058441134672292595 and:0.0421799334016685 being:0.019617183335409728 or:0.01960870225937703 bo:0.017512323221352294 Is:0.013673167193412756 have:0.012027650757733249 I:0.011975755402972181 am:0.011352576808894862 had:0.011120063442493484 so:0.010533495713515108 now:0.009859874348497822 if:0.00922673404963154 :0.048152727961744905 +the:0.1773392009772209 and:0.07852410186285416 a:0.057067399499078325 of:0.0441340641139384 to:0.02794345107719524 in:0.023020731416350283 The:0.021376900726120005 his:0.01717412104478057 I:0.01396440350051292 :0.013703159185877983 will:0.013000729911137059 tho:0.011330685310862856 that:0.010553796796062245 is:0.010292160647120858 was:0.010077238555321026 by:0.00893398593870221 their:0.008916985983133084 for:0.008718128123185483 an:0.008661312148750286 :0.4342674431817961 +of:0.20153946783484064 on:0.15540269495283945 to:0.13273245998325714 at:0.0911912435874 in:0.07617653469605329 from:0.061772261501769905 and:0.039196476470971665 that:0.024505710551021312 for:0.0234631027676766 by:0.01934440144037426 with:0.01888405620471798 over:0.017674530988911363 upon:0.017621980993781226 In:0.01730018292014529 as:0.01065179179330221 into:0.010650661448724098 On:0.01061987196519158 all:0.009832473242845648 about:0.009552888025326127 :0.05088720863085022 +one:0.1028303141280697 part:0.05963429477052991 out:0.04766456937681193 some:0.031418679026461914 members:0.030764490253327767 side:0.029940657362655835 portion:0.022063658796890564 office:0.020457735219956013 member:0.019726706386316174 end:0.019666887540649894 tion:0.018667441728710307 parts:0.016814747270460957 people:0.014112771422418794 all:0.014072739582212475 any:0.013183573287639892 One:0.013083578354183906 that:0.013024335602903442 account:0.012482348155001894 many:0.012077825070275192 :0.48731264666452345 +in:0.29655977907666226 of:0.20022467839383798 New:0.11513279582142512 from:0.11013805680712328 In:0.0598023380650281 to:0.02543142293635611 for:0.024523439285342796 at:0.018224113861324418 with:0.016781399072124337 and:0.013777030346302099 by:0.010967916376500712 that:0.007287110875339853 the:0.0068996421490674364 iu:0.005304777157734865 ot:0.003247343795585132 up:0.003160646083913435 into:0.0028531256807420593 under:0.002814685630345637 on:0.0027909991409283265 :0.07307869944431604 +of:0.08279833369256491 and:0.08166594334598071 to:0.057152242556727295 the:0.04651923555233249 in:0.025662158675890962 for:0.020432541735278163 that:0.01932605838915512 :0.017493613781769432 by:0.014294173599598194 at:0.014250492966237887 was:0.01402434576769432 on:0.01379550038137493 is:0.013675736285329202 be:0.013489359546777624 with:0.011560693372448692 from:0.010766747738988797 or:0.00985886640551283 said:0.009586932150410045 a:0.008987610448818437 :0.51365941360711 +:0.05408755002078587 that:0.049531093299571755 and:0.026307747831082865 it.:0.023066050300906284 but:0.01604063510609521 as:0.013691133477483644 them.:0.013231826614228009 country.:0.010841946065548622 of:0.010487154798430135 which:0.009468692177853443 people.:0.008334614695462483 years.:0.008004416265567844 time.:0.007956347283674411 If:0.007858697640010603 him.:0.007413514011734311 year.:0.006977232836926869 for:0.006851092903969388 life.:0.006064905382420001 .:0.005982979647669748 :0.7068023696405785 +of:0.28767355066866834 to:0.08775711267569858 in:0.08678131196995101 and:0.05160598694501188 on:0.04646139928102899 by:0.04519522654900943 for:0.044547789071328545 with:0.03396756772609607 that:0.033699232901107726 from:0.03075346596941143 at:0.027039283056790858 In:0.021061449543044047 as:0.017514234937992545 all:0.012543839382496166 upon:0.011844431150487573 is:0.00998972746569266 was:0.008814315973987914 into:0.008557199930727406 through:0.007781895704231326 :0.1254109790972375 +and:0.053214003471214744 away:0.039096698519791556 taken:0.028838611566062967 them:0.026371875862445233 come:0.024357319953910807 free:0.023600542139642407 received:0.020790736483501455 him:0.018181562693782623 out:0.017899559856961483 miles:0.0174256255573234 derived:0.01658131762795838 it:0.016527601636716606 removed:0.014574180133064413 arising:0.014474435720941922 up:0.013955542636221915 returned:0.013771196499167625 years:0.013673292489816578 one:0.013041597396482658 or:0.012973159930840233 :0.5996511398241531 +two:0.10914132595630689 hundred:0.057143617251611545 square:0.05638086153739393 six:0.0498383734957254 five:0.04825395549647682 three:0.0481405734237553 four:0.045934443890229576 ten:0.04219600993844737 the:0.03644652533080594 few:0.03285612921337582 seven:0.030839114542724366 fifty:0.030025820957986532 twenty:0.029747821550332176 eight:0.027955416347964945 fifteen:0.025224716679398053 100:0.025158757241670975 thousand:0.021597403211716472 thirty:0.018980995185694623 forty:0.018089935848232833 :0.24504820290015045 +the:0.7709130741479173 The:0.03347968606754152 tho:0.02562724239401409 a:0.01989383972641368 and:0.016005062415118714 his:0.014774327816748093 in:0.012140100598297668 of:0.009309047574030975 tbe:0.008658214713572072 this:0.006962938890213512 that:0.0066712440961224475 great:0.00561064597141387 its:0.005355074416699938 their:0.0043689294964151665 by:0.003836318318170647 no:0.003529976439725296 every:0.003263704947439142 same:0.0031832264412421677 any:0.0030511840849462256 :0.04236616144395741 +the:0.6116149617442878 said:0.06116934211793267 The:0.047141050701136306 of:0.0345002671128906 and:0.028834307510974315 tho:0.024710229148491462 this:0.01836078947363069 an:0.017897537623363345 our:0.015373190916325158 a:0.015088093097235003 great:0.014991357980763847 tbe:0.012984112619953627 State:0.01228142787519803 States:0.009104092936239833 City:0.008264136126189871 United:0.007709295025003529 their:0.007374284099034803 National:0.007105552866980162 state:0.006991763046115698 :0.03750420797825338 +of:0.29437631849470236 in:0.11816272353262096 to:0.09687024126398729 and:0.0696553512261048 for:0.0526025223109076 with:0.04720404102715457 on:0.043150503869267935 that:0.03174796496073132 by:0.02835484265640129 from:0.025758929898809034 all:0.019264554707018478 In:0.016757627817894926 upon:0.016077859216914427 have:0.015691267441049088 up:0.012337860030674002 or:0.010498793748225878 as:0.009489619850163684 make:0.009346408908907377 into:0.00882631701390019 :0.07282625202456479 +the:0.15771756956637492 of:0.09114666628818786 and:0.07333171862374692 a:0.07139942587372107 to:0.02508335920029717 Mr.:0.0230071898550963 is:0.0201918808877623 as:0.02018469307336861 The:0.018127876798115453 are:0.01807184421944569 be:0.01796812292029386 that:0.017554891402226297 in:0.016503212004593357 or:0.01640228292853147 was:0.015875049305575508 an:0.014314151756485831 for:0.01375792735505549 it:0.013177245572999503 he:0.013133018421682989 :0.3420518739464394 +I:0.1480590853655636 he:0.12211621627211247 and:0.10629149339134802 they:0.05686558642659426 He:0.05171568914207728 it:0.0493326198940738 she:0.04127583808585087 we:0.037236121524939984 who:0.03409675454355639 which:0.03403429923832586 It:0.02758824548050368 then:0.02147501059670161 that:0.018876458322408526 1:0.01570354492072409 She:0.015027805664678331 They:0.014339459135547466 men:0.011162076952237681 lie:0.01037846118005048 soon:0.009560566505087416 :0.17386466735761819 +of:0.09129790931378902 the:0.07369883040827747 and:0.047842263382354346 in:0.04189055351593407 to:0.04045875475680249 a:0.03542341257202578 be:0.02020462051672066 for:0.01979292654746225 was:0.01760256398103379 at:0.017380150555488715 is:0.014984483003968216 with:0.014047653760730413 by:0.01374644383819499 :0.012670486581795598 In:0.01200961464556976 or:0.011563835749786333 from:0.011391516893522809 are:0.011273104484969465 that:0.010755276030689069 :0.4809655994608848 +hundred:0.02334136986593815 up:0.005482494641173394 men:0.005366536521246011 Hundred:0.0047587970519216575 John:0.00441808156134956 William:0.004390720675819281 him:0.004016828614280843 ;:0.003997112205305733 due:0.003721199871732 in:0.0036582900032443304 time:0.003637206863828461 James:0.0035594902370151707 out:0.0034878448964120057 .:0.003467980723571515 1:0.0032804584819785204 day:0.0032444781513863933 ,:0.003058139385740603 :0.0030314555521939613 Robert:0.003005471634785646 :0.9060760430610768 +his:0.39519508840685436 and:0.12817994768316796 the:0.11129923907199382 a:0.04113236693037929 of:0.03685026419929459 my:0.0328988913741118 their:0.02296883295715358 her:0.022002097191660283 your:0.016437442586882393 to:0.01312625500092645 our:0.012816082303296384 The:0.012804682613945344 bis:0.01115023758059971 His:0.010706968300494174 Miss:0.006070340005785658 its:0.0053121477957300345 by:0.005238455706400789 young:0.003939097050604349 that:0.0038940219365847886 :0.10697754130413424 +and:0.07558940021936399 recorded:0.030196237618668006 was:0.028917161578042846 made:0.027969746247669736 that:0.027730098932509103 o'clock:0.025060522019555328 up:0.023026552239529506 is:0.020398277211376416 found:0.02003101797656537 placed:0.017482208134164214 out:0.016937164562539058 place:0.016819459500107596 interest:0.016629321966808677 him:0.016002796715253755 situated:0.01573420479581609 it:0.015128305982428461 them:0.014715943643665314 part:0.014646613000297721 interested:0.014450471929902294 :0.5615344957257364 +it:0.10807487985995322 and:0.07194481380584353 we:0.06827452038716238 I:0.06033383258260357 It:0.05882803344326873 he:0.05851803250091282 which:0.04777870840669289 who:0.04237016196984689 they:0.03737644989101951 that:0.023658909147442723 We:0.015925450254473405 person:0.015588692402369419 He:0.015147588527415467 same:0.012036602253175389 or:0.01153293816585168 company:0.01116015816219636 there:0.01071041978907919 nor:0.010088542875546537 you:0.009982835975509584 :0.3096684295996367 +to:0.09864282010030183 the:0.08375297126946753 of:0.07074571151673052 and:0.06779046829403 a:0.02766650927741597 in:0.021670314456411932 at:0.021392828982420006 for:0.01627599403114278 is:0.015107338441904122 he:0.014818877918256685 was:0.013808540905081488 by:0.013132601340090633 it:0.012796195965848819 I:0.012723560421513859 :0.0121914922721236 not:0.011777366450725432 .:0.011011346691779235 that:0.01092359583028988 with:0.01073896800850032 :0.4520324978259654 +the:0.11919516938815296 of:0.07230453158552728 and:0.05781056740443249 a:0.043018564803886335 to:0.031305092790907506 in:0.020848713353460488 at:0.014270110001066288 .:0.012526810245749479 :0.012413283442322082 for:0.011719122709941797 by:0.010808400946589808 or:0.010404172990115616 The:0.01003576004804544 with:0.009811868184449042 tho:0.009295902015355835 was:0.008924239095331684 that:0.008672304223433876 is:0.0085591147338948 be:0.008335143826716943 :0.5187411282106204 +is:0.11095384632744906 was:0.08749264816196523 as:0.08213083556606714 are:0.07895152235598095 and:0.07051754695440962 a:0.05664938112779265 very:0.047507095160713206 her:0.047485709159778476 were:0.04434825744772063 the:0.037427235928799554 would:0.026656114593180534 too:0.026285548562623547 Is:0.026133714820896912 so:0.02461062255023808 his:0.02401757201561663 will:0.02244226849195776 not:0.02221127872582194 be:0.02133492058530545 of:0.01761914537694512 :0.12422473608673751 +the:0.3921034435972773 a:0.1218630812581861 this:0.07834424592520552 any:0.024613878359573294 other:0.021326366905843854 every:0.01895257126762417 and:0.01740100368160296 great:0.012658025541652924 our:0.011925871855507565 tho:0.01102116486724443 The:0.010088225964069997 one:0.010033277301165036 of:0.008340806145010211 his:0.007357532979639511 nomi-:0.007300730339025152 new:0.0069786458016678704 no:0.0066465334762499375 said:0.006636310998405961 States:0.006003497142092906 :0.21940478659295534 +and:0.10981104784313248 said:0.05798867972750085 fact:0.0514883462640965 so:0.0456776975870275 know:0.03234792367262018 believe:0.030949853381258448 him:0.02893541139360796 is:0.028478833364586804 stated:0.023610355906769128 say:0.021886854974545924 all:0.021511757120930723 found:0.020381860552997354 was:0.018994956518860504 of:0.018298851045518885 to:0.01766907485085068 thought:0.015900466944022237 me:0.015875354448520618 but:0.01524131383420046 declared:0.015120104878301096 :0.40883125569065165 +the:0.6012117386917473 in:0.05588633286059913 The:0.051970404660406436 and:0.04357722542785907 a:0.03775534811362728 tho:0.0333680654112192 great:0.019153777899828927 In:0.018773269006882625 of:0.01765431118820421 tbe:0.01346001986754444 this:0.00830896293488752 that:0.00692884585861101 other:0.006856444512171203 large:0.0058774322545136455 or:0.0037657218065220454 first:0.003319943709576371 ad-:0.0033133282431214287 on:0.0032264495852220793 said:0.003115855121993462 :0.0614765228454626 +of:0.12337219970521593 the:0.11195120210315326 at:0.06184636000224204 and:0.055074425098049294 to:0.03399056608047632 in:0.0315406795729131 a:0.028665350744180425 on:0.026455919163844533 said:0.015954987490823587 .:0.015656237518990722 :0.013282819987490688 from:0.013059231995641575 his:0.012396311074950431 for:0.012075125415466927 The:0.0101737415959052 by:0.009884251669727517 was:0.00956848271099235 In:0.009517788085832216 about:0.008851721531837687 :0.3956825984522662 +of:0.28767355066866834 to:0.08775711267569858 in:0.08678131196995101 and:0.05160598694501188 on:0.04646139928102899 by:0.04519522654900943 for:0.044547789071328545 with:0.03396756772609607 that:0.033699232901107726 from:0.03075346596941143 at:0.027039283056790858 In:0.021061449543044047 as:0.017514234937992545 all:0.012543839382496166 upon:0.011844431150487573 is:0.00998972746569266 was:0.008814315973987914 into:0.008557199930727406 through:0.007781895704231326 :0.1254109790972375 +of:0.2781007135947366 at:0.15855850912626165 in:0.0816158429354417 the:0.05541777763755998 from:0.05539281939816243 to:0.04978755408317569 for:0.02355201332928575 and:0.021838628527903955 by:0.016648994568921615 with:0.01358136931659594 In:0.013501767009744267 :0.008402223318402229 are:0.0069956930701057666 on:0.006639205384007461 ot:0.005703946436256715 At:0.005338189295285802 a:0.004731387337818848 ol:0.0044158594870054545 about:0.004092992028012042 :0.18468451411531608 +is:0.11021676653760465 was:0.08655911936247455 be:0.0847163555927144 the:0.06995326693852456 a:0.05036830967245849 in:0.04457891352402689 are:0.04071568826679688 feet:0.03255125180807617 of:0.031991456830873115 and:0.029906493507632893 been:0.02023142405517044 amount:0.020092483757033288 one:0.017861697006605493 that:0.017630264771849646 being:0.01665754012967275 balance:0.014404087979736946 were:0.01415574887225728 by:0.013932104376199489 thence:0.013475234265559109 :0.26900179274473296 +the:0.1449641844563986 of:0.08710595808597107 and:0.060639991043772136 a:0.038971050768985306 to:0.035497607287402144 his:0.022269846080904755 be:0.02150484315278025 my:0.020367185734705945 I:0.01891633058414471 in:0.01859493769918256 for:0.017350580101599025 was:0.01676359899750709 is:0.015084084537449449 their:0.013269247511876204 at:0.012718929570411921 that:0.01170468572340591 or:0.011400632554895979 it:0.011330438956791117 :0.01130401752938815 :0.4092418496224277 +a:0.14873893657155515 of:0.11777181763822764 the:0.11443208483700071 in:0.06047216309445784 and:0.04904217327583237 to:0.02931790149803374 at:0.02342500252478532 The:0.01737523542888889 that:0.01652622823812037 an:0.015476537841973649 for:0.01517826616900567 as:0.014682385398816371 from:0.013892186801238523 In:0.013464862259545593 on:0.013060886473453662 with:0.011981938704998515 :0.011368926276686776 their:0.010794120492017827 his:0.010002280863173875 :0.29199606561218755 +a:0.12245511286805558 it:0.0875246185487224 and:0.08738755743028738 the:0.08591604087149043 is:0.07283042616799439 of:0.0714222475186321 was:0.0429655038643184 for:0.040394573611939405 no:0.039524760657026134 to:0.024702118002531335 that:0.02413750475423963 any:0.022667076397064907 with:0.021612502819276243 in:0.01965823485824542 or:0.019068782509261698 are:0.018736446387412318 still:0.017154612980679426 be:0.016823719624644483 It:0.015740578303368166 :0.14827758182481018 +of:0.3308586248838593 in:0.08058791110511195 to:0.08028095196609245 by:0.055210322234297504 that:0.0551133503710726 and:0.053608979869663 with:0.04453987618868872 on:0.03567671953389366 for:0.03364577472632634 from:0.03314494526655499 under:0.028750730439415947 In:0.018003268603627987 as:0.01237741920959882 upon:0.011675977115718553 which:0.011372447490907456 at:0.010901092621035498 all:0.008591800013340145 through:0.008531845175479388 when:0.008136975372590404 :0.07799098781272532 +in:0.035697681768342975 it:0.02313312373181096 up:0.018278896888828975 time:0.017081209222752972 it,:0.016166710519627064 him:0.016116990194259977 them:0.014869622906342243 out:0.012190705847353614 them,:0.011812127203574881 men:0.011398347763406327 more:0.010447071486848414 be:0.010195469428714497 him,:0.010093317147885642 work:0.008697346134511542 made:0.007834833101765703 ;:0.0077853017570521 and:0.007216905130120012 for:0.007049349552513399 of:0.007029195977233278 :0.7459057942370555 +State:0.08585143005475583 state:0.05530259890277491 city:0.03738520092813341 county:0.03043398224158061 out:0.02465329984439293 part:0.021768976542857244 line:0.01770492002334114 Secretary:0.01752576866602025 side:0.016514807592282025 Board:0.016263358502932503 people:0.015185766365856893 County:0.015087961710773406 City:0.014501238872224768 day:0.013424772325269875 Bank:0.01251734618359331 number:0.011649433233193583 and:0.010395965565573454 name:0.009781018623887408 case:0.00949512149880425 :0.5635570323217521 +I:0.4988811498734183 he:0.09939729737766434 and:0.09357072598758909 1:0.032669009292145855 He:0.026825283870868723 never:0.024591256729647085 she:0.023993029596404127 they:0.020588045164898212 we:0.01764597953405341 who:0.017233604458159614 you:0.011555770604290935 it:0.0100802110306347 "I:0.009042318100178979 ever:0.008971142126730274 ho:0.00673699257613811 She:0.006431261140962935 We:0.006205911461018684 They:0.005863690091050007 It:0.005803979994346594 :0.07291334098980003 +the:0.13985504689816028 of:0.09939499706739169 no:0.05512207970847816 and:0.05292176439358343 their:0.05177049211694294 is:0.043183050165964104 other:0.0290676234291168 for:0.025484477619863548 be:0.024314274986519436 or:0.024022322897790545 any:0.021222447632385483 very:0.02060152510255237 his:0.019380602469597646 was:0.0185358604397248 its:0.01800542721569805 are:0.01767632586713616 some:0.017405759124244434 a:0.016210788420468795 an:0.01540818815731064 :0.28941694628707065 +hundred:0.013633628820093018 ;:0.011172311961148602 him:0.009807052834026905 one:0.00914669734384353 feet:0.0090219372983598 up:0.00838318558829166 mile:0.007527126877816727 feet,:0.0071805242500254255 time:0.006879602834379732 man:0.006817451499927337 it:0.006300585667639516 it,:0.005903705234588485 out:0.005451849962934835 :0.00538718305729827 ,:0.005295204710281874 and:0.005240008239108335 here:0.004938150073064577 water:0.004837308913464981 them:0.004796443021708541 :0.8612800418119979 +the:0.11919516938815296 of:0.07230453158552728 and:0.05781056740443249 a:0.043018564803886335 to:0.031305092790907506 in:0.020848713353460488 at:0.014270110001066288 .:0.012526810245749479 :0.012413283442322082 for:0.011719122709941797 by:0.010808400946589808 or:0.010404172990115616 The:0.01003576004804544 with:0.009811868184449042 tho:0.009295902015355835 was:0.008924239095331684 that:0.008672304223433876 is:0.0085591147338948 be:0.008335143826716943 :0.5187411282106204 +sat:0.0931287989008259 laid:0.09222884429313155 came:0.06188985634214961 went:0.05687984499055441 put:0.05539876558733069 come:0.04467990828173819 and:0.04406792415004374 go:0.04210576438179551 set:0.03221706962053675 cut:0.03220687535319788 sit:0.028825797777395662 lay:0.028510216069720706 it:0.02720316804278465 them:0.026671716279557486 going:0.02254952015523934 him:0.022201148059379235 broken:0.022107288151059962 knocked:0.021217284085692227 was:0.019804082098377206 :0.2251061273794893 +belonging:0.03212455056904486 person:0.02198912722570465 one:0.02196477342890394 and:0.015036532184656972 more:0.014974475779226731 on:0.013241015371911045 two:0.012408120555799767 States,:0.010699632998997207 man:0.010687323712604137 lot:0.009229840993059749 law:0.008622551165801528 in:0.00861184638458777 ;:0.00833767085167505 day:0.007637408293448407 year:0.0074292864442670956 ten:0.0072875823457971564 mortgage:0.006737562445415664 them,:0.006600690042524918 of:0.006547399680063004 :0.7688326095265103 +and:0.11203614284734381 made:0.029480560291083903 necessary:0.027231632327903786 provide:0.01978786821063526 him:0.018624150941585572 time:0.017844902254185023 but:0.01736032991925495 pay:0.01712283223509279 responsible:0.01655246417854943 work:0.01573375727996718 used:0.015721729148453864 that:0.015344008200088246 providing:0.015123591452644664 or:0.014918878594106077 it:0.014272018550925738 vote:0.014240496926603478 out:0.013886758983508773 demand:0.013625570335128902 ready:0.01288626098417059 :0.5772060463387679 +it:0.14980370725759037 It:0.1417831987182438 This:0.0994395734160535 which:0.06123870759127718 that:0.053827314535707556 this:0.0485319048157116 and:0.03481463816943127 there:0.03163351300029438 he:0.025874957304685715 That:0.02452637228711398 what:0.02101535076138451 who:0.020745118014465793 He:0.01553744098124584 What:0.015466571118696077 There:0.012715435083286795 Here:0.00825702518154719 one:0.007881347531268929 Such:0.007797349307744799 as:0.006397540204786528 :0.21171293471946415 +sum:0.03352282876311118 number:0.028116684882597106 line:0.019995206059833036 city:0.01946514558931857 out:0.019275318828420953 day:0.01666865340772654 county:0.014872697538657208 amount:0.013254184849875051 Board:0.01252325449624941 town:0.012449555905674143 side:0.011663975251122375 part:0.011517157473718155 County:0.011460540331966697 state:0.011087331502382173 City:0.010878919191854432 purpose:0.01081028255427907 and:0.010297866493795984 way:0.009848747943663767 name:0.009522170936943183 :0.711769477998811 +the:0.2355468267472707 of:0.16765471863860923 in:0.08997109490893432 and:0.041988769954453366 a:0.03503548784738874 an:0.03260792671610593 great:0.02321193085760807 In:0.019742233547790315 for:0.01771970642777058 good:0.016714888445346472 such:0.016640342189807235 this:0.015758298416774806 tho:0.015733261343645458 his:0.01557504249347065 other:0.014372591786894338 to:0.013908106195232311 The:0.013569277577216203 its:0.011555349657658927 by:0.011392470258127256 :0.1903016759898951 +hundred:0.02334136986593815 up:0.005482494641173394 men:0.005366536521246011 Hundred:0.0047587970519216575 John:0.00441808156134956 William:0.004390720675819281 him:0.004016828614280843 ;:0.003997112205305733 due:0.003721199871732 in:0.0036582900032443304 time:0.003637206863828461 James:0.0035594902370151707 out:0.0034878448964120057 .:0.003467980723571515 1:0.0032804584819785204 day:0.0032444781513863933 ,:0.003058139385740603 :0.0030314555521939613 Robert:0.003005471634785646 :0.9060760430610768 +to:0.06624861751738217 of:0.057636884401049554 and:0.053424186292105234 the:0.052502305105116186 be:0.040095322031872875 a:0.03188744359558138 was:0.023298694154229808 is:0.015764227947253528 for:0.014732286504778702 or:0.01301524000180623 been:0.01279822331508153 in:0.011452734491952133 he:0.011306977015793753 were:0.010687293086415112 with:0.010647418531408482 will:0.010306129390080195 not:0.010194956722502362 that:0.00995309647446784 by:0.009882485630649597 :0.5331654777904733 +and:0.053530701882841925 of:0.02896933499213544 the:0.025309755536997245 that:0.021576575076064478 how:0.019285168028485684 I:0.017869294398609705 :0.016309497223970033 be:0.015275965518292408 How:0.015186922609976585 is:0.014500254574405711 was:0.013685247983548459 re-:0.013619887533106795 but:0.013419114600711428 he:0.01286555085605117 -:0.012364382003638544 which:0.01117758850156094 are:0.011060557993524995 to:0.010999647860746033 only:0.010169963890373656 :0.6618245889349587 +of:0.06028475422985138 the:0.051324544396968146 .:0.04530211306498006 and:0.042309932272043826 W.:0.023780690845811626 H.:0.022188383920763787 by:0.02168736106820693 J.:0.021643742999801915 John:0.019721608496585923 to:0.018810894607210214 Mrs.:0.01816777153572266 :0.018165505913776702 C.:0.01729617183619809 a:0.017031563840157252 Miss:0.016419042057942815 A.:0.015448674012065471 E.:0.014077242992411585 M.:0.01318753998154529 F.:0.01285807727455112 :0.5292943846534052 +it:0.28910883234686335 It:0.18781570474962758 which:0.07250697791331387 there:0.056432838788992835 and:0.04762101303091066 that:0.04490693255875625 he:0.02753062849878164 what:0.02334079507911936 This:0.022370809285635 who:0.021907756145294575 There:0.014797611771360165 this:0.013367114509086628 as:0.009317679559999481 He:0.008613450502179149 but:0.00819187366982323 That:0.006617476767422932 she:0.0055825241671001715 work:0.005016207125098789 man:0.004302224232802715 :0.12965154929783163 +the:0.1612214986260814 of:0.11935139934597638 to:0.04741904302049896 and:0.045192708361771784 in:0.02969383787007419 for:0.021274572477939385 by:0.020987906597510556 that:0.020104447262242312 at:0.014301462538496852 be:0.013160043824927858 :0.012127933727728385 was:0.010927927708311302 from:0.010844383147179415 their:0.010385273815984749 his:0.01034463567954697 with:0.010331702542428815 were:0.01031175766875865 a:0.009945174784758074 are:0.009667860117368803 :0.4114064308824152 +well:0.07126013699253551 and:0.06835545922348966 far:0.03837035336195584 so:0.03456549911371506 known:0.030322105846134643 it:0.021320954052534816 long:0.019828203665999293 such:0.018966395913235543 but:0.01702589662134499 same:0.015855278524302838 much:0.015338380091602696 just:0.014994993326899434 is:0.014197275379967744 them:0.013851702530609446 soon:0.01255249974596672 that:0.011627960724253926 him:0.011510156523845717 described:0.011449578204505777 act:0.010728240680316624 :0.5468789294767837 +at:0.15759636317629921 of:0.1421714067936483 in:0.11676904876960983 to:0.06398364411645996 on:0.051157018190029144 for:0.05108566601725402 and:0.04555513108461132 that:0.031721944739604234 from:0.030113826054908015 In:0.029702699076370135 At:0.029399515452081842 with:0.028043139425789426 by:0.026185917658690036 is:0.020303271491863204 as:0.01797707611473321 was:0.017223050385135958 upon:0.016504659720422372 about:0.014081527374087893 be:0.01236778699448754 :0.09705730736391437 +as:0.06337289415049517 up:0.04809314218185479 and:0.041411564292737395 according:0.03738221587639796 back:0.03564998809838123 him:0.035577611022324374 returned:0.035110739114133455 went:0.031172920432325488 came:0.03111997420978254 it:0.024764398107483297 regard:0.022823763012400078 confined:0.01803499028792385 come:0.01739043734809638 return:0.017283054062928106 go:0.01654150200276455 down:0.016309920682264393 owing:0.01563727895997569 is:0.015449497308450856 was:0.015024338606440533 :0.46084977024283985 +the:0.2704595466920502 of:0.12921004725715962 and:0.08174900512594616 The:0.06418173113529979 or:0.05358471975359956 a:0.03948236207313488 by:0.038229409481716284 for:0.0308951887933902 with:0.030825856349822555 in:0.029139306118365 about:0.02349882250551087 from:0.023466091729555338 that:0.02294401091880566 these:0.02235520207823843 tho:0.01774517232601338 between:0.01451378967656757 some:0.014192320182511544 to:0.013469793776667032 only:0.011982375530566965 :0.067075248495079 +the:0.09684081064840576 and:0.06551335624548284 of:0.05146145169206151 from:0.049520598669154245 a:0.045427902131977435 to:0.0370403239153822 be:0.035669151526387034 was:0.030489628475080553 is:0.026635804908522978 in:0.023878514238638158 are:0.018513936943033917 not:0.017945708099223703 or:0.017556265685966497 been:0.014265228721347686 at:0.013857211504087178 he:0.013733215789660087 were:0.012396679125422956 I:0.012347944480187516 for:0.012197989992860347 :0.4037082772071174 +the:0.29643186693021434 and:0.08288723230438504 a:0.06963637617734765 of:0.05618575152244054 to:0.021577900468206818 tho:0.02128550574816393 an:0.0198405952148365 or:0.01872303314402815 The:0.016445823497474366 at:0.015307795549511515 in:0.014967801075206106 his:0.012790836710961817 on:0.011265407768809108 tbe:0.011253871205134923 with:0.011008669975857246 .:0.010437842426542126 for:0.009790613774564716 this:0.009614697909802713 their:0.008882928746115987 :0.28066544985039643 +and:0.18638594057326133 was:0.1293648264854201 be:0.05604144815295686 it:0.03962855170575195 is:0.03658719893886178 years:0.03182893083229539 were:0.02749023046146981 not:0.026614750649328375 he:0.024003915563144573 been:0.02229206182750808 are:0.021344562127169786 He:0.01835628957017176 to:0.016251782703210548 went:0.015735722433509788 who:0.015123230092695976 being:0.01429336888156605 I:0.01377031960033894 year:0.013680437259660538 It:0.013507536962329354 :0.276698895179349 +be:0.3104285815531156 was:0.10772927422505538 and:0.08475263731698758 is:0.06396345473422041 been:0.05957708900545172 are:0.053525151258847305 were:0.03868760077004221 not:0.03262299796445705 he:0.028166854766416612 bo:0.02348954440820126 being:0.019292902300847313 have:0.016909358670036907 had:0.015522775442905954 well:0.010899648357734989 has:0.010128870829313932 the:0.00953670148071867 also:0.009518327342965654 Is:0.0093201521803713 or:0.008150466376936661 :0.08677761101537347 +and:0.11203614284734381 made:0.029480560291083903 necessary:0.027231632327903786 provide:0.01978786821063526 him:0.018624150941585572 time:0.017844902254185023 but:0.01736032991925495 pay:0.01712283223509279 responsible:0.01655246417854943 work:0.01573375727996718 used:0.015721729148453864 that:0.015344008200088246 providing:0.015123591452644664 or:0.014918878594106077 it:0.014272018550925738 vote:0.014240496926603478 out:0.013886758983508773 demand:0.013625570335128902 ready:0.01288626098417059 :0.5772060463387679 +made:0.08671668370808788 and:0.08624197119062556 that:0.03660581780122727 or:0.035928055986488794 secured:0.02614424885509627 taken:0.024054246103037805 followed:0.02169012527371585 done:0.020231476665307214 up:0.019906745042941494 given:0.019766863967755056 ed:0.019474451769101873 occupied:0.019445323468847257 only:0.018231716137945626 owned:0.01766094756177581 east:0.017651294079516065 foreclosed:0.017639002627296774 west:0.017186822531477283 caused:0.01668399455689015 out:0.016370856268880234 :0.46136935640398574 +provisions:0.0679938503985306 copy:0.06201617447249093 date:0.05159752313646957 part:0.050661532655167846 one:0.04272232046411394 out:0.039198262926626565 people:0.03688333605300589 publication:0.031622932748407565 members:0.022148687792528047 tion:0.01953442712364951 laws:0.019086435714135187 result:0.017976916451795253 object:0.01720022560087386 portion:0.016216616046388216 that:0.01583665345861985 all:0.015799046403021585 member:0.014650050293503455 passage:0.014513299284273402 purpose:0.01444493434085836 :0.4288967746355404 +due:0.026807233356116605 land:0.01921444025663992 interest:0.01818132897255246 mortgage:0.015733405060417288 title:0.01403126009036438 line:0.01188505252554924 plaintiff:0.011406664014482653 mortgage,:0.010769851480485421 directed:0.009776126083141656 estate:0.009419939572940038 corner:0.008763458597146034 ;:0.008561604346837812 executed:0.008465502846413064 office:0.008200588655226578 and:0.007330891811650828 thereof,:0.007193811031729228 property:0.0070416609927641365 feet:0.0069394649231332445 day:0.006901538856039885 :0.7823761765263695 +on:0.2384783162953659 third:0.07059053476017489 first:0.05774452690934154 of:0.05562274169713857 On:0.05317767011721547 and:0.04453901970736835 in:0.03215373470093479 second:0.023917183375879347 last:0.023412783552385272 next:0.021319188350277782 from:0.01852499216965323 to:0.018074025599020646 fourth:0.014753602848582814 that:0.014470401597973005 or:0.012037762182022247 the:0.011798255916789542 made:0.009776136262940688 as:0.009616121473354073 with:0.00933629131204306 :0.25965671117153877 +time:0.03257506746173825 day:0.024649927540374098 men:0.020694169023437625 power:0.018621003917658873 in:0.01757199334399613 land:0.015990322442782694 dollars:0.0142305128923924 good:0.012418684935008348 life:0.011958159786493238 city:0.010451141424389555 up:0.010329786579999561 hundred:0.010166908860996908 all:0.010149585805923624 interest:0.009503071462563222 out:0.009057619321534142 great:0.008438270358423249 long:0.008347270052843794 county:0.008215820142335998 man:0.008169928316456885 :0.7374607563306514 +to:0.1360258721912599 and:0.10207688347256706 the:0.09700747817197779 of:0.07064519392217287 or:0.021432334924125437 I:0.020647269122384508 in:0.017141601450662396 not:0.016397940344252956 that:0.014849280713022436 Mr.:0.013905644562311354 will:0.012910900909622757 be:0.012820284535753368 have:0.012613486963290786 is:0.012551981224106456 for:0.012532454907102437 at:0.012099284720739057 :0.011715956308437605 by:0.010904429816807766 he:0.010856004373458036 :0.37986571736594504 +the:0.6352440176540467 this:0.04156437867454178 tho:0.033355950814079216 of:0.03179083864931951 his:0.0226986837836863 a:0.018422881312508237 said:0.01772053375688212 to:0.017097783386645887 tbe:0.01634702650196261 their:0.015027715401195664 our:0.01458670615707242 The:0.012754100431448805 in:0.009847693843302856 and:0.009515515507800972 my:0.006517533897013688 on:0.006357863813583239 old:0.005323110187675657 its:0.005319710023070278 good:0.00518135389069958 :0.07432660231346445 +it:0.24821867953307553 It:0.12491417828142069 there:0.069306522105283 he:0.059799171357782996 that:0.05448913452171614 they:0.04308045581579138 which:0.03975166646880763 and:0.028391784481365753 I:0.017785057885554047 what:0.015014723986643873 who:0.014813518986538871 she:0.012277284734011025 There:0.012075841823057449 This:0.011660321731650861 as:0.011471599182449319 this:0.010417679117785841 work:0.008583289274340197 He:0.00780328791147001 we:0.007024892215396919 :0.20212091058585846 +hundred:0.013633628820093018 ;:0.011172311961148602 him:0.009807052834026905 one:0.00914669734384353 feet:0.0090219372983598 up:0.00838318558829166 mile:0.007527126877816727 feet,:0.0071805242500254255 time:0.006879602834379732 man:0.006817451499927337 it:0.006300585667639516 it,:0.005903705234588485 out:0.005451849962934835 :0.00538718305729827 ,:0.005295204710281874 and:0.005240008239108335 here:0.004938150073064577 water:0.004837308913464981 them:0.004796443021708541 :0.8612800418119979 +of:0.21792689099952955 to:0.10253620274493017 in:0.10214973993233846 for:0.08258032802676006 by:0.08193056534843052 with:0.049502128594220256 that:0.04653855621806897 and:0.04408007026240062 from:0.02414152453140673 In:0.023012327552641116 as:0.021831140578029373 under:0.0205598085823137 on:0.01518887243153852 at:0.014568140585779182 all:0.01235097996859773 is:0.010466976791530639 upon:0.009568066304229135 which:0.00843190935972452 when:0.00768061234959837 :0.1039551588379324 +and:0.11203614284734381 made:0.029480560291083903 necessary:0.027231632327903786 provide:0.01978786821063526 him:0.018624150941585572 time:0.017844902254185023 but:0.01736032991925495 pay:0.01712283223509279 responsible:0.01655246417854943 work:0.01573375727996718 used:0.015721729148453864 that:0.015344008200088246 providing:0.015123591452644664 or:0.014918878594106077 it:0.014272018550925738 vote:0.014240496926603478 out:0.013886758983508773 demand:0.013625570335128902 ready:0.01288626098417059 :0.5772060463387679 +and:0.04755485107522338 as:0.031829792825454936 referred:0.030069611038180274 them:0.023423400485866913 him:0.02219445658672121 come:0.019037248764656095 came:0.017471355204084688 go:0.01653269294036312 up:0.016396451529598087 belonging:0.015215916484498977 went:0.014966757588389968 man:0.01494276788270666 reference:0.014232602269639226 back:0.013632343719907456 men:0.011158213477166208 said:0.010403625045128774 me:0.010145503334428709 going:0.00998015205072544 it:0.00997655078476145 :0.6498357069124985 +he:0.14026999563544465 they:0.1244248644661957 I:0.09687841345391748 we:0.06744562239286793 who:0.055223483959049545 and:0.05293292415995626 it:0.03950823650889562 which:0.03610588923228783 We:0.03293626685399054 They:0.029892792898959127 she:0.029865114763896573 He:0.027010609831892938 that:0.02425154123867231 It:0.018031373517556418 you:0.016839953478038128 You:0.014525994070077188 man:0.010938312091173961 but:0.010290921607914526 ho:0.00922889998082444 :0.16239878985838882 +of:0.17495369458448617 and:0.1256890883847219 to:0.08374118924999151 in:0.07357436170386548 all:0.03723945591607501 by:0.02583873395588416 fact:0.02559250261424454 is:0.024170160617201238 with:0.02355468498113432 on:0.022855419543157143 at:0.01966694153927642 from:0.017769583787020878 was:0.015620652274212785 for:0.015245441683982699 given:0.012810326921250687 so:0.012391412511457638 but:0.01212543335783143 All:0.010834467723875656 In:0.010585504082581517 :0.2547409445677488 +he:0.11890183737492996 and:0.10026405084196312 be:0.09365030379592669 was:0.06898599069528295 been:0.04861207673797993 He:0.04717122142542685 who:0.045904795084771854 is:0.04229962572424272 have:0.036010535050710134 are:0.03431458964696517 I:0.030011877939522646 has:0.029393864285438834 had:0.02907457884987955 were:0.0227742359752071 then:0.017319774490157643 she:0.01688814646661354 not:0.016519000440903327 they:0.01617965046735539 never:0.014351642077627383 :0.1703722026290952 +as:0.06931392982974462 according:0.052071562389565784 up:0.0511867300210483 and:0.040371568633051955 went:0.03351644485287816 back:0.032358406609281 regard:0.03073407747799069 feet:0.02852138506231652 down:0.026379903432040268 owing:0.02466642634685871 due:0.023695193974505355 go:0.022910973192184297 reference:0.020802802907016128 came:0.019883741951819873 sent:0.019874244915639484 attention:0.019565955494145405 come:0.01885185084678811 given:0.018792390567602263 it:0.017366961307524745 :0.4281354501879983 +;:0.01458927046758731 it,:0.007973265891266864 him:0.007834970369143835 one:0.007240974664279108 in:0.006989508095588829 and:0.006417396987522371 ,:0.006059091806132192 it:0.006014614548599763 up:0.005812344146302806 out:0.005395853159197619 them,:0.005290532062834904 him,:0.004938420268273817 city:0.004793760033506698 :0.004646491011450349 man:0.004641061555670736 country:0.0046164671969483135 feet:0.0044416267197611185 time,:0.004376787347733258 time:0.004358244018157902 :0.8825693196500423 +the:0.13246470678280328 of:0.07672688546848537 and:0.06603455800867254 to:0.034222324682372865 in:0.02335531874253823 a:0.022145397296312284 by:0.01920907554456461 his:0.015048888681478051 .:0.013334893852295235 was:0.012963451898155834 as:0.012827995619514374 that:0.012113853590780344 Miss:0.011817326052026466 :0.01162609833764767 Mr.:0.01138123287356678 be:0.010574439425282208 or:0.01042372809766736 at:0.010406977856112096 for:0.010327553140170458 :0.48199529404955394 +to:0.5215417091937932 will:0.11272057995957717 not:0.06799114903695859 would:0.05816773816395892 can:0.031595115272250444 may:0.02643810500519322 could:0.022137106486779155 and:0.01743843887934227 a:0.014984724691325366 shall:0.013688564647825871 cannot:0.013475436509209161 the:0.012443724513409216 should:0.011553443299432939 must:0.008338827170346121 in:0.008021720223913334 I:0.00773345393450536 they:0.0070272994511152865 might:0.006244662408710322 we:0.006154441358313906 :0.031303759794040216 +to:0.8074082610143245 will:0.039296306291999046 and:0.03727602785133442 not:0.02977088497361119 would:0.013486745020359821 can:0.007103535128029681 To:0.006953775236539424 could:0.005037408330481593 may:0.004774159939665952 of:0.0044342431038247735 should:0.0034590113304405726 lo:0.0032523738788142117 by:0.0030908612762967796 shall:0.0026923589642357045 cannot:0.0020275651264757403 which:0.0018959569730931717 must:0.0018901598328515648 I:0.0017495496161669887 we:0.001729541231260767 :0.02167127488019406 +he:0.12109843847527352 they:0.10769819183874674 I:0.10178136563476256 who:0.08526848365232192 we:0.06825781849714394 it:0.05430309363585002 that:0.05097697262497903 and:0.04986990703703879 you:0.04502109735745668 which:0.0384171831712119 It:0.02282078548163332 she:0.02180392230659251 We:0.017764883343395745 He:0.01418629073540189 They:0.012766425364814588 1:0.012693532496385362 one:0.011493029397655567 man:0.011198055758880008 but:0.008669351732660662 :0.14291117145779528 +of:0.303737666547255 to:0.12133682695814203 by:0.07350019496634372 in:0.06861390422096851 with:0.058275636924558505 that:0.04566883947226328 and:0.044893102640203776 on:0.02849954484022296 from:0.027576434805782563 at:0.025024708566241005 for:0.023040122714133568 under:0.022834717977718508 upon:0.014258017230295805 In:0.013156515560363157 as:0.011273797523250875 is:0.010027790610056667 into:0.00786623107807174 which:0.007630260503234165 over:0.0075814548372358575 :0.0842042320236583 +the:0.4277378562953591 at:0.2217099711840499 At:0.0446310797343357 tho:0.028874276132233437 of:0.027235477348364772 to:0.025708475777265757 and:0.025665238005447604 The:0.01885673010148003 on:0.01371808592960121 for:0.013552569384428394 tbe:0.009890769168799081 will:0.009039397433249918 than:0.008818903402395512 here:0.008181507701201365 said:0.0077124658714521725 week:0.0073588294855717355 that:0.0073413724182042695 year:0.006356321896822184 a:0.006024036753335233 :0.08058663597640263 +the:0.2432773730503013 said:0.15843511161011187 and:0.07358630023176277 of:0.0682965306535425 that:0.06325467652525714 a:0.05104004149312839 this:0.0486754876642331 The:0.03388000845398027 his:0.015594558589102388 This:0.011419472103658377 which:0.011058783805409336 such:0.010856281308480046 or:0.010640570689802665 tho:0.009992283731544052 any:0.00903805668817417 no:0.008063910306472464 by:0.006883661722475327 on:0.006200635246375456 good:0.0061555128851249405 :0.1526507432410634 +the:0.2187988689107259 of:0.13363232864486618 in:0.050929586323784796 by:0.035992866256968625 and:0.03436625138431058 to:0.031083377231798222 The:0.018224414699543678 on:0.017734014156714693 for:0.01663259283679208 that:0.01569184331055538 a:0.013703143546697123 :0.013609001595239385 In:0.013531283806681496 tho:0.011157842379236161 from:0.010628641780847891 which:0.009835919306806135 with:0.009316773687284329 as:0.007995047316559447 an:0.006700118332062693 :0.3294360844925252 +and:0.1348697059735844 the:0.09294195578389501 is:0.0681166849290136 an:0.061607805351258364 was:0.056187543956910675 are:0.050632737107065506 be:0.048760473078411276 that:0.03803703854022345 been:0.03413065668828682 of:0.033844266914297275 not:0.03237267033972225 so:0.029814839194277163 were:0.02857622590068066 as:0.024770860586721143 to:0.022626437770911577 now:0.0193368276800794 or:0.01746715791536723 which:0.016953964439522188 very:0.01662419744140716 :0.17132795040836485 +the:0.11919516938815296 of:0.07230453158552728 and:0.05781056740443249 a:0.043018564803886335 to:0.031305092790907506 in:0.020848713353460488 at:0.014270110001066288 .:0.012526810245749479 :0.012413283442322082 for:0.011719122709941797 by:0.010808400946589808 or:0.010404172990115616 The:0.01003576004804544 with:0.009811868184449042 tho:0.009295902015355835 was:0.008924239095331684 that:0.008672304223433876 is:0.0085591147338948 be:0.008335143826716943 :0.5187411282106204 +:0.14049500285507516 .:0.02508155870833691 it.:0.013844230154608153 them.:0.007555517304227436 to:0.006806041079436571 year.:0.006732382809032482 law.:0.006104449007996959 thereof.:0.006079812242289409 county.:0.006039942169318389 years.:0.006028473107274407 :0.005520219686436233 work.:0.00512200270031769 country.:0.004974804325883048 and:0.004961954194348359 States.:0.004749986799593863 of:0.004724384854639968 8.:0.004717822928209523 2.:0.004317852833158591 city.:0.004284010168412722 :0.7308595520714041 +sum:0.03352282876311118 number:0.028116684882597106 line:0.019995206059833036 city:0.01946514558931857 out:0.019275318828420953 day:0.01666865340772654 county:0.014872697538657208 amount:0.013254184849875051 Board:0.01252325449624941 town:0.012449555905674143 side:0.011663975251122375 part:0.011517157473718155 County:0.011460540331966697 state:0.011087331502382173 City:0.010878919191854432 purpose:0.01081028255427907 and:0.010297866493795984 way:0.009848747943663767 name:0.009522170936943183 :0.711769477998811 +there:0.4523150717509021 There:0.2903338813421345 It:0.06547980059628881 it:0.05907757562310728 which:0.01202308235975841 he:0.009431902232400775 This:0.00877735609685368 "There:0.008359454949505307 that:0.008009340729630993 and:0.007545952700445771 thero:0.006222245354520518 this:0.005801551911703653 who:0.00545151925466502 He:0.00501528562834394 what:0.00340172394456862 Thero:0.002725433375989789 That:0.002319909252105507 she:0.0021111282360712666 "It:0.001984708577774704 :0.04261307608322941 +of:0.1674593387408311 in:0.16248359346558552 with:0.11904265205145836 to:0.11382851980258094 by:0.04661628412929235 on:0.04645250806965109 In:0.035159076406637686 upon:0.03370453531527884 for:0.03325939319487625 from:0.0289940204353048 and:0.027801376757162002 that:0.020888285257901373 into:0.014801316519744558 make:0.014259615577997351 made:0.013718735280697641 give:0.01259178017398719 is:0.012164622137997877 gave:0.01204086076462197 have:0.009604745431990261 :0.07412874048640282 +of:0.25585693886219557 in:0.15272201398016458 to:0.10615246911275796 for:0.04549702356932666 that:0.041698507435204125 and:0.04079015104353155 by:0.03875034165205401 with:0.0379793182982113 on:0.03370833370597573 from:0.03283158510172317 In:0.03220697302938262 under:0.019803758031104818 at:0.019392092586124166 upon:0.018154972766339487 as:0.01807333622957634 all:0.01716376510001401 into:0.01354862056974307 which:0.011695336487701791 over:0.009996427908555072 :0.05297803453031401 +be:0.11780008116913351 was:0.10494181861506967 and:0.08955353015295288 been:0.06381091175204245 is:0.060117198585295205 are:0.037249101189997746 were:0.03689148086333705 the:0.03191643253885115 he:0.03170140532980151 had:0.025450444054517043 have:0.025016278419066576 of:0.021702932398338447 to:0.019246371740201933 a:0.019045527751850998 has:0.018898137255671178 I:0.013171060070013741 being:0.012971672736761591 so:0.012717183591094958 not:0.0121399293836347 :0.24465850240236767 +and:0.1669840475084391 all:0.08133906077060103 of:0.04047708910752074 but:0.032206598759353805 said:0.03170799318187557 that:0.024821145202185955 All:0.022559239651799866 so:0.021687345219587536 than:0.02143139905624843 as:0.020753419533385997 fact:0.01900617945496714 say:0.018538041670268672 says:0.015230765099751131 for:0.014830315275818256 thing:0.014183627420446274 know:0.012889514186121104 believe:0.012444658647756743 one:0.011819105585220428 think:0.011258738424083528 :0.4048317162445687 +;:0.021381982511931026 in:0.02068160189418102 Columbia,:0.014902207318129494 up:0.013594162370950411 day:0.009009977052929453 them,:0.007909741241357652 mortgage:0.007451693663579814 ,:0.007232060574169194 him,:0.006574700090376908 mortgage,:0.006548243284008476 here:0.006284083779936049 day,:0.00626024743295148 years,:0.006169415949849184 year,:0.006083382676408468 sale,:0.006054801606921983 it,:0.00603756968983689 time,:0.005988405526992496 feet,:0.0058115617538736595 county,:0.005702940030027313 :0.829321221551589 +State:0.0655459206176192 day:0.06123488229889719 out:0.049211570134968144 state:0.04763496978648391 act:0.04299825576671059 part:0.02903930292292038 years:0.022713007245677326 date:0.017614286833222293 power:0.01715434266176527 and:0.016338615531093042 side:0.016273945562374943 members:0.016227426948513108 session:0.01533079864485286 city:0.01505333761744905 people:0.01371805376839777 tion:0.013466640001121752 amount:0.013355531974058405 sale:0.012669718921958796 board:0.012215974595987658 :0.5012034181659284 +of:0.39376608226179266 to:0.07329557648594354 that:0.07206868511799164 and:0.06167888943230277 for:0.03839984958585781 by:0.038230713998112335 on:0.03465994821390793 with:0.031130742755254303 in:0.02912012730755567 all:0.025068775035958762 as:0.023758509922193177 but:0.020561844518892723 which:0.02021925986419755 from:0.01743079741334972 upon:0.011880192808986922 All:0.011484688844897036 when:0.00937151414056855 if:0.007268060291732506 In:0.006338692238801273 :0.07326704976170312 +the:0.40831857046232545 a:0.12259309852619776 of:0.08673920927906313 The:0.07752610474079315 and:0.045397120229789756 our:0.029085322188346995 tho:0.024643001934977395 for:0.023975629106942647 their:0.020609585246404032 by:0.01386543878246022 its:0.013158363348182591 in:0.012455755648451087 tbe:0.01070525053697917 other:0.010276620662509188 that:0.009446569643505737 A:0.008692980241294784 some:0.00846041743250959 with:0.008449932044665903 his:0.008267982988898498 :0.056333046955702945 +of:0.3208403134892697 to:0.08823748172508153 in:0.07880454142797563 by:0.0710353308237232 that:0.04702171703922343 and:0.03839387780537309 under:0.0247634556828263 with:0.023943451472486995 for:0.02297305602502188 at:0.022640397752022274 from:0.021526624313117818 In:0.018541413488194276 on:0.011519216685517081 or:0.010119813617046588 as:0.008147714171181255 ot:0.007254137376691008 ol:0.007084754872777398 :0.00635485078513694 but:0.005697977139299954 :0.16409987430803363 +the:0.39147258090666137 western:0.06881320441550945 other:0.052930128967299185 eastern:0.03601899879863259 southern:0.031944051867292336 northern:0.02803092355954203 Republican:0.027236146396255663 said:0.024439040583011207 a:0.02441977197620706 Democratic:0.022917567008561842 tho:0.019770681692793442 several:0.01838653892474678 of:0.017493799830381795 ern:0.017472825250827304 The:0.014319566527486918 his:0.014086932264208218 and:0.013102863207831581 south:0.012979520489454227 our:0.01246021971866705 :0.15070463761463002 +the:0.09804089619651123 and:0.06530180135029408 of:0.06418405323498293 be:0.03974765257897012 was:0.037185049171706515 to:0.029572899917916763 in:0.02616362838488027 for:0.024251894002260545 is:0.02394312645121289 a:0.018888265772708593 are:0.01738322911794913 their:0.01618298488429148 his:0.015891474831404573 or:0.015641446853637938 he:0.0153287135961054 were:0.01477053059225313 been:0.014710399487904544 that:0.013704025687033956 dis-:0.012904205512106333 :0.4352037223758696 +one:0.0793092951769567 part:0.03499872460097183 out:0.024431206666010955 portion:0.021371839380432446 side:0.017793495858940543 some:0.014581375577805327 that:0.014192984529866021 tion:0.013643782945564628 member:0.012600961637713619 members:0.012024818404567643 office:0.011724478994255697 any:0.010701426521782015 all:0.010650397320457663 and:0.00980224438363923 payment:0.009516112361615207 account:0.009473436319125074 virtue:0.009275065279112517 parts:0.009221863249830355 end:0.009168467686442978 :0.6645180231049095 +hundred:0.02334136986593815 up:0.005482494641173394 men:0.005366536521246011 Hundred:0.0047587970519216575 John:0.00441808156134956 William:0.004390720675819281 him:0.004016828614280843 ;:0.003997112205305733 due:0.003721199871732 in:0.0036582900032443304 time:0.003637206863828461 James:0.0035594902370151707 out:0.0034878448964120057 .:0.003467980723571515 1:0.0032804584819785204 day:0.0032444781513863933 ,:0.003058139385740603 :0.0030314555521939613 Robert:0.003005471634785646 :0.9060760430610768 +the:0.12726855910616955 and:0.0892959780159441 of:0.062229337879632314 to:0.058292991969480845 in:0.037889522208997196 was:0.035486090111862774 a:0.03277831520841599 be:0.02993909980507852 is:0.021492638467572805 been:0.016319288425974923 are:0.01622912479566914 were:0.01571120940653339 at:0.013800451447349702 by:0.013390998935139781 his:0.013046404338315144 an:0.011587498063993411 he:0.010436524486303292 not:0.009967845652912184 or:0.009888058570455908 :0.37395006310419904 +did:0.27918654323712633 do:0.19909830236591833 does:0.12832103639375628 could:0.10920358073306555 will:0.07542254692100692 would:0.06068814615863115 can:0.01722521847513601 shall:0.016845986110489864 should:0.016375309484433005 may:0.01591358644697462 need:0.01307471871512826 Do:0.012823409589835083 and:0.009723383479897152 is:0.008540680277713179 docs:0.007973345199681776 must:0.007150940224517775 had:0.004592883066449431 was:0.004175370217458932 if:0.00364488866785338 :0.009020124234926943 +:0.10059336853153564 it.:0.015527221713804737 them.:0.01255174972681564 .:0.010988961054125865 work.:0.008912728952000853 him.:0.008385767787561664 day.:0.008098123990335864 time.:0.007615736416145115 year.:0.006989259140613586 country.:0.006778610299812107 years.:0.005803197131830953 follows::0.0057528497044792406 night.:0.004991546489596282 days.:0.004498653125010614 city.:0.004248129975834048 county.:0.004178563007848508 all.:0.003942850558623364 States.:0.0038985280495107658 morning.:0.003839595499551208 :0.771404558844964 +the:0.5356228692031513 an:0.08703117243532163 no:0.05682632985432737 The:0.05311265486456313 any:0.04923959328170173 a:0.03335109498741599 tho:0.02767647867101284 this:0.01469451769002857 general:0.01087140315932157 good:0.01076031409525077 and:0.010171769993427596 tbe:0.010039141513853425 some:0.009273020597328535 An:0.008039815844202101 his:0.006852096340297988 same:0.006487795780861461 other:0.006325967331881199 This:0.0060293072502230335 real:0.005924954686158332 :0.05066970241967145 +the:0.39749834532651884 a:0.07520030034269234 and:0.05540858759821703 The:0.03273515726769502 tho:0.030061875542463562 of:0.020144331424922633 tbe:0.014929647509541684 in:0.014268129706664795 or:0.013333166761078447 .:0.013287381914101323 an:0.009000188755386574 to:0.00880680429595084 :0.007943763822197133 Mr.:0.00773879605474787 by:0.007328417831573476 as:0.005922572098978465 for:0.0047526933692942485 that:0.004736121968310169 on:0.004594595720579333 :0.2713091226890862 +they:0.17747227088539114 who:0.10251847427841466 we:0.08481483036140156 which:0.06458354250017778 and:0.0474182184006665 They:0.045336767484625534 that:0.03710130163266276 We:0.03467873888538096 you:0.03125012179460172 men:0.022698409049213945 there:0.0216201796221618 people:0.013956505903115457 them:0.00910709792927517 There:0.008910476432424144 these:0.007951312654977635 as:0.007578951358515251 it:0.006991264993726926 others:0.006857157181769567 but:0.0068527935530147644 :0.2613015850984827 +of:0.09129790931378902 the:0.07369883040827747 and:0.047842263382354346 in:0.04189055351593407 to:0.04045875475680249 a:0.03542341257202578 be:0.02020462051672066 for:0.01979292654746225 was:0.01760256398103379 at:0.017380150555488715 is:0.014984483003968216 with:0.014047653760730413 by:0.01374644383819499 :0.012670486581795598 In:0.01200961464556976 or:0.011563835749786333 from:0.011391516893522809 are:0.011273104484969465 that:0.010755276030689069 :0.4809655994608848 +the:0.25308720910615373 of:0.20453782068000295 to:0.09147673996676423 and:0.05429430770092873 The:0.04802024962829633 a:0.04022285570669445 with:0.031569866517107754 by:0.029018001120146183 his:0.023252583492399708 at:0.018460991742362 tho:0.01811240004348593 in:0.01780357215690847 for:0.013762537326308489 that:0.01240119607065072 her:0.01147046835411577 their:0.010972222968153108 this:0.00968800190279137 tbe:0.008770660957351984 our:0.007795281244639 :0.09428303331473913 +it:0.1496983854216909 he:0.10964337238428326 It:0.10638682511248473 I:0.050969923320639536 He:0.04860408290558634 which:0.04656491803935457 and:0.039028603386181866 who:0.0331862277940019 there:0.03053864313057572 she:0.02473831015765317 that:0.020673460236108037 There:0.013695532075392687 She:0.013377251164555395 lie:0.010305604736014575 bill:0.010179505281152806 man:0.009520310547670104 ho:0.009465156303370794 as:0.008752836029768285 This:0.006926077595687868 :0.25674497437782745 +be:0.07773307223131991 was:0.07551733820276235 of:0.06256494425587983 and:0.04847258857661802 been:0.048426296121563045 the:0.04462666746552398 were:0.043435218293580956 are:0.04200789983861444 is:0.04092441291966428 to:0.026285003195037637 a:0.01838558689723113 in:0.01673365259979827 being:0.015937642723240043 for:0.015113231474743201 he:0.01358570313694541 not:0.013391917475024297 had:0.012819431125842691 have:0.010909128921513564 has:0.010825348590053343 :0.36130491595504366 +be:0.2831340717541176 was:0.16242883990816162 been:0.10192608410201216 and:0.05737096403660512 were:0.04942953256474293 he:0.04370111668909682 is:0.038800392268501474 are:0.029328944067210334 being:0.026461858389720094 have:0.02624584814043252 they:0.018558393076510728 had:0.0165494347695649 bo:0.01644922617023831 not:0.01303772864819517 the:0.013000545115783451 who:0.010319882630946225 I:0.009615446022908978 has:0.009448018750600145 fully:0.008847273361078071 :0.06434639953357332 +the:0.5516106762715894 a:0.033894283125797536 tho:0.033856419800723556 The:0.02554972166050483 and:0.023276757394977008 many:0.022951710026075104 other:0.021973815784761035 one:0.01906969187983982 three:0.018852053349879636 several:0.018011860325503178 two:0.014821967956602546 great:0.014182715117371427 different:0.014139721174314984 tbe:0.013950093602400685 first:0.012964421402635049 of:0.011303483256400279 various:0.011001749147612554 four:0.01078957881019822 all:0.008974425780407252 :0.11782485413240583 +and:0.08503425215113287 together:0.05335287900593926 covered:0.03253077787715905 him:0.028699283380466227 up:0.02694908563101517 it:0.020075958598700875 met:0.019295061035032795 them:0.018700319853085637 but:0.01578533889291739 thence:0.01248413508838869 filled:0.012418217423982135 out:0.012348631427551895 away:0.012156361159124838 do:0.012018718033405752 down:0.011784916836511368 man:0.011218165866290394 along:0.010245892575704265 connected:0.010128653854803403 ed:0.009471429225277377 :0.5843019220835106 +when:0.13657520162136055 that:0.13210844613453251 and:0.09816490073104255 which:0.06451071845316668 as:0.05235140761967473 to:0.04322819546547486 said:0.030765972731256454 where:0.0291170087186666 but:0.026475415472286462 When:0.022192200798963134 if:0.021094048015285256 Then:0.020259737098473545 before:0.019485246443207056 until:0.018344075565388588 will:0.016681691080480995 I:0.015237775095569093 what:0.014805092249668054 then:0.013865215626336233 so:0.01308242469670606 :0.21065522638246056 +the:0.6593726172497452 a:0.04496892848103632 The:0.03362665472420074 tho:0.032583973288360456 and:0.01677257684008949 of:0.013685761514081667 any:0.012910784480314071 this:0.012364041808153614 tbe:0.011484284438183855 other:0.01035141395987979 every:0.010051499021586481 first:0.0073951452190193275 by:0.006564657130230117 said:0.005649812156409872 an:0.005408167160123623 no:0.0053460856054878825 in:0.004594881813098947 that:0.003843523123748882 or:0.0036831812475896265 :0.09834201073866009 +the:0.34929185443108324 and:0.10048009427435807 of:0.03719483104061533 The:0.03403672304321086 to:0.03011423426383714 that:0.028943552720643192 as:0.02354235200482511 tho:0.019979223858730442 which:0.01800771694565951 it:0.016621107289294015 for:0.014149389008198447 was:0.01412973532622822 from:0.013794781718845139 is:0.013489394791835618 by:0.012158028684596861 until:0.012099985998439497 place:0.010719001050797677 this:0.010314555611249469 in:0.010006514448321784 :0.22992692348923036 +and:0.08585044117952384 is:0.0416357581698736 say:0.02860696269211471 of:0.027634468492174623 on:0.023743985439599637 said:0.02228809121664711 know:0.021659264914879676 was:0.019673852465799987 for:0.019530359152337286 but:0.01867805159239319 believe:0.017699960045502467 see:0.017013543121820726 all:0.015397493678505928 so:0.015206387208475862 find:0.014554644635098781 fact:0.013907551970019225 it:0.013880179404041163 known:0.013876561045365953 by:0.012837778673195998 :0.5553246649026302 +the:0.11845652032644469 of:0.10526267585591814 to:0.089032331373567 and:0.06018534245612783 be:0.038374681215887614 in:0.0356480814229428 not:0.033848170913779604 a:0.02889907271573533 or:0.02650570318622879 is:0.025016601569610074 was:0.0186824013784566 no:0.01839532323734283 I:0.014770020904735028 that:0.014346997897801179 as:0.01402682905937857 been:0.014025321349177661 for:0.012370476846607043 Mr.:0.011118617983588777 other:0.010449737025302431 :0.30958509328136796 +it:0.26845760012218584 It:0.1895101665871037 which:0.06720901783056475 there:0.053095299556946675 that:0.05215915135425306 he:0.03206982157204906 and:0.028381861658208968 There:0.02225918360051189 what:0.02006193019906286 This:0.019848673740594916 who:0.015146692857999331 He:0.012402162036882096 this:0.009531132505579085 as:0.008354911644278503 she:0.00752882020681246 but:0.0072629714752135 than:0.005921144980368525 country:0.005915043520229219 That:0.004707950216193889 :0.1691764643349617 +him:0.012721915404675687 up:0.010564908750801787 him,:0.01003640435249758 man:0.009345264793686376 Mr.:0.007494213662335944 it:0.007254513639633287 it,:0.007251768361298928 here:0.006845153773626889 day:0.00613762397255673 men:0.006022367444121293 home:0.00559501717798333 them:0.005264103708807954 ;:0.005092317506475292 out:0.00495723913786295 house:0.004925359490565174 :0.004820063491559977 years:0.0045594789623660415 back:0.004489349486151914 man,:0.004443809821060312 :0.8711791270619326 +the:0.16807735899698817 of:0.10541662057906837 and:0.05138367848570702 a:0.04141865232648221 to:0.0385989743764065 in:0.026264864977736738 was:0.019530675665220657 his:0.018900421021236905 be:0.017373825006196972 their:0.015767721170721456 for:0.01557246589796783 with:0.014071419046630446 is:0.012922913111931644 at:0.012690452250034052 are:0.010702713108721902 .:0.010158075558988393 Mr.:0.009672788574483367 tho:0.009612591781990074 were:0.009549306361446321 :0.391314481702041 +do:0.4011094716307619 did:0.08287373523064538 if:0.07823312234441201 If:0.06862885224022172 and:0.03971132656865395 or:0.03221349716201873 that:0.03220500139244653 is:0.0302352467063732 doing:0.021000689985559196 not:0.016294220785342668 think:0.012146471487286238 And:0.01198719631660551 done:0.011848306891138456 you:0.01137812859715114 as:0.010811094941001107 does:0.010652636276840818 was:0.010400594685598953 for:0.010048855981871259 it:0.009956166469302632 :0.09726538430676862 +-:0.05985765621059445 ai:0.030256790640003656 the:0.02147716894964719 a:0.019390210650734964 I:0.015586091529793742 in:0.015577731382515421 to:0.013552827445474184 was:0.012143191834936914 be:0.01211635929677131 e-:0.011928621478158348 at:0.010281074496528868 :0.009327500185939188 and:0.009143068926561932 of:0.009030984169757145 .:0.006442846506782091 i:0.0062477576115541195 is:0.006023412634935295 sa:0.0059766235548691414 t:0.0058409488416473285 :0.7187991336527947 +the:0.18872290321856772 and:0.07990884171328741 of:0.07134501066066128 The:0.043246894817858254 these:0.022760575981405146 that:0.02263940423567282 in:0.01853667557064991 to:0.01558712617289525 a:0.014599616906527581 his:0.014552935584560694 These:0.013550115619968908 which:0.0131780081149281 their:0.01277887611983455 tho:0.011643762153399977 :0.011409164010629988 as:0.011296526840701347 con-:0.011221217959193217 -:0.010832723607073007 for:0.010425522418632843 :0.40076409829355203 +and:0.10853425492764285 of:0.08801058420005481 to:0.0735171596064402 the:0.06876809204787412 on:0.02673582249935408 in:0.02673026856072186 :0.02370899600903901 that:0.022464497412133532 from:0.019285968362235437 at:0.016716254465925326 for:0.015216316461005732 by:0.013793089370241396 was:0.013744420321882762 or:0.013076054604071569 Mrs.:0.012475042181832244 as:0.012296041515337839 be:0.011549162076508239 .:0.010852652091314773 is:0.01072215407060232 :0.41080316921578186 +the:0.4862804874842975 and:0.05187933397466672 of:0.0503338560205562 a:0.04730136646359613 tho:0.0326210182384986 The:0.030102589103571598 said:0.022977016475374316 in:0.020662405663345457 or:0.017251558097664578 by:0.01636691210750675 his:0.016322286566499648 tbe:0.01486204882175613 with:0.014496958222482955 to:0.014294316031161802 our:0.013754825063397404 their:0.00969119440927542 for:0.009558758620760827 on:0.008984331265766319 from:0.008178396634874819 :0.11308034073494684 +the:0.1531211852706212 of:0.1052126731310751 and:0.05802025114424246 in:0.04709102186605289 to:0.0432745780335582 a:0.03331039176165662 for:0.020813438520656313 :0.019510552455255833 at:0.017154775855641638 from:0.015388499925411083 that:0.015014865655295593 on:0.013299679820013373 In:0.013274997945610358 by:0.013245200191785626 with:0.012219872469054515 or:0.012183018635490239 The:0.01146497830998441 tho:0.009843052840179374 their:0.009692044090941833 :0.37586492207747335 +of:0.09129790931378902 the:0.07369883040827747 and:0.047842263382354346 in:0.04189055351593407 to:0.04045875475680249 a:0.03542341257202578 be:0.02020462051672066 for:0.01979292654746225 was:0.01760256398103379 at:0.017380150555488715 is:0.014984483003968216 with:0.014047653760730413 by:0.01374644383819499 :0.012670486581795598 In:0.01200961464556976 or:0.011563835749786333 from:0.011391516893522809 are:0.011273104484969465 that:0.010755276030689069 :0.4809655994608848 +of:0.06600036731833256 and:0.058428218100777446 man:0.057645134525081645 in:0.05069524702349576 those:0.0472020972856556 for:0.039315559053752065 to:0.037155530603194424 with:0.029318485427840414 men:0.025386213743354678 all:0.02412592563416574 people:0.021652694212015336 person:0.018227133912653445 by:0.0162772103980397 that:0.015595029294409068 or:0.013509332727722853 persons:0.013418489698057213 he:0.012766300016054746 In:0.012536624220904142 woman:0.012147399139139306 :0.42759700766535386 +and:0.13494966609550382 of:0.07316641737364253 to:0.07075541455588646 the:0.058493680665523205 in:0.04957317167084668 or:0.034218196852765226 that:0.032957151083144585 for:0.023740081132267728 on:0.02372525113826427 in-:0.022059642840300344 which:0.021050432068915235 :0.019992650391152826 by:0.017069113882183004 In:0.0167310746783188 with:0.014170506894792975 from:0.013586836184279336 at:0.01266636453547691 In-:0.009826052731618101 as:0.009471218486562726 :0.3407970767385552 +the:0.16807735899698817 of:0.10541662057906837 and:0.05138367848570702 a:0.04141865232648221 to:0.0385989743764065 in:0.026264864977736738 was:0.019530675665220657 his:0.018900421021236905 be:0.017373825006196972 their:0.015767721170721456 for:0.01557246589796783 with:0.014071419046630446 is:0.012922913111931644 at:0.012690452250034052 are:0.010702713108721902 .:0.010158075558988393 Mr.:0.009672788574483367 tho:0.009612591781990074 were:0.009549306361446321 :0.391314481702041 +of:0.10557148486905589 the:0.09265629246533709 in:0.05084216374537223 and:0.04530445207408745 to:0.03582357388575095 on:0.02416199979243307 for:0.02027619386250074 a:0.017472038435098727 :0.01743489159732982 that:0.015380305218201818 as:0.014728636210051767 be:0.014549288414472011 by:0.013904924424631395 In:0.011582479377421526 or:0.010225816126891357 from:0.00983752561549547 was:0.00906887035764287 is:0.008663526806789 .:0.008191197597482738 :0.4733243391239541 +and:0.08547295120672684 committee:0.03541627136860188 feet:0.032557468718973595 Committee:0.02488104738911688 due:0.023558099106973703 going:0.019703904550669993 was:0.019666226858842232 went:0.019002559620553743 that:0.01573294442899307 interest:0.01561145766413636 held:0.015449559803418122 carried:0.015186776506076012 out:0.015106449410311343 bounded:0.014829592936235708 lot:0.014763736279829862 go:0.013957717094917119 up:0.013815875067483543 fronting:0.012983910779098407 mortgages,:0.012846852208723931 :0.5784565990003177 +or:0.12487312460105245 no:0.11920823776956042 much:0.11281860233148099 the:0.0737701929541065 and:0.07301325496503387 of:0.05069830250615385 far:0.04449069479992091 any:0.04128850004868135 for:0.03824521259309346 is:0.03723616865083961 with:0.033477846756429896 are:0.02829042919343496 a:0.027744028764003503 still:0.023244686135858093 be:0.018757778359365374 nothing:0.018680572233011505 not:0.017858827123600207 deal:0.015264715974821673 that:0.015166355545490472 :0.08487246869406088 +few:0.19747741396925844 two:0.14292128295933632 three:0.10146545787176112 six:0.07177912583885236 several:0.0529112921428237 four:0.040751903239781416 eight:0.03698927076581565 five:0.03320918348738825 one:0.030794831223134235 Two:0.028823714643559435 many:0.0237234062362888 Three:0.0188318245422474 some:0.017947398050498282 hundred:0.0173468898384184 other:0.014702821715590203 twenty:0.01453482956614192 ten:0.013702159415649857 forty:0.012406253649378732 seven:0.011782497021903642 :0.11689844382217185 +is:0.1337968135624296 of:0.08813510382936483 such:0.08535805714547894 as:0.08192760722366703 in:0.06738068520650069 with:0.06238419862706556 was:0.05279408813232523 be:0.05210285486747311 to:0.05176014916734088 and:0.03902618342367818 by:0.03373666529673819 for:0.031033129586720228 make:0.02911583582549031 that:0.0246895274612775 made:0.019892378415723284 Is:0.019116163203453603 not:0.016752306515004773 have:0.014483380770460278 been:0.014465118773262543 :0.08104975296654525 +of:0.16874757177059613 the:0.12207028501767338 a:0.08598828565920297 and:0.06690775407890369 to:0.057632007691804474 is:0.04639190898410843 with:0.04498051937344553 by:0.03845704483208119 for:0.030544868838489208 or:0.029718803218911165 be:0.024950843202633556 was:0.024308751164609767 all:0.02374136613049549 that:0.021433084263963165 very:0.021327707584106712 as:0.020348592196792383 are:0.018776230070264178 most:0.01852784683366178 so:0.015103140476465103 :0.11904338861179167 +his:0.2730601685481928 her:0.1379675643442722 my:0.09779350853503396 the:0.09454652335402129 their:0.06475950677291435 a:0.04313358058237692 your:0.035287567628441596 and:0.022141335264124054 our:0.019512048981594234 of:0.01868426507791251 bis:0.015881715258872345 His:0.012749751578025513 its:0.009415740241069684 to:0.007948290415581141 The:0.007391750662376456 tho:0.005386660784581116 My:0.005208471729108441 Her:0.005128993646620289 loving:0.004700433316333493 :0.11830212327854756 +and:0.16074775848544887 or:0.047362762275542696 that:0.0423222515318841 is:0.030254910648421392 but:0.024853313613424525 was:0.020300750874393248 on:0.01934273454285339 it:0.01922812060879537 be:0.018311725927015902 only:0.016774208041122084 almost:0.016447754725516624 along:0.016367162578208232 made:0.015945282182697376 up:0.015585045476045148 of:0.01509258715271734 not:0.014605869525912184 street:0.01363660859705873 day:0.012655763877005718 one:0.011842740931927418 :0.46732264840400967 +of:0.24430819396044118 and:0.0875776667970719 to:0.0789542327003839 for:0.0775317111794192 in:0.07325274077974492 that:0.052987516463608476 with:0.04900750683712141 by:0.043509437749104304 from:0.03615272333703062 at:0.029859311695909833 all:0.028498578203045112 on:0.023699894961114763 In:0.015569625689340597 as:0.015305734756798292 upon:0.014607014793761754 is:0.009782675077906429 after:0.009452323837861775 which:0.009390274635632107 but:0.00833284273357199 :0.0912199938111314 +and:0.0997283017455799 to:0.05133704588495462 of:0.048143104920455926 the:0.04370333931468774 that:0.027844604331970432 in:0.024265091084634274 which:0.020843679345448833 not:0.020500156364238596 con-:0.01769522563237384 for:0.01716471684191154 or:0.01452761190752144 was:0.013999447550293849 will:0.012912184191184003 re-:0.012402521250531845 be:0.012260260544796798 I:0.011905523496017482 by:0.01190493531665471 are:0.01184088175562729 :0.010844066851624904 :0.5151773016694919 +the:0.21235768752403653 of:0.10581730618324314 and:0.08006082714723711 to:0.04340367181238734 in:0.03778767010485611 or:0.022278201531801267 a:0.02201665959611606 for:0.017632045663685512 tho:0.01674864629182766 be:0.01618997610209398 The:0.013765348080024017 their:0.013273810581042983 by:0.01276131304338085 that:0.01263294327681353 In:0.010816205775090492 all:0.010497580541109741 his:0.010392247701983085 Mr.:0.010091251323161106 with:0.010041271757618686 :0.3204353359624908 +to:0.608381296380165 and:0.08005680092406527 not:0.04292647616923213 I:0.03990618088304679 would:0.03385357615105018 will:0.029227342163605428 should:0.022908915656021597 who:0.017492434482236283 you:0.010688681737832186 can:0.010635178066547967 may:0.010046039276003406 shall:0.009829152020862925 must:0.008852339029866317 we:0.008301442902969507 could:0.006320061713400457 they:0.006076921842624214 never:0.0052187423760343635 We:0.004985551833946683 cannot:0.004888378741909468 :0.038404487648579747 +the:0.4071374189315913 and:0.06449181461132415 of:0.02892866618288876 in:0.028670005984162618 The:0.02603617389223924 tho:0.024993820467459137 a:0.023579040051412606 to:0.01755553213771617 on:0.014626070241060114 by:0.013447843485786471 or:0.012794166593089693 tbe:0.012024509152999897 :0.010353482361299817 that:0.009291482237329618 In:0.007938246807075932 from:0.007526799010378873 other:0.007469196869028889 all:0.006409533041696086 for:0.00626887758057738 :0.26945732036088327 +the:0.11919516938815296 of:0.07230453158552728 and:0.05781056740443249 a:0.043018564803886335 to:0.031305092790907506 in:0.020848713353460488 at:0.014270110001066288 .:0.012526810245749479 :0.012413283442322082 for:0.011719122709941797 by:0.010808400946589808 or:0.010404172990115616 The:0.01003576004804544 with:0.009811868184449042 tho:0.009295902015355835 was:0.008924239095331684 that:0.008672304223433876 is:0.0085591147338948 be:0.008335143826716943 :0.5187411282106204 +of:0.13084814232797154 in:0.0740836656586379 as:0.0625527229231004 with:0.059577596335708534 to:0.058433603729754965 is:0.05551580107464621 and:0.04946529489577619 was:0.04264000753602388 for:0.04009673021586375 by:0.037684080471064085 be:0.023941707008899252 on:0.02316059851167503 at:0.022644769441950232 such:0.019950936521181326 that:0.017856095877642635 like:0.017386655618315594 In:0.016902219705578994 from:0.016046571451088905 not:0.01205910100844263 :0.21815369968667797 +the:0.7696384067032929 tho:0.037080554223535366 The:0.03400705216655755 their:0.018588376348279874 a:0.0159135332755322 tbe:0.013239291569460606 and:0.012276871521548298 great:0.008831258687379355 his:0.008008225000823446 our:0.007588466573103575 other:0.0070623823658263 its:0.00607713226230138 of:0.005882681581736618 any:0.005815188269920617 large:0.0039646635196320555 no:0.003580195274321355 your:0.003291214183989065 certain:0.0030609981740238584 my:0.002920487616008058 :0.03217302068272761 +with-:0.14459072438448564 and:0.053645178664609744 with¬:0.046300147656050436 sent:0.03238641415446141 it:0.029455646908539017 went:0.02892733787063134 go:0.022539592794057664 the:0.021669970212618933 came:0.02076358450029891 come:0.020177306698333466 brought:0.01982389153880136 them:0.019166232828546664 with­:0.01849652744263595 made:0.018045740571586106 was:0.017874614796875125 pointed:0.017869110042303946 taken:0.017846608620989614 get:0.01721876375797304 find:0.01653795640233929 :0.41566465015386234 +to:0.12022893700269083 and:0.09020394424291768 the:0.08587503820055309 of:0.06450042443224316 in:0.0310058468700829 a:0.017742048521183405 :0.015548046036689871 not:0.01491307651316237 that:0.014112408707955496 for:0.013734482372212283 I:0.013065769926808477 will:0.012848502316304782 at:0.012837991177321897 In:0.012628718855091186 by:0.012491091048660757 be:0.011425930130217754 is:0.0113962101007567 he:0.011342727513475473 or:0.01112522537451577 :0.4219735806571561 +no:0.20876153276470677 the:0.1534584288372239 by:0.12397370494018431 good:0.058586149437408266 of:0.05375819038934194 a:0.0527143679626857 any:0.043960318077852986 and:0.03760122789194587 The:0.03240007344867146 some:0.027243207503499716 to:0.019982384338347918 much:0.01925151142627461 this:0.0177984134103294 that:0.016798649869015306 only:0.015683029081678585 every:0.015287471093996603 or:0.014462833064264024 best:0.013366408185440182 their:0.012840547069164232 :0.06107155120796819 +the:0.3262660889033535 and:0.09628478895593179 is:0.05524046959726876 was:0.04186537793161279 are:0.04182186822398882 The:0.039545836133434244 to:0.03155283970924415 have:0.030546800022002926 be:0.03034572142772301 not:0.029444357054121614 a:0.024812242793811102 an:0.024598884010756727 were:0.023383401043536502 of:0.02035239955049251 had:0.019481260340479475 tho:0.01802259553933178 for:0.016263113366086757 his:0.01532326754685618 by:0.014927040131055992 :0.09892164771891142 +he:0.12438912187854437 it:0.11681926900636845 It:0.09778043853805185 He:0.056578948753562716 which:0.055626791794888476 I:0.052959157667266304 and:0.04535984437552129 she:0.03742760968567059 there:0.03553973854760365 who:0.028747969537233593 that:0.02577881757262126 This:0.017767199214267455 There:0.017043569078153332 She:0.01683679699247181 this:0.012069638025993347 what:0.011430066362682454 lie:0.01016258716561524 ho:0.01015170539694599 1:0.007152865960899088 :0.2193778644456387 +the:0.45912236376589444 of:0.1911298586065212 on:0.10879501076384844 and:0.03358128189265184 The:0.027505299140744968 tho:0.021283810766014512 in:0.018026411438345873 this:0.008812285744177036 with:0.008074829926688912 by:0.008000220246770329 tbe:0.007805407587813227 from:0.007744137268459283 their:0.00765940214971632 to:0.007471455465275181 his:0.006667219830662412 for:0.006586208249232514 its:0.005635395300223943 a:0.005380240467922192 our:0.0037250742306178613 :0.05599408715841951 +foreclosed:0.0826326115191591 accompanied:0.05930666942049243 made:0.05336585618201428 and:0.05113808815574321 followed:0.0477509052190524 surrounded:0.027001067213274173 up:0.0223956915218854 caused:0.01986528146981332 secured:0.01963201700061169 was:0.019527138795776604 ed:0.0163892391762384 it:0.014428341647705614 occupied:0.014047766264405974 him:0.014002524716027894 surmounted:0.013411064770142235 given:0.012603829803430331 done:0.01236267211154264 covered:0.012285928470556887 that:0.012257320636555267 :0.47459598590557217 +the:0.1530253034560518 of:0.12589365063551095 in:0.08768771957959226 and:0.04109745130311221 to:0.039628032694468684 a:0.03442848834511863 that:0.02264019319969541 for:0.02221776631965708 as:0.018431264101256433 In:0.016938914960952182 at:0.01368401985938603 by:0.011994493529384732 from:0.010229850711165415 with:0.00955451590308824 or:0.009207334818777297 on:0.008786110817853866 their:0.008460474599547737 tho:0.008305434895819126 :0.00822929272766571 :0.34855968754189626 +of:0.12929012558464045 the:0.11469552103986902 or:0.07110227817326042 such:0.06653495607443714 for:0.060861242628977255 any:0.05264306296389013 some:0.04100775719590359 all:0.03372635623244477 these:0.03233318231016431 two:0.030113888969161583 no:0.02943700481620661 in:0.029200788402950255 and:0.026840042548623936 few:0.023852700183909212 hundred:0.023152598144603093 other:0.02174179451025152 several:0.020003574036164748 six:0.018378331868174086 their:0.01705798989141456 :0.1570268044249533 +to:0.44740479460363297 and:0.09756421797291041 will:0.06822263499775445 shall:0.05830994415772817 not:0.034911441616599634 the:0.03281271701260963 can:0.03224595588397753 should:0.027440039243740368 may:0.02700269784722698 must:0.024642560902538985 have:0.022128465505742885 would:0.01970693296925211 of:0.01460512839578092 no:0.013036336609680427 an:0.012967609152996233 has:0.009325643020819048 could:0.009274890593042706 or:0.008287474873507861 had:0.008184289674956878 :0.030926224965501795 +was:0.1618586465394582 been:0.13709762639492387 be:0.0835104753949645 is:0.07053026759048274 are:0.06558389618520656 were:0.06397736996618036 and:0.040962583228995514 busily:0.03203299955952938 those:0.02607050932774685 being:0.024746646565916176 he:0.021068531808538918 actively:0.016271213611088516 have:0.015131447945524965 as:0.01455257937434992 persons:0.014116126650383228 not:0.013823555462683018 had:0.013626322025879791 Is:0.012935862931676548 men:0.01273721866680228 :0.1583661207696687 +of:0.09129790931378902 the:0.07369883040827747 and:0.047842263382354346 in:0.04189055351593407 to:0.04045875475680249 a:0.03542341257202578 be:0.02020462051672066 for:0.01979292654746225 was:0.01760256398103379 at:0.017380150555488715 is:0.014984483003968216 with:0.014047653760730413 by:0.01374644383819499 :0.012670486581795598 In:0.01200961464556976 or:0.011563835749786333 from:0.011391516893522809 are:0.011273104484969465 that:0.010755276030689069 :0.4809655994608848 +and:0.08995317707915026 to:0.06844710404109794 of:0.04605142056172993 the:0.04074574508561307 which:0.02479116931334353 that:0.023764822140213245 re-:0.020841117231308055 in:0.020803825395358622 for:0.020278423301550053 :0.018417753428486977 not:0.016860793136637672 con-:0.016444405871234195 is:0.014386481772210856 or:0.014080680914153714 be-:0.01352268143271276 I:0.01317002660943805 was:0.011429878269381662 dis-:0.011196807025842847 he:0.01113106290024311 :0.5026826244902934 +No.:0.09948460493668519 about:0.09689202673221607 at:0.07219407815251659 east:0.05241655916163231 of:0.049127431840554375 north:0.04624561459754065 west:0.03959006231901792 No:0.035766149821716456 deg.:0.03348082225444343 south:0.03268557869864747 lots:0.029722969414963607 and:0.025091077093240564 lot:0.021868155565458347 to:0.02002958341306091 containing:0.0177110911225933 until:0.01407487920349989 range:0.012172309348761243 township:0.012052063941858074 @:0.011748041132166393 :0.2766469012494272 +the:0.7560348548429721 The:0.07799034035893317 tho:0.029349763265433575 at:0.0219960347303634 his:0.016849545584063885 tbe:0.012110089079021271 its:0.008739052887470409 their:0.007702032212178169 for:0.007387054071652056 a:0.006297593084488217 and:0.0059274209717522066 our:0.005708717355465878 of:0.004742194028619003 At:0.004424622554292248 my:0.0037618024562649593 her:0.0035015331440101253 Tho:0.0030078606664532374 this:0.0026121060601471 an:0.002436748389046097 :0.018420634257372913 +the:0.3300183678409695 a:0.15772757940084947 of:0.056166405308918775 The:0.03878684181436404 this:0.036808750520882526 our:0.03530810855645681 and:0.0344051841408212 his:0.03426165792918995 their:0.02829510234739696 tho:0.02589434918749673 no:0.02500118848052888 her:0.021396011678848973 in:0.020229694938859965 A:0.016472137926661395 its:0.016190312894556896 or:0.015902292662402017 your:0.015284202201304066 my:0.013140964181898968 tbe:0.013054627372509732 :0.06465622061508315 +and:0.08716285544841777 the:0.08359915982612835 of:0.04676747339913376 to:0.04168380653229524 be:0.03834173597650619 in:0.035244481652967764 or:0.027419258732084884 for:0.025296797913982705 he:0.022512155176118136 is:0.01820115841032366 that:0.0175504359614496 I:0.016849250717470884 re-:0.01653721398774126 was:0.014230020243559838 :0.014114939006723753 a:0.013451566831076832 said:0.013224814397073861 dis-:0.011822052949154359 as:0.011444139465815371 :0.4435466833719758 +of:0.12579350039820045 and:0.0774587268821272 the:0.05131523638436169 to:0.05099038357245955 a:0.0465280455652336 was:0.03024037790316065 in:0.02629856512624649 be:0.023467202649373853 for:0.02256880251890986 is:0.017353596091202968 more:0.01692360081901457 his:0.016364864262695174 that:0.0154226163455903 been:0.014274904899330053 are:0.013034702923048178 not:0.012779794798634572 were:0.012131487275539756 with:0.011677679499198611 he:0.011265552600258012 :0.40311035948541446 +the:0.3462678385348985 in:0.07544016419557331 of:0.05936175660823888 to:0.038056369637026397 at:0.03389504057972241 said:0.02771039823839715 tho:0.023795110292299325 and:0.022071208436078266 for:0.01970822361526911 In:0.017625608278820034 The:0.015789533582820457 on:0.015232381762817042 this:0.014936192924787197 a:0.012152303928678321 or:0.011215256640504694 from:0.010522297568570612 an:0.009998996855619544 tbe:0.009969824486953565 by:0.009402673733405342 :0.22584882009951984 +time:0.08044838015821534 and:0.059808739978046456 recorded:0.05566450017969896 be:0.049545237686378786 was:0.045953678409127854 is:0.03578101328718378 that:0.02771273971103097 as:0.0266556770427276 them:0.02388442644934662 are:0.023323324753239272 now:0.022052787116679743 length:0.021149781905431608 spent:0.020680559852285868 made:0.020479301908438736 held:0.019888027365654867 it:0.01949440367077993 been:0.017263117849348024 difference:0.01683836888208076 day:0.016328201181571248 :0.39604773261273357 +and:0.17358860669863377 fact:0.07058485160926478 is:0.06789426443233867 say:0.04748183193655234 of:0.04244626350847121 know:0.039377948485312717 believe:0.037557290423778825 but:0.03616117090186772 so:0.03205918486847798 show:0.029815962595886064 was:0.02514098993713664 for:0.024454189928311075 all:0.02349255440904952 think:0.023236437386149843 find:0.022209465197471193 found:0.022147635711420983 see:0.017687141138751153 to:0.01687939324096432 said:0.015904519298643133 :0.23088029829151804 +of:0.14061422670442228 by:0.07397890083971677 to:0.0645957650592629 that:0.06278196009235353 and:0.06171779412995163 with:0.024784207916322815 :0.021296554997849743 which:0.018150544625629747 as:0.015593235006414066 from:0.013045232743111014 Rev.:0.012950377448433107 for:0.01208267405942049 in:0.011345035541060299 but:0.010763995429851557 when:0.010542089526816392 if:0.007472747609427384 said:0.007100416424489038 or:0.00707214494317395 at:0.006990048717905581 :0.41612204818438775 +the:0.3240452031477951 a:0.2558218346526001 of:0.07048251424866894 to:0.06801058798052949 our:0.025974781630417533 in:0.024290750967128263 The:0.018040665839045084 and:0.017110296813551414 tho:0.01599920962666159 by:0.015993046057321988 his:0.013645296955958989 their:0.011115622822915956 any:0.009568541200545578 some:0.0077350637398218135 A:0.007634095616966123 on:0.007295507657006611 new:0.006995061565280763 tbe:0.006387869694583223 every:0.006371290909966315 :0.08648275887323512 +as:0.08876272343743245 up:0.06264118244341196 and:0.03545033945487625 it:0.034053889909738635 back:0.032896496635283136 came:0.032022960938141526 down:0.028942949666613735 come:0.027160447980487702 him:0.02582682725506287 regard:0.024369724237557688 is:0.021981899887153846 brought:0.021261431580079992 owing:0.020815911839653388 according:0.020597236123290723 them:0.019737590477211537 go:0.01952993178222751 went:0.018513720982077497 attention:0.01646348323090625 confined:0.015868365807484443 :0.43210288633130883 +the:0.35956045098034906 a:0.23467972094801587 this:0.08561107728309905 tho:0.028778931834248008 The:0.024344759394745227 to:0.02283318945553468 and:0.021387199585366654 every:0.020525548565918105 of:0.017755058465204764 so:0.017621620432764887 any:0.015821654512996466 that:0.011944497836143512 one:0.011500766926868333 last:0.011410113281401787 tbe:0.010330468499957099 some:0.009472116424633303 very:0.008934496968803001 same:0.008819424004747892 all:0.008677495903444268 :0.0689914086957581 +him:0.02346330166566789 ;:0.013993117901978207 man:0.012063973158208985 him,:0.009909121800163739 up:0.009718454247617242 and:0.009483607636828621 himself:0.008708172500287844 in:0.008383704791678692 man,:0.0074619430074121034 it:0.006727629907354967 he:0.006463016531639386 .:0.00621915130927209 time:0.0060721975060543465 one:0.005851681181497556 to:0.00584951612224459 out:0.0057405518294329876 it,:0.0055790022104404615 on:0.005073440824683246 hundred:0.004882599142558921 :0.8373558167249782 +of:0.28767355066866834 to:0.08775711267569858 in:0.08678131196995101 and:0.05160598694501188 on:0.04646139928102899 by:0.04519522654900943 for:0.044547789071328545 with:0.03396756772609607 that:0.033699232901107726 from:0.03075346596941143 at:0.027039283056790858 In:0.021061449543044047 as:0.017514234937992545 all:0.012543839382496166 upon:0.011844431150487573 is:0.00998972746569266 was:0.008814315973987914 into:0.008557199930727406 through:0.007781895704231326 :0.1254109790972375 +to:0.12022893700269083 and:0.09020394424291768 the:0.08587503820055309 of:0.06450042443224316 in:0.0310058468700829 a:0.017742048521183405 :0.015548046036689871 not:0.01491307651316237 that:0.014112408707955496 for:0.013734482372212283 I:0.013065769926808477 will:0.012848502316304782 at:0.012837991177321897 In:0.012628718855091186 by:0.012491091048660757 be:0.011425930130217754 is:0.0113962101007567 he:0.011342727513475473 or:0.01112522537451577 :0.4219735806571561 +of:0.1862400080751342 to:0.10828178612787537 in:0.08155371117261115 and:0.05614855931020933 at:0.05595530972505223 for:0.05411346319846195 all:0.039400858489006894 with:0.037348071042447424 that:0.030444641969358466 In:0.02969281554995786 from:0.027261695076241096 on:0.026896237453316187 as:0.02037534102527314 by:0.019134699627393194 do:0.018483375634585894 about:0.014331190118842325 is:0.014051691325753905 but:0.013691650143210275 than:0.011041039386296685 :0.15455385554897244 +and:0.10943834570178991 well:0.05355061542383976 the:0.037667471857957956 .:0.02086291513304707 to:0.02012086717239599 of:0.014200690339508812 ;:0.013041195219037016 :0.012329973286198214 1:0.011994665214645438 in:0.009892420822752818 far:0.009608145513039979 or:0.009494441117885676 ,:0.008834019387694684 made:0.00838987361422806 that:0.008208878455529908 him:0.008095307730761692 long:0.007739369408294727 a:0.007014144138529608 was:0.006998599500212676 :0.62151806096265 +in:0.02322221319899321 up:0.019234810008610607 it:0.01659398560078835 it,:0.014343051156781984 them:0.014149131958592546 him:0.01392801130420809 made:0.013737200982442119 ;:0.012869338243662655 out:0.011942628742223262 them,:0.011454880709176232 time:0.00941145952265013 him,:0.008810588521880063 one:0.008788270450940702 here:0.008478532268363807 and:0.007867171840940306 country:0.007429670841210994 work:0.007417282017163895 men:0.007286325447866625 time,:0.007186731063877916 :0.7748487161196265 +as:0.36904989720623116 fees,:0.09515113214603936 and:0.07299766093590764 is:0.07262337740785221 be:0.046451280246243995 was:0.044074707894477184 not:0.028554679925268885 so:0.02343270454850052 fees:0.01838321159124226 it:0.015416826555930864 too:0.011540896532992655 been:0.011415370161022901 due:0.009640338532431559 or:0.00953328757438588 are:0.008986409453211391 the:0.008390444967701765 Is:0.008360795736548464 very:0.00780878222127913 that:0.006938542339572525 :0.1302496540231597 +of:0.2322903564995006 in:0.10723034016370794 to:0.08945229030468796 that:0.05620308054767716 for:0.053048658012886045 with:0.05215479228345414 at:0.045386340338091385 and:0.04374172965339152 by:0.03429115769424105 from:0.02942999477783578 all:0.025557635488822682 In:0.025182070106610627 on:0.022125331205036014 is:0.020559569815915158 as:0.020435943221216536 under:0.018656508462056732 into:0.013849663508576738 when:0.012432373742103427 was:0.011829441469078454 :0.08514272270511003 +at:0.15759636317629921 of:0.1421714067936483 in:0.11676904876960983 to:0.06398364411645996 on:0.051157018190029144 for:0.05108566601725402 and:0.04555513108461132 that:0.031721944739604234 from:0.030113826054908015 In:0.029702699076370135 At:0.029399515452081842 with:0.028043139425789426 by:0.026185917658690036 is:0.020303271491863204 as:0.01797707611473321 was:0.017223050385135958 upon:0.016504659720422372 about:0.014081527374087893 be:0.01236778699448754 :0.09705730736391437 +the:0.22879378265633446 of:0.10736682322152051 and:0.10324388429028487 The:0.03296042788685947 suc-:0.0325699917139537 a:0.03206038057010109 two:0.03055654175907416 in:0.0239710145454965 tho:0.02282714604655217 all:0.02071465008826602 to:0.019369158736130654 at:0.016467127809525018 their:0.015930902256269072 from:0.015351940889094832 with:0.015130048672691571 on:0.014980133335950944 suc­:0.01495080530870828 or:0.013170650003801661 for:0.012970254041147246 :0.22561433616823776 +it:0.20661626833118804 It:0.13133310388077965 which:0.05346195225056892 he:0.04322413433168328 and:0.0399221355018402 that:0.03638459118631527 there:0.02656324547693805 who:0.022588363007738477 This:0.01601752777676921 He:0.015090910728543903 what:0.013686208311658789 she:0.01181234484166701 this:0.011752239301455133 There:0.009749183368011116 man:0.007759333367156636 as:0.007068481254995637 work:0.006691860301109499 country:0.006039779831696346 but:0.005362639996269743 :0.32787569695361507 +the:0.1941711311547156 of:0.15475788842161298 and:0.06985862488600579 to:0.04784665818089017 a:0.039915644565146305 his:0.024181495850461653 in:0.02276815682637814 at:0.019072708663410244 for:0.018291401376492617 their:0.01808603333139909 be:0.017572604858816496 was:0.014552718165604325 is:0.014234909109458386 by:0.012516068816593133 with:0.012194053711530494 from:0.011422938125255 are:0.010983543428474025 or:0.010499888557316189 tho:0.010345939852097245 :0.2757275921183421 +be:0.18345998338358244 was:0.10906304517782374 is:0.09190748519344741 been:0.0739822147869643 are:0.06547580740329575 and:0.05904717289682685 were:0.046201700371422606 the:0.04023249363761206 of:0.03020466885635576 have:0.028849720261204376 had:0.024522991858821844 an:0.023764653440676072 has:0.023155556619279438 as:0.021473795746891337 bo:0.020964399133544455 not:0.01773921599137779 Is:0.017402983444088797 so:0.016109442482960257 being:0.01353068993765817 :0.09191197937616655 +of:0.21642426751186572 to:0.10994279937453202 and:0.07982690077695653 for:0.0771190343687719 that:0.07622608572622867 in:0.05565790521250216 with:0.04859380042583077 by:0.03901442272597975 all:0.028569798964644087 is:0.028022296803500827 from:0.025967191020537097 as:0.02451553473467725 under:0.015907712543531148 which:0.014850164926803374 on:0.01410419210619231 make:0.013781647882052548 In:0.01338956027018608 upon:0.012768742859593025 at:0.011766758052453842 :0.09255118371316086 +the:0.1353012999184349 and:0.12212535036635783 of:0.06626689369079568 a:0.05340525526055851 to:0.043541614556192786 in:0.029029251580211357 is:0.01684226127378273 that:0.016395299105467623 for:0.01631881555017441 or:0.01582211307099832 at:0.015726030502029954 not:0.014651156572070162 was:0.01439313445682964 his:0.014021723130874093 be:0.013135628328165828 their:0.011046524324669675 .:0.010836533641311926 The:0.01075918962549541 by:0.010738006532459932 :0.36864391851311923 +they:0.14510282220606718 we:0.07640489269928202 who:0.052934194635620734 They:0.04296125773584943 We:0.042265249332188524 there:0.03969788845677713 which:0.03856534390445747 There:0.03618625392298338 you:0.03449903301490865 and:0.0324976561572122 it:0.032037281492714106 that:0.030751956914248667 It:0.022859112780106265 I:0.02193800198417125 people:0.018886636877665553 You:0.01586519421788103 men:0.015190430004055445 but:0.01256463273612157 he:0.01226098830608812 :0.27553117262160126 +and:0.11518725450369112 the:0.11256877337878081 of:0.09227202431017634 to:0.05565959674703019 in:0.03372845825477168 a:0.03186154652142331 or:0.026042421315422764 for:0.014008035771699167 was:0.013909563687269326 is:0.0135267036773416 are:0.012670853317533794 hundred:0.012406056376991324 one:0.012288415790393248 two:0.011930553527066037 .:0.01143689918775418 thence:0.010928209551372765 at:0.010727836654736648 be:0.010342649426371585 by:0.010281387386168806 :0.3872227606140053 +five:0.12804274999170356 ten:0.12777266753535158 two:0.0690758379291242 of:0.06768731700650524 three:0.05274842087334677 hundred:0.03594450030273859 four:0.03453759661703603 fifteen:0.0334592769866171 fifty:0.029300642452046114 thousand:0.026686768895157753 50:0.026581920885256436 20:0.026193993545834213 twenty-five:0.02376160836169339 eight:0.02350902221272835 many:0.022512498267048174 40:0.02243749202707714 six:0.022137046224589525 twenty:0.021684909048794925 seven:0.02161679298719351 :0.1833089378501574 +the:0.24530607253247166 a:0.16495149420239721 and:0.06080251547301428 an:0.05699806106235981 of:0.03276374468900859 The:0.026149364811506225 to:0.022113519380460158 that:0.01830326488828836 this:0.016367480433911914 any:0.012648823230271543 tho:0.012603257373752702 which:0.011512267327099077 at:0.01134545657336375 in:0.010488678286540015 such:0.010143486460617652 as:0.008320581040510554 his:0.00803128982382534 or:0.007837529411702045 said:0.007724263250556948 :0.25458884974834217 +was:0.17561689999811622 is:0.14358504064951172 be:0.08559449875090216 been:0.07473259270339212 are:0.058221532912197484 and:0.055183114687648964 were:0.05234140399756781 have:0.050034831378448275 has:0.042842960680945175 had:0.038202827500616515 the:0.03109403826264274 a:0.027883877868313017 he:0.01900688598132209 being:0.01864299763799318 Is:0.017507197645475616 not:0.013736602440218569 it:0.01087294572913382 I:0.008569658478074652 He:0.007693324669331861 :0.06763676802814801 +of:0.14602555609041107 the:0.0888201446959067 and:0.08555987187157858 in:0.043013609324789794 to:0.032344989200651965 on:0.021806980843500474 by:0.017891096015278586 for:0.01752576976126837 with:0.01583954153723294 or:0.015278814640605163 their:0.014275001382840685 In:0.013714779985338196 a:0.011826607073966877 from:0.008150767933701461 The:0.005990015906430786 be:0.005852769352764048 that:0.005802993181452815 tho:0.005694621162760771 two:0.005670524081428183 :0.4379155459580925 +the:0.17651475898505692 of:0.09365400791229729 and:0.0743729099551067 a:0.06780890535785845 to:0.0443190661549891 in:0.0346836277092125 his:0.02562116335571316 Mr.:0.020862862231947776 her:0.020087021733716414 with:0.019924508602327525 on:0.019822317880656068 for:0.016921173509731147 The:0.01661492573669356 their:0.013905844975221958 In:0.011749016182795195 tho:0.011015898470356165 an:0.010936715113720087 :0.010575667749676054 by:0.010296415188293542 :0.2993131931946304 +and:0.21537870511481155 not:0.07996887340253657 or:0.07372112744318542 that:0.05411640014746764 was:0.04828346564275007 is:0.038573681110265996 be:0.03506535753649126 but:0.029280964681391353 had:0.02802847346088864 has:0.026627428022628127 to:0.02564132892755064 will:0.023596861462803424 have:0.02345499698797077 are:0.022487527095262506 of:0.02171667913718842 who:0.01956059139777589 were:0.016661078177827686 which:0.01661659594442101 he:0.012673172949048947 :0.1875466913577341 +of:0.28767355066866834 to:0.08775711267569858 in:0.08678131196995101 and:0.05160598694501188 on:0.04646139928102899 by:0.04519522654900943 for:0.044547789071328545 with:0.03396756772609607 that:0.033699232901107726 from:0.03075346596941143 at:0.027039283056790858 In:0.021061449543044047 as:0.017514234937992545 all:0.012543839382496166 upon:0.011844431150487573 is:0.00998972746569266 was:0.008814315973987914 into:0.008557199930727406 through:0.007781895704231326 :0.1254109790972375 +in:0.048515785429817986 ;:0.01290524869529205 up:0.011428054540364918 from:0.009857194249487205 them,:0.009551775055887987 thereof,:0.00914457015479063 In:0.008717076390408932 him,:0.008556698915169029 benefit,:0.008446942942294347 due:0.007445306556836395 it,:0.007295928249127812 out:0.00651226713017592 States,:0.0063995652962191086 him:0.006265273202773819 ,:0.006153711715668133 years,:0.005751400366265867 county,:0.005344006316058594 :0.005207190277284108 State,:0.005148579217171931 :0.8103534252989052 +the:0.38232812320299453 a:0.18358199927392257 and:0.11892381555671426 The:0.032256986958482864 tho:0.017564700672647468 or:0.01679836844302874 to:0.01450105193054644 of:0.013423360014700082 great:0.010695496122473294 by:0.009792881787894291 all:0.008246602658576995 in:0.007372013345603368 his:0.007364891523477869 other:0.007137012142925348 large:0.006781365832042211 re-:0.006458654763579793 A:0.00642157731857356 tbe:0.006278988728376321 as:0.0061460283932574696 :0.13692608133018255 +the:0.21056184125385433 of:0.1147281112356149 and:0.1063633748877822 are:0.06309067788023966 is:0.062061616759685106 was:0.03255062732723186 in:0.03247127704861446 by:0.030868210400652765 more:0.030051763660882844 a:0.027509630908418407 their:0.02449522458447021 an:0.022968331739208436 too:0.017267413975883394 for:0.017050490864186467 were:0.016733508761089116 as:0.016727225130988548 its:0.015071262918730878 with:0.01498345230755346 The:0.014536444197525806 :0.12890951415738713 +of:0.2456135355406832 on:0.11802020610765834 to:0.08623638954108634 and:0.08582712673450768 in:0.08373051956744501 that:0.05376264438106248 from:0.04193156989757827 for:0.0317244939700903 all:0.027226656646666465 In:0.02451187871492093 with:0.021764370499340154 upon:0.020148797621045933 at:0.019836988381247898 by:0.01865653030336019 as:0.013860330842614125 which:0.012646775355575393 over:0.010470848640171258 into:0.01023924642106897 along:0.009302083200182045 :0.06348900763369501 +the:0.1847564407057139 and:0.10126478200649837 of:0.08831264818219191 The:0.05781217644693712 that:0.022136138620238693 these:0.01631671668090445 a:0.014513194758497697 or:0.01417786516951797 to:0.012988822898574776 their:0.012329949427663977 as:0.012287881083578981 :0.012262416633580412 his:0.011940145330932676 in:0.011700605535597748 tho:0.011368635516343475 These:0.011209828309073805 this:0.010982581867111285 which:0.010198916461314558 other:0.008582822905284792 :0.3738574314604434 +of:0.041565621163437705 from:0.03157382809055797 :0.02416645864660673 are:0.022599622509095432 and:0.022282450977289574 land:0.020497137729916633 in:0.01970797564541054 the:0.01749284444437332 is:0.015223560998989732 w:0.013738084980498935 those:0.011486724791382867 for:0.011277116394644985 .:0.011035034939332996 was:0.010744308297568896 be:0.008858857250106987 -:0.007962364072251014 by:0.007488734970723644 to:0.007452414542476227 I:0.007370865152139062 :0.6864759944031967 +and:0.08212848852720997 would:0.061794876952073925 looked:0.05042081976204433 looks:0.04551481878533785 was:0.04023003411450624 not:0.036042100699218226 something:0.0350139492901538 is:0.032981578610880635 much:0.03147561159068482 look:0.03000943602635309 to:0.028947434440163438 I:0.026583730761485323 anything:0.026044643890678093 me:0.02314647168459439 feel:0.021776537677664867 in:0.01974314762236534 him:0.018312326775847942 it:0.017784556437078543 just:0.017525355227627746 :0.35352408112403144 +of:0.09129790931378902 the:0.07369883040827747 and:0.047842263382354346 in:0.04189055351593407 to:0.04045875475680249 a:0.03542341257202578 be:0.02020462051672066 for:0.01979292654746225 was:0.01760256398103379 at:0.017380150555488715 is:0.014984483003968216 with:0.014047653760730413 by:0.01374644383819499 :0.012670486581795598 In:0.01200961464556976 or:0.011563835749786333 from:0.011391516893522809 are:0.011273104484969465 that:0.010755276030689069 :0.4809655994608848 +his:0.22146474124446774 the:0.21327035631801597 her:0.0983622213075989 my:0.08114420355198479 His:0.049102944635465544 The:0.0414244718595714 that:0.02723013952162253 a:0.021861599191704262 and:0.01870441640104805 My:0.017960882446977865 Her:0.016020267041631592 of:0.011206265226486593 tho:0.010939461353262092 bis:0.010169153266768344 their:0.01010512995331566 this:0.009012556168954263 its:0.00813722880407258 our:0.006721418649308127 your:0.00663737483729525 :0.11952516822044845 +the:0.15671163613539785 of:0.1137446614938353 and:0.05637094685142951 to:0.04645860087801226 be:0.040144197116693786 a:0.03427215972031686 their:0.024651595270133636 his:0.021826557517110545 for:0.02136231455565416 in:0.02082182476237544 is:0.020709832224756454 or:0.02009455112836564 was:0.017316949056009133 as:0.013292607628920098 are:0.012303691272948431 tho:0.01099286083045077 not:0.010889450713905352 been:0.010807341220370865 with:0.01052288412553942 :0.3357053374977745 +and:0.06954454630682382 the:0.04591889931765341 to:0.04441537768223494 will:0.0397394699508654 which:0.03902395676601593 said:0.03884001254090859 of:0.03833137054480887 that:0.030175267836648433 may:0.02893916347065599 for:0.027061765505786938 it:0.023382938579402008 there:0.022841550737806325 shall:0.022684019024387738 would:0.020975563107901354 a:0.019245805635819582 or:0.01860143985334092 should:0.018461796486249123 can:0.0182102597929919 as:0.01668322510220108 :0.41592357175749767 +sum:0.03352282876311118 number:0.028116684882597106 line:0.019995206059833036 city:0.01946514558931857 out:0.019275318828420953 day:0.01666865340772654 county:0.014872697538657208 amount:0.013254184849875051 Board:0.01252325449624941 town:0.012449555905674143 side:0.011663975251122375 part:0.011517157473718155 County:0.011460540331966697 state:0.011087331502382173 City:0.010878919191854432 purpose:0.01081028255427907 and:0.010297866493795984 way:0.009848747943663767 name:0.009522170936943183 :0.711769477998811 +carry:0.1412497087947734 through-:0.12826013105545556 with-:0.08091675963353849 carrying:0.046277804198627925 pointed:0.03723144396063946 and:0.033126401155713206 sent:0.030773149825916037 brought:0.02747943045078021 carried:0.027073602342564777 find:0.026641036907707145 put:0.02615503321810391 wipe:0.025838030544031883 go:0.022515062343076847 went:0.022513291814153923 get:0.02250598350754256 taken:0.022060176804249623 pointing:0.019443788737956894 cut:0.01939461821188527 bring:0.01927596027535409 :0.2202685862179288 +is:0.10484305172160707 of:0.10476210016982285 with:0.10244624722386583 was:0.08095456531416947 to:0.06258832772371738 in:0.05666464154751983 for:0.0503325772388867 and:0.042969761558902496 by:0.0383314045236461 had:0.034540697607251244 have:0.03281600683253995 as:0.0321255636756023 be:0.030429887608628643 that:0.02244724501910081 has:0.019341762749820558 made:0.01598235782615762 been:0.014605171189216674 In:0.014535694497486033 not:0.014321346835585298 :0.12396158913647312 +of:0.08493743996874009 the:0.04537007712050972 and:0.041506932927266336 in:0.03586212233555753 a:0.03573683082071449 to:0.030385880039074588 -:0.025361483548512063 for:0.014246053942594594 by:0.012216347673762725 .:0.01103989863556381 that:0.010551185155321599 at:0.010374993125063453 In:0.01011125400774165 on:0.009832568924000638 I:0.009426519128921942 is:0.008952552526977567 :0.008595007489776527 as:0.008399059792090114 with:0.008155065813497852 :0.5779387270243127 +and:0.10402992543013229 that:0.05019092486459068 as:0.042727286857862486 which:0.02533234897998449 the:0.02508012675128413 of:0.022857658890955417 but:0.02193945521435193 :0.021424796317566188 when:0.019315947107283828 an:0.012160285773421877 what:0.011117510159342807 to:0.009847883387652535 for:0.00930937210305684 .:0.009110448322906767 a:0.008401418459977729 time:0.008210823708437065 on:0.008144468143099519 so:0.007721425325186425 said:0.007692928980800737 :0.5743849652221062 +of:0.22535277590881922 in:0.1453766869805632 to:0.11248886168511187 and:0.0539771761870575 on:0.05295277170288525 that:0.04369306585325046 for:0.03881184772358039 by:0.032424605484706465 In:0.03210597260171158 with:0.02870670836657677 from:0.026948928418803583 all:0.024851567682437948 as:0.021991535334052643 over:0.013833324083226258 upon:0.01288266517130331 into:0.01176024889318927 under:0.011299983681280181 which:0.010864080624078804 is:0.008790481598368762 :0.08988671201899656 +of:0.09043409053013649 the:0.08458268447909405 and:0.06941169710674647 to:0.06842685376506503 a:0.03502196399400508 be:0.027631492661475 was:0.02262770347407094 or:0.020899547147549786 is:0.018061672947865565 are:0.017763045964156114 his:0.017114589037761113 for:0.016727962397261282 re-:0.0162769353827767 their:0.01514882567544624 been:0.013878331263912594 were:0.013374436412516415 that:0.01319950985941409 at:0.012567281873590285 :0.012294075404375895 :0.41355730062278084 +the:0.3979415868406757 and:0.12313905597007391 The:0.03331239850902795 tho:0.030732703664550064 of:0.020257330688918617 or:0.017219073266660983 as:0.016931022238607003 a:0.016313662128565148 said:0.015735191979730653 large:0.015509447856042146 great:0.014577579520847483 tbe:0.01276846759546814 certain:0.012474534602201605 by:0.010511394605320858 other:0.009880559104864647 two:0.008529456277981427 that:0.008379597602526408 small:0.007946165646247862 their:0.0071282280822686376 :0.21971254381942076 +to:0.1880241272656622 a:0.12753808224676708 the:0.11401395250006233 great:0.06113406396726453 of:0.047996435965609895 in:0.046037415249846406 large:0.040290065946987336 and:0.03844091400460137 full:0.027583572297299727 no:0.02299229105732304 good:0.021752540994709975 equal:0.021268686457112895 will:0.019320682219264196 or:0.016612106733671323 his:0.01656314698976895 any:0.01580897199829331 their:0.014839112986451113 police:0.014721858674361935 its:0.014201234183123681 :0.12986073826181868 +a:0.42325490990032266 the:0.29766752135941643 this:0.03806027012621449 that:0.019372091027011762 long:0.01766758089352669 any:0.01705697316062948 tho:0.01517737885099426 same:0.013660863744708837 The:0.01161594656462101 and:0.011223116844867187 brief:0.009874327956260752 one:0.009738771836982026 some:0.00946701622050808 large:0.008573037795236998 every:0.008301708491793703 critical:0.00777777819515482 short:0.007115877007543155 other:0.006716554582422691 no:0.006199837333901814 :0.06047843810788317 +the:0.28473885980111313 and:0.063571693463487 of:0.05567041661374984 a:0.051586746800728236 The:0.028342874520320742 tho:0.02176162121524775 in:0.019042716324138415 or:0.01722607068806004 for:0.0133794654100955 said:0.01284953285060224 that:0.011611193352337361 tbe:0.011467700721373814 to:0.011012309239306637 as:0.010745374842683874 .:0.010734486335012214 an:0.010715806315283396 :0.008823264047787927 Mr.:0.0071392926963891636 at:0.006671913511575997 :0.3419086612507067 +was:0.14205237762003015 be:0.12410237496546524 is:0.12157192264189837 not:0.09632853417159247 are:0.06365208516487551 and:0.0606028478036906 been:0.057535629629163705 the:0.05478470167586264 were:0.04269127839586145 to:0.016066077772313395 being:0.01602308552892748 Not:0.0157784574535491 very:0.014489448253920345 Is:0.012409102272258629 now:0.011289542210244375 so:0.010917489955959276 as:0.01039468668130024 almost:0.008567049014279867 of:0.007772107909968495 :0.11197120087883863 +the:0.1799764620055268 an:0.07017355858929837 be:0.06097930597917317 in:0.05506562665182637 his:0.05095860896776724 and:0.049865141510454965 a:0.037090876471898925 so:0.03677205402609481 their:0.030217717084657685 no:0.028226786744596048 of:0.028126073342200016 very:0.02638865404810567 my:0.024493157305912235 more:0.023950823693628706 are:0.017378723753841994 was:0.016772120962736017 is:0.01671414532431552 been:0.014118805548948262 to:0.013112048534197335 :0.21861930945481986 +spite:0.038017404187114835 out:0.0372686137516049 and:0.03570169315863753 that:0.02655890867341167 value:0.026090366280772923 part:0.024620158961039675 one:0.022785694164029972 sum:0.022119641127047777 amount:0.019859617002542403 tion:0.01811436175197411 charge:0.017458813565391796 payment:0.017448710700355818 account:0.017441337297585194 any:0.01673074464939334 names:0.016248397088161642 some:0.015729751533454937 end:0.015377415033100016 use:0.015376586282452533 people:0.015234020980039863 :0.5808177638118891 +one:0.1131489054449633 some:0.07292683844455583 many:0.04177586335839287 all:0.03741238811831752 out:0.036733531510679984 part:0.03646128012114051 any:0.025949144817565935 most:0.023945150594173712 portion:0.022626717977395593 that:0.018458867259454427 Some:0.014710432673859845 much:0.01381627062899526 tion:0.01361415857188464 people:0.013613525641643035 members:0.013050762655861154 result:0.012865030630324015 and:0.012800804287906304 none:0.012231252532968825 Many:0.011996314411964118 :0.4508627603179531 +last:0.16808195401839 the:0.12964458344549437 this:0.10918543769826111 Last:0.09753817563104847 a:0.0755149653336526 next:0.06793352180058257 one:0.045433926933846354 fiscal:0.039161571523371304 that:0.03459665039437132 first:0.03258135287215905 past:0.02610215089436808 each:0.023886158724236863 Next:0.02262751446511189 every:0.018248205934686058 This:0.012108624371485863 and:0.010953923870906858 third:0.00955635325898969 per:0.009258958714169908 second:0.009158670002247375 :0.05742730011262024 +the:0.2840577125392358 capital:0.2353928211931751 and:0.06076876169696645 a:0.03910363201703038 of:0.033121324392633454 live:0.027552267881242837 The:0.02520557680701055 common:0.02299472398929864 large:0.01998659553171837 tho:0.017501474268652856 or:0.008933263656042927 in:0.008662178432317228 every:0.008096563401573319 great:0.008019969747055296 preferred:0.007610531955487536 as:0.007409240178661647 any:0.007392641462393917 that:0.007035641977289422 new:0.006823990842103337 :0.16333108803011095 +in:0.048515785429817986 ;:0.01290524869529205 up:0.011428054540364918 from:0.009857194249487205 them,:0.009551775055887987 thereof,:0.00914457015479063 In:0.008717076390408932 him,:0.008556698915169029 benefit,:0.008446942942294347 due:0.007445306556836395 it,:0.007295928249127812 out:0.00651226713017592 States,:0.0063995652962191086 him:0.006265273202773819 ,:0.006153711715668133 years,:0.005751400366265867 county,:0.005344006316058594 :0.005207190277284108 State,:0.005148579217171931 :0.8103534252989052 +and:0.05029855954343815 to:0.04274306345727899 of:0.02917195941779674 the:0.026808429283309742 -:0.017235194467899385 .:0.01462799303067483 I:0.014471415632218888 a:0.013619882032846376 was:0.012382443102201256 be:0.012073839499999909 1:0.011475316147566793 in:0.01079740978156277 :0.009999752030472561 is:0.00974472510433079 for:0.009680294738330384 not:0.007081782713588219 day:0.006657409400467627 are:0.0066210967507292304 that:0.006363707258562793 :0.6871457266067246 +the:0.39749834532651884 a:0.07520030034269234 and:0.05540858759821703 The:0.03273515726769502 tho:0.030061875542463562 of:0.020144331424922633 tbe:0.014929647509541684 in:0.014268129706664795 or:0.013333166761078447 .:0.013287381914101323 an:0.009000188755386574 to:0.00880680429595084 :0.007943763822197133 Mr.:0.00773879605474787 by:0.007328417831573476 as:0.005922572098978465 for:0.0047526933692942485 that:0.004736121968310169 on:0.004594595720579333 :0.2713091226890862 +the:0.1307013763650042 and:0.13035870637108657 a:0.05528592764209704 of:0.04793923594179546 to:0.028248801604555427 be:0.025320491752377727 Mr.:0.01861574823445135 have:0.018087854792783912 was:0.01786173211955622 are:0.016249723238926143 The:0.016116656173679782 he:0.015854896862505068 is:0.015615651865381558 it:0.015597171988364833 that:0.015449951849110164 or:0.015060899167159754 had:0.01423106636645445 has:0.01291498413587273 an:0.012298877264288624 :0.377190246264549 +the:0.07430503327731428 and:0.06986633461506658 of:0.056763946294978135 a:0.04134368026305141 to:0.03284787670810843 at:0.03048856525363595 .:0.0224074433876951 in:0.021071123705455462 was:0.014736198811444539 be:0.01219210692051789 :0.012062832217559149 for:0.011435946210086478 No.:0.011253113200277262 or:0.009715968200862792 Mr.:0.009680813686924254 is:0.008486489620343212 his:0.00719882657616282 by:0.007142021709463612 The:0.007114113007843161 :0.5388875663332094 +and:0.107759951811027 the:0.09385054628072402 to:0.053968592559178824 of:0.04839262102953183 a:0.03414974603676544 or:0.03318673116183798 be:0.03175389045093506 was:0.03140859073457843 is:0.02975168873124845 are:0.020885392842301887 as:0.02076651179776067 for:0.016884632625619754 on:0.014442639049605903 that:0.01438151194192424 not:0.014020327477329652 were:0.013980754968364392 in:0.012885640133786371 he:0.012570044884247022 been:0.012104424672561334 :0.38185576081067174 +number:0.05239731751328176 out:0.032700087269569855 one:0.027911450857919747 line:0.02743444631052951 part:0.025922088818940113 day:0.02311670101861447 side:0.0213499607859394 state:0.021266889967554884 way:0.018811756114138645 people:0.01870231343879134 favor:0.016385165043002626 tion:0.01568769686946685 class:0.015479548252644042 means:0.015293156683339672 State:0.01463541623069367 purpose:0.014140585455060847 right:0.013600201359044054 case:0.013590827295026593 use:0.013546375368749366 :0.5970280153476926 +a:0.09073667323160077 the:0.08832332534763873 and:0.07635759598408931 of:0.05397417957790488 was:0.0425774617537438 is:0.03564655347573938 to:0.03101797058084621 be:0.028377667834636612 in:0.024627585179426578 are:0.01833602334029556 Mr.:0.015257052086229626 been:0.014883922186516572 or:0.014317247419542288 were:0.014178955690878688 .:0.013844989959165692 he:0.012112062709602607 for:0.01184218557114267 I:0.011266333494736623 his:0.01065868892413158 :0.3906635256521318 +of:0.09129790931378902 the:0.07369883040827747 and:0.047842263382354346 in:0.04189055351593407 to:0.04045875475680249 a:0.03542341257202578 be:0.02020462051672066 for:0.01979292654746225 was:0.01760256398103379 at:0.017380150555488715 is:0.014984483003968216 with:0.014047653760730413 by:0.01374644383819499 :0.012670486581795598 In:0.01200961464556976 or:0.011563835749786333 from:0.011391516893522809 are:0.011273104484969465 that:0.010755276030689069 :0.4809655994608848 +and:0.17143393573329466 I:0.13326585883145958 he:0.12456731991405573 they:0.05528567949138062 who:0.05327370066734909 she:0.04368328592734131 we:0.03280151432650584 He:0.0312117045467455 it:0.03080523461246958 It:0.027501398075916353 which:0.02519759542175289 then:0.020332039977174518 1:0.019092613377334096 They:0.01903227945818197 We:0.014771958669725471 She:0.012823161999048548 ho:0.011295006631053152 that:0.010897394431693425 there:0.010799503831634963 :0.1509288140758827 +a:0.21211538322092624 the:0.19546933793587096 any:0.0837433263674313 that:0.06392555342730763 this:0.03900466156601476 every:0.03320437776626297 greater:0.0317962037514499 latter:0.02445227455811817 no:0.02194048191245243 first:0.02122680174566319 in:0.019145450321797694 and:0.01833696914000321 or:0.018018366847473998 large:0.01717044034959002 other:0.015696659241908387 early:0.015427668332717937 upper:0.014960184655747284 take:0.014893052348053108 as:0.0127088152040228 :0.12576399130718802 +and:0.1708712633838227 the:0.1345686045511024 of:0.09069748622420724 in:0.07058945561065337 to:0.04285002850503951 was:0.04113434373946363 is:0.027800217393607163 are:0.025110421731732366 that:0.019685775364229018 In:0.01762839168252575 which:0.017504724082742566 been:0.017262402515175638 with:0.016847635881265824 were:0.01673029102850416 be:0.01630131910392925 an:0.0158389140131104 have:0.015559441830334872 by:0.014748300832760833 he:0.014527822386512132 :0.21274316013928116 +a:0.1310277555442953 the:0.11880632666264482 and:0.10934572036494696 no:0.10722875284483262 to:0.07396450419574228 any:0.050670109580789956 for:0.04692267190454381 it:0.045926608115158134 is:0.041593477546356686 that:0.032615845807617935 of:0.030959019212924682 was:0.021792459469491238 or:0.020530099469731732 in:0.01871878481138559 with:0.016299701589885144 will:0.015523975330015757 without:0.014991815005564763 not:0.013585245378976986 still:0.013402454290123806 :0.0750946728749718 +and:0.20344002609295847 that:0.10727768474522799 as:0.09282946122220335 even:0.04010104736907618 but:0.03249609555318898 him:0.025754192679429477 see:0.02338420047332087 or:0.01935378695157258 asked:0.017387716147900075 But:0.01464270784599718 and,:0.011576465878281266 know:0.008652740729393883 it:0.008592178454356985 ;:0.00853539321671973 in:0.007955959676563188 cause,:0.007800847261480876 And:0.007309472916176065 which:0.007208901840371462 time:0.0070954763621867535 :0.3476056445835946 +the:0.30543290674522866 a:0.09708164644982825 his:0.07093773731087857 their:0.0546058646972989 of:0.05172699043610346 and:0.035555165003704814 The:0.03306688145263334 its:0.02884302886783762 in:0.02721642111250332 tho:0.026382872664008176 our:0.02175343970914228 my:0.021179963008969793 to:0.02048806504256432 whose:0.01753119796326834 her:0.01281894541481583 In:0.011678418146320204 tbe:0.009798341113803921 your:0.009567534306198097 for:0.009424064658768053 :0.13391051589612404 +of:0.3139750078329278 to:0.08575377138613854 in:0.07478737383023272 by:0.06352459792206325 and:0.05886060320514228 for:0.05317066141991947 that:0.04867504873938834 with:0.03646146004385153 from:0.032353551565829385 on:0.027371349767236472 all:0.02088548693485073 upon:0.0175329370196184 as:0.01734051188477399 In:0.015520790646700955 which:0.01138761297183359 at:0.010799128328343672 through:0.010523238514062632 when:0.010294615355171446 over:0.009360341237052506 :0.08042191139486225 +it:0.24326368841556942 It:0.23510303615218886 there:0.0866434783507223 There:0.05412525018266012 which:0.05228632636038423 that:0.03090082695392343 he:0.030414332820084263 This:0.028017231012340542 and:0.022656214526699508 this:0.021100152531453777 He:0.013657794479326352 who:0.01135383451827119 as:0.009752197005943358 but:0.007469290599119895 what:0.006558358447253879 she:0.00547955159505085 "It:0.005135318792492239 work:0.004276266762387579 be:0.00404285366690522 :0.12676399682722297 +of:0.11262937093395178 the:0.07933830126221257 and:0.061142640715328114 to:0.060236256985574714 in:0.03992463923984304 a:0.03339417177502128 be:0.02974599742579492 for:0.028778201704295268 is:0.02227390828963339 was:0.021921140498607126 at:0.021408804644676142 or:0.0196085274386579 with:0.01776914207166247 that:0.015589254532017845 are:0.01500556319959804 his:0.014936962884283948 no:0.012347146037078902 their:0.01216072595900912 I:0.012105281683176691 :0.3686839627195767 +and:0.0746963647076282 to:0.04826275890411258 of:0.04113383851490855 :0.027484032130686814 the:0.023132074367764086 is:0.022173054451748 by:0.02017036709835656 was:0.02007389524444483 at:0.015433697648779695 from:0.015118660630630734 in:0.014677341379641362 or:0.013283257041216254 are:0.011844692404349684 It:0.01160260645260656 as:0.011558671185873469 with:0.010028263119261017 it:0.009495935367509542 for:0.008701404531243677 :0.008152799699281281 :0.591976285119957 +of:0.2175586650358356 in:0.12489620118319508 to:0.07979668842340361 and:0.05838008007432196 with:0.05724040922615516 for:0.052861097133777485 as:0.04176866016857396 by:0.039401102926764124 that:0.03806066087232438 on:0.037886830260638465 In:0.031383142799337335 from:0.025623126006488302 upon:0.021672493038147844 all:0.01606952264727669 is:0.014933454482084302 was:0.012198279191604832 at:0.010750229181576278 under:0.009609799345547535 be:0.00938843818066367 :0.09952111982228343 +of:0.15195463605072831 to:0.13319631317544806 in:0.08509888170256856 and:0.06463708232571241 for:0.06298552518606514 at:0.050226995527428785 with:0.03957166134594866 In:0.03951914087132138 from:0.028876146974370732 on:0.02314069131955453 by:0.02263241208955923 all:0.019056708928195082 that:0.016284779068588908 about:0.01157586401414488 over:0.011401180489163873 upon:0.011333777232982128 :0.010398604889100325 through:0.009961279674018558 under:0.00937284713317296 :0.19777547200192752 +difference:0.1558524522269534 and:0.030778952435524514 lying:0.030342138473076867 line:0.027153790291679657 out:0.025735503751686668 it:0.023737446347969312 relations:0.02146522998352977 up:0.020197899541871962 made:0.017735660293463244 that:0.017486673631176775 dispute:0.01669594492195086 ing:0.016001385269668468 distance:0.014577829639305382 passed:0.013886157032115182 war:0.013880406249614528 space:0.012705838835383497 existed:0.012515586759190908 fight:0.012514732144120558 existing:0.012187526449059054 :0.5035488457226593 +it:0.1519949194075831 that:0.12951858371080258 It:0.08078808466750105 and:0.07493221763881366 which:0.048757392457039424 he:0.03509126646263258 be:0.018270954653007144 There:0.01727491600007476 fact:0.015554738889759995 but:0.014847613326971801 That:0.014247110205144442 there:0.011886181514834586 as:0.011743367975746478 who:0.008750110272959445 truth:0.008733023875465974 property:0.006757588490739014 This:0.0062503739515724415 she:0.006221850502950437 what:0.006032842121142556 :0.3313468638752585 +and:0.06317916895143688 was:0.03089079697380977 is:0.020044819943736053 be:0.019406329289829806 are:0.016631216139614186 that:0.015910745835586493 it:0.014132589635136123 been:0.013429954470292457 made:0.013153338042273357 were:0.012494049396038097 or:0.012369181282419555 them:0.011608721240324167 up:0.01101461536327863 him:0.010833186604515583 as:0.010718511743974049 succeeded:0.010682665877813333 engaged:0.010592681714621757 not:0.009777868089593193 now:0.00948198968071834 :0.6826475697249881 +it:0.19295132172049476 It:0.11515952781861025 he:0.08051159723191474 there:0.07887722895840464 that:0.04404768143656147 they:0.04270381409434602 I:0.03832151033225557 and:0.03773929590657699 which:0.029973524198226867 who:0.017278016448488507 she:0.017115840478286792 as:0.010857740703981645 There:0.010841850568483438 we:0.01071942860076789 He:0.010207786041764626 what:0.010068276141631005 This:0.008984321176446236 you:0.008477944059740457 one:0.007928901399377087 :0.22623439268364104 +the:0.25887998342185103 and:0.10169668096517825 a:0.09644976434567919 of:0.07094074843549579 is:0.03975219827746978 was:0.0390416865326301 in:0.03696494814377265 attorney:0.03661344152921387 brigadier:0.03445460278978455 more:0.02958235275745435 for:0.028170167586452313 The:0.02129862853773041 very:0.020781982994890306 this:0.017685968516388293 postmaster:0.017251244440346748 tho:0.01725024232614727 are:0.016057801267902464 be:0.015040930982474488 his:0.014557843487904397 :0.08652878266123376 +of:0.3184190360443104 to:0.09837906929557073 that:0.09130553659096319 by:0.07716162857593323 and:0.07688457445143693 with:0.03906316830091578 for:0.025965737317318032 as:0.02542658772834525 all:0.023506616441147255 which:0.01968652879663868 among:0.01841207866951537 in:0.017513619642541476 when:0.01720235800928863 from:0.015449175925616863 on:0.014523860288414415 but:0.011312790402103057 if:0.010474920730546195 where:0.009647153854551638 upon:0.009387241003742929 :0.07927831793109999 +of:0.3614437834458273 for:0.08827028826305733 and:0.07274766099554639 in:0.06602866964678669 to:0.045362419932448494 with:0.04174063929948509 on:0.039656003080921896 that:0.03522763314703004 by:0.033334489612784554 from:0.027001097629732063 upon:0.022948678378000218 all:0.01550434599086509 In:0.013185830805327016 as:0.012916349699320052 or:0.010390110828476969 at:0.010119455650835258 ot:0.006275577828433805 about:0.006117856928436041 under:0.0058894704175023165 :0.08483963841918338 +sum:0.03352282876311118 number:0.028116684882597106 line:0.019995206059833036 city:0.01946514558931857 out:0.019275318828420953 day:0.01666865340772654 county:0.014872697538657208 amount:0.013254184849875051 Board:0.01252325449624941 town:0.012449555905674143 side:0.011663975251122375 part:0.011517157473718155 County:0.011460540331966697 state:0.011087331502382173 City:0.010878919191854432 purpose:0.01081028255427907 and:0.010297866493795984 way:0.009848747943663767 name:0.009522170936943183 :0.711769477998811 +years:0.44521640203575447 months:0.09244559639450663 weeks:0.08056267045014061 days:0.06577330980091746 long:0.06397346712566353 year:0.04933880632369797 time:0.03849844985338144 Years:0.017691228988673733 week:0.01507953610788073 month:0.01206063738882492 and:0.011928916637947233 century:0.0062645856307086915 year*:0.005381860274553927 the:0.005052685861518635 two:0.0038003700513553162 it:0.0036551601900336184 yean:0.0032313771554685396 centuries:0.002987096411404009 yeara:0.0028856321478603233 :0.07317221116970826 +and:0.14507320772351315 fact:0.08580533594336559 said:0.056464728489513914 so:0.05141663139801109 believe:0.03728868944610554 is:0.032697255055655516 say:0.030323479159427524 know:0.029749358812227955 found:0.025535190692382553 stated:0.021273605064562356 show:0.019511948220510757 but:0.018999393120383457 says:0.018814328565908398 think:0.016893655385130203 was:0.01658797795582863 all:0.01652317309060226 see:0.015409038245983688 opinion:0.015263158537430448 order:0.014744011681695817 :0.33062583341176116 +by:0.18590219282183643 no:0.11364582306949576 and:0.11006093696324805 the:0.07487694180130189 a:0.04404683598207105 of:0.04000306121493728 which:0.038538378697167544 This:0.037813194699021765 this:0.03609171031218709 any:0.02948957834858446 it:0.024161075278783126 It:0.02335512571306458 only:0.02156142246504761 that:0.016733846865259017 some:0.014264948965490928 what:0.012618203829624766 other:0.012239415902723648 or:0.012032378806860877 By:0.011191754493967962 :0.14037317376932615 +a:0.2814324744659879 the:0.26708614783090573 of:0.08009559950383918 with:0.04462622176646893 this:0.033774116374293 and:0.028532776821348003 in:0.026360425907929023 A:0.022444675397036366 so:0.02093199359460009 The:0.019149403994929044 very:0.016309753049326525 that:0.016268997138530094 tho:0.015173986215543563 our:0.013861980341371816 his:0.013281661277999469 two:0.010840631459609633 by:0.010649094696753065 as:0.009148804972145963 for:0.00869612027390667 :0.06033513491747596 +of:0.28767355066866834 to:0.08775711267569858 in:0.08678131196995101 and:0.05160598694501188 on:0.04646139928102899 by:0.04519522654900943 for:0.044547789071328545 with:0.03396756772609607 that:0.033699232901107726 from:0.03075346596941143 at:0.027039283056790858 In:0.021061449543044047 as:0.017514234937992545 all:0.012543839382496166 upon:0.011844431150487573 is:0.00998972746569266 was:0.008814315973987914 into:0.008557199930727406 through:0.007781895704231326 :0.1254109790972375 +be:0.2168523412493801 as:0.13838977808051192 was:0.10592247911251546 been:0.08644965577516311 is:0.07659737316196512 and:0.06010430374210259 are:0.0315618943203804 were:0.025943352154174926 not:0.020589132168282082 he:0.01949493252315077 have:0.016312373576208128 Is:0.014428486636990503 being:0.014290422585818892 had:0.01381425884211718 bo:0.013711610973625056 has:0.013174527025496702 it:0.010034059135739987 I:0.00896704905473801 so:0.008199003839824729 :0.10416296604181433 +of:0.22692158451074942 to:0.1008435169851347 and:0.0801762492652078 for:0.07664769136180566 in:0.05949986622912266 with:0.04910672810149575 that:0.044333865015291594 by:0.03816790041735792 is:0.03411741934435817 on:0.025498043968868976 was:0.024646819814549196 from:0.023557870660063537 be:0.020783348758037553 at:0.0197947920414416 as:0.01922057466983032 upon:0.01551259379028937 all:0.014447737054889638 In:0.014061382987093122 are:0.011397402123370363 :0.10026461290104265 +and:0.09623670123582898 demand:0.039375086225876224 ready:0.024049611499889437 used:0.019657491652890227 vote:0.01533549611619852 as:0.015227644966893146 him:0.014720290070870876 candidate:0.014703043619660317 not:0.014673755702751414 application:0.014641828523173053 them:0.013964954339709689 place:0.013545419615257554 but:0.013308378056315526 money:0.012268072772981866 necessity:0.012127322084167273 it:0.011926736305489976 work:0.010697883077580976 land:0.0106957095671473 call:0.010598305612729267 :0.6212462689545885 +in:0.14048713722096412 for:0.12045306486651125 of:0.1150959154773748 within:0.061090158043955345 and:0.05346109170384797 only:0.04877263632788032 In:0.04433449219687606 with:0.037160146048207214 is:0.0315421892589043 but:0.029830979859766554 by:0.028968633883732185 to:0.025999925223267443 was:0.02505070588261269 after:0.022494641765410772 that:0.022285961534963723 as:0.01690029607373616 from:0.014222657035431458 or:0.013178995054789719 made:0.012188942064310933 :0.13548143047745698 +a:0.5809531055299566 the:0.09717522295648705 of:0.059240345099321134 with:0.044516231151453006 A:0.03297627521998679 so:0.022518674457008316 this:0.019812039355148525 that:0.014974642918309817 and:0.012747043713597408 very:0.012314163096572744 too:0.012037262839321314 no:0.010685199900121014 The:0.009702710894242841 by:0.00964043012912995 is:0.008352638109084848 in:0.008049597003912789 his:0.0073173553209451726 our:0.006692825197311799 as:0.005941155071943442 :0.023353082036145497 +as:0.06931392982974462 according:0.052071562389565784 up:0.0511867300210483 and:0.040371568633051955 went:0.03351644485287816 back:0.032358406609281 regard:0.03073407747799069 feet:0.02852138506231652 down:0.026379903432040268 owing:0.02466642634685871 due:0.023695193974505355 go:0.022910973192184297 reference:0.020802802907016128 came:0.019883741951819873 sent:0.019874244915639484 attention:0.019565955494145405 come:0.01885185084678811 given:0.018792390567602263 it:0.017366961307524745 :0.4281354501879983 +of:0.09129790931378902 the:0.07369883040827747 and:0.047842263382354346 in:0.04189055351593407 to:0.04045875475680249 a:0.03542341257202578 be:0.02020462051672066 for:0.01979292654746225 was:0.01760256398103379 at:0.017380150555488715 is:0.014984483003968216 with:0.014047653760730413 by:0.01374644383819499 :0.012670486581795598 In:0.01200961464556976 or:0.011563835749786333 from:0.011391516893522809 are:0.011273104484969465 that:0.010755276030689069 :0.4809655994608848 +the:0.16645560329997164 of:0.12139721579075123 and:0.07411327924204575 to:0.04315510503061944 a:0.03378915774488091 be:0.032524872260910956 in:0.026622747048011753 for:0.025055413705249073 was:0.024565872695568567 his:0.02132131539897319 is:0.02119470620255564 at:0.0201588713170233 their:0.01792094162163172 or:0.01597972521957516 not:0.013383975228775045 been:0.011756160453340176 tho:0.01130112732122299 are:0.011172362665469239 an:0.010791971091367711 :0.2963395766620565 +of:0.14140911374913043 the:0.08406324275408093 in:0.051712664696044124 and:0.042016144218116745 that:0.03344666676867289 to:0.027709869064190353 The:0.023638573607111874 for:0.020483914568636966 Mr.:0.017669174058513534 which:0.016972368561751192 as:0.016259401671191127 a:0.014920071848964473 :0.014646146896987337 In:0.009940105168995288 or:0.00909223143114935 such:0.008359976573547796 when:0.008218759560201584 -:0.008178509589941811 by:0.007801238855262815 :0.44246182635750936 +the:0.6566611116686835 in-:0.08014627230099423 The:0.048214821939235965 tho:0.03563149502285045 in¬:0.02657768571155839 in­:0.02056969656684345 a:0.017969115775196408 In-:0.014012148791761133 ex-:0.013772006539029099 tbe:0.01154822817371885 and:0.009712969380957679 in:0.00955720586274389 of:0.008553243766766944 by:0.00494483004608511 other:0.003017906814787439 great:0.002995677901216669 In¬:0.002757377491735518 good:0.002741615931266185 In:0.0027380061621171915 :0.026878584152451944 +to:0.3842100966864062 will:0.23451732894221236 would:0.10083218707678789 shall:0.05235332011623836 may:0.03729766904244103 must:0.03435125306455975 should:0.033700063440998976 and:0.018159406670290243 not:0.016043405972258392 can:0.010703781341724105 could:0.007751124637819939 might:0.006243503591293069 cannot:0.0050470530565056276 that:0.0038666846116995938 it:0.003748993176801928 also:0.0033564620216396967 the:0.0029949486004218037 soon:0.002016953380345906 which:0.0018995631852726529 :0.03990620138428244 +is:0.15316485510230876 well:0.12743189762605928 be:0.08754647149682708 was:0.05391418152760839 not:0.049626384430328296 been:0.04270836703933038 are:0.038693825256649175 and:0.03839566802328683 have:0.02959625355521688 Is:0.028116586764188503 commonly:0.02616507267234396 generally:0.020471062917017113 now:0.018266012697096465 made:0.016721166847139507 had:0.016443995110192497 were:0.01509467175043748 much:0.012397138763532687 became:0.010976144874807078 being:0.010122100444408496 :0.20314814310122117 +Mr.:0.06022373420084748 and:0.035820572256377976 the:0.02976525391380298 .:0.02567742738768126 said:0.02176451170555544 :0.017778545594109678 of:0.015618855421830136 at:0.013617705703701624 to:0.009292202025512902 Mrs.:0.00904181061653184 Mr:0.008144442393172005 Dr.:0.00792920479260731 1:0.007708790442348273 Pine:0.006822711848072165 J:0.006388379507483532 Oak:0.006368285507338971 -:0.00635038167052663 :0.0060538618768311726 on:0.005984977937443299 :0.6986483451982253 +the:0.11919516938815296 of:0.07230453158552728 and:0.05781056740443249 a:0.043018564803886335 to:0.031305092790907506 in:0.020848713353460488 at:0.014270110001066288 .:0.012526810245749479 :0.012413283442322082 for:0.011719122709941797 by:0.010808400946589808 or:0.010404172990115616 The:0.01003576004804544 with:0.009811868184449042 tho:0.009295902015355835 was:0.008924239095331684 that:0.008672304223433876 is:0.0085591147338948 be:0.008335143826716943 :0.5187411282106204 +land:0.017362729603858457 in:0.013739889749722355 State:0.013479160785275893 men:0.012093732641133706 good:0.011960819453936535 state:0.011859853938603023 power:0.011277119413300143 relatives:0.01032088043279046 up:0.0102165560211972 life:0.00981999090847599 health:0.009774059857723316 friends:0.009041864380238646 wife:0.008791042748457495 judgment:0.008163324834854309 right:0.008153653241717965 time:0.008137386691515135 city:0.008054241725541042 husband:0.007821768574215225 man:0.007817457833870663 :0.8011144671635725 +the:0.05100684441387489 of:0.04697581971330118 <:0.03181612620463766 .:0.027260368825225464 and:0.023694524358755253 -:0.02180514426098689 i:0.019848896500976106 in:0.01909100171041913 a:0.017564598656836277 I:0.016985636055064365 o:0.015668514335863578 to:0.01174598755223032 1:0.01125965372964789 t:0.01082471399929722 :0.009319289964392406 at:0.009147924633625636 on:0.00895858975612061 The:0.007080113770968375 was:0.006455111169900464 :0.6324911403878762 +the:0.06839622805890012 Miss:0.0680689352016227 .:0.058702515242333976 of:0.05793647357144333 Mrs.:0.049409084328106936 Mr.:0.04506952203996797 and:0.03960461921821611 J.:0.029906112963925785 W.:0.026789461548982884 A.:0.023949358226655486 M.:0.021413437762470896 said:0.020926720454621416 John:0.020920924830184442 E.:0.0188435026547916 C.:0.01845946257413624 H.:0.018087649171376986 St.:0.016307454251877716 D.:0.014800859503439822 F.:0.013984808715580686 :0.3674228696813649 +is:0.22516144374840819 was:0.18020965632997563 are:0.14070617528204327 were:0.05510559004688916 do:0.04074510598002183 am:0.03610331460370231 and:0.030538961350170597 Is:0.03019164149603725 had:0.030030317977327085 have:0.02902034610036973 did:0.023737987215647217 has:0.019506904615673934 could:0.017356625850534872 does:0.016976645585543324 will:0.014185323624012472 would:0.01196196845749653 but:0.011023881430140197 it:0.01003687665536739 be:0.00932676950910226 :0.06707446414153677 +and:0.08995317707915026 to:0.06844710404109794 of:0.04605142056172993 the:0.04074574508561307 which:0.02479116931334353 that:0.023764822140213245 re-:0.020841117231308055 in:0.020803825395358622 for:0.020278423301550053 :0.018417753428486977 not:0.016860793136637672 con-:0.016444405871234195 is:0.014386481772210856 or:0.014080680914153714 be-:0.01352268143271276 I:0.01317002660943805 was:0.011429878269381662 dis-:0.011196807025842847 he:0.01113106290024311 :0.5026826244902934 +and:0.09104762137144545 is:0.05822077869021826 as:0.045874340217701086 was:0.04076603001201927 him:0.04041422148399542 order:0.039916408885771165 time:0.03547873846659777 began:0.03313063515923796 able:0.03268148299071383 necessary:0.032517735698019766 enough:0.03188399803914443 not:0.031016282210573377 them:0.027750634299954283 want:0.024000434018559648 unable:0.023913532257987986 me:0.022715018584522035 fail:0.021433822535657395 right:0.02137699345436904 made:0.02104602312400235 :0.3238152684995095 +the:0.1449641844563986 of:0.08710595808597107 and:0.060639991043772136 a:0.038971050768985306 to:0.035497607287402144 his:0.022269846080904755 be:0.02150484315278025 my:0.020367185734705945 I:0.01891633058414471 in:0.01859493769918256 for:0.017350580101599025 was:0.01676359899750709 is:0.015084084537449449 their:0.013269247511876204 at:0.012718929570411921 that:0.01170468572340591 or:0.011400632554895979 it:0.011330438956791117 :0.01130401752938815 :0.4092418496224277 +the:0.11919516938815296 of:0.07230453158552728 and:0.05781056740443249 a:0.043018564803886335 to:0.031305092790907506 in:0.020848713353460488 at:0.014270110001066288 .:0.012526810245749479 :0.012413283442322082 for:0.011719122709941797 by:0.010808400946589808 or:0.010404172990115616 The:0.01003576004804544 with:0.009811868184449042 tho:0.009295902015355835 was:0.008924239095331684 that:0.008672304223433876 is:0.0085591147338948 be:0.008335143826716943 :0.5187411282106204 +is:0.15630619422208383 have:0.12038489507431525 had:0.11035413821746884 was:0.0760195941969005 has:0.06910160304620752 that:0.06655696753594725 and:0.05811377401567809 be:0.04381787079777488 made:0.02953677303860371 but:0.022880509952786128 make:0.02277295953975014 Is:0.022085045979109545 in:0.01860935180241428 been:0.0177154693031732 with:0.01701551166583861 of:0.015975062153058064 are:0.014654297223878877 for:0.013762236124030856 were:0.009692329429265574 :0.09364541668171486 +at:0.3308213524974508 to:0.13980781231872438 of:0.12751289768591237 At:0.06285683329804463 in:0.059543816022922275 from:0.033640941189737594 and:0.026285692917293425 for:0.026131617627344384 that:0.025515860271453188 by:0.024498624163207715 on:0.022323463172072015 with:0.016100415871315197 before:0.012056958211303653 In:0.010787189750398635 under:0.009986472643284831 as:0.00836491644301229 until:0.00785967853987415 into:0.006534067749893053 after:0.006337259777974031 :0.04203412984878137 +of:0.10041655463654972 as:0.07987697783647374 is:0.07608658099060817 to:0.072104218894318 for:0.06835210543259321 such:0.055171498028120214 with:0.05174236857483971 and:0.040670363111572995 in:0.03663382675098766 make:0.03521763350555276 be:0.033733369041925594 that:0.032356566521820784 was:0.031479253210925325 by:0.029902353069732098 not:0.025707525668684162 made:0.022446053368401803 have:0.01853028128794132 on:0.013390830432336926 Is:0.013216946710512859 :0.16196469292610297 +the:0.09257056349821859 and:0.09224795152250533 a:0.07278659441959898 to:0.06492929000087447 of:0.06111822002401408 be:0.025099538893597242 is:0.02149308700099527 in:0.02141247688820789 or:0.01984159061175152 was:0.019387256347312948 not:0.016853958608045113 are:0.01454887644489244 more:0.013855090673385114 that:0.01174821157580692 with:0.011685758410120104 will:0.011297780567221988 one:0.011083597844477934 would:0.010130372594083352 two:0.010057140181593906 :0.39685264389329683 +of:0.20445482753852795 in:0.15794483850411487 for:0.05985343899263582 and:0.04907695185518024 In:0.04851808380613462 with:0.045994683460846425 the:0.03883321551389465 to:0.0340737743718872 is:0.03323222115905337 at:0.02501729862561255 was:0.02444375161301669 a:0.01977411621652235 on:0.01920521917027926 that:0.01869820365300468 from:0.017025797731303343 or:0.017024043092837143 have:0.016117133957570907 an:0.01315526062228918 be:0.012372169486422871 :0.14418497062886587 +the:0.09578769058842936 a:0.09396268119188085 or:0.08229319223564516 and:0.08008690222834246 no:0.06202329560400516 much:0.05342930984744037 of:0.04592749816228467 is:0.03645412408085033 be:0.026828781860053448 for:0.026194962529655176 are:0.025622591894135415 was:0.024505346429493213 any:0.022821882046398265 still:0.02275464807247297 far:0.021972958046029365 once:0.021132626832165324 with:0.019858668040868215 not:0.017436605261951933 to:0.014871592790504517 :0.20503464225739382 +is:0.15292544512079398 was:0.08088080874564545 of:0.06863709159590324 and:0.06661179254039132 be:0.06487479455543221 as:0.05976773717131091 with:0.058530342271147055 for:0.05457916695555991 to:0.038834806596394135 have:0.03744430255061361 in:0.033278820875153554 Is:0.02829157991523256 by:0.025256515939182378 made:0.024923893513706035 had:0.022669982986427147 make:0.021403195934355145 not:0.020316337618150902 been:0.019305164864152936 that:0.017423432165600387 :0.10304478808484714 +the:0.09684081064840576 and:0.06551335624548284 of:0.05146145169206151 from:0.049520598669154245 a:0.045427902131977435 to:0.0370403239153822 be:0.035669151526387034 was:0.030489628475080553 is:0.026635804908522978 in:0.023878514238638158 are:0.018513936943033917 not:0.017945708099223703 or:0.017556265685966497 been:0.014265228721347686 at:0.013857211504087178 he:0.013733215789660087 were:0.012396679125422956 I:0.012347944480187516 for:0.012197989992860347 :0.4037082772071174 +it:0.1432559018871836 he:0.1286390292402265 It:0.12841812492596144 I:0.07419050939271307 there:0.04938617973803716 He:0.045081758608067436 and:0.033952574130207525 she:0.03358554252629715 which:0.03324991740427255 who:0.024471633063763265 that:0.02436355036947876 There:0.0217910372166226 this:0.013765403459391496 She:0.012638622749569388 This:0.011133268964823485 ho:0.01096849263777988 lie:0.008862998803520506 but:0.00823064244529776 1:0.00737740561542708 :0.18563740682135935 +and:0.06317916895143688 was:0.03089079697380977 is:0.020044819943736053 be:0.019406329289829806 are:0.016631216139614186 that:0.015910745835586493 it:0.014132589635136123 been:0.013429954470292457 made:0.013153338042273357 were:0.012494049396038097 or:0.012369181282419555 them:0.011608721240324167 up:0.01101461536327863 him:0.010833186604515583 as:0.010718511743974049 succeeded:0.010682665877813333 engaged:0.010592681714621757 not:0.009777868089593193 now:0.00948198968071834 :0.6826475697249881 +it:0.20689377318318858 he:0.14388147885194477 It:0.1194672333449709 and:0.058199778714183886 who:0.03808407088268705 He:0.03782662104051745 that:0.03337570575133796 she:0.02695180976088169 which:0.025852499386020196 I:0.019599496436312074 this:0.015966041279796107 there:0.012973899120340625 but:0.01264604634084177 This:0.01225994167515711 as:0.011030054030787053 man:0.010482606513944 ho:0.010143992548908925 be:0.009809648895594573 lie:0.008442555329918515 :0.18511274691266674 +to:0.31726424424617317 will:0.2170326165518834 would:0.12626999288206522 may:0.06184732366421897 shall:0.05418997512566382 should:0.045518166450444 must:0.03812040559946207 not:0.03249178954775362 can:0.01578028236313647 could:0.010485135460831928 cannot:0.009248119130975996 might:0.00923661825217087 and:0.007232007982281018 it:0.003872750886534272 that:0.003459641489831202 there:0.0033605932487338346 never:0.003182930804813442 also:0.003060222770972806 only:0.002632398477650846 :0.034714785064403036 +do:0.4357199167617412 did:0.2485797033570476 does:0.10180629161626767 could:0.045934275951286935 would:0.04118730688863144 will:0.02922725088659719 and:0.010434716418879195 is:0.01012355185826751 should:0.008181497819623478 docs:0.0079516155582588 may:0.006666882775421685 can:0.006570668296546437 Do:0.0059049929317764 shall:0.0050943145412350324 but:0.004736844522863179 was:0.004361959235727171 need:0.0039516324518492655 if:0.003610536497240518 must:0.0035762656870518186 :0.015379775943687456 +that:0.16832451653748762 and:0.16317551195275604 but:0.09202228048090219 as:0.06626898981545905 which:0.05056182452516285 if:0.034268175887251145 when:0.0327999336955599 where:0.02391654490512962 But:0.021638226096886436 because:0.020516735853829505 of:0.017875962661562897 And:0.017367123587138943 for:0.01715484095146282 If:0.016077584172624653 what:0.011042818726600803 though:0.010176208114312196 until:0.009969674033922531 while:0.008769541776912644 think:0.008148981878890557 :0.20892452434614764 +the:0.10242758077971426 of:0.09539199122881184 for:0.0751123685903424 to:0.06465226462140353 in:0.053374606277923 and:0.05177467425825664 a:0.032778578594291376 be:0.025417773202177925 that:0.020646386560985625 was:0.01999046266801581 by:0.018134452697315572 which:0.017710277384077548 with:0.0167505277817249 his:0.015355819193848796 In:0.013756720627862729 been:0.013442025408772243 at:0.013255054889475395 from:0.012952100014585764 as:0.012356501831269713 :0.32371983338914495 +the:0.2258795833859038 a:0.13378998560112362 of:0.09152876743456521 in:0.0408589536001794 and:0.026169373295187193 The:0.025036269352898495 to:0.016503182329253272 on:0.016077559259289043 from:0.013318782509510805 for:0.013299763330360833 tho:0.013139087932604845 :0.01242562212985834 that:0.012136319616110414 at:0.011804358391499709 by:0.010872786560292273 In:0.010471264456917189 his:0.008932947789928383 some:0.008549018534477726 with:0.008017579355902516 :0.30018879513413693 +of:0.31498417823677716 in:0.11047557316337278 to:0.09555813265590342 at:0.08674885514859408 and:0.04529141814364031 from:0.04066949892315042 by:0.034857821251358244 for:0.03360277627089652 on:0.031335456276017866 that:0.027234712588873364 In:0.024611225192953248 with:0.024291387962561115 all:0.013178734225497542 as:0.011299564007474443 over:0.01109400589607206 about:0.010430692125238585 upon:0.009846654319485577 which:0.009589692085293835 through:0.009375840306380837 :0.05452378122045865 +the:0.17234101881375233 and:0.0723308580507978 a:0.06418362524859451 of:0.059381903314211774 to:0.05765128534513001 so:0.0292258426364823 is:0.027247612130850953 in:0.024298181821023074 be:0.020836055953937775 was:0.01790457325883464 Mr.:0.01622639783612973 tho:0.012553953887538211 I:0.01099826163396415 he:0.010910273396485398 not:0.010754844629789139 at:0.01064958641021041 :0.009679095332540733 for:0.009454446178783427 or:0.008882500654999364 :0.3534896834659443 +the:0.6658604648687246 The:0.06135770786569402 his:0.04170454081764613 and:0.028704780035341357 tho:0.025000407818811826 a:0.02164367816082904 of:0.01600881758487443 this:0.015243550202234338 that:0.01084682933412204 their:0.008102636476931099 tbe:0.008060924100877699 my:0.006617418249539494 our:0.005698611591771614 said:0.005217553868958258 these:0.004944023271898589 her:0.0048685039627049355 its:0.004763284984977739 other:0.0039026017000966893 His:0.0038473262326496212 :0.056606338871316546 +of:0.09269409010930513 as:0.07801460191611649 to:0.058702742954471 with:0.05384566151647146 is:0.05338634114204799 and:0.05192566677500391 for:0.04701365834433167 in:0.03838007475266815 at:0.03370159039721383 by:0.0326534736403987 was:0.025085426393671235 be:0.018539818561631397 on:0.015890979377428248 from:0.014387465733797263 after:0.014159384477564804 have:0.012577086579269418 than:0.011763731735547947 In:0.011519119383714256 that:0.010652331205023475 :0.3241067550043236 +and:0.11203614284734381 made:0.029480560291083903 necessary:0.027231632327903786 provide:0.01978786821063526 him:0.018624150941585572 time:0.017844902254185023 but:0.01736032991925495 pay:0.01712283223509279 responsible:0.01655246417854943 work:0.01573375727996718 used:0.015721729148453864 that:0.015344008200088246 providing:0.015123591452644664 or:0.014918878594106077 it:0.014272018550925738 vote:0.014240496926603478 out:0.013886758983508773 demand:0.013625570335128902 ready:0.01288626098417059 :0.5772060463387679 +the:0.08949262069306296 of:0.06797548853985604 to:0.06029911126019032 and:0.05633155419271147 a:0.03182701937144834 .:0.02897652146980837 in:0.02611964495650684 at:0.023215182424246417 was:0.018850270379757148 by:0.018370532915610617 be:0.013571963168412735 :0.012565125482671278 Mr.:0.01206487321538705 his:0.009667673967979953 Mrs.:0.008403663267752978 A.:0.008388836581967268 In:0.008116706056512293 with:0.007643810901010647 for:0.0075799444708651974 :0.48953945668424204 +and:0.13318317074035757 of:0.10710251883277727 to:0.07371979847208852 by:0.07233660939660433 that:0.0722591411115647 for:0.07199337222369223 in:0.04780816600534152 with:0.04741648225752844 was:0.0365529251429265 is:0.03065149315508958 or:0.01977484034523455 have:0.017429184834069973 had:0.016276744907959412 from:0.01261742980969905 are:0.012613236656799847 In:0.012167822914573186 be:0.012161832696145753 but:0.011602412679451949 were:0.010617071731708836 :0.1807157460863868 +one:0.1028303141280697 part:0.05963429477052991 out:0.04766456937681193 some:0.031418679026461914 members:0.030764490253327767 side:0.029940657362655835 portion:0.022063658796890564 office:0.020457735219956013 member:0.019726706386316174 end:0.019666887540649894 tion:0.018667441728710307 parts:0.016814747270460957 people:0.014112771422418794 all:0.014072739582212475 any:0.013183573287639892 One:0.013083578354183906 that:0.013024335602903442 account:0.012482348155001894 many:0.012077825070275192 :0.48731264666452345 +of:0.28767355066866834 to:0.08775711267569858 in:0.08678131196995101 and:0.05160598694501188 on:0.04646139928102899 by:0.04519522654900943 for:0.044547789071328545 with:0.03396756772609607 that:0.033699232901107726 from:0.03075346596941143 at:0.027039283056790858 In:0.021061449543044047 as:0.017514234937992545 all:0.012543839382496166 upon:0.011844431150487573 is:0.00998972746569266 was:0.008814315973987914 into:0.008557199930727406 through:0.007781895704231326 :0.1254109790972375 +sum:0.13509162327779345 rate:0.06581812110686999 one:0.033936023438945515 amount:0.027983125118884428 out:0.026968762438315245 number:0.02480980545377739 consisting:0.022920276950434013 instead:0.02036710943069649 period:0.0199555803486929 that:0.0176315006417946 distance:0.01746654340777028 depth:0.015790810440438268 value:0.015737823384350196 all:0.015008867468685082 payment:0.014972533157490468 part:0.014677050846912476 cost:0.014616053000786108 composed:0.013834472756374316 charge:0.01344322946552705 :0.4679706878654617 +the:0.13898054982616972 Mr.:0.10134544807074626 of:0.06615392240767116 The:0.043278330440478296 and:0.04162034131663931 that:0.038474065211129 a:0.028836085729107952 Mrs.:0.019741515838392454 .:0.016321296438550317 Dr.:0.015742377033130618 :0.01499245666898834 this:0.014601172820615167 which:0.012022811139796676 in:0.010986353410193092 This:0.009519698186461954 his:0.009450116155350293 to:0.009398710140252132 tho:0.009372386328052828 or:0.009138862077782499 :0.3890235007604919 +that:0.21488806932375457 and:0.13704574472682768 but:0.07364295408934517 as:0.06153783271550263 when:0.056237149067654445 which:0.05511792399565147 if:0.03254514212126367 where:0.026252377085483634 until:0.018569156542656885 because:0.018405251161535782 of:0.01685808952523818 But:0.01451924119369239 time:0.014332649376990287 for:0.013714485166924044 what:0.013251216067409047 though:0.012499089054312695 before:0.012092095141291899 If:0.011363662217684147 said:0.011229030518646942 :0.1848988409081344 +was:0.23525694170774644 be:0.14692047038105452 is:0.1111959212891177 and:0.07819457805590642 been:0.07016139469013262 were:0.0519059669874126 as:0.048765546945124395 are:0.03929918659881504 being:0.027120233238596216 Is:0.02553471443649631 so:0.01572406606103556 not:0.013499121901761925 he:0.013190842363382556 bo:0.01221792540485628 it:0.008354769027887711 or:0.007021984984307321 duly:0.006889688676056949 but:0.005777884634496484 much:0.0055837299673364114 :0.07638503264847656 +the:0.125244177620508 and:0.08175993685002995 of:0.06522069416930851 be:0.0548702739616459 to:0.05397973838865912 a:0.04481454131132746 in:0.02280340110740976 or:0.02038336764964828 is:0.019319010380680113 was:0.018270747950086045 I:0.014286571876306 for:0.013255035370608584 not:0.013226175954496275 been:0.01178939555333445 his:0.011478124918380829 their:0.011092690956782222 Mr.:0.010724349632519042 no:0.010703905414057096 he:0.01028438958216717 :0.3854934713520452 +was:0.17009142898504814 and:0.11336313420914712 be:0.057399311248828765 is:0.05507219954982965 had:0.05424459647838039 were:0.05190496775842634 are:0.04740564805151529 have:0.04598404533698657 been:0.04257913621110356 he:0.04198928033066901 has:0.021864954157348165 being:0.021282919033537667 I:0.02081553436016348 He:0.01390833451094527 then:0.012714067188417768 well:0.011594532069514042 that:0.011223774860543632 she:0.01119407154432776 in:0.009388327743780176 :0.1849797363714872 +of:0.1561868065332715 at:0.0757092696939146 to:0.07054916194338413 and:0.06911056537440038 the:0.055145107447006333 a:0.04162653210290685 or:0.035774313567355075 for:0.02373824372091266 about:0.021694085020992064 in:0.013971519020523607 is:0.012061585850545377 than:0.011726922528641735 was:0.01115768972220284 be:0.011041071959200538 with:0.010254121417406973 by:0.010243800237052412 are:0.008914651403968724 as:0.007938876927615439 only:0.007253807468600259 :0.34490186806009854 +the:0.6007912171458251 a:0.16558332110686488 his:0.04319156842282344 The:0.03165136336402507 tho:0.031557629292698106 tbe:0.011713150351838697 to:0.01157045217215818 of:0.011561236288569128 their:0.010246552140092924 my:0.008162294173961604 and:0.007472540388149087 her:0.006702910929461751 in:0.005650712540176869 its:0.004931564083226329 this:0.004297659038147243 for:0.003317026630687438 our:0.0032746106074994555 A:0.0031218792152808692 your:0.0028888032529450674 :0.03131350885556874 +:0.13109436817884734 it.:0.01912418271400283 them.:0.015284427754613635 year.:0.011178402185454668 time.:0.010124061351285348 country.:0.009975870097325559 .:0.008508671945099869 day.:0.008406034922948743 work.:0.00680415649488056 States.:0.006054376358635551 him.:0.005733904672623079 State.:0.005699088074076495 years.:0.005654812712829138 city.:0.005476053955989855 people.:0.0053943775882958475 life.:0.005149793877135127 days.:0.005147069326808866 other.:0.004906342085570595 world.:0.004905574990185109 :0.7243784307133918 +is:0.0792708370738479 and:0.048107233987699984 him:0.038865242148645326 them:0.03144125781752095 was:0.02977289703390923 not:0.029420302121388586 able:0.029348322421452223 right:0.026976810544184694 necessary:0.0215165598080294 enough:0.020365115046504033 order:0.02029474680850266 me:0.020273680984359433 as:0.020133711032951387 made:0.018012998321820513 began:0.017665842693428007 it:0.017501206332619805 ought:0.016985554516023665 seemed:0.016880311809353708 used:0.016519485158805657 :0.47964788433895283 +John:0.021309116322289465 James:0.016887395154305044 William:0.016079262595151557 Robert:0.013863232812722174 Mr.:0.013165632243878938 Joseph:0.009312062268847121 .:0.009008813075531228 George:0.008978381855783583 Charles:0.007509969032190425 Thomas:0.007093357259280336 name:0.006707988268909702 wife:0.006045984711186665 State:0.005820444529072126 street:0.00574465982796655 York:0.005419918871045545 Mayor:0.005312835511540794 mortgage:0.005311872675079982 ,:0.005308705127105399 ;:0.0050330667854470565 :0.8250873010726664 +the:0.09684081064840576 and:0.06551335624548284 of:0.05146145169206151 from:0.049520598669154245 a:0.045427902131977435 to:0.0370403239153822 be:0.035669151526387034 was:0.030489628475080553 is:0.026635804908522978 in:0.023878514238638158 are:0.018513936943033917 not:0.017945708099223703 or:0.017556265685966497 been:0.014265228721347686 at:0.013857211504087178 he:0.013733215789660087 were:0.012396679125422956 I:0.012347944480187516 for:0.012197989992860347 :0.4037082772071174 +in:0.09269317651418771 was:0.08094973780079051 is:0.07747804095395554 and:0.06806185799651242 are:0.04948341232029251 be:0.048295058317551466 of:0.04366357470019386 to:0.04113374472286315 by:0.026000759040259336 with:0.02567262292694927 been:0.024768875164964947 were:0.02403929778652847 In:0.021390180529685467 being:0.019926669035522003 her:0.019889242345210542 so:0.01934411446458708 from:0.017201872051020042 at:0.01686115858760387 not:0.01615744573746565 :0.26598915900385617 +the:0.407908781017848 a:0.2761562121577195 of:0.03358306579109881 in:0.02991149368573099 and:0.02531412811783778 for:0.024418065342192364 to:0.023371324016408884 tho:0.018360935472515116 from:0.014101302059242874 some:0.013277943423402284 The:0.01103651550674264 our:0.008025285811103195 two:0.007796178131392527 In:0.007738668571635429 or:0.007305322378920173 with:0.006846604467771174 are:0.006685363013335008 at:0.006668485599380931 any:0.006645313554207571 :0.06384901188151472 +it:0.12291356726271781 he:0.10766523848787593 It:0.08126222867785683 which:0.05815091424687329 I:0.054909855356083816 and:0.04607290301292405 who:0.036234513317437905 He:0.03284977251390459 that:0.0307500349566012 she:0.02807960748770171 there:0.017106531141060498 as:0.011444714915749334 She:0.009915288061780691 ho:0.009311744482256256 what:0.009144898696231517 1:0.008083327589627603 This:0.007923029238788926 lie:0.007752420127589498 man:0.007654383581502722 :0.3117750268454358 +of:0.2889323594739487 to:0.11785424932169057 that:0.08191464828662498 in:0.06752642478401247 and:0.05439254039609321 by:0.04960615036788801 on:0.04301796524239749 for:0.03549268090664948 from:0.03154811522813882 with:0.025493990589347242 as:0.023458841576548126 upon:0.022557108408174386 at:0.019352943023937547 all:0.01692742743237928 In:0.015891287388281054 which:0.012921146689138054 over:0.009008648628368546 but:0.007392939508033372 before:0.007358066595480737 :0.06835246615286794 +and:0.10127529401259906 made:0.03869908906357721 necessary:0.03493568628134713 care:0.029950684755265335 impossible:0.027829196481859275 it:0.026701969308018145 enough:0.02603825134231189 pay:0.025380162597268423 responsible:0.022852289760158954 waiting:0.022777310631357385 him:0.022628558102052717 done:0.022548231586912 not:0.020383109387559436 work:0.02010936800185415 reason:0.01988004445213462 paid:0.017892334159831123 look:0.01778790054453106 out:0.017740735290502997 asked:0.017690008845153773 :0.4658997753957053 +be:0.12132869224182134 was:0.1197337725068743 were:0.07910418573617406 to:0.054702922617966165 been:0.04964620369487056 is:0.04795096765187639 are:0.0428761523083084 and:0.0411924309663197 not:0.0272360549468948 get:0.02179470240238272 or:0.020572032229243992 go:0.018564484731939127 them:0.017452273383878864 being:0.017105797592029667 him:0.016211746293931507 the:0.015423436524993117 well:0.015001838622654152 will:0.012520349101845765 re-:0.012258100529382981 :0.24832385591661238 +of:0.09129790931378902 the:0.07369883040827747 and:0.047842263382354346 in:0.04189055351593407 to:0.04045875475680249 a:0.03542341257202578 be:0.02020462051672066 for:0.01979292654746225 was:0.01760256398103379 at:0.017380150555488715 is:0.014984483003968216 with:0.014047653760730413 by:0.01374644383819499 :0.012670486581795598 In:0.01200961464556976 or:0.011563835749786333 from:0.011391516893522809 are:0.011273104484969465 that:0.010755276030689069 :0.4809655994608848 +the:0.17186949188796918 of:0.09613600487758009 to:0.06810989472881987 and:0.0671159178156827 a:0.04842755304971689 in:0.029606656037987913 be:0.02592226045891956 is:0.02133049953187464 for:0.021086273175484706 their:0.018418729535074327 at:0.018178161049898205 his:0.017948069219767125 was:0.017687920992466927 this:0.013169019954401257 its:0.013019007776548993 tho:0.011547047340633677 not:0.011018992573181827 or:0.010498610803800934 by:0.010366588313851233 :0.30754330087633996 +the:0.3358320248633717 a:0.09456587843185084 and:0.09156446891864113 his:0.06622373315756876 of:0.04531473427924537 in:0.03246726741632577 their:0.02995679904374266 tho:0.028135795054503067 The:0.026377008992258016 her:0.026305632339318673 this:0.017586465283921306 its:0.016532812093920362 my:0.014902767813156803 at:0.014635309759926633 our:0.013742951708303799 or:0.012991893484925085 that:0.011357364317235375 tbe:0.011206812195423735 In:0.0111132954444159 :0.09818698540194501 +up:0.027512081273517633 him:0.020209796433688917 made:0.015032862746678982 men:0.014941336864079537 them:0.014090242869133178 time:0.013799137223656074 right:0.013482237867069966 out:0.01326829999967642 it,:0.012658550642655692 down:0.01240428160055896 it:0.011465434125065094 good:0.011312282573271023 here:0.010203536331653074 work:0.010045196261685643 him,:0.009784989027359546 them,:0.009703930446786748 life:0.00833548339647553 long:0.00833099355811042 appear:0.00819453002042771 :0.7542247967384499 +did:0.19393174179784242 do:0.1799595655053428 could:0.12850331737585619 does:0.10938932830386207 would:0.0768289418289677 will:0.07084166793211928 is:0.03419286181246795 should:0.025211026406842647 was:0.022296635522196562 are:0.01805501416222408 shall:0.017830042015759554 and:0.013305387036851447 can:0.013235581583126222 may:0.012136805841399301 docs:0.009795692847697662 if:0.009176466257289833 must:0.008491437008877261 Do:0.008432489977358678 I:0.008270601294958388 :0.03911539548895995 +to:0.648496362636482 and:0.04602881366081901 not:0.04528207712551374 could:0.037365573412476705 will:0.026789774470149918 can:0.025356857029785455 we:0.019343272732836952 you:0.016052551966031725 they:0.016022023711436937 I:0.012959804130001102 cannot:0.01261035230354763 would:0.01079032201236977 may:0.01037397220246574 should:0.008941613759909532 who:0.008740810440421458 shall:0.007439948571135413 We:0.006467183015626023 must:0.0064131166208062865 They:0.005606605361455912 :0.027918964836728656 +of:0.28767355066866834 to:0.08775711267569858 in:0.08678131196995101 and:0.05160598694501188 on:0.04646139928102899 by:0.04519522654900943 for:0.044547789071328545 with:0.03396756772609607 that:0.033699232901107726 from:0.03075346596941143 at:0.027039283056790858 In:0.021061449543044047 as:0.017514234937992545 all:0.012543839382496166 upon:0.011844431150487573 is:0.00998972746569266 was:0.008814315973987914 into:0.008557199930727406 through:0.007781895704231326 :0.1254109790972375 +the:0.216116408277026 of:0.07732933898630248 and:0.07331292058418852 a:0.061835342538757575 to:0.02839343913018148 The:0.025384867382842596 that:0.022714069942209723 his:0.020775711212333937 Mr.:0.02012662155003789 as:0.016060097675808526 in:0.014910463407743714 an:0.014781352569505822 for:0.013569264956378262 their:0.013510550041296492 tho:0.01291768089327329 this:0.011496815647310763 be:0.011149514052371596 no:0.010451834767053267 or:0.010149750415982433 :0.32401395596939564 +the:0.11274823966931571 and:0.08329996793360815 to:0.062372082173126384 of:0.05346002906215973 so:0.0299749817344208 is:0.026294180790411077 be:0.020260006954324915 he:0.018124449911071136 was:0.016351044211737983 re-:0.01567649125103956 Mr.:0.014726716630740086 in:0.013675410003338988 for:0.013272602215284653 a:0.012159264338821467 I:0.012040910229586727 or:0.010977326121126826 :0.01035107289213954 are:0.010219913969554774 not:0.009881708091297656 :0.4531336018168938 +forenoon:0.049087044927134296 one:0.042019344153293864 result:0.0336055679867043 out:0.03169101588596489 all:0.03057894228013225 part:0.025920718177052136 some:0.020557595967026145 much:0.020188718746588123 is:0.020067442692216105 and:0.0195693695424754 purpose:0.018716670926930787 end:0.017468906875066442 tion:0.016423147145874038 any:0.015344362963578974 people:0.01510289083778003 members:0.01419719265310436 that:0.013575689878939545 favor:0.013551061333859249 portion:0.012341263890554411 :0.5689930531357247 +:0.04374278271376027 it.:0.021519153711439 him.:0.012873069732248481 them.:0.01218914435570954 .:0.00940433429368473 time.:0.006808892190454596 again.:0.006197541716263587 her.:0.005496352260498986 life.:0.005303225912891165 country.:0.004804608588863878 and:0.0047088983921129155 day.:0.004521812091833 years.:0.0043033543094201905 men.:0.004152714153719437 people.:0.003877144378035344 man.:0.003632309106788271 all.:0.003625896350365656 us.:0.0035733229884830804 way.:0.003536269400814013 :0.8347291733526139 +the:0.3518185837130798 a:0.22540991712291164 of:0.046910363984759694 and:0.0375683275364122 for:0.03547234434066225 The:0.032366584142649965 A:0.025436337034972663 some:0.021844943928283594 his:0.021585603308589482 tho:0.021093764736487275 our:0.01932643454453784 any:0.015902662485713957 their:0.014967720841207259 this:0.013763270373705937 an:0.013609614406526634 two:0.012920209955554427 no:0.012523523107991567 with:0.0116664334817388 many:0.011291257374071032 :0.05352210358014405 +of:0.31200077963693407 to:0.0974508874468368 in:0.07565733455642201 that:0.06664825544508614 all:0.0589565678430725 and:0.055814490270135755 by:0.04992963026117134 for:0.04102700219982395 with:0.030317511715076944 from:0.018906715291555833 on:0.015994375543417965 as:0.015278727416270534 upon:0.014961768061295788 which:0.013525258336826142 In:0.01282848825959189 when:0.010218358796234945 at:0.009591378450403575 into:0.009259828345009513 over:0.00817561257438977 :0.08245702955044455 +-:0.05293098420950321 the:0.036552196787504106 and:0.035718749905807784 of:0.023233953090066244 an:0.022951435248925078 a:0.019473325689080657 :0.013712003804793205 .:0.013012958106155338 it:0.011290852086662013 to:0.010497147895984556 t:0.009202704894796715 for:0.006767428054621657 i:0.006610285301870479 that:0.0060078200482062095 at:0.00484927667575373 is:0.004800470544426471 :0.0043971256978299015 It:0.004387884769480118 was:0.00433639013708351 :0.7082670070514491 +they:0.10382520921632693 and:0.0668106224350547 there:0.06657690751130357 who:0.0571547579489435 which:0.05081128030506264 we:0.04942713534369061 They:0.045707944628039274 These:0.03755889567968884 that:0.03649004084159322 There:0.029568767743076638 you:0.025448347792220827 We:0.019636484770042702 men:0.015271550180411906 people:0.01369088954017746 as:0.0128196184286318 these:0.012491742056365612 them:0.009576457994104148 what:0.008320040529565156 Here:0.008156132407751513 :0.32965717464794897 +the:0.15091658399665767 and:0.14063682708112707 of:0.07961185757809233 an:0.07287221368099034 to:0.06144768972108061 was:0.03783252276631424 be:0.03291822070587566 with:0.027300919759071736 or:0.0229108240375255 are:0.02174267685796401 is:0.021605088395800887 not:0.020546875224933446 were:0.020024688147739254 their:0.019897686876157 a:0.018259808408165133 The:0.017582770539237506 been:0.017302582973489352 its:0.016799564949093182 in:0.016456000003973903 :0.1823345982967112 +the:0.18813986100604219 of:0.06874425380842634 and:0.06461475565529141 that:0.04946256139110877 The:0.0405646269589952 a:0.03963615417526352 Mr.:0.032380032333776725 in:0.020289680372622992 no:0.01822838428098836 his:0.016429735657091576 tho:0.01365546908809688 this:0.013541134512839318 as:0.013535214406612484 for:0.011723933727738927 all:0.011017230033929251 which:0.010961391347747816 to:0.010515379152458471 their:0.010160486955172871 he:0.009474647917895465 :0.35592506721790146 +one:0.07591276261110715 out:0.06051731193170748 part:0.05247657393880051 some:0.03764565803631056 account:0.03732080875142556 any:0.025795501308866122 all:0.022573497570587936 that:0.021706034880474935 tion:0.018820497961324994 time:0.018327338823311803 and:0.017698472540372448 use:0.017101246342976464 much:0.016743309263569286 portion:0.016424352739351607 side:0.015150320706867294 end:0.014971280442338157 cause:0.013657752568417643 because:0.013563549560043006 reason:0.012998228641295377 :0.48959550138085167 +hundred:0.02334136986593815 up:0.005482494641173394 men:0.005366536521246011 Hundred:0.0047587970519216575 John:0.00441808156134956 William:0.004390720675819281 him:0.004016828614280843 ;:0.003997112205305733 due:0.003721199871732 in:0.0036582900032443304 time:0.003637206863828461 James:0.0035594902370151707 out:0.0034878448964120057 .:0.003467980723571515 1:0.0032804584819785204 day:0.0032444781513863933 ,:0.003058139385740603 :0.0030314555521939613 Robert:0.003005471634785646 :0.9060760430610768 +number:0.09035689974970669 be:0.03812232525758309 is:0.03101370874431871 purpose:0.02717828604879442 out:0.023200043771236436 board:0.023017629666443485 sum:0.022885101927698236 matter:0.0228661228662713 are:0.02286147739702533 instead:0.022634095658327476 rate:0.020740560133245194 was:0.020024798814629232 amount:0.019343273206266828 kind:0.019281858958943902 full:0.01748343798680887 means:0.01717769016875851 sort:0.016827265455815556 pounds:0.01539256693177696 men:0.014847375677862045 :0.5137454815784878 +the:0.35866789867133914 National:0.10888293390651815 State:0.07354302694653501 a:0.05111661014544282 said:0.04895425287787066 City:0.03481926035483117 this:0.02808945859817692 our:0.026472965011009913 Constitutional:0.025724995419102517 tho:0.0205543125083334 County:0.018726854783765602 Congressional:0.0185892081136473 of:0.01643321753339154 tbe:0.01349109711581807 Judicial:0.01340092925346901 every:0.012836972876400825 American:0.012811995072076188 his:0.011008495649615695 York:0.010745222205844491 :0.09413029295681162 +and:0.0785083773202682 filled:0.04390468699579193 covered:0.03605411997559744 connected:0.0296455534740435 parallel:0.025374318113196483 accordance:0.0207071451862534 charged:0.02051992379532581 together:0.020209546722589483 connection:0.01948567221844807 up:0.016251716568055453 met:0.014858247267813696 him:0.014466717869940708 them:0.013357026881135829 mixed:0.012690855696166686 compared:0.012400314553075274 it:0.012314167462254931 war:0.011511884982450574 that:0.011290807237946355 do:0.01117330655422408 :0.5742756111254221 +and:0.15114984704271617 of:0.10163651156262972 the:0.06747991549813682 that:0.026568084179952493 in:0.016260914461189463 per:0.014184672124006951 or:0.012859475410228745 with:0.012500720784796429 for:0.011104342273332929 .:0.010971576458441358 by:0.010602387527894731 :0.010347428261580473 as:0.009991115997434056 Mr.:0.009129600983402293 to:0.008933581735148445 The:0.007581304239324994 her:0.007348783542883347 on:0.007208443138202359 his:0.0066197995537125125 :0.49652149522498573 +be:0.2309903185339355 was:0.22954407896640405 is:0.1256238635337424 been:0.09537262246829904 were:0.0835067968499189 are:0.0709249142494747 Is:0.02529457047418321 and:0.02511928685425977 being:0.015576715438826407 am:0.012719154139642534 not:0.012031192399873016 bo:0.01120825760521136 so:0.005641058239162777 he:0.004706350964605603 of:0.00456278563120874 very:0.004340539616733886 as:0.00431800616001534 feel:0.003703813357619459 now:0.003690575727350772 :0.030125098789532522 +the:0.10715503717724674 a:0.10703768538550067 of:0.0927147655071755 in:0.09070359885245824 and:0.08090429611492522 to:0.039171575922915626 In:0.021600066046009333 an:0.01822113023368263 as:0.017002655253402187 with:0.01630717463661218 from:0.01627496185519571 on:0.015911707585852707 that:0.014655226968972476 for:0.013165336537553534 The:0.012963890702709481 by:0.01191563083850196 his:0.011668219589708982 or:0.010612616788647536 at:0.009156582168883445 :0.29185784183404584 +three:0.20765479853144028 six:0.13866377976384953 two:0.11051104737632175 few:0.1003267935705902 four:0.07224589915691863 several:0.04648518940029676 five:0.04445124901522958 twelve:0.02671076660280194 many:0.026008005787046703 eight:0.020416662972884008 ten:0.01912648218076952 eighteen:0.01852363544472244 the:0.01822715043013862 seven:0.018135081618626057 nine:0.009497744499447064 of:0.007886626831058641 hundred:0.007582069175148042 eleven:0.007009335354655632 fifteen:0.0068782019295103546 :0.0926594803585443 +and:0.18792264078598206 that:0.08881826949880706 of:0.06908955150912338 when:0.06727360579905402 do:0.04804278360477916 if:0.04242913397499779 as:0.042290804126457075 but:0.0419475474815937 all:0.03130635287354472 to:0.0266081811805264 which:0.02306120531921137 When:0.020236114919342105 on:0.018831450718048048 until:0.017782670939806813 where:0.017356964448057757 If:0.016689521603197185 by:0.016244714365974418 And:0.015802387044099444 before:0.015404531545143284 :0.19186156826225423 +the:0.4071374189315913 and:0.06449181461132415 of:0.02892866618288876 in:0.028670005984162618 The:0.02603617389223924 tho:0.024993820467459137 a:0.023579040051412606 to:0.01755553213771617 on:0.014626070241060114 by:0.013447843485786471 or:0.012794166593089693 tbe:0.012024509152999897 :0.010353482361299817 that:0.009291482237329618 In:0.007938246807075932 from:0.007526799010378873 other:0.007469196869028889 all:0.006409533041696086 for:0.00626887758057738 :0.26945732036088327 +.:0.07792643621889174 Mr.:0.05502125924960429 Andrew:0.04927822653003852 A.:0.046505388685918976 C.:0.03594741113423611 W.:0.03496251873204235 Mrs.:0.03237467848804309 J.:0.03163696741612614 H.:0.028219767033838525 M.:0.02513003687463527 John:0.02511292185231255 P.:0.025057658163676864 and:0.022343641584215982 L.:0.020923743884205533 R.:0.02005391016446874 F.:0.01997420295631078 &:0.019866990634503142 E.:0.019830158508368837 James:0.019062157895028218 :0.38977192399353433 +of:0.23149774495718733 the:0.13825554096163067 in:0.07222040829047917 for:0.038162367427859584 and:0.0300419685052457 to:0.029047988985446183 a:0.028115062625238264 at:0.017236843197695122 by:0.015632377989372226 In:0.0126947538360686 his:0.01210749728821034 with:0.011990291124115272 from:0.011543222899244903 about:0.010865333222435042 :0.010075243123621269 as:0.009494305269283061 that:0.0091587975173635 or:0.009111596454420697 their:0.008977102484413241 :0.29277155384066983 +had:0.13730012480810913 was:0.10234145888914283 could:0.09820269166046545 is:0.07217367164717642 has:0.07095868814417101 have:0.0641542912480428 and:0.056996001210853485 I:0.04366310428925468 can:0.039711553346056645 be:0.030538926190703485 but:0.027779913706505434 would:0.022004424821213796 he:0.021375820668004072 were:0.020495277591234477 will:0.020385671303028593 are:0.01529200985794805 Is:0.013715165686787413 they:0.01347155481190968 not:0.012321796102053788 :0.11611785401733876 +the:0.36300716420940315 a:0.08479104439852557 and:0.06580712447151933 The:0.03587026453229105 of:0.028880835821979693 tho:0.025995066876861712 or:0.014109064848512032 tbe:0.013423000350663277 in:0.013343333689581073 .:0.01097534038402436 to:0.01062052605223996 an:0.010142255539142383 that:0.007295460828216929 :0.0064864528570461955 on:0.006155938489041873 no:0.006140494713123602 great:0.005858668976484144 as:0.005824980602014022 any:0.005418337080659156 :0.27885464527867043 +and:0.09766712870020208 the:0.09101050014811177 of:0.08407468370342032 to:0.07343181105632508 in:0.04056376806552309 be:0.03134097212339794 was:0.02149292731749991 a:0.021002885694633384 on:0.02008726974770159 are:0.019706051232549537 his:0.01932446830998088 is:0.019290505884163082 or:0.018826523709207302 for:0.018807071952177765 their:0.017628721711971863 :0.01466597888380649 re-:0.014625878524535533 from:0.014192750950060187 that:0.013696860674509606 :0.34756324161022256 +that:0.2979828498745313 which:0.10368699799112614 and:0.07026791244455519 as:0.05216623376645152 where:0.04083166982462218 if:0.03990843334666882 but:0.03530143924720131 when:0.03092732451151384 what:0.0263590482551419 because:0.021249339866295285 said:0.018810510083520596 whom:0.018628986387871773 If:0.01826210210892352 says:0.012894899125496014 though:0.009966332248386077 until:0.009688111655643374 time:0.009562679977160609 while:0.008550908058223304 years:0.007894979987761647 :0.16605924123890559 +to:0.2211251454072582 not:0.11339942860820068 and:0.09487571707882107 will:0.08233369555615859 a:0.04915502486920219 would:0.04815400978905548 I:0.042156584232446934 the:0.03498914793859017 we:0.029093517461891392 who:0.02808887520414259 they:0.02219897738681575 We:0.02027540864921079 must:0.019620428979346273 or:0.018417428409863316 he:0.016379812496110147 his:0.013205840956241917 be:0.011169991958048589 They:0.009842236037364178 her:0.009590030140493042 :0.11492869884073871 +in:0.021517503421093716 ;:0.015409551047400185 up:0.013593207934831516 it,:0.009249664826051022 dollars:0.00868855155281143 county,:0.00859192589016339 time:0.008279299799992658 him,:0.007465467164234165 and:0.00742574247168231 year,:0.007280094973884102 them,:0.007254209963206933 here:0.00650728717440744 States,:0.0064591013084669205 day:0.006176047685971602 hundred:0.006026932531462716 time,:0.005996706578874373 years,:0.005854204546060968 him:0.005691489533179564 out:0.0056579037761955615 :0.8358751078200295 +and:0.05579764190885707 is:0.04975196441961445 able:0.049363012062280616 right:0.03944461971473733 have:0.038150497696051694 order:0.03416946404651154 him:0.03376503342174038 ought:0.03329869336232261 enough:0.033253683520281956 want:0.0326406961464074 was:0.03040436640462288 necessary:0.029752417999655473 willing:0.029611894015752514 had:0.028129264657087632 going:0.027410403098561572 not:0.02622977625740728 began:0.025345861041735626 them:0.024918142131305162 ready:0.023015062250124552 :0.35454750584494227 +a:0.29709981695717896 of:0.11477088603769656 the:0.10471213990892232 and:0.06423792507109692 for:0.02913258796182114 in:0.028953294882271993 with:0.026635779777205694 A:0.025735873800173947 by:0.021575869687026107 or:0.01988970389634559 no:0.01978113266279462 his:0.018248244528534536 that:0.01780205175243727 The:0.014036297015929702 one:0.013014821893855092 to:0.012151846359119858 In:0.0113836111402844 any:0.01049890884490029 as:0.009997435367746754 :0.13934177245465826 +the:0.11919516938815296 of:0.07230453158552728 and:0.05781056740443249 a:0.043018564803886335 to:0.031305092790907506 in:0.020848713353460488 at:0.014270110001066288 .:0.012526810245749479 :0.012413283442322082 for:0.011719122709941797 by:0.010808400946589808 or:0.010404172990115616 The:0.01003576004804544 with:0.009811868184449042 tho:0.009295902015355835 was:0.008924239095331684 that:0.008672304223433876 is:0.0085591147338948 be:0.008335143826716943 :0.5187411282106204 +Board:0.2941430980701294 number:0.03133324481193032 State:0.02966666727514812 House:0.022870894815774336 state:0.02099949467945079 line:0.01893199764756542 out:0.01766427257174247 city:0.016310206921069676 Superintendent:0.01370729617053207 City:0.011238193292437814 amount:0.01079750799761331 Court:0.010612584259586243 county:0.010585503984080272 day:0.010148142703622357 matter:0.010073595130522887 side:0.009693131824672931 part:0.009335324090931399 act:0.009088087387305424 tion:0.008427260960945633 :0.4333734954049391 +the:0.19749125756169547 Mr.:0.07112699624208033 of:0.06603367254516487 The:0.05768776091110846 and:0.05327374818694666 that:0.0420321405581567 a:0.02582588575453538 his:0.0169326573605278 Mrs.:0.014795070048324819 tho:0.014769024234222154 which:0.011478554728659614 he:0.01110833274239838 as:0.010988112958762878 I:0.010409931249854676 in:0.010294293477152827 :0.008879223773482728 to:0.008465710829358392 for:0.008281932125153052 if:0.008197991279302505 :0.3509277034331123 +of:0.33050314143861836 to:0.11774916773099578 in:0.09182488547466758 that:0.04998069793486791 and:0.04338616382104692 by:0.038152559623610825 with:0.033191632164312306 all:0.031563981826042184 from:0.02747189851358663 on:0.02365474764468192 In:0.020102791069742294 as:0.01782788722373266 for:0.017719902629972258 upon:0.014917663876828819 which:0.011628011072524636 when:0.011152571639456363 is:0.009166507095481955 but:0.008250145652010129 make:0.006906875928322221 :0.0938487676394982 +and:0.03868242960999506 as:0.031124813427855922 went:0.02352509775927722 him:0.02196555539050794 them:0.018760608639018784 up:0.017985449426794205 is:0.017894175620344187 go:0.017174904667157563 able:0.016756848979943888 going:0.014481672239490295 it:0.014128375989346808 was:0.013277058274565138 time:0.013249953793837373 not:0.012469887553778763 began:0.012465717758716884 way:0.012105610030480113 back:0.012090864562211581 right:0.011941707822828511 amounted:0.011564315359310868 :0.667354953094539 +the:0.21737684873306332 a:0.18856915219365109 certain:0.10231881091241324 said:0.052900172236547735 con-:0.03718853061605932 this:0.023916263956714676 and:0.021174320486961464 any:0.02105041035655352 or:0.020131753144726004 that:0.018008631572239545 tho:0.017605899283857952 The:0.014873866006256755 pro-:0.014140156864523487 acre:0.012849063780304705 con¬:0.01135837261861475 large:0.011347343111497087 A:0.011028531080832524 other:0.010255354995232453 one:0.008973386618979265 :0.18393313143097115 +the:0.11919516938815296 of:0.07230453158552728 and:0.05781056740443249 a:0.043018564803886335 to:0.031305092790907506 in:0.020848713353460488 at:0.014270110001066288 .:0.012526810245749479 :0.012413283442322082 for:0.011719122709941797 by:0.010808400946589808 or:0.010404172990115616 The:0.01003576004804544 with:0.009811868184449042 tho:0.009295902015355835 was:0.008924239095331684 that:0.008672304223433876 is:0.0085591147338948 be:0.008335143826716943 :0.5187411282106204 +of:0.2091293480909708 and:0.19693741623162755 about:0.09910668100027364 for:0.06955606278806924 than:0.059485845047026774 to:0.044911179210747845 at:0.03369530919169313 or:0.023183491433228686 nearly:0.019763246562712014 in:0.015627142594746797 over:0.014876505006276582 as:0.01303233423848168 the:0.012403798311885565 least:0.011594919335996432 some:0.010323945570775298 with:0.008921298823769672 within:0.008834651718961856 these:0.008251390938297716 hundred:0.007024922017139378 :0.13234051188731935 +the:0.15145593818542233 and:0.0940399545165539 of:0.09201137074409653 a:0.06701095271846931 to:0.05483589031320629 in:0.036323805334269876 his:0.02362976479411131 for:0.019075734188648996 or:0.01866050516100419 with:0.018617947699932684 have:0.016747477405117686 their:0.01511045928804116 is:0.014944607354714187 Mr.:0.013812022878328311 has:0.013783655957006709 that:0.01260876482156315 an:0.012484230497416766 The:0.012321820012690773 had:0.01128758026467711 :0.3002375178647287 +sale:0.4052459665861584 and:0.06066092660222574 therein:0.03572043667674307 was:0.034026683102022316 be:0.026651909936503196 is:0.024994246524155047 as:0.024399788685930283 mortgage:0.01977943939479769 land:0.019606012719960035 he:0.01866112727066736 which:0.015515433355134074 property:0.013964968517326438 are:0.013168994772971888 herein:0.011681456325218996 it:0.011632829724538192 been:0.011235082477868814 were:0.010704570810009115 premises:0.010168246851681146 directions:0.010095015650185649 :0.22108686401590252 +judgment:0.10731268653783378 and:0.0706724060663622 protest:0.0495530895639451 is:0.028411652140789397 Judgment:0.026080089527410606 was:0.025827465609094803 action:0.024408465354839565 made:0.024361594050771682 be:0.02148931560724964 charges:0.020787815790062517 brought:0.020331520443137643 claims:0.019697253264260434 as:0.018347198482513462 been:0.017936893229671874 protested:0.016679939274512397 assessed:0.01651768329844281 war:0.015939867394559215 suit:0.015802101122337937 complaint:0.0156327628814565 :0.44321020036074843 +his:0.24547284528382435 the:0.20953328132177682 a:0.0918205131383007 their:0.05329576807494059 her:0.053174797905470465 my:0.04017975165921667 whose:0.036429798747055625 to:0.03606317466701072 your:0.020032915706829725 its:0.018856892309172296 of:0.018031605174961395 and:0.01288696780315804 His:0.010459575264621428 our:0.010384947002810185 The:0.009792458372906626 bis:0.00972616270825817 full:0.008712177963081952 tho:0.008692802779023767 in:0.008135333741340872 :0.09731823037623961 +and:0.06317916895143688 was:0.03089079697380977 is:0.020044819943736053 be:0.019406329289829806 are:0.016631216139614186 that:0.015910745835586493 it:0.014132589635136123 been:0.013429954470292457 made:0.013153338042273357 were:0.012494049396038097 or:0.012369181282419555 them:0.011608721240324167 up:0.01101461536327863 him:0.010833186604515583 as:0.010718511743974049 succeeded:0.010682665877813333 engaged:0.010592681714621757 not:0.009777868089593193 now:0.00948198968071834 :0.6826475697249881 +and:0.13665893470739612 of:0.11440843221932524 to:0.0806955796074436 the:0.07519671500350861 by:0.0541898528698502 was:0.04538706956929636 be:0.032625344915511216 been:0.030506522171432727 Generally:0.02990375357073346 is:0.02912437305500131 or:0.02345294915318069 a:0.022592616065851973 The:0.02057736785884087 that:0.018503742723292287 in:0.01786279851657616 on:0.017560785894283122 have:0.016165782902480233 with:0.015906804988416658 had:0.014873302097571088 :0.20280727211000807 +of:0.17719722471144675 and:0.11997751572248229 the:0.06860406035647253 to:0.04130556758148828 at:0.04108322659802041 St.:0.039455250210167644 by:0.030720239495621623 from:0.028840820452381986 Mrs.:0.024435015112307435 that:0.020384926263497763 Mr.:0.01574941658268907 girl.:0.015379805684154604 as:0.014089694804839202 in:0.013586626691139164 said:0.013152137372215392 on:0.0129442156619949 :0.009635695966012351 or:0.009357406208130883 boy.:0.008429196652420234 :0.29467195787251754 +the:0.5474815131837324 The:0.13102424776681573 to:0.06519649432860619 a:0.054482803041826705 and:0.03338039452999859 tho:0.031198206012931145 tbe:0.012106797902685859 of:0.010139554797701062 his:0.009081402731047605 that:0.008604194034867747 will:0.007826228341747461 Tho:0.005703585010343652 not:0.005218982681996599 this:0.005216087281601611 which:0.004944936869957503 or:0.00445802589198748 no:0.0033337493030868026 would:0.0028012878609154795 their:0.0024728153334839633 :0.054328693094666355 +to:0.39307543982631704 not:0.0917838863382614 and:0.09160055156728938 will:0.06808542295127377 would:0.053581636605844425 or:0.026074445608054338 should:0.019881715301375637 was:0.016094234026113187 must:0.01544576902937521 I:0.01409699504409501 be:0.013029945714966061 of:0.012654180233116149 is:0.012405661826076497 now:0.012252865712499802 could:0.011127446273822787 may:0.011027455833613775 can:0.010992251208527667 you:0.010550423850304153 are:0.009945517718491718 :0.10529415533058198 +of:0.2573737686791659 and:0.1451483644208137 are:0.07195316799845461 by:0.04224673754748809 to:0.037736167767152884 in:0.037177768502485 for:0.03608472789551922 from:0.033488334768797465 as:0.0215812373132063 the:0.021298001900870757 many:0.019732058902989704 were:0.017368842182577157 that:0.016964968921228497 on:0.01683532152777364 with:0.015072245195182164 is:0.014728957572176059 was:0.013752773513478164 all:0.013457426682944603 when:0.010221088371385176 :0.1567780403363109 +the:0.7878588189862702 tho:0.04401369428685086 The:0.02380718327614022 of:0.023672149773390633 tbe:0.015432611055744526 and:0.009990928811177642 by:0.007936610091602521 in:0.006901590860991008 from:0.0047394936080151365 an:0.004527177427692506 to:0.004227327695311896 a:0.004134662396275379 at:0.002904283435259286 that:0.002876404960970416 said:0.002413273166215195 :0.002380033991667451 this:0.0022459474644091837 tlie:0.002041854286659965 First:0.0018447231944307143 :0.0450512312309253 +line:0.03874253947865077 corner:0.038537893125407806 city:0.03752709856170575 place:0.03602351030264556 side:0.035241891844681815 out:0.028804641240439088 half:0.024566576835506518 day:0.02453200313578365 feet:0.024315987705757325 part:0.02019292731364417 one:0.019378489615604903 number:0.018494126078784406 loss:0.01670595881975376 quarter:0.015939554096970777 lot:0.013893525836917643 deed:0.013222169448340343 point:0.01290986374654256 and:0.01271714355930205 District:0.009646617826328295 :0.5576074814272328 +the:0.5545336481773486 corporate:0.17095397551509467 tho:0.032973407446156455 The:0.024238807534572998 a:0.019229904063987932 tbe:0.01336225619090683 first:0.010724320734979968 porate:0.007922870647124778 present:0.007121663384863004 that:0.0064296175878946465 other:0.005571044185001763 of:0.005492156151352063 this:0.00549212169135599 high:0.005271933694755325 early:0.0050639578656306175 said:0.004813683041515909 next:0.00473733236889775 and:0.004519140126220548 new:0.004420828033086724 :0.10612733155925348 +that:0.21488806932375457 and:0.13704574472682768 but:0.07364295408934517 as:0.06153783271550263 when:0.056237149067654445 which:0.05511792399565147 if:0.03254514212126367 where:0.026252377085483634 until:0.018569156542656885 because:0.018405251161535782 of:0.01685808952523818 But:0.01451924119369239 time:0.014332649376990287 for:0.013714485166924044 what:0.013251216067409047 though:0.012499089054312695 before:0.012092095141291899 If:0.011363662217684147 said:0.011229030518646942 :0.1848988409081344 +the:0.3934288937562781 a:0.22166518287371845 The:0.06975326432137219 of:0.06211700173869653 and:0.03627421996258389 A:0.021404816325170682 tho:0.018439218635588835 this:0.01801994558917921 with:0.01797962507428767 for:0.014632118978337253 our:0.010026741796793252 in:0.008172647441341057 his:0.00798941424173109 or:0.007978788676178742 these:0.0075904420880473075 tbe:0.007456162635746904 that:0.007142545961189833 some:0.006663619483324746 any:0.006436453595999082 :0.05582889682443517 +that:0.1704296119787078 and:0.10882023881338765 as:0.09795467489431081 when:0.0846909746330694 which:0.07577584287374667 if:0.05586390891965379 where:0.04166230429215014 but:0.036998576566586415 until:0.026888108717067066 before:0.024922070638256143 what:0.02108850201283323 because:0.018994055794402723 If:0.016180529148072893 than:0.013804548814935478 for:0.013622313518464177 whether:0.013274797972112201 When:0.012643174357623644 while:0.011963988692010598 whom:0.010661382562076644 :0.1427603948005325 +to:0.23130715207018865 the:0.17329413148036701 at:0.08793134636477937 of:0.06349314819766169 his:0.049935970755695024 their:0.04239057785108377 and:0.03291690254197935 no:0.025071463503573872 will:0.02132672207000367 hard:0.02060771535760673 a:0.01949324084386313 this:0.018394603656849393 for:0.016477230970706854 good:0.015608610450246713 not:0.014212753985819724 all:0.013565500413453807 The:0.013508606009473186 its:0.011333750933381365 my:0.01096473230929456 :0.11716584023397211 +and:0.06719225282779945 as:0.0571983731189721 right:0.052459953519978474 enough:0.050703571734741396 necessary:0.049295189713331314 order:0.047943972936544225 is:0.04151974551112813 able:0.03954003980893681 made:0.0309631576198223 ready:0.030872058864765736 attempt:0.024410553431803896 time:0.023418712625144084 not:0.02283161742054399 desire:0.02272033799756569 him:0.020424445965722418 required:0.020052455541856917 or:0.019705526570169194 want:0.019098072488338683 power:0.018044680337260147 :0.34060528196557505 +of:0.15208786189441284 and:0.09904726093095058 the:0.09518956463601547 to:0.06012945850719071 a:0.05673463616293775 by:0.0510750384410124 for:0.04924744935271208 with:0.02402648568970355 that:0.023346675529441988 I:0.020082546094706825 in:0.01910112379585106 from:0.018105403972753974 his:0.01696438196407418 he:0.016939453874886774 her:0.014989558173362 after:0.014766981150399832 have:0.014200147439669766 your:0.013649065807960182 had:0.013452400356457648 :0.22586450622550042 +and:0.1348697059735844 the:0.09294195578389501 is:0.0681166849290136 an:0.061607805351258364 was:0.056187543956910675 are:0.050632737107065506 be:0.048760473078411276 that:0.03803703854022345 been:0.03413065668828682 of:0.033844266914297275 not:0.03237267033972225 so:0.029814839194277163 were:0.02857622590068066 as:0.024770860586721143 to:0.022626437770911577 now:0.0193368276800794 or:0.01746715791536723 which:0.016953964439522188 very:0.01662419744140716 :0.17132795040836485 +the:0.1396952123973891 Mr.:0.10423143128691403 of:0.057773164664590815 and:0.05322868967880514 was:0.03008640384244132 The:0.02413610297528117 a:0.021387026493688354 Mrs.:0.018516428534219673 I:0.017185229861118402 his:0.01549496029563593 he:0.014776524895627863 be:0.013479657674484724 .:0.012916704270383631 to:0.010928900674423933 that:0.010661456334322464 an:0.00997102595644593 is:0.009936452761268868 were:0.009508187521376747 at:0.009268685565487739 :0.41581775431609413 +of:0.3392426192367395 to:0.10856860254401614 in:0.08159916271328373 on:0.0487032703940852 by:0.046775614895578146 and:0.04391645002270708 with:0.0375468453749337 that:0.033588815086722894 for:0.029989692281261728 from:0.027371451132609047 In:0.02246599765280152 as:0.021751731743739358 at:0.01713514678532797 upon:0.01552829318233189 is:0.009173565967663583 was:0.008072547801513251 into:0.007851119486241438 all:0.007366736319674183 when:0.00696841641607039 :0.08538392096269926 +of:0.2748614718867661 in:0.18582669861217668 to:0.07855039850515137 for:0.062343889609136255 with:0.0454216900413375 that:0.04220774359400456 and:0.0382873073640884 In:0.03199082394340602 no:0.02551599497148385 any:0.024411498026612435 by:0.023250619527727893 at:0.0211818952274949 or:0.016022583175862092 on:0.015206421981892548 have:0.014898796792132319 from:0.011043219548415958 which:0.009586016354511973 make:0.009498364006595223 had:0.009395148057793077 :0.05949941877341086 +to:0.43554011793325187 will:0.12814656855801845 and:0.08290457113511185 would:0.07209600420001418 not:0.0629579327351964 shall:0.021264763212382336 may:0.01821341562759412 they:0.01602150131463345 can:0.015492789759549716 should:0.01521556693447715 we:0.012863053817652938 must:0.012694682533301305 never:0.0109295694338559 or:0.010214876493097717 I:0.009896169760515586 you:0.009551031844094901 cannot:0.008039044505119462 could:0.007909253581326535 might:0.007850712374582345 :0.04119837424622379 +the:0.8037634414207142 this:0.05115259303972187 tho:0.028146287462900828 tbe:0.012454999397113255 our:0.01160853802167525 a:0.011513780022528642 The:0.0069448895281573235 said:0.006893531823018453 civilized:0.004252875031996267 whole:0.0040455770351973995 their:0.0038561494820946625 his:0.0038385600444391437 of:0.003757812507147254 its:0.003308644536917875 an:0.0030884826785264104 outer:0.0029412586205476684 or:0.0027276374566326824 present:0.0022999048290380884 every:0.0022964881355537455 :0.030108548926078945 +of:0.42575192373889026 to:0.11256845440922873 in:0.09541320784152749 by:0.043992190023042166 for:0.03619463814694324 from:0.02300100796138581 the:0.021199270108719383 that:0.020321403111469287 and:0.01992660273924069 In:0.01903280603364631 at:0.018568451474372895 on:0.01605608244779534 with:0.013983584659752819 upon:0.008669139576989771 ot:0.008465270172509127 before:0.00798328966396565 as:0.007878499603050053 ol:0.0069806225418347035 this:0.005887053405556278 :0.08712650234007997 +the:0.6898718666958393 an:0.03932635693559673 tho:0.03555945937143364 The:0.03341478155109024 of:0.027570001564941344 in:0.026767914786356997 tbe:0.017475143140509068 and:0.016859471961860332 a:0.015128927967848314 for:0.008669256809290099 by:0.00857802317919261 In:0.008319288511336871 any:0.00827940921952507 to:0.007062586525200969 or:0.006677969218965829 no:0.006053534163566627 with:0.005513466444669415 this:0.005079044797441575 on:0.004990342063722144 :0.027803155091612717 +a:0.2925023173344314 the:0.21633135016144617 and:0.052716800072311394 of:0.041269669551289676 his:0.03842605080796795 their:0.027503426570917096 The:0.026063137849177184 this:0.017264130872504897 our:0.014290583752289598 tho:0.013866830455483287 her:0.012979984334476617 its:0.011776336825365835 other:0.011560810423980671 to:0.00902669356279905 or:0.008704744325430782 your:0.008654764636387832 in:0.008575378265130358 A:0.008232838338021934 for:0.007933977324847208 :0.17132017453574103 +the:0.6278349113812678 a:0.11271859510625101 tho:0.033775151641754826 The:0.026746304885532864 tbe:0.012033889488210887 A:0.011367120270884002 in:0.009446754526657306 of:0.009160977251052542 great:0.008510937529920909 large:0.007578564207875322 and:0.007451644105535012 .:0.004010321845535305 In:0.0036123478210342208 or:0.0032664563934983516 main:0.003175596517963044 south:0.003113525984001661 north:0.0030923267528688695 Grand:0.002930659990358196 any:0.002768270387900592 :0.1064056439118973 +the:0.5726357066172487 of:0.05661101640492536 American:0.04486791775802718 our:0.037504684303741 a:0.03481012145281765 his:0.03416407450898982 tho:0.026141500185546226 other:0.019724397288325493 these:0.014687166790396245 their:0.014515952121217835 my:0.014051079279226159 young:0.012575436726771068 The:0.011755406733485222 colored:0.010368237054776325 own:0.010014659059102577 white:0.00987263026896458 by:0.00811210234259818 tbe:0.008076389330175087 such:0.007882429767801001 :0.05062909200586424 +and:0.11606046623582099 to:0.07595515155907223 the:0.03972251737886805 of:0.03858987488572155 con-:0.02977731884512904 re-:0.027712069413149194 that:0.027223040308247976 or:0.025927234820816922 which:0.021318959668027552 I:0.01960060298860228 in-:0.0192917949435189 not:0.019147714045509034 he:0.018648025423870014 is:0.017693083178061154 there:0.01680239468234597 for:0.01636405150856417 in:0.01556380425745829 dis-:0.014951307857953738 be:0.01491545441017786 :0.42373513358908504 +the:0.11919516938815296 of:0.07230453158552728 and:0.05781056740443249 a:0.043018564803886335 to:0.031305092790907506 in:0.020848713353460488 at:0.014270110001066288 .:0.012526810245749479 :0.012413283442322082 for:0.011719122709941797 by:0.010808400946589808 or:0.010404172990115616 The:0.01003576004804544 with:0.009811868184449042 tho:0.009295902015355835 was:0.008924239095331684 that:0.008672304223433876 is:0.0085591147338948 be:0.008335143826716943 :0.5187411282106204 +it:0.026474955248235864 them:0.025385943658305155 him:0.01957378295841211 made:0.018222217882221125 and:0.014777271783038965 men:0.014067914809824677 work:0.013924437108040168 feet:0.013435885160416015 there:0.013023083578110087 well:0.011561019755312093 up:0.010621242882169793 right:0.010487339647155718 life:0.009212411776052677 years:0.009063135588339785 not:0.008840279878701809 way:0.008459256189798925 State:0.008357003245343327 miles:0.008233256133399487 state:0.008215812824547624 :0.7470637498925746 +one:0.06810214325065539 part:0.04821178657345747 out:0.04590668226923525 and:0.03515029243333855 that:0.03418260969876668 all:0.030203554087939056 front:0.025108436907540697 portion:0.024686953940400016 some:0.020991914119633078 care:0.020814163365078134 many:0.020514370619384565 rest:0.02003210116980225 members:0.019225987783975718 time:0.019189859167349794 side:0.018943285607304107 ahead:0.01678090463308869 end:0.01637903070203674 One:0.015526427637704315 account:0.014660985829316913 :0.48438851020399254 +the:0.3299269730088962 his:0.1508919654322064 The:0.06078907263814002 my:0.056027939629325556 their:0.04684914276093175 her:0.03810538584406841 no:0.036102646756451764 our:0.029325707307625522 an:0.024502404448121805 a:0.024217623675779447 and:0.02174209240515161 your:0.021224916161498474 His:0.020857736567419728 its:0.019871374966529628 of:0.015040295554143535 any:0.011560366188622854 this:0.011356274247830159 tho:0.011307519423889346 whose:0.010174679306762014 :0.059125883676605775 +to:0.40429982662839903 will:0.10573370111089168 not:0.06488930263748895 would:0.05642360950530689 and:0.05280571908011466 you:0.02557594824029247 they:0.02447708107921989 should:0.02413095498470293 must:0.01889622122229528 shall:0.018585415591096107 I:0.01788569133451031 we:0.017626811591418396 can:0.017116901512197816 may:0.013857047657200255 could:0.012451980149229642 or:0.012154233201421984 who:0.011714077363487473 never:0.009385193311671557 cannot:0.008511186192799437 :0.08247909760625528 +to:0.2429582467807273 and:0.1405321723255563 will:0.060498710533756044 not:0.06025256594021101 would:0.04487856799415028 be:0.04010468487662701 they:0.03621126689640887 shall:0.029283790383774034 the:0.02608063459112638 I:0.02115682249311246 or:0.021152275788724684 he:0.019981673758742075 we:0.019371342055977382 who:0.018185497595011292 it:0.015381638722757274 may:0.014948562153116806 take:0.014923777256134297 you:0.013826469359603598 should:0.013226760241538356 :0.14604454025294458 +the:0.11274823966931571 and:0.08329996793360815 to:0.062372082173126384 of:0.05346002906215973 so:0.0299749817344208 is:0.026294180790411077 be:0.020260006954324915 he:0.018124449911071136 was:0.016351044211737983 re-:0.01567649125103956 Mr.:0.014726716630740086 in:0.013675410003338988 for:0.013272602215284653 a:0.012159264338821467 I:0.012040910229586727 or:0.010977326121126826 :0.01035107289213954 are:0.010219913969554774 not:0.009881708091297656 :0.4531336018168938 +of:0.28767355066866834 to:0.08775711267569858 in:0.08678131196995101 and:0.05160598694501188 on:0.04646139928102899 by:0.04519522654900943 for:0.044547789071328545 with:0.03396756772609607 that:0.033699232901107726 from:0.03075346596941143 at:0.027039283056790858 In:0.021061449543044047 as:0.017514234937992545 all:0.012543839382496166 upon:0.011844431150487573 is:0.00998972746569266 was:0.008814315973987914 into:0.008557199930727406 through:0.007781895704231326 :0.1254109790972375 +purpose:0.0633519992834467 number:0.04507876020873664 instead:0.04422796854868232 means:0.04355901240073698 out:0.03986351725559296 kind:0.033340271845864404 amount:0.03257490836936427 lack:0.031863484765786515 method:0.029434066124952633 sort:0.02659626845191405 deal:0.02657839226414746 piece:0.026273429411649108 full:0.022530924321167958 use:0.02222729220769025 way:0.022224494805729227 capable:0.020844803443089956 necessity:0.020612518233546012 want:0.02037815689574416 be:0.019630299104713266 :0.40780943205744513 +hundred:0.06796564238031871 Hundred:0.017471432355216934 dull:0.015712454692021822 quiet:0.01536134765056753 up:0.01456795916524041 men:0.013590334530784376 north:0.012905665898664428 street:0.012717898135129649 east:0.010296733854986658 ;:0.010045919782405165 due:0.008918098768817748 1:0.008175254696310787 dollars:0.007691621079133675 chains:0.007581763282140395 women:0.007161671038213849 feet:0.007106033329783638 Mr.:0.006956694749102153 degrees:0.006780520873040891 dred:0.006285800163973352 :0.7417071535741477 +of:0.28767355066866834 to:0.08775711267569858 in:0.08678131196995101 and:0.05160598694501188 on:0.04646139928102899 by:0.04519522654900943 for:0.044547789071328545 with:0.03396756772609607 that:0.033699232901107726 from:0.03075346596941143 at:0.027039283056790858 In:0.021061449543044047 as:0.017514234937992545 all:0.012543839382496166 upon:0.011844431150487573 is:0.00998972746569266 was:0.008814315973987914 into:0.008557199930727406 through:0.007781895704231326 :0.1254109790972375 +and:0.07359963406644195 be:0.052667135004264946 to:0.04483536256874564 of:0.043448293679263235 the:0.03579172892628988 in:0.028005289969665195 was:0.026700397492138477 is:0.024892551934152005 re-:0.024162182625676702 he:0.024086629517294657 are:0.02098604388819216 from:0.020307931541148256 a:0.018606881911690538 or:0.018077853608073062 for:0.017195224169077532 been:0.01615904189338184 I:0.015254891559368164 :0.015184018660626356 which:0.015016145996292442 :0.464022760988217 +of:0.19980756083256915 the:0.09579040943459412 his:0.06289885868928952 in:0.04584058539701726 at:0.04169580476073103 with:0.031494616688011005 for:0.03122987458456005 her:0.028451902466323068 their:0.02643643804375865 between:0.026110452327547384 to:0.026083001224034945 and:0.023543218020982214 its:0.019158315537982765 public:0.01778410549490797 from:0.014604882087362088 a:0.013438439977146348 my:0.012859882288314682 our:0.012031878916718175 on:0.011871552770342332 :0.2578682204578073 +to:0.5028793750735749 will:0.1636669601026042 would:0.07673675177248078 and:0.053632915499586646 may:0.02955293716885145 shall:0.022015430062365223 should:0.01652869667339245 could:0.015246734143991454 not:0.014415638311503595 which:0.01147751270665413 must:0.010105129958936008 can:0.009869068418445396 a:0.007035439982512497 is:0.00544868115180387 of:0.005261387364506143 as:0.005233373612920744 that:0.004748783684784101 the:0.004634716992452188 To:0.004417836543676312 :0.036092630774957855 +rea-:0.2658062123466259 per-:0.2276897295008627 the:0.07444753805871966 per¬:0.069345813398803 per­:0.04850360443961596 les-:0.04488181786170252 and:0.025151897635189956 his:0.015905299451556734 rea¬:0.015143613318654993 their:0.01510553159298857 her:0.012959669060737316 a:0.011243635340939407 my:0.010072332531115938 sea-:0.009265071845679115 two:0.008381030117586308 Per-:0.0081937475460311 so:0.006912214210068111 rea­:0.006712732212695092 your:0.005673606236397376 :0.11760490329403027 +and:0.10935077871393015 to:0.09974470601657488 in:0.04770933747766497 I:0.043974628132464236 of:0.030442022038546176 re-:0.028540866157685297 the:0.023866443491138277 not:0.020593618285987214 he:0.018544437167566152 con-:0.0183517907623287 have:0.01740075544530464 be-:0.017157118479826913 In:0.016995344224664564 that:0.016769555726257743 will:0.015922187817155358 so:0.01577081618451794 for:0.01509819693394912 as:0.014460892700366497 it:0.01441820113831821 :0.413888303105753 +the:0.12814658278183674 of:0.09293463665150264 and:0.07638836071020537 a:0.06285459392690387 to:0.04707223882316762 in:0.02783274214003914 with:0.02084987171571582 by:0.016633152122300578 for:0.01636625900706149 at:0.015659185795313894 his:0.015416713671135023 Mr.:0.014937689065754212 .:0.012445505137290359 from:0.012358336587682763 tho:0.01215895214968578 is:0.011917256390077876 an:0.011562720584386016 their:0.011497207021739536 The:0.011187300681236507 :0.38078069503696477 +the:0.48198067859967597 County:0.23609886736469898 The:0.029540019524409405 tho:0.028514440223121537 by:0.023637772787606297 tbe:0.014232830631591146 Land:0.012618449262990222 said:0.012446742775618821 of:0.01110880558871382 American:0.00860045269344852 General:0.007822015714211318 and:0.007433031132720433 School:0.006772826214721467 City:0.00608433231797904 State:0.005601055878577929 our:0.005110854275427272 or:0.00510339022690264 other:0.004612240322505002 National:0.004213669524694025 :0.08746752494038611 +and:0.07558940021936399 recorded:0.030196237618668006 was:0.028917161578042846 made:0.027969746247669736 that:0.027730098932509103 o'clock:0.025060522019555328 up:0.023026552239529506 is:0.020398277211376416 found:0.02003101797656537 placed:0.017482208134164214 out:0.016937164562539058 place:0.016819459500107596 interest:0.016629321966808677 him:0.016002796715253755 situated:0.01573420479581609 it:0.015128305982428461 them:0.014715943643665314 part:0.014646613000297721 interested:0.014450471929902294 :0.5615344957257364 +the:0.39749834532651884 a:0.07520030034269234 and:0.05540858759821703 The:0.03273515726769502 tho:0.030061875542463562 of:0.020144331424922633 tbe:0.014929647509541684 in:0.014268129706664795 or:0.013333166761078447 .:0.013287381914101323 an:0.009000188755386574 to:0.00880680429595084 :0.007943763822197133 Mr.:0.00773879605474787 by:0.007328417831573476 as:0.005922572098978465 for:0.0047526933692942485 that:0.004736121968310169 on:0.004594595720579333 :0.2713091226890862 +to:0.12022893700269083 and:0.09020394424291768 the:0.08587503820055309 of:0.06450042443224316 in:0.0310058468700829 a:0.017742048521183405 :0.015548046036689871 not:0.01491307651316237 that:0.014112408707955496 for:0.013734482372212283 I:0.013065769926808477 will:0.012848502316304782 at:0.012837991177321897 In:0.012628718855091186 by:0.012491091048660757 be:0.011425930130217754 is:0.0113962101007567 he:0.011342727513475473 or:0.01112522537451577 :0.4219735806571561 +the:0.03501540566341448 and:0.029323674296720552 re-:0.020582223114456306 of:0.018123540363498516 a:0.014041629348348537 .:0.013921864094336326 -:0.01303255841905643 :0.011234209145783592 that:0.009067786252586571 to:0.007126260933164746 or:0.007046744298061685 re:0.006413730119306125 con-:0.005076547692011659 as:0.0047837020338974984 i:0.004003219110838023 I:0.0036353427091464934 ad-:0.0035764095836501083 th.:0.0035374189170301364 not:0.003383742006207752 :0.7860739918984845 +the:0.12501213529677174 and:0.07155652309953148 of:0.052609940129058716 in:0.028320735107419746 to:0.027352226368332348 that:0.023655582888587063 was:0.022042931093136858 I:0.02117992979569259 be:0.02040334901588246 for:0.01915073747965047 a:0.018186963787182143 is:0.018082597111518887 on:0.015141432607690512 he:0.014740905412035949 his:0.014678343154957307 or:0.014471548948014279 you:0.012428922258617232 dis-:0.012004838166587189 it:0.011271760331748027 :0.456708597947585 +time:0.3188496998257792 and:0.06247835136191675 as:0.056303858290290075 him:0.029279459181946556 is:0.024328785366118513 them:0.02314911760990595 required:0.02219645225260037 subject:0.018305152359593166 order:0.01771268042069244 it:0.016319585597250507 was:0.014957450727397577 able:0.014936304012196937 power:0.014916518556238628 go:0.01347934427065229 day:0.013340192773869797 about:0.013239648377715558 or:0.012990785099315658 only:0.012742079558072487 way:0.012595388970413224 :0.28687914538803433 +in:0.048515785429817986 ;:0.01290524869529205 up:0.011428054540364918 from:0.009857194249487205 them,:0.009551775055887987 thereof,:0.00914457015479063 In:0.008717076390408932 him,:0.008556698915169029 benefit,:0.008446942942294347 due:0.007445306556836395 it,:0.007295928249127812 out:0.00651226713017592 States,:0.0063995652962191086 him:0.006265273202773819 ,:0.006153711715668133 years,:0.005751400366265867 county,:0.005344006316058594 :0.005207190277284108 State,:0.005148579217171931 :0.8103534252989052 +up:0.05700266716616658 addition:0.04953632882010039 and:0.04490531028211803 came:0.04114305958527159 as:0.04055237558902992 due:0.03201550142716485 according:0.03129993379445457 reference:0.030478730316372868 sent:0.02990980261918604 come:0.02933172411388293 went:0.026782053734389237 Up:0.026552697895023868 regard:0.024442340701925202 given:0.023424952825448295 brought:0.022894402438597753 go:0.022293966736896334 attention:0.02201988315146004 answer:0.019273660204722595 back:0.018803859585491568 :0.4063367490122974 +sum:0.03352282876311118 number:0.028116684882597106 line:0.019995206059833036 city:0.01946514558931857 out:0.019275318828420953 day:0.01666865340772654 county:0.014872697538657208 amount:0.013254184849875051 Board:0.01252325449624941 town:0.012449555905674143 side:0.011663975251122375 part:0.011517157473718155 County:0.011460540331966697 state:0.011087331502382173 City:0.010878919191854432 purpose:0.01081028255427907 and:0.010297866493795984 way:0.009848747943663767 name:0.009522170936943183 :0.711769477998811 +that:0.17538154522417373 and:0.11983895998048508 if:0.07000602866322356 will:0.05203395001561297 If:0.038074236567782846 as:0.03606945150179694 would:0.032519607383726216 is:0.029897360734498203 for:0.028663454938135994 which:0.02851789540993671 should:0.02580303783930512 but:0.025342851740826563 can:0.02264516634104415 it:0.018941286770445567 whether:0.01710540566491712 Should:0.015324692588265828 was:0.01469385507194403 Can:0.014254289618624173 where:0.01412580182027476 :0.21976112212498045 +of:0.30666310390622076 in:0.11726048016336418 to:0.10094669771357462 at:0.05454187862096267 for:0.04737768414319924 and:0.04468177971360617 from:0.03862774437835837 that:0.03342981070367957 with:0.032787174074204124 by:0.03195600360502224 on:0.028120310463686637 In:0.027977164782534113 as:0.01590471684119663 into:0.011887002850025705 under:0.01002582880301855 upon:0.009815736399081162 through:0.007829978655186812 over:0.0076348403945276115 which:0.0073912783159349555 :0.06414078547261584 +Mr.:0.07454920413492246 .:0.055253558795298946 to:0.04888592651232146 and:0.043666716884376275 of:0.03758194707276083 Mrs.:0.031026436635005292 :0.01795352470180702 A.:0.015699896441937783 J.:0.01315057799273902 No.:0.013127709595359785 W.:0.012227604655242301 the:0.012066077698672498 C.:0.011239503341189283 -:0.010917667809920447 at:0.010202424990873416 John:0.009641030210829534 in:0.009288096020886785 St.:0.008585883584506102 S.:0.007255669098801993 :0.5566805438225488 +four:0.25587583065936764 three:0.1456782962539988 two:0.10513821711219978 five:0.0410009563774479 one:0.03928295651650282 ten:0.02907322129413498 eight:0.028017710802558545 six:0.024034299266110275 hundred:0.01697260448342698 more:0.014011624331399262 person:0.009992100150018597 seven:0.008039968976899632 week:0.007990470807152254 year:0.007901657924819498 day:0.007183215848939136 fifteen:0.00683802964835203 hour:0.006167971397475078 action:0.006138694844097456 twelve:0.005765939833296892 :0.23389623347180244 +and:0.1860433460022386 the:0.106617362849882 of:0.09240428344000379 in:0.08781540789288754 are:0.05230069279766386 by:0.04202543513474129 for:0.031074286674499036 is:0.027586194378480648 In:0.026955429821338108 or:0.02154619723220775 with:0.01854244713950026 was:0.016370484153463215 The:0.014006843230690782 as:0.012480659735850963 that:0.01146964672432416 were:0.010800279750579993 a:0.00912321796513521 all:0.009038694888523185 be:0.007446835628211141 :0.21535225455977847 +to:0.2693388769716268 in:0.22454731186337298 In:0.13486291282294982 of:0.05341911416874019 the:0.04722893156323164 a:0.04136428100559093 this:0.03173074596560861 and:0.023549137672524173 without:0.015894392912562443 by:0.015153827402903955 his:0.011996152377162794 will:0.011797054978461202 for:0.009447486904213914 their:0.007999707867187435 that:0.007718321613774336 iu:0.007428578289596047 not:0.006113106009015149 To:0.005890884593675058 with:0.005694548672450765 :0.06782462634535176 +of:0.3529944501528206 to:0.07804656105462622 by:0.07404279917936113 on:0.06353160513543907 and:0.053033332422164174 that:0.049528661074006664 in:0.044214466423420154 from:0.02640315292720609 at:0.025510468534208384 with:0.024687281732901276 as:0.017082588451626687 for:0.016169549933562205 when:0.014652463992903068 is:0.012589363707383306 upon:0.012574883665494372 In:0.010983327265963022 was:0.010532255234556554 before:0.00962256340171564 which:0.00881647009983885 :0.09398375561080252 +away:0.05746860598250849 and:0.04985561698690421 taken:0.03950823995165392 miles:0.0355312759828073 feet:0.031845900191456514 come:0.022313957473317422 them:0.021637161013586904 out:0.020621546731341717 came:0.02000539576637417 up:0.019820502682224503 him:0.019195504147748815 received:0.019046714556510396 far:0.018152378296247898 removed:0.017489734983720518 down:0.017467467859455896 it:0.015386533775439217 years:0.01424855034507225 annum:0.014237643714946796 free:0.014107989586278378 :0.5310592799724048 +the:0.151564299052826 of:0.09038750472184202 a:0.07461608498201407 and:0.0466615732099648 or:0.03708629888768566 to:0.035569645185394266 in:0.030052392055566975 any:0.021357004017533987 be:0.017082462262097576 no:0.015583554621420614 for:0.01514666947239845 with:0.014723578456062631 by:0.012787654001396713 said:0.012726164481980391 such:0.011693957670550037 tho:0.01002305994460469 their:0.010002787499567302 at:0.00923663004776501 is:0.008936804169325014 :0.37376187526000376 +the:0.1921262219573968 pro-:0.12095586616796457 a:0.07535988148620182 to:0.034652024603632314 and:0.03034922111222626 pro¬:0.02872119563776924 pro­:0.023325467185967702 or:0.021537042436120743 The:0.019621109051375114 of:0.01926215281641062 this:0.017269924473249567 pro:0.017184308544074375 tho:0.0156525096235058 be:0.013361303521383181 their:0.012435539909184211 his:0.012355059634624976 re-:0.0121574670453658 our:0.011411746013432868 not:0.011263110525143859 :0.3099988482549702 +the:0.13831679120912263 was:0.13118554875816688 of:0.12220486662388153 and:0.08315445553980955 be:0.06147417952308389 were:0.0539784789952215 is:0.05261592891240212 been:0.029468854527842044 are:0.02725535912740514 had:0.02619835993470913 a:0.024610736628852634 have:0.02106863204951536 or:0.020668169904612604 being:0.020395155939534178 in:0.014180484830903957 I:0.010646436008398978 has:0.010040937302378327 he:0.009696315420895201 tho:0.009489309151610992 :0.13235099961165334 +the:0.080179419985233 N.:0.04472670796947446 .:0.04416850019122508 and:0.03948599466561593 of:0.03948073253619414 Mrs.:0.02856556486995347 A:0.027203010316600412 The:0.025783518569865924 &:0.02565855831277525 S.:0.024431280649292585 United:0.02402823931671969 Mr.:0.021766531162315656 General:0.02153288546820566 W.:0.018711271086275738 said:0.016696935772138287 Miss:0.016645165404411622 John:0.015587976033555715 by:0.012393364831605387 D.:0.011095387089672065 :0.46085895576887 +as:0.09060855599025225 or:0.05192043569509164 opposed:0.04097009620667571 come:0.036218564634179266 and:0.034558925745121885 up:0.027752746396512547 regard:0.026877557971928805 equal:0.02645097894817695 entitled:0.025804522429478234 sent:0.024339632808766668 apply:0.023717496062464222 due:0.02350969760829502 not:0.02309673736310173 given:0.02266868474782208 reference:0.022181157464010042 go:0.021579151227406407 is:0.021519266819583865 subject:0.021511972357781718 brought:0.021437570684795768 :0.4122762488385552 +of:0.3032890775890896 in:0.10698568269136242 to:0.0866599280968342 by:0.05768491431714907 and:0.05092893864576644 that:0.04623923807095286 from:0.044270170227658556 for:0.03695669896044851 with:0.0359002931363368 In:0.03258908880264268 on:0.03178999943283256 at:0.02060340219774628 all:0.016263476530955386 as:0.012488833424744645 when:0.012205571179973927 under:0.011675585363121112 upon:0.011044217447050251 is:0.010215487372697488 into:0.008347740584655343 :0.06286165592798189 +of:0.3234238876162474 in:0.1091386872803304 to:0.08020260716020487 on:0.07633833164148923 by:0.05279911546856244 with:0.037359754092284356 that:0.03493232782938683 at:0.03054081831854909 from:0.029263357369756472 and:0.025662715525915966 In:0.021088263052857575 for:0.01930814851420441 upon:0.01715654396957651 as:0.014719916560907337 into:0.012952475141158378 through:0.008343383551042454 over:0.008077082655814482 when:0.007861545121163195 before:0.0077955581730280825 :0.08203548095752054 +and:0.15075522307246067 that:0.09643609332952996 which:0.06684674367612678 as:0.06536212031310887 when:0.064471770977402 but:0.04590533451066665 if:0.029458136102980145 where:0.017798691367205507 so:0.01575242385622974 When:0.015576863455469719 what:0.014741567875184818 then:0.013135530046864565 But:0.012539346395988155 it:0.011910167259083511 If:0.011767089049104569 while:0.010840913357605998 for:0.010639233768112596 until:0.009985850229976024 had:0.009779366114346294 :0.32529753524255345 +and:0.14507320772351315 fact:0.08580533594336559 said:0.056464728489513914 so:0.05141663139801109 believe:0.03728868944610554 is:0.032697255055655516 say:0.030323479159427524 know:0.029749358812227955 found:0.025535190692382553 stated:0.021273605064562356 show:0.019511948220510757 but:0.018999393120383457 says:0.018814328565908398 think:0.016893655385130203 was:0.01658797795582863 all:0.01652317309060226 see:0.015409038245983688 opinion:0.015263158537430448 order:0.014744011681695817 :0.33062583341176116 +and:0.049457826862265124 able:0.042293293048808134 right:0.03844547321338429 order:0.0351829213732353 him:0.02780215151001714 is:0.021819824868296804 them:0.019373348862093544 attempt:0.019347479107888966 enough:0.019081358170796443 according:0.018630064859312307 was:0.018601757743426463 going:0.018223766979590734 time:0.017554955916400213 as:0.015698625902657935 necessary:0.014241144183001628 power:0.01373105218093879 compelled:0.013068351709525396 began:0.012969971672987197 willing:0.012399745260310803 :0.5710768865750628 +the:0.14739575065503838 of:0.1357431981556262 in:0.09193731994303436 a:0.05682831742699469 to:0.043876216000860585 at:0.03908590406610642 and:0.027688001665212285 In:0.022490488582954358 that:0.01992457580300469 on:0.019394670590666616 from:0.016968968543672688 an:0.016926546991607606 with:0.015505192575636493 The:0.014487870501414141 by:0.01400667595519083 his:0.013409341887155521 as:0.013268135583694019 :0.011923570033257797 in-:0.009530057489252343 :0.26860919754962 +of:0.2768534678284253 the:0.08587084750850159 to:0.07850732711498029 at:0.06485498744443807 in:0.04303767193827727 by:0.03162147904121954 with:0.030835263208438154 and:0.02928174531861493 on:0.02897957859939737 from:0.024468209846257853 for:0.02158994856775824 that:0.016501691060603153 his:0.01355257563952284 their:0.012744827071787491 all:0.010782896577398962 much:0.010302447254420248 between:0.010052733165631763 our:0.009984405012467319 said:0.009614561858370485 :0.18956333594348912 +the:0.08420913210031296 and:0.07107068750542198 of:0.06822389165938944 to:0.0599489087081745 a:0.05257718780079019 in:0.03141473158662753 at:0.021975814255332612 or:0.017694597911752274 that:0.013162839445448531 .:0.013061368692281139 was:0.012987245792900807 :0.012773694497432157 is:0.012394992910484803 two:0.011275167442196135 for:0.011036798656478955 one:0.010008200950919357 Mr.:0.008795227227627026 I:0.008735566598605277 In:0.008322108371681566 :0.4693318378861428 +and:0.11203614284734381 made:0.029480560291083903 necessary:0.027231632327903786 provide:0.01978786821063526 him:0.018624150941585572 time:0.017844902254185023 but:0.01736032991925495 pay:0.01712283223509279 responsible:0.01655246417854943 work:0.01573375727996718 used:0.015721729148453864 that:0.015344008200088246 providing:0.015123591452644664 or:0.014918878594106077 it:0.014272018550925738 vote:0.014240496926603478 out:0.013886758983508773 demand:0.013625570335128902 ready:0.01288626098417059 :0.5772060463387679 +and:0.07895257911471103 was:0.03596317658514438 out:0.024016824392823457 that:0.023672598027062328 placed:0.022844208461019616 work:0.021707439938587154 made:0.020781005318872947 is:0.020224993929329655 up:0.019794182040466738 put:0.018288921183371155 down:0.0171740551508179 interest:0.01663630075189571 point:0.01659978677065351 him:0.016175999448187352 held:0.015562908663841706 Dakota,:0.014616466073415059 place:0.01424333231426501 Minnesota,:0.014067166610364513 it:0.013665465625771424 :0.5740125895993994 +on:0.19709967973890377 of:0.17475769710479727 in:0.10653753795420527 at:0.05605389314504545 to:0.05505855680138576 from:0.04421545690731338 In:0.0407252720016951 On:0.04018740774415644 and:0.03315941548242292 that:0.02698256662678146 by:0.023950031065887497 for:0.023241138459622723 upon:0.020181836849632442 with:0.017194904532537126 is:0.013177942509670986 do:0.011655527709137846 From:0.01138882441463245 At:0.011299570854429624 was:0.008692608537960842 :0.08344013155978164 +the:0.1121155824051739 and:0.06128388772007174 a:0.029611615663795103 of:0.025636482971081846 .:0.019135141775915646 that:0.01789098939527684 to:0.014370995872724716 for:0.013391901261148247 The:0.012229419720951235 by:0.012099970269134447 which:0.011602801336596105 at:0.011513583977519188 it:0.011488181428006831 as:0.01120767231902735 he:0.010519400022514194 from:0.009483152444916213 tho:0.009080704695618436 State:0.008754972498094309 :0.008698570613222645 :0.5888849736092111 +the:0.16181878548167625 of:0.08478752643350145 and:0.05663067117263581 that:0.043620743026804534 a:0.033459027104437614 or:0.033441937654182935 Mr.:0.026938164513793567 in:0.025386075226473393 The:0.02323796951697098 this:0.01773255274011827 as:0.015108035185351747 which:0.01282016210921336 :0.012747979084699953 to:0.011822361298440314 said:0.011214574708872093 his:0.010769976080213248 their:0.010501158660934496 tho:0.010222834277566964 an:0.010141296391760252 :0.3865981693323528 +Mr.:0.3246956351384738 and:0.09607581909495229 Mrs.:0.08005628589036154 Miss:0.07978508942521689 General:0.043567184684319964 of:0.040947183033611174 the:0.038239873378936425 Gen.:0.03427080754286783 Dr.:0.026966476741658613 Mr:0.025440922214989357 Senator:0.024766430344055755 Judge:0.014364089251873859 .:0.00947582512183942 :0.009451024393071572 The:0.0077046109167506465 by:0.006379204492201368 as:0.006255572899515382 President:0.005847888630842781 that:0.005583003292873644 :0.11912707351158766 +of:0.19448734057487616 half:0.12442991753578643 for:0.09294675578841047 in:0.07685754013153907 and:0.04561348757098979 about:0.04347620690246557 as:0.039874555336819 to:0.03219517628626989 cents:0.031137835243233745 within:0.02898023442286288 was:0.02557177022544589 is:0.024108722608980768 over:0.023212616183567635 In:0.02187319083902735 on:0.021745381494847515 than:0.021519010957154652 by:0.018366092485254074 with:0.01810130203584791 from:0.015974529674998905 :0.09852833370162228 +the:0.572233945861866 said:0.1295320291053506 and:0.03507349651129447 tho:0.0250369387533049 this:0.024746593853311342 The:0.020531745241924887 a:0.018711409118984328 of:0.014533773601686265 tbe:0.012675488164921074 or:0.0075671114648927 that:0.005820820524692174 other:0.004535549386850235 our:0.0029574550551892368 every:0.0028986547792168513 in:0.002755786532869089 Angeles,:0.002612076264506111 great:0.0025911227239715407 any:0.002510011062704232 tlie:0.0023122476995702103 :0.10936374429289365 +that:0.21097312415356267 and:0.15268847568305033 which:0.09950931213088895 but:0.06476688320082268 as:0.051723209245815756 when:0.043978120041322295 to:0.026137014127546997 where:0.025172060493469463 if:0.022602197143419725 will:0.019476704834955526 would:0.018277740189997425 because:0.0165727629084201 what:0.013830789199962806 while:0.012266495446259318 Then:0.01195150614750911 it:0.01168129910514458 time:0.011536518305591251 so:0.011528912531939817 may:0.011423877014028371 :0.1629029980962928 +to:0.12022893700269083 and:0.09020394424291768 the:0.08587503820055309 of:0.06450042443224316 in:0.0310058468700829 a:0.017742048521183405 :0.015548046036689871 not:0.01491307651316237 that:0.014112408707955496 for:0.013734482372212283 I:0.013065769926808477 will:0.012848502316304782 at:0.012837991177321897 In:0.012628718855091186 by:0.012491091048660757 be:0.011425930130217754 is:0.0113962101007567 he:0.011342727513475473 or:0.01112522537451577 :0.4219735806571561 +the:0.12726855910616955 and:0.0892959780159441 of:0.062229337879632314 to:0.058292991969480845 in:0.037889522208997196 was:0.035486090111862774 a:0.03277831520841599 be:0.02993909980507852 is:0.021492638467572805 been:0.016319288425974923 are:0.01622912479566914 were:0.01571120940653339 at:0.013800451447349702 by:0.013390998935139781 his:0.013046404338315144 an:0.011587498063993411 he:0.010436524486303292 not:0.009967845652912184 or:0.009888058570455908 :0.37395006310419904 +the:0.23164293193276683 and:0.13329587354738853 a:0.06915115021611609 or:0.06740547427743179 all:0.05064012942394489 their:0.04810195972203187 of:0.033713624470132604 no:0.030429837817447878 other:0.02989140745737621 his:0.029351305332003017 most:0.02883450203168632 to:0.02430026220793636 any:0.023658769602720824 that:0.02203717972157127 its:0.01977833921933023 more:0.019273979500279075 her:0.018355894769867966 The:0.01780303139573431 our:0.017109367519813148 :0.08422497983442077 +virtue:0.062060494787377685 out:0.05417899169104244 part:0.03289673107629515 one:0.02969369892462812 quarter:0.027015883171169475 favor:0.01993830018372674 result:0.019463829004704194 guilty:0.018891084377354095 means:0.018499162894926688 end:0.018170939082736048 that:0.018121271122199262 construction:0.01726217741616459 presence:0.017003995482744873 tion:0.01673652166540914 case:0.01640819963257697 side:0.016055927605250184 erection:0.015381239457214257 account:0.015287601389485416 hands:0.015156055434805247 :0.5507778956001894 +and:0.10752804604445201 the:0.10713111211778908 to:0.08411300010325126 of:0.06367394467904443 was:0.03573927396891174 be:0.033728110127986 a:0.031084150252483126 in:0.024089390078722746 is:0.023417782171292187 at:0.01870036870926296 are:0.01721796628655353 he:0.016678861825995036 been:0.015817650766586693 his:0.014870343370833095 were:0.01466372790502972 for:0.01460325999790791 or:0.013958211115721734 their:0.013516231248831273 I:0.012657818922232174 :0.3358107503071133 +the:0.1686869164135521 of:0.09681485922914021 or:0.08214309441204815 any:0.04195976046944282 to:0.04097124107344605 a:0.04068871382502996 his:0.03928491595315876 their:0.029238944855957124 and:0.028580248139067777 little:0.025749209633352484 one:0.024241621421565916 in:0.022464689343075554 with:0.01907432917915541 such:0.018632738594089086 by:0.014375243157188506 no:0.012983810805475343 tho:0.0127586324386699 for:0.012086041835042593 her:0.01044201616299285 :0.2578229730585494 +.:0.036213533742373724 -:0.024881541353846896 a:0.023532622693251744 and:0.014208644948216467 of:0.014173628520894535 the:0.014132944037588496 re-:0.013940331028774563 I:0.01153588593174992 :0.010788914132635314 th.:0.009657207108491255 to:0.00878312772174213 i:0.007969836503967816 1:0.007143080126193848 A:0.00708384983895128 Al:0.00621096536972181 re:0.006184073098974471 t:0.005700703952372757 that:0.005593561534029062 ,:0.005480851526827242 :0.7657846968293966 +Notice:0.42028419492633484 notice:0.1368693676737673 it:0.049286638954616574 It:0.0459681783147667 that:0.0257351498677468 which:0.024379250325281484 reference:0.0199515821436504 there:0.01923250401326035 he:0.01709251352682523 and:0.014526065991369326 He:0.010674425457070397 There:0.009358478756815126 This:0.007952069781526476 this:0.006931859442703124 what:0.005977676641625522 who:0.005647142416117256 man:0.005473358731125218 That:0.004074524953603554 she:0.003766461679441719 :0.16581855640235257 +of:0.14061422670442228 by:0.07397890083971677 to:0.0645957650592629 that:0.06278196009235353 and:0.06171779412995163 with:0.024784207916322815 :0.021296554997849743 which:0.018150544625629747 as:0.015593235006414066 from:0.013045232743111014 Rev.:0.012950377448433107 for:0.01208267405942049 in:0.011345035541060299 but:0.010763995429851557 when:0.010542089526816392 if:0.007472747609427384 said:0.007100416424489038 or:0.00707214494317395 at:0.006990048717905581 :0.41612204818438775 +of:0.3486266060917303 in:0.12546197187116492 the:0.08572198828201698 for:0.06580479771909399 and:0.058613446372993726 to:0.051303627645486787 by:0.02857047708205242 with:0.027393126195566473 In:0.02422325178990633 his:0.024151988103136998 their:0.019439365227779132 her:0.013604740778302022 a:0.011365364646363693 my:0.011291100850010338 or:0.010988301612421258 The:0.009101461140689457 from:0.006972541629571055 that:0.00552251329540001 as:0.00505340933793237 :0.06578992032838174 +and:0.07181562702745725 together:0.06672214896410926 connected:0.05460722541492519 connection:0.053485248068146786 accordance:0.040816432970329504 comply:0.022327715315442986 acquainted:0.01991331996883064 compared:0.01902004432375884 contact:0.016949822974841922 familiar:0.016791563233682194 up:0.016271038698657696 do:0.015355480362757417 interfere:0.014875808889703945 charged:0.014646284015101253 pleased:0.013610051164447858 him:0.01274062267734275 but:0.012200014478196207 satisfied:0.011962054640116513 it:0.011810815262474694 :0.4930786815496771 +of:0.09129790931378902 the:0.07369883040827747 and:0.047842263382354346 in:0.04189055351593407 to:0.04045875475680249 a:0.03542341257202578 be:0.02020462051672066 for:0.01979292654746225 was:0.01760256398103379 at:0.017380150555488715 is:0.014984483003968216 with:0.014047653760730413 by:0.01374644383819499 :0.012670486581795598 In:0.01200961464556976 or:0.011563835749786333 from:0.011391516893522809 are:0.011273104484969465 that:0.010755276030689069 :0.4809655994608848 +as:0.13912235186816835 very:0.08395939879543149 too:0.07111087247555938 and:0.06739647768426632 so:0.06600245895739856 be:0.05947315874800959 is:0.055669316160408794 was:0.05319782400150118 are:0.046947307281179705 it:0.027831645967493004 were:0.0266086147713542 been:0.023721426750707316 the:0.02076014723937815 made:0.020541701209176973 get:0.017105160142503174 a:0.013428535259492972 that:0.01224184590205966 Is:0.01150515038378948 not:0.011497827729148133 :0.17087877867297357 +the:0.8720164496724387 tho:0.04690213718062064 The:0.020049037744112555 tbe:0.014608353362653797 of:0.010531132155482499 and:0.002859999174544876 by:0.0026471868598776324 a:0.0025839687482875763 tlie:0.0017670966627532552 our:0.0016744398623076587 that:0.0016363278773482784 in:0.0015877691034125033 ihe:0.0014314452382605672 said:0.0012657665366587463 tne:0.0012285756312794174 tha:0.0011553282168626636 this:0.0011250832174796185 from:0.0010033143504130397 ofthe:0.0009208976082912711 :0.01200569079691473 +the:0.11500545585881412 of:0.0897605566703555 and:0.07914879987306167 a:0.05827037833039227 to:0.0386987683614473 was:0.029282661483795363 be:0.023890810389268442 is:0.02056818843792312 been:0.017204803150083207 or:0.017094944717067368 in:0.01610392931760865 are:0.015798243080240505 his:0.01344187865263006 at:0.01321973597799718 for:0.01304287912725108 their:0.012337012043366955 were:0.012236169772424844 :0.01133284696603621 The:0.01095822742659897 :0.3916037103636372 +and:0.14532878787258172 he:0.14169851984267215 I:0.1232068105627279 they:0.06229856584902878 we:0.041787125396975655 then:0.03959106371389301 who:0.0347496848166148 she:0.032461501152429795 He:0.02430588655286144 it:0.018603440154744334 which:0.017700026449059488 They:0.015965355935782133 We:0.015349660867664958 be:0.014586244682960487 1:0.013999755458314082 It:0.01020561346253184 ho:0.009562676632576372 men:0.00882689200178781 that:0.00867344245378398 :0.22009894614100928 +is:0.18663288026832422 are:0.11189923920635261 and:0.09082375825527389 was:0.07932667514577975 for:0.06022504325125636 of:0.04633479758979378 do:0.02610564190094685 will:0.02538447028930333 were:0.02451792709675055 Is:0.021935994342203863 or:0.02153246076965202 if:0.021414230962768174 in:0.021267940803258924 but:0.0207638987832581 would:0.018837688531725606 could:0.017238880242400206 did:0.015692867986531325 does:0.01566305482031696 it:0.015248525907928847 :0.15815402384617464 +the:0.5462927534106022 and:0.047093623456138975 of:0.043944538892383735 State:0.0426228761984228 The:0.035576284857002316 said:0.035179863130529974 our:0.02620130494185742 tho:0.02088083101842301 States:0.01781890679830098 City:0.01693230336316878 a:0.013868547485549556 great:0.013642423502607715 county:0.010804256676289703 tbe:0.010420730024836306 state:0.009850835123275148 United:0.00944016230229964 their:0.009071458413259327 National:0.008641545454611845 this:0.00769052207103679 :0.07302623287940371 +the:0.12397170260116352 of:0.0943155434282568 and:0.04047242644896243 The:0.039121251000670806 Mr.:0.038849315117364246 that:0.03749617133485052 in:0.035552871266442694 Mrs.:0.022501402823346915 which:0.02123924194599288 a:0.01931574625006573 to:0.018732434543853364 his:0.014277305910035551 when:0.012369804522166431 :0.012284549055542177 as:0.00976422368815642 he:0.00970781880966711 for:0.00927189170209692 tho:0.009034083963245747 said:0.008744635319874062 :0.42197758026824567 +the:0.2430467269122022 of:0.08917059236602866 a:0.045480263362397175 to:0.03859278969984145 for:0.03838705599465592 that:0.032682330178761626 and:0.031133502326343643 The:0.02423918762599809 our:0.021849384369331447 their:0.01875903544741666 his:0.01839093432441567 other:0.017950010159178843 tho:0.016642518436289597 said:0.015187882662610867 as:0.01436454491817374 no:0.013893952788069708 any:0.013863727012173088 all:0.013823380486259342 by:0.013715877844917294 :0.277826303084935 +the:0.1847564407057139 and:0.10126478200649837 of:0.08831264818219191 The:0.05781217644693712 that:0.022136138620238693 these:0.01631671668090445 a:0.014513194758497697 or:0.01417786516951797 to:0.012988822898574776 their:0.012329949427663977 as:0.012287881083578981 :0.012262416633580412 his:0.011940145330932676 in:0.011700605535597748 tho:0.011368635516343475 These:0.011209828309073805 this:0.010982581867111285 which:0.010198916461314558 other:0.008582822905284792 :0.3738574314604434 +of:0.07576717434862562 to:0.07350329166950513 the:0.06921462389022823 in:0.06454319847236648 and:0.04364864595895235 a:0.03391236724624043 with:0.027390043624187503 or:0.027286064545967312 for:0.02474426840514529 that:0.02457902010776376 from:0.02245070396377834 by:0.02226881232433583 at:0.018917034009189 In:0.017506062218961217 this:0.015776393449387634 not:0.013892660724814895 have:0.013016180542869566 all:0.013001085706768858 only:0.01151999550198545 :0.3860623732889271 +of:0.31264034325191375 to:0.09736161228319462 on:0.08189981407903055 by:0.05936534684700278 and:0.04733118145918855 from:0.043954770278060794 in:0.04381699767343788 at:0.04136347365151204 with:0.03576972481982331 for:0.0233610720806154 that:0.01814428575695476 upon:0.011742725312595877 under:0.009023171327356364 On:0.008538552971609166 In:0.008413194624095661 against:0.00670005343352075 before:0.005842248145461384 through:0.00567109491158513 ot:0.005562745250529638 :0.13249759184251164 +has:0.45535300624257474 have:0.2346772479044038 had:0.21939775798262093 lias:0.013087232593336742 he:0.007161512530443419 bad:0.006190550709260664 haa:0.005996352382316058 and:0.005343993211927141 having:0.005105151887650744 I:0.004824601925845444 havo:0.004496357374001339 it:0.004078596404199332 baa:0.003775923784882337 will:0.0033728146541822123 they:0.0033388507153822495 He:0.003048389014721493 who:0.002961894123273212 not:0.002834702738722614 is:0.0027868317940133746 :0.011168232026242144 +and:0.07907514792093553 Monday:0.061667555687916376 feet:0.0569196410613013 recorded:0.022269716367061623 section:0.02169279828434386 situated:0.019778779953378216 inches:0.016113956199686395 of:0.014285294296900975 lots:0.013660466039414858 all:0.013318146699199984 land:0.012752252196517419 street:0.012631230247084858 up:0.011237027854254658 born:0.010992813158090298 lot:0.010664888395639728 one:0.010031222357923026 part:0.009806341977487852 held:0.009190074932307177 county,:0.0091579924007077 :0.5837546539698482 +the:0.23687114523986666 a:0.09191175961840072 and:0.06641006011902811 that:0.0574516831892835 this:0.054394209274588316 her:0.028810276588595266 every:0.026600560557873517 tho:0.02610446854143707 other:0.02516231896123195 his:0.023617713340985197 my:0.02267823237285409 same:0.022204499763850718 of:0.020754932081081073 one:0.017810740614013092 said:0.01562791712346895 The:0.015601916369227097 first:0.015427385361976005 or:0.01489876272151094 an:0.014770234916736949 :0.20189118324399077 +of:0.09129790931378902 the:0.07369883040827747 and:0.047842263382354346 in:0.04189055351593407 to:0.04045875475680249 a:0.03542341257202578 be:0.02020462051672066 for:0.01979292654746225 was:0.01760256398103379 at:0.017380150555488715 is:0.014984483003968216 with:0.014047653760730413 by:0.01374644383819499 :0.012670486581795598 In:0.01200961464556976 or:0.011563835749786333 from:0.011391516893522809 are:0.011273104484969465 that:0.010755276030689069 :0.4809655994608848 +that:0.2247058195771553 and:0.12444598076866151 as:0.10340331575861703 but:0.05252786319205245 which:0.050769030985074126 if:0.03298618537702247 of:0.02530949794898872 what:0.02052570595349911 though:0.01997142974548937 where:0.01885312819427407 when:0.015597663634982285 whether:0.013156391060427045 because:0.013022052569085101 than:0.012385597460382897 If:0.01082211854376921 think:0.01028941046704472 for:0.01005930882201031 But:0.00967271484698667 said:0.009278310536599867 :0.22121847455787774 +to:0.3214605865451629 with:0.04583454520333472 for:0.04429531592594614 at:0.030579544943937984 told:0.02889148010486733 upon:0.025535650610944448 from:0.024747361233479145 of:0.024052813162836872 asked:0.020876237713369723 took:0.020869777660619714 left:0.02064029774925865 by:0.020008617457424376 struck:0.01791893445733784 do:0.01695882476575755 let:0.016567599122700002 take:0.015660292562994827 sent:0.015261197021777818 on:0.014813002297724762 tell:0.013217751784668814 :0.2608101696758564 +ever:0.09649748069548905 and:0.08345757377982137 time:0.056369366040830975 has:0.04963717177398986 long:0.037865036484922364 years:0.03705304976226147 have:0.03128400865933092 that:0.030648523194416567 had:0.022077788370023742 elapsed:0.02060467212542474 or:0.018459942723248638 days:0.01821586032073281 but:0.017591132099331015 Ever:0.015302216438167926 it:0.014890591845021183 was:0.014778636593539542 him:0.01364746910634182 months:0.012716778562183052 as:0.011738943472517784 :0.39616375795240516 +of:0.41114614420900286 in:0.14523618081473597 to:0.09980689068887942 by:0.05849904236082886 that:0.033056681490014825 In:0.02654724280295538 and:0.026467926963172038 with:0.022459562624531214 for:0.016994325518818652 at:0.014221233728373561 as:0.013777794837292114 from:0.01258143714987559 on:0.009952586139703365 into:0.008991661372890017 before:0.006192560707044368 when:0.00585445616562478 ot:0.005478704901587103 under:0.005453418009878466 against:0.005049338068794576 :0.07123281144599682 +for:0.14811021377275707 of:0.11308162560666765 about:0.07429523213530707 than:0.07388342891858016 past:0.06068530709385529 or:0.05365089941709429 in:0.053398971760425934 within:0.05275370477643962 and:0.04983038372544148 last:0.034210367729938324 to:0.02739060067888093 least:0.02725211872341355 over:0.026995907889986383 the:0.024932541791984338 at:0.024833939609719965 In:0.022602094001986834 For:0.021983708268757642 nearly:0.016249452213374063 only:0.015932355103303222 :0.07692714678208616 +the:0.1412129250248247 of:0.10047958828563595 and:0.060867287594728973 a:0.05317063918919194 to:0.03486084017178032 be:0.03202856719820821 in:0.03165356032240527 or:0.02823002556221172 for:0.02222514145610715 is:0.021569195023501544 his:0.020405262040798986 this:0.019922873019150043 at:0.019755298644963153 their:0.017954998768884744 was:0.01639010877340683 not:0.013534948114157343 an:0.01080140038735249 are:0.010200617142558944 no:0.00959401328707975 :0.334142709993052 +I:0.13618979825539168 he:0.1017910113509248 and:0.08582194916808387 have:0.04338672280110515 they:0.03443019728571445 we:0.03194021069954492 had:0.030542440721994083 it:0.026868730475296743 He:0.023742253422595304 has:0.022708164126483247 which:0.02255838234062709 be:0.02018119398765616 who:0.020171746196214695 she:0.019944036155036076 1:0.016703770581634202 It:0.014249918272432962 never:0.012530949825587225 only:0.01172283035669425 We:0.011048438959519659 :0.3124672550174634 +to:0.13492466920331547 for:0.08433916763046591 of:0.06888461822961173 in:0.04484052397198766 with:0.04345564309960677 and:0.031595051878821494 that:0.022025273387635828 at:0.02198737709515713 do:0.02037243664546249 as:0.01894329244663893 upon:0.016810859177040897 found:0.01638246404445906 made:0.015489164284733252 but:0.01392454420532272 on:0.013410600976263107 against:0.012375085090194105 not:0.011741430609804883 by:0.010725848924082074 from:0.01065239656060888 :0.38611955253878766 +the:0.4329793024327749 an:0.2964918796905281 The:0.06904631566645644 a:0.032391279373291594 tho:0.02224400759037376 An:0.015386074311394344 to:0.01537528179239279 and:0.013617263271877598 rapid:0.011556550947782507 tbe:0.009522850901474323 in:0.008661741290042331 by:0.007868202837120725 great:0.006385588916603411 au:0.006150209577760339 this:0.005451707252618457 of:0.00536939327289669 further:0.005352141048761045 most:0.005089266392616294 final:0.004539838976468105 :0.025521104456766298 +and:0.08212848852720997 would:0.061794876952073925 looked:0.05042081976204433 looks:0.04551481878533785 was:0.04023003411450624 not:0.036042100699218226 something:0.0350139492901538 is:0.032981578610880635 much:0.03147561159068482 look:0.03000943602635309 to:0.028947434440163438 I:0.026583730761485323 anything:0.026044643890678093 me:0.02314647168459439 feel:0.021776537677664867 in:0.01974314762236534 him:0.018312326775847942 it:0.017784556437078543 just:0.017525355227627746 :0.35352408112403144 +and:0.0881564735829037 make:0.0697942275481809 as:0.05826883559436954 of:0.05651403731010062 that:0.04685486672972469 with:0.04233619165421078 to:0.03898220356738356 for:0.037737748331482544 made:0.03655927122212718 in:0.02945916428056908 put:0.02701629598133816 upon:0.02347109484140463 on:0.022917459500827315 take:0.022683514718487584 but:0.02224913677578739 get:0.019895207968392642 give:0.019697450037150083 by:0.019522781056960148 do:0.018140750365254428 :0.298743288933345 +to:0.3195729752032819 will:0.18626823526307568 may:0.08422330530496087 shall:0.060242782162461476 can:0.05916804545317362 should:0.05688857487193784 would:0.04641179200858261 must:0.041080598248278415 could:0.03797051722281157 not:0.02952204533323229 cannot:0.015406006408789521 might:0.010823790131726888 and:0.0065052911275713015 it:0.003468597518879 never:0.00251896586270885 that:0.002336982327040673 also:0.002278239746315253 probably:0.0021210593713628287 which:0.001992815033102389 :0.030199381400707034 +to:0.2132285501614015 the:0.2013793814400665 and:0.1255784472697816 a:0.09374911646845867 on:0.028666135565262096 or:0.027326555215755974 his:0.01834085143361182 The:0.017186463015864156 who:0.014262376441874376 of:0.012809210797103494 this:0.0119810388650099 will:0.01069311606348134 I:0.010506738605815868 tho:0.009817547067138508 with:0.009145813705007227 their:0.007734581680645739 that:0.007295698101164697 not:0.007187204320043467 her:0.007088931341319081 :0.16502224244119398 +with:0.13818668069056797 of:0.13059057611664002 the:0.12732348479573655 and:0.12254313237226487 an:0.07621524468646554 their:0.037310646454459515 no:0.03704466068300214 any:0.030448421496481366 as:0.025616325594654727 or:0.02520014121871928 much:0.022840847523063285 great:0.019879766647296803 by:0.01795530927249688 for:0.017148501313079087 one-eighth:0.01714739680440184 public:0.015025352220424474 his:0.012895436797486073 bear:0.01278480697344329 such:0.01225552058505477 :0.1005877477542615 +a:0.3177911106006228 the:0.21589536185688155 of:0.09437374849555938 and:0.059480893514523764 to:0.04325471114908469 in:0.04195616981162646 with:0.027554528707008266 on:0.023239596649092163 this:0.01524126007373628 The:0.014070400608021661 from:0.013712998187098877 In:0.013435723543805093 tho:0.01173543157090356 very:0.011189951734338227 that:0.009984344401884702 by:0.00966668182361689 for:0.008806651788893055 at:0.007206811563815807 A:0.007191801694473827 :0.05321182222501292 +the:0.1705346922695812 of:0.09993164141171725 and:0.05328688422144753 a:0.04924652577648277 to:0.03642101945237752 an:0.02737718485158854 in:0.027115356248349893 that:0.02505232898268159 for:0.023501137786659725 The:0.02135216783984865 :0.013985077502172432 on:0.012966372486122318 tho:0.010990809303263785 by:0.010888712462886896 at:0.010630877814241501 which:0.009784550249149251 his:0.008896576239944541 any:0.008840294836525936 as:0.00865953261292212 :0.3695382576520366 +number:0.07696325818654359 matter:0.06383734446121252 kind:0.04586988688853114 amount:0.03865628574819919 out:0.03707367049120207 point:0.03176276642712572 full:0.029947386054704442 men:0.025325191717212696 place:0.02403747181189885 lack:0.02392405812285526 cost:0.02306014155621971 sort:0.022985370623019728 plenty:0.02113133974566859 class:0.020697840362823388 loss:0.018479028999467906 work:0.01822614531887425 board:0.0176011059594404 case:0.017389077398813957 means:0.01725211617393645 :0.42478051395225014 +and:0.12153218536533979 the:0.10381731743116954 of:0.07492654219441239 these:0.02825922180755338 as:0.02269538320492951 that:0.02251307970292234 or:0.022273522101347788 all:0.01986564654833469 for:0.017581843545559965 is:0.0175460907549881 are:0.01633669492681201 many:0.016134027136569893 those:0.015510177639051907 could:0.015219306255351022 but:0.014961348630508695 to:0.014127680080596592 a:0.013910947378748125 two:0.011983453416557863 few:0.011261388910587124 :0.41854414296865927 +the:0.14340030534399534 of:0.09259862748216274 a:0.06041076090593518 and:0.05903277332599106 to:0.04954218526911265 be:0.04299942776182496 in:0.03670404195279365 was:0.031282757607865065 his:0.029157923636634716 is:0.02327855180222702 at:0.020975050145835096 for:0.017336227607871676 been:0.016413572149601915 their:0.016332403184579215 or:0.012919286974877662 this:0.01111897702495387 not:0.011058150407985644 he:0.010691894002958861 by:0.010111009427368664 :0.303636073985425 +and:0.13619855116732985 was:0.10366160333973906 be:0.06832536745191334 it:0.05038300397859484 years:0.04283841643031589 is:0.037989743362245185 were:0.03185949756553013 he:0.026441456289021607 to:0.02343523424331177 are:0.0213335830501683 been:0.020377145676803383 not:0.019474129732016746 the:0.016111349004604425 as:0.014088878681850197 He:0.013657855880430215 It:0.013525127060449437 I:0.013460071610848523 them:0.012955944494993696 him:0.012596160118672883 :0.32028688086116053 +feet:0.0719208472326295 poles:0.05759396229176634 up:0.04010587224329879 chains:0.0385088170079141 entitled:0.029123404981740347 went:0.027388526271997813 came:0.025857650765910022 down:0.025633262313841977 him:0.025574415868859987 as:0.024916209858287616 and:0.023917753661251574 subject:0.02185045005331621 brought:0.02171367122116056 them:0.021644069985480026 it:0.02099405133651225 rods:0.019030517253069822 back:0.018922583019034468 go:0.01891708435510451 sent:0.018892511875840953 :0.44649433840298314 +in:0.15006285032713573 is:0.12629417420771563 and:0.085838037933443 was:0.06662500029394575 that:0.060793161527687184 have:0.051421207413440466 In:0.045285860621378286 be:0.04515102887965398 had:0.03909353812491992 with:0.033170426114856724 made:0.03046082423971589 of:0.02479281752029644 but:0.02414017334048163 Is:0.02026765300152786 make:0.01640039309085714 has:0.014870027482763568 find:0.012888489549987637 are:0.012593015143803583 on:0.011461834078239266 :0.1273894871081503 +one:0.013840120014142077 men:0.012668183936942015 ;:0.010508845700208262 made:0.009353943074503313 up:0.008858597813764937 in:0.008310874854285305 :0.007613126495098711 wife:0.007326581400764723 and:0.007143810180547233 right:0.007089500945407213 long:0.006952232527637546 him:0.006186291574535301 house:0.006147933152275845 each:0.00612728871064932 metes:0.006083462540113257 time:0.006079780063852647 work:0.006018479767459249 life:0.005973854081004534 good:0.005926627145993316 :0.8507904660208152 +the:0.10749650932060079 in:0.060962137122310196 Fifth:0.05466100539621028 Grand:0.046757530499549074 :0.021340996336200475 and:0.020022804698319793 said:0.016872604563930214 of:0.016538668524174124 In:0.015195079608112248 county,:0.014785440190211337 .:0.01281937986689769 from:0.012264916808594059 County,:0.012059069254834636 Mr.:0.00985824917715305 tho:0.009462809972221866 Third:0.00920920905545721 by:0.008731082650428459 all:0.00847081577655347 other:0.008026259089804913 :0.5334654320884361 +is:0.11852008984255555 of:0.08939186844734127 was:0.08514032189887781 and:0.0796191565504778 in:0.05841897057277058 as:0.04141517031113783 to:0.03527418704711287 by:0.03208349761601984 any:0.0316178936538981 no:0.03129759887347578 the:0.027925111379291493 with:0.027276745378366836 that:0.02553986982270336 only:0.025049036289369744 but:0.024821881507018136 not:0.024674263954361692 for:0.024307050149215317 be:0.022936841776455594 from:0.02241706127132092 :0.17127338365822947 +the:0.47963649909948025 a:0.1980333387776123 The:0.032684378962804905 in:0.023753274327262028 tho:0.0227834431157552 and:0.017521356893686 of:0.01650869996336362 by:0.011433158490045853 tbe:0.010688927154379668 A:0.010024540257254586 for:0.008368543503439923 to:0.00804661004604115 little:0.007583369346226113 or:0.0068971384421978275 his:0.0068957970278066315 In:0.005816081970549526 no:0.0052483776505908315 that:0.004764560901284385 with:0.004157418878294784 :0.11815448519192441 +the:0.19271016318031473 his:0.13642462616896553 a:0.0857411945721913 their:0.08287775611627331 and:0.052671904126793886 of:0.04164229014896573 my:0.03610172330098289 our:0.030917624870973492 her:0.02659528737726333 in:0.0258632208025485 no:0.023160078396803358 or:0.022318821107534404 your:0.018335861055022242 The:0.0163614388549401 little:0.01575351207435766 tho:0.01200567726726344 its:0.011752251048115158 by:0.011562194966292062 great:0.011019679847577436 :0.14518469471682144 +the:0.2014954853133326 of:0.0861414391416471 and:0.07280385406465283 The:0.04559186983907473 Mr.:0.03492086363563214 a:0.02742399264974953 that:0.027378585421016878 to:0.018065273637566843 or:0.015887011513874543 tho:0.01278835454433166 :0.012776359790067669 in:0.012534070531893962 this:0.012110080689405844 his:0.010243683215264043 their:0.008705606823750465 said:0.008477115479989892 .:0.008231419848711858 which:0.007797785800011309 as:0.007794443306140376 :0.36783270475388574 +it:0.15842067449952216 It:0.11266296488991237 there:0.10075137814263894 which:0.06308057904105996 and:0.057152212673537636 that:0.03240570040283884 he:0.028530293604294554 There:0.02331429258517207 This:0.02066967028753897 this:0.019581475901737512 who:0.01837384145181066 as:0.01641543540230267 He:0.011657667240687342 work:0.011089211166953945 one:0.010908939139183145 year:0.010258675985158236 time:0.009667813386736106 day:0.007498165760315179 crop:0.007353825240397292 :0.2792071831982024 +the:0.6040991758988521 a:0.1049153348715488 of:0.05477572552776966 The:0.040257640499111 tho:0.029458432966597507 and:0.024777914825224533 tbe:0.010147348970067012 in:0.00923151564050348 our:0.008865906467094025 on:0.007679280848512712 this:0.007554423050036711 for:0.00592050012025814 or:0.005794558538932496 with:0.005450717690245419 other:0.005374860255093215 three:0.004854352982817005 that:0.004695844217814418 several:0.004574161056190745 his:0.004566581020025752 :0.05600572455330535 +of:0.28767355066866834 to:0.08775711267569858 in:0.08678131196995101 and:0.05160598694501188 on:0.04646139928102899 by:0.04519522654900943 for:0.044547789071328545 with:0.03396756772609607 that:0.033699232901107726 from:0.03075346596941143 at:0.027039283056790858 In:0.021061449543044047 as:0.017514234937992545 all:0.012543839382496166 upon:0.011844431150487573 is:0.00998972746569266 was:0.008814315973987914 into:0.008557199930727406 through:0.007781895704231326 :0.1254109790972375 +is:0.16479892722132827 are:0.11497239429220653 was:0.09690245337664112 if:0.060096881527285845 were:0.039663932084719716 and:0.03902733713877854 have:0.030889941558194425 could:0.03008897004974448 Is:0.024845995017441454 do:0.02435597241936098 had:0.02401743523484971 it:0.02318552060593053 or:0.021846686047962582 did:0.018040716511073494 for:0.0174769776705135 does:0.01684316726260629 has:0.01649035834678383 but:0.01516558048585249 be:0.013364567151924361 :0.20692618599680182 +to:0.3902248351992155 will:0.09422031682654888 not:0.05718293117074568 and:0.05429445104688248 the:0.041787102861507025 a:0.03428148535477407 of:0.029326535793497106 would:0.02871798401497723 may:0.027645401541131594 shall:0.025608781308398363 can:0.01987050585092621 or:0.018857158763347703 could:0.01572132302102202 must:0.014456151879043266 his:0.01205964168492388 who:0.011951973030706055 they:0.011651517081971074 their:0.011021128897568106 that:0.01033673472550578 :0.08978403994730795 +the:0.0761699747584507 of:0.06910894337301239 to:0.057426693761628046 a:0.04722510727028135 and:0.041113695383597756 in:0.028175857521325946 be:0.027974353909431027 was:0.023012276842095766 is:0.020455907852280766 at:0.015315990474711083 his:0.015005119700540654 that:0.014222259680552646 :0.013114492114599044 be-:0.011687755181736238 by:0.011190835051306355 from:0.01044988745123263 with:0.010430562728357911 for:0.010286327173007152 been:0.010131793821093036 :0.48650216595075946 +he:0.16810604119779135 who:0.08683247190938688 and:0.0806366519000466 it:0.07486967617677238 which:0.07273173695517547 He:0.060114547264162786 that:0.04844891587724119 It:0.041548586257651884 she:0.031397566575055894 man:0.016763352428312665 She:0.013974711716748632 one:0.012891605047799723 ho:0.012391250513385084 lie:0.01198432503737796 as:0.010396839294044563 be:0.009462309576691492 this:0.008153890280188123 world:0.008132667462835433 company:0.008045139461866845 :0.22211771506746505 +the:0.27449042557501796 his:0.07446235127592438 of:0.06823482179310704 your:0.05164396423668424 our:0.03977761133490518 her:0.03493934683682019 my:0.03390121507848254 and:0.032287988417920396 their:0.02745628018251662 a:0.026255141010936223 The:0.024207878823049537 to:0.021847511662524133 tho:0.01640620128659847 whose:0.014252599284649442 Mr.:0.01381925219707651 as:0.011583110611870511 its:0.009382886923051077 own:0.009133834191881652 these:0.008795307616312283 :0.2061222716606716 +in:0.3610147356168867 of:0.14588771406999068 under:0.10331282350010484 to:0.0786261251618387 In:0.07388951158915848 from:0.02938069945336926 for:0.027449803821724808 with:0.024619404143190745 at:0.022510316831776282 by:0.02184288568844749 on:0.015403577349658418 and:0.014499927394313978 that:0.01382601131093433 into:0.01299578534979319 through:0.007679869020810092 iu:0.006839818792977313 upon:0.006025749517241852 At:0.004589559624804198 over:0.00438093381521954 :0.02422474794775915 +of:0.18444708001377602 the:0.15575104164002218 and:0.06930590771525791 to:0.053279875650937704 a:0.04606355444489516 by:0.04189791750022277 in:0.02465205077311787 that:0.022901635522430387 from:0.02068024622243298 for:0.015474058563852528 with:0.015459448866290438 The:0.014608322345766547 or:0.013064342674879355 at:0.011570191873071092 which:0.01003006616689784 in-:0.009389199552605325 be-:0.009338737412216056 :0.00931863771672642 tho:0.00927919706578824 :0.26248848827881316 +the:0.09728057071804312 of:0.09180464700648173 in:0.06460106972359687 and:0.05649579282750649 to:0.046347334376164465 on:0.033039223063428005 at:0.026451670936514977 a:0.02127421519055784 :0.020189654291712676 In:0.017330922193653803 that:0.016767149718093937 by:0.013374184270114406 or:0.011356234029573808 for:0.010747284928394564 said:0.010476400747758333 from:0.010459599031045028 as:0.008613855674767771 was:0.008281770689724757 this:0.0080363315422214 :0.426072089040646 +the:0.11919516938815296 of:0.07230453158552728 and:0.05781056740443249 a:0.043018564803886335 to:0.031305092790907506 in:0.020848713353460488 at:0.014270110001066288 .:0.012526810245749479 :0.012413283442322082 for:0.011719122709941797 by:0.010808400946589808 or:0.010404172990115616 The:0.01003576004804544 with:0.009811868184449042 tho:0.009295902015355835 was:0.008924239095331684 that:0.008672304223433876 is:0.0085591147338948 be:0.008335143826716943 :0.5187411282106204 +the:0.13085155515951236 and:0.05365417286262638 of:0.04895753737335417 to:0.03945510998403771 be:0.026185069650174825 a:0.025218358861925284 was:0.020399411562331562 his:0.016994807374286436 in:0.016962851904168824 at:0.01634566653620667 that:0.014389154792327946 he:0.013058505277931726 for:0.012846791569937116 is:0.012162173613529956 or:0.011744881549911781 will:0.01163268805406098 their:0.011117604787652864 are:0.010916960165726951 were:0.010758700134034 :0.49534799878626246 +was:0.22096621373198494 be:0.1784459997053612 been:0.0785489355082485 is:0.07604293951319259 were:0.06959095647849681 and:0.05640365738754801 are:0.050762660306288974 honorably:0.034529817988401316 he:0.02956825628809345 have:0.020130919618332063 being:0.019682372456410743 had:0.01936410233829755 has:0.01328785845752989 well:0.008874506273330543 ever:0.00801980406845788 now:0.007954032999197471 bo:0.00783599845765181 so:0.0076410756764515066 am:0.006057448187893476 :0.08529244455883128 +much:0.2286185007428238 is:0.15064867814938582 was:0.05532919318207219 considerably:0.0534321568023478 be:0.05093895729137108 the:0.04228833320187425 far:0.037116124015863575 are:0.03261120756242495 not:0.03229921317124863 for:0.03191100138965354 a:0.030575171244704626 Is:0.029807973710170722 more:0.02604622894230176 no:0.02586826058180859 and:0.020443087869127293 little:0.01976859492051943 of:0.01870732574241094 in:0.012749449320896781 being:0.012693169262918462 :0.08714737289607578 +on:0.19046554179412706 in:0.09787174422039924 of:0.08754647015328733 On:0.07088917160235816 In:0.051942691557766936 and:0.04706594821606396 dated:0.04592661884909559 from:0.029341631458545424 to:0.020313080928891177 :0.020064875698456552 for:0.01353184365650197 by:0.012883103528611476 before:0.011491984646559206 o'clock:0.009098041415425636 the:0.008665030824958606 recorded:0.008171263206884546 Miss:0.006709239655897916 upon:0.006246636031728517 with:0.006072470909105439 :0.25470261164533525 +and:0.21000333250128073 that:0.14460006524644084 of:0.1314233023522708 to:0.041855737597833155 we:0.03118548567873227 but:0.03061212017214937 when:0.02899841082160588 for:0.027721771743303515 if:0.026292727409519837 which:0.024578376850160483 at:0.020093946757001303 where:0.018953053820347246 they:0.017424332889972773 do:0.017324572867459812 as:0.014043772004425328 We:0.013316899324972474 nearly:0.01263958772642781 in:0.012557535724915117 with:0.012260091027663941 :0.16311487748351733 +the:0.3111804399739056 The:0.07911962294584374 of:0.06877525454166532 a:0.05934373183010399 and:0.059202186530422425 his:0.04598329529122749 their:0.04427044122227032 tho:0.02966552121861866 our:0.028780995465668834 that:0.022332985107221114 its:0.020767966635724083 great:0.019482579009147526 this:0.01614622972811646 all:0.015864575253238963 her:0.015024952869859524 tbe:0.010797707753406412 good:0.010304883140621985 or:0.010228726837248608 new:0.009500713267192889 :0.12222719137849607 +to:0.3190771545421261 will:0.21605638877977743 would:0.10147253698987338 shall:0.07612350178826038 may:0.06505175011977053 should:0.04620456837505543 not:0.03056517855220481 must:0.0304999993348572 can:0.01567394057796055 could:0.012730871138441026 might:0.009711913768001802 and:0.00914283552318429 cannot:0.00718060748824185 it:0.004615457111819607 also:0.0034036467109704034 only:0.0033169867952911607 that:0.0032439221132836934 To:0.003002673501863115 soon:0.002926110938652395 :0.03899995585036482 +neither:0.3865617992697378 the:0.07746424140819994 and:0.047975611105884025 of:0.02665633379111814 to:0.026636192025379053 for:0.023006967259198 in:0.020727309405945075 not:0.01704487258121643 a:0.014904377530555528 no:0.014292274093123756 nor:0.013387527722910682 more:0.01315208341306639 that:0.011200244855664801 or:0.010525415660261196 their:0.010319689186861426 I:0.009194729573670754 be:0.008863726223914648 he:0.008374708871587398 con-:0.007319158099148111 :0.25139273792255684 +the:0.2710362463294961 some:0.08878448669782103 and:0.06794531130127543 of:0.05767263222121856 many:0.05765621093244194 for:0.04938369328163818 or:0.04422517154168855 any:0.03570980187398058 such:0.02483395001305694 two:0.022341018011792415 several:0.02194344245842336 in:0.020901255944164848 a:0.02023332271519078 all:0.0198251325484371 these:0.019413425264669226 few:0.018417082412250266 three:0.017981313902402825 The:0.015877781806308243 most:0.012318700323236844 :0.11250002042050679 +of:0.2786869884756784 and:0.08187726424297313 to:0.08114194003597801 that:0.05704296997692728 by:0.05364169830723587 with:0.04401145496229799 in:0.041885902335371275 on:0.0410183315221572 from:0.03238377990418051 for:0.027759690787463584 as:0.02606495259604395 is:0.019621285436677214 all:0.016084905459975752 was:0.014814167076018302 under:0.01427848415316126 at:0.012449990243959977 but:0.01169748328089889 In:0.011495759954389556 when:0.01132805365632446 :0.12171489759228736 +well:0.11482583804944232 known:0.09871763831710513 soon:0.0916505083085803 far:0.07244252345830873 and:0.05646760229569708 long:0.033191133685989645 such:0.026114132691679413 just:0.021539382495143138 much:0.018216698075154383 but:0.015820973354116454 it:0.015060478378985437 that:0.012982875435048865 regarded:0.011853385324054824 inasmuch:0.011638912473280656 him:0.010904627694769634 same:0.010576795833003501 Just:0.009621947202407478 them:0.008618852072826538 designated:0.00803461652825095 :0.3507210783261555 +the:0.4974755367636856 a:0.08079695177834019 of:0.04417207891683189 too:0.03456001331894926 The:0.03173021833234399 tho:0.026538378335182335 and:0.025029901918076723 his:0.01599237848186884 our:0.014732643558335841 this:0.011712894293448827 tbe:0.011574123324359973 as:0.011108715549321737 its:0.009889710308694063 very:0.00928765997312352 their:0.009154808580857656 in:0.00827403188422563 for:0.0072962486061360745 that:0.0064311599617230715 until:0.0062632009302562375 :0.1369793451842385 +amount:0.09327133697560105 number:0.05722220127436145 out:0.047868115498619176 years:0.03253349517812071 want:0.030488352110644223 matter:0.03034049811922886 instead:0.027941854201083978 piece:0.026887747301727903 deal:0.023672881721205442 plenty:0.02289001446827418 part:0.021787563183806934 purpose:0.02169601343209133 lack:0.020203019589004872 cost:0.018971240439688473 hundreds:0.01896005375952587 kind:0.018703860329734527 loss:0.018613767570611985 full:0.018438951307338892 use:0.017932255330767435 :0.4305767782085627 +be:0.10129510231251501 was:0.09797555667521879 he:0.06818939574403107 been:0.06240425315961119 and:0.05663313221365591 were:0.04811006556038988 have:0.04545321102682039 is:0.03957693432217192 so:0.030656188144076512 are:0.028985673818780967 I:0.026750358667359846 ever:0.023963171676537724 had:0.022731039241685947 has:0.020107321222240186 as:0.018769586826291425 it:0.017281103492370078 He:0.016326202052488352 being:0.016201734436099242 she:0.015818265913681438 :0.2417717034939741 +it:0.16558174341344517 It:0.07846395477223078 there:0.068926656508768 they:0.05354081626270712 that:0.04867727640265432 which:0.04505196720686623 he:0.0439264118286433 and:0.04292049757801078 I:0.03259451855648658 we:0.022714282810773655 you:0.017312799630666443 There:0.014753102337007622 she:0.012061733113950288 who:0.011822775785340672 what:0.010328641715673107 law:0.009760151038589949 States:0.009676543902658263 man:0.009568256342280966 men:0.009031003643309513 :0.29228686714993724 +I:0.194572946560805 never:0.11292403808506415 he:0.09621560448479283 they:0.06232296612460989 and:0.0587289480310577 ever:0.05204154382808604 who:0.040037557927399436 we:0.03445253276720314 she:0.03162615129619353 1:0.030857068998036263 not:0.02734367986483325 you:0.02242535781856432 one:0.019528059449688117 to:0.016991794585179628 He:0.01686667684196274 have:0.015475154111820297 that:0.012665070749191943 ho:0.011208041270980296 which:0.010892814615102924 :0.1318239925894285 +two:0.06731410521783782 three:0.06332661336280389 five:0.05257139032969956 four:0.05037119518233192 ten:0.04142654411705222 six:0.037965108938449815 100:0.0351157415083047 many:0.03130623672196738 few:0.0312773581584376 hundred:0.029060462683159757 twenty:0.02680362814721475 of:0.02613316769491393 20:0.025734507636269898 40:0.024717276125353155 50:0.023804251811458826 seven:0.023241647643578122 several:0.022644926882809977 10:0.02123582940990559 fifty:0.021006477509390654 :0.3439435309190604 +to:0.1629676664781765 the:0.12611994756059708 of:0.09353315392063503 in:0.08340665781992769 a:0.0758755352865653 and:0.06197396707727325 be:0.04278197007377063 or:0.02403652122939335 with:0.022616914850986856 is:0.020236529557239064 was:0.020208518033609194 for:0.01924132534428822 are:0.017180002746298988 been:0.015484971852940737 In:0.01451370479113944 their:0.013978273847318494 his:0.013586892317000075 no:0.013407050401081604 that:0.013255606503800544 :0.14459479030795797 +:0.06495504634025394 it.:0.024259645527365706 us.:0.014283838040208954 them.:0.013062691693877143 him.:0.010251533588272332 and:0.007445513631164313 country.:0.006979686636440219 people.:0.006806747011321977 day.:0.006078349474555142 I:0.0057551812278331445 world.:0.00564713123767781 time.:0.005504520423605 way.:0.005189517076472227 men.:0.004780914436153976 her.:0.004623992578770669 that:0.00437240443737213 ?:0.00420928573691927 life.:0.0041989255555494355 all.:0.004109449502088778 :0.7964856258440979 +of:0.22732382576473048 to:0.13639104364627877 in:0.07498151114373024 and:0.07048425894105548 by:0.06410090407338918 with:0.05421328158440611 that:0.042435959797860384 from:0.02933869669348069 on:0.023987187165762095 at:0.022383320251142154 for:0.02168535088366439 as:0.02091232036532168 is:0.01603155866069571 In:0.015415275669636498 upon:0.014675298490069292 under:0.014406697117059507 was:0.010997487638256002 when:0.009914393852257893 all:0.009519247388533455 :0.11980238087267002 +up:0.01005369458901579 out:0.010039135936527655 in:0.009324925399632823 time:0.009183359230439617 made:0.008232052152426169 him:0.00821044728166685 null:0.007852030150168585 it:0.007506491477327948 good:0.007220461939850014 large:0.007206753980094084 ;:0.006787509290867013 her:0.006691652971429736 and:0.006599271070826357 on:0.006496035521728064 life:0.006261739808223006 health:0.006248350732100973 land:0.006189776551443354 work:0.006158273169402679 rich:0.0061316701004196315 :0.8566063686464097 +and:0.21826271236582476 but:0.07786322286315207 that:0.07297530455359287 time:0.048173993521951376 him:0.025422941451570657 day:0.023919825329450247 But:0.022673802036264647 ago,:0.014983250869954024 or:0.013227498019206472 as:0.012436492782359875 her:0.012172053648972328 even:0.011203608850512945 days:0.011109527329938107 me:0.010162603484838058 was:0.009781696081132404 it:0.009683440523936696 And:0.009395797541515854 morning:0.009028004201957226 him,:0.009015124136832885 :0.3775091004070365 +of:0.28767355066866834 to:0.08775711267569858 in:0.08678131196995101 and:0.05160598694501188 on:0.04646139928102899 by:0.04519522654900943 for:0.044547789071328545 with:0.03396756772609607 that:0.033699232901107726 from:0.03075346596941143 at:0.027039283056790858 In:0.021061449543044047 as:0.017514234937992545 all:0.012543839382496166 upon:0.011844431150487573 is:0.00998972746569266 was:0.008814315973987914 into:0.008557199930727406 through:0.007781895704231326 :0.1254109790972375 +one:0.1028303141280697 part:0.05963429477052991 out:0.04766456937681193 some:0.031418679026461914 members:0.030764490253327767 side:0.029940657362655835 portion:0.022063658796890564 office:0.020457735219956013 member:0.019726706386316174 end:0.019666887540649894 tion:0.018667441728710307 parts:0.016814747270460957 people:0.014112771422418794 all:0.014072739582212475 any:0.013183573287639892 One:0.013083578354183906 that:0.013024335602903442 account:0.012482348155001894 many:0.012077825070275192 :0.48731264666452345 +and:0.2655633681262046 of:0.0665583556525568 to:0.06303956967454911 the:0.0385941246339954 a:0.026017946599315094 that:0.021784832721903097 or:0.02166259043716693 be:0.016329008716873917 only:0.01595654835356539 any:0.01580777649323081 an:0.015730621080600027 he:0.014002630343528916 time:0.013416651198292547 as:0.013027461044102646 no:0.012586352795730898 all:0.012307547811730097 which:0.011448770359835948 with:0.011327420155893303 I:0.009967947490623994 :0.3338704763103005 +and:0.07988576368470705 place:0.07808668699377914 point:0.04187892377224633 spot:0.026988713089023585 that:0.026950403214372795 places:0.0242261991358262 know:0.02122061657422609 cases:0.019801696544967932 case:0.01703897244285353 or:0.01604479066694573 room,:0.015792288555534502 house,:0.01397380584026346 house:0.012901302654667612 but:0.012007970525272324 room:0.011506867703448177 street,:0.011194793832477198 city,:0.009151277106772552 just:0.009036936309168814 home:0.008828664404073708 :0.5424833269493732 +the:0.47337681082014493 a:0.19602639762952803 The:0.04177483565663454 tho:0.03665536075429964 and:0.01938623770937688 tbe:0.017989405919033023 full:0.011196430983360105 in:0.010356516925043656 high:0.0101451828069199 dis-:0.009629395544787953 first:0.008100463669174477 or:0.007693385702298878 two-story:0.007616271250048167 :0.007428181258229004 A:0.006833476906003211 this:0.0060980532826450965 great:0.006067540602371307 no:0.006000799085923535 that:0.0059720824146246914 :0.11065317107955297 +of:0.10036425554061128 and:0.09867255827094257 in:0.04887477001133228 to:0.04309676529803197 fact:0.03312124920228808 said:0.028016465130273754 on:0.025147031828386315 all:0.020897671259005178 is:0.018989333611116044 so:0.018899457882617265 from:0.018463519784011995 for:0.017651195592365977 at:0.016946018612698295 know:0.015554635744109193 believe:0.015397314140675087 say:0.014489633297242495 with:0.013970217188878864 by:0.012605124887586036 In:0.011949884106238937 :0.4258928986115884 +made:0.0999812034390529 and:0.06680208263369662 caused:0.02435411478715239 shown:0.02379785223577525 up:0.023253655008919294 ed:0.02312002180398423 out:0.022293807888227747 taken:0.021988971765594088 done:0.02128782706813444 given:0.020283609421760777 paid:0.017098570970207227 owned:0.01708227903067019 that:0.01698438626809451 or:0.016145946252097726 him:0.015808363688274 followed:0.015366441255538056 appointed:0.015126279845513936 held:0.013990473525433292 approved:0.013949758860964168 :0.5102843542509091 +and:0.06294174402249925 made:0.051963951182036026 done:0.03285365340526667 that:0.03194201731348678 or:0.030436327465459028 prescribed:0.026088772322805463 provided:0.0229098261898634 given:0.017873406292607454 side:0.01728887172804767 ed:0.01713865405572736 allowed:0.01704689983426001 them:0.016520519459967437 required:0.016242773282203016 only:0.01602324352397001 it:0.015276968501667959 taken:0.013128568212857503 owned:0.012754064015063064 used:0.012752397967944121 followed:0.012481637496520532 :0.5553357037277472 +the:0.27117279100957487 a:0.13274497838886004 of:0.07802422069306272 and:0.06048059357010246 to:0.03479318470572605 in:0.03226154379950956 an:0.02990104343056143 The:0.02787034445705685 on:0.02049313206005146 tho:0.0173379563010705 with:0.0143300889371812 at:0.009260987388793617 for:0.009074318633092151 :0.008694115959804863 by:0.00821019082497938 from:0.00794316108518417 or:0.007783862264386115 his:0.007592889863392041 most:0.007483800485523152 :0.21354679614208735 +of:0.2827893086727355 in:0.12594121439613823 to:0.07614236095752584 In:0.056866726852010004 with:0.04764994985541085 on:0.04216300777660257 for:0.04211908827612263 and:0.0401678636933972 from:0.03822997796278334 by:0.03782454114907114 that:0.030460211818611818 all:0.017608712832426127 at:0.01692390259406634 is:0.01637836658486631 upon:0.014635672154542713 through:0.011699557253975182 into:0.011177938867688567 over:0.010284011044007134 during:0.009462927035917041 :0.07047466022210143 +and:0.0744071815217051 of:0.062327640074199574 was:0.05611275620725382 the:0.05028201684505197 be:0.03628695320771205 to:0.029932147498110788 is:0.026181396917062866 a:0.024041952440544814 he:0.020929128632587234 in:0.020783811127553377 were:0.020120248064219068 are:0.017680218314388735 for:0.014840872780844385 it:0.014561851773187301 or:0.01323066511184128 as:0.01296450476197824 his:0.012240994235073263 been:0.012091200260570487 with:0.011032570382745993 :0.46895188984336966 +;:0.01728503724290684 it,:0.011083247175262552 him,:0.007874485841475667 them,:0.007872372597881986 one:0.00734116518537543 years,:0.00654765591957528 ,:0.006465475987305211 county,:0.0057592068985032096 city,:0.005649947156005024 it:0.005183738211984001 :0.005086501960041609 up:0.004990791859445371 here:0.004911433071310691 time,:0.004710649686386755 him:0.004691333341702117 year,:0.004652774579796443 States,:0.004651113555906939 in:0.004347352099160303 day,:0.004340578540385537 :0.875555139089589 +the:0.5506410238055716 an:0.1132210881672918 tho:0.0364817624340293 regular:0.023795859334339985 The:0.022908306494512694 of:0.01972732989405063 tbe:0.01759487944631101 and:0.017327251799573118 or:0.013690796865402415 great:0.013248156254047726 said:0.012434516192928331 this:0.012303341324503609 our:0.010845038071719658 a:0.009752329994599707 An:0.009399904614684642 American:0.00772163212474852 States:0.0069303577945219585 Federal:0.00659350386506426 to:0.006281516502420928 :0.08810140501967809 +to:0.08034344102784367 and:0.07559770811618696 of:0.07556417531451855 in:0.06430708336571542 was:0.0433904303290245 the:0.03714196666882291 is:0.035489587378076955 be:0.0327312593685656 for:0.026390414838272 are:0.026389447141360618 a:0.022518133573586962 were:0.020827030628718577 In:0.01908623855113952 will:0.018588649062266573 or:0.015820867600591017 with:0.015642320946412592 have:0.015541197933978465 been:0.014201070507074713 not:0.014037796634584664 :0.3453911810132597 +of:0.09129790931378902 the:0.07369883040827747 and:0.047842263382354346 in:0.04189055351593407 to:0.04045875475680249 a:0.03542341257202578 be:0.02020462051672066 for:0.01979292654746225 was:0.01760256398103379 at:0.017380150555488715 is:0.014984483003968216 with:0.014047653760730413 by:0.01374644383819499 :0.012670486581795598 In:0.01200961464556976 or:0.011563835749786333 from:0.011391516893522809 are:0.011273104484969465 that:0.010755276030689069 :0.4809655994608848 +and:0.07359963406644195 be:0.052667135004264946 to:0.04483536256874564 of:0.043448293679263235 the:0.03579172892628988 in:0.028005289969665195 was:0.026700397492138477 is:0.024892551934152005 re-:0.024162182625676702 he:0.024086629517294657 are:0.02098604388819216 from:0.020307931541148256 a:0.018606881911690538 or:0.018077853608073062 for:0.017195224169077532 been:0.01615904189338184 I:0.015254891559368164 :0.015184018660626356 which:0.015016145996292442 :0.464022760988217 +to:0.11907451897987022 that:0.10340978255194147 and:0.1006492187264264 as:0.05319379477944825 which:0.04080211797937983 when:0.03850296237842544 will:0.03644627605468719 for:0.025990869367710324 said:0.024337329296536588 t:0.02017092924973209 if:0.019964413996762742 would:0.017814172310148816 but:0.016714722696324104 where:0.01588124954638003 before:0.014343173039526293 may:0.013436312779759957 should:0.01300899975912763 shall:0.012223863301211068 of:0.012111728150862542 :0.30092356505573903 +the:0.1995051608067304 of:0.06396229459684612 and:0.05282660488447008 that:0.0348386923597088 The:0.03175596856312186 a:0.02559002970661738 in:0.023004153267151637 or:0.02063445589169463 to:0.018089782799462325 which:0.01681837010133177 no:0.016818072614092686 as:0.016228091281832883 for:0.015810375530307914 tho:0.012928855453868685 any:0.012753077340320081 such:0.012200778634757771 he:0.011989420774490698 Mr.:0.009950685457926179 more:0.009863070689844792 :0.39343205924542335 +is:0.1738715461353775 was:0.10200041174883466 and:0.06314309819588981 are:0.06165713866472291 but:0.04186982495745935 has:0.039398402850754334 it:0.039060768643964704 will:0.03794363778434516 had:0.037402545107219805 would:0.03590086837796079 were:0.03192449160560687 have:0.03158952705835127 Is:0.031523214743115535 could:0.021283456806792226 do:0.01709497558445978 did:0.015879202494715836 that:0.01478429232657224 does:0.014759611493145945 shall:0.012729480728099887 :0.17518350469261137 +and:0.090008948929077 of:0.037185585503241636 is:0.03497647007048458 as:0.029590194330755833 was:0.024879817281184505 .:0.024390014205090738 it:0.023158396103517845 It:0.0166175937809591 I:0.01636372975364792 :0.011145592311585677 that:0.010652753395590228 to:0.01056692575266286 by:0.010247262982279222 the:0.010177417105961461 con-:0.009547195165157594 there:0.009345239296475237 be:0.009311896014198058 for:0.008935230400986479 or:0.008841214417769095 :0.6030585231993749 +to:0.15409302607595318 and:0.13697337718100447 the:0.06665025615718659 of:0.06398226193893282 that:0.05078909016627419 which:0.0418696350228753 in:0.039794263850570444 for:0.02427859046065791 :0.024148334933752638 or:0.022186364606602567 In:0.015685597006190162 by:0.014633033110719123 but:0.014008757263593779 It:0.01315192949400844 I:0.0123924979006898 this:0.011808045587959545 there:0.011023048223164158 it:0.00987957736428014 with:0.00986242597992674 :0.26178988767565803 +the:0.1707468140069325 a:0.11863570335727734 of:0.08338838392179386 and:0.05271079358310756 for:0.028445541653615875 in:0.0263163061146465 to:0.02587000426422351 some:0.016347937202711046 that:0.016024456084053815 by:0.01598386852405779 at:0.015566267628987553 all:0.012962930362764578 The:0.01275313950938511 as:0.011608737697819343 tho:0.01078732700552196 or:0.008946741867590998 an:0.008945020365313389 one:0.008824295790225206 :0.007727775157876972 :0.3464079559020951 +and:0.10323917526896716 of:0.09444777512198123 the:0.0766170893875365 in:0.05294348726233364 to:0.048370328318699606 be:0.0431099317100867 was:0.04069175676550879 is:0.02507640819541853 a:0.021961918138953075 for:0.019391094115388044 were:0.018297854595109953 by:0.017864812002457285 with:0.01598874180785276 are:0.015221314337324656 been:0.014239844083403588 or:0.014023384441627833 that:0.013579768567816232 at:0.013476852894922698 on:0.012523656469366701 :0.337934806515245 +the:0.06533691028109212 to:0.058313309827831304 and:0.05755502259212429 of:0.057338918039787745 in:0.019074250696073925 be:0.01896218541655114 was:0.017603207143335083 is:0.01627889010616966 :0.016014103501446934 .:0.015819460491050333 that:0.014290692663289885 -:0.013486967116677392 Mr.:0.01319250898253651 on:0.01264600583801605 for:0.011502154179088299 a:0.011425809568501744 con-:0.011110007195595897 re-:0.010457601509934923 not:0.010042756979469386 :0.5485492378714274 +of:0.11783149769040291 the:0.10401308471999753 and:0.0792522489131874 to:0.05009202348715029 at:0.035333526857763906 a:0.034887168330404554 in:0.022725914953070248 for:0.015152954636306462 with:0.015024490332344055 or:0.013760615347882827 from:0.013354850379951448 his:0.012898340953524094 be:0.012738418443074728 on:0.012398406665214112 this:0.01119552101967452 :0.010766497034382032 said:0.01076089282565613 as:0.009673305882042798 their:0.009105581836765892 :0.4080346596912041 +;:0.01458927046758731 it,:0.007973265891266864 him:0.007834970369143835 one:0.007240974664279108 in:0.006989508095588829 and:0.006417396987522371 ,:0.006059091806132192 it:0.006014614548599763 up:0.005812344146302806 out:0.005395853159197619 them,:0.005290532062834904 him,:0.004938420268273817 city:0.004793760033506698 :0.004646491011450349 man:0.004641061555670736 country:0.0046164671969483135 feet:0.0044416267197611185 time,:0.004376787347733258 time:0.004358244018157902 :0.8825693196500423 +the:0.7279475105918385 a:0.051896672941738275 The:0.049286168123034844 tho:0.03426990695650847 this:0.020479358397700743 tbe:0.014155858169981215 and:0.014097285360697813 first:0.005299863812028625 as:0.004398166513717359 or:0.004059013514123152 whole:0.003948251766302664 in:0.0037769056832162445 very:0.0034234537673734538 A:0.003137893651317611 of:0.0029415215932912884 an:0.0029134800964575173 little:0.002790310796936001 same:0.0027185240584786333 was:0.0026073932854669135 :0.04485246091979071 +the:0.39749834532651884 a:0.07520030034269234 and:0.05540858759821703 The:0.03273515726769502 tho:0.030061875542463562 of:0.020144331424922633 tbe:0.014929647509541684 in:0.014268129706664795 or:0.013333166761078447 .:0.013287381914101323 an:0.009000188755386574 to:0.00880680429595084 :0.007943763822197133 Mr.:0.00773879605474787 by:0.007328417831573476 as:0.005922572098978465 for:0.0047526933692942485 that:0.004736121968310169 on:0.004594595720579333 :0.2713091226890862 +the:0.08389148796008629 of:0.07904240039783082 and:0.04908283941319649 .:0.03249043496165163 Mr.:0.027571918634282436 to:0.025805369214683654 :0.01821927452852765 a:0.015372677695351559 Mrs.:0.014068424453201814 in:0.01298429365931901 for:0.011602843470452985 at:0.009995300366317371 The:0.008998083423379691 by:0.008432836239856174 A.:0.0076405551658782 Dr.:0.0075433024014526645 said:0.007467096765930047 1:0.007346119305113224 W.:0.007169421423456046 :0.5642753205200323 +and:0.08539561071657764 the:0.0752522185994221 of:0.06152430221753778 in:0.049246859294441836 a:0.048491685360576874 to:0.04116367561937706 for:0.02293819675298364 will:0.02119953470037346 that:0.018561689877678065 I:0.016807267359217812 which:0.015793091280061133 or:0.015350360549450614 In:0.014271699511180574 his:0.013610963967613156 an:0.013467702641990922 be:0.013424173942363286 he:0.01318041192631145 is:0.013040208795277598 they:0.012882434297176504 :0.4333979125903885 +and:0.08995317707915026 to:0.06844710404109794 of:0.04605142056172993 the:0.04074574508561307 which:0.02479116931334353 that:0.023764822140213245 re-:0.020841117231308055 in:0.020803825395358622 for:0.020278423301550053 :0.018417753428486977 not:0.016860793136637672 con-:0.016444405871234195 is:0.014386481772210856 or:0.014080680914153714 be-:0.01352268143271276 I:0.01317002660943805 was:0.011429878269381662 dis-:0.011196807025842847 he:0.01113106290024311 :0.5026826244902934 +the:0.42169312753401 a:0.10952250522177642 The:0.05817730945839276 tho:0.03200359329835887 A:0.031968283775305605 finance:0.029928312175803974 said:0.021634732922323464 and:0.021372192342852227 this:0.020555361045816074 State:0.017837729457802307 executive:0.016859861757086095 tbe:0.016389807237590388 of:0.015243309179410948 that:0.011408605365990521 state:0.011128845525841417 national:0.011096591151962779 senate:0.008393381285276356 House:0.007515590203331823 or:0.00728861897114905 :0.12898224208991887 +and:0.03868242960999506 as:0.031124813427855922 went:0.02352509775927722 him:0.02196555539050794 them:0.018760608639018784 up:0.017985449426794205 is:0.017894175620344187 go:0.017174904667157563 able:0.016756848979943888 going:0.014481672239490295 it:0.014128375989346808 was:0.013277058274565138 time:0.013249953793837373 not:0.012469887553778763 began:0.012465717758716884 way:0.012105610030480113 back:0.012090864562211581 right:0.011941707822828511 amounted:0.011564315359310868 :0.667354953094539 +is:0.1415711925776483 was:0.09425861150799245 be:0.07670123967308906 and:0.075019159094621 the:0.06742714886881689 are:0.06331774212278087 he:0.05783725286679859 been:0.05308026818492298 not:0.03359225064522859 were:0.02921697591884885 have:0.028549259344424142 it:0.0261172912048494 had:0.022890514497999278 has:0.019812562014034668 Is:0.017810798557192555 or:0.014923713349917605 He:0.014052011798953606 now:0.013442641404090454 she:0.012677739470620395 :0.13670162689717036 +I:0.1638842650094561 and:0.11090855889867343 he:0.10033611097527496 have:0.05320997487803359 had:0.045021124468593215 has:0.03788019661990679 we:0.03500688755126786 they:0.03315630843162142 He:0.030595030612182602 who:0.030021475600299764 never:0.028803514171221338 she:0.02150395008717116 then:0.021304209354801235 it:0.017870831204317532 I've:0.01773523028235175 to:0.01726512263360481 which:0.016410160035196877 1:0.015171806425614737 not:0.014248963734405129 :0.18866627902600566 +State:0.03448625777984367 line:0.0329949092636722 state:0.028865923508135466 city:0.027679578026588873 county:0.025328875945102476 part:0.023654011615562364 number:0.023309247318603156 Board:0.021994730439035878 side:0.02016108103982858 point:0.01830267674580294 day:0.017403358764640976 corner:0.015909894894760204 years:0.015011825668407152 board:0.01450498464661323 out:0.014466420995546155 land:0.013713399115308311 Notice:0.013420620807794579 case:0.013189386649401374 town:0.012151040632847032 :0.6124517761425055 +and:0.10757943400558848 to:0.06518851748083826 of:0.03643430339113641 re-:0.033440770711369576 that:0.026061828943619036 which:0.02553337385984825 in:0.02432041561502044 for:0.023356030088059195 or:0.022350386617975924 the:0.021220911607422482 not:0.01789878976398127 it:0.017292759963734847 he:0.016540420147978848 would:0.015959386126168876 will:0.015566473814774912 pro-:0.014852635549884138 has:0.014434110500869622 :0.014209645909695789 have:0.014114745495330804 :0.47264506040670284 +as:0.06931392982974462 according:0.052071562389565784 up:0.0511867300210483 and:0.040371568633051955 went:0.03351644485287816 back:0.032358406609281 regard:0.03073407747799069 feet:0.02852138506231652 down:0.026379903432040268 owing:0.02466642634685871 due:0.023695193974505355 go:0.022910973192184297 reference:0.020802802907016128 came:0.019883741951819873 sent:0.019874244915639484 attention:0.019565955494145405 come:0.01885185084678811 given:0.018792390567602263 it:0.017366961307524745 :0.4281354501879983 +the:0.11919516938815296 of:0.07230453158552728 and:0.05781056740443249 a:0.043018564803886335 to:0.031305092790907506 in:0.020848713353460488 at:0.014270110001066288 .:0.012526810245749479 :0.012413283442322082 for:0.011719122709941797 by:0.010808400946589808 or:0.010404172990115616 The:0.01003576004804544 with:0.009811868184449042 tho:0.009295902015355835 was:0.008924239095331684 that:0.008672304223433876 is:0.0085591147338948 be:0.008335143826716943 :0.5187411282106204 +far:0.09198358105353047 soon:0.07059021050095278 and:0.053124254421070286 well:0.05256983038129906 such:0.04149842602168927 just:0.03558441809210886 long:0.0350707106706282 but:0.03049848228153382 so:0.023927121139488656 it:0.023196727195847873 much:0.02105746179371048 Just:0.017105781510548066 me:0.016024446357692793 that:0.015025053766770552 them:0.01385582189156902 him:0.013543372845564795 known:0.01351925408441179 and,:0.01093903725102498 is:0.010556072711613159 :0.40932993602894513 +the:0.15639156391833 of:0.07376956077943414 his:0.0654079932876474 and:0.06515432246526313 their:0.06070964103409834 a:0.057139701963839065 medicinal:0.03281070814981368 all:0.02650705611780001 its:0.02575731090342729 or:0.024437012476547542 her:0.023870911841764198 our:0.02192957340332966 such:0.021558816277841057 for:0.018068456121211975 other:0.017762364441645608 by:0.013990418758989287 to:0.013182072189434027 both:0.013122765115233193 as:0.012452101658481204 :0.2549776490958692 +it:0.24821867953307553 It:0.12491417828142069 there:0.069306522105283 he:0.059799171357782996 that:0.05448913452171614 they:0.04308045581579138 which:0.03975166646880763 and:0.028391784481365753 I:0.017785057885554047 what:0.015014723986643873 who:0.014813518986538871 she:0.012277284734011025 There:0.012075841823057449 This:0.011660321731650861 as:0.011471599182449319 this:0.010417679117785841 work:0.008583289274340197 He:0.00780328791147001 we:0.007024892215396919 :0.20212091058585846 +:0.10931987873444982 it.:0.014511049555020932 them.:0.011136873651956118 of:0.008842474457193371 .:0.008684244351203156 time.:0.00844942440523095 country.:0.007837517751710295 day.:0.0075194050618167885 year.:0.00732783448586506 city.:0.0063957006868125 years.:0.0063507908823196325 him.:0.006061362086047576 work.:0.00549680889529991 week.:0.004371878712875901 tion.:0.004185475922200331 States.:0.004074314583345058 people.:0.003907991910602381 made.:0.003907792747976987 place.:0.0038015759134520486 :0.7668176052046213 +and:0.08503425215113287 together:0.05335287900593926 covered:0.03253077787715905 him:0.028699283380466227 up:0.02694908563101517 it:0.020075958598700875 met:0.019295061035032795 them:0.018700319853085637 but:0.01578533889291739 thence:0.01248413508838869 filled:0.012418217423982135 out:0.012348631427551895 away:0.012156361159124838 do:0.012018718033405752 down:0.011784916836511368 man:0.011218165866290394 along:0.010245892575704265 connected:0.010128653854803403 ed:0.009471429225277377 :0.5843019220835106 +;:0.01458927046758731 it,:0.007973265891266864 him:0.007834970369143835 one:0.007240974664279108 in:0.006989508095588829 and:0.006417396987522371 ,:0.006059091806132192 it:0.006014614548599763 up:0.005812344146302806 out:0.005395853159197619 them,:0.005290532062834904 him,:0.004938420268273817 city:0.004793760033506698 :0.004646491011450349 man:0.004641061555670736 country:0.0046164671969483135 feet:0.0044416267197611185 time,:0.004376787347733258 time:0.004358244018157902 :0.8825693196500423 +of:0.22379318274758708 in:0.08666068671920502 for:0.08264942857591212 and:0.06931935541678864 to:0.06784029830993595 with:0.04816998889576629 on:0.0439864877207105 from:0.037379059947601066 at:0.030922620355784535 that:0.029804904328413068 In:0.02631476649343184 by:0.02517551685403068 all:0.013340120070594971 before:0.012129904060519706 after:0.011841721365935958 as:0.011785471881316035 but:0.011360165082289 upon:0.01062884706263669 is:0.009703278935614876 :0.14619419517592597 +would:0.13516776815931453 to:0.10175318883572715 who:0.0734216616549984 they:0.06090829687960963 I:0.054414498797697934 which:0.046947310165833735 must:0.0405200574155989 might:0.036445589637541506 shall:0.03272411333844378 and:0.03228038765818951 should:0.03179090655993478 that:0.029508760759060126 not:0.02876680420731567 we:0.028503874055856488 may:0.028150033623979002 could:0.022163961267380006 will:0.019029697840863502 there:0.014322928357478427 They:0.011858887319353098 :0.17032127346582382 +:0.09286092541363002 .:0.01531620455006713 it.:0.0132426923372523 them.:0.010884745000541863 years.:0.009540796427512198 else.:0.009112516408034751 time.:0.008732498650609957 him.:0.007563144930206173 day.:0.007019035587336308 country.:0.006868164240823561 year.:0.006045731245572189 work.:0.005686096316816585 city.:0.005554015291545159 people.:0.0052381627083204815 days.:0.004961483802676104 home.:0.004783415299819065 States.:0.0047819124962555914 ::0.004744206268362796 State.:0.004531860335911926 :0.7715323926887059 +the:0.2520748766860145 a:0.18206990497665956 to:0.08402537192370538 and:0.07488422579344171 of:0.04056006288699366 The:0.03908254735389251 which:0.020549319593502535 that:0.019426504284693794 will:0.019243062580986667 tho:0.017624995686577775 for:0.015659292737408195 or:0.014193661864831082 his:0.0141446107082394 an:0.013761355283222284 their:0.012407616737281142 who:0.012212497175661205 in:0.01181497929273235 its:0.011777444186152642 any:0.01097131203248566 :0.1325163582155179 +sum:0.03352282876311118 number:0.028116684882597106 line:0.019995206059833036 city:0.01946514558931857 out:0.019275318828420953 day:0.01666865340772654 county:0.014872697538657208 amount:0.013254184849875051 Board:0.01252325449624941 town:0.012449555905674143 side:0.011663975251122375 part:0.011517157473718155 County:0.011460540331966697 state:0.011087331502382173 City:0.010878919191854432 purpose:0.01081028255427907 and:0.010297866493795984 way:0.009848747943663767 name:0.009522170936943183 :0.711769477998811 +that:0.3784963235414432 if:0.08269528760564981 and:0.0676579331606111 which:0.05850564882026967 as:0.05229532573063033 but:0.03406042150576697 why:0.026773094320235995 when:0.025659414735768944 If:0.02425025198296856 where:0.023351072410793854 what:0.020867157579316804 said:0.012512533880320472 whom:0.011637315154321926 because:0.010657774044556657 than:0.009270897007319114 for:0.00892564194481884 whether:0.00810019434174846 But:0.007978105701624263 while:0.007916742088710455 :0.12738886444312456 +and:0.07181562702745725 together:0.06672214896410926 connected:0.05460722541492519 connection:0.053485248068146786 accordance:0.040816432970329504 comply:0.022327715315442986 acquainted:0.01991331996883064 compared:0.01902004432375884 contact:0.016949822974841922 familiar:0.016791563233682194 up:0.016271038698657696 do:0.015355480362757417 interfere:0.014875808889703945 charged:0.014646284015101253 pleased:0.013610051164447858 him:0.01274062267734275 but:0.012200014478196207 satisfied:0.011962054640116513 it:0.011810815262474694 :0.4930786815496771 +the:0.4901100767546825 and:0.18431565630266528 The:0.04201148518644639 of:0.03278760742614888 tho:0.023668879501767694 was:0.02158567637402447 a:0.020464602582456113 that:0.01836730901092412 be:0.014960931449726498 he:0.012363347782580247 these:0.011555633734526428 as:0.010817149514368138 all:0.009658626717395173 so:0.009456511283098207 were:0.00925344308306118 to:0.009190336640906455 is:0.00917502111654014 are:0.008938912049554278 had:0.008376382884971374 :0.05194241060415643 +was:0.17214346440762432 is:0.1607345958698042 be:0.15704629296575673 are:0.08130491100038822 were:0.052318197924729457 been:0.03898128166250885 and:0.03174019350020585 being:0.02545585044647552 Is:0.022083951448326915 not:0.02175254925958495 the:0.020145657180613927 so:0.01691395906887898 or:0.016508563167421327 he:0.014677014025534688 as:0.01243758366308147 more:0.011467920553747898 very:0.01090188726530686 un-:0.010702110197401374 bo:0.010534791933136866 :0.11114922445947156 +of:0.19309184079686306 by:0.10318517848792268 and:0.07750749016139957 to:0.06850717943204018 that:0.06654308045128488 Rev.:0.02001212454983944 as:0.01938759423037893 :0.01925428364964318 with:0.017022176394308454 which:0.016602102706173148 from:0.011344557733154985 said:0.010334921089113484 when:0.009394862422643278 against:0.009091704347375546 in:0.007917460660080372 for:0.0073295950342710855 before:0.006508056245668663 if:0.006352692930075046 but:0.005819737927152808 :0.32379336075061116 +he:0.1854081800264523 I:0.13268410949890286 they:0.07190500784669386 and:0.06690325072577531 He:0.06109261528957893 it:0.04913599358300413 she:0.040726140837305476 who:0.03047274055508449 we:0.029121677470119282 It:0.027972706937142395 but:0.018257380893444163 that:0.017519744648681317 which:0.0166493682199236 They:0.015568689594990399 We:0.015424504150783972 ho:0.014829544728199421 be:0.012957534617897467 1:0.012425654721476989 lie:0.012372901477596314 :0.16757225417694735 +the:0.10827285224321626 and:0.08870080307854705 of:0.07654378796298532 as:0.07601899914727774 a:0.04239111470737973 to:0.036354557417072705 be:0.029098708624609438 such:0.02486086551323051 in:0.02412061979539941 so:0.021759133747919383 is:0.0213871206641338 was:0.01854428813517412 or:0.018041820802296556 his:0.017121500893264113 are:0.011896248230315926 Mr.:0.011670635217693667 for:0.009878887779613906 their:0.009758437766275404 at:0.0092398132181 :0.343339805055495 +out:0.04116363453943541 one:0.03958323499379712 part:0.022789055968736937 tion:0.02221328210311034 charge:0.02141550974794528 means:0.019853151660601004 side:0.016352516612475443 case:0.015647894354818483 purpose:0.015335053500166496 number:0.01426390519770642 favor:0.013028643132135182 instead:0.012606568716336789 that:0.012600759134203937 those:0.012596658884088927 line:0.012505406851751869 end:0.012156264829851287 cost:0.011162353110545874 value:0.010416515467897765 people:0.010261336564821257 :0.6630482546295742 +nothing:0.038372714240358576 is:0.025801092779461663 ;:0.02235888137639035 anything:0.013052100561386271 it,:0.01062835286652844 was:0.008912418214507882 and:0.008444401719230972 of:0.00832042379345796 are:0.00793932872062729 him,:0.007234886793974415 none:0.007174549291397742 them,:0.006751516094145618 to:0.006714725392429433 be:0.006510869518404319 ,:0.006223662018109123 time,:0.005923500582351599 have:0.004724622554275163 in:0.0044964238169901685 .:0.0043529309517568865 :0.7950625987142161 +the:0.4226539525852553 our:0.08724068504347486 American:0.07651877212993714 their:0.04023171953993409 other:0.036977176312876975 of:0.03626559583728966 tho:0.028266254252312353 his:0.025971006922421346 and:0.02326106748651513 its:0.021469113094466096 own:0.016137548866602236 these:0.015380928289508688 her:0.013812103578856875 great:0.013547554439520037 that:0.010449279333549593 old:0.010379135418420747 this:0.009966773909075091 a:0.00996176048450129 present:0.008945718667795978 :0.09156385380768653 +side:0.09799806863821896 line:0.07443014326018842 day:0.0549869315888331 part:0.036366052848389833 state:0.03163476851300585 city:0.027094283427442235 point:0.025270923738111125 piece:0.020476359588224538 State:0.01998811609252237 feet:0.018530712216804836 corner:0.01752612258186303 out:0.01749966859439341 county:0.016075313330416872 place:0.014362053670264002 parts:0.013464946165821981 County:0.012309795003847235 number:0.01212885264132699 City:0.010242706521075324 tion:0.009799656826683425 :0.46881452475256646 +;:0.01458927046758731 it,:0.007973265891266864 him:0.007834970369143835 one:0.007240974664279108 in:0.006989508095588829 and:0.006417396987522371 ,:0.006059091806132192 it:0.006014614548599763 up:0.005812344146302806 out:0.005395853159197619 them,:0.005290532062834904 him,:0.004938420268273817 city:0.004793760033506698 :0.004646491011450349 man:0.004641061555670736 country:0.0046164671969483135 feet:0.0044416267197611185 time,:0.004376787347733258 time:0.004358244018157902 :0.8825693196500423 +that:0.12968564247549744 as:0.11481013598495361 and:0.10730637482450497 which:0.06626650138465114 if:0.052246185784559265 when:0.04287879484293899 but:0.040689096735219574 what:0.026102685184303538 than:0.022223535344884346 If:0.019570558788052483 so:0.01813279362803786 where:0.016271948453412514 for:0.015853267389143205 have:0.013204155611396975 before:0.01235296873035801 until:0.012326481298089213 yet:0.010628174335571844 had:0.010226575831461599 When:0.009897229677208023 :0.2583268936957554 +man:0.09006979503418337 and:0.0676682959449336 those:0.055047190287998565 one:0.05180039197513442 men:0.03757612919440723 all:0.02747776237828006 woman:0.023300017749961446 person:0.021071399980195842 people:0.015215230930010308 man,:0.010440339852170947 girl:0.00899216067494532 persons:0.008875427048516245 but:0.008126990772274557 women:0.006747350391063707 of:0.00619349440655958 others:0.006015749269921171 Those:0.005935926958504449 or:0.005643867713255262 many:0.005536099090707113 :0.5372663803469768 +and:0.10293406857127871 it:0.07542264974355155 I:0.06234288394130789 you:0.045795582123803295 which:0.04372532009067792 they:0.04318445962866117 Nor:0.041341868496848976 he:0.04014984310167272 It:0.03710116210072849 we:0.028936222561250745 nor:0.026368836656800575 that:0.025772838225796343 who:0.018869609210526557 This:0.017947148540269093 there:0.01602284317143832 this:0.014910143549360343 He:0.013783856195005035 but:0.012559734552712589 What:0.011917090336783955 :0.3199138392015257 +to:0.08250087429161775 the:0.079852228899446 of:0.07577901617661022 and:0.05833650575589691 in:0.033711843040049067 a:0.022519717375600514 at:0.022074714071984386 .:0.019592142477627625 by:0.017908258200139995 was:0.014265445853862743 :0.012216260416685842 Mr.:0.01131051796563644 his:0.011018486422500603 In:0.010287943098787394 from:0.009628838526149491 or:0.009519268576743942 for:0.009274041594667578 be:0.009041972645811637 with:0.008889381857339628 :0.48127254275284226 +and:0.06338459139724334 right:0.0543710369939014 able:0.0456826599570552 as:0.043592551585109135 necessary:0.036704337984293324 time:0.03243051845163978 enough:0.030326596921564655 order:0.029461428049494157 ready:0.02850968725064052 attempt:0.027061849895881115 them:0.026546143271654592 him:0.02625126963047334 according:0.025642251394597627 is:0.024337912867532927 way:0.023220834957567178 not:0.023077355660044634 unable:0.022635892097556502 power:0.022298668165777257 or:0.0208046632594973 :0.392659750208476 +and:0.03868242960999506 as:0.031124813427855922 went:0.02352509775927722 him:0.02196555539050794 them:0.018760608639018784 up:0.017985449426794205 is:0.017894175620344187 go:0.017174904667157563 able:0.016756848979943888 going:0.014481672239490295 it:0.014128375989346808 was:0.013277058274565138 time:0.013249953793837373 not:0.012469887553778763 began:0.012465717758716884 way:0.012105610030480113 back:0.012090864562211581 right:0.011941707822828511 amounted:0.011564315359310868 :0.667354953094539 +the:0.591497392243412 and:0.08753615373690607 The:0.07712557037541773 tho:0.03504430591212489 a:0.034624321185896534 or:0.019559670151492053 his:0.017068962619211384 of:0.012610379304539024 in:0.011843651087610098 tbe:0.01099766766217157 with:0.010433312931501645 their:0.007575330418113477 an:0.0070334022146425115 no:0.006713316299582632 by:0.006092906801874607 great:0.005983442437476207 my:0.005343321227736874 actual:0.004929685112575704 its:0.0047867324787860465 :0.04220047579892888 +and:0.08995317707915026 to:0.06844710404109794 of:0.04605142056172993 the:0.04074574508561307 which:0.02479116931334353 that:0.023764822140213245 re-:0.020841117231308055 in:0.020803825395358622 for:0.020278423301550053 :0.018417753428486977 not:0.016860793136637672 con-:0.016444405871234195 is:0.014386481772210856 or:0.014080680914153714 be-:0.01352268143271276 I:0.01317002660943805 was:0.011429878269381662 dis-:0.011196807025842847 he:0.01113106290024311 :0.5026826244902934 +one:0.1028303141280697 part:0.05963429477052991 out:0.04766456937681193 some:0.031418679026461914 members:0.030764490253327767 side:0.029940657362655835 portion:0.022063658796890564 office:0.020457735219956013 member:0.019726706386316174 end:0.019666887540649894 tion:0.018667441728710307 parts:0.016814747270460957 people:0.014112771422418794 all:0.014072739582212475 any:0.013183573287639892 One:0.013083578354183906 that:0.013024335602903442 account:0.012482348155001894 many:0.012077825070275192 :0.48731264666452345 +of:0.2172274541517643 in:0.0851292889166379 for:0.07389178514313982 and:0.07038167282690035 to:0.06079407825591944 with:0.06029072064463203 that:0.05650340299996392 by:0.05502023608204256 from:0.0333419753212057 on:0.030445147401623587 is:0.02548382049252248 In:0.023269317921873207 as:0.02149561825782877 all:0.013026711536327321 under:0.011661386640683169 upon:0.011356331519423809 but:0.011293186310480083 at:0.010940070186895346 or:0.009503059468840176 :0.11794473592129603 +was:0.1551293661728914 are:0.14125641281835777 is:0.14080236676119479 be:0.10382931615776779 were:0.07386284728294296 been:0.04529458943349308 am:0.026486147542200994 not:0.024902447831120722 and:0.024336464784015844 being:0.019969136601899588 Is:0.018440944567911895 so:0.017766367927794863 as:0.01662823735059928 have:0.012659290399787651 had:0.011430673259591611 has:0.009841814210288227 or:0.008719423562371603 bo:0.008387784246980272 it:0.007140092890648898 :0.1321162761981408 +a:0.3256851812916948 the:0.1554450540778641 no:0.11425267102366515 their:0.04254248381046168 and:0.03597614322602692 his:0.02857132151906292 of:0.026453806185901426 more:0.025318559022133723 not:0.023871004286460065 very:0.023106658154174852 any:0.020901243707427672 its:0.019077686260666832 with:0.01770795668057226 for:0.01609151255206072 great:0.015338233941040393 in:0.013421455570307394 to:0.011936431749571997 is:0.011680108790004487 too:0.0113972526343821 :0.06022523551652047 +the:0.2730714386312444 that:0.11787650542146667 of:0.11199223206454582 a:0.11166095996041396 this:0.06724385973081679 The:0.047250112227910715 or:0.04443939425975676 and:0.030961780259971133 tho:0.018421282779176578 no:0.017157877527501083 his:0.014920946696356189 in:0.014077939926178704 any:0.011925614110434872 our:0.011598368196604316 such:0.010956387555577717 to:0.009213228039740678 as:0.009165645585174598 every:0.009143422401493554 their:0.009081193568019728 :0.058841811057615705 +about:0.2020537758543963 of:0.09439706426168859 or:0.07686956596231445 and:0.07469706493147289 for:0.07402779726860984 than:0.06011188781475748 to:0.04203761161836877 within:0.03544008739224086 over:0.03167242594034139 twenty-:0.02718747801939715 in:0.026019105145582675 exceeding:0.022634759472939515 after:0.02128382355163856 at:0.02101318824903019 twenty:0.0194405241041732 least:0.018736555602167915 on:0.015574311840288435 nearly:0.015146721784451558 from:0.014929676903030611 :0.10572657428310964 +A:0.061710734136653386 W:0.056856624229610866 M:0.044447693532874484 C:0.04330814476192598 J:0.04169847305439046 S:0.0405386298497758 .:0.03682158319207296 B:0.032384696535810664 H:0.031640510403902235 E:0.031226709985891745 P:0.026494642184446186 F:0.02593825068580299 D:0.025140643806931214 K:0.020050764207666893 L:0.018735150668684135 m:0.01699115598312064 T:0.016472587834694415 and:0.01633488544565977 -:0.01540394979740355 :0.3968041697026817 +the:0.1230049064262171 and:0.08503568159061524 of:0.08049514661646495 to:0.06249795272045366 be:0.037787692337465824 a:0.030772695158105653 was:0.030225430638798498 at:0.0232079861893999 in:0.022258293084416875 or:0.02076453064585544 his:0.017325280923675534 been:0.017093839100041554 is:0.01613533332570587 for:0.015009812608712095 are:0.014120955390505714 :0.013322890642117769 were:0.012952875898379415 their:0.01289660242217441 Mr.:0.012094272431719493 :0.35199782184917505 +of:0.26171211115846266 with:0.09799280934029399 and:0.08001322489261826 for:0.07765812050994045 to:0.048994248876651596 in:0.04656504742682287 by:0.041770857963754945 on:0.03664844814727514 that:0.03413691697560689 from:0.02670629049123564 upon:0.01954730668709824 as:0.016065687492225 all:0.01597169934076093 get:0.01092359375715452 have:0.010230273583034535 up:0.009807969035812117 make:0.009498763479519367 or:0.007813015514916095 but:0.007419809417451076 :0.1395238059093657 +grew:0.2892927013284314 a:0.0688272435065838 was:0.066994586239782 is:0.051711727887250286 much:0.050635970159580275 be:0.049349928341865704 are:0.03471148908120337 the:0.03293415967832877 and:0.029960848571048426 or:0.029117663518682852 it:0.028187791119567658 were:0.026646711827410925 very:0.02543776605154325 of:0.024591801101740206 do:0.022957695703807308 been:0.022937681430372753 for:0.02188234145651181 not:0.019830795263106937 in:0.017732677553331144 :0.08525842017985114 +of:0.25314264109967766 to:0.07459248474577695 on:0.06811480612656992 and:0.06799936855292531 with:0.061265505887931636 for:0.04937123761414232 from:0.04612763909697579 that:0.043260635728733544 in:0.03980409891874212 by:0.03441718969967044 is:0.026733193793925383 upon:0.024043415751026802 at:0.02115948725390148 as:0.01705639003392141 all:0.016679919380824096 under:0.01585143117020434 was:0.013021354209782236 which:0.011140506713443505 In:0.010531363603048462 :0.10468733061877661 +as:0.06931392982974462 according:0.052071562389565784 up:0.0511867300210483 and:0.040371568633051955 went:0.03351644485287816 back:0.032358406609281 regard:0.03073407747799069 feet:0.02852138506231652 down:0.026379903432040268 owing:0.02466642634685871 due:0.023695193974505355 go:0.022910973192184297 reference:0.020802802907016128 came:0.019883741951819873 sent:0.019874244915639484 attention:0.019565955494145405 come:0.01885185084678811 given:0.018792390567602263 it:0.017366961307524745 :0.4281354501879983 +is:0.19226835161050038 was:0.1344798552900539 and:0.07119962476161314 are:0.05306287577002004 of:0.04768903478494029 to:0.03521982394345697 were:0.03031546752432894 be:0.029611160037081995 Is:0.02797388993889985 by:0.025584406988819093 for:0.01907209560207266 been:0.018933802952007413 had:0.018245918802471554 an:0.01811024999925956 in:0.017128527050722483 with:0.016961196335088247 have:0.016468809452611685 it:0.016342292064823242 at:0.014655158538183265 :0.1956774585530453 +the:0.11919516938815296 of:0.07230453158552728 and:0.05781056740443249 a:0.043018564803886335 to:0.031305092790907506 in:0.020848713353460488 at:0.014270110001066288 .:0.012526810245749479 :0.012413283442322082 for:0.011719122709941797 by:0.010808400946589808 or:0.010404172990115616 The:0.01003576004804544 with:0.009811868184449042 tho:0.009295902015355835 was:0.008924239095331684 that:0.008672304223433876 is:0.0085591147338948 be:0.008335143826716943 :0.5187411282106204 +of:0.3538394518127074 in:0.2713999686901072 to:0.06544788390635355 In:0.05547419112616224 for:0.05507526685983094 by:0.032966871856618805 that:0.026110285560345125 from:0.022310124502708927 and:0.013985535290710676 into:0.011664756948038282 with:0.010329110715594326 on:0.010293610677731355 which:0.007534091441318814 as:0.00644472438036678 ot:0.0061718780214554654 through:0.005792440655990071 iu:0.0057262077785706625 at:0.005722601806752479 throughout:0.004555497297889614 :0.028155500670747322 +all:0.12437666153316505 at:0.11846161396829405 several:0.08542229019509917 many:0.08309917954731508 three:0.0726556572239915 the:0.06889881975784225 of:0.06433070283427093 those:0.038117836342525274 some-:0.033297385626170344 four:0.02612379072399452 other:0.023812773263249883 some:0.02320342593164781 these:0.02276055519661734 two:0.017275891860323803 five:0.014443264995751114 various:0.013915521747970054 ten:0.013528492675172452 different:0.013322919574922022 thousand:0.012964536342793664 :0.1289886806588837 +Why?:0.12262001436891784 :0.05962418250946741 and:0.02010440527824627 it.:0.019793858847782304 them.:0.013816599917678841 in:0.01010751997060905 country.:0.009701891614400195 ?:0.008655294375616327 county.:0.007210782394413023 of:0.006965252053491825 year.:0.006682851684570935 time.:0.00660240261492379 years.:0.006476766411262926 .:0.006377751849877601 that:0.0063040232989292925 people.:0.005884634901633847 In:0.005603621414324451 him.:0.005479250766281919 world.:0.005384925036166825 :0.6656039706914053 +of:0.30206960594123766 and:0.06314766370606659 the:0.035969356951645055 at:0.023112304798140408 by:0.021431971483806767 or:0.019495197078082824 in:0.01789381747663375 as:0.01720988763605492 on:0.016049896148898044 with:0.013773474244430393 said:0.012748337325594087 all:0.009736129561714782 for:0.00874095645159956 from:0.008581943893327296 to:0.007365267242328279 :0.006332529309926315 ot:0.005932213780784194 In:0.00544644736665234 ol:0.004270326238224541 :0.3996926733648522 +they:0.10476942929315786 we:0.09740108275079747 to:0.07590021909117022 I:0.06969794187598921 and:0.06392996618486553 not:0.061571642074214554 who:0.04577851746793394 We:0.043458475321616785 which:0.03190719286858335 would:0.031672264621840994 They:0.028447084000853565 shall:0.023297890251058297 may:0.022504166069440786 will:0.020370913616428184 it:0.019998462858924863 that:0.018399586337844987 he:0.017392666324961947 never:0.013354431384474046 you:0.01094691260097062 :0.1982011550048728 +No:0.11051670813550511 no:0.10186752539448407 that:0.0981153215887879 and:0.0658694230722524 the:0.057467884283990515 but:0.05687572296917425 any:0.05319024075757884 when:0.04039742722962354 of:0.03879257698879651 every:0.03573451475623881 The:0.032002163061626135 some:0.027564399176848012 only:0.025424677216826896 Every:0.021984335225871718 as:0.02123503700752691 When:0.020594744787404456 each:0.018586722959331052 which:0.0179423999216217 if:0.01694306869315233 :0.1378951067733588 +the:0.3370953977616228 a:0.07503779335845527 no:0.06163809134469827 to:0.05807924960999368 by:0.05419523128847904 I:0.05368532529512323 and:0.04592367043172211 only:0.03450730905741481 or:0.028341417289499068 The:0.027616875177257288 of:0.026935315521504445 we:0.025798239084570025 tho:0.016064998543630703 this:0.01596634511584184 any:0.015407130419258465 all:0.01485004548403265 We:0.013502211225145272 they:0.013019139624539149 not:0.011752921453024612 :0.06958329291418727 +of:0.275574333881826 to:0.08636224615023709 in:0.06631904249133982 and:0.053992018225395254 for:0.04185726238848965 by:0.040432462728593715 on:0.0386621368609385 that:0.03746813623829841 In:0.02853879791593314 at:0.02784511394431448 from:0.027249043353089128 with:0.02598983508374518 all:0.014273748255081415 as:0.011953034597961125 upon:0.010404474445179767 is:0.009962155410920995 ot:0.008697425934451705 through:0.008441579399216994 which:0.00831499649011874 :0.17666215620486883 +New:0.8899810070663684 Now:0.012823464004473076 New-:0.011582730457560966 Xew:0.006709009873058478 of:0.005083661853346091 the:0.003432527367402249 to:0.0025073277337994003 Mew:0.0021146803161037606 and:0.0016620761863970494 a:0.0014660694450907498 I:0.0009797934169919343 be:0.000804311039501406 all:0.0007206119918506667 for:0.0007006225852927053 ew:0.0006618262590623026 in:0.000648968145186974 with:0.0005856420133543646 two:0.0005653026068963427 or:0.0005281701813833322 :0.05544219745687978 +to:0.24153093063257947 and:0.2230562301245524 of:0.045640761319340084 not:0.04205432251255395 which:0.034364786604292596 have:0.03343392336805892 or:0.032595127636384454 by:0.03088570737307482 who:0.027869785715116877 the:0.021774907128250795 as:0.021194043271024168 that:0.01899234904944393 in:0.016461401704905794 they:0.016433549547930842 had:0.01624709743974987 has:0.01516634098687887 with:0.014892402733011543 such:0.013183412033252783 without:0.01234595293895984 :0.12087696788063802 +all:0.05666685887177889 of:0.05584290670578253 and:0.04895389440078002 was:0.040001748698617806 is:0.026956598077912817 it:0.026488623850149808 for:0.025432546649672157 went:0.021603957005960413 in:0.02015887691079607 them:0.01722214343934298 or:0.01716908149697764 not:0.016947818814165534 go:0.015303733142501063 are:0.01415550231132039 be:0.013102924329386827 turned:0.01277413754202343 were:0.011455376707386425 him:0.011306141491867263 passed:0.011186738145967186 :0.5362703914076107 +in:0.017765186039300974 ;:0.014515349513131177 up:0.013840561941882427 city:0.009991441068762314 county,:0.009611223459387292 him:0.008873191208965937 years,:0.007891166743274142 it,:0.00783091476288538 street:0.007297085133694121 house:0.007106355342772923 ,:0.007001060600562823 men:0.006767790780555099 home:0.006519006687436811 county:0.006326816392268551 of:0.006161817976782077 over:0.006140256998545721 day:0.005969943613304362 and:0.005904765768388351 him,:0.005784085301173386 :0.8377019806669261 +one:0.1028303141280697 part:0.05963429477052991 out:0.04766456937681193 some:0.031418679026461914 members:0.030764490253327767 side:0.029940657362655835 portion:0.022063658796890564 office:0.020457735219956013 member:0.019726706386316174 end:0.019666887540649894 tion:0.018667441728710307 parts:0.016814747270460957 people:0.014112771422418794 all:0.014072739582212475 any:0.013183573287639892 One:0.013083578354183906 that:0.013024335602903442 account:0.012482348155001894 many:0.012077825070275192 :0.48731264666452345 +and:0.11046879281749401 the:0.07390882842541156 to:0.04918818618058255 will:0.032664047027329675 a:0.02816633279152904 I:0.02378148143631073 of:0.02299236998368141 that:0.021765246169398435 would:0.020693856674203967 for:0.020257751972759377 or:0.017167832587340646 did:0.015242047569643416 do:0.014167251441378096 which:0.013698649985881042 could:0.013607747600829952 you:0.013071940837597664 he:0.01222720445724955 they:0.01178703053328072 :0.011325302764480023 :0.47281809874361813 +that:0.18811705136842258 and:0.10522534417367112 as:0.07239442328194229 of:0.06114955604672525 if:0.05577175478796279 which:0.05154911839666497 but:0.04244189990360443 for:0.024696309699270478 said:0.02372254616328308 when:0.022785130705748807 If:0.020223139767539356 whether:0.018381527285556667 than:0.015490670240609126 where:0.013802862780147184 what:0.012178252060008036 to:0.011105435152904332 But:0.011093400399751263 think:0.009875090222532863 That:0.00946074555764861 :0.22953574200600677 +and:0.2288251037691622 is:0.15333303561082476 was:0.10218020827117967 it:0.030360794428826193 but:0.0258712437944819 Is:0.021889532188429445 that:0.02170413210377661 are:0.019746205103664313 which:0.015174192886640693 It:0.014995791354052336 who:0.013818709923160855 or:0.013715213119609338 be:0.013653465844296735 to:0.011283677132442676 not:0.009744103382105147 were:0.009648030817254358 I:0.009274114563156998 has:0.00910943391462554 he:0.008552495119996914 :0.2661205166723133 +of:0.24990081663430638 to:0.10882327988019307 and:0.10319118503739358 in:0.058587085126324934 for:0.05583514148152557 by:0.04756967076167231 with:0.042070130138969736 that:0.03782649900583746 on:0.03594529089087932 from:0.03484871032467675 all:0.03150367290467464 at:0.022554274543630515 or:0.020288203172771992 upon:0.019070325425190007 as:0.013517184408650768 up:0.010337513923087861 over:0.009628248783003104 In:0.007635811087392561 but:0.00729178945143922 :0.08257516701838019 +the:0.2965115319768198 his:0.07829608925035092 of:0.07273761748353036 their:0.06619450005736956 and:0.04415010282484691 my:0.04287392719260848 our:0.02690916461383805 such:0.026443838283836996 in:0.02535023991999052 a:0.02194734089671596 The:0.021135713892032004 your:0.019428644628153847 its:0.01844135447065368 tho:0.014717317010021186 this:0.014567039180490708 own:0.01401717256660691 other:0.01400670611694754 for:0.013057980395707098 her:0.011052250154226452 :0.15716146908525308 +his:0.28996854594269234 their:0.25784317123147155 our:0.13073141079484435 her:0.09096795041765836 my:0.07509868612805648 its:0.03926136238437106 your:0.03673153406433007 bis:0.012601496947916097 My:0.005971122344643256 His:0.005880527875361041 Its:0.005583594234342549 Our:0.0038652645161009677 whose:0.0027412097359957093 of:0.0024923032180703664 and:0.0024223871106001066 one's:0.0020132440911919845 hia:0.0017878912562638374 hla:0.0015445927874943336 Her:0.0015107000470484882 :0.0299830048715471 +to:0.22312447220834675 of:0.15290107877434367 in:0.12073956468982976 and:0.045763491568592114 the:0.03650082168408117 for:0.02945102453852643 a:0.024437679682034318 on:0.017603132866134675 at:0.017129806665544166 with:0.01656276815241287 from:0.016424747174830747 In:0.01631144309896635 that:0.01504358200412838 or:0.012523730061129888 an:0.01182402461977924 about:0.010385027217467934 into:0.00897805199236817 over:0.008834082756411822 upon:0.008342379939645702 :0.20611909030542583 +the:0.16807735899698817 of:0.10541662057906837 and:0.05138367848570702 a:0.04141865232648221 to:0.0385989743764065 in:0.026264864977736738 was:0.019530675665220657 his:0.018900421021236905 be:0.017373825006196972 their:0.015767721170721456 for:0.01557246589796783 with:0.014071419046630446 is:0.012922913111931644 at:0.012690452250034052 are:0.010702713108721902 .:0.010158075558988393 Mr.:0.009672788574483367 tho:0.009612591781990074 were:0.009549306361446321 :0.391314481702041 +in:0.2743713649195899 of:0.15530355295865664 In:0.08695243528735815 and:0.05155118485012556 for:0.04445950867303591 that:0.043279503613877016 to:0.04166163108305601 all:0.02741821752429988 is:0.023303333150369063 with:0.023056655217921426 from:0.021282934446984862 as:0.021012685750611243 was:0.0181383204675135 by:0.018127909898311624 on:0.014930220128994575 at:0.011652935233396597 during:0.009135171289456878 into:0.008816136040890772 when:0.008629586123575315 :0.09591671334197509 +one:0.015552536992080472 more:0.014252271697624306 on:0.010631301787611593 day:0.010222750824534239 two:0.010216157614982159 person:0.007504694644314241 in:0.007364820929323563 man:0.007179188731169107 law:0.006205362369136604 action:0.006166303509128973 and:0.005659786788634644 city:0.005177234665142273 three:0.005130416479837977 State:0.0047265097104810415 to:0.004696031397422901 ten:0.004594585978494318 of:0.004463781172886088 town:0.004231879326219736 year:0.0040256313925199315 :0.8609987539884558 +the:0.11919516938815296 of:0.07230453158552728 and:0.05781056740443249 a:0.043018564803886335 to:0.031305092790907506 in:0.020848713353460488 at:0.014270110001066288 .:0.012526810245749479 :0.012413283442322082 for:0.011719122709941797 by:0.010808400946589808 or:0.010404172990115616 The:0.01003576004804544 with:0.009811868184449042 tho:0.009295902015355835 was:0.008924239095331684 that:0.008672304223433876 is:0.0085591147338948 be:0.008335143826716943 :0.5187411282106204 +and:0.06362647686715132 do:0.027266743000985142 together:0.021825159653834653 complied:0.020950713170526172 him:0.0209123629148815 connected:0.0201463271148932 them:0.01989872571031213 up:0.01868877797430378 it:0.017426523618097028 covered:0.016697384104395654 go:0.016449791406217922 acquainted:0.015463685300076281 accordance:0.015064802882129764 filled:0.014186516874948422 away:0.013828685148749145 dealt:0.013461006480372531 familiar:0.011362696526384225 compared:0.01094069860757049 charged:0.010737322104287635 :0.6300656005398829 +and:0.06317916895143688 was:0.03089079697380977 is:0.020044819943736053 be:0.019406329289829806 are:0.016631216139614186 that:0.015910745835586493 it:0.014132589635136123 been:0.013429954470292457 made:0.013153338042273357 were:0.012494049396038097 or:0.012369181282419555 them:0.011608721240324167 up:0.01101461536327863 him:0.010833186604515583 as:0.010718511743974049 succeeded:0.010682665877813333 engaged:0.010592681714621757 not:0.009777868089593193 now:0.00948198968071834 :0.6826475697249881 +I:0.10553121889934469 be:0.0897679298162703 was:0.08895925742083002 he:0.088514018634596 and:0.059314603438411634 had:0.05290058387198429 it:0.04597674447244232 have:0.04414083827565507 been:0.032703504318039985 were:0.031317859610776676 has:0.028446876573909846 is:0.025743898327333172 they:0.023381399626944074 she:0.02248492433564656 who:0.02242029350804301 He:0.02161138250844783 then:0.01939586911721942 we:0.01733350011218662 are:0.016382084068497952 :0.1626732130634205 +make:0.09309601389557305 and:0.0779106238568874 is:0.05482581092154079 that:0.04586062449153134 was:0.03467326864155488 have:0.03447276472478581 but:0.03440659770148357 made:0.03428605067931895 had:0.03417571276305263 Is:0.03274858964439092 to:0.032380276932605596 makes:0.03134273730071723 for:0.030771157284802775 of:0.03041177077430394 in:0.0297625317245771 find:0.028623669693852775 give:0.02847115290528548 do:0.026334667439329294 with:0.02520547049799067 :0.2592405081264158 +and:0.046732017830329826 that:0.04339475145932285 will:0.028610343216083772 it:0.026459562215360558 far:0.022752450973761343 would:0.021576798273351887 had:0.01628913529305949 is:0.015451969524119426 but:0.014627291527402445 was:0.01429694209914273 which:0.011690849942734222 I:0.011662215172007582 as:0.010605552829764152 years:0.010023159815547893 they:0.009389787648865555 have:0.009083950736419088 who:0.008996757344524618 has:0.00823498723792703 should:0.008201438663338924 :0.6609200381969366 +to:0.1998002596619762 for:0.12203723685257359 told:0.07140393463177268 asked:0.0645982832285325 advised:0.045606558826021354 from:0.04271636479861026 permit:0.03704696888965602 with:0.03581978621835638 allow:0.028454981523784447 enable:0.026029643740109153 upon:0.02229120542865156 of:0.021783298297177903 wanted:0.019578315243407647 led:0.01898232475762998 enabled:0.018725621306303578 send:0.018010215975825885 on:0.016951010673884766 sent:0.01676242448918718 directing:0.016147960032726286 :0.1562536054238126 +to:0.09864282010030183 the:0.08375297126946753 of:0.07074571151673052 and:0.06779046829403 a:0.02766650927741597 in:0.021670314456411932 at:0.021392828982420006 for:0.01627599403114278 is:0.015107338441904122 he:0.014818877918256685 was:0.013808540905081488 by:0.013132601340090633 it:0.012796195965848819 I:0.012723560421513859 :0.0121914922721236 not:0.011777366450725432 .:0.011011346691779235 that:0.01092359583028988 with:0.01073896800850032 :0.4520324978259654 +and:0.09511977393976566 able:0.05492005814175278 enough:0.04299555347878556 is:0.042482827020778824 order:0.04018720336383796 have:0.033497512790627626 necessary:0.032743801081669764 as:0.030390923215815553 was:0.027514908864065414 required:0.026638197887097256 had:0.02612380348232475 him:0.02549242612941621 time:0.023680956605704007 made:0.02098621387731777 right:0.0208586603401656 them:0.020658023155937965 fail:0.020283515271821272 unable:0.019617407602677803 power:0.018888681094026666 :0.3759195526564116 +a:0.33736175475917696 the:0.19181359289250718 and:0.04626634036285153 his:0.04274228077294739 to:0.02934405669163813 of:0.024791462312294614 The:0.02092493507070024 A:0.018637336120995544 this:0.017749331213462453 their:0.01735904874208774 her:0.012143781232556548 most:0.011557681050618456 tho:0.010755322422894778 not:0.010454874294887784 your:0.010452153884686654 its:0.01017752028670354 or:0.008952832658697858 our:0.008827759433075318 my:0.008629110063633545 :0.16005882573358374 +the:0.22176465253385244 of:0.0701852620817262 and:0.061136251677247816 with:0.02666200073852158 in:0.02585020922618429 said:0.025669149426921 on:0.02357020548574755 by:0.023324318958874855 a:0.018359283087497534 tho:0.015981129381979653 The:0.012749723680509308 or:0.011395336749365331 tbe:0.009212538689102791 was:0.009199320724596161 In:0.009184757685447159 at:0.00899724375451015 ing:0.00898166355959322 first:0.008332530942024956 an:0.00827499534889532 :0.4001694262674027 +and:0.16813773249130412 of:0.1068043579889186 the:0.06552873315878018 with:0.06445467929670133 in:0.04973845724275759 a:0.042979774690278284 to:0.039637900810702544 or:0.038024433827984615 is:0.027250605560490377 for:0.02407855587400523 was:0.022173392558001246 that:0.019205899166761686 but:0.018038822273473462 In:0.014968163586146608 from:0.014917398553309433 on:0.014768906204702488 by:0.014265963997208815 all:0.013431618609316964 are:0.011977323324559704 :0.22861728078459678 +a:0.15205237252464482 the:0.1183332730443333 and:0.10988626204508939 was:0.03971480194071607 he:0.034100832218965225 be:0.033872408007369736 of:0.0287022130003556 have:0.026629089874016774 feet:0.026067867487584905 in:0.02531359303965485 are:0.024583415131707715 has:0.02347191904198748 his:0.020672246223002108 is:0.02046184512456959 newly:0.019866374610151658 been:0.018123542095078715 The:0.01545715436878014 had:0.015307736946751683 were:0.01477890055272429 :0.23160415272251594 +the:0.087165999390447 and:0.08085687710760615 of:0.058766711826288016 to:0.046090096340585134 was:0.027453614703610355 be:0.025837881720092472 is:0.024964780735956132 for:0.021833496639655448 he:0.020469322498353707 dis-:0.02029454626177925 that:0.019457829996375717 or:0.018499866494366676 in:0.017858851194726008 not:0.015920922921203614 which:0.015079568993786003 :0.014501835178313558 I:0.014211917681077756 will:0.014026012729915736 re-:0.013566998039264951 :0.4421428695465963 +of:0.1657409194433824 in:0.1353384030063741 on:0.10222786579080582 and:0.09153668938165059 to:0.03974827168198491 In:0.03897668552213646 from:0.03465578674695165 for:0.030178898117092248 at:0.02860817937768639 all:0.023306063384884345 upon:0.019288214419171473 said:0.016708710938692254 by:0.011507154301192006 that:0.011392980014139555 but:0.011067368037818862 with:0.010841339368493 or:0.008562359277466455 All:0.007582323869691181 fact:0.007332444951233479 :0.2043993423691528 +he:0.14310369022750694 it:0.11130990705288764 they:0.07892028322034934 I:0.06922591899986383 that:0.060100073084607714 It:0.05946011763411077 we:0.036316425751995396 which:0.036236228689137596 and:0.03553735421997305 she:0.03359563137184539 you:0.028952414365320575 who:0.02587827559873309 there:0.024204570205481602 He:0.01604217147798961 one:0.012579625274040624 what:0.01157528461570685 This:0.009914422079096447 ho:0.008797666808088172 1:0.008575266563447025 :0.1886746727598184 +of:0.11765737181713248 the:0.106802768912813 and:0.07323565981797077 to:0.051211999170975124 be:0.04110133823176292 is:0.04080695423269617 in:0.03700279180169096 a:0.03612176729007644 was:0.0330355104529622 or:0.018820855785419963 at:0.016751716297015766 for:0.015176707740745516 been:0.014767809686953168 are:0.014152676063881719 as:0.01343325765629355 that:0.01284555437507635 not:0.012647959280680849 this:0.011905014817972754 it:0.01188439457306453 :0.31963789199481574 +of:0.10628044137914659 and:0.09858851412360106 by:0.054970518446665166 Mrs.:0.05063933952696303 Mr.:0.030642477908657637 said:0.030071854229301087 to:0.026215702918951596 Sir:0.02100116435581407 :0.015507127797552684 that:0.010961938452516879 .:0.01086273654797447 the:0.010296615434496876 from:0.008699758009057897 girl.:0.007876715002865544 Dr.:0.00716136339427086 boy.:0.0068190789325185755 at:0.006727141060927073 Rev.:0.006287172519699314 I:0.006142347135473656 :0.48324799282354597 +feet:0.0719208472326295 poles:0.05759396229176634 up:0.04010587224329879 chains:0.0385088170079141 entitled:0.029123404981740347 went:0.027388526271997813 came:0.025857650765910022 down:0.025633262313841977 him:0.025574415868859987 as:0.024916209858287616 and:0.023917753661251574 subject:0.02185045005331621 brought:0.02171367122116056 them:0.021644069985480026 it:0.02099405133651225 rods:0.019030517253069822 back:0.018922583019034468 go:0.01891708435510451 sent:0.018892511875840953 :0.44649433840298314 +be:0.13564844567124074 was:0.12351841797133195 if:0.09293662645967223 and:0.08290840681377652 were:0.07212482251452508 been:0.0534679781200807 had:0.04736499087990473 has:0.035898045419694005 have:0.035362134219502274 he:0.029188552649925547 ob-:0.026898686465372575 re-:0.02478674635179502 are:0.024027860271163343 is:0.023558432848230587 being:0.02187559914918025 who:0.014326212669301066 He:0.013560474681624265 well:0.013039905891569222 or:0.011727055190077022 :0.11678060576203286 +the:0.2201683248796028 and:0.08242676715549994 of:0.0733435971237009 a:0.04331037949544055 The:0.02170739281050904 in:0.020717442185509125 at:0.015863773688662302 an:0.015795831046649146 or:0.015594542972367134 as:0.015520199260924733 tho:0.015315184999064374 to:0.01526067463634573 .:0.01268223106384903 Mr.:0.011551221144575956 was:0.011061378047293919 on:0.010773659996539705 that:0.010593156911639942 be:0.010100963647731697 his:0.00991695299540486 :0.36729632593868916 +the:0.1622944884319589 of:0.0994959569633945 a:0.061219981464022175 and:0.06013281817937913 to:0.05408526681593981 his:0.04627150197433111 in:0.03711681143525799 was:0.027410208965143606 be:0.026707683073376207 is:0.022563583873416875 their:0.020955169386735903 at:0.018926087859028662 for:0.014195271753532687 her:0.011679796245452496 not:0.010175742345201286 tho:0.009392240655170093 are:0.009299334738201671 been:0.009279596802473221 its:0.009251201510743384 :0.2885472575272403 +years:0.47228659780525944 weeks:0.07556486222985791 year:0.06742443402819327 months:0.06332792329336875 days:0.04940932541295174 long:0.0486366727916384 time:0.02757472070929062 week:0.02228949327223095 century:0.010757330808774236 month:0.009701421849262416 the:0.008793569630813264 and:0.006701563127421294 centuries:0.006507465041837882 as:0.005793782378725504 two:0.005660943401072926 one:0.005280332553062816 year*:0.004416976608947859 mouths:0.003846849945355938 yean:0.00371476140011365 :0.10131097371182113 +and:0.14507320772351315 fact:0.08580533594336559 said:0.056464728489513914 so:0.05141663139801109 believe:0.03728868944610554 is:0.032697255055655516 say:0.030323479159427524 know:0.029749358812227955 found:0.025535190692382553 stated:0.021273605064562356 show:0.019511948220510757 but:0.018999393120383457 says:0.018814328565908398 think:0.016893655385130203 was:0.01658797795582863 all:0.01652317309060226 see:0.015409038245983688 opinion:0.015263158537430448 order:0.014744011681695817 :0.33062583341176116 +they:0.16837567052261787 who:0.16415075895607759 and:0.06890912812938776 we:0.06636545757682248 which:0.05908896404984036 They:0.05514102162585407 We:0.0353012214302168 men:0.029458088983418007 that:0.02850243093029387 you:0.019776096329324238 as:0.019127608387835983 people:0.017926486626681438 there:0.01367807893225337 women:0.011806510110364621 These:0.008730027498164561 persons:0.00866859810817205 them:0.006915463260196323 boys:0.006565723382689524 others:0.006409376065710844 :0.2041032890940782 +away:0.07290525335463358 and:0.053545434817749225 them:0.043494906093987755 taken:0.041613467173859026 come:0.03254650801241897 him:0.02265610196123226 came:0.02196325106100645 received:0.021962865426636967 out:0.017695748304659333 arise:0.017554632606758963 derived:0.01676375278777754 it:0.016033154406587015 returned:0.01540104174709621 made:0.014866017919142707 up:0.014692323564895186 removed:0.01462535559125576 far:0.014254790753679778 suffering:0.01423564971727179 days:0.01389858210718057 :0.518291162592171 +the:0.09003084626122096 and:0.08041169752892471 of:0.06707395795678926 that:0.031085755516057207 as:0.024180907820295926 which:0.02383303277951163 a:0.02332330785286409 he:0.02170153655172142 in:0.020584875553221953 The:0.01872346984794276 to:0.01864969387171746 no:0.01850909886000681 for:0.01757061995586446 or:0.01665771250957707 such:0.015562305385094956 I:0.014647664704434028 :0.01421388604748587 any:0.013340764981241027 one:0.012553445517365414 :0.456345420498663 +that:0.18940370623793626 and:0.06614912034223527 which:0.04614543128059231 when:0.03657684023390125 to:0.034922481414491474 said:0.018991695533594363 but:0.018428161690602764 as:0.017745991039858487 :0.016265235083670376 I:0.015479028990925982 t:0.012801806674650638 where:0.011838983022989661 this:0.011153877310021655 When:0.00973198755335564 him.:0.009288639578734801 if:0.009206484380960696 day:0.008983706901263834 until:0.008871302360649017 the:0.00838672415632135 :0.44862879621324414 +the:0.39480001939662007 a:0.11854271714974718 and:0.08638258997842634 of:0.060555169359788864 The:0.05029036950227354 tho:0.029341723619857735 in:0.029149862131099654 by:0.02459812941341619 that:0.016256963856095652 to:0.015765313401179783 his:0.011689663548095705 with:0.011165310104070006 this:0.010776048255265347 In:0.008250904391081941 or:0.007584501570081613 tbe:0.00751065085123065 its:0.007236708828174712 for:0.0065353783065945845 their:0.00589439662080724 :0.09667357971609324 +and:0.03868242960999506 as:0.031124813427855922 went:0.02352509775927722 him:0.02196555539050794 them:0.018760608639018784 up:0.017985449426794205 is:0.017894175620344187 go:0.017174904667157563 able:0.016756848979943888 going:0.014481672239490295 it:0.014128375989346808 was:0.013277058274565138 time:0.013249953793837373 not:0.012469887553778763 began:0.012465717758716884 way:0.012105610030480113 back:0.012090864562211581 right:0.011941707822828511 amounted:0.011564315359310868 :0.667354953094539 +of:0.09129790931378902 the:0.07369883040827747 and:0.047842263382354346 in:0.04189055351593407 to:0.04045875475680249 a:0.03542341257202578 be:0.02020462051672066 for:0.01979292654746225 was:0.01760256398103379 at:0.017380150555488715 is:0.014984483003968216 with:0.014047653760730413 by:0.01374644383819499 :0.012670486581795598 In:0.01200961464556976 or:0.011563835749786333 from:0.011391516893522809 are:0.011273104484969465 that:0.010755276030689069 :0.4809655994608848 +the:0.18542910033707968 of:0.097442592989562 on:0.08674661775804916 and:0.04137734963444035 a:0.030708440521935138 in:0.02525258851914252 said:0.02167361705676741 A:0.018062851330077807 tho:0.016141178560235826 to:0.0160767632467147 The:0.014911238967258243 two:0.014832849116722367 hundred:0.014185310992113629 from:0.013703586105056028 for:0.013229776279087382 or:0.012061793324653713 In:0.011627272040835905 at:0.011494608048799128 by:0.008484079284832078 :0.34555838588663695 +the:0.480666112907997 tho:0.0347703337044075 said:0.03438968079336694 of:0.033210467790715986 Circuit:0.033074312499371 The:0.02675309741423542 this:0.023095362448648796 County:0.022943465137410992 tbe:0.0162012755047945 and:0.01351855070897282 State:0.01310711347579744 a:0.011501465687113754 on:0.008810420760248872 that:0.008635811915866142 York:0.007500809677993763 City:0.006528143155546435 in:0.006479608379773434 his:0.006254442901056941 District:0.006253709417961356 :0.2053058157187209 +and:0.05472101312042913 of:0.02918067394652552 to:0.021758699322287706 it:0.021324904609548705 for:0.020478112813000122 in:0.0194057530314562 that:0.018982699880675264 is:0.015497140885954877 which:0.014589295085097943 :0.014245374062853394 It:0.010623264306242393 by:0.010567768911750182 but:0.010423266729088637 I:0.010093779630557279 was:0.008848808358459904 ;:0.00850238857053194 or:0.008411984303707026 as:0.008406486698128577 not:0.007739450309442277 :0.6851991354242629 +to:0.36390988987474804 I:0.1381842135209922 not:0.07469565513628013 you:0.0727542235788989 and:0.0392094363527908 will:0.03124942164848829 we:0.025500397617326892 would:0.02286593288536871 can:0.01873839333100968 they:0.01590382993017006 They:0.0157247935358494 We:0.01546488812306368 may:0.012914034472011095 should:0.01211671434683416 You:0.01141641522028464 could:0.01095209393075816 cannot:0.010455027075345387 must:0.01024526764293575 don't:0.009116736927885359 :0.08758263484895872 +the:0.12815887740536627 and:0.10127604950376051 of:0.06445137953876724 that:0.031745311865799195 or:0.025197004200132846 a:0.02329800091850283 The:0.019655512938458873 I:0.01771169591996384 which:0.01741015037036361 to:0.015954054340108062 these:0.015562019393450767 his:0.014631964374690226 this:0.013467465164953092 it:0.013218556561638855 he:0.013124169681187946 Mr.:0.012986771362285222 they:0.012715800032255217 for:0.012267285049137752 as:0.012020030208906088 :0.4341479011702716 +by:0.19062054905682674 of:0.1700972993219153 and:0.10473761733431287 in:0.053269861135569266 are:0.03829719119175269 the:0.031203716287247836 is:0.029960172174680198 for:0.026159540340052346 to:0.026027992592486775 was:0.02382167195485085 from:0.018369326465450347 that:0.017816222803407757 without:0.017525963485046547 In:0.017006480032431687 on:0.01683786053694316 were:0.01349870065488378 at:0.012823301485290747 or:0.011902558743217028 before:0.011528805022353799 :0.16749516938128023 +the:0.28464176934723795 to:0.14298189784020093 and:0.13472795178666663 of:0.03747164177233666 a:0.03576977820373176 in:0.021473533530232125 The:0.020395693587283416 as:0.01724911911733358 tho:0.014963070192574946 be:0.014726039416548535 on:0.013505694614452692 its:0.013216862936466572 this:0.013062670855750674 or:0.012039256666389123 his:0.0102774912295369 their:0.009712204467173339 first:0.009134153339428651 was:0.008882377943043725 will:0.00782592796416178 :0.17694286518945002 +that:0.3006282797824588 which:0.08825833989594935 if:0.07590645430925741 as:0.057415901162760165 when:0.046979310514990436 and:0.04469798510716899 where:0.03859947268255101 what:0.029567497471003793 whom:0.02794588647609859 but:0.027263368649816086 said:0.025667511709866035 If:0.0221645656642884 after:0.017088573952120545 because:0.01688933254693009 before:0.01683775684107503 until:0.01581127311986328 though:0.013677231415689368 time:0.013460006345194214 When:0.01100496486132436 :0.10913628749159403 +hundred:0.02334136986593815 up:0.005482494641173394 men:0.005366536521246011 Hundred:0.0047587970519216575 John:0.00441808156134956 William:0.004390720675819281 him:0.004016828614280843 ;:0.003997112205305733 due:0.003721199871732 in:0.0036582900032443304 time:0.003637206863828461 James:0.0035594902370151707 out:0.0034878448964120057 .:0.003467980723571515 1:0.0032804584819785204 day:0.0032444781513863933 ,:0.003058139385740603 :0.0030314555521939613 Robert:0.003005471634785646 :0.9060760430610768 +the:0.15688387392468095 of:0.0845107040783919 and:0.061670060891585554 a:0.03535395341563604 in:0.03349267208621508 to:0.02883791287813701 at:0.021804582187549822 :0.019760400558982132 .:0.01783341347412803 The:0.014793286446459268 tho:0.011133528888442238 by:0.010835678221031578 on:0.01057666297121745 with:0.00972137184681912 from:0.009344938406940752 In:0.008513118581446268 his:0.008390108268622822 for:0.007991773392263186 that:0.007893711697448652 :0.4396582477840022 +the:0.1502721316001521 and:0.09706775470279537 of:0.08787150309372965 to:0.04400841379948089 in:0.036119810780235115 was:0.024679698864841813 he:0.018388058490415752 be:0.01728264087317891 is:0.017255434504461164 a:0.016438796487069116 that:0.015576423533972187 The:0.015549311759087176 Mrs.:0.01513081918368041 are:0.015071766618749226 or:0.014321418776915567 Mr.:0.013056253459800205 as:0.012938798662537894 which:0.012096005450394378 with:0.010880909831369023 :0.36499404952713405 +and:0.043852331417710874 is:0.0370991462974208 protest:0.034748906091041025 up:0.03346354041737617 was:0.031604316063875884 brought:0.031118037908621485 voted:0.025445267155902656 as:0.02505182516550349 made:0.02487422838604565 guard:0.021071006621375826 fight:0.02101490083387339 be:0.01853358380807154 charges:0.018494439475789607 taken:0.01686753961961866 vote:0.01673180598250469 war:0.016627682400819084 out:0.016397896289085334 claims:0.01573937653918045 it:0.015610631239370993 :0.5346535382868124 +the:0.13758371847043735 of:0.08126231297889798 a:0.04835240661334856 to:0.03996161899422211 in:0.03603320280674478 any:0.034005415697271016 for:0.03290981553838409 or:0.031193260325817707 and:0.028804775836003934 either:0.02343738739108748 no:0.021123155370424168 be:0.016843477735894497 their:0.016601367834784518 such:0.015397861219013374 said:0.015232309787862667 by:0.013689181478574652 with:0.013615736362004947 other:0.013335896604116772 his:0.012177012617782089 :0.3674400863373273 +of:0.28767355066866834 to:0.08775711267569858 in:0.08678131196995101 and:0.05160598694501188 on:0.04646139928102899 by:0.04519522654900943 for:0.044547789071328545 with:0.03396756772609607 that:0.033699232901107726 from:0.03075346596941143 at:0.027039283056790858 In:0.021061449543044047 as:0.017514234937992545 all:0.012543839382496166 upon:0.011844431150487573 is:0.00998972746569266 was:0.008814315973987914 into:0.008557199930727406 through:0.007781895704231326 :0.1254109790972375 +I:0.2270757494202284 we:0.12198451299124506 they:0.12132007300932493 We:0.08226272443949183 who:0.052078621192277526 to:0.04674868558565357 and:0.039139007277529315 you:0.03728717086809822 They:0.028424842485011023 1:0.02184088342547565 would:0.016222940085224225 "I:0.015062482890720322 will:0.012269401432579468 could:0.01087993986707566 but:0.010327133678487822 can:0.010152250372158306 people:0.009656710944150326 he:0.009398595408284695 not:0.009244240665470645 :0.11762403396151297 +of:0.14389434971571344 in:0.13049206056202026 that:0.10989597955169789 and:0.051912437881723957 to:0.05069961062896443 for:0.04853053985079705 by:0.03999515931494656 on:0.037778943870720644 In:0.03633368585067643 from:0.029518797421258382 upon:0.027762871600883702 with:0.025648461305103017 at:0.01594290500092325 as:0.014039760000145063 all:0.013192246971336672 into:0.010447073969322923 which:0.009866044850915754 but:0.005656990181476709 through:0.005131550126953577 :0.19226053134442034 +and:0.07846100112678547 is:0.05801810451054959 was:0.04171964620101032 able:0.03689266601528692 as:0.03632309715825289 enough:0.03454825272415885 necessary:0.03384339514186549 right:0.03253807642819254 order:0.031770422738698324 him:0.03176777101031923 had:0.029819520158693612 have:0.02723827031241004 made:0.024230666617817344 time:0.022247150307646037 power:0.0209409826073667 them:0.019782894428431414 ready:0.019647137857361333 desire:0.01909673984044129 it:0.018738380787531282 :0.3813758240271813 +and:0.061432284260943784 able:0.0481185277094793 right:0.044671085650087226 allowed:0.033309050417110526 is:0.03313109738779536 enough:0.033125211958702876 made:0.03268821235252724 unable:0.03170282847137431 necessary:0.0307806804726726 as:0.02938173801280567 him:0.0289511630085864 order:0.028835390252199784 them:0.026093100225987736 power:0.02336381530909484 not:0.022888459724909736 me:0.02274815135518723 ready:0.022461056421302396 want:0.019767658980150597 desire:0.01792200530649957 :0.40762848272258284 +of:0.17925932220944205 to:0.08163885571665805 and:0.04235771195098163 for:0.04174376640542198 at:0.035438560214085486 in:0.03162979077048131 said:0.020899401463302866 on:0.020525943769536585 from:0.020464785212695853 by:0.019947811166949474 between:0.018504480426709036 with:0.018193552471271326 about:0.017476040236066036 than:0.013011092857076722 set:0.012424252286421062 the:0.012309665932592867 was:0.009430614509369497 that:0.009353535762958325 be:0.00898786869753281 :0.38540294794044705 +to:0.6057142562550369 not:0.06282267096749382 will:0.042044199565970344 and:0.04186265560614969 the:0.025974730561348643 would:0.02088328445497175 must:0.02018074074237445 publicly:0.019963249252350948 should:0.012419860519712151 who:0.010572424691816825 shall:0.009781882353249298 I:0.009415127850038325 cannot:0.008541373727897305 can:0.00808524043487877 or:0.00793789228270966 that:0.007844466666441521 may:0.00716595455266943 his:0.006560346724724755 this:0.005623474763885155 :0.06560616802628025 +and:0.08995317707915026 to:0.06844710404109794 of:0.04605142056172993 the:0.04074574508561307 which:0.02479116931334353 that:0.023764822140213245 re-:0.020841117231308055 in:0.020803825395358622 for:0.020278423301550053 :0.018417753428486977 not:0.016860793136637672 con-:0.016444405871234195 is:0.014386481772210856 or:0.014080680914153714 be-:0.01352268143271276 I:0.01317002660943805 was:0.011429878269381662 dis-:0.011196807025842847 he:0.01113106290024311 :0.5026826244902934 +that:0.21488806932375457 and:0.13704574472682768 but:0.07364295408934517 as:0.06153783271550263 when:0.056237149067654445 which:0.05511792399565147 if:0.03254514212126367 where:0.026252377085483634 until:0.018569156542656885 because:0.018405251161535782 of:0.01685808952523818 But:0.01451924119369239 time:0.014332649376990287 for:0.013714485166924044 what:0.013251216067409047 though:0.012499089054312695 before:0.012092095141291899 If:0.011363662217684147 said:0.011229030518646942 :0.1848988409081344 +and:0.24688060633506773 was:0.054414229663430624 is:0.03885201881701313 are:0.033295346968382544 be:0.03007529901940555 that:0.028909896202276998 were:0.02850147952071258 to:0.02839983214028607 of:0.01825947622977071 or:0.017506756047943724 by:0.01564997355391595 been:0.013864699012629574 it:0.01242347151113836 for:0.0120011624144431 which:0.011480594118817192 being:0.011146400967622675 he:0.010895652310320636 not:0.010308794306633617 who:0.01003065663918752 :0.3661036542210017 +the:0.38255596164657574 of:0.10965608693253774 The:0.09848569498783367 and:0.05337942466493084 to:0.042543996246636726 a:0.036862955881375926 no:0.03321773401966201 in:0.024310588224833885 great:0.023370861963554142 tho:0.018778711884462448 real:0.017786736770165176 all:0.016090485820045707 with:0.0153747910296489 more:0.014639067512262042 any:0.013901562050968258 for:0.012759547259707904 other:0.012534640136751247 by:0.012377542026774036 that:0.012241164457303683 :0.04813244648396992 +of:0.27924537489540513 and:0.10788743212526831 said:0.08401409450577946 by:0.08169528888538209 Mrs.:0.04256310814092201 to:0.03631474319838669 :0.017149431644755284 Mr.:0.016512994339240347 in:0.013729996743491305 from:0.013188872211634872 that:0.012094680229489889 Sir:0.008895907134426078 the:0.00792987530840028 Rev.:0.00754535261286452 .:0.0075115092052163825 at:0.00619635580498779 Dr.:0.005990938680391624 Miss:0.005972207910631518 girl.:0.005444946293270108 :0.2391168901300563 +on:0.15169185460517834 of:0.1494990791920342 and:0.1110188394199163 to:0.07487228069187934 On:0.06787949677356371 all:0.04481355413617444 with:0.043513023324253 in:0.04170248318454565 that:0.03416347844738215 for:0.03320798776839905 by:0.02773392703437829 from:0.02577258167815198 or:0.021590406825363957 as:0.01902286527860017 at:0.01802936931053029 than:0.016788812436407136 upon:0.01651524031398241 In:0.013385412630169341 but:0.009100366113357435 :0.07869894083573283 +and:0.3295644797374549 that:0.0352263245749853 And:0.0343277232127104 but:0.02387298888693123 as:0.022589737160419496 If,:0.01968745363970646 Why,:0.019652889424314122 there:0.01717050115654063 had:0.016054248105967228 is:0.015701437557933077 ;:0.015481356599474236 was:0.015120311439737858 to:0.014887493872418686 be:0.012977075046165108 will:0.012539898538503465 it:0.012312946020911299 have:0.011716160151707048 which:0.010101907571237629 can:0.009860339342901972 :0.3501547279599799 +the:0.33097686025082096 a:0.22244100515019352 most:0.07323540983979546 of:0.059760865428088894 The:0.04584936546139273 to:0.043334798655680296 and:0.027725054790594336 his:0.026865751578934467 very:0.021016134022483878 no:0.019811674364219923 an:0.01951705146060556 tho:0.016112174023977823 with:0.011809863732325997 any:0.010690846300379878 for:0.009183695612204956 in:0.008882840471269363 by:0.008198490140066557 their:0.00815885602296395 her:0.008050046983856092 :0.02737921571014534 +and:0.05773833045645612 beginning;:0.05259291291090912 that:0.036421338462599775 of:0.02986555289758196 the:0.026783384311690986 sum:0.02539412204754073 in:0.022322440436631286 which:0.017761792567882368 interest:0.01756256370060512 mortgage:0.015510768288552182 :0.015106805145604226 tract:0.015047371068251594 as:0.014243419220827577 beginning,:0.013672195924135747 for:0.012400888471155867 be:0.011929599827528862 these:0.011870274743067998 there:0.011616745448130981 it:0.010961340773312345 :0.5801981532975352 +and:0.15592543301724224 of:0.1284223644335418 is:0.08896901538143764 are:0.06212182829199037 was:0.04535527484518247 by:0.030520339018947032 as:0.027198329416435126 from:0.026033660702744734 that:0.02310404989234508 it:0.02226749624587918 with:0.020483974177758206 not:0.019583619375456083 now:0.01936146116579486 the:0.019181103640100308 It:0.0190743410835479 same:0.01898440679400867 land:0.01567661809753323 were:0.014858967552416646 in:0.014137692637042667 :0.22774002423059575 +of:0.11448329899677065 is:0.11322226093978319 as:0.08548090304658536 for:0.07799412544871168 was:0.06492291758649424 in:0.048817272015417135 with:0.043741024801313894 such:0.03829842822742209 be:0.03334908159740628 and:0.033343874637659365 to:0.02982505341544602 at:0.02672442729988444 by:0.019999677717283813 made:0.016572995351003254 make:0.016483130687458367 Is:0.014903290437069137 In:0.013115830371774408 been:0.012790296439135967 have:0.01222845169454419 :0.1827036592888365 +in:0.39758736715553705 to:0.15892520513221065 In:0.07446041193217363 and:0.04735486922320753 not:0.03470944721601712 of:0.03227109088358445 for:0.01487740429273219 with:0.014668638227652273 the:0.013760805533400653 will:0.013608249149473409 I:0.011939136755963748 iu:0.010623798634661537 no:0.010093808694142808 his:0.008854134282519724 we:0.00842051644795381 they:0.008242567870943013 was:0.008237089023311423 is:0.007659500392491577 or:0.007652971089111073 :0.11505298806291232 +the:0.6901701977701072 a:0.09065210165135182 The:0.03770376174565172 this:0.035504457173569655 tho:0.02395566123021887 of:0.021338258844128186 and:0.017473848318727055 our:0.013498353424905693 tbe:0.008733462724018733 that:0.007447499950627531 to:0.0062771231399656015 in:0.004772327889855952 their:0.004199014108954527 present:0.003742822175053612 or:0.003292870147446822 new:0.003126494992753463 every:0.002952895027973291 any:0.0027937871067686107 its:0.002781305984816107 :0.018583756593105467 +and:0.18754144550462523 that:0.05654644639698362 as:0.04059139569919836 which,:0.01954649359396989 and,:0.019082470435771628 it:0.017556533653312927 but:0.014456650337818554 or:0.013255280336567359 time:0.012531758084529202 them:0.012442548987734251 work:0.010620648986520943 him:0.010232673305841766 which:0.0098720846073036 therein,:0.007227870734387418 :0.007064529034388962 that,:0.006741955244044144 made:0.006597181507655601 be:0.006390080955791383 out:0.0062914761365654 :0.5344104764569898 +he:0.1561581011538873 I:0.13848553770658825 be:0.07561669868720322 have:0.0691073403409867 He:0.06597877127695613 was:0.06433723315813114 had:0.05816142788400064 are:0.045728731710119375 is:0.044785087550371076 has:0.04348304387334589 she:0.0386862071019993 and:0.038666071145147245 were:0.024700022909017814 been:0.02345330840183282 never:0.017749108225282806 who:0.017150272600962788 they:0.014909869926845275 She:0.013827842350463094 not:0.010957131099090607 :0.037058192897768495 +was:0.14369456731421376 is:0.14059996981225942 are:0.07804838366032778 and:0.06778011863181552 were:0.049314941401911554 if:0.04455715559234399 do:0.03629025246093 had:0.03388021996135764 but:0.02904090659577147 have:0.0266095962337789 Is:0.024599415754917107 did:0.023356520744306015 it:0.022553119198760727 has:0.017456118370473877 be:0.016113889945994924 am:0.0140391150340518 does:0.01388641654844054 he:0.01155414954936382 will:0.010742232383286796 :0.1948829108056944 +virtue:0.062060494787377685 out:0.05417899169104244 part:0.03289673107629515 one:0.02969369892462812 quarter:0.027015883171169475 favor:0.01993830018372674 result:0.019463829004704194 guilty:0.018891084377354095 means:0.018499162894926688 end:0.018170939082736048 that:0.018121271122199262 construction:0.01726217741616459 presence:0.017003995482744873 tion:0.01673652166540914 case:0.01640819963257697 side:0.016055927605250184 erection:0.015381239457214257 account:0.015287601389485416 hands:0.015156055434805247 :0.5507778956001894 +of:0.14140911374913043 the:0.08406324275408093 in:0.051712664696044124 and:0.042016144218116745 that:0.03344666676867289 to:0.027709869064190353 The:0.023638573607111874 for:0.020483914568636966 Mr.:0.017669174058513534 which:0.016972368561751192 as:0.016259401671191127 a:0.014920071848964473 :0.014646146896987337 In:0.009940105168995288 or:0.00909223143114935 such:0.008359976573547796 when:0.008218759560201584 -:0.008178509589941811 by:0.007801238855262815 :0.44246182635750936 +the:0.13495043060413897 of:0.08116512228138067 and:0.0666484668031579 to:0.061479885922863124 for:0.0225472057129304 in:0.022258265482069606 be:0.02060705238488401 is:0.018128702512605167 was:0.016565762763359006 a:0.015576597161064762 that:0.014241236932705084 their:0.013967877427544685 he:0.012125594536493497 or:0.011887633530224664 will:0.011130101470498135 so:0.0108874112080436 at:0.010863400836486839 :0.010492776840493524 his:0.010323787803221298 :0.43315268778583504 +day:0.05680780589704615 up:0.015609338487924238 night:0.014681471738068433 in:0.013411533483806706 here:0.012521058352391768 home:0.011849951990714013 him:0.011638637300773226 time:0.010983997726433645 city:0.010433718012783847 house:0.009298805950908404 men:0.009028746247202256 place:0.0087240509101552 life:0.00839326682775796 morning:0.007612250414092926 out:0.007508529740269049 long:0.007461724346815755 on:0.006784957603229398 county,:0.006509845802316552 of:0.006340067686866936 :0.7634002414804435 +of:0.29408922538303384 the:0.24760256305506775 in:0.09413730200566138 with:0.04551953062521176 and:0.04315539704065563 a:0.038473020806087034 by:0.03101287604796594 The:0.022330631734550573 that:0.017883239298330123 In:0.015370125276729403 any:0.014124957872180263 to:0.013788863464905945 from:0.013596290796414097 for:0.013381300288633864 tho:0.012970417789708739 other:0.011860999713472405 or:0.010629886609672996 on:0.006391442359457232 an:0.006300825428302703 :0.04638110440395832 +of:0.14320949007205303 the:0.07486547639045957 to:0.05615571924331203 at:0.04719520818810769 and:0.045012290141181285 in:0.04359184492773395 a:0.03525196296861433 for:0.02766840167088024 :0.023642611756884233 on:0.01639690636450603 by:0.01623112989731001 from:0.015500305844919645 or:0.013969085679511642 was:0.013595797312321141 In:0.012649349857066302 with:0.01257682087313592 be:0.012221709569774086 that:0.011424307288873958 is:0.010732256473291181 :0.36710932548006375 +of:0.12052242606399097 was:0.08842134644388124 is:0.08213297284332503 and:0.0813599545415992 with:0.07982584831912676 by:0.0561162256354488 to:0.05226329326141647 on:0.030911680464349375 in:0.02978431225110819 for:0.026289111822845202 as:0.02605727355069816 be:0.02411522044410765 made:0.022272537909000804 had:0.02008799540989934 have:0.0187757150896961 that:0.018702286938091024 at:0.014744815920460562 been:0.011928494641709838 but:0.011683313874905711 :0.18300517457433962 +and:0.07021696083002583 as:0.05851620986563144 able:0.05716670429647251 enough:0.04318343551756111 time:0.03476798430435758 him:0.03274229020499328 them:0.028311428281299955 necessary:0.02794821442519428 order:0.025878538452907413 began:0.02549362756124314 not:0.025015379303175295 or:0.02472078535039449 me:0.0246427228876626 willing:0.023264905526817883 unable:0.022854063837942903 going:0.022289813821137008 is:0.021650426449907643 trying:0.021026149159546426 ready:0.02015385525202833 :0.3891565046717009 +the:0.11919516938815296 of:0.07230453158552728 and:0.05781056740443249 a:0.043018564803886335 to:0.031305092790907506 in:0.020848713353460488 at:0.014270110001066288 .:0.012526810245749479 :0.012413283442322082 for:0.011719122709941797 by:0.010808400946589808 or:0.010404172990115616 The:0.01003576004804544 with:0.009811868184449042 tho:0.009295902015355835 was:0.008924239095331684 that:0.008672304223433876 is:0.0085591147338948 be:0.008335143826716943 :0.5187411282106204 +United:0.8252324332872404 the:0.02421084643219984 I'nited:0.014181774651552683 ted:0.01177793324914468 Southern:0.011274309385784378 of:0.00785067474230088 nited:0.0070836520234614665 per:0.006765562360373708 Uuited:0.0067138316888382095 Confederate:0.005681114875416296 Northern:0.004229698572736868 several:0.0028824968290850628 other:0.002774450544221398 any:0.0023283587234590804 and:0.0023200335384824322 said:0.002240262774992208 in:0.0021465232432647543 Eastern:0.0020029435935982154 this:0.0019634494517829703 :0.05533965003206459 +it:0.1560857136638854 It:0.12135539300269582 he:0.10539409174361869 which:0.053203736028074405 and:0.04408829177245732 He:0.03484342560338337 that:0.03051609252659353 I:0.028498760007407177 This:0.024008633401761997 who:0.016186791104206878 she:0.016135421446298467 this:0.011914807004325848 what:0.011907493462721347 there:0.010410530376230904 be:0.00827513199131113 as:0.007741150877706541 lie:0.0072580177609154065 but:0.007149770879510148 ho:0.00572744941363466 :0.29829929793326093 +of:0.2506417745062039 to:0.11062588383479298 in:0.0684071901749144 on:0.06637018834412081 for:0.05288066417637308 and:0.03893858382463641 was:0.033134264823217435 that:0.032958645368566894 is:0.03173108195927241 all:0.024017284258309027 with:0.02297251675245221 In:0.02284690099391363 from:0.018209048741152176 by:0.016947318410196324 at:0.01683011019298609 when:0.014763903564200714 as:0.014024382991760771 upon:0.01324134986381467 but:0.010204888836323936 :0.13925401838279214 +of:0.09043409053013649 the:0.08458268447909405 and:0.06941169710674647 to:0.06842685376506503 a:0.03502196399400508 be:0.027631492661475 was:0.02262770347407094 or:0.020899547147549786 is:0.018061672947865565 are:0.017763045964156114 his:0.017114589037761113 for:0.016727962397261282 re-:0.0162769353827767 their:0.01514882567544624 been:0.013878331263912594 were:0.013374436412516415 that:0.01319950985941409 at:0.012567281873590285 :0.012294075404375895 :0.41355730062278084 +the:0.23931310073210876 of:0.21911499208306676 his:0.04257087964405546 to:0.04167282003018301 in:0.03827209589208355 their:0.03795583282132932 good:0.0364220724001348 public:0.030023741627635516 perfect:0.02752248553609018 for:0.027258471089274292 and:0.02366035657457106 my:0.0187874055609008 or:0.018372926266538383 an:0.01625145095750448 her:0.01470756966266343 our:0.01469489214216292 general:0.013803905592646678 no:0.01356189262079306 The:0.013516219393311876 :0.11151688937294568 +in:0.2600752457745134 of:0.15516158969112365 and:0.06778146624657287 In:0.06760672654196145 the:0.06350197800238729 to:0.04958817195769842 by:0.04704450096300048 West:0.03881760551314387 at:0.033471146674288625 from:0.032684221026178455 said:0.02366908344975683 a:0.01693529224285356 for:0.014140766930305464 into:0.009093425682554885 with:0.008557628727259972 Mr.:0.008133504337924962 on:0.007203219399857399 South:0.007050930214955258 that:0.005714650490353224 :0.08276884613330991 +the:0.16452488539004156 to:0.13730517408069895 an:0.1117668975703949 will:0.06714780261719631 and:0.05030577977128095 of:0.049197808064954524 not:0.047049206286831805 is:0.03364417539857213 in:0.03176487540403332 would:0.028516038544934976 for:0.024399353677250372 a:0.024397131979934605 with:0.021389920507116023 are:0.019365391504696804 may:0.015388174032908559 almost:0.01484059733709554 was:0.013182261406332291 be:0.012561567588032965 wide:0.011326846585156284 :0.12092611225253709 +be:0.23295264481216368 and:0.08019495680548583 was:0.07919083240464596 been:0.06342612635643635 is:0.04208385426797919 he:0.04204753733280348 have:0.0289793242691156 well:0.027432991628913928 were:0.026610112465516086 are:0.026476278440569167 not:0.02565243455740442 I:0.0232925707096944 has:0.018500521784588147 had:0.017315661303961012 being:0.016409365144792493 it:0.015129490188480817 bo:0.014236362156377523 man:0.011131289507860942 so:0.009640069461873808 :0.19829757640133713 +of:0.28767355066866834 to:0.08775711267569858 in:0.08678131196995101 and:0.05160598694501188 on:0.04646139928102899 by:0.04519522654900943 for:0.044547789071328545 with:0.03396756772609607 that:0.033699232901107726 from:0.03075346596941143 at:0.027039283056790858 In:0.021061449543044047 as:0.017514234937992545 all:0.012543839382496166 upon:0.011844431150487573 is:0.00998972746569266 was:0.008814315973987914 into:0.008557199930727406 through:0.007781895704231326 :0.1254109790972375 +and:0.11006606002345282 was:0.050283477448818455 is:0.042788808114377935 are:0.03110370851489007 recorded:0.02161032211650405 be:0.020259943527962853 were:0.018634312144744168 made:0.01784348064503238 that:0.017465107743907242 as:0.01731243316847388 it:0.017186290398926277 found:0.0170466617753808 or:0.01675361309343694 been:0.016632310926114918 up:0.016017336171426713 not:0.015704401227686186 but:0.015391714778267332 out:0.0136825355744642 held:0.013084698532893067 :0.5101327840732397 +and:0.12545504259422585 was:0.10312859387862922 to:0.05993293801259021 will:0.042000080261482234 be:0.04004341675811446 that:0.030352348666452027 is:0.029602514427076492 were:0.02515490766165492 not:0.02445552669161939 had:0.022831100503119282 or:0.022382346497725962 been:0.01991486183722601 would:0.019306489361015564 at:0.017149531597925177 him:0.015873923272692773 as:0.015238813430812851 could:0.014217251982928033 have:0.014059278775359962 for:0.013569284386702248 :0.3443317494026474 +contest,:0.039649999524988044 one:0.020446722860348914 ;:0.016969122320775853 in:0.01556803143524018 and:0.012702677170677433 them,:0.012580471572874658 it,:0.011070240985456488 more:0.009970055987738202 action:0.008610151518505837 two:0.008398338645240118 for:0.008344028138669867 on:0.007733960988923175 States,:0.007533953977463037 sold,:0.007212186681461543 little:0.007167713549666281 any:0.006743706377145305 year:0.006718119841031088 law:0.006035839832548395 mortgage,:0.0059168583280601855 :0.7796278202631854 +to:0.4498667942602662 and:0.07001685177554963 who:0.03916715687429752 I:0.035881440665858286 which:0.03118948086061974 will:0.030882813590567194 they:0.02306799377448756 we:0.018592028060403495 he:0.01805100371846521 not:0.017835950466320336 that:0.013255791528891413 would:0.01115689387093756 only:0.011061361858321682 shall:0.01062749561104654 can:0.010559002964713632 should:0.009576477271832393 it:0.009294546408060036 could:0.008843074475969208 It:0.0079335432934991 :0.17214029866989325 +in:0.17527729651704826 of:0.1400955190911062 and:0.08706731196150709 to:0.07951523804725949 with:0.0671324049852451 In:0.05328626278016354 for:0.04439597534452617 that:0.044357419548330244 from:0.03116242796959054 by:0.030649057717387292 on:0.030596556355882567 at:0.02677784506335764 nearly:0.017348514857562176 after:0.012551213398793313 upon:0.010807272392791178 or:0.009321449729704995 was:0.00876514914833184 do:0.007948635254628833 but:0.00785464461731247 :0.11408980521947104 +the:0.22199054599780318 of:0.10200720104079948 and:0.07975710492971926 a:0.0700055201974846 to:0.05995892794988795 in:0.034412651544287576 or:0.02049597623978224 two:0.016190736616017595 all:0.01583945961280619 their:0.014675684911001765 at:0.013518356799958662 tho:0.012924401614457756 his:0.01282603896586761 by:0.012409466499551089 The:0.01200125599000187 an:0.011316883932076237 other:0.010568261071118077 with:0.010252064819314975 for:0.01004730209271312 :0.25780215917535076 +of:0.3283034436820992 in:0.20243822514554596 on:0.06999147823400319 to:0.06267980688043877 for:0.052782888704205666 In:0.027849197155510857 by:0.027220012610737886 with:0.022229613485268997 from:0.020555661911620365 and:0.017294206040534815 at:0.009347971162735617 upon:0.007471082990911121 ot:0.007059956791829372 all:0.006649273213697112 as:0.006582645709155649 iu:0.006535622340437255 ol:0.005929525017882177 into:0.00570089484105124 that:0.004150571838296904 :0.10822792224403789 +and:0.07501387695488611 days:0.04620457268788843 was:0.0440220114884276 or:0.0351377640020898 time:0.03474732773773222 that:0.03419637151520699 never:0.032146003935385144 long:0.03184305542640406 be:0.02982699213632672 minutes:0.02742289527591825 ever:0.024863792837074947 is:0.023789952220719314 years:0.021960046209748788 day:0.021515552359675203 just:0.020028580170506665 but:0.019386548815899643 were:0.017608594624758132 night:0.016748090816846275 not:0.016479249655476372 :0.42605872112902937 +of:0.516899315161299 in:0.13125265721855084 to:0.07177916856876627 by:0.04129644712349763 for:0.03339808127925018 that:0.02631403685795663 and:0.02085340405194267 In:0.02036013805629581 from:0.02020028354571576 with:0.011896963915412631 at:0.010600422476415213 as:0.008533753182499668 ot:0.008053900162085417 throughout:0.007324027693985797 on:0.006136320941072775 which:0.0061106779207973526 before:0.0055581025073286865 into:0.005305634893660316 when:0.004751044411970078 :0.04237562003149736 +and:0.14416002966695973 the:0.09749988943307134 to:0.07193466417232265 of:0.03366521197728788 will:0.028693813735959264 a:0.02745493033320287 I:0.022883771475235636 he:0.01967108017793129 in:0.01618529977679739 they:0.015830006423463605 as:0.014557301386630037 that:0.0144484450089164 his:0.013206846140319783 was:0.012367328890208525 be:0.012095232452522229 would:0.012009476689188787 for:0.011898337517370464 can:0.011689019044312347 which:0.01139230200742492 :0.4073570136908749 +the:0.3334545526060213 this:0.11761521727002705 that:0.11396425755143039 The:0.056933008990778244 same:0.04845311402667089 first:0.0402075612634143 of:0.03838874448531411 a:0.02983025173363783 which:0.023801269504744243 some:0.02235749886569479 This:0.01989937758615565 short:0.018955607574952772 tho:0.015141631027188344 present:0.013828768983810606 his:0.012999601158867181 and:0.01296415627504721 in:0.012555761516794252 any:0.012332902145101875 long:0.011648600129244837 :0.043668117305104115 +there:0.15282240558043036 It:0.1250877021251384 it:0.1172130349964821 he:0.08447653464159645 There:0.07990106646359449 He:0.053545487723974064 and:0.03475602177722308 I:0.033514699763994925 which:0.028339689006514263 that:0.02258044118480592 she:0.020389246311069347 This:0.018864857928065765 who:0.017143411225723663 She:0.014044583378045664 this:0.01264429778309141 lie:0.005676248946248602 ho:0.005008892472785812 as:0.004728079857187771 one:0.00469102709236943 :0.16357227174165848 +and:0.023990976767912564 made:0.016101981234931038 all:0.013782557324969615 the:0.012206593281667117 day:0.011454322881965864 well:0.01135770847147091 them:0.011178034901288795 men:0.010946031797495478 :0.01035816895044976 on:0.01006266904263266 him:0.009988599430076864 feet:0.009870109835664465 :0.009621169634711565 up:0.009607141516498776 it:0.009596154104581315 was:0.007564739376098244 time:0.00733943325692815 both:0.007331859778793526 be:0.007020896684630087 :0.7896208517272333 +It:0.2776008260220935 it:0.2654374422237026 which:0.04580082890873498 he:0.041784445861697446 This:0.04040547724483476 that:0.027692838657641022 He:0.022819624955444397 and:0.0202228455809345 this:0.018252990532004694 there:0.016614883420914158 who:0.015251051683766531 what:0.009302569791221418 she:0.009267883720565015 There:0.007627487672794621 man:0.006213312991584561 work:0.0051672367809010725 She:0.004645948731605816 as:0.004041639711234503 life:0.003805652589899944 :0.15704501291842446 +of:0.1267597258885527 in:0.10207450906829285 the:0.06578186187213039 to:0.05117594862686183 at:0.03224939378708419 and:0.031469396534711314 a:0.028921833669704543 by:0.02715848807504589 for:0.024436182393734636 In:0.02438129342452556 on:0.01593130061256885 was:0.015392741343858157 that:0.014949341838458774 from:0.014701782160433188 be:0.013942450886165221 :0.013717217689426438 with:0.013475161891848613 his:0.008715120162088365 were:0.008193284972396277 :0.36557296510211224 +was:0.1969625068041715 be:0.19497304938941343 been:0.12121926822511137 are:0.10761650964904879 is:0.09449245648498346 were:0.0939794981227816 being:0.024795186363788097 not:0.019667207187850765 and:0.01785933661536672 bo:0.013667660858066323 have:0.011972606528672464 had:0.011885676200397632 am:0.010852970184616582 Is:0.009594453475366107 has:0.008967151047322255 he:0.007830133978025282 hereby:0.007630931896683519 now:0.007332956538821358 so:0.004718425157852335 :0.03298201529166048 +and:0.10690823513021744 the:0.05026935167079969 of:0.04124827207358407 to:0.03843391592959132 that:0.02488987506607766 in:0.024321129093953488 be:0.02125487904744933 was:0.01995001970452788 is:0.01962987984889738 as:0.01867810044225034 or:0.018444189668679802 for:0.017809624341632854 which:0.01637122715053389 he:0.013760237187430793 :0.013433329441959059 are:0.013219152455002492 re-:0.012911244577459478 much:0.01120442829356814 were:0.011076433016270848 :0.5051864758601141 +No.:0.10041592150644216 .:0.06956768058374387 Sept.:0.06902623786454774 Sec.:0.06023256375555617 Aug.:0.04789264680987493 Oct.:0.04397809383314168 S.:0.04091251452618394 Mr.:0.04067793587959302 N.:0.035788766658479555 Nov.:0.0341316370884078 Feb.:0.03403668126659623 Jan.:0.03310223664567881 D.:0.029020338761330998 W.:0.024511360819713803 of:0.021340369873586992 Dec.:0.02062217339328508 Mrs.:0.018205822253854656 E.:0.015011165777958647 June:0.014798858436978379 :0.24572699426504555 +more:0.05491568680365335 hundred:0.047003612548129715 one:0.027386706275000453 up:0.013172529363047962 men:0.012395381175563247 time:0.012331335801212913 dollars:0.011236640410060008 due:0.010324043061745551 two:0.009253967502363208 out:0.00901342568076487 it:0.00797467653057438 good:0.007780083827254328 other:0.007667241479244631 in:0.00751349476044779 it,:0.007152095551100631 long:0.006530266154355063 him:0.0062614662524500585 and:0.006091173563604102 made:0.006082338937577981 :0.7289138343218498 +made:0.09181735062213989 and:0.0820594470406722 required:0.03684385482556852 done:0.032970758527369644 caused:0.03127589649362507 but:0.02173392179055295 that:0.020846465595073086 or:0.019864446724667584 prescribed:0.019286727232005592 ed:0.019027967375769415 appointed:0.016978285781207723 shown:0.016967039051765866 taken:0.01693731568182618 provided:0.016930395313782372 given:0.015428720703101305 used:0.015361698305292734 allowed:0.014985522086829546 up:0.01461908923247722 out:0.014209469697349257 :0.4808556279189239 +the:0.22145959057082004 a:0.10273089629185062 of:0.0731821569395069 and:0.05582314065067287 to:0.03636487261389759 in:0.02638459044116295 an:0.020873873888524252 with:0.017836970195968027 for:0.017093761241435412 tho:0.01449497233807663 The:0.014008635709695173 his:0.013980196496484285 by:0.012368348895376495 their:0.010305606092190382 at:0.010087473693946674 that:0.010057132323075233 or:0.009326813700426413 Mr.:0.00920578542608518 .:0.008751878629630479 :0.3146633038611744 +it:0.11857892928876056 which:0.10419954526017984 It:0.10229720510101595 that:0.06796245048918885 who:0.06088908826247786 he:0.060731706658395446 there:0.047718276913133226 and:0.0298646407467943 There:0.025721626378001235 He:0.023765504777663107 default:0.02149030696489031 as:0.019132676760165265 This:0.015088553278066501 she:0.01413948392901254 what:0.014110548249504374 this:0.009613248172212615 work:0.008813388419150843 man:0.006677000754574867 country:0.0066605789516794795 :0.24154524064513283 +a:0.3174253946427277 the:0.14863284553696743 most:0.08619074003940387 and:0.061487262923461294 very:0.05409932345318777 more:0.03813729306274553 his:0.027423730496088358 of:0.02460221522444431 their:0.022193816648194444 no:0.019768349471331315 The:0.017536365639496683 by:0.016657926065119993 as:0.01578771287962667 that:0.015263890794748589 is:0.014307360654605502 which:0.010980603704139618 this:0.01062206596040446 A:0.009745003397628807 some:0.009312822624157288 :0.07882527678152043 +feet:0.0719208472326295 poles:0.05759396229176634 up:0.04010587224329879 chains:0.0385088170079141 entitled:0.029123404981740347 went:0.027388526271997813 came:0.025857650765910022 down:0.025633262313841977 him:0.025574415868859987 as:0.024916209858287616 and:0.023917753661251574 subject:0.02185045005331621 brought:0.02171367122116056 them:0.021644069985480026 it:0.02099405133651225 rods:0.019030517253069822 back:0.018922583019034468 go:0.01891708435510451 sent:0.018892511875840953 :0.44649433840298314 +the:0.1801122803948676 and:0.11206998442787508 w:0.08380339153949885 The:0.073364377430021 his:0.05833658516108748 my:0.023765081699929805 that:0.022590863805993743 a:0.020998769535462355 I:0.020104821446227782 t:0.01640279479784041 His:0.0159606847695181 this:0.014262374586740081 he:0.01371635517498582 of:0.013579787842711417 her:0.012401246378735376 tho:0.01223119012245188 their:0.011681838479452932 \\\\:0.01087787208836979 which:0.010780880208737352 :0.2719588201094931 +and:0.09225734078713084 to:0.07102981385271306 was:0.0676815449226762 the:0.06504806303549854 be:0.0549287183812372 of:0.03853807166389096 is:0.0331118153542861 a:0.031166563302627757 at:0.028799716345080828 in:0.02875473156356524 his:0.020074593636713062 been:0.019115187392357777 were:0.01860907310415459 are:0.01645363616173149 or:0.011838156605529782 he:0.010185561206022849 not:0.009857958084364174 I:0.009319292809878987 In:0.008079097798512869 :0.3641510639920277 +the:0.3159698062216846 of:0.12652774138626963 in:0.06469321861661913 their:0.04894332959271487 all:0.048012102335448226 and:0.044360604453849824 The:0.03771837572747762 for:0.02994361237402186 a:0.02741806154540911 his:0.02712443641250636 our:0.020873854253873322 its:0.018957170384635416 tho:0.01420327672234312 by:0.012904790819335174 with:0.010265962206801682 that:0.009376553537004598 your:0.008796209800625156 In:0.00836394680820011 to:0.008201615918462425 :0.11634533088271781 +and:0.09379053924927042 to:0.0742855066818078 of:0.06739630294563433 the:0.059809119354988456 in:0.027631208092333288 be-:0.027293809025147272 that:0.021435074971841002 was:0.020009129418631 for:0.018363033111366858 two:0.01705484412802581 is:0.016963649837169994 or:0.01689964597852544 be:0.015590573410395322 a:0.015001108975733878 which:0.01499881791074982 :0.013443348992596298 at:0.012448389513759608 by:0.01164637080842974 con-:0.01120718746514304 :0.44373234012845064 +the:0.36059889252407656 a:0.09795452371582548 his:0.06542854577144591 and:0.053557362984373365 of:0.03731504341140291 The:0.027288125516524715 tho:0.026064274847013347 my:0.025591684298725794 their:0.025009432232576113 her:0.024303220991272564 this:0.019921531699986464 w:0.01869862424024479 no:0.015184589186156132 little:0.015058064332763743 so:0.014732511143094915 old:0.01434591419237212 our:0.01367564367324211 an:0.01344313877338811 said:0.013088654331409592 :0.1177402221341053 +the:0.10727238322563422 and:0.06000055590015782 a:0.05513850707830498 be:0.0505352392019535 of:0.047822498252997385 in:0.04580463250131516 his:0.03209721343268347 to:0.030675621265536548 was:0.026907998523880938 is:0.022365919708545002 for:0.019298081045217925 at:0.01780235393880387 their:0.017241120908284325 her:0.017189250241439687 with:0.015766342522436225 or:0.014586761253444932 been:0.013365784266769263 In:0.012666207473245343 that:0.012082608883410149 :0.3803809203759393 +in:0.22718749858079093 the:0.2019362141421188 of:0.18302410637307823 and:0.07363078955410768 In:0.02422922764617985 for:0.015386478817665975 to:0.014147577642693736 by:0.012163844956260187 these:0.010041016357746657 other:0.00980703309442598 their:0.007778293046721206 said:0.0074925732970862234 his:0.006864656288006546 tho:0.00643135802373046 that:0.006239017019793887 our:0.00558671475323403 two:0.005409706834158365 all:0.0051767629283206995 on:0.004825553948675636 :0.17164157669520494 +as:0.06931392982974462 according:0.052071562389565784 up:0.0511867300210483 and:0.040371568633051955 went:0.03351644485287816 back:0.032358406609281 regard:0.03073407747799069 feet:0.02852138506231652 down:0.026379903432040268 owing:0.02466642634685871 due:0.023695193974505355 go:0.022910973192184297 reference:0.020802802907016128 came:0.019883741951819873 sent:0.019874244915639484 attention:0.019565955494145405 come:0.01885185084678811 given:0.018792390567602263 it:0.017366961307524745 :0.4281354501879983 +the:0.1338986233819562 in:0.08339982554397761 of:0.07137672620284273 at:0.0377508274051231 said:0.022419470714580787 to:0.022290414130415603 and:0.019917225402326245 In:0.018604190099434603 for:0.01709417449737076 :0.016921263898699808 a:0.016363141467392376 from:0.014309378464674713 such:0.01310804545628831 his:0.00987195991467303 that:0.009665584990514701 this:0.00886886078271925 our:0.0076426732107192545 tho:0.0075506077505408395 :0.005781905589330757 :0.4621651010964193 +that:0.2368331833616516 and:0.1483503130228932 which:0.07274416519702762 but:0.052424205829178096 as:0.045556036319538154 when:0.030405268385311744 if:0.028199075748118533 where:0.022200045401102805 what:0.021877372818253266 But:0.01675127063241316 If:0.015886390234708624 then:0.011873610226335672 think:0.011786861644684177 because:0.01104249320116081 And:0.010851210509525096 That:0.010017124406564784 whom:0.009690871181499652 ;:0.009072120386997734 while:0.00839614491070763 :0.2250422365823276 +the:0.579884453337975 of:0.07395748025574767 and:0.033549455140386354 The:0.03001562999969727 by:0.023955985651464482 tho:0.022560368833780875 Vice:0.021647433792562346 to:0.01803646671923159 tbe:0.011451492073422718 at:0.007959921208336303 our:0.007552310654459814 a:0.007117869912881946 in:0.006837365461886928 :0.005496456656424152 with:0.005163531062792426 said:0.005100241148735362 his:0.0050688102019243566 on:0.004815008822088314 from:0.004442465853496831 :0.1243872532127052 +the:0.2288437879115205 a:0.11594099665573646 of:0.11203994921380485 to:0.056229127057827705 and:0.052979806636994704 in:0.028119658855339517 The:0.01957232065917756 for:0.018001773216608393 with:0.0168089469358518 his:0.01648180457861102 on:0.015823399135901344 their:0.014215282019418027 tho:0.013124711651434178 or:0.011867139786645732 at:0.011767265203431179 that:0.01125898466043612 an:0.00953385056413984 our:0.00944198757931603 its:0.008326003267767178 :0.2286232044100379 +of:0.09129790931378902 the:0.07369883040827747 and:0.047842263382354346 in:0.04189055351593407 to:0.04045875475680249 a:0.03542341257202578 be:0.02020462051672066 for:0.01979292654746225 was:0.01760256398103379 at:0.017380150555488715 is:0.014984483003968216 with:0.014047653760730413 by:0.01374644383819499 :0.012670486581795598 In:0.01200961464556976 or:0.011563835749786333 from:0.011391516893522809 are:0.011273104484969465 that:0.010755276030689069 :0.4809655994608848 +the:0.2751360286853898 Wall:0.05629592379752217 Main:0.036361425743941876 of:0.01768479299153788 Third:0.017289621633348972 Sixth:0.01280931667741186 Fifth:0.012408665944953948 Grand:0.012352055028272222 tho:0.011899812061403699 Seventh:0.010914990325858367 Southern:0.01068091061398999 Market:0.010658116146035635 Pacific:0.01046290017022444 at:0.01037911670607901 Fourteenth:0.008984727740175452 Central:0.008953323149554675 and:0.008613830032581178 in:0.008121615260013496 :0.007777137335180492 :0.4512156899565249 +the:0.11919516938815296 of:0.07230453158552728 and:0.05781056740443249 a:0.043018564803886335 to:0.031305092790907506 in:0.020848713353460488 at:0.014270110001066288 .:0.012526810245749479 :0.012413283442322082 for:0.011719122709941797 by:0.010808400946589808 or:0.010404172990115616 The:0.01003576004804544 with:0.009811868184449042 tho:0.009295902015355835 was:0.008924239095331684 that:0.008672304223433876 is:0.0085591147338948 be:0.008335143826716943 :0.5187411282106204 +the:0.5531169505470692 a:0.0665272028018763 The:0.06079273791613127 tho:0.03252037916149946 said:0.022555909402671156 A:0.01828149379806493 this:0.018011030915089477 tbe:0.015563578123383206 and:0.013451939316676337 great:0.009203375996289625 of:0.008044396939356432 White:0.0071545549205532626 that:0.0070282541698167885 Commercial:0.006889746992339222 or:0.006093304353689737 County:0.005858336385828973 present:0.0048692770904443464 whole:0.004082245854267221 per:0.003977048415698116 :0.1349782368992549 +the:0.04877205651576288 1:0.039544598789571075 -:0.032720922614977895 t:0.028509959554051712 a:0.024973266834415222 in:0.02002162798270746 and:0.01937095470424251 I:0.0188790236338153 i:0.01670841700076947 lot:0.01511764472011452 at:0.014859485900258908 was:0.014709555563539527 2:0.014254201286935778 4:0.01315195601862548 :0.012758967856140578 .:0.011481092285810134 11:0.011347078154501589 that:0.01048518925342096 6:0.010230283322581673 :0.6211037180077573 +person:0.025119253142184442 in:0.02388025072603003 action:0.020210691518571088 on:0.018461637447672496 one:0.018459150193964897 man:0.015487409515776589 right:0.014807067300635246 day:0.014336237846548756 city:0.013802685160950382 law:0.009698324113600788 place:0.00965159939027175 oath:0.009184482434087508 time:0.008419600767253486 at:0.008419165977402287 town:0.008048482053380773 more:0.007866216389416467 for:0.007771669577931738 and:0.0077586954168020915 up:0.007508262057233299 :0.750109118970286 +and:0.060481860857492006 suffering:0.02646854600581883 free:0.022384758895160707 or:0.021279274038914414 far:0.020220658028530798 away:0.02013743594099486 it:0.01972926535447139 miles:0.01914147758797952 them:0.018729347859532987 taken:0.0169343761266032 out:0.016728967524815428 made:0.01545743748873387 dispatch:0.013327622483053199 received:0.013084474169658022 up:0.012573097842281146 him:0.0120634530617998 come:0.010913163659370562 of:0.010833521745309016 is:0.010604652531713374 :0.637906608797767 +the:0.13568061824313016 of:0.13383787861504082 to:0.059159841214241574 and:0.04970014431620402 in:0.03204082158181715 by:0.02630974081985274 a:0.021742362556248507 for:0.01951184146943985 be:0.018807050736466772 at:0.016880455609312683 that:0.016863867189257226 on:0.015765651141395814 as:0.013734594138706686 or:0.012401845482787225 tho:0.011990472879975188 with:0.01190869498880815 is:0.0117465804299707 from:0.011726440735394568 was:0.011130757484084592 :0.36806034036786556 +cents:0.16532454109441067 cent:0.06308297806865976 cent,:0.03564150711826668 ten:0.034286225922609624 centum:0.029304634499121244 dollars:0.02793313398935224 50:0.026845290517252613 six:0.023333080148210675 five:0.021130857534838805 6:0.01912938412013081 5:0.018310948817187332 20:0.017659500400990822 bushels:0.017251820903481353 $1:0.01685931517752124 hundred:0.016565392051260557 10:0.01472733492842633 2:0.014400410189484973 25:0.013666430095028643 pounds:0.01334488973272972 :0.4102023246910359 +;:0.03117236793776386 ,:0.008961661222906342 him,:0.0073764476874468654 up:0.007218306165696743 dollars:0.007113007474556272 it,:0.00689170492195858 and:0.0063911054000167005 years,:0.006334901565207792 in:0.006102033867040489 hundred:0.0059090165730108155 them,:0.005667661832046596 city,:0.005608604938229285 day:0.005411058967179955 thereof,:0.005210488242630935 time,:0.004846262236257089 one:0.004842339937593971 States,:0.004779817219526923 day,:0.004734161137109491 year,:0.004621271445539108 :0.8598077812282823 +the:0.39749834532651884 a:0.07520030034269234 and:0.05540858759821703 The:0.03273515726769502 tho:0.030061875542463562 of:0.020144331424922633 tbe:0.014929647509541684 in:0.014268129706664795 or:0.013333166761078447 .:0.013287381914101323 an:0.009000188755386574 to:0.00880680429595084 :0.007943763822197133 Mr.:0.00773879605474787 by:0.007328417831573476 as:0.005922572098978465 for:0.0047526933692942485 that:0.004736121968310169 on:0.004594595720579333 :0.2713091226890862 +the:0.10336983496615278 of:0.07543688350053557 and:0.06641644690227996 a:0.04455859280514038 to:0.03951391183407334 be:0.030966861721460015 in:0.030146059226641746 was:0.02880487163345596 is:0.016456555486564176 :0.014268559619302467 at:0.014138495910890675 for:0.013691162369318591 or:0.013653239614092283 .:0.011458704682463305 Mr.:0.011455809661350676 his:0.011360920796348824 are:0.011169575397813998 were:0.010356811134618766 been:0.009941051066127606 :0.4418356516713689 +and:0.04164493747353148 come:0.03895344522658308 find:0.03233276594777487 it:0.03227226610161206 came:0.03081230275683087 them:0.03061761181111041 was:0.030443237576955006 pointed:0.030297551327534398 go:0.029218066441849783 with-:0.028515764721911318 went:0.02690488308197843 him:0.024835259765876163 are:0.023236208433747938 set:0.023010045901456295 sent:0.019925712728432056 turned:0.019160021384505215 be:0.018383878741404062 get:0.01769343547230353 were:0.01753654829564053 :0.48320605680896256 +and:0.03868242960999506 as:0.031124813427855922 went:0.02352509775927722 him:0.02196555539050794 them:0.018760608639018784 up:0.017985449426794205 is:0.017894175620344187 go:0.017174904667157563 able:0.016756848979943888 going:0.014481672239490295 it:0.014128375989346808 was:0.013277058274565138 time:0.013249953793837373 not:0.012469887553778763 began:0.012465717758716884 way:0.012105610030480113 back:0.012090864562211581 right:0.011941707822828511 amounted:0.011564315359310868 :0.667354953094539 +of:0.173929230524896 and:0.11667666310358503 in:0.08603970904036806 with:0.06996330511428155 to:0.06811637073339848 for:0.051552939463677554 that:0.04492467118135372 by:0.03711197654552394 at:0.034015021797196274 from:0.030644909325300094 In:0.02475651362512929 nearly:0.021576888354087147 on:0.01918022912803143 is:0.016661279886395947 was:0.016324660867573417 are:0.012805604008820587 upon:0.010397080151397385 or:0.010136273193602406 through:0.009477563840768241 :0.14470911011461343 +the:0.11764343471989845 of:0.06406079569883384 and:0.061911309645958805 to:0.058420660196131395 a:0.032390242594853985 was:0.02601002121839971 be:0.025384101946822484 or:0.02085080340676678 in:0.020386155162957536 is:0.01998972683086184 Mr.:0.019341956099464656 an:0.016555774770410956 are:0.016442260844053213 been:0.015190899945721118 I:0.013291733520673655 were:0.013170154461322138 not:0.013070530193341564 .:0.012152581197065589 by:0.011607088667463244 :0.421129768878999 +the:0.49931622046285995 at:0.0704091707746065 of:0.06949421825141325 to:0.0396154699225101 in:0.023316245683478 tho:0.023072872147990392 said:0.02224350564852183 this:0.01613006734866691 and:0.010803890870404556 tbe:0.010636321895338929 The:0.009615837684383455 our:0.007270573422061115 a:0.007201720441510002 on:0.007181306591683492 for:0.006198358538465229 that:0.0057692825811109846 his:0.0056314116572085795 their:0.005233063285040259 into:0.005145436588402549 :0.15471502620434396 +and:0.02939922563381545 made:0.02753029241719936 followed:0.016258891174078742 accompanied:0.015954409782087883 up:0.014421451231758047 called:0.013449552163966325 is:0.013169732451868865 there:0.012837740910013851 that:0.012362926304185475 ed:0.011602967463579705 out:0.011327722566889813 down:0.011096131238219424 given:0.010721017258009544 foreclosed:0.010719636877767119 secured:0.010532119565762943 led:0.010191164253670058 it:0.010141697495834878 was:0.00996368274091055 shown:0.009754254763999392 :0.7375653837063826 +the:0.11919516938815296 of:0.07230453158552728 and:0.05781056740443249 a:0.043018564803886335 to:0.031305092790907506 in:0.020848713353460488 at:0.014270110001066288 .:0.012526810245749479 :0.012413283442322082 for:0.011719122709941797 by:0.010808400946589808 or:0.010404172990115616 The:0.01003576004804544 with:0.009811868184449042 tho:0.009295902015355835 was:0.008924239095331684 that:0.008672304223433876 is:0.0085591147338948 be:0.008335143826716943 :0.5187411282106204 +the:0.24072532420095444 in:0.09590894780508302 of:0.08353925841239958 from:0.059490463990545604 his:0.05933258524137441 a:0.05049265095429955 and:0.04886494642232659 their:0.042904604897396864 to:0.03616047761208348 In:0.03477860921201194 for:0.02484182081362405 my:0.018535535138872544 is:0.01565141570414386 your:0.015231795629239384 or:0.01426288980903139 this:0.014120308456904864 by:0.013447527768758162 its:0.013369843741897234 with:0.012733590933919355 :0.10460740325513368 +the:0.17027190784407714 of:0.10585557835912704 and:0.07355927771906935 to:0.05486905984958157 a:0.04543746377447453 in:0.03128555052933153 be:0.028704485173100775 was:0.02350529800142253 is:0.02215549335554494 for:0.02077556258358175 his:0.01804639098945333 or:0.016335100594594944 their:0.015847999621030492 at:0.015526727957625254 been:0.011815834631173878 are:0.01139058447814694 this:0.010362020528084328 tho:0.01035635773045807 its:0.01000473355720393 :0.30289457272291764 +is:0.1300949053123692 ought:0.06235942008217411 are:0.06072445398663133 seems:0.05697318922100556 was:0.04954471475520722 not:0.048536362204045544 said:0.03881623685409472 seemed:0.03220746110521765 as:0.030923473227594384 it:0.030881869856406088 claimed:0.028226689520969073 have:0.027725540143517465 and:0.027557757709861613 likely:0.02587900806524851 seem:0.02574969309575762 supposed:0.023317446089120043 had:0.02145961764731352 Is:0.017651730366473797 proved:0.01677680343414685 :0.24359362732284573 +of:0.22150816641239626 a:0.22070355002931774 and:0.07786172773560567 in:0.07527656281273377 the:0.05518409091257562 with:0.043106328871215044 for:0.02898125970795376 some:0.028153933204387888 A:0.023647328247737215 by:0.02159657080317228 to:0.01925832439597497 very:0.01742127077809026 make:0.016741645391311254 all:0.015924671277965034 In:0.01491114397314381 is:0.013312087241060354 are:0.013253231221763749 one:0.012717957607223284 or:0.012382482706136287 :0.06705766667023576 +to:0.10451368485178257 and:0.09797210459365063 the:0.09270426917220155 of:0.0740857286156522 in:0.02383465291433593 a:0.020600874645564173 not:0.02046243433642876 or:0.019691208933002472 for:0.017867149633044477 I:0.017807750127446235 that:0.017754060222663785 which:0.016356710549325314 have:0.015836236488889193 by:0.015335573184271376 it:0.013324166901470716 will:0.013014653214508766 who:0.012395341151347517 :0.012387941490614745 they:0.011474164729899374 :0.3815812942439002 +and:0.08995317707915026 to:0.06844710404109794 of:0.04605142056172993 the:0.04074574508561307 which:0.02479116931334353 that:0.023764822140213245 re-:0.020841117231308055 in:0.020803825395358622 for:0.020278423301550053 :0.018417753428486977 not:0.016860793136637672 con-:0.016444405871234195 is:0.014386481772210856 or:0.014080680914153714 be-:0.01352268143271276 I:0.01317002660943805 was:0.011429878269381662 dis-:0.011196807025842847 he:0.01113106290024311 :0.5026826244902934 +to:0.12451607169124121 and:0.11965906307110125 of:0.04150672424782966 I:0.03994459810010246 the:0.03977093578482591 not:0.027944778688662332 in:0.026951668217034992 he:0.020287788357574096 have:0.018356088412659937 will:0.017778788653605822 be:0.017356115172914983 would:0.01686796858472665 had:0.016797884455088695 who:0.015586814554770357 for:0.015177288502482317 was:0.014505782718468996 or:0.014171175395574118 is:0.013762943964141027 a:0.01355229978207369 :0.3845052216451215 +he:0.2556914333145685 I:0.07111116545657405 He:0.05732384305890982 and:0.0563941027947221 she:0.04863450447997921 it:0.02243992002597751 It:0.019698391967030677 ho:0.016305470265685497 who:0.012459452297341092 be:0.012022014166826897 man:0.01146923445969697 they:0.011213028184832824 She:0.009540186231650668 lie:0.009451380081642981 1:0.008221357039034653 then:0.008049371611615633 which:0.006829182958866601 the:0.006547047177126709 :0.00521237128793334 :0.35038654313998424 +of:0.2851751593906838 in:0.09350921687225504 to:0.07046318884272934 and:0.05243948718076247 by:0.05030218299942052 that:0.044228343927006974 for:0.043456849486961664 with:0.03680480000772706 from:0.028985287643752036 on:0.028545662538120995 In:0.021189821582265497 at:0.018382251316338843 is:0.015619795275977578 was:0.014709604495585326 as:0.01147043767674064 upon:0.011364146497948051 which:0.010886307758408575 under:0.0097621178170112 when:0.00928880989674175 :0.14241652879356273 +to:0.2673883239574602 will:0.20986501451142447 shall:0.08809391110142237 would:0.08181050693576633 may:0.07423886589151345 should:0.0626138813291589 must:0.0447790179100172 not:0.035571060011898206 and:0.019688811254708026 might:0.013419368764505333 can:0.011664648590810926 cannot:0.00965130281918166 could:0.00876871646060759 also:0.006625424994984543 it:0.006352937711190105 soon:0.005582862548227256 that:0.003867310923829148 never:0.003655008996454955 then:0.0031475126512870593 :0.04221551263555229 +or:0.2799933843928978 of:0.09454043627507763 in:0.08859956998041726 to:0.08389684225221546 on:0.07546333815159925 at:0.051544895531828235 for:0.033106430068162586 by:0.03308225709544219 that:0.028105146158907846 from:0.024367029931262937 and:0.02019613239971798 than:0.0185869187340453 upon:0.018392015821505434 In:0.01803094036147627 as:0.01800855797932776 be:0.015287908301489458 if:0.014500073246670058 is:0.014115855839104022 with:0.012579099752119578 :0.056603167726732934 +at:0.1500351640508751 of:0.11116551261450018 and:0.0848779581022647 for:0.07439461767480719 in:0.05486246867801384 to:0.04928943768278443 the:0.044714977526657165 a:0.03079833609485471 that:0.0202709192723856 by:0.020261380789441924 In:0.01812812957251848 or:0.01347033769803154 from:0.011569616589261264 with:0.011240017170441487 was:0.010639922028056982 At:0.010438953915132314 be:0.010428959326501782 all:0.008980424678259026 :0.008717577363314412 :0.25471528917189784 +the:0.4350035876741138 a:0.1113387153566875 The:0.056606834856769477 tho:0.033568998505569055 and:0.030114679369551808 this:0.024997063771514325 his:0.02092318869655253 on:0.015132306290933066 our:0.014607700189859728 their:0.01409306029288467 tbe:0.012961709615009868 of:0.012585816961831241 States:0.011568493160635615 its:0.009777141572176391 any:0.009760173229876852 new:0.008699901638538848 other:0.008056182473300786 little:0.007652661005296826 A:0.0074491727511675435 :0.15410261258773011 +to:0.19475983551522874 the:0.1250281863198842 and:0.1126901382806509 of:0.06854432885961119 in:0.04988213337038427 a:0.04077071451937292 I:0.030379461237178017 which:0.024188858038557654 his:0.022025288980108155 this:0.02141968923783608 he:0.01989385422722274 that:0.0162099381369004 In:0.01520977934718341 by:0.014253159380979664 who:0.01241997179573993 they:0.01229466981854076 so:0.011780756251295415 or:0.011166222869765331 have:0.010256982453354565 :0.1858260313602057 +it:0.15080937370441216 he:0.15019717460558266 It:0.08311420104068366 I:0.07763424248161824 which:0.061171505988626834 He:0.04541489910892991 and:0.04433644816374082 who:0.04217567683566971 she:0.03254597386427406 that:0.02805268770437559 there:0.024737438336143946 man:0.011424668744836719 what:0.010554662800177621 There:0.010149742054439293 ho:0.010117305150136162 She:0.009966237136510696 This:0.009305032858057526 but:0.00915229527273077 case:0.008605586663448427 :0.17953484748560522 +the:0.11919516938815296 of:0.07230453158552728 and:0.05781056740443249 a:0.043018564803886335 to:0.031305092790907506 in:0.020848713353460488 at:0.014270110001066288 .:0.012526810245749479 :0.012413283442322082 for:0.011719122709941797 by:0.010808400946589808 or:0.010404172990115616 The:0.01003576004804544 with:0.009811868184449042 tho:0.009295902015355835 was:0.008924239095331684 that:0.008672304223433876 is:0.0085591147338948 be:0.008335143826716943 :0.5187411282106204 +three:0.11789599579104129 feet:0.05253567422763005 up:0.0380804444993579 went:0.03669591152933395 and:0.0356828533636272 four:0.03131798164233174 go:0.0281469772156587 two:0.02437830514353188 him:0.02420700487777141 chains:0.02260639775529052 as:0.02163490430395014 them:0.021171145789554494 down:0.01964779059188281 thence:0.018221916418205076 five:0.01680910658364754 going:0.01663786288541309 one:0.016435444961555978 ten:0.015451187944770356 came:0.014468714874598148 :0.4269743796008477 +and:0.10927712472886782 not:0.09149282836465787 is:0.08851140179896046 or:0.08012969162375229 was:0.060485131463081446 are:0.05565424282457183 of:0.04440414289537874 be:0.04273952102379334 been:0.03383217794222675 for:0.032405457958558294 do:0.029822086222214786 have:0.024717865371826454 were:0.020318733527049482 to:0.020106717228233276 that:0.019431031285346814 done:0.01826913579444587 has:0.01755619689385551 with:0.01712154588343926 had:0.01508362452918244 :0.17764134264055728 +the:0.2813823106124652 of:0.0777141921982994 said:0.03958763360238109 and:0.039427032754197976 The:0.03314524936398995 Mr.:0.03219899430765149 in:0.024269758027867436 .:0.021785640847245148 :0.015287131404158171 tho:0.013057890616970047 to:0.01287765964958594 an:0.012692121726201178 Mrs.:0.011698613796719746 for:0.008249718597916261 Miss:0.007842339499847625 street:0.007329925698635561 by:0.006592191672575496 tbe:0.0062213720614817045 on:0.006146569057342289 :0.3414936545044683 +there:0.20977066678393474 There:0.14413799170988797 they:0.09237690037709619 and:0.043486744352554126 They:0.030732370002666258 who:0.027322837855123065 we:0.026400512609013594 which:0.02625883639795603 men:0.014040948191265331 that:0.014019810081589661 it:0.01245867813795302 We:0.008083488435264848 I:0.008054712957915329 you:0.006780015675668676 three:0.00632728322918693 them:0.005803159045891831 It:0.005485827086515803 hundred:0.005203011608874928 people:0.005175892575563041 :0.3070803128860786 +to:0.09749257770986998 the:0.09551206399013314 and:0.09354319224337997 of:0.07480932460768112 in:0.02967229660085893 a:0.025579896041081792 not:0.017538510939051802 I:0.014890048771587954 be:0.014454354650863947 or:0.013502879084097318 he:0.013420350455248153 by:0.013217729847265764 for:0.013182212294170192 is:0.0128700234264903 :0.012502131012163752 at:0.012352874503725284 that:0.011267247520049631 this:0.010977319699742834 In:0.010892947902981794 :0.4113220186995563 +the:0.1407112455707374 of:0.08035021183174045 and:0.07425165086552307 a:0.03700421712557399 Mr.:0.03117939332255806 be:0.029752464502830298 The:0.028705845975934348 was:0.02419986788314941 to:0.01876838845024303 that:0.018186753252653936 is:0.017716258819940187 or:0.016624098567900536 an:0.015388250053436933 are:0.014050763307879301 for:0.013954674952856346 been:0.013622400759897643 as:0.013167586638792438 his:0.012979141797674586 he:0.012068057426520238 :0.3863187288941578 +the:0.42463373275464045 and:0.05574585265587648 a:0.05447793845402487 this:0.052950832068515384 of:0.050946688597907984 or:0.032845684986317236 in:0.03196507200337748 any:0.026728624444446587 its:0.025563607448148708 tho:0.020468036282715013 their:0.019178621968072383 great:0.017109430140234614 our:0.01671650506294115 such:0.01649491585968686 his:0.01600610229368502 The:0.015081994387059592 that:0.015026607454170348 no:0.012000491017512726 an:0.010658291378421017 :0.08440097074224609 +the:0.2782472374031439 and:0.05853086307875382 of:0.057808400149107285 a:0.0505051790196421 in:0.047737229779834744 that:0.029028474107152598 tho:0.018710024088825838 no:0.017339306339466322 any:0.01703662573257265 for:0.016715378203915124 or:0.014389838101205619 to:0.01254353636706294 The:0.011965494146430906 such:0.011478107165062217 their:0.010557144796299397 this:0.009886618703130198 by:0.008203119141950934 In:0.008031362143197362 an:0.0075425481936670265 :0.31274351333957906 +that:0.16832451653748762 and:0.16317551195275604 but:0.09202228048090219 as:0.06626898981545905 which:0.05056182452516285 if:0.034268175887251145 when:0.0327999336955599 where:0.02391654490512962 But:0.021638226096886436 because:0.020516735853829505 of:0.017875962661562897 And:0.017367123587138943 for:0.01715484095146282 If:0.016077584172624653 what:0.011042818726600803 though:0.010176208114312196 until:0.009969674033922531 while:0.008769541776912644 think:0.008148981878890557 :0.20892452434614764 +the:0.16287760685838365 of:0.0883592780729449 to:0.0618987346693935 and:0.05423685233212741 in:0.030811253892523358 for:0.03057359609188714 be:0.025098115820027647 was:0.01826945122296575 is:0.01662970283289366 a:0.016448402520667066 or:0.01633619095301082 his:0.015510346299682681 their:0.015084175217362073 are:0.014656254371894712 been:0.013019491851438341 were:0.01267572744006931 that:0.012270302451397866 on:0.01131798809455223 :0.011150587255169986 :0.37177594175160794 +of:0.28358121789619306 to:0.1034640566662506 and:0.07073060773524674 in:0.05072291526852176 that:0.04966803669463119 for:0.049084460790519556 with:0.04818887836269183 is:0.030630106833807135 by:0.03060302836030646 from:0.02646010399058043 on:0.023597811178809443 was:0.02270272448928174 as:0.019270175046797792 at:0.017201496875699156 be:0.01451439666594279 upon:0.012813219802364639 when:0.012490095280284092 which:0.01194368825805145 In:0.011539769883689757 :0.1097932099203304 +and:0.06602633440452518 held:0.03263743904217442 recorded:0.026001106127468608 made:0.024064156897050215 was:0.023024907892591737 up:0.020708377806354625 him:0.020291711528187935 it:0.016645140549404643 is:0.015965014402096137 out:0.015730493992415547 them:0.015472739431066111 men:0.014656847235645051 that:0.014496420248066785 day:0.013225548651003522 but:0.012689008233764034 early:0.012417616235565492 people:0.012298529226194585 city:0.01153349353611437 found:0.011487969972758449 :0.6196271445875525 +the:0.07697085265263966 and:0.06185375068354407 of:0.05602818213172296 to:0.05401692688291646 in:0.033870225623047916 on:0.02803057517829198 for:0.02665755070111211 was:0.02453565062544419 a:0.023747079136015117 :0.01758535709978251 In:0.01696635980861943 I:0.015772439785197177 be:0.015666304260591474 is:0.01528346232184296 at:0.01478236247994615 or:0.014146854465663291 that:0.012642282465194688 are:0.009960767456274356 he:0.00959368993176907 :0.47088932631038444 +the:0.23863175633224532 of:0.07388328109843215 and:0.06959895205117447 an:0.05824038945578867 have:0.05427752140196747 The:0.04593770949989372 their:0.045068463041708 his:0.04426620084476567 be:0.03616005312550218 had:0.02921833727520473 was:0.02677164152498945 its:0.02544596980503743 a:0.024124844698180277 been:0.022829101716493227 all:0.021575896078715306 tho:0.018929475005054472 has:0.018534343431851737 to:0.01799148242086319 with:0.016980279554512357 :0.11053430163762017 +the:0.25151616296611695 in:0.09331865924589304 of:0.07744751775700241 his:0.06857614616845364 from:0.05593362192307881 their:0.041388003146953296 In:0.03716827915001577 and:0.032933876739208355 my:0.03064553403554156 for:0.02521358459661344 our:0.023777392446315312 her:0.02179680049984331 other:0.021730824805593667 tho:0.019412390633257393 this:0.018974013722181608 with:0.01868587602577386 your:0.018120097561200386 all:0.017537731027903347 its:0.0157635680381328 :0.10905991951092103 +and:0.13993583233711487 he:0.10644476966842609 I:0.08744160268846539 He:0.03939057968950955 they:0.03329753417552326 who:0.032781162405105375 it:0.02974818325861121 she:0.025552497182860456 which:0.023133001855690956 we:0.022253330817692096 was:0.016327046178008984 It:0.015171171214403882 is:0.014998303119292003 the:0.0130629796473792 have:0.012041593262432433 as:0.011293662224725795 ho:0.011124320093174553 be:0.01071994725113822 1:0.010474358390103125 :0.34380812454034254 +the:0.5434271534376003 an:0.10971287382040698 and:0.05615919116049967 this:0.05157226735230499 tho:0.029901051753336707 The:0.028253132468544342 his:0.024278859473300392 to:0.014876866814229889 of:0.014711239370412394 our:0.012275894723769748 tbe:0.01097703350154152 their:0.010349720880100697 a:0.010095773824419351 its:0.007649954388963195 that:0.007034039450764669 or:0.006396962782536326 have:0.006187907049380528 your:0.006174687499510049 my:0.006005503197900839 :0.04295988705047741 +the:0.11919516938815296 of:0.07230453158552728 and:0.05781056740443249 a:0.043018564803886335 to:0.031305092790907506 in:0.020848713353460488 at:0.014270110001066288 .:0.012526810245749479 :0.012413283442322082 for:0.011719122709941797 by:0.010808400946589808 or:0.010404172990115616 The:0.01003576004804544 with:0.009811868184449042 tho:0.009295902015355835 was:0.008924239095331684 that:0.008672304223433876 is:0.0085591147338948 be:0.008335143826716943 :0.5187411282106204 +interstate:0.1966921910065469 the:0.18729912423701656 of:0.17800593513817908 said:0.07768207265973423 The:0.04148136486795318 that:0.02950081096189302 a:0.029111734820939084 Interstate:0.02851325751097561 this:0.02388825707438864 any:0.014180744407417852 and:0.013978184476740787 by:0.012429070194029593 tho:0.011075315763199072 as:0.011011215588998636 each:0.010138382699567228 certain:0.009900548016460658 such:0.009767232660559677 for:0.007916055538191719 all:0.007792130657570777 :0.09863637171963772 +virtue:0.062060494787377685 out:0.05417899169104244 part:0.03289673107629515 one:0.02969369892462812 quarter:0.027015883171169475 favor:0.01993830018372674 result:0.019463829004704194 guilty:0.018891084377354095 means:0.018499162894926688 end:0.018170939082736048 that:0.018121271122199262 construction:0.01726217741616459 presence:0.017003995482744873 tion:0.01673652166540914 case:0.01640819963257697 side:0.016055927605250184 erection:0.015381239457214257 account:0.015287601389485416 hands:0.015156055434805247 :0.5507778956001894 +of:0.15213463351853185 to:0.14138041993727773 at:0.10904541881241155 in:0.10516281365606531 for:0.097382728662333 and:0.04294264666281914 by:0.039173575462748404 from:0.03707463320874974 with:0.03299307617998657 In:0.03185113100523017 that:0.028988686079381244 on:0.028542174432364925 all:0.014063727653307436 after:0.013903634981054337 as:0.013464387397783266 upon:0.012431578716112038 At:0.011258553714997377 during:0.010160950066880031 through:0.009021680134849134 :0.06802354971711674 +the:0.25458670966001856 a:0.07720604387829454 his:0.05592884426469645 little:0.04479456401803209 of:0.03410709914538818 and:0.028158893858762978 in:0.025180892078923538 this:0.0180809245377286 my:0.017934646072105133 her:0.017710398212025417 no:0.015839341121332888 great:0.013995849708967743 first:0.012313803219738318 their:0.012250306806609986 any:0.01052259924486814 to:0.010494988557269175 much:0.009740025540429643 good:0.009723445458387785 tho:0.009417938359501374 :0.3210126862569195 +and:0.17759164674254155 as:0.1489944632381627 that:0.12497583060169795 but:0.040251256117307996 even:0.039714143319300343 or:0.025197052591458755 And:0.020285366402948115 and,:0.01690098140104434 see:0.016069778445382793 But:0.016054796627574756 asked:0.014704436132478958 or,:0.01312584751881932 that,:0.012956591554977297 know:0.010895112806467724 him:0.010512071949340167 ;:0.00946473591150913 which,:0.009229807068237143 Even:0.008914967120873743 doubtful:0.008438788892583786 :0.2747223255572934 +out:0.0435166427343214 that:0.03742991350586186 one:0.030823655787195915 part:0.03038279733585268 payment:0.027134634425057067 or:0.024703587114967288 value:0.02470200790976024 tion:0.024569714947320305 use:0.02317919173730975 violation:0.022920508317063076 absence:0.020385249475528167 all:0.019517102929373756 people:0.01800580554775542 any:0.017739982678873074 charge:0.017734226285748268 none:0.016667864467015313 some:0.01629379598798719 control:0.01606350523626344 cost:0.016052433786830245 :0.5511773797899155 +the:0.21196110216325734 of:0.09007947991124152 to:0.0494045857039621 and:0.044961225652543964 a:0.04093285293209737 in:0.031208697335031798 for:0.02569775907720898 that:0.01610377206487489 on:0.014193549109132085 at:0.013826307516621658 or:0.013472535660999008 tho:0.012771312256321159 as:0.01150564523639716 was:0.009760257721278526 :0.009697555077281726 his:0.009017927334865582 In:0.008697376174153996 be:0.008503300345228351 The:0.00832718587413917 :0.36887757285336364 +the:0.13744900974544474 of:0.11675424133049932 on:0.05094155313611583 and:0.043978752159875414 to:0.042411145352108576 a:0.03277087859263181 by:0.02412583515020907 in:0.018023128883234957 :0.01685821822500911 with:0.015252851476977788 as:0.014941941134163469 for:0.014191197616800037 that:0.013870723530921641 The:0.013414251781092113 was:0.01147565906058215 from:0.011300164031584146 or:0.011011358929837628 at:0.01071035197703732 be:0.010468475220570345 :0.3890502626653045 +the:0.1641320911864556 of:0.10963561514902358 to:0.05993589229439846 and:0.04208926764956589 in:0.019221005540290003 be:0.01918552126025394 for:0.017445399739083878 :0.014664063357480404 a:0.014069170585525209 was:0.013733291802570586 or:0.012468520814202116 his:0.011799879485955518 at:0.010696823819775148 by:0.010119018117454564 that:0.010046356341542622 is:0.009673674731749014 on:0.009564704884264759 their:0.009040151420537667 were:0.008959694247019914 :0.4325198575728511 +and:0.10902055852277438 was:0.040333185579161525 that:0.030592043129863945 is:0.02841669551309469 work:0.020688610378761838 put:0.019916656057016213 it:0.019415597574287947 him:0.019285900355503646 them:0.019240973707212877 out:0.01889685764996379 but:0.017013904457416813 interest:0.016800094444689297 up:0.016410806985084205 were:0.015115454253306154 go:0.01422454537662276 placed:0.014151864637143146 be:0.013897909858674352 due:0.013321282538496718 are:0.012741626386761825 :0.5395154325941639 +and:0.11088954661365998 Mrs.:0.08093809267475202 of:0.04231866661609183 by:0.03369035027366078 Mr.:0.031092908698434913 to:0.0296517447020243 .:0.021056652430382208 said:0.013767761911958313 the:0.013361003091087177 Miss:0.01323439940254136 from:0.012955447440351965 :0.011721249426116657 Rev.:0.010078993966417017 at:0.008473740058160623 in:0.007386213367210477 that:0.007141333466570041 with:0.00685059842858458 for:0.006021640103431328 John:0.006008907662761715 :0.5323607496658027 +of:0.2548483376009523 to:0.08650924750582735 that:0.0754607028585249 and:0.05824040621634508 in:0.04224669300361556 by:0.03511446151865796 for:0.034455806836719644 from:0.032070807222134894 as:0.026338808431764147 with:0.026319233703864752 on:0.017400812712232608 which:0.015903682305542215 In:0.012140764704632821 is:0.011628260767863151 but:0.010701336005078752 when:0.009595760349266487 was:0.009238546043544543 upon:0.009016547441268041 at:0.00876464822141795 :0.2230051365507468 +to:0.5766227668357504 will:0.13116137046965645 would:0.040244124290957674 must:0.031171767120809536 can:0.02682013364784522 could:0.023932622243777575 not:0.019292154219428294 and:0.01908374529354123 should:0.018042680128139504 I:0.014108845089092534 shall:0.01340568607040251 may:0.012338970352038915 who:0.010205141986394 we:0.00915211025270517 To:0.00623668188746094 cannot:0.006167996972105407 We:0.005797961945250754 you:0.005624121055658783 the:0.005055979924078621 :0.024535140214906548 +the:0.42982619853831217 a:0.07405362723912905 an:0.059777372277055894 his:0.046763145324811864 and:0.034323114398118124 most:0.03284933957076429 The:0.030454526428475553 no:0.030216814955184308 in:0.025254740401494957 of:0.024143511941883022 any:0.023400020224331654 this:0.023000839529871565 their:0.02013208384825675 her:0.0194544894298754 its:0.018684076800402214 tho:0.016838136793391776 some:0.01599005136281526 such:0.013978767251739452 very:0.012598366747011591 :0.04726077693707514 +and:0.07943789800670902 for:0.06618841726604319 as:0.05626540657761209 on:0.04908136705049546 of:0.0463633219878397 to:0.04155335219266076 in:0.039812023777758394 that:0.03867124722527949 with:0.0373730790055534 make:0.03723179092509507 take:0.033784052270641796 do:0.032685178119216826 made:0.027124000954547946 put:0.021484838191469617 but:0.021475649431100363 is:0.021365403502215677 found:0.019128335337583187 upon:0.018827486493142583 took:0.01763907397757957 :0.29350807770745585 +the:0.289041654779789 in:0.09334674471770912 of:0.05813314049420474 an:0.04966052822328897 their:0.043500168462047385 and:0.04266263614128584 a:0.03732100181083643 for:0.0355410422158773 his:0.03381431942983923 this:0.024152758392730244 its:0.02261573623514175 In:0.0205534455561409 tho:0.020286432381070234 other:0.01582349393522022 our:0.014941690469636582 or:0.013669202939780913 real:0.013623692521289902 The:0.013209403665422175 to:0.011622208059605376 :0.14548069956908366 +of:0.19546155247376618 to:0.10224886737260858 in:0.08049919577220664 by:0.07512728983212888 with:0.07398070433746816 for:0.07305218252938202 and:0.06130454358312231 on:0.046419026641483625 as:0.03498604140551998 that:0.0334996973319828 from:0.024179141741555655 In:0.01999869036745025 at:0.01948768773154982 was:0.01583770562688786 is:0.015539499235544476 upon:0.01432855778262886 under:0.013869436568386379 into:0.010902875853863011 such:0.009991499328061048 :0.07828580448440349 +of:0.09129790931378902 the:0.07369883040827747 and:0.047842263382354346 in:0.04189055351593407 to:0.04045875475680249 a:0.03542341257202578 be:0.02020462051672066 for:0.01979292654746225 was:0.01760256398103379 at:0.017380150555488715 is:0.014984483003968216 with:0.014047653760730413 by:0.01374644383819499 :0.012670486581795598 In:0.01200961464556976 or:0.011563835749786333 from:0.011391516893522809 are:0.011273104484969465 that:0.010755276030689069 :0.4809655994608848 +to:0.11815428618928227 and:0.0852146912507816 of:0.058817150574563985 the:0.05091970927846495 in:0.026621834774410824 :0.016621463305097346 not:0.016575787425455363 I:0.014445653711014275 by:0.013489864125342935 a:0.013489366047260485 he:0.01288543895410413 at:0.012744580352905713 is:0.012462468927005322 or:0.012191891717805782 In:0.011605641097873442 for:0.011533720742248682 who:0.011244031111310823 it:0.011208393094641137 was:0.010839935064315116 :0.47793409225611583 +the:0.24265219685118006 City:0.20292885002644703 Common:0.11292196547342367 of:0.08040444497010096 Town:0.02577766229132279 and:0.020730097328852833 said:0.020597649659660402 State:0.014971830886474212 National:0.01226167246774293 tho:0.009674190341944486 in:0.008961505663773116 General:0.008436114571349539 our:0.00833854213710179 to:0.007649629544436773 for:0.006997541203239124 Grand:0.006910129948555508 real:0.006863001217152358 a:0.00683962616570324 this:0.006673808572809615 :0.18840954067872956 +and:0.279382186756319 and,:0.0849612909454569 that,:0.029307947669205175 which,:0.026511692683854237 that:0.023411501360652492 but:0.015533235282454882 who,:0.010558470012429341 is:0.009664248965717279 year,:0.009458993764994898 was:0.008931499476473535 time,:0.008575441662864764 day,:0.008496097804450682 And:0.008313303025050539 or:0.007751156911939825 as:0.0073609308034911095 it,:0.0067133373078090055 them,:0.006564289873689414 ;:0.006466117200604851 for:0.005422593509935796 :0.4356156649826063 +of:0.23192716142693548 in:0.11044674748572471 and:0.07875449899466115 that:0.073906418065582 to:0.06491949208468845 with:0.03672296077162985 by:0.03599421953530213 for:0.03310328899501478 on:0.03024562836441109 as:0.02710993519246372 In:0.02633839229599212 all:0.024740758780617083 from:0.020355564424721896 under:0.020257820047746063 is:0.014492744555470866 when:0.014080644889392285 if:0.012890769449104814 but:0.011779405840659106 at:0.011202484718905035 :0.11973106408097739 +a:0.31851772260147726 the:0.2103427260071559 ballot:0.056887932241991415 his:0.028753854579836306 to:0.02073412148975957 this:0.018756100906278942 first:0.015667758905329232 The:0.014683355856186636 of:0.014482288000585186 tho:0.01159779728450795 one:0.010246447027990106 and:0.010055907796152962 any:0.009966997090416823 other:0.009862167000045606 their:0.009649759075022803 1:0.00871684248554814 her:0.008631991335379246 new:0.008461215382279166 every:0.007753496683934154 :0.20523151825012262 +of:0.1749279600064942 to:0.09622317066977876 and:0.0920300473749055 in:0.05167057193771583 for:0.04556264905139027 on:0.04288920141665624 with:0.03810674689913129 at:0.03795736802073465 from:0.03773249504017433 by:0.033181147592660276 that:0.030027642293735675 all:0.013992403938889269 upon:0.013743663114281017 after:0.010183889875561746 as:0.009654182375936123 In:0.008942340807101861 up:0.008741661796720033 made:0.008442529568465276 before:0.0071725460707171744 :0.23781778214895052 +to:0.48061420890785356 will:0.06919144196948679 would:0.047793818479867245 can:0.031728449132192214 I:0.030818264706923264 and:0.026831661904583186 they:0.02526539819580196 could:0.023731351739719634 never:0.022885091335210658 should:0.021634329267446555 may:0.021421421204362186 not:0.02141683099290328 we:0.01978229791851807 who:0.014928009574579192 you:0.013168288789185023 must:0.012869543218448265 only:0.011568935576853522 We:0.010216066205818445 shall:0.009868951869790043 :0.0832656390104569 +the:0.16807735899698817 of:0.10541662057906837 and:0.05138367848570702 a:0.04141865232648221 to:0.0385989743764065 in:0.026264864977736738 was:0.019530675665220657 his:0.018900421021236905 be:0.017373825006196972 their:0.015767721170721456 for:0.01557246589796783 with:0.014071419046630446 is:0.012922913111931644 at:0.012690452250034052 are:0.010702713108721902 .:0.010158075558988393 Mr.:0.009672788574483367 tho:0.009612591781990074 were:0.009549306361446321 :0.391314481702041 +of:0.1250857961480753 for:0.10348725059923523 enable:0.08256674657657519 to:0.07548974259215627 from:0.06320337666955904 with:0.05480635686718066 upon:0.037787490674476454 give:0.03263562274610229 by:0.02973137672307879 allow:0.025568254956304742 want:0.02548542349187038 permit:0.02226883362656532 enables:0.021018903268830234 send:0.020107202171443475 bring:0.01950339915315756 compel:0.019165567985904162 enabled:0.018510144001826347 induce:0.018276009060629785 told:0.018201436857053166 :0.1861010658299756 +the:0.1578508040885594 his:0.11970282671739704 of:0.10585600471253714 and:0.08259743067365051 their:0.06420076132805325 to:0.04780694457171703 my:0.042518586399374336 with:0.03949459838684094 her:0.03392501351530818 in:0.025756852430088722 its:0.024584082257031258 your:0.023931786347667617 our:0.02387756506371357 or:0.019986165514521436 own:0.019362110499041102 a:0.01841522319120029 for:0.01612983843291534 human:0.012644151181286737 from:0.010545404323390621 :0.10981385036570548 +the:0.248513824503917 and:0.07376392783414097 a:0.06243263550642052 of:0.050910688042152805 be:0.029729397491653816 to:0.026545149129966628 or:0.026076712702890404 in:0.019880914526031128 is:0.019685040925377654 tho:0.018398653283861185 The:0.015861811565517976 an:0.01557941881972849 was:0.014300794323057532 are:0.013349203769355524 no:0.013187121082764828 his:0.012583443990852584 at:0.012378732522602553 this:0.011263007230018081 that:0.010794394136188264 :0.303765128613502 +and:0.036163001301143326 miles:0.03426311212625663 free:0.03330978850321795 far:0.027878204138329216 away:0.027612474438655048 suffering:0.022457202217289057 him:0.01978041441012929 them:0.019452101850619567 or:0.018413834246186648 it:0.017667545223036624 taken:0.016172371544295145 come:0.015434205859242982 out:0.014632990848161971 made:0.013646733411622508 received:0.013193041403157992 feet:0.012967307522593894 came:0.012865443983456806 years:0.01262667261658779 up:0.012462096192195415 :0.6180014581638221 +as:0.062484676329274694 up:0.05764084372569128 came:0.04803855230936549 and:0.04507298757476335 come:0.042563115017869246 sent:0.031180349492975247 back:0.030799901366219386 it:0.028096687047703114 presented:0.024905050278724198 went:0.02426565213931646 brought:0.020614433613923372 occurred:0.01962404268736124 given:0.018761278859887563 seems:0.018471993627436914 made:0.01772642698342769 returned:0.017719892999435435 known:0.01765452298311619 down:0.016713179818743876 seemed:0.015772816593147266 :0.440893596551618 +of:0.2946588359540077 on:0.16316743038040304 to:0.08497004702563984 in:0.08302931867283982 from:0.033897535544937685 and:0.03017792304045549 by:0.02514854648584143 with:0.02190288724256224 at:0.021267460042727535 for:0.02019824318777207 In:0.018845223839798513 that:0.013253556800032987 along:0.011317557933389533 upon:0.009636305211162627 about:0.009539672873315856 into:0.008453363467790877 over:0.008321141499774243 all:0.00786876405074402 as:0.00624424788347996 :0.1271019388633245 +and:0.0714616191757158 time:0.02764999781817853 reason:0.020299434386064002 provided:0.015560415110533767 that:0.01122507607248051 day:0.010882311534776663 it:0.009195721405726031 money:0.008901462793860258 way:0.008885963233398294 reasons:0.008705358882422146 purposes:0.008593909165606295 but:0.00826662110803132 demand:0.008167920669405051 him:0.008164263553400192 basis:0.007723793264973678 one:0.0074638193711265895 thing:0.007401354310928763 land:0.0072330011496635205 cause:0.007143333311072054 :0.7360746236826365 +would:0.11732440686966092 to:0.10634982962262644 I:0.08388024143664224 we:0.068638243312246 they:0.06678791368838762 who:0.06243597137728477 will:0.050972549364694135 you:0.03917189983805448 and:0.038282489788790425 shall:0.038077934699336596 not:0.036885447398716645 should:0.036274074273172335 must:0.03223916729706886 may:0.030496488427145963 We:0.025223997573136366 might:0.024143470788004585 could:0.017921810256620894 which:0.01545084831634988 that:0.014705779297789693 :0.09373743637427114 +an:0.6626671606733344 a:0.05709819172538178 the:0.050741777776310185 very:0.04549570770621372 is:0.028472990684307857 no:0.01974172741926826 and:0.018973139458992025 An:0.017363105850293423 most:0.013446808586699511 in:0.009300650653133935 be:0.008435098194370062 The:0.008108245954815487 so:0.007179907817141381 any:0.0061211864344618535 as:0.006031087582214098 of:0.005810326444440404 au:0.004457883157439824 A:0.004355632246702958 more:0.004352812427711579 :0.020846559206767215 +it:0.21506183369053392 It:0.15474061170132603 which:0.06806982124118874 that:0.05660979805447644 and:0.035971355481653845 This:0.0352875279843101 he:0.03076528214706202 this:0.02972795688525607 there:0.02612594850758267 what:0.023285542573322104 as:0.016083895026580537 who:0.01528625780832419 He:0.010841573129233116 same:0.0074219406412717815 work:0.007153098504603077 country:0.006925978997587676 That:0.006473229372677747 case:0.005825580271800506 she:0.00582482269514793 :0.24151794528606152 +of:0.09129790931378902 the:0.07369883040827747 and:0.047842263382354346 in:0.04189055351593407 to:0.04045875475680249 a:0.03542341257202578 be:0.02020462051672066 for:0.01979292654746225 was:0.01760256398103379 at:0.017380150555488715 is:0.014984483003968216 with:0.014047653760730413 by:0.01374644383819499 :0.012670486581795598 In:0.01200961464556976 or:0.011563835749786333 from:0.011391516893522809 are:0.011273104484969465 that:0.010755276030689069 :0.4809655994608848 +hundred:0.5030243372676237 dred:0.02698654426265414 dollars:0.019696262991754122 one:0.013224631389816471 two:0.009525732877191188 due:0.00808476430217134 feet:0.0076460340336631455 three:0.0069608137868192085 men:0.005897467506267519 five:0.0056411367203823655 day:0.005546618631238449 Hundred:0.005236879098926044 thirty:0.00490498100419737 up:0.004680209619306337 four:0.004602208029583696 in:0.0044323079782745784 twelve:0.003935343526798121 long:0.003871364055580847 eight:0.003560742750209701 :0.3515416201675416 +the:0.27562424963784093 of:0.2444802546759276 by:0.059073146400356595 in:0.05209231823701414 to:0.03834735540799546 that:0.03220592135277671 and:0.03152764386465188 which:0.026888729123765394 with:0.020447948914061154 The:0.018869891640029283 on:0.017097013835149746 for:0.015186055903100916 from:0.01464710007728669 tho:0.013165405234174409 a:0.013124681823788667 In:0.010657163785159997 at:0.00962662945829282 upon:0.009135447613834531 under:0.008829068737925612 :0.08797397427686748 +the:0.3228501426637802 of:0.13439144951497664 said:0.0824634115086026 and:0.044555190303995365 his:0.042862220403451945 The:0.02731201720163714 to:0.02296845865864071 their:0.019931206656414683 a:0.018619697580169774 our:0.01780205543691735 tho:0.01731488833934954 in:0.017027135217838853 by:0.01643130914046789 any:0.01430510286947358 that:0.013290208137553232 this:0.011731027806080159 other:0.010949025280657075 all:0.009952031429073567 :0.007976611796894762 :0.14626681005402495 +the:0.21280566996389663 in:0.08714515572931476 of:0.07641847421439832 a:0.04147122742872187 and:0.037769726477271455 to:0.029730436481879258 In:0.021275092713221807 at:0.01911364966766755 tho:0.012141788378269283 that:0.011604715164860368 for:0.011294443293531308 :0.009306906602536033 be:0.008311369798418511 from:0.0082829569519641 The:0.007722032196732842 their:0.007394709029484228 his:0.007066564647999496 by:0.006947137403671362 I:0.006842393344303361 :0.37635555051185743 +the:0.4231439749929874 and:0.07132055677523776 such:0.06497460359475055 The:0.05687655399567907 of:0.03974042333725387 these:0.03529420868451313 that:0.0332013917945118 no:0.030716903005566048 all:0.026381545026859042 tho:0.021204757399758602 other:0.019992127879701293 as:0.01774477491249434 any:0.01696626523171334 some:0.016482557469476303 or:0.016122401845811027 which:0.015473040092985424 their:0.014086973070032462 his:0.012830145709287083 for:0.012391986783088556 :0.05405480839829291 +the:0.12726855910616955 and:0.0892959780159441 of:0.062229337879632314 to:0.058292991969480845 in:0.037889522208997196 was:0.035486090111862774 a:0.03277831520841599 be:0.02993909980507852 is:0.021492638467572805 been:0.016319288425974923 are:0.01622912479566914 were:0.01571120940653339 at:0.013800451447349702 by:0.013390998935139781 his:0.013046404338315144 an:0.011587498063993411 he:0.010436524486303292 not:0.009967845652912184 or:0.009888058570455908 :0.37395006310419904 +the:0.3757301589300835 a:0.10616477680628975 his:0.0772438710270416 this:0.052954558129510804 their:0.02939125210940549 to:0.02622750912884282 in:0.025783165831060637 tho:0.02522616435257862 its:0.02392739045374287 my:0.023658370602911337 other:0.023535627588711642 same:0.01991894296415101 of:0.019667358330668253 her:0.018039137632573296 and:0.01771097505146838 our:0.017109098449161128 no:0.015998568414991754 that:0.012529335123755323 your:0.011915240321088634 :0.07626849875196313 +and:0.13631870118169373 a:0.0999238824073774 the:0.09771581162067186 in:0.08097378344920828 his:0.046179083217685706 of:0.04216082511557358 to:0.03735503253738035 their:0.037237101353928916 or:0.027825545323154347 I:0.026623986018296124 more:0.025441453836585463 have:0.021807183066435133 all:0.021347998536304973 for:0.02121872900124165 best:0.01986629323850468 many:0.019696479906442854 In:0.01830480235310971 as:0.01816409101030448 not:0.017248011192070246 :0.1835912056340305 +and:0.08995317707915026 to:0.06844710404109794 of:0.04605142056172993 the:0.04074574508561307 which:0.02479116931334353 that:0.023764822140213245 re-:0.020841117231308055 in:0.020803825395358622 for:0.020278423301550053 :0.018417753428486977 not:0.016860793136637672 con-:0.016444405871234195 is:0.014386481772210856 or:0.014080680914153714 be-:0.01352268143271276 I:0.01317002660943805 was:0.011429878269381662 dis-:0.011196807025842847 he:0.01113106290024311 :0.5026826244902934 +of:0.12884346546994044 is:0.1175014776366565 was:0.08899225583575146 in:0.07530665918207935 and:0.06449135380530337 as:0.059792985636258844 with:0.05065238387319167 be:0.04799673215716284 such:0.04667456102458055 to:0.04587403871852592 by:0.028789136385601884 that:0.020949301476086746 made:0.02077240927509424 for:0.01966773831010774 In:0.017638050266648 been:0.016230531213362414 Is:0.013404137438641427 have:0.013113822343030076 like:0.012873563000189927 :0.10943539695178663 +he:0.13686845720867244 and:0.11778989388192485 I:0.07631899573029645 be:0.056740646532778126 they:0.03920195062392727 have:0.03544705664575644 He:0.03463579702314781 who:0.032739020482159105 she:0.028652976193663714 which:0.027279218899411945 had:0.02535831415529529 has:0.023187373496228823 was:0.020169632350461597 that:0.019434996922299386 we:0.017976496122155114 it:0.017562705230093758 They:0.011619026261260238 is:0.011543298500487525 are:0.011007382978991311 :0.2554667607609888 +in:0.22682902659905477 of:0.20549696305744886 to:0.075836803778251 and:0.06090918553147212 In:0.0502945869420875 for:0.03601942226645906 that:0.034970474473163454 by:0.03188231819517037 on:0.02941066064023402 with:0.027887150819339238 as:0.0257795677953594 from:0.02573048652789193 all:0.019034473848555965 upon:0.01652702756584214 at:0.011618921948433746 into:0.010412884809607536 is:0.01033546254187361 when:0.009986299495092464 was:0.009006780522208985 :0.08103150264245385 +of:0.16590602267826637 and:0.0594346837925561 by:0.04554845226317305 to:0.040043503390896976 in:0.03191506308093215 with:0.025712968554332742 that:0.02381959563139224 from:0.019872119695244193 for:0.016205135223573787 on:0.010663466073607858 one:0.007594518822650343 upon:0.007037929281562753 In:0.0054349335366289464 under:0.005097571056616476 but:0.005062005648321277 at:0.00505083508350798 ,:0.004210950407973041 land:0.0040494825720115285 through:0.004042086208610115 :0.5122986769981421 +and:0.08157705761610083 was:0.06278138320958708 be:0.03904429313183656 stay:0.03132479529939158 them:0.029279634829680726 him:0.029096099192331852 is:0.02588107499150041 were:0.024268645268799755 are:0.0235343959777301 it:0.022048995518624374 arrived:0.021233907755610203 held:0.019618584332836846 look:0.017971803805123313 her:0.01700836012558648 out:0.015759877815775987 not:0.015162828268441507 had:0.014997211889640814 that:0.014247303261405405 died:0.012837519271404065 :0.4813262284385921 +and:0.07181562702745725 together:0.06672214896410926 connected:0.05460722541492519 connection:0.053485248068146786 accordance:0.040816432970329504 comply:0.022327715315442986 acquainted:0.01991331996883064 compared:0.01902004432375884 contact:0.016949822974841922 familiar:0.016791563233682194 up:0.016271038698657696 do:0.015355480362757417 interfere:0.014875808889703945 charged:0.014646284015101253 pleased:0.013610051164447858 him:0.01274062267734275 but:0.012200014478196207 satisfied:0.011962054640116513 it:0.011810815262474694 :0.4930786815496771 +of:0.1766558630805001 on:0.10404302749760097 to:0.09798545453715818 in:0.0906212791263675 for:0.05155034959955303 with:0.04858785929804436 and:0.04748476104924657 from:0.04382662444087409 at:0.034561118234485204 that:0.03237187636650257 by:0.028537938133674164 In:0.02189615442142282 all:0.019283125505490103 upon:0.01691482987186081 under:0.01349805278911434 into:0.01343642378354908 through:0.010790864871086393 up:0.01077434448029939 over:0.00992428012846322 :0.12625577278470707 +and:0.11203614284734381 made:0.029480560291083903 necessary:0.027231632327903786 provide:0.01978786821063526 him:0.018624150941585572 time:0.017844902254185023 but:0.01736032991925495 pay:0.01712283223509279 responsible:0.01655246417854943 work:0.01573375727996718 used:0.015721729148453864 that:0.015344008200088246 providing:0.015123591452644664 or:0.014918878594106077 it:0.014272018550925738 vote:0.014240496926603478 out:0.013886758983508773 demand:0.013625570335128902 ready:0.01288626098417059 :0.5772060463387679 +the:0.23173661655049102 and:0.17169236172787733 a:0.08008942731525885 that:0.03377671019464011 The:0.03350828800351087 of:0.030964638272148425 his:0.02949566983463791 these:0.02310375867584704 I:0.019846662455358897 we:0.019829660177633303 or:0.019769350814611064 some:0.01868229209611121 which:0.018435641605884456 many:0.01698995034444418 any:0.015749709875149457 no:0.015167179951442879 our:0.014768204010239662 this:0.01298323591798808 few:0.01140663156637146 :0.18100401061035382 +and:0.12292032229392547 together:0.06166672436296699 connection:0.025316095348213136 do:0.022622009085087342 covered:0.022080912981708053 them:0.02184915176480161 compared:0.019001862395676954 him:0.018907520870777992 but:0.018590037767945915 or:0.017255657571600403 filled:0.01663646091455662 it:0.016466334352950605 that:0.015646015867722726 charged:0.015232471933987355 connected:0.014375615114973879 not:0.012420104042329709 accordance:0.012280428916639122 met:0.011475375434586795 up:0.011268908505881168 :0.5229879904736682 +daughter:0.07682385166390383 motion:0.044017959009345194 one:0.03545269955534648 son:0.033443502968660346 part:0.031472184675395906 residence:0.02942487048246146 that:0.026311780135578527 out:0.02394973438260481 name:0.02044528837984278 side:0.01854684788089002 death:0.0183612572645569 home:0.018171832364038798 charge:0.01745616911575023 day:0.017093128038494595 favor:0.015964050122604625 sum:0.01575286007243805 tion:0.0151410216381772 end:0.01490636661343205 and:0.014042687502065974 :0.5122219081344122 +to:0.12022893700269083 and:0.09020394424291768 the:0.08587503820055309 of:0.06450042443224316 in:0.0310058468700829 a:0.017742048521183405 :0.015548046036689871 not:0.01491307651316237 that:0.014112408707955496 for:0.013734482372212283 I:0.013065769926808477 will:0.012848502316304782 at:0.012837991177321897 In:0.012628718855091186 by:0.012491091048660757 be:0.011425930130217754 is:0.0113962101007567 he:0.011342727513475473 or:0.01112522537451577 :0.4219735806571561 +the:0.10827285224321626 and:0.08870080307854705 of:0.07654378796298532 as:0.07601899914727774 a:0.04239111470737973 to:0.036354557417072705 be:0.029098708624609438 such:0.02486086551323051 in:0.02412061979539941 so:0.021759133747919383 is:0.0213871206641338 was:0.01854428813517412 or:0.018041820802296556 his:0.017121500893264113 are:0.011896248230315926 Mr.:0.011670635217693667 for:0.009878887779613906 their:0.009758437766275404 at:0.0092398132181 :0.343339805055495 +the:0.21719897237408833 of:0.0828065165714932 and:0.07893875151120436 a:0.0548807882887447 The:0.03168597070518702 Mr.:0.02254814710458756 to:0.020125659357622106 in:0.0180198143322914 his:0.014951822131353085 tho:0.014344524882490037 or:0.013552932629463877 for:0.012099958775102022 that:0.01005351408975226 as:0.009443138806516253 at:0.009175772766899574 said:0.008848049897578739 was:0.008783617800808462 this:0.008343318225221585 their:0.008292911410822654 :0.35490581833877277 +the:0.39749834532651884 a:0.07520030034269234 and:0.05540858759821703 The:0.03273515726769502 tho:0.030061875542463562 of:0.020144331424922633 tbe:0.014929647509541684 in:0.014268129706664795 or:0.013333166761078447 .:0.013287381914101323 an:0.009000188755386574 to:0.00880680429595084 :0.007943763822197133 Mr.:0.00773879605474787 by:0.007328417831573476 as:0.005922572098978465 for:0.0047526933692942485 that:0.004736121968310169 on:0.004594595720579333 :0.2713091226890862 +;:0.033530750345843394 and:0.014428741657366335 him,:0.011682223130910082 them,:0.009562991819892081 :0.006537468112529095 it,:0.006042592742148579 ,:0.005638308360318606 day,:0.005329122285488787 years,:0.004852758270866871 county,:0.0047953643925116324 time,:0.004679169331101501 man,:0.004643996572136945 States,:0.004623967989104952 in:0.004099031505901881 up,:0.0040395924761635026 :0.0040210182722966 thereof,:0.0034015234828984435 them:0.003378466606898912 city,:0.0033723084781378697 :0.8603406041674839 +the:0.16807735899698817 of:0.10541662057906837 and:0.05138367848570702 a:0.04141865232648221 to:0.0385989743764065 in:0.026264864977736738 was:0.019530675665220657 his:0.018900421021236905 be:0.017373825006196972 their:0.015767721170721456 for:0.01557246589796783 with:0.014071419046630446 is:0.012922913111931644 at:0.012690452250034052 are:0.010702713108721902 .:0.010158075558988393 Mr.:0.009672788574483367 tho:0.009612591781990074 were:0.009549306361446321 :0.391314481702041 +.:0.06145350361758748 of:0.057217752951528256 and:0.05111443697091423 the:0.04221382288129386 Mrs.:0.03025197231450168 to:0.02523021580879916 S.:0.021984391074277576 :0.018402468741943793 by:0.01769683303453687 H.:0.016559324575159545 M.:0.01530915933726461 Mr.:0.0150563980292169 W.:0.013836087577009737 A.:0.01381618690512263 C.:0.01353470740668449 E.:0.013043543885784284 J.:0.012511724146014426 F.:0.011749065463333657 Miss:0.011271346796207156 :0.5367470584828197 +of:0.09129790931378902 the:0.07369883040827747 and:0.047842263382354346 in:0.04189055351593407 to:0.04045875475680249 a:0.03542341257202578 be:0.02020462051672066 for:0.01979292654746225 was:0.01760256398103379 at:0.017380150555488715 is:0.014984483003968216 with:0.014047653760730413 by:0.01374644383819499 :0.012670486581795598 In:0.01200961464556976 or:0.011563835749786333 from:0.011391516893522809 are:0.011273104484969465 that:0.010755276030689069 :0.4809655994608848 +day:0.42333488156366467 State:0.06104220086434697 state:0.01945223933160181 city:0.015322310563082779 dav:0.01480189553036019 County:0.011392613341781285 place:0.010342300416945673 side:0.009966329394306746 City:0.009339013313624026 point:0.008993339026558226 county:0.00789502329347231 middle:0.00752782630750264 Court:0.007375483055253255 Monday:0.0071012585333423625 part:0.007062874840792897 line:0.006705106356643014 act:0.006277527531668793 1st:0.0060570535875279115 land:0.005619904931050231 :0.35339081821647417 +the:0.3327818428903791 a:0.10137916491357407 and:0.09485169356542171 to:0.035459050719428065 his:0.0337657169350499 of:0.03361010304965078 this:0.027738033731462584 will:0.024523967409593908 that:0.024056014863271948 most:0.019197159994225596 very:0.018989916167797882 was:0.016641588671700732 tho:0.01641831132843016 so:0.01621121132259893 The:0.01617625630521133 too:0.0157946060354435 her:0.01543883686060215 by:0.015012726189196132 as:0.012881366114337472 :0.12807243293262408 +it:0.16490306902105242 he:0.10116926715053422 and:0.06063527379749577 It:0.059974992831860405 who:0.05987176994971674 they:0.058978375583552525 I:0.05201178039528475 which:0.045694884060573086 we:0.029999937981767723 that:0.028415997452520592 you:0.0269455353531607 she:0.02507151646861344 He:0.01334403262490196 as:0.011871628984573735 there:0.010887024128755144 man:0.009274031865165665 ho:0.008900709048595936 They:0.00879866840072757 now:0.007706288391616219 :0.21454521650953137 +and:0.14507320772351315 fact:0.08580533594336559 said:0.056464728489513914 so:0.05141663139801109 believe:0.03728868944610554 is:0.032697255055655516 say:0.030323479159427524 know:0.029749358812227955 found:0.025535190692382553 stated:0.021273605064562356 show:0.019511948220510757 but:0.018999393120383457 says:0.018814328565908398 think:0.016893655385130203 was:0.01658797795582863 all:0.01652317309060226 see:0.015409038245983688 opinion:0.015263158537430448 order:0.014744011681695817 :0.33062583341176116 +and:0.06525219817517934 that:0.026387473998311706 was:0.02304708478797039 men:0.0201212329341462 be:0.017961142746181245 situated:0.016519238735819283 now:0.015900593065790797 made:0.01585421664513748 them:0.014895816715428552 is:0.013517700010323363 work:0.013473227943305362 land:0.012506497991714485 him:0.01205450970283396 recorded:0.011990132625520115 held:0.011981834329307443 or:0.011193418908627059 man:0.010982561975825401 are:0.010943318949887204 house:0.010870591513723923 :0.6635472082449667 +and:0.08995317707915026 to:0.06844710404109794 of:0.04605142056172993 the:0.04074574508561307 which:0.02479116931334353 that:0.023764822140213245 re-:0.020841117231308055 in:0.020803825395358622 for:0.020278423301550053 :0.018417753428486977 not:0.016860793136637672 con-:0.016444405871234195 is:0.014386481772210856 or:0.014080680914153714 be-:0.01352268143271276 I:0.01317002660943805 was:0.011429878269381662 dis-:0.011196807025842847 he:0.01113106290024311 :0.5026826244902934 +that:0.3091535574308671 if:0.08075318968157266 as:0.07657340248755902 which:0.0712171969520434 and:0.055890933817156936 where:0.046518197828498115 when:0.03873481543461506 what:0.0329495931804445 but:0.030104462199235994 said:0.028716891171991183 If:0.020957282524908846 before:0.01733031620050564 until:0.016856483963340406 because:0.01512795775966069 than:0.014032693426359466 whom:0.01301814094880585 time:0.010913181226570999 though:0.008059078357174615 while:0.007628257890763865 :0.10446436751792566 +and:0.09379053924927042 to:0.0742855066818078 of:0.06739630294563433 the:0.059809119354988456 in:0.027631208092333288 be-:0.027293809025147272 that:0.021435074971841002 was:0.020009129418631 for:0.018363033111366858 two:0.01705484412802581 is:0.016963649837169994 or:0.01689964597852544 be:0.015590573410395322 a:0.015001108975733878 which:0.01499881791074982 :0.013443348992596298 at:0.012448389513759608 by:0.01164637080842974 con-:0.01120718746514304 :0.44373234012845064 +be:0.24322146021814048 was:0.18168582187441368 been:0.10257207430737317 is:0.07228952229254466 were:0.04365904460602199 and:0.04176072351104178 being:0.041724054447516326 are:0.029755435825406 bo:0.01674560349310639 he:0.013966232046150162 Is:0.011208778742130896 it:0.009567504009400339 now:0.008942297755296095 not:0.007907618160149912 amount:0.007506831658864927 well:0.006529441879831882 had:0.005699952202482108 have:0.004991200964472574 then:0.0046177923572554985 :0.14464860964840112 +to:0.14189393590180194 will:0.05739228135466825 t:0.05453314980602502 that:0.041843043017140265 would:0.03909264579669568 and:0.03883550485435748 I:0.03009182294498684 may:0.02609491598813315 which:0.020695165253699622 should:0.01977656238993678 shall:0.017907350947676072 not:0.014989936622492093 can:0.014921005933167681 1:0.01482737719229919 :0.012846870964661042 must:0.012781991865814649 when:0.012334037662333649 this:0.012312090622223729 could:0.010861447327209851 :0.40496886355467704 +and:0.22637909203896567 is:0.10266096612126088 are:0.07587981027147515 was:0.07374246137645668 I:0.034714428536485605 were:0.028437682213557657 will:0.021110610296414388 not:0.020444169207118664 be:0.020333488142067962 they:0.019454489512766154 he:0.01815547327450321 Is:0.013771039800423305 would:0.013093633458574741 but:0.012238337923768137 that:0.012024991107334286 it:0.011599386559223192 He:0.011141466174673617 have:0.010382510508457574 been:0.010199033646888917 :0.2632369298295842 +the:0.3304048184077831 of:0.11861313254013507 and:0.05634071944829917 by:0.048747610781474465 to:0.04643451677578875 Attorney:0.03279480147740965 that:0.03225754458763075 Postmaster:0.031918806308478834 The:0.02730924226524824 for:0.020032068252252733 in:0.019851147730323593 as:0.017221251055246724 tho:0.01472829757758241 from:0.011642956077407526 Adjutant:0.010178950675792218 :0.009158456483264858 Brigadier:0.008278112287910233 Major:0.0075237914240915745 with:0.007047371686868746 :0.14851640415701142 +to:0.10359571258902253 and:0.08137538890403262 the:0.0704281146168609 of:0.06238330872219435 a:0.02416877263255725 in:0.022706561514788302 at:0.020592644260156865 for:0.017785512420690187 I:0.017608053740907605 Mr.:0.01568668756048198 is:0.015043475331513229 not:0.014972894447563381 he:0.014670173897328756 or:0.012986423044906797 be:0.012497421786170377 it:0.012270610010878123 was:0.011702358264395111 have:0.010743084232053437 this:0.010608570983291382 :0.4471742310402068 +the:0.13661684738848903 of:0.10117261820149696 and:0.08934388469028547 to:0.03816273889269637 in:0.029871526683380153 for:0.022708855925104108 that:0.018199324785305095 with:0.01621012494015181 was:0.015935142549710877 are:0.015620440284503172 The:0.015374735176112552 be:0.014383858058208496 by:0.014364652650043486 a:0.01351572825380592 is:0.013496628765306959 or:0.01214924642066287 which:0.01204840818269941 :0.010231929364254178 were:0.009914237584369578 :0.3996790712034135 +the:0.21710928137942423 of:0.09598811061219507 and:0.09527248824614219 The:0.06484816256534764 that:0.023252074393290727 his:0.015731179187244974 tho:0.01397667239395606 these:0.013008250369004179 to:0.01296689331426111 a:0.011135971876279129 in:0.011059229793953134 their:0.010261710428640112 or:0.01021156795511136 Mr.:0.00991081005921989 :0.009455568868739087 as:0.009350082510582027 for:0.00886619398955121 two:0.007991115431686206 if:0.007970823201582527 :0.3506338134237892 +the:0.16807735899698817 of:0.10541662057906837 and:0.05138367848570702 a:0.04141865232648221 to:0.0385989743764065 in:0.026264864977736738 was:0.019530675665220657 his:0.018900421021236905 be:0.017373825006196972 their:0.015767721170721456 for:0.01557246589796783 with:0.014071419046630446 is:0.012922913111931644 at:0.012690452250034052 are:0.010702713108721902 .:0.010158075558988393 Mr.:0.009672788574483367 tho:0.009612591781990074 were:0.009549306361446321 :0.391314481702041 +number:0.04149975859908773 out:0.03057059929473371 day:0.021927644621538667 one:0.019891149501342707 and:0.01797545436478611 tion:0.017450583710298194 part:0.0159194098134021 time:0.015804361070277988 that:0.015671248571732733 amount:0.015584180976045026 state:0.015202515105795265 line:0.014530163056404354 all:0.013753431698718444 condition:0.01308947454585428 people:0.01259393816357188 matter:0.0121017625013793 purpose:0.011755763895451727 cause:0.011462532553054386 some:0.011325765697139481 :0.670890262259386 +and:0.11528808682121967 or:0.04827695251049358 be:0.03027362356168839 is:0.030212860672633478 not:0.029823359607673638 them:0.028723595304851413 made:0.026682048846747512 but:0.026206641216743848 that:0.02541633832840181 was:0.017798239279470534 it:0.017393539819734457 almost:0.01672713095836294 are:0.015692337491455367 him:0.015622307912294011 done:0.015427804605217116 to:0.014221811809222508 have:0.014143288758715197 for:0.013679427407534134 do:0.01312218475912403 :0.4842684203284163 +to:0.38320642448967185 the:0.112050588594485 and:0.09533603788527963 of:0.06303239876700485 will:0.05146626477403574 would:0.02911311922420883 his:0.02826014943624958 a:0.026829010931476806 or:0.020658818055006082 for:0.014439804905625462 their:0.014263343139527693 in:0.012110639173169001 not:0.010529260800549651 re-:0.009910508029829995 her:0.00959933241316641 thence:0.009494895917891223 they:0.00887671586438706 shall:0.008698043571996803 could:0.008690891609137174 :0.08243375241730119 +of:0.22241321286282614 on:0.13115685803916383 to:0.1179222940983234 and:0.06786371602324424 in:0.05536329074303792 by:0.03879273698133625 that:0.03811871506458468 with:0.03371512132972977 from:0.030715370395075624 at:0.026591855308224843 for:0.02378582019417642 was:0.01824165589842631 when:0.018044994549660007 before:0.015284081955282079 is:0.01512735130503677 In:0.014257348337071317 upon:0.013616799390682575 as:0.013127046336019767 until:0.009023160091503129 :0.09583857109659492 +of:0.2813258507465389 to:0.10257958933772232 in:0.08799790619585703 with:0.045545118300157436 and:0.04553011045367803 that:0.04363973665618158 for:0.038527016240597 at:0.037619008471662406 by:0.03704488561857789 from:0.033148379264110135 under:0.03309412622965639 on:0.028039523203709348 In:0.01740032695389006 as:0.012900226666310155 upon:0.01211888396466917 into:0.011881670736582021 about:0.009458505992717718 which:0.009238779054479564 is:0.008609113946649021 :0.10330124196625383 +the:0.13057845149986655 of:0.10725749502350172 and:0.07161444320363118 to:0.06969283449590352 by:0.033715653568483724 for:0.02770561234660275 in:0.022729424921287798 that:0.018574667018959067 at:0.01822510051073127 was:0.017802273050684797 be:0.016499788852054352 a:0.01608768338356002 or:0.015208028027388572 from:0.014946962186666756 :0.01360354337072708 with:0.013178403134524504 on:0.012779640711731726 which:0.01245389317132798 are:0.012417705758633248 :0.3539283957637334 +the:0.17639223213369634 of:0.08605713010122021 a:0.056715908185415505 and:0.0432343228635513 on:0.04139892904136819 in:0.04108331824391967 to:0.022791767255678812 :0.017591749530055135 at:0.016057183303629086 from:0.01287250797905493 an:0.011834442297175632 tho:0.011679309258818047 his:0.011193418831764012 as:0.011126169252957886 said:0.010800515397236057 In:0.010166563556910256 by:0.009747560391051463 The:0.009338750355849187 for:0.009047973321984603 :0.38987024869866366 +for:0.12383124170132208 to:0.12245597627849417 with:0.10362989502798425 from:0.09043724134307786 by:0.058237001259170064 of:0.05553250029243153 upon:0.054240658707456466 at:0.03306404092206007 on:0.031644451146831655 before:0.01789702758661142 told:0.0178102584416452 around:0.016843818553625257 asked:0.01672374716640088 want:0.015967776405252602 led:0.015885588203957825 enable:0.015509698474588387 know:0.014867531000659852 against:0.014014198266587504 about:0.01390818877146052 :0.16649916045038243 +of:0.37192807916407733 on:0.12371499463980536 in:0.08109966579066885 and:0.060905776524720026 to:0.05071381722627385 that:0.04239309475598375 from:0.02985857945716015 by:0.026250066286886805 for:0.022637665895645264 In:0.021222578735014527 with:0.016966153879285743 at:0.014904051104165648 when:0.012806340478996734 over:0.011138736839578956 all:0.010563538552613133 upon:0.009908088829409823 as:0.009346652946760398 On:0.009085204777988347 along:0.008424796936998758 :0.06513211717796659 +the:0.30486864991017465 an:0.26372257201976473 this:0.08972362047621041 The:0.05448589248250077 any:0.04808939813194164 An:0.023303840974565414 every:0.019328122894703183 that:0.018891140391106998 tho:0.017272116572432526 of:0.014683972035923865 each:0.013549000803613048 a:0.01340854262769187 and:0.012388775772395954 This:0.011987458569733577 tbe:0.010182873879084824 said:0.01017490475685453 one:0.009211307689050515 other:0.006994497035328214 or:0.006542090244630643 :0.0501912227322926 +of:0.1217097383533567 the:0.09378218807293996 and:0.06718473195273308 to:0.05554811085455789 in:0.023822973398343803 a:0.020116618270481522 or:0.01918271113228615 that:0.01908620933349152 at:0.018909993304163174 :0.01885359422719848 said:0.017397282956989744 on:0.016035361680190215 for:0.014793373479359476 by:0.014260262339895673 his:0.01252558429061329 with:0.011439117453976333 from:0.011191267547275112 as:0.009595958377005012 The:0.009109132256791417 :0.42445579071835143 +of:0.30975572390467515 for:0.11072720601307653 in:0.09175159370448724 to:0.07279722544078655 that:0.06073945587472094 by:0.04459673864164223 and:0.03932897020226597 during:0.02912734837000862 at:0.02290323182821598 with:0.02211048877881391 from:0.021091054818017683 In:0.020761061077528262 all:0.017406692847653643 on:0.012693138003773127 as:0.012654519123656114 under:0.011174618941088467 which:0.008783514251492793 after:0.008783484683296698 into:0.00814411961108386 :0.07366981388371624 +of:0.2789886447220279 on:0.10955814484285575 to:0.10652538850034349 in:0.10338336266929903 by:0.06320107299136567 from:0.03505470653930161 and:0.028886377059428387 that:0.025828967745328058 with:0.02541842237626278 In:0.02032429684192912 along:0.01890662502213545 upon:0.01765413876958395 at:0.017001499911545488 for:0.016814857442278085 into:0.01598252414493885 over:0.01350633443226864 through:0.011750555027680912 across:0.009493662435139218 all:0.008847022111600449 :0.0718733964146872 +have:0.17499341083382766 I:0.13080691541489384 has:0.10754294631453372 he:0.08859450762066134 had:0.08264675170531756 and:0.06337507293463801 He:0.03699266702359073 not:0.03031735583377104 they:0.025846667918115903 never:0.025534502598400816 who:0.022750716056366103 she:0.02273826439371468 be:0.020439331204093296 we:0.015577043502521115 was:0.013065167404703816 "I:0.013018666409488108 having:0.011933115689587711 it:0.011864304225608678 to:0.011552621769630995 :0.08940997114653487 +and:0.11438807215349694 was:0.05579408658171733 is:0.052470544492980824 are:0.0321262392769878 be:0.02732774456177614 it:0.021489420874190656 that:0.02070676141461369 been:0.01971271733715759 succeeded:0.019407763044044346 were:0.017992067051647045 not:0.017127278568819307 but:0.016505260721077986 them:0.015285229593574924 made:0.015030572566817512 as:0.014620884305093174 up:0.014179970492449116 him:0.013795983581115395 out:0.012970185434566458 or:0.012757117406466914 :0.4853121005414069 +number:0.21077647518770293 thousands:0.040464112452047285 amount:0.03125321059297643 out:0.029332194964411414 hundreds:0.027589745788702047 sum:0.02727823399936669 bushels:0.022175484654749077 one:0.021959165776931855 men:0.019183168307404828 right:0.01825289875012888 cost:0.018208816784381254 rate:0.017631952352268648 couple:0.016935716316558123 means:0.016485657912239316 kind:0.01638596091948181 millions:0.01600909479607098 full:0.015872997179184615 sort:0.01560362276079559 kinds:0.015593024526974872 :0.40200846597762335 +the:0.6448673171398298 this:0.0669267299797735 tho:0.026110002542935523 The:0.023021327988333652 said:0.01846253940831218 that:0.017761387664107012 our:0.017048769999454597 whole:0.015264312685425439 and:0.013758834238304735 every:0.013662482023386616 tbe:0.010674506219323412 or:0.01055178845763717 a:0.010076633659056939 an:0.009551721621944086 civilized:0.00889201658597834 of:0.008837597272809765 other:0.008443150596910216 his:0.008348995701778137 one:0.0062662509382953304 :0.06047363527640356 +of:0.3446827567591193 to:0.1220381541997671 in:0.07386556841284145 by:0.0707225882026096 and:0.0507843472958865 on:0.03438793811216489 that:0.03284993782352561 at:0.031973224946522424 from:0.031096552205924416 for:0.029669692298970488 with:0.024533305416680144 In:0.01371364904976947 as:0.011337717016685673 upon:0.010593594754172648 before:0.009190951816220143 when:0.008756523393904852 against:0.008607442737349225 into:0.007135978574386065 which:0.007025638913983926 :0.07603443806951611 +time:0.01957343533789715 in:0.012802569542853377 one:0.012139194662030867 costs:0.01165177061306936 out:0.00881707897783064 new:0.008492379285903285 a:0.008326128243895102 each:0.00830471689758811 power:0.008283719903954836 life:0.008208062105572527 and:0.00784696453109752 :0.0077907086560445715 day:0.00755381188934192 work:0.007088336345244055 dollars:0.007079609159235082 men:0.007063157389444604 city:0.006949817871440762 principal:0.006821020748828514 feet:0.006818019504292532 :0.8273894983344352 +and:0.16275446763990847 was:0.051289776260551825 is:0.03691376040826639 are:0.030968784370098618 that:0.028980188818077224 be:0.027558693528382614 not:0.02524212485685834 but:0.020390506278774558 were:0.02002862136494963 it:0.01910695234286858 him:0.018871682441853138 or:0.01672917873988613 them:0.01476440396701557 been:0.014074187100953069 look:0.013343592728482633 up:0.0127320535110202 sold:0.01219824065724996 had:0.01206897095448995 out:0.011271221918098633 :0.4497125921122144 +J:0.028942434933379037 I:0.02718855252114189 A:0.02563960333394056 S:0.025328779237624038 M:0.025047827985183388 m:0.0244645645869778 W:0.023869850219247264 .:0.02317396292447654 and:0.02254666940214393 1:0.021729434237186845 T:0.02012226489407625 -:0.019379056808187207 C:0.019335000827588277 the:0.015066338642911382 D:0.014525938380067447 :0.014411659669300296 a:0.013582102171715012 H:0.013172744232257548 B:0.011305930231439582 :0.6101672847611558 +and:0.14105362281446046 the:0.11649613966048694 to:0.09481295228863315 of:0.07491421143127949 or:0.0381821932633116 in:0.027049146327549307 a:0.024264965216195925 :0.018509393210907547 on:0.018055413593746204 for:0.015653042125906885 with:0.014872133192400059 that:0.013308101992307307 at:0.01304981737003626 .:0.012796797140657824 The:0.012611137337056154 by:0.012278190780884947 from:0.010782414012302035 all:0.009758227574433589 In:0.009403305453188944 :0.3211487952142554 +and:0.07705437548817387 depend:0.031536193375950296 based:0.03144111872793531 placed:0.030957065963502946 depends:0.03075765919212402 called:0.030155936973754766 down:0.02681736716319054 made:0.026577710722022318 effect:0.023344764020024934 that:0.02149799173318628 look:0.02036076372291408 due:0.02026744173692952 call:0.019789339473829694 levied:0.01970103437603757 imposed:0.018928989316509288 put:0.01802119246063272 dependent:0.01689647076264392 out:0.015342186135269933 entered:0.01437601109950992 :0.505176387555858 +the:0.10831725488004616 of:0.061124883191113 and:0.05757614642981387 to:0.04066949684560513 be:0.03430959979897281 a:0.030690915210782033 was:0.022721457871000158 their:0.01934542376620867 in:0.017586291596562182 his:0.01738756937238975 for:0.01710295403262639 or:0.01643853031234507 at:0.016428092535065997 is:0.015223858460032545 been:0.013932505102561646 were:0.012564856776871462 so:0.011868871419566883 that:0.01143517697390775 as:0.011230460867332145 :0.4630456545571964 +is:0.12791565861546433 was:0.12104833530055076 be:0.098146434908801 and:0.05596553589885685 had:0.04947498027734295 been:0.04779219874941084 have:0.045412194139842446 are:0.04394707904045422 has:0.03762699887195885 post:0.03748581668507276 not:0.0298280727671574 were:0.028072943343504297 Is:0.020019316013919007 it:0.018922517335807954 that:0.014658454468165511 the:0.011813069729881435 as:0.011261312471615229 being:0.01079264616105382 stone:0.009993720101324089 :0.17882271511981626 +they:0.144244239141296 there:0.07741251245840283 who:0.06457048138706703 we:0.05015535534948506 which:0.04659714439660858 and:0.03785923386109895 They:0.036836046177843806 men:0.03530967916675766 There:0.030031728583056052 it:0.02829313313370285 that:0.026591707697529218 you:0.022108424656496907 them:0.016823769328021754 We:0.01587142798219182 people:0.014535526661110345 I:0.012088771963610294 It:0.011736676681775101 but:0.009070040959450463 shots:0.00849267635493934 :0.3103714240595559 +of:0.22893459039891545 the:0.10748187247305285 in:0.07880593855741924 and:0.0764415673710103 his:0.06459723125631697 to:0.05859996110600827 for:0.050494185830316826 their:0.0432419802470223 or:0.041141847359263704 a:0.0267881727012972 no:0.02588084956447386 any:0.02547049286563744 In:0.020315679126258836 with:0.019954330953554863 by:0.01859308426751537 all:0.016522438155410414 my:0.01589845422621117 our:0.015545504767914777 own:0.014625626061685049 :0.04966619271071513 +the:0.20443320721810435 his:0.19541873890531558 such:0.144330482186512 their:0.06424558265443715 my:0.05126530833253586 of:0.04934676203228376 and:0.028712088845782868 our:0.020932849826190668 its:0.019990491214534844 for:0.019061954927328633 her:0.018594856513454588 your:0.017011258005362666 funeral:0.01542102625097548 other:0.014849556030597602 tho:0.014386573647473111 in:0.013358555436626769 same:0.011774544047685504 bis:0.010232299110465417 Funeral:0.010183606322948568 :0.07545025849138458 +to:0.31019601080253456 will:0.13793678134185958 would:0.07774183426288846 may:0.07078528459128908 should:0.05127128910568003 shall:0.04901700088221223 not:0.04594340671139167 must:0.03257846389794495 can:0.03230794200897745 could:0.02086203652199685 cannot:0.017984019065961077 and:0.017474170306863105 might:0.013535476571922157 it:0.006941357203389574 never:0.005186754057084183 that:0.004968373522249409 also:0.0034185027334872305 only:0.0032209125075107173 soon:0.003102154139878731 :0.09452822976487903 +of:0.25629798071001136 that:0.09733060590147127 and:0.09116865919031625 to:0.07329965373917421 by:0.06194088766549284 with:0.04564190970795226 in:0.033722023360428795 for:0.026232623552777647 as:0.024041470256932873 from:0.023567841067433332 is:0.022944482390268025 on:0.021985049171203048 all:0.021486347900861676 was:0.016660318613530647 when:0.014892396609715182 upon:0.011603775588056217 which:0.011076825315568589 but:0.010666854703515426 if:0.009419323155822553 :0.12502097139946777 +to:0.65866409172969 will:0.05260942123757512 and:0.048200714208711276 would:0.022556415520246828 can:0.021504397392334708 could:0.02006013674967564 shall:0.018490637519718002 not:0.01627176132348381 may:0.01541583821306236 should:0.014948944325073113 To:0.014152859080723973 we:0.007605733896266556 they:0.007179606946195049 must:0.006026613375948307 cannot:0.005740205055168088 might:0.004544298343256116 or:0.00411321478865622 lo:0.003935041611119086 you:0.003657018846218788 :0.05332304983687692 +he:0.12976820625117658 who:0.09221886342062384 which:0.08202145445505479 they:0.06808463273766263 it:0.06300140281566258 that:0.0536651199481747 I:0.04355172570140108 there:0.03694176174144522 she:0.03568475182996337 It:0.03445956439681276 and:0.03146500019799679 He:0.03013662272772511 have:0.01649641755291053 has:0.014869129143777082 we:0.01270748492222897 She:0.010037042499654298 had:0.010034468298945191 They:0.009824977349933048 ho:0.009403905633941782 :0.21462746837490962 +it:0.17877065481287369 It:0.11923956169640455 he:0.10135386898905797 which:0.0668543299331856 and:0.036186907313196424 He:0.034386844964500854 I:0.033461673870829704 that:0.028851914569612194 she:0.020043701251885607 who:0.01859076112559807 what:0.01806370151875773 This:0.016900188089634276 there:0.011336663841885307 She:0.00934754237679534 as:0.008935670312244404 this:0.008621628632792297 mortgage:0.008032716798205265 matter:0.007198785847504362 lie:0.0066183666763126 :0.2662045173787238 +is:0.053061395996887986 nothing:0.029623873876111657 ;:0.025382093554277382 was:0.017313937275629514 and:0.017287314547599235 it,:0.011115703176253133 are:0.010777877126843787 to:0.009966903995897673 him,:0.00889906123127665 anything:0.008536949288103264 be:0.008479893875783129 had:0.007524037593083386 as:0.007300932350788222 time,:0.007009068623976311 have:0.006920121151456911 has:0.00657210810835653 ,:0.006384026742380191 Is:0.006202821854884375 of:0.005844156169500202 :0.7447977234609106 +the:0.45694604262163663 a:0.0423407243283072 The:0.04020267214188507 tho:0.038052235862119976 of:0.033156215501430136 said:0.02999945604793601 and:0.029919877044906493 his:0.02109356975995642 tbe:0.019393212760007106 this:0.01931824489339894 each:0.018607333205329427 on:0.017924020760321777 for:0.01737708449773492 in:0.016115318948337235 No:0.012012119743181508 high:0.011081097867637578 White:0.010953150835481805 that:0.010851991251641902 Sunday:0.010394178137542877 :0.143261453791207 +he:0.1896126204307852 I:0.1488650671280875 and:0.10871122128091708 they:0.04838745052505353 she:0.043584514993570245 He:0.042766978133585556 we:0.036056632759713506 who:0.028008618172200125 then:0.027575588423999008 it:0.01870828276269173 1:0.016480337306115103 that:0.016165810908923373 She:0.013259395404339952 ho:0.012280652344302593 which:0.010998114313928992 lie:0.010506643139614179 They:0.00931007830026995 It:0.009213259865427415 but:0.008559521525992934 :0.19994921228048207 +the:0.18312708849646622 a:0.09568276766597693 of:0.07050152144258912 and:0.06632058172778023 to:0.04417767165958868 The:0.02361028255963001 at:0.020528731561455606 Mr.:0.020339857984252262 in:0.01925414825211277 an:0.019007965422086544 that:0.014401079489579605 .:0.013517851608440636 his:0.013096913475916324 tho:0.013092524109348594 for:0.012610656336272558 with:0.011922814487606978 :0.011066575995945582 by:0.010961339032134263 A:0.010409076107718384 :0.32537055258509867 +the:0.08883281954481959 of:0.08377773575079468 and:0.05757596784281935 a:0.05637019734396963 to:0.0329277100428368 on:0.019029025259908086 in:0.016867402673585056 :0.01412630974067666 be:0.013667496167853828 that:0.013365781153226399 an:0.011979911757505088 his:0.011778214333471088 or:0.011671373707689777 was:0.010645722701046675 for:0.010607790080103423 -:0.009766796183031425 as:0.009057635682990282 are:0.008615551501507859 be-:0.008289509410008512 :0.5100470491221557 +of:0.5194694586760311 in:0.1330051001477447 to:0.06851432888974311 by:0.0550349750629288 In:0.02878169727629539 from:0.024254562818901995 that:0.023947275467146364 for:0.0208712368580367 and:0.02014793498328324 with:0.012527167863237659 on:0.009063621849989515 at:0.007949625624273258 into:0.007715055802641988 which:0.006610948246463611 ot:0.006473742536331837 throughout:0.006333274786906171 between:0.0060025462560295145 upon:0.005525803780418543 as:0.004602943667776204 :0.03216869940582036 +feet:0.0913503550541484 up:0.03401088123120703 down:0.03223533937520095 according:0.02761117973118904 chains:0.026302754966781017 and:0.02370151726896594 went:0.02260080711098775 back:0.02041419211077768 time:0.02001606309327078 street:0.016245401910341243 go:0.016135151570455666 reduced:0.015118661694088934 subject:0.014595773924917524 due:0.013163568271662911 returned:0.013134898574634063 return:0.013088491450539298 way:0.012995773216070556 as:0.012401005144110862 sent:0.012119759537462183 :0.5617584247631882 +Mrs.:0.1482263627301175 of:0.04767070548079761 said:0.03248745008363221 and:0.031605580179210314 Miss:0.028857686480393625 Sir:0.02866601694670193 to:0.023595974566111844 .:0.0226886473834098 Mrs:0.022074184830125607 Rev.:0.021049450711343627 Mr.:0.0192230132806531 :0.018716095343733283 the:0.018278819622135484 by:0.014703827644421933 A:0.014466398255787185 boy.:0.013992481936806729 girl.:0.012642017876618434 Hon.:0.011460658094674088 that:0.011133039342233957 :0.4574615892110917 +of:0.25145108134103006 in:0.24312696784595586 to:0.0891968035696593 and:0.05068738496870389 all:0.03824044817406112 In:0.03781134139549473 for:0.032793298110214385 from:0.030456427296190636 at:0.020467669765359242 on:0.019875157181123385 with:0.01302175446949896 by:0.011284820102219184 than:0.008681852524618536 upon:0.00866558608512263 into:0.008059877923233672 fact:0.007340548569975466 over:0.007118517663461698 throughout:0.005674059020809915 the:0.0050706231712580084 :0.1099757808220093 +is:0.18174566339859846 was:0.14895928332409172 so:0.1409800528043727 be:0.09352265116637919 been:0.08030551820903019 are:0.06509039015482952 and:0.033563939782391174 were:0.027320765784927044 not:0.024366275502009455 Is:0.020745962066036315 had:0.015371497556139398 has:0.014800448980242477 as:0.014344449177440268 but:0.013120524955945038 have:0.012675353289454103 being:0.012271052405948812 became:0.011548656620980898 very:0.011075491593936896 a:0.010364640214232368 :0.06682738301301398 +the:0.16907660357408363 and:0.10776370929506884 a:0.0663707890704863 of:0.06137902133186907 to:0.045592636549865666 in:0.023060163327076652 be:0.016937231594763628 as:0.013422830568193982 they:0.012854706635682176 that:0.01281846687014063 an:0.012210254329975734 The:0.012125604986785308 his:0.012006233169681822 tho:0.011801829013921523 for:0.010756931338796172 from:0.010625640492918142 their:0.010386357517150283 was:0.010251492746454392 with:0.009783330630670028 :0.36977616695641596 +number:0.07987136228733184 line:0.0433640584225594 quarter:0.02720617118131792 Board:0.021394344290341708 thousands:0.01987375200225851 board:0.019783326405933867 out:0.01795636706685498 amount:0.017210128428332742 piece:0.016796608709425013 sum:0.016700182629970462 class:0.015884082407028047 city:0.014767405751186307 state:0.014449896523739089 hundreds:0.013927547978033056 kind:0.013735081031915774 county:0.013020578956951752 form:0.012972303095783518 cost:0.012758003282723482 full:0.011412927887572049 :0.5959158716607404 +a:0.346804037400223 the:0.08926460166192667 no:0.06246623491135284 great:0.05789633115277501 good:0.04734217167603194 this:0.04637411974087217 any:0.03678418392420688 and:0.032198959949548175 his:0.025649425259913806 their:0.022374423095249587 large:0.021791602013843912 or:0.020514582307069755 same:0.02010909112575584 sufficient:0.01933762253920656 every:0.018619867213728578 full:0.016092974397648244 in:0.015674311957641476 to:0.015390763434468765 much:0.013266329599480578 :0.0710483666390563 +of:0.1847929908148053 in:0.09045451128862668 about:0.08427717620968891 for:0.06216787632326868 within:0.058225722304658376 the:0.057710928196071924 and:0.042221139612459956 In:0.03404539204852438 than:0.03172969256833349 at:0.030730657055083408 only:0.03009851086594201 to:0.029536999596112775 from:0.027251937401307418 some:0.02666085394599358 any:0.026446928630892083 on:0.023932970202083643 a:0.023500782422431123 every:0.022043315381234323 over:0.016642206314212683 :0.09652940881826926 +of:0.26528137667206164 in:0.09833947512092182 to:0.09461069984483891 on:0.07157535512280412 and:0.06802001642042917 that:0.05561410015407533 with:0.03752821630780211 upon:0.037122941741373976 for:0.036007385482834074 from:0.033231925219330966 by:0.03014077460611807 at:0.0214962200713448 In:0.017669791859964135 as:0.012819730779334217 all:0.012755616781606907 or:0.01134162436682483 up:0.010913376087049073 over:0.010389101418284497 sell:0.009587865015006327 :0.06455440692799498 +the:0.05661298163980057 and:0.045288613228264274 have:0.03031896037858913 :0.02970511009842266 had:0.02202611214849977 has:0.013590957104152966 of:0.013514125734128088 I:0.012855413384823421 which:0.012349072596301134 that:0.010888469268605528 The:0.010868037039097044 he:0.010013715580103145 it:0.008439035199339282 :0.006633505034519378 all:0.006279499825806935 in:0.006092389256401281 to:0.005603097658820169 It:0.005429227260159489 was:0.005264855838248684 :0.6872268217259171 +sum:0.03352282876311118 number:0.028116684882597106 line:0.019995206059833036 city:0.01946514558931857 out:0.019275318828420953 day:0.01666865340772654 county:0.014872697538657208 amount:0.013254184849875051 Board:0.01252325449624941 town:0.012449555905674143 side:0.011663975251122375 part:0.011517157473718155 County:0.011460540331966697 state:0.011087331502382173 City:0.010878919191854432 purpose:0.01081028255427907 and:0.010297866493795984 way:0.009848747943663767 name:0.009522170936943183 :0.711769477998811 +do:0.1267745845962766 if:0.1262234253837706 If:0.08950719274453908 that:0.06949470629646005 when:0.061408967013289024 and:0.052092355671619496 Do:0.049082186985190755 did:0.0417505549089055 as:0.029880952573489498 which:0.029170977614591254 to:0.029115182637952406 what:0.01978029905283759 will:0.019110305147387853 but:0.01903692238210338 Did:0.018741823903593642 When:0.017409501668837955 for:0.016859109490364985 Can:0.015153303615947482 let:0.015109681135919798 :0.153297967176923 +the:0.16324486209925324 Mr.:0.09042678305629992 of:0.06941937926519623 and:0.05108579241004005 a:0.04979190773329594 to:0.024106633761228277 The:0.022594848602147465 .:0.02094780424342606 was:0.01838313867438671 be:0.01746204804505748 his:0.017084260088316466 Mrs.:0.016065984003778507 Dr.:0.015187857255884086 is:0.013163944983699409 that:0.013143206566328548 in:0.012817834330974453 he:0.012214399341461735 been:0.009921899691061366 Miss:0.009829133653039075 :0.352108282195125 +the:0.2594434001991528 in:0.12009671073461749 of:0.0943318479123009 their:0.05081808024347445 his:0.04575073320031527 and:0.04098324685994954 a:0.03727467048837855 this:0.03692065049275482 In:0.02988875924188188 to:0.029752494687469516 its:0.027353089002257247 my:0.018347123997967056 for:0.01607028473466789 into:0.013565982639121931 at:0.013078054539734135 no:0.011449010161485458 tho:0.009090184200158833 such:0.00891943853470217 or:0.008620770204020632 :0.12724546792558938 +the:0.19866492455736093 of:0.1682001070837229 and:0.10153673172250426 a:0.07173919246700732 their:0.058647521726916944 with:0.04088339438311845 his:0.039743102553901344 its:0.02385251615097436 an:0.020713177362226165 her:0.020302128080112405 in:0.019571673491751602 for:0.01541246173336529 or:0.014703743653921686 no:0.013588309766634827 public:0.012758262089568782 are:0.012368202459963576 our:0.011704374291655344 some:0.011691105854086906 was:0.011304363974036445 :0.13161470659717042 +and:0.07895257911471103 was:0.03596317658514438 out:0.024016824392823457 that:0.023672598027062328 placed:0.022844208461019616 work:0.021707439938587154 made:0.020781005318872947 is:0.020224993929329655 up:0.019794182040466738 put:0.018288921183371155 down:0.0171740551508179 interest:0.01663630075189571 point:0.01659978677065351 him:0.016175999448187352 held:0.015562908663841706 Dakota,:0.014616466073415059 place:0.01424333231426501 Minnesota,:0.014067166610364513 it:0.013665465625771424 :0.5740125895993994 +to:0.21898435711353062 not:0.2189308987360807 I:0.12217277098098987 don't:0.06761062431135145 you:0.06606017237114922 we:0.04316582271475821 We:0.031142035142980678 didn't:0.029000990330321337 and:0.028737457519154318 who:0.020806240811816652 they:0.019992790375616597 You:0.01909782136503357 don’t:0.01898127410705812 will:0.01624049652940009 would:0.011009502533584813 1:0.010378915817223116 never:0.010374259559839859 They:0.009820633963988206 can:0.009418511626662409 :0.02707442408946014 +of:0.2433418119800121 the:0.09428026483492541 and:0.05828845292950014 to:0.0570333079526487 at:0.049220360571039075 by:0.028880425313690263 for:0.021566941188862945 with:0.020824843438436262 in:0.020057850060120105 from:0.016125582564286416 on:0.01426962521213576 D.:0.01335649380720289 or:0.0130575447584274 The:0.012491459980002988 against:0.010989901640303175 .:0.010886536421177425 an:0.010521103072267245 that:0.00950335034364081 a:0.009399898761328577 :0.2849042451699923 +was:0.10669621918893385 be:0.08672455669580331 is:0.06268385543778024 been:0.060004211263237545 of:0.05806346289152977 the:0.05561031632376453 and:0.05478245888320167 were:0.03650149097370809 are:0.03512707232055946 to:0.02921838956430559 not:0.02796932548783984 a:0.026137572766799046 being:0.015129333010385814 in:0.013826119796531961 or:0.012509196004623286 for:0.011238467904100331 as:0.009468361531379322 Is:0.008995645703930237 he:0.008246818596241299 :0.28006712565534475 +the:0.21783671564914595 of:0.1634056019719913 for:0.07122062164592025 in:0.07087698749930134 and:0.06530348257740672 to:0.037716304349395165 all:0.03266561192222727 with:0.02074289499781509 other:0.014057353129091848 his:0.012810797434480672 In:0.01203328978124252 by:0.011880186364342876 said:0.010705577081875816 tho:0.009413817340575914 that:0.008934273333221018 at:0.008823461999884376 from:0.008169803895513078 on:0.00721822639089963 their:0.007040178181455327 :0.20814481445421387 +of:0.09129790931378902 the:0.07369883040827747 and:0.047842263382354346 in:0.04189055351593407 to:0.04045875475680249 a:0.03542341257202578 be:0.02020462051672066 for:0.01979292654746225 was:0.01760256398103379 at:0.017380150555488715 is:0.014984483003968216 with:0.014047653760730413 by:0.01374644383819499 :0.012670486581795598 In:0.01200961464556976 or:0.011563835749786333 from:0.011391516893522809 are:0.011273104484969465 that:0.010755276030689069 :0.4809655994608848 +number:0.061121886544616345 out:0.05261486142823005 sum:0.02741462633734619 amount:0.02384080203095516 one:0.023073466557916988 years:0.02110777420745143 that:0.0205056435286006 matter:0.020241120173018195 and:0.01861012249511105 work:0.018211402292835285 use:0.017348626137049617 instead:0.017343319268603875 time:0.01676021413730347 full:0.0163999993659351 purpose:0.014807184747885888 loss:0.014639710159876633 case:0.014210668226843737 point:0.01407061025972487 day:0.013941083080221609 :0.5727368790204739 +it:0.10585132745216172 and:0.07710654935245331 I:0.06712153479176775 he:0.05867817015130482 which:0.053700841787128605 they:0.05351210561656362 It:0.04362852193096764 that:0.04003387507326883 you:0.03641010747137459 we:0.025528413642945242 who:0.022306986959409393 there:0.02190240996542134 nor:0.020219035811916895 Nor:0.018149686277373633 He:0.017916611625689152 This:0.01697494557017632 she:0.015955738933714336 but:0.013622858569234546 They:0.012791241596967259 :0.277589037420161 +one:0.15140737029185686 three:0.0958241908465013 five:0.08712537459255998 two:0.0807585864863627 a:0.06880733758593778 six:0.06311808864441047 four:0.05554356004641646 eight:0.04596056327576631 seven:0.03380590797187759 several:0.030224036162672982 the:0.019246426549166473 live:0.017975194086811173 fifteen:0.016901816753837288 few:0.014327815150369148 nine:0.013532230595874693 One:0.013435458888358003 Five:0.011230641430463019 ten:0.010990138934461213 twelve:0.010352708713428405 :0.15843255299286818 +of:0.40981786519556046 to:0.07403398658985252 in:0.06705387587569295 by:0.05298601001304465 and:0.05163078474756891 on:0.04600147243665889 that:0.03984938111625659 In:0.03502046632243439 from:0.0268936844719327 with:0.02076941118566176 for:0.018499561796159258 upon:0.012136677487691108 at:0.011812429203200003 ot:0.008757245252324578 against:0.006475639129018714 before:0.006395220623889705 when:0.006247995367383216 into:0.005580258415257141 through:0.0053306510721334984 :0.09370738369827897 +to:0.4755806371519561 will:0.12953533402375472 not:0.056018831926675165 would:0.055674522987965935 and:0.04786263912879742 shall:0.023451297250586176 may:0.02284842883205897 can:0.021827079482685256 could:0.021662190512704033 who:0.017304665847799116 never:0.014073576395924721 must:0.013531225800598394 should:0.010475346114394919 or:0.009576695548128055 they:0.009212111251273329 you:0.00807912052252153 might:0.0077894785500666475 I:0.007272067905480272 the:0.006801192547719255 :0.04042355821890999 +and:0.07558940021936399 recorded:0.030196237618668006 was:0.028917161578042846 made:0.027969746247669736 that:0.027730098932509103 o'clock:0.025060522019555328 up:0.023026552239529506 is:0.020398277211376416 found:0.02003101797656537 placed:0.017482208134164214 out:0.016937164562539058 place:0.016819459500107596 interest:0.016629321966808677 him:0.016002796715253755 situated:0.01573420479581609 it:0.015128305982428461 them:0.014715943643665314 part:0.014646613000297721 interested:0.014450471929902294 :0.5615344957257364 +of:0.17039607008248556 the:0.1352996064686258 to:0.06959140830259303 a:0.0651323394939312 in:0.06452061455062501 and:0.046184168364062264 at:0.022072763302320428 for:0.02144624101558299 with:0.020914679297386267 by:0.01870107623850656 In:0.018230050521433516 from:0.01809001682992245 or:0.014764616409533225 The:0.01448399758345565 that:0.01156370382674419 :0.008859803931098507 on:0.008360780810495976 was:0.007374401306535946 all:0.007310671603077075 :0.25570299006158437 +of:0.09043409053013649 the:0.08458268447909405 and:0.06941169710674647 to:0.06842685376506503 a:0.03502196399400508 be:0.027631492661475 was:0.02262770347407094 or:0.020899547147549786 is:0.018061672947865565 are:0.017763045964156114 his:0.017114589037761113 for:0.016727962397261282 re-:0.0162769353827767 their:0.01514882567544624 been:0.013878331263912594 were:0.013374436412516415 that:0.01319950985941409 at:0.012567281873590285 :0.012294075404375895 :0.41355730062278084 +the:0.11736978871892008 of:0.0897200692461396 and:0.0783725881513761 .:0.03356802041639512 to:0.03017700656901403 :0.02378553409904085 by:0.022284261647231563 a:0.018454076034498685 The:0.015552203265836948 at:0.013288574472039268 in:0.012470630592138097 as:0.011520480129932571 with:0.010972365844347026 Mr.:0.010176098360249117 for:0.009765964765356459 that:0.009725537465056257 A.:0.009624325075135555 W.:0.009263489211847081 H.:0.00916874813681967 :0.4637402377986259 +an:0.42622337793146803 the:0.1418351894395214 of:0.11613925775091162 in:0.03849709481461122 to:0.0272626766141638 and:0.025980284651632803 An:0.025550717312680948 The:0.022992039404258754 a:0.014938051057837869 In:0.01436922296107937 by:0.01344910116730672 with:0.012209485327535147 those:0.009149555469999621 New:0.009145224077420352 tho:0.008992540284890368 re-:0.007852965255492438 or:0.007571228886852509 most:0.006668205325112384 for:0.006625051354788611 :0.063548730912436 +and:0.03868242960999506 as:0.031124813427855922 went:0.02352509775927722 him:0.02196555539050794 them:0.018760608639018784 up:0.017985449426794205 is:0.017894175620344187 go:0.017174904667157563 able:0.016756848979943888 going:0.014481672239490295 it:0.014128375989346808 was:0.013277058274565138 time:0.013249953793837373 not:0.012469887553778763 began:0.012465717758716884 way:0.012105610030480113 back:0.012090864562211581 right:0.011941707822828511 amounted:0.011564315359310868 :0.667354953094539 +and:0.08802847857673357 him:0.052172970075824145 was:0.03542681819451724 man:0.030431362773220866 it:0.029288088378781416 up:0.020708279568259668 that:0.020571036336634863 found:0.01804151815880068 made:0.017726654982860655 out:0.017249066649085414 time:0.017248369497211622 is:0.0164635781145802 them:0.015112757506419695 confidence:0.014637843296866227 but:0.014176928512072494 himself:0.011931876492387125 or:0.011775222365452837 down:0.010882539895529912 put:0.010458276845277415 :0.546668333779484 +and:0.08184677483738724 the:0.07909217780113714 of:0.06780965644469242 to:0.06289859899580835 be:0.03985155246328224 was:0.033732505141938984 is:0.030010668729588876 in:0.023021463002135298 for:0.018484059015684104 are:0.014846243970674295 that:0.014734512797306256 been:0.014404935020045943 as:0.01426470189874621 he:0.013838513130424883 were:0.013709655520613491 :0.013235943291591874 much:0.013202440868929965 or:0.012807434949848446 his:0.012778135806475932 :0.4244300263136881 +of:0.17540128471649818 in:0.10963179929063042 to:0.10447176198101228 at:0.09717444623438218 for:0.09457167096707125 with:0.04843274970786768 from:0.03818025374932632 on:0.03810579403949475 by:0.0350491060652305 upon:0.03382112448075755 and:0.03340090741129514 that:0.02532403023542388 In:0.024314670948040254 made:0.015047727075628563 make:0.013798401951244333 give:0.010553034227300133 after:0.010453548541105254 but:0.010449691774502114 during:0.010248076266824698 :0.07056992033636454 +and:0.1551157952229882 is:0.10413789448159094 was:0.09084158763522902 the:0.06073996436720558 so:0.053330743949660586 are:0.05299444216105054 be:0.04983218365599243 to:0.033988991863378296 as:0.03318328739676792 been:0.03047581020517043 were:0.02922005833463376 of:0.025889418308908695 that:0.019886774200503218 a:0.019570701638496616 with:0.019208708419974296 Is:0.019121503910640582 or:0.017018820943757815 I:0.016476965173423216 but:0.015586079813752589 :0.15238026831687526 +a:0.16993813863112864 the:0.16936217977929913 is:0.1357183525232682 was:0.08926923964281328 are:0.06509980200332971 be:0.06475830379285119 not:0.032836999572507575 been:0.02935611473622953 were:0.028904794141519936 and:0.02825574893888332 The:0.017093576718286676 Is:0.01699340407401413 very:0.01351833233409665 it:0.011387041252952715 of:0.009785531153937389 that:0.009491635363714957 so:0.008513815108798863 but:0.008390627390194324 made:0.0077148829779205026 :0.08261147986425331 +the:0.3941024978836466 an:0.08343394689687413 and:0.04740689294809383 sufficient:0.04411438790328608 large:0.03743344927636969 this:0.03584102189943694 that:0.03129203227379885 to:0.03009119956089757 a:0.02942703059066464 any:0.02646154813182587 The:0.022196135827568166 great:0.01918428193377359 tho:0.01803363799360005 will:0.017247124713550544 same:0.01607867449745516 total:0.01577438521639272 in:0.014919834207262374 such:0.014282794626355805 whole:0.013735330173752702 :0.08794379344539469 +of:0.09129790931378902 the:0.07369883040827747 and:0.047842263382354346 in:0.04189055351593407 to:0.04045875475680249 a:0.03542341257202578 be:0.02020462051672066 for:0.01979292654746225 was:0.01760256398103379 at:0.017380150555488715 is:0.014984483003968216 with:0.014047653760730413 by:0.01374644383819499 :0.012670486581795598 In:0.01200961464556976 or:0.011563835749786333 from:0.011391516893522809 are:0.011273104484969465 that:0.010755276030689069 :0.4809655994608848 +to:0.12022893700269083 and:0.09020394424291768 the:0.08587503820055309 of:0.06450042443224316 in:0.0310058468700829 a:0.017742048521183405 :0.015548046036689871 not:0.01491307651316237 that:0.014112408707955496 for:0.013734482372212283 I:0.013065769926808477 will:0.012848502316304782 at:0.012837991177321897 In:0.012628718855091186 by:0.012491091048660757 be:0.011425930130217754 is:0.0113962101007567 he:0.011342727513475473 or:0.01112522537451577 :0.4219735806571561 +:0.038486643472416045 it.:0.03396664328220038 them.:0.01653838713049368 ?:0.013929523692572996 him.:0.01145522399403619 me.:0.009194950785017107 .:0.009162400759888353 her.:0.008716308864669247 you.:0.008230169194493578 thereof.:0.0077153860587386115 country.:0.007348020021402233 life.:0.007040193847337656 same.:0.006841495747261721 all.:0.00664326297145345 tion.:0.006146208535703703 ;:0.005929053603628962 time.:0.005886597788469969 man.:0.00563237459961766 world.:0.005572481749498296 :0.7845646739011002 +of:0.11463778201816613 in:0.10772878365755237 for:0.07866150243439872 to:0.06554228164601512 with:0.061828766776000764 as:0.04891925963898753 and:0.03995815310494514 was:0.035844761457094435 is:0.0336426727813643 on:0.027749397664264572 at:0.02686809208718568 by:0.025149993142075337 In:0.02102933292005891 be:0.020743601686272848 that:0.01853370036173907 from:0.01827119832065089 such:0.01442916513125719 after:0.013210788056825476 but:0.012141623862774112 :0.21410914325237143 +the:0.16807735899698817 of:0.10541662057906837 and:0.05138367848570702 a:0.04141865232648221 to:0.0385989743764065 in:0.026264864977736738 was:0.019530675665220657 his:0.018900421021236905 be:0.017373825006196972 their:0.015767721170721456 for:0.01557246589796783 with:0.014071419046630446 is:0.012922913111931644 at:0.012690452250034052 are:0.010702713108721902 .:0.010158075558988393 Mr.:0.009672788574483367 tho:0.009612591781990074 were:0.009549306361446321 :0.391314481702041 +the:0.09868373883938258 and:0.07480453094193343 of:0.0589114817501612 to:0.04097910657897817 in:0.021158790794043262 that:0.019069334359151844 said:0.018742946492478332 for:0.017316364536936867 his:0.017177121694088426 was:0.016182606169468622 will:0.01591288197902934 he:0.015114551865358882 or:0.014845495585184915 a:0.014513966096661732 be-:0.013853328473103959 be:0.012881045636009362 :0.01244603010237448 is:0.011856827412481646 dis-:0.010720055582638647 :0.49382979511053426 +of:0.33485381930898456 in:0.30439222140710503 In:0.05651310090809428 to:0.05298810625562634 on:0.03974746737884542 for:0.028896899073159052 from:0.028843914184735687 by:0.021526295851902584 into:0.015770285711399084 throughout:0.013269369521931307 with:0.011501136108446145 that:0.011189419208219897 at:0.009795702864370296 and:0.008852871318595808 upon:0.008318200148989686 through:0.007759976544879503 during:0.007614913007070457 over:0.007251058075107019 iu:0.006531546207888589 :0.02338369691464925 +of:0.173929230524896 and:0.11667666310358503 in:0.08603970904036806 with:0.06996330511428155 to:0.06811637073339848 for:0.051552939463677554 that:0.04492467118135372 by:0.03711197654552394 at:0.034015021797196274 from:0.030644909325300094 In:0.02475651362512929 nearly:0.021576888354087147 on:0.01918022912803143 is:0.016661279886395947 was:0.016324660867573417 are:0.012805604008820587 upon:0.010397080151397385 or:0.010136273193602406 through:0.009477563840768241 :0.14470911011461343 +the:0.11919516938815296 of:0.07230453158552728 and:0.05781056740443249 a:0.043018564803886335 to:0.031305092790907506 in:0.020848713353460488 at:0.014270110001066288 .:0.012526810245749479 :0.012413283442322082 for:0.011719122709941797 by:0.010808400946589808 or:0.010404172990115616 The:0.01003576004804544 with:0.009811868184449042 tho:0.009295902015355835 was:0.008924239095331684 that:0.008672304223433876 is:0.0085591147338948 be:0.008335143826716943 :0.5187411282106204 +the:0.4539883953178683 a:0.09889987679552971 of:0.06388426945651014 tho:0.039590249378450494 his:0.029301883262290097 The:0.023976803595477617 our:0.01869787950114583 tbe:0.015685965909161662 and:0.013211506473797088 one:0.013007796522386485 their:0.012476550530455403 on:0.010790918416856272 its:0.00928422149184146 for:0.00909820187587787 each:0.008629057872644418 my:0.008106195054580692 this:0.007712629490802238 her:0.007439801190148746 an:0.00731620981425961 :0.14790158804991585 +and:0.09707932373390968 do:0.05977465443474698 is:0.04573894646002091 was:0.038582553594740734 not:0.023035581991093405 And:0.02283699540882033 ;:0.02039057321140992 are:0.018418115347872972 be:0.016934114855990997 but:0.016596265532277922 it:0.016120758867413168 or:0.013902478384905324 done:0.012965555309492128 it,:0.011697227445809002 so:0.01155563185707502 been:0.01140466331076481 of:0.01019351206502911 were:0.009433757095274395 that:0.009381255488970165 :0.5329580356043829 +a:0.08761639102006066 fel-:0.08396138739466939 as:0.06776157897834609 is:0.05950672940363292 and:0.04767781700592595 the:0.046151748041170164 of:0.04433394769310009 be:0.04336105531440215 fol-:0.03877716734749776 to:0.031408346898446786 was:0.027860182969473304 very:0.02252098075418246 are:0.0215397444207379 one:0.012780099101022017 too:0.011969554669417421 Is:0.011586061990666382 or:0.011579025339174437 only:0.011542970224374253 so:0.010970562570202158 :0.3060946488634977 +so:0.11731365081467694 of:0.09963903061725472 in:0.0802753948990278 and:0.07332562183291175 as:0.0711517826525409 the:0.06651477499861877 for:0.06319761590264734 with:0.04650345190767742 great:0.041905856370774285 that:0.037178024483584836 are:0.033629831676101486 how:0.02861991590245021 In:0.02828333681795291 by:0.026530542304809085 too:0.02144675595734454 good:0.02078713274772193 to:0.015498321461410074 were:0.012459520724308667 How:0.010580267211883524 :0.10415917071630282 +that:0.13173267593979335 which:0.08428261748768683 and:0.08192825509111956 will:0.05857451331061159 when:0.05725126674682308 to:0.056501344877587276 would:0.05536472550864591 should:0.039821458544614025 as:0.03558287757796044 but:0.02905536184511451 may:0.022922711312678003 t:0.022546578581545806 if:0.021649261450761122 where:0.018781967217492788 shall:0.01697433740708079 had:0.015863971860043166 1:0.015097909888818727 did:0.014779572998263428 I:0.01416437750326219 :0.20612421485009738 +the:0.46781095202727296 a:0.18667416052130523 The:0.05598520087076974 to:0.04597536996770408 and:0.028967869306269003 tho:0.02066316725745033 no:0.020552257860355173 of:0.014425907229999318 tbe:0.009763415857695383 by:0.007816026854010207 or:0.0077285297934311485 A:0.0073849150149271365 may:0.00659768232341513 in:0.005891735380878935 would:0.005569558956246603 I:0.005423731878870422 any:0.0052580296220555356 will:0.004798286723479612 with:0.004360893012836248 :0.0873523095410278 +w:0.33022941494989727 the:0.12430064863840146 and:0.07521042816989608 \\\\:0.05178907550521304 a:0.034476511526746675 of:0.024105009912601134 The:0.015155340488124159 :0.011769539506585467 im-:0.01094335233470412 as:0.010303285739253619 for:0.010072147685946938 in:0.009829320006968489 by:0.008743701653853386 was:0.007995309749240358 to:0.007723486364661848 W:0.00747805506450854 years:0.007367567016245896 that:0.0069589030866894705 has:0.006948528189699951 :0.2376003744107621 +of:0.2271813286644855 in:0.07830489291549889 and:0.07580605936467796 to:0.06615036890955098 for:0.05501800603323698 with:0.052362686695083226 that:0.04881099984076975 on:0.03914794709878547 is:0.03124921168915416 by:0.028030130276432905 all:0.025866799807271735 was:0.025531265319359103 be:0.02456418745134004 In:0.023151097815571266 from:0.02293571042745871 as:0.017719687220327615 upon:0.014770636769793576 when:0.012680984543388079 but:0.01122208806132621 :0.11849591109648784 +and:0.07848052408394628 well:0.07557138849680191 regarded:0.0468433405576797 known:0.035118925800488955 such:0.034667301162641884 soon:0.031276319226963015 much:0.026145275409263303 just:0.02497722517381286 him:0.023372894411738048 far:0.02120239926781419 it:0.021117059351601263 is:0.01971055020297239 so:0.019447107522348107 but:0.01930706513557766 used:0.017731147161047164 long:0.015551075831887636 that:0.014699217427979375 them:0.014458686187059797 act:0.013370160338594655 :0.4459523372497818 +of:0.173929230524896 and:0.11667666310358503 in:0.08603970904036806 with:0.06996330511428155 to:0.06811637073339848 for:0.051552939463677554 that:0.04492467118135372 by:0.03711197654552394 at:0.034015021797196274 from:0.030644909325300094 In:0.02475651362512929 nearly:0.021576888354087147 on:0.01918022912803143 is:0.016661279886395947 was:0.016324660867573417 are:0.012805604008820587 upon:0.010397080151397385 or:0.010136273193602406 through:0.009477563840768241 :0.14470911011461343 +the:0.08518188627520021 of:0.0784030338350758 and:0.06333972366333152 a:0.03085562241416226 to:0.022532556391268947 in:0.019996560349617578 :0.01972444667264682 for:0.014684635052715144 be:0.014447178318960903 was:0.01399175692225818 The:0.01376593974216767 is:0.013673743260674845 that:0.011722118734337258 or:0.011129949800360322 at:0.01096526635039174 .:0.010465942288935897 Mr.:0.00925698327213323 as:0.008860141397495712 tho:0.006874730188737518 :0.5391277850695284 +the:0.2666406614012726 of:0.08431734948401849 a:0.061937962106581625 and:0.057916947659675706 to:0.03425919642444591 in:0.028177058449463752 or:0.019981844329854528 tho:0.017435707384918446 be:0.016561980773285818 for:0.01600829588206504 at:0.014007242566875707 his:0.012710015768702355 The:0.012295564607856163 this:0.01108229908588951 is:0.010071512743883853 their:0.009769491289539902 an:0.008890371562307094 was:0.008847658445762855 tbe:0.00862735246578914 :0.29946148756781144 +of:0.30975572390467515 for:0.11072720601307653 in:0.09175159370448724 to:0.07279722544078655 that:0.06073945587472094 by:0.04459673864164223 and:0.03932897020226597 during:0.02912734837000862 at:0.02290323182821598 with:0.02211048877881391 from:0.021091054818017683 In:0.020761061077528262 all:0.017406692847653643 on:0.012693138003773127 as:0.012654519123656114 under:0.011174618941088467 which:0.008783514251492793 after:0.008783484683296698 into:0.00814411961108386 :0.07366981388371624 +the:0.3049416339761023 of:0.18845504487720707 The:0.12933216233628944 and:0.048034551437169434 a:0.04063897948441579 in:0.030563426546073896 that:0.02508738039204119 his:0.024047235597862794 tho:0.02105930981088119 by:0.014446766447917207 to:0.012532873650580484 their:0.009989701413964686 these:0.009254995400878784 His:0.009060779566802245 Tho:0.008552532037185711 all:0.00819555055418874 other:0.007697370720878172 tbe:0.007696434844270245 no:0.007451267699510666 :0.09196200320577996 +one:0.05215188120886854 out:0.03757527023756032 part:0.033082276016592374 that:0.026250452999494838 and:0.02351558877208602 some:0.018981834915283186 all:0.015793889181496046 many:0.013036670870089946 people:0.012987842531027145 use:0.012912479653965098 sum:0.01287141692893559 end:0.012614590699648081 any:0.012360756848210164 favor:0.012145677387797468 time:0.011938119897894214 portion:0.011419841561417962 number:0.011164353278354194 work:0.010821201887957425 tion:0.010453543810471234 :0.6469223113128502 +in:0.40828081504304115 on:0.25671329451770325 In:0.13333885794179598 of:0.04666845016165391 the:0.04127743352673811 On:0.028567467306207194 and:0.009832354136820659 iu:0.009520977468424391 from:0.00617252443417745 upon:0.005773735407228956 by:0.004100601322442055 with:0.0035093173546713427 into:0.0032050545638352356 for:0.0030894070109418257 or:0.002848711760111513 to:0.0024772539266783174 tho:0.0023269206017089744 other:0.0022526271010512135 under:0.002216140645052081 :0.026828055769716436 +of:0.1396909247993666 is:0.09163099911783264 with:0.08286022917711813 to:0.08115199566161871 in:0.06538993291581438 was:0.060382268737157206 as:0.055652940703949674 and:0.04560559036282079 by:0.045382175936225955 for:0.04300499991849385 be:0.03092774755414687 that:0.02772468366824902 such:0.027297237072817997 have:0.02607861017769703 on:0.024286126947145274 make:0.02043231127764646 not:0.01959307111277626 had:0.019539608147041598 from:0.01649465595733647 :0.07587389075474509 +be:0.18448697093242708 was:0.11804972794913292 have:0.09368507448605645 had:0.08388550343688364 has:0.08211457458345933 been:0.07448400370849306 is:0.05284975083937955 not:0.043047579769571326 he:0.03020663166729712 and:0.02862734065770262 were:0.02720721055256592 are:0.02135654909557295 being:0.021214579807379386 bo:0.013538227291033964 Is:0.011441697591102362 above:0.010902247233447947 I:0.010870184927411583 it:0.010850568908497678 already:0.009493538855732642 :0.07068803770685246 +the:0.6976423576093336 and:0.04690523089546378 The:0.04339034256821061 tho:0.037365168811750726 as:0.033961264231634695 tbe:0.012189663645182853 a:0.010224133400064353 an:0.008112601977485215 or:0.007973375530470008 two:0.007600452039975552 most:0.0074198009087590375 of:0.007137533479834997 in:0.0066519740535784825 all:0.005930717136917589 very:0.005128270611311607 feet:0.00503844151761126 for:0.003365945590136397 some:0.003277279492799802 three:0.003240578134591586 :0.04644486836488782 +of:0.08145857692682296 to:0.037426949455300444 and:0.036958791192380124 with:0.03247752827699767 in:0.03072100471601589 -:0.027909266835044817 is:0.02412350787828417 was:0.023829121836317538 for:0.022916130208661505 by:0.01816836044251875 be:0.01813227391566023 the:0.016764031698597307 st.:0.014780386313279872 a:0.013885718508876379 In:0.013705048551719555 or:0.013210322618684614 .:0.010385879797497069 ow:0.010293230680787267 as:0.010287137152022776 :0.5415667329945311 +a:0.5808040133184609 the:0.1594801549522727 of:0.05181395732672865 this:0.03150412203898046 in:0.014016968122880828 any:0.013477043354121457 and:0.013162560485981663 our:0.012240542951565143 A:0.010715254292203956 The:0.009904837030481959 with:0.009709115759335378 very:0.008883415499556678 tho:0.008720713191326855 every:0.00848979314213325 some:0.008284487270283877 his:0.008168868537007455 most:0.007688299734774412 its:0.007381787929094625 their:0.006909897900474583 :0.027644167162335215 +a:0.2522008002981942 the:0.15772168749544807 and:0.09203360297085134 of:0.08784194053252126 in:0.03171904596275322 no:0.029146860680024648 for:0.028274026346186004 with:0.02386542192954078 or:0.023252008642779372 any:0.02038402027510763 their:0.019802830737624483 his:0.01785560157721968 most:0.017585501017426234 The:0.017117545681135892 that:0.01697380840180456 as:0.016418197417505335 very:0.01635123313867934 is:0.016183198847690018 by:0.015651362101699037 :0.09862130594580894 +of:0.09129790931378902 the:0.07369883040827747 and:0.047842263382354346 in:0.04189055351593407 to:0.04045875475680249 a:0.03542341257202578 be:0.02020462051672066 for:0.01979292654746225 was:0.01760256398103379 at:0.017380150555488715 is:0.014984483003968216 with:0.014047653760730413 by:0.01374644383819499 :0.012670486581795598 In:0.01200961464556976 or:0.011563835749786333 from:0.011391516893522809 are:0.011273104484969465 that:0.010755276030689069 :0.4809655994608848 +the:0.3656227387879519 of:0.16796610447630425 a:0.09355425012085451 and:0.039020577468165556 to:0.02510214438001031 tho:0.024053322349906738 The:0.022556321832813614 in:0.020044453091282624 other:0.019635514918979625 these:0.0174138221236121 all:0.016213151796769833 or:0.013769014449602903 that:0.011614429614328545 those:0.010725252814280902 for:0.010573271019839663 most:0.010482071396856418 on:0.008961463146044943 with:0.008268853703135065 his:0.008214728394614557 :0.10520851411464595 +he:0.1409889874780049 and:0.10956851908769841 who:0.07010651964312183 it:0.06762130379964676 which:0.05096566735119525 He:0.04864828073109427 that:0.04438457085073287 It:0.0392588506897333 she:0.02388129175915962 one:0.019916668530270097 man:0.018231583282839928 as:0.013783064879033639 lie:0.013575102411766491 ho:0.010996987481252624 country:0.01077289176818106 company:0.01075363433116362 She:0.010075536066926606 party:0.008935666170642221 world:0.008525146798419987 :0.2780097268891165 +:0.05532733001374381 it.:0.017102474395496375 them.:0.012889040412615344 him.:0.010544637869850116 time.:0.009326600393388704 year.:0.00886217905707008 country.:0.008773398667825836 years.:0.008479778662782433 day.:0.007151099383706144 .:0.0070075365281393985 States.:0.0063215961439115126 water.:0.00613187362987054 work.:0.005867777576260312 city.:0.005712314214399778 people.:0.005370802926032106 tion.:0.005322101607774751 life.:0.0052176502658976545 world.:0.005110104534518381 all.:0.005043004492012667 :0.8034386992247041 +one:0.07792771761708434 all:0.04616873086806278 out:0.04595800001125693 part:0.0371974349421359 some:0.028275182968848227 number:0.022107014772790368 side:0.01789906640016204 cost:0.016214595721889 portion:0.015665123756142672 tion:0.015467782162260654 each:0.015135292480174756 line:0.01499948217185718 half:0.01464414072225406 any:0.013758064342152874 copy:0.013713826658932607 result:0.01314850366148041 amount:0.01287501451491507 means:0.012809276234643945 many:0.01272756448092717 :0.552308185512029 +the:0.2000463196539526 Navy:0.14659292090743262 War:0.11602385307975728 Treasury:0.07057856150068188 of:0.04953849431074415 State:0.04095511748800326 Fire:0.035359869855175724 such:0.0210605201794775 and:0.015326568380210832 as:0.012517807998629074 said:0.012196603033436407 Interior:0.011890471530541335 com-:0.011546030782769353 Agricultural:0.010890744367440088 tho:0.009858138720296884 our:0.009482278971751025 The:0.008682004185352117 these:0.008073759645964296 a:0.006826636249335806 :0.20155329915904777 +and:0.06351042905672481 to:0.04713201560048082 the:0.044538216076986756 of:0.03232604628421672 was:0.03147987801464689 .:0.028207534370903106 Mrs.:0.021672798425109864 :0.019415640305498045 I:0.01494947429864185 be:0.01384650111888245 is:0.01354106967749762 were:0.012670735437054378 1:0.012112811930068206 said:0.012055650564386186 for:0.01174029531303118 Mr.:0.01138829946659 -:0.010986072677728678 by:0.010175447864037615 a:0.009892899415180775 :0.577358184102334 +of:0.201111061612961 to:0.14702244944360657 for:0.10529108872264477 upon:0.06839986825539716 with:0.06715901512107085 by:0.0640752370498604 in:0.05667398404000629 on:0.04192686890115403 from:0.033056277880141434 before:0.02189808788415492 give:0.020666035411115884 among:0.01653936895056751 against:0.013688612164766176 after:0.01269763679078855 In:0.01213018321446625 at:0.010015580832316245 through:0.009413984586325383 over:0.00922364521900021 about:0.008997576799783873 :0.07901343711987246 +hundred:0.013633628820093018 ;:0.011172311961148602 him:0.009807052834026905 one:0.00914669734384353 feet:0.0090219372983598 up:0.00838318558829166 mile:0.007527126877816727 feet,:0.0071805242500254255 time:0.006879602834379732 man:0.006817451499927337 it:0.006300585667639516 it,:0.005903705234588485 out:0.005451849962934835 :0.00538718305729827 ,:0.005295204710281874 and:0.005240008239108335 here:0.004938150073064577 water:0.004837308913464981 them:0.004796443021708541 :0.8612800418119979 +provided:0.06895187627471613 called:0.04743124037241042 made:0.047025644650374177 paid:0.0420280062431121 and:0.0342449191830155 cared:0.017381158671507357 shown:0.012816605975910349 given:0.01250716511005638 voted:0.011620197711974905 held:0.011141567674788242 ed:0.009888298924941832 known:0.008820546511174194 applied:0.008672090140364103 looked:0.008584780289546332 sale:0.00858378176872715 sent:0.00856135614421134 was:0.008528954511634112 sold:0.007594684336440997 ing:0.006976366266055436 :0.6176407592390389 +the:0.17964410834874134 an:0.15448300483375538 and:0.11507704226473892 of:0.09310154058664677 to:0.05532278420952908 The:0.043439305368757786 in:0.03898440546522019 with:0.03284535732073517 a:0.03237593444382391 most:0.029046085427471956 by:0.025978806326529245 as:0.02127723631470359 any:0.020821796313048802 on:0.019841645574812893 that:0.01941508392627007 is:0.016559307862423343 or:0.014859572306897164 are:0.013421570243955233 In:0.01247757302725053 :0.06002783983468863 +the:0.49256355327445545 The:0.07466667127177723 a:0.04231198202430496 tho:0.04097980151990914 and:0.030592483319092457 of:0.03058200268818799 their:0.030428143350561748 his:0.02932468204287506 in:0.027464067209288838 or:0.017584161506244967 its:0.01657492144633874 tbe:0.015055907718225752 such:0.013575552020684863 all:0.012600308220091509 this:0.012553243545559572 other:0.012094208411940742 great:0.011238129050554033 our:0.010196210642474965 some:0.010088017656863612 :0.06852595308056834 +:0.047599089515016395 it.:0.02071209929740264 them.:0.014528869097126546 him.:0.01023020222563743 time.:0.010034078546318295 country.:0.008108817181721276 year.:0.008085025637834893 again.:0.00663771980089979 ment.:0.006599416211841076 water.:0.006277863178232749 day.:0.006125218070023524 world.:0.005860116531631202 work.:0.005678487453724676 people.:0.005575872211318713 place.:0.0055078775988352535 years.:0.005340355289416825 all.:0.005104027232687811 out.:0.004793006450470984 city.:0.004760058386376601 :0.8114418000834833 +and:0.11407116966175274 of:0.07107079484512498 the:0.06656730291979027 to:0.05335924540680701 be:0.02740068005735919 a:0.02260417818487592 more:0.02213765112741375 in:0.02051572430464391 was:0.01921309187923535 or:0.019187461572761966 is:0.01905977581138103 for:0.01903629630887901 that:0.01789181571214341 be-:0.017434743418629745 are:0.014819956712198552 with:0.014357000995703835 were:0.011289330063959966 will:0.01101235889555647 other:0.010533063132933779 :0.42743835898884913 +all:0.05666685887177889 of:0.05584290670578253 and:0.04895389440078002 was:0.040001748698617806 is:0.026956598077912817 it:0.026488623850149808 for:0.025432546649672157 went:0.021603957005960413 in:0.02015887691079607 them:0.01722214343934298 or:0.01716908149697764 not:0.016947818814165534 go:0.015303733142501063 are:0.01415550231132039 be:0.013102924329386827 turned:0.01277413754202343 were:0.011455376707386425 him:0.011306141491867263 passed:0.011186738145967186 :0.5362703914076107 +the:0.09684081064840576 and:0.06551335624548284 of:0.05146145169206151 from:0.049520598669154245 a:0.045427902131977435 to:0.0370403239153822 be:0.035669151526387034 was:0.030489628475080553 is:0.026635804908522978 in:0.023878514238638158 are:0.018513936943033917 not:0.017945708099223703 or:0.017556265685966497 been:0.014265228721347686 at:0.013857211504087178 he:0.013733215789660087 were:0.012396679125422956 I:0.012347944480187516 for:0.012197989992860347 :0.4037082772071174 +the:0.15646706893204773 and:0.13818584072170528 an:0.10644777631120321 is:0.08750415096335386 most:0.06423915402061457 of:0.05142730617133321 a:0.04469102893927331 was:0.039614734064583094 are:0.03307651475161096 as:0.026986053147479854 to:0.01988403852980665 The:0.018708987395700965 so:0.018316619781988085 no:0.017557085032107175 any:0.01699881839595578 Is:0.01655711539596288 more:0.01466357114608663 with:0.014470643243926365 be:0.014029370368052132 :0.09917412268720825 +he:0.11833147027173743 I:0.08774588006974372 it:0.08578339994709855 It:0.07481529474244546 He:0.05453501445602853 and:0.05375917949372888 there:0.05031056869887664 which:0.04488992734896964 who:0.03945454340405809 she:0.03021865574460372 There:0.024955486392672303 that:0.02433266092193612 This:0.018439806151112716 She:0.014772663329494996 this:0.012326665031919778 lie:0.010776519321718657 man:0.01038208213640127 1:0.01036298127158213 ho:0.0093888538829962 :0.22341834738287517 +the:0.12746104740990383 of:0.0833581693244384 and:0.059396774393465454 to:0.0374848447391173 a:0.025959787166585126 in:0.021932071500605724 more:0.016764382061268537 his:0.015960521132744643 be:0.014510902135085865 for:0.014285645955673562 on:0.011254403134441987 was:0.01092232981131118 or:0.010797412627730459 that:0.010364556804298585 with:0.010259210228031541 two:0.010110692641409262 by:0.010054803297473606 their:0.01001764683018704 are:0.009962346231950645 :0.48814245257427724 +the:0.07747934499172945 of:0.06297149009174373 as:0.04183188086275635 and:0.03596430888919506 to:0.03193388538637046 by:0.027101437875971465 at:0.02558122043062116 in:0.02212777429138529 a:0.01842930393383236 .:0.013484384620913743 for:0.011411899989077434 that:0.010776207199814898 he:0.010457192631081849 be:0.010181200416858346 is:0.009967092075910863 with:0.00969487096731337 which:0.00907856867001314 if:0.008467880198101532 on:0.008446232434336395 :0.5536138240429731 +the:0.14914929443769842 of:0.10617703309285527 Red:0.08709824287003079 and:0.0376453514306998 in:0.03344608731636289 that:0.030343846875786507 a:0.023780740122437347 to:0.018190627038429802 said:0.018121264325035958 this:0.01542931719867523 by:0.015197193487914299 York:0.013840494185284706 :0.013823345794699014 for:0.011763376186793162 at:0.00868328841583436 tho:0.00746471728860456 .:0.007103556096259547 as:0.006934772214414559 be:0.006888930172143893 :0.38791852145003985 +and:0.0802637157681316 place:0.07298951178739195 point:0.03885260797258076 spot:0.026541477003785695 know:0.025831551404609264 room,:0.018603177850196037 that:0.017772791010930388 places:0.015341914018135673 house,:0.013890583700314985 or:0.013173326411568419 street,:0.012557844867625546 cases:0.012494202212655852 room:0.012469221697096373 house:0.01109576948594362 case:0.010522469265617307 city,:0.010195085351659097 ;:0.00951368757893482 to:0.009478191700785805 but:0.009403445031862656 :0.5780094258801741 +the:0.3849395423804378 and:0.06402536695418862 a:0.04810640754256781 of:0.029453348948631122 The:0.029408412876202703 tho:0.025516941292075962 or:0.02265699246303741 last:0.01762906772170313 that:0.017537486122205216 by:0.015679198758429186 to:0.011855100068413503 tbe:0.01121954374519821 in:0.010739263191238092 which:0.010422475172933557 this:0.01033306022915687 what:0.00782191542900178 first:0.007725211892101874 on:0.007367822030885826 :0.007327788935101133 :0.25923505424649024 +the:0.16813075598388108 of:0.16611291867444258 in:0.12424909118476964 and:0.07422223537112575 for:0.06684785033918007 most:0.05477258601540147 an:0.054659694460572394 to:0.033948992937806094 more:0.0304316357687979 very:0.02570889067220893 In:0.02155673731325989 or:0.020026180288725267 at:0.015862146073634682 some:0.015549814415553836 this:0.015211428205137687 fairly:0.014165763706807393 their:0.011748386691172934 from:0.0105185245450993 on:0.00935921777172928 :0.06591714958069379 +of:0.07337046424213572 for:0.07314255823785341 and:0.06350000130432976 in:0.057262309937319573 to:0.051285527518065775 the:0.04556854410102697 I:0.021579892511273006 In:0.019304814345325733 that:0.01745739228802139 by:0.01514420564012589 be:0.014719438344118253 :0.014544890967083878 at:0.013041612167245862 was:0.012218714158061366 with:0.012040132150085658 he:0.011787577336166482 a:0.011263285274974479 or:0.011045084963691483 which:0.009927824543555824 :0.4507957299695395 +have:0.3102772515674324 has:0.30432086217183946 had:0.19351419585229312 having:0.041999159360976465 not:0.025197831154663935 ever:0.013417418336878229 bad:0.011923127536778669 lias:0.01040169590095306 havo:0.008724554574214737 never:0.008409596921723753 already:0.006987829326351633 yet:0.005598759538865678 always:0.004713124513065948 since:0.004499736163358565 haa:0.004147613004616262 just:0.003993689722727275 baa:0.0037266111321206004 recently:0.0028800136166018176 bas:0.002836965258408889 :0.031429964346129456 +of:0.3788173588340377 in:0.15979018013809973 to:0.09743487325310715 on:0.05315929175256686 by:0.03442400186016013 from:0.02937419238375022 In:0.028335088359895556 and:0.02743076921854443 for:0.025135516739070638 that:0.017974098683929025 at:0.017857508450322107 into:0.017316235941810712 with:0.0172946441085671 upon:0.013173521901951405 over:0.011922684055219391 through:0.008759541865706759 as:0.006651695214186264 before:0.005876454913249268 ot:0.00541480081432666 :0.042857541511498856 +of:0.3222301720722049 in:0.13028394884370048 to:0.07483307163493944 In:0.04007050652378976 that:0.03625279610694092 for:0.035526800292580756 by:0.032351511242523286 and:0.03130478063956306 on:0.030381343395959676 with:0.027570482988076805 from:0.026624980699238167 at:0.026441504951881713 as:0.012554591280306577 upon:0.011703246759675802 all:0.009488555167831413 but:0.009184562114092546 do:0.008508308745653134 which:0.007343062797590127 is:0.00716475554226877 :0.11918101820118267 +be:0.25374611389039997 is:0.12978952287253281 are:0.11608076681121146 hereby:0.07787294994906967 was:0.06182006113967955 been:0.04129871724437118 and:0.030894278376621644 were:0.03028135985749811 as:0.028420992835837062 amount:0.02804306330353726 it:0.02133494965160737 not:0.01616057681603632 he:0.013973168437322972 bo:0.013346395374463606 Is:0.012555935965266144 being:0.010853346253045935 now:0.00881589081742975 so:0.008388920338726326 have:0.0076702278327760364 :0.0876527622325668 +as:0.06931392982974462 according:0.052071562389565784 up:0.0511867300210483 and:0.040371568633051955 went:0.03351644485287816 back:0.032358406609281 regard:0.03073407747799069 feet:0.02852138506231652 down:0.026379903432040268 owing:0.02466642634685871 due:0.023695193974505355 go:0.022910973192184297 reference:0.020802802907016128 came:0.019883741951819873 sent:0.019874244915639484 attention:0.019565955494145405 come:0.01885185084678811 given:0.018792390567602263 it:0.017366961307524745 :0.4281354501879983 +the:0.11919516938815296 of:0.07230453158552728 and:0.05781056740443249 a:0.043018564803886335 to:0.031305092790907506 in:0.020848713353460488 at:0.014270110001066288 .:0.012526810245749479 :0.012413283442322082 for:0.011719122709941797 by:0.010808400946589808 or:0.010404172990115616 The:0.01003576004804544 with:0.009811868184449042 tho:0.009295902015355835 was:0.008924239095331684 that:0.008672304223433876 is:0.0085591147338948 be:0.008335143826716943 :0.5187411282106204 +he:0.21518554701051146 I:0.13742094303821425 they:0.05330005101435863 she:0.049134810102672996 who:0.04191934091791965 that:0.03981677349805256 it:0.037585597779137045 one:0.03583083201823679 we:0.03004432872516081 you:0.02232101123773732 and:0.02161578234048076 which:0.019264512568659027 He:0.01824477475175268 ho:0.018137901001038192 man:0.018113611364101192 1:0.01781241725884911 nothing:0.013876797010634809 be:0.013011082313821299 never:0.011151835753490737 :0.1852120502951707 +to:0.4708654039273592 the:0.08316467715906106 a:0.03138558795376258 not:0.030959073418768024 will:0.03069443023696449 or:0.030481312652550614 would:0.029958061762172184 and:0.02234792949410141 can:0.021963855335946948 they:0.021531080282756056 cannot:0.01777124818722879 I:0.016727076397904776 should:0.016264139498913328 could:0.015528183283221338 must:0.015493236321792876 every:0.015319657780174278 all:0.015008376938878727 this:0.01439090980874612 last:0.013622564578090452 :0.08552319498160675 +of:0.3638842941581997 the:0.11000860192407876 in:0.07349388912709419 a:0.055997258840467926 and:0.046292063186784506 to:0.03701201760013198 by:0.031490956134296026 with:0.02376788077769185 for:0.02138840864213994 In:0.018283252504268332 said:0.017461927894158822 or:0.013022674965856835 from:0.012471640685229024 ot:0.010296390496655983 his:0.00955933695442686 that:0.008758432708643049 any:0.008422528661111081 tho:0.007916134961805788 ol:0.007562469714669035 :0.12190984006229037 +and:0.1295412302476211 miles:0.054514060550031766 or:0.04935629840096577 free:0.029574345791253603 than:0.0256628928429503 them:0.020504434914719146 come:0.01801798371008239 far:0.017157943493736505 out:0.017101596536136045 all:0.015617399183898316 men:0.014032379387024865 him:0.014029246289261181 suffering:0.013756650051656369 away:0.013198020254173215 but:0.01253112219894438 in:0.012449456688076017 annum:0.012228377389979365 of:0.01199005559657977 it:0.011650289479771595 :0.5060862169931384 +from:0.1440794973424935 the:0.13015299724318258 in:0.08093927620826695 that:0.05911886084826407 some:0.05459647470635132 any:0.052685990973944656 this:0.04810117293168824 a:0.0441243728905235 same:0.04044130064189971 of:0.03968791274235325 no:0.03436796329741843 first:0.032123377850348196 long:0.02579241270661878 short:0.024241348867565723 In:0.02238569563719236 to:0.02046471011699861 and:0.01895358686248183 one:0.018062045621468775 which:0.01640347495111581 :0.09227752755982371 +that:0.17612444370879832 and:0.11966729965489 as:0.10622943650950618 when:0.07131753819847278 which:0.055173649496404235 until:0.046764004961557894 but:0.0449362229431179 if:0.04172395841655096 because:0.03321607284653339 what:0.025393343580959144 where:0.024260627347581488 before:0.018230061313478547 If:0.01819362250138117 for:0.016138256513015897 When:0.012651649711242939 time:0.012358861932524771 than:0.011371296896104378 while:0.010576583715902168 though:0.010338577327828825 :0.144334492424149 +for:0.15256758072850868 in:0.11820020871310095 of:0.1130807914311945 with:0.06333544204758268 to:0.05889088842369289 and:0.056526206154452543 was:0.04704017965517733 had:0.02983581388647525 is:0.02923888430026648 by:0.028276324620239962 In:0.027966899863847913 have:0.024918867414648688 after:0.022614999764895623 that:0.019302336650968498 on:0.01894031509448968 as:0.018294133710347944 not:0.01542245108376084 but:0.01273351029986452 only:0.01186913470082261 :0.1299450314556624 +that:0.21488806932375457 and:0.13704574472682768 but:0.07364295408934517 as:0.06153783271550263 when:0.056237149067654445 which:0.05511792399565147 if:0.03254514212126367 where:0.026252377085483634 until:0.018569156542656885 because:0.018405251161535782 of:0.01685808952523818 But:0.01451924119369239 time:0.014332649376990287 for:0.013714485166924044 what:0.013251216067409047 though:0.012499089054312695 before:0.012092095141291899 If:0.011363662217684147 said:0.011229030518646942 :0.1848988409081344 +of:0.18065754275916107 the:0.10908211301750727 for:0.09217649020132139 and:0.06551895340021327 any:0.0521010246141037 no:0.05083474243641571 in:0.049033417253419656 such:0.03254262126393241 public:0.0311846942372446 an:0.028500709267093177 said:0.028486450145701232 by:0.027199205042267693 to:0.026187996568335797 this:0.0254847936103621 or:0.024916008618617994 their:0.022878052095125567 his:0.01727103217854594 on:0.01722352583993378 that:0.01640267929092568 :0.10131794815977196 +the:0.29334624815555405 a:0.1257718149662235 his:0.06955070519718154 of:0.05301639185324717 and:0.03386887039197666 The:0.030127360481135373 that:0.02919413665054644 this:0.025079288977907288 my:0.024965148713779695 any:0.02406027264258921 tho:0.021917703154003366 her:0.015503201701719779 A:0.01427898374536209 one:0.01397495398789735 your:0.013932689421466625 our:0.013175119780073062 dead:0.012808377941747658 whole:0.01175467651287852 in:0.011356725749454316 :0.16131732997525633 +of:0.28767355066866834 to:0.08775711267569858 in:0.08678131196995101 and:0.05160598694501188 on:0.04646139928102899 by:0.04519522654900943 for:0.044547789071328545 with:0.03396756772609607 that:0.033699232901107726 from:0.03075346596941143 at:0.027039283056790858 In:0.021061449543044047 as:0.017514234937992545 all:0.012543839382496166 upon:0.011844431150487573 is:0.00998972746569266 was:0.008814315973987914 into:0.008557199930727406 through:0.007781895704231326 :0.1254109790972375 +the:0.13097851937458876 and:0.11185503988016413 a:0.07956798574692261 to:0.059203229762813496 of:0.0484903168069061 his:0.023698808761787152 is:0.021113433091129688 be:0.020054360462278285 was:0.0193135437630983 in:0.01897393528982888 will:0.0177608436338121 he:0.017299912897899335 not:0.013227193518715017 Mr.:0.013042955250742973 that:0.013033598505891935 her:0.012809730772675377 had:0.012460475236797965 as:0.011771845882981004 their:0.011581628815487906 :0.34276264254547895 +of:0.15487170675683848 in:0.08045200759557695 and:0.07152109417041555 that:0.04050432032319759 for:0.04039373468069191 to:0.03673992486758466 on:0.03308766503784357 by:0.02324009144992682 In:0.02254511482278309 was:0.02098898633962922 is:0.019465161778094757 with:0.01747545758205518 from:0.01593003721569323 or:0.01589533838075072 are:0.014755275524003832 at:0.012386068296986429 but:0.011586966811660914 were:0.010741121986503548 be:0.010271108432947432 :0.3461488179468161 +the:0.1719534680981568 of:0.1680803432886777 in:0.16725752631102364 for:0.05943710281671981 and:0.05426499053453145 In:0.0529938005547796 this:0.03572529040791653 to:0.03273027833346048 that:0.019344520045322545 their:0.018500776645153344 its:0.01742463333982901 co-:0.016015766068876537 or:0.015583913558694845 The:0.012745035863318602 tho:0.011957520862761953 all:0.011924510640742876 an:0.011832665654580432 his:0.01059702444556316 into:0.009637014675265312 :0.10099381785462536 +all:0.24655193407765172 other:0.12950648935928097 the:0.12364414958374274 different:0.09395274126746317 various:0.06397350477244418 many:0.040078796119946906 and:0.03370009362937602 of:0.021058928432944938 two:0.020807198848357012 or:0.018634963697956784 several:0.015554532351694966 a:0.01525290040957828 these:0.014820751053089694 in:0.011052902821002611 three:0.010999698809771844 both:0.009799987524327383 some:0.009731639054867205 few:0.00820971795919209 such:0.007353631002184385 :0.10431543922512708 +and:0.08795960878823234 made:0.048493612607152715 accompanied:0.03674905186205486 that:0.030995698840165 or:0.030334917518134646 followed:0.026613190664660617 only:0.02185965084379737 surrounded:0.021373822531706603 caused:0.021088690640889512 but:0.019717953046304523 ed:0.017379912952716202 him:0.01718487257431 than:0.015151808933845948 done:0.014794413163232606 up:0.014360049329684895 secured:0.013702683679578453 them:0.01345739732225142 occupied:0.013138810317723409 owned:0.012555865500289717 :0.5220879888832691 +they:0.16408828230397213 who:0.11014848239018206 we:0.08059925807020067 which:0.049914888102209835 They:0.04369571355449889 you:0.041398691541891554 and:0.04012109555338021 that:0.03094060292395774 We:0.029726656250432346 there:0.029213626845131718 men:0.02382737179997101 people:0.017897326090089153 There:0.013391341599459095 as:0.010156604014092725 these:0.00932150684446864 These:0.008441978809843223 children:0.00790749752511971 them:0.0070895595111449055 others:0.006520558387981227 :0.27459895788197314 +his:0.3137292101001737 their:0.232469305252339 our:0.08784644785475525 her:0.06418378167512531 its:0.06097522105533158 your:0.05932247909877556 my:0.05626282024436868 bis:0.0188957908842283 to:0.007457180339245448 Its:0.006180861634772375 the:0.005270536045902576 or:0.005059070578929555 a:0.00505110688858878 one's:0.00498136118632141 and:0.00436662269828808 of:0.00347256294564255 more:0.002411856242408386 will:0.0022600686572331673 hia:0.00213860059389222 :0.05666511602367807 +is:0.07051938291572499 was:0.028498125768438555 ;:0.027407218585713888 nothing:0.023388014038449853 are:0.018406783760327453 and:0.017489630115405753 had:0.014161473602340404 have:0.0124401172503315 to:0.01233622804470749 it,:0.011597876537004361 be:0.01134619769930808 anything:0.010224289205670851 him,:0.010121916818718267 has:0.008165207859207508 Is:0.008085981229642214 were:0.007597318784588526 time,:0.0074963322437726415 one:0.0074287481770060095 them,:0.0071270423087369545 :0.6851621150549047 +of:0.3318609334662714 in:0.07972149651474236 to:0.06946424714696872 and:0.06811313175771291 with:0.0425527597040952 that:0.038835840137835725 for:0.03642876359558095 from:0.0284312932173587 by:0.023708500290504485 In:0.019576862129325717 at:0.018365379034243904 on:0.016829208046751813 or:0.01424414556888459 all:0.009118206384393344 about:0.008647463030230685 but:0.008617238057401189 ot:0.008442105512377078 ol:0.007579033867025184 as:0.007277333393627822 :0.16118605914466824 +of:0.279343092464705 in:0.11375570903353342 and:0.06678672346624978 to:0.06612371146571895 at:0.04636760556634905 for:0.04466176188532764 on:0.04237908864018331 from:0.03334928721791063 In:0.032786179306268114 that:0.029270156760181635 with:0.02919547903787445 by:0.02616927748311806 during:0.02542275338600926 all:0.013483534661679036 after:0.00932014941910687 upon:0.008889726103968416 or:0.007269193521905205 is:0.007265144897298429 between:0.006885970549464262 :0.11027545513314843 +of:0.22718509174203494 at:0.10279617877891 to:0.0828940156185133 for:0.08164469149612452 in:0.07645765619798765 and:0.06713605791100503 on:0.04398481572617347 from:0.03817560967906748 during:0.03690311547266134 that:0.0288481132323996 by:0.02523891781348956 In:0.023552550328849963 with:0.018628374880149158 At:0.018384499181998578 as:0.014214567775895876 after:0.014060702102713358 all:0.012216789931107462 about:0.01125544198814782 upon:0.009648634368685667 :0.0657741757740852 +the:0.310062448765645 and:0.13628234265825975 The:0.12387514159831998 of:0.067981689060754 these:0.03513761667137793 These:0.01964140940671385 tho:0.019026131562841334 for:0.017630940886690278 that:0.016560200878617194 two:0.014468029043093899 whose:0.013752279539710912 in:0.011198735067011285 his:0.010888907435514234 other:0.009857020212683962 an:0.009475534676841936 her:0.008617313262260002 their:0.00822963489076564 tbe:0.0074967322535980764 His:0.00743691204553289 :0.15138098008376785 +United:0.803656514358109 the:0.04002780827461775 Southern:0.015439905091204891 ted:0.0075361552139713225 I'nited:0.007086371084371265 this:0.006626051307901669 Confederate:0.006466706332737452 Uuited:0.006365259396270429 that:0.005929669189149155 nited:0.004717993487741114 Northern:0.004633722848291701 these:0.004568640635313769 The:0.004064445171731928 other:0.0038582187742805616 of:0.003702729601881729 Pacific:0.002918522393119775 an:0.0027079545512352994 slave:0.0026745649345315888 and:0.0024211985904205183 :0.06359756876311899 +the:0.15086685289627705 and:0.09455835130302312 a:0.08691594864821142 of:0.06432242040218655 to:0.04934101469797043 in:0.027108638931300753 or:0.022839101881254868 is:0.02062809398903317 for:0.01811014018215277 that:0.018047909022029355 The:0.017754718904029052 Mr.:0.014495417428567324 :0.014191543839797953 as:0.013318571562623319 be:0.013020951127848032 are:0.012425622314396534 not:0.011975467180923153 tho:0.0113548653461783 his:0.011131367914336734 :0.3265930024278601 +the:0.33667274646839074 a:0.11495715367925619 this:0.05568991267394879 of:0.05186466449735341 and:0.03301883323128108 The:0.030095569075896424 his:0.0275077201238753 no:0.02603840375484707 any:0.020185101657609637 that:0.01971415896014001 tho:0.0193946225919224 every:0.016327114129331986 or:0.015524298415964142 their:0.015509848657493946 our:0.014868991886140126 in:0.01181480914758415 good:0.011808410655508238 other:0.010688031180407903 to:0.009995667564650434 :0.157323941648398 +the:0.1258631178661616 of:0.08936910326446951 and:0.07460986492070928 a:0.05082643733213159 to:0.04747676100069278 in:0.028048358675731067 at:0.02695099052526659 :0.013703628437256964 by:0.012270016874249149 that:0.011005497397625867 for:0.010997447727056454 The:0.010774156744572922 with:0.01040411692051417 an:0.009996387144534788 .:0.00975105064225037 his:0.009439004321230295 or:0.009122559621747245 on:0.00839723585378334 tho:0.007998014355839767 :0.4319962503741762 +up:0.03716832027961454 in:0.03144813622693341 due:0.010708682684160212 out:0.009298990196205604 hundred:0.009277730851756299 ;:0.007225175987012488 him:0.006383158768324238 down:0.006355721764109086 to:0.006010453209429665 and:0.005949174058642313 it:0.005704699477143368 back:0.0055795347184092485 one:0.005517382637437592 it,:0.005231761799661043 dollars:0.00487044270371998 them:0.004865544976123898 them,:0.004829629449066843 over:0.004685199587093322 on:0.004530012950423257 :0.8233602476747336 +of:0.18921164735692433 in:0.13703825183145435 and:0.11147269865652237 to:0.06919739289965827 with:0.06899664793090823 all:0.0433804362845443 for:0.0423806097090537 at:0.03042026947532416 on:0.029380186149074745 by:0.027025017271466334 from:0.026112069784322126 that:0.025359490080865188 In:0.017673076470691152 upon:0.01626319486016263 but:0.012659507323382493 is:0.012551230545479486 under:0.009370249191969163 as:0.00904721190319337 after:0.00874668949060956 :0.11271412278439402 +and:0.07359963406644195 be:0.052667135004264946 to:0.04483536256874564 of:0.043448293679263235 the:0.03579172892628988 in:0.028005289969665195 was:0.026700397492138477 is:0.024892551934152005 re-:0.024162182625676702 he:0.024086629517294657 are:0.02098604388819216 from:0.020307931541148256 a:0.018606881911690538 or:0.018077853608073062 for:0.017195224169077532 been:0.01615904189338184 I:0.015254891559368164 :0.015184018660626356 which:0.015016145996292442 :0.464022760988217 +;:0.018609647724095582 up:0.01517762339515 them,:0.007770843085139402 it,:0.007577317004817694 in:0.007515780039806332 years,:0.007392815747483961 States,:0.007242628500493253 him,:0.006980548210693209 and:0.006708826709574082 here:0.006621983723072575 men:0.006541459580253914 time:0.006136371586258216 him:0.0058963543728981615 :0.005698696591522269 mortgage,:0.005416165417450788 them:0.005367693899494284 county,:0.005336664703716902 ,:0.00523830544223361 time,:0.0051854453947516276 :0.8565848288710941 +the:0.2508503380330213 and:0.1477111708229917 of:0.14754246811304875 that:0.0978658509085247 The:0.05755567086582981 in:0.023616095755437556 Mr.:0.022857139565313867 tho:0.011660509630188179 General:0.011599554873049958 &:0.011417042316839487 by:0.007881574705644398 which:0.007707697385759745 said:0.006744526555201108 what:0.0063688777594249225 :0.006358794838196128 This:0.006277122171342305 this:0.006084143575555614 That:0.0060005917446108135 from:0.0058630064092960316 :0.1570378239707236 +the:0.1454500361787387 of:0.1080247151493501 to:0.04516715868785427 boy.:0.036249098323069925 and:0.03403580073245388 girl.:0.032660326140049385 a:0.03171979252021135 in:0.02714044436566853 for:0.02365213940166824 be:0.021942286684630472 their:0.021087116084698817 his:0.019774122064073623 was:0.014637031197642503 with:0.014008395154201525 are:0.012730720509515858 is:0.011363112041341867 as:0.011357870543086747 from:0.01063391638067422 were:0.010589399829418696 :0.3667765180116513 +the:0.3760012880190163 a:0.26845728831650945 of:0.052764127982819216 The:0.04657358684502337 with:0.0343177391677788 and:0.030685332253772665 his:0.021919716620126133 tho:0.018744034935309937 in:0.016872382603218675 this:0.01657441330705967 our:0.015559785148252844 A:0.015399600259808108 very:0.014682032676105173 no:0.010121355380786809 that:0.009220148446610546 their:0.008846504757108672 any:0.008368585045019793 her:0.007569802909868436 some:0.007522381633791327 :0.01879989369201407 +as:0.12542312643317138 in:0.08023216539107551 to:0.07233523776616561 of:0.07101810096559756 at:0.0642952922042236 such:0.05671926525778528 for:0.052136680230688494 is:0.048128197246764245 with:0.04326135190325403 by:0.04318079025215413 and:0.041150571249165525 that:0.037068130776110354 was:0.033554279372793636 be:0.02458657832393307 on:0.023708148741047028 made:0.021280864480056977 In:0.020024336168808065 not:0.01949442155822239 make:0.01793976685186066 :0.10346269482712248 +is:0.1326642900735236 be:0.1052393463790349 not:0.09145366895454365 as:0.08791002769332251 and:0.06835173046945604 was:0.06286507064574462 are:0.036473536979824465 it:0.03535913597226927 made:0.02684592236821566 Is:0.02107385971969711 or:0.020910848043968904 so:0.019628053246634424 them:0.01827068849602781 been:0.017590979161142155 now:0.014137749876974184 that:0.013166084299284108 him:0.012257226907688944 were:0.011663948587464735 am:0.010188363044686554 :0.19294946908049634 +.:0.0659525372290935 :0.0625374862083061 8.:0.012541060561996513 and:0.012165992808059111 W.:0.01163517891214386 A.:0.011553306122646718 it.:0.011236311161890998 of:0.00904465872054793 Mrs.:0.009016996043433588 lot:0.006661974598264978 them.:0.0066020161439203015 It.:0.0065486689234552226 C.:0.006523704106610419 J.:0.006495534501384312 at:0.006334660586583604 to:0.006316472451584546 No.:0.006309433949725032 S.:0.006190930869110033 -:0.005724239479886103 :0.7296088366213571 +and:0.07602460789544636 made:0.04173534935664888 owned:0.025980088252495898 executed:0.018127816957734598 delivered:0.017765930398058634 that:0.015800319757901412 given:0.011939829849554056 them:0.011761353047643983 occupied:0.01141869839529523 ed:0.011234856277662495 signed:0.010815527331864382 followed:0.010686561139206685 him:0.010456145757166968 taken:0.009963475066705673 up:0.009888394424703016 accompanied:0.009726510108245509 provided:0.009376440484180322 secured:0.00915566807829589 conveyed:0.009027447706408504 :0.6681149797147815 +of:0.16948518055775189 by:0.07212464746984885 that:0.054517491308619576 to:0.04465878393593714 and:0.041407321826924116 :0.02647807129043748 which:0.018632705439441816 with:0.018529258941486458 from:0.014411646363942456 for:0.01406810529177732 in:0.013280284623939976 said:0.012499246385761754 Rev.:0.012314805840048872 when:0.010689749436615987 on:0.010027931569469777 as:0.009451667110751094 before:0.008183842355031739 but:0.008049470445304631 if:0.007567739906584913 :0.43262204990032416 +and:0.08880982837565157 him:0.06948060618980806 it:0.02694976179434157 asked:0.02440047340506946 time:0.0234293230723914 reason:0.020943786739309515 made:0.020833096955946016 necessary:0.019962882640015563 enough:0.019954789379376718 man:0.019707926732566262 them:0.01756442506010292 out:0.01753414471001178 day:0.017153663649360155 responsible:0.015605196332443748 vote:0.015433881020924895 work:0.015336038549559197 care:0.014892727809667612 but:0.014590371280570611 up:0.014312288846725831 :0.5221047874561571 +do:0.17790568650049715 and:0.16722866544448858 did:0.06719767776899535 to:0.03726379040978088 will:0.027537483002676406 was:0.026583500912725214 or:0.026189489705298268 not:0.022112865885339502 can:0.020555521907698427 that:0.019849632390812853 would:0.019647643160235526 for:0.01944303534162242 is:0.019081578574064152 could:0.017117818653809572 doing:0.016013443531714196 should:0.015199261869822681 but:0.014265523233840487 does:0.012490594618683227 you:0.01232136330654042 :0.26099542378135465 +of:0.28216836439935 in:0.11920730572203402 on:0.07466713013940841 from:0.030281629978033863 to:0.026832185644177 In:0.02426750739428033 dated:0.024192494197014986 for:0.01986010430942841 by:0.015621137997080958 between:0.013214600173369253 Washington,:0.011799457140725292 the:0.011692552742270405 at:0.011186890313702862 York,:0.010564444063065146 Chicago,:0.01038077945480705 and:0.01030646080626938 approved:0.00990800265095558 ot:0.009827977675197058 Tuesday,:0.009228644032846822 :0.27379233116598317 +to:0.6378425372181012 will:0.06510074090843254 not:0.03711695679559802 would:0.029906790759128353 and:0.02748121550350801 should:0.01638351765733028 may:0.014765554356611272 at:0.013578935501393795 must:0.012991542146252151 can:0.012859392434672453 I:0.011242826536531705 could:0.01099397684446384 the:0.010948448022875283 shall:0.008171644061811277 of:0.007756659466063236 a:0.007741827724215368 you:0.007096025350617283 this:0.007053845476586968 they:0.0068082971481102416 :0.053159266087696666 +the:0.11919516938815296 of:0.07230453158552728 and:0.05781056740443249 a:0.043018564803886335 to:0.031305092790907506 in:0.020848713353460488 at:0.014270110001066288 .:0.012526810245749479 :0.012413283442322082 for:0.011719122709941797 by:0.010808400946589808 or:0.010404172990115616 The:0.01003576004804544 with:0.009811868184449042 tho:0.009295902015355835 was:0.008924239095331684 that:0.008672304223433876 is:0.0085591147338948 be:0.008335143826716943 :0.5187411282106204 +the:0.17684300012592197 of:0.12882456136174197 and:0.10494219317632023 The:0.03311621630711429 to:0.03156189240554715 a:0.027836575049439823 that:0.019026294624688696 an:0.016686909025250496 in:0.01632371849858979 :0.015438947888442389 tho:0.01446276166452966 for:0.014194980766756612 at:0.01248690908785587 by:0.011282230098413388 with:0.011149362883227978 or:0.010764197296000725 .:0.01063749075607192 two:0.010190701397838694 from:0.009473447546585115 :0.32375761003966325 +a:0.41530690144709376 the:0.11413809872245488 very:0.05109147704426034 but:0.04036752043917508 of:0.0341369072805336 and:0.02983917514203853 A:0.02562664574049349 is:0.024060939450024542 with:0.01878750321882679 The:0.017887249953961355 his:0.017351533870941377 her:0.015008060925763197 as:0.013867746946525232 that:0.012393113545193396 was:0.01040093229151475 this:0.010055532683032388 no:0.009859743004332294 their:0.009534249279293798 by:0.008969129070318525 :0.12031753994422266 +the:0.2579751091341552 his:0.13238288153733457 a:0.07575268678532296 their:0.06905341784328765 her:0.05423047693705065 this:0.04992126705443209 of:0.045909642881337955 any:0.03476259658616492 my:0.03180420482587489 its:0.024275995140974227 in:0.023675788546805018 some:0.02150632229298793 one:0.018948852578704566 every:0.01841702146749803 that:0.018367514857404624 same:0.01759733337340968 by:0.017350089811212527 own:0.01719351918866904 other:0.015855203941237444 :0.054020075216136006 +and:0.133999787812552 that:0.10888524237511914 but:0.08392574120835958 what:0.036942863857893166 which:0.034901086756317 as:0.03339052876806691 when:0.02874771694395526 if:0.026042223733335947 If:0.018165345538675576 But:0.018136759861949975 :0.015232030659747266 And:0.012830800593816177 I:0.011619120043045142 the:0.011295692300896706 it.:0.01011188708411886 When:0.009875847131460018 an:0.009818898553996423 me.:0.009589386524027074 whom:0.009544352553549806 :0.375944687699118 +and:0.08995317707915026 to:0.06844710404109794 of:0.04605142056172993 the:0.04074574508561307 which:0.02479116931334353 that:0.023764822140213245 re-:0.020841117231308055 in:0.020803825395358622 for:0.020278423301550053 :0.018417753428486977 not:0.016860793136637672 con-:0.016444405871234195 is:0.014386481772210856 or:0.014080680914153714 be-:0.01352268143271276 I:0.01317002660943805 was:0.011429878269381662 dis-:0.011196807025842847 he:0.01113106290024311 :0.5026826244902934 +of:0.28767355066866834 to:0.08775711267569858 in:0.08678131196995101 and:0.05160598694501188 on:0.04646139928102899 by:0.04519522654900943 for:0.044547789071328545 with:0.03396756772609607 that:0.033699232901107726 from:0.03075346596941143 at:0.027039283056790858 In:0.021061449543044047 as:0.017514234937992545 all:0.012543839382496166 upon:0.011844431150487573 is:0.00998972746569266 was:0.008814315973987914 into:0.008557199930727406 through:0.007781895704231326 :0.1254109790972375 +of:0.173929230524896 and:0.11667666310358503 in:0.08603970904036806 with:0.06996330511428155 to:0.06811637073339848 for:0.051552939463677554 that:0.04492467118135372 by:0.03711197654552394 at:0.034015021797196274 from:0.030644909325300094 In:0.02475651362512929 nearly:0.021576888354087147 on:0.01918022912803143 is:0.016661279886395947 was:0.016324660867573417 are:0.012805604008820587 upon:0.010397080151397385 or:0.010136273193602406 through:0.009477563840768241 :0.14470911011461343 +be:0.2344845318791442 been:0.12893534404184473 was:0.10897003346409358 are:0.06824714769491569 were:0.05714796185120355 and:0.05328815540356307 is:0.050649891796266576 not:0.03526538838668132 have:0.027762968492395516 being:0.024107779259328905 has:0.021619122490520715 so:0.01687947774408348 bo:0.014154853672440602 a:0.014041552424259087 had:0.013800860512008817 it:0.012116101538616428 he:0.010598159594184661 now:0.010006991703148468 very:0.009924453794572026 :0.0869992242567286 +and:0.09787071543084067 that:0.03991205090281645 made:0.031221506457054484 is:0.02912125731490028 was:0.028890693791197214 placed:0.023433768096613405 as:0.021235169506767154 be:0.020980966078724454 or:0.020654644189757747 it:0.020370894604110082 them:0.02026104908955177 now:0.020235367218671932 up:0.018067424186665796 are:0.01741614296069905 him:0.016338116787566907 out:0.016198840522810645 but:0.016073331244865086 not:0.015666419619017713 down:0.012831635836605852 :0.5122200061607634 +he:0.18630155004907442 they:0.07825166637572195 it:0.0749907383606904 I:0.07198135132003014 that:0.05283708439968281 she:0.04394786425906296 who:0.04245549069218839 It:0.03772887482536393 He:0.03394593710883052 and:0.029815521290833893 which:0.029790507661485326 we:0.02902286244447306 They:0.01224939804219433 We:0.011945523845034417 ho:0.011690707161281334 you:0.01159859827286451 man:0.01062779625015132 there:0.00925570090041706 but:0.008753624941597706 :0.21180920179902152 +of:0.1649245444253807 in:0.1316318629093255 to:0.09724041842247327 with:0.06675637514554601 and:0.06346557519215502 on:0.046462833191465706 from:0.03354582824834574 that:0.03260455783295464 at:0.03181724872219059 In:0.03055649692106218 for:0.02919019790888285 by:0.022160049246730925 are:0.01834932716768081 was:0.01653916929455144 upon:0.01294741549704213 not:0.01219841461791035 is:0.011899078111235327 were:0.010656445099459934 nearly:0.010295675124872972 :0.15575848692073388 +a:0.1576064689101419 the:0.1421803773415315 and:0.05258714933124117 his:0.04685614985450951 of:0.039694214488513 .:0.038040940341830955 A:0.03277337426541794 her:0.022049564406011166 The:0.01828038540042509 was:0.013622502178276017 to:0.012561049489366883 my:0.011102765889741273 tho:0.00963078107056835 is:0.009532190825777824 as:0.009193533386478428 be:0.008643780082135545 your:0.008575724504990785 their:0.008304072485682006 S.:0.008008225606985057 :0.3497567501403756 +the:0.10361057505725618 of:0.07881818244510154 and:0.07762339374303218 to:0.05146016254904709 for:0.049228219278416564 a:0.046375855984796446 in:0.03270781985025368 was:0.021402001022578006 be:0.019908735887536055 that:0.01949214508129595 are:0.015272718074478905 which:0.013476322945608141 is:0.013402153450571455 with:0.012797667103593171 were:0.012532764071613101 by:0.012114136958177223 been:0.011488361789499248 :0.010744053863428239 have:0.01048372054436104 :0.38606101029935574 +of:0.13048359145090888 in:0.1279654531072439 to:0.12645950213925589 and:0.09066987941084113 the:0.053966418838652275 his:0.03964414296866046 their:0.02971949778900084 In:0.024683699554764155 its:0.02391476113574743 with:0.02218537257317689 by:0.020061515509671293 which:0.018578853671502655 without:0.018019712206111385 for:0.014804503636732474 or:0.014725482286016611 as:0.014443296135818733 our:0.014295600691699753 a:0.014070375044153795 who:0.013998041635590272 :0.1863103002144512 +a:0.19991517838847292 at:0.1977038377881684 the:0.13051075083964486 any:0.07260562375416396 in:0.060581648582833963 no:0.044603916931999284 of:0.04076296861304807 from:0.034540035906445776 every:0.020976284711993476 an:0.017469331400110935 In:0.01662837814901085 by:0.014251458681950225 and:0.01423497438078192 some:0.013126228694125585 At:0.012759924915779932 his:0.011853799720594268 one:0.01143765718101534 tho:0.010225925492894476 this:0.010014135501317783 :0.06479794036564794 +of:0.5829623674938774 among:0.055216768135507625 for:0.03422578307270723 to:0.03177003071677007 with:0.02899318796990672 by:0.028403755025722264 upon:0.01905874602155724 let:0.01640847432253224 Among:0.014660741484100761 against:0.010979013955367364 on:0.010245420609635496 in:0.009770065039335862 and:0.009617282492320902 from:0.007696769265561732 between:0.00704063113689042 that:0.006708230144378608 ot:0.006648850908016051 before:0.006090631609264577 see:0.005814886637926606 :0.10668836395862084 +be:0.21113014516398182 was:0.17770157497377978 been:0.09268707495912745 is:0.08712303943860926 are:0.06364017511984431 were:0.06254893029744676 as:0.03664139534895475 and:0.030625552505260736 an:0.029636370310975213 being:0.020481070029835596 if:0.019158928109449695 or:0.014913079500819241 not:0.014678020525340391 Is:0.014141263539247257 he:0.013682807827732324 bo:0.011828321219102917 so:0.009804114253536845 fully:0.008581978520161543 am:0.007007453707169131 :0.07298870464962494 +that:0.10043052203022029 and:0.09857109546152666 he:0.08110123162614322 which:0.07665323654709436 it:0.07400853310170948 It:0.05026311955709482 who:0.046534853058318816 as:0.03479568252752109 I:0.021309224109433932 this:0.018373284151391646 they:0.017059067276090033 He:0.015418408146692684 she:0.015142404478130948 This:0.013843161521947941 what:0.011527048832579677 but:0.010491726379361618 now:0.010478711083847368 man:0.009890493376374529 one:0.009622272992623639 :0.28348592374189724 +part:0.062325847554271264 one:0.06063111468590399 some:0.037306181508129276 out:0.030654329894436005 members:0.022088577251346518 and:0.01924141362015411 tion:0.018787037941101363 portion:0.018051689715010356 side:0.017943951891416163 that:0.016507907061938807 member:0.01593843659970584 office:0.01574566960076909 majority:0.0154104008831532 front:0.014054186394075671 parts:0.013607560627939948 payment:0.013458169751259314 all:0.013339146994107673 end:0.012284189708442875 time:0.011200658322325753 :0.5704235299945127 +away:0.0594906994988549 and:0.056908381977562685 taken:0.039949330304050686 came:0.038730563910635306 come:0.038440839207033714 miles:0.027742918942786913 them:0.026086532738417278 him:0.025521052559189916 free:0.023642004925516498 derived:0.02138144535170431 out:0.02109542356312111 received:0.020733503375295902 it:0.01885457311418442 comes:0.017599144833117624 suffering:0.017342856164820137 far:0.017289627707983677 made:0.01717625527868591 coming:0.016861469640005858 feet:0.016764031482543372 :0.47738934542448974 +is:0.08068209700440834 not:0.07690631127941844 was:0.07497164348204385 and:0.07456988627580215 will:0.051345284486177985 be:0.04552993118494258 that:0.033371597993293596 are:0.02934434708330187 him:0.023740026302247617 were:0.022369428654008195 been:0.021331564497640988 but:0.021320828296969914 to:0.01971998461791312 as:0.013847812451642032 has:0.013607478126203032 Is:0.013302649883182503 them:0.013034433415384312 being:0.012675885350101012 had:0.012046325855687795 :0.34528248375963067 +and:0.12957124345498702 that:0.08841230529028594 as:0.0642493847124274 when:0.03427901308835232 but:0.03404930612150418 so:0.026539620399814515 :0.019768164039317474 the:0.018213844536954755 which:0.017155376655991695 me.:0.01587620446955925 As:0.015665977303382934 When:0.013898441339525159 of:0.013639314365235657 it.:0.012691197245990387 time:0.011913304428902571 an:0.011512748593308749 what:0.011071682172527455 for:0.009801233748585249 than:0.009466774863043039 :0.44122486317030424 +and:0.08995317707915026 to:0.06844710404109794 of:0.04605142056172993 the:0.04074574508561307 which:0.02479116931334353 that:0.023764822140213245 re-:0.020841117231308055 in:0.020803825395358622 for:0.020278423301550053 :0.018417753428486977 not:0.016860793136637672 con-:0.016444405871234195 is:0.014386481772210856 or:0.014080680914153714 be-:0.01352268143271276 I:0.01317002660943805 was:0.011429878269381662 dis-:0.011196807025842847 he:0.01113106290024311 :0.5026826244902934 +the:0.12159922046361879 of:0.05785462102949751 and:0.04534654237888859 to:0.0442466619413039 that:0.014328620236445452 in:0.014150352327964884 be:0.013793490812070151 a:0.012802024368770806 :0.012488060319137888 for:0.012424878371903326 is:0.011582579609603127 much:0.010090484738293905 he:0.010067626263510107 was:0.009034943713928923 their:0.008866607192334059 as:0.008235727142658852 so:0.008131534473917741 re-:0.008117053631965148 dis-:0.008057800731940751 :0.5677811702522461 +be:0.2652741263784497 is:0.12915827240326672 was:0.12274674227378626 are:0.11502743116596287 been:0.05153853228586513 were:0.043184523857428686 and:0.03959193370797498 not:0.025450642154017822 bo:0.016494823546206384 being:0.01502011944389191 Is:0.014730257540561963 act:0.012679203718948807 above:0.008940130616693262 he:0.00866418204783348 as:0.0076243617072019095 am:0.007008204080984419 persons:0.007007102002078657 it:0.0060588918881455 so:0.005549882944830309 :0.09725063623587124 +of:0.41344737898194334 to:0.0913227465410069 on:0.06985854732968795 in:0.0691518172231473 by:0.05191257150711726 and:0.04083627227046034 from:0.02917864032369347 that:0.028945739338809333 for:0.02187622346096238 with:0.019775568922866027 In:0.016000492723059555 at:0.010419271545968108 upon:0.009620330427172055 as:0.009367829463300264 before:0.008588803137969177 along:0.007868015639091477 through:0.0077571540295466816 which:0.007640746129651544 ot:0.006208474208342447 :0.07922337679620439 +foreclosed:0.0826326115191591 accompanied:0.05930666942049243 made:0.05336585618201428 and:0.05113808815574321 followed:0.0477509052190524 surrounded:0.027001067213274173 up:0.0223956915218854 caused:0.01986528146981332 secured:0.01963201700061169 was:0.019527138795776604 ed:0.0163892391762384 it:0.014428341647705614 occupied:0.014047766264405974 him:0.014002524716027894 surmounted:0.013411064770142235 given:0.012603829803430331 done:0.01236267211154264 covered:0.012285928470556887 that:0.012257320636555267 :0.47459598590557217 +have:0.30825979017372884 has:0.23335574802959289 had:0.21175046658197516 not:0.030988266201518243 having:0.02927012901615229 bad:0.014171973849594698 ever:0.013086879418728829 never:0.01300501411300987 havo:0.009928021099038665 lias:0.009747205787221536 haa:0.00770115724572842 baa:0.007542997033275567 always:0.006964193192067684 already:0.006843537117543435 yet:0.006280305743339498 long:0.005835741283387316 since:0.003932840742479124 hare:0.003476596932273983 and:0.0033496242557260235 :0.07350951218361794 +the:0.14778541887741273 and:0.1435250705862042 of:0.08384768202180136 was:0.06882532102408254 an:0.06593676763200547 be:0.06589150602451616 is:0.0455918275492038 to:0.04297778190148051 a:0.04093491393794785 been:0.034886085025217194 The:0.02285153125276121 that:0.02131227026547591 are:0.020439195427863717 were:0.018067221278831272 with:0.01716625309231441 in:0.017105787750115467 not:0.016960461542765565 more:0.013237594840492518 have:0.01303832940480907 :0.09861898056469907 +the:0.19268878116069899 his:0.13754911051587757 a:0.12246646521583869 their:0.05706285410856681 my:0.045898877291020906 your:0.036321062564468 dis-:0.03492836613544714 and:0.034572364097147604 her:0.023260349113588798 in:0.022347402873976133 this:0.022043164407864045 its:0.021053472057330498 our:0.020467789839802283 high:0.015984514603776753 op-:0.015934306626160834 large:0.015107777713332353 of:0.014839379939424729 good:0.013584631845403011 better:0.012679150047959152 :0.1402101798423157 +of:0.20577194567913595 in:0.10883116681015291 and:0.09330185796215434 to:0.08554686060110354 with:0.06556184733384034 for:0.043420191790889386 from:0.04325030734335009 that:0.03854610971570746 at:0.03479393474750395 by:0.03151207350898993 on:0.0242420096911333 In:0.02058889176090816 upon:0.014394286858972186 after:0.013091194057751769 was:0.011092198804803763 as:0.010991169585189536 all:0.010455722690492135 about:0.009572145890778053 up:0.008893837044090268 :0.1251422481230529 +100:0.03288732298754587 two:0.03198897404081781 three:0.030385994239208753 five:0.029968848731730346 hundred:0.029139695779980733 six:0.02783698733371803 fifty:0.01612976803618993 twenty:0.014825262706590292 ten:0.012837240700643935 four:0.012761670885501479 5:0.012625174095896844 the:0.01183750772731158 8:0.01171278020383372 6:0.011688833216337657 thousand:0.010676065644884592 and:0.010580682153516215 :0.010529003373096875 few:0.010521220342379923 50:0.010398124241896135 :0.6596688435589193 +:0.03652551626172074 and:0.03436774924690836 it.:0.03330935931280666 that:0.031933096649170115 them.:0.020898354337697572 ?:0.012406965924433275 but:0.008520098074852213 us.:0.008147161297058437 time.:0.008075260608513529 as:0.007939646828478303 him.:0.007007966886075579 country.:0.006545878818655511 it:0.005949277514745356 day.:0.0057212197528731575 people.:0.005502895935534201 even:0.005285989975818374 year.:0.005157159901503256 law.:0.004935302613137398 not.:0.004693229959936833 :0.7460778701000811 +to:0.10787150666548408 of:0.10607342756648486 the:0.09946007246696366 and:0.07071055073725498 in:0.053815295878352674 a:0.04378328550696804 at:0.03050831063539756 that:0.025672071171882353 with:0.020042865517399554 for:0.019156265593260096 by:0.016257184727510324 was:0.016256097434835866 from:0.016248756771065447 which:0.01603047653439071 is:0.015094423010989164 In:0.012792059678962313 be:0.012165330374513447 or:0.011607987409546525 as:0.011403119033480538 :0.2940509132852578 +the:0.22310961969274284 a:0.19240933366848356 and:0.10847627226290985 most:0.10400008255003892 of:0.061037567026666614 his:0.025632090285574977 are:0.019621937178122044 more:0.018494521210007577 very:0.017547632859601363 is:0.01699191688059662 The:0.01649428051826167 or:0.014943543308779434 this:0.014460407423392017 that:0.013433139833626456 tho:0.012189273577095785 with:0.012085930657347836 was:0.011414706786704053 other:0.011078108655054635 by:0.010830826283927304 :0.09474880934106643 +he:0.21304374526614098 and:0.15570075860445187 He:0.07355730744837304 I:0.07040229291897868 who:0.03722582741683741 she:0.026780335970296883 1:0.02088670114158577 which:0.017496912856029938 ho:0.016788435147667567 lie:0.015404163279129732 be:0.013719202116302955 She:0.013314408161656101 that:0.012030912058499516 they:0.011943891277397293 it:0.009301552613186536 we:0.009240018099394027 never:0.008361803364252914 man:0.008312600652800007 It:0.007742078015704656 :0.2577470535913141 +thence:0.5861115622919276 bears:0.025897441240744994 S.:0.02169418390837907 of:0.02012708274660265 .:0.01913170064900668 and:0.01900341909952653 to:0.011822210708169821 W.:0.0095268886757063 E.:0.00863763383731987 deg.:0.008588103935494482 Mrs.:0.007736122812912575 U.:0.007457294750681751 W:0.006534619382223908 J.:0.006376278231197265 thenco:0.006230580282203447 J:0.006112867664727108 Miss:0.005933739680005445 John:0.005041168046498968 between:0.004917802958321632 :0.21211929909834987 +at:0.4309768084211039 and:0.06903047586457565 of:0.06035952989211433 No.:0.03454192325913552 about:0.029693699428697908 to:0.0290812953236359 At:0.027806733700268357 from:0.018516512112136434 for:0.01695665116336237 day:0.014061031487899991 or:0.01217417091180916 until:0.007831827193876116 @:0.007552420293968803 by:0.007401789179303828 lots:0.006851021480666568 section:0.006835052345493438 after:0.0066799253841686584 June:0.006539205072154299 1,:0.006330591010655328 :0.19977933647497342 +:0.023095704025784265 it.:0.02211882289871116 them.:0.01792436173529611 time.:0.009373458728290164 him.:0.009267271019365815 her.:0.006746401766996881 country.:0.006353913338147806 tion.:0.006349951971767478 day.:0.005986490954149509 years.:0.00573149729515551 year.:0.005446688281016501 people.:0.005380483193759885 county.:0.005171247044520542 State.:0.005039457411917525 one.:0.004894154877919267 life.:0.00471920727702113 again.:0.004630863755817278 and:0.004581535003317319 .:0.0044525469490748395 :0.8417359424719709 +in:0.5555666640427048 In:0.14888804516762852 of:0.0806673236673953 from:0.0512067698881604 for:0.017021854011461442 on:0.015550260184842169 the:0.012351300769250197 at:0.01176640561272185 iu:0.011315752328422283 upon:0.009523542002102063 and:0.008855462276877375 by:0.008463458204841373 with:0.008208472286098913 into:0.0062685827113433575 said:0.006226969819208185 any:0.005826248928041299 strict:0.005337644892741866 or:0.005234255900128856 such:0.0046003128366859086 :0.026120674469343894 +and:0.10600972534521641 the:0.10214862577643104 to:0.06351245374163844 of:0.06018260364315796 in:0.030936259295518766 that:0.029102592708742058 which:0.028196689946910568 a:0.025342824877468004 or:0.02189405863623173 as:0.019208811291001767 for:0.018817505835728103 :0.015897734205674932 I:0.01457920970408108 they:0.014008332687000516 such:0.013289373477941988 will:0.012870971840895825 we:0.012010038806608229 their:0.011652346483824738 an:0.010644406248535854 :0.388695435447392 +and:0.07765910888981709 is:0.043946209014511475 was:0.04394532796999438 be:0.040848554750171476 succeeded:0.03641091693205481 are:0.03460376034190511 made:0.02702526596315591 that:0.023087966448252666 it:0.022519057334593806 engaged:0.02111238296870929 were:0.020322050009035728 been:0.020015192684559816 them:0.017382500657154045 found:0.01534248465618882 as:0.015122177673298019 up:0.014892672127112603 not:0.013863202723846542 or:0.013001364322176195 used:0.012711510501828456 :0.48518829403163377 +manner:0.10014154852873941 and:0.04758153569965947 that:0.027548634697924172 way:0.017860480013091023 time:0.013660246230114154 it:0.01211986153900764 all:0.010836767636137537 one:0.010756664322780446 part:0.010728763786470055 district:0.010609221477965584 land:0.010415108137366232 place:0.010399655452080119 esteem:0.009337949673530233 work:0.008993990842538664 now:0.008593781479256013 them:0.008489846330526286 day:0.008448021271808803 money:0.008371952622637733 interest:0.008221632363195723 :0.6558843378951706 +and:0.13091294339247458 which:0.07369008113976862 have:0.05254454868927616 the:0.05150431464331653 has:0.0442095642987842 of:0.04361542398401094 had:0.04127409950526128 it:0.026203117685342385 It:0.025657710863623742 as:0.025210255452328217 not:0.024163778845987745 to:0.023209627814761408 that:0.0179939553864913 I:0.017962449487523232 who:0.01766473818030942 he:0.01618465601663868 The:0.014631571312407292 they:0.012441222352486792 are:0.01053564466795056 :0.32939029628125693 +it:0.1177318554398345 he:0.11563899472986243 It:0.08346074237656674 I:0.07250638102262315 which:0.05279355307149072 He:0.05138632649242901 and:0.05087435087905212 that:0.04282874426491618 who:0.030986713518200034 she:0.02975637398237904 She:0.015487429005073966 man:0.012477910923116137 1:0.010511679433364085 This:0.010156672517200418 this:0.009627061505962419 there:0.008921718110911095 ho:0.008618297912100935 lie:0.008460351615796667 but:0.007673336315179534 :0.25910150688394085 +and:0.053158408109351456 as:0.03994449380461056 went:0.036461611718915134 him:0.03255209210095764 enough:0.02814755998130729 right:0.026793160790463486 it:0.025711041646109947 them:0.024791097713419422 made:0.024192220842303706 according:0.024128625450105717 subject:0.02351703905970487 1:0.02259409438374297 necessary:0.022472202695844226 is:0.022374508137205797 going:0.02215100055926067 not:0.02212966494210886 go:0.02154045112931163 able:0.020605345546407847 sent:0.019990089271923032 :0.4857452921169457 +a:0.10769706271698606 to:0.07565394622186913 the:0.07376588713477265 of:0.06682492782900622 and:0.059952961670014154 at:0.028116241495747617 with:0.022793701238350735 by:0.01844556222693225 in:0.017684045850771875 his:0.01449494393670459 for:0.014263505754509378 :0.013839391772933553 or:0.013749021165043776 as:0.013433610551166797 more:0.012562213809700113 an:0.010691948473453523 that:0.010620989719157344 was:0.010586929947441653 not:0.010165001050089552 :0.40365810743534897 +in:0.7247559915532588 In:0.1429943994695449 the:0.027085089727065793 iu:0.017138624158543562 and:0.010134633160738558 a:0.009972506651399923 of:0.008832715928899684 to:0.00575373850439389 under:0.004301939641297975 any:0.0036920873230107203 for:0.003328763929998943 with:0.0032920053618814824 no:0.003070150457853404 or:0.0029333012062948112 by:0.002472223899345494 lu:0.002293674120993507 that:0.0022579761065240973 great:0.0020586319104783078 this:0.0019290290892388113 :0.020702517799237354 +one:0.05972484939551113 part:0.04184420370602174 that:0.03522597888491265 out:0.029673015207427048 and:0.028435589272664187 day:0.028191059275744546 all:0.025088235614884952 sum:0.01832030024952039 account:0.01633815363606542 tion:0.01606760635399052 side:0.016017103585603498 favor:0.01541943081601423 use:0.015156050214906793 portion:0.014594097157765563 people:0.014307496916367787 some:0.01388372376196512 name:0.013422618899452043 line:0.013293032923210725 Court:0.012908498869770859 :0.5710889552582008 +that:0.22194188842659876 and:0.11243726516438793 which:0.09574133613516098 as:0.07668809885132453 but:0.04838370372444014 if:0.03938102513840542 what:0.03862406779068803 when:0.02573178969774014 If:0.023299388507438068 But:0.017210939631420643 whom:0.015269809375158792 because:0.014684605689775065 where:0.013549764214894976 than:0.012594256403837179 As:0.009718566260958069 while:0.009389243657621543 think:0.009109944562810031 time:0.00877627257843871 When:0.008549148238399262 :0.19791888595050172 +is:0.13273442315113998 be:0.12796468107158693 of:0.09802561036970772 was:0.08624087036913532 and:0.0663948213781231 to:0.05064898666731743 with:0.04404078726845341 in:0.04315642441020296 on:0.0340254073886531 that:0.029646996922955884 for:0.025401644492671897 are:0.025183422640132586 all:0.02042105220604342 by:0.01964958191827302 been:0.018904882169071956 Is:0.0168972652462894 from:0.01604674389088111 have:0.015936223728040263 as:0.013462148674144876 :0.11421802603717567 +of:0.3641759505843265 in:0.32474814900356763 In:0.08369331740933882 to:0.05551014162688044 for:0.02525204403861109 that:0.02353876584147742 from:0.01837153867035531 by:0.015318423464399848 iu:0.009454916928400958 on:0.00911545419997178 ot:0.007717577022481974 and:0.007135563816334915 within:0.005768508709724901 with:0.0057627822343630465 ol:0.005132502015265836 at:0.004997837184602256 which:0.00496796826192094 into:0.004910384889120641 upon:0.004509646490094453 :0.018918527608761188 +way:0.02888451314585226 it:0.024586435136818956 out:0.02139317394256661 them:0.01864954981377768 go:0.018360589525007194 come:0.015473742588838648 went:0.014512403913963835 enter:0.014477789959117743 came:0.013466153119017384 him:0.013287891192997505 and:0.012692008323590404 entered:0.012324248669133342 back:0.011336016920214572 coming:0.010204166481375053 down:0.009953761404110122 up:0.009846220731687571 taken:0.00983507628677976 fall:0.009750772045521276 put:0.00820360685478413 :0.721761879944846 +it:0.11590221650941986 he:0.09588927878950362 I:0.07777931116490384 It:0.06709727544818715 which:0.05879980016224526 and:0.03972175760089066 He:0.030492094141832213 who:0.027666615944890612 she:0.02163364244393636 that:0.016499235588611223 bill:0.01340485069979842 man:0.011601791641153127 body:0.010711870176085655 This:0.009524857058421512 1:0.009152165832550933 there:0.008515537876817863 ho:0.008303775015007722 time:0.008121777130260664 action:0.00789849037381791 :0.3602836564016654 +the:0.5762369273054212 tho:0.043628462660739574 The:0.042993873182539964 a:0.03208631269624899 great:0.024165839064627548 tbe:0.020507619304989292 and:0.01833712295530033 of:0.016508943355670956 other:0.016284749124911815 important:0.01254238129356415 natural:0.012254466713939993 in:0.011814786861187405 this:0.010836747162850493 salient:0.010346459848110636 large:0.009487325773885613 principal:0.008855984038922245 financial:0.008465103258154059 general:0.008202425960938552 rapid:0.008131801549177689 :0.10731266788881952 +disposed:0.3502233197684361 complained:0.06000153106466325 spoken:0.04303518884197845 dreamed:0.03891505149673191 there­:0.03037198687061606 dispose:0.026337234371672933 care:0.024913970101747323 despaired:0.02311004403319189 amount:0.022396054020925687 heard:0.02168869082990699 right:0.017790183508192538 part:0.01635034770958226 interest:0.016211636495540863 all:0.0161845339602857 work:0.015222645336345566 time:0.014987320081149341 sum:0.011850991935709716 day:0.011776355160923109 that:0.011661400996624154 :0.22597151341577612 +the:0.18409413575231146 and:0.08797414781668227 a:0.07471340988978371 of:0.06960199563363532 to:0.0537940420079956 be:0.03237478879145041 by:0.028501788073851772 his:0.028339141866470585 was:0.02592980262567843 are:0.02452038409502117 The:0.021117623729824335 been:0.01899045653409566 which:0.01772383100984375 were:0.016033696263044517 for:0.015952524287225534 is:0.015643791790538895 with:0.01559673339817107 their:0.015302521136918846 not:0.01491788004589866 :0.23787730525155798 +to:0.46913785023811416 will:0.12416997615439627 would:0.07447618264398367 and:0.06201002064241119 not:0.03567038543896609 could:0.02767318210395302 can:0.026274299843586778 shall:0.02314792091662351 should:0.01971548170126641 I:0.01786526176772304 may:0.013910332035199072 must:0.013543421329121983 who:0.010785097951806353 never:0.0085549059527738 you:0.008096864765817984 they:0.007221577062192255 we:0.00637320134327388 he:0.005803651576466359 might:0.004799691383144269 :0.039770695149179885 +sum:0.03352282876311118 number:0.028116684882597106 line:0.019995206059833036 city:0.01946514558931857 out:0.019275318828420953 day:0.01666865340772654 county:0.014872697538657208 amount:0.013254184849875051 Board:0.01252325449624941 town:0.012449555905674143 side:0.011663975251122375 part:0.011517157473718155 County:0.011460540331966697 state:0.011087331502382173 City:0.010878919191854432 purpose:0.01081028255427907 and:0.010297866493795984 way:0.009848747943663767 name:0.009522170936943183 :0.711769477998811 +be:0.1307439141513286 was:0.12057951463044395 and:0.07950330271875893 been:0.06175570179440384 is:0.05221197868164776 he:0.04946274177981529 were:0.03786785798173781 have:0.03663874057924651 had:0.029162785086818518 has:0.028487469855010227 are:0.028260216513673657 I:0.018131727153417224 being:0.01510868522780296 that:0.012634233740402694 ever:0.011678645329374151 who:0.010915506824245368 they:0.009436755829947905 it:0.00929866179296821 He:0.008957436524238277 :0.2481641238047181 +of:0.16429167129287006 and:0.15103331036619608 but:0.05916103866327675 know:0.05642866301829085 that:0.036483652352807296 But:0.03368357657414704 to:0.03325437639450407 for:0.029723800568339585 knew:0.02760994155554085 in:0.02277710618638467 or:0.020060151573032533 And:0.019440652326345953 see:0.019080705504038762 as:0.018804273622052448 with:0.018803208971092035 from:0.01786877721976003 is:0.016196279836187995 by:0.014972373317088405 do:0.014411239366331688 :0.22491520129171286 +and:0.06596237509547383 was:0.04783293855181179 be:0.043174415980290315 is:0.041151262199174615 are:0.03260186494707957 that:0.022614130131106344 were:0.020208973549075384 been:0.019304723759110607 now:0.018664079626166074 it:0.016804159808836847 not:0.016405814878241082 them:0.015782750610992314 as:0.014108350696189324 or:0.011761422568688505 being:0.010759924863573902 come:0.010187572982533375 placed:0.009790036260103255 Is:0.009658203324500873 him:0.009439732882108733 :0.5627872672849433 +of:0.1241540436165981 the:0.10482969060781422 their:0.08907240116184072 his:0.05745731907753116 these:0.05284979328628213 other:0.0490944884070677 our:0.045169089549414954 in:0.04515017140627662 its:0.03758323049294951 public:0.025686253650515526 for:0.025293392521669643 own:0.024284675881987624 a:0.023402725504552517 agricultural:0.02047977436821258 new:0.01845969673699914 her:0.01825120507660929 different:0.017742801143492352 and:0.015166673349019348 all:0.01461591857274045 :0.19025665558842642 +the:0.2796224539665458 and:0.09540834325610255 of:0.08509545323933976 The:0.03572827647795913 an:0.0335513766735772 their:0.033223766222380685 to:0.03132542112591249 a:0.027538085174772606 tho:0.026560001947877148 his:0.024854592976542533 by:0.024659185026458967 its:0.02201761917798404 be:0.020022969641000265 with:0.019247329083321604 in:0.018519655513389903 said:0.017356632031411353 all:0.015107718972169212 was:0.014461891416213889 have:0.01409317375458787 :0.160606054322453 +the:0.11919516938815296 of:0.07230453158552728 and:0.05781056740443249 a:0.043018564803886335 to:0.031305092790907506 in:0.020848713353460488 at:0.014270110001066288 .:0.012526810245749479 :0.012413283442322082 for:0.011719122709941797 by:0.010808400946589808 or:0.010404172990115616 The:0.01003576004804544 with:0.009811868184449042 tho:0.009295902015355835 was:0.008924239095331684 that:0.008672304223433876 is:0.0085591147338948 be:0.008335143826716943 :0.5187411282106204 +of:0.09129790931378902 the:0.07369883040827747 and:0.047842263382354346 in:0.04189055351593407 to:0.04045875475680249 a:0.03542341257202578 be:0.02020462051672066 for:0.01979292654746225 was:0.01760256398103379 at:0.017380150555488715 is:0.014984483003968216 with:0.014047653760730413 by:0.01374644383819499 :0.012670486581795598 In:0.01200961464556976 or:0.011563835749786333 from:0.011391516893522809 are:0.011273104484969465 that:0.010755276030689069 :0.4809655994608848 +the:0.10485527668699823 of:0.06859957035489403 and:0.059457490555924905 a:0.048703285787647106 to:0.04734068976278901 be:0.029297641509619252 was:0.025703479776142638 in:0.019220120536964216 for:0.016779077701585907 I:0.015845568755551626 is:0.015576839679439644 that:0.014200005982504267 his:0.0133408221806836 1:0.013060634877650242 on:0.01296990074165129 he:0.011999383203992192 be-:0.01095327879175651 were:0.010390641257340558 from:0.01005485595529554 :0.45065143590156925 +to:0.2801670225621465 will:0.1447945710217006 we:0.08052312877329229 would:0.06518547623306867 I:0.0608955677450646 you:0.044070364214334794 can:0.04009759426978675 could:0.03832989421825519 not:0.030948640591202857 they:0.03045967490523134 and:0.025804504164965738 may:0.022218824601749523 should:0.02188638481043083 who:0.020820624917894708 We:0.019137862616133254 must:0.014488294536018806 might:0.008806665658303217 cannot:0.00833631396787688 They:0.007408060624394487 :0.03462052956814898 +I:0.1977969096965867 he:0.1614817038724021 they:0.08925735536620132 and:0.06307383219343739 it:0.05900353720084781 she:0.04155409804222347 He:0.03969293238192868 we:0.038465288645630875 who:0.03716257919196561 It:0.025223223923087557 you:0.02301967756998654 which:0.020014191656238793 but:0.017418527536197322 We:0.016627941732373294 They:0.015881330273558914 1:0.01402597697483227 ho:0.01311708754678042 that:0.013082005457675502 She:0.009522013811523525 :0.10357978692652191 +and:0.0746213003748358 together:0.06251360361245724 it:0.022939359095909467 covered:0.021068426596571252 them:0.02001656675747242 connection:0.017826132229143157 filled:0.01756663358546603 him:0.01707431779045997 up:0.016584578129207366 charged:0.015351534711985875 do:0.013888239786824576 away:0.01379587063032194 deal:0.013760341264977589 connected:0.012717942235876184 one:0.012608968331270991 but:0.012382093222020272 out:0.01143702304381188 met:0.011339519603284033 provided:0.010712083419905155 :0.6007954655781987 +United:0.491997397444031 the:0.15874346338395723 The:0.02516699611839859 Southern:0.01733006764410767 Uuited:0.015307848009468744 of:0.01516358482883424 that:0.014223941209085574 a:0.013078411034783792 this:0.012817773157292423 tho:0.010723385965160759 Confederate:0.009274657722571201 said:0.00808552604973118 and:0.00779405502099836 his:0.006224164966518176 A:0.005237704266719863 I'nited:0.005225495731106009 ted:0.004864987449379022 by:0.004462894731519564 other:0.0042779584765700925 :0.16899968678976654 +the:0.17037318738716817 a:0.13906959706344948 of:0.10891182444910279 and:0.05526980184301986 an:0.04179085816931777 to:0.03736718062574472 in:0.02842687336431655 The:0.025345490416871175 that:0.02331939187592769 at:0.01791743470657758 as:0.016761963891246963 by:0.016375479712899915 with:0.0140111224264593 on:0.014005190876323785 from:0.013152904238529724 tho:0.012762583808452209 any:0.010852735630776138 his:0.010775290716162927 :0.010386803555628946 :0.2321242852420243 +of:0.28767355066866834 to:0.08775711267569858 in:0.08678131196995101 and:0.05160598694501188 on:0.04646139928102899 by:0.04519522654900943 for:0.044547789071328545 with:0.03396756772609607 that:0.033699232901107726 from:0.03075346596941143 at:0.027039283056790858 In:0.021061449543044047 as:0.017514234937992545 all:0.012543839382496166 upon:0.011844431150487573 is:0.00998972746569266 was:0.008814315973987914 into:0.008557199930727406 through:0.007781895704231326 :0.1254109790972375 +the:0.5681929001981055 and:0.058341300218360044 The:0.050517431147561694 par:0.03558451870479304 tho:0.03031628017405916 of:0.029327052736882755 a:0.02630399760150437 in:0.025840289303093088 assessed:0.020727208841638797 great:0.017949685966943643 total:0.013142577052345812 tbe:0.012400328290690269 general:0.010155108133404983 full:0.009521593807688739 their:0.009161872309083777 or:0.00879859359247238 an:0.008358819315551973 all:0.006594874980327567 its:0.00597797571007994 :0.051787591915412476 +of:0.2396963545985778 and:0.1340850453528476 in:0.09087586905492041 with:0.09030165607084262 for:0.078078881454678 to:0.07417816567364156 that:0.0430629813834444 by:0.02571584778711474 or:0.02191120130383108 from:0.018972608627444435 In:0.01670008579683974 but:0.013209142950581865 as:0.01227352294819944 all:0.011746611757571237 upon:0.011454882769337376 on:0.009769745681395388 made:0.009457770397052468 pay:0.009026293927628298 after:0.009018129155665163 :0.0794652033083864 +the:0.45772833760230913 and:0.08934161860881 in:0.07365354176221774 of:0.055957620828732915 a:0.03184852878902338 tho:0.02497250722561177 heartfelt:0.021084664176514074 The:0.020450121659750093 In:0.018141736573076973 with:0.01625731672539486 other:0.015768880581298654 that:0.012995463958011174 by:0.011504945416047152 any:0.010277169781043045 some:0.0089761524882204 tbe:0.008692707081259694 this:0.007469620015870174 as:0.007317285889796482 from:0.00687353114491694 :0.09968824969209537 +the:0.2676817294229902 of:0.19744412315422058 a:0.06924937554634275 The:0.04014161125938457 their:0.03636809599388079 other:0.028291555885745796 to:0.026131385029035302 this:0.0259023271327376 our:0.024557940930346665 tho:0.02378974078201859 good:0.02259842368602428 its:0.02247603082790458 for:0.0217893773639915 his:0.021483481292279866 and:0.02146117215340901 in:0.020081070141480063 great:0.01646918404795339 some:0.016004596656606414 with:0.014779398726458195 :0.0822993799671899 +the:0.44031977776762926 The:0.12457956196275545 a:0.06949611236635396 and:0.037503213358892014 his:0.03346718648892787 of:0.032365792458070086 tho:0.01930757734469795 A:0.016910569900992434 or:0.012902556658888344 our:0.012621850826106985 my:0.011966516160349043 in:0.0113065034156214 their:0.010536091382344695 by:0.010429562249612447 old:0.008486654729103652 her:0.007696655657230829 tbe:0.007689612170527161 that:0.007199201410415456 he:0.00627224143371814 :0.11794276225776283 +of:0.24637860222141955 and:0.09749235876573047 in:0.08507541969951721 to:0.07764199411957477 with:0.06843612135195806 on:0.05955782225629309 that:0.053811470926716405 for:0.03519061438672273 by:0.03172184852683187 from:0.03034348184500488 upon:0.017917264060603393 at:0.017348808504073505 In:0.016944439097009427 all:0.013728956365511795 as:0.01259446002638911 over:0.010878254934722217 into:0.010515828389360823 up:0.009826848488085026 had:0.008642528924282255 :0.09495287711019341 +they:0.15041264998433218 we:0.07688963080785832 there:0.062429125048428284 who:0.0547243022268461 There:0.04656099345116526 They:0.045641199995276764 you:0.043558314834790474 and:0.03991446476738674 which:0.03755599678977436 that:0.03288396852541948 We:0.023225274451279726 men:0.021925547550843576 people:0.020288880830286255 You:0.013975669814496439 them:0.009442100452941455 I:0.0065883745843522915 as:0.00591605145905529 children:0.004838139597617839 wo:0.004611935808301979 :0.29761737901954716 +and:0.07045884146269414 made:0.05570476840249424 owned:0.029193836820837656 provided:0.022123217298218485 or:0.01850458241617533 that:0.018480937776587995 occupied:0.018080693135232702 ed:0.017529696613008575 paid:0.015855937158021163 done:0.015067217099434309 given:0.015018218329315058 them:0.014352134098091433 up:0.014257628546288259 him:0.01364565449155229 delivered:0.012812921915135455 followed:0.012516419575878462 held:0.012068742486667063 executed:0.011860067970581697 accompanied:0.011401793554533036 :0.6000666908492527 +;:0.03397196057873933 nothing:0.029664862572428216 is:0.01685328663232016 it,:0.015202895306189726 and:0.01320951165885326 them,:0.010660212426959142 anything:0.009602301184602804 him,:0.009125439220543595 time,:0.008639100095831858 was:0.0074795423389692525 are:0.007071621634823047 ,:0.0069202663959274605 to:0.006295141393173781 be:0.006068077249697382 have:0.004647666288371227 none:0.0046038129118243475 so,:0.004574664665122774 all,:0.004450935874672603 know:0.004389496342727182 :0.7955692052282229 +of:0.28767355066866834 to:0.08775711267569858 in:0.08678131196995101 and:0.05160598694501188 on:0.04646139928102899 by:0.04519522654900943 for:0.044547789071328545 with:0.03396756772609607 that:0.033699232901107726 from:0.03075346596941143 at:0.027039283056790858 In:0.021061449543044047 as:0.017514234937992545 all:0.012543839382496166 upon:0.011844431150487573 is:0.00998972746569266 was:0.008814315973987914 into:0.008557199930727406 through:0.007781895704231326 :0.1254109790972375 +and:0.03868242960999506 as:0.031124813427855922 went:0.02352509775927722 him:0.02196555539050794 them:0.018760608639018784 up:0.017985449426794205 is:0.017894175620344187 go:0.017174904667157563 able:0.016756848979943888 going:0.014481672239490295 it:0.014128375989346808 was:0.013277058274565138 time:0.013249953793837373 not:0.012469887553778763 began:0.012465717758716884 way:0.012105610030480113 back:0.012090864562211581 right:0.011941707822828511 amounted:0.011564315359310868 :0.667354953094539 +the:0.14749836954506126 of:0.09154933537057022 and:0.06337307408307813 a:0.04910970259171302 to:0.04685202005935509 was:0.024955363471651667 be:0.02434688221821328 in:0.019777228193141906 is:0.019734182520719963 his:0.01650123437459838 Mr.:0.015818858562251698 are:0.013108043259205273 not:0.012518472196002403 by:0.012117438720010651 with:0.011611762166834991 been:0.011551125429232954 at:0.011420562773708464 he:0.01130648508471511 I:0.010911273989111623 :0.3849385853908239 +one:0.1028303141280697 part:0.05963429477052991 out:0.04766456937681193 some:0.031418679026461914 members:0.030764490253327767 side:0.029940657362655835 portion:0.022063658796890564 office:0.020457735219956013 member:0.019726706386316174 end:0.019666887540649894 tion:0.018667441728710307 parts:0.016814747270460957 people:0.014112771422418794 all:0.014072739582212475 any:0.013183573287639892 One:0.013083578354183906 that:0.013024335602903442 account:0.012482348155001894 many:0.012077825070275192 :0.48731264666452345 +and:0.08802847857673357 him:0.052172970075824145 was:0.03542681819451724 man:0.030431362773220866 it:0.029288088378781416 up:0.020708279568259668 that:0.020571036336634863 found:0.01804151815880068 made:0.017726654982860655 out:0.017249066649085414 time:0.017248369497211622 is:0.0164635781145802 them:0.015112757506419695 confidence:0.014637843296866227 but:0.014176928512072494 himself:0.011931876492387125 or:0.011775222365452837 down:0.010882539895529912 put:0.010458276845277415 :0.546668333779484 +of:0.3727492601013487 to:0.09696676971983091 that:0.06873151438811523 in:0.062364102384191746 and:0.060794206691679446 for:0.048859610848952705 by:0.04050731031882083 on:0.023514225077209776 with:0.02345757587335274 from:0.02256362535681337 as:0.01595414654823162 at:0.015317415720437414 which:0.012914277364716089 all:0.012843927440512147 upon:0.012348567716405637 when:0.009726789068931561 In:0.008687741463271632 against:0.008228053845078078 before:0.008164852863694129 :0.07430602720840625 +a:0.35521066329625434 the:0.319834405165342 A:0.048383684048110005 and:0.03132375631489731 The:0.026713892872898208 very:0.020025137345196262 was:0.018780664803137434 is:0.014909905596825238 his:0.014098153502469546 tho:0.013074020961300024 are:0.012292101756637615 their:0.011800550811457833 be:0.008298135218487768 were:0.007938914161984155 her:0.00784741070798302 our:0.007462878226184388 its:0.007322281105011959 of:0.006645280241833963 more:0.00633892733002975 :0.060699236533959255 +the:0.5440126478637666 a:0.1035283270770675 The:0.06648686523768474 tho:0.03127538418672943 this:0.01653000228151036 tbe:0.012037519370633588 and:0.010100021974975538 no:0.009924937446613992 any:0.008115417578484734 large:0.007623721629999812 great:0.007587394127352346 every:0.006634003457680363 regular:0.006598757066446859 whole:0.0065186730830049154 our:0.006026269631151726 other:0.005864548626901424 political:0.005857668301230186 good:0.005698974331826891 A:0.005055135856572784 :0.1335237308703663 +and:0.21629063881149946 as:0.1012061614005566 that:0.09964440902021934 but:0.027724757940681525 or,:0.022204426438607386 which:0.017102736689986436 or:0.013577610248792654 which,:0.01301051889190983 time:0.012510101693370537 it:0.010552358197291932 But:0.010123469419063858 so:0.00752977021714444 than:0.007330990171250766 him:0.00729559903447677 and,:0.006102282466522759 when:0.006008560057211606 have:0.005947814146910081 even:0.0054039067589705505 them:0.005164941195628547 :0.4042689471999049 +:0.03746435427756284 of:0.013628787344488675 as:0.011689821959727028 it.:0.01120396315997913 and:0.00933468606415103 firm;:0.009016187273192222 them.:0.00862656879317663 .:0.007695892839572222 at:0.007275880898200948 steady;:0.006638160748640587 ;:0.0065351136749295 that:0.006319231262236884 the:0.006285213189671255 in:0.005678872489899651 day.:0.005642511591087073 in-:0.0055281717612974636 time.:0.004501885343258299 :0.004486719271424771 years.:0.0041889193699794205 :0.8272590586875244 +of:0.09180327590091512 the:0.08704392345264056 and:0.05028553387910976 to:0.03971470743914892 a:0.033346211002626726 at:0.025904757386540782 his:0.017851249766701414 in:0.01742950073752589 is:0.015513218102514145 for:0.015233738043563084 was:0.01344727231219973 :0.013096887391641368 .:0.012989086604713972 I:0.011604169198481697 be:0.011583875001198117 1:0.01055199628515836 by:0.010541636001383357 Mr.:0.00920364089982067 their:0.008754647324319735 :0.5031006732697966 +is:0.19804564933745128 be:0.18745981805448012 was:0.10300668865254606 it:0.09489384574857511 not:0.04747621559984533 and:0.041875446473198415 as:0.03627452808425565 the:0.035905343787894624 are:0.03511841164106314 Is:0.022712411953114832 been:0.02201174541708202 deem:0.01900538688169957 so:0.01638639065799243 were:0.015646863949778586 It:0.014513456698738237 absolutely:0.01317109556051846 became:0.01121232245416798 deemed:0.010430366605663734 being:0.010039529947513027 :0.06381448249442141 +the:0.1708406620304535 of:0.08373381483086771 and:0.047391886704411336 a:0.04182066087200472 The:0.030736467189466238 this:0.020901556147887915 that:0.020263014752555517 :0.015211945388216812 or:0.014895266199616623 to:0.013148259114370744 said:0.012653641261698307 in:0.012540668278142413 at:0.012383181789311252 tho:0.010735344190746565 for:0.00960855193534007 .:0.008541761431248605 Mr.:0.006773028325121711 his:0.006768418068051386 other:0.006177098385449881 :0.45387477310503865 +that:0.2509585090048969 which:0.08881182984551328 if:0.07027316497290699 as:0.06508561456668735 and:0.06190291589470667 when:0.051836060131931753 where:0.04375732552357888 but:0.037022140598042375 whom:0.03430965416588371 what:0.02794002417347712 If:0.02203686351252106 because:0.018183318005097784 after:0.017855748076847498 time:0.01595589337890137 before:0.014861264015734078 though:0.014569815726977688 until:0.013683724452392987 When:0.012489711680144636 said:0.011723784677230006 :0.12574263759652785 +and:0.05954826800200673 able:0.04668638322633569 order:0.044604147860743466 him:0.0386265639301963 is:0.037952755253664684 was:0.03608034278118964 time:0.035788742053291994 had:0.03422850577743171 as:0.03375615948603487 have:0.03325378431854452 enough:0.03265489613643173 refused:0.03217993653985935 willing:0.031954089052473225 necessary:0.029379811072967266 unable:0.029231642185726107 ready:0.02728452641965818 want:0.022311327375082984 desire:0.02150886685695491 going:0.021449676184255563 :0.35051957548715107 +the:0.20605763591453846 a:0.12316180611824597 to:0.1034466873960199 of:0.10010358197545484 and:0.05398802690695716 for:0.03497271566226993 with:0.031157064049458554 by:0.02207955647764194 The:0.01808321891653925 old:0.01354798880956688 tho:0.011859198727277106 free:0.011595725453203315 one:0.011001074767769702 prime:0.01026356634604725 his:0.010038492817984607 all:0.009994279353082038 her:0.009692144770301881 at:0.00946483898031195 in:0.009457308317042038 :0.1990350882402872 +matters:0.08914737798953554 and:0.06556943900938897 are:0.0607383552382564 is:0.04025240484240516 was:0.030520628289187692 not:0.02466001083807639 were:0.01997819091005137 be:0.01976339017226597 now:0.01844639197720481 matter:0.017422844226652915 in:0.017070342663053083 but:0.016570368824513175 or:0.015237645849562161 been:0.01293598875019826 question:0.012230780523079505 out:0.010836738105429386 them:0.010675376762789235 men:0.010548802268016329 questions:0.00973634647823599 :0.4966585762820977 +and:0.20483138073947 so:0.08110428066958485 as:0.05194739061858961 to:0.03707032165106705 but:0.03392486033786179 fact:0.033465405891434784 say:0.03065400830957192 is:0.030228551373628294 said:0.02923896425214351 know:0.027123723366695367 of:0.026628218515177444 than:0.02321814827912664 for:0.018044895451297515 do:0.01716437656303916 believe:0.014058717987339115 was:0.013114517783094215 all:0.01228826272095437 it:0.011730073454829152 him:0.011614453686413336 :0.29154944834868185 +the:0.13425491980948362 of:0.06834859562093908 to:0.0621539230974967 and:0.05915172639193487 in:0.02611526887740742 that:0.022107611375683137 as:0.01893351935415803 on:0.01884457845645652 by:0.017037394188456616 a:0.01680686168527222 or:0.015702699756574855 :0.013142874833291629 for:0.011981365210096347 said:0.01164184594387974 in-:0.011176645972598346 from:0.009830363156307448 .:0.009429743910695147 tho:0.008852333444573543 with:0.008843663784633866 :0.45464406513006084 +the:0.26588963979737684 a:0.12468977914679659 and:0.06327140225800452 of:0.05917608503109405 to:0.03524254722144485 in:0.024875940249841758 tho:0.016896097322211725 The:0.016047610726178916 his:0.015855734463775577 an:0.014632843729632977 or:0.014252066677059522 for:0.012809987547354799 their:0.012475391191490881 that:0.011788902713474589 this:0.011506267876495304 with:0.00897263742517613 any:0.008685210810323488 tbe:0.008264422495900769 no:0.00815192913073775 :0.2655155041856289 +the:0.16252600296301706 of:0.09943636141121946 a:0.06972061183976204 to:0.05786006055271911 and:0.051901321414837935 be:0.037439623662398995 in:0.027926045399370266 is:0.026607440308126628 not:0.024117671416066706 was:0.023783954316327426 for:0.02116560723292378 or:0.019279992189698437 their:0.01878366798909115 his:0.0183649522149638 been:0.016598750070275194 are:0.014734104368434184 at:0.014726030078833321 no:0.01294859103405944 with:0.012367286558919744 :0.2687119249789553 +and:0.0935353777867078 that:0.05953849837588239 time:0.03893036673955211 made:0.033237569170103384 them:0.022487257590821437 him:0.01978480922998164 but:0.01841617711704199 or:0.017806766776771347 up:0.016955431330044974 times:0.015684650413019127 it:0.014996816829898807 out:0.014341889676339899 place:0.014187070583522681 days:0.014118843283785687 which:0.013006512335920503 held:0.012695408898157623 done:0.011543349343682658 day:0.011499307919487256 all:0.01119767424956836 :0.5450362223497103 +and:0.05810907402186043 is:0.04448720130850505 was:0.0345681080910384 be:0.026008049437243934 with:0.022263681213637636 are:0.021275138954610345 of:0.01882436395698663 as:0.018809483057135784 by:0.01822879456924663 have:0.016809134710942995 .:0.014338009874402183 -:0.013378538050563906 for:0.012497592198816604 but:0.012119385890436023 had:0.011807178713061296 one:0.011790007868619013 :0.011346486313758257 in:0.011090755175369366 or:0.010166870992535862 :0.6110821456012296 +to:0.1444643115847 the:0.11042716199527632 in:0.07732191875369497 and:0.06789630810358388 of:0.052083857135071875 an:0.04329460482861911 a:0.04208939496694052 by:0.03961528246219734 or:0.02916090807410541 his:0.028953450431152314 In:0.022785295458323133 their:0.02248013852329756 at:0.020431226920572677 from:0.01910030475424558 first:0.018489395049631548 its:0.014114119458706324 her:0.012201292779133994 great:0.012124122536307846 on:0.010423476235589715 :0.2115434299488499 +and:0.2132017975237446 that:0.07422592461110214 but:0.0730254067384115 time:0.039294978614029814 But:0.029644179194774495 And:0.021097773982708797 me:0.01940366799418315 ago,:0.01614914923770343 even:0.014283155407369482 as:0.011891128913303895 or:0.011811630401657013 it:0.011221683718581892 and,:0.010949530980612838 come:0.010565805939691334 ;:0.010288927728275537 days:0.010114257204327091 day:0.010112917394407762 morning:0.010029400791474342 only:0.009458341948235992 :0.3922303416754049 +the:0.10354083092369416 and:0.09492597980676593 to:0.08555464518337601 of:0.05905570051407064 a:0.036826211932097015 in:0.02911945524699233 will:0.018837304083544136 I:0.01865632764973385 he:0.01641097019523488 it:0.015609321355157002 is:0.015489477476658 :0.013624298323450735 Mr.:0.012808007210661788 was:0.012724906322856635 not:0.012694599892751533 which:0.012258655571876541 that:0.011807360004763113 for:0.011594534466968735 In:0.011473552729722107 :0.40598786110962487 +the:0.12726855910616955 and:0.0892959780159441 of:0.062229337879632314 to:0.058292991969480845 in:0.037889522208997196 was:0.035486090111862774 a:0.03277831520841599 be:0.02993909980507852 is:0.021492638467572805 been:0.016319288425974923 are:0.01622912479566914 were:0.01571120940653339 at:0.013800451447349702 by:0.013390998935139781 his:0.013046404338315144 an:0.011587498063993411 he:0.010436524486303292 not:0.009967845652912184 or:0.009888058570455908 :0.37395006310419904 +his:0.09597373329629078 the:0.09235252282646612 of:0.09021040899193665 this:0.056043264801185676 other:0.055847345308268084 their:0.04425454051812891 her:0.04159625441892296 public:0.036105112628676626 or:0.03342119983935253 and:0.03179718814395461 my:0.030290658353919024 our:0.029442541299698952 a:0.028028543351232477 your:0.026687427420087253 that:0.021535779696745798 such:0.017785817663288232 two:0.016895361461499572 one:0.01661238271477307 own:0.016057908719042387 :0.2180620085465303 +and:0.15759621046335076 annum,:0.1459175785198376 on:0.040577733494665556 of:0.02844961244017058 day:0.014790760176535573 or:0.010998092102424317 that:0.009881131045723844 sale,:0.009327868925295281 2:0.009119803904423513 in:0.007580712555309382 be:0.006932733575783119 annum:0.006861243558113931 each,:0.006616790286573516 the:0.006506144007684971 dollars,:0.0064616080271182675 interest:0.006053822094399697 hundred:0.0060479126857746705 as:0.005609229770422526 are:0.0055010395665327635 :0.5081699727998601 +J:0.13629797604863014 W:0.09887578852230242 A:0.06853659461804507 C:0.06819307751407343 M:0.06113169577762824 S:0.06048783206595023 E:0.05361681073045747 F:0.04293380438558473 H:0.04120802339718424 L:0.037970502552215867 P:0.03659966393230147 B:0.03617857179064052 T:0.03308624525820886 R:0.031099865240574093 D:0.023741992673469662 O:0.017089736185155698 N:0.01698275002600061 K:0.015709763125086453 G:0.014094636500544789 :0.10516466965594602 +of:0.09119606535510634 is:0.08042841367235073 as:0.07438493453492954 in:0.07369946005062389 with:0.06307506592166133 and:0.05444220599901995 for:0.052693631159464224 to:0.04972256116902269 was:0.044491464653752456 such:0.040909981772790927 that:0.036872200464027616 have:0.036269149614626114 by:0.031780400252041055 be:0.025990429137365295 had:0.024683856994869555 made:0.023304310971716646 not:0.022273507118219422 like:0.019621905275857176 In:0.019367652642101378 :0.13379280324045364 +came:0.07455541183042615 went:0.06994304635321337 sat:0.062221987926925564 go:0.057466198102811034 come:0.05299260120994372 laid:0.05209891863387798 sit:0.046256070926600903 it:0.03508543715161329 broken:0.033874242760946784 and:0.03336053755989424 knocked:0.03080000916983033 them:0.030200559595583997 him:0.028030669829117668 cut:0.02646672084430786 run:0.0164020119825726 settled:0.015718369209868785 torn:0.015461630765059036 set:0.015297142450111245 going:0.015263778763196583 :0.2875046549340989 +of:0.2562968632002804 for:0.11809078306206341 to:0.11729946958652278 at:0.109418813904206 and:0.053055738400971414 in:0.045859686522424566 that:0.0275262608402298 from:0.024833143000018706 during:0.023991468269012647 by:0.023264542261832097 with:0.02027878706679721 on:0.01958644158651087 as:0.016604606084286933 At:0.016319452680512932 all:0.01595075657548377 about:0.014321382189765664 In:0.013169979506921633 over:0.013052305174227842 until:0.010123564658311648 :0.05995595542961966 +the:0.10336983496615278 of:0.07543688350053557 and:0.06641644690227996 a:0.04455859280514038 to:0.03951391183407334 be:0.030966861721460015 in:0.030146059226641746 was:0.02880487163345596 is:0.016456555486564176 :0.014268559619302467 at:0.014138495910890675 for:0.013691162369318591 or:0.013653239614092283 .:0.011458704682463305 Mr.:0.011455809661350676 his:0.011360920796348824 are:0.011169575397813998 were:0.010356811134618766 been:0.009941051066127606 :0.4418356516713689 +they:0.1422193600349239 there:0.05849232705230136 and:0.05364794518597344 who:0.05060073302875137 we:0.039796496029532724 which:0.03941212764794604 They:0.031471712802734836 There:0.027277972023637694 that:0.026476974477609803 men:0.021156313901298206 it:0.018650113321758758 We:0.01150603832299857 you:0.011134597598392589 I:0.010540813851838039 people:0.010280567277705255 them:0.009160186773977539 as:0.008841656067636882 but:0.007526879745621775 whom:0.007466233559027055 :0.41334095129633414 +it:0.17415695299507217 It:0.11891155727867181 which:0.07365354838481436 he:0.05278621298034836 and:0.052455163462033355 that:0.04779863030441497 there:0.03836913956773712 who:0.027935691250516252 what:0.022806886251769864 He:0.018379097711806562 this:0.016230468017935613 This:0.015974795738790782 as:0.015558432565755875 There:0.013825069119859148 object:0.010274091604654605 she:0.00995413027320304 plan:0.009614631966920612 man:0.009582934530166981 notice:0.009234485808389377 :0.26149808018713916 +the:0.20614037874648866 of:0.18431956041969774 in:0.1754436957355019 to:0.06230723998660274 In:0.044528729143464355 from:0.042130736765694524 and:0.03199621340186661 The:0.03131481922550988 for:0.028710244476684806 at:0.020513862308363082 a:0.012468190303082239 by:0.011221882226127083 tho:0.009442327394344991 :0.007891365231904104 that:0.006945806463137829 on:0.0056555227899618265 with:0.005170206535625908 iu:0.0044666756043005365 ot:0.00403926483333437 :0.10429327840830685 +of:0.23066659279524798 and:0.12825829719225365 in:0.10973573059601796 to:0.07404890193203623 with:0.06976141193941349 on:0.043422524084775045 that:0.042230414366885974 from:0.026871620933486922 by:0.024895401354711324 all:0.02038559361702419 for:0.020050754013876317 upon:0.018258213698361156 In:0.018194508000389235 as:0.01805522907074847 made:0.015962683917424503 at:0.013721812324035758 up:0.013408581592495335 or:0.011133198249008462 make:0.010730589431576048 :0.08920794089023196 +of:0.12555295718757709 and:0.1239158788418275 the:0.10728799898729588 as:0.08046739042133005 a:0.07355052409332095 such:0.03059149014542176 his:0.028333927771297254 to:0.02746729155923937 their:0.026466976566275505 so:0.023711865400967553 is:0.023644853318854638 or:0.02223820546242993 be:0.019533196103172775 other:0.01909509183331772 are:0.01876078393389693 great:0.018328830960263467 this:0.01573735430793185 no:0.014408433134598265 that:0.014281854006906628 :0.18562509596407487 +to:0.3442983266094057 and:0.08497923981726971 not:0.049598593797404486 that:0.034264546695320926 shall:0.027134895164554695 which:0.02463288052109977 may:0.020061567465959867 of:0.019799673480898 the:0.01538938424771092 will:0.01329561258769953 it:0.013252591913701367 or:0.010854355449549947 in:0.010169798884195034 who:0.008824930153270696 would:0.007460449601435987 for:0.007269902178932784 should:0.006881429998407803 It:0.006749827115977652 only:0.00657613606388431 :0.2875058582533208 +the:0.4946364593420146 of:0.13745105683828768 in:0.10914179324706773 and:0.039151098686130606 for:0.022559925827700993 to:0.02189684785045289 In:0.017205679645189563 tho:0.013879693316524106 our:0.01300591032666672 or:0.012352568740357558 their:0.01100454337061272 his:0.009399193202467888 that:0.009089330877654633 on:0.00662972859844254 The:0.006430282984612016 by:0.00624902007543034 with:0.00612587145327612 her:0.00550922431111347 its:0.0049679972773254075 :0.052313774028672405 +of:0.14450912560055607 the:0.11498824754503587 and:0.06316000271676746 to:0.04495978152825551 in:0.01680521364654623 by:0.016036165392321007 said:0.01517866957399639 Mrs.:0.014810811228061441 with:0.014350277766695146 his:0.013985727367330022 on:0.01344004880807204 for:0.012422524223979518 :0.012343996115299901 from:0.011972394682043565 a:0.011764966264383 was:0.010985744265936074 that:0.010129269987108827 The:0.009902697568524285 .:0.009436922688835624 :0.43781741303025207 +the:0.2808172342755585 a:0.19917491088532752 and:0.07642937752576932 of:0.05416006388626149 The:0.050064877214965595 other:0.03877588413511958 his:0.03446153383352649 all:0.022681527444794066 this:0.017284345413912522 tho:0.015301738711850947 her:0.01417821160163364 their:0.013190577764995739 little:0.012539064272720318 some:0.011470841012949432 or:0.011313744904984522 such:0.00959722570368154 great:0.009245116607163768 small:0.009200799060414848 more:0.00907970938986521 :0.11003321635450497 +be:0.42889885608947154 is:0.09036155913988073 was:0.06632352086949399 been:0.057612675232788235 are:0.043330097410156726 not:0.03903802593524563 and:0.03628048530123498 being:0.029744050883256285 as:0.025430349244436014 he:0.025427014423150207 were:0.02363702601076828 bo:0.0204532554551006 so:0.019546830507640743 now:0.012969604812218757 Is:0.009593740213435302 ever:0.008494181656454996 well:0.0077741866864193265 much:0.007666494404800217 generally:0.007567990838447081 :0.038850054885600324 +and:0.09719502617921735 was:0.033069507682185056 look:0.024688128130597325 is:0.024274604158003203 that:0.022752582254661913 one:0.021449850423337562 be:0.02129252771189738 it:0.021252898229998943 sold:0.019239207074984496 in:0.01825110331942652 held:0.017179077695832545 made:0.016926429123622706 are:0.01652136013438481 or:0.01571044673991389 but:0.015697578650759915 out:0.01553745091098838 sell:0.013785317805926395 him:0.013035998809081555 Beginning:0.012388864721875987 :0.558752040243304 +to:0.619962254339821 and:0.045082784614605145 will:0.04276755420470122 can:0.026980805031500854 not:0.025683826556880673 would:0.023621854735483797 who:0.02325214181495491 could:0.020439648307540463 we:0.018446431581721778 I:0.018208206912838563 they:0.01807760786736523 must:0.015181610433750587 should:0.01227803325286529 We:0.011696172256675356 may:0.011662634703266627 shall:0.011281745615082994 you:0.011038064659470478 cannot:0.009173455315681839 never:0.0064126630381394 :0.027752504757653736 +the:0.11848930356831457 of:0.10165017766555497 and:0.08828477417729132 to:0.07488249335291985 be:0.021631845244382917 as:0.018338716542782737 a:0.017187441086564403 is:0.015739750130046287 in:0.015267056269259165 by:0.014709084041897387 was:0.014701533121531855 on:0.014541161944955317 that:0.014362465662230369 or:0.013494597190038534 with:0.01248530818424795 The:0.011340678938548123 :0.010975968254638941 from:0.01010329043574982 for:0.008608247003692143 :0.4022061071853533 +in:0.3132001227090035 of:0.1765664243113432 In:0.08502635337013795 for:0.07206161960799888 by:0.04860250853911249 and:0.04227020550212275 that:0.03801320927345037 to:0.03154048588490377 with:0.022639899847945927 was:0.017361892844574053 from:0.015930274486121995 on:0.01188350986333163 is:0.010724968582787034 have:0.009385288277462898 had:0.00841955547484557 are:0.00728608353914129 or:0.006485600946630628 iu:0.005804991582461652 through:0.005359484375381093 :0.07043752098124333 +and:0.08995317707915026 to:0.06844710404109794 of:0.04605142056172993 the:0.04074574508561307 which:0.02479116931334353 that:0.023764822140213245 re-:0.020841117231308055 in:0.020803825395358622 for:0.020278423301550053 :0.018417753428486977 not:0.016860793136637672 con-:0.016444405871234195 is:0.014386481772210856 or:0.014080680914153714 be-:0.01352268143271276 I:0.01317002660943805 was:0.011429878269381662 dis-:0.011196807025842847 he:0.01113106290024311 :0.5026826244902934 +was:0.18448524755064646 be:0.1587800213127685 is:0.10006642238530948 been:0.05510734639189873 have:0.05019313151439553 were:0.049573368639298905 and:0.04707040473019004 had:0.041714331745718536 well:0.040791827347108615 are:0.03984518419418691 has:0.03967193526887836 being:0.026694763312556557 Is:0.016408098344392403 he:0.016144633510906753 it:0.01495341965094558 not:0.013700188532057931 bo:0.010576400931973038 ever:0.007388488766873088 they:0.00696184595423983 :0.07887293991565471 +the:0.34055574657959115 of:0.07454200798332673 and:0.06386366686874895 a:0.060203098285460575 The:0.03918321527174054 tho:0.02420082961431501 to:0.019207886878583776 his:0.01652259123184174 their:0.013673255898427557 an:0.01353280987593667 that:0.013390779356934479 with:0.01234364865172056 by:0.011731090819247935 tbe:0.010536147886525245 or:0.010124612400426565 for:0.01003919781590901 Mr.:0.009664765104570247 in:0.008435841536718792 our:0.008431367463773962 :0.23881744047620052 +it:0.11857892928876056 which:0.10419954526017984 It:0.10229720510101595 that:0.06796245048918885 who:0.06088908826247786 he:0.060731706658395446 there:0.047718276913133226 and:0.0298646407467943 There:0.025721626378001235 He:0.023765504777663107 default:0.02149030696489031 as:0.019132676760165265 This:0.015088553278066501 she:0.01413948392901254 what:0.014110548249504374 this:0.009613248172212615 work:0.008813388419150843 man:0.006677000754574867 country:0.0066605789516794795 :0.24154524064513283 +of:0.24958094160239447 the:0.17698660533945512 a:0.08611378815100477 for:0.04291593382225371 to:0.03983467232546189 with:0.036671732890022714 in:0.0352809788253893 and:0.02970955580667899 his:0.022760930726915627 The:0.017765825376376707 their:0.014132813068434303 tho:0.012014654884912863 said:0.011494723931734977 by:0.011057525729440685 both:0.008966236320616678 w:0.008493045684512509 between:0.008307310052028434 very:0.008215679539874135 .:0.007331719815497645 :0.17136532610699445 +of:0.09129790931378902 the:0.07369883040827747 and:0.047842263382354346 in:0.04189055351593407 to:0.04045875475680249 a:0.03542341257202578 be:0.02020462051672066 for:0.01979292654746225 was:0.01760256398103379 at:0.017380150555488715 is:0.014984483003968216 with:0.014047653760730413 by:0.01374644383819499 :0.012670486581795598 In:0.01200961464556976 or:0.011563835749786333 from:0.011391516893522809 are:0.011273104484969465 that:0.010755276030689069 :0.4809655994608848 +and:0.1466338990533735 fact:0.07135085923391142 of:0.045210674971232157 said:0.03976911623938959 say:0.03595366854678044 so:0.0342224484638305 in:0.03081576691657806 one:0.028119028463403042 believe:0.026753474738054756 all:0.026112098500319536 know:0.02492157891868795 to:0.02361024084719163 is:0.023352899854288598 but:0.022667467625263105 on:0.017003025183876825 show:0.015198731592127505 think:0.015069699802862964 stated:0.013599248919808805 for:0.011657756419679508 :0.34697831570934007 +of:0.16957451549723174 On:0.07626097655266223 and:0.07609890697902456 in:0.07017974837807872 before:0.04931265693995024 after:0.04483710401713138 by:0.043934618765263 for:0.04103514055224921 on:0.030464667911632267 from:0.03040685513104606 Upon:0.025807130443227272 In:0.025790218036280257 After:0.02570304407637808 that:0.023197602732376473 with:0.023020575865864822 it:0.021131652265958308 to:0.01982868841761287 is:0.015227643405451923 without:0.01460768075418997 :0.17258057327839058 +of:0.23054062824368082 the:0.1257231032547223 for:0.12516537103247743 in:0.11018987318680036 and:0.03580875514266214 In:0.02476791617049992 their:0.021168112331097343 from:0.020902854314882147 a:0.019267975140190637 his:0.0185738835982911 or:0.01823259543459538 all:0.01583672687454959 to:0.015276748740957184 such:0.011748292302013933 The:0.01145208268340558 more:0.011220835431114044 with:0.01114911128303412 at:0.010844845678070434 some:0.010132361273610196 :0.1509979278833453 +of:0.15052462281760146 in:0.09888260256677932 and:0.0912744297583886 with:0.07342504605684277 is:0.0726005967642979 was:0.05801869933247989 by:0.05611410562290359 for:0.055052590530080825 to:0.04245561789377467 that:0.025679024076050952 In:0.025115450120076994 as:0.02368867787720414 have:0.021323167687684583 had:0.018358275641146875 from:0.0182220961811488 on:0.016659826653531506 but:0.016564881897716672 be:0.014639101156714256 has:0.014460198446530948 :0.10594098891904521 +he:0.1931379007940929 I:0.10037120089521864 who:0.07778587931207331 they:0.059262941800963476 have:0.057872996942517754 and:0.055179567160361966 she:0.045839830924175456 He:0.03868559870357144 we:0.030844477913915078 has:0.024310717893214512 it:0.021995089599794397 be:0.021045143405521164 which:0.02087742646304229 had:0.018820004201165058 that:0.016634054631061126 She:0.016575284552409364 ho:0.012399981154639594 lie:0.010809826611526253 never:0.010721602823855342 :0.16583047421688088 +more:0.39960243372137805 less:0.12337208408621898 better:0.04541273220968236 greater:0.04444240962903719 rather:0.04085775052578572 other:0.02669338151801495 worse:0.02015496351590193 larger:0.017457160065957718 More:0.01583757654748857 higher:0.012373292257867038 and:0.010908421852937982 moro:0.009887506146509078 it:0.008309216110271828 lower:0.008117654353900688 longer:0.006516884978820463 faster:0.005591672344165013 stronger:0.005337544753497833 one:0.0047058546362945194 quicker:0.0046752569685121 :0.18874620377775803 +that:0.14223169867476776 and:0.13460181039241778 as:0.0718744584004702 but:0.06884376340537031 which:0.055408437011838604 when:0.03876946523675052 if:0.034042599845428324 what:0.030467572327974573 the:0.02083794576907866 But:0.01966673271753611 where:0.01771517389831121 If:0.017566639183381333 :0.0151807929556771 while:0.013238424024704187 time:0.012861613664657979 whom:0.012670284635411849 When:0.012287404368913495 because:0.011793852044523432 And:0.01106436923595001 :0.2578769622068366 +and:0.19414188065421414 of:0.13134098286921456 the:0.08941613240519564 to:0.07836545543011236 all:0.05893683037995552 their:0.046525066487394025 for:0.04098436822268595 in:0.029328765698986584 his:0.02326251905780261 or:0.02098735871466212 by:0.019649261812303125 its:0.018148209767683214 that:0.01635960964348475 with:0.014953188153963442 our:0.014533119881950354 as:0.012183760218127298 more:0.010811979796123297 on:0.010018846439969524 a:0.009815403868459856 :0.15923726049771164 +of:0.22547645859652307 to:0.0976255956545342 in:0.08975713220785093 with:0.06434602133951098 on:0.04667326786831187 and:0.041649932604920926 for:0.0398249655813687 by:0.036685018433643767 from:0.032664781559268836 upon:0.021490740627235556 that:0.02139281221101055 at:0.021288306778277744 In:0.02025590254753344 as:0.010353932037056318 all:0.010074400759570251 over:0.008939820994499942 or:0.007693784865817322 told:0.007468153789186353 into:0.00691772114560941 :0.1884212503982698 +of:0.26570759158169227 with:0.08623529948835798 by:0.08318058648570566 in:0.07843898431448323 and:0.05680325680738731 for:0.046345439794763736 is:0.03770234911202526 as:0.03606645136443826 to:0.03581670443244048 was:0.026090447764695098 that:0.025004923236818816 such:0.023215735719451375 from:0.019227494897919542 be:0.014446106108424664 In:0.014049826080261292 have:0.013611223310608449 than:0.01212794121711334 into:0.01186856874064205 on:0.01183784389234142 :0.10122322565042977 +time:0.3188496998257792 and:0.06247835136191675 as:0.056303858290290075 him:0.029279459181946556 is:0.024328785366118513 them:0.02314911760990595 required:0.02219645225260037 subject:0.018305152359593166 order:0.01771268042069244 it:0.016319585597250507 was:0.014957450727397577 able:0.014936304012196937 power:0.014916518556238628 go:0.01347934427065229 day:0.013340192773869797 about:0.013239648377715558 or:0.012990785099315658 only:0.012742079558072487 way:0.012595388970413224 :0.28687914538803433 +the:0.1935970889937088 Wall:0.0706615080655882 Main:0.032409635107550634 said:0.020752791352628207 a:0.020444998969133432 Sixth:0.019023405482846256 Third:0.017884354679256406 Seventh:0.017147530769812146 Fifth:0.0163723705523824 Fourth:0.014959335308406244 Fourteenth:0.014386437682786335 and:0.014083704509568409 of:0.013806544616716203 Second:0.012794348372899578 The:0.012774437734978564 F:0.012377952191821308 7th:0.011990423680929483 tho:0.011844938808878337 Market:0.010067692022791931 :0.4616205010973171 +that:0.3006282797824588 which:0.08825833989594935 if:0.07590645430925741 as:0.057415901162760165 when:0.046979310514990436 and:0.04469798510716899 where:0.03859947268255101 what:0.029567497471003793 whom:0.02794588647609859 but:0.027263368649816086 said:0.025667511709866035 If:0.0221645656642884 after:0.017088573952120545 because:0.01688933254693009 before:0.01683775684107503 until:0.01581127311986328 though:0.013677231415689368 time:0.013460006345194214 When:0.01100496486132436 :0.10913628749159403 +he:0.14507456315105602 and:0.09813847387229264 it:0.07592544842920698 who:0.06372275983379685 He:0.06262744266999741 It:0.06014162495255499 which:0.048053671567894064 that:0.03467932359723033 she:0.023815010411133184 She:0.013873987341247064 one:0.011779159620642899 man:0.010921201826087254 ho:0.010244125173685378 lie:0.00963146620847584 also:0.009594196207116198 as:0.009166077823918995 there:0.007536404868220858 This:0.006705155933397046 company:0.005921169426541995 :0.29144873708550395 +the:0.6562263854125233 and:0.062084481769055254 of:0.034064795439674056 a:0.03300526318481668 The:0.032624405454838204 tho:0.028173467396045836 in:0.020491856212438583 tbe:0.008856678957167723 by:0.007717841441365177 or:0.007334427662351284 with:0.006962534499140624 great:0.006902530123886481 their:0.006676776159011127 that:0.006514449818063809 this:0.005156341019666506 no:0.0048466835918572 any:0.004786252040484846 his:0.004629607171108373 for:0.0042505019435642825 :0.05769472070294063 +of:0.2612145555856558 in:0.20934739619942452 with:0.07176984049229773 and:0.054857053273163356 In:0.04923190576949271 to:0.04633945599532808 that:0.03864491560127954 for:0.038567608565306444 by:0.02893906200616687 from:0.016159070080672584 on:0.014344108397483292 are:0.012507808107132569 at:0.009846790961577303 is:0.007215916493908673 upon:0.007005753813582622 but:0.006765766002681225 nearly:0.006592681977324917 have:0.006076351479559198 through:0.0060000872002974985 :0.10757387199766506 +be:0.22105911746191928 and:0.1423908072531206 was:0.13156958022167312 been:0.10828718029113948 is:0.06979755449070027 are:0.05954348854163976 were:0.05441369956590632 being:0.02170008377887551 so:0.02061332327158044 not:0.015187606336702644 he:0.01326421040522215 well:0.012246030391635245 have:0.011969852443045475 bo:0.011726170012023848 Is:0.009522504069297555 had:0.009343581009542967 has:0.008403812558690452 more:0.008401919305690007 now:0.008137616793202546 :0.06142186179839233 +and:0.07895257911471103 was:0.03596317658514438 out:0.024016824392823457 that:0.023672598027062328 placed:0.022844208461019616 work:0.021707439938587154 made:0.020781005318872947 is:0.020224993929329655 up:0.019794182040466738 put:0.018288921183371155 down:0.0171740551508179 interest:0.01663630075189571 point:0.01659978677065351 him:0.016175999448187352 held:0.015562908663841706 Dakota,:0.014616466073415059 place:0.01424333231426501 Minnesota,:0.014067166610364513 it:0.013665465625771424 :0.5740125895993994 +in:0.33834382386893597 the:0.16490382704983514 In:0.09093890531843439 a:0.08178672799412436 take:0.06936656631649106 took:0.0324747092735516 and:0.020045011247075386 or:0.018952522672898802 have:0.018016440692057687 to:0.017420924832934687 dis-:0.01658138185751117 had:0.01604608440874804 of:0.012666960029417761 The:0.00985101039259922 tho:0.00908813259306232 his:0.009023428106177444 first:0.008425508196999536 no:0.007696541706309593 iu:0.007125252885787858 :0.05024624055704794 +the:0.18169361840916123 and:0.09658122053740673 to:0.08351892482280865 a:0.07287645597376376 of:0.0681980237768903 be:0.04139055461101606 his:0.03068707663227198 was:0.029311801775378322 The:0.026940635265754666 he:0.022967170243955202 or:0.02296227842804123 that:0.021924420709407148 in:0.021173229418740225 not:0.01826720503394789 by:0.017514644163726657 had:0.016644650708708884 been:0.016183564296325465 were:0.015219156860643901 have:0.01416597166698204 :0.18077939666506967 +the:0.16309350456868785 of:0.1067377126636633 and:0.06765865023954312 to:0.03707664649450431 a:0.0317061200596582 in:0.030313262103819114 be:0.0250484524360531 for:0.02294855029452841 his:0.02134234768490732 their:0.01961248714188978 at:0.016917226645378383 was:0.014812532902268551 other:0.01381732903827248 or:0.013490462817221513 is:0.011036207245818531 this:0.010798757003206693 tho:0.010060288702272826 all:0.008977317731378 by:0.00783203735954669 :0.3657201068673818 +a:0.5283296077566797 the:0.11335379982621957 most:0.06373417258126216 very:0.04679717773719748 this:0.026661066598578333 an:0.02486095836099592 any:0.0207717322066225 and:0.017725014795634438 of:0.01652361181114798 The:0.015478224205341456 no:0.015444441951139134 A:0.013311503698934132 some:0.009905292339990969 is:0.008387357274577267 This:0.0069501582573933 to:0.0067545323339103895 that:0.006646446541384541 with:0.006233965427066277 in:0.0060903255182504674 :0.045040610777674066 +to:0.15581087535555524 I:0.12938836643119003 we:0.06711783871717981 would:0.06217853692770925 they:0.05615374606220421 and:0.052540162100736296 who:0.04459742830921096 will:0.039626209438809894 you:0.03779156089934419 We:0.03581148510144176 not:0.03218854404509005 which:0.026543738223393697 should:0.02106371527476426 must:0.020631214602667616 that:0.019609020120798584 They:0.017816126137570026 1:0.017545330600358452 may:0.01622237255100276 could:0.014136851185615303 :0.1322268779153576 +the:0.0839902145903898 a:0.07195090884118925 Yours:0.06507125693885166 and:0.0564223710186171 was:0.04794665256793703 are:0.042948300995126046 be:0.03737811368333363 or:0.03674602068696021 were:0.028442069336830533 been:0.027407235733581517 of:0.026804401021621592 is:0.024974820067529446 not:0.021084795026931606 some:0.020205250619006094 very:0.018467131696640507 for:0.017016005639675997 no:0.016015957064520747 most:0.015619969961364296 those:0.015242346317758785 :0.32526617819213416 +of:0.19318338852359404 in:0.1616614966125736 and:0.09699633884918085 to:0.08432746761909299 at:0.05666541582816233 on:0.04965610471017054 with:0.03743905945538538 from:0.03048800523627953 all:0.028994047323182177 In:0.025146787366266445 for:0.022481405725875387 that:0.02162626075889519 by:0.020544103917191164 upon:0.015015694027790316 as:0.012881294332021587 into:0.010130214662019353 have:0.009728871067865073 about:0.008838046205124109 made:0.008688215624198702 :0.10450778215513123 +the:0.1674302497668772 of:0.07984342595728666 and:0.0677917866394508 a:0.0613779382075677 to:0.042288436282834484 an:0.04185439166480002 as:0.024808369708444605 in:0.0231631542734753 that:0.018759644374652742 on:0.017629488886992662 is:0.016899258082931145 or:0.014827433523791846 con-:0.014282770130113443 for:0.013966910614615613 which:0.013229379547466691 are:0.013033963378538857 was:0.013031861254589593 this:0.012347782625811647 in-:0.012015931796065887 :0.33041782328369307 +the:0.1492076009015011 his:0.10700891916168555 a:0.09623902048982466 and:0.08333566469971548 is:0.060030732487323796 was:0.03991444992157303 their:0.03683132092396269 are:0.033336947265304645 her:0.033072117696873314 my:0.0224061026397274 of:0.020906654251907734 those:0.019111323255595194 much:0.01851087896435406 be:0.017576214396377934 our:0.015026299587763421 its:0.014931924035896509 The:0.014275147788235068 were:0.013486448913796132 some:0.012548550417689054 :0.19124368220089324 +has:0.33963439359356007 have:0.27113766403095674 had:0.162546645588567 having:0.04498040921643024 not:0.03094084808615842 bad:0.014407971738797229 ever:0.01265269515448758 lias:0.012396207119217607 already:0.009533474216717141 yet:0.008900454156475418 never:0.007909863374355581 havo:0.00742805569603746 always:0.006244886955145845 long:0.004959738931768948 there:0.004937903528976739 baa:0.004646629910772086 just:0.004128172016920535 haa:0.003928246008762309 bas:0.003470233974400247 :0.04421550670149287 +the:0.09045681175101954 and:0.08074208169436432 of:0.07403297026120982 a:0.06580353921020357 to:0.03772597169613717 be:0.02469712475359662 was:0.023501242707547276 for:0.02028383767711365 is:0.01927623824576464 in:0.017910434369856263 are:0.012395481091013117 with:0.012005024390329105 were:0.01131523357458159 as:0.011112007379505053 his:0.010760068765392468 been:0.009875066322199517 or:0.009711568951406175 that:0.009241311543877535 more:0.008550574689981124 :0.4496034109249014 +those:0.14031432416710854 men:0.09016178814189865 man:0.08335854680743929 and:0.07610302223219233 one:0.04509655705677659 person:0.02750418508161667 people:0.026458044681714053 all:0.023044068727506018 persons:0.02054818656112869 woman:0.014124158575017405 Those:0.013434957146841278 women:0.011870936488760891 others:0.010854470214540108 many:0.008243739675395503 girl:0.0078491608538059 or:0.00692917280234003 men,:0.006901269728010371 but:0.006740907439116536 friends:0.006072115674840235 :0.3733903879439509 +the:0.1454500361787387 of:0.1080247151493501 to:0.04516715868785427 boy.:0.036249098323069925 and:0.03403580073245388 girl.:0.032660326140049385 a:0.03171979252021135 in:0.02714044436566853 for:0.02365213940166824 be:0.021942286684630472 their:0.021087116084698817 his:0.019774122064073623 was:0.014637031197642503 with:0.014008395154201525 are:0.012730720509515858 is:0.011363112041341867 as:0.011357870543086747 from:0.01063391638067422 were:0.010589399829418696 :0.3667765180116513 +of:0.12911650083741538 the:0.10689461199140324 a:0.08587514238223208 in:0.075785930578064 to:0.0534757286097695 at:0.05156900262049225 and:0.035306010150283076 by:0.028075198365572814 with:0.023277477914824218 for:0.02236774335843024 from:0.021535977231348567 In:0.02065335184052006 on:0.020329509623862426 that:0.01733396569040983 an:0.016384491600736576 :0.012500454625312839 or:0.011760731059799094 his:0.008923860621798596 their:0.008004745882594628 :0.2498295650151306 +the:0.3457638758779741 an:0.11800871040583041 his:0.06373810185370854 of:0.04684542472255601 their:0.04089998620857339 The:0.03938182226867682 her:0.03845066656887096 my:0.03418333057253684 years:0.03272997567035627 to:0.029610559829087203 and:0.028737098903998202 tho:0.024738412557220313 our:0.01983344770612963 for:0.018849414932442864 good:0.016562683338599147 its:0.015020682206331145 at:0.014767805046276401 in:0.014059159217432542 grand:0.013844522891954376 :0.04297431922144487 +of:0.08471158294608466 the:0.0784438437743542 and:0.06720291665013167 to:0.046122408044339536 be:0.04046161143939536 in:0.027015564105553006 or:0.02435480735182264 for:0.020708581282078056 re-:0.019876814990101653 a:0.019001442367514877 was:0.017086966244810257 he:0.01604154291250958 that:0.015254506438979668 been:0.0144517087438338 are:0.013598540775756165 :0.013261930010872289 is:0.012996389654437859 their:0.012513526857303347 by:0.011245002537989195 :0.4446503128721322 +the:0.6294894379848316 The:0.04958883674024127 of:0.03538472992265916 and:0.032919418663688936 tho:0.03202583062913107 a:0.026635836601453577 all:0.018092903938340187 tbe:0.013802901991373302 other:0.008604170844555902 best:0.00820260010813104 eminent:0.007474324479173113 many:0.007437413573793314 for:0.007226771259414709 by:0.006981122767258985 leading:0.0066374816781846705 great:0.006439553401376256 different:0.0062254648571325585 their:0.00476705374739524 these:0.0046975223681627355 :0.08636662444370245 +the:0.11919516938815296 of:0.07230453158552728 and:0.05781056740443249 a:0.043018564803886335 to:0.031305092790907506 in:0.020848713353460488 at:0.014270110001066288 .:0.012526810245749479 :0.012413283442322082 for:0.011719122709941797 by:0.010808400946589808 or:0.010404172990115616 The:0.01003576004804544 with:0.009811868184449042 tho:0.009295902015355835 was:0.008924239095331684 that:0.008672304223433876 is:0.0085591147338948 be:0.008335143826716943 :0.5187411282106204 +the:0.11524896788923099 of:0.0925010665847372 to:0.07305315371749113 and:0.06636170307455955 be:0.03413198922535878 in:0.033161704017135196 or:0.019109559089765884 was:0.018697656412292842 is:0.017777825081493396 for:0.01771534331278435 a:0.015764326654364974 their:0.015640395970730612 that:0.014386686562180485 his:0.014327837437334736 he:0.014129603075942482 at:0.014015666944662664 :0.0131403660306986 as:0.013064239410151474 been:0.012789829875256445 :0.3839820796338282 +the:0.14117344734319692 of:0.07921767072475763 and:0.07699184487070236 to:0.042809214222713644 a:0.03791407805822653 in:0.02396483489085983 be:0.017184590766676496 his:0.01586114000519643 or:0.015250977317522615 The:0.013723614785415523 is:0.013570396888354291 for:0.013424748629642828 was:0.0133622346024403 :0.013200792545264167 .:0.013123607706178776 their:0.012333362934545374 Mr.:0.01126373039767266 with:0.010721976863014952 at:0.010525120859165741 :0.4233826155884529 +the:0.20758137194147713 of:0.09488888373090835 and:0.06679991506074422 in:0.061002657433847696 a:0.04485705667417356 to:0.030588620722098843 or:0.025600329955168945 on:0.02308203012938777 at:0.021778555618153145 In:0.017790858517870867 The:0.015513608481830535 tho:0.014622312845403426 an:0.014037097684177512 for:0.012731224153919753 with:0.012474668967362743 his:0.0124001182310606 from:0.012377654177344004 :0.009935494109463627 by:0.009007426654848634 :0.2919301149107586 +to:0.09864282010030183 the:0.08375297126946753 of:0.07074571151673052 and:0.06779046829403 a:0.02766650927741597 in:0.021670314456411932 at:0.021392828982420006 for:0.01627599403114278 is:0.015107338441904122 he:0.014818877918256685 was:0.013808540905081488 by:0.013132601340090633 it:0.012796195965848819 I:0.012723560421513859 :0.0121914922721236 not:0.011777366450725432 .:0.011011346691779235 that:0.01092359583028988 with:0.01073896800850032 :0.4520324978259654 +her.:0.05163463105718314 it.:0.025979847020763565 :0.024650285589282325 him.:0.01872668571105072 them.:0.01564568035361073 life.:0.008597028084425362 home.:0.007590280650983457 time.:0.007046671832925218 day.:0.005501699095399811 me.:0.0053395891979213465 house.:0.005171217464189952 again.:0.0051532823639054435 up.:0.004755791240047778 years.:0.004626854492153669 there.:0.004545379873810827 country.:0.004487573273548584 mother.:0.00439533547743612 be.:0.004370928224824396 man.:0.004360690115331767 :0.7864205488812057 +of:0.24013234855576424 to:0.11045343607885003 and:0.08165137264888578 that:0.08155503567478305 in:0.06644466792787695 by:0.050777736891378274 on:0.04350759233835584 with:0.035460928519650305 from:0.028912590365479666 at:0.025157867381945764 for:0.024974874419998915 as:0.017892273140483313 is:0.014948620044128644 all:0.01435708119478741 In:0.014332760507020058 upon:0.014307097212789513 which:0.014186555292855915 when:0.014149911395765694 under:0.01242030027301492 :0.0933769501361857 +the:0.16252600296301706 of:0.09943636141121946 a:0.06972061183976204 to:0.05786006055271911 and:0.051901321414837935 be:0.037439623662398995 in:0.027926045399370266 is:0.026607440308126628 not:0.024117671416066706 was:0.023783954316327426 for:0.02116560723292378 or:0.019279992189698437 their:0.01878366798909115 his:0.0183649522149638 been:0.016598750070275194 are:0.014734104368434184 at:0.014726030078833321 no:0.01294859103405944 with:0.012367286558919744 :0.2687119249789553 +with-:0.13055326028347847 get:0.062477655246181873 find:0.05062467389929527 carry:0.046887724455783965 make:0.04426340951962095 and:0.042317792625007025 put:0.03378025575650198 made:0.032208725071074654 sent:0.03174537466337145 bring:0.03160101286019858 carrying:0.030632671076779618 them:0.02979645578091579 set:0.02948445246949334 carried:0.028133654835739146 went:0.027819634410405004 worked:0.026880560120893737 be:0.025140039500382735 was:0.024601039031481954 go:0.023887138207419268 :0.24616447018597518 +the:0.46110724928515023 of:0.12814720677742572 a:0.05384389227856923 The:0.05074619561710145 said:0.03634936511135549 and:0.02817856930045769 tho:0.027696185411371105 for:0.026236107292156273 our:0.020293562229270763 this:0.01587931286724861 such:0.015246938993717643 or:0.013034382737641691 tbe:0.011192163032988825 that:0.010830009349032122 to:0.008968035539111251 any:0.008459030367155526 these:0.007884662071044057 in:0.00764296233988271 their:0.006714165683402122 :0.060550003715917455 +to:0.12022893700269083 and:0.09020394424291768 the:0.08587503820055309 of:0.06450042443224316 in:0.0310058468700829 a:0.017742048521183405 :0.015548046036689871 not:0.01491307651316237 that:0.014112408707955496 for:0.013734482372212283 I:0.013065769926808477 will:0.012848502316304782 at:0.012837991177321897 In:0.012628718855091186 by:0.012491091048660757 be:0.011425930130217754 is:0.0113962101007567 he:0.011342727513475473 or:0.01112522537451577 :0.4219735806571561 +it:0.17415695299507217 It:0.11891155727867181 which:0.07365354838481436 he:0.05278621298034836 and:0.052455163462033355 that:0.04779863030441497 there:0.03836913956773712 who:0.027935691250516252 what:0.022806886251769864 He:0.018379097711806562 this:0.016230468017935613 This:0.015974795738790782 as:0.015558432565755875 There:0.013825069119859148 object:0.010274091604654605 she:0.00995413027320304 plan:0.009614631966920612 man:0.009582934530166981 notice:0.009234485808389377 :0.26149808018713916 +number:0.11905105602113403 out:0.05214290213632245 sort:0.03175966360851715 means:0.02907108994663238 kind:0.02725854365418526 line:0.026037534299997604 point:0.02525768614461633 one:0.023498306523877133 amount:0.02179023907816643 system:0.021472200498041643 way:0.020981623423065424 form:0.020106224986415577 piece:0.01943384263348799 lack:0.019207008808088916 full:0.019166485395504848 class:0.01903592008881782 place:0.01885095874633313 plenty:0.0182105968627105 purpose:0.01731135028279893 :0.44935676686128645 +for:0.2426705864552227 of:0.1064473963670096 in:0.07677006990896601 within:0.04427500911436274 and:0.043135909936117524 as:0.03613825267593418 about:0.03368329674884223 cents:0.032646790881729296 twice:0.031246069268249334 is:0.02965556494493494 than:0.02746840502814248 to:0.026643637095145032 dollars:0.026046747111148346 at:0.025562075946441037 was:0.022046869036722018 once:0.020675870465536792 with:0.019823731143877678 that:0.01739624733525705 In:0.017297229932367483 :0.11937024060399354 +and:0.08488196060866449 be:0.07435141541281283 was:0.05724700044343967 is:0.05293860811041943 of:0.039392277832788945 been:0.032235729525893805 to:0.030428955362167463 in:0.02925209886943393 are:0.028874819416918295 the:0.02725393701428577 were:0.02404496351567767 not:0.02339298776666845 have:0.022320734992577557 as:0.02211092946875659 he:0.02043481458277785 or:0.01923072252236892 had:0.01919882511261532 it:0.018866838591802722 has:0.018232451436293172 :0.3543099294136371 +is:0.1250578349994012 was:0.10544264286952237 for:0.08248383199946731 of:0.07822489846170291 with:0.07081002190250321 to:0.060565988641775925 and:0.053590271753850914 in:0.04647407787731431 be:0.034653226638988614 by:0.028737304571837912 have:0.026446497657303395 had:0.025624770100282985 as:0.022831649292761966 made:0.022326532245632996 that:0.020195802083334477 make:0.01890863936180075 Is:0.01649202695801511 been:0.015657394249223088 not:0.015153619557598962 :0.12932296877768157 +the:0.04669240187838372 of:0.04006476503824502 and:0.03635370946623394 in:0.03517284615961502 is:0.025981648428895776 was:0.024390624114657363 a:0.023952560821969008 with:0.02243774827803101 on:0.02095749718607723 to:0.02011034361218454 .:0.01692642121248118 at:0.014675002900847719 :0.012818249414866926 as:0.012475673316036186 be:0.01243484130507895 are:0.012382790147604924 by:0.0122942532831089 A:0.010460232774734278 from:0.010352826705255225 :0.5880655639556931 +and:0.11096950704919077 of:0.08863565218277956 as:0.06996324927489929 that:0.050786136703344247 to:0.04865126555775839 with:0.04792439187978601 for:0.04541450233124138 but:0.040667921457174454 make:0.03443161305428907 keep:0.02998405566451968 on:0.025331511155036325 put:0.02497474819585598 upon:0.02171398724975496 from:0.020060879491059544 get:0.020007515559007955 take:0.01964540408007727 by:0.01939702247510163 in:0.018260736658736725 which:0.01824631177658264 :0.24393358820380412 +and:0.23342354800016182 or:0.06542577733312666 in:0.03544121237680906 to:0.028702803342846833 but:0.027502984003443882 of:0.025858235828778917 that:0.024924820352457733 it:0.022349702549373626 for:0.022310632341280973 have:0.021101064834726152 :0.018924899798412984 are:0.017965232360142174 had:0.01726374233019782 is:0.015935994955800354 all:0.015896976844549306 with:0.013984631425663549 do:0.013626990242728605 was:0.013461155091919067 know:0.012576497413119609 :0.35232309857446087 +to:0.6430991263078442 will:0.055730530298941885 not:0.02596504613908737 I:0.024062671044558524 can:0.023547705596811064 they:0.022971867057278147 and:0.021396244937343056 we:0.020479278126583407 could:0.02029283259068046 may:0.019919274710412077 would:0.01448875188420022 who:0.013688149460635197 should:0.012950574109504176 must:0.012435677025400344 shall:0.011716157038426359 cannot:0.009756334396532139 the:0.005915321501521844 might:0.004819948719350212 a:0.0044980537704476875 :0.03126645528444167 +is:0.0511790514279873 him:0.047792297124905854 order:0.04479911021407454 and:0.04074331869861665 able:0.03929840410950586 proceed:0.03717296694651289 enough:0.035058047218376624 was:0.034498020991357174 had:0.032377546205930814 not:0.03120095070347758 have:0.03116786584837985 as:0.030435930938719345 willing:0.028611315558700005 refused:0.026733039868329766 necessary:0.02498776115721528 them:0.023799599632702232 ready:0.022355144458051673 made:0.02218098429385744 time:0.0221184583365183 :0.3724901862667808 +the:0.12953606019733183 and:0.06999927635160082 of:0.037452308203192154 that:0.0265208383317293 to:0.026122008751658852 a:0.023700674912306624 in:0.016565698026204875 The:0.015349543890248582 at:0.014222242057552037 :0.012370977086056058 which:0.011707445915074171 by:0.011674950767901038 this:0.01104183919838272 with:0.009642087849993477 was:0.00925965286645701 .:0.00922248804901674 for:0.008038191755741842 as:0.00788012670829869 following:0.007683237145038146 :0.5410103519362149 +the:0.11919516938815296 of:0.07230453158552728 and:0.05781056740443249 a:0.043018564803886335 to:0.031305092790907506 in:0.020848713353460488 at:0.014270110001066288 .:0.012526810245749479 :0.012413283442322082 for:0.011719122709941797 by:0.010808400946589808 or:0.010404172990115616 The:0.01003576004804544 with:0.009811868184449042 tho:0.009295902015355835 was:0.008924239095331684 that:0.008672304223433876 is:0.0085591147338948 be:0.008335143826716943 :0.5187411282106204 +well:0.09680174192653697 is:0.049495908839891904 and:0.048045774190970704 just:0.04353953972279867 such:0.035242312988688684 far:0.030968107392618478 soon:0.03007500273533109 was:0.029206097087129068 it:0.026255184178449364 are:0.024859344191379317 be:0.024701872659945306 but:0.02411009879576032 known:0.023056656728286114 long:0.017667428004308067 so:0.01764315702109878 much:0.015940149793785916 quite:0.015785224837718558 them:0.01566897223274846 not:0.01471827649873397 :0.41521915017382033 +he:0.0470595875834432 I:0.04352156512137741 and:0.03391397736863502 it:0.02357500194464264 who:0.021820074394868303 they:0.016619620841558522 which:0.016558590059592034 as:0.01572884259295364 that:0.01459288467849869 He:0.014547802232646586 the:0.013426565513871206 she:0.012978979508887906 It:0.012714388576476918 :0.011019311060128746 man:0.010887240819088422 1:0.010335882132189028 we:0.009668575884096201 time:0.007482102700985561 of:0.007372670956198439 :0.6551763360298615 +of:0.3370581365028738 to:0.09558635523539692 in:0.08895247496471798 that:0.05363248553759151 and:0.049404865667253 all:0.04141621730166543 by:0.03861422757212502 on:0.03747610040600571 from:0.032041749960622354 for:0.031999653269780534 with:0.022064187561836483 In:0.019917689234321544 upon:0.016036918024888835 as:0.015467198361568232 over:0.011944085004225785 between:0.011579988692361584 which:0.010665373148010244 into:0.009579323697030465 along:0.00920058052778327 :0.06636238932994125 +the:0.6072148025356293 The:0.07287336906940423 and:0.035536776439630144 very:0.03243793579499975 his:0.030966282148823437 tho:0.026538003025825672 their:0.022779872086585263 our:0.01794010512849159 its:0.015550117565425636 are:0.014886040940691594 a:0.013949467101164351 is:0.011441835192781828 her:0.008148642119249181 be:0.008076543073050979 to:0.007476062902078317 an:0.006895129111869895 as:0.006632412833257984 my:0.00613879313386884 tbe:0.006035702858310855 :0.04748210693886115 +and:0.14640470392272945 that:0.12076660815453294 is:0.046421295949732946 was:0.040423848122580285 not:0.03911871870952336 to:0.03820995215517616 but:0.0361196707936102 or:0.03464696874338847 have:0.032744749309620506 as:0.030983448606494195 are:0.02741654459500117 of:0.02586340425034417 had:0.025058044156086808 which:0.023381844638169048 has:0.02199366434040536 if:0.02135333972215676 be:0.017260679347293514 were:0.015744732413745747 for:0.014851233398084895 :0.24023654867132402 +and:0.07330541953313928 that:0.03461988026152866 was:0.028695499755868607 it:0.025832186631824593 are:0.023108437280399238 is:0.022868283035404773 them:0.017524896287758895 be:0.01703905278512793 made:0.015249500515087817 or:0.015190439314539627 were:0.014874476637596733 him:0.014459369121931917 but:0.0140817488969313 up:0.013150436938691374 been:0.013137014576921329 out:0.01246184397440564 men:0.011731826189054158 interest:0.011223069349122186 engaged:0.0110032821249564 :0.6094433367897095 +he:0.1854081800264523 I:0.13268410949890286 they:0.07190500784669386 and:0.06690325072577531 He:0.06109261528957893 it:0.04913599358300413 she:0.040726140837305476 who:0.03047274055508449 we:0.029121677470119282 It:0.027972706937142395 but:0.018257380893444163 that:0.017519744648681317 which:0.0166493682199236 They:0.015568689594990399 We:0.015424504150783972 ho:0.014829544728199421 be:0.012957534617897467 1:0.012425654721476989 lie:0.012372901477596314 :0.16757225417694735 +will:0.10767692444316398 and:0.09382520034261135 I:0.07947095319204625 not:0.06848946301170238 a:0.06656691411791242 shall:0.06156312635137943 was:0.04291174129904268 the:0.035702351656370306 have:0.034254550001191146 he:0.03236012175266484 be:0.03145697220491982 may:0.027047446273313732 who:0.026761686530542044 is:0.024473248515753786 had:0.023557367924296625 has:0.0216528301109877 can:0.02151945356420771 to:0.021126368916747608 you:0.020854788149119417 :0.15772849164202676 +has:0.06895852181434249 and:0.060596849814956937 the:0.05094314520734195 had:0.04861674644223662 have:0.043589648195858914 of:0.033769557894709805 which:0.022880226640736908 to:0.021911334339974192 it:0.021649752022183572 a:0.020675618234569943 that:0.0194367649630637 who:0.01887003173875938 not:0.017131994955568903 as:0.01637585558200144 he:0.015786512600317156 It:0.015198198397665676 or:0.014392631884420548 I:0.012666384380324329 Mr.:0.01206342634173659 :0.46348679854923097 +the:0.16334046981612846 our:0.10007094555528663 and:0.08858303527121596 of:0.0848271689351531 many:0.06864469138854638 their:0.040637331723942356 his:0.03602382690875397 in:0.0313857266327545 fellow:0.029355949885891824 American:0.02499317966973552 all:0.024321861214958614 two:0.022429724592622907 three:0.02166563077565512 other:0.020915502428109772 her:0.019069344853913487 good:0.015795615595164764 The:0.0147232308122196 great:0.014682478207260333 your:0.014375009119305109 :0.16315927661338156 +of:0.5194694586760311 in:0.1330051001477447 to:0.06851432888974311 by:0.0550349750629288 In:0.02878169727629539 from:0.024254562818901995 that:0.023947275467146364 for:0.0208712368580367 and:0.02014793498328324 with:0.012527167863237659 on:0.009063621849989515 at:0.007949625624273258 into:0.007715055802641988 which:0.006610948246463611 ot:0.006473742536331837 throughout:0.006333274786906171 between:0.0060025462560295145 upon:0.005525803780418543 as:0.004602943667776204 :0.03216869940582036 +the:0.07591019013263572 and:0.06813786893198592 of:0.05917081661611384 it:0.03513238111187001 that:0.032699260753120164 will:0.027461607063874714 to:0.026670047283830434 a:0.026411494048458824 as:0.02479044302569599 or:0.020329797140119833 may:0.02029312580778602 which:0.020140522484129317 It:0.019576989117020327 this:0.018375696747224265 can:0.016240106796776663 not:0.014839306984822213 said:0.014595299128284535 there:0.014216118651543092 they:0.01402608637792205 :0.44998284179678605 +the:0.16361987886268828 of:0.10515101871240605 and:0.06372206267254928 to:0.042602597788405264 a:0.04187159424632066 Mr.:0.024592911528843048 his:0.019626469238519136 be:0.019484682793862736 was:0.019404615100728002 I:0.01617209634720779 in:0.01606771087606362 The:0.015246733498845711 at:0.014847862948501104 for:0.014722734599062395 is:0.014609061476724177 their:0.012434753052080846 :0.012303659295954476 or:0.011818012542233051 tho:0.011597140444369998 :0.3591044039746344 +and:0.06891420731134032 him:0.04796338992347393 asked:0.034068293130437514 but:0.023061698726670195 was:0.01770047619935999 it:0.017664394074414103 them:0.01723862081573575 her:0.01625812316300366 time:0.013797771485166185 work:0.01370450971954185 reason:0.013617788801932325 that:0.01299797735934275 as:0.012370276577536714 vote:0.012146792214804542 do:0.012078335840226767 enough:0.011829902488301739 day:0.011789371673763921 not:0.011492660815249805 him,:0.011215556334101392 :0.6190898533455966 +:0.07275967463495976 it.:0.02370466923231722 them.:0.01645391065777516 time.:0.012562290836985006 country.:0.010427847756729204 him.:0.009577365784944355 year.:0.008485703281565699 life.:0.007794660366091303 people.:0.007600258958681948 city.:0.00707473143789183 years.:0.007006703002651291 water.:0.00697567673889007 again.:0.006582900955419435 States.:0.00654527861045589 all.:0.006206446572016308 work.:0.006141418006136344 day.:0.005950131083864156 world.:0.00584179591138754 state.:0.005736809562244784 :0.7655717266089928 +and:0.07988593612636909 as:0.06378146405273964 went:0.04259551333034637 go:0.03757392362888375 them:0.03455693125693638 according:0.029790545269652878 way:0.026456699942026984 up:0.0251177566952295 is:0.022932626007308256 time:0.022698890482880582 made:0.0216687756647806 him:0.02156867451008194 back:0.021139924091903014 brought:0.02078266031156129 going:0.01924534320254804 sent:0.018961910522670346 right:0.0185297602442369 down:0.01841724161597407 subject:0.017838174924973096 :0.4354572481188973 +thence:0.10891583346303463 of:0.06120980948948788 U.:0.04001671614688389 .:0.03679572509675559 and:0.03246613302909074 S.:0.027996519609226497 to:0.022739524365643676 by:0.017807686628081618 W.:0.01609090021753447 at:0.014713445688909137 bears:0.014634689121296037 between:0.014004057606566173 in:0.012825389467013833 :0.011823240609006249 from:0.011042254107580937 J.:0.008567765942366846 the:0.008567111976110403 John:0.00810894773252009 J:0.007183392757169034 :0.5234908569457223 +the:0.3645908580637222 a:0.07787757459206868 of:0.0647898765028917 in:0.06170815375214812 his:0.04527992615340278 their:0.04196554927077695 no:0.03764531606733851 for:0.030500103243349064 to:0.030335180922543194 and:0.02446003020658942 In:0.0241228455525429 from:0.022535240589082964 our:0.02245234617331474 near:0.022065206509103173 tho:0.018608340601939645 great:0.018312632483832733 my:0.017960558509247868 your:0.017920657689744494 its:0.01472659915479421 :0.04114300396156669 +and:0.14507320772351315 fact:0.08580533594336559 said:0.056464728489513914 so:0.05141663139801109 believe:0.03728868944610554 is:0.032697255055655516 say:0.030323479159427524 know:0.029749358812227955 found:0.025535190692382553 stated:0.021273605064562356 show:0.019511948220510757 but:0.018999393120383457 says:0.018814328565908398 think:0.016893655385130203 was:0.01658797795582863 all:0.01652317309060226 see:0.015409038245983688 opinion:0.015263158537430448 order:0.014744011681695817 :0.33062583341176116 +the:0.21745008715299494 and:0.10267933884574226 his:0.08721683725176577 a:0.08407679546230193 their:0.036278972928575855 that:0.03229152139249737 her:0.030794532295803635 to:0.029024947577638207 little:0.022774547917068493 of:0.022064683153359216 no:0.02192336410132745 any:0.021700447843698425 my:0.02101964036045442 The:0.020631234732075846 tho:0.01782746962265834 one:0.015980677215952352 or:0.015547845402428866 same:0.015396861274717908 in:0.014946613810670495 :0.16937358165826824 +in:0.35015903281504324 a:0.08215303037063681 of:0.0762347972935027 In:0.06649142289346949 their:0.05440646723660909 the:0.049877104865397606 his:0.049443292642687486 and:0.03409411351841754 its:0.027050361543699615 with:0.025433635641188536 great:0.022603271989711557 from:0.02048543836996786 by:0.016368771373068403 for:0.015838917349470794 to:0.01508042019704625 no:0.011817546526306977 my:0.010382678292912072 our:0.009909656526082835 your:0.00689029820517183 :0.05427974234960933 +of:0.09129790931378902 the:0.07369883040827747 and:0.047842263382354346 in:0.04189055351593407 to:0.04045875475680249 a:0.03542341257202578 be:0.02020462051672066 for:0.01979292654746225 was:0.01760256398103379 at:0.017380150555488715 is:0.014984483003968216 with:0.014047653760730413 by:0.01374644383819499 :0.012670486581795598 In:0.01200961464556976 or:0.011563835749786333 from:0.011391516893522809 are:0.011273104484969465 that:0.010755276030689069 :0.4809655994608848 +to:0.12022893700269083 and:0.09020394424291768 the:0.08587503820055309 of:0.06450042443224316 in:0.0310058468700829 a:0.017742048521183405 :0.015548046036689871 not:0.01491307651316237 that:0.014112408707955496 for:0.013734482372212283 I:0.013065769926808477 will:0.012848502316304782 at:0.012837991177321897 In:0.012628718855091186 by:0.012491091048660757 be:0.011425930130217754 is:0.0113962101007567 he:0.011342727513475473 or:0.01112522537451577 :0.4219735806571561 +be:0.33583464672067825 not:0.12593564824494888 have:0.10555250042986482 been:0.07394587337063772 was:0.05586891643419512 had:0.0440660886195625 ever:0.037310208689837115 has:0.03665289622061733 is:0.031115146392472464 never:0.030621792538116616 bo:0.017676386149712186 he:0.016844315770721294 were:0.0138873864406095 they:0.011327347384998555 are:0.010261922260494199 I:0.009939664781146636 being:0.009833470226130825 and:0.009518356088535474 it:0.008255055150783449 :0.01455237808593704 +of:0.2325904965154777 to:0.09555688513152961 or:0.0771174687555151 in:0.06951448302798575 for:0.057324629021020077 than:0.055021354096736384 by:0.04973704096652859 without:0.03898872352967628 that:0.03772030562099877 at:0.03254069057922397 if:0.03067909419774899 with:0.029148027520137298 from:0.02375727839016155 and:0.023432330481143224 as:0.01924636486145014 on:0.018586853799889037 have:0.017309805833093526 upon:0.014934392367847518 make:0.012953718618804988 :0.06284005668503151 +in:0.010658336841008389 due:0.010423149248272014 it:0.010363500316042792 time:0.010120924498806468 men:0.009165454437470275 long:0.00785869137240479 up:0.007723881816654882 good:0.007499794461460562 him:0.007302916746915176 interest:0.00716632191460338 out:0.006932277789540173 life:0.006726547041772624 large:0.006492713360168168 them:0.0060410161231712325 work:0.005946990684369035 quiet:0.005931272915665683 and:0.005927523791225246 dull:0.005881810407370292 made:0.005870510204881954 :0.8549663660281969 +out:0.08512001608055292 right:0.047703566916816514 number:0.04758122912311731 one:0.03883460312531559 matter:0.037955909563373184 amount:0.03671432457581581 state:0.025488061408081557 means:0.020346586572105974 line:0.019785002635209298 board:0.019717917075912063 kind:0.01907426932439361 way:0.01860755955206734 piece:0.017944933193718288 part:0.017882063937816585 form:0.017780845400260172 time:0.01611257931488046 that:0.01608760961558208 purpose:0.015982370808626894 and:0.015682411537522208 :0.46459814023883217 +the:0.2420640658198013 a:0.11993290487754654 of:0.08391798708752743 and:0.07772563049749046 with:0.05854771157011734 very:0.04567916474086959 The:0.03724509501991683 to:0.03243443213479038 as:0.030150437333176267 that:0.026445824582924236 his:0.02607600429814525 most:0.02520530564896173 their:0.023164565905612524 by:0.017783087142935677 our:0.01740760749161794 for:0.0160862172016492 its:0.01602891741074799 an:0.014326509491375861 tho:0.012257169444200182 :0.0765213623005933 +and:0.05917734571267282 closing:0.04405297983259551 was:0.026323119710997635 valued:0.021005792503071843 held:0.01922887441606307 sold:0.018225285914023 2:0.017782437938973866 is:0.017552850459549643 arrived:0.01662711812741857 be:0.01645048243064216 are:0.016339673120917095 White:0.01533836240735085 not:0.015154252504664439 as:0.012706467917481812 that:0.012063629264509927 estimated:0.011864260728812118 Dated:0.0116063700277585 or:0.011444173640079769 made:0.010438189210536826 :0.6256183341318805 +as:0.06931392982974462 according:0.052071562389565784 up:0.0511867300210483 and:0.040371568633051955 went:0.03351644485287816 back:0.032358406609281 regard:0.03073407747799069 feet:0.02852138506231652 down:0.026379903432040268 owing:0.02466642634685871 due:0.023695193974505355 go:0.022910973192184297 reference:0.020802802907016128 came:0.019883741951819873 sent:0.019874244915639484 attention:0.019565955494145405 come:0.01885185084678811 given:0.018792390567602263 it:0.017366961307524745 :0.4281354501879983 +to:0.3420351876085759 will:0.13959096848295693 may:0.0844358822552898 not:0.05964419572613812 should:0.05857718568452158 would:0.056540680498753444 shall:0.03986747964624188 can:0.03853203120403848 must:0.036652235153185074 could:0.022642724830965938 and:0.020218496819959103 might:0.015901388016106056 cannot:0.015127899548484463 it:0.006774086286052855 never:0.00542684459176675 then:0.005181075657717215 also:0.005130373564865944 which:0.005066892789192974 that:0.004889632094407249 :0.03676473954078027 +and:0.1600468116657659 the:0.12159958167188636 of:0.09402535379171882 a:0.044201538472514304 to:0.03063676137614983 with:0.020883014134043663 for:0.01773932351607047 or:0.01602541845998844 at:0.014333671433923667 but:0.014078984962062936 that:0.014041762149972022 The:0.014001620123298954 two:0.012793226160488776 their:0.012296274444378726 little:0.011696073665122073 any:0.010614880760230887 no:0.009845382057424567 by:0.009779082755019815 is:0.009407251167280023 :0.3609539872326598 +the:0.14048602411779254 of:0.10252225631561868 and:0.07633183975731359 to:0.03245895674061561 that:0.030733737144535016 The:0.02900268575179401 in:0.027931447478085947 which:0.018752304155935415 or:0.01571308762550976 :0.015055749982663399 Mr.:0.0149342694058751 their:0.010852954179470109 on:0.010754035534755927 as:0.01048165637565865 for:0.010288939626440372 said:0.01005519865138013 tho:0.009754500854680081 he:0.009279558727176576 a:0.008993895187521092 :0.41461690238717797 +one:0.1678001327051895 many:0.1178830679155386 some:0.11629649396959849 most:0.05250905917664251 all:0.05247722732702672 Many:0.04393717940457599 Some:0.04145252072400844 none:0.03942274921152021 any:0.03229849807875444 One:0.026981283335526234 Most:0.024449316002334315 each:0.02437347877142535 out:0.01729697182841551 and:0.017064556310207257 that:0.014172725973974322 few:0.01321762799495761 two:0.01173136022198473 part:0.011007786075073578 several:0.009924913510291958 :0.16470305146295422 +the:0.38121758558526836 this:0.07901965995532456 said:0.07544525668070104 a:0.0548626800755238 of:0.04645622097972663 district:0.04614173792228547 supreme:0.04464189007060741 circuit:0.02307498392991918 in:0.02153866072568213 county:0.020390331945262935 at:0.019126213019206972 to:0.01905892460435312 tho:0.01605634919975131 his:0.01476998121501515 The:0.011491218636084878 from:0.011146325208384563 preme:0.010611314525961799 tbe:0.009373896283083648 by:0.009358309123193511 :0.08521846031466353 +the:0.1432217140958515 of:0.08717737192158255 and:0.059904468249267644 to:0.03882749429204523 be:0.024373175066919175 or:0.018150137140135924 for:0.017371331727912488 as:0.01513474596413293 in:0.014955263841156672 was:0.014895524290411246 on:0.014567072775176321 a:0.013395777278519856 :0.013324791972568584 is:0.012256668581809464 that:0.010766042211336467 their:0.009470919803858694 been:0.00897218975155812 his:0.008886227272493089 are:0.008692624527368423 :0.46465645923589566 +a:0.3884469936118696 the:0.2516295347949699 large:0.1172598166199743 A:0.04263538507407082 The:0.038751151922176284 great:0.015784669032137842 total:0.012450029176985985 and:0.009906332100247798 tho:0.008795594021867324 whole:0.008551498061751726 any:0.00830995036862049 considerable:0.008078460889881919 this:0.008064962747566476 sufficient:0.00759398209225476 largo:0.007553634725424092 goodly:0.006793601890766698 largest:0.005417677222877226 small:0.005326727807158831 greatest:0.005260218271373045 :0.04238977956802493 +of:0.2953753304134452 to:0.10580524517162863 for:0.07940226777469642 with:0.07356179823033603 make:0.03997340196147874 by:0.031709772551308024 give:0.031393797504557244 in:0.030809195393587074 keep:0.029127293900466884 have:0.026621126064183608 among:0.02600341694264455 take:0.024653250257685534 upon:0.024456440767848094 put:0.020827948801030106 let:0.016660825026347498 get:0.015974488159609227 see:0.014319864533449545 about:0.012868923940569961 before:0.01255644415193123 :0.08689916845319635 +the:0.16807735899698817 of:0.10541662057906837 and:0.05138367848570702 a:0.04141865232648221 to:0.0385989743764065 in:0.026264864977736738 was:0.019530675665220657 his:0.018900421021236905 be:0.017373825006196972 their:0.015767721170721456 for:0.01557246589796783 with:0.014071419046630446 is:0.012922913111931644 at:0.012690452250034052 are:0.010702713108721902 .:0.010158075558988393 Mr.:0.009672788574483367 tho:0.009612591781990074 were:0.009549306361446321 :0.391314481702041 +the:0.18449850575851756 of:0.13593914913391794 and:0.04448577544746227 in:0.04210145964984271 to:0.03285819762913328 on:0.03183694645188516 at:0.02820788051182575 a:0.02611621297325597 said:0.016391283310078997 .:0.013810591185967997 as:0.012727707933072957 for:0.010596895549169672 :0.010550055925913954 tho:0.008937196218535746 by:0.008590228829816172 The:0.008481680921657004 from:0.008076310529912555 his:0.007741656828590864 or:0.007582560970466476 :0.359469704240977 +the:0.1454500361787387 of:0.1080247151493501 to:0.04516715868785427 boy.:0.036249098323069925 and:0.03403580073245388 girl.:0.032660326140049385 a:0.03171979252021135 in:0.02714044436566853 for:0.02365213940166824 be:0.021942286684630472 their:0.021087116084698817 his:0.019774122064073623 was:0.014637031197642503 with:0.014008395154201525 are:0.012730720509515858 is:0.011363112041341867 as:0.011357870543086747 from:0.01063391638067422 were:0.010589399829418696 :0.3667765180116513 +and:0.07558940021936399 recorded:0.030196237618668006 was:0.028917161578042846 made:0.027969746247669736 that:0.027730098932509103 o'clock:0.025060522019555328 up:0.023026552239529506 is:0.020398277211376416 found:0.02003101797656537 placed:0.017482208134164214 out:0.016937164562539058 place:0.016819459500107596 interest:0.016629321966808677 him:0.016002796715253755 situated:0.01573420479581609 it:0.015128305982428461 them:0.014715943643665314 part:0.014646613000297721 interested:0.014450471929902294 :0.5615344957257364 +of:0.3472379638994193 and:0.07996356096948448 to:0.06933160468430759 about:0.0466733984947893 in:0.045550731163466605 from:0.034964177878373796 with:0.028645528506276975 for:0.02721659041720199 at:0.026925790914010008 by:0.02616324644798988 on:0.025815407646153445 or:0.014203164007655469 In:0.01337042779903518 as:0.013070574451333363 than:0.012836529480571235 over:0.011829582846220005 between:0.011499696050774937 upon:0.010137613871500497 is:0.009488452516052846 :0.1440759579553831 +the:0.22924132425264135 of:0.08035128677966182 and:0.055547515083489235 that:0.046985470849204194 The:0.03949337034195376 a:0.0326788192338605 Mr.:0.03136382172704767 or:0.02084337345122462 no:0.017943983364482677 tho:0.015462026051497562 this:0.013568919202297856 as:0.013163992702882273 in:0.010921943914589408 he:0.010164202291307874 for:0.009691030462655513 which:0.009078491314894655 their:0.009046326996308082 .:0.008674677877003106 be:0.008418409575066486 :0.3363610145279314 +of:0.173929230524896 and:0.11667666310358503 in:0.08603970904036806 with:0.06996330511428155 to:0.06811637073339848 for:0.051552939463677554 that:0.04492467118135372 by:0.03711197654552394 at:0.034015021797196274 from:0.030644909325300094 In:0.02475651362512929 nearly:0.021576888354087147 on:0.01918022912803143 is:0.016661279886395947 was:0.016324660867573417 are:0.012805604008820587 upon:0.010397080151397385 or:0.010136273193602406 through:0.009477563840768241 :0.14470911011461343 +and:0.1469955317019495 he:0.09715865769478241 has:0.08534009024534635 I:0.06020132767593096 have:0.057720765902880646 had:0.0535858166235588 He:0.043674999429828235 be:0.04235741526208135 who:0.039312151257451355 was:0.03404712756679271 they:0.027958053053795937 then:0.027304174894163088 which:0.021749247150218545 she:0.020278393403564927 never:0.019874337462889195 is:0.01843651944342862 we:0.016929098177559596 also:0.016643529854108982 They:0.013363045587971823 :0.15606971761169694 +matter:0.14122876131475245 and:0.11856854536338628 know:0.11047255500882172 see:0.10415418686044059 of:0.028173261284305876 to:0.02700893461403232 or:0.02371688939627883 show:0.021904885261504182 but:0.021260666504368194 for:0.01941390849575353 is:0.019018220102826014 knows:0.017889186051830163 tell:0.0174087363215348 say:0.01677998013363364 asked:0.01617395861975437 with:0.01605559567192037 And:0.015581991459722088 realize:0.013907528460017147 But:0.013352824845632482 :0.23692938422948498 +the:0.12868074614640762 and:0.1253362524044003 of:0.10194275380429287 a:0.09139192246657413 with:0.050599878176230066 is:0.04181045292315703 are:0.0367235038847605 was:0.031878553849317176 The:0.02920290439021676 to:0.027936998142388852 in:0.026291012850842482 be:0.022055385523821275 have:0.019577892346956 has:0.016740510405111708 an:0.015891141041427647 not:0.015409003272449625 or:0.015302437127033115 were:0.014357449783062758 so:0.01377402621827012 :0.17409717524327997 +one:0.1028303141280697 part:0.05963429477052991 out:0.04766456937681193 some:0.031418679026461914 members:0.030764490253327767 side:0.029940657362655835 portion:0.022063658796890564 office:0.020457735219956013 member:0.019726706386316174 end:0.019666887540649894 tion:0.018667441728710307 parts:0.016814747270460957 people:0.014112771422418794 all:0.014072739582212475 any:0.013183573287639892 One:0.013083578354183906 that:0.013024335602903442 account:0.012482348155001894 many:0.012077825070275192 :0.48731264666452345 +a:0.36246837163667617 the:0.25751235326286154 this:0.10899586460254217 very:0.03887644617282232 The:0.034986254393486994 A:0.02085055339462728 of:0.019416262318900916 and:0.018681200321802767 tho:0.015032021543600288 so:0.014786120657444614 any:0.013132562114522206 that:0.012357477087290387 with:0.012101417407901894 no:0.011731286248925195 an:0.009491730001724479 This:0.009339847421979188 its:0.0075001043164204485 such:0.00692911741813555 our:0.0069255533353064025 :0.017885456343029137 +this:0.20012818445157932 a:0.14557704692243986 the:0.12767238336745648 every:0.06225007115010654 other:0.04022197783201395 that:0.03124483631333301 one:0.024797450877548893 of:0.024523616416656582 each:0.021383091134246825 all:0.01909404031834179 and:0.01626961708472464 to:0.012781377690931213 his:0.011978589206621721 last:0.01195303638070947 said:0.010000066530040186 first:0.009577594999336105 whole:0.00872045915609801 next:0.007839231886902902 another:0.007783194010229469 :0.20520413427068301 +not:0.2675726614922148 can:0.15428056778095545 could:0.11442854684097202 will:0.060054422529784324 would:0.05899708741014559 the:0.03920439218072466 and:0.03269902761275567 Not:0.022473709312378347 that:0.017444551169022538 is:0.0161618920336454 should:0.012558854193273647 had:0.012226508818705722 have:0.012093839824228151 but:0.011847452011409732 must:0.010572357917508367 may:0.010052402383509894 as:0.008949958466803392 shall:0.008919757733680526 The:0.008568172533564134 :0.11989383775471765 +south:0.17024673570403756 east:0.13899761517391593 north:0.12546587661758385 the:0.12117282452930686 west:0.10120623676796459 one:0.07741412116341552 each:0.03939228022464523 either:0.03433361188232882 other:0.02019877034460065 a:0.01968388899250273 out-:0.01256879133258559 left:0.011222023332405762 easterly:0.00989852991614714 opposite:0.009686467683468987 this:0.009666402447181035 any:0.009187307228996373 tho:0.008635887523743732 cast:0.008588076178043656 that:0.0077288510240516375 :0.06370570193307434 +be:0.28659652845581945 been:0.0900087830947873 was:0.062188374355340574 are:0.04740477753630303 and:0.04239934902680337 were:0.03845575890389561 have:0.03822509429607536 is:0.0381783414007729 just:0.024671118479248185 not:0.024583390120780174 being:0.02280009285865192 the:0.019086047123329605 had:0.017811927002241563 he:0.016315846206744998 has:0.015539792894262527 it:0.015371155295739987 bo:0.012219243038576516 ever:0.011917099192784171 of:0.0102033230058763 :0.16502395771196648 +the:0.2044293213158901 and:0.07500935466446794 The:0.062204340011676844 that:0.04636836152754352 of:0.04065395353293231 These:0.0343785739474216 in:0.024370161432161155 New:0.02230560180208123 these:0.01875410326821676 or:0.016227861471230013 tho:0.015625572600645937 above:0.015606846620246249 this:0.014124396566283691 ef-:0.013499861104941778 a:0.011597474900955477 I:0.009520583108473736 our:0.00944591408520645 Now:0.008800943423898512 said:0.008171094103960694 :0.347905680511766 +the:0.159890080563112 of:0.07260577183014696 and:0.07056703450651167 a:0.051183996035616096 be:0.04556344667147533 to:0.04360947188731829 was:0.030239143894541076 is:0.028126644658302613 in:0.023770993366073218 been:0.01952497607468512 are:0.018344471578495197 not:0.018134353877981846 or:0.017943736187362763 their:0.015151352392653146 he:0.01368748923814366 for:0.012843514932476941 were:0.012575997485245167 his:0.012059906401579779 so:0.011050433678135466 :0.3221271847401437 +at:0.3079323486749234 about:0.16505674132839923 for:0.10161487676232374 of:0.07484907894988939 and:0.05238209068289253 or:0.046087049717558434 At:0.03453880580566708 About:0.030606047456016038 in:0.023940933078550112 to:0.02356039554827377 than:0.019090891494274936 from:0.016130660567404472 past:0.015368380203872462 until:0.01408311184099785 within:0.013122772505500776 the:0.009494748683638931 least:0.006694677213629524 In:0.005899568233027097 over:0.0054500299445260055 :0.033096791308634195 +is:0.45539752160249547 was:0.13649532350939944 so:0.0803441548945031 Is:0.05028846618111148 are:0.04187298659990092 very:0.02995330493720478 be:0.029348722712708438 and:0.027266167445250657 not:0.01959747710309416 quite:0.018174533691616052 am:0.014070337790705777 became:0.013570236337202158 been:0.012569141657996722 also:0.011602495294457848 were:0.011429987688102229 of:0.007665194965265507 the:0.007182691843792467 seems:0.006619675341216397 generally:0.005499112103541918 :0.02005246830043448 +and:0.1016778418465405 to:0.08228437207785476 was:0.05611380324076658 be:0.04638691676107526 is:0.032532074227807004 the:0.030092856148107885 were:0.021702446216979043 are:0.021149673207062406 of:0.020529771592109055 he:0.020082882066300878 not:0.019563244264111553 will:0.018482833039780003 it:0.017779998496691655 been:0.017361016173228286 I:0.01567324733867604 in:0.014645739090825696 that:0.013806312046075258 for:0.013562614276382539 or:0.013427565713921879 :0.4221447921757037 +the:0.2963524403195963 a:0.1241652201866759 to:0.1123525532826426 and:0.07540461173456592 The:0.06266132423048966 annual:0.017388405152836576 tho:0.014653980854794739 this:0.012061769370995363 of:0.0115050256259471 his:0.011444226341865092 minority:0.009309157976998052 will:0.009201400501022219 their:0.008581483355412416 A:0.008252732620992837 an:0.007979762948238711 said:0.007960475920743402 tbe:0.007448228091286576 that:0.007197869346848829 with:0.006857272824981768 :0.1882220593130659 +one:0.015552536992080472 more:0.014252271697624306 on:0.010631301787611593 day:0.010222750824534239 two:0.010216157614982159 person:0.007504694644314241 in:0.007364820929323563 man:0.007179188731169107 law:0.006205362369136604 action:0.006166303509128973 and:0.005659786788634644 city:0.005177234665142273 three:0.005130416479837977 State:0.0047265097104810415 to:0.004696031397422901 ten:0.004594585978494318 of:0.004463781172886088 town:0.004231879326219736 year:0.0040256313925199315 :0.8609987539884558 +of:0.2798786214199365 the:0.24027246415999662 in:0.07843762108621324 on:0.07639676290890987 to:0.04298429568418833 and:0.0288848015581706 by:0.023498431628410425 which:0.021787906626660847 upon:0.02001337054613194 that:0.018866963217443182 from:0.017688303321564357 with:0.017351473789913426 In:0.014159335423031615 for:0.011989115437405846 along:0.01077206528360387 tho:0.010647923125198643 pay:0.009287683544420009 satisfy:0.009222391008926087 The:0.008716097437114807 :0.05814437279275974 +for:0.20727366247799617 of:0.17731810716146795 in:0.1389669115670066 to:0.06900018390143285 that:0.0500793601978603 and:0.04071509181146028 In:0.034199659616260404 at:0.030669233580410123 with:0.026284235620949437 by:0.021220461373343737 on:0.01996803251813446 from:0.017003430424727586 as:0.014755261568065446 is:0.014209164896328754 all:0.00995268094797398 or:0.00993698207351271 when:0.009022011185529671 upon:0.008794658861491757 but:0.007203988097421794 :0.09242688211862599 +the:0.4426453901947574 a:0.109335682810348 and:0.07770438967617826 The:0.04918082130849716 tho:0.03464625437138396 A:0.019801630434568146 of:0.015916525312390448 that:0.015910875720386047 tbe:0.015360359852422728 said:0.015160986754038977 as:0.013025166221759182 great:0.01268566826953067 or:0.01156706975880376 by:0.010555578561054609 first:0.010199548344881999 in:0.00978977055120937 large:0.009054515254594596 one:0.00884629266842498 this:0.007647241227973118 :0.10996623270679659 +far:0.07296130502846236 such:0.06755343617448314 well:0.06476697778077747 and:0.05662593586512161 soon:0.028818657450980795 thereof:0.028813374881312994 but:0.02792273428269525 long:0.026105183972023657 it:0.021363823600980526 so:0.019459008929427122 just:0.018940354133553463 that:0.01854629612335549 known:0.014396900768235786 described:0.013862977662850471 much:0.013765691956569445 same:0.010635053271203536 manner:0.009919841243839397 year:0.009852413223378364 them:0.009757197494611161 :0.464932836156138 +to:0.309724091299344 will:0.20608709110331475 may:0.0825882899808565 would:0.06427335377951077 should:0.046851575139153126 can:0.043916358174714135 not:0.04116896090498154 shall:0.03804061784171301 must:0.033884507511877986 could:0.02163955086736572 cannot:0.013144697109137522 and:0.012386328965690127 might:0.010551825987059614 it:0.0066550057101735696 that:0.004410567492452464 never:0.004056940367803538 only:0.004017781131218754 also:0.003393992741356053 then:0.0033211116442094153 :0.04888735224806743 +the:0.4896724938656156 and:0.08706381115079534 a:0.052150868572908404 or:0.037051663484655765 The:0.03140193606258804 of:0.026917836481433907 tho:0.02223090130049861 other:0.017366958245828863 large:0.013504364730242965 good:0.012346988037220025 great:0.011157617357183581 in:0.010835768650583538 every:0.009266157447060339 tbe:0.008986646253797246 their:0.0072003686267814605 any:0.0070527289661948215 that:0.0069757589564135546 some:0.00636140952928727 present:0.006137424276185287 :0.13531829800472536 +of:0.19468208943550597 in:0.15658742180423624 to:0.11430755013863486 for:0.07506032943507936 and:0.06790175235088303 with:0.055269988978503104 by:0.032037086861765804 that:0.03141388821221141 from:0.029034296017778495 In:0.023492975581549017 on:0.023238707618396658 all:0.019437403358078923 at:0.017710354428730684 as:0.01645773044450882 upon:0.013994327621358814 under:0.011994770558168529 up:0.011535114679168288 make:0.01007819557941089 have:0.009801182896662283 :0.08496483399936881 +the:0.11919516938815296 of:0.07230453158552728 and:0.05781056740443249 a:0.043018564803886335 to:0.031305092790907506 in:0.020848713353460488 at:0.014270110001066288 .:0.012526810245749479 :0.012413283442322082 for:0.011719122709941797 by:0.010808400946589808 or:0.010404172990115616 The:0.01003576004804544 with:0.009811868184449042 tho:0.009295902015355835 was:0.008924239095331684 that:0.008672304223433876 is:0.0085591147338948 be:0.008335143826716943 :0.5187411282106204 +and:0.09787071543084067 that:0.03991205090281645 made:0.031221506457054484 is:0.02912125731490028 was:0.028890693791197214 placed:0.023433768096613405 as:0.021235169506767154 be:0.020980966078724454 or:0.020654644189757747 it:0.020370894604110082 them:0.02026104908955177 now:0.020235367218671932 up:0.018067424186665796 are:0.01741614296069905 him:0.016338116787566907 out:0.016198840522810645 but:0.016073331244865086 not:0.015666419619017713 down:0.012831635836605852 :0.5122200061607634 +due:0.07114920945693874 and:0.04825650361885943 called:0.046489543362799916 made:0.03242172817606828 based:0.030518141291967702 looked:0.026775088467441404 look:0.025901448636838596 depend:0.022223340857962483 depends:0.02070650090272256 in:0.020625989656310444 put:0.020609094801343413 levied:0.01925172240069229 down:0.018859871849580056 out:0.01647653224226185 placed:0.015951641970778467 call:0.015245524183087208 dependent:0.014439370506637319 entered:0.014094979972994005 taxes:0.013782471024488473 :0.5052212966202274 +the:0.16807735899698817 of:0.10541662057906837 and:0.05138367848570702 a:0.04141865232648221 to:0.0385989743764065 in:0.026264864977736738 was:0.019530675665220657 his:0.018900421021236905 be:0.017373825006196972 their:0.015767721170721456 for:0.01557246589796783 with:0.014071419046630446 is:0.012922913111931644 at:0.012690452250034052 are:0.010702713108721902 .:0.010158075558988393 Mr.:0.009672788574483367 tho:0.009612591781990074 were:0.009549306361446321 :0.391314481702041 +and:0.21226249235030537 days:0.05694857549840867 that:0.05182545991941972 soon:0.03819003299298488 time:0.029744129988399766 but:0.025885547518912547 it:0.023178283052945645 immediately:0.021761303881491667 and,:0.021215057357156477 or:0.020873806160144965 day:0.0208122356701155 shortly:0.019218655286427456 look:0.019198276668428948 years:0.01884496937538286 until:0.01846202217908009 one:0.016948721850510596 year:0.016060229772888557 months:0.014366302794863643 long:0.013631537944712514 :0.3395723597374201 +it:0.11374322064888397 that:0.08849285012647748 he:0.07063955931144668 they:0.06949213004085569 which:0.06736589041601566 I:0.052851628784311155 there:0.052636319515748785 and:0.03940645560462026 It:0.03496997626600035 as:0.029539693226368003 one:0.021375715078995033 who:0.02131540234433632 she:0.01825176246873039 what:0.016375602637648534 nothing:0.01601436614232326 we:0.014986875889322562 you:0.011323834703834875 man:0.011087536301107122 Nothing:0.011076268021484523 :0.23805491247148938 +and:0.10999824606084053 of:0.055487373046750915 to:0.03575906768229245 be:0.032793999071403 is:0.03248644762165545 that:0.03229165544086935 all:0.030101271692029603 for:0.027300310326139082 have:0.025937995274719607 more:0.02591456943045066 was:0.023423363130106657 or:0.02259805102350258 had:0.0213875555737218 only:0.015762349901327938 has:0.015470451579596015 with:0.013950674303187947 are:0.013867528192592658 which:0.012989545733364962 any:0.011415614184483688 :0.4400639307309651 +will:0.23182708005896652 could:0.1782163357672354 would:0.13514607954118743 should:0.12616265782596803 shall:0.08217061144200861 may:0.07040381908423446 can:0.04454091221278924 must:0.03249972873665781 need:0.01576104156172084 did:0.012696211291347766 do:0.01228216163184422 does:0.011908458104831007 might:0.011860043342929148 can-:0.008591098044530905 it:0.0037251442917356913 can¬:0.003598336048022955 if:0.0034147764704130787 is:0.0029392161997355516 and:0.002833314941137123 :0.008422973402704226 +the:0.4388145213687439 a:0.07529631290765876 of:0.058999185480922235 and:0.04383396073351333 all:0.030387535840887707 such:0.027465414313895768 The:0.02103187333738111 tho:0.020078990818764565 other:0.01823872408099744 to:0.017574314813710672 their:0.016563062964501135 with:0.016508196339694584 its:0.012806717028368496 our:0.012098686287296701 two:0.011937182528943406 in:0.011845648120264198 his:0.01145499441846788 for:0.01144121849786358 no:0.008590868676743059 :0.13403259144138152 +went:0.06527228071368989 go:0.05619934446464802 came:0.040550395705713206 back:0.03555337887687652 it:0.035376220595961315 out:0.03490526632483226 put:0.03355619440406013 down:0.03042882513856963 come:0.028160683632563837 them:0.027165266356164442 enter:0.02685927818294859 up:0.02683395703545789 brought:0.02610450155923051 way:0.025650479473236742 taken:0.024297963337896748 get:0.02381342012574062 entered:0.02315017182132224 thrown:0.022312163284405207 going:0.021115908751936613 :0.3916943002147456 +of:0.35247685110442434 in:0.14168005351824395 to:0.06964645212535332 In:0.0505631817081963 for:0.046570470003582734 with:0.04406814810969513 by:0.0382372871337376 from:0.03693876347072933 that:0.02914704524354373 and:0.02604120301655166 at:0.023647910767794666 on:0.02042569516565466 upon:0.0173557899302323 under:0.01653143521234347 make:0.01575393451211918 is:0.009020413040052539 but:0.008513688086631185 With:0.008143413552117368 To:0.007993062156744696 :0.03624520214225186 +the:0.3832273652140464 an:0.11141847908167267 of:0.09180239358964777 and:0.05013136902943778 in:0.0479949167352467 by:0.029475262618272234 on:0.028230483652563015 The:0.023522727332836762 this:0.021064623247546092 any:0.018789230159060196 tho:0.018245662049167107 with:0.017530556700435938 to:0.016944332042459577 In:0.016679865303541794 from:0.014269028130266625 for:0.013667596851882409 or:0.012829525034110384 said:0.01238207164135152 that:0.011562005741191048 :0.059232505845263995 +10:0.07498974395355282 6:0.06856556761421972 ten:0.06177865991225434 six:0.06164432026472159 50:0.05695555165136416 five:0.04951250177054757 5:0.04854594697298868 20:0.04779890544978534 25:0.03489656283339066 cents:0.027467503385499747 seven:0.027042991530725608 7:0.02497564427741856 4:0.02476964369643232 8:0.02385920271994795 15:0.02286816690137756 30:0.022826939945879397 one:0.022516174837686306 100:0.02229220087151804 three:0.021544772862381458 :0.25414899854830814 +it:0.1305836476870475 they:0.11012463065089037 and:0.0700394670636177 which:0.06171959923320956 It:0.0607142542617457 he:0.05348661294140834 I:0.04526553933237228 you:0.040871173450870504 that:0.037985601572067866 we:0.028311138277827285 who:0.024554311168022307 there:0.022229725594812424 They:0.01981820422654122 she:0.01338588622929916 He:0.012982455580687972 this:0.008927860571665771 We:0.008782004810417333 This:0.008304024097971627 but:0.006618324806368534 :0.23429553844315654 +to:0.17124814058213486 his:0.16787195934160976 a:0.1545203047000156 the:0.07127375439234039 their:0.04011344456864579 as:0.0390434746339564 and:0.036527674376694595 of:0.028240071743843492 her:0.02770523334452853 will:0.023857058078527924 my:0.022543636980906823 not:0.017513024135038118 many:0.015297734974010421 its:0.013787710352733797 may:0.013508459948539888 our:0.012748127468254149 your:0.011066256828753378 young:0.010588720699653607 or:0.010385074415614854 :0.11116013843419764 +of:0.11995858894229315 and:0.05190814595497317 in:0.04826895364987692 that:0.04493731536153755 for:0.02621329399551802 to:0.014264398237021584 on:0.01265746727886542 but:0.011455138992558378 from:0.010608200780434335 by:0.009501112514025458 after:0.008585786447328627 In:0.008138916799229592 bill:0.008011347344982048 with:0.007958936088978385 one:0.007618611554315744 bill,:0.0067307084291911914 ,:0.006169986576017955 which:0.005912943367918462 upon:0.005759226711584125 :0.5843409209733499 +part:0.03460098231342515 day:0.02935174115105231 side:0.027325531640143216 out:0.024581418040952353 one:0.024511214194856554 line:0.02143136107394413 number:0.021368615414738605 name:0.01685629123446021 people:0.014804790663200996 tion:0.013990651905367229 and:0.013552898723988425 that:0.012239051624641655 place:0.011933765138572373 all:0.011557085784512231 men:0.011302374872567028 case:0.010916164521939947 city:0.010895421695376986 quarter:0.010721362965078944 end:0.010520829880789862 :0.6665384471603918 +called:0.07987598592219887 and:0.048935832902117275 based:0.03435198940090939 looked:0.028698323393740902 depend:0.027714096328341476 insist:0.02224323931343499 made:0.022238493661761005 depends:0.02168178410316452 call:0.020512648601651425 is:0.018385980122599448 agreed:0.018253517221652135 levied:0.016876139279794512 dependent:0.015926549793057625 was:0.015543336392327006 insisted:0.015459898912450743 it:0.015441524722636083 due:0.015113873573948989 acted:0.01498845046192934 look:0.01486966801736324 :0.531888667874921 +the:0.5035882282032096 The:0.05726556203157467 any:0.04096054734884136 an:0.03730601725404221 that:0.03557109235143051 this:0.031039522298808 a:0.0302923920103013 same:0.028622867038086496 large:0.027363275241097634 tho:0.02213080127167453 such:0.01712330067837532 certain:0.015298821453410922 and:0.01427326920883999 whole:0.014098963888980045 said:0.012902074954162686 some:0.01281038125794751 small:0.010790586472165903 to:0.007871917530611432 of:0.007224962264112214 :0.07246541724232765 +and:0.2268095200814335 was:0.11429514198437024 is:0.09961642426434554 are:0.06268540309239569 but:0.05493804497620433 were:0.05206249157011542 He:0.027757545479087466 be:0.01791502521981681 has:0.017129508510209723 he:0.01608184666515636 have:0.015239331595266057 I:0.014598309726857904 been:0.012933067466148996 Is:0.012900273419581238 it:0.012144025278231234 It:0.011203493589184562 had:0.010822834127662434 which:0.010092267068308916 that:0.0099945515140673 :0.19978089437155624 +and:0.04677093228749074 was:0.04204544138106001 is:0.03740976949259965 him:0.03567572003819123 as:0.03128674812940933 time:0.030648022540630225 made:0.02604952714043616 going:0.024063026559481743 it:0.022279861639003033 feet:0.021471120975365254 them:0.02119650857430823 up:0.021035345633592096 came:0.02020773385354979 went:0.02019751686069783 able:0.01790182627941342 order:0.017750261548455593 me:0.01732449634918594 right:0.016968825130812895 had:0.015404449536585792 :0.513312866049731 +the:0.2649716827217581 and:0.0900904476804901 of:0.0693440454591546 The:0.064356415906207 that:0.059774084522083666 or:0.036403371592282525 which:0.01755338421514262 this:0.01752219976580294 our:0.01709545891798025 other:0.016350685706200158 all:0.016151175491433366 these:0.015777411443007646 said:0.015588386458076474 tho:0.013316955939141594 a:0.01138203969700044 their:0.009225813537139114 This:0.009106849397194167 for:0.00823563088218373 such:0.006733968111336871 :0.24001999255638468 +the:0.27706374240304504 of:0.15360595646969002 and:0.0751951063220603 an:0.051641507275278255 a:0.0392547810954473 in:0.029800641785628208 The:0.025759454984562634 great:0.025031919695123958 by:0.023253593710049654 as:0.018552129149830406 tho:0.014617898638788264 with:0.013599740797979607 without:0.01266950085840643 their:0.012626777881415087 so:0.012408236515871711 that:0.012286901304223505 be:0.00917513433007327 his:0.009129757803531797 no:0.00889409606798467 :0.17443312291100987 +the:0.18949400857689483 a:0.08341757640814391 of:0.060262285151933465 and:0.05164332614847613 per:0.04469628430037729 two-story:0.03841126566513791 by:0.01782132801109811 to:0.015644146846812323 with:0.015518728865179765 his:0.013553001213486687 their:0.013201066637250134 an:0.01320049323896209 in:0.012496459499943342 The:0.01166690993752066 other:0.011393524859039245 for:0.011055266893821199 hundred:0.010377490397307424 tho:0.009804486510203287 or:0.009746442068952435 :0.3655959087694598 +well:0.11482583804944232 known:0.09871763831710513 soon:0.0916505083085803 far:0.07244252345830873 and:0.05646760229569708 long:0.033191133685989645 such:0.026114132691679413 just:0.021539382495143138 much:0.018216698075154383 but:0.015820973354116454 it:0.015060478378985437 that:0.012982875435048865 regarded:0.011853385324054824 inasmuch:0.011638912473280656 him:0.010904627694769634 same:0.010576795833003501 Just:0.009621947202407478 them:0.008618852072826538 designated:0.00803461652825095 :0.3507210783261555 +one:0.0793092951769567 part:0.03499872460097183 out:0.024431206666010955 portion:0.021371839380432446 side:0.017793495858940543 some:0.014581375577805327 that:0.014192984529866021 tion:0.013643782945564628 member:0.012600961637713619 members:0.012024818404567643 office:0.011724478994255697 any:0.010701426521782015 all:0.010650397320457663 and:0.00980224438363923 payment:0.009516112361615207 account:0.009473436319125074 virtue:0.009275065279112517 parts:0.009221863249830355 end:0.009168467686442978 :0.6645180231049095 +the:0.11589684191700479 of:0.08976090928308227 to:0.06712694581197563 and:0.050466696135892615 in:0.038644593626508794 a:0.030903944965594583 by:0.022714831671304246 at:0.021386748818642644 :0.016099856336406603 that:0.015126052887340823 from:0.012272400998997249 for:0.01212503493014469 re-:0.010334460278739584 with:0.008892943152569327 or:0.008697307686552112 said:0.008676112712084108 In:0.008351690749357949 be:0.008309267078890268 .:0.007211621304745073 :0.4460017396541666 +and:0.06481505245587105 is:0.04674818526125737 him:0.036751939488046274 as:0.03602017624215258 able:0.03486351178660263 them:0.030829091271411438 began:0.02974365748106592 was:0.029636764532019282 right:0.02804181776341765 enough:0.023272738049850552 it:0.0223511190138586 went:0.02223104779077327 going:0.022096947537180743 go:0.020057909648116615 me:0.019200457932785915 time:0.018111512189689597 ought:0.017631976639138427 ready:0.017420200254116468 desire:0.01704504106614879 :0.46213085359649686 +as:0.14498892086773335 how:0.11098348212746705 and:0.09986468750702952 so:0.0743052373813599 was:0.05627385937327173 the:0.05389986434095887 very:0.04913949916896858 is:0.0386634344711061 How:0.0319379492324789 be:0.029386086409698024 that:0.02511111177588892 are:0.022824004003485714 were:0.022525716046672993 her:0.019141578497829017 it:0.01780992142836512 been:0.014939968039198434 too:0.014757355423360163 him:0.01346392954607862 a:0.013427346078166601 :0.14555604828088237 +of:0.22803256531601446 to:0.09254512391413665 in:0.07848831809645479 and:0.0643776849059998 with:0.05304133737086742 for:0.0520330501368883 by:0.04407097093638332 on:0.0435406924319302 that:0.04344763431684221 at:0.03589880989077543 from:0.03060797088637654 In:0.021638478511627923 under:0.018711503143852733 all:0.01792029190410269 upon:0.01627878098099335 is:0.016193332032206777 was:0.015566796654857424 as:0.01380184610245111 after:0.01108960866089365 :0.10171520380634523 +the:0.1449641844563986 of:0.08710595808597107 and:0.060639991043772136 a:0.038971050768985306 to:0.035497607287402144 his:0.022269846080904755 be:0.02150484315278025 my:0.020367185734705945 I:0.01891633058414471 in:0.01859493769918256 for:0.017350580101599025 was:0.01676359899750709 is:0.015084084537449449 their:0.013269247511876204 at:0.012718929570411921 that:0.01170468572340591 or:0.011400632554895979 it:0.011330438956791117 :0.01130401752938815 :0.4092418496224277 +:0.07166285558238784 it.:0.0254487720255003 him.:0.02169667783847524 them.:0.019917266992468725 day.:0.008650458131770474 her.:0.007772992716243275 .:0.0074953982116131275 time.:0.007421814512218766 ?:0.007378879962434614 life.:0.0070275762609512534 again.:0.006462777884565119 country.:0.006264016611331498 all.:0.005895045003768821 up.:0.0058873448001127435 work.:0.005764202955265575 night.:0.005753724184467355 people.:0.005274548719017478 me.:0.005040286617817627 way.:0.005020612888523647 :0.7631647481010665 +the:0.7320228918431073 The:0.08507687008593073 a:0.06987529473380177 tho:0.03995435482322866 tbe:0.01560389176989404 his:0.010191447278260147 our:0.004250605596178459 this:0.00399432360908283 Tho:0.0033965918102435294 their:0.003242580458757569 its:0.0028783687898861813 in:0.0028080255211813706 of:0.002802254934395195 my:0.002782671984939909 A:0.0024085107413443097 tlie:0.0020015101222443316 an:0.0018700533187924217 and:0.0018590003246987015 new:0.0015800123769625714 :0.010400739877069904 +of:0.10272723413025343 the:0.07732937507487939 and:0.0741910486277283 to:0.03250215176722234 in:0.018349224333322048 at:0.017647088667854197 :0.016757487391041357 .:0.016602547968359947 by:0.016128115299520136 a:0.014655002175799531 for:0.011459671722740764 his:0.009776299255705315 was:0.008597594288513874 Miss:0.008536017405278968 with:0.007993566651852652 as:0.007858575992868475 be:0.006293605989584094 from:0.006247851726970108 1:0.005773531300669819 :0.5395740102298353 +the:0.100731908945321 of:0.08216765947014625 and:0.06191109485357465 to:0.047463813392228694 at:0.030887619306323073 in:0.028680316711024553 a:0.028543647500569216 for:0.022400954456441344 .:0.016829661971335962 or:0.016446850839481858 was:0.013788280356377207 be:0.012458666642288788 by:0.012163641848659175 his:0.011562573034290667 :0.011315363577149597 not:0.01112843293628849 Mr.:0.010294910266986264 with:0.009723495337290325 from:0.009621588785920492 :0.4608795197683024 +as:0.1746515261116053 if:0.13676914537315316 that:0.13061914871391528 which:0.11366584595794624 and:0.08197756747552004 when:0.06568764369880133 what:0.03033605772743791 If:0.025994692477854808 but:0.02592050355101275 where:0.018866304761213815 whether:0.015892537114236806 than:0.014023959267746645 whom:0.012435060822168215 because:0.011893882213267776 unless:0.011661692091249214 though:0.010851865328316172 or:0.009628372693886987 before:0.008813602680265063 until:0.007790946745090577 :0.0915196451953119 +in:0.31448307668514924 of:0.1504695712078477 with:0.05561702756697595 In:0.05437728874595901 to:0.05191585483452727 and:0.05149237312245477 for:0.04297889641622676 on:0.036167104578199924 from:0.03173589975903895 that:0.021321261756629045 by:0.020337715556590464 at:0.020035796768099048 upon:0.015248510297097064 into:0.014890638448981834 up:0.013848282717758053 give:0.010777189698072646 made:0.010258251463014432 as:0.009787557283152344 all:0.009205879983301116 :0.06405182311092433 +the:0.21622142129768493 his:0.1369347831413743 of:0.09977107770072598 my:0.0811880953832923 a:0.05944491470350855 their:0.058582672019051645 on:0.04473774778187799 her:0.03438876381823791 and:0.03325118553789418 to:0.029474234552864697 your:0.022016407529974885 whose:0.021342262495203636 our:0.017894896130563175 its:0.016952648127685918 The:0.015789568822639835 in:0.014978510698910999 tho:0.011381213748492124 this:0.008069026615237248 imperative:0.007576481580402794 :0.06900408831437689 +and:0.07746844583214309 of:0.035491201063981855 the:0.03526847645101384 said:0.028568899201759566 a:0.027999764237217287 to:0.027785684792050517 :0.027782055081343442 for:0.025768573454469427 as:0.025573427294220127 was:0.021525088639999364 be:0.019041173672166897 it:0.016660042768268844 t:0.015871488773286077 is:0.014934075959258197 a.:0.01423678701136721 by:0.013913679769965132 with:0.01363434689218081 such:0.01329787034756698 .:0.012962909463064021 :0.5312160092946773 +he:0.1889323265521547 who:0.06867351035506317 I:0.0636153955559948 and:0.050714313695259 they:0.047340223124899085 she:0.04593942067505641 He:0.0402651009693693 which:0.03794835116769873 it:0.03139019755989897 that:0.0278542584650627 have:0.02588937928397428 be:0.02266972686021907 we:0.01570503183964979 has:0.013447632114995315 She:0.012389389741270226 ho:0.012034619486402278 had:0.011820567577288613 It:0.011547400280308866 lie:0.01106202687266551 :0.2597611278227692 +the:0.08741288820481248 and:0.07392080242938477 be:0.0572668144792991 was:0.05686739458441792 of:0.05297029938296901 to:0.040095074017987696 is:0.03448309022071693 been:0.028380973754521515 a:0.02485235362607966 are:0.02226522268065813 were:0.019682022343204007 in:0.019454144698829248 or:0.019273705289081854 as:0.0158232132157123 not:0.012361914460680723 being:0.010097596398749334 for:0.009388164492904385 :0.00930537568905371 their:0.00894740846790883 :0.3961515415630284 +of:0.24771856616623836 to:0.10055514755145552 in:0.09984480279807748 and:0.05814117240642057 with:0.05158849496637837 for:0.04613065771486411 on:0.044432355864291194 by:0.03519649785437645 from:0.03338388255327628 at:0.03070401576666744 that:0.026848878623973782 In:0.02041195271981872 upon:0.015248471773457326 as:0.011599582931726849 all:0.011326016994932605 or:0.008867228292995478 up:0.008407673252508876 over:0.007381477118522736 into:0.006992770039889695 :0.13422035461012818 +he:0.1426932680844266 who:0.08623181560638202 it:0.08488459740677887 they:0.07393589911188367 which:0.07117413087401218 that:0.06798248810924624 I:0.048863941661012524 and:0.044330514025163026 she:0.0321190981528069 It:0.030029335080118656 He:0.021033472293698143 we:0.019816822725852983 what:0.01610737473103847 They:0.010011016397073073 ho:0.009228861857358812 1:0.009007774507109436 have:0.008702795528643243 man:0.007362691447378473 lie:0.007318183097102502 :0.2081659193029142 +to:0.31019601080253456 will:0.13793678134185958 would:0.07774183426288846 may:0.07078528459128908 should:0.05127128910568003 shall:0.04901700088221223 not:0.04594340671139167 must:0.03257846389794495 can:0.03230794200897745 could:0.02086203652199685 cannot:0.017984019065961077 and:0.017474170306863105 might:0.013535476571922157 it:0.006941357203389574 never:0.005186754057084183 that:0.004968373522249409 also:0.0034185027334872305 only:0.0032209125075107173 soon:0.003102154139878731 :0.09452822976487903 +sum:0.03352282876311118 number:0.028116684882597106 line:0.019995206059833036 city:0.01946514558931857 out:0.019275318828420953 day:0.01666865340772654 county:0.014872697538657208 amount:0.013254184849875051 Board:0.01252325449624941 town:0.012449555905674143 side:0.011663975251122375 part:0.011517157473718155 County:0.011460540331966697 state:0.011087331502382173 City:0.010878919191854432 purpose:0.01081028255427907 and:0.010297866493795984 way:0.009848747943663767 name:0.009522170936943183 :0.711769477998811 +they:0.14071655584209738 we:0.11448903069042338 he:0.09329912250909946 it:0.06365682031556155 you:0.058089362767658644 who:0.045370150046554085 I:0.043510217590717576 and:0.04228866422534342 that:0.038490632326881755 which:0.03640566717846265 We:0.03168381506074124 one:0.029551805630490393 It:0.026114539318610182 she:0.01761203143468445 man:0.01743983392986963 Ameri-:0.016929650336676316 They:0.013947126351827968 You:0.01390082044464756 He:0.012434100233047954 :0.1430700537666044 +to:0.3820733437017458 a:0.13909783232465753 the:0.07481008794080031 of:0.050935456459723444 his:0.03784581107109413 and:0.019049904892456063 will:0.01590658740841965 can:0.014978351617568473 their:0.014351293479423323 this:0.01221905767745995 in:0.011642320576547285 one:0.011157854305783529 for:0.010754224176674747 could:0.01005177195153854 by:0.009546102958454738 her:0.00921267302912974 with:0.009198628514022126 our:0.008224923834352992 that:0.007865733309364957 :0.15007804077078268 +street:0.02712386231982471 State:0.025827904886857805 day:0.0230391967721866 city:0.021035114592837224 north:0.015766140537240386 Hundred:0.012555129936284304 state:0.012045731505085207 east:0.011738414423241438 White:0.009466586516576609 2:0.009462668936453757 land:0.009268819144041169 dollars:0.009257828834766493 county:0.009169564784691856 North:0.009098294345358948 on:0.009008639533255768 3:0.008780819387304283 avenue:0.008573282101282708 house:0.008295918271982112 feet:0.00808781253622904 :0.7513982706344996 +the:0.1454500361787387 of:0.1080247151493501 to:0.04516715868785427 boy.:0.036249098323069925 and:0.03403580073245388 girl.:0.032660326140049385 a:0.03171979252021135 in:0.02714044436566853 for:0.02365213940166824 be:0.021942286684630472 their:0.021087116084698817 his:0.019774122064073623 was:0.014637031197642503 with:0.014008395154201525 are:0.012730720509515858 is:0.011363112041341867 as:0.011357870543086747 from:0.01063391638067422 were:0.010589399829418696 :0.3667765180116513 +and:0.0613647763407413 away:0.05552870617722476 taken:0.036659481703679414 them:0.03245257320743252 him:0.03133313750614208 returned:0.029737165986360507 it:0.027414201353757765 come:0.0267269552555555 arising:0.02655580975088971 miles:0.023952440413622954 came:0.023644810619677287 suffering:0.023354852428090548 feet:0.02206653324735653 mile:0.021033922490932704 up:0.01984314469349347 removed:0.017659369762396515 comes:0.01707930495730231 out:0.016681688267950995 received:0.01595060134037965 :0.4699605244970135 +of:0.2018861596609694 to:0.12731685474131108 in:0.10860604081297659 for:0.0755281397197558 with:0.050202954096605516 by:0.04957062788561719 on:0.04826344890754179 that:0.037286225436805064 and:0.03545248188271544 at:0.030779307731656203 from:0.02646332399850971 upon:0.019301742404870852 In:0.016476054289784537 make:0.014679040450304303 up:0.013777507832106618 under:0.011977271672046826 have:0.010792721698124721 as:0.00993121923729838 about:0.008536698781525394 :0.10217217875947457 +the:0.1686254608388007 of:0.08510631124515454 Mr.:0.053063968456177904 The:0.05290176461656073 and:0.04281351925879434 that:0.03659363717531167 a:0.027376597759942865 this:0.016009104250207996 in:0.014329796242200724 :0.013577096541793277 .:0.012332809689052695 Mrs.:0.011483371514010961 tho:0.011366564416127033 to:0.010938551223696477 for:0.010273564804762044 which:0.009103350770352783 as:0.009022855831525262 his:0.008831867202298479 or:0.008219518012985871 :0.39703029015024366 +the:0.11391962350555972 and:0.10272444605113158 of:0.08592011555783853 to:0.06797423696326832 a:0.03607189785890624 at:0.02242930320257096 in:0.019920647325172316 .:0.018654350922658276 by:0.016937386366786565 :0.01496628280448505 with:0.013212513672063938 his:0.011522412404859792 or:0.011508154814635633 The:0.011330316101506673 for:0.011219679981249802 Mr.:0.011181557098832657 on:0.009999438749257374 from:0.009611683616069927 be:0.009355378439576824 :0.4005405745635698 +and:0.05913199685057904 is:0.04141133840769876 able:0.03861043716674725 not:0.03251825766944191 necessary:0.029980212972992082 him:0.029557511277258454 enough:0.029499246989468143 them:0.027792237469383425 seemed:0.026551795915015754 order:0.02612095642517899 ought:0.026118898382845278 me:0.023214032062071965 right:0.023101882828384077 unable:0.02232338154196778 as:0.022075702852714003 it:0.02200451578100203 time:0.021924445847568114 made:0.021843572896811717 have:0.021623258057637804 :0.4535963186052334 +the:0.4789020916390559 of:0.13999764684097968 surface:0.05704600165975331 on:0.031806412158602866 tho:0.031029761525503432 and:0.03035164045289341 to:0.02066267017763428 their:0.017931668172576132 said:0.015414387957205162 in:0.01529898929542343 The:0.01403720073491425 tbe:0.011448413696131223 or:0.010962444343693652 a:0.010846891213392194 for:0.010499841024251288 his:0.009377094774752653 street:0.00804708024524345 other:0.007473060989216861 by:0.0063553979641392125 :0.07151130513463762 +or:0.160128727469792 not:0.10005318774242035 much:0.07686181382993684 no:0.07632981544667228 and:0.052446490041853235 the:0.050500452813838415 is:0.04962847906899074 be:0.041967238927421525 with:0.0395366626079664 in:0.03561038328106109 of:0.03145455442013218 a:0.03046101663383974 are:0.02489129358028895 was:0.02327725173810827 for:0.020188869864844666 any:0.016484032855915907 to:0.015514144353242052 far:0.014403699520415756 been:0.010063405041827464 :0.12919848076143217 +the:0.38702605449097743 The:0.1380875410002641 and:0.05162918277759758 a:0.04964308199402108 his:0.037724133254383695 an:0.03235859299858466 tho:0.031210121815891185 of:0.024467420728650692 in:0.019714473192213484 their:0.018078162504241446 A:0.018042653244366998 my:0.01652327872572756 its:0.015218405205342522 This:0.013346472598439805 her:0.012966663146269765 our:0.01258403808336521 tbe:0.011388858176604507 Mr.:0.010722554571946158 this:0.010480665499825717 :0.0877876459912864 +I:0.14653774018175408 we:0.11369715365527579 they:0.08377688414504218 We:0.06507618761349238 will:0.057526178816597384 would:0.05654155103432275 who:0.05394053303102622 to:0.052782564009822605 you:0.04103586961070311 and:0.03426145068757208 could:0.031225242201685578 should:0.026435291879164834 They:0.025507073109487383 1:0.01927955512344098 can:0.0173663423793202 shall:0.01716422486035553 not:0.01627913838861154 must:0.01619066893042361 may:0.013441760686365037 :0.11093458965553676 +of:0.2283729037948142 for:0.12906549502889836 in:0.12024086533721413 to:0.06027492137001476 and:0.055114872060034285 at:0.037790463572148894 In:0.03498382303569283 that:0.03360441564312686 nearly:0.03273655523152136 from:0.023076949914260743 with:0.021181563103238057 on:0.0162176935061666 by:0.01458877785812586 about:0.01096402856501109 during:0.010293004007822895 over:0.008304208305184205 above:0.007862840607089111 or:0.007295424826215131 are:0.006741295361044862 :0.14028989887237578 +was:0.12315082796206576 and:0.09448280967500142 a:0.08235723576723447 be:0.06751589984365668 is:0.0673366204678533 were:0.04023442277487628 are:0.03795792404125433 been:0.035479528927408646 to:0.025945845719045187 that:0.02503048008807254 have:0.02043159135031489 not:0.01940281476747932 had:0.019210633254998243 in:0.018879922590442494 he:0.017428723029983252 of:0.016986157232976935 most:0.016538655670913595 the:0.01612742775033462 has:0.015423988492788048 :0.2390784905933 +all:0.5775705922394336 different:0.07890226149577534 various:0.06367848139543465 other:0.05368411124907841 the:0.036827676807790116 many:0.028953911014500712 All:0.01726841145010995 and:0.01656941953868735 certain:0.015567959838146852 several:0.007934718046433892 of:0.006527584662881004 two:0.006144229356785946 these:0.005794230994136898 nil:0.005319679975855188 some:0.005180045152481237 three:0.005149600288014697 as:0.004887908797660259 best:0.003950245371916256 for:0.003855721213767035 :0.05523321111111061 +the:0.3649422457618443 a:0.14130720804559088 an:0.08469724509939203 in:0.05342134470290307 this:0.05006390834790133 of:0.0338091423959999 The:0.03370977392621232 and:0.03148011555983316 any:0.02864287624677254 tho:0.023031100621637008 its:0.01652980259443213 no:0.01606945993795217 our:0.014385293954360027 that:0.014259068195972304 to:0.0136898500245131 their:0.01348680898353138 In:0.012466403876605456 very:0.011303479782186347 great:0.011265171758784094 :0.03043970018357647 +the:0.17744285483819044 of:0.07666235126661289 this:0.0745305383760412 a:0.06507228456770195 and:0.04637819158510977 his:0.028265955599047255 in:0.025301556521490187 to:0.023900550669670367 other:0.022952297253649764 my:0.0214857850358561 that:0.019759671382694993 their:0.019420729340028635 The:0.019281929917267234 old:0.019007461273872473 our:0.01808036927631825 public:0.017595095292489583 same:0.01725722252687016 tho:0.016545890353678098 new:0.014032231617992342 :0.2760270333054183 +of:0.25201921515407555 in:0.1058747369121438 for:0.0913483556643896 with:0.05926140237136725 to:0.05372205647449614 on:0.0376999103283263 upon:0.03201951126988431 about:0.029350632223165658 and:0.028804467486856 from:0.0254266835830194 by:0.02294140146318404 In:0.019510736486048758 over:0.011975416427465673 do:0.011815598477474336 that:0.011086948173906272 against:0.010338705305147975 at:0.008519392172332486 or:0.0077018283459883725 under:0.007065805866893497 :0.17251719581383457 +was:0.12538757685123444 is:0.11093625669382531 a:0.09230033720517655 be:0.08300575249513671 the:0.07702023509219437 are:0.07487887039726586 and:0.06281714462008432 were:0.04953141586533074 been:0.041302276662729974 not:0.03288920645964247 that:0.023746665683197676 Is:0.020371747713863117 but:0.018864131699762265 it:0.01762958676380343 being:0.013636150517795556 became:0.012914387809972007 or:0.012682474479511258 came:0.012315103432290146 of:0.012025009372716965 :0.10474567018446683 +it:0.12792814770140024 and:0.09359578911504852 they:0.08207814381680827 which:0.06059374839938419 he:0.060462965545369646 It:0.05606261654014705 that:0.044145310593665534 you:0.042808074233995824 I:0.03987941914749322 there:0.03697499404128633 who:0.031034967377642733 we:0.02147631479873283 she:0.014421286603096032 They:0.013900185945083932 He:0.012928964457908063 There:0.012011552121064015 but:0.011192891120031656 as:0.010007998937691021 this:0.006895121692501243 :0.22060150781164964 +the:0.11919516938815296 of:0.07230453158552728 and:0.05781056740443249 a:0.043018564803886335 to:0.031305092790907506 in:0.020848713353460488 at:0.014270110001066288 .:0.012526810245749479 :0.012413283442322082 for:0.011719122709941797 by:0.010808400946589808 or:0.010404172990115616 The:0.01003576004804544 with:0.009811868184449042 tho:0.009295902015355835 was:0.008924239095331684 that:0.008672304223433876 is:0.0085591147338948 be:0.008335143826716943 :0.5187411282106204 +has:0.1198504751666301 have:0.10181682079443477 and:0.08646689284059328 be:0.06867130061139673 had:0.06615699348612411 he:0.057852990885196215 I:0.045700687038712134 was:0.04547065977428993 is:0.038921363338553415 not:0.026773275286871474 been:0.02564274655533252 it:0.016647988640549893 are:0.013256418728848352 who:0.011016778480340274 He:0.010832281207675248 they:0.010745710867993377 were:0.009259921490061983 but:0.009258430863177937 she:0.008967962897363015 :0.22569030104585525 +a:0.2773125696183052 per:0.2501122569121538 the:0.11693681337555252 one:0.06789528022132468 last:0.04748066398178086 every:0.03640939243478771 this:0.029770651360381456 each:0.02728892004484853 next:0.017999015897374564 past:0.01335648733485077 some:0.012315251070618838 that:0.010963120250818683 first:0.010839847454393967 other:0.00748844550848766 another:0.007196163193342844 and:0.0069151388351343405 tho:0.006780252726517429 same:0.006712010559080364 half:0.005802427310392608 :0.039425291909853166 +three:0.12913282036460016 two:0.1102998868611297 many:0.09233215701859099 four:0.07371525653504621 five:0.06816960487016761 several:0.05070270740844606 few:0.05069573371489784 ten:0.04760418259647772 six:0.040436325262005045 twenty:0.040161276729260634 of:0.03663934268286725 for:0.026446675226313613 seven:0.024405234439752135 eight:0.022012613762420568 thirty:0.021369854375076776 some:0.0201893814178872 hundred:0.01899730059911173 forty:0.01532654860564416 fourteen:0.015085073947087933 :0.09527802358321664 +and:0.09500881008555331 well:0.06206658951236029 regarded:0.036935028935535894 him:0.0314142794209011 known:0.031077052056542338 soon:0.02700320061470986 it:0.02623085774473942 is:0.02438162343435629 but:0.023839390993020203 used:0.021720637341540703 far:0.02045890976727103 just:0.020384524333195254 much:0.01971667289504282 such:0.019521581813054578 them:0.016090407278819097 was:0.015694381145043425 so:0.015081118446204548 act:0.014529263549522683 that:0.014487886332689187 :0.463357784299898 +in:0.29456608312074645 of:0.14293701137887002 to:0.0597169937486804 In:0.05313745083119593 and:0.043860172894610985 the:0.0387789047190661 on:0.029983265217017153 with:0.02428809783055273 from:0.02383661966192945 that:0.023628385285736745 for:0.02312554154634779 at:0.01635098603665068 ap-:0.01451341031584524 by:0.014115323787990677 all:0.012929198003339836 or:0.012136938885510748 a:0.011439891640142153 under:0.007232284976429088 into:0.006494639850211604 :0.14592880026912622 +as:0.07118195092251929 and:0.06796259473034402 able:0.04764639155532529 is:0.041674196831505375 right:0.03494531188917543 necessary:0.03443404112111838 enough:0.03260931520679137 time:0.029339652618574758 order:0.028529371900123338 him:0.0284472808096437 required:0.027016292947063245 not:0.024798977381722768 them:0.024756962945283283 me:0.023834762635547443 going:0.022716264048198452 go:0.02123412747561211 power:0.020981704851951114 was:0.020205751879661574 unable:0.019559453119997534 :0.3771255951298415 +quarter:0.5055231479218378 line:0.04487746572620702 corner:0.019606841932500504 side:0.018227267329735813 county:0.012673385760700625 city:0.01212296191464136 feet:0.011989580229270188 out:0.011370389509271104 south:0.010741439758869068 number:0.010263949026168062 term:0.009433673863290365 lot:0.00912859473517423 House:0.009086252735367992 City:0.0085574185510845 one:0.008322111085402553 cost:0.008285847435747416 County:0.00799176250131567 rate:0.00772395535557653 center:0.00771146106760558 :0.26536249356023356 +of:0.17567686096693286 to:0.13505500135212706 with:0.09776028470527535 for:0.06137997289698721 let:0.04834152793852829 by:0.044645135353262824 Let:0.035676857825326716 among:0.027765560695600384 upon:0.020341682829827536 and:0.01818149986172999 from:0.015216012998932157 against:0.01215972260899072 in:0.00976752836881593 between:0.009334436403331469 told:0.00867860398791101 tell:0.0086706104478513 as:0.008283756795521712 or:0.0068534647422599905 that:0.006648029359118753 :0.24856344986166873 +two:0.11539685045740611 many:0.08680769600006578 three:0.07373837089477175 few:0.06019163951523519 four:0.059596027995343234 five:0.05732343703436018 ten:0.0532258933821487 twenty:0.049618724505801515 of:0.04829409793045736 the:0.04165228974974295 several:0.03909244978612899 for:0.034267995151687616 thirty:0.03340755161053951 six:0.023073766507795777 some:0.020925651658488698 hundred:0.020553454007798365 fifteen:0.01962221799676419 forty:0.019222224083159038 fifty:0.015676544761759045 :0.12731311697054598 +he:0.1849600979861008 who:0.0922958778377802 I:0.09160380475178262 they:0.0773297511303553 have:0.07336007067483424 and:0.04683300596007962 she:0.041702385581031405 we:0.036046113743975816 it:0.03280738629135139 He:0.03248822496264931 which:0.029874758945345754 has:0.029548974560147462 that:0.022587782305674608 had:0.021672593765851934 never:0.016545423583233708 be:0.014401355964823592 ho:0.014016949605737669 They:0.012803109421636902 It:0.012525604675094736 :0.11559672825251292 +of:0.10729487215741536 his:0.06809113592454119 their:0.061136284357984606 the:0.06106017021521492 high:0.055346074129654074 and:0.044836865278626646 low:0.031511117531472205 her:0.022218294471697774 a:0.0191851582910673 other:0.0185889627604099 this:0.017438931366798263 for:0.015944206708262073 public:0.01590656505997003 much:0.015888704564532046 to:0.015747123518910156 any:0.013744753189744843 one:0.013729301608734607 with:0.012996682752932196 two:0.012630769190867802 :0.37570402692116406 +an:0.13492118527748054 of:0.12344300019972225 and:0.10255313876416465 the:0.09228987545520391 in:0.03664257907536176 his:0.02485363936053008 her:0.02128801849978874 man-:0.019154545652292288 An:0.01701427572487407 The:0.012805648443628937 dam-:0.011970968256884611 In:0.011519264238983236 .:0.010538313838678667 to:0.010137165404536151 a:0.008972837071989485 on:0.00886819846142989 with:0.008074446025942355 encour-:0.007325550328081198 our:0.007321177853730563 :0.3293061720666966 +line:0.06397357301918485 side:0.0289745823745565 number:0.026566855756701997 out:0.023042832160949156 corner:0.022345265776272286 part:0.021356490636416113 city:0.021261822128473898 state:0.017165713395565333 name:0.014487361216231837 people:0.013895788528244604 tion:0.013621470047516883 House:0.013498409674328018 amount:0.01332600016347809 quarter:0.012736840371841082 Court:0.012528477641641849 favor:0.012356685094737458 that:0.012351734313651488 one:0.01224735748799154 place:0.012116396253241485 :0.6311463439589755 +the:0.4071374189315913 and:0.06449181461132415 of:0.02892866618288876 in:0.028670005984162618 The:0.02603617389223924 tho:0.024993820467459137 a:0.023579040051412606 to:0.01755553213771617 on:0.014626070241060114 by:0.013447843485786471 or:0.012794166593089693 tbe:0.012024509152999897 :0.010353482361299817 that:0.009291482237329618 In:0.007938246807075932 from:0.007526799010378873 other:0.007469196869028889 all:0.006409533041696086 for:0.00626887758057738 :0.26945732036088327 +the:0.39749834532651884 a:0.07520030034269234 and:0.05540858759821703 The:0.03273515726769502 tho:0.030061875542463562 of:0.020144331424922633 tbe:0.014929647509541684 in:0.014268129706664795 or:0.013333166761078447 .:0.013287381914101323 an:0.009000188755386574 to:0.00880680429595084 :0.007943763822197133 Mr.:0.00773879605474787 by:0.007328417831573476 as:0.005922572098978465 for:0.0047526933692942485 that:0.004736121968310169 on:0.004594595720579333 :0.2713091226890862 +number:0.11225392566757086 amount:0.09431920510695822 out:0.051707821844787 plenty:0.03213227591965702 day:0.02784024857083244 thousands:0.027535257443457757 piece:0.026787939638134747 deal:0.02356791695991733 hundreds:0.022710545960330744 time:0.021280740421963384 part:0.019919388246236316 kinds:0.019318517112140828 point:0.018860809396588542 matter:0.0187146404227975 state:0.018560860272329182 purpose:0.017882772249009672 cost:0.017715061888360608 kind:0.017511313201210587 one:0.017506637683147478 :0.3928741219945698 +of:0.21460207599169936 in:0.10658880491566006 for:0.10524794117099781 to:0.09867460748253869 and:0.06249778714240579 that:0.058669214014630745 with:0.05165997710561661 by:0.03849735926780498 In:0.02821424650916093 all:0.027324677054783295 from:0.017970123939650154 is:0.016677500651410448 have:0.01648332472813859 under:0.01339885435143693 at:0.012718872203147706 on:0.012313755809687353 as:0.011562370816941406 which:0.01148804054414576 but:0.009570427321633436 :0.08484003897850993 +hundred:0.016706620822272263 feet:0.01387542051479014 and:0.013676211206737378 ;:0.011925015262146376 up:0.010503375492919964 street:0.007299166397475637 him:0.0070803184656625644 day:0.00691035646001464 time:0.006762540198723268 it:0.006207572818432802 there:0.0060796581067635675 out:0.005993456089401849 them,:0.005870025379009035 mile:0.005593546584925424 down:0.005581882038137357 ,:0.005274190762815154 them:0.004929252510326817 it,:0.0049249930382286485 years,:0.00491158272222727 :0.8488948151289899 +the:0.11919516938815296 of:0.07230453158552728 and:0.05781056740443249 a:0.043018564803886335 to:0.031305092790907506 in:0.020848713353460488 at:0.014270110001066288 .:0.012526810245749479 :0.012413283442322082 for:0.011719122709941797 by:0.010808400946589808 or:0.010404172990115616 The:0.01003576004804544 with:0.009811868184449042 tho:0.009295902015355835 was:0.008924239095331684 that:0.008672304223433876 is:0.0085591147338948 be:0.008335143826716943 :0.5187411282106204 +and:0.036163001301143326 miles:0.03426311212625663 free:0.03330978850321795 far:0.027878204138329216 away:0.027612474438655048 suffering:0.022457202217289057 him:0.01978041441012929 them:0.019452101850619567 or:0.018413834246186648 it:0.017667545223036624 taken:0.016172371544295145 come:0.015434205859242982 out:0.014632990848161971 made:0.013646733411622508 received:0.013193041403157992 feet:0.012967307522593894 came:0.012865443983456806 years:0.01262667261658779 up:0.012462096192195415 :0.6180014581638221 +as:0.14210116488388957 and:0.12908518061368207 that:0.12596367029411398 but:0.05157115898692573 which:0.04873182151248105 of:0.03838145149009324 if:0.03163687528505305 when:0.026936160474744272 than:0.025440075731883 for:0.024392665406082207 to:0.023449821395409364 Be:0.023266316071434992 do:0.02034393788795826 what:0.020268507787942043 make:0.018161937387684957 until:0.015618825033441837 have:0.014171220223606297 with:0.012343070403191221 had:0.01184467535119796 :0.1952914637791849 +in:0.12584751051357324 of:0.09759502479664728 the:0.07371839375246729 and:0.055651754291004454 for:0.04744536705298647 a:0.032925964492396737 to:0.03198260274187316 In:0.029652859996176964 was:0.017176340234656633 by:0.01637913782528117 are:0.015624529717594675 be:0.015359740034713075 from:0.015332737536474472 that:0.014587063309917358 is:0.012292937239714764 which:0.011956538642930331 were:0.011584038466634639 been:0.010892258706962473 with:0.010501774296364555 :0.3524934263516303 +in:0.26597883619907975 of:0.19246304435616238 on:0.06943478244006497 In:0.0635577348175422 for:0.06108420977012193 to:0.057255618636171735 with:0.03366190497622184 from:0.031883613514326316 at:0.0274667097481731 and:0.026246410822055546 that:0.017223716401946632 by:0.016639642004328624 into:0.01349774545985987 upon:0.013333435711098972 is:0.01190590913410788 through:0.011796667890075229 all:0.00829300784776278 was:0.007348628459584506 up:0.005874754517408931 :0.06405362729390678 +of:0.07475885970460856 .:0.056433373383158195 the:0.0543698458168847 and:0.0495726673332968 John:0.026680724097273328 A.:0.023371821937578318 Miss:0.023246796556874814 H.:0.021261649178521937 J.:0.02077896895046919 to:0.02075534363729907 W.:0.020740690357953173 Mrs.:0.017943118167785488 Mr.:0.01743165638800029 C.:0.017260218158019303 M.:0.016550062467810996 :0.01557423091545696 B.:0.014287626520186314 E.:0.013392757743178402 L.:0.013373303442744794 :0.4812162852428994 +Board:0.06095980681230255 line:0.03516416084253987 State:0.032920348050625735 years:0.031128828200134434 state:0.024408720985860388 city:0.023763909345746185 corner:0.02350631012930468 county:0.019597513972121904 case:0.016454310782216736 out:0.01592922923123607 side:0.014452005861802496 matter:0.013435488299264537 County:0.013186513676518732 office:0.012556266865277424 that:0.011903375498502717 name:0.011628014060898896 people:0.011413508200597024 acres:0.010256704403590887 board:0.010161548113868088 :0.6061734366675907 +and:0.07134543639937005 order:0.05147758016070679 necessary:0.043422624753901955 able:0.043176055221974714 is:0.04071073661935211 have:0.036270265470887006 as:0.033850325952273094 had:0.03361864860646731 not:0.032306344278308814 enough:0.0321548261266696 him:0.0295283440686345 was:0.026751273772131854 them:0.02472551731991649 right:0.023327803521399557 made:0.022002522831883854 power:0.021538370587004623 ready:0.02069046964815858 time:0.019746938678674972 unable:0.019280453166257344 :0.37307546281602677 +sum:0.03352282876311118 number:0.028116684882597106 line:0.019995206059833036 city:0.01946514558931857 out:0.019275318828420953 day:0.01666865340772654 county:0.014872697538657208 amount:0.013254184849875051 Board:0.01252325449624941 town:0.012449555905674143 side:0.011663975251122375 part:0.011517157473718155 County:0.011460540331966697 state:0.011087331502382173 City:0.010878919191854432 purpose:0.01081028255427907 and:0.010297866493795984 way:0.009848747943663767 name:0.009522170936943183 :0.711769477998811 +be:0.3295130361737599 was:0.13219193453032338 been:0.13000380688499602 were:0.05752949884291785 is:0.055153915932334194 well:0.03992646867236704 have:0.03191906038676763 are:0.024830126264525035 and:0.021917156453116596 had:0.020702921126720866 bo:0.01965312902379747 being:0.017420817977866696 has:0.014315379738764013 the:0.013974378149260915 he:0.008741094281445554 duly:0.008732188067528198 Is:0.008718391356640797 of:0.00871303262805602 as:0.008689364501255027 :0.04635429900755683 +in:0.1854195814115219 of:0.1374274567834752 to:0.07567021334476152 with:0.06451534255051634 from:0.05377185805352245 for:0.0483948398733552 by:0.04671886645161503 upon:0.037759300313292526 on:0.03536436826755738 In:0.03287240112744027 at:0.030131351485725627 and:0.0204782915460042 through:0.01846663448577466 under:0.014484289096971838 after:0.010053743795076108 into:0.006536763564476057 over:0.005783505347276391 that:0.005230665412446388 during:0.004814242901744871 :0.165106284187446 +a:0.47545118135348136 the:0.22360969541829862 this:0.03514571884528623 of:0.031047455400364212 with:0.026805743550886562 very:0.023149608799025986 no:0.022377289954137188 any:0.017867479126857367 The:0.017418468087539073 his:0.01551523307969557 A:0.014713985815458276 and:0.011273548308301552 tho:0.00991996342236084 in:0.009909918581586283 our:0.009702358301014305 so:0.009539716048176432 that:0.009190489439427952 their:0.008267923898611272 its:0.007338763152049601 :0.02075545941744129 +of:0.1616782561737562 the:0.09116844978898166 in:0.05925200840323342 and:0.053474675551247935 for:0.046133278962236596 a:0.04523773210505956 to:0.028703029273970858 that:0.027909089784244667 with:0.016414915001311387 by:0.015512340919892998 :0.01199315218017236 In:0.011556004263603118 or:0.010155338885762838 as:0.009364292908647225 which:0.009248590037849549 from:0.007324576924368416 among:0.007145702592030079 The:0.007101521143417692 some:0.0067482671310521575 :0.3728787779691613 +is:0.13030857312070512 was:0.09680652415447637 are:0.08201999923717347 did:0.0790595326303509 do:0.07215816208255724 could:0.05799031418203049 and:0.0507887508926188 does:0.04864229928982388 will:0.04854640933576163 would:0.04155227816171379 were:0.03888568717480415 had:0.022728217386867866 Is:0.02002134604877732 if:0.01835653530257919 but:0.01782471105297468 have:0.017598658880332844 has:0.01671622045559762 should:0.012750134334889756 shall:0.01175599227108347 :0.11448965400488138 +the:0.17186949188796918 of:0.09613600487758009 to:0.06810989472881987 and:0.0671159178156827 a:0.04842755304971689 in:0.029606656037987913 be:0.02592226045891956 is:0.02133049953187464 for:0.021086273175484706 their:0.018418729535074327 at:0.018178161049898205 his:0.017948069219767125 was:0.017687920992466927 this:0.013169019954401257 its:0.013019007776548993 tho:0.011547047340633677 not:0.011018992573181827 or:0.010498610803800934 by:0.010366588313851233 :0.30754330087633996 +the:0.38051713154331307 his:0.147928233425446 a:0.10442052117321236 my:0.047770186697283 their:0.04264562377109966 her:0.04090706339160706 tho:0.023269952469500615 your:0.019810474697699882 of:0.018462857457296384 and:0.017086845167056823 The:0.014774102179981744 our:0.013280097329953307 bis:0.011717919058309913 its:0.010306440065069984 in:0.009616805425889092 tbe:0.00787171751550469 great:0.006095872819347002 to:0.005481646556173059 good:0.005452402727228646 :0.07158410652902773 +have:0.18802545236710402 has:0.1244125090729127 had:0.1165141622443533 and:0.08653824169616484 he:0.06710867951533533 I:0.06538087893516956 who:0.039744079263984156 was:0.028849823120116858 they:0.026546105725725834 He:0.025628917117666208 having:0.021794646296287083 be:0.020775000160443733 we:0.020275074546424 been:0.016721531366009405 not:0.014911571107561184 she:0.012322330891318038 which:0.012043529626730338 is:0.011583188344530402 They:0.011059506177591846 :0.08876477242457116 +it:0.16288576789038542 It:0.11117592752413955 he:0.10655335775801512 which:0.06839049783786676 who:0.046418106502005244 and:0.04297269883368993 He:0.04231713694150035 that:0.03096001050401962 she:0.03055043088882247 I:0.026381864246289796 there:0.019628059947819493 This:0.012280876741661784 She:0.01025887380433417 this:0.009351032386966348 what:0.009179778891129427 lie:0.008985506349611538 as:0.00859332283570101 ho:0.007905442124706572 man:0.007876984631640873 :0.23633432335969454 +Mr.:0.09201191306971528 of:0.05860758998305294 .:0.04193421715118342 at:0.041201750003888336 and:0.040961502775398846 to:0.038057044550965945 a:0.030188695741295464 Mrs.:0.023362805975960545 the:0.023271879073511397 Book:0.015581200116270068 No.:0.014964694719940637 S.:0.014922805819412533 D.:0.01357198817873641 lot:0.013315980962825068 A:0.01306432921544683 :0.012670256765509985 A.:0.012346096602095711 of-:0.012054719395450593 from:0.011816188626964742 :0.47509434127237526 +the:0.11524896788923099 of:0.0925010665847372 to:0.07305315371749113 and:0.06636170307455955 be:0.03413198922535878 in:0.033161704017135196 or:0.019109559089765884 was:0.018697656412292842 is:0.017777825081493396 for:0.01771534331278435 a:0.015764326654364974 their:0.015640395970730612 that:0.014386686562180485 his:0.014327837437334736 he:0.014129603075942482 at:0.014015666944662664 :0.0131403660306986 as:0.013064239410151474 been:0.012789829875256445 :0.3839820796338282 +;:0.01458927046758731 it,:0.007973265891266864 him:0.007834970369143835 one:0.007240974664279108 in:0.006989508095588829 and:0.006417396987522371 ,:0.006059091806132192 it:0.006014614548599763 up:0.005812344146302806 out:0.005395853159197619 them,:0.005290532062834904 him,:0.004938420268273817 city:0.004793760033506698 :0.004646491011450349 man:0.004641061555670736 country:0.0046164671969483135 feet:0.0044416267197611185 time,:0.004376787347733258 time:0.004358244018157902 :0.8825693196500423 +or:0.09281608464010954 not:0.07489449038795472 and:0.06381966989279982 redemption:0.05712072525321487 than:0.04070956744699515 is:0.031290210208922024 was:0.03120549101847239 look:0.029189843522936663 there:0.028131497012039344 be:0.025115877200795157 that:0.020269696419443466 looked:0.018915865781502096 held:0.018441712244567282 made:0.0184125815247321 seen:0.017010353896818653 interest:0.016524808736177798 them:0.016376147217729283 it:0.015575334311057946 demption:0.014446495703073124 :0.36873354758065857 +and:0.1417157418003202 so:0.06755684882674218 fact:0.05707173571703629 said:0.04486723127003565 know:0.04457473274659093 say:0.04048471673355019 is:0.029279944568814904 but:0.02438556998593403 believe:0.02348236877231084 stated:0.019305661733568756 all:0.019217712097723813 me:0.019031297091898075 him:0.0175758659888339 order:0.014998765855170048 see:0.01489256018742656 feel:0.014720541888046773 think:0.014424977241856658 was:0.01431732896568077 says:0.013992258106505139 :0.3631041404219543 +the:0.4280465712823465 a:0.1409730243659277 his:0.05239401715930699 The:0.028828724287151712 tho:0.027178740283961268 this:0.020370997800642845 her:0.015309965979850874 of:0.01459588510448793 my:0.014155136607323362 our:0.013428392415534292 tbe:0.012644768541346925 and:0.012554010046465901 that:0.010837512656697506 to:0.01043236788798058 A:0.01008114932157836 their:0.008822224144184062 new:0.008819977498985275 your:0.006809729383490908 own:0.006486477444647958 :0.15623032778808896 +and:0.14159728954250844 was:0.08500517674779991 it:0.08407766193656972 he:0.05261769153682924 be:0.04845915144556203 years:0.04818583548817252 He:0.043446266477725606 It:0.03805101385065814 is:0.036560881178718835 has:0.032039745519239396 who:0.026227113701722985 which:0.021586157685906795 not:0.02098418123850754 I:0.020680112132039654 days:0.017086911966578026 had:0.015976706375050324 have:0.015405975935485547 the:0.01533840273163654 were:0.015042842140765606 :0.2206308823685231 +the:0.6153564082624227 a:0.09038258956089988 The:0.045340379966246964 and:0.044842717755168564 tho:0.02598099145948049 is:0.022156378219543017 of:0.013103954335880177 was:0.01216925395091136 al-:0.012104842589681555 are:0.010763087106057894 this:0.010442359499602122 that:0.008869991785191043 tbe:0.007686202398614592 be:0.006060218595061565 our:0.005735018925328061 for:0.0052313098626148085 very:0.0050183347019996365 as:0.004952063244397746 in:0.004687553624294918 :0.04811634415660293 +in:0.2524538519491796 of:0.24634979046248875 In:0.11188146618814643 to:0.054429811022911646 throughout:0.035207665922010446 and:0.02919771182932838 that:0.02500178854412755 for:0.02441510064278877 on:0.021768334047534883 by:0.017805971984066093 from:0.016804043671695603 over:0.010578495610400982 with:0.010390108551557403 iu:0.010148172591530094 all:0.009251236219187957 through:0.00919147725174386 into:0.0086165275280696 during:0.007883566844482694 at:0.007818125315928334 :0.08980675382282095 +the:0.36796124675048597 a:0.07838306819392508 gold:0.06041721293813127 of:0.05838710747160952 and:0.055649647747900294 The:0.02977581888039945 tho:0.026956998785239664 some:0.025390637303934847 any:0.022491088600519415 or:0.022151690214135232 other:0.0217457629913056 one:0.017215193929596542 with:0.01583937759190465 these:0.013928457828121346 said:0.013870782616449891 this:0.013311325017196089 all:0.013039951434822667 on:0.012464269143518373 two:0.012279538009307695 :0.1177408245514964 +of:0.275574333881826 to:0.08636224615023709 in:0.06631904249133982 and:0.053992018225395254 for:0.04185726238848965 by:0.040432462728593715 on:0.0386621368609385 that:0.03746813623829841 In:0.02853879791593314 at:0.02784511394431448 from:0.027249043353089128 with:0.02598983508374518 all:0.014273748255081415 as:0.011953034597961125 upon:0.010404474445179767 is:0.009962155410920995 ot:0.008697425934451705 through:0.008441579399216994 which:0.00831499649011874 :0.17666215620486883 +the:0.1188820336400701 of:0.09417807580289607 and:0.07538655060191521 to:0.07033736191896665 a:0.03563690792199739 be:0.024972453990847923 or:0.024899509093903295 his:0.02076876619939878 on:0.019133014026715682 for:0.018639381490253078 was:0.017867552910372453 is:0.017807661408110517 their:0.017462364443265786 in:0.01598369068848567 are:0.014679784473706273 as:0.013747477737000588 that:0.012733139584454278 re-:0.012071296257421588 much:0.011822265381379305 :0.3619907124288394 +and:0.1254188604599592 from:0.0911805949626649 is:0.07574608958778735 or:0.05944059963201553 by:0.05653974089271092 was:0.05633151353295164 are:0.05267808791781312 of:0.04244761232992375 be:0.03884201275816154 in:0.029720174128711675 for:0.02642315714099243 as:0.025297880806322295 were:0.01898101975419124 that:0.015371189385865517 with:0.014293569822164865 Is:0.014230485949207691 not:0.0136455828855348 been:0.013365984400134291 know:0.011992576002803864 :0.21705326765008343 +the:0.8347693885509724 The:0.03751537067381073 tho:0.03671223891122175 tbe:0.013552223113700482 of:0.009353718576870663 and:0.007210553344456188 this:0.005591728772496793 to:0.004724606451150224 that:0.003836481701939657 its:0.00289955958120766 their:0.002488065542843622 tlie:0.002130312974344464 on:0.0020598892934849023 our:0.001935712654150448 in:0.0018388709145681602 from:0.0016835206812231631 his:0.0015914829288926563 tne:0.0015528411139932973 these:0.0014948930645972633 :0.02605854115407546 +the:0.13476476805868978 of:0.10335620763565354 and:0.07298982432450123 a:0.05493260493485237 to:0.03943912225916912 be:0.027111183577981188 was:0.024964516309082224 is:0.021318618791884996 in:0.01997329939240196 or:0.017463858114689805 his:0.016747288852367714 their:0.014456994452191905 been:0.014017672545055988 at:0.013647384018866159 are:0.013377045933421108 an:0.011360803488482838 for:0.011045703440883426 :0.009853875281147081 as:0.009770129219928711 :0.3684090993687488 +of:0.19456924682448337 for:0.1631345658913471 to:0.0881780051876531 and:0.08017202121592536 that:0.06661671281411313 in:0.059128629029624985 by:0.0344795919478959 all:0.03075105365821042 with:0.030264327344155836 as:0.025966332878252032 during:0.025885040528173236 at:0.02145994082704884 In:0.015235390234332003 from:0.01498663814311189 when:0.012723916863821858 on:0.012202551369672191 which:0.011370948024345644 after:0.010765606997837858 but:0.009374931244143264 :0.09173454897585202 +time:0.016925382098446226 man:0.013271266574481523 it,:0.011757079659417137 them,:0.010661778484343756 up:0.010460234916275159 him:0.010139590605554902 men:0.009840308083793277 it:0.009765861898504157 house:0.00831403106263806 him,:0.007695270534725759 years:0.0076591677083125064 year:0.00764701271008773 city:0.007395093553820546 one:0.0072263871593703745 ;:0.007188976844150171 :0.006933783265880873 time,:0.006597016767557808 work:0.006475826322808926 them:0.006468478165560205 :0.8265774535842709 +the:0.37891849081818896 a:0.2773111150678629 his:0.04857439524405589 The:0.0363650029535492 of:0.034642093823880074 and:0.025734405363109752 their:0.021685297956738826 tho:0.017493868780662572 an:0.015253219319440485 any:0.014002773729558151 most:0.012145615397892747 my:0.011758418276780319 this:0.011240730194856543 no:0.00961810116600026 in:0.009175414938693623 your:0.008988077625368048 our:0.008202435406422383 I:0.007868554677757234 its:0.00744164161827044 :0.04258034764091159 +the:0.10827285224321626 and:0.08870080307854705 of:0.07654378796298532 as:0.07601899914727774 a:0.04239111470737973 to:0.036354557417072705 be:0.029098708624609438 such:0.02486086551323051 in:0.02412061979539941 so:0.021759133747919383 is:0.0213871206641338 was:0.01854428813517412 or:0.018041820802296556 his:0.017121500893264113 are:0.011896248230315926 Mr.:0.011670635217693667 for:0.009878887779613906 their:0.009758437766275404 at:0.0092398132181 :0.343339805055495 +:0.04766854091293929 it.:0.02660267392957607 him.:0.013838195509693216 them.:0.013746024807709777 time.:0.0070818526693525 again.:0.006176229916176225 .:0.00594887393394385 her.:0.005940248138195928 country.:0.005914908433180479 us.:0.005338797325600736 life.:0.004944304450702216 and:0.004748345238587611 so.:0.004689005712666558 day.:0.004346876134777476 all.:0.004242209821008421 me.:0.004164095857280385 world.:0.00414555242043074 men.:0.00406814289962213 people.:0.004058178178325292 :0.8213369437102311 +the:0.12397170260116352 of:0.0943155434282568 and:0.04047242644896243 The:0.039121251000670806 Mr.:0.038849315117364246 that:0.03749617133485052 in:0.035552871266442694 Mrs.:0.022501402823346915 which:0.02123924194599288 a:0.01931574625006573 to:0.018732434543853364 his:0.014277305910035551 when:0.012369804522166431 :0.012284549055542177 as:0.00976422368815642 he:0.00970781880966711 for:0.00927189170209692 tho:0.009034083963245747 said:0.008744635319874062 :0.42197758026824567 +the:0.30996179444839866 and:0.12807933869943305 of:0.10594157479156543 many:0.04008340430743095 for:0.03337449258941258 these:0.02975723844244329 The:0.029727393764263248 great:0.02666673784737086 their:0.02548698213094978 a:0.024548619700131898 with:0.023843335855222483 all:0.02318586106016332 tho:0.01937099693124409 two:0.018308908133299502 our:0.017152047664887742 or:0.016736680034225876 its:0.015267876308934164 other:0.014988001737246657 few:0.01210484695388514 :0.08441386859949128 +the:0.15574291531375417 a:0.1454186557753342 his:0.1204366017144623 of:0.11479906288071318 their:0.07773411123875276 and:0.03239778641424063 my:0.02925628065761486 its:0.0284960235866783 her:0.026072778369037958 in:0.02514961114241539 our:0.019185711657078285 The:0.01796352660675249 three:0.017384073823908344 this:0.014047493958620514 such:0.012062934026302659 some:0.011913726737198477 other:0.011406740835619478 many:0.01122673657363789 tho:0.01097343798403056 :0.11733179070384753 +the:0.10092458788121426 and:0.08525013492851889 of:0.08178369169778861 a:0.03904439136399566 to:0.03801794633564697 I:0.021384958613369056 in:0.01896871376639219 that:0.01818706310098092 at:0.015848295809690126 his:0.013470652816935788 for:0.012895390403161677 :0.012728319479876722 or:0.011126523326675852 The:0.009983886071069283 .:0.009811539731391566 will:0.009656999247884338 he:0.009119493040338522 they:0.008767124924228126 would:0.008549950562598383 :0.47348033689824304 +the:0.3867877758777397 and:0.084658083994967 of:0.03369524463371467 his:0.03349307221602253 The:0.03264525777739497 her:0.03151531976147982 to:0.023627563372747146 tho:0.023386715969477855 their:0.021577598844654253 our:0.013861604244299094 my:0.013649998980010833 its:0.01337233705423928 tbe:0.010923712875897976 little:0.009469028120829394 a:0.009380384840004079 for:0.00902462907238133 in:0.008630113395254088 with:0.008542590638470078 an:0.008060022216345603 :0.22269894611407026 +the:0.1454500361787387 of:0.1080247151493501 to:0.04516715868785427 boy.:0.036249098323069925 and:0.03403580073245388 girl.:0.032660326140049385 a:0.03171979252021135 in:0.02714044436566853 for:0.02365213940166824 be:0.021942286684630472 their:0.021087116084698817 his:0.019774122064073623 was:0.014637031197642503 with:0.014008395154201525 are:0.012730720509515858 is:0.011363112041341867 as:0.011357870543086747 from:0.01063391638067422 were:0.010589399829418696 :0.3667765180116513 +was:0.10793272417020269 is:0.0793041347121151 and:0.07609202625825391 are:0.046657847943041834 be:0.04033723109896128 men:0.03187439742588367 will:0.03153661785869947 were:0.030528331613598254 him:0.02804135257436287 them:0.025194149758126404 not:0.023215223627424175 been:0.02057893307334579 do:0.01982372208655331 for:0.01866846525692092 had:0.018609225513858334 would:0.018235383884337472 made:0.01765692857758066 can:0.016327613696708623 that:0.015320769687036986 :0.3330649211829883 +the:0.11919516938815296 of:0.07230453158552728 and:0.05781056740443249 a:0.043018564803886335 to:0.031305092790907506 in:0.020848713353460488 at:0.014270110001066288 .:0.012526810245749479 :0.012413283442322082 for:0.011719122709941797 by:0.010808400946589808 or:0.010404172990115616 The:0.01003576004804544 with:0.009811868184449042 tho:0.009295902015355835 was:0.008924239095331684 that:0.008672304223433876 is:0.0085591147338948 be:0.008335143826716943 :0.5187411282106204 +one:0.1028303141280697 part:0.05963429477052991 out:0.04766456937681193 some:0.031418679026461914 members:0.030764490253327767 side:0.029940657362655835 portion:0.022063658796890564 office:0.020457735219956013 member:0.019726706386316174 end:0.019666887540649894 tion:0.018667441728710307 parts:0.016814747270460957 people:0.014112771422418794 all:0.014072739582212475 any:0.013183573287639892 One:0.013083578354183906 that:0.013024335602903442 account:0.012482348155001894 many:0.012077825070275192 :0.48731264666452345 +the:0.3290071735522707 a:0.14818153393333888 The:0.038469618301963236 in:0.034477548682390446 thorough:0.032887060455802704 of:0.030313300965115725 his:0.029050885736117023 full:0.0232049701657341 tho:0.022316451446759117 by:0.020867481464125297 no:0.019758563178267203 and:0.018459592964566642 this:0.01791787458334965 personal:0.01773444751906108 all:0.01690293661925676 great:0.01685106648707533 good:0.016174626535918564 their:0.015331504574364045 with:0.013993064140410032 :0.13710029869411344 +of:0.2490138257933582 to:0.12022283950476995 in:0.10625193530886975 and:0.05514685573505827 that:0.04895699148339406 at:0.03130149732530001 on:0.03127667906262267 for:0.028185300810596055 with:0.026412477648823814 from:0.025195993436045408 by:0.024405713009790914 In:0.022913891858028505 all:0.020043348758846117 as:0.01894862433714888 upon:0.016251382008220825 up:0.014819374589857352 over:0.01132184590674813 when:0.011230437405226603 but:0.010857513053342482 :0.126243472963952 +opin-:0.12239233396069915 Un-:0.01771028850197549 :0.013913505070336028 provis-:0.013710238762992759 .:0.008916646646687747 -:0.007490913596617244 the:0.007122715718689766 and:0.006840546242143287 that:0.005895395321649836 a:0.005743545279581159 com-:0.00574257860752362 fash-:0.005093191792690951 :0.004402356122962847 in:0.0039341864955438 Com-:0.003913904985191725 t:0.0037162543727999346 com­:0.003432035876195872 par-:0.0030502328839078392 m:0.0029475444409361616 :0.7530315853208748 +hundred:0.013633628820093018 ;:0.011172311961148602 him:0.009807052834026905 one:0.00914669734384353 feet:0.0090219372983598 up:0.00838318558829166 mile:0.007527126877816727 feet,:0.0071805242500254255 time:0.006879602834379732 man:0.006817451499927337 it:0.006300585667639516 it,:0.005903705234588485 out:0.005451849962934835 :0.00538718305729827 ,:0.005295204710281874 and:0.005240008239108335 here:0.004938150073064577 water:0.004837308913464981 them:0.004796443021708541 :0.8612800418119979 +and:0.052263813722489484 able:0.04406775732678235 inclined:0.04232933933590315 began:0.04230169910148018 reason:0.04203626925106677 enough:0.038972361713067546 him:0.038630078303024826 me:0.03741263554795473 as:0.03400858070165013 is:0.033040287320874405 seem:0.03218765078668341 seemed:0.028940032352216944 you:0.025710148172461984 them:0.02536103845744279 not:0.02332815038986914 was:0.021505660659605005 want:0.02041093464419976 right:0.020394975351723247 necessary:0.02020826622900453 :0.3758903206324996 +the:0.10404386006816001 and:0.07513754543079995 to:0.058270816853279214 of:0.04721870729301012 a:0.029956607644133642 or:0.01779348058271263 in:0.017648580149540214 at:0.014314994482778896 be:0.013820398914139498 :0.013624901186508493 was:0.012387242402049017 his:0.011160458794342652 on:0.011145031893108127 an:0.010957739655188517 will:0.01094158025917669 is:0.01008834286192507 as:0.00974874880040823 that:0.009670733752297234 I:0.009407164327059275 :0.5116630646493826 +a:0.1524811964488662 some-:0.11956272388566863 good:0.07078138511365317 any:0.06420768443942867 one:0.060324783041495585 only:0.05335109745935919 the:0.052336919876413736 any-:0.04740042013189807 every:0.04498373275870264 best:0.038771406028343836 no:0.03296137090776204 first:0.03223891048135729 some:0.02248287970726739 this:0.022455194026447096 every-:0.019852410500501374 some­:0.017800541348652617 some¬:0.01745480074364327 that:0.016776970441014796 uncommon:0.01676896534419262 :0.09600660731533175 +the:0.3785292039879957 a:0.27781446779297536 The:0.05764506831566711 and:0.03062317763374781 of:0.023806359391257956 tho:0.022337356784422044 to:0.019801883647793714 A:0.016334163889122934 this:0.009139170509940064 tbe:0.008870340239964965 grand:0.008684660479380364 with:0.008630370185978094 our:0.007813811639416097 in:0.0070752933059349135 his:0.006815295973032758 their:0.006796117264984259 that:0.005829281787306569 its:0.0057244578092614405 or:0.004708466552414348 :0.09202105280940344 +of:0.2491570102101864 on:0.12540731805564492 the:0.09597169022469257 and:0.049352818031009854 to:0.03945176194313959 in:0.037565717841223 at:0.03578638200209028 from:0.015122808195938156 for:0.012406243590935945 a:0.011231088035344765 :0.009320358094316097 with:0.00893119447831358 by:0.008552906181775967 said:0.008079786063445315 or:0.007436066299334498 East:0.007415107469039357 .:0.007264575008178766 In:0.005875143642518918 tho:0.005513163161209309 :0.25915886147166267 +feet:0.0719208472326295 poles:0.05759396229176634 up:0.04010587224329879 chains:0.0385088170079141 entitled:0.029123404981740347 went:0.027388526271997813 came:0.025857650765910022 down:0.025633262313841977 him:0.025574415868859987 as:0.024916209858287616 and:0.023917753661251574 subject:0.02185045005331621 brought:0.02171367122116056 them:0.021644069985480026 it:0.02099405133651225 rods:0.019030517253069822 back:0.018922583019034468 go:0.01891708435510451 sent:0.018892511875840953 :0.44649433840298314 +of:0.39751775156256525 in:0.07717542375979386 to:0.07057539645833376 by:0.049083679078618395 and:0.04799027198265122 that:0.04667507735485116 for:0.04421864725856354 on:0.030317260253817768 from:0.02965026686764389 with:0.027209758724315546 at:0.017536210135056334 In:0.016734812417397948 between:0.014716245540436051 all:0.012923602967653233 as:0.009906763886748847 into:0.008707657772661987 upon:0.008096576044788771 which:0.007245604329091376 when:0.007087455685375348 :0.07563153791963573 +well:0.11744102162202141 soon:0.11171474928763031 far:0.07568614178052645 known:0.07270607308319298 and:0.05082594743828054 long:0.028441490821262575 such:0.02624392935728423 much:0.025622498036069134 just:0.02362383002332919 inasmuch:0.015853484155680046 but:0.015149360036182525 Just:0.013701350355000773 it:0.013660608803403229 regarded:0.011218785660773202 that:0.0096485000467797 same:0.00922048883096709 so:0.008608767119212645 him:0.008478065858237207 is:0.008236197348045881 :0.35291871033612093 +he:0.24974093622276186 is:0.1301771513852473 be:0.08706099790110493 He:0.0731661733853905 was:0.07035448136839113 and:0.050879141575653694 she:0.032906552475716715 I:0.027150367917198708 been:0.026460941958941785 Is:0.025749427538256056 have:0.020769342221672166 are:0.01900554280857538 afore-:0.015272125966828146 ho:0.012868082217347284 She:0.01227048940568119 lie:0.011544607816387683 has:0.010124239473381827 it:0.009575880801277272 had:0.009297739960480523 :0.10462577759970584 +a:0.10722054043911984 more:0.10493687942052976 and:0.10064225277076816 of:0.06220601995517778 to:0.05464185497594228 the:0.053777346584162486 for:0.04146004036881804 will:0.02991976424805243 be:0.027810007013895573 was:0.02592961270601962 is:0.02074209580911723 not:0.019999642951638457 would:0.017122973514023646 in:0.016640841125451392 with:0.015255783344551476 that:0.01496207577155303 by:0.014763342925265335 or:0.014539164823997652 one:0.012650577788380094 :0.2437791834635357 +of:0.3488246934545168 in:0.18143453475993604 to:0.06873548905672787 In:0.05447632833521712 for:0.04127006254426423 by:0.038450148276622166 at:0.03550061659530451 that:0.03157099436256543 from:0.028743338314245536 and:0.024836181024514892 with:0.019275510538073113 on:0.01875077907394971 upon:0.011253521543675461 all:0.011251124245406897 over:0.007277972358077076 as:0.007125890001393038 ot:0.006809699883644788 after:0.005670959603087249 into:0.005650250212190324 :0.0520919058165878 +it:0.15590291243815246 there:0.0887784025092866 It:0.07904016205387611 which:0.06936908824431676 they:0.05362226352982171 that:0.04647101454662571 and:0.04420120519214072 he:0.027952982163116303 There:0.027623278151575524 mortgage:0.023443129896555264 you:0.018859539766003214 who:0.017891862574647276 this:0.014117846301193209 I:0.01363040583752058 sale:0.011818751696880098 This:0.010767348085132659 work:0.010306262168963347 as:0.009927627839447666 They:0.008978002990569422 :0.26629791401417535 +and:0.04760501293024423 :0.04511985987212109 that:0.026337965245338834 was:0.0174325050404137 be:0.015664187152764266 are:0.013510080341885437 not:0.013415626647395627 in:0.012394330962526099 is:0.012126006035349572 the:0.011905515857465696 or:0.011438236568150413 made:0.010921229654156064 as:0.00939689643065579 but:0.009229695812298733 used:0.009173913910611314 of:0.009012472897039651 a:0.008954109239291916 it.:0.00867492192917898 were:0.008496556945092135 :0.6981908765280205 +of:0.33968196515182464 in:0.09579112539749807 and:0.07001866449260802 by:0.05604217732240071 to:0.05479585704065946 for:0.045627781641128455 on:0.04379901487423679 with:0.03704378509609132 that:0.027420691143685998 at:0.026503845372586488 from:0.025621930796312597 In:0.020164292537013996 upon:0.010082975029213726 before:0.008727569591050682 through:0.007134541229100691 as:0.007121731908647914 against:0.006701835077529518 between:0.006494034334348038 into:0.006184855657796636 :0.10404132630626627 +of:0.2030788948148326 at:0.15528377200840227 for:0.1512739441417196 in:0.0942857009487008 to:0.07692911520553505 and:0.03471104715026239 from:0.030919019778141116 during:0.026551592605800173 by:0.025257409889776712 In:0.024590926104817414 that:0.02335337047845108 with:0.020288131242224176 all:0.015920091648674115 on:0.012009112392775205 as:0.011717463196073556 At:0.011255908124191222 within:0.01090194438595627 after:0.009788173712976566 about:0.008134520252376811 :0.05274986191831287 +of:0.28767355066866834 to:0.08775711267569858 in:0.08678131196995101 and:0.05160598694501188 on:0.04646139928102899 by:0.04519522654900943 for:0.044547789071328545 with:0.03396756772609607 that:0.033699232901107726 from:0.03075346596941143 at:0.027039283056790858 In:0.021061449543044047 as:0.017514234937992545 all:0.012543839382496166 upon:0.011844431150487573 is:0.00998972746569266 was:0.008814315973987914 into:0.008557199930727406 through:0.007781895704231326 :0.1254109790972375 +be:0.11133387468586199 was:0.0906522714647512 have:0.08734448151583632 he:0.08167386669249954 so:0.08139562615024307 has:0.061096378153737814 had:0.054857602454322654 is:0.05454762680006903 I:0.0492775676749169 and:0.04323906813529821 been:0.03326946563949903 a:0.031398104230589356 He:0.027566899474295185 they:0.01994702981001479 the:0.01936923150106386 also:0.018569485055748184 we:0.015077300017402283 were:0.015064974914818906 not:0.01468923835138685 :0.08862990727764483 +of:0.4025362891246394 in:0.22340505940924388 the:0.08534592678093603 and:0.045545810473534176 In:0.04344384691801612 for:0.031579611600359665 to:0.01881770969262696 or:0.014063724221788716 by:0.009159889860564662 said:0.007196235995047353 ot:0.006645440753246123 from:0.006065223803020774 that:0.005832851781812583 on:0.0056503679838997385 ol:0.004587491137668543 all:0.0044345610637605195 with:0.004307601160485564 into:0.004044792031511018 iu:0.00403318258681076 :0.07230438362102745 +the:0.11087702883838926 and:0.07468533321627417 to:0.06327435121526986 of:0.052198241244518065 in:0.03112712358433759 be:0.026482046707640528 that:0.022711483948969245 is:0.02221249774526874 a:0.021170774220401554 as:0.02005189777885896 for:0.01941103252098795 he:0.018116855577948437 was:0.017577633959882835 or:0.014624456453719237 their:0.014396546153656061 his:0.013919026172914023 are:0.01272448221235497 will:0.012591863970749536 much:0.01258340349149101 :0.41826392098636794 +the:0.21727085472685007 to:0.20004592527729956 of:0.10400134921187297 a:0.07487328362528473 and:0.04562318349339914 in:0.02374861371959688 for:0.023655849681748036 this:0.02028207432115855 his:0.014071888308913065 will:0.01391430872771783 with:0.01311927899809498 The:0.012635104339221687 much:0.012437875274574645 by:0.011160908913070894 tho:0.00940862437282341 not:0.009111569070459105 our:0.008953075152898912 from:0.007906940136874754 w:0.007513801504004601 :0.1692654911441362 +most:0.17961058531867985 the:0.1297141503525397 and:0.0877236674351362 a:0.07281266321812732 of:0.05309826276918301 more:0.045752291913100526 is:0.041520171974600825 very:0.0389739013725 in:0.03609625977543452 all:0.033553252802932206 are:0.027604682872221436 be:0.02304287179226247 to:0.02215703654980206 not:0.021747032197721894 their:0.020325631435003745 its:0.018655726445415174 some:0.0178477018972276 was:0.01662646491211534 no:0.016113555646641624 :0.09602408931935451 +the:0.17027190784407714 of:0.10585557835912704 and:0.07355927771906935 to:0.05486905984958157 a:0.04543746377447453 in:0.03128555052933153 be:0.028704485173100775 was:0.02350529800142253 is:0.02215549335554494 for:0.02077556258358175 his:0.01804639098945333 or:0.016335100594594944 their:0.015847999621030492 at:0.015526727957625254 been:0.011815834631173878 are:0.01139058447814694 this:0.010362020528084328 tho:0.01035635773045807 its:0.01000473355720393 :0.30289457272291764 +the:0.49472053565022595 of:0.05157843714416813 and:0.04656543773771338 in:0.04406285153070783 The:0.04091623835090042 a:0.03796606037652789 tho:0.02394877193114538 their:0.019366579854246137 his:0.017413273795062332 with:0.015134620342722128 by:0.014610967174045551 its:0.011764047372006044 tbe:0.011370790849786252 In:0.008726221276292372 no:0.008206661563832277 great:0.0080727789317513 on:0.008069211837397124 said:0.007414030724456975 or:0.006811664490418083 :0.12228081906659444 +the:0.485417366425546 a:0.07814683112878203 of:0.059948469905473104 The:0.04812807434953413 and:0.03437824164370841 tho:0.025242936243798683 this:0.02519032476291543 to:0.023825834773769042 by:0.016159143499205005 great:0.01045626609648849 an:0.00991322793754763 tbe:0.009599213036092067 in:0.008553763818544589 other:0.008541096442495955 any:0.008042575082759922 some:0.007945734077329934 his:0.007549623978644324 their:0.00709487753130859 that:0.006832619468628453 :0.11803377979742821 +the:0.11919516938815296 of:0.07230453158552728 and:0.05781056740443249 a:0.043018564803886335 to:0.031305092790907506 in:0.020848713353460488 at:0.014270110001066288 .:0.012526810245749479 :0.012413283442322082 for:0.011719122709941797 by:0.010808400946589808 or:0.010404172990115616 The:0.01003576004804544 with:0.009811868184449042 tho:0.009295902015355835 was:0.008924239095331684 that:0.008672304223433876 is:0.0085591147338948 be:0.008335143826716943 :0.5187411282106204 +the:0.12635858386927695 and:0.1186476626663976 of:0.05044795423616103 a:0.035926221423272904 I:0.03281526550194357 to:0.027803842981726362 will:0.027575419996063368 his:0.02592235245240268 in:0.01743929351296121 or:0.017143577542573993 he:0.016753710414156433 that:0.01530284548593319 The:0.013510880614388399 they:0.013423119862447375 we:0.012839335846970355 their:0.012472960814705353 her:0.012400176059873983 would:0.011025319171901209 for:0.009991848762663787 :0.40119962878418025 +the:0.13709254237967894 of:0.07223292002932917 and:0.04835788039558982 to:0.030457905272866813 a:0.02976937785076604 was:0.02603585171364165 be:0.02520536246696 is:0.023022873338917366 for:0.021787875314416477 in:0.02148712914713227 his:0.020038098735856765 as:0.019975920239003093 or:0.01883288447537934 are:0.01699859297393541 on:0.015043777811264447 been:0.014989768894711392 that:0.014879292364387585 their:0.014346168576315809 with:0.011991330361260853 :0.4164544476585868 +his:0.28071796624940376 her:0.1145731111574838 their:0.08932346305717942 my:0.08617054563620563 the:0.0813297923068831 a:0.06452713278658449 and:0.03908758219047544 your:0.03061402976002849 bis:0.01840376626707934 our:0.016248854383670065 His:0.01479335801601811 The:0.013944877095491533 its:0.011619980137295751 Her:0.005900652298257767 My:0.005473038814544833 of:0.005256905336451402 little:0.005255382525396429 no:0.005005624504519175 or:0.004865351556878249 :0.10588858592015324 +of:0.09129790931378902 the:0.07369883040827747 and:0.047842263382354346 in:0.04189055351593407 to:0.04045875475680249 a:0.03542341257202578 be:0.02020462051672066 for:0.01979292654746225 was:0.01760256398103379 at:0.017380150555488715 is:0.014984483003968216 with:0.014047653760730413 by:0.01374644383819499 :0.012670486581795598 In:0.01200961464556976 or:0.011563835749786333 from:0.011391516893522809 are:0.011273104484969465 that:0.010755276030689069 :0.4809655994608848 +in:0.07460237611841435 of:0.07401073228703167 on:0.07213323876230046 is:0.07118432320970072 was:0.056860117647661634 and:0.05272090893932873 as:0.05113059473976751 with:0.049125961377069205 for:0.04108393572977323 such:0.03878422416533138 by:0.036750874984942464 made:0.03522728003333332 to:0.034534099862167496 at:0.03223353179303695 from:0.02922914950070026 be:0.02807714364498096 that:0.02552338151079738 In:0.018260086049283353 upon:0.013343140242395005 :0.16418489940198389 +of:0.06705770826685283 be:0.05288679289065651 and:0.051956555859667033 the:0.04971460053117434 to:0.03620178254499355 was:0.035111729097333906 a:0.02213895216618218 is:0.021733398914396376 in:0.020669552222265363 he:0.018154396674973542 his:0.018019605266011398 are:0.016690302343103848 were:0.015975717951847584 been:0.01498536971143943 for:0.014591364368656372 at:0.014143654850145617 or:0.014084873787755426 :0.01267572800662269 their:0.011511322471429677 :0.49069659207449234 +of:0.22876262911284984 in:0.15196588658399662 to:0.08970094997331063 for:0.05621533910191378 with:0.05560537376482149 by:0.05479736543162701 and:0.0541823005538623 In:0.036714296707313895 that:0.03008308860758685 from:0.029344636118256873 on:0.02324982228825019 all:0.021787492068649942 at:0.018305482265743495 is:0.013685831711484594 upon:0.012951000014213745 into:0.012365109768181257 under:0.009455511587583319 as:0.009055230144767801 was:0.008964853638609814 :0.08180780055697655 +New:0.30962021683494323 of:0.30742745645059605 in:0.13469094401966936 In:0.0339099528551692 to:0.027738626103179665 and:0.02559797325409776 from:0.021265569392588512 for:0.01996876178927862 by:0.015270304763101478 with:0.014834773164617149 on:0.01185814775790702 the:0.007431810899232749 at:0.005538279749395352 into:0.004255711205075471 ot:0.0038366990410994652 that:0.003594870093949004 or:0.0030063613692988575 about:0.002987130666862671 which:0.0027451791604939245 :0.043421231429444485 +be:0.11875947123296814 was:0.10845461031398285 have:0.08577527228321453 and:0.07267673037818853 had:0.06404208408721677 is:0.06258986444053848 has:0.05769318688227126 been:0.043888260220552325 he:0.04150828620950507 are:0.027346387457265156 not:0.02675026608447029 being:0.02339519983587804 were:0.02154308696781898 I:0.016130370892630603 Is:0.015961904188112736 as:0.014959573195069862 also:0.012948515589701792 the:0.012877797076912122 above:0.01268338119458081 :0.15901575146912164 +of:0.16933869030434995 to:0.09666124300968693 and:0.07691076638334782 in:0.0726643422883013 for:0.04991857088282865 at:0.04001162377148547 on:0.03448134675112247 oi:0.027194121860913155 by:0.027072445021786525 or:0.02583290984311988 with:0.025546441277534 from:0.01971166252845201 In:0.01700216841997348 that:0.012872381151092365 ot:0.011538639554538934 as:0.010282873880610815 upon:0.00921705136482211 against:0.008232908184206142 about:0.007994117914278993 :0.25651569560754894 +and:0.10092515003615528 to:0.08781011293490627 the:0.053567151996448396 of:0.04500347017345802 a:0.04247314493284759 was:0.041846897544737846 is:0.03863514832371347 be:0.028528535170607223 be-:0.02796381060006589 in:0.024126086898750673 not:0.02270037618770254 for:0.01593860626717161 will:0.015882342517490457 are:0.01564890231418253 he:0.013418856204543745 or:0.013193717320219069 have:0.012433467719128266 which:0.012168222570171219 as:0.01200432352932404 :0.3747316767583759 +the:0.1940247299980783 of:0.0928339591415274 a:0.08856166435502123 and:0.0477572472741799 to:0.028431024987959224 an:0.027217435203717583 in:0.025189668573457696 at:0.01837214412775661 his:0.016175301035186298 The:0.015667926770440297 tho:0.014242475977623617 for:0.013270536309553936 was:0.012739788086321768 with:0.01237841722547676 .:0.01169087068144922 that:0.011251012517759808 or:0.011249481675955266 :0.01117881574884287 on:0.01087343763056017 :0.3358940626791321 +to:0.15064789521051597 with:0.09591006827930117 for:0.09046315392279894 make:0.06466423433217387 of:0.06378027145517308 let:0.05063922067481482 give:0.0456005110108855 made:0.040801063156221 upon:0.03924811293258782 on:0.03020713800763413 put:0.026174696980381645 keep:0.025248082458307237 by:0.02459395377431524 told:0.0241225785071703 take:0.018475674833042334 makes:0.016729582329158384 get:0.016683636564051786 saw:0.01642397043552538 gave:0.016182447846911304 :0.1424037072890301 +the:0.17071458054966654 of:0.14699877332534295 and:0.10681749111380917 to:0.030391269179223728 The:0.02389053658206604 that:0.018678864942638988 a:0.01738441887616087 :0.017094700246066522 or:0.017085653395683 by:0.01518521610219274 with:0.015072961283095106 in:0.014469311982982975 tho:0.013492771467160374 for:0.012502256572086003 these:0.01184387300020197 all:0.011837849484827785 .:0.0112693323960222 their:0.010119963408509689 other:0.009217071752503372 :0.32493310433975997 +the:0.48183588719299647 his:0.06270417979646972 their:0.036190070605154 tho:0.03444726341953212 our:0.029820734862453468 good:0.02897200626064423 a:0.026999856231904935 its:0.026870353123989034 other:0.02228249506602876 my:0.021826082511755076 this:0.01995119563858428 per:0.015518426596729265 an:0.015085089693407274 The:0.014981784840180257 to:0.014253898368275092 and:0.01421885016217393 of:0.013874033669071873 her:0.013604195098175028 these:0.013289237310869553 :0.09227435955160561 +and:0.07133190629821139 :0.06325580932952798 as:0.015767378929570783 that:0.014832292319450149 or:0.013286310508577278 it.:0.012283191833133573 was:0.010411238104260595 be:0.009256886890600138 them.:0.008737735101943958 but:0.008186011325034609 men:0.008139847558034347 .:0.008136991989923214 is:0.008135890038321852 made:0.007485924336779702 year.:0.00742757343535508 time.:0.007235613091159082 are:0.0068042371885155125 now:0.0064169918833738935 while:0.006168297917458789 :0.7056998719207681 +so:0.13524075917071618 and:0.12136103507898946 of:0.11923299787172063 in:0.06157134747648478 for:0.054563308928475884 as:0.048316974894587424 with:0.041514271178861396 to:0.037517197696952234 by:0.03561231424655691 that:0.029352028015065194 great:0.028636552693295122 are:0.02590176496812561 too:0.024327630587168962 the:0.023666853462045643 how:0.020925972007729134 In:0.019011995934286464 is:0.015606222052552944 but:0.01382232936178615 good:0.012017385540618061 :0.13080105883398183 +the:0.054981043479805966 of:0.0383094250831321 and:0.028166137012997694 a:0.023276255229589038 an:0.02193876868953534 -:0.02173795936494025 i:0.02067324374973778 .:0.01849828122150521 to:0.017913989860615195 t:0.01776645592905082 I:0.016481683781022896 :0.01582113983621977 at:0.012060312498607445 in:0.011322363895738732 that:0.009960247233930413 which:0.009487548409353216 by:0.009397591224180872 be:0.008939614268858911 1:0.008564124163700861 :0.6337038150674775 +a:0.1201821034916394 the:0.1178964958224962 this:0.11054077788516437 some:0.06387118944112126 same:0.0569045863357004 that:0.05450113298231604 any:0.04721111652604829 to:0.0441691384901281 of:0.04230082953023139 in:0.04076516555154618 no:0.032887994835493296 present:0.02926840045823802 good:0.026936454625853132 first:0.02601726796102738 short:0.025056538959560865 and:0.024538256531197875 long:0.021578788206714605 proper:0.01682169495826228 their:0.015317569248795633 :0.08223449815846529 +of:0.3514951710022872 in:0.24981482772876581 to:0.06470301754933414 for:0.060321439386903375 In:0.056328538402738354 from:0.04042818885074357 at:0.021878220663408665 into:0.01763065164013777 with:0.01680026587588878 and:0.013903269498656452 by:0.013885505692044624 the:0.011347615923441915 on:0.00907321137083014 upon:0.0056692394934867475 ot:0.004980637783941766 under:0.004975963651208557 iu:0.004823692809891846 ol:0.004204247408507196 about:0.0039891922155718875 :0.042747103052211195 +the:0.1230049064262171 and:0.08503568159061524 of:0.08049514661646495 to:0.06249795272045366 be:0.037787692337465824 a:0.030772695158105653 was:0.030225430638798498 at:0.0232079861893999 in:0.022258293084416875 or:0.02076453064585544 his:0.017325280923675534 been:0.017093839100041554 is:0.01613533332570587 for:0.015009812608712095 are:0.014120955390505714 :0.013322890642117769 were:0.012952875898379415 their:0.01289660242217441 Mr.:0.012094272431719493 :0.35199782184917505 +the:0.13147407904709446 of:0.10054072970971437 and:0.08787641248611254 a:0.054010839453874325 to:0.040753767095028655 is:0.01930639517232235 in:0.01905768241546205 be:0.01866701345705492 or:0.01857389034233633 was:0.01856901897224105 have:0.016570601748452922 not:0.01567885214983575 no:0.014826448724732154 his:0.014824299778974585 for:0.014581934726472573 their:0.014276478502592116 that:0.012537687183812103 has:0.012381427062066465 so:0.012085735963228211 :0.36240670600859204 +is:0.1930886970976357 was:0.09441717992884585 for:0.08375639005980902 and:0.054014735406722254 are:0.0480725247278042 do:0.04282827489094491 that:0.04194467088175202 have:0.03971964189995243 be:0.036371208299674225 had:0.032747063894419094 Is:0.028112497850060356 know:0.02499694125103412 of:0.023756187130872436 from:0.0213997038379199 but:0.01949743938925897 it:0.018758280356867392 were:0.018454429043375725 by:0.018275719955551894 want:0.01818902616300323 :0.14059938793449625 +day:0.020475734401954833 and:0.018258510568710674 made:0.017077791511910335 out:0.010665738840352303 up:0.01047133203779647 feet:0.009619802803320669 them:0.009430901899680086 him:0.008960321112840739 it:0.008730812671073902 :0.007556392668636161 tion:0.006247826913272305 well:0.006093871760237969 office:0.00605763126816443 that:0.005943016336636189 :0.005791640923498632 men:0.005710071850206161 down:0.005534626803470187 way:0.005514111213548283 order:0.005489979152337312 :0.8253698852623523 +;:0.016540219324473644 in:0.014062504314118969 him:0.00976242454186957 it:0.009013265001525037 it,:0.008696264012506299 one:0.008055018387509164 feet,:0.007636451410317345 and:0.0074925596991310605 man:0.0067542351510480585 .:0.006488829060911828 time:0.00578590491651875 hundred:0.005780257140821245 him,:0.005734952175913345 ,:0.005718883403204807 out:0.005684924786655169 them,:0.005661274143873329 country:0.005649998911263618 up:0.005183998576403664 :0.004795908083930597 :0.8545021269580045 +men:0.15194389509425435 number:0.09537702330494222 matter:0.02583735806751031 city:0.025790521433167166 out:0.024507625259488987 kind:0.02064735613816425 place:0.020140037493980138 thousands:0.019872822605567157 man:0.0191988009527352 board:0.018833298501912774 full:0.018295571075384147 class:0.016775653093799286 sum:0.015490812152347743 amount:0.014795379072246987 and:0.014407389273386736 people:0.013878706656338231 question:0.013611150096213514 plenty:0.013317453924526271 line:0.01259235062517505 :0.4436867951788595 +and:0.1187306782086596 would:0.08354684223542562 will:0.07801935516213522 not:0.06648641783150114 to:0.047513543150783315 had:0.043704432679193904 have:0.04357936772443531 was:0.042972797642184556 is:0.03879204002309717 I:0.03169155479592003 he:0.027389724485950125 should:0.026413516378152046 do:0.025633584474251396 shall:0.02443356133581852 be:0.02342776053595564 may:0.022458766215161415 could:0.019643121804792447 can:0.019416002980950003 they:0.018889249309526145 :0.1962576830261064 +the:0.11087702883838926 and:0.07468533321627417 to:0.06327435121526986 of:0.052198241244518065 in:0.03112712358433759 be:0.026482046707640528 that:0.022711483948969245 is:0.02221249774526874 a:0.021170774220401554 as:0.02005189777885896 for:0.01941103252098795 he:0.018116855577948437 was:0.017577633959882835 or:0.014624456453719237 their:0.014396546153656061 his:0.013919026172914023 are:0.01272448221235497 will:0.012591863970749536 much:0.01258340349149101 :0.41826392098636794 +as:0.06187302954679075 and:0.0435690425434646 came:0.03597953474448418 up:0.03568319027635109 back:0.029993786703816017 them:0.023268237620029594 come:0.022430622979645185 it:0.021860769148990874 brought:0.018406808966682273 him:0.016892447505431143 sent:0.01682085519499377 went:0.016109195081784374 down:0.014935511467366772 returned:0.014135105043980214 belonging:0.013868863519336454 go:0.013466343765385743 reference:0.013248772975158462 is:0.013243173151470845 taken:0.01276719937917674 :0.5604475103856609 +;:0.008082124703807767 Mr.:0.007687793184024245 1:0.004643166501385124 ,:0.004496857749399161 up:0.0041044497857070554 .:0.004066157657958027 to:0.003953338025927082 in:0.0037205600073887514 city:0.0033830563766462517 Mr:0.003162691765575533 day:0.0030597764725980706 men:0.002925695201131171 :0.0028460749791546277 and:0.0026091275750559834 here:0.0025584037622749098 :0.002505280756553255 Robert:0.002350119991033893 William:0.0023092759371334433 State:0.002252868432074393 :0.9282831811351713 +:0.10134441886100551 it.:0.018817041363167215 them.:0.01732005025191643 day.:0.010849787763681088 him.:0.009817223400227936 .:0.009058643416601949 time.:0.00760427515867387 country.:0.007330317310872904 men.:0.007074791318123855 years.:0.006642729126200048 year.:0.006171369051896406 work.:0.006125977835669817 people.:0.005869373626536915 city.:0.0056967997314450155 night.:0.005690924298919815 life.:0.005302688498188022 one.:0.005070309157997658 up.:0.005054714536215503 again.:0.004957921753061344 :0.7532006435395987 +the:0.6282919188719227 said:0.08177014878302245 The:0.054306423908740645 State:0.03553065161519055 tho:0.03331168467195791 and:0.018974034563680256 a:0.018144139733962283 tbe:0.012910776716836162 County:0.010879857125834709 of:0.00718272641825003 National:0.0067064760460823795 A:0.006247800034323361 this:0.005704949777532588 that:0.004687492669684485 School:0.0037205095833966334 other:0.002909599308414829 whole:0.002847897531893484 City:0.0025806003577830113 General:0.0025161518747485283 :0.05977616040674298 +those:0.1241494596753127 man:0.09647257693820609 one:0.06864074562889366 men:0.06722196391002626 and:0.05437020552245763 people:0.030979940032094304 person:0.020963365453529753 all:0.0204536784912768 woman:0.020364416264106462 persons:0.015210923058395255 Those:0.013133704233595837 girl:0.008507958139429471 women:0.008403983866970317 others:0.00813648670072874 but:0.007082815022956213 many:0.006629290754254381 friends:0.0066258721392743955 man,:0.006050645924421269 farmer:0.005999321404590627 :0.4096026468394799 +the:0.6223373874397103 a:0.16957870639264008 tho:0.03281458275438157 The:0.03188938777838912 no:0.01939190801447402 and:0.017668948526141173 tbe:0.011902251716016853 very:0.00937475256236495 great:0.008591765248313534 any:0.007447571425078343 other:0.006055511509501342 in:0.005926087847694787 of:0.004715672811989833 or:0.004694395206597302 every:0.0043128153443636056 with:0.003691437970633922 for:0.0035918916321854527 slightest:0.003465361979382781 its:0.0030272619004741187 :0.028522301939666858 +well:0.17198840459193418 such:0.0818388383917604 far:0.058377296384864094 and:0.055702381108704194 just:0.03526255744241946 known:0.03498597306319156 soon:0.03206371246833094 is:0.019133548976001228 much:0.01786506130085948 was:0.01735560952551258 long:0.015394554958008809 regarded:0.014228399313466502 but:0.01324746651680745 be:0.01315552919224397 designated:0.011903738350137015 Just:0.011376829039332063 so:0.010725575310421443 same:0.010268524228922778 her:0.010230265578278608 :0.3638957342588033 +and:0.21326679658003742 that:0.11710446486713963 but:0.07447515516070978 But:0.03235441056050529 time:0.03009270104752987 And:0.02261207606747241 or:0.016755945306136444 come:0.013410316293140663 even:0.01218691156071555 only:0.0120090502971392 all:0.01162172555722265 know:0.011369693280888715 it:0.01024252491709217 ago,:0.009343845851605909 especially:0.008969935289978513 them:0.00814280468142399 ;:0.008073884527335979 day:0.007858055909415048 one:0.007705223547263071 :0.3714044786972477 +from:0.15177056942351036 of:0.10321394132199381 S.:0.07339535960465006 .:0.04683829621807708 N.:0.041182499406168055 Mr.:0.040976121426111525 the:0.04010625165036455 by:0.029391929185952233 D.:0.02870891270761554 and:0.022564307475129223 in:0.019790284338949925 A.:0.017485696065914318 W.:0.01747826313735175 M.:0.015802701426164578 at:0.015221315784801548 N:0.014336186705255109 for:0.01407353542834213 Mrs.:0.013335386909065227 &:0.012251110409205589 :0.2810773313753774 +more:0.04156738073551079 man:0.030299012794412605 person:0.026695465071366758 one:0.02570731281454547 two:0.01795014865535488 law:0.016247363726092034 in:0.013259929735431258 three:0.012621349264246098 State:0.012015464213535306 owner:0.011658482111634994 ten:0.0113187166498145 men:0.010586548981087652 city:0.009815928487392349 state:0.009030257922407128 of:0.008761277891102016 any:0.00864437923904296 piece:0.008453511594413736 right:0.008420136590617947 five:0.00824171103689211 :0.7077056224850994 +an:0.537811666633818 the:0.12926072546437625 most:0.06327067705655319 and:0.03984390362683881 An:0.02982545278195257 very:0.027792205632799036 this:0.01815223996294615 a:0.015797251418853936 The:0.0130565661840905 in:0.012762578094445611 such:0.012554870069772954 more:0.011680633561840327 some:0.00817058922537433 of:0.007356568077044803 all:0.007244055583815304 his:0.006993342273519208 be:0.006399341146956146 tho:0.005387721399967583 one:0.005126717864069971 :0.040512893940965376 +and:0.06221069663990682 Committee:0.05057534586581559 was:0.02748220847391186 committee:0.02744426205407836 that:0.020734118233226323 is:0.015430238938760197 be:0.015048656326656785 going:0.014001702059179444 out:0.013278222204376178 work:0.012879402979875257 went:0.01268561986518544 put:0.012602354130226817 due:0.012424637090645018 were:0.012095015985171466 called:0.011981002673910567 it:0.0118054636333845 them:0.01156555523415657 are:0.011505242379095585 him:0.011141026526201511 :0.6321092287062358 +the:0.5568236732017205 an:0.08984209890767232 of:0.0766281843114208 The:0.044014593200904416 a:0.04046170233642392 and:0.03300027487149403 in:0.022275771664781986 tho:0.021178131782114872 tbe:0.0080237061673268 with:0.0074398160674246 or:0.007418468644945852 to:0.0068692113887614615 his:0.006194492353869546 any:0.006029691498567642 this:0.005945793324199593 their:0.005490180358974651 re-:0.005307312509045251 for:0.0047143484092232995 our:0.004255816707251063 :0.04708673229387732 +is:0.1300949053123692 ought:0.06235942008217411 are:0.06072445398663133 seems:0.05697318922100556 was:0.04954471475520722 not:0.048536362204045544 said:0.03881623685409472 seemed:0.03220746110521765 as:0.030923473227594384 it:0.030881869856406088 claimed:0.028226689520969073 have:0.027725540143517465 and:0.027557757709861613 likely:0.02587900806524851 seem:0.02574969309575762 supposed:0.023317446089120043 had:0.02145961764731352 Is:0.017651730366473797 proved:0.01677680343414685 :0.24359362732284573 +the:0.22478235844148847 of:0.14961371127846715 or:0.11755225710197369 and:0.08510123353014797 in:0.061077133233093994 for:0.03697037563717667 by:0.02362368250897551 to:0.02277138361962355 at:0.02273267533405857 about:0.020979798682157963 that:0.02004974794173044 from:0.018269775489934352 The:0.01578457836629655 In:0.015705491151317478 a:0.015097661706248267 on:0.015074193549025987 than:0.012636244996262765 last:0.011091219606603466 tho:0.010531725874035017 :0.09955475195138212 +the:0.09972242875913483 and:0.07517264799486743 of:0.05617557142737374 to:0.04921827969433043 a:0.037253997523657746 was:0.02620492757064468 Mr.:0.026007264146448626 be:0.022694760307574415 his:0.022060789317155948 in:0.020342068370392076 I:0.019137519693259206 at:0.018132105691850503 is:0.018070442615664338 not:0.01586377071823422 he:0.015231833582356143 it:0.014550612869113485 for:0.012894453600569272 my:0.01240579939613769 :0.012154744499566831 :0.4257059822216684 +:0.09798592182650409 .:0.019506460410855374 it.:0.012803086031708402 them.:0.008747903141082609 of:0.007334968512650317 day.:0.007218079894415179 time.:0.006577149284080438 year.:0.005887866275026819 him.:0.005600016116565743 city.:0.005474441045731536 years.:0.005156647402164515 country.:0.005017941118439931 law.:0.004910391560598319 work.:0.004140233756000055 etc.:0.003867338288581882 to:0.0037311336680693843 place.:0.0036919960604055004 1.:0.0036752220249094817 night.:0.0035989196176254494 :0.784074283964585 +of:0.19930968338370286 the:0.18129566051091775 to:0.0980688900449417 and:0.07602321930459174 in:0.05824082699071803 from:0.02958765216163749 for:0.021771803607340354 or:0.021338437969471474 The:0.01924532067436155 Crown:0.017137370004932286 by:0.015514683217636051 a:0.015246013038340627 said:0.015203509115951898 In:0.01483225888285008 tho:0.013084248128565127 with:0.012436340685988432 at:0.011960587719290858 that:0.011714498816301024 on:0.010001604259976605 :0.15698739148248403 +to:0.21612261554411585 I:0.1345518584677938 and:0.08659629044632279 we:0.05476106934192166 you:0.048456837179688884 who:0.04270173620130058 We:0.0372058671825156 the:0.02634185426971675 a:0.024968990121492538 will:0.02211145452020219 not:0.019520544987626464 that:0.017607890195069646 they:0.01719476745102762 1:0.014191554588004798 may:0.013163261611149384 or:0.012655465578082344 would:0.012654768947281613 but:0.010580760761300132 shall:0.009458104037306113 :0.17815430856808126 +one:0.1028303141280697 part:0.05963429477052991 out:0.04766456937681193 some:0.031418679026461914 members:0.030764490253327767 side:0.029940657362655835 portion:0.022063658796890564 office:0.020457735219956013 member:0.019726706386316174 end:0.019666887540649894 tion:0.018667441728710307 parts:0.016814747270460957 people:0.014112771422418794 all:0.014072739582212475 any:0.013183573287639892 One:0.013083578354183906 that:0.013024335602903442 account:0.012482348155001894 many:0.012077825070275192 :0.48731264666452345 +of:0.32263625030020066 the:0.1513506918899114 by:0.07418410995202418 on:0.05645373145957951 and:0.047598069699107806 to:0.046024344150985844 in:0.04348210422121126 upon:0.025609609208211526 with:0.02161953868755836 that:0.019360371910094612 which:0.018328005770610858 for:0.016817992118468964 from:0.012442831282213155 is:0.010677683088215182 against:0.008525083807025127 he:0.007975184385533 have:0.007408457533658867 tho:0.00664140811992945 The:0.006514120572703528 :0.09535041184275675 +;:0.015080038349421102 heirs:0.012677678175047434 men:0.009511188769348417 mortgage,:0.008774585183955998 in:0.008011465132546683 State:0.007480151246437053 city:0.007005035671317374 States:0.006872402706421784 to:0.00592854732281574 :0.005735589309824057 land:0.005647440081387814 due:0.0054568228735184555 interest:0.0052133021336881686 North:0.004806437009496497 and:0.004697239171382871 1:0.004622849601237399 street:0.004458812152898833 people:0.004430032592129457 .:0.003968876401499959 :0.8686215061156249 +will:0.5960197483793875 would:0.14777013196170682 and:0.04149894732462086 is:0.03144264726124968 should:0.018144659630886097 must:0.017066676079916816 shall:0.015515606446040938 may:0.012523068695087536 can:0.012396812424835429 could:0.010776340394500587 not:0.010090374259117704 was:0.00878480522328241 I:0.007696943205828991 had:0.007096774204971037 it:0.006925244013033038 but:0.0067753162807973845 have:0.006158629153715923 are:0.005228395772304975 Is:0.004631337423968079 :0.032457541864748085 +to:0.26252507081493254 the:0.1550894827181956 and:0.07182936769700772 will:0.06315314805392964 would:0.05300500695358731 not:0.04304347296190444 a:0.031181954494706697 can:0.028555126025648594 may:0.02841490019082395 could:0.024608108372944 might:0.02074351694923502 or:0.016680195230480952 should:0.013380706903486049 his:0.01294092181664494 of:0.01155449718760554 must:0.01015192428262958 all:0.00948823431511681 was:0.00866062087533482 be:0.008456258700958357 :0.12553748545482746 +to:0.12022893700269083 and:0.09020394424291768 the:0.08587503820055309 of:0.06450042443224316 in:0.0310058468700829 a:0.017742048521183405 :0.015548046036689871 not:0.01491307651316237 that:0.014112408707955496 for:0.013734482372212283 I:0.013065769926808477 will:0.012848502316304782 at:0.012837991177321897 In:0.012628718855091186 by:0.012491091048660757 be:0.011425930130217754 is:0.0113962101007567 he:0.011342727513475473 or:0.01112522537451577 :0.4219735806571561 +and:0.09344511551191571 made:0.06260967047496699 or:0.030800977195324784 that:0.0287369022256318 side:0.0234976729988962 occupied:0.0215704375231671 up:0.019546416802695084 secured:0.01846198841851751 owned:0.01802735747653841 down:0.01671660077381276 day:0.01638279275897036 followed:0.015300198102089647 ed:0.014965377459229741 east:0.014594257996665375 evidenced:0.014349094796991674 done:0.013560166847215052 surrounded:0.0130210409414783 time:0.013017828023985649 taken:0.012781409165074887 :0.537614694506833 +of:0.20903372428364894 in:0.10754631704415453 to:0.06704331513663066 by:0.06577051148265928 or:0.061466749900624264 for:0.06012582059750266 at:0.04160692535972184 as:0.03646406366992225 that:0.03618304968621702 from:0.027890856714075898 than:0.02701563216023192 with:0.026942395647715604 without:0.025825661924466538 on:0.025271013755820766 In:0.0231319115628983 if:0.022296966371098383 have:0.01643934396099213 and:0.016164690482738005 upon:0.013590374519476055 :0.08919067573940496 +man:0.12346937212789268 those:0.11587610144697123 one:0.09063626667216769 men:0.06368018593466039 and:0.04835879366779805 all:0.038145715951942376 people:0.0263640783512004 woman:0.024228674071473732 person:0.02087421964575056 Those:0.011847267181842442 persons:0.010998571867400154 others:0.010004978594016141 girl:0.009094718316079201 anyone:0.008273174261223544 many:0.007716818211618996 but:0.0075921494676038795 women:0.007130059120611288 man,:0.0069298396368090215 friends:0.006913010470561748 :0.3608660050023765 +and:0.13624961231004423 is:0.09138348849196254 was:0.09101663904078616 not:0.05476286422336273 or:0.04570630197357207 be:0.0387257659115531 been:0.03840406479098423 are:0.0372265445444463 were:0.02401609369031448 of:0.023184517628244736 but:0.01951543746077331 to:0.019467887061079055 And:0.01772491402706711 do:0.017000150777682785 that:0.0161898014324465 by:0.015930223851154984 become:0.013245670559123675 with:0.012682553789340797 being:0.012455039757187928 :0.2741124286788733 +and:0.2063217214833554 know:0.07371359542501227 matter:0.07133103263008249 see:0.05840937458254018 to:0.04154658559205624 or:0.028057987384613306 of:0.026656053626583725 is:0.02105654131714339 was:0.018000302875179907 him:0.01690597369733197 knew:0.016021920230029157 but:0.01567401698765075 me:0.013584829879196349 not:0.013473108354975472 just:0.012750064582997413 out:0.011777061023219893 Just:0.01158279631005423 with:0.01139729376716494 told:0.01108994253469467 :0.31964979771611823 +was:0.06368823747250088 and:0.056392037072148016 is:0.03978485703423545 are:0.036046512976587605 be:0.03363169763061858 went:0.026020601020486017 were:0.025287177023642568 it:0.02254952792694903 come:0.02246400032496161 came:0.02219369793817837 them:0.021426877236398897 been:0.020860141599396424 not:0.018969933092711742 him:0.016762250071490212 called:0.01620572235146561 indulged:0.01589700545748073 engaged:0.015063389750343584 made:0.014947969129835178 interest:0.013782583357032443 :0.4970257815335371 +is:0.024057188118816138 and:0.023805025521198883 was:0.022879771111598085 it:0.01948704825264377 that:0.01248648519964678 on:0.011804734850304708 up:0.01158758918574704 -:0.009877896009963446 It:0.009744165394830983 land:0.009422597487232332 :0.009085835470928021 are:0.008887746357230478 out:0.008793013059868258 recorded:0.008344154059456479 as:0.007353528399041649 him:0.0072112331768499 be:0.006940311356612971 of:0.006649456538137292 Beginning:0.006644556625234073 :0.7739376638246587 +the:0.354587845885917 a:0.06548498140480215 all:0.04727769873103279 to:0.03614171543170613 and:0.03562532049500415 his:0.03133313114013971 no:0.029277960930821124 was:0.029256078644205107 at:0.024994372660006637 is:0.022792524952888735 it:0.019841836422769488 of:0.019125287423873462 be:0.018209134848061075 any:0.018196505483657772 tho:0.018080327255016203 their:0.017871631728116344 not:0.017350202931456296 that:0.016159764607272947 water:0.0140433534076393 :0.16335032561561355 +carried:0.07281033974097459 taken:0.05281259843336888 it:0.0408774317115284 went:0.03377214435057519 turned:0.0336125202437538 go:0.03267420731710109 get:0.0321105916021942 thrown:0.031383619039072067 pointed:0.030973655609467677 them:0.030894742858730152 came:0.027924488718824313 laid:0.026971637300918297 come:0.024764785247177932 put:0.024719729759718416 sent:0.022663017487276064 brought:0.021708090755508874 was:0.020310259574870107 take:0.01993771673656113 set:0.019096730382884914 :0.39898169312949394 +I:0.07699932076605995 and:0.07395982979519455 have:0.059336708461089946 who:0.04939734241349922 he:0.04811349738949988 be:0.04622917882296344 they:0.0428392005042162 had:0.0425947909003511 we:0.04028413781807048 to:0.03423891579025142 was:0.03036723622267763 has:0.027077644442604954 1:0.026899766610080308 de-:0.02667241678945098 They:0.017601139382822595 We:0.01750323286592041 He:0.017293897291089454 men:0.015736992977443437 were:0.015328519558742757 :0.2905262311979713 +of:0.24741596081904385 in:0.16570170456546335 to:0.12472657767431063 on:0.04292393837511747 with:0.04143468651360029 In:0.03962486251502941 and:0.036772408510873864 for:0.03669036194048412 that:0.03482179791567607 from:0.03306658335867529 by:0.028643685432196954 at:0.02141685899869789 into:0.014626195551429041 upon:0.01386277177485078 as:0.012690658996706638 under:0.012015383480360103 all:0.010932622920040668 is:0.010057992092256258 through:0.008070116825505626 :0.06350483173968174 +of:0.1989834374444772 in:0.1004721202217017 with:0.08715589653067427 is:0.07095086990668041 to:0.06354610533941893 and:0.057088084850161494 for:0.054526861286616796 was:0.04233026875056805 by:0.03462257274058992 as:0.027003537850023338 be:0.023223717860263032 that:0.022167698865602367 In:0.021860980505172038 such:0.01694331992632047 make:0.01508253422195152 have:0.014533985090899983 made:0.014490635137787864 not:0.01387602645012994 at:0.01380077885695277 :0.10634056816400789 +and:0.0673801912961466 was:0.036698086891182036 made:0.03214115232592934 up:0.02684068728166768 engaged:0.023421384280902464 is:0.022179097599794226 it:0.021399013763012044 be:0.02106762920110939 time:0.020396486588473955 them:0.01954306786900169 that:0.019225342668089868 held:0.018543222271753763 been:0.01845173092727425 interest:0.0176609857967003 day:0.017373511142895256 feet:0.017068450445159852 out:0.017037224667519824 paid:0.016995544909245413 work:0.016372692768524228 :0.5492044973056178 +of:0.2453129656680758 in:0.1116435377594878 to:0.08271627825108242 on:0.04699808371710243 with:0.045351976018872864 and:0.03955237119495797 for:0.03790650168656045 from:0.03138133569972004 at:0.030403366359705964 that:0.027635317859379508 In:0.02678529139368366 by:0.021207933562391257 is:0.01894760256839627 all:0.01801848755086736 was:0.013872096421838112 upon:0.012724183400454756 up:0.011917563855785147 as:0.011575585980287318 but:0.008378806103834674 :0.15667071494751622 +protest:0.0730074424705892 and:0.04681802825243419 up:0.030899702949304907 made:0.030264171118175198 voted:0.027440688555916647 claims:0.026193205449708597 vote:0.02440140127865307 guard:0.024204312136449427 fight:0.024036803642483322 assessed:0.023813752314525777 protested:0.022589786792465094 as:0.022585128486233366 protesting:0.02234573029786333 brought:0.022334978248921528 war:0.019874149267129777 charges:0.019147529384197427 is:0.01839132239437071 out:0.0182004416360357 taken:0.017339799780086936 :0.4851116255444558 +the:0.30562526063420814 of:0.15656542119863479 and:0.08814880722641773 in:0.06174898209348406 The:0.046824501684171106 a:0.03947533856183705 that:0.0360079716035198 to:0.03375888014026553 is:0.024690052831663662 In:0.019484994292999363 tho:0.017568851597080166 by:0.016792901933622057 this:0.014365449967482647 for:0.014001319864338417 was:0.013530651894450477 which:0.013337207399602242 not:0.01234619229907127 with:0.012343945104433597 from:0.010766769368477909 :0.06161650030423996 +out:0.05050520046088447 matter:0.04385415467963101 number:0.037533169721600104 purpose:0.03259210731364322 means:0.024366997851752083 is:0.02157017332136251 kind:0.02077062794676251 cost:0.020615329796145256 be:0.018316907331120805 one:0.018161916552038283 full:0.018141143505516648 amount:0.016758424752680943 case:0.01574101970348852 source:0.015240692614111592 point:0.01498778380251577 years:0.014709126038353174 way:0.014598110465642706 man:0.01420536780444424 and:0.01399136344710176 :0.5723403828912045 +the:0.20647493191602204 and:0.10655475579236669 of:0.08795401920278421 to:0.07986826120268713 for:0.02441097578245296 that:0.022724549240955173 I:0.01777292613012451 in:0.016048148473978827 a:0.015426827421018498 tho:0.01326214141339879 this:0.012664630720853897 which:0.012356592624521136 The:0.012252741489966199 with:0.012173014355934195 by:0.011515057237699942 from:0.011080689257142244 1:0.010928372567709642 or:0.01059769890165313 all:0.009050136064514446 :0.3058835302042164 +a:0.47678109504039806 the:0.0848476666989609 of:0.0759290317583546 A:0.05066830670251923 and:0.03368768002224979 very:0.025374090702149084 this:0.0196081446399964 in:0.019564173798878155 that:0.018027068925013552 are:0.01571636630046368 is:0.013611598061016675 with:0.013483563044182346 for:0.012756670680865565 so:0.011381746071713139 The:0.009113638732835593 was:0.008746444110822564 all:0.008151003911862815 In:0.00796302904921769 n:0.007730599519881021 :0.08585808222861915 +the:0.19181099779236171 of:0.098376387290332 to:0.06206323848827424 and:0.06185746970152953 a:0.05763503445731301 in:0.03203768820605091 be:0.025397557396989286 his:0.024202004373826747 is:0.020632857541508884 or:0.02039536851329297 their:0.018687058446806952 was:0.016925985081584535 for:0.016539289349480842 at:0.011842877958441057 are:0.011754728630963622 this:0.011050266971565748 tho:0.010185182552681348 by:0.009947350688139206 that:0.009348312184219137 :0.2883103443746382 +:0.07540441615139533 it.:0.02695439792787752 them.:0.019065688047851644 us.:0.01540884133999025 country.:0.009960477512080124 people.:0.008543402082133372 that:0.008376311620683809 day.:0.008000938705340101 year.:0.007118259217101056 here.:0.00687030815974751 time.:0.006815909748476001 ?:0.006596684469419426 State.:0.006124200414437817 him.:0.0060959336161032895 law.:0.005706940404047444 years.:0.005627379278580486 States.:0.005600751542793926 life.:0.005532811896098609 work.:0.005506518446296258 :0.759689829419546 +sum:0.03352282876311118 number:0.028116684882597106 line:0.019995206059833036 city:0.01946514558931857 out:0.019275318828420953 day:0.01666865340772654 county:0.014872697538657208 amount:0.013254184849875051 Board:0.01252325449624941 town:0.012449555905674143 side:0.011663975251122375 part:0.011517157473718155 County:0.011460540331966697 state:0.011087331502382173 City:0.010878919191854432 purpose:0.01081028255427907 and:0.010297866493795984 way:0.009848747943663767 name:0.009522170936943183 :0.711769477998811 +guardian,:0.05033302992997726 one:0.033207185450306834 person:0.023822963808112236 two:0.02109483263388883 on:0.01778395815980358 law:0.014550263698891864 more:0.012544562052339388 day:0.012254071975868178 and:0.011752767967354808 mortgage:0.011026488404179028 action:0.01074592806567871 man:0.010538314195488901 at:0.010100903510133845 vein:0.010095212297666994 mortgage,:0.009983880859158181 ten:0.00975497723894835 year:0.008948704430532207 bonds:0.008402838626854687 in:0.008342036621553224 :0.703717080073263 +to:0.09749257770986998 the:0.09551206399013314 and:0.09354319224337997 of:0.07480932460768112 in:0.02967229660085893 a:0.025579896041081792 not:0.017538510939051802 I:0.014890048771587954 be:0.014454354650863947 or:0.013502879084097318 he:0.013420350455248153 by:0.013217729847265764 for:0.013182212294170192 is:0.0128700234264903 :0.012502131012163752 at:0.012352874503725284 that:0.011267247520049631 this:0.010977319699742834 In:0.010892947902981794 :0.4113220186995563 +day:0.23899700769391638 and:0.09322624302870589 until:0.09179852034798798 days:0.04636863218233352 shortly:0.04319697696360351 Shortly:0.032477870892642334 month:0.02769557367643952 that:0.023336885900718866 week:0.02288888082254187 year:0.017108938917936998 months:0.016929209717964498 immediately:0.015343039494625252 Monday:0.014925854446842331 time:0.01434760885386119 minutes:0.013677632556780756 hour:0.012233503996247338 Soon:0.012044097854913456 night:0.011528861255888664 Immediately:0.00887588019639168 :0.241998781199658 +that:0.01965499957822076 and:0.019415831374366446 :0.01913205442180228 lot:0.015596206229187098 one:0.011223716571895049 which:0.011145542732960879 State:0.010816604019243923 land:0.010456562503204845 day:0.009569623174311365 of:0.008343259324517207 county:0.007719231097450169 Secretary:0.007322848368723211 the:0.007296630740068922 number:0.007013689527559152 .:0.006882845401028159 :0.00677418882497352 York:0.006573763290340558 city:0.006464755551384651 side:0.006395255021352463 :0.8012023922474094 +one:0.1028303141280697 part:0.05963429477052991 out:0.04766456937681193 some:0.031418679026461914 members:0.030764490253327767 side:0.029940657362655835 portion:0.022063658796890564 office:0.020457735219956013 member:0.019726706386316174 end:0.019666887540649894 tion:0.018667441728710307 parts:0.016814747270460957 people:0.014112771422418794 all:0.014072739582212475 any:0.013183573287639892 One:0.013083578354183906 that:0.013024335602903442 account:0.012482348155001894 many:0.012077825070275192 :0.48731264666452345 +to:0.4365503573217484 not:0.1257326774408181 will:0.04761979295360985 would:0.03858730851633218 can:0.03768229101834299 could:0.032303324963751774 and:0.026506230919690465 cannot:0.02408559765760602 may:0.022514738362848494 we:0.018583183799959338 I:0.018078609185378697 must:0.01677699924245869 should:0.01477757785438581 they:0.014028964542158837 you:0.013327601668928905 shall:0.010809064926404549 might:0.010270534282982184 or:0.010066259211641528 the:0.009941380236077392 :0.07075750589487582 +that:0.23950485619438913 as:0.11141305222548842 which:0.09725519798754928 and:0.08953055176343969 if:0.04924405234469195 but:0.04104207360872691 what:0.03750130487100825 because:0.028090910901255116 when:0.026173876892048996 where:0.024992870401172238 than:0.019647374986077094 If:0.018059698518937888 whom:0.014144607143893198 until:0.013659048288941341 for:0.01292713006692789 whether:0.011656698715822965 while:0.008669446456513664 or:0.008660143573888265 though:0.007500897287342986 :0.1393262077718847 +of:0.2774348127042077 to:0.08619655152847183 for:0.08207022432505207 in:0.0754242454222774 and:0.05739155291965839 by:0.05413081782806147 that:0.04784150822694572 with:0.03695586600483035 from:0.026782148209898316 all:0.023138503502978244 In:0.01995095508732827 as:0.01896926891002351 is:0.01889677401720729 on:0.01646324319565273 at:0.013707779156365977 during:0.012932484639519888 but:0.011152473842139958 upon:0.010125313637445763 under:0.009600739233949229 :0.09983473760798586 +to:0.29717389623967755 will:0.12994063930334132 would:0.08655582626770883 not:0.06940809805412618 and:0.049717562244878014 may:0.04138660925642899 shall:0.03243891007166991 who:0.032271859567148446 they:0.02701953140161307 we:0.026831554017433618 I:0.025009122526144522 should:0.023027479334417462 which:0.015550866883066373 that:0.013909818783682562 can:0.011184109584745635 must:0.010983791417113678 might:0.010095912517590955 you:0.009300542577247948 could:0.00851905255860326 :0.07867481739336173 +the:0.11919516938815296 of:0.07230453158552728 and:0.05781056740443249 a:0.043018564803886335 to:0.031305092790907506 in:0.020848713353460488 at:0.014270110001066288 .:0.012526810245749479 :0.012413283442322082 for:0.011719122709941797 by:0.010808400946589808 or:0.010404172990115616 The:0.01003576004804544 with:0.009811868184449042 tho:0.009295902015355835 was:0.008924239095331684 that:0.008672304223433876 is:0.0085591147338948 be:0.008335143826716943 :0.5187411282106204 +the:0.17234101881375233 and:0.0723308580507978 a:0.06418362524859451 of:0.059381903314211774 to:0.05765128534513001 so:0.0292258426364823 is:0.027247612130850953 in:0.024298181821023074 be:0.020836055953937775 was:0.01790457325883464 Mr.:0.01622639783612973 tho:0.012553953887538211 I:0.01099826163396415 he:0.010910273396485398 not:0.010754844629789139 at:0.01064958641021041 :0.009679095332540733 for:0.009454446178783427 or:0.008882500654999364 :0.3534896834659443 +and:0.08701729406734574 was:0.052241194697790504 be:0.04289102681956036 are:0.04080563323710735 is:0.04007394627501935 were:0.023953926468452583 up:0.022703173888701675 succeeded:0.021324469968884766 them:0.019351508863386564 been:0.01851876723932451 all:0.016649906177630486 one:0.01625861572091945 it:0.016103252588589672 that:0.015617053604143562 engaged:0.014967841958021368 interest:0.014869097759287029 now:0.014406352409673688 as:0.013845046590973612 or:0.013403977983984723 :0.493997913681203 +he:0.14786621913066786 I:0.10494604768715901 they:0.10017264594800752 it:0.0778489424386551 who:0.06342508648397586 and:0.05156259747381232 she:0.0428526260728095 He:0.03368464669690233 you:0.02636346456670231 It:0.02629111547770988 we:0.022874672841431864 which:0.022253237444725443 never:0.016771828229076458 man:0.0159343486459695 They:0.011870474915113904 men:0.009552764544047734 there:0.008413209666480919 that:0.008324192145421705 1:0.0075223108543141124 :0.20046956873701666 +of:0.14870698072999267 the:0.0845621995124163 and:0.06757800692451325 a:0.06370489404667218 to:0.05660993902384267 in:0.044754808810571894 was:0.02476206369313501 with:0.02372392891650905 is:0.02370118591038056 for:0.023671270390473925 at:0.02052745490553854 be:0.019885805590490524 that:0.01916544700111574 by:0.016703405181816126 which:0.01477775031565864 as:0.013781538588359489 an:0.012747545072512806 con-:0.011493668738063316 are:0.011384200297405571 :0.29675790635053173 +is:0.12049885472066618 was:0.0945829264988792 and:0.06982413234616953 had:0.06506682527848034 have:0.061499218701497 that:0.0606246919349068 be:0.04917023499657394 of:0.038095258499355376 are:0.034618417627589305 has:0.03179382638473701 with:0.031415509732597754 in:0.027297722737230485 were:0.026111333308115638 Is:0.02226166198378705 by:0.021384329010541523 but:0.020082635959369308 been:0.016635170104817073 for:0.016201406284144123 to:0.01316955733795111 :0.17866628655259123 +of:0.1617882435810902 and:0.08419278103935132 to:0.0737073751028625 :0.04619045004452377 the:0.03495347546835616 by:0.03428145323441415 that:0.021406904209507305 with:0.01415517267008911 for:0.013919970711721765 said:0.011290347760222487 from:0.010129248933128542 at:0.007562507436162441 against:0.0071061721547041705 .:0.00688976835557992 The:0.00581198423201238 a:0.005799492798000133 which:0.00572692975416842 in:0.005162676469375575 when:0.004239157534862651 :0.44468588850986696 +and:0.06801980411563592 called:0.05975987546856643 based:0.04056929756857015 down:0.038884916072364016 placed:0.03423965746291783 depend:0.027374652480390206 put:0.026731207328758652 insist:0.025119524967866104 depends:0.02444468632237949 agreed:0.023899560091221253 it:0.022854342891824673 enter:0.02263394002356096 call:0.021876282335471182 look:0.021080936370134484 is:0.020801787775151123 fell:0.02075468496825849 looked:0.01994147837184452 made:0.018538654812787693 one:0.01668400922739733 :0.44479070134489945 +the:0.25241914077605626 of:0.09617430734303478 their:0.04167699234747488 and:0.03648894932942548 his:0.02999079653575704 thence:0.022699228553685287 to:0.020864268805229964 tho:0.020049695985998008 its:0.01921239695991447 a:0.0182259017568422 be:0.01772813290629394 The:0.017177707886091426 for:0.017177036503294975 in:0.013453081780175217 her:0.012563633649822733 our:0.012063346609746648 was:0.011176138438213547 it:0.011105615018282616 is:0.009882655971670528 :0.31887097284299 +the:0.22289262019755887 and:0.16923894672049714 to:0.06172233388134439 of:0.04516543076296102 The:0.037797292343971924 a:0.03596107147530667 his:0.03310584747835457 an:0.027675116936625766 all:0.026562648471362058 her:0.02322773044305619 tho:0.022991025849325553 by:0.018633538171564587 for:0.015170065960770833 that:0.014465530872718619 this:0.014439198909697812 its:0.012238511257337072 in:0.010673138546515006 their:0.010263890972678187 will:0.00984175691404716 :0.18693430383430656 +of:0.28767355066866834 to:0.08775711267569858 in:0.08678131196995101 and:0.05160598694501188 on:0.04646139928102899 by:0.04519522654900943 for:0.044547789071328545 with:0.03396756772609607 that:0.033699232901107726 from:0.03075346596941143 at:0.027039283056790858 In:0.021061449543044047 as:0.017514234937992545 all:0.012543839382496166 upon:0.011844431150487573 is:0.00998972746569266 was:0.008814315973987914 into:0.008557199930727406 through:0.007781895704231326 :0.1254109790972375 +of:0.17716843230092139 his:0.17130724158743188 a:0.0917172206005772 the:0.08409904246481226 my:0.0756076985665738 her:0.06709884392816456 for:0.026569126671702005 and:0.02555229458282407 their:0.019815769336297955 that:0.019714695708284387 your:0.01698290109094307 human:0.01549120491264591 its:0.014815104113920457 all:0.01318562265249869 whose:0.012325169240206262 His:0.012084332574518386 on:0.011828201224612976 our:0.011015193327564824 own:0.010377474500269624 :0.12224443061523028 +of:0.06869542285075231 the:0.06818839697440345 and:0.06569247536446578 to:0.05379078485528856 in:0.0356972263157289 a:0.03406525245097982 for:0.02969252523652708 are:0.01731922463981346 is:0.016566894168774743 on:0.01630457202174288 be:0.01585256843256797 was:0.015577122602055904 1:0.013608673272121508 with:0.013128803898166735 :0.01276301665261953 that:0.011629979187580238 or:0.011184446657224966 his:0.010916000908306455 by:0.010429520055906865 :0.4778970934549729 +and:0.15954896509628302 fact:0.06250413334095033 said:0.05065834510086072 so:0.041377132404438896 is:0.035044982477999385 say:0.031238107057586156 was:0.03080136861091614 him:0.030163903722579304 found:0.028801317587840422 know:0.027089045931031216 show:0.02253951910492264 stated:0.020965932865206496 says:0.020478382261860294 believe:0.019460213424765792 but:0.017059185035050474 thought:0.01632135970667961 see:0.0159709956695605 me:0.01535960772741225 told:0.014380823351940667 :0.33923667952211567 +Mrs.:0.11435290887729148 and:0.09657419902642649 of:0.07376751393339048 Miss:0.06401879794692127 Mr.:0.06398631044655687 by:0.05063680453558773 the:0.02835234221579243 :0.02370391949800426 as:0.019247961653217044 Dr.:0.013128059796489552 said:0.011629152803717286 .:0.011600221138440104 Mrs:0.009288552558514995 Rev.:0.008582136234464471 to:0.00834527982478372 Sir:0.007121954721492279 or:0.006102936018393619 that:0.006015623705677289 for:0.005986433022709877 :0.3765588920421287 +of:0.09129790931378902 the:0.07369883040827747 and:0.047842263382354346 in:0.04189055351593407 to:0.04045875475680249 a:0.03542341257202578 be:0.02020462051672066 for:0.01979292654746225 was:0.01760256398103379 at:0.017380150555488715 is:0.014984483003968216 with:0.014047653760730413 by:0.01374644383819499 :0.012670486581795598 In:0.01200961464556976 or:0.011563835749786333 from:0.011391516893522809 are:0.011273104484969465 that:0.010755276030689069 :0.4809655994608848 +160:0.06937621177221139 hundred:0.06028141848483376 two:0.03665103692228182 of:0.03390308625274162 ten:0.031401521405480304 thousand:0.024226547975486647 100:0.022194843792296547 40:0.020880313915940606 five:0.020682380425707164 three:0.01752530112824782 forty:0.016764092461239846 2:0.015851873278612635 sixty:0.015748868194839012 80:0.015570581303355686 10:0.014967785613062331 four:0.013774722901745468 fifty:0.013742680621328222 twenty:0.012333089350909746 120:0.012252771024339032 :0.5308708731753403 +the:0.11919516938815296 of:0.07230453158552728 and:0.05781056740443249 a:0.043018564803886335 to:0.031305092790907506 in:0.020848713353460488 at:0.014270110001066288 .:0.012526810245749479 :0.012413283442322082 for:0.011719122709941797 by:0.010808400946589808 or:0.010404172990115616 The:0.01003576004804544 with:0.009811868184449042 tho:0.009295902015355835 was:0.008924239095331684 that:0.008672304223433876 is:0.0085591147338948 be:0.008335143826716943 :0.5187411282106204 +I:0.3332041809465271 to:0.16711595805854687 not:0.13369091957314655 you:0.06317963385962672 we:0.037515026704069546 and:0.031615677710436704 don't:0.03125618784054732 1:0.025139051043306087 We:0.02453946531911757 who:0.018180255011574404 didn't:0.017492018212982553 they:0.015100234902096353 will:0.013895081584498613 You:0.012932082521064916 "I:0.011570515832958211 don’t:0.00836387626946903 They:0.008065449798224327 can:0.00744501453043167 never:0.006397633582148736 :0.03230173669922672 +of:0.09673030776811078 by:0.09495945688430354 in:0.08397512762365893 and:0.07694892267710762 for:0.05216888631378321 is:0.038963994750119385 with:0.030697309960954385 without:0.025126430625870857 so:0.022010136321546702 was:0.021782763108086953 to:0.02173448560689114 In:0.019059629314259502 from:0.015384448215731483 are:0.015229980299370382 an:0.014570936838984088 that:0.014017024039157977 the:0.013999292626854567 as:0.01306626458504927 after:0.012170753170398162 :0.31640384926976106 +the:0.36494539087976025 a:0.1839529193426152 no:0.07120608468332408 this:0.06130529801191934 The:0.04523293891628115 any:0.03566974983748415 tho:0.02029684524598781 great:0.019894999595241582 in:0.018892669634169777 and:0.01651330515979324 important:0.014780119574068176 his:0.014638291531709938 of:0.01319364289529732 every:0.013084834950746518 that:0.013063602415460574 first:0.011522942794167572 to:0.010254505054461984 This:0.008772682587622833 tbe:0.0076722686468285416 :0.05410690824305993 +the:0.14097905379068107 of:0.07331087503882922 and:0.07181330996280533 a:0.05976433406615042 to:0.054517608548006975 be:0.027144583808848956 was:0.021670096559335054 or:0.017850176640821478 is:0.015691986615405103 in:0.01537689140487654 are:0.013527554375639277 :0.013345386361944066 at:0.012159230680710242 been:0.012083769908731407 for:0.012017580091645849 his:0.01156881653886233 were:0.010304989923631205 their:0.009881712923853423 tho:0.009488640365474152 :0.3965034023937479 +that:0.14098846792475478 and:0.12285198264312815 but:0.04314670789470215 which:0.036171350985323564 as:0.03283850084257408 when:0.024712026877159288 if:0.02110363917842736 :0.017448775518967997 But:0.012595428375609083 If:0.01255714493404141 where:0.01237694052382009 what:0.012167854631629199 it.:0.01106071491211813 think:0.0105901285043437 And:0.009491993135348898 of:0.008773417167950083 the:0.00808697166926616 until:0.007743235295379069 time:0.007555986891395948 :0.4467387320940609 +of:0.09129790931378902 the:0.07369883040827747 and:0.047842263382354346 in:0.04189055351593407 to:0.04045875475680249 a:0.03542341257202578 be:0.02020462051672066 for:0.01979292654746225 was:0.01760256398103379 at:0.017380150555488715 is:0.014984483003968216 with:0.014047653760730413 by:0.01374644383819499 :0.012670486581795598 In:0.01200961464556976 or:0.011563835749786333 from:0.011391516893522809 are:0.011273104484969465 that:0.010755276030689069 :0.4809655994608848 +to:0.4222556051791281 and:0.07469022174656034 will:0.055587710879111255 I:0.04243146506066144 who:0.029615983942328818 not:0.029033580220205406 of:0.025840259527990305 a:0.023295340021960674 would:0.0222828929491396 we:0.021781661663861786 they:0.020767341098140435 the:0.018843358203620833 may:0.01612607255513565 for:0.013446793875248534 have:0.01216835796761966 or:0.011803742999522877 that:0.010849489301737292 must:0.010185512707639002 with:0.010131814436729425 :0.12786279566365857 +and:0.03738010269101826 was:0.017156328429914852 not:0.009282375525503659 be:0.00913793412689212 is:0.009081623978734769 been:0.008065205487975112 as:0.00794569172303963 called:0.007813658681129444 him:0.007705838516235924 made:0.007620665894297412 land:0.00722865836844603 time:0.007193915422418049 place:0.0064927736606608406 reason:0.00648855529475498 demand:0.006224650498066775 out:0.005667382517399832 it:0.005637308975328016 one:0.005614849317733989 but:0.005574802571696655 :0.8216876783187537 +:0.11799223488364949 it.:0.024305864195736104 them.:0.017206385529702523 time.:0.011457636026685213 and:0.011024817508661636 country.:0.010549381298618269 .:0.009750317859017603 people.:0.009686455707503218 year.:0.008815746044235066 law.:0.008454520180298249 ::0.007382752033448867 him.:0.00702776754075868 years.:0.0067505058135034525 work.:0.006515149920954911 tion.:0.006341192494299511 day.:0.006327986562466456 that:0.006131014304691906 States.:0.006028851448235228 State.:0.0057563368099796675 :0.711495083837554 +and:0.08995317707915026 to:0.06844710404109794 of:0.04605142056172993 the:0.04074574508561307 which:0.02479116931334353 that:0.023764822140213245 re-:0.020841117231308055 in:0.020803825395358622 for:0.020278423301550053 :0.018417753428486977 not:0.016860793136637672 con-:0.016444405871234195 is:0.014386481772210856 or:0.014080680914153714 be-:0.01352268143271276 I:0.01317002660943805 was:0.011429878269381662 dis-:0.011196807025842847 he:0.01113106290024311 :0.5026826244902934 +the:0.17027190784407714 of:0.10585557835912704 and:0.07355927771906935 to:0.05486905984958157 a:0.04543746377447453 in:0.03128555052933153 be:0.028704485173100775 was:0.02350529800142253 is:0.02215549335554494 for:0.02077556258358175 his:0.01804639098945333 or:0.016335100594594944 their:0.015847999621030492 at:0.015526727957625254 been:0.011815834631173878 are:0.01139058447814694 this:0.010362020528084328 tho:0.01035635773045807 its:0.01000473355720393 :0.30289457272291764 +and:0.17673950233529515 the:0.06598219523370047 that:0.04662261883395195 all:0.039100923125689996 as:0.033279250791441825 I:0.031026890867839954 he:0.027500917322637278 other:0.027317638117652806 it:0.026859118448642454 or:0.025451772342778164 one:0.02394146130473213 ever:0.02356176955335148 you:0.018824839224381114 be:0.01867767380524137 these:0.01856033070919051 of:0.018264887426961206 two:0.01698784125388268 we:0.016840063874449036 more:0.015281704083004829 :0.3281786013451756 +the:0.1158760998841763 of:0.08644115212530717 and:0.08404866210732931 in:0.08040335001303671 to:0.03184299174385222 for:0.026172203833930183 be:0.023448957192102243 In:0.020086847035541956 that:0.019663900971907892 their:0.018955971901774858 on:0.017329895130272156 as:0.01726232405211797 was:0.016509436124819435 or:0.01628537407282357 are:0.014739166306696232 his:0.013605537793664753 is:0.012853742215196995 been:0.01255842840965973 a:0.011482345523253841 :0.35943361356253645 +a:0.27977795325240457 the:0.25065617015382535 any:0.06700941359758489 some:0.04508812066628287 large:0.03154004400191308 highest:0.02422889196074668 great:0.020765348597992506 The:0.017545134866576446 no:0.016872406423892754 tho:0.016320753700661064 slightest:0.016085140631699045 full:0.01552686281877767 every:0.015443417489149663 one:0.014483607807251577 certain:0.014186544826044775 that:0.012921976532916678 in:0.012160585371647138 and:0.011241636390174406 greater:0.011207974923975158 :0.1059380159864836 +daughter:0.04490943202394756 name:0.03691564229390088 son:0.025463504584511416 city:0.024795686990947682 number:0.022268177141183478 people:0.021954833826573195 line:0.020145968593486916 and:0.01903959566491869 residence:0.015910651256807216 wife:0.014988970592399233 deed:0.014419277333432503 corner:0.014040264070541025 estate:0.013902041991977197 men:0.012918032857951922 day:0.012753166883725929 side:0.0125223053319246 case:0.01250860004834219 State:0.012064500771557737 part:0.011519587627082294 :0.6359597601147883 +of:0.28571508084274183 in:0.09668204067210986 to:0.07874298396781138 and:0.07234703289229406 that:0.052575431781950926 with:0.04605064583598294 for:0.04589227695351991 by:0.039032478590087974 from:0.029520424708088227 is:0.02575291204529591 on:0.022845459154702957 In:0.022203170895305383 all:0.021718924061764327 was:0.014491053033084692 at:0.011537989298047186 upon:0.011127902091260477 as:0.010143577541686419 but:0.009984944120043462 into:0.009293333603003986 :0.0933423379112181 +the:0.32858903513356735 of:0.12886207664188268 to:0.05777704647199725 his:0.04646114719058782 and:0.04013742584805516 a:0.03420192812277139 this:0.03096516106161269 as:0.027711469954790735 The:0.02440431097464946 their:0.02419210996089476 in:0.023534494375335863 that:0.02162648728132853 by:0.02059183402702389 my:0.019946987169315793 tho:0.018872868836289945 her:0.014722560374313829 such:0.014351151177509508 our:0.013737423265207877 public:0.012997354898513306 :0.09531712723435218 +to:0.2442239993271702 of:0.22769876181708204 the:0.06686523474752955 in:0.06400932339668737 for:0.04655837660672185 by:0.03791920834136404 with:0.03567928670248039 and:0.03485230773377341 at:0.02835142554078456 a:0.018788268172751185 that:0.013644670789880155 In:0.013301805311872767 from:0.0131308593013919 their:0.011160460558864247 this:0.010859902672861079 his:0.010051745889142361 on:0.008954039295406422 The:0.008093710353410326 or:0.007514554804943138 :0.09734205863588305 +the:0.12814794827780002 of:0.11612135064300083 and:0.05765924148218878 a:0.05404371675460742 to:0.04108976416588225 in:0.03322284372483382 for:0.019392103048565163 .:0.013111676063591034 by:0.013021749585195851 with:0.01294017802009716 an:0.012262837187305857 or:0.012219844778977052 at:0.01098368140895835 be:0.01084881190235792 :0.010632133481056402 is:0.01061798474995475 that:0.010493439432827878 tho:0.00986200346418515 not:0.00969221661804303 :0.4126364752105713 +.:0.025166604350577933 -:0.018468345814054075 and:0.01706961980732555 of:0.016651465328936365 a:0.016309046970547903 re-:0.015735113953686486 the:0.014057441093714436 to:0.01255720408775248 :0.010425688576052862 th.:0.006111371236479613 con-:0.005391039799509636 ,:0.004961958363989057 or:0.004938375560539273 re:0.004916641964696144 t:0.004650119757670499 i:0.004476898980322825 Al:0.004143474620402282 en:0.003858868083065585 en-:0.003408355027343364 :0.8057023666233336 +amount:0.06324860670713985 payment:0.043711778774253286 out:0.0403578476114128 value:0.03982858121107984 part:0.039342291208537446 proof:0.035889357891094466 all:0.028363084961281194 tion:0.026158650552050744 proceeds:0.022448823347272166 cost:0.022374529335741928 that:0.021818365060714058 use:0.021718487437418287 one:0.021483921181429645 result:0.02138315113120925 sale:0.019976872838546288 sum:0.018781978899620917 advertisement:0.01782415255580784 favor:0.017625518672264102 reason:0.01741823927040189 :0.459245761352724 +the:0.3328439498016545 to:0.1319465836726775 a:0.12675119658652587 and:0.08689235159718844 The:0.03278213766075643 or:0.024472104830619276 tho:0.020360918441467417 in:0.017513476219279834 re-:0.017322599180744497 of:0.015731410298878017 re­:0.01499512113222132 an:0.013503603694979691 his:0.012869099394107505 will:0.012478411072405913 any:0.010518052180826055 with:0.009621972906203227 no:0.009550869145460963 tbe:0.009224620182004354 as:0.009143855688107537 :0.09047766631389165 +the:0.4011159317358546 and:0.15533039519433492 his:0.08096388514806799 The:0.07291443703607145 her:0.03642911688110019 a:0.02246567716099546 of:0.022056205901480146 tho:0.017222572771751155 my:0.015782530730805645 their:0.015622646563812088 this:0.01467158076063783 that:0.014336826296968672 such:0.013438820604979305 His:0.011402396638480177 our:0.011093802688472695 or:0.0075206835471676265 for:0.006558177219322738 but:0.005615159087639174 tbe:0.005381786602028769 :0.06907736743002936 +and:0.0642821101861506 the:0.05715541898857711 of:0.04854504511523172 which:0.041808419142172475 a:0.03775315138167408 it:0.03729218116999182 that:0.037034661447433594 It:0.03540895558067798 he:0.03510786022832894 be:0.02167586570354698 had:0.021436745323472624 has:0.020883813935478984 as:0.020828808221082202 have:0.01945445969769343 was:0.018627557459517385 He:0.016778145522102998 al-:0.014736403806995403 who:0.014571909253627934 to:0.013951311890188483 :0.4216671759460553 +Section:0.03346196466177172 No.:0.032756182245383944 of:0.03192462639241314 .:0.024396717330931718 :0.022934995940448347 and:0.022394939354760595 to:0.01924781620089021 the:0.010461290835281595 5:0.007409735222383082 from:0.007279206881274057 follows::0.007152213659206923 lots:0.006221914599915742 Mr.:0.006155828154484769 -:0.006126165367869347 July:0.0059189466973745535 Sec.:0.005720153091111141 for:0.00564934758831212 N:0.005382972759237054 range:0.005161184428793256 :0.7332437985881567 +that:0.21594066141170884 and:0.09236630090285801 as:0.08963124259361403 if:0.06665401342697319 which:0.06299676810018082 what:0.03848697670261171 but:0.03612231723511532 when:0.034132617589210074 If:0.0260853074904998 where:0.026021053991682173 than:0.01735150908909176 before:0.015373884567795242 because:0.013321193340513848 But:0.013038225736045824 until:0.012924137796448808 time:0.011402026362513466 think:0.01111588658265881 then:0.01036119390188106 while:0.010278301917216398 :0.1953963812613808 +the:0.1917888067013474 of:0.1113369584746255 and:0.08269808114485727 to:0.044565159114954116 in:0.03490679797688973 a:0.028633466399933236 for:0.026671270667082452 The:0.02201616086210396 as:0.02010514394335988 that:0.018595488239785067 or:0.0178934446888291 which:0.017204381089868045 such:0.01680108156869211 with:0.01325966252953294 their:0.012716268069300157 all:0.012665086115388913 tho:0.011707802619846629 :0.011505853531225237 be:0.01097711672521667 :0.29295196953716157 +and:0.07558940021936399 recorded:0.030196237618668006 was:0.028917161578042846 made:0.027969746247669736 that:0.027730098932509103 o'clock:0.025060522019555328 up:0.023026552239529506 is:0.020398277211376416 found:0.02003101797656537 placed:0.017482208134164214 out:0.016937164562539058 place:0.016819459500107596 interest:0.016629321966808677 him:0.016002796715253755 situated:0.01573420479581609 it:0.015128305982428461 them:0.014715943643665314 part:0.014646613000297721 interested:0.014450471929902294 :0.5615344957257364 +a:0.6318244984533393 A:0.09487746842883835 very:0.06895812882503034 the:0.05790753608370767 but:0.026949050654102625 Very:0.01050274100764627 this:0.01028481757006205 is:0.010227926062514953 that:0.00992389190773158 are:0.009564757072936879 and:0.009403327063901535 so:0.009118828345580024 last:0.007219860062954896 The:0.007171912133962039 n:0.005566570404937303 as:0.0055366331748109955 was:0.003749495261159469 of:0.003613817109228664 tho:0.003449773980827663 :0.013148966396727418 +as:0.17659502123404544 is:0.0995777522373544 was:0.09334184861138578 of:0.0729160565010496 and:0.06784628178669701 be:0.05245473510075144 with:0.035663288033356326 by:0.03403344394155097 in:0.0311892928235959 that:0.027217891373529764 to:0.02580819146424774 made:0.0223436055674175 such:0.0219940890747261 have:0.021869781261202655 been:0.02053650574865565 for:0.019908806173678288 had:0.019289268732881372 not:0.01827263435837645 like:0.013189701720819173 :0.12495180425467843 +be:0.16856437073746056 was:0.14963538177932642 been:0.083634612978302 were:0.06905455852134812 and:0.06823960614939502 is:0.06111812261362296 are:0.05401082663282744 had:0.030461075109905842 have:0.029540679639922785 being:0.023386323012774757 he:0.021996198527164487 has:0.01953834615992097 then:0.011356202786832876 not:0.011152613374388488 now:0.010575375458943636 I:0.009675983260215895 that:0.009097633814743405 who:0.008822283880752813 Is:0.008581517899043283 :0.15055828766310822 +and:0.14625498311756543 said:0.0821408402137806 fact:0.053042879817408975 stated:0.043080626045290886 so:0.03670560455337853 him:0.03145185140002361 know:0.030269284895004085 say:0.023631027804186345 is:0.023317250373478222 says:0.022511697585094068 believe:0.021363437164841573 but:0.01993757805139123 saying:0.018992342115662253 told:0.01877630041085035 replied:0.01865923525468731 all:0.017484377075553177 found:0.017287552137347117 me:0.01691240193856356 stating:0.014580183464830303 :0.34260054658106237 +the:0.5145354237385422 a:0.046478282471819274 of:0.04592068530240292 The:0.032410101628385056 tho:0.03098966749203318 any:0.029037926445062548 an:0.02109762942923936 no:0.020915038419801923 and:0.015485493466437622 tbe:0.011474050949039678 such:0.010753978740274794 or:0.010590151853824142 their:0.009873267874690433 be:0.009697461709033739 its:0.009695782345634693 his:0.009059308334708947 other:0.009032737732743613 this:0.008663483325016244 very:0.008571997106075244 :0.14471753163523438 +of:0.3662866375108468 in:0.09226307565787764 on:0.06319915759308385 and:0.06152326439138832 to:0.05412810760164116 for:0.050036382908221745 that:0.0381836661540379 from:0.03640195807622655 by:0.029657099635361613 In:0.021383511391549415 with:0.018880252238103704 all:0.018789583719789976 which:0.01398611996200474 at:0.01334384479453439 upon:0.011092086035036024 along:0.010699536406889596 between:0.009750764110042321 through:0.009575780913214387 as:0.00872030028596286 :0.07109887061418702 +it:0.12095170213729357 I:0.10295253072398855 he:0.09334846102451981 It:0.07560258178653198 we:0.07475312662710235 they:0.07214204772571246 We:0.030151283973907466 and:0.02932294138389299 you:0.024017617487323593 she:0.0217617484534564 which:0.02015335738562504 that:0.019474813901445006 He:0.019412464993831032 They:0.016494013645298986 who:0.016280066098497956 man:0.009946927938764435 ho:0.0091155519095246 there:0.009028002202766 people:0.008837686362582114 :0.2252530742379357 +the:0.1847564407057139 and:0.10126478200649837 of:0.08831264818219191 The:0.05781217644693712 that:0.022136138620238693 these:0.01631671668090445 a:0.014513194758497697 or:0.01417786516951797 to:0.012988822898574776 their:0.012329949427663977 as:0.012287881083578981 :0.012262416633580412 his:0.011940145330932676 in:0.011700605535597748 tho:0.011368635516343475 These:0.011209828309073805 this:0.010982581867111285 which:0.010198916461314558 other:0.008582822905284792 :0.3738574314604434 +the:0.16669919764370614 of:0.13933250588456456 their:0.04382762598408451 and:0.039834365820690394 his:0.03304600112416099 two:0.031349062369894536 few:0.02749051475495902 at:0.026797033397492828 our:0.02534643417886787 other:0.02243357199283257 or:0.021812790072672325 to:0.021646241127145308 with:0.019958179015545016 all:0.018076946498189545 three:0.0180582859517507 many:0.017662755190072075 The:0.01744390808532099 a:0.01697983677124869 for:0.016626017036521813 :0.27457872710028014 +of:0.14294018472549277 the:0.11892157247913933 in:0.09929567448103614 and:0.04819672493628168 to:0.03667421706741324 at:0.03477878868061316 a:0.030751856187058904 In:0.0285019516555839 for:0.027340973274284988 on:0.024744995687085856 from:0.023345958496902845 or:0.019418050247039353 by:0.01835364028415023 that:0.014469339959545113 with:0.014463676137373866 :0.01179019482761458 as:0.011649824181293672 other:0.010940313021427183 his:0.010652249323145407 :0.2717698143475178 +the:0.018810816048493266 dollars:0.017774997771830687 it:0.015948044729329886 ;:0.014605960572662098 more:0.014488387092507073 law:0.013173602725206832 I:0.01286500767780822 and:0.012055730378494037 time:0.01133806176139308 made:0.010397556375505651 :0.010323098406667962 nothing:0.010156706645940422 land:0.010047417965515799 of:0.009739625483550786 power:0.009507236458468528 one:0.009116933653501321 cost:0.009038784040726892 that:0.008360042988311781 dollars,:0.008291124448601887 :0.7729608647754838 +and:0.10420839758155238 the:0.08820328959967355 to:0.06752817131250434 of:0.042834001119313354 a:0.02914185985075756 be:0.026668344190521342 in:0.026062258842672884 is:0.02523452182067559 for:0.02127917080334442 was:0.021050426595976363 or:0.017644299350390902 his:0.01712352226659667 I:0.016237424366804826 at:0.014737258191539173 that:0.013576148552830975 as:0.01318922978363276 he:0.012990257255891976 their:0.012969427208978139 :0.012907491798084895 :0.4154144995082579 +to:0.0713417321456775 of:0.04620286486122824 was:0.04577588760303728 .:0.0419424475828401 the:0.039654518342238466 and:0.03377568306497962 is:0.03259984669503788 be:0.026260067906880787 Mrs.:0.02500554021721236 a:0.022566550593586854 in:0.0211301799989531 -:0.02001227504373083 con-:0.013528787083209304 are:0.013487927052423875 were:0.012835379563431386 on:0.011948489901196017 his:0.0119211967826159 Mr.:0.010694494985945806 for:0.010197602655717331 :0.4881185279200574 +to:0.09510176257557867 and:0.0759782477397007 of:0.044882537993784916 the:0.0315600709783228 is:0.027469709441114137 in:0.024414242512733896 was:0.023644505786906175 con-:0.02072663556943141 will:0.0197525729259325 re-:0.019515757684955143 he:0.01933396268374066 I:0.019168528042120436 for:0.018758717550584603 be:0.018539065847662673 would:0.018528419960293203 that:0.017041510263127942 be-:0.016586329410835588 there:0.01648203693916975 not:0.016023551150036123 :0.45549183494396867 +as:0.06931392982974462 according:0.052071562389565784 up:0.0511867300210483 and:0.040371568633051955 went:0.03351644485287816 back:0.032358406609281 regard:0.03073407747799069 feet:0.02852138506231652 down:0.026379903432040268 owing:0.02466642634685871 due:0.023695193974505355 go:0.022910973192184297 reference:0.020802802907016128 came:0.019883741951819873 sent:0.019874244915639484 attention:0.019565955494145405 come:0.01885185084678811 given:0.018792390567602263 it:0.017366961307524745 :0.4281354501879983 +out:0.05941904963054598 one:0.054824042063606755 some:0.05247794090323687 all:0.03926190883783565 part:0.035496978464792696 because:0.025099630466577632 account:0.024761806092616793 many:0.023799186613584284 and:0.02140242809025699 that:0.01934844095643571 portion:0.019105006248878457 value:0.018257503974032613 use:0.01686640358385487 time:0.015610548615003978 amount:0.01525203957993562 tion:0.015055978834802522 cause:0.014538196289420737 any:0.014448371559742294 members:0.014218034247347602 :0.49975650494749196 +the:0.1641320911864556 of:0.10963561514902358 to:0.05993589229439846 and:0.04208926764956589 in:0.019221005540290003 be:0.01918552126025394 for:0.017445399739083878 :0.014664063357480404 a:0.014069170585525209 was:0.013733291802570586 or:0.012468520814202116 his:0.011799879485955518 at:0.010696823819775148 by:0.010119018117454564 that:0.010046356341542622 is:0.009673674731749014 on:0.009564704884264759 their:0.009040151420537667 were:0.008959694247019914 :0.4325198575728511 +to:0.16135372507842874 and:0.13781736333951478 a:0.04283207943500398 be:0.04066976379351862 been:0.03654027128937173 was:0.03297409801449259 not:0.025462195790183197 which:0.0248007614544966 the:0.02305936962224961 is:0.022176609688395323 they:0.02033286996097276 will:0.018964023049060308 then:0.01747692901121604 are:0.017161945206546837 he:0.016752248480140005 now:0.015165802292916883 I:0.01512237790667684 have:0.014979084775840253 one:0.014348517004410706 :0.3010099648065642 +:0.05408755002078587 that:0.049531093299571755 and:0.026307747831082865 it.:0.023066050300906284 but:0.01604063510609521 as:0.013691133477483644 them.:0.013231826614228009 country.:0.010841946065548622 of:0.010487154798430135 which:0.009468692177853443 people.:0.008334614695462483 years.:0.008004416265567844 time.:0.007956347283674411 If:0.007858697640010603 him.:0.007413514011734311 year.:0.006977232836926869 for:0.006851092903969388 life.:0.006064905382420001 .:0.005982979647669748 :0.7068023696405785 +and:0.09663561906516753 the:0.07603007439739497 of:0.04884619553957697 to:0.04532105922901099 is:0.0392340504868352 was:0.03591362097779346 be:0.033830011785199156 it:0.023670098562716273 he:0.023660405054324693 in:0.023283666389552597 a:0.021186689183883476 are:0.01852669121621313 that:0.016045349656396257 which:0.015377475665479852 for:0.015303251398983734 or:0.013990459363350664 his:0.01392081973314691 an:0.01362077118477725 I:0.013577849378090947 :0.411025841732106 +he:0.15886978224634463 who:0.08409469367530975 they:0.07607124846823078 I:0.06864017517010713 and:0.057460575065718125 that:0.04649487298419198 which:0.04451497279938635 she:0.04092515416230857 it:0.030985182914230584 He:0.030097597411524554 we:0.02392064388788118 It:0.01198852040502255 have:0.011955372505914231 They:0.010953441649131066 ho:0.008989604467275031 She:0.008586419968883761 1:0.008072101345336542 all:0.007641159605973746 man:0.007532786345170297 :0.26120569492205914 +and:0.1544262001480204 that:0.06233177567772522 but:0.0266481917430309 and,:0.01450627555013675 ;:0.01330054879375273 that,:0.011048970645489294 was:0.009270094988964393 him:0.009042360553028251 worth:0.009004445647015339 one:0.008459825684744094 to:0.008290985445603307 it:0.008038979533283865 for:0.007472963898258835 a:0.007081309244382191 as:0.006709136790805448 which,:0.006708496610886283 But:0.006273572390624093 little:0.006156590847529484 is:0.005970662457188525 :0.6182586133495307 +is:0.03931339814993806 nothing:0.025286641763487893 ;:0.02446884701940575 are:0.023798374824191688 was:0.018427000946789052 it,:0.013374578099264643 had:0.011089014870821085 have:0.010412577248304569 them,:0.010329800602139323 him,:0.010091585278101204 and:0.008811006538680024 be:0.008473644591003224 time,:0.008328234064616306 anything:0.00826107459855444 were:0.006816085741901172 not:0.005722011774297405 has:0.005505269814030262 Is:0.005413917801399947 country,:0.005195822462642211 :0.7498811138104318 +and:0.08995317707915026 to:0.06844710404109794 of:0.04605142056172993 the:0.04074574508561307 which:0.02479116931334353 that:0.023764822140213245 re-:0.020841117231308055 in:0.020803825395358622 for:0.020278423301550053 :0.018417753428486977 not:0.016860793136637672 con-:0.016444405871234195 is:0.014386481772210856 or:0.014080680914153714 be-:0.01352268143271276 I:0.01317002660943805 was:0.011429878269381662 dis-:0.011196807025842847 he:0.01113106290024311 :0.5026826244902934 +the:0.16807735899698817 of:0.10541662057906837 and:0.05138367848570702 a:0.04141865232648221 to:0.0385989743764065 in:0.026264864977736738 was:0.019530675665220657 his:0.018900421021236905 be:0.017373825006196972 their:0.015767721170721456 for:0.01557246589796783 with:0.014071419046630446 is:0.012922913111931644 at:0.012690452250034052 are:0.010702713108721902 .:0.010158075558988393 Mr.:0.009672788574483367 tho:0.009612591781990074 were:0.009549306361446321 :0.391314481702041 +and:0.09558993812079226 time:0.06442378159761125 days:0.06147211610415271 or:0.05124661805176127 years:0.04578360135017629 day:0.042743506818205594 that:0.03520193243183224 but:0.034384480962371 long:0.03360030717695011 just:0.03208213672589685 him:0.02968291913394273 Just:0.02863396861862876 night:0.02835462024359393 months:0.027818580295366237 was:0.026735968631666083 weeks:0.025534380403537633 appear:0.02407678111640752 hours:0.01669422426339116 appeared:0.01587042807927823 :0.27906970987443813 +manner:0.10014154852873941 and:0.04758153569965947 that:0.027548634697924172 way:0.017860480013091023 time:0.013660246230114154 it:0.01211986153900764 all:0.010836767636137537 one:0.010756664322780446 part:0.010728763786470055 district:0.010609221477965584 land:0.010415108137366232 place:0.010399655452080119 esteem:0.009337949673530233 work:0.008993990842538664 now:0.008593781479256013 them:0.008489846330526286 day:0.008448021271808803 money:0.008371952622637733 interest:0.008221632363195723 :0.6558843378951706 +and:0.09029865690997776 the:0.08252017074882666 of:0.058667899668452796 to:0.040642949966800096 Mr.:0.03013748999365771 a:0.024511828852983312 he:0.02253401226503985 The:0.02140141018056701 that:0.017686638458654255 in:0.01757198936423644 which:0.01714330735407244 be:0.01579188972739209 was:0.013162097814566835 it:0.012650070998785932 his:0.012298190552096652 as:0.011981679331622959 when:0.01093994885187679 or:0.01082535022946126 is:0.010659988420133678 :0.4775744303107955 +the:0.27688242488841086 a:0.19722028744309347 and:0.044179769532777524 The:0.03257513577616937 his:0.03245141127886069 every:0.023984492140009292 this:0.023212991060043865 United:0.02209762541042725 young:0.02067372432926651 one:0.018373051156540577 tho:0.018058812460404652 of:0.01535854907024525 same:0.015253333973004232 each:0.01503275182776291 other:0.013960619335058795 old:0.013381513447895205 any:0.0133213845443619 not:0.012851891768219211 their:0.011785512338832639 :0.17834471821861575 +and:0.08832934385398629 him:0.026983886122743477 application:0.026114251583320973 was:0.02489894908956569 it:0.023075411912330694 up:0.02251060273927451 made:0.02033127255167498 out:0.019486588030277113 time:0.018903019749807147 them:0.018632082326077732 used:0.016786364428856393 but:0.016269712072418657 ready:0.01618805525798725 is:0.016020989807641675 not:0.01564434704203927 demand:0.015432404580140367 asked:0.014792759533761007 that:0.01442331755080464 work:0.014074418411123594 :0.5701022233561686 +and:0.06317916895143688 was:0.03089079697380977 is:0.020044819943736053 be:0.019406329289829806 are:0.016631216139614186 that:0.015910745835586493 it:0.014132589635136123 been:0.013429954470292457 made:0.013153338042273357 were:0.012494049396038097 or:0.012369181282419555 them:0.011608721240324167 up:0.01101461536327863 him:0.010833186604515583 as:0.010718511743974049 succeeded:0.010682665877813333 engaged:0.010592681714621757 not:0.009777868089593193 now:0.00948198968071834 :0.6826475697249881 +the:0.2189377418620256 this:0.19337190714928532 his:0.06169986276004687 that:0.046571040085391584 first:0.04037544617566665 same:0.03256817899570102 taken:0.02760043257197199 on:0.02621683292864519 took:0.024777236067058256 of:0.023080744277030767 in:0.02248790541015109 a:0.02103833781200095 second:0.020165739237770222 right:0.017996029531743694 their:0.016410283785586816 her:0.015406293935559196 our:0.015254360777030402 tho:0.013561091677358033 to:0.013286963680869353 :0.14819357127910698 +hundred:0.02334136986593815 up:0.005482494641173394 men:0.005366536521246011 Hundred:0.0047587970519216575 John:0.00441808156134956 William:0.004390720675819281 him:0.004016828614280843 ;:0.003997112205305733 due:0.003721199871732 in:0.0036582900032443304 time:0.003637206863828461 James:0.0035594902370151707 out:0.0034878448964120057 .:0.003467980723571515 1:0.0032804584819785204 day:0.0032444781513863933 ,:0.003058139385740603 :0.0030314555521939613 Robert:0.003005471634785646 :0.9060760430610768 +and:0.06317916895143688 was:0.03089079697380977 is:0.020044819943736053 be:0.019406329289829806 are:0.016631216139614186 that:0.015910745835586493 it:0.014132589635136123 been:0.013429954470292457 made:0.013153338042273357 were:0.012494049396038097 or:0.012369181282419555 them:0.011608721240324167 up:0.01101461536327863 him:0.010833186604515583 as:0.010718511743974049 succeeded:0.010682665877813333 engaged:0.010592681714621757 not:0.009777868089593193 now:0.00948198968071834 :0.6826475697249881 +to:0.12022893700269083 and:0.09020394424291768 the:0.08587503820055309 of:0.06450042443224316 in:0.0310058468700829 a:0.017742048521183405 :0.015548046036689871 not:0.01491307651316237 that:0.014112408707955496 for:0.013734482372212283 I:0.013065769926808477 will:0.012848502316304782 at:0.012837991177321897 In:0.012628718855091186 by:0.012491091048660757 be:0.011425930130217754 is:0.0113962101007567 he:0.011342727513475473 or:0.01112522537451577 :0.4219735806571561 +and:0.13666364985817683 that:0.10723287617922309 as:0.08795200382331987 which:0.06583870311693829 when:0.05803042560475274 but:0.02958490718184383 where:0.024191040538844234 if:0.022833174414182793 what:0.017971872746654353 whom:0.01520325617908728 for:0.014863924742738267 said:0.011731478008542781 Then:0.011489603880492735 to:0.011284746654271115 time:0.01113012349030607 before:0.0110802195573618 If:0.010266607567844102 while:0.010041689914080864 When:0.009507428184602332 :0.3321022683567367 +of:0.1148094823155894 the:0.10375449432385654 and:0.05543961374432148 to:0.04858628011310786 in:0.03430196864689979 on:0.033014349250356984 by:0.03224838657264374 a:0.02645956986292239 :0.023607669665549377 was:0.01877471098219102 for:0.017893581638957497 at:0.01743390473981727 that:0.016766582110850633 from:0.015215122903644712 be:0.01464199429564539 1:0.014504368760069821 I:0.013861069227148146 with:0.012761465789134067 is:0.012759070963360115 :0.3721663140939338 +it:0.20207354351193807 It:0.13069731527628475 which:0.05915110977053132 that:0.051971317378550465 he:0.04819105046531351 and:0.04708227332778723 This:0.03321146982316584 there:0.02535693046699757 who:0.021786790173889514 He:0.02129093016089236 this:0.01988252116554146 what:0.016832911856123626 There:0.012671833776989709 but:0.011505798191410989 she:0.010389660406123623 work:0.008124655404974474 as:0.0071986238556803524 That:0.007081928849367105 man:0.006958453460189352 :0.25754088267824865 +going:0.07084785611310776 looked:0.06847982024378707 went:0.05927019238473967 was:0.04690836944001209 go:0.038862148587269045 relied:0.03712441469624887 and:0.032522018112617436 is:0.031815724266767986 put:0.0297669122191217 carried:0.02683616662091435 came:0.0253768851022181 be:0.024968693847729626 so:0.022960916785655965 passed:0.019380213000651448 as:0.016949316554996423 get:0.01666487951464585 come:0.01545106282061183 lying:0.014813881349021273 them:0.01381336009216837 :0.38618716824771515 +of:0.12418119859256194 the:0.06900000957293803 and:0.06009833352929882 a:0.04819916350376364 to:0.04658124605072499 be:0.04158573722687951 was:0.037355425367451324 in:0.03387679768939747 is:0.02916290754851544 be-:0.019751913828595192 with:0.019247597110474874 on:0.01618191639690933 which:0.01351016033461207 are:0.013113859890397865 for:0.01292913523246135 his:0.012724463249883789 from:0.012685959188820293 at:0.01266906452471213 or:0.012397580429030898 :0.36374753073257104 +and:0.0980071250435292 there:0.04042883347414716 that:0.03517915240823434 or:0.03132538787249177 There:0.025056426304352446 :0.023357533311255497 which:0.0193960748282549 have:0.015126083640312296 one:0.013047351236478738 has:0.012145083002388389 is:0.010449041087174211 than:0.010262051656296529 be:0.00922491783876237 the:0.00894944035800059 it:0.008596913697405577 :0.008504664528617542 -:0.008019640983122737 It:0.008004306119944862 nor:0.0075308107206770525 :0.6063891618885539 +of:0.09129790931378902 the:0.07369883040827747 and:0.047842263382354346 in:0.04189055351593407 to:0.04045875475680249 a:0.03542341257202578 be:0.02020462051672066 for:0.01979292654746225 was:0.01760256398103379 at:0.017380150555488715 is:0.014984483003968216 with:0.014047653760730413 by:0.01374644383819499 :0.012670486581795598 In:0.01200961464556976 or:0.011563835749786333 from:0.011391516893522809 are:0.011273104484969465 that:0.010755276030689069 :0.4809655994608848 +of:0.09744494209871986 to:0.08700043033324077 at:0.054595562001721935 the:0.05159924124151709 and:0.03872638319573341 .:0.029716116363251353 in:0.02825003105013817 :0.018049102760879975 by:0.012255084265468232 a:0.009461585812936876 for:0.009216812778824962 A.:0.008016526472998355 said:0.007179912558046133 from:0.007073234833712201 on:0.007063029537739 with:0.006815510129761219 as:0.006594982399441691 or:0.00648507862635436 1:0.006413946557901809 :0.5070424869816126 +for:0.15623637488250927 of:0.10179211609118365 and:0.08284267110418443 to:0.07831439402893428 with:0.0742102976852727 in:0.05694138247513004 upon:0.03463675599069589 see:0.03235241468762155 by:0.0309830250025907 do:0.029256661448265688 know:0.028190942164430004 or:0.027993353582216815 about:0.023841095034361624 on:0.018879987040825406 doing:0.01759805379631329 at:0.0171278255767614 from:0.016009337101063927 done:0.014768642858380344 make:0.013677715912839136 :0.14334695353641988 +the:0.1454500361787387 of:0.1080247151493501 to:0.04516715868785427 boy.:0.036249098323069925 and:0.03403580073245388 girl.:0.032660326140049385 a:0.03171979252021135 in:0.02714044436566853 for:0.02365213940166824 be:0.021942286684630472 their:0.021087116084698817 his:0.019774122064073623 was:0.014637031197642503 with:0.014008395154201525 are:0.012730720509515858 is:0.011363112041341867 as:0.011357870543086747 from:0.01063391638067422 were:0.010589399829418696 :0.3667765180116513 +this:0.2243896526546031 the:0.1494887713586408 last:0.11531283295293059 a:0.0944363388500581 each:0.054519353987481256 past:0.05359928708922272 next:0.04231170534996245 every:0.040243160849158445 one:0.031501246269612856 This:0.0268306556038362 that:0.024628907588861076 fiscal:0.019499056431319346 per:0.019184188702785973 The:0.019159595916228025 whole:0.009584577551395584 tho:0.008356025532885482 first:0.008172698799029153 present:0.007641879044470977 new:0.005994092622651496 :0.04414597284486634 +a:0.22794710497613552 his:0.09401812326627348 the:0.08627150177712094 good:0.054686528383075875 their:0.052038680045550206 and:0.051315811050552135 in:0.04922768825841819 great:0.04769612231577956 of:0.03842369863255859 or:0.03481096190731737 my:0.02459238031196249 this:0.02294128317008058 no:0.022586809218470377 to:0.02110665092784515 our:0.01980502372481892 her:0.01923915029477042 its:0.0192369035254818 from:0.013552982702253328 your:0.01075874607758219 :0.08874384943395286 +the:0.1799808738496834 of:0.1264393915211752 to:0.04213654387789592 by:0.039081009417322836 in:0.038172536517079865 and:0.03464237619228929 for:0.023546435624742408 that:0.020594941622234613 on:0.02036587102669179 Mrs.:0.01868739346410467 from:0.018632719549584793 said:0.018201457575750344 Mr.:0.018150453122321934 a:0.017025916380524152 boy.:0.01617124866911726 The:0.015796413143213416 girl.:0.013961213545937483 tho:0.013857275645765417 :0.012275083354670499 :0.31128084589989474 +to:0.6882910148185377 of:0.06310998407695313 and:0.0618490111676567 the:0.028371846026232224 will:0.02409365873557143 by:0.011602079996892936 a:0.010835800138036186 as:0.009728894207411078 for:0.008471854142036692 not:0.007851595726403484 which:0.006763139515100076 that:0.006629609016916891 would:0.006595112130673479 an:0.006495483963714425 in:0.004394667971531648 with:0.004013446857345668 The:0.0036988135249835133 may:0.0032298595759324713 or:0.003179701930633527 :0.0397944264774368 +and:0.1053676533220708 that:0.056720364763419344 for:0.047984684598576646 of:0.047023334084464595 make:0.0437941046017265 as:0.04377860748955702 in:0.04119079708483224 with:0.03835811532195541 but:0.03519519819201608 to:0.03125026890518727 give:0.026432580429230804 on:0.02417507533340294 made:0.02379858843040713 by:0.020181515239309174 have:0.019430805800206917 upon:0.01920979210136027 is:0.01718491979162219 which:0.016657604571659542 found:0.013954811040108527 :0.3273111788988866 +made:0.06897469173957262 and:0.06707969442928423 owned:0.044795696704866335 occupied:0.03113432587619084 accompanied:0.02808757127170626 assisted:0.02590603164025979 given:0.022870893146847822 followed:0.022717274034879564 signed:0.019806739468716094 appointed:0.019586693496253835 held:0.01891992138582011 that:0.01856113063703692 ed:0.018485025614210233 done:0.017762124408748175 taken:0.016397486147789544 him:0.015999303309479948 or:0.015371676219410562 but:0.015233866638472588 day:0.014654389081588035 :0.4966554647488665 +;:0.01458927046758731 it,:0.007973265891266864 him:0.007834970369143835 one:0.007240974664279108 in:0.006989508095588829 and:0.006417396987522371 ,:0.006059091806132192 it:0.006014614548599763 up:0.005812344146302806 out:0.005395853159197619 them,:0.005290532062834904 him,:0.004938420268273817 city:0.004793760033506698 :0.004646491011450349 man:0.004641061555670736 country:0.0046164671969483135 feet:0.0044416267197611185 time,:0.004376787347733258 time:0.004358244018157902 :0.8825693196500423 +of:0.2761427040330831 to:0.10216553318377847 in:0.08633407124780706 and:0.07430933851550878 by:0.04193573457520946 for:0.03543886345077445 with:0.031539628658334595 at:0.029150386897548928 or:0.02861371251021948 from:0.027664523929663436 on:0.02658028271066006 oi:0.02411770427535231 that:0.01714313649898673 In:0.016792506533368244 ot:0.013506652020116987 against:0.009548773390523914 upon:0.008290068366325709 ol:0.00708044901335885 all:0.006467081879770487 :0.13617884830960894 +the:0.19960304988211547 of:0.10917197784637371 any:0.05818321117097364 in:0.04896710561267933 and:0.048301579026184975 to:0.03954057515917933 great:0.03817129803504734 this:0.03111798134809835 their:0.02750597362141775 our:0.025997462820279982 a:0.023479453006048537 some:0.022432277652140967 other:0.02177508336939157 his:0.01921483066930483 its:0.018092064460783736 all:0.01714651208129246 said:0.016945529713513253 tho:0.015319954076821234 In:0.01483557117362128 :0.20319850927473226 +the:0.11822585722518938 per:0.07869894769723455 of:0.07526600217216253 a:0.0731866418474562 for:0.03122137517429567 all:0.030905972519653078 his:0.02619633560616349 said:0.02493393918534089 and:0.02419097591238569 one:0.02074807646690107 this:0.019193072035015645 in:0.01722280555545684 every:0.016315291974186456 with:0.015093046731755098 their:0.014119652050944911 to:0.01375536382177305 at:0.01367031986276405 her:0.013436347242161998 on:0.012921139057053362 :0.359698837862106 +of:0.14140911374913043 the:0.08406324275408093 in:0.051712664696044124 and:0.042016144218116745 that:0.03344666676867289 to:0.027709869064190353 The:0.023638573607111874 for:0.020483914568636966 Mr.:0.017669174058513534 which:0.016972368561751192 as:0.016259401671191127 a:0.014920071848964473 :0.014646146896987337 In:0.009940105168995288 or:0.00909223143114935 such:0.008359976573547796 when:0.008218759560201584 -:0.008178509589941811 by:0.007801238855262815 :0.44246182635750936 +of:0.1644387130626778 and:0.10631739183507763 are:0.09369006722957582 in:0.08926025600416647 for:0.0842895232222329 is:0.0775673659322185 was:0.035497942332663554 by:0.028130728155640723 with:0.026768000371923062 to:0.02543822044362907 were:0.025406914801297233 more:0.023415596416133118 so:0.022387530262511824 been:0.019685753471849463 be:0.017669757735664197 In:0.01693942974053361 much:0.016021622826816545 do:0.013177178986082956 or:0.012161286777186399 :0.10073672039211914 +It:0.3691854982991879 it:0.3493434403952935 which:0.03318974559477664 he:0.02544077458031331 This:0.023335454573705186 that:0.017065382142844216 what:0.015298201151072685 He:0.014494883604951573 who:0.013553888435978758 there:0.012491278652485333 and:0.009304809860475638 this:0.009148100512993959 she:0.006557989010979131 There:0.005771217291936638 as:0.004126173349330474 She:0.0032943970425339812 man:0.00324595360920066 work:0.0030737816818303234 one:0.0030549560836656397 :0.07802407412644442 +be:0.18632188461969307 was:0.11656555248421133 he:0.09353506976166628 and:0.0813545126308877 is:0.06140479282794482 been:0.04367574441115795 were:0.03468755130161033 have:0.029948259345069443 are:0.02981227201825183 I:0.02561512667254284 He:0.023513472506027477 has:0.021182533168121447 had:0.020253131429143843 who:0.02024641736627765 they:0.019988142601657002 she:0.018021471747611147 which:0.015618201102353301 we:0.014274911433575026 it:0.011313671515277568 :0.13166728105691997 +they:0.11272444126406898 it:0.08930843339322717 we:0.08091301975379638 which:0.07382255477581826 he:0.0704493984032278 that:0.056733470565553584 you:0.05523920959198996 It:0.050598053044651106 as:0.038455617656477786 who:0.03822153554082709 I:0.030479132183481854 and:0.02964233346129433 she:0.01568266209146731 there:0.015428392474619518 We:0.014786450481354019 They:0.013302227876748495 He:0.012587455453279283 You:0.012094298916845433 one:0.011443508366639297 :0.17708780470463234 +the:0.39749834532651884 a:0.07520030034269234 and:0.05540858759821703 The:0.03273515726769502 tho:0.030061875542463562 of:0.020144331424922633 tbe:0.014929647509541684 in:0.014268129706664795 or:0.013333166761078447 .:0.013287381914101323 an:0.009000188755386574 to:0.00880680429595084 :0.007943763822197133 Mr.:0.00773879605474787 by:0.007328417831573476 as:0.005922572098978465 for:0.0047526933692942485 that:0.004736121968310169 on:0.004594595720579333 :0.2713091226890862 +in:0.037366177804418324 and:0.034833535028649255 was:0.027281593090637143 :0.02200188337773913 I:0.021563174405702972 have:0.021534255315367998 is:0.019903241486493882 it:0.01924220673064537 be:0.018890360367452064 the:0.018869273530749478 time:0.018721645120106902 he:0.017613086413638426 of:0.01512621421305748 not:0.013552351299691215 had:0.012816602470771784 that:0.010772447860803325 :0.010705745244150055 are:0.0106557579439253 matter:0.01022150527627667 :0.6373289430197232 +a:0.22546652676360668 the:0.21520233476543638 good:0.04407707092740605 large:0.04222650121654964 an:0.03854142832608143 and:0.03143403587622278 his:0.027762884721647174 The:0.026028759377882404 to:0.020269388473923122 full:0.02025579358081479 their:0.01709039011704668 one:0.015731801832267404 tho:0.014691212142698156 great:0.014604298462845732 no:0.01299412691998118 small:0.011946208885173032 any:0.011885477962418137 every:0.011447795723116577 her:0.011424212691192396 :0.18591975123369026 +and:0.07705437548817387 depend:0.031536193375950296 based:0.03144111872793531 placed:0.030957065963502946 depends:0.03075765919212402 called:0.030155936973754766 down:0.02681736716319054 made:0.026577710722022318 effect:0.023344764020024934 that:0.02149799173318628 look:0.02036076372291408 due:0.02026744173692952 call:0.019789339473829694 levied:0.01970103437603757 imposed:0.018928989316509288 put:0.01802119246063272 dependent:0.01689647076264392 out:0.015342186135269933 entered:0.01437601109950992 :0.505176387555858 +forenoon:0.049087044927134296 one:0.042019344153293864 result:0.0336055679867043 out:0.03169101588596489 all:0.03057894228013225 part:0.025920718177052136 some:0.020557595967026145 much:0.020188718746588123 is:0.020067442692216105 and:0.0195693695424754 purpose:0.018716670926930787 end:0.017468906875066442 tion:0.016423147145874038 any:0.015344362963578974 people:0.01510289083778003 members:0.01419719265310436 that:0.013575689878939545 favor:0.013551061333859249 portion:0.012341263890554411 :0.5689930531357247 +the:0.6341564589259524 a:0.08495959974430758 The:0.028619757629310877 first:0.027540563890795993 tho:0.024292795204885333 some:0.021313859807163296 in:0.020720253902622998 any:0.01762316220042532 this:0.014637393006402185 long:0.013747516798525638 that:0.013544303397170582 same:0.012510924181033207 short:0.010108810651381821 tbe:0.009512097255056988 present:0.009394668307318816 of:0.009338802833839872 no:0.00789433893434668 In:0.006896812250809434 and:0.005984532336408529 :0.026203348742242345 +statute:0.18503778554392375 and:0.0783983962223686 that:0.033380239341607734 or:0.03152256600567214 as:0.02563417972280283 is:0.02236126157520294 it:0.021719211380978074 was:0.019916659616198235 be:0.019571526470503822 interest:0.018952452254899003 made:0.017678352581659514 described:0.01578673853550229 them:0.015529260604471443 interested:0.01516978637816619 but:0.014400036858924001 not:0.01437132414250767 than:0.013662947787247437 been:0.012665598734066783 engaged:0.011480850852674019 :0.41176082539062353 +the:0.5067299342915395 a:0.05956505421600654 this:0.04042531291329274 of:0.038605749153326846 and:0.029793648099201316 The:0.02791515666496798 tho:0.025282383240635774 his:0.02285005369702989 tbe:0.013382383652299643 our:0.012791610439341855 other:0.012264523121904205 for:0.010626366200791977 that:0.010059126368659957 in:0.009497273136737556 their:0.008681743250621786 her:0.007903201121675299 its:0.007167967258414151 great:0.007035621089302484 old:0.006574746346608699 :0.14184814573764187 +and:0.18126822642013604 as:0.1436644363731284 that:0.12276880000604813 but:0.04372560924011097 even:0.041822684063998125 him:0.02767645951420187 asked:0.02378321288267796 or:0.023385666112408075 But:0.01847306053725373 and,:0.01810547328047897 see:0.01202505287937413 ;:0.011164433197935595 And:0.01026672420572629 that,:0.010067776526017248 me:0.008819150308084505 know:0.00845138396842317 than:0.007852140069420956 Even:0.007679639197175196 which,:0.00753555839596377 :0.27046451282143685 +the:0.1570879454366584 of:0.07804606027406501 and:0.06787223916973353 a:0.036913117407562514 that:0.03650642298570135 The:0.02495259369096442 in:0.024366179622801448 no:0.021237121796534534 Mr.:0.02095974543727837 which:0.020555747976365113 to:0.019670312615068093 his:0.014514871313338153 for:0.013864556278571553 as:0.012619099712826765 he:0.011995143219360524 their:0.011486225473642654 said:0.011457904953995053 Mrs.:0.010878795762489643 tho:0.010097198257076249 :0.3939187186159666 +they:0.10056645349931592 it:0.10038147980281237 you:0.07664804688390818 we:0.07493757066993771 which:0.0645519286789888 that:0.06109025604619699 as:0.04711561552407511 he:0.040785657477323066 It:0.040578763446960445 I:0.040036298510989186 and:0.037862224306667004 who:0.030218042940922316 You:0.019557095360162854 one:0.016953823515250516 We:0.014462585465103534 They:0.013071447325349768 what:0.00959708909321948 1:0.008436336562519365 man:0.007935317797907232 :0.19421396709239017 +any:0.2287232547150072 the:0.16123623092833797 a:0.0732726117317536 this:0.06283691784527035 that:0.0496248570130321 no:0.030478263267737612 on:0.026910086471735727 or:0.02355902933461519 of:0.02296025620958819 every:0.022261326557506962 same:0.01998158743296376 other:0.019199267506608945 in:0.018952765832797935 each:0.018034884829615645 and:0.015648521330117272 long:0.013196372554107761 little:0.01129952339604421 one:0.010469089483499396 at:0.010399176054066633 :0.1599559775055935 +to:0.2958488172291813 will:0.2221259672882793 shall:0.09888093022532546 should:0.0596297389600682 may:0.05108388235534139 can:0.04336496149113113 would:0.04016585904157254 not:0.03339712166451829 must:0.03309835075894306 could:0.025159295795382702 cannot:0.014710206480436465 and:0.010056062498345647 might:0.008044665667283651 that:0.004442124895577211 which:0.003145123528196562 it:0.003076896381039365 also:0.002988528365005657 never:0.0022691658719487086 probably:0.001738150864282841 :0.045774150638140484 +the:0.151564299052826 of:0.09038750472184202 a:0.07461608498201407 and:0.0466615732099648 or:0.03708629888768566 to:0.035569645185394266 in:0.030052392055566975 any:0.021357004017533987 be:0.017082462262097576 no:0.015583554621420614 for:0.01514666947239845 with:0.014723578456062631 by:0.012787654001396713 said:0.012726164481980391 such:0.011693957670550037 tho:0.01002305994460469 their:0.010002787499567302 at:0.00923663004776501 is:0.008936804169325014 :0.37376187526000376 +one:0.1028303141280697 part:0.05963429477052991 out:0.04766456937681193 some:0.031418679026461914 members:0.030764490253327767 side:0.029940657362655835 portion:0.022063658796890564 office:0.020457735219956013 member:0.019726706386316174 end:0.019666887540649894 tion:0.018667441728710307 parts:0.016814747270460957 people:0.014112771422418794 all:0.014072739582212475 any:0.013183573287639892 One:0.013083578354183906 that:0.013024335602903442 account:0.012482348155001894 many:0.012077825070275192 :0.48731264666452345 +the:0.13758371847043735 of:0.08126231297889798 a:0.04835240661334856 to:0.03996161899422211 in:0.03603320280674478 any:0.034005415697271016 for:0.03290981553838409 or:0.031193260325817707 and:0.028804775836003934 either:0.02343738739108748 no:0.021123155370424168 be:0.016843477735894497 their:0.016601367834784518 such:0.015397861219013374 said:0.015232309787862667 by:0.013689181478574652 with:0.013615736362004947 other:0.013335896604116772 his:0.012177012617782089 :0.3674400863373273 +have:0.1585317090950053 has:0.12471502730057195 is:0.10753746099496696 are:0.0969245953962997 had:0.0875879785255968 be:0.06759837001397642 was:0.05697266179050903 been:0.04055945792441944 were:0.030612930939713432 not:0.025011407044085592 Is:0.020867857595034164 and:0.015473754691968981 he:0.013346843892650381 it:0.008846184123972393 much:0.00839344007031615 having:0.008173270968256298 as:0.0075676305114612315 the:0.006937871467814699 which:0.006787332219049317 :0.10655421543433177 +to:0.1296614693795769 and:0.11834060075243594 of:0.04694593778794064 the:0.04531913541320229 he:0.0407186168553034 in:0.037467800909897674 I:0.01641276333331621 was:0.015016064571468833 by:0.014547602223777245 had:0.014510066841285127 a:0.013805460654044914 or:0.013432860718589752 who:0.013290592432039193 will:0.01313012054332892 He:0.012759702770683602 not:0.012527595932333189 In:0.012328690701134546 it:0.010610498256838545 that:0.010606739481398588 :0.40756768044140446 +day:0.024214285069493354 sum:0.014877209856607666 out:0.014400618078116557 one:0.013767789029689196 that:0.011479263306170223 and:0.01022569312703899 period:0.009265685803809761 time:0.0080183245775353 state:0.007336474247548034 rate:0.007260772714390314 tion:0.006836155248669433 county:0.006806543041736577 State:0.006749189563427647 said:0.006734337695203473 people:0.006457634335187798 city:0.006437671868292745 part:0.006270319181735101 office:0.00613992033272129 lot:0.006047361110180835 :0.8196747518124456 +the:0.5492117835149354 a:0.06266738000654928 The:0.050752298948359566 tho:0.028181388181205757 and:0.024165707981494276 county:0.015858382858267368 of:0.01565496042038181 one:0.013773514791860078 State:0.013550312974804626 said:0.013371951010327322 tbe:0.011902478768032897 A:0.009956208343501038 or:0.009472068479559574 city:0.00682306426297099 state:0.006737158180797753 chief:0.006175077673237331 North:0.006121868317644724 as:0.006092144855597168 that:0.005967808852509628 :0.1425644415779634 +the:0.1555109388110604 and:0.07092844599974789 of:0.06254155889473975 Mr.:0.033588567418484885 The:0.03150082645041259 .:0.0208294577588912 that:0.017610537257466252 Mrs.:0.014956830087391838 to:0.013737380780468805 a:0.013165247935648725 as:0.01283837659441818 :0.012677302504708105 Miss:0.011286722633557176 tho:0.011212888627913085 in:0.01088389468952743 by:0.010827114257777548 his:0.010205063023635028 when:0.007009545688406286 for:0.007004684117169481 :0.47068461646857535 +and:0.09787071543084067 that:0.03991205090281645 made:0.031221506457054484 is:0.02912125731490028 was:0.028890693791197214 placed:0.023433768096613405 as:0.021235169506767154 be:0.020980966078724454 or:0.020654644189757747 it:0.020370894604110082 them:0.02026104908955177 now:0.020235367218671932 up:0.018067424186665796 are:0.01741614296069905 him:0.016338116787566907 out:0.016198840522810645 but:0.016073331244865086 not:0.015666419619017713 down:0.012831635836605852 :0.5122200061607634 +of:0.3101700605376416 to:0.14081402134260226 in:0.08161871287010308 on:0.04851522215012273 by:0.04752284235430884 for:0.04604072886053496 that:0.04079936009000915 at:0.04015130641589117 and:0.03287189328321719 with:0.026253255454611536 from:0.024470158770317895 In:0.019299741429728318 all:0.01275472717291114 upon:0.009840941802403524 as:0.009521156189982543 when:0.008048990667443927 before:0.007814299350989018 up:0.007380301817324119 into:0.007323131471846209 :0.07778914796801076 +of:0.20775168476460637 to:0.14097028020968355 that:0.06714926609165825 and:0.06287584523096318 with:0.0548099270722787 in:0.05429078959088033 for:0.0372441587804383 all:0.03402166132561784 on:0.0317824380737112 from:0.0279499386166834 as:0.02313741276875311 at:0.021470041213654072 by:0.018380177474595763 upon:0.015725290830387477 but:0.0154177399964588 is:0.013922135818008228 up:0.013650677576156551 when:0.01207353264190126 under:0.011808509061333197 :0.13456849286223044 +the:0.09227305374838003 and:0.07652484008671026 of:0.07410395521600732 to:0.04069523924851598 for:0.03536666143134042 in:0.030097411548675738 are:0.024201853341707866 be:0.022771482048088057 was:0.02040008034130349 a:0.018770911017076054 is:0.0180493828051999 or:0.013278239116347798 :0.012544840643941776 were:0.012310082063478478 that:0.012306211244413202 on:0.011534051814590168 -:0.010817198738029069 been:0.010757563248663556 now:0.010539395292700274 :0.4516575470048306 +and:0.03868242960999506 as:0.031124813427855922 went:0.02352509775927722 him:0.02196555539050794 them:0.018760608639018784 up:0.017985449426794205 is:0.017894175620344187 go:0.017174904667157563 able:0.016756848979943888 going:0.014481672239490295 it:0.014128375989346808 was:0.013277058274565138 time:0.013249953793837373 not:0.012469887553778763 began:0.012465717758716884 way:0.012105610030480113 back:0.012090864562211581 right:0.011941707822828511 amounted:0.011564315359310868 :0.667354953094539 +of:0.1857353608355879 to:0.10019651989507836 the:0.0698386944567566 in:0.04488776019495035 and:0.04384728760771975 with:0.041810948486426865 on:0.04027774645947355 by:0.038043220466495845 a:0.037669690930772215 as:0.03138268866590573 for:0.03092924260443719 between:0.03092541401370945 are:0.019885551680382335 his:0.015772383544116288 from:0.014579611994688236 is:0.01365456271655647 so:0.013214119856523 was:0.013089873173837356 their:0.012990291613899948 :0.20026903080268257 +amount:0.10372764599102022 and:0.10033070160788995 is:0.10016060947105902 he:0.07557562328638849 have:0.042615067743644854 be:0.03336530356598451 was:0.03203037846881598 which:0.026938706921653663 that:0.026154906602391954 had:0.02438679602704424 are:0.02333023318167684 it:0.023180248298331034 I:0.02288316090886444 who:0.021657383579588234 has:0.021117853947017966 now:0.016661094901924214 ever:0.016306667521545352 if:0.01626700060998804 committee:0.015038200253980064 :0.2572724171111909 +and:0.03868242960999506 as:0.031124813427855922 went:0.02352509775927722 him:0.02196555539050794 them:0.018760608639018784 up:0.017985449426794205 is:0.017894175620344187 go:0.017174904667157563 able:0.016756848979943888 going:0.014481672239490295 it:0.014128375989346808 was:0.013277058274565138 time:0.013249953793837373 not:0.012469887553778763 began:0.012465717758716884 way:0.012105610030480113 back:0.012090864562211581 right:0.011941707822828511 amounted:0.011564315359310868 :0.667354953094539 +and:0.04627947433896382 made:0.027405792491169652 it:0.027232317648304763 free:0.026482899117962658 miles:0.024966419626566396 years:0.02299733325899314 away:0.021141601010654324 him:0.02106262774634082 them:0.021044380260643265 men:0.019350934344302656 suffering:0.019095264998761723 come:0.018457595690032934 taken:0.0184487701835068 came:0.018003381055454737 man:0.01741577539800871 was:0.015761825411360092 up:0.01566913899776522 be:0.014980663665324643 far:0.014516600795344111 :0.5886872039605395 +who:0.12700579182388927 they:0.11546769737012755 I:0.08975335643946965 we:0.08820305696858005 would:0.071953229552334 to:0.056542016435923485 We:0.05432047700789661 which:0.03536780405048442 They:0.03284401194537028 and:0.031514499239972515 you:0.026112110466329688 shall:0.02540341834867251 will:0.022254435744074774 must:0.02106771696396791 should:0.01996042166593722 that:0.018963457899593934 might:0.015976753648307983 may:0.015507248986051266 not:0.013152732471390633 :0.11762976297162624 +of:0.08146736965888926 and:0.07666551485166863 the:0.05487510180647545 to:0.037999890274720796 .:0.036324447431547266 :0.026388751632505567 in:0.019292760700604143 by:0.016226418561050938 at:0.015932523381982356 Mr.:0.015840791664193492 J.:0.014607026132655437 Miss:0.014041824576421323 a:0.01383655074195025 A.:0.01353872900012674 John:0.013156316119579832 Mrs.:0.012288438868773741 C.:0.011337968848136024 H.:0.011257997385527102 on:0.011184736814885361 :0.5027368415483063 +the:0.16807735899698817 of:0.10541662057906837 and:0.05138367848570702 a:0.04141865232648221 to:0.0385989743764065 in:0.026264864977736738 was:0.019530675665220657 his:0.018900421021236905 be:0.017373825006196972 their:0.015767721170721456 for:0.01557246589796783 with:0.014071419046630446 is:0.012922913111931644 at:0.012690452250034052 are:0.010702713108721902 .:0.010158075558988393 Mr.:0.009672788574483367 tho:0.009612591781990074 were:0.009549306361446321 :0.391314481702041 +the:0.2262061607325844 and:0.12394248971315355 of:0.06686605864527904 most:0.05774039009206018 be:0.05557670847577607 are:0.05234548696890846 was:0.04375974916225068 is:0.03990309929691807 The:0.02846076713644758 that:0.0279500276210318 in:0.027148396241017704 were:0.027117131860658967 an:0.026964877084691363 have:0.024339290786089793 or:0.023600188166793167 his:0.020384263099631185 been:0.019624849775911862 its:0.018595384575514837 as:0.01752974336119118 :0.0709449372040901 +line:0.15752563636361985 corner:0.06905613321055662 sheriff:0.04286280179780869 part:0.037001196156271406 prayer:0.03186416352602805 sale:0.03142394633391665 portion:0.030977207181492977 payment:0.030430446299472058 side:0.02841338084626688 Clerk:0.02587108715774029 estate:0.023280323008369054 date:0.02006128172523745 terms:0.018782735440552378 office:0.018339074345315308 one:0.01814520625554345 amount:0.017961503456507155 virtue:0.017809997850830296 Sheriff:0.01769919054283388 holder:0.01674874067282088 :0.3447459478288167 +one:0.1028303141280697 part:0.05963429477052991 out:0.04766456937681193 some:0.031418679026461914 members:0.030764490253327767 side:0.029940657362655835 portion:0.022063658796890564 office:0.020457735219956013 member:0.019726706386316174 end:0.019666887540649894 tion:0.018667441728710307 parts:0.016814747270460957 people:0.014112771422418794 all:0.014072739582212475 any:0.013183573287639892 One:0.013083578354183906 that:0.013024335602903442 account:0.012482348155001894 many:0.012077825070275192 :0.48731264666452345 +of:0.23836117169057092 in:0.09624027772948132 and:0.07504912450937135 to:0.06984407140046293 on:0.06983639270049696 for:0.06295163059360377 that:0.0466653231017934 with:0.04575273608911482 all:0.03029659866694322 from:0.02960154061886067 by:0.0288792496641747 In:0.02244236097193398 upon:0.019601908906099162 is:0.0195855916686715 as:0.016803358711630315 under:0.012080622289441512 into:0.011193572746272567 but:0.010719478391617793 at:0.010469324881519842 :0.08262566466793925 +and:0.03868242960999506 as:0.031124813427855922 went:0.02352509775927722 him:0.02196555539050794 them:0.018760608639018784 up:0.017985449426794205 is:0.017894175620344187 go:0.017174904667157563 able:0.016756848979943888 going:0.014481672239490295 it:0.014128375989346808 was:0.013277058274565138 time:0.013249953793837373 not:0.012469887553778763 began:0.012465717758716884 way:0.012105610030480113 back:0.012090864562211581 right:0.011941707822828511 amounted:0.011564315359310868 :0.667354953094539 +the:0.24148518670161181 of:0.0987639625572011 a:0.06328511417447277 and:0.06260889470116857 The:0.044919205724400425 to:0.029251153233486014 in:0.0184461873670124 that:0.018303720422801713 an:0.01718423708499709 with:0.016183563959036248 tho:0.015421023550003063 by:0.014631299283901748 Mr.:0.012954209941221666 or:0.012906736800672778 his:0.012872489189689394 :0.011535189031073725 .:0.009412993849311997 for:0.008796645203057023 tbe:0.007985276309949225 :0.2820529109149312 +the:0.30557306543497154 of:0.21625309700490566 in:0.1890749906795867 and:0.0412217767235091 for:0.025495280871025202 In:0.025177836107867238 to:0.02208900409114767 his:0.021977145085838024 their:0.015957545469317606 its:0.015559885414577819 tho:0.01357607684629298 a:0.011829442605879427 with:0.01077660390123308 The:0.010595796465857444 our:0.00875586659641594 such:0.007103973627383899 great:0.006936746582596194 or:0.006478183439002968 tbe:0.005958567441266966 :0.038609115611324546 +they:0.1339461974459378 who:0.06449150759567976 there:0.05964669119660761 we:0.0585849824831157 which:0.04520706527438132 and:0.04286863407622332 you:0.03913729104764804 There:0.03396718801066769 They:0.03209640169845594 that:0.031200974702725145 men:0.019845671685432692 We:0.019418999595623168 people:0.013692363921183908 as:0.010974793792506123 them:0.008386153753557493 these:0.008192396320777473 You:0.006556364269777689 These:0.006145955695672415 but:0.0058114506320729896 :0.3588289168019537 +sum:0.03352282876311118 number:0.028116684882597106 line:0.019995206059833036 city:0.01946514558931857 out:0.019275318828420953 day:0.01666865340772654 county:0.014872697538657208 amount:0.013254184849875051 Board:0.01252325449624941 town:0.012449555905674143 side:0.011663975251122375 part:0.011517157473718155 County:0.011460540331966697 state:0.011087331502382173 City:0.010878919191854432 purpose:0.01081028255427907 and:0.010297866493795984 way:0.009848747943663767 name:0.009522170936943183 :0.711769477998811 +and:0.13377170368134686 the:0.11654747655209814 to:0.09499402588581828 an:0.05056620998190902 of:0.04127570382884048 be:0.04047312414396916 I:0.037868089031488396 not:0.037213013882125105 is:0.030129125661232013 a:0.02492552906828043 most:0.024812442386514335 are:0.02203450083243818 we:0.02095125027314224 was:0.020741489913953973 as:0.020555427568452966 they:0.019251886131291883 he:0.018730933586988116 will:0.016925389129959417 in:0.016578536911041587 :0.2106541415491094 +they:0.19135347197181155 we:0.10250476599596942 who:0.08944970342625944 They:0.0444261106316066 We:0.044418507546369355 you:0.041810689422196096 which:0.04059131499894386 there:0.03934464969323815 that:0.03722343631737562 men:0.0367227084279983 and:0.03093335467199696 people:0.02160508928222609 There:0.01562801954526549 as:0.0089465968923478 You:0.008169650921911546 I:0.007382801340387189 them:0.006876876641969719 these:0.006409601871815805 These:0.0060858180143374095 :0.21911683238597365 +to:0.4923151589107365 could:0.08108938927485301 can:0.0646561430798314 not:0.05383009366289935 will:0.030791711609448078 and:0.029282310266657355 cannot:0.022644686860976652 would:0.021834713922380334 they:0.020962097155562905 you:0.019351953455968768 never:0.018934951376864836 may:0.016431292690917993 I:0.015472927375553001 we:0.014551300875979103 should:0.013301657817166572 must:0.011214993123671546 or:0.010794475661369946 ever:0.007849367214123746 might:0.007664005551978721 :0.04602677011306017 +the:0.21338821846430836 his:0.1298016409337904 my:0.12579132771785811 her:0.049783455566694654 a:0.03510033969006964 and:0.03268506972334606 of:0.02562366523869977 good:0.019095601317460624 their:0.01864933904407768 old:0.015254104472157935 that:0.014996079820678193 for:0.013669421762354165 to:0.01337805729618804 our:0.013240576416338891 The:0.013076551890386298 this:0.012914077256447111 your:0.010814639993768763 tho:0.009803005420686895 own:0.008383582961549106 :0.22355124501313928 +and:0.09787071543084067 that:0.03991205090281645 made:0.031221506457054484 is:0.02912125731490028 was:0.028890693791197214 placed:0.023433768096613405 as:0.021235169506767154 be:0.020980966078724454 or:0.020654644189757747 it:0.020370894604110082 them:0.02026104908955177 now:0.020235367218671932 up:0.018067424186665796 are:0.01741614296069905 him:0.016338116787566907 out:0.016198840522810645 but:0.016073331244865086 not:0.015666419619017713 down:0.012831635836605852 :0.5122200061607634 +and:0.08198093339766814 was:0.06759287534903889 be:0.05724195087206682 is:0.056136458487726165 are:0.05598444981390882 were:0.03754518318285404 been:0.03682107562783522 so:0.032918644561233563 that:0.02749960674246707 much:0.02635605629352375 as:0.023154656688190736 being:0.022202514485227205 not:0.021447555862536452 up:0.018115698253217478 of:0.018036143609339434 or:0.01765481828236903 to:0.017611026354809222 but:0.017134372851523947 only:0.01509037872751246 :0.34847560055695154 +the:0.5251635078376617 a:0.08453332095954583 of:0.04988296552077459 by:0.04568670708502258 The:0.044345866910600475 at:0.03878832533148324 tho:0.025287748898132047 any:0.024627242284681865 this:0.012026360169329993 and:0.011384111884338667 general:0.009465599484992843 tariff:0.008447924645014034 to:0.00844390870697773 tbe:0.008087728474482771 such:0.007704153918416836 every:0.007498896450200709 no:0.007439141130348939 same:0.005965979927209699 that:0.004765009217379215 :0.06945550116340628 +the:0.11919516938815296 of:0.07230453158552728 and:0.05781056740443249 a:0.043018564803886335 to:0.031305092790907506 in:0.020848713353460488 at:0.014270110001066288 .:0.012526810245749479 :0.012413283442322082 for:0.011719122709941797 by:0.010808400946589808 or:0.010404172990115616 The:0.01003576004804544 with:0.009811868184449042 tho:0.009295902015355835 was:0.008924239095331684 that:0.008672304223433876 is:0.0085591147338948 be:0.008335143826716943 :0.5187411282106204 +and:0.3218650015195172 of:0.1254651815271957 the:0.11004861403095668 for:0.04564536475321615 with:0.04563482606678063 while:0.04099841928248937 many:0.0406198537693829 to:0.03478540440107453 are:0.024875332948832356 all:0.024116317911636532 by:0.023258449701298835 or:0.021225229464219144 among:0.015083645092960115 The:0.014100646171920028 in:0.013132785573504143 from:0.013057516390970691 as:0.012383720469311686 that:0.011579606183271241 is:0.009943701784228473 :0.05118038295723359 +of:0.2568272769693775 in:0.12088234161960963 to:0.08922547743172204 for:0.06509164237043563 that:0.05980711907164446 and:0.052289158781681985 with:0.04111019448738134 by:0.034931063736105 In:0.030649197600603417 all:0.02459081054059718 from:0.023974642008320092 under:0.020520278307248944 on:0.016634503762240113 as:0.01655203119473385 is:0.012532246740416843 upon:0.01153465215980342 but:0.01141045471772058 which:0.009852376105541351 at:0.009833475849000005 :0.0907510565458166 +that:0.12877368706521958 and:0.10343811039022899 which:0.0800594611337696 when:0.0599498536653849 as:0.05365331218935483 to:0.05164919583107528 if:0.0270497931800979 will:0.026888923864509424 but:0.025383516994720454 where:0.02293792694881519 what:0.0207777038096785 t:0.019343962651763098 said:0.01729463067489876 would:0.015552874955014286 for:0.015152722422811573 whom:0.014651225618177431 before:0.011897529933941699 not:0.011235367786820124 If:0.010599156710423857 :0.2827110441732945 +of:0.20259134727855868 to:0.09967767561844589 and:0.09323819173027974 in:0.06958411585617477 that:0.053156703432435906 all:0.04245010807469023 by:0.03435859240970245 as:0.02764072968287715 for:0.027370620300511385 In:0.02641724791033729 is:0.024935082092907502 with:0.024450268030594628 from:0.021797762991698128 at:0.020561309041580038 on:0.019210480588483902 was:0.01805981815524027 but:0.012340355597379048 over:0.011799857746681958 when:0.010813723446826067 :0.158546010014595 +they:0.1422193600349239 there:0.05849232705230136 and:0.05364794518597344 who:0.05060073302875137 we:0.039796496029532724 which:0.03941212764794604 They:0.031471712802734836 There:0.027277972023637694 that:0.026476974477609803 men:0.021156313901298206 it:0.018650113321758758 We:0.01150603832299857 you:0.011134597598392589 I:0.010540813851838039 people:0.010280567277705255 them:0.009160186773977539 as:0.008841656067636882 but:0.007526879745621775 whom:0.007466233559027055 :0.41334095129633414 +.:0.08978379159967233 A.:0.05028678936759054 J.:0.04957022662534189 by:0.047094669375755065 W.:0.045182918171986074 S.:0.04401595884004883 John:0.043024340183466146 of:0.040300919629240574 C.:0.03775948090548139 H.:0.03261822071561746 and:0.030280729940859244 M.:0.027696591324522905 Mrs.:0.027462393538600534 D.:0.02564531677839569 James:0.025166841303863426 George:0.023277771991320282 William:0.02247663834219896 R.:0.02133261412295853 E.:0.019148609322467505 :0.29687517792061263 +he:0.1280186677701183 be:0.0839694590068535 have:0.07454494030726798 I:0.06395818971391895 was:0.061011892906660946 and:0.05813421270551711 had:0.04808582529833074 been:0.039284959801929885 they:0.037623218510516115 has:0.03581100540481492 He:0.031097950346408536 which:0.02434929527765954 who:0.022297582167891194 were:0.02164699588586189 she:0.02151756393349951 it:0.01712654375510765 we:0.015985083171612097 is:0.014963119786892666 that:0.01391715584111503 :0.18565633840802342 +and:0.06724495245908454 made:0.028211852731406216 protest:0.027843197976595735 up:0.023370210432813555 judgment:0.022135968628309268 brought:0.021931220628039778 charges:0.017996748704120318 taken:0.017950606700264517 claims:0.01616111619539776 war:0.016058894778587247 or:0.015653177735972655 a:0.01547178641125573 protection:0.015173691025217659 out:0.013712191483166793 as:0.013123565348671767 law:0.012899235597734692 fight:0.012433267635072052 prejudice:0.012027252147541339 charged:0.01163669664440423 :0.6179643667363441 +of:0.0994894963597308 the:0.08548415765744023 and:0.07870985835349432 to:0.06913278733464595 in:0.037081523550354725 a:0.03469527152611964 for:0.02830344940256672 or:0.023820640731557714 that:0.019195201855922116 with:0.019087706263246434 be:0.017065161075916126 which:0.01330440048210486 on:0.012935066733062996 is:0.012781241869941513 their:0.012468666592570428 :0.012462062212454198 more:0.012223049720700247 from:0.012097591150899928 an:0.011332946177834946 :0.3873297209494361 +was:0.16099009402395442 and:0.12655848243499276 be:0.1186517657419764 were:0.09384565332614819 are:0.07861814069087228 been:0.06309509755103335 is:0.05575966779910303 he:0.02192915102858708 being:0.020964916942781325 am:0.013016872853535694 Is:0.012336754369860366 all:0.01123938337640611 but:0.010567391403873699 who:0.010372209141863578 now:0.01029245394229435 or:0.010083189839426812 had:0.009742660994701986 have:0.009447855778721153 those:0.009241500637379078 :0.15224675812248836 +number:0.06434402010865761 purpose:0.060767714874872876 out:0.040134785214143986 matter:0.036904324188097234 instead:0.036278631162256256 cost:0.026030392593215837 means:0.02502824181659962 years:0.021927418812760096 line:0.02179536524405515 is:0.01916076118175673 be:0.016917894863904912 piece:0.016642125512325977 sum:0.016574248286390387 way:0.016471698365122443 kind:0.0163301543579987 full:0.016122504156354744 time:0.015540211557305013 sort:0.014469261104083779 case:0.01445890915768242 :0.5031013374424163 +of:0.1304055297669544 the:0.12138526287998287 to:0.03766769732779686 and:0.03211924430609441 on:0.030874548236333572 in:0.027317133258075773 :0.022776736863959427 for:0.01925086295507012 be:0.01845107536529642 at:0.01645591285731636 was:0.015440688364688303 by:0.012470792001485032 a:0.012082668120157923 said:0.012053267283879468 that:0.011116582092947823 State:0.009931515599209028 or:0.009431702750910778 from:0.009118002601575291 is:0.008828283599801442 :0.44182249376846466 +the:0.37749317228520196 a:0.25494159771002284 of:0.0751468580900824 The:0.03646770434718739 in:0.03419281512033545 this:0.03109856551797799 A:0.027565071523863345 tho:0.024894791940164127 with:0.01885036891904646 and:0.016999784969261435 our:0.01304302723420281 his:0.011821082973928003 two:0.010711138490237084 that:0.00839663065970476 In:0.0077635247694270645 for:0.0076198698938966984 tbe:0.006721336010128047 very:0.005941559594934012 its:0.005023799200192238 :0.02430730075020585 +to:0.6764728139811514 not:0.055471332820721544 will:0.04604613550883604 would:0.039077620182920894 and:0.028468540048656458 can:0.021606623142846428 may:0.020177193288516932 could:0.017401490162472576 To:0.015609856721563222 should:0.009683512442066264 shall:0.008309259555092817 it:0.007883575394416734 I:0.006665283850174623 they:0.005618518025549803 cannot:0.0045717820582975455 must:0.004301190119380583 might:0.004248919360097465 which:0.00403531645962041 we:0.0038642676436721336 :0.019486769233946058 +as:0.1623253407842383 is:0.1440517224509337 was:0.09503223973996075 be:0.06303742003748526 are:0.0600324597860304 so:0.05703950446218175 and:0.053850275154932695 were:0.036629490768046745 very:0.031210343165687025 Is:0.025659000723667467 been:0.025290510488161264 not:0.021946417016340935 a:0.017940979802712143 too:0.014326554032871764 do:0.01427153094930073 or:0.013830433642915923 pretty:0.013803355230061364 may:0.01125114038617254 the:0.01097976379110998 :0.12649151758718924 +and:0.10925101585080288 of:0.09523212351273119 the:0.08405000501377789 to:0.03771370679314594 for:0.032238150486892596 a:0.03187300563203929 that:0.029744585089495536 which:0.028819132911761403 or:0.026381580167191054 be:0.01963163098872943 in:0.01884090270315227 as:0.017358310653269916 they:0.01729463018182581 was:0.016855793796917425 are:0.01650856001629639 :0.015791018099353606 who:0.015769157903558793 he:0.015215796993336674 The:0.014218483387887376 :0.3562124098178345 +of:0.2425574317833286 in:0.07813098979467661 by:0.07087642749126587 for:0.06839099717504381 to:0.06419469804692511 and:0.061780970555110205 all:0.04535300239583739 that:0.0434397620542684 from:0.028407388272795406 In:0.025763516318160637 with:0.022291842565700052 but:0.02133411447989252 if:0.01887084409581759 upon:0.018544390978623797 on:0.01689022653032168 If:0.015950791280041836 All:0.012596599759711403 do:0.011570911122111355 at:0.009818527314734309 :0.12223656798563345 +as:0.06931392982974462 according:0.052071562389565784 up:0.0511867300210483 and:0.040371568633051955 went:0.03351644485287816 back:0.032358406609281 regard:0.03073407747799069 feet:0.02852138506231652 down:0.026379903432040268 owing:0.02466642634685871 due:0.023695193974505355 go:0.022910973192184297 reference:0.020802802907016128 came:0.019883741951819873 sent:0.019874244915639484 attention:0.019565955494145405 come:0.01885185084678811 given:0.018792390567602263 it:0.017366961307524745 :0.4281354501879983 +of:0.15648012601678854 the:0.10671305867784991 and:0.09283069059526172 to:0.048976636525028906 a:0.039202737718152025 with:0.02344427160654302 in:0.021826949899432856 for:0.018015071602780305 or:0.01797820938318818 by:0.016243739780804674 are:0.014624770068105164 that:0.014166819812069424 from:0.014033988445040398 was:0.013405084306223532 is:0.012732603744073721 be:0.0123020769552442 on:0.011741906097994814 which:0.010729165775872095 :0.010133388184899879 :0.3434187048046466 +he:0.1825310502502315 and:0.13317346129045018 had:0.12820994389330317 has:0.0785541539656247 have:0.06627590545931333 He:0.051168746469087936 was:0.04181783585382687 be:0.033821618648822924 who:0.031044432786220388 she:0.025117848412448164 I:0.02379978427591483 then:0.016652886773851492 is:0.013067182555882986 having:0.012972297716904096 or:0.011814943683992827 been:0.011538952330622796 were:0.010911460202804452 ho:0.009840845802021592 lie:0.009692815335651236 :0.1069938342930245 +the:0.5692612146349924 The:0.1046438681972614 a:0.04921807327864971 of:0.03249468402527435 his:0.027748800154250255 tho:0.023846839711485386 our:0.022217530678071695 and:0.01854779039601586 this:0.01570238922474081 new:0.012676163673700166 tbe:0.012541028486320037 their:0.010141952111343847 that:0.007594279869032457 for:0.0062772694299462 its:0.006253515251847071 National:0.006084602243436648 young:0.005631922325422471 national:0.005418176238716912 your:0.005054005685366403 :0.057645894384125956 +the:0.1330730709993142 and:0.09096854182826047 of:0.08400721849541687 to:0.04825504279395733 was:0.0183972611963203 be:0.017891464114491006 in:0.017621401230568337 a:0.014832133588907004 is:0.013797989533680412 :0.013272625060229934 for:0.012745654156899966 by:0.012630508754053285 at:0.0123386611384673 with:0.012210811442720211 from:0.011383945552392784 .:0.010023822066945466 tho:0.009649334137249357 I:0.009125134655271813 The:0.009123176089468011 :0.44765220316538595 +of:0.1245611494378928 the:0.07689113540397219 and:0.05456235186952667 to:0.053532693252977645 on:0.03127598069766126 in:0.02212284427579852 for:0.018333820529466374 at:0.016662071308783166 :0.013355587950817501 was:0.011688595788509542 or:0.011078314856837372 his:0.010582610234380034 be:0.010002005721208164 with:0.009674863577811412 as:0.009522410896153712 are:0.009440245579309572 that:0.009159827047763865 by:0.00912215412942543 a:0.00896685987210908 :0.4884644775695957 +the:0.37650347646269267 an:0.11223327440670908 any:0.06466483533491756 that:0.04154226875275129 and:0.03570206193273333 a:0.033942736679176785 such:0.02860631130142017 this:0.026520697431565963 no:0.02495166144194183 tho:0.023131288810538875 said:0.01984740682167759 of:0.019240489344810055 every:0.01790609527370451 great:0.01738058142529251 new:0.01591422439591309 some:0.014854221271250046 The:0.013694211756034965 their:0.01282802542423429 each:0.011590684023931219 :0.08794544770870419 +the:0.7375606418547566 tho:0.034135361311220754 The:0.03200466978276859 and:0.023189283151132604 from:0.01614293265484448 a:0.013617787542356227 that:0.012890805144536605 tbe:0.012237655238483594 on:0.010607961107248884 bearing:0.009570812748395897 to:0.008655299307171519 of:0.008615858897031536 in:0.007481887313988246 this:0.007119070728352874 long:0.0063160461641537935 early:0.005765595270444231 after:0.005293575454831675 by:0.005203644612066268 for:0.004400976047944775 :0.03819013566827087 +the:0.11919516938815296 of:0.07230453158552728 and:0.05781056740443249 a:0.043018564803886335 to:0.031305092790907506 in:0.020848713353460488 at:0.014270110001066288 .:0.012526810245749479 :0.012413283442322082 for:0.011719122709941797 by:0.010808400946589808 or:0.010404172990115616 The:0.01003576004804544 with:0.009811868184449042 tho:0.009295902015355835 was:0.008924239095331684 that:0.008672304223433876 is:0.0085591147338948 be:0.008335143826716943 :0.5187411282106204 +the:0.11884489479363128 of:0.08673387421241954 and:0.042449000409526 to:0.03573350374630546 by:0.027216408556416282 was:0.021081899057184248 at:0.019336865063930328 be:0.018931276319951996 :0.015167304435042264 were:0.014583437050476728 for:0.014329362176945895 on:0.013661962349843154 said:0.010284147997881935 or:0.009966742732733666 from:0.009885708416020206 a:0.00984941183277857 are:0.009188459854637652 in:0.00917510225736034 be-:0.00887868741585066 :0.5037019513210638 +the:0.16272263272752582 of:0.10313720014389405 and:0.06099177353711771 to:0.03689824271478635 a:0.031674836374684066 in:0.017242834769490678 for:0.0149824097144338 tho:0.013718194855660549 be:0.013211650367257693 his:0.012170592154686428 by:0.011943230819382124 their:0.011478929300770968 with:0.011391196056684566 was:0.010938021007784567 or:0.01069715424709808 as:0.010695068409177944 .:0.009867859103715642 Mr.:0.009486107747049772 :0.008891034695065785 :0.4368610312537334 +of:0.41327746534930604 in:0.24783563677015838 to:0.06279518259982193 by:0.03909083583296293 In:0.03667472518957505 for:0.03449747152429445 from:0.01941320205052803 and:0.017163844588453544 that:0.013050243635622754 with:0.012274831917469066 into:0.011354773135541035 on:0.010455827553473693 at:0.007412190745485247 ot:0.00524737046989681 as:0.004956412164098014 over:0.0049230096900801604 through:0.0046957164767447435 upon:0.004576547450450873 iu:0.0042777066276524405 :0.045027006228384826 +line:0.05702558903076447 street,:0.04542939672055049 difference:0.042320025237224224 and:0.03659187710967565 street:0.02921015608089161 war:0.01514133095418131 midway:0.01457849855485089 lying:0.013285399569283233 of:0.012558693486799787 contest:0.012062906405737633 relations:0.011666330282297742 is:0.01132566668826758 existing:0.010671758438620603 road:0.010371659473912888 or:0.010030932140109118 distance:0.009309516458835213 be:0.008866743659676792 place:0.008820315608580067 point:0.008739673321805549 :0.6309935307779352 +the:0.5371659617096824 a:0.10227208853606534 this:0.0642527425119142 his:0.05090768847710418 tho:0.037378368441049054 their:0.03343916247742714 our:0.014653584451792599 tbe:0.013813723612538908 whole:0.012669345299184002 its:0.012421216884841385 public:0.011598917086058468 entire:0.01098741755486819 present:0.009771809876964766 such:0.009534338202813582 The:0.009273233487124041 of:0.009020044283729638 new:0.008420778605157617 other:0.007729517854336192 said:0.007246562837958537 :0.03644349780938974 +and:0.25410101322666834 to:0.25106989281239234 will:0.04144108958590361 that:0.025366567099451835 not:0.02255675908482073 then:0.022372385320256576 but:0.02122760212958071 which:0.019184665142411024 I:0.01917994441400418 But:0.016678996853108433 who:0.016420046390544625 or:0.015029515052002776 would:0.014887722847349868 he:0.011018854959337675 you:0.010854180653546893 Now:0.010706589094652344 have:0.010658554618409952 it:0.009554139224827203 Then:0.008119495611351142 :0.19857198587937974 +and:0.09830755246763717 would:0.0932892232812714 something:0.05329735897835547 not:0.03552390556762599 to:0.03519372201406587 was:0.03349465577331818 is:0.03285622520018299 looked:0.03189979751219095 looks:0.03129785543122888 anything:0.026668120659794046 a:0.025234934559704582 in:0.024760071868312066 I:0.02411657502290698 of:0.022683835113618545 look:0.01801913338425008 for:0.016691110206527197 feel:0.01615467200419359 will:0.015887769638049404 it:0.014583177379375317 :0.3490403039373913 +the:0.12083136256254513 of:0.07440122250029566 and:0.07027214618139736 that:0.03898532049530673 in:0.03594652939741513 as:0.027987456789409393 The:0.025295208136041993 Mr.:0.024847760882954976 which:0.02099369371024889 he:0.01728060755009941 his:0.015766097467946716 to:0.015277601111041011 a:0.014990310502404104 Mrs.:0.014198344883738924 their:0.01281075908908662 or:0.011355799282638197 con-:0.010107052303729786 when:0.009942355460096843 said:0.009518819037404515 :0.4281915526561986 +the:0.6224186371305773 and:0.046016550015843184 The:0.03913782541997138 a:0.03822856250257739 tho:0.03227107979671391 his:0.02737723749352165 to:0.022439062354058875 tbe:0.01722053981847401 or:0.014249022950975363 first:0.010588580242282127 that:0.009867063137389281 said:0.008715957683701241 of:0.007463192472656122 an:0.00712893905113558 any:0.00700658851798121 this:0.006759286429353678 their:0.005666316094709613 on:0.005176772559881286 in:0.004490307960379626 :0.06677847836781717 +for:0.13357881343733363 the:0.1238915412994561 of:0.11628640886233681 about:0.0949386771064403 and:0.09388266783300991 or:0.0548286359061378 in:0.03407693594566859 last:0.027266478446239802 than:0.02644928720680486 past:0.026281194704828512 within:0.023095756218593725 by:0.022465272578080616 to:0.02233279956346283 these:0.022206978910779763 with:0.020475584553164356 a:0.018773530006794093 from:0.016774769561369602 that:0.016749164605887278 but:0.015457281996302688 :0.08918822125730873 +be:0.19404984280032245 was:0.12326929239854471 and:0.07480506330914502 been:0.0685528103386088 were:0.05681804105427518 is:0.04130626833166849 I:0.032358689567376434 are:0.031025137681437318 he:0.027180395547589248 not:0.015621556679864071 bo:0.014067176237335636 to:0.01339967429307865 they:0.010524327934616155 being:0.010522437701887913 have:0.010290204935940482 we:0.010033382345703355 then:0.008947680287610933 a:0.008625198403876586 had:0.007855470511740827 :0.23974734963937774 +and:0.07895257911471103 was:0.03596317658514438 out:0.024016824392823457 that:0.023672598027062328 placed:0.022844208461019616 work:0.021707439938587154 made:0.020781005318872947 is:0.020224993929329655 up:0.019794182040466738 put:0.018288921183371155 down:0.0171740551508179 interest:0.01663630075189571 point:0.01659978677065351 him:0.016175999448187352 held:0.015562908663841706 Dakota,:0.014616466073415059 place:0.01424333231426501 Minnesota,:0.014067166610364513 it:0.013665465625771424 :0.5740125895993994 +per:0.8162239793507887 the:0.07404353032425263 and:0.01258020823224883 of:0.005425739449689215 an:0.005316759029915776 to:0.004463472218081645 a:0.0035590367910865476 by:0.0031711823683940902 The:0.003074044989123865 or:0.002265932279134237 said:0.002187692202538314 tho:0.002177424402109405 that:0.0017476525863819536 for:0.0016308713934368546 in:0.0014232353491483638 first:0.0011815294935160674 any:0.0011700947542699893 some:0.0011429496934422033 por:0.0010606395796935557 :0.055154025512747756 +and:0.18742286259202173 or:0.09979633594610503 that:0.05378681832616168 but:0.05113970257599045 not:0.04618029177191591 for:0.022682201448390123 But:0.0211395260896251 is:0.01918707889812733 be:0.01889903951808135 And:0.018357712692663904 it:0.01480871806736091 nor:0.014684457524038345 I:0.014515527062474208 of:0.014482404652150577 to:0.014300390273994814 even:0.01360174451195924 was:0.011230695793638864 you:0.011106118657013839 it,:0.010425954029009211 :0.34125241956927743 +he:0.10818091692875466 it:0.10407200211317157 and:0.07706925530203301 which:0.04875030217949314 It:0.047387704634258905 who:0.04370162506550152 be:0.03500200162141923 they:0.03422894366071057 He:0.02555537640871487 she:0.02431213972219028 I:0.021117399456111362 have:0.020717510245818145 had:0.019850782847156 has:0.01818938958608062 ever:0.016971316361807647 was:0.014522890558370328 we:0.013798222394415456 then:0.013602995818450455 there:0.012566084355581158 :0.2994031407399611 +to:0.2725631952093938 will:0.14035042992318444 not:0.08459011790265804 should:0.0763550761685503 would:0.07316161749648502 shall:0.07218260874865227 may:0.06095282047394794 must:0.03788723773736022 can:0.03637002923516236 could:0.022648919892813646 cannot:0.016527947234844183 and:0.013661928161063987 might:0.01107476603117974 it:0.005917966688412756 that:0.005190908654293013 also:0.0051054184632117645 never:0.004804547486254377 then:0.0040517884798716595 which:0.0039245093721239355 :0.05167816664053658 +he:0.08543389390510432 it:0.08186298528175741 they:0.0773861075111466 I:0.06732626153242446 we:0.06079991544855282 and:0.05406212890398785 which:0.05180850055473392 It:0.04379834886182259 you:0.03374508690148767 that:0.033079659370759004 who:0.02907541551414634 We:0.026234597493844537 she:0.017993109484364653 He:0.016785041743663007 They:0.014286421145787799 man:0.013494120299741143 people:0.01183308339262688 one:0.011510111098461347 men:0.009371658903621575 :0.25911355265196606 +County:0.06858525032307468 city:0.06137415121496205 State:0.04576067822594431 City:0.042111449944860255 county:0.026378555098292514 day:0.02250104296159942 line:0.02127564486273923 name:0.019837545060415736 son:0.012669929005591048 town:0.01239674889746221 corner:0.012187132316629688 number:0.01204802241962723 Bank:0.011605647577002342 estate:0.01117982129738251 state:0.011113418326706492 Court:0.011025622780889139 daughter:0.010942132057347292 people:0.010091777467248274 office:0.009302199140729816 :0.5666132310214957 +of:0.12021941863572273 the:0.11883116133594021 and:0.081339402631934 to:0.05411392171051092 in:0.047490537053344814 that:0.028500142103056438 as:0.02099346720490091 from:0.017261987151400288 which:0.015209610651606406 by:0.015071766824305001 on:0.0149555824601499 a:0.01454945404570883 for:0.013943300771872303 :0.01336434643891431 Mr.:0.011988130795854564 In:0.011967710218753794 The:0.011404573383109575 at:0.011147195464733788 Mrs.:0.010385640902122595 :0.36626265021605864 +about:0.1532675504007533 and:0.13492950736947446 the:0.1316481385552853 or:0.08474879450495428 of:0.04967696525277847 was:0.03789035983553129 were:0.026535275642636066 than:0.02613930970074146 are:0.02393791525279274 be:0.02330000694153162 to:0.02306181737289262 with:0.02022031533374925 for:0.019963050440837397 only:0.019600841211195215 is:0.01755537678936799 nearly:0.01466826473596181 these:0.013561425864800948 by:0.011235396820534765 between:0.01108384531879391 :0.15597584265538708 +it:0.11857892928876056 which:0.10419954526017984 It:0.10229720510101595 that:0.06796245048918885 who:0.06088908826247786 he:0.060731706658395446 there:0.047718276913133226 and:0.0298646407467943 There:0.025721626378001235 He:0.023765504777663107 default:0.02149030696489031 as:0.019132676760165265 This:0.015088553278066501 she:0.01413948392901254 what:0.014110548249504374 this:0.009613248172212615 work:0.008813388419150843 man:0.006677000754574867 country:0.0066605789516794795 :0.24154524064513283 +and:0.07534181035400413 days:0.07361398167717115 time:0.05620334950163544 appear:0.043040647370897744 just:0.041531682487323 or:0.04128848265215364 years:0.03944546075104039 that:0.03796491013552374 but:0.03696941089121105 long:0.032322399451950395 Just:0.028701261861105894 months:0.02854447436598948 day:0.027707856267809212 weeks:0.025956624753859507 come:0.020256811357058552 ever:0.018932318034205548 was:0.018806691398530744 him:0.01867333855433086 night:0.017396988600246143 :0.31630149953395337 +of:0.31273218767136757 in:0.13342621252619372 to:0.09780705790630308 on:0.05414928463083833 and:0.047171925444027436 for:0.0376686337169118 by:0.03645226841550634 that:0.03373263078492161 In:0.030754529579235936 from:0.030002069709090945 with:0.022346557199502716 at:0.017777434796358314 upon:0.01621943657758442 all:0.013447490183286843 into:0.009947853229426522 as:0.008207981516219449 through:0.007557506084481189 was:0.007428731142028643 is:0.007261539679977535 :0.0749086692067376 +the:0.4071374189315913 and:0.06449181461132415 of:0.02892866618288876 in:0.028670005984162618 The:0.02603617389223924 tho:0.024993820467459137 a:0.023579040051412606 to:0.01755553213771617 on:0.014626070241060114 by:0.013447843485786471 or:0.012794166593089693 tbe:0.012024509152999897 :0.010353482361299817 that:0.009291482237329618 In:0.007938246807075932 from:0.007526799010378873 other:0.007469196869028889 all:0.006409533041696086 for:0.00626887758057738 :0.26945732036088327 +of:0.2983338486648799 in:0.11268457509347611 to:0.0947735584024908 that:0.05526370493872743 on:0.048759485296498616 for:0.04276444836710427 and:0.03996191673388509 by:0.039097156053142616 with:0.03206631767811771 In:0.030424464744834966 from:0.02197274053692407 at:0.01837730439801043 upon:0.016122143956397335 as:0.01447945517267314 all:0.013697277414310734 which:0.011215197808270176 is:0.010842190561129929 or:0.007955860427334907 was:0.00783289005046986 :0.08237546370132194 +the:0.23205329151537313 of:0.1103003941422368 and:0.0683587323446573 at:0.028800330445605822 a:0.026071917476360992 The:0.023294615064371037 to:0.0221232131937823 or:0.019177312304059304 tho:0.01607925808908661 in:0.014948676402556132 from:0.013552974228799827 .:0.013283752701952816 by:0.011627042558911475 with:0.010706094342725028 :0.01000234380950657 for:0.009092286058991485 as:0.007727042426204178 tbe:0.007409465198473978 that:0.007343044262282288 :0.34704821343406295 +hundred:0.20673644545264327 thousand:0.1924362887875761 fifty:0.05634867789927597 million:0.05161385993921118 five:0.039642114358763 of:0.035869415496818206 ten:0.031498932131546864 dred:0.013498129754217 sand:0.01313569460587373 two:0.012515038568571082 three:0.011780540338173818 twenty-five:0.011672510084764004 twenty:0.01118043863232896 six:0.01098656683597054 nine:0.01038774160700055 thirty:0.00944718824976647 to:0.00888514815270862 10:0.007500702710634663 the:0.007264209412499879 :0.2566003569816562 +and:0.10477602466791952 time:0.04590252311257615 him:0.022386405957356092 made:0.02174126107517464 it:0.018877108890495074 them:0.018656767156123362 out:0.018320949223233077 necessary:0.018125640024847827 up:0.01789291890749772 week:0.016995256846001925 was:0.01489766074442337 dollars:0.013667411236387499 used:0.013316905126601865 pay:0.013028233711246893 or:0.012424803085527 but:0.012407287610870604 demand:0.01221018729280633 reason:0.012132918605550979 not:0.01174643413622863 :0.5794933025891315 +and:0.11203614284734381 made:0.029480560291083903 necessary:0.027231632327903786 provide:0.01978786821063526 him:0.018624150941585572 time:0.017844902254185023 but:0.01736032991925495 pay:0.01712283223509279 responsible:0.01655246417854943 work:0.01573375727996718 used:0.015721729148453864 that:0.015344008200088246 providing:0.015123591452644664 or:0.014918878594106077 it:0.014272018550925738 vote:0.014240496926603478 out:0.013886758983508773 demand:0.013625570335128902 ready:0.01288626098417059 :0.5772060463387679 +and:0.11227542635684666 in:0.05926094537427183 was:0.05396378394047754 is:0.05136260570530516 for:0.05106923353139905 that:0.05013521415615715 are:0.04326222731898401 or:0.04014340164908327 be:0.03531492597429185 of:0.030625235972832697 but:0.024718151168450147 to:0.021799093810604603 not:0.021501173365841574 will:0.01980662914078707 as:0.017568539194049916 were:0.016821543522803233 had:0.015820660338484865 have:0.01571034798462321 by:0.015099279464374159 :0.302741582030332 +be:0.14307311178101978 was:0.13771515864933837 been:0.08021104977363333 and:0.06926796736359499 he:0.06456678104942751 is:0.049906862970652874 were:0.04926645583095478 the:0.039571944285656954 I:0.03538618935676349 are:0.029597934815719446 had:0.027933991223564235 have:0.02230703466576445 has:0.01668741870428487 not:0.014919420136541654 being:0.014442825534911148 then:0.013993008959061639 they:0.01368049500891521 bo:0.012103512972194122 she:0.011208390947712848 :0.1531604459702883 +one:0.1028303141280697 part:0.05963429477052991 out:0.04766456937681193 some:0.031418679026461914 members:0.030764490253327767 side:0.029940657362655835 portion:0.022063658796890564 office:0.020457735219956013 member:0.019726706386316174 end:0.019666887540649894 tion:0.018667441728710307 parts:0.016814747270460957 people:0.014112771422418794 all:0.014072739582212475 any:0.013183573287639892 One:0.013083578354183906 that:0.013024335602903442 account:0.012482348155001894 many:0.012077825070275192 :0.48731264666452345 +week:0.08185811699558317 and:0.07444494311124922 time:0.026640372255037213 up:0.025502726331534723 it:0.021243831711760586 there:0.02087472432628776 was:0.020726688719814083 him:0.02041946599214556 them:0.016677727020314198 room:0.01431325785952967 out:0.014160677168392366 paid:0.013970430650329794 one:0.013751102234818057 here:0.013700125463806554 place:0.012304453043170568 but:0.011744036035947755 has:0.011478279098087211 that:0.011373144945999388 made:0.011172826627898189 :0.562643070408294 +the:0.13703330766915586 to:0.07957161427795498 and:0.07268128978643924 of:0.05759442189757493 a:0.05374414967634289 in:0.0488990175343127 that:0.028951545442515523 for:0.02626003451155174 at:0.016865472328660498 which:0.014386268999103918 with:0.013433892740744158 In:0.012748767741816769 will:0.01175714405279939 or:0.011646364645715336 an:0.010055823975408067 as:0.009975203650019693 any:0.009510852425150745 this:0.00830822404511797 by:0.00809049436015611 :0.3674861102394595 +to:0.39346220072272214 will:0.14589086308404 would:0.07508071859929999 can:0.043111263653839216 should:0.03958066998105285 could:0.03860717186614972 not:0.03344102614094068 must:0.030932736625015368 shall:0.02858289254635878 and:0.024787832188645345 I:0.02266471742834209 may:0.021015731487984916 we:0.015326230009891969 they:0.014295194258666273 you:0.011171909446324457 who:0.01053323497485588 might:0.009083353189615595 did:0.004915115092180373 cannot:0.0046165043027470935 :0.031900634401327246 +the:0.15166724396332013 and:0.1139786502122764 be:0.09098905433672307 was:0.0837340701102269 were:0.04790551114350327 been:0.03468816692162753 are:0.022813307363375585 or:0.021531718761601076 being:0.021338150777164014 of:0.020472510840833742 is:0.01973612695273297 he:0.019194074264128055 re-:0.0161405163334956 as:0.01478450186788399 that:0.014784148593164197 had:0.012806568950385747 much:0.012617524476082562 duly:0.012422686827614968 I:0.011280439868889889 :0.2561150274349703 +of:0.06486834128117111 the:0.06432508949262936 to:0.03609216331886306 and:0.03337695329772985 .:0.027537196276615186 at:0.02472705325366664 :0.016628518275883682 by:0.01093858626369922 a:0.010914062589246706 on:0.010017647118405073 S.:0.008764825080499212 was:0.008593531707826858 said:0.008412262381735524 1:0.008409153878382987 W.:0.008272109101639216 in:0.007791731949355997 E.:0.007733577460187562 or:0.00754780449039183 his:0.006574860671928413 :0.6274745321101425 +and:0.08832934385398629 him:0.026983886122743477 application:0.026114251583320973 was:0.02489894908956569 it:0.023075411912330694 up:0.02251060273927451 made:0.02033127255167498 out:0.019486588030277113 time:0.018903019749807147 them:0.018632082326077732 used:0.016786364428856393 but:0.016269712072418657 ready:0.01618805525798725 is:0.016020989807641675 not:0.01564434704203927 demand:0.015432404580140367 asked:0.014792759533761007 that:0.01442331755080464 work:0.014074418411123594 :0.5701022233561686 +the:0.5121714111900781 of:0.106469717204082 and:0.04216186334543519 The:0.039224164817418875 to:0.03681922950523996 in:0.03585962337840005 for:0.027153099819536425 tho:0.02681599565121067 with:0.01676262657386655 that:0.016056602654903187 his:0.015976511311614636 its:0.0154996918675685 their:0.015215798606516222 a:0.014904884389819401 our:0.014345036015403299 such:0.012491213844467677 tbe:0.008577002618847834 from:0.008465250749390278 by:0.007357385511083504 :0.026672890945117593 +he:0.12976820625117658 who:0.09221886342062384 which:0.08202145445505479 they:0.06808463273766263 it:0.06300140281566258 that:0.0536651199481747 I:0.04355172570140108 there:0.03694176174144522 she:0.03568475182996337 It:0.03445956439681276 and:0.03146500019799679 He:0.03013662272772511 have:0.01649641755291053 has:0.014869129143777082 we:0.01270748492222897 She:0.010037042499654298 had:0.010034468298945191 They:0.009824977349933048 ho:0.009403905633941782 :0.21462746837490962 +from:0.1440794973424935 the:0.13015299724318258 in:0.08093927620826695 that:0.05911886084826407 some:0.05459647470635132 any:0.052685990973944656 this:0.04810117293168824 a:0.0441243728905235 same:0.04044130064189971 of:0.03968791274235325 no:0.03436796329741843 first:0.032123377850348196 long:0.02579241270661878 short:0.024241348867565723 In:0.02238569563719236 to:0.02046471011699861 and:0.01895358686248183 one:0.018062045621468775 which:0.01640347495111581 :0.09227752755982371 +the:0.16807735899698817 of:0.10541662057906837 and:0.05138367848570702 a:0.04141865232648221 to:0.0385989743764065 in:0.026264864977736738 was:0.019530675665220657 his:0.018900421021236905 be:0.017373825006196972 their:0.015767721170721456 for:0.01557246589796783 with:0.014071419046630446 is:0.012922913111931644 at:0.012690452250034052 are:0.010702713108721902 .:0.010158075558988393 Mr.:0.009672788574483367 tho:0.009612591781990074 were:0.009549306361446321 :0.391314481702041 +time:0.02005232816571295 in:0.01672553260708593 men:0.013443157392803457 up:0.012933880164467863 work:0.012700260573906802 out:0.01186249752516244 life:0.011186365670387267 him:0.010125878436116459 power:0.009918659778170781 state:0.009739945156647842 on:0.009388397853276446 peace:0.00885842313135036 due:0.008364632550719134 land:0.00833591683083374 hundred:0.008196629112406551 large:0.008172272927616926 house:0.008111014594111812 them:0.008068339208040502 one:0.00799842816996999 :0.7948174401512127 +the:0.11500545585881412 of:0.0897605566703555 and:0.07914879987306167 a:0.05827037833039227 to:0.0386987683614473 was:0.029282661483795363 be:0.023890810389268442 is:0.02056818843792312 been:0.017204803150083207 or:0.017094944717067368 in:0.01610392931760865 are:0.015798243080240505 his:0.01344187865263006 at:0.01321973597799718 for:0.01304287912725108 their:0.012337012043366955 were:0.012236169772424844 :0.01133284696603621 The:0.01095822742659897 :0.3916037103636372 +the:0.24244146130329122 and:0.11749761618544481 his:0.09714601754200418 of:0.05712896532631648 their:0.046484012806084586 a:0.03787326820035625 my:0.035466296399603615 with:0.03425367388839658 her:0.0279369141217254 other:0.02782408347651664 or:0.02740157055109418 by:0.024862811657478823 your:0.023502132844234726 The:0.02102632909837334 our:0.02000481842128798 said:0.017691504785192762 in:0.015633831834030533 to:0.015549129374606835 these:0.014928424707669656 :0.09434713747629145 +to:0.21465452361573598 and:0.10118949863011331 that:0.05261210834231127 not:0.04984571489489773 they:0.04155349036655207 may:0.037630293821913796 which:0.035804280062766244 it:0.03173868354770033 will:0.03070049813088042 would:0.02260640005476513 we:0.01985713664551242 I:0.014772470961433167 he:0.013445797977879124 who:0.011028671418002624 must:0.01038083984667505 They:0.010263233223686455 you:0.009751823409202002 should:0.009217054006665346 can:0.008964890248460795 :0.2729825907948467 +sum:0.03352282876311118 number:0.028116684882597106 line:0.019995206059833036 city:0.01946514558931857 out:0.019275318828420953 day:0.01666865340772654 county:0.014872697538657208 amount:0.013254184849875051 Board:0.01252325449624941 town:0.012449555905674143 side:0.011663975251122375 part:0.011517157473718155 County:0.011460540331966697 state:0.011087331502382173 City:0.010878919191854432 purpose:0.01081028255427907 and:0.010297866493795984 way:0.009848747943663767 name:0.009522170936943183 :0.711769477998811 +the:0.1283085321817642 and:0.07005716721579662 of:0.06692339911956742 to:0.042203743527404004 was:0.029549550676529982 in:0.023567232438327566 a:0.022726861905600713 be:0.020320520250593027 is:0.019379724902452506 are:0.01898509263833508 that:0.0174325105993328 on:0.016467491492749835 for:0.01552828112659432 been:0.01465375021759598 were:0.012859843520003024 not:0.011890443410212927 by:0.011800411675545186 more:0.01138382755962048 as:0.011204204941278013 :0.43375741060069634 +was:0.17518764772504053 be:0.1703008461698314 been:0.08493248959432745 is:0.061039012393483444 were:0.05621057958051374 I:0.05424525565947802 he:0.05339126813434316 and:0.05307407435941374 have:0.04909686707049472 had:0.03822289665419561 has:0.030723864103849845 are:0.030190939476171567 not:0.02031245923887121 they:0.019754943517506483 He:0.01662344587400238 we:0.013171420325688674 she:0.01274176320493293 being:0.012249448116724678 who:0.011495684094796468 :0.03603509470633396 +to:0.26066795169917983 with:0.06411563176952902 for:0.06013816708823279 of:0.047995136308978226 told:0.04036477477605873 at:0.027428633638657673 upon:0.026739798260882883 tell:0.025250412812178203 on:0.023460440441758466 keep:0.02115272483733135 made:0.02006525600596113 sent:0.019973720550906904 took:0.018598174820431128 give:0.016493553174870418 take:0.015740315724696304 asked:0.015243212859230809 by:0.01496327693118301 make:0.014929398718943844 before:0.014658027704456022 :0.2510213918765333 +not:0.1160782064231819 for:0.08998670965957667 no:0.07586017559382294 or:0.05540028773132444 much:0.05199691626002685 is:0.04857513073790313 of:0.04599744560247067 and:0.04572419934272023 nothing:0.04497806482304755 nor:0.04267316958463097 little:0.0409202469287961 be:0.03902734706250032 any:0.029719077762285013 more:0.023403442341466137 was:0.02303655081961088 with:0.02277745737003096 something:0.021586714238914156 far:0.020034392687046876 to:0.017727221200356705 :0.1434972438302875 +the:0.16903078692833035 of:0.09100198700046198 and:0.08816144197971061 a:0.0704672030249203 to:0.02972828124082166 The:0.024054933827084464 at:0.020548866537923545 in:0.01679481661034155 or:0.015778128323891968 are:0.014783168866941412 that:0.014003165181245805 for:0.01381289561732643 Mr.:0.013192627090927523 :0.01305086269584412 be:0.012751850636963744 his:0.011999306755822253 tho:0.011282267303259166 is:0.011040577909243355 was:0.010542872180278386 :0.3469739602886614 +a:0.2639782495335197 her:0.12591785476367195 his:0.11552867004188073 my:0.06715018482068381 the:0.057871493643246216 A:0.039604443299491573 and:0.030704416051667842 old:0.029680520545182342 our:0.02385664500939397 your:0.0185459816397956 their:0.018209994271970942 My:0.01388388411750985 The:0.009620828121874066 bis:0.009184145936721266 intimate:0.008193398148070144 His:0.0073616559121493395 young:0.007320322507885954 very:0.007014333074753038 its:0.006971099301326932 :0.1384018792592047 +;:0.03527633328929316 is:0.02819375450601154 nothing:0.017688461024573044 and:0.012708605008686695 it,:0.01185258136414581 are:0.010862412845208638 was:0.009857761362443426 had:0.0091969265583795 ,:0.009101241827889774 to:0.008456246762692994 him,:0.00833063275576114 have:0.008128570829241706 them,:0.007656770600825035 time,:0.0074892660041096 anything:0.007225620995599913 has:0.006874446668342186 of:0.00649619011008863 be:0.006233330670475758 one:0.006113562862139561 :0.7812572839540919 +of:0.23547908440105003 in:0.19059473238517657 to:0.12047630005273943 that:0.05374960623814755 In:0.04883148972190266 and:0.041611639733273406 by:0.04081219818809114 for:0.03979349778850983 at:0.026673782404428397 from:0.02586250304129434 with:0.025718494257762202 on:0.019251095602127535 as:0.011626907443850224 into:0.011567818648430015 upon:0.011242995373530348 under:0.009897464269284603 all:0.009395614543042392 which:0.009260969393274645 but:0.007779841886032885 :0.05937396462805175 +be:0.14758101961050038 was:0.12975867531012145 been:0.10204661196055351 and:0.08841796720859628 is:0.08092550533142572 not:0.055086886246543176 are:0.05469038690068065 the:0.05137035449907006 were:0.05056977956441636 as:0.024705386906141123 being:0.016640751301112745 Is:0.01509940134294871 it:0.014261640645724948 of:0.012426240997029468 too:0.011765781720820257 an:0.010943260191875505 have:0.010214804035746771 by:0.009445752608460154 deem:0.009335603162840732 :0.10371419045539199 +and:0.0935353777867078 that:0.05953849837588239 time:0.03893036673955211 made:0.033237569170103384 them:0.022487257590821437 him:0.01978480922998164 but:0.01841617711704199 or:0.017806766776771347 up:0.016955431330044974 times:0.015684650413019127 it:0.014996816829898807 out:0.014341889676339899 place:0.014187070583522681 days:0.014118843283785687 which:0.013006512335920503 held:0.012695408898157623 done:0.011543349343682658 day:0.011499307919487256 all:0.01119767424956836 :0.5450362223497103 +and:0.10602733902243211 as:0.05133647198696321 order:0.045968685692306846 right:0.0380918056260467 him:0.034416260686883755 is:0.03425945866814166 enough:0.031262454965186384 able:0.030049719618672113 them:0.029908033243828906 time:0.02755457959898279 it:0.02623790187429232 power:0.024682701167054583 necessary:0.023755645782043675 was:0.022614435843204942 said:0.020737740912820116 want:0.019964316741484436 have:0.01957567400011822 not:0.019128844592019766 going:0.01855893012893029 :0.3748689998485872 +of:0.15059671143527367 in:0.13298419773679981 on:0.11909453392580419 to:0.09559896737497181 from:0.07639511208574007 and:0.05359729511463232 at:0.04589378369867624 In:0.033175921591112614 with:0.028768867980149784 for:0.0280059227286606 by:0.026953467827974288 that:0.02067691284273133 all:0.020506601737558597 upon:0.018704207251430613 into:0.01806172881659167 through:0.012276332956423799 after:0.012216728546733143 was:0.012169459703027845 over:0.011769036383302059 :0.08155421026240553 +the:0.05007011117394131 -:0.04267988351380368 :0.017061265655940367 and:0.016620874361121044 .:0.015112938321100543 e:0.011739842617558706 f:0.011478607126134003 i:0.009301720455640502 I:0.00923037690458845 to:0.008236667661380889 m:0.0075131653728731035 e-:0.007124720881220846 1:0.005528595511166267 o:0.005468243230639663 of:0.005450271344965598 t:0.00531804031945127 fi:0.005152276094726464 f.:0.0048859738563299514 a:0.004580443002162335 :0.7564459825952551 +to:0.15237703283604428 and:0.10088253172758693 the:0.06374994976326885 had:0.05727115359408225 was:0.03830925577843639 not:0.03463072155403815 a:0.03362944453004312 have:0.0324012857589679 be:0.0276801778696382 can:0.02721683078531142 of:0.026333841205832265 as:0.026298317943974116 will:0.023336138460709404 I:0.020726553589039357 when:0.020314237917278925 has:0.020155959689105808 they:0.01902538307514995 he:0.01794793031285712 were:0.017244795185639664 :0.23946845842299588 +up:0.0240205481717312 hundred:0.021598047055528233 wife:0.013872687329126741 in:0.011699675465262458 men:0.01040149622748719 time:0.010397785824313168 down:0.010297888497881547 life:0.009412538035152893 dollars:0.009398585980724544 land:0.009224570418098009 out:0.009053015720882825 street:0.00873827096773563 Mr.:0.008579278683434841 made:0.008572089819182229 long:0.00841275431420843 house:0.008381322138160247 James:0.007849622368852293 1:0.0077269484627199075 :0.007619848864978136 :0.7937430256545395 +and:0.11203614284734381 made:0.029480560291083903 necessary:0.027231632327903786 provide:0.01978786821063526 him:0.018624150941585572 time:0.017844902254185023 but:0.01736032991925495 pay:0.01712283223509279 responsible:0.01655246417854943 work:0.01573375727996718 used:0.015721729148453864 that:0.015344008200088246 providing:0.015123591452644664 or:0.014918878594106077 it:0.014272018550925738 vote:0.014240496926603478 out:0.013886758983508773 demand:0.013625570335128902 ready:0.01288626098417059 :0.5772060463387679 +the:0.19119289049994603 in:0.14912097904290378 to:0.13959267385043247 of:0.120282042359216 an:0.055079888637037284 this:0.03457583751174949 his:0.03357173033691574 In:0.031150795572182904 and:0.02551632979814724 into:0.020812648796386942 for:0.016681789965053383 no:0.015816787959380168 a:0.015460903771463115 at:0.013752569342394043 that:0.012841791718379278 tho:0.012216492196054626 any:0.010166323300691766 by:0.009885304355124337 her:0.009801424233763402 :0.08148079675277799 +one:0.084329039870417 part:0.044486917868931386 out:0.030961256232480375 sum:0.030481683507399056 all:0.03005992342944709 amount:0.029156558692593683 sale:0.024409673844484423 end:0.02253679583904959 number:0.02205456177625752 value:0.02116212487860747 some:0.021026575069060523 and:0.020308149349412833 day:0.018533240289724917 many:0.01685560138878725 cost:0.01674385163659522 portion:0.0166532769475791 tion:0.016423189352077427 copy:0.016290203413497014 side:0.015666725170525503 :0.5008606514430726 +of:0.14197875067762653 in:0.08237393761248776 and:0.045703303899830974 with:0.0420657764499388 to:0.041424215931843936 by:0.03555386774795321 from:0.027989200668038724 upon:0.02357489936691215 on:0.02193693252998188 for:0.020535966175126125 that:0.017746781104329503 In:0.016070062498720793 under:0.012203089521347228 after:0.008254940891602969 through:0.008000249723064009 but:0.0075599132055544195 law:0.0071090476435611664 bill:0.006578503651181164 ,:0.005327803068315138 :0.4270127576325835 +the:0.09609689971809109 of:0.09286653610706762 to:0.09084369414019672 and:0.046562706934036316 in:0.025735375986860896 on:0.023709662552035497 :0.023294428526078922 a:0.019017133164302716 at:0.018989854218734947 from:0.013944830067541984 for:0.012265711853852968 by:0.010638370453624672 that:0.008701902179762215 .:0.008191481408528349 was:0.00807366451078825 as:0.007969784532915173 with:0.007926945846645187 In:0.005983940568777232 :0.005960071228642991 :0.47222700600151624 +and:0.1704134014938823 fact:0.09110065645622825 is:0.04068374712972053 of:0.03909066356603663 but:0.03270217073471933 said:0.030804024052839492 for:0.02836292579977119 know:0.026339524383681607 all:0.026149913891267362 so:0.025512021978032394 say:0.02532687661202058 believe:0.023289065901558083 to:0.02119787562165514 found:0.02105805978434576 show:0.01917363020475462 with:0.01808518531076058 was:0.01694510038035063 one:0.0164833873690667 find:0.013749639494878214 :0.31253212983443057 +of:0.19880278744870009 to:0.10107549509752156 and:0.09369101424915598 for:0.06644335212696353 by:0.06158657694077321 with:0.059247686581740414 that:0.04817548572964244 in:0.046187972084004165 is:0.036805419305999294 on:0.026386981159291438 was:0.02473446789601992 from:0.022400330182958696 all:0.020786864488809145 upon:0.018900484171286737 as:0.014963284821967496 when:0.013796109602602757 but:0.013413222013241119 be:0.012893834567059401 In:0.012135915169993362 :0.10657271636226928 +and:0.08995317707915026 to:0.06844710404109794 of:0.04605142056172993 the:0.04074574508561307 which:0.02479116931334353 that:0.023764822140213245 re-:0.020841117231308055 in:0.020803825395358622 for:0.020278423301550053 :0.018417753428486977 not:0.016860793136637672 con-:0.016444405871234195 is:0.014386481772210856 or:0.014080680914153714 be-:0.01352268143271276 I:0.01317002660943805 was:0.011429878269381662 dis-:0.011196807025842847 he:0.01113106290024311 :0.5026826244902934 +the:0.07563700486034419 and:0.07243497440384708 of:0.06473284021202669 to:0.03364324914201952 was:0.0252182298435968 in:0.02401889374072073 for:0.019720022014661297 he:0.01854977908615749 Mr.:0.017630287925016423 be:0.01650994156290044 a:0.016091149681638876 his:0.01469817135226751 that:0.014697965820473542 or:0.01386004397304294 Mrs.:0.013194310109411182 is:0.012859513710645407 The:0.012607297901590856 an:0.011450438369468192 :0.011213791593806727 :0.5102320946963641 +the:0.0657547666167877 and:0.05785601440738046 it:0.05304713967157026 at:0.046787401088605435 a:0.04579914855729753 It:0.03335150738222038 on:0.027127294742674633 of:0.025812563415548617 which:0.024177211454327028 as:0.021941886724976878 that:0.01942009763607902 he:0.017631643083172263 by:0.01670415484324509 is:0.016389813324148992 from:0.01633196806101396 to:0.015357292843608258 this:0.013639848710500424 for:0.013043933429330697 :0.00995738588464073 :0.45886892812287167 +the:0.23076638187023796 and:0.04869829354232454 a:0.03508405431871444 of:0.03447647587730521 last:0.025499720679653774 his:0.02000526252987473 for:0.019258437425387884 first:0.017703525511909516 tho:0.01568834826211777 their:0.01566504325898244 an:0.015457269248335896 in:0.015298902779575902 that:0.01503296387672995 this:0.01392806590390438 The:0.013775056020264331 each:0.013612271713187388 or:0.013196832413504108 any:0.011961490720846927 two:0.011915393927336562 :0.41197621011980634 +the:0.09358365000339365 and:0.07598017939841586 of:0.0550965574222243 to:0.04745468532984561 that:0.027718803132448466 is:0.026484636540012946 for:0.02248212518913004 was:0.019949334226846503 a:0.017918853225145564 as:0.017474521867531307 be:0.017282862257131756 by:0.015826146244927893 which:0.015245471777314683 in:0.014482835588028833 :0.013483649053527842 with:0.01207483269062206 it:0.011685345783857786 are:0.009883427749261594 or:0.009841966598936183 :0.4750501159213971 +the:0.46763818328411855 The:0.061658173430667304 said:0.05478705563427709 this:0.037746781973991596 of:0.03504818564080596 and:0.03373318172277056 Mr.:0.026573505366070123 tho:0.021632906888884154 a:0.017887347788710074 State:0.010379865035867016 tbe:0.008755368418468162 that:0.007024483986520019 state:0.006977530367164653 county:0.006750256529878069 General:0.00657376940080707 States:0.006554716734864983 Mrs.:0.006357750018541356 City:0.006225540773491114 his:0.00594424128853225 :0.17075115571556992 +and:0.12808474582174992 that:0.05048939718118571 as:0.04071393044993599 :0.027718179920567652 but:0.024187808988232445 to:0.019450630765577237 when:0.018152420452882283 which:0.01776587884779788 for:0.01718957167098931 was:0.015090628344129787 .:0.012345011605156086 of:0.011254856266465512 time:0.01082507267696974 said:0.010160542035463526 the:0.009962602993991706 until:0.009894646894274987 No.:0.009735704510325486 me.:0.009716184187051266 it.:0.009359694804178509 :0.546902491583075 +of:0.04963694534498152 the:0.04277581671826918 and:0.03870613400657083 to:0.026819345118491423 a:0.01822191364269654 boy.:0.01750219736528117 for:0.01532149943836559 in:0.014905632684096929 girl.:0.012999597309751365 :0.012660364405303458 his:0.011171944978931408 -:0.01105142742222832 was:0.010639274330366216 that:0.009512668063598049 :0.008791639890904044 well:0.008732003992872552 go:0.008424000134676826 it:0.007986780665124534 or:0.007938083301337611 :0.6652027311861525 +of:0.09043409053013649 the:0.08458268447909405 and:0.06941169710674647 to:0.06842685376506503 a:0.03502196399400508 be:0.027631492661475 was:0.02262770347407094 or:0.020899547147549786 is:0.018061672947865565 are:0.017763045964156114 his:0.017114589037761113 for:0.016727962397261282 re-:0.0162769353827767 their:0.01514882567544624 been:0.013878331263912594 were:0.013374436412516415 that:0.01319950985941409 at:0.012567281873590285 :0.012294075404375895 :0.41355730062278084 +the:0.11919516938815296 of:0.07230453158552728 and:0.05781056740443249 a:0.043018564803886335 to:0.031305092790907506 in:0.020848713353460488 at:0.014270110001066288 .:0.012526810245749479 :0.012413283442322082 for:0.011719122709941797 by:0.010808400946589808 or:0.010404172990115616 The:0.01003576004804544 with:0.009811868184449042 tho:0.009295902015355835 was:0.008924239095331684 that:0.008672304223433876 is:0.0085591147338948 be:0.008335143826716943 :0.5187411282106204 +the:0.41468301989421485 a:0.09003101655180483 every:0.07622558059322629 this:0.06990393668508535 great:0.032978833201219096 in:0.028449040580332634 tho:0.02539577424426017 first:0.02306939398292013 and:0.0227198050400835 any:0.019430295678328553 The:0.014526012583542766 no:0.013873126119065018 of:0.013153208756383728 one:0.013113515857456317 other:0.012310290307565712 same:0.010582769450416234 tbe:0.010535500934673878 that:0.01027439029970164 or:0.009389768718194162 :0.08835472052152515 +any:0.11447126369369766 of:0.10294598176324589 the:0.07870104149265927 a:0.07734512962791702 no:0.06890504913405708 such:0.05970727301578283 this:0.04090790844016859 and:0.036212401780769406 that:0.033711827389843185 for:0.030624139541842347 in:0.02941283401755616 some:0.02813590874909377 an:0.026753597889372333 great:0.024879924319625386 every:0.02447710415434305 to:0.02215552269550354 other:0.02204791846021799 large:0.02168205258450214 by:0.019483953727652974 :0.13643916752214935 +as:0.07348237429869825 and:0.053293291927724 according:0.0479709431097652 up:0.04410375066718131 them:0.0360918361710351 regard:0.032406892412297036 come:0.031291428310290255 back:0.02891251395441225 return:0.02673975554051193 came:0.025351047659788954 returned:0.022021941716222352 it:0.01975522069512534 down:0.01933170912324385 him:0.019027828623193535 go:0.018504100610066444 went:0.017627960690307223 given:0.016230557067889343 owing:0.015689732254652238 attention:0.015375915241202635 :0.43579119992639276 +to:0.3189482783801253 will:0.22800444788763816 shall:0.08056621349167213 would:0.0782236796316666 may:0.07133116069351393 not:0.049334995470166905 should:0.04102790822007623 must:0.031437878876161646 can:0.0183298941330691 and:0.013601439466199362 could:0.0110362494047538 cannot:0.008898603536136635 might:0.0073931767428144874 also:0.004620413517566559 never:0.003126146528113168 it:0.0030880687841180407 only:0.002348422008773153 probably:0.0019108254173657894 soon:0.0018816404042337977 :0.023890557405835244 +and:0.16310578145732274 or:0.10690179063274688 not:0.07771206797014929 that:0.03008751951014768 are:0.026829886006563046 but:0.025399661769291194 is:0.025245097611689266 was:0.022357577164145867 do:0.016437755623118663 be:0.015980029048873065 it:0.01580423237196812 them:0.015436637995430345 for:0.014585660232341929 were:0.01300401124630157 to:0.012131069116366784 you:0.011594152295379972 of:0.0112049652232613 so:0.010962633003732944 :0.007943263132679566 :0.37627620858848976 +and:0.1318595855997171 that:0.05859207310300453 :0.031282829988623646 the:0.030196248484542047 which:0.02971385252682641 when:0.02542352200977114 but:0.024233506334071977 as:0.022540338725844617 of:0.02088262912602123 time:0.017823552437953614 before:0.015528276263651322 for:0.014915997131637257 in:0.01315949130420173 day:0.011778976987454726 to:0.011254238702840489 while:0.0106142128011661 until:0.010295725435219774 said:0.00941327915084118 When:0.009315914131352354 :0.5001757497552587 +to:0.26663251628147117 of:0.1484403204961292 in:0.09399517054887567 and:0.054618889077688325 with:0.04129673178164006 for:0.039150330227070165 is:0.03799384216532779 that:0.030892539858916237 at:0.029688685424270514 by:0.02895044127585432 on:0.022492919414715148 from:0.021625509518913587 have:0.02096034241157714 In:0.01987585967953363 was:0.016964945899539195 upon:0.012771175759541604 had:0.012741225811395319 all:0.012640661825994708 be:0.01219926983869552 :0.0750686227028507 +the:0.22099206090945894 that:0.10368379311936737 this:0.08675094354337214 same:0.08492721270823922 short:0.07407712759422026 a:0.062061875992082585 some:0.05163374423739751 long:0.03869635147320653 first:0.03076727155950779 which:0.028166384094738435 one:0.027794452332352036 in:0.02721873921599219 of:0.023655839266616737 any:0.020544900513515398 to:0.017944480360824005 present:0.01746374554361829 and:0.016821288739762436 In:0.013976894553471996 from:0.011044576559944003 :0.04077831768231213 +person:0.028471759009155054 man:0.02333658432141282 one:0.02239554325431202 action:0.022231904873910052 in:0.016662734243537168 city:0.015151066627003853 year:0.01312349211644088 county:0.012499187083218713 lot:0.011855437761282938 town:0.010308697379517394 office:0.00982346688995531 land:0.009542101618070798 law:0.009395876060651964 and:0.009363494351543915 day:0.008813266952400471 mortgage:0.008697939479967205 part:0.008669575275984451 oath:0.008561694088491691 him:0.008316068440446817 :0.7417801101726965 +that:0.34049267823898927 and:0.13762175435919027 but:0.04897485257680481 if:0.043703204938536584 as:0.029605303478224092 which:0.025120743072242952 If:0.021490563388849155 where:0.01957582485592884 But:0.01915520522588982 when:0.016026283947167912 time:0.010951425270293217 Then:0.010648903233544577 then:0.01030444838821473 think:0.01008703507994695 because:0.008441873611289093 or:0.008314216572681369 it:0.00815633033603032 one:0.007727418083937194 thought:0.007217594622100822 :0.215384340720138 +THE:0.1594989358457772 the:0.03941777931557965 and:0.03168975380941522 at:0.02890479567578109 of:0.023112468701890536 .:0.022433810758904018 :0.018575995086998705 to:0.015543981433388225 AND:0.01087541141597332 a:0.009623385751207955 OF:0.008142444981401393 A:0.007807642415984129 1:0.007370369120093484 was:0.006936923518436198 I:0.006474256685816556 BY:0.005425910596813282 W.:0.005338244729511767 The:0.005196992230150415 his:0.00515647781534977 :0.5814744201115271 +at:0.15778055778949782 No.:0.0749738654823242 and:0.056532857262899285 of:0.04890580562367374 the:0.03356658043613849 lot:0.02559566579685953 block:0.01977085311069231 Range:0.019519062209269498 @:0.018432495253906344 to:0.017210266950400007 about:0.01632256953119777 June:0.015451438118257714 Mrs.:0.015101280442494999 by:0.014494164247364457 range:0.013850974457675271 Section:0.013528140186595036 from:0.013244606729599534 No:0.012383946109325285 Mr.:0.012101243421712735 :0.400233626840116 +and:0.11717132479065025 of:0.05975776404107632 the:0.036894797744751906 be:0.030476697286946262 a:0.029689055699173163 in:0.026487129630288927 is:0.026201236531637237 was:0.025891673231283507 he:0.024166191619701714 I:0.02129953996234262 to:0.020689032195699227 they:0.017691857447921393 that:0.017526962289634983 it:0.017418942196368217 which:0.01639384581937364 as:0.015422020984154518 are:0.015414815296460722 or:0.015342212184098876 for:0.014934605060334663 :0.4501302959881019 +that:0.22222695293615818 and:0.14690805125193446 as:0.08263023637080362 but:0.0823729937138952 which:0.04069369875238621 if:0.03351565719828387 of:0.02043759820409776 when:0.019501895703645765 But:0.01810619811266735 what:0.017189920278365297 where:0.01644016523052997 for:0.014345266530542371 because:0.013755736986229906 If:0.01373082777659636 than:0.01155661458557611 And:0.011444680477773868 think:0.01137205516068373 though:0.00840070575569307 ;:0.008125130128988085 :0.2062456148451488 +in:0.27853266603363835 In:0.08338790924085276 is:0.06941095087941002 of:0.0667176708593643 was:0.05444234320600197 on:0.05288137063716846 with:0.05118453818065072 such:0.04197021691109836 to:0.03451099440801247 and:0.029049193563769858 as:0.023483825927969753 for:0.022768419726456983 made:0.021071990054547438 be:0.020983677930849445 make:0.01868722066745506 have:0.018033929606591524 by:0.017104283550662062 into:0.01592379538822215 find:0.014078562377211116 :0.06477644085006719 +of:0.28767355066866834 to:0.08775711267569858 in:0.08678131196995101 and:0.05160598694501188 on:0.04646139928102899 by:0.04519522654900943 for:0.044547789071328545 with:0.03396756772609607 that:0.033699232901107726 from:0.03075346596941143 at:0.027039283056790858 In:0.021061449543044047 as:0.017514234937992545 all:0.012543839382496166 upon:0.011844431150487573 is:0.00998972746569266 was:0.008814315973987914 into:0.008557199930727406 through:0.007781895704231326 :0.1254109790972375 +It:0.14926911439446197 it:0.07408542436527363 he:0.04889946740567623 that:0.045618362207900776 which:0.04540547230611778 and:0.03330933561700336 there:0.018978612410280118 He:0.016557641012433597 who:0.014538625273705386 This:0.013863786316499378 what:0.012003984302426775 she:0.011975164633319253 :0.011226471308941667 man:0.009237580592888053 There:0.00865256303385706 as:0.008100171624143908 this:0.007708772699598787 I:0.00758011655218713 but:0.007375542752308075 :0.45461379119097706 +it,:0.013032699509385596 up:0.011395945404711234 ;:0.010474066333497479 them,:0.0098495158283353 years,:0.008905583544827126 here:0.00842564836048416 it:0.007805526703465134 him,:0.006973873020684981 him:0.0068900254800098246 out:0.006838040139981952 time,:0.006686332263106058 time:0.006381338382960565 year,:0.0062160140962868 work:0.006150096450800869 in:0.0054162262192399245 them:0.005387310725756669 :0.005384480733251685 man:0.005366481890792831 country:0.005150633225190106 :0.8562701616872317 +in:0.02171605748227702 hundred:0.020964884472427402 time:0.020540479517291627 good:0.01982224928796696 large:0.015507902439175984 dollars:0.015026312847524115 one:0.013728111759081542 free:0.013589913662991214 new:0.013575159082694787 out:0.01330853951620313 rights:0.013209067796405719 full:0.012960729476023093 life:0.012832113970919717 up:0.012559406707489635 men:0.012197084914067192 labor:0.011242022281779401 right:0.010569486657433364 power:0.010453703540899726 land:0.009804989931376669 :0.7253917846559718 +It:0.21266681554022793 it:0.08698793225179358 which:0.0556180025129038 that:0.04517626272008768 he:0.03598052015101534 This:0.025304270360729093 and:0.02280759741435064 there:0.017379228105389593 who:0.01680107072106094 what:0.014658531850334283 He:0.012908774227401453 this:0.01258734345559697 I:0.009746955764292872 man:0.008879202955199237 she:0.008341556636955787 Notice:0.0075024449591327685 but:0.0066812293574867706 That:0.006564141791661417 action:0.005755878184065463 :0.3866522410403144 +in:0.27261206299455537 of:0.16457160922160677 to:0.07547281450720768 In:0.04760368364189453 at:0.03261870887001702 the:0.031533520272772037 and:0.031235427659566047 from:0.028638416801256412 for:0.016345315154027016 by:0.012568217702466748 with:0.007739398441911475 :0.007611393931799818 on:0.006959379313950106 into:0.005082033029816924 between:0.004295342577500314 w:0.004189563409105027 .:0.003411489463773882 iu:0.003291174573531834 upon:0.00318418059645274 :0.24003626783678828 +and:0.06895304726156014 them:0.046343377442303976 is:0.04210534573190173 him:0.038275112988306645 went:0.02622495506821328 able:0.0255251381833169 made:0.025283763067091868 subject:0.02470516606463785 as:0.024695030609397504 not:0.024268546551637044 right:0.024125445604360075 going:0.023873671405607533 used:0.022466374193367136 it:0.021538296635831018 was:0.021215166642052048 enough:0.02089999413654101 time:0.020726732199710288 go:0.01991706385215493 necessary:0.019466571460142672 :0.45839120090186636 +of:0.06498790484679573 the:0.06265343443226169 and:0.0545833633887306 .:0.03280081293865197 :0.027630787231855056 com-:0.016650818590325155 Mr.:0.016328223057782667 a:0.015000146773400532 Mrs.:0.014893767031409022 to:0.014129229020111583 -:0.013915256311400668 in:0.011798010785931793 w:0.011090775731173867 with:0.010963044617877966 said:0.010370988644155109 com:0.010050406695619178 for:0.008779301806836186 com­:0.00744735519718142 The:0.0070183730031147485 :0.587907999895385 +the:0.11919516938815296 of:0.07230453158552728 and:0.05781056740443249 a:0.043018564803886335 to:0.031305092790907506 in:0.020848713353460488 at:0.014270110001066288 .:0.012526810245749479 :0.012413283442322082 for:0.011719122709941797 by:0.010808400946589808 or:0.010404172990115616 The:0.01003576004804544 with:0.009811868184449042 tho:0.009295902015355835 was:0.008924239095331684 that:0.008672304223433876 is:0.0085591147338948 be:0.008335143826716943 :0.5187411282106204 +the:0.43083263736349686 a:0.10834866727248789 and:0.06819306007091257 The:0.04525596964497062 tho:0.023928435513514215 general:0.02010437835770534 or:0.017344034359393825 State:0.015528082267494057 first:0.011001548668727257 tbe:0.00985260594036066 States:0.008487724795624232 that:0.008346593431189812 great:0.006903989269691192 as:0.006683144744351944 young:0.006473200461419539 A:0.005506272598242626 County:0.005435561006685595 county:0.005410034278782367 good:0.005166006462855598 :0.19019805349209382 +and:0.08986751046497923 it:0.03438396000656967 that:0.02860152475421061 but:0.027214469021582515 or:0.020401350111168993 found:0.01981278173690747 him:0.019169751886690983 them:0.01760766861165333 is:0.0167336408849481 was:0.016510279346645448 made:0.01632552183515972 man:0.014528235373311032 up:0.014381900500793568 not:0.0141297163430953 one:0.012986083103375966 place:0.012877177297581087 out:0.012344283261307395 interested:0.01167266722759753 only:0.011465321063176784 :0.5879861571692453 +the:0.2348448181869906 of:0.21206286187708615 in:0.1397752203662462 this:0.038379636984061195 a:0.026151297554944823 In:0.025044623440065514 his:0.024540022460633873 for:0.02035223428832996 under:0.019950384114721463 that:0.018682414880078175 other:0.01821150612007123 tho:0.017107773498081846 The:0.015763707803260585 any:0.015529467962542119 and:0.015021404274891317 into:0.014265907055674019 such:0.01383205054486896 at:0.0136103756117777 their:0.012438181894133137 :0.10343611108154112 +the:0.11919516938815296 of:0.07230453158552728 and:0.05781056740443249 a:0.043018564803886335 to:0.031305092790907506 in:0.020848713353460488 at:0.014270110001066288 .:0.012526810245749479 :0.012413283442322082 for:0.011719122709941797 by:0.010808400946589808 or:0.010404172990115616 The:0.01003576004804544 with:0.009811868184449042 tho:0.009295902015355835 was:0.008924239095331684 that:0.008672304223433876 is:0.0085591147338948 be:0.008335143826716943 :0.5187411282106204 +the:0.4934663206387729 of:0.09369441303618485 and:0.05042804709275891 The:0.03658638681307129 these:0.029973112557992117 that:0.02696423952617785 to:0.02089302854727898 tho:0.02067168170152103 which:0.01599155914042855 our:0.014230277565457899 such:0.013761858390232367 will:0.012495826127769767 These:0.012137105961380125 State:0.011987736309424186 or:0.011711533209028761 existing:0.010733594757203738 their:0.010574546878725317 this:0.01032979741892035 said:0.008568982800312645 :0.09379995152735839 +the:0.21767212032066627 of:0.11127580641487451 a:0.09239705495909088 and:0.05392664955359602 to:0.04356801073461205 for:0.018993172259382046 The:0.018854292725397903 in:0.01875298296302408 an:0.018653835900092758 Mr.:0.015974481218108405 or:0.015373214468784936 tho:0.014429422631857466 their:0.014124028206624461 with:0.014098775103421914 his:0.013749814645174652 at:0.010106244360304597 by:0.009683067525505197 all:0.009531232540184419 its:0.008679763420825132 :0.2791560300484723 +a:0.3142170681459848 the:0.1534108046668479 to:0.09769553456254942 of:0.07437619436171167 his:0.06942483827620452 in:0.02734627804478999 and:0.02572390958224036 this:0.024784184833059154 their:0.02136293768690349 as:0.014495091991336098 its:0.013093776138554829 such:0.012974483302339326 my:0.012712326906282085 other:0.011888003460496198 tho:0.009514399138377599 our:0.00892168891780338 her:0.008412317184801631 The:0.00822820873885882 your:0.006704552999417817 :0.08371340106144093 +to:0.2210428327063859 not:0.11357688499624166 take:0.11350782131118603 the:0.06650910404616432 and:0.0647196379046051 taking:0.0428877405047375 taken:0.036190182141675374 or:0.03328748106688132 took:0.024046465182688662 a:0.021377355733990296 of:0.018220141948882277 will:0.0163036035134022 don't:0.01605639135583398 you:0.015059818669086263 would:0.014810539487547868 great:0.014751514469732756 in:0.012658241412651131 we:0.012095197276944395 no:0.012041322716019515 :0.12985772355534345 +a:0.21211538322092624 the:0.19546933793587096 any:0.0837433263674313 that:0.06392555342730763 this:0.03900466156601476 every:0.03320437776626297 greater:0.0317962037514499 latter:0.02445227455811817 no:0.02194048191245243 first:0.02122680174566319 in:0.019145450321797694 and:0.01833696914000321 or:0.018018366847473998 large:0.01717044034959002 other:0.015696659241908387 early:0.015427668332717937 upper:0.014960184655747284 take:0.014893052348053108 as:0.0127088152040228 :0.12576399130718802 +in:0.132431694043271 of:0.11752578082343577 to:0.08927795538984627 or:0.07943215228781611 than:0.06671345750891865 for:0.0652952785828148 without:0.052050401510346025 at:0.04294653511238335 by:0.03513109681006123 with:0.032669483160849784 as:0.02679584081736639 from:0.02666325535801789 if:0.026623749088262098 that:0.02581705599205429 have:0.02477940328543519 In:0.02211091027649688 on:0.020130651066044652 and:0.01992755225556024 do:0.019334828223478918 :0.07334291840754045 +the:0.16807735899698817 of:0.10541662057906837 and:0.05138367848570702 a:0.04141865232648221 to:0.0385989743764065 in:0.026264864977736738 was:0.019530675665220657 his:0.018900421021236905 be:0.017373825006196972 their:0.015767721170721456 for:0.01557246589796783 with:0.014071419046630446 is:0.012922913111931644 at:0.012690452250034052 are:0.010702713108721902 .:0.010158075558988393 Mr.:0.009672788574483367 tho:0.009612591781990074 were:0.009549306361446321 :0.391314481702041 +and:0.3566247616004343 to:0.2267825330993826 that:0.03314750649269908 will:0.026652314481259463 or:0.021989758863166342 who:0.02069128128413586 not:0.020455931184766026 which:0.020007822985169753 but:0.01492813395401855 then:0.014678564789077803 have:0.01371411067049611 I:0.013352821683758547 would:0.01329377758057013 But:0.012277492356719563 he:0.009827853953494168 you:0.00894266398144913 it:0.007936283256693396 can:0.00702737161516334 we:0.007014275885333999 :0.14965474028221185 +the:0.6025217326911172 of:0.08992461722623978 The:0.05639323783986963 tho:0.03708436988815427 and:0.026459105148822697 a:0.020750750349986528 in:0.01483998201359068 tbe:0.012522565587290159 our:0.009988198935055554 to:0.009954240563266848 on:0.00797269321695336 &:0.0074208184835212136 this:0.0072334334365409415 for:0.006784924237367236 or:0.006299126342804176 their:0.005707004294368471 that:0.005330633891645627 by:0.004726381923135443 from:0.004565914489880845 :0.0625202694403894 +the:0.12853109946491803 and:0.10210717563624003 a:0.06319031122787443 of:0.06102479194963365 said:0.04100149329537996 that:0.01867495959186383 .:0.01615236212001766 The:0.015138598959572064 to:0.014313881239914004 A:0.011678850882264644 Miss:0.00988505702161934 all:0.009772344766918706 tho:0.00881961334335893 by:0.0070628440462603085 I:0.006767980542215842 which:0.00664949048037652 with:0.006642509531794746 on:0.006315732496356596 lot:0.006189022877737859 :0.4590818805256829 +and:0.07571500013186713 up:0.045425427346987485 it:0.03832467394754898 down:0.025730524264136474 that:0.02126778288996706 out:0.02035012560736982 him:0.019098211012416693 back:0.018241081840580327 Then,:0.017907462832724593 on:0.014512275392161355 over:0.01405263852734055 go:0.013076006046088119 way:0.01268872513351827 came:0.012620009881008918 come:0.012359748608855765 off:0.01143822677667485 them:0.010976834574478631 but:0.010794085188727537 as:0.010626389150771683 :0.5937947708467758 +the:0.2509493490620019 his:0.07937711020383678 this:0.07186893487185578 and:0.06615527689439984 a:0.050657034789433716 of:0.04943363217240598 in:0.0291819068260542 The:0.027449217001612337 that:0.023536413734320225 an:0.022080478394158658 her:0.02178827942261219 old:0.021010387047414838 their:0.020351759558562988 my:0.019713363378946275 our:0.01938225232259933 new:0.019288665896477198 tho:0.018423142451585682 other:0.015806480536000905 white:0.013756486842026069 :0.15878982859369506 +a:0.20475745020725072 the:0.19867144990565558 young:0.13618106082904596 and:0.05012371520212319 old:0.03385418882209392 of:0.02548496073029854 The:0.023977658526607937 man,:0.022713175449670876 colored:0.02238779175029132 white:0.021129552357281308 her:0.01973994730285675 A:0.01830348099516366 his:0.017713739959714696 good:0.017483715125901963 or:0.014964894742872017 in:0.014383933834061143 poor:0.013615021830642704 every:0.013210703206432342 little:0.012420861670976759 :0.1178826975510586 +and:0.08995317707915026 to:0.06844710404109794 of:0.04605142056172993 the:0.04074574508561307 which:0.02479116931334353 that:0.023764822140213245 re-:0.020841117231308055 in:0.020803825395358622 for:0.020278423301550053 :0.018417753428486977 not:0.016860793136637672 con-:0.016444405871234195 is:0.014386481772210856 or:0.014080680914153714 be-:0.01352268143271276 I:0.01317002660943805 was:0.011429878269381662 dis-:0.011196807025842847 he:0.01113106290024311 :0.5026826244902934 +and:0.06317916895143688 was:0.03089079697380977 is:0.020044819943736053 be:0.019406329289829806 are:0.016631216139614186 that:0.015910745835586493 it:0.014132589635136123 been:0.013429954470292457 made:0.013153338042273357 were:0.012494049396038097 or:0.012369181282419555 them:0.011608721240324167 up:0.01101461536327863 him:0.010833186604515583 as:0.010718511743974049 succeeded:0.010682665877813333 engaged:0.010592681714621757 not:0.009777868089593193 now:0.00948198968071834 :0.6826475697249881 +and:0.17118264815124254 so:0.06405131457555988 was:0.04759379124862522 is:0.047266331624190416 as:0.04644659806647097 to:0.045283288194451626 be:0.03783913309688249 of:0.027854333088022584 which:0.025468160861864653 a:0.024534623242729002 the:0.024136425744898646 have:0.021186271500947634 he:0.019400073936424556 are:0.018613860078432097 in:0.01622494621560807 been:0.01562737641309762 thus:0.01552850849644551 that:0.014265125846605043 I:0.013435549144562433 :0.30306164047293904 +the:0.16807735899698817 of:0.10541662057906837 and:0.05138367848570702 a:0.04141865232648221 to:0.0385989743764065 in:0.026264864977736738 was:0.019530675665220657 his:0.018900421021236905 be:0.017373825006196972 their:0.015767721170721456 for:0.01557246589796783 with:0.014071419046630446 is:0.012922913111931644 at:0.012690452250034052 are:0.010702713108721902 .:0.010158075558988393 Mr.:0.009672788574483367 tho:0.009612591781990074 were:0.009549306361446321 :0.391314481702041 +the:0.1378854459619626 of:0.09550816209198172 and:0.0793082284712746 to:0.06325432732593851 a:0.04981744998475612 in:0.04049507588462003 be:0.036034788213397076 is:0.023342186109428096 or:0.020042185465407026 his:0.018536136774378487 was:0.018362645804285444 for:0.015918042951775277 their:0.015879187622248634 as:0.015274637443141725 at:0.013719580768808836 an:0.01347101662130876 that:0.012412869685016129 are:0.01241085713967708 it:0.012346328197267564 :0.30498084748332627 +the:0.2646637839516322 a:0.10662692345717069 of:0.05461528941221898 and:0.050283365863604684 The:0.02794535036630275 to:0.027727651733039194 in:0.026502199209132587 tho:0.018396611451864733 .:0.011199355416490116 an:0.010692666371347926 or:0.01043492055644689 by:0.009271107256997788 A:0.008485861449492467 tbe:0.008350616118791237 as:0.00829286984855248 at:0.007785458407603313 :0.0077763811090450045 with:0.0075996837207869825 his:0.0074103033162212 :0.32493960098325875 +the:0.1393466133430695 and:0.0514490871886212 made:0.04967654245178901 get:0.041406818217676354 brought:0.037279864210633125 with:0.030228263784056197 be:0.030073228179063664 a:0.02782353694492038 make:0.02611387342174052 was:0.02597210866754839 got:0.021503509705708548 is:0.021322114211202756 to:0.01901931380521552 them:0.016986093482564087 it:0.01670186965242813 are:0.016459829089787843 man:0.016294407290344717 go:0.015682981829438614 take:0.01434984541322394 :0.3813100991109675 +and:0.11101960798674682 to:0.062334791247409815 of:0.04678917569723103 the:0.03147852576058688 which:0.022220284625160364 :0.02113317386480409 re-:0.020643554768386807 in:0.020043216833881133 that:0.01961125296176328 for:0.018057155070897727 I:0.017027774068931002 not:0.014397456711628813 or:0.014367473821082147 is:0.013233884844358232 by:0.012753669465645162 con-:0.011884491726436214 was:0.011662969423011264 be-:0.011625025359963036 he:0.01156604482637356 :0.5071504709357026 +and:0.21468875584603472 is:0.09767349760584959 are:0.08401708611427854 be:0.06352651153432906 was:0.055885084628404746 not:0.04669760503732878 has:0.04409541584464783 have:0.03870459144878914 the:0.03770568305547328 by:0.03185591125714487 been:0.026485087855180955 were:0.02547121085473958 to:0.022576246492609055 had:0.0221309649205031 he:0.0208271660041698 that:0.020486968819959043 of:0.01968046377973288 or:0.01886280439936239 who:0.016337573098929505 :0.09129137140253311 +the:0.14116556962566904 of:0.10750974216247022 and:0.08807013229780852 to:0.046649090920813145 a:0.04612945209819647 in:0.022261118400468065 for:0.020321623957789563 be:0.019139843573139543 was:0.018439271810141128 Mr.:0.01669520940399613 The:0.01577103596841697 or:0.014028902604649826 is:0.01372177505677378 at:0.013271374939862352 by:0.012851507567827693 that:0.012677744383894678 .:0.01232835280695251 an:0.011910626403857403 his:0.011840036985487854 :0.3542175890317851 +at:0.12389269257718373 of:0.0827505561329623 to:0.05995454700983915 by:0.04378398435630471 from:0.03308785932351407 in:0.02830846016854658 .:0.02452159959113045 for:0.023407361455881622 and:0.02255677083411193 :0.012063308191180204 with:0.011483063623738543 No.:0.011039752078159677 Mrs.:0.01085572625319737 on:0.010173821356950156 -:0.008370417386066161 W.:0.008026961059670244 that:0.00783651661145459 Mr.:0.007657685154767274 In:0.007190478079648596 :0.4620384387556926 +and:0.07812164637444684 was:0.03205492998343221 interest:0.03177606877733656 that:0.02742403793219405 them:0.02528745533341964 been:0.020031538223122702 it:0.019794155285109367 be:0.019663591368434655 stipulated:0.019586396734326817 all:0.019335045361359472 were:0.018513026379134448 as:0.017625699651326914 work:0.01741812676870946 him:0.017417852392421038 up:0.01661875311368724 or:0.0165384567897325 published:0.01638273174221794 are:0.01615796186155342 is:0.015889272176435584 :0.5533632537515991 +and:0.11227542635684666 in:0.05926094537427183 was:0.05396378394047754 is:0.05136260570530516 for:0.05106923353139905 that:0.05013521415615715 are:0.04326222731898401 or:0.04014340164908327 be:0.03531492597429185 of:0.030625235972832697 but:0.024718151168450147 to:0.021799093810604603 not:0.021501173365841574 will:0.01980662914078707 as:0.017568539194049916 were:0.016821543522803233 had:0.015820660338484865 have:0.01571034798462321 by:0.015099279464374159 :0.302741582030332 +of:0.17988591741265159 to:0.09359040062278326 in:0.07751107650881091 and:0.06935114796903478 with:0.060984760701948845 by:0.05947070143078072 for:0.053207196999234624 that:0.04894739243788023 from:0.031198737594059407 on:0.029739255192712474 as:0.02705535279671312 is:0.026511041263959912 was:0.018778702498275495 In:0.017629142522542374 under:0.01746060640252849 when:0.014342137000773063 upon:0.014137717975056708 at:0.01208520636248455 all:0.011697308257264985 :0.13541619805050448 +the:0.125244177620508 and:0.08175993685002995 of:0.06522069416930851 be:0.0548702739616459 to:0.05397973838865912 a:0.04481454131132746 in:0.02280340110740976 or:0.02038336764964828 is:0.019319010380680113 was:0.018270747950086045 I:0.014286571876306 for:0.013255035370608584 not:0.013226175954496275 been:0.01178939555333445 his:0.011478124918380829 their:0.011092690956782222 Mr.:0.010724349632519042 no:0.010703905414057096 he:0.01028438958216717 :0.3854934713520452 +day:0.06416687743862459 sale:0.04690446470374886 state:0.0440308442976822 board:0.035065269261916804 amount:0.0337927785585486 number:0.030354650372979873 out:0.026786591594636498 State:0.02327096504529749 point:0.02211911172904079 power:0.021398511706796082 bushels:0.021015257228705026 piece:0.018625040686206462 part:0.018472107386447105 time:0.017617940096673092 condition:0.01737983515834021 years:0.017164049786120274 act:0.01687703258382154 acres:0.016403710883597634 matter:0.015584430462169589 :0.49197053101864724 +that:0.18492490451572985 and:0.08321600513259607 as:0.07003273615284489 which:0.05565833694900225 but:0.043486705515539216 what:0.029564193695113986 if:0.025925268469862033 when:0.014921111707640322 where:0.014060695864138668 :0.014035443286383113 If:0.013303525358928914 though:0.013265088744975574 whom:0.011620617461193769 But:0.011271238482957665 of:0.009579957813689257 than:0.009223254931730724 time:0.008217406853099088 the:0.00816917306676447 it.:0.008109725278431146 :0.370414610719379 +to:0.6880677238963888 and:0.03527281695572439 not:0.024385593114523447 will:0.024350420517843512 could:0.016641857806951394 they:0.01604649119050176 can:0.015413735715194526 would:0.014822594157250011 we:0.013854112832776754 I:0.013377388142372956 the:0.012925177353381561 may:0.011649186633074087 who:0.011024811021790776 shall:0.010928396481993367 must:0.010373810626396869 should:0.010116603466467339 cannot:0.009244960395115208 a:0.007268088012575574 To:0.005909200963821834 :0.04732703071585584 +as:0.06931392982974462 according:0.052071562389565784 up:0.0511867300210483 and:0.040371568633051955 went:0.03351644485287816 back:0.032358406609281 regard:0.03073407747799069 feet:0.02852138506231652 down:0.026379903432040268 owing:0.02466642634685871 due:0.023695193974505355 go:0.022910973192184297 reference:0.020802802907016128 came:0.019883741951819873 sent:0.019874244915639484 attention:0.019565955494145405 come:0.01885185084678811 given:0.018792390567602263 it:0.017366961307524745 :0.4281354501879983 +No.:0.15250531695608965 June:0.07351876521969553 April:0.0635915846373314 March:0.0623792479289795 May:0.056457173214988936 July:0.04506582416838858 block:0.043197319665217886 lot:0.03857874505781597 January:0.033494042768879594 and:0.028410361777305985 February:0.027316123609057753 Sept.:0.025820449382040964 September:0.021432287655276376 section:0.020923344288314372 Section:0.020808013337977712 14,:0.020230053595219788 lots:0.019584453391168564 .:0.018576812728471982 November:0.018035909688790413 :0.20907417092898906 +and:0.17063290374502327 said:0.040593104574726056 of:0.039352527318583505 all:0.032278354719118676 but:0.028451326231433913 so:0.027560246558044777 fact:0.026429965456249396 that:0.02203378484690531 thing:0.019312314803644808 one:0.01860220666538874 say:0.01844609604855713 than:0.01809059713991407 hope:0.01595370232528204 believe:0.015164379690955018 to:0.015040602094008334 know:0.013960731127795197 as:0.012895219260522032 says:0.01199155183112663 think:0.011974278231850601 :0.4402361073308705 +his:0.21643485496791245 the:0.15814167458401113 their:0.13176829435989876 her:0.07232368464633296 my:0.06818527233911655 of:0.04725600512885353 our:0.03734796953399266 your:0.03116725327231576 its:0.023021705814138513 own:0.022876345236247136 in:0.02177799041007317 at:0.01615807538968778 shook:0.016031850474035204 bis:0.013318391773102857 and:0.012022670097006336 left:0.007291836643866606 tho:0.007210175227438131 shake:0.006669558872167543 to:0.006477620614856803 :0.08351877061494613 +and:0.1348697059735844 the:0.09294195578389501 is:0.0681166849290136 an:0.061607805351258364 was:0.056187543956910675 are:0.050632737107065506 be:0.048760473078411276 that:0.03803703854022345 been:0.03413065668828682 of:0.033844266914297275 not:0.03237267033972225 so:0.029814839194277163 were:0.02857622590068066 as:0.024770860586721143 to:0.022626437770911577 now:0.0193368276800794 or:0.01746715791536723 which:0.016953964439522188 very:0.01662419744140716 :0.17132795040836485 +the:0.11919516938815296 of:0.07230453158552728 and:0.05781056740443249 a:0.043018564803886335 to:0.031305092790907506 in:0.020848713353460488 at:0.014270110001066288 .:0.012526810245749479 :0.012413283442322082 for:0.011719122709941797 by:0.010808400946589808 or:0.010404172990115616 The:0.01003576004804544 with:0.009811868184449042 tho:0.009295902015355835 was:0.008924239095331684 that:0.008672304223433876 is:0.0085591147338948 be:0.008335143826716943 :0.5187411282106204 +of:0.28767355066866834 to:0.08775711267569858 in:0.08678131196995101 and:0.05160598694501188 on:0.04646139928102899 by:0.04519522654900943 for:0.044547789071328545 with:0.03396756772609607 that:0.033699232901107726 from:0.03075346596941143 at:0.027039283056790858 In:0.021061449543044047 as:0.017514234937992545 all:0.012543839382496166 upon:0.011844431150487573 is:0.00998972746569266 was:0.008814315973987914 into:0.008557199930727406 through:0.007781895704231326 :0.1254109790972375 +New:0.3790738262093695 of:0.1554046909096625 in:0.10067308709309611 to:0.07258574061073299 and:0.02042010117140589 In:0.01949318945695991 at:0.01468025847510825 for:0.01372549165862196 from:0.011434177564355873 with:0.010852736317183915 that:0.008555464151692954 the:0.007807741618267978 by:0.007175636709732072 a:0.0052949476057902135 about:0.0035144562965842567 ot:0.003335914719363086 or:0.003193861605072127 ol:0.0031221365775805955 as:0.0028727846987018613 :0.1557837565507179 +of:0.21043758599642182 in:0.1684775006068423 the:0.09191456776869657 into:0.0490947306703699 his:0.0487356907465584 In:0.04643048048914746 for:0.04126917344914106 to:0.0396947743138224 no:0.038066513763792144 their:0.03162509350935205 under:0.029915670309417306 this:0.02307917126045055 by:0.02266766676536349 a:0.021223584905901944 my:0.01684468847753495 and:0.014812067333142727 at:0.014333125221380182 its:0.01300701539440033 without:0.012970618398453516 :0.0644002806198109 +and:0.11187887119153705 to:0.09853102607265395 the:0.07913084602670581 of:0.07416416349018148 about:0.04432705337538649 for:0.03061980946830808 or:0.025697938400906038 be:0.024239751583998007 in:0.02391409810782605 was:0.022546320108051073 with:0.02197982094851185 not:0.021066377543912614 at:0.01704713586015428 is:0.01649421112116649 on:0.013596188578021124 take:0.013482568500466209 a:0.012897754269705347 only:0.01190117961393026 by:0.010546598649115458 :0.3249382870894623 +the:0.24777242400787303 The:0.07526117287980655 that:0.030830439478967776 Mr.:0.030751040752957495 and:0.025224798726911107 :0.016480281248699304 said:0.015354154755800632 tho:0.013816238371510796 of:0.010913512825782378 .:0.009909721321250464 large:0.008299037250335399 further:0.0077138543229189095 in:0.006841891755911302 sen-:0.0061588864462866315 tbe:0.005872085522735741 as:0.005663654745261701 which:0.005501443606713742 Northern:0.005020110331419429 an:0.004917734050553253 :0.46669751759830436 +line:0.04594830474537096 city:0.04401620745235705 City:0.03524839734510314 number:0.03481135508697063 county:0.030154259857644868 quarter:0.023298362475671183 one:0.017526812047308382 town:0.016214613419373677 County:0.016091506825475197 side:0.014626487776230927 out:0.014487956728200623 place:0.014412327826514651 people:0.014266456388249447 name:0.013825058972416041 day:0.013774964873675997 State:0.013715234630987309 state:0.012256413364064018 House:0.012169329780405662 part:0.011403479890210871 :0.6007524705137693 +of:0.13284359542677107 for:0.10655411943276571 the:0.07444577921169383 in:0.07095652221444262 and:0.07025900077030671 by:0.04178158699663205 no:0.030770858855455732 was:0.02875476712095054 any:0.026781083847635653 with:0.01994930793501899 is:0.019406674605377906 from:0.016865650553084005 to:0.01681866941571424 or:0.014303820227663425 are:0.0139435127739086 In:0.013403477671936398 on:0.013275383087899016 without:0.012500332370783683 more:0.011978630581395335 :0.26340722690056445 +the:0.13006376496809943 and:0.07086226985252486 of:0.06372091740113041 a:0.04244586403633607 in:0.03811094666225624 to:0.03401285023421579 his:0.022539625582017806 was:0.021034975628155785 be:0.019392875990734214 this:0.018307188128890962 is:0.016008044214166857 or:0.014900188379664905 that:0.01479975056587775 In:0.014092117051366588 Mr.:0.012596862906640612 at:0.012327631709514956 I:0.012053149228521935 he:0.01196647077306869 for:0.011498127778754957 :0.4182663789080612 +is:0.1738715461353775 was:0.10200041174883466 and:0.06314309819588981 are:0.06165713866472291 but:0.04186982495745935 has:0.039398402850754334 it:0.039060768643964704 will:0.03794363778434516 had:0.037402545107219805 would:0.03590086837796079 were:0.03192449160560687 have:0.03158952705835127 Is:0.031523214743115535 could:0.021283456806792226 do:0.01709497558445978 did:0.015879202494715836 that:0.01478429232657224 does:0.014759611493145945 shall:0.012729480728099887 :0.17518350469261137 +and:0.04491804315792162 covered:0.04018777062174743 filled:0.03439831602262882 together:0.027274277474498326 charged:0.021185110165574027 it:0.018970003064941 up:0.017480630635068384 him:0.016212955803671315 them:0.014293565819421733 compared:0.013525193832595763 connection:0.011614636799553067 parallel:0.011283394857871554 do:0.011130056469426521 loaded:0.010955317894446719 trimmed:0.010816708291869467 thence:0.01055173438898371 lined:0.010343364261696459 but:0.009666074941737286 troubled:0.009518829589372486 :0.6546740159069743 +line:0.15752563636361985 corner:0.06905613321055662 sheriff:0.04286280179780869 part:0.037001196156271406 prayer:0.03186416352602805 sale:0.03142394633391665 portion:0.030977207181492977 payment:0.030430446299472058 side:0.02841338084626688 Clerk:0.02587108715774029 estate:0.023280323008369054 date:0.02006128172523745 terms:0.018782735440552378 office:0.018339074345315308 one:0.01814520625554345 amount:0.017961503456507155 virtue:0.017809997850830296 Sheriff:0.01769919054283388 holder:0.01674874067282088 :0.3447459478288167 +.:0.06697540854548728 the:0.04400840463777622 to:0.039288169270747145 of:0.03858773395192355 and:0.03778027064917381 a:0.028326396249789335 at:0.02642121247544544 in:0.020013456925078953 was:0.017927249539586854 Mrs.:0.01478870250678956 No.:0.0147526381725335 W.:0.013917241872850135 be:0.01305668281349538 J.:0.01150001996255925 Mr.:0.011321038108706077 A.:0.01099828487619875 is:0.010443333230022594 C.:0.010145848917583885 :0.00956615732297359 :0.5591817499712787 +the:0.1454500361787387 of:0.1080247151493501 to:0.04516715868785427 boy.:0.036249098323069925 and:0.03403580073245388 girl.:0.032660326140049385 a:0.03171979252021135 in:0.02714044436566853 for:0.02365213940166824 be:0.021942286684630472 their:0.021087116084698817 his:0.019774122064073623 was:0.014637031197642503 with:0.014008395154201525 are:0.012730720509515858 is:0.011363112041341867 as:0.011357870543086747 from:0.01063391638067422 were:0.010589399829418696 :0.3667765180116513 +;:0.017133133096078276 it,:0.0145417343101323 in:0.014194265949948007 up:0.01382302776590254 them,:0.013795301019562837 him,:0.013580284362727563 him:0.013345422095364932 them:0.010282816254810655 it:0.009603478260343232 here:0.008926562510645952 time:0.008914996733883986 out:0.007657480405185466 time,:0.007230233557031522 up,:0.006865505818829017 and:0.006526108219093274 made:0.006141388563243173 men:0.006010261138239291 years,:0.005934741911328966 to:0.0059138089427478585 :0.8085794490849012 +for:0.11889423567967071 in:0.09047572539632648 of:0.08856880176577825 as:0.088303558489118 is:0.0625754921947171 with:0.05511510540050792 to:0.05461397353419124 was:0.046078317960718505 by:0.03685756515707982 and:0.034962775063596734 such:0.02927980557522303 at:0.028432398307488307 be:0.02344046093154068 In:0.022240072045261655 that:0.02107490079027979 not:0.02055146815425837 on:0.01785082895679948 made:0.016534300219692537 make:0.016250689781317135 :0.12689952459643428 +and:0.14104530344989966 are:0.04330657520832422 not:0.04314380923016152 was:0.03328959484267155 is:0.0328142433480493 it:0.024630896138999332 to:0.02403421528860571 were:0.019365554750627574 be:0.016870195465373067 them:0.014922478851728328 will:0.014550333199844084 him:0.01201263312025171 went:0.0119736134671911 as:0.01193426069815019 or:0.011831937737991538 time:0.01180843552896052 now:0.011781922752949666 led:0.011772879781168723 shall:0.011240780852218569 :0.49667033628683366 +the:0.5321503376368034 The:0.07664081661625857 of:0.06582621738939387 our:0.0599340623243744 Federal:0.03972842413722893 their:0.02728638756123077 tho:0.022842314697304023 and:0.02105959854690999 a:0.016855417454572565 this:0.013496644116005993 his:0.009879275278322615 an:0.008100467151450241 American:0.007928147054474897 States:0.007679685023826164 other:0.007341854043444521 British:0.0072425774627398794 tbe:0.007156690428044959 great:0.007062720115414819 its:0.0070538479280584055 :0.05373451503414104 +pro-:0.2711972643719769 re-:0.12236426502354304 intro-:0.11203820007319974 in-:0.06840460595841394 pro­:0.0435446177026357 pro¬:0.03644631054628803 re¬:0.023440858411092367 pro:0.022515664798128474 ac-:0.022396308523331965 re­:0.022285633794035736 as-:0.02147891565505987 was:0.016120428599472752 de-:0.013675659460706945 con-:0.01275529915898056 ex-:0.011043372932690318 be:0.009869501740331582 and:0.00968482864991321 re:0.009412574673058933 as¬:0.009285563529271275 :0.14104012639786864 +six:0.021119866540606755 hundred:0.01935434801470678 twenty:0.019314857150169115 100:0.017939584489209254 four:0.017305554186129217 eight:0.01722543334131206 ten:0.016211646151042657 eighteen:0.015031254930015584 five:0.011707137493308057 20:0.011472442439377417 of:0.011176186533116458 15:0.01056735195142465 three:0.009422994758364046 30:0.009397597033784266 twelve:0.009229582777738214 fifteen:0.008879749701676154 per:0.008756324232817692 120:0.00831470880438414 4:0.008143936369421878 :0.7484294431013957 +of:0.2094044326800705 in:0.10323064403071443 to:0.10003830707887722 for:0.06651277384544663 and:0.059888103219910734 with:0.05229638367705768 on:0.04126439815398536 from:0.0354362178188539 by:0.03150820700611748 at:0.023923279676181686 that:0.021401420699051488 upon:0.015462838440665488 In:0.01545720659661401 all:0.012395979629342193 or:0.011833585179611528 as:0.010765835272299391 up:0.010244683825641929 into:0.008022179740618366 through:0.007346693776088779 :0.16256682965285124 +and:0.11122289704080514 of:0.10519946905767 was:0.0806812574918955 is:0.051388837164823106 are:0.04139638981709658 were:0.03741031304928124 for:0.03090365479195204 in:0.030326922036902394 one:0.025374876222463965 or:0.0240936991993342 at:0.021754061665309805 by:0.01962120248913459 with:0.018737526881818834 all:0.018650285318524622 that:0.017546168622948142 to:0.01711852516106684 from:0.016198333264585918 up:0.0145942026555279 be:0.014104628697931202 :0.302676749370928 +one:0.1028303141280697 part:0.05963429477052991 out:0.04766456937681193 some:0.031418679026461914 members:0.030764490253327767 side:0.029940657362655835 portion:0.022063658796890564 office:0.020457735219956013 member:0.019726706386316174 end:0.019666887540649894 tion:0.018667441728710307 parts:0.016814747270460957 people:0.014112771422418794 all:0.014072739582212475 any:0.013183573287639892 One:0.013083578354183906 that:0.013024335602903442 account:0.012482348155001894 many:0.012077825070275192 :0.48731264666452345 +he:0.1630959554742654 it:0.13492481285072414 I:0.08281393934809679 they:0.06942228600942532 It:0.05661056166393545 that:0.05373448894855093 who:0.047749041602061254 she:0.03742290731078018 which:0.03445870770345118 we:0.030446714687486106 and:0.028487733604793963 you:0.027002775695088882 He:0.020704421893491465 one:0.018710275210494766 ho:0.012312354549402176 1:0.01169046252483416 there:0.011623599606569885 man:0.0099082389567437 but:0.008932031465650107 :0.13894869089415415 +to:0.33259641378791877 and:0.10679718697453217 I:0.07950634986638988 who:0.06294916512273258 he:0.0474051481081771 they:0.042035982332131974 will:0.03765468591972741 not:0.037303508669034646 He:0.03037377654276045 would:0.027716998943197724 They:0.02732865652136433 we:0.02675049947758951 have:0.018654021569748748 never:0.015820836788502768 had:0.013558981718343363 you:0.012451715436051176 she:0.01224428979310503 which:0.011776967237054648 1:0.010740910079924932 :0.04533390511171273 +the:0.2897590740326696 and:0.09994341054019708 of:0.08613958746870709 a:0.031480152451277804 or:0.027034096825380136 to:0.023605434118649002 in:0.02188643299045041 their:0.018406116394121704 The:0.01699809180528822 other:0.016611197696317078 his:0.016380976491426957 all:0.01625957279074466 tho:0.015952589713995376 such:0.015095642076193426 as:0.011399836914084334 these:0.011030066473387206 this:0.009870347695539981 for:0.009391215741451308 be:0.009159139682848382 :0.2525970180972702 +was:0.1718112605752629 be:0.15719952467034692 and:0.14975439005604646 been:0.08342095571542721 is:0.07194452187613487 were:0.05336578661576095 are:0.03905898649492519 most:0.022325537548177482 more:0.02152820181394223 which:0.020046027719237983 that:0.016593821545650412 being:0.015811248722943646 all:0.015039979063553772 an:0.014896254151596114 not:0.014485547182639683 now:0.013015683885795253 as:0.010975052699378166 he:0.010507662482115638 it:0.008318415094309322 :0.08890114208675583 +of:0.31468840218161637 to:0.12075971771799636 by:0.06735369776702443 for:0.05404231710862979 at:0.05195552310493941 and:0.04322339335608265 from:0.04094553159927214 on:0.03950200695787908 in:0.0349252099810336 with:0.034914787091659676 that:0.01791040975946781 upon:0.01198720821964309 after:0.010984070892918437 before:0.010479579013859128 as:0.01041004354224408 all:0.007531962498009075 In:0.007208587295528068 about:0.006194859478356429 against:0.006070653169164883 :0.10791203926467546 +to:0.365553273902942 will:0.08740285020292306 would:0.05665218112401095 and:0.051959147246661376 you:0.047939713413330184 not:0.043498845563055354 can:0.03834935707656959 they:0.03572074027848333 we:0.032058173600222166 could:0.03152780218014407 I:0.025774165415819505 should:0.020452907276350588 must:0.016579677417764234 who:0.011561719353254037 may:0.011352555286812277 cannot:0.009833493365091256 We:0.009425638170984964 shall:0.009100416583314255 They:0.008185926163234852 :0.086071416379032 +;:0.016310445289745935 due:0.013756891158571526 it,:0.010466619341735492 them,:0.009056445026539938 interest:0.009000405924783001 made:0.008939477927135078 sale,:0.008829011402703946 up:0.00788079001086414 mortgage:0.0064688995634604824 years,:0.006311420156175801 and:0.006042877699189365 appear:0.005991887029151604 time:0.0059487829780987276 day:0.005712724219039939 him,:0.005528428103898542 him:0.0054914504734601835 it:0.005482461384378701 land:0.005402796291328853 ,:0.005089287987933958 :0.8512888980318049 +the:0.39749834532651884 a:0.07520030034269234 and:0.05540858759821703 The:0.03273515726769502 tho:0.030061875542463562 of:0.020144331424922633 tbe:0.014929647509541684 in:0.014268129706664795 or:0.013333166761078447 .:0.013287381914101323 an:0.009000188755386574 to:0.00880680429595084 :0.007943763822197133 Mr.:0.00773879605474787 by:0.007328417831573476 as:0.005922572098978465 for:0.0047526933692942485 that:0.004736121968310169 on:0.004594595720579333 :0.2713091226890862 +more:0.3025581312188659 less:0.11361229550157692 better:0.055726483044737526 greater:0.04783512755252839 rather:0.04774900978695876 worse:0.025962610454381 larger:0.024338933013280092 higher:0.024145264729856467 other:0.023583406218844298 lower:0.01740816105916675 faster:0.013320113341121102 and:0.011850589620021735 longer:0.010168519541118245 More:0.009644876926096519 smaller:0.00828514368718763 stronger:0.007941849956989464 moro:0.006774069717768751 earlier:0.006379423643939423 cheaper:0.006312927131776862 :0.23540306385378426 +of:0.14455152285061432 and:0.09489489090308366 by:0.08800337286324093 that:0.06806108223441949 to:0.040588009775805615 :0.025518667914229444 said:0.02279481491508385 which:0.01586106680094577 Rev.:0.01497988787734818 with:0.014032858378721647 from:0.013648985620516302 when:0.01210981757710513 in:0.01000960903600393 for:0.008267157388331729 but:0.0073792677067635835 as:0.007239111685324182 if:0.006959662764939621 ;:0.005822996087049945 If:0.0058066592991379545 :0.39247055832133476 +and:0.24041255541550852 was:0.04120736303564524 is:0.03591103807640438 be:0.03150742259017457 had:0.028101272308316997 that:0.023895113227174837 but:0.02022051410136123 have:0.019759303436757865 as:0.018184495657381977 do:0.016482528160477586 were:0.01589937243937098 it:0.015890015030892466 And:0.01377856364682157 Why,:0.013353470514519131 What,:0.013346562627055145 are:0.012732182460601269 has:0.012458417719338179 would:0.011547880735604692 ;:0.011014150155292848 :0.4032977786613005 +the:0.07308391748213149 and:0.0650236830030406 of:0.06160769942055397 to:0.052268247186185425 be:0.047076308054616864 a:0.0372396837426395 in:0.024252681833945605 was:0.022488248066258144 is:0.02167905136294673 for:0.02153860696418792 are:0.020623701936193742 or:0.01929925567751662 re-:0.01871171112926931 been:0.01861238611348457 pro-:0.01601091340941376 his:0.013531807626344868 not:0.013315154707748283 were:0.013106637980199716 he:0.012779513704430508 :0.42675079059889237 +the:0.11919516938815296 of:0.07230453158552728 and:0.05781056740443249 a:0.043018564803886335 to:0.031305092790907506 in:0.020848713353460488 at:0.014270110001066288 .:0.012526810245749479 :0.012413283442322082 for:0.011719122709941797 by:0.010808400946589808 or:0.010404172990115616 The:0.01003576004804544 with:0.009811868184449042 tho:0.009295902015355835 was:0.008924239095331684 that:0.008672304223433876 is:0.0085591147338948 be:0.008335143826716943 :0.5187411282106204 +it:0.12701955534488724 It:0.11488742240653756 and:0.07301701485362473 which:0.0699191059401666 he:0.05281462001781064 that:0.0505437856470522 what:0.040875753788067785 there:0.0243657067815922 This:0.02212299481115735 who:0.021610090097170426 He:0.016574944665511526 as:0.01626485459969419 this:0.014238091647289128 There:0.009638812892638647 land:0.009617056802957132 country:0.007978258420747899 than:0.007729007620676209 she:0.007381621488342006 lie:0.007212393143242344 :0.3051889090308342 +of:0.12411499235371824 the:0.11821088059019134 to:0.07660425956589166 at:0.06766351045237164 and:0.06399581520280599 for:0.058373691967911645 a:0.05092201347732293 in:0.03770912054959994 by:0.0251511576327374 was:0.016313376124082134 that:0.01608312237991242 is:0.01396121759627457 with:0.01329362635413313 :0.013240881353898512 be:0.012439261515734526 an:0.012261546327290046 or:0.011732107331650435 from:0.011645396445943269 In:0.010752500888148924 :0.24453152189038121 +land:0.009797441120156384 up:0.008158773899764158 interest:0.007960050162213772 due:0.006839242627497519 made:0.006535160079961089 men:0.006124066511227531 day:0.005763956581874926 street:0.005169478278809536 boys:0.0051616109973793975 State:0.005087363238817297 good:0.004709182874099201 ;:0.004663576418223296 dollars:0.004650368010620072 him:0.0044852893338229866 order:0.004481069911976873 appear:0.004254653786476473 them:0.004235298496281965 :0.004191167177986917 sale:0.004174407301687091 :0.8925578431911235 +the:0.4331839876511593 this:0.19878425825972984 of:0.07277922428303027 said:0.057745910347727046 our:0.03344543853421971 his:0.020108809764939055 tho:0.01964452601368825 their:0.016008003486677552 a:0.015591485765758627 in:0.011850301004903729 and:0.011815381875709473 any:0.008646275148308312 tbe:0.008399220503630778 same:0.00816927576222189 its:0.008051309774651873 other:0.007415141685763758 such:0.007074805423661194 that:0.006531744121533871 own:0.006488461781220665 :0.04726643881146484 +on:0.2882398451377271 of:0.2555203183663447 to:0.09312056106228696 in:0.08577650939675856 from:0.05580088339374018 at:0.03554871030363254 upon:0.021754964344384262 for:0.018896732752120567 In:0.015784525119138613 that:0.014730042618897323 by:0.014411648360793543 and:0.014099306413888409 with:0.011177774754106189 into:0.007667301532768721 along:0.006748141169918423 On:0.005930829416294679 as:0.004722491878008466 through:0.004542836236043823 over:0.004241241583778354 :0.0402853361593686 +the:0.11919516938815296 of:0.07230453158552728 and:0.05781056740443249 a:0.043018564803886335 to:0.031305092790907506 in:0.020848713353460488 at:0.014270110001066288 .:0.012526810245749479 :0.012413283442322082 for:0.011719122709941797 by:0.010808400946589808 or:0.010404172990115616 The:0.01003576004804544 with:0.009811868184449042 tho:0.009295902015355835 was:0.008924239095331684 that:0.008672304223433876 is:0.0085591147338948 be:0.008335143826716943 :0.5187411282106204 +and:0.08832934385398629 him:0.026983886122743477 application:0.026114251583320973 was:0.02489894908956569 it:0.023075411912330694 up:0.02251060273927451 made:0.02033127255167498 out:0.019486588030277113 time:0.018903019749807147 them:0.018632082326077732 used:0.016786364428856393 but:0.016269712072418657 ready:0.01618805525798725 is:0.016020989807641675 not:0.01564434704203927 demand:0.015432404580140367 asked:0.014792759533761007 that:0.01442331755080464 work:0.014074418411123594 :0.5701022233561686 +as:0.12542216479208007 that:0.12380467682790337 which:0.09264927194723747 and:0.08194597189022691 when:0.05410444667780598 what:0.0410067967653098 if:0.03975200346521199 where:0.03548899540584826 but:0.026939539419165357 for:0.01588589114658411 than:0.014292039793664578 If:0.013679681104997475 because:0.012576176147000653 whom:0.011534182498492952 before:0.011428790175794228 until:0.010714124163905436 or:0.010191815852027594 while:0.007898233239000168 so:0.0071752169253381905 :0.2625099817624054 +the:0.2835964570330812 a:0.1720124959721412 to:0.1441903969891213 and:0.044081894100180166 The:0.03694349340248228 said:0.017361846233830473 his:0.016673969816330916 this:0.015564144632233538 of:0.01443697161596212 annual:0.01354649785931713 tho:0.012664603559507577 their:0.009696292600530081 A:0.008705941324405725 will:0.00823051228635382 by:0.008081401610641891 that:0.007522509656287825 minority:0.007418524224694537 with:0.006893878365468614 conference:0.006037990189081513 :0.16534017852834806 +the:0.70231341754369 a:0.08017837548055216 tho:0.04501961164057609 The:0.0342610217413579 tbe:0.013242941229490489 of:0.012720788227275842 and:0.012123434817602419 our:0.01114226898082567 in:0.008563286976225314 that:0.0075325311324450205 this:0.007280737736119449 its:0.005893717676848519 his:0.005675326789550275 their:0.005221646161771874 said:0.005005192547947631 A:0.0038936279894727583 to:0.0032560666113325273 on:0.0031885405597700664 large:0.0026489123077140238 :0.029838553849431966 +the:0.29616277486507997 and:0.16446282777770968 of:0.09403263781707152 The:0.09091250029498563 that:0.049586484440702516 in:0.01936492042915664 his:0.01579926718218961 their:0.015718430907974243 tho:0.012257078912766404 our:0.011212531385633249 or:0.010949317577968213 such:0.009624136783499217 said:0.00771738082443051 to:0.007583190996086684 which:0.007554737867669105 by:0.0074019861443924565 these:0.007055770287555877 its:0.006962919223963311 an:0.006948209976130305 :0.1576928963050349 +and:0.10222953946886444 would:0.07280782718789272 they:0.07008899520299515 will:0.06147183743191231 could:0.04935120714298039 all:0.04891859361966391 can:0.04155766708972936 to:0.03797164310781649 which:0.037843662304887435 do:0.033495049190584984 it:0.03338648241140645 that:0.0278726013914963 we:0.027645609067439514 men:0.02695517626213783 you:0.025752380682318006 he:0.024612811501949886 is:0.02407817754546887 should:0.02406996452383101 must:0.023894529253413614 :0.20499624561321134 +and:0.16083281395684723 he:0.12341535697648802 had:0.08719830477446354 have:0.06482054926585203 has:0.055826098298428946 who:0.04316813270284063 she:0.031026110009245482 be:0.030721981248568134 He:0.03062217551207765 was:0.030462986156982178 I:0.02555442542602741 not:0.01848064672117174 just:0.015237312405129324 is:0.015236414966804388 never:0.011921414124110795 once:0.011915227097047763 been:0.011428742296459977 that:0.011185644795062297 men:0.010744662922043348 :0.20920100034434913 +one:0.06754190432163522 part:0.05231163511576496 out:0.04609588594236959 some:0.02740306976054911 side:0.02387622494371665 end:0.022518288784217105 members:0.021845751933956114 portion:0.02151370006345736 all:0.02022572610903207 people:0.016238426460010967 and:0.014555909544903867 that:0.014078768366257871 day:0.013832139668816516 tion:0.013547994796857001 front:0.013380738665131557 any:0.013269620285130524 member:0.01265082101866512 time:0.012443834037564471 office:0.011845495219016932 :0.559824064962947 +the:0.12014926059459446 to:0.0819146486839077 of:0.07708432521007529 and:0.0672940840311137 a:0.045980464631897075 at:0.03132888823432516 or:0.025676046708941594 in:0.02171206381272757 be:0.018913756662025 was:0.018152660636912926 his:0.015821153991391747 for:0.014920655480558272 by:0.01379847758596029 an:0.013496366876487054 is:0.011574609852486657 their:0.010685562126723122 on:0.010324320314019865 with:0.010164086900289835 .:0.00963655011324199 :0.3803720175523207 +of:0.29361176904919545 to:0.09491036129912904 in:0.08711919071167801 that:0.06138579017457645 for:0.055072420227453 by:0.05412245789620347 and:0.05181260793836448 all:0.0375783102074977 with:0.02819897956185644 from:0.027036011235220682 as:0.02567368987248995 In:0.019571216682763636 on:0.014525012019859902 when:0.013849044811235502 at:0.012374130852386579 which:0.012198453411796728 upon:0.01127826153254931 if:0.010813560648662008 where:0.008278300903800755 :0.07959043096328092 +of:0.31742455513828743 and:0.08252535291945384 by:0.06684144760568102 to:0.06559482402695271 that:0.053131331411749076 for:0.051246635034698174 in:0.04237003742150776 with:0.038356359707404315 all:0.03436661068334819 from:0.02932112170969861 on:0.019076412284319985 upon:0.0115019099898515 as:0.011397761347104532 when:0.010443151865177844 In:0.009286595541120692 which:0.008685807937699293 is:0.008382491971931172 among:0.00821882541037367 but:0.007299724233633852 :0.12352904376000638 +one:0.0793092951769567 part:0.03499872460097183 out:0.024431206666010955 portion:0.021371839380432446 side:0.017793495858940543 some:0.014581375577805327 that:0.014192984529866021 tion:0.013643782945564628 member:0.012600961637713619 members:0.012024818404567643 office:0.011724478994255697 any:0.010701426521782015 all:0.010650397320457663 and:0.00980224438363923 payment:0.009516112361615207 account:0.009473436319125074 virtue:0.009275065279112517 parts:0.009221863249830355 end:0.009168467686442978 :0.6645180231049095 +the:0.744378689901512 tho:0.04171732886513374 The:0.035884301035633254 and:0.029241363585061596 tbe:0.015427848334925375 his:0.015252370331901804 our:0.013788103079491184 their:0.012978510685205738 her:0.012161483768360624 of:0.009379459741042555 this:0.007268272672863768 its:0.006004491651363457 a:0.005128285473921766 your:0.004838920859480339 an:0.003949338743269792 my:0.003119538234364019 Great:0.0026498277224768344 or:0.0025834085014236024 for:0.0025207616995947812 :0.03072769511297375 +they:0.10820419906340109 we:0.09779798816906361 he:0.09429646894785979 I:0.0910791010525095 it:0.06516122872282562 that:0.041243941484633555 you:0.039770831259027445 which:0.038423978189690566 and:0.033530096244186 It:0.02891756279271421 We:0.023247624674727557 she:0.0218458510396569 who:0.019170608997844597 They:0.014625543993133153 States:0.013473535890585964 there:0.0128663070938615 people:0.010765894213616711 He:0.009875731730809356 men:0.009819234817866417 :0.22488427162198643 +the:0.3200442536596154 and:0.08375582555256239 of:0.07370097171882439 his:0.0633010704148203 a:0.05523612336917296 to:0.023374742183261472 The:0.02191797040943984 by:0.02143341200515907 her:0.019482598839182436 tho:0.01860466857156416 or:0.016874550730842344 an:0.016672396110476172 that:0.016604706244787975 one:0.016027665235991147 in:0.014042656426786015 from:0.013961645089488819 with:0.013275093152288777 on:0.013048983447818633 as:0.012856581521737792 :0.1647840853161799 +of:0.2392343106336314 in:0.10428928529569782 to:0.0807425084574613 for:0.06003667897230786 with:0.05054384427035076 any:0.0496000647389523 that:0.04420337976208949 and:0.040707739996899875 by:0.03401288530199266 on:0.021032551724666528 all:0.020556027011691028 at:0.020339587192555006 In:0.02028145078005806 upon:0.0174368476021286 under:0.01666238782657208 no:0.01632749374328473 or:0.014388635833445518 from:0.012909826987441234 as:0.011750536255517459 :0.12394395761325627 +and:0.12345093033744518 I:0.04194541355444532 he:0.030736511312158904 the:0.02841430796696034 to:0.027416722485953074 was:0.024612745984478348 will:0.020725213656581618 they:0.019912099608399465 we:0.01935445478326048 it:0.019175149661798806 then:0.018321790779177297 is:0.018300663733721967 as:0.017978435776412 not:0.017862678721659885 of:0.0171675929556783 had:0.015066792858735441 have:0.013730086557035509 be:0.013324599349306953 which:0.012357069859432192 :0.49914674005735893 +out:0.07192691975693044 number:0.04726191459728508 place:0.031363448022336114 state:0.02991101803528637 amount:0.024561283842324606 means:0.02356303028257882 right:0.02350052266468399 one:0.02317290868111171 men:0.021847574945385504 loss:0.021042324107884362 kind:0.02055695746980311 and:0.019703845360208694 way:0.019372551023512874 people:0.019172869450812317 use:0.01844212647609324 time:0.018280055401573583 board:0.016950162406864592 matter:0.016638899408571772 power:0.016255482722384404 :0.5154761053443684 +sum:0.03352282876311118 number:0.028116684882597106 line:0.019995206059833036 city:0.01946514558931857 out:0.019275318828420953 day:0.01666865340772654 county:0.014872697538657208 amount:0.013254184849875051 Board:0.01252325449624941 town:0.012449555905674143 side:0.011663975251122375 part:0.011517157473718155 County:0.011460540331966697 state:0.011087331502382173 City:0.010878919191854432 purpose:0.01081028255427907 and:0.010297866493795984 way:0.009848747943663767 name:0.009522170936943183 :0.711769477998811 +of:0.6839902644685084 Of:0.13604531879698092 in:0.02862904958025657 the:0.014868374329882415 by:0.009694871499076385 "Of:0.009609944833824925 at:0.009421110268359702 with:0.009062607743971463 and:0.00817075502654881 as:0.006296963077969588 his:0.005365737742532338 In:0.005314515093493442 to:0.0046547093994200985 a:0.004634460609890804 from:0.004552018127515122 their:0.00405898676237296 that:0.003433616385580166 my:0.0033846362743218143 ot:0.0033048488324182277 :0.04450721114707584 +from:0.16140709442250945 and:0.11236424184747404 or:0.07650130181393822 of:0.06641511062827121 writ-:0.05867443489854612 than:0.054021008616695225 to:0.04601053255695972 in:0.040746602663009765 for:0.03886491676006815 at:0.03228700463890905 are:0.025027982879020236 is:0.021152794639182286 was:0.020688063641859197 about:0.019466026957576495 as:0.018571034984795513 least:0.018299899379269496 the:0.01758212033676674 only:0.017577844254722804 all:0.01534112086036274 :0.13800086322006355 +of:0.17995987353093942 to:0.1242133253841526 at:0.10809199038571082 in:0.10330831676657577 the:0.08448996382822249 from:0.054233871107636215 and:0.05001912654997021 In:0.04424470389013687 by:0.019947210175089856 At:0.014825944090803672 :0.011491166347642301 for:0.010398748262077248 with:0.007336157243609528 as:0.005872179885498185 tho:0.005581061560083279 that:0.005522667477892479 said:0.004944914610996487 The:0.004682418585417266 a:0.004176993959851938 :0.15565936635769334 +A:0.15608438029146965 S:0.06557897200467114 W:0.05902371795130078 M:0.0546894446129828 J:0.045653493065328524 E:0.04301627236681723 B:0.042850243060722014 P:0.03996522467025838 C:0.035535500523311184 the:0.03387008450871647 H:0.03166684321388603 T:0.02882218001570308 L:0.02606821324939927 a:0.022641612215702215 D:0.019306511058477315 F:0.017775376356208402 K:0.016770619837449048 R:0.016731521518888116 m:0.016539506216055225 :0.2264102832626531 +of:0.05950420130106885 :0.032669023964803534 .:0.03188687311738837 St.:0.022956868236530134 Mr.:0.01916360155137215 the:0.013905051450378889 and:0.012632195035956355 in:0.011351418004489869 Mrs.:0.010966450657884218 -:0.010514222422619112 at:0.0072240556389369295 com-:0.007021834966486086 John:0.007000886538507477 by:0.006896628030761128 to:0.006404120489757338 Miss:0.006358326720951791 A.:0.0063171483492959184 General:0.006103941014493782 National:0.005984059795625507 :0.7141390927126925 +and:0.1001174638867159 up:0.023441104847833426 that:0.023282074050109007 was:0.020651751643732102 feet:0.019343164276276442 or:0.01897546835347808 State:0.01843742417711987 all:0.017044887806816306 men:0.016929987616582178 land:0.016568699316056312 city:0.016441484389225023 situated:0.0158772158374805 interest:0.013955456743399363 part:0.01376292459559181 published:0.012230164760730605 been:0.012214598590039469 man:0.01145356598373441 of:0.010934214285174352 made:0.010880727167166657 :0.6064576216727382 +the:0.4345085732266901 and:0.049737395935561354 a:0.04828347446011559 of:0.04369329905926728 in:0.04136231651048675 The:0.036485937296123185 an:0.03516359023864808 tho:0.02680379603767581 by:0.023921480258644635 that:0.022282243099488758 In:0.017559834970648378 this:0.015489606761057477 tbe:0.01236871010656219 great:0.008387397309691997 as:0.007779462838083135 from:0.007543931944027243 first:0.005910067922567596 with:0.005659444635563717 on:0.005510738970699989 :0.1505486984183967 +the:0.10728493308281047 called:0.09955866345091323 their:0.0760163047977866 his:0.06305781846074603 call:0.05719730901401396 much:0.04701941943267434 more:0.04678812604043557 no:0.043112100315348546 and:0.039103221845682365 of:0.032377823451218854 calling:0.03092037295926979 my:0.025836350714927906 give:0.02413059247323383 attract:0.02380756912219041 her:0.023665649076393055 in:0.02317542835182797 calls:0.02248099521721443 its:0.022443315584602965 your:0.020685818276065287 :0.1703381883326444 +sum:0.05519286924780627 amount:0.0417431120946592 number:0.037929151940290826 out:0.03524761867090972 purpose:0.02682465988541088 rate:0.025837387834803247 means:0.02513629651577624 matter:0.02289609017615552 all:0.022011282184798378 is:0.02094864872852792 and:0.020012728258541588 are:0.02001123829890554 line:0.0195457000785362 one:0.018736685204772084 men:0.01800092631079578 tion:0.017342016568211004 be:0.016153757154157615 value:0.01611476692513791 cost:0.016065327053499858 :0.5232497368683042 +of:0.243564791044896 to:0.10520352578628613 for:0.09057963852157644 and:0.06771519846511113 that:0.059591114196766944 by:0.05686042294077436 in:0.05556291139808188 with:0.054843913473245874 at:0.02288640812815047 all:0.021383597671580868 is:0.02126185360020742 as:0.02040204687693418 from:0.016432604357686238 on:0.013529403195690551 was:0.013310389394176978 In:0.012444085156426072 under:0.011559229400469457 upon:0.011172391178816741 but:0.011106351189703968 :0.08959012402341829 +and:0.4416387371023484 And:0.0693400082736898 Since:0.03286864969569002 was:0.025687851413709883 but:0.01887190906844268 He:0.018640859880860356 ;:0.0173616181480094 is:0.016677073850264377 I:0.016063201091123584 that:0.012730183106248894 it:0.011324484151499361 he:0.009882375539794467 it,:0.0076158670091735865 aud:0.007397682752401598 Why:0.0073061164531397155 But:0.006945372307137927 since:0.006787795802006159 It:0.006786495146814488 are:0.006331158527848351 :0.258742560679797 +W.:0.11792637104998699 J.:0.08894026437589606 .:0.059758652510860266 John:0.05644699004390346 William:0.050699571663634486 C.:0.047268929840650925 George:0.03365569366162635 Charles:0.03169644332731939 H.:0.030197095710077802 James:0.030023446104870972 A.:0.027348198522589795 Mrs.:0.02726840967938014 E.:0.02547417902854249 F.:0.022046082226887 of:0.01998199641046133 R.:0.016874753748185506 and:0.016382297596050414 Joseph:0.01565487825481403 Mr.:0.015343472135607402 :0.2660122741086552 +the:0.5095293561128466 a:0.05821781372572602 of:0.054123477436952984 this:0.046528755926026476 his:0.04122680516658526 tho:0.029183881760552137 said:0.02160389136562024 and:0.01736872056750745 our:0.013608859406506399 The:0.01319512197801851 that:0.012533889503383383 American:0.010704523406419739 new:0.009987764963441965 tbe:0.009879895937679342 their:0.008754395710569057 same:0.008616256010143085 your:0.007516253229963793 its:0.007432920629136429 in:0.007001846849670244 :0.11198557031325099 +of:0.23688297991167712 to:0.08544137439647968 with:0.06831021025426992 and:0.06663029439293067 is:0.06132895290239589 in:0.05833124983479274 that:0.04356047760260393 by:0.04086631639624703 for:0.040657496436844624 was:0.026292763717021318 be:0.02198853247523512 as:0.01960183577437275 from:0.019081800932843593 on:0.018371348738530472 all:0.01753741543311244 make:0.015144175723713453 have:0.01455190543576532 under:0.013789973672113265 are:0.01309719629325165 :0.117533699675799 +the:0.5209942872505153 a:0.07991530830279407 tho:0.04194030796295237 any:0.04174388569119218 this:0.030532585142660537 The:0.020749705186451906 that:0.02057593336080544 said:0.01813069214158113 tbe:0.017869461423736802 great:0.015880937276324503 every:0.015426130650567497 whole:0.015193975161042879 large:0.011993351757090138 vast:0.009840574809302192 new:0.009703082925675179 and:0.008809580278868327 one:0.008641828597702376 other:0.008596323069984002 main:0.008458014961021443 :0.0940040340497317 +has:0.07788007577365517 and:0.06759020349497477 I:0.06285695039360999 the:0.05987458836777383 had:0.05559178796864551 have:0.05154848175468913 was:0.047016233301867126 is:0.04098246339147322 he:0.04071555404872168 than:0.037132493799014545 will:0.03596274430361208 you:0.034731277088339674 it:0.032483940088444394 that:0.030035557354620306 what-:0.020507337167055856 would:0.018326722834054596 to:0.016822366484847414 which:0.01607359652976581 a:0.015108200141866653 :0.23775942571296824 +which:0.13949284157970365 it:0.11926041364685881 It:0.11241512704273235 that:0.09168113571642841 and:0.06085762267616268 they:0.042334732276780467 he:0.02484308143795838 who:0.024749934816307377 there:0.02377325253725233 this:0.02374436266544848 This:0.019343591610455638 as:0.016755952759716673 the:0.01144356000870636 we:0.011063182934795622 I:0.010573974689176882 you:0.010302056278910295 city:0.010096659966572955 There:0.008947683796309391 They:0.007993533799279416 :0.22932729976044378 +the:0.10785936344840133 of:0.08041832059700071 and:0.06606829444959902 a:0.05643038308012388 to:0.05535280337717975 be:0.02853289252669998 was:0.027105035006482578 in:0.0247654133565907 at:0.015793819366212335 is:0.015728651725315592 :0.013428133240815843 for:0.01204466748614453 been:0.011592220107946525 or:0.011211388204423864 are:0.011026362473945926 his:0.010811659072250212 by:0.010680387155496561 were:0.010201582804998114 from:0.00959972225656998 :0.4203489002638025 +sum:0.03352282876311118 number:0.028116684882597106 line:0.019995206059833036 city:0.01946514558931857 out:0.019275318828420953 day:0.01666865340772654 county:0.014872697538657208 amount:0.013254184849875051 Board:0.01252325449624941 town:0.012449555905674143 side:0.011663975251122375 part:0.011517157473718155 County:0.011460540331966697 state:0.011087331502382173 City:0.010878919191854432 purpose:0.01081028255427907 and:0.010297866493795984 way:0.009848747943663767 name:0.009522170936943183 :0.711769477998811 +the:0.11919516938815296 of:0.07230453158552728 and:0.05781056740443249 a:0.043018564803886335 to:0.031305092790907506 in:0.020848713353460488 at:0.014270110001066288 .:0.012526810245749479 :0.012413283442322082 for:0.011719122709941797 by:0.010808400946589808 or:0.010404172990115616 The:0.01003576004804544 with:0.009811868184449042 tho:0.009295902015355835 was:0.008924239095331684 that:0.008672304223433876 is:0.0085591147338948 be:0.008335143826716943 :0.5187411282106204 +the:0.11919516938815296 of:0.07230453158552728 and:0.05781056740443249 a:0.043018564803886335 to:0.031305092790907506 in:0.020848713353460488 at:0.014270110001066288 .:0.012526810245749479 :0.012413283442322082 for:0.011719122709941797 by:0.010808400946589808 or:0.010404172990115616 The:0.01003576004804544 with:0.009811868184449042 tho:0.009295902015355835 was:0.008924239095331684 that:0.008672304223433876 is:0.0085591147338948 be:0.008335143826716943 :0.5187411282106204 +the:0.11919516938815296 of:0.07230453158552728 and:0.05781056740443249 a:0.043018564803886335 to:0.031305092790907506 in:0.020848713353460488 at:0.014270110001066288 .:0.012526810245749479 :0.012413283442322082 for:0.011719122709941797 by:0.010808400946589808 or:0.010404172990115616 The:0.01003576004804544 with:0.009811868184449042 tho:0.009295902015355835 was:0.008924239095331684 that:0.008672304223433876 is:0.0085591147338948 be:0.008335143826716943 :0.5187411282106204 +the:0.6986841711628498 The:0.03121716950517603 tho:0.030551165091789446 in:0.030316570243238323 a:0.02413534613283169 and:0.023984686066824884 no:0.01842354933816535 to:0.013378323301826053 tbe:0.012441038430778232 make:0.010411494551651126 by:0.008762534472507865 of:0.00813716161504476 In:0.007860871467029832 for:0.0072570492657355835 full:0.007021170907183549 great:0.00662665132811062 or:0.006367855698424723 its:0.005805960874901406 their:0.005549625767744843 :0.04206760477818598 +and:0.07802361919449942 wait:0.031320571842231255 not:0.030125815071197687 them:0.027555218099754746 was:0.02317862754604391 annum:0.022694889809412686 adjourned:0.02166557101401062 it:0.02133326793312903 is:0.020504266098916476 made:0.020477328248364908 be:0.0201737048640104 up:0.019452837700438798 continued:0.018930802722372752 are:0.017882127313017377 time:0.01763247934187909 remained:0.017085073863039087 postponed:0.016346616859517965 there:0.013794930913522968 waited:0.013629944758403895 :0.5471923068062369 +that:0.16832451653748762 and:0.16317551195275604 but:0.09202228048090219 as:0.06626898981545905 which:0.05056182452516285 if:0.034268175887251145 when:0.0327999336955599 where:0.02391654490512962 But:0.021638226096886436 because:0.020516735853829505 of:0.017875962661562897 And:0.017367123587138943 for:0.01715484095146282 If:0.016077584172624653 what:0.011042818726600803 though:0.010176208114312196 until:0.009969674033922531 while:0.008769541776912644 think:0.008148981878890557 :0.20892452434614764 +the:0.3129353748365024 of:0.19286376920313647 a:0.034615441600217796 this:0.02838272252427704 by:0.02660594406130329 and:0.024811780058694576 The:0.02284500582343002 said:0.02169951756121365 that:0.019743365398210835 in:0.01844740868777154 tho:0.01811147474367578 for:0.01657939666018235 with:0.015149387714725114 no:0.014208288631403042 their:0.011945020505563859 his:0.011808700794733 any:0.011041376850025632 our:0.010488867018542798 tbe:0.010084899449643874 :0.17663225787674694 +those:0.29417733418102865 men:0.11474609756361094 and:0.050500916231694955 people:0.0452864421112161 Those:0.03929266274480016 man:0.02745860740972976 all:0.02688729667479669 persons:0.025688809821404 one:0.018878806280583842 women:0.01607063891236871 many:0.01358512605987385 others:0.012444161655297098 person:0.008651338541895986 thoso:0.008634342481042697 friends:0.006389425784956931 men,:0.0061337138708749996 woman:0.005892040419452581 or:0.005709254368670048 boys:0.0056022350960546925 :0.26697074979064733 +the:0.3388402865525812 a:0.07238565904172688 this:0.0671207438079951 and:0.05065930981397159 of:0.045912471287364434 for:0.04109879629081076 any:0.0298981349434514 in:0.028992892123492073 other:0.02845406336487438 every:0.024115292016518276 tho:0.02311678324464177 no:0.022518034124792547 to:0.021107561460570783 very:0.019511020698350916 that:0.017596996459177842 some:0.01606728844155642 so:0.015868854050598753 or:0.015764477248025783 their:0.015394220490137148 :0.10457711453936196 +of:0.2224392934563404 to:0.13030314584076017 and:0.07193204726750911 in:0.04617613703671586 for:0.039229497414514904 by:0.037698279730980756 with:0.03504364620685113 that:0.026021860636768326 at:0.018727266428305765 from:0.01833151275242971 In:0.01367724470787659 on:0.013501126036245726 all:0.013035538045802954 is:0.010097507836388958 as:0.008841885824746118 said:0.007274439486697312 which:0.0064388526223747005 upon:0.0061730977110510885 was:0.006050310886604207 :0.26800731007103623 +and:0.05659702953366778 demand:0.0331645541867578 ready:0.020672263241194977 time:0.019677841547428965 used:0.018519761647823988 vote:0.01682678334758863 place:0.01434330982551545 provided:0.012709584562538576 candidate:0.012638033279394723 paid:0.012413162879959949 made:0.012376070307376048 reason:0.011222349419893108 it:0.01106154136575663 week:0.0105184298628621 was:0.010090106909497836 here:0.009241470364585405 sold:0.009086290271231043 them:0.009025137132837561 bidder:0.008940209846365808 :0.6898760704677236 +he:0.14204215922224808 it:0.07174080578844616 and:0.07058537574774472 which:0.06364045909748335 who:0.05421466119267323 that:0.05253198290641257 It:0.04068031886851445 He:0.031208443174713656 she:0.024553872652622467 as:0.021345201560807353 ho:0.011939465314502913 man:0.010228909187846903 lie:0.0101822183282211 what:0.009951744078332334 one:0.007707094219399755 She:0.007558601762166279 be:0.006512769346499396 company:0.006201032302697171 time:0.006110757651672149 :0.35006412759699596 +the:0.6762629648457243 The:0.057098814818911985 an:0.045685609550383276 of:0.02658480192676351 tho:0.024319117748140107 public:0.019504574589687178 his:0.015201043745633632 and:0.013609795428097355 this:0.010959358460868252 general:0.00954939073737167 tbe:0.009176906104535082 by:0.008583247411703165 in:0.007806088730542058 my:0.0064174892649936765 their:0.006212153130579795 a:0.004823292783723769 its:0.004787240802343091 our:0.004362113483821648 good:0.004294497499380791 :0.04376149893679559 +and:0.11717132479065025 of:0.05975776404107632 the:0.036894797744751906 be:0.030476697286946262 a:0.029689055699173163 in:0.026487129630288927 is:0.026201236531637237 was:0.025891673231283507 he:0.024166191619701714 I:0.02129953996234262 to:0.020689032195699227 they:0.017691857447921393 that:0.017526962289634983 it:0.017418942196368217 which:0.01639384581937364 as:0.015422020984154518 are:0.015414815296460722 or:0.015342212184098876 for:0.014934605060334663 :0.4501302959881019 +and:0.06280980550850063 as:0.05344618564615404 is:0.04596078697472132 right:0.04193025369192601 him:0.036297236497974145 able:0.03307518520398734 time:0.0327099384528786 them:0.027298331705389933 enough:0.027104860196985894 not:0.02349441017933237 order:0.023474330958279548 necessary:0.023031616401622417 began:0.022257301356161267 was:0.021855405259832844 used:0.019102221744592158 me:0.018258227108614803 seemed:0.01755844828776125 power:0.016667126678422173 made:0.015887129976090802 :0.4367811981707725 +of:0.264949514977801 to:0.10290635748298214 and:0.07290376221918449 that:0.06363886624976361 in:0.05712072738098331 by:0.04662565542490445 as:0.0448075364701224 is:0.03425764753563454 with:0.02869414741616958 on:0.027267758262487295 all:0.025136484351175072 for:0.023462776601153316 was:0.02335389187008406 from:0.023255259181897782 upon:0.019126722322650887 be:0.01576101418778774 which:0.015610266673837973 when:0.01467228049594497 but:0.011750078601370634 :0.08369925229406469 +and:0.17267409604673015 it:0.13968403366735252 It:0.13383856466144095 he:0.09779196020773656 as:0.09273607190753227 she:0.03067251181926011 that:0.029110172257196185 which:0.025201550885534836 He:0.023343181965726077 who:0.019275962511763195 so:0.01915432589396502 be:0.018164931038771235 I:0.012006183621806363 man:0.010667285996215015 but:0.00942901669880213 She:0.008712804111766748 lie:0.007766649588893694 one:0.006900119067510349 only:0.006452522263284998 :0.13541805578871163 +the:0.41548660260561976 an:0.09831528823760373 The:0.0815368358076709 no:0.045418494899274305 and:0.032583315437652555 that:0.02953603529234867 their:0.027021697284630657 his:0.025933255325820713 An:0.020454490783801467 tho:0.01690783014993522 its:0.01627526693888381 of:0.01399131483256365 whose:0.012271018487580242 this:0.011083921340551365 any:0.009850923010515125 This:0.009113017860219341 as:0.009002534077313667 her:0.00780902760084533 good:0.007551790980394983 :0.10885733904677448 +be:0.17594857864797556 was:0.17492378470497452 is:0.10998940354316301 been:0.07862345339888224 were:0.04201463240424284 are:0.03759993101661831 and:0.03742514308251955 have:0.033314722524523714 has:0.02918411656693357 he:0.02799537067104682 had:0.02647566810643052 it:0.019135016861267305 being:0.01577502649363325 Is:0.015770734043456504 ever:0.014522792419235583 not:0.013813555946772842 now:0.01363368848056944 I:0.009444435628333461 then:0.008223199707198885 :0.11518674575222207 +United:0.89824647628192 the:0.03549272284060581 I'nited:0.006450308959113911 Southern:0.0032070739721719774 The:0.002946374115702433 ted:0.0023961702758493993 nited:0.002366907136186753 Uuited:0.002109981570676421 of:0.0020363102638282825 and:0.0016795204679453774 tho:0.001552452552659349 several:0.0011608385747563551 two:0.001131239312358802 that:0.0008247152415535752 an:0.000820849949761363 Confederate:0.0008094597685752943 other:0.0007404122732831893 First:0.0006822581341165147 said:0.0005688161127894268 :0.03377711219614575 +be:0.1310120533889352 has:0.10588141915050081 have:0.10234192369256104 and:0.0705461911979836 had:0.06017627957587054 he:0.05308346635778381 is:0.048998185481080134 was:0.04697458116946628 been:0.03806036368915076 I:0.033518890167604204 there:0.026720043144244827 He:0.02146626343258165 they:0.019049114544902827 who:0.018573255297257785 are:0.017950027582609836 were:0.01608892599713963 it:0.013815199788062015 which:0.013626324744033514 she:0.010126549986537527 :0.15099094161169405 +hundred:0.02334136986593815 up:0.005482494641173394 men:0.005366536521246011 Hundred:0.0047587970519216575 John:0.00441808156134956 William:0.004390720675819281 him:0.004016828614280843 ;:0.003997112205305733 due:0.003721199871732 in:0.0036582900032443304 time:0.003637206863828461 James:0.0035594902370151707 out:0.0034878448964120057 .:0.003467980723571515 1:0.0032804584819785204 day:0.0032444781513863933 ,:0.003058139385740603 :0.0030314555521939613 Robert:0.003005471634785646 :0.9060760430610768 +the:0.22052173904674707 of:0.11538277631709545 and:0.07600893695483417 a:0.07004925231740321 in:0.02032394001329095 to:0.017760541526728617 or:0.016321320631386877 The:0.016047378210588287 tho:0.014162478919836598 his:0.011851559038502319 their:0.010247726296522618 an:0.009976024422455008 all:0.009838815678283644 that:0.007981786074193685 other:0.007735324991191378 :0.007694646861427443 at:0.007393351766959102 by:0.007172496730326369 .:0.006850640354361914 :0.3456792638478653 +the:0.8121459561450243 tho:0.03226032248211904 The:0.020575500697341393 tbe:0.017478410924806814 a:0.013597629383332059 of:0.012309219883232593 and:0.008222268573469417 on:0.007168338140861761 by:0.0071102484873646335 said:0.005146566265098221 an:0.005048709851196565 in:0.004797230061715818 chs.:0.00438386561387222 to:0.004113373644172771 at:0.003887517398565508 from:0.0036482999584596908 along:0.0032080350197850756 tlie:0.0026518011426161724 his:0.0023836217020069476 :0.028863084624959005 +Of:0.4341681523748325 of:0.15206723073916836 "Of:0.06258286418292157 the:0.05474629903594854 this:0.03245622203420105 his:0.021309356080200403 a:0.01998504210373808 in:0.016805252826765815 that:0.012681012241211901 my:0.01174940703338352 any:0.011738950961870675 some:0.010510589918303217 by:0.009625760646849965 for:0.009354222683737402 to:0.008650107200120587 their:0.008642209685551017 your:0.008392155021169804 our:0.007980373819197284 no:0.006825129898374468 :0.0987296615124539 +there:0.206405622002708 There:0.13928767735444736 they:0.09366961019285155 we:0.055567829500034284 and:0.04191001765298663 who:0.03964333877647302 you:0.03764196302126343 They:0.032808713621988776 which:0.0268182311758867 that:0.026627243155950484 We:0.022520595570870237 people:0.008117450631576883 Here:0.00794142229283548 them:0.006994712028419426 men:0.0064524359143067105 as:0.005968765605059376 but:0.005965305842101099 I:0.005607203684080676 You:0.005473700460288165 :0.2235781615158717 +to:0.4687056319346889 will:0.09282196824158663 not:0.050778824655418435 and:0.05065018393405594 would:0.036084991041588715 I:0.02790656864194556 they:0.024465461737824178 can:0.023899767566826772 the:0.02336737000691729 we:0.01842312288936916 who:0.017125872344837024 may:0.016235388425747944 should:0.01549510232053439 he:0.015299721261851787 had:0.013947865354879628 could:0.012717450974963395 have:0.012554437947375676 be:0.012470255692540802 must:0.012037221590608355 :0.054012793436439416 +the:0.13972774723688483 of:0.08403996680416144 a:0.06753077995318393 and:0.06212706399933833 in:0.046767123751794516 to:0.035026591751746085 that:0.028143542239467127 for:0.02300932477144182 which:0.019946306784417084 an:0.01986325992344389 The:0.015580882653355653 as:0.013969587209636137 In:0.012843142432361713 with:0.010100709346942028 :0.009036298786740173 his:0.008974023611685403 any:0.008666248811911052 at:0.008460927130462523 by:0.008403540355851233 :0.3767829324451751 +the:0.32469677571368816 that:0.08503502241592094 some:0.0841627259034566 any:0.06241566320650681 this:0.05979838291677457 same:0.057314259407281395 a:0.051157169518016875 no:0.026416297049234778 The:0.02338312954010176 and:0.022071953465358576 present:0.021671941879847192 of:0.02073203465182663 short:0.01918141584047181 which:0.018995677788534057 first:0.013661487243556002 tho:0.013604364796023337 in:0.011647726581941874 every:0.010961359537257121 long:0.01078952157571005 :0.0613030909684915 +the:0.12954522819384148 of:0.10104093608604095 and:0.08328930787087935 in:0.06522837417804922 to:0.04115868142003785 for:0.0385289602711611 a:0.03593228019122017 that:0.02631307473356233 or:0.02608487912855309 In:0.021736687209981814 con-:0.01601821309817524 by:0.014968940062905505 be:0.014629646152668105 The:0.014055300877225115 any:0.013277477849090634 which:0.01299180945639195 with:0.011887365782337246 said:0.011736552955933493 from:0.011266830374400356 :0.309309454107545 +the:0.3551100770156309 and:0.14382867727217594 The:0.04698169449504055 that:0.04548451948201073 of:0.041975324902039875 this:0.029165033190732312 to:0.02808872602373645 than:0.02435477522269305 a:0.022504055664660506 or:0.021564368702433456 as:0.01955080738050697 tho:0.019484459156456396 at:0.018790186759669644 but:0.018663190310671852 from:0.01811138858053785 is:0.014782488469977446 only:0.01353347641071116 his:0.013313752876539783 an:0.013033996646978118 :0.09067900143679701 +the:0.19716657754845232 a:0.1794740212547524 of:0.08953137486827106 and:0.07486717182235293 his:0.03445368785248192 to:0.02867314890480306 with:0.027757421058883076 in:0.027028079115041896 for:0.021805235653026816 her:0.02153289625722032 at:0.01890570924827936 their:0.016046191999088827 by:0.014247944020342655 The:0.014191435219950026 tho:0.013264524154772993 its:0.012703834210720497 A:0.012056388017102553 or:0.010553944166414433 some:0.010503487786810742 :0.17423692684123213 +day:0.0665576450966784 line:0.06220896097641428 city:0.061076216939362965 State:0.04224202369723612 corner:0.029260001463124744 part:0.027452104730841052 side:0.023297495260653795 state:0.022558187958768183 quarter:0.02021948787812633 number:0.01955225003446318 county:0.019538923267909715 out:0.018601377164494424 City:0.01843731997058424 County:0.01811415069785216 place:0.017131608048275477 House:0.016343372707771423 town:0.015261518750806008 tion:0.013612676303071386 point:0.012829617254746942 :0.47470506179881916 +one:0.1028303141280697 part:0.05963429477052991 out:0.04766456937681193 some:0.031418679026461914 members:0.030764490253327767 side:0.029940657362655835 portion:0.022063658796890564 office:0.020457735219956013 member:0.019726706386316174 end:0.019666887540649894 tion:0.018667441728710307 parts:0.016814747270460957 people:0.014112771422418794 all:0.014072739582212475 any:0.013183573287639892 One:0.013083578354183906 that:0.013024335602903442 account:0.012482348155001894 many:0.012077825070275192 :0.48731264666452345 +of:0.1911498978376409 in:0.10225497636431023 for:0.0889155696194754 to:0.08770824619449283 at:0.08270931889176474 and:0.057967699398148165 on:0.04792324436112503 from:0.03884291008577839 with:0.03725791773396661 In:0.032299035601566835 that:0.032119074836506625 by:0.028701408144036926 during:0.0177258156272624 after:0.01668719904806934 is:0.0155534971998255 all:0.01459349123926581 was:0.012552772307006401 over:0.011525496916702316 upon:0.010900407037584301 :0.07161202155547125 +number:0.13231003310386422 hundreds:0.06783893203468366 thousands:0.03610342988439527 amount:0.03385301636739663 out:0.02834575647168168 right:0.02598938639703483 and:0.021974911051649677 that:0.015094487790277682 class:0.014937167357924561 all:0.014761802394010249 one:0.014421513348441238 some:0.01277084294455609 scores:0.012194803638499502 millions:0.012155559187503797 people:0.012066364414808748 purpose:0.011983392650987152 tion:0.011744378981859262 or:0.011482356045449739 majority:0.011313441102802014 :0.497658424832174 +the:0.3666001304726163 of:0.1268307018635633 and:0.07115589668096307 tho:0.02923266969424704 to:0.02510549275465023 The:0.02355215631311204 in:0.02070975829925026 for:0.018709942952405995 an:0.017342857853224137 their:0.013362982064150849 tbe:0.011188976566540733 on:0.010729167410631109 from:0.010707849271598156 our:0.010235671066116442 his:0.008539695812153948 its:0.008467916329291504 that:0.007617330723009925 this:0.006991413030416035 a:0.006680429948232155 :0.2052389608938268 +therein:0.1998347523806913 above:0.1782141486792444 hereinafter:0.1288125879462492 hereinbefore:0.10007569224706452 and:0.046481629656923776 be:0.014582453334723395 is:0.013726658571544849 I:0.013150848085454192 he:0.012808546407136034 the:0.012505115657764413 was:0.010904864420848509 of:0.008741518728487838 herein:0.007699773407187928 it:0.00713292314965216 that:0.006940287824376292 so:0.005397324370768711 said:0.005128286280038146 which:0.005092761422612784 1:0.004874422234578028 :0.21689540519465353 +and:0.0743412730127257 was:0.06417004392775516 is:0.047066236423436755 be:0.038489315910459405 it:0.02932480652321339 interest:0.02737708298765294 are:0.02683068249124134 not:0.026361673825763113 been:0.025227746409214925 were:0.02334699211329194 as:0.01842825340840035 them:0.017971691169199125 made:0.017022649179868402 up:0.016636778193931577 come:0.015853126731592233 put:0.015626164917291307 came:0.015077189352979897 being:0.014419690800651468 that:0.01383191924112156 :0.47159668338020944 +that:0.06193653546847759 and:0.03913502799805278 :0.03286308978776333 as:0.027290010858463006 it.:0.020955438312409307 but:0.01874428945915613 which:0.01759603970231511 him.:0.01648878877653855 of:0.015841084213202492 if:0.015433976724459111 when:0.01480590842182227 If:0.01280343014937776 them.:0.011450359550516903 to:0.00916460477925027 where:0.008320358154597118 for:0.00791217939859063 time.:0.007260530934120321 .:0.0070597324618559155 day.:0.0067254097367787065 :0.6472132051122527 +and:0.05537755715904878 :0.04431082531066219 to:0.03659705994032846 of:0.031605335284718636 in:0.026368421770037558 for:0.023715538120204535 the:0.015869466890908363 a:0.01423820379541689 by:0.013632049897819028 that:0.013111255424232877 or:0.010307075785230055 as:0.009118217629346278 In:0.007829400080808556 I:0.007464424442916175 be:0.0069809366339780585 1:0.006907457830427653 :0.006407206871932897 ;:0.006124268910911808 with:0.005607901121928234 :0.657427397099143 +the:0.803783062349177 tho:0.028507340139067323 The:0.025596004532883767 a:0.024555365626513285 this:0.022300705404672636 sole:0.011230403294232392 tbe:0.01090512496007543 that:0.008753886904781993 and:0.005535278397996568 avowed:0.005121023995866453 great:0.004773360471679199 of:0.004472583096469409 their:0.0036595555727384982 present:0.0031088497323683807 any:0.003099471250020988 or:0.0030096739777087348 no:0.0027987241448154364 by:0.0025507204344073164 other:0.002541253751530335 :0.022697611962994888 +of:0.28379428553980784 in:0.12218909763685937 to:0.08823555970456019 on:0.051015675212383226 from:0.04258859667620487 and:0.04028076942250501 for:0.03986782065503799 In:0.03496677397972987 at:0.034399443934116584 by:0.03198232047302878 with:0.029482002687623632 that:0.027528406870997238 is:0.012223647436162131 into:0.011721012492006253 was:0.011601840880751836 upon:0.010847601657575943 over:0.010242187572200733 through:0.00980601759798245 as:0.009525315196335744 :0.09670162437413027 +of:0.09129790931378902 the:0.07369883040827747 and:0.047842263382354346 in:0.04189055351593407 to:0.04045875475680249 a:0.03542341257202578 be:0.02020462051672066 for:0.01979292654746225 was:0.01760256398103379 at:0.017380150555488715 is:0.014984483003968216 with:0.014047653760730413 by:0.01374644383819499 :0.012670486581795598 In:0.01200961464556976 or:0.011563835749786333 from:0.011391516893522809 are:0.011273104484969465 that:0.010755276030689069 :0.4809655994608848 +of:0.3222301720722049 in:0.13028394884370048 to:0.07483307163493944 In:0.04007050652378976 that:0.03625279610694092 for:0.035526800292580756 by:0.032351511242523286 and:0.03130478063956306 on:0.030381343395959676 with:0.027570482988076805 from:0.026624980699238167 at:0.026441504951881713 as:0.012554591280306577 upon:0.011703246759675802 all:0.009488555167831413 but:0.009184562114092546 do:0.008508308745653134 which:0.007343062797590127 is:0.00716475554226877 :0.11918101820118267 +hundred:0.14717840321866515 two:0.0969217058935085 one:0.029124063933712592 three:0.012801609896172303 feet:0.008437008897331476 wife:0.007733445619812648 dred:0.007256257829398131 four:0.007077366314796079 and:0.006993858858052809 up:0.0068904935088975865 year:0.006184039873358676 ;:0.006072273755258774 five:0.005870650814194534 years:0.005523882438050671 each:0.005336502109061729 in:0.005199992978504676 to:0.005042214985264319 dollars:0.004853901486747744 long:0.004838783467441292 :0.6196635441217703 +and:0.07558940021936399 recorded:0.030196237618668006 was:0.028917161578042846 made:0.027969746247669736 that:0.027730098932509103 o'clock:0.025060522019555328 up:0.023026552239529506 is:0.020398277211376416 found:0.02003101797656537 placed:0.017482208134164214 out:0.016937164562539058 place:0.016819459500107596 interest:0.016629321966808677 him:0.016002796715253755 situated:0.01573420479581609 it:0.015128305982428461 them:0.014715943643665314 part:0.014646613000297721 interested:0.014450471929902294 :0.5615344957257364 +and:0.06900398559359087 wait:0.04755675117360528 it:0.028675438636974738 them:0.026959901741570966 not:0.021771027400052993 him:0.021685771721112947 out:0.021054904973665668 me:0.02085972886915925 but:0.01782684306717194 time:0.017195773440875656 all:0.016237950798846205 her:0.01472320908688968 up:0.014265419615879966 do:0.013963103523803342 there:0.012980231164216866 And:0.012138032005234573 made:0.011087850430137892 nothing:0.010557698896218827 that:0.01049341207667635 :0.5899629657843161 +be:0.3322602018924563 was:0.10996867515318635 been:0.0889501488034167 is:0.06712523912566887 were:0.03277632624959252 and:0.026463804371816987 bo:0.024962847810543577 being:0.024470959749568956 have:0.024092834790621995 ever:0.023524180475703288 so:0.022167922924284527 well:0.021521883026420146 are:0.020437057863289435 it:0.01912357134239913 not:0.01910485063863349 get:0.01637009738265969 had:0.014488833788203608 Is:0.013312034874754334 of:0.01319313812918068 :0.08468539160759937 +of:0.09129790931378902 the:0.07369883040827747 and:0.047842263382354346 in:0.04189055351593407 to:0.04045875475680249 a:0.03542341257202578 be:0.02020462051672066 for:0.01979292654746225 was:0.01760256398103379 at:0.017380150555488715 is:0.014984483003968216 with:0.014047653760730413 by:0.01374644383819499 :0.012670486581795598 In:0.01200961464556976 or:0.011563835749786333 from:0.011391516893522809 are:0.011273104484969465 that:0.010755276030689069 :0.4809655994608848 +and:0.03868242960999506 as:0.031124813427855922 went:0.02352509775927722 him:0.02196555539050794 them:0.018760608639018784 up:0.017985449426794205 is:0.017894175620344187 go:0.017174904667157563 able:0.016756848979943888 going:0.014481672239490295 it:0.014128375989346808 was:0.013277058274565138 time:0.013249953793837373 not:0.012469887553778763 began:0.012465717758716884 way:0.012105610030480113 back:0.012090864562211581 right:0.011941707822828511 amounted:0.011564315359310868 :0.667354953094539 +the:0.12285296094004503 of:0.09817851333752219 and:0.06592713213355123 to:0.04951419258787356 was:0.04418146059484458 a:0.038107061866298836 be:0.03381349245443766 in:0.03359448275853669 is:0.028478288952295754 at:0.023474326416834054 for:0.016699924134405294 his:0.014326395251805632 or:0.014153776705098658 been:0.014056104888894281 not:0.013109242053401433 their:0.012637453412934655 In:0.0119303395497276 are:0.010136045963321282 were:0.009961306282732157 :0.34386749971543945 +the:0.08741288820481248 and:0.07392080242938477 be:0.0572668144792991 was:0.05686739458441792 of:0.05297029938296901 to:0.040095074017987696 is:0.03448309022071693 been:0.028380973754521515 a:0.02485235362607966 are:0.02226522268065813 were:0.019682022343204007 in:0.019454144698829248 or:0.019273705289081854 as:0.0158232132157123 not:0.012361914460680723 being:0.010097596398749334 for:0.009388164492904385 :0.00930537568905371 their:0.00894740846790883 :0.3961515415630284 +the:0.48783739749236693 of:0.08088325834414652 at:0.07008029008018725 The:0.03348707656894689 tho:0.03283152539893094 and:0.027405870569075515 to:0.025997170503304707 At:0.015704803491379656 tbe:0.012732280921748083 on:0.009666349729415552 that:0.009652776624721245 from:0.00891644497871423 their:0.008554785223037417 this:0.007874381500011437 his:0.007543886395452978 a:0.007374478183687154 will:0.006656935873656348 which:0.00655530469431335 for:0.006308483802048594 :0.1329364996248552 +of:0.136277751479383 and:0.06348004247795579 the:0.058873190619419334 to:0.04226417725099355 be:0.02762890840478874 was:0.022990604436450145 in:0.022841380559663543 by:0.02224723256095131 a:0.02070360894370502 that:0.01967748316122926 for:0.018607125573757474 is:0.018309110531757232 as:0.017942371369514317 at:0.015461263425641178 are:0.014147926386878607 with:0.01319540638336192 on:0.012695226814037657 from:0.012690100092132684 which:0.012108756995113722 :0.4268583325332655 +of:0.3293801184418181 the:0.1252329742765121 to:0.07255200558820007 and:0.06153617381565094 with:0.05727261842606371 for:0.034806647790315934 in:0.03473413357098196 by:0.033297783514068244 his:0.02456304494096782 their:0.021957259739991606 a:0.01730820427724151 without:0.010166789276258251 our:0.009377801201785878 no:0.009055295057788751 your:0.00883884669385965 or:0.008467403145496327 its:0.008466994235858382 as:0.007378489067417979 is:0.007332405838671562 :0.11727501110105128 +the:0.2842104046203334 blacksmith:0.07838949844691956 of:0.06015631323630972 a:0.05574653680212675 and:0.05410204279395565 in:0.05052230730169625 barber:0.02210535798513666 The:0.01801005182516531 that:0.015758441974245366 tho:0.015159623987729229 any:0.01375357996460951 his:0.012192885065884796 my:0.0114611795993667 on:0.010158107940747662 In:0.009982740140072619 some:0.009255499390531552 is:0.009210969801720023 no:0.008780748632382165 first:0.008623020495113544 :0.2514206899959535 +the:0.13080502171598335 of:0.12249755829513961 at:0.09275396043151514 in:0.08511978953168908 to:0.05125718734782221 and:0.03721370275535132 a:0.034645322058550816 on:0.03280970589523841 In:0.024920265692006817 for:0.019869736960644518 :0.01723809162961102 said:0.013141538161679438 from:0.012601985040651962 by:0.008922873765786406 this:0.008532318323969829 or:0.008334134682220313 an:0.008201761647646256 St.:0.008195833281810325 tho:0.008062808988953809 :0.27387640379372935 +the:0.2303550902820696 no:0.1480264615551842 a:0.12366835285404539 any:0.04017519226564702 The:0.040142714842472 be:0.0350147700670871 an:0.03301055977224186 and:0.029262592139395978 very:0.02856865924155236 great:0.02799851380799435 of:0.02111090009871273 their:0.018515641677626704 or:0.017775795509997715 his:0.01721616082010401 this:0.016168893047324787 its:0.01345866034734506 in:0.013360618609637021 little:0.012754427609375037 was:0.012463731946026397 :0.11995226350616071 +in:0.33834382386893597 the:0.16490382704983514 In:0.09093890531843439 a:0.08178672799412436 take:0.06936656631649106 took:0.0324747092735516 and:0.020045011247075386 or:0.018952522672898802 have:0.018016440692057687 to:0.017420924832934687 dis-:0.01658138185751117 had:0.01604608440874804 of:0.012666960029417761 The:0.00985101039259922 tho:0.00908813259306232 his:0.009023428106177444 first:0.008425508196999536 no:0.007696541706309593 iu:0.007125252885787858 :0.05024624055704794 +the:0.13898054982616972 Mr.:0.10134544807074626 of:0.06615392240767116 The:0.043278330440478296 and:0.04162034131663931 that:0.038474065211129 a:0.028836085729107952 Mrs.:0.019741515838392454 .:0.016321296438550317 Dr.:0.015742377033130618 :0.01499245666898834 this:0.014601172820615167 which:0.012022811139796676 in:0.010986353410193092 This:0.009519698186461954 his:0.009450116155350293 to:0.009398710140252132 tho:0.009372386328052828 or:0.009138862077782499 :0.3890235007604919 +;:0.01458927046758731 it,:0.007973265891266864 him:0.007834970369143835 one:0.007240974664279108 in:0.006989508095588829 and:0.006417396987522371 ,:0.006059091806132192 it:0.006014614548599763 up:0.005812344146302806 out:0.005395853159197619 them,:0.005290532062834904 him,:0.004938420268273817 city:0.004793760033506698 :0.004646491011450349 man:0.004641061555670736 country:0.0046164671969483135 feet:0.0044416267197611185 time,:0.004376787347733258 time:0.004358244018157902 :0.8825693196500423 +of:0.13084814232797154 in:0.0740836656586379 as:0.0625527229231004 with:0.059577596335708534 to:0.058433603729754965 is:0.05551580107464621 and:0.04946529489577619 was:0.04264000753602388 for:0.04009673021586375 by:0.037684080471064085 be:0.023941707008899252 on:0.02316059851167503 at:0.022644769441950232 such:0.019950936521181326 that:0.017856095877642635 like:0.017386655618315594 In:0.016902219705578994 from:0.016046571451088905 not:0.01205910100844263 :0.21815369968667797 +that:0.298271107806373 and:0.15231099468294887 but:0.05425708956536086 if:0.0365746785442632 when:0.036237276966220575 where:0.034875323325062386 which:0.03211973898294982 as:0.02981166807768261 Then:0.02053986173605224 But:0.01983693269486051 If:0.01908825092960859 time:0.018703219266474815 because:0.01148572386555154 until:0.010322078977824858 while:0.010268000802764871 then:0.010120350810279377 though:0.009627610782983168 said:0.00873978076280895 ago:0.008570928221952125 :0.1772393831979776 +of:0.28767355066866834 to:0.08775711267569858 in:0.08678131196995101 and:0.05160598694501188 on:0.04646139928102899 by:0.04519522654900943 for:0.044547789071328545 with:0.03396756772609607 that:0.033699232901107726 from:0.03075346596941143 at:0.027039283056790858 In:0.021061449543044047 as:0.017514234937992545 all:0.012543839382496166 upon:0.011844431150487573 is:0.00998972746569266 was:0.008814315973987914 into:0.008557199930727406 through:0.007781895704231326 :0.1254109790972375 +of:0.332591351348894 to:0.09601034521517808 in:0.0957530545808262 by:0.0582039482702003 for:0.05351077205889846 that:0.04430160216360913 and:0.041362384227763165 with:0.038333432303202665 at:0.028148882760753467 from:0.02724608009040717 In:0.024386788364413745 as:0.02127437937093388 on:0.01613648214526917 under:0.013303729805331834 upon:0.012720329790362568 all:0.01251437963647593 which:0.009918651063891198 into:0.00858733823233844 or:0.008066815966866649 :0.05662925260438397 +person:0.042116689106920284 five:0.029114398816507573 ten:0.023857218604799158 one:0.021019263582410134 two:0.018428961569147168 hundred:0.017952118409041116 more:0.017759775422926994 lot:0.01680003082396495 city:0.016034134780120255 three:0.015676724154171078 six:0.012407207595936024 thirty:0.012213349221890395 four:0.011883575606078672 of:0.011771837838718708 man:0.011386600370018629 eight:0.011191011409863316 state:0.010967526874459128 vein:0.010659237073728199 owner:0.010617194877557178 :0.677143143861741 +that:0.23252395842369505 as:0.10942348146422347 if:0.08027584102888415 which:0.07225605603241766 and:0.06920837360565685 where:0.050440373310765306 what:0.04416494191950387 but:0.03677212809143453 than:0.03195543054288115 when:0.03191874343991551 because:0.019619086998770623 until:0.018742967133297875 If:0.01851750400698061 before:0.018342839918598593 for:0.012564471637057319 time:0.010666786517898924 how:0.010290622852336557 so:0.009187563100410287 or:0.00867304249528906 :0.11345578747998258 +and:0.14507320772351315 fact:0.08580533594336559 said:0.056464728489513914 so:0.05141663139801109 believe:0.03728868944610554 is:0.032697255055655516 say:0.030323479159427524 know:0.029749358812227955 found:0.025535190692382553 stated:0.021273605064562356 show:0.019511948220510757 but:0.018999393120383457 says:0.018814328565908398 think:0.016893655385130203 was:0.01658797795582863 all:0.01652317309060226 see:0.015409038245983688 opinion:0.015263158537430448 order:0.014744011681695817 :0.33062583341176116 +to:0.3122709288015873 will:0.1641728909100153 shall:0.1189653878524449 would:0.09677530224759069 may:0.08208224011121357 not:0.047608513006709624 should:0.04530682362369537 must:0.02710275963441467 can:0.01590997531518608 cannot:0.01367480747572383 and:0.012382412875692644 could:0.011768748696161839 might:0.009665966347485623 also:0.004035482216394778 soon:0.00298085266143314 it:0.0029383392640148706 never:0.002684508619319545 only:0.00219688023984484 that:0.0021095752521655764 :0.02436760484890583 +of:0.057516561027845796 the:0.03952112229660144 at:0.03557263879644962 and:0.03225039321543559 .:0.03221963631496154 0-:0.020572849695617287 said:0.02036426569491286 -:0.02000971304363897 :0.016065459698261817 in:0.013247882185562871 by:0.01298596364399425 to:0.01228484920573484 about:0.009213236949292622 E:0.008859151684309237 with:0.008596654057303588 No.:0.008394677807492607 A:0.008075636219445102 W:0.007991411974513309 or:0.007932429162981997 :0.6273254673256446 +and:0.18535686200199394 of:0.15316324168285367 the:0.05658643319227421 by:0.05476953064501634 in:0.034785643568098996 or:0.03278197819555193 for:0.030605812695214726 that:0.02805435272710251 to:0.027249579515079718 In:0.01761128725601635 was:0.01238180035915048 with:0.010561550481636458 on:0.009969611761679676 I:0.009717524972822422 from:0.009644719390571415 which:0.0093235770222412 be:0.009232322051475892 After:0.009106254294440346 he:0.009059155399534214 :0.2890387627872455 +and:0.20517685125369556 the:0.15368301224259398 any:0.10552723144649506 or:0.09141200483682692 of:0.058500745521287555 all:0.05417056642673625 no:0.040157936598832725 some:0.03638613783639421 in:0.03303836217615063 many:0.022126075746087593 to:0.02121359644216558 with:0.01799430657824639 each:0.01683745222858976 In:0.01634198592954959 The:0.015677891803255278 for:0.014974751053252001 an-:0.014285711921872756 by:0.013279853287190368 from:0.009660303405942677 :0.0585552232648351 +the:0.26556084005493524 a:0.13664729662680883 that:0.0973103697745413 The:0.057335425789720805 this:0.05069489213130157 and:0.03330590098090332 what:0.030415095061732855 of:0.02324751975314902 This:0.021637671756738263 which:0.017196431686449094 no:0.016230444246848445 his:0.015454771561995788 tho:0.01441708848662232 any:0.014063704070945492 their:0.013557261431569137 our:0.012531295122768602 where:0.010317924660638174 other:0.01029353374961519 last:0.010100189577727459 :0.14868234347498904 +of:0.2848699287964852 to:0.13956095762954543 in:0.08885166830048137 on:0.08360853558733522 by:0.04755947433461113 from:0.046312270505208857 with:0.04363569719715115 at:0.03890778257394922 for:0.02618741307578451 and:0.025796990448117018 that:0.019908640277730344 In:0.016082128672676166 upon:0.015170616398226857 into:0.0146972172467802 under:0.012245928557937826 through:0.010843698495825798 over:0.010272593539689564 all:0.009326721131298637 as:0.008140931191393435 :0.05702080603977201 +he:0.25227578648906 who:0.12031070514003687 she:0.06840663540255829 they:0.05970218761750922 I:0.05718538603199196 He:0.053097177080512765 which:0.043218389614501744 and:0.04138175801509314 that:0.025207747365517133 it:0.018187346278653604 we:0.01725531126515486 She:0.013953512112219709 man:0.012585239459847892 ho:0.011991806318722755 be:0.011751501848691165 lie:0.009798174227549436 have:0.009483366225665524 It:0.008332913544608073 They:0.0077589388912142915 :0.15711611707089154 +the:0.5220352550182926 of:0.0708447757267689 and:0.06107713951685609 this:0.053028369127222974 The:0.04497403976395318 tho:0.029806193165352605 that:0.026542226208661996 a:0.02472116099595784 on:0.021748611542740215 an:0.011733064591015226 his:0.011208000048645505 tbe:0.009111009724416598 said:0.00891923292690445 our:0.00868039383260756 all:0.00814430226075758 in:0.008047660543144196 their:0.007651703163486627 every:0.006256288432261356 other:0.005642334862380449 :0.058828238548574045 +the:0.20635443459591066 Democratic:0.1457864590667576 Republican:0.12635704559875788 his:0.049188427674803095 democratic:0.04283772670508483 republican:0.039901517451222446 our:0.027208702924274727 of:0.025653568080414677 publican:0.0203120211593487 cratic:0.018521180702646772 their:0.017555582584917972 this:0.016938226169383428 old:0.015720730618649398 other:0.013854850317695048 these:0.013625277871103023 American:0.01293699651518976 her:0.012362169753957824 a:0.012276365843699268 ocratic:0.01086809551146814 :0.17074062085471475 +and:0.12839638106723106 to:0.06708886076566926 of:0.03625122167079707 not:0.027336824164452756 which:0.024248450502999952 it:0.02345288664181998 re-:0.023439557957008205 the:0.022391532824020146 that:0.021956458517978266 or:0.02107033013664362 would:0.020326300562757756 was:0.019291449070440114 be:0.01887307012199386 there:0.018638132245723187 he:0.018260839994737755 for:0.018112040213574963 will:0.017829111916098445 is:0.016463086137832462 It:0.01610978143043197 :0.43946368405778913 +the:0.3210907037039919 of:0.03854377070784045 tho:0.03754411779270195 their:0.03149382447704292 and:0.02891255732037189 our:0.021832546444690112 tbe:0.01725982068659123 The:0.017167046508081766 his:0.015345561036623804 an:0.014950106542759427 for:0.014115532513074777 said:0.013773954066576895 Great:0.012443264777979192 its:0.009713200086166066 two:0.009392474848711274 or:0.008300858060446755 public:0.00814631546013599 these:0.007842376856278494 all:0.00685952562326583 :0.3642724424866693 +he:0.19073192612342926 I:0.13773074299425025 they:0.07079280723387162 have:0.05625891034727703 she:0.053032464346521174 and:0.04948215596807664 who:0.0448556603624161 He:0.042429668726013024 has:0.03352342366663057 we:0.03019543388493499 it:0.029521276471230557 had:0.022856758518264176 which:0.02113196079829872 She:0.01845378919816481 They:0.01686214139521573 It:0.015982676883436457 there:0.01507616103245211 ho:0.014248857104912012 We:0.012977726055239423 :0.12285545888936532 +the:0.11919516938815296 of:0.07230453158552728 and:0.05781056740443249 a:0.043018564803886335 to:0.031305092790907506 in:0.020848713353460488 at:0.014270110001066288 .:0.012526810245749479 :0.012413283442322082 for:0.011719122709941797 by:0.010808400946589808 or:0.010404172990115616 The:0.01003576004804544 with:0.009811868184449042 tho:0.009295902015355835 was:0.008924239095331684 that:0.008672304223433876 is:0.0085591147338948 be:0.008335143826716943 :0.5187411282106204 +and:0.11203614284734381 made:0.029480560291083903 necessary:0.027231632327903786 provide:0.01978786821063526 him:0.018624150941585572 time:0.017844902254185023 but:0.01736032991925495 pay:0.01712283223509279 responsible:0.01655246417854943 work:0.01573375727996718 used:0.015721729148453864 that:0.015344008200088246 providing:0.015123591452644664 or:0.014918878594106077 it:0.014272018550925738 vote:0.014240496926603478 out:0.013886758983508773 demand:0.013625570335128902 ready:0.01288626098417059 :0.5772060463387679 +and:0.10807046812671985 the:0.06765813221138947 to:0.06699220614505398 of:0.06268116157295692 in:0.048012804933305064 was:0.0467640010929162 a:0.03826886569262568 be:0.03554966793995854 been:0.021069712849844838 at:0.020999813413510475 are:0.02042550538628349 is:0.01988337978511534 were:0.0176586393396768 his:0.014154459738127062 he:0.013899663215545721 or:0.013817848814943018 In:0.011785344474723255 had:0.01094506318643769 by:0.010799530408588666 :0.34956373167227794 +the:0.23509676074180955 a:0.1298192326320461 and:0.0828805569340483 of:0.07110913745601681 an:0.029438510096564483 to:0.02238850023700298 in:0.02098454562616365 The:0.01913054961345273 tho:0.015133831953072163 his:0.014354553286362228 with:0.01317940344851763 by:0.012832132435811676 for:0.011254250187915748 at:0.009904118317063847 Mr.:0.009797827880673458 most:0.009723659897979813 that:0.009495462382103702 their:0.008222485381343752 :0.007532873806786934 :0.26672160768526443 +to:0.5853880584620508 will:0.09419446347836717 and:0.0433488314885665 would:0.02991148605701291 not:0.028322699688334056 the:0.021705004918427414 may:0.019664045130555127 of:0.01899809403530246 shall:0.017138547023945988 by:0.01640826059870902 should:0.013109059888070004 can:0.0124809643090278 who:0.011858210652691875 must:0.01082817194905461 all:0.009693656690404156 an:0.008684523005887627 could:0.008601902619793812 which:0.0074838039117375976 they:0.007139056349258542 :0.034041159742802564 +of:0.11262937093395178 the:0.07933830126221257 and:0.061142640715328114 to:0.060236256985574714 in:0.03992463923984304 a:0.03339417177502128 be:0.02974599742579492 for:0.028778201704295268 is:0.02227390828963339 was:0.021921140498607126 at:0.021408804644676142 or:0.0196085274386579 with:0.01776914207166247 that:0.015589254532017845 are:0.01500556319959804 his:0.014936962884283948 no:0.012347146037078902 their:0.01216072595900912 I:0.012105281683176691 :0.3686839627195767 +and:0.0622444821947579 demand:0.041275945339978054 ready:0.03482459595972158 not:0.030012071256894753 used:0.028275481447765972 time:0.021572647493597507 necessity:0.021231469556693593 is:0.01816668421531165 enough:0.017987520398572564 was:0.017851322850021542 be:0.017555583633387526 call:0.017502234702486904 them:0.016833941538969183 money:0.01669719387494255 vote:0.016378198475451102 been:0.016303866422477963 him:0.01612151029994918 but:0.015384191959514862 reason:0.015330142602776334 :0.5574509157767292 +and:0.03868242960999506 as:0.031124813427855922 went:0.02352509775927722 him:0.02196555539050794 them:0.018760608639018784 up:0.017985449426794205 is:0.017894175620344187 go:0.017174904667157563 able:0.016756848979943888 going:0.014481672239490295 it:0.014128375989346808 was:0.013277058274565138 time:0.013249953793837373 not:0.012469887553778763 began:0.012465717758716884 way:0.012105610030480113 back:0.012090864562211581 right:0.011941707822828511 amounted:0.011564315359310868 :0.667354953094539 +one:0.1028303141280697 part:0.05963429477052991 out:0.04766456937681193 some:0.031418679026461914 members:0.030764490253327767 side:0.029940657362655835 portion:0.022063658796890564 office:0.020457735219956013 member:0.019726706386316174 end:0.019666887540649894 tion:0.018667441728710307 parts:0.016814747270460957 people:0.014112771422418794 all:0.014072739582212475 any:0.013183573287639892 One:0.013083578354183906 that:0.013024335602903442 account:0.012482348155001894 many:0.012077825070275192 :0.48731264666452345 +husband:0.010738628006786424 men:0.00873711898207794 wife:0.006587127740167657 John:0.006406163482074716 William:0.006340233698953808 James:0.00574521700704339 up:0.005665306630369957 Robert:0.005342831898737242 street:0.004949020208005905 1:0.004875148752592504 George:0.004287088304273985 friends:0.004060848341349577 in:0.00394032214456279 .:0.0037155032562492733 life:0.00359127958818933 Charles:0.0035727607619842087 city:0.003540528366161876 home:0.0034300415178243307 him:0.003398858194929919 :0.9000759731176652 +the:0.8510300794005842 The:0.048453018093643364 tho:0.01498943776789377 a:0.011702439150270937 an:0.010497584501094951 to:0.010369645099670316 his:0.008971681740020849 their:0.0065060994990987385 our:0.005908208866428835 and:0.004783916027685632 its:0.004592630894144943 tbe:0.004472837058222008 of:0.003625445356932372 my:0.0018179622920621217 good:0.001809418372376073 this:0.001689626330841356 her:0.0016732280150484132 every:0.001667359647820965 in:0.0015252212524289877 :0.0029141606337312084 +that:0.26371201840853314 which:0.08407706422037417 and:0.08370287991048475 if:0.05519030707485451 as:0.0532986282694471 but:0.04692510260970879 where:0.04614162331229497 when:0.04391988831704455 If:0.025337838206082937 because:0.021305447905250404 what:0.016647431339012645 whom:0.015888634653521132 said:0.015725518150923695 until:0.012396136526321662 for:0.012083811179246572 while:0.011775538902275829 though:0.010447683428889484 says:0.010358309072079519 But:0.010270309084233578 :0.1597958294294206 +in:0.13487586376650842 of:0.13334212983214858 to:0.07820126610951594 with:0.05112258155419647 from:0.04399801074411263 for:0.043633861910170116 and:0.03172463365172278 on:0.031592823934650086 by:0.031021888707621324 In:0.028763137522618915 upon:0.0222452355921463 at:0.01938417127605659 through:0.014183413168508203 that:0.012317615808440796 after:0.011199179318975312 under:0.009855275135828432 over:0.007438922703851863 into:0.0073686893084906925 one:0.005953256828439557 :0.280778043125997 +of:0.2892970507301608 to:0.10826395028684066 and:0.07069443529061718 that:0.06631653885121545 in:0.06434236243146348 for:0.04443386773381398 all:0.039445571857949856 by:0.03893610492204775 with:0.036808686789105045 as:0.02306857798438148 under:0.0217625966641402 from:0.015526648620184528 which:0.012636353954780919 when:0.01155980704900997 In:0.011142645852403356 on:0.01070039854327837 upon:0.010357440830776376 at:0.008398959145085778 is:0.0079109234666792 :0.10739707899606553 +as:0.08897443158561995 referred:0.030230559613372666 and:0.030102659987693358 came:0.028080828220841746 up:0.025952779779407128 conveyed:0.023505811035769212 it:0.0222257309072157 belonging:0.021656083211586394 went:0.01971445933398154 was:0.01709492882906862 him:0.01557159809167598 back:0.015549786896211079 prior:0.012818857541046117 said:0.012618378497594535 come:0.012551756237589747 letter:0.012141054336615963 returned:0.012066745688325066 made:0.01200716445784824 1:0.011359709662711347 :0.5747766760858256 +of:0.28767355066866834 to:0.08775711267569858 in:0.08678131196995101 and:0.05160598694501188 on:0.04646139928102899 by:0.04519522654900943 for:0.044547789071328545 with:0.03396756772609607 that:0.033699232901107726 from:0.03075346596941143 at:0.027039283056790858 In:0.021061449543044047 as:0.017514234937992545 all:0.012543839382496166 upon:0.011844431150487573 is:0.00998972746569266 was:0.008814315973987914 into:0.008557199930727406 through:0.007781895704231326 :0.1254109790972375 +went:0.13350876104147463 sent:0.09834143368055667 go:0.062342507822700254 set:0.05850281953670697 turned:0.05741794622685519 come:0.0495310452083662 came:0.043763335610167806 pointed:0.035530294763281144 called:0.03373618205778559 carried:0.03273504159634591 it:0.02764938379835728 started:0.026337877557961176 them:0.024693469294377157 brought:0.02466624546018492 going:0.022420755572411636 turn:0.021696615652063163 taken:0.02120184149096737 him:0.018026644129287242 put:0.01800977818487185 :0.18888802131527782 +the:0.06031127800735594 and:0.05969720084337605 of:0.059509384824782435 to:0.05925136740487824 in:0.026850456314336038 be:0.02335943009565718 or:0.02060975039971045 a:0.02001435536535234 was:0.019715424335908893 said:0.016919836224174756 re-:0.015683647817480346 :0.01521994893903868 on:0.014502188922869577 is:0.013989432145436225 are:0.013839127333709862 his:0.012626261210447388 that:0.01226914598680525 for:0.0121103436461464 were:0.011439122224997142 :0.5110822979575368 +for:0.5925566165556219 of:0.13151300613289257 in:0.04496277917044736 any:0.03644319972446935 at:0.02090897163016677 with:0.017879706146138076 that:0.01620041197618102 and:0.013613320252678703 to:0.012503301344477602 For:0.010509368430627738 by:0.009611956776197323 lor:0.00854578757083404 no:0.007888985657661189 all:0.007843211211619901 In:0.007180103224750785 or:0.005184050540090891 have:0.004572760682056905 from:0.004528766745710614 upon:0.003957554789198702 :0.04259614143817858 +and:0.08359341145843294 it:0.04645473911535955 agree:0.03162030165985851 do:0.029897998619758698 connection:0.026535426356301395 them:0.025798764078739485 together:0.02553573428550735 up:0.021798789791654304 away:0.017594096341016243 connected:0.01753284905775066 was:0.017199334468260698 him:0.016485540273295306 complied:0.016388364975271758 acquainted:0.016030297645182445 covered:0.014711500006178432 go:0.014648518666444824 vested:0.014488513630873966 that:0.013441833399303386 down:0.0129068207668706 :0.5363371654039395 +:0.13095603053295474 it.:0.01752332937802508 them.:0.011350406751211016 of:0.010702310338256235 .:0.010410282084636712 day.:0.008862720301678293 country.:0.007854983047948844 him.:0.007725728887946519 time.:0.00771551647350529 year.:0.007509071667404916 years.:0.006658289127403037 work.:0.005886191759780733 city.:0.005550006254465217 life.:0.005290701035592939 tion.:0.0048914536120152514 law.:0.004612788277874214 States.:0.004254724325960818 place.:0.004141285417612791 one.:0.004086838297923752 :0.7330173424278036 +the:0.11667137912779946 and:0.08422759540136503 of:0.06463182776617886 to:0.059983744468651345 a:0.031942913724817765 be:0.027445565680388733 was:0.02658411081054345 in:0.024877183606880616 at:0.02057651025524637 for:0.01848596874398695 be-:0.016970675905645025 have:0.015811056602220677 are:0.015401533578139925 by:0.01517766341227365 The:0.015098714207054975 is:0.014849091391716362 with:0.014308706178216868 or:0.014153048444163636 an:0.013382647528076962 :0.3884200631666333 +the:0.46963450545508467 a:0.10033343731298854 tho:0.030278544333900044 to:0.02560465894986268 this:0.025267007060905868 of:0.019151040243317097 and:0.0180378732102685 stock:0.017528086532596285 The:0.01747965972497803 :0.012256455762559819 tbe:0.01162604910368923 in:0.010111912046664557 money:0.009394273402531607 his:0.008915508094790322 their:0.00877464226619818 that:0.008168401632766583 our:0.007409736376763897 cotton:0.006857635465388381 all:0.006046229295499551 :0.18612434372924616 +of:0.1635134946472113 in:0.14963319008724627 and:0.10688904324155063 the:0.09319376394517687 a:0.07073434853392349 In:0.05265495389381737 with:0.050834196299733014 was:0.028869440554799532 is:0.027297594146045923 for:0.02653796092150864 to:0.022564840065907903 been:0.02146916597527206 by:0.01972849080836401 from:0.015711946304537473 be:0.01548775257138533 The:0.014037857359392671 all:0.012580210697919939 or:0.012507066982863607 that:0.010930494166617368 :0.08382418879672661 +is:0.11852008984255555 of:0.08939186844734127 was:0.08514032189887781 and:0.0796191565504778 in:0.05841897057277058 as:0.04141517031113783 to:0.03527418704711287 by:0.03208349761601984 any:0.0316178936538981 no:0.03129759887347578 the:0.027925111379291493 with:0.027276745378366836 that:0.02553986982270336 only:0.025049036289369744 but:0.024821881507018136 not:0.024674263954361692 for:0.024307050149215317 be:0.022936841776455594 from:0.02241706127132092 :0.17127338365822947 +and:0.25189948703532217 of:0.16255462101254264 the:0.052261401191807326 that:0.05024058831584225 these:0.037697682179510576 which:0.025171126030003987 as:0.024974708188278624 their:0.02308249246086313 The:0.019433509036017767 above:0.018268472479158814 public:0.016097618854532224 this:0.015551434512042042 or:0.01274695586755939 our:0.012286342143072431 such:0.011489197350633723 These:0.010226927185169654 in:0.010063710716690434 his:0.009881089420369474 same:0.00984654592646569 :0.22522609009411768 +of:0.09129790931378902 the:0.07369883040827747 and:0.047842263382354346 in:0.04189055351593407 to:0.04045875475680249 a:0.03542341257202578 be:0.02020462051672066 for:0.01979292654746225 was:0.01760256398103379 at:0.017380150555488715 is:0.014984483003968216 with:0.014047653760730413 by:0.01374644383819499 :0.012670486581795598 In:0.01200961464556976 or:0.011563835749786333 from:0.011391516893522809 are:0.011273104484969465 that:0.010755276030689069 :0.4809655994608848 +State:0.2891893787511882 state:0.07308004076620662 Board:0.05669962329556235 line:0.043733690654269325 county:0.03524879737433424 city:0.030901597514427132 corner:0.0299261951794485 County:0.029034834163734844 House:0.015443801741646074 District:0.014993419827003739 City:0.014394945435104979 Bank:0.012825273345272671 day:0.012683720598314366 side:0.009057806527168193 States:0.008882300808080808 lot:0.008154097890937994 town:0.008100588168473423 deed:0.007715289517530919 University:0.0076158350217819335 :0.2913187634195137 +and:0.1384028150421049 as:0.07019787598800564 of:0.0555084606149871 was:0.04122454100100416 is:0.03620152990663976 that:0.03453820725656841 which:0.032212605078972945 are:0.031932837412917206 to:0.03062210937587401 the:0.026442392506105777 a:0.02618938764578737 all:0.0256678697713193 been:0.02475545970881296 not:0.021415927225614213 have:0.021356645826718982 it:0.019881437153988265 were:0.019516290785069307 who:0.01653788668155482 I:0.016511063213457824 :0.3098846578044971 +of:0.14523155251671294 the:0.13727866213525464 in:0.06897581655663076 a:0.06301491677366572 and:0.04237014938155911 to:0.03856834036566103 that:0.02305067641216637 by:0.022944618206456362 for:0.02224628422810239 from:0.017905786562762697 In:0.015844309553631853 with:0.014363794942382501 an:0.014255510898867403 at:0.014250189804142612 :0.012676977477150062 as:0.011638480538636394 The:0.010741257182214671 or:0.00927188034491919 tho:0.007352452683230315 :0.307018343435853 +sum:0.03352282876311118 number:0.028116684882597106 line:0.019995206059833036 city:0.01946514558931857 out:0.019275318828420953 day:0.01666865340772654 county:0.014872697538657208 amount:0.013254184849875051 Board:0.01252325449624941 town:0.012449555905674143 side:0.011663975251122375 part:0.011517157473718155 County:0.011460540331966697 state:0.011087331502382173 City:0.010878919191854432 purpose:0.01081028255427907 and:0.010297866493795984 way:0.009848747943663767 name:0.009522170936943183 :0.711769477998811 +:0.10724186121906852 .:0.029974627325082843 Mrs.:0.013119900904147433 J:0.012113188168350745 OF:0.009940181568725028 Mrs:0.008601111252288941 Mr.:0.008526437419988486 of:0.006879317999224129 W:0.006550120255318473 C:0.006284120160524594 it.:0.006046719537230118 at:0.006023946857705077 C.:0.005898831313933523 M.:0.0051384738248476565 city.:0.00490631886887285 J.:0.004901529505570005 S:0.004609319362915925 and:0.0045299329800128525 H.:0.0045064452108261755 :0.7432076162653666 +are:0.12812690599230633 be:0.12529873562334556 is:0.09476324281905796 been:0.0771416039485005 as:0.07336747092180557 was:0.055201609455247276 and:0.05232439659665488 have:0.04079606651196765 were:0.0353342449428559 not:0.032558662585569394 so:0.03073297604289191 very:0.02643032798509892 of:0.023617103278094853 had:0.023122959092397817 the:0.01957607865691575 Is:0.01792264065943481 has:0.017331328785521495 a:0.017322516776448284 most:0.016901348189591145 :0.091129781136294 +the:0.1472228347632891 of:0.09178635266732199 and:0.057118294735526265 to:0.053769102399652956 at:0.027461524238398254 a:0.0250321905501336 .:0.02081899557805483 in:0.017149338595242043 for:0.014883464702690417 :0.014253060515437814 Mr.:0.01290518754508688 by:0.011925908738676895 The:0.011762662370963815 or:0.010898569553913308 tho:0.009894679392880665 from:0.009615193923939837 with:0.009349770654769971 an:0.008401594720811926 said:0.008054676524987365 :0.43669659782822207 +of:0.28767355066866834 to:0.08775711267569858 in:0.08678131196995101 and:0.05160598694501188 on:0.04646139928102899 by:0.04519522654900943 for:0.044547789071328545 with:0.03396756772609607 that:0.033699232901107726 from:0.03075346596941143 at:0.027039283056790858 In:0.021061449543044047 as:0.017514234937992545 all:0.012543839382496166 upon:0.011844431150487573 is:0.00998972746569266 was:0.008814315973987914 into:0.008557199930727406 through:0.007781895704231326 :0.1254109790972375 +and:0.08917905563122698 that:0.05086862045882572 an:0.04068506809956628 as:0.03432588664969241 the:0.033956934493016164 No.:0.028131074369738978 at:0.02735607420944485 when:0.02646535320436819 :0.022600294501038776 but:0.02213189852068004 what:0.021772568670361033 No:0.019115631931798025 than:0.017160695264745732 which:0.0159564850387655 I:0.015896228081516913 if:0.015719679222728683 If:0.013020083592648581 of:0.012537285560875628 do:0.0123229717669787 :0.4797981107319828 +of:0.21025739453484144 and:0.09789464523424475 to:0.08288290873665435 in:0.07977808860005982 that:0.06821304152077937 for:0.06084417779118982 by:0.05210251318314712 on:0.03809685726784446 with:0.03475039275009093 from:0.030927733896699717 In:0.018312787889846114 as:0.015898489995747812 if:0.01480126948326823 all:0.013222278767569982 was:0.013065396661543712 when:0.0122536945755527 before:0.01213516121705198 is:0.011898073978981632 after:0.010551644872763761 :0.12111344904212232 +of:0.15052462281760146 in:0.09888260256677932 and:0.0912744297583886 with:0.07342504605684277 is:0.0726005967642979 was:0.05801869933247989 by:0.05611410562290359 for:0.055052590530080825 to:0.04245561789377467 that:0.025679024076050952 In:0.025115450120076994 as:0.02368867787720414 have:0.021323167687684583 had:0.018358275641146875 from:0.0182220961811488 on:0.016659826653531506 but:0.016564881897716672 be:0.014639101156714256 has:0.014460198446530948 :0.10594098891904521 +and:0.1391873495273003 be:0.0657906782601608 has:0.06357306120271036 he:0.06307401944810362 have:0.05407571369577454 which:0.04997230463934715 I:0.04992229213053404 had:0.03289169746277201 as:0.0326626411724082 they:0.031522436804817124 that:0.029052442619559977 was:0.028320586240593797 who:0.021882522606091845 it:0.021375120433345173 been:0.019551224278608715 is:0.01770314061960999 then:0.017372257227969083 but:0.017023302999810443 we:0.01584426841704346 :0.22820294021343937 +the:0.3805854090189498 a:0.12427854047085864 of:0.08234716802394189 and:0.060883352861277565 The:0.03310066088323354 in:0.023658463417114285 tho:0.019778673498917224 or:0.01867456258442062 to:0.017847202520175937 with:0.01408200267080202 for:0.011372451475872866 his:0.009901644945198072 tbe:0.009512107964130717 by:0.00936756633868101 at:0.00789733669164789 this:0.007878233640334135 that:0.007278195987043501 South:0.006740590187537842 from:0.006690090008700562 :0.14712574681116186 +of:0.2843300755564371 other:0.22246337636364735 these:0.05433166515773578 in:0.04266198407003372 the:0.04063439744668472 all:0.040413610813005915 for:0.033206662771324225 various:0.02646094426938163 to:0.022754997770619134 with:0.022713790273549292 their:0.022137102894600233 many:0.020086537659849673 and:0.01561807500640644 different:0.015554828658484614 such:0.015235200510058413 by:0.014702572315364076 good:0.01400929136031758 two:0.013360353523747677 a:0.012000739903239731 :0.06632379367551272 +feet;:0.11932653582161773 feet,:0.052745169772308705 ;:0.05252020185081042 and:0.04060939768755342 running:0.0329050441551036 feet::0.022569843245136913 street,:0.021088126268912995 4;:0.019877329562838008 stake;:0.019798929917817416 corner;:0.01900825957558882 street;:0.014604706095160444 3;:0.012907432986466807 2;:0.012286625205789955 1:0.01179460509787611 6;:0.011616724000889651 of:0.01120626391467081 5;:0.010070878757145244 chains;:0.009987058361995257 avenue,:0.009510930209260972 :0.4945659375130567 +the:0.14747317579422697 of:0.08969960687569191 and:0.08002288809402543 to:0.04018288925517698 in:0.038069034056462545 a:0.034447851134399 his:0.026243861016754164 was:0.017504724320044556 In:0.017094479622078555 Mr.:0.015549262855704193 be:0.014889239251186716 that:0.014292727471384912 or:0.013671713673569966 by:0.013608448145710786 for:0.012621338926358095 he:0.012559565867065125 their:0.012465751620385573 is:0.012137097840243853 I:0.011430039444749974 :0.3750363047347807 +the:0.420171678270782 an:0.0721608316698103 a:0.05362960147615818 this:0.03353139246791388 The:0.03292402881582515 his:0.027543673928475888 and:0.025154313151200963 tho:0.02086612533176088 said:0.02047773516539022 in:0.018427713021369498 of:0.015137810399391636 from:0.013748714916769853 their:0.013157356004629011 our:0.01228692887001304 special:0.010201575333994677 tbe:0.01007149373995558 its:0.00953279102455421 every:0.008092226399655953 he:0.007967785614809236 :0.17391622439753984 +the:0.17399399599831328 of:0.09991389717841365 and:0.0830555886993546 is:0.07733007278763374 a:0.05525545778469705 in:0.054942480987949044 was:0.05227033768204102 to:0.034156384473834026 their:0.03283248391926956 its:0.03264114169444413 by:0.02594626681594044 very:0.023513665078500712 his:0.022431792803785634 it:0.021045515162333484 be:0.018939383579389592 deem:0.01877577391736116 with:0.017577765410517338 or:0.01647902103994547 are:0.013055591893579263 :0.12484338309269684 +are:0.09919231012053965 was:0.09001541358374794 is:0.07727797749289708 and:0.06979540622496523 not:0.06404877456001129 were:0.05340819117899304 will:0.05291702785694335 be:0.046404945270156976 had:0.0445527709802902 have:0.040123439940437856 they:0.038366532095810264 could:0.030148057918296795 would:0.02977530684848816 he:0.02737766263249356 has:0.024916534638591094 I:0.023239994859026284 been:0.021398565671599593 can:0.018371015821270573 as:0.01684745102715615 :0.1308226212782849 +and:0.18742286259202173 or:0.09979633594610503 that:0.05378681832616168 but:0.05113970257599045 not:0.04618029177191591 for:0.022682201448390123 But:0.0211395260896251 is:0.01918707889812733 be:0.01889903951808135 And:0.018357712692663904 it:0.01480871806736091 nor:0.014684457524038345 I:0.014515527062474208 of:0.014482404652150577 to:0.014300390273994814 even:0.01360174451195924 was:0.011230695793638864 you:0.011106118657013839 it,:0.010425954029009211 :0.34125241956927743 +men:0.008116610100077698 up:0.007518552280748622 in:0.0065203619351637074 time:0.006156387195040097 friends:0.005881458867929656 him:0.0058522047809032906 man:0.005489517264847566 home:0.0054825791578429935 wife:0.005371775893162101 city:0.005341522748219562 long:0.00492248461768838 made:0.004917374737516265 out:0.004905250561420999 father:0.004222491555144671 and:0.004196153844747529 it:0.004195005481128016 right:0.004109439488512243 house:0.004106939693228139 life:0.004037820676196709 :0.8976560691204818 +.:0.16115543878832045 J.:0.11511886295725607 A.:0.09419204061561266 W.:0.06477112652325746 C.:0.062199785006670866 Mrs.:0.0586783554218229 H.:0.04992790180758708 E.:0.037675565874979486 M.:0.03550598274334657 S.:0.031810844513191903 O.:0.02910541498000406 F.:0.02652656766041596 P.:0.02515373356206094 L.:0.02509975767011238 R.:0.024529298764957793 T.:0.024108966135284834 N.:0.019296317525038853 B.:0.015016764806027072 G.:0.014281222927439743 :0.08484605171661294 +it:0.1613017082865329 he:0.10843755913541599 I:0.0901205389789052 It:0.08571700412207416 that:0.0640763886394807 they:0.0561461594957916 which:0.04356263160965176 and:0.03784575145986532 we:0.03534539271728685 who:0.028412285915379924 she:0.025188455034005238 He:0.022260317429617836 1:0.016993238049210685 you:0.016507773607491397 one:0.014725732977764366 what:0.01244275171752972 This:0.010953008034551555 ho:0.007793207370774891 We:0.0076524267924916465 :0.15351766862617827 +the:0.22493765960102322 a:0.10252129801407606 of:0.06148526178825781 and:0.048946506546153755 in:0.025527934845916835 The:0.023403854188420392 for:0.02150123322696772 to:0.01944034493444289 Mr.:0.018345648874522013 tho:0.01713482507676631 his:0.015677818446452503 an:0.014917457066029446 that:0.014769972495553948 no:0.01231479789537503 with:0.011472016045266339 this:0.010950451701970865 at:0.010831228439569832 by:0.010599582855346564 :0.01055452399516958 :0.3236675839627189 +of:0.20269353263256712 in:0.1554853150365228 to:0.07694332554961192 and:0.07348003528771758 for:0.05607446004123458 at:0.04665806466759047 In:0.038207056736713055 by:0.024727401825344116 on:0.02089522733458159 with:0.01955402796196054 that:0.015556754812986327 as:0.015191024096016288 from:0.011174406016527055 is:0.009805236364461506 iu:0.008987726367899802 or:0.008329762843571082 against:0.008166878572863382 upon:0.007347877329324127 ot:0.00719918017642659 :0.19252270634608007 +made:0.0748225550319548 be:0.06098787448971614 taken:0.05934744402100186 it:0.056621512931915474 put:0.0528348192942989 set:0.04304694391247692 and:0.037445657004398364 came:0.033403385434445744 make:0.033045194462467425 come:0.02974920815799345 get:0.02931327716359272 kept:0.02895066744828052 them:0.028055953751750448 was:0.027206601800465302 got:0.024538944145234925 picked:0.023135744779809578 keep:0.02070551921034597 brought:0.020456655528358382 take:0.01842779340269886 :0.2969042480287942 +the:0.1688710197015527 of:0.15184690016327398 and:0.10063067164469398 by:0.08144940359434079 an:0.06125319869055963 to:0.05572577939177741 in:0.039921862474920106 for:0.03177215402480696 or:0.0224808339454361 from:0.019917879128811725 on:0.019901862630054255 with:0.01943792847846177 The:0.018784258605235932 that:0.01856512358651217 In:0.018095712023784537 at:0.012323098215625602 any:0.011733401118578167 a:0.011615464270723205 upon:0.011545326192574605 :0.12312812211827638 +a:0.15239497169467137 the:0.11586528588406643 of:0.09895631787380411 in:0.05191407944785144 and:0.050112492563136095 to:0.04045388607510967 an:0.03178559610315762 for:0.017732327764700066 his:0.015581152360399305 In:0.01531934136296972 as:0.014414176953655352 with:0.014352981526113775 on:0.01420908267838188 from:0.013196140147191794 was:0.01298373761516673 The:0.011939758855899282 that:0.011485266184279298 by:0.011112682125668964 :0.010319156465261253 :0.29487156631851585 +the:0.21196110216325734 of:0.09007947991124152 to:0.0494045857039621 and:0.044961225652543964 a:0.04093285293209737 in:0.031208697335031798 for:0.02569775907720898 that:0.01610377206487489 on:0.014193549109132085 at:0.013826307516621658 or:0.013472535660999008 tho:0.012771312256321159 as:0.01150564523639716 was:0.009760257721278526 :0.009697555077281726 his:0.009017927334865582 In:0.008697376174153996 be:0.008503300345228351 The:0.00832718587413917 :0.36887757285336364 +amount:0.10752285422569334 sum:0.07456034990476347 number:0.06559652701662748 kind:0.038215063916863266 piece:0.03704555418590065 out:0.03548527483415335 plenty:0.030492398481584165 kinds:0.02472507276508809 means:0.02254191136578977 lack:0.021815296186665285 loss:0.021384146271323148 sort:0.021004227991739857 line:0.020750841747993184 deal:0.020691863338286227 state:0.019593779574414095 use:0.019532491567505222 part:0.01949611331954856 series:0.01862347887819628 day:0.017784607651736895 :0.36213814677612766 +at:0.43881746730930843 At:0.1674215860798251 of:0.047923955650803304 By:0.042594995627580116 for:0.03934748958160623 that:0.0326027901985507 in:0.026545272637031957 to:0.025116374904279735 From:0.022846047743857782 and:0.022574425641186033 from:0.0190436450167124 About:0.014751006164662177 until:0.01022950426538819 on:0.010043239376427301 In:0.009328481285773555 during:0.009012961277265454 all:0.008479602192732236 after:0.00839217908430473 For:0.0076937809691527415 :0.036235194993551816 +the:0.11403343429147617 of:0.07311736833767817 and:0.0691838576865086 to:0.05117975401213448 in:0.04144552200710057 for:0.03573655168986364 that:0.02309170921252143 one:0.016885280377899218 by:0.01572504363178866 on:0.013479381618673805 a:0.013448584123988321 I:0.013195296579503255 be-:0.0130814583697368 :0.012951363476691296 In:0.012606020208050007 which:0.012515648283394942 in-:0.012262199040703812 there:0.011947828328442177 was:0.010422513114457698 :0.43269118560938696 +of:0.1103047872013835 to:0.08286861162810738 and:0.06104290876883053 the:0.056204628178518026 in:0.05476747069822563 a:0.047994415662943914 an:0.025158335807558156 on:0.02483575235981008 for:0.024187442142045976 or:0.020130076022282242 from:0.018962955622583336 by:0.017806274479184255 that:0.017791172379899273 in-:0.017635659862576526 :0.017621738371299763 with:0.0174669446468653 In:0.015575575236696792 this:0.014734874329693812 as:0.012552758782686645 :0.34135761781880886 +of:0.15456708117373727 to:0.08884343397395747 in:0.06802408962114263 about:0.06453056156351533 and:0.058598513215412554 at:0.056284872316437126 from:0.05127054693561942 for:0.048783720346036216 on:0.043036321730160754 by:0.028777239731677173 the:0.027510672683535888 with:0.024509205406682152 than:0.02291761536979003 within:0.02083839735786867 In:0.020755155713707504 only:0.020699055736136555 some:0.01918574904868939 that:0.018900924354357546 any:0.017528200474250917 :0.14343864324728545 +that:0.16832451653748762 and:0.16317551195275604 but:0.09202228048090219 as:0.06626898981545905 which:0.05056182452516285 if:0.034268175887251145 when:0.0327999336955599 where:0.02391654490512962 But:0.021638226096886436 because:0.020516735853829505 of:0.017875962661562897 And:0.017367123587138943 for:0.01715484095146282 If:0.016077584172624653 what:0.011042818726600803 though:0.010176208114312196 until:0.009969674033922531 while:0.008769541776912644 think:0.008148981878890557 :0.20892452434614764 +feet:0.0719208472326295 poles:0.05759396229176634 up:0.04010587224329879 chains:0.0385088170079141 entitled:0.029123404981740347 went:0.027388526271997813 came:0.025857650765910022 down:0.025633262313841977 him:0.025574415868859987 as:0.024916209858287616 and:0.023917753661251574 subject:0.02185045005331621 brought:0.02171367122116056 them:0.021644069985480026 it:0.02099405133651225 rods:0.019030517253069822 back:0.018922583019034468 go:0.01891708435510451 sent:0.018892511875840953 :0.44649433840298314 +of:0.18648500881735455 the:0.1590982309650015 and:0.1197073925698643 by:0.07277443032804855 many:0.05374393138436798 for:0.05068178037504349 are:0.03502288428506398 from:0.029278746722608162 all:0.023222353686711484 to:0.02144169491803765 with:0.019035819517138175 in:0.01807893665398042 on:0.017097900239749136 or:0.0138373149222472 some:0.01215796463558236 that:0.011624373159287084 as:0.011438485348453443 upon:0.010563110612696472 The:0.008927335660929913 :0.12478230519783413 +is:0.26273796269597727 are:0.1871378615485185 and:0.07784135893667915 Is:0.05081156255577664 was:0.04397605936148319 it:0.0310831259980193 not:0.026015773846437655 but:0.025226062375846865 am:0.022835468290937532 were:0.01648086018734018 It:0.012965292013146331 I:0.011118722115059343 he:0.011104131862764885 And:0.01015140151541312 be:0.010141422758027667 as:0.009464270020433454 just:0.00932063667554495 we:0.009109470903889147 la:0.009108536977714 :0.16237001936099082 +to:0.09510176257557867 and:0.0759782477397007 of:0.044882537993784916 the:0.0315600709783228 is:0.027469709441114137 in:0.024414242512733896 was:0.023644505786906175 con-:0.02072663556943141 will:0.0197525729259325 re-:0.019515757684955143 he:0.01933396268374066 I:0.019168528042120436 for:0.018758717550584603 be:0.018539065847662673 would:0.018528419960293203 that:0.017041510263127942 be-:0.016586329410835588 there:0.01648203693916975 not:0.016023551150036123 :0.45549183494396867 +at:0.1883025695424294 about:0.18076813298902433 of:0.10897640933254904 and:0.06743571594542416 to:0.038596284995676904 over:0.018755350626055146 from:0.017176947558887008 for:0.016743222010004027 than:0.014244260823497444 deg.:0.014155721811815144 or:0.013125372162276877 About:0.012398847959146544 the:0.01223124769728815 lots:0.01148077268864833 Township:0.01102699318561311 degrees:0.010947813596170572 as:0.01044612337909588 At:0.009321175899150318 with:0.008726427020717163 :0.23414061077653048 +the:0.33642166480911284 a:0.21058879670304578 of:0.06494880954812224 in:0.058347251577055365 no:0.04007599399305076 The:0.03295968978457411 and:0.031786662531244216 to:0.023619659611645877 by:0.023110069421162567 is:0.02177642466168324 its:0.02111560415976402 their:0.01908264661607896 his:0.014625388895869009 tho:0.01385046826477473 without:0.011945057767493801 In:0.011642861591358683 any:0.011035981579334239 had:0.011003035369688845 was:0.010900396813900553 :0.03016353630104016 +of:0.09129790931378902 the:0.07369883040827747 and:0.047842263382354346 in:0.04189055351593407 to:0.04045875475680249 a:0.03542341257202578 be:0.02020462051672066 for:0.01979292654746225 was:0.01760256398103379 at:0.017380150555488715 is:0.014984483003968216 with:0.014047653760730413 by:0.01374644383819499 :0.012670486581795598 In:0.01200961464556976 or:0.011563835749786333 from:0.011391516893522809 are:0.011273104484969465 that:0.010755276030689069 :0.4809655994608848 +to:0.22153224875571056 be:0.1712577055639913 was:0.08762560290722483 and:0.06413894109215108 been:0.04556338498025693 of:0.04081397379588672 is:0.040675404713365615 not:0.04020403335473659 were:0.02755608740477442 at:0.027431295816232458 are:0.019113974294047653 almost:0.018341732256090336 in:0.017079311794903535 being:0.016936876119669705 with:0.014793964025042869 it:0.01387469351973173 entirely:0.01368396778986766 or:0.012803096732678997 kept:0.011297308584839245 :0.09427639649879774 +of:0.05747226628393277 to:0.04285120745831214 and:0.04134242434596773 the:0.03806955835904754 New:0.02122949333543418 in:0.020279439525099526 :0.018879671499804927 a:0.014152666647187721 that:0.012482700274996315 from:0.01211519191743259 at:0.010815679700918134 which:0.009516206542438675 on:0.008291658001357496 as:0.007897153346709391 with:0.007412554139438625 In:0.006905264783441939 .:0.006078524898416738 by:0.005754999485710665 The:0.005240003876624693 :0.6522133355777282 +of:0.09129790931378902 the:0.07369883040827747 and:0.047842263382354346 in:0.04189055351593407 to:0.04045875475680249 a:0.03542341257202578 be:0.02020462051672066 for:0.01979292654746225 was:0.01760256398103379 at:0.017380150555488715 is:0.014984483003968216 with:0.014047653760730413 by:0.01374644383819499 :0.012670486581795598 In:0.01200961464556976 or:0.011563835749786333 from:0.011391516893522809 are:0.011273104484969465 that:0.010755276030689069 :0.4809655994608848 +a:0.19170833298390158 so:0.12281329702437697 the:0.10837885231025851 not:0.061799527410577065 and:0.04966522575006639 very:0.03497027493857223 Not:0.029434851641356632 that:0.02510762305224979 his:0.024801595710856328 has:0.024474489365819998 too:0.024352754185320034 have:0.022123305163194024 was:0.021941946848323266 The:0.021807580586370424 of:0.021722114348722475 as:0.02116930586909548 are:0.020519247194119912 be:0.02046463879920918 how:0.020014231260497832 :0.1317308055571119 +to:0.1529209316057251 would:0.14101913372880834 will:0.10573773145317099 at-:0.08197871060352312 and:0.06525436175193515 I:0.048470317299252906 not:0.042283001246780146 who:0.03219506396500293 may:0.022936849277236587 re-:0.021655011130322078 must:0.019191115393899904 can:0.018010788868632457 in-:0.017247458557421016 he:0.01653689026348823 1:0.016336504654715304 at¬:0.015618724836695571 his:0.015169471695512426 they:0.014541612084065705 should:0.01440815598492538 :0.13748816559888666 +made:0.0999812034390529 and:0.06680208263369662 caused:0.02435411478715239 shown:0.02379785223577525 up:0.023253655008919294 ed:0.02312002180398423 out:0.022293807888227747 taken:0.021988971765594088 done:0.02128782706813444 given:0.020283609421760777 paid:0.017098570970207227 owned:0.01708227903067019 that:0.01698438626809451 or:0.016145946252097726 him:0.015808363688274 followed:0.015366441255538056 appointed:0.015126279845513936 held:0.013990473525433292 approved:0.013949758860964168 :0.5102843542509091 +and:0.11220008092574593 he:0.11110837154180057 be:0.07659967964123782 had:0.06681832556413583 was:0.05266067720748696 He:0.04956894233653019 have:0.04948037152210919 who:0.04614173085902933 has:0.036371191381758206 she:0.03186691744487577 is:0.031145210053422714 I:0.029068476037719383 it:0.026075607907568146 they:0.020775985288861137 been:0.019639969819694125 were:0.019633151245517785 not:0.018011778052329296 are:0.01752118879148716 never:0.01661826447982819 :0.16769407989886223 +of:0.1546844877747317 and:0.06841321960349461 that:0.04706925991461138 the:0.045815874205374287 which:0.031128848737814116 to:0.02876007841787139 I:0.024979782033353753 by:0.022674849894739276 a:0.021901234844250012 at:0.020096293642446868 :0.015721121669962465 in:0.015187545232306556 he:0.014180211227040175 for:0.01324949924361912 1:0.011368004997527392 The:0.009925629541858855 with:0.009720107079445236 bill:0.008812124843295036 after:0.008761938743793388 :0.4265498883524643 +and:0.15563598083930374 fact:0.08711133430257853 so:0.058396464404789995 is:0.0579273243303576 know:0.03891059414000834 believe:0.03502353458944794 say:0.02956643029162141 was:0.0244460879735422 found:0.02198426212440242 but:0.021647450971207037 said:0.020296919668606115 think:0.019452871708646135 stated:0.01753336395586828 show:0.01665691069363014 of:0.016641414712527034 given:0.01606702283810136 see:0.013748934150150846 to:0.013612160583704404 ordered:0.013591989952554125 :0.32074894776895235 +in:0.12584751051357324 of:0.09759502479664728 the:0.07371839375246729 and:0.055651754291004454 for:0.04744536705298647 a:0.032925964492396737 to:0.03198260274187316 In:0.029652859996176964 was:0.017176340234656633 by:0.01637913782528117 are:0.015624529717594675 be:0.015359740034713075 from:0.015332737536474472 that:0.014587063309917358 is:0.012292937239714764 which:0.011956538642930331 were:0.011584038466634639 been:0.010892258706962473 with:0.010501774296364555 :0.3524934263516303 +it:0.18933079373983122 It:0.09555282981329422 as:0.0866880719218501 which:0.08464636001756828 that:0.07051112314641195 they:0.052690658552864006 there:0.037417756895181786 and:0.029058424718588206 he:0.0269797830604667 what:0.022289821189138203 who:0.01796366222381316 There:0.013579855598546447 you:0.012550455952835911 we:0.012277334597652966 this:0.010978958519068683 whatever:0.009752693743122305 case:0.009057349738014284 This:0.008398456526460612 one:0.008370438307689692 :0.20090517173760122 +to:0.13262891691998807 of:0.07929644458669219 for:0.05776291859574841 make:0.04397717613203907 found:0.04238507942736194 on:0.04083461949813331 have:0.032864696959618904 and:0.029525482795350153 made:0.02888354366044747 upon:0.027978036581238135 in:0.027005996173621906 avail:0.02370459299965116 find:0.023704414849003867 with:0.022915820616665552 by:0.022221815470504426 had:0.021495223601776997 was:0.018997504019969802 not:0.01639449889020454 be:0.01600162920609677 :0.2904215890158873 +the:0.16287760685838365 of:0.0883592780729449 to:0.0618987346693935 and:0.05423685233212741 in:0.030811253892523358 for:0.03057359609188714 be:0.025098115820027647 was:0.01826945122296575 is:0.01662970283289366 a:0.016448402520667066 or:0.01633619095301082 his:0.015510346299682681 their:0.015084175217362073 are:0.014656254371894712 been:0.013019491851438341 were:0.01267572744006931 that:0.012270302451397866 on:0.01131798809455223 :0.011150587255169986 :0.37177594175160794 +of:0.1399220293776981 and:0.13969599750663828 that:0.06411076182753225 for:0.04518735729929834 but:0.02311768139685016 in:0.02202702853020888 when:0.014759852046215464 which:0.013251807878795763 where:0.012749025052818466 as:0.01263699388606079 the:0.012629295328972114 to:0.011950761708203013 by:0.011742111454955784 if:0.010658528569591123 so:0.008679270050310994 with:0.008401763806679646 If:0.008296963756109142 this:0.0064881061530426025 ;:0.006382910997675945 :0.42631175337234317 +of:0.29829622762939867 to:0.09115615597984529 in:0.08782637855404496 and:0.06721616036589434 for:0.05626207661316687 by:0.05070075457025978 that:0.045957007010610305 on:0.039348272478102055 with:0.03584977148760416 In:0.030475425989359792 from:0.02835264101488412 upon:0.016324308969182497 is:0.014461987673839174 all:0.01411925789561959 was:0.011156550187426985 but:0.010686504360108762 after:0.009848134959462568 at:0.009688267367844183 as:0.008309686900328798 :0.07296442999301708 +the:0.7185407636240698 this:0.062043489680488006 tho:0.03890477025204249 The:0.020316478385058755 civilized:0.01907161469463195 whole:0.015105031371056218 tbe:0.01343898603737218 our:0.013061378173560668 a:0.012539377572724003 other:0.008612404675462388 that:0.007417512595862372 any:0.005655979361135934 Republican:0.005619057568092239 entire:0.004295826501266093 Democratic:0.0040578508987824165 great:0.00401166540881652 new:0.003896693792265517 of:0.0037387556069895835 such:0.002869332982024936 :0.03580303081829786 +of:0.24930206244798947 and:0.08996781260845428 to:0.07492048064346708 in:0.07372266739659573 that:0.05421066116321893 by:0.04712399947575325 for:0.04283742767597748 with:0.04176355876476829 from:0.039647438221311955 on:0.037370310208247964 all:0.03400072259240274 is:0.027007682310973044 In:0.018891306602234446 upon:0.018725928706165598 as:0.01658044081444461 at:0.014242209924955347 was:0.012514725759400557 over:0.011655060477540573 but:0.01084443585486918 :0.0836710683512295 +of:0.09194742469854064 in:0.06147838883732753 to:0.03890837935611991 and:0.036950165854606795 by:0.02719813179248612 with:0.025845043660449478 for:0.023420774494889246 from:0.016913986724747344 things:0.015590251069176065 on:0.014305008999997018 that:0.013710924943639817 those:0.01128005288658918 upon:0.010784135088929074 at:0.010708863132668604 In:0.010638851341536758 law:0.008395959087516378 after:0.007865381457785656 matter:0.007364634501350169 work:0.0072629547543662 :0.558430687317278 +the:0.1641320911864556 of:0.10963561514902358 to:0.05993589229439846 and:0.04208926764956589 in:0.019221005540290003 be:0.01918552126025394 for:0.017445399739083878 :0.014664063357480404 a:0.014069170585525209 was:0.013733291802570586 or:0.012468520814202116 his:0.011799879485955518 at:0.010696823819775148 by:0.010119018117454564 that:0.010046356341542622 is:0.009673674731749014 on:0.009564704884264759 their:0.009040151420537667 were:0.008959694247019914 :0.4325198575728511 +the:0.29639051135544603 other:0.05399305306058084 and:0.05156262280601918 different:0.044397262323248934 all:0.04245750296231837 of:0.04119236799254827 tho:0.030189522266908637 various:0.028917073052568906 some:0.027731714148823004 The:0.026852396948996753 many:0.025655489627408767 or:0.021654282195994953 tbe:0.017938075068706302 a:0.017678055647079586 several:0.017130740047526516 by:0.016663701118059555 every:0.01609611968510349 that:0.015977056064338507 any:0.015081004385871136 :0.1914414492424522 +hundred:0.015504410662386506 up:0.015329563329378917 in:0.013305895025404498 one:0.013191107771135862 ;:0.01307034272938657 each:0.008471722349018287 made:0.008451403129375954 it:0.008293331371574354 it,:0.0080115888372366 him:0.0075475640229421504 out:0.006953022572458598 and:0.006090708755309952 down:0.00607077743194733 them:0.006067406007021066 to:0.005888846565632696 right:0.005798754301486756 work:0.005783447688955515 life:0.005730313946276089 time:0.005649008096200395 :0.8337907854068719 +years,:0.011244219846488938 time:0.008882161274617746 in:0.008543577446961203 ;:0.008176865856642837 porous:0.00709468490060814 hundred:0.006522156100992782 it,:0.006442646144711248 States,:0.005873955746906458 manner:0.005636242513613943 country,:0.005479624196664403 them,:0.005380555783124355 ,:0.0053213282340232775 him,:0.005116465794074653 time,:0.005012953480321698 city,:0.004996484782641075 and:0.0046864187845840274 dollars:0.004669833782541253 year,:0.00454859238968153 of:0.0044772931635083 :0.8808939397772921 +the:0.4113138676298786 of:0.17711116596896026 for:0.04660559259998219 and:0.039107215425170955 to:0.027594183031907426 other:0.0249050248424795 by:0.023689573804664986 The:0.020929747087455326 at:0.020467972511524563 all:0.020381818492296394 that:0.020205392816753792 or:0.018330889088735616 no:0.017368036910994984 tho:0.017280533090878042 any:0.016745961073263756 in:0.015288178594635951 a:0.012005072035997344 with:0.011667356319878214 which:0.008708087216658085 :0.049294331457884005 +to:0.6071445688708521 will:0.07935669001456234 and:0.05815131492659505 would:0.044890729021088455 not:0.02965629146316419 shall:0.01582268569844253 should:0.014414809665455199 may:0.012875878522267762 can:0.012383998851203393 To:0.012287824766541295 who:0.011488113584018621 could:0.00967195548949124 must:0.009301322227854287 they:0.007911320207810858 I:0.006952911514126607 which:0.006378470216121496 then:0.006079025966645828 we:0.005750625562175458 might:0.005436263384388035 :0.043045200047195226 +to:0.31019601080253456 will:0.13793678134185958 would:0.07774183426288846 may:0.07078528459128908 should:0.05127128910568003 shall:0.04901700088221223 not:0.04594340671139167 must:0.03257846389794495 can:0.03230794200897745 could:0.02086203652199685 cannot:0.017984019065961077 and:0.017474170306863105 might:0.013535476571922157 it:0.006941357203389574 never:0.005186754057084183 that:0.004968373522249409 also:0.0034185027334872305 only:0.0032209125075107173 soon:0.003102154139878731 :0.09452822976487903 +that:0.27435050474302997 when:0.0936504634999025 and:0.07514715140531862 which:0.0637390162622278 as:0.05498557831961495 if:0.0396753277843658 where:0.03847508245584794 but:0.0374686916236321 said:0.03139388692667523 until:0.01900278818390128 while:0.017895471398021518 because:0.017321708662493104 When:0.015948059672308543 time:0.015167154002251356 what:0.013119112870121706 before:0.012734910158522643 If:0.012620547493008344 whom:0.011774683928828633 though:0.010411169831012573 :0.14411869077891537 +one:0.1028303141280697 part:0.05963429477052991 out:0.04766456937681193 some:0.031418679026461914 members:0.030764490253327767 side:0.029940657362655835 portion:0.022063658796890564 office:0.020457735219956013 member:0.019726706386316174 end:0.019666887540649894 tion:0.018667441728710307 parts:0.016814747270460957 people:0.014112771422418794 all:0.014072739582212475 any:0.013183573287639892 One:0.013083578354183906 that:0.013024335602903442 account:0.012482348155001894 many:0.012077825070275192 :0.48731264666452345 +of:0.37849803418761 in:0.08863609294827547 and:0.07057681375890232 with:0.061476816349752474 for:0.054737353307755816 all:0.0391627996221549 from:0.028162210990379157 are:0.02635151245669134 by:0.024378996441883367 is:0.023657582555242113 to:0.022063386107358758 In:0.021121103879363584 was:0.01622035274490627 without:0.012969134855276366 as:0.012467953422535781 some:0.012025676106770519 on:0.01072862531760925 the:0.009563241847918236 be:0.009526149271292876 :0.07667616382832135 +two:0.1092043043647028 four:0.0758939617923712 five:0.07466247853755696 three:0.07112710865884728 many:0.06824146896461615 ten:0.05468968251581775 twenty:0.05336623977619555 thirty:0.043066041152291464 six:0.04180212878243945 of:0.0380451221548003 few:0.03785891021745444 several:0.03410792298007093 eight:0.026326447217861072 seven:0.024470235246002187 hundred:0.021288896505107718 for:0.020649872436135013 fifty:0.02058176233546322 forty:0.020213329456496815 all:0.019052557238888077 :0.1443515296668816 +:0.08222627389976597 .:0.05339720196054574 it.:0.01241135618296756 -:0.011360190890211057 them.:0.009471543882135459 sale.:0.007620332281772547 of:0.00686623981827747 follows::0.006072405780085688 W.:0.00534484810472607 time.:0.005126915838359536 ::0.005100289111718479 A.:0.00447202707689735 city.:0.004325348693238726 Mr.:0.003943743544308532 him.:0.0038747408709304543 year.:0.003852214139378462 J.:0.003783705314453643 M.:0.0037590375456916575 day.:0.003660359023111139 :0.7623312260414244 +the:0.11913527363047985 and:0.1097737959983531 of:0.07509035649905169 to:0.040659111644650574 a:0.029191663663722153 in:0.021757496855600036 be:0.020778360745529058 was:0.01937347296158103 or:0.017293417445688467 at:0.01628246471210435 is:0.014472915450051364 by:0.011491118293045293 :0.010736250225927469 with:0.0102004971861819 are:0.010039381550390768 his:0.009940943796867477 The:0.009577481183529387 from:0.009569998846129534 for:0.009077865108966583 :0.43455813420214995 +let:0.2393274644111359 to:0.15206907137338252 Let:0.11415916340841399 do:0.03163347841614252 for:0.031043688198345604 of:0.030079910816921043 with:0.029586485859495304 made:0.027505601974555923 have:0.02055228027480358 did:0.018498807784665644 make:0.01671244183962942 told:0.012261850530919431 help:0.011754860251019794 and:0.009899932497658949 asked:0.00962281821282474 had:0.0094909083194677 upon:0.008840303854963946 that:0.008268128563590486 not:0.007328537498471824 :0.2103642659135917 +have:0.1294400207820604 has:0.11537479946707892 had:0.10494005924071863 be:0.09899774130481047 and:0.0792075517742811 was:0.07382193615862737 been:0.055439588725055285 he:0.03970782648502672 is:0.03822500684344111 who:0.031231988888028608 or:0.03062172402253026 not:0.026095321074794686 were:0.021269776571696205 having:0.020054505099685774 are:0.018022819650047362 never:0.01658968499862708 well:0.014515501420093358 they:0.012778841243589694 also:0.012493472287977078 :0.06017183396182989 +and:0.09379053924927042 to:0.0742855066818078 of:0.06739630294563433 the:0.059809119354988456 in:0.027631208092333288 be-:0.027293809025147272 that:0.021435074971841002 was:0.020009129418631 for:0.018363033111366858 two:0.01705484412802581 is:0.016963649837169994 or:0.01689964597852544 be:0.015590573410395322 a:0.015001108975733878 which:0.01499881791074982 :0.013443348992596298 at:0.012448389513759608 by:0.01164637080842974 con-:0.01120718746514304 :0.44373234012845064 +to:0.6171880987189933 will:0.05613349547312395 and:0.04289691408838678 of:0.031147157311798013 would:0.0213983351713456 not:0.02062192484506034 the:0.02014732824975611 his:0.019701445406383522 shall:0.016430359342751607 can:0.015935328871036093 by:0.015467764877731792 could:0.014231505131295567 a:0.011582340676439273 in:0.010569386189914926 should:0.010099903776875736 may:0.008541602096887112 or:0.00833748825095007 their:0.00810795744837501 to-:0.006527109826110232 :0.043934554246785 +the:0.16807735899698817 of:0.10541662057906837 and:0.05138367848570702 a:0.04141865232648221 to:0.0385989743764065 in:0.026264864977736738 was:0.019530675665220657 his:0.018900421021236905 be:0.017373825006196972 their:0.015767721170721456 for:0.01557246589796783 with:0.014071419046630446 is:0.012922913111931644 at:0.012690452250034052 are:0.010702713108721902 .:0.010158075558988393 Mr.:0.009672788574483367 tho:0.009612591781990074 were:0.009549306361446321 :0.391314481702041 +the:0.11457471280005405 and:0.07457836402133261 of:0.04805618032764047 be:0.03531231622608242 is:0.03363092111948174 was:0.030585415747457382 to:0.028103070262451804 in:0.02222175476967215 he:0.019562115853484215 I:0.019069755180065564 it:0.018702464825489755 his:0.01839121654586521 that:0.017751817331592486 this:0.015339295825471232 for:0.015234726636414984 or:0.014918876379638757 dis-:0.014674789264109298 a:0.014077343516603575 It:0.013660981895219033 :0.4305538814718733 +and:0.06821894961595149 arrived:0.02475865105904218 Western:0.01954192938854455 that:0.01856676124354363 the:0.014946395543724029 sold:0.014659413941693804 held:0.011149209017263021 2:0.010992568828444819 or:0.010831416664839806 men:0.010816552512272133 was:0.01078113976194219 for:0.01046958486635015 sale:0.01027719397564632 closing:0.010130750206809527 one:0.010059474580398936 it:0.01004709183534268 home:0.0100456157086745 city:0.009786582628851048 died:0.009439251309901909 :0.7034814673107633 +the:0.3395309697284479 and:0.13272756146937076 a:0.055783567177868275 in:0.036671144716881585 The:0.0347881564284085 is:0.029517896717910334 was:0.02934516947911284 that:0.02741668490280657 of:0.02388044497549941 by:0.02308050783959251 tho:0.02252959213830035 as:0.02064830285610014 or:0.01746781326282693 are:0.015382108299251317 were:0.01297644307027557 In:0.010707726409090552 tbe:0.009313666687412604 with:0.009234029947501252 than:0.0091709828336882 :0.1388272310596544 +is:0.05822519897287478 as:0.051416117008528585 was:0.050210423040118225 and:0.048843926130730624 able:0.039378770794667325 order:0.03592948668616645 have:0.035439223414514 unable:0.03371570998614489 had:0.03367636228208997 him:0.028665424132516396 time:0.028314952987468826 not:0.02743647850241695 enough:0.025194518964253825 ready:0.0214881443788294 necessary:0.0214496021330706 refused:0.021417116408756428 them:0.019146196461713724 power:0.018184628536592872 seemed:0.01776002077896487 :0.38310769839958125 +and:0.049778097312246854 to:0.012653649187683382 it:0.011087574743801797 :0.009247600813750667 up:0.008567768698092044 them:0.00836996275699845 1:0.0077159097297532925 .:0.007557666160246795 as:0.0067494947856581175 he:0.006657726934741747 I:0.006410934276304906 of:0.006171220527500574 the:0.006082179157325309 feet:0.005870021324552836 be:0.005842949997871448 :0.005362232037047428 two:0.005147389141427051 that:0.004810615222481342 not:0.00467655792755258 :0.8202404492649633 +the:0.20737669094718011 and:0.18089081812555496 of:0.17099839532445388 with:0.06860577009522373 by:0.05991945406524494 or:0.03726933887518425 in:0.028108672819923828 their:0.02182773552726345 for:0.02078832974823621 as:0.015419644020624996 to:0.015237368754008301 all:0.013777226261790286 The:0.013427240559359531 public:0.012363742342829727 no:0.012036214264523537 tho:0.01097111407366175 its:0.008583818228424066 an:0.008212602796633014 any:0.008205670902353355 :0.08498015226752605 +the:0.11919516938815296 of:0.07230453158552728 and:0.05781056740443249 a:0.043018564803886335 to:0.031305092790907506 in:0.020848713353460488 at:0.014270110001066288 .:0.012526810245749479 :0.012413283442322082 for:0.011719122709941797 by:0.010808400946589808 or:0.010404172990115616 The:0.01003576004804544 with:0.009811868184449042 tho:0.009295902015355835 was:0.008924239095331684 that:0.008672304223433876 is:0.0085591147338948 be:0.008335143826716943 :0.5187411282106204 +the:0.09179498265972585 of:0.057089230781494305 and:0.056972407485072665 was:0.025333218386916757 .:0.024070559725061252 a:0.020748131838637926 to:0.01904334147267059 be:0.01797197175571206 is:0.013404045556749195 at:0.012413627360088289 in:0.011397804921809003 Miss:0.011348747494624894 for:0.011082580010194715 were:0.01095601944923485 Mrs.:0.010136519247085694 :0.009868020669285424 are:0.009639753599212986 Mr.:0.009299301541422006 his:0.00911699272830413 :0.5673127433166975 +and:0.18031447138069856 or:0.11298213377167762 of:0.11053419413210015 in:0.06229197335889085 about:0.0468649097166354 hundred:0.040720950011606465 within:0.04064295326367259 the:0.039480010046305566 to:0.03623967335085257 for:0.034228210536116854 section:0.032365653124160565 than:0.02144514731605131 a:0.020337034395479264 with:0.017565588457732723 least:0.016464241724239537 range:0.015690820180499585 In:0.015032999859432943 over:0.01482691686436384 by:0.013885523532720576 :0.12708659497676303 +and:0.2141278822931176 to:0.13237369070924235 of:0.07955356766307142 be:0.06476604517774322 was:0.053595854613974835 is:0.046470128096739734 or:0.04551457686665276 not:0.04133758083864155 by:0.03503241714011811 the:0.027696258335379784 been:0.02417150065633762 are:0.02377533528721025 a:0.01677799517468115 were:0.015898091586360033 had:0.01514118515294142 with:0.013588756589793813 have:0.013166367285703454 he:0.011702403222948245 as:0.01162383962463943 :0.11268652368470325 +of:0.3404222871563104 to:0.10041053682042114 in:0.06849745080020891 for:0.05234948849835801 by:0.04902777752896442 that:0.04728594160626957 with:0.043981524550222834 and:0.037949760153196586 from:0.028387343668886168 on:0.02242258288881394 as:0.0200980274849815 all:0.017399612712750645 at:0.017159689183889507 upon:0.014776023359977535 In:0.014746569063134894 is:0.013318319184296802 under:0.011157102430519225 which:0.010016030916170387 was:0.007055300869065872 :0.08253863112356162 +on:0.19709967973890377 of:0.17475769710479727 in:0.10653753795420527 at:0.05605389314504545 to:0.05505855680138576 from:0.04421545690731338 In:0.0407252720016951 On:0.04018740774415644 and:0.03315941548242292 that:0.02698256662678146 by:0.023950031065887497 for:0.023241138459622723 upon:0.020181836849632442 with:0.017194904532537126 is:0.013177942509670986 do:0.011655527709137846 From:0.01138882441463245 At:0.011299570854429624 was:0.008692608537960842 :0.08344013155978164 +the:0.3971315278430143 a:0.10623587249516141 to:0.06155033023355619 and:0.056741305393794954 this:0.0543415433863278 of:0.04574945891441202 The:0.027885110998760863 tho:0.01891933269842282 an:0.017971917821488 in:0.015388200486504683 his:0.013875178288505782 that:0.013842294141932289 our:0.012736610445840705 great:0.011520294570779773 their:0.011046263764335764 such:0.009384104831686273 its:0.007715279045229713 tbe:0.007672014714587806 new:0.007063781876679685 :0.10222957804897914 +and:0.09631219532671687 was:0.03513566928966104 held:0.02987715681559008 Beginning:0.024332169066967536 is:0.023122938489353394 look:0.022074108253454683 arrived:0.021820518428646088 that:0.021226918252779888 interest:0.02006974641058921 thereon:0.01971421054267379 made:0.019401567074562896 are:0.019271449916013022 up:0.01806602795372081 him:0.01678700722897829 be:0.016375054451444982 but:0.01586396852970274 out:0.015503094089883073 or:0.013721423267833084 not:0.012734170433403743 :0.5375906061780248 +and:0.06035034687401786 of:0.017490856434041836 a:0.016818998313864228 to:0.015792232962574447 the:0.01495531807505731 :0.008424315544584648 who:0.007870934400500873 in:0.007860281990481053 was:0.006887434042172673 .:0.005806774327651262 will:0.005790949676663632 it:0.005689553200774952 he:0.005593306291814625 I:0.00538916569753098 is:0.0050383434506237465 1:0.005038021991257933 lot:0.004938702749951529 It:0.004523718091332628 -:0.004416720396278073 :0.7903240254888257 +the:0.17027190784407714 of:0.10585557835912704 and:0.07355927771906935 to:0.05486905984958157 a:0.04543746377447453 in:0.03128555052933153 be:0.028704485173100775 was:0.02350529800142253 is:0.02215549335554494 for:0.02077556258358175 his:0.01804639098945333 or:0.016335100594594944 their:0.015847999621030492 at:0.015526727957625254 been:0.011815834631173878 are:0.01139058447814694 this:0.010362020528084328 tho:0.01035635773045807 its:0.01000473355720393 :0.30289457272291764 +the:0.11919516938815296 of:0.07230453158552728 and:0.05781056740443249 a:0.043018564803886335 to:0.031305092790907506 in:0.020848713353460488 at:0.014270110001066288 .:0.012526810245749479 :0.012413283442322082 for:0.011719122709941797 by:0.010808400946589808 or:0.010404172990115616 The:0.01003576004804544 with:0.009811868184449042 tho:0.009295902015355835 was:0.008924239095331684 that:0.008672304223433876 is:0.0085591147338948 be:0.008335143826716943 :0.5187411282106204 +of:0.3516331867801583 to:0.07951994996365336 for:0.0735118742815031 all:0.07087612387299079 and:0.06746707790817673 that:0.06618845028232545 in:0.04955527040128586 by:0.04828626820220719 with:0.020052865147131636 from:0.01787498613726735 as:0.012438586785481324 on:0.011936480680267047 among:0.011879801550401392 In:0.0109712501720619 which:0.010635881755781677 but:0.008759374461126112 when:0.00834719831553456 upon:0.007672786010641377 than:0.007591883788135303 :0.0638007035038695 +the:0.16459883030594186 and:0.06521086320292585 of:0.06224826159913675 in:0.031882991607480086 to:0.03179953301949017 be:0.027581340055422305 for:0.026849579094841557 their:0.025387101325676002 his:0.023738789968354827 that:0.019146596756646043 a:0.01774961193584377 he:0.016372366964157167 or:0.014184354945703734 was:0.01369376196970306 much:0.012511315013064059 re-:0.01126876140433352 our:0.011222984960224213 been:0.011005472394744592 more:0.010711117033596219 :0.4018363664427142 +of:0.09129790931378902 the:0.07369883040827747 and:0.047842263382354346 in:0.04189055351593407 to:0.04045875475680249 a:0.03542341257202578 be:0.02020462051672066 for:0.01979292654746225 was:0.01760256398103379 at:0.017380150555488715 is:0.014984483003968216 with:0.014047653760730413 by:0.01374644383819499 :0.012670486581795598 In:0.01200961464556976 or:0.011563835749786333 from:0.011391516893522809 are:0.011273104484969465 that:0.010755276030689069 :0.4809655994608848 +a:0.4807058733533444 the:0.2072606545456733 one:0.03363004366883546 A:0.017730263376064537 The:0.016034840047506313 his:0.014940984888708144 to:0.01233678062515793 this:0.011784006062645768 tho:0.010198359411030493 and:0.008332410036371498 any:0.008298579648766707 three:0.007908885279993016 per:0.007246286151083558 two:0.006664844322671567 her:0.006597881456443373 little:0.005769678040288183 whole:0.005517396394773602 of:0.005429332796432841 that:0.005391650181120153 :0.12722124971308912 +and:0.0898983534307284 recorded:0.03839146221566241 is:0.03668562203905007 that:0.03431669392481337 was:0.03241998013206866 are:0.027724572492448484 distributed:0.02179882077106108 but:0.01800596869166509 divided:0.01768723397643896 known:0.017021756068469524 be:0.016884730073410792 it:0.015315420617176249 were:0.014487761080509552 out:0.014292757089545834 up:0.014183216524911337 work:0.013587985847310425 them:0.013360650140025847 all:0.013336002124362483 him:0.011966071585439919 :0.5376349411749015 +in:0.14169293326431284 of:0.0927991801421038 and:0.08059244545183464 to:0.06586999555005901 for:0.04350609599198813 In:0.04053174801099576 that:0.024107163630653742 the:0.023154244784392073 after:0.017053846189404507 by:0.015583134359706676 which:0.012645616862871242 with:0.012461069829756312 from:0.012100793767328224 at:0.011400283619768473 :0.010610723455530456 not:0.00929111651273182 or:0.008362074209996845 State:0.006901382536431766 After:0.006872234504982792 :0.36346391732515093 +it:0.24821867953307553 It:0.12491417828142069 there:0.069306522105283 he:0.059799171357782996 that:0.05448913452171614 they:0.04308045581579138 which:0.03975166646880763 and:0.028391784481365753 I:0.017785057885554047 what:0.015014723986643873 who:0.014813518986538871 she:0.012277284734011025 There:0.012075841823057449 This:0.011660321731650861 as:0.011471599182449319 this:0.010417679117785841 work:0.008583289274340197 He:0.00780328791147001 we:0.007024892215396919 :0.20212091058585846 +the:0.13758371847043735 of:0.08126231297889798 a:0.04835240661334856 to:0.03996161899422211 in:0.03603320280674478 any:0.034005415697271016 for:0.03290981553838409 or:0.031193260325817707 and:0.028804775836003934 either:0.02343738739108748 no:0.021123155370424168 be:0.016843477735894497 their:0.016601367834784518 such:0.015397861219013374 said:0.015232309787862667 by:0.013689181478574652 with:0.013615736362004947 other:0.013335896604116772 his:0.012177012617782089 :0.3674400863373273 +the:0.32474599754429134 and:0.06130052122370417 of:0.040371411382914044 in:0.03115652934157804 a:0.029905575920059546 The:0.02713629763214079 tho:0.022469631522724076 on:0.016598141742921423 that:0.01587550051498691 to:0.01474563335268959 or:0.012994002381152196 tbe:0.011652431551588877 :0.011637204961487785 any:0.010685262681667765 by:0.010082137257473145 no:0.008898799612007475 In:0.008462174370454328 other:0.008219204311363092 for:0.007937685894563895 :0.32412585680023154 +out:0.060162407461911045 up:0.05039160017805301 him:0.037714023597083736 back:0.03327688354702196 down:0.029084136874774128 step:0.025390496335773765 made:0.023296312314698777 was:0.023206258702715588 them:0.023023029380860992 and:0.0221488547939169 taken:0.02151791107879689 feet:0.02086023186286955 much:0.01826190062099178 one:0.017463334868018956 ing:0.016466941154092724 right:0.01637482858159256 it:0.015341397084915736 is:0.014208853404764854 way:0.014034117428602746 :0.5167764807285443 +that:0.22029007478891013 and:0.11595632916742143 which:0.08373197034374147 as:0.06294661414561628 but:0.04719744093762049 if:0.043338170390141637 when:0.03519102695744638 what:0.03170179035989103 for:0.0311280035752358 where:0.026403994101980573 time:0.02045517683987667 because:0.018526115220540117 If:0.017434136245316503 whom:0.017385461957019475 until:0.015026471304227679 after:0.014172295101912835 said:0.014158798874832606 And:0.013342267063951578 But:0.011967454404482202 :0.15864640821983514 +of:0.09129790931378902 the:0.07369883040827747 and:0.047842263382354346 in:0.04189055351593407 to:0.04045875475680249 a:0.03542341257202578 be:0.02020462051672066 for:0.01979292654746225 was:0.01760256398103379 at:0.017380150555488715 is:0.014984483003968216 with:0.014047653760730413 by:0.01374644383819499 :0.012670486581795598 In:0.01200961464556976 or:0.011563835749786333 from:0.011391516893522809 are:0.011273104484969465 that:0.010755276030689069 :0.4809655994608848 +the:0.4407957798315563 of:0.16423979897879343 in:0.062051735763527856 and:0.030418429958349875 The:0.02958981928406388 for:0.028799083841103426 tho:0.020427743121380956 his:0.01840377406748531 all:0.01679303048225578 In:0.01672099022919649 at:0.01557314326135465 from:0.01435484993192784 its:0.014183244684813419 a:0.01113424444396709 an:0.010406263225529268 tbe:0.010017679347068244 our:0.009443969455809744 their:0.009370672857713142 with:0.008873880835559017 :0.0674018663985443 +of:0.13084814232797154 in:0.0740836656586379 as:0.0625527229231004 with:0.059577596335708534 to:0.058433603729754965 is:0.05551580107464621 and:0.04946529489577619 was:0.04264000753602388 for:0.04009673021586375 by:0.037684080471064085 be:0.023941707008899252 on:0.02316059851167503 at:0.022644769441950232 such:0.019950936521181326 that:0.017856095877642635 like:0.017386655618315594 In:0.016902219705578994 from:0.016046571451088905 not:0.01205910100844263 :0.21815369968667797 +of:0.16578284308627145 to:0.1010844258839019 for:0.09487534942760395 in:0.09432914060094734 at:0.08289858405828697 and:0.060143652807167165 on:0.04517394381220138 In:0.03293949142518298 by:0.030301546906646517 during:0.025062319154316882 with:0.02191194246447741 that:0.017530797109485574 do:0.016506734052821135 until:0.01580002111095694 after:0.01281297184281103 before:0.012758816360102456 from:0.012734525131491939 as:0.011597195401153311 At:0.011466643027386392 :0.1332890563367873 +and:0.03868242960999506 as:0.031124813427855922 went:0.02352509775927722 him:0.02196555539050794 them:0.018760608639018784 up:0.017985449426794205 is:0.017894175620344187 go:0.017174904667157563 able:0.016756848979943888 going:0.014481672239490295 it:0.014128375989346808 was:0.013277058274565138 time:0.013249953793837373 not:0.012469887553778763 began:0.012465717758716884 way:0.012105610030480113 back:0.012090864562211581 right:0.011941707822828511 amounted:0.011564315359310868 :0.667354953094539 +of:0.3222301720722049 in:0.13028394884370048 to:0.07483307163493944 In:0.04007050652378976 that:0.03625279610694092 for:0.035526800292580756 by:0.032351511242523286 and:0.03130478063956306 on:0.030381343395959676 with:0.027570482988076805 from:0.026624980699238167 at:0.026441504951881713 as:0.012554591280306577 upon:0.011703246759675802 all:0.009488555167831413 but:0.009184562114092546 do:0.008508308745653134 which:0.007343062797590127 is:0.00716475554226877 :0.11918101820118267 +and:0.1984534297322989 was:0.04576770262944191 is:0.040703980966643794 not:0.03821129343482105 are:0.033543410098887554 or:0.03234828253896138 be:0.022883174239772926 of:0.021056978974538836 that:0.02079036040150504 do:0.019903861658221205 been:0.019451467260947947 were:0.0179643624142679 but:0.017948514346651095 for:0.013091474325570998 to:0.012843779997334534 it:0.01214655304193847 as:0.011791449800863605 had:0.010878539492315513 has:0.010732444773863384 :0.39848893987115397 +will:0.21803636473782675 to:0.18090370847682377 would:0.07817953106705573 and:0.0571518048663016 not:0.050508001306020775 shall:0.049662095234279766 may:0.04211376513775434 a:0.03418533758660052 must:0.028941817859635392 more:0.025872193119849164 should:0.023833753391126637 the:0.02183896686114128 was:0.014904179705081006 have:0.014523079480785885 can:0.014029438257623508 has:0.013142094984310088 had:0.01309050009740984 is:0.012353292842700146 which:0.01164684338103982 :0.09408323160663397 +one:0.04317775557964823 day:0.020693989949568774 man:0.020590531085312464 two:0.020187585809127745 lot:0.015631732096652067 on:0.014815167063712992 owner:0.012576402147701124 action:0.012271282846609147 men:0.012235869369299605 person:0.012166988009661197 three:0.011955222927299874 law:0.010942188214790169 and:0.010890753894972925 child:0.010326840413652554 city:0.01001018597717875 to:0.009760514523332429 sale:0.009558406588919849 more:0.00905932338006081 year:0.008982324285600944 :0.7231669358368983 +a:0.40019426740712755 the:0.1894538930668299 his:0.0663985645400733 our:0.02452040975568327 large:0.02331312410558028 The:0.01950650432832019 great:0.018808746749965112 their:0.0181585209554352 her:0.017238941412336138 A:0.015589065250489456 tho:0.013990608426970424 good:0.013771668593484694 and:0.012736221712914332 this:0.012477104329761962 one:0.01146392566657759 my:0.011453142902237383 of:0.009419897134486042 Democratic:0.008891229717565678 your:0.008446830797673395 :0.10316733314648809 +the:0.13987575842963337 of:0.11852346070415384 and:0.0963072448019898 in:0.06789983058743904 a:0.03969157867574745 was:0.034859941870910544 is:0.027535153340949064 are:0.023837637965263416 be:0.022833671015685297 for:0.02238714373648263 by:0.021037585439734795 to:0.01742709704260978 In:0.01710682232197593 been:0.01680336484265405 from:0.016507157063768207 were:0.01546416326081484 or:0.014614228560089978 not:0.01340921522630585 as:0.010338408172987403 :0.26254053694080476 +.:0.08311021727500992 Mr.:0.047324931386479106 W.:0.04568603122286864 A.:0.04017692626717264 H.:0.038373211999766954 Mrs.:0.03735096619162151 J.:0.03343295024118272 C.:0.029611571030354944 Dr.:0.027607245377899773 John:0.02641677011877149 :0.024486812031582043 E.:0.02101367976114311 F.:0.01989742582748228 M.:0.019428077525026323 and:0.019144572239130526 L.:0.01900221057221259 T.:0.01663774627729093 B.:0.015239547565961496 N.:0.015165801982622611 :0.4198933051064204 +may:0.22299679738406022 to:0.17963186159109262 will:0.09799419923814179 would:0.09033038908631257 shall:0.08178989127701077 should:0.0634189763036781 not:0.02575080826142836 must:0.024626850723729634 might:0.020247088805731252 can:0.019184917129093197 could:0.013132393777167142 you:0.011607461538221847 and:0.01148070217044112 they:0.010745113423294027 it:0.008147990671753792 we:0.005569540326652321 cannot:0.005558875329876226 I:0.005453508565774104 or:0.0052367450137443365 :0.09609588938279659 +the:0.23823664649255377 two:0.11200118292713955 several:0.07692459517914796 other:0.07061495381236006 various:0.045659918587393336 three:0.04298184411269618 of:0.036742839552158395 their:0.026109446764439145 respective:0.02292497629617858 a:0.020929410310092364 five:0.019415628923916337 many:0.017841878351771718 The:0.017157864511061327 our:0.01668106007486581 these:0.01649895699774333 different:0.014534479358256988 few:0.014519994411661838 tho:0.014492331212045921 his:0.013974924227215848 :0.16075706789730151 +to:0.3629090256226845 not:0.08307042637352224 and:0.07371921258345845 I:0.07050295191819173 will:0.04743682217405008 they:0.04698799980691572 we:0.04462577843028354 would:0.02800659057487588 who:0.020948600768768404 They:0.016465795947477876 We:0.014770608783927738 shall:0.013669894681080156 must:0.013638294483836667 may:0.013490537874387873 which:0.012054144090559606 should:0.011575328337452203 then:0.009830995285127334 never:0.009558746452548008 you:0.009441175486205248 :0.09629707032464671 +of:0.09129790931378902 the:0.07369883040827747 and:0.047842263382354346 in:0.04189055351593407 to:0.04045875475680249 a:0.03542341257202578 be:0.02020462051672066 for:0.01979292654746225 was:0.01760256398103379 at:0.017380150555488715 is:0.014984483003968216 with:0.014047653760730413 by:0.01374644383819499 :0.012670486581795598 In:0.01200961464556976 or:0.011563835749786333 from:0.011391516893522809 are:0.011273104484969465 that:0.010755276030689069 :0.4809655994608848 +of:0.10995801523175071 to:0.08116887212863061 no:0.07493727448699523 take:0.06843015360130614 took:0.05248715060381734 and:0.05067086888371393 not:0.045116114828340464 taking:0.041829762025208286 for:0.03919639117823088 the:0.03550129366555008 a:0.0333800756501899 with:0.032687538501976005 his:0.03061286604497333 her:0.025148668624501463 my:0.024246254050043194 be:0.023159125682573792 taken:0.02184564891727449 is:0.021703395595142703 was:0.021402662368229894 :0.16551786793155157 +part:0.22345498698323848 survey:0.09273201080623189 holder:0.07392264887068738 payment:0.05919444342775854 one:0.04169771258373486 date:0.031083559813052164 plat:0.02530239421744908 conviction:0.01913406051029993 sale:0.017075122543262503 day:0.014125330179751922 pursuance:0.013645297362701866 side:0.013525290344314609 corner:0.012627147558511652 that:0.01249431411334419 value:0.012044795052533176 provisions:0.011892865458101505 foreclosure:0.010681541318039571 parts:0.010492784367500344 portion:0.010471117240678863 :0.29340257724880753 +the:0.04638264404876475 and:0.040084743791030164 :0.027137351803658526 that:0.021734686903279635 of:0.020955341958313948 to:0.016169640896519046 The:0.012590905515266256 it.:0.009210224236383948 which:0.0067101727124385556 .:0.006672442285404575 as:0.0064444013189562666 -:0.006270508696542579 he:0.0047918179797826164 for:0.0044145874072498885 by:0.004162056374489458 :0.0041353048848595045 them.:0.003939648200655277 it:0.0038678746799625887 ::0.0036909274666719898 :0.7496347188397704 +the:0.19286398588140036 of:0.12718001000167578 and:0.10180002578599545 to:0.09308253523929176 a:0.0683797429929049 The:0.03753480719299353 in:0.030945941735554185 his:0.029877400681562877 for:0.029331625855325377 with:0.022698409965533184 their:0.021093308394901866 its:0.013397881533252394 tho:0.013045101744075811 that:0.012191215514481806 on:0.012017848442458085 her:0.011880124769376763 this:0.01095791477834049 our:0.009050739296828808 as:0.008111588092845992 :0.15355979210120052 +and:0.06317916895143688 was:0.03089079697380977 is:0.020044819943736053 be:0.019406329289829806 are:0.016631216139614186 that:0.015910745835586493 it:0.014132589635136123 been:0.013429954470292457 made:0.013153338042273357 were:0.012494049396038097 or:0.012369181282419555 them:0.011608721240324167 up:0.01101461536327863 him:0.010833186604515583 as:0.010718511743974049 succeeded:0.010682665877813333 engaged:0.010592681714621757 not:0.009777868089593193 now:0.00948198968071834 :0.6826475697249881 +and:0.11717132479065025 of:0.05975776404107632 the:0.036894797744751906 be:0.030476697286946262 a:0.029689055699173163 in:0.026487129630288927 is:0.026201236531637237 was:0.025891673231283507 he:0.024166191619701714 I:0.02129953996234262 to:0.020689032195699227 they:0.017691857447921393 that:0.017526962289634983 it:0.017418942196368217 which:0.01639384581937364 as:0.015422020984154518 are:0.015414815296460722 or:0.015342212184098876 for:0.014934605060334663 :0.4501302959881019 +and:0.21826271236582476 but:0.07786322286315207 that:0.07297530455359287 time:0.048173993521951376 him:0.025422941451570657 day:0.023919825329450247 But:0.022673802036264647 ago,:0.014983250869954024 or:0.013227498019206472 as:0.012436492782359875 her:0.012172053648972328 even:0.011203608850512945 days:0.011109527329938107 me:0.010162603484838058 was:0.009781696081132404 it:0.009683440523936696 And:0.009395797541515854 morning:0.009028004201957226 him,:0.009015124136832885 :0.3775091004070365 +part:0.0539081330092322 one:0.040771386672341474 and:0.0281344772149384 out:0.026917089078777757 some:0.02566360625301876 all:0.020633768569944786 that:0.01686913829442042 portion:0.016280741889792873 members:0.015023023247598681 side:0.014537564428688731 tion:0.014310208463735813 day:0.01402147202721741 ono:0.012968674674312506 front:0.01284129056481416 majority:0.012661178116419052 payment:0.01256240651874752 end:0.012498304057522587 time:0.011665030032336616 date:0.010111704762394987 :0.6266208021237453 +the:0.5189396599316152 a:0.08049252191460686 of:0.06993126076360238 and:0.02989259538563148 tho:0.029697904518075836 The:0.028338001206292467 his:0.024918486193067878 to:0.022308824169430624 by:0.01587068738761671 this:0.01531530630770957 tbe:0.01208470670542859 in:0.01189396605880618 every:0.011041800531705686 with:0.010705170500079315 other:0.010395640363184406 our:0.009825007236795486 said:0.009535580023317463 both:0.008960574493494433 their:0.00712932552860401 :0.07172298078093543 +that:0.14431775598625465 and:0.128667467277087 which:0.06896718304800457 as:0.06530118346699136 when:0.054609450793838304 but:0.04612706203050349 to:0.030340424684075103 will:0.02683144127316399 if:0.025675629120085926 would:0.023114336087613548 said:0.022706637165365872 where:0.021404582596359644 then:0.01504478988714045 time:0.014604667002526881 while:0.01344185180113067 what:0.013224292451342 I:0.013197636977062806 Then:0.012993686978196826 should:0.012134385490864692 :0.2462955358823922 +the:0.262806788755768 an:0.0862569894372021 a:0.06635755441765338 his:0.05379842450904811 The:0.050018837809757334 their:0.049533954771522844 to:0.049429136456261465 and:0.04584535515473784 its:0.02517676544417924 our:0.020425751620255415 her:0.01970225950083996 no:0.018664894290085315 this:0.017782648548828613 great:0.01579555548353729 tho:0.015219688613380517 or:0.013831276638479852 other:0.0133589286628338 little:0.011453271653104856 one:0.010587142304798161 :0.15295477592772586 +of:0.21083111122190226 to:0.10979956267980441 in:0.08906495857315537 and:0.06900805897111824 that:0.048364698958075526 on:0.047270508588067695 by:0.04333085031900709 with:0.03422873904828377 from:0.031468614894682674 at:0.031388774699778736 as:0.028012965830123984 is:0.025459982931312262 was:0.025027991312277585 In:0.022925885017791574 for:0.019010378173804642 all:0.018417051228601586 be:0.013432199028993367 upon:0.011580617194317867 but:0.010194846716172521 :0.11018220461272883 +the:0.08910559107244378 of:0.061137472560099305 and:0.056514486943512535 a:0.050004907958805744 to:0.04258205229205464 in:0.03034323322163879 by:0.026591436997703853 at:0.022473842633593488 for:0.022410377183264787 that:0.02098020189008893 was:0.019758834721747363 be:0.018481312054881092 is:0.018136696512301587 from:0.013181652578143578 as:0.012557274413748609 an:0.011709725541095948 with:0.011467300078065328 :0.011008591853478277 are:0.010990280949142445 :0.44956472854418994 +his:0.2634797326790643 her:0.20719442786803768 my:0.06708727900632361 the:0.044202850924635974 a:0.03869094457450628 and:0.037758910553810275 our:0.030977897557993423 their:0.02891930844814054 His:0.02423962589001652 he:0.018850257000703384 your:0.015539197121442258 My:0.0127002380649017 The:0.011113371346786916 bis:0.010324595454754558 that:0.007524952359902038 two:0.006497320512531436 Mr.:0.0062459813637550585 as:0.005926478748663996 old:0.005423581061721076 :0.15630304946230897 +the:0.16570028989672583 of:0.0940533895807563 and:0.0722943973715368 to:0.04636439159971199 a:0.03278208435574718 be:0.02595542723106903 in:0.025438065332636872 for:0.024744930345785447 was:0.024449939162765076 is:0.024025169041540645 are:0.018211537790014817 as:0.014250683967405408 with:0.012620360022417105 The:0.012256571439080518 or:0.011660493538507831 that:0.010768576863399415 been:0.010194589775065627 were:0.010087438072902525 which:0.009979175805836732 :0.35316248880709483 +of:0.20852803513083423 to:0.0929761482405145 and:0.09054260996882255 with:0.06051240222939191 is:0.05705101260649324 in:0.056707873236964176 that:0.054534345178684274 for:0.047499936094794706 by:0.040890154016889106 as:0.027746707615390553 all:0.026253615461331817 was:0.02337129871615182 be:0.020997752299675924 but:0.019593160809143417 on:0.01762557195671208 from:0.017385310362522246 In:0.012788165474904259 upon:0.012665759304020262 are:0.012504429613940082 :0.09882571168281887 +away:0.05746860598250849 and:0.04985561698690421 taken:0.03950823995165392 miles:0.0355312759828073 feet:0.031845900191456514 come:0.022313957473317422 them:0.021637161013586904 out:0.020621546731341717 came:0.02000539576637417 up:0.019820502682224503 him:0.019195504147748815 received:0.019046714556510396 far:0.018152378296247898 removed:0.017489734983720518 down:0.017467467859455896 it:0.015386533775439217 years:0.01424855034507225 annum:0.014237643714946796 free:0.014107989586278378 :0.5310592799724048 +the:0.16459883030594186 and:0.06521086320292585 of:0.06224826159913675 in:0.031882991607480086 to:0.03179953301949017 be:0.027581340055422305 for:0.026849579094841557 their:0.025387101325676002 his:0.023738789968354827 that:0.019146596756646043 a:0.01774961193584377 he:0.016372366964157167 or:0.014184354945703734 was:0.01369376196970306 much:0.012511315013064059 re-:0.01126876140433352 our:0.011222984960224213 been:0.011005472394744592 more:0.010711117033596219 :0.4018363664427142 +at:0.34914790456733114 to:0.2236863338570169 of:0.059542445363029585 for:0.03734114112788435 from:0.032369725806177134 in:0.029724237461291495 and:0.02753828609490057 as:0.02746786025662075 such:0.024392605584009304 At:0.02392758864290362 with:0.02226640868658224 on:0.019707511809718515 that:0.01881525145536233 by:0.014651467720070635 is:0.011041997280574811 reached:0.007203425799839397 make:0.0063555094693057805 than:0.006318050493384144 In:0.0063047515755819215 :0.05119749694841539 +the:0.5555632108023555 and:0.05651409204278797 of:0.05426514176056047 tho:0.035292843208834704 The:0.024114038424834904 a:0.01746116046626475 tbe:0.014872598190121858 our:0.01282144673979566 an:0.00972899994697111 said:0.00972193591241092 or:0.009680852974574024 this:0.009536802027744918 that:0.008634924901457581 their:0.007737089979239927 his:0.007730208908218071 in:0.006107061365578812 its:0.005955059128312912 American:0.0053621370476811606 great:0.004377500880274436 :0.1435228952919804 +in:0.12584751051357324 of:0.09759502479664728 the:0.07371839375246729 and:0.055651754291004454 for:0.04744536705298647 a:0.032925964492396737 to:0.03198260274187316 In:0.029652859996176964 was:0.017176340234656633 by:0.01637913782528117 are:0.015624529717594675 be:0.015359740034713075 from:0.015332737536474472 that:0.014587063309917358 is:0.012292937239714764 which:0.011956538642930331 were:0.011584038466634639 been:0.010892258706962473 with:0.010501774296364555 :0.3524934263516303 +the:0.20614037874648866 of:0.18431956041969774 in:0.1754436957355019 to:0.06230723998660274 In:0.044528729143464355 from:0.042130736765694524 and:0.03199621340186661 The:0.03131481922550988 for:0.028710244476684806 at:0.020513862308363082 a:0.012468190303082239 by:0.011221882226127083 tho:0.009442327394344991 :0.007891365231904104 that:0.006945806463137829 on:0.0056555227899618265 with:0.005170206535625908 iu:0.0044666756043005365 ot:0.00403926483333437 :0.10429327840830685 +arrived:0.06689396965635268 and:0.06255325811058379 held:0.030348439134612392 was:0.02498532966851851 Beginning:0.021720122918070097 look:0.019208404801751663 interest:0.018088538121972596 arriving:0.015508560771913317 place:0.014677154702234955 out:0.01354679436468521 up:0.013546112764968747 it:0.01335159628277863 them:0.013152030668708311 arrive:0.012402867380351854 looked:0.012063550663251382 are:0.011706705087423303 beginning:0.011580622374823754 in:0.011541146666973362 is:0.011529089631212255 :0.6005957062288132 +a:0.42541178142915503 the:0.25616395815592985 by:0.038344192457940414 The:0.027882757336496273 A:0.01878390598980287 any:0.01592474317552606 said:0.015849495159499797 tho:0.013623880703636066 every:0.013465612961626263 of:0.01234097235563692 and:0.011525189205154237 other:0.008704199012828264 this:0.008033690758010857 first:0.007825792383423801 one:0.007609139927021426 that:0.007134891731467003 tbe:0.006538450208162039 certain:0.006515018938965377 with:0.005693200393514221 :0.09162912771620325 +of:0.09129790931378902 the:0.07369883040827747 and:0.047842263382354346 in:0.04189055351593407 to:0.04045875475680249 a:0.03542341257202578 be:0.02020462051672066 for:0.01979292654746225 was:0.01760256398103379 at:0.017380150555488715 is:0.014984483003968216 with:0.014047653760730413 by:0.01374644383819499 :0.012670486581795598 In:0.01200961464556976 or:0.011563835749786333 from:0.011391516893522809 are:0.011273104484969465 that:0.010755276030689069 :0.4809655994608848 +of:0.15137170788410792 the:0.13249217743372912 a:0.09690134327281755 and:0.0629046382251964 to:0.05591051610022321 in:0.04585882296450399 for:0.031690862334881206 in-:0.023867061785643715 from:0.021096546025546534 as:0.021047478237478517 that:0.019114200521069425 by:0.01798711555347948 at:0.016036603921827097 which:0.014342938031298241 with:0.014054272364987297 his:0.012193166161408036 :0.010835759567283654 be:0.01033807031661561 The:0.010222457278030889 :0.2307342620198721 +of:0.23411714431977101 in:0.1267054738305696 to:0.08357775881872571 and:0.051925075318709844 with:0.046132419113081344 that:0.045928640778964865 by:0.043341152894013024 for:0.036998137583117596 on:0.036337605612840676 In:0.034348393275469694 from:0.0327362973200341 is:0.023072842552119607 was:0.02101136789836247 all:0.020300885896707904 at:0.01547635948340012 upon:0.015468963891922292 as:0.014242447544158364 when:0.011383834574768856 into:0.011044055205791676 :0.09485114408747124 +one:0.10757504863160208 out:0.06393072214258595 part:0.05345953864888265 some:0.04657778396619151 time:0.032653763285528395 account:0.0298978741893603 all:0.02673860913095395 and:0.02324876597992745 that:0.02275453097379819 because:0.021318504223257338 portion:0.02010071224985526 side:0.01926992014112468 any:0.018918137101655273 front:0.016609963575485047 many:0.016563310866764772 end:0.01592265492673931 day:0.015255366376758018 members:0.014811614297040794 result:0.014486922106154784 :0.41890625718633423 +the:0.269340949489543 a:0.10810384008885394 at:0.07544454584688585 of:0.05947817147769326 to:0.04059705902472632 in:0.033051773319563466 and:0.024568636295446426 The:0.019533007936325276 from:0.016715601796393455 tho:0.015992581989613234 that:0.015200462429140308 on:0.014978854552552913 an:0.014528620231837574 for:0.01366235901154972 :0.013633708067275367 by:0.00999455817413312 his:0.009024400684224389 tbe:0.008109747634016284 any:0.008052327749072321 :0.22898879420115376 +;:0.01458927046758731 it,:0.007973265891266864 him:0.007834970369143835 one:0.007240974664279108 in:0.006989508095588829 and:0.006417396987522371 ,:0.006059091806132192 it:0.006014614548599763 up:0.005812344146302806 out:0.005395853159197619 them,:0.005290532062834904 him,:0.004938420268273817 city:0.004793760033506698 :0.004646491011450349 man:0.004641061555670736 country:0.0046164671969483135 feet:0.0044416267197611185 time,:0.004376787347733258 time:0.004358244018157902 :0.8825693196500423 +that:0.27435050474302997 when:0.0936504634999025 and:0.07514715140531862 which:0.0637390162622278 as:0.05498557831961495 if:0.0396753277843658 where:0.03847508245584794 but:0.0374686916236321 said:0.03139388692667523 until:0.01900278818390128 while:0.017895471398021518 because:0.017321708662493104 When:0.015948059672308543 time:0.015167154002251356 what:0.013119112870121706 before:0.012734910158522643 If:0.012620547493008344 whom:0.011774683928828633 though:0.010411169831012573 :0.14411869077891537 +the:0.11919516938815296 of:0.07230453158552728 and:0.05781056740443249 a:0.043018564803886335 to:0.031305092790907506 in:0.020848713353460488 at:0.014270110001066288 .:0.012526810245749479 :0.012413283442322082 for:0.011719122709941797 by:0.010808400946589808 or:0.010404172990115616 The:0.01003576004804544 with:0.009811868184449042 tho:0.009295902015355835 was:0.008924239095331684 that:0.008672304223433876 is:0.0085591147338948 be:0.008335143826716943 :0.5187411282106204 +just:0.05625523003775768 and:0.053102676114757184 is:0.04280064538024239 such:0.03452971391247597 well:0.03326239150595329 far:0.03274013684233952 it:0.032541270377129825 are:0.02669833614327818 not:0.02436997345721897 was:0.023745123921489076 them:0.023041197095226975 but:0.0204165181616103 be:0.01867828308090707 soon:0.01716928831639693 much:0.01628376853348678 him:0.016200999913316406 might:0.016036342189603793 known:0.015218520435185238 Just:0.014405061611282253 :0.48150452297034213 +the:0.11919516938815296 of:0.07230453158552728 and:0.05781056740443249 a:0.043018564803886335 to:0.031305092790907506 in:0.020848713353460488 at:0.014270110001066288 .:0.012526810245749479 :0.012413283442322082 for:0.011719122709941797 by:0.010808400946589808 or:0.010404172990115616 The:0.01003576004804544 with:0.009811868184449042 tho:0.009295902015355835 was:0.008924239095331684 that:0.008672304223433876 is:0.0085591147338948 be:0.008335143826716943 :0.5187411282106204 +that:0.1654542553235443 and:0.1334165363950821 as:0.11807547605828765 which:0.06644361539822702 when:0.06322582958655211 but:0.06193429331016602 if:0.03871659898588617 where:0.028656193097043665 what:0.016514000359160758 because:0.016325838154257217 of:0.01616025144256156 If:0.014270601789312568 As:0.013535992063223633 though:0.012624517807286456 have:0.010614386396846746 When:0.0106136372500627 until:0.00991202428075826 But:0.009880325443341786 than:0.009171674104613267 :0.183453952753786 +and:0.06538198234164944 is:0.043452550471217405 able:0.04338712452432955 him:0.039010401133874766 as:0.03602728465129733 time:0.03516245795362244 was:0.030806919136550332 enough:0.030541541923576554 not:0.02886098348564398 order:0.02639935317815918 ought:0.025520118712256092 them:0.025290159002598428 seems:0.024516164441519817 seemed:0.024341200481727776 me:0.023265152732883394 have:0.023019213531576863 right:0.021271741200018672 necessary:0.02111274580448208 it:0.01931545548630852 :0.41231744980670737 +the:0.2635639547655281 and:0.06060526374728461 of:0.052613206372742374 a:0.04510073892958719 his:0.018652640145138125 The:0.017934462830504955 in:0.0168683759811821 was:0.016653282545729602 tho:0.014788202004679896 as:0.01316181307274231 for:0.01256715149580388 to:0.012497214142722942 an:0.012189881714362923 be:0.010432611151200989 .:0.010240656756498425 tbe:0.00950241147016682 their:0.009395776728768035 is:0.008775343509464427 by:0.007714954939815247 :0.3857420576960771 +put:0.1385394133258786 made:0.05318305410378544 taken:0.04671451560234663 it:0.04424074154861419 set:0.0414575779092814 came:0.03987312318743636 looked:0.03591031599181558 brought:0.03316078131188153 and:0.03303597453975255 get:0.03200088496276826 take:0.031289688019554646 picked:0.03091098707940207 keep:0.03084778864513511 got:0.03013469359015333 come:0.025735631335828592 them:0.02321821913969804 kept:0.023068055068607995 went:0.022983832611344446 took:0.020134149500302897 :0.26256057252641235 +that:0.1959063235045215 and:0.12855405041447887 which:0.09080251566024948 as:0.07780108744164306 when:0.05623874736417605 but:0.054735508323674305 if:0.03881855992614073 where:0.02951507553735909 because:0.020688646395404693 what:0.016933338943006894 whom:0.013137885669071868 until:0.012292836564623065 for:0.012138548145826248 though:0.01054134478220603 If:0.010199262392159646 than:0.009163264752932955 whether:0.008574198734676037 When:0.008562230881531296 or:0.008294620590692203 :0.19610195397562596 +of:0.11395061854739122 and:0.04173599220231231 in:0.03480090365929109 with:0.026054124265402812 to:0.024263975329004248 by:0.020773208468569827 from:0.01718824562109122 that:0.012450658984182275 on:0.011070616676241042 upon:0.010540685780874004 for:0.010426495182872407 but:0.00757340940310418 one:0.006211551170482487 ,:0.0061601797914047 through:0.005168535734469264 In:0.0048811454165547784 bill:0.004653412523675308 land:0.0044708307093686405 things:0.004388058495233174 :0.632237352038475 +of:0.0607288888972804 the:0.033908842820849154 to:0.026439505026145897 and:0.021873263311635926 a:0.018689965121627676 :0.012505430211712121 .:0.012374964953622922 his:0.012283458512032011 or:0.00953177086873914 in:0.009381354652152611 by:0.008037425109482702 at:0.007047015427636025 all:0.006574566664635117 with:0.0065356365643378395 Mr.:0.006117691528701072 her:0.005846782132671256 their:0.005363894274913253 for:0.005171279600940663 our:0.0047104125352213 :0.7258778517856629 +the:0.1454500361787387 of:0.1080247151493501 to:0.04516715868785427 boy.:0.036249098323069925 and:0.03403580073245388 girl.:0.032660326140049385 a:0.03171979252021135 in:0.02714044436566853 for:0.02365213940166824 be:0.021942286684630472 their:0.021087116084698817 his:0.019774122064073623 was:0.014637031197642503 with:0.014008395154201525 are:0.012730720509515858 is:0.011363112041341867 as:0.011357870543086747 from:0.01063391638067422 were:0.010589399829418696 :0.3667765180116513 +and:0.08207639090375585 the:0.07786471265636571 of:0.05221079436574038 or:0.03488729627574709 be:0.033566403703001686 in:0.03033317477703425 to:0.029328273032003773 re-:0.024400667620494077 are:0.01914479387795743 a:0.018178876961950436 for:0.01790397939191797 :0.017085774024764064 that:0.01494974335057601 as:0.014441956414817365 is:0.01384840589377517 said:0.013837986981298641 was:0.012510822297518473 their:0.01229962915224022 his:0.011964109616005407 :0.468166208703036 +to:0.09864282010030183 the:0.08375297126946753 of:0.07074571151673052 and:0.06779046829403 a:0.02766650927741597 in:0.021670314456411932 at:0.021392828982420006 for:0.01627599403114278 is:0.015107338441904122 he:0.014818877918256685 was:0.013808540905081488 by:0.013132601340090633 it:0.012796195965848819 I:0.012723560421513859 :0.0121914922721236 not:0.011777366450725432 .:0.011011346691779235 that:0.01092359583028988 with:0.01073896800850032 :0.4520324978259654 +the:0.24729358324512607 a:0.07286900476759327 and:0.06409488041872134 of:0.043419472276061556 Mr.:0.03606458956750563 The:0.033040509577335765 to:0.02182722328104756 tho:0.018588136250530136 in:0.015507648065743295 one:0.013858341419049361 .:0.013383516217255953 that:0.012307282037556844 or:0.009638291795750464 his:0.009326922116679305 two:0.008507851477780931 :0.008170275695689365 her:0.007984937464758896 tbe:0.007946737047412654 an:0.00788374354343312 :0.3472870537349685 +and:0.024127579502053336 him:0.010083870932687268 that:0.00901279177320081 time:0.0070638863539713055 them:0.006879199368656283 ;:0.006775790475628969 it:0.006525480398353978 out:0.006265440400064159 up:0.0057033993949832116 them,:0.005669327292434504 him,:0.005311211822138835 feet:0.004828185391560889 down:0.004815930109209395 time,:0.004791302525927879 made:0.004589003279044222 ,:0.004571648999028255 it,:0.004490186303174417 known:0.0042233078627392645 :0.004066402941726998 :0.8692060548734161 +of:0.09129790931378902 the:0.07369883040827747 and:0.047842263382354346 in:0.04189055351593407 to:0.04045875475680249 a:0.03542341257202578 be:0.02020462051672066 for:0.01979292654746225 was:0.01760256398103379 at:0.017380150555488715 is:0.014984483003968216 with:0.014047653760730413 by:0.01374644383819499 :0.012670486581795598 In:0.01200961464556976 or:0.011563835749786333 from:0.011391516893522809 are:0.011273104484969465 that:0.010755276030689069 :0.4809655994608848 +of:0.1871094139537298 and:0.08180353430003881 are:0.05273898925022509 is:0.04431911499211212 in:0.040191378588168444 the:0.030250809160831258 by:0.025626268703481562 now:0.025184776003638852 for:0.023951436710418716 without:0.022803110074675864 not:0.02246215146965972 was:0.02207836563217326 it:0.02196234873723601 from:0.02118283171599719 after:0.021051988854005388 as:0.02018835641783001 with:0.01547629402900755 to:0.015186546937237033 on:0.013880181116557365 :0.291552103352976 +we:0.1296463239893746 I:0.10550705463772493 it:0.07142537124282035 they:0.06542049170962547 he:0.060485033069471325 and:0.058875196212261234 who:0.05803330101877969 which:0.044215401990264566 you:0.02473397056854911 Board:0.022653014329974807 It:0.0219995951741831 We:0.020979600550180638 or:0.017270092790804773 act:0.016900579708337086 State:0.014479251157057758 that:0.01393734517190184 States:0.012477406446309337 court:0.011903187714510844 as:0.011759054701381683 :0.21629872781648685 +one:0.1028303141280697 part:0.05963429477052991 out:0.04766456937681193 some:0.031418679026461914 members:0.030764490253327767 side:0.029940657362655835 portion:0.022063658796890564 office:0.020457735219956013 member:0.019726706386316174 end:0.019666887540649894 tion:0.018667441728710307 parts:0.016814747270460957 people:0.014112771422418794 all:0.014072739582212475 any:0.013183573287639892 One:0.013083578354183906 that:0.013024335602903442 account:0.012482348155001894 many:0.012077825070275192 :0.48731264666452345 +;:0.01458927046758731 it,:0.007973265891266864 him:0.007834970369143835 one:0.007240974664279108 in:0.006989508095588829 and:0.006417396987522371 ,:0.006059091806132192 it:0.006014614548599763 up:0.005812344146302806 out:0.005395853159197619 them,:0.005290532062834904 him,:0.004938420268273817 city:0.004793760033506698 :0.004646491011450349 man:0.004641061555670736 country:0.0046164671969483135 feet:0.0044416267197611185 time,:0.004376787347733258 time:0.004358244018157902 :0.8825693196500423 +of:0.3270901226853137 in:0.08623927248521865 to:0.08103065863460604 the:0.06178951814672381 that:0.04988942327686661 for:0.03677734294585739 and:0.03553730709581491 by:0.024226938636384792 on:0.02083180884033478 In:0.020527109510052696 before:0.014714684625777772 from:0.01467734089476765 upon:0.01360502233464605 which:0.012862116236977292 this:0.011134258503718342 at:0.010670255679542736 :0.009100544559731546 as:0.009033849609649387 until:0.007900561733204314 :0.1513618635648116 +the:0.20421018651200545 in:0.12110026841251965 of:0.11932868640499973 a:0.06889587696611378 their:0.05481732595996058 his:0.04809737163452159 and:0.03758512364331312 for:0.03156911027346013 In:0.029512370067804845 by:0.026342341975594846 no:0.023936701473257202 all:0.0210099084329919 doing:0.01830255979929118 our:0.018234967406907412 any:0.017041227369975466 its:0.015466927306406067 special:0.015426313967620717 with:0.012496423749503655 other:0.012449187830845315 :0.10317712081290736 +and:0.10706369487481922 so:0.05957960038447563 fact:0.04286502607468182 said:0.04191078837661015 all:0.03315022743078857 say:0.0330362577229265 of:0.03207197668432945 is:0.03027064840152865 know:0.023526717164677885 to:0.02316785757579128 in:0.018384008172419693 says:0.01818615006592108 me:0.017814331559052723 but:0.017642894171901978 for:0.017520262261926295 believe:0.01687297971043687 stated:0.016713714680076947 as:0.015749258850104135 stating:0.015230830495024312 :0.41824277534250687 +it:0.14451336976349813 he:0.11975742237649803 that:0.06710891800133913 I:0.05993046175951413 It:0.05858046485854265 and:0.05103660713477182 which:0.03865149030276486 they:0.037599435035442545 she:0.031014211019922484 He:0.022977002405834775 who:0.02175054321120206 What:0.020862064609756058 what:0.020055605478256733 you:0.01913663086089471 nor:0.016157866732744403 This:0.01531945140240129 we:0.014932258725269168 man:0.01432398952914445 but:0.013372676834402818 :0.21191952995779975 +and:0.1771596748307363 as:0.0792152791998815 when:0.06332410165992021 that:0.05156245674992885 which:0.04552292255379013 to:0.032054908894492994 if:0.024339409023566197 but:0.023126549499128315 before:0.018042282646096055 than:0.015782872298992452 where:0.01496792881550632 for:0.014471670214410743 whom:0.012349589686679536 then:0.012074186535873176 until:0.011861735342279921 When:0.01146486650141489 said:0.01069153303737452 while:0.010076814210469156 what:0.009895027891415283 :0.36101619040804345 +thence:0.09963759632088796 and:0.09437653138202388 parallel:0.06563916824368102 accordance:0.04357423104104433 covered:0.04098068700603815 angles:0.031747125907918596 line:0.029395573045865337 filed:0.02889553181899652 connection:0.020001512209290008 together:0.01884688692342784 provided:0.018635384161653862 date:0.016901302007277484 it:0.012918725598066864 along:0.012281002060604063 that:0.011377690006435636 connected:0.01086062966789689 file:0.010212476113185261 but:0.010139417111921055 land:0.007979830009950728 :0.41459869936383453 +of:0.20763497571151532 to:0.10116519736510735 and:0.07372355284450399 with:0.06541064966668256 in:0.06446315009839138 that:0.0469530231092282 on:0.044422977180151105 for:0.03518377918220286 as:0.03458958510042007 by:0.027257121156227263 at:0.02609254775462673 from:0.025616765295422242 is:0.023571986412802698 have:0.020232079947099836 under:0.017082285779918688 In:0.015071299659020217 upon:0.01496466630013395 was:0.014521527458765142 had:0.013852426903169266 :0.12719040307461116 +and:0.04463128512418433 :0.04379506349124557 it.:0.024900978692779727 that:0.021452783918560404 them.:0.019184651781899185 time.:0.009924705407769942 as:0.009875633569175236 ?:0.009511175436091656 country.:0.00791983665330339 but:0.006986460341093266 to:0.006907021124834831 him.:0.006577018832367974 day.:0.006193599159383891 even:0.006068517840430064 year.:0.006006904177472674 law.:0.005939568843991189 years.:0.005887086626031343 people.:0.005757964630568269 .:0.00571669287035481 :0.7457630514784622 +the:0.08717969637283864 and:0.07875733244476874 of:0.07316093736992392 to:0.04001480300860562 was:0.03151005896001036 .:0.024507034297654204 Mrs.:0.02146076257177307 :0.017844131326881122 were:0.016926492560667982 be:0.016761508896853086 by:0.013755342226074404 are:0.013740867909393169 said:0.01367365645533716 is:0.013345352088760585 Miss:0.012165643771596586 for:0.011639951413232449 been:0.011453199415309003 Mr.:0.011134163748794132 or:0.010108213104940155 :0.47986085205658563 +of:0.28767355066866834 to:0.08775711267569858 in:0.08678131196995101 and:0.05160598694501188 on:0.04646139928102899 by:0.04519522654900943 for:0.044547789071328545 with:0.03396756772609607 that:0.033699232901107726 from:0.03075346596941143 at:0.027039283056790858 In:0.021061449543044047 as:0.017514234937992545 all:0.012543839382496166 upon:0.011844431150487573 is:0.00998972746569266 was:0.008814315973987914 into:0.008557199930727406 through:0.007781895704231326 :0.1254109790972375 +he:0.12976121742153812 I:0.07852463054224247 who:0.06830823721859731 that:0.06077004167932886 which:0.060753301478794326 He:0.05751410658736976 it:0.04910391307738429 and:0.04460886094287507 she:0.03375562784674004 have:0.033358493564519406 they:0.033142840936970334 It:0.031904895400166645 has:0.02095875881542972 had:0.01978619717237128 we:0.01561971078045305 She:0.014298890460818885 This:0.013192244513456382 what:0.010611341822775747 1:0.010400419149677898 :0.2126262705884904 +the:0.11076639060148961 a:0.07849534528798262 and:0.07662355077029165 of:0.07260297245149884 to:0.052614458906641126 in:0.02898323381454322 be:0.028619334122366183 was:0.018316043946281182 is:0.016699142604069347 or:0.015571116417843511 for:0.013777377220018703 his:0.013466243388399383 been:0.012200092708878738 .:0.011651566712874907 :0.01138899460054603 their:0.010869189054887483 no:0.010269055828557971 not:0.010112362588368682 an:0.009710495306262912 :0.3962630336681979 +in:0.021765242624725675 time:0.018266575279227808 men:0.016818491404181027 life:0.014403545529156975 man:0.014340353847070627 strength:0.0140055020638807 out:0.012319760430411747 city:0.011614319847724593 right:0.011126191655405094 her:0.0110054805370084 good:0.010994900646753092 one:0.009611819712076128 wife:0.00948280756396641 hand:0.009305395780191914 work:0.00926157503535444 father:0.009195593928342021 :0.008991414872788116 up:0.00879503126367939 health:0.008476449673066056 :0.7692195483049898 +in:0.14991590318206124 of:0.1209398591194837 to:0.07834451347458347 with:0.045025032336516446 from:0.040918792491704215 for:0.03873328231398388 on:0.03234496445481239 and:0.031933724423831564 In:0.030166085650422156 upon:0.024097054184417405 by:0.022092548519012798 at:0.01839849579321132 through:0.015515935853952044 under:0.014946303696290079 that:0.010036824260624957 after:0.008568029538749444 over:0.005750480427829716 into:0.005026873105518554 but:0.004961068937205892 :0.30128422823578876 +of:0.16569065891885773 to:0.07355511772036062 on:0.07189557006929317 by:0.06088808153631737 is:0.05830881025895266 and:0.053010793352624534 in:0.048802012140894586 for:0.045491956739905394 that:0.04035950924273374 with:0.03111741687890163 have:0.027447825861298278 not:0.026133166217000896 or:0.02594359559186621 are:0.022580496204195374 was:0.019215670510966943 be:0.018029791405023837 had:0.016052482875593573 from:0.014529080405138218 In:0.013820509007809425 :0.1661274550622658 +it:0.15204687192065672 It:0.13184372517913337 there:0.1097062989346316 This:0.0903188768878816 which:0.061420581269772054 that:0.05341828847849852 There:0.050382197888725035 this:0.034283327940183385 and:0.02909477063020637 That:0.022983212670983813 what:0.02125131813307271 who:0.019987545128722844 he:0.017458970032282025 What:0.01110391170261709 He:0.010797487513134663 Here:0.007816118964645066 Nor:0.0074344322112870715 as:0.006502676585199179 one:0.0061967570610321826 :0.15495263086733468 +and:0.07895257911471103 was:0.03596317658514438 out:0.024016824392823457 that:0.023672598027062328 placed:0.022844208461019616 work:0.021707439938587154 made:0.020781005318872947 is:0.020224993929329655 up:0.019794182040466738 put:0.018288921183371155 down:0.0171740551508179 interest:0.01663630075189571 point:0.01659978677065351 him:0.016175999448187352 held:0.015562908663841706 Dakota,:0.014616466073415059 place:0.01424333231426501 Minnesota,:0.014067166610364513 it:0.013665465625771424 :0.5740125895993994 +the:0.1604916966188227 of:0.11275865359240217 and:0.07711215696098911 to:0.07357952543518372 in:0.038442084934050845 a:0.0383429392325653 be:0.031935549729258765 for:0.023687353579869633 his:0.022938330903791306 their:0.021679866906020865 was:0.016051393500300423 I:0.014372428877850276 is:0.014141382081180844 he:0.013550986364416807 that:0.013373239787386165 or:0.01186895305038503 with:0.01134461766076533 at:0.011053389841868837 are:0.010330149310961712 :0.2819453016319302 +the:0.2754878839193159 a:0.15746434809709678 and:0.058651272229102575 electric:0.05363276330891881 of:0.041591090361650075 that:0.039303135162443416 The:0.03497964728901766 this:0.033954212537982885 no:0.02233488400613197 tho:0.020167440572582775 This:0.01676649231111929 any:0.01486773920393827 very:0.014737066956970548 little:0.014081501136698765 or:0.012287856111056894 so:0.01163977067145694 to:0.01100257946070716 as:0.00955918355831711 an:0.009111825705977345 :0.14737930739951488 +the:0.33279579745309157 in:0.13775249092888728 of:0.10187428022270316 for:0.04349548055311694 In:0.0342275866796277 mence:0.03346107376021904 or:0.02804139164766675 The:0.024934679881349966 and:0.022661697135628316 tho:0.021610996168915157 a:0.01789683856294844 to:0.015283355064739762 all:0.01498319633220663 due:0.014706067593133388 on:0.013670043226308845 that:0.013495079071512872 other:0.011666749137723092 last:0.00946971575169748 their:0.00872823029736203 :0.09824525053116158 +the:0.2536665656171254 and:0.09494599683049644 of:0.07218633336079293 a:0.07214300720758307 in:0.04184057039538429 are:0.03409358361373727 from:0.03116833559759455 is:0.0260745337216706 for:0.025556755679437323 The:0.025003558346368807 said:0.024069364263036654 was:0.02406239281520039 all:0.019930987971672646 their:0.019493665616374334 to:0.019226598743692785 tho:0.018021206708022593 his:0.017975387454262023 by:0.017295134330164455 or:0.017192453514970618 :0.1450535682124128 +that:0.07106627282778241 :0.047612981573209895 and:0.03579282737900815 it.:0.020513040802067818 but:0.019384935078924758 as:0.017609169770204183 when:0.014984718094708459 which:0.013617060274538012 him.:0.01316459214113621 of:0.011558280901040606 them.:0.01138181107887566 If:0.007797443528776149 day.:0.0077760343684583075 time.:0.0077256082603808455 if:0.0072730156480560965 where:0.007146682292767419 .:0.007005486154079236 until:0.006961138260726988 country.:0.006539982952195297 :0.6640889186130635 +is:0.14986906094068742 was:0.13803278922745163 be:0.10673619651018058 are:0.08012446024040049 and:0.05876872922115357 been:0.056586992123877564 not:0.05424311406465945 were:0.03203748640659591 Is:0.020079616683794346 has:0.01607654536731133 have:0.01553878905148466 it:0.014896970023420325 or:0.013695357180345225 as:0.013456452057261432 being:0.012632367888181333 do:0.011833419084824466 had:0.011726428167645525 of:0.007731377988795971 became:0.007613750060620171 :0.17732009771130858 +well:0.13450646639939087 and:0.06234416876632633 is:0.06085521439190546 known:0.0529499638578618 was:0.04931941815838667 far:0.04202187989491174 be:0.037437156885942464 just:0.03423004572094761 such:0.033764421196412146 much:0.026200605973157175 regarded:0.024738639035027987 so:0.02148877103321158 quite:0.02110457612049517 it:0.021041179148612213 are:0.020045009554154572 not:0.019829086560418565 but:0.01960034176933783 soon:0.014731017441950702 him:0.014717812677400402 :0.28807422541414873 +the:0.21021353972253315 of:0.19068018024681602 and:0.08270803449282957 raw:0.060418391152540836 all:0.05115102371214467 or:0.046515436897687466 for:0.02581956571626561 such:0.020265140437445154 many:0.01784379590046881 any:0.017172975345170392 their:0.017005652140700562 to:0.016659371423723274 with:0.01648111200477816 in:0.016373300399495465 by:0.014842707462023872 other:0.01417480820026332 that:0.013448207689129193 tho:0.012265406543016676 some:0.01079456199526216 :0.14416678851770565 +to:0.3347558044109929 of:0.07753181588262267 at:0.06380856896778815 with:0.04943213983765542 upon:0.03279676362225995 let:0.03123154910754787 for:0.030833018172264335 on:0.029666055307302232 from:0.025880119327882964 give:0.021507123570083986 made:0.02079298411338843 by:0.020563930304633757 told:0.019249134941993217 in:0.016011514220571555 make:0.015920749595865816 about:0.013697128956898386 have:0.013451141875822388 take:0.013182368427592607 before:0.012621200481077847 :0.1560668888757555 +the:0.20245154915022068 a:0.1471157474411337 of:0.11372286282773536 in:0.05590258037932707 their:0.03264256779392298 this:0.03155289226907045 and:0.029492859197370023 to:0.023284547566036526 his:0.02043968188659896 with:0.017006615818537157 The:0.013156284515687415 our:0.0126335900887227 tho:0.012627150827762978 for:0.011611720328527097 an:0.010433633591379552 its:0.010189997859905311 In:0.009959620202189934 other:0.009597324382566077 be:0.00948923551601822 :0.22568953835728778 +he:0.17797480456065534 it:0.08656712852457157 they:0.07309651830043257 who:0.05845985791805011 which:0.05138958127287241 It:0.04480245407113105 she:0.044130913854747635 I:0.04394156709528232 that:0.033953846115311215 He:0.03356025993893369 and:0.032717267955701596 we:0.02729070070850451 man:0.014300767416485578 one:0.012470441963501906 ho:0.012459918433194626 you:0.010354561609831628 men:0.009990704118624419 lie:0.009083289586076902 be:0.008306466075329604 :0.21414895048076132 +and:0.08180379429732622 to:0.060030830249766264 of:0.05922315654764797 in:0.04626902233696285 be:0.03679003680088665 the:0.03317484783475683 was:0.033169790487265746 is:0.02130818919190867 he:0.018472127786304804 are:0.01806168114670575 been:0.01732440884098687 were:0.01699312947422097 I:0.013594262698291249 that:0.013398802427524713 for:0.013391610654107912 then:0.01163594857342084 now:0.011449961803380052 so:0.010985382627507484 in-:0.010645052890459836 :0.4712779633305683 +of:0.14140911374913043 the:0.08406324275408093 in:0.051712664696044124 and:0.042016144218116745 that:0.03344666676867289 to:0.027709869064190353 The:0.023638573607111874 for:0.020483914568636966 Mr.:0.017669174058513534 which:0.016972368561751192 as:0.016259401671191127 a:0.014920071848964473 :0.014646146896987337 In:0.009940105168995288 or:0.00909223143114935 such:0.008359976573547796 when:0.008218759560201584 -:0.008178509589941811 by:0.007801238855262815 :0.44246182635750936 +and:0.2117999480392726 I:0.10501019509497526 to:0.07479185333817352 they:0.06255079828908487 we:0.05265713531532887 the:0.05099367811623513 who:0.036447478956316406 that:0.030527715248448058 he:0.028368660932265737 which:0.021033942243276142 We:0.017398623068439936 it:0.015141629141665908 They:0.014838886772388878 but:0.014250504428905679 The:0.013326501781562264 not:0.012885699381448642 her:0.01082017891587321 you:0.010058627722594757 or:0.010043806698674489 :0.20605413651506965 +of:0.28767355066866834 to:0.08775711267569858 in:0.08678131196995101 and:0.05160598694501188 on:0.04646139928102899 by:0.04519522654900943 for:0.044547789071328545 with:0.03396756772609607 that:0.033699232901107726 from:0.03075346596941143 at:0.027039283056790858 In:0.021061449543044047 as:0.017514234937992545 all:0.012543839382496166 upon:0.011844431150487573 is:0.00998972746569266 was:0.008814315973987914 into:0.008557199930727406 through:0.007781895704231326 :0.1254109790972375 +the:0.17905433902808324 a:0.12126439852506356 to:0.11175475491516872 and:0.0845786557180725 of:0.06930750719128782 be:0.03125140202749604 was:0.02895527893087743 for:0.028895686986174753 or:0.02583556309721011 his:0.022594182058917226 are:0.018738450388369514 with:0.017686465607663085 all:0.017263521491385783 been:0.016983645690107848 were:0.016343891356666494 The:0.01569382109147767 most:0.0156737404070349 by:0.015522446804641621 their:0.014800743452379648 :0.14680150523192206 +one:0.1028303141280697 part:0.05963429477052991 out:0.04766456937681193 some:0.031418679026461914 members:0.030764490253327767 side:0.029940657362655835 portion:0.022063658796890564 office:0.020457735219956013 member:0.019726706386316174 end:0.019666887540649894 tion:0.018667441728710307 parts:0.016814747270460957 people:0.014112771422418794 all:0.014072739582212475 any:0.013183573287639892 One:0.013083578354183906 that:0.013024335602903442 account:0.012482348155001894 many:0.012077825070275192 :0.48731264666452345 +;:0.035838866877300174 him,:0.012734485969707651 is:0.011608884267971683 given,:0.010976200928471519 it,:0.010695309186343213 ,:0.009160133702737178 them,:0.00829630466913399 was:0.00778837802986672 time,:0.0077762401043632665 and:0.007104189445909116 day,:0.00539506546689673 States,:0.005388999948354885 nothing:0.004866081988166338 county,:0.004851025492196521 years,:0.00481639687616205 law,:0.004115767223861971 be:0.0039424810765098925 :0.003846079496480585 year,:0.0038004105981382093 :0.8359986986514284 +of:0.42617076038535 in:0.1482119613595577 the:0.09823489330191264 by:0.06372674960184291 to:0.04079609562242326 along:0.03400505103593229 on:0.031515914525712445 In:0.02158650788937191 with:0.014987254065574515 from:0.014660164327536302 upon:0.012442027940198525 at:0.010153333019660494 for:0.008683446246717057 that:0.0078473503664911 and:0.007632714160824864 ot:0.006937374938842022 which:0.006309499070990984 against:0.0061463677174829374 tho:0.003724259132655373 :0.035228275290922685 +a:0.41530690144709376 the:0.11413809872245488 very:0.05109147704426034 but:0.04036752043917508 of:0.0341369072805336 and:0.02983917514203853 A:0.02562664574049349 is:0.024060939450024542 with:0.01878750321882679 The:0.017887249953961355 his:0.017351533870941377 her:0.015008060925763197 as:0.013867746946525232 that:0.012393113545193396 was:0.01040093229151475 this:0.010055532683032388 no:0.009859743004332294 their:0.009534249279293798 by:0.008969129070318525 :0.12031753994422266 +the:0.6818372382459081 The:0.03865337714951815 tho:0.03505965157610083 of:0.032013391411759386 a:0.026569484967087695 general:0.018836559349721768 and:0.015195364316294254 in:0.01228673634932796 tbe:0.011318501149957397 great:0.010961732465976662 States:0.010332969752834171 any:0.00928188162652508 other:0.009067252241861924 our:0.008689014668591413 new:0.007459933531617325 federal:0.006607943787569029 British:0.006037744939218086 on:0.005892484044898477 this:0.005500884932474014 :0.04739785349275819 +of:0.09129790931378902 the:0.07369883040827747 and:0.047842263382354346 in:0.04189055351593407 to:0.04045875475680249 a:0.03542341257202578 be:0.02020462051672066 for:0.01979292654746225 was:0.01760256398103379 at:0.017380150555488715 is:0.014984483003968216 with:0.014047653760730413 by:0.01374644383819499 :0.012670486581795598 In:0.01200961464556976 or:0.011563835749786333 from:0.011391516893522809 are:0.011273104484969465 that:0.010755276030689069 :0.4809655994608848 +the:0.1454500361787387 of:0.1080247151493501 to:0.04516715868785427 boy.:0.036249098323069925 and:0.03403580073245388 girl.:0.032660326140049385 a:0.03171979252021135 in:0.02714044436566853 for:0.02365213940166824 be:0.021942286684630472 their:0.021087116084698817 his:0.019774122064073623 was:0.014637031197642503 with:0.014008395154201525 are:0.012730720509515858 is:0.011363112041341867 as:0.011357870543086747 from:0.01063391638067422 were:0.010589399829418696 :0.3667765180116513 +made:0.0999812034390529 and:0.06680208263369662 caused:0.02435411478715239 shown:0.02379785223577525 up:0.023253655008919294 ed:0.02312002180398423 out:0.022293807888227747 taken:0.021988971765594088 done:0.02128782706813444 given:0.020283609421760777 paid:0.017098570970207227 owned:0.01708227903067019 that:0.01698438626809451 or:0.016145946252097726 him:0.015808363688274 followed:0.015366441255538056 appointed:0.015126279845513936 held:0.013990473525433292 approved:0.013949758860964168 :0.5102843542509091 +of:0.09129790931378902 the:0.07369883040827747 and:0.047842263382354346 in:0.04189055351593407 to:0.04045875475680249 a:0.03542341257202578 be:0.02020462051672066 for:0.01979292654746225 was:0.01760256398103379 at:0.017380150555488715 is:0.014984483003968216 with:0.014047653760730413 by:0.01374644383819499 :0.012670486581795598 In:0.01200961464556976 or:0.011563835749786333 from:0.011391516893522809 are:0.011273104484969465 that:0.010755276030689069 :0.4809655994608848 +the:0.32851411585554663 a:0.28155324283988825 of:0.0667312416450571 and:0.035685666524023454 The:0.034718419310821806 very:0.032834379409897106 tho:0.03129375640389268 his:0.023658113520816714 in:0.022223047473311594 as:0.013399331233402782 its:0.010643243345862577 this:0.010524237911481498 that:0.010196363678676807 their:0.010117125547169951 for:0.01005297728075516 A:0.00992283586957674 on:0.009455369435337714 with:0.009383825484205329 tbe:0.009332974761331136 :0.03875973246894495 +the:0.16807735899698817 of:0.10541662057906837 and:0.05138367848570702 a:0.04141865232648221 to:0.0385989743764065 in:0.026264864977736738 was:0.019530675665220657 his:0.018900421021236905 be:0.017373825006196972 their:0.015767721170721456 for:0.01557246589796783 with:0.014071419046630446 is:0.012922913111931644 at:0.012690452250034052 are:0.010702713108721902 .:0.010158075558988393 Mr.:0.009672788574483367 tho:0.009612591781990074 were:0.009549306361446321 :0.391314481702041 +of:0.17312045953146765 to:0.147412153866368 in:0.10222337467994962 and:0.054803139614302034 with:0.04604055511572184 for:0.04149904562368754 at:0.03956938147048781 reserves:0.038840851192945114 have:0.03400578225267063 that:0.03306989117480937 on:0.03199060342861318 is:0.02894910298991354 by:0.028586012888662186 from:0.023493428337626375 In:0.019580418354436822 had:0.01928798308388368 was:0.01712562291840452 has:0.01581001057391569 as:0.01572831389810426 :0.08786386900403018 +to:0.18494945072817237 the:0.14185319828539894 of:0.10912695309336308 and:0.07280945336165301 not:0.06663177627425074 for:0.034431970885752144 or:0.0337834903061728 at:0.025687991267449445 in:0.025673553273153633 can:0.015083952074025258 will:0.014338258369931703 would:0.014203444482110953 from:0.012421733175949062 The:0.012340241284347846 tho:0.010562280903382223 is:0.010051294038136191 with:0.009904392333713992 it:0.009069087186055686 States:0.009064180930143296 :0.18701329774683764 +the:0.22776340373692494 a:0.10130101969250176 of:0.08682317604881952 lode:0.07008754055248943 by:0.03249184462973148 for:0.03226170291011416 and:0.0265473856620051 this:0.02382116067241334 that:0.023278153042847867 with:0.019430397076040048 The:0.017597731925284903 any:0.016388297416968883 other:0.016353536393283394 one:0.01600623671651331 placer:0.01598981710428779 at:0.0151251193172033 to:0.014693322252198836 from:0.01462463838312125 all:0.014069964714241183 :0.2143455517530095 +and:0.08437700354857254 it:0.0360437207698876 that:0.034826960952550313 them:0.02873512689473249 found:0.023339515341353707 but:0.022635518520700098 is:0.02117974192225096 or:0.01863791639203227 not:0.017185598193240295 was:0.01691985106152869 placed:0.016785479674303078 made:0.01643039023664752 him:0.015181399872204938 as:0.013871587193966573 up:0.013633714083522342 are:0.013273489932885907 put:0.01321702036732056 out:0.012922518087394528 done:0.012410428449245954 :0.5673930185056596 +of:0.2363460953012322 in:0.1312561309369335 and:0.071857577222654 to:0.06964041985601513 with:0.05634642791957651 for:0.052123862228656066 by:0.03709245470771219 all:0.036888120189764284 from:0.03368195824647899 on:0.0312942936394529 at:0.02772015612120838 In:0.018595624238642226 that:0.01661143134815104 upon:0.014529454946839522 as:0.010527822265558807 within:0.010065272762893757 through:0.007584197962800866 but:0.006891160458981784 after:0.006609930051429546 :0.12333760959501827 +as:0.04646788917622538 able:0.041178878790260165 is:0.04099928335847222 and:0.03928554456192024 order:0.03607463441877705 enough:0.03370645688833525 right:0.03350616465248109 power:0.032929997468514445 necessary:0.03235871501977323 him:0.02789633752103865 was:0.023232692648566027 made:0.023222347864855303 have:0.023090479914542106 ready:0.0230403950960308 attempt:0.022804722903855042 them:0.02150037014822311 unable:0.021276070343316605 not:0.02046407176098908 began:0.02039242716852173 :0.43557252029530247 +and:0.09001338176432133 looked:0.042123539845518435 depend:0.04156047038138998 called:0.041090719324692486 look:0.03140151525375314 due:0.027582345513941006 down:0.023335368129497495 made:0.02130735185947165 imposed:0.020972470018594872 that:0.01955687304006376 levied:0.018759393411789813 call:0.018346909437291312 depends:0.01627074540443726 is:0.015613787575417162 placed:0.015502491254465987 it:0.014686284885582539 conferred:0.014650633743248487 enter:0.01397142938313036 fell:0.013846669333015059 :0.4984076204403779 +and:0.15563598083930374 fact:0.08711133430257853 so:0.058396464404789995 is:0.0579273243303576 know:0.03891059414000834 believe:0.03502353458944794 say:0.02956643029162141 was:0.0244460879735422 found:0.02198426212440242 but:0.021647450971207037 said:0.020296919668606115 think:0.019452871708646135 stated:0.01753336395586828 show:0.01665691069363014 of:0.016641414712527034 given:0.01606702283810136 see:0.013748934150150846 to:0.013612160583704404 ordered:0.013591989952554125 :0.32074894776895235 +one:0.1028303141280697 part:0.05963429477052991 out:0.04766456937681193 some:0.031418679026461914 members:0.030764490253327767 side:0.029940657362655835 portion:0.022063658796890564 office:0.020457735219956013 member:0.019726706386316174 end:0.019666887540649894 tion:0.018667441728710307 parts:0.016814747270460957 people:0.014112771422418794 all:0.014072739582212475 any:0.013183573287639892 One:0.013083578354183906 that:0.013024335602903442 account:0.012482348155001894 many:0.012077825070275192 :0.48731264666452345 +the:0.18042489811788612 or:0.15982068359250476 and:0.1378008343626756 of:0.07043722358716273 for:0.055456500351150746 in:0.05497831723700288 to:0.019880623342208928 from:0.0190734438623922 with:0.01838015829469354 In:0.018162103799771553 that:0.015769154635782424 by:0.015526646261344947 on:0.01535781995122341 about:0.014872706440111145 The:0.013064895180959532 but:0.009939210009238643 than:0.00966629211889226 these:0.009194009121821318 a:0.009007835404695278 :0.15218664432848197 +of:0.22547645859652307 to:0.0976255956545342 in:0.08975713220785093 with:0.06434602133951098 on:0.04667326786831187 and:0.041649932604920926 for:0.0398249655813687 by:0.036685018433643767 from:0.032664781559268836 upon:0.021490740627235556 that:0.02139281221101055 at:0.021288306778277744 In:0.02025590254753344 as:0.010353932037056318 all:0.010074400759570251 over:0.008939820994499942 or:0.007693784865817322 told:0.007468153789186353 into:0.00691772114560941 :0.1884212503982698 +of:0.1904366577151877 to:0.06377954834202755 the:0.0633827173182756 and:0.0443180630611621 in:0.04078832480681067 a:0.040162761109706194 for:0.021700665612635756 with:0.02032440229188433 that:0.017544409262693055 :0.015227630744193454 as:0.013758119999919428 or:0.01371880126659776 which:0.01306271130986671 at:0.012971091125412709 from:0.012678334047714193 by:0.012453594941999494 said:0.01136502893777145 on:0.01080196281446197 The:0.008923926041984954 :0.3716012492496949 +to:0.2513406316687886 will:0.23324828426243505 would:0.09858130668372206 may:0.0704794136154196 should:0.05955817027087959 shall:0.05180066958766575 not:0.04636770684839609 must:0.03069218321645459 can:0.027478136881659964 might:0.017072345506157976 could:0.016051185829757994 cannot:0.008791640116280159 and:0.008646581292782892 as:0.007935248594231782 it:0.005657613356155685 soon:0.0034451139369347794 so:0.0032036319356510043 that:0.0031446899002495095 only:0.00300653570074319 :0.052498910795633735 +of:0.09129790931378902 the:0.07369883040827747 and:0.047842263382354346 in:0.04189055351593407 to:0.04045875475680249 a:0.03542341257202578 be:0.02020462051672066 for:0.01979292654746225 was:0.01760256398103379 at:0.017380150555488715 is:0.014984483003968216 with:0.014047653760730413 by:0.01374644383819499 :0.012670486581795598 In:0.01200961464556976 or:0.011563835749786333 from:0.011391516893522809 are:0.011273104484969465 that:0.010755276030689069 :0.4809655994608848 +and:0.1746593705948059 all:0.04861782534398381 of:0.04333682071459037 to:0.040257669598182715 time:0.02599859025746022 but:0.025137589941658073 for:0.024222294887978297 fact:0.02305392362702443 things:0.02109731261432019 order:0.020374101312150762 so:0.01888059334470247 that:0.018673357530362623 at:0.018590155102215376 him:0.017286732284304798 is:0.01708081532561048 you:0.016655401258773777 know:0.016627195480472375 said:0.014951074031674262 men:0.01484539287274516 :0.3986537838769839 +and:0.13606308064851522 to:0.09361010828710505 of:0.07662727368263358 the:0.04841798420077051 is:0.027829296323873022 be:0.02519945129763414 was:0.024261337948336115 for:0.024231441048034933 which:0.021134197304784712 that:0.020789766946831323 as:0.019904777556418635 an:0.019431093581255575 or:0.01831880077006151 it:0.01732898776264039 with:0.01692752835744806 he:0.016627102632385066 in:0.015021816173527682 have:0.013622938173719974 not:0.013267373897955669 :0.3503856434060688 +they:0.17586453668608815 who:0.13205843096385658 we:0.10424281417996462 you:0.06255367575038093 and:0.05725149261217694 We:0.053880843446503936 They:0.04288880393321625 which:0.03425150557653349 men:0.030591270532660586 that:0.027505321569153876 people:0.023316932377357356 there:0.022522292961925684 You:0.010095442226698394 these:0.010077021036587544 women:0.009772318083945299 as:0.009123416676542899 There:0.007747921622305398 I:0.007670466254369052 or:0.007551218375348469 :0.17003427513438454 +the:0.5528688494516089 The:0.11381200844953734 in:0.06648081147651427 a:0.05228868995658177 In:0.035735214335688936 of:0.0279470286742334 this:0.027601299870423753 tho:0.02250248174474765 that:0.011775416247962179 This:0.009328099939087661 and:0.008192121418774822 no:0.007507705151679391 tbe:0.00710182686340686 his:0.007064265918071565 any:0.00476232610199781 its:0.004425530106712876 great:0.004392571243379928 Tho:0.003666163584629759 to:0.0035759094152617806 :0.02797168004969944 +and:0.14625498311756543 said:0.0821408402137806 fact:0.053042879817408975 stated:0.043080626045290886 so:0.03670560455337853 him:0.03145185140002361 know:0.030269284895004085 say:0.023631027804186345 is:0.023317250373478222 says:0.022511697585094068 believe:0.021363437164841573 but:0.01993757805139123 saying:0.018992342115662253 told:0.01877630041085035 replied:0.01865923525468731 all:0.017484377075553177 found:0.017287552137347117 me:0.01691240193856356 stating:0.014580183464830303 :0.34260054658106237 +of:0.09129790931378902 the:0.07369883040827747 and:0.047842263382354346 in:0.04189055351593407 to:0.04045875475680249 a:0.03542341257202578 be:0.02020462051672066 for:0.01979292654746225 was:0.01760256398103379 at:0.017380150555488715 is:0.014984483003968216 with:0.014047653760730413 by:0.01374644383819499 :0.012670486581795598 In:0.01200961464556976 or:0.011563835749786333 from:0.011391516893522809 are:0.011273104484969465 that:0.010755276030689069 :0.4809655994608848 +of:0.27846130828733096 to:0.0993053389879765 that:0.07583849271798591 and:0.0737569171336633 by:0.053354684559692 in:0.0449080336048643 with:0.04482709515939357 from:0.03691875153656135 for:0.03509824190422873 as:0.033845150469888 on:0.031489625605178755 all:0.02138597416505581 at:0.01883959181736941 is:0.016275263848436722 upon:0.014802041605830249 or:0.014457296857290164 when:0.01358781166028626 but:0.011206838160511332 In:0.011127049957481924 :0.06951449196097477 +and:0.022937245858269832 it:0.02056299799376933 them:0.018284358883278395 time:0.016631112706513212 men:0.01589869846298596 day:0.01578091995652566 him:0.014339829818190267 well:0.013375583250780192 made:0.013006827402446994 now:0.01246617841532679 years:0.012374133418970224 the:0.011405908162384976 to:0.01140068273971096 up:0.010038808651861023 work:0.010027235164684324 of:0.009508441822974702 board:0.008811580812420406 law:0.00788677891520286 :0.007845759347211824 :0.746416918216492 +and:0.19849802182304507 to:0.1739184743673781 of:0.05557364392119837 the:0.03612650725658663 who:0.02281440579785854 or:0.020954480265663926 not:0.019186335385522696 by:0.01653584378400481 he:0.01623248203567499 in:0.015356880315755139 will:0.015117338402974209 have:0.014539325167425383 would:0.013745421982772798 that:0.011852143443643519 had:0.011808917003045554 for:0.010754294197917208 which:0.01034666982483541 I:0.01012542579265435 it:0.009929313559686657 :0.31558407567235663 +to:0.09864282010030183 the:0.08375297126946753 of:0.07074571151673052 and:0.06779046829403 a:0.02766650927741597 in:0.021670314456411932 at:0.021392828982420006 for:0.01627599403114278 is:0.015107338441904122 he:0.014818877918256685 was:0.013808540905081488 by:0.013132601340090633 it:0.012796195965848819 I:0.012723560421513859 :0.0121914922721236 not:0.011777366450725432 .:0.011011346691779235 that:0.01092359583028988 with:0.01073896800850032 :0.4520324978259654 +to:0.18494945072817237 the:0.14185319828539894 of:0.10912695309336308 and:0.07280945336165301 not:0.06663177627425074 for:0.034431970885752144 or:0.0337834903061728 at:0.025687991267449445 in:0.025673553273153633 can:0.015083952074025258 will:0.014338258369931703 would:0.014203444482110953 from:0.012421733175949062 The:0.012340241284347846 tho:0.010562280903382223 is:0.010051294038136191 with:0.009904392333713992 it:0.009069087186055686 States:0.009064180930143296 :0.18701329774683764 +:0.04202651635140494 them.:0.04095009627939915 it.:0.019980385744997865 men.:0.010274755129951046 him.:0.009408772152697607 time.:0.009060498585269434 day.:0.009003786552150358 people.:0.007630705582454953 city.:0.007421552657989989 country.:0.007410654223059548 years.:0.007297996268668062 themselves.:0.007108453283040372 night.:0.006853529017272298 work.:0.006107530899327827 home.:0.005777070529916028 us.:0.005499281996334523 year.:0.005382973486066241 life.:0.004812366138633584 there.:0.0048051199059521025 :0.7821879552154141 +the:0.16322492198804703 of:0.11184393881783804 and:0.06048126658183783 to:0.053148063183741844 at:0.04499145855208259 in:0.044749143181616824 a:0.03831296108914177 for:0.0263954079228371 by:0.018462603373362408 be:0.017794347346892732 or:0.017120223728245648 his:0.015963692983771517 their:0.014726537476164502 with:0.014461725959621323 was:0.014107958710707172 from:0.013487663168711039 In:0.012963492949734375 is:0.012667777432185084 tho:0.011790887026001791 :0.2923059285274594 +they:0.09565288239251273 it:0.09224239793602271 I:0.06540210832481004 he:0.0632771887100394 you:0.06111240361693305 It:0.05953819190211657 which:0.05749457158489674 and:0.05124242813684892 we:0.04311119586137457 that:0.03916356794469176 who:0.021817993131872167 she:0.01748747928292694 They:0.016829837496785533 there:0.015689594817162658 He:0.015048675038437062 We:0.010434538323618773 You:0.010162767254076981 1:0.00983806088241766 men:0.008735128007009693 :0.24471898935544606 +:0.09911392108758758 it.:0.018546260794332737 them.:0.014242189050112306 .:0.009171851791269288 time.:0.009170286942579077 country.:0.008424461303235205 day.:0.008389672882484331 him.:0.008052008868811519 year.:0.006291763148730934 work.:0.005277560322691226 people.:0.004703719445256081 city.:0.0046980528893736185 years.:0.0045505717928425145 world.:0.004487380907210476 out.:0.004433374156458378 of:0.004330683395030774 tion.:0.00413239826115234 men.:0.004088112377108276 States.:0.004067222108247799 :0.7728285084754856 +when:0.10981744328618308 that:0.10367298137891534 and:0.09921010524464204 as:0.08235056568285139 which:0.07503315976118229 to:0.040776633805591676 but:0.026317059133649328 where:0.025106413379162102 will:0.024773803614287493 would:0.023116966426553146 I:0.02296958588512977 before:0.022867153993204048 if:0.020521368378482088 t:0.019490316846610057 whom:0.01882865509297146 Then:0.018228229167264333 had:0.018035933372239202 said:0.01790100170761339 When:0.01738755650599238 :0.2125950673374754 +made:0.056441676089264904 and:0.05386979915282746 owned:0.029348387319123263 or:0.0259535095018407 done:0.025491956195667173 accompanied:0.02428511111507372 followed:0.024167212146448118 that:0.024097375595212685 paid:0.021325150073577003 surrounded:0.021296502417672225 ed:0.020719483517687067 caused:0.020441645656883153 occupied:0.018962190771213125 them:0.01807450848067721 him:0.017217227051245232 shown:0.015888228949187257 executed:0.015485700218052003 it:0.01492277660902866 given:0.014575117432788678 :0.5364364417065304 +of:0.24947966122729795 in:0.104144915857779 to:0.09745214699183602 for:0.06226732679425122 with:0.06166637383295456 on:0.05642772670997322 by:0.046690211566368336 and:0.04574554134324954 that:0.034430766942588675 from:0.03279523435271891 In:0.024378687755927712 all:0.022441407163273905 upon:0.01747683550807569 at:0.015042100846452461 under:0.014328546700048758 is:0.013788584667988484 into:0.012097014818551882 as:0.011956747869863584 through:0.010293450954637545 :0.06609671809616256 +the:0.3397883831719906 a:0.1262201707423903 of:0.0609788425863709 and:0.04693605877934529 The:0.035811739945886004 in:0.02437244742653633 tho:0.019807671868247757 an:0.019627477042428388 or:0.015536234258665326 at:0.011592049668382894 to:0.011430518429795082 tbe:0.010430765938219734 this:0.00963677103376383 A:0.009209938496660505 his:0.008796350011193482 .:0.008317839926696253 that:0.007265515592416399 on:0.007064232510792607 In:0.006501741205785146 :0.2196752513644331 +well:0.0783261505813394 known:0.07715919941364807 such:0.05477142900040686 and:0.04863188910629108 far:0.0445482759728691 soon:0.03102312685208889 is:0.028257952691436966 just:0.028005499533101993 was:0.022532512345363628 be:0.022395863339445075 much:0.020508662953047308 regarded:0.01823330307450135 it:0.017273059614160098 are:0.016747984622291417 described:0.015259584918361666 long:0.012277346915599112 not:0.011208503916372204 them:0.011089145850343493 him:0.010809593852119817 :0.42994091544721247 +they:0.10780871195233697 who:0.08107550006253063 we:0.07662890278703095 and:0.06645499786436862 which:0.05467089303165866 They:0.03513836885655279 that:0.032261119533079294 We:0.030690904753878798 you:0.020889118620867907 men:0.02041537872602597 people:0.011829397048465416 as:0.009218517566547157 boys:0.008605248250430797 I:0.007778951197256598 You:0.0077058307546464385 lands:0.00720541162526268 section:0.006565115451120966 women:0.0056088736652452845 1:0.005342083303413249 :0.4031066749492808 +part:0.18992133416239648 survey:0.08119908264450262 conviction:0.05680712038020391 one:0.051280170984314644 payment:0.03732573354193189 holder:0.028887091751831472 either:0.019406808251802722 sale:0.016731098366474906 acres:0.015885611048331402 value:0.0119346541048622 pursuance:0.011683998881850188 portion:0.010661608309702492 all:0.010125174247187915 office:0.009107996550470732 publication:0.008455613883551524 parts:0.008367224786652605 that:0.008170777570969984 cost:0.008056429838881591 any:0.007740737208070052 :0.4072517334860106 +he:0.1959459439411393 I:0.12554608146610335 they:0.07463067487977199 who:0.05929838623819049 and:0.0516054397341898 He:0.04989533581054831 it:0.04672214114066267 she:0.04610525840407699 we:0.040167227457775574 be:0.027197645595949282 which:0.02655471759097836 It:0.02346465123399257 have:0.022693720680086037 They:0.017521111313628678 that:0.01711868730311713 She:0.015304412265340246 has:0.014128388580224539 We:0.013751288492579207 lie:0.011892590237562485 :0.11945629763408303 +of:0.1650629953075141 to:0.14326828018493074 in:0.12583160278298217 for:0.09421038746310122 with:0.07291665189164594 at:0.049278822861547 and:0.047738753938101904 from:0.04181641638419175 by:0.038974128220929966 on:0.028493957748033847 In:0.01930841300412581 that:0.015499365222424764 upon:0.015133145705505639 under:0.014016434455877372 up:0.01355919499122538 as:0.012919194255204474 or:0.01169303213228325 have:0.010207992904454365 all:0.007647134374997204 :0.07142409617092314 +of:0.1544718241702165 as:0.13732925217787287 that:0.07121644593041526 is:0.07013998874004987 and:0.06913117033373617 for:0.0521320687071703 to:0.04617923870917134 by:0.0359307885191707 was:0.0343412174972251 with:0.033964646787860556 in:0.028954531904370667 be:0.028322706643073958 all:0.02012720783453791 not:0.01939578591858647 when:0.01746665200441334 if:0.017174587706832653 from:0.01595579248857951 which:0.014851736753202886 are:0.014276229526325906 :0.11763812764718803 +the:0.16889736266749034 of:0.12708038923903542 two:0.04374835126665597 and:0.03956789310784405 these:0.0308465278766962 other:0.02994756603787913 all:0.025781784972906376 his:0.02083202457012002 both:0.0183116221576374 for:0.018146240238554153 in:0.017434750457682294 few:0.01702642538650914 their:0.016326029050459948 or:0.014638543489533787 three:0.01390488229914192 boarding:0.013242061064835112 to:0.012997470246904192 tho:0.012685422847783108 hundred:0.012511699076156598 :0.3450729539461748 +the:0.6373620625132707 his:0.043670043979151925 to:0.04275628770015214 a:0.03258383041437062 their:0.030676100029472755 tho:0.025019107600949227 The:0.02449227131710085 my:0.022312368776898222 an:0.022267807309147833 its:0.018862945163333714 very:0.014070927445945881 our:0.013129718327398263 of:0.010354813369462666 your:0.009990659092150456 no:0.009116447496890093 tbe:0.007595529332929398 and:0.006599956576187032 in:0.006073196368254571 her:0.005170037886986486 :0.016895889299947175 +the:0.16620819942130882 a:0.12560315474038472 of:0.06864195760752986 and:0.06328213520945321 to:0.05659120857786627 in:0.03929538462855053 with:0.017190473768191793 his:0.01711692408480744 for:0.01520341034060646 an:0.0132505931829474 at:0.012617359288773463 or:0.012482819981255047 their:0.012105073742611897 In:0.012094953996235362 .:0.010974046048413694 Mr.:0.010960516961120699 do:0.010850408988789867 tho:0.010435121784875235 The:0.010210775869992108 :0.3138854817762861 +the:0.15017509938197451 of:0.13179737707348302 a:0.08362192757566095 in:0.06061662325138856 and:0.05770688304065123 to:0.04447597612158528 on:0.02473165590126558 his:0.01914812089599895 an:0.018519580677044532 from:0.0183728270739313 for:0.016489090790878774 with:0.01563456205905053 The:0.015539848767404578 In:0.014034283928873594 that:0.013988393220561054 their:0.013361997840260457 as:0.011679374267106427 :0.011556643609160982 by:0.011513554073294617 :0.2660361804504251 +and:0.08995317707915026 to:0.06844710404109794 of:0.04605142056172993 the:0.04074574508561307 which:0.02479116931334353 that:0.023764822140213245 re-:0.020841117231308055 in:0.020803825395358622 for:0.020278423301550053 :0.018417753428486977 not:0.016860793136637672 con-:0.016444405871234195 is:0.014386481772210856 or:0.014080680914153714 be-:0.01352268143271276 I:0.01317002660943805 was:0.011429878269381662 dis-:0.011196807025842847 he:0.01113106290024311 :0.5026826244902934 +of:0.28246619798467215 to:0.11233447262943971 in:0.08553412799322431 and:0.0609864333041679 that:0.05084620535727728 by:0.04882856952717545 as:0.03387918529623895 with:0.031861183462294995 from:0.027530772403869936 on:0.026785612981570086 for:0.023827923733271614 at:0.021317915134494034 In:0.015365844752724574 is:0.014661156205267128 which:0.011769039595316439 all:0.011287564591039813 when:0.010541192781012943 was:0.010111304493267097 upon:0.009464044236162266 :0.10960125353751335 +the:0.511664997699034 The:0.0902880478032994 of:0.07415550779705324 a:0.07010229515870882 and:0.02963750551141325 tho:0.025731829249327206 in:0.019873415365686615 by:0.014541340791123576 with:0.013293933703669991 our:0.00994144895802352 for:0.008457247292143307 A:0.007562400918766563 tbe:0.007452992874723144 this:0.00708382094593414 that:0.005595790099599537 some:0.0050493280977615095 their:0.004960456914887942 In:0.004590333322982539 other:0.003893423346744583 :0.0851238841491171 +it:0.1559622243675163 It:0.08728451051768386 there:0.07607925895626716 and:0.05728253228372171 which:0.05565787144648829 that:0.04281233060676907 they:0.041188625254281554 he:0.038054063563270325 I:0.024138554066638385 who:0.018310559195373936 There:0.01651866699004309 you:0.014407216044184887 as:0.011883094565108014 mortgage:0.010176283577293714 this:0.009692637953303978 He:0.008555730541283425 she:0.008555479922333683 This:0.008523935219995369 They:0.007827669765537419 :0.3060887551629058 +of:0.15033210059095278 the:0.14443550275219139 a:0.12305053322603286 and:0.0910372163755436 that:0.042003296774836045 or:0.02593105323124532 this:0.02183001239733117 The:0.020008904719683238 his:0.018656700463683305 any:0.01594916984749113 for:0.015919204624014027 by:0.015212583491486093 other:0.015018158377342194 one:0.014667296657048067 every:0.014207294720732738 an:0.013565504343387108 their:0.013177166035535315 in:0.012590929054601635 to:0.012066317875524351 :0.21934105444133764 +time:0.03186695381941968 out:0.028545416236957118 day:0.022524701215579222 amount:0.021700044008458538 that:0.021318608360088476 cause:0.019635379320612826 tion:0.01715731221257957 one:0.016772917824814364 place:0.016600953333986673 line:0.01396806983748779 question:0.013398372658036232 case:0.013138100484484804 period:0.013119121399910958 purpose:0.012968308599391224 course:0.012810193845806499 matter:0.01197130132635624 work:0.011942064546019824 act:0.011880031907539796 payment:0.011828428775482692 :0.6758537202869875 +it:0.12291356726271781 he:0.10766523848787593 It:0.08126222867785683 which:0.05815091424687329 I:0.054909855356083816 and:0.04607290301292405 who:0.036234513317437905 He:0.03284977251390459 that:0.0307500349566012 she:0.02807960748770171 there:0.017106531141060498 as:0.011444714915749334 She:0.009915288061780691 ho:0.009311744482256256 what:0.009144898696231517 1:0.008083327589627603 This:0.007923029238788926 lie:0.007752420127589498 man:0.007654383581502722 :0.3117750268454358 +the:0.17919548492233633 to:0.07782262599143486 of:0.07434702251090346 a:0.07270212655367324 and:0.04663845002072524 in:0.03735579048270563 .:0.016783950066314276 at:0.015135309126984992 or:0.01197718558127508 tho:0.011844798443083657 by:0.011158607358916238 an:0.010909294533733519 The:0.010712332375725232 for:0.010708450317791487 :0.01022466488391383 this:0.009825510597589052 In:0.009153681721870493 his:0.008337207086359407 with:0.008296330369501597 :0.3658711770551624 +was:0.08259019012122232 and:0.05446228120845606 is:0.052256796740169156 be:0.03952182314743808 it:0.03721846960558718 are:0.02804803088331927 of:0.0249519561176195 were:0.024619743222495716 been:0.024326425596075223 to:0.021494755571582314 Is:0.01537683008623378 as:0.015135758369187869 for:0.014927409081046167 the:0.01424356496062919 It:0.014023146658845133 by:0.013858522658149259 not:0.013674229517959548 at:0.012866548509079588 :0.012501650246223244 :0.48290186769868143 +able:0.06748267665435874 have:0.057463085760226615 had:0.05138169512190015 him:0.044831163288313595 not:0.043823256050720454 enough:0.042372364416598376 want:0.04090397864278439 is:0.038457809738024054 willing:0.036288870542337905 allowed:0.03330530375373671 time:0.03308006406736574 ready:0.02912568859072312 me:0.02829648254806483 right:0.028256102528402036 was:0.027576377473087055 them:0.027233259853695572 and:0.026999825284839254 order:0.026929562081040498 began:0.02635201806581378 :0.28884041553796713 +it:0.16082846480156665 he:0.1347768543360014 It:0.11142358252615661 I:0.059404796888514314 He:0.058936855100758176 she:0.030329217045727486 which:0.028770155291951757 and:0.02616476833378221 who:0.022585165700600752 there:0.01779229017474935 This:0.012393251888203177 She:0.012196153115181931 that:0.01212365685294343 man:0.009796166850563438 lie:0.008492707358861203 body:0.0077928376535808044 ho:0.007732775639397672 action:0.007635094538540467 bill:0.007195655045127956 :0.2626295508577912 +and:0.06454739073657131 demand:0.023313300174744492 ready:0.0192991955467307 used:0.018559068069203856 time:0.0167973135366693 not:0.012889415712033305 vote:0.012868664167591082 it:0.01277775949265748 candidate:0.012059490274945432 him:0.011492660117416436 them:0.011389360230310022 called:0.010603763162339089 made:0.01030049958521204 up:0.009942829375404135 was:0.009875709402481388 as:0.009516893763303088 patent:0.00929908628672026 or:0.009178704268878403 but:0.00882338719685127 :0.7054655088999369 +at:0.585948683801856 the:0.27092257869740066 of:0.03887667042046857 to:0.021188943227123096 At:0.015525064764695342 The:0.010394867534173532 in:0.005730155694591178 our:0.005689383562641946 tho:0.005210832068036588 and:0.004916912530917895 a:0.004868544412677682 its:0.004295272625167654 nt:0.0031129737751392464 their:0.0031007042670011206 for:0.0028476423324156415 by:0.0025925828558532203 his:0.002203520031183347 from:0.0017583816028210173 tbe:0.0017401446498872906 :0.0080761411459489 +of:0.27555551943160794 in:0.11804198572784416 to:0.08935386628810571 for:0.06597059265294442 on:0.05733295803265729 and:0.044125340458957475 with:0.03678455941285588 that:0.03474013979309708 In:0.03154411775214882 from:0.028953624383411963 at:0.028787732000310533 by:0.027181645628100923 is:0.01594310499306201 all:0.013467241300642675 upon:0.01322573744760121 as:0.012076509571318778 into:0.009962643095281973 was:0.009657750360573047 be:0.008423502674471351 :0.07787142899500675 +of:0.12290803917675319 as:0.10092694216438537 is:0.07281656193772186 and:0.06015296850196632 that:0.05866341917992869 was:0.051952494436217335 by:0.04992156188831352 for:0.04902278142030771 to:0.04901558791793477 with:0.04340264710651162 be:0.036197850262557216 such:0.03045394143858003 in:0.025432829326508078 but:0.017822137430435737 if:0.016592157277447814 like:0.016438295815065875 when:0.013881702727969437 not:0.013340375855818924 If:0.012927364416938977 :0.1571303417186375 +:0.14839435289007336 it.:0.021731919075473363 them.:0.014406183704783578 day.:0.01283806929146327 .:0.011411167669640078 time.:0.01127375965144301 country.:0.009342676079991131 him.:0.009284763195166017 year.:0.007674031523017057 in:0.006494584024336732 city.:0.006241841082167737 work.:0.005811084582189144 of:0.005730499000329049 way.:0.005455483288143154 people.:0.005442380067814139 years.:0.005228991670527742 States.:0.005214144883486817 to-wit::0.005123261324769841 men.:0.005074783840398586 :0.6968260231547861 +of:0.2148984892828973 the:0.07545847505265073 such:0.05268806659824361 or:0.028521069254311866 two:0.023563129592654657 young:0.02335934297104707 hundred:0.023020335692610115 other:0.02151548982286094 by:0.020529231546296038 white:0.01937635070417383 business:0.018860163533554866 for:0.01862846137619775 a:0.018410787809568428 good:0.01686061909110014 three:0.016370245433952834 all:0.016289229755916998 and:0.0161285223150446 four:0.012933786513764017 one:0.012395594210556884 :0.3491926094425973 +gave:0.1655626492636411 give:0.13282657949218998 to:0.12869361527533496 told:0.07079866285828677 for:0.04185998706511576 with:0.03766543100585451 tell:0.027556748709520826 make:0.0248207139608293 gives:0.022541304954612033 Give:0.0217973895422854 made:0.0215630960031962 send:0.02028742305428696 at:0.020144346226051626 giving:0.020074210308974202 given:0.01785048808859139 of:0.01741552774418253 sent:0.017378861805781406 took:0.01680389150043231 upon:0.015224741613070164 :0.1581343315277626 +amount:0.063880564433733 out:0.04787107313024992 purpose:0.04244906502042612 instead:0.03828605659594717 number:0.03172249570069852 place:0.029639447234593014 rate:0.029135518837658095 full:0.02781373097044152 matter:0.027020387759784725 line:0.026545856743372894 means:0.02275604874086033 cost:0.022599970904259636 way:0.02238217701108275 one:0.021824627595353488 deal:0.02167649971535933 point:0.021296728837453364 kind:0.021033160603963867 plenty:0.02016181658955278 part:0.019358016468760106 :0.4415467571064493 +the:0.08007545584487924 and:0.0742495720267673 of:0.07137373376630932 to:0.04993892264461224 for:0.0348150255665546 that:0.03401490593596078 in:0.02992298726104562 a:0.029195039225969492 or:0.02428694026178969 is:0.023609257117130873 which:0.022254687889725483 was:0.01933070792293352 be:0.017702343762842295 with:0.017335695283208427 there:0.015096202648131055 are:0.014163937373256535 it:0.013680249933215384 he:0.013377644128481966 has:0.012921208151903982 :0.4016554832552822 +and:0.10478827759744998 demand:0.0262833035231338 time:0.019193287753418855 or:0.018410322750929103 made:0.017289516939686386 ready:0.01668228948854268 up:0.016117980380157205 used:0.015909754330129786 that:0.013606385957898766 them:0.01247529913405956 vote:0.011947991693492034 it:0.011573147553999552 place:0.010909347511099671 was:0.010856052537754768 not:0.010522137886824738 but:0.010368643574377301 is:0.010182485325023027 one:0.009794316195003141 as:0.009763681022409723 :0.64232577884461 +of:0.20888141403248828 in:0.10519282802381359 to:0.09575735161703688 for:0.05792000607821303 and:0.05595514059840494 that:0.04728601528411042 by:0.04190648630616968 In:0.03797545200821844 on:0.03330876319770814 with:0.03295319176497699 all:0.029335506661966267 is:0.028737378040816174 upon:0.020688033055762854 from:0.02034076596171882 at:0.0181555903902314 was:0.013547544399467133 as:0.011561308614163003 have:0.011264761375747534 but:0.008875451178065218 :0.11935701141092118 +was:0.20442381360721737 be:0.14911552998900982 is:0.12038408897320793 not:0.06687986204752917 are:0.06574406717669266 and:0.05127947998582513 were:0.04690047861727797 had:0.03602790754502527 been:0.03599667190755005 have:0.032351971335394275 will:0.01793277033855624 he:0.01767180314751305 I:0.01702056552449342 Is:0.01697350506863647 has:0.01633266917773387 but:0.015101596632466336 very:0.013455979902836883 so:0.012278644312977267 would:0.011783952453907657 :0.051344642256149126 +of:0.14148572499919876 in:0.09074241039161411 is:0.07591183448174671 was:0.06686442894865015 to:0.06607901900370469 and:0.0642250008327564 as:0.062088802307337314 with:0.05665975193307862 by:0.04412303471992059 for:0.037088851075923114 that:0.03347473419323691 be:0.027704658053921485 such:0.026262628086548123 make:0.021497943230653883 made:0.020810022891074535 In:0.019110912788081375 from:0.01722711748831038 have:0.016823790914599953 had:0.016184216535559254 :0.09463511712408366 +of:0.11134572177493632 and:0.08902955457947626 to:0.08320493933683627 or:0.08264829655664845 the:0.07698222938619555 in:0.057839073544563586 a:0.05038974729019773 about:0.049360045277067346 for:0.040878486256378 from:0.040795582397133184 at:0.03586885307987923 with:0.02457877624168132 than:0.019055523089277722 by:0.014663165924112147 In:0.014550504926518406 that:0.014419485122189454 within:0.014284629419092077 thirty-:0.012363401805654223 past:0.012216478929027809 :0.15452550506313492 +of:0.15052462281760146 in:0.09888260256677932 and:0.0912744297583886 with:0.07342504605684277 is:0.0726005967642979 was:0.05801869933247989 by:0.05611410562290359 for:0.055052590530080825 to:0.04245561789377467 that:0.025679024076050952 In:0.025115450120076994 as:0.02368867787720414 have:0.021323167687684583 had:0.018358275641146875 from:0.0182220961811488 on:0.016659826653531506 but:0.016564881897716672 be:0.014639101156714256 has:0.014460198446530948 :0.10594098891904521 +man:0.09006979503418337 and:0.0676682959449336 those:0.055047190287998565 one:0.05180039197513442 men:0.03757612919440723 all:0.02747776237828006 woman:0.023300017749961446 person:0.021071399980195842 people:0.015215230930010308 man,:0.010440339852170947 girl:0.00899216067494532 persons:0.008875427048516245 but:0.008126990772274557 women:0.006747350391063707 of:0.00619349440655958 others:0.006015749269921171 Those:0.005935926958504449 or:0.005643867713255262 many:0.005536099090707113 :0.5372663803469768 +to:0.7713554187915159 and:0.046911574527547135 not:0.039522898257171764 only:0.01060002479001299 in:0.010533219149469029 for:0.009233588412658589 of:0.008723992806740268 never:0.007664066209931952 or:0.007462961572001708 which:0.0064074158420000535 who:0.0060891057833748164 that:0.005842673205145041 will:0.0056985551171216 it:0.005461633324195544 I:0.004673476793231299 than:0.004469453024872827 In:0.003998873784575823 also:0.0039436184668186726 have:0.003815945048750383 :0.03659150509286458 +he:0.10557321192204606 and:0.07188665337047123 I:0.059030426838641806 He:0.055126224706346705 she:0.04038155931269019 It:0.030093021460992207 who:0.024374398598422126 which:0.023223164421683023 it:0.020697926260225406 An-:0.01952722421781454 they:0.017990805439722837 She:0.016632237136210405 1:0.014076217039006014 that:0.011755643778050679 lie:0.011149113807745763 be:0.009427577840060491 ho:0.009355375389196476 They:0.0067990375079490465 man:0.006701178387097712 :0.4451990025656273 +number:0.06054523778808624 amount:0.050860983703427225 purpose:0.03020781167179907 out:0.027283511188165018 matter:0.02714267128516312 means:0.023878558884805876 system:0.02063215666339966 kind:0.01915101871843507 line:0.018902619274510837 tion:0.01827349096526777 way:0.018004788215781952 work:0.016826669109898253 question:0.01681715526726029 method:0.016756879352896638 kinds:0.016153453840454142 cost:0.015744019710886258 case:0.014904942389777171 men:0.0143684041222087 pounds:0.01406057600425979 :0.5584850518435169 +and:0.09763483071582893 of:0.08342160064710319 to:0.07606250305333254 the:0.05522011885655745 be:0.02581564182511359 in:0.023431784965565455 or:0.022586202506072774 was:0.018714059404204283 as:0.01728968318590683 is:0.015305739304604804 re-:0.014917484211065278 for:0.014380192151430413 are:0.013642837888467782 pre-:0.013340972134364996 been:0.013069477994112563 he:0.012569294706878037 a:0.012536997859883462 that:0.012519995620564897 :0.012310000140176774 :0.444230582828766 +the:0.5279096192391741 and:0.061769084858545646 of:0.04947029370405294 this:0.031796670666056646 tho:0.030063037301988005 a:0.028005775944326183 be:0.01901652300185263 an:0.016038167533519856 said:0.01367716794132958 The:0.013607633121803242 was:0.0114338061604398 his:0.011408781821020123 their:0.010943590073284359 were:0.010869425196375243 in:0.010607813474626937 that:0.010547529526697196 little:0.009864856026864441 are:0.009164066686142397 tbe:0.008930587319375155 :0.11387557040252548 +to:0.5506902470543001 will:0.07710231364018492 would:0.03813662343974156 and:0.03205120531036859 not:0.030927889779702324 they:0.02320745519066464 must:0.022805185722907125 can:0.01999070899587701 could:0.019547169832567702 should:0.01937190679767737 we:0.018486691651750264 you:0.018397824500112823 I:0.015918501385983115 may:0.00947005003915887 shall:0.008946664705138493 who:0.008753750708782055 or:0.007470621827242733 To:0.005974394694551626 They:0.005426957059920425 :0.06632383766336825 +and:0.020346858305693986 the:0.017125682223271516 all:0.014472912523715133 men:0.013096600043710003 work:0.01309139837752791 day:0.01304205135866541 tion:0.011244789792853394 both:0.01087186999446222 kind:0.010639472537871055 it:0.010398346572092444 them:0.010393385065839564 that:0.010131647621492285 order:0.010031532412650613 of:0.01002868287461415 property:0.009526643383945772 :0.009361056260919735 made:0.009332084158598253 law:0.009275576416153593 way:0.009127496682124306 :0.7774619133937987 +the:0.13568725220145605 and:0.1256228649256657 of:0.03939945427385968 will:0.03677241356577283 to:0.03605866881347645 a:0.02503566919022641 do:0.023126706752747847 that:0.021826827192609324 would:0.020724200761322358 which:0.01861800239149347 for:0.01841654405668539 as:0.015719391890244423 shall:0.013066467802179172 did:0.013050172133044718 :0.012038488737149727 The:0.011949192597453216 is:0.011758839234021358 are:0.011727482075418206 in:0.011667643542341968 :0.3967337178628317 +the:0.29218458538318215 of:0.12474157923921662 and:0.07213853995571459 for:0.04164440805649946 some:0.02991431951548498 their:0.025029712002624594 his:0.024132291381766362 these:0.02308949061089522 The:0.021120543655858973 or:0.02101846890721912 in:0.020992588018199674 few:0.015340075504814102 other:0.015218853910008904 to:0.015128643147246443 many:0.01507609431912554 all:0.014569096420784763 coal:0.01452982773928297 five:0.014343168930092477 this:0.014235071307170388 :0.18455264199481267 +to:0.2298933985427852 will:0.22915129993976044 may:0.08858144316689295 should:0.08365483538970553 would:0.0706847439850751 shall:0.060782999835396694 can:0.042735447739641406 must:0.04254608899167787 not:0.0341411645555034 could:0.02755168303339104 might:0.014590516367160833 cannot:0.012529680663754887 and:0.008559965477794551 it:0.0041812431109269155 also:0.003624710374146508 never:0.00281444769453033 soon:0.0028010019341199043 that:0.002332747224764159 then:0.0022895016095983156 :0.03555308036337394 +the:0.16807735899698817 of:0.10541662057906837 and:0.05138367848570702 a:0.04141865232648221 to:0.0385989743764065 in:0.026264864977736738 was:0.019530675665220657 his:0.018900421021236905 be:0.017373825006196972 their:0.015767721170721456 for:0.01557246589796783 with:0.014071419046630446 is:0.012922913111931644 at:0.012690452250034052 are:0.010702713108721902 .:0.010158075558988393 Mr.:0.009672788574483367 tho:0.009612591781990074 were:0.009549306361446321 :0.391314481702041 +a:0.2132948599979996 the:0.14096292294206952 his:0.10820328895715584 of:0.06283784973573601 their:0.053067136740034694 to:0.045569188146257565 my:0.022048985705084526 her:0.021829230629142018 one:0.021804169801161562 this:0.018377156881274177 and:0.015565312040390075 for:0.014921482762060892 in:0.014713586633189578 our:0.01263479749550788 same:0.011903815394322257 your:0.01187215829967083 its:0.010856407233915795 own:0.01030548965887509 postal:0.00917957128056193 :0.17905258966559018 +the:0.20389298805471542 in:0.20130840087185017 to:0.0925256482128841 of:0.07583304364165853 In:0.052731179407737035 from:0.04883308011411278 this:0.03368556477972228 for:0.021915412820001888 and:0.02162722460580019 a:0.019619855128639608 that:0.017555503026490775 at:0.016711120855485005 such:0.016629297635941336 by:0.01662014669938211 its:0.01572123371933616 his:0.013580200173211677 tho:0.013339712709337648 without:0.012336117990702045 on:0.010406894827526148 :0.09412737472546508 +the:0.21710928137942423 of:0.09598811061219507 and:0.09527248824614219 The:0.06484816256534764 that:0.023252074393290727 his:0.015731179187244974 tho:0.01397667239395606 these:0.013008250369004179 to:0.01296689331426111 a:0.011135971876279129 in:0.011059229793953134 their:0.010261710428640112 or:0.01021156795511136 Mr.:0.00991081005921989 :0.009455568868739087 as:0.009350082510582027 for:0.00886619398955121 two:0.007991115431686206 if:0.007970823201582527 :0.3506338134237892 +of:0.28767355066866834 to:0.08775711267569858 in:0.08678131196995101 and:0.05160598694501188 on:0.04646139928102899 by:0.04519522654900943 for:0.044547789071328545 with:0.03396756772609607 that:0.033699232901107726 from:0.03075346596941143 at:0.027039283056790858 In:0.021061449543044047 as:0.017514234937992545 all:0.012543839382496166 upon:0.011844431150487573 is:0.00998972746569266 was:0.008814315973987914 into:0.008557199930727406 through:0.007781895704231326 :0.1254109790972375 +in:0.22425733092617034 of:0.18855256280979027 In:0.11303913506573204 to:0.048683127613134126 and:0.04135772346886825 that:0.03638076299735316 is:0.02915101014003409 with:0.028307588922818455 for:0.025272543910986277 on:0.025246888223409765 by:0.02254611492878272 from:0.020687096080429623 at:0.01616363778794214 as:0.014182510041908538 was:0.013889241767886952 upon:0.01342564823467684 all:0.0111629964377933 but:0.009779123645213215 iu:0.009285572135955511 :0.1076293848611144 +and:0.08995317707915026 to:0.06844710404109794 of:0.04605142056172993 the:0.04074574508561307 which:0.02479116931334353 that:0.023764822140213245 re-:0.020841117231308055 in:0.020803825395358622 for:0.020278423301550053 :0.018417753428486977 not:0.016860793136637672 con-:0.016444405871234195 is:0.014386481772210856 or:0.014080680914153714 be-:0.01352268143271276 I:0.01317002660943805 was:0.011429878269381662 dis-:0.011196807025842847 he:0.01113106290024311 :0.5026826244902934 +and:0.1560850319857924 fact:0.06282556919939405 say:0.04106633478243641 know:0.03237732057433927 is:0.024769464928102048 said:0.024551945778497272 believe:0.02433970734738431 show:0.02121076067156275 so:0.020005603613608255 of:0.019802923379741013 see:0.019565432985064267 but:0.018203015678804377 all:0.01775412073556209 found:0.017093616402200064 says:0.01657887054452122 thought:0.01616982131588546 in:0.015308414192693454 to:0.014568079718514738 think:0.014005889653616377 :0.42271807651228016 +of:0.09180327590091512 the:0.08704392345264056 and:0.05028553387910976 to:0.03971470743914892 a:0.033346211002626726 at:0.025904757386540782 his:0.017851249766701414 in:0.01742950073752589 is:0.015513218102514145 for:0.015233738043563084 was:0.01344727231219973 :0.013096887391641368 .:0.012989086604713972 I:0.011604169198481697 be:0.011583875001198117 1:0.01055199628515836 by:0.010541636001383357 Mr.:0.00920364089982067 their:0.008754647324319735 :0.5031006732697966 +in:0.15024140473235062 of:0.13528270222896355 by:0.11391414560180413 and:0.09844102320304118 to:0.06423693663588816 In:0.05232390133327236 for:0.0445777588699378 with:0.027621402945279525 after:0.02593336130675546 at:0.023918409177016306 without:0.01871448061231287 on:0.018443070681326026 from:0.017105710753032233 the:0.015559085877157834 After:0.01265040868879476 that:0.010935012885509897 On:0.009054203465232342 all:0.008716849281699971 By:0.008543993280401613 :0.14278613844022336 +the:0.2301159208332667 a:0.22135394931001362 was:0.05951642888583744 and:0.04849246231169726 his:0.04152482981654923 their:0.034062782052326976 is:0.03382673450133831 have:0.026930895308878423 had:0.025068140116411192 be:0.02394267133794791 most:0.023585113351822125 The:0.022825175434079296 of:0.022545295788488007 with:0.01951751798603941 more:0.018545715933136354 its:0.01800798429009057 or:0.017539737684005206 to:0.017025119197843844 been:0.016824897594564337 :0.07774862826566377 +a:0.5705561415204489 past:0.11087511874278505 last:0.08023650822806692 A:0.0591678656272724 the:0.03792029545861064 next:0.033223137974177176 very:0.03188781211698943 for:0.007617567758380397 but:0.006559311840940903 and:0.006013878291560738 after:0.0055100627065418845 as:0.005309405168828524 n:0.005000970875050781 of:0.004045609353658814 that:0.003962864147264339 so:0.0038874423500358567 are:0.0038501390781021986 first:0.0032442299558753562 this:0.0031027710660811872 :0.017028867739328466 +State:0.054842517345318684 city:0.03447249186778007 day:0.032009186415005705 line:0.027546763232794938 state:0.025072070124479953 side:0.02262031033458322 place:0.021742426021170158 county:0.021134335897486655 corner:0.016301542404640424 out:0.01583780978694213 lot:0.015616442620544969 City:0.01415754307446019 part:0.013853278805256556 rate:0.013002877753930461 County:0.01179270401082458 number:0.010451838170927794 people:0.010168186070107455 quarter:0.009275450736108791 office:0.008943777201211924 :0.6201584481264253 +one:0.1028303141280697 part:0.05963429477052991 out:0.04766456937681193 some:0.031418679026461914 members:0.030764490253327767 side:0.029940657362655835 portion:0.022063658796890564 office:0.020457735219956013 member:0.019726706386316174 end:0.019666887540649894 tion:0.018667441728710307 parts:0.016814747270460957 people:0.014112771422418794 all:0.014072739582212475 any:0.013183573287639892 One:0.013083578354183906 that:0.013024335602903442 account:0.012482348155001894 many:0.012077825070275192 :0.48731264666452345 +as:0.06931392982974462 according:0.052071562389565784 up:0.0511867300210483 and:0.040371568633051955 went:0.03351644485287816 back:0.032358406609281 regard:0.03073407747799069 feet:0.02852138506231652 down:0.026379903432040268 owing:0.02466642634685871 due:0.023695193974505355 go:0.022910973192184297 reference:0.020802802907016128 came:0.019883741951819873 sent:0.019874244915639484 attention:0.019565955494145405 come:0.01885185084678811 given:0.018792390567602263 it:0.017366961307524745 :0.4281354501879983 +a:0.5297553493066748 the:0.11171964691095022 and:0.048555754790996566 is:0.030840605857925807 of:0.022923053853110574 to:0.022710506235184724 was:0.022334109223050087 no:0.01813578211301068 very:0.017963870890192947 The:0.017546464779211346 post:0.014941452645843359 in:0.014554906923886085 be:0.014097977334535713 that:0.012466869939021257 A:0.012392008432284787 are:0.010961171507842286 any:0.010343535832296651 this:0.009710050508205238 an:0.00924794267439962 :0.047798940241377215 +of:0.16231973286047338 and:0.10094530077524555 to:0.0917560953635775 in:0.04837568859535758 on:0.0438869570784202 with:0.04316912226678419 for:0.0421764836320512 that:0.027302902650156967 from:0.02685913905944586 upon:0.02380069966233677 by:0.02208529302217472 or:0.01830677861095433 told:0.01772199418963169 as:0.01771486149348402 at:0.016993614655065055 than:0.016668993884266202 over:0.013330924308083837 but:0.013182471465853864 all:0.011789531033852623 :0.24061341539278444 +the:0.11436869236142658 and:0.06821917184218214 all:0.06662727777437318 very:0.06458920120932775 most:0.06381242374257354 a:0.05970709570672248 more:0.05602994196632561 as:0.050421050497125815 of:0.04767466071341533 to:0.035429857745054645 too:0.028858711721250218 in:0.026383152341361477 are:0.02638223204728955 is:0.02182923109531307 for:0.021751343950942505 not:0.021185428203552407 his:0.020692615127145535 some:0.01926120591639615 their:0.0179941809349117 :0.16778252510331035 +number:0.05230876635705841 kind:0.05051086584510824 sort:0.03484444274393303 out:0.033482654711947724 place:0.027966676806782238 line:0.02717403110177432 Board:0.02475323495419891 point:0.023698894305524337 matter:0.02270092053577272 piece:0.02193362734242325 board:0.021608942715156742 state:0.021308345173940743 system:0.021304089542341288 form:0.020651261927141226 amount:0.019882715628043696 way:0.01864428107312311 city:0.018609452829234943 full:0.018604088410246057 means:0.01710600928833929 :0.5019066987079097 +as:0.09060855599025225 or:0.05192043569509164 opposed:0.04097009620667571 come:0.036218564634179266 and:0.034558925745121885 up:0.027752746396512547 regard:0.026877557971928805 equal:0.02645097894817695 entitled:0.025804522429478234 sent:0.024339632808766668 apply:0.023717496062464222 due:0.02350969760829502 not:0.02309673736310173 given:0.02266868474782208 reference:0.022181157464010042 go:0.021579151227406407 is:0.021519266819583865 subject:0.021511972357781718 brought:0.021437570684795768 :0.4122762488385552 +in:0.33444088046438775 In:0.12008409487411065 of:0.10946546390531953 to:0.07019312661012478 on:0.03888705165346279 is:0.026675411588580136 that:0.024672957034042035 and:0.022040062225556743 at:0.021928250430098658 with:0.02181582474884038 for:0.021220167264332616 was:0.01897298781763942 from:0.01577011095719214 as:0.014751333366990653 upon:0.012062183427965537 not:0.010211641735640695 take:0.009707056255878864 up:0.009468145544347014 or:0.009267631343331782 :0.08736561875215781 +to:0.09510176257557867 and:0.0759782477397007 of:0.044882537993784916 the:0.0315600709783228 is:0.027469709441114137 in:0.024414242512733896 was:0.023644505786906175 con-:0.02072663556943141 will:0.0197525729259325 re-:0.019515757684955143 he:0.01933396268374066 I:0.019168528042120436 for:0.018758717550584603 be:0.018539065847662673 would:0.018528419960293203 that:0.017041510263127942 be-:0.016586329410835588 there:0.01648203693916975 not:0.016023551150036123 :0.45549183494396867 +and:0.05917734571267282 closing:0.04405297983259551 was:0.026323119710997635 valued:0.021005792503071843 held:0.01922887441606307 sold:0.018225285914023 2:0.017782437938973866 is:0.017552850459549643 arrived:0.01662711812741857 be:0.01645048243064216 are:0.016339673120917095 White:0.01533836240735085 not:0.015154252504664439 as:0.012706467917481812 that:0.012063629264509927 estimated:0.011864260728812118 Dated:0.0116063700277585 or:0.011444173640079769 made:0.010438189210536826 :0.6256183341318805 +w:0.18363200839179497 and:0.1457475966062204 that:0.052873110681570745 to:0.03888305686919099 I:0.02982251173873809 which:0.028210133701964093 but:0.022291160385634983 will:0.01874136827862991 wr:0.015928475877786678 1:0.013938247594564765 he:0.013357494428775275 as:0.012057094844114765 who:0.010748130259349445 they:0.009182169315497217 would:0.008637813454966583 of:0.00846224476097102 But:0.008267380159323389 was:0.008023401929714078 when:0.007588093492500847 :0.3626085072286918 +the:0.251641921068234 of:0.10851045839631457 and:0.07355751378844662 his:0.0478445572187649 their:0.03946150898166987 to:0.038359011077076656 are:0.03402480193959833 The:0.02780686571463274 her:0.02342761009858648 those:0.022902896447304817 with:0.019311104103152066 by:0.017630769681467366 were:0.01737508057087507 our:0.016339168355152315 is:0.01633418859687112 a:0.016294922165714515 tho:0.0156155403907106 was:0.015389759228181683 all:0.01531880134747168 :0.18185352082977463 +he:0.15858349237663422 be:0.12183308463133188 and:0.09344040574404401 I:0.07377915262271444 is:0.04346613731759761 she:0.03257444519296869 it:0.030290260310064192 they:0.02830831036716965 was:0.025655266001842994 He:0.023290589482910615 have:0.021648536673045428 who:0.02128740347343167 been:0.020412435578796587 not:0.015512103272956568 are:0.014322410506507061 has:0.01294551631604159 we:0.01220311615831804 ho:0.010644184177329315 never:0.009788292577656668 :0.2290148572186388 +one:0.1028303141280697 part:0.05963429477052991 out:0.04766456937681193 some:0.031418679026461914 members:0.030764490253327767 side:0.029940657362655835 portion:0.022063658796890564 office:0.020457735219956013 member:0.019726706386316174 end:0.019666887540649894 tion:0.018667441728710307 parts:0.016814747270460957 people:0.014112771422418794 all:0.014072739582212475 any:0.013183573287639892 One:0.013083578354183906 that:0.013024335602903442 account:0.012482348155001894 many:0.012077825070275192 :0.48731264666452345 +one:0.05972484939551113 part:0.04184420370602174 that:0.03522597888491265 out:0.029673015207427048 and:0.028435589272664187 day:0.028191059275744546 all:0.025088235614884952 sum:0.01832030024952039 account:0.01633815363606542 tion:0.01606760635399052 side:0.016017103585603498 favor:0.01541943081601423 use:0.015156050214906793 portion:0.014594097157765563 people:0.014307496916367787 some:0.01388372376196512 name:0.013422618899452043 line:0.013293032923210725 Court:0.012908498869770859 :0.5710889552582008 +one:0.1028303141280697 part:0.05963429477052991 out:0.04766456937681193 some:0.031418679026461914 members:0.030764490253327767 side:0.029940657362655835 portion:0.022063658796890564 office:0.020457735219956013 member:0.019726706386316174 end:0.019666887540649894 tion:0.018667441728710307 parts:0.016814747270460957 people:0.014112771422418794 all:0.014072739582212475 any:0.013183573287639892 One:0.013083578354183906 that:0.013024335602903442 account:0.012482348155001894 many:0.012077825070275192 :0.48731264666452345 +containing:0.1883019463212695 of:0.18681692207002534 the:0.07983663571313779 and:0.06673616875105791 about:0.03320725165158408 to:0.033130149031167726 or:0.022460442760045385 in:0.014986957978352361 at:0.014627242256777617 a:0.012960566764017118 for:0.012747413226132365 hundred:0.008426487751102045 east:0.008089394428593195 with:0.007767610472064715 west:0.007291617524430151 than:0.006943166874025813 said:0.006820851707828716 from:0.005920027041971232 as:0.005896354191332387 :0.2760327934850845 +:0.06535714380562718 .:0.04636565615497422 it.:0.01661466567646873 and:0.014555664608235168 them.:0.014277841619161775 time.:0.008016203538477863 the:0.006986768386246445 4.:0.0064497487857502565 people.:0.006318361034881038 year.:0.006212039119163886 him.:0.005777548407424526 thereof.:0.005528968234488312 country.:0.0053681305517108285 A.:0.005303417404556682 water.:0.005068697313708475 that:0.0048884706108860134 ?:0.004264288181107377 State.:0.004178273264657901 years.:0.004003546538688826 :0.7634645667637845 +and:0.058862501717624596 filled:0.056792555547912085 charged:0.040194980131971515 covered:0.034347964322351765 together:0.02942490930741597 it:0.019632161837695634 up:0.016403429603850883 but:0.015720436949692846 met:0.014441737176484604 them:0.013968468493281138 supplied:0.013827827155856036 that:0.011409317316299942 loaded:0.01110652242857685 him:0.0109577466864035 connection:0.010759740799550832 not:0.009970882621571146 made:0.009791203980441865 lined:0.008963838312941154 connected:0.007383374221690064 :0.6050404013883875 +able:0.06379800493210128 is:0.05218714438517752 enough:0.04834761734613122 and:0.044828517321888174 him:0.04039413475591562 unable:0.03934442919172159 not:0.03632040084420021 was:0.032509596735900176 order:0.030905558047906526 me:0.03043355531166864 began:0.029075732036155526 surprised:0.027134108132614024 have:0.026693788281804087 trying:0.02608769079564691 necessary:0.025861404644334784 as:0.025054644604642705 ready:0.02455663864818702 glad:0.02378927498177365 ought:0.02354970571289064 :0.34812805328933966 +the:0.1623874121478361 and:0.14727593519013815 be:0.11802151807838454 was:0.05523609179660064 been:0.04496985027797315 is:0.0435356246500461 to:0.04004216614633341 are:0.03399791555270207 he:0.0292807727077054 were:0.029192923144201254 or:0.02232415836610748 have:0.02167215584983106 it:0.019682363781637575 as:0.01832326695794677 of:0.01787681919068041 not:0.016558877657723924 an:0.014646358750328981 had:0.013882845149684455 I:0.013854732271702388 :0.1362382123324361 +of:0.06173551952142288 thousand:0.03745893471780424 160:0.035059967751518165 hundred:0.031547483127120135 ten:0.029280510881636128 two:0.02452861693842645 40:0.024393802860594477 sixty:0.02365235950569241 fifty:0.017564236131794708 100:0.01668739073871323 forty:0.016356546560568 twenty:0.016078431807436296 five:0.015516490686369181 80:0.014137614320507022 10:0.013068528080995649 2:0.011731909582207095 20:0.010885938446561326 eighty:0.010788556523517373 50:0.010454944494302591 :0.5780722173228127 +for:0.19221221841052588 of:0.1529180248579879 For:0.11534923234651401 and:0.08193547872170276 by:0.04537485823958195 that:0.04047197491034849 to:0.03710026731436609 the:0.03384876273154727 so:0.02747341692739907 this:0.026521186943424164 after:0.023304804644950966 has:0.023226016603708113 have:0.021725470831032108 in:0.01611897547501879 with:0.015564171508028645 no:0.013883212903184674 some:0.012694966187763383 are:0.01169382257792903 as:0.01124056943240468 :0.09634256843258204 +as:0.06931392982974462 according:0.052071562389565784 up:0.0511867300210483 and:0.040371568633051955 went:0.03351644485287816 back:0.032358406609281 regard:0.03073407747799069 feet:0.02852138506231652 down:0.026379903432040268 owing:0.02466642634685871 due:0.023695193974505355 go:0.022910973192184297 reference:0.020802802907016128 came:0.019883741951819873 sent:0.019874244915639484 attention:0.019565955494145405 come:0.01885185084678811 given:0.018792390567602263 it:0.017366961307524745 :0.4281354501879983 +the:0.40316915205997883 this:0.08613946970080942 such:0.07575444104404622 said:0.06321270810421907 a:0.0517933421014606 and:0.026093511260254887 of:0.02013636922338834 his:0.018079739610202247 tho:0.015201503930036797 other:0.013816577301817174 The:0.011590691757416777 same:0.010655146437583899 an:0.009753143900300722 county:0.007487525507613404 new:0.0068171769633631 state:0.006598508525162035 State:0.006511825612966885 that:0.0064240094724361445 great:0.00579085694911421 :0.15397430053782923 +a:0.13795914668068773 the:0.06321788108567987 of:0.06024845343023136 this:0.0490444026044561 his:0.04760334794113933 any:0.04243180225096168 in:0.04073757041556935 and:0.03745771088596094 as:0.03571626277892551 same:0.030637452450150402 no:0.027797829501660765 that:0.024277667616579773 or:0.020693453260576002 important:0.020337513921190105 other:0.019151457606856017 her:0.01828270326595062 their:0.01734799648871083 to:0.015958912531218096 one:0.015952940104254597 :0.2741454951792409 +one:0.035883216752823036 on:0.020447851401416816 two:0.015454991151205315 sold,:0.015375660394430474 more:0.015113842620610246 and:0.01393621610530336 little:0.013598161854778185 law:0.010696119030954583 action:0.010264049407061281 in:0.009249779435434527 them,:0.008993165609452684 ;:0.008082787337039399 man:0.0073537959435402605 it,:0.006918884233218681 year:0.006823970325618448 it:0.006714520550369234 day:0.006517522583010713 him:0.006166283664003243 be:0.005676907187941897 :0.7757322744117876 +be:0.1759395767354429 is:0.14693592762281643 are:0.08757986673380105 was:0.0822311554649647 been:0.05255314510398181 and:0.040641305294417444 Is:0.02824899727938853 were:0.027938082558389764 being:0.0252926756513384 as:0.024775878023144376 have:0.018732285164490964 he:0.018038171769497374 not:0.01758752592472827 had:0.01438070918640201 bo:0.013470541415717366 property:0.013406292546266898 land:0.012308951345361828 now:0.01204499776303157 has:0.011117375735671866 :0.17577653868114643 +the:0.327296950558762 a:0.22611989705284838 of:0.06431766745441118 oak:0.027822599025822212 to:0.022064804631621023 this:0.02060763427378031 tho:0.017103140294920487 every:0.013973148318039147 The:0.013661490297240135 apple:0.01344686964405633 their:0.012663550552567557 per:0.012591739973543917 his:0.012177998611203302 said:0.009337031332291912 and:0.009127417369769315 old:0.008873525005299105 one:0.0086440722235965 last:0.008026361364758722 for:0.00789966205088622 :0.1632444399645822 +the:0.17027190784407714 of:0.10585557835912704 and:0.07355927771906935 to:0.05486905984958157 a:0.04543746377447453 in:0.03128555052933153 be:0.028704485173100775 was:0.02350529800142253 is:0.02215549335554494 for:0.02077556258358175 his:0.01804639098945333 or:0.016335100594594944 their:0.015847999621030492 at:0.015526727957625254 been:0.011815834631173878 are:0.01139058447814694 this:0.010362020528084328 tho:0.01035635773045807 its:0.01000473355720393 :0.30289457272291764 +the:0.2412133270956124 .:0.041104145879004725 and:0.030943427732542574 Mr.:0.023450698508969935 of:0.019367414302419807 The:0.01607297962080308 in:0.015922943243690906 a:0.013677855196131072 :0.013604156727675728 tho:0.011930618391291016 W.:0.011866837770993 of-:0.011363986113598889 said:0.010110434736094102 tbe:0.0094131342105071 Mrs.:0.00781250761705214 :0.006904183528198057 or:0.006799308866576875 by:0.006622970244446012 E.:0.006511041383664817 :0.4943080288307278 +of:0.09129790931378902 the:0.07369883040827747 and:0.047842263382354346 in:0.04189055351593407 to:0.04045875475680249 a:0.03542341257202578 be:0.02020462051672066 for:0.01979292654746225 was:0.01760256398103379 at:0.017380150555488715 is:0.014984483003968216 with:0.014047653760730413 by:0.01374644383819499 :0.012670486581795598 In:0.01200961464556976 or:0.011563835749786333 from:0.011391516893522809 are:0.011273104484969465 that:0.010755276030689069 :0.4809655994608848 +o'clock:0.15778222271553036 Mrs.:0.06729705902536161 and:0.051899834633921366 .:0.04651630165588619 o’clock:0.025173566740959313 by:0.02268129091141601 C.:0.02094728975751279 of:0.014742373833893058 J.:0.013409521270866368 W.:0.012983344951632723 to:0.011743457206471757 M.:0.01167798165917179 :0.011675979145813246 John:0.011656701573497958 May,:0.011080690040649177 January,:0.010496794687299995 Mr.:0.010404868422207614 Dr.:0.010164659444646673 the:0.009807019411509884 :0.4668590429117521 +the:0.3857462218834472 a:0.14324745929638774 of:0.07762917029166928 in:0.06999816669112506 The:0.04193538199631795 to:0.03510375717029744 for:0.03268990374376459 tho:0.027744767156313837 and:0.023979732189062335 In:0.014313962742788362 or:0.01210898311855248 our:0.011797301352643366 one:0.0115626731831609 his:0.011443985011922137 with:0.01098327620103957 three:0.010398266871765626 on:0.010240131274905754 two:0.009988406643183864 any:0.0098650685829225 :0.04822338459872999 +with:0.09223275350657474 is:0.0920022545838372 in:0.07802248053989484 of:0.07776166581361334 was:0.0676012921775864 as:0.06595697508723576 to:0.061106601380787454 and:0.04506225548410878 be:0.04383481572047775 by:0.03167129089036637 have:0.030959791296293174 such:0.02871618216884456 make:0.028491626942934195 for:0.028265823614433264 made:0.026470417898222572 had:0.02156038968124909 that:0.017497622173222198 on:0.016516737056791384 at:0.01592879777560582 :0.12934022620792107 +and:0.08623714345017694 ;:0.025962333542883027 as:0.02450548007361176 but:0.02308234321029908 And:0.021485201102134442 is,:0.014753598679286595 that:0.01337291392068422 and,:0.013315765036165574 is:0.01204749788958439 it,:0.010137825037925177 you,:0.00988926828039719 be:0.009326918576063123 provided,:0.008622456612009584 are:0.00861886327695714 there:0.007870078912140574 But:0.007846711715938771 asked:0.007641328228242294 Provided,:0.0074206267200450935 know:0.007108301741986198 :0.6797553439934688 +be:0.29546082937833257 was:0.23277358106477078 been:0.11674217491885884 is:0.06540474944201502 were:0.05883562942183793 being:0.029520184376670797 are:0.027853491170516068 and:0.01863734030986592 bo:0.01718700520939836 Is:0.010659509233978681 have:0.009169409757638778 not:0.009000138919381867 had:0.008010459595865396 has:0.0075990868256603315 so:0.005808358098726053 waa:0.004591846078589686 now:0.003859063208022165 as:0.003543846660067121 it:0.0032283183860058666 :0.07111497794379773 +:0.09744108289773365 it.:0.017190878137483084 .:0.011835445358001547 them.:0.01099911929103415 him.:0.008740661213192936 city.:0.006846441001855034 and:0.006421391765196563 day.:0.005497310221230295 in:0.0054244576635319765 complaint.:0.005265271900924424 work.:0.0050680650670626715 her.:0.005000877535113525 time.:0.004906865349988617 years.:0.004712389622290527 home.:0.004651855831522046 business.:0.004326103530571693 night.:0.00415792565677991 of:0.004094060913371291 law.:0.003899065261434997 :0.782520731781681 +the:0.19857013309810087 of:0.10892556349077741 and:0.07898696329692893 in:0.02325330620996649 to:0.021390719360353652 a:0.020588446445510226 by:0.0186863021153632 tho:0.015550269782272119 as:0.014679524523414944 The:0.014201537448011437 or:0.01398586643955374 .:0.013724616066147324 with:0.01195525183276829 that:0.011943591590884784 :0.011680349945577026 for:0.010319733389696634 Mr.:0.008400573758767585 his:0.008231308999353228 their:0.00750931031969228 :0.3864166318868599 +of:0.09129790931378902 the:0.07369883040827747 and:0.047842263382354346 in:0.04189055351593407 to:0.04045875475680249 a:0.03542341257202578 be:0.02020462051672066 for:0.01979292654746225 was:0.01760256398103379 at:0.017380150555488715 is:0.014984483003968216 with:0.014047653760730413 by:0.01374644383819499 :0.012670486581795598 In:0.01200961464556976 or:0.011563835749786333 from:0.011391516893522809 are:0.011273104484969465 that:0.010755276030689069 :0.4809655994608848 +the:0.2917415689194656 The:0.13238958996255243 no:0.07190425894996366 his:0.05051544516097073 that:0.048060629870725076 of:0.047416724014176244 and:0.03651588333589882 this:0.03348250747080212 their:0.021054891766873265 my:0.019382630235768923 any:0.01831885355296832 tho:0.015531659696649118 His:0.012610442919937468 whose:0.012444669123573131 its:0.012201417834675841 our:0.012146589751729091 a:0.011577266830561908 in:0.011346354726416256 as:0.010655605825229125 :0.12970301005106286 +the:0.13470944082182928 of:0.09937115918295841 and:0.06658922988117683 a:0.049021625624578125 to:0.039799942108241664 in:0.033259581161251245 or:0.01624930277325115 for:0.015248205583566338 by:0.014650273494018123 was:0.014438632768546733 The:0.014084382360117453 be:0.013943293601210882 Mr.:0.013124895224601075 his:0.012304882544105637 .:0.012169117603002653 that:0.012158527162543998 tho:0.01120804417755094 is:0.01094563633790911 with:0.010666497166454826 :0.4050573304230855 +the:0.08078893313634433 and:0.06527404893315186 of:0.059988648098588254 .:0.033881822084809374 to:0.022881323151745077 by:0.021125117225776608 Mrs.:0.019983414439307286 :0.017538240910136768 Mr.:0.014846912076336108 a:0.013810792932630189 in:0.011557374914936316 said:0.010898687052438613 The:0.010650181891457718 A:0.010186982281063482 Miss:0.01010405966693973 with:0.009807499991173264 at:0.00936785509719241 for:0.008958020734041082 J.:0.008140541019324786 :0.5592095443626067 +the:0.5213361645801956 an:0.08617229147728021 this:0.048052842816088466 of:0.03373424754536958 a:0.03350498291982559 The:0.02821493936502933 tho:0.02484477956909422 said:0.023660897723637938 and:0.020354122947085607 to:0.013628982608468971 tbe:0.010633152053277839 per:0.010530686984867754 with:0.006365617965556522 or:0.005437207380113376 our:0.005353840696013828 new:0.004617509255439415 An:0.004563113146874529 his:0.004262913327755563 in:0.003815122234639605 :0.10991658540338603 +in:0.14231979747178772 of:0.12982147515293904 by:0.06122461064464681 and:0.05891828332086715 is:0.04083590281312297 with:0.04033903665810088 from:0.03081077505124797 have:0.027761887659560655 for:0.02661615459785346 to:0.026389615473071962 was:0.025381601130504274 are:0.024676827803397444 without:0.02448390153810119 had:0.023229346535742507 has:0.022218078995084913 a:0.02174774189591506 be:0.020982488658864 In:0.018707677571774627 or:0.017263201287420274 :0.2152715957399971 +of:0.5523690182334554 in:0.2343956103761691 In:0.05303664376829089 to:0.013325117790146829 by:0.012233735892879035 the:0.012019193349702417 from:0.011803757972425041 for:0.011272314235828307 at:0.011079914588487607 on:0.010049353200976252 between:0.009559383540460712 ot:0.008880273382140827 ol:0.006788416471076928 and:0.004826779108539533 iu:0.003577313968000063 said:0.0035602725818167187 with:0.003364394389771968 into:0.002442868333024646 thence:0.0017325720286888709 :0.03268306678811878 +sum:0.03352282876311118 number:0.028116684882597106 line:0.019995206059833036 city:0.01946514558931857 out:0.019275318828420953 day:0.01666865340772654 county:0.014872697538657208 amount:0.013254184849875051 Board:0.01252325449624941 town:0.012449555905674143 side:0.011663975251122375 part:0.011517157473718155 County:0.011460540331966697 state:0.011087331502382173 City:0.010878919191854432 purpose:0.01081028255427907 and:0.010297866493795984 way:0.009848747943663767 name:0.009522170936943183 :0.711769477998811 +the:0.25105252062450345 of:0.12916694704950202 and:0.11506940807601175 to:0.1009853677217492 a:0.044070373353936196 in:0.024431316102379447 his:0.024085533919498584 or:0.02104420455283238 for:0.02041045243678257 their:0.020018137371314408 this:0.01963992517688419 that:0.018630963814794486 from:0.017924631901003543 tho:0.016270979634032463 its:0.013889766073003759 The:0.013578881263230758 our:0.01286425553557765 who:0.011553875975408816 at:0.010485371090617533 :0.1138270883269368 +one:0.1028303141280697 part:0.05963429477052991 out:0.04766456937681193 some:0.031418679026461914 members:0.030764490253327767 side:0.029940657362655835 portion:0.022063658796890564 office:0.020457735219956013 member:0.019726706386316174 end:0.019666887540649894 tion:0.018667441728710307 parts:0.016814747270460957 people:0.014112771422418794 all:0.014072739582212475 any:0.013183573287639892 One:0.013083578354183906 that:0.013024335602903442 account:0.012482348155001894 many:0.012077825070275192 :0.48731264666452345 +the:0.3510764058517626 this:0.15069795467353367 The:0.10621532395056241 that:0.05374107611069151 This:0.036208241859348185 a:0.03615377711729327 of:0.034644983291058494 tho:0.02394631875219231 our:0.018631517227817477 and:0.015656518187502362 his:0.014713537451644478 which:0.013970321878625366 other:0.01278871319734546 their:0.011681712000168546 No:0.011518581978995121 good:0.01130062826671155 new:0.011225097220554424 no:0.01109842902873427 in:0.010102122790419532 :0.06362873916503894 +brought:0.1183642899684722 went:0.09517342232787174 come:0.07477529888719686 came:0.06550891391108245 go:0.0637351304819388 look:0.053016885273660025 looked:0.04738297833503905 sent:0.04618953284890716 it:0.04528787256731424 pushed:0.038059443358874956 turned:0.033519798438772376 get:0.03272520503909312 put:0.03243455690202919 stepped:0.03114011776728675 looking:0.026055115891360104 called:0.025981843491442804 rushed:0.02398679395716935 and:0.022841514116873848 bring:0.022681586907525354 :0.10013969952808964 +the:0.5418734378823192 a:0.11655036400007725 and:0.06899137532466008 The:0.029853644551669514 this:0.02696967976685887 to:0.024843386285555786 tho:0.02423218959639424 of:0.012639345394408917 in:0.011177339439907837 every:0.00982460272487594 tbe:0.009599417541132586 that:0.00938062483786446 or:0.009139523787938902 great:0.008662935970423797 present:0.008364564583125891 county,:0.006509380325879656 high:0.004736212201198996 large:0.004670294031886443 any:0.004508144191181824 :0.06647353756263981 +the:0.1121155824051739 and:0.06128388772007174 a:0.029611615663795103 of:0.025636482971081846 .:0.019135141775915646 that:0.01789098939527684 to:0.014370995872724716 for:0.013391901261148247 The:0.012229419720951235 by:0.012099970269134447 which:0.011602801336596105 at:0.011513583977519188 it:0.011488181428006831 as:0.01120767231902735 he:0.010519400022514194 from:0.009483152444916213 tho:0.009080704695618436 State:0.008754972498094309 :0.008698570613222645 :0.5888849736092111 +and:0.20351023112202843 he:0.07782795385988192 who:0.05967167309986636 that:0.050994039390620076 which:0.049316153267488894 they:0.03324171001375912 I:0.030010109772441777 He:0.029188336153244045 it:0.02829310059213889 be:0.01844868894634663 It:0.015686166259056777 was:0.014899498669892043 she:0.012946015260462946 we:0.008626131470597456 but:0.00783548406151743 They:0.0076184313265180445 one:0.006810011041555894 man:0.00627292274209854 is:0.005947771522668716 :0.33185557142781597 +the:0.18929778880612064 any:0.1258023788811488 no:0.09671065028349109 this:0.09043432530917397 that:0.06468090554333147 every:0.0599883224662412 a:0.05448963874929653 some:0.040804990687425276 his:0.03279666746013131 of:0.030242971958487255 their:0.028611673491890015 other:0.025175927497067832 only:0.02316898580444974 one:0.02297484913801511 same:0.02000086878609188 best:0.015603019048111212 The:0.013842158211627834 our:0.012289199721149164 its:0.011343903511847775 :0.040740774644901896 +to:0.14407043631360672 of:0.12052426455674951 with:0.06281107351985556 in:0.06161189843090797 is:0.053265044405393154 was:0.0477149217881666 and:0.04747928997484073 as:0.0451395857628889 for:0.04320111434473835 by:0.037605851478760416 at:0.03563375299911897 that:0.024918777150062753 not:0.02284636958085743 make:0.021244610769943956 be:0.02123293540001462 have:0.02106303746992853 on:0.019823585830067627 had:0.018477147095586333 from:0.01844895760906941 :0.13188734551944245 +him:0.06666713987277362 and:0.06321784336895735 is:0.047292753729759204 able:0.04277371756083833 have:0.040253435536371215 right:0.03415654753020976 was:0.0338962998775722 them:0.03332946681045324 order:0.03289149208331973 had:0.031103990696545673 me:0.02995966303404236 want:0.02521414168912268 not:0.02475482643708873 enough:0.024371050238133456 as:0.023626455159779278 made:0.022914983992107306 are:0.02259531865063145 began:0.020680336984142927 time:0.019201664726883002 :0.36009887202126845 +was:0.2016398140507789 be:0.13281191565173994 is:0.13262212860161832 been:0.06358441855293516 and:0.06011033663800051 are:0.0484463051796826 were:0.04331712311740863 not:0.041756209306671156 as:0.02777154822533985 or:0.021765165566339065 Is:0.020392684912028728 so:0.018724095455004853 being:0.01494204847470566 very:0.014120922029538354 he:0.013817108594666519 more:0.013460662348565135 now:0.01179303597056105 person:0.009651121090645483 bo:0.008615837508855846 :0.09965751872491424 +said:0.02974934190417544 of:0.02318388583816581 .:0.0172332373036976 the:0.016584354693382028 and:0.008780797986481995 :0.007784696500034908 State:0.006634658983593747 Medical:0.0061936492179928936 Agricultural:0.004117106745162739 January:0.0038133685181048157 to:0.0035824597829559003 on:0.0034853385206659194 at:0.0034257432109480986 City:0.0034185878340494066 :0.0029726552066635156 Central:0.002937521414960955 or:0.0028876731551086875 -:0.0028811372398212017 North:0.00282759854734166 :0.8465061873966926 +a:0.19836582144676382 legal:0.14813551127602612 the:0.13831823688194003 and:0.04857540554894602 of:0.037963381916166924 very:0.030630366751966516 so:0.02974675851035541 as:0.029622692331052344 this:0.026471601606474222 The:0.02548606193999536 that:0.025390776812745847 more:0.013484511483676638 no:0.012508888422036303 every:0.011008996802832627 great:0.010886559171941096 any:0.010665702614017596 good:0.010508142206501042 his:0.010357719083032346 one:0.009988638932775514 :0.17088422626075422 +lot:0.20890704451247843 June:0.07080809843444995 July:0.05789738517324397 May:0.05601816765542442 18,:0.05574377857510095 No.:0.05244660024054392 block:0.04750430372907303 April:0.0340582558320863 March:0.031115453946567225 August:0.023912112017972383 October:0.02229629454165371 January:0.021465011308507104 lots:0.02107808922040279 Section:0.02078752065810218 November:0.02024738934698134 .:0.015878027922376015 Miss:0.013802244428367177 February:0.013240193375573677 December:0.01283177448159744 :0.198962254599498 +Resolved,:0.07874577468808135 enacted,:0.06571980235465076 Provided,:0.057724512268931674 :0.05222875587870779 enacted.:0.03689291234338528 2.:0.019678625819503758 1.:0.01688065622586816 4.:0.016357918574318512 it.:0.015096930495350372 5.:0.013310796197128648 3.:0.012836668090217199 .:0.011639381963841533 further,:0.006691997372900121 ?:0.006448837141322211 ::0.005110623897729989 them.:0.004957403018683494 made.:0.004472907856067899 and:0.004126104084265128 Given,:0.004045433720385373 :0.5660339580086607 +:0.09922969525609703 .:0.015455682254526511 it.:0.012332613810307208 them.:0.009838058944021457 years.:0.008961654290237778 time.:0.007710435695255831 him.:0.007233915767126779 else.:0.006559516149322794 day.:0.005786122202794895 country.:0.00569030288639179 ::0.0052531227350686854 city.:0.0052183504437168056 follows::0.004763719055348997 year.:0.004533586833530771 State.:0.004423147031386756 people.:0.0043473189618850015 work.:0.004158218410302293 her.:0.004080609248087848 week.:0.003895468180359123 :0.7795284618442316 +the:0.16807735899698817 of:0.10541662057906837 and:0.05138367848570702 a:0.04141865232648221 to:0.0385989743764065 in:0.026264864977736738 was:0.019530675665220657 his:0.018900421021236905 be:0.017373825006196972 their:0.015767721170721456 for:0.01557246589796783 with:0.014071419046630446 is:0.012922913111931644 at:0.012690452250034052 are:0.010702713108721902 .:0.010158075558988393 Mr.:0.009672788574483367 tho:0.009612591781990074 were:0.009549306361446321 :0.391314481702041 +the:0.2253284843593811 and:0.06416068163017148 a:0.06061208609732086 their:0.05963825095322813 of:0.05797732438274001 his:0.055306562726959205 no:0.04904235511324477 its:0.0418165672001579 any:0.03813863585577506 or:0.02136116397095637 every:0.020510720889205095 more:0.02040259078579903 was:0.01941159928624479 first:0.019176619366296825 all:0.01904438749874496 The:0.01608417935322194 to:0.014657720126395121 such:0.01390846173936563 tho:0.013503665295646247 :0.16891794336914545 +the:0.439715876541763 of:0.1001760785404986 The:0.07893640916526301 and:0.0466807520210644 tho:0.025840358631845375 that:0.021042268927326867 his:0.01816456734291012 to:0.014770590140493145 said:0.013882991329157076 at:0.012756343738975448 which:0.009424205301901828 this:0.009195396193663347 tbe:0.008836693398586897 their:0.008299804576394202 when:0.008121066999917936 her:0.007236512300487477 I:0.007194126028701829 my:0.007151280556066517 by:0.0070979535275057185 :0.15447672473747723 +to:0.2586820414031615 will:0.18920195674660736 shall:0.13187972133898296 may:0.10157836839929663 would:0.06835329202154306 should:0.04600522910025934 must:0.037687770281973766 not:0.03165110365013665 can:0.031320177140314036 could:0.022157778465899385 cannot:0.014597151973070113 might:0.013455720236295906 and:0.006772836934524136 it:0.006010679554081119 also:0.002429255269469242 that:0.002087768801510263 To:0.001871950102993298 only:0.0018698688278480696 never:0.0018578280447158909 :0.02952950170731729 +sum:0.03352282876311118 number:0.028116684882597106 line:0.019995206059833036 city:0.01946514558931857 out:0.019275318828420953 day:0.01666865340772654 county:0.014872697538657208 amount:0.013254184849875051 Board:0.01252325449624941 town:0.012449555905674143 side:0.011663975251122375 part:0.011517157473718155 County:0.011460540331966697 state:0.011087331502382173 City:0.010878919191854432 purpose:0.01081028255427907 and:0.010297866493795984 way:0.009848747943663767 name:0.009522170936943183 :0.711769477998811 +and:0.20046366609579452 about:0.12978892260428493 of:0.12215986942790781 or:0.07444344528659964 to:0.037922417481227794 from:0.03256464098681723 the:0.028649830933822854 in:0.019678952349480444 for:0.01958533801226265 with:0.01558982615564915 than:0.013515095018897891 be:0.011411809909010862 were:0.01113737033180278 some:0.011011291661564932 was:0.010699347238488128 a:0.010565029783767256 at:0.010474107599545956 are:0.009517730201462004 number:0.00925235022444009 :0.22056895869717308 +of:0.27204260869910296 in:0.12170766456956958 with:0.07486559825813544 to:0.07118914758252454 by:0.058545639506015094 for:0.05526088083565366 that:0.048213419562984715 and:0.04034259129201958 at:0.03275969450348193 upon:0.026038528592420514 any:0.0242758590111493 on:0.021708036080724382 under:0.018589479439040203 In:0.018479667100921054 or:0.013714141004038415 from:0.012760269089110795 have:0.011909817737107576 all:0.011064661558139243 no:0.010103276132635019 :0.05542901944522601 +of:0.2902473790286876 to:0.10015913092725141 and:0.07051247792655187 for:0.06399687612192985 in:0.06228552255837017 at:0.04399549532583455 that:0.04227787482554045 on:0.03645723995362438 by:0.03384904557604556 from:0.03106771798339312 with:0.027475108530625635 all:0.023120270901657816 In:0.014993910773405896 upon:0.013636781631814225 about:0.011526787640959874 over:0.009184435701823168 through:0.008619277967144338 as:0.00805122958972119 when:0.00786958511845849 :0.09967385191716047 +has:0.3524899342016959 have:0.279905618480846 had:0.20207283613894597 having:0.03918945557690726 not:0.024397619171916043 lias:0.012442250438397648 bad:0.009566804567146947 ever:0.007280476290348454 never:0.006900637597058053 already:0.006413578432764648 havo:0.0060102593238476115 haa:0.004966192071498442 recently:0.003816646239052885 yet:0.00381216285371109 baa:0.003434568514982798 just:0.0031311808583892446 bas:0.0031086617657604086 also:0.003028772579671114 always:0.0029728660193505015 :0.024059478877708998 +he:0.14808471882310134 and:0.10016823005813008 it:0.08479965393365954 He:0.07862383395466982 It:0.04911209011480998 she:0.04306724064933716 who:0.04095246301944187 I:0.035775783586173025 soon:0.032490731545878684 they:0.02777066860763033 She:0.022579939720013497 which:0.02031917898039309 that:0.020187116123059085 there:0.012674816839749008 then:0.010763371208950056 one:0.010483664912847898 is:0.00979981992952807 be:0.009558507588957174 we:0.008991507318195403 :0.2327966630854749 +and:0.06421759277182547 is:0.0460324081916648 was:0.036635521539485925 as:0.033562675883638864 him:0.03212721759610945 made:0.028684588693322122 them:0.02812728839892325 it:0.025878793443746634 time:0.02508363282472678 right:0.021939837402141987 able:0.021160464847495137 went:0.01757386850374966 up:0.016789041244675004 used:0.014408098282381399 subject:0.014217858515810053 came:0.013767590579952759 way:0.013510522962305569 necessary:0.01314967696749545 enough:0.012968663249692985 :0.5191646581008567 +he:0.11344063298593994 which:0.0953817041440041 that:0.08462272676629341 and:0.07198536615092073 who:0.0716151911061315 it:0.05374388450051839 It:0.0431928029624291 He:0.04096937819669136 as:0.0271513995959922 she:0.02250397490596489 man:0.01362898014206537 what:0.01228593197792947 one:0.011033669296933769 ho:0.010160250834255358 She:0.009930983494581207 lie:0.009780695910087882 company:0.008484493223685503 country:0.007539333524369773 this:0.007162308178972539 :0.28438629210223354 +the:0.13167726215138167 and:0.09542730889537185 of:0.07818825157223523 a:0.05103855963671022 in:0.037853402278790124 to:0.028373902780991788 that:0.017842917050429712 I:0.01653285440213409 for:0.015307739540012563 he:0.01486319945375612 be:0.014403916451184258 The:0.014040638953797554 it:0.013820494945131497 was:0.013744803225953011 is:0.01365931090268806 which:0.012674998425117073 his:0.011958239780234109 as:0.011799826282950223 this:0.011463490608973 :0.3943288826621578 +I:0.1080243955292848 it:0.0886826627710801 we:0.07427375554006649 who:0.06934633823920221 and:0.060994793381411866 he:0.059175657586418164 they:0.05359549473095638 which:0.044900785035999875 It:0.03382850396200403 you:0.028036887102721578 that:0.022887191297427136 We:0.017550491178164523 He:0.014683994409699749 person:0.013900804568807615 she:0.012743522602437272 nor:0.012427964265803206 or:0.012420707021621343 same:0.011657414745557744 as:0.01146434227288359 :0.24840429375845235 +the:0.1188820336400701 of:0.09417807580289607 and:0.07538655060191521 to:0.07033736191896665 a:0.03563690792199739 be:0.024972453990847923 or:0.024899509093903295 his:0.02076876619939878 on:0.019133014026715682 for:0.018639381490253078 was:0.017867552910372453 is:0.017807661408110517 their:0.017462364443265786 in:0.01598369068848567 are:0.014679784473706273 as:0.013747477737000588 that:0.012733139584454278 re-:0.012071296257421588 much:0.011822265381379305 :0.3619907124288394 +the:0.11500545585881412 of:0.0897605566703555 and:0.07914879987306167 a:0.05827037833039227 to:0.0386987683614473 was:0.029282661483795363 be:0.023890810389268442 is:0.02056818843792312 been:0.017204803150083207 or:0.017094944717067368 in:0.01610392931760865 are:0.015798243080240505 his:0.01344187865263006 at:0.01321973597799718 for:0.01304287912725108 their:0.012337012043366955 were:0.012236169772424844 :0.01133284696603621 The:0.01095822742659897 :0.3916037103636372 +to:0.40429982662839903 will:0.10573370111089168 not:0.06488930263748895 would:0.05642360950530689 and:0.05280571908011466 you:0.02557594824029247 they:0.02447708107921989 should:0.02413095498470293 must:0.01889622122229528 shall:0.018585415591096107 I:0.01788569133451031 we:0.017626811591418396 can:0.017116901512197816 may:0.013857047657200255 could:0.012451980149229642 or:0.012154233201421984 who:0.011714077363487473 never:0.009385193311671557 cannot:0.008511186192799437 :0.08247909760625528 +the:0.38722990810975244 The:0.11388527168105192 that:0.06697012971579623 this:0.055187852519311714 his:0.03849982850401595 en:0.035766433773251886 tho:0.030672602825131713 a:0.02399983748336566 This:0.023208869513782423 our:0.018422122697379147 and:0.015556731098603236 her:0.01434168465190194 other:0.01345454577584127 of:0.012998105259519345 Tho:0.012083388599614928 tbe:0.011308522273502087 old:0.01083599486118776 their:0.010749823612287135 His:0.008952518974530423 :0.09487582807017281 +to:0.09510176257557867 and:0.0759782477397007 of:0.044882537993784916 the:0.0315600709783228 is:0.027469709441114137 in:0.024414242512733896 was:0.023644505786906175 con-:0.02072663556943141 will:0.0197525729259325 re-:0.019515757684955143 he:0.01933396268374066 I:0.019168528042120436 for:0.018758717550584603 be:0.018539065847662673 would:0.018528419960293203 that:0.017041510263127942 be-:0.016586329410835588 there:0.01648203693916975 not:0.016023551150036123 :0.45549183494396867 +be:0.10860932939066223 and:0.07873107955696414 as:0.05198356331500621 any:0.03997877394935512 either:0.03523193525061397 manner:0.031955015018381286 is:0.028843058817048187 or:0.028623330444226054 a:0.02850151505423096 that:0.025869723243213433 been:0.025204466818697414 whether:0.023799265936902014 the:0.023299640247102578 now:0.022846124653549585 this:0.02246287964230799 of:0.020649309768657607 same:0.019950778371701058 not:0.01920419483479888 was:0.018398399396317554 :0.34485761629026374 +of:0.3454781470562012 to:0.08377217327098842 that:0.07876028549373669 by:0.072967420422488 and:0.060454136226362996 under:0.05383065009020147 with:0.03809475490048521 for:0.03359843266241619 in:0.02893022513276043 as:0.01768469294704869 which:0.01493949236734742 from:0.014274862926101785 at:0.013654796608050017 upon:0.01200634716161956 against:0.011413986182378693 all:0.010887394603151213 on:0.009874875567802926 when:0.008446198739702744 but:0.007263274750618463 :0.08266785289053787 +and:0.06518022783604244 ready:0.035923459132519195 used:0.03574272056922115 demand:0.027756309463248845 necessity:0.023331764713850518 time:0.021105109264146684 vote:0.020825456250674865 place:0.019472399676669302 enough:0.018571221314280895 it:0.018191413519125777 made:0.018055827793280202 work:0.017380640217179943 not:0.017074260444930787 candidate:0.01681238551642881 him:0.01673346544871385 voted:0.01648024004355112 them:0.016302345894339817 provided:0.01587707915427635 was:0.01571432440401102 :0.5624693493435083 +the:0.2978836803509 and:0.07494177349027861 a:0.0741683126503517 of:0.04969426096542697 The:0.044108480621443076 to:0.04148411266457428 his:0.035266854201279174 with:0.025699842556238788 tho:0.02504249281728189 A:0.0233096078009145 for:0.019860047139825077 no:0.01947321109488349 their:0.015445989053345108 by:0.015261900966443418 in:0.01291464663972403 or:0.012851413840310499 tbe:0.012403480245513472 my:0.010034990423188919 this:0.009604230637337653 :0.17955067184073933 +the:0.17715368653078797 of:0.1572229165463888 and:0.0918285396063317 in:0.09075236906575729 or:0.0673752616181097 with:0.04746176175980958 to:0.04377326300132921 by:0.037725870874711645 for:0.034239573473068476 from:0.022151136476972942 In:0.021526132799541485 these:0.020811230646617294 into:0.017257548479928678 that:0.016808705857560835 are:0.016034883973269826 than:0.013984426920141157 between:0.013411247284081195 only:0.012524829521404834 other:0.011813260399585631 :0.08514335516460175 +be:0.18427603635681658 and:0.10475528578172523 he:0.10402832287824938 was:0.07861169899936558 is:0.0562376293567856 have:0.031107030471432883 I:0.028018527710233637 been:0.025749990816385106 He:0.02469347695074055 are:0.023429467792834058 has:0.021820336663824588 were:0.01982817537725297 had:0.01976195121630085 who:0.018556679654727737 they:0.014647358312511839 she:0.013815532864290072 it:0.013120180807843926 lie:0.012884100005160158 which:0.012543587915216698 :0.19111463006830257 +the:0.6618969128862663 tho:0.029442689487148 and:0.024398511685662594 his:0.022095397780386546 this:0.018256971526429203 a:0.01770890852756004 their:0.017352290745049057 of:0.0173261903544893 no:0.014642873755648343 her:0.013770155079577337 first:0.013533249198871701 any:0.010300355915339475 every:0.010143081026343266 tbe:0.00967387079652923 my:0.00967274500033466 The:0.00891015154919564 its:0.008281582210843411 that:0.008254402448674427 our:0.006554417208982571 :0.07678524281666889 +the:0.16875730627202706 of:0.06781969455820454 his:0.05151897892900157 this:0.044112699955460015 and:0.02730011438355661 a:0.022384720698351644 their:0.0223436263449989 or:0.02202418358849413 our:0.018425771492252496 that:0.015289402414395754 tho:0.015281890633139176 her:0.015142844188625439 your:0.013751974761950801 The:0.013659909515816365 same:0.011601123662509743 in:0.011224074161106112 own:0.009961070348462149 said:0.009956982122469241 my:0.009199328467282115 :0.42924430350189613 +of:0.21541724491228362 in:0.11141866924821915 to:0.09265950721681397 and:0.07039944920895036 for:0.06744919697700859 with:0.04385188857873932 by:0.03870121244515746 that:0.03692331595803083 on:0.035161444353868206 is:0.03100388774931271 all:0.027183006426155443 from:0.02640266526766834 In:0.022428950919030785 was:0.022392840837244587 be:0.016871137431788377 as:0.014635677395542468 upon:0.014339245699300219 are:0.009957706670806686 but:0.009884077647636927 :0.09191887505644196 +to:0.14401522014784593 I:0.08717805441967116 would:0.08361228383208522 they:0.07250612364846672 we:0.06597598184142542 who:0.05136360986841521 will:0.048581532657812176 you:0.036303803346831635 and:0.03262750567837507 must:0.02681132061405771 We:0.026497479392441514 shall:0.02444461513167911 not:0.023426718145168758 should:0.022766551002372307 may:0.021516097053646 might:0.01661740567775864 They:0.016135791002525445 which:0.015447058681747887 could:0.01476846332748608 :0.16840438453018802 +of:0.23840974211265292 and:0.10757236118456595 in:0.10678004387943432 that:0.07861347478843873 to:0.06628826751287739 by:0.044269405164304845 with:0.03797700923934748 for:0.03596464772688654 from:0.03119538281018773 In:0.026204308882844068 at:0.01941566692130706 all:0.017875239053775808 which:0.01724791844477266 as:0.015136137851006742 but:0.014463170191709406 when:0.013282306465236437 is:0.01312673020359766 on:0.01255237505337047 was:0.010674615632311084 :0.09195119688137267 +Chief:0.20271769697501996 by:0.165524165337456 of:0.16393204893613045 and:0.06365742109318218 to:0.05472758000345982 the:0.03467861868396506 said:0.026813338325779576 on:0.014626278883235453 Mrs.:0.012221211875072916 before:0.011032791620379966 a:0.009641510395218895 Mr.:0.00886246692505092 with:0.008692298261888253 for:0.008103935107621394 in:0.008017501648811319 from:0.00788972710017831 when:0.007145764821269395 that:0.006042727589554308 was:0.005073993077157146 :0.1795989233395687 +of:0.14140911374913043 the:0.08406324275408093 in:0.051712664696044124 and:0.042016144218116745 that:0.03344666676867289 to:0.027709869064190353 The:0.023638573607111874 for:0.020483914568636966 Mr.:0.017669174058513534 which:0.016972368561751192 as:0.016259401671191127 a:0.014920071848964473 :0.014646146896987337 In:0.009940105168995288 or:0.00909223143114935 such:0.008359976573547796 when:0.008218759560201584 -:0.008178509589941811 by:0.007801238855262815 :0.44246182635750936 +I:0.2334944781249689 he:0.13685369923514765 and:0.0726997270523715 He:0.0601642287966793 was:0.057632700943213704 she:0.036793949036750526 the:0.03149254616650501 is:0.03092814895315292 be:0.02799916044485774 1:0.027526663481240284 first:0.022208791634458463 it:0.0217157184108959 who:0.020581229913940867 never:0.019238839426978068 had:0.01837130702859528 they:0.016879656372778256 not:0.015820282138113165 we:0.015758953519588437 are:0.013691116482457005 :0.11914880283730703 +and:0.08837835926605957 is:0.07598068125519518 was:0.07457341741702943 are:0.06012335500849062 be:0.049578088036218174 not:0.032711156949025835 were:0.03260019973576911 been:0.03145686572337558 it:0.03017794688202269 made:0.02155718045523781 or:0.020891234992167728 put:0.016450606118301167 them:0.016365654415350317 that:0.014992133069549074 found:0.01495648645147657 now:0.014328964167965932 up:0.013657190003001314 only:0.013435310196955277 being:0.013223089501318928 :0.3635620803554897 +the:0.26469374561213344 a:0.1696237421059621 of:0.04406084476900819 said:0.03884366715665805 in:0.035627284758674244 his:0.0309791913477742 this:0.028164631286780623 to:0.024455355798596718 on:0.01845090903887011 main:0.013914042121686145 straight:0.0138113877130188 dividing:0.013174097652161652 boundary:0.012854139447427526 and:0.012585216830526045 tho:0.012255628080850569 every:0.012084178279417615 center:0.01203215533571575 their:0.010536925928631218 with:0.010245679348535316 :0.22060717738757166 +and:0.12248925720143833 or:0.06072168241865153 made:0.057717757287180864 it:0.03356167720582726 that:0.030004482209285668 done:0.0198348720586845 him:0.019819810678706418 only:0.019375673422452198 them:0.018778189499033926 given:0.018469628208252056 was:0.01828952110274862 is:0.018099874861640514 be:0.017603149137223106 but:0.017236902525668476 secured:0.01606760259810256 paid:0.015212260628787475 as:0.014837091778171307 used:0.013814537881729023 not:0.013710398524575704 :0.45335563077184043 +of:0.32484832293376975 to:0.1201072813451825 that:0.07487127142328197 in:0.06450582154599131 and:0.06280189725698732 on:0.04637943527803042 by:0.02981340468041543 for:0.02564200778884434 as:0.02336827624451962 from:0.02031586932408987 when:0.01878683819436652 with:0.01712581776646984 which:0.016592411563239862 upon:0.014787375240851969 In:0.012977047769986167 all:0.01024721534955204 at:0.008621984604457187 where:0.007626190045488401 but:0.007467441743602143 :0.09211408990087336 +that:0.3091535574308671 if:0.08075318968157266 as:0.07657340248755902 which:0.0712171969520434 and:0.055890933817156936 where:0.046518197828498115 when:0.03873481543461506 what:0.0329495931804445 but:0.030104462199235994 said:0.028716891171991183 If:0.020957282524908846 before:0.01733031620050564 until:0.016856483963340406 because:0.01512795775966069 than:0.014032693426359466 whom:0.01301814094880585 time:0.010913181226570999 though:0.008059078357174615 while:0.007628257890763865 :0.10446436751792566 +and:0.10306452774983632 of:0.09542921837407314 the:0.0910934233492289 to:0.04204996999641836 a:0.03905464491901282 be:0.029545682726860863 for:0.023837102972325858 in:0.022572343253335563 was:0.02154369762386902 more:0.01969673180117889 are:0.017325277822089556 which:0.01646263836946112 his:0.015216256419850829 or:0.013900722636298287 all:0.013633228615940279 is:0.013101708271128346 been:0.012799919383589676 con-:0.012266677927221038 be-:0.012018610306125879 :0.3843876174821553 +the:0.16220226270708513 of:0.15956998273155173 in:0.0808787047425544 by:0.029967605840577494 and:0.029951770806420214 a:0.02703817155218634 his:0.023934780907154157 for:0.019696725409482384 In:0.019626295905159137 on:0.01701278936048805 their:0.0163675362563384 to:0.015834094565571652 or:0.01341638196112666 with:0.013166911671904103 an:0.013093932285401863 tho:0.011733329877346418 into:0.009992133527519912 The:0.00831297527945687 her:0.008164875586932416 :0.31903873902574265 +that:0.1746402353016835 and:0.15493021126597023 as:0.07805924073137879 but:0.06210742122743805 which:0.0426150541406451 of:0.029028935496354002 when:0.02871548316718531 if:0.02682113751625604 for:0.025320071199436574 had:0.025067202031066896 where:0.021808008298171463 have:0.019732593540323907 make:0.016215113660520336 though:0.011923429690179566 to:0.011652050962678996 because:0.010782964236046603 than:0.010769319547483709 what:0.010692291190857496 until:0.010112936599107347 :0.2280063001972161 +the:0.3050889496436789 a:0.2844844744625277 The:0.056820900048803316 of:0.039858378794261275 and:0.035554501649214004 his:0.02659072030947559 this:0.02158376358415498 tho:0.015599450273489555 in:0.01512638597145554 with:0.015064909382344633 their:0.015035754951497109 for:0.013469250673272157 our:0.013011038548236256 such:0.01269139288339671 A:0.01212159738297122 her:0.011682551780460893 its:0.011457366046369013 any:0.008134959988987917 no:0.008076660339922938 :0.07754699328548025 +to:0.6622405527293164 not:0.06058548862605756 and:0.03497153480589028 I:0.022827701967383523 will:0.01885678401215095 would:0.016636146325021507 of:0.013440644021701828 in:0.01336128661239951 could:0.011294667925770394 we:0.010241914062183109 can:0.01008096952858745 you:0.007671322287769018 To:0.007428959934886498 who:0.007205323354607678 that:0.007072691729190306 to-:0.007000139103374922 have:0.006910424699883637 should:0.0061334329141934174 may:0.00606447083228908 :0.06897554452734302 +it:0.14952471371603512 he:0.13992002577051835 It:0.11870525423181011 He:0.06339791320325684 and:0.06235213935625997 which:0.03287474635127162 there:0.031059452796829513 she:0.027457699210382464 that:0.02645765776083165 This:0.025909940913186713 I:0.02312120919015448 who:0.022272708475464514 this:0.015990679091443027 She:0.012519133240625516 There:0.008640148777223813 one:0.007660096031647972 man:0.007526058226037003 ho:0.007176515100658285 what:0.006991442399645704 :0.20944246615671733 +the:0.15930234103476537 south:0.14916617612565322 north:0.12747015941821727 east:0.11497653682237818 west:0.10139947809509035 one:0.048792612627628046 other:0.04050218611816578 either:0.025502936103615932 a:0.022473503672407975 each:0.022108776560771096 opposite:0.020547929304717542 out-:0.013104247432932122 this:0.012527971499664897 cast:0.012459434028953368 and:0.012228690772812151 tho:0.011236060547429408 northerly:0.011218669246376186 right:0.010764144905735063 left:0.00911543234938189 :0.07410271333330416 +of:0.18604957189576882 to:0.11506249220169461 in:0.11415331569453095 for:0.06865532187993949 with:0.061408575594220846 and:0.05777839764163415 from:0.05168597840663649 at:0.04712404886644016 by:0.032157476556385005 on:0.031334137153780445 In:0.022412149956121556 upon:0.02065097792113534 that:0.01910408111341207 up:0.019044654333988862 all:0.01337881560012757 into:0.010424308599013608 as:0.010030004821805761 have:0.00979170787115298 over:0.009342887563042624 :0.09941109632916868 +and:0.13714668413149017 of:0.11421375257426379 to:0.05352795896577971 all:0.03823593877880113 in:0.03492107708223556 know:0.03345022002518614 fact:0.033353089487433395 for:0.025965532303076556 from:0.02133233285336665 show:0.021214470027727195 by:0.019875045792028343 is:0.019304681778547408 with:0.01910126484087843 say:0.018261899077072093 believe:0.01759790027321184 or:0.015695631310833298 but:0.015661817619879965 than:0.01516625028037591 think:0.013972171856575155 :0.33100228094123724 +and:0.08832934385398629 him:0.026983886122743477 application:0.026114251583320973 was:0.02489894908956569 it:0.023075411912330694 up:0.02251060273927451 made:0.02033127255167498 out:0.019486588030277113 time:0.018903019749807147 them:0.018632082326077732 used:0.016786364428856393 but:0.016269712072418657 ready:0.01618805525798725 is:0.016020989807641675 not:0.01564434704203927 demand:0.015432404580140367 asked:0.014792759533761007 that:0.01442331755080464 work:0.014074418411123594 :0.5701022233561686 +the:0.2030580417020618 said:0.12105698343995397 this:0.07639280605556611 no:0.062051584748025815 that:0.053456758679415156 of:0.045275855162818644 such:0.04115156455450831 This:0.04023924079165416 The:0.03427909983974558 an:0.03093703912773079 any:0.028130131928186784 and:0.02223674055486691 what:0.01845387118150876 which:0.018342192682164228 his:0.014774438327705626 Said:0.014744130587591466 their:0.01449022891637955 in:0.012802565088273163 tho:0.01273484735484201 :0.13439187927700116 +the:0.3435765034579391 this:0.14783742514528525 that:0.05609957896640883 his:0.03406262052960921 first:0.03230206038499927 a:0.031560030946873756 on:0.028301870525180944 took:0.02613631461091218 second:0.02549513353314183 same:0.021005354007377082 tho:0.018419848588523833 and:0.015292401480865355 our:0.014502052413083999 any:0.01416085880289787 take:0.012586918081447279 The:0.01144841205165879 taken:0.010960015495793512 whole:0.010683286367324456 of:0.01053289404441838 :0.13403642056625906 +of:0.4248115285741782 in:0.20615675284817467 to:0.07126866914831878 throughout:0.04088054050128903 In:0.040505474608193266 from:0.032004558165153886 for:0.029261350957357088 on:0.02286853085389493 by:0.022475025109500172 and:0.020084032281573967 with:0.01497742592249992 that:0.01204966774457078 over:0.005913389833424692 as:0.00590689921046515 upon:0.004629916053065164 all:0.004549415483451797 into:0.00453351196461351 at:0.004097821968584115 through:0.0038073028896462614 :0.028218185882044663 +of:0.2226913618995053 in:0.12603123025971164 to:0.1193896271866945 at:0.06847154080712341 by:0.0578362310217113 with:0.04375898918274322 from:0.043540332250252695 for:0.041405162055353016 and:0.036849586700120646 In:0.033443991363518506 on:0.03012723717325084 that:0.0261928590302504 under:0.014267435958018253 upon:0.009869794473594377 into:0.00957912850590137 is:0.00884314608902678 as:0.00882434922698367 was:0.0075421633477522525 through:0.005664374844941755 :0.08467145862354607 +of:0.09129790931378902 the:0.07369883040827747 and:0.047842263382354346 in:0.04189055351593407 to:0.04045875475680249 a:0.03542341257202578 be:0.02020462051672066 for:0.01979292654746225 was:0.01760256398103379 at:0.017380150555488715 is:0.014984483003968216 with:0.014047653760730413 by:0.01374644383819499 :0.012670486581795598 In:0.01200961464556976 or:0.011563835749786333 from:0.011391516893522809 are:0.011273104484969465 that:0.010755276030689069 :0.4809655994608848 +the:0.2566598726098525 a:0.1832848139764643 their:0.0643211227172906 to:0.05352985922870075 his:0.05041659100652339 this:0.0356310189619031 good:0.03529138635338064 of:0.035038008154216725 our:0.03325535314366918 and:0.022724431188907192 her:0.017603593749685405 tho:0.015998738639995718 or:0.014681810654492386 no:0.014212003521185162 your:0.013958115191054908 any:0.013716633471498313 same:0.013624419078989737 its:0.013448380680087484 own:0.012982029848484069 :0.09862181782361844 +the:0.42911408777136 a:0.16835376198529528 this:0.07111809738395682 The:0.057524359597026065 and:0.036509111107063785 tho:0.018049090158646506 is:0.014591182426163248 A:0.012981611507936426 was:0.012198177678463738 that:0.01188794689810569 be:0.010809151310156438 his:0.010345909272921231 of:0.01010178288016753 one:0.009755208170171052 whole:0.008439652056912309 not:0.008055334630924598 as:0.008034511135940867 first:0.007767817843480285 are:0.006741692130242651 :0.08662151405506548 +and:0.07979852075002236 be:0.0738671721688494 was:0.06487257976722029 of:0.05721262769607501 to:0.05674623443984254 been:0.03953946274219848 is:0.03635225565146888 were:0.03490396114484353 are:0.031220966557714447 the:0.028971089769050294 being:0.017931917068022784 have:0.01630604380355119 he:0.015745155299993353 had:0.015029609889239662 or:0.014889533279390634 has:0.014695074660854422 not:0.013624070454718907 for:0.012285347477016225 in:0.011875467732034989 :0.3631329096478926 +able:0.04795907955406747 and:0.04353567184461763 is:0.041235567977807294 have:0.03876828334361679 him:0.03662776951487707 had:0.031575658538607075 right:0.02987975483179204 enough:0.029329435508820084 willing:0.028280012905788597 not:0.02682313507330459 them:0.025942367597424534 order:0.025862676912433363 was:0.025636089024478878 necessary:0.0255781117934275 began:0.024933373581299306 ready:0.023995472098691805 ought:0.021512881147108052 want:0.02106226583126587 as:0.020369275689315257 :0.43009311723125676 +the:0.23188936740053115 a:0.16532919475814817 and:0.05412693785850717 of:0.04639281339812875 The:0.031443100208772265 an:0.031018210326443803 that:0.02288448981159521 to:0.02007066630055766 tho:0.015779106517819993 in:0.014778490665118658 for:0.014223417588248109 his:0.012898098166664342 this:0.012221063656203889 their:0.009087674461694529 as:0.008612468285080683 or:0.008577087495107782 her:0.008216766103677033 with:0.007529071666152413 which:0.007304737497946675 :0.2766172378336017 +as:0.06931392982974462 according:0.052071562389565784 up:0.0511867300210483 and:0.040371568633051955 went:0.03351644485287816 back:0.032358406609281 regard:0.03073407747799069 feet:0.02852138506231652 down:0.026379903432040268 owing:0.02466642634685871 due:0.023695193974505355 go:0.022910973192184297 reference:0.020802802907016128 came:0.019883741951819873 sent:0.019874244915639484 attention:0.019565955494145405 come:0.01885185084678811 given:0.018792390567602263 it:0.017366961307524745 :0.4281354501879983 +up:0.02706431951631561 time:0.02655429841062185 in:0.01990573473539674 due:0.018015071511760843 them,:0.015057337142357486 it,:0.01405939023234042 him:0.013079246958872475 here:0.012274167490331438 ;:0.01130135433644887 him,:0.011219807823791682 dollars:0.011031096597948712 water:0.010969254891528349 out:0.010523481850807028 work:0.009909277744463995 money:0.00962841042968033 country:0.009609870364436387 years,:0.009489501185788085 time,:0.009458266724997841 for:0.009381194916605608 :0.7404689171355062 +the:0.8046881157316003 tho:0.04662888153461172 The:0.02250258400565551 tbe:0.017284706834960657 of:0.01643649338939025 and:0.00872111427491516 in:0.008223539287892696 by:0.005578085448789723 a:0.005556487197394169 that:0.004210985750208476 said:0.003420945078514563 on:0.0028798374726398696 tlie:0.002653591071168965 to:0.0025981384198474496 this:0.0025932162561835975 for:0.0024851075015572396 from:0.002408157199703012 tha:0.002344052614226546 :0.0023065498083316292 :0.03547941112240853 +to:0.7427659748313221 and:0.06013218040025777 not:0.056534683582503915 will:0.02332890478699904 that:0.008996241365097819 or:0.008776026908217261 which:0.008107790262357951 would:0.008039196059804701 may:0.006678346030336102 To:0.006192698585759028 only:0.0060800374127362635 who:0.006021002387308639 shall:0.005428180681640269 can:0.0047907340616946455 the:0.00454440075580427 they:0.004490195483717379 now:0.0037554971957527877 still:0.003752998153732802 well:0.003608469526843943 :0.02697644152811326 +the:0.7451909566807109 tho:0.02745590591563726 of:0.02406620785721919 and:0.02096912717878077 his:0.020670655738235746 The:0.017615874608615543 an:0.015623771415171446 in:0.011606054064538398 tbe:0.010051500144815213 our:0.009936442374339537 a:0.008772753522414896 said:0.008360863405528359 West:0.0077157968919559375 their:0.006187475972604629 its:0.005678447313244059 her:0.004647130033452607 this:0.004434229263324399 to:0.0037284108123319757 on:0.0035468171684076852 :0.042741579638671465 +of:0.28767355066866834 to:0.08775711267569858 in:0.08678131196995101 and:0.05160598694501188 on:0.04646139928102899 by:0.04519522654900943 for:0.044547789071328545 with:0.03396756772609607 that:0.033699232901107726 from:0.03075346596941143 at:0.027039283056790858 In:0.021061449543044047 as:0.017514234937992545 all:0.012543839382496166 upon:0.011844431150487573 is:0.00998972746569266 was:0.008814315973987914 into:0.008557199930727406 through:0.007781895704231326 :0.1254109790972375 +first:0.11888680086511874 on:0.1006044437923812 third:0.07738442101826926 On:0.0769685967195811 last:0.04111827323445831 and:0.03324541279524728 second:0.028270506459931004 the:0.026153805692097395 of:0.0242317233909769 next:0.024206127407904766 in:0.013419224989461423 day:0.013100114440438253 fourth:0.012275514308680388 until:0.011424627007422677 that:0.011263744982158727 made:0.011142171424315025 city:0.00968671930519396 was:0.009534695099842068 from:0.007787178679310003 :0.34829589838721153 +taken:0.06709485246331914 put:0.06032065909999655 came:0.05654190338762664 it:0.042722407464328406 went:0.042447252837672034 made:0.038410988306116334 come:0.03668992933553011 keep:0.03489155801853454 get:0.029362612259510864 kept:0.02890638555049193 and:0.028738205966418268 take:0.02765774353760274 got:0.027487525602641942 go:0.02734361006992344 took:0.027306572921586586 looked:0.026868358752624635 them:0.02683533291963191 fitted:0.026028225569200016 set:0.024489142719445106 :0.3188567332177988 +the:0.2585124079902136 of:0.25812402887416236 an:0.10294771176373048 and:0.07477890764338108 in:0.043482291396167286 The:0.03686598933712721 by:0.021808543046277214 this:0.01830686740337139 to:0.01531746665437807 In:0.013404065945486158 some:0.012980739294128725 tho:0.012541047544904512 their:0.012132038424940744 a:0.011710295036352406 with:0.011642609588353572 for:0.010632725881240195 other:0.010626106016518384 its:0.009612194056770712 our:0.00938063641061075 :0.05419332769188521 +brought:0.1183642899684722 went:0.09517342232787174 come:0.07477529888719686 came:0.06550891391108245 go:0.0637351304819388 look:0.053016885273660025 looked:0.04738297833503905 sent:0.04618953284890716 it:0.04528787256731424 pushed:0.038059443358874956 turned:0.033519798438772376 get:0.03272520503909312 put:0.03243455690202919 stepped:0.03114011776728675 looking:0.026055115891360104 called:0.025981843491442804 rushed:0.02398679395716935 and:0.022841514116873848 bring:0.022681586907525354 :0.10013969952808964 +and:0.08799746181264648 filled:0.06737007243444919 covered:0.05377572809047156 together:0.025889683490202306 accordance:0.023025750391996867 charged:0.022292182058074712 parallel:0.019706097321494344 up:0.019666665372862012 connection:0.01919624118890491 loaded:0.017968217645783782 trimmed:0.014190469700696698 identical:0.013809954506714938 war:0.013512672864323057 connected:0.012530742004510369 supplied:0.012321953810800248 but:0.012004963797097196 laden:0.011566275247170828 him:0.01122640986498512 that:0.010914282318567404 :0.530034176078248 +and:0.06454739073657131 demand:0.023313300174744492 ready:0.0192991955467307 used:0.018559068069203856 time:0.0167973135366693 not:0.012889415712033305 vote:0.012868664167591082 it:0.01277775949265748 candidate:0.012059490274945432 him:0.011492660117416436 them:0.011389360230310022 called:0.010603763162339089 made:0.01030049958521204 up:0.009942829375404135 was:0.009875709402481388 as:0.009516893763303088 patent:0.00929908628672026 or:0.009178704268878403 but:0.00882338719685127 :0.7054655088999369 +the:0.11919516938815296 of:0.07230453158552728 and:0.05781056740443249 a:0.043018564803886335 to:0.031305092790907506 in:0.020848713353460488 at:0.014270110001066288 .:0.012526810245749479 :0.012413283442322082 for:0.011719122709941797 by:0.010808400946589808 or:0.010404172990115616 The:0.01003576004804544 with:0.009811868184449042 tho:0.009295902015355835 was:0.008924239095331684 that:0.008672304223433876 is:0.0085591147338948 be:0.008335143826716943 :0.5187411282106204 +the:0.2792481523160664 thence:0.21825914585886316 and:0.069582621261139 minutes:0.04166018629117917 degrees:0.028552774357040487 The:0.0268580358346668 tho:0.02220625346046513 feet:0.019274039182388326 miles:0.01613714700821811 on:0.014605984780116796 of:0.011849249399574612 running:0.011052465230981232 or:0.009837867441683384 thenco:0.008536682778626757 was:0.00800808727418108 far:0.007876076642319279 lying:0.0077970074066779325 to:0.007791956797089992 tbe:0.006929913572508033 :0.18293635310621428 +be:0.28255297998503975 was:0.10590476185093282 been:0.07371898634984181 is:0.0680278489128006 have:0.06066584976455704 has:0.04735197309909812 had:0.037548566607046516 and:0.03688176688564917 he:0.02884449034701669 being:0.02066782969113435 if:0.02063338126261546 were:0.020246227656759923 are:0.01793541620911104 work:0.017664310948485733 damage:0.01438506765078506 ever:0.013859823222568648 it:0.011901402367013137 bo:0.010931083677692452 not:0.010355973455274402 :0.0989222600565773 +and:0.09735749901749703 was:0.05310754944814813 are:0.04086151577009568 is:0.03834268082393075 been:0.034588990244603025 or:0.027807562138583795 be:0.027314704279128032 were:0.02480752234641631 not:0.02290287454987969 that:0.021703028888079384 made:0.01621607915750796 but:0.01482521167639991 as:0.01342424676018299 only:0.013392240262817432 engaged:0.013087291610809225 recorded:0.012772102916884154 one:0.011876720607393426 up:0.011778887244009367 it:0.011529532691960347 :0.49130375956567335 +of:0.18653083958672548 the:0.08668377905016815 and:0.04216332949296134 for:0.03995007208214706 or:0.03776456390972341 in:0.029449336627954986 to:0.02665760950853962 by:0.02213922272548836 with:0.015558122845488775 a:0.007858873526206482 that:0.006966960552776046 from:0.0069606775832977506 on:0.006017252607873058 .:0.005784054050106321 at:0.0056315345421126435 he:0.00514109901404817 between:0.004946933909594176 ot:0.004846677699093923 The:0.004794801353564769 :0.4531542593321295 +this:0.18958694968154424 the:0.1390508840474976 his:0.07482442215702066 same:0.06186100611146035 own:0.0603875626434099 any:0.05315444766201436 their:0.049041508508655005 other:0.03206869548929596 that:0.030771860487127867 a:0.02841619161606663 every:0.020931938222665113 of:0.018274084385732796 our:0.018046403431813875 its:0.016628029555976507 in:0.015511122593637874 my:0.013521018561728541 and:0.012598784836581025 no:0.01161314530398122 her:0.01132002189970741 :0.14139192280408303 +he:0.12703291627425517 it:0.09131180073632957 they:0.058320870404095726 that:0.05080988761940746 I:0.0487608304371097 and:0.044330322957134856 It:0.04224056400387813 who:0.040875510017513224 which:0.03792669584942611 she:0.03043639745618948 we:0.024505794155842597 He:0.018477133078505383 as:0.01798646680521681 you:0.014301121372935975 one:0.01122829300910504 ho:0.01046425803397653 be:0.010153756075079628 man:0.009280478585831644 1:0.008900147497544983 :0.301656755630622 +the:0.21389586896197796 of:0.1098981584110021 and:0.06452802887560945 to:0.0561918032911156 a:0.036295547543990926 The:0.03210137782795624 in:0.021035368002982165 with:0.020348812495762314 for:0.013975368979714362 some:0.013030469976162935 be:0.013014127476383346 by:0.01296897872538115 from:0.01213224133241292 free:0.011897792209723358 their:0.01183219251487988 that:0.011092855136709224 tho:0.010618488327603448 this:0.010306356913105764 on:0.008807155985065596 :0.3150290070124613 +number:0.032814902960511275 line:0.029352769691678375 one:0.026104489904540076 place:0.024624191046710042 all:0.020770078311638022 state:0.02006587333684524 out:0.01962192621016933 and:0.018886455005766523 House:0.018794107486087962 men:0.018267698031577476 city:0.018232553875690283 people:0.016247720860707998 day:0.015156250564216815 part:0.014340624534610458 quarter:0.012707312102562818 case:0.011142372007969225 that:0.011133714562699466 State:0.010936205412374235 side:0.010562043717073671 :0.6492387103765708 +Mrs.:0.07221321143785701 .:0.0478374466670678 and:0.02964051830099248 Mr.:0.026443367128020603 J.:0.02456669831692567 John:0.02065739337333204 H.:0.020433227397888897 C.:0.01887264542659137 W.:0.01870480889818238 of:0.01672822134866128 S.:0.014052704944719701 Dr.:0.013879958696552912 A.:0.012280739013168054 E.:0.011993647336285699 M.:0.011538959485811972 B.:0.011028856346795856 the:0.011002253254439367 said:0.010767954568032945 T.:0.010639236461346535 :0.5957181515973274 +to:0.5352583145244789 will:0.06259266111004222 and:0.04141489355851957 would:0.038351840841102595 of:0.03711206744340557 not:0.030948682572087244 in:0.021917472473725184 the:0.014243006325526145 I:0.01247855703638398 may:0.011524843556284628 could:0.011051440680179271 must:0.010818470633318476 we:0.009197072562826411 you:0.009143929829756663 a:0.00897974459517976 can:0.008359875134048487 for:0.007474198349304809 they:0.007389396250161518 that:0.007370689304822103 :0.11337284321884639 +time:0.016751878900314716 dollars:0.016187180957784854 up:0.015451846341339868 north:0.013944895302533981 hundred:0.011992808979405677 men:0.011885320106858787 principal:0.009813013298885663 wife:0.009643207797816413 city:0.009536825674139162 made:0.009067530373126813 out:0.008961052242318699 county:0.0089564136755703 down:0.00826828523199621 east:0.008002989971827737 man:0.007998939004278395 feet:0.007867037651845613 house:0.007309628250666866 side:0.0071787616417555745 land:0.007108763553809502 :0.8030736210437251 +the:0.10827285224321626 and:0.08870080307854705 of:0.07654378796298532 as:0.07601899914727774 a:0.04239111470737973 to:0.036354557417072705 be:0.029098708624609438 such:0.02486086551323051 in:0.02412061979539941 so:0.021759133747919383 is:0.0213871206641338 was:0.01854428813517412 or:0.018041820802296556 his:0.017121500893264113 are:0.011896248230315926 Mr.:0.011670635217693667 for:0.009878887779613906 their:0.009758437766275404 at:0.0092398132181 :0.343339805055495 +in:0.16223035477001657 of:0.1609046367989084 to:0.07802482112372261 for:0.07630331634955373 and:0.07222814806404843 on:0.05547051737459454 with:0.04328019460316023 In:0.04186050457023367 from:0.03816937907737049 at:0.029306247335875946 by:0.02653583294730943 all:0.019523596538774793 after:0.018404577479702203 upon:0.01683753624375501 that:0.016212734578041933 within:0.0113284982064778 made:0.010637820034350218 until:0.009808557045204135 but:0.009041443745443635 :0.10289128311345624 +the:0.24053146921761395 a:0.13304532655277168 his:0.11667888309797633 her:0.06650481884569476 and:0.040690510724331067 their:0.030551795570167437 my:0.028027207185980656 of:0.026708841295815338 to:0.0204252763092534 its:0.015411657839961072 very:0.015299110387854248 in:0.014866054476332822 for:0.013553398968909456 your:0.01243367606078346 no:0.009713286829698239 at:0.009682652790873188 our:0.009136077768857798 tho:0.008543700804495924 this:0.007815802920418455 :0.17938045235221067 +days:0.12820418218855253 years:0.1073054539765441 weeks:0.10258363630623735 and:0.05546362878667683 months:0.03846024033402059 a:0.0287357320517061 the:0.027797042464547672 time:0.02767806863804266 long:0.021940830470995522 year:0.020658614156900786 not:0.014791382885420475 was:0.014432877328587173 is:0.012051270310692929 or:0.011870504642238301 made:0.011014414105334769 day:0.010775358239528807 be:0.010632997146802969 much:0.010508252661306132 times:0.00950101228853117 :0.3345945010173331 +a:0.22395731604738012 the:0.12443010602469384 of:0.08703263802080143 and:0.04087702996868016 in:0.026008935086112035 to:0.023509272881106717 as:0.022839596718001585 for:0.018393948656758922 that:0.016442472292804523 The:0.015886460631269472 at:0.015139427232754714 with:0.013536519724492675 an:0.011922531193189605 which:0.010777186416655845 be:0.009716131835308986 or:0.009644042568166774 is:0.009526832751882775 his:0.009377697984754324 by:0.009260399873466014 :0.3007214540917195 +be:0.33911564231474217 was:0.11954391596592079 is:0.10551608792877351 been:0.06416055034807638 are:0.038308971007507256 were:0.033683412672025084 and:0.031178814516663614 he:0.02900755028881449 have:0.028568616972916402 has:0.025503553864798956 Is:0.023532596671756553 ever:0.019570323405328542 had:0.016868815247166734 they:0.015488577701772014 bo:0.012332817853876271 not:0.012306741132775103 hereby:0.011540316059162904 being:0.010619320201336869 it:0.010121921154254714 :0.052031454692331586 +enough:0.057119898201072467 and:0.05528532407321531 able:0.04902298238036996 order:0.04728387209176707 is:0.04169652534324147 as:0.03848922624625779 him:0.034502092348010875 necessary:0.033903609467841746 unable:0.029963890255540748 not:0.026223689488164864 me:0.025471540179401668 was:0.025141055138182704 required:0.024875526630541243 have:0.022835622023401916 them:0.0227367919823081 made:0.022010998526109476 time:0.022002531128346697 going:0.0206437585664958 fail:0.019457678621181414 :0.3803333873085487 +the:0.3140618755207914 a:0.1158369598827049 in:0.09261809338560359 this:0.059818670207142016 of:0.057705089216185175 his:0.02791354839018629 and:0.02225428261713809 that:0.022057467056812382 by:0.018022174345034517 In:0.017822371594655263 every:0.01763657219285412 any:0.01696641512241421 The:0.015771212849553524 tho:0.015692315701495832 on:0.012876034456396441 same:0.012185317179082956 whole:0.011973066742500312 its:0.01170867336776412 great:0.01070930471795528 :0.12537055545372958 +of:0.07667361579095414 the:0.05205932038753248 and:0.022357799675571083 to:0.018911479531552693 at:0.01869874535880576 by:0.01813002171198439 a:0.014393998464561969 was:0.013605600600845686 be:0.013600010959376749 in:0.012763586823762487 .:0.01174146975087964 is:0.011631790507823554 an:0.009751195403600916 -:0.009555292497007704 that:0.009004141178718653 with:0.008996416835174062 :0.007969539668261002 The:0.007476001676481479 are:0.006578159859528095 :0.6551018133175776 +and:0.0634137443894196 .:0.03203886005880795 E.:0.023982891435959 :0.018683682914452673 W.:0.016175024500494056 one:0.012990185918730073 east:0.012290924735249249 of:0.012030486737669873 Miss:0.010513621508713772 on:0.008946140868815034 Mr.:0.00840295127153169 west:0.007903947478340587 I:0.007615551542812319 the:0.007562486452575447 as:0.007318078973143941 or:0.007048361040937234 point:0.006994841271907994 south:0.006985591557623357 S.:0.006824616491881588 :0.7212780108509346 +the:0.40523303454763515 The:0.08191627470693252 and:0.062394964904122344 of:0.05922957601017644 that:0.040551185783968505 this:0.03856103475739523 in:0.026414120548263934 tho:0.024425434050988067 for:0.024243015383908162 an:0.018838967206352402 to:0.018178534833915405 a:0.017666122726144373 on:0.011986917088801018 same:0.011257079194001818 such:0.010328589262736877 tbe:0.0097783852650235 which:0.009732574536095606 whole:0.00956608983955502 or:0.009311360038415721 :0.1093867393155679 +the:0.4679348879954857 an:0.04573694408393802 of:0.03537607272024301 and:0.03341539038596442 a:0.031679258512938034 his:0.03081494088095348 tho:0.029481102115290092 in:0.02121306669070822 as:0.02082531694742701 to:0.020007811442283845 at:0.019644562215605295 by:0.014947203652219652 no:0.013236256418861735 The:0.01297010092712829 tbe:0.012179599599051322 or:0.010261779874419069 their:0.010040332399929651 this:0.009861204260887251 with:0.009690663591000764 :0.14968350528566512 +and:0.08995317707915026 to:0.06844710404109794 of:0.04605142056172993 the:0.04074574508561307 which:0.02479116931334353 that:0.023764822140213245 re-:0.020841117231308055 in:0.020803825395358622 for:0.020278423301550053 :0.018417753428486977 not:0.016860793136637672 con-:0.016444405871234195 is:0.014386481772210856 or:0.014080680914153714 be-:0.01352268143271276 I:0.01317002660943805 was:0.011429878269381662 dis-:0.011196807025842847 he:0.01113106290024311 :0.5026826244902934 +be:0.1786387092315297 was:0.13462478805676464 is:0.10483593214539168 are:0.058620074885517064 and:0.05294536346013902 been:0.051957703712994754 were:0.05121719893631272 being:0.022322832504943376 not:0.022301909717127085 Is:0.02165322003590847 coupons:0.01975221709351811 had:0.014936471935538482 have:0.01432365444577529 bo:0.01394566517861049 has:0.012962928336160286 so:0.012217962121740943 he:0.009993396441088317 now:0.008717126756156206 it:0.007625986808327092 :0.18540685819645625 +a:0.25122509693261214 the:0.15091760358733255 most:0.09521389993818202 and:0.08892875827826922 of:0.04930496508785087 is:0.023925672058449015 very:0.01817655789412097 are:0.017208861122221492 his:0.016531595565827697 as:0.0162447812575842 The:0.015363640636882558 more:0.01342802243229833 be:0.012840668487017978 some:0.01270190432245837 their:0.012410908170475113 to:0.012282261624087005 or:0.011794442917125154 with:0.01098915421517722 its:0.010705438517822888 :0.1588057669542052 +in:0.2871169770425693 a:0.2354467197733633 In:0.1451776172066279 the:0.12723469338797003 this:0.03325616832527951 and:0.017392280460439457 of:0.010032621244475898 iu:0.00998421574137245 great:0.009021436877247746 tho:0.008852930555172004 full:0.008755447528800262 "In:0.008690299244826727 by:0.008209528362970352 to:0.008199606647534762 that:0.008011884558991357 every:0.0064537019049452585 The:0.006425752306787278 A:0.006240518394170674 on:0.0053130886413752755 :0.0491845117950805 +and:0.10761632261456493 the:0.09337180580412639 to:0.08485374280900797 of:0.05734550839726454 was:0.04834978233805865 be:0.03943305163891477 is:0.03465788650392711 a:0.02723908861903742 not:0.025981452842713956 in:0.025625493570933452 been:0.023227938465516358 have:0.020534933615575568 at:0.01852321155578907 are:0.01806530985740845 had:0.0169536902402863 were:0.015201989007063339 he:0.01453224551005764 his:0.012776351301658027 or:0.011978965790841761 :0.3027312295172543 +State:0.03061518175785248 state:0.02229550736806158 out:0.021674003050848364 and:0.021287068994235585 county:0.015401635418560747 or:0.013766287219940157 city:0.012872175129812388 time:0.011381462236011566 that:0.011281443541765862 lot:0.011092859753024096 people:0.010917089342922442 Secretary:0.010717058676027126 day:0.01048185591323394 act:0.010313799878973054 one:0.009966754462239559 tion:0.009888762438404409 Board:0.009815513844935063 sum:0.00925986907060153 States:0.009047020992108445 :0.7369246509104416 +A:0.1394607025313708 J:0.09840711799962541 M:0.06890023757507942 C:0.06513056733131907 W:0.05618730484245564 S:0.05251845076474579 H:0.04940358882234844 L:0.04857082870166037 E:0.044007353055444294 F:0.04258388043740527 T:0.042417251492808526 D:0.04072258389173953 P:0.038885434875923025 B:0.0374109726928165 R:0.02302469947213809 O:0.01611918013392381 K:0.014078108341977664 N:0.013865615573622899 II:0.013419408231670442 :0.09388671323192503 +of:0.0879718029202686 a:0.07850700029759364 and:0.07176357881835173 to:0.059285085529920144 the:0.05469301725342436 in:0.046661003098286795 for:0.027742684920276994 an:0.017903325945817474 as:0.016480255300670186 will:0.0155263164688886 with:0.014933877640981403 that:0.014874695838210685 In:0.014272909368773375 or:0.012498265774801818 :0.012468975501661463 his:0.012391131755100517 which:0.010377112202526052 this:0.010312144311965263 by:0.009191163666366646 :0.41114565338611425 +the:0.09687452872199863 and:0.08360083843051289 of:0.056400707358022946 was:0.0506286129360345 be:0.04450006569512159 a:0.03570894909285043 is:0.03059519660925222 to:0.02478513068253544 are:0.023107653041348448 were:0.021465228381430373 been:0.01667290745856879 .:0.012740291242919423 in:0.012318282165279207 I:0.012213770986321624 his:0.011790070352132172 or:0.011409796569291728 :0.011067458474797755 Mr.:0.0095888579455313 an:0.009404718763085714 :0.4241269350929648 +carry:0.1412497087947734 through-:0.12826013105545556 with-:0.08091675963353849 carrying:0.046277804198627925 pointed:0.03723144396063946 and:0.033126401155713206 sent:0.030773149825916037 brought:0.02747943045078021 carried:0.027073602342564777 find:0.026641036907707145 put:0.02615503321810391 wipe:0.025838030544031883 go:0.022515062343076847 went:0.022513291814153923 get:0.02250598350754256 taken:0.022060176804249623 pointing:0.019443788737956894 cut:0.01939461821188527 bring:0.01927596027535409 :0.2202685862179288 +act:0.05397860053173752 State:0.04070240977614048 day:0.039920556250599246 one:0.03526136900362744 members:0.03493697867775098 state:0.03441795277810496 Act:0.03254454403326222 out:0.031806270573169176 part:0.03113314324664895 Secretary:0.027545893642869437 city:0.023978458014924823 session:0.023814481472018482 that:0.022555788363348848 tion:0.02236143877514476 laws:0.018904929367709822 sale:0.017829870002561806 time:0.016946555345045543 line:0.016604082461968567 and:0.01646520718224929 :0.4572914705011176 +to:0.18995906886723973 of:0.18503747794787087 with:0.10167374493278032 from:0.05122739756756756 by:0.04491309117287798 for:0.04386136984883905 among:0.029288171865453752 and:0.026261599803723744 in:0.02090919881280412 all:0.020123288025807068 man:0.015833550361482922 those:0.013051895652888027 against:0.012668719563591696 upon:0.008779805727498927 one:0.008292927687315684 men:0.007631629096446871 In:0.007521616979382455 I:0.00639646619905563 To:0.004597418612049764 :0.2009715612753238 +which:0.13443822060642194 that:0.09728309547404371 it:0.0906631127411106 he:0.09024113604626523 It:0.0774059303662168 and:0.0664635356929978 who:0.05450000709282543 This:0.04032699547040787 He:0.03335941593204268 what:0.020835029939547788 she:0.0191630863614905 there:0.018211637264737436 There:0.011873508664861783 this:0.011833404399616613 man:0.009198216551723943 She:0.008823407013901998 I:0.008711990297929358 ho:0.007623201836651579 That:0.007461830536609232 :0.1905832377105977 +the:0.11411838518796763 a:0.09736931114341583 and:0.08326526994703388 of:0.05526728244282018 to:0.04314856188015604 in:0.03030627940255479 that:0.024678584323104387 which:0.020897259736603453 an:0.020775859760481765 for:0.016561872288320807 it:0.013650617624412456 with:0.012908482094423817 The:0.012605309905608769 in-:0.009511742960515468 It:0.009178953580527865 as:0.009042327589470482 :0.008637475139132315 one:0.008181361531355461 from:0.008131954025027708 :0.4007631094370669 +of:0.13321826772308706 and:0.0865713308391243 to:0.054498129100801276 by:0.03906237269726539 :0.023876593743483044 in:0.021325001237042653 for:0.019937378220702368 that:0.015960259234090834 at:0.015334743576943182 with:0.013159959207993194 as:0.01304006843216325 said:0.013005825457201872 from:0.01204842402916883 on:0.010850947654826177 the:0.008854604522987653 when:0.008690569136783916 .:0.007261547093729827 When:0.006592234038811605 but:0.005977311404172537 :0.489734432649621 +instituted:0.3746929231397187 able:0.048925861268966864 is:0.02827525407387795 him:0.026801088344138416 time:0.026295981296154902 and:0.025833986919333068 unable:0.025015577377250676 have:0.024812972564639383 me:0.02458872526179592 enough:0.021500962440064778 otherwise,:0.021302702914611456 made:0.020769820932496165 had:0.02001970993798016 trying:0.018159283083576006 want:0.01654161684112939 not:0.015183459453949007 necessary:0.014544037304546087 them:0.014485573641792768 brought:0.014418522127577008 :0.2168319410764013 +was:0.192343168012407 been:0.12267755013503433 be:0.11991809128636681 were:0.07864266773301468 is:0.07145116759149601 are:0.04728411036484808 and:0.04283599929390978 had:0.03766246503927054 being:0.033738618799807774 have:0.03293568171014104 has:0.024294451969047236 Is:0.013613611482816533 he:0.011613629937429164 bo:0.009178217696744349 not:0.0075548234009761945 now:0.007335305531662038 ever:0.007197481053657391 or:0.006540540554797978 then:0.005411571127166425 :0.12677084727940666 +the:0.3463936057505004 a:0.14248839868866556 and:0.0856290474640361 of:0.08472081561360857 The:0.06391959794139646 in:0.030808547042030062 most:0.025541352087913066 tho:0.02315104406545794 by:0.019087719640501318 A:0.016212160796953402 our:0.0138923441834297 with:0.012643111927697886 are:0.011345514712178458 very:0.010956381136049837 that:0.009144779365313846 for:0.008936667331400517 this:0.006911510244853952 his:0.006397407962398814 their:0.0062191597438063925 :0.07460083430180774 +and:0.09191273143830377 I:0.057188068860726055 it:0.04685930049915887 he:0.045590980991871304 It:0.037860497765008806 that:0.033428979628989844 which:0.025275068456807513 was:0.025065404537886256 be:0.024947214163741432 who:0.021718144393734515 one:0.01979947534162924 then:0.016780452804056236 is:0.01677972414098903 had:0.016112064255910868 they:0.012237640263188998 have:0.012007348443924823 He:0.011565289992316881 1:0.01043824906893221 we:0.010235807486882981 :0.4631975574659404 +in:0.30327433245585694 of:0.12403110544838103 In:0.06877380087283635 and:0.06380687183227633 to:0.0542881688304655 for:0.0493015313884445 on:0.04848393702159839 that:0.03439588478724014 at:0.026330322920598396 nearly:0.023020457955776428 almost:0.020115335997595386 by:0.019857047437743674 from:0.0192217696159472 with:0.01632580567120237 upon:0.012104044466324147 On:0.009254041946118665 which:0.008997714390654362 into:0.008649968068743867 but:0.008475954287176199 :0.08029190460502011 +a:0.3374868541484221 the:0.2609041835784907 this:0.061771497369602406 The:0.04803093510409908 no:0.03528761644795307 any:0.024849661801662298 This:0.02426602523101042 that:0.019413761634423512 No:0.018171176966102584 his:0.017961025510952574 tho:0.01641636108226139 what:0.015351144455312528 A:0.013199529325439484 our:0.01195262462054687 every:0.011870652759511038 same:0.01012177461231165 their:0.009445285019099671 little:0.009268153894900348 one:0.008927384079489262 :0.04430435235840904 +and:0.09250741093604914 of:0.06895330541934497 put:0.0674514796868645 as:0.06267112065678532 make:0.05425702335259153 that:0.052172000015098294 for:0.0431753586139634 to:0.039608103116352225 with:0.03596771598109795 found:0.025212428927664336 find:0.024833099583985673 made:0.023802655933713977 but:0.02326661010304946 get:0.020143286431190992 give:0.01956366561589181 take:0.018815588507891064 is:0.01846724682485093 upon:0.018178882012065193 by:0.01816454276129662 :0.2717884755202526 +intoxicating:0.33042448852743345 of:0.13646921516039134 malt:0.0974985029651987 spirituous:0.05668810280264193 in:0.04026132046914228 the:0.03293138184098115 for:0.0288064851794385 and:0.023762620178256862 all:0.01480632805307562 In:0.012349211956346815 by:0.011088813401883621 this:0.009747868315056599 a:0.009579926080447596 such:0.009518141627557397 that:0.008550878975022264 on:0.008497146028941078 no:0.008325432098201536 said:0.00817667436767716 from:0.007918522721409306 :0.14359893925089684 +away:0.05746860598250849 and:0.04985561698690421 taken:0.03950823995165392 miles:0.0355312759828073 feet:0.031845900191456514 come:0.022313957473317422 them:0.021637161013586904 out:0.020621546731341717 came:0.02000539576637417 up:0.019820502682224503 him:0.019195504147748815 received:0.019046714556510396 far:0.018152378296247898 removed:0.017489734983720518 down:0.017467467859455896 it:0.015386533775439217 years:0.01424855034507225 annum:0.014237643714946796 free:0.014107989586278378 :0.5310592799724048 +he:0.16360094081964227 I:0.11528143735085739 who:0.10300539256788709 they:0.07340333716203055 she:0.047079350620079084 He:0.04228763749842292 have:0.039785168558275213 we:0.03394780132714351 and:0.03315033545207488 which:0.030060031175575555 it:0.0296895526146325 has:0.02763510185164975 that:0.020052420174378117 had:0.017051508757031954 be:0.015024711107084705 1:0.014573932128092867 She:0.014512230796035707 They:0.013487830518168152 ho:0.011607491484433945 :0.15376378803650384 +day:0.05982494554139729 number:0.04835747639710388 line:0.04577653797096375 side:0.041441053752078925 part:0.03225423145218772 state:0.027563336667958835 out:0.022423361318135777 corner:0.021349618602208357 case:0.01635000511135565 tion:0.015729425527391865 feet:0.015412980655003813 State:0.015263898448148657 lot:0.014943988686240918 favor:0.014788406992084432 matter:0.014718416917805649 parts:0.014539043387125012 city:0.014356203231877352 people:0.013909458039990495 and:0.013892859709700008 :0.5361047515912416 +of:0.14799589884000702 to:0.09922053605923775 in:0.07463386781021378 by:0.06310242896741919 and:0.06297812748139857 as:0.061285776288482384 at:0.05546940521708176 with:0.05235258842215559 for:0.0485733342265603 is:0.043640421160423465 that:0.026737174837109447 was:0.02601373351157668 such:0.02594814540528041 from:0.02054846344325817 on:0.019401680844865557 be:0.019172703609787022 make:0.0146466837858944 made:0.012458523077730628 In:0.012088876696020722 :0.11273163031549714 +of:0.34197237498070426 in:0.0846758288445107 for:0.07972135853527682 to:0.07311478688945638 that:0.06124419229331672 and:0.053653711785035335 with:0.04262232651501138 by:0.029722054805282772 In:0.028903053315957543 but:0.020913688674935847 is:0.019458587326916518 from:0.017416144845552956 at:0.01653585434395209 make:0.010802301234719291 all:0.01076452329078865 upon:0.010727921400115744 which:0.010447965028263343 under:0.009032309663282166 For:0.008448013986613247 :0.06882300224030821 +could:0.196245550519143 would:0.19188105005129824 did:0.12808135906344773 will:0.12694228761401166 do:0.07679082637596975 does:0.07330051574283997 should:0.052400539779114644 shall:0.03199822522340971 may:0.03061081288407703 can:0.02167888103696058 must:0.015109285692458797 might:0.008126378627002584 need:0.006934239361042601 docs:0.006000101207774531 Do:0.005363256603568303 and:0.005218963732269058 had:0.004151447758268044 we:0.0036998378619823784 can-:0.00350527486504475 :0.010961166000316666 +and:0.04887712976304859 him:0.03341532886173904 feet:0.03162478244240257 time:0.029499798251413294 as:0.028377207733443623 them:0.02600728689266663 up:0.02560227551347045 right:0.02153201871144617 is:0.021348687378046766 able:0.019856256438284346 went:0.019684618459071823 go:0.017814838470601654 made:0.01759281801470738 me:0.016113450980780937 back:0.01597848817950739 subject:0.015540186118577217 it:0.01513664509713202 down:0.014862735270642725 began:0.014799238985074062 :0.5653362084379433 +he:0.15581466542975142 it:0.14499820109016215 they:0.08943011190542358 It:0.07992681673966813 I:0.057997524707114216 that:0.03654466707155206 we:0.03511539685820547 who:0.03429913789100766 she:0.033032424302688164 and:0.029941817005246976 which:0.02789553865715621 He:0.023325696741163113 you:0.016200537098616644 We:0.01394571482231166 be:0.01319251237890309 ho:0.011933529571185705 They:0.0115513567791168 there:0.01078661793675704 lie:0.008497770992066746 :0.16456996202190316 +at:0.511797961596843 At:0.12778106356686803 about:0.10514712813692693 About:0.03857444007471347 of:0.02973521896815228 and:0.015180189983698914 feet:0.011350657592181677 for:0.010635017540510851 or:0.01053815578732158 to:0.008758202262730844 No.:0.0055432730478341425 from:0.003977543549201004 in:0.003934110467996785 than:0.003714701773027209 until:0.003680286418049621 township:0.0032651799613288915 degrees:0.0026611630679711333 all:0.0024744234262052515 .:0.002277850634091071 :0.09797343214434735 +the:0.11919516938815296 of:0.07230453158552728 and:0.05781056740443249 a:0.043018564803886335 to:0.031305092790907506 in:0.020848713353460488 at:0.014270110001066288 .:0.012526810245749479 :0.012413283442322082 for:0.011719122709941797 by:0.010808400946589808 or:0.010404172990115616 The:0.01003576004804544 with:0.009811868184449042 tho:0.009295902015355835 was:0.008924239095331684 that:0.008672304223433876 is:0.0085591147338948 be:0.008335143826716943 :0.5187411282106204 +the:0.22924132425264135 of:0.08035128677966182 and:0.055547515083489235 that:0.046985470849204194 The:0.03949337034195376 a:0.0326788192338605 Mr.:0.03136382172704767 or:0.02084337345122462 no:0.017943983364482677 tho:0.015462026051497562 this:0.013568919202297856 as:0.013163992702882273 in:0.010921943914589408 he:0.010164202291307874 for:0.009691030462655513 which:0.009078491314894655 their:0.009046326996308082 .:0.008674677877003106 be:0.008418409575066486 :0.3363610145279314 +the:0.4071374189315913 and:0.06449181461132415 of:0.02892866618288876 in:0.028670005984162618 The:0.02603617389223924 tho:0.024993820467459137 a:0.023579040051412606 to:0.01755553213771617 on:0.014626070241060114 by:0.013447843485786471 or:0.012794166593089693 tbe:0.012024509152999897 :0.010353482361299817 that:0.009291482237329618 In:0.007938246807075932 from:0.007526799010378873 other:0.007469196869028889 all:0.006409533041696086 for:0.00626887758057738 :0.26945732036088327 +of:0.10555006959898121 to:0.07328578330100007 the:0.048902138234553985 and:0.04616538206065283 was:0.025999652882886286 at:0.0227324491464561 by:0.021984099626185992 on:0.021196319987371415 a:0.019775135547093977 is:0.01841403579837091 be:0.018290733300020543 in:0.014507776500920184 be-:0.01410289973642618 :0.012607040261353673 said:0.012439461731496142 are:0.012250262812714735 from:0.011727030463190076 that:0.0115238577241806 were:0.010520949429094704 :0.47702492185705037 +in:0.022312325149317424 up:0.01512988243963554 good:0.014930457115287989 life:0.01325755273035803 health:0.012679674037722587 men:0.012553297528574137 time:0.011436606616820071 strength:0.010538518748212303 city:0.010344201181892814 out:0.009867719361512204 gold:0.009489729516640075 hundred:0.008789615649063515 peace:0.008776732060724676 long:0.0081140077694533 made:0.007986406635940633 him:0.007979228210808906 great:0.007725545895566812 down:0.006998962815847924 full:0.006900995116824263 :0.7931885414197969 +the:0.3685518778735978 and:0.09260057885064 The:0.07090977142459856 a:0.052438716408739476 of:0.04697086368910716 their:0.026080133281864704 his:0.02587962596654783 tho:0.023204750436229497 all:0.019003266347277323 our:0.016237150512605214 or:0.0147718438692079 with:0.013389979072365105 its:0.013214130081150625 her:0.011235693023877403 in:0.011222414020779023 tbe:0.010400781241677636 other:0.008799984465790063 to:0.008663521966377985 some:0.007852207539585217 :0.15757270992798145 +the:0.16807735899698817 of:0.10541662057906837 and:0.05138367848570702 a:0.04141865232648221 to:0.0385989743764065 in:0.026264864977736738 was:0.019530675665220657 his:0.018900421021236905 be:0.017373825006196972 their:0.015767721170721456 for:0.01557246589796783 with:0.014071419046630446 is:0.012922913111931644 at:0.012690452250034052 are:0.010702713108721902 .:0.010158075558988393 Mr.:0.009672788574483367 tho:0.009612591781990074 were:0.009549306361446321 :0.391314481702041 +the:0.2794970317898123 and:0.11119876677329028 to:0.10404390818929936 an:0.05570387590663988 a:0.052093737788659576 of:0.04739062909245055 in:0.04286242377308406 The:0.025983522265278926 this:0.022512387832352432 that:0.0217214257402166 tho:0.019694753306521397 or:0.018996196883766046 he:0.01790870980940191 I:0.01616229521816218 with:0.014219109915283717 his:0.01243372734119798 which:0.011989002626125787 was:0.010558161132738405 as:0.010476976445962089 :0.1035533581697565 +and:0.10390181935242318 succeeded:0.03540717691607026 was:0.03510108163693176 is:0.034359767168292824 be:0.029482385862871524 it:0.029254905638588218 that:0.02921010224924643 are:0.022667770921939594 them:0.021783089068761526 made:0.021378368259232797 or:0.021103844379991875 now:0.017745261244439092 but:0.017073045028481334 him:0.01641811443279884 found:0.016190261151408692 work:0.014279623218558765 been:0.014090291929399593 engaged:0.014039300407223692 not:0.013827785681030873 :0.4916860054523091 +and:0.07558940021936399 recorded:0.030196237618668006 was:0.028917161578042846 made:0.027969746247669736 that:0.027730098932509103 o'clock:0.025060522019555328 up:0.023026552239529506 is:0.020398277211376416 found:0.02003101797656537 placed:0.017482208134164214 out:0.016937164562539058 place:0.016819459500107596 interest:0.016629321966808677 him:0.016002796715253755 situated:0.01573420479581609 it:0.015128305982428461 them:0.014715943643665314 part:0.014646613000297721 interested:0.014450471929902294 :0.5615344957257364 +Mr.:0.016494077913735028 wife:0.008350571714292277 ;:0.00809070023474508 .:0.007280647607939557 William:0.006526106093106793 men:0.006484512091056881 Robert:0.0060286780973543746 John:0.0056390796291231355 Smith:0.005564242780462353 ,:0.005448101012485536 name:0.004950179352372189 son:0.004942587039109572 James:0.004842532169344684 Dr.:0.004738285599938578 Joseph:0.004672106779157416 and:0.003980060225998051 1:0.003976329112981866 Register:0.003972686670535013 Baltimore:0.0038148686231147958 :0.8832036472531468 +and:0.11960299744677232 at:0.08999447557100415 the:0.03986443356214796 of:0.038369528397318636 about:0.020589040811829204 than:0.0205346880049103 -:0.01962332237201506 .:0.018673283100596377 for:0.015356654146939505 or:0.012745907435465569 4:0.01198823709729466 as:0.011869872524058514 3:0.00979719575617182 :0.009740846895792087 25:0.009328513528568652 26:0.009185350723431566 lot:0.00901054278749045 5:0.008988021650747994 6:0.008887368456779529 :0.5148497197306656 +the:0.10556631843063706 of:0.08381173061728203 and:0.0757967766748805 to:0.05438898091412393 in:0.027523481333525814 or:0.021201638260507312 :0.018138709028243195 by:0.017054199576559254 for:0.016279873334688933 be:0.015557487264310459 that:0.014908987565772714 with:0.012991576062430352 was:0.012570108505124725 are:0.012519487708407823 at:0.011716936814347712 re-:0.01129623831547596 is:0.010991779780053123 a:0.010956858574047566 as:0.010456516494519116 :0.4552723147450624 +they:0.14770704835983298 there:0.07038693100077321 who:0.06011294126003355 and:0.05369581507412201 which:0.04214665274341444 we:0.040030193976407315 men:0.03763361493443257 They:0.0356249368687262 There:0.030980748030048803 it:0.0221227213395232 that:0.01651512473917267 them:0.01613727192522815 I:0.01594639729929613 you:0.01381519306674376 people:0.012543208377129064 We:0.010486848741642466 others:0.008604073029472477 all:0.007968512239024691 children:0.007585749975545003 :0.3489560170194313 +of:0.14577562010237852 to:0.10351344923477222 and:0.09219123629629133 in:0.06438353263751215 with:0.06004196661300549 for:0.05359939407205542 all:0.04715837920021526 is:0.03736277344350526 by:0.03711881236955804 from:0.03594552466369519 that:0.031284081847049366 like:0.03106577806145234 at:0.028457824003004964 than:0.028102628243850895 do:0.023301781417195216 In:0.023245607974919032 as:0.021013951961881782 Besides:0.020321610819424015 on:0.018487943689165492 :0.09662810334906803 +and:0.10119789434721585 the:0.08750650826269914 of:0.06965652901268303 to:0.05397231607343732 be:0.036865526523342323 was:0.035053854231348616 in:0.031304212937328754 is:0.026000336185972757 are:0.0211137244270955 were:0.018396838756921496 con-:0.017174874810272 been:0.01699376096117119 for:0.016754654309511306 com-:0.014528737373553537 much:0.013539613194676265 their:0.013377304520975603 he:0.012755370579971337 or:0.012523440083369532 not:0.012362122862064477 :0.38792238054639 +the:0.11919516938815296 of:0.07230453158552728 and:0.05781056740443249 a:0.043018564803886335 to:0.031305092790907506 in:0.020848713353460488 at:0.014270110001066288 .:0.012526810245749479 :0.012413283442322082 for:0.011719122709941797 by:0.010808400946589808 or:0.010404172990115616 The:0.01003576004804544 with:0.009811868184449042 tho:0.009295902015355835 was:0.008924239095331684 that:0.008672304223433876 is:0.0085591147338948 be:0.008335143826716943 :0.5187411282106204 +feet:0.0587146708577886 entitled:0.043460346081749486 up:0.03992318255151193 amounting:0.0385178903895851 went:0.0379100837669411 and:0.037683814090718595 him:0.03501490924037644 as:0.028320964065347773 them:0.02631083044675825 go:0.022663975426533523 going:0.021327292576436157 chains:0.021082725336941714 came:0.02081730149549339 down:0.020336309213812517 back:0.018183191492349322 amounted:0.01716139049153712 it:0.016316908818234766 one:0.014662727217947534 ing:0.014520077187529788 :0.4660714092524069 +of:0.09129790931378902 the:0.07369883040827747 and:0.047842263382354346 in:0.04189055351593407 to:0.04045875475680249 a:0.03542341257202578 be:0.02020462051672066 for:0.01979292654746225 was:0.01760256398103379 at:0.017380150555488715 is:0.014984483003968216 with:0.014047653760730413 by:0.01374644383819499 :0.012670486581795598 In:0.01200961464556976 or:0.011563835749786333 from:0.011391516893522809 are:0.011273104484969465 that:0.010755276030689069 :0.4809655994608848 +:0.05408755002078587 that:0.049531093299571755 and:0.026307747831082865 it.:0.023066050300906284 but:0.01604063510609521 as:0.013691133477483644 them.:0.013231826614228009 country.:0.010841946065548622 of:0.010487154798430135 which:0.009468692177853443 people.:0.008334614695462483 years.:0.008004416265567844 time.:0.007956347283674411 If:0.007858697640010603 him.:0.007413514011734311 year.:0.006977232836926869 for:0.006851092903969388 life.:0.006064905382420001 .:0.005982979647669748 :0.7068023696405785 +:0.13947218602305914 .:0.034666059590361106 it.:0.02173213943372198 him.:0.01930692579624085 them.:0.012818350497690537 Mrs.:0.01110374496512026 time.:0.010396849161704764 city.:0.010378246140621404 Mr.:0.009717277051232652 night.:0.009225701067132046 day.:0.009192020867041378 house.:0.008092428157774204 J:0.008068414999049105 year.:0.008052756629549917 place.:0.007971138064565328 week.:0.00772654833814175 out.:0.007679953888307749 —:0.0073606255976618315 It.:0.007287204210922303 :0.6487514295201017 +of:0.2671490403146797 to:0.09026236883696408 in:0.08602972496542342 for:0.06405358486586245 and:0.06160969104456397 that:0.0489282547062129 on:0.04798214764850993 all:0.03914236798895051 by:0.03559254594296566 from:0.029598028075410333 with:0.02941691470571723 In:0.020233603053713203 over:0.015909413564659792 upon:0.014915617641159654 as:0.012863965268674622 at:0.010474802689621787 through:0.009567679327470496 among:0.00952452432599289 which:0.009401191156346375 :0.09634453387710103 +sum:0.03352282876311118 number:0.028116684882597106 line:0.019995206059833036 city:0.01946514558931857 out:0.019275318828420953 day:0.01666865340772654 county:0.014872697538657208 amount:0.013254184849875051 Board:0.01252325449624941 town:0.012449555905674143 side:0.011663975251122375 part:0.011517157473718155 County:0.011460540331966697 state:0.011087331502382173 City:0.010878919191854432 purpose:0.01081028255427907 and:0.010297866493795984 way:0.009848747943663767 name:0.009522170936943183 :0.711769477998811 +the:0.4551256409212655 a:0.06457415600023494 his:0.04280838106120698 of:0.03741137164674222 and:0.03284872211692951 The:0.03053398195329737 their:0.02722976325082568 my:0.02523745976030712 tho:0.02362150129972369 our:0.021425762294697913 her:0.018151115653834295 no:0.016754501829329232 for:0.01497750652714168 your:0.01354875793229686 that:0.013138602570618932 any:0.012126811768278073 its:0.01123281917599729 or:0.01101788341530916 by:0.008491470770237873 :0.1187437900517257 +and:0.10828120911665538 to:0.10199166881556457 that:0.0901942801044014 will:0.08781132121826518 would:0.07763493907431228 which:0.06354641796744326 when:0.04071286744081371 but:0.03913726430749366 should:0.032667865392043756 as:0.022983892475818044 for:0.02163059327602377 may:0.020330745677834848 t:0.017799750076327378 if:0.017400199052067657 not:0.015950488082515063 had:0.014788808421183389 shall:0.014661980259943808 where:0.014467423764935183 was:0.014313443616745764 :0.1826948418596119 +a:0.46544041514595863 the:0.2923961086844696 The:0.03183696111820229 his:0.02223661078884481 of:0.017692539769269034 tho:0.016006366913055323 and:0.014063177441091106 no:0.01377782077493579 any:0.012294551744552813 their:0.011905280345239022 A:0.009057215845240356 tbe:0.006913675278245 high:0.005863862610649387 its:0.00560373132312127 every:0.004746522862609054 that:0.004656545784464775 our:0.004328294189070282 this:0.00431523498449307 new:0.0041992613016982525 :0.05166582309479015 +the:0.7184541048061627 The:0.06403896256437365 a:0.05396182553106841 tho:0.032598239439986784 of:0.018678846259071385 and:0.016539138044143826 tbe:0.008973027047271643 in:0.005879457535999358 vitiated:0.00536400763396983 A:0.004793723844352914 with:0.0037552382428914124 great:0.0035040743242801876 no:0.0030856592187383613 by:0.0029617373677031035 new:0.0028927742949048174 his:0.0027345315008553677 little:0.0024067089847177293 old:0.002211891839874008 or:0.0021816842930889443 :0.0439843672265456 +of:0.08568273543387475 to:0.05344107978287669 .:0.044267077298948375 in:0.04426216079311536 and:0.03373094669551963 the:0.0307317115807187 by:0.026035776114783048 Mrs.:0.020959135306959354 :0.015313086630984064 In:0.014698430870379281 said:0.012498987725088203 Dr.:0.01227402673940178 Mr.:0.011913764685256055 with:0.010960580201262077 from:0.010416161229680535 for:0.010034063289057486 D.:0.009182776781273664 W.:0.008583306207207405 A.:0.006876418140409904 :0.5371377744932037 +of:0.18467604151872227 the:0.15539398539224183 in:0.06530690972550492 to:0.04140678918295899 a:0.033428462021340456 and:0.022971748320380583 on:0.02228456727951551 at:0.018416900757889612 from:0.016241516820107004 for:0.012270977610387177 In:0.012196047327555425 :0.012076100544707766 that:0.011186334726240659 by:0.011005815652459196 as:0.010898520621759718 tho:0.009155312084141958 with:0.008819224963559632 his:0.008383318138713508 our:0.00811169849533102 :0.3347697288164828 +and:0.19752846865388307 that:0.05838247363878242 and,:0.02730393529029453 that,:0.023638209014109682 but:0.021664374701488732 And:0.014719136491102583 time,:0.011208007256554464 them,:0.010835838418890782 which,:0.009554379698951617 year,:0.008633778125367555 ;:0.00861427004413594 it,:0.008515903266837776 day,:0.007847302254043648 or:0.00685714805667527 to:0.0068400882331865805 :0.0066932067939188865 But:0.006375228379816207 for,:0.00606913445059578 ,:0.006036661374763105 :0.5516824558566015 +the:0.17617944249933973 and:0.05787045104749952 of:0.045280452126046894 be:0.03847258491799765 to:0.02979731885586852 was:0.029029761128731596 in:0.023948393511198353 is:0.0228707249366249 on:0.020141398334921182 for:0.019844396260000417 are:0.01815844121581588 his:0.017856716040301465 a:0.016433402974175833 were:0.014578442669656008 he:0.013844368492887916 their:0.013549574211232962 I:0.012607765086429131 been:0.011952318575665102 or:0.011553060190145445 :0.40503098692546147 +the:0.4253480860477586 this:0.1143066162347286 a:0.08531304106700667 The:0.06733735671348325 that:0.04968505601726077 tho:0.028938905018492847 no:0.02377493841645071 present:0.018713424200636673 any:0.014326523376158879 same:0.014146489260891704 of:0.012628284976685888 to:0.012546230209700469 This:0.012344707110552435 our:0.012017938948906647 his:0.011228445628098643 and:0.011207403240253249 every:0.011091994614682446 whole:0.00972866643833227 their:0.008110024758251714 :0.05620586772166755 +and:0.09267779137066165 to:0.06679162477152453 of:0.04185945880888986 not:0.028374643026839983 the:0.02610226339776513 as:0.023616098032594693 for:0.019894365918807663 is:0.01890865416726563 was:0.016646783895827487 or:0.016498198513354344 be:0.016366527717864267 it:0.015788003767362578 he:0.01578722428183171 I:0.015359314119441816 in:0.014575893805376359 would:0.01421175826029445 that:0.013206336482445371 It:0.011215961270447715 will:0.010679451091986343 :0.5204396472994185 +to:0.4811376253529671 will:0.09383811530527991 would:0.05091682266779744 you:0.03133097460871685 not:0.031239191100161722 they:0.030194001079520725 and:0.027341197664212037 we:0.022541402959616725 should:0.019582798461710477 I:0.018309580745516082 could:0.017836548301122353 must:0.01616472970439996 can:0.014732701020983516 who:0.013220923804291285 shall:0.01052912543216911 may:0.008648196736818043 let:0.006480112642136242 They:0.0061507603316773045 We:0.005609409937058152 :0.09319578214384497 +new:0.014671080000464888 made:0.01294973213243694 ;:0.01272692992731765 large:0.01235543166072078 principal:0.011947648985744885 time:0.01173140864004246 city:0.011035714472499689 land:0.010906703317364104 law:0.010364006098266694 hundred:0.010166770687400031 county:0.01000524654687404 long:0.009071708156316692 in:0.008991069717236648 up:0.008896804971687829 other:0.008840004506024903 States:0.008564390284710073 state:0.008261479776398503 labor:0.008081570872677314 any:0.007912978253647798 :0.801519320992168 +;:0.021258909754392104 it,:0.017849239057097514 here:0.013380394615109129 him,:0.0131085679066358 them,:0.010439039545757263 him:0.008901070126744166 up:0.008897793963204228 time,:0.008541972451766883 in:0.007558355642369932 years,:0.006711388312844546 up,:0.006387420965244681 it:0.00581613746602584 and:0.005801081453851895 country,:0.0057087804180745 ,:0.005599624973279854 man,:0.005444530802986974 out,:0.005210256429661834 day,:0.0049432424826446495 them:0.004891578008701529 :0.8325506156236068 +is:0.15648434398931596 be:0.11593902762783324 was:0.07894509956520536 are:0.06628495394571311 and:0.05704670033040972 from:0.055353919948069374 of:0.04110256240745591 not:0.033360078932563174 it:0.028975611457013155 Is:0.028584315816116902 for:0.024996538456152607 been:0.02423001917029902 were:0.023519630203945475 or:0.023304885595038377 being:0.02297618424682522 to:0.022396402231730044 in:0.019589632082604898 have:0.018917449943952946 by:0.018583014620273654 :0.13840962942948185 +of:0.18876859148159542 to:0.10734615188600677 in:0.07294823704283364 and:0.06439980163737859 with:0.06235588049008224 that:0.05175915879615543 for:0.040963222918809675 by:0.039526450912026806 on:0.028648724845728328 upon:0.027924745607507184 made:0.0227034831651039 as:0.021954057571838388 from:0.021519893588614104 told:0.021293271069787695 or:0.017298293017634983 In:0.016391773247491415 but:0.014876436123260775 make:0.011635083362880522 all:0.011334499487015093 :0.15535224374824907 +and:0.0848014897506426 together:0.037583781681320066 it:0.033281062415395406 him:0.030606906494278153 dealt:0.025483929121252594 them:0.023890866057578095 do:0.023753828266364685 complied:0.0220997690165416 charged:0.019796770844367376 up:0.016404831157192375 filled:0.015666431353698572 so:0.01475333775929924 covered:0.013522271360223367 met:0.012907491510929587 acquainted:0.012767057527593526 connected:0.0127054382265343 us:0.011715872746796977 away:0.01125830493336383 as:0.011197415957517417 :0.5648031438191102 +a:0.15239497169467137 the:0.11586528588406643 of:0.09895631787380411 in:0.05191407944785144 and:0.050112492563136095 to:0.04045388607510967 an:0.03178559610315762 for:0.017732327764700066 his:0.015581152360399305 In:0.01531934136296972 as:0.014414176953655352 with:0.014352981526113775 on:0.01420908267838188 from:0.013196140147191794 was:0.01298373761516673 The:0.011939758855899282 that:0.011485266184279298 by:0.011112682125668964 :0.010319156465261253 :0.29487156631851585 +to:0.65866409172969 will:0.05260942123757512 and:0.048200714208711276 would:0.022556415520246828 can:0.021504397392334708 could:0.02006013674967564 shall:0.018490637519718002 not:0.01627176132348381 may:0.01541583821306236 should:0.014948944325073113 To:0.014152859080723973 we:0.007605733896266556 they:0.007179606946195049 must:0.006026613375948307 cannot:0.005740205055168088 might:0.004544298343256116 or:0.00411321478865622 lo:0.003935041611119086 you:0.003657018846218788 :0.05332304983687692 +of:0.19845912636896976 and:0.09921171957576964 know:0.06622450720533557 with:0.04260713484488299 see:0.04122845981816416 to:0.0377374020508367 is:0.03564878638342302 but:0.03374189451770231 as:0.029056123820932263 by:0.026826732609809313 for:0.026109418144879857 that:0.024382780545667775 some-:0.02110028869482395 in:0.01986021018574034 from:0.01932455502333206 or:0.018580335687661 just:0.01584486828566946 matter:0.015567891409785565 But:0.01394254017215826 :0.21354522465445602 +of:0.1998816186110985 in:0.11957625675790796 to:0.1024997993958129 and:0.061180838044863975 with:0.05648698979789674 on:0.05517683112845909 that:0.03846267736773916 from:0.03680639101630684 for:0.03670757330007498 by:0.03475573507778368 at:0.02692409308722025 upon:0.02405239994338652 In:0.022494060297142498 up:0.018532628085524562 into:0.017169211630792002 over:0.014859969664617735 all:0.013225751168273679 under:0.011252485738013025 as:0.01004656338150199 :0.09890812650558391 +and:0.03868242960999506 as:0.031124813427855922 went:0.02352509775927722 him:0.02196555539050794 them:0.018760608639018784 up:0.017985449426794205 is:0.017894175620344187 go:0.017174904667157563 able:0.016756848979943888 going:0.014481672239490295 it:0.014128375989346808 was:0.013277058274565138 time:0.013249953793837373 not:0.012469887553778763 began:0.012465717758716884 way:0.012105610030480113 back:0.012090864562211581 right:0.011941707822828511 amounted:0.011564315359310868 :0.667354953094539 +at:0.06722726313833005 and:0.05106086544919432 No.:0.043302330840425084 the:0.02212669451573443 an:0.021472487485791697 of:0.02142262191613833 that:0.017776433665852603 No:0.0172675406409789 :0.017267326995796233 .:0.01716147854809407 to:0.013569084782770469 as:0.011817049241387215 1:0.011700168666064523 lots:0.009892404072789861 I:0.009666501732785772 which:0.00942187897865648 by:0.009229744337798973 when:0.007582513518798888 but:0.006980783331854542 :0.6130548281407576 +one:0.1028303141280697 part:0.05963429477052991 out:0.04766456937681193 some:0.031418679026461914 members:0.030764490253327767 side:0.029940657362655835 portion:0.022063658796890564 office:0.020457735219956013 member:0.019726706386316174 end:0.019666887540649894 tion:0.018667441728710307 parts:0.016814747270460957 people:0.014112771422418794 all:0.014072739582212475 any:0.013183573287639892 One:0.013083578354183906 that:0.013024335602903442 account:0.012482348155001894 many:0.012077825070275192 :0.48731264666452345 +the:0.18203523097672317 of:0.1008390320725331 and:0.05413575798908408 to:0.04481851615177169 in:0.034602277680246714 a:0.02581644879789779 be:0.02339522787231784 for:0.022624390219574915 was:0.02238718142942406 at:0.018599609797946826 his:0.01445035064406157 were:0.012706476191872196 their:0.012496652286424733 that:0.012475342964650537 is:0.012365464008913566 by:0.01199631052639364 tho:0.01139860702187993 as:0.011361907567035296 on:0.010627666331856682 :0.35986754946939165 +at:0.15759636317629921 of:0.1421714067936483 in:0.11676904876960983 to:0.06398364411645996 on:0.051157018190029144 for:0.05108566601725402 and:0.04555513108461132 that:0.031721944739604234 from:0.030113826054908015 In:0.029702699076370135 At:0.029399515452081842 with:0.028043139425789426 by:0.026185917658690036 is:0.020303271491863204 as:0.01797707611473321 was:0.017223050385135958 upon:0.016504659720422372 about:0.014081527374087893 be:0.01236778699448754 :0.09705730736391437 +and:0.08726275706726959 :0.038878618171779844 in:0.033840464734558554 to:0.030799018234565954 New:0.02807528689586194 I:0.02061797743437251 Mr.:0.020420277586776506 by:0.020194464121840772 of:0.018396661321818032 the:0.016670495427440122 .:0.01633129155067688 at:0.015730471464280842 was:0.015662802169296566 :0.011951931654465502 a:0.011598081259826665 Mrs.:0.011433809611979448 boy.:0.011249740490153273 do:0.011178967531402526 J:0.010667895164671147 :0.5680389881069633 +a:0.22800194264689327 very:0.09765269672167302 is:0.0867917093244819 the:0.08091470095115451 too:0.061957218439895156 but:0.04340343684647913 so:0.04019394942656991 was:0.03981362768540212 are:0.030910912253927305 and:0.030297257708485684 no:0.026127828550848067 of:0.023432014731214333 as:0.021280145878498632 be:0.02055758697883346 had:0.019434555404184664 his:0.01871488672771376 with:0.01828060433344309 her:0.017071528147356744 have:0.01634955845628268 :0.07781383878666252 +the:0.11919516938815296 of:0.07230453158552728 and:0.05781056740443249 a:0.043018564803886335 to:0.031305092790907506 in:0.020848713353460488 at:0.014270110001066288 .:0.012526810245749479 :0.012413283442322082 for:0.011719122709941797 by:0.010808400946589808 or:0.010404172990115616 The:0.01003576004804544 with:0.009811868184449042 tho:0.009295902015355835 was:0.008924239095331684 that:0.008672304223433876 is:0.0085591147338948 be:0.008335143826716943 :0.5187411282106204 +and:0.126677059871983 was:0.06029892810635419 arrived:0.05557437491592985 is:0.05367940603228436 appear:0.032311810130582146 are:0.029618656243144532 up:0.02933973143816005 came:0.02767912612766012 made:0.025117107226979966 held:0.02327128529039498 out:0.022898685635779462 it:0.02253716698263139 come:0.02202272776446926 w:0.02026227972914073 but:0.018763858559722384 brought:0.017097575510324765 not:0.017007657065295924 found:0.01661107798234559 were:0.016383727279378566 :0.36184775810743874 +one:0.1028303141280697 part:0.05963429477052991 out:0.04766456937681193 some:0.031418679026461914 members:0.030764490253327767 side:0.029940657362655835 portion:0.022063658796890564 office:0.020457735219956013 member:0.019726706386316174 end:0.019666887540649894 tion:0.018667441728710307 parts:0.016814747270460957 people:0.014112771422418794 all:0.014072739582212475 any:0.013183573287639892 One:0.013083578354183906 that:0.013024335602903442 account:0.012482348155001894 many:0.012077825070275192 :0.48731264666452345 +the:0.17310236213958924 of:0.08503554536450152 and:0.0761502052441197 in:0.03364904694093018 a:0.033583475417508696 to:0.0290718187342856 his:0.023999014469039234 be:0.020412797426194475 their:0.01997868107886497 for:0.018364283350808894 was:0.01693815909775309 or:0.014952206183809044 The:0.012758519163857878 is:0.010972943595055564 tho:0.010691240163193928 I:0.009851078338890441 other:0.009308481231609845 were:0.00916073286699586 her:0.00892340559387279 :0.38209600359911905 +and:0.056749751444111395 less,:0.04021341374133411 and,:0.028840333602774937 you,:0.020003708360570922 them:0.01705663529500844 as:0.01604486064284906 ;:0.015455863752163675 are:0.013750845989122797 made:0.013035908101830805 it:0.012453860022066748 is:0.012426799017326958 :0.012104263889366421 thereof,:0.011954792518985525 so:0.010256563158808057 :0.009846971931909662 that:0.009669885570197198 in:0.009542319821869934 them,:0.009257421054632502 which,:0.00885557985209936 :0.6714802222329714 +the:0.29572526975321717 a:0.15953311447644464 of:0.14823857253088096 no:0.053132848897721976 with:0.04903940441377605 and:0.04324784944379457 The:0.03507275619348334 that:0.02927472120537405 any:0.02388026754243623 by:0.019321123552482035 in:0.015011544152405387 tho:0.012447109391126799 for:0.011898569119829469 or:0.01137659082162292 to:0.01030002948903948 their:0.009452591072828016 some:0.008874478251167302 this:0.00814352953706099 as:0.007794579035570205 :0.0472350511197384 +of:0.10496749369941785 the:0.09661211349549562 and:0.08517191911615449 to:0.054194814927277 a:0.03087843029677616 in:0.025940595947540637 by:0.020412807752115174 .:0.018591188044182444 for:0.017146935055434732 or:0.016116513876362575 :0.015253143671818067 as:0.013012031265902274 with:0.012331734685247953 at:0.011292436720750178 was:0.009097147748609482 on:0.008300234078678321 tho:0.008240814902475736 is:0.006936617230040764 be:0.006731203351700792 :0.43777182413401977 +;:0.018663940809851957 and:0.014518429259511724 :0.006675977763736715 .:0.005231928295780762 him,:0.005114409871523753 ,:0.004851614152925219 them,:0.0047162550281004785 it,:0.004409033785059748 1:0.003950786982982003 men:0.003862256696006938 I:0.0037458167616426755 man,:0.0036160123879663305 them:0.0035179663244086436 it:0.0033445993142407985 :0.003237090774357879 that:0.003190343807624281 city:0.003180937992833929 hundred:0.0031345713306395366 him:0.002961667936674473 :0.8970763607241321 +they:0.1422193600349239 there:0.05849232705230136 and:0.05364794518597344 who:0.05060073302875137 we:0.039796496029532724 which:0.03941212764794604 They:0.031471712802734836 There:0.027277972023637694 that:0.026476974477609803 men:0.021156313901298206 it:0.018650113321758758 We:0.01150603832299857 you:0.011134597598392589 I:0.010540813851838039 people:0.010280567277705255 them:0.009160186773977539 as:0.008841656067636882 but:0.007526879745621775 whom:0.007466233559027055 :0.41334095129633414 +the:0.16807735899698817 of:0.10541662057906837 and:0.05138367848570702 a:0.04141865232648221 to:0.0385989743764065 in:0.026264864977736738 was:0.019530675665220657 his:0.018900421021236905 be:0.017373825006196972 their:0.015767721170721456 for:0.01557246589796783 with:0.014071419046630446 is:0.012922913111931644 at:0.012690452250034052 are:0.010702713108721902 .:0.010158075558988393 Mr.:0.009672788574483367 tho:0.009612591781990074 were:0.009549306361446321 :0.391314481702041 +that:0.2679623925605681 and:0.17473875447269513 but:0.057929987358311716 which:0.037190018528838846 where:0.03706024247499286 if:0.03508139552128882 as:0.029370443353037907 But:0.026769814579767445 If:0.026708793281814542 when:0.023449076222347758 because:0.01572699350916326 for:0.011948092023196523 Then:0.011803463083392453 time:0.010422188943700068 That:0.009894177606575497 or:0.009603879748360232 And:0.00918441433442016 while:0.009067610354157665 then:0.008929273838106782 :0.18615898820526422 +be:0.24523585263100442 and:0.09417894735270141 was:0.07985622211340693 is:0.07754955677604083 he:0.06096270420100706 are:0.054904424313912556 were:0.036140635070288654 been:0.0311097273008143 have:0.02064741512743146 has:0.014500211113540436 I:0.014344999803577514 being:0.013437642705741106 Is:0.013091375120917367 bo:0.01280816624871319 that:0.012581204612396627 had:0.012030157399775384 they:0.011217644075775579 which:0.009934989042433008 it:0.009897851434322969 :0.1745702735561992 +hundred:0.02334136986593815 up:0.005482494641173394 men:0.005366536521246011 Hundred:0.0047587970519216575 John:0.00441808156134956 William:0.004390720675819281 him:0.004016828614280843 ;:0.003997112205305733 due:0.003721199871732 in:0.0036582900032443304 time:0.003637206863828461 James:0.0035594902370151707 out:0.0034878448964120057 .:0.003467980723571515 1:0.0032804584819785204 day:0.0032444781513863933 ,:0.003058139385740603 :0.0030314555521939613 Robert:0.003005471634785646 :0.9060760430610768 +the:0.4415636570052671 a:0.06948592368470673 The:0.05674498534380941 tho:0.03191182974180866 great:0.030824139501847887 large:0.030701449671689928 and:0.029601943130595054 good:0.020118257709100494 by:0.017688160772192044 tbe:0.015308197887959132 of:0.014071337790649691 any:0.009923649364068126 vast:0.008525659665868962 their:0.00804692994709327 his:0.007539202973173619 small:0.006723519123181132 full:0.0066211310508285425 with:0.006320319283221707 that:0.0062380415568911735 :0.1810416647960473 +of:0.3750074589793195 from:0.06402590309024868 in:0.060223110971514934 to:0.05171764762802702 at:0.05163452115788937 for:0.04374909187953925 and:0.03422719424715471 the:0.022946611430903527 In:0.02269995242607895 on:0.022080214426491357 with:0.020786451653888854 Western:0.01581633131309187 by:0.01269317343884274 about:0.007821971753166793 :0.007476497837502088 near:0.0064439777248386735 ot:0.0064281388245942955 said:0.006070154319358237 between:0.005187928121768905 :0.16196366877578028 +and:0.09238441531465934 week:0.0630770494378193 one:0.030771561417775616 up:0.026615561306651957 work:0.021628486570941192 time:0.021399760567423598 was:0.01883838200888233 room:0.01724910410563062 it:0.017120715805595228 that:0.017057318749936025 used:0.016417705299650788 year:0.015222724593211397 vote:0.01515177696104794 him:0.014185478618323278 made:0.01418536462047089 is:0.013874730269404386 ready:0.013840066906804479 demand:0.01381869498130642 dollars:0.013006364987963122 :0.5431547374765021 +to:0.31019601080253456 will:0.13793678134185958 would:0.07774183426288846 may:0.07078528459128908 should:0.05127128910568003 shall:0.04901700088221223 not:0.04594340671139167 must:0.03257846389794495 can:0.03230794200897745 could:0.02086203652199685 cannot:0.017984019065961077 and:0.017474170306863105 might:0.013535476571922157 it:0.006941357203389574 never:0.005186754057084183 that:0.004968373522249409 also:0.0034185027334872305 only:0.0032209125075107173 soon:0.003102154139878731 :0.09452822976487903 +he:0.12976820625117658 who:0.09221886342062384 which:0.08202145445505479 they:0.06808463273766263 it:0.06300140281566258 that:0.0536651199481747 I:0.04355172570140108 there:0.03694176174144522 she:0.03568475182996337 It:0.03445956439681276 and:0.03146500019799679 He:0.03013662272772511 have:0.01649641755291053 has:0.014869129143777082 we:0.01270748492222897 She:0.010037042499654298 had:0.010034468298945191 They:0.009824977349933048 ho:0.009403905633941782 :0.21462746837490962 +the:0.32527561096779106 his:0.07147721477432037 a:0.06469909434830577 this:0.046387734335851964 her:0.0408101893714162 healthy:0.040260986348499714 good:0.03630847224968458 and:0.03330434304046991 their:0.032861297476586636 tho:0.028235384706021865 my:0.025415895449412917 great:0.023564862720279592 that:0.02171005700112188 other:0.01760577264620227 in:0.017427762307797103 own:0.016376252210170982 its:0.015862662007598675 The:0.015130546626622159 of:0.01511211775672787 :0.11117374365511849 +was:0.09835622727293629 and:0.08384777942305977 be:0.08367457099146919 been:0.08156738061517177 are:0.06704836761644314 is:0.05370411146375311 the:0.052402486279204886 were:0.042847324689284684 of:0.04179931500855751 have:0.040109857692730976 has:0.03736506837291495 had:0.03465562123590565 by:0.021469966374271444 or:0.016125504179781865 as:0.014644590265662252 he:0.01411511964853725 not:0.01408512639690797 all:0.009665927597181665 person:0.009443357676514696 :0.18207229719971094 +a:0.10855162180258647 young:0.07328000610985676 better:0.05829460189187984 of:0.04718411423436773 the:0.03632217350161564 other:0.027402301920308885 white:0.027009412720546376 any:0.022273975208970367 in:0.019650077592211355 old:0.018742356290915654 little:0.017906608592616034 no:0.017658874331741355 business:0.016143353220085442 that:0.015165340824605317 one:0.014916100796318367 and:0.013289668391902409 colored:0.010975152262842175 every:0.010935099542779238 honest:0.010544697718299027 :0.4327544630455516 +;:0.023143362712445784 it,:0.016161324144559966 him:0.011827379123335384 in:0.011767490783644266 them,:0.011140773958931482 it:0.011140227766324763 him,:0.010971117079558454 and:0.010625179335759625 me:0.008545109303729974 up:0.008406995358438574 me,:0.007666159115807675 you:0.006705474128100014 them:0.006286276901228732 time,:0.005825863905603992 to:0.005274006572374228 people,:0.004864586690833011 men,:0.004827655548023488 good:0.004776596803734944 country,:0.004571981109182921 :0.8244724396583827 +and:0.11122289704080514 of:0.10519946905767 was:0.0806812574918955 is:0.051388837164823106 are:0.04139638981709658 were:0.03741031304928124 for:0.03090365479195204 in:0.030326922036902394 one:0.025374876222463965 or:0.0240936991993342 at:0.021754061665309805 by:0.01962120248913459 with:0.018737526881818834 all:0.018650285318524622 that:0.017546168622948142 to:0.01711852516106684 from:0.016198333264585918 up:0.0145942026555279 be:0.014104628697931202 :0.302676749370928 +J.:0.05481878228719598 Mrs.:0.052387818750025975 John:0.05071983024302935 and:0.04725604680229476 W.:0.043691385423861376 .:0.042759471633239156 A.:0.036738150895499457 of:0.03227628762652273 Mr.:0.028820939149332075 William:0.024463046051036018 H.:0.02241944985009533 C.:0.022015355223948745 by:0.02120700572495778 E.:0.020451074505677038 T.:0.019489062511110614 Thomas:0.016970843766508162 Dr.:0.016446574682722415 James:0.015410229351806066 Charles:0.0151177280606787 :0.4155409174604583 +of:0.09129790931378902 the:0.07369883040827747 and:0.047842263382354346 in:0.04189055351593407 to:0.04045875475680249 a:0.03542341257202578 be:0.02020462051672066 for:0.01979292654746225 was:0.01760256398103379 at:0.017380150555488715 is:0.014984483003968216 with:0.014047653760730413 by:0.01374644383819499 :0.012670486581795598 In:0.01200961464556976 or:0.011563835749786333 from:0.011391516893522809 are:0.011273104484969465 that:0.010755276030689069 :0.4809655994608848 +and:0.09379053924927042 to:0.0742855066818078 of:0.06739630294563433 the:0.059809119354988456 in:0.027631208092333288 be-:0.027293809025147272 that:0.021435074971841002 was:0.020009129418631 for:0.018363033111366858 two:0.01705484412802581 is:0.016963649837169994 or:0.01689964597852544 be:0.015590573410395322 a:0.015001108975733878 which:0.01499881791074982 :0.013443348992596298 at:0.012448389513759608 by:0.01164637080842974 con-:0.01120718746514304 :0.44373234012845064 +and:0.1083591135076158 has:0.08968814856709813 be:0.07641449427015537 have:0.07445096242416606 he:0.07011947891543657 had:0.05644831438350458 was:0.0433535686700497 I:0.039978688744395544 is:0.031834123884760285 He:0.02885582046683029 who:0.02603794105228876 been:0.023902017395172 they:0.01716203914190271 which:0.015344382862587134 it:0.013636040288019005 that:0.013578390678773238 also:0.01331161916457856 case:0.012585411174287338 she:0.011899332528024857 :0.23204011188035406 +and:0.14506609934568396 made:0.04224500996647754 but:0.03431530009335786 or:0.032429290441196024 them:0.025611046753865798 is:0.02344617066322942 that:0.02303115533410086 be:0.022549518490161104 well:0.018396125773222086 taken:0.017582778157079898 it:0.01647700662500094 time:0.015762626669921814 do:0.01494281303188138 are:0.014037722315353602 him:0.013942027757141307 out:0.013493251839470626 was:0.013244026145724574 done:0.01310766396615376 almost:0.012791014919563502 :0.4865293517114139 +of:0.09129790931378902 the:0.07369883040827747 and:0.047842263382354346 in:0.04189055351593407 to:0.04045875475680249 a:0.03542341257202578 be:0.02020462051672066 for:0.01979292654746225 was:0.01760256398103379 at:0.017380150555488715 is:0.014984483003968216 with:0.014047653760730413 by:0.01374644383819499 :0.012670486581795598 In:0.01200961464556976 or:0.011563835749786333 from:0.011391516893522809 are:0.011273104484969465 that:0.010755276030689069 :0.4809655994608848 +of:0.3168850538185153 in:0.08990426492312116 to:0.08562223473907288 and:0.07342700564268263 that:0.06640386388137465 by:0.042125691852146104 for:0.03971475809773752 In:0.03888886198767314 from:0.026005425692020707 at:0.021001958643893353 on:0.019208176181784904 all:0.017233708864519755 which:0.01541774096983387 with:0.015208955628088135 but:0.01018122774061735 when:0.009400510804409935 ot:0.008832165582309589 upon:0.008799945398817184 through:0.0073050533512841204 :0.08743339620009775 +the:0.10199665559103764 and:0.07713547567948774 of:0.041347780702152385 in:0.024186174430904255 was:0.024164362896384475 to:0.02108098745161965 for:0.018720410508683342 that:0.018281675128206592 is:0.01814335812147744 he:0.016523175383077057 as:0.015868178535881888 his:0.015610793592464096 be:0.015139187977977484 be-:0.012949134719825844 said:0.012826890890490161 In:0.012786976428032828 her:0.012684963833504911 or:0.012669257693463908 :0.01224147820803361 :0.5146430822272947 +the:0.17027190784407714 of:0.10585557835912704 and:0.07355927771906935 to:0.05486905984958157 a:0.04543746377447453 in:0.03128555052933153 be:0.028704485173100775 was:0.02350529800142253 is:0.02215549335554494 for:0.02077556258358175 his:0.01804639098945333 or:0.016335100594594944 their:0.015847999621030492 at:0.015526727957625254 been:0.011815834631173878 are:0.01139058447814694 this:0.010362020528084328 tho:0.01035635773045807 its:0.01000473355720393 :0.30289457272291764 +and:0.0506172382292833 thence:0.03478791156430823 compared:0.03423075780434772 filled:0.03232931438140415 covered:0.03203166283801661 connected:0.026313937158534268 together:0.024597867154379748 charged:0.01990393464977302 met:0.01709400895772795 up:0.015521182049910428 accordance:0.014347534616755434 made:0.011860173674256444 connection:0.011835242908570836 him:0.011335792263070863 identical:0.010752997830830288 them:0.009954699712724014 mixed:0.009297673006915004 it:0.008868977848623328 one:0.008836427502440661 :0.6144826658481276 +a:0.2581624472992559 the:0.08897077015887815 that:0.08689358344083382 per:0.0787002268872141 every:0.0708160853979071 one:0.05997968836851376 this:0.05802172036996968 said:0.031124871994882564 to:0.019267696750801193 same:0.01887309602012853 next:0.018101244358718915 of:0.01726809174778654 other:0.016327048409236548 One:0.014769344508462671 by:0.013938700984219076 and:0.013845190656200225 first:0.01360304303888799 to-:0.013501586640844214 each:0.011667250587460007 :0.09516831237979902 +be:0.0841926906458138 and:0.08290743996741218 have:0.08073564563951793 was:0.06602916059367331 had:0.05775124771851347 not:0.05183723957492465 has:0.05181902937842745 to:0.04294782051750275 he:0.042034496203330246 been:0.038033800016928236 were:0.02569313904507509 is:0.022570106732933356 never:0.02222896973468278 the:0.02194768262633719 having:0.021118815523838045 they:0.02058399700596993 who:0.01961738175005713 ever:0.01659585848094319 de-:0.0162319833177638 :0.21412349552635546 +:0.1127807631449618 .:0.01837559106967273 it.:0.017288359433161142 them.:0.012947685765427753 day.:0.0093983614782386 time.:0.00796555959369765 him.:0.007072165925250366 year.:0.006524185216524931 city.:0.006319119326181775 of:0.006303824857447165 country.:0.006027326006464841 law.:0.005703733021132263 years.:0.005112364808563111 work.:0.0045195779226295954 place.:0.0045118178996716735 life.:0.004424045146759547 men.:0.004388202164100115 week.:0.00433602750546829 night.:0.004232211904934928 :0.7507690778097117 +and:0.13959339943904128 the:0.10915061221314315 of:0.10157055254615498 in:0.053734841089416126 to:0.04671000533827026 for:0.03829904555031957 :0.032199736304461435 The:0.02133645010737135 by:0.019591267369362862 with:0.019124579026264465 that:0.01907658485993312 said:0.016152488477505056 from:0.014448974660516374 this:0.013602809554663309 In:0.013489800216835612 an:0.01208054538531584 a:0.012000651486408243 or:0.011611518286670735 Attorney:0.010457792872036565 :0.2947683452163097 +about:0.12088489788193288 and:0.10604460059084549 of:0.10069697867463168 or:0.08605913892550164 than:0.08175148157082492 for:0.058892009438493466 twenty:0.050750419224959736 at:0.042207989868573374 to:0.04169616903786579 twenty-:0.028951597533452306 over:0.024988778187739907 least:0.022408469891673572 exceeding:0.022238361543920268 forty:0.021395456613348716 nearly:0.020539081622467502 thousand:0.017271073087414573 seventy:0.015667391206154013 all:0.014305042988585051 from:0.013834997364451639 :0.1084160647471635 +of:0.28767355066866834 to:0.08775711267569858 in:0.08678131196995101 and:0.05160598694501188 on:0.04646139928102899 by:0.04519522654900943 for:0.044547789071328545 with:0.03396756772609607 that:0.033699232901107726 from:0.03075346596941143 at:0.027039283056790858 In:0.021061449543044047 as:0.017514234937992545 all:0.012543839382496166 upon:0.011844431150487573 is:0.00998972746569266 was:0.008814315973987914 into:0.008557199930727406 through:0.007781895704231326 :0.1254109790972375 +has:0.0995762959610139 was:0.09822985043150562 have:0.08913164411768329 and:0.078861830326826 had:0.07540723096885381 he:0.05417637810644573 were:0.040620493992193515 been:0.03748512332184643 be:0.03747021991184395 I:0.036211962125352194 are:0.028613615741632886 He:0.024970242742536123 is:0.02266539437369562 who:0.019759094378372675 the:0.01643829329235581 which:0.016269270824710372 when:0.011225055195865112 she:0.01094503452670145 having:0.009014417916160863 :0.19192855174440465 +of:0.11345929384320051 and:0.09663796450543546 the:0.06200694644271016 to:0.04270184801545972 in:0.02524256347468139 with:0.02163980028599516 for:0.021184239444197665 was:0.019797382231253616 a:0.018840907095413424 are:0.017741359839171706 or:0.01643641600348984 is:0.01617889294116491 be:0.015868703044129764 by:0.014771338157114068 that:0.013744844371479468 on:0.013570764906887908 :0.012066339248062042 were:0.01164464239491106 which:0.010718425796744183 :0.4347473279584979 +of:0.3289632054610773 at:0.12173751549477099 in:0.0896409676473337 to:0.08027612758973346 and:0.05150349081878569 for:0.044693022811138024 by:0.028623490711640637 In:0.025214653649786038 with:0.024002953638059904 as:0.0232184901342004 from:0.016823403626378103 that:0.012030298615332388 about:0.011897310957330964 on:0.011594071137037245 before:0.009875358430497671 above:0.009602076283556816 the:0.008680968037804234 after:0.00859669636564317 upon:0.008029019298916942 :0.08399687929097624 +and:0.07867755255904174 that:0.035912350739240435 when:0.031763627432331555 at:0.031080590612411772 I:0.02930858127430897 which:0.027351970191709218 the:0.026260069970551213 :0.023619113695760287 of:0.021293793919659403 to:0.019835926915201293 but:0.019159005611115026 No:0.017277887021860262 had:0.013903411096893492 an:0.013401259188134675 When:0.01336524765925698 as:0.011681352988848238 No.:0.011402481946555503 have:0.010414260938266195 for:0.010005861041106179 :0.5532856551977475 +the:0.19749125756169547 Mr.:0.07112699624208033 of:0.06603367254516487 The:0.05768776091110846 and:0.05327374818694666 that:0.0420321405581567 a:0.02582588575453538 his:0.0169326573605278 Mrs.:0.014795070048324819 tho:0.014769024234222154 which:0.011478554728659614 he:0.01110833274239838 as:0.010988112958762878 I:0.010409931249854676 in:0.010294293477152827 :0.008879223773482728 to:0.008465710829358392 for:0.008281932125153052 if:0.008197991279302505 :0.3509277034331123 +and:0.11487036990506984 was:0.11471229642081737 is:0.10354682818880506 have:0.048320696356773656 be:0.04811670861495047 not:0.04809616570811445 are:0.039804270192770275 had:0.03923340078834237 been:0.03563640226068244 were:0.024851452241788072 that:0.0184471539923648 to:0.01618085218255157 has:0.01578638312966163 it:0.014285218520266103 as:0.014010330524801865 being:0.013278599069641035 but:0.01233520881253271 Is:0.011274490571633836 one:0.010041098408847681 :0.25617207410958476 +a.:0.041629545716655274 p.:0.03967146769770459 p:0.030586813736201455 of:0.026532243223929865 and:0.024545071881098984 the:0.024377978806484714 a:0.02181764465276059 in:0.020348103704333938 .:0.01466260576625489 was:0.0131669547393041 1:0.010806966201341027 I:0.010409646212176812 to:0.010321164463599453 by:0.009852075166786777 it:0.009349376666500233 had:0.008989252779458574 at:0.008158619397552436 :0.008085325750139092 have:0.007750628108425956 :0.6579385153292913 +much:0.1760151931390271 part:0.14295401455205997 copy:0.08289530323620611 plat:0.07790173531259836 payment:0.031229244009088386 portion:0.03116945095780092 survey:0.025546304127051594 holder:0.02204626606698721 notice:0.018635664755321926 amount:0.017962645961522573 deed:0.01564394114871745 conviction:0.014752938435935632 and:0.011972991897505982 value:0.011254553623435786 lieu:0.010583973459449633 proceeds:0.010441355753466136 day:0.010377835722717832 that:0.010203407345998254 proof:0.010013777877924705 :0.2673994026171844 +and:0.06977498163546127 them:0.037835051711870994 was:0.03517500998640421 are:0.03041763878947398 look:0.02940400125654805 it:0.02258545495771084 is:0.02212304826189468 or:0.021663801034321785 him:0.021380240649122875 not:0.020770028662325888 be:0.01961909409374258 were:0.019570352871334223 held:0.017323135732093264 that:0.01650109576080466 out:0.016159277955785263 arrived:0.014237140242557218 made:0.01394638602027571 men:0.013728098321555856 interest:0.013277201387145034 :0.5435089606695717 +;:0.01771371629436129 city:0.014608368129858853 Mr.:0.009696726757482973 State:0.007343063006674163 Mayor:0.007119417962931404 in:0.007029810705661993 men:0.005780287504967322 Mr:0.0057127974498831224 mortgage,:0.005602115687775721 land:0.005587375949025055 ,:0.005382969298673835 day:0.0052474671794788515 .:0.004987773466841379 Virginia:0.0047794548854674015 and:0.004740856923913446 street:0.004690602741824684 York:0.0044506063678962406 executed:0.004442373087006347 house:0.0044349761431590464 :0.8696492404571169 +of:0.28767355066866834 to:0.08775711267569858 in:0.08678131196995101 and:0.05160598694501188 on:0.04646139928102899 by:0.04519522654900943 for:0.044547789071328545 with:0.03396756772609607 that:0.033699232901107726 from:0.03075346596941143 at:0.027039283056790858 In:0.021061449543044047 as:0.017514234937992545 all:0.012543839382496166 upon:0.011844431150487573 is:0.00998972746569266 was:0.008814315973987914 into:0.008557199930727406 through:0.007781895704231326 :0.1254109790972375 +of:0.28767355066866834 to:0.08775711267569858 in:0.08678131196995101 and:0.05160598694501188 on:0.04646139928102899 by:0.04519522654900943 for:0.044547789071328545 with:0.03396756772609607 that:0.033699232901107726 from:0.03075346596941143 at:0.027039283056790858 In:0.021061449543044047 as:0.017514234937992545 all:0.012543839382496166 upon:0.011844431150487573 is:0.00998972746569266 was:0.008814315973987914 into:0.008557199930727406 through:0.007781895704231326 :0.1254109790972375 +the:0.11919516938815296 of:0.07230453158552728 and:0.05781056740443249 a:0.043018564803886335 to:0.031305092790907506 in:0.020848713353460488 at:0.014270110001066288 .:0.012526810245749479 :0.012413283442322082 for:0.011719122709941797 by:0.010808400946589808 or:0.010404172990115616 The:0.01003576004804544 with:0.009811868184449042 tho:0.009295902015355835 was:0.008924239095331684 that:0.008672304223433876 is:0.0085591147338948 be:0.008335143826716943 :0.5187411282106204 +city:0.022050561732030818 right:0.016722037411476848 men:0.013187828323675389 in:0.0109098777132065 North:0.010595696735473493 wife:0.010482898902646276 friends:0.01041594738754033 time:0.009775895291501413 north:0.009610126682355603 State:0.009494787803710427 life:0.009458059551837473 county:0.009365653251542443 house:0.009127173386497465 state:0.008583185123122606 to:0.008115785620800444 father:0.008059197206421346 long:0.007979035688405234 street:0.007727684922072552 one:0.007566974024707454 :0.7997715932409759 +of:0.18250414334575848 about:0.10921718651172609 and:0.0984617453297112 or:0.07286545587238479 for:0.06461408609899295 at:0.05183513007679997 to:0.05008340045920728 a:0.03351380518547297 than:0.03332956073191291 from:0.025013500980471656 as:0.02490026227389114 was:0.02215888984376437 the:0.02097431422163047 by:0.020246863990501147 with:0.019480724752518285 half:0.016272416859288933 is:0.015841008238438658 twenty-:0.014492181534814604 section:0.013934164774048149 :0.10926115891866592 +and:0.1436049237841356 to:0.07920939404896601 of:0.03578992576961711 which:0.035151490729948456 re-:0.029478985693585574 that:0.028219155808867784 for:0.024388756402958144 or:0.023852116063025307 not:0.02278311757804375 have:0.022207041004794648 who:0.02214591918381536 the:0.01995998182851126 in:0.019527814996202028 ex-:0.017409940975967396 they:0.01726837696362767 con-:0.01721546164935223 be:0.01596297722594579 in-:0.015705995925345655 I:0.015478889002129006 :0.3936397353651612 +at:0.2163956983757662 of:0.14288489115459216 to:0.13926312044401787 in:0.09749107666309156 and:0.06186532589381354 from:0.03964729639818808 with:0.038026934670812355 for:0.02485623118291151 by:0.022549851414040787 on:0.022401438937458915 In:0.018681436702395107 that:0.018625188118840605 took:0.014487485363303241 up:0.01354061880167755 take:0.012324083292022937 upon:0.011244678489640664 into:0.00917854561948162 about:0.009105001304622917 made:0.007902588319007841 :0.07852850885431455 +the:0.39749834532651884 a:0.07520030034269234 and:0.05540858759821703 The:0.03273515726769502 tho:0.030061875542463562 of:0.020144331424922633 tbe:0.014929647509541684 in:0.014268129706664795 or:0.013333166761078447 .:0.013287381914101323 an:0.009000188755386574 to:0.00880680429595084 :0.007943763822197133 Mr.:0.00773879605474787 by:0.007328417831573476 as:0.005922572098978465 for:0.0047526933692942485 that:0.004736121968310169 on:0.004594595720579333 :0.2713091226890862 +a:0.36264123834077105 the:0.2054040048587933 of:0.06984022793223814 and:0.04942154692338531 with:0.04168616366566608 The:0.03687007521015984 very:0.02842858706782687 so:0.02304915425645383 by:0.02002855536282731 A:0.017328072806958715 his:0.012322436597909318 to:0.00989404610623713 tho:0.009437269037922372 is:0.008901803552708872 their:0.008605604978939302 this:0.008575169115735054 are:0.008395373642509628 some:0.007218191023261927 no:0.007057900748325971 :0.06389457877137 +would:0.13516776815931453 to:0.10175318883572715 who:0.0734216616549984 they:0.06090829687960963 I:0.054414498797697934 which:0.046947310165833735 must:0.0405200574155989 might:0.036445589637541506 shall:0.03272411333844378 and:0.03228038765818951 should:0.03179090655993478 that:0.029508760759060126 not:0.02876680420731567 we:0.028503874055856488 may:0.028150033623979002 could:0.022163961267380006 will:0.019029697840863502 there:0.014322928357478427 They:0.011858887319353098 :0.17032127346582382 +he:0.1386069341249506 it:0.08299670781576843 and:0.08124595074188387 which:0.07074516445306184 who:0.060586281752145914 It:0.05086274633493239 He:0.03372658220617533 that:0.030753700037341587 they:0.027540543699519447 she:0.02515889483731294 be:0.02277771549441709 I:0.021945845123398 as:0.015694081395628695 one:0.013354575165095235 there:0.013092384171392149 we:0.01067374055457612 then:0.010638232922882846 is:0.009381884359613967 land:0.008952244260839182 :0.27026579054906436 +is:0.15316485510230876 well:0.12743189762605928 be:0.08754647149682708 was:0.05391418152760839 not:0.049626384430328296 been:0.04270836703933038 are:0.038693825256649175 and:0.03839566802328683 have:0.02959625355521688 Is:0.028116586764188503 commonly:0.02616507267234396 generally:0.020471062917017113 now:0.018266012697096465 made:0.016721166847139507 had:0.016443995110192497 were:0.01509467175043748 much:0.012397138763532687 became:0.010976144874807078 being:0.010122100444408496 :0.20314814310122117 +the:0.17027190784407714 of:0.10585557835912704 and:0.07355927771906935 to:0.05486905984958157 a:0.04543746377447453 in:0.03128555052933153 be:0.028704485173100775 was:0.02350529800142253 is:0.02215549335554494 for:0.02077556258358175 his:0.01804639098945333 or:0.016335100594594944 their:0.015847999621030492 at:0.015526727957625254 been:0.011815834631173878 are:0.01139058447814694 this:0.010362020528084328 tho:0.01035635773045807 its:0.01000473355720393 :0.30289457272291764 +I:0.1327618261942723 who:0.08146545254576458 and:0.07810820671632238 we:0.07249403485990673 he:0.07248304356389919 it:0.060811511136032184 they:0.047648121090224343 which:0.03800744623346001 you:0.026633784673479627 or:0.02581748217641542 that:0.02125115041847116 person:0.020100536160904382 It:0.018381527099903972 court:0.016075353465293114 We:0.01570525253194007 nor:0.014989140203403941 man:0.013993194345332851 she:0.012682110057234405 same:0.012385855839856547 :0.21720497068788283 +of:0.2388324958583581 on:0.07933748851274107 and:0.06609014415489378 to:0.04734180452569804 from:0.043122070717409304 in:0.039165567721000216 for:0.03747257782549534 by:0.03382858411947793 at:0.03381439794390059 with:0.032945975562250714 that:0.01562951295768699 upon:0.014966851435337106 the:0.013596544479849173 are:0.010430187638451034 is:0.009936815996227954 as:0.00943287567071788 or:0.008908774613961605 In:0.008276889805075589 be:0.00766600134187766 :0.24820443911958986 +and:0.06884201408577363 is:0.05517974908913784 able:0.04860860088438902 not:0.045872896938873066 have:0.03710913501551833 order:0.03585008182730559 enough:0.034906841579573585 had:0.03169474693978217 was:0.03137692316554418 unable:0.028785795808426096 them:0.028555702765049297 willing:0.027499991454993947 as:0.026622743115113902 refused:0.02646376636238983 him:0.02644503199627012 necessary:0.02555436532144975 are:0.020794353263436094 right:0.02058265551597067 compelled:0.02000873201337651 :0.35824587285762644 +in:0.15100824217228018 of:0.1310871033736233 to:0.08496038108110954 for:0.06466532166362847 with:0.05267929540162433 from:0.051306308400469555 by:0.047024534178240096 at:0.035195713212467665 In:0.03439182638478906 and:0.02431199995673231 upon:0.023533533774627156 on:0.020098146115786336 under:0.01584401246920626 after:0.015579405060092527 through:0.015044427902707888 that:0.00882173151047411 over:0.006921586031279294 during:0.006696120942967359 into:0.005883487407324257 :0.20394682296057032 +pow-:0.04434399319033166 nev-:0.037945326940659 oth-:0.035259127671204704 moth-:0.019270392044366574 oth­:0.017630604344738034 anoth-:0.01752522202700672 pow:0.014281671614897793 wheth-:0.01015241483935727 prop-:0.009350555859657626 farm-:0.008444784576626844 :0.007159678719305692 farm­:0.00698442005956451 -:0.006977076824839912 high-:0.006127132524204972 great-:0.005955200510159241 oth:0.005656244955815213 steam-:0.0050499333208614584 or-:0.00472091768135291 pow­:0.004128931072561373 :0.7320363712224885 +and:0.08939691349669154 as:0.02659984308011021 the:0.016774025045869275 him.:0.015455607590439454 :0.014114347906949983 it.:0.013393108939305879 that:0.012678507736688296 them.:0.009434428466309592 .:0.007433703761493115 to:0.006766876646276997 time.:0.00530680499286206 of:0.004657206557020491 people.:0.004629534032716441 life.:0.004593230880906778 years.:0.004253131652924144 her.:0.004210562002535389 again.:0.004116996151034981 day.:0.004113398938449519 it:0.004082714125859764 :0.746989057995556 +to:0.22155231889286414 of:0.12827155126315748 as:0.0777134234073891 with:0.07475911761006485 for:0.04672427633879736 upon:0.04440932511519566 tells:0.028777369286805396 and:0.0266678276927807 from:0.02017852184344576 tell:0.019352615044397982 by:0.01822290903649528 give:0.01650156923297657 before:0.01542586305293126 in:0.014535091460320828 such:0.012944598951610348 told:0.012662821530290736 against:0.011976587681610092 among:0.011605666167463913 at:0.011493546460776244 :0.1852249999306263 +the:0.18758120809651094 in:0.1392721715361001 of:0.07201828406691992 a:0.07173654407903136 In:0.037307380399225314 and:0.03148821363708014 that:0.023993712440151995 an:0.02184182567138585 for:0.02183880967895817 at:0.020046911902521943 to:0.015552329187173745 The:0.015325266827241843 tho:0.014031440967327929 :0.01260663474326716 on:0.012222198681391553 by:0.010833047376840507 from:0.008471731251274933 this:0.008120662584178349 one:0.007857461077961512 :0.2668541657954567 +be:0.08946439187625008 was:0.07982982476168612 and:0.07777901847344057 the:0.05833844278666309 had:0.05442391371399751 has:0.050338858969696636 to:0.04894693791183561 he:0.048934716905368415 have:0.04819863898412016 been:0.04558855059801497 were:0.03746194620823228 is:0.036066133936999985 are:0.03448886270209916 not:0.028183293538688863 will:0.023087832084844818 He:0.019252818501286205 of:0.018169248910218278 his:0.014305453856433196 a:0.0139600955118883 :0.17218101976823574 +the:0.41828303954014995 of:0.04706726599699565 State:0.025675336954366336 at:0.023579108883738563 tho:0.020005413842328595 Lake:0.017389614524529456 National:0.015056228537972616 tbe:0.013895099888648602 The:0.012537225605203452 .:0.012426424336347792 in:0.010727682650785693 said:0.010391956665017136 this:0.009229817888770413 to:0.009012373298613265 :0.008643820349326562 York:0.008553820346081112 from:0.008231525013640807 that:0.007381859130221493 for:0.006544956726428268 :0.3143674298208342 +her.:0.043729274350038344 :0.03730023213436476 it.:0.023083657691911952 him.:0.01673592219267349 them.:0.014074180497674603 life.:0.010205780206300195 years.:0.010024353584872714 time.:0.009295804789539617 day.:0.00789294294054339 home.:0.007838954786819693 city.:0.00780851661598527 night.:0.007312679517989961 house.:0.007119606359569967 ago.:0.00666369267227063 person.:0.006213679151370862 death.:0.006190324908599111 man.:0.006023342859236924 mother.:0.005955723969591319 again.:0.005938502334608693 :0.7595928284360385 +was:0.14620574340432216 is:0.11448869837083377 and:0.06119905756075157 are:0.04419569316734464 of:0.03956551974602433 be:0.03805730259583196 were:0.03503081426334963 as:0.02917483095440448 much:0.025331991508623187 been:0.018828780423470592 Is:0.016939688496739026 looked:0.016172456104497832 brought:0.015285166168894502 it:0.013879542703990161 all:0.013525408109939996 talk:0.01314962731872227 being:0.012934652712989752 at:0.01204185185433508 talking:0.011752789790332948 :0.3212403847446021 +I:0.14653774018175408 we:0.11369715365527579 they:0.08377688414504218 We:0.06507618761349238 will:0.057526178816597384 would:0.05654155103432275 who:0.05394053303102622 to:0.052782564009822605 you:0.04103586961070311 and:0.03426145068757208 could:0.031225242201685578 should:0.026435291879164834 They:0.025507073109487383 1:0.01927955512344098 can:0.0173663423793202 shall:0.01716422486035553 not:0.01627913838861154 must:0.01619066893042361 may:0.013441760686365037 :0.11093458965553676 +the:0.7298432643207058 at:0.08929575645117684 The:0.06050057750624765 tho:0.024434616424159245 At:0.021681036988911058 a:0.011533730429787363 tbe:0.01020099334140681 his:0.009696739764407374 its:0.004126317085926641 their:0.0036244849629331537 for:0.0035862935986021574 and:0.0033921545358225245 our:0.00337588566338538 Tho:0.002363099174986209 this:0.002144642494558352 my:0.0020754896031314803 an:0.0018790494263259856 tlie:0.0018179713599820386 of:0.0015785244809838849 :0.011849372386560085 +the:0.1277442674294538 and:0.08436402833844613 of:0.07707979202620513 to:0.047614139932566454 a:0.04756674629652367 is:0.03815817324859034 was:0.035219071247803546 be:0.03188435586823774 are:0.02588366930602256 in:0.01938019542828319 been:0.01829413687746613 or:0.017621346716869588 an:0.01692556761227729 were:0.015728930318499063 I:0.01328304802599848 he:0.013051354977301513 it:0.012614709782397078 not:0.01249495016209693 that:0.012166717118087951 :0.3319247992868734 +of:0.1529289759521784 the:0.1115373251760419 and:0.09158288041384634 in:0.08678574894453532 his:0.05448326500339396 a:0.03908459280168176 to:0.0320150903901587 that:0.030161530310081695 this:0.029749195922335003 In:0.01990560249949455 by:0.018327008373934278 other:0.018078211854359583 their:0.017933224951390363 great:0.01760147788564712 good:0.016665057200089588 with:0.014686535613649439 for:0.014633940096243053 our:0.014256153220945025 my:0.014148068442256611 :0.20443611494773734 +will:0.29711686212562943 to:0.21331359637971417 would:0.11581784163236346 may:0.07139196564444016 should:0.06463703148994902 not:0.049426086453243805 shall:0.04238250125542843 must:0.03900836171994487 can:0.022771172738132513 could:0.01660823832880521 might:0.015894331308081048 cannot:0.012399702460498648 and:0.005314053214081453 also:0.00402766198291845 soon:0.003825639771785063 never:0.003389400418024287 always:0.0021665912880708253 it:0.0020606058833911767 only:0.0019147774575838771 :0.015533578447914078 +he:0.14310369022750694 it:0.11130990705288764 they:0.07892028322034934 I:0.06922591899986383 that:0.060100073084607714 It:0.05946011763411077 we:0.036316425751995396 which:0.036236228689137596 and:0.03553735421997305 she:0.03359563137184539 you:0.028952414365320575 who:0.02587827559873309 there:0.024204570205481602 He:0.01604217147798961 one:0.012579625274040624 what:0.01157528461570685 This:0.009914422079096447 ho:0.008797666808088172 1:0.008575266563447025 :0.1886746727598184 +the:0.3438382055222775 of:0.13805301664470562 a:0.11372863700415613 in:0.03125725657454015 The:0.031161166341773516 our:0.030986709912639476 and:0.027987211106087036 to:0.020079223049085236 for:0.018682379809313757 tho:0.01791821585556682 with:0.016427493308738387 this:0.014124589164821061 that:0.012837749290906385 its:0.012338429380617239 by:0.011918855859963972 great:0.0114426355445007 their:0.010238768180221937 his:0.009764093550395338 other:0.008385352428401828 :0.11783001147128795 +of:0.49602642455448626 to:0.09861529714634394 by:0.04344213930649042 that:0.04295985984316016 in:0.03949500135506257 for:0.03469456517025515 and:0.025772375839616623 with:0.0255742594943431 at:0.01852382050598787 from:0.017941088516336134 as:0.017567074325341648 on:0.016072510778062918 which:0.01351028701937533 over:0.009097660267887872 before:0.008820501016636064 under:0.008577227384580508 upon:0.006947200322534817 when:0.006774190047197775 all:0.006590832537657087 :0.0619976845686438 +of:0.09129790931378902 the:0.07369883040827747 and:0.047842263382354346 in:0.04189055351593407 to:0.04045875475680249 a:0.03542341257202578 be:0.02020462051672066 for:0.01979292654746225 was:0.01760256398103379 at:0.017380150555488715 is:0.014984483003968216 with:0.014047653760730413 by:0.01374644383819499 :0.012670486581795598 In:0.01200961464556976 or:0.011563835749786333 from:0.011391516893522809 are:0.011273104484969465 that:0.010755276030689069 :0.4809655994608848 +to:0.5642431788052528 and:0.07361919086525608 will:0.06694154567066017 not:0.0398869309600534 would:0.036818196280933614 To:0.026373064835702946 can:0.01914111885276897 I:0.015628985426551698 who:0.014221786802377042 should:0.013912826400543485 shall:0.013510553926121686 could:0.012568022980186081 may:0.011569703115075413 they:0.0095787040833414 you:0.009295058905393314 must:0.009027760772770425 we:0.008778515592079277 that:0.006916898879160552 cannot:0.005889540114131087 :0.04107841673164061 +city:0.03623230113325469 part:0.03096347808908578 State:0.02819840252904881 state:0.02639910548630933 Board:0.026386685103541294 day:0.026004864591451824 side:0.024363246127534408 line:0.02424147581703253 out:0.019209495665651378 place:0.01874373408983786 county:0.017796002769286622 number:0.017447762571869474 City:0.01506272266685902 and:0.014231766835021037 people:0.012931308867003362 town:0.011671649814557749 name:0.011353611204337723 County:0.010824592766319965 House:0.010358368655563284 :0.6165794252164339 +the:0.32354028216713293 The:0.16862029276440152 a:0.06438501889599456 his:0.021300614469504424 that:0.018431050892017912 of:0.018264385812426908 A:0.0161521729939841 tho:0.015223625002294468 said:0.015089050705229605 young:0.012786885743083436 this:0.012059687645576368 and:0.011622063183490345 my:0.011219540328248399 her:0.009989983935360783 old:0.009737085797243597 our:0.009682637774884253 Mr.:0.009642409549303586 This:0.009211971977426197 Tho:0.009114217537326372 :0.2329270228250702 +the:0.22660971538316504 court:0.08024240139936657 a:0.049239269760440185 dwelling:0.04078535764453798 of:0.021208263825746358 boarding:0.017364610187772588 tho:0.01710167779008748 school:0.01582911919713444 opera:0.014429604645775593 The:0.013401957815723968 their:0.010807188894699558 his:0.00979348870689983 and:0.008449826396276202 new:0.008241923779118398 farm:0.007807939985150282 one:0.007541403460508438 her:0.007358871238984713 Court:0.007219118675366789 other:0.006496912614126461 :0.4290713485991191 +and:0.07655026104591788 as:0.05332226030069378 is:0.05194695991911819 time:0.045931470500315805 enough:0.039321796253248456 able:0.03403048919165733 them:0.03349650482117039 him:0.03190542580693151 necessary:0.029981842913861762 not:0.029888567238332126 was:0.02703940472640226 order:0.026633116478382984 have:0.023683050163982994 made:0.022223702959771004 seemed:0.021393199107294283 began:0.020438767709653402 me:0.020149498916199292 ready:0.018131678363563015 or:0.018017473244590708 :0.37491453033891287 +he:0.17705501379387667 I:0.14220218441538093 they:0.06751620565117604 and:0.06244413738672693 He:0.06024231249229293 it:0.05422139468040888 she:0.05343540075233545 there:0.03907311593211409 who:0.035293638814613 It:0.02582334754351663 we:0.024915348077518103 which:0.021988695725625892 but:0.0218632495556201 that:0.01695291128058442 She:0.015143447376509899 They:0.014899879598940421 ho:0.014123632438293903 never:0.013446146629578892 you:0.011953265061887803 :0.126406672792999 +the:0.2932032746033928 a:0.2842359074388746 Republican:0.05605428518701721 Democratic:0.05141713173600183 The:0.03162748589693653 A:0.0226149668685281 democratic:0.020293435874801424 tho:0.019528992922632892 one:0.015462293456840373 republican:0.015423818971355474 and:0.013494212915246438 cratic:0.011042092141970408 that:0.01017702946155794 tbe:0.010105272990138907 any:0.009646907996574475 by:0.009110224620294314 large:0.008245147154459396 every:0.008224823535200767 first:0.008077845170967594 :0.10101485105720855 +the:0.5974266414219309 of:0.07377994006185395 in:0.04188387851874327 tho:0.025679858384044265 for:0.023478630732279165 his:0.01699358993548223 to:0.016289926660134877 and:0.01472055411187908 a:0.012056012141830053 tbe:0.011123627662803363 their:0.010622126819068264 The:0.008449982608745351 national:0.007701027399220081 or:0.007571854009930295 all:0.007179823753080165 this:0.00698213464341895 open:0.006905605873331842 its:0.006717256310145357 our:0.006257995737120204 :0.09717953321495826 +it:0.17194567984468379 It:0.10590771500617584 he:0.1022928409595742 I:0.09437436910801615 and:0.05934702960941741 there:0.03894624916508604 which:0.037316550764011386 He:0.03562740481611413 she:0.032657861714425696 who:0.018260314925546695 that:0.01774412593995176 There:0.017083169150349766 She:0.012357388506519686 but:0.00894351135851937 lie:0.008869245707378457 be:0.008006702297223252 1:0.007882095835825845 man:0.00750789938699166 ho:0.00711255604507369 :0.2068172898591152 +the:0.14117344734319692 of:0.07921767072475763 and:0.07699184487070236 to:0.042809214222713644 a:0.03791407805822653 in:0.02396483489085983 be:0.017184590766676496 his:0.01586114000519643 or:0.015250977317522615 The:0.013723614785415523 is:0.013570396888354291 for:0.013424748629642828 was:0.0133622346024403 :0.013200792545264167 .:0.013123607706178776 their:0.012333362934545374 Mr.:0.01126373039767266 with:0.010721976863014952 at:0.010525120859165741 :0.4233826155884529 +of:0.2950959071776766 in:0.1287611855836634 to:0.08212530594450133 with:0.06741950284413434 from:0.05805477772766386 for:0.05693466691644246 at:0.036297983907434946 by:0.031149736429148298 and:0.030530119703377556 between:0.029390948489340443 In:0.025912281095769346 the:0.013456448077447992 on:0.007558277024726917 all:0.00654834392578978 ot:0.0060312097867806546 against:0.005906419749308095 :0.0051951687225901735 into:0.004104440768453746 without:0.004060944287866225 :0.1044663318378838 +and:0.08995317707915026 to:0.06844710404109794 of:0.04605142056172993 the:0.04074574508561307 which:0.02479116931334353 that:0.023764822140213245 re-:0.020841117231308055 in:0.020803825395358622 for:0.020278423301550053 :0.018417753428486977 not:0.016860793136637672 con-:0.016444405871234195 is:0.014386481772210856 or:0.014080680914153714 be-:0.01352268143271276 I:0.01317002660943805 was:0.011429878269381662 dis-:0.011196807025842847 he:0.01113106290024311 :0.5026826244902934 +the:0.5355779677995398 The:0.11597043146491558 tho:0.03455976477031556 of:0.03114550895311501 and:0.030350506885001505 that:0.019626324898239567 stock:0.017657149530802073 this:0.015695528271956492 a:0.014859052095286276 these:0.01433885936131392 our:0.013694068193618358 tbe:0.011451521487119613 his:0.010930578638770864 American:0.009730034151591193 These:0.009184214385596403 which:0.008480950047801089 all:0.008041763707936016 their:0.007014071261018846 Tho:0.006609308749044816 :0.08408239534701706 +in:0.23640049871868882 of:0.16873836759272512 the:0.1592862655805894 In:0.05209495780150533 and:0.03691066858943487 by:0.03361095141303553 his:0.025283294410725056 an:0.0246214897956823 all:0.020784741655416522 for:0.020405537936081606 with:0.019805259167799683 into:0.019373948743381546 to:0.019310471122567292 no:0.019035059483334386 their:0.015303099294232009 from:0.012800148911064398 or:0.0121073698749409 tho:0.010615694080556393 was:0.0089806761361085 :0.08353149969213035 +as:0.06931392982974462 according:0.052071562389565784 up:0.0511867300210483 and:0.040371568633051955 went:0.03351644485287816 back:0.032358406609281 regard:0.03073407747799069 feet:0.02852138506231652 down:0.026379903432040268 owing:0.02466642634685871 due:0.023695193974505355 go:0.022910973192184297 reference:0.020802802907016128 came:0.019883741951819873 sent:0.019874244915639484 attention:0.019565955494145405 come:0.01885185084678811 given:0.018792390567602263 it:0.017366961307524745 :0.4281354501879983 +of:0.3089063828659045 to:0.09293766516812228 in:0.07257660903380969 by:0.05077885695446092 and:0.04961170771621349 that:0.04939614832171043 on:0.046049143486896975 with:0.04315952578627477 from:0.03078972819074715 for:0.027398784622541292 upon:0.019866218777671463 as:0.018161976775238196 In:0.016442096766343763 all:0.015625461603733196 is:0.015390143529890465 at:0.015360565953460761 was:0.012081107212648745 into:0.012004991871894837 over:0.007649922668892147 :0.09481296269354497 +of:0.2359725403273025 in:0.1152851442611506 to:0.09157937615428899 and:0.06727130989942232 that:0.05180497458548727 In:0.046977761175606675 all:0.041527114134574564 with:0.0380045727553912 by:0.03137627503083924 for:0.025941103074077834 from:0.02491431317698373 on:0.02237678395837918 but:0.011623557895919892 upon:0.011446257204320387 as:0.010844995426026464 which:0.010774990560366668 when:0.010418390569006534 at:0.010100263234268365 into:0.009564220818435368 :0.13119605575815224 +recorded:0.503001119727599 corded:0.04105981769965441 :0.0399082912584753 and:0.014572825872196713 Monday:0.010857264730784856 situated:0.009031416727767121 filed:0.007837962073834255 held:0.00699038838499951 in:0.006909227715353727 on:0.006665206973839662 published:0.005887788238328252 situate:0.005335675252277797 was:0.005289333367193907 .:0.004715255412613563 of:0.004507109572437654 that:0.0044488264097966934 the:0.004254847938741937 day:0.004022268671601882 early:0.0034670733566247443 :0.3102383006158789 +the:0.18540648691787853 of:0.13391199636679893 and:0.0714692726300245 to:0.04313067771066633 a:0.04186807631366847 with:0.033287137868773985 in:0.03176171064838001 by:0.02487570397669004 on:0.020676969956495355 for:0.018691001144463284 from:0.01388790033617062 at:0.013792378720787 The:0.012885317454120844 their:0.012705917037464116 tho:0.012535123804132998 his:0.011767206719753323 :0.009517975753026557 an:0.009210985401878135 or:0.009002034712098988 :0.28861612652672797 +a:0.1600781369622935 the:0.10926024761601048 is:0.08966062555628673 no:0.06893557115869176 much:0.0687280636188977 or:0.05510721831786605 are:0.049758224325631414 and:0.049552609414287005 of:0.038614838793616324 with:0.0362789214644584 for:0.034856599013307156 be:0.034759746338786 was:0.030576368046650853 any:0.02635297678970411 still:0.018414536933362133 not:0.0167045212652155 far:0.016151467542649414 little:0.016013401514372316 Is:0.01398756032001618 :0.06520836500789692 +of:0.22515180425124828 in:0.12236690653536078 the:0.09572981908220995 to:0.0510691251192732 for:0.037611998756919604 a:0.02961768646673937 on:0.02836268612055096 and:0.02743814656047795 In:0.021451532482665105 from:0.020955923218685956 with:0.016207268147983046 that:0.01455912401989214 or:0.014411308797070815 at:0.01355219117899756 by:0.01057768144305473 their:0.010020250037508683 as:0.009038691544969286 an:0.008347243158683066 :0.00805894486758362 :0.2344716682101259 +the:0.09158960638787902 of:0.07606206495976967 and:0.0646711434370646 to:0.05551853226755902 at:0.04073687454224671 a:0.03789389778752751 in:0.03318503926183516 .:0.03307576708041194 by:0.019375903009411246 A.:0.014439351921934266 Miss:0.01403984250476082 for:0.013920609840617746 :0.013446589278984993 Mrs.:0.013332654117765843 with:0.013232981011640771 J.:0.011997095946723785 In:0.011178796556179548 H.:0.011068641457602339 M.:0.00979177667590018 :0.42044283195418486 +the:0.11919516938815296 of:0.07230453158552728 and:0.05781056740443249 a:0.043018564803886335 to:0.031305092790907506 in:0.020848713353460488 at:0.014270110001066288 .:0.012526810245749479 :0.012413283442322082 for:0.011719122709941797 by:0.010808400946589808 or:0.010404172990115616 The:0.01003576004804544 with:0.009811868184449042 tho:0.009295902015355835 was:0.008924239095331684 that:0.008672304223433876 is:0.0085591147338948 be:0.008335143826716943 :0.5187411282106204 +a:0.12554538482448374 and:0.07961092592195976 the:0.0722459374677777 under-:0.06388451266751806 was:0.06267919965506484 his:0.033186778713731754 one:0.03089552493304793 of:0.029622284608335384 by:0.02777204501924361 is:0.027279042361236207 be:0.026726267823459517 are:0.025290660471509626 were:0.024055093123598683 to:0.022584424175925905 her:0.02133360162772627 in:0.018040464077900553 been:0.017128280403314437 for:0.01390482276239247 with:0.013592925783821838 :0.26362182357795166 +the:0.1847564407057139 and:0.10126478200649837 of:0.08831264818219191 The:0.05781217644693712 that:0.022136138620238693 these:0.01631671668090445 a:0.014513194758497697 or:0.01417786516951797 to:0.012988822898574776 their:0.012329949427663977 as:0.012287881083578981 :0.012262416633580412 his:0.011940145330932676 in:0.011700605535597748 tho:0.011368635516343475 These:0.011209828309073805 this:0.010982581867111285 which:0.010198916461314558 other:0.008582822905284792 :0.3738574314604434 +of:0.2618442027302623 between:0.08667606484302742 in:0.07732645108060007 and:0.07387680815732771 for:0.07069666461902227 to:0.06921019067103731 that:0.04430317885766598 on:0.037517300045505186 by:0.03726684058043743 with:0.025297176373226246 from:0.021875475315506234 In:0.01982509718583845 during:0.01980907960982722 at:0.014036182669154554 all:0.013749630040382854 among:0.01146219474883113 tween:0.008922275924841312 upon:0.008335103081600941 when:0.008105407062603771 :0.08886467640330162 +of:0.22522515210598823 to:0.11449837840443775 in:0.11020274956839518 for:0.07062385589176906 on:0.058190505155399704 at:0.045161546079350336 and:0.04034641759948823 from:0.03807358976975357 with:0.029742815985698015 In:0.02751975453634138 that:0.022982446814893347 all:0.019964848109696117 by:0.018214148450929928 as:0.015524048316219955 is:0.014438355518033758 over:0.014127375686979412 into:0.013847190605173225 was:0.012588071308570528 during:0.011012635565256996 :0.09671611452762525 +and:0.13832804809268348 to:0.10672102383878827 the:0.0957375811971075 of:0.0846678662382709 in:0.027816437531582996 a:0.02467454881110651 be:0.021302498485022164 or:0.019804851325322833 is:0.016220559961595948 not:0.015504585401811306 was:0.01352206447391019 will:0.013045438836129634 that:0.013026649762091657 for:0.012260915480154008 Mr.:0.011403619668368942 it:0.011163547883727318 I:0.010956801673037688 he:0.01082634156602975 which:0.01061236994168756 :0.34140424983157136 +is:0.19339595277457883 was:0.12676804586826754 are:0.09321649079216043 ought:0.0872470487198269 and:0.04515758946155385 were:0.03965513466032724 do:0.03700975458160706 it:0.03295950705025728 Is:0.030954985853123843 but:0.020259741094306515 if:0.01991762828922547 am:0.019462899136886713 had:0.01767896144602895 did:0.015593062592359475 have:0.013797509157619861 or:0.012586336201493261 does:0.012058431716948148 has:0.009981273176575642 would:0.009717747712118184 :0.16158189971473477 +the:0.32237185987176514 Court:0.2960249888746475 White:0.06079295221472882 The:0.03772742169684218 Custom:0.020552513406190253 Opera:0.019215288448320524 tho:0.012093206531457824 this:0.01106576136298913 States:0.01028235061693252 and:0.009981890731715416 tbe:0.005681242915756475 said:0.0056603253729580055 Engine:0.005441827781692495 of:0.005233859276216651 County:0.004425221477673319 to:0.0041348151383523634 School:0.004100630766731164 American:0.004039342033114858 District:0.003787959615709134 :0.15638654186620626 +the:0.11314784825295172 of:0.09747190992614609 Mr.:0.05786465164508441 and:0.0540055675773014 that:0.03143833294191183 The:0.03000729492076815 in:0.02178195050794282 for:0.01939636643791155 as:0.018908206470385904 which:0.017817679000597365 or:0.01696489692280653 to:0.016472757271114823 no:0.016380707489714753 Mrs.:0.0161971625758102 a:0.015169918351481211 any:0.011346179049548643 con-:0.010222988400307382 .:0.009984415735380668 by:0.009705186052963732 :0.4147159804698708 +;:0.04811775476565084 nothing:0.022027577256073703 and:0.01814276469258472 it,:0.0180860222619182 him,:0.013229064794934683 is:0.012181009550815186 time,:0.01129966437005354 them,:0.010841937494028876 ,:0.008092192466699778 anything:0.006264568147617317 year,:0.005980147289149057 country,:0.005901968829119629 out,:0.0057821365205836545 day,:0.005759241005690916 way,:0.005711123345594597 States,:0.005707104500980248 all,:0.005680232216731678 here,:0.005377443535642727 law,:0.00536428975794865 :0.779453757198182 +of:0.09129790931378902 the:0.07369883040827747 and:0.047842263382354346 in:0.04189055351593407 to:0.04045875475680249 a:0.03542341257202578 be:0.02020462051672066 for:0.01979292654746225 was:0.01760256398103379 at:0.017380150555488715 is:0.014984483003968216 with:0.014047653760730413 by:0.01374644383819499 :0.012670486581795598 In:0.01200961464556976 or:0.011563835749786333 from:0.011391516893522809 are:0.011273104484969465 that:0.010755276030689069 :0.4809655994608848 +the:0.19929325695004538 and:0.10492097005558973 be:0.08399704087152256 to:0.07451434755622963 an:0.054241783877034766 a:0.03590462064604945 of:0.035253330818434396 was:0.032896173447758775 is:0.025954368640261957 will:0.02448160786082473 or:0.021729753862949716 The:0.020858822147710277 were:0.0187560141467724 are:0.018662111914026 tho:0.01624000264537087 not:0.015078695402072469 been:0.014824173866574442 have:0.01300708629640799 had:0.012123699050588375 :0.1762621399437761 +of:0.4021640909302404 in:0.10435224401937376 to:0.07285776505965225 for:0.048685926373189324 by:0.04806513776663837 the:0.03299585673019022 on:0.030283924596205016 In:0.026209378641744628 from:0.018799127413161733 that:0.014213231370907046 and:0.014102109485278244 with:0.01218425298019296 said:0.01178925333239413 ot:0.009644888432965286 this:0.009089040832296376 :0.008510676443277918 before:0.007888507981744952 upon:0.006954320866265221 ol:0.006947655548437142 :0.11326261119584506 +he:0.17512350792818462 I:0.08657978539457327 who:0.07860342315554748 they:0.056670305233187626 she:0.04578467203353106 and:0.041910664934168146 which:0.03696749716529486 He:0.03067797657814864 that:0.0302623450134665 it:0.0275840319564444 we:0.020889049271991457 be:0.017769071013795674 have:0.01702392837388154 1:0.014413700084261603 ho:0.014361007844011092 She:0.01225880044686048 lie:0.010965574012766483 It:0.01081919917913008 man:0.010448725249322466 :0.25988673513143257 +of:0.32445695159681237 in:0.06453414145048308 and:0.06431412447827349 to:0.029562432906247608 the:0.027572368757092115 from:0.025947100421525912 by:0.02496486617096648 Mr.:0.020140399547316595 In:0.01576566832269781 with:0.014072928551467257 as:0.013732063914500032 on:0.010005931565459437 Mrs.:0.009234362321208587 :0.008291461265047297 .:0.00668510492020993 or:0.006301131856474523 a:0.005788103800466395 for:0.005431079082080363 ot:0.004605920835483266 :0.31759385823618747 +deg.:0.08240161419132873 of:0.03978908030407239 .:0.037435403664167276 to:0.03185313590217528 deg:0.025310950297471452 Mr.:0.022521028147492395 degrees:0.019776708334167805 min.:0.017729862612960234 and:0.017622687152971304 J:0.01716041950446269 J.:0.016899247641743814 W.:0.016866883251603463 W:0.01632284696281142 Mrs.:0.014186647680784608 E:0.013940373234504472 on:0.012568320750804673 George:0.011455799566340534 S:0.01054617027959904 C.:0.010437514101495085 :0.5641753064190433 +there:0.2194521656999226 There:0.14614903917938032 they:0.11297529675597727 who:0.05127603121952207 and:0.043922096016184166 which:0.043603751218066915 They:0.03485061890906166 that:0.029132230002506834 we:0.02726035615830686 it:0.016470295157899394 men:0.013372993735966374 you:0.008582022637058088 I:0.008350911221056842 We:0.007694551367541058 It:0.006279145836919782 he:0.00607679812366123 people:0.005763815938421281 them:0.005504213684880319 but:0.005280128354608554 :0.20700353878305836 +and:0.07705437548817387 depend:0.031536193375950296 based:0.03144111872793531 placed:0.030957065963502946 depends:0.03075765919212402 called:0.030155936973754766 down:0.02681736716319054 made:0.026577710722022318 effect:0.023344764020024934 that:0.02149799173318628 look:0.02036076372291408 due:0.02026744173692952 call:0.019789339473829694 levied:0.01970103437603757 imposed:0.018928989316509288 put:0.01802119246063272 dependent:0.01689647076264392 out:0.015342186135269933 entered:0.01437601109950992 :0.505176387555858 +and:0.052347549731114995 known:0.03820484143419263 men:0.0330614388739425 out:0.02658521161946419 land:0.024839583568375772 him:0.02462976219453002 them:0.023016169667370107 people:0.016802447074470785 friends:0.016676857750788164 made:0.016318199925567916 up:0.015895413778547803 not:0.014612900476413426 it:0.014028958260569017 ed:0.011933658383152402 held:0.011191897967750478 distributed:0.010796507640436737 down:0.010726381568193787 but:0.010299589127911728 office:0.009840561435691229 :0.6171920695215163 +of:0.23595398255759686 to:0.09265501613974275 in:0.06692066726365135 and:0.06047012670610548 on:0.051067471890478354 with:0.04844862208967304 by:0.045423569415854015 that:0.042064417532862275 from:0.0411994602174221 for:0.03650601885252797 all:0.029158302706332434 at:0.02799480031250909 is:0.024120497833942038 In:0.018464272531316567 as:0.014617338889939654 upon:0.013664277449300717 was:0.011031886555226003 or:0.008851359462920184 but:0.008303802381207709 :0.1220841092113914 +and:0.13108463191715666 had:0.10322622942269352 have:0.095538878884775 he:0.09399669469146887 has:0.0922434870814865 be:0.05468334150176846 I:0.050286121392720255 was:0.02939913253906073 which:0.02843148911026478 who:0.027815481973377288 He:0.02477196029349955 they:0.024418256797006575 she:0.021621933787813415 been:0.021351933073913934 we:0.020769784467751372 ever:0.0178781585351307 It:0.0146831591757496 finally:0.013487094597688926 then:0.013274449309470122 :0.1200377814472037 +as:0.06931392982974462 according:0.052071562389565784 up:0.0511867300210483 and:0.040371568633051955 went:0.03351644485287816 back:0.032358406609281 regard:0.03073407747799069 feet:0.02852138506231652 down:0.026379903432040268 owing:0.02466642634685871 due:0.023695193974505355 go:0.022910973192184297 reference:0.020802802907016128 came:0.019883741951819873 sent:0.019874244915639484 attention:0.019565955494145405 come:0.01885185084678811 given:0.018792390567602263 it:0.017366961307524745 :0.4281354501879983 +and:0.17049274001471224 he:0.08054338331686078 I:0.06624192957472239 have:0.06090759204948148 be:0.044186767822604674 the:0.039665876249241776 had:0.03841159641143536 was:0.037520045030402155 not:0.035366684826925225 they:0.03314544956034604 has:0.03110542902218273 who:0.025796807568296762 we:0.024624117339519073 been:0.024310671963376412 she:0.02224342789581992 never:0.02109835155747011 are:0.020637860501778505 is:0.020538810542000994 or:0.01768052475429195 :0.18448193399853144 +of:0.3057347681867168 to:0.10381518138492722 in:0.08044284909356816 and:0.059899875744969654 that:0.04984296692312734 with:0.039535021799863485 for:0.03457133808112136 from:0.034016741051063844 by:0.03030374252202662 as:0.021825489931619382 In:0.021006445821316003 at:0.017413029657065707 on:0.01629958727786984 under:0.015183078615073436 all:0.01106682470587384 is:0.009869576415470212 about:0.008991462204850859 upon:0.008916654319716581 over:0.008267605646135335 :0.1219977606176243 +men:0.026361407300370055 time:0.014293105920051083 up:0.013274142971273042 hundred:0.012327052505762588 in:0.010017341385898009 out:0.008890756002950443 and:0.008810225691425339 principal:0.00833486535257051 made:0.008056750712782525 good:0.007591000652641611 women:0.007540907655607795 officers:0.007247156209593307 dull:0.007153082070447812 large:0.006836935976718099 long:0.00671847204739102 it:0.006662060354646452 them:0.006538361968472451 quiet:0.006267758821167536 one:0.00621726911869034 :0.81986134728154 +they:0.1504840423664327 who:0.07022255445260527 we:0.05288541316183381 which:0.05189641554888576 and:0.043075697147172985 They:0.04107159612863346 men:0.03296104583451484 I:0.02452477678364077 We:0.01986796419154419 that:0.01813432658164431 there:0.015947670998712242 you:0.0156858670102997 people:0.013295089082650001 it:0.011447286985804118 There:0.00899489092789579 services:0.008480539114603843 friends:0.007780056528148587 he:0.007576568654942438 but:0.007526186621928665 :0.39714201187810655 +of:0.28767355066866834 to:0.08775711267569858 in:0.08678131196995101 and:0.05160598694501188 on:0.04646139928102899 by:0.04519522654900943 for:0.044547789071328545 with:0.03396756772609607 that:0.033699232901107726 from:0.03075346596941143 at:0.027039283056790858 In:0.021061449543044047 as:0.017514234937992545 all:0.012543839382496166 upon:0.011844431150487573 is:0.00998972746569266 was:0.008814315973987914 into:0.008557199930727406 through:0.007781895704231326 :0.1254109790972375 +up:0.04961505226375869 and:0.04281842382700788 went:0.03490233100295555 go:0.029470155485387933 as:0.029200379096355568 them:0.025836084150200465 came:0.02539769729096131 back:0.025127552153944074 down:0.021891505213838616 him:0.020802601496968227 returned:0.018840587927065295 sent:0.01847169825577341 it:0.01766582587397295 come:0.017108580458604417 made:0.016960567197267015 due:0.015774290397986904 day:0.014634406818084545 way:0.01412827568619567 return:0.014126658099592073 :0.5462273273040794 +the:0.3344735320605694 The:0.07043408357960404 of:0.06413830402004178 this:0.05509373471501695 other:0.05473219859787352 in:0.03789418145342471 his:0.0351803438190351 these:0.03514789876248266 and:0.027352980909196387 their:0.026211286437493174 our:0.02568451517547514 This:0.02378965334008068 its:0.020286451432965067 such:0.01864992096476563 tho:0.017387030658967812 public:0.016621699890788787 that:0.014034410023385598 all:0.012204523848221037 great:0.011852060963907084 :0.09783118934670543 +the:0.8262790444017617 tho:0.05187229922423058 The:0.03670240226907907 tbe:0.01708579444191157 of:0.013209682938575528 and:0.005413926009502847 a:0.004304412800296197 by:0.0034068089304950333 that:0.003385129345347862 in:0.0031703811655304065 our:0.0028260867816659392 tlie:0.0026506998770549415 tha:0.001942990232432003 ihe:0.0019236410950418622 an:0.0018951747575260932 this:0.0018773301501573741 for:0.001666375526329497 from:0.0016220466581083769 tne:0.001584127213680607 :0.01618164618127246 +and:0.09147314284599804 that:0.04999621999349922 was:0.028643199561795094 be:0.026372280603775472 as:0.025521460946319307 placed:0.023885725750296467 it:0.02360045557800282 is:0.021661642551538567 them:0.021630270864313603 made:0.020318230263505727 or:0.019741150654347846 but:0.018409821920278614 now:0.018341154647432172 him:0.016545662001263145 come:0.015314943638712672 up:0.013612439214860824 held:0.012663182946916393 issued:0.01243756233569426 sold:0.012431564513439174 :0.5263998891680106 +to:0.19687662693294578 who:0.07855144603469989 would:0.06458799545349711 they:0.060500150892615664 we:0.056789336915498145 I:0.05556333594657206 will:0.04619221772209324 you:0.04529696433355306 and:0.038390341092914254 shall:0.027627869522470632 should:0.025177115665608416 We:0.024304119721389357 which:0.02150929165464907 not:0.02101276190462863 must:0.020760618954434505 that:0.02049774648445529 may:0.01644000881843481 They:0.015922867377947673 could:0.01235963897789402 :0.15063954559369838 +the:0.11919516938815296 of:0.07230453158552728 and:0.05781056740443249 a:0.043018564803886335 to:0.031305092790907506 in:0.020848713353460488 at:0.014270110001066288 .:0.012526810245749479 :0.012413283442322082 for:0.011719122709941797 by:0.010808400946589808 or:0.010404172990115616 The:0.01003576004804544 with:0.009811868184449042 tho:0.009295902015355835 was:0.008924239095331684 that:0.008672304223433876 is:0.0085591147338948 be:0.008335143826716943 :0.5187411282106204 +is:0.1985196885155826 be:0.17404164298732483 as:0.13508675836425388 was:0.09804070325449969 so:0.08086710277584543 are:0.0566078997671126 Is:0.04409077679732842 and:0.042974356601529005 not:0.027114978879160014 were:0.026385208910346444 been:0.026121380847663658 quite:0.014358232781427486 being:0.013168040246858598 very:0.012179877350992345 bo:0.010599272321415203 entirely:0.006604467842426059 almost:0.006586098296544632 or:0.005753584504275148 absolutely:0.005663492163126162 :0.014236436792287808 +to:0.19901623687976558 and:0.11389124263864177 in:0.04412825455947034 all:0.04192860578104129 of:0.041359464328173785 was:0.03533613585002697 not:0.032138090959136674 I:0.03200570334654819 be:0.025725951727423205 had:0.019870250640851992 the:0.019228405356739517 by:0.01901438496865455 have:0.017067839731636527 are:0.014899362630166411 were:0.014510846499908883 is:0.013788746888094602 who:0.012854304383072569 or:0.012773412147244987 been:0.012095480373914651 :0.2773672803094875 +the:0.2003829951445299 a:0.14163648140329677 of:0.12691641297181622 this:0.09566507224434015 his:0.06474746153190791 in:0.05245139296735513 to:0.04919924243626498 that:0.027399557740882513 last:0.02730402394800948 their:0.02018255110555785 my:0.01904601674237465 no:0.016877972720167438 next:0.016344818892556765 for:0.016329621363387586 and:0.013577471352629995 tho:0.01237764588939064 In:0.011837438006094313 every:0.011060609935100694 great:0.010578376581762474 :0.06508483702257453 +the:0.15275429869456036 of:0.08827588583919568 and:0.0774844846937851 to:0.03982531855535881 a:0.03488935357968263 in:0.029599753674962186 Mr.:0.022439880456036405 that:0.018493831395725715 this:0.01645824365421301 his:0.014525301984039516 be:0.014051256964255788 for:0.013899811869888751 :0.012705698616555251 or:0.012128627053696316 their:0.012094465894836235 In:0.011832878026776307 I:0.010284682166828837 The:0.009867815219985306 is:0.009758948273167815 :0.39762946338644994 +and:0.06911774911357454 is:0.05411456267661496 began:0.0488921996833828 able:0.039962978354776524 him:0.03490539313379572 go:0.03452909679735541 as:0.03394006634671913 was:0.0312638464932446 ready:0.03106304599300667 them:0.029479901444015834 time:0.025565524925957445 have:0.025183858302448982 enough:0.024997055921736636 went:0.023806530809280708 not:0.022767730777333822 had:0.022509694915190077 going:0.022443204651378768 about:0.022167083463204274 or:0.022006621215052004 :0.3802838549819311 +of:0.06862017545569706 :0.037178600327008746 to:0.02703275250334918 him.:0.0175813000876665 it.:0.016045133449674183 that:0.014424130634793988 and:0.014219316030832737 in:0.014112697296753952 years.:0.012157717952917067 for:0.010869106000840045 them.:0.010856577415622473 country.:0.009147718975278543 time.:0.008755572192349775 man.:0.007923817390638204 by:0.007637204891947596 work.:0.0071575931285116886 day.:0.0069022158229057025 world.:0.00632108497354911 life.:0.006113567446707778 :0.6959437180229556 +A.:0.3666622328301868 J.:0.060992082184387106 .:0.05289576986574723 John:0.04403823385209488 W.:0.03750409510476895 C.:0.021715090481286784 Washington,:0.019987850736054445 E.:0.017647494322401855 H.:0.01763919818682918 and:0.017442292190169944 by:0.017268755318625102 George:0.016424999276323137 of:0.016416324429854138 M.:0.01546454406305366 James:0.015425291270385097 N.:0.014614067381681322 F.:0.014352900359140969 Mrs.:0.013735014300370092 Charles:0.01224344516245075 :0.2065303186841886 +;:0.01458927046758731 it,:0.007973265891266864 him:0.007834970369143835 one:0.007240974664279108 in:0.006989508095588829 and:0.006417396987522371 ,:0.006059091806132192 it:0.006014614548599763 up:0.005812344146302806 out:0.005395853159197619 them,:0.005290532062834904 him,:0.004938420268273817 city:0.004793760033506698 :0.004646491011450349 man:0.004641061555670736 country:0.0046164671969483135 feet:0.0044416267197611185 time,:0.004376787347733258 time:0.004358244018157902 :0.8825693196500423 +the:0.12144597769398618 of:0.0896000214298808 and:0.08505642868017377 a:0.05588949405308457 to:0.04811241849790643 at:0.03109321386101597 in:0.023160951002559153 on:0.021741485485413832 was:0.015807474697412033 is:0.014890505989182356 :0.014742818183572235 as:0.013279604750440283 for:0.012533674348753798 by:0.01128440223875286 or:0.010748593849333282 be:0.010370264755912479 his:0.010135516769581602 The:0.009653657034683608 from:0.009313270220394852 :0.39014022645795987 +of:0.173929230524896 and:0.11667666310358503 in:0.08603970904036806 with:0.06996330511428155 to:0.06811637073339848 for:0.051552939463677554 that:0.04492467118135372 by:0.03711197654552394 at:0.034015021797196274 from:0.030644909325300094 In:0.02475651362512929 nearly:0.021576888354087147 on:0.01918022912803143 is:0.016661279886395947 was:0.016324660867573417 are:0.012805604008820587 upon:0.010397080151397385 or:0.010136273193602406 through:0.009477563840768241 :0.14470911011461343 +the:0.2532470388716481 a:0.0701832596190332 of:0.06394574508950043 and:0.05236578682291619 in:0.02861077558902287 two:0.02247605210470541 or:0.02003103181045386 The:0.01869344912842078 tho:0.015124825286456249 all:0.014509609173590218 as:0.014046358844925756 other:0.013880799639898626 per:0.012267331447589791 by:0.01179279063787826 that:0.011269504697418602 on:0.011250098728478758 with:0.01085914667384882 three:0.010431582925921324 for:0.009997974709894423 :0.33401683819839834 +New:0.1565489244213524 of:0.11931314002871916 the:0.11155991556095397 in:0.06991821715644721 and:0.04530168144959253 a:0.04296325192819463 his:0.026930059928164822 dis-:0.022422141959823557 to:0.020691784467856925 that:0.01686649313494997 In:0.01568191876174474 their:0.014258722360785295 for:0.012390443613225263 on:0.01074983904550775 her:0.010326701882742213 our:0.010037300572806579 if:0.008357492335411637 The:0.008014470764847719 my:0.007596533050862277 :0.26907096757601134 +and:0.0752833165675648 as:0.06403957159749782 way:0.026126056854823883 time:0.018350203108472282 is:0.016919128330121356 said:0.01655457302195379 referred:0.01607883410667499 subject:0.015374124736993924 him:0.014791025190438994 object:0.014004443193197854 regard:0.01365224311730245 or:0.012150583962164375 them:0.011888017523318887 reference:0.011123849328675522 addition:0.011012499427059352 according:0.010602512460143172 it:0.010403728503388327 known:0.00923299900863047 manner:0.00922113726653782 :0.6221911526950399 +the:0.16883506074108198 of:0.10345999980581193 and:0.07765091647747123 Mr.:0.042646070294986925 a:0.03676854853394007 to:0.02730423700154303 The:0.023555615107356022 .:0.020409359832543682 by:0.018024363299732695 in:0.013897353732280127 for:0.01331089079449869 with:0.011100144844755954 that:0.010788179786794411 Mrs.:0.010587736569899649 or:0.010484845999064638 tho:0.010440233278329509 :0.009960897908832863 their:0.009790656798233792 his:0.00974718170240166 :0.37023770749044116 +at:0.22918745859010545 to:0.06740283033821788 No.:0.06574062832678287 of:0.06346919287133802 and:0.056531688838192644 a:0.02151440738187528 from:0.019948717355614345 .:0.01822888790814645 by:0.015193381957061386 lot:0.013512772694530311 @:0.012986554635022131 the:0.012451716358783473 At:0.011313618428520748 on:0.01040634215523632 about:0.009020079335089075 with:0.008742521711509242 No:0.008000516194235406 or:0.007851362106809787 March:0.007789642901404373 :0.3397076799115248 +of:0.17585048088895264 in:0.08548579882396919 to:0.031059935548900148 for:0.029749642372434677 and:0.029513632364227552 from:0.029020029352225567 upon:0.022412979731823643 that:0.022009730634661225 on:0.021736998950762823 by:0.021439380801079332 with:0.01871382492288018 In:0.014318997155277685 after:0.010439051990581094 under:0.009941590884619744 through:0.008368236138338366 things:0.008164779632276294 at:0.007188056846907442 one:0.005992089589349615 bill:0.005345455322925941 :0.4422493080478069 +has:0.40650595681978413 had:0.17515179779186515 have:0.15783699415517996 lias:0.028567625898079523 and:0.02163816126654244 having:0.017507978542889015 he:0.015052774069070745 which:0.01315488368337677 who:0.012710850147185874 haa:0.011426744694452281 I:0.010460379088652173 baa:0.009274077411689815 not:0.009005228088358797 bad:0.008867219545034269 bas:0.007980178013113761 was:0.007434127651452732 He:0.006673498961576606 that:0.006417915544776645 never:0.00566015926355987 :0.06767344936335948 +as:0.26914428603105156 and:0.0589312462539948 is:0.029342775556952874 seems:0.02695753322736228 not:0.02686396619235766 seemed:0.02524487386859107 it:0.023468739204708287 come:0.020733725158513853 referred:0.019385036194859366 him:0.019187723429022384 known:0.01893304700530346 them:0.01891196147628833 or:0.0174505095065911 up:0.015897562786351932 me:0.015354921879813063 seem:0.014579347617060558 came:0.014335861806298452 was:0.01418658395753243 us:0.010785886249644886 :0.33930441259770167 +:0.08056840327118968 it.:0.030028433134211416 them.:0.020268738297525377 him.:0.016957217632666426 us.:0.013125196796789206 day.:0.012345059949032452 time.:0.008609688381365718 way.:0.008086326297798345 and:0.007939101575705558 people.:0.007663485832091717 her.:0.007085443683418426 country.:0.00697539073876985 night.:0.0069271868674484725 that:0.006875343569764066 me.:0.0068227214348379715 home.:0.0067835334151886435 life.:0.0066731568924507 water.:0.006540813453899396 again.:0.0064983889916425085 :0.7322263697842041 +the:0.3615331430860787 The:0.11244914825108317 few:0.07169768483233184 these:0.053199794567241304 no:0.03593650998556507 a:0.034581629756656025 two:0.0304849210770008 other:0.026223202248946382 of:0.025984520027028758 and:0.025529296048170055 some:0.024152151900039394 tho:0.021477384698541827 such:0.019002753389246504 their:0.01585063981038858 his:0.015053555971520853 many:0.013848180338937468 any:0.012918472013448753 These:0.01224647593009413 that:0.010843201637115595 :0.07598733443056474 +of:0.28767355066866834 to:0.08775711267569858 in:0.08678131196995101 and:0.05160598694501188 on:0.04646139928102899 by:0.04519522654900943 for:0.044547789071328545 with:0.03396756772609607 that:0.033699232901107726 from:0.03075346596941143 at:0.027039283056790858 In:0.021061449543044047 as:0.017514234937992545 all:0.012543839382496166 upon:0.011844431150487573 is:0.00998972746569266 was:0.008814315973987914 into:0.008557199930727406 through:0.007781895704231326 :0.1254109790972375 +the:0.19181522003148388 of:0.08239275449738963 a:0.05686508711286567 and:0.05585118140677855 to:0.04919348133251888 that:0.030798810474092223 for:0.025234317240198367 by:0.02505529048721305 at:0.022626074420076477 in:0.021493733565035363 The:0.013800003842653947 with:0.012615950920438268 which:0.012401949433218056 any:0.012109899967996912 in-:0.011982280516232378 or:0.011698505188380148 tho:0.011524120175836651 :0.011277234958755959 be-:0.010978322577497642 :0.329285781851338 +and:0.09787071543084067 that:0.03991205090281645 made:0.031221506457054484 is:0.02912125731490028 was:0.028890693791197214 placed:0.023433768096613405 as:0.021235169506767154 be:0.020980966078724454 or:0.020654644189757747 it:0.020370894604110082 them:0.02026104908955177 now:0.020235367218671932 up:0.018067424186665796 are:0.01741614296069905 him:0.016338116787566907 out:0.016198840522810645 but:0.016073331244865086 not:0.015666419619017713 down:0.012831635836605852 :0.5122200061607634 +of:0.3290177018015789 to:0.13666729940973954 in:0.0672015828029869 by:0.052684367056414126 that:0.048596282023332556 and:0.048591510245864694 In:0.027557412768853925 from:0.02677238077065337 for:0.025893475534050643 with:0.025290833099997377 on:0.024860498350781607 at:0.02224917458250844 upon:0.013766585308982837 when:0.011443089540273522 ot:0.010492745879841255 as:0.009740104040038458 which:0.008394444508625627 into:0.00830165377032346 against:0.0073072011564918795 :0.0941716573486609 +was:0.1054122637475561 not:0.08469652770984823 and:0.07517133560731633 is:0.0745571403235481 to:0.047291414214753184 are:0.04339780054688517 be:0.0422134378570012 were:0.039222187294613464 been:0.03122320881765735 go:0.030790970977515632 the:0.026994187521448 them:0.026604780031805646 at:0.02565884194177255 quite:0.022985043046642645 went:0.022414857580372618 in:0.02225655338188404 him:0.020784604962952924 would:0.020521456011890985 of:0.018292414811547628 :0.21851097361298819 +of:0.15236998618007339 in:0.10765056780884849 at:0.0896748969662039 to:0.0821216010515669 and:0.053808777687788384 on:0.05034421238453861 In:0.04202796672168298 At:0.041109756172953066 with:0.03255577833881847 that:0.030978745824774206 from:0.029723249719107024 for:0.028153165170669948 is:0.026775143461566498 by:0.025508289202178052 but:0.025383343113485748 all:0.018735391855464436 upon:0.018302142055323406 do:0.018026637518533537 about:0.017432179135168396 :0.10831816963125455 +of:0.3279779158046699 in:0.2893860802966112 to:0.07837437675075155 In:0.0494938317512365 for:0.03353230412634753 by:0.03121524694208426 from:0.027597511193698777 that:0.02413498190071536 and:0.02111993752632848 at:0.012967400955456482 with:0.01263542804954148 on:0.010623950656536027 as:0.009620527165508708 into:0.009237059443466311 iu:0.005878744005996933 upon:0.0057365934646001916 which:0.005637910820593308 through:0.005283420178394371 ot:0.00488710323678531 :0.033659675730677324 +away:0.05746860598250849 and:0.04985561698690421 taken:0.03950823995165392 miles:0.0355312759828073 feet:0.031845900191456514 come:0.022313957473317422 them:0.021637161013586904 out:0.020621546731341717 came:0.02000539576637417 up:0.019820502682224503 him:0.019195504147748815 received:0.019046714556510396 far:0.018152378296247898 removed:0.017489734983720518 down:0.017467467859455896 it:0.015386533775439217 years:0.01424855034507225 annum:0.014237643714946796 free:0.014107989586278378 :0.5310592799724048 +with:0.13818668069056797 of:0.13059057611664002 the:0.12732348479573655 and:0.12254313237226487 an:0.07621524468646554 their:0.037310646454459515 no:0.03704466068300214 any:0.030448421496481366 as:0.025616325594654727 or:0.02520014121871928 much:0.022840847523063285 great:0.019879766647296803 by:0.01795530927249688 for:0.017148501313079087 one-eighth:0.01714739680440184 public:0.015025352220424474 his:0.012895436797486073 bear:0.01278480697344329 such:0.01225552058505477 :0.1005877477542615 +:0.037396872916266054 manner:0.03116143975278319 and:0.02178969114524147 that:0.020578966183280752 land:0.009473914940041678 way:0.00832901102116239 money:0.008250837251387675 it:0.007745673069645423 work:0.007484605683918707 district:0.007273378456150574 them:0.007114040567795177 .:0.006566257658814717 conditions:0.006410676855923375 time:0.006238319233069758 out:0.00620490248332007 of:0.005863796815381543 or:0.00564657410131222 years:0.00554508501494052 it.:0.0054899042441765526 :0.7844360526053882 +the:0.6873431631774504 and:0.04613886335472838 The:0.03211967885710505 tho:0.026940614555535022 a:0.021425369191289106 permanent:0.017055717659134405 of:0.014720365337274208 or:0.013061130279919203 in:0.012415525248474826 tbe:0.011061283120813677 any:0.009948971706404639 for:0.009682290869736107 take:0.0094601886480391 to:0.009003005795470023 further:0.008379336731636232 that:0.008149346707605781 all:0.008038568846260747 make:0.006551465272096123 no:0.0065050555713714745 :0.04100005906965553 +they:0.10847855369152724 I:0.0931300549114375 he:0.07147999458116268 who:0.05106363097452801 and:0.04543128779283989 we:0.043621751735085854 They:0.03667297026966026 there:0.026737854777761097 men:0.023954702376400492 she:0.023190282523881743 that:0.022255291553357426 which:0.02216213348121592 He:0.021444655394819396 There:0.01995120875679899 it:0.01990297250391625 you:0.018386342429290617 We:0.017700364172539305 1:0.01698883251248527 She:0.012286027618040964 :0.3041610879432511 +have:0.2292110930507615 had:0.16492513455414728 be:0.09214655374333579 has:0.08154414270530835 was:0.056468450662009444 he:0.053493008206224726 I:0.041798624897714465 been:0.03815994214762935 and:0.0337840523575691 they:0.029350356456164236 were:0.02336512024551379 not:0.01950699518739433 is:0.017288338618902794 are:0.01655683855170372 having:0.014686643173172998 she:0.013338594755242622 who:0.012765114893046266 we:0.010476933514316637 They:0.00901085288338843 :0.04112320939645415 +the:0.16844023903714522 a:0.12407670937276795 of:0.07062330953484655 and:0.06179104036497308 to:0.05574554795286453 in:0.0389907016167873 his:0.022724792813014694 with:0.01521127844300737 an:0.014914423893780714 .:0.01417543941778095 at:0.0134651176863592 for:0.013067706549710617 The:0.013018457991308853 her:0.011183253585967749 tho:0.010861190084858174 In:0.010573636055146964 their:0.009905101302697387 :0.00963936645716732 Mr.:0.009452505067988837 :0.3111401827718266 +to:0.25525648055803407 the:0.10577980687157765 and:0.05747176994459037 not:0.04482470361385064 this:0.033297615833947525 in:0.02572648331695996 of:0.024598127535047205 will:0.02402276255473166 may:0.023621343728007924 you:0.017346079317233948 we:0.015691261003364144 shall:0.01563610737207155 I:0.015397564547796762 that:0.015051061021143834 only:0.014873862871441641 a:0.014585436431488753 can:0.014550594411518462 or:0.013068845771466886 at:0.012500272117275005 :0.25569982117845197 +:0.08481856056889704 it.:0.0207043221280225 them.:0.017044883081268093 us.:0.01427530901059074 day.:0.010018976130845536 him.:0.00852468551518112 years.:0.007941001355766497 country.:0.007670372590940552 and:0.0075436168995409985 people.:0.007426861726392855 time.:0.006820603092460529 year.:0.006380227050216501 city.:0.00635131408351828 here.:0.005812947567491996 life.:0.005580575625033793 way.:0.005332048084795845 work.:0.00506608049212444 night.:0.005062670375406084 world.:0.005030326912805929 :0.7615946177087006 +lots:0.21395971649121612 from:0.06792721389892852 at:0.054299432897089384 Lots:0.05302486942551494 No.:0.05126475683702512 and:0.03861662349743331 an:0.024811728021028465 of:0.022903295085534823 the:0.0217313760673184 :0.01681784864667654 in:0.015663387671805726 as:0.015579387366705213 for:0.013216201610632007 by:0.013182053235772288 .:0.012110283114073455 that:0.010900229145419865 to:0.009995639622955507 a:0.009221666696892242 lots,:0.008533571910910651 :0.32524071875706745 +the:0.12038004749878517 of:0.09967743579449509 in:0.08771329739449683 and:0.05266102827140889 to:0.034023942211351944 for:0.032840189595416874 In:0.020508312689953286 a:0.017370804022204287 by:0.015587304043481095 that:0.011590476649495344 or:0.010702467253074032 :0.010288401880097968 on:0.009887849149694653 their:0.00942494731977111 at:0.009372675718383603 with:0.009244238461319953 his:0.009155019870738532 from:0.008954704748880436 as:0.0067135546590458405 :0.42290330276790505 +and:0.08828678169061699 was:0.06756418413979962 is:0.046648794243434245 be:0.033067295498120194 been:0.030806002545594513 made:0.024150364896340492 are:0.02392677772769539 that:0.02344039786072486 not:0.023323573884855155 up:0.02131826256156276 were:0.019957715032188288 but:0.01960489228596895 it:0.019104798409742017 engaged:0.018199313520105377 succeeded:0.017952158719370233 them:0.016466468378614946 or:0.016147254232250677 put:0.015450927348755032 him:0.015159723071027012 :0.45842431395323324 +the:0.45375391686295247 of:0.1158156661786102 and:0.05601674517224195 The:0.039996507521904506 tho:0.03444913859263822 no:0.02207470850159225 their:0.017980156862062033 a:0.01727832532534167 by:0.017268227923261 our:0.016481592551466813 tbe:0.016064221604974994 with:0.016017937618510652 to:0.01567558269104495 its:0.014088675294880454 in:0.012187153279062377 his:0.0120913014203886 all:0.008537972631270539 any:0.007228537838904175 great:0.006503826232728111 :0.09948980589616407 +of:0.28767355066866834 to:0.08775711267569858 in:0.08678131196995101 and:0.05160598694501188 on:0.04646139928102899 by:0.04519522654900943 for:0.044547789071328545 with:0.03396756772609607 that:0.033699232901107726 from:0.03075346596941143 at:0.027039283056790858 In:0.021061449543044047 as:0.017514234937992545 all:0.012543839382496166 upon:0.011844431150487573 is:0.00998972746569266 was:0.008814315973987914 into:0.008557199930727406 through:0.007781895704231326 :0.1254109790972375 +the:0.18169361840916123 and:0.09658122053740673 to:0.08351892482280865 a:0.07287645597376376 of:0.0681980237768903 be:0.04139055461101606 his:0.03068707663227198 was:0.029311801775378322 The:0.026940635265754666 he:0.022967170243955202 or:0.02296227842804123 that:0.021924420709407148 in:0.021173229418740225 not:0.01826720503394789 by:0.017514644163726657 had:0.016644650708708884 been:0.016183564296325465 were:0.015219156860643901 have:0.01416597166698204 :0.18077939666506967 +the:0.11919516938815296 of:0.07230453158552728 and:0.05781056740443249 a:0.043018564803886335 to:0.031305092790907506 in:0.020848713353460488 at:0.014270110001066288 .:0.012526810245749479 :0.012413283442322082 for:0.011719122709941797 by:0.010808400946589808 or:0.010404172990115616 The:0.01003576004804544 with:0.009811868184449042 tho:0.009295902015355835 was:0.008924239095331684 that:0.008672304223433876 is:0.0085591147338948 be:0.008335143826716943 :0.5187411282106204 +and:0.09247031040895777 laid:0.04339072333568244 put:0.03978090182302162 sat:0.035478238713347474 went:0.03534098758510604 came:0.03314167655534002 it:0.031737620881412375 lay:0.0291375465720309 come:0.026371902955134266 the:0.024537733339021258 go:0.022098750268724814 to:0.021139561364126907 cut:0.020413453775277295 way:0.01816256627046155 him:0.017791247840691284 break:0.0173636733782067 coming:0.016986120704607605 It:0.016849507426901344 running:0.01680340335177021 :0.4400040734501781 +the:0.34326016945286797 of:0.16428477589974977 and:0.1039087971639595 in:0.037245678220938286 The:0.03325228536895808 with:0.023249801662961516 tho:0.021723066568987457 by:0.01666852916282077 as:0.01632912398555847 his:0.014872061933944795 on:0.013764073266327373 their:0.012702189204893712 a:0.012124610767381958 to:0.012065173543855659 an:0.008633677278368421 tbe:0.008262643394050176 its:0.00784094162456651 for:0.007623439651036219 that:0.0073442523877597045 :0.13384470946101362 +and:0.05836012515133798 him:0.048407905604743943 is:0.04584711288506135 not:0.03844383248535917 was:0.03767781127597918 them:0.03369577170256601 have:0.03365082159499396 had:0.032315006209676 as:0.031179173999715624 able:0.026797645076642864 are:0.023084157097536116 it:0.022846069841902527 order:0.02060088573969221 right:0.020591432621606405 time:0.019196104112682674 going:0.018734042652890685 enough:0.018609460405529438 up:0.01856128329891319 made:0.016631445173917805 :0.4337699130692529 +and:0.10569113687782469 of:0.09011421272936258 for:0.03460393273475196 on:0.03296880243357916 in:0.029830554077611114 to:0.02659249624622425 that:0.02195485822359296 from:0.016165035891403598 by:0.015133481216793596 with:0.014879567482502389 upon:0.013812352613347583 after:0.012312655223382176 but:0.011526701552904276 :0.0060081619924503655 And:0.005889402853069369 In:0.005764793820196751 ;:0.00551270489558987 or:0.005502147780800322 them,:0.005195657472346801 :0.5395413438822662 +and:0.07300909177822702 as:0.07161617052903697 time:0.04219038515241649 necessary:0.041457827145835104 enough:0.04144693474029259 is:0.03820411459463371 order:0.0380146916994273 able:0.03768794452392168 them:0.02995587530613626 have:0.027203443681984144 him:0.026602083646979913 power:0.023523902693061004 required:0.02312824703981731 made:0.02174491867613782 was:0.021488693668080282 or:0.02124684727795866 it:0.020880234469385035 ready:0.019632366788596287 going:0.018651761110861698 :0.36131446547721074 +of:0.28767355066866834 to:0.08775711267569858 in:0.08678131196995101 and:0.05160598694501188 on:0.04646139928102899 by:0.04519522654900943 for:0.044547789071328545 with:0.03396756772609607 that:0.033699232901107726 from:0.03075346596941143 at:0.027039283056790858 In:0.021061449543044047 as:0.017514234937992545 all:0.012543839382496166 upon:0.011844431150487573 is:0.00998972746569266 was:0.008814315973987914 into:0.008557199930727406 through:0.007781895704231326 :0.1254109790972375 +and:0.1042056583090536 It:0.08341315700489008 it:0.062316714073435316 that:0.0425552788219086 which:0.03711146075668708 he:0.021440256487418593 is:0.019425653219583717 :0.017196894897822217 but:0.011832064837449668 .:0.011225254344732856 I:0.011192202116492099 as:0.010877012571579211 was:0.01037362143110385 the:0.00992889163391849 This:0.009604401035510562 now:0.008306067810616644 are:0.007903283096979208 this:0.007731251920244791 question:0.007373730378553761 :0.5049871452520197 +be:0.1958763718793964 was:0.16326793505081091 is:0.088064634115393 been:0.07506815867534883 and:0.06824613822950278 are:0.06730028843859569 were:0.06606787453404957 he:0.049201507153211935 being:0.022611680662070043 have:0.017133140430517096 Is:0.016853707427851812 had:0.013627655832386112 bo:0.013518329708422821 has:0.013184541252374019 they:0.012373075179014878 it:0.010760129156698687 who:0.010752636352098568 she:0.009095333845995156 He:0.009014369234779277 :0.07698249284148242 +the:0.09684081064840576 and:0.06551335624548284 of:0.05146145169206151 from:0.049520598669154245 a:0.045427902131977435 to:0.0370403239153822 be:0.035669151526387034 was:0.030489628475080553 is:0.026635804908522978 in:0.023878514238638158 are:0.018513936943033917 not:0.017945708099223703 or:0.017556265685966497 been:0.014265228721347686 at:0.013857211504087178 he:0.013733215789660087 were:0.012396679125422956 I:0.012347944480187516 for:0.012197989992860347 :0.4037082772071174 +the:0.693999265077004 a:0.07104227651990952 The:0.030000772116721128 tho:0.02219078684016247 any:0.0144778906788737 this:0.014142496979244386 tbe:0.009821165342343539 first:0.008430286707105836 high:0.007852055370364501 same:0.006666107262387593 in:0.005812067362806436 of:0.005585632822148737 low:0.004910608193157836 death:0.00477103338174081 higher:0.004331181673409883 and:0.004120623838243872 present:0.004035957549692122 no:0.0038477824963069145 lower:0.0034569675139104294 :0.07950504227446623 +he:0.155376965257806 it:0.0852171548440126 and:0.08154698738363436 who:0.0658966133130066 which:0.05808548400324922 It:0.05192824498580727 He:0.047381096889900935 that:0.046004958109275906 she:0.03492537809597267 man:0.012875531285221769 one:0.011202121575366217 She:0.01068593113313308 be:0.01044948067774144 lie:0.01031702930451086 ho:0.009578498032254622 as:0.009540175618109046 company:0.009353428900348138 This:0.008515804095811048 world:0.008431945193647735 :0.2716871713011905 +and:0.06829155943869254 has:0.06056886441758647 of:0.049800761845366304 which:0.04944565261120418 the:0.04842121122798511 have:0.044883502305719254 had:0.037030895168991114 to:0.03669674756092904 as:0.03186533048726014 that:0.022700713064229588 it:0.017080850871969373 It:0.014842944096852818 not:0.014186995367151324 in:0.013879042404238774 a:0.0136143008006281 he:0.012206402424766718 or:0.010614495464541766 who:0.009863433658626153 is:0.00972959812189437 :0.43327669866136687 +and:0.20988721444034694 of:0.1912076603894454 the:0.09324162901694645 to:0.04708255127689623 in:0.03301997011913437 for:0.02953688080048327 that:0.025581517875343997 by:0.022773367488710877 with:0.0227147655160763 on:0.018544436119572988 no:0.01828604943501918 his:0.016436916035496095 a:0.015472851167824608 or:0.015064923063660541 as:0.013901951553908585 any:0.01178054026884758 an:0.011104822645437698 their:0.010902021865723456 than:0.00908597127889299 :0.18337395964223244 +the:0.19437211211077648 of:0.13335047200086783 in:0.07644056078092112 and:0.048140730653276155 to:0.02822363998157708 a:0.025291835479203887 that:0.02295818932205068 In:0.022768850037063776 for:0.02067206649055176 by:0.018664776548618443 as:0.018506210481821814 at:0.01538499189914719 The:0.014454051006142977 from:0.01427852762864615 :0.013310558001213746 or:0.013290260170047186 tho:0.012223687070876225 with:0.011515755483365859 on:0.009923081238541447 :0.2852296436152902 +the:0.08910559107244378 of:0.061137472560099305 and:0.056514486943512535 a:0.050004907958805744 to:0.04258205229205464 in:0.03034323322163879 by:0.026591436997703853 at:0.022473842633593488 for:0.022410377183264787 that:0.02098020189008893 was:0.019758834721747363 be:0.018481312054881092 is:0.018136696512301587 from:0.013181652578143578 as:0.012557274413748609 an:0.011709725541095948 with:0.011467300078065328 :0.011008591853478277 are:0.010990280949142445 :0.44956472854418994 +hereby:0.1361350346627283 be:0.13203540351953702 was:0.1194846211631597 and:0.08893944417350017 is:0.07054534132228964 been:0.06310453014491155 duly:0.04583544597106117 as:0.037024223956238764 were:0.036071437420329526 well:0.02706594601716515 are:0.026901229778092017 he:0.02549257725830479 to:0.015579948029564533 now:0.014344090763838083 being:0.012753565364843242 then:0.011903885550973903 I:0.011444805095430667 Is:0.00988514737006971 not:0.009150043570256313 :0.10530327886770573 +is:0.1300949053123692 ought:0.06235942008217411 are:0.06072445398663133 seems:0.05697318922100556 was:0.04954471475520722 not:0.048536362204045544 said:0.03881623685409472 seemed:0.03220746110521765 as:0.030923473227594384 it:0.030881869856406088 claimed:0.028226689520969073 have:0.027725540143517465 and:0.027557757709861613 likely:0.02587900806524851 seem:0.02574969309575762 supposed:0.023317446089120043 had:0.02145961764731352 Is:0.017651730366473797 proved:0.01677680343414685 :0.24359362732284573 +the:0.42641155811490816 of:0.06823711557757717 this:0.062186466387634164 any:0.05496995049772207 a:0.04147567279350201 and:0.03534919428174813 said:0.02386956497133765 County,:0.020404287211081 tho:0.017741392211708853 such:0.016221825202499016 county,:0.015378242243099336 or:0.015370636373408558 The:0.015245546143000683 other:0.01438511975318914 in:0.014026657304152285 every:0.013899561344914027 each:0.011843785735574656 by:0.011411043549898671 for:0.011347535319941223 :0.10922484498310321 +day:0.07087575805633144 out:0.06230334911691346 side:0.029616921961912263 number:0.029147218923763464 means:0.026557053168593397 point:0.021156121621286113 one:0.01698408539097194 place:0.016801869178046932 purpose:0.01622120104625788 amount:0.015333207077071524 way:0.014785569813063617 line:0.014764968660710568 use:0.013088379799503475 made:0.012884235878912917 time:0.012828675140824374 tion:0.012477269200543038 board:0.012407172975280342 part:0.012295976004085468 Court:0.012212463235662213 :0.5762585037502655 +the:0.23311868173187725 of:0.11990215938314844 a:0.08468606475853602 this:0.04951201225012668 in:0.04349961091277894 his:0.034525812351816135 on:0.029654840735568 by:0.025833350959372923 and:0.020960123668309696 with:0.02035811652190256 their:0.017061186629102165 for:0.01633129270890728 to:0.015207923992934604 said:0.014757525661728539 every:0.013038069905297926 tho:0.01297658403865924 at:0.01260405538927325 that:0.012460293575666007 our:0.012389893215569893 :0.21012240160942447 +and:0.14625498311756543 said:0.0821408402137806 fact:0.053042879817408975 stated:0.043080626045290886 so:0.03670560455337853 him:0.03145185140002361 know:0.030269284895004085 say:0.023631027804186345 is:0.023317250373478222 says:0.022511697585094068 believe:0.021363437164841573 but:0.01993757805139123 saying:0.018992342115662253 told:0.01877630041085035 replied:0.01865923525468731 all:0.017484377075553177 found:0.017287552137347117 me:0.01691240193856356 stating:0.014580183464830303 :0.34260054658106237 +the:0.3369548687949686 an:0.09609818733904005 years:0.08701275036237863 of:0.08567702842142906 his:0.038783884741325075 good:0.03130816716631153 their:0.02479797373566234 very:0.021666698655816025 tho:0.020581718683890027 and:0.018754953112002037 my:0.017671132609155826 her:0.016559627239334487 to:0.01619987653037893 as:0.015882495601612156 The:0.014646299842067821 for:0.013819810279463175 our:0.013124467857641299 so:0.013079470625590442 by:0.012657664589043332 :0.1037229238128892 +of:0.10484296787219971 and:0.07628833814929191 to:0.06295970502356393 that:0.0628053488453573 by:0.055378655981621956 :0.03414044865593279 as:0.026393255729450282 with:0.025621897211852457 which:0.018315264965867425 from:0.016831021464063803 for:0.012592439134117527 in:0.012485474999102929 on:0.011035898087631214 but:0.010810293517105427 Rev.:0.010757909523655448 said:0.007539622539151323 or:0.0071836188891727885 at:0.006533670937449546 before:0.0064087496345800535 :0.4300754188388322 +be:0.1647632718506242 was:0.16057145500759973 been:0.10681751046522475 is:0.06104290164609036 were:0.06059767226189494 and:0.05079506284645623 Action:0.04725587510756896 are:0.04085625479419625 being:0.029129331330110107 have:0.02901638553992741 had:0.026985949583459054 he:0.025703870016925826 has:0.02417800955337024 ever:0.01801553325099947 who:0.012085035556725018 Is:0.01092709781528905 that:0.010155035928841408 action:0.009852734081560403 now:0.009817059335102771 :0.1004339540280338 +and:0.056713481346183585 according:0.050571699991980176 as:0.0441751398689082 up:0.04315011366610431 went:0.042621357323533775 go:0.03671054073419005 down:0.036275472581768387 subject:0.029055985721853805 back:0.02759183761861487 relating:0.024271742076162988 regard:0.02378015274118374 over:0.02235016134921082 them:0.019948681124211706 way:0.019421817472351256 feet:0.019061208690560306 sent:0.018931871882755486 time:0.018619528479641215 came:0.018048677424468373 going:0.01772750087618384 :0.4299730290301331 +and:0.167171854655918 about:0.14918817779372162 or:0.10837242726723859 than:0.05472405449340365 of:0.054208456321314366 least:0.045495333135404395 west:0.03506450538151465 hundred:0.03356206047652078 east:0.029420279129516568 over:0.02565076298898167 north:0.025381791647545934 to:0.023352968051115145 south:0.01965954628346992 the:0.01942374239845029 within:0.018095801051617542 in:0.014801651650087662 was:0.014369917518118254 nearly:0.014162223876188337 a:0.013172595393112328 :0.1337218504867603 +it:0.1487478584585999 he:0.11249914228614488 It:0.09366415822908826 I:0.06707534292702677 which:0.056028229131648385 and:0.04312178401742474 He:0.03525598839169537 who:0.03059420937881341 that:0.026611777032595235 she:0.025246918547647938 there:0.018051902180252984 ho:0.009527393351190567 lie:0.009270958212848898 This:0.008289343271628209 as:0.00793560040119909 She:0.007734282640804196 There:0.007685284771599646 1:0.007032963012468351 this:0.006931215429530079 :0.2776956483277931 +the:0.14097905379068107 of:0.07331087503882922 and:0.07181330996280533 a:0.05976433406615042 to:0.054517608548006975 be:0.027144583808848956 was:0.021670096559335054 or:0.017850176640821478 is:0.015691986615405103 in:0.01537689140487654 are:0.013527554375639277 :0.013345386361944066 at:0.012159230680710242 been:0.012083769908731407 for:0.012017580091645849 his:0.01156881653886233 were:0.010304989923631205 their:0.009881712923853423 tho:0.009488640365474152 :0.3965034023937479 +one:0.1028303141280697 part:0.05963429477052991 out:0.04766456937681193 some:0.031418679026461914 members:0.030764490253327767 side:0.029940657362655835 portion:0.022063658796890564 office:0.020457735219956013 member:0.019726706386316174 end:0.019666887540649894 tion:0.018667441728710307 parts:0.016814747270460957 people:0.014112771422418794 all:0.014072739582212475 any:0.013183573287639892 One:0.013083578354183906 that:0.013024335602903442 account:0.012482348155001894 many:0.012077825070275192 :0.48731264666452345 +the:0.17070603098176837 a:0.08254512569864031 of:0.07122109665750516 and:0.05138751003380913 in:0.03389450763637271 Mr.:0.032120929973392984 to:0.03103190366096287 The:0.02834692122646083 his:0.018190278061007453 .:0.014925281745808436 for:0.013220116767224321 by:0.012320909303742994 her:0.012137727452112265 tho:0.012039611098019445 Mrs.:0.012023414538758647 that:0.011946022814257605 Miss:0.011659915347938136 with:0.011423686499292955 an:0.01038901789333808 :0.3574699926095873 +the:0.16962189674037337 of:0.10741271271120952 and:0.05530334927139466 a:0.04770567218999478 to:0.04102485386610737 be:0.03147063462061338 was:0.024682996579743675 his:0.023543515001817648 in:0.02104808073792434 is:0.0203294559336485 at:0.019426986104734326 their:0.01691773092384508 for:0.015378596592103477 are:0.011567728152541208 or:0.010148852985731245 this:0.009850270665409964 with:0.009837835193687652 tho:0.009629367599681745 from:0.009331059853234663 :0.3447684042762034 +be:0.07614440619811862 and:0.06920461404737915 never:0.05290433636631284 he:0.05046975168133179 have:0.049880330171148145 I:0.04348781664135395 was:0.042217996082123545 is:0.04160627732877725 they:0.03497220709709063 ever:0.028483631713630338 it:0.026085709401708516 had:0.02596864564080761 all:0.023381468442946866 been:0.023207568381770738 not:0.019617797941451902 we:0.018778290888322773 or:0.018411581448861368 are:0.017038273090171207 He:0.016699050323326258 :0.3204402471133665 +is:0.16181177705183017 and:0.10563875433229557 was:0.10267849688520386 have:0.05293364609362046 had:0.04771003221333689 that:0.03960562595390415 do:0.03722867819681688 say:0.031999368880149495 Is:0.03143261411543853 but:0.026754355208994857 be:0.02669067117173386 with:0.026455027395063536 as:0.026170152152168794 knew:0.02434107363482661 has:0.024328079694648504 are:0.018767413312851887 to:0.01848243999575517 it:0.018380765578983455 see:0.01791947981107701 :0.15967154832130034 +of:0.09129790931378902 the:0.07369883040827747 and:0.047842263382354346 in:0.04189055351593407 to:0.04045875475680249 a:0.03542341257202578 be:0.02020462051672066 for:0.01979292654746225 was:0.01760256398103379 at:0.017380150555488715 is:0.014984483003968216 with:0.014047653760730413 by:0.01374644383819499 :0.012670486581795598 In:0.01200961464556976 or:0.011563835749786333 from:0.011391516893522809 are:0.011273104484969465 that:0.010755276030689069 :0.4809655994608848 +:0.02591794444221796 it.:0.022459789983067774 him.:0.014060635152142236 them.:0.013884184786216931 time.:0.006858931812895595 day.:0.006179537931609173 .:0.005961044470011835 again.:0.0055273708032776685 all.:0.005216930489240315 It.:0.005153924223941905 country.:0.005068328170468933 years.:0.004993811316493398 her.:0.00491535569174681 year.:0.0048887713335486 it:0.004594671760297019 up.:0.004281776279145707 life.:0.004208217390489846 one.:0.00420521876678974 people.:0.004191409624026935 :0.8464321455723716 +the:0.13390916131572986 of:0.08187552591792312 and:0.06539592836375532 a:0.039924046474766925 was:0.027672375734370928 Mr.:0.021147906154986296 to:0.02103637377307574 that:0.020455118941821743 The:0.0203741991039951 in:0.01766084320048357 .:0.01756995826594455 is:0.01737612857881379 be:0.016941145007596657 I:0.014060438345229935 :0.014008753584093647 his:0.013239677736251208 Mrs.:0.012225446673928938 he:0.011196207891968955 this:0.010532337785047956 :0.42239842715021575 +:0.07567230242502054 and:0.07358421022021397 of:0.03695103294880296 to:0.03639245122880678 for:0.022231920675483314 them.:0.018508420455248163 it.:0.015507488392695373 in:0.015353901114129646 the:0.014525008063125537 in-:0.01202239368470615 at:0.009299472358926704 country.:0.00780104637053303 time.:0.0076448222149640655 or:0.007243109624364204 .:0.006838597562445143 year.:0.006810306151468137 In:0.006035489710333365 a:0.005695348787224939 that:0.005633614525417543 :0.6152490634860904 +one:0.1028303141280697 part:0.05963429477052991 out:0.04766456937681193 some:0.031418679026461914 members:0.030764490253327767 side:0.029940657362655835 portion:0.022063658796890564 office:0.020457735219956013 member:0.019726706386316174 end:0.019666887540649894 tion:0.018667441728710307 parts:0.016814747270460957 people:0.014112771422418794 all:0.014072739582212475 any:0.013183573287639892 One:0.013083578354183906 that:0.013024335602903442 account:0.012482348155001894 many:0.012077825070275192 :0.48731264666452345 +of:0.2250812851698707 in:0.11571252298031302 to:0.09109547407828983 for:0.06678190504303622 and:0.06247274850514523 on:0.04551294564229771 with:0.04489350863697256 that:0.043949397229038054 by:0.04243527253187256 is:0.02931264816231674 as:0.026692789969258723 In:0.02652508941785413 upon:0.02120959204973816 was:0.01956944723111497 from:0.01948608798912469 all:0.013675177244223237 under:0.013477745289165241 at:0.010773132412348865 when:0.01062730915206072 :0.06971592126595867 +be:0.15203972563501228 have:0.1085680666797145 and:0.1033265340589948 was:0.07472313114866382 had:0.05284267991496531 been:0.04868989646875645 he:0.04868376257887807 has:0.047433292290758586 were:0.037520206719880614 is:0.035457559272849194 are:0.02958516063623078 I:0.0229649825449729 the:0.022523843863879105 a:0.017883548031437033 bo:0.013797937842112806 being:0.012460460084189865 who:0.012236799380352353 they:0.011453634478715473 so:0.010393125127629577 :0.13641565324200647 +W:0.07892631551588039 M:0.0649850702455623 J:0.06391667000631429 C:0.05905432254903491 S:0.054856972986157694 E:0.05424348669664422 A:0.0514021035998739 H:0.049828895999379015 B:0.046817024292917286 P:0.04169510535418999 L:0.03908899165768591 F:0.03868396050835962 D:0.03284277583604958 T:0.02839631999315026 R:0.022484651061807727 K:0.02066410658290062 .:0.02003194872932241 G:0.015174321886982735 N:0.014851087760055299 :0.20105586873773182 +one:0.1028303141280697 part:0.05963429477052991 out:0.04766456937681193 some:0.031418679026461914 members:0.030764490253327767 side:0.029940657362655835 portion:0.022063658796890564 office:0.020457735219956013 member:0.019726706386316174 end:0.019666887540649894 tion:0.018667441728710307 parts:0.016814747270460957 people:0.014112771422418794 all:0.014072739582212475 any:0.013183573287639892 One:0.013083578354183906 that:0.013024335602903442 account:0.012482348155001894 many:0.012077825070275192 :0.48731264666452345 +the:0.23640794427913628 of:0.23455047514019028 and:0.11185417739844906 a:0.033355949427772535 in:0.03051856985753972 for:0.022725748554193338 The:0.019336500013202213 with:0.017437052263766722 to:0.015853128273605258 his:0.014650448920444478 tho:0.013835967569173217 or:0.011071837687573811 their:0.011045079800775279 that:0.010688846942594846 by:0.009846226634082062 this:0.009677691557707263 good:0.00804765421855215 other:0.006562718946639988 In:0.006539083295781585 :0.17499489921881992 +is:0.2044838464179117 be:0.16666857684216324 was:0.10499381816559655 are:0.07663330283180007 amount:0.07371696702680954 Is:0.030930995077254247 now:0.03065868759032303 been:0.030111565346933683 were:0.025710115248148997 and:0.025231872352876966 not:0.023218108536806767 become:0.01623516772767186 being:0.015932270051153257 interest:0.012257778729954316 by:0.010292962970621435 largely:0.010281492587875538 as:0.009099856245852786 of:0.00881201419736767 balance:0.00867880762161544 :0.1150517944312629 +a:0.5557457640927973 the:0.10985782801509664 in:0.04440280628802817 his:0.04070137688723544 and:0.032663737106407464 very:0.028213423760411676 of:0.02576737541948829 most:0.022642624704998827 its:0.012835330308309426 as:0.010521342704817999 In:0.010410528695693907 their:0.010175756040834314 is:0.009855629416655347 to:0.009781316225882552 her:0.009478391998603853 this:0.009412352117763645 with:0.008964077596431261 by:0.008141483081502173 an:0.007609909209683934 :0.03181894632935774 +of:0.28767355066866834 to:0.08775711267569858 in:0.08678131196995101 and:0.05160598694501188 on:0.04646139928102899 by:0.04519522654900943 for:0.044547789071328545 with:0.03396756772609607 that:0.033699232901107726 from:0.03075346596941143 at:0.027039283056790858 In:0.021061449543044047 as:0.017514234937992545 all:0.012543839382496166 upon:0.011844431150487573 is:0.00998972746569266 was:0.008814315973987914 into:0.008557199930727406 through:0.007781895704231326 :0.1254109790972375 +for:0.16084798409148376 about:0.10742092640711648 of:0.10310559892467329 than:0.08919376928953966 past:0.07796659428916129 or:0.0633426338186432 and:0.060793184369498716 the:0.04814495011306935 last:0.04165591681022575 nearly:0.027128350659384737 over:0.022649809137563023 in:0.021413053758532266 to:0.021237983419689247 resided:0.020596598944539808 only:0.020168214600952552 a:0.017591762849173978 within:0.017139519970382253 least:0.011529021682005688 For:0.01140681369019991 :0.055667313174165005 +be:0.1971991553818951 was:0.18649357095057584 is:0.09323484539929525 were:0.05125055319010378 been:0.047002140656823795 he:0.045808620056818516 and:0.04143173998325762 are:0.03875612880364806 being:0.027227148939886765 had:0.022669235485251456 He:0.018310912948226184 have:0.017870369119911106 has:0.015489528566370333 Is:0.011723962192778907 as:0.01012460075883836 bo:0.009201681298061646 she:0.008464049300136962 man:0.008353653013306313 I:0.007760902579275535 :0.14062720137553847 +and:0.1521269906747386 have:0.11655067842650882 had:0.08591450708172449 I:0.08077435767923302 has:0.054024303011021145 he:0.04837047875031391 they:0.0359761710686319 never:0.0349412935321378 it:0.034283878293128 not:0.026802785358125015 be:0.02550367019309665 who:0.022050494841284525 which:0.02062564638748386 we:0.019212984805704297 He:0.018214968063389656 was:0.017597510665829583 1:0.017012370048810427 then:0.01674320374725524 They:0.01658094579189462 :0.15569276157968845 +of:0.09129790931378902 the:0.07369883040827747 and:0.047842263382354346 in:0.04189055351593407 to:0.04045875475680249 a:0.03542341257202578 be:0.02020462051672066 for:0.01979292654746225 was:0.01760256398103379 at:0.017380150555488715 is:0.014984483003968216 with:0.014047653760730413 by:0.01374644383819499 :0.012670486581795598 In:0.01200961464556976 or:0.011563835749786333 from:0.011391516893522809 are:0.011273104484969465 that:0.010755276030689069 :0.4809655994608848 +and:0.07558940021936399 recorded:0.030196237618668006 was:0.028917161578042846 made:0.027969746247669736 that:0.027730098932509103 o'clock:0.025060522019555328 up:0.023026552239529506 is:0.020398277211376416 found:0.02003101797656537 placed:0.017482208134164214 out:0.016937164562539058 place:0.016819459500107596 interest:0.016629321966808677 him:0.016002796715253755 situated:0.01573420479581609 it:0.015128305982428461 them:0.014715943643665314 part:0.014646613000297721 interested:0.014450471929902294 :0.5615344957257364 +he:0.15581466542975142 it:0.14499820109016215 they:0.08943011190542358 It:0.07992681673966813 I:0.057997524707114216 that:0.03654466707155206 we:0.03511539685820547 who:0.03429913789100766 she:0.033032424302688164 and:0.029941817005246976 which:0.02789553865715621 He:0.023325696741163113 you:0.016200537098616644 We:0.01394571482231166 be:0.01319251237890309 ho:0.011933529571185705 They:0.0115513567791168 there:0.01078661793675704 lie:0.008497770992066746 :0.16456996202190316 +the:0.307978047159125 of:0.10251720953145599 and:0.08312614358174053 a:0.07408244364278466 for:0.050722266333658006 The:0.04477230126801086 their:0.027001147482294797 to:0.025584521569670164 by:0.023053680037418534 his:0.02271407405710319 tho:0.01982627343501575 that:0.017365563830277996 from:0.01170449119262256 in:0.011359836591547219 with:0.010482191884523602 my:0.01026917510476548 at:0.01003896287600406 very:0.009418006040944088 other:0.00885963433383543 :0.12812403004720205 +the:0.2938529288805025 The:0.10988656284286782 Mr.:0.04153756127934541 and:0.03405566061340201 Daily:0.029468307367277003 his:0.021914173371611886 Newport:0.021325354143665695 of:0.01988732876167303 said:0.019847704664222986 tho:0.018217711384612326 this:0.016453120273720707 old:0.01415667506986052 school:0.011861205420882936 that:0.011459377408064375 .:0.011450804529325665 :0.010459716006369649 a:0.009322020351732112 young:0.008617140526010777 South:0.008400310350145518 :0.28682633675470703 +the:0.36572691835120075 a:0.07334850098188503 and:0.04600847912881225 tho:0.03145782768119266 of:0.023060684078910567 The:0.02208673368738855 tbe:0.018233586037927612 in:0.016174176840798124 or:0.01596040615837857 an:0.013067072716849351 .:0.010890418382798603 to:0.010297395891181843 as:0.007707173086632896 Mr.:0.006710903905800993 :0.006280514482704616 on:0.006110065129320435 said:0.005632647106452467 by:0.005624273564626454 his:0.005326907858142679 :0.30929531492899554 +and:0.07359963406644195 be:0.052667135004264946 to:0.04483536256874564 of:0.043448293679263235 the:0.03579172892628988 in:0.028005289969665195 was:0.026700397492138477 is:0.024892551934152005 re-:0.024162182625676702 he:0.024086629517294657 are:0.02098604388819216 from:0.020307931541148256 a:0.018606881911690538 or:0.018077853608073062 for:0.017195224169077532 been:0.01615904189338184 I:0.015254891559368164 :0.015184018660626356 which:0.015016145996292442 :0.464022760988217 +of:0.16312708962952516 the:0.09444012615502498 a:0.09220888233374022 and:0.06538798802845076 to:0.0596496191384033 for:0.04603537178137273 in:0.037568731041328046 with:0.026350309028251306 or:0.02233740068395501 that:0.02196097953563555 by:0.01951269273716823 an:0.018036996955319164 from:0.016445405514539144 his:0.015016714962512775 as:0.014959349713901095 be:0.014924002909277747 is:0.013022708957889989 which:0.011727359394968988 their:0.011059310331345423 :0.23522896116739037 +to:0.41721445597851614 had:0.08603639564640254 will:0.08539633944425351 have:0.04421376491682488 not:0.03930045556603201 has:0.038650767032022894 and:0.03629668186204526 would:0.029663148935357417 I:0.02127668763585797 they:0.01987708144827447 be-:0.019351852441860433 should:0.01563971292658302 must:0.014750561012019612 we:0.011959041607652791 then:0.011234285358574509 can:0.011002921131489192 may:0.010437445869941147 be­:0.00990236403250396 you:0.009582791113912253 :0.06721324603987597 +of:0.13084814232797154 in:0.0740836656586379 as:0.0625527229231004 with:0.059577596335708534 to:0.058433603729754965 is:0.05551580107464621 and:0.04946529489577619 was:0.04264000753602388 for:0.04009673021586375 by:0.037684080471064085 be:0.023941707008899252 on:0.02316059851167503 at:0.022644769441950232 such:0.019950936521181326 that:0.017856095877642635 like:0.017386655618315594 In:0.016902219705578994 from:0.016046571451088905 not:0.01205910100844263 :0.21815369968667797 +the:0.12924147089889845 of:0.1081994106030269 and:0.07226679214391457 to:0.05089038306867936 be:0.050814260708093084 a:0.042866387350948935 in:0.02767663942862677 was:0.02459096716375894 is:0.02304028023970812 their:0.01761449164100019 his:0.01621318318112155 been:0.015330761982366931 as:0.012708839927640879 or:0.012646942140331014 for:0.012399959347657395 are:0.012132210652665787 this:0.012123702636496602 were:0.010437437966565618 by:0.010117034514841569 :0.3376888444036573 +of:0.3222301720722049 in:0.13028394884370048 to:0.07483307163493944 In:0.04007050652378976 that:0.03625279610694092 for:0.035526800292580756 by:0.032351511242523286 and:0.03130478063956306 on:0.030381343395959676 with:0.027570482988076805 from:0.026624980699238167 at:0.026441504951881713 as:0.012554591280306577 upon:0.011703246759675802 all:0.009488555167831413 but:0.009184562114092546 do:0.008508308745653134 which:0.007343062797590127 is:0.00716475554226877 :0.11918101820118267 +the:0.11158025002779286 and:0.09401511783113013 to:0.06571054139015552 of:0.06494107820825368 a:0.05795835781728622 in:0.049808179549789305 was:0.03931633440417708 be:0.03228924705845006 his:0.025513820068157275 is:0.023200719549293272 at:0.021458034072853866 are:0.017748039009868675 he:0.015635431032629564 were:0.013928692651690468 In:0.013388844968122468 on:0.013286174958761159 her:0.013177562266278075 or:0.013051142687831106 by:0.01290813206083245 :0.3000843003866468 +p.:0.2002341165016143 a.:0.1351831793389373 of:0.0319921543617982 p:0.026308661196164918 .:0.022381921591313747 at:0.017735294779377467 by:0.016828417099630715 the:0.013450656136879211 said:0.011440247032294975 and:0.011285480696029254 in:0.010537705324398735 o'clock:0.009597885211619637 a:0.007681836474121681 to:0.007275396457811975 :0.00658981089148281 1:0.0063943131674428395 A:0.006152301172432047 -:0.005437187661611803 from:0.005323811879260157 :0.44716962302577823 +of:0.3057518327636527 the:0.21750917111140067 and:0.04937768716480717 for:0.031661940353245835 The:0.029392818739450512 such:0.026546627554902308 other:0.02602333915538327 a:0.020814431674425756 all:0.019403859576869235 that:0.019396790534985983 some:0.01645680583992552 their:0.016257276718260952 his:0.016202107302237378 in:0.014171414068204524 tho:0.01351658947485858 or:0.013201980718447413 no:0.012073722933449925 with:0.0113733747400203 any:0.011329898889763927 :0.12853833068570808 +hundred:0.02334136986593815 up:0.005482494641173394 men:0.005366536521246011 Hundred:0.0047587970519216575 John:0.00441808156134956 William:0.004390720675819281 him:0.004016828614280843 ;:0.003997112205305733 due:0.003721199871732 in:0.0036582900032443304 time:0.003637206863828461 James:0.0035594902370151707 out:0.0034878448964120057 .:0.003467980723571515 1:0.0032804584819785204 day:0.0032444781513863933 ,:0.003058139385740603 :0.0030314555521939613 Robert:0.003005471634785646 :0.9060760430610768 +the:0.13864693238030773 a:0.10153947512720199 of:0.10085863391788423 and:0.08398690696610676 to:0.07776178715154967 no:0.039514214814591185 in:0.036112966579900097 at:0.03497957647135715 not:0.032175791524528055 is:0.031090351814337325 if:0.027572231381544944 any:0.026210039439342452 that:0.022106748664529264 for:0.02104202467423429 The:0.020846588356752082 or:0.019764886379009246 was:0.01952248560047407 do:0.019278445885122425 as:0.014998636464756342 :0.13099127640647065 +of:0.3390252510175358 in:0.08486066546375197 for:0.07363141651279224 and:0.054731976264718464 that:0.05400845916713402 to:0.052921319156159545 with:0.0465197805687517 all:0.044559121108569404 from:0.03464993134570989 on:0.027215962799354065 by:0.02618392352389653 upon:0.019406107899749923 as:0.019291301534339646 In:0.015579470836028394 but:0.011795416836429451 at:0.01044159440763717 which:0.009140439560564694 through:0.007378564025698338 among:0.0071380416020406364 :0.06052125636913813 +to:0.7172280222026717 will:0.06307224746950034 and:0.04194722308972651 not:0.037484975220263984 would:0.029911395441431465 can:0.012626957887195577 could:0.00888251794379474 To:0.008468240300102629 of:0.006288232474964655 may:0.006280866258483721 should:0.0055859956099674505 lo:0.004066018770532019 shall:0.003865308056287511 by:0.0032397335004581353 also:0.0029224106980616157 must:0.002748558504933911 with:0.0025501415184439455 I:0.0023752891053819285 it:0.002366550002637125 :0.037089315945161044 +thence:0.27120696796446586 and:0.04276983275182441 east:0.040467487041949475 two:0.03673111793598586 feet:0.03550833554724819 north:0.03435433131771364 west:0.03359353673754554 all:0.027672095989562703 south:0.02539009035878463 easterly:0.02214045300671071 westerly:0.019827682589265837 or:0.017405715194970202 was:0.015721149621750124 southerly:0.015403313922134818 distance:0.015344512299267301 running:0.014116026014100561 northerly:0.013257257643426446 were:0.011915495244715262 are:0.011556944912195888 :0.29461765390638256 +of:0.28767355066866834 to:0.08775711267569858 in:0.08678131196995101 and:0.05160598694501188 on:0.04646139928102899 by:0.04519522654900943 for:0.044547789071328545 with:0.03396756772609607 that:0.033699232901107726 from:0.03075346596941143 at:0.027039283056790858 In:0.021061449543044047 as:0.017514234937992545 all:0.012543839382496166 upon:0.011844431150487573 is:0.00998972746569266 was:0.008814315973987914 into:0.008557199930727406 through:0.007781895704231326 :0.1254109790972375 +;:0.03901538733605628 is:0.026034874188625393 nothing:0.022283988891208 are:0.01407371758845005 to:0.013113906652857795 and:0.01256757586501161 was:0.009765538354983028 cannot:0.009762227673147274 it,:0.00954076138146271 time,:0.008240756548200862 him,:0.007788753447736183 them,:0.007540438653065276 ,:0.007489185110104401 anything:0.0074033742627084105 none:0.006509392861005673 of:0.005745635974158638 man,:0.00551243434533094 .:0.004846387526895272 in:0.004654562592519823 :0.7771111007464724 +the:0.33262963589355327 in:0.05592255072108775 of:0.04658635166672196 and:0.04122967980916301 his:0.031868813755131356 an:0.028296121438224294 a:0.025508681878364255 The:0.025447784783210834 tho:0.022197247984757917 this:0.018004774435373544 their:0.017998730809385816 on:0.015913785378415465 its:0.01573890015003715 great:0.014089516170454243 such:0.01330262146787184 my:0.012803733862108322 In:0.012359886170316865 full:0.00920094653919135 tbe:0.007921643187866907 :0.25197859389876387 +no:0.1705556525033274 a:0.12170713663241911 and:0.06895634411555224 or:0.06838603332284303 much:0.06425608246343041 the:0.06007874889998712 is:0.05918559454660769 any:0.03869966001787804 not:0.03416369901403581 far:0.03177824595299452 was:0.02883110908547855 be:0.028269665718976968 for:0.026672414963060404 of:0.02533224743517338 with:0.02447108602461357 are:0.024247529746432003 little:0.023213031953403802 have:0.018641362407691087 still:0.017553395573446665 :0.06400095962264817 +or:0.1712176768944166 for:0.12234158801597374 of:0.09243385538824818 and:0.07655349179636112 the:0.0678606326840902 about:0.06591818023146113 in:0.043424966976289316 at:0.03898219033840659 a:0.03133987782508205 than:0.031247377994579672 to:0.029306817022553854 least:0.028398486755904916 nearly:0.021449195478808553 past:0.021045868539264788 within:0.02017898504526185 by:0.019028922542412688 last:0.01780874498532366 only:0.017407500704655198 with:0.015608305067839674 :0.0674473357130662 +a:0.42347331265287425 of:0.12929724336097587 the:0.05136832844887416 with:0.04239267654884836 and:0.032372180301694566 make:0.026764903264187574 A:0.026183488931912812 as:0.02482993353678192 in:0.022768784528754932 for:0.020534779409634177 is:0.020179264999204045 no:0.018323169100427195 very:0.018018844942218663 that:0.017782876307375597 some:0.014360935353271246 are:0.013406547892974139 by:0.012006198558008396 so:0.011926954556107589 to:0.011896732264096769 :0.06111284504177772 +the:0.14749836954506126 of:0.09154933537057022 and:0.06337307408307813 a:0.04910970259171302 to:0.04685202005935509 was:0.024955363471651667 be:0.02434688221821328 in:0.019777228193141906 is:0.019734182520719963 his:0.01650123437459838 Mr.:0.015818858562251698 are:0.013108043259205273 not:0.012518472196002403 by:0.012117438720010651 with:0.011611762166834991 been:0.011551125429232954 at:0.011420562773708464 he:0.01130648508471511 I:0.010911273989111623 :0.3849385853908239 +accrue:0.10623507074077958 and:0.07643271010225322 called:0.03578711965939021 made:0.03425367792249222 effect:0.028454915041906646 look:0.025749495033846867 depend:0.025651663180947217 that:0.021479941802114773 imposed:0.019250369616348746 depends:0.016558016664684427 out:0.015845750010743495 put:0.015626930328184588 but:0.015380038300556318 served:0.015167977149681383 is:0.014966653805629029 down:0.014294090575847502 based:0.01425970970606664 rely:0.013788722633243352 enter:0.013728944178937375 :0.4760882035463464 +the:0.06874036066681696 and:0.05405021663726757 of:0.040661435983585494 to:0.04019606019396586 a:0.024250953069630727 Havre:0.017788989202516366 said:0.01690157715756905 crepe:0.01580727036754461 an:0.013435821183946836 was:0.01304696939947775 he:0.011541013507887863 his:0.011351511309719028 be:0.010880902372261816 I:0.010398222069996589 or:0.010237628011683651 in:0.009914763687126791 :0.009399311519032123 Mr.:0.009394145953052766 .:0.008666204862642878 :0.6023366428442752 +of:0.3097016309555185 to:0.08680670712367283 in:0.07559989356245923 and:0.07142880325241567 that:0.07007140789345268 for:0.04476451042821487 by:0.04190352661751881 as:0.034938092048899604 with:0.02722680518749711 all:0.024984381761379067 from:0.01898354284768767 which:0.01857693794320033 In:0.017229926529812013 at:0.013525874969536443 when:0.01192967305462312 on:0.010383275995156729 but:0.00914885227364132 than:0.008471015370649287 have:0.008423284026655231 :0.09490185815800949 +and:0.10964609943189377 demand:0.0334224056293831 candidate:0.02567401298950785 but:0.021942296343555157 time:0.021106112398659588 it:0.020985408796734478 that:0.020762707707387733 used:0.02046151943832418 vote:0.016812885896805716 them:0.01576669122201191 one:0.015148509308794486 here:0.013263137830939447 up:0.013171101184277932 made:0.012806208792693232 sold:0.01238964078482495 men:0.012189972387477103 paid:0.011963338227914662 market:0.010994421173565624 place:0.01084100640288374 :0.5796525240523653 +and:0.07359963406644195 be:0.052667135004264946 to:0.04483536256874564 of:0.043448293679263235 the:0.03579172892628988 in:0.028005289969665195 was:0.026700397492138477 is:0.024892551934152005 re-:0.024162182625676702 he:0.024086629517294657 are:0.02098604388819216 from:0.020307931541148256 a:0.018606881911690538 or:0.018077853608073062 for:0.017195224169077532 been:0.01615904189338184 I:0.015254891559368164 :0.015184018660626356 which:0.015016145996292442 :0.464022760988217 +time:0.024044079315945776 more:0.02250759969609473 in:0.015034080274835536 men:0.013449980994794117 man:0.013303950295097481 him:0.012156280208774496 out:0.011929047507013044 large:0.009959652838385593 it:0.009922564912214537 one:0.009699764484615655 long:0.009423761785936456 life:0.009216269932497334 rank:0.009006764187224809 work:0.008794813307606201 good:0.008595265198069987 money:0.008227963216061361 hundred:0.007645191929169396 and:0.007589317666639554 up:0.0074512515774190205 :0.7810424006716049 +the:0.20542919837978502 a:0.2006279926495798 last:0.14678109368650932 this:0.07974211343062967 one:0.05331001712658916 next:0.05049634414043674 every:0.041767034382478384 per:0.03962435902299666 each:0.02193002740055894 past:0.020285801772090287 coming:0.015988244329801938 fiscal:0.014687948015562518 previous:0.013691046227560134 first:0.011422713490497833 present:0.011097512936979748 whole:0.008524827371468171 that:0.008430825367570952 ensuing:0.008279562480515874 tho:0.00733514053150322 :0.039548197256885645 +and:0.03868242960999506 as:0.031124813427855922 went:0.02352509775927722 him:0.02196555539050794 them:0.018760608639018784 up:0.017985449426794205 is:0.017894175620344187 go:0.017174904667157563 able:0.016756848979943888 going:0.014481672239490295 it:0.014128375989346808 was:0.013277058274565138 time:0.013249953793837373 not:0.012469887553778763 began:0.012465717758716884 way:0.012105610030480113 back:0.012090864562211581 right:0.011941707822828511 amounted:0.011564315359310868 :0.667354953094539 +the:0.154189851327701 of:0.12417167505080556 for:0.11152120781730708 and:0.06288548469771699 in:0.04008767581142222 a:0.036768954900651005 to:0.03086929327024028 all:0.019395629097528806 by:0.014100887093659413 than:0.012879190424068846 about:0.01245876980397487 more:0.011839485369238024 be:0.011190182211892805 that:0.010342370186744146 In:0.009982191043066784 or:0.009920926881338448 are:0.009458560144485262 was:0.00915465145676431 as:0.008972718016189651 :0.2988102953952045 +the:0.15412792167387435 of:0.10789567809504626 and:0.05734095476259966 a:0.03667498568822702 Mr.:0.02653794373680003 to:0.02206954110056198 The:0.020435210766628655 in:0.01938072586739012 that:0.013490375310674842 his:0.012278088895466562 :0.012005717244805552 for:0.011755979533062982 their:0.010166334025212144 by:0.01001135477730392 or:0.009839580477185098 tho:0.009663483968845532 .:0.009647733202313052 Mrs.:0.007902627684581071 as:0.00788842986291276 :0.4398873333265084 +is:0.15630619422208383 have:0.12038489507431525 had:0.11035413821746884 was:0.0760195941969005 has:0.06910160304620752 that:0.06655696753594725 and:0.05811377401567809 be:0.04381787079777488 made:0.02953677303860371 but:0.022880509952786128 make:0.02277295953975014 Is:0.022085045979109545 in:0.01860935180241428 been:0.0177154693031732 with:0.01701551166583861 of:0.015975062153058064 are:0.014654297223878877 for:0.013762236124030856 were:0.009692329429265574 :0.09364541668171486 +the:0.13390273623801158 of:0.12188475613735451 to:0.1095419963334286 in:0.07536819327950954 at:0.0657824587103791 a:0.049197796531307715 on:0.03807803817899056 and:0.0376112403532131 that:0.018320336266817765 In:0.018146883041769292 with:0.018144003091529266 an:0.017307498953455833 by:0.016771235006680738 from:0.014846833507420788 or:0.014089647870808603 for:0.011686723582934346 The:0.011548278504346789 :0.01056898784722258 as:0.01012538714465647 :0.20607696942016282 +of:0.22308101742924621 and:0.0943671319949451 to:0.08667019192744671 that:0.05167908039068089 in:0.048961022026034605 with:0.04809849682109005 for:0.04612383091727072 all:0.04571503323907794 is:0.041792839887475564 by:0.03806809776723055 was:0.02258843434561187 be:0.02184709497888328 on:0.021188369924527033 from:0.020657022902877367 as:0.017823795362796536 but:0.017729798132533725 are:0.016639385751658894 upon:0.013494909146264058 at:0.011712082944474452 :0.11076236410987444 +:0.10942167277574869 it.:0.028932233121172005 them.:0.016655576837764204 us.:0.012812654092125633 country.:0.009976673837421207 day.:0.009070230073178925 and:0.008959786453000905 time.:0.00839244880223175 him.:0.008374483987437589 people.:0.008280518065416511 that:0.007461608257982437 ?:0.006193670428408417 way.:0.00569167833856873 world.:0.0056252532647056075 all.:0.00551507766519204 one.:0.005443936489102531 year.:0.005053155460788979 men.:0.00501133574539057 out.:0.004822579671463474 :0.7273054266328998 +of:0.3269904311242785 in:0.10746928914903069 to:0.0818553456317649 for:0.0556794834209862 and:0.049586871732085855 by:0.044524215429157986 that:0.040688114467349615 on:0.035611161101516235 with:0.030172114821442785 from:0.029306962816217617 all:0.028265305051962578 In:0.024996142680268733 upon:0.01550779154701252 as:0.011782162643259703 into:0.009589530684811609 at:0.00919509333202003 through:0.00783432296147681 or:0.00722089773283884 which:0.00704164096528137 :0.07568312270723743 +the:0.16883506074108198 of:0.10345999980581193 and:0.07765091647747123 Mr.:0.042646070294986925 a:0.03676854853394007 to:0.02730423700154303 The:0.023555615107356022 .:0.020409359832543682 by:0.018024363299732695 in:0.013897353732280127 for:0.01331089079449869 with:0.011100144844755954 that:0.010788179786794411 Mrs.:0.010587736569899649 or:0.010484845999064638 tho:0.010440233278329509 :0.009960897908832863 their:0.009790656798233792 his:0.00974718170240166 :0.37023770749044116 +the:0.15930234103476537 south:0.14916617612565322 north:0.12747015941821727 east:0.11497653682237818 west:0.10139947809509035 one:0.048792612627628046 other:0.04050218611816578 either:0.025502936103615932 a:0.022473503672407975 each:0.022108776560771096 opposite:0.020547929304717542 out-:0.013104247432932122 this:0.012527971499664897 cast:0.012459434028953368 and:0.012228690772812151 tho:0.011236060547429408 northerly:0.011218669246376186 right:0.010764144905735063 left:0.00911543234938189 :0.07410271333330416 +of:0.2582759880028807 to:0.09453326722047363 in:0.08616341740641302 at:0.06210778137772781 on:0.05455216950397593 and:0.04366882362001418 by:0.04355913397414548 for:0.038908466409515154 with:0.035918379345675384 from:0.03274448874965952 that:0.02574990490828225 In:0.020977212707183366 is:0.016494069331885127 all:0.012574153197841043 as:0.01159246492222977 was:0.011119442855885134 upon:0.008295576594522834 into:0.00602048817030254 before:0.005889080652914771 :0.12985569104847236 +and:0.07181562702745725 together:0.06672214896410926 connected:0.05460722541492519 connection:0.053485248068146786 accordance:0.040816432970329504 comply:0.022327715315442986 acquainted:0.01991331996883064 compared:0.01902004432375884 contact:0.016949822974841922 familiar:0.016791563233682194 up:0.016271038698657696 do:0.015355480362757417 interfere:0.014875808889703945 charged:0.014646284015101253 pleased:0.013610051164447858 him:0.01274062267734275 but:0.012200014478196207 satisfied:0.011962054640116513 it:0.011810815262474694 :0.4930786815496771 +in:0.10832172902021678 and:0.08710889013985348 for:0.07696727237049468 of:0.07343647745351742 was:0.07300710675291405 is:0.06339721077643475 to:0.04857362445625515 with:0.039752954665441986 In:0.034736843239486 be:0.03462778122032867 or:0.0343283165113265 by:0.032815596420427 that:0.031198531630449576 are:0.028309161733009906 have:0.028285809674589574 had:0.026298579009913108 at:0.02536265438370231 from:0.0188865153699631 were:0.018441116373308062 :0.11514382879836789 +of:0.17368732310877685 and:0.10350461499305377 that:0.08149350199435433 if:0.08094649677088332 any:0.05024142739078283 If:0.04518066381401729 for:0.03673234374051456 all:0.03338691340280224 to:0.033101564085025625 in:0.030935389615992345 or:0.022363629538568068 but:0.020247054565839747 when:0.019680450858761404 by:0.0178332557252651 as:0.017053407596909768 which:0.015473962498837254 with:0.01546494010543193 no:0.014259224984495002 unless:0.014173397622559961 :0.1732404375871286 +the:0.2339709648342366 and:0.09819502225603854 a:0.07731000600702806 of:0.06791805467288248 to:0.04628027288915852 in:0.01874655329910093 that:0.01648294004827129 The:0.015663839924142355 be-:0.014386996495629913 by:0.013655756344282344 tho:0.013571685822990903 as:0.01348708196420075 from:0.011663868708871225 with:0.0108927699436439 is:0.010775305803613914 at:0.0105505237282573 on:0.010382318724535279 was:0.010264948066170195 for:0.009946709910365843 :0.2948543805565796 +and:0.1228572739260035 the:0.09139556117957484 a:0.07185463226542632 to:0.05208037382110927 his:0.03248371020466374 I:0.030459305352800038 her:0.02876023938777476 he:0.02859827574920254 one:0.025505545045763803 we:0.025325339270638764 not:0.020224490294850683 will:0.019177550860819747 that:0.018884190771033628 they:0.01875465833450022 so:0.01741066394884319 of:0.017098182119847195 had:0.016470882141675608 who:0.014049359907415883 or:0.012621072257175596 :0.33498869316088065 +the:0.3327281145736313 of:0.250270203611488 on:0.11026380176873449 in:0.05695811443712837 and:0.022790435430009783 for:0.01576814383025274 tho:0.01468276678230056 with:0.012615643912061474 this:0.012497917867246182 from:0.011239479255528623 by:0.011219913182672563 The:0.010673289236515686 In:0.010583287639020925 to:0.010116741995343997 such:0.00782442578227586 all:0.007659533112368964 tbe:0.006352868338818821 said:0.006117259627099662 at:0.005927103463659476 :0.08271095615384251 +to:0.45765841763445364 will:0.09487946427693392 would:0.06462575679667656 not:0.04668751733945338 can:0.04597198127964031 and:0.02883299565443991 I:0.02708898625752064 may:0.02675458343054888 could:0.022524468018835574 the:0.02153074051043886 should:0.020487591420726398 cannot:0.01739756594752212 we:0.016295288154778178 must:0.01576495897541308 they:0.015210499676711045 you:0.013779545952841065 To:0.013400099526952687 that:0.012835487459587583 shall:0.011398321284242686 :0.025875730402283494 +the:0.1279423587487566 and:0.11257683110358575 of:0.11149852684436509 a:0.04513429125838895 to:0.02646470703096549 that:0.026087662557187866 or:0.023063161385600675 in:0.019041000245065 be:0.018171501678999523 The:0.01755300073533841 as:0.017266452141052054 by:0.013592269047442764 for:0.013105331176484715 :0.012897915284547683 which:0.012881443035745533 Mr.:0.012154637892001389 he:0.011615768737381352 was:0.01129729172868369 are:0.010585491423348987 :0.3560703579450585 +on:0.1774124935414674 of:0.15798554608536072 in:0.12467533231233648 to:0.10744013018085241 at:0.07144883035302478 from:0.05189755397013744 for:0.03715934181508553 In:0.035450498209804664 and:0.029163557050046574 with:0.02890827647205351 upon:0.021844055148397303 into:0.017239671491673547 by:0.016516448299501264 that:0.013580143406518735 through:0.013566940121430648 over:0.012377296728539922 is:0.011191015896735157 all:0.009715202442843612 about:0.00898078476830992 :0.05244688170588039 +away:0.08331196289086645 and:0.06396134416299448 taken:0.04912757800235888 come:0.03636033623397005 came:0.034110026941570414 him:0.02915963543614699 them:0.02878810099998242 it:0.02416512984801405 received:0.020594613333940207 out:0.0197496848569153 up:0.016576255157467388 made:0.015840376692900403 down:0.01572283274846614 derived:0.015263025094202326 brought:0.013251915498618745 back:0.012993654012804157 heard:0.012612675033110731 years:0.012423458281480065 differ:0.011890075846036815 :0.483097318928154 +and:0.10828120911665538 to:0.10199166881556457 that:0.0901942801044014 will:0.08781132121826518 would:0.07763493907431228 which:0.06354641796744326 when:0.04071286744081371 but:0.03913726430749366 should:0.032667865392043756 as:0.022983892475818044 for:0.02163059327602377 may:0.020330745677834848 t:0.017799750076327378 if:0.017400199052067657 not:0.015950488082515063 had:0.014788808421183389 shall:0.014661980259943808 where:0.014467423764935183 was:0.014313443616745764 :0.1826948418596119 +and:0.09845475308610745 of:0.09399523689248372 the:0.08961995315040014 a:0.08332181487519552 be:0.07577979645059213 is:0.061442533505558866 much:0.05055771245678632 was:0.04560385763917402 to:0.04194981138346424 are:0.04009754703154195 had:0.03268250799085736 no:0.03252553692373494 in:0.026533193435763158 have:0.02564449614496834 for:0.023450077777808047 been:0.02094598246584256 not:0.020487049810099165 were:0.01766342096260789 far:0.016648493071995746 :0.10159622494501847 +is:0.3568260102859873 are:0.2982225386850311 Is:0.054283226535915656 was:0.0464974617799647 and:0.04158310691240833 am:0.02011877061340505 be:0.020108070615550484 were:0.01816766244524458 has:0.013809548804312956 but:0.013391136965362755 not:0.011453773037966648 have:0.010582565539353486 arc:0.008868085340624868 aro:0.00862992299537047 he:0.007578400216456254 it:0.006827413224177952 being:0.006319292964396437 I:0.005914233226445949 we:0.0059030733673213235 :0.04391570644470365 +and:0.10734071886908154 is:0.10548931182231899 so:0.09114347345646515 are:0.07215814918217957 too:0.05176082011557488 was:0.045030365018546153 have:0.041224982842474465 very:0.036917067765329846 a:0.035015464347121675 I:0.03295920245738674 be:0.03095929658506891 the:0.02769730117015385 has:0.02273608906907074 but:0.02124640011714977 Is:0.019454242453105317 not:0.01938973300096497 were:0.01829683254455475 had:0.017971205460867286 as:0.017755758512926434 :0.18445358520965896 +be:0.11133387468586199 was:0.0906522714647512 have:0.08734448151583632 he:0.08167386669249954 so:0.08139562615024307 has:0.061096378153737814 had:0.054857602454322654 is:0.05454762680006903 I:0.0492775676749169 and:0.04323906813529821 been:0.03326946563949903 a:0.031398104230589356 He:0.027566899474295185 they:0.01994702981001479 the:0.01936923150106386 also:0.018569485055748184 we:0.015077300017402283 were:0.015064974914818906 not:0.01468923835138685 :0.08862990727764483 +city:0.009149733315936463 hundred:0.00817702571773849 State:0.007782031902205355 1:0.0076909728814643615 John:0.007646353244578503 ;:0.007580276264173407 men:0.006981908717842585 wife:0.006935325382040948 gold:0.006777596566127831 day:0.006347259207071586 William:0.006122721503177279 .:0.0058897355814606514 Robert:0.005294913990672766 feet,:0.005231075857840685 James:0.005224584657620171 street:0.005149597233944284 up:0.005141220688399126 feet:0.004770881832513319 Joseph:0.004685313333377391 :0.8764214721218148 +one:0.1028303141280697 part:0.05963429477052991 out:0.04766456937681193 some:0.031418679026461914 members:0.030764490253327767 side:0.029940657362655835 portion:0.022063658796890564 office:0.020457735219956013 member:0.019726706386316174 end:0.019666887540649894 tion:0.018667441728710307 parts:0.016814747270460957 people:0.014112771422418794 all:0.014072739582212475 any:0.013183573287639892 One:0.013083578354183906 that:0.013024335602903442 account:0.012482348155001894 many:0.012077825070275192 :0.48731264666452345 +to:0.37250559436597236 and:0.09516024536195604 a:0.0540317610538296 not:0.048800907926189074 we:0.03918495604639301 will:0.028206268637346123 I:0.025628738836418415 would:0.023133786414988738 they:0.022031972476893674 you:0.01708669151242517 the:0.016888005923410773 can:0.01579224988084662 who:0.014650572255085278 must:0.01452244863750221 could:0.013054156751829556 may:0.012908131500118769 We:0.0120832946130928 should:0.011812297624362755 or:0.010787249035831533 :0.15073067114550753 +the:0.4071374189315913 and:0.06449181461132415 of:0.02892866618288876 in:0.028670005984162618 The:0.02603617389223924 tho:0.024993820467459137 a:0.023579040051412606 to:0.01755553213771617 on:0.014626070241060114 by:0.013447843485786471 or:0.012794166593089693 tbe:0.012024509152999897 :0.010353482361299817 that:0.009291482237329618 In:0.007938246807075932 from:0.007526799010378873 other:0.007469196869028889 all:0.006409533041696086 for:0.00626887758057738 :0.26945732036088327 +and:0.07895257911471103 was:0.03596317658514438 out:0.024016824392823457 that:0.023672598027062328 placed:0.022844208461019616 work:0.021707439938587154 made:0.020781005318872947 is:0.020224993929329655 up:0.019794182040466738 put:0.018288921183371155 down:0.0171740551508179 interest:0.01663630075189571 point:0.01659978677065351 him:0.016175999448187352 held:0.015562908663841706 Dakota,:0.014616466073415059 place:0.01424333231426501 Minnesota,:0.014067166610364513 it:0.013665465625771424 :0.5740125895993994 +Mr.:0.08398133993277043 Mrs.:0.05987414836459568 .:0.04244172602459687 and:0.03861487879134875 o'clock:0.023490641848475484 C.:0.02344001087506149 John:0.020164115951959695 Dr.:0.018884200066262968 of:0.015526685504420523 W.:0.015333490567761015 J.:0.015261202924270214 to:0.012235666156004145 :0.011292897652006084 I:0.011065833026254444 the:0.010604685409448495 M.:0.009752292030862494 G.:0.009626887363131331 Miss:0.009458606863732956 A.:0.00901478640594048 :0.5589359042410964 +;:0.01458927046758731 it,:0.007973265891266864 him:0.007834970369143835 one:0.007240974664279108 in:0.006989508095588829 and:0.006417396987522371 ,:0.006059091806132192 it:0.006014614548599763 up:0.005812344146302806 out:0.005395853159197619 them,:0.005290532062834904 him,:0.004938420268273817 city:0.004793760033506698 :0.004646491011450349 man:0.004641061555670736 country:0.0046164671969483135 feet:0.0044416267197611185 time,:0.004376787347733258 time:0.004358244018157902 :0.8825693196500423 +and:0.08639863540024097 well:0.05228724792287829 so:0.04264199471156485 far:0.03264640785475413 long:0.032368445957080334 soon:0.02933535400553355 just:0.02860431509675153 much:0.02544325780115676 but:0.02215842209510284 is:0.02214259144064366 it:0.021458515235199614 such:0.01974236826485117 was:0.018391438097319385 him:0.018382880205817628 men:0.01700186282172652 known:0.015183507829255413 them:0.014581544493914703 be:0.013519267885200732 are:0.013107867060483603 :0.47360407582052433 +to:0.31939807083091204 for:0.07389216639276101 of:0.07386863852696489 and:0.04421566575283672 in:0.0426802662695814 as:0.02736129718604785 can:0.02715820847631113 not:0.026994317751963714 with:0.026030570336173318 by:0.02569944161134007 could:0.024769441256210792 at:0.023227295660664178 that:0.02197448630463412 from:0.021574549709310314 or:0.019469655429594883 without:0.013602301088658893 cannot:0.013034771759949802 do:0.012944510798644783 In:0.012582052146628067 :0.14852229271081202 +a:0.16419161510982047 the:0.13575722484221295 to:0.0667722683750731 and:0.066187566312474 his:0.06574890839035974 of:0.053868899962059576 I:0.04528770691076539 her:0.03352689704639134 my:0.023477575266312375 he:0.022738304691812743 for:0.016390872309039566 it:0.016319344162101165 It:0.014196274577183225 their:0.014123564053760484 A:0.012951083872914913 more:0.012135535939264778 our:0.012029770485952433 your:0.011929900023969157 who:0.011343149447191229 :0.20002353822134136 +and:0.07640332418684606 men:0.06484482173015627 I:0.04439865354841061 you:0.037720485626438975 that:0.03376898219960009 he:0.029960603966699244 man:0.02841523132801084 we:0.027928937369817153 so:0.026962038064402408 which:0.025867020785488457 they:0.025757748150835324 it:0.023019236953952155 people:0.018816694124625017 be:0.018067134929016664 then:0.017293504810064128 not:0.016857438737693124 1:0.01567583873470999 him:0.014965564189465635 to:0.014964052496759635 :0.4373126880670082 +the:0.44163643072597636 of:0.10775999573051526 and:0.04770966331088925 a:0.027616158914879594 The:0.027581121082991707 his:0.026145049103682202 tho:0.02557427186164338 to:0.019520403594719356 their:0.01924460813575553 joint:0.019121287772526488 our:0.018264290855429407 between:0.014198602774481001 ar-:0.01217520243353754 tbe:0.011255753501449637 in:0.01105588500510654 her:0.010142109288855266 said:0.009610570729668564 with:0.009306086946077954 my:0.008855798229430443 :0.1322267100023845 +of:0.12649912670574465 and:0.10747477922426114 Mr.:0.05103048844189261 Mrs.:0.04601693327375137 to:0.04420229523596074 by:0.04160877195393157 that:0.025668717607642385 said:0.01765222611016786 with:0.016587976426947662 Sir:0.016576358487113765 from:0.014451851718709212 as:0.013770550923670662 :0.010585801940093054 Dr.:0.009207421037517887 St.:0.008510395949023104 for:0.008377263250793411 Rev.:0.007673289406015024 the:0.006218278874173225 or:0.005812720877300361 :0.4210747525552903 +and:0.08860811958375338 is:0.038508008340779325 was:0.03281045251098213 feet:0.030620149171339803 that:0.0277142283472025 as:0.0252969503541424 be:0.024411889143965533 it:0.023738678847725753 recorded:0.020653701858191494 are:0.02039109417278193 them:0.019973264717441583 held:0.01799297279663857 inches:0.017900762715716473 made:0.0177083127266388 time:0.016634446386323123 up:0.016250175141843775 used:0.015916520551046254 out:0.015568257782382366 all:0.014819029991950373 :0.5134829848591544 +of:0.02308362459049458 and:0.01492150577797156 -:0.014781747859936085 re-:0.014378411221237512 .:0.013102666693025006 the:0.011994689450657786 a:0.010427127439398769 :0.0098578056783935 to:0.006444768678090952 ad-:0.005383452905350501 or:0.005231169027291224 I:0.004876520660907709 en-:0.004803738336076282 of-:0.004727960089076313 i:0.004424951272346408 an:0.004408168808897539 or-:0.004170894604284423 New:0.0040667059119369325 in-:0.003775302573207637 :0.8341387884214193 +and:0.03868242960999506 as:0.031124813427855922 went:0.02352509775927722 him:0.02196555539050794 them:0.018760608639018784 up:0.017985449426794205 is:0.017894175620344187 go:0.017174904667157563 able:0.016756848979943888 going:0.014481672239490295 it:0.014128375989346808 was:0.013277058274565138 time:0.013249953793837373 not:0.012469887553778763 began:0.012465717758716884 way:0.012105610030480113 back:0.012090864562211581 right:0.011941707822828511 amounted:0.011564315359310868 :0.667354953094539 +the:0.20897423731144116 of:0.20499218764335073 Of:0.08295072043717838 a:0.05722266509731151 his:0.04706203582911629 this:0.03680931419837825 their:0.03581689480455344 in:0.03178784758196852 no:0.016025285390918124 its:0.015583060823302191 and:0.015192484654020219 my:0.01370238962861385 any:0.013653462468696597 for:0.013429978819982638 our:0.01210142781603489 such:0.0119653220726587 as:0.011503032435906781 that:0.009712772090464287 The:0.008855041982408635 :0.15165983891369478 +per-:0.48813575002316933 per­:0.17270005522259324 per¬:0.1300362931986344 a:0.01924523077590295 the:0.017582248105628806 his:0.01708451879642024 de-:0.013988305498674868 more:0.01238956023735968 their:0.011108763019581832 pro-:0.010227559097214489 ar-:0.00922900637395109 and:0.00846342978770987 ex-:0.006661657821654893 her:0.006412040659762888 re-:0.005780712685470489 large:0.004994556933010982 con-:0.004987341330246549 two:0.004887984430020904 ar¬:0.004517922573542 :0.05056706342945048 +virtue:0.062060494787377685 out:0.05417899169104244 part:0.03289673107629515 one:0.02969369892462812 quarter:0.027015883171169475 favor:0.01993830018372674 result:0.019463829004704194 guilty:0.018891084377354095 means:0.018499162894926688 end:0.018170939082736048 that:0.018121271122199262 construction:0.01726217741616459 presence:0.017003995482744873 tion:0.01673652166540914 case:0.01640819963257697 side:0.016055927605250184 erection:0.015381239457214257 account:0.015287601389485416 hands:0.015156055434805247 :0.5507778956001894 +and:0.15027389267578276 so:0.056116416747256176 fact:0.054558252316429856 said:0.04983964633247871 is:0.04289665023891957 say:0.032308034710889943 stated:0.029156951820454854 believe:0.0228958712742194 know:0.021781994952123147 of:0.021403759779101247 was:0.020981386930740076 as:0.020299187743042787 but:0.01969486179947286 says:0.019686490734353412 all:0.015117533705444126 me:0.014310717927905057 found:0.014111401045058258 think:0.012844904157373889 stating:0.011744964424204562 :0.3689770806847493 +of:0.3304965436645626 a:0.0722275377407593 and:0.0699788908313536 the:0.05333384872562581 with:0.04431755198886548 their:0.0291733857815622 to:0.026427162547001563 for:0.022916180903642537 his:0.02228994052934797 as:0.021699295087921112 in:0.021485729189658267 by:0.019850788784649784 her:0.011864919672458188 on:0.011783012118061814 our:0.01108336621090225 above:0.009922732077773137 public:0.009846499627372638 same:0.009035020788529677 that:0.008817040201253255 :0.19245055352869878 +this:0.2756328120620546 the:0.2036936971330194 a:0.10638866040123646 that:0.06172642415886552 This:0.05166823855543609 any:0.03782220944030352 The:0.03573875784004175 every:0.026915867812952198 same:0.019601483627679814 and:0.014269262593673471 what:0.013053418449350145 no:0.012814580941008147 his:0.012163877818450276 one:0.012116583946927969 tho:0.011129971360642666 some:0.010617947046085064 first:0.007653700180733583 of:0.007646836494648775 its:0.007550083091342828 :0.07079558704554778 +the:0.36675106291104465 a:0.2964433539491221 The:0.03220304495263651 A:0.02281341281701582 of:0.022395183945211644 tho:0.021494159726115 our:0.020710125459643344 his:0.019800988623520525 in:0.017711327299635125 any:0.01727061437067179 this:0.014118876915955989 their:0.011470353765192813 every:0.010915445834436778 her:0.010764861376550553 other:0.010226759448850977 old:0.00966330850975322 tbe:0.00861455830521246 some:0.008098075114783101 two:0.007794749056995386 :0.06973973761765222 +an:0.2899549632312184 the:0.23357687975339858 most:0.07517497388397595 a:0.0730826838979699 very:0.050040612539822664 and:0.03328401506791699 An:0.0320231684062124 his:0.030670590313617328 The:0.023870436910696718 more:0.018681555808826255 of:0.018617721439422388 this:0.01539165411429813 tho:0.01167959164413372 her:0.011577930652991798 its:0.010227489709770565 their:0.008244654278507573 in:0.008146057802797332 some:0.0074850890282111985 that:0.007160944908363345 :0.040108986607848736 +of:0.2892970507301608 to:0.10826395028684066 and:0.07069443529061718 that:0.06631653885121545 in:0.06434236243146348 for:0.04443386773381398 all:0.039445571857949856 by:0.03893610492204775 with:0.036808686789105045 as:0.02306857798438148 under:0.0217625966641402 from:0.015526648620184528 which:0.012636353954780919 when:0.01155980704900997 In:0.011142645852403356 on:0.01070039854327837 upon:0.010357440830776376 at:0.008398959145085778 is:0.0079109234666792 :0.10739707899606553 +he:0.21766810230110514 I:0.10026214141561207 they:0.07400496842625917 who:0.06892300557703042 and:0.05719048528546015 she:0.04858660588834127 it:0.040981961466714116 He:0.03797223402202995 we:0.02791021331651068 which:0.02481025089021995 have:0.02160313484695758 that:0.019714467398759185 It:0.018276512193317166 ho:0.016652006281028857 be:0.014889099050791107 They:0.01396393712500579 She:0.012216567313282219 1:0.011711213962429756 lie:0.011325977330012173 :0.16033711590913327 +the:0.33506062363972466 of:0.1004903427871278 and:0.0509187885570891 his:0.03029902055291765 a:0.029867151482411886 in:0.027883187760375017 their:0.0204960755249126 tho:0.017796706050511014 to:0.01688177001394485 The:0.01422896420064306 for:0.013163630154283791 other:0.012955512955552508 or:0.011929730859551306 an:0.009644520101622743 this:0.009216984308594744 these:0.00884220317186354 tbe:0.00854359935978446 its:0.008010719403256141 our:0.007594181533855685 :0.2651762875819774 +of:0.1751333245151183 in:0.10493218450458308 to:0.10000473530371845 with:0.09014812524568144 on:0.061553802730609515 by:0.053873241181892115 and:0.04760576044414614 from:0.03343747574360704 upon:0.028077907744877676 for:0.027487544460866452 that:0.02715489087927592 In:0.022462833181058506 told:0.019456849970763728 made:0.016210155789713163 at:0.016049371726544862 is:0.012787532332956117 was:0.009981860973479832 make:0.009950106183020627 have:0.009646232148723946 :0.13304606493936308 +be:0.19893034754875857 was:0.16780045691270576 been:0.08756368644030703 is:0.07202324008926472 were:0.05227164452820087 and:0.04823244466227304 are:0.04204504284729959 being:0.029630267423976113 it:0.02781573804923102 feet:0.024375765823431643 as:0.022265908386903663 bo:0.018248163653259767 get:0.01623473529026803 all:0.01540337720631873 them:0.012866789754237242 so:0.012373246591427208 too:0.012253539011551068 got:0.011742734769462216 Is:0.011466591646582737 :0.11545627936454096 +and:0.07701675128662025 is:0.03594666040217707 was:0.031475232342959 so:0.0252644231680843 wondered:0.019289920156562713 but:0.01886248801191906 arrived:0.018149680398517526 held:0.017990842975786184 it:0.017324299162031206 him:0.014915846392598388 be:0.013307277391991348 made:0.01277783644495074 looked:0.012577444721956169 look:0.012103715421717036 are:0.011918389769490874 that:0.011775066469058093 up:0.011286995913805564 out:0.010311311869951986 not:0.01023035788342364 :0.6164754598163988 +the:0.39749834532651884 a:0.07520030034269234 and:0.05540858759821703 The:0.03273515726769502 tho:0.030061875542463562 of:0.020144331424922633 tbe:0.014929647509541684 in:0.014268129706664795 or:0.013333166761078447 .:0.013287381914101323 an:0.009000188755386574 to:0.00880680429595084 :0.007943763822197133 Mr.:0.00773879605474787 by:0.007328417831573476 as:0.005922572098978465 for:0.0047526933692942485 that:0.004736121968310169 on:0.004594595720579333 :0.2713091226890862 +the:0.16807735899698817 of:0.10541662057906837 and:0.05138367848570702 a:0.04141865232648221 to:0.0385989743764065 in:0.026264864977736738 was:0.019530675665220657 his:0.018900421021236905 be:0.017373825006196972 their:0.015767721170721456 for:0.01557246589796783 with:0.014071419046630446 is:0.012922913111931644 at:0.012690452250034052 are:0.010702713108721902 .:0.010158075558988393 Mr.:0.009672788574483367 tho:0.009612591781990074 were:0.009549306361446321 :0.391314481702041 +of:0.09129790931378902 the:0.07369883040827747 and:0.047842263382354346 in:0.04189055351593407 to:0.04045875475680249 a:0.03542341257202578 be:0.02020462051672066 for:0.01979292654746225 was:0.01760256398103379 at:0.017380150555488715 is:0.014984483003968216 with:0.014047653760730413 by:0.01374644383819499 :0.012670486581795598 In:0.01200961464556976 or:0.011563835749786333 from:0.011391516893522809 are:0.011273104484969465 that:0.010755276030689069 :0.4809655994608848 +the:0.09350479201808454 of:0.08454482206392173 and:0.057855382455151746 a:0.03293664325161582 at:0.026306177291865903 to:0.023651904593531222 .:0.02070921481271388 :0.015091824894013946 from:0.013299349970859346 in:0.012031718030819323 by:0.011730746411839214 The:0.010761418251773593 A:0.01042414277317799 W.:0.010398803663644781 W:0.010142070215389579 E.:0.007907704362092007 with:0.007754031181922863 about:0.007645947149775634 for:0.007263146855410357 :0.5350401597523965 +and:0.11203614284734381 made:0.029480560291083903 necessary:0.027231632327903786 provide:0.01978786821063526 him:0.018624150941585572 time:0.017844902254185023 but:0.01736032991925495 pay:0.01712283223509279 responsible:0.01655246417854943 work:0.01573375727996718 used:0.015721729148453864 that:0.015344008200088246 providing:0.015123591452644664 or:0.014918878594106077 it:0.014272018550925738 vote:0.014240496926603478 out:0.013886758983508773 demand:0.013625570335128902 ready:0.01288626098417059 :0.5772060463387679 +and:0.060504007519343386 in:0.04140520799149523 do:0.03494496822593523 of:0.02678159049605277 for:0.024946000997730262 I:0.022722307434920538 it:0.021386881944592602 is:0.018533630238302113 was:0.016465974296948908 which:0.016218590967701896 that:0.015837644885440004 all:0.013929431348851253 from:0.013770966157097978 to:0.013317788777242053 but:0.011813814658794464 tion:0.01168621311131084 are:0.010984646326365173 sale:0.010477774802480598 :0.010141373346644824 :0.6031311864727499 +the:0.1188820336400701 of:0.09417807580289607 and:0.07538655060191521 to:0.07033736191896665 a:0.03563690792199739 be:0.024972453990847923 or:0.024899509093903295 his:0.02076876619939878 on:0.019133014026715682 for:0.018639381490253078 was:0.017867552910372453 is:0.017807661408110517 their:0.017462364443265786 in:0.01598369068848567 are:0.014679784473706273 as:0.013747477737000588 that:0.012733139584454278 re-:0.012071296257421588 much:0.011822265381379305 :0.3619907124288394 +the:0.11919516938815296 of:0.07230453158552728 and:0.05781056740443249 a:0.043018564803886335 to:0.031305092790907506 in:0.020848713353460488 at:0.014270110001066288 .:0.012526810245749479 :0.012413283442322082 for:0.011719122709941797 by:0.010808400946589808 or:0.010404172990115616 The:0.01003576004804544 with:0.009811868184449042 tho:0.009295902015355835 was:0.008924239095331684 that:0.008672304223433876 is:0.0085591147338948 be:0.008335143826716943 :0.5187411282106204 +and:0.22985706888308047 her:0.10602536267557792 years:0.07558546208741532 his:0.0454519953990027 or:0.040696527959566985 days:0.03692854313100167 the:0.036736191808804074 to:0.030267001923901513 minutes:0.028647579058136828 my:0.021133136032646133 weeks:0.019790439847506176 Miss:0.01977817208269248 Mr.:0.018076351223361414 Mrs.:0.01779531454178728 moment:0.01696779747591547 months:0.016292743187662856 their:0.01546248056081026 time:0.015293463390535063 was:0.012677597443741065 :0.19553677128685432 +of:0.19650954532455922 and:0.043834250613093775 in:0.03963203505018449 for:0.02952797659479796 that:0.028770103601405195 on:0.021012354515002173 to:0.020688834328087585 by:0.01754381578970557 upon:0.013789803623932945 from:0.01256011793069006 at:0.012009879345701633 law:0.010887325986415735 with:0.009744341128407897 amount:0.008153009646783697 or:0.007371515549244691 In:0.007097272244920318 one:0.005857290874430787 those:0.0057277519110467984 tion:0.005388861430788377 :0.5028939145108011 +of:0.6027184543588869 in:0.1152920221980869 In:0.03275473333950405 for:0.02522774419555251 to:0.023877191063677052 from:0.017245283631688802 on:0.016605220630600256 by:0.015537419920885791 at:0.014525066279082077 and:0.010283480442358316 the:0.006340794090190886 ot:0.005250664801157727 with:0.004489671846729146 said:0.004387597095068471 ol:0.003702239882892846 about:0.0025117877970150023 after:0.002363782024134966 that:0.00172767291609379 iu:0.0016479258956409043 :0.09251124759075363 +and:0.09756556368541265 was:0.05426276517937397 is:0.03866664491042744 up:0.02568624008661788 it:0.024967480530237875 made:0.021983496168589956 put:0.021728272405609952 placed:0.021433399872469706 that:0.020699896774439272 are:0.01933805732185307 them:0.019230578399337284 him:0.018697869349579923 be:0.017987018805625865 but:0.017054981134282398 were:0.016928399532571015 as:0.01666685808038748 engaged:0.01649642158281899 found:0.01526160066577768 out:0.014987717957962178 :0.49935673755662546 +of:0.16498964159361895 and:0.08548507679677939 the:0.08120908508642309 to:0.0638947796250974 in:0.03436626986957861 at:0.03198301967611037 or:0.03073190417576649 a:0.016005905316105577 from:0.015261588389974417 for:0.013059488331219966 :0.010712033345269502 said:0.010380339297503314 on:0.010073870756912184 as:0.009163940751006032 by:0.00883289488672733 The:0.008133690475938104 with:0.007169187729882523 that:0.007159744655113031 .:0.006924678758628581 :0.3834628604823451 +manner:0.10014154852873941 and:0.04758153569965947 that:0.027548634697924172 way:0.017860480013091023 time:0.013660246230114154 it:0.01211986153900764 all:0.010836767636137537 one:0.010756664322780446 part:0.010728763786470055 district:0.010609221477965584 land:0.010415108137366232 place:0.010399655452080119 esteem:0.009337949673530233 work:0.008993990842538664 now:0.008593781479256013 them:0.008489846330526286 day:0.008448021271808803 money:0.008371952622637733 interest:0.008221632363195723 :0.6558843378951706 +of:0.2226491073024917 to:0.09555852916114789 and:0.0854590682513779 in:0.07387533160785521 on:0.06225612488764892 for:0.0609225414557404 that:0.04743949652005448 by:0.034978218421343105 In:0.03274029174333745 with:0.03025919580665342 from:0.02575656352258238 all:0.019652163325335138 upon:0.01816966436153785 which:0.017815917302104408 at:0.01618921745243058 is:0.015586106935384095 when:0.01501927812614974 but:0.011348250935065132 through:0.010790785278900088 :0.1025341476028601 +the:0.1143813740681367 of:0.10725563490218938 and:0.07013929237617328 a:0.0672759526714516 to:0.03944702605759211 Mr.:0.032280789449834216 in:0.027269198971288964 with:0.021909795963145674 or:0.02061024109820549 that:0.019525534817269843 is:0.014252297178278717 :0.013083784932540853 be:0.012894570222885867 for:0.012197138456365417 by:0.010979979158896813 have:0.010972992252561221 it:0.010656148240659748 was:0.010307594572519506 he:0.010174940486945613 :0.373385714123059 +of:0.27402651329512245 the:0.1357329509651065 a:0.10406958149643095 and:0.06423927743429951 this:0.031916609658019124 to:0.02851309901946968 in:0.022244017799788428 other:0.01366075908816849 for:0.012945975337040349 that:0.011651380380226978 with:0.011566587377304986 by:0.011475853394520208 their:0.01134369880370649 more:0.010448947502379199 his:0.009933610101103862 one:0.009686136328061992 its:0.009271614370852515 The:0.008645155625365965 tho:0.007742396012859427 :0.2098858360101729 +all:0.205483570614922 it:0.04384374910802079 and:0.043630939188751085 went:0.02247349394053098 passed:0.020737662730856622 go:0.02045433468735541 them:0.019899097953210963 looking:0.01986518625231293 of:0.01952143670941725 or:0.019435332489769693 come:0.017731195993283332 turned:0.017156382585844766 spread:0.016524818771792203 get:0.01598400216174963 way:0.014555617134603906 ing:0.014353457713868497 look:0.014032342346509472 bridge:0.013932362918931197 came:0.013465495165616886 :0.4259195215326524 +of:0.09129790931378902 the:0.07369883040827747 and:0.047842263382354346 in:0.04189055351593407 to:0.04045875475680249 a:0.03542341257202578 be:0.02020462051672066 for:0.01979292654746225 was:0.01760256398103379 at:0.017380150555488715 is:0.014984483003968216 with:0.014047653760730413 by:0.01374644383819499 :0.012670486581795598 In:0.01200961464556976 or:0.011563835749786333 from:0.011391516893522809 are:0.011273104484969465 that:0.010755276030689069 :0.4809655994608848 +;:0.018609647724095582 up:0.01517762339515 them,:0.007770843085139402 it,:0.007577317004817694 in:0.007515780039806332 years,:0.007392815747483961 States,:0.007242628500493253 him,:0.006980548210693209 and:0.006708826709574082 here:0.006621983723072575 men:0.006541459580253914 time:0.006136371586258216 him:0.0058963543728981615 :0.005698696591522269 mortgage,:0.005416165417450788 them:0.005367693899494284 county,:0.005336664703716902 ,:0.00523830544223361 time,:0.0051854453947516276 :0.8565848288710941 +of:0.11619101381683422 the:0.08851624871148385 Mr.:0.06946721356876012 and:0.05243394575251539 in:0.04906446815834277 that:0.03743769278973447 The:0.028388611034687917 which:0.023233482066739745 Mrs.:0.02024551652171408 to:0.01968568266101125 for:0.01624178425957255 :0.013938271411685061 such:0.012202281344778966 General:0.0119313560502063 as:0.01191049327668683 by:0.011355639250219023 any:0.011059642611687657 he:0.011010638372379991 said:0.010692699366701556 :0.38399331897425826 +of:0.09129790931378902 the:0.07369883040827747 and:0.047842263382354346 in:0.04189055351593407 to:0.04045875475680249 a:0.03542341257202578 be:0.02020462051672066 for:0.01979292654746225 was:0.01760256398103379 at:0.017380150555488715 is:0.014984483003968216 with:0.014047653760730413 by:0.01374644383819499 :0.012670486581795598 In:0.01200961464556976 or:0.011563835749786333 from:0.011391516893522809 are:0.011273104484969465 that:0.010755276030689069 :0.4809655994608848 +of:0.13114260037607903 and:0.11635778947281995 from:0.09923632847983829 by:0.05950936753679769 is:0.05887159014227564 are:0.05861874470419786 the:0.05027652475940019 with:0.04636819969713957 for:0.04525358665276115 was:0.035449438723753834 as:0.0283495172114626 too:0.023236579532585882 be:0.01999023302238856 very:0.01705138892906057 in:0.016672160230352926 to:0.015944622037555575 without:0.014588846279435864 were:0.012892169090584178 after:0.012808340206467084 :0.13638197291504356 +one:0.1028303141280697 part:0.05963429477052991 out:0.04766456937681193 some:0.031418679026461914 members:0.030764490253327767 side:0.029940657362655835 portion:0.022063658796890564 office:0.020457735219956013 member:0.019726706386316174 end:0.019666887540649894 tion:0.018667441728710307 parts:0.016814747270460957 people:0.014112771422418794 all:0.014072739582212475 any:0.013183573287639892 One:0.013083578354183906 that:0.013024335602903442 account:0.012482348155001894 many:0.012077825070275192 :0.48731264666452345 +Mrs.:0.11210793992453126 of:0.05989711599846184 .:0.0506531399075338 and:0.04269534627127617 Mr.:0.041085545285696995 by:0.031957277132743406 the:0.0318711605100091 Dr.:0.025346004194502482 to:0.023564662157963236 S.:0.02301525769754261 J.:0.017184362208506877 Miss:0.01663773825823073 C.:0.016260499583644405 W.:0.015128116296111294 :0.014814978939254547 John:0.013669457154683247 H.:0.013191378058918209 Rev.:0.012922722998318006 said:0.012798070792742701 :0.4241992266293291 +the:0.18941070485687136 of:0.07390279899818201 and:0.06570082437222247 a:0.058469243590548274 in:0.024856988432496216 to:0.020873147706783023 for:0.018682659686982638 or:0.017866694612114674 that:0.017028564531941848 The:0.014409173905624696 tho:0.013452762362497402 any:0.012264366938919611 their:0.011649091646265465 other:0.010378896202069391 his:0.010181810078543935 by:0.009890952379887743 :0.0098587277099488 at:0.008693303303851414 with:0.008048251693860238 :0.4033810369903888 +to:0.6450013633268546 will:0.06414842089668593 not:0.04808738142340545 would:0.03397464686613942 and:0.026468940934412346 can:0.02210133754801022 could:0.020592187711820864 or:0.015032973528657439 shall:0.013689159774156958 they:0.012978069064927027 we:0.012823194070944512 may:0.012537163340666613 should:0.012180195313224226 cannot:0.010380202668349952 must:0.008477036627322168 I:0.006512142819630318 who:0.004763828737789852 To:0.004390920357844506 We:0.004162555592010204 :0.02069827939714736 +the:0.21575867688104047 a:0.12246845435705285 and:0.08514199128147823 of:0.059643931467392684 to:0.03424794306055087 in:0.02175135871875183 an:0.02040059875688378 with:0.018163411907296787 The:0.017573639882123925 is:0.01469531762827108 for:0.01449247555592738 tho:0.014447881812631545 or:0.01354296964605499 be:0.01233535605831465 Mr.:0.012255448062192609 his:0.011906499580766196 that:0.011677146670457416 their:0.011204148621843803 are:0.010632983384365871 :0.276659766666603 +of:0.2868497044141675 in:0.13000441896633183 to:0.10702516740897479 that:0.060190327362585894 and:0.06005041762770937 by:0.03621571080085327 In:0.03446088612341249 on:0.03442836696915454 from:0.03214210644328956 for:0.024975039587970774 with:0.023038368631375157 as:0.019006083000350848 upon:0.01776255879834314 at:0.01655470202276298 which:0.015595219526224051 all:0.015562709032962436 when:0.011548584067763738 into:0.011519742228201813 under:0.008984024798753102 :0.05308586218881269 +be:0.20101033751840683 was:0.18376374171556403 been:0.09410327104189646 and:0.06329452970657082 were:0.06143616125947947 is:0.05943577860554637 are:0.042500374895121484 he:0.030362431566201366 being:0.024429355407806656 have:0.01603430180890826 had:0.013549551067021767 ever:0.013391889749756247 bo:0.012995268860005365 I:0.011093626949395754 who:0.01080943090007456 they:0.01040701568450626 He:0.010339113193095762 has:0.010209334711450418 also:0.01010282321814092 :0.1197316621410512 +and:0.07509181549710321 as:0.048377730772513304 up:0.03174734764183977 it:0.02974521973049959 addition:0.029052444965490674 according:0.025026137733327552 them:0.02439032081756059 him:0.021141882604111605 entitled:0.02066828821018786 equal:0.019499000932593165 due:0.017818130139896176 amounting:0.016990873158777453 reference:0.01634333593035152 regard:0.015948001651902542 attention:0.015905127313055694 is:0.01586790264329058 known:0.014974628250434574 subject:0.014935219297093917 go:0.014781447838247985 :0.5306951448717223 +of:0.18296671791564378 the:0.1105104386612288 with:0.08516743731944786 and:0.07924083593740218 in:0.05139793278705547 for:0.047708808395701977 a:0.039089010649221684 by:0.034770319252428336 his:0.027857225507517364 their:0.026435053911433012 to:0.024584640311888617 or:0.01974417695626317 such:0.015180660472275698 its:0.01508186939267333 without:0.013697076300191206 that:0.01368433976891191 from:0.012983064066036552 any:0.011899437664789623 some:0.011064390940370348 :0.17593656378951908 +a:0.34103385579014045 the:0.2901846747345538 this:0.07169918114955108 tariff:0.03691302734026393 The:0.02377698755586633 appropriation:0.01890058507289947 tho:0.01811102152163213 no:0.016114623372906447 A:0.01513289476557124 any:0.00980372665220736 his:0.008033629895862175 This:0.007418368819613836 tbe:0.006833258684930997 every:0.006409113535343217 said:0.0062859590011541 one:0.006252719756951427 tax:0.005947882814096578 in:0.005666637592343825 old:0.0052624788623543885 :0.09921937308175724 +the:0.1662676110685911 and:0.13879018867728046 to:0.08768139021125818 of:0.06740407053383599 or:0.05800848957429165 their:0.04456830381531495 any:0.04093271542265615 such:0.04057569186755528 other:0.03542326746995988 he:0.03500503078841316 this:0.029472733758290716 de-:0.02703768741603262 that:0.023479176577891444 no:0.019996022893144047 its:0.019889541712126816 who:0.01978545520402807 not:0.018373095485569837 an:0.017291921943875854 his:0.01600628724101332 :0.09301131833887051 +capi-:0.08544466706832216 men-:0.05743601140939634 and:0.03752013011980008 the:0.031971575491468285 of:0.023126396532974984 to-:0.01161529306557101 a:0.011013260233803848 .:0.010525153511899806 men­:0.010158666235610717 to:0.009145934196960992 :0.0070610877542279385 men¬:0.006491533408796778 Miss:0.0059832508943441 old:0.003980982107099681 on:0.003928351926879352 North:0.003844347890989726 The:0.0037415273574815415 his:0.0037044776150522256 that:0.0036870826129702713 :0.6686202705663502 +was:0.08143222046279959 and:0.06453492442124917 is:0.04612939936113475 are:0.03647066635970136 arrived:0.032981080770383926 be:0.03246572846358224 looked:0.028315464292870973 were:0.02625484088615946 held:0.025148181108685195 them:0.02068051468493061 him:0.018791389117305907 been:0.018257689772940965 sold:0.01710097884292187 aimed:0.016522109788088636 estimated:0.016149522355264755 up:0.01514778083991541 interest:0.01509616740138595 not:0.01489323112948501 made:0.014313708159739641 :0.4583144017814546 +according:0.058213880793198954 and:0.054340549843878753 as:0.04611871038403843 is:0.03177564700024851 went:0.030768794991735574 him:0.02719514895758256 it:0.023615553721947017 them:0.02361049797596154 up:0.021512580401965617 go:0.021206733185427113 was:0.01902422082071513 came:0.0188915241064775 not:0.01720954818973175 down:0.017037918712325188 regard:0.016336256047758298 feet:0.01588977854497556 going:0.015716073787459338 due:0.015443667613102445 way:0.015209866731901887 :0.5098830481895689 +and:0.10679565295880987 was:0.07901755271478068 is:0.0663966674256871 placed:0.04382011640712587 be:0.03631004904039933 that:0.03607318148579851 as:0.031918049047460255 are:0.028857041431648116 up:0.02796478734591177 been:0.025959833244686842 it:0.023170331963907834 were:0.022676398915216226 put:0.020469618609213813 them:0.020222474847459135 made:0.019622060413563226 now:0.01756704876797396 him:0.017273050204178162 but:0.015996844671119767 or:0.01570104345146685 :0.34318819705359266 +and:0.0840859667809021 balance:0.0774712217995304 was:0.04651918241793684 residue:0.03883995909901652 that:0.03397505951972994 one:0.0338729070637448 is:0.029567772634800534 up:0.026871909244377226 are:0.023757549785946873 were:0.02179839245732876 be:0.021447777252458822 interest:0.019504803631586194 payable:0.017444301952496483 week:0.017020156345052932 been:0.01535053476292414 placed:0.015113547472289468 made:0.014312324354039379 work:0.014065612800398829 him:0.013693555802576723 :0.43428746482286307 +to:0.6309070069444398 and:0.09821816350610595 will:0.0388931077515852 not:0.017964469823213577 would:0.013437467971092461 I:0.012775674588212159 you:0.008692254837412487 must:0.008076298183306643 we:0.007507103850850102 To:0.00641445471641436 they:0.006307944711978456 who:0.006006292558184064 should:0.005446097352156832 that:0.005200742893864362 then:0.004879896837704174 can:0.004442652783296876 may:0.00410242339854412 shall:0.00408927318688585 could:0.003633047022993127 :0.11200562708175944 +and:0.07359963406644195 be:0.052667135004264946 to:0.04483536256874564 of:0.043448293679263235 the:0.03579172892628988 in:0.028005289969665195 was:0.026700397492138477 is:0.024892551934152005 re-:0.024162182625676702 he:0.024086629517294657 are:0.02098604388819216 from:0.020307931541148256 a:0.018606881911690538 or:0.018077853608073062 for:0.017195224169077532 been:0.01615904189338184 I:0.015254891559368164 :0.015184018660626356 which:0.015016145996292442 :0.464022760988217 +and:0.05525509902405432 away:0.0407978670569234 them:0.04055373323046555 him:0.039932474602789196 taken:0.034865542380339544 far:0.029080335635151944 miles:0.02461649329135753 us:0.024503260555204284 it:0.02408823268228854 men:0.023820786341898378 suffering:0.022241100447740043 made:0.021984598405438843 come:0.021746403088685345 free:0.020716848002903725 out:0.019832054209444224 people:0.019105114760836543 or:0.018329248835900747 here:0.017114577083300532 derived:0.01643295832445947 :0.4839832720408178 +of:0.09129790931378902 the:0.07369883040827747 and:0.047842263382354346 in:0.04189055351593407 to:0.04045875475680249 a:0.03542341257202578 be:0.02020462051672066 for:0.01979292654746225 was:0.01760256398103379 at:0.017380150555488715 is:0.014984483003968216 with:0.014047653760730413 by:0.01374644383819499 :0.012670486581795598 In:0.01200961464556976 or:0.011563835749786333 from:0.011391516893522809 are:0.011273104484969465 that:0.010755276030689069 :0.4809655994608848 +;:0.03428147930118322 nothing:0.01805607194515132 and:0.016682748784927794 is:0.014164663922179186 it,:0.013503069746787309 them,:0.011400095832578137 are:0.011269096379565127 ,:0.009297363626038231 him,:0.00801906026736254 was:0.007976579534116183 time,:0.007921558689594412 .:0.006851524941483996 States,:0.006260071157773944 in:0.005874744575742491 anything:0.005852204114837657 men,:0.005364812196848431 years,:0.005315621023915439 to:0.00505705638102357 year,:0.004972146185854641 :0.8008800313930364 +the:0.36294851793304356 a:0.16156549323600686 little:0.09360176799084917 The:0.0305090375376671 and:0.028422809559842045 his:0.025807399494332802 young:0.02194808564190813 her:0.018585155784789954 one:0.014532471544638097 old:0.012120592481161367 A:0.01196615855571864 this:0.010878882645736058 tho:0.010192239448979337 poor:0.007633020977744442 an:0.006472305135829376 any:0.006289947124542905 another:0.006016608687400384 every:0.005232111054051804 same:0.004633210475236938 :0.15964418469052102 +his:0.2883316042727627 their:0.25456722104342666 our:0.13010323396626577 my:0.07169809634425747 her:0.06094998437274268 your:0.0604085019692129 its:0.054051943373963615 bis:0.016686565050222726 a:0.009772578668773523 Its:0.0070313958494272214 the:0.006009375055329812 His:0.003478190001913525 of:0.0026453091977760687 one's:0.002199234647785902 and:0.0021292763893762893 to:0.0019857603363868386 hia:0.001887332350132339 Our:0.0017972290630817937 whose:0.001796250750638259 :0.021470917296523864 +and:0.10791195081716745 the:0.0715891004927541 of:0.06838131358688788 to:0.03874670673106353 a:0.03445480892676344 in:0.026555558747437574 I:0.02613456229269771 not:0.024858810256131167 be:0.024396977019623456 have:0.022842974013137538 he:0.01703490570885161 was:0.016587151413081088 is:0.015588569686944088 for:0.015251134808395116 it:0.015078565425386773 are:0.014863607383319951 had:0.014301361822064804 his:0.013171588871582892 or:0.012987245326458603 :0.41826310667025124 +be:0.15746444902075385 was:0.1349338636668009 been:0.08342491237296609 is:0.07024910014111259 are:0.06952561766466178 were:0.061580691499471533 he:0.050363222952884056 and:0.0451329514858456 had:0.043615817088735576 have:0.0349374219993052 not:0.0254952563134602 has:0.02479547732046594 it:0.02177381259523508 who:0.01409984525322631 being:0.01376293638740558 bo:0.013039904511197808 they:0.012750135914266478 Is:0.010733329633862683 as:0.010561492514675468 :0.10075976166366729 +of:0.28767355066866834 to:0.08775711267569858 in:0.08678131196995101 and:0.05160598694501188 on:0.04646139928102899 by:0.04519522654900943 for:0.044547789071328545 with:0.03396756772609607 that:0.033699232901107726 from:0.03075346596941143 at:0.027039283056790858 In:0.021061449543044047 as:0.017514234937992545 all:0.012543839382496166 upon:0.011844431150487573 is:0.00998972746569266 was:0.008814315973987914 into:0.008557199930727406 through:0.007781895704231326 :0.1254109790972375 +and:0.2405219500004619 that:0.11608062367914507 as:0.05665454914371457 is:0.04549257131563965 was:0.042154859046777717 but:0.03123251027068741 up:0.01987399668877857 Then:0.01626641950015739 Is:0.01454997519354181 when:0.014416061920216388 if:0.014152290342291872 where:0.012126395735931963 And:0.012028648776587148 down:0.011280273156331738 are:0.010610892333923467 were:0.010600986189056482 to:0.009827018533095203 which:0.009309452952281912 or:0.00923051129151153 :0.30259001392986823 +:0.08430269178283631 it.:0.022780956514945903 them.:0.017211781041196684 people.:0.012455595980475923 country.:0.010998342240258889 and:0.009723240153393126 .:0.009601349941998459 time.:0.00919327696336159 him.:0.008708336547445947 years.:0.008368283328179009 State.:0.008051936078786126 year.:0.008023195755423746 law.:0.007708892182332372 bids.:0.006897368129557698 life.:0.00670482985152318 States.:0.006588277844168273 work.:0.006319302583802846 day.:0.006036076169888875 world.:0.005913245709843375 :0.7434130212005817 +of:0.13799619249065867 and:0.11883064531158104 to:0.062226457017048147 is:0.05293196053706902 with:0.04994748953914694 in:0.044662809735252995 for:0.03900712016990596 was:0.038284881648753225 that:0.03668617971811331 at:0.03377253930836139 by:0.030133232354949874 it:0.022189726579692953 are:0.01965988969925253 from:0.01827713227237573 but:0.017562905779422624 nearly:0.016493111787246474 on:0.013866210344953275 do:0.012472792395505203 were:0.012203849484987293 :0.22179487382572335 +and:0.058398221744682316 free:0.044073525980030455 far:0.034820368256048374 come:0.03222250848092215 came:0.029410975307772768 miles:0.027490972942632277 it:0.025812262675954944 or:0.025119308937998578 feet:0.023141091665171257 suffering:0.022730769470507894 them:0.022575939116551567 gentleman:0.022058761799882236 letter:0.020658337004393856 away:0.01968733466231921 Senator:0.019578844280240183 him:0.017767527054547937 exempt:0.01697881059177649 men:0.016636056922235045 dispatch:0.01633509713138495 :0.5035032859749474 +and:0.06023355665912341 of:0.01549787130320518 or:0.014781686411470263 et:0.011138411387607954 person-:0.010997336737443379 to:0.01062104492430162 a:0.008805121745548025 in:0.008598772867582266 :0.007300119561703495 .:0.007249470855210755 for:0.006077993989720901 was:0.005787396270343175 on:0.005644714182400492 is:0.005382683803965869 not:0.005276781406116956 be:0.005115216970050305 at:0.004949370478324077 that:0.0046605975251953575 the:0.004543049492932488 :0.796338803427754 +to:0.19660091181321285 I:0.09264189406588844 will:0.07320912928218423 and:0.07078868387118306 who:0.049250878751936754 they:0.04761907089303352 we:0.04567548985642128 would:0.04040462088561784 you:0.03680229405791146 not:0.033943605080583854 may:0.017075380843950442 should:0.016930870401187445 shall:0.01685043255217701 must:0.014238633903590323 could:0.013274982582147812 We:0.011905739486632459 They:0.01093506663192767 can:0.010283699478292415 which:0.010275218942757604 :0.19029339661936354 +of:0.09129790931378902 the:0.07369883040827747 and:0.047842263382354346 in:0.04189055351593407 to:0.04045875475680249 a:0.03542341257202578 be:0.02020462051672066 for:0.01979292654746225 was:0.01760256398103379 at:0.017380150555488715 is:0.014984483003968216 with:0.014047653760730413 by:0.01374644383819499 :0.012670486581795598 In:0.01200961464556976 or:0.011563835749786333 from:0.011391516893522809 are:0.011273104484969465 that:0.010755276030689069 :0.4809655994608848 +the:0.11241664115819995 of:0.06210884446566228 a:0.059611103475104114 and:0.05904975994547726 to:0.044460715059904565 for:0.03414647815265245 in:0.026636303133295743 as:0.016240894443599607 or:0.015875203526463582 that:0.015741130029660086 are:0.012446522425780955 was:0.012258802269328623 is:0.011819304989179637 be:0.011725678084885506 which:0.011513682099522056 -:0.010746504281391584 :0.010278784627825973 their:0.0102263469901559 it:0.009735287231640197 :0.45196201361026994 +:0.04331284900366224 that:0.03024624869339922 and:0.01844358512696845 ?:0.01775412115163565 it.:0.015507735974850497 them.:0.00976104827583212 I:0.0060708897247141284 him.:0.005296917453873526 man:0.00523066544830717 men.:0.0052149458384408215 it:0.005210645238679876 the:0.0051896431633265015 :0.004771557952854761 ::0.004596664107838465 which:0.004513172064267693 country.:0.0044904994696122556 life.:0.004385857582916744 us.:0.0039865844179039055 people.:0.00395448535466386 :0.8010618839562521 +the:0.14097905379068107 of:0.07331087503882922 and:0.07181330996280533 a:0.05976433406615042 to:0.054517608548006975 be:0.027144583808848956 was:0.021670096559335054 or:0.017850176640821478 is:0.015691986615405103 in:0.01537689140487654 are:0.013527554375639277 :0.013345386361944066 at:0.012159230680710242 been:0.012083769908731407 for:0.012017580091645849 his:0.01156881653886233 were:0.010304989923631205 their:0.009881712923853423 tho:0.009488640365474152 :0.3965034023937479 +to:0.668644758704313 not:0.043209158914561355 will:0.03469327052472357 would:0.028397762213021788 and:0.025501993581235807 they:0.017610914717392276 the:0.015122647362046687 a:0.01294266499495976 re-:0.01139105520228955 can:0.010868819996224376 I:0.01031854227942689 we:0.008698095192449372 could:0.008455105069568746 who:0.008227161285429786 may:0.007680428354075078 must:0.007320738969304903 should:0.006696300005059604 or:0.006440210612722402 all:0.005971879474871204 :0.060808492546323895 +the:0.13510657675425547 a:0.12269491534776884 much:0.08776883672067184 no:0.08451200947595615 and:0.07836026477378534 or:0.06638519380046821 is:0.043300715207051296 once:0.03507108310242112 far:0.03414436417818827 are:0.032417664918719585 of:0.03159200141754327 still:0.03129036872105046 any:0.02516828144342379 was:0.023381901482561612 not:0.022017733458104934 with:0.02113008054372755 for:0.021026764855059103 be:0.019426075821093867 have:0.0193600219391317 :0.06484514603901757 +on:0.15577900654588334 was:0.10800785746933621 is:0.09146531769609327 of:0.06694998557656161 and:0.06464788335867265 as:0.05985600683454881 in:0.05189880525448963 to:0.04575813260786592 be:0.035365365825576006 for:0.032710475448174105 or:0.029586129776527054 with:0.028955252253649446 that:0.019355114328520943 made:0.019082537894151767 by:0.01848531592681378 from:0.017806099169385154 upon:0.016867010110666013 such:0.01645758303229017 at:0.014045291002836871 :0.10592082988795724 +of:0.13389501464148112 the:0.12614449523496735 and:0.07927924988377456 to:0.042725347061994545 a:0.04232615149436131 in:0.0343246018894234 by:0.026176294330354427 with:0.022846340130408645 for:0.018999178102271027 Mr.:0.01818322769198046 The:0.01705278177600537 that:0.01576387914776127 :0.014187551984715132 or:0.012689668467957825 .:0.011703429945983158 In:0.009925849514478235 as:0.009799362387586368 an:0.009419843292767278 tho:0.009034542658311037 :0.3445231903634175 +and:0.060421588811988676 made:0.023760307589778856 sale:0.023034159912837124 as:0.021638488464476063 land:0.0207446784204784 sold:0.020472578515198583 that:0.01793934840189634 was:0.014742164681964718 or:0.014355676349962385 held:0.012936315087044204 2:0.012744660459181293 sell:0.01263653795924952 heirs:0.012272863297062571 closing:0.01222321057416017 be:0.011751832496755373 the:0.011477997933387817 is:0.010211007192381492 Western:0.009779027825000003 interest:0.009465142189967071 :0.6663924138372292 +of:0.08514302545138963 the:0.062150781241505554 and:0.04502979438495627 per-:0.04047875044468865 their:0.03807758660628536 many:0.024373432100718614 two:0.023838345034591542 his:0.02352815770249169 three:0.02082373194736747 few:0.017539345516704028 -:0.016913890930291744 by:0.015131108893164788 six:0.01497756020156101 in:0.014951896673416913 for:0.014241179532158683 per¬:0.0125377739284061 four:0.012173639633226586 our:0.011480062654230936 my:0.010541377020475771 :0.49506856010236866 +and:0.1921585723610231 was:0.05428165059235365 are:0.045563855334409334 is:0.04132243195404551 be:0.03425251013326532 do:0.03183398173345368 or:0.03039107070983094 been:0.026897348100928878 were:0.026794515894448468 not:0.025749181647103735 but:0.023535970230031768 And:0.0235356799116278 that:0.01696199672112282 of:0.01638072573405303 has:0.012186311328370832 it:0.011689123214135113 as:0.010759978199512304 have:0.010620958517875168 ;:0.010018322951864288 :0.3540658147305442 +the:0.45819905290854646 a:0.129958629264951 any:0.08757803098107168 this:0.032519378589647124 tho:0.025052343549155316 of:0.022428178696400954 great:0.01908781536343536 said:0.01739710017486225 such:0.014228843842794414 our:0.01357188860607638 no:0.013456693923685545 The:0.012330480986785911 every:0.011730547619409379 and:0.011637788419983842 other:0.009958863145023363 his:0.009834420656337882 their:0.009822811567596778 tbe:0.00955362008914209 or:0.00862366813232983 :0.08202984348276449 +and:0.11203614284734381 made:0.029480560291083903 necessary:0.027231632327903786 provide:0.01978786821063526 him:0.018624150941585572 time:0.017844902254185023 but:0.01736032991925495 pay:0.01712283223509279 responsible:0.01655246417854943 work:0.01573375727996718 used:0.015721729148453864 that:0.015344008200088246 providing:0.015123591452644664 or:0.014918878594106077 it:0.014272018550925738 vote:0.014240496926603478 out:0.013886758983508773 demand:0.013625570335128902 ready:0.01288626098417059 :0.5772060463387679 +about:0.10347097099568446 west:0.08131128522352778 east:0.07622584005453305 and:0.07607141303042911 north:0.07088982347594265 to:0.05777561213104009 south:0.05763709137059325 of:0.0479100672939106 street:0.043594579526392 at:0.0289409373161024 deg.:0.023095974425081413 from:0.02212422938600436 degrees:0.020799711372775153 with:0.015565117919697198 alley:0.01519902233540232 W:0.013928039915326415 containing:0.013643038895004638 than:0.013455831468456081 east,:0.012476219260144306 :0.2048851946039527 +I:0.059525823343571 to:0.04536997948267007 1:0.03385221833431442 the:0.02853714993503497 of:0.026586677729967836 and:0.019865574773704275 :0.017992503826062194 not:0.017413369138217838 a:0.01423524773534416 they:0.013085634797839734 -:0.01269460024548568 be:0.011966987846922576 we:0.011731195595521741 he:0.011683682245533424 t:0.011001752765521974 who:0.010438913194685361 i:0.009762687773333036 .:0.008916655563622535 by:0.007779589690738319 :0.6265597559819088 +they:0.1572976376891089 we:0.09522210914452296 who:0.07762157461942268 and:0.05480212345954233 which:0.05156042536741562 They:0.04341222737519035 We:0.041633946057471914 you:0.038504371074714064 that:0.03583864010721659 men:0.02390005985881305 people:0.019391762280198784 These:0.010038369989777644 I:0.009411120712953852 women:0.009349349476215857 as:0.009300890163880226 these:0.008789645120519328 them:0.008700516815235999 children:0.008506782306485001 but:0.008081531699653942 :0.2876369166816609 +and:0.11203614284734381 made:0.029480560291083903 necessary:0.027231632327903786 provide:0.01978786821063526 him:0.018624150941585572 time:0.017844902254185023 but:0.01736032991925495 pay:0.01712283223509279 responsible:0.01655246417854943 work:0.01573375727996718 used:0.015721729148453864 that:0.015344008200088246 providing:0.015123591452644664 or:0.014918878594106077 it:0.014272018550925738 vote:0.014240496926603478 out:0.013886758983508773 demand:0.013625570335128902 ready:0.01288626098417059 :0.5772060463387679 +the:0.3571511846634194 of:0.08655211119928716 to:0.042143990356587446 a:0.03894610211869367 their:0.03848795014703529 and:0.03410232470646692 our:0.02758166625020604 in:0.02442580499609419 his:0.02387347653527055 The:0.022505317126565012 further:0.021265901988261064 tho:0.02086982348790154 any:0.015217706786556364 its:0.014601695407864655 no-:0.014220138201224537 good:0.013297944408956371 by:0.011598393651324512 great:0.010920472037018014 is:0.0100466131899371 :0.17119138274133017 +the:0.2654472138873481 an:0.12361937333072476 a:0.12274199407073469 his:0.08350822934990576 and:0.03276381470741902 her:0.02631894823539617 this:0.021195073117848358 its:0.020082976158390872 of:0.018261095540917663 The:0.017785032675639155 my:0.01742982986746704 their:0.016567572681867374 tho:0.012560689120480393 in:0.009512386482404104 An:0.00946284452475245 your:0.0059607770508409525 no:0.005372053591308207 tbe:0.0053664116312366035 as:0.004392469857272947 :0.18065121411804538 +will:0.20916736470189376 to:0.17508492076666216 may:0.10870582386677985 would:0.06919867344113191 should:0.06622421513555539 shall:0.06157361358706081 can:0.05764596389550571 not:0.052225384003507645 must:0.04377394308881139 could:0.03504027058784331 might:0.020100374631977884 cannot:0.019530807161070515 it:0.008442980176823966 and:0.008146438168209104 that:0.004728750382307703 only:0.004175409922910022 never:0.003992966764091286 also:0.0036323735731567225 probably:0.0031118711152198237 :0.04449785502948107 +be:0.20175455041991885 was:0.16880671014422338 been:0.14465653672650733 were:0.06230219469032548 is:0.05811919265595124 are:0.04649736588013608 being:0.04084988326106294 and:0.03573812793217633 Is:0.013364680357233885 bo:0.012336507591674447 case:0.010528918900663844 statement:0.008861213881107732 statements:0.008770242686643406 he:0.007213386666913044 mortgage:0.006646243965534617 now:0.006308519542502933 if:0.005229357241683568 sale:0.0051249475791576736 it:0.004797375549039268 :0.15109404432754397 +of:0.3834450110211483 in:0.10994295119918115 to:0.07437118107151994 that:0.05275758621140626 for:0.04028932944298529 by:0.034786253621927506 on:0.026776283951379546 with:0.022687217343193632 and:0.020405711661247262 In:0.01999420927343333 upon:0.019924419179601017 from:0.016914756204573927 all:0.014779195609417988 at:0.01330565964386625 which:0.010289634899735056 as:0.010096000019826603 is:0.008377098523234417 but:0.006898301773711352 ot:0.0065093398459131905 :0.10644985950269796 +:0.043765680558499935 and:0.03972908151728108 was:0.026839185026691078 that:0.023941854065388183 be:0.021208382514197006 recorded:0.018708364994358833 as:0.014926917390392858 set:0.013842061787796057 put:0.01254373626296697 is:0.012508268815778581 feet:0.01250777335549037 or:0.01235432024391968 were:0.010859281476029123 work:0.010754108398375074 but:0.010704217098216375 are:0.010611171778325492 taken:0.01060259958071957 up:0.010535690403215048 one:0.009964885052691032 :0.6720924196796676 +to:0.19566495080062685 his:0.14453569875243719 in:0.11689592276043452 my:0.08312658920021761 of:0.06685525806988912 and:0.054179869096805056 her:0.05044826838951754 their:0.0333429522220629 your:0.02315621700071935 the:0.022761518939553353 for:0.02226084401877635 In:0.021658371571541404 by:0.017547641265865725 our:0.01716087678916711 without:0.013795465576366576 a:0.012712699159216459 own:0.010483113002083646 its:0.009549307132875669 human:0.008083778773877698 :0.07478065747796586 +the:0.17906065891697565 a:0.12872775330654315 of:0.04262831344193133 and:0.035010971032009265 to:0.02886229888646802 an:0.025443493607872538 The:0.02530157807234902 Mr.:0.01983591314461275 in:0.01934482497012497 .:0.017419943168085723 that:0.013276308954073019 tho:0.012333411998975115 :0.01166781446376662 or:0.011587919636118401 this:0.010969189091741327 his:0.00977189421235972 is:0.009043907283116593 with:0.007809571078023552 In:0.007188365772545446 :0.3837158689623078 +the:0.6757883050822985 of:0.029410273391676418 tho:0.026772866198377376 our:0.02526669172263545 American:0.022228368302665075 a:0.01954362401566828 this:0.01762121632197951 tbe:0.011391427682826057 State:0.011039660039842922 said:0.01029704570766572 and:0.009948688970767838 his:0.009133418855340159 other:0.008268157972281349 in:0.007961349995174496 The:0.007520382971588849 Federal:0.006840536400882283 their:0.006600130777342284 own:0.0058465692762349536 for:0.005493171658958796 :0.08202811465579371 +of:0.28767355066866834 to:0.08775711267569858 in:0.08678131196995101 and:0.05160598694501188 on:0.04646139928102899 by:0.04519522654900943 for:0.044547789071328545 with:0.03396756772609607 that:0.033699232901107726 from:0.03075346596941143 at:0.027039283056790858 In:0.021061449543044047 as:0.017514234937992545 all:0.012543839382496166 upon:0.011844431150487573 is:0.00998972746569266 was:0.008814315973987914 into:0.008557199930727406 through:0.007781895704231326 :0.1254109790972375 +the:0.11919516938815296 of:0.07230453158552728 and:0.05781056740443249 a:0.043018564803886335 to:0.031305092790907506 in:0.020848713353460488 at:0.014270110001066288 .:0.012526810245749479 :0.012413283442322082 for:0.011719122709941797 by:0.010808400946589808 or:0.010404172990115616 The:0.01003576004804544 with:0.009811868184449042 tho:0.009295902015355835 was:0.008924239095331684 that:0.008672304223433876 is:0.0085591147338948 be:0.008335143826716943 :0.5187411282106204 +and:0.06174302123025829 away:0.045931750958463816 taken:0.03772274558378757 them:0.020626014805485066 miles:0.020014740300009957 come:0.019981186841682895 out:0.019507982983791597 came:0.018932367905894663 down:0.01845006130561681 up:0.01820649894182868 received:0.016355538616791395 it:0.016168637562171892 him:0.016057797509940054 removed:0.015770574687160126 annum:0.014621871694467579 feet:0.014281010247797082 made:0.013658150433829997 derived:0.012961254651437491 letter:0.012470613368147022 :0.585538180371438 +it:0.13005894162625659 he:0.10616474706407626 It:0.1022978689901755 I:0.0554580595268797 He:0.04586176030014704 which:0.041415408880455 and:0.036079869749150846 that:0.02728261210139764 who:0.026941460126104037 she:0.02601566401371227 there:0.020839463417784497 She:0.012727415785500285 There:0.012147903358146802 day:0.010906336239884046 this:0.010081920706121345 1:0.010047206257971534 lie:0.009043550654848985 This:0.008987962644117322 meeting:0.008589260563251187 :0.2980525879940191 +of:0.3391357681362153 the:0.19051392200695988 in:0.07371755313093088 for:0.051181842162540646 with:0.04121707870074849 to:0.041129752214369805 and:0.03323710160338183 by:0.021061975679053036 a:0.018764562544675824 that:0.01544002300031947 on:0.012610167225117886 from:0.011491717096961231 tho:0.009965028188308645 no:0.009964339344964676 into:0.009963035116420054 their:0.00984050138935013 this:0.009315786406602836 In:0.00828899263727269 as:0.008047819850731545 :0.08411303356507513 +the:0.09609689971809109 of:0.09286653610706762 to:0.09084369414019672 and:0.046562706934036316 in:0.025735375986860896 on:0.023709662552035497 :0.023294428526078922 a:0.019017133164302716 at:0.018989854218734947 from:0.013944830067541984 for:0.012265711853852968 by:0.010638370453624672 that:0.008701902179762215 .:0.008191481408528349 was:0.00807366451078825 as:0.007969784532915173 with:0.007926945846645187 In:0.005983940568777232 :0.005960071228642991 :0.47222700600151624 +well:0.09257921576635017 such:0.07923051724403618 and:0.07675757608595184 known:0.06260634002528519 far:0.062075693192735835 soon:0.05669303078058574 just:0.03942459815467284 long:0.03651878468384252 regarded:0.024324706975502132 much:0.023211210122713072 but:0.01983092074444731 act:0.018562680594853016 or:0.018059374409369843 is:0.015581057359084752 that:0.014538799917355212 Just:0.014241464039202211 him:0.012331927759679768 described:0.011866807780163632 it:0.011688794571936376 :0.30887649979223236 +and:0.1301213523896967 a:0.125082296653643 is:0.09610145479715339 of:0.0708049164596447 was:0.057737768387874686 has:0.04595030785115176 have:0.04386043022986129 not:0.04042501846533169 are:0.03771089183096527 had:0.03382397873484688 that:0.03367409007121391 to:0.03287348287037568 will:0.03220318109757207 with:0.02691285669043596 be:0.025460902874738376 in:0.024384219815952575 can:0.021288007594080127 been:0.01879876472790767 would:0.017691505194104656 :0.08409457326344959 +number:0.04981400601353074 sum:0.047698627750403975 rate:0.04747166198181091 out:0.0358158999307795 full:0.02908446318451706 matter:0.028780409006031068 amount:0.027996003013196328 loss:0.027916951334014624 and:0.023380879796033385 kind:0.02199736096852572 means:0.021732337372754717 way:0.021118197142199015 period:0.02105997190255812 kinds:0.019844570093354132 line:0.019646666629639934 plenty:0.017558150625907643 right:0.01701418099406247 pounds:0.01685334879004441 sort:0.0160994711413665 :0.4881168423292697 +and:0.1417157418003202 so:0.06755684882674218 fact:0.05707173571703629 said:0.04486723127003565 know:0.04457473274659093 say:0.04048471673355019 is:0.029279944568814904 but:0.02438556998593403 believe:0.02348236877231084 stated:0.019305661733568756 all:0.019217712097723813 me:0.019031297091898075 him:0.0175758659888339 order:0.014998765855170048 see:0.01489256018742656 feel:0.014720541888046773 think:0.014424977241856658 was:0.01431732896568077 says:0.013992258106505139 :0.3631041404219543 +and:0.1400167242405736 was:0.10475835796507872 the:0.09852915976781473 be:0.05637552535294858 is:0.049876891521664767 were:0.04238333950697839 he:0.039675830934190505 are:0.03416077582478043 or:0.029656219087495918 been:0.028222255467104287 had:0.025521699064182276 have:0.02356778834853707 a:0.021629932227658424 has:0.020072385832921393 first:0.01972258272955602 that:0.01764149841008129 one:0.016862458118253296 being:0.015210539633486671 last:0.014587856631086079 :0.20052817933560754 +in:0.02713646879149018 up:0.021630210669950082 hundred:0.014044701457035182 out:0.010845843012250191 day:0.010644573932783792 men:0.009522431519083496 city:0.009373895912101107 ;:0.009239672251069567 dollars:0.008582493072112394 gold:0.008009217719046648 down:0.007658474712553442 time:0.007028488002878575 him:0.006945812087907969 place:0.00693036629106505 made:0.006714361710488017 work:0.006475298171346818 law:0.00603621227566579 feet,:0.005930445478727319 life:0.005914066492387008 :0.8103369664400574 +the:0.10336983496615278 of:0.07543688350053557 and:0.06641644690227996 a:0.04455859280514038 to:0.03951391183407334 be:0.030966861721460015 in:0.030146059226641746 was:0.02880487163345596 is:0.016456555486564176 :0.014268559619302467 at:0.014138495910890675 for:0.013691162369318591 or:0.013653239614092283 .:0.011458704682463305 Mr.:0.011455809661350676 his:0.011360920796348824 are:0.011169575397813998 were:0.010356811134618766 been:0.009941051066127606 :0.4418356516713689 +time:0.023734293156409132 men:0.020813006572021665 up:0.012012170433184954 hundred:0.011351493630008636 in:0.010574384717167644 long:0.009910442893660104 one:0.00953427068914799 him:0.009526303455413918 good:0.00939279479047609 to:0.009175762208119916 them:0.008570848739508481 life:0.008226448724082354 other:0.008123187436275605 all:0.008062855142026199 due:0.007886526398670662 out:0.0075535764675891 work:0.007448318807865329 it,:0.007418113414782488 ;:0.007356050647588245 :0.8023291516760015 +to:0.13074052750491383 and:0.11302166497756744 of:0.06858285217472256 the:0.06710985814552774 not:0.029405869734402915 in:0.026068171005273724 or:0.017049206687105332 I:0.01698798295340468 is:0.01612382579878582 be:0.015744242759161926 for:0.014795256908526113 that:0.014312934700977605 a:0.014292800059534547 he:0.01181159152093985 was:0.01178100071435533 as:0.011297190932909708 no:0.010903211917443091 will:0.010889442612924427 by:0.010686467880381318 :0.387395901011142 +the:0.4724365325866025 The:0.05421612284230578 of:0.05051324044559624 other:0.045435922416634716 a:0.04006304147989068 and:0.03783656903509508 tho:0.03569188200867016 by:0.017191080831618497 their:0.016711329640118136 or:0.015402116054031346 two:0.015087952959950189 all:0.014362307794417212 various:0.01266354129213108 in:0.011025167142432457 great:0.010779187622207928 tbe:0.01075367774777969 few:0.01001527316404159 any:0.008175631637091247 large:0.007490952506050961 :0.1131484707933345 +and:0.05070318867106095 -:0.02914913292703253 that:0.026702330863573827 the:0.022288930442641502 .:0.019455149277758394 of:0.016761505500796626 land:0.01651595934990491 to:0.015773564238765733 was:0.015679304022667817 line:0.014872186684417739 is:0.014797435377156812 I:0.013670627133260383 lot:0.012553037369390374 quarter:0.01204253538740578 1:0.01112861589252457 :0.01111026907679582 t:0.010753356950818416 one:0.010402977842561372 in:0.009932272832679917 :0.6647076201587865 +the:0.1543267404520106 a:0.14207214218744174 any:0.06735645833383315 in:0.06042200183436947 first:0.06036570811108104 his:0.054917566287410305 of:0.04383339231478254 their:0.03476183121640125 and:0.02812147934968632 second:0.02602027603270066 or:0.02236166516188592 In:0.021065746764161 every:0.02082489062088037 no:0.020742663293444513 its:0.0182142692033788 some:0.017979252932460676 one:0.017509428885895868 my:0.017460286149465324 our:0.015547326998298748 :0.15509687387041168 +and:0.06640005639890628 was:0.04275225834549658 :0.03177914174281404 is:0.02760442650026059 be:0.02138461604387398 that:0.0176010816937463 .:0.015456116517725793 brought:0.013698045811521991 been:0.013206486481562116 Is:0.011289923764136327 have:0.010363804699306641 made:0.00969387307744808 the:0.009479330256656239 I:0.009267414558489272 :0.009253575800108845 were:0.00908422403280967 in:0.0088729119955918 of:0.008825285418880289 had:0.008512428766974363 :0.6544749980936908 +of:0.28819878875513016 to:0.09135618787007825 and:0.07687823127674828 in:0.07590463573931584 for:0.05768597375330471 that:0.0503929444740593 with:0.034969080418657844 all:0.03474273620400954 on:0.03471782670700971 from:0.02750719296301075 by:0.027028062238541487 In:0.017995820001450953 as:0.013252093621155038 over:0.010995975776698063 than:0.009548072332951718 upon:0.0094276102741582 at:0.00939752452994226 through:0.008306381387612662 among:0.007363343342041007 :0.11333151833412422 +and:0.0645733993466475 to:0.05794485596256487 the:0.05657737421114569 of:0.04897908445783381 be:0.03563865085798185 is:0.02876271747775706 was:0.026533338915363143 for:0.02444200136575475 in:0.020070269965151634 or:0.019645987185800066 I:0.01828314910848504 a:0.016159130149933608 that:0.015597813547385316 are:0.015324843964829277 he:0.014651706599362073 not:0.013649869503805787 -:0.013311179664652464 were:0.01219399209890404 it:0.011886746264341797 :0.48477388935230026 +and:0.07438342900536063 that:0.04358383646773786 I:0.020232406987733365 but:0.018256758964921915 :0.01766655987153704 which:0.017362363287241108 ;:0.010977165110125024 as:0.010974276523436069 it:0.009929402600654669 of:0.009729321602002666 was:0.009569807930375242 is:0.00912636382744765 you:0.008235807492649332 not:0.008223869860142913 to:0.007451757901807061 it,:0.007413743218969217 be:0.006925526670900481 they:0.006845844092647588 men:0.006296980843401439 :0.6958147777409087 +get:0.053610422214488855 was:0.05051841536969282 and:0.04903958730444051 him:0.038801969319659166 it:0.037410018187455464 them:0.035569152369498175 are:0.03479460583298655 go:0.03206022460430166 come:0.03018624754922308 came:0.02989007710531499 issued:0.028538548420871033 taken:0.028387580006254076 went:0.026471193886938953 got:0.02591677196361888 growing:0.02512307536827857 be:0.024827416016109424 is:0.024256616056951556 served:0.023420563816567756 paid:0.022272217198545566 :0.3779052974088029 +of:0.24943179401519985 to:0.14671728430700506 in:0.0647154834492558 that:0.05333884690954341 on:0.049495000015886116 and:0.04765331438002366 by:0.030623467444717837 when:0.029799407094243096 with:0.028632423994857187 all:0.024949030713897116 as:0.021580588016043213 from:0.019153948788437635 for:0.018836992220755102 was:0.01809713763192895 is:0.016238085137434004 which:0.014847995993280584 In:0.014546516634182903 before:0.014166291375845491 upon:0.013881447854355211 :0.12229494402310775 +is:0.1300949053123692 ought:0.06235942008217411 are:0.06072445398663133 seems:0.05697318922100556 was:0.04954471475520722 not:0.048536362204045544 said:0.03881623685409472 seemed:0.03220746110521765 as:0.030923473227594384 it:0.030881869856406088 claimed:0.028226689520969073 have:0.027725540143517465 and:0.027557757709861613 likely:0.02587900806524851 seem:0.02574969309575762 supposed:0.023317446089120043 had:0.02145961764731352 Is:0.017651730366473797 proved:0.01677680343414685 :0.24359362732284573 +of:0.28767355066866834 to:0.08775711267569858 in:0.08678131196995101 and:0.05160598694501188 on:0.04646139928102899 by:0.04519522654900943 for:0.044547789071328545 with:0.03396756772609607 that:0.033699232901107726 from:0.03075346596941143 at:0.027039283056790858 In:0.021061449543044047 as:0.017514234937992545 all:0.012543839382496166 upon:0.011844431150487573 is:0.00998972746569266 was:0.008814315973987914 into:0.008557199930727406 through:0.007781895704231326 :0.1254109790972375 +of:0.3401738489923184 to:0.11969724246437441 that:0.05814335085914791 and:0.054322575137888685 in:0.05320954406858492 for:0.05112291286418042 with:0.04033058728640903 by:0.03363285568355563 on:0.030696247966656126 as:0.026436347394601854 from:0.021456515652994695 all:0.020810242339363294 at:0.019826256070587647 upon:0.015145964073942657 which:0.013774679792873433 In:0.012743679042898895 over:0.010070695373930582 is:0.009958430896765617 when:0.009940741275422436 :0.057507282763503365 +as:0.06931392982974462 according:0.052071562389565784 up:0.0511867300210483 and:0.040371568633051955 went:0.03351644485287816 back:0.032358406609281 regard:0.03073407747799069 feet:0.02852138506231652 down:0.026379903432040268 owing:0.02466642634685871 due:0.023695193974505355 go:0.022910973192184297 reference:0.020802802907016128 came:0.019883741951819873 sent:0.019874244915639484 attention:0.019565955494145405 come:0.01885185084678811 given:0.018792390567602263 it:0.017366961307524745 :0.4281354501879983 +and:0.09313270001887555 him:0.06091047184161428 was:0.0594866489753872 is:0.03215577593658439 it:0.031067546838141172 up:0.029276073733094606 as:0.026690993083394426 come:0.023361717891516733 placed:0.022729383997069585 be:0.022682130953541907 made:0.022607086175442465 that:0.022363290662966565 or:0.02235428229403113 them:0.022289093314016597 not:0.021737781529320866 Given:0.02002793555902313 down:0.01960468805570186 out:0.019087399565974713 had:0.018176415201057314 :0.40925858437324547 +in:0.08594510977015388 of:0.08419611428213726 to:0.05842605972351722 on:0.03499888035138662 and:0.03250789120853418 with:0.024768482140240623 upon:0.02074303010825844 from:0.018854538211874813 by:0.015340136739713453 for:0.01505219917183977 In:0.013982086683961134 that:0.013464148078475074 things:0.012961608396028322 one:0.010581291821243049 those:0.008876861281538173 under:0.008086336089365187 through:0.006827565819694498 but:0.006242906538013514 principles:0.006192552011733113 :0.5209522015722916 +and:0.14625498311756543 said:0.0821408402137806 fact:0.053042879817408975 stated:0.043080626045290886 so:0.03670560455337853 him:0.03145185140002361 know:0.030269284895004085 say:0.023631027804186345 is:0.023317250373478222 says:0.022511697585094068 believe:0.021363437164841573 but:0.01993757805139123 saying:0.018992342115662253 told:0.01877630041085035 replied:0.01865923525468731 all:0.017484377075553177 found:0.017287552137347117 me:0.01691240193856356 stating:0.014580183464830303 :0.34260054658106237 +have:0.11758426796310902 has:0.10004393928355432 are:0.09540066510796959 is:0.08770474809965766 had:0.05874466235248219 was:0.044037423293129804 be:0.040389500977121705 and:0.029986369940035458 were:0.028297160216444718 as:0.024533905188493715 been:0.019341666063341242 the:0.01879249836609109 not:0.018713588558507594 it:0.018306389293981828 Is:0.01626849656373777 much:0.015067719318778407 which:0.013471943509474395 amount:0.011608034914167304 he:0.011580775590665702 :0.2291262453992565 +the:0.1639865528869938 and:0.10234765038729775 of:0.08879657508152633 that:0.025880153854721248 The:0.025433382403492334 a:0.024370551082713656 or:0.01634393227514616 I:0.016181441943630876 in:0.015099075455698116 his:0.015053584421981892 to:0.014011465430673109 these:0.013075652071503832 as:0.012218349609237872 their:0.010994029209686902 tho:0.010839986628587447 which:0.010352552452324287 he:0.009660440328970435 :0.009506122633480924 would:0.009460653077096268 :0.40538784876523676 +the:0.11274823966931571 and:0.08329996793360815 to:0.062372082173126384 of:0.05346002906215973 so:0.0299749817344208 is:0.026294180790411077 be:0.020260006954324915 he:0.018124449911071136 was:0.016351044211737983 re-:0.01567649125103956 Mr.:0.014726716630740086 in:0.013675410003338988 for:0.013272602215284653 a:0.012159264338821467 I:0.012040910229586727 or:0.010977326121126826 :0.01035107289213954 are:0.010219913969554774 not:0.009881708091297656 :0.4531336018168938 +in:0.15100824217228018 of:0.1310871033736233 to:0.08496038108110954 for:0.06466532166362847 with:0.05267929540162433 from:0.051306308400469555 by:0.047024534178240096 at:0.035195713212467665 In:0.03439182638478906 and:0.02431199995673231 upon:0.023533533774627156 on:0.020098146115786336 under:0.01584401246920626 after:0.015579405060092527 through:0.015044427902707888 that:0.00882173151047411 over:0.006921586031279294 during:0.006696120942967359 into:0.005883487407324257 :0.20394682296057032 +a:0.7190123689682609 the:0.13965864645959747 A:0.017600505498800437 The:0.00970744864061957 this:0.009419214795254297 long:0.008323148494587025 first:0.0072624294881382685 and:0.006565798674325163 tho:0.006547555519251591 per:0.005589864366973736 large:0.005314639428764039 some:0.004553735374732333 every:0.0043216815861279205 certain:0.004050265319287185 or:0.004037834814314986 great:0.0039118220745330765 any:0.0035748904341928634 that:0.0032052461340869114 other:0.002957901237304478 :0.033385002690847654 +will:0.18354709311733783 could:0.14864816090616711 did:0.11878289701561023 would:0.11495583411814976 does:0.08625372248357735 do:0.0595552282436945 shall:0.03559650468860308 should:0.03195981360264463 is:0.03017706712863073 may:0.026379945192692315 can:0.022785616140993708 was:0.022462377738533844 are:0.021833439122321403 and:0.018964395493951704 must:0.016475594528193877 had:0.008077851362076525 were:0.00804300602118987 Do:0.007675195296895059 have:0.007587878358035012 :0.02923837944070146 +and:0.1457535392313432 of:0.11445820835187931 by:0.10180876010896307 in:0.09560568056811786 was:0.06935141811786266 with:0.04220832521333035 for:0.03234759386978477 are:0.031089859321609063 to:0.03060518735202159 been:0.030422746755490893 were:0.026092683718298263 In:0.024066919596645586 the:0.02172374626343641 is:0.01720183347920633 from:0.017118629788850242 be:0.016637804097820834 after:0.01614358430734216 on:0.01433908994955343 and,:0.0067154483652714135 :0.1453089415431725 +and:0.14625498311756543 said:0.0821408402137806 fact:0.053042879817408975 stated:0.043080626045290886 so:0.03670560455337853 him:0.03145185140002361 know:0.030269284895004085 say:0.023631027804186345 is:0.023317250373478222 says:0.022511697585094068 believe:0.021363437164841573 but:0.01993757805139123 saying:0.018992342115662253 told:0.01877630041085035 replied:0.01865923525468731 all:0.017484377075553177 found:0.017287552137347117 me:0.01691240193856356 stating:0.014580183464830303 :0.34260054658106237 +of:0.2990381924963266 to:0.10071873543242052 for:0.08169476050977267 in:0.080909173399467 and:0.07525586879114833 with:0.051962759940614535 by:0.03390410232712174 from:0.026542876400358774 at:0.025401364812750037 In:0.01940289668392976 on:0.01885861474845114 that:0.018262142793548677 after:0.014111241376411983 before:0.009856979844382488 but:0.008194683906266721 said:0.007249572546586074 upon:0.007240210362353319 into:0.006843849143569371 against:0.005695537947916301 :0.1078564365366039 +the:0.25937932644352935 of:0.23399176276544506 said:0.06418808524555901 a:0.03744468813061854 to:0.0330277119564931 by:0.03113026053682526 on:0.02905249168074446 this:0.020870699179279428 that:0.020648104565670046 and:0.0175933824019271 The:0.014126191214876852 described:0.013333818692837302 tho:0.012188130945140948 our:0.010486830187352173 other:0.010097420814758598 Eng-:0.009520129909988807 certain:0.009491695842867793 with:0.008922022895415896 his:0.00864927765017403 :0.15485796894049625 +;:0.03272433266321726 is:0.026098493338384342 nothing:0.020475069741017943 and:0.01488936707898392 it,:0.013529483016865502 are:0.011785633235887901 one:0.009286537889391678 was:0.009095223970790623 time,:0.009065378092407622 for:0.008853419863930947 them,:0.008711826756884873 of:0.008277635520406498 ,:0.008119514079347648 him,:0.0077729016626176175 had:0.007515147201781155 have:0.007469332650928424 anything:0.007453507368041393 year,:0.007315724507527653 years,:0.0069452670980341795 :0.7736162042635528 +the:0.11828164249655597 of:0.05261069095666205 and:0.04847755232327664 a:0.0464281958687471 to:0.04122901032817301 in:0.03963881561511718 for:0.035876776541493204 be:0.023886703134073716 his:0.022443503543386274 is:0.02170918680386125 was:0.020324289620107277 their:0.015992748237407338 or:0.014384361563756113 much:0.013527002898674388 as:0.013053374304822849 are:0.012146365005640078 at:0.011932660832346283 In:0.011474531324169077 that:0.011163124887855208 :0.42441946371387496 +and:0.04554791829759606 St.:0.035387676928054584 of:0.025399849462453463 the:0.021787679528260134 :0.018956030326171148 to:0.01501328662083627 was:0.011191284256312696 de-:0.00966822174969512 1:0.008414200490639668 are:0.0071717923874830445 de:0.0064405499542751505 were:0.006280579773337608 in:0.006192768133467518 pro-:0.0060359441622232 is:0.005932099082951073 for:0.005595754012802636 a:0.005429852601652099 be:0.004807599253526164 .:0.004799063093395232 :0.7489478498848672 +and:0.12760914952579921 to:0.09350903998305073 he:0.04427115183796026 of:0.03273712048537543 in:0.024796890005921543 the:0.023894411477150226 was:0.022918342900178634 that:0.02089892373593765 for:0.02039988287876958 will:0.01968918799115977 not:0.01900679191484481 would:0.018586066892747898 or:0.01841067604319294 is:0.01741560228311475 it:0.016623006336143973 had:0.015944658138793255 be:0.014889444862031647 I:0.013999263722461762 him:0.013315311952332166 :0.42008507703303377 +well:0.17026508937430723 and:0.0655572768136507 known:0.06413650202342182 far:0.05639193804443634 such:0.038855086781788124 soon:0.03391968213221153 is:0.020134596637237472 much:0.019438066446461042 just:0.018222670400071545 long:0.017541295723130467 described:0.016158734294864304 be:0.01603651805887717 was:0.012821105957972461 but:0.012043246639463172 regarded:0.011223822135214608 it:0.011010979718584172 act:0.010907640388506465 them:0.010833160325417713 are:0.010683949535525376 :0.38281863856885834 +the:0.11274823966931571 and:0.08329996793360815 to:0.062372082173126384 of:0.05346002906215973 so:0.0299749817344208 is:0.026294180790411077 be:0.020260006954324915 he:0.018124449911071136 was:0.016351044211737983 re-:0.01567649125103956 Mr.:0.014726716630740086 in:0.013675410003338988 for:0.013272602215284653 a:0.012159264338821467 I:0.012040910229586727 or:0.010977326121126826 :0.01035107289213954 are:0.010219913969554774 not:0.009881708091297656 :0.4531336018168938 +of:0.2000095246091993 to:0.11595018570496203 and:0.09039362513715236 in:0.08733737753630341 for:0.05773858355845256 that:0.05495844610587453 by:0.05346454899239766 with:0.04681809188304431 on:0.03880712122997815 all:0.03195377836536646 from:0.026452660312109254 In:0.023385465880259464 upon:0.018212606755534756 as:0.014065094786178506 is:0.0124204872220105 but:0.011052955220476385 at:0.009788300135729941 under:0.009395865348937582 when:0.008371226054737543 :0.08842405516129528 +the:0.15150332198329367 a:0.10212057265084204 this:0.07140992345508224 one:0.05778849230146714 every:0.039926144028275865 same:0.03210871535678549 his:0.03179911861445874 other:0.031304264807365874 first:0.022528092839409226 of:0.020087412981556012 real:0.020058070014639405 any:0.01922956362395227 each:0.01877360030855146 good:0.018424720957870705 white:0.017783726302755886 third:0.016796702881904074 second:0.016630822055610915 new:0.016581888733886215 said:0.016558485560483654 :0.27758636054180913 +the:0.11274823966931571 and:0.08329996793360815 to:0.062372082173126384 of:0.05346002906215973 so:0.0299749817344208 is:0.026294180790411077 be:0.020260006954324915 he:0.018124449911071136 was:0.016351044211737983 re-:0.01567649125103956 Mr.:0.014726716630740086 in:0.013675410003338988 for:0.013272602215284653 a:0.012159264338821467 I:0.012040910229586727 or:0.010977326121126826 :0.01035107289213954 are:0.010219913969554774 not:0.009881708091297656 :0.4531336018168938 +of:0.3716387075413922 in:0.09671903698821724 to:0.0772075233545754 that:0.03470020597158995 by:0.03467173475791107 for:0.03263341336115185 with:0.028661689284926923 and:0.02333245779896124 from:0.02206771351492586 on:0.021639399931672236 all:0.01921934823067841 In:0.018242067024192923 is:0.013988758873468544 at:0.01381994875305849 as:0.013504059774881573 upon:0.011235428945220331 was:0.008596785620363236 over:0.007942663213454808 which:0.007712703129565481 :0.14146635392979218 +and:0.15759621046335076 annum,:0.1459175785198376 on:0.040577733494665556 of:0.02844961244017058 day:0.014790760176535573 or:0.010998092102424317 that:0.009881131045723844 sale,:0.009327868925295281 2:0.009119803904423513 in:0.007580712555309382 be:0.006932733575783119 annum:0.006861243558113931 each,:0.006616790286573516 the:0.006506144007684971 dollars,:0.0064616080271182675 interest:0.006053822094399697 hundred:0.0060479126857746705 as:0.005609229770422526 are:0.0055010395665327635 :0.5081699727998601 +the:0.09684081064840576 and:0.06551335624548284 of:0.05146145169206151 from:0.049520598669154245 a:0.045427902131977435 to:0.0370403239153822 be:0.035669151526387034 was:0.030489628475080553 is:0.026635804908522978 in:0.023878514238638158 are:0.018513936943033917 not:0.017945708099223703 or:0.017556265685966497 been:0.014265228721347686 at:0.013857211504087178 he:0.013733215789660087 were:0.012396679125422956 I:0.012347944480187516 for:0.012197989992860347 :0.4037082772071174 +:0.07000769750127998 it.:0.024648026772796806 them.:0.018216486890617698 .:0.012604598060755312 time.:0.010698750224133172 him.:0.010370717152990391 country.:0.010213511878992911 year.:0.008935223598671962 day.:0.008104777228981789 years.:0.007975431102658331 work.:0.007312412163052604 city.:0.006341853007729845 life.:0.0061696659995337305 world.:0.005709167751923781 tion.:0.005488091840565656 place.:0.005429204782105173 way.:0.0050604427529729054 people.:0.004962805897536682 States.:0.004868413544382897 :0.7658827218483184 +he:0.11833147027173743 I:0.08774588006974372 it:0.08578339994709855 It:0.07481529474244546 He:0.05453501445602853 and:0.05375917949372888 there:0.05031056869887664 which:0.04488992734896964 who:0.03945454340405809 she:0.03021865574460372 There:0.024955486392672303 that:0.02433266092193612 This:0.018439806151112716 She:0.014772663329494996 this:0.012326665031919778 lie:0.010776519321718657 man:0.01038208213640127 1:0.01036298127158213 ho:0.0093888538829962 :0.22341834738287517 +:0.06050200993790417 him.:0.029999594206135634 it.:0.028349096421721117 them.:0.01972582272730801 time.:0.013074766502647765 day.:0.009726512200126325 home.:0.009124782172933455 years.:0.009026067948752398 work.:0.008568996614280438 country.:0.00825596886233287 out.:0.008011567919676723 life.:0.007904427903843374 .:0.007839695777429899 water.:0.007530512159700567 her.:0.007510279906395126 man.:0.007055033195832834 city.:0.006948486974496122 death.:0.006778091705740939 morning.:0.006735710004180913 :0.7363325768585612 +or:0.21033155179179916 not:0.13680708111852716 no:0.11167533057423651 and:0.05602690320263293 a:0.04991077498095658 the:0.04094741619683201 with:0.03764773829001102 of:0.0328451765465965 much:0.03271663294329473 any:0.03256982005474697 is:0.027159979479234674 for:0.019322494548782113 are:0.01906253074340053 be:0.01776725405175682 far:0.015451023122361747 was:0.014200547054181386 un-:0.014089778140522776 in:0.012298138884052134 doubt-:0.012064197726591761 :0.1061056305494825 +the:0.13758371847043735 of:0.08126231297889798 a:0.04835240661334856 to:0.03996161899422211 in:0.03603320280674478 any:0.034005415697271016 for:0.03290981553838409 or:0.031193260325817707 and:0.028804775836003934 either:0.02343738739108748 no:0.021123155370424168 be:0.016843477735894497 their:0.016601367834784518 such:0.015397861219013374 said:0.015232309787862667 by:0.013689181478574652 with:0.013615736362004947 other:0.013335896604116772 his:0.012177012617782089 :0.3674400863373273 +make:0.17109839193087653 for:0.05486414017815783 get:0.05422428626852979 made:0.05089819062739837 and:0.039404684507174374 find:0.038773305899528265 that:0.03828586617054186 have:0.03787615594723228 is:0.03617677942483787 take:0.033372427559048096 found:0.03224119185867848 had:0.030812292566201074 to:0.030467413171385335 Be:0.027803604831794598 of:0.027301537359387538 makes:0.02724201928963607 with:0.02608053931719392 put:0.024754403061247363 Is:0.024386663893585927 :0.19293610613756446 +that:0.1950166922784193 which:0.10488391923338955 and:0.0942594356951315 as:0.07958812004695029 if:0.07195728849759982 where:0.038075616424691795 but:0.03680932484604221 when:0.0350069676220222 what:0.034391811979517475 If:0.023331784781947085 than:0.021451779936676848 because:0.01716331199749404 or:0.015131675914740418 before:0.01344268068333574 for:0.012877363587714326 whether:0.0126560043319241 until:0.011809024213970886 though:0.01133119891293214 whom:0.010285981312695485 :0.1595300177028048 +and:0.07387132609559574 is:0.07328312236991763 as:0.04773317776552537 was:0.04328225018648639 able:0.042887945174683174 not:0.041326531116696416 enough:0.03539686146360627 him:0.034810473883452805 order:0.03379730510068341 necessary:0.027311755213551385 right:0.02728638765674209 them:0.02152191739464329 me:0.021055936364071104 made:0.02038179549121542 are:0.019564352939060836 going:0.018573562707943903 refused:0.018155275803135088 ready:0.017036375836320727 had:0.01606679454614271 :0.36565685289052624 +a:0.4521946917526856 the:0.21057455901729552 of:0.07170636973941735 in:0.04513161610005613 with:0.03390774445174922 and:0.023441073142550558 The:0.019947238670589274 much:0.019190067936484385 to:0.015252535308534234 far:0.015211209001146529 for:0.013700592070090696 tho:0.009276003620071634 A:0.008633464028317795 by:0.00849801829129415 no:0.007770895496949394 In:0.007560322509274585 or:0.007362737578171602 that:0.007040694920908793 very:0.006382412299289341 :0.016217754065123206 +of:0.1613094393169821 the:0.13913589335793122 and:0.08567657480231748 to:0.05301415702329323 a:0.050575458260636405 at:0.030138201218078222 in:0.02975035090099658 with:0.028201143082053143 from:0.020884665479567667 his:0.015906290881514736 by:0.01440658445762636 for:0.013347841542706214 or:0.013001676564043479 on:0.012474725741016374 tho:0.01013533891832181 :0.009638339994080855 their:0.009020172146239805 about:0.009001409333888565 The:0.008678008297219491 :0.28470372868148625 +of:0.16274039105619031 to:0.1267498174754186 with:0.07777902326852607 in:0.07304304274659679 on:0.05455815280580144 and:0.05096220128837975 by:0.04911987523530448 that:0.0465319375708147 upon:0.042562374678727616 for:0.03903147793179242 from:0.03871738388721205 at:0.02138525804842458 give:0.014239292752657305 made:0.013561048537740485 all:0.013529258180399085 up:0.01223153820614631 In:0.012094030462020846 as:0.011852622092196572 gave:0.009719627804454402 :0.12859164597119618 +the:0.39749834532651884 a:0.07520030034269234 and:0.05540858759821703 The:0.03273515726769502 tho:0.030061875542463562 of:0.020144331424922633 tbe:0.014929647509541684 in:0.014268129706664795 or:0.013333166761078447 .:0.013287381914101323 an:0.009000188755386574 to:0.00880680429595084 :0.007943763822197133 Mr.:0.00773879605474787 by:0.007328417831573476 as:0.005922572098978465 for:0.0047526933692942485 that:0.004736121968310169 on:0.004594595720579333 :0.2713091226890862 +I:0.20527305689311395 he:0.10501265675019597 we:0.07876036511941586 and:0.06429652881265391 they:0.061163154593824105 you:0.03454169524397262 it:0.033863429052386755 that:0.033467894115670326 We:0.024837713265873647 she:0.02450158649012724 who:0.024430446441421814 which:0.024117457661217236 It:0.01785910329588018 man:0.01753995136906565 Why:0.016748170876255526 He:0.016553396391923353 why:0.014844900708679045 1:0.013105346386297595 one:0.011959063986658237 :0.176124082545367 +this:0.2023266083094686 the:0.12770828608163434 same:0.08884087139264456 that:0.08620569010027303 in:0.06204494842213971 some:0.04166423242680523 to:0.037497460590723446 of:0.03437657933781106 first:0.03418359772283156 long:0.033084614670453705 which:0.025026737017160395 one:0.024807700740745623 a:0.024132499965314542 In:0.02275543795005171 next:0.020689276345136984 present:0.020416327455244954 short:0.018699887431277033 and:0.018545801703725898 any:0.017535997468384756 :0.05845744486817285 +sum:0.03352282876311118 number:0.028116684882597106 line:0.019995206059833036 city:0.01946514558931857 out:0.019275318828420953 day:0.01666865340772654 county:0.014872697538657208 amount:0.013254184849875051 Board:0.01252325449624941 town:0.012449555905674143 side:0.011663975251122375 part:0.011517157473718155 County:0.011460540331966697 state:0.011087331502382173 City:0.010878919191854432 purpose:0.01081028255427907 and:0.010297866493795984 way:0.009848747943663767 name:0.009522170936943183 :0.711769477998811 +those:0.24169200437824473 men:0.10586397423248439 man:0.07789808332847656 and:0.04342715038384148 one:0.0351521377262877 Those:0.02607951048009902 people:0.022486086382325333 person:0.018496377766834226 woman:0.017110661053723435 all:0.016287675440011442 women:0.014242615910080858 persons:0.013609610723537809 others:0.010926239911257376 girl:0.00809579161676418 many:0.007880999819483068 men,:0.007394095277161945 he:0.007350022645457674 friends:0.006697839633927697 man,:0.006586994103945605 :0.31172212918605546 +the:0.2747211029984216 his:0.16997790263237927 my:0.062263706159182884 a:0.058748588819355144 their:0.050207094402032255 this:0.042467097606996435 same:0.033844143635832165 its:0.03367782147446931 of:0.022999279477686027 in:0.022331651441554634 and:0.02009574164610676 tho:0.019511366529691338 that:0.015892609674279107 her:0.015552658304004813 your:0.012230473903249687 great:0.011619903789480898 The:0.011585476675030978 bis:0.011119320938384327 an:0.009285157659955273 :0.10086890223190709 +he:0.12976820625117658 who:0.09221886342062384 which:0.08202145445505479 they:0.06808463273766263 it:0.06300140281566258 that:0.0536651199481747 I:0.04355172570140108 there:0.03694176174144522 she:0.03568475182996337 It:0.03445956439681276 and:0.03146500019799679 He:0.03013662272772511 have:0.01649641755291053 has:0.014869129143777082 we:0.01270748492222897 She:0.010037042499654298 had:0.010034468298945191 They:0.009824977349933048 ho:0.009403905633941782 :0.21462746837490962 +it:0.12429869106039677 that:0.09678435709713536 there:0.08529435051722721 which:0.07210712961479024 they:0.06332936993729434 It:0.049888415821910975 he:0.04168017422385555 and:0.037383975030706444 There:0.02594395923751264 what:0.025582991309687896 one:0.023942067265387425 as:0.023005743009060758 you:0.02276527986613408 I:0.018301996633386393 this:0.018229091238523065 who:0.017226422865103896 we:0.01718954736209074 man:0.016876133115589217 nothing:0.01226960605280007 :0.20690069874140696 +as:0.11370161486354897 and:0.08260973739377617 of:0.08187609932482348 was:0.06661461021245679 is:0.06529765145257638 in:0.06211334340978698 such:0.05871358152497293 with:0.0446505241642249 to:0.04173913578596963 for:0.038291222429027105 be:0.03797893373694874 that:0.029471592430524978 by:0.029183131518425134 have:0.024679475138961574 had:0.02213708540916189 on:0.020948935836516833 made:0.020626574928279368 like:0.020615190944441024 but:0.016968734750448522 :0.12078282474512862 +Board:0.08536366908073266 line:0.06811449636344513 number:0.06197004006892146 State:0.031174472853487813 city:0.025567806918765496 state:0.024859219269894647 side:0.022821036658263686 County:0.021996907367396498 county:0.021146504953275795 City:0.019055244720364916 board:0.015424220418831415 corner:0.015402671034076193 quarter:0.015233994357893438 class:0.014914046888605826 acres:0.014800791990459711 part:0.014727702917387939 amount:0.014701671661272425 thousands:0.012997205844078496 out:0.01123375376244037 :0.4874945428704061 +and:0.0895250171043369 the:0.08040539359906415 of:0.061147432326284654 to:0.0476573940607869 in:0.021717599203092765 a:0.019773370631632092 be:0.01802081287115651 for:0.01723114349849618 :0.016890155375895468 was:0.01603321000092413 all:0.01517797603727291 on:0.014544582102959388 are:0.013568592649830007 were:0.01193129572043874 by:0.01172068206556981 or:0.01157993995272423 his:0.011282800244257403 with:0.01031980300342532 two:0.010252064980531782 :0.5002207345713208 +the:0.29351436715249934 a:0.09265787628362931 of:0.05551587875449472 and:0.04591312774144135 The:0.034904765568081385 tho:0.021250938212875842 an:0.02108734779268403 in:0.017456356685288308 to:0.016314705065166118 that:0.014190736417033693 with:0.013055296690372302 for:0.011646455250434565 by:0.010581695214157735 on:0.009518945094454528 his:0.009308118467065316 tbe:0.00930018571122686 :0.008850242365920616 this:0.008550625416893009 as:0.008519767891561532 :0.29686256822471946 +sum:0.03352282876311118 number:0.028116684882597106 line:0.019995206059833036 city:0.01946514558931857 out:0.019275318828420953 day:0.01666865340772654 county:0.014872697538657208 amount:0.013254184849875051 Board:0.01252325449624941 town:0.012449555905674143 side:0.011663975251122375 part:0.011517157473718155 County:0.011460540331966697 state:0.011087331502382173 City:0.010878919191854432 purpose:0.01081028255427907 and:0.010297866493795984 way:0.009848747943663767 name:0.009522170936943183 :0.711769477998811 +part:0.04827126757422882 one:0.03927496329140387 out:0.031048654990070687 side:0.02056718202217637 that:0.019704308853568622 some:0.018358906133568192 end:0.016224405693554215 members:0.016121775498460524 portion:0.014145596321110485 tion:0.013460086918899643 people:0.013436098310300968 member:0.012932960975880991 all:0.012494038595141144 parts:0.012089086625349462 and:0.011292793359365115 any:0.010860680017599078 office:0.010412619189815436 charge:0.010230140499404709 action:0.00961715817261388 :0.6584572769574878 +reason:0.2696434587050565 and:0.12282799053181728 have,:0.07328755052824434 see:0.042956375967649896 understand:0.036203127380807734 know:0.03383079531684591 reasons:0.03277024171601592 is:0.03170715420358812 was:0.02162396831628779 asked:0.018911173062923725 but:0.018117124927301873 as:0.015246613370587052 cause:0.012500206863026662 And:0.011037503110916976 so:0.010932256337779733 But:0.010189697154534796 Is:0.010132326376272788 be:0.009976084632229444 show:0.009930168151892937 :0.20717618334622048 +the:0.625193628471748 his:0.07254254027857789 The:0.04396414512235699 of:0.032089340237238737 a:0.03012364098479797 and:0.02465787410809051 tho:0.023420781810007778 their:0.01620130835658723 this:0.014597749413211706 my:0.011767806184003327 whose:0.010617910686453855 our:0.009101589254303459 tbe:0.009045223100836313 her:0.007976928334121903 said:0.007567703909335078 that:0.007516269801173114 its:0.007048354862471357 your:0.0053848125656419015 in:0.004635554837762326 :0.035546837681280676 +years:0.6384852899768487 months:0.06165899494740383 the:0.05122226491802419 to:0.030529529572727927 year:0.028568380022178957 and:0.025101328056408297 of:0.015904034751274967 weeks:0.009826620945026928 days:0.006520140150267347 as:0.006325822980904353 for:0.005485422045835688 time:0.004330011970475383 that:0.004108239881159155 day:0.0038054572567604514 by:0.0037323690063582687 month:0.002860267496272687 tho:0.0026312729677892594 or:0.0025838156876352046 in:0.002366936101427642 :0.0929538012652207 +is:0.13615986335113262 was:0.08431698021705293 in:0.07313985269138505 of:0.06320009470691028 and:0.05926124448281755 any:0.05239527564528621 no:0.04708815151860401 from:0.0433397431516399 but:0.03999583931199336 at:0.03728777074337028 to:0.03159001381765696 In:0.029476239292464283 the:0.028695180395479747 only:0.028314969881980064 some:0.026790729586410676 with:0.025874440776119827 for:0.0246880808889496 be:0.02381712598657619 by:0.022785173700772557 :0.12078322985339791 +is:0.25701281532304027 was:0.08838682575174787 have:0.08263874356830576 be:0.08115707787145432 and:0.06517378412061635 had:0.0619909095339398 will:0.03911434999857651 has:0.03332428460170618 Is:0.03317598730035398 made:0.027269963488191978 that:0.025096136686589422 with:0.024255890432752815 but:0.02232078510234217 are:0.021433547121429492 make:0.019176925030821176 can:0.01515658940553921 not:0.013265382392802212 to:0.013204424452654878 of:0.013182191468488268 :0.06266338634864733 +of:0.09129790931378902 the:0.07369883040827747 and:0.047842263382354346 in:0.04189055351593407 to:0.04045875475680249 a:0.03542341257202578 be:0.02020462051672066 for:0.01979292654746225 was:0.01760256398103379 at:0.017380150555488715 is:0.014984483003968216 with:0.014047653760730413 by:0.01374644383819499 :0.012670486581795598 In:0.01200961464556976 or:0.011563835749786333 from:0.011391516893522809 are:0.011273104484969465 that:0.010755276030689069 :0.4809655994608848 +the:0.45877829486586774 a:0.15693590794707948 great:0.04859133377913791 The:0.03787258100777737 full:0.03144518518807389 tho:0.024759130087440864 large:0.023404442744869993 and:0.021583277974852832 in:0.01859181176061555 to:0.018470155987391167 good:0.017161792668340038 of:0.011909552670073853 tbe:0.01004311659903812 by:0.00978224039176899 A:0.009195599488745747 no:0.007697204235516586 any:0.0062764698452469885 an:0.006260842701844984 police:0.0057910007253056655 :0.07445005933101224 +he:0.21943608930476852 I:0.07099417083272452 who:0.060597661447672244 she:0.057327796425317275 they:0.057003170580899515 He:0.04248316753324961 and:0.04021901045242833 it:0.03454706991708676 have:0.028897421747552096 which:0.028432245968447296 that:0.02436901217470698 has:0.01799980195451492 be:0.016774071163247518 ho:0.014710860847212936 She:0.013929015286870123 we:0.01307352458928753 It:0.01288687026875263 had:0.010651648173992669 lie:0.010032634911356442 :0.2246347564199121 +most:0.2939538040232587 a:0.12877572252970054 the:0.12789797646815593 very:0.051214443241184966 more:0.05040083769654207 and:0.037149161099192224 an:0.026137050547323334 The:0.02608385047397764 as:0.025540919801471215 some:0.023658575257467254 any:0.02330604927041132 of:0.022009822051405142 that:0.01980073351857169 this:0.01707794441572832 no:0.01419609870106105 A:0.013399703477312173 its:0.012973898052669202 is:0.010119993012321287 one:0.009593169030991059 :0.06571024733125483 +it:0.12646345559141328 which:0.06874049228939834 and:0.0656467730514304 It:0.055899354080079296 there:0.04819894680944666 they:0.03712179471058455 who:0.02815526182575708 we:0.02681863422926571 that:0.025159511562839045 thereof:0.024851973400234234 as:0.02428947294515817 same:0.020568888037149836 he:0.02001322537743491 election:0.019553934975150428 person:0.019134845881448644 act:0.018245867186635015 I:0.01822575051588607 bonds:0.0165852660779681 or:0.016416112573120735 :0.31891043887959947 +the:0.3471756888810943 a:0.20048135476028983 of:0.1191859105305672 The:0.05310147122362668 and:0.049417705874178285 with:0.029387102423124846 A:0.024043771415157025 tho:0.021654989684775163 by:0.017265584593440846 in:0.015935727317678693 two:0.008853016511054648 his:0.008004818271727696 to:0.006712263466492297 tbe:0.006584150345501564 new:0.006274993416779726 any:0.005752503197368411 their:0.005021476965962367 said:0.004663813394041953 an:0.004511837981813252 :0.06497181974532522 +the:0.3456505144351783 a:0.14337799055779432 to:0.12523538016866526 The:0.07369929238892782 tho:0.035611574768992425 his:0.03186758972657779 and:0.02086823901427048 con-:0.020422623240659618 tbe:0.017898475632676835 its:0.012318141766013984 her:0.012131608857942624 their:0.010473090903438155 an:0.009979954489511743 con­:0.008972678876795974 this:0.00873132738941794 A:0.008718612489870976 can:0.008709003335820843 our:0.008493689608074178 de-:0.008446052361570892 :0.08739415998779983 +it:0.11641322375242819 It:0.09622479323926482 he:0.06731807127789274 there:0.06691243353273693 which:0.06010991522368093 and:0.05789480219356424 This:0.05307524753462978 that:0.03401855426151261 I:0.028306147737255354 He:0.02563298346058915 what:0.022509727839091383 this:0.020441512487961624 nor:0.01883766979989516 There:0.018560955064357745 What:0.017531162607251377 Nor:0.016434769061246312 who:0.016277243759856973 That:0.014424656846875456 she:0.014187598320066717 :0.23388853199984252 +is:0.19418446951263682 as:0.10055131777823423 a:0.07763676801398765 was:0.07756023767185606 are:0.06835832219850706 and:0.051717873048395695 very:0.04995281637324887 be:0.04671536455882792 the:0.03927494871655483 so:0.03712957576372589 Is:0.0349030154219437 were:0.02143464254588563 not:0.021318447154815734 pretty:0.02076039199045464 been:0.019786863299690413 too:0.015198574941431633 of:0.0079040946399759 being:0.007853508332571257 or:0.007828522654512206 :0.09893024538274388 +is:0.17227136630510365 was:0.14024234532703092 and:0.12985960091451124 not:0.09662909435612298 are:0.03929113309039264 be:0.03713506651676814 but:0.036563720258987506 Is:0.03484288646795137 were:0.029671071693695913 as:0.019218663253717728 been:0.016835895993057813 have:0.01423525570752902 so:0.012545976302110589 to:0.012190550345216917 had:0.011105081788781857 it:0.010747166752615193 or:0.010527239771143235 of:0.009457953338001682 that:0.009200795840083275 :0.15642913597717836 +the:0.11919516938815296 of:0.07230453158552728 and:0.05781056740443249 a:0.043018564803886335 to:0.031305092790907506 in:0.020848713353460488 at:0.014270110001066288 .:0.012526810245749479 :0.012413283442322082 for:0.011719122709941797 by:0.010808400946589808 or:0.010404172990115616 The:0.01003576004804544 with:0.009811868184449042 tho:0.009295902015355835 was:0.008924239095331684 that:0.008672304223433876 is:0.0085591147338948 be:0.008335143826716943 :0.5187411282106204 +in:0.26736216802384677 of:0.15831798668781125 In:0.1431740464295961 on:0.06776142821806813 and:0.041342978152656945 to:0.03704522710544433 for:0.03372478353433216 during:0.025496976604495618 from:0.019182726592506756 that:0.017884980130419975 On:0.016569717637944372 by:0.01474548126396609 at:0.014499606860863268 with:0.008519159749237703 upon:0.008245766066144997 through:0.007779725411215615 all:0.007686984143033 until:0.007400245230752704 iu:0.00729680802630553 :0.0949632041313587 +is:0.1300949053123692 ought:0.06235942008217411 are:0.06072445398663133 seems:0.05697318922100556 was:0.04954471475520722 not:0.048536362204045544 said:0.03881623685409472 seemed:0.03220746110521765 as:0.030923473227594384 it:0.030881869856406088 claimed:0.028226689520969073 have:0.027725540143517465 and:0.027557757709861613 likely:0.02587900806524851 seem:0.02574969309575762 supposed:0.023317446089120043 had:0.02145961764731352 Is:0.017651730366473797 proved:0.01677680343414685 :0.24359362732284573 +of:0.2620710970295394 to:0.11040586678994681 for:0.07520331243244771 that:0.07073904611259435 in:0.06880101935278003 and:0.06228342281123742 with:0.05937364830907186 by:0.03953073538408004 is:0.02727363423782264 all:0.02350307871573511 under:0.020867298836447723 from:0.019926899815013315 In:0.01718215322345067 but:0.013872568738831546 as:0.013387617038158417 at:0.012901368376585906 on:0.011434664652651461 upon:0.010973635239252162 was:0.010652110764236345 :0.06861682214011704 +he:0.1491617478424178 who:0.10733099084082744 they:0.0764599484319429 and:0.056718152321217574 I:0.05544542415697633 which:0.05463138184957803 it:0.03709700879699979 she:0.03648962880605622 have:0.03412707148329794 that:0.031979547245106314 He:0.02798525251317861 we:0.02078509374955774 be:0.018460693674492646 They:0.017611575781416422 It:0.015873642792533033 has:0.01534995471525113 ho:0.012740714640423837 lie:0.010252518710637584 1:0.01010524101982254 :0.2103944106282661 +a:0.3562821796732989 the:0.2750631182511459 The:0.062370684584326194 his:0.026243662791032667 of:0.021158217939958455 this:0.019286119035029484 A:0.01914453026679654 and:0.01885881895818542 tho:0.01748712105244757 other:0.015063132527199973 our:0.014936981985529157 their:0.014641333183045521 that:0.01304907398397001 every:0.012082458910057152 young:0.009851179184040906 no:0.00967174418933521 any:0.00933915733605775 my:0.0075768124119017935 her:0.007270928963503408 :0.06962274477313804 +the:0.22540505291591903 to:0.10560020535982523 this:0.07601706330418077 a:0.040786120203506714 tariff:0.03585216804080251 and:0.02980015472938998 appropriation:0.028764221294959286 one:0.026150862879982743 that:0.022252856797766972 last:0.0190355100193535 The:0.017345374941576466 which:0.01641264914582795 per:0.016034528858064816 who:0.015398706151958656 said:0.014387193308850596 such:0.014054946595517802 other:0.014028672302898983 tho:0.013517780001147702 of:0.013082840975985392 :0.2550730921724849 +and:0.03868242960999506 as:0.031124813427855922 went:0.02352509775927722 him:0.02196555539050794 them:0.018760608639018784 up:0.017985449426794205 is:0.017894175620344187 go:0.017174904667157563 able:0.016756848979943888 going:0.014481672239490295 it:0.014128375989346808 was:0.013277058274565138 time:0.013249953793837373 not:0.012469887553778763 began:0.012465717758716884 way:0.012105610030480113 back:0.012090864562211581 right:0.011941707822828511 amounted:0.011564315359310868 :0.667354953094539 +as:0.06337289415049517 up:0.04809314218185479 and:0.041411564292737395 according:0.03738221587639796 back:0.03564998809838123 him:0.035577611022324374 returned:0.035110739114133455 went:0.031172920432325488 came:0.03111997420978254 it:0.024764398107483297 regard:0.022823763012400078 confined:0.01803499028792385 come:0.01739043734809638 return:0.017283054062928106 go:0.01654150200276455 down:0.016309920682264393 owing:0.01563727895997569 is:0.015449497308450856 was:0.015024338606440533 :0.46084977024283985 +of:0.34208883518468164 to:0.1318135858087378 on:0.09225710353905654 in:0.07715638310815404 from:0.061277760185191675 at:0.03742607700560826 by:0.03569721838425413 that:0.03329933202699059 and:0.025240421938994013 for:0.019595247313559067 with:0.019330821247939334 upon:0.015381288717673167 In:0.013561317670280197 into:0.01351477357098688 over:0.011524601553613461 all:0.010283182331269408 as:0.008127871417901285 along:0.007984840693125021 through:0.00759211328094074 :0.03584722502104274 +to:0.14401522014784593 I:0.08717805441967116 would:0.08361228383208522 they:0.07250612364846672 we:0.06597598184142542 who:0.05136360986841521 will:0.048581532657812176 you:0.036303803346831635 and:0.03262750567837507 must:0.02681132061405771 We:0.026497479392441514 shall:0.02444461513167911 not:0.023426718145168758 should:0.022766551002372307 may:0.021516097053646 might:0.01661740567775864 They:0.016135791002525445 which:0.015447058681747887 could:0.01476846332748608 :0.16840438453018802 +the:0.1616757674973544 and:0.07758172173317937 of:0.06722895105711318 to:0.03705475193423035 a:0.03127295802659307 be:0.030538917353020306 was:0.0276945292339511 is:0.027162655971274215 in:0.025787312922265646 Mr.:0.020089501511089368 for:0.014890356069738575 or:0.014632010109900062 The:0.013268269635088608 been:0.01280029769869209 he:0.011759767150079899 at:0.011055898583593307 tho:0.011028828798026009 are:0.010888569214661381 his:0.01011074303570043 :0.3824781924644486 +it:0.15590291243815246 there:0.0887784025092866 It:0.07904016205387611 which:0.06936908824431676 they:0.05362226352982171 that:0.04647101454662571 and:0.04420120519214072 he:0.027952982163116303 There:0.027623278151575524 mortgage:0.023443129896555264 you:0.018859539766003214 who:0.017891862574647276 this:0.014117846301193209 I:0.01363040583752058 sale:0.011818751696880098 This:0.010767348085132659 work:0.010306262168963347 as:0.009927627839447666 They:0.008978002990569422 :0.26629791401417535 +the:0.14324792446234735 and:0.043931767065044064 come:0.040088994776500804 go:0.03773302806466987 came:0.03724075893309505 get:0.0365059214001137 or:0.034319436910071416 them:0.03413405174107285 it:0.024838691413774313 his:0.023605426164467248 way:0.02258608462900669 her:0.021581353868608977 a:0.019660401524986718 him:0.019109983493069024 of:0.018476295349799412 for:0.017729847880821742 went:0.017444591649556928 their:0.01677150956167892 fall:0.01561355948894342 :0.37438037162237153 +and:0.14184351902038014 I:0.07832736688633764 will:0.06433287237196858 was:0.06027390338560017 have:0.047954987684471574 had:0.04677773924878011 he:0.04490952751665738 is:0.03888775186614126 has:0.038520057605995174 can:0.03358509112089143 would:0.03319989799811808 they:0.03216584355880618 are:0.030386036895084286 were:0.02831866061999662 could:0.026166375049709048 but:0.02458020295387292 be:0.02199453967190712 shall:0.021682965024078325 should:0.01972976946388973 :0.16536289205731422 +of:0.41040837729208995 to:0.10073046021499273 in:0.09463993071752745 that:0.049784410226442616 on:0.04759565096283359 by:0.041571935653905344 and:0.02769528494486891 from:0.025219295140360573 for:0.02354679329991358 at:0.022023197471114662 In:0.021663637653233456 with:0.017749681097168353 upon:0.011162750972396834 over:0.010457317895031171 which:0.01037356067211521 all:0.010247944795011654 as:0.01008172344266462 into:0.009675641851142055 when:0.007598526310818728 :0.046773879386368525 +hundred:0.02334136986593815 up:0.005482494641173394 men:0.005366536521246011 Hundred:0.0047587970519216575 John:0.00441808156134956 William:0.004390720675819281 him:0.004016828614280843 ;:0.003997112205305733 due:0.003721199871732 in:0.0036582900032443304 time:0.003637206863828461 James:0.0035594902370151707 out:0.0034878448964120057 .:0.003467980723571515 1:0.0032804584819785204 day:0.0032444781513863933 ,:0.003058139385740603 :0.0030314555521939613 Robert:0.003005471634785646 :0.9060760430610768 +is:0.1660987329215484 was:0.1515664641626292 be:0.09578006246998289 are:0.07884118058986278 not:0.05178531283853663 were:0.04697126486369159 and:0.04158800977539092 been:0.030187242755132005 Is:0.02839799190384897 of:0.016889151736474987 far:0.016274252619776282 being:0.015842451639904574 a:0.015397086964443035 or:0.013430710867375652 it:0.012908248474099094 do:0.011678397093827252 for:0.011667741145502368 to:0.010925203677508351 in:0.010682631122019037 :0.17208786237844603 +and:0.07359963406644195 be:0.052667135004264946 to:0.04483536256874564 of:0.043448293679263235 the:0.03579172892628988 in:0.028005289969665195 was:0.026700397492138477 is:0.024892551934152005 re-:0.024162182625676702 he:0.024086629517294657 are:0.02098604388819216 from:0.020307931541148256 a:0.018606881911690538 or:0.018077853608073062 for:0.017195224169077532 been:0.01615904189338184 I:0.015254891559368164 :0.015184018660626356 which:0.015016145996292442 :0.464022760988217 +the:0.16807735899698817 of:0.10541662057906837 and:0.05138367848570702 a:0.04141865232648221 to:0.0385989743764065 in:0.026264864977736738 was:0.019530675665220657 his:0.018900421021236905 be:0.017373825006196972 their:0.015767721170721456 for:0.01557246589796783 with:0.014071419046630446 is:0.012922913111931644 at:0.012690452250034052 are:0.010702713108721902 .:0.010158075558988393 Mr.:0.009672788574483367 tho:0.009612591781990074 were:0.009549306361446321 :0.391314481702041 +to:0.12354075643190157 and:0.08505277297992589 of:0.04744757283939691 the:0.03673010520209344 in:0.027828707058379372 is:0.023305008409429784 I:0.022144012276299987 for:0.020271140005288447 not:0.0199713319441252 was:0.01932205964909315 will:0.019268066369548417 con-:0.018699135648169458 be-:0.018627423880957478 he:0.017655999283213552 be:0.01709344544110531 that:0.015543213952415522 which:0.015438694118314914 would:0.013939369606180202 re-:0.012827440509741625 :0.42429374439441975 +a:0.20170715086857763 the:0.13609252022260912 and:0.0689907546209357 of:0.06026325955093189 was:0.04446577675779496 be:0.03674650648278458 is:0.03148174604210067 with:0.023203827965590552 been:0.019541799090356884 as:0.01928335775517275 are:0.01823853861438233 or:0.016915013431833444 were:0.0164537950490433 not:0.016104095762769863 have:0.015976893375197306 The:0.013912471574989413 in:0.013056137708909926 to:0.012185263679937375 had:0.012158087677469169 :0.22222300376861315 +the:0.13194139103556485 of:0.07587100681722582 and:0.07478062188884729 to:0.069184981299726 a:0.06439519831073622 be:0.034275735481410004 in:0.030672913211428888 was:0.025961978214879312 is:0.025162930393017084 or:0.021492219585127117 been:0.015184833898898057 are:0.013980685067503884 for:0.012699874955249442 at:0.012469359713786342 he:0.011663388168475385 his:0.011353291541962612 were:0.010116996703718592 I:0.008877955786650125 their:0.008176155514044088 :0.34073848241174887 +hundred:0.13514175417767493 six:0.09848968362731185 two:0.09197070167063645 five:0.09187108091671643 three:0.08448889553330789 ten:0.0528241002542276 four:0.050715270487301116 twenty:0.04462685866813811 seven:0.04437492558896976 fifteen:0.03706279112333398 thirty:0.031408471235634575 fifty:0.029856313483744706 eight:0.02954041367908653 forty:0.026555625636454097 twelve:0.024557572980972886 20:0.022964260465267 few:0.0220339399465505 square:0.021779975294526428 sixty:0.02169179210029599 :0.03704557312984914 +and:0.08223402746450334 held:0.04911178117014006 arrived:0.04369172495016433 Beginning:0.03214190345829473 was:0.02774008810709311 Dated:0.025650677282926974 sold:0.02504701994410781 arrive:0.024440999467295287 made:0.021851680055675584 2:0.02009360459812789 closing:0.019669711638115137 as:0.018364591021380806 in:0.01586946697325817 that:0.015331026062791112 for:0.015319625101102585 arriving:0.014933682218128363 look:0.014240560670955058 here:0.013755624587539239 is:0.013009939077271446 :0.5065022661511289 +the:0.25494042215614493 of:0.21071325531769575 and:0.05428510506751278 to:0.031226309009631484 The:0.02646989144677192 for:0.026040786278889526 our:0.021028541029365792 in:0.017021392980442165 its:0.015896814732848773 tho:0.01587165653098378 as:0.015027226130047377 two:0.01447083719075518 by:0.014069563023723499 with:0.013424067433750074 these:0.012597319100109392 their:0.012520395637196783 three:0.01074376227335839 other:0.010548218142837816 many:0.010518434535235285 :0.21158600198269928 +there:0.013560221885704542 him:0.010364412996315664 it:0.009874062045636964 it,:0.00885346619177097 ;:0.008715849393048574 in:0.008657792806026934 good:0.008176343473467762 one:0.007739220672129719 him,:0.006864505545000452 to:0.0068604941245137534 time:0.0065516467431576105 her:0.006326135115618619 up:0.0062091212136029484 man:0.005991989593023927 hundred:0.005970006770646162 here:0.00595761050657676 men:0.005698975082214244 of:0.005367871423271866 out:0.005290938613859841 :0.8559693358044127 +it:0.06252713125695035 and:0.04988065625536575 It:0.046083597255524335 of:0.03745834161129193 at:0.020591975487996465 the:0.020149254556723745 for:0.01886181695075292 to:0.0186405590163683 on:0.018485534017172987 by:0.018242941695407286 which:0.017678875591059948 there:0.017026726127732365 that:0.013167112923876664 :0.012571007493436459 from:0.011527048935551322 has:0.011157975864387631 they:0.011071362871160348 have:0.010648651308015468 he:0.010197579149952753 :0.5730318516312729 +in:0.02887193712158536 up:0.014727727189773292 ;:0.013095053227272663 time:0.013036519080599161 it:0.012823121188083073 it,:0.011714330326791084 him:0.010984553372276195 out:0.010957354785113083 them,:0.009918267794261599 him,:0.0097369865395115 and:0.009112717107595595 them:0.008084853672952653 time,:0.007848869008383398 down:0.007835835971144489 years,:0.007793914211219299 each:0.007005374068227739 made:0.006740492047467425 In:0.006728931276719402 country:0.006555330794100436 :0.7954278312169225 +and:0.17557603474973282 but:0.035857524167846315 are:0.03412265473073415 is:0.027782318876118015 was:0.02695313407625098 men:0.025302282304747927 people:0.018886845983938447 w:0.01850228401049474 that:0.018475589125688478 while:0.01483485395105669 were:0.014697760418136634 And:0.014376734644582848 arrived:0.013776818546334247 of:0.01255048402694688 But:0.011824642986911592 it:0.011550739488276682 them:0.011042522429605161 do:0.010934993745391485 all:0.010799496761782592 :0.4911522849754233 +and:0.2133854242390677 of:0.1443903951482024 to:0.07057967291562674 with:0.06822862079220421 that:0.058231815256782955 by:0.05590802067906876 in:0.04782242556104559 from:0.02506058101179838 on:0.021704300323086706 for:0.01954062458509197 as:0.017001760926456777 when:0.013752291748716111 all:0.011197061129804916 but:0.010615247366161202 which:0.01043452847642173 was:0.010379382861847383 In:0.010245243500355857 upon:0.008837463641474317 while:0.008536518342548833 :0.17314862149423746 +to:0.4420329931449554 not:0.06966318122357618 I:0.049324429542198955 we:0.0483926760345324 you:0.04050148853374766 would:0.037563989370328316 will:0.03524376492543634 they:0.03171620698409771 can:0.028640874154252476 could:0.021992212728853155 and:0.0217033351953211 We:0.021361808071765458 may:0.021269381519364743 They:0.018806774434367297 should:0.017670038554350957 cannot:0.016321702218066465 must:0.014877315730731467 who:0.013462201310665107 shall:0.01154100707695753 :0.03691461924643125 +long:0.12238787326260948 well:0.08494047786226178 large:0.06562904077239635 not:0.06463162962897938 and:0.054770489328819644 was:0.04830617824126159 is:0.04645828834017671 far:0.03714301435837775 strong:0.03192285044084198 high:0.03119073634447909 good:0.02599947001567654 been:0.02256401467948573 be:0.021616723214628108 have:0.01983626963644571 just:0.01844504730359396 are:0.017851392511762022 made:0.015739149615525177 had:0.015720337504348817 known:0.015428493767040093 :0.23841852317129006 +and:0.03868242960999506 as:0.031124813427855922 went:0.02352509775927722 him:0.02196555539050794 them:0.018760608639018784 up:0.017985449426794205 is:0.017894175620344187 go:0.017174904667157563 able:0.016756848979943888 going:0.014481672239490295 it:0.014128375989346808 was:0.013277058274565138 time:0.013249953793837373 not:0.012469887553778763 began:0.012465717758716884 way:0.012105610030480113 back:0.012090864562211581 right:0.011941707822828511 amounted:0.011564315359310868 :0.667354953094539 +the:0.18267699845334034 of:0.12625462819823682 to:0.06103005843312564 and:0.056755364262844124 for:0.022379750378647437 both:0.019900250740235475 with:0.019111831253927448 by:0.018958355845031867 his:0.015329198168239012 their:0.014106039669387916 two:0.013671989826004798 few:0.012639110362655252 that:0.012496023751674983 in:0.01245350172972528 tho:0.012419584354952419 a:0.012375634158070005 these:0.01213374147853963 or:0.011634469748025074 between:0.011348905956644 :0.35132456323069244 +of:0.09650947947165069 for:0.07231089115525485 and:0.07202174140661037 to:0.07002588216376189 that:0.049792833799196065 with:0.024955857345589662 by:0.02461403387053728 it:0.014323646011814292 have:0.01346431300397453 is:0.013090512315914423 or:0.013057172833040752 before:0.012600518084147947 had:0.011738048242732311 after:0.011409149329598417 was:0.010736201829790229 on:0.010384637381367235 from:0.01035592132765638 but:0.00960401424366034 not:0.009393910150856711 :0.4486112360328456 +to:0.4824035206065836 will:0.08148023043742837 not:0.0796313370524251 would:0.06637002247405013 they:0.030942834231868634 we:0.02902879188139891 who:0.02880991665886571 and:0.027134480640466203 must:0.02547765320319118 could:0.020174924753644595 should:0.018184221953382644 I:0.015589775932669992 you:0.014005866070192614 can:0.013853779060966388 shall:0.013438394549071982 never:0.012335209706502042 may:0.0083335830038801 We:0.006756871577572 which:0.0065959886450656 :0.018452597560774203 +is:0.11342299187196629 was:0.11129364670799524 of:0.07730564423381803 with:0.07062082301807311 in:0.06095755588583118 to:0.0555736213717051 and:0.05377304973695619 had:0.04429932628043152 for:0.04219221100432666 have:0.038788496596424187 be:0.03364964351587202 by:0.026754067826414964 has:0.02613950911169547 as:0.0251225894265981 not:0.01838684363875246 made:0.017997245052928636 been:0.015701647433045016 that:0.014607386043069125 Is:0.014383564689901832 :0.13803013655419488 +that:0.22237177970404692 and:0.07704322639108734 as:0.05345922853734138 but:0.047121072236143376 if:0.03661348329085378 which:0.029769775025724497 what:0.022109615207773835 when:0.020200699735094137 think:0.016742712634118764 thought:0.01605519427044558 If:0.015937628650265233 But:0.012994120135003485 where:0.010866850458442554 time:0.010503148274762734 because:0.010242348126466846 :0.009979873644251652 than:0.009193847581952564 it.:0.008503737686345167 me.:0.007815070982332995 :0.3614765874275472 +the:0.16252600296301706 of:0.09943636141121946 a:0.06972061183976204 to:0.05786006055271911 and:0.051901321414837935 be:0.037439623662398995 in:0.027926045399370266 is:0.026607440308126628 not:0.024117671416066706 was:0.023783954316327426 for:0.02116560723292378 or:0.019279992189698437 their:0.01878366798909115 his:0.0183649522149638 been:0.016598750070275194 are:0.014734104368434184 at:0.014726030078833321 no:0.01294859103405944 with:0.012367286558919744 :0.2687119249789553 +of:0.09129790931378902 the:0.07369883040827747 and:0.047842263382354346 in:0.04189055351593407 to:0.04045875475680249 a:0.03542341257202578 be:0.02020462051672066 for:0.01979292654746225 was:0.01760256398103379 at:0.017380150555488715 is:0.014984483003968216 with:0.014047653760730413 by:0.01374644383819499 :0.012670486581795598 In:0.01200961464556976 or:0.011563835749786333 from:0.011391516893522809 are:0.011273104484969465 that:0.010755276030689069 :0.4809655994608848 +to:0.2954136665549506 has:0.12569946959195738 have:0.08831665665746205 and:0.08537940861200397 had:0.08196010756199543 will:0.04998882844771138 would:0.028063988144864573 shall:0.02078228090488626 may:0.019891872739176 they:0.017893116281487598 I:0.014976816417912943 not:0.014636530872922755 soon:0.014281320546670723 should:0.013480876200184722 who:0.012456992563576406 having:0.01051323639300848 he:0.009723640687337179 or:0.008686122903132346 we:0.00789290277879676 :0.07896216513996246 +the:0.11919516938815296 of:0.07230453158552728 and:0.05781056740443249 a:0.043018564803886335 to:0.031305092790907506 in:0.020848713353460488 at:0.014270110001066288 .:0.012526810245749479 :0.012413283442322082 for:0.011719122709941797 by:0.010808400946589808 or:0.010404172990115616 The:0.01003576004804544 with:0.009811868184449042 tho:0.009295902015355835 was:0.008924239095331684 that:0.008672304223433876 is:0.0085591147338948 be:0.008335143826716943 :0.5187411282106204 +of:0.275574333881826 to:0.08636224615023709 in:0.06631904249133982 and:0.053992018225395254 for:0.04185726238848965 by:0.040432462728593715 on:0.0386621368609385 that:0.03746813623829841 In:0.02853879791593314 at:0.02784511394431448 from:0.027249043353089128 with:0.02598983508374518 all:0.014273748255081415 as:0.011953034597961125 upon:0.010404474445179767 is:0.009962155410920995 ot:0.008697425934451705 through:0.008441579399216994 which:0.00831499649011874 :0.17666215620486883 +the:0.09528084175115772 to:0.08238557402289307 of:0.07134236281700074 and:0.05327569388558595 was:0.04305440902461647 a:0.03529541280635835 be-:0.03527560191196089 is:0.029024688620241386 be:0.024354183330624706 on:0.023631249175600402 in:0.019079754577242238 con-:0.0184152098804237 at:0.018113505062156914 for:0.0172487351278897 or:0.01644245326513545 not:0.013962935839622841 are:0.013835156349285336 were:0.01379844624813961 that:0.013563640178454446 :0.36162014612561005 +amount:0.07497952527080114 sum:0.07461050446211842 number:0.06697755090062106 out:0.03936720605180862 rate:0.03369674065003568 instead:0.02516764649300147 one:0.022561746033862552 that:0.022199571000269945 question:0.02183305647463774 all:0.019999591717402582 value:0.019879209362090856 period:0.019864039496517574 tion:0.019381953259456235 purpose:0.018129736905094236 payment:0.018047275542402666 use:0.017769240885342104 distance:0.01715276868117854 means:0.01698515365954973 work:0.016593682771491258 :0.4338038003823176 +of:0.6132599903898953 to:0.07346003774160383 by:0.056805696788297895 in:0.0416107600907597 that:0.02905622092954303 and:0.02467035326219449 with:0.02014440136726561 on:0.015430709391926672 from:0.01479591339740682 for:0.00999001688776443 at:0.008697569348509893 as:0.007958168391348894 which:0.007402601942042994 ot:0.0072450720110951074 under:0.0062102376775843805 In:0.006189035443939838 when:0.005851471306194365 before:0.004736853921017367 upon:0.004679458792493097 :0.04080543091911631 +:0.04954342702842051 it.:0.03530946252520273 you.:0.023315495945959563 them.:0.017193038079966954 and:0.013520683102462872 him.:0.011009295710713846 me.:0.00950866265424806 .:0.009297859073061738 time.:0.008132050055990365 letter.:0.0066890279878905855 life.:0.006602230199295185 her.:0.006482164569183652 approval.:0.006437902403329871 man.:0.006379386590825806 country.:0.00583097472504618 world.:0.005766546446759826 day.:0.005498406968632577 defendant.:0.005423905189001727 us.:0.005303675126212845 :0.7617558056177951 +in:0.3125485743348961 the:0.13175112900445704 no:0.06511637088551538 In:0.05916840560226332 of:0.05080621259018388 a:0.0480149921265094 such:0.03288741286940478 any:0.028121285274067702 and:0.023787827596311234 this:0.020505339026403543 for:0.018813702488329222 or:0.016543451925415082 very:0.016478840189341856 with:0.01642881224512516 on:0.014721665623048838 without:0.012647173917386642 by:0.011859004673445613 its:0.0117409016080615 much:0.010492866705189388 :0.09656603131464438 +is:0.16885512799854321 was:0.11256193051376649 the:0.09050915211059526 and:0.0758786112260525 in:0.06365388262653268 of:0.052391954658008354 are:0.03660029040089997 a:0.033923447537974175 it:0.03358143680042101 be:0.03310602449458696 by:0.0290862713568742 no:0.026842559461816035 Is:0.024666737643364037 were:0.02156103453238568 or:0.021049384294695623 had:0.019675420849238758 without:0.01958339523324805 from:0.019492726830202218 their:0.018487435393426125 :0.09749317603736865 +the:0.35431347829941845 this:0.05531340352146633 such:0.05296337992773316 a:0.04829093453200209 and:0.0405912969372974 of:0.03685228527967251 The:0.03389785510254398 any:0.03055497612560157 other:0.026584174734057272 said:0.02624934797394395 tho:0.025201419273630378 an:0.0214653321876637 its:0.019128384768465047 his:0.019121963187032354 or:0.018595940261342002 that:0.016802592553583757 no:0.015445059230286936 their:0.01543543970130076 same:0.015429192419935525 :0.12676354398302284 +the:0.14699793618377754 of:0.08994071831157274 to:0.06308148529586025 and:0.054165188127262884 be:0.04120509388494921 a:0.041078034220234184 was:0.027466419430676348 in:0.025480578252164605 is:0.024241309679733546 for:0.02375241233477048 their:0.021036216553156642 not:0.01857663452901719 his:0.018461361142328894 been:0.017854755072299226 no:0.01597861174841729 or:0.014487839619450382 are:0.013012230320854478 it:0.011433371327433715 by:0.010401291172365126 :0.32034851279367527 +a:0.18254032881355212 of:0.11683053690086044 the:0.08718263802812902 in:0.054785159333389954 to:0.03698903854160334 for:0.033623229409672314 and:0.02978992089641234 that:0.02800277506151491 which:0.0192618310750173 by:0.018293712964983545 with:0.017500330978968887 at:0.017428927517365602 In:0.015918455565941726 from:0.012220386520679053 The:0.010995437768304629 or:0.01038276290147771 as:0.010180700329842715 was:0.009998986491698158 on:0.009419159030156025 :0.27765568187043027 +in:0.6149860377995263 In:0.24843096241689133 of:0.028765247316358503 the:0.019342791578712538 by:0.01354690533786286 iu:0.01151806753129041 and:0.009348721268653807 for:0.008958174669584047 to:0.005150203639454516 a:0.004704702786005128 "In:0.003781112317257898 with:0.003589803117459493 from:0.0034711037286330663 lu:0.0020068392054317097 no:0.0018725610153356273 that:0.001481360825636033 The:0.0013034335065521209 an:0.001282109405037657 By:0.0012202436203883576 :0.014239618913928574 +;:0.05411166157264848 it,:0.02438930071839297 doubt:0.021200740418943438 him,:0.01895492630562279 is:0.017912418201309777 time,:0.011484322392269212 them,:0.009997010736289523 nothing:0.009610914633048074 ,:0.009603305541988561 and:0.009132519333409798 true,:0.00815369452907864 here,:0.007518748848433454 right,:0.007240166605215738 country,:0.00657558607283752 out,:0.006473782725525149 way,:0.0062997700681248405 law,:0.006292567714754442 so,:0.006271399058761446 was:0.006002604556924176 :0.7517745599664221 +:0.021568460507381957 it.:0.020185613148308617 them.:0.01665010515419807 him.:0.00926353049666491 time.:0.0077054133307941815 .:0.00748962913427064 years.:0.006797274006629546 year.:0.006789826264798194 day.:0.005834759537914078 country.:0.0055581261761572295 work.:0.005516050566039441 life.:0.005437230553159665 city.:0.005417365104521011 here.:0.00496529332416448 home.:0.0049149139430652205 her.:0.004839536781430625 one.:0.004726788807375369 people.:0.004467632947621231 tion.:0.00413328583155298 :0.8467391643839526 +and:0.08995317707915026 to:0.06844710404109794 of:0.04605142056172993 the:0.04074574508561307 which:0.02479116931334353 that:0.023764822140213245 re-:0.020841117231308055 in:0.020803825395358622 for:0.020278423301550053 :0.018417753428486977 not:0.016860793136637672 con-:0.016444405871234195 is:0.014386481772210856 or:0.014080680914153714 be-:0.01352268143271276 I:0.01317002660943805 was:0.011429878269381662 dis-:0.011196807025842847 he:0.01113106290024311 :0.5026826244902934 +of:0.3065478640284015 in:0.17025201174971535 to:0.08855159317150879 and:0.042870907258812575 that:0.03851723572822849 In:0.03786972194036441 by:0.03570426845230988 for:0.032678888587307636 with:0.0312436861312774 from:0.026245219770926493 at:0.018553761221686095 on:0.013960380007614303 as:0.012714940172876284 under:0.010255167958696581 into:0.010209242040305176 through:0.0076677242519060254 upon:0.0071017183769917155 which:0.006941641487328951 all:0.006594963720051054 :0.09451906394369128 +be:0.12483201741473318 I:0.09933304747794354 he:0.08357907541703555 they:0.07294747997010038 was:0.04939609718784814 been:0.04188445505938979 not:0.04087668119128598 and:0.040155122120212904 ever:0.03700982239335784 were:0.032826906799388406 had:0.028081601204616523 we:0.025126922907866136 have:0.02209205870686041 is:0.021957346991596745 never:0.021318942927547352 who:0.02093793323416555 so:0.020201345806198968 are:0.017781245236861764 well:0.016043813524710012 :0.18261808442828084 +the:0.39749834532651884 a:0.07520030034269234 and:0.05540858759821703 The:0.03273515726769502 tho:0.030061875542463562 of:0.020144331424922633 tbe:0.014929647509541684 in:0.014268129706664795 or:0.013333166761078447 .:0.013287381914101323 an:0.009000188755386574 to:0.00880680429595084 :0.007943763822197133 Mr.:0.00773879605474787 by:0.007328417831573476 as:0.005922572098978465 for:0.0047526933692942485 that:0.004736121968310169 on:0.004594595720579333 :0.2713091226890862 +the:0.13552825635915303 of:0.1029805599383836 and:0.056621969468085516 a:0.03688610695349926 to:0.035891609243247594 at:0.027107278804001954 in:0.025080984553754897 be:0.020537450285025776 his:0.019054889112167003 was:0.01855957709963544 for:0.016758218523239065 an:0.014366761612739228 is:0.01297023757594031 by:0.012728027895913475 or:0.011269715867108057 .:0.011108667822817574 as:0.010004430656547202 :0.009973418216775389 this:0.009593732367737895 :0.41197810764422776 +and:0.06253030556275538 made:0.05739764389888412 that:0.030429871829951237 here-:0.027463092475640022 or:0.022396164460883487 taken:0.019956777300003854 up:0.018559394736702702 owned:0.016897426344520374 done:0.01670837305536476 given:0.01662201182416288 occupied:0.016205419890901768 ed:0.016059730687616233 side:0.01596937355286448 followed:0.015404535669341458 only:0.014779306475293222 than:0.014566071607385394 required:0.014070089326750341 way:0.013873221782368333 down:0.013734726389151733 :0.5753764631294582 +the:0.11919516938815296 of:0.07230453158552728 and:0.05781056740443249 a:0.043018564803886335 to:0.031305092790907506 in:0.020848713353460488 at:0.014270110001066288 .:0.012526810245749479 :0.012413283442322082 for:0.011719122709941797 by:0.010808400946589808 or:0.010404172990115616 The:0.01003576004804544 with:0.009811868184449042 tho:0.009295902015355835 was:0.008924239095331684 that:0.008672304223433876 is:0.0085591147338948 be:0.008335143826716943 :0.5187411282106204 +in:0.13262919359363476 of:0.11486708746089579 to:0.09599052147388294 with:0.0773767514717392 as:0.06402172481199178 and:0.04567014666601625 is:0.04395863035666364 for:0.04349149440534889 at:0.03379117387115761 was:0.033526145236741925 by:0.030310006998228372 In:0.028480767674914236 on:0.026655634128450165 such:0.02659030614605461 be:0.023880229118708574 that:0.023485744568633084 from:0.020025231345664092 into:0.018119513925453967 make:0.015068998883601279 :0.10106069786221884 +:0.10132530864253071 .:0.01586153736849991 it.:0.012994963694550781 them.:0.009972326155771085 day.:0.006466314186158732 him.:0.005963072708890589 time.:0.005952754819220498 of:0.005834450921883061 country.:0.005314225508045209 year.:0.0049247550547799 city.:0.004072303040063511 years.:0.003997040955926161 work.:0.003880377182773483 people.:0.0033836246305601453 States.:0.0031455025043576447 place.:0.0030640999552846737 men.:0.0029656503323313246 way.:0.002952433427976742 out.:0.002933009065662241 :0.7939962498447336 +last:0.19182813041923177 the:0.09005753049724316 Saturday:0.07501382681302292 at:0.07466198737773927 Friday:0.057513000347087034 Last:0.04915558131397681 of:0.03993855267281455 Thursday:0.03800470717248185 that:0.03228162985288826 Monday:0.03181395726829037 this:0.029698792104528072 to:0.028043203779746784 Sunday:0.02707997419188504 Wednesday:0.02585473734261214 and:0.02304443139876299 Tuesday:0.020002009856313875 a:0.019756768578050532 One:0.01942987433282657 day:0.01883607643021699 :0.10698522825028102 +those:0.1241494596753127 man:0.09647257693820609 one:0.06864074562889366 men:0.06722196391002626 and:0.05437020552245763 people:0.030979940032094304 person:0.020963365453529753 all:0.0204536784912768 woman:0.020364416264106462 persons:0.015210923058395255 Those:0.013133704233595837 girl:0.008507958139429471 women:0.008403983866970317 others:0.00813648670072874 but:0.007082815022956213 many:0.006629290754254381 friends:0.0066258721392743955 man,:0.006050645924421269 farmer:0.005999321404590627 :0.4096026468394799 +and:0.09756556368541265 was:0.05426276517937397 is:0.03866664491042744 up:0.02568624008661788 it:0.024967480530237875 made:0.021983496168589956 put:0.021728272405609952 placed:0.021433399872469706 that:0.020699896774439272 are:0.01933805732185307 them:0.019230578399337284 him:0.018697869349579923 be:0.017987018805625865 but:0.017054981134282398 were:0.016928399532571015 as:0.01666685808038748 engaged:0.01649642158281899 found:0.01526160066577768 out:0.014987717957962178 :0.49935673755662546 +of:0.09129790931378902 the:0.07369883040827747 and:0.047842263382354346 in:0.04189055351593407 to:0.04045875475680249 a:0.03542341257202578 be:0.02020462051672066 for:0.01979292654746225 was:0.01760256398103379 at:0.017380150555488715 is:0.014984483003968216 with:0.014047653760730413 by:0.01374644383819499 :0.012670486581795598 In:0.01200961464556976 or:0.011563835749786333 from:0.011391516893522809 are:0.011273104484969465 that:0.010755276030689069 :0.4809655994608848 +the:0.16579546578264578 a:0.08447184262799293 of:0.07930038078598547 and:0.06727772960931389 to:0.06273891623626124 in:0.03157908553626403 The:0.02124046129896471 for:0.020813445205614154 with:0.019821469637669318 that:0.01640292350175695 which:0.015631201157390296 at:0.014366934995036044 an:0.01293916389713687 :0.012088021450867391 as:0.011202442493758572 be-:0.010677262348309858 by:0.010102992304290003 from:0.009910897517623946 is:0.008713035554029662 :0.3239263280590889 +and:0.09990190227683325 go:0.049229518905767065 passed:0.04084625106478772 as:0.033494401905133614 it:0.033234932579209474 near:0.031963835244438694 gone:0.03181297293302944 made:0.030224563206903823 left:0.02757932711383455 given:0.02544750693342025 up:0.021608097617783078 that:0.02127016837136393 went:0.020299225569684446 sent:0.01942758065882062 time:0.016774437552747382 offered:0.01670088330561404 taken:0.01549149083993706 on:0.015437334742850512 held:0.015285980492847687 :0.43296958868499336 +of:0.19895826940871328 and:0.11144453804799773 to:0.10920615911368448 in:0.08016498820424388 with:0.049793353006836134 the:0.03325936431266051 from:0.032244383642616316 all:0.03165820143416863 is:0.03133823204320919 on:0.03069632664604497 In:0.024524079252543202 are:0.015666898581124647 a:0.01474365178791905 for:0.012680292522569208 upon:0.011751146792414707 by:0.01095358434385499 do:0.010530985627731523 that:0.010249317068340641 was:0.00974827639523911 :0.16938795176808785 +to:0.16820287409390067 and:0.13211465827242655 of:0.029932185772674622 I:0.02801189662565193 the:0.023136484902272852 had:0.02159773518167427 who:0.02101222318379878 would:0.020936132923728618 not:0.02054076211858964 he:0.019376995570204676 will:0.018181966020541014 have:0.015230816872065931 or:0.013317407078060686 it:0.012745920907422189 that:0.012430437018850944 in:0.011578040496112161 has:0.011381112264303052 which:0.010963520314163977 was:0.010502414123789373 :0.3978064162597681 +the:0.14584846138369303 of:0.09977504668500542 a:0.07635944874527309 to:0.04730261836954304 on:0.04726348954041316 and:0.046091069498271 in:0.028616290729213966 by:0.019464115389003174 :0.01897761094432113 with:0.014280128684278174 from:0.013782309292121073 The:0.013444467590410892 an:0.013425177345727075 that:0.010337575367867982 at:0.009474879382960499 was:0.009328315127554967 for:0.008948120707065082 be:0.008288977145711527 or:0.008288756939426052 :0.3597031411321397 +be:0.255717624995651 was:0.14607935264328473 been:0.09762365856466068 is:0.07548205717176402 have:0.04848107217337975 are:0.046751274125327605 were:0.04548503797918723 has:0.0353155408739448 had:0.034882275958928975 and:0.021580851660030397 being:0.021323320652884083 hereby:0.016245765119608926 Is:0.013024450695477906 bo:0.012603718630511481 he:0.008835232389587477 ever:0.008730725125347373 it:0.008228309799835055 duly:0.007607539257949996 not:0.007223847139126617 :0.08777834504351192 +the:0.1972922914779867 of:0.10707931134205359 and:0.07751345641690036 to:0.05965814400216777 a:0.03916990992603793 his:0.03332219732032006 their:0.03331774153636291 be:0.032850203570027194 in:0.031999481129964404 for:0.024419230255829164 was:0.015886632700938704 or:0.015687069681538747 with:0.014077907000147974 is:0.013616501400885488 tho:0.01238352879917961 at:0.012265965151178969 her:0.012068523214408489 by:0.011646939161358685 not:0.011571641806894432 :0.24317332410581885 +the:0.11377470187158581 and:0.08711323549019098 of:0.08626862644670025 to:0.05308022887140027 is:0.028238418494890418 a:0.027975394763503997 in:0.02551515071340541 was:0.02499305836976508 be:0.02412262264761122 I:0.018002817374873015 for:0.01592298141911233 :0.013621271381364205 not:0.013468358457444735 or:0.011980292661008272 at:0.011730803372220554 Mr.:0.011620691526119373 this:0.010733090296112788 his:0.010094031120479829 he:0.009613516343539588 :0.4011307083786719 +June:0.19261574193865652 July:0.07169794388012886 10,:0.06950046036830552 March:0.0588688202020758 of:0.04411448149985333 April:0.0418441360770781 May:0.03715446823630154 November:0.030838000632651935 August:0.028911622990155893 January:0.0276019509789081 No.:0.025786993173954848 September:0.02441709159890956 lot:0.02143966382930603 October:0.02136255741734036 Section:0.01999824504223185 February:0.017077115244288822 and:0.015297942345880609 December:0.01432299246685056 to:0.013949488516345615 :0.22220028356077617 +of:0.257962857358814 and:0.10228222876496752 to:0.0959432679021204 by:0.06595249170064538 in:0.05261263569525246 that:0.04799607773377159 from:0.04033535707722095 on:0.040162799073844506 with:0.030122056654618354 for:0.027402761340805982 as:0.014901515864488485 when:0.014744699489371888 at:0.014512277990910092 In:0.011904295580279042 was:0.011220462579913274 is:0.010065158234222774 upon:0.009716600100974228 which:0.009389372943782868 all:0.009035770133982187 :0.13273731378001397 +:0.09178762790283747 it.:0.01854685854510102 them.:0.01045168517580793 him.:0.009305598829675457 time.:0.007619747730170034 .:0.007476887488537136 country.:0.006267110064720678 day.:0.006210803816634025 of:0.005244420100669073 year.:0.005144747431408625 years.:0.004635696359463443 work.:0.004302730061932871 world.:0.004167178464953356 people.:0.004141862765529801 life.:0.004104471752490276 way.:0.004018101717711128 tion.:0.003981228669381991 city.:0.003782905091740464 States.:0.0037670588556701725 :0.794043279175565 +and:0.08702895176279112 there:0.058927250936514866 to:0.035400346865530785 of:0.03318835359839487 he:0.029721090938317957 the:0.028395147531536647 or:0.027446113860986294 I:0.02698318734392992 is:0.024111392845161932 con-:0.02328155154028612 dis-:0.022801970636421212 that:0.022732784862292243 was:0.021336766791126366 it:0.021264003740414997 for:0.021116168551113305 which:0.020876657506052724 be:0.02078242066191899 will:0.02041306214974865 re-:0.018881022153915777 :0.43431175572354525 +and:0.08108270614863076 was:0.03337636190782731 file:0.032365821031463564 that:0.03137990279433599 made:0.031314984504834185 is:0.024290147357214256 but:0.021687652297752987 people:0.02163715691248356 them:0.018308540566945117 up:0.01813290259134375 not:0.01719986021882492 men:0.01717207578350124 as:0.01527406663907151 be:0.01497643366346667 done:0.014786995807637341 him:0.014620604766485782 been:0.014434796482095821 it:0.01410461709779158 interested:0.013562642022294564 :0.5492917314059991 +of:0.27419866528696835 in:0.20211635971246508 to:0.10095608238764368 In:0.06611505108836593 from:0.042123644290717674 and:0.034891431132585235 by:0.029697014936910137 that:0.027412008978291037 for:0.02736177624395014 with:0.022920635227223308 on:0.02173573645510611 upon:0.01621869671466266 at:0.012106885481230147 all:0.010030379346915643 under:0.009852622251235852 is:0.009711681931616551 but:0.008798522980202794 as:0.0068218306286003646 To:0.006743575397561675 :0.06918739952774763 +the:0.1209274926804341 of:0.11642704741038282 to:0.07665036299464342 and:0.05951473605415944 a:0.04570850511844254 for:0.03904899188513177 in:0.03863191529831529 his:0.024532963227264587 be:0.021268595340355974 that:0.019899855076303746 their:0.018138204786949795 was:0.015575488577714586 at:0.013722215043739626 or:0.013113996348126693 is:0.011073401633171798 other:0.011049297399637741 by:0.01069348476584563 no:0.010147599615925767 with:0.009923236693418982 :0.3229526100500357 +the:0.11500545585881412 of:0.0897605566703555 and:0.07914879987306167 a:0.05827037833039227 to:0.0386987683614473 was:0.029282661483795363 be:0.023890810389268442 is:0.02056818843792312 been:0.017204803150083207 or:0.017094944717067368 in:0.01610392931760865 are:0.015798243080240505 his:0.01344187865263006 at:0.01321973597799718 for:0.01304287912725108 their:0.012337012043366955 were:0.012236169772424844 :0.01133284696603621 The:0.01095822742659897 :0.3916037103636372 +is:0.1362680488321389 that:0.09992077715426297 was:0.07831458928438204 do:0.06104668081380386 and:0.055402860017251594 have:0.04749269597354852 for:0.045267875533223624 are:0.041676075474460554 be:0.039834886302926434 had:0.03842254423649292 but:0.03069294238970211 know:0.02356201152957936 of:0.02333583724855857 made:0.022881776896026603 Is:0.02215875740640906 in:0.021418828041981933 with:0.019841720197131377 if:0.016070102887317594 make:0.01572398538824938 :0.1596670043925526 +of:0.07707962683720591 the:0.05534459534629216 at:0.032732044531753504 by:0.027068977803679783 .:0.02410078871881222 in:0.01986786089384364 :0.016394187932846124 and:0.014951248068413992 to:0.014866285122125 -:0.012931063515594522 on:0.011422766976090543 for:0.011398739447358027 from:0.011388525214199289 with:0.010486019308344934 The:0.006913741439660575 t:0.0068078161748352135 Mr.:0.006568736570219497 In:0.006191441476939792 D.:0.005865002859373574 :0.6266205317624117 +and:0.08870815442374878 was:0.04428559951068267 is:0.031034268200307934 up:0.02697901509172133 it:0.02480520504344313 that:0.02449263795166557 made:0.02310721387848904 them:0.021934354763301526 him:0.021488418647441974 be:0.01997507483727601 found:0.01834151577518085 put:0.016971115819709854 but:0.01689342768922557 placed:0.015587330622879994 engaged:0.015417247236170852 out:0.014394193317887468 are:0.014386632920084033 as:0.013713717542984514 were:0.013214272997521679 :0.5332706037302772 +No.:0.06964656882954796 at:0.06430189028755384 U.:0.056403531503906396 of:0.041311654504950224 to:0.03513819000673637 and:0.03238790498925755 .:0.02177847648849194 lot:0.021692626532410827 in:0.018357460760258806 a:0.01714003156619647 thence:0.01615995842313142 A:0.01501482859464912 or:0.014904540537568203 feet:0.014845887647842585 the:0.013962017365283531 with:0.013382327988373062 about:0.012565438148019793 deg.:0.011394684315724145 block:0.01069568189899382 :0.4979162996111039 +the:0.09684081064840576 and:0.06551335624548284 of:0.05146145169206151 from:0.049520598669154245 a:0.045427902131977435 to:0.0370403239153822 be:0.035669151526387034 was:0.030489628475080553 is:0.026635804908522978 in:0.023878514238638158 are:0.018513936943033917 not:0.017945708099223703 or:0.017556265685966497 been:0.014265228721347686 at:0.013857211504087178 he:0.013733215789660087 were:0.012396679125422956 I:0.012347944480187516 for:0.012197989992860347 :0.4037082772071174 +the:0.1454500361787387 of:0.1080247151493501 to:0.04516715868785427 boy.:0.036249098323069925 and:0.03403580073245388 girl.:0.032660326140049385 a:0.03171979252021135 in:0.02714044436566853 for:0.02365213940166824 be:0.021942286684630472 their:0.021087116084698817 his:0.019774122064073623 was:0.014637031197642503 with:0.014008395154201525 are:0.012730720509515858 is:0.011363112041341867 as:0.011357870543086747 from:0.01063391638067422 were:0.010589399829418696 :0.3667765180116513 +of:0.283751695589506 in:0.2329877399749721 to:0.0838148971248428 In:0.05872694804908832 and:0.042697485319388676 from:0.041497968647803175 by:0.03447656977246406 between:0.02920316989767191 for:0.023209388780905473 with:0.01984695504898113 at:0.014216766558451235 that:0.013342223364213372 the:0.008505665315147026 as:0.007957389734555611 upon:0.006494674551956594 or:0.006352763796839373 on:0.005984431629979864 ot:0.005071999235180002 iu:0.004890237279662584 :0.07597103032839064 +the:0.2874603255914757 of:0.08538362838235555 to:0.03306244205347647 by:0.028010604548913062 said:0.026599061364142414 and:0.025719444790783804 minutes:0.021732205149819654 in:0.020852342138995197 tho:0.020642114995496782 on:0.020106699628825025 degrees:0.01739481783272253 from:0.01500176350898576 at:0.013937248235239924 The:0.011719798589192013 :0.0116487779757244 thence:0.01092800833237721 a:0.009741778260297903 tbe:0.0095294690532367 .:0.008917534187372973 :0.32061193538056687 +of:0.09129790931378902 the:0.07369883040827747 and:0.047842263382354346 in:0.04189055351593407 to:0.04045875475680249 a:0.03542341257202578 be:0.02020462051672066 for:0.01979292654746225 was:0.01760256398103379 at:0.017380150555488715 is:0.014984483003968216 with:0.014047653760730413 by:0.01374644383819499 :0.012670486581795598 In:0.01200961464556976 or:0.011563835749786333 from:0.011391516893522809 are:0.011273104484969465 that:0.010755276030689069 :0.4809655994608848 +at:0.35192025072856226 for:0.10647638466568336 of:0.07419067666162908 to:0.06268401504248527 and:0.04244851966578317 At:0.03957536884719112 during:0.03477812045170813 that:0.03418399897315247 in:0.033862175708172966 from:0.025621702324958764 all:0.02429031183628755 by:0.01920866002449512 after:0.013027247536464694 until:0.012536081107947527 on:0.012309965813600979 within:0.011984158727070376 about:0.010433318492459924 In:0.010406822737012949 By:0.010383473933220767 :0.06867874672211355 +and:0.14868997741076614 so:0.059419259235811726 fact:0.05817272128681485 know:0.040973324992650245 said:0.03399586069758518 is:0.03379053442048322 say:0.03334539559835076 but:0.023573030402058635 believe:0.02038189140298399 me:0.017699290916216928 him:0.017416131358349445 all:0.017376926907195406 says:0.015213736366744479 think:0.014905898430444858 was:0.014708075962149632 found:0.013868837292830397 stated:0.013591874037772718 hope:0.013385358249117471 see:0.012648605726683774 :0.39584326930499014 +two:0.0924959989768227 many:0.09008762240207177 three:0.08040333139041561 of:0.0652703545643547 five:0.06350289307543046 for:0.06325762493559926 the:0.055856166818434604 four:0.05207970280483066 several:0.036616578632601315 ten:0.03501484481174683 few:0.02980827394706445 twenty:0.026285476570121286 thirty:0.02440616358677004 six:0.020014730737377875 hundred:0.018139984040443504 thousand:0.016334956212005626 these:0.015572671669015985 For:0.014795236798312912 recent:0.014530020143068268 :0.18452736788351215 +to:0.09510176257557867 and:0.0759782477397007 of:0.044882537993784916 the:0.0315600709783228 is:0.027469709441114137 in:0.024414242512733896 was:0.023644505786906175 con-:0.02072663556943141 will:0.0197525729259325 re-:0.019515757684955143 he:0.01933396268374066 I:0.019168528042120436 for:0.018758717550584603 be:0.018539065847662673 would:0.018528419960293203 that:0.017041510263127942 be-:0.016586329410835588 there:0.01648203693916975 not:0.016023551150036123 :0.45549183494396867 +the:0.3070313699618012 his:0.20872042266339977 their:0.06983352084366781 her:0.04604812886084941 a:0.04176481529287164 of:0.037879698766234884 to:0.037694006199611156 my:0.0335416553876082 its:0.022590553636503894 your:0.02094142481208659 whose:0.017589483493246915 our:0.015449390715543986 tho:0.013057396639225055 own:0.01103590290058415 bis:0.009134424524501328 in:0.009052132681279775 full:0.008974966146511125 firm:0.007721285641904809 The:0.007252995225670746 :0.07368642560689759 +the:0.5439871234938888 this:0.15768266273648723 The:0.05161594499268595 a:0.02995803487811453 that:0.028402159515490313 tho:0.026744840063276338 said:0.0216591944412099 and:0.018639233212199888 our:0.017687356738446496 tbe:0.009786139400102818 any:0.009234780188559501 other:0.008954211837725596 every:0.008333728727167691 York:0.00675530512820212 of:0.006736519083169004 or:0.00600300028151999 whole:0.0036008333809630965 This:0.003251323261918076 your:0.0029543445935377066 :0.03701326404533497 +the:0.493200654242159 a:0.16432802332025556 of:0.06925592780627518 for:0.04478221088490199 and:0.03820058089560218 The:0.02396099076716755 or:0.017283648359369307 tho:0.014886802478095528 that:0.013030863827597309 said:0.01286826231470543 by:0.012210815651934052 on:0.007668954518227548 in:0.007592290328671082 tbe:0.006489727216589754 this:0.006041993553775004 A:0.005898016671408185 last:0.005865885114906088 some:0.005636592881006192 great:0.00556724110707118 :0.044230518060281894 +of:0.13084814232797154 in:0.0740836656586379 as:0.0625527229231004 with:0.059577596335708534 to:0.058433603729754965 is:0.05551580107464621 and:0.04946529489577619 was:0.04264000753602388 for:0.04009673021586375 by:0.037684080471064085 be:0.023941707008899252 on:0.02316059851167503 at:0.022644769441950232 such:0.019950936521181326 that:0.017856095877642635 like:0.017386655618315594 In:0.016902219705578994 from:0.016046571451088905 not:0.01205910100844263 :0.21815369968667797 +and:0.11203614284734381 made:0.029480560291083903 necessary:0.027231632327903786 provide:0.01978786821063526 him:0.018624150941585572 time:0.017844902254185023 but:0.01736032991925495 pay:0.01712283223509279 responsible:0.01655246417854943 work:0.01573375727996718 used:0.015721729148453864 that:0.015344008200088246 providing:0.015123591452644664 or:0.014918878594106077 it:0.014272018550925738 vote:0.014240496926603478 out:0.013886758983508773 demand:0.013625570335128902 ready:0.01288626098417059 :0.5772060463387679 +hundred:0.013633628820093018 ;:0.011172311961148602 him:0.009807052834026905 one:0.00914669734384353 feet:0.0090219372983598 up:0.00838318558829166 mile:0.007527126877816727 feet,:0.0071805242500254255 time:0.006879602834379732 man:0.006817451499927337 it:0.006300585667639516 it,:0.005903705234588485 out:0.005451849962934835 :0.00538718305729827 ,:0.005295204710281874 and:0.005240008239108335 here:0.004938150073064577 water:0.004837308913464981 them:0.004796443021708541 :0.8612800418119979 +the:0.4344215039084682 of:0.08778102503648756 and:0.05163632400881776 this:0.04830455654859483 a:0.025342311287037372 White:0.018543406489270137 every:0.017730238026218186 tho:0.017686951296419045 for:0.017106412446299457 our:0.016530172750556498 said:0.015838899870274127 in:0.014804473226874055 County,:0.014436537377645747 to:0.013182056317123015 The:0.01176477068106632 that:0.011510765807979766 county,:0.01107881995079257 by:0.008978835370048104 tbe:0.008800450252833908 :0.15352148934719337 +the:0.713338310490547 tho:0.04014074294172752 a:0.0264089696230926 our:0.019114332847081767 of:0.018700418158640313 his:0.014365335367169687 their:0.014305748115344035 tbe:0.013297976768776127 its:0.011367158533529239 this:0.010987979448425783 and:0.010850477710348425 The:0.01028467623617203 in:0.007784737004717614 her:0.007396850109267687 or:0.007169693466704695 school:0.0066675598010640606 earth's:0.006534003641175316 new:0.006523016796496068 on:0.0058820193984506315 :0.04787999354126949 +virtue:0.062060494787377685 out:0.05417899169104244 part:0.03289673107629515 one:0.02969369892462812 quarter:0.027015883171169475 favor:0.01993830018372674 result:0.019463829004704194 guilty:0.018891084377354095 means:0.018499162894926688 end:0.018170939082736048 that:0.018121271122199262 construction:0.01726217741616459 presence:0.017003995482744873 tion:0.01673652166540914 case:0.01640819963257697 side:0.016055927605250184 erection:0.015381239457214257 account:0.015287601389485416 hands:0.015156055434805247 :0.5507778956001894 +to:0.19822028101438874 will:0.12884024988920445 not:0.07102522485180028 would:0.05830508758140656 should:0.04689559789990364 and:0.04230750860927514 they:0.037802560794149724 may:0.034861203307955634 must:0.03324818920124091 shall:0.031046615563001867 we:0.030038050247574277 I:0.029473544105506042 you:0.027653524305709675 who:0.02441851397048229 can:0.024248831141095144 cannot:0.022346211509216347 could:0.02108519140656743 well:0.018186969581244036 They:0.016359796298370196 :0.1026368487219076 +the:0.1682399238185766 of:0.06862176138246426 a:0.04984083984433776 and:0.04253864409480595 .:0.025818418850345484 :0.022930603914533523 to:0.021363663046187444 The:0.020423533099819494 in:0.015202939927735 that:0.01414997723696189 was:0.01328501301222945 at:0.01304373320669445 tho:0.012206610665509252 is:0.011794310361743759 be:0.011752138399900141 this:0.011636433913217333 his:0.010218813407395805 by:0.00998705982495687 Mr.:0.009862452368551518 :0.446083129624034 +the:0.13495043060413897 of:0.08116512228138067 and:0.0666484668031579 to:0.061479885922863124 for:0.0225472057129304 in:0.022258265482069606 be:0.02060705238488401 is:0.018128702512605167 was:0.016565762763359006 a:0.015576597161064762 that:0.014241236932705084 their:0.013967877427544685 he:0.012125594536493497 or:0.011887633530224664 will:0.011130101470498135 so:0.0108874112080436 at:0.010863400836486839 :0.010492776840493524 his:0.010323787803221298 :0.43315268778583504 +of:0.3110039611683842 to:0.07609914848213424 and:0.07167435165584969 that:0.06682101895080984 in:0.056755801251930645 with:0.053032147615178334 by:0.0410653272441583 for:0.04095081798019798 from:0.0329414507200425 on:0.03277721463553718 all:0.021774528402027506 as:0.017641696115924584 is:0.015804619098096977 In:0.01458736716450939 upon:0.01345772855995915 was:0.011727920909710558 at:0.0113316439673679 but:0.010870940973757673 when:0.010210631920350242 :0.08847168318407307 +and:0.17286426135826857 he:0.11652105537473868 one:0.07021416694084813 that:0.03944195260968534 who:0.038054237101749114 it:0.0307629844760377 which:0.029449033339459495 as:0.025033204747187145 He:0.02465970006404261 or:0.019772143520214575 she:0.01771124325014652 man:0.017695921121165137 It:0.016269638004313358 lie:0.01223670493615584 ho:0.011900198523721553 :0.010436809812262719 I:0.010101955968810842 country:0.009516791038901224 the:0.008843797379014222 :0.3175142004332772 +of:0.2216666977158274 in:0.11315600054577736 to:0.08451677747063276 with:0.05459457701357842 and:0.053201116550581094 that:0.048869351283334764 for:0.04652564665971443 by:0.041641114507012474 is:0.04019376283231503 on:0.02366070229647344 if:0.022519903961537052 from:0.022323076944866193 In:0.022136130820530876 at:0.021946950287511334 as:0.021107646490652048 make:0.018236510235099947 have:0.016692761579005615 upon:0.015762905052677117 was:0.014657954093019758 :0.0955904136598529 +and:0.14156486523277667 is:0.07070847055661178 have:0.062111282304476746 he:0.05820468326034467 who:0.05256498352610496 was:0.046392225830539986 be:0.04267987945679847 they:0.03987997895703755 has:0.038671649690880425 had:0.037224896323714375 are:0.03315154709305094 not:0.030734089627322242 it:0.030203297441160386 we:0.021860799574352587 I:0.01953530733396179 He:0.018570464210927583 which:0.018061064265871167 were:0.014273586193834318 It:0.011714814983623673 :0.21089211413660966 +of:0.06692648519808776 the:0.0661529565859335 and:0.05992812836801661 to:0.037915083415104245 at:0.020877148758107845 was:0.01702338027489992 or:0.015131878165021144 on:0.014099150249739486 that:0.012503168276767002 :0.012270624299977537 is:0.012126937764294498 in:0.012105814056150258 be:0.011167991936324614 thence:0.01018492893071709 by:0.010160559738314886 are:0.009892452030925767 were:0.009568705181502504 a:0.009409163952248676 as:0.009019561832856252 :0.5825358809850104 +was:0.13461079191336747 be:0.12770760632891004 and:0.08138615113385829 is:0.07253055655292782 he:0.06377838224470829 been:0.06257640054257706 as:0.03881815939406826 He:0.027131249371566035 were:0.022912065959088672 who:0.02270566573093662 have:0.021083371036069373 had:0.020558702850392054 are:0.020552283567455355 has:0.01768086758767932 Is:0.012040436536199883 it:0.010365067776995912 I:0.009229644855588866 lie:0.009163742780929735 being:0.00871869436238867 :0.21545015947429227 +of:0.36862356144623154 to:0.06264528024205578 that:0.062260618168795426 and:0.05736651197026697 by:0.05698743086085073 with:0.04550576969064262 in:0.044011110288558676 for:0.03937397865168568 from:0.030926603904087503 on:0.02380661959709437 as:0.01461698616043744 is:0.014078687627619347 at:0.013128762920970549 under:0.01195630361584338 if:0.011940115811662724 upon:0.010567266805171898 which:0.010430438168905192 when:0.010395206355012425 In:0.009950937719129228 :0.10042780999497848 +of:0.23688297991167712 to:0.08544137439647968 with:0.06831021025426992 and:0.06663029439293067 is:0.06132895290239589 in:0.05833124983479274 that:0.04356047760260393 by:0.04086631639624703 for:0.040657496436844624 was:0.026292763717021318 be:0.02198853247523512 as:0.01960183577437275 from:0.019081800932843593 on:0.018371348738530472 all:0.01753741543311244 make:0.015144175723713453 have:0.01455190543576532 under:0.013789973672113265 are:0.01309719629325165 :0.117533699675799 +the:0.6711931801467185 The:0.09199203444995488 tho:0.04200538562893471 a:0.03646288048311702 his:0.027979739883339173 tbe:0.014834381081946665 this:0.01454173547351771 my:0.01376050003612589 their:0.009557435121970574 our:0.008520589973235007 whose:0.0065624987408233314 its:0.00587829047669418 your:0.005854256232518302 of:0.00447945845644761 and:0.004279790291262965 her:0.0038827620944198848 His:0.0038166568951280965 no:0.003734017689834193 Tho:0.003712089358413923 :0.025952317485597464 +the:0.4117914329620864 this:0.19696674633310535 said:0.0870770099116429 a:0.0773813447923993 that:0.02083215542377698 tho:0.02064800182329002 and:0.012882234965085594 our:0.011789047679269757 York:0.011574738798293299 any:0.00993590226496735 The:0.009904605304998185 of:0.009746762863807943 tbe:0.008655084976322586 every:0.007158742416090104 in:0.005407723616591957 or:0.005332187160466457 great:0.004506801342167436 his:0.004495372873756467 other:0.004462522739403157 :0.07845158175247871 +of:0.10314511627332144 and:0.07709322539131663 the:0.04746844715875127 .:0.025786549953025362 to:0.022546361821924026 Miss:0.014229625842435716 :0.012360451596153673 No.:0.010939344486886996 by:0.01041975612384321 at:0.009203421659063201 W.:0.008764763931925159 W:0.008037697484799341 John:0.007533351070962052 as:0.007067105696867011 The:0.007064689882417248 1:0.006788698840547047 J.:0.006699746014027538 E.:0.0065690134824973375 H.:0.00649846037111002 :0.6007841729181258 +and:0.1268017286716516 that:0.1132797657656111 which:0.09144719116008981 as:0.07743403900534443 when:0.06665001629954304 but:0.05597327868054659 if:0.04332397751949889 where:0.04147206421895006 because:0.029923406963280975 what:0.024166611545126417 until:0.01953700301343167 time:0.013790261181657722 for:0.013338161407975445 If:0.013041681028531106 or:0.012667719677133876 than:0.012547611607001229 while:0.0116500847301996 so:0.011428729308915116 is:0.011168933757388122 :0.20935773445812322 +there:0.15282240558043036 It:0.1250877021251384 it:0.1172130349964821 he:0.08447653464159645 There:0.07990106646359449 He:0.053545487723974064 and:0.03475602177722308 I:0.033514699763994925 which:0.028339689006514263 that:0.02258044118480592 she:0.020389246311069347 This:0.018864857928065765 who:0.017143411225723663 She:0.014044583378045664 this:0.01264429778309141 lie:0.005676248946248602 ho:0.005008892472785812 as:0.004728079857187771 one:0.00469102709236943 :0.16357227174165848 +they:0.19723916198831284 we:0.06594450789550686 and:0.06177808588771924 which:0.05410779385235002 They:0.051278479827991226 who:0.03962830315129896 that:0.037246093594499416 men:0.029801853399531685 it:0.02032827885691152 you:0.02023073086403185 We:0.01840878153097815 I:0.01620432799457594 there:0.015792416468221382 them:0.012205708970514416 people:0.009589794639188194 all:0.009192161904545571 he:0.009109978892235051 these:0.008009353962314635 but:0.00691094310540492 :0.3159932432138681 +from:0.16862416068683242 and:0.13333172903526758 or:0.10481865402791976 of:0.062308331573029806 in:0.0475062090103595 for:0.04532566042123394 with:0.03727912976845428 to:0.03224349660746521 are:0.030096751057768465 was:0.025688199062817104 the:0.021370118880940887 by:0.019493877063645415 is:0.019432996013870652 were:0.017569632452551536 only:0.015152281516730969 about:0.013861015575922484 be:0.01360538187712391 not:0.01192827334895866 but:0.01166281735921808 :0.16770128465988932 +be:0.2450448005242683 was:0.21325371150955819 been:0.14140035092741918 were:0.07088797596454498 is:0.06532083959699549 are:0.03913883451016806 being:0.028110804266372358 and:0.019434214659063455 bo:0.016743772468030046 as:0.014795606809902257 so:0.01322212594852822 Is:0.012822664906130592 he:0.011990735069543214 it:0.009319928196563626 not:0.00828181569147434 am:0.007331931999323329 they:0.005963202505107798 have:0.005815900699083414 now:0.005597412351863992 :0.0645233713960592 +of:0.16763292548627154 in:0.1462570873602159 the:0.14301764856182858 to:0.05817085637152632 a:0.0573597563856376 In:0.0363677130403542 and:0.033347677933938086 from:0.021841431264308746 that:0.01690412764768278 for:0.01625210914404084 by:0.014395526070255177 as:0.01382578579676655 with:0.011295067256998364 at:0.010886755412257625 an:0.010131370120172133 The:0.00852577152806468 :0.008346265188346975 which:0.007342449075466379 tho:0.007163006964860217 :0.20993666939100733 +thousand:0.2338080043696445 of:0.14665954748922835 hundred:0.10193960957267487 million:0.07137514027765117 fifty:0.03901108319131952 many:0.02746080424908998 billion:0.021376803884419163 few:0.017629688086418203 five:0.016174412502917707 twenty:0.015684567670953633 six:0.013212107456254098 two:0.012712189667854737 several:0.012474355381751795 for:0.012388377979377866 twenty-five:0.011264332824767471 silver:0.01067616668623247 ten:0.01062777756861891 four:0.010168211595775363 three:0.009396418634219715 :0.20496040091083045 +the:0.30189525136855444 this:0.16611199674249763 an:0.07432425319546213 that:0.07135571289476944 The:0.05697852476810143 and:0.029723925000027913 to:0.027317139740226096 This:0.02323661874213149 An:0.0227599639761304 tho:0.016287622476552677 said:0.015164777914271224 No:0.015022041495125874 a:0.013543360900258847 no:0.01261595274055009 one:0.012459268703213032 which:0.010627260572338518 any:0.010487788432037806 or:0.0090033869291585 "An:0.007881954238205638 :0.10220319917038682 +it:0.26482642738178047 It:0.1918326389112439 which:0.05347059549272053 he:0.052892639049434594 and:0.03917327600127094 that:0.0391012494699936 who:0.018827202982742538 He:0.018602225647250125 this:0.018135445798547235 This:0.017032687588534608 there:0.013332726710299154 what:0.010581304376688493 she:0.010492649085831276 as:0.008747773465599532 land:0.00801655980580294 work:0.007229088553908918 man:0.007213576431444701 but:0.007052016620232398 time:0.006491444655313057 :0.20594847197136099 +the:0.14390932682697047 of:0.07445676796520116 and:0.06313871989049705 to:0.04386965503935122 a:0.02324055173200115 in:0.02272484735589123 is:0.02076058212449911 that:0.02050254240126092 as:0.019501948793164553 be:0.017806598877489938 so:0.017546304387608562 was:0.0159933045371179 or:0.015573283652603936 much:0.014023022250232895 are:0.013814365826480329 for:0.01309270147844161 this:0.01289240376571309 his:0.012235985731809581 I:0.011837376441517038 :0.4220797109221483 +made:0.0999812034390529 and:0.06680208263369662 caused:0.02435411478715239 shown:0.02379785223577525 up:0.023253655008919294 ed:0.02312002180398423 out:0.022293807888227747 taken:0.021988971765594088 done:0.02128782706813444 given:0.020283609421760777 paid:0.017098570970207227 owned:0.01708227903067019 that:0.01698438626809451 or:0.016145946252097726 him:0.015808363688274 followed:0.015366441255538056 appointed:0.015126279845513936 held:0.013990473525433292 approved:0.013949758860964168 :0.5102843542509091 +the:0.16287760685838365 of:0.0883592780729449 to:0.0618987346693935 and:0.05423685233212741 in:0.030811253892523358 for:0.03057359609188714 be:0.025098115820027647 was:0.01826945122296575 is:0.01662970283289366 a:0.016448402520667066 or:0.01633619095301082 his:0.015510346299682681 their:0.015084175217362073 are:0.014656254371894712 been:0.013019491851438341 were:0.01267572744006931 that:0.012270302451397866 on:0.01131798809455223 :0.011150587255169986 :0.37177594175160794 +the:0.36194992100734613 in:0.2504020033522344 a:0.1310410616975561 In:0.0652890879786707 The:0.01773364474694284 this:0.017577812530023478 any:0.01618645321062597 tho:0.015738806636050727 every:0.015365573511489167 no:0.007700866761439791 tbe:0.007036946552304716 that:0.0067685000341775456 A:0.006157151030413604 and:0.006081490587000122 or:0.005784710073933747 such:0.005608626102383325 one:0.005101649718909381 iu:0.004818422217105215 first:0.0044192844689990764 :0.04823798778239393 +and:0.051654636516201016 made:0.051015454799921624 or:0.024674408513783483 that:0.016062835335927065 him:0.01565924413931051 followed:0.01563124550437536 owned:0.015583321950137187 ed:0.014866750499448756 accompanied:0.014614648987466283 it:0.013626457525371337 taken:0.013108391888807197 them:0.012651103019890095 caused:0.011867361447385745 up:0.011657883035474385 done:0.011150870541727875 only:0.010691704012969913 given:0.010651579286736641 occupied:0.010536480438065907 secured:0.01016848645023085 :0.6631271361067688 +the:0.11919516938815296 of:0.07230453158552728 and:0.05781056740443249 a:0.043018564803886335 to:0.031305092790907506 in:0.020848713353460488 at:0.014270110001066288 .:0.012526810245749479 :0.012413283442322082 for:0.011719122709941797 by:0.010808400946589808 or:0.010404172990115616 The:0.01003576004804544 with:0.009811868184449042 tho:0.009295902015355835 was:0.008924239095331684 that:0.008672304223433876 is:0.0085591147338948 be:0.008335143826716943 :0.5187411282106204 +he:0.19073192612342926 I:0.13773074299425025 they:0.07079280723387162 have:0.05625891034727703 she:0.053032464346521174 and:0.04948215596807664 who:0.0448556603624161 He:0.042429668726013024 has:0.03352342366663057 we:0.03019543388493499 it:0.029521276471230557 had:0.022856758518264176 which:0.02113196079829872 She:0.01845378919816481 They:0.01686214139521573 It:0.015982676883436457 there:0.01507616103245211 ho:0.014248857104912012 We:0.012977726055239423 :0.12285545888936532 +and:0.05278943112748437 as:0.03783138489676312 him:0.032841972012017884 is:0.03237641913024956 able:0.0303611175449405 was:0.03030865086555215 went:0.027703484212030786 had:0.027467107186752927 enough:0.027364016112100244 time:0.027014914885387386 right:0.025300913418545238 have:0.02491190199211373 order:0.024838437562248832 going:0.024695307631760213 them:0.023278480353179 necessary:0.022062703274335568 go:0.022030008538528448 not:0.01933976624055648 it:0.01920793839259396 :0.46727604462285965 +to:0.17538725145106696 the:0.14162832241962495 and:0.1077140211652196 of:0.07483014705679408 in:0.04087575943731502 a:0.03172996562387028 his:0.02494717617254844 will:0.01412795793322127 her:0.012823873222622939 their:0.012315428778223052 tho:0.0115267959415701 or:0.01102975540666219 by:0.010219120311863873 with:0.009596507261155405 that:0.009593808243811985 from:0.009252747771985696 this:0.008764273120335649 In:0.00821636914598405 :0.007064351096001234 :0.2773563684401232 +of:0.28767355066866834 to:0.08775711267569858 in:0.08678131196995101 and:0.05160598694501188 on:0.04646139928102899 by:0.04519522654900943 for:0.044547789071328545 with:0.03396756772609607 that:0.033699232901107726 from:0.03075346596941143 at:0.027039283056790858 In:0.021061449543044047 as:0.017514234937992545 all:0.012543839382496166 upon:0.011844431150487573 is:0.00998972746569266 was:0.008814315973987914 into:0.008557199930727406 through:0.007781895704231326 :0.1254109790972375 +the:0.21626167352770456 a:0.09638982061897172 and:0.06604843684476652 of:0.06493648779715037 to:0.03801337382311347 in:0.03691658985901668 at:0.030636874426997973 for:0.01951761242667114 his:0.01740493029881647 or:0.01617260840076548 on:0.014027736169781344 with:0.012850765220105276 an:0.012514908420743716 tho:0.012414105061029726 The:0.011138750275028376 be:0.01057614638208296 In:0.01049775328879852 this:0.010016808087101137 their:0.010010522324199373 :0.29265409674715515 +made:0.08364026913509287 and:0.07320252949346198 or:0.0293063304575443 owned:0.02717214092607295 that:0.024780488722915422 followed:0.02422806568536048 accompanied:0.022944715801551968 ed:0.021156402343176398 given:0.020353950114861432 surrounded:0.020229033819943284 him:0.01876455747111362 delivered:0.018673140007589444 them:0.017004326488683327 done:0.016522074252825297 up:0.016011055369807427 paid:0.0160059172046658 only:0.01537079595455401 provided:0.015274460518922785 as:0.015259618132185957 :0.5031001280996713 +Silver:0.059701227620683917 Lode:0.057277590719257254 the:0.042287379485666056 and:0.038038658761476093 Hill:0.03423304744106372 Eureka:0.021788198032044438 :0.017759793455337257 Gold:0.015194925673103644 City:0.014166757317370122 a:0.011568299480921702 County:0.011054854967984792 of:0.01030710323001574 Pine:0.009670500919006059 Copper:0.009530844352981646 Consolidated:0.008838849862359215 Harris:0.00683343786985938 .:0.006525478707356358 State:0.006145716519360972 A:0.004928193964945481 :0.6131491416192062 +the:0.15930234103476537 south:0.14916617612565322 north:0.12747015941821727 east:0.11497653682237818 west:0.10139947809509035 one:0.048792612627628046 other:0.04050218611816578 either:0.025502936103615932 a:0.022473503672407975 each:0.022108776560771096 opposite:0.020547929304717542 out-:0.013104247432932122 this:0.012527971499664897 cast:0.012459434028953368 and:0.012228690772812151 tho:0.011236060547429408 northerly:0.011218669246376186 right:0.010764144905735063 left:0.00911543234938189 :0.07410271333330416 +was:0.18276251820720052 been:0.17539911873700123 be:0.16327181071503744 were:0.06039796940368876 are:0.04716566430511375 is:0.04291244685002785 and:0.028808770502353875 not:0.025292638663518267 duly:0.02092413574894457 he:0.020450275987321024 being:0.019271328400328688 the:0.018348321050537457 had:0.018228548269843596 has:0.01764264939820388 I:0.016676570553520044 have:0.015122222228172045 bo:0.010186179763395373 who:0.008830477883946327 therein:0.008639228389917465 :0.09866912494192785 +and:0.03868242960999506 as:0.031124813427855922 went:0.02352509775927722 him:0.02196555539050794 them:0.018760608639018784 up:0.017985449426794205 is:0.017894175620344187 go:0.017174904667157563 able:0.016756848979943888 going:0.014481672239490295 it:0.014128375989346808 was:0.013277058274565138 time:0.013249953793837373 not:0.012469887553778763 began:0.012465717758716884 way:0.012105610030480113 back:0.012090864562211581 right:0.011941707822828511 amounted:0.011564315359310868 :0.667354953094539 +the:0.13742010605008512 and:0.10207877426319824 of:0.07397450603172974 The:0.03323666966533758 that:0.028170308219414686 these:0.024611712608994665 These:0.02321426573404504 in:0.02233958880195577 such:0.018503551962230223 to:0.016786282210728126 or:0.01636101860162539 which:0.016209694122772757 as:0.016160870658285174 their:0.015028655951173324 :0.014297837749869223 our:0.011954104112023089 for:0.01170272696380604 many:0.010385161604963049 other:0.010218895688899507 :0.3963452689988633 +the:0.07308391748213149 and:0.0650236830030406 of:0.06160769942055397 to:0.052268247186185425 be:0.047076308054616864 a:0.0372396837426395 in:0.024252681833945605 was:0.022488248066258144 is:0.02167905136294673 for:0.02153860696418792 are:0.020623701936193742 or:0.01929925567751662 re-:0.01871171112926931 been:0.01861238611348457 pro-:0.01601091340941376 his:0.013531807626344868 not:0.013315154707748283 were:0.013106637980199716 he:0.012779513704430508 :0.42675079059889237 +the:0.1454500361787387 of:0.1080247151493501 to:0.04516715868785427 boy.:0.036249098323069925 and:0.03403580073245388 girl.:0.032660326140049385 a:0.03171979252021135 in:0.02714044436566853 for:0.02365213940166824 be:0.021942286684630472 their:0.021087116084698817 his:0.019774122064073623 was:0.014637031197642503 with:0.014008395154201525 are:0.012730720509515858 is:0.011363112041341867 as:0.011357870543086747 from:0.01063391638067422 were:0.010589399829418696 :0.3667765180116513 +was:0.2149360124552423 be:0.1860237919422501 is:0.11266930546896517 been:0.09507118249027534 were:0.06192891087073725 are:0.04739923662051966 not:0.03222379547125358 being:0.026535351388654115 and:0.025793893965079168 Is:0.02445537003634426 as:0.016459638306714097 greatly:0.015353447810133699 so:0.013658905700961156 bo:0.011490790725950061 now:0.010208090858630085 it:0.0083392614252898 money:0.008251078405780656 made:0.007158570015205258 one:0.005811807346739358 :0.07523155869527488 +the:0.13147407904709446 of:0.10054072970971437 and:0.08787641248611254 a:0.054010839453874325 to:0.040753767095028655 is:0.01930639517232235 in:0.01905768241546205 be:0.01866701345705492 or:0.01857389034233633 was:0.01856901897224105 have:0.016570601748452922 not:0.01567885214983575 no:0.014826448724732154 his:0.014824299778974585 for:0.014581934726472573 their:0.014276478502592116 that:0.012537687183812103 has:0.012381427062066465 so:0.012085735963228211 :0.36240670600859204 +and:0.09250741093604914 of:0.06895330541934497 put:0.0674514796868645 as:0.06267112065678532 make:0.05425702335259153 that:0.052172000015098294 for:0.0431753586139634 to:0.039608103116352225 with:0.03596771598109795 found:0.025212428927664336 find:0.024833099583985673 made:0.023802655933713977 but:0.02326661010304946 get:0.020143286431190992 give:0.01956366561589181 take:0.018815588507891064 is:0.01846724682485093 upon:0.018178882012065193 by:0.01816454276129662 :0.2717884755202526 +the:0.5499465016948938 of:0.06954799748572829 said:0.03903763828343799 tho:0.02824958193240508 in:0.024904591444192492 on:0.01933008759595516 tbe:0.015858751743495055 and:0.011003193888619568 The:0.01059918929564061 from:0.009659532165149328 our:0.009631300538583172 this:0.009477353429208357 a:0.00915098359618938 with:0.008142298269528118 to:0.00691373256828381 all:0.0063561826281450925 between:0.006340805349602027 at:0.006328565902053844 their:0.006176378374990396 :0.15234533381389842 +the:0.4071374189315913 and:0.06449181461132415 of:0.02892866618288876 in:0.028670005984162618 The:0.02603617389223924 tho:0.024993820467459137 a:0.023579040051412606 to:0.01755553213771617 on:0.014626070241060114 by:0.013447843485786471 or:0.012794166593089693 tbe:0.012024509152999897 :0.010353482361299817 that:0.009291482237329618 In:0.007938246807075932 from:0.007526799010378873 other:0.007469196869028889 all:0.006409533041696086 for:0.00626887758057738 :0.26945732036088327 +a:0.15590602024841058 the:0.1335745013511475 no:0.11462498466777823 to:0.06578454376333369 his:0.060158489036455265 their:0.05412599218030617 of:0.05408741058971289 and:0.03395427870632366 any:0.028143466742454572 great:0.025142155537513543 not:0.024921113415914294 its:0.024712782804046526 in:0.021801104531498822 will:0.02072814566192922 this:0.01852446106641484 good:0.01833688331330264 that:0.0164988757548695 No:0.015577748913687971 The:0.015227106954381193 :0.09716993476051888 +of:0.173929230524896 and:0.11667666310358503 in:0.08603970904036806 with:0.06996330511428155 to:0.06811637073339848 for:0.051552939463677554 that:0.04492467118135372 by:0.03711197654552394 at:0.034015021797196274 from:0.030644909325300094 In:0.02475651362512929 nearly:0.021576888354087147 on:0.01918022912803143 is:0.016661279886395947 was:0.016324660867573417 are:0.012805604008820587 upon:0.010397080151397385 or:0.010136273193602406 through:0.009477563840768241 :0.14470911011461343 +more:0.1718644365446802 and:0.12139576549900793 of:0.1103827258535127 the:0.09245574974984441 other:0.04954283997240504 young:0.042080475055802126 to:0.037579047058401115 for:0.035060217417211645 that:0.025346955096977354 a:0.024541786575063996 all:0.017645990802980877 little:0.017045794438939412 greater:0.015411619227389522 two:0.014658576474367552 their:0.01454418249479751 better:0.014505834462176974 by:0.012639159951056465 our:0.011681508122281855 many:0.010784190551378183 :0.1598331446517251 +and:0.08995317707915026 to:0.06844710404109794 of:0.04605142056172993 the:0.04074574508561307 which:0.02479116931334353 that:0.023764822140213245 re-:0.020841117231308055 in:0.020803825395358622 for:0.020278423301550053 :0.018417753428486977 not:0.016860793136637672 con-:0.016444405871234195 is:0.014386481772210856 or:0.014080680914153714 be-:0.01352268143271276 I:0.01317002660943805 was:0.011429878269381662 dis-:0.011196807025842847 he:0.01113106290024311 :0.5026826244902934 +the:0.493200654242159 a:0.16432802332025556 of:0.06925592780627518 for:0.04478221088490199 and:0.03820058089560218 The:0.02396099076716755 or:0.017283648359369307 tho:0.014886802478095528 that:0.013030863827597309 said:0.01286826231470543 by:0.012210815651934052 on:0.007668954518227548 in:0.007592290328671082 tbe:0.006489727216589754 this:0.006041993553775004 A:0.005898016671408185 last:0.005865885114906088 some:0.005636592881006192 great:0.00556724110707118 :0.044230518060281894 +the:0.18126768217432415 of:0.07977618088041735 and:0.07265163760880113 at:0.044721163862373625 a:0.043611741685391975 in:0.03904242085937153 to:0.035338760522854444 for:0.019812725227722008 The:0.016962404908320017 on:0.01688425988366816 or:0.01555035455932878 In:0.014691295422458785 an:0.014684902153633083 was:0.014054155543173347 tho:0.013596142911084286 his:0.012717125776762555 that:0.011938085480465597 by:0.011733364986576886 be:0.01125521387618249 :0.32871038167708977 +of:0.2889323594739487 to:0.11785424932169057 that:0.08191464828662498 in:0.06752642478401247 and:0.05439254039609321 by:0.04960615036788801 on:0.04301796524239749 for:0.03549268090664948 from:0.03154811522813882 with:0.025493990589347242 as:0.023458841576548126 upon:0.022557108408174386 at:0.019352943023937547 all:0.01692742743237928 In:0.015891287388281054 which:0.012921146689138054 over:0.009008648628368546 but:0.007392939508033372 before:0.007358066595480737 :0.06835246615286794 +sum:0.03352282876311118 number:0.028116684882597106 line:0.019995206059833036 city:0.01946514558931857 out:0.019275318828420953 day:0.01666865340772654 county:0.014872697538657208 amount:0.013254184849875051 Board:0.01252325449624941 town:0.012449555905674143 side:0.011663975251122375 part:0.011517157473718155 County:0.011460540331966697 state:0.011087331502382173 City:0.010878919191854432 purpose:0.01081028255427907 and:0.010297866493795984 way:0.009848747943663767 name:0.009522170936943183 :0.711769477998811 +I:0.2578368991512953 he:0.12452172797787103 and:0.07850842598773604 He:0.041258247965450044 have:0.038999829960596345 was:0.03571435047367907 had:0.032126995161160896 be:0.031560619420090655 is:0.0313531573553718 we:0.02855603422482517 never:0.02681258437516644 who:0.02511498096806314 1:0.02343871255740807 she:0.020811359821616193 they:0.02033714981993344 has:0.01979184672758985 not:0.019651699632152117 the:0.017145763621232307 are:0.01389159305701684 :0.11156802174174527 +was:0.148449005560879 be:0.14831633000192834 been:0.07072206738119909 and:0.06878406930466335 is:0.0600007754425961 are:0.04651472077532782 were:0.04552813706971302 as:0.03870404875046972 he:0.026611633965496345 it:0.016136917490888813 being:0.014856895664005675 am:0.01171995135425621 so:0.011257946529307582 not:0.009995731927865733 have:0.007911253675445762 his:0.00788806123155924 more:0.007868669461229966 now:0.00784822848845588 Is:0.007582698636640911 :0.24230285728807147 +went:0.06497679573794887 made:0.05774620104570061 taken:0.05735538638763511 came:0.056344856650764726 it:0.04505332531202812 come:0.04069822942965494 put:0.03596125247119347 brought:0.0330585210733198 and:0.027972859389838487 them:0.027370888436186833 set:0.025848604137249424 given:0.024949489653652502 called:0.024085472591228813 get:0.023855445521074537 him:0.02072571477256628 give:0.02017222231284957 take:0.019964255375992522 got:0.0198039261679289 held:0.01914029588719823 :0.3539162576459883 +the:0.17027190784407714 of:0.10585557835912704 and:0.07355927771906935 to:0.05486905984958157 a:0.04543746377447453 in:0.03128555052933153 be:0.028704485173100775 was:0.02350529800142253 is:0.02215549335554494 for:0.02077556258358175 his:0.01804639098945333 or:0.016335100594594944 their:0.015847999621030492 at:0.015526727957625254 been:0.011815834631173878 are:0.01139058447814694 this:0.010362020528084328 tho:0.01035635773045807 its:0.01000473355720393 :0.30289457272291764 +that:0.16233885390820132 and:0.1334085475430236 as:0.11022674191231932 but:0.06175025854335418 which:0.05387129492617543 when:0.05279792779382279 if:0.046919347816789865 where:0.02276277588810553 of:0.021269159934690834 what:0.020181816756356982 for:0.018852980425359454 until:0.017463713847857765 than:0.014682239262252504 If:0.013379804396218026 before:0.011904115017110257 because:0.010645232026721609 have:0.009537922825521893 had:0.008940323591779655 When:0.008934839438943597 :0.1991321041453954 +one:0.1028303141280697 part:0.05963429477052991 out:0.04766456937681193 some:0.031418679026461914 members:0.030764490253327767 side:0.029940657362655835 portion:0.022063658796890564 office:0.020457735219956013 member:0.019726706386316174 end:0.019666887540649894 tion:0.018667441728710307 parts:0.016814747270460957 people:0.014112771422418794 all:0.014072739582212475 any:0.013183573287639892 One:0.013083578354183906 that:0.013024335602903442 account:0.012482348155001894 many:0.012077825070275192 :0.48731264666452345 +and:0.046263325011294675 go:0.0319935292963566 going:0.031910965911027114 work:0.02604689320789818 carried:0.024076888006873028 them:0.023001374547601445 put:0.019660257136060243 that:0.019618335546837305 interest:0.01865757687033611 was:0.016755330650445103 it:0.01671291659181218 place:0.016705992743759245 out:0.016510580672760025 now:0.016356298684946886 or:0.015706923920375013 went:0.015641105540567694 came:0.015514834710914938 placed:0.015150412575437882 him:0.013821527264267311 :0.598894931110429 +he:0.18251391367533845 I:0.09644155442011533 it:0.07248934844177206 they:0.06841587164987405 who:0.051778646470014136 and:0.04693858724862256 we:0.04632803658107805 that:0.04631496867948745 she:0.037199322567978754 It:0.03399295782673404 which:0.03212355636829949 He:0.024606845135664 you:0.019662859655656454 ho:0.0134245459811086 one:0.012066663038715814 1:0.011616493320601743 We:0.011438823249229036 as:0.009268573611231654 be:0.009211752815781175 :0.1731666792626971 +is:0.1258093979673995 are:0.07477044338343689 was:0.073247304939663 and:0.06639591257548261 as:0.0631278073278803 the:0.052093337952223887 be:0.049331395316215845 were:0.03792203281210692 more:0.03680691775257957 very:0.03392492327208936 a:0.033815463296249654 of:0.0319660924538791 so:0.022254673336770576 been:0.021600621003709887 it:0.021335989618931548 Is:0.019889092007416842 most:0.019165728533934553 not:0.016767880938071838 to:0.015583131186579934 :0.18319185432537818 +a:0.10818140327435075 and:0.10721613545549634 as:0.037392252084116076 be:0.03654806681549681 it:0.03571111212864567 is:0.02828402408259998 was:0.02729365337642635 of:0.024486099764230718 he:0.020365347415363434 I:0.019043240364398393 It:0.01655463781008436 who:0.013888959310454266 that:0.013669152222961552 or:0.013014332661585588 are:0.012552981271774911 in:0.012532243458459446 the:0.010939755149449249 were:0.009676202633924475 1:0.009640958187551885 :0.44200944253262975 +of:0.10036425554061128 and:0.09867255827094257 in:0.04887477001133228 to:0.04309676529803197 fact:0.03312124920228808 said:0.028016465130273754 on:0.025147031828386315 all:0.020897671259005178 is:0.018989333611116044 so:0.018899457882617265 from:0.018463519784011995 for:0.017651195592365977 at:0.016946018612698295 know:0.015554635744109193 believe:0.015397314140675087 say:0.014489633297242495 with:0.013970217188878864 by:0.012605124887586036 In:0.011949884106238937 :0.4258928986115884 +and:0.03192028348552367 the:0.017929373013605435 a:0.015520716452296066 or:0.008538046466335557 :0.007013988980373428 one:0.006556897295523436 that:0.005246964250938466 to:0.005001254851552576 .:0.004427833183303739 :0.0042221922682304505 1:0.0027235497410554896 city:0.0021883898747242733 of:0.0021332663964003786 State:0.0021208984955264454 he:0.0018866375525524101 half:0.0018508862273218071 ;:0.0018352289563731245 by:0.0017045310021131 few:0.0016817157187412315 :0.8744973457875089 +and:0.08438951126488467 to:0.07824326874107872 of:0.06981840845950424 the:0.04496075241802302 in:0.044218116746036505 be:0.03400778809371742 was:0.029504410102628414 or:0.02544521142309022 is:0.023960734949871762 for:0.022922447603814504 that:0.01650793620034917 are:0.015154096484099022 in-:0.01508508736474585 an:0.01502851822424271 been:0.015027900690159668 not:0.014421995365024039 a:0.014351593964143521 were:0.012880632809166131 In:0.012863463852409308 :0.4102081252430111 +of:0.09129790931378902 the:0.07369883040827747 and:0.047842263382354346 in:0.04189055351593407 to:0.04045875475680249 a:0.03542341257202578 be:0.02020462051672066 for:0.01979292654746225 was:0.01760256398103379 at:0.017380150555488715 is:0.014984483003968216 with:0.014047653760730413 by:0.01374644383819499 :0.012670486581795598 In:0.01200961464556976 or:0.011563835749786333 from:0.011391516893522809 are:0.011273104484969465 that:0.010755276030689069 :0.4809655994608848 +the:0.7604336299468931 The:0.06580333034276088 tho:0.043731125602607474 tbe:0.014554537577525804 this:0.012376690669814169 and:0.009486818834918583 our:0.007597934519015263 that:0.007023668708142786 a:0.006409315736526616 some:0.006236660371655809 I:0.004682780041922105 first:0.004501923460169735 next:0.0044481381345039565 all:0.004391670574578785 two:0.004372428672134164 his:0.004077471585991161 their:0.003863004650339107 no:0.0038118000910444113 or:0.003556950023971767 :0.02764012045548425 +that:0.26371201840853314 which:0.08407706422037417 and:0.08370287991048475 if:0.05519030707485451 as:0.0532986282694471 but:0.04692510260970879 where:0.04614162331229497 when:0.04391988831704455 If:0.025337838206082937 because:0.021305447905250404 what:0.016647431339012645 whom:0.015888634653521132 said:0.015725518150923695 until:0.012396136526321662 for:0.012083811179246572 while:0.011775538902275829 though:0.010447683428889484 says:0.010358309072079519 But:0.010270309084233578 :0.1597958294294206 +of:0.21224044705796113 to:0.0995426874795096 on:0.08647273955487508 and:0.07908801008693425 with:0.053507914200259084 that:0.05027391296614105 by:0.04712637079577179 in:0.04575238513668195 from:0.036794656458403525 all:0.03277340947343123 at:0.03067265975493285 upon:0.02372670784097085 for:0.022679906308219415 as:0.017341323224009473 is:0.01192604680634589 On:0.0118450090282875 In:0.011514605729792926 but:0.010295897074245578 when:0.00952362191172361 :0.10590168911150322 +and:0.08995317707915026 to:0.06844710404109794 of:0.04605142056172993 the:0.04074574508561307 which:0.02479116931334353 that:0.023764822140213245 re-:0.020841117231308055 in:0.020803825395358622 for:0.020278423301550053 :0.018417753428486977 not:0.016860793136637672 con-:0.016444405871234195 is:0.014386481772210856 or:0.014080680914153714 be-:0.01352268143271276 I:0.01317002660943805 was:0.011429878269381662 dis-:0.011196807025842847 he:0.01113106290024311 :0.5026826244902934 +their:0.11932774115297673 who:0.11819400645766459 the:0.10766377616996994 his:0.09277140056335006 our:0.05515749721356941 and:0.054752254235660304 not:0.04774530001654796 my:0.04686359314585327 he:0.04220020454640484 I:0.03255329572698333 a:0.02812215000264966 her:0.02643931553780628 to:0.019767428842414586 your:0.01882774881246281 are:0.018796607393007484 its:0.012805528375145968 an:0.011476277646057815 or:0.011406064541275062 she:0.011111945979025125 :0.12301786364117476 +the:0.11919516938815296 of:0.07230453158552728 and:0.05781056740443249 a:0.043018564803886335 to:0.031305092790907506 in:0.020848713353460488 at:0.014270110001066288 .:0.012526810245749479 :0.012413283442322082 for:0.011719122709941797 by:0.010808400946589808 or:0.010404172990115616 The:0.01003576004804544 with:0.009811868184449042 tho:0.009295902015355835 was:0.008924239095331684 that:0.008672304223433876 is:0.0085591147338948 be:0.008335143826716943 :0.5187411282106204 +Baltimore:0.35376512320334796 Chesapeake:0.20800293483422205 John:0.005612721410371295 William:0.004841614220238682 James:0.004577829952026088 hundred:0.004147472692391152 wife:0.004031364566892536 gold:0.003943070684669549 Robert:0.003668069139361855 land:0.00322615595687569 State:0.003220286581871733 Mr.:0.003114298562769979 George:0.003104877146973036 Joseph:0.0029006234785581056 Norfolk:0.0028960476056876885 feet:0.0028091936950817207 day:0.002723974217704881 President:0.0026747457204282323 metes:0.002587622139766155 :0.37715197419076163 +:0.04001170227731988 him.:0.019884758205107156 it.:0.015439149448231444 complaint.:0.011718797905872486 them.:0.009489723916736024 day.:0.00948685079993739 and:0.008888373502332802 time.:0.008254472358555203 years.:0.008232005084139269 city.:0.008205801406563896 days.:0.007723052297288597 country.:0.007648910499611584 bill.:0.007440245714460537 county.:0.006881614201835535 .:0.006664509895957969 life.:0.006485124083624245 work.:0.006166809456916703 speaker.:0.006155554510412654 man.:0.006020503468186916 :0.7982020409669097 +a:0.5121215705663172 the:0.2012418561147535 very:0.048675850402971586 A:0.02516138587197588 but:0.023327377643589733 The:0.02019878767369604 and:0.01863909966849573 is:0.011653382312187103 his:0.011565132147587627 no:0.011181883836619574 tho:0.010227156094374103 her:0.010069921426108429 this:0.009852555636074024 with:0.008024799823195702 of:0.006723161578142128 their:0.006294800803225034 that:0.005532516328568278 was:0.004981482548405762 or:0.004838881020413806 :0.04868839850329871 +the:0.39749834532651884 a:0.07520030034269234 and:0.05540858759821703 The:0.03273515726769502 tho:0.030061875542463562 of:0.020144331424922633 tbe:0.014929647509541684 in:0.014268129706664795 or:0.013333166761078447 .:0.013287381914101323 an:0.009000188755386574 to:0.00880680429595084 :0.007943763822197133 Mr.:0.00773879605474787 by:0.007328417831573476 as:0.005922572098978465 for:0.0047526933692942485 that:0.004736121968310169 on:0.004594595720579333 :0.2713091226890862 +;:0.027488708181287687 it,:0.01958917362811013 them,:0.011734148321642797 him,:0.009807221804048033 in:0.008313229650925371 time,:0.007688385999744575 him:0.007389625085221205 country,:0.006853233578626019 years,:0.00626528268415626 ,:0.0059988628132242065 and:0.005839985371392634 people,:0.005728202179933982 up:0.005606460628007509 up,:0.005333752120618328 year,:0.005161777230700628 one,:0.00505844778761419 here:0.004939839190866411 out,:0.004781955925715608 it:0.00465859216314566 :0.8407631156550187 +of:0.3217566911452614 in:0.12926882860428235 to:0.07785513804559999 by:0.058602898101913915 that:0.056885356380142346 and:0.04485560222461032 for:0.030423904247546874 with:0.029575609983774457 In:0.025555110953940443 from:0.02490186046541742 on:0.02450596913549628 as:0.023085456879184906 at:0.01942039145550938 is:0.01396123917836705 upon:0.013391149339623614 before:0.01050245342192633 under:0.009110237250491152 which:0.009043160123021197 when:0.008914151439936879 :0.06738479162395368 +a:0.3547372944010233 the:0.28068123752245133 of:0.05122783154896769 with:0.039797640921108206 The:0.0347726287057718 A:0.028809657742969643 no:0.023504308377324843 this:0.02187035717466837 and:0.01836163320924545 very:0.017790718609497182 that:0.014326361830142622 tho:0.01264970530104959 any:0.011842439943199414 two:0.011105627326246398 our:0.010097677726734481 by:0.00998935127534585 in:0.008841464045105232 his:0.00801444265509039 so:0.00800087099731226 :0.03257875068674595 +the:0.11919516938815296 of:0.07230453158552728 and:0.05781056740443249 a:0.043018564803886335 to:0.031305092790907506 in:0.020848713353460488 at:0.014270110001066288 .:0.012526810245749479 :0.012413283442322082 for:0.011719122709941797 by:0.010808400946589808 or:0.010404172990115616 The:0.01003576004804544 with:0.009811868184449042 tho:0.009295902015355835 was:0.008924239095331684 that:0.008672304223433876 is:0.0085591147338948 be:0.008335143826716943 :0.5187411282106204 +the:0.4442086554503554 and:0.07658625406591035 of:0.0324810583217237 tho:0.03206996603621645 all:0.03119445634552059 The:0.031077850875087788 other:0.029306142072497442 a:0.024848224853922258 or:0.017237734416527536 their:0.016253481033999418 such:0.015606281893023535 as:0.014530212069064467 tbe:0.013408017460341348 these:0.009750141558511777 those:0.008985168508515435 any:0.00866710978796794 great:0.0086171691110922 some:0.008192440845084638 two:0.008050110419626104 :0.1679295248750116 +the:0.39749834532651884 a:0.07520030034269234 and:0.05540858759821703 The:0.03273515726769502 tho:0.030061875542463562 of:0.020144331424922633 tbe:0.014929647509541684 in:0.014268129706664795 or:0.013333166761078447 .:0.013287381914101323 an:0.009000188755386574 to:0.00880680429595084 :0.007943763822197133 Mr.:0.00773879605474787 by:0.007328417831573476 as:0.005922572098978465 for:0.0047526933692942485 that:0.004736121968310169 on:0.004594595720579333 :0.2713091226890862 +in:0.35292957122274754 of:0.3407723951344772 In:0.0714757040724933 to:0.05397893515591788 by:0.021593635059671684 for:0.020659793343909893 that:0.018898864544862427 and:0.013987792000329135 from:0.012757893071722563 with:0.01085295026671589 upon:0.0070473868851605795 throughout:0.006742660406690477 all:0.00655444885822467 at:0.006358466119408817 on:0.006335561065104514 into:0.006059752720759087 iu:0.005951992508600899 over:0.004515983650405543 make:0.0042252746439729195 :0.027300939268824962 +the:0.6056209730862562 The:0.0820456759618819 and:0.07334513139811223 a:0.06580273798026334 tho:0.03014312148305557 of:0.018473125709617965 by:0.017373816548455844 tbe:0.011979210908570213 an:0.006656762965077158 every:0.0061237742254855185 annual:0.005967305140799785 with:0.004660199545052791 or:0.004195139339454611 great:0.004031416653327742 first:0.00402165917603259 in:0.003915036948713047 good:0.0038799014897257485 for:0.0038791890609606557 no:0.0038490670675465407 :0.04303675531161052 +of:0.35184217282812513 in:0.09037697206742007 for:0.07942504940766767 to:0.07401863944857039 and:0.0693186397720728 by:0.03501555507681775 In:0.03491995160958307 as:0.02828590747757446 is:0.027002395394773334 with:0.02651171725132349 at:0.023404350084233968 on:0.01967018461348021 that:0.01523024836143159 all:0.01465146276088732 from:0.010823134349034019 than:0.010579780368472888 make:0.010483383787764268 was:0.008773095564579633 like:0.006748396195229958 :0.06191896358095801 +of:0.17418556405972946 for:0.11151158067683935 to:0.11110032210702456 in:0.1003738072825827 and:0.06845384940622333 with:0.06770695523925604 all:0.03353233004544681 that:0.030760508534069534 on:0.0294789374758842 by:0.02847111379910341 have:0.025573629603932058 from:0.022577530842005363 upon:0.018312648021924668 as:0.016988627025561948 In:0.015072068117197236 at:0.011463585661109839 make:0.010858990089674635 up:0.010665249442411038 had:0.009798140650149268 :0.10211456191987454 +executed:0.017260887732282744 up:0.012160620746393958 him,:0.012152865037681872 them,:0.012044843109248374 him:0.010844396958736121 it:0.010262178207275909 it,:0.00889706174143026 men:0.008883673910915348 them:0.008393669947271679 ;:0.0075815478232465 Mr.:0.0072881489344718145 made:0.00721583524703838 dull:0.006474969031333988 time:0.0061309245350387055 out:0.006042084470716276 and:0.0059543530338382845 man:0.005641453809821841 years:0.005539296165969212 quiet:0.004962621220788186 :0.8352685683365005 +of:0.09129790931378902 the:0.07369883040827747 and:0.047842263382354346 in:0.04189055351593407 to:0.04045875475680249 a:0.03542341257202578 be:0.02020462051672066 for:0.01979292654746225 was:0.01760256398103379 at:0.017380150555488715 is:0.014984483003968216 with:0.014047653760730413 by:0.01374644383819499 :0.012670486581795598 In:0.01200961464556976 or:0.011563835749786333 from:0.011391516893522809 are:0.011273104484969465 that:0.010755276030689069 :0.4809655994608848 +of:0.29555912200650253 in:0.16519620824605194 to:0.1315430357763548 for:0.05099025016189379 by:0.049222767176366665 with:0.048591589795262125 from:0.034380245948963224 In:0.02866615430668974 between:0.0216265477950742 and:0.017565407249301054 at:0.01017479641280193 into:0.007203059489851933 on:0.007166587919478157 upon:0.006967798913303682 ot:0.0067814357414182885 ol:0.006235693783662083 under:0.004943978078335873 against:0.004632829582394551 about:0.004561693704144596 :0.09699079791214886 +the:0.20812828925030155 and:0.14707575412490448 of:0.10145891345126874 a:0.09235900604551683 his:0.05778476188962078 in:0.04342998000126817 to:0.03668364173530958 their:0.036275663292621996 for:0.02292833858100766 this:0.02156853638558466 or:0.020933918475101034 The:0.01985277228505759 all:0.018233409456295938 my:0.01681490352140486 her:0.014193451159945133 an:0.01278641888867141 tho:0.012517661730334282 some:0.012174765611099139 no:0.011154935596627698 :0.09264487851805843 +the:0.7017256363746894 The:0.06972195561133726 tho:0.04271798188038347 a:0.021492572996840747 tbe:0.01718350080639105 and:0.015700818194470098 no:0.011639059066290853 further:0.009405963537428539 good:0.008443891655216819 or:0.007486021820302905 full:0.005666519865789109 best:0.0056053464556005145 take:0.005517796652438959 beneficial:0.005117096906181521 their:0.0051111982840456975 great:0.004602722073746932 in:0.0041175730640816595 any:0.004048588164729056 this:0.0038040598204452172 :0.04989169676959023 +of:0.10745552635026485 the:0.06863269420221565 to:0.06662063342852047 and:0.06502731082474383 for:0.06303853035075271 in:0.042262236205373616 a:0.04118131863817993 at:0.017589720012209396 or:0.015185549888854961 with:0.014835709162924725 their:0.013942648069687423 be:0.013623285644339823 by:0.011821771268377008 his:0.011496090101057337 In:0.011453640352286314 that:0.011405304039649799 :0.010957076878713536 more:0.010868081433227693 from:0.010717020855464995 :0.390885852293156 +and:0.06317916895143688 was:0.03089079697380977 is:0.020044819943736053 be:0.019406329289829806 are:0.016631216139614186 that:0.015910745835586493 it:0.014132589635136123 been:0.013429954470292457 made:0.013153338042273357 were:0.012494049396038097 or:0.012369181282419555 them:0.011608721240324167 up:0.01101461536327863 him:0.010833186604515583 as:0.010718511743974049 succeeded:0.010682665877813333 engaged:0.010592681714621757 not:0.009777868089593193 now:0.00948198968071834 :0.6826475697249881 +the:0.23162687636207277 his:0.18403190225211175 a:0.13130878936729337 my:0.06051021991067695 her:0.046657417022514296 and:0.04462645401997046 their:0.025162047868343876 your:0.022058842132674422 of:0.015619746792079389 every:0.013578010803808464 in:0.012201658976774875 tho:0.012110920033315063 to:0.011914302067753261 our:0.011334838367312276 great:0.011259749888471522 bis:0.010036274439575126 old:0.009558704771801041 this:0.009239652482013475 The:0.008626972532915752 :0.12753661990852183 +and:0.14690730320657555 so:0.05435575319182233 say:0.04238766789833749 fact:0.03908136999212515 know:0.0351979392553035 said:0.03366214485096073 is:0.030279805180628463 all:0.0263252408945833 show:0.022996744051861428 but:0.02215349007530338 believe:0.02189392375418679 notified:0.019111503361398424 me:0.01797843286327251 of:0.017862325786196412 think:0.017309691876854858 ;:0.016492911436199492 see:0.015067771854113643 as:0.014994591239418036 says:0.01306736208657778 :0.39187402714428077 +State:0.041337868406155935 city:0.027677872930662872 one:0.02211842116356632 state:0.02104775267644625 North:0.020597356839652154 day:0.019574716998007245 lot:0.01640873384876763 two:0.01562620579105837 county:0.01468110305411191 on:0.01434184647527525 person:0.013178694365114896 town:0.011223049045442001 three:0.010969363370263644 five:0.008890744570185377 ten:0.0079953581448963 of:0.007524006464601331 in:0.007371188926717157 street:0.006751683012585759 and:0.006314753433719997 :0.7053692804827697 +to:0.3363108089742795 will:0.1688767953844892 shall:0.0699203286624371 may:0.06554758802364735 not:0.052308619486721566 should:0.0362952409699514 would:0.03564213298371884 can:0.03556235081470213 must:0.027023635548891402 and:0.019102429549778796 could:0.018878313161163524 cannot:0.013390180910112733 might:0.006658554607779622 that:0.00556334019972199 also:0.005444342075306171 it:0.004667327489214084 then:0.003470053030475108 soon:0.0032063594041351106 as:0.002898843059062382 :0.08823275566441204 +the:0.21234179435874656 at:0.147081281003026 to:0.07988906444773967 be:0.0765928769461158 was:0.0723166581814281 were:0.03816851726058318 and:0.03674581574705875 is:0.03472344491282319 not:0.024299845293598923 are:0.02301948578454834 a:0.02167631629019086 of:0.02013952205343338 his:0.019199675134004418 been:0.01802188433743325 At:0.017775996159098844 its:0.017518878503075975 The:0.016470123937012002 their:0.01492832101983288 or:0.014423585208296043 :0.09366691342195381 +at:0.15349900273518768 to:0.11020023443920586 in:0.09171066862730241 of:0.09030539458096577 and:0.06466283774540359 on:0.06234187182741597 for:0.047957632905905316 from:0.04248247384137383 In:0.025918609039823515 all:0.022469462098729815 upon:0.014467213645352136 with:0.014174872226963233 At:0.013696460979535077 Since:0.013565565679121065 time:0.013042357901064658 about:0.00782603144574102 but:0.007540034255954623 From:0.007523845151132495 is:0.0074176275890270454 :0.18819780328479488 +at:0.35192025072856226 for:0.10647638466568336 of:0.07419067666162908 to:0.06268401504248527 and:0.04244851966578317 At:0.03957536884719112 during:0.03477812045170813 that:0.03418399897315247 in:0.033862175708172966 from:0.025621702324958764 all:0.02429031183628755 by:0.01920866002449512 after:0.013027247536464694 until:0.012536081107947527 on:0.012309965813600979 within:0.011984158727070376 about:0.010433318492459924 In:0.010406822737012949 By:0.010383473933220767 :0.06867874672211355 +the:0.13523978534994952 and:0.10916395101070428 of:0.06400339692724946 to:0.0508815486938647 for:0.04074165913592381 or:0.03339708418165392 in:0.03313929659973183 be:0.031689596761189175 are:0.026104201551593067 a:0.018138776597057378 their:0.016248960394437035 were:0.01525347417237932 is:0.014169490931147307 was:0.013743165983219967 as:0.012446300318086995 all:0.012308446124477098 with:0.01143540834418554 that:0.01055641095463657 it:0.010401341178156682 :0.33993770479035634 +one:0.026253433114564895 day:0.016672632839117678 that:0.014508834940145368 daughter:0.014147088287315698 motion:0.013311663031258358 tion:0.011904921474727511 part:0.010941675357164421 son:0.01087464957655335 out:0.009762183842261362 residence:0.009556496158736598 favor:0.009174432660916224 time:0.009078332580008851 name:0.008884149125044942 office:0.008600615931753718 death:0.0084247064796904 charge:0.008367683040666294 side:0.008183899964947287 account:0.007638716873918043 portion:0.007446699119911892 :0.785267185601297 +the:0.1785196097776932 to:0.08651857950456222 and:0.08340849722100935 was:0.06450006488426521 be:0.04511551645270486 were:0.03870201160064438 of:0.033678287643581745 a:0.03132149159962683 is:0.027720477510507345 are:0.025861770320523406 been:0.02488661558038968 or:0.023655977310593542 he:0.02274137995665786 I:0.016995561183618963 The:0.013796253673787784 tho:0.013102280266209647 an:0.012868728125480025 this:0.012709457942093834 1:0.012591027062849397 :0.2303064123832007 +one:0.06754190432163522 part:0.05231163511576496 out:0.04609588594236959 some:0.02740306976054911 side:0.02387622494371665 end:0.022518288784217105 members:0.021845751933956114 portion:0.02151370006345736 all:0.02022572610903207 people:0.016238426460010967 and:0.014555909544903867 that:0.014078768366257871 day:0.013832139668816516 tion:0.013547994796857001 front:0.013380738665131557 any:0.013269620285130524 member:0.01265082101866512 time:0.012443834037564471 office:0.011845495219016932 :0.559824064962947 +those:0.09536067761807297 and:0.07620781420779714 man:0.06721398162902038 one:0.041501085640937053 all:0.03735706781093877 men:0.034221738005854804 person:0.01837369264716754 persons:0.015723196919782925 woman:0.014173936473159968 people:0.011799760818297755 Those:0.01049506863532722 or:0.007618708605891559 many:0.006861004239519507 man,:0.006816716519357627 girl:0.006372989175907303 but:0.006150739554092872 others:0.0058139226989673744 women:0.0056500064359858845 he:0.0055440979456039905 :0.5257437944183173 +to:0.31726424424617317 will:0.2170326165518834 would:0.12626999288206522 may:0.06184732366421897 shall:0.05418997512566382 should:0.045518166450444 must:0.03812040559946207 not:0.03249178954775362 can:0.01578028236313647 could:0.010485135460831928 cannot:0.009248119130975996 might:0.00923661825217087 and:0.007232007982281018 it:0.003872750886534272 that:0.003459641489831202 there:0.0033605932487338346 never:0.003182930804813442 also:0.003060222770972806 only:0.002632398477650846 :0.034714785064403036 +of:0.19271993207475108 and:0.12467366995353944 in:0.07231074361529238 to:0.06242628352197255 at:0.04618611108257369 that:0.0434273544631262 with:0.03637067705535393 on:0.03635696090802566 for:0.03386919221230831 by:0.02665756984153553 from:0.026392292031087058 are:0.02083440225460235 In:0.018364192734505107 was:0.016391289218422818 nearly:0.01491791340554394 is:0.014536810350990087 were:0.012163883875832232 which:0.009397745508264523 but:0.009099192515724401 :0.1819037833765487 +to:0.280402351999366 will:0.18396015696387144 would:0.09175375716479647 not:0.07609992862635795 may:0.0663184890271737 should:0.062847692773938 shall:0.05371407320396795 can:0.03705439963501822 must:0.036883600751984144 could:0.019868809260628197 cannot:0.016877288579388867 might:0.012905028682475925 and:0.005203243577472468 never:0.00508153550976499 it:0.004687412501529515 only:0.0033014727713921756 also:0.0030778993689748093 soon:0.002547703526832625 To:0.0024866660676049978 :0.03392849000746154 +have:0.3240735312310035 has:0.31028315415748065 had:0.2166773661274815 having:0.030793406418673855 not:0.027727066471573608 never:0.013264145146853793 lias:0.011657652048380726 bad:0.010060266271892342 ever:0.008101282098693785 havo:0.007205927652190945 already:0.005411756248276497 yet:0.0033506567306679992 haa:0.0032820458812634996 always:0.0030612718937980347 baa:0.003040605354073816 long:0.0025738244106935752 bas:0.002223675232794622 just:0.0018798296318748764 hare:0.0017239884046483084 :0.012608548587684036 +well:0.11482583804944232 known:0.09871763831710513 soon:0.0916505083085803 far:0.07244252345830873 and:0.05646760229569708 long:0.033191133685989645 such:0.026114132691679413 just:0.021539382495143138 much:0.018216698075154383 but:0.015820973354116454 it:0.015060478378985437 that:0.012982875435048865 regarded:0.011853385324054824 inasmuch:0.011638912473280656 him:0.010904627694769634 same:0.010576795833003501 Just:0.009621947202407478 them:0.008618852072826538 designated:0.00803461652825095 :0.3507210783261555 +and:0.07895257911471103 was:0.03596317658514438 out:0.024016824392823457 that:0.023672598027062328 placed:0.022844208461019616 work:0.021707439938587154 made:0.020781005318872947 is:0.020224993929329655 up:0.019794182040466738 put:0.018288921183371155 down:0.0171740551508179 interest:0.01663630075189571 point:0.01659978677065351 him:0.016175999448187352 held:0.015562908663841706 Dakota,:0.014616466073415059 place:0.01424333231426501 Minnesota,:0.014067166610364513 it:0.013665465625771424 :0.5740125895993994 +and:0.10038275173527456 Beginning:0.08454506876778513 was:0.04270128988250076 Commencing:0.0405695833232284 is:0.027566222665360032 that:0.019405408689992725 look:0.019015184862769922 it:0.01872728329699828 him:0.018662942658140315 be:0.01834873858796612 are:0.016965247200661948 but:0.016697303740895116 up:0.01624550082114781 them:0.015047790297139343 held:0.014226250042085734 beginning:0.013901322846056665 commencing:0.013833032028030028 out:0.013753735524837454 sold:0.013174941032054379 :0.4752304019970753 +the:0.054981043479805966 of:0.0383094250831321 and:0.028166137012997694 a:0.023276255229589038 an:0.02193876868953534 -:0.02173795936494025 i:0.02067324374973778 .:0.01849828122150521 to:0.017913989860615195 t:0.01776645592905082 I:0.016481683781022896 :0.01582113983621977 at:0.012060312498607445 in:0.011322363895738732 that:0.009960247233930413 which:0.009487548409353216 by:0.009397591224180872 be:0.008939614268858911 1:0.008564124163700861 :0.6337038150674775 +was:0.1869363544236217 is:0.12637753441826685 are:0.10688569117814939 be:0.1006820140043983 been:0.09765544427418431 were:0.0542803101864601 and:0.04319922620067015 not:0.038554708803326655 has:0.025511450338219693 being:0.021311087143511934 have:0.02073825333931933 Is:0.016148993595253097 had:0.01497279257872777 or:0.014414482381099549 of:0.012804228534428638 more:0.00850380652657174 it:0.00757098707005008 become:0.006884678152304812 as:0.006690072589818633 :0.08887788426161725 +the:0.35573791622785095 at:0.05485445519504545 a:0.048872287767466736 of:0.04466918450175284 and:0.0414024248056904 The:0.028737013940039448 tho:0.021139544847269036 to:0.02081224189347557 in:0.01684702347814823 this:0.012600793192544583 said:0.01224881193020462 our:0.011813517264412533 that:0.010455591359101596 or:0.010445034766113167 tbe:0.008765858566443371 his:0.008313730527054643 A:0.007796522000866672 old:0.007766906781638387 for:0.006468563108700488 :0.2692525778461813 +to:0.1448108843637801 with:0.124594626294471 of:0.1150534484897095 for:0.08537162863208649 told:0.052101510309209446 upon:0.04691168560664085 in:0.04043555622096419 among:0.039518497888753217 from:0.034292970314347256 and:0.02961503154060678 tell:0.02474986380654977 tells:0.02370807463546587 before:0.022687722870448873 by:0.020005866576832475 against:0.019854789865604832 In:0.019250473972830133 about:0.018376518157333425 see:0.016620217648318763 on:0.016176551107015987 :0.10486408169903105 +of:0.1914361400046646 and:0.10283161098180546 to:0.09308069090373733 for:0.06675610318731018 on:0.05682288843959094 with:0.056746678774173644 in:0.053296909673361925 as:0.03572258588903717 all:0.03452307426511484 by:0.03174277509137154 from:0.026642252769049746 that:0.026317091929232102 upon:0.02119375731807361 or:0.01862186977767619 at:0.011407965957526101 is:0.008899797849048683 make:0.007750837867874718 have:0.007623944043295401 over:0.007486780570997904 :0.1400962447070579 +the:0.29591527986988 of:0.0603050133940836 in:0.057677736492925395 and:0.054960287461595765 that:0.02740389894888697 a:0.027370578154259025 to:0.02474943294055145 tho:0.02018076678179001 The:0.019953681183516505 no:0.018821998763553713 or:0.0184155346620243 for:0.018403965153138215 any:0.01673396886286463 as:0.015588307979119842 all:0.013273898309379575 which:0.012847204424545953 In:0.011756739603499688 such:0.011346725692137207 by:0.009373093416114532 :0.2639218879061337 +the:0.151564299052826 of:0.09038750472184202 a:0.07461608498201407 and:0.0466615732099648 or:0.03708629888768566 to:0.035569645185394266 in:0.030052392055566975 any:0.021357004017533987 be:0.017082462262097576 no:0.015583554621420614 for:0.01514666947239845 with:0.014723578456062631 by:0.012787654001396713 said:0.012726164481980391 such:0.011693957670550037 tho:0.01002305994460469 their:0.010002787499567302 at:0.00923663004776501 is:0.008936804169325014 :0.37376187526000376 +of:0.4171530685822191 in:0.15364795170040718 to:0.072729747264764 and:0.03641551018325196 that:0.03587588251840872 for:0.02973515401421885 by:0.028615577548459153 In:0.025853498822230658 throughout:0.024539330146851564 from:0.02260509632580598 with:0.017713104405098146 all:0.015463704322556377 on:0.013151408020921742 at:0.011926809002406537 over:0.011916780548291015 into:0.011243032264786412 upon:0.008985432312382 which:0.00839901931127398 as:0.006922430890316839 :0.046107461815349804 +and:0.11047649256582812 was:0.04084163515878905 is:0.03301730337341495 are:0.031227392002771415 that:0.03042983175749684 divided:0.025688827425739913 it:0.024873782612144426 be:0.020907633349858457 him:0.019264231251950575 were:0.01800724500996398 them:0.017676748113626937 up:0.016414093022266308 but:0.015698308711133032 out:0.014904263873418859 work:0.013791667942499771 in:0.012905213963959716 well:0.011867039508877346 distributed:0.011443088880034083 life:0.010478472329871901 :0.5190867291463542 +the:0.32964823428085294 this:0.1852384658875881 our:0.06633647368091761 The:0.026421690882119035 other:0.026388620152102367 a:0.026264485093054294 tho:0.024552687484773236 his:0.024515116482682342 of:0.02370396125048971 and:0.023662324677528043 that:0.02044933940749355 their:0.015060462836658945 every:0.014614644707235135 such:0.013586466292490836 my:0.012941592630258151 your:0.010715801253811472 said:0.009897401001561263 or:0.009616821577191036 American:0.008242586869306146 :0.12714282355188578 +it:0.18417346170426868 It:0.13111540999937563 which:0.08397110102065705 that:0.06133214874980813 he:0.044717956854298344 there:0.04417950190044695 and:0.042846227622397814 This:0.03518063561710796 what:0.02957674200490048 There:0.02562939084435019 He:0.024784817839301393 who:0.0216027587181165 this:0.02014484799997656 That:0.010535181826318804 she:0.008887251499404381 as:0.008567386993985163 man:0.008539582648872723 one:0.007462873501997777 but:0.007442651224149904 :0.19831007143026558 +of:0.14447025293491977 to:0.14160670670188003 in:0.13553835378750223 is:0.05943968964912038 with:0.05799727479201751 and:0.048943687159845976 on:0.03679421063843272 was:0.033636591198397126 that:0.032029117630021274 for:0.03150580007154485 In:0.026463931214270188 not:0.02428100491991077 by:0.024216242499779404 be:0.02363955467961354 have:0.01856056807138091 from:0.015600121301253341 make:0.014963019558810681 all:0.014746310356353936 as:0.014345196156856624 :0.10022236667808872 +sum:0.13509162327779345 rate:0.06581812110686999 one:0.033936023438945515 amount:0.027983125118884428 out:0.026968762438315245 number:0.02480980545377739 consisting:0.022920276950434013 instead:0.02036710943069649 period:0.0199555803486929 that:0.0176315006417946 distance:0.01746654340777028 depth:0.015790810440438268 value:0.015737823384350196 all:0.015008867468685082 payment:0.014972533157490468 part:0.014677050846912476 cost:0.014616053000786108 composed:0.013834472756374316 charge:0.01344322946552705 :0.4679706878654617 +to:0.3080867575449502 I:0.050790881268926474 and:0.04948964167127576 will:0.03980773991959638 they:0.03430705725638428 would:0.02563721895062952 we:0.021546719457158085 can:0.018312943445514623 not:0.017575797775913705 who:0.017230259577567804 1:0.017199137351845455 you:0.014663109244804958 could:0.012352031471932886 White:0.011351856222686089 that:0.009816541389723935 a:0.008899736316274073 or:0.008559456413948476 may:0.007352663847326549 We:0.006919650702402243 :0.31910080017113845 +of:0.09129790931378902 the:0.07369883040827747 and:0.047842263382354346 in:0.04189055351593407 to:0.04045875475680249 a:0.03542341257202578 be:0.02020462051672066 for:0.01979292654746225 was:0.01760256398103379 at:0.017380150555488715 is:0.014984483003968216 with:0.014047653760730413 by:0.01374644383819499 :0.012670486581795598 In:0.01200961464556976 or:0.011563835749786333 from:0.011391516893522809 are:0.011273104484969465 that:0.010755276030689069 :0.4809655994608848 +the:0.16807735899698817 of:0.10541662057906837 and:0.05138367848570702 a:0.04141865232648221 to:0.0385989743764065 in:0.026264864977736738 was:0.019530675665220657 his:0.018900421021236905 be:0.017373825006196972 their:0.015767721170721456 for:0.01557246589796783 with:0.014071419046630446 is:0.012922913111931644 at:0.012690452250034052 are:0.010702713108721902 .:0.010158075558988393 Mr.:0.009672788574483367 tho:0.009612591781990074 were:0.009549306361446321 :0.391314481702041 +the:0.08961926199556679 of:0.06749671534595303 a:0.05206939182099972 and:0.04143828042483465 to:0.018983887283301006 in:0.01821970482437322 :0.014888275407436254 be:0.01288558386630704 or:0.012471223139090512 was:0.011685065528707569 this:0.010686803632451182 as:0.009990002188213025 is:0.00922865377522376 .:0.008784786722896752 that:0.007616943632671623 said:0.007394964924781684 at:0.007281139310107681 I:0.006552072797697914 his:0.006166753732542552 :0.585540489646844 +and:0.055426876040921065 covered:0.02021184869401091 do:0.019642179513944272 met:0.017128448107627623 him:0.016834262934940634 man:0.013878117394720791 filled:0.013779956887578023 parallel:0.013558532015442487 together:0.01352834900754863 charged:0.009743099903820149 trimmed:0.009075822806744932 connection:0.008731768045587228 men:0.008620715811150655 it:0.007517239548042308 up:0.007365241053118401 compared:0.007081799636397178 interview:0.00704057095333118 company:0.0070315289744419685 acquainted:0.006966135056888977 :0.7358375076137426 +the:0.5108647043704025 a:0.1724837260603417 The:0.055519428282291165 tho:0.028243558492133586 and:0.022746211086034546 A:0.011634252967211295 large:0.010536952484976091 tbe:0.009475341882952945 said:0.009357919258459019 first:0.009178108292083409 average:0.008932494360092868 new:0.00870996813101541 present:0.007873248088794253 this:0.007665547123747413 great:0.007494258324544504 other:0.006631543363006913 one:0.0060814977517320975 certain:0.0051866768926265945 all:0.004558372402951833 :0.09582619038460188 +and:0.13494966609550382 of:0.07316641737364253 to:0.07075541455588646 the:0.058493680665523205 in:0.04957317167084668 or:0.034218196852765226 that:0.032957151083144585 for:0.023740081132267728 on:0.02372525113826427 in-:0.022059642840300344 which:0.021050432068915235 :0.019992650391152826 by:0.017069113882183004 In:0.0167310746783188 with:0.014170506894792975 from:0.013586836184279336 at:0.01266636453547691 In-:0.009826052731618101 as:0.009471218486562726 :0.3407970767385552 +no:0.10736002082895857 any:0.09767727428296617 that:0.0827467182165623 some:0.07679118028618755 of:0.0744658090965308 the:0.07272658885259174 only:0.045089119751747606 and:0.03652183776190707 but:0.035833526589869893 every:0.03243044330190051 No:0.03003722256632965 in:0.0254169927256933 as:0.02443384087734946 for:0.020304919226052466 The:0.019789653385316075 by:0.01877060845138402 a:0.0182326682399998 Some:0.017820142409978937 than:0.017454191362142192 :0.14509724178653188 +the:0.11919516938815296 of:0.07230453158552728 and:0.05781056740443249 a:0.043018564803886335 to:0.031305092790907506 in:0.020848713353460488 at:0.014270110001066288 .:0.012526810245749479 :0.012413283442322082 for:0.011719122709941797 by:0.010808400946589808 or:0.010404172990115616 The:0.01003576004804544 with:0.009811868184449042 tho:0.009295902015355835 was:0.008924239095331684 that:0.008672304223433876 is:0.0085591147338948 be:0.008335143826716943 :0.5187411282106204 +no:0.21776686999689673 or:0.11272955170710247 and:0.10220922794168597 that:0.04884738387964123 any:0.04481444017781771 the:0.04449372609648528 much:0.04163277238460741 if:0.03300833078292966 of:0.02384625006572001 nothing:0.02311133200604435 once:0.022839517924260616 No:0.022242297656927413 be:0.021228234801413278 all:0.01799824653383756 a:0.017727822567123686 not:0.017573544018894324 as:0.016991762227906708 little:0.016759644689465166 but:0.015448739158922186 :0.13773030538231823 +from:0.1440794973424935 the:0.13015299724318258 in:0.08093927620826695 that:0.05911886084826407 some:0.05459647470635132 any:0.052685990973944656 this:0.04810117293168824 a:0.0441243728905235 same:0.04044130064189971 of:0.03968791274235325 no:0.03436796329741843 first:0.032123377850348196 long:0.02579241270661878 short:0.024241348867565723 In:0.02238569563719236 to:0.02046471011699861 and:0.01895358686248183 one:0.018062045621468775 which:0.01640347495111581 :0.09227752755982371 +of:0.28767355066866834 to:0.08775711267569858 in:0.08678131196995101 and:0.05160598694501188 on:0.04646139928102899 by:0.04519522654900943 for:0.044547789071328545 with:0.03396756772609607 that:0.033699232901107726 from:0.03075346596941143 at:0.027039283056790858 In:0.021061449543044047 as:0.017514234937992545 all:0.012543839382496166 upon:0.011844431150487573 is:0.00998972746569266 was:0.008814315973987914 into:0.008557199930727406 through:0.007781895704231326 :0.1254109790972375 +one:0.1028303141280697 part:0.05963429477052991 out:0.04766456937681193 some:0.031418679026461914 members:0.030764490253327767 side:0.029940657362655835 portion:0.022063658796890564 office:0.020457735219956013 member:0.019726706386316174 end:0.019666887540649894 tion:0.018667441728710307 parts:0.016814747270460957 people:0.014112771422418794 all:0.014072739582212475 any:0.013183573287639892 One:0.013083578354183906 that:0.013024335602903442 account:0.012482348155001894 many:0.012077825070275192 :0.48731264666452345 +the:0.1454500361787387 of:0.1080247151493501 to:0.04516715868785427 boy.:0.036249098323069925 and:0.03403580073245388 girl.:0.032660326140049385 a:0.03171979252021135 in:0.02714044436566853 for:0.02365213940166824 be:0.021942286684630472 their:0.021087116084698817 his:0.019774122064073623 was:0.014637031197642503 with:0.014008395154201525 are:0.012730720509515858 is:0.011363112041341867 as:0.011357870543086747 from:0.01063391638067422 were:0.010589399829418696 :0.3667765180116513 +that:0.2263031949420831 which:0.11514200190594188 and:0.09293222334896588 when:0.08237352855887076 as:0.05583744995095225 if:0.05241798012368217 where:0.029143713359211516 but:0.02714521549234831 to:0.026304318265478608 what:0.02218894616664434 until:0.021353976645274084 will:0.019198428233405472 would:0.01789284203734065 When:0.016215689658650306 while:0.015173450623500452 If:0.014876276713473363 said:0.013920581315776186 because:0.013313441904160249 should:0.013218139585699581 :0.12404860116854083 +to:0.14189393590180194 will:0.05739228135466825 t:0.05453314980602502 that:0.041843043017140265 would:0.03909264579669568 and:0.03883550485435748 I:0.03009182294498684 may:0.02609491598813315 which:0.020695165253699622 should:0.01977656238993678 shall:0.017907350947676072 not:0.014989936622492093 can:0.014921005933167681 1:0.01482737719229919 :0.012846870964661042 must:0.012781991865814649 when:0.012334037662333649 this:0.012312090622223729 could:0.010861447327209851 :0.40496886355467704 +the:0.22068918582368677 this:0.12735291913187957 first:0.07110756038217877 that:0.06971933404885608 his:0.04238951923972401 second:0.029929517017498044 same:0.028903325273189506 on:0.02786054517453856 any:0.025376732236358883 of:0.023987442132571715 a:0.02173104539428255 in:0.014367376458839894 tho:0.013260354321489818 took:0.013042701594992162 third:0.012468675477822357 one:0.009736267904013326 whole:0.00919113917028279 other:0.008446263288459715 right:0.008420424245105806 :0.22101967168422967 +of:0.28767355066866834 to:0.08775711267569858 in:0.08678131196995101 and:0.05160598694501188 on:0.04646139928102899 by:0.04519522654900943 for:0.044547789071328545 with:0.03396756772609607 that:0.033699232901107726 from:0.03075346596941143 at:0.027039283056790858 In:0.021061449543044047 as:0.017514234937992545 all:0.012543839382496166 upon:0.011844431150487573 is:0.00998972746569266 was:0.008814315973987914 into:0.008557199930727406 through:0.007781895704231326 :0.1254109790972375 +the:0.35866789867133914 National:0.10888293390651815 State:0.07354302694653501 a:0.05111661014544282 said:0.04895425287787066 City:0.03481926035483117 this:0.02808945859817692 our:0.026472965011009913 Constitutional:0.025724995419102517 tho:0.0205543125083334 County:0.018726854783765602 Congressional:0.0185892081136473 of:0.01643321753339154 tbe:0.01349109711581807 Judicial:0.01340092925346901 every:0.012836972876400825 American:0.012811995072076188 his:0.011008495649615695 York:0.010745222205844491 :0.09413029295681162 +to:0.19878127813340274 with:0.09186982907340811 for:0.05817838428287435 brought:0.03883352286130994 by:0.03823122843333262 put:0.0342092197893134 told:0.02710327802665422 get:0.02637077151232843 let:0.024357312348717436 keep:0.024043526536171648 asked:0.023857747288223083 bring:0.023672593737206114 took:0.022750899005442346 led:0.020298898211965174 made:0.01960842007218498 of:0.01920404964562558 take:0.01919895417118833 see:0.019065496132175532 upon:0.018951300448892355 :0.2504132902895836 +sum:0.05519286924780627 amount:0.0417431120946592 number:0.037929151940290826 out:0.03524761867090972 purpose:0.02682465988541088 rate:0.025837387834803247 means:0.02513629651577624 matter:0.02289609017615552 all:0.022011282184798378 is:0.02094864872852792 and:0.020012728258541588 are:0.02001123829890554 line:0.0195457000785362 one:0.018736685204772084 men:0.01800092631079578 tion:0.017342016568211004 be:0.016153757154157615 value:0.01611476692513791 cost:0.016065327053499858 :0.5232497368683042 +of:0.09129790931378902 the:0.07369883040827747 and:0.047842263382354346 in:0.04189055351593407 to:0.04045875475680249 a:0.03542341257202578 be:0.02020462051672066 for:0.01979292654746225 was:0.01760256398103379 at:0.017380150555488715 is:0.014984483003968216 with:0.014047653760730413 by:0.01374644383819499 :0.012670486581795598 In:0.01200961464556976 or:0.011563835749786333 from:0.011391516893522809 are:0.011273104484969465 that:0.010755276030689069 :0.4809655994608848 +and:0.12839518514420303 fact:0.06067567706071383 so:0.05168888929207513 said:0.046289748894971915 know:0.040559940604328305 say:0.035999225825095564 says:0.02759760754200287 believe:0.02752020073619682 of:0.024596414758973513 stated:0.023273328582185997 is:0.020171220528918177 found:0.018677853254504995 was:0.018135232569922624 but:0.01750262990108255 all:0.01653410660423785 opinion:0.014587137628181557 reason:0.013987628838269492 known:0.013700073836516493 think:0.01339142695854529 :0.38571647143907395 +and:0.09414042845502596 the:0.0594091408731104 to:0.05890793791603044 of:0.0500469454015627 in:0.028813889106413214 he:0.020251169538983392 that:0.019887043313939184 or:0.019437275495288724 re-:0.018831610910975998 which:0.018545710081605764 I:0.018476896386713695 for:0.017687709531044093 :0.016166794513993568 will:0.014382885693111584 dis-:0.01382283392562281 not:0.013387153346709518 have:0.013166414526214965 con-:0.013077644960842318 be-:0.01283725506819274 :0.4777232609546189 +of:0.2863237838390385 in:0.09795794107825026 that:0.09411196478922948 to:0.08676298333398252 and:0.06954553800307138 by:0.048408098196457375 for:0.036045260275657284 as:0.027618534649542267 from:0.025996866760636395 with:0.02472868476450657 at:0.022793980256075097 In:0.02192248227786107 which:0.017839108884805752 when:0.01521712062522231 upon:0.013125161213482844 is:0.012078017360607887 but:0.012050844877380968 on:0.011818219582704008 all:0.010640390043749507 :0.06401501918773851 +of:0.05169684772729582 and:0.027639898074123825 the:0.02402980501683951 in:0.018521665887815418 -:0.018375662516401464 :0.01741734917266282 .:0.017107994539524243 Mr.:0.016507799709912542 City:0.009348041257361342 or:0.008454519468518289 a:0.007666585828291844 I:0.0067380906432285975 by:0.006648526242642056 1:0.006056497798353439 General:0.005937054668415388 :0.005905217487202866 to:0.0057666643089509095 on:0.005743600902341391 for:0.005703278218076999 :0.7337349005320413 +of:0.2809452381464953 to:0.10040204464477216 and:0.07583281254486135 that:0.06692625399419734 in:0.059677678067224335 on:0.05541302515195416 by:0.03606130519164089 with:0.03351090435444139 from:0.03332370265539562 for:0.03127825568904749 at:0.022016584084986614 as:0.014706126966995494 all:0.014069834248878664 upon:0.013269983307293159 which:0.013150127103663728 In:0.012272078877822187 is:0.010571361079404148 when:0.010304685643285662 but:0.009526206168859469 :0.10574179207878086 +for:0.20727366247799617 of:0.17731810716146795 in:0.1389669115670066 to:0.06900018390143285 that:0.0500793601978603 and:0.04071509181146028 In:0.034199659616260404 at:0.030669233580410123 with:0.026284235620949437 by:0.021220461373343737 on:0.01996803251813446 from:0.017003430424727586 as:0.014755261568065446 is:0.014209164896328754 all:0.00995268094797398 or:0.00993698207351271 when:0.009022011185529671 upon:0.008794658861491757 but:0.007203988097421794 :0.09242688211862599 +that:0.30224696443282995 and:0.08518436837548958 if:0.07419464888516036 as:0.0566606563633685 which:0.051802941477226486 but:0.04520561429445257 when:0.03832844578227405 where:0.028027228873453207 because:0.02236174370555611 what:0.019826026339261907 If:0.01887862064640597 than:0.015275365070534924 for:0.012469398593163912 before:0.01126030064263522 until:0.009492934227077995 though:0.00811043378171814 whether:0.007692008253558715 while:0.007484369289441446 But:0.00721557663193813 :0.17728235433445286 +and:0.07895257911471103 was:0.03596317658514438 out:0.024016824392823457 that:0.023672598027062328 placed:0.022844208461019616 work:0.021707439938587154 made:0.020781005318872947 is:0.020224993929329655 up:0.019794182040466738 put:0.018288921183371155 down:0.0171740551508179 interest:0.01663630075189571 point:0.01659978677065351 him:0.016175999448187352 held:0.015562908663841706 Dakota,:0.014616466073415059 place:0.01424333231426501 Minnesota,:0.014067166610364513 it:0.013665465625771424 :0.5740125895993994 +so:0.2791544366675889 as:0.12533691456247115 too:0.07833859470630009 very:0.07194664504060548 how:0.07117853241525489 is:0.037024796312571856 and:0.036882778171675755 a:0.03586816727829216 of:0.02606562132123454 not:0.02441212400775789 with:0.02403843301300252 for:0.023032303080762928 be:0.022746273990006276 are:0.021160209536060487 was:0.018024723911372637 How:0.011647996865992298 been:0.009545796923728839 the:0.009056050564188213 by:0.00887290735339689 :0.06466669427773623 +of:0.2414992617818343 to:0.09040309371216336 and:0.07932279313489052 all:0.06744959139329781 that:0.060406793514365405 with:0.05758165598133521 in:0.03961166558617648 for:0.034849067265471406 by:0.02898411961147983 on:0.026113710941422185 as:0.02367768141643457 from:0.023228606747377405 is:0.021140353420734018 upon:0.019802602475506696 be:0.01738331422702172 have:0.01402777514830562 which:0.012756524994168832 under:0.011609954204139674 at:0.011492117648741989 :0.11765931679513296 +the:0.5492164477794792 a:0.17397149234657305 The:0.0949638297801387 tho:0.03133128820480155 his:0.01892828473191275 A:0.01667306578459778 and:0.011420309505085562 of:0.010101279967602737 tbe:0.010016587923705576 at:0.007905760278885402 her:0.006289804899055645 this:0.005005839761572593 in:0.004809671095533305 first:0.004754162224655616 their:0.004540409262196064 Tho:0.003600037562533153 one:0.0033030903957447194 its:0.002939062204513678 for:0.002897746503998171 :0.03633182978741465 +number:0.039281743618290704 out:0.0357195665606414 one:0.035140790327256054 day:0.03374012784344899 quarter:0.03213600704769859 sum:0.02937603371537228 rate:0.024720556552521346 line:0.02325814827088344 part:0.021082122626250817 side:0.019924865147366858 amount:0.018782162070827276 cost:0.016861070957674314 end:0.015863258598072232 all:0.015547403234885683 half:0.01537795519302612 millions:0.014225582513554892 tion:0.01398133087673084 price:0.013969999675363682 value:0.013007678358372916 :0.5670035968117615 +in:0.1729784500565174 of:0.1352580752330534 to:0.0876544117068391 on:0.05664107257294026 and:0.05653604062491738 In:0.05104592894963592 with:0.04895823979273944 from:0.02864796314868946 that:0.027909912006973424 all:0.02777726504116284 as:0.026814144457198718 for:0.025663530175033374 is:0.023794189763288634 at:0.022527871203619283 was:0.018986503859024482 up:0.017627166382535926 upon:0.016527502203524027 by:0.014895758200891363 give:0.012984993543616704 :0.12577098107779885 +the:0.1995051608067304 of:0.06396229459684612 and:0.05282660488447008 that:0.0348386923597088 The:0.03175596856312186 a:0.02559002970661738 in:0.023004153267151637 or:0.02063445589169463 to:0.018089782799462325 which:0.01681837010133177 no:0.016818072614092686 as:0.016228091281832883 for:0.015810375530307914 tho:0.012928855453868685 any:0.012753077340320081 such:0.012200778634757771 he:0.011989420774490698 Mr.:0.009950685457926179 more:0.009863070689844792 :0.39343205924542335 +two:0.024705538432598224 one:0.021936401170079566 day:0.018413472778213133 on:0.015455919362352993 and:0.015403518580975316 in:0.014759840903704715 more:0.014739894144540511 man:0.010374950218021765 lot:0.009378074666815596 little:0.008540129026564843 law:0.008371070709401695 year:0.008279658457737976 the:0.007768167707544255 good:0.007564885926337183 three:0.007175136961579211 land:0.007171388257399142 month:0.007032110644114997 book:0.006807317136686728 for:0.006787765517226353 :0.7783347593981058 +not:0.26255908563118613 and:0.13921454756682564 as:0.05495856546603937 is:0.042008933998357825 are:0.02686555846715431 that:0.02284142373648137 And:0.020473734947169232 was:0.019321497350688117 have:0.017804674461125488 to:0.015251163459143329 be:0.014774929182545396 never:0.012503072702913166 will:0.012108314284552531 it:0.01207011486672801 has:0.011327743111567003 which:0.01077113971152279 or:0.01076806907243161 but:0.00976881802796342 had:0.009591820868452191 :0.2740167930871531 +one:0.06754190432163522 part:0.05231163511576496 out:0.04609588594236959 some:0.02740306976054911 side:0.02387622494371665 end:0.022518288784217105 members:0.021845751933956114 portion:0.02151370006345736 all:0.02022572610903207 people:0.016238426460010967 and:0.014555909544903867 that:0.014078768366257871 day:0.013832139668816516 tion:0.013547994796857001 front:0.013380738665131557 any:0.013269620285130524 member:0.01265082101866512 time:0.012443834037564471 office:0.011845495219016932 :0.559824064962947 +of:0.24378544153219323 a:0.08178470158307598 the:0.0713618932873619 and:0.06722394717944749 to:0.06585084373074516 in:0.03758328633501157 for:0.035191684391636564 thousand:0.020045375146987086 at:0.016912826511870496 all:0.015156273027670223 by:0.013934385742878664 one:0.013894192802424567 some:0.012853293390141218 about:0.012726386917530785 that:0.0123192613633922 or:0.012060983404747348 other:0.011733834764438017 than:0.011107194762241944 as:0.009936807614771528 :0.23353738651143405 +the:0.2015793647013168 an:0.1204748378460418 and:0.11371510095644717 of:0.11087688822099709 a:0.06562533257857417 their:0.037333327609413935 most:0.028960229764025326 his:0.02645184578699033 The:0.025057651484252593 her:0.020384135502111978 very:0.019417576853872322 in:0.019397919901146587 our:0.018416959412442757 no:0.017461587729292453 with:0.015181900572145796 to:0.014398372347615712 or:0.013181597101778434 its:0.012315492220758154 for:0.012171067485628441 :0.10659881192514818 +the:0.1960377999874784 of:0.08462832605142355 and:0.07515131761946393 to:0.05909897074080948 a:0.026527340995176948 in:0.02572808593287078 that:0.020878147094484458 The:0.018532690400372743 for:0.01845789883059945 which:0.01385621504501629 :0.01305171179848265 as:0.011363668418806332 tho:0.011277215897910904 from:0.010515840602898528 by:0.010471288626217783 or:0.010260480548748176 an:0.010115313748666786 all:0.009608390459081741 on:0.009433969482010814 :0.3640053277194803 +they:0.10545617970266509 it:0.09810032184933686 I:0.08942628141894338 he:0.0845533567148342 we:0.049436630798983514 that:0.04334882625099913 who:0.040317769489409294 It:0.03874658327360457 you:0.035588263645208215 and:0.032650811179293825 which:0.030854696863988534 she:0.017873445674859014 there:0.015768305248762188 one:0.014774862974692344 people:0.010758454039717641 1:0.010221560037835687 He:0.009665590676988746 men:0.00962070703441913 We:0.00959997870462969 :0.25223737442082894 +of:0.11972567288620241 and:0.11629889261092359 is:0.10198758388642543 are:0.09483957650250935 now:0.040864895414638544 was:0.03760429659627497 by:0.02740371020711606 as:0.025839058961897126 it:0.023256102314808767 not:0.020294615749937486 that:0.01877557920195635 but:0.016857386550066217 were:0.01598912671747863 Is:0.015207137867256117 the:0.014924241204195483 which:0.014086944224864116 same:0.011712573168506551 be:0.011587161376755499 after:0.011237418762609096 :0.2605080257955782 +and:0.06482532005926644 make:0.053557515354908894 that:0.04537930856598309 of:0.03568041943819959 to:0.03339282357193387 as:0.026539938677635988 made:0.021699312706131398 for:0.020231353779388853 :0.020021295298777636 but:0.01932203495600022 do:0.016512322666077474 is:0.015478290797494606 put:0.015233018749389716 with:0.013096415035357736 was:0.011805009215314684 think:0.010597119032996732 found:0.010407377616412652 find:0.010277527371178126 makes:0.009360049026733989 :0.5455835480808183 +it,:0.0181009921112735 him,:0.013087272025903655 it:0.012948277033143855 him:0.01281608738270048 them,:0.012357925588406985 up:0.012167947697688107 years,:0.010241408267808349 in:0.01020700275430686 here:0.009422274428819719 years:0.009242868952039386 ;:0.008683178642384425 out:0.008657957766204436 time,:0.008588218063528165 man:0.008388947306367968 them:0.007693533316381317 time:0.007561038180519095 country,:0.007251919667226753 people,:0.006865259353660791 States,:0.006147438008201729 :0.8085704534534344 +half:0.18440451484716833 of:0.12755899368929918 and:0.0726781819005123 for:0.0652574095870419 in:0.050566385707931344 to:0.04897635222749559 is:0.048328437997913976 was:0.04078753175425047 with:0.037804117354115645 as:0.03585996537223627 that:0.03479359048142008 by:0.02892396560300139 at:0.02686797107450596 from:0.018368960764522907 be:0.017067060057996446 In:0.015564057326696476 cents:0.014146841477115596 about:0.013700590451566177 have:0.01189761582268005 :0.10544745650252993 +and:0.0859418744517804 of:0.07551247486671721 to:0.07539659672374623 the:0.07045309393508928 Mr.:0.02274758551277789 that:0.017652724646195696 in:0.01737598277825107 he:0.01709959254149381 which:0.01654103510411567 I:0.015273998849156756 be:0.014979944657604782 was:0.01272916967430284 will:0.012671915297208573 for:0.012637617910702897 they:0.01214058432612297 at:0.011967166323311537 a:0.01138651066458126 is:0.010295563881058534 on:0.00997892754008469 :0.4762176403156979 +and:0.10286481078953294 of:0.06591486151120454 the:0.052825770318020576 to:0.048933842408371786 a:0.029335519344463417 in:0.02219725848502109 as:0.019933072302410555 that:0.014519317869712021 I:0.011377415731855427 which:0.011010933230203265 his:0.01099302182585031 Mr.:0.01064419423911087 for:0.010568750629962518 or:0.010563335780741982 much:0.009830864925447831 will:0.009689463271057304 be-:0.009435293923911701 he:0.009367480713275225 be:0.009177072692950755 :0.5298177200068959 +not:0.24497020209076587 to:0.2215713527001755 a:0.11555142154166387 would:0.09400640036990886 will:0.05279241880907207 and:0.03384593365586522 may:0.023773640563583245 shall:0.020179293407239327 no:0.01829043568167751 cannot:0.017694183749770852 should:0.017262870752393453 they:0.016148217370752966 the:0.014399461306110103 we:0.012669793017962727 or:0.010196318947768988 I:0.01013159083984103 can:0.009958893798026886 must:0.00936951306280354 you:0.008473919675680503 :0.047714138658937484 +it:0.22128406178448912 It:0.1719961944992759 there:0.062750160465621 which:0.05471295848688537 and:0.03787005257022947 that:0.037675210360449185 he:0.035540615505370673 There:0.027089653975518307 This:0.02500466340269856 this:0.01934671231018055 He:0.018009096689023042 who:0.017014811794336816 what:0.00989273630452597 she:0.00783919117334675 work:0.007770291073092092 but:0.007248549190922906 one:0.00723184528049067 country:0.005298281326960443 That:0.0049787751961648296 :0.22044613861041837 +:0.040709462169367314 it.:0.02886333447537679 them.:0.018134416432875267 country.:0.009161433709242663 him.:0.008406711199150957 time.:0.0073556887851985945 people.:0.0069944468465297175 us.:0.006633782877409193 and:0.006083065166743838 .:0.006023228114046467 day.:0.005779351893335473 year.:0.005384960733133273 world.:0.005337435080099149 life.:0.005299379849578179 again.:0.004865117766770843 right.:0.004663938485429875 all.:0.004641185734253785 tion.:0.003938004743264257 her.:0.0038961942067175215 :0.8168288617314768 +the:0.08696246125702486 of:0.07921983743472762 and:0.0600748434617934 to:0.049606316176928414 at:0.03766100777469246 in:0.029578143156914215 a:0.022420815696217802 .:0.014131652138480822 for:0.013978427380074572 his:0.013719424851853151 was:0.013676409917971815 :0.012786171520664144 1:0.011944996059381945 on:0.010166960761480718 I:0.009607195164161858 her:0.009077044891855674 from:0.00868386047614381 In:0.008358238029252821 be:0.008189387591444455 :0.49915680625893544 +and:0.06990371248516339 as:0.06002856545533821 able:0.03566643818036025 necessary:0.033363533227493684 him:0.03086134206612245 is:0.028701907673622604 time:0.028520595785812515 right:0.028019588154253854 made:0.025349263086645594 enough:0.024602250531041734 unable:0.02316349574776175 go:0.019671116397961905 them:0.019243810209227597 order:0.019004579295325955 me:0.017345495671404303 brought:0.016985515282387457 or:0.015518927922145433 way:0.014606916166253097 out:0.014236854435428244 :0.47420609222625 +I:0.09402827984298812 he:0.0888697530861873 they:0.08685712234380431 we:0.08320978590551631 you:0.08241659510708002 it:0.05024108360786777 and:0.046077095701641334 that:0.03905368644428252 which:0.02710997003891945 who:0.026334592732733496 one:0.02595059530716406 man:0.02211692711978576 It:0.021345279989327434 Ameri-:0.020033336290305043 We:0.019946007335253965 she:0.01878321401340363 How:0.018538950351482158 Nor:0.01432270988872936 nor:0.01375693676876117 :0.20000807812476679 +and:0.1146763320048399 that:0.06925093830603939 which:0.0585039295092199 I:0.04689944435021309 who:0.045156246624326386 to:0.04297954357255773 he:0.039144125966952055 it:0.02688280203861987 they:0.025361188183112494 but:0.01829116895373655 this:0.015853459202166995 be:0.014036073613908923 not:0.013245327338001557 was:0.01316342765799539 we:0.012919512431422921 have:0.012699321371418477 He:0.012650084806722596 a:0.012448199096712654 1:0.012390515098434564 :0.39244835987359855 +that:0.3049087255014917 and:0.07806860748484838 as:0.06616239546692676 which:0.06055319401352315 if:0.05672569841432216 but:0.04459625376196091 where:0.029024549256688764 what:0.026006571916316834 when:0.023830050573067564 because:0.017216060718765813 If:0.0149424947500639 than:0.013202460303232933 or:0.01149210600864712 think:0.010109950259266864 until:0.008779356670120805 whether:0.008632631732384832 time:0.008216827008013745 before:0.008079779694387496 thought:0.006960515104152943 :0.20149177136181734 +all:0.5775705922394336 different:0.07890226149577534 various:0.06367848139543465 other:0.05368411124907841 the:0.036827676807790116 many:0.028953911014500712 All:0.01726841145010995 and:0.01656941953868735 certain:0.015567959838146852 several:0.007934718046433892 of:0.006527584662881004 two:0.006144229356785946 these:0.005794230994136898 nil:0.005319679975855188 some:0.005180045152481237 three:0.005149600288014697 as:0.004887908797660259 best:0.003950245371916256 for:0.003855721213767035 :0.05523321111111061 +of:0.09368504141981476 the:0.08550822088525627 and:0.07959274729912001 to:0.060190356761094105 a:0.046040327124214304 be:0.023158483560491876 is:0.022861486689652728 with:0.020741132477434254 which:0.019856475418745016 that:0.019603545192950864 or:0.018833416249910095 for:0.017903462238290903 was:0.016036258585091806 it:0.015025064565714657 their:0.01493901007170613 no:0.014254222618882944 in:0.014208353620685017 are:0.01404003682749466 his:0.013904692011915147 :0.3886176663815345 +:0.0973217852264055 it.:0.022867316347887797 them.:0.012410336667367398 day.:0.010119608301238186 .:0.009096532114746638 time.:0.0071456232823328 him.:0.006350639279684074 year.:0.006252735457664014 ::0.005780084171350953 us.:0.005778116407611151 country.:0.00563981108245978 law.:0.004975066113661449 tion.:0.004636294298635105 all.:0.00457691214687804 city.:0.004521570840932523 water.:0.00446775516044647 out.:0.004335274137765545 ?:0.0042933539641589556 men.:0.004287045296718475 :0.7741441397020552 +of:0.31072435679530547 to:0.10746906240297005 in:0.1039950549619232 by:0.06397379614481193 and:0.04494794649421822 for:0.043842210438859115 In:0.04369197907598614 that:0.040409852031681126 from:0.03516070682437406 at:0.02978605618792453 with:0.024731968068511568 on:0.019264805584791784 all:0.017782252075181765 upon:0.01467871283165425 when:0.008497465244278146 ot:0.008447041116797794 as:0.0077797111311005245 against:0.007563938853954495 which:0.00704063880742844 :0.05921244492824737 +it:0.1268296174339689 It:0.11963057178592604 he:0.08533622321168804 which:0.07327812384209255 I:0.05345858564290536 and:0.04015207071954443 He:0.03258289172638812 that:0.031836833293864254 who:0.020847357392201456 she:0.019865956162839742 what:0.018445336805981594 bill:0.01700687408140441 1:0.01614784266385865 there:0.0150614018360307 She:0.010480055655661496 This:0.008928357867222734 meeting:0.00838625328897927 resolution:0.008002613380763097 as:0.007087411065645032 :0.2856356221430341 +the:0.3342169294286294 a:0.13312516539414743 of:0.06638959768575516 his:0.05522865230093071 The:0.04431452338736987 and:0.04231723012031839 this:0.03294803855093872 their:0.02728991716130516 our:0.024941733745491253 tho:0.02237779511138621 that:0.02024864601234478 in:0.019884147161363806 any:0.019048699987827516 my:0.017682779540358913 no:0.016768500946975018 her:0.01642066074418509 or:0.015818121223827447 other:0.01532941284263537 to:0.015312053431288261 :0.05933739522292145 +of:0.1322215206011433 to:0.04701353657781959 a:0.042536328711830704 and:0.03898305208068023 with:0.03459491681947837 for:0.03372603303403118 the:0.029064574374595187 was:0.02350960636928611 in:0.023207584076088462 that:0.020585869334237755 by:0.020533783667356306 -:0.018962512099410394 have:0.016758560668345735 is:0.016340982910759885 had:0.015233329267301579 or:0.0146585260980837 be:0.013056475672158752 In:0.011354833542169056 has:0.00923713607442178 :0.4374208380208019 +and:0.0859932740170993 is:0.08147730196404042 that:0.054321814944993586 as:0.05286061859689675 but:0.04690412177624322 had:0.046252538277974695 Is:0.0449346762071669 was:0.043573548136347055 have:0.04224655151908326 make:0.037045276247938755 be:0.031090360569736363 of:0.02270950970161033 found:0.022530000158442476 for:0.0211670744666077 has:0.020303923496682058 which:0.019986417358459553 when:0.01947540697462244 made:0.01943896429404719 find:0.018057264392651606 :0.2686313568993563 +and:0.07181562702745725 together:0.06672214896410926 connected:0.05460722541492519 connection:0.053485248068146786 accordance:0.040816432970329504 comply:0.022327715315442986 acquainted:0.01991331996883064 compared:0.01902004432375884 contact:0.016949822974841922 familiar:0.016791563233682194 up:0.016271038698657696 do:0.015355480362757417 interfere:0.014875808889703945 charged:0.014646284015101253 pleased:0.013610051164447858 him:0.01274062267734275 but:0.012200014478196207 satisfied:0.011962054640116513 it:0.011810815262474694 :0.4930786815496771 +.:0.05708660791016181 Mrs.:0.04470027994278274 and:0.0432391607347906 A.:0.04294254104050747 P.:0.034985448645928785 of:0.028158136808709572 Mr.:0.027065938659113095 the:0.025894489081513324 by:0.021950544228932764 Y.:0.02095930234360129 John:0.020901307259469627 J.:0.01703749513812039 C.:0.01650932164552774 M.:0.01562143373377736 :0.01541144520591583 H.:0.015178191527358649 Miss:0.014216446641527391 W.:0.01357270795073332 L.:0.012147169400378613 :0.5114220321011497 +taken:0.06669516099462941 picked:0.06468961126495361 made:0.06326655200233773 build:0.045965611335630714 put:0.0403136118982769 brought:0.038288251604658104 make:0.035157082893327835 set:0.034457734506786575 it:0.03289233761295476 built:0.031065656667463817 came:0.029254750194900432 them:0.025077232436616068 take:0.024366971003482563 building:0.023042811068342283 and:0.02208985575837638 got:0.021681941325331525 come:0.02113167667973962 pick:0.02093775559103208 keep:0.017128453133653798 :0.34149694202750586 +It:0.15521460383102267 it:0.1548083463021578 there:0.10564460817313052 There:0.0696691828642104 which:0.05080882387865135 that:0.0432721880535362 This:0.027275821013412613 and:0.02716494852242842 he:0.026712848780563302 this:0.025169322068786783 who:0.016503275064162003 He:0.01561947147273502 one:0.01205704001884392 what:0.010877606439305519 she:0.008267448846792992 That:0.0064404951220362735 man:0.005478754602285829 She:0.005291482579699081 but:0.0045006629865876596 :0.22822306937965162 +the:0.22960387215189046 a:0.08520986188008074 this:0.05056324498052267 to:0.03912717159648644 other:0.03430985264968083 and:0.029110382764798954 our:0.028957918653936383 each:0.0264337774185171 their:0.024221733906268757 per:0.023606754397075675 that:0.02329191258966665 of:0.022926788926837253 all:0.02276188341709859 or:0.022001532557149872 tho:0.01727901474428501 in:0.01656455636772328 one:0.01480953078334879 his:0.014039880268427082 great:0.013524995882808663 :0.2606553340633968 +of:0.25765478448226964 for:0.2140330089807689 to:0.1255769211739033 at:0.03972903225991648 in:0.037268764415809 and:0.03587694419275387 from:0.03578659173795587 than:0.022882684655662417 For:0.020678378386918012 all:0.020017204232044446 by:0.01946194757748489 within:0.019234402089272417 with:0.018790091663148878 that:0.01756323430392061 during:0.015506015245531428 In:0.013833225643906715 as:0.012993725792142075 about:0.012570365884352792 on:0.011496779081532101 :0.04804589820070613 +a:0.11177213075942455 the:0.09543698431215787 of:0.0841175590838569 and:0.07910675376413512 to:0.050157659089588434 in:0.04536238845017891 for:0.044537776431812094 that:0.02938308392462598 by:0.02195655887788467 with:0.021917425054095763 an:0.019428690902248177 as:0.018940568749436844 be:0.016467598562953215 which:0.01549558476677605 is:0.015336924548389561 or:0.014872841529621388 In:0.013452806255234628 was:0.01315458864196594 no:0.011181307366851216 :0.27692076892876266 +the:0.6948667057083803 The:0.06603484663225705 a:0.05724521825944571 tho:0.04958556527309892 tbe:0.016084693729326725 of:0.014624616718737054 our:0.013076099754949388 and:0.008867128221308387 in:0.00801659903000271 that:0.007457116718653441 their:0.006446910638442509 great:0.006042918255585236 this:0.005758609730809874 his:0.005681682275514266 its:0.004884943256037892 National:0.004787463324469879 said:0.0037660391591276383 A:0.0031518259244433396 Tho:0.0029903209376339447 :0.019630696451775745 +the:0.2154910934450307 of:0.098310549397817 a:0.07325162204350515 and:0.07107868892980453 this:0.061065468879133285 as:0.034903797733166375 said:0.02800285454796436 to:0.026875819276478873 in:0.026596449768563617 The:0.021385542567899048 that:0.02010620360451363 such:0.019887502553304435 he:0.017884831336712776 an:0.015952807516741514 by:0.015932740811083205 tho:0.014688847003407134 be:0.011684608923631662 I:0.011652741417071736 his:0.011045971344002148 :0.20320185890016884 +and:0.10817459517853248 of:0.08453867269512529 to:0.06903347327054463 the:0.061452686912349126 is:0.02647667230918775 or:0.023753425275445023 be:0.02367630389817069 was:0.020887287971269677 I:0.019928478584993768 in:0.018850840949656184 not:0.017612252704557466 for:0.01723016246578422 which:0.016817834744965152 that:0.01661392447745731 he:0.015321847169291329 re-:0.015001263507764156 :0.014145879264492098 con-:0.013272719046926437 as:0.012502709086164212 :0.403708970487323 +in:0.48169355174240486 the:0.24889085213304032 In:0.14620845330087792 tho:0.01586612676129604 and:0.011996562868647791 iu:0.009129210802414685 of:0.007079106466081714 a:0.006652836820444301 tbe:0.006236369011568194 from:0.005804708768131561 The:0.00543364889599608 on:0.003738341906111136 south:0.0028387373016020754 feet:0.002822615548436971 to:0.002486389177085878 for:0.0023912750675852863 north:0.0021771893428748834 lu:0.0021179999961532287 an:0.0020527486326878622 :0.03338327545655921 +the:0.1143813740681367 of:0.10725563490218938 and:0.07013929237617328 a:0.0672759526714516 to:0.03944702605759211 Mr.:0.032280789449834216 in:0.027269198971288964 with:0.021909795963145674 or:0.02061024109820549 that:0.019525534817269843 is:0.014252297178278717 :0.013083784932540853 be:0.012894570222885867 for:0.012197138456365417 by:0.010979979158896813 have:0.010972992252561221 it:0.010656148240659748 was:0.010307594572519506 he:0.010174940486945613 :0.373385714123059 +able:0.04877829226231735 right:0.0484119508531329 him:0.0469604069355825 is:0.04206225375160581 was:0.040107870283327164 and:0.0355939352456384 began:0.035218208376183266 enough:0.03053360213998286 me:0.028636760069098606 had:0.028449144441021465 them:0.02735280449669545 order:0.02699366161076883 you:0.026636052353413032 going:0.02642600415827459 have:0.026064421329943775 refused:0.025416403473252268 necessary:0.024136830439443015 made:0.023768367943964006 willing:0.023528369802396795 :0.3839246600339579 +years,:0.011244219846488938 time:0.008882161274617746 in:0.008543577446961203 ;:0.008176865856642837 porous:0.00709468490060814 hundred:0.006522156100992782 it,:0.006442646144711248 States,:0.005873955746906458 manner:0.005636242513613943 country,:0.005479624196664403 them,:0.005380555783124355 ,:0.0053213282340232775 him,:0.005116465794074653 time,:0.005012953480321698 city,:0.004996484782641075 and:0.0046864187845840274 dollars:0.004669833782541253 year,:0.00454859238968153 of:0.0044772931635083 :0.8808939397772921 +dollars:0.21020184655970853 pounds:0.04797240868856867 of:0.04716538700101385 cents:0.04316052114074982 a:0.041400429749367265 hundred:0.04032504901152864 and:0.025771594190640665 half:0.014132180196074191 the:0.013935861523507613 $1:0.013548726665373116 Dollars:0.013408239569589088 for:0.01272027855314993 to:0.011024904686949376 is:0.006831481257830888 feet:0.006667463725941315 tons:0.006613744276358472 that:0.006164813973342659 large:0.0060613992750299 one:0.005974712380665937 :0.42591895757461007 +of:0.28767355066866834 to:0.08775711267569858 in:0.08678131196995101 and:0.05160598694501188 on:0.04646139928102899 by:0.04519522654900943 for:0.044547789071328545 with:0.03396756772609607 that:0.033699232901107726 from:0.03075346596941143 at:0.027039283056790858 In:0.021061449543044047 as:0.017514234937992545 all:0.012543839382496166 upon:0.011844431150487573 is:0.00998972746569266 was:0.008814315973987914 into:0.008557199930727406 through:0.007781895704231326 :0.1254109790972375 +the:0.11919516938815296 of:0.07230453158552728 and:0.05781056740443249 a:0.043018564803886335 to:0.031305092790907506 in:0.020848713353460488 at:0.014270110001066288 .:0.012526810245749479 :0.012413283442322082 for:0.011719122709941797 by:0.010808400946589808 or:0.010404172990115616 The:0.01003576004804544 with:0.009811868184449042 tho:0.009295902015355835 was:0.008924239095331684 that:0.008672304223433876 is:0.0085591147338948 be:0.008335143826716943 :0.5187411282106204 +and:0.15820029237598945 I:0.0929404071034661 have:0.08246719586435282 he:0.07172017011324884 had:0.06704198253975942 has:0.04858990177910249 it:0.044849872030568484 be:0.039360456693554986 was:0.036115625165419954 He:0.029008535799782683 which:0.02566788874258307 they:0.02496939399960369 never:0.024807134529855644 that:0.02099681542905014 not:0.020532072338255276 who:0.0190504953948959 is:0.018930185869744535 but:0.018116613747152347 It:0.018002096362850505 :0.13763286412076367 +of:0.1519922369274228 to:0.12493212480324738 and:0.10373056691802046 on:0.07589928857360995 in:0.034251012183937404 at:0.028713074910941556 or:0.028268190738084224 a:0.027605109784247378 that:0.02596310556464396 from:0.020708637374245793 was:0.01828645982887408 by:0.01648438200281382 which:0.01609437246356294 with:0.014153619333656605 the:0.013171056066108 are:0.012559098732805274 as:0.011501002214794845 upon:0.011346950094432002 not:0.011331237906964532 :0.252008473577587 +the:0.4071374189315913 and:0.06449181461132415 of:0.02892866618288876 in:0.028670005984162618 The:0.02603617389223924 tho:0.024993820467459137 a:0.023579040051412606 to:0.01755553213771617 on:0.014626070241060114 by:0.013447843485786471 or:0.012794166593089693 tbe:0.012024509152999897 :0.010353482361299817 that:0.009291482237329618 In:0.007938246807075932 from:0.007526799010378873 other:0.007469196869028889 all:0.006409533041696086 for:0.00626887758057738 :0.26945732036088327 +it:0.22424946419282604 It:0.1552396026205508 he:0.13104633689188552 He:0.041111860731162284 and:0.040372571602223795 I:0.03283692369797742 which:0.026657386343839823 she:0.025068905974654325 that:0.018516477830912564 who:0.017069876822891305 there:0.016071882873469123 as:0.015361271631637632 be:0.012323227107856835 man:0.011290207741822775 they:0.00939995403308691 default:0.008937014310834147 ho:0.008859573484736311 time:0.008066804245907817 She:0.007393989305714073 :0.18912666855601049 +the:0.1972922914779867 of:0.10707931134205359 and:0.07751345641690036 to:0.05965814400216777 a:0.03916990992603793 his:0.03332219732032006 their:0.03331774153636291 be:0.032850203570027194 in:0.031999481129964404 for:0.024419230255829164 was:0.015886632700938704 or:0.015687069681538747 with:0.014077907000147974 is:0.013616501400885488 tho:0.01238352879917961 at:0.012265965151178969 her:0.012068523214408489 by:0.011646939161358685 not:0.011571641806894432 :0.24317332410581885 +of:0.09129790931378902 the:0.07369883040827747 and:0.047842263382354346 in:0.04189055351593407 to:0.04045875475680249 a:0.03542341257202578 be:0.02020462051672066 for:0.01979292654746225 was:0.01760256398103379 at:0.017380150555488715 is:0.014984483003968216 with:0.014047653760730413 by:0.01374644383819499 :0.012670486581795598 In:0.01200961464556976 or:0.011563835749786333 from:0.011391516893522809 are:0.011273104484969465 that:0.010755276030689069 :0.4809655994608848 +of:0.06664773434613529 and:0.05486740178647401 the:0.04144160185929161 .:0.04011554548645396 Mrs.:0.03440265983042664 by:0.019551437505108862 to:0.018340690967563873 Mr.:0.016372305659700423 :0.01601333908814491 Miss:0.01590667830808116 H.:0.012598906194059628 W.:0.011608967381771869 M.:0.011451478012460317 J.:0.010381991361478066 A.:0.009881132960601204 Dr.:0.009203045876421734 S.:0.00917817214774964 C.:0.00909102272059051 a:0.00894958008041417 :0.5829963084270722 +highest:0.05743110403945974 up:0.022887540531175945 made:0.022779044518812092 it:0.019342144067297635 in:0.013179935815715438 time:0.011229751255812331 him:0.01053300940408613 them:0.009919869798681523 out:0.009595449534565708 right:0.009058545303285544 large:0.008744337402630219 other:0.00851950457438458 better:0.00826031648372876 long:0.007678083766957513 work:0.007561566133905146 largest:0.007183470292702689 life:0.006951453788603775 health:0.006921194035107229 good:0.006519627649328842 :0.7447040516037592 +he:0.14204215922224808 it:0.07174080578844616 and:0.07058537574774472 which:0.06364045909748335 who:0.05421466119267323 that:0.05253198290641257 It:0.04068031886851445 He:0.031208443174713656 she:0.024553872652622467 as:0.021345201560807353 ho:0.011939465314502913 man:0.010228909187846903 lie:0.0101822183282211 what:0.009951744078332334 one:0.007707094219399755 She:0.007558601762166279 be:0.006512769346499396 company:0.006201032302697171 time:0.006110757651672149 :0.35006412759699596 +the:0.16465992908301616 of:0.06878431534835946 and:0.059442489354570124 for:0.042132892735224726 to:0.03634394900436075 in:0.023312146657430984 a:0.022528265086755796 :0.014368392741130965 that:0.014122282323657856 or:0.013538868219366264 their:0.01257974160075689 his:0.012418489117884375 by:0.010899055279799418 be:0.010500244643230974 tho:0.010213410203314786 was:0.009422094847739012 with:0.009341790943527963 on:0.009313203699985886 -:0.009200539016056488 :0.4458779000938311 +of:0.26895338659973633 to:0.09130908253926834 in:0.08272893060350174 by:0.08053114435796069 and:0.061775812647466934 on:0.04899619805940386 with:0.04544717126063819 from:0.0341889074580885 that:0.03222484163007442 for:0.03160634313878215 all:0.029606952696101606 at:0.020657055416360214 In:0.018205791697746932 upon:0.0175462033616371 as:0.01641750356767141 is:0.010699190313211367 under:0.009107214739490398 through:0.008948221624943112 into:0.00862814855505943 :0.08142189973285727 +of:0.09901621583726071 to:0.05659574102526813 and:0.04401206970876006 -:0.029235784412103907 with:0.025874119320638114 was:0.02408469504329688 by:0.02339333017626334 .:0.01736826518590313 is:0.017004425200043364 at:0.01615882001359895 in:0.016115517099057692 for:0.015368543190163453 I:0.014852632678224236 the:0.013257949402792235 be:0.0120497791321557 st.:0.010355376492975398 :0.009992962683748847 from:0.008624515675798295 or:0.00856766727277391 :0.5370715904491736 +to:0.1629036424396064 I:0.0928537890564126 will:0.08570390560800575 would:0.07918605355511431 we:0.06964064176224687 they:0.05288080035812227 who:0.05239999064948038 you:0.03619090457572156 shall:0.035518116738445515 should:0.035069990596406295 and:0.03146938039203146 We:0.029334175958262654 may:0.028473367490474223 must:0.026327961447517857 not:0.022303659494427416 could:0.020455388146720294 might:0.015503169977604451 which:0.014370908451314392 They:0.0136492294612116 :0.09476492384087369 +the:0.13173280904209572 of:0.0944879538491148 to:0.05706774040253535 and:0.04265832929118357 a:0.032056927629037044 in:0.024943012585684304 on:0.0235243081780458 by:0.02012601461093651 :0.017990277850825017 at:0.014678549172080795 or:0.013602282235891824 that:0.013497831700134846 The:0.012678576003607849 from:0.011379003861682859 was:0.00968232780868156 an:0.00955246955222774 as:0.009433557049804015 tho:0.009275770220647944 con-:0.009085522682874728 :0.44154673627290775 +and:0.1548026166418622 he:0.14558512837413992 the:0.05132174774616127 she:0.046515158537788155 He:0.03744051140533628 it:0.037318044193221316 I:0.029019867451969515 which:0.02518241481485934 that:0.019380886735992444 It:0.01886318655300616 they:0.0187904878529013 who:0.017988275382173277 be:0.01758772095592356 She:0.01647936380540515 was:0.01608513613488015 man:0.015315082214472368 then:0.015016269590753008 all:0.014653583525836946 :0.014519561504607023 :0.2871349565787106 +of:0.12496200550985935 and:0.12354281402457208 for:0.10871681759331649 that:0.053032793033452874 by:0.052692433417581876 in:0.052562309602026874 is:0.04931153327321286 was:0.04026327898121236 to:0.03848692660131835 or:0.03597863050662896 are:0.03529103469394781 with:0.031290062585213815 as:0.019270418252315968 have:0.018888619634312452 be:0.01866561251745203 were:0.017453354095284878 after:0.017286064869321133 which:0.015879862684896794 from:0.0156485556777233 :0.12977687244634975 +miles:0.05393518757060713 and:0.037150850814282634 feet:0.03634169672890672 at:0.030834878815958162 away:0.030699775580406444 taken:0.022832458079993907 them:0.020764726786915627 up:0.018686449359617167 ranging:0.017383627702110917 returned:0.015629896459806298 mile:0.015406450857440246 received:0.014977068912555057 years:0.014789034932280625 him:0.014764714715477082 distance:0.01445842736192737 came:0.013748040606237546 made:0.01261405008821924 street:0.012537996750485524 down:0.012399114659626051 :0.5890455532171462 +he:0.25486669935771494 I:0.0799119505302169 who:0.07614166370180143 she:0.06211882067536959 they:0.059057660437766175 He:0.04880605568569099 and:0.039845989892708225 which:0.037772587634401014 that:0.03339826897759557 it:0.02536684406329397 be:0.024409630166316035 we:0.023507964706672102 She:0.014189864767201837 have:0.013418474783355469 ho:0.01318554095810681 lie:0.011429740098793243 man:0.009648030862619509 It:0.008761455898764306 has:0.008414526400933323 :0.15474823040067856 +and:0.08934296525867834 of:0.08068838607300491 as:0.07853645433812198 the:0.06307320057451939 to:0.042658746496865775 be:0.030835544751753347 such:0.029703590012664483 much:0.025794511891263566 in:0.023621249210533997 so:0.021449367110620385 is:0.021260609143037765 or:0.019920658237143826 a:0.01927671572579788 his:0.01906207551381598 was:0.01720359984272631 are:0.013935218166333807 their:0.012335998801341931 for:0.011516936419171063 that:0.010287085618050218 :0.36849708681455506 +of:0.10255580725999525 that:0.042711012631463645 and:0.03947449072774293 in:0.0318660283058735 after:0.01936954438913147 to:0.018583992767828166 for:0.018032332519677542 by:0.01603730739937418 from:0.013587298868704457 one:0.010882409495183935 but:0.009553091889174838 things:0.0077250159243757496 with:0.007497831868887073 money:0.007212493013375496 thing:0.007140276405018587 bill:0.00673778607022962 work:0.006438130417448049 time:0.006303927938885982 ,:0.006277375830116932 :0.6210138462775125 +the:0.5821779019560922 The:0.07245384358709538 his:0.04128070500841776 at:0.03862848454062395 tho:0.03162591045295147 their:0.01940934506136335 was:0.018039946002233246 and:0.015896010039679193 my:0.014642372292148821 its:0.0138003539024592 tbe:0.01376573339194573 of:0.011987516917910217 a:0.010555401308192025 her:0.010379160227881311 our:0.00989999282036137 are:0.00710588804094315 is:0.007025527162117241 were:0.006993040448576937 be:0.0056665050879729 :0.06766636175103455 +he:0.1313303151828759 He:0.06687914338479072 I:0.06308591226690566 it:0.052416774697383345 and:0.04871283129561589 which:0.04226939105043305 It:0.041960278806503645 who:0.03828591276061544 she:0.03121493935472609 She:0.01721542272940677 that:0.016284948768841907 1:0.009017403007130782 man:0.009005738291079934 ho:0.008460812578250217 lie:0.0072294768171954045 This:0.0059781763409220996 as:0.005889400960797503 this:0.004524354090026344 but:0.004233907186710182 :0.39500486042978916 +is:0.11974267833543543 are:0.09175644703855246 and:0.08980716384665456 was:0.08757826835505354 be:0.07349854416850882 not:0.06912089942849405 been:0.05558809907839282 were:0.03188248159418089 do:0.030450051026384158 have:0.026550681594740135 or:0.025279980727707246 has:0.019889528939609085 Is:0.01782199609042068 had:0.015574721832078626 of:0.013427364131170114 it:0.011815260223726176 being:0.008526566460330757 made:0.007692383275200222 for:0.007623172958289434 :0.19537371089507077 +of:0.354102480805036 and:0.07681033113064613 to:0.07376981686726924 in:0.06309256340376669 by:0.0568068407332653 with:0.037837914761869075 that:0.03703209061780195 for:0.030329497857243756 on:0.022425023290611835 from:0.022066461127766796 when:0.013497991242505742 if:0.012737804041845208 as:0.012167183935258853 In:0.011993575039379385 which:0.011826102277027038 at:0.010170411912489925 If:0.009881192016351495 said:0.009631570410474646 before:0.00901335862229288 :0.12380778990709809 +the:0.19473588520708557 his:0.10005015403260523 of:0.04953702925468943 their:0.049458310647387475 this:0.04607172735981035 a:0.03638863013890488 to:0.03394954224830614 my:0.026969836102825325 in:0.026602333985112636 on:0.023272976871596015 no:0.02166889688444944 any:0.01991944357885226 said:0.01929414804523064 and:0.0191157402848854 her:0.018168149842170234 same:0.015227659399889175 such:0.015075028043357508 its:0.014150503472853506 first:0.012806256928747935 :0.2565377476712409 +:0.05184015566942153 it.:0.033603100755090085 them.:0.024053095187916065 him.:0.017038812425907615 her.:0.011258432438442002 time.:0.010674553876740133 again.:0.008976125393356474 life.:0.008711482588632196 me.:0.008018095908191747 country.:0.007631230709270275 day.:0.007228680786605954 people.:0.007212381447815685 us.:0.006969983465129595 years.:0.006542858687262232 world.:0.006428849889305123 right.:0.006252877918540023 so.:0.006190118956846004 all.:0.005840962569756632 .:0.00557541504250919 :0.7589527862832615 +of:0.3571967436927712 in:0.25381974232552273 to:0.04815192768443058 In:0.045158912472388804 for:0.04495982796133419 that:0.03809091669200911 by:0.03302965097280993 and:0.030551694366329422 from:0.016599827393236108 as:0.011749104745403919 with:0.009770411352191132 all:0.00933571234165993 if:0.009072694216733948 upon:0.007737445604470998 on:0.007543926592223344 If:0.007368910578544339 into:0.007082366213593714 or:0.006759456254983638 ot:0.006296962261322131 :0.04872376627804079 +and:0.08995317707915026 to:0.06844710404109794 of:0.04605142056172993 the:0.04074574508561307 which:0.02479116931334353 that:0.023764822140213245 re-:0.020841117231308055 in:0.020803825395358622 for:0.020278423301550053 :0.018417753428486977 not:0.016860793136637672 con-:0.016444405871234195 is:0.014386481772210856 or:0.014080680914153714 be-:0.01352268143271276 I:0.01317002660943805 was:0.011429878269381662 dis-:0.011196807025842847 he:0.01113106290024311 :0.5026826244902934 +him,:0.017963356676168486 him:0.017826162823472585 it,:0.0169956423420978 it:0.016026204435717954 time:0.013466250784155817 man:0.011218109063907892 up:0.010755056344371922 them,:0.009572264680869644 them:0.009312909958854837 years:0.008512843426797418 time,:0.007760884944659701 men:0.007359050331015349 one:0.006879389454653865 ;:0.006700038256953161 house:0.006572847917815097 home:0.006346294707816751 day:0.006330994874681308 years,:0.0062827294862105604 night:0.006199285075061417 :0.8069196844147184 +the:0.1431784636192142 in:0.08546715018303981 of:0.061827868482277164 and:0.05515926602171052 a:0.042012188383834054 to:0.03669876513267094 that:0.029102809625610862 any:0.025586059892900793 for:0.023711907727086652 In:0.021811671153109335 by:0.02014212667595045 which:0.01882503782020094 with:0.015376830836276965 no:0.015115052028461811 in-:0.014754516730222118 or:0.014244168794809275 an:0.013864018900880586 The:0.01226227609060653 :0.01213685844607588 :0.3377229634550611 +the:0.11919516938815296 of:0.07230453158552728 and:0.05781056740443249 a:0.043018564803886335 to:0.031305092790907506 in:0.020848713353460488 at:0.014270110001066288 .:0.012526810245749479 :0.012413283442322082 for:0.011719122709941797 by:0.010808400946589808 or:0.010404172990115616 The:0.01003576004804544 with:0.009811868184449042 tho:0.009295902015355835 was:0.008924239095331684 that:0.008672304223433876 is:0.0085591147338948 be:0.008335143826716943 :0.5187411282106204 +it:0.2213689231572647 It:0.1341771841527435 which:0.0759000042312425 he:0.04747414040376358 that:0.04176651982644409 what:0.03548377411178176 who:0.03359667548631392 and:0.0214668813124735 This:0.018981436351769736 He:0.018569682156049226 there:0.01666497507027669 work:0.01238842472797184 man:0.011743188756442932 action:0.011055168084149924 she:0.010540387722207016 land:0.010539373584742011 effort:0.009626813985195645 as:0.009360606496864047 life:0.008590030719441075 :0.24970580966286232 +;:0.05563040850177807 and:0.021209338890026075 him,:0.02008264720231391 them,:0.014302940631452616 it,:0.01189271877125545 up,:0.008512610074362971 her,:0.00846948915311125 time,:0.00813485468445594 man,:0.007131905865636875 years,:0.006844913306559207 day,:0.006840664445895268 ,:0.006488405889108885 me,:0.005781577830739192 thereof;:0.005323796727955798 house,:0.005269616416216551 days,:0.005123816530154824 city,:0.005048151892382789 life,:0.00503408533834965 year,:0.004933761653742172 :0.7869442961945026 +of:0.10669515114677869 the:0.08431600021139003 and:0.07219205067559824 to:0.06539996870790854 for:0.05336359866063722 a:0.04665569647540018 in:0.030388760408687328 was:0.025000551438901626 by:0.024958803430915593 be:0.021033912108590916 is:0.01823186576064908 or:0.01707876053331244 not:0.01668158066739147 with:0.015421534123411877 that:0.01483003069265842 his:0.01439702481026335 which:0.01391123143832942 their:0.0136769577410123 are:0.012959225280041993 :0.3318072956881213 +the:0.11068135768972318 of:0.08316148585499217 to:0.05981084310338559 for:0.0506217023956374 in:0.04865479308017183 and:0.046604979920084284 be:0.029748557941151953 a:0.025343009618416158 or:0.025163751300202954 was:0.023868041887078514 is:0.02087409925645633 not:0.020302003197237024 their:0.020149917910414903 his:0.018357075896423273 no:0.01590326215240806 dis-:0.01557050072396417 are:0.014706276962344746 that:0.01458161347308985 been:0.013610838700566705 :0.34128588893625084 +the:0.13758371847043735 of:0.08126231297889798 a:0.04835240661334856 to:0.03996161899422211 in:0.03603320280674478 any:0.034005415697271016 for:0.03290981553838409 or:0.031193260325817707 and:0.028804775836003934 either:0.02343738739108748 no:0.021123155370424168 be:0.016843477735894497 their:0.016601367834784518 such:0.015397861219013374 said:0.015232309787862667 by:0.013689181478574652 with:0.013615736362004947 other:0.013335896604116772 his:0.012177012617782089 :0.3674400863373273 +:0.11498132473236806 it.:0.018661374504069028 them.:0.015978527301581825 time.:0.009173587658445885 him.:0.008729035571775203 day.:0.008667332071584 country.:0.00822408405794533 .:0.007633793595526238 year.:0.007632105464637216 work.:0.007042070322588704 years.:0.006317111292302596 people.:0.005597442887923305 life.:0.005200907190438706 city.:0.0051671779689936624 place.:0.004991868754207116 States.:0.004871265968696521 law.:0.004838277930436957 tion.:0.004654788229431019 out.:0.00464056462245734 :0.7459973598745913 +one:0.1028303141280697 part:0.05963429477052991 out:0.04766456937681193 some:0.031418679026461914 members:0.030764490253327767 side:0.029940657362655835 portion:0.022063658796890564 office:0.020457735219956013 member:0.019726706386316174 end:0.019666887540649894 tion:0.018667441728710307 parts:0.016814747270460957 people:0.014112771422418794 all:0.014072739582212475 any:0.013183573287639892 One:0.013083578354183906 that:0.013024335602903442 account:0.012482348155001894 many:0.012077825070275192 :0.48731264666452345 +him:0.055537350555073195 able:0.05324123804638483 is:0.05219973573128929 and:0.049990814971973115 not:0.04905326700914392 want:0.04468916485165794 right:0.04067063664154381 have:0.037058415866828794 enough:0.035981793641325525 began:0.035299143556128974 them:0.03259214338735843 wish:0.030382825772326465 had:0.030222647159592435 was:0.030006331667465764 me:0.02968564676296633 desire:0.028955435886803983 necessary:0.028128597925604768 willing:0.0268806086688849 unable:0.026477949393368474 :0.28194625250427907 +the:0.2674247677592198 The:0.15579377372313513 and:0.08789117299969648 of:0.0738075214498791 that:0.043820610856887834 an:0.03617892638056082 This:0.030773391842139796 his:0.02898514211498418 this:0.021734331504046505 which:0.02119482336884441 said:0.02097211132954285 His:0.019360773265461706 or:0.017265639142992135 tho:0.01631232288729889 An:0.01486968185962121 no:0.01180333555462146 Tho:0.010507671168827391 for:0.010270788158906082 such:0.010174954134909778 :0.09985826049842442 +of:0.13015910693743843 the:0.109378743510997 a:0.10569352923092278 and:0.04837056176397797 to:0.04617076745216054 in:0.03680342553989013 for:0.031756261201044314 with:0.019878693282189917 that:0.01708806467953295 by:0.015512247894249336 more:0.015063271061184776 was:0.013641281732565859 be:0.013496838995521801 an:0.012942772007569015 The:0.012673072378599283 which:0.012653717299006781 any:0.01211808684827053 at:0.011463964431034512 no:0.011172086178877792 :0.3229635075749663 +;:0.027253807067969798 me,:0.025386189039712893 it,:0.019486949244540273 him,:0.01442890751640384 up:0.01351291627347926 them,:0.012586087652007584 me:0.012071058911561171 him:0.011677555222907513 in:0.010553917042809413 time,:0.007719577661678972 up,:0.006630640963613527 her,:0.005860055962437541 you:0.005849453238082238 it:0.005735069951165533 them:0.0056398269282520695 down:0.005504147064783286 and:0.005302487226794495 ,:0.005224139305689998 time:0.005184399213422602 :0.793392814512688 +have:0.0841017602766986 be:0.0817543738292815 and:0.08146992728693085 had:0.07715083178591228 was:0.0727877491722081 he:0.059646401788001444 has:0.05840391152876191 not:0.05051908238013952 been:0.04685097542876983 they:0.03836067927734763 I:0.033644751261715615 who:0.03172440043174954 never:0.024000795316585975 were:0.022661961043938042 is:0.022571084666188027 we:0.01939937687830373 which:0.017747896789048118 it:0.016530001178662653 ever:0.016201156398861057 :0.14347288328089558 +cent:0.41489337202289217 cent,:0.1455287711707526 centum:0.10814374085816232 cents:0.056787554599167026 dollars:0.020617818712281775 $1:0.013710037562103846 percent:0.012036150995841705 ten:0.010182716570569713 half:0.007138192517290185 percent,:0.007111424094915016 six:0.0070226878848447 1:0.006662737192476932 10:0.006553556903310754 up-:0.005946514080069517 as:0.005808524985554771 dollar:0.0056880949997465185 for:0.00513421996057462 bushels:0.004816072450197816 five:0.00481593936763035 :0.15040187307161768 +and:0.08995317707915026 to:0.06844710404109794 of:0.04605142056172993 the:0.04074574508561307 which:0.02479116931334353 that:0.023764822140213245 re-:0.020841117231308055 in:0.020803825395358622 for:0.020278423301550053 :0.018417753428486977 not:0.016860793136637672 con-:0.016444405871234195 is:0.014386481772210856 or:0.014080680914153714 be-:0.01352268143271276 I:0.01317002660943805 was:0.011429878269381662 dis-:0.011196807025842847 he:0.01113106290024311 :0.5026826244902934 +of:0.22189106129250025 a:0.09621166351996074 the:0.08468697122212075 and:0.062749669607142 for:0.05820280137627686 said:0.05254840771248017 his:0.03830401354202041 to:0.025836378188833366 her:0.017942258257243444 at:0.016275622959021845 in:0.01460175580067359 or:0.014182399418496455 their:0.012783577611442812 certain:0.011036592657489503 first:0.008748954578412257 vacant:0.008582578994694324 original:0.007995430174570361 my:0.007737082302774306 this:0.0070123790753718685 :0.2316704017084747 +he:0.15186473379332813 it:0.09583930263759889 I:0.08179323070473271 It:0.06514777716761172 He:0.06436864534962623 which:0.051912806317652674 and:0.04112184531543819 she:0.03823674616776008 who:0.03138733021747295 that:0.015370879023879637 man:0.0153589183038988 She:0.014881253455316233 This:0.014465691585197836 action:0.014195044191436567 what:0.010191204232556404 lie:0.009070241190520183 ho:0.008988706393407058 body:0.008905336044914822 there:0.008562259167339768 :0.2573380487403111 +and:0.07494362357779316 bridge:0.0725747899094668 came:0.05004305304868796 up:0.03719261930108528 went:0.03520622776375286 directly:0.030837741226221915 out:0.02958380316225891 go:0.02608284759313926 way:0.025320083440299235 ran:0.02493848509308516 come:0.024720815092523656 back:0.023579116655432754 far:0.023409638996814405 was:0.020961243890915474 run:0.02055707801402421 him:0.020065992577316984 taken:0.01870715990140441 going:0.018169350142689476 running:0.016810537127758176 :0.4052957934853299 +him:0.0478689650855018 able:0.04509587162308282 have:0.04259180339627287 and:0.04176798504364067 want:0.04103078465127416 allowed:0.039126596174939805 them:0.0378666918575206 is:0.03743583862891464 had:0.037341695093764914 not:0.03195572203160995 was:0.03138394010511727 enough:0.028193811987226355 me:0.027966249504266932 unable:0.02774648865115808 began:0.02709296104664355 going:0.025035293042160265 wanted:0.024689030440212232 willing:0.024459350949738702 necessary:0.02171144882175045 :0.35863947186520395 +in:0.03814632071215032 costs:0.02856142643609971 land:0.028359333921601025 principal:0.022364267664661725 time:0.020535728704194293 rights:0.015575037048199666 city:0.01219496090812013 feet:0.011691179967761181 labor:0.011220938276057009 hundred:0.010596055651562703 power:0.010356389289848708 title:0.010067989108811737 street:0.010052150672469113 dollars:0.009703468842351208 men:0.009663790894851743 county:0.009583289006852095 mortgage:0.009579788399277513 interest:0.009448355198185534 one:0.009254237388575833 :0.7120452919083687 +last:0.21898427338997528 the:0.14357117707377445 Saturday:0.10285318072409831 at:0.04266498225886658 to:0.041796577049955125 Thursday:0.041717907570226004 of:0.04139229917544308 Friday:0.04102465949376054 all:0.03903163218784452 Monday:0.037086952159864246 Tuesday:0.030400822269718724 Wednesday:0.02526012826900083 that:0.021899260124194925 a:0.02024356118780778 and:0.017722043331942088 for:0.016006705922437112 Sunday:0.015151471732763967 after:0.013341714340883477 every:0.012716568710006277 :0.07613408302743668 +of:0.29848633922875745 to:0.14339161145097676 in:0.09191537445676834 that:0.05547514088949258 and:0.051421456728418045 by:0.045205023361692825 for:0.034283148893111445 at:0.029364415006448246 with:0.02907646752666221 from:0.024794803319327458 on:0.021689904591570903 In:0.01949592691542304 as:0.016970313262481388 all:0.012961225144615512 upon:0.01203163833773409 into:0.010404367062795471 is:0.008878916504551441 which:0.007612013924851301 but:0.0064216192938783235 :0.07912029410044316 +and:0.058971379632757205 arrived:0.04965880261369455 held:0.0255142232170984 sold:0.02415272837877765 Dated:0.02380827074017235 closing:0.019414166698879427 was:0.01764166060540087 made:0.015557632567679974 arrive:0.013057419938495777 arriving:0.01149751140612933 died:0.010488859811092544 State:0.0102899175927227 2:0.009249420384741504 up:0.008676981352017648 morning:0.008632720136422946 evening:0.008337173918499047 published:0.00825521557065687 residing:0.00812374379674877 be:0.008041068165895247 :0.6596311034721172 +and:0.09293794402052763 time:0.05929039298394859 ever:0.04426532486001495 that:0.0326704722273688 years:0.031848823970271105 Ever:0.03051157385003747 long:0.027127902197291755 elapsed:0.026849979317774327 or:0.022000029211322686 has:0.020210969679948548 but:0.017654272465317086 have:0.016310390438249806 it:0.014840268576912818 as:0.01419712484218109 days:0.013758633342575996 :0.010560780489866497 was:0.010133684583232777 had:0.009857422139417765 only:0.009574774302918199 :0.49439923650082207 +the:0.13987575842963337 of:0.11852346070415384 and:0.0963072448019898 in:0.06789983058743904 a:0.03969157867574745 was:0.034859941870910544 is:0.027535153340949064 are:0.023837637965263416 be:0.022833671015685297 for:0.02238714373648263 by:0.021037585439734795 to:0.01742709704260978 In:0.01710682232197593 been:0.01680336484265405 from:0.016507157063768207 were:0.01546416326081484 or:0.014614228560089978 not:0.01340921522630585 as:0.010338408172987403 :0.26254053694080476 +It:0.21015888141231315 it:0.09197000896225663 which:0.05127475089380884 This:0.05071941842358521 there:0.045358976632273576 that:0.04396962511570828 he:0.03161806240056986 and:0.0228156936596822 this:0.022323758075659315 There:0.01737687112743756 That:0.01569048499581738 who:0.015517013450377082 He:0.013920420720900377 what:0.011847837780819626 one:0.010863123869925028 What:0.01078923059326221 she:0.00727983896784199 :0.0068461007163223625 I:0.006690390683420085 :0.3119695115180192 +and:0.11983384949994155 it:0.03850225147855055 was:0.029815666726278573 as:0.029036501880972433 be:0.02819264610276964 he:0.026327319183268836 been:0.015357497202969535 It:0.014979339743072846 is:0.014360752155324277 that:0.013806880079094284 are:0.012589934133547559 man:0.01247234590983945 were:0.011593330412978348 person:0.010872459914213865 I:0.010677699938219353 time:0.010664130490700346 all:0.010337986515335193 money:0.009550033788582971 more:0.009102004427110484 :0.5709273704172299 +of:0.21536429669166868 in:0.09244569534627144 to:0.08828981335370244 and:0.07598898519813456 that:0.050414036511872234 as:0.047540016288383606 for:0.04276169363913721 at:0.03882476082756429 on:0.03467504592832908 by:0.02764515318553311 with:0.025733730024768833 from:0.023450031364335128 In:0.02160818299487833 when:0.019626292977334585 is:0.016557060408789542 but:0.013682538102433495 was:0.012779957310012323 before:0.012643347350957897 which:0.01029829353257456 :0.12867106896331865 +and:0.03868242960999506 as:0.031124813427855922 went:0.02352509775927722 him:0.02196555539050794 them:0.018760608639018784 up:0.017985449426794205 is:0.017894175620344187 go:0.017174904667157563 able:0.016756848979943888 going:0.014481672239490295 it:0.014128375989346808 was:0.013277058274565138 time:0.013249953793837373 not:0.012469887553778763 began:0.012465717758716884 way:0.012105610030480113 back:0.012090864562211581 right:0.011941707822828511 amounted:0.011564315359310868 :0.667354953094539 +the:0.6492389721305081 The:0.09619831194518111 no:0.044663229128479885 a:0.037468994269596864 tho:0.032950439953162436 of:0.01856389911492271 in:0.014522690349375861 and:0.013314957030574998 any:0.010375278282783777 tbe:0.00957396035410682 great:0.007470763672254196 is:0.006298379321922655 little:0.005832758704568584 much:0.004437138242877201 by:0.004364794597300922 very:0.003964477156011254 In:0.003957668317916698 with:0.003586453201925165 what:0.0035506821429575294 :0.028666152083573253 +of:0.11502518114094513 in:0.11245252777015506 a:0.10578117749975073 the:0.06788892233123074 to:0.04837436121833319 and:0.03588072345401333 In:0.03163956380978186 for:0.026715436043162347 at:0.025996504972320686 his:0.020093007156008723 on:0.013744428801711369 be:0.013611508670166474 from:0.012845595204823389 was:0.012587130070045593 with:0.012198914056305776 or:0.012086154502189271 :0.011357812493942672 their:0.011271564931799453 by:0.010558630267575893 :0.2988908556057383 +the:0.15666062565508787 of:0.1163496162694897 and:0.06157584245586571 a:0.046124566598187165 to:0.04484072438673125 be:0.04048717601082985 in:0.026919655374899962 for:0.023694329500172195 their:0.023001443844177693 is:0.022914456813349183 or:0.02041402634909368 his:0.019825369056388546 was:0.019005124328248062 this:0.01710163498825682 not:0.0159851943780859 at:0.015151009715691477 been:0.013788110733168352 as:0.012519563117144434 its:0.011212674928534935 :0.2914288554965972 +and:0.09304636474958337 was:0.08852473776698809 not:0.06247967557458979 is:0.05886901545983386 be:0.046332696547503105 are:0.043388333681392006 been:0.03997082144306642 or:0.03425545952814821 were:0.03087596894523256 of:0.029769416122301797 do:0.027101533082797776 to:0.021570899887288688 in:0.01464085326789559 for:0.013839069876333439 that:0.013662603534609052 with:0.013324686472100443 by:0.01233840899687083 it:0.011804657478689877 being:0.01055476141507447 :0.3326500361697006 +is:0.14209324867616185 be:0.14125889080620907 are:0.11514906891981612 was:0.08549948122568492 not:0.07667806640732373 and:0.05735993369728233 been:0.034300414714960495 were:0.030607663036261876 well:0.023514818928849386 it:0.022868730157754112 so:0.017395302808960605 much:0.015110151900251927 Is:0.013491031112219524 them:0.011522081925795674 or:0.010775993970185974 being:0.009999001384371875 he:0.009436312707102636 made:0.009019769888013809 bo:0.00898840760776808 :0.16393163012502598 +and:0.22159273463810852 that:0.0687517915936425 of:0.05546366075177557 are:0.04330377355687861 to:0.042408188547846566 was:0.03815954664336817 were:0.03357136336687772 they:0.026508355126268025 it:0.021637169198337733 is:0.021474292012577608 be:0.02141527918643771 as:0.02034520706669841 not:0.02025489105338961 we:0.019112340174153357 when:0.01745264113848753 on:0.01694708573763959 which:0.01690866756540991 will:0.0162981867381542 have:0.015979286377339207 :0.26141553952660945 +as:0.06931392982974462 according:0.052071562389565784 up:0.0511867300210483 and:0.040371568633051955 went:0.03351644485287816 back:0.032358406609281 regard:0.03073407747799069 feet:0.02852138506231652 down:0.026379903432040268 owing:0.02466642634685871 due:0.023695193974505355 go:0.022910973192184297 reference:0.020802802907016128 came:0.019883741951819873 sent:0.019874244915639484 attention:0.019565955494145405 come:0.01885185084678811 given:0.018792390567602263 it:0.017366961307524745 :0.4281354501879983 +the:0.3470429987890709 a:0.2830895411803526 and:0.08334927465624639 The:0.03880375014749522 tho:0.024336874911606247 of:0.022571053498699013 most:0.021025046750599654 on:0.01997660057414295 very:0.015033645960187123 in:0.013881149872135193 or:0.013318842618227179 to:0.012746973173071394 all:0.011853394373746407 with:0.01177884760279099 one:0.011576524186685666 was:0.010986786714716033 from:0.00964873833727387 every:0.009484271476862887 as:0.009079442685257193 :0.02941624249083301 +the:0.109999524329747 of:0.07030600568460958 and:0.0690769532263712 was:0.05477703167088248 to:0.054424204723310665 be:0.03993324242614847 is:0.0349443673284325 in:0.026744836205222992 or:0.02200232517843429 are:0.021058437908032343 been:0.017657624738561587 were:0.01699343339917131 for:0.016065434918669068 a:0.0159163544218128 that:0.015482283061364387 not:0.01537851888370783 he:0.015039310518701643 on:0.01444268778868719 which:0.014180441581457332 :0.3545769820066753 +on:0.19468108143434742 of:0.18818046480893305 to:0.07411317076163303 and:0.07296621795159744 in:0.06593995545909649 with:0.05030361026895649 from:0.045456978627836514 by:0.031491827669397204 at:0.031039979523132206 for:0.029022582650760225 that:0.024104934802557897 upon:0.018351079329091982 over:0.01499328440056507 In:0.014959357324764453 up:0.01326174008139624 On:0.012655683554081466 about:0.011900810566297049 as:0.009075149878441343 under:0.00805039750862656 :0.08845169339848785 +the:0.21976738512985206 of:0.09635648668772823 a:0.07302684222459688 public:0.05392122968148525 said:0.04717839942349236 for:0.03987610959989093 at:0.03396968447614864 in:0.03360829322604203 to:0.03346706267192668 his:0.023595289471894744 county:0.020258561798037318 and:0.019109654753632084 this:0.01835805922571844 on:0.017390088324188757 present:0.01662431231880758 new:0.015807031499564465 one:0.013347764470735888 tho:0.013125980594258381 high:0.012832231518705153 :0.19737953290329413 +of:0.24744190605689242 at:0.11998306663651653 to:0.10368742980131203 in:0.06107800709280924 on:0.052278165668023735 from:0.0491755423217005 for:0.04610453198171567 that:0.04163455741745149 with:0.04032495853734238 by:0.03879656787759405 and:0.036089021584331304 upon:0.015389545671118759 In:0.01471346130159618 as:0.013204050324285538 into:0.012962892659425507 At:0.012055220845022844 over:0.011132746668033072 through:0.011097891586345245 under:0.010953871060349948 :0.06089656490813356 +the:0.10156982495670083 of:0.09106324839050664 and:0.09104866159569602 to:0.04027821551321493 in:0.03292529703898425 be:0.01833183629467108 as:0.017760218009553057 on:0.01723290885019549 that:0.01679017878941484 for:0.015480120224558906 was:0.014265664207501062 is:0.013248926405690552 by:0.012186585189500674 :0.012041112011000053 are:0.01171553359314486 or:0.010858366065105521 which:0.010722571109193533 from:0.00908620478674188 were:0.008867570728491099 :0.4535269562401347 +and:0.04100058548081417 made:0.03527080183438041 up:0.03367954534641095 secured:0.02476622138504677 out:0.024689072807278292 taken:0.02328185886478565 ed:0.02044259980376245 him:0.01783557824685978 done:0.016560066545651793 that:0.015750093181258838 was:0.01569752058067051 in:0.015183890346288944 passed:0.013580017055816527 accompanied:0.013316817877456501 or:0.013019619994860636 held:0.012139161851077915 owned:0.012100256294445628 issued:0.012004080678763133 given:0.011007403175678152 :0.627674808648693 +of:0.09043409053013649 the:0.08458268447909405 and:0.06941169710674647 to:0.06842685376506503 a:0.03502196399400508 be:0.027631492661475 was:0.02262770347407094 or:0.020899547147549786 is:0.018061672947865565 are:0.017763045964156114 his:0.017114589037761113 for:0.016727962397261282 re-:0.0162769353827767 their:0.01514882567544624 been:0.013878331263912594 were:0.013374436412516415 that:0.01319950985941409 at:0.012567281873590285 :0.012294075404375895 :0.41355730062278084 +and:0.11204277470785502 he:0.10425668241542438 had:0.06737593535643632 has:0.05666529756402271 have:0.055984097419010254 who:0.04458124050346596 be:0.04391907403724784 dis-:0.041332417512912716 He:0.03638461962806763 they:0.029534946120017815 was:0.02853758530419093 I:0.027608655801350246 she:0.01928713670312612 been:0.0178692050457984 then:0.01684971568422887 which:0.016447564159962125 that:0.012976407344333385 They:0.012694015970808763 She:0.011169487641531264 :0.24348314108020924 +the:0.4237311124744585 The:0.15704028396261052 an:0.07581984099116726 this:0.04102866678401162 that:0.0302010771181394 of:0.029492263968244073 tho:0.023328233793659538 his:0.021904132437613532 An:0.01629789232070555 This:0.015762377767046355 any:0.014338952509330599 good:0.012442466164309971 said:0.011106340986585233 our:0.011017714026391017 tbe:0.010845775817433923 a:0.008789937265742785 His:0.008339178488115943 Tho:0.007975116663115026 old:0.007687838163901984 :0.07185079829741718 +the:0.13987575842963337 of:0.11852346070415384 and:0.0963072448019898 in:0.06789983058743904 a:0.03969157867574745 was:0.034859941870910544 is:0.027535153340949064 are:0.023837637965263416 be:0.022833671015685297 for:0.02238714373648263 by:0.021037585439734795 to:0.01742709704260978 In:0.01710682232197593 been:0.01680336484265405 from:0.016507157063768207 were:0.01546416326081484 or:0.014614228560089978 not:0.01340921522630585 as:0.010338408172987403 :0.26254053694080476 +the:0.1616999665698902 a:0.15864805765260642 and:0.06412806686594587 of:0.051630874218000736 The:0.030746570425968 to:0.022459136100024747 an:0.01901703104063749 in:0.017376486092181866 for:0.016340590278195073 his:0.016119170549704527 Mr.:0.013877447336853747 that:0.013756845314355828 tho:0.011599720095983162 is:0.011351947465081452 their:0.01039997653959655 no:0.009825554684112886 or:0.00920741932685526 with:0.009137884087200437 I:0.00872312582595937 :0.34295412953084636 +mailed,:0.038547036283048335 in:0.022294505103313735 ;:0.021519618720039102 it,:0.009626927940533015 mortgage,:0.008464973738933818 up:0.007049070364846659 them,:0.006945164968514592 ,:0.006665831671752579 States:0.006122744657909853 made,:0.0057339122675749265 year,:0.00547219572447694 here:0.005395254512177246 people:0.005389356468920674 city:0.005308859130163403 :0.00519351159340167 time,:0.0051239548391889544 and:0.005110590200133205 States,:0.0050915156012778 In:0.005015548534308763 :0.8189294276794847 +the:0.09684081064840576 and:0.06551335624548284 of:0.05146145169206151 from:0.049520598669154245 a:0.045427902131977435 to:0.0370403239153822 be:0.035669151526387034 was:0.030489628475080553 is:0.026635804908522978 in:0.023878514238638158 are:0.018513936943033917 not:0.017945708099223703 or:0.017556265685966497 been:0.014265228721347686 at:0.013857211504087178 he:0.013733215789660087 were:0.012396679125422956 I:0.012347944480187516 for:0.012197989992860347 :0.4037082772071174 +he:0.11466473869659154 it:0.08983030010608878 be:0.05396855359404604 and:0.051234361099951185 they:0.04434167872936005 one:0.037499914673450485 It:0.028305977870681065 who:0.02463374713520708 He:0.023865080277736896 I:0.023395378187962813 she:0.022593268116082303 was:0.02227570728798712 you:0.02199765226219019 we:0.021535712759438316 man:0.02140626537266561 is:0.019635269622421937 which:0.016598046714957567 so:0.016112255259286633 thing:0.015596611125950422 :0.329509481107944 +and:0.08554297815548378 was:0.04524938418484012 it:0.029381055410256065 is:0.026816903242492002 that:0.022254526668023373 are:0.02104139081527914 made:0.019401808668415 were:0.01914137388137562 but:0.018267317670387723 found:0.01775030584459514 be:0.014300492920795695 man:0.014102262564235394 put:0.014056373357238448 him:0.013757201456373666 them:0.013015054414117369 up:0.012394943678497994 been:0.01234177561256432 succeeded:0.011265474795785262 engaged:0.011065254529713447 :0.5778541221295304 +of:0.22851855329949955 in:0.12248650299420955 to:0.08081226881873607 for:0.07642523638872914 and:0.07181583035413727 at:0.04501131253092551 that:0.04031854533205939 In:0.03515861201917232 from:0.03228738083945315 by:0.030797093277620882 on:0.025267969947796252 with:0.024554320768334918 is:0.01642230014134412 during:0.015508079437660784 was:0.014470251675634682 as:0.010913710213367433 but:0.010678250791494428 after:0.00926272311913027 all:0.009006909250662038 :0.09928414880003221 +and:0.11203614284734381 made:0.029480560291083903 necessary:0.027231632327903786 provide:0.01978786821063526 him:0.018624150941585572 time:0.017844902254185023 but:0.01736032991925495 pay:0.01712283223509279 responsible:0.01655246417854943 work:0.01573375727996718 used:0.015721729148453864 that:0.015344008200088246 providing:0.015123591452644664 or:0.014918878594106077 it:0.014272018550925738 vote:0.014240496926603478 out:0.013886758983508773 demand:0.013625570335128902 ready:0.01288626098417059 :0.5772060463387679 +the:0.11919516938815296 of:0.07230453158552728 and:0.05781056740443249 a:0.043018564803886335 to:0.031305092790907506 in:0.020848713353460488 at:0.014270110001066288 .:0.012526810245749479 :0.012413283442322082 for:0.011719122709941797 by:0.010808400946589808 or:0.010404172990115616 The:0.01003576004804544 with:0.009811868184449042 tho:0.009295902015355835 was:0.008924239095331684 that:0.008672304223433876 is:0.0085591147338948 be:0.008335143826716943 :0.5187411282106204 +of:0.1449322505204088 the:0.09598502631468703 and:0.06903530377055622 to:0.0625222522104268 a:0.05641575409979371 in:0.027513615491497462 for:0.026067659851334222 that:0.019384868339658794 at:0.016339799667414782 by:0.015524903434508764 from:0.01211816352199547 with:0.011944350363098849 as:0.01153969314797866 :0.010157709941731033 on:0.009469076143205557 was:0.00920442756308818 be:0.009099546220321641 or:0.008779473247027375 which:0.008608906065732449 :0.3743572200855342 +the:0.19954196745879002 and:0.11198742811797169 of:0.07054720782896864 his:0.0645504562090416 her:0.0509715839526632 he:0.04993064000704608 their:0.040036938172051915 that:0.027658746378003335 which:0.026837916345307418 adjoining:0.024629028837390127 whose:0.02346020666429035 or:0.02140689091953168 a:0.020778921722513357 The:0.020768650508598732 this:0.018173552443527 your:0.016937255958901627 who:0.016019050021679665 had:0.015574956077712454 one:0.01539422283834762 :0.1637943795376635 +the:0.6407543325680924 The:0.11583999008711919 tho:0.03305049316378617 of:0.029061759343409998 his:0.022360011740429255 their:0.021589280895823054 our:0.016033782073133763 and:0.010607481338289055 tbe:0.009203353174659815 these:0.008925671222699254 its:0.008217426538507553 my:0.00603907151642584 Tho:0.005127190018696143 those:0.003787549958667809 These:0.0035514706272267837 a:0.003176789203864341 two:0.002791659599430316 Our:0.0026358090749787257 at:0.0026032965921996445 :0.05364358126256092 +and:0.08223177427232696 of:0.07069621554037943 the:0.061767849368943764 to:0.041433334139765 a:0.03656353492328247 for:0.03420296735578103 which:0.029999486298972554 was:0.028337725434879515 more:0.027487147611910633 in:0.02395248572661752 be:0.023751285015093816 is:0.02372561965003599 are:0.023163028879994253 as:0.01921313288912482 or:0.018677168820180775 have:0.015243070375345577 been:0.014985958359743482 he:0.014894812936200886 not:0.014444190897393995 :0.3942292115040275 +in:0.28752233096242336 of:0.1405324089467053 at:0.10558119195816296 to:0.0979180091303211 In:0.06043389676161931 from:0.03342532738357346 with:0.033163634917123805 on:0.031274079128821394 for:0.031030422368736182 and:0.025756496010331763 by:0.01947268353583456 up:0.012774117618362477 that:0.00979630736219103 upon:0.009054110402366445 into:0.008445612634523583 iu:0.006947735616142372 made:0.005619391238590091 under:0.0055653460553015755 as:0.0054777068914770854 :0.06920919107739215 +and:0.03630693282865906 as:0.02636078241197368 it:0.026136381536140157 It:0.024942705563280203 :0.02179820928443213 ;:0.019208327087458503 that:0.01651571554180277 which:0.01480988698982416 land:0.01415823336007134 was:0.012535684908975699 I:0.011391909387401549 .:0.01115835035654834 :0.00992226117324972 w:0.009768446279819551 ,:0.00838073950351997 you:0.008005106890299322 1:0.007886398096803552 he:0.00784006161852161 when:0.007712232820936686 :0.704161634360282 +it:0.1905433655336566 It:0.15147186363012746 which:0.08602837973244566 and:0.0589407381568303 as:0.04447115728025898 he:0.04040583278732282 that:0.039321650080113395 who:0.03223367484098951 what:0.030358396763491977 there:0.026070616079977724 This:0.020279745072800913 He:0.018935118822653012 this:0.015302859888566316 There:0.013658381870633996 she:0.01324390683741995 same:0.009628046492202086 country:0.006661750803014951 man:0.006610920152129832 now:0.006260804631527111 :0.18857279054383735 +that:0.22050749519726323 if:0.11098261060627591 which:0.09506313352843512 as:0.07751568420175181 and:0.06640896028540039 when:0.04365664567827713 where:0.04190620812368557 what:0.03448063804356876 but:0.028262794131971747 If:0.021681345926257044 because:0.020339156967466708 until:0.0198520172938364 whom:0.01960588708107655 before:0.019266959247270905 than:0.01649764072893347 after:0.015684208040186363 though:0.012598886583322734 for:0.012044692878915492 whether:0.011072697925714182 :0.11157233753039046 +men:0.021612086555458935 William:0.015638536378382792 hundred:0.01423451587837068 James:0.013744979800784768 Robert:0.011985932150676492 John:0.011705706109812454 one:0.011279624965883433 up:0.011106878988133251 city:0.009150007605944081 man:0.008840506356902134 Mr.:0.008773068441746763 out:0.008414599037195887 State:0.00812081042820529 George:0.007721798261934341 street:0.007271763070419378 Charles:0.007186105702498359 time:0.007164857964350087 life:0.0071143430406803414 wife:0.007075841777601289 :0.8008580374850193 +of:0.19271993207475108 and:0.12467366995353944 in:0.07231074361529238 to:0.06242628352197255 at:0.04618611108257369 that:0.0434273544631262 with:0.03637067705535393 on:0.03635696090802566 for:0.03386919221230831 by:0.02665756984153553 from:0.026392292031087058 are:0.02083440225460235 In:0.018364192734505107 was:0.016391289218422818 nearly:0.01491791340554394 is:0.014536810350990087 were:0.012163883875832232 which:0.009397745508264523 but:0.009099192515724401 :0.1819037833765487 +they:0.16506819331969486 who:0.10587061803054774 which:0.07458860103970841 there:0.05977388770104383 we:0.05134456395347783 men:0.04057729135890968 They:0.03784683502241784 and:0.03491918450986403 that:0.03135542918182739 There:0.02725429603027569 it:0.015009983655718864 you:0.014236065400354833 he:0.012801521589212335 all:0.012789660079039483 We:0.012263121000899092 them:0.010663453734204402 I:0.010188151696150479 people:0.009472918001643944 persons:0.009045412378984204 :0.26393081231602505 +make:0.08293526866845025 and:0.062024836980626684 that:0.05677413234544206 of:0.05033731517253256 give:0.037863777056703546 as:0.030431736738748414 is:0.02985407581071204 for:0.02873783956102956 on:0.02820831683799679 with:0.026859815291667578 have:0.0265179069344984 find:0.025254032870844073 to:0.025217704012722917 made:0.024495485326077142 deem:0.02201456489944721 but:0.021498053435926315 found:0.020099723109334455 Is:0.019563942789850183 making:0.019442274433050882 :0.3608691977243389 +the:0.23754719083257747 of:0.22791145912980987 for:0.06943349263310486 an:0.05766102334646534 a:0.05751271465549381 in:0.05021237305240514 by:0.04737045113527277 to:0.03593536350602304 and:0.03141476252778882 with:0.024695173496993836 The:0.017057643930466066 or:0.01380009630104258 In:0.012259617873743727 some:0.011273670008402504 most:0.011177654533527195 at:0.010417411311260557 his:0.009939097243599222 that:0.009575608408715575 tho:0.00944405355271288 :0.05436114252059472 +as:0.14874176819771479 and:0.07273301029905184 very:0.06138041047756833 so:0.056747830699704856 the:0.055760387596354724 be:0.046932997447911795 are:0.04084599745298988 is:0.040402846137000216 was:0.03816166330058408 that:0.02752676137689423 of:0.02744915111102717 were:0.02560204595694031 it:0.021827146963075816 these:0.01995444378947732 a:0.01731296251925422 how:0.01722800905039072 at:0.01711273740705232 made:0.016339212525535177 too:0.01630312497688374 :0.23063749271458847 +and:0.1289545952477728 the:0.0721517939359138 it:0.056478474054893195 he:0.05314477014769795 which:0.049738985779622887 that:0.043845443671979824 It:0.03822153828806206 they:0.03272366577800444 I:0.02857650460029458 who:0.01821420603139168 you:0.016339655624769713 This:0.01632520193024087 this:0.014388042445511671 or:0.013415971719275001 we:0.01224574587790628 They:0.01081654543675929 He:0.010034353826322315 as:0.00973299533990575 one:0.00936574627375354 :0.36428576398992235 +of:0.4529905697774351 in:0.18916552659262717 to:0.08294206544523716 In:0.03358682369455551 for:0.03028325408935135 throughout:0.029535565920912145 by:0.02713453240186632 from:0.01735498698291263 and:0.017048811222116312 with:0.016512147383947604 that:0.015377351578454218 on:0.014044573954731068 over:0.008224268684749644 as:0.007481375443730889 into:0.007418640198224207 upon:0.006121604870865553 all:0.006105833610224818 through:0.00469283586159998 ot:0.0042837473754040135 :0.028695484911054288 +and:0.26354750886181066 to:0.05406825722948421 which:0.04760347154671471 that:0.04172554887132202 it:0.03791765064676819 as:0.025731292533230875 It:0.01709732541705637 who:0.016212729915246613 I:0.015639077582143928 he:0.015242504354464283 but:0.014557773294180043 not:0.01198509790136676 is:0.010624752308477363 will:0.010593594912688343 was:0.01058091502443415 have:0.009449457868044832 or:0.00792355832060665 thus:0.007588687044607622 then:0.0073877063284572345 :0.3735230900388951 +the:0.16287760685838365 of:0.0883592780729449 to:0.0618987346693935 and:0.05423685233212741 in:0.030811253892523358 for:0.03057359609188714 be:0.025098115820027647 was:0.01826945122296575 is:0.01662970283289366 a:0.016448402520667066 or:0.01633619095301082 his:0.015510346299682681 their:0.015084175217362073 are:0.014656254371894712 been:0.013019491851438341 were:0.01267572744006931 that:0.012270302451397866 on:0.01131798809455223 :0.011150587255169986 :0.37177594175160794 +to:0.09369554102260642 the:0.08319363564100533 of:0.08169805476578292 and:0.04539706166554114 at:0.03035666444251638 in:0.022787225361252522 :0.019031448463750666 on:0.017477007573889123 from:0.01628274550667146 Mrs.:0.01620236666563515 was:0.012611882756630388 .:0.012500896063533223 a:0.012120427469874377 that:0.011423089295383068 by:0.01090945692410381 Mr.:0.009159363191282504 be:0.008554393477209241 said:0.00768251735503255 The:0.00726313557907548 :0.48065308677922425 +the:0.10597367530797616 and:0.0853527820525933 of:0.06360945035772735 to:0.06244267659896638 a:0.060444786386947884 be:0.04363603891749144 was:0.04190816975681049 is:0.031505771318292075 in:0.021161351642113184 been:0.020564667155655386 are:0.015605619303933057 were:0.01484114565833905 or:0.012862722596575497 he:0.011958272903710238 at:0.011725530623216752 not:0.0111810727073711 it:0.010571643524452942 will:0.009870006355904577 for:0.009564406893979365 :0.3542202099379438 +is:0.17297430555531795 was:0.10176275627476099 and:0.10097908642631044 are:0.06789679470466599 has:0.0470988464982437 not:0.040988290256095385 have:0.04069634903742052 had:0.03402134986082384 it:0.026338791686173573 were:0.024976348699661872 but:0.0206529735652232 Is:0.019863119048072978 be:0.018417964100983366 he:0.01646262318043804 to:0.014214476257790959 will:0.012726457569287874 they:0.012205711226559324 that:0.011851057674403588 which:0.011137884073333187 :0.2037348143044332 +on:0.15169185460517834 of:0.1494990791920342 and:0.1110188394199163 to:0.07487228069187934 On:0.06787949677356371 all:0.04481355413617444 with:0.043513023324253 in:0.04170248318454565 that:0.03416347844738215 for:0.03320798776839905 by:0.02773392703437829 from:0.02577258167815198 or:0.021590406825363957 as:0.01902286527860017 at:0.01802936931053029 than:0.016788812436407136 upon:0.01651524031398241 In:0.013385412630169341 but:0.009100366113357435 :0.07869894083573283 +a:0.5513985282240346 the:0.06750784294740332 very:0.0464425761392156 and:0.034072432607193455 of:0.029383836287222163 so:0.027303494350092116 A:0.02327959291345123 in:0.020094809303788406 some:0.019152658438056323 with:0.01457020476531712 to:0.012102592415214589 by:0.011571506076456042 no:0.00985868406375251 any:0.008973798144419834 was:0.008820962841469262 is:0.008189385225406244 his:0.0072244265726427535 one:0.007185415292710804 n:0.006942870243107242 :0.08492438314904645 +to:0.4122646228949974 will:0.10882297837276454 would:0.041809792689010104 shall:0.039335306775492386 not:0.03135104486645098 may:0.030188662221203474 should:0.027844948782988148 and:0.027787703385903004 can:0.023331218590313632 could:0.019781615316310883 the:0.01931381154960574 they:0.01530780463749836 might:0.011857010677500116 who:0.011472579498716306 must:0.011037469465796769 we:0.010337467869917072 I:0.01032282567216229 To:0.0094178954186763 you:0.007288031247921567 :0.13012721006677094 +it:0.10513955293655818 which:0.08263141911256744 and:0.07733328033706971 It:0.0740137444323628 they:0.07055486419857893 he:0.0650232167724072 that:0.04846552886254489 who:0.03765241743173467 I:0.029453796406395307 you:0.028813472447054747 we:0.024711084466820965 there:0.01916867943575338 she:0.01527687374607409 They:0.015037277818164337 He:0.014598890437267444 There:0.011609811143834227 this:0.010776002043355427 but:0.01016137841772385 as:0.010085188865062017 :0.24849352068867037 +the:0.1176009209555981 of:0.10741070168869353 to:0.06444871469858415 and:0.06020424072470121 a:0.0465625689991584 in:0.04052093213717543 for:0.019245834305293516 :0.014491103340299146 that:0.01442112673585959 with:0.011889991530250332 from:0.011555659086825161 or:0.01027091827041809 In:0.010029110270634162 as:0.009763300377530518 The:0.009697537929936478 his:0.008772376496613322 by:0.008731698982648372 our:0.008344344065794677 on:0.008160267714708742 :0.41687865168927707 +is:0.20682015266200063 have:0.10687839052849095 that:0.07440060985039246 had:0.07340595033121544 and:0.06958056962758552 for:0.053954210987626566 was:0.05387112529360127 be:0.04571288086154752 has:0.04374603690108973 Is:0.029758588062472877 but:0.0254048627928042 made:0.02138937228280689 in:0.017351654161084164 of:0.016669697472774407 with:0.016040534044388068 see:0.01392596136258771 as:0.013867111618460331 do:0.013340380589072982 are:0.013046220555734301 :0.08983569001426397 +the:0.8046881157316003 tho:0.04662888153461172 The:0.02250258400565551 tbe:0.017284706834960657 of:0.01643649338939025 and:0.00872111427491516 in:0.008223539287892696 by:0.005578085448789723 a:0.005556487197394169 that:0.004210985750208476 said:0.003420945078514563 on:0.0028798374726398696 tlie:0.002653591071168965 to:0.0025981384198474496 this:0.0025932162561835975 for:0.0024851075015572396 from:0.002408157199703012 tha:0.002344052614226546 :0.0023065498083316292 :0.03547941112240853 +the:0.18309611466929723 no:0.1359677617418154 any:0.12997823264918942 and:0.09667644433289788 each:0.06255001110296525 or:0.055759501485945204 some:0.03978206369544471 all:0.03936459882686658 from:0.037734033283543855 of:0.03222183810525857 an-:0.02335475099309856 as:0.021036981810720133 every:0.016653711412434012 in:0.01637886713746027 with:0.014063614483536315 The:0.01353260100786639 are:0.012855407438268641 many:0.012834502892014309 an­:0.009351201027116784 :0.045807761904260454 +of:0.18714157733753395 in:0.08466288712740522 with:0.06923443471882271 by:0.0667039608846255 to:0.05531590816366501 as:0.05424670042971454 is:0.04837145001182932 for:0.04658931590814091 such:0.045287502735656376 and:0.04111361259483881 was:0.038169386917274624 be:0.02110144817980193 that:0.020674618506927877 from:0.020161456219655642 have:0.018673229525197094 like:0.018469844181324087 on:0.017500024163696788 In:0.01615056072147037 made:0.015194398086692497 :0.11423768358572675 +and:0.07387132609559574 is:0.07328312236991763 as:0.04773317776552537 was:0.04328225018648639 able:0.042887945174683174 not:0.041326531116696416 enough:0.03539686146360627 him:0.034810473883452805 order:0.03379730510068341 necessary:0.027311755213551385 right:0.02728638765674209 them:0.02152191739464329 me:0.021055936364071104 made:0.02038179549121542 are:0.019564352939060836 going:0.018573562707943903 refused:0.018155275803135088 ready:0.017036375836320727 had:0.01606679454614271 :0.36565685289052624 +be:0.14006031912939712 been:0.06581033251262829 is:0.06387591026539917 are:0.06215051851294258 and:0.0582685058775429 was:0.05395646282742249 have:0.0391293347311215 were:0.03746304534031037 being:0.03414447167276779 has:0.02921482756255808 had:0.02833784994553492 he:0.023661500151021638 it:0.020447927600865032 who:0.019319274643728485 well:0.017226797466990067 now:0.01432253170923184 or:0.013660129534021851 not:0.012930536325619869 already:0.008875046821340021 :0.256144677369556 +per:0.7043654992682903 the:0.10797240297921966 of:0.03233365034109366 and:0.023775591090414033 an:0.02190072248091124 by:0.015446509703494616 to:0.011103036828216898 that:0.00671798139292306 The:0.004146860681228971 a:0.00270727801793901 tho:0.002602394453194811 for:0.00242532375369133 any:0.002309135636483973 or:0.002039659001403823 in:0.0018230384006564515 this:0.001650621283613312 por:0.001526409208288151 not:0.0013203824323917322 under:0.0012433654823492994 :0.05159013756419567 +contained:0.1214065477041106 described:0.11697581034939604 stipulated:0.0902606577706034 recorded:0.05041234562811227 and:0.04921281965097254 situated:0.045365543399596864 interest:0.04213794919166823 interested:0.03417650284169929 filed:0.01711158395574566 published:0.016505039893262952 thence:0.01557506244353907 situate:0.015306072383837781 due:0.01479840732452386 was:0.014696680024093448 land:0.013781594300641934 specified:0.013350493038563782 Morris,:0.013238332800187252 sale:0.011770162588043224 property:0.011386339702986716 :0.29153205500841506 +a:0.1505665752309539 the:0.13565738632677288 his:0.12128633555851995 their:0.08023848746483755 this:0.0781340983399869 my:0.05345099712434663 no:0.04247530377783023 any:0.032542124271864696 your:0.032082841724797424 our:0.024156272919830826 its:0.02373417812960816 such:0.02113984387637733 every:0.020976042650860054 and:0.01861067261240537 her:0.017464603592177295 in:0.01716896736515322 special:0.016499114322973466 or:0.013408415936998397 same:0.012039916580080603 :0.0873678221936251 +and:0.04946942033605827 went:0.03843057448151194 go:0.032340907952190606 feet:0.03000510576311324 as:0.029180457412709623 them:0.025674719456555334 sent:0.02297467224414447 up:0.022953058913902636 made:0.022535414809808564 come:0.022109126881480683 right:0.02137150672478565 way:0.020094427872542838 given:0.019962073319223568 one:0.01873549091160525 back:0.017929796398204502 came:0.017578865804523777 subject:0.016512005662364902 according:0.016363991952540083 entitled:0.016362631106247714 :0.5384157519964864 +:0.10132530864253071 .:0.01586153736849991 it.:0.012994963694550781 them.:0.009972326155771085 day.:0.006466314186158732 him.:0.005963072708890589 time.:0.005952754819220498 of:0.005834450921883061 country.:0.005314225508045209 year.:0.0049247550547799 city.:0.004072303040063511 years.:0.003997040955926161 work.:0.003880377182773483 people.:0.0033836246305601453 States.:0.0031455025043576447 place.:0.0030640999552846737 men.:0.0029656503323313246 way.:0.002952433427976742 out.:0.002933009065662241 :0.7939962498447336 +the:0.7079380008217347 The:0.06642755698106917 and:0.053500680947627194 tho:0.04289761312131121 tbe:0.0167690911585494 of:0.011377143004087105 on:0.008675549573334662 about:0.00593077105386951 two:0.005914210821503644 from:0.005844962688726713 in:0.005594004895697451 an:0.00511615370496933 these:0.004381410617435928 street:0.00436359046102989 to:0.0040974843505115245 all:0.004043603598939595 his:0.0037360076821166617 three:0.00361975069115907 many:0.003415596537913693 :0.03535681728841355 +the:0.281703831751373 a:0.08322116206521094 and:0.06371191034489437 in:0.04246965846958889 The:0.037041402365303636 of:0.03142885647689254 place:0.02440176400103555 point:0.02094524368316398 his:0.020245290458252217 to:0.020029643321959483 street,:0.017418868092622195 that:0.01679162834024791 as:0.016608713411406732 tho:0.015184214410275367 her:0.013920183902243649 A:0.01383168720939018 very:0.012794251394078594 or:0.011928960479122858 from:0.010237831275536487 :0.24508489854740145 +and:0.09990759663663591 of:0.09361556305105222 the:0.038431374811739596 to:0.038331960631105826 South:0.021461971724747467 :0.021331055784402173 on:0.017783940459728677 for:0.017522374105982817 from:0.0167731039256561 .:0.015246797033068242 North:0.015233675762492831 in:0.014952749370629879 1:0.014046502561294406 by:0.01171767617936752 at:0.01166060127416415 between:0.010739785068311006 with:0.010735938274590743 all:0.010628880711190876 that:0.010409115885029359 :0.5084693367488102 +of:0.23688297991167712 to:0.08544137439647968 with:0.06831021025426992 and:0.06663029439293067 is:0.06132895290239589 in:0.05833124983479274 that:0.04356047760260393 by:0.04086631639624703 for:0.040657496436844624 was:0.026292763717021318 be:0.02198853247523512 as:0.01960183577437275 from:0.019081800932843593 on:0.018371348738530472 all:0.01753741543311244 make:0.015144175723713453 have:0.01455190543576532 under:0.013789973672113265 are:0.01309719629325165 :0.117533699675799 +the:0.7711181292711212 a:0.05641899917525981 The:0.04923211254516306 tho:0.04331754085992809 tbe:0.014801870545117243 this:0.007931581282423767 and:0.0053932768159966815 great:0.004699369106278646 whole:0.003448584339129438 old:0.0031026855289186263 present:0.002987556473123546 tha:0.0025936568994359504 tlie:0.0025121016789855627 any:0.002266816986335708 Tho:0.0022089721449174773 general:0.0018988760864427153 th:0.0018266608371414039 no:0.0017764018205725853 new:0.0017460489665614154 :0.019718758637147046 +a:0.5025540186006995 of:0.13329533690261214 in:0.07608140703177435 the:0.06963325491718786 for:0.02426971124804993 very:0.021941341997084245 with:0.019371264861591173 to:0.01777081768128237 In:0.015872436675326722 A:0.015114021390876456 and:0.014847642951927267 some:0.011569263304903276 any:0.011496078910919088 no:0.008148894063540794 their:0.006565735562929145 by:0.006056312444921336 as:0.004935526547498755 his:0.004916840361464415 make:0.004883920945032862 :0.029676173600378365 +in:0.48169355174240486 the:0.24889085213304032 In:0.14620845330087792 tho:0.01586612676129604 and:0.011996562868647791 iu:0.009129210802414685 of:0.007079106466081714 a:0.006652836820444301 tbe:0.006236369011568194 from:0.005804708768131561 The:0.00543364889599608 on:0.003738341906111136 south:0.0028387373016020754 feet:0.002822615548436971 to:0.002486389177085878 for:0.0023912750675852863 north:0.0021771893428748834 lu:0.0021179999961532287 an:0.0020527486326878622 :0.03338327545655921 +of:0.09129790931378902 the:0.07369883040827747 and:0.047842263382354346 in:0.04189055351593407 to:0.04045875475680249 a:0.03542341257202578 be:0.02020462051672066 for:0.01979292654746225 was:0.01760256398103379 at:0.017380150555488715 is:0.014984483003968216 with:0.014047653760730413 by:0.01374644383819499 :0.012670486581795598 In:0.01200961464556976 or:0.011563835749786333 from:0.011391516893522809 are:0.011273104484969465 that:0.010755276030689069 :0.4809655994608848 +to:0.12828336062345794 of:0.08753170245869657 a:0.06909031009212589 the:0.06442119370644492 and:0.06240428291890669 in:0.027136584820119505 that:0.020301445504532726 be:0.019876366282052374 with:0.01936871653995713 by:0.01894716137487532 for:0.018608851864615278 was:0.01816378567238404 is:0.016655266533761807 not:0.013984938934138805 on:0.013888855509167556 an:0.01283240709054793 from:0.01199209467648205 or:0.011493374710358004 as:0.010921866266050599 :0.35309743442132485 +so:0.372140354877898 and:0.07446566755956696 of:0.06833658368354786 So:0.06303468604663358 too:0.05318033547510574 very:0.05071809625009624 are:0.03223228326270725 the:0.02975309249872983 as:0.02968850939045575 by:0.022339029034536603 for:0.020052820203096292 a:0.019190971324304064 be:0.014524269339501317 thus:0.014453439031583576 not:0.01406246988948225 that:0.013658179443753702 how:0.01285880804277155 is:0.011708218420057943 or:0.011400278774047909 :0.07120190745212358 +of:0.09043409053013649 the:0.08458268447909405 and:0.06941169710674647 to:0.06842685376506503 a:0.03502196399400508 be:0.027631492661475 was:0.02262770347407094 or:0.020899547147549786 is:0.018061672947865565 are:0.017763045964156114 his:0.017114589037761113 for:0.016727962397261282 re-:0.0162769353827767 their:0.01514882567544624 been:0.013878331263912594 were:0.013374436412516415 that:0.01319950985941409 at:0.012567281873590285 :0.012294075404375895 :0.41355730062278084 +the:0.1395767520893643 of:0.1277069757137897 in:0.07737398555853414 to:0.04752721013676453 and:0.04561856726187845 on:0.029916530757081894 a:0.024909992117983958 In:0.018446634700237854 by:0.016722327503763644 from:0.014978051598708382 that:0.012898918062602332 as:0.012616602461169572 be:0.012166225360324575 at:0.012052269953962198 with:0.010445375974970725 or:0.010427429272444368 for:0.010216160197929704 :0.00903898683647348 was:0.008663302587641381 :0.3576977018543748 +and:0.06317916895143688 was:0.03089079697380977 is:0.020044819943736053 be:0.019406329289829806 are:0.016631216139614186 that:0.015910745835586493 it:0.014132589635136123 been:0.013429954470292457 made:0.013153338042273357 were:0.012494049396038097 or:0.012369181282419555 them:0.011608721240324167 up:0.01101461536327863 him:0.010833186604515583 as:0.010718511743974049 succeeded:0.010682665877813333 engaged:0.010592681714621757 not:0.009777868089593193 now:0.00948198968071834 :0.6826475697249881 +a:0.3543097344357624 large:0.07849361602497722 the:0.06793317145162217 any:0.06259444277442086 that:0.06005120269323856 greater:0.04210185291865329 this:0.02954892566530313 one:0.024694982918091364 every:0.022170340108820158 considerable:0.019415125820847538 and:0.016450963833516373 pro-:0.015570861863170794 small:0.014783807117286326 same:0.014366625359587588 no:0.013070350467353865 first:0.012694310342606551 A:0.011194370064010467 great:0.01061502898152317 upper:0.010303058299672985 :0.11863722885953518 +a:0.22019047907857617 is:0.13933896674502758 was:0.0975167401456596 the:0.0723122538370547 be:0.058814744764437814 are:0.055611692632922316 not:0.0343233309091344 and:0.03036405358991967 were:0.02709425654149351 been:0.023938993345370276 Is:0.023347857682374625 of:0.020011674626246704 but:0.018470936629898564 this:0.016666680871723696 that:0.016647106381617163 A:0.016212749578633667 or:0.015407282395929455 very:0.014777459456314706 some:0.0144542834921753 :0.08349845729549009 +of:0.33013215203631696 in:0.22374549761252757 In:0.07572388738122225 the:0.07025945300027728 on:0.056797492184524165 to:0.034277750955911505 and:0.023822522190700832 from:0.014873015241368885 with:0.010601319857021356 said:0.009771434550260898 by:0.008200896971533428 ot:0.006771331340566442 at:0.006435766111602374 for:0.005973339346413382 iu:0.00535633787821419 ol:0.004945776110559964 upon:0.004516235297447971 all:0.0039637078365586794 South:0.003930880226244379 :0.09890120387072748 +is:0.1300949053123692 ought:0.06235942008217411 are:0.06072445398663133 seems:0.05697318922100556 was:0.04954471475520722 not:0.048536362204045544 said:0.03881623685409472 seemed:0.03220746110521765 as:0.030923473227594384 it:0.030881869856406088 claimed:0.028226689520969073 have:0.027725540143517465 and:0.027557757709861613 likely:0.02587900806524851 seem:0.02574969309575762 supposed:0.023317446089120043 had:0.02145961764731352 Is:0.017651730366473797 proved:0.01677680343414685 :0.24359362732284573 +number:0.0663259824007983 point:0.037945652917291316 out:0.0342878519920648 place:0.034122915634383806 sort:0.03311269207095492 kind:0.03199598593952177 right:0.03162393430348951 matter:0.0307983705577463 amount:0.03015159265601052 lack:0.02979261534848791 loss:0.028036894951497235 full:0.027981298910305024 system:0.026886970723755774 piece:0.025794900830312738 board:0.022263054437447954 form:0.022107673191788427 kinds:0.021409629797196836 means:0.021365345892410795 one:0.020191608816537927 :0.4228050286279981 +the:0.2912964952407908 a:0.11774225852811458 of:0.07861925661281578 in:0.03952342435275537 and:0.029108464798010374 for:0.027996061014874993 The:0.018419773983151925 that:0.018232653997175743 an:0.017071100962184397 tho:0.016889216738057402 to:0.015703682305043123 some:0.011572170783035294 In:0.011405221459895372 one:0.009349540518567047 :0.008052916162267226 feet:0.007992757002681943 which:0.007573799620934678 his:0.007445942097201941 as:0.007443396427378267 :0.2575618673950637 +to:0.5337322946325576 not:0.09459394379815872 will:0.07126656533997872 would:0.06505132890553068 and:0.05197654719114495 may:0.01707059410104596 must:0.01572298540872825 I:0.01465106633672999 we:0.012322796091487393 can:0.011283680869557569 never:0.010999764864546102 should:0.01078211522511251 shall:0.00958265830155272 could:0.009448340818162544 they:0.00706999466610313 cannot:0.006837277188041688 or:0.006499090039575616 thus:0.005501876339673822 might:0.00514726531065883 :0.03945981457165325 +those:0.14031432416710854 men:0.09016178814189865 man:0.08335854680743929 and:0.07610302223219233 one:0.04509655705677659 person:0.02750418508161667 people:0.026458044681714053 all:0.023044068727506018 persons:0.02054818656112869 woman:0.014124158575017405 Those:0.013434957146841278 women:0.011870936488760891 others:0.010854470214540108 many:0.008243739675395503 girl:0.0078491608538059 or:0.00692917280234003 men,:0.006901269728010371 but:0.006740907439116536 friends:0.006072115674840235 :0.3733903879439509 +the:0.5042509879294589 a:0.1133347008649118 The:0.06781946814388153 and:0.04614720379762373 tho:0.030325629029426728 of:0.025286568717532414 A:0.015788311682369337 tbe:0.010639511791057052 that:0.00820930032240216 our:0.008181117693689592 or:0.00758937236968033 all:0.006020756305466672 his:0.005810957175651027 their:0.005683556053620014 this:0.0056457727780295725 said:0.0052786516909715826 &:0.004968033303973748 in:0.0049188652514532 with:0.0048711884023188365 :0.11823004669648174 +to:0.3080867575449502 I:0.050790881268926474 and:0.04948964167127576 will:0.03980773991959638 they:0.03430705725638428 would:0.02563721895062952 we:0.021546719457158085 can:0.018312943445514623 not:0.017575797775913705 who:0.017230259577567804 1:0.017199137351845455 you:0.014663109244804958 could:0.012352031471932886 White:0.011351856222686089 that:0.009816541389723935 a:0.008899736316274073 or:0.008559456413948476 may:0.007352663847326549 We:0.006919650702402243 :0.31910080017113845 +of:0.14094730240344994 is:0.09130184530111529 with:0.08516817111326137 have:0.06895632280861796 and:0.055581206561713226 to:0.05346793113109159 that:0.04425890889816348 for:0.039448858863913444 had:0.03550467197299062 make:0.03504150829489354 was:0.03420754924926801 has:0.03238186736518019 are:0.03215315074464855 in:0.024476981748860857 be:0.022550096516643938 or:0.020485608981012846 not:0.018364551793673713 by:0.017507440824903586 as:0.01747999659818386 :0.129716028828414 +and:0.11693379475553414 are:0.04348213221673392 was:0.03961545296472782 is:0.03614135347745763 that:0.03037902839677923 or:0.026984524872121694 one:0.022051958550889556 sell:0.02028021788663333 be:0.020163804130145287 but:0.01917049907694668 it:0.01905865277090725 as:0.018647901853414663 than:0.01742484121827604 out:0.016499686866328363 were:0.01648145159169714 closing:0.016315097746329946 in:0.016293344647011952 up:0.015235119648549286 for:0.014717100726860034 :0.47312403660265606 +the:0.4616637085752359 a:0.2574350483210962 The:0.0338702287103235 tho:0.02662649104305498 this:0.025275184162979893 great:0.016861014889902857 A:0.01155002679985752 large:0.011506358174807687 tbe:0.011344790214751667 any:0.010631208491514194 and:0.010576822266688627 general:0.009950304546393795 no:0.009820116261162953 good:0.006999852028902874 or:0.006415855439035204 every:0.00581138611073083 other:0.005764670887457811 his:0.005724058542617046 said:0.005497586135150412 :0.06567528839833603 +and:0.5464283721146889 that:0.04424955655697016 to:0.020788160424146357 which:0.019720671121724234 is:0.01648977027104191 or:0.015031396136436162 but:0.013067065440421171 are:0.012741849089504601 by:0.012223813133240823 who:0.011050685845551382 have:0.01076219874245829 was:0.010592222334086718 he:0.010542138449609805 had:0.008463720434904107 it:0.008204907256798427 And:0.00797225747237585 then:0.007299359958745611 be:0.006829641581899969 aud:0.006343019208838822 :0.2101991944265567 +able:0.04795907955406747 and:0.04353567184461763 is:0.041235567977807294 have:0.03876828334361679 him:0.03662776951487707 had:0.031575658538607075 right:0.02987975483179204 enough:0.029329435508820084 willing:0.028280012905788597 not:0.02682313507330459 them:0.025942367597424534 order:0.025862676912433363 was:0.025636089024478878 necessary:0.0255781117934275 began:0.024933373581299306 ready:0.023995472098691805 ought:0.021512881147108052 want:0.02106226583126587 as:0.020369275689315257 :0.43009311723125676 +of:0.22860248223534516 at:0.08471258301891132 to:0.06155130081938067 and:0.04553044121509884 in:0.03417798211281925 by:0.033224420751338656 on:0.02469780627551344 about:0.01839815311912754 for:0.01827747592288679 the:0.017088762039949867 was:0.015471714987004 that:0.015231883422361233 with:0.014859660601179709 from:0.012794242754182568 In:0.0091060577074918 until:0.008780419993072906 :0.0077760531726560195 than:0.0074942859302396855 is:0.007181181602246377 :0.33404309231919416 +at:0.2942887523803469 for:0.2503528822579901 of:0.07304951787125125 and:0.040428033542156634 to:0.03246602565576231 that:0.02946394847934577 in:0.028145600777656047 from:0.024724384804381484 At:0.022684281798952488 time:0.016095839396487316 after:0.01428055532756274 on:0.014252550263163646 For:0.012250757004971658 before:0.010478965660246614 during:0.01047744850457744 as:0.009045896203027343 about:0.00842933639329138 In:0.008412939414856727 with:0.00816670623339536 :0.09150557803057677 +the:0.5142914297034309 of:0.10821232423646869 a:0.03173812533561824 tho:0.028421154519596425 and:0.02530354089271479 no:0.024754090068456164 The:0.022416265796042122 their:0.017994875868765237 surface:0.015263955865611276 tbe:0.012819422100341392 said:0.012730972127869106 in:0.012018082551158929 for:0.011804916527453822 his:0.01122238766846616 to:0.011025002860228712 on:0.010624848766756609 this:0.01029925124960681 or:0.009224070932569472 any:0.008298560284591222 :0.10053672264425398 +that:0.24377600211184258 and:0.13435991912768572 but:0.07168150809626594 as:0.06359833707293497 which:0.04094174528544221 if:0.03178898714157173 when:0.02633898954679778 of:0.02397717529030809 where:0.021547267384172075 But:0.015524238832081745 think:0.013838867228362228 what:0.01348168029256627 for:0.013286521710675597 because:0.01244775421495958 If:0.011512192736688312 though:0.00872863832271114 And:0.008363469436862725 than:0.008221024862328669 said:0.008130156784910685 :0.22745552452083195 +of:0.28767355066866834 to:0.08775711267569858 in:0.08678131196995101 and:0.05160598694501188 on:0.04646139928102899 by:0.04519522654900943 for:0.044547789071328545 with:0.03396756772609607 that:0.033699232901107726 from:0.03075346596941143 at:0.027039283056790858 In:0.021061449543044047 as:0.017514234937992545 all:0.012543839382496166 upon:0.011844431150487573 is:0.00998972746569266 was:0.008814315973987914 into:0.008557199930727406 through:0.007781895704231326 :0.1254109790972375 +the:0.14350526927601603 of:0.10360762401881898 and:0.06168538077978081 Mr.:0.053431971470173256 The:0.03710729660577868 a:0.02623763391540197 that:0.019947987970980775 to:0.01665663012265951 :0.01579665972408494 which:0.01531118469781668 .:0.013039228776743125 I:0.013020809075487102 as:0.012730137175364795 was:0.01187499467492498 Mrs.:0.011665555231267525 or:0.010406225009953468 he:0.009437684733196231 tho:0.009239780854000285 his:0.009152963345704567 :0.40514498254184633 +the:0.20826350248033026 of:0.11787633054522705 a:0.08085241755968006 and:0.07303337949123309 to:0.044656264231979666 an:0.038669148256041785 by:0.03380811167807175 be:0.02604756313538821 his:0.02451244957788537 with:0.02101000406175543 The:0.018198383394010722 tho:0.016309549709390744 are:0.015521426802846726 was:0.015385286848023807 is:0.014935147909360255 in:0.01490497777867109 more:0.013865235295268018 most:0.012252769624520616 very:0.011703588854003858 :0.1971944627663115 +the:0.22924132425264135 of:0.08035128677966182 and:0.055547515083489235 that:0.046985470849204194 The:0.03949337034195376 a:0.0326788192338605 Mr.:0.03136382172704767 or:0.02084337345122462 no:0.017943983364482677 tho:0.015462026051497562 this:0.013568919202297856 as:0.013163992702882273 in:0.010921943914589408 he:0.010164202291307874 for:0.009691030462655513 which:0.009078491314894655 their:0.009046326996308082 .:0.008674677877003106 be:0.008418409575066486 :0.3363610145279314 +No.:0.18951933511227997 at:0.139788784935749 lot:0.079759635164957 block:0.06098111747789379 @:0.04990416327698778 lots:0.04143654672266658 and:0.02973087231475375 June:0.027151928169629122 range:0.02394806985505144 May:0.02284377097475686 Range:0.02138348137949591 thence:0.01941889014778507 to:0.019318921881303946 of:0.01909471936807411 July:0.01661140938907487 Block:0.014441634207879122 March:0.013206262003320474 6,:0.012180441060099448 April:0.012114006442117846 :0.1861660101161239 +and:0.1053676533220708 that:0.056720364763419344 for:0.047984684598576646 of:0.047023334084464595 make:0.0437941046017265 as:0.04377860748955702 in:0.04119079708483224 with:0.03835811532195541 but:0.03519519819201608 to:0.03125026890518727 give:0.026432580429230804 on:0.02417507533340294 made:0.02379858843040713 by:0.020181515239309174 have:0.019430805800206917 upon:0.01920979210136027 is:0.01718491979162219 which:0.016657604571659542 found:0.013954811040108527 :0.3273111788988866 +be:0.17188801626001438 was:0.158630296392028 have:0.08969110587973195 been:0.07822029151388454 had:0.05970443512080498 has:0.05918160931715176 were:0.057261025165375 and:0.04820838425458741 is:0.037231896537466065 are:0.033529881777050845 well:0.02169088612842256 being:0.015892505733701767 not:0.012664550701571362 bo:0.011085009443329403 having:0.009101534309260646 Is:0.006558458877949581 bad:0.006369999462530388 duly:0.006066453886460105 he:0.00585791588269197 :0.11016574335598728 +men:0.014397089253514881 ;:0.011056594424576037 city:0.00989155432216568 in:0.009640473613928 and:0.009604225773666644 out:0.009037185285422555 up:0.008630385268986891 States:0.007385174446215131 hundred:0.007208322718196972 man:0.007012042420788754 them,:0.006920449124539774 land:0.006638063845807116 time:0.006488731288892154 county:0.0064565095840915816 it,:0.006378366188645242 :0.005721446538453193 of:0.005680829455401642 them:0.005679594455995233 state:0.005636491948324503 :0.849536470042388 +the:0.28659784069809496 that:0.07942450282898783 a:0.07512546288565557 some:0.07061344457675654 same:0.06796510984964559 this:0.05819748831803117 of:0.038611237135449054 any:0.031475165795855874 short:0.02854170610721911 in:0.02395194549499374 one:0.023267719575880457 first:0.02082841672724015 to:0.01666630475212063 The:0.016143382923581827 which:0.015607008631654219 long:0.01557641203848125 and:0.015072600468991127 tho:0.013933855910658946 present:0.012595727735819287 :0.08880466754488264 +the:0.37189156889844943 a:0.11939398921937963 of:0.08800338184654062 no:0.05735364597301275 to:0.036702036200970546 and:0.0311604887703037 his:0.03114549411482183 The:0.029346643651398493 absolute:0.027788396950849382 an:0.01882896909314797 their:0.018435219195190086 great:0.016866154379349813 my:0.014535348506203494 tho:0.013768804427678142 for:0.012849318660092455 good:0.01276261894291691 its:0.0123459228994987 this:0.012076301674435881 with:0.01154926757255999 :0.062196429023200155 +the:0.10926449926030615 of:0.0994266169770092 and:0.07747940277982047 Mr.:0.06866293589890611 to:0.03923533486769724 a:0.028654781593357794 in:0.025824480069866415 his:0.023069630114421077 as:0.017917351119701552 .:0.015229122657705176 was:0.015217652640201758 be:0.015205227554106622 that:0.014829882149660582 for:0.014612239142183387 their:0.013862651661628306 The:0.013436546257878058 her:0.011763206321570695 it:0.01142453853922752 Mrs.:0.010975435635452882 :0.372908464759299 +at:0.589134804792307 At:0.11938200623053666 any:0.03768370543214009 for:0.02830439321119484 and:0.020545342831763038 the:0.018084399906320093 of:0.017361392361570485 some:0.014541174038943446 but:0.013546915372375052 only:0.012827415932239183 in:0.012541801936552336 that:0.012212987492144323 to:0.011738477392118179 from:0.011244574710928565 about:0.010987760595561006 within:0.009623261191921674 a:0.007786437971217479 no:0.007598474806590111 About:0.007413086178622323 :0.03644158761495417 +one:0.1028303141280697 part:0.05963429477052991 out:0.04766456937681193 some:0.031418679026461914 members:0.030764490253327767 side:0.029940657362655835 portion:0.022063658796890564 office:0.020457735219956013 member:0.019726706386316174 end:0.019666887540649894 tion:0.018667441728710307 parts:0.016814747270460957 people:0.014112771422418794 all:0.014072739582212475 any:0.013183573287639892 One:0.013083578354183906 that:0.013024335602903442 account:0.012482348155001894 many:0.012077825070275192 :0.48731264666452345 +the:0.12792810086089912 to:0.12129130630375175 a:0.09889217978314618 of:0.09426516375824778 and:0.08085008831736525 with:0.04434416633969433 clean:0.04193386068837111 was:0.031931654888322 so:0.027403082684365514 in:0.027220648023272242 is:0.027071821431286648 her:0.022616671436386824 very:0.01880881765238383 or:0.018294974186255288 are:0.01639315213180065 from:0.015499797922847062 his:0.01460129628389605 were:0.014418268748375516 that:0.014256755354740256 :0.14097819320459257 +virtue:0.062060494787377685 out:0.05417899169104244 part:0.03289673107629515 one:0.02969369892462812 quarter:0.027015883171169475 favor:0.01993830018372674 result:0.019463829004704194 guilty:0.018891084377354095 means:0.018499162894926688 end:0.018170939082736048 that:0.018121271122199262 construction:0.01726217741616459 presence:0.017003995482744873 tion:0.01673652166540914 case:0.01640819963257697 side:0.016055927605250184 erection:0.015381239457214257 account:0.015287601389485416 hands:0.015156055434805247 :0.5507778956001894 +and:0.13613401976395292 the:0.056434660604861554 to:0.051865055782917766 of:0.043459087419951636 that:0.027689186317852114 be:0.021999959632541 in:0.021244588104247123 or:0.021176673099039943 which:0.018890922011131298 he:0.01879096558108093 re-:0.017848853100388494 is:0.01762471153062688 was:0.016997584758117138 for:0.015561960548855665 they:0.01504571663462392 have:0.014135179562033811 not:0.01399011382103202 pro-:0.012822675311361621 I:0.012539639489019441 :0.4447484469263647 +the:0.5770008066619777 a:0.05425536338892963 The:0.047539375357026105 and:0.043592850255386326 tho:0.028762610046602473 of:0.021211602627043157 said:0.020274689614597368 his:0.01585468127560374 tbe:0.01227921107364835 this:0.012266049682371204 in:0.011799613043298894 an:0.010155688469512206 such:0.009649067369097418 other:0.009009990864060654 on:0.007586105657587202 good:0.006739405015512301 our:0.005842807633922321 large:0.0057245102938467875 general:0.005688206443133569 :0.09376736522684255 +the:0.2659030279187467 a:0.09776090339648831 and:0.0754109637763315 of:0.056748984888965105 in:0.03137714725313096 to:0.02738646590812961 The:0.026943793930638785 an:0.022476412496145667 tho:0.019301646934264928 or:0.01735464152801893 be:0.014555093135907447 is:0.012989026281373333 his:0.012714230832828464 for:0.01215834778966363 was:0.01105363275431111 that:0.010961574841568544 are:0.0099226086633639 tbe:0.009721431218200585 Mr.:0.00941888712008248 :0.25484117933184003 +of:0.2921952626627694 in:0.11961411948116829 to:0.10957670715334566 from:0.04560966906534123 and:0.039678532653697106 by:0.03825507151787651 for:0.035508680727941604 that:0.03267301057844905 on:0.03052182472760798 with:0.03024424015079104 at:0.029067521781900887 In:0.024427067044542602 as:0.014859734013187192 into:0.012951960599482757 over:0.011739582423891172 all:0.01125018003182642 up:0.009462671443434458 about:0.00799340756782408 through:0.007822298924919046 :0.09554845745000352 +the:0.1536976291445513 of:0.11388994506098514 a:0.08324544802824689 to:0.05628286754822211 and:0.05404394131552878 at:0.04665402631196436 in:0.03340392576137456 for:0.026098762827417465 his:0.024539740583161947 with:0.022967491278556473 as:0.01722845289613206 an:0.015776796182107745 that:0.014327875679899718 by:0.014315665651904695 their:0.014105975575286572 on:0.013406963222021142 be:0.013335852733344668 from:0.010410681569268623 is:0.00924796919902612 :0.26201998943099963 +of:0.3283757969554043 to:0.14447610099444844 that:0.07832245775498578 in:0.062251482516911566 for:0.03455992357481649 with:0.03384365793969122 and:0.03147446155976928 all:0.029648079258791104 on:0.02834945391361582 which:0.021971799966112406 by:0.020307915287602202 when:0.016670605500298252 from:0.016587908888762257 In:0.014339018545364384 if:0.01363236862653064 as:0.013251192924161324 upon:0.013242568533790872 make:0.012277324789586617 If:0.008932080228920931 :0.07648580224043607 +one:0.015552536992080472 more:0.014252271697624306 on:0.010631301787611593 day:0.010222750824534239 two:0.010216157614982159 person:0.007504694644314241 in:0.007364820929323563 man:0.007179188731169107 law:0.006205362369136604 action:0.006166303509128973 and:0.005659786788634644 city:0.005177234665142273 three:0.005130416479837977 State:0.0047265097104810415 to:0.004696031397422901 ten:0.004594585978494318 of:0.004463781172886088 town:0.004231879326219736 year:0.0040256313925199315 :0.8609987539884558 +of:0.4005921325730604 to:0.07359413114701999 in:0.06595021812059615 for:0.05537793772138359 that:0.05348864186326154 and:0.04690412438076269 with:0.03922855531745641 all:0.035974606120423025 by:0.025785488861078676 on:0.020978184851163522 from:0.017408272791162242 as:0.017207129655834118 but:0.01607216139457066 In:0.014192079783167397 which:0.010464959664410292 at:0.01045303309430823 upon:0.009251061026666235 All:0.00855754583929337 if:0.007332365231361457 :0.07018737056302 +import-:0.07676148138101614 pleas-:0.04824643651307821 and:0.03976991987838519 of:0.025932007442971323 defend-:0.02475938919296418 or:0.016022143748217997 the:0.012451304937650749 that:0.01170728166436318 if:0.00986576102034767 a:0.00953032859679154 -:0.007756723028797787 at:0.00757255234680865 :0.0069784709223028075 assist-:0.006940138975629009 .:0.0066368019691153005 said:0.0064123810769532484 whether:0.0050408411477890136 as:0.005014544348638841 in:0.004719400167292522 :0.6668820916408866 +and:0.07701355952676986 them:0.02671534231094254 made:0.025444087083691908 him:0.022100766677561324 pay:0.018950913132879936 demand:0.0187055342259574 or:0.018281300425472696 necessary:0.017606543984887407 work:0.016941928790828776 out:0.0168609670715699 enough:0.016686965474538264 not:0.016497444545472542 reason:0.01634719666018487 time:0.016189629771379832 asked:0.015884353814188675 ready:0.01449201154256651 vote:0.014377855919013763 responsible:0.013818164469139643 do:0.01331483475447992 :0.6027705998184743 +:0.07588217164627417 it.:0.018385167249813247 them.:0.012914714897871224 him.:0.012088248506995797 time.:0.00938259023513612 day.:0.007673374666176703 work.:0.007197652406718508 country.:0.006894610072764466 out.:0.006488035966052974 years.:0.00582654965844524 year.:0.0056221795279431195 one.:0.005603102786359794 city.:0.005345294730889985 water.:0.0052560362219762945 .:0.005177399415962304 man.:0.004999578443476165 ?:0.00483265963171953 home.:0.004799032228002603 life.:0.004609039385702933 :0.7900225623217189 +the:0.11919516938815296 of:0.07230453158552728 and:0.05781056740443249 a:0.043018564803886335 to:0.031305092790907506 in:0.020848713353460488 at:0.014270110001066288 .:0.012526810245749479 :0.012413283442322082 for:0.011719122709941797 by:0.010808400946589808 or:0.010404172990115616 The:0.01003576004804544 with:0.009811868184449042 tho:0.009295902015355835 was:0.008924239095331684 that:0.008672304223433876 is:0.0085591147338948 be:0.008335143826716943 :0.5187411282106204 +I:0.23867564606458053 not:0.13550175151386584 we:0.10651507677629057 you:0.06925932500131948 they:0.0686278104452502 who:0.054970333425485324 We:0.044227041761589286 to:0.04379411320504643 would:0.0268328230410779 and:0.023316634226111296 may:0.02290356345098104 the:0.017297613260551875 a:0.016638854963426684 They:0.01503022187486482 he:0.013840398891359207 1:0.011971175395109133 should:0.011644204118502656 don't:0.011373879905484763 "I:0.010922717005278752 :0.05565681567382423 +the:0.23963747964653287 on:0.08842619965285861 at:0.0628969768129268 of:0.05724124729406006 and:0.04049126972107256 a:0.03263683861686597 from:0.02558733573988242 to:0.024958731796809658 in:0.023722097642908644 The:0.019639990806788223 tho:0.01838227081583155 :0.015345170398326039 tbe:0.010605392958478808 A:0.010209440901599334 for:0.009662125742929285 .:0.009439333445224405 On:0.009388408863113828 In:0.008597597291981129 an:0.006990273085865057 :0.28514181876594474 +of:0.09129790931378902 the:0.07369883040827747 and:0.047842263382354346 in:0.04189055351593407 to:0.04045875475680249 a:0.03542341257202578 be:0.02020462051672066 for:0.01979292654746225 was:0.01760256398103379 at:0.017380150555488715 is:0.014984483003968216 with:0.014047653760730413 by:0.01374644383819499 :0.012670486581795598 In:0.01200961464556976 or:0.011563835749786333 from:0.011391516893522809 are:0.011273104484969465 that:0.010755276030689069 :0.4809655994608848 +was:0.16650086472612288 is:0.1223312120338888 of:0.11220966754328282 in:0.10154673651994803 and:0.06760347114701477 are:0.06391201028835324 been:0.04234080153247005 be:0.04163083246535937 were:0.03464158984565573 In:0.027937984065832023 not:0.026638919088889792 Is:0.019419100503483524 to:0.01870652515990386 that:0.015006500228855644 or:0.013544500802081041 from:0.013266635781846815 on:0.01208486015920887 for:0.012066367348719421 had:0.011227886729447432 :0.0763835340296359 +and:0.08894664051878952 that:0.08779626115470779 as:0.0720699282192048 of:0.05133361775892349 to:0.048339908143464345 for:0.042417933097402855 make:0.037680065604397635 but:0.02929735743624991 if:0.028769661058585173 on:0.02848917949665394 which:0.02383759423827269 in:0.023096290199678012 with:0.020468118909793085 about:0.01660834676247576 have:0.01583548936766602 when:0.01485080956594802 do:0.014469771301855073 had:0.014169399791162544 until:0.01404601427927589 :0.32647761309549345 +the:0.22052173904674707 of:0.11538277631709545 and:0.07600893695483417 a:0.07004925231740321 in:0.02032394001329095 to:0.017760541526728617 or:0.016321320631386877 The:0.016047378210588287 tho:0.014162478919836598 his:0.011851559038502319 their:0.010247726296522618 an:0.009976024422455008 all:0.009838815678283644 that:0.007981786074193685 other:0.007735324991191378 :0.007694646861427443 at:0.007393351766959102 by:0.007172496730326369 .:0.006850640354361914 :0.3456792638478653 +the:0.09684081064840576 and:0.06551335624548284 of:0.05146145169206151 from:0.049520598669154245 a:0.045427902131977435 to:0.0370403239153822 be:0.035669151526387034 was:0.030489628475080553 is:0.026635804908522978 in:0.023878514238638158 are:0.018513936943033917 not:0.017945708099223703 or:0.017556265685966497 been:0.014265228721347686 at:0.013857211504087178 he:0.013733215789660087 were:0.012396679125422956 I:0.012347944480187516 for:0.012197989992860347 :0.4037082772071174 +the:0.11919516938815296 of:0.07230453158552728 and:0.05781056740443249 a:0.043018564803886335 to:0.031305092790907506 in:0.020848713353460488 at:0.014270110001066288 .:0.012526810245749479 :0.012413283442322082 for:0.011719122709941797 by:0.010808400946589808 or:0.010404172990115616 The:0.01003576004804544 with:0.009811868184449042 tho:0.009295902015355835 was:0.008924239095331684 that:0.008672304223433876 is:0.0085591147338948 be:0.008335143826716943 :0.5187411282106204 +and:0.1907471924479306 that:0.1872692906329564 as:0.07754364348697483 but:0.03974617319606375 even:0.03734376373802813 But:0.025932639022338434 And:0.023077182024216384 or:0.021939806506401673 and,:0.019358143501844335 see:0.015330732439863704 that,:0.013869314752153474 Even:0.01063298864212959 which:0.009776380464884672 him:0.009234870269753162 which,:0.0080997000690553 ;:0.007968302420436928 doubtful:0.00750308793406508 asked:0.007452046463333457 Now,:0.007014772880011155 :0.2791599691075589 +and:0.16532924394454104 it:0.14155570499696662 It:0.0653556224129291 now:0.048335605724535144 he:0.03390602606823862 be:0.027392246514014756 or:0.0261817052418695 that:0.024793210797053922 is:0.02241742988578915 so:0.02082209807343009 then:0.019875540557069957 was:0.019724816958082626 there:0.019171970601172234 as:0.017759261832155284 are:0.01630506847840884 to:0.01527857647961836 who:0.014565148042840943 the:0.014543124087219498 which:0.014227132744686403 :0.2714604665593779 +to:0.4407016566714507 the:0.05649761386646129 will:0.05280565180649917 and:0.04399503112173861 of:0.03968662776522426 we:0.03272922378412978 a:0.029889309927342806 I:0.028360386556941695 not:0.02531046742583263 this:0.020608248240981876 in:0.019086202894225218 should:0.019071420624960617 would:0.016478366171801498 that:0.016264345871395865 which:0.015975208279053063 they:0.015582348580473351 could:0.015446597924623743 must:0.015395337148457797 To:0.01536910468618593 :0.07974685065222006 +to:0.11815428618928227 and:0.0852146912507816 of:0.058817150574563985 the:0.05091970927846495 in:0.026621834774410824 :0.016621463305097346 not:0.016575787425455363 I:0.014445653711014275 by:0.013489864125342935 a:0.013489366047260485 he:0.01288543895410413 at:0.012744580352905713 is:0.012462468927005322 or:0.012191891717805782 In:0.011605641097873442 for:0.011533720742248682 who:0.011244031111310823 it:0.011208393094641137 was:0.010839935064315116 :0.47793409225611583 +the:0.11880527736199252 and:0.10538536110694026 a:0.08091262377394867 was:0.049700393959806514 is:0.04610844463928158 of:0.04554459180620952 be:0.045295109413072916 an:0.04121723967670013 to:0.03447978711699796 are:0.025232641453045122 been:0.022413575716407525 in:0.01906387077682554 were:0.016072222122233047 or:0.015880055958373728 not:0.014644578460400742 he:0.012469886819824806 have:0.011791805803539765 his:0.011069711627531929 The:0.010421539568628194 :0.2724912828382395 +eight:0.2782191950932189 six:0.057548152840044664 three:0.04990751949954502 two:0.04396912860695848 four:0.04102142251052006 of:0.030619696161320684 five:0.0237878668934804 hundred:0.02044486837641164 Eight:0.01824715438522999 few:0.01599357874444753 for:0.01422806279647303 seven:0.012655864776427557 per:0.012603422172058251 nine:0.012431835795950271 ten:0.012063979606461219 2:0.012052407212193016 Six:0.011787209384238839 thousand:0.01111477285679753 4:0.011058911991021854 :0.30924495029720106 +the:0.3619254138919656 of:0.20731663890792168 an:0.061606023609599395 and:0.0450557891578982 in:0.03488752837590126 The:0.03164441071451981 to:0.02223638682945793 for:0.02022346967638711 tho:0.019089533410405216 by:0.016250622872175668 with:0.016128022512476557 a:0.014148860232538031 from:0.012249652106278982 this:0.010447495060081002 tbe:0.010118129308150087 In:0.010018697096151805 his:0.007448948913960173 that:0.007108111161008846 or:0.006910274348420944 :0.08418599181470168 +it:0.11063180175785838 It:0.10765320076603548 there:0.04055249654031638 that:0.04007866456149917 and:0.03299538029525803 which:0.030852441263396684 he:0.021170293105343938 He:0.009800122782511193 man:0.009749495354200126 day:0.009612208339677578 as:0.009562437346588768 There:0.008941879629988044 but:0.008594518471750344 year:0.007589838348084077 who:0.007320756265951103 what:0.007217971932604835 was:0.007199313751435637 for:0.006365207275131681 time:0.006215869185722604 :0.5168961030266459 +to:0.08034344102784367 and:0.07559770811618696 of:0.07556417531451855 in:0.06430708336571542 was:0.0433904303290245 the:0.03714196666882291 is:0.035489587378076955 be:0.0327312593685656 for:0.026390414838272 are:0.026389447141360618 a:0.022518133573586962 were:0.020827030628718577 In:0.01908623855113952 will:0.018588649062266573 or:0.015820867600591017 with:0.015642320946412592 have:0.015541197933978465 been:0.014201070507074713 not:0.014037796634584664 :0.3453911810132597 +the:0.4875595271549297 on:0.047968757006036054 tho:0.03732729465499412 of:0.0327679103200245 in:0.025076846482153085 The:0.02389361307195269 and:0.018744150757606888 tbe:0.017779172272010615 this:0.01585007118558849 at:0.014365225992756631 our:0.013331417713457932 as:0.010423114801324245 its:0.010159398178532472 said:0.007904095854908328 other:0.007390436466330764 a:0.0073669369723990625 his:0.007164173418534878 In:0.006702466666336812 these:0.0066822607491181605 :0.20054313028100462 +of:0.14255606818381353 the:0.12341341952872932 in:0.09423889085174592 and:0.047980187827578194 to:0.044440627063491715 a:0.04403928105996312 for:0.029534318969774168 that:0.024716334617024882 by:0.02146116904631378 In:0.02130897446519728 with:0.014690893940772437 The:0.014618610073304509 as:0.013080883440139121 :0.012894743460878934 from:0.012747538132619697 or:0.012526168970854892 which:0.01245966310557507 an:0.009428711446064934 their:0.008376018968302373 :0.2944874968478561 +the:0.5719104663682466 The:0.07277040007419038 and:0.053929915535126605 a:0.042207797924948075 his:0.028094258222484323 tho:0.027083129774038768 an:0.013657025876952163 of:0.01306334181726468 in:0.012917489624018737 tbe:0.01080947618276725 their:0.009671688743396979 her:0.007737859667358849 by:0.006632009567625905 great:0.004854120448176023 its:0.0046957824279396185 or:0.00423787024941517 In:0.004213324869565388 Tho:0.0037218006808549114 our:0.003488200283706515 :0.10330404166192307 +and:0.018535361655283914 of:0.011073856546791069 :0.0103601794623999 two:0.008951194625259435 ten:0.008664508667023401 thousand:0.008198324369618913 hundred:0.007481193237538153 fifty:0.006987081331085413 three:0.006549861371967797 million:0.0062287796898697215 sixty:0.004833758085107006 twenty:0.004275620710266661 for:0.004071026600552463 five:0.004055217051809913 100:0.0034228619929877325 four:0.003217266913183599 the:0.003210888053204926 Hundred:0.0027426543274711177 live:0.002735940475787582 :0.8734044248327913 +and:0.0973036096972417 was:0.0971827656225617 is:0.060673210572166514 were:0.03604378304575248 are:0.03598236541802449 be:0.026478528235691544 it:0.02457673480164285 been:0.02428525977630421 on:0.022133658981627967 not:0.016510101005777485 that:0.01648358789426287 but:0.015062158239742909 had:0.013571684637035246 made:0.013377034455218107 arrived:0.011543190065149634 of:0.011198200830360073 held:0.010435904734839642 Is:0.010030042872232761 being:0.009957103002298958 :0.44617107611206885 +I:0.18885659855270648 we:0.08995276260033769 they:0.07953011179692847 who:0.0712084576981686 and:0.05545996903813353 We:0.05379012153113597 to:0.04835530427180275 would:0.03891261598578963 you:0.03785505248163244 which:0.026848753548365384 They:0.024802480733409234 1:0.02114586823283083 not:0.020368996382837713 that:0.018552290214605797 will:0.018298046324300408 should:0.013756684384835656 must:0.012626848384027483 may:0.011887769735400455 men:0.011530154970964011 :0.15526111313178748 +the:0.4052164463416875 The:0.07341000886364069 and:0.05371915149281627 our:0.0473058967393651 his:0.04454011340035353 of:0.043080141941302684 their:0.03496694715643736 a:0.02141648452791686 tho:0.020752075790617257 this:0.019349109463333583 such:0.019289069615102534 no:0.018609212781694192 whose:0.01855908890717082 other:0.018502373353974113 these:0.018443826592938747 that:0.015118117143034281 her:0.014732415225821974 its:0.014513286267344643 or:0.01406396075785872 :0.0834122736375891 +to:0.5722129515662798 will:0.04803822416540239 and:0.041422042655918596 we:0.03754836898250089 not:0.032569675530224204 the:0.030521376706437477 can:0.024026214384607666 would:0.02201979517337709 who:0.018382296376286647 could:0.01736373040813006 they:0.015994417954152802 a:0.015880818968952444 I:0.015096329985813978 you:0.01356474191761981 roll:0.012903395243646613 may:0.012802955070379905 To:0.012686723313584733 We:0.011771924120848919 cannot:0.010135565745943285 :0.034058451729892615 +the:0.11919516938815296 of:0.07230453158552728 and:0.05781056740443249 a:0.043018564803886335 to:0.031305092790907506 in:0.020848713353460488 at:0.014270110001066288 .:0.012526810245749479 :0.012413283442322082 for:0.011719122709941797 by:0.010808400946589808 or:0.010404172990115616 The:0.01003576004804544 with:0.009811868184449042 tho:0.009295902015355835 was:0.008924239095331684 that:0.008672304223433876 is:0.0085591147338948 be:0.008335143826716943 :0.5187411282106204 +this:0.25644546348582553 the:0.1460034299620939 that:0.09166705177417613 first:0.0591459301600282 a:0.035013153692445245 his:0.03486548838481854 took:0.0338835759144614 same:0.03350150416880592 on:0.027370149942102007 take:0.024111166034087087 taken:0.023889555798990054 in:0.02382220807160397 second:0.023813929760629175 any:0.022327074751397728 third:0.01560512815536328 right:0.015191553918540787 to:0.014994772628439759 of:0.01374031361028607 In:0.01033568532047012 :0.09327286446543508 +of:0.3993779796507777 in:0.08535154735807478 that:0.0842330363780055 all:0.06144482384465855 for:0.0493005813349473 to:0.04097573974028456 and:0.03132322782959712 from:0.02701319111649444 on:0.024551185716540903 with:0.024407311524136166 by:0.017528428136348022 In:0.017468203391485564 upon:0.016558910323415228 under:0.012826716279041033 which:0.011726768190037797 as:0.011417806705363123 at:0.011031691284901104 between:0.009800044248445399 but:0.009673580713469767 :0.052989226233975915 +Mr.:0.2404626793866508 the:0.24014418660479334 and:0.04579700739309637 .:0.039024437172645594 of:0.024224202850406468 Mrs.:0.020943607042179905 Dr.:0.016731780941388566 The:0.01597558076396996 in:0.014148976409254253 :0.01184814946279561 A.:0.01154850483188313 Miss:0.011128504585680706 Mr:0.010105113448243292 W.:0.009521848535367264 tho:0.008690484583570236 to:0.008597763853701444 H.:0.008430572128501441 C.:0.007472313230476235 John:0.0073362965624005965 :0.2468679902129948 +No.:0.0643559996867421 and:0.05217728663602116 the:0.04457893615527467 of:0.04208592666726906 at:0.029559812124280428 .:0.026941588593129052 a:0.02665337501305524 said:0.02218285368793813 to:0.020968212253776656 :0.012113795208807012 W.:0.010346049690272937 1:0.008885076881085235 or:0.00887777499038276 feet:0.008858771980041424 in:0.00826327866723483 E.:0.007891826548905304 on:0.007224495184656087 C.:0.006686993849698836 street:0.006472148815453404 :0.5838757973659757 +be:0.24264611005330655 was:0.10582040807710712 been:0.09480560596587058 and:0.07519569981733507 is:0.06556832300063041 were:0.04971537611364168 are:0.045272505776667624 being:0.02617165063029106 has:0.025297334715588603 have:0.0239384803374443 case:0.015454333375463643 he:0.015407060531064398 bo:0.015262356976600716 a:0.013558284604909562 which:0.013501496963495872 Is:0.0134487318125222 had:0.013093053471454058 I:0.01138145336309577 who:0.00900764023392736 :0.12445409417958345 +and:0.03725605334396586 order:0.0314257399599934 as:0.02599965545827262 him:0.02438148420000861 is:0.022481387843513265 going:0.01888706451238589 them:0.01840441541966405 able:0.018304598823682686 time:0.017681892645919517 attempt:0.016631493900992004 was:0.016131406664266944 right:0.01601277862349514 made:0.014678728764959258 went:0.01409022120596746 way:0.014016799418457685 enough:0.01383787187926777 up:0.013450590443175599 power:0.01243502471339976 back:0.011230648087698405 :0.6416621440909142 +he:0.16545396771538806 I:0.16032908555495123 who:0.06539256060456758 have:0.04800678860213816 they:0.047797925385518594 and:0.04444342596719417 He:0.04412641817759772 she:0.04046033118176323 has:0.03393409735992592 we:0.02917774783558733 it:0.021760350261424612 had:0.019702539582073762 which:0.01786854993480003 never:0.017592959310961696 She:0.017560782771095348 1:0.015455470618531484 be:0.012652638953704245 that:0.011849968520844299 ho:0.010856822105152337 :0.1745775695567802 +the:0.18941070485687136 of:0.07390279899818201 and:0.06570082437222247 a:0.058469243590548274 in:0.024856988432496216 to:0.020873147706783023 for:0.018682659686982638 or:0.017866694612114674 that:0.017028564531941848 The:0.014409173905624696 tho:0.013452762362497402 any:0.012264366938919611 their:0.011649091646265465 other:0.010378896202069391 his:0.010181810078543935 by:0.009890952379887743 :0.0098587277099488 at:0.008693303303851414 with:0.008048251693860238 :0.4033810369903888 +of:0.09129790931378902 the:0.07369883040827747 and:0.047842263382354346 in:0.04189055351593407 to:0.04045875475680249 a:0.03542341257202578 be:0.02020462051672066 for:0.01979292654746225 was:0.01760256398103379 at:0.017380150555488715 is:0.014984483003968216 with:0.014047653760730413 by:0.01374644383819499 :0.012670486581795598 In:0.01200961464556976 or:0.011563835749786333 from:0.011391516893522809 are:0.011273104484969465 that:0.010755276030689069 :0.4809655994608848 +the:0.09782231583743711 and:0.08826464051280451 of:0.06546959710748265 to:0.04912171715824268 a:0.037698285194151616 for:0.026272432496808867 or:0.017580353298582856 be:0.01634222992152779 was:0.016334022200195888 are:0.015244403465076004 that:0.014735897670729258 is:0.014137344559719517 will:0.013813679157957014 :0.013189792504175263 his:0.01200073146618346 in:0.012000038413718763 their:0.011992362032609798 con-:0.011412518862959475 which:0.010818662832522965 :0.45474897530711456 +the:0.2665573220248046 a:0.10599864252112828 and:0.06916524238733722 very:0.057342462657152315 so:0.05025571765262565 The:0.04457099302822559 is:0.03621178587857574 that:0.026680593126081835 it:0.02612348806793049 of:0.023055563434972358 as:0.022329112796765232 are:0.022272216786087182 to:0.019546220570940766 with:0.01801163350483928 was:0.017579851969658413 tho:0.016583841979343827 made:0.014896641718996724 be:0.014716358998555328 our:0.014609214885198592 :0.13249309601078058 +a:0.42347331265287425 of:0.12929724336097587 the:0.05136832844887416 with:0.04239267654884836 and:0.032372180301694566 make:0.026764903264187574 A:0.026183488931912812 as:0.02482993353678192 in:0.022768784528754932 for:0.020534779409634177 is:0.020179264999204045 no:0.018323169100427195 very:0.018018844942218663 that:0.017782876307375597 some:0.014360935353271246 are:0.013406547892974139 by:0.012006198558008396 so:0.011926954556107589 to:0.011896732264096769 :0.06111284504177772 +of:0.16621801746728168 in:0.13790935938916707 to:0.1250892196150277 and:0.06624671242122723 that:0.05811461320481927 on:0.05536990767349238 for:0.05417922685370818 by:0.04660818720781678 In:0.03809589022877311 from:0.033529961471485126 upon:0.030240765191963916 with:0.027018126249775575 all:0.021038703218806847 at:0.01930605358041214 as:0.01580814624918827 into:0.015104247347514393 or:0.008906543134673357 which:0.008161114908921857 through:0.007997226992362426 :0.0640579775935827 +and:0.09766845384463307 is:0.07020311571435332 in:0.06355972456704827 are:0.059948000450724286 of:0.05637070394505597 to:0.05047014697060973 was:0.046464680208471755 for:0.045741150050932926 be:0.04000866712653971 by:0.025633713572505566 been:0.01980472644652501 the:0.01742093984637922 were:0.017108180931501907 will:0.0170741726857624 copy,:0.015713256803633724 it:0.015449193166985122 being:0.014824525973322242 after:0.014462087529435102 with:0.012915068874612187 :0.29815949129096847 +of:0.22035991270636388 to:0.12487986523695002 and:0.12217667093478314 in:0.06723420506122563 with:0.044637112913442634 for:0.03357705977408818 that:0.031043462237856055 by:0.02774567223143074 all:0.02217080421939624 on:0.02116855665096461 from:0.020203758096824714 was:0.01888224205080019 up:0.016054283668329845 over:0.013654451251027771 upon:0.013283425268904943 In:0.013019775136323028 as:0.012594909300234127 about:0.01202218702178108 had:0.011133258492807541 :0.15315838774646565 +the:0.39749834532651884 a:0.07520030034269234 and:0.05540858759821703 The:0.03273515726769502 tho:0.030061875542463562 of:0.020144331424922633 tbe:0.014929647509541684 in:0.014268129706664795 or:0.013333166761078447 .:0.013287381914101323 an:0.009000188755386574 to:0.00880680429595084 :0.007943763822197133 Mr.:0.00773879605474787 by:0.007328417831573476 as:0.005922572098978465 for:0.0047526933692942485 that:0.004736121968310169 on:0.004594595720579333 :0.2713091226890862 +and:0.05536354248420228 such:0.0534559157908576 far:0.04381154613530356 described:0.041482417633066086 well:0.040471789068295405 it:0.0349765758840592 is:0.03242431936554545 so:0.02869880375325131 much:0.028562980671946712 just:0.02703821094199751 be:0.026050745517301556 was:0.02567124072274545 are:0.024159094029371102 but:0.021609724238233066 long:0.021411809285073614 soon:0.019779674423169132 not:0.019033858944200663 them:0.015815157920286444 him:0.01438086373896742 :0.42480172945212646 +a:0.2155509493868492 the:0.19636357963834272 an:0.08148331583601066 no:0.08118377872650911 and:0.061858700275831034 this:0.04019215062300371 is:0.039507105463425875 The:0.03534703991656705 any:0.029069888252359854 that:0.023182321772649162 or:0.019975459149658276 very:0.019247450965676646 his:0.017378701294160942 tho:0.016388895547322566 in:0.015940665682203523 A:0.013880101506204246 of:0.01317502980866217 to:0.012763501368073473 as:0.012416118452855961 :0.054095246333633794 +of:0.1094825991314368 the:0.08663873506992827 a:0.07636221313955993 and:0.072225976099452 to:0.04965704858673222 in:0.03607824212956689 for:0.033779133841743976 be:0.025791634300748895 or:0.024687813402620155 which:0.016488754577219423 The:0.015622501974123428 are:0.015415873433322354 was:0.014918623510905971 with:0.014228940949756422 that:0.0140251049420886 no:0.013897641878956288 is:0.013732859730822894 as:0.0132142869583466 con-:0.012807938717182476 :0.33994407762548645 +of:0.10811762025936666 as:0.10725916454732734 is:0.09459182117576549 with:0.07686730354176283 in:0.05386200009048428 by:0.0484321654186303 to:0.047770620647250954 for:0.04537600977996405 was:0.0362260948153311 and:0.03554598417514301 such:0.034134163975270276 at:0.027984235589499657 on:0.02634828193068368 make:0.02626779735847909 be:0.025748680218225226 that:0.020350977442632253 have:0.019792787081478445 made:0.019199202923387438 from:0.018627182103366547 :0.1264979069259514 +state:0.07797514578045413 number:0.044599262739644874 State:0.04289246129442918 out:0.0402255764733869 matter:0.03556465251591383 line:0.02979373791365778 side:0.026039937565539944 part:0.0227048911741125 people:0.020864854003157605 purpose:0.019417156288085168 want:0.019232176713859194 power:0.019194586697192963 kind:0.01907664655611696 piece:0.019043902645960707 day:0.018054129792796286 that:0.017468757989647102 feet:0.016924075525410566 right:0.015470426057699308 amount:0.015160786590196821 :0.4792968356827382 +of:0.09980120704133298 in:0.090768983573194 and:0.07523583559751285 as:0.06229598393176549 to:0.05725431002286164 with:0.055599111896530856 is:0.04869478375439846 for:0.039542290046875234 such:0.03893619016435955 was:0.037049367914799895 by:0.03385203507279693 that:0.03366981590204645 at:0.029850338206907617 have:0.02931930852583592 be:0.028792409270116538 from:0.019675221574430385 made:0.01911825662109459 had:0.017404387087572543 In:0.01705971817598152 :0.16508044561958654 +it:0.20447436155207596 It:0.15864402370130454 there:0.06251265636741359 he:0.05532344822658098 which:0.05436710252298899 There:0.05171404108582399 that:0.0386775159134442 This:0.03042912042419199 He:0.02918820854744457 and:0.026458006354098704 who:0.024804017846713548 what:0.017561750000747264 she:0.015453382011059408 this:0.01407928059148635 man:0.01336844252645504 She:0.009038930366082523 work:0.008234554197486265 one:0.007657751679571459 here:0.006331855965394484 :0.17068155011963615 +be:0.7560416428866354 was:0.05659870214713709 been:0.05148701024568175 and:0.022622220650425805 were:0.021834186734777924 is:0.019143594182957337 are:0.016141136589918805 bo:0.01196155112430879 being:0.007400504708443537 duly:0.005082168316091085 or:0.00428562273280571 he:0.0028511046360966148 not:0.0028172274009906372 all:0.0025508897837404174 much:0.001961513758993327 as:0.0019129894906726118 the:0.0014509665531443217 Is:0.0014384816844287 they:0.0010428510042094588 :0.010375635368540642 +of:0.28767355066866834 to:0.08775711267569858 in:0.08678131196995101 and:0.05160598694501188 on:0.04646139928102899 by:0.04519522654900943 for:0.044547789071328545 with:0.03396756772609607 that:0.033699232901107726 from:0.03075346596941143 at:0.027039283056790858 In:0.021061449543044047 as:0.017514234937992545 all:0.012543839382496166 upon:0.011844431150487573 is:0.00998972746569266 was:0.008814315973987914 into:0.008557199930727406 through:0.007781895704231326 :0.1254109790972375 +of:0.130268812587058 the:0.07727837720854348 and:0.05312820824134951 in:0.028022361561134655 on:0.024792494071660048 to:0.0245509422788285 for:0.02359936982037204 by:0.021452440770197232 with:0.020977580171942786 from:0.018524274847710326 that:0.017780652153823025 :0.014683348011106384 near:0.014406984915395224 at:0.013152649932811521 under:0.013001280579450483 said:0.012601278085656108 have:0.01229142663566179 had:0.012051754252620289 1:0.011739361918537698 :0.45469640195614086 +of:0.10865598255232314 the:0.07898250272624091 and:0.05336889516255642 to:0.04302855557192271 was:0.031077075465581437 in:0.029762864471386426 be:0.02447881934934539 :0.023507734327519778 for:0.0221449197258726 a:0.0218710594777332 is:0.014404629109464114 were:0.013984481019390895 his:0.013667978529846388 at:0.012825880428926706 .:0.012294734294955445 been:0.011564872972298582 that:0.011535685164578327 by:0.011042482077707957 Mr.:0.010149721326738676 :0.4506511262456109 +of:0.3182931620132958 in:0.1551808126264868 that:0.07357783646772463 for:0.0705384992943051 to:0.05172899894772129 In:0.04968944244891498 by:0.03313092342411374 and:0.03235860118082874 on:0.023668983036933315 with:0.02123487167541492 from:0.02098587267965509 upon:0.020848972570881384 at:0.012785409066785871 all:0.011322719241560895 as:0.010904496266137712 do:0.008963688039870774 but:0.008153279081562737 make:0.007190932377595831 ot:0.007147559352479677 :0.06129494020773071 +and:0.06317916895143688 was:0.03089079697380977 is:0.020044819943736053 be:0.019406329289829806 are:0.016631216139614186 that:0.015910745835586493 it:0.014132589635136123 been:0.013429954470292457 made:0.013153338042273357 were:0.012494049396038097 or:0.012369181282419555 them:0.011608721240324167 up:0.01101461536327863 him:0.010833186604515583 as:0.010718511743974049 succeeded:0.010682665877813333 engaged:0.010592681714621757 not:0.009777868089593193 now:0.00948198968071834 :0.6826475697249881 +that:0.24946686252096273 and:0.11235849886388408 as:0.08525126060697615 but:0.08007282913977136 if:0.06434670955175177 which:0.04621673749141204 when:0.04562900802564805 what:0.02699091241305368 where:0.026270454876484804 If:0.023366752352344807 because:0.020726059619616443 though:0.018168146310506533 of:0.016586647536304167 But:0.015039333503707383 whether:0.01307519972953007 until:0.012334632602075403 than:0.011704816700017375 how:0.010398421274931182 said:0.010070018914016238 :0.11092669796700574 +an:0.3415295790835609 the:0.16964997115447936 most:0.13376410685152398 and:0.07109496175317617 more:0.04095654013617372 of:0.02328425925516374 very:0.023165567243593276 all:0.02017001349518963 in:0.019863579888778467 this:0.014409811304530222 An:0.014118798532183832 The:0.012022390855286929 a:0.011306584028019658 some:0.011239124182466533 with:0.009120085750803714 no:0.008719046991523977 tho:0.008598781631285034 such:0.008063265685212057 is:0.008038722454540629 :0.04988480972250812 +of:0.2209831389375808 to:0.1103680028618973 in:0.06900502446097612 for:0.06460156161686827 and:0.06279955687385753 by:0.06211269855973801 that:0.05035462723032746 with:0.04859370999757382 on:0.04179752800154837 from:0.026332635325946548 all:0.025893620770836647 at:0.022039607964777094 upon:0.01896492984768243 as:0.018839498447429985 In:0.015602243549548011 under:0.01322585918072576 is:0.009711071213919115 over:0.00876857563875943 but:0.007592062459680406 :0.10141404706032693 +the:0.18228717767955271 of:0.17887234070523508 and:0.12264497814789142 a:0.03698532863932951 to:0.02837288072011013 by:0.02824201738884075 in:0.02785849262510245 his:0.025102248559401984 The:0.023072600280297458 with:0.020935869729462545 on:0.018209793038326854 their:0.017445461866319668 from:0.013194037343837377 was:0.013089130363258289 tho:0.01117253958032276 for:0.011023415332122179 its:0.01047814310866619 our:0.009990859687501895 her:0.008704478359395532 :0.2113182068450252 +:0.11850843538651191 it.:0.027541836183349738 them.:0.01611844148503497 him.:0.015020854354828691 time.:0.010457850786028004 country.:0.009763913082606539 liver.:0.009170466727298605 day.:0.008490270334743371 life.:0.00759036945472087 .:0.006563159672020137 work.:0.006081087089676701 all.:0.006034223628243682 out.:0.005871813624005355 world.:0.005816331373574727 way.:0.005675086755781227 city.:0.005600170099154174 year.:0.005307828239552449 again.:0.005172994147011291 It.:0.005134375110975566 :0.7190804924648819 +of:0.0902309537598098 in:0.0898120652677796 was:0.08682764477642105 for:0.08211132344328288 to:0.07201747963544196 is:0.07092123582521154 as:0.07054820599310373 and:0.04255602906281683 with:0.03765378923077206 such:0.03422960201053839 not:0.033104741087308 made:0.03033697821642576 on:0.030094276441069642 In:0.023101870896222714 be:0.021794771804287263 at:0.021261123925063487 by:0.021157558269451288 half:0.016441773348076696 make:0.016277902281825074 :0.10852067472509222 +went:0.06088539382030775 go:0.047301110869290265 divided:0.0410340417072992 came:0.037892494507126555 brought:0.03770942146080646 put:0.03490650015951465 taken:0.03295955657818506 enter:0.03186953896949232 come:0.031451990162796664 them:0.027286976926118475 it:0.025541953202825055 turned:0.02329903190830994 entered:0.02067971226363115 got:0.020269974369553457 going:0.01939853943545529 get:0.01928052950602388 converted:0.017541750571432296 thrown:0.015552156485941214 back:0.01528405716954248 :0.4388552699263478 +of:0.35445842136862155 in:0.14150073359543214 to:0.05505688541692818 that:0.05232192012421015 by:0.04539337021362601 In:0.03918198367755201 for:0.03838425961872168 and:0.03336553269127719 make:0.03151998884880129 with:0.02557361358980959 on:0.022775796289353188 from:0.01651516695669749 upon:0.01477844908325179 under:0.01354287855515775 but:0.01094247907249226 do:0.009963076667616921 is:0.009364087206486705 which:0.00838229282542297 all:0.00810911989891481 :0.06786994429962633 +went:0.06527228071368989 go:0.05619934446464802 came:0.040550395705713206 back:0.03555337887687652 it:0.035376220595961315 out:0.03490526632483226 put:0.03355619440406013 down:0.03042882513856963 come:0.028160683632563837 them:0.027165266356164442 enter:0.02685927818294859 up:0.02683395703545789 brought:0.02610450155923051 way:0.025650479473236742 taken:0.024297963337896748 get:0.02381342012574062 entered:0.02315017182132224 thrown:0.022312163284405207 going:0.021115908751936613 :0.3916943002147456 +of:0.28767355066866834 to:0.08775711267569858 in:0.08678131196995101 and:0.05160598694501188 on:0.04646139928102899 by:0.04519522654900943 for:0.044547789071328545 with:0.03396756772609607 that:0.033699232901107726 from:0.03075346596941143 at:0.027039283056790858 In:0.021061449543044047 as:0.017514234937992545 all:0.012543839382496166 upon:0.011844431150487573 is:0.00998972746569266 was:0.008814315973987914 into:0.008557199930727406 through:0.007781895704231326 :0.1254109790972375 +the:0.2782472374031439 and:0.05853086307875382 of:0.057808400149107285 a:0.0505051790196421 in:0.047737229779834744 that:0.029028474107152598 tho:0.018710024088825838 no:0.017339306339466322 any:0.01703662573257265 for:0.016715378203915124 or:0.014389838101205619 to:0.01254353636706294 The:0.011965494146430906 such:0.011478107165062217 their:0.010557144796299397 this:0.009886618703130198 by:0.008203119141950934 In:0.008031362143197362 an:0.0075425481936670265 :0.31274351333957906 +of:0.1896305563330056 with:0.15757094991284548 to:0.1313714624876495 in:0.12499356096440752 and:0.05715531236187537 for:0.056592462118276086 by:0.03251331199871602 In:0.025410130921843552 from:0.023059884085946156 that:0.022731225776385915 under:0.022300043268579456 all:0.01740280981870447 is:0.016707623050813098 upon:0.012261816444486437 have:0.01140332123329467 on:0.008811157012336982 make:0.008676277473710994 With:0.008649250867502787 but:0.008046437814344592 :0.0637124060552753 +the:0.12909756485474103 and:0.06892216936982418 of:0.0563628640455365 a:0.03664033632039138 to:0.018549983101060718 or:0.015351828322559588 in:0.015217345341665007 that:0.014887205673102668 :0.013434471769329073 for:0.011720404264640657 as:0.011352092697660134 The:0.009819005137096678 on:0.009765321843669602 good:0.00969794282183939 tho:0.00918359626867662 pro-:0.009150934457866017 State:0.008587010364670971 his:0.008493892786141172 at:0.008239757502103217 :0.5345262730574254 +the:0.2040416812856779 and:0.07272165883575045 of:0.063456261988587 The:0.049307250015006236 Mr.:0.03273250148810307 that:0.03263150247280744 a:0.02302989633539649 his:0.015475861128993702 tho:0.013126422180235554 in:0.013017123044027214 he:0.012324158503582516 I:0.012119739726899113 their:0.011463410777414161 to:0.010846942793540482 no:0.010818639665445282 .:0.00928372591332352 as:0.009174329751259664 which:0.00907277602248705 :0.008812892758519063 :0.3855432253129441 +the:0.18542279499605807 a:0.09899490322951421 in:0.09575682679129031 of:0.08173729330645435 and:0.0584095700199236 In:0.02876000165731507 to:0.02372347787572585 some:0.022612331312900382 by:0.02188574783736056 The:0.020779039405836974 an:0.019304594033649335 his:0.01811239995194092 with:0.017775806303586477 every:0.016033907654881257 this:0.013678872256614008 any:0.012925478960501025 at:0.011544992420343214 from:0.010990337031605724 most:0.010668507453570085 :0.22988311750092857 +and:0.13159001971649417 of:0.11167079703437775 to:0.047050951078484504 the:0.0409489245565705 for:0.03303833251902199 at:0.019551000609533447 :0.017497973405405372 by:0.014216665683149663 in:0.01099983005402424 from:0.010841383466874726 thence:0.009976736401802189 No.:0.008818757584687321 lot:0.008272443558607272 with:0.008062127852718745 .:0.006666353681989444 Mr.:0.0066221727609180455 or:0.006515263349818295 about:0.006167774316359843 that:0.005029957220886918 :0.49546253514827554 +of:0.17934776291324983 to:0.10280429934786818 in:0.10067190751808006 or:0.08392594452598201 at:0.04510349548575033 by:0.04489021469602811 as:0.044219987846738966 if:0.03657732894000067 that:0.03588875178325074 for:0.03249020029609664 than:0.029850821629712244 with:0.02962594296026279 from:0.02946370555451196 without:0.027027084638994146 on:0.02617424463710904 In:0.016852954443856726 and:0.01626338111093675 have:0.016021056502824364 If:0.015043048103150675 :0.08675786706559578 +the:0.5052656877594514 a:0.13528060836389783 and:0.04954263221744192 The:0.04695984419498887 to:0.03332312604525142 average:0.022814411133488182 tho:0.02190446489983234 great:0.011410889745765422 or:0.010968026135863899 tbe:0.00807698769660523 any:0.00765632924499014 no:0.00757193395463362 every:0.006774575636774712 real:0.006162306063834632 only:0.005786022764088089 total:0.005681279958575021 will:0.005657865337333439 full:0.004867653907504441 large:0.00455946536705353 :0.0987358895726259 +of:0.20447951122325803 in:0.1187446858436791 for:0.10894841900792995 to:0.09397290046187137 with:0.04784882039221957 and:0.045425271680099466 that:0.036008380858526215 by:0.035705771471039184 on:0.033194122126280035 at:0.03049162763769982 all:0.028801288231970427 from:0.028105694111121238 In:0.02805225153681681 is:0.018397410875663493 upon:0.01554090181757156 during:0.013593835473835457 into:0.012924432697888198 was:0.011670562960217314 as:0.011059197514477068 :0.07603491407783569 +of:0.3184190360443104 to:0.09837906929557073 that:0.09130553659096319 by:0.07716162857593323 and:0.07688457445143693 with:0.03906316830091578 for:0.025965737317318032 as:0.02542658772834525 all:0.023506616441147255 which:0.01968652879663868 among:0.01841207866951537 in:0.017513619642541476 when:0.01720235800928863 from:0.015449175925616863 on:0.014523860288414415 but:0.011312790402103057 if:0.010474920730546195 where:0.009647153854551638 upon:0.009387241003742929 :0.07927831793109999 +that:0.17901407410247386 and:0.10705189805729957 which:0.07516907146890672 as:0.07159772271454995 will:0.05487841130293968 when:0.04807230045711097 if:0.037464616349213095 to:0.03714021195086925 shall:0.03569783462812928 would:0.03469047120788682 but:0.029041911651652357 what:0.026204908194451437 where:0.02358265650948548 should:0.01966290793422476 may:0.01876293701863986 said:0.01795454300551336 t:0.014818633238416234 did:0.012521990358620144 whom:0.012105590970335813 :0.14356730887928132 +of:0.3326106158622796 in:0.11855289009785334 to:0.07205676705790506 by:0.05836585800473389 that:0.05642009354603867 with:0.0492111077830098 for:0.04269693559308711 and:0.0419231474516432 In:0.02329909541100943 from:0.022369941639813123 as:0.021087228312677144 on:0.0172356317673407 under:0.01498390505170487 upon:0.010776883718346 all:0.01076968385117836 at:0.009069489500290639 into:0.007798543184118058 which:0.007682277526480627 if:0.007416568618434263 :0.07467333602205611 +made:0.0999812034390529 and:0.06680208263369662 caused:0.02435411478715239 shown:0.02379785223577525 up:0.023253655008919294 ed:0.02312002180398423 out:0.022293807888227747 taken:0.021988971765594088 done:0.02128782706813444 given:0.020283609421760777 paid:0.017098570970207227 owned:0.01708227903067019 that:0.01698438626809451 or:0.016145946252097726 him:0.015808363688274 followed:0.015366441255538056 appointed:0.015126279845513936 held:0.013990473525433292 approved:0.013949758860964168 :0.5102843542509091 +not:0.3305296726529504 and:0.1334082716961265 as:0.06519229750483445 have:0.03726091889807396 has:0.03236090789320216 is:0.03224485889090693 are:0.02799312498269386 had:0.019750398574454323 never:0.019177835323240962 was:0.018091100777064106 be:0.018090498095021387 that:0.015443995976652528 which:0.011771311458957845 ever:0.010885084913580268 will:0.00972974900518737 to:0.008929911989476095 it:0.008573507681855006 been:0.008244072351739098 And:0.00807847884909366 :0.18324400248488906 +:0.04929790171887753 .:0.020830109934860536 and:0.018773067549741146 it.:0.01236071847241515 them.:0.009799381133707543 of:0.008743968903424314 him.:0.00823754802220418 boy.:0.008229683906998264 year.:0.006956619257674898 day.:0.006197349006093293 girl.:0.006196855292496724 Mr.:0.00600608093237895 time.:0.005685838358205692 country.:0.005214402614271773 Washington.:0.0047590076302819005 home.:0.004731677909078765 business.:0.0047028701619982035 city.:0.0045015824537793575 men.:0.004169433906139311 :0.8036059028353725 +the:0.39165776482188236 in:0.11064547215164146 from:0.10744558144938984 and:0.0613222983079192 of:0.061189828487849596 In:0.03637465704653934 tho:0.020021336765751768 to:0.017074886550978878 thence:0.016336987847603776 The:0.012402310315959453 for:0.010523391152371124 said:0.010128419261378882 tbe:0.0077593099643696395 :0.005946867047827357 a:0.0059313900856752975 or:0.0058919566644855485 with:0.00501007623479847 From:0.00465777979091669 at:0.004612686722499809 :0.1040669993301615 +the:0.33052924119094135 and:0.06817310611345498 an:0.0494479347341298 or:0.0362199417612815 this:0.0350787883232216 a:0.034608078754971884 The:0.029894978807542036 all:0.026501918055713336 other:0.024484493305827887 of:0.02208651183720495 his:0.0217599190954475 that:0.019958387457189152 tho:0.019131448260824146 these:0.016052905580964043 for:0.014431478121650668 some:0.014283990225931149 her:0.013778275069718572 such:0.013386360885987972 their:0.012656136859672623 :0.19653610555832485 +the:0.2583439052056761 a:0.18610612517500233 some:0.06789253827275198 this:0.06242545649191928 that:0.056875417725983625 short:0.05209522852160576 same:0.0477140214604524 first:0.03988754363344567 any:0.03251128758201543 in:0.02303380264235664 long:0.021435879666870487 no:0.018517696476722134 of:0.01779052204926867 one:0.014975730213670248 his:0.01287893982394027 and:0.01045012141837963 The:0.010303619209924286 tho:0.00964076172529599 last:0.009320182469544962 :0.0468012202351741 +the:0.15412792167387435 of:0.10789567809504626 and:0.05734095476259966 a:0.03667498568822702 Mr.:0.02653794373680003 to:0.02206954110056198 The:0.020435210766628655 in:0.01938072586739012 that:0.013490375310674842 his:0.012278088895466562 :0.012005717244805552 for:0.011755979533062982 their:0.010166334025212144 by:0.01001135477730392 or:0.009839580477185098 tho:0.009663483968845532 .:0.009647733202313052 Mrs.:0.007902627684581071 as:0.00788842986291276 :0.4398873333265084 +it:0.10042645326670457 and:0.07448793043621132 they:0.06745538804156191 which:0.05610372715754102 he:0.05330802339860615 It:0.04965253849879704 that:0.04316270821032778 you:0.04059136714561362 I:0.034792155959010064 who:0.026123558815079908 we:0.02442900487769299 as:0.013553445253339248 she:0.011719227724809902 He:0.011384828705757256 They:0.010300763918344088 this:0.008245251916723852 the:0.008165201012513676 1:0.0074978238808858086 there:0.007243600680898497 :0.3503570010995813 +the:0.13719350867666488 and:0.0802390087002319 of:0.05262863071935662 in:0.040598665900038744 to:0.02864674616871877 for:0.027714307852499304 that:0.027264234510365297 or:0.022252847987919575 be-:0.021388571591443972 In:0.01605785670858949 as:0.015639519903610108 which:0.014706396246887302 any:0.014623615797131041 re-:0.013191711555669271 be:0.01309650349474952 he:0.013009134984926788 their:0.012745332384913556 a:0.01139011960642838 was:0.011007382519291562 :0.4256059046905639 +was:0.10647530065892592 and:0.10472438654590431 is:0.09113715007989397 are:0.0720309210292027 be:0.05170987939090372 been:0.04389604096670067 were:0.03545689056464455 not:0.03475913264559747 or:0.02395512886625278 do:0.022872132466493198 for:0.015971585366382903 have:0.01492689043230198 has:0.013306507956202838 Is:0.013027631657638903 of:0.012858475710423957 had:0.01229628716978068 being:0.011666845511882707 person:0.010836955387903292 that:0.010404001253559038 :0.2966878563394045 +a:0.14920237492275024 and:0.11821085594710827 the:0.10216916191089981 in:0.091986210128147 of:0.06457767622572437 to:0.05110979369256695 with:0.0406996308760238 from:0.03444350662081941 for:0.03365580743636823 too:0.029788663184964065 is:0.028939217181896265 In:0.025703773931874674 their:0.02157912959508108 his:0.020522667135236716 are:0.018931261304591832 very:0.01874999785787053 as:0.018388337652266322 no:0.016496556951499132 special:0.015855902051734143 :0.09798947539257713 +that:0.21281066468738563 and:0.14534464639096256 which:0.07054744439880485 as:0.06333227751365207 but:0.05376074486591491 if:0.045792035245608806 If:0.030618107865804642 when:0.03059992578069204 what:0.024650163107683642 where:0.019802066488941526 because:0.01738020148753133 But:0.01689315318955825 whom:0.013208396933649046 while:0.011469286953099669 And:0.010883188035846064 As:0.007751108526159862 When:0.0073276908999565845 That:0.007088179697506605 though:0.006909049466984076 :0.20283166846425782 +the:0.26754229424391057 a:0.121031846428088 and:0.07919291959738063 of:0.07727625688189702 in:0.030048355078872692 his:0.027853194921253325 is:0.027829589410550006 are:0.021360541223571963 their:0.020054672595239728 tho:0.019409747996637104 was:0.019391958708497043 to:0.018921068908405822 its:0.01840358086138637 be:0.018288026657370633 for:0.018216563117571177 The:0.018035733026659503 more:0.014970381759877603 very:0.014285253678177342 with:0.014026347902745243 :0.15286166700190826 +the:0.11919516938815296 of:0.07230453158552728 and:0.05781056740443249 a:0.043018564803886335 to:0.031305092790907506 in:0.020848713353460488 at:0.014270110001066288 .:0.012526810245749479 :0.012413283442322082 for:0.011719122709941797 by:0.010808400946589808 or:0.010404172990115616 The:0.01003576004804544 with:0.009811868184449042 tho:0.009295902015355835 was:0.008924239095331684 that:0.008672304223433876 is:0.0085591147338948 be:0.008335143826716943 :0.5187411282106204 +that:0.27435050474302997 when:0.0936504634999025 and:0.07514715140531862 which:0.0637390162622278 as:0.05498557831961495 if:0.0396753277843658 where:0.03847508245584794 but:0.0374686916236321 said:0.03139388692667523 until:0.01900278818390128 while:0.017895471398021518 because:0.017321708662493104 When:0.015948059672308543 time:0.015167154002251356 what:0.013119112870121706 before:0.012734910158522643 If:0.012620547493008344 whom:0.011774683928828633 though:0.010411169831012573 :0.14411869077891537 +and:0.08791715288031852 laid:0.04982970740560851 came:0.045011549388182304 break:0.04233995074946563 went:0.03993868170598312 cut:0.03985450763627558 lay:0.039209100094247995 it:0.03667329005228823 way:0.035973609212655334 put:0.03262199742807428 come:0.031785308117811044 go:0.03117640807388659 him:0.02761113815281423 them:0.027402093357517008 ran:0.020363598544004102 sat:0.020306742717959913 run:0.019838767217043588 coming:0.019643466796127156 cutting:0.019476794597067717 :0.33202613587266916 +from:0.16140709442250945 and:0.11236424184747404 or:0.07650130181393822 of:0.06641511062827121 writ-:0.05867443489854612 than:0.054021008616695225 to:0.04601053255695972 in:0.040746602663009765 for:0.03886491676006815 at:0.03228700463890905 are:0.025027982879020236 is:0.021152794639182286 was:0.020688063641859197 about:0.019466026957576495 as:0.018571034984795513 least:0.018299899379269496 the:0.01758212033676674 only:0.017577844254722804 all:0.01534112086036274 :0.13800086322006355 +it:0.1432559018871836 he:0.1286390292402265 It:0.12841812492596144 I:0.07419050939271307 there:0.04938617973803716 He:0.045081758608067436 and:0.033952574130207525 she:0.03358554252629715 which:0.03324991740427255 who:0.024471633063763265 that:0.02436355036947876 There:0.0217910372166226 this:0.013765403459391496 She:0.012638622749569388 This:0.011133268964823485 ho:0.01096849263777988 lie:0.008862998803520506 but:0.00823064244529776 1:0.00737740561542708 :0.18563740682135935 +No.:0.0643559996867421 and:0.05217728663602116 the:0.04457893615527467 of:0.04208592666726906 at:0.029559812124280428 .:0.026941588593129052 a:0.02665337501305524 said:0.02218285368793813 to:0.020968212253776656 :0.012113795208807012 W.:0.010346049690272937 1:0.008885076881085235 or:0.00887777499038276 feet:0.008858771980041424 in:0.00826327866723483 E.:0.007891826548905304 on:0.007224495184656087 C.:0.006686993849698836 street:0.006472148815453404 :0.5838757973659757 +of:0.37150275106287917 to:0.10612534356590324 by:0.08743151412099681 in:0.07468674594242738 that:0.054407244927901936 and:0.0374313818167379 for:0.03044705889486757 with:0.026125062885011253 from:0.023978174168974364 on:0.0158580859185736 under:0.013848167005365546 at:0.013246596602777886 In:0.012351391545110042 as:0.012119477612065797 which:0.011712262146499753 upon:0.010150737124196932 against:0.007901308719929775 when:0.007834675619561034 before:0.006478282409217805 :0.07536373791100222 +and:0.1430838526130033 but:0.07397508940527066 that:0.06792518220673464 as:0.035547499535048196 when:0.03055898108361946 which:0.023578746817907063 if:0.021317864868361416 But:0.01984342952841693 :0.0197547856167099 do:0.019306154580479497 because:0.017508645764942182 what:0.015344546090098186 it.:0.013764880971472609 so:0.013287995254808402 did:0.012342988522235393 If:0.01157914646256039 I:0.011439488246514048 And:0.011168275940303653 me.:0.009618672013274009 :0.42805377447824006 +the:0.309158167242216 a:0.1857813774652359 his:0.09023525777838257 to:0.06188230676324427 their:0.02874161558842695 and:0.027617319762655027 her:0.025906524473747375 this:0.0259009297616714 its:0.02376057551449645 The:0.02365091517757643 my:0.021859338614661158 tho:0.019121488272633345 of:0.016352858307432553 every:0.013230627115635352 our:0.01252211118624151 for:0.011141773324997923 in:0.01110527585135512 good:0.010533488316728647 your:0.010461334193223244 :0.07003671528943875 +the:0.41169815582746216 a:0.12071343390859479 and:0.04105251613004156 his:0.03863131952647953 The:0.03398946832742933 our:0.033882652191077056 their:0.03220757423182692 of:0.030475357571519646 any:0.028976079407373435 or:0.026767872593319572 tho:0.02465627621546154 that:0.021764401181369065 no:0.02164396466565 to:0.02020442554092981 its:0.013677535253621106 this:0.013181606969076689 in:0.012513973067327887 tbe:0.011602959656485957 your:0.010108660076120723 :0.051251767658833214 +the:0.2990784813603869 a:0.16608976252270607 of:0.06967937519433938 and:0.06382579617859165 in:0.03994656300877505 their:0.025921472098615773 is:0.02575509805382034 its:0.023804769006028615 The:0.022967249653442857 his:0.0194268714273398 by:0.019343695387452137 to:0.019144047082823124 was:0.017291123289506695 or:0.01463853548294402 this:0.013569990794507346 tho:0.013126212273906472 no:0.012565095243083801 our:0.012156409960544068 that:0.011990716831371932 :0.10867873514981392 +and:0.09766712870020208 the:0.09101050014811177 of:0.08407468370342032 to:0.07343181105632508 in:0.04056376806552309 be:0.03134097212339794 was:0.02149292731749991 a:0.021002885694633384 on:0.02008726974770159 are:0.019706051232549537 his:0.01932446830998088 is:0.019290505884163082 or:0.018826523709207302 for:0.018807071952177765 their:0.017628721711971863 :0.01466597888380649 re-:0.014625878524535533 from:0.014192750950060187 that:0.013696860674509606 :0.34756324161022256 +of:0.0796313459420316 the:0.06466269247318097 to:0.052020857124821664 at:0.04655002639950359 and:0.03420561631526094 in:0.021399047875951874 by:0.01855641414512127 was:0.018219017198391526 on:0.01729049376886333 a:0.01698531040377218 :0.013170325074339677 is:0.01147730397305111 with:0.010627959674978303 from:0.010439968958863921 for:0.010067080760369673 be:0.010033085601673715 were:0.009677568760533424 are:0.00802823308632415 that:0.007493677070842573 :0.5384639753921245 +and:0.15495484446703672 fact:0.07568385272662849 is:0.06673420030105952 so:0.04057797068360061 was:0.03098367574570315 believe:0.028449622487386854 of:0.027724701406912047 say:0.025303764761600997 said:0.022681675874192658 but:0.022636668198253353 know:0.02139413861570147 found:0.020877041227341082 show:0.01809838027232834 to:0.01420717444900492 stated:0.014194430320712643 Is:0.013801513336734206 think:0.012903881671906463 says:0.012418977704772877 find:0.01240789503320611 :0.3629655907159175 +of:0.09129790931378902 the:0.07369883040827747 and:0.047842263382354346 in:0.04189055351593407 to:0.04045875475680249 a:0.03542341257202578 be:0.02020462051672066 for:0.01979292654746225 was:0.01760256398103379 at:0.017380150555488715 is:0.014984483003968216 with:0.014047653760730413 by:0.01374644383819499 :0.012670486581795598 In:0.01200961464556976 or:0.011563835749786333 from:0.011391516893522809 are:0.011273104484969465 that:0.010755276030689069 :0.4809655994608848 +be:0.23760278658882744 and:0.14151366603101073 was:0.048095933690903404 been:0.04117908837319716 he:0.03857048339102995 have:0.036234666001921635 are:0.030161401250304715 had:0.028291128026745594 is:0.02742586360373309 were:0.023753321781829182 has:0.021384112161691303 who:0.018030793902711947 bo:0.013880149321081546 I:0.013770206455079013 not:0.01136397737687238 or:0.010883558416475593 they:0.010833353245799366 being:0.009131258095428495 which:0.008732802621448542 :0.22816144966390892 +the:0.11919516938815296 of:0.07230453158552728 and:0.05781056740443249 a:0.043018564803886335 to:0.031305092790907506 in:0.020848713353460488 at:0.014270110001066288 .:0.012526810245749479 :0.012413283442322082 for:0.011719122709941797 by:0.010808400946589808 or:0.010404172990115616 The:0.01003576004804544 with:0.009811868184449042 tho:0.009295902015355835 was:0.008924239095331684 that:0.008672304223433876 is:0.0085591147338948 be:0.008335143826716943 :0.5187411282106204 +:0.10598009711799794 it.:0.018444734370891863 of:0.012970452027167241 .:0.011527052812467778 them.:0.01149315556630281 in:0.009933085029158443 time.:0.009419180016556672 day.:0.009380637581331563 country.:0.007832473830187332 year.:0.007420390813332208 him.:0.006598910233639018 tion.:0.005112314090564898 city.:0.005084075199827918 to-wit::0.005022189783651118 years.:0.004844161909059034 work.:0.004766664230852366 States.:0.004585538094486774 county.:0.004310451428237012 people.:0.004218377180058476 :0.7500560586842295 +get:0.053610422214488855 was:0.05051841536969282 and:0.04903958730444051 him:0.038801969319659166 it:0.037410018187455464 them:0.035569152369498175 are:0.03479460583298655 go:0.03206022460430166 come:0.03018624754922308 came:0.02989007710531499 issued:0.028538548420871033 taken:0.028387580006254076 went:0.026471193886938953 got:0.02591677196361888 growing:0.02512307536827857 be:0.024827416016109424 is:0.024256616056951556 served:0.023420563816567756 paid:0.022272217198545566 :0.3779052974088029 +in:0.10973758461139678 to:0.10926969717092616 for:0.09072952744322182 of:0.08757496022783007 and:0.05063908643959282 that:0.0401467724010725 with:0.03553774113525285 as:0.029787781826229598 at:0.028511608709178172 from:0.022395690165355867 In:0.022262133779233553 on:0.020374451898402837 upon:0.015595071458722243 by:0.014117439463762923 after:0.01343856572153244 against:0.011543052943311406 do:0.010939862198381717 made:0.008824931437877392 all:0.00855648272103293 :0.269017558247686 +and:0.08995317707915026 to:0.06844710404109794 of:0.04605142056172993 the:0.04074574508561307 which:0.02479116931334353 that:0.023764822140213245 re-:0.020841117231308055 in:0.020803825395358622 for:0.020278423301550053 :0.018417753428486977 not:0.016860793136637672 con-:0.016444405871234195 is:0.014386481772210856 or:0.014080680914153714 be-:0.01352268143271276 I:0.01317002660943805 was:0.011429878269381662 dis-:0.011196807025842847 he:0.01113106290024311 :0.5026826244902934 +I:0.21546100777244143 and:0.12866823246492615 he:0.09576311525219282 He:0.06488478496441329 she:0.044950584925511974 had:0.04114227584501946 have:0.036692435993933195 was:0.02617284850533011 1:0.02557909987477681 She:0.02473532092289883 who:0.017944140382212172 be:0.016031388567612093 they:0.014618329043822952 we:0.013572311982781332 has:0.01265516051021307 They:0.012430375239689697 then:0.011293155126779123 It:0.009951978888708512 lie:0.009907194643415536 :0.17654625909332144 +the:0.24559547273241922 and:0.08506988261010798 of:0.06172011753236627 a:0.05724664561008106 to:0.02252154657021457 his:0.020649137496095954 their:0.017877093312402104 tho:0.016376729441305228 with:0.016230349514790274 The:0.015074595338412803 .:0.014607858046931477 for:0.01302739977197944 Mr.:0.012201668213097754 or:0.01181875237336405 by:0.011766272838977585 as:0.010960837056808108 in:0.010388064529555662 her:0.009767359177053353 be:0.009507242091994418 :0.33659297574204267 +and:0.04491804315792162 covered:0.04018777062174743 filled:0.03439831602262882 together:0.027274277474498326 charged:0.021185110165574027 it:0.018970003064941 up:0.017480630635068384 him:0.016212955803671315 them:0.014293565819421733 compared:0.013525193832595763 connection:0.011614636799553067 parallel:0.011283394857871554 do:0.011130056469426521 loaded:0.010955317894446719 trimmed:0.010816708291869467 thence:0.01055173438898371 lined:0.010343364261696459 but:0.009666074941737286 troubled:0.009518829589372486 :0.6546740159069743 +the:0.11919516938815296 of:0.07230453158552728 and:0.05781056740443249 a:0.043018564803886335 to:0.031305092790907506 in:0.020848713353460488 at:0.014270110001066288 .:0.012526810245749479 :0.012413283442322082 for:0.011719122709941797 by:0.010808400946589808 or:0.010404172990115616 The:0.01003576004804544 with:0.009811868184449042 tho:0.009295902015355835 was:0.008924239095331684 that:0.008672304223433876 is:0.0085591147338948 be:0.008335143826716943 :0.5187411282106204 +the:0.3093681642517472 a:0.1301506531142918 to:0.1044018462831928 and:0.07966653229154962 of:0.062484931306113906 The:0.03930789900458884 in:0.03465035767539288 his:0.022126442016999107 will:0.021265969388558507 he:0.017223000366154432 tho:0.016888218874053253 their:0.013835712035613882 be:0.01304285089579272 that:0.013015648802700905 would:0.012869507488786252 which:0.012134555232722964 this:0.012074518630793004 I:0.01100857382595084 our:0.010788346370269198 :0.06269627214472787 +of:0.2392343106336314 in:0.10428928529569782 to:0.0807425084574613 for:0.06003667897230786 with:0.05054384427035076 any:0.0496000647389523 that:0.04420337976208949 and:0.040707739996899875 by:0.03401288530199266 on:0.021032551724666528 all:0.020556027011691028 at:0.020339587192555006 In:0.02028145078005806 upon:0.0174368476021286 under:0.01666238782657208 no:0.01632749374328473 or:0.014388635833445518 from:0.012909826987441234 as:0.011750536255517459 :0.12394395761325627 +it:0.15707134481493562 It:0.11494976274988644 which:0.07721860930403454 that:0.05231141491795913 and:0.04956624871770933 there:0.04051289959178744 he:0.03303185466002497 There:0.032605059365599015 who:0.02156735613716234 what:0.020829553010322382 as:0.0185990636564602 this:0.017960960929644786 This:0.01570987785879259 He:0.013921553165561595 work:0.009085382676425348 land:0.008757318596149455 mortgage:0.007004784383243769 she:0.006678834836408817 one:0.006135464394021502 :0.29548265623387077 +the:0.662115343505466 The:0.06881511234164486 feet:0.0358039253624384 and:0.03171433674358287 tho:0.026698412636370867 as:0.01885969761306788 bounded:0.015646841377611985 said:0.013440520288818324 tbe:0.01206444017054487 miles:0.008257499762514884 a:0.006893818449391908 very:0.005507911796762536 of:0.005326853827671365 inches:0.005250401209044124 land:0.004385925055376717 and,:0.004168149973910648 far:0.004028961871653204 just:0.0038990329587118067 that:0.00383154912232751 :0.06229126593308933 +he:0.14310369022750694 it:0.11130990705288764 they:0.07892028322034934 I:0.06922591899986383 that:0.060100073084607714 It:0.05946011763411077 we:0.036316425751995396 which:0.036236228689137596 and:0.03553735421997305 she:0.03359563137184539 you:0.028952414365320575 who:0.02587827559873309 there:0.024204570205481602 He:0.01604217147798961 one:0.012579625274040624 what:0.01157528461570685 This:0.009914422079096447 ho:0.008797666808088172 1:0.008575266563447025 :0.1886746727598184 +as:0.06931392982974462 according:0.052071562389565784 up:0.0511867300210483 and:0.040371568633051955 went:0.03351644485287816 back:0.032358406609281 regard:0.03073407747799069 feet:0.02852138506231652 down:0.026379903432040268 owing:0.02466642634685871 due:0.023695193974505355 go:0.022910973192184297 reference:0.020802802907016128 came:0.019883741951819873 sent:0.019874244915639484 attention:0.019565955494145405 come:0.01885185084678811 given:0.018792390567602263 it:0.017366961307524745 :0.4281354501879983 +be:0.13703207881519375 he:0.11764390378879303 I:0.11615173882294424 was:0.06614744984075913 are:0.04409187704243396 is:0.03816900793301317 and:0.03608244362667572 were:0.03538306283640473 have:0.034125452728067725 they:0.032500317806180366 she:0.032221604434260656 been:0.03013640822913646 had:0.028196454254300427 ever:0.022090240957163467 has:0.01753591329158399 He:0.015817803362616283 we:0.012848602971006649 not:0.012199488894557993 who:0.011863165423962133 :0.15876298494094612 +in:0.5375029404190795 In:0.17640747711042426 of:0.10340377154311364 to:0.04028683658083374 from:0.018191127247044463 for:0.01659628286105904 by:0.012001257655670828 that:0.01131467677845259 iu:0.010911698123839126 and:0.008993765136469788 on:0.008572737622901401 with:0.007231354830359734 at:0.006662344059313815 upon:0.006369165696550229 into:0.00504837139202543 but:0.0028913831530540594 through:0.0028402993837707132 all:0.002350809081128651 is:0.0021243785111859184 :0.01929932281372298 +is:0.2595894597062526 and:0.13599648000670092 was:0.11971697051664695 are:0.10815058795191915 be:0.03476658311969048 were:0.031724530924243315 Is:0.030019049632010297 not:0.022082660734770748 I:0.01900032045849992 will:0.018537421223620256 been:0.018383697444154995 have:0.015941233025260602 would:0.013213128204247934 he:0.011514055650569854 has:0.011389382852300301 had:0.010474218578421764 they:0.009508522632500493 it:0.008546668594499967 being:0.0076644170927338 :0.11278061165095563 +:0.049794163083591435 and:0.013658936744231829 it.:0.012677890989487203 them.:0.008887844643997576 him.:0.00869865711719939 ?:0.004951021428482621 :0.004595868506430623 country.:0.004435481984031917 years.:0.004068866450676063 her.:0.0039055514597384185 time.:0.003796536046182882 I:0.0037540550358114927 year.:0.0036204129313694364 men.:0.0035474717442331594 again.:0.0035069585407635977 day.:0.0033387730288275057 life.:0.003254120270778279 .:0.003203806978541626 system.:0.003126819621946857 :0.8521767633936781 +to:0.45540541121210454 I:0.07047036214003502 not:0.06500444122090245 and:0.06179707672980989 can:0.05142269702199115 will:0.048568489891380066 we:0.021341155294138214 would:0.018905666067134973 could:0.018302407564861355 the:0.0182121175178792 you:0.01734787096030869 You:0.015865068483015304 he:0.014394485019258602 they:0.013313758144022471 must:0.01250528848126317 in:0.01222426011876801 should:0.008564490422780175 that:0.008100849299285418 may:0.007881812806942395 :0.059372291604118915 +the:0.17346163150523283 his:0.17076784520749053 their:0.16582258347333523 a:0.07484501980967942 our:0.05056181660870696 my:0.044979381294085574 its:0.04354531429815546 her:0.03597105334389103 of:0.020135463505874474 your:0.0199704886601642 and:0.01734201211585171 good:0.01685517669299283 tho:0.015267123403658552 all:0.012363420087778068 very:0.011974657891555437 bis:0.011138759794765755 The:0.010766430984697196 in:0.010729924905575153 little:0.010522083581352414 :0.08197981283515718 +of:0.2274447915713782 for:0.1053609756794535 to:0.09719735659052306 in:0.08016751286766907 with:0.07129216007769444 on:0.045357089268204996 about:0.037157730386173565 upon:0.03447130749856449 by:0.030560999018596675 from:0.022810558403733534 against:0.01796784742470213 over:0.01764175279880833 do:0.01611581054421429 and:0.015786298327945928 In:0.010639671517515457 at:0.010456260834080782 get:0.009736621107303441 into:0.009597197090382927 make:0.008635041505197134 :0.13060301748785808 +of:0.26647988831123415 the:0.16458296872516062 with:0.07516442916312402 in:0.06672874193754112 to:0.0442128851962286 for:0.04245198975772703 a:0.04027324016846212 and:0.033382817992298384 by:0.019201359532632533 his:0.018521769238173617 from:0.013543609314509316 or:0.0134313763957286 both:0.011704602491308037 In:0.010376889703323332 their:0.009230156056578521 between:0.009212045452932669 tho:0.008491445869967215 The:0.006801208935359152 upon:0.006316753976647077 :0.13889182178106388 +one:0.015552536992080472 more:0.014252271697624306 on:0.010631301787611593 day:0.010222750824534239 two:0.010216157614982159 person:0.007504694644314241 in:0.007364820929323563 man:0.007179188731169107 law:0.006205362369136604 action:0.006166303509128973 and:0.005659786788634644 city:0.005177234665142273 three:0.005130416479837977 State:0.0047265097104810415 to:0.004696031397422901 ten:0.004594585978494318 of:0.004463781172886088 town:0.004231879326219736 year:0.0040256313925199315 :0.8609987539884558 +and:0.07895257911471103 was:0.03596317658514438 out:0.024016824392823457 that:0.023672598027062328 placed:0.022844208461019616 work:0.021707439938587154 made:0.020781005318872947 is:0.020224993929329655 up:0.019794182040466738 put:0.018288921183371155 down:0.0171740551508179 interest:0.01663630075189571 point:0.01659978677065351 him:0.016175999448187352 held:0.015562908663841706 Dakota,:0.014616466073415059 place:0.01424333231426501 Minnesota,:0.014067166610364513 it:0.013665465625771424 :0.5740125895993994 +in:0.2697205293924696 the:0.17531549355102935 of:0.09708692753983218 and:0.08895337598264098 In:0.04741807935621763 by:0.03642165624185695 with:0.023109025613348735 a:0.01993605843323747 for:0.0193356501429137 or:0.015686925763213476 all:0.013170421337667467 from:0.01240965835328466 that:0.011360483530374159 tho:0.010391776899227228 The:0.009520977427392953 at:0.007703256422038869 great:0.007302646747514711 to:0.007239013779255134 on:0.006336551516124469 :0.12058149197036026 +of:0.17778979758651964 the:0.12897437876599438 in:0.06641748747824858 to:0.05711223746505672 at:0.051057905095146475 and:0.043178190715457906 a:0.027095091450934906 by:0.023438251322058724 from:0.02226259477906013 for:0.021886697977897912 with:0.016693617893604806 that:0.01593247294901716 In:0.01420610472543251 :0.011703386799791401 con-:0.011267230419820591 on:0.00973132541083517 tho:0.008466659116817214 The:0.00762442183064235 or:0.0072777138004640396 :0.2768844344171994 +is:0.1300949053123692 ought:0.06235942008217411 are:0.06072445398663133 seems:0.05697318922100556 was:0.04954471475520722 not:0.048536362204045544 said:0.03881623685409472 seemed:0.03220746110521765 as:0.030923473227594384 it:0.030881869856406088 claimed:0.028226689520969073 have:0.027725540143517465 and:0.027557757709861613 likely:0.02587900806524851 seem:0.02574969309575762 supposed:0.023317446089120043 had:0.02145961764731352 Is:0.017651730366473797 proved:0.01677680343414685 :0.24359362732284573 +the:0.15240786911200943 too:0.08309071911247905 a:0.0790849004403183 his:0.056551149782851896 any:0.04532189069846453 their:0.038442670692478996 of:0.03591906866059386 be:0.0348562413742977 and:0.03263794091476543 no:0.02656628988900812 this:0.025461390549016878 to:0.025030009428628347 more:0.021687847420120185 best:0.021234330220130333 is:0.02108345699212211 in:0.02007913662708868 very:0.01942973855335367 so:0.018373251065671708 will:0.017787840320420426 :0.2239542581461804 +a:0.175096024128086 the:0.15748490006761356 of:0.0804866784966756 and:0.04869593051518669 The:0.028144574491939287 Mr.:0.022972370038539247 by:0.02149790790957318 an:0.018970054051570037 to:0.017366115781051822 .:0.016040249209840447 A:0.01562777845991648 that:0.014705131747701616 in:0.01394448325858514 at:0.011881477359757073 his:0.011837894173673324 with:0.010411142481490498 tho:0.009736295210976081 Mrs.:0.009516815212400536 for:0.00950265957812421 :0.3050815178272992 +it:0.20661626833118804 It:0.13133310388077965 which:0.05346195225056892 he:0.04322413433168328 and:0.0399221355018402 that:0.03638459118631527 there:0.02656324547693805 who:0.022588363007738477 This:0.01601752777676921 He:0.015090910728543903 what:0.013686208311658789 she:0.01181234484166701 this:0.011752239301455133 There:0.009749183368011116 man:0.007759333367156636 as:0.007068481254995637 work:0.006691860301109499 country:0.006039779831696346 but:0.005362639996269743 :0.32787569695361507 +those:0.31541891287146245 men:0.10445905888300781 Those:0.05022671902299742 people:0.04367834415872643 man:0.0409459815977517 one:0.03848000579392012 and:0.03628901802094864 women:0.025294031693816513 persons:0.022391391457767584 all:0.017450797401587583 others:0.012524052276380688 person:0.010730671798280467 friends:0.009538838108864266 you:0.009376839408211247 many:0.008865219802328506 woman:0.008845401235280308 thoso:0.007437205330957525 farmers:0.005943289882436989 gentlemen:0.005379243042761474 :0.22572497821251225 +they:0.13005087996211234 who:0.09142564784213703 which:0.06888428408022079 we:0.05948935776770681 there:0.05327461293474294 you:0.04354502266331198 and:0.04141274804020077 that:0.03895714963082745 They:0.037696964890455265 There:0.029212387448715654 We:0.02750871980571915 people:0.022720817161719597 men:0.021348952258651688 these:0.015669557405261426 These:0.013538523113534347 as:0.013079516940121196 them:0.011195761636954444 but:0.010025469712294309 or:0.00952156495224327 :0.26044206175306955 +the:0.08664797583984352 and:0.08135773992416057 of:0.0736425790939388 in:0.06842618161896843 to:0.051863324401011004 for:0.04052683030754949 or:0.028524100046621467 that:0.02482249624053909 which:0.02015875342225075 is:0.017645618688982255 as:0.017531891503410838 in-:0.016631774465547842 In:0.016608634585933597 are:0.01553715917564395 be:0.015399412458860362 not:0.014562868458295923 :0.014465532487690965 a:0.01362379928974895 re-:0.013013017591648532 :0.36801031039935367 +is:0.26273796269597727 are:0.1871378615485185 and:0.07784135893667915 Is:0.05081156255577664 was:0.04397605936148319 it:0.0310831259980193 not:0.026015773846437655 but:0.025226062375846865 am:0.022835468290937532 were:0.01648086018734018 It:0.012965292013146331 I:0.011118722115059343 he:0.011104131862764885 And:0.01015140151541312 be:0.010141422758027667 as:0.009464270020433454 just:0.00932063667554495 we:0.009109470903889147 la:0.009108536977714 :0.16237001936099082 +of:0.13588309806074803 as:0.08844778649558604 to:0.08241804510640688 in:0.08046994114242534 and:0.05706740577260377 with:0.05383088767804839 that:0.049714231393878025 by:0.03918938591954668 such:0.0371186219367322 for:0.03680610613059475 on:0.02275898947390792 is:0.020115672849282423 at:0.019535193880928985 from:0.01602812959415858 In:0.016007961616493007 or:0.012803622743217495 into:0.011477583605861616 made:0.01108413542839966 was:0.010276675010661152 :0.19796652616051905 +of:0.15783456116894018 and:0.1437533206697998 but:0.06459474641798062 know:0.049985600374560596 to:0.047828656489735666 But:0.042750438898479265 for:0.03790565818578617 And:0.03781395833661848 that:0.0339803946147815 in:0.030765215440761287 or:0.024480762138072956 with:0.02369894344044925 is:0.021317428674913895 from:0.01900971210377719 see:0.01856244708642739 by:0.018162203865541772 just:0.01758240888383829 as:0.01665739268962482 matter:0.013347275277203407 :0.1789688752427075 +the:0.21164811030156158 and:0.07620154952515393 a:0.06813736796353087 of:0.056217491114575725 in:0.045063978411518546 to:0.021563891035873764 an:0.021376380977353945 his:0.019836205979831985 was:0.019542898791983558 be:0.015419301791909585 is:0.0137738484856969 that:0.013610345112516289 The:0.013139119441573983 tho:0.012019723836672741 for:0.011703210656116398 on:0.010361491158958574 their:0.00971357314809375 I:0.009471577233246705 In:0.009385238079963562 :0.34081469695386757 +went:0.06527228071368989 go:0.05619934446464802 came:0.040550395705713206 back:0.03555337887687652 it:0.035376220595961315 out:0.03490526632483226 put:0.03355619440406013 down:0.03042882513856963 come:0.028160683632563837 them:0.027165266356164442 enter:0.02685927818294859 up:0.02683395703545789 brought:0.02610450155923051 way:0.025650479473236742 taken:0.024297963337896748 get:0.02381342012574062 entered:0.02315017182132224 thrown:0.022312163284405207 going:0.021115908751936613 :0.3916943002147456 +nothing:0.03841961343817723 ;:0.03517690637957176 it,:0.017010438389200685 anything:0.015095643549993223 them,:0.01300446799426419 time,:0.01292460993822502 and:0.012296002229946444 him,:0.011677481314526022 is:0.009766256588669567 country,:0.006477628947086773 ,:0.0062819592260165156 had:0.006212051026980939 one,:0.005636965675570064 have:0.0055465592794843805 so,:0.005539906886764234 years,:0.00552684846359799 one:0.0054697437669636965 all,:0.005414995100612756 but:0.005346492939369527 :0.776175428864979 +and:0.12591634577775937 was:0.07208003234612938 is:0.056441270581911146 be:0.05241615656494871 are:0.029860490241395393 it:0.018379579741770728 were:0.017426745847578688 but:0.01742178574386058 not:0.017378578029998575 them:0.017020714328618923 made:0.015453695084018403 sold:0.014191373725118932 him:0.014018824370782336 held:0.013094478930414613 just:0.013006083521315544 as:0.012681216351655167 do:0.012200034862911237 been:0.010370802746502919 that:0.010179574846063884 :0.4594622163572455 +the:0.1971648576109792 a:0.1085319926191553 and:0.04879849054175366 an:0.04874135672325815 of:0.0351270656010284 that:0.023288328768385807 in:0.022402190531251906 to:0.021733276609449806 The:0.019066129931146585 in-:0.016989079859072845 any:0.014811074739028481 for:0.01310330550385911 :0.0120541417108923 which:0.01104900629867332 tho:0.0103578040646324 as:0.009629461021678411 such:0.008634703971416033 one:0.006768457357152569 most:0.0061935185669430666 :0.36455575797024264 +of:0.2743918049523835 in:0.1327752736581466 for:0.10949316846403154 to:0.06961856416514021 that:0.05219891744321309 at:0.04579712641536946 In:0.039871705152285206 and:0.03774511343846661 all:0.020672320805364696 about:0.017804164534033773 from:0.014526674574082295 during:0.013751741500176776 with:0.01293316462289759 than:0.012231799361512743 but:0.01198878886377239 For:0.010973102282481119 over:0.010565714736519884 within:0.009066283824007267 by:0.008331567359265418 :0.09426300384684982 +of:0.34693646449614796 and:0.07882773959686096 to:0.07696187317179226 that:0.07631656131645563 for:0.05881640869892663 in:0.042358569879501796 by:0.041465971798068546 with:0.026425985845161495 all:0.02503478964878128 from:0.02214503264197044 at:0.01583626330165093 as:0.015724731718431886 which:0.015428231608163846 but:0.01446100018858772 on:0.011331526269305735 when:0.011023583479572349 In:0.010282433688463969 among:0.009508287279402275 upon:0.009414171711821179 :0.09070037366093313 +of:0.20419504169137392 in:0.10608439300783115 and:0.08056663773398151 to:0.07965494679448278 by:0.06393967309385559 with:0.056285266029284325 at:0.05449640847284568 from:0.05417457731857519 that:0.04071904352762231 for:0.03764228736249812 on:0.03534187887531658 In:0.023097041822370767 upon:0.012092883379197145 up:0.01033679565374091 all:0.009818849523444594 under:0.008397729018723028 through:0.008359661782473302 was:0.007740231533254908 into:0.007525741050166925 :0.09853091232896127 +of:0.3589972303167287 in:0.10482413124932057 that:0.07009978278365787 to:0.06144912716077402 on:0.0511355621840494 from:0.03910281835609019 by:0.03741041933933337 In:0.03645654470783202 and:0.0344795776541217 for:0.029695027053965012 with:0.022088477040664464 at:0.018010391031772956 under:0.013997642831961529 upon:0.013645243463085611 but:0.011999356909010356 as:0.00963032920307018 make:0.009056031086242883 If:0.0089121818564398 is:0.007832478955098901 :0.06017764681678046 +of:0.27130984465590496 the:0.21958115623599728 and:0.09852863361784248 in:0.05895596309465637 by:0.027128071091292717 a:0.022027083202625194 from:0.02026730783039724 with:0.01700587081450441 &:0.014934059965111973 that:0.010799280199339631 said:0.010492018638786777 In:0.010415605254430207 tho:0.00883918777539381 The:0.008467703714585476 Mr.:0.00813683524609728 for:0.007783045081867636 to:0.007670466536448443 at:0.0075862286933617625 between:0.007136515091082755 :0.16193512326027362 +the:0.19749125756169547 Mr.:0.07112699624208033 of:0.06603367254516487 The:0.05768776091110846 and:0.05327374818694666 that:0.0420321405581567 a:0.02582588575453538 his:0.0169326573605278 Mrs.:0.014795070048324819 tho:0.014769024234222154 which:0.011478554728659614 he:0.01110833274239838 as:0.010988112958762878 I:0.010409931249854676 in:0.010294293477152827 :0.008879223773482728 to:0.008465710829358392 for:0.008281932125153052 if:0.008197991279302505 :0.3509277034331123 +an:0.3444043062168164 of:0.14327775547296157 in:0.07343802941794311 the:0.05451677031581307 is:0.049804298334585176 and:0.04338667198649379 most:0.039700997404687535 with:0.02854230320080868 are:0.025712830099678875 a:0.020638152389354222 An:0.018336862984923798 very:0.01793068644297388 to:0.015664000416944154 was:0.0150551601533911 In:0.013959865749952245 its:0.012681615310934029 on:0.010802836529729753 by:0.0104796001353804 be:0.010363105610971163 :0.05030415182565704 +one:0.08232551320690155 out:0.06710302136416452 part:0.052270871462427405 some:0.04399134980407344 that:0.02498449693279944 all:0.023773443112673657 much:0.021272100615222916 and:0.018471367653579398 time:0.017965855561114564 side:0.01671089687346894 many:0.015474363462697106 portion:0.01539269278194785 account:0.015275367551419313 end:0.015136196180563586 any:0.014871747856730708 rest:0.013786464320933993 use:0.01312287685459223 because:0.012993201300860596 think:0.012797747151673438 :0.5012804259521554 +of:0.09129790931378902 the:0.07369883040827747 and:0.047842263382354346 in:0.04189055351593407 to:0.04045875475680249 a:0.03542341257202578 be:0.02020462051672066 for:0.01979292654746225 was:0.01760256398103379 at:0.017380150555488715 is:0.014984483003968216 with:0.014047653760730413 by:0.01374644383819499 :0.012670486581795598 In:0.01200961464556976 or:0.011563835749786333 from:0.011391516893522809 are:0.011273104484969465 that:0.010755276030689069 :0.4809655994608848 +the:0.3278498875944576 this:0.06271710402145599 of:0.05272266121201262 our:0.049194191677251635 that:0.048610270862575675 their:0.0451892618300568 and:0.04295036296719588 his:0.040788961862467624 or:0.03257479476700033 its:0.022745911967734733 The:0.021533264621702214 other:0.019981760277732682 said:0.018899848357845705 tho:0.015223505671640465 a:0.01473410575157616 your:0.009788531164889544 any:0.009617325795131993 such:0.009524595164807791 whose:0.009364343444499804 :0.1449893109879648 +of:0.2869644393768582 the:0.18662832049059996 in:0.12729391436728738 by:0.12143505800221839 to:0.04700610661504525 In:0.023226267718559897 which:0.02262753738195415 on:0.021887066458409134 that:0.01732725004198115 and:0.015640346325273072 from:0.01518653581408848 for:0.01466586703762661 upon:0.012895684349872219 The:0.008758458256202225 against:0.007897262765148957 tho:0.006690645840753317 ot:0.006554750860949473 with:0.0065182251034553475 he:0.005657273017650345 :0.04413899017606648 +be:0.2450448005242683 was:0.21325371150955819 been:0.14140035092741918 were:0.07088797596454498 is:0.06532083959699549 are:0.03913883451016806 being:0.028110804266372358 and:0.019434214659063455 bo:0.016743772468030046 as:0.014795606809902257 so:0.01322212594852822 Is:0.012822664906130592 he:0.011990735069543214 it:0.009319928196563626 not:0.00828181569147434 am:0.007331931999323329 they:0.005963202505107798 have:0.005815900699083414 now:0.005597412351863992 :0.0645233713960592 +one:0.1028303141280697 part:0.05963429477052991 out:0.04766456937681193 some:0.031418679026461914 members:0.030764490253327767 side:0.029940657362655835 portion:0.022063658796890564 office:0.020457735219956013 member:0.019726706386316174 end:0.019666887540649894 tion:0.018667441728710307 parts:0.016814747270460957 people:0.014112771422418794 all:0.014072739582212475 any:0.013183573287639892 One:0.013083578354183906 that:0.013024335602903442 account:0.012482348155001894 many:0.012077825070275192 :0.48731264666452345 +the:0.2977057609439167 of:0.11041304858841001 and:0.05306935352554212 their:0.034171590257900376 American:0.03363219572641303 The:0.02815116555024779 for:0.027420139384534845 his:0.026720929605659978 other:0.02421294447453142 said:0.023700412546669224 our:0.02284519691699146 a:0.018252433719472147 tho:0.01762759165307137 in:0.015277089450159409 or:0.014785891536640405 public:0.01397809479490124 these:0.012278340993736753 to:0.011763954009924561 county:0.011448478666293834 :0.20154538765498334 +was:0.20718976727551272 be:0.16279992668320473 been:0.09254984931106204 were:0.07767578640956443 is:0.07077289800174823 and:0.04576179909391398 have:0.04558506824008317 are:0.04042662503111933 had:0.03516136931451225 he:0.02492350977639834 has:0.024094916420504653 bo:0.014753255511459926 I:0.013671088112353813 being:0.013259024721494768 duly:0.01321196827717867 ever:0.01127321272584521 not:0.010664193108745766 Is:0.00871917256537584 so:0.008493491250017362 :0.07801307816990478 +one:0.1028303141280697 part:0.05963429477052991 out:0.04766456937681193 some:0.031418679026461914 members:0.030764490253327767 side:0.029940657362655835 portion:0.022063658796890564 office:0.020457735219956013 member:0.019726706386316174 end:0.019666887540649894 tion:0.018667441728710307 parts:0.016814747270460957 people:0.014112771422418794 all:0.014072739582212475 any:0.013183573287639892 One:0.013083578354183906 that:0.013024335602903442 account:0.012482348155001894 many:0.012077825070275192 :0.48731264666452345 +the:0.2512784217501299 a:0.09842776738633793 of:0.06486487883972497 and:0.06159734579457731 to:0.038443228136714525 The:0.029326024422464157 in:0.025739199134794003 on:0.02253560025091864 tho:0.018276654833474782 at:0.016058216427946186 with:0.012943502576430775 his:0.011007368969302808 from:0.010672648253694595 .:0.010151463283594703 by:0.009721732628281347 Mr.:0.009642362806002322 :0.009023612190954804 for:0.007952635922512734 tbe:0.007944842618838932 :0.28339249377330455 +of:0.44819197758288554 in:0.0857308087718062 at:0.05323178484790244 by:0.03849887426710337 on:0.03263818114401996 for:0.03239282511583114 from:0.02804667098869851 the:0.02770572504320982 and:0.025019379461983265 to:0.02241162198081864 with:0.019311188266893507 In:0.01705087254311236 as:0.00833776681766451 that:0.007077015778517591 before:0.0065272270253908925 all:0.005381684284320412 against:0.005291734943781951 ot:0.0050329482749989305 after:0.004181669846338984 :0.12694004301472198 +in:0.18499538559011458 of:0.1670116804036052 to:0.13032086196185594 and:0.06587681976181309 for:0.05482422673254027 In:0.041938595409215934 that:0.041869433035966665 with:0.03348332983896143 on:0.028030261748460312 from:0.02565026553238755 by:0.022338885214025515 at:0.021386197968207458 as:0.01679127403263918 all:0.014016931789076034 is:0.01309932781308918 into:0.012193963144121613 when:0.011914517623824995 upon:0.011910444988241174 have:0.010711286742490089 :0.0906363106693638 +the:0.7076685530032674 The:0.0623513407073394 tho:0.03555043979591 take:0.025449592003080827 and:0.019044283198862262 in:0.01774437229133839 no:0.017450539377684343 a:0.011446814717299114 an:0.01088035974333314 tbe:0.010434553397915056 great:0.010235106639603824 to:0.008669592983843791 any:0.006834446589113585 into:0.006786804875237625 his:0.0066807690537821155 of:0.005306478547602353 their:0.005025019425075514 took:0.004985888113896825 full:0.0049744892437525905 :0.021480556292061883 +of:0.11270182110657569 and:0.09189201298505398 the:0.04972993728899714 a:0.04272252137280003 be:0.03165794623030996 to:0.028316333321759184 for:0.028002006160102323 was:0.024642421770628118 is:0.024583353663985827 at:0.018618768047841832 as:0.017352930687749072 that:0.016382394897736723 with:0.015936060648148412 it:0.015441923902073612 not:0.01505197246225927 by:0.014922849699081676 It:0.012296899997666198 in:0.012184117529196735 about:0.011980816335940173 :0.41458291189209406 +the:0.5418734378823192 a:0.11655036400007725 and:0.06899137532466008 The:0.029853644551669514 this:0.02696967976685887 to:0.024843386285555786 tho:0.02423218959639424 of:0.012639345394408917 in:0.011177339439907837 every:0.00982460272487594 tbe:0.009599417541132586 that:0.00938062483786446 or:0.009139523787938902 great:0.008662935970423797 present:0.008364564583125891 county,:0.006509380325879656 high:0.004736212201198996 large:0.004670294031886443 any:0.004508144191181824 :0.06647353756263981 +and:0.10069862087014539 was:0.07206378914251252 of:0.06858503286278744 is:0.05557560613427368 nothing:0.032099586176464696 bring:0.029581599033062272 anything:0.0284942278143545 for:0.02778568063868765 talk:0.025057049443183658 are:0.024336229363739827 or:0.023222053577858448 brought:0.023151540927592185 in:0.02201595495107739 that:0.021627519560519122 all:0.01977372238741337 were:0.01944601943485879 much:0.019301959216565714 at:0.019035258265920053 talking:0.01898920466700837 :0.3481593455319749 +the:0.17027190784407714 of:0.10585557835912704 and:0.07355927771906935 to:0.05486905984958157 a:0.04543746377447453 in:0.03128555052933153 be:0.028704485173100775 was:0.02350529800142253 is:0.02215549335554494 for:0.02077556258358175 his:0.01804639098945333 or:0.016335100594594944 their:0.015847999621030492 at:0.015526727957625254 been:0.011815834631173878 are:0.01139058447814694 this:0.010362020528084328 tho:0.01035635773045807 its:0.01000473355720393 :0.30289457272291764 +the:0.28489264487973776 not:0.18733854561778754 is:0.0595813538479789 The:0.04934482234622293 was:0.04557800092664069 and:0.03711367319603718 are:0.026318324631014023 of:0.024221091221717696 tho:0.018388810733659895 were:0.014460922629137772 that:0.013401138206944378 had:0.012997125055275253 be:0.01242203844910214 have:0.011958321493267915 can:0.010821588267360623 but:0.010672190452002671 with:0.01059742361218885 I:0.01017822295042033 Is:0.009927123813951113 :0.14878663766955233 +a:0.18944114419859234 the:0.18010163960485434 for:0.07254772090928688 of:0.06365510014846888 at:0.056433684442435114 in:0.03589668121638345 and:0.029813433256786342 to:0.02553470662222918 an:0.016899208892728855 that:0.013426146529802944 during:0.013008922392817951 by:0.012421213486380173 any:0.010858327420239788 as:0.01061552790438844 some:0.009384161889137805 In:0.008977041317107835 tho:0.008859251294384293 his:0.008074500555757425 their:0.00771684359037702 :0.22533474432784098 +and:0.06596237509547383 was:0.04783293855181179 be:0.043174415980290315 is:0.041151262199174615 are:0.03260186494707957 that:0.022614130131106344 were:0.020208973549075384 been:0.019304723759110607 now:0.018664079626166074 it:0.016804159808836847 not:0.016405814878241082 them:0.015782750610992314 as:0.014108350696189324 or:0.011761422568688505 being:0.010759924863573902 come:0.010187572982533375 placed:0.009790036260103255 Is:0.009658203324500873 him:0.009439732882108733 :0.5627872672849433 +June:0.09695892851856885 May:0.06746066022947239 lot:0.06477195379202051 April:0.04413433423342743 July:0.040596182113666265 No.:0.03743412926819922 block:0.03061884257318488 March:0.02861954795715177 degrees:0.02366141337951871 lots:0.02260100456105492 January:0.02010379380140526 and:0.018784633076596783 deg.:0.018596787129837287 1:0.016390334380873076 .:0.015365783418586992 W.:0.014691868762556378 October:0.013698493281924075 of:0.01334532002858745 September:0.01179843428528075 :0.39936755520808703 +the:0.3490129601289869 this:0.13533416326981904 a:0.12089114789141807 and:0.06950013696668218 to:0.0558394168538125 of:0.041481872786876935 in:0.02151346338839025 that:0.01966415107465991 tho:0.01658520542451745 The:0.011595608860897832 or:0.011037519132333655 every:0.010447373085513368 our:0.009361854479415486 each:0.008891450363237309 present:0.008127032849367756 said:0.007972414799138195 county,:0.007585722522883083 tbe:0.0063228556627651636 same:0.006176000691057279 :0.08165964976822761 +the:0.14677350637649494 and:0.11500480292522113 of:0.09247110266614922 to:0.08209444912232397 a:0.05742121502922302 at:0.03913205018182087 in:0.03458611839439744 for:0.02661335750806568 with:0.023300740209843167 or:0.019695984996051928 by:0.016890892397211327 their:0.013258463870476063 all:0.012499172707137596 from:0.012073413442862557 on:0.011568766122217218 be:0.011441207589591124 his:0.011298602435361616 tho:0.010433023629483186 is:0.010041375360730149 :0.2524017550353378 +the:0.44610688592438735 a:0.1310491778930654 this:0.049924708648304374 tho:0.03299593529733041 of:0.03035408853844043 and:0.02730620473378854 The:0.026391401057475165 further:0.019402452939772347 to:0.019309014043337427 in:0.01539444517442951 other:0.014886886844336982 large:0.013884430287467905 such:0.012897595973472713 any:0.012810969547162597 his:0.011817398657536603 tbe:0.010819543861868088 every:0.010716428041732836 said:0.010190902253758754 same:0.009835301983559041 :0.09290622829877355 +the:0.16252600296301706 of:0.09943636141121946 a:0.06972061183976204 to:0.05786006055271911 and:0.051901321414837935 be:0.037439623662398995 in:0.027926045399370266 is:0.026607440308126628 not:0.024117671416066706 was:0.023783954316327426 for:0.02116560723292378 or:0.019279992189698437 their:0.01878366798909115 his:0.0183649522149638 been:0.016598750070275194 are:0.014734104368434184 at:0.014726030078833321 no:0.01294859103405944 with:0.012367286558919744 :0.2687119249789553 +;:0.03241853077042372 nothing:0.019824337772337906 him,:0.0176601177745415 it,:0.017235328233106563 is:0.014429733948929643 time,:0.014373477850783283 ,:0.010912669452080132 them,:0.009642795138059327 years,:0.008785643992425362 was:0.0081056255159866 anything:0.007583903967389607 day,:0.006483560410208077 man,:0.006250736189494739 and:0.006051238389163444 ago,:0.005675777244951961 to:0.005653308938052778 first,:0.005365334676351479 here,:0.005307339515028517 year,:0.00524920029697973 :0.7919913399237056 +to:0.5803711901111284 will:0.049966378592906695 they:0.029377587935956843 and:0.02701231488038647 would:0.02506782643725423 I:0.024611199249709136 can:0.0244476629887101 we:0.022286244746174418 not:0.01754165973607067 may:0.016056766422174587 you:0.01473282779477059 should:0.01338291700374843 who:0.012782866039348612 could:0.012632638724085859 or:0.009022497954330954 must:0.008692081818743072 the:0.007900630701125665 To:0.0077818535409581654 did:0.007754692863752903 :0.08757816245866416 +of:0.07090073822258386 to:0.06485656932030882 a:0.042638726413563525 and:0.04067551837746703 in:0.03363553615699465 -:0.027170035959108312 with:0.026764581927953744 the:0.026262489556318866 by:0.02389477910659911 .:0.017343482336232056 for:0.01724648757811548 that:0.016066132444673774 :0.015209611703682601 A:0.014855077989212146 or:0.014719478636133434 In:0.01376496323631706 ow:0.011957936354979487 st.:0.011955244787312542 I:0.011787149100141428 :0.497295460792302 +to:0.12354075643190157 and:0.08505277297992589 of:0.04744757283939691 the:0.03673010520209344 in:0.027828707058379372 is:0.023305008409429784 I:0.022144012276299987 for:0.020271140005288447 not:0.0199713319441252 was:0.01932205964909315 will:0.019268066369548417 con-:0.018699135648169458 be-:0.018627423880957478 he:0.017655999283213552 be:0.01709344544110531 that:0.015543213952415522 which:0.015438694118314914 would:0.013939369606180202 re-:0.012827440509741625 :0.42429374439441975 +:0.06975375287453342 was:0.06648054075579356 and:0.06282225464953065 be:0.03298721469190933 is:0.02793285169186607 were:0.027266147379854958 are:0.02352561139877005 of:0.02308465790681459 that:0.022647596957359375 but:0.0170000742066918 in:0.01683771452317502 it.:0.016436975251600865 has:0.01576950764933772 had:0.015562596544755175 have:0.015515512712105559 been:0.013215800029669466 Is:0.011302363338564545 them.:0.011148883740550009 the:0.009761163210533559 :0.49994878048658425 +the:0.15309080148294885 and:0.09228079254349776 a:0.05755328474390973 of:0.05664105016179891 to:0.03934230104516074 in:0.03648495302970617 that:0.0313989107383292 which:0.023866330053825522 I:0.021725837042239904 will:0.020529555431228703 for:0.019444673050405054 or:0.013717611204611376 good:0.013256631619913648 they:0.012789360004542286 could:0.012595738275360731 can:0.012504680506300941 have:0.012487455367113702 any:0.012401861925305993 The:0.012201241462619123 :0.34468693031118164 +the:0.1611265875875795 of:0.07595277951672334 and:0.0636376520018696 a:0.059042422192651614 to:0.026024226272121916 in:0.024440958242054008 or:0.0182864917776713 be:0.01687591992827863 was:0.016862307199101135 is:0.016751750460124608 an:0.016485159167490698 tho:0.013051656225856568 The:0.01303729652722888 for:0.01243415341449794 at:0.011810881053188824 his:0.010171785999311135 are:0.009851639101237816 :0.0088588988167498 their:0.008697805912224075 :0.4155996286040386 +and:0.13401168068084107 is:0.06456171993198685 fact:0.05829853590592809 of:0.052441674522901764 so:0.03936901510982005 said:0.03785270704355713 was:0.03216049777230344 in:0.032035540434709214 to:0.028267963774740557 all:0.025809567555144255 found:0.025049502484450613 but:0.02263713414539916 say:0.018905909025594463 at:0.01883381026582395 on:0.018168245642007096 show:0.018143321385318743 believe:0.017828096821156145 stated:0.016015227455677527 be:0.015647905844131095 :0.3229619441985088 +the:0.3316442548607811 a:0.1769207608712004 and:0.040008921720017104 of:0.02165534561527997 A:0.018150822242248617 tho:0.017120087660723992 to:0.017053196928198525 this:0.015236857306378332 one:0.013261055853303902 per:0.013057447128423522 The:0.01264059822904776 at:0.008292879836043 new:0.006962583475306319 his:0.006846435421785804 :0.006697218441406691 their:0.006283425300142198 an:0.006061915081884827 tbe:0.006057020994691407 with:0.005924742287739856 :0.26912443074539666 +the:0.446769972769764 this:0.16829695466688685 a:0.04358982249817139 that:0.03136298820401598 tho:0.03129922252804792 said:0.028815737334808286 The:0.022600555661122665 and:0.020826610771345698 our:0.016084965185215697 York:0.015769502934237095 of:0.014243299857336765 tbe:0.013724834432334368 other:0.009587468593251436 or:0.009306826698750806 to:0.00839618215973105 any:0.007540673983111691 every:0.006444620631532495 in:0.0049620921980552905 one:0.004374347209828479 :0.09500332168245205 +that:0.06710271100832649 :0.043365192900253056 and:0.040466330598230536 as:0.039123606223224514 but:0.0284135287594751 it.:0.024669680613735208 which:0.01867559871346894 of:0.012548846576913925 them.:0.01088678741701917 him.:0.008676276726865275 country.:0.008368171264542822 what:0.008132874255881876 for:0.0077687432442085265 time.:0.007256881918389353 But:0.007042148719661365 to:0.006744990463649688 where:0.0067225630430347225 day.:0.0061444389084803555 people.:0.005854621700895956 :0.6410360069437431 +the:0.10442087431339736 and:0.06939931179057497 of:0.059572203373200204 to:0.053395145484619676 a:0.0486301317746673 be:0.02495829126582574 is:0.02176810608490287 in:0.021387948844742682 was:0.021133420387223628 at:0.016201961358633225 it:0.014708045421280487 I:0.014013289124653647 or:0.013113755083441998 .:0.012431333144635159 for:0.012232343553272098 he:0.011657353848976844 :0.010801417707194536 not:0.01066798961461849 that:0.010348695280748398 :0.4481583825433907 +sum:0.03352282876311118 number:0.028116684882597106 line:0.019995206059833036 city:0.01946514558931857 out:0.019275318828420953 day:0.01666865340772654 county:0.014872697538657208 amount:0.013254184849875051 Board:0.01252325449624941 town:0.012449555905674143 side:0.011663975251122375 part:0.011517157473718155 County:0.011460540331966697 state:0.011087331502382173 City:0.010878919191854432 purpose:0.01081028255427907 and:0.010297866493795984 way:0.009848747943663767 name:0.009522170936943183 :0.711769477998811 +well:0.11482583804944232 known:0.09871763831710513 soon:0.0916505083085803 far:0.07244252345830873 and:0.05646760229569708 long:0.033191133685989645 such:0.026114132691679413 just:0.021539382495143138 much:0.018216698075154383 but:0.015820973354116454 it:0.015060478378985437 that:0.012982875435048865 regarded:0.011853385324054824 inasmuch:0.011638912473280656 him:0.010904627694769634 same:0.010576795833003501 Just:0.009621947202407478 them:0.008618852072826538 designated:0.00803461652825095 :0.3507210783261555 +to:0.12022893700269083 and:0.09020394424291768 the:0.08587503820055309 of:0.06450042443224316 in:0.0310058468700829 a:0.017742048521183405 :0.015548046036689871 not:0.01491307651316237 that:0.014112408707955496 for:0.013734482372212283 I:0.013065769926808477 will:0.012848502316304782 at:0.012837991177321897 In:0.012628718855091186 by:0.012491091048660757 be:0.011425930130217754 is:0.0113962101007567 he:0.011342727513475473 or:0.01112522537451577 :0.4219735806571561 +of:0.09129790931378902 the:0.07369883040827747 and:0.047842263382354346 in:0.04189055351593407 to:0.04045875475680249 a:0.03542341257202578 be:0.02020462051672066 for:0.01979292654746225 was:0.01760256398103379 at:0.017380150555488715 is:0.014984483003968216 with:0.014047653760730413 by:0.01374644383819499 :0.012670486581795598 In:0.01200961464556976 or:0.011563835749786333 from:0.011391516893522809 are:0.011273104484969465 that:0.010755276030689069 :0.4809655994608848 +:0.0588306117436864 it.:0.010651755215786665 them.:0.008970912969267032 that:0.008195669463362955 of:0.007712361271253661 and:0.006645564330258965 country.:0.005543713976121734 :0.004959486902323677 him.:0.00485568554070299 .:0.004447497897947541 year.:0.0044143957441263705 years.:0.004238774188551022 day.:0.003907553103065639 time.:0.0037477321701441316 people.:0.003571973279092184 ?:0.0035254592008640024 city.:0.00344600025901862 world.:0.003438148269433466 -:0.0033088212900852384 :0.8445878831849076 +be:0.22104353024955184 had:0.1308560905775188 been:0.10330414607630503 was:0.09520835644305409 have:0.0826613672877427 has:0.06685178188258914 were:0.04883062543663189 and:0.029800264803703732 is:0.026732968080428552 are:0.026529711770364804 he:0.02569108621580418 being:0.02290196714901221 bo:0.020399382855253077 not:0.014945555108827896 having:0.01142912276468452 who:0.009082090175611734 then:0.007894359760705459 to:0.007342988266105453 they:0.00695984918971244 :0.04053475590639245 +the:0.2190758518479841 a:0.12847396967123495 of:0.07189404803343773 and:0.05467735908145693 an:0.032524163628647754 in:0.0300457527778546 to:0.023439968488000534 The:0.019752879565044287 for:0.016304272405801328 or:0.015515496368065845 his:0.01434612308147232 at:0.014185307137627712 tho:0.013408907152197874 this:0.01066509125963715 their:0.009400144518278381 with:0.009366976843571516 is:0.008951171671595363 Mr.:0.0084729088950691 In:0.008069511597454915 :0.29043009597556757 +virtue:0.075210003814478 one:0.04095782528272426 out:0.04094950569138581 part:0.028419074482593076 pursuance:0.02647957726952072 result:0.022026114059095867 all:0.02118106610311898 tion:0.020023917198143688 means:0.018922900475692853 favor:0.018260805345050424 quarter:0.018233448924952968 charge:0.017860099745937157 that:0.017772300993585684 instead:0.017470839097896467 case:0.0169504356289914 day:0.016707541651604044 side:0.014491917202008646 is:0.013990033343895042 account:0.013814357655080725 :0.5392782360342442 +the:0.3316780569548882 of:0.14950128318642558 an:0.09202003015504022 and:0.05346502927153956 in:0.03321756439258322 The:0.032194479399843934 by:0.02552876004827356 tho:0.020960154335358597 with:0.017462693944193107 said:0.01646307900326842 for:0.01596810490630016 or:0.01301218777038829 this:0.012444602969701445 tbe:0.011725104227754466 on:0.011490828597203505 that:0.011334012561499128 In:0.009991735011868277 South:0.009779269785238971 to:0.009068926447296241 :0.12169409703133506 +and:0.08702895176279112 there:0.058927250936514866 to:0.035400346865530785 of:0.03318835359839487 he:0.029721090938317957 the:0.028395147531536647 or:0.027446113860986294 I:0.02698318734392992 is:0.024111392845161932 con-:0.02328155154028612 dis-:0.022801970636421212 that:0.022732784862292243 was:0.021336766791126366 it:0.021264003740414997 for:0.021116168551113305 which:0.020876657506052724 be:0.02078242066191899 will:0.02041306214974865 re-:0.018881022153915777 :0.43431175572354525 +and:0.08995317707915026 to:0.06844710404109794 of:0.04605142056172993 the:0.04074574508561307 which:0.02479116931334353 that:0.023764822140213245 re-:0.020841117231308055 in:0.020803825395358622 for:0.020278423301550053 :0.018417753428486977 not:0.016860793136637672 con-:0.016444405871234195 is:0.014386481772210856 or:0.014080680914153714 be-:0.01352268143271276 I:0.01317002660943805 was:0.011429878269381662 dis-:0.011196807025842847 he:0.01113106290024311 :0.5026826244902934 +the:0.14048602411779254 of:0.10252225631561868 and:0.07633183975731359 to:0.03245895674061561 that:0.030733737144535016 The:0.02900268575179401 in:0.027931447478085947 which:0.018752304155935415 or:0.01571308762550976 :0.015055749982663399 Mr.:0.0149342694058751 their:0.010852954179470109 on:0.010754035534755927 as:0.01048165637565865 for:0.010288939626440372 said:0.01005519865138013 tho:0.009754500854680081 he:0.009279558727176576 a:0.008993895187521092 :0.41461690238717797 +is:0.13273442315113998 be:0.12796468107158693 of:0.09802561036970772 was:0.08624087036913532 and:0.0663948213781231 to:0.05064898666731743 with:0.04404078726845341 in:0.04315642441020296 on:0.0340254073886531 that:0.029646996922955884 for:0.025401644492671897 are:0.025183422640132586 all:0.02042105220604342 by:0.01964958191827302 been:0.018904882169071956 Is:0.0168972652462894 from:0.01604674389088111 have:0.015936223728040263 as:0.013462148674144876 :0.11421802603717567 +as:0.5520822240126513 so:0.1142734107085017 and:0.06079401125266067 of:0.03625067727838463 the:0.02514747040944098 is:0.024994830186129854 very:0.01921909050321116 a:0.014302950713375676 be:0.012788147983539194 too:0.012765525825430661 with:0.011454178306460725 far:0.009519313138057818 are:0.009255658304656092 As:0.008663260480022708 such:0.008130060450432953 in:0.008044795997408575 his:0.007944325462139855 was:0.007618265071401494 same:0.006567561798505179 :0.04918424211758888 +the:0.2951071937605539 a:0.2731057257791573 this:0.03720653649039694 The:0.027542201918194884 of:0.02748414773720901 other:0.025896093557535305 and:0.01984890852196762 any:0.01939306623240625 tho:0.01455629936771288 every:0.013826376570358807 that:0.013756898882553962 A:0.011039369554561095 his:0.0108646318775476 whole:0.010481105599703205 in:0.009819189790211088 good:0.008158190685995671 our:0.0077146689629949755 one:0.006948602351401976 best:0.006263006330818233 :0.1599877860287193 +the:0.1225076649597919 and:0.07161361224167645 of:0.06473629272949444 that:0.04958618514670853 in:0.028043918893866652 The:0.018977980784367614 which:0.018116365783577473 a:0.016457792131635864 Mr.:0.016204994403703713 any:0.014996833454149294 as:0.014951613809545558 or:0.014949554079500006 such:0.013882217367030407 to:0.013849308168220787 no:0.013167338522426214 he:0.012643594782225433 their:0.01149823381066073 for:0.011150101666402977 other:0.010739089653356843 :0.4609273076116591 +as:0.06931392982974462 according:0.052071562389565784 up:0.0511867300210483 and:0.040371568633051955 went:0.03351644485287816 back:0.032358406609281 regard:0.03073407747799069 feet:0.02852138506231652 down:0.026379903432040268 owing:0.02466642634685871 due:0.023695193974505355 go:0.022910973192184297 reference:0.020802802907016128 came:0.019883741951819873 sent:0.019874244915639484 attention:0.019565955494145405 come:0.01885185084678811 given:0.018792390567602263 it:0.017366961307524745 :0.4281354501879983 +the:0.14957672291702365 of:0.08498002854255245 and:0.05726623870829423 a:0.04495984628063783 to:0.040159371349577026 in:0.0364293810645345 be:0.017565835952854315 for:0.01494504314278294 was:0.014215201942233868 is:0.013828094687930873 this:0.012113184880053737 or:0.011909582925857093 as:0.011598343721070768 tho:0.011585434102473565 with:0.011313987534899572 In:0.010796003112170636 :0.010668854187104315 his:0.01063646294435309 by:0.01035206669108507 :0.42410031531251047 +that:0.2401928990662791 and:0.10146274606527167 which:0.08429026953391043 when:0.05682260589067557 as:0.05605381854109225 if:0.04056262606408545 but:0.02589703245015034 where:0.025516819709251765 what:0.022738020013188618 w:0.02102357068496208 I:0.01427051900885474 If:0.012789395588110661 to:0.012283832868212798 before:0.011476192156715801 because:0.010819437912604287 Then:0.010707789478274984 of:0.009742201061493892 think:0.00893871842433438 then:0.008902998398058902 :0.22450850708447226 +the:0.2959862624191193 and:0.1074202934940577 to:0.10227497977885107 a:0.05655461424498444 of:0.053073965473357174 as:0.04353325085220619 The:0.032986865029336336 will:0.02880129952712275 tho:0.018557918306849292 his:0.01791902508433909 that:0.014569666734441728 with:0.014544451833314433 be:0.01445362447432748 this:0.014434352606011187 he:0.013112407740425287 their:0.012908559586062667 was:0.012730574023507076 by:0.011309910781133234 or:0.011270345969560532 :0.12255763204099299 +the:0.2735357127231469 this:0.09552545482330145 their:0.09472280905157425 of:0.07423946784433112 our:0.06725299776451901 an:0.04759822453165689 its:0.04753992171519518 his:0.03722447910365513 other:0.031503161796897224 and:0.02450032271271289 your:0.024425554426873962 any:0.01755500998076973 tho:0.01741558958346818 own:0.01572874715734818 that:0.015449188410084948 my:0.01171313513867065 such:0.011551542022761914 to:0.011151161647438913 her:0.011001425820176968 :0.06936609374541655 +of:0.1633503004040335 in:0.12165556103892974 a:0.06964401027962396 to:0.06505733255858707 the:0.06469664398291573 and:0.04627757924238351 for:0.035284348840672504 In:0.030095398871639648 with:0.022452840923040042 at:0.016354245608564116 that:0.015843511662301017 from:0.015269016047169246 or:0.01318442438235183 by:0.012284016593175958 :0.01190537702840872 on:0.008835532586757512 as:0.008371734896831776 their:0.007950303374172393 his:0.007660855489258662 :0.2628269661891831 +the:0.7683951400353333 this:0.07151689964664971 tho:0.02472921157359062 immediate:0.023783020989186065 a:0.02125541304381245 and:0.01639356191832888 The:0.011115042291196434 tbe:0.007657385287969434 Judicial:0.005011828887537345 great:0.004314220983847147 high:0.003900295856188213 said:0.0035684721743267332 our:0.003510246139703843 that:0.003281959310666124 other:0.002575381277458043 their:0.0025378583160868017 every:0.002457924199689514 or:0.0022357661576726815 whole:0.0020186598885802644 :0.018741712022176383 +of:0.11872867222751884 in:0.07290951340995491 to:0.04319428082866954 with:0.03662459873008454 on:0.03253236695373369 by:0.030174480975536686 from:0.027285063281096915 and:0.02199451331561365 upon:0.01691618721243304 for:0.016620979224610612 at:0.01599537194664067 In:0.012889918104307965 under:0.00971926658274601 through:0.008410779127205253 that:0.008162263499682968 one:0.005518904154280759 into:0.004940998371031913 during:0.004496057350773057 after:0.004391780579395326 :0.5074940041246837 +of:0.09425089941179629 the:0.09336421881618656 and:0.08135177846604756 to:0.08119134153011978 at:0.05090541702024921 for:0.021329927453265753 a:0.019023506165938554 with:0.018197770501583787 in:0.016944676225250803 was:0.015181825894317033 is:0.013876107693800635 which:0.013600533214737115 or:0.013536530321542277 as:0.012900823439678254 be:0.012682498446579848 :0.01263499614630712 that:0.011664977113027499 his:0.010613519037861353 their:0.010604777030693496 :0.3951438760710171 +and:0.08995317707915026 to:0.06844710404109794 of:0.04605142056172993 the:0.04074574508561307 which:0.02479116931334353 that:0.023764822140213245 re-:0.020841117231308055 in:0.020803825395358622 for:0.020278423301550053 :0.018417753428486977 not:0.016860793136637672 con-:0.016444405871234195 is:0.014386481772210856 or:0.014080680914153714 be-:0.01352268143271276 I:0.01317002660943805 was:0.011429878269381662 dis-:0.011196807025842847 he:0.01113106290024311 :0.5026826244902934 +the:0.23747696790286363 a:0.14074008602649998 his:0.0822494279215461 and:0.06469779180098553 my:0.03307944556286703 this:0.03208868043152101 her:0.030585567100124746 first:0.029075773337168494 to:0.025112824801526285 The:0.022609238938113365 their:0.017896053268079706 tho:0.01672437438934145 one:0.01648113104690586 last:0.01610185587494212 I:0.016021429386824427 1:0.015183400409986012 that:0.014361114918602397 of:0.014122724464982254 next:0.013925627388366335 :0.16046648502875327 +that:0.19716648624713823 and:0.11144825127577772 as:0.10180464269422597 if:0.07628198885050165 which:0.06193393728630016 when:0.05114326605481647 what:0.048512039772904345 but:0.04332189923570602 where:0.028927398115020198 because:0.023157289554043003 If:0.021032267245006786 than:0.016556919904026378 whom:0.012821409372947384 for:0.010576062347747966 did:0.009270210797673095 before:0.009175167894144501 until:0.00858295735750169 do:0.008364987813804067 though:0.008098529943685987 :0.15082428823702837 +.:0.04748080915131748 a:0.02719193688366101 to:0.023411628823879906 of:0.02121613478677501 -:0.02075180330245948 and:0.01701042151490633 re-:0.011382493411012377 the:0.011038389739319032 re:0.007814844387734677 :0.0074647397898801905 is:0.006982450652676645 be-:0.006312604758454083 not:0.005776522799419698 pre-:0.005434630281901118 Wil:0.005161648049687257 ex-:0.004979251171094363 or:0.00497915119455972 A:0.004877314396146929 be:0.0048582231571812785 :0.7548750017479334 +and:0.13844830641066244 that:0.07810740139117818 as:0.061468605665822705 but:0.03787167552198423 for:0.025561183536634537 to:0.021961337171059657 which:0.0171252164139199 the:0.017097294693056098 after:0.016678928160798526 when:0.01563599291192363 :0.014310716709237304 until:0.012705515814710668 of:0.012679723968314821 what:0.012249479779537237 time:0.012087540374832792 how:0.011436236854448095 As:0.009926593923476399 him:0.00971552315156289 than:0.009096297152921208 :0.4648364303939187 +the:0.3097367135761636 in:0.09905817016446679 of:0.06951031969533686 a:0.06746155584960127 this:0.045828141965242986 his:0.04260189633058739 for:0.027829050318020954 at:0.024482833981670147 their:0.023910146514438173 In:0.023793630587851517 our:0.022792397133709865 tho:0.022291397830871983 its:0.02134475150972985 my:0.017572635599006757 to:0.01263812171307739 every:0.012479198896300715 own:0.012457813648671776 tbe:0.01232030453557283 very:0.01207507030710762 :0.11881584984257147 +feet:0.03776322022061303 went:0.031450222919522534 and:0.02834041152831957 as:0.023300751814080232 up:0.023046029021912533 10:0.022804976769859837 go:0.021161974728888294 20:0.018989155206577985 chains:0.018109922651818548 15:0.018080000181562677 back:0.017450790636578336 them:0.0171896727782814 12:0.01640260097603543 according:0.016005293424750454 sent:0.015015442893870856 5:0.014803909947958507 came:0.014768565418961738 1:0.01466521151996187 thence:0.014546333665602158 :0.615105513694844 +went:0.06527228071368989 go:0.05619934446464802 came:0.040550395705713206 back:0.03555337887687652 it:0.035376220595961315 out:0.03490526632483226 put:0.03355619440406013 down:0.03042882513856963 come:0.028160683632563837 them:0.027165266356164442 enter:0.02685927818294859 up:0.02683395703545789 brought:0.02610450155923051 way:0.025650479473236742 taken:0.024297963337896748 get:0.02381342012574062 entered:0.02315017182132224 thrown:0.022312163284405207 going:0.021115908751936613 :0.3916943002147456 +the:0.19749125756169547 Mr.:0.07112699624208033 of:0.06603367254516487 The:0.05768776091110846 and:0.05327374818694666 that:0.0420321405581567 a:0.02582588575453538 his:0.0169326573605278 Mrs.:0.014795070048324819 tho:0.014769024234222154 which:0.011478554728659614 he:0.01110833274239838 as:0.010988112958762878 I:0.010409931249854676 in:0.010294293477152827 :0.008879223773482728 to:0.008465710829358392 for:0.008281932125153052 if:0.008197991279302505 :0.3509277034331123 +is:0.11238480421515257 to:0.10162184041200456 of:0.07603515583850635 was:0.07254487949380363 with:0.06905466036451827 in:0.057392688588435485 and:0.05069137216742206 for:0.04772553591407344 as:0.0428443134380978 by:0.042831239715234316 be:0.03428368190345613 at:0.027888913172708328 have:0.02602566628711936 on:0.02525873116521814 had:0.02113512306206175 In:0.01814371151715961 Is:0.017210408265471492 made:0.01682869382066799 make:0.01655205370183804 :0.12254652695705068 +to:0.4731730813494591 will:0.10878287857106432 not:0.07006479410031936 and:0.05626898351523307 would:0.0540537687089005 should:0.03531536758716409 shall:0.03135322210327744 can:0.01955358272918758 must:0.018781280472244113 who:0.01628718508303389 we:0.014937506684130717 you:0.013866525751907785 they:0.01211789747948835 may:0.009643116540487976 could:0.00914040225798089 I:0.0075506989175583 cannot:0.005801757193295073 might:0.00575439849745262 We:0.004865165238347837 :0.03168838721946695 +to:0.5590717090239462 and:0.05991947830138629 will:0.04046287926337291 can:0.03338568746133437 could:0.028810983150299542 not:0.027769511013321542 we:0.024568324074886023 should:0.021917043860831712 cannot:0.019061598193553284 I:0.016385311729612155 you:0.016062506743308145 would:0.01581656202961127 may:0.014483629258611066 they:0.013403476981106669 must:0.0109650103850008 shall:0.008153310211873 We:0.00665660311278629 soon:0.00621318128727641 To:0.0056527627303280086 :0.07024043118755438 +:0.09424414604279548 it.:0.01602873522063938 .:0.009830437189081623 them.:0.008813257562359865 him.:0.00825475072118267 ::0.007720090554260933 and:0.006345303501340443 day.:0.0060908429927554525 time.:0.00503518275631232 country.:0.004746513096086298 people.:0.004369615931622534 follows::0.004086707734672784 2.:0.003724187863917384 1.:0.003491473109903239 ?:0.0033561182696343183 :0.0032669535904392265 years.:0.0031972821503570476 life.:0.0031565492311502585 law.:0.003100273007810146 :0.8001415794736786 +and:0.08995317707915026 to:0.06844710404109794 of:0.04605142056172993 the:0.04074574508561307 which:0.02479116931334353 that:0.023764822140213245 re-:0.020841117231308055 in:0.020803825395358622 for:0.020278423301550053 :0.018417753428486977 not:0.016860793136637672 con-:0.016444405871234195 is:0.014386481772210856 or:0.014080680914153714 be-:0.01352268143271276 I:0.01317002660943805 was:0.011429878269381662 dis-:0.011196807025842847 he:0.01113106290024311 :0.5026826244902934 +and:0.06238308592425053 of:0.03233894556068095 the:0.027379125254685586 to:0.019102549277586568 that:0.017555587569204088 in:0.013449095385755042 :0.012330206066432746 he:0.011337669091942336 as:0.010698295841506902 it:0.010133894296711727 his:0.00955199267162651 or:0.009268859528236525 :0.008403937602498062 I:0.007854564945098945 which:0.006666034636236271 -:0.00664204452256777 was:0.006615304576398365 a:0.006522704187572562 not:0.006361949307380872 :0.7144041537536276 +number:0.03983069986909165 line:0.03537404924474406 point:0.024394399307618345 matter:0.02225172816527869 out:0.020400737264151984 city:0.019916622441262875 amount:0.0197319610013932 City:0.01778183788125099 place:0.0175504784041835 day:0.01675240625220543 years:0.01650915360512355 board:0.015817681017779646 Board:0.014292961496530936 County:0.013901517715140532 State:0.01368274355967385 state:0.01334889303772143 form:0.013117689746878908 system:0.013115800715589642 deed:0.012935376854612986 :0.6382932624197677 +his:0.22648626405449396 the:0.13471033732106943 her:0.0888776457755715 His:0.0865967850374876 my:0.05995604313844652 The:0.047113746931865985 My:0.029401865854191973 that:0.02840112722240963 their:0.01982319728958821 Her:0.019050895861332035 and:0.017971710305930116 whose:0.015616887798865116 this:0.014887371175049348 bis:0.01460057150545088 a:0.012017644529492123 your:0.010651536896019246 our:0.009689963565115015 This:0.009465176974486693 its:0.00944156634138377 :0.14423966242175087 +the:0.22075743748983936 at:0.18581663645807428 to:0.09462173129188589 not:0.0642781570615424 be:0.06014920802741081 such:0.040878763257559216 was:0.03762378302248699 At:0.028062027268933778 and:0.025096589016977856 is:0.023746920556772983 as:0.023380370713245714 will:0.01875183259313324 a:0.016950326154270914 would:0.01614914021931821 were:0.016088655374581685 tho:0.015492555558034266 The:0.015016720448957788 its:0.014076966384923825 been:0.012790138421122246 :0.06927204068092854 +and:0.07010651884278314 is:0.0595503726484417 was:0.05918905917638597 of:0.038007258245341465 it:0.03260763646241392 not:0.02889384589245284 be:0.027254432998918672 are:0.025750527966100743 a:0.02569696166354008 the:0.02198963371819325 in:0.021417806843843305 were:0.021045770219503067 as:0.018372000596391973 been:0.016921338028348817 that:0.014799292607432084 to:0.014261456924680222 or:0.01422946410661902 so:0.01387566484878768 It:0.01113551083475476 :0.46389544737506727 +not:0.17468686462958705 I:0.14022645719760118 they:0.10719404250528163 we:0.1009013877442711 you:0.07404409949654715 who:0.06313033193110328 and:0.03979375562020632 to:0.03576442029168033 We:0.025033006331729658 They:0.023666211896120344 he:0.02300825204097083 would:0.015746721067403477 ever:0.014431671079570588 never:0.013629685991820288 now:0.013380102570430657 it:0.012916991513047147 don't:0.012698797533295317 hereby:0.012368578991682097 will:0.010798539436077564 :0.085580082131574 +the:0.3216910017520689 of:0.13902481611084966 in:0.10246370436808004 from:0.04156853813007461 The:0.0325453787288541 for:0.026284702663019674 and:0.02552516716674744 at:0.02409115760392402 to:0.02404030432690819 a:0.021459178904234426 by:0.018879703854560125 In:0.01770949088550589 on:0.013833536583650418 tho:0.01335987837383404 :0.00944328247789693 his:0.00930517557977769 that:0.00898475288040395 tbe:0.006246695992585796 this:0.005920065850947214 :0.13662346776607692 +that:0.08842911667480052 for:0.0880340282654896 if:0.07965970811582974 If:0.0741464020448038 and:0.07016744044872798 to:0.0608428258283938 as:0.05560063460830999 do:0.039209773787670106 of:0.031557927629039716 which:0.029892150086148865 when:0.022222250851962416 Do:0.02136914248412392 against:0.020794181622869244 Have:0.01712256054794816 tell:0.016779358605267986 what:0.01599115480036811 before:0.015540555460276592 whether:0.01512602812298278 but:0.01464772785994761 :0.22186703215503903 +the:0.628146873968285 The:0.09339816681533115 not:0.049005269399058644 could:0.025420059824420773 can:0.02461343899901414 a:0.02418118049173467 would:0.02378073149098499 will:0.023382809927149185 tho:0.02226936731004515 and:0.013319901732333458 is:0.009486091284919127 that:0.009178744829207641 tbe:0.006398591157423247 of:0.005812993935997226 for:0.00570028382410805 his:0.005198415222491078 I:0.004970756827276851 whose:0.004161308526089974 their:0.004091902587462266 :0.016483111846667408 +for:0.7301965372593728 of:0.06964693552264381 in:0.027570529874614835 to:0.021893516333216102 For:0.019051646906235044 lor:0.015634982094620668 during:0.014231095514723346 at:0.010601321560624377 and:0.010575839031068745 all:0.007639698335862937 that:0.007483032179698967 by:0.006800589627409285 In:0.006615850095087886 with:0.005853232209453322 tor:0.005395222944993053 than:0.0046768287932574095 from:0.004365134841795605 as:0.0038365266087012407 over:0.003818163035995935 :0.023113317230624576 +the:0.5555386250092134 a:0.06168911326028515 this:0.047760453149838386 and:0.0405920166995264 tho:0.0400794738847245 The:0.029515520898140954 of:0.02902475874707877 in:0.017811667349381607 his:0.01587738280086643 its:0.014176372724244981 tbe:0.013628384074668428 on:0.013265028846241875 each:0.013093392839077992 or:0.011178981077020162 an:0.01099426909621736 their:0.010495327622732507 our:0.010378989895461956 other:0.01001495919430639 every:0.009275458945406719 :0.04460982388556603 +it:0.10761699050853986 they:0.09857123604829032 he:0.09603814689370689 and:0.07577627239656945 we:0.057911495362193526 who:0.05339915819595694 I:0.05233565618515294 you:0.047706031636477145 which:0.036540274358581634 It:0.034089960094119715 that:0.03283065392004994 He:0.02099345440163475 she:0.02050059068457811 there:0.019557230098921345 We:0.01700812999429362 as:0.015623035522372817 but:0.01515305866455214 They:0.014499270552820845 never:0.01031523437838271 :0.1725341201028053 +and:0.09500881008555331 well:0.06206658951236029 regarded:0.036935028935535894 him:0.0314142794209011 known:0.031077052056542338 soon:0.02700320061470986 it:0.02623085774473942 is:0.02438162343435629 but:0.023839390993020203 used:0.021720637341540703 far:0.02045890976727103 just:0.020384524333195254 much:0.01971667289504282 such:0.019521581813054578 them:0.016090407278819097 was:0.015694381145043425 so:0.015081118446204548 act:0.014529263549522683 that:0.014487886332689187 :0.463357784299898 +two:0.050047781397643994 three:0.046919104996336086 100:0.04206964930581245 six:0.04118791687390565 hundred:0.04004057231060492 four:0.034839870964500294 ten:0.0314613958434362 five:0.03070557504248878 twenty:0.025895023535641142 fifty:0.024609650226073414 300:0.023674462435297514 eight:0.02328626268043531 thousand:0.022499325623763083 few:0.019813431839527457 their:0.019069467551700345 thirty:0.018320785832441847 the:0.018225428478340768 his:0.01736767499327386 sixty:0.01628412655454658 :0.4526824935142303 +of:0.06695954584706283 and:0.06649137032642373 to:0.06601061952379313 the:0.06171729943033423 in:0.05467960970092213 a:0.028607847520134077 was:0.025593805541454278 is:0.025575134465780882 for:0.02227513014141085 that:0.02203423644291701 In:0.016378139785638783 or:0.015262626560564149 at:0.014440266861137486 be:0.014337880734617895 which:0.013575436189030142 be-:0.013320788275858104 on:0.013254535972039225 are:0.0128330814609448 :0.011498114248276568 :0.4341545309716597 +to:0.5718610578843316 can:0.06022474333161838 could:0.04975137724553983 will:0.047539368346058354 not:0.04434199296632315 and:0.036472047547370795 would:0.02106908938966001 I:0.018194307052473886 you:0.017991721958203404 they:0.016514995504198913 we:0.015774221447801474 cannot:0.012341106107703437 should:0.011899949285209106 must:0.009257758466132188 never:0.008669854397346863 may:0.007271725307475521 who:0.006450156022465261 men:0.005450504809583972 To:0.00542698327834198 :0.03249703965216188 +and:0.08503425215113287 together:0.05335287900593926 covered:0.03253077787715905 him:0.028699283380466227 up:0.02694908563101517 it:0.020075958598700875 met:0.019295061035032795 them:0.018700319853085637 but:0.01578533889291739 thence:0.01248413508838869 filled:0.012418217423982135 out:0.012348631427551895 away:0.012156361159124838 do:0.012018718033405752 down:0.011784916836511368 man:0.011218165866290394 along:0.010245892575704265 connected:0.010128653854803403 ed:0.009471429225277377 :0.5843019220835106 +for:0.10039395753789782 of:0.09337260380528999 as:0.08733450034008901 and:0.06561010684311616 to:0.05659688211718362 is:0.05456646845460979 in:0.04923044637520936 with:0.039554397901793416 was:0.03555714445887872 be:0.033081378022948325 by:0.02163138550550545 In:0.02032150198414834 have:0.019633067023263655 after:0.01732433523585223 from:0.016774835909552577 but:0.016199794678077622 that:0.015555105975092798 or:0.014785562150801524 had:0.014195242103298754 :0.22728128357739083 +to:0.1923203215899875 will:0.1878749183296922 may:0.10402310525240986 should:0.08114144939149921 can:0.07282536963117382 shall:0.07124202478149032 would:0.0489079247852564 must:0.04286334549291048 could:0.04263942014873325 not:0.029045981981003773 might:0.02129702611566428 cannot:0.017170274688828594 it:0.00714329416798675 and:0.0070811070356481 that:0.00428033950306257 also:0.003940436471429013 never:0.0037745064861029612 default:0.003693689217901488 which:0.003486322200471841 :0.05424914272874763 +of:0.28767355066866834 to:0.08775711267569858 in:0.08678131196995101 and:0.05160598694501188 on:0.04646139928102899 by:0.04519522654900943 for:0.044547789071328545 with:0.03396756772609607 that:0.033699232901107726 from:0.03075346596941143 at:0.027039283056790858 In:0.021061449543044047 as:0.017514234937992545 all:0.012543839382496166 upon:0.011844431150487573 is:0.00998972746569266 was:0.008814315973987914 into:0.008557199930727406 through:0.007781895704231326 :0.1254109790972375 +of:0.17312045953146765 to:0.147412153866368 in:0.10222337467994962 and:0.054803139614302034 with:0.04604055511572184 for:0.04149904562368754 at:0.03956938147048781 reserves:0.038840851192945114 have:0.03400578225267063 that:0.03306989117480937 on:0.03199060342861318 is:0.02894910298991354 by:0.028586012888662186 from:0.023493428337626375 In:0.019580418354436822 had:0.01928798308388368 was:0.01712562291840452 has:0.01581001057391569 as:0.01572831389810426 :0.08786386900403018 +:0.08329393104800199 it.:0.017261650252672324 them.:0.010685303811950158 of:0.010146271251120437 year.:0.008757763145815048 country.:0.008386927325802263 day.:0.008223010964283076 .:0.007670115599744252 time.:0.006920376338816426 years.:0.0050488675699572666 city.:0.005029699461489757 sale.:0.004911584834845271 tion.:0.004888336582403991 work.:0.004712963035044738 States.:0.00470122458842401 law.:0.00458805298030059 people.:0.004359380980669497 him.:0.0042401846176119695 and:0.004181957582388931 :0.7909923980286581 +the:0.2516238230758763 a:0.16462910556867275 The:0.04706050092572105 of:0.04636600903575678 and:0.03629706032167652 an:0.02808163702629338 that:0.019225736910857494 A:0.019060869569204813 tho:0.01675220683166768 by:0.0156399758864158 any:0.015477674879179183 no:0.01484653383201197 or:0.012451632226820513 every:0.01243365534681483 to:0.010838940156310203 .:0.009145501340983849 tbe:0.009003138327935355 Mr.:0.008920306749883592 in:0.008005889195797712 :0.2531398027921203 +and:0.06059554099471299 those:0.0503640533673229 to:0.047076240902993505 of:0.036844930405100375 have:0.03570930658706651 who:0.034649441365635796 had:0.03394817325703238 :0.027706782366531343 all:0.01976262697654694 men:0.019722657860934745 has:0.017592910278889987 in:0.017557290158558406 or:0.016834699698316597 many:0.01667472690228175 he:0.015366849309757173 which:0.013307720461368697 one:0.012533824597709273 I:0.01230388331972409 at:0.012075595250377198 :0.4983727459391394 +of:0.22521327617785056 and:0.10739267779713557 are:0.04341754045959571 is:0.041156012709346906 now:0.036976805648978636 by:0.030201040343703564 after:0.028150257489855668 in:0.0237003553144802 was:0.02164514729594664 as:0.021547277435397704 not:0.02042058059712388 that:0.015976536097774413 for:0.014830524168097119 beginning,:0.014659491457749578 from:0.012800999439651557 there:0.012529088023459773 to:0.01233987746807869 were:0.012325081835657887 the:0.012172905127308198 :0.2915445251128077 +of:0.23688297991167712 to:0.08544137439647968 with:0.06831021025426992 and:0.06663029439293067 is:0.06132895290239589 in:0.05833124983479274 that:0.04356047760260393 by:0.04086631639624703 for:0.040657496436844624 was:0.026292763717021318 be:0.02198853247523512 as:0.01960183577437275 from:0.019081800932843593 on:0.018371348738530472 all:0.01753741543311244 make:0.015144175723713453 have:0.01455190543576532 under:0.013789973672113265 are:0.01309719629325165 :0.117533699675799 +last:0.2337386007708779 the:0.22941257428766595 a:0.1134649877041444 this:0.07375057437571757 one:0.054464057668406916 next:0.044815895600254195 past:0.03244336261433424 fiscal:0.024584585802568507 each:0.01921925439766065 first:0.017899509365283207 Last:0.013288225552326784 that:0.012522934707168592 The:0.012495466063730436 every:0.011425560210596625 A:0.010499648496926988 per:0.009988876810652697 preceding:0.008727344935572512 tho:0.008202232882901726 second:0.006770957177519956 :0.061285350575690144 +time:0.05697734364608277 able:0.05120580678615725 and:0.04640897987027106 right:0.03712073887462763 him:0.03676251385474787 enough:0.036085995856438825 began:0.03353705754890789 brought:0.0328423714393247 them:0.03142950263631827 is:0.03068593994202049 have:0.030107420384893006 order:0.029738025374381007 as:0.028559580111680312 going:0.025471860771309893 power:0.025134969893489855 had:0.024890186434394657 ready:0.02401431650617357 want:0.023602637995667464 me:0.022624170218357408 :0.37180058185475606 +the:0.16252600296301706 of:0.09943636141121946 a:0.06972061183976204 to:0.05786006055271911 and:0.051901321414837935 be:0.037439623662398995 in:0.027926045399370266 is:0.026607440308126628 not:0.024117671416066706 was:0.023783954316327426 for:0.02116560723292378 or:0.019279992189698437 their:0.01878366798909115 his:0.0183649522149638 been:0.016598750070275194 are:0.014734104368434184 at:0.014726030078833321 no:0.01294859103405944 with:0.012367286558919744 :0.2687119249789553 +:0.05520098421075691 him.:0.014529615446416316 it.:0.014110907721967186 them.:0.01007329707208847 .:0.00916136806111468 time.:0.006170276941698502 her.:0.005938463448252654 country.:0.005441022348418512 him:0.005374130908215605 life.:0.005051346580787241 man.:0.0043985616415759725 day.:0.00438924666154785 and:0.003935204166671418 It.:0.003749162194456091 work.:0.003693346530982654 again.:0.0036543302985612824 way.:0.0035920546435225117 me.:0.0034936455477584407 water.:0.0034706751442354056 :0.8335723604309723 +a:0.17411482505247552 so:0.14289299202571173 feet:0.10525164782854918 the:0.06063240861378325 very:0.0558563157456984 too:0.035085330217686714 inches:0.03199935336233197 as:0.031313990462746966 was:0.029998078418283926 of:0.02386820137613988 not:0.02081031459456471 be:0.01936892159108936 is:0.01896650407980909 with:0.018549202763978558 miles:0.0176353723944803 are:0.01758257859643557 his:0.0174536997641137 and:0.01649700746172409 by:0.01581153097044415 :0.1453117246799529 +and:0.062130046958630766 him:0.04826661024254473 want:0.04553366651097016 able:0.041695045206483844 is:0.03771226571367157 enough:0.03649423108236219 have:0.03384494408444413 me:0.03191512189763554 necessary:0.02924435678580023 not:0.02891928579168823 had:0.028778423427743643 was:0.028605473905719287 wish:0.028115364668226183 time:0.026545055490378888 as:0.02591596094868502 needless:0.025356658901102565 order:0.025277091069883694 them:0.023257418664843935 fail:0.023176692094579742 :0.36821628655460564 +they:0.1243942838098501 we:0.12050067084672603 you:0.11474706147042574 I:0.1093634504486404 he:0.09017987402714815 who:0.03448905450198102 that:0.033389707942046355 and:0.03239124666733355 it:0.031161750010220132 one:0.03112328538642317 man:0.03073771669087336 You:0.03067931707775945 which:0.02434240496125278 We:0.021687451321139358 she:0.016731012450869658 men:0.012137983947379877 1:0.010252980575943243 They:0.009445715659949502 It:0.00884138444673423 :0.1124036477573039 +it:0.1028886779558882 he:0.10107630119837027 It:0.07797959026911622 which:0.0753733700015313 I:0.0686196185372949 that:0.04032165345023807 and:0.03714243432228028 He:0.036550320197890486 she:0.03349459926366203 who:0.027456054308385516 there:0.02647579015001975 This:0.016589920963906074 what:0.014505522614735946 She:0.014401419711705823 one:0.011870260366777192 this:0.010281518426453246 man:0.009970675037313456 but:0.00906982644604356 ho:0.008304748562149215 :0.27662769821623845 +the:0.6555067002289309 an:0.0569149160710697 general:0.03191004749575556 The:0.0306118280336399 tho:0.027792001383462713 primary:0.021870997152164846 tbe:0.014625348252882319 said:0.012588127031004892 special:0.011840552076783398 first:0.01119192820363523 Presidential:0.00904610407790697 and:0.008643558326627524 on:0.00855513278102744 of:0.00813419095251323 a:0.008030880217336094 annual:0.007714638392520655 last:0.0063994608262744985 next:0.00612103692195547 any:0.005784699111179775 :0.05571785246332892 +enough:0.057119898201072467 and:0.05528532407321531 able:0.04902298238036996 order:0.04728387209176707 is:0.04169652534324147 as:0.03848922624625779 him:0.034502092348010875 necessary:0.033903609467841746 unable:0.029963890255540748 not:0.026223689488164864 me:0.025471540179401668 was:0.025141055138182704 required:0.024875526630541243 have:0.022835622023401916 them:0.0227367919823081 made:0.022010998526109476 time:0.022002531128346697 going:0.0206437585664958 fail:0.019457678621181414 :0.3803333873085487 +the:0.2189377418620256 this:0.19337190714928532 his:0.06169986276004687 that:0.046571040085391584 first:0.04037544617566665 same:0.03256817899570102 taken:0.02760043257197199 on:0.02621683292864519 took:0.024777236067058256 of:0.023080744277030767 in:0.02248790541015109 a:0.02103833781200095 second:0.020165739237770222 right:0.017996029531743694 their:0.016410283785586816 her:0.015406293935559196 our:0.015254360777030402 tho:0.013561091677358033 to:0.013286963680869353 :0.14819357127910698 +to:0.25079634928858396 the:0.20482005634049488 an:0.12615655384478475 this:0.08792525050808345 will:0.03911319985890064 and:0.030959263693041618 said:0.021445172520549092 "An:0.018184763604239377 a:0.017473376466520894 The:0.015395046994134968 An:0.014000866417843549 tho:0.012449259132260986 that:0.011949413731742504 any:0.01008498621386001 would:0.009379648432858174 or:0.008577111438440376 of:0.008372572181261874 shall:0.006412773524684309 every:0.005608292632058986 :0.0998960431756556 +that:0.2679623925605681 and:0.17473875447269513 but:0.057929987358311716 which:0.037190018528838846 where:0.03706024247499286 if:0.03508139552128882 as:0.029370443353037907 But:0.026769814579767445 If:0.026708793281814542 when:0.023449076222347758 because:0.01572699350916326 for:0.011948092023196523 Then:0.011803463083392453 time:0.010422188943700068 That:0.009894177606575497 or:0.009603879748360232 And:0.00918441433442016 while:0.009067610354157665 then:0.008929273838106782 :0.18615898820526422 +.:0.06646183606628131 J.:0.06611904297534761 W.:0.06513099311923883 John:0.060732799836956716 A.:0.05453933582819472 Mrs.:0.04541661254877731 C.:0.04300970680626755 H.:0.039407682382543247 and:0.03176826073010982 George:0.03130800699664341 James:0.03127687368789388 E.:0.02630587687637121 William:0.02513641415465534 R.:0.02291162679926149 Mary:0.022005026447193744 F.:0.02196903094834144 M.:0.021222448435238427 S.:0.020004273450134134 of:0.018330524459207024 :0.2859436274513428 +to:0.0821434925139398 and:0.08178310085444956 that:0.043416910228764295 the:0.0344824295781875 for:0.024997469288094896 in:0.022987233950613892 of:0.022948161615835166 not:0.015772278854961373 was:0.015705338192953243 is:0.014340649985078358 it:0.01433772353424777 long:0.012967700808774756 will:0.012059440783088947 could:0.012031648485522123 be:0.011390115722100242 last:0.01112513714207566 at:0.010511720839054694 time:0.00929976862033721 from:0.008663004299116608 :0.5380366747028039 +in:0.011112390983724333 men:0.010805010606141476 it:0.009924283128514363 out:0.009859836277246427 work:0.009076513050411053 him:0.009038549729861881 time:0.0089169142622581 life:0.008406884350981482 up:0.008260446262415004 rules:0.008089672667015123 them:0.0070979442366095645 law:0.006737370689811775 it,:0.006615674313329972 man:0.00645043071822247 :0.005904239775715423 hand:0.005601239579029764 house:0.005455275177493085 them,:0.005447505132708263 country:0.0054060454672832685 :0.8507937735912271 +the:0.17175948088275364 a:0.16775620373697575 of:0.059120300092513296 and:0.05854342602416334 to:0.04607355797289959 in:0.035590257545847034 an:0.030484802382497414 at:0.019412887654841508 his:0.018001516206712295 Mr.:0.0167785784108632 .:0.013059658881903606 The:0.012956741749840241 for:0.010824991321849702 with:0.010752236977234812 tho:0.010546024184623328 A:0.009735814462543518 or:0.009567175426765235 their:0.009377265262713458 her:0.008812534187609519 :0.2798465466348495 +:0.06430232989753842 .:0.040957331655108765 happiness.:0.028675000104162445 and:0.02094574689934943 the:0.018004426094766206 Mr.:0.01669475738266012 it.:0.01581313061010285 them.:0.00945875490341696 It.:0.007879883529172942 Dr.:0.007431462772607397 ::0.007295259720733003 to:0.006450501989792273 of:0.005989047832826723 ?:0.005341608712800072 country.:0.0052627852999329065 It:0.005164627670574289 time.:0.005106707517756801 Mrs.:0.004936377098875289 State.:0.004860448568694586 :0.7184298117391286 +of:0.4201173876111218 in:0.12659126429775663 to:0.12188613995700452 that:0.04579290928908352 by:0.0412755695458533 for:0.02509170699485965 with:0.021979641248688665 and:0.020847865740689035 from:0.020363842996264817 In:0.02013353142829596 upon:0.01581114608599682 as:0.01423602445183757 on:0.012057577184327989 which:0.011348363092778702 under:0.011107133699819974 ot:0.008096532874749797 all:0.007638413193093799 at:0.006694426640780693 ol:0.006608667922406814 :0.04132185574459 +and:0.09756556368541265 was:0.05426276517937397 is:0.03866664491042744 up:0.02568624008661788 it:0.024967480530237875 made:0.021983496168589956 put:0.021728272405609952 placed:0.021433399872469706 that:0.020699896774439272 are:0.01933805732185307 them:0.019230578399337284 him:0.018697869349579923 be:0.017987018805625865 but:0.017054981134282398 were:0.016928399532571015 as:0.01666685808038748 engaged:0.01649642158281899 found:0.01526160066577768 out:0.014987717957962178 :0.49935673755662546 +of:0.30421289306378624 to:0.11657834161859816 and:0.06390984556782976 by:0.059553004867598666 that:0.05760728468690608 on:0.05276845261049657 for:0.036856707711096164 with:0.0324705157571124 in:0.029038268641056537 from:0.02122930250826093 under:0.019735412496252033 all:0.017873106833266563 which:0.01614369482811712 as:0.015943328502030042 upon:0.014782432061938362 when:0.014649115819541262 at:0.012020446930639073 where:0.009728677458637043 is:0.008785892833990474 :0.0951132752028465 +and:0.09271903871524331 was:0.04736390717866947 Beginning:0.038743732119367075 week:0.035349634437655264 three:0.028222761177871387 is:0.02191888957386464 died:0.02123687104944546 him:0.021215930072145565 are:0.019796810394661392 there:0.018361006063496662 were:0.018118716021904277 payable:0.017897228677684375 one:0.017758705917229993 for:0.017752559205822513 them:0.017691395633051762 that:0.01551477176784714 out:0.015364621689106177 it:0.015106557617745457 sold:0.01494577516165904 :0.5039210875255291 +part:0.04794710041462111 one:0.04426565411780763 and:0.03199334047250873 some:0.023741139385922302 out:0.023043489355234304 that:0.019253064291716526 all:0.018680001481495748 tion:0.017610270723256962 sum:0.013594624907170828 portion:0.0133519075076925 amount:0.013338499659986383 value:0.011748255466907855 time:0.011526267044981088 much:0.011499652513003406 majority:0.011442764408090736 use:0.011357214323667627 day:0.01132928384755557 front:0.011328186592458002 account:0.010209057257330154 :0.6417402262285925 +the:0.6228954216747231 The:0.049314855800732 county:0.034029066548137976 supreme:0.029272057393175933 tho:0.028763818211428035 this:0.028437474266469847 said:0.028306014315096543 district:0.026200377769244984 a:0.025801262454718154 of:0.020873213688249112 tbe:0.011600347955697133 circuit:0.010789273906598357 and:0.007750672125908434 preme:0.007496404337324795 federal:0.006909756551120764 in:0.005763250432650698 States:0.005521486754298099 that:0.005141328158389049 at:0.005013933630673433 :0.03911998402536358 +of:0.28767355066866834 to:0.08775711267569858 in:0.08678131196995101 and:0.05160598694501188 on:0.04646139928102899 by:0.04519522654900943 for:0.044547789071328545 with:0.03396756772609607 that:0.033699232901107726 from:0.03075346596941143 at:0.027039283056790858 In:0.021061449543044047 as:0.017514234937992545 all:0.012543839382496166 upon:0.011844431150487573 is:0.00998972746569266 was:0.008814315973987914 into:0.008557199930727406 through:0.007781895704231326 :0.1254109790972375 +to:0.31019601080253456 will:0.13793678134185958 would:0.07774183426288846 may:0.07078528459128908 should:0.05127128910568003 shall:0.04901700088221223 not:0.04594340671139167 must:0.03257846389794495 can:0.03230794200897745 could:0.02086203652199685 cannot:0.017984019065961077 and:0.017474170306863105 might:0.013535476571922157 it:0.006941357203389574 never:0.005186754057084183 that:0.004968373522249409 also:0.0034185027334872305 only:0.0032209125075107173 soon:0.003102154139878731 :0.09452822976487903 +a:0.173411592389441 the:0.1575377612485379 and:0.07315848801870861 his:0.06285207197769675 of:0.041623244240813415 that:0.033804225350094655 The:0.03190593315714307 this:0.031011661052424862 A:0.023161596239506213 my:0.02072285474069228 in:0.018596244930366886 her:0.017768512881560516 same:0.015562102309306226 one:0.012494951364671917 their:0.01217752302364193 as:0.009824887607500565 tho:0.009330486828119669 your:0.008313448663588066 such:0.007689540075350809 :0.23805287390083463 +:0.04587173433558034 it.:0.0316215229568394 them.:0.03079651634647071 country.:0.013366000299629232 time.:0.012701738563812738 him.:0.012233893789350855 years.:0.011619743321554885 life.:0.009509597230422747 us.:0.008327334650592384 and:0.008099319018082309 year.:0.007985622798995519 work.:0.007653993808917228 people.:0.007335962838719181 day.:0.007208012685196046 State.:0.006908789297227504 home.:0.005987255522081261 again.:0.005954652591877889 said::0.005868229430914658 business.:0.005630082108250595 :0.7543199984054846 +of:0.2800317264935679 the:0.14660692657320096 in:0.08330172894260816 to:0.057096797385687535 by:0.04613566898932022 for:0.042679136244065066 a:0.03468967058792231 from:0.034216960755263724 on:0.03323468572164766 and:0.028368387657810298 with:0.024984908410078964 In:0.024755122135977334 at:0.019420653687305837 after:0.017752753349166178 that:0.013288227030638868 into:0.011620764018879216 as:0.009366523959516398 these:0.006956389540721437 tho:0.005715583394798025 :0.07877738512182386 +to:0.31135418047303837 with:0.10151068740377896 for:0.08615346185283239 of:0.0762203892433502 upon:0.03286398425757672 from:0.028891747749530152 by:0.02395446242046586 at:0.02096205122948024 against:0.018840821816188607 on:0.017947198160053864 told:0.01616143518979778 between:0.014043692693235894 asked:0.012782458438464421 in:0.012539676713148871 left:0.012208932708518964 help:0.01100095286998319 let:0.009383790560421497 around:0.00921549020013444 made:0.008839043047511572 :0.174125542972488 +and:0.07558940021936399 recorded:0.030196237618668006 was:0.028917161578042846 made:0.027969746247669736 that:0.027730098932509103 o'clock:0.025060522019555328 up:0.023026552239529506 is:0.020398277211376416 found:0.02003101797656537 placed:0.017482208134164214 out:0.016937164562539058 place:0.016819459500107596 interest:0.016629321966808677 him:0.016002796715253755 situated:0.01573420479581609 it:0.015128305982428461 them:0.014715943643665314 part:0.014646613000297721 interested:0.014450471929902294 :0.5615344957257364 +that:0.12228136109129865 and:0.09047534408892637 but:0.03246845337445509 it:0.030763579477329512 which:0.01406978625150084 you:0.011461260537231253 But:0.011238143683728472 as:0.010497985567492853 And:0.009951837148707773 or:0.009110202021026815 them:0.008143169432856161 even:0.006811913746092721 for:0.006716110461401021 all:0.006547217981429164 was:0.006503500765848559 one:0.006194360985896287 men:0.005919551835265031 That:0.00581076206781228 that,:0.00556151985530021 :0.5984739396264009 +and:0.24706830892291318 that:0.10581403270361707 but:0.06832698770030182 or:0.028826932109377642 time:0.028173624705632148 But:0.026310080479997344 And:0.016883503956832243 and,:0.015291199607653216 day:0.011997688630250775 especially:0.011715883432380041 was:0.01156484254761535 even:0.010808754359386868 ago,:0.010210772482757927 them:0.009961410268381567 which,:0.009744086271839283 him:0.009591042656597075 come:0.00952973941268262 it:0.009520918959451941 not:0.009438899215178547 :0.3482212915771533 +the:0.10336983496615278 of:0.07543688350053557 and:0.06641644690227996 a:0.04455859280514038 to:0.03951391183407334 be:0.030966861721460015 in:0.030146059226641746 was:0.02880487163345596 is:0.016456555486564176 :0.014268559619302467 at:0.014138495910890675 for:0.013691162369318591 or:0.013653239614092283 .:0.011458704682463305 Mr.:0.011455809661350676 his:0.011360920796348824 are:0.011169575397813998 were:0.010356811134618766 been:0.009941051066127606 :0.4418356516713689 +the:0.1454500361787387 of:0.1080247151493501 to:0.04516715868785427 boy.:0.036249098323069925 and:0.03403580073245388 girl.:0.032660326140049385 a:0.03171979252021135 in:0.02714044436566853 for:0.02365213940166824 be:0.021942286684630472 their:0.021087116084698817 his:0.019774122064073623 was:0.014637031197642503 with:0.014008395154201525 are:0.012730720509515858 is:0.011363112041341867 as:0.011357870543086747 from:0.01063391638067422 were:0.010589399829418696 :0.3667765180116513 +hundred:0.013633628820093018 ;:0.011172311961148602 him:0.009807052834026905 one:0.00914669734384353 feet:0.0090219372983598 up:0.00838318558829166 mile:0.007527126877816727 feet,:0.0071805242500254255 time:0.006879602834379732 man:0.006817451499927337 it:0.006300585667639516 it,:0.005903705234588485 out:0.005451849962934835 :0.00538718305729827 ,:0.005295204710281874 and:0.005240008239108335 here:0.004938150073064577 water:0.004837308913464981 them:0.004796443021708541 :0.8612800418119979 +there:0.175987737928283 There:0.1048591008701476 they:0.09881542319300148 who:0.04970707285381582 we:0.049320570984550595 and:0.044281109753147335 They:0.039431597877366886 you:0.037385535287012224 which:0.03660230750980733 that:0.034012544464297245 We:0.019814798413730683 These:0.012117407226870075 people:0.010028757779607092 or:0.007693321687394466 You:0.007534546549631837 these:0.007145691427242608 them:0.006980205367155176 it:0.006774446588831908 as:0.006422483977638621 :0.244085340260468 +a:0.41530690144709376 the:0.11413809872245488 very:0.05109147704426034 but:0.04036752043917508 of:0.0341369072805336 and:0.02983917514203853 A:0.02562664574049349 is:0.024060939450024542 with:0.01878750321882679 The:0.017887249953961355 his:0.017351533870941377 her:0.015008060925763197 as:0.013867746946525232 that:0.012393113545193396 was:0.01040093229151475 this:0.010055532683032388 no:0.009859743004332294 their:0.009534249279293798 by:0.008969129070318525 :0.12031753994422266 +of:0.17254702276826017 to:0.1201029778359019 by:0.07856909390892722 for:0.0772883570324176 in:0.06953227277618108 and:0.06807748871567267 that:0.060448364856269844 with:0.05061545920223546 as:0.028990756702862504 at:0.020369897288552236 from:0.019103990691783746 is:0.017967864803862733 under:0.017690103936848042 when:0.01616446347727134 In:0.016089889309900855 make:0.015428390782524991 on:0.01469076237326216 upon:0.01392833153566506 all:0.013873077710850563 :0.10752143429074985 +and:0.18687317584131127 of:0.07702114267165312 to:0.06364579527721455 that:0.056142829638405216 if:0.04848252913934469 for:0.04122163237323384 but:0.04053992179569586 in:0.03861657626611655 when:0.03209978088478309 by:0.023827744328963504 with:0.023436742122924285 is:0.022259491033985973 all:0.018306911597511848 was:0.017913409330170025 at:0.017795706366341348 had:0.017520464574556135 If:0.017455220161991542 have:0.016897953195306358 from:0.014732689340620593 :0.22421028405987017 +of:0.127815505268636 the:0.11803332483846372 and:0.0627686633387035 to:0.051202863597944376 that:0.03666336840263862 a:0.03288186954197832 in:0.02703361401023453 by:0.018311504408219315 for:0.017910556786772794 at:0.017514495476417553 on:0.016061643268865885 The:0.015932118152105774 :0.013808294969798292 with:0.01149698550295708 from:0.011220523766650939 which:0.011060661789541421 his:0.010558183512187676 -:0.010130091782359553 as:0.0100843928401382 :0.37851133874538645 +they:0.08855623179353313 he:0.08424244931728556 you:0.0839968510452523 and:0.08261024157736108 it:0.07253677663293162 which:0.0663831877574307 that:0.052772326265271646 who:0.04956446834851761 we:0.036405150919123275 I:0.03252434637273209 It:0.03224949355390267 He:0.019925725748043358 this:0.01714637094671898 she:0.017097901802478135 They:0.014793875597559411 as:0.014430473616631847 We:0.01316247588126856 This:0.011265132062412695 You:0.010727044577227729 :0.19860947618431762 +the:0.2757205568702366 a:0.15208817990985118 and:0.05702994110470831 of:0.05104833910924055 his:0.042001454794825796 their:0.04147464773735422 any:0.04048149175823836 to:0.025684477375113 with:0.022403450363569676 in:0.02153885994172069 no:0.020140472075647536 large:0.01912616468578126 our:0.01812678930731413 The:0.017024083440550494 her:0.015067353769052947 or:0.014824015603981645 tho:0.01463648692967942 by:0.014577849475298839 its:0.01427089197458384 :0.12173449377325149 +one:0.015552536992080472 more:0.014252271697624306 on:0.010631301787611593 day:0.010222750824534239 two:0.010216157614982159 person:0.007504694644314241 in:0.007364820929323563 man:0.007179188731169107 law:0.006205362369136604 action:0.006166303509128973 and:0.005659786788634644 city:0.005177234665142273 three:0.005130416479837977 State:0.0047265097104810415 to:0.004696031397422901 ten:0.004594585978494318 of:0.004463781172886088 town:0.004231879326219736 year:0.0040256313925199315 :0.8609987539884558 +the:0.261193226934838 to:0.12062555769491722 and:0.10774629361020595 The:0.06952574148857228 will:0.04222169014587138 that:0.030054898250524466 this:0.026204876160968647 we:0.0212512734666742 they:0.019972433376767077 I:0.019722648182819966 a:0.019684789031139845 can:0.018321723666791533 or:0.014413533196444735 not:0.013458121397652359 any:0.012138278043077202 tho:0.011079251000576742 This:0.010466787257991154 which:0.010455330867660009 no:0.009834072312663592 :0.1606294739138436 +one:0.1028303141280697 part:0.05963429477052991 out:0.04766456937681193 some:0.031418679026461914 members:0.030764490253327767 side:0.029940657362655835 portion:0.022063658796890564 office:0.020457735219956013 member:0.019726706386316174 end:0.019666887540649894 tion:0.018667441728710307 parts:0.016814747270460957 people:0.014112771422418794 all:0.014072739582212475 any:0.013183573287639892 One:0.013083578354183906 that:0.013024335602903442 account:0.012482348155001894 many:0.012077825070275192 :0.48731264666452345 +of:0.2997054628062842 in:0.1545661070180098 to:0.07780485539322131 for:0.06668665737846419 and:0.04819740671746034 with:0.04501504497729864 on:0.033098796552663685 by:0.03196856709733441 that:0.027735514201775884 In:0.026715377263575917 from:0.02105203914946498 all:0.020683896601606622 upon:0.019180270889995944 under:0.014046054747387895 pay:0.009924150163564566 as:0.0089795184962798 against:0.007925128735472008 into:0.007825907977407964 over:0.007523091723502409 :0.07036615210922943 +the:0.15540520990433537 of:0.11606636643087125 in:0.08541859451048953 and:0.06650964592571916 to:0.04645772414224385 a:0.040769191294660535 In:0.022404181577599235 by:0.022173837801886948 for:0.021193385449336535 from:0.016752805441857865 with:0.01553626281534919 at:0.015015732477259796 The:0.013340315892847366 :0.012168498354979514 tho:0.01148026488317377 or:0.011034667689167343 that:0.00924269313103292 his:0.008402565195209722 an:0.007244986313462895 :0.3023830707685172 +and:0.05336693349729768 carried:0.04331291518453064 put:0.03620484062651553 called:0.032814197668951016 go:0.027922250573608774 was:0.027775906437845416 went:0.02751360077637316 brought:0.026542409904829062 going:0.0230575985433666 came:0.022886344548254917 placed:0.019899617037848576 held:0.019600930549121827 work:0.01716303218507028 up:0.016078210042824566 up-:0.016020977125258008 made:0.01353674326315076 out:0.013079925703973842 interest:0.012755637319960711 is:0.012446502462337994 :0.5370214265488806 +and:0.09674008546754541 at:0.07020666146146226 a:0.057431872825702064 No.:0.049159409274203446 of:0.03482454142271063 about:0.0346855664602924 the:0.032347352547560174 in:0.025947438788743317 lot:0.024407254176875216 than:0.01991879113917729 as:0.019342849997316433 to:0.018315412382642574 or:0.017793562560044683 was:0.01676852492932908 No:0.014974993284203411 is:0.012120962106174148 that:0.011582125979457425 from:0.01054901743494671 for:0.010082477259631342 :0.421801100501982 +the:0.2774879456826396 young:0.05542957617498315 business:0.05275474477605493 of:0.04883323869871782 and:0.04727377049492329 The:0.039333933143487494 two:0.03636140716830882 many:0.026284033248746858 by:0.024254857124123997 all:0.02395837301215019 other:0.021561775188971875 three:0.019757160096621193 good:0.01877499376250942 tho:0.017115968853750062 white:0.015815783889821588 these:0.015151656094478438 both:0.013522715602963484 few:0.013120227271945971 are:0.012249390801516168 :0.2199584489132856 +is:0.1300949053123692 ought:0.06235942008217411 are:0.06072445398663133 seems:0.05697318922100556 was:0.04954471475520722 not:0.048536362204045544 said:0.03881623685409472 seemed:0.03220746110521765 as:0.030923473227594384 it:0.030881869856406088 claimed:0.028226689520969073 have:0.027725540143517465 and:0.027557757709861613 likely:0.02587900806524851 seem:0.02574969309575762 supposed:0.023317446089120043 had:0.02145961764731352 Is:0.017651730366473797 proved:0.01677680343414685 :0.24359362732284573 +of:0.09129790931378902 the:0.07369883040827747 and:0.047842263382354346 in:0.04189055351593407 to:0.04045875475680249 a:0.03542341257202578 be:0.02020462051672066 for:0.01979292654746225 was:0.01760256398103379 at:0.017380150555488715 is:0.014984483003968216 with:0.014047653760730413 by:0.01374644383819499 :0.012670486581795598 In:0.01200961464556976 or:0.011563835749786333 from:0.011391516893522809 are:0.011273104484969465 that:0.010755276030689069 :0.4809655994608848 +of:0.09129790931378902 the:0.07369883040827747 and:0.047842263382354346 in:0.04189055351593407 to:0.04045875475680249 a:0.03542341257202578 be:0.02020462051672066 for:0.01979292654746225 was:0.01760256398103379 at:0.017380150555488715 is:0.014984483003968216 with:0.014047653760730413 by:0.01374644383819499 :0.012670486581795598 In:0.01200961464556976 or:0.011563835749786333 from:0.011391516893522809 are:0.011273104484969465 that:0.010755276030689069 :0.4809655994608848 +well:0.0912532887384494 far:0.06666422640810185 and:0.06631755541598956 so:0.060097049566795256 such:0.035834446319809546 soon:0.03279002868037804 long:0.028488421983088343 known:0.02338398642464162 just:0.02264210728714032 much:0.02169006120449043 same:0.01984032332921496 that:0.019538513786166948 is:0.018258286842918862 it:0.017908694633248255 him:0.015930005018247234 them:0.014345873231736098 but:0.013278465097971252 be:0.01317022528182019 regarded:0.012515193957209188 :0.40505324679258264 +and:0.11018296848274921 to:0.09871908664688024 of:0.07238801728282263 that:0.044483596861422815 as:0.03004008335686994 it:0.028163610819088206 or:0.022632862447507524 is:0.021338043127383563 have:0.021258158236438007 in:0.020656616035987726 had:0.020439594169525874 not:0.015645690462436263 has:0.014543601385349405 which:0.013523563474093591 was:0.013089557122962564 the:0.012259810292771832 on:0.01134984400459111 with:0.010280271479862223 for:0.010099866948414747 :0.4079051573628425 +was:0.199933815254102 and:0.10851272739455091 were:0.1069399019953923 be:0.10085284981252016 been:0.09697504852032901 are:0.050811406614206016 is:0.040305675954074575 being:0.02977368938795666 had:0.02940601559532399 have:0.02924962868273747 has:0.016836294637316205 well:0.015898203694725555 he:0.01582300164475578 or:0.011279474401919428 I:0.011071869146545517 bo:0.006646518328508851 who:0.00635806710772743 Is:0.005608627334435651 then:0.005510076578164339 :0.11120710791470817 +and:0.18742286259202173 or:0.09979633594610503 that:0.05378681832616168 but:0.05113970257599045 not:0.04618029177191591 for:0.022682201448390123 But:0.0211395260896251 is:0.01918707889812733 be:0.01889903951808135 And:0.018357712692663904 it:0.01480871806736091 nor:0.014684457524038345 I:0.014515527062474208 of:0.014482404652150577 to:0.014300390273994814 even:0.01360174451195924 was:0.011230695793638864 you:0.011106118657013839 it,:0.010425954029009211 :0.34125241956927743 +I:0.11888691765024496 we:0.09829849382722719 they:0.09282503731307568 who:0.08220520983474396 to:0.0733642164000323 would:0.06977768058925092 We:0.04210301424655619 you:0.038900161196849796 and:0.03762328921985433 will:0.032496957500656606 They:0.0246791724333767 which:0.023741666371409568 must:0.023329827999252428 should:0.023265882302351295 not:0.020721933469534208 could:0.01813571547147645 may:0.01726196063393167 might:0.01695854209863897 1:0.016933964209188475 :0.1274903572323483 +the:0.3214282895933048 this:0.18033360323945966 of:0.05138969481930833 to:0.05060566696349216 said:0.04698660323127799 supreme:0.04255536298487417 district:0.03491230382791695 a:0.022744335266067034 in:0.02097773178016005 county:0.019166973508631568 circuit:0.016728535913892215 and:0.016053368999438603 that:0.015236858161760819 The:0.014843795224204146 tho:0.014198041087607355 at:0.012607981316062498 on:0.012337825712712943 federal:0.010444657326999843 preme:0.009586475942928293 :0.08586189509990064 +and:0.07558940021936399 recorded:0.030196237618668006 was:0.028917161578042846 made:0.027969746247669736 that:0.027730098932509103 o'clock:0.025060522019555328 up:0.023026552239529506 is:0.020398277211376416 found:0.02003101797656537 placed:0.017482208134164214 out:0.016937164562539058 place:0.016819459500107596 interest:0.016629321966808677 him:0.016002796715253755 situated:0.01573420479581609 it:0.015128305982428461 them:0.014715943643665314 part:0.014646613000297721 interested:0.014450471929902294 :0.5615344957257364 +in:0.01828609160914749 up:0.013466992727875762 men:0.012013507688355027 him:0.010955836693036097 them:0.010426573522196213 out:0.010398142815451837 it:0.010325334726927574 it,:0.010277275330636748 work:0.008628481509372383 them,:0.008452565945353511 him,:0.00830630574280977 right:0.008251355273720107 appear:0.0081514598753829 made:0.007975399405627604 city:0.007274042056422119 ;:0.006550700796308374 country:0.006451750304127432 of:0.006401822730755554 time:0.006392591530942452 :0.820013769715551 +is:0.14397613971127043 was:0.10918391161697218 and:0.10323194667932051 that:0.08940855111459096 had:0.06021269227128647 be:0.06006695923890707 have:0.05159201503086257 but:0.04150574762586447 are:0.027957635789315673 has:0.026192060747296818 of:0.02223759552703632 Is:0.021553511015686918 for:0.0205014308339341 were:0.020469887374320928 been:0.01806647475126163 with:0.016303959666759536 by:0.014553074465336165 in:0.0138131167653428 which:0.012595182115646602 :0.12557810765898786 +be:0.11780008116913351 was:0.10494181861506967 and:0.08955353015295288 been:0.06381091175204245 is:0.060117198585295205 are:0.037249101189997746 were:0.03689148086333705 the:0.03191643253885115 he:0.03170140532980151 had:0.025450444054517043 have:0.025016278419066576 of:0.021702932398338447 to:0.019246371740201933 a:0.019045527751850998 has:0.018898137255671178 I:0.013171060070013741 being:0.012971672736761591 so:0.012717183591094958 not:0.0121399293836347 :0.24465850240236767 +the:0.48555287047480117 to:0.11549004734577877 not:0.037451828601282974 The:0.03718652461092625 a:0.03513399090306826 and:0.03040872914097933 will:0.019170866234865885 tho:0.017603720852091477 or:0.016981409034418988 I:0.016115108743103443 would:0.012882021153294829 no:0.012700144719811375 first:0.011196166728141579 could:0.010336916776846769 may:0.009434345312353038 within:0.008389960133829233 of:0.008271165796890375 in:0.008154928942870225 shall:0.008122112876313814 :0.0984171416183322 +the:0.14048602411779254 of:0.10252225631561868 and:0.07633183975731359 to:0.03245895674061561 that:0.030733737144535016 The:0.02900268575179401 in:0.027931447478085947 which:0.018752304155935415 or:0.01571308762550976 :0.015055749982663399 Mr.:0.0149342694058751 their:0.010852954179470109 on:0.010754035534755927 as:0.01048165637565865 for:0.010288939626440372 said:0.01005519865138013 tho:0.009754500854680081 he:0.009279558727176576 a:0.008993895187521092 :0.41461690238717797 +and:0.1391916436332186 he:0.09822800670086898 He:0.0615430369021375 who:0.05133045331615875 which:0.03896269998481474 It:0.03732790498073249 it:0.03531919920610669 be:0.03185142857685985 was:0.02868021853509279 is:0.026250793008360924 has:0.024087298748966965 formerly:0.023287485411577505 then:0.020486508535863035 had:0.01968874170894337 also:0.017035611727124134 they:0.016844906803777215 now:0.01587825430793062 that:0.015328746465056584 I:0.01526330668519265 :0.2824137547612166 +the:0.20476302256739404 and:0.18640278090168735 it:0.04516732270048831 that:0.04284081058129465 It:0.03980394070462247 of:0.0388501614668945 was:0.02274104098685897 he:0.02105628871737876 The:0.019422775450714535 all:0.015165217426255378 this:0.014093659341151043 or:0.012893642367594764 which:0.012855101315568829 on:0.012202330748977972 to:0.011895510056962133 be:0.0111346148017615 other:0.010990301583258763 at:0.010915064177787067 tho:0.010140355334626901 :0.25566605876872206 +as:0.06931392982974462 according:0.052071562389565784 up:0.0511867300210483 and:0.040371568633051955 went:0.03351644485287816 back:0.032358406609281 regard:0.03073407747799069 feet:0.02852138506231652 down:0.026379903432040268 owing:0.02466642634685871 due:0.023695193974505355 go:0.022910973192184297 reference:0.020802802907016128 came:0.019883741951819873 sent:0.019874244915639484 attention:0.019565955494145405 come:0.01885185084678811 given:0.018792390567602263 it:0.017366961307524745 :0.4281354501879983 +:0.10585844427792925 it.:0.01878821015470907 them.:0.01164423410207106 country.:0.008354313261873955 time.:0.00831470595745467 year.:0.0073680656814144605 .:0.007144875567312519 him.:0.006157176560297036 day.:0.0059739126946664915 years.:0.005043075865289578 of:0.005015361013874276 ?:0.0048740780435435945 people.:0.0046659291460441725 work.:0.004571032659072315 tion.:0.004145444347401866 State.:0.0040590484127754406 city.:0.003927993377286922 States.:0.0038011865379012134 world.:0.0037461737735271393 :0.7755467385655549 +and:0.09273268011739404 of:0.09102990998549004 about:0.08908688640139911 to:0.08736656904905518 or:0.06986636881421474 at:0.06976228565523734 the:0.06742515315546382 for:0.04650754897003995 from:0.040529685513628 in:0.027887918496165297 than:0.02525619065103035 within:0.019979972875611485 with:0.018638924484242404 hundred:0.014347039214702617 thirty-:0.012671379676328148 nearly:0.011747526969594097 by:0.011640680502759492 least:0.011115437325441154 a:0.01103696972853482 :0.18037087241366792 +men:0.016579335881369076 city:0.014740904547981302 gold:0.010293072823897704 county:0.010058670823929429 right:0.009862225175817021 life:0.009611214447002404 York:0.008991748612579476 rights:0.008848043878034806 out:0.008819749585518266 one:0.008428490652323255 peace:0.00838837172367391 land:0.008331069812801394 man:0.007948690656343573 friends:0.007743968458300517 time:0.0074498730805715495 house:0.007358348333995454 power:0.007316802753667242 street:0.007274985982036955 state:0.007011728763952972 :0.8239427040062037 +the:0.17034803702834866 of:0.16478576068567413 and:0.07945112306502913 in:0.03896185675938069 a:0.03562221708487643 to:0.035439101733344566 for:0.030687117679809823 at:0.024984480654411244 with:0.014924020776788 The:0.014750006642947514 or:0.012386431095170422 by:0.011320797492441128 from:0.011082218305861556 :0.010558076052764443 their:0.009260906100244267 tho:0.00878438972500324 that:0.007759480323132032 In:0.007613942983903006 his:0.007302444796519399 :0.3029775910143503 +of:0.14140911374913043 the:0.08406324275408093 in:0.051712664696044124 and:0.042016144218116745 that:0.03344666676867289 to:0.027709869064190353 The:0.023638573607111874 for:0.020483914568636966 Mr.:0.017669174058513534 which:0.016972368561751192 as:0.016259401671191127 a:0.014920071848964473 :0.014646146896987337 In:0.009940105168995288 or:0.00909223143114935 such:0.008359976573547796 when:0.008218759560201584 -:0.008178509589941811 by:0.007801238855262815 :0.44246182635750936 +the:0.40863912784722567 a:0.10475662748933058 oppo-:0.056430925940006905 one:0.04181719322600843 and:0.0390276823535732 The:0.034183702994835086 tho:0.023780159247529777 of:0.018682910830049075 county:0.013262647981485106 said:0.013214506710834358 state:0.010970313637801708 present:0.009250431793495167 school:0.009203539758860398 thousand:0.007857312088319838 tbe:0.0077815768516384535 that:0.007180987029206537 new:0.006621300994202693 our:0.0061488637856857604 other:0.0060741994959967165 :0.17411598994391453 +the:0.6930337479163655 a:0.05720673967257064 tho:0.026414478647304743 The:0.0259798375513171 large:0.02208932919335815 further:0.019312214954587396 this:0.018698718244497908 principal:0.016190098003379484 said:0.014304183833943395 any:0.012415573613260166 tbe:0.010449706459165988 great:0.009377147939621572 whole:0.00895572779955233 penal:0.005403671320744753 total:0.005307489944522821 that:0.004960160249756654 enormous:0.004938733530881647 and:0.004848933854693188 good:0.004262823290425281 :0.03485068398005122 +hundred:0.02334136986593815 up:0.005482494641173394 men:0.005366536521246011 Hundred:0.0047587970519216575 John:0.00441808156134956 William:0.004390720675819281 him:0.004016828614280843 ;:0.003997112205305733 due:0.003721199871732 in:0.0036582900032443304 time:0.003637206863828461 James:0.0035594902370151707 out:0.0034878448964120057 .:0.003467980723571515 1:0.0032804584819785204 day:0.0032444781513863933 ,:0.003058139385740603 :0.0030314555521939613 Robert:0.003005471634785646 :0.9060760430610768 +the:0.17234101881375233 and:0.0723308580507978 a:0.06418362524859451 of:0.059381903314211774 to:0.05765128534513001 so:0.0292258426364823 is:0.027247612130850953 in:0.024298181821023074 be:0.020836055953937775 was:0.01790457325883464 Mr.:0.01622639783612973 tho:0.012553953887538211 I:0.01099826163396415 he:0.010910273396485398 not:0.010754844629789139 at:0.01064958641021041 :0.009679095332540733 for:0.009454446178783427 or:0.008882500654999364 :0.3534896834659443 +the:0.1847564407057139 and:0.10126478200649837 of:0.08831264818219191 The:0.05781217644693712 that:0.022136138620238693 these:0.01631671668090445 a:0.014513194758497697 or:0.01417786516951797 to:0.012988822898574776 their:0.012329949427663977 as:0.012287881083578981 :0.012262416633580412 his:0.011940145330932676 in:0.011700605535597748 tho:0.011368635516343475 These:0.011209828309073805 this:0.010982581867111285 which:0.010198916461314558 other:0.008582822905284792 :0.3738574314604434 +the:0.2990528002348869 and:0.07755104327403928 The:0.05136138957756641 a:0.04538196554081335 our:0.04061373519300745 other:0.031527163710126066 public:0.028668302572422373 an:0.028150130942464383 his:0.028004722583290304 of:0.02645219523877282 this:0.024620883572723577 to:0.019233065132381273 tho:0.018043041957832698 their:0.017685781158241168 im-:0.01761483401465983 free:0.011174463968101817 that:0.01078719008586309 her:0.010534313676299999 its:0.009704129945366558 :0.20283884762114066 +the:0.6281014927320728 The:0.07608086398458089 a:0.06837016966884876 in:0.03253504726563525 tho:0.030241752570035262 and:0.018795240149187646 of:0.017697737941054534 tbe:0.01215757325616318 this:0.011311159243299004 other:0.00825171197691828 In:0.007618943205709113 every:0.007142718797053486 no:0.005437864592933683 great:0.005393391592280868 any:0.005142943232988255 by:0.0051245180429375205 his:0.005112282931860984 very:0.00474326119943194 first:0.004137866195397285 :0.04560346142161117 +is:0.11886427929399102 was:0.11493956613793782 the:0.10300035384554279 be:0.09336514193875237 and:0.05153463049593363 been:0.04545115126137524 as:0.0335183875096534 are:0.03258812262740139 now:0.023358262755899042 Is:0.023192134604360263 were:0.022321313691238052 very:0.020815553878949077 a:0.019870784381900295 more:0.01963707233358209 that:0.01896357717410104 it:0.017320915231909786 of:0.016814893970800042 he:0.014324371642561598 not:0.01251554473508842 :0.19660394248902263 +and:0.10925101585080288 of:0.09523212351273119 the:0.08405000501377789 to:0.03771370679314594 for:0.032238150486892596 a:0.03187300563203929 that:0.029744585089495536 which:0.028819132911761403 or:0.026381580167191054 be:0.01963163098872943 in:0.01884090270315227 as:0.017358310653269916 they:0.01729463018182581 was:0.016855793796917425 are:0.01650856001629639 :0.015791018099353606 who:0.015769157903558793 he:0.015215796993336674 The:0.014218483387887376 :0.3562124098178345 +the:0.12108771560296722 of:0.06040168576140487 a:0.05905566284188518 and:0.0556505236839017 in:0.041711259610235946 to:0.03919938453748343 for:0.030301261793769203 was:0.017610658575403643 :0.016188176343127855 as:0.013784375399538978 or:0.01328646733630633 are:0.01307840996645836 be:0.012103166861265384 by:0.011866445581665783 on:0.011770955956401406 with:0.011746783281346321 In:0.011465027047526059 is:0.011413051094228912 were:0.010936423127118771 :0.43634256559796464 +the:0.16807735899698817 of:0.10541662057906837 and:0.05138367848570702 a:0.04141865232648221 to:0.0385989743764065 in:0.026264864977736738 was:0.019530675665220657 his:0.018900421021236905 be:0.017373825006196972 their:0.015767721170721456 for:0.01557246589796783 with:0.014071419046630446 is:0.012922913111931644 at:0.012690452250034052 are:0.010702713108721902 .:0.010158075558988393 Mr.:0.009672788574483367 tho:0.009612591781990074 were:0.009549306361446321 :0.391314481702041 +and:0.09585994206688762 down:0.04031816365397539 him:0.034826730212925656 it:0.031403314013596625 called:0.028369081331061537 put:0.027743685201019577 look:0.0267154106228031 back:0.026152844593880065 placed:0.025548049371548174 looked:0.02415292513170953 fell:0.022854286656851304 depend:0.022813293070470753 laid:0.01933975390414118 out:0.018914150956233024 made:0.01889728268312517 depends:0.018391157049337647 dependent:0.018117165493064046 entered:0.01757923760595749 enter:0.016371834426659966 :0.4646316919547521 +the:0.12301153479830931 of:0.09626946035605324 a:0.07908159926164016 for:0.0726957931130132 to:0.06948322093702053 in:0.06630046162871876 and:0.044147969942169935 at:0.03359865314857816 In:0.017588828327005708 :0.015005536365391339 with:0.014163804587735421 that:0.012751024034621018 from:0.012488028046183765 an:0.011621831503493472 about:0.011018554588176589 on:0.01026074079149636 by:0.009358565932256726 will:0.008544628639110407 which:0.008458715843182975 :0.2831510481558429 +the:0.16962750507843272 a:0.12398890573750558 of:0.0998973004550093 in:0.06254693989589204 to:0.0561775264286022 and:0.05430244742169892 an:0.030187144076887898 for:0.01583413729041344 that:0.014072728841136318 The:0.013946528532513104 or:0.013830643623824536 by:0.013506540516798381 In:0.012187954002001178 with:0.012041457620994851 tho:0.011204625226780361 any:0.00956982423061685 his:0.008773012691468615 no:0.008023357496202577 at:0.007838295037281466 :0.2614431257959397 +of:0.2809463524152614 in:0.18096266909780837 to:0.07517436864789735 that:0.06584126706932011 and:0.04518665421470759 for:0.043695055136114096 by:0.042639579430182074 In:0.04103578321130407 with:0.028397200204935122 from:0.02430613688234148 as:0.022233849007738716 into:0.011546190447281978 is:0.01154595050294908 on:0.010442141572288191 when:0.01036494933679995 at:0.00960786411607026 which:0.009160345807783925 if:0.008367015854624293 but:0.0077702175971639375 :0.06977640944742805 +and:0.11392243608978436 is:0.10334888263437193 or:0.09777013886417323 be:0.08027074233455954 was:0.06436567960769014 are:0.04664217560875687 the:0.04461471494671881 no:0.044488238586567724 much:0.04027264192462211 once:0.03221957686937888 a:0.027766861276071808 not:0.027300750979139875 were:0.024851191934244454 but:0.02249955325358477 little:0.021514623029693897 Is:0.018352993249016323 been:0.018345694992551044 that:0.016828480269120503 still:0.015508519109605464 :0.13811610444034822 +as:0.16573363796449034 and:0.08571069887888146 is:0.06664104729274298 a:0.05592913307041415 the:0.049109740825896024 any:0.044154474267316134 or:0.03556947839011394 no:0.03526443930836284 it:0.030098588044919574 every:0.028785568376603198 be:0.02864740480164259 best:0.028382382860361474 all:0.02723956429910817 was:0.02119871828736405 not:0.01894108766632648 that:0.017553052655589842 most:0.01645820946649645 im-:0.016161330167966944 earliest:0.014940761576465933 :0.21248068179893745 +and:0.03868242960999506 as:0.031124813427855922 went:0.02352509775927722 him:0.02196555539050794 them:0.018760608639018784 up:0.017985449426794205 is:0.017894175620344187 go:0.017174904667157563 able:0.016756848979943888 going:0.014481672239490295 it:0.014128375989346808 was:0.013277058274565138 time:0.013249953793837373 not:0.012469887553778763 began:0.012465717758716884 way:0.012105610030480113 back:0.012090864562211581 right:0.011941707822828511 amounted:0.011564315359310868 :0.667354953094539 +the:0.24036221886813486 a:0.18060004287215226 of:0.08512506900460665 and:0.07567037005789548 very:0.0479618550218653 as:0.02946111253285135 his:0.025681339406581394 in:0.025646073296609503 with:0.02303543428530125 so:0.01866679681136506 tho:0.01865144231250068 her:0.018009174305735332 their:0.01621903062782329 for:0.01482396040243809 on:0.014206277773824815 feet:0.013433350329461061 its:0.011999274222969614 too:0.011467577545495596 is:0.011343148534792081 :0.11663645178759634 +that:0.26371201840853314 which:0.08407706422037417 and:0.08370287991048475 if:0.05519030707485451 as:0.0532986282694471 but:0.04692510260970879 where:0.04614162331229497 when:0.04391988831704455 If:0.025337838206082937 because:0.021305447905250404 what:0.016647431339012645 whom:0.015888634653521132 said:0.015725518150923695 until:0.012396136526321662 for:0.012083811179246572 while:0.011775538902275829 though:0.010447683428889484 says:0.010358309072079519 But:0.010270309084233578 :0.1597958294294206 +I:0.11520378930827782 they:0.10845727135080034 he:0.09821237288786056 we:0.08860026932637047 it:0.08836008614057889 you:0.0452915776904101 and:0.03604682465549965 It:0.026194593668187802 she:0.023359704888930737 that:0.021903504436152507 which:0.0196027269483387 We:0.017907406594710323 who:0.01652192132018822 man:0.015219981785249753 They:0.013280992286338306 1:0.013055210554816636 men:0.012216834412974706 people:0.011841630383061899 there:0.011534899596067608 :0.216188401765185 +:0.06232711899535025 it.:0.015769462142378093 him.:0.011405127876641611 them.:0.010971833252102043 time.:0.010607080872613849 year.:0.007451847855612939 country.:0.006953875098819221 city.:0.0066339824935514255 day.:0.0065979836693419195 .:0.006535256760176933 years.:0.006358415154795599 ment.:0.006316899023240167 tion.:0.005906944568635463 water.:0.005829837242486552 life.:0.0058167531416722686 :0.005438438303966081 work.:0.0053797968693765534 again.:0.005308278658174802 feet.:0.005300516418453461 :0.8020905516026108 +was:0.10531555289318394 been:0.08930665754647114 be:0.08629903053759388 and:0.07635253975793019 are:0.05219348446220101 is:0.05178077384113407 have:0.04291805300733781 were:0.042915783857295775 had:0.036493987723720145 so:0.03324115516701071 has:0.030218736882727845 they:0.02760406993238056 a:0.022279466065743388 as:0.022249150519754134 to:0.0215306584947657 the:0.021293403929251893 which:0.0212188295074098 not:0.019854716523881627 being:0.01439456527805567 :0.18153938407215073 +to:0.09877936148926375 of:0.09062747513958254 is:0.0765013189765513 with:0.06736347692886306 in:0.05988815063342643 and:0.05537691982005643 for:0.04989310283352928 by:0.047397666431286255 was:0.04586557649140599 as:0.0401758673258816 have:0.02797694088858763 at:0.026785199623630993 on:0.02629512461494184 that:0.023521198840427585 not:0.022542595632933277 be:0.022390636057327974 had:0.02092006688008922 made:0.018099173822628017 from:0.017007675938243313 :0.1615924716313435 +the:0.191289624798659 a:0.10802330387324079 of:0.08583928798038767 and:0.05551761521857899 as:0.03169602359322265 his:0.030534590545863542 their:0.029470777473921222 two:0.024285040955565385 many:0.02211339385197545 are:0.019190703736102727 such:0.01897802803260158 four:0.01769705878264765 three:0.01699074908186345 our:0.016663912554619922 its:0.014019534712706387 several:0.013914898369765697 The:0.01357951957380316 is:0.013504736525375255 in:0.013499784787491797 :0.2621914155516077 +of:0.08471549299679969 the:0.0837678314178927 to:0.0558130316042545 and:0.05135800133147429 a:0.04386267725819504 for:0.023721883900578708 at:0.01928805475421384 in:0.019184541951152052 that:0.016173079310546765 or:0.015158119035373742 by:0.012501964695267442 with:0.011657666569313841 as:0.011606153959871636 :0.01142386556361195 be:0.011128064496004031 an:0.010894300827829235 on:0.009977512991180661 from:0.009780776070097254 -:0.0096105586767153 :0.4873764225896273 +and:0.08728758291352741 made:0.06579855905671722 or:0.033231196422626286 caused:0.026679375674946014 that:0.025713523393896043 accompanied:0.025153920534004257 ed:0.02267253138172959 was:0.022341200968088826 done:0.022037801910558645 followed:0.02147893950408373 taken:0.018541450077363398 but:0.018088332376961384 up:0.01771123917410804 him:0.017586853380262356 given:0.016616708891438445 used:0.014919134661733257 shown:0.01476913921384577 it:0.014365144888549475 them:0.014199150110757333 :0.49980821546480253 +one:0.08877702728285015 time:0.03033340433003292 and:0.028992797176958195 day:0.01913436885432233 that:0.011233169442875428 man:0.010452462695461115 part:0.009326142691551234 out:0.008946891519844636 One:0.008184018934402095 action:0.008028340688324151 portion:0.007544812830532896 end:0.007314879983898392 each:0.006965925671596271 two:0.006542665086659068 it:0.006454996414518193 any:0.006430041840126089 members:0.006328753015993616 notice:0.006226436221451957 most:0.005910721037496035 :0.7158721442811051 +above:0.27282497832832286 man:0.09985142699725341 be:0.04048655670748141 and:0.03858658492694915 was:0.03560925995420583 he:0.028437775567468387 the:0.02736762609474953 been:0.022741138841794364 last:0.02220073520011826 were:0.016205859869697886 is:0.015869139857407687 hereinafter:0.012799306350557104 a:0.012620503260032754 are:0.01175301150237468 following:0.011076649199705402 I:0.011073369044526367 first:0.010414414191373624 it:0.00915709269161778 herein:0.008302121244718175 :0.29162245016964533 +of:0.14028659793583664 at:0.08459234212187038 the:0.07858394823577386 to:0.046806642649244286 and:0.036730720290479586 by:0.032544229138507075 in:0.02065329473228392 from:0.017768801820311857 a:0.015543121358040427 on:0.014268410690463751 :0.011420872869381522 as:0.010718501147067896 with:0.00868932908317219 that:0.0076256738191540835 for:0.0071957472543285475 -:0.0054802661335908295 4:0.004979438093548836 said:0.004856570772734286 or:0.004803072044760743 :0.4454524198094493 +and:0.1330263536773418 or:0.110297059388707 not:0.09862183872727404 will:0.0661803069506619 would:0.0537196741551501 can:0.049198625227821605 could:0.046233380884834197 that:0.044916958622232696 may:0.03116562580680978 to:0.02893732371690175 shall:0.021714899666465552 but:0.020171166485492317 should:0.01987780317944 you:0.01987511061719346 might:0.019455572941733598 do:0.016187949345785952 they:0.015246065876183339 had:0.015141957543259196 who:0.014269649167600353 :0.17476267801911136 +and:0.10061764781601369 to:0.08866595723951184 of:0.06505960296474929 the:0.062334135350692814 in:0.05597926429488031 a:0.04555795133969895 or:0.02230168793167191 on:0.017731458449768117 that:0.017593462787560982 In:0.01751113168271256 for:0.01608046873073266 with:0.015315159655669805 I:0.013167878041371024 :0.012088875347043865 which:0.011470200728652883 his:0.011450861974565801 their:0.011400598598694614 at:0.01061587099018849 will:0.01010162873978307 :0.39395615733603734 +of:0.07503645111500423 to:0.07264476347900395 the:0.06548918194916983 and:0.06380975888952169 be:0.038402835218196825 a:0.0305220516969499 was:0.027548216375016688 re-:0.019121434020034675 for:0.01908661686432892 is:0.019039318734989145 are:0.01861426379138935 in:0.017261425390502665 were:0.0150081851099556 or:0.014771028615010682 :0.014460810407977458 been:0.014137074009157908 at:0.012047409084395909 that:0.011530608596044637 his:0.01152679673753536 :0.4389417699158146 +w:0.2773666372673264 the:0.11635559314146068 and:0.06606390210894653 a:0.056795274921523094 of:0.04053149316032581 The:0.01778833345826341 was:0.01759098859568181 at:0.014848273308594642 \\\\:0.013485468566784939 in:0.01201383209850935 W:0.011911944736572654 :0.009366637195796099 for:0.009365931897608168 with:0.008394598377376617 by:0.008236808094933337 tho:0.0077911110904849475 his:0.007012160334945441 is:0.00628981565433696 A:0.006046960122056351 :0.2917442358684727 +the:0.19124203302750106 a:0.18485518180045185 and:0.07185961267803828 of:0.048626071107399194 that:0.03451969106198595 with:0.030318669627305124 be:0.03019794116049268 to:0.02243431395474437 was:0.021241040002905432 in:0.021174372971005107 not:0.021123318375741548 have:0.01979223672239406 is:0.018988011199314266 The:0.01895354819103458 by:0.018741222907697114 had:0.018213738425041318 which:0.016746948075555337 this:0.015550992061299104 he:0.015412821033333022 :0.17900823561676057 +the:0.39749834532651884 a:0.07520030034269234 and:0.05540858759821703 The:0.03273515726769502 tho:0.030061875542463562 of:0.020144331424922633 tbe:0.014929647509541684 in:0.014268129706664795 or:0.013333166761078447 .:0.013287381914101323 an:0.009000188755386574 to:0.00880680429595084 :0.007943763822197133 Mr.:0.00773879605474787 by:0.007328417831573476 as:0.005922572098978465 for:0.0047526933692942485 that:0.004736121968310169 on:0.004594595720579333 :0.2713091226890862 +the:0.4665367416823316 a:0.14085573461374548 his:0.03998875599274162 The:0.030909512867550178 tho:0.02725833990244311 of:0.025309935855943887 that:0.02460804080988826 any:0.020013742608913043 whole:0.01542874017617865 my:0.015163885478157911 one:0.015109160975782167 this:0.014708369627571678 and:0.014098927516327464 dead:0.013821430921601001 great:0.013227910116017495 every-:0.011157479711934792 human:0.010055353906594417 any-:0.010003645561194301 tbe:0.009722282860952796 :0.08102200881413016 +a:0.21211538322092624 the:0.19546933793587096 any:0.0837433263674313 that:0.06392555342730763 this:0.03900466156601476 every:0.03320437776626297 greater:0.0317962037514499 latter:0.02445227455811817 no:0.02194048191245243 first:0.02122680174566319 in:0.019145450321797694 and:0.01833696914000321 or:0.018018366847473998 large:0.01717044034959002 other:0.015696659241908387 early:0.015427668332717937 upper:0.014960184655747284 take:0.014893052348053108 as:0.0127088152040228 :0.12576399130718802 +that:0.21096725926679571 and:0.15623934293760913 as:0.07924633975454849 which:0.07116440554189382 but:0.05096271591352038 if:0.03839253456271755 when:0.034417033413353365 If:0.026609450597322618 what:0.016531888366733933 where:0.013563266538015544 And:0.011562006338432816 But:0.011496705287689112 When:0.0111455103110385 because:0.009775425948144643 whom:0.009106882543345308 until:0.008592716730133494 the:0.008407966493589963 so:0.007693816552254848 of:0.007557800633947767 :0.21556693226891302 +put:0.12371369368426006 and:0.06680203447255843 of:0.05059327406535474 as:0.04610552649139643 get:0.042754561595506724 for:0.04209147993042343 threw:0.04160152096553423 make:0.038351411858141636 take:0.03710205540739089 that:0.03624821998283203 to:0.03246349136774865 with:0.029879928242302255 bring:0.028885846574716618 carry:0.027705725382831396 in:0.027321645916582222 throw:0.024843836096100018 on:0.023574748362748487 keep:0.022800653820568725 do:0.021783836259052815 :0.23437650952395023 +as:0.05371553053267314 went:0.045048697059703796 feet:0.04253874570471837 and:0.04146946765130272 up:0.03312495157725753 back:0.028825053087392666 according:0.028498713277253677 sent:0.026667291721505813 returned:0.025936444720756006 prior:0.02387623144392152 regard:0.02316535244595166 addition:0.02272851821865381 go:0.021681645992996795 came:0.02167516359475802 down:0.02088949877505571 reference:0.018880348697339133 belonging:0.017806431389115564 street:0.017679553679997677 over:0.015326486519994666 :0.4694658739096517 +the:0.13246470678280328 of:0.07672688546848537 and:0.06603455800867254 to:0.034222324682372865 in:0.02335531874253823 a:0.022145397296312284 by:0.01920907554456461 his:0.015048888681478051 .:0.013334893852295235 was:0.012963451898155834 as:0.012827995619514374 that:0.012113853590780344 Miss:0.011817326052026466 :0.01162609833764767 Mr.:0.01138123287356678 be:0.010574439425282208 or:0.01042372809766736 at:0.010406977856112096 for:0.010327553140170458 :0.48199529404955394 +I:0.2270757494202284 we:0.12198451299124506 they:0.12132007300932493 We:0.08226272443949183 who:0.052078621192277526 to:0.04674868558565357 and:0.039139007277529315 you:0.03728717086809822 They:0.028424842485011023 1:0.02184088342547565 would:0.016222940085224225 "I:0.015062482890720322 will:0.012269401432579468 could:0.01087993986707566 but:0.010327133678487822 can:0.010152250372158306 people:0.009656710944150326 he:0.009398595408284695 not:0.009244240665470645 :0.11762403396151297 +the:0.4071374189315913 and:0.06449181461132415 of:0.02892866618288876 in:0.028670005984162618 The:0.02603617389223924 tho:0.024993820467459137 a:0.023579040051412606 to:0.01755553213771617 on:0.014626070241060114 by:0.013447843485786471 or:0.012794166593089693 tbe:0.012024509152999897 :0.010353482361299817 that:0.009291482237329618 In:0.007938246807075932 from:0.007526799010378873 other:0.007469196869028889 all:0.006409533041696086 for:0.00626887758057738 :0.26945732036088327 +the:0.47402826457097647 The:0.13367273208356747 of:0.05501819353082677 a:0.03922906891304825 tho:0.03027206080567653 and:0.02965912255200001 his:0.021865960856465066 that:0.01990642968724396 our:0.012606683285918614 this:0.012591253508977622 their:0.011338273222904989 tbe:0.010413245469721529 A:0.008410203924335816 said:0.007969647909468377 Mr.:0.0077121852692632374 my:0.006230410363518978 her:0.005757126210240789 Tho:0.005409624641700155 your:0.005139138060360007 :0.10177037513378538 +the:0.19052451932046477 a:0.1705873860964934 and:0.07179813791837322 of:0.06273095676782037 to:0.04286349619189398 with:0.030961924018514886 in:0.026350418745954132 for:0.02634974650326022 The:0.022794242511732454 is:0.02245945326674537 was:0.016968090220494513 A:0.016102590135498633 be:0.01589390654365088 or:0.015609682332664156 tho:0.015423571942854139 no:0.014848960116813333 his:0.014805125470520855 that:0.014273359386388585 are:0.014240359346356304 :0.1934140731635058 +the:0.33007455369296124 a:0.14781469482091453 to:0.12483453788311545 of:0.035686622595709004 and:0.023545931196474544 an:0.021210873211549765 tho:0.020921650871085704 this:0.019896363915326738 The:0.016494735342198537 will:0.012494063952819417 tbe:0.010660524142794623 his:0.01055169947486645 no:0.008910334152077412 in:0.008843523846216427 I:0.008839374901124452 not:0.008603667585300515 its:0.0075698554506096975 at:0.007505686728633111 with:0.006810703629078506 :0.16773060260714384 +be:0.12988749088311316 was:0.1219755273651701 he:0.10782964760462734 and:0.0981513534243326 been:0.06455329064941229 had:0.0577050048985072 were:0.050313616961206335 have:0.032740203223269614 is:0.03183806493170168 I:0.029619573532950482 are:0.027654210046220217 she:0.024016575949812803 they:0.01905983825658357 He:0.017788124034542524 has:0.01754243009364784 being:0.015792787222428852 it:0.015495877762128709 lie:0.014472644622568588 who:0.01390876556252992 :0.1086549729752462 +the:0.10743455335985648 was:0.07358324683383007 all:0.0674852698868967 at:0.05142349672866914 be:0.05128257932214193 to:0.05070497910616296 is:0.04666505432688888 it:0.045763988679027576 not:0.03763023866012382 and:0.03617053487169807 go:0.032645061583692694 their:0.03208167397145336 been:0.02977562417866659 of:0.029062981845107902 are:0.028556661753742524 his:0.026640784863996538 were:0.023811243468680528 a:0.02237057785464996 come:0.021842643414573763 :0.18406880529014052 +one:0.10578525791028319 out:0.04392998683014935 part:0.02747904355029124 some:0.02681364747364731 that:0.018437464103991653 all:0.01803946765058246 and:0.01698366755553065 members:0.01667654661157563 side:0.016439696748643602 tion:0.015459326737349652 people:0.015079011751226178 most:0.013716545500339229 many:0.013465500879040554 half:0.012718863537106969 portion:0.011850613009491962 each:0.011008350148852132 One:0.010786921235172458 member:0.009573893938926614 any:0.00928915551862148 :0.5854670393091777 +and:0.08484417333227601 conferred:0.04988221541694208 called:0.049239597635198966 put:0.046854663968192385 look:0.04516924259634055 imposed:0.04185961908573078 bestowed:0.03733656877493448 depend:0.036643527682945994 looked:0.03595713243405218 call:0.03368659427071124 down:0.03159549069565534 placed:0.02674662260856252 forced:0.02637927228201351 depends:0.02432002938044641 made:0.023985759031613794 dependent:0.022951479457648256 it:0.020257661736860184 entered:0.020083961688770555 rely:0.017794425876487666 :0.3234119620446171 +the:0.126904060367857 of:0.07928979659132358 to:0.0640296352300646 and:0.05071505534389052 for:0.04485281736866288 in:0.043527114359643314 be:0.03345725540281288 a:0.022039748736203256 was:0.021872176383806535 is:0.017945074990772407 that:0.01554518320074302 or:0.014094123643613557 their:0.01379187747064589 at:0.012670177733450007 he:0.012614335829729215 his:0.012351856796245224 are:0.012283283207349087 been:0.011579727623265685 it:0.011073129741017755 :0.37836356997890364 +the:0.2795960740378483 to:0.1927028456712308 not:0.08139050696018688 and:0.06335131079733108 The:0.04761901835985692 will:0.04747356964253311 would:0.02919634476588962 may:0.027664020971783762 of:0.02516042512424581 a:0.022262670447212533 can:0.021591806159044147 which:0.015242532729302413 must:0.014387602057455736 tho:0.0134358587406214 that:0.011495215649595446 shall:0.0113702212325199 should:0.011056940911804708 could:0.010540512498363824 his:0.010419329302958415 :0.06304319394021515 +the:0.20231009830667968 of:0.12675109490958034 and:0.07513243009419719 to:0.05383823627894144 a:0.052549804497697306 in:0.027323469772676606 their:0.02463453489134022 his:0.02142871814238436 be:0.018848824608683177 or:0.014369587695637703 for:0.014053840620992157 at:0.013982052308623451 with:0.013016595522180829 all:0.01237491307117627 tho:0.012194188736056238 is:0.011997632754328656 was:0.011580923314881612 as:0.01006317104941785 its:0.009989637353259206 :0.2725602460712657 +the:0.2191803598190999 and:0.146459928119002 of:0.07171227023681073 two:0.05465006001018167 these:0.044860911397832236 for:0.030961263829039035 all:0.02685605003843841 as:0.025846946552033866 a:0.024149978920305633 The:0.021736508127196033 with:0.019902829863465088 other:0.018570194401404918 to:0.018505323435970156 such:0.017454931719480333 three:0.016616574652127764 or:0.015614651727477178 many:0.015598127544863446 his:0.014689323983685759 some:0.014237037498982419 :0.18139672812260343 +the:0.1972922914779867 of:0.10707931134205359 and:0.07751345641690036 to:0.05965814400216777 a:0.03916990992603793 his:0.03332219732032006 their:0.03331774153636291 be:0.032850203570027194 in:0.031999481129964404 for:0.024419230255829164 was:0.015886632700938704 or:0.015687069681538747 with:0.014077907000147974 is:0.013616501400885488 tho:0.01238352879917961 at:0.012265965151178969 her:0.012068523214408489 by:0.011646939161358685 not:0.011571641806894432 :0.24317332410581885 +I:0.12692503423307222 who:0.07953230512543807 they:0.07777057712694004 to:0.07154161808109466 would:0.0655565341537033 we:0.055154572525914616 which:0.05335289632457159 and:0.046419374570603675 you:0.0244287929796582 that:0.024222983401915612 may:0.023174633672841075 We:0.021685972818667756 might:0.020828184263124605 not:0.020205831134835043 men:0.01955278746771883 must:0.018722301652651138 1:0.018257004272850753 could:0.017853997013369757 They:0.01631955948606983 :0.1974950396949592 +a:0.15397415465925 as:0.10434779219032322 the:0.0770477593079373 is:0.06136465526943482 and:0.04520940582494272 very:0.04300709693143472 are:0.036354196490975633 pretty:0.033927895190176006 was:0.03332067737940881 so:0.031853525544610635 do:0.02823876384365106 be:0.02402089467251702 A:0.017225055296675864 were:0.015647938139439727 aa:0.014015374477745772 not:0.012980076368677785 Is:0.011400712078994074 too:0.011166961726269357 of:0.010884410677113435 :0.23301265393042203 +hundred:0.02334136986593815 up:0.005482494641173394 men:0.005366536521246011 Hundred:0.0047587970519216575 John:0.00441808156134956 William:0.004390720675819281 him:0.004016828614280843 ;:0.003997112205305733 due:0.003721199871732 in:0.0036582900032443304 time:0.003637206863828461 James:0.0035594902370151707 out:0.0034878448964120057 .:0.003467980723571515 1:0.0032804584819785204 day:0.0032444781513863933 ,:0.003058139385740603 :0.0030314555521939613 Robert:0.003005471634785646 :0.9060760430610768 +the:0.5891420002051438 Court:0.11304572674531788 The:0.05326385975955095 tho:0.024451064492015197 White:0.023923957532632927 tbe:0.012829790133299561 Opera:0.011997830560212861 a:0.009131485495550666 School:0.007718643662994226 and:0.005730840878685629 this:0.005665985016997641 States:0.003904652080873409 Custom:0.0038328340355830905 City:0.0037918540676464283 said:0.0034031671644800653 County:0.0033930061478400324 National:0.003378361863895103 Engine:0.0031566149564177495 Democratic:0.0031099488714960008 :0.11412837632936676 +the:0.3893170532258651 a:0.18842559214105867 and:0.06924221905248756 of:0.040134186943088505 The:0.039226496729823375 tho:0.013834445360050518 in:0.012950584421273345 any:0.012228396777772464 or:0.00993130404812311 this:0.009111540308293664 that:0.009022751745730452 by:0.008277989759995637 with:0.008069628894007086 for:0.007403624435167415 no:0.006493568740779166 tbe:0.0056776203318965185 all:0.00473775037091621 to:0.004694315637546956 great:0.004666748036584164 :0.1555541830395401 +:0.08327492031557042 it.:0.022258711863557417 .:0.01638743299370055 them.:0.013153780287898334 him.:0.010260125977852854 time.:0.00914110604662807 day.:0.006876449188779819 work.:0.006268253410875409 her.:0.005997539012136724 me.:0.005888770571655081 water.:0.005613534130685678 year.:0.005458548822426465 country.:0.005434528652600255 out.:0.005103183697343031 life.:0.00499273320090107 way.:0.004632972981206565 world.:0.004383552178786829 again.:0.0043588986710199566 Mr.:0.004337306841138678 :0.7751776511552367 +of:0.09129790931378902 the:0.07369883040827747 and:0.047842263382354346 in:0.04189055351593407 to:0.04045875475680249 a:0.03542341257202578 be:0.02020462051672066 for:0.01979292654746225 was:0.01760256398103379 at:0.017380150555488715 is:0.014984483003968216 with:0.014047653760730413 by:0.01374644383819499 :0.012670486581795598 In:0.01200961464556976 or:0.011563835749786333 from:0.011391516893522809 are:0.011273104484969465 that:0.010755276030689069 :0.4809655994608848 +that:0.2256871171032036 and:0.19930488239513336 but:0.06745262964340179 as:0.05886427158600607 if:0.04859859981457123 which:0.03447126660995012 If:0.03112853201235846 where:0.02904154717202389 But:0.025141909646087177 when:0.021856609683108656 Then:0.013501190972854682 because:0.012561294822002368 while:0.012448622397862952 though:0.010702719797682465 And:0.009497483083679675 yet:0.008791147909762313 then:0.008386756588468817 for:0.008200958550189258 time:0.00793138172843354 :0.16543107848321956 +the:0.6335678127092688 The:0.13071005558642207 tho:0.043074066238907506 a:0.02842575650114429 First:0.014456941101987657 tbe:0.014390134478749244 A:0.009651541930855495 of:0.009141962457132159 our:0.007795960758045349 Democratic:0.006615405338770875 Tho:0.006575414571245496 and:0.00593495612322802 Republican:0.005507706269308274 that:0.004405314153830771 to:0.0032519015731564934 tlie:0.003228811258345538 old:0.0029003911673294563 this:0.002890864124404469 American:0.0027171688593639843 :0.06375783479850416 +of:0.10036425554061128 and:0.09867255827094257 in:0.04887477001133228 to:0.04309676529803197 fact:0.03312124920228808 said:0.028016465130273754 on:0.025147031828386315 all:0.020897671259005178 is:0.018989333611116044 so:0.018899457882617265 from:0.018463519784011995 for:0.017651195592365977 at:0.016946018612698295 know:0.015554635744109193 believe:0.015397314140675087 say:0.014489633297242495 with:0.013970217188878864 by:0.012605124887586036 In:0.011949884106238937 :0.4258928986115884 +and:0.1083591135076158 has:0.08968814856709813 be:0.07641449427015537 have:0.07445096242416606 he:0.07011947891543657 had:0.05644831438350458 was:0.0433535686700497 I:0.039978688744395544 is:0.031834123884760285 He:0.02885582046683029 who:0.02603794105228876 been:0.023902017395172 they:0.01716203914190271 which:0.015344382862587134 it:0.013636040288019005 that:0.013578390678773238 also:0.01331161916457856 case:0.012585411174287338 she:0.011899332528024857 :0.23204011188035406 +of:0.3716335665870827 to:0.11111079799315696 on:0.10191226655813222 in:0.09210425587048579 from:0.03941708169438655 by:0.037756434804976896 at:0.027852680492409142 along:0.025059182849748157 with:0.021914732720809762 In:0.01898366092607269 upon:0.0178995074599207 that:0.016982814443705405 into:0.015207244792166657 and:0.014362801386536868 for:0.01219277376263839 over:0.010586156589296014 across:0.010318992065478988 as:0.0075230597299605385 through:0.007177594592060402 :0.03900439468097519 +and:0.07558940021936399 recorded:0.030196237618668006 was:0.028917161578042846 made:0.027969746247669736 that:0.027730098932509103 o'clock:0.025060522019555328 up:0.023026552239529506 is:0.020398277211376416 found:0.02003101797656537 placed:0.017482208134164214 out:0.016937164562539058 place:0.016819459500107596 interest:0.016629321966808677 him:0.016002796715253755 situated:0.01573420479581609 it:0.015128305982428461 them:0.014715943643665314 part:0.014646613000297721 interested:0.014450471929902294 :0.5615344957257364 +of:0.19133067179114316 in:0.10349080558599402 to:0.07183301836287134 and:0.06656190474785895 for:0.06305394534055597 that:0.045426002982067774 with:0.04354433414497097 from:0.03619007363731154 at:0.03487519235222025 by:0.03436544458913979 on:0.029217654077188657 In:0.028047207519176227 are:0.01703710181947429 was:0.014845565169684376 up:0.013730812488109336 nearly:0.013319612773632741 is:0.010846886600310005 were:0.010733906051591836 not:0.009244012783661455 :0.1613058471830373 +one:0.10757504863160208 out:0.06393072214258595 part:0.05345953864888265 some:0.04657778396619151 time:0.032653763285528395 account:0.0298978741893603 all:0.02673860913095395 and:0.02324876597992745 that:0.02275453097379819 because:0.021318504223257338 portion:0.02010071224985526 side:0.01926992014112468 any:0.018918137101655273 front:0.016609963575485047 many:0.016563310866764772 end:0.01592265492673931 day:0.015255366376758018 members:0.014811614297040794 result:0.014486922106154784 :0.41890625718633423 +the:0.1454500361787387 of:0.1080247151493501 to:0.04516715868785427 boy.:0.036249098323069925 and:0.03403580073245388 girl.:0.032660326140049385 a:0.03171979252021135 in:0.02714044436566853 for:0.02365213940166824 be:0.021942286684630472 their:0.021087116084698817 his:0.019774122064073623 was:0.014637031197642503 with:0.014008395154201525 are:0.012730720509515858 is:0.011363112041341867 as:0.011357870543086747 from:0.01063391638067422 were:0.010589399829418696 :0.3667765180116513 +it:0.15590291243815246 there:0.0887784025092866 It:0.07904016205387611 which:0.06936908824431676 they:0.05362226352982171 that:0.04647101454662571 and:0.04420120519214072 he:0.027952982163116303 There:0.027623278151575524 mortgage:0.023443129896555264 you:0.018859539766003214 who:0.017891862574647276 this:0.014117846301193209 I:0.01363040583752058 sale:0.011818751696880098 This:0.010767348085132659 work:0.010306262168963347 as:0.009927627839447666 They:0.008978002990569422 :0.26629791401417535 +time:0.14264128718796842 out:0.015170493331671364 in:0.013248719213146428 it:0.012831262423661241 up:0.011814054146882868 work:0.011142999921320515 good:0.01078467555857971 principal:0.010653134584139912 law:0.010254243126586592 and:0.01008632120510433 him:0.009843758062755616 interest:0.009520664898183628 power:0.009328833509479415 them:0.008742516508228933 her:0.008588294540284088 made:0.008271310789711078 full:0.0079595604104045 light:0.007884941159261747 :0.007497551309768086 :0.6727353781128614 +of:0.14870698072999267 the:0.0845621995124163 and:0.06757800692451325 a:0.06370489404667218 to:0.05660993902384267 in:0.044754808810571894 was:0.02476206369313501 with:0.02372392891650905 is:0.02370118591038056 for:0.023671270390473925 at:0.02052745490553854 be:0.019885805590490524 that:0.01916544700111574 by:0.016703405181816126 which:0.01477775031565864 as:0.013781538588359489 an:0.012747545072512806 con-:0.011493668738063316 are:0.011384200297405571 :0.29675790635053173 +it:0.14980370725759037 It:0.1417831987182438 This:0.0994395734160535 which:0.06123870759127718 that:0.053827314535707556 this:0.0485319048157116 and:0.03481463816943127 there:0.03163351300029438 he:0.025874957304685715 That:0.02452637228711398 what:0.02101535076138451 who:0.020745118014465793 He:0.01553744098124584 What:0.015466571118696077 There:0.012715435083286795 Here:0.00825702518154719 one:0.007881347531268929 Such:0.007797349307744799 as:0.006397540204786528 :0.21171293471946415 +the:0.1979534445864077 and:0.08107949971155208 a:0.068707354063738 of:0.06271022273995538 to:0.0326489427715655 The:0.02613012885029127 in:0.02394238484089055 tho:0.016573893931932808 Mr.:0.016508521624582488 for:0.01593472776883609 this:0.013641116811325543 an:0.012721674505439425 that:0.012033241007566158 at:0.011813771926543586 his:0.011622869205938316 :0.011482100119799256 .:0.010454104824162007 or:0.010274610604085148 be:0.00950326146124095 :0.35326412864414775 +sum:0.03352282876311118 number:0.028116684882597106 line:0.019995206059833036 city:0.01946514558931857 out:0.019275318828420953 day:0.01666865340772654 county:0.014872697538657208 amount:0.013254184849875051 Board:0.01252325449624941 town:0.012449555905674143 side:0.011663975251122375 part:0.011517157473718155 County:0.011460540331966697 state:0.011087331502382173 City:0.010878919191854432 purpose:0.01081028255427907 and:0.010297866493795984 way:0.009848747943663767 name:0.009522170936943183 :0.711769477998811 +and:0.1618483304973151 be:0.03690914419697973 is:0.035475294728827024 or:0.03063773679244759 but:0.02931092962030428 it:0.028876505202330722 was:0.02290928474298319 done:0.02230672687095003 do:0.020411584759939084 not:0.019691380262314387 them:0.01965856827337995 are:0.01706057355163094 him:0.016461848051008754 that:0.014994338304968846 now:0.01109774524828251 made:0.011021661910686365 day:0.010962747453476892 been:0.009844673906827991 us:0.009737849065600901 :0.4697830765597457 +is:0.13030857312070512 was:0.09680652415447637 are:0.08201999923717347 did:0.0790595326303509 do:0.07215816208255724 could:0.05799031418203049 and:0.0507887508926188 does:0.04864229928982388 will:0.04854640933576163 would:0.04155227816171379 were:0.03888568717480415 had:0.022728217386867866 Is:0.02002134604877732 if:0.01835653530257919 but:0.01782471105297468 have:0.017598658880332844 has:0.01671622045559762 should:0.012750134334889756 shall:0.01175599227108347 :0.11448965400488138 +of:0.1139509320796627 the:0.0512125195427348 and:0.04032547795189024 .:0.03905082232670862 :0.023473839841277787 by:0.02279699857657647 Mrs.:0.020550699363520105 Miss:0.020041939171024557 at:0.01952882531313552 to:0.016021621217713597 A.:0.014445129390715324 H.:0.011830733148279274 Mr.:0.011745640700524609 M.:0.011744573418474265 in:0.011667165209352097 for:0.00996338919053873 W.:0.008736723792276127 C.:0.008712619164726846 J.:0.008547553572589512 :0.5346527970282788 +the:0.44736699391370677 of:0.16442608027677924 The:0.13734993142406754 a:0.0456879183319903 and:0.03315283641274114 tho:0.03108256306969544 that:0.012113364062442728 no:0.011791739326284701 this:0.009636298497893533 with:0.007510966602686058 tbe:0.007490175960846693 any:0.007242263334955993 Tho:0.006618197296258498 their:0.006032422947951881 cold:0.005701995851870087 is:0.005641388763443944 hot:0.005628426820116571 other:0.005513954915095142 This:0.00519374641371788 :0.04381873577745582 +person:0.07494112646926424 and:0.06554860700590315 one:0.03772276653937079 man:0.027756898868889778 her:0.02723335896755969 those:0.02507982027568121 him:0.020189165085889832 me:0.017955115508671626 men:0.01739138770042306 came:0.015456821967038506 come:0.01365700521876238 went:0.013568441039639653 them:0.012974159506150374 right:0.012958121832616408 as:0.012351539144409817 or:0.011510898216097989 reference:0.011321266095881057 said:0.011046603018963565 well:0.010506646416923346 :0.5598302511218636 +to:0.5964644345870909 will:0.05724985447831882 and:0.05441690378866058 shall:0.023907894524338 would:0.01962981961697969 may:0.01884501795110263 not:0.01733937983415533 can:0.017258295503427643 could:0.016887624439536578 they:0.016232633363658665 should:0.016023364128437353 who:0.012314421154084109 we:0.012252613295514175 must:0.012189592137070094 the:0.011349686435242314 I:0.009440677232327766 you:0.007269248193759532 which:0.006942361009830505 that:0.006065805813068427 :0.06692037251339693 +and:0.06339907699893536 them:0.048272975964282455 wait:0.04792521050237585 there:0.03799809382736137 it:0.024791243534279715 time:0.02176115974659456 him:0.021446687749073694 that:0.016427170269516067 not:0.01550860587192544 out:0.015403248749914 or:0.014419512643025406 retained:0.013945731264961209 continued:0.013256898762475424 up:0.013195543030504884 ing:0.010752465851643085 men:0.010381366319260243 made:0.01022884231931319 postponed:0.00994291768569064 all:0.009657050172372143 :0.5802861987364952 +a:0.18312709211512612 the:0.13691818934654013 of:0.04050617643407455 and:0.04009688039204964 at:0.02668601150373721 to:0.026356090207812866 for:0.02356269923632489 any:0.022866115846254545 that:0.022797255375053383 in:0.01706536122488448 :0.01577057243266669 an:0.015441607268051029 The:0.014473607253160638 his:0.012443710902872883 by:0.012260233002482857 one:0.011591111182695919 which:0.010896549931106028 A:0.010285808115578714 or:0.010077108422114562 :0.3457778198074129 +the:0.09049991699326025 and:0.07742342831078033 of:0.06235301939849314 a:0.05335476638762722 to:0.049086320865102624 in:0.031941380945368913 be:0.02853674975948029 was:0.02647066792955421 are:0.02455780728756523 is:0.02094692268357658 by:0.014977127161791679 were:0.014786444291024313 I:0.014247278939041139 for:0.012486722310660673 not:0.011771068408179186 his:0.010840269617888332 :0.010504843602089252 A:0.010257810844171385 .:0.009823506917760214 :0.42413394734658505 +of:0.09129790931378902 the:0.07369883040827747 and:0.047842263382354346 in:0.04189055351593407 to:0.04045875475680249 a:0.03542341257202578 be:0.02020462051672066 for:0.01979292654746225 was:0.01760256398103379 at:0.017380150555488715 is:0.014984483003968216 with:0.014047653760730413 by:0.01374644383819499 :0.012670486581795598 In:0.01200961464556976 or:0.011563835749786333 from:0.011391516893522809 are:0.011273104484969465 that:0.010755276030689069 :0.4809655994608848 +of:0.20933274882159308 and:0.1092532697162737 in:0.07138095877513378 that:0.07058936804515402 to:0.0692136344163832 for:0.05157181390073151 with:0.05027240395501126 all:0.03894242970216647 by:0.03806107970591733 is:0.024318933007213023 from:0.018360246794902835 but:0.015669718180234823 was:0.015578152675539242 In:0.01515896719689957 on:0.012870610541740074 as:0.01241588917548112 under:0.012052745108385082 upon:0.012028441765978764 have:0.011007281838860981 :0.14092130667640015 +of:0.23621257811499938 to:0.14516565156159167 and:0.0880355731724539 in:0.07158579511926742 with:0.06357545072667878 for:0.03748548362420693 that:0.03575277624767003 on:0.033364099472354025 by:0.0312657334443456 from:0.02843586610137294 at:0.022381064297298255 all:0.019284083431542712 upon:0.017543945315023214 was:0.014232968505653514 over:0.013615552970984936 In:0.013352694307982723 is:0.013148049520717674 as:0.012919835302794174 have:0.01253862428985974 :0.08910417447320239 +;:0.01458927046758731 it,:0.007973265891266864 him:0.007834970369143835 one:0.007240974664279108 in:0.006989508095588829 and:0.006417396987522371 ,:0.006059091806132192 it:0.006014614548599763 up:0.005812344146302806 out:0.005395853159197619 them,:0.005290532062834904 him,:0.004938420268273817 city:0.004793760033506698 :0.004646491011450349 man:0.004641061555670736 country:0.0046164671969483135 feet:0.0044416267197611185 time,:0.004376787347733258 time:0.004358244018157902 :0.8825693196500423 +hundred:0.14717840321866515 two:0.0969217058935085 one:0.029124063933712592 three:0.012801609896172303 feet:0.008437008897331476 wife:0.007733445619812648 dred:0.007256257829398131 four:0.007077366314796079 and:0.006993858858052809 up:0.0068904935088975865 year:0.006184039873358676 ;:0.006072273755258774 five:0.005870650814194534 years:0.005523882438050671 each:0.005336502109061729 in:0.005199992978504676 to:0.005042214985264319 dollars:0.004853901486747744 long:0.004838783467441292 :0.6196635441217703 +to:0.402612501404225 of:0.14316288424509718 in:0.07222266885712704 at:0.05511735879455418 for:0.043821532707464486 with:0.0390984415541322 by:0.036593122852062746 and:0.02523089180409042 from:0.023374158017072603 that:0.0194030340867384 In:0.017148746569100988 on:0.010760356914827716 as:0.009154169683729348 upon:0.007638690990687428 under:0.007396807089616968 is:0.0068348557466568465 all:0.005900901897304447 into:0.005591411360963064 over:0.005331476165189593 :0.06260598925935934 +get:0.053610422214488855 was:0.05051841536969282 and:0.04903958730444051 him:0.038801969319659166 it:0.037410018187455464 them:0.035569152369498175 are:0.03479460583298655 go:0.03206022460430166 come:0.03018624754922308 came:0.02989007710531499 issued:0.028538548420871033 taken:0.028387580006254076 went:0.026471193886938953 got:0.02591677196361888 growing:0.02512307536827857 be:0.024827416016109424 is:0.024256616056951556 served:0.023420563816567756 paid:0.022272217198545566 :0.3779052974088029 +that:0.184507701555411 which:0.10918873015094978 and:0.09446961806577987 when:0.09406302185392881 as:0.06098983795344141 if:0.04955815589667218 where:0.037011350290658156 but:0.03327938224403055 what:0.027457657601984726 time:0.026191739511351442 until:0.02186209270551236 will:0.02149813604364753 before:0.02015282305749572 When:0.019111978014065657 If:0.017114549806244512 would:0.016458237434804228 to:0.015567296196393606 should:0.015542891801354491 whom:0.014970178601094626 :0.12000462121517937 +an:0.5151396131447921 the:0.15984777491727323 no:0.03306580222816527 and:0.03042495891318628 this:0.0288787226368705 his:0.01927716608570683 An:0.017551288194674292 The:0.01654647700498886 of:0.014494199285032998 any:0.014292858560594816 a:0.014110935456263237 every:0.013739001264145725 some:0.013174930117471197 very:0.012166901498898451 more:0.012142351261228512 their:0.010915000139065486 is:0.01088670541023557 most:0.010607110619706957 its:0.009859866981530825 :0.041878336280168876 +the:0.6139891126026061 a:0.10402737529415218 The:0.07509516105078633 an:0.05557651588147776 tho:0.04874960498152139 tbe:0.012470884985911684 our:0.011082749140836165 this:0.009979004438032067 A:0.007091783194214813 his:0.00671854760309274 their:0.006427154038356257 An:0.006148721428914317 and:0.005874272863378732 Tho:0.00442258733704352 its:0.004210552582158985 of:0.004034197273697557 said:0.004005649724422996 any:0.0034704264686223002 such:0.0033188499171903666 :0.012306849193583706 +more:0.057949089245754065 one:0.033316853866562135 day:0.0326933102300128 person:0.02892293295767094 action:0.021098265797246236 law:0.021079008942722813 right:0.019620326441127107 interest:0.01924500554921191 vein:0.018540314429003057 made:0.018185288585139625 place:0.016295221529670396 owner:0.013880425782708523 year:0.013697310007721269 on:0.013021633792060134 time:0.012675299941855836 debt:0.012638960745508378 lot:0.012410043312505168 man:0.012404559179363023 two:0.012269463186487877 :0.6090566864776686 +the:0.17710870336649878 of:0.12643776299317777 a:0.08825573625154563 to:0.07014771791617681 and:0.04056086930125232 in:0.03548846024003566 The:0.024774937830726543 that:0.019804720400323578 for:0.013943409469845115 by:0.012689951304788696 :0.0120536545255138 with:0.011516819134924937 an:0.010952604506908586 tho:0.010302842837020848 or:0.009892238446497245 from:0.009754900157895858 as:0.009680775023901855 In:0.00927609038015251 on:0.007417353634097077 :0.29894045227871635 +the:0.125244177620508 and:0.08175993685002995 of:0.06522069416930851 be:0.0548702739616459 to:0.05397973838865912 a:0.04481454131132746 in:0.02280340110740976 or:0.02038336764964828 is:0.019319010380680113 was:0.018270747950086045 I:0.014286571876306 for:0.013255035370608584 not:0.013226175954496275 been:0.01178939555333445 his:0.011478124918380829 their:0.011092690956782222 Mr.:0.010724349632519042 no:0.010703905414057096 he:0.01028438958216717 :0.3854934713520452 +of:0.13084814232797154 in:0.0740836656586379 as:0.0625527229231004 with:0.059577596335708534 to:0.058433603729754965 is:0.05551580107464621 and:0.04946529489577619 was:0.04264000753602388 for:0.04009673021586375 by:0.037684080471064085 be:0.023941707008899252 on:0.02316059851167503 at:0.022644769441950232 such:0.019950936521181326 that:0.017856095877642635 like:0.017386655618315594 In:0.016902219705578994 from:0.016046571451088905 not:0.01205910100844263 :0.21815369968667797 +the:0.10586692368455258 and:0.09469548400449646 of:0.07458368700101428 a:0.0338565264669919 I:0.02967524941958581 be:0.026076524607284254 that:0.025634237671028126 was:0.025198393583333308 he:0.02457565779048894 Mr.:0.022203513426684758 The:0.01966753949733357 to:0.016864901489002476 is:0.016748042007857913 or:0.016660437567167178 which:0.01532216954661455 his:0.015022199935272684 in:0.0145536617944351 it:0.01431012568949922 but:0.012502392266738304 :0.3949823325506186 +the:0.14538285862993044 1st:0.08134507703834688 first:0.06736886768797135 a:0.055874525947905124 25th:0.04330570615268372 7th:0.03688213350850801 10th:0.035117537855034915 12th:0.03482687129394641 21st:0.032870317578004654 15th:0.03272520813383107 13th:0.02925249040911833 28th:0.028551498372195953 14th:0.027199406423118976 6th:0.026808826990102827 26th:0.025722141500643267 4th:0.024208282672405948 29th:0.02309675301622377 18th:0.02303604825841656 24th:0.022877400054659373 :0.2025480484769524 +and:0.07895257911471103 was:0.03596317658514438 out:0.024016824392823457 that:0.023672598027062328 placed:0.022844208461019616 work:0.021707439938587154 made:0.020781005318872947 is:0.020224993929329655 up:0.019794182040466738 put:0.018288921183371155 down:0.0171740551508179 interest:0.01663630075189571 point:0.01659978677065351 him:0.016175999448187352 held:0.015562908663841706 Dakota,:0.014616466073415059 place:0.01424333231426501 Minnesota,:0.014067166610364513 it:0.013665465625771424 :0.5740125895993994 +to:0.1956985967752488 would:0.130984017852151 will:0.0755533208659917 I:0.06106914075429708 who:0.05151579508818802 they:0.05022147646339934 we:0.04998157260545735 not:0.037771194821135175 and:0.036940167034075065 shall:0.03610033449173603 you:0.03475786899563499 must:0.033485902787976196 should:0.03152149426943237 We:0.027305505998678897 may:0.02653675825855832 which:0.01718727060542843 They:0.01664730196150205 might:0.01589433736993029 that:0.011478878764746495 :0.05834906423643239 +the:0.20826350248033026 of:0.11787633054522705 a:0.08085241755968006 and:0.07303337949123309 to:0.044656264231979666 an:0.038669148256041785 by:0.03380811167807175 be:0.02604756313538821 his:0.02451244957788537 with:0.02101000406175543 The:0.018198383394010722 tho:0.016309549709390744 are:0.015521426802846726 was:0.015385286848023807 is:0.014935147909360255 in:0.01490497777867109 more:0.013865235295268018 most:0.012252769624520616 very:0.011703588854003858 :0.1971944627663115 +so:0.3067800420990159 as:0.17518297501276614 too:0.09559583284030321 very:0.09003627880881339 how:0.049982576991165165 is:0.02860112338281676 be:0.027140715212812416 and:0.0221786314564595 not:0.018218894123187338 a:0.018119526689150692 was:0.017196675079208662 So:0.01483357222708228 are:0.014674741350862837 with:0.01239413513115388 of:0.009682766401769342 been:0.009656443477378084 by:0.008962399769225464 for:0.008880202597144737 How:0.00871229626874544 :0.06217017108093879 +and:0.15591026351134463 fact:0.06404463086818311 say:0.06398481830924907 know:0.05388215729825703 believe:0.03950352497240147 said:0.03838453682724485 all:0.03128760507583122 so:0.0305849278990355 think:0.027598603147377162 of:0.024969613366018484 is:0.024458417564346538 but:0.0238481772770533 see:0.017608032032517106 than:0.01674784680416019 says:0.015786508709827313 or:0.01539805737938856 opinion:0.01479719521730391 thought:0.01445610372786257 show:0.01430681311188572 :0.31144216690071225 +in:0.024745671141431252 ;:0.021522984044907358 Under:0.020875399401828296 given,:0.011497823484486516 him,:0.008673043253468554 them,:0.008411734917607014 ,:0.008381729419098215 up:0.008183854591543931 thereof,:0.008118754678315116 mortgage:0.007035235590636141 years,:0.006852324131213381 States,:0.0067448333563323 county,:0.0061059672562892246 land:0.0060058141326634 day,:0.00599734573268566 it,:0.005992649533783088 and:0.005610048433393659 time,:0.005417556421912032 on:0.005343730308206672 :0.8174835001701982 +one:0.052088814224272924 some:0.026811882497922164 all:0.02253398812518763 part:0.02041286119413932 that:0.019855448263233672 any:0.018421050443301328 portion:0.01817693635356031 out:0.016981126212641907 many:0.014520761879905626 and:0.012717135483743224 tion:0.011331838502327135 use:0.008845269488721332 people:0.00852851435234807 time:0.00801159879186273 none:0.007793634458890302 condition:0.007669757726247258 view:0.007613566447844059 cause:0.007571447508729576 or:0.007305546858952316 :0.7018088211861692 +to:0.27355436277801537 will:0.22523189348865705 may:0.08643789386486998 would:0.07472506142691066 shall:0.06232417303018263 should:0.05237710204156489 must:0.03904677387940578 not:0.03663412387404255 can:0.03197576591147978 could:0.0187525749537203 cannot:0.01732063711758733 might:0.014681104133279235 and:0.00891968313261247 it:0.006292820821652238 that:0.005348178192303945 which:0.003213329041403917 only:0.003159479894738162 soon:0.002960707525282681 also:0.0029040334929551315 :0.03314030139933589 +of:0.28767355066866834 to:0.08775711267569858 in:0.08678131196995101 and:0.05160598694501188 on:0.04646139928102899 by:0.04519522654900943 for:0.044547789071328545 with:0.03396756772609607 that:0.033699232901107726 from:0.03075346596941143 at:0.027039283056790858 In:0.021061449543044047 as:0.017514234937992545 all:0.012543839382496166 upon:0.011844431150487573 is:0.00998972746569266 was:0.008814315973987914 into:0.008557199930727406 through:0.007781895704231326 :0.1254109790972375 +the:0.17700472908071924 of:0.16195961530204445 in:0.06560628943773851 to:0.040499234963399446 and:0.0376823589990612 by:0.025035444939765762 said:0.023478095894338132 on:0.023007439255295706 a:0.02173523985699332 In:0.014863387882950862 from:0.014313053253084441 that:0.013340952183339277 for:0.01181960346202426 at:0.011337584673591411 The:0.011236213772525516 tho:0.010677404682642843 :0.01035561344384372 or:0.008912981804685045 with:0.008270007340060906 :0.307864749771896 +he:0.1723361313716207 it:0.08660830766162708 It:0.07971372350146082 He:0.07122454979774208 I:0.06529111695966537 who:0.06215293581957805 she:0.05588895666159589 that:0.03842959700867736 which:0.03708161966389723 and:0.03374728083128834 there:0.02908469338555807 they:0.026860036174512287 She:0.026701198818697078 have:0.02091400497506297 has:0.017051366917663752 had:0.016914433583093618 lie:0.013046118401503833 There:0.012789623518674034 ho:0.011688526276752135 :0.12147577867132928 +is:0.49256366894679476 are:0.20201642110161636 was:0.05915956248463755 Is:0.0548501888445258 and:0.027258065094641237 la:0.008136687921337041 were:0.007442963587978275 it:0.0072646460845921 arc:0.005964210970251234 It:0.0059267265186472 be:0.005569851032961132 not:0.00496389991053429 a:0.004565755482789653 but:0.004408401051862326 aro:0.004383183413721354 I:0.004114169526912318 has:0.004106631601227205 he:0.0040032426558008795 He:0.003834684986473706 :0.08846703878269563 +of:0.25550764813658694 to:0.12186513693803784 in:0.0945641208788272 by:0.06385536284237052 for:0.0630538078823795 with:0.05041808579330912 and:0.04776600643640567 that:0.0431985530286756 from:0.03326955644618958 on:0.029926441543546102 as:0.02387215247676075 In:0.02191645203341408 upon:0.01518169554517852 all:0.011264317964666573 which:0.01056947148038363 into:0.010187505613065011 through:0.009483159238754334 at:0.00912916514782258 over:0.007398120446791909 :0.07657324012683453 +in:0.14048713722096412 for:0.12045306486651125 of:0.1150959154773748 within:0.061090158043955345 and:0.05346109170384797 only:0.04877263632788032 In:0.04433449219687606 with:0.037160146048207214 is:0.0315421892589043 but:0.029830979859766554 by:0.028968633883732185 to:0.025999925223267443 was:0.02505070588261269 after:0.022494641765410772 that:0.022285961534963723 as:0.01690029607373616 from:0.014222657035431458 or:0.013178995054789719 made:0.012188942064310933 :0.13548143047745698 +and:0.11869325045398381 of:0.07319175005839808 to:0.0689740289196713 the:0.034070155600343224 thence:0.025833317954767496 at:0.023105003238217056 .:0.021532740450386532 a:0.015975897651304957 1:0.013825050720567751 was:0.013693068226956444 :0.013204026829881477 No.:0.01180200208295654 degrees:0.011304643611673866 W.:0.010366652365900056 from:0.010208547757886583 in:0.010160813868373598 for:0.009336796907580089 be:0.008746320995290026 two:0.008615749453005162 :0.49636018285285594 +and:0.07181562702745725 together:0.06672214896410926 connected:0.05460722541492519 connection:0.053485248068146786 accordance:0.040816432970329504 comply:0.022327715315442986 acquainted:0.01991331996883064 compared:0.01902004432375884 contact:0.016949822974841922 familiar:0.016791563233682194 up:0.016271038698657696 do:0.015355480362757417 interfere:0.014875808889703945 charged:0.014646284015101253 pleased:0.013610051164447858 him:0.01274062267734275 but:0.012200014478196207 satisfied:0.011962054640116513 it:0.011810815262474694 :0.4930786815496771 +it:0.12056944569331464 It:0.09712475152470709 This:0.07651815919740963 which:0.07459009057686054 there:0.06593402039201982 that:0.05884264829714718 Nor:0.04526102419000799 and:0.03930037464609591 what:0.03632048847564634 this:0.03200524363253785 What:0.027181089264794747 That:0.024655857809312256 There:0.02293137306021058 he:0.01953923490967239 nor:0.017320941902154233 who:0.015970933349132493 How:0.01296727517371476 Why:0.012167979982633368 Here:0.009439814690671561 :0.19035925323195663 +of:0.12988820565580186 in:0.09676979560289906 to:0.08681728865648054 as:0.05867984060517428 at:0.054764038219018214 with:0.05140453502907983 and:0.04786942352591099 such:0.044118635264114005 for:0.04165544216488147 is:0.04140656179728812 that:0.03520822957677696 by:0.034759636199952544 was:0.034124490362835366 be:0.023700976808181413 from:0.023570424728302453 In:0.023112539784761858 have:0.020971877345126316 had:0.018249757603768426 into:0.01720746015600416 :0.11472084091364214 +covered:0.07158742617699063 filled:0.060683146413946815 and:0.05955222166547311 him:0.027271651519418846 together:0.02699148688964756 up:0.025623395370324317 loaded:0.02313743104153386 parallel:0.020701279382027402 charged:0.020481597111176166 it:0.019675773294493697 trimmed:0.017859587820840343 connection:0.01700054026187232 them:0.016880564021638584 compared:0.015632364382679148 down:0.014991989526988514 connected:0.014572029589280368 met:0.014357481350078513 but:0.014268941081810455 do:0.01369158029809291 :0.5040395128016865 +of:0.1814181052239124 the:0.12130636762134252 and:0.10230707174979678 about:0.08429379894968875 than:0.06665714928371468 or:0.05153908515908657 for:0.04528197883266849 in:0.03139595281234751 over:0.030015242332381866 nearly:0.02986812927441337 to:0.02859007823134286 only:0.02085436850573282 a:0.01615697187656737 least:0.015108243617314108 last:0.013944038736279836 with:0.013564871910718566 by:0.013018162642443766 within:0.011982990574318664 The:0.011722810287219597 :0.10997458237870948 +and:0.08992539879612474 that:0.0844453761959803 as:0.055650472056453786 of:0.05562031899468547 to:0.040555788419955316 make:0.037189996829352125 which:0.03536333746764052 but:0.029259896215369344 if:0.026590790296909906 for:0.02502570581741944 with:0.022268509380744997 when:0.02057623614723612 is:0.018606847607363967 on:0.017958315461135077 what:0.01736685272866561 have:0.015599623247670023 in:0.014393328574136822 Be:0.013801468720923782 by:0.013560337942586894 :0.36524139909964576 +rate:0.22927646147187428 sum:0.13971301999228294 period:0.05332030574134896 upwards:0.04323124268494754 depth:0.043066303037522305 distance:0.035713836317297534 number:0.01831789433518994 one:0.017584536034172985 expiration:0.01707532746410145 hour:0.01677311403129805 consisting:0.016594974536288852 out:0.014862784173674704 half:0.014631779318026105 feet:0.012337505765711038 instead:0.012213268638218514 score:0.011688004979529296 age:0.011053382232864587 amount:0.010426170150301594 cost:0.01020098688460015 :0.27091910221074916 +and:0.08529990646477506 passed:0.07391398244130352 passing:0.05542736247893535 way:0.04295083303473848 went:0.032008847256932906 it:0.03150752388213557 go:0.03116060608487825 all:0.02958447872519049 pass:0.028669214712268003 out:0.023583590904430594 down:0.02180757905760855 up:0.021691451677190925 run:0.020056510074409596 running:0.018844210927994806 them:0.01859738012378954 shot:0.01682581032465277 passes:0.01666206419304904 going:0.016288357784768375 or:0.01600814422633801 :0.39811214562461017 +of:0.2056348119171585 in:0.11613070398697183 to:0.09024278460229683 for:0.06877113352130754 on:0.06753247306610405 at:0.0653374519500307 from:0.04596473664638323 and:0.03965293213778375 In:0.0371948207001369 that:0.03621393115502634 with:0.03314001531605839 by:0.032608588290144215 upon:0.020065611735931493 as:0.014783037398958818 all:0.011292297033365761 during:0.011200888453437297 through:0.009896947631368436 before:0.009498757111242238 which:0.009461324053352255 :0.07437675329294144 +and:0.09696379668446137 a:0.09233473792972964 to:0.08302047964638185 the:0.07813680209477551 I:0.05016000091460436 for:0.03877996068375347 of:0.038070402196700916 be:0.037792978992546786 he:0.03610893605680896 was:0.027372880559867356 his:0.026995263523729798 that:0.026822592362188463 by:0.0201227594400114 as:0.020049881486472396 who:0.018904947113652096 in:0.018514588009226885 is:0.017750129569787023 or:0.016648468151147094 1:0.01418102282588551 :0.24026937175826912 +for:0.4180132846645891 of:0.11068585234967236 to:0.10305417361381519 in:0.08573951569102028 and:0.026014260742763032 with:0.024680849159550045 at:0.0232222080257794 In:0.022715512742303223 that:0.017993016380121154 during:0.01678461204963909 have:0.014404337437491952 by:0.013613597445318247 For:0.011816039980014901 from:0.00991379488069343 as:0.009747779668991976 is:0.009495342516556182 all:0.009340261828792907 make:0.0073389717331030675 after:0.007259867650467229 :0.057166721439317246 +the:0.1558642481518089 of:0.14099593298632035 his:0.10773172116924123 this:0.08091179833591544 my:0.06581761128806618 said:0.04742186389102345 her:0.0362875026092194 their:0.033012220388850703 in:0.03278126452345505 and:0.03276229364853376 your:0.031620919245631124 own:0.024693026870137316 our:0.02081451684742379 public:0.01701784495895932 its:0.016041923886514722 that:0.013036046902320327 In:0.011526301392265079 tho:0.01038122516562965 whose:0.009429576614023535 :0.11085216112466066 +the:0.36243787630647717 The:0.08428426558309134 of:0.0632096692576684 and:0.04888611148641803 that:0.0473766679153637 these:0.03691977388695488 our:0.034246298105758244 other:0.025027085457110593 as:0.024347023721748746 tho:0.02415603740792693 their:0.018146800933716897 two:0.018080102383081116 its:0.014442712869984435 many:0.012978875500873701 such:0.01278368669574789 all:0.0119093850786119 his:0.009754759227179489 which:0.009197661327578334 more:0.009164098462983694 :0.13165110839172453 +the:0.2135015761393878 and:0.11003933155377481 of:0.06787281951424684 a:0.06398035600019418 this:0.05261388040122924 to:0.03945570096081297 their:0.03807931782497016 all:0.03441440264818185 that:0.03144219138741935 his:0.02970666925526781 in:0.02771101302509803 be:0.022314583272250898 or:0.02078353268482984 other:0.01913353175865684 he:0.019064771289066057 its:0.018707113836791606 was:0.0158052502676566 for:0.014994099778890524 tho:0.013662328150079808 :0.14571753025119477 +the:0.3321144084418637 this:0.0788331267789103 The:0.07663525717169936 that:0.06095675106597804 of:0.056652982179095104 his:0.03983912489470235 a:0.029794864913097782 tho:0.02745349292782995 This:0.020639430537316344 my:0.02032080689048662 whole:0.017232171085215468 in:0.0172122579254135 her:0.01400504637120816 no:0.013996091176171498 first:0.013554289827906104 any:0.01223003197607962 same:0.010912158770888082 His:0.010565054560417184 tbe:0.0096834726323626 :0.13636917987335825 +and:0.09414042845502596 the:0.0594091408731104 to:0.05890793791603044 of:0.0500469454015627 in:0.028813889106413214 he:0.020251169538983392 that:0.019887043313939184 or:0.019437275495288724 re-:0.018831610910975998 which:0.018545710081605764 I:0.018476896386713695 for:0.017687709531044093 :0.016166794513993568 will:0.014382885693111584 dis-:0.01382283392562281 not:0.013387153346709518 have:0.013166414526214965 con-:0.013077644960842318 be-:0.01283725506819274 :0.4777232609546189 +and:0.07895257911471103 was:0.03596317658514438 out:0.024016824392823457 that:0.023672598027062328 placed:0.022844208461019616 work:0.021707439938587154 made:0.020781005318872947 is:0.020224993929329655 up:0.019794182040466738 put:0.018288921183371155 down:0.0171740551508179 interest:0.01663630075189571 point:0.01659978677065351 him:0.016175999448187352 held:0.015562908663841706 Dakota,:0.014616466073415059 place:0.01424333231426501 Minnesota,:0.014067166610364513 it:0.013665465625771424 :0.5740125895993994 +a:0.3130883580531436 the:0.17729264465971048 to:0.09209346824571993 of:0.07954417033890872 and:0.06586462669522666 his:0.048304872143739824 our:0.020889754384619128 in:0.019862789877145327 my:0.018851785339919075 their:0.017767189666646647 very:0.014926982433457943 her:0.014413175714712526 with:0.012405612440467817 its:0.011870238996127665 this:0.011580975659905452 or:0.011047532936873128 such:0.011033537061477142 your:0.01033547068158032 tho:0.009881861801358052 :0.03794495286926054 +sum:0.03352282876311118 number:0.028116684882597106 line:0.019995206059833036 city:0.01946514558931857 out:0.019275318828420953 day:0.01666865340772654 county:0.014872697538657208 amount:0.013254184849875051 Board:0.01252325449624941 town:0.012449555905674143 side:0.011663975251122375 part:0.011517157473718155 County:0.011460540331966697 state:0.011087331502382173 City:0.010878919191854432 purpose:0.01081028255427907 and:0.010297866493795984 way:0.009848747943663767 name:0.009522170936943183 :0.711769477998811 +the:0.7759341118048554 a:0.06808109592571851 The:0.03654284378019368 tho:0.03364488587381676 tbe:0.01386770788372403 and:0.011593169693492356 this:0.005828317052102417 his:0.0042825247788645165 whole:0.002986730258109992 full:0.0028962478965060758 their:0.0028535276409139524 little:0.002531004040312263 no:0.0025294270682352984 entire:0.002325827207623012 any:0.0023222720994085424 said:0.00207190996691746 tlie:0.0020535572879011423 or:0.0019060151703033745 A:0.001697313220578621 :0.023051511350422608 +with:0.09813000021704185 of:0.09523619053695362 in:0.0856162628924422 to:0.08443899904344128 is:0.08074468582218623 was:0.06749871754688161 for:0.0512920325877089 and:0.04508120948523457 as:0.04456182797869664 by:0.035465948438174716 be:0.030633636199799835 such:0.030471505656547805 made:0.025744893199178342 make:0.02483990878956301 that:0.023582196711807207 have:0.021889838624086035 on:0.021538510260817236 had:0.01891224935810262 In:0.018322734017032577 :0.09499865263430368 +and:0.12073560513262364 of:0.06837406569381489 or:0.037242802101271205 I:0.030528577359606214 all:0.024566493803482144 from:0.024288985898781038 was:0.021279143106257628 be:0.019827577106703274 is:0.01973029781201356 are:0.018938684532669798 as:0.01651125655558858 been:0.015363282015276286 just:0.015117403719770876 years:0.014999966279607752 for:0.014438008818753288 that:0.013777632931366732 but:0.013745489323656794 than:0.012903788438575654 first:0.012059624421321262 :0.4845713149488594 +the:0.11919516938815296 of:0.07230453158552728 and:0.05781056740443249 a:0.043018564803886335 to:0.031305092790907506 in:0.020848713353460488 at:0.014270110001066288 .:0.012526810245749479 :0.012413283442322082 for:0.011719122709941797 by:0.010808400946589808 or:0.010404172990115616 The:0.01003576004804544 with:0.009811868184449042 tho:0.009295902015355835 was:0.008924239095331684 that:0.008672304223433876 is:0.0085591147338948 be:0.008335143826716943 :0.5187411282106204 +of:0.09129790931378902 the:0.07369883040827747 and:0.047842263382354346 in:0.04189055351593407 to:0.04045875475680249 a:0.03542341257202578 be:0.02020462051672066 for:0.01979292654746225 was:0.01760256398103379 at:0.017380150555488715 is:0.014984483003968216 with:0.014047653760730413 by:0.01374644383819499 :0.012670486581795598 In:0.01200961464556976 or:0.011563835749786333 from:0.011391516893522809 are:0.011273104484969465 that:0.010755276030689069 :0.4809655994608848 +hundred:0.02334136986593815 up:0.005482494641173394 men:0.005366536521246011 Hundred:0.0047587970519216575 John:0.00441808156134956 William:0.004390720675819281 him:0.004016828614280843 ;:0.003997112205305733 due:0.003721199871732 in:0.0036582900032443304 time:0.003637206863828461 James:0.0035594902370151707 out:0.0034878448964120057 .:0.003467980723571515 1:0.0032804584819785204 day:0.0032444781513863933 ,:0.003058139385740603 :0.0030314555521939613 Robert:0.003005471634785646 :0.9060760430610768 +the:0.5170079233417358 and:0.07129150949617293 The:0.0628290754947896 a:0.06055149789177789 tho:0.026778314853808764 tbe:0.012942683464461225 most:0.012074140954797481 in:0.010531675030983562 all:0.00885920870299464 qualified:0.008623534400903434 as:0.006724745187574147 A:0.006593183513187448 of:0.0065739832713963 or:0.006332915682540408 other:0.0062479441149042225 are:0.006230598938305945 some:0.005925741906775368 very:0.0057581079155096925 those:0.005484040527551545 :0.15163917530982954 +of:0.09322245764827518 in:0.07524053886303152 to:0.05240492972334024 on:0.050384913260795056 and:0.027228239118255414 with:0.02465275970052513 upon:0.021651826199344693 for:0.018088663920610388 from:0.017873610320893654 at:0.014355524642360585 by:0.014071725125441942 In:0.012009065546490286 through:0.007255607992935933 that:0.007198115094736449 under:0.006907807852215157 things:0.006005890546589719 those:0.004938005037290971 one:0.004795217610311061 law:0.004088033853829047 :0.5366270679427276 +in:0.29644589718326353 on:0.12848081386132862 of:0.087861425975272 In:0.07181467656059694 to:0.051656292301403006 and:0.04686668037972898 all:0.03446740274539832 with:0.02970227007337448 that:0.02442316162125898 from:0.023013588096399255 by:0.02069860024681575 at:0.0195568623336989 for:0.01877272879960506 On:0.01777380678211815 upon:0.015720129048083363 into:0.012740146002356251 is:0.010154569834893322 under:0.009956586473874436 as:0.008426494456870487 :0.07046786722366018 +and:0.11985958826289846 of:0.1062050968672212 to:0.07789834277532018 the:0.04433985557040441 in:0.035741197524946845 with:0.034846092879296714 on:0.024922422339599747 from:0.020343804873585985 as:0.019789986516654205 for:0.01959452769869051 an:0.016390498956021283 by:0.016354597027424332 No.:0.012814430528016289 his:0.011527522181162158 or:0.011503987585912317 1:0.010244405291759299 at:0.009414772602334894 In:0.009320536511969492 a:0.009048617192153677 :0.38883971681462803 +that:0.20625978076537585 and:0.10705498234639556 when:0.09294545793384144 which:0.07572736036290396 as:0.04037681896234589 if:0.0398419736297161 where:0.03830219472075366 to:0.03464364181171807 but:0.03300767595318333 what:0.01962770138373293 When:0.01779697792952867 If:0.01657382481349784 Then:0.015034333592047025 will:0.014627632496739545 whom:0.012794056997591141 said:0.01265514160283942 until:0.012457016522100758 before:0.011912862443559002 because:0.011556805481064874 :0.18580376025106493 +Miss:0.25157331481318795 and:0.1475166254032965 of:0.04374393537589886 Mrs.:0.037181010440008766 said:0.03311513017309187 the:0.02939736431400271 by:0.018531324134028592 Misses:0.01235241068798327 .:0.008847357407327722 :0.006307619214882058 to:0.004741964163870862 that:0.0034688315973649617 Mary:0.0032813279902745734 as:0.002959983367644921 with:0.0027857114904518126 A.:0.002764977925071005 Mrs:0.0027215465474430926 a:0.00268630930616618 Dr.:0.002627514195654323 :0.38239574145234995 +and:0.14507320772351315 fact:0.08580533594336559 said:0.056464728489513914 so:0.05141663139801109 believe:0.03728868944610554 is:0.032697255055655516 say:0.030323479159427524 know:0.029749358812227955 found:0.025535190692382553 stated:0.021273605064562356 show:0.019511948220510757 but:0.018999393120383457 says:0.018814328565908398 think:0.016893655385130203 was:0.01658797795582863 all:0.01652317309060226 see:0.015409038245983688 opinion:0.015263158537430448 order:0.014744011681695817 :0.33062583341176116 +and:0.041233803657324965 as:0.039882131967196956 is:0.021472704023170083 it:0.021135203975261686 up:0.0198463812998083 him:0.018333930250484357 feet:0.017518220524884016 right:0.016674125532682695 went:0.01628693364700352 down:0.015000037558168198 them:0.01458900332398482 way:0.012918619161897208 came:0.012251976558552497 going:0.012008036792836631 go:0.011876251051852344 entitled:0.011853689178600392 was:0.01164173612102066 order:0.011129331209069435 made:0.010641397974874827 :0.6627064861913263 +a:0.3585944181543844 the:0.18482536566014746 of:0.03936526905040719 his:0.035224711510453026 and:0.0330306663776853 very:0.021672391555241612 two:0.019887306776953006 an:0.018506282253815853 three:0.017940916065830054 their:0.016518594056857225 little:0.014148598409542218 one:0.01321220291722887 my:0.012829750311326877 no:0.0128290465268633 The:0.011801529274237065 A:0.011208271228229112 tho:0.010960327961710743 her:0.010948532973966474 four:0.010510401486580886 :0.14498541744853932 +hundred:0.02334136986593815 up:0.005482494641173394 men:0.005366536521246011 Hundred:0.0047587970519216575 John:0.00441808156134956 William:0.004390720675819281 him:0.004016828614280843 ;:0.003997112205305733 due:0.003721199871732 in:0.0036582900032443304 time:0.003637206863828461 James:0.0035594902370151707 out:0.0034878448964120057 .:0.003467980723571515 1:0.0032804584819785204 day:0.0032444781513863933 ,:0.003058139385740603 :0.0030314555521939613 Robert:0.003005471634785646 :0.9060760430610768 +and:0.09285335959352777 was:0.045416209589844735 is:0.028171138808807217 found:0.02325560865214803 made:0.02281392528442842 are:0.02035987277121281 that:0.01854913169619514 but:0.0181098909178995 up:0.01771454159263762 not:0.016928757158738168 it:0.016495858572422382 were:0.015126173990775652 been:0.014106631186845731 be:0.01321959031864361 out:0.01313323965819287 him:0.012747555642200585 them:0.012383238305302299 as:0.011269982056507642 men:0.010569342361287377 :0.5757759518423824 +the:0.19865534630637316 of:0.09765863276468358 to:0.05317565584643225 a:0.039217068112161045 on:0.035489390425500374 in:0.03076386924431556 and:0.021856831581337145 from:0.016675068480189834 :0.014727875063733277 The:0.012873759379077625 by:0.01121302422301825 an:0.009447981062114225 tho:0.009077456375118973 with:0.008317690705204987 that:0.007933964522152871 In:0.007870318050077388 at:0.006868400804768281 for:0.00635188050366411 as:0.006013644812982846 :0.4048121417370942 +this:0.08909136042633155 other:0.08289765411237836 the:0.07332113531274956 of:0.038617705838338526 all:0.03582302765246742 public:0.034622301495701065 same:0.03207986018491736 their:0.031129449356525257 one:0.030350175072664725 and:0.027758370747469136 his:0.027569224195327008 different:0.025046896916684352 in:0.02451574546257431 agricultural:0.02370091288766689 these:0.022483036580883905 next:0.02097443993325802 for:0.020727588918598234 long:0.020283664626002722 that:0.019942598378868057 :0.3180648519005936 +and:0.04819843989906931 miles:0.04557743545992167 far:0.03329046674008811 free:0.028669437382272824 or:0.022192572497513784 away:0.020953955161613372 taken:0.018966508780953382 it:0.017867616169315467 him:0.017548547044280945 suffering:0.016184660789075773 them:0.015406485220066574 received:0.014604815782593318 years:0.014038008579975303 letter:0.01380649144794787 out:0.013472207966197042 returned:0.013136056561358772 feet:0.012664714753968218 refrain:0.012324111423299443 Senator:0.012169047474337984 :0.6079284208661508 +to:0.544686428173974 will:0.08911512359529788 not:0.043025865902597556 and:0.03426443479909951 would:0.03366871687407054 they:0.01937110676108975 I:0.019134898506444457 may:0.01769364382323809 shall:0.01738790278519806 should:0.0159653775567819 we:0.01566061390935979 must:0.01340964134923146 can:0.01202151474858525 who:0.0112431285912457 could:0.010797109359412254 you:0.009054325252992346 cannot:0.007388948826917565 well:0.007037421179913573 the:0.004549877018797245 :0.07352392098575321 +the:0.24478447313764207 of:0.1587955250037007 a:0.10667291272401709 and:0.06405697054887184 their:0.032632021681564934 his:0.028001970933716418 to:0.0223052619989575 with:0.021895172192711785 in:0.018838741380196065 for:0.018825056147996587 do:0.01625167699909596 was:0.015908814027391232 is:0.013888522280748205 this:0.011993078549578427 very:0.011144930508222513 about:0.010772157421903062 are:0.009739877095471918 much:0.009686139286040157 said:0.009360309807789279 :0.17344638827438424 +one:0.1028303141280697 part:0.05963429477052991 out:0.04766456937681193 some:0.031418679026461914 members:0.030764490253327767 side:0.029940657362655835 portion:0.022063658796890564 office:0.020457735219956013 member:0.019726706386316174 end:0.019666887540649894 tion:0.018667441728710307 parts:0.016814747270460957 people:0.014112771422418794 all:0.014072739582212475 any:0.013183573287639892 One:0.013083578354183906 that:0.013024335602903442 account:0.012482348155001894 many:0.012077825070275192 :0.48731264666452345 +or:0.16372039288158802 the:0.13020807634341877 of:0.10141701959523175 and:0.09897409414585828 in:0.05592161977365505 for:0.04470924201071249 to:0.030485339762060602 about:0.024897952758074722 by:0.024027256318415322 with:0.022278798373353437 that:0.01710716671423374 than:0.017099956705936007 In:0.01572336125797143 from:0.014176784429042064 but:0.013698762116217032 on:0.01261752070760057 only:0.012334807603369205 some:0.01165181972614504 a:0.010684676389511538 :0.17726535238760494 +and:0.06454739073657131 demand:0.023313300174744492 ready:0.0192991955467307 used:0.018559068069203856 time:0.0167973135366693 not:0.012889415712033305 vote:0.012868664167591082 it:0.01277775949265748 candidate:0.012059490274945432 him:0.011492660117416436 them:0.011389360230310022 called:0.010603763162339089 made:0.01030049958521204 up:0.009942829375404135 was:0.009875709402481388 as:0.009516893763303088 patent:0.00929908628672026 or:0.009178704268878403 but:0.00882338719685127 :0.7054655088999369 +a:0.2835080107285857 the:0.13684032649333724 of:0.06683057147358193 and:0.05785194443513172 to:0.05775362625067986 for:0.04920751101782087 in:0.027948791531053764 two:0.019247304584790417 with:0.018841900372188896 at:0.015703157700507658 The:0.015295652295050343 one:0.014852143091768607 by:0.014088135823480306 some:0.01290884290827202 tho:0.010644221666315233 three:0.010156206237146416 any:0.009953723858284474 that:0.009106686394943386 A:0.007964711704424712 :0.16029653143263642 +the:0.16597406743442591 and:0.07455630466202773 of:0.06796750579293219 a:0.055991732992662864 The:0.036246261169230416 Mr.:0.033519698216566994 he:0.02258217135987933 that:0.021087882292421454 I:0.019825955809973785 in:0.01968413685168676 was:0.017833931947922443 be:0.0168016735040077 to:0.015841586570983578 have:0.015547312346956116 is:0.012775875755951944 are:0.012455450128831183 his:0.012407248067686867 which:0.012306809562859428 tho:0.012067041837806351 :0.35352735369518695 +of:0.3125592769526723 for:0.08756564137721196 to:0.06909875541029303 in:0.06576375540879968 and:0.06361524272061085 by:0.05420675040789918 with:0.04612100907947139 that:0.04299852699870189 from:0.028162224578963963 all:0.026135939909366843 In:0.01653136889988416 as:0.01623541615354859 on:0.013874766800815227 is:0.012530296269842107 at:0.012049453866780458 under:0.011971164492647984 upon:0.010099210968187599 but:0.009367987234278372 or:0.008699620287417444 :0.09141359218260699 +and:0.138171886151071 that:0.10916469991948677 as:0.08617423143335107 which:0.0685699069844464 when:0.039242933711323646 but:0.03223035332099631 what:0.027052059181446767 if:0.022794151915524696 where:0.014750736620828295 If:0.012550242599500067 When:0.011368397756035662 But:0.010731331989107144 so:0.010514786473784713 while:0.009688178141005591 As:0.009418707976152364 whom:0.009263646773434166 for:0.00917199514598782 day:0.00866697137486815 And:0.008417233783687889 :0.3610575487479615 +the:0.12508313226584838 and:0.09280424317460831 of:0.08096749139680945 to:0.06493546279735464 or:0.024827368794575998 for:0.017613475387745197 that:0.01742366730667576 as:0.014874971512869466 which:0.014261313467415635 re-:0.013994569529990893 be:0.01353676132082904 in:0.012971311133375272 on:0.012715238652113199 he:0.012150303543929925 was:0.012057929008376512 a:0.011559913108607408 they:0.009680590224644148 are:0.00965325677601594 is:0.009542021571855644 :0.4283469790263592 +the:0.32319231135631205 of:0.07227416188947991 this:0.055906173613693655 The:0.049609265724950724 his:0.040600887737728075 their:0.03863320809588061 that:0.030626629281959115 and:0.029974623777517587 no:0.028089910919746313 its:0.025480118358920962 This:0.023123233623394846 a:0.02256456423959984 motive:0.021105014909520957 our:0.01975692342421975 political:0.018210094094436472 such:0.01692328930937101 whose:0.016636112407240406 tho:0.014742026899089222 my:0.011967888213108015 :0.1395835621238305 +the:0.32072706766057063 a:0.2573648470629245 of:0.06007984600669564 to:0.052380155389635044 no:0.047002519207500176 any:0.03276750541777006 The:0.0263279466494157 tho:0.02023495994264457 his:0.017983880064768545 their:0.016839451486542905 for:0.013559786705584647 our:0.011654576163954496 and:0.010492288814642932 in:0.009739922706727161 every:0.009688053714169134 this:0.009622490352824078 by:0.009076929080852196 tbe:0.00854130424686727 such:0.0075420639183120105 :0.057374405407598306 +the:0.5717205016194316 of:0.09133026387936538 a:0.08102065823635593 in:0.02618278029244913 tho:0.025752480808672172 The:0.02545655085724556 this:0.023614764506883695 his:0.014385133167692247 our:0.013112666171667705 their:0.012488338850111207 tbe:0.012243815038187868 and:0.00835874204208329 on:0.0070831161654844555 by:0.006926628401345005 any:0.006443035701886127 no:0.006097229295537069 its:0.005192328939275965 her:0.005019013127805139 other:0.005015085157502088 :0.051556867741018426 +it:0.15590291243815246 there:0.0887784025092866 It:0.07904016205387611 which:0.06936908824431676 they:0.05362226352982171 that:0.04647101454662571 and:0.04420120519214072 he:0.027952982163116303 There:0.027623278151575524 mortgage:0.023443129896555264 you:0.018859539766003214 who:0.017891862574647276 this:0.014117846301193209 I:0.01363040583752058 sale:0.011818751696880098 This:0.010767348085132659 work:0.010306262168963347 as:0.009927627839447666 They:0.008978002990569422 :0.26629791401417535 +the:0.5791879645412562 The:0.0800659199301688 of:0.06488394498747642 and:0.0396170365096013 tho:0.02676173848105852 to:0.020503638833537768 in:0.02041606435387285 a:0.015084206215954698 by:0.013542469216225836 our:0.012450326230903001 tbe:0.008070029821833052 from:0.007852002743731181 their:0.006653230808537859 national:0.005778951784238301 with:0.005752934039862899 that:0.005370090271647398 no:0.005129229083899915 for:0.004997213755409285 or:0.004952875567681991 :0.07193013282310269 +the:0.11919516938815296 of:0.07230453158552728 and:0.05781056740443249 a:0.043018564803886335 to:0.031305092790907506 in:0.020848713353460488 at:0.014270110001066288 .:0.012526810245749479 :0.012413283442322082 for:0.011719122709941797 by:0.010808400946589808 or:0.010404172990115616 The:0.01003576004804544 with:0.009811868184449042 tho:0.009295902015355835 was:0.008924239095331684 that:0.008672304223433876 is:0.0085591147338948 be:0.008335143826716943 :0.5187411282106204 +and:0.1687448311648653 that:0.1608177604127464 as:0.11407620163267404 which:0.0730449894946737 when:0.054041975695961135 but:0.05365639478487329 if:0.04270980113422677 what:0.030913065237952807 If:0.021255861459328625 When:0.017687341915797277 where:0.015334652248676377 But:0.01485308703544906 As:0.01462121987824969 because:0.012702769196795622 while:0.011226561505309112 whom:0.010673821732688686 until:0.010434538961559641 for:0.010185601591765417 And:0.00980881121559142 :0.15221071370081565 +and:0.22708392177003459 days:0.0870443266868661 that:0.043691334852124335 and,:0.03942471445510982 one:0.0344800970094934 until:0.03257299912705704 soon:0.031239770238872776 year:0.030827497356395107 shortly:0.02669820370786743 hour:0.023442133065725033 years:0.022897576546022452 minutes:0.022403111679999293 time:0.020778408519096517 months:0.019890631698392485 but:0.019053307450355668 week:0.01629308194550057 purchaser,:0.013597654079892565 day:0.013558072972411846 long:0.013269434352389359 :0.2607537224863936 +boy.:0.3722102146085659 girl.:0.36237587494165113 of:0.04699019638089315 Mr.:0.022793627630524345 and:0.01461536572100264 the:0.012577227938527566 Mrs.:0.009576176836277232 to:0.008492633745477048 by:0.006045239242359379 in:0.004768943181400858 boy:0.0041703060763946176 Dr.:0.003990651506400468 .:0.003916453766249409 Messrs.:0.0029799086330518235 with:0.002928070403425151 from:0.0026922179127960074 for:0.002426398977021793 :0.0024066005966672985 between:0.002313890867810723 :0.1107300010335035 +the:0.16102576399368962 of:0.06380356046682532 and:0.061995805794705997 Mr.:0.059035383761185334 a:0.04043904578481294 The:0.031168863984298426 was:0.020170974401425464 to:0.01664263359904322 in:0.01573791662554465 an:0.01556268429204308 is:0.014748804094614555 be:0.014536303853645715 his:0.013332003151504023 :0.012520155530940614 or:0.012085347647541114 .:0.011723038640458115 are:0.011581001427625966 tho:0.010357339994668771 been:0.0094221212829347 :0.4031112516724924 +Miss:0.1368984374060985 and:0.12060072191798453 of:0.11310871928820421 Mr.:0.06083102361129513 D.:0.03691004959303686 Mrs.:0.030781894012401816 the:0.023280086458571117 with:0.02281133303981622 said:0.02149337563686495 in:0.018368013006172825 for:0.01834788933452315 .:0.014163778647089285 8:0.012145982188356906 by:0.01155919000441936 President:0.010721634042351501 Mr:0.008774667997233823 A.:0.008120803953900888 12:0.00800784000927566 7:0.007530098743474577 :0.3145444611089287 +of:0.39955865147492375 to:0.11095051670078954 in:0.10527076885979707 on:0.06887320758641763 from:0.055461996624476775 by:0.04321909858318951 that:0.021081692482084136 In:0.01825898039287641 and:0.017664793299187277 with:0.01765754585031202 at:0.017052810692565566 for:0.016313869512668285 into:0.008783687501924072 over:0.00742977367261152 before:0.006796540506467302 through:0.006698943275843781 upon:0.006547610753575241 along:0.0057195364378920055 across:0.004491169929524505 :0.06116880586287358 +the:0.5361415109581277 a:0.2505830964592009 The:0.033611714043841896 tho:0.02734082931282661 and:0.014843000714296773 this:0.01182237294096721 his:0.011725185590942513 large:0.008361288301882135 tbe:0.007977317137436506 in:0.007789798957124765 high:0.007240986539523744 every:0.006771533066436586 any:0.006563963989062427 no:0.0060404514991430555 that:0.004876563635771236 their:0.004762887555486674 dis-:0.004279252368656184 first:0.004240924992881628 A:0.004098142937837647 :0.039929178998553846 +the:0.16807735899698817 of:0.10541662057906837 and:0.05138367848570702 a:0.04141865232648221 to:0.0385989743764065 in:0.026264864977736738 was:0.019530675665220657 his:0.018900421021236905 be:0.017373825006196972 their:0.015767721170721456 for:0.01557246589796783 with:0.014071419046630446 is:0.012922913111931644 at:0.012690452250034052 are:0.010702713108721902 .:0.010158075558988393 Mr.:0.009672788574483367 tho:0.009612591781990074 were:0.009549306361446321 :0.391314481702041 +to:0.24056714782978111 of:0.1364969608068708 with:0.10461162388114285 for:0.056251747037647064 upon:0.05223543588394882 and:0.04802244353989334 among:0.02962791021511736 by:0.02883429813729288 from:0.028329345976044952 as:0.021734818214427503 against:0.019509360460334642 in:0.017978236293463797 about:0.017562685058512734 tells:0.016792730827757386 told:0.013773867219833844 tell:0.0123468565074748 at:0.012289726811220824 before:0.012127633339603917 on:0.010337460761676687 :0.11956971119795468 +of:0.11437211064693593 and:0.11086705840676253 with:0.07381633159099753 as:0.06942131519287871 to:0.06180019141008784 by:0.057431312044876504 in:0.056423354227554456 is:0.048261570874871734 was:0.04030782162863304 that:0.03891038214479509 for:0.031385972633979076 at:0.020236952989258008 from:0.018494336103492052 made:0.01766908013381274 such:0.016842401309013284 than:0.016462266984987248 like:0.016106004001002226 on:0.015949649442564984 have:0.015472920475147445 :0.15876896775834956 +two:0.6293392809932774 three:0.05500921746906812 one:0.040343060220746005 Two:0.032774961673223496 four:0.02657182041054431 five:0.019149576588565254 ten:0.015512171068909923 six:0.012845993853730378 more:0.011521859788401164 eight:0.010759981263866179 hundred:0.006833543398695361 seven:0.005181115672120852 sooner:0.0046314174898342475 week:0.003953216686914086 year:0.0036914334738676873 fifty:0.0032210860923901283 twelve:0.003008137534537421 Three:0.0028962666419490414 twenty:0.0028716974108218617 :0.10888416226853709 +years,:0.011244219846488938 time:0.008882161274617746 in:0.008543577446961203 ;:0.008176865856642837 porous:0.00709468490060814 hundred:0.006522156100992782 it,:0.006442646144711248 States,:0.005873955746906458 manner:0.005636242513613943 country,:0.005479624196664403 them,:0.005380555783124355 ,:0.0053213282340232775 him,:0.005116465794074653 time,:0.005012953480321698 city,:0.004996484782641075 and:0.0046864187845840274 dollars:0.004669833782541253 year,:0.00454859238968153 of:0.0044772931635083 :0.8808939397772921 +the:0.11919516938815296 of:0.07230453158552728 and:0.05781056740443249 a:0.043018564803886335 to:0.031305092790907506 in:0.020848713353460488 at:0.014270110001066288 .:0.012526810245749479 :0.012413283442322082 for:0.011719122709941797 by:0.010808400946589808 or:0.010404172990115616 The:0.01003576004804544 with:0.009811868184449042 tho:0.009295902015355835 was:0.008924239095331684 that:0.008672304223433876 is:0.0085591147338948 be:0.008335143826716943 :0.5187411282106204 +of:0.20973960479327153 to:0.10142577208638895 in:0.09233754363160535 on:0.07077250530903807 and:0.05630669600463257 for:0.05509488163435915 with:0.047990977392158116 by:0.04764777400635196 that:0.03703516654933452 from:0.033180570769713105 is:0.03310172724874479 at:0.03207993791465322 In:0.024121675028286698 was:0.0182508919656515 upon:0.014887913263716072 as:0.01074810260437187 all:0.01039102542955076 under:0.009847158251540688 when:0.008331500577527852 :0.08570857553910323 +away:0.06099060140456439 and:0.060797945223829655 them:0.037066970489709854 taken:0.03614540305631588 him:0.03434562956271749 free:0.03158379624665569 come:0.026534811016918413 out:0.026222245774784915 in:0.02438748589204235 suffering:0.019502353801300724 or:0.018802768910899232 it:0.018601886205840724 derived:0.017897654526152808 far:0.01788998287003855 up:0.017609115634215543 miles:0.017566511405606194 us:0.01746684853874214 received:0.0162212009560572 came:0.015439730322581325 :0.4839270581610269 +one:0.1028303141280697 part:0.05963429477052991 out:0.04766456937681193 some:0.031418679026461914 members:0.030764490253327767 side:0.029940657362655835 portion:0.022063658796890564 office:0.020457735219956013 member:0.019726706386316174 end:0.019666887540649894 tion:0.018667441728710307 parts:0.016814747270460957 people:0.014112771422418794 all:0.014072739582212475 any:0.013183573287639892 One:0.013083578354183906 that:0.013024335602903442 account:0.012482348155001894 many:0.012077825070275192 :0.48731264666452345 +a:0.33593045499504515 in:0.08640413086368454 of:0.08085330495540365 and:0.06541244176920799 the:0.051663268253104994 to:0.04593244099979304 with:0.04570310958680678 most:0.03142246118545175 is:0.021122802415567573 In:0.017605341926987303 was:0.01727105061208307 very:0.017164033800152457 by:0.014157646460183375 at:0.013800004745092243 are:0.013646635913181267 no:0.01315548285209616 so:0.012202536884584546 any:0.01209665073436895 for:0.010702611274110761 :0.09275358977309442 +the:0.31380856728888085 such:0.135532064233123 a:0.10852195562940715 his:0.07166898387151792 as:0.05651316667009118 this:0.04851414473399798 same:0.030009658033370953 The:0.02980005535523627 my:0.023124970383457392 their:0.01954747803817636 and:0.01791124127686518 her:0.016892639699311207 tho:0.015131659492944833 any:0.010045587367076494 great:0.009042908534111013 one:0.008270443423890128 our:0.008199940587683455 old:0.00783642401359646 its:0.007483649132714674 :0.061144462234547475 +a:0.24374163389435566 the:0.23972988231463802 and:0.10249495308490095 of:0.04520801672360399 The:0.03750221026723483 our:0.03621451668724562 his:0.03283993699969612 their:0.030688523627617977 its:0.02677938065683585 is:0.01994061262519811 this:0.018092304286662978 are:0.017502397472839992 other:0.01670209826978883 all:0.014248529040492557 these:0.01396552257171427 that:0.013151816427298898 very:0.011834968778018158 be:0.01147929387157424 tho:0.011441302427116926 :0.05544209997316604 +of:0.13084814232797154 in:0.0740836656586379 as:0.0625527229231004 with:0.059577596335708534 to:0.058433603729754965 is:0.05551580107464621 and:0.04946529489577619 was:0.04264000753602388 for:0.04009673021586375 by:0.037684080471064085 be:0.023941707008899252 on:0.02316059851167503 at:0.022644769441950232 such:0.019950936521181326 that:0.017856095877642635 like:0.017386655618315594 In:0.016902219705578994 from:0.016046571451088905 not:0.01205910100844263 :0.21815369968667797 +of:0.09129790931378902 the:0.07369883040827747 and:0.047842263382354346 in:0.04189055351593407 to:0.04045875475680249 a:0.03542341257202578 be:0.02020462051672066 for:0.01979292654746225 was:0.01760256398103379 at:0.017380150555488715 is:0.014984483003968216 with:0.014047653760730413 by:0.01374644383819499 :0.012670486581795598 In:0.01200961464556976 or:0.011563835749786333 from:0.011391516893522809 are:0.011273104484969465 that:0.010755276030689069 :0.4809655994608848 +the:0.14569633794848824 of:0.10086147723429198 and:0.06330995298392476 to:0.036369841211597725 a:0.028365710783098876 in:0.026374492236661575 .:0.02156861110393344 at:0.01699022287412958 by:0.01460133424713338 as:0.013919149228411639 for:0.01225991929087169 his:0.011709233746968363 with:0.01166562028325998 :0.011055632922818436 on:0.009890996676145215 tho:0.009296012064333954 The:0.008756366908973537 or:0.007695706762798371 that:0.00760305737408702 :0.4410103241180723 +the:0.14277038002801662 of:0.08565761538411454 and:0.08138231135407792 to:0.05107959848493338 a:0.045497765086510836 in:0.0272305899265926 at:0.023292236477314186 or:0.017816706592851325 The:0.013378296653126363 :0.012698669245308334 with:0.012228147724416787 from:0.012044503716573394 by:0.011779234898512838 for:0.011557885627629359 his:0.01116062475863805 .:0.010429763987623887 on:0.009460639480273756 tho:0.009445219992380224 two:0.008536662330702348 :0.4015531482504032 +to:0.1127162697666929 of:0.10752274443952287 with:0.10292314359409047 is:0.07708631517212433 in:0.06637458681104787 as:0.049245572974937424 for:0.04867039563122175 was:0.047128131076616495 and:0.03880840875891931 make:0.03836198069945737 by:0.03632704893223666 such:0.03297635591072188 made:0.02524898066405805 at:0.024728698349041168 on:0.0241289830846701 that:0.02128967790268846 be:0.02096531643555303 have:0.020749623984834497 not:0.01599492749845146 :0.08775283831311394 +and:0.09756556368541265 was:0.05426276517937397 is:0.03866664491042744 up:0.02568624008661788 it:0.024967480530237875 made:0.021983496168589956 put:0.021728272405609952 placed:0.021433399872469706 that:0.020699896774439272 are:0.01933805732185307 them:0.019230578399337284 him:0.018697869349579923 be:0.017987018805625865 but:0.017054981134282398 were:0.016928399532571015 as:0.01666685808038748 engaged:0.01649642158281899 found:0.01526160066577768 out:0.014987717957962178 :0.49935673755662546 +the:0.2901140057831946 in:0.14513826518224526 an:0.07006571665950052 such:0.045426770595776475 and:0.037917921954059616 of:0.02914573304283007 In:0.0251686336620698 this:0.02494374354940675 his:0.024202651118928675 tho:0.015909069247621026 its:0.0151108065019784 their:0.014891575259313297 no:0.013222739436172404 full:0.011979305151163213 The:0.011629988709355964 a:0.009418701701673898 personal:0.008605956737922745 my:0.008596586999208716 great:0.008486316855998868 :0.18902551185157973 +the:0.6027375414136347 an:0.08186879655957256 The:0.039489064518654526 great:0.035596277573644225 tho:0.028428776001766312 large:0.025916989156361717 and:0.023248615333103677 some:0.018866209288789952 vast:0.01546201513919316 this:0.013534665305534333 any:0.012358232472440835 lateral:0.012002757807765326 a:0.010396596874477543 considerable:0.009186426337320119 other:0.008647676721018719 tbe:0.008143311194054323 same:0.007649710221835579 greater:0.007371862879446228 fullest:0.007263347533624962 :0.030831127667761225 +the:0.11919516938815296 of:0.07230453158552728 and:0.05781056740443249 a:0.043018564803886335 to:0.031305092790907506 in:0.020848713353460488 at:0.014270110001066288 .:0.012526810245749479 :0.012413283442322082 for:0.011719122709941797 by:0.010808400946589808 or:0.010404172990115616 The:0.01003576004804544 with:0.009811868184449042 tho:0.009295902015355835 was:0.008924239095331684 that:0.008672304223433876 is:0.0085591147338948 be:0.008335143826716943 :0.5187411282106204 +time:0.01805837990894307 it,:0.015747449781999618 up:0.01302205617993167 man:0.012300531652604767 them,:0.011980078939889581 him:0.011946946233258713 him,:0.010838779167878761 ;:0.010705829171959263 one:0.010024753346076847 it:0.009922424476226812 years:0.009772890947918273 year:0.009078133707814897 years,:0.008795635867692188 time,:0.008745350428700085 out:0.008238673694901394 here:0.00800186417367344 :0.007849736605250178 them:0.0077484275997366375 work:0.0075984256553544025 :0.7986236324601894 +the:0.2399140247832766 a:0.11527713023189974 of:0.06366187307917881 to:0.04951376413319448 and:0.04414094977039249 in:0.031341040566671904 his:0.02250937019467117 The:0.021934346522063 an:0.017305224227907437 Mr.:0.015366101689930512 on:0.014392381405561814 her:0.013579499546562153 tho:0.013214907345747463 with:0.0126641953684463 for:0.011712782015996544 their:0.009473210817111383 by:0.008366907069643067 In:0.008108124518909007 that:0.0076154205843738 :0.27890874612846234 +a:0.3364597119387096 his:0.14903770646039763 her:0.0945768696509025 my:0.07610762329916664 the:0.0519302090071862 old:0.021922342229958387 your:0.021536721273568343 A:0.02045591804199786 their:0.01942848162235632 our:0.018940112386401788 and:0.014555702583614428 bis:0.01111264112613066 both:0.010438251756481021 intimate:0.010133161982019818 very:0.008945302738567694 good:0.007907898470192309 of:0.006801363288727395 one:0.006589616441138248 My:0.0064616957157205175 :0.10565866998676261 +of:0.23279606210521578 thence:0.0806810696331426 said:0.07407306313397719 and:0.06919181737620873 in:0.04780986348815592 a:0.04631002384009486 the:0.03545002581424759 certain:0.027002463357867046 one:0.025088352481116058 to:0.024185100942174166 for:0.020638725236877667 or:0.017271510147369242 two:0.016416514027217124 vacant:0.012286832488425074 One:0.011359253099913966 In:0.011210294718271466 each:0.010967627461490081 three:0.010796145196444309 by:0.010127150293917166 :0.21533810515787397 +to:0.3152903614703962 for:0.11093453994763358 with:0.09274214585576332 of:0.05558245863313118 told:0.041593588634952015 upon:0.027991005715641597 tell:0.026747047819408818 at:0.02638567340079089 asked:0.022793189295020114 from:0.021918290319572188 give:0.017894704139890787 gave:0.015680050145888753 help:0.015157971603875393 in:0.015103719056135606 take:0.014513775768445775 against:0.014285438824109362 by:0.014271988128417632 left:0.013926766751194804 get:0.01278151113975946 :0.1234057733499725 +of:0.10497650075987232 to:0.08926967478849938 as:0.08356455261556481 with:0.06168919747862349 that:0.05340888224545432 by:0.05076424953308806 and:0.0488405645384081 is:0.044676121522739726 in:0.042853282356473066 such:0.03962156245819699 at:0.038415960911047674 for:0.03596336869301869 on:0.03065309372070006 from:0.02518442082894442 was:0.023698301398353095 make:0.019979848764855854 made:0.018394349239405965 be:0.018383723721086556 As:0.01782918925948257 :0.15083315516618487 +of:0.3184190360443104 to:0.09837906929557073 that:0.09130553659096319 by:0.07716162857593323 and:0.07688457445143693 with:0.03906316830091578 for:0.025965737317318032 as:0.02542658772834525 all:0.023506616441147255 which:0.01968652879663868 among:0.01841207866951537 in:0.017513619642541476 when:0.01720235800928863 from:0.015449175925616863 on:0.014523860288414415 but:0.011312790402103057 if:0.010474920730546195 where:0.009647153854551638 upon:0.009387241003742929 :0.07927831793109999 +the:0.17027190784407714 of:0.10585557835912704 and:0.07355927771906935 to:0.05486905984958157 a:0.04543746377447453 in:0.03128555052933153 be:0.028704485173100775 was:0.02350529800142253 is:0.02215549335554494 for:0.02077556258358175 his:0.01804639098945333 or:0.016335100594594944 their:0.015847999621030492 at:0.015526727957625254 been:0.011815834631173878 are:0.01139058447814694 this:0.010362020528084328 tho:0.01035635773045807 its:0.01000473355720393 :0.30289457272291764 +June:0.07882023721720188 April:0.07538315120165634 March:0.06797702417350932 No.:0.0668699541427569 and:0.06383371095908799 July:0.05457864417947169 May:0.05350903317041897 January:0.02670062243171212 9,:0.024673274447975704 to:0.02373102802516319 October:0.021332235163800346 August:0.021274956731335632 of:0.019738341773632952 November:0.01884822470483979 the:0.018266751921638163 September:0.01820993460067602 February:0.0147777629159018 1,:0.013901203922591783 December:0.01289743125226058 :0.30367647706436884 +be:0.27093331798548387 was:0.19034413073320017 is:0.09728787845186194 been:0.06971344032468704 were:0.0667921749841068 are:0.06034548122410838 and:0.03151710214591133 being:0.02664081010590599 he:0.019941570638654427 had:0.016424170893740465 bo:0.016128720430830603 have:0.015658890814486234 has:0.015489559795028739 Is:0.014009488490258067 am:0.010221800681822244 so:0.00727762462751282 it:0.007231475716294828 lie:0.006924776843714537 not:0.006293071316214617 :0.049824513796176875 +and:0.22775422386071745 or:0.12144082219015824 not:0.08191168683102307 that:0.03421482208802423 to:0.02527687969049024 but:0.023568846687800335 is:0.01911735565146282 of:0.018115896783270496 was:0.018099319078255103 as:0.014004509224406202 be:0.013626293073716487 for:0.013594986346656363 nor:0.011478396491647176 do:0.011045979749081948 are:0.010593723532787588 them:0.010442995428957968 even:0.010239862269193344 by:0.010179828009183798 it:0.0099926910633987 :0.3143008819497684 +and:0.1980209664492045 the:0.07456993291310765 of:0.030946070741863306 to:0.022263662681727067 .:0.017162324683138743 is:0.013105509587236523 was:0.012573048710252202 be:0.011199694948270266 Mr.:0.010896497925242589 by:0.009958289384365451 and,:0.008432164114781773 :0.008065476169030392 an:0.007999905974512726 a:0.007982141345496054 not:0.007487230683130103 in:0.007395494167567618 it:0.007326019244018948 or:0.007221470590257542 with:0.007085157833387164 :0.5293089418534094 +of:0.17757416020191927 to:0.13466332743674644 in:0.1327574247342885 and:0.05316907378134334 for:0.05247133661425883 from:0.05127981927807762 at:0.044818222666618265 on:0.04232447596436564 that:0.03843666686382486 with:0.03428275150234446 by:0.03255938892824448 In:0.026760757928594794 upon:0.016892275941812473 into:0.015228648190202808 all:0.015022845740839813 as:0.011098069660203068 when:0.010652587331909316 is:0.010536411200475927 was:0.009791399018207915 :0.08868035701572217 +the:0.1724927763484388 a:0.07468129222467959 and:0.054684257501045816 of:0.04957930967708479 Mr.:0.049327317198058156 The:0.04708940901512081 was:0.025438837166820754 his:0.020168946710501314 is:0.01894365592231912 to:0.015020684534612472 that:0.01458321591591832 an:0.013642867373187982 this:0.011977876468444079 Mrs.:0.011653128773348008 tho:0.011651512218525372 .:0.011502961545241688 be:0.011252714200037988 in:0.01021172743281041 at:0.009827751405169434 :0.3652697583686351 +it:0.17614764165034152 that:0.12605504096317244 It:0.0813832884474059 and:0.06672569069043914 which:0.04468606213860581 he:0.02885578884936755 what:0.02345003250843706 There:0.022245889539335564 there:0.019651479981886336 but:0.017772394826322663 That:0.013778350102084289 fact:0.011354817086092798 truth:0.009207286928983864 What:0.008639496738873377 land:0.007550084522138079 who:0.00712000392636924 as:0.006256063059781584 them:0.005296324522809419 she:0.00499340678001301 :0.31783085673754036 +the:0.20826111295419444 of:0.0829150330743943 and:0.06378924778933637 to:0.03860593086251527 a:0.03608578001474802 in:0.026207211993224833 by:0.01998170455671132 on:0.01940267875606578 at:0.015455097744520155 .:0.01151861682179776 tho:0.010754810553293302 with:0.010560390706050037 The:0.010259651768716542 :0.00893069064851467 his:0.007248699654123813 from:0.007077979057494266 that:0.007003791955858683 In:0.006628236899792284 or:0.00576981676039293 :0.4025435174282552 +made:0.0999812034390529 and:0.06680208263369662 caused:0.02435411478715239 shown:0.02379785223577525 up:0.023253655008919294 ed:0.02312002180398423 out:0.022293807888227747 taken:0.021988971765594088 done:0.02128782706813444 given:0.020283609421760777 paid:0.017098570970207227 owned:0.01708227903067019 that:0.01698438626809451 or:0.016145946252097726 him:0.015808363688274 followed:0.015366441255538056 appointed:0.015126279845513936 held:0.013990473525433292 approved:0.013949758860964168 :0.5102843542509091 +it:0.13135155107971372 I:0.08412841037081532 he:0.08270758555763082 It:0.06313901345543892 we:0.06218970162732115 that:0.054788880378599476 they:0.04981926699843268 and:0.048394124423374006 which:0.04833519534154734 you:0.040643059050409255 who:0.029311568300202907 one:0.02331003326182839 We:0.020821407528102815 she:0.01783623917884928 but:0.014072872908681465 He:0.013540908747049846 man:0.012486823414663686 You:0.012032356384468718 there:0.011602089740157947 :0.17848891225271227 +the:0.16782425294870346 of:0.07143573577917048 and:0.06513263792719355 to:0.04227051986578535 at:0.02923129829438997 a:0.0188770002399779 in:0.018545659298246215 .:0.01719523755324466 his:0.013139906853607946 for:0.012792501938166794 :0.011710556008010175 was:0.011183630542467696 or:0.011166395982506768 tho:0.010907477168271937 their:0.010323830295589443 be:0.010129664410831005 Mr.:0.010035593869975871 with:0.009370264231896117 by:0.009305244668884667 :0.44842259212307994 +and:0.07552504194953026 to:0.061968499393707334 the:0.057643973804479255 of:0.05099347821091035 in:0.045432634061476754 be:0.043176745264505725 was:0.04286344660289687 is:0.0354590811431954 not:0.021327702286003523 as:0.01940744495854301 it:0.019306237087434234 for:0.01929825631926325 been:0.01851743502930562 are:0.01760668094037614 he:0.016473460506366926 a:0.016340305934385613 his:0.016072979388420006 or:0.01494424414056331 that:0.014707567524884455 :0.39193478545375193 +they:0.21343288716303868 we:0.13832606950856677 who:0.08277733967087135 I:0.0672394399271765 to:0.058660802408983574 We:0.04898376494984752 They:0.0446776859923968 you:0.037523854630209685 will:0.025606956980364363 men:0.02255116538350677 and:0.021267297532270548 1:0.019270720123965062 he:0.019231773244964008 not:0.016323920896254535 must:0.016159645111990945 may:0.014818321449903143 would:0.01448222659023785 You:0.012449296107382603 people:0.012060890980014111 :0.11315594134805518 +of:0.12354601947811347 to:0.07696717689301177 the:0.0659902547941605 in:0.060832226513419116 and:0.04997210954197315 for:0.03531196167776283 a:0.03260625602942973 that:0.023004782984749006 be:0.019592591155318858 more:0.018455621355988872 at:0.018181467190175753 which:0.015154519885099983 by:0.014865615638003291 with:0.014813676104814913 or:0.014474295992148773 was:0.014360168072857444 In:0.013208742833516921 is:0.012308468543478876 not:0.011471547426446899 :0.36388249788952987 +a:0.24267116231893807 the:0.17612968220565614 and:0.0846169692286006 of:0.061888251402679575 most:0.03817651022467294 this:0.027461821207551668 is:0.022514955387014278 that:0.021857306530071712 will:0.021146415119763465 any:0.02012164065285771 to:0.018962833315729018 in:0.01884421965441082 more:0.01787722427393953 for:0.01584295445021739 some:0.015593031506360565 was:0.015555588430112729 their:0.01531991386934656 his:0.01241747336880182 or:0.012206391987581866 :0.13979565486569356 +the:0.20210424288485296 of:0.150799195219098 and:0.06824819145222366 for:0.04799325345890027 by:0.046505402672042916 to:0.04525393520674822 The:0.0400091387140303 a:0.0240820906150343 in:0.023634048991055204 as:0.022534944579163132 that:0.014761719363466725 or:0.014063865452236732 on:0.013852707141440658 from:0.011662985169640485 tho:0.01161801410252537 :0.010568595996642281 with:0.009135200221999784 said:0.008234872825518356 Lieutenant:0.007862841488335902 :0.22607475444504477 +the:0.39749834532651884 a:0.07520030034269234 and:0.05540858759821703 The:0.03273515726769502 tho:0.030061875542463562 of:0.020144331424922633 tbe:0.014929647509541684 in:0.014268129706664795 or:0.013333166761078447 .:0.013287381914101323 an:0.009000188755386574 to:0.00880680429595084 :0.007943763822197133 Mr.:0.00773879605474787 by:0.007328417831573476 as:0.005922572098978465 for:0.0047526933692942485 that:0.004736121968310169 on:0.004594595720579333 :0.2713091226890862 +it:0.1496983854216909 he:0.10964337238428326 It:0.10638682511248473 I:0.050969923320639536 He:0.04860408290558634 which:0.04656491803935457 and:0.039028603386181866 who:0.0331862277940019 there:0.03053864313057572 she:0.02473831015765317 that:0.020673460236108037 There:0.013695532075392687 She:0.013377251164555395 lie:0.010305604736014575 bill:0.010179505281152806 man:0.009520310547670104 ho:0.009465156303370794 as:0.008752836029768285 This:0.006926077595687868 :0.25674497437782745 +the:0.2595734068172519 of:0.09135947327144367 to:0.04765515763157753 in:0.045692978653480334 and:0.03754521682028506 a:0.027331664453886833 at:0.024028119144880074 by:0.0209173926348452 that:0.016040254757398 for:0.015856615638549156 tho:0.01479053079711643 The:0.014309425826361298 :0.01169151744187641 on:0.010188112769428954 In:0.010183969965321718 from:0.009709654251523179 or:0.008769570151371987 there:0.00845462356806795 as:0.00843963973567303 :0.31646267566966135 +the:0.3701938211774093 of:0.15719515022369726 and:0.06754045396426844 by:0.046192479646776426 The:0.03757429141109035 an:0.02263647590167694 that:0.019808576389542715 in:0.018689515759014726 tho:0.018454186544057668 said:0.018410974274111626 North:0.016534152265125966 South:0.015423101841348557 with:0.011803823424545614 or:0.011285526994015048 for:0.010834494354417417 to:0.009540997494528948 from:0.00838358989331169 tbe:0.008157792066736173 this:0.008104611452414125 :0.122235984921911 +the:0.13425491980948362 of:0.06834859562093908 to:0.0621539230974967 and:0.05915172639193487 in:0.02611526887740742 that:0.022107611375683137 as:0.01893351935415803 on:0.01884457845645652 by:0.017037394188456616 a:0.01680686168527222 or:0.015702699756574855 :0.013142874833291629 for:0.011981365210096347 said:0.01164184594387974 in-:0.011176645972598346 from:0.009830363156307448 .:0.009429743910695147 tho:0.008852333444573543 with:0.008843663784633866 :0.45464406513006084 +the:0.24410356756511992 of:0.07563503391504971 in:0.0431788314771055 and:0.039829801661846506 a:0.03264367079123599 on:0.03092412842010919 feet:0.025537887755305168 to:0.025259005099171887 that:0.016760131993492897 The:0.0163448862829243 by:0.0152776305197449 one:0.015138978438061966 tho:0.013710538214249035 at:0.009754985317205074 all:0.00887124954805019 In:0.008748253157605213 from:0.008394342634161665 two:0.008243582747107145 some:0.008092997834486748 :0.352550496627967 +the:0.07563700486034419 and:0.07243497440384708 of:0.06473284021202669 to:0.03364324914201952 was:0.0252182298435968 in:0.02401889374072073 for:0.019720022014661297 he:0.01854977908615749 Mr.:0.017630287925016423 be:0.01650994156290044 a:0.016091149681638876 his:0.01469817135226751 that:0.014697965820473542 or:0.01386004397304294 Mrs.:0.013194310109411182 is:0.012859513710645407 The:0.012607297901590856 an:0.011450438369468192 :0.011213791593806727 :0.5102320946963641 +hundred:0.02334136986593815 up:0.005482494641173394 men:0.005366536521246011 Hundred:0.0047587970519216575 John:0.00441808156134956 William:0.004390720675819281 him:0.004016828614280843 ;:0.003997112205305733 due:0.003721199871732 in:0.0036582900032443304 time:0.003637206863828461 James:0.0035594902370151707 out:0.0034878448964120057 .:0.003467980723571515 1:0.0032804584819785204 day:0.0032444781513863933 ,:0.003058139385740603 :0.0030314555521939613 Robert:0.003005471634785646 :0.9060760430610768 +the:0.22052173904674707 of:0.11538277631709545 and:0.07600893695483417 a:0.07004925231740321 in:0.02032394001329095 to:0.017760541526728617 or:0.016321320631386877 The:0.016047378210588287 tho:0.014162478919836598 his:0.011851559038502319 their:0.010247726296522618 an:0.009976024422455008 all:0.009838815678283644 that:0.007981786074193685 other:0.007735324991191378 :0.007694646861427443 at:0.007393351766959102 by:0.007172496730326369 .:0.006850640354361914 :0.3456792638478653 +it:0.16341023478200356 It:0.1459512150144473 he:0.08197543094462303 there:0.0682040933781739 which:0.05796412999807619 He:0.04880829828004411 that:0.04130219318376451 and:0.03950538702786503 There:0.027025808615660344 I:0.023700341780659735 who:0.022604257387845435 she:0.019269537094392563 This:0.019248945360143738 That:0.0113709751241872 She:0.010206487241534607 what:0.008376378959382315 this:0.008353779006509514 ho:0.005845528099275188 lie:0.0056100736241566805 :0.19026690509725505 +we:0.11979549999956732 they:0.10837634737112915 you:0.09054581390776059 it:0.06267324628607426 who:0.05418029845140899 he:0.054124307303442226 which:0.04864676012375913 I:0.04385750083693376 that:0.040741141951779115 It:0.034873975765617286 and:0.030037083301689797 You:0.02768673607469284 We:0.025284049776465936 one:0.020301585376051888 They:0.015890952581363072 as:0.014700326660461954 there:0.010720303686891627 people:0.010070000547238674 or:0.008847251337977556 :0.17764681865969484 +thence:0.23931834790403164 bears:0.04464261321904368 and:0.03622514907046579 .:0.03167931278024332 thenco:0.024077332205195437 the:0.020342359650463358 Mrs.:0.01765115930435036 :0.017206411553357694 of:0.01634220955557796 Buffalo,:0.015124824793169678 Newark,:0.01241291588126435 Fargo,:0.012043351377436767 &:0.009354085052284643 City,:0.00848671373218594 county,:0.008206586791665514 Brooklyn,:0.0075080191476735985 C.:0.007319317595011842 Raleigh,:0.006816461966127074 thonco:0.00636205719768993 :0.4578807712227614 +the:0.5217188613158829 The:0.0900073273032733 and:0.06502153605069236 his:0.04556768065800471 of:0.035310135657069246 a:0.0346058332753037 tho:0.02682892353603265 this:0.018107460186651627 that:0.015528386046652055 their:0.011975210445581554 its:0.010147050288405094 our:0.009524162547576709 tbe:0.008782842502903156 other:0.008402470322971707 these:0.008188463174140948 which:0.007921417875009888 my:0.00707063235987527 or:0.007033595577919535 her:0.006942085442480769 :0.060315925433572934 +the:0.18116677978018375 a:0.14934971498648095 of:0.08394021188034374 and:0.07790309193353984 his:0.03508358436879736 in:0.02830926918348122 as:0.02521574881138286 that:0.023653571015617842 public:0.023176334929297035 their:0.021910161600144366 this:0.013999850979200245 high:0.011431179028927204 one:0.010807672621688996 with:0.01047137382243766 same:0.010212644058833079 its:0.010207828803973923 The:0.009666103658679316 tho:0.009133808910946188 every:0.008898120761023793 :0.2544629488650206 +at:0.32783109160986845 for:0.17216071072252584 of:0.05036290253560017 and:0.04875013447517312 as:0.0439529406582499 in:0.038832204197287154 to:0.028755385967330106 is:0.027222163796503943 such:0.026767644974088973 that:0.024012841339945246 was:0.021727370056914188 At:0.020863743528899605 from:0.018673721355365793 by:0.014048237784934687 than:0.013129140487254994 within:0.011501052466105546 For:0.01128199788085859 after:0.011025207838167524 about:0.010940314622188196 :0.07716119370273795 +of:0.09129790931378902 the:0.07369883040827747 and:0.047842263382354346 in:0.04189055351593407 to:0.04045875475680249 a:0.03542341257202578 be:0.02020462051672066 for:0.01979292654746225 was:0.01760256398103379 at:0.017380150555488715 is:0.014984483003968216 with:0.014047653760730413 by:0.01374644383819499 :0.012670486581795598 In:0.01200961464556976 or:0.011563835749786333 from:0.011391516893522809 are:0.011273104484969465 that:0.010755276030689069 :0.4809655994608848 +of:0.3349793427874037 to:0.11475529443679995 in:0.1075935797096437 on:0.0906998007296879 by:0.043979451256794734 from:0.03872365433669734 for:0.03313317908696923 at:0.028881045462127962 and:0.02245409080205192 with:0.02120468421563668 In:0.020772815336250573 that:0.015673424408293817 through:0.013184759449867276 upon:0.011646133643645267 into:0.01143969695449316 over:0.009963893486137323 along:0.009798237335433658 between:0.008400201590337565 as:0.0067343349042983496 :0.054982380067429906 +the:0.6713145949759376 a:0.053574073869903475 The:0.05337717713327156 his:0.03440260485223684 tho:0.031551337082042503 their:0.014451334351126976 tbe:0.012900128072155608 of:0.012757044456363447 my:0.01044392372940689 and:0.0069477673140328515 its:0.006913744576439775 her:0.00668333973452036 our:0.006560950671348694 this:0.006396412430607796 to:0.00361508530205417 in:0.002993553046127836 your:0.002924646683464345 that:0.002845919552926319 A:0.002608332819246996 :0.05573802934678591 +of:0.15718513481019783 to:0.11953810312095754 in:0.09824106504313475 and:0.07404007225370915 for:0.062389171177831514 with:0.05898567861506812 by:0.04872432176511858 that:0.044343428360484535 is:0.03454925427912346 all:0.02542209266924996 on:0.025253138637925682 In:0.023790694532059394 from:0.023409780951515725 was:0.0220905087479601 upon:0.016898638309720534 under:0.016524168606608124 make:0.0154456697154545 as:0.013344301261772813 not:0.013012172665464443 :0.10581260447664326 +the:0.16018307277332053 and:0.10057074390553551 of:0.0627382639049129 to:0.04992582687484657 a:0.04365210637082696 I:0.02473978606079779 as:0.018449208808652123 that:0.017361663984628305 in:0.015780700492952777 Mr.:0.014598813658903621 his:0.014419164023883373 The:0.014027337753322556 will:0.013200186671467318 their:0.0128296577629388 :0.011930288325735616 tho:0.011228328142932837 he:0.010044605313097877 this:0.010038402445770053 be:0.009312113900683032 :0.3839697288247914 +and:0.12022491116670453 feet:0.05307763854126519 was:0.03307559609819783 lot:0.028367079799006413 inches:0.021273921332307214 is:0.016860640095821288 that:0.016031115831563584 recorded:0.015520156086012276 are:0.013299390535404878 up:0.013092566061760149 were:0.01291481481441188 lots:0.012442177609662786 one:0.011534568369091242 made:0.011145402901375832 be:0.010186072063195635 or:0.010079697700797686 out:0.009878382504074058 held:0.009819798681816427 men:0.009477835544737447 :0.5706982342627936 +made:0.09228112075416385 and:0.08906611486707723 that:0.035250221220356474 secured:0.031364427038187336 or:0.030215083819936928 ed:0.017485569297572057 only:0.017165648652096323 it:0.016917447547309068 taken:0.01635141532257267 him:0.01568491323369854 as:0.014601623727304879 owned:0.013696176060174753 caused:0.013548736519669966 done:0.013274632144376733 but:0.013115387677606312 them:0.012742105253102043 accompanied:0.012097294641827716 was:0.011994247100900763 followed:0.011961038676514952 :0.5201867964455514 +the:0.15446729997770545 of:0.14974168743172322 to:0.04423153457213472 for:0.04168093085543306 in:0.04105739808584889 a:0.038320844334873067 and:0.03761061166100882 by:0.02882728756123489 at:0.018056424473120673 or:0.0148745065767043 :0.014457708041890557 as:0.014143677145165949 that:0.013562548670240671 on:0.013007145456150625 In:0.01163720692537442 with:0.009236858050381934 was:0.007740409968380652 his:0.007688913008173162 from:0.007617474495832072 :0.33103953270862285 +and:0.18598685752208569 so:0.04036782612527864 is:0.03766317596678267 of:0.03482506329039945 was:0.03367987888625716 fact:0.022972933677044106 all:0.021882889822682612 to:0.021574385378988505 but:0.01962558616198885 as:0.018206461835977707 said:0.016773431572734865 be:0.012831001242092036 than:0.011997486357456932 found:0.011538590428810901 him:0.010083075015358555 it:0.009569223682333145 in:0.009408079802314647 says:0.008586404510824604 are:0.008394078503002812 :0.4630335702175861 +they:0.1459258611454559 who:0.08681680471341749 we:0.07952597631726407 which:0.0766673823394807 there:0.06655581705231614 that:0.046705066127921926 They:0.039657866507166274 and:0.03827146604339164 We:0.03820001377641155 There:0.03601431064230763 you:0.02797540311142086 men:0.018858438088085332 people:0.01202228188595231 as:0.008463331802882886 You:0.007616588401989256 these:0.0067085780778124784 These:0.006311562204362263 but:0.005877619217317098 them:0.004891620600451637 :0.24593401194459255 +of:0.3119577036409645 to:0.17748555974582408 with:0.06065916853130234 for:0.05336025868168188 in:0.05137602299799471 by:0.051125536692487275 and:0.04443594328729197 from:0.025450450422738864 as:0.02347142095884304 all:0.020479262741226897 that:0.018204210747501552 upon:0.015543542600551368 on:0.015062165435131274 than:0.014638064775794747 In:0.01418069526657975 among:0.011481278393145243 or:0.008491465131336208 is:0.0069618125103832655 but:0.0065900638825322246 :0.06804537355668884 +and:0.03868242960999506 as:0.031124813427855922 went:0.02352509775927722 him:0.02196555539050794 them:0.018760608639018784 up:0.017985449426794205 is:0.017894175620344187 go:0.017174904667157563 able:0.016756848979943888 going:0.014481672239490295 it:0.014128375989346808 was:0.013277058274565138 time:0.013249953793837373 not:0.012469887553778763 began:0.012465717758716884 way:0.012105610030480113 back:0.012090864562211581 right:0.011941707822828511 amounted:0.011564315359310868 :0.667354953094539 +and:0.03868242960999506 as:0.031124813427855922 went:0.02352509775927722 him:0.02196555539050794 them:0.018760608639018784 up:0.017985449426794205 is:0.017894175620344187 go:0.017174904667157563 able:0.016756848979943888 going:0.014481672239490295 it:0.014128375989346808 was:0.013277058274565138 time:0.013249953793837373 not:0.012469887553778763 began:0.012465717758716884 way:0.012105610030480113 back:0.012090864562211581 right:0.011941707822828511 amounted:0.011564315359310868 :0.667354953094539 +and:0.10925101585080288 of:0.09523212351273119 the:0.08405000501377789 to:0.03771370679314594 for:0.032238150486892596 a:0.03187300563203929 that:0.029744585089495536 which:0.028819132911761403 or:0.026381580167191054 be:0.01963163098872943 in:0.01884090270315227 as:0.017358310653269916 they:0.01729463018182581 was:0.016855793796917425 are:0.01650856001629639 :0.015791018099353606 who:0.015769157903558793 he:0.015215796993336674 The:0.014218483387887376 :0.3562124098178345 +they:0.18505075730687168 we:0.09147492521443515 who:0.08671214711522289 there:0.0643939865247125 They:0.06048261752807925 you:0.05522745295068749 We:0.04669621097680007 There:0.038635132493355345 and:0.037672417237818376 which:0.028804262195071834 men:0.02375220282673325 people:0.01855059120972693 that:0.014342953520668462 women:0.008619330986930036 These:0.008511119102244166 them:0.007732991249696328 these:0.007601519282906473 You:0.007087989043316019 I:0.005451878692407168 :0.20219951454231658 +and:0.0712975416073809 it:0.03256010854484158 called:0.022586452451702058 demand:0.02241258495757677 paid:0.022402654472009276 voted:0.022341080176305556 him:0.021703086589374882 time:0.02143114115757861 necessary:0.021014070201574607 impossible:0.02055207705852996 ready:0.020282498634698266 made:0.019147722172828913 enough:0.018701205184729695 vote:0.01862413208328663 call:0.01814620599428585 asked:0.01811880985904034 out:0.017875557320441462 waiting:0.017499029397987018 pay:0.016580766212494692 :0.5557232759233329 +it:0.10810751035947018 he:0.10184070508896964 It:0.08038613048026168 which:0.0680811323908685 and:0.06430974218582491 I:0.05186906450211306 He:0.04144418915077801 that:0.031006215976240578 she:0.023796144048729668 who:0.021252200841259058 there:0.018981256355920104 This:0.015558604147484615 She:0.009920607108626323 this:0.009858255649839063 man:0.009433154331318257 but:0.009199220568812994 what:0.008947840120511785 as:0.008231856355916308 lie:0.007632620697322819 :0.3091435496397324 +it:0.10042645326670457 and:0.07448793043621132 they:0.06745538804156191 which:0.05610372715754102 he:0.05330802339860615 It:0.04965253849879704 that:0.04316270821032778 you:0.04059136714561362 I:0.034792155959010064 who:0.026123558815079908 we:0.02442900487769299 as:0.013553445253339248 she:0.011719227724809902 He:0.011384828705757256 They:0.010300763918344088 this:0.008245251916723852 the:0.008165201012513676 1:0.0074978238808858086 there:0.007243600680898497 :0.3503570010995813 +the:0.595982997952298 a:0.04269153919473707 The:0.03767545154899235 tho:0.0333561302068442 and:0.029742031932779706 any:0.021035284895037854 all:0.020612168234304656 or:0.01580015668176563 tbe:0.014367736287333012 no:0.013835339272056187 their:0.011338824640628613 great:0.00982518894570631 of:0.009667505092569527 little:0.008735920653655447 his:0.008323680043712253 some:0.007464472771824338 this:0.00735372099950174 other:0.007329491850880641 good:0.007266872545995136 :0.09659548624937735 +of:0.08471158294608466 the:0.0784438437743542 and:0.06720291665013167 to:0.046122408044339536 be:0.04046161143939536 in:0.027015564105553006 or:0.02435480735182264 for:0.020708581282078056 re-:0.019876814990101653 a:0.019001442367514877 was:0.017086966244810257 he:0.01604154291250958 that:0.015254506438979668 been:0.0144517087438338 are:0.013598540775756165 :0.013261930010872289 is:0.012996389654437859 their:0.012513526857303347 by:0.011245002537989195 :0.4446503128721322 +of:0.16516204160409906 the:0.14796444998604794 and:0.0781045459449086 his:0.07599489809913568 to:0.0595928755018718 a:0.058504960210573276 in:0.05818480939224878 their:0.05659796044157228 our:0.02802956166411919 or:0.027884039346800612 no:0.02488843046297348 any:0.02446565683742828 all:0.019730294059227525 my:0.019601159738949606 for:0.018981017689632913 with:0.017485043852357288 her:0.016029350484714763 own:0.015572023300678646 some:0.015513144346650373 :0.07071373703600993 +and:0.05954826800200673 able:0.04668638322633569 order:0.044604147860743466 him:0.0386265639301963 is:0.037952755253664684 was:0.03608034278118964 time:0.035788742053291994 had:0.03422850577743171 as:0.03375615948603487 have:0.03325378431854452 enough:0.03265489613643173 refused:0.03217993653985935 willing:0.031954089052473225 necessary:0.029379811072967266 unable:0.029231642185726107 ready:0.02728452641965818 want:0.022311327375082984 desire:0.02150886685695491 going:0.021449676184255563 :0.35051957548715107 +and:0.0997283017455799 to:0.05133704588495462 of:0.048143104920455926 the:0.04370333931468774 that:0.027844604331970432 in:0.024265091084634274 which:0.020843679345448833 not:0.020500156364238596 con-:0.01769522563237384 for:0.01716471684191154 or:0.01452761190752144 was:0.013999447550293849 will:0.012912184191184003 re-:0.012402521250531845 be:0.012260260544796798 I:0.011905523496017482 by:0.01190493531665471 are:0.01184088175562729 :0.010844066851624904 :0.5151773016694919 +of:0.18566068942255218 in:0.18378073748062576 to:0.11704781409075675 and:0.057844021599024326 with:0.057783385802057725 at:0.04335769367897215 from:0.032681320909848925 on:0.03253826284984202 for:0.032391110411261824 In:0.03226082291299548 by:0.022818850632928205 that:0.020512434895065528 made:0.01615882396235493 all:0.015559245645521346 upon:0.011881659154261976 up:0.009495513074336588 make:0.008001430464594833 into:0.007765650682026834 over:0.006815104951658659 :0.10464542737931394 +of:0.17454936305790214 and:0.12121216541382115 that:0.11617853673427858 to:0.08592722559434779 in:0.06040671754539569 on:0.05144313991242889 for:0.03631155148124388 with:0.030832173075218454 which:0.025787665840898064 nearly:0.022677297644841346 by:0.02127992814801725 from:0.018412795764171604 almost:0.017258515893332514 at:0.015831495230745278 but:0.015651723951148666 In:0.010814361777890965 upon:0.010008138170976904 Nearly:0.009968152953064486 as:0.009853121639841192 :0.14459593017043515 +it:0.09665712657836148 they:0.09143029338103094 he:0.08676527064383746 we:0.07940369479429389 I:0.056911364608572115 as:0.0559946205583234 you:0.052873036076133105 which:0.04907155964634102 who:0.048494180004438496 It:0.04675041706199363 and:0.04243579571516134 that:0.041966277322670005 We:0.015118323602470028 He:0.01450777376412352 she:0.014219999133950507 You:0.011425572566369793 They:0.010894883150416246 man:0.0105809927674575 1:0.01004088891887669 :0.16345792970517883 +and:0.03868242960999506 as:0.031124813427855922 went:0.02352509775927722 him:0.02196555539050794 them:0.018760608639018784 up:0.017985449426794205 is:0.017894175620344187 go:0.017174904667157563 able:0.016756848979943888 going:0.014481672239490295 it:0.014128375989346808 was:0.013277058274565138 time:0.013249953793837373 not:0.012469887553778763 began:0.012465717758716884 way:0.012105610030480113 back:0.012090864562211581 right:0.011941707822828511 amounted:0.011564315359310868 :0.667354953094539 +Mr.:0.07806362284688455 of:0.05451843786062216 Mrs.:0.046433826428669514 and:0.04234224149826316 .:0.04181900892591585 to:0.04066781261688302 John:0.038001278892656656 W.:0.035000619145679174 A.:0.031591037673858284 the:0.03091012376803883 William:0.026504376774024577 J.:0.02466871084562632 H.:0.022007339925275784 by:0.02195348877981611 in:0.017828033425443552 Dr.:0.01599649417814653 C.:0.015838343498867494 Miss:0.014445366002236703 E.:0.014312968578817158 :0.3860968683342746 +of:0.30043193030794313 to:0.09384426226256821 and:0.0654243131129598 at:0.05829540284451061 in:0.05122323917588525 that:0.048176462277395096 by:0.03447123498596763 from:0.03265368391184748 on:0.031147862283641855 as:0.031070397392632218 with:0.027905061352981188 for:0.02561991323324791 when:0.017467340446908047 is:0.012159060804191662 was:0.011984910074858036 In:0.01032864853869149 which:0.00996702057573123 about:0.009434721302097335 but:0.007756673484519664 :0.11963786163142211 +of:0.18524040810262368 in:0.11423334678242646 to:0.0645107322247642 on:0.05307955593519572 with:0.0507032641020483 by:0.0484323721291902 from:0.03986460992551917 and:0.03313049416155742 for:0.020466042198666583 In:0.02031316630801368 upon:0.018904222600416264 that:0.01450893351335934 at:0.011079353681332865 through:0.01099424444648006 one:0.008853471430761537 under:0.008532824172965922 over:0.006571365038244686 after:0.00656159543339211 into:0.0063687696731356425 :0.27665122813990617 +the:0.24049614379285633 and:0.06081264836125048 a:0.059464695998291954 of:0.059390640998479294 to:0.033552919778292625 The:0.02598399142135634 by:0.02070771583546404 Mr.:0.019857704053172793 in:0.019444358102577924 that:0.016052429488654964 an:0.015507287745849974 tho:0.013993817006133405 said:0.013318019698036677 from:0.01267031354809184 :0.009603987560379059 Mrs.:0.009222461534021243 his:0.009083416711833835 with:0.009068352272787699 as:0.007999835793736984 :0.3427692602987325 +out:0.03532734565800206 sum:0.03320128811251752 instead:0.024700009918102787 that:0.022289394997172748 part:0.020431576255479016 think:0.0203497373982453 use:0.018319402276315688 matter:0.018128220724968006 number:0.018090442587762007 favor:0.017954703052089085 one:0.016924807264310514 case:0.016650253205961075 charge:0.016567958866277453 question:0.015473905396535821 work:0.015351576647932312 means:0.014684368850693307 name:0.013796582626352286 tion:0.013660089718863485 all:0.013617434844456475 :0.633480901597963 +and:0.10600972534521641 the:0.10214862577643104 to:0.06351245374163844 of:0.06018260364315796 in:0.030936259295518766 that:0.029102592708742058 which:0.028196689946910568 a:0.025342824877468004 or:0.02189405863623173 as:0.019208811291001767 for:0.018817505835728103 :0.015897734205674932 I:0.01457920970408108 they:0.014008332687000516 such:0.013289373477941988 will:0.012870971840895825 we:0.012010038806608229 their:0.011652346483824738 an:0.010644406248535854 :0.388695435447392 +.:0.03994497062899546 :0.031222326225924277 Mr.:0.024853825554759987 the:0.023373066361884975 lot:0.016607236082012804 and:0.01577053601448179 it.:0.012576266349813861 it:0.012046451869618793 them.:0.011590027559817615 a:0.010871979179901816 Secretary:0.010790524959097311 It:0.010594040679635036 of:0.0098227681518497 year:0.009427564230603811 Book:0.00898839661130549 years:0.008267183581012841 C.:0.007442090769428959 M.:0.007301081331051878 The:0.006957857396636743 :0.7205518064621669 +of:0.22758175965427885 in:0.1426051195085861 on:0.0936322977748283 to:0.09301957619455567 by:0.04903049063687384 at:0.04432504351169979 from:0.04326418357586974 and:0.039835878607971026 In:0.030440272253168418 with:0.026905327764434193 that:0.026391638210386845 for:0.02536254580365344 upon:0.015547528989453285 into:0.01419149658029295 all:0.009672325816648836 through:0.009491787323104956 as:0.00934875002050964 On:0.008475360287282244 along:0.008304930536115753 :0.0815736869502861 +is:0.12190196022862032 in:0.09622365707609055 was:0.09405992710585398 made:0.06459077251319068 for:0.0595044252907468 with:0.05456893814195993 as:0.05341438958343605 make:0.05215027738639681 be:0.042108606656446626 such:0.04125511738857875 of:0.04042750101417227 to:0.036081821326696926 and:0.03324790809236341 have:0.024705662495115858 In:0.023812145210530607 had:0.023009410444598453 on:0.0207661058714495 been:0.016865100995998306 by:0.016484166874539564 :0.08382210630321459 +it:0.24948756596542823 It:0.2101337505644298 he:0.05599846853556781 there:0.054474641161802735 which:0.04752115355738477 that:0.03846391677091141 this:0.027671526973750023 This:0.026879761317076502 and:0.026739708026211565 There:0.026416968586272432 who:0.021918431371741844 He:0.02123885683527484 she:0.01222769270167147 but:0.007372061284882893 what:0.007198874018312155 as:0.006113098930460396 country:0.005552414892164186 work:0.005317476169416592 She:0.005316457186304882 :0.1429571751509355 +and:0.08966177876597989 was:0.039798229546210415 that:0.03678814630802508 be:0.03429649553115624 is:0.03388821850808827 or:0.03161965790624019 made:0.024780664728169893 it:0.02387494956301592 are:0.021672887860163064 succeeded:0.02147319815633547 but:0.02072392468690454 them:0.01994737291714808 been:0.01927069414613654 not:0.01922209019816854 engaged:0.016643266272753515 described:0.01663758704642985 as:0.015684446883433973 were:0.014441529464751239 him:0.013009483837470127 :0.4855653776734192 +and:0.09165058916959702 of:0.06727488666159903 the:0.044347791228369925 to:0.04160561783563488 in:0.03865599724207529 be:0.03860204734489509 I:0.030105674783911764 was:0.026162936109382234 is:0.023984234886758774 for:0.023158407613233786 that:0.02010360689622394 he:0.019942429582553503 con-:0.019846364703158228 a:0.01887586264616899 or:0.01727607344749333 as:0.016376793770385586 de-:0.015479800887669988 it:0.015071917666344997 1:0.014586707441784452 :0.41589226008275915 +of:0.23610049452059864 in:0.10301213640429357 by:0.040599381840537054 In:0.03511012129369707 to:0.030415005496376178 the:0.029004313165790527 and:0.02816702767295017 from:0.026196604888775066 :0.018082631368520525 with:0.015531059246803128 ot:0.012846912288129909 for:0.012428514323676589 I:0.01031159646012849 ol:0.010102379003791125 that:0.00904000125128351 m:0.008860536350238582 which:0.008454411661232968 was:0.008173960805128853 before:0.008011717470084305 :0.34855119448796373 +of:0.24232202830509345 with:0.10213460692013865 to:0.09698078470689869 in:0.0625795828686526 and:0.05445606872341666 that:0.054214407650174316 by:0.04678862388957114 on:0.04077498700515803 for:0.0361684249674135 from:0.02636347087858123 at:0.01862897860056798 upon:0.0179271846873817 made:0.015245813703150611 as:0.012880537845499439 In:0.011572239375224199 but:0.01077704335467033 have:0.009529508233163037 had:0.009029869815239734 saw:0.008269093357768235 :0.12235674511223647 +of:0.2502712291036166 in:0.19133145160721018 and:0.07505911030179536 for:0.06972932163185462 with:0.06343421789558325 to:0.04223308316474412 In:0.04057625569913792 that:0.02892007367188794 on:0.021182175307012555 by:0.01998511797652802 from:0.019983335396384878 after:0.012159165355196441 make:0.011015494383246064 but:0.009924553966536019 upon:0.0087900656098084 as:0.007644613426824056 into:0.007313954394036042 have:0.007212022162448569 find:0.006756540077256487 :0.10547821886889241 +the:0.11919516938815296 of:0.07230453158552728 and:0.05781056740443249 a:0.043018564803886335 to:0.031305092790907506 in:0.020848713353460488 at:0.014270110001066288 .:0.012526810245749479 :0.012413283442322082 for:0.011719122709941797 by:0.010808400946589808 or:0.010404172990115616 The:0.01003576004804544 with:0.009811868184449042 tho:0.009295902015355835 was:0.008924239095331684 that:0.008672304223433876 is:0.0085591147338948 be:0.008335143826716943 :0.5187411282106204 +the:0.281896387838082 of:0.08047597979214506 in:0.07769272372059581 a:0.05187144750242161 to:0.04104069558348009 on:0.03357307837463911 In:0.028496817891635103 The:0.0251772168707681 :0.02456391843038097 tho:0.02217285486070046 and:0.02004138421977741 for:0.015297187704401553 from:0.014492299106904269 tbe:0.011774536642480397 with:0.011135191435203097 by:0.011106433761919901 at:0.010909545516530589 that:0.0058936066410422575 .:0.005520739591928189 :0.22586795451496397 +the:0.31941837009880014 and:0.16300781125704092 The:0.07109616866081588 a:0.0708817895580852 of:0.029548382649564303 tho:0.022404895255440736 that:0.018405844550203554 any:0.016358855556847168 or:0.012284001588381962 with:0.011312715476358886 in:0.009963957597353796 as:0.009612425306792618 for:0.009493087667992796 tbe:0.009480009919351742 this:0.009283643870439224 no:0.00867956159095985 an:0.008470688705682506 to:0.008202954764725809 Mr.:0.007993307290360173 :0.18310152863480272 +the:0.39749834532651884 a:0.07520030034269234 and:0.05540858759821703 The:0.03273515726769502 tho:0.030061875542463562 of:0.020144331424922633 tbe:0.014929647509541684 in:0.014268129706664795 or:0.013333166761078447 .:0.013287381914101323 an:0.009000188755386574 to:0.00880680429595084 :0.007943763822197133 Mr.:0.00773879605474787 by:0.007328417831573476 as:0.005922572098978465 for:0.0047526933692942485 that:0.004736121968310169 on:0.004594595720579333 :0.2713091226890862 +the:0.16807735899698817 of:0.10541662057906837 and:0.05138367848570702 a:0.04141865232648221 to:0.0385989743764065 in:0.026264864977736738 was:0.019530675665220657 his:0.018900421021236905 be:0.017373825006196972 their:0.015767721170721456 for:0.01557246589796783 with:0.014071419046630446 is:0.012922913111931644 at:0.012690452250034052 are:0.010702713108721902 .:0.010158075558988393 Mr.:0.009672788574483367 tho:0.009612591781990074 were:0.009549306361446321 :0.391314481702041 +the:0.38949516791359345 land:0.2749712535710954 The:0.06483617319255423 and:0.05660302947710551 tho:0.017882840573693926 a:0.013932769510138835 as:0.01297482977837358 or:0.007062154794848571 tbe:0.00703757148194396 other:0.005753925721590955 north:0.005114488615997362 south:0.0051126279318999095 first:0.004515849356157606 of:0.004359421221123905 great:0.0042139498366718185 large:0.004176993713841052 same:0.004031116905890371 west:0.003396093380113965 east:0.003265566270322971 :0.11026417675304259 +is:0.11226528630252458 and:0.10033891154838112 of:0.09622106286824927 it:0.04902692587459773 are:0.04169815328771598 was:0.03994875525981028 now:0.03309663452174488 same:0.02917241976052988 from:0.02465705995667908 by:0.023584148585421284 as:0.022434971294708485 after:0.02094861081994518 Is:0.02057342480648903 to:0.01963716101788205 the:0.01803628108446371 on:0.016190966264647097 It:0.016122820954818172 and,:0.015366798406682671 not:0.014765757490305257 :0.28491384989440427 +at:0.20359481459559706 At:0.07897937930146498 in:0.07733564609567488 any:0.07135028958266383 of:0.06038366854516346 to:0.054009199280854535 and:0.04903672755437722 no:0.036695965868301705 from:0.03424856684560587 that:0.032534997682818145 the:0.03187169714318347 for:0.03153094987921106 only:0.022404978917243003 than:0.021527398535835022 but:0.021188275917185282 In:0.02042804047252444 some:0.019426864688368514 on:0.019214919849391603 as:0.01877940783946944 :0.09445821140506651 +and:0.07359963406644195 be:0.052667135004264946 to:0.04483536256874564 of:0.043448293679263235 the:0.03579172892628988 in:0.028005289969665195 was:0.026700397492138477 is:0.024892551934152005 re-:0.024162182625676702 he:0.024086629517294657 are:0.02098604388819216 from:0.020307931541148256 a:0.018606881911690538 or:0.018077853608073062 for:0.017195224169077532 been:0.01615904189338184 I:0.015254891559368164 :0.015184018660626356 which:0.015016145996292442 :0.464022760988217 +of:0.21916788253716885 the:0.14697046730122035 in:0.12710413590536174 and:0.06892152957242921 from:0.044701138089999246 at:0.040696241556667095 to:0.040087639438218255 In:0.03874466850273306 The:0.03496527420718911 by:0.01629453027307892 :0.015024334793621736 for:0.01398786345904333 Mr.:0.011911444645289463 tho:0.00971355773442148 that:0.00798405003335149 I:0.007248753623365622 Mrs.:0.0056199509757914904 &:0.004738411951546576 all:0.004543593809801931 :0.14057453158970104 +and:0.09221113484537512 that:0.04365778523034573 in:0.03293109421619315 the:0.026590569607028287 land:0.019397335694097784 office:0.01929364657574407 county,:0.016533192229539324 property:0.016419391799618994 acting:0.015961839149896663 was:0.015370531684384467 or:0.01532386610846848 of:0.014428152513276962 for:0.013716310937569556 as:0.013586266737260846 acres:0.013418783397951254 now:0.01321326894774848 city:0.012824126820626518 :0.01278814834143801 men:0.011780999891505151 :0.5795535552719311 +the:0.16807735899698817 of:0.10541662057906837 and:0.05138367848570702 a:0.04141865232648221 to:0.0385989743764065 in:0.026264864977736738 was:0.019530675665220657 his:0.018900421021236905 be:0.017373825006196972 their:0.015767721170721456 for:0.01557246589796783 with:0.014071419046630446 is:0.012922913111931644 at:0.012690452250034052 are:0.010702713108721902 .:0.010158075558988393 Mr.:0.009672788574483367 tho:0.009612591781990074 were:0.009549306361446321 :0.391314481702041 +and:0.15816553394078345 of:0.13590091679077415 to:0.1283185409315963 in:0.10115349304397137 for:0.050722408335059296 on:0.045896063844189455 In:0.025031895156623688 that:0.021607020037403498 at:0.021143710265245134 or:0.01961595820594148 with:0.019001662768256752 from:0.01892200008855828 by:0.016992555799404473 about:0.015021659571565317 after:0.011622145349483666 oi:0.010694964683218086 as:0.010649764117173607 upon:0.010243106487436418 all:0.00853680497026973 :0.16975979561304583 +to:0.31019601080253456 will:0.13793678134185958 would:0.07774183426288846 may:0.07078528459128908 should:0.05127128910568003 shall:0.04901700088221223 not:0.04594340671139167 must:0.03257846389794495 can:0.03230794200897745 could:0.02086203652199685 cannot:0.017984019065961077 and:0.017474170306863105 might:0.013535476571922157 it:0.006941357203389574 never:0.005186754057084183 that:0.004968373522249409 also:0.0034185027334872305 only:0.0032209125075107173 soon:0.003102154139878731 :0.09452822976487903 +cents:0.1017133987646254 cent:0.04044428493953157 50:0.029874129715645126 6:0.028768996590071736 10:0.028649711542714618 ten:0.027542141055936168 5:0.02319586694793623 1:0.020267543392363804 2:0.018782617030181237 bushels:0.018472456363914473 five:0.017753622865035474 20:0.016673995378577656 cent,:0.015722181860002377 six:0.014730510479693686 dollars:0.014024274930220262 15:0.013957997879842456 a:0.013936397180993383 pounds:0.013800172288891877 4:0.013517071494339674 :0.5271726292994828 +the:0.3377841750120254 of:0.17110397596438806 and:0.05545692527096591 a:0.03442971372909984 The:0.02593991090231531 his:0.025241915313682365 in:0.025026660330140792 tho:0.01926028871417829 her:0.014757818221800877 their:0.014079748583919851 by:0.013448660166488468 its:0.012567283836860111 with:0.0122604194265054 that:0.012228756014021359 at:0.011072709526500166 to:0.010640666021703282 said:0.010442428036032726 for:0.008991973053523247 tbe:0.008688282388567928 :0.17557768948728064 +and:0.13369432871393436 to:0.09590303779852842 I:0.03252360838506014 not:0.02915393187516433 would:0.028696071908274057 was:0.021819178850672614 will:0.021187589436678637 which:0.02039989779349722 he:0.019493537488229285 that:0.01880264156978316 of:0.01779615747948296 had:0.017508090424607117 is:0.01626902921232007 have:0.015946218494150764 be:0.015213415729490332 it:0.01494808732813363 there:0.014746840474263853 re-:0.014636989749716306 or:0.01383726465180078 :0.43642408263621196 +know:0.1970350012136101 of:0.08347790197515803 from:0.07489146594751663 and:0.07128036095617767 is:0.06260360512626842 do:0.0477207642702398 for:0.042409486759244996 to:0.03967228424723115 in:0.025902272883882242 with:0.02218060102323187 or:0.020650473124042553 are:0.019433332151619454 asked:0.018090309196678166 see:0.0179699890184298 knew:0.017436335117200896 not:0.017007356359358218 just:0.01647669987135056 but:0.016461570339074943 some-:0.01610542553576537 :0.17219476488391916 +of:0.17357910176281155 for:0.16565286087598588 in:0.10546014404702991 to:0.09504910666290695 with:0.05693438863859661 and:0.05118807933888042 by:0.04156062397794476 all:0.033363497169013163 that:0.028964757637428833 from:0.028857867485053704 on:0.028350435982506177 In:0.026420164466828915 is:0.02099075785212892 upon:0.0156420917293409 as:0.014897228889399759 at:0.011560782223976334 under:0.010988202049030702 make:0.009142514446600209 into:0.00850637570191074 :0.07189101906262556 +manner:0.10014154852873941 and:0.04758153569965947 that:0.027548634697924172 way:0.017860480013091023 time:0.013660246230114154 it:0.01211986153900764 all:0.010836767636137537 one:0.010756664322780446 part:0.010728763786470055 district:0.010609221477965584 land:0.010415108137366232 place:0.010399655452080119 esteem:0.009337949673530233 work:0.008993990842538664 now:0.008593781479256013 them:0.008489846330526286 day:0.008448021271808803 money:0.008371952622637733 interest:0.008221632363195723 :0.6558843378951706 +the:0.18120087652176337 most:0.15443275014134317 an:0.11809338076593345 and:0.11300225007018329 of:0.08953474831271573 more:0.08116623919996867 to:0.04055833935602699 by:0.035515324074776186 very:0.029453308422029697 a:0.02471206342196135 at:0.017795128150462355 in:0.016152191484080092 that:0.014085087299126789 The:0.013912118503322456 any:0.01156894157816225 or:0.009909728600271327 as:0.009514690972593288 for:0.00805729355761491 other:0.0077566112892784285 :0.022578928278386222 +to:0.2557552589593519 will:0.10979118777543931 not:0.06430873294098303 have:0.06349732074011694 had:0.06276995190743467 has:0.05066701361994591 be-:0.04186608465232916 would:0.0403924511790486 and:0.03321763823190318 they:0.03238424151238635 should:0.026045719541988158 must:0.024366410624512263 I:0.024314547902203658 may:0.02250484241018996 can:0.018919257881407366 we:0.01878316015557736 shall:0.017099849441346685 that:0.015239697355805559 you:0.014769159329778342 :0.062307473838251595 +the:0.5017038198016893 of:0.06058345280129353 and:0.05082515862130197 a:0.03936497248552595 to:0.02741353195268192 said:0.024776108957559 tho:0.01884304571974169 his:0.018482509771650904 The:0.01495209866210955 in:0.014035390927285563 great:0.010458668935592611 our:0.010270989293318511 for:0.01005547215544097 their:0.009690266831009731 tbe:0.007766273320832882 or:0.007439399861447973 her:0.0072515351176409655 with:0.007131485363180426 such:0.006696465699283546 :0.15125935372141294 +of:0.09129790931378902 the:0.07369883040827747 and:0.047842263382354346 in:0.04189055351593407 to:0.04045875475680249 a:0.03542341257202578 be:0.02020462051672066 for:0.01979292654746225 was:0.01760256398103379 at:0.017380150555488715 is:0.014984483003968216 with:0.014047653760730413 by:0.01374644383819499 :0.012670486581795598 In:0.01200961464556976 or:0.011563835749786333 from:0.011391516893522809 are:0.011273104484969465 that:0.010755276030689069 :0.4809655994608848 +and:0.11203614284734381 made:0.029480560291083903 necessary:0.027231632327903786 provide:0.01978786821063526 him:0.018624150941585572 time:0.017844902254185023 but:0.01736032991925495 pay:0.01712283223509279 responsible:0.01655246417854943 work:0.01573375727996718 used:0.015721729148453864 that:0.015344008200088246 providing:0.015123591452644664 or:0.014918878594106077 it:0.014272018550925738 vote:0.014240496926603478 out:0.013886758983508773 demand:0.013625570335128902 ready:0.01288626098417059 :0.5772060463387679 +and:0.16491305678258314 was:0.10877422322994436 is:0.09221319235997663 be:0.06688471490299083 are:0.06495612617385782 been:0.04204642768749598 were:0.036954222788221275 not:0.03476665560371039 or:0.018424167292659298 that:0.017924591066759588 do:0.014162611547115986 but:0.013057847045497787 have:0.012637314205367359 Is:0.011482541037119773 of:0.01057883691347364 to:0.010420589924839742 as:0.010069942332491845 being:0.009929618725647935 made:0.009605044654064965 :0.24919827572618164 +have:0.09581510959718861 is:0.0908381421929617 had:0.07673527781247395 with:0.07651037056823357 of:0.07433195330065283 was:0.07108789554474815 has:0.06047536865105269 in:0.05473596575922454 to:0.04939201016931378 as:0.04461493216605071 and:0.038103171097726825 for:0.02701733898113229 by:0.025433785153434127 be:0.02442391932527561 on:0.018758853911081994 such:0.016943179536932907 make:0.01664475114974717 made:0.01647206645416903 not:0.01604777649946152 :0.104618132129138 +be:0.25219917488802807 is:0.12166065063922528 was:0.10442202906071137 been:0.08981059469702612 are:0.075139478304249 and:0.05190320544692648 were:0.043990686203879775 being:0.023446883915782233 Is:0.018652063564163344 bo:0.017481771551631966 not:0.01738095689876881 he:0.016317685169489823 or:0.014351940545429348 herein:0.0126031774904123 it:0.010727547178035918 duly:0.01029943997094909 have:0.008318299371147853 has:0.008224753250764818 time:0.0075065665659048335 :0.09456309528747356 +hundred:0.02334136986593815 up:0.005482494641173394 men:0.005366536521246011 Hundred:0.0047587970519216575 John:0.00441808156134956 William:0.004390720675819281 him:0.004016828614280843 ;:0.003997112205305733 due:0.003721199871732 in:0.0036582900032443304 time:0.003637206863828461 James:0.0035594902370151707 out:0.0034878448964120057 .:0.003467980723571515 1:0.0032804584819785204 day:0.0032444781513863933 ,:0.003058139385740603 :0.0030314555521939613 Robert:0.003005471634785646 :0.9060760430610768 +it:0.1270113843797667 carried:0.07912006854683167 go:0.06377132703375149 them:0.06148149730969859 went:0.0605876062094845 come:0.04433825341068696 taken:0.038294432279049655 get:0.033903695693009224 set:0.033013684156899786 him:0.03128499752439096 came:0.03062314540854181 put:0.025346071595961986 sent:0.02510803461797478 turned:0.02472026825800489 thrown:0.02362489575901566 going:0.017928139773338538 cut:0.016707883827079932 broken:0.016584567662892676 miles:0.016245417486547693 :0.22930462906707252 +and:0.14533329596557376 to:0.1014733895459538 of:0.04772886266949234 the:0.041817948016015835 will:0.040835999560143166 for:0.038868520536808226 would:0.03400656957608026 a:0.02710271826082186 in:0.022306636067764174 that:0.02173146891455942 not:0.016929316965232925 at:0.0163167516962966 I:0.013840651526620366 more:0.01271185100784236 or:0.01243427122160771 by:0.012246783597756295 is:0.012184460661004556 it:0.012106520104715968 with:0.012023922319618614 :0.3570000617860918 +the:0.6551717407743031 The:0.05051974671986907 a:0.046903663156089966 tho:0.0336912814326395 of:0.020330795024360814 and:0.017535055325519064 large:0.014744356168782323 in:0.0114637686712741 tbe:0.0098522758149658 this:0.009851909352117686 great:0.009756873991350867 on:0.008440964296205776 other:0.007290374985621713 annual:0.007219608727647839 an:0.006775768524391735 best:0.006503509448273958 their:0.006010444424974776 with:0.005340116758036745 general:0.005306093770005307 :0.06629165263356991 +the:0.15801217789540145 of:0.1239212292686103 and:0.05272041844940264 to:0.04871642059741301 in:0.0409676168318047 on:0.03017740243910156 from:0.020600276435196595 that:0.018899591271788887 by:0.018348454682409074 or:0.016393258778315024 a:0.015639771766208597 :0.013548817771156288 for:0.012256013578171198 In:0.011746595840466539 as:0.01054621228039154 with:0.01001912083865954 be:0.009711142357991571 tho:0.00924025886952 was:0.009187369283197886 :0.3683478507647936 +and:0.15954896509628302 fact:0.06250413334095033 said:0.05065834510086072 so:0.041377132404438896 is:0.035044982477999385 say:0.031238107057586156 was:0.03080136861091614 him:0.030163903722579304 found:0.028801317587840422 know:0.027089045931031216 show:0.02253951910492264 stated:0.020965932865206496 says:0.020478382261860294 believe:0.019460213424765792 but:0.017059185035050474 thought:0.01632135970667961 see:0.0159709956695605 me:0.01535960772741225 told:0.014380823351940667 :0.33923667952211567 +the:0.1434605125150946 of:0.07193784606451724 and:0.059618239469439636 .:0.03323732637832343 a:0.026428136885373252 to:0.02169090263374118 by:0.015881474476912454 :0.015188560486412775 in:0.013553740854096517 The:0.01216612819057172 W.:0.012059021482953541 Miss:0.012009475347755393 H.:0.010888914721729474 J.:0.010814806933518849 said:0.01069377476561798 John:0.010674722769902924 E.:0.00965192368286528 tho:0.009597154426890632 M.:0.00939964169082499 :0.4900476962234581 +a:0.1871884029749201 the:0.14232576805334574 common:0.08410458565958197 their:0.059461607407669925 no:0.04743939924017966 his:0.046508487072401086 any:0.03812423815032176 good:0.034652597993063985 every:0.030315327498984704 of:0.028628570620870184 one:0.022200180031440617 this:0.02157905810139062 great:0.01929632361290573 best:0.017762929177277877 its:0.016878315072218996 your:0.01682338802393686 and:0.016266078451615908 or:0.01396683740722906 much:0.013367969130586348 :0.14210993632005886 +of:0.2025689868687866 to:0.14584539902461743 in:0.11714823364424752 on:0.07173216786819495 and:0.05800985838074085 for:0.04087850063032489 that:0.039911865647837476 by:0.03876167243561567 with:0.03614181740823189 from:0.029707517278811026 In:0.026019159751755453 as:0.024011277802740812 at:0.023503908722581752 upon:0.019805034791185016 all:0.014745463503172957 is:0.011946076045234316 which:0.01084115922442593 into:0.009704475395237862 when:0.008896497120472198 :0.06882092845578539 +and:0.03868242960999506 as:0.031124813427855922 went:0.02352509775927722 him:0.02196555539050794 them:0.018760608639018784 up:0.017985449426794205 is:0.017894175620344187 go:0.017174904667157563 able:0.016756848979943888 going:0.014481672239490295 it:0.014128375989346808 was:0.013277058274565138 time:0.013249953793837373 not:0.012469887553778763 began:0.012465717758716884 way:0.012105610030480113 back:0.012090864562211581 right:0.011941707822828511 amounted:0.011564315359310868 :0.667354953094539 +to:0.5182919206831664 and:0.10101900954960152 not:0.051507418065940315 will:0.03401518787888775 would:0.030034250740939405 may:0.02748137281390429 shall:0.018220458831165513 I:0.016531547503425753 they:0.015224783276836011 we:0.014184166073539261 can:0.012808866606775222 could:0.012285409944761502 who:0.010530718233065376 should:0.009271956465878436 1:0.00750897409327797 might:0.007353428479169989 lo:0.0069607716622281796 To:0.006691975972108911 or:0.005750594272310339 :0.09332718885301787 +the:0.2969195372931117 of:0.14986952944594323 to:0.04715197699428248 or:0.04328389991831291 such:0.03568918721794086 and:0.03332928288191637 that:0.03148326156000073 no:0.029103347846844548 public:0.024012374579178892 tho:0.02379278702616237 The:0.02343670560054377 other:0.02328465036321644 any:0.02323114865482974 this:0.022990034324653377 their:0.019500817039337575 good:0.018695814952575593 our:0.016052508110766448 new:0.01601707361433457 its:0.014821648240401527 :0.10633441433564687 +of:0.29518909315655195 in:0.10947173032519707 at:0.09114996519930915 to:0.06970931395482723 on:0.06872219856690573 from:0.05311539055781873 for:0.049711241699679616 and:0.029635642271066805 In:0.026723322318502378 by:0.02496273485704539 with:0.021482309222897483 that:0.01839470202448029 along:0.01340389244743167 through:0.011484948729161993 within:0.010677481791176988 all:0.010357872987491946 about:0.008437316281815214 over:0.008390475734994879 during:0.008351798208006248 :0.06962856966563923 +of:0.16080350920386108 in:0.15177014224754123 at:0.11202786294200587 to:0.10900767157560691 on:0.05096041486553505 and:0.04190547194430063 for:0.03975214627366031 from:0.038194572374607653 with:0.03126777100152429 In:0.02844125829406504 by:0.024179711841689207 that:0.01955249058792743 upon:0.01484625185096878 up:0.01202737071789432 into:0.009853452130125237 as:0.009138676406504016 through:0.008314067169428905 over:0.007369072163565708 made:0.0067168808964202876 :0.12287120551276803 +of:0.13084814232797154 in:0.0740836656586379 as:0.0625527229231004 with:0.059577596335708534 to:0.058433603729754965 is:0.05551580107464621 and:0.04946529489577619 was:0.04264000753602388 for:0.04009673021586375 by:0.037684080471064085 be:0.023941707008899252 on:0.02316059851167503 at:0.022644769441950232 such:0.019950936521181326 that:0.017856095877642635 like:0.017386655618315594 In:0.016902219705578994 from:0.016046571451088905 not:0.01205910100844263 :0.21815369968667797 +the:0.1454500361787387 of:0.1080247151493501 to:0.04516715868785427 boy.:0.036249098323069925 and:0.03403580073245388 girl.:0.032660326140049385 a:0.03171979252021135 in:0.02714044436566853 for:0.02365213940166824 be:0.021942286684630472 their:0.021087116084698817 his:0.019774122064073623 was:0.014637031197642503 with:0.014008395154201525 are:0.012730720509515858 is:0.011363112041341867 as:0.011357870543086747 from:0.01063391638067422 were:0.010589399829418696 :0.3667765180116513 +of:0.1061982261160209 a:0.1027522189717945 and:0.08943500953559537 the:0.08267063704859941 in:0.046305847228589644 to:0.045740967958121465 an:0.03019633736836093 with:0.021826624397155027 which:0.01996053283232434 that:0.019779252869434456 as:0.01640117393203153 The:0.01635945478956525 for:0.015964051871520606 be:0.015166787281140341 his:0.014113164346186301 more:0.013461112501450769 or:0.012550138594739423 their:0.010997217269676923 is:0.010986583200710293 :0.3081346618869826 +the:0.40855913670387434 this:0.13641014877484586 of:0.07957410936843713 his:0.05153805394901805 our:0.0358894949017837 an:0.03254920053774909 their:0.029242420870629067 tho:0.027233801770369617 The:0.024904703847210462 my:0.01861048069320237 other:0.017155498768205532 that:0.01686042893262907 its:0.016201847787016794 your:0.013142723927440729 great:0.012948495833969653 a:0.012937623800586337 her:0.011971527889008658 tbe:0.010991994640725025 any:0.010988504643243472 :0.03128980236005508 +the:0.6116965147271246 The:0.09238769105049845 tho:0.060416091289948196 tbe:0.024483114838145723 and:0.022060332057530996 this:0.021517362940217565 a:0.02027842696362292 of:0.01844560001870253 his:0.012910888315801948 said:0.011727366307858535 on:0.009753362453388875 Tho:0.008982511308579284 next:0.006664492039347853 This:0.006462650738618683 our:0.005783074673082701 tlie:0.005558718763323871 that:0.00545046570731518 new:0.004965626363864322 its:0.004376027199894674 :0.04507968224313313 +the:0.42375108661523386 a:0.3919776014984116 this:0.04028255914720828 tho:0.012518745398028436 The:0.010984947982808559 that:0.010610584403148006 and:0.007690506644002238 no:0.006785381843658221 his:0.006635004362271509 of:0.006632897032460906 tbe:0.004922285631083055 every:0.0038076159932058087 A:0.0034523057929448596 in:0.0029892804579273427 her:0.0020202963672254315 last:0.00201828404407079 an:0.0019885886740310865 its:0.0018996638137409037 great:0.001816423414601374 :0.05621594088393773 +be-:0.3243222892228389 hereto-:0.12644088588885316 there-:0.11873795423328506 be¬:0.10339363602168045 be­:0.0907762327282093 be:0.020675773651117828 there¬:0.019255524575816682 and:0.01499995707147875 was:0.011595744911895455 Be-:0.008744634818318373 there­:0.008294510412215092 the:0.006998443771539738 There-:0.005613285804111933 been:0.005546494962413509 I:0.005488677131217777 of:0.00547747158195893 are:0.0053445240438118845 is:0.005086826525518672 had:0.004842216143622763 :0.10736491650009575 +of:0.250334335767931 the:0.13699741476625352 to:0.08282710306431669 a:0.08004606834512641 and:0.056046376013919826 his:0.03205912351412884 for:0.02610881764995226 said:0.02434763867911156 in:0.02292186101089613 by:0.02078640489784263 their:0.017173866376881165 this:0.014420287010572394 with:0.012772058538905123 her:0.008980662597792238 on:0.007573710012772379 your:0.007336236855785509 its:0.006832075931137244 my:0.006634083935060068 tho:0.006486008402234505 :0.17831586662938048 +and:0.07558940021936399 recorded:0.030196237618668006 was:0.028917161578042846 made:0.027969746247669736 that:0.027730098932509103 o'clock:0.025060522019555328 up:0.023026552239529506 is:0.020398277211376416 found:0.02003101797656537 placed:0.017482208134164214 out:0.016937164562539058 place:0.016819459500107596 interest:0.016629321966808677 him:0.016002796715253755 situated:0.01573420479581609 it:0.015128305982428461 them:0.014715943643665314 part:0.014646613000297721 interested:0.014450471929902294 :0.5615344957257364 +carried:0.09106623032014131 it:0.08974636503550715 go:0.06969092063153322 went:0.06385548840447704 them:0.04990084763228691 come:0.04394983537093642 get:0.04234204024377558 came:0.04225131972593986 sent:0.03627501280825607 set:0.026593885662527118 put:0.02496207917290079 taken:0.024137199017056323 look:0.020548986441766677 him:0.019763175454786914 thrown:0.019463215346853777 called:0.01802361038573307 brought:0.0165961057549139 paid:0.01649726385529209 turned:0.01637616836162527 :0.26696025037369053 +the:0.20197546427610255 to:0.1332207674525366 and:0.10340782673261281 of:0.07167684156871962 a:0.0512657499147651 in:0.035824690404912235 with:0.035137275783969295 for:0.03228419380396282 or:0.031270963104792465 on:0.028662654051365925 The:0.022167047620724654 from:0.02018286431286785 an:0.0185440578739714 are:0.017679747226809716 was:0.016971725080221857 by:0.016613098264660342 is:0.01649518243552711 not:0.01647878793638147 In:0.01521085174196495 :0.11393021041313121 +and:0.19106832335785795 of:0.14446339499315997 for:0.09007735646924521 or:0.07106837826814091 to:0.06845599286181894 section:0.0448600392723219 at:0.04396386774311524 the:0.04193960696302936 in:0.04170033270986734 a:0.026356145744402686 about:0.025435867289314816 than:0.023344995345390734 by:0.01642728140804735 with:0.014737819098471109 No.:0.014397067192555207 within:0.014171627945441549 some:0.013462150466390549 that:0.010732071027103834 from:0.010092670568633819 :0.09224501127569154 +or:0.14089373562254093 no:0.12086543669415678 and:0.08468782197261714 much:0.06520505250179497 of:0.06066307471197377 any:0.05747880957463368 the:0.04621774142792411 for:0.042143833146471445 a:0.0385334387730255 with:0.036227324577590855 that:0.02371426982724936 some:0.0234336839140285 is:0.02229764028821244 still:0.020449395258103246 little:0.0188932117574984 be:0.018123403754617573 far:0.016825269582757794 nothing:0.014321262282206437 even:0.01422060876167272 :0.13380498557092435 +men:0.026152489705611584 man:0.011332039802571142 women:0.009700630128626235 up:0.00913903050109743 time:0.008865702956093824 President:0.00847910218043766 rights:0.008423252737178507 power:0.008315386986614848 labor:0.008242147078233307 good:0.007968574024820542 principal:0.007959634428411536 peace:0.007911857004059563 States:0.007837972707639064 made:0.007800654857166314 in:0.007439043289422294 new:0.007265866579215764 wife:0.007229399137824622 life:0.007173526231057834 friends:0.007138553586787255 :0.8246251360771306 +the:0.44764796620889724 and:0.05593988356596311 of:0.046657039939901376 tho:0.028352222007936183 his:0.026019640702745067 their:0.021321955452280748 The:0.01891398293441842 her:0.01862038034342151 tbe:0.013939559108925373 all:0.013367712245808405 a:0.012862224498267712 was:0.01150707521881522 it:0.01132174622122016 high:0.01118402394550993 its:0.010949781689703564 my:0.009335349077125972 with:0.009170368887520715 or:0.008992512068150351 went:0.008466924724257547 :0.21442965115913143 +the:0.0895385830227982 of:0.08098409964222292 and:0.0788252826015527 by:0.05751878938998158 to:0.04958046046191933 for:0.04722303237125521 in:0.04231043843588929 a:0.03788637999566173 or:0.02907251790378075 per:0.025920299729068525 was:0.022659130524584695 an:0.021761853272687978 are:0.021335537661350365 with:0.020711933209345806 be:0.01947826407227559 his:0.019444923055453398 that:0.01889494039625078 not:0.017563796957305262 this:0.017081256786090914 :0.281208480510525 +the:0.5472048083297558 a:0.0625983535288643 of:0.0612444495223378 The:0.030986793259409506 tho:0.028738564170205632 in:0.024157121723645477 and:0.019160695667695998 by:0.013138584181177419 with:0.011158122876517134 tbe:0.011059461133864898 this:0.009936898126926285 for:0.009694118193149835 good:0.009216454774844429 our:0.00755402604153467 said:0.007117718142033473 to:0.006059379679667856 their:0.00599029646191243 that:0.005927142553149197 no:0.005075244645386759 :0.12298176698792107 +in:0.19971058529107727 of:0.1423189661385923 to:0.06665600007692944 with:0.060953943017855505 under:0.055313215344009556 and:0.04532834545706364 In:0.043428023155158944 by:0.04192232645902748 for:0.0357938344405385 that:0.035428619851015454 on:0.031177689053675937 from:0.025969945518141597 as:0.020792415748149686 into:0.017278603707291576 is:0.01636472979749392 upon:0.015124824052721518 when:0.012133412676020009 was:0.011514892694602976 all:0.011274042304845043 :0.11051558521578966 +the:0.09197324717258726 of:0.09194531821371187 and:0.07939011872394025 to:0.06544688338200944 a:0.03315857698858228 not:0.024583989432758847 for:0.023288981537040364 is:0.02067569093426522 I:0.01781539850937077 or:0.01646573544168739 that:0.01638884525808575 be:0.015270921056473498 with:0.015234093204560883 in:0.013795225302943265 Mr.:0.013576824592297714 will:0.013412982304379407 have:0.013241862436964184 was:0.012501265354230424 it:0.011331432640589355 :0.40950260751352185 +a:0.3884469936118696 the:0.2516295347949699 large:0.1172598166199743 A:0.04263538507407082 The:0.038751151922176284 great:0.015784669032137842 total:0.012450029176985985 and:0.009906332100247798 tho:0.008795594021867324 whole:0.008551498061751726 any:0.00830995036862049 considerable:0.008078460889881919 this:0.008064962747566476 sufficient:0.00759398209225476 largo:0.007553634725424092 goodly:0.006793601890766698 largest:0.005417677222877226 small:0.005326727807158831 greatest:0.005260218271373045 :0.04238977956802493 +the:0.19993293622143124 be:0.12336685977428635 and:0.11477598770320546 is:0.1006343002737072 was:0.04662174981914443 are:0.040140677344592264 The:0.03732033861647306 not:0.036588437738769214 of:0.0330009168827131 an:0.030951289729444352 been:0.02804977041758825 have:0.02440784386439961 very:0.022326763985475822 to:0.021886452264109915 a:0.018471292675115956 as:0.015777946289009775 Is:0.015007361946093941 most:0.014806672571407416 were:0.014394019750737053 :0.06053838213229558 +the:0.5503355358138843 an:0.058107174454363725 tho:0.03991150753178527 The:0.0326757275927179 of:0.02519299108088447 a:0.022379709371967493 and:0.01949395814355333 his:0.016211969903935548 her:0.012638580616980583 this:0.012387487402513256 tbe:0.01187312926336408 our:0.009214724704497333 their:0.008487767806363036 North:0.007893920838197687 in:0.007635523928458698 said:0.006646510577805686 feet:0.006643966496319395 An:0.006555593456389628 my:0.006342921760823236 :0.1383712992551954 +hundred:0.02334136986593815 up:0.005482494641173394 men:0.005366536521246011 Hundred:0.0047587970519216575 John:0.00441808156134956 William:0.004390720675819281 him:0.004016828614280843 ;:0.003997112205305733 due:0.003721199871732 in:0.0036582900032443304 time:0.003637206863828461 James:0.0035594902370151707 out:0.0034878448964120057 .:0.003467980723571515 1:0.0032804584819785204 day:0.0032444781513863933 ,:0.003058139385740603 :0.0030314555521939613 Robert:0.003005471634785646 :0.9060760430610768 +be:0.105573873530455 was:0.10373373208860956 is:0.1029407401804357 and:0.06786235574506316 he:0.05945889537405557 not:0.055068227766056195 He:0.033623099100101785 been:0.028364075045374255 I:0.027917188279004333 so:0.02630079957956569 are:0.02596466010595586 it:0.025086437250676955 have:0.022789577374786037 Is:0.020964331496755313 It:0.01893198202716534 were:0.016439335813386472 she:0.015748235583456907 also:0.012892201469636393 being:0.011811711448921323 :0.21752854074053812 +:0.13004801598421692 it.:0.021245312753957933 them.:0.01479590417362743 and:0.013743026060810092 time.:0.010566117478707364 ?:0.0094909999091814 country.:0.009219592479961604 people.:0.008846973012339495 year.:0.00852781071246872 years.:0.00709374225577624 day.:0.006912755827965687 him.:0.006667666118420005 State.:0.006201674399378453 days.:0.006060702160661592 work.:0.005851017490893979 us.:0.005687031378700715 life.:0.005650339960458869 men.:0.005323587380229439 city.:0.005131708319914162 :0.7119360221423299 +the:0.22303294789771963 a:0.08347297476727951 and:0.08340023796452037 of:0.06706440324017165 Mr.:0.03853058225746116 The:0.03109057865252924 to:0.025118339380049003 in:0.02141179449698488 an:0.01818643044339402 tho:0.016694557281819535 that:0.013959070096788791 for:0.012551335007812414 or:0.011614715294332853 his:0.010659260780821921 .:0.009891020045924336 their:0.009658357983414547 be:0.009414120547016621 her:0.009162764189497586 was:0.00911588641972385 :0.2949706232527381 +the:0.10785936344840133 of:0.08041832059700071 and:0.06606829444959902 a:0.05643038308012388 to:0.05535280337717975 be:0.02853289252669998 was:0.027105035006482578 in:0.0247654133565907 at:0.015793819366212335 is:0.015728651725315592 :0.013428133240815843 for:0.01204466748614453 been:0.011592220107946525 or:0.011211388204423864 are:0.011026362473945926 his:0.010811659072250212 by:0.010680387155496561 were:0.010201582804998114 from:0.00959972225656998 :0.4203489002638025 +be:0.15054876854276486 was:0.14177317663015393 are:0.11571411850690118 is:0.09367285766458755 been:0.07560022757055863 were:0.0706063365920205 and:0.04819782201922759 not:0.03028478731088059 he:0.024008358914919148 being:0.020084954475456065 have:0.017424879056522527 the:0.0162000942847526 has:0.013811864778032238 Is:0.013421266581381463 more:0.012646642667952486 had:0.012335278719906227 a:0.012086370039685377 or:0.00972599333019253 it:0.00905516283959689 :0.11180103947450762 +be:0.23744582276160467 and:0.12705682575190813 have:0.07083881935400477 he:0.055904692778969235 been:0.0521591114780109 was:0.0414854488446773 had:0.039345586160766166 who:0.03403508802041797 is:0.03242370427804126 they:0.031226280256191393 has:0.02997203116470106 are:0.02712679921966269 not:0.02016478829291334 were:0.019419566806385714 never:0.01915407360475722 which:0.014981242070496175 I:0.01333745043147239 ever:0.012787786818144672 bo:0.012352730943407829 :0.10778215096346709 +of:0.10036425554061128 and:0.09867255827094257 in:0.04887477001133228 to:0.04309676529803197 fact:0.03312124920228808 said:0.028016465130273754 on:0.025147031828386315 all:0.020897671259005178 is:0.018989333611116044 so:0.018899457882617265 from:0.018463519784011995 for:0.017651195592365977 at:0.016946018612698295 know:0.015554635744109193 believe:0.015397314140675087 say:0.014489633297242495 with:0.013970217188878864 by:0.012605124887586036 In:0.011949884106238937 :0.4258928986115884 +one:0.10757504863160208 out:0.06393072214258595 part:0.05345953864888265 some:0.04657778396619151 time:0.032653763285528395 account:0.0298978741893603 all:0.02673860913095395 and:0.02324876597992745 that:0.02275453097379819 because:0.021318504223257338 portion:0.02010071224985526 side:0.01926992014112468 any:0.018918137101655273 front:0.016609963575485047 many:0.016563310866764772 end:0.01592265492673931 day:0.015255366376758018 members:0.014811614297040794 result:0.014486922106154784 :0.41890625718633423 +the:0.11919516938815296 of:0.07230453158552728 and:0.05781056740443249 a:0.043018564803886335 to:0.031305092790907506 in:0.020848713353460488 at:0.014270110001066288 .:0.012526810245749479 :0.012413283442322082 for:0.011719122709941797 by:0.010808400946589808 or:0.010404172990115616 The:0.01003576004804544 with:0.009811868184449042 tho:0.009295902015355835 was:0.008924239095331684 that:0.008672304223433876 is:0.0085591147338948 be:0.008335143826716943 :0.5187411282106204 +the:0.3287853844950351 to:0.1120642819919672 of:0.10028110193812485 a:0.05552747418940177 by:0.04404044345145534 and:0.03985444100388128 any:0.021998015415323025 tho:0.019648630252044812 their:0.018585854171036975 said:0.018208845836611316 The:0.016555389315552078 this:0.013872132427045507 for:0.013827639739457396 good:0.013521232604981892 or:0.01301885823669901 no:0.01235707933986055 from:0.01022068950722497 his:0.010164597250405829 that:0.010023471546051552 :0.12644443728783955 +of:0.3173168987837875 to:0.07812078946503387 the:0.07475651755113416 in:0.05557408500994393 and:0.05114651839054026 by:0.03900955351661613 from:0.03478612484952752 County,:0.0298704740509984 In:0.02059173823620579 at:0.012765865035292232 that:0.012326871989368774 .:0.010719367865021694 said:0.010384460330860117 for:0.007743686240033807 Mr.:0.007555274012955919 his:0.006155095268169486 county,:0.004625196803512928 :0.0043745759541838946 D.:0.004262845245557249 :0.21691406140125633 +of:0.13084814232797154 in:0.0740836656586379 as:0.0625527229231004 with:0.059577596335708534 to:0.058433603729754965 is:0.05551580107464621 and:0.04946529489577619 was:0.04264000753602388 for:0.04009673021586375 by:0.037684080471064085 be:0.023941707008899252 on:0.02316059851167503 at:0.022644769441950232 such:0.019950936521181326 that:0.017856095877642635 like:0.017386655618315594 In:0.016902219705578994 from:0.016046571451088905 not:0.01205910100844263 :0.21815369968667797 +the:0.3448186716147933 a:0.18723513553235202 The:0.09442603160336807 their:0.02863528280217843 this:0.027877174783604644 his:0.024294608869129937 tho:0.019650296247059586 no:0.018174865729218496 some:0.017106465991092924 these:0.017038969183249493 and:0.016684668295782953 that:0.016361258487335342 our:0.015599454669599548 its:0.015011566546270406 or:0.014965181824629172 two:0.014615899941951725 This:0.014215908497764647 such:0.013948395986534651 of:0.012276347325169388 :0.08606381606891525 +for:0.14977258598737303 to:0.09642810608571178 of:0.09293719812947371 and:0.04923786265778904 by:0.0490767100420832 with:0.03648369959302087 that:0.027219962173887325 or:0.018904199221892196 before:0.01842616268643627 after:0.016286527490423586 is:0.01579708758703514 from:0.015490566321318377 it:0.012033052521085129 in:0.011680180269851462 on:0.011100304787002696 was:0.009049774133663634 have:0.00896927977178703 upon:0.00879322293897485 said:0.008157596096469143 :0.3431559215047215 +and:0.10054386410347249 the:0.09209776439496031 of:0.0747295006625012 a:0.06124837049737692 an:0.049194789120904525 to:0.03225064753465607 in:0.027090429809823287 or:0.026107999923455583 that:0.023823500773369397 be:0.019294621168472737 any:0.01726672937655793 is:0.016560204738033713 for:0.016164936480744005 as:0.015207190357753845 no:0.014408035252361198 with:0.012918207949932061 which:0.012281672829676259 are:0.01191253073198901 con-:0.011388893186963825 :0.3645101111069956 +able:0.06717612367261501 as:0.065391385295124 is:0.06506759826412051 was:0.049295929346701274 and:0.04747672225411994 order:0.04681309729561574 enough:0.040664469924369395 time:0.030742398429282565 right:0.030639701042020788 him:0.029643005970866734 necessary:0.02591203787934634 going:0.02341943815392906 unable:0.022370140052295245 have:0.02156198285296635 it:0.0213744454837263 not:0.02131946728977842 had:0.01915377313060521 me:0.01876768627059114 them:0.016474156890670943 :0.335736440501255 +of:0.24771856616623836 to:0.10055514755145552 in:0.09984480279807748 and:0.05814117240642057 with:0.05158849496637837 for:0.04613065771486411 on:0.044432355864291194 by:0.03519649785437645 from:0.03338388255327628 at:0.03070401576666744 that:0.026848878623973782 In:0.02041195271981872 upon:0.015248471773457326 as:0.011599582931726849 all:0.011326016994932605 or:0.008867228292995478 up:0.008407673252508876 over:0.007381477118522736 into:0.006992770039889695 :0.13422035461012818 +the:0.09868373883938258 and:0.07480453094193343 of:0.0589114817501612 to:0.04097910657897817 in:0.021158790794043262 that:0.019069334359151844 said:0.018742946492478332 for:0.017316364536936867 his:0.017177121694088426 was:0.016182606169468622 will:0.01591288197902934 he:0.015114551865358882 or:0.014845495585184915 a:0.014513966096661732 be-:0.013853328473103959 be:0.012881045636009362 :0.01244603010237448 is:0.011856827412481646 dis-:0.010720055582638647 :0.49382979511053426 +that:0.1888277850328967 and:0.10271048817006026 if:0.07832375450128393 which:0.06857383416595972 If:0.06207075164146061 as:0.04538430308662234 when:0.03010508887357439 but:0.027715381920063856 what:0.026057281157462323 of:0.02254839142153096 where:0.01789515892209581 And:0.015233345109544836 to:0.013162781271338752 for:0.012588592631531463 think:0.011592751765651391 But:0.011572708094506851 unless:0.00965277054615122 before:0.009627011310516393 than:0.009542792528722694 :0.2358150278490255 +of:0.36528743134292235 that:0.09001094224616438 in:0.06561569933465022 all:0.055301560723821516 for:0.05355030752985901 to:0.05009001454946275 and:0.041346029870183564 with:0.036216141054609095 from:0.022854293074656494 by:0.022400192877203105 as:0.020644895445056276 on:0.017329107463119994 In:0.01717446215400312 but:0.01583098316682999 upon:0.01262316386403301 If:0.012533342255130088 which:0.012456899913255052 make:0.012355528750521894 if:0.010793643815157135 :0.06458536056936094 +and:0.06583940234007958 well:0.06527271054123816 long:0.055459730749855427 just:0.050846149988415454 soon:0.04255746744246754 such:0.033709614423846575 are:0.03352989095010698 is:0.03323897755962642 so:0.032133569886190184 be:0.029908095410694974 much:0.024912018991910038 was:0.024786182375555577 far:0.02178893922418428 time:0.02036438300239941 it:0.01884939153374654 not:0.01535679732104996 regarded:0.015086716725643365 day:0.01469922016764846 same:0.014066849045003797 :0.38659389232033725 +hundred:0.12209964392345064 the:0.0767618267316648 few:0.05543929512331033 100:0.045023152500063134 of:0.03441778659748464 200:0.032255391850595824 300:0.029222521829212676 fifty:0.024524104733806812 twenty:0.02413654341497268 a:0.021514893811069143 two:0.021180864173510363 to:0.016421114297547817 three:0.016404880023456327 thirty:0.016304241386842205 and:0.014393488615501864 five:0.013735584632203155 ten:0.01365825192409569 forty:0.013429174054729579 500:0.012459853224723122 :0.3956173871517592 +was:0.15755454499864685 be:0.11616882909327261 he:0.07345576400824301 been:0.0691825586048627 and:0.04534631363370119 had:0.04291304470809044 have:0.03967520632147786 is:0.03884083275472545 has:0.03835253819446689 so:0.03821956140205881 were:0.03391934066914988 I:0.03324902656570643 He:0.027001445815294282 they:0.022837324582148752 soon:0.01703288548766384 then:0.016771641535183648 she:0.016020344619314668 we:0.015514915781847835 who:0.014396706768506634 :0.1425471744556382 +and:0.11897801824455385 that:0.05778759353016135 he:0.05674951788034355 which:0.048128976768574125 it:0.04725959829215954 as:0.04632676608631972 who:0.03386726371080858 It:0.018848495769446062 there:0.017086433695905748 to:0.01589228994418187 she:0.01581300822745084 than:0.013652294784684278 He:0.013490216974464028 will:0.013162359118497632 or:0.012369352320167101 I:0.012213609426599475 but:0.011672103870297754 would:0.011098691565652073 all:0.008747404264306745 :0.4258560055254257 +the:0.16287760685838365 of:0.0883592780729449 to:0.0618987346693935 and:0.05423685233212741 in:0.030811253892523358 for:0.03057359609188714 be:0.025098115820027647 was:0.01826945122296575 is:0.01662970283289366 a:0.016448402520667066 or:0.01633619095301082 his:0.015510346299682681 their:0.015084175217362073 are:0.014656254371894712 been:0.013019491851438341 were:0.01267572744006931 that:0.012270302451397866 on:0.01131798809455223 :0.011150587255169986 :0.37177594175160794 +it:0.12291356726271781 he:0.10766523848787593 It:0.08126222867785683 which:0.05815091424687329 I:0.054909855356083816 and:0.04607290301292405 who:0.036234513317437905 He:0.03284977251390459 that:0.0307500349566012 she:0.02807960748770171 there:0.017106531141060498 as:0.011444714915749334 She:0.009915288061780691 ho:0.009311744482256256 what:0.009144898696231517 1:0.008083327589627603 This:0.007923029238788926 lie:0.007752420127589498 man:0.007654383581502722 :0.3117750268454358 +and:0.15186195963143856 of:0.07338354972171887 the:0.06972140950868178 thence:0.04489051343504186 was:0.04302436901627705 in:0.033910191926802814 by:0.028420396637845784 a:0.028176834793747486 is:0.024459374877575497 that:0.021860403852309074 to:0.021574485974990957 are:0.019795229174718022 were:0.018988813054741125 as:0.017611807554243495 at:0.01704411258885406 from:0.01654264094524482 be:0.015583789650768027 with:0.011609744746299161 been:0.011037147893223095 :0.32950322501547846 +a:0.21211538322092624 the:0.19546933793587096 any:0.0837433263674313 that:0.06392555342730763 this:0.03900466156601476 every:0.03320437776626297 greater:0.0317962037514499 latter:0.02445227455811817 no:0.02194048191245243 first:0.02122680174566319 in:0.019145450321797694 and:0.01833696914000321 or:0.018018366847473998 large:0.01717044034959002 other:0.015696659241908387 early:0.015427668332717937 upper:0.014960184655747284 take:0.014893052348053108 as:0.0127088152040228 :0.12576399130718802 +the:0.40700663386054853 on:0.06385864010967209 day:0.03739346420548501 and:0.03572845215850297 The:0.035033144141170064 On:0.03150658045067587 tho:0.028098537256910985 of:0.021758003935154563 until:0.01931174517475026 as:0.01778570335127762 tbe:0.012552445892425995 held:0.011937913084397716 was:0.01170606413396042 from:0.011452243322797283 his:0.010418927247391088 to:0.00889692742941057 it:0.00822308331792792 that:0.00820338124534291 is:0.007890865253163936 :0.2102372444290342 +;:0.011997121030195016 him:0.007197668913708508 it:0.006347457388796343 time:0.0057865177896110585 up:0.005687752051818538 ,:0.005435127204304796 years:0.005216659861192573 feet:0.005017511541895249 it,:0.0050080963323486756 hundred:0.00481567158642431 .:0.0047625095306893595 day:0.004574909454678037 in:0.004390509963724809 to:0.004252691709088977 :0.004042797189259921 out:0.0038953447667159683 one:0.0037678737601326375 made:0.0036575325385650413 him,:0.0035851131811360064 :0.8995611342057143 +as:0.06931392982974462 according:0.052071562389565784 up:0.0511867300210483 and:0.040371568633051955 went:0.03351644485287816 back:0.032358406609281 regard:0.03073407747799069 feet:0.02852138506231652 down:0.026379903432040268 owing:0.02466642634685871 due:0.023695193974505355 go:0.022910973192184297 reference:0.020802802907016128 came:0.019883741951819873 sent:0.019874244915639484 attention:0.019565955494145405 come:0.01885185084678811 given:0.018792390567602263 it:0.017366961307524745 :0.4281354501879983 +of:0.24989820698756884 at:0.14340737625992436 on:0.09260758752052686 in:0.08180736979336724 to:0.061690023322379314 At:0.053260910068512926 that:0.05181689627906511 from:0.0341269986620639 and:0.029219576893148577 for:0.024001992723844442 In:0.02314521970514694 with:0.01683638238892984 upon:0.014482742234500903 by:0.012153514167199527 On:0.010664308251305078 as:0.009384946279529852 From:0.008038394091118414 which:0.007938707527321696 about:0.007725992245512101 :0.0667928545990341 +:0.05878060026154927 and:0.03974763495609324 that:0.039262041017067886 it.:0.032272827684614855 them.:0.019934036464080925 .:0.014040268415569537 time.:0.010786762449208483 law.:0.009707192128827745 him.:0.009414358738617215 ?:0.009316963176148038 day.:0.009117767404359073 us.:0.008891965643153484 country.:0.008758425401618157 mail.:0.008151524859109013 but:0.00788018956633992 as:0.007475705587612398 year.:0.007189727953892708 people.:0.007157924311565398 years.:0.006901466717160451 :0.6842126172634122 +and:0.07426854409034044 it:0.04062065060334222 as:0.032506473904603796 It:0.03038304036713488 be:0.026082828395964715 :0.020477836237398746 is:0.01721847757550102 was:0.01633424580550066 .:0.0144991349326858 that:0.012438494498460777 mortgage:0.011536524917715871 I:0.008628159774483621 of:0.006803220774991065 are:0.00667091147503553 the:0.006578575216824695 -:0.006482033339290001 :0.0061810366851135215 he:0.006006818628179649 which:0.005363748963401057 :0.649919243814032 +and:0.11203614284734381 made:0.029480560291083903 necessary:0.027231632327903786 provide:0.01978786821063526 him:0.018624150941585572 time:0.017844902254185023 but:0.01736032991925495 pay:0.01712283223509279 responsible:0.01655246417854943 work:0.01573375727996718 used:0.015721729148453864 that:0.015344008200088246 providing:0.015123591452644664 or:0.014918878594106077 it:0.014272018550925738 vote:0.014240496926603478 out:0.013886758983508773 demand:0.013625570335128902 ready:0.01288626098417059 :0.5772060463387679 +is:0.3653468964403502 was:0.1893164948909823 are:0.05704724825304826 and:0.055131246228750465 Is:0.048662690984562586 had:0.028594780673920035 has:0.025605385821532895 were:0.02412574652298035 have:0.02060889609234474 but:0.020335207603955567 if:0.01897459981066769 it:0.013326763453721911 am:0.010985605965481976 that:0.008641639208502543 will:0.008206673974392018 or:0.008006742610054133 do:0.007726218213695274 did:0.006569042346013421 in:0.006197279136913941 :0.07559084176812975 +and:0.0727749670519661 that:0.07150945176727067 as:0.04584011273887353 but:0.04065581486744085 I:0.03504151774876616 what:0.031209507916952157 when:0.030802944928722292 do:0.02900798702141583 which:0.024907958338056722 if:0.022932100694470128 would:0.01879048267446341 If:0.01862957575859271 could:0.01804707357842873 a:0.017643835412246185 the:0.015890865393213417 did:0.015636014165481132 than:0.015248508113038742 w:0.014369188167848757 :0.014318576855998882 :0.4457435168067536 +he:0.2641836091417843 who:0.16557408531318335 and:0.11583198789390432 He:0.08281769703845566 it:0.047766286443637375 she:0.03573103094695591 It:0.03013824726161331 I:0.025572125585817205 that:0.019321929127881658 which:0.015241098622667636 ho:0.01485177665572024 She:0.011703969286168715 lie:0.011193162805292053 man:0.009975938466198717 one:0.00975633961065233 we:0.009452978775529527 they:0.009341692026367438 as:0.008073388839661959 then:0.007418191294991519 :0.10505446486351673 +the:0.2724017576668663 of:0.1425519768388708 and:0.0809446892799506 a:0.0563798755775997 their:0.04425964923266547 his:0.04015221465990967 by:0.03903213385634059 to:0.031245790748400514 for:0.021099247154136903 our:0.018934407447242403 The:0.01749872427643187 with:0.0158563830615012 tho:0.01410946052054271 my:0.012874260263260684 in:0.012503404149852957 its:0.012451657671072725 was:0.011168819525974719 or:0.009736065426801947 are:0.008626015979350391 :0.13717346666322788 +is:0.19156719328085067 was:0.09671674544698718 and:0.0924985356058555 not:0.05726817670496854 have:0.04895881365060411 are:0.04477831565583763 has:0.04196278934013369 will:0.038562164839654446 would:0.03148002810804697 had:0.03062721150167761 Is:0.028876088301130528 who:0.02753148195517339 to:0.026966512161248145 be:0.026338688314976537 but:0.022291866705192804 may:0.02228087667984421 been:0.01868942005701565 were:0.018599640881347183 he:0.0177457390209442 :0.11525971178851101 +and:0.08064847313226985 the:0.07646325752500724 of:0.07077539615550833 to:0.06677904692476133 a:0.059351555521549124 is:0.042197169552786316 in:0.030864664468613037 be:0.027086900283238985 an:0.025088380449120127 was:0.023321341913072505 for:0.019614974562380746 it:0.019052949114698094 with:0.018556854849237414 that:0.017108540919378985 or:0.015109725316767478 It:0.015060528846482752 as:0.013297103910977779 on:0.010513724594164487 he:0.009936148441538818 :0.35817326351844664 +and:0.02669350916326594 it:0.02365307500259544 made:0.013411354764838039 them:0.013387177458337299 feet:0.011681031360228744 well:0.011621102240024696 be:0.011420374164425841 up:0.011193014046004349 him:0.009851486197017555 work:0.009308299125457829 time:0.009053269039405258 out:0.008515991637172484 all:0.007934030488256099 :0.007618190691500748 men:0.007597394467206626 day:0.007544477159223567 to:0.007272785690863171 is:0.007220937614005282 year:0.006970882824134242 :0.7870516168660369 +of:0.17142247152847145 in:0.08459168719914065 and:0.06393829984921598 by:0.06387954452885307 was:0.061270919752112664 to:0.05764799783998003 is:0.05677165663122967 with:0.05593516449207624 as:0.041563647626923134 for:0.035553174713454205 that:0.03372406460645353 on:0.02751639783905236 be:0.02646150201780475 In:0.0219342244769271 from:0.020844025378481647 at:0.019812150405206196 have:0.01633472038493303 had:0.015381928268480023 or:0.013673310682808444 :0.11074311177839584 +the:0.09684081064840576 and:0.06551335624548284 of:0.05146145169206151 from:0.049520598669154245 a:0.045427902131977435 to:0.0370403239153822 be:0.035669151526387034 was:0.030489628475080553 is:0.026635804908522978 in:0.023878514238638158 are:0.018513936943033917 not:0.017945708099223703 or:0.017556265685966497 been:0.014265228721347686 at:0.013857211504087178 he:0.013733215789660087 were:0.012396679125422956 I:0.012347944480187516 for:0.012197989992860347 :0.4037082772071174 +and:0.2139992129240429 so:0.05065772736973423 fact:0.04542495006008613 is:0.04047722020780164 was:0.03415211252881524 all:0.024650429780811858 but:0.02215272312683666 know:0.021664419405182146 found:0.019475278803233166 believe:0.01808081204444128 me:0.017417522773314806 said:0.01637659807875793 stated:0.01620133752233248 say:0.015465079281201305 of:0.015036639073182853 be:0.01432038483784866 him:0.014219061275904204 it:0.012850366793758785 hope:0.011815749383680237 :0.3745623747290335 +the:0.3607153088672747 and:0.05368710574857943 Presbyterian:0.04334736830998472 Baptist:0.037702115448482273 of:0.03766301814192292 The:0.03655011029941798 Methodist:0.03019688460975579 a:0.02495554374803568 tho:0.02399563983357765 to:0.01984659114589358 Congregational:0.01773216442153177 Catholic:0.016341796879322742 Episcopal:0.01581971569737431 that:0.011922345092386946 in:0.01113127708134772 his:0.010773669553220438 their:0.009667683559249645 for:0.009656234458769007 tbe:0.009535579241213602 :0.2177598478626591 +I:0.10541005181580716 and:0.04420577282931162 he:0.036856927236322654 who:0.02766834385702533 man:0.017659996188733745 husband:0.016720994383332723 that:0.014771184623774176 1:0.01345516735526252 He:0.011762168260329055 which:0.010373503016740422 men:0.009691647333753092 they:0.009089113326726711 she:0.008865872077554784 :0.00774097574768072 wife:0.007386652322135108 as:0.00710596415393864 we:0.006983591607222891 you:0.006934592951693074 the:0.00672215771608297 :0.6295953231965725 +the:0.11631847617480602 and:0.10681422797910803 as:0.10354021501216334 of:0.08947969389418407 an:0.06453574917037909 their:0.039721330719683506 to:0.0390987843234558 his:0.032921348244747635 much:0.03276909397930197 good:0.03258817987671173 or:0.024274477291862124 is:0.02338835961618754 are:0.02156129947575995 was:0.020376562129619715 by:0.01932626381332476 all:0.01875024442930441 in:0.017939560763182122 with:0.017233526158699514 not:0.017021772552560172 :0.1613408343949585 +the:0.1454500361787387 of:0.1080247151493501 to:0.04516715868785427 boy.:0.036249098323069925 and:0.03403580073245388 girl.:0.032660326140049385 a:0.03171979252021135 in:0.02714044436566853 for:0.02365213940166824 be:0.021942286684630472 their:0.021087116084698817 his:0.019774122064073623 was:0.014637031197642503 with:0.014008395154201525 are:0.012730720509515858 is:0.011363112041341867 as:0.011357870543086747 from:0.01063391638067422 were:0.010589399829418696 :0.3667765180116513 +of:0.12821653099451757 the:0.11097373675556445 and:0.05512457204732104 to:0.042581800101792806 by:0.036487588952098776 Mrs.:0.02622951937192664 in:0.023115054546599324 :0.020307482554638892 Mr.:0.01827372851814497 on:0.01761962886760856 The:0.015945805530116094 from:0.015578849390544379 as:0.01557753515084453 that:0.013421370531977133 .:0.0129763536580779 with:0.012757696071044928 a:0.01186543704748284 for:0.011213418489131332 at:0.010490892884824255 :0.4002429985357436 +and:0.14507320772351315 fact:0.08580533594336559 said:0.056464728489513914 so:0.05141663139801109 believe:0.03728868944610554 is:0.032697255055655516 say:0.030323479159427524 know:0.029749358812227955 found:0.025535190692382553 stated:0.021273605064562356 show:0.019511948220510757 but:0.018999393120383457 says:0.018814328565908398 think:0.016893655385130203 was:0.01658797795582863 all:0.01652317309060226 see:0.015409038245983688 opinion:0.015263158537430448 order:0.014744011681695817 :0.33062583341176116 +the:0.11500545585881412 of:0.0897605566703555 and:0.07914879987306167 a:0.05827037833039227 to:0.0386987683614473 was:0.029282661483795363 be:0.023890810389268442 is:0.02056818843792312 been:0.017204803150083207 or:0.017094944717067368 in:0.01610392931760865 are:0.015798243080240505 his:0.01344187865263006 at:0.01321973597799718 for:0.01304287912725108 their:0.012337012043366955 were:0.012236169772424844 :0.01133284696603621 The:0.01095822742659897 :0.3916037103636372 +that:0.17173245280063354 as:0.115952046399141 and:0.10583035548068356 if:0.05265495394629756 but:0.05257342912539798 of:0.03504445698225784 when:0.03421514779050949 which:0.03377077312409627 what:0.02110402871711817 where:0.017118060118029143 for:0.015543780313013114 because:0.01440147181098167 until:0.01425662085855829 than:0.014018423205689617 before:0.013048327594833691 But:0.012562845139959693 If:0.011734723307079645 made:0.011325587929872647 think:0.011203118253076797 :0.24090939710277026 +they:0.10382520921632693 and:0.0668106224350547 there:0.06657690751130357 who:0.0571547579489435 which:0.05081128030506264 we:0.04942713534369061 They:0.045707944628039274 These:0.03755889567968884 that:0.03649004084159322 There:0.029568767743076638 you:0.025448347792220827 We:0.019636484770042702 men:0.015271550180411906 people:0.01369088954017746 as:0.0128196184286318 these:0.012491742056365612 them:0.009576457994104148 what:0.008320040529565156 Here:0.008156132407751513 :0.32965717464794897 +to:0.6573054161194198 and:0.05002249501824109 not:0.04959316143728461 will:0.04897544984543471 a:0.0339388055212101 shall:0.017891831087665455 may:0.01701794387118252 we:0.011141746924021104 would:0.010536789349759348 should:0.01026493414670444 must:0.010101425075921449 can:0.009238656217490754 they:0.008963520772570809 cannot:0.008629398972236234 the:0.006318127839149743 of:0.00543391527786382 could:0.004852850155527233 or:0.0048301583769674895 who:0.004041498893144916 :0.029901875098204318 +of:0.33559457165726736 the:0.10390643979614288 that:0.07906181934001512 said:0.07247812404202028 for:0.06755700298674709 and:0.0496758277562481 such:0.038046904097729706 a:0.03736884355863837 public:0.025685906559150828 which:0.024659595641733822 The:0.020660864561881993 This:0.017590630372262703 this:0.015044406464160573 or:0.013250717357808525 by:0.007279093800176423 no:0.007114110028359326 private:0.006818851725527422 what:0.005907241327820644 any:0.005894781659264953 :0.06540426726704389 +of:0.15001978805121516 the:0.10326636891820187 to:0.05565117757264274 in:0.04700681240562653 on:0.034996146966053354 a:0.033391981188149726 and:0.03190554782585787 by:0.02967366225681499 for:0.022470497000783875 at:0.02136791365408333 from:0.020744796043924717 :0.018323042466618207 with:0.017673169643652495 In:0.012901540561780656 that:0.012044439254854182 his:0.009262639664989396 our:0.008764803121566982 their:0.007992395057661276 as:0.007965268573817286 :0.3535780097717054 +New:0.8734068174690893 of:0.02747472937837508 the:0.011734285809634544 to:0.011125263207011035 Xew:0.008362472291024032 a:0.005405647613383731 Now:0.0047651768861115325 for:0.0037634502551168883 said:0.0032077167654013406 and:0.00287991500189517 by:0.002039178227930546 with:0.0020247222351484876 New-:0.0019883298972903835 in:0.0016823247144493977 on:0.0013632158947370259 from:0.0012146885949764583 that:0.0010155362605516764 this:0.0008987894504924474 as:0.0008387315761006099 :0.033809008471280266 +in:0.04721882121515197 up:0.021627429870487262 to:0.011771369437413762 men:0.0106011050330277 ;:0.009280815430655754 him:0.008972954629837073 them:0.006900027564599061 In:0.0068076448914719465 out:0.00649149071024162 man:0.006477221014543612 down:0.006436539860967171 and:0.006279377582892276 here:0.006269636493371872 come:0.005770161428101522 him,:0.005732029086749077 it:0.005705673231939861 .:0.005651416000514267 it,:0.0055960945993989725 :0.005466735073518413 :0.8099434568451168 +well:0.0783261505813394 known:0.07715919941364807 such:0.05477142900040686 and:0.04863188910629108 far:0.0445482759728691 soon:0.03102312685208889 is:0.028257952691436966 just:0.028005499533101993 was:0.022532512345363628 be:0.022395863339445075 much:0.020508662953047308 regarded:0.01823330307450135 it:0.017273059614160098 are:0.016747984622291417 described:0.015259584918361666 long:0.012277346915599112 not:0.011208503916372204 them:0.011089145850343493 him:0.010809593852119817 :0.42994091544721247 +and:0.16612956259594427 I:0.09649171775114607 it:0.08457802370793181 he:0.07566191170598088 who:0.059141747832175344 they:0.05501499999830187 It:0.040025792298825816 was:0.030348443297264476 1:0.029313905023009575 she:0.02860119911452097 be:0.027978469509685175 not:0.024129871771875467 we:0.02116429829030797 He:0.01990670118126658 which:0.01930886629432118 but:0.018692325880993253 They:0.016327227013833556 is:0.015853496601906797 then:0.015640979899041094 :0.15469046023166785 +and:0.12354809255237743 the:0.07066769615079349 of:0.04084860015787267 to:0.02996007605293627 a:0.02222248447259471 in:0.02032663847146694 I:0.018781776293750232 as:0.018219588260030888 will:0.016257546186290633 he:0.0158415175494325 that:0.01561776248718353 you:0.01354701549201654 for:0.013536303198304218 his:0.01282996847716527 or:0.01273138160828811 they:0.011739623683832036 men:0.011526856100800285 which:0.011459459581275139 we:0.010645524668924763 :0.5086920885546643 +:0.045461516016039615 it.:0.017577590995640328 them.:0.009727498287035377 .:0.008783479913934265 him.:0.008752815871127665 day.:0.004840228864565358 time.:0.0044739149401315775 I:0.004466765698900129 It.:0.0042676516622762355 man.:0.004190831025974664 and:0.004002744213626436 way.:0.0038959395719621336 country.:0.003817988489277725 men.:0.003534820307779564 us.:0.0034766678369212846 out.:0.0032022088958094186 year.:0.0031145750742789515 tion.:0.003110116699921893 :0.0030004035709744296 :0.855302242063823 +A.:0.5831502217693236 J.:0.032737664238173377 N.:0.028283616676986856 by:0.027254413301381033 .:0.026277445257164626 of:0.022755368496055087 John:0.022308855415810402 W.:0.018152761301871028 A,:0.016294469906430558 C.:0.0151730556497858 S.:0.013425898147462319 M.:0.012627218780804332 D.:0.012530874039839345 and:0.011624971084524705 H.:0.011248636536077742 Washington,:0.01103196019140629 F.:0.009425116319044918 R.:0.009287740846632227 James:0.008320849405350519 :0.10708886263587511 +he:0.24412378114518254 they:0.1296355245010359 I:0.1106974099160066 she:0.06551794511473247 who:0.050126375666211 we:0.04144147741989074 it:0.03282307881584797 which:0.02369758451022361 and:0.023441431257690822 you:0.023208091989936466 He:0.02234208832473841 that:0.02131622881983612 ho:0.017337807395665292 man:0.017200947676961748 one:0.015320285884530941 1:0.009843014261496096 She:0.007955193661766577 It:0.0069283985743163 They:0.0065093401232955055 :0.12953399494063486 +of:0.24771856616623836 to:0.10055514755145552 in:0.09984480279807748 and:0.05814117240642057 with:0.05158849496637837 for:0.04613065771486411 on:0.044432355864291194 by:0.03519649785437645 from:0.03338388255327628 at:0.03070401576666744 that:0.026848878623973782 In:0.02041195271981872 upon:0.015248471773457326 as:0.011599582931726849 all:0.011326016994932605 or:0.008867228292995478 up:0.008407673252508876 over:0.007381477118522736 into:0.006992770039889695 :0.13422035461012818 +Mr.:0.06309304691274115 .:0.05013490143419635 Mrs.:0.042278275126173735 W.:0.03456239746298869 John:0.03360810524504819 Miss:0.029226518220107748 and:0.028743990404763425 the:0.023051652257340943 of:0.02270323704268148 J.:0.016136387537570917 E.:0.015035694190739569 James:0.014781828170416763 :0.013851877073925106 C.:0.012320566581167867 R.:0.012093877879382275 H.:0.011586389737749175 A.:0.011419571772745517 Dr.:0.011144689621593436 May:0.010726015563231314 :0.5425009777654364 +land:0.10622149739942241 was:0.10593952692001908 and:0.06928788437914682 is:0.04203890702756595 situate,:0.03562650687054574 been:0.03253913776338405 be:0.029061813386148244 were:0.028414664414381934 are:0.02473144175511635 property:0.015641241540872753 now:0.015075655847802152 lot:0.013537111628407128 person:0.011718643134441093 situated,:0.01161763875139447 he:0.011078475649520905 found:0.010449482428753562 being:0.01006123017092913 men:0.009765783446936604 persons:0.008008267250712926 :0.4081850902344987 +of:0.28767355066866834 to:0.08775711267569858 in:0.08678131196995101 and:0.05160598694501188 on:0.04646139928102899 by:0.04519522654900943 for:0.044547789071328545 with:0.03396756772609607 that:0.033699232901107726 from:0.03075346596941143 at:0.027039283056790858 In:0.021061449543044047 as:0.017514234937992545 all:0.012543839382496166 upon:0.011844431150487573 is:0.00998972746569266 was:0.008814315973987914 into:0.008557199930727406 through:0.007781895704231326 :0.1254109790972375 +:0.03590611247673475 the:0.0302493679607843 and:0.02596574120658105 a:0.01667543526817901 .:0.016174208136697708 this:0.01583336345240321 1:0.01578476714915767 pro-:0.011001867597539156 on:0.010635096002847223 :0.010102382476115177 I:0.009619721959420104 to:0.00825746641288143 -:0.007058671720552767 was:0.00674895785741032 A:0.005866339124251016 t:0.005847412523776777 in:0.005552411752154919 one:0.004980223765401561 that:0.004968816718912764 :0.7517716364381991 +:0.08679924320245896 it.:0.017232244733286894 them.:0.014059044313137266 country.:0.007840237298979317 ?:0.006967866970450956 day.:0.0068777522430959115 people.:0.006786602959065228 time.:0.005929601261905097 men.:0.005830160053530099 .:0.005318738214787955 year.:0.005264544512923772 work.:0.0051426993883486585 all.:0.00491194134717521 life.:0.004733812945819895 :0.004686846168808558 us.:0.004678178450360647 him.:0.004540927763788264 tion.:0.004213666495498618 States.:0.003993658012219503 :0.7931922336643592 +the:0.11919516938815296 of:0.07230453158552728 and:0.05781056740443249 a:0.043018564803886335 to:0.031305092790907506 in:0.020848713353460488 at:0.014270110001066288 .:0.012526810245749479 :0.012413283442322082 for:0.011719122709941797 by:0.010808400946589808 or:0.010404172990115616 The:0.01003576004804544 with:0.009811868184449042 tho:0.009295902015355835 was:0.008924239095331684 that:0.008672304223433876 is:0.0085591147338948 be:0.008335143826716943 :0.5187411282106204 +was:0.1771793189706007 is:0.14682135005455005 and:0.09570244655187701 be:0.09108854317742876 a:0.05114342369559837 the:0.04925268642251209 been:0.044101737397250006 have:0.03989382241458366 has:0.034331250250527204 had:0.03161751435046164 were:0.03154292699556342 are:0.030038939279274306 not:0.027021146865234373 Is:0.02457493205777351 of:0.017721821959442004 or:0.014970512731520043 will:0.013812444221268939 being:0.011853121642324382 to:0.010166038039223856 :0.05616602292298563 +the:0.11919516938815296 of:0.07230453158552728 and:0.05781056740443249 a:0.043018564803886335 to:0.031305092790907506 in:0.020848713353460488 at:0.014270110001066288 .:0.012526810245749479 :0.012413283442322082 for:0.011719122709941797 by:0.010808400946589808 or:0.010404172990115616 The:0.01003576004804544 with:0.009811868184449042 tho:0.009295902015355835 was:0.008924239095331684 that:0.008672304223433876 is:0.0085591147338948 be:0.008335143826716943 :0.5187411282106204 +the:0.15275429869456036 of:0.08827588583919568 and:0.0774844846937851 to:0.03982531855535881 a:0.03488935357968263 in:0.029599753674962186 Mr.:0.022439880456036405 that:0.018493831395725715 this:0.01645824365421301 his:0.014525301984039516 be:0.014051256964255788 for:0.013899811869888751 :0.012705698616555251 or:0.012128627053696316 their:0.012094465894836235 In:0.011832878026776307 I:0.010284682166828837 The:0.009867815219985306 is:0.009758948273167815 :0.39762946338644994 +of:0.3097243494869491 to:0.09493613675692403 that:0.08490951130089584 and:0.07748492806147031 by:0.07000396922523698 in:0.05291317153082327 for:0.0378816942896443 all:0.0377912877188027 on:0.021520474154071274 with:0.020148982015312854 from:0.019475715606489925 which:0.017066375429884782 as:0.016593010688174807 upon:0.011410301874221878 when:0.011336731260053516 over:0.010736331921274385 In:0.010079870012953369 at:0.008039562130002969 where:0.007488534402957333 :0.07945906213385637 +feet:0.12299481496110488 and:0.11880626763173678 so:0.06165104957641914 the:0.05936603071865594 to:0.055361867108277056 a:0.04700258363385344 that:0.04468289969378104 all:0.037354785704576746 as:0.028443492271650817 inches:0.022830656164229184 with:0.021851988881960407 it:0.021361089629708258 of:0.021186660745265998 but:0.02057204992053397 or:0.017479455131002696 have:0.014646440551074504 make:0.014210587619839267 her:0.013461033613351079 for:0.012509373122863664 :0.2432268733201151 +one:0.10757504863160208 out:0.06393072214258595 part:0.05345953864888265 some:0.04657778396619151 time:0.032653763285528395 account:0.0298978741893603 all:0.02673860913095395 and:0.02324876597992745 that:0.02275453097379819 because:0.021318504223257338 portion:0.02010071224985526 side:0.01926992014112468 any:0.018918137101655273 front:0.016609963575485047 many:0.016563310866764772 end:0.01592265492673931 day:0.015255366376758018 members:0.014811614297040794 result:0.014486922106154784 :0.41890625718633423 +it,:0.01994205028132737 in:0.019463869858203576 ;:0.018153102248566085 them,:0.01429234875961176 him:0.011523319232477073 him,:0.009645412209757042 it:0.009077798198502943 me,:0.008929826205654303 up:0.007849675493881606 you,:0.007722576560129432 you:0.007495039534301534 them:0.00738844401326505 me:0.0071281103245215685 time,:0.007003191455541187 and:0.00694750912859999 people,:0.006929808546061702 time:0.005811663356764422 out:0.005230314937448014 country,:0.0052020694009011605 :0.8132638702544842 +sum:0.1073681994264179 number:0.06631685117964392 years:0.03650344599314108 rate:0.034948790574564154 out:0.029939847398312125 full:0.027780938102146515 line:0.02528936944758706 amount:0.022897416947209138 kind:0.021202090135613354 matter:0.020550703457172734 thousands:0.01794508939102807 cost:0.017577921841534293 work:0.017246247016491578 right:0.017115210976027837 case:0.016604076719169924 side:0.01588601712523846 and:0.015679600892936015 distance:0.014780539695732908 way:0.014713420075472087 :0.4586542236045608 +the:0.17988420123277482 of:0.17020537484858095 in:0.04952488740542746 a:0.04877892656161545 and:0.04653735038937793 to:0.0459559821908737 by:0.026512767737517165 on:0.021703106320676978 from:0.021090179220618885 The:0.01565085963903809 for:0.01562737013092073 that:0.014648241944024969 with:0.013374172987552979 tho:0.013099753024974821 :0.012832145824078585 In:0.012028542874297254 be-:0.009708609496900873 at:0.00757825881450523 which:0.007450045292888884 :0.2668092240633542 +;:0.01458927046758731 it,:0.007973265891266864 him:0.007834970369143835 one:0.007240974664279108 in:0.006989508095588829 and:0.006417396987522371 ,:0.006059091806132192 it:0.006014614548599763 up:0.005812344146302806 out:0.005395853159197619 them,:0.005290532062834904 him,:0.004938420268273817 city:0.004793760033506698 :0.004646491011450349 man:0.004641061555670736 country:0.0046164671969483135 feet:0.0044416267197611185 time,:0.004376787347733258 time:0.004358244018157902 :0.8825693196500423 +the:0.4472146128865349 The:0.07273563860696303 his:0.05538872967613967 this:0.050940323849417574 of:0.03388390050102364 their:0.03277099925448032 a:0.030110396715268866 its:0.02504477527831832 tho:0.022866730078725476 our:0.01885075031869417 whose:0.018666925601022753 her:0.01819235981249352 my:0.018050923957550338 and:0.015921051815229167 that:0.011553861951370195 This:0.010518407023207709 great:0.01035283623964691 tbe:0.010061690513203754 final:0.009204283249150163 :0.08667080267155954 +and:0.09058070628408417 them:0.035612128915564936 it:0.02812593617712726 that:0.0257487823668707 was:0.020683479359983183 men:0.020005358105522793 or:0.019864638542064744 made:0.018839006930580358 him:0.01868863320898503 all:0.015585011491454318 as:0.014536909705151391 interest:0.014290786739958263 time:0.014091594334534314 are:0.013862929960904722 be:0.013860062185175548 out:0.013821803322165488 is:0.013817404255346437 not:0.013336237941836774 found:0.0132245688903211 :0.5804240212823685 +of:0.36844823406042176 to:0.10474686738041489 in:0.07281468776283627 by:0.06382386411216162 on:0.050662082852415156 that:0.044366666064755325 from:0.03648926551023082 and:0.031735500108062094 with:0.0306307573996593 for:0.023955601814871712 at:0.020685276371852537 In:0.015640694194833285 upon:0.012279466289182627 under:0.008447306066641009 which:0.007718771288097244 as:0.007216063669504911 into:0.006247973223332846 through:0.005867790642320393 over:0.005157804027182851 :0.08206532716122333 +the:0.8708110667509206 The:0.03995367548492272 tho:0.03506449689159559 tbe:0.0120845671845194 and:0.004540732769687472 this:0.004367662808946156 his:0.0030848633983695493 of:0.0028948672735896073 a:0.002404405660197363 tlie:0.002194740393309137 its:0.002089209793678956 in:0.0020088813638716838 that:0.0019080421909117267 an:0.0016127551806164792 their:0.0014625409503232387 Tho:0.0013566430956003538 from:0.0011866278259826683 our:0.0011707146083628306 tne:0.0009771752282296737 :0.007826331146364838 +N.:0.32763768940018545 the:0.15160593006622167 X.:0.05135416935596249 .:0.03347052798271442 of:0.018940554085463822 and:0.01636520032296428 J.:0.015594137662131994 A:0.014620529275091255 W.:0.013994169480102132 A.:0.01322406267512427 The:0.01238050371553049 E.:0.011441369518054061 C.:0.011378193783956974 a:0.010435496145507685 John:0.009724821198076657 S.:0.007551587844830811 H.:0.007301824908925692 tho:0.00689332846254833 E:0.00673595242260277 :0.2583499516940048 +called:0.3115321894935304 agreed:0.15683038342050448 looked:0.07173881253494419 relied:0.04210608788561121 acted:0.04016142460284002 levied:0.023724858603648136 depended:0.020905275621320017 made:0.020577570939189483 imposed:0.020397672404559145 put:0.01761296301685625 entered:0.016924481770770997 placed:0.015942960398678662 commented:0.015613700868263473 voted:0.012858094617115293 decided:0.011326078313961508 look:0.011092820213198686 brought:0.010957616101091406 insisted:0.010577861827439533 carried:0.01050645825691784 :0.15761268910955928 +of:0.13531830852723942 the:0.10714481680221101 and:0.09215150550735411 to:0.03531235405435172 for:0.025015064269505415 that:0.024681202610145146 in:0.0243855746062975 by:0.021543253013630553 or:0.020326865415632982 with:0.01700120288179117 :0.015405165359684482 other:0.014180610033674993 some:0.01406945067534146 which:0.013030816685814633 all:0.012569052749996045 The:0.012365443398984356 many:0.01179086791918667 a:0.011245528037693452 as:0.011213849977532532 :0.38024906747393233 +the:0.18179470057646016 of:0.08674409487437103 and:0.05891648439314675 that:0.051941563313423325 Mr.:0.03611963772989963 The:0.035221556342727924 a:0.033511640089725174 this:0.017206977935928718 or:0.015340377669888175 in:0.015328798889933605 no:0.013728208994337746 to:0.013049490199744891 tho:0.01283137533392388 his:0.012339015515583624 as:0.011873037242155523 an:0.010118708549008397 other:0.009951283100883423 their:0.009878834116132332 :0.009664375379880793 :0.3634398397528449 +of:0.2363460953012322 in:0.1312561309369335 and:0.071857577222654 to:0.06964041985601513 with:0.05634642791957651 for:0.052123862228656066 by:0.03709245470771219 all:0.036888120189764284 from:0.03368195824647899 on:0.0312942936394529 at:0.02772015612120838 In:0.018595624238642226 that:0.01661143134815104 upon:0.014529454946839522 as:0.010527822265558807 within:0.010065272762893757 through:0.007584197962800866 but:0.006891160458981784 after:0.006609930051429546 :0.12333760959501827 +of:0.1916474395900978 and:0.05497924997745991 in:0.04004057152680931 Thousand:0.03861745393561456 the:0.036820337143752706 to:0.029814304042708767 :0.018759140077411245 Township:0.009388870437973103 In:0.008720626488095183 by:0.008225008211131216 for:0.008224298815159502 on:0.0076409386472855965 containing:0.0076242620692887385 or:0.00646767275467402 from:0.005726988957011975 Range:0.00521161438707992 .:0.00491861204292987 said:0.004132261360643963 &:0.002683060960055276 :0.5093572885748173 +the:0.7343294592733202 The:0.0635312675370192 tho:0.041682735555311115 a:0.03561646770324318 and:0.017683635085245113 tbe:0.015045990189841969 no:0.008261620561417526 an:0.007919749612825482 this:0.006032196726111779 his:0.00484548355101274 of:0.004750854621236431 said:0.004453043087992003 any:0.00435283227797554 general:0.0040347872691090325 careful:0.003822386482246249 great:0.003760456223867861 Tho:0.003313221915459157 good:0.00325424085617514 their:0.0032389147239277097 :0.02907065674666263 +are:0.1344798285165133 be:0.09670294759363267 the:0.09211253900252843 is:0.08422891760371133 not:0.07926322649068901 and:0.0747060121676972 was:0.055035218813954546 of:0.04111387588518277 most:0.034730244233784256 very:0.03369270047058519 were:0.03225322823487311 a:0.03160925390456972 they:0.028415319810459794 been:0.028333476208220715 we:0.026966565896197857 have:0.022005895735868378 I:0.021922649169559584 Is:0.021705193194330927 as:0.018689898584328814 :0.041033008483312386 +and:0.10851288609782482 put:0.047590001778193114 was:0.039108500809110734 placed:0.03233832341418856 is:0.024619115955484144 it:0.023850744058057087 that:0.023256132240437818 out:0.022134763509824004 down:0.02099367875435388 up:0.020228972985452287 him:0.017863313027149004 carried:0.016184406316225686 work:0.0160349489753901 feet:0.015952692581117946 them:0.01577195875019368 went:0.013345432050681023 based:0.012401034640217315 going:0.01205353519828138 called:0.012022692878696211 :0.5047368659791212 +and:0.09976846790187298 him:0.022481820467964042 reason:0.022111953260397145 made:0.021945432011148347 but:0.021216150289988026 enough:0.019022789835021536 asked:0.018139266498890465 time:0.01661680982408657 them:0.01649308480354857 provided:0.015948281471856066 necessary:0.015914351276976317 vote:0.015881883039876366 that:0.015503492476515578 it:0.015111110916371674 pay:0.0150371684983729 demand:0.015030100003476385 work:0.014582613178973585 responsible:0.014279697960215635 out:0.014127060240673216 :0.5897884660437746 +a:0.28578782041192224 is:0.14127190484878643 and:0.07507910826205794 very:0.054751294229217366 so:0.05315705396174155 are:0.051969605015777 was:0.04974040909172269 of:0.03561580720501847 the:0.03421348988243404 most:0.030203133236108275 be:0.0260047108948685 Is:0.022981563927248618 too:0.018081793744253616 more:0.014906452998642294 as:0.014812806130116532 not:0.012846875769857082 with:0.011967887473334066 were:0.011637479350848119 some:0.008674073415012452 :0.04529673015103273 +the:0.13630279308561424 of:0.06692456812906115 said:0.05551044962204779 and:0.05149816423780986 such:0.04948374254433424 no:0.04480055674014496 or:0.04367826574500005 any:0.03316409638602399 that:0.032641424904939056 which:0.027035084394318096 in:0.025794929645369346 The:0.024682862896855534 Said:0.019577427727980566 for:0.014909323038840353 to:0.013735600133325174 a:0.013498623672090239 their:0.013161306276441815 :0.013147588082038478 re-:0.010825885547053852 :0.3086273071907112 +and:0.2185882372341736 he:0.09257802359879828 I:0.0535592531463648 which:0.03654653510964574 they:0.02636909886910976 who:0.024022927080277177 that:0.022474321577726032 it:0.021600708820525488 she:0.021303797893575827 then:0.021151250266942208 He:0.020407937181115166 1:0.01690194523399215 It:0.011844612653386464 we:0.011127933738886564 ho:0.007915385527705656 men:0.007484700716215934 John:0.006277232136898023 lie:0.00623156703690385 man:0.0061263404231342135 :0.36648819175462305 +-:0.032695652283580366 day:0.031132041822020798 and:0.020234397057881482 t:0.018307622926809004 in:0.016697935944308195 to:0.01648170128669256 feet:0.015139930426918535 1:0.014340814950811626 of:0.013271562859581624 the:0.012778469617141545 on:0.012318563818595496 was:0.01026357059253382 one:0.009756642295308883 at:0.009682921739156726 a:0.009550919776191297 .:0.008949228915254112 half:0.008576904280516716 i:0.008477121359759093 :0.007836848791577158 :0.722507149255361 +feet:0.0719208472326295 poles:0.05759396229176634 up:0.04010587224329879 chains:0.0385088170079141 entitled:0.029123404981740347 went:0.027388526271997813 came:0.025857650765910022 down:0.025633262313841977 him:0.025574415868859987 as:0.024916209858287616 and:0.023917753661251574 subject:0.02185045005331621 brought:0.02171367122116056 them:0.021644069985480026 it:0.02099405133651225 rods:0.019030517253069822 back:0.018922583019034468 go:0.01891708435510451 sent:0.018892511875840953 :0.44649433840298314 +the:0.21226053994768992 of:0.08908553364448137 a:0.0693048763107861 and:0.06669673262438473 to:0.03896026976811428 in:0.029534144155763366 on:0.02311092534550098 The:0.017218360646764665 or:0.017175299774520588 tho:0.015175982567328515 at:0.015007586171216693 his:0.0138690004971313 an:0.012966209629359527 for:0.012352702316578638 two:0.010185645043747532 from:0.010138485383331173 one:0.00958150027205186 that:0.008934026327905525 by:0.008414545565373617 :0.31902763400796963 +the:0.07890630989222301 of:0.058084880944973105 and:0.05521960451327574 be:0.04853642257768507 to:0.04668301886664723 was:0.04146377436960755 is:0.030923848575864533 a:0.024207320225197882 are:0.02343718444419923 were:0.019152041012217777 for:0.018224597903154283 in:0.017839126071116627 been:0.014485280266630445 or:0.014390109974460464 on:0.014201150287173201 he:0.014110096034348476 re-:0.013880538140285689 will:0.012278570130174514 :0.012049840108048025 :0.44092628566271713 +the:0.3190022502324963 a:0.12712629781552992 one:0.1151824850162151 some:0.03437151776294175 The:0.0342488569440929 his:0.031781601400459554 two:0.030861202137603537 tho:0.022948128697787198 their:0.021477954890207172 on:0.020952014592906677 of:0.01698579432111992 and:0.01696655296805577 in:0.016113066547175037 my:0.015658705340780107 few:0.015054982251718379 right:0.012597667000961868 her:0.01254411367308792 all:0.011980880061630606 four:0.01190466166837183 :0.11124126667685848 +of:0.12420626332285459 and:0.08407949172559863 the:0.07992222245361563 to:0.07853370471643968 a:0.0478881334997055 in:0.041990915881161654 that:0.02346139306522553 or:0.023187112563711563 which:0.018683749349877703 on:0.01867746008192588 for:0.016732677646354215 as:0.016257053731117344 with:0.014410615446966386 from:0.014165915556768917 :0.011408862323501572 by:0.010892230539173818 be:0.01079555870147001 The:0.01074701160531554 his:0.010685750451374782 :0.34227387733784104 +to:0.12022893700269083 and:0.09020394424291768 the:0.08587503820055309 of:0.06450042443224316 in:0.0310058468700829 a:0.017742048521183405 :0.015548046036689871 not:0.01491307651316237 that:0.014112408707955496 for:0.013734482372212283 I:0.013065769926808477 will:0.012848502316304782 at:0.012837991177321897 In:0.012628718855091186 by:0.012491091048660757 be:0.011425930130217754 is:0.0113962101007567 he:0.011342727513475473 or:0.01112522537451577 :0.4219735806571561 +that:0.2979828498745313 which:0.10368699799112614 and:0.07026791244455519 as:0.05216623376645152 where:0.04083166982462218 if:0.03990843334666882 but:0.03530143924720131 when:0.03092732451151384 what:0.0263590482551419 because:0.021249339866295285 said:0.018810510083520596 whom:0.018628986387871773 If:0.01826210210892352 says:0.012894899125496014 though:0.009966332248386077 until:0.009688111655643374 time:0.009562679977160609 while:0.008550908058223304 years:0.007894979987761647 :0.16605924123890559 +and:0.28814936653889656 or:0.10029329141464731 that:0.07211599685594078 not:0.060719664028633956 but:0.044751875105967745 to:0.029253665970221346 But:0.01808725509415477 is:0.01586879776865621 for:0.015607876428014875 which:0.014362214943278705 of:0.013519891548655525 was:0.012944810391735239 And:0.012776098239454739 by:0.010266539962050854 nor:0.010213945533104377 are:0.009643499519529466 than:0.00934977890091419 even:0.009334498417605003 be:0.008398085326982722 :0.24334284801155567 +to:0.2572435503434254 and:0.13562244976657134 be:0.1056922816406108 was:0.06531467100237762 he:0.049405301045141244 been:0.03404662337997688 I:0.031673345655194356 were:0.02960687411411165 had:0.019156853005973667 has:0.015674752776697182 not:0.01510751133086662 she:0.01504717277167143 is:0.01469248588830244 will:0.013661635975996615 being:0.013604470287025295 have:0.012440844589658601 are:0.012215875241610998 they:0.01179117276388405 then:0.011522479716409965 :0.13547964870449386 +the:0.19350845397582483 a:0.17324949753036842 of:0.11221718400090339 for:0.0833434802692293 in:0.05182523299485223 at:0.03842525548618061 and:0.028366659823304975 that:0.02347444332283628 to:0.022602921558682862 by:0.015250265949568948 The:0.014249298414566127 an:0.01412183495259395 In:0.01389186960242819 from:0.012633119317181871 tho:0.011892706928213388 during:0.011627704936086601 which:0.01016392501099554 any:0.009266595687709362 with:0.008093031288658747 :0.15079651894981438 +the:0.31802545114573283 a:0.13720019442163986 and:0.046699886305591645 The:0.0440073169570667 his:0.03382385235560326 of:0.03232030880803071 any:0.024381171953460783 in:0.020560088833156073 tho:0.019351282323154834 an:0.01724842466428199 no:0.01536748218448383 little:0.011752570185401481 this:0.011588876850947666 that:0.010739414763648047 their:0.010710337736348522 one:0.009025883586511012 by:0.008672056013626792 her:0.007979588628211982 A:0.007586513428155864 :0.21195929885494613 +is:0.09152502939086028 very:0.09033929425053039 the:0.08152464291655068 more:0.07736068458163993 be:0.07601862717914956 most:0.07564426944301388 was:0.06564304768252213 an:0.06043042879464004 are:0.04236790907318583 a:0.04104530301095539 his:0.03670000249907667 and:0.033204066866372936 not:0.03138261706838705 in:0.02903164996984618 of:0.02766131658326424 her:0.019209827830340195 am:0.01542679608709626 been:0.014509503621594083 on:0.013951911424361751 :0.07602307172661253 +the:0.11919516938815296 of:0.07230453158552728 and:0.05781056740443249 a:0.043018564803886335 to:0.031305092790907506 in:0.020848713353460488 at:0.014270110001066288 .:0.012526810245749479 :0.012413283442322082 for:0.011719122709941797 by:0.010808400946589808 or:0.010404172990115616 The:0.01003576004804544 with:0.009811868184449042 tho:0.009295902015355835 was:0.008924239095331684 that:0.008672304223433876 is:0.0085591147338948 be:0.008335143826716943 :0.5187411282106204 +quarter:0.020180229375266975 sum:0.01824274366301461 one:0.016606937659480195 part:0.01567180029579394 that:0.014316866900759239 purpose:0.012254505380845377 instead:0.011439023786272415 and:0.010309352321895934 number:0.01019656096988624 out:0.009598227665902357 or:0.00936658148199173 payment:0.008796882015413185 tion:0.008671341416582887 virtue:0.008070279214584428 amount:0.007998744098535696 use:0.007590625412962454 side:0.007489606376894937 way:0.006603947141946593 case:0.0064569990720523135 :0.7891387457499186 +sum:0.03352282876311118 number:0.028116684882597106 line:0.019995206059833036 city:0.01946514558931857 out:0.019275318828420953 day:0.01666865340772654 county:0.014872697538657208 amount:0.013254184849875051 Board:0.01252325449624941 town:0.012449555905674143 side:0.011663975251122375 part:0.011517157473718155 County:0.011460540331966697 state:0.011087331502382173 City:0.010878919191854432 purpose:0.01081028255427907 and:0.010297866493795984 way:0.009848747943663767 name:0.009522170936943183 :0.711769477998811 +the:0.11919516938815296 of:0.07230453158552728 and:0.05781056740443249 a:0.043018564803886335 to:0.031305092790907506 in:0.020848713353460488 at:0.014270110001066288 .:0.012526810245749479 :0.012413283442322082 for:0.011719122709941797 by:0.010808400946589808 or:0.010404172990115616 The:0.01003576004804544 with:0.009811868184449042 tho:0.009295902015355835 was:0.008924239095331684 that:0.008672304223433876 is:0.0085591147338948 be:0.008335143826716943 :0.5187411282106204 +that:0.16045417365665626 as:0.11243249388150196 and:0.10383859634206051 which:0.07578260412423371 when:0.0749971741458003 if:0.05427623579254473 but:0.03291609104739705 what:0.029125468167811735 When:0.027950838676203387 If:0.027816434427110195 where:0.020997028641539073 for:0.018920031859009825 As:0.017690895641425213 before:0.015598179364721035 because:0.01237447566692882 so:0.012344166385603022 But:0.01219061701871595 than:0.011264728984203744 Here:0.010920642874972323 :0.16710912330156116 +and:0.08870815442374878 was:0.04428559951068267 is:0.031034268200307934 up:0.02697901509172133 it:0.02480520504344313 that:0.02449263795166557 made:0.02310721387848904 them:0.021934354763301526 him:0.021488418647441974 be:0.01997507483727601 found:0.01834151577518085 put:0.016971115819709854 but:0.01689342768922557 placed:0.015587330622879994 engaged:0.015417247236170852 out:0.014394193317887468 are:0.014386632920084033 as:0.013713717542984514 were:0.013214272997521679 :0.5332706037302772 +is:0.1980770743979484 are:0.10900942068271394 was:0.06869773456422092 be:0.06725751262028884 and:0.06085943679181197 not:0.03292027075871869 so:0.028987868338847 Is:0.026809518792367815 were:0.02439712451982346 more:0.018072318978163707 very:0.018004054273194257 as:0.01597693391974776 too:0.015318718959168531 it:0.01503593476141026 been:0.01495052810365664 a:0.013802114261090554 or:0.013768206207169594 the:0.011309564861644517 most:0.009582548192352708 :0.23616311601566045 +he:0.1294605672721691 they:0.1004902210763613 I:0.09643709015207615 it:0.07949580544023815 who:0.06518244535925452 we:0.048254201941999586 that:0.044588778192337176 and:0.043197466335806074 which:0.042133156520072775 you:0.03874338620232544 It:0.038346734189857956 she:0.029273654113079278 He:0.016385299585536767 1:0.014075301166286278 as:0.011916470166374536 one:0.010818390950938523 ho:0.010778504085109962 We:0.010589210527818142 people:0.009970751033884725 :0.1588625656884736 +the:0.08526878854758171 and:0.06069407055456017 was:0.04112953099472932 as:0.039402051139103625 is:0.027029715612006615 a:0.02527378405931845 street,:0.02245573764656925 of:0.021806260724721045 so:0.01869317794524747 be:0.01866471248234495 that:0.017746678934248663 very:0.016260750568166445 or:0.016091684256523412 in:0.014585923903552392 living:0.014165811114196137 came:0.012923360308110091 located:0.01169256343277389 were:0.011249575258725967 one:0.010942693386644477 :0.5129231291308759 +of:0.10143259715206676 the:0.08503409395752842 to:0.07937679039415774 in:0.06770245247633268 and:0.04127562395202305 a:0.03448459838281448 on:0.030509050033749204 by:0.022740127338539078 at:0.02050660476372534 for:0.0175171335973714 In:0.016120054961476258 with:0.015314646700196485 :0.014657561364475585 that:0.012950632744536393 was:0.012467829930948455 from:0.012361357652046583 said:0.012055113337477198 be:0.011978947648636551 is:0.011914757350720803 :0.3786000262611775 +the:0.3128298766062826 a:0.13764387928174343 his:0.1057224644193915 The:0.08357260863921111 my:0.04595194157046369 and:0.03371418682736101 of:0.02418399893267621 A:0.02372409000363577 His:0.02092610413350352 her:0.02073083804723263 no:0.01999126938876668 tho:0.017916986259829185 their:0.01609999638122256 your:0.010696872359379748 some:0.010369084918708235 our:0.009111606900245268 to:0.008780366506837752 that:0.00847832523487121 My:0.008354718701930584 :0.08020078488670729 +of:0.09129790931378902 the:0.07369883040827747 and:0.047842263382354346 in:0.04189055351593407 to:0.04045875475680249 a:0.03542341257202578 be:0.02020462051672066 for:0.01979292654746225 was:0.01760256398103379 at:0.017380150555488715 is:0.014984483003968216 with:0.014047653760730413 by:0.01374644383819499 :0.012670486581795598 In:0.01200961464556976 or:0.011563835749786333 from:0.011391516893522809 are:0.011273104484969465 that:0.010755276030689069 :0.4809655994608848 +of:0.28767355066866834 to:0.08775711267569858 in:0.08678131196995101 and:0.05160598694501188 on:0.04646139928102899 by:0.04519522654900943 for:0.044547789071328545 with:0.03396756772609607 that:0.033699232901107726 from:0.03075346596941143 at:0.027039283056790858 In:0.021061449543044047 as:0.017514234937992545 all:0.012543839382496166 upon:0.011844431150487573 is:0.00998972746569266 was:0.008814315973987914 into:0.008557199930727406 through:0.007781895704231326 :0.1254109790972375 +be:0.2672767314916224 was:0.1334276969238879 is:0.10344665074727957 been:0.09845537991586122 are:0.05800612427975457 were:0.040133093317836044 being:0.033858689480092206 and:0.02807179286378133 Is:0.018895557249487133 bo:0.016498834829434147 he:0.012493005162198345 as:0.012467101587140969 it:0.0120913046206407 now:0.011342468167657783 not:0.010204080490875156 well:0.008677415930517308 had:0.008318331215205577 that:0.007182065505467761 have:0.007053732484875953 :0.11109994373638393 +the:0.17751240315353142 of:0.1234650674278786 in:0.10830989237070349 and:0.06709975920296646 In:0.041815988940665814 to:0.04077778796916782 for:0.03980705217964432 their:0.024752193848035762 this:0.02409405330257665 or:0.021788562308082574 public:0.021559601510319226 its:0.019572540375445462 our:0.01670633520515266 his:0.016373368063511667 with:0.014930264475179962 that:0.012262897203733858 good:0.011342799334436592 other:0.010283372369838596 much:0.009143295181709565 :0.19740276557741954 +the:0.09684081064840576 and:0.06551335624548284 of:0.05146145169206151 from:0.049520598669154245 a:0.045427902131977435 to:0.0370403239153822 be:0.035669151526387034 was:0.030489628475080553 is:0.026635804908522978 in:0.023878514238638158 are:0.018513936943033917 not:0.017945708099223703 or:0.017556265685966497 been:0.014265228721347686 at:0.013857211504087178 he:0.013733215789660087 were:0.012396679125422956 I:0.012347944480187516 for:0.012197989992860347 :0.4037082772071174 +the:0.24918537451280123 a:0.16596032529862664 of:0.12932381777443822 and:0.0514891981728324 to:0.04892346327060955 in:0.03523756109138865 his:0.034972575670489704 that:0.027561414014155242 this:0.02658874429993895 for:0.01940139809891254 tho:0.019114456935712225 or:0.01704098730003955 great:0.016158898924188158 their:0.012071652985672296 her:0.011912141063572596 The:0.011446812442949483 its:0.010462024102591101 In:0.00970841304702002 all:0.00892389797827333 :0.09351684301578811 +the:0.13271170067954544 of:0.12484047893344019 and:0.07847607660029009 a:0.062432320417193876 to:0.049074881479117365 at:0.04729669980215971 in:0.028268221455471816 for:0.017323047210225966 his:0.016131275957639604 on:0.014303956012305935 The:0.013448093229499592 an:0.0130613468140772 with:0.01268013568699876 or:0.012257488350960475 :0.011593178470489887 .:0.010648309375765781 their:0.010556469663751917 from:0.009221225333571965 two:0.008632893929237953 :0.3260422005982565 +for:0.15573116837663473 of:0.13370253688208744 to:0.09972539858218676 at:0.0877974753012503 in:0.07829477915743135 and:0.04236988151280991 during:0.03250476919870724 all:0.03000013696724621 on:0.027585585520891246 from:0.02663076139922637 In:0.026456665280929513 that:0.023456663040137556 after:0.020884323150441173 with:0.020407214517014403 about:0.018859017978286086 over:0.01670784926054268 take:0.015390625997683175 within:0.015139993412505545 by:0.014070681176766742 :0.11328447328722153 +day:0.020475734401954833 and:0.018258510568710674 made:0.017077791511910335 out:0.010665738840352303 up:0.01047133203779647 feet:0.009619802803320669 them:0.009430901899680086 him:0.008960321112840739 it:0.008730812671073902 :0.007556392668636161 tion:0.006247826913272305 well:0.006093871760237969 office:0.00605763126816443 that:0.005943016336636189 :0.005791640923498632 men:0.005710071850206161 down:0.005534626803470187 way:0.005514111213548283 order:0.005489979152337312 :0.8253698852623523 +of:0.09479955672496496 and:0.08057552070097455 to:0.07809815998487848 the:0.06977795081872618 at:0.0437409164570975 in:0.036630510117926535 for:0.034314583915352304 a:0.030878557529286577 be:0.02009840117115199 by:0.02000983995661604 with:0.019638038636794346 on:0.0158226507767012 that:0.015552714222671562 from:0.014582648764074937 or:0.013351814435360836 is:0.013123476855603057 was:0.011532162276456023 :0.010323048242808925 as:0.010288448030280875 :0.36586100038227315 +and:0.05954826800200673 able:0.04668638322633569 order:0.044604147860743466 him:0.0386265639301963 is:0.037952755253664684 was:0.03608034278118964 time:0.035788742053291994 had:0.03422850577743171 as:0.03375615948603487 have:0.03325378431854452 enough:0.03265489613643173 refused:0.03217993653985935 willing:0.031954089052473225 necessary:0.029379811072967266 unable:0.029231642185726107 ready:0.02728452641965818 want:0.022311327375082984 desire:0.02150886685695491 going:0.021449676184255563 :0.35051957548715107 +away:0.05746860598250849 and:0.04985561698690421 taken:0.03950823995165392 miles:0.0355312759828073 feet:0.031845900191456514 come:0.022313957473317422 them:0.021637161013586904 out:0.020621546731341717 came:0.02000539576637417 up:0.019820502682224503 him:0.019195504147748815 received:0.019046714556510396 far:0.018152378296247898 removed:0.017489734983720518 down:0.017467467859455896 it:0.015386533775439217 years:0.01424855034507225 annum:0.014237643714946796 free:0.014107989586278378 :0.5310592799724048 +is:0.0945601514475778 and:0.09362930592536561 of:0.08990785260587335 was:0.0765329498701744 by:0.07046216480583366 for:0.06853844404434833 in:0.04629280545529532 that:0.04249077243824307 to:0.03605594864307322 as:0.03504705802405797 are:0.028983582088891863 be:0.02573215914619064 from:0.0243127373879904 with:0.023368724305748337 or:0.021461288869289028 all:0.02119968922206011 not:0.020671103385831044 Is:0.017782301446055873 have:0.016893644662540345 :0.14507731622555967 +the:0.5352703065205581 a:0.22885248781742434 The:0.03841149337162224 tho:0.026206965387139694 of:0.013094701340493026 tbe:0.012673393097198915 this:0.012135221601491001 and:0.008379437802410131 great:0.005970511780475519 general:0.0059050144282504205 every:0.005887641913099484 A:0.0051983906963152535 good:0.005188618330873327 that:0.0048463689701716516 high:0.004725284063703004 special:0.004285228002853143 new:0.004037520179640249 by:0.003717028799915516 his:0.003633681501015575 :0.07058070439534946 +the:0.11919516938815296 of:0.07230453158552728 and:0.05781056740443249 a:0.043018564803886335 to:0.031305092790907506 in:0.020848713353460488 at:0.014270110001066288 .:0.012526810245749479 :0.012413283442322082 for:0.011719122709941797 by:0.010808400946589808 or:0.010404172990115616 The:0.01003576004804544 with:0.009811868184449042 tho:0.009295902015355835 was:0.008924239095331684 that:0.008672304223433876 is:0.0085591147338948 be:0.008335143826716943 :0.5187411282106204 +a:0.29552219924429823 the:0.22951589858771673 no:0.04374162641418545 The:0.039635733087063835 of:0.03843813738276556 any:0.035715396952308805 such:0.03206538687397109 his:0.029577778014322553 and:0.02954974601162166 that:0.024399929039683348 this:0.02182598314967252 said:0.016715775422267726 tho:0.015252861632251185 in:0.01342451291097315 A:0.013373536520443848 one:0.010867040319698547 every:0.010593025227557912 same:0.009331302918472228 which:0.009195867314945844 :0.08025826297577975 +and:0.13116138355335752 of:0.08810920394091624 or:0.08466632601343481 within:0.06525283783373685 the:0.06480864797837761 as:0.04645772809555486 in:0.044609041127195374 than:0.03300511962520504 about:0.03150981452351411 a:0.02924545582883635 by:0.027753474468124654 with:0.02743150137292634 least:0.025496242816635015 section:0.022945280741672732 to:0.022634652837225797 from:0.016069265455630505 for:0.01485654803119378 north:0.01469019006594621 first:0.012042298544244117 :0.1962549871462721 +hundred:0.02334136986593815 up:0.005482494641173394 men:0.005366536521246011 Hundred:0.0047587970519216575 John:0.00441808156134956 William:0.004390720675819281 him:0.004016828614280843 ;:0.003997112205305733 due:0.003721199871732 in:0.0036582900032443304 time:0.003637206863828461 James:0.0035594902370151707 out:0.0034878448964120057 .:0.003467980723571515 1:0.0032804584819785204 day:0.0032444781513863933 ,:0.003058139385740603 :0.0030314555521939613 Robert:0.003005471634785646 :0.9060760430610768 +city:0.08150484176644957 county:0.042491224912672855 City:0.04021630473035438 day:0.03535708401193436 State:0.035151478280837326 state:0.033926230949317064 County:0.02956044534135228 Board:0.02936398938167511 line:0.026575690468579008 number:0.018638447378749125 corner:0.01787349936924477 Secretary:0.017029981687808844 out:0.01563682235008841 town:0.015155041263094936 act:0.013466501654072706 side:0.013224770003925686 lot:0.013143091556616669 part:0.013007301208587311 board:0.011546692320946513 :0.49613056136369305 +of:0.1462667786212818 the:0.11311178347038299 and:0.06329984292166121 to:0.05226433769762739 in:0.02221452860331263 a:0.01994487186008941 on:0.017961640544266386 The:0.016720237204012434 be:0.01653811657161028 was:0.016314651473296783 Mr.:0.014733175486113213 for:0.01453090968204903 is:0.012674033373706468 or:0.012643998500132186 his:0.012449266497499042 with:0.011977649511894216 :0.011620379426465322 are:0.011197681349073707 which:0.01095696674114518 :0.4015791504643803 +it:0.12446268169980054 It:0.12280480786537545 he:0.08020652832724516 which:0.06073294414750625 and:0.050980027219622276 This:0.05045282889882609 there:0.03713440751770763 that:0.03479346912854159 He:0.034050592549068955 I:0.025956325276684452 who:0.0218090018189395 this:0.021274788707593795 what:0.018497831674433016 she:0.016797366883068703 That:0.015547740538263702 There:0.012197964745074768 What:0.01018044384120964 one:0.008601337446420436 as:0.007989411724092167 :0.24452949999052587 +the:0.09684081064840576 and:0.06551335624548284 of:0.05146145169206151 from:0.049520598669154245 a:0.045427902131977435 to:0.0370403239153822 be:0.035669151526387034 was:0.030489628475080553 is:0.026635804908522978 in:0.023878514238638158 are:0.018513936943033917 not:0.017945708099223703 or:0.017556265685966497 been:0.014265228721347686 at:0.013857211504087178 he:0.013733215789660087 were:0.012396679125422956 I:0.012347944480187516 for:0.012197989992860347 :0.4037082772071174 +of:0.09129790931378902 the:0.07369883040827747 and:0.047842263382354346 in:0.04189055351593407 to:0.04045875475680249 a:0.03542341257202578 be:0.02020462051672066 for:0.01979292654746225 was:0.01760256398103379 at:0.017380150555488715 is:0.014984483003968216 with:0.014047653760730413 by:0.01374644383819499 :0.012670486581795598 In:0.01200961464556976 or:0.011563835749786333 from:0.011391516893522809 are:0.011273104484969465 that:0.010755276030689069 :0.4809655994608848 +and:0.07359963406644195 be:0.052667135004264946 to:0.04483536256874564 of:0.043448293679263235 the:0.03579172892628988 in:0.028005289969665195 was:0.026700397492138477 is:0.024892551934152005 re-:0.024162182625676702 he:0.024086629517294657 are:0.02098604388819216 from:0.020307931541148256 a:0.018606881911690538 or:0.018077853608073062 for:0.017195224169077532 been:0.01615904189338184 I:0.015254891559368164 :0.015184018660626356 which:0.015016145996292442 :0.464022760988217 +his:0.2810975599076093 her:0.1608863987184233 their:0.11666433092700094 my:0.054437773060942635 of:0.04843534354962163 the:0.043579308867328304 our:0.03164004009100636 own:0.02597454833668282 your:0.021229386335110876 in:0.019335840829360428 bis:0.015082638215413785 its:0.014644893553878996 and:0.014387691550061565 this:0.010010548643477855 a:0.009445231386720182 same:0.006999505384105299 two:0.006192557976907617 or:0.005653501698391468 said:0.005532279870362302 :0.10777062109759436 +and:0.08995317707915026 to:0.06844710404109794 of:0.04605142056172993 the:0.04074574508561307 which:0.02479116931334353 that:0.023764822140213245 re-:0.020841117231308055 in:0.020803825395358622 for:0.020278423301550053 :0.018417753428486977 not:0.016860793136637672 con-:0.016444405871234195 is:0.014386481772210856 or:0.014080680914153714 be-:0.01352268143271276 I:0.01317002660943805 was:0.011429878269381662 dis-:0.011196807025842847 he:0.01113106290024311 :0.5026826244902934 +the:0.14097905379068107 of:0.07331087503882922 and:0.07181330996280533 a:0.05976433406615042 to:0.054517608548006975 be:0.027144583808848956 was:0.021670096559335054 or:0.017850176640821478 is:0.015691986615405103 in:0.01537689140487654 are:0.013527554375639277 :0.013345386361944066 at:0.012159230680710242 been:0.012083769908731407 for:0.012017580091645849 his:0.01156881653886233 were:0.010304989923631205 their:0.009881712923853423 tho:0.009488640365474152 :0.3965034023937479 +the:0.46781095202727296 a:0.18667416052130523 The:0.05598520087076974 to:0.04597536996770408 and:0.028967869306269003 tho:0.02066316725745033 no:0.020552257860355173 of:0.014425907229999318 tbe:0.009763415857695383 by:0.007816026854010207 or:0.0077285297934311485 A:0.0073849150149271365 may:0.00659768232341513 in:0.005891735380878935 would:0.005569558956246603 I:0.005423731878870422 any:0.0052580296220555356 will:0.004798286723479612 with:0.004360893012836248 :0.0873523095410278 +the:0.159890080563112 of:0.07260577183014696 and:0.07056703450651167 a:0.051183996035616096 be:0.04556344667147533 to:0.04360947188731829 was:0.030239143894541076 is:0.028126644658302613 in:0.023770993366073218 been:0.01952497607468512 are:0.018344471578495197 not:0.018134353877981846 or:0.017943736187362763 their:0.015151352392653146 he:0.01368748923814366 for:0.012843514932476941 were:0.012575997485245167 his:0.012059906401579779 so:0.011050433678135466 :0.3221271847401437 +of:0.25637959754746315 in:0.10750738857973866 to:0.09355893281665532 and:0.06089261865360942 that:0.058582996769939936 for:0.04291560713797276 by:0.036051286047646555 with:0.034528463899443196 from:0.029721877843479832 at:0.02865531974386699 In:0.025141414417790088 on:0.021884875231107593 as:0.020503466594597945 all:0.01665982805529625 under:0.016056420833145204 upon:0.014765189370672113 is:0.010881528260509725 through:0.00856567516894167 into:0.008326759503726773 :0.1074207535243968 +of:0.21866625461729342 for:0.1301811161354542 to:0.11424936337112887 in:0.08029362593315086 with:0.07099447152018239 and:0.06553037147634863 on:0.05069217578376816 by:0.03459791818189493 that:0.028690254417813945 upon:0.02417083154881023 from:0.02120071635966363 as:0.01648812644324348 at:0.013932909789167084 all:0.012555616781688603 In:0.01202046291192108 up:0.011665250066399629 have:0.009868992978059161 make:0.009608853294609854 or:0.008788512436993546 :0.06480417595240834 +to:0.43556866871086414 will:0.181835654487617 would:0.0427706913941452 can:0.03924637771228514 and:0.035943054024952535 may:0.030168447404461295 not:0.029616723926515088 could:0.024878554377597274 shall:0.019135358713088402 should:0.017088412772116836 must:0.01093076722015383 they:0.009458116764792114 cannot:0.007409590445919652 might:0.0066147202730407985 To:0.006482599051870087 I:0.00647600590372631 we:0.0059451460897209174 who:0.00559410326703547 now:0.004311414293527578 :0.07952559316657037 +in:0.2577074380708777 of:0.09296880691725413 to:0.07347789159286959 and:0.07297578519278881 In:0.07130247560546005 the:0.05552469293098742 with:0.0407552553259862 without:0.03438617306972977 a:0.031575756382268456 will:0.029394294437250147 not:0.01970028579844311 is:0.018344403581501693 I:0.017942039264267937 was:0.015658362037541732 would:0.014474541481678888 for:0.013489562059806247 great:0.011905294118548043 that:0.010980378560945215 no:0.01047570733201298 :0.10596085623978185 +It:0.33711214537949613 it:0.23110792012959153 and:0.053310973549081514 which:0.04826289211280527 he:0.035222473822426104 as:0.02639169773651957 He:0.015031027424434816 who:0.011132306760074578 that:0.01027315443781744 time:0.009669424146924557 she:0.008537331412427941 there:0.008335050126094834 I:0.007990020233630999 what:0.0070864527050846305 but:0.006258097659923925 they:0.00592595416539879 There:0.00523784271930136 She:0.004351124311738248 we:0.003366819446177353 :0.16439729172105044 +of:0.3391357681362153 the:0.19051392200695988 in:0.07371755313093088 for:0.051181842162540646 with:0.04121707870074849 to:0.041129752214369805 and:0.03323710160338183 by:0.021061975679053036 a:0.018764562544675824 that:0.01544002300031947 on:0.012610167225117886 from:0.011491717096961231 tho:0.009965028188308645 no:0.009964339344964676 into:0.009963035116420054 their:0.00984050138935013 this:0.009315786406602836 In:0.00828899263727269 as:0.008047819850731545 :0.08411303356507513 +the:0.45292863754979135 a:0.24449611258202386 The:0.1474088312277139 tho:0.027300212980046153 A:0.0180450801882588 and:0.01395206780622281 of:0.011828799203306812 tbe:0.009803599510329844 his:0.006044616867451553 Tho:0.004791387781825963 her:0.0035591958313142434 that:0.003522597238557975 this:0.0033537261189699233 some:0.003253791651766077 their:0.0031763996314001243 first:0.003061463510604731 at:0.0027836942154289197 with:0.002665076527552896 or:0.0026539672230073367 :0.03437074235442676 +a:0.298564318052812 of:0.11165415225296363 the:0.08371340539074984 to:0.07212982625367757 and:0.07202784314454314 in:0.0424222668537589 for:0.03506699297411577 or:0.028369232748486958 his:0.02717778189764656 with:0.022552640199790114 this:0.01842306204554456 In:0.018213330012680832 any:0.01803369460452543 by:0.01605526416430383 no:0.01438548819238124 from:0.014180432891414105 at:0.014074784843341482 that:0.01110699373777132 their:0.010868071478057842 :0.06998041826143483 +of:0.09129790931378902 the:0.07369883040827747 and:0.047842263382354346 in:0.04189055351593407 to:0.04045875475680249 a:0.03542341257202578 be:0.02020462051672066 for:0.01979292654746225 was:0.01760256398103379 at:0.017380150555488715 is:0.014984483003968216 with:0.014047653760730413 by:0.01374644383819499 :0.012670486581795598 In:0.01200961464556976 or:0.011563835749786333 from:0.011391516893522809 are:0.011273104484969465 that:0.010755276030689069 :0.4809655994608848 +it:0.24821867953307553 It:0.12491417828142069 there:0.069306522105283 he:0.059799171357782996 that:0.05448913452171614 they:0.04308045581579138 which:0.03975166646880763 and:0.028391784481365753 I:0.017785057885554047 what:0.015014723986643873 who:0.014813518986538871 she:0.012277284734011025 There:0.012075841823057449 This:0.011660321731650861 as:0.011471599182449319 this:0.010417679117785841 work:0.008583289274340197 He:0.00780328791147001 we:0.007024892215396919 :0.20212091058585846 +it:0.16558174341344517 It:0.07846395477223078 there:0.068926656508768 they:0.05354081626270712 that:0.04867727640265432 which:0.04505196720686623 he:0.0439264118286433 and:0.04292049757801078 I:0.03259451855648658 we:0.022714282810773655 you:0.017312799630666443 There:0.014753102337007622 she:0.012061733113950288 who:0.011822775785340672 what:0.010328641715673107 law:0.009760151038589949 States:0.009676543902658263 man:0.009568256342280966 men:0.009031003643309513 :0.29228686714993724 +is:0.18544412347601633 was:0.12286430868103705 had:0.09835942577974542 have:0.09528568314394231 and:0.049597669305010035 do:0.03844077845084011 has:0.035834318685361854 Is:0.03518058689291746 that:0.0347842596335527 say:0.03207007729665449 be:0.03147139177076011 with:0.025953215966702754 knew:0.02427478501460278 for:0.022537381733059702 get:0.019854100050374784 to:0.018191103148172127 see:0.017939047306082017 but:0.016952191030423752 are:0.016844538451003963 :0.07712101418374025 +be:0.2158898275585466 is:0.10571365718558709 was:0.07352647562494827 become:0.05857285514332011 amount:0.04593192430131815 are:0.04564357315833267 been:0.04263657870544547 in:0.03341360475056772 now:0.031082335403916313 of:0.030232158668805627 not:0.022201658383525003 were:0.02139475057248856 interest:0.02084321584791251 by:0.020616318101702107 and:0.019511187524017187 being:0.016747934448361267 Is:0.016639291181387243 taxes:0.016467853675958193 became:0.01618059589147758 :0.14575420387238236 +of:0.12466965442663891 the:0.10860562845999668 in:0.06063152217372756 and:0.052634214495784225 to:0.051643627598669244 a:0.04777999797521037 for:0.029336747514323216 at:0.02558180194887208 or:0.02038879274849691 that:0.018639355762407498 said:0.017379469567624768 with:0.016825994126767628 on:0.016002340335253603 from:0.015525973243305952 In:0.015309259964141736 by:0.014505591793328151 which:0.014476177569708542 was:0.013968483082796643 is:0.013592827803094756 :0.3215025394098515 +the:0.13987575842963337 of:0.11852346070415384 and:0.0963072448019898 in:0.06789983058743904 a:0.03969157867574745 was:0.034859941870910544 is:0.027535153340949064 are:0.023837637965263416 be:0.022833671015685297 for:0.02238714373648263 by:0.021037585439734795 to:0.01742709704260978 In:0.01710682232197593 been:0.01680336484265405 from:0.016507157063768207 were:0.01546416326081484 or:0.014614228560089978 not:0.01340921522630585 as:0.010338408172987403 :0.26254053694080476 +and:0.07257086539309966 of:0.06557806058169663 to:0.04858676521533203 I:0.045720006347122914 the:0.035743053024352184 that:0.027675516871189614 a:0.027588593591694088 in:0.02618969204361425 for:0.01562706288218735 his:0.013404256974648606 wi:0.011903531518357 -:0.01113082106021041 he:0.01074210020571559 which:0.01024943963405813 with:0.00968837593900658 or:0.009086478095125373 :0.008497538576982731 by:0.0074924433756027075 .:0.007447743095990768 :0.5340776555740133 +and:0.1264725465753649 was:0.12167013927734675 be:0.10654902198093341 he:0.0812865662690655 been:0.04955222397923421 is:0.04536617981498246 were:0.029142281989135772 I:0.02896224682884255 have:0.026308725897531943 had:0.025586766089699068 has:0.02270866025007632 are:0.022440136233021307 He:0.018381076702258935 being:0.017737872359479098 who:0.016474699135931574 then:0.01612201457531277 they:0.01382041455132679 which:0.01064230631080841 not:0.010147143030568226 :0.20962897814908 +and:0.03868242960999506 as:0.031124813427855922 went:0.02352509775927722 him:0.02196555539050794 them:0.018760608639018784 up:0.017985449426794205 is:0.017894175620344187 go:0.017174904667157563 able:0.016756848979943888 going:0.014481672239490295 it:0.014128375989346808 was:0.013277058274565138 time:0.013249953793837373 not:0.012469887553778763 began:0.012465717758716884 way:0.012105610030480113 back:0.012090864562211581 right:0.011941707822828511 amounted:0.011564315359310868 :0.667354953094539 +the:0.579884453337975 of:0.07395748025574767 and:0.033549455140386354 The:0.03001562999969727 by:0.023955985651464482 tho:0.022560368833780875 Vice:0.021647433792562346 to:0.01803646671923159 tbe:0.011451492073422718 at:0.007959921208336303 our:0.007552310654459814 a:0.007117869912881946 in:0.006837365461886928 :0.005496456656424152 with:0.005163531062792426 said:0.005100241148735362 his:0.0050688102019243566 on:0.004815008822088314 from:0.004442465853496831 :0.1243872532127052 +the:0.47181074023675096 of:0.11460993103040862 a:0.08499087671167106 civil:0.06062403218384812 The:0.04437211361662589 tho:0.02894042963194876 this:0.026346928621554886 Civil:0.017470176121690086 his:0.01569162289323216 to:0.013556674890720852 that:0.011516346463837762 tbe:0.009480184752688997 in:0.009162313106434613 by:0.008955013641724135 and:0.008587347891869523 for:0.008108532061608055 no:0.007790087061762678 great:0.007229079078724683 its:0.006332239131961291 :0.043425330870936855 +made:0.06728876892647577 and:0.048575355163033504 shown:0.029470966808751796 out:0.02494246433791068 him:0.023837739418060548 up:0.022874253074513302 ed:0.020858625299424272 done:0.02052188142520644 or:0.02034023624836671 it:0.018415398657206133 taken:0.015901821864140197 given:0.015427252686714507 them:0.015391751766127 one:0.014189292199814626 not:0.013967982125241397 but:0.013753276266042168 accompanied:0.01363564526185512 was:0.013453328591943422 held:0.01342695493643597 :0.5727270049427365 +and:0.3821439319410179 the:0.05568733761320363 was:0.045183166063428065 I:0.03456989524321511 is:0.03408291799584165 are:0.0340714269151565 of:0.034055653854067405 or:0.033187786103199876 not:0.024251531750633055 a:0.02352003905834273 he:0.023135276138300208 be:0.022666014954003326 have:0.02233398483615225 had:0.020628050442822447 has:0.01868801439644669 were:0.017823357160351674 many:0.01732994141388487 his:0.015320658018954618 her:0.014599928509501984 :0.125721087591476 +thence:0.08440572660243183 came:0.05351935885340289 and:0.05340912309687021 went:0.05035262029591258 get:0.048139120221655875 go:0.04540892068212755 going:0.03046661991348894 all:0.027528523501115086 walked:0.026181413253913124 or:0.0252887637710782 was:0.024113391095860262 east:0.018632078025162747 come:0.018527138903208906 got:0.01832250970636546 carried:0.01747398971206349 running:0.016088746003167346 run:0.016055065579202388 walk:0.014527510686891714 getting:0.014250604707656265 :0.3963087753884251 +and:0.16568998817951927 of:0.08067878331546129 fact:0.06689000998055468 in:0.044797969760395455 is:0.02569120049086165 to:0.02417058341604023 for:0.023734160374184736 all:0.022539162609182487 say:0.022030684822330702 one:0.021193462728962546 but:0.018494180006403144 said:0.017500989959681353 on:0.01718415757681168 show:0.013969924727818083 believe:0.013601156892451671 from:0.013429080383028279 was:0.01305907324104012 In:0.012583684940989038 know:0.012296779383021626 :0.36946496721126193 +the:0.10831725488004616 of:0.061124883191113 and:0.05757614642981387 to:0.04066949684560513 be:0.03430959979897281 a:0.030690915210782033 was:0.022721457871000158 their:0.01934542376620867 in:0.017586291596562182 his:0.01738756937238975 for:0.01710295403262639 or:0.01643853031234507 at:0.016428092535065997 is:0.015223858460032545 been:0.013932505102561646 were:0.012564856776871462 so:0.011868871419566883 that:0.01143517697390775 as:0.011230460867332145 :0.4630456545571964 +of:0.09129790931378902 the:0.07369883040827747 and:0.047842263382354346 in:0.04189055351593407 to:0.04045875475680249 a:0.03542341257202578 be:0.02020462051672066 for:0.01979292654746225 was:0.01760256398103379 at:0.017380150555488715 is:0.014984483003968216 with:0.014047653760730413 by:0.01374644383819499 :0.012670486581795598 In:0.01200961464556976 or:0.011563835749786333 from:0.011391516893522809 are:0.011273104484969465 that:0.010755276030689069 :0.4809655994608848 +is:0.18947870676042586 was:0.13060213521213754 and:0.10563712979803622 be:0.08474766736788684 are:0.0796070139981335 were:0.05002096070518647 been:0.0319549012185108 not:0.029347606622637534 Is:0.025356439745748537 it:0.02323625664183911 but:0.014449263426981069 as:0.014416139470676869 that:0.013747528238992111 so:0.013477660926839174 much:0.0124798978420424 being:0.011120897596535229 or:0.010871230569989298 if:0.010493697818054695 well:0.00931464150848436 :0.13864022453086242 +the:0.3093869360641963 of:0.14277240750191833 and:0.076746232675722 The:0.07567975469411231 for:0.020960047724698137 that:0.020617435951270902 which:0.01784513474600094 tho:0.015364554020993518 Mr.:0.014387242054347334 by:0.011984084066146542 to:0.01154628258203523 said:0.010386405028185495 as:0.010383092821525868 at:0.010048488613688806 Assistant:0.009974371325468814 these:0.00908053207274479 it:0.00879650903761212 It:0.008123217994958081 tbe:0.0071657454779047265 :0.20775152554646972 +the:0.16252600296301706 of:0.09943636141121946 a:0.06972061183976204 to:0.05786006055271911 and:0.051901321414837935 be:0.037439623662398995 in:0.027926045399370266 is:0.026607440308126628 not:0.024117671416066706 was:0.023783954316327426 for:0.02116560723292378 or:0.019279992189698437 their:0.01878366798909115 his:0.0183649522149638 been:0.016598750070275194 are:0.014734104368434184 at:0.014726030078833321 no:0.01294859103405944 with:0.012367286558919744 :0.2687119249789553 +it:0.06673263262840655 that:0.06332835927174843 and:0.05539521429091338 which:0.052888812435338786 he:0.05092989776553072 It:0.0361067414204261 who:0.034961869471830734 I:0.021536904040048033 she:0.011825753401972693 they:0.011364299673853464 1:0.010930462883358432 as:0.010229524171507314 to:0.009506262299913776 this:0.00944040897867364 time:0.009358005692003516 He:0.009110194169687703 :0.008082537412373159 what:0.00778447326845434 or:0.007511105980263885 :0.5119765407436953 +and:0.24748192554010096 that:0.05305492318176777 time:0.05210792392744213 but:0.04075057100535577 was:0.018699552190476306 except:0.01715237658762911 day:0.015846103089744473 and,:0.015099281650612275 or:0.014010106555299228 is:0.013645755443478218 But:0.013611851984351199 as:0.013441399039058218 which,:0.013302495203679151 ago,:0.011819472502670592 it:0.01124975321142971 come:0.010572681270869364 him:0.01044155190905292 And:0.010167885456898909 all:0.010156953165740928 :0.4063874370843428 +the:0.2749188148042993 a:0.1726947232702777 of:0.08831678887660727 and:0.046146540146576626 in:0.032588710973292585 with:0.030493450803732655 his:0.023330107524537964 to:0.02245439622290138 this:0.018767952841482274 dark:0.018224211947512087 tho:0.015955484281847655 its:0.015470626502660744 their:0.015258417893611374 for:0.015252902787023303 our:0.012127655342647526 pale:0.011905034404493439 is:0.011426292877057142 by:0.008816737737590553 tbe:0.008730229600918914 :0.15612092116092954 +the:0.12241490693524094 his:0.1209826522957175 their:0.07690840355498106 of:0.07547585210245812 no:0.06116636960160499 and:0.054508116112504286 in:0.05070742153137858 two:0.050652585329719155 her:0.03441040292135661 all:0.02787242671670309 or:0.026941911779635726 a:0.026695363237112357 my:0.02388995890779427 little:0.02240948040065604 its:0.02139838691782592 with:0.020329532388570364 was:0.01845866852262549 by:0.017414066088871548 your:0.017370288232645237 :0.1289932064225987 +the:0.23051143360645962 a:0.11726320491427615 to:0.07024221192557424 this:0.05917177306931958 one:0.03760877076210833 and:0.029703965085677596 other:0.02475948781395286 of:0.023692777059412556 any:0.022827880885448102 The:0.022454372790541417 next:0.021267939580442426 two:0.01926330204951171 tho:0.01869506286514029 that:0.018492578121389235 first:0.015824076185383784 said:0.014809246752666243 every:0.014554900734708779 present:0.01178384378528093 school:0.011682847712692014 :0.21439032430001412 +the:0.36826095953656385 a:0.11287311139658074 of:0.06574507845912893 and:0.049521818323311984 The:0.046363342793778725 an:0.021545749313260445 tho:0.019569507365875913 to:0.018764405732889598 with:0.014918669194766252 his:0.011788229581674437 in:0.009640081138511888 their:0.009631833553336985 that:0.009334307301876208 tbe:0.007841411881399897 our:0.007506979154569741 by:0.006891941849422496 or:0.0066350752979173 for:0.0062580419338269236 most:0.006120378018918759 :0.19978907817238892 +the:0.4191880590416696 a:0.1123617850060482 of:0.0658994651672854 to:0.05961700157781688 The:0.03696412260668119 tho:0.024204850573912303 and:0.022409452411098655 for:0.01965052022097095 no:0.013463943244998323 their:0.0134292990155377 our:0.012418287301789925 in:0.011794685976292985 tbe:0.011117511689230785 his:0.011064336160904445 with:0.010875006628811449 by:0.009027345345679111 this:0.008572434298681453 any:0.008094880596877551 its:0.007315804297476136 :0.1215312088382369 +to:0.31019601080253456 will:0.13793678134185958 would:0.07774183426288846 may:0.07078528459128908 should:0.05127128910568003 shall:0.04901700088221223 not:0.04594340671139167 must:0.03257846389794495 can:0.03230794200897745 could:0.02086203652199685 cannot:0.017984019065961077 and:0.017474170306863105 might:0.013535476571922157 it:0.006941357203389574 never:0.005186754057084183 that:0.004968373522249409 also:0.0034185027334872305 only:0.0032209125075107173 soon:0.003102154139878731 :0.09452822976487903 +and:0.119752715029214 the:0.11392811172851007 to:0.07712943397531233 of:0.06986816688199236 was:0.03797530857201547 is:0.023598055799871138 be:0.020182420294976786 will:0.01979803704009079 are:0.018421146465179748 for:0.016526402863847253 not:0.015959436313557375 which:0.015144923712950072 at:0.014637043567539545 were:0.014435667740604598 that:0.013891095645078696 in:0.012879816295397977 or:0.012854400376748126 he:0.012611838844885348 by:0.012504083550560135 :0.3569018953016682 +in:0.22900391893110705 of:0.1560200423692899 to:0.12653609553962697 and:0.06237729541601228 on:0.06179416147000139 In:0.0373233640985728 at:0.03623326531828028 with:0.03494468645580266 for:0.03136570080931182 from:0.025317805354045122 up:0.019745735972345003 that:0.018446550408395986 by:0.0174010412866147 upon:0.013593507695046705 over:0.010555411181148253 all:0.010514237265552727 about:0.010355572923774748 into:0.010184932424812136 was:0.009483469533607118 :0.07780320554665235 +and:0.07558940021936399 recorded:0.030196237618668006 was:0.028917161578042846 made:0.027969746247669736 that:0.027730098932509103 o'clock:0.025060522019555328 up:0.023026552239529506 is:0.020398277211376416 found:0.02003101797656537 placed:0.017482208134164214 out:0.016937164562539058 place:0.016819459500107596 interest:0.016629321966808677 him:0.016002796715253755 situated:0.01573420479581609 it:0.015128305982428461 them:0.014715943643665314 part:0.014646613000297721 interested:0.014450471929902294 :0.5615344957257364 +it:0.2646128095865184 It:0.15524593965227929 which:0.08028917471118682 and:0.04650739750719056 that:0.04245208361509831 he:0.03565694535740801 there:0.03287724377317825 who:0.02489044571836363 as:0.015188153225790733 This:0.011920719895284489 what:0.011135218779526246 this:0.009417514216445261 work:0.00870629104986868 He:0.008594491139239498 she:0.007953558379156542 but:0.007150533934937742 country:0.007016674877238812 time:0.006254089365708207 There:0.006120539833059538 :0.217010175382521 +one:0.1028303141280697 part:0.05963429477052991 out:0.04766456937681193 some:0.031418679026461914 members:0.030764490253327767 side:0.029940657362655835 portion:0.022063658796890564 office:0.020457735219956013 member:0.019726706386316174 end:0.019666887540649894 tion:0.018667441728710307 parts:0.016814747270460957 people:0.014112771422418794 all:0.014072739582212475 any:0.013183573287639892 One:0.013083578354183906 that:0.013024335602903442 account:0.012482348155001894 many:0.012077825070275192 :0.48731264666452345 +of:0.09129790931378902 the:0.07369883040827747 and:0.047842263382354346 in:0.04189055351593407 to:0.04045875475680249 a:0.03542341257202578 be:0.02020462051672066 for:0.01979292654746225 was:0.01760256398103379 at:0.017380150555488715 is:0.014984483003968216 with:0.014047653760730413 by:0.01374644383819499 :0.012670486581795598 In:0.01200961464556976 or:0.011563835749786333 from:0.011391516893522809 are:0.011273104484969465 that:0.010755276030689069 :0.4809655994608848 +to:0.10894528412955108 the:0.08561462660580901 of:0.07977062600169442 and:0.07857502322500812 in:0.028422775158279557 a:0.02235258730919201 be:0.01919834694741614 not:0.01682305194261986 or:0.016104268240740613 Mr.:0.01606973373434509 by:0.015061438144017577 at:0.015017677590926315 was:0.014370340549450675 is:0.014270381466671674 .:0.01288181477378722 that:0.012419644011461553 he:0.011638468969621743 :0.011452864493089847 have:0.011071282212912193 :0.4089397644934053 +to:0.5402635927232174 will:0.07641868918111154 and:0.07074079433621144 would:0.03800787139028879 in:0.021467878189179203 a:0.0178158163302268 not:0.01761231872565843 the:0.016200157897969022 of:0.015129361430886723 can:0.014323953548299262 or:0.013793968934245351 should:0.01357636567678235 shall:0.010247034664408562 could:0.009057747975568296 may:0.006904861785341166 that:0.005953260757484349 their:0.005899559294636755 his:0.005841271962933849 police:0.005489439489807531 :0.09425605570574311 +and:0.15242291423618157 was:0.09100979378108076 have:0.08729903031621242 had:0.08615921435298288 has:0.07785546141364479 is:0.06578713937290538 I:0.05183786950715636 he:0.03997130889354377 but:0.038129601897295355 will:0.02588102255894818 are:0.025489510816170326 that:0.022574911530091814 they:0.02103390955509999 be:0.02006645029041799 were:0.020061127662333384 can:0.01780116793623808 who:0.01658956850874923 which:0.016253861017793046 not:0.01569721024787456 :0.10707892610528011 +the:0.7413776044248297 a:0.059873346305071386 tho:0.03203359009442021 The:0.031073104367781552 and:0.01325050357885526 great:0.010303226968193998 tbe:0.009465288013939727 no:0.009235203113971415 an:0.006447902582222498 any:0.005515348829464888 his:0.00458224124386832 whole:0.00440571124773748 or:0.0037032418321099295 of:0.003635230146377089 all:0.0032022195434029256 their:0.002561597327564432 by:0.0024597196642705383 very:0.0023735249260017598 good:0.0022426941595299946 :0.0512587016303869 +of:0.19041864304295014 in:0.1789296700404787 to:0.09451135892912062 for:0.07397892633654561 In:0.06159026899381677 and:0.058342747100330425 from:0.027877496240050124 with:0.02756630941720454 by:0.01642168934060469 on:0.016372879377018944 or:0.013373676774975914 about:0.011618979869289189 upon:0.010300710006707322 is:0.009662273010700618 that:0.009275894979626876 at:0.00809575377163474 than:0.007748887014559888 as:0.007581674513734372 made:0.0060652854657356845 :0.16926687577491487 +a:0.6795302429921013 the:0.07564137919497847 one:0.03451908695248241 A:0.027048075752237135 every:0.02121407706987023 and:0.013300395146224199 first:0.011614364616792902 large:0.01111569952697956 The:0.009350984741053925 One:0.007508519495967086 1:0.0062365934559450295 another:0.005767321051162164 any:0.005563344046933204 tho:0.005477206725692187 each:0.005244531324561158 last:0.00442952391996816 long:0.004425474771581705 this:0.004324556269625219 small:0.0038450273881391185 :0.0628435955577048 +to:0.5471371308627964 in:0.05920162053223363 not:0.05247434061133607 the:0.034372706393313086 and:0.03349703034414089 his:0.03189992412047929 had:0.02557559977433021 In:0.02167359761652557 will:0.019160738119261854 dis-:0.017023063624769574 of:0.015146582075699855 a:0.014563702412638815 have:0.014499965752549684 would:0.01263435269402537 who:0.012087424403001088 took:0.011900009832344391 her:0.009909773689868668 take:0.009782303045340465 my:0.009446656123511777 :0.04701347797183339 +have:0.18812761512205495 and:0.15154854625859304 has:0.10204890150631876 had:0.09767402488321285 I:0.04510768604136793 they:0.03806998380352209 is:0.037830918370895215 he:0.03663644469143546 be:0.027088504201986954 not:0.02628462499853481 who:0.02511203619228084 we:0.02438638575065597 which:0.02138338792361655 ever:0.020847494835052945 was:0.02009603504710753 also:0.01820350482911766 having:0.017055389279286324 never:0.014864014080310614 that:0.014849610379460008 :0.07178489180518947 +the:0.5853868629427947 a:0.09875796630376135 The:0.04348408879943114 and:0.028914089196935104 tho:0.028455792572305013 of:0.027867554464603976 for:0.024401839385064353 tbe:0.011081243278127902 as:0.010775648849020648 by:0.010667648060685351 in:0.010443403844135163 is:0.010408880959058876 was:0.009416185471403623 are:0.0071210770067707775 his:0.007003514449886706 this:0.006437487127646192 to:0.00560107741038922 that:0.005554202051310459 no:0.005418576481090054 :0.06180286134557941 +the:0.2733693058322418 his:0.2484982233694433 my:0.08561761090867075 her:0.06776691809236358 their:0.032148476518458785 a:0.02865797051419942 of:0.028255390504031287 its:0.019962289777705696 our:0.015944935257939944 tho:0.015364256263930167 bis:0.014208564169263794 your:0.013174181225445884 and:0.011454893799808812 in:0.007614059128715712 tbe:0.007076035392525408 The:0.006413754059285297 to:0.005682734467216272 own:0.005324213354925377 good:0.004895453452479813 :0.10757073391134896 +time:0.01136030092193695 up:0.011171377643528466 ;:0.008778002449932305 day:0.007481743897328553 house:0.00662019133920213 him:0.006534851119582715 men:0.006418474386948719 :0.006189297486211918 made:0.005977577739023102 ,:0.005643654055081084 them:0.005585823988870091 land:0.005483623496478083 man:0.005421432896521921 it:0.00541951996014759 night:0.005139735207671839 work:0.005022591669900802 life:0.004996597104485682 due:0.004854455375965561 and:0.0048466470082662114 :0.8760541022529162 +:0.03596426897172232 them.:0.016549878974647794 it.:0.016547085952907815 time.:0.008112114132531515 him.:0.006419707645179374 as:0.006120291453209455 day.:0.005431169270329236 tion.:0.0051690025421686535 country.:0.005154532274737036 people.:0.0050772372180751145 county.:0.005017145524021707 her.:0.0049370712065342935 year.:0.004856258682569834 years.:0.0047983953688620525 city.:0.00459184981314914 ago.:0.004407225394210742 and:0.004336734000010456 out.:0.003998331805603293 States.:0.00391135749925285 :0.8476003422702773 +they:0.15520447421570274 we:0.08875093771136754 who:0.06223777028709662 there:0.06020168795233232 you:0.05667944326853775 which:0.046698667428570394 There:0.042730365204912156 They:0.041390942595517025 that:0.02991733338842574 and:0.029607755097871426 men:0.027257889446429238 We:0.026298155960545046 people:0.016275811350882824 You:0.012489938719250703 them:0.00970350563180523 I:0.006647983915988138 it:0.005621628994667011 here:0.004651643515366593 children:0.004580362941195968 :0.27205370237353554 +so:0.16298796072006935 is:0.10510841734063961 not:0.09051122551038318 as:0.06378686059572906 are:0.05839196840299451 and:0.054785448820109 was:0.05040214153828407 very:0.05035164308780171 a:0.040416068347315114 be:0.03915367467048017 thus:0.03599052951671412 will:0.02465903420133835 So:0.024548010110790087 more:0.022796035216071535 Is:0.020703969938616406 would:0.01955489978597044 too:0.017450908788551052 were:0.017430482690652453 been:0.017169734288729102 :0.08280098642876065 +D:0.12455772724110609 S:0.05841237802004064 A:0.05725367073596836 C:0.056418474254474556 J:0.051771793743001185 W:0.047570968098763725 M:0.046372117845274785 E:0.04486634494870834 F:0.03670792928328423 H:0.03509908761814985 B:0.03409795305529157 8:0.028550234491339328 L:0.025545066276636275 2:0.02232482223162049 P:0.021726733948604245 T:0.02112608091610135 .:0.02023780205522178 m:0.019905586974364533 R:0.01732615238040039 :0.2291290758816483 +the:0.1946261410903764 any:0.19235837280616727 a:0.1774437626959832 of:0.051704914419197334 no:0.0450443703664412 other:0.044704039002151794 one:0.031311632792325655 some:0.029633515928951963 Any:0.02747290390112619 such:0.02494985335023823 every:0.02428244141953838 and:0.02086636236548498 The:0.019572679570957274 in:0.017093758978960417 each:0.012582106292360623 or:0.01144141505575311 for:0.010962120328869047 tho:0.010809550564221204 No:0.008408382046223307 :0.043731677024672455 +and:0.09806168661688888 is:0.06558830343119212 of:0.05991009103957565 was:0.05454932810582073 it:0.053182606776689574 are:0.04818293030584871 now:0.037492485020202235 as:0.02593899857745687 there:0.025076858625348357 not:0.022357571479617883 were:0.022247816801124767 after:0.019827272240764967 time:0.018225495768563523 same:0.0165425902404064 that:0.0154401033134853 for:0.014018168067024292 the:0.01384266389030006 It:0.013523424386550603 but:0.012897595219831302 :0.36209401009330777 +to:0.5251161738742636 will:0.07540344129227106 would:0.05965818021644569 and:0.05699613012732569 shall:0.03357446550708074 not:0.029772548116329473 may:0.02825785057236084 should:0.02251598893795804 must:0.01605138837211395 they:0.015739608929887832 can:0.014402867860445291 or:0.012454703765406095 we:0.010081975106561022 could:0.00957425384470344 might:0.008880166901487978 cannot:0.00788016426098926 you:0.006838513118694727 that:0.0065445313771730195 I:0.004331772707053228 :0.054925275111449116 +most:0.1908422234895052 is:0.10040898218827062 more:0.0964841366066596 and:0.0665921324726378 was:0.0638148428870639 the:0.06350157194895432 be:0.05846515584753843 an:0.05644471168656076 very:0.056290465986583944 so:0.03486666137757963 are:0.03045871286165156 as:0.02911339791680975 were:0.02123914631870905 less:0.017921171479244 of:0.015205415668626631 been:0.014937568405206656 or:0.012928303361671644 Is:0.01169584109333518 a:0.010597071121504353 :0.04719248728188702 +the:0.11627723270845242 of:0.07650166835130517 and:0.0487729519691777 be:0.04588451005485056 to:0.035208515685857186 his:0.02793124103248743 was:0.027676051578039235 re-:0.02467096519594529 their:0.023562536365494244 is:0.02284934633470482 in:0.01984075335721388 for:0.01839296146345337 or:0.016665858292998645 been:0.016219485090647464 much:0.016043116669998456 are:0.015988123327245536 at:0.014834128671766832 were:0.014504816623048762 he:0.014328008537533465 :0.4028477286897796 +the:0.2893419811776111 of:0.14440016295536454 and:0.06050651918091993 The:0.04920713391662189 tho:0.02111784907566699 in:0.021051551500730317 said:0.018635714033343322 by:0.016875739108469217 to:0.015520205788440117 with:0.012831581583255511 all:0.012539270341627707 that:0.012223281862157667 or:0.012187897994050857 our:0.011531047172836912 for:0.01136245838907984 tbe:0.010366194919713271 their:0.007969786509813928 other:0.007528731687970181 American:0.007312953687053149 :0.25648993911527357 +a:0.22188081834050363 the:0.17074737914117424 of:0.0565302773698082 this:0.05448968888983048 to:0.04820384199133269 and:0.039311463006324245 that:0.03156547192944361 one:0.029655911768432672 on:0.029251736802787393 any:0.025738015897771083 This:0.021043855882629078 his:0.017333628007151825 large:0.017084933889274023 or:0.016331329599975783 A:0.015529179171670016 The:0.015340013717901588 One:0.013308932741959522 tho:0.01256652306602314 which:0.01234103581829676 :0.15074596296771003 +the:0.3985920063731098 The:0.08694446342808579 cold:0.08594820040529447 of:0.05490682382295723 tho:0.03226000743228635 our:0.02603058374613071 this:0.02576713483008138 a:0.023870159100645806 warm:0.02315842692432861 hot:0.022027039915635677 and:0.021452785304787364 their:0.017754011224688438 that:0.015914782810693966 his:0.012864314131323629 to:0.012296940841826623 dry:0.01150907067990105 tbe:0.009426563307373813 :0.009037191616620598 these:0.007847029364260114 :0.10139246473996855 +of:0.21719532552651305 by:0.0929705039987173 and:0.07801450592533386 with:0.07558585174281135 to:0.0667782393605999 that:0.05222007781911351 in:0.04830418429508834 as:0.04594270024473994 is:0.030742140846447035 was:0.029980659449128737 for:0.029860752090582334 on:0.029526256224214082 from:0.02043554971573963 have:0.012163791544066636 be:0.011942207019028935 such:0.011589838162956521 had:0.01080800347222242 made:0.010679676918624969 or:0.00987581957664124 :0.11438391606743022 +of:0.27648018695347454 in:0.10721417634278943 to:0.10496936562661126 and:0.06797226039988624 for:0.05728518520295103 with:0.04343439543588456 that:0.03683272672527388 on:0.034110965085871435 by:0.03348433007112781 from:0.024667179376654243 In:0.02004059588893806 upon:0.01747457366373285 as:0.015732548512161784 at:0.01424224812659851 all:0.01018371579624204 or:0.009314898669251774 up:0.007923775786501422 but:0.007006154801704099 made:0.0065859550656412105 :0.10404476246870384 +in:0.4784502266585997 In:0.09420710233433971 of:0.07106909740532881 or:0.04733932831841845 to:0.03645642367964597 at:0.030627165588442508 for:0.028467751994452183 without:0.026130263804393084 by:0.01946425404230238 on:0.018214732705391652 with:0.0178933786355157 from:0.015003843992754028 that:0.012102891745145509 than:0.011838611761688525 make:0.011647254427676185 is:0.0103295062179896 under:0.009326403554279111 and:0.009092039824205376 be:0.008982935873417744 :0.04235678743601371 +of:0.3231004038383573 in:0.1352801144942916 to:0.09165948242854356 by:0.05102298850361991 on:0.04459742989717022 and:0.03932510900803303 that:0.03248756973892989 from:0.030084274628428838 with:0.026923503680458157 for:0.024989178707515294 In:0.023736321276653354 at:0.01462273990105383 as:0.014538880782332063 into:0.011130296452283832 upon:0.010685468936205754 when:0.010245786656818908 all:0.01016459494240706 through:0.008174669795548609 before:0.007208841011232135 :0.08902234532011663 +the:0.12501213529677174 and:0.07155652309953148 of:0.052609940129058716 in:0.028320735107419746 to:0.027352226368332348 that:0.023655582888587063 was:0.022042931093136858 I:0.02117992979569259 be:0.02040334901588246 for:0.01915073747965047 a:0.018186963787182143 is:0.018082597111518887 on:0.015141432607690512 he:0.014740905412035949 his:0.014678343154957307 or:0.014471548948014279 you:0.012428922258617232 dis-:0.012004838166587189 it:0.011271760331748027 :0.456708597947585 +to:0.5284518986981875 not:0.05246438107643859 and:0.05111032754878666 can:0.04567251892553817 could:0.044963303591757924 will:0.03554476407848317 I:0.024525371989216952 they:0.021557010878606307 would:0.019769997994273113 we:0.016947741587772 never:0.016072048540362382 may:0.013768344454033576 cannot:0.013177196979571993 should:0.012946589197553798 you:0.012397961115282893 who:0.008388530097343846 must:0.008278128382375847 ever:0.007260163125762117 or:0.006938628983592053 :0.058765092755061074 +of:0.13745662308700043 for:0.10214800174241058 with:0.07988509054761181 is:0.06384935742639708 to:0.06363007325807028 in:0.053262023285153025 and:0.053039057936491704 as:0.05210920216395249 by:0.04000726064651487 was:0.03205846162952558 make:0.030415227955177516 have:0.02573303348302489 that:0.02253347609582209 such:0.021878713483901985 be:0.020166740346962638 had:0.01969695055937506 on:0.01687912193432505 made:0.01645776580340486 not:0.015914128127746653 :0.1318796904871314 +of:0.5163928430863056 to:0.05203042577110518 in:0.0476016069592454 and:0.03578409963887097 the:0.026515759262105084 for:0.020733547013602742 :0.009913625494555595 from:0.007400030088811106 ot:0.007083111637233627 by:0.006124137650550688 with:0.006070272932043685 In:0.005691554489795317 ol:0.004698580324065011 as:0.004354335625158556 The:0.0038370425654031806 or:0.0038165415147949616 at:0.003480111375585156 .:0.0025598243867457613 :0.002308484855086477 :0.2326040653289359 +of:0.09736409530279068 and:0.0769287312674653 the:0.060052692408114144 to:0.05357040118746639 in:0.04602195377770268 that:0.024936303888974772 for:0.022733405464831304 or:0.02176109061936159 a:0.018458805270357335 as:0.01758523813368167 which:0.016014449920683915 be:0.015186571903943374 said:0.011594586130638667 was:0.010944697125320335 are:0.010787162986985274 In:0.01075877908917561 :0.010640239243595051 so:0.009095160833732857 were:0.009047107160629307 :0.45551852828454975 +that:0.14805600580284187 and:0.10188257333703012 as:0.09689761875658243 when:0.0953744441026542 which:0.0769473910569985 When:0.04361789696078382 if:0.0431662596660715 but:0.03401904054721834 until:0.02330915100105929 what:0.023011891762947684 where:0.0218599145234209 As:0.021271864494420614 before:0.02005259378685663 If:0.01880864154661142 whom:0.017427533282641575 Then:0.00917766987457807 But:0.008889999402767496 So:0.008396480159416644 then:0.007541640770688544 :0.17929138916441037 +well:0.11482583804944232 known:0.09871763831710513 soon:0.0916505083085803 far:0.07244252345830873 and:0.05646760229569708 long:0.033191133685989645 such:0.026114132691679413 just:0.021539382495143138 much:0.018216698075154383 but:0.015820973354116454 it:0.015060478378985437 that:0.012982875435048865 regarded:0.011853385324054824 inasmuch:0.011638912473280656 him:0.010904627694769634 same:0.010576795833003501 Just:0.009621947202407478 them:0.008618852072826538 designated:0.00803461652825095 :0.3507210783261555 +the:0.17919548492233633 to:0.07782262599143486 of:0.07434702251090346 a:0.07270212655367324 and:0.04663845002072524 in:0.03735579048270563 .:0.016783950066314276 at:0.015135309126984992 or:0.01197718558127508 tho:0.011844798443083657 by:0.011158607358916238 an:0.010909294533733519 The:0.010712332375725232 for:0.010708450317791487 :0.01022466488391383 this:0.009825510597589052 In:0.009153681721870493 his:0.008337207086359407 with:0.008296330369501597 :0.3658711770551624 +and:0.10669808250321176 of:0.09666949509202745 the:0.09235742472779458 to:0.05324057547027779 a:0.03231525111618651 I:0.02008083888124618 in:0.0199352073360211 or:0.016823989053942723 for:0.01615855509300419 Mr.:0.015329173059332938 that:0.014839729037360166 with:0.01408412898755752 he:0.01334224949834194 his:0.012767562435273975 by:0.01200410042007972 be:0.011922527418503522 have:0.011882377041865342 their:0.011589587974957254 not:0.011395769724750142 :0.4155633751282652 +the:0.2077606021824408 a:0.08219478759091334 and:0.07813241553676632 of:0.06975236954605203 to:0.03726501865054231 in:0.032325209934043746 The:0.021402700092273727 an:0.019961379254989278 Mr.:0.01973936399900432 with:0.016154935561758912 tho:0.015883202496497877 that:0.013741938646541973 his:0.013449482227729504 for:0.012479297010016157 as:0.01190736575844831 or:0.011567213707784662 their:0.010834373635211201 I:0.009338769229229556 is:0.008981349369378788 :0.30612822557037717 +and:0.1059060949684367 I:0.046418273542064625 that:0.034172529284045336 the:0.024402171540084647 but:0.02164815782529835 can:0.021005206398549116 he:0.02053525916420252 or:0.015332471213942486 will:0.014018962651131256 who:0.013954715697973836 you:0.012780657463720963 would:0.011726688654456419 it:0.011347113975970963 to:0.011065138368689735 which:0.010651145474696828 no:0.010577094249466363 :0.010062954167917108 her:0.009662472505508383 him:0.008977360987790853 :0.5847555318660536 +of:0.3344570564042616 the:0.1542993772456244 in:0.1469084063513509 by:0.0993161899029829 to:0.03780457003436533 on:0.029067607474094967 In:0.019702323098576086 from:0.018026002640012088 upon:0.016989000728245503 and:0.015820063082433795 for:0.014845472168335927 that:0.01466233668011426 with:0.012640404814141203 which:0.012112590011015266 against:0.008539050792504338 satisfy:0.0078438812845979 The:0.007173854863118803 tho:0.006267013245176474 ot:0.005600220291796639 :0.03692457888725164 +and:0.12307479963600516 that:0.1050345084478634 as:0.04954069019298561 but:0.044239541638366436 made:0.04195388880697783 make:0.029942052577107945 to:0.028194378200485305 when:0.02710450704970817 of:0.026312085301265376 which:0.0254490257581721 found:0.020749022474825653 had:0.01873172353397952 find:0.01815208131703554 is:0.017323220631942547 have:0.016929401685520328 if:0.016865199865212187 in:0.01663164979968066 with:0.015943220422618722 for:0.015632428946633595 :0.34119657371361395 +they:0.13978236901958263 who:0.08015914348968876 men:0.06262232396754014 which:0.06087953418619282 and:0.047154102037665124 They:0.0344611648772659 we:0.03435432992687467 there:0.023917369463070267 that:0.021160030814838103 I:0.015409724318269025 it:0.014242657000002977 them:0.013113219710501495 people:0.012197421668835924 We:0.010601329815904373 you:0.01016296320629901 others:0.010039451874026876 he:0.009817111315729881 persons:0.00955389210581411 shots:0.00910608203075339 :0.38026577917114446 +as:0.06931392982974462 according:0.052071562389565784 up:0.0511867300210483 and:0.040371568633051955 went:0.03351644485287816 back:0.032358406609281 regard:0.03073407747799069 feet:0.02852138506231652 down:0.026379903432040268 owing:0.02466642634685871 due:0.023695193974505355 go:0.022910973192184297 reference:0.020802802907016128 came:0.019883741951819873 sent:0.019874244915639484 attention:0.019565955494145405 come:0.01885185084678811 given:0.018792390567602263 it:0.017366961307524745 :0.4281354501879983 +of:0.10255580725999525 that:0.042711012631463645 and:0.03947449072774293 in:0.0318660283058735 after:0.01936954438913147 to:0.018583992767828166 for:0.018032332519677542 by:0.01603730739937418 from:0.013587298868704457 one:0.010882409495183935 but:0.009553091889174838 things:0.0077250159243757496 with:0.007497831868887073 money:0.007212493013375496 thing:0.007140276405018587 bill:0.00673778607022962 work:0.006438130417448049 time:0.006303927938885982 ,:0.006277375830116932 :0.6210138462775125 +the:0.3024883481937527 of:0.10060456740095065 The:0.08274796150604433 that:0.03203783535213296 tho:0.01970008572891952 :0.018045044785349795 Mr.:0.01536538994081759 and:0.014454350754279031 by:0.011882810533666638 said:0.011465901484518887 to:0.011073491034664698 Far:0.009497972390048275 this:0.009191129531091958 in:0.008358331508701848 a:0.008055308565570183 tbe:0.0071869353959796425 as:0.00625701943637084 .:0.005852532495781474 at:0.005400028501907499 :0.3193349554594515 +the:0.20082166605754112 of:0.08816745991245592 and:0.08562652174578216 a:0.08351977561514598 to:0.05582171933194509 in:0.041245126309974074 The:0.015233774722706216 tho:0.014962330168713612 for:0.014875695355063534 with:0.014506329658748035 or:0.014442764693383197 their:0.013794482427436148 an:0.013172585244995963 by:0.01195123806043092 his:0.011605544124771577 In:0.010158132616548382 that:0.009969462334792402 at:0.009572093561684586 Mr.:0.009179391024605838 :0.28037390703327525 +J:0.04166203892388377 and:0.041259279091749736 W:0.03702839115674537 of:0.027808435282522977 at:0.023137443208545185 :0.022626269463091507 E:0.02116390400004878 .:0.02080229584666844 the:0.01891690330962789 by:0.015961645276309597 Miss:0.015767357091402947 to:0.015440307851724698 Mrs.:0.013922991992558885 A:0.01305322994081689 C:0.01198270316415403 in:0.011309736151142254 M:0.01123563868205016 I:0.010506604109840443 W.:0.00987670348287926 :0.6155381219742372 +:0.04886162056411152 and:0.040019830359908116 made:0.019534249586484108 was:0.01884742032062261 recorded:0.0156557013153549 that:0.014962923641391521 be:0.013346741481126276 is:0.012414190474703378 o'clock:0.011973468167413116 placed:0.011531292464673245 out:0.010920644875481857 found:0.010814196298763954 place:0.010167028437165111 situated:0.009811016372775217 up:0.009511290277384947 them:0.00920663098385622 been:0.009160737073209432 him:0.00901249715764949 are:0.008449437635810648 :0.7047990825121143 +and:0.06978381557070909 place:0.023036247302947552 was:0.019228187649301096 held:0.016650550771351805 made:0.014562660063916105 committee:0.01406295381719524 work:0.013705064861209796 Minnesota,:0.012581630552938157 up:0.012467371918641853 placed:0.012305118653746033 feet:0.012141947540576752 here:0.011999031227601984 that:0.011959770380002625 land:0.011887863031864282 out:0.010870221592573866 point:0.010772677379609765 located:0.010587280263551008 day:0.010545682122061155 down:0.010369045740501612 :0.6894828795597002 +do:0.4357199167617412 did:0.2485797033570476 does:0.10180629161626767 could:0.045934275951286935 would:0.04118730688863144 will:0.02922725088659719 and:0.010434716418879195 is:0.01012355185826751 should:0.008181497819623478 docs:0.0079516155582588 may:0.006666882775421685 can:0.006570668296546437 Do:0.0059049929317764 shall:0.0050943145412350324 but:0.004736844522863179 was:0.004361959235727171 need:0.0039516324518492655 if:0.003610536497240518 must:0.0035762656870518186 :0.015379775943687456 +was:0.1265791287988301 of:0.12134773063570428 in:0.11347938689282458 is:0.09487328131737037 and:0.07260316683404991 be:0.05233043172021537 are:0.04606522642852658 been:0.03656892189664448 not:0.02895913650573984 to:0.0275296440159477 were:0.02728377897459801 In:0.021381978351303736 or:0.016178386481350247 for:0.015591047156791363 from:0.015425926782137809 at:0.015404056198730027 Is:0.01419842016277781 with:0.01120649659843488 that:0.011164113238645015 :0.13082974100937791 +this:0.15546699153650617 the:0.12160833533228949 an:0.10222771860661824 a:0.07937334875093861 his:0.062052974770889356 one:0.04040022842569481 no:0.03676356010541104 every:0.030740029291287968 such:0.029548060090568096 any:0.02945490784184884 their:0.027165544266944803 other:0.023753679278010396 my:0.019662026298795383 of:0.01892883243782285 that:0.015789415982980604 and:0.015562779945831521 re-:0.015316761500435365 good:0.015028688634595564 our:0.014870444441686144 :0.14528567246084476 +the:0.2685005828163444 his:0.09537510669271772 a:0.08604366946517582 of:0.07868841781940532 and:0.04864371464351226 said:0.035607365278308274 their:0.03431201454882038 my:0.02738590105439459 with:0.022037388645838082 in:0.021618023278542838 your:0.01732429541978548 our:0.01731772967313445 tho:0.016018970895357053 he:0.01402658566313718 The:0.013653108341215544 to:0.013344312669296662 her:0.012275156754471897 or:0.011444472851325277 other:0.010655744489574246 :0.1547274389996425 +the:0.32332706692242236 and:0.051053059300272145 of:0.04546019449631227 The:0.03299275195400684 said:0.028786946823103548 tho:0.020468977705417748 in:0.017838204481363935 that:0.016297308624043497 a:0.014140831425303216 this:0.013503413849025902 at:0.012832548362630687 :0.012138565184915524 to:0.012077400247492188 tbe:0.011384572096426437 .:0.01132236953146583 on:0.007994627579968203 which:0.007932413275096382 for:0.007819329031865541 his:0.007133059878887869 :0.34449635922997984 +of:0.1694198375509708 the:0.09878273043326595 in:0.06396294532883982 and:0.0540253748949615 to:0.05055240973208892 on:0.02613274558275434 from:0.024184217540498657 for:0.02317805599364514 a:0.023081440173466666 at:0.02212880823272681 In:0.01831253417759447 with:0.016969888110404254 :0.015627158847349075 by:0.01313624114097068 The:0.013076738765051686 was:0.012166752793591227 that:0.011753888691729691 his:0.010950845227185993 which:0.009601554468031077 :0.3219558323148733 +spite:0.038017404187114835 out:0.0372686137516049 and:0.03570169315863753 that:0.02655890867341167 value:0.026090366280772923 part:0.024620158961039675 one:0.022785694164029972 sum:0.022119641127047777 amount:0.019859617002542403 tion:0.01811436175197411 charge:0.017458813565391796 payment:0.017448710700355818 account:0.017441337297585194 any:0.01673074464939334 names:0.016248397088161642 some:0.015729751533454937 end:0.015377415033100016 use:0.015376586282452533 people:0.015234020980039863 :0.5808177638118891 +that:0.1923069800396388 and:0.18461456725735642 if:0.08785004904702103 but:0.05759299314245452 when:0.048881824001944185 If:0.04401286970127799 where:0.03922681340071291 as:0.037715081482767567 which:0.03293590086218091 But:0.019698448822437795 Then:0.018851819057869375 though:0.015822799134369438 while:0.01377653657177942 time:0.013174336712956732 because:0.013022230836725586 for:0.011106011945920142 until:0.009854636464889821 then:0.009041221616484102 although:0.00901260543660401 :0.14050227446460922 +the:0.6822280133179047 tho:0.0328761299143231 our:0.02876834915302915 of:0.02679108689640085 American:0.023779576652454046 a:0.016372151577394304 and:0.015366402946350822 tbe:0.01431865748699848 his:0.012927165640011545 said:0.012043750194523492 their:0.01192163689415444 The:0.011145284415515891 other:0.009458771247448525 Federal:0.0070668353442533095 this:0.006883421283874178 its:0.006658945838945181 in:0.006491507617531085 own:0.005802048919620979 Southern:0.005802040844741253 :0.0622982238145247 +the:0.09684081064840576 and:0.06551335624548284 of:0.05146145169206151 from:0.049520598669154245 a:0.045427902131977435 to:0.0370403239153822 be:0.035669151526387034 was:0.030489628475080553 is:0.026635804908522978 in:0.023878514238638158 are:0.018513936943033917 not:0.017945708099223703 or:0.017556265685966497 been:0.014265228721347686 at:0.013857211504087178 he:0.013733215789660087 were:0.012396679125422956 I:0.012347944480187516 for:0.012197989992860347 :0.4037082772071174 +to:0.2950010601977412 and:0.2266318056501919 the:0.07238541916429468 of:0.060086327994390495 would:0.03309594700981695 for:0.02539367421030405 in:0.023261192343632244 that:0.02108197020403973 will:0.02102669903463874 I:0.02034787087234629 or:0.020042592571084115 not:0.016150193426564385 which:0.01593819406428952 at:0.015592657800811205 who:0.015275559484795536 as:0.014748012878592329 their:0.010594075990845279 it:0.009658131616291416 his:0.00917951775754745 :0.07350909772778248 +the:0.48105667924631973 Judicial:0.07497837174329748 in:0.0418159266817086 said:0.03986335304782091 tho:0.02585614887318146 of:0.024998181950850455 Congressional:0.021270833695576807 School:0.017722880305717247 a:0.016257132801713297 from:0.014844146434785583 :0.01300515693199975 and:0.01183984973681252 tbe:0.011162867933324062 The:0.010228728431718275 com-:0.009725572806902347 Road:0.00963192843797916 In:0.009465770752511819 our:0.007989145551090756 this:0.007838084774161452 :0.14944923986252834 +taken:0.08645566166431216 far:0.05671008578508517 get:0.055954556859684944 put:0.04949520752388848 carried:0.04818774492949548 went:0.04605463343561541 go:0.04172395150877586 them:0.03682905555632383 take:0.03667080770305686 and:0.0334724830488682 passed:0.032778045510391096 it:0.03140227358626741 stowed:0.03125581093381661 run:0.028734031695712106 turned:0.02807702153098084 came:0.026427965482161943 ran:0.026224653523851033 come:0.025978573406809032 miles:0.02566041240015977 :0.25090702391474373 +the:0.22846170025267531 and:0.19054619016625768 The:0.03786377772728443 of:0.03441966294955999 by:0.03399946066186867 as:0.022659737486543888 .:0.018261509939605455 tho:0.014317542431770585 :0.0119148907186117 was:0.011092265030654315 or:0.010696931045974977 are:0.00930600022142274 that:0.007310255935813229 Book:0.007283273161259429 Mr.:0.007083453996254089 tbe:0.006918565323570519 at:0.006876986599026205 Senator:0.006306983307555014 with:0.006074924066597883 :0.3276058889776939 +he:0.15140026400584383 It:0.14477958025278742 it:0.13721269664220015 and:0.12404117335027212 she:0.040615045282149584 He:0.03628402225169504 who:0.032022088219881485 I:0.030815500621736568 that:0.0238107471552108 man:0.019308516467114258 which:0.018649132486358338 they:0.015306279609172375 you:0.013099533912968952 one:0.01108185877902617 She:0.010944084102107584 be:0.010862825701245428 the:0.010778933596371023 but:0.009135553717910711 we:0.009115337009204135 :0.14973682683674405 +as:0.06931392982974462 according:0.052071562389565784 up:0.0511867300210483 and:0.040371568633051955 went:0.03351644485287816 back:0.032358406609281 regard:0.03073407747799069 feet:0.02852138506231652 down:0.026379903432040268 owing:0.02466642634685871 due:0.023695193974505355 go:0.022910973192184297 reference:0.020802802907016128 came:0.019883741951819873 sent:0.019874244915639484 attention:0.019565955494145405 come:0.01885185084678811 given:0.018792390567602263 it:0.017366961307524745 :0.4281354501879983 +the:0.25945454546832886 a:0.08244880628654723 and:0.041738575009488584 The:0.04142687899485789 of:0.03710523886163426 .:0.02246974037931505 A:0.022001260636535482 Mr.:0.01822321203839512 tho:0.015872997699405793 to:0.014747434928504673 that:0.013263139341577055 an:0.012924102102735252 :0.010107550417766845 by:0.009038078725391635 tbe:0.008245926246197648 in:0.00786581153594475 at:0.007179371949622632 Mrs.:0.006675609136205011 as:0.006484584084173393 :0.36172713615737284 +be:0.19445942887814616 was:0.09735179069304756 and:0.09259902066887936 been:0.07263722360403543 had:0.056918441672269754 have:0.054407779048634405 is:0.042167435627273556 has:0.038351826668009834 greatly:0.03423071020065367 the:0.03225885381692764 were:0.028928200071624367 are:0.02388577316142123 of:0.022191349672356486 being:0.01891342048634224 bo:0.01740965713790499 he:0.01567160265271097 as:0.013087803267128191 so:0.012998950815373861 an:0.011935249415326693 :0.11859548244193359 +of:0.15205189852944456 and:0.03844175341469574 to:0.03401068742022636 in:0.031360788950844834 that:0.030330919254590062 by:0.020191710955392416 from:0.020008743810834836 for:0.019108115676663463 things:0.018026082282795796 at:0.013310010975094716 on:0.012137583664503085 with:0.01179743336691632 those:0.010893883653156472 upon:0.008536440999900528 but:0.006825675672406484 law:0.006721885641563887 country:0.006702706075421988 principles:0.006269107975898136 conditions:0.006178310357396391 :0.546096261322254 +of:0.22547645859652307 to:0.0976255956545342 in:0.08975713220785093 with:0.06434602133951098 on:0.04667326786831187 and:0.041649932604920926 for:0.0398249655813687 by:0.036685018433643767 from:0.032664781559268836 upon:0.021490740627235556 that:0.02139281221101055 at:0.021288306778277744 In:0.02025590254753344 as:0.010353932037056318 all:0.010074400759570251 over:0.008939820994499942 or:0.007693784865817322 told:0.007468153789186353 into:0.00691772114560941 :0.1884212503982698 +one:0.032623393314823904 and:0.027984584858236086 two:0.020819200504835555 side:0.0202941061842756 out:0.01712584714625953 part:0.014928878336866343 reason:0.01484238109886205 people:0.014652747764925833 that:0.014238246727435705 half:0.013574282556559895 time:0.013505780692412565 it:0.012961227888241939 three:0.012519427150197625 line:0.011747876956269714 work:0.00976830698177754 city:0.009563903832313642 men:0.009501008365271455 tion:0.00917542117920117 :0.009061931610506122 :0.7101114468507277 +time:0.017020985039150522 it:0.012224937959006945 more:0.01000342839050808 hundred:0.009457101666750485 up:0.00879137981015171 him:0.008604681232612394 life:0.008522701138799726 out:0.008343562689894187 in:0.007705422966744047 long:0.007105262800548276 due:0.007060446122723354 them:0.006716825858557653 work:0.006404483645491245 man:0.006133446008132124 :0.005711022799522327 money:0.005622443728074113 men:0.0055962365348124965 down:0.005402584828377342 and:0.005367601464611255 :0.8472054453155318 +to:0.09510176257557867 and:0.0759782477397007 of:0.044882537993784916 the:0.0315600709783228 is:0.027469709441114137 in:0.024414242512733896 was:0.023644505786906175 con-:0.02072663556943141 will:0.0197525729259325 re-:0.019515757684955143 he:0.01933396268374066 I:0.019168528042120436 for:0.018758717550584603 be:0.018539065847662673 would:0.018528419960293203 that:0.017041510263127942 be-:0.016586329410835588 there:0.01648203693916975 not:0.016023551150036123 :0.45549183494396867 +of:0.17569057449281267 for:0.13714085028221074 in:0.11063014306906638 within:0.10347030889516223 In:0.07244966419916136 during:0.047906232565156665 and:0.03760195678072641 from:0.03080175996478033 to:0.029727709022875012 on:0.027406551955912403 about:0.022572602188316714 over:0.021573883461523606 after:0.019211672964398737 by:0.018124580029097677 all:0.01558422604812754 that:0.013566517618484363 than:0.012791200517611049 During:0.010197284889901735 until:0.009839875318483874 :0.08271240573619047 +so:0.18584095600501466 well:0.086018975834868 far:0.036928073701124886 and:0.036295686129605216 such:0.03180662616763135 much:0.027609352084598034 it:0.02205361672230219 manner:0.020200107052006817 doubt:0.018871588850796813 is:0.018035330128024357 question:0.017585521180360823 opinion:0.01697504297808242 them:0.016303008553215422 just:0.015375214437991785 are:0.015253496449112244 soon:0.015007069772728912 him:0.01372397311447532 be:0.012734425091976188 described:0.012688849338558628 :0.3796930864075259 +:0.04117197717062014 of:0.0256569741423896 it.:0.025497529633083202 them.:0.01755840206896513 and:0.016241399433269486 as:0.015200649876708933 that:0.012842161287338864 him.:0.01228067907806394 in:0.0109292159642699 day.:0.008690153303549364 time.:0.007992954196249732 country.:0.006843948208052982 way.:0.006643834714717761 people.:0.006575674379224105 law.:0.00643140655418637 year.:0.0063543216428151635 the:0.006233563416755671 ;:0.006158945677951821 work.:0.0061212761798646095 :0.7535749330719232 +the:0.49480843456232426 a:0.1412399479545756 of:0.09685344506079127 tho:0.03373859565613836 The:0.022684842390112 his:0.020162813394311876 and:0.016925981129560612 our:0.0150955934164684 their:0.015044914985784388 in:0.014981266464698767 for:0.01458143248283278 by:0.012464978034498253 tbe:0.009736301234599603 two:0.008052690216279957 no:0.007198877357407626 other:0.007107317727996261 some:0.005614937507286705 from:0.005530332333909027 or:0.005511447069037493 :0.051665851021386745 +one:0.1028303141280697 part:0.05963429477052991 out:0.04766456937681193 some:0.031418679026461914 members:0.030764490253327767 side:0.029940657362655835 portion:0.022063658796890564 office:0.020457735219956013 member:0.019726706386316174 end:0.019666887540649894 tion:0.018667441728710307 parts:0.016814747270460957 people:0.014112771422418794 all:0.014072739582212475 any:0.013183573287639892 One:0.013083578354183906 that:0.013024335602903442 account:0.012482348155001894 many:0.012077825070275192 :0.48731264666452345 +of:0.28767355066866834 to:0.08775711267569858 in:0.08678131196995101 and:0.05160598694501188 on:0.04646139928102899 by:0.04519522654900943 for:0.044547789071328545 with:0.03396756772609607 that:0.033699232901107726 from:0.03075346596941143 at:0.027039283056790858 In:0.021061449543044047 as:0.017514234937992545 all:0.012543839382496166 upon:0.011844431150487573 is:0.00998972746569266 was:0.008814315973987914 into:0.008557199930727406 through:0.007781895704231326 :0.1254109790972375 +the:0.11500545585881412 of:0.0897605566703555 and:0.07914879987306167 a:0.05827037833039227 to:0.0386987683614473 was:0.029282661483795363 be:0.023890810389268442 is:0.02056818843792312 been:0.017204803150083207 or:0.017094944717067368 in:0.01610392931760865 are:0.015798243080240505 his:0.01344187865263006 at:0.01321973597799718 for:0.01304287912725108 their:0.012337012043366955 were:0.012236169772424844 :0.01133284696603621 The:0.01095822742659897 :0.3916037103636372 +of:0.24341599371043834 dated:0.09541598151162471 in:0.06793982682295627 on:0.06753410561999539 and:0.0500643411321662 at:0.04629356716757673 to:0.035123100367595896 the:0.029547843673689046 for:0.024881027568933352 from:0.024490891894215886 by:0.017030132050888668 In:0.013103413970180755 Dated:0.012596181832827744 :0.010834072770924165 said:0.009002175966630045 with:0.007700381873381447 after:0.006718210692928639 ot:0.006182378892581432 ol:0.00560389906540312 :0.22552247341506215 +act:0.05561887721288607 day:0.03789061647089674 part:0.024886358478033836 State:0.022429426724015322 and:0.021268732334719164 city:0.020407008571383736 out:0.019716455016503116 that:0.018247787420857274 Act:0.017544629732223243 state:0.0170253050217965 tion:0.01698722680400719 members:0.01609037486514625 amount:0.015966114758961328 action:0.015055433845477731 sale:0.014678152888239588 one:0.014576863760441818 time:0.014541034558971993 majority:0.01292769892342408 laws:0.010659673464553708 :0.6124822291474613 +well:0.11482583804944232 known:0.09871763831710513 soon:0.0916505083085803 far:0.07244252345830873 and:0.05646760229569708 long:0.033191133685989645 such:0.026114132691679413 just:0.021539382495143138 much:0.018216698075154383 but:0.015820973354116454 it:0.015060478378985437 that:0.012982875435048865 regarded:0.011853385324054824 inasmuch:0.011638912473280656 him:0.010904627694769634 same:0.010576795833003501 Just:0.009621947202407478 them:0.008618852072826538 designated:0.00803461652825095 :0.3507210783261555 +is:0.26571448512232054 are:0.14459967198351134 and:0.1282719157407677 Is:0.03953600693938108 was:0.028500465006528655 not:0.02758464819052487 I:0.026425515142102212 but:0.022233105169771065 have:0.021343879123350392 has:0.020484272887638592 we:0.019290633067503636 it:0.018160946510324367 will:0.01780414652321538 he:0.014189073409261548 would:0.012969695648502151 And:0.012734211188191853 that:0.011352968434846799 am:0.011257949682463134 be:0.011127491148908118 :0.14541891908088658 +the:0.15666062565508787 of:0.1163496162694897 and:0.06157584245586571 a:0.046124566598187165 to:0.04484072438673125 be:0.04048717601082985 in:0.026919655374899962 for:0.023694329500172195 their:0.023001443844177693 is:0.022914456813349183 or:0.02041402634909368 his:0.019825369056388546 was:0.019005124328248062 this:0.01710163498825682 not:0.0159851943780859 at:0.015151009715691477 been:0.013788110733168352 as:0.012519563117144434 its:0.011212674928534935 :0.2914288554965972 +of:0.3892337352565663 that:0.08932257921364435 in:0.07238759657318745 all:0.055498950860438295 and:0.047607486702815255 to:0.04079529137541712 on:0.03325864967230161 from:0.03268731579101252 for:0.031873986812754336 with:0.026086216986326273 by:0.025145223649373584 upon:0.018347153267346476 In:0.014034760294085104 between:0.01402839416002238 which:0.01180583434756867 but:0.010759100726538736 over:0.009297194848122848 as:0.009269760883107596 if:0.006903876951527723 :0.06065689162784335 +it:0.14396280611608941 he:0.1034882596310346 they:0.07298256494861975 It:0.0671155344377155 who:0.059695482771594366 which:0.048270161583917344 we:0.04600497486802495 and:0.04444852923476295 you:0.03147081255326323 as:0.031448940319435674 that:0.028328876159709106 I:0.023583156739894345 He:0.020071839484772175 one:0.01845100811105455 she:0.016127944014061434 We:0.009611300198881267 man:0.00956840259539137 They:0.009411476351741695 or:0.009239663809476484 :0.20571826607055974 +of:0.09129790931378902 the:0.07369883040827747 and:0.047842263382354346 in:0.04189055351593407 to:0.04045875475680249 a:0.03542341257202578 be:0.02020462051672066 for:0.01979292654746225 was:0.01760256398103379 at:0.017380150555488715 is:0.014984483003968216 with:0.014047653760730413 by:0.01374644383819499 :0.012670486581795598 In:0.01200961464556976 or:0.011563835749786333 from:0.011391516893522809 are:0.011273104484969465 that:0.010755276030689069 :0.4809655994608848 +that:0.14770952568615986 if:0.14701194034357132 If:0.11532007107625733 and:0.09766414817973389 do:0.051567835974107475 which:0.04890448207804157 Do:0.037746931736718885 when:0.03291784385197584 what:0.02750061458323992 as:0.022539686795021024 but:0.02188082589047738 to:0.017782976254757072 did:0.016150620301786014 because:0.015573766523042671 will:0.014315275913050879 Can:0.013515219584785196 When:0.011111188728258614 unless:0.010794932000696375 Will:0.010778677818493352 :0.13821343667982533 +of:0.2249851470865838 in:0.13628418599388653 to:0.10040164845885709 and:0.06652478397062113 for:0.05362108558374619 that:0.04690585637806244 with:0.045473407715402855 by:0.03854238540285183 on:0.034742415842737885 all:0.03425893489162043 In:0.03351416009000769 from:0.02586499290587815 upon:0.016810120749347027 as:0.014617676836309086 is:0.010799839392809645 which:0.010745236158333787 into:0.01016376081208603 through:0.010079267078808733 but:0.009391312999563573 :0.0752737816524861 +the:0.12309989260278888 of:0.10650365669227244 and:0.0603915596750219 to:0.05420092932843233 a:0.0300507936595399 in:0.02175993218945993 at:0.020696538399600593 was:0.020019150362752952 is:0.018739938403620374 be:0.018583554604950505 Mr.:0.015519473133711497 for:0.014856836572986835 :0.01205300710638249 I:0.011081019068521979 not:0.010568196844536616 his:0.010484552027965492 by:0.010386045980405401 he:0.010149809184717265 this:0.010054368886058106 :0.41980074527627453 +he:0.15384189771089668 it:0.13484486606841248 and:0.07926380155437153 It:0.06810435727483774 He:0.04840213590541362 she:0.04232606270718828 who:0.028555338095901103 that:0.025207502872927258 which:0.02433004228387394 they:0.023374035954830008 soon:0.021838694196051806 I:0.016643469218533453 be:0.013655738076876629 She:0.012083494014615203 is:0.011876196941534259 symptoms:0.011327152407084474 was:0.008376309025558039 then:0.00783803869166676 ho:0.007434562938747133 :0.25967630406067965 +the:0.21268957311484651 a:0.09571086016421275 their:0.056305937564783914 his:0.05452291270125331 of:0.0524755849366634 and:0.039621140061226696 are:0.02881119854321119 in:0.025529146482834535 its:0.025503730529757792 was:0.024871137552799193 is:0.024146842273179942 our:0.018636713379461337 not:0.01702711491011787 other:0.01651447387466976 be:0.015464744536992502 for:0.014823489054998694 or:0.014510554204880852 were:0.013998626694108413 been:0.013873256047648736 :0.23396296337235262 +of:0.1516449871203578 in:0.11672464573756997 by:0.07885500243599622 for:0.06877792800391806 to:0.06839212789909158 as:0.061668077052228605 with:0.0578600428778941 and:0.039693331556493905 that:0.03664664966105394 In:0.024179009299435637 is:0.024089348116782323 such:0.020570074847163902 was:0.020497475073271276 at:0.01584615649574339 from:0.015106980353070404 have:0.014384862539851983 on:0.014261027217908683 not:0.014190053317646003 or:0.013767523249452154 :0.1418446971450701 +was:0.21052081960663582 is:0.1760272295898922 are:0.06946630871315732 I:0.058497166524262414 and:0.05059876054851633 be:0.049143852341792936 were:0.04640138683717108 Is:0.033786051198775716 been:0.029440057933748418 have:0.02627002627974363 not:0.026247394269067463 had:0.02469141788325909 very:0.021725257439885248 am:0.018268888308266635 has:0.0144466294790422 the:0.013642068366300029 but:0.013628893590468037 her:0.012889544934518986 he:0.012223667832793324 :0.09108457832270309 +the:0.39749834532651884 a:0.07520030034269234 and:0.05540858759821703 The:0.03273515726769502 tho:0.030061875542463562 of:0.020144331424922633 tbe:0.014929647509541684 in:0.014268129706664795 or:0.013333166761078447 .:0.013287381914101323 an:0.009000188755386574 to:0.00880680429595084 :0.007943763822197133 Mr.:0.00773879605474787 by:0.007328417831573476 as:0.005922572098978465 for:0.0047526933692942485 that:0.004736121968310169 on:0.004594595720579333 :0.2713091226890862 +the:0.4197060952216924 The:0.07168665454267983 this:0.04978275808069156 that:0.039551319859567766 a:0.03389684553853951 and:0.030726622503784808 of:0.02581113357140022 tho:0.022190151911347697 one:0.01597711295022926 This:0.012707247521569147 his:0.011896735473447268 first:0.010695907632820105 tbe:0.010539496298129723 to:0.009912925702315067 other:0.009548003270126063 any:0.0093647568548105 every:0.009279880057851386 all:0.009032826795689185 only:0.008929783622548754 :0.18776374259075976 +and:0.1030287906388715 was:0.05651139444489275 brought:0.051794392836771716 is:0.040109736394200984 that:0.0352539386288363 talk:0.033892130569518134 bring:0.03192981944183709 all:0.030728555604806133 nothing:0.027214661618042656 know:0.027011710356243952 thing:0.026632516628565465 it:0.02317250194668664 talking:0.02139158115526811 had:0.020627640871905932 of:0.02040275900734749 are:0.018729089094739786 were:0.018156044914255643 or:0.01675468292594799 be:0.01552845590577986 :0.3801295970154819 +him:0.02346330166566789 ;:0.013993117901978207 man:0.012063973158208985 him,:0.009909121800163739 up:0.009718454247617242 and:0.009483607636828621 himself:0.008708172500287844 in:0.008383704791678692 man,:0.0074619430074121034 it:0.006727629907354967 he:0.006463016531639386 .:0.00621915130927209 time:0.0060721975060543465 one:0.005851681181497556 to:0.00584951612224459 out:0.0057405518294329876 it,:0.0055790022104404615 on:0.005073440824683246 hundred:0.004882599142558921 :0.8373558167249782 +I:0.20777433219468092 you:0.1384491357038491 not:0.12502797686065917 we:0.09806884083938354 We:0.057669507560267036 and:0.05004542336860122 they:0.04989302213759166 don't:0.039398765197102614 who:0.03322141269130384 didn't:0.030507369029688605 to:0.028022561132751596 They:0.016454395952631623 You:0.011670489484897765 or:0.01150121768283483 don’t:0.011366764422885627 "I:0.01102405861122679 he:0.010323569257424222 his:0.009690786537473448 people:0.009280452353464532 :0.049609918981281864 +and:0.11407116966175274 of:0.07107079484512498 the:0.06656730291979027 to:0.05335924540680701 be:0.02740068005735919 a:0.02260417818487592 more:0.02213765112741375 in:0.02051572430464391 was:0.01921309187923535 or:0.019187461572761966 is:0.01905977581138103 for:0.01903629630887901 that:0.01789181571214341 be-:0.017434743418629745 are:0.014819956712198552 with:0.014357000995703835 were:0.011289330063959966 will:0.01101235889555647 other:0.010533063132933779 :0.42743835898884913 +the:0.15163937089949983 of:0.11840639355147464 a:0.09306070032803845 in:0.04737927597295734 to:0.0458824554586899 and:0.03682445592723797 by:0.025519427782446792 for:0.017062969976010672 that:0.016965030642155866 The:0.016088131514786552 In:0.014194644902222008 :0.012388106506491395 with:0.011286246379371954 as:0.009614587458697062 from:0.009212308270555922 tho:0.008851527545081306 an:0.008459546340455221 on:0.008224800534294967 or:0.007820700256259652 :0.3401193197532725 +to:0.09864282010030183 the:0.08375297126946753 of:0.07074571151673052 and:0.06779046829403 a:0.02766650927741597 in:0.021670314456411932 at:0.021392828982420006 for:0.01627599403114278 is:0.015107338441904122 he:0.014818877918256685 was:0.013808540905081488 by:0.013132601340090633 it:0.012796195965848819 I:0.012723560421513859 :0.0121914922721236 not:0.011777366450725432 .:0.011011346691779235 that:0.01092359583028988 with:0.01073896800850032 :0.4520324978259654 +the:0.15414491450832832 of:0.14037725578704704 his:0.08874807398986469 their:0.08419278920070442 and:0.04994309017121634 in:0.042897105576841406 public:0.0326739651570195 at:0.023477877071406007 with:0.023235336609371098 my:0.017349920718940693 her:0.017034149710459676 its:0.016912383809774882 or:0.016697878114331086 to:0.016420673303904412 for:0.014505351495439208 such:0.012017534319133648 all:0.011870716963668032 our:0.01094244694725703 your:0.009123484096606257 :0.21643505244868627 +and:0.07181562702745725 together:0.06672214896410926 connected:0.05460722541492519 connection:0.053485248068146786 accordance:0.040816432970329504 comply:0.022327715315442986 acquainted:0.01991331996883064 compared:0.01902004432375884 contact:0.016949822974841922 familiar:0.016791563233682194 up:0.016271038698657696 do:0.015355480362757417 interfere:0.014875808889703945 charged:0.014646284015101253 pleased:0.013610051164447858 him:0.01274062267734275 but:0.012200014478196207 satisfied:0.011962054640116513 it:0.011810815262474694 :0.4930786815496771 +the:0.2877908144223033 an:0.14791116964968098 of:0.07553146178008634 a:0.04672169341756371 his:0.04040132653967652 The:0.033927876370233895 tho:0.03268575146289468 An:0.02206269359930871 and:0.021999068320456738 their:0.01856214814020469 to:0.017986120179761634 our:0.01723449454508931 tbe:0.016182938078138247 my:0.013486900895676375 by:0.013274426182424585 in:0.01157776258081657 one:0.010507682153493946 your:0.010212103554534826 on:0.009784966078290389 :0.15115860204936454 +that:0.23156378691275645 this:0.1734223696915234 the:0.10700777192230453 first:0.04904511466467644 any:0.030046140249272994 taken:0.02866032667433538 took:0.027560234136100464 on:0.020274884769799453 to:0.017211120741282695 of:0.016493547409359575 same:0.015858755972596873 his:0.015377826007180705 and:0.01399463427081461 take:0.013929074500109757 in:0.013565823529239825 a:0.013365746457923317 or:0.01184635718000742 all:0.01072573035789985 second:0.010704707326868517 :0.17834604722594777 +the:0.28134042162894946 a:0.17598067181821833 to:0.05850956392840223 and:0.04891460828440172 of:0.04678652481569258 that:0.028750072619851415 The:0.028404111619472712 by:0.0264810291218739 no:0.023391205063910916 which:0.02029377409898398 or:0.016535905641678034 it:0.015993244507602828 he:0.014187138185634598 with:0.014101833635129731 tho:0.01379068011089341 any:0.01266235672169531 most:0.012540961205801362 for:0.01243213354138829 is:0.012287412371470243 :0.135616351078949 +of:0.19764921889394602 the:0.0727053507097757 a:0.05069273173837918 :0.034562212793433286 that:0.024388559964368124 for:0.024339538018231154 by:0.022774646527461948 to:0.022234208533272504 and:0.021718347057664105 at:0.014441850088809329 with:0.014203029678701622 The:0.007820703067859225 tho:0.007028065757428859 :0.006861460496861329 .:0.006815662475353701 A:0.006204772582127622 from:0.006183580041171705 in:0.006120092733923 per:0.004964513534076631 :0.447291455307155 +of:0.2516085078929328 to:0.11211526426892907 for:0.07850940958875731 and:0.07408256319830761 in:0.06107223144989436 with:0.04842482280357351 by:0.0423397660984066 on:0.03106756186760847 from:0.030956254203474518 that:0.029570973837431583 at:0.025989062984262543 all:0.020698355269057025 In:0.012026756635644892 was:0.011629167737075412 is:0.011200813646339004 before:0.009870012290401131 when:0.0098428041302173 as:0.00969414559487973 upon:0.008462964744889187 :0.11983856175791793 +it:0.24440718344154302 It:0.21296954647605149 which:0.04611024803059268 there:0.03940044594667269 that:0.03593780002691268 he:0.03500337355666711 and:0.03204192385083385 This:0.027206512485782753 this:0.022058102105278646 He:0.017524077874361246 There:0.014760550113076096 who:0.013819724109051907 she:0.008383976479937171 what:0.0076204357420744185 but:0.006041263515830449 man:0.005843736997020076 That:0.005448774861867773 country:0.00530331000478596 one:0.005211761674301356 :0.2139072527073586 +it:0.20661626833118804 It:0.13133310388077965 which:0.05346195225056892 he:0.04322413433168328 and:0.0399221355018402 that:0.03638459118631527 there:0.02656324547693805 who:0.022588363007738477 This:0.01601752777676921 He:0.015090910728543903 what:0.013686208311658789 she:0.01181234484166701 this:0.011752239301455133 There:0.009749183368011116 man:0.007759333367156636 as:0.007068481254995637 work:0.006691860301109499 country:0.006039779831696346 but:0.005362639996269743 :0.32787569695361507 +the:0.6422496511486444 tho:0.03691941211548191 said:0.024687885787270325 of:0.02228396583386572 tbe:0.019835070886016805 a:0.01925125669508501 this:0.018165827187507828 The:0.016058661204489545 our:0.012674702693874029 city:0.01156537802569407 his:0.011217183821355736 State:0.01109201086692083 American:0.009855070006909664 county:0.009652837195561972 Republican:0.0074100595823706475 Democratic:0.006534314386616171 an:0.006110749297271578 whole:0.005810021517071118 York:0.0057393379867454975 :0.1018866037612472 +the:0.2592760005245838 an:0.19092649408667461 his:0.08448226257897294 The:0.06801912560369476 and:0.04259568441601202 their:0.04093703051088045 of:0.03229333846038779 its:0.026697719190334143 a:0.023182554717820825 my:0.022913234159584222 equal:0.019539049955028674 this:0.01761098014851217 our:0.016163312217997442 tho:0.0161121592168149 her:0.014350515082018485 any:0.011329364823088302 your:0.009708797701503109 to:0.009595366696043904 in:0.009109295407979478 :0.08415771450206795 +the:0.4368293843252191 of:0.11010149440061107 their:0.050781713544206755 his:0.04496469077726039 a:0.042332130684629335 and:0.03167874956022891 tho:0.028000188547710237 our:0.02690129280831274 or:0.02473581035857118 for:0.01949355762388702 its:0.016372210491020563 these:0.014963709384064217 to:0.012629642432900599 my:0.01202458012292888 her:0.01186434885958646 The:0.011781184726595464 this:0.011762929805321377 with:0.01170250189874606 public:0.011482986839493135 :0.06859689280870648 +of:0.15769621481051282 the:0.1413542055439651 and:0.05950441748706924 said:0.04594672489779638 these:0.03548038222213359 all:0.031041810949297175 by:0.0259396425862106 or:0.02499774356991386 for:0.023974765033792117 other:0.023417513978418326 their:0.02159289139740999 public:0.01821940149178676 in:0.015131141597560769 such:0.011925165209891914 that:0.011356500047358293 with:0.01061255191725482 tho:0.009822942843140297 described:0.009323792580881006 our:0.009166848795573822 :0.3124953430400331 +of:0.14323350500900542 to:0.11515917165427952 in:0.07259368601914722 at:0.06616273284034979 by:0.05952835321014419 and:0.05583803710700257 for:0.04635739462793687 with:0.04465557956765855 on:0.02732486748111686 is:0.026598237810560886 was:0.020798400008897502 that:0.017075276072914213 In:0.01641781523358103 from:0.016120929958426858 or:0.010878648063335326 upon:0.006846194641996096 up:0.006244068461100465 be:0.0060528561178694335 under:0.005819480627678381 :0.23529476548699882 +the:0.3494579865818812 this:0.17543260482894085 a:0.08012393533508648 The:0.06499431304939957 that:0.05686246993411265 and:0.04102951146197839 This:0.02512286008225386 tho:0.017595229192022038 of:0.016400420356672128 each:0.014722004575270776 said:0.014386293883835215 present:0.01175869713939057 our:0.010104290844457896 every:0.008949457989161337 new:0.008556872265526474 whole:0.007096242028299646 tbe:0.00685862272993292 county,:0.0055371638696960854 same:0.0054060004172319445 :0.07860502343484996 +the:0.38593683408097135 and:0.09636161455609457 a:0.050236238576610484 of:0.044991316379564106 no:0.031324239776034865 The:0.02819744998528985 tho:0.02698666570519364 all:0.025164448361537545 their:0.024587359787299156 to:0.022979874638707785 or:0.020395427501487044 his:0.018180848992584587 by:0.01669863873321286 most:0.014576868686494712 any:0.014268807229487424 with:0.013446112495567698 was:0.012305315214564608 some:0.01160816682237011 for:0.01078268063711451 :0.12997109183981312 +the:0.40992471424467447 this:0.07513434857442608 in:0.062142831343438815 his:0.05503623100591864 post:0.05307529164419944 of:0.051415119099284326 to:0.04614405559133366 tho:0.018857371634766303 clerk's:0.017732160041093178 and:0.013877859152193297 said:0.011858600735002077 their:0.01117694951937734 further:0.01064019952370287 In:0.010410072146450209 tbe:0.010211010925205072 at:0.009379118539693237 my:0.009006142602303835 on:0.00812983703071271 or:0.00806199431645079 :0.1067860923297737 +of:0.2931363909396721 to:0.12444957638155113 on:0.08568764945710046 by:0.06652521032517736 in:0.05310989826877171 at:0.05050335827482654 from:0.044596359304853214 that:0.03880581738148966 with:0.036038839414755795 and:0.03396911227928768 for:0.024879021240960614 upon:0.017064861717929286 under:0.015499377258139666 into:0.014200055592917793 all:0.010992010843349345 In:0.009508738922073703 between:0.009198679208385555 over:0.00872844065137385 before:0.008308110041624128 :0.053798492495760464 +or:0.20961679065039282 not:0.0769135311126221 and:0.07337862761796406 much:0.0713014517877219 be:0.055713612908220626 of:0.054527803771349324 with:0.04343712594502528 use-:0.03871479111827711 doubt-:0.026499589507274088 no:0.025132373174746366 is:0.020618839158885426 was:0.018351419683791007 as:0.017546105620670386 are:0.016540009871012045 been:0.015822146452831205 un-:0.015813174561232254 for:0.01454299726169879 the:0.014291127323432587 at:0.013357255067624427 :0.1768812274052282 +and:0.07945078535774212 able:0.047256845935618165 enough:0.03640137265895884 is:0.03621045467861801 them:0.035558503932738274 him:0.03468798986766358 not:0.03439675267429215 order:0.030678025755218295 as:0.029545321099570122 necessary:0.02916453467617794 right:0.026545628791906785 have:0.02628444823990758 me:0.02572115141983751 time:0.024860750906743948 made:0.024072552164135716 unable:0.023142056478700556 it:0.02211443533349199 required:0.02168295136870137 want:0.021518324485550838 :0.38970711417442616 +of:0.14586711877621453 in:0.1380287508371596 for:0.09587582426416526 by:0.07986043210293085 to:0.07173346953836729 with:0.06846212674097808 and:0.05491778883031232 In:0.04710805892724575 that:0.044902099806534465 from:0.02348578886573387 at:0.019947454070991716 on:0.017609201604706845 have:0.016882377938735017 upon:0.015912260332924692 or:0.015591363302498832 is:0.015534798743865081 make:0.015229773124181575 made:0.012205005050142303 had:0.011415277136353362 :0.08843103000595856 +to:0.569001326192878 and:0.12219273763610017 will:0.05176275204853129 not:0.022930038026523478 would:0.016183593361822547 I:0.012087152634634845 must:0.01187483846170907 they:0.011175773938294506 you:0.01051927719009468 we:0.008766722668694547 who:0.008751866120795683 can:0.00872308412661742 may:0.008197111941968795 should:0.007988378676330126 shall:0.007110522376824809 could:0.006712067845203337 They:0.004866099732269824 To:0.00447587723437812 We:0.004274077389563477 :0.10140670239676522 +of:0.1314176929207559 know:0.12391109480481018 and:0.08079312440745941 to:0.06567204459842962 see:0.0453605820085193 in:0.04022320372605942 with:0.03683985287812372 matter:0.0365393995489394 some-:0.036209050260842264 is:0.031612276816158344 for:0.028229196787949523 from:0.026532354631379755 but:0.02588405875236502 just:0.025308530864495984 do:0.023180236914758356 tell:0.018961826133656982 knew:0.018271993279031732 that:0.018173491066494903 or:0.01714707901216467 :0.16873291058760553 +n-:0.03931192094570072 the:0.036369232137711316 a:0.030984072463725962 and:0.028314342773097183 to:0.02378741159276309 -:0.01764294646312157 his:0.011418537770896383 not:0.010448492839890104 her:0.009846812199438185 I:0.00927723148049069 :0.006989573856980439 will:0.0052893806214407545 it:0.0051802969022502815 en-:0.0047271976152857 of:0.0042320569548770625 t:0.004211334861800251 him:0.004120080769072131 i:0.0038927352724079656 :0.003856023039275083 :0.7391003194397752 +State:0.1952370631802787 day:0.08584878560599392 state:0.06802208821265548 county:0.042233627141941794 city:0.0402440546366346 line:0.04019200276958589 County:0.03568141485613716 side:0.019095162721457146 corner:0.016491640411958858 Bank:0.014314629534506832 acres:0.0142656331983277 Court:0.013498708193852264 part:0.012797799683885783 Board:0.012570648870284418 land:0.011465784043603933 act:0.010078460456628467 Secretary:0.008476329265582956 town:0.008199082881477244 City:0.00814070237618785 :0.342146381959019 +and:0.062130046958630766 him:0.04826661024254473 want:0.04553366651097016 able:0.041695045206483844 is:0.03771226571367157 enough:0.03649423108236219 have:0.03384494408444413 me:0.03191512189763554 necessary:0.02924435678580023 not:0.02891928579168823 had:0.028778423427743643 was:0.028605473905719287 wish:0.028115364668226183 time:0.026545055490378888 as:0.02591596094868502 needless:0.025356658901102565 order:0.025277091069883694 them:0.023257418664843935 fail:0.023176692094579742 :0.36821628655460564 +and:0.03868242960999506 as:0.031124813427855922 went:0.02352509775927722 him:0.02196555539050794 them:0.018760608639018784 up:0.017985449426794205 is:0.017894175620344187 go:0.017174904667157563 able:0.016756848979943888 going:0.014481672239490295 it:0.014128375989346808 was:0.013277058274565138 time:0.013249953793837373 not:0.012469887553778763 began:0.012465717758716884 way:0.012105610030480113 back:0.012090864562211581 right:0.011941707822828511 amounted:0.011564315359310868 :0.667354953094539 +the:0.26462728175450395 of:0.1684344667757036 a:0.10527960408649424 and:0.06068120249957785 by:0.0510414444054166 to:0.03849778659170389 The:0.035757518504603916 for:0.033442007089705156 his:0.02627416372759531 with:0.014744966432656487 no:0.013771571457737514 tho:0.012755164854075468 every:0.01249007169278282 some:0.012147312834436808 as:0.011050630945664455 their:0.01097611294776929 that:0.010368450091021084 any:0.010238083182771583 or:0.009685713928650056 :0.09673644619712991 +and:0.07181562702745725 together:0.06672214896410926 connected:0.05460722541492519 connection:0.053485248068146786 accordance:0.040816432970329504 comply:0.022327715315442986 acquainted:0.01991331996883064 compared:0.01902004432375884 contact:0.016949822974841922 familiar:0.016791563233682194 up:0.016271038698657696 do:0.015355480362757417 interfere:0.014875808889703945 charged:0.014646284015101253 pleased:0.013610051164447858 him:0.01274062267734275 but:0.012200014478196207 satisfied:0.011962054640116513 it:0.011810815262474694 :0.4930786815496771 +the:0.3354005774889342 his:0.09396367904267826 of:0.08830860767529898 to:0.07277861347769281 their:0.05923402546824873 in:0.043964909274897074 a:0.04393658585936563 and:0.02726808990553995 our:0.023438243607002477 for:0.017975886479900935 tho:0.016929406297166643 my:0.01560683046093752 its:0.014781552441539064 I:0.010528700347027868 by:0.010420225911805114 her:0.010412477185484931 your:0.0101857619109349 from:0.009891145803241292 The:0.009176861152689727 :0.0847978202096139 +as:0.062484676329274694 up:0.05764084372569128 came:0.04803855230936549 and:0.04507298757476335 come:0.042563115017869246 sent:0.031180349492975247 back:0.030799901366219386 it:0.028096687047703114 presented:0.024905050278724198 went:0.02426565213931646 brought:0.020614433613923372 occurred:0.01962404268736124 given:0.018761278859887563 seems:0.018471993627436914 made:0.01772642698342769 returned:0.017719892999435435 known:0.01765452298311619 down:0.016713179818743876 seemed:0.015772816593147266 :0.440893596551618 +the:0.12726855910616955 and:0.0892959780159441 of:0.062229337879632314 to:0.058292991969480845 in:0.037889522208997196 was:0.035486090111862774 a:0.03277831520841599 be:0.02993909980507852 is:0.021492638467572805 been:0.016319288425974923 are:0.01622912479566914 were:0.01571120940653339 at:0.013800451447349702 by:0.013390998935139781 his:0.013046404338315144 an:0.011587498063993411 he:0.010436524486303292 not:0.009967845652912184 or:0.009888058570455908 :0.37395006310419904 +and:0.08995317707915026 to:0.06844710404109794 of:0.04605142056172993 the:0.04074574508561307 which:0.02479116931334353 that:0.023764822140213245 re-:0.020841117231308055 in:0.020803825395358622 for:0.020278423301550053 :0.018417753428486977 not:0.016860793136637672 con-:0.016444405871234195 is:0.014386481772210856 or:0.014080680914153714 be-:0.01352268143271276 I:0.01317002660943805 was:0.011429878269381662 dis-:0.011196807025842847 he:0.01113106290024311 :0.5026826244902934 +and:0.06104239424987204 filled:0.037153355603917956 covered:0.02892901238488039 up:0.02723054063118932 charged:0.023394965350181676 it:0.02110777047729276 together:0.02062722909297857 him:0.019919639482192702 but:0.018611621078098453 do:0.015593743569518077 them:0.012381342614340188 met:0.01190241060168865 made:0.011437511447545562 loaded:0.011104836950256599 down:0.00990539596580468 supplied:0.009319942952857532 connected:0.009176815405393633 was:0.009000152940522622 away:0.008956300416211267 :0.6322050187852573 +:0.06488306779265021 and:0.03845398860230994 was:0.016531892083347623 that:0.01645661979827041 made:0.014835584343731329 it.:0.013858355094845232 file:0.01369338775137818 is:0.010893468326704507 be:0.009349842007826329 but:0.009306189534974519 out:0.008726495817348929 them.:0.007890057836913572 appear:0.007819639354883846 up:0.0076245934578581375 not:0.007543220421766879 .:0.007305364709894093 done:0.007010255498311849 him:0.006970658317107817 part:0.0068746580392174865 :0.7229726612106592 +the:0.297843823747437 of:0.10322639798556592 and:0.04988699667110907 a:0.039557252296714106 to:0.03378230591658804 The:0.028296356177539624 said:0.025500039990818967 his:0.022084551929687255 for:0.019634769519580025 tho:0.01761918995455143 blue:0.01755316005612811 by:0.016446714302218432 from:0.016362939512124267 their:0.015572891924581911 first:0.01500042748806481 in:0.013526179277155987 at:0.01168369928252487 her:0.011105557988372938 with:0.01053370582508414 :0.2337830401541531 +the:0.12656353847069277 of:0.0738442226221621 and:0.06913314890942861 a:0.039166011574347064 was:0.02350290914234182 The:0.023243879459209818 to:0.018994702460914836 as:0.01644402116367434 or:0.015975381860045143 be:0.01473760529129154 Mr.:0.014118986281449565 is:0.014095904316711693 I:0.012972309182993814 that:0.012683213332723797 his:0.012570525609258618 .:0.011525735897999096 he:0.010656427376885743 :0.010017847051422285 were:0.009954635842276367 :0.4687989941541709 +of:0.12638181251097838 that:0.10369050953511498 the:0.0938177093046854 and:0.09285587816736236 The:0.0601398287085435 which:0.03181578174708074 Mr.:0.025941256600142914 :0.025316919365650205 by:0.02096073178249824 to:0.019091633779936956 as:0.018683584041043 Circuit:0.015842690436591794 but:0.013144975484449725 before:0.01194565460435169 in:0.010139567186551563 at:0.009687421870443845 where:0.009661430345540999 for:0.009458608711585197 when:0.008447879066876727 :0.2919761267505718 +the:0.32463947242400487 a:0.1164697976492433 in:0.06743122659871792 his:0.05961168584885119 of:0.05782620195187583 The:0.05320900313805504 that:0.0455091467677124 and:0.03936222441774196 on:0.030954174985688455 In:0.019507704115576355 their:0.019501648362550843 tho:0.016062421198228982 to:0.015749599365799925 On:0.014899031144917743 my:0.01412048680983436 its:0.013138200360382591 for:0.012611013831274314 by:0.011849211301195232 any:0.01157304730887483 :0.05497470241947384 +New:0.9326849676475216 of:0.009695753135044094 Now:0.009108938391110582 Xew:0.008841218401627172 to:0.0028741188756409262 Mew:0.002768836843877233 and:0.0024143270619515263 the:0.001917664931002021 in:0.0014539199669515797 for:0.0014218708551125229 New-:0.0012512612518094028 at:0.0010996632685499508 or:0.0009830886047059065 be:0.0009756544249887587 described:0.0006220553747191937 are:0.0005772144144770031 with:0.000524248711242418 Sew:0.000521381522522204 ew:0.00047393362937095434 :0.01878988268777496 +nothing:0.05192041627506439 in:0.026745318866342675 ;:0.0188587895036715 is:0.016400724432500534 anything:0.014209371835825026 it,:0.01059388031187056 them,:0.008997188553962204 and:0.007792943467295495 for:0.007718573009109047 time,:0.007442329063462084 In:0.0073244418642127475 to:0.007030344120112486 good,:0.005842673929750358 of:0.005701857880603447 that:0.005641131388638686 :0.004834657315943547 him,:0.004824533710393384 as:0.004678569606931128 was:0.0046580119984382575 :0.7777842428658724 +the:0.10785936344840133 of:0.08041832059700071 and:0.06606829444959902 a:0.05643038308012388 to:0.05535280337717975 be:0.02853289252669998 was:0.027105035006482578 in:0.0247654133565907 at:0.015793819366212335 is:0.015728651725315592 :0.013428133240815843 for:0.01204466748614453 been:0.011592220107946525 or:0.011211388204423864 are:0.011026362473945926 his:0.010811659072250212 by:0.010680387155496561 were:0.010201582804998114 from:0.00959972225656998 :0.4203489002638025 +and:0.08676687073119663 made:0.04289809762827496 or:0.03295238075974083 that:0.030657024683744597 him:0.021593848155216276 done:0.021575891202250265 taken:0.021350734398221962 it:0.019344286049495008 but:0.018446792737034715 ed:0.01696578900567161 only:0.016950304529456898 one:0.01682634407284403 them:0.016378191913412367 secured:0.01601423979226343 given:0.014081002149443335 not:0.01339054037852126 provided:0.013125132007317727 used:0.01302620242501305 held:0.012830921053640814 :0.5538254063272402 +made:0.12295450217858875 and:0.06041854365210419 paid:0.031211735161604897 given:0.030564789497382935 or:0.028222327097197655 done:0.02444080212433489 followed:0.024237133421004493 ed:0.0241450021687982 secured:0.02381551040181214 held:0.023079313815226158 shown:0.02221504455064377 up:0.022077445635547196 accompanied:0.02109649213162352 occupied:0.02102704605031922 owned:0.021004096989548634 required:0.019538660402486953 that:0.018798192917460384 them:0.018702973592323775 it:0.018249494761406086 :0.42320089345058615 +of:0.09129790931378902 the:0.07369883040827747 and:0.047842263382354346 in:0.04189055351593407 to:0.04045875475680249 a:0.03542341257202578 be:0.02020462051672066 for:0.01979292654746225 was:0.01760256398103379 at:0.017380150555488715 is:0.014984483003968216 with:0.014047653760730413 by:0.01374644383819499 :0.012670486581795598 In:0.01200961464556976 or:0.011563835749786333 from:0.011391516893522809 are:0.011273104484969465 that:0.010755276030689069 :0.4809655994608848 +the:0.10785936344840133 of:0.08041832059700071 and:0.06606829444959902 a:0.05643038308012388 to:0.05535280337717975 be:0.02853289252669998 was:0.027105035006482578 in:0.0247654133565907 at:0.015793819366212335 is:0.015728651725315592 :0.013428133240815843 for:0.01204466748614453 been:0.011592220107946525 or:0.011211388204423864 are:0.011026362473945926 his:0.010811659072250212 by:0.010680387155496561 were:0.010201582804998114 from:0.00959972225656998 :0.4203489002638025 +of:0.23281369041348215 as:0.07103863791933715 in:0.06308747911169989 and:0.060600310451333746 with:0.06024855787324226 for:0.06001560261153243 to:0.04963563806366433 at:0.043654456101969434 is:0.03625702492188065 was:0.03459297384154298 by:0.029223765983608454 that:0.02509078503848616 such:0.02350848984963278 from:0.021952391479231396 be:0.01664454956893046 on:0.011754944354435254 than:0.011050183595683466 In:0.010696606984818134 into:0.009704815785269173 :0.1274290960502197 +the:0.4277378562953591 at:0.2217099711840499 At:0.0446310797343357 tho:0.028874276132233437 of:0.027235477348364772 to:0.025708475777265757 and:0.025665238005447604 The:0.01885673010148003 on:0.01371808592960121 for:0.013552569384428394 tbe:0.009890769168799081 will:0.009039397433249918 than:0.008818903402395512 here:0.008181507701201365 said:0.0077124658714521725 week:0.0073588294855717355 that:0.0073413724182042695 year:0.006356321896822184 a:0.006024036753335233 :0.08058663597640263 +of:0.14099302775852257 in:0.12945665500027304 at:0.10499182636892174 for:0.08949666925435888 during:0.08267893998853247 to:0.05955747458837054 In:0.046310445714339295 on:0.04620701923095333 and:0.03924863122768072 At:0.024216256282471014 that:0.021058717364206343 within:0.019693509019190494 until:0.019500150890029728 from:0.019372741179938584 by:0.018824136323233955 after:0.017748335374084108 was:0.017079504575661 During:0.016534870500016785 before:0.015096969226122832 :0.0709341201330926 +part:0.062325847554271264 one:0.06063111468590399 some:0.037306181508129276 out:0.030654329894436005 members:0.022088577251346518 and:0.01924141362015411 tion:0.018787037941101363 portion:0.018051689715010356 side:0.017943951891416163 that:0.016507907061938807 member:0.01593843659970584 office:0.01574566960076909 majority:0.0154104008831532 front:0.014054186394075671 parts:0.013607560627939948 payment:0.013458169751259314 all:0.013339146994107673 end:0.012284189708442875 time:0.011200658322325753 :0.5704235299945127 +;:0.04675595624507598 and:0.01633497774837111 them,:0.012855109842841663 him,:0.011875017140695042 it,:0.00942435364223305 :0.007196073713422756 men:0.007136437497371714 States,:0.006734924459674238 years,:0.00651072732160445 man,:0.006508498710755072 disappeared,:0.0060386329474063785 up,:0.005863117626791329 misdemeanor,:0.005445403089238801 time,:0.005413366885596886 :0.0053221323944305345 men,:0.0052157225664396945 them:0.004860500367779453 ,:0.004749433219391613 county,:0.004630980356919123 :0.8201286342239611 +a:0.21238348737869983 the:0.19831727258618673 and:0.10582985722769003 or:0.05712057290801932 of:0.04466075862619501 his:0.020954871983063207 to:0.020906641871698176 in:0.01999858825744358 our:0.018930589666456006 their:0.018749149953957565 are:0.01745839009774853 be:0.016236942976435343 very:0.014872948829144982 for:0.013732063159746209 no:0.013442504828998185 The:0.011892928754504588 tho:0.011834180046221726 most:0.010946978662043944 her:0.010863733613137076 :0.15986753857260994 +of:0.14846889386637643 in:0.0623732867980322 to:0.047801517888225904 for:0.039594246265215766 by:0.02820445912473942 and:0.027645293457448483 with:0.026410593909410723 from:0.025118420806851414 at:0.01992224036759717 on:0.018330565618132615 that:0.015015702802381467 upon:0.012513110132107466 In:0.011536828080162199 after:0.008082041522529539 through:0.008036215353118768 things:0.007305971176430786 under:0.006786903893863458 one:0.005676611584596241 interest:0.005654472712682243 :0.47452262464009765 +of:0.31110428845608123 the:0.13731501982488895 said:0.09007530781682212 for:0.0715216326764458 that:0.0630620871126838 and:0.05337603694861467 a:0.03988472223196342 The:0.03428959313430405 this:0.01816125213118451 public:0.017974696950399837 such:0.017790561921182273 This:0.01768829924347402 which:0.016640476526282953 or:0.010575378970533114 private:0.009824394260554248 last:0.009747549533991791 no:0.009600486879066157 Said:0.00874263796574058 his:0.008223000897765119 :0.05340257651802137 +all:0.20154215728878747 and:0.05405446887655542 it:0.03637333339621838 went:0.03342871232646321 passed:0.029408976239411026 spread:0.025020294062740422 go:0.022439883451225287 control:0.019929735159354922 turned:0.018818585856584 or:0.01876954656172825 looking:0.018125663342489832 come:0.01799181412863207 bridge:0.01668770924827385 them:0.016249817433562356 came:0.01579687124187685 ing:0.015740254251981067 presided:0.015648734665816413 out:0.01531983428044253 scattered:0.015087531529920314 :0.3925660766579363 +of:0.09129790931378902 the:0.07369883040827747 and:0.047842263382354346 in:0.04189055351593407 to:0.04045875475680249 a:0.03542341257202578 be:0.02020462051672066 for:0.01979292654746225 was:0.01760256398103379 at:0.017380150555488715 is:0.014984483003968216 with:0.014047653760730413 by:0.01374644383819499 :0.012670486581795598 In:0.01200961464556976 or:0.011563835749786333 from:0.011391516893522809 are:0.011273104484969465 that:0.010755276030689069 :0.4809655994608848 +the:0.21719897237408833 of:0.0828065165714932 and:0.07893875151120436 a:0.0548807882887447 The:0.03168597070518702 Mr.:0.02254814710458756 to:0.020125659357622106 in:0.0180198143322914 his:0.014951822131353085 tho:0.014344524882490037 or:0.013552932629463877 for:0.012099958775102022 that:0.01005351408975226 as:0.009443138806516253 at:0.009175772766899574 said:0.008848049897578739 was:0.008783617800808462 this:0.008343318225221585 their:0.008292911410822654 :0.35490581833877277 +of:0.26440949904432437 in:0.23162604973425974 to:0.09918940491910981 In:0.044463183968398684 that:0.040379615163867115 by:0.03940958783087552 and:0.02881782130566534 on:0.02815165886323919 for:0.027704347603570233 with:0.025468929903345306 from:0.02210915991216558 under:0.014462004769851537 into:0.010961995420477393 upon:0.01028192702915851 at:0.009303717691233993 as:0.008805894188960871 when:0.007868494732476096 which:0.007434336830192055 over:0.006515127631836822 :0.07163724345699186 +was:0.13959683059867245 is:0.11590290562733506 are:0.09045428638417227 and:0.08493205325779314 be:0.08008242655967666 been:0.06690455432058548 not:0.04873557686003957 were:0.04162824673735158 have:0.025801976670797627 has:0.025244643103815842 had:0.018491383226809488 Is:0.01715307485609574 of:0.014104759394574205 or:0.013300967735892538 being:0.012602273335671573 to:0.010802146512201205 as:0.009746485521307554 become:0.009134142266534579 do:0.008719134424667962 :0.16566213260600546 +was:0.19233456381466327 be:0.1212235230516721 well:0.10502715284167963 were:0.09017649406160735 are:0.07115236925192069 been:0.0585513943516975 is:0.04935974225299496 and:0.04757070207854654 being:0.017902668529322666 have:0.01443570867978747 as:0.013906857339459339 had:0.013551127315435636 he:0.013379904285769023 bo:0.008149287277683064 has:0.007374960799375071 not:0.006818022496178305 Is:0.006195381110828881 it:0.006026066472235703 the:0.005983530840064531 :0.14988054314907828 +the:0.43156416274045806 of:0.10570662258423345 an:0.10452979340372669 The:0.10211910007544674 and:0.04449198412971118 in:0.02222728317308208 tho:0.02052248887449582 by:0.016134534088429055 with:0.01408123201484226 on:0.01370060722886758 that:0.011730165169340862 An:0.00965929317324599 for:0.008878345320082106 tbe:0.00844428869851513 North:0.008164040985556197 our:0.00793002184845233 from:0.007795405412977856 South:0.007030784588118368 a:0.006938549703617202 :0.04735129678680101 +the:0.1772768824207968 of:0.13520895091588084 a:0.07642039322448566 to:0.03891785752287134 and:0.030632492216555462 in:0.029993330789125857 The:0.022655381052341498 by:0.017533578130696233 from:0.014862871176906984 that:0.013636479157235655 :0.013628709824387703 on:0.012483427699336963 as:0.012375229431521417 with:0.011276041844694001 A:0.010642649611770433 tho:0.00919392127619393 at:0.008222736075542466 for:0.007764887107961462 In:0.007143355032465521 :0.3491308254892298 +that:0.1574215159586064 and:0.09397018660301096 when:0.0654374835286228 but:0.04889022907740693 as:0.04158003707633958 which:0.03420508527982257 if:0.027103823983256572 until:0.02168896454011524 When:0.02104755341566531 time:0.019138025878878882 where:0.016092507298780364 :0.015417074666674808 But:0.013953564269364718 while:0.0138192965287086 If:0.01341652460434655 what:0.012122577570804951 thought:0.011198583387812077 because:0.010526750990031999 before:0.009637997911740514 :0.35233221743001014 +the:0.20538859117397007 such:0.1010281788600877 and:0.09996150485535102 a:0.05016569518737343 or:0.03951944599744554 The:0.03917076085271314 of:0.03163541476603142 this:0.030564863249663676 that:0.0290662156470217 her:0.02828931025050081 it:0.025160961892501044 said:0.02505360129369919 only:0.024795003550941948 tho:0.024664924210616546 large:0.02400441334095649 to:0.02307734394528203 than:0.020642442246496445 his:0.01834939255258122 their:0.017501099080532795 :0.14096083704623377 +man:0.12423793828039568 one:0.0570578411545404 and:0.05026030715833204 those:0.050086532259839625 men:0.03684323003131193 person:0.03618728992407981 woman:0.02495801905466428 all:0.019410807292980392 people:0.012821662518036929 persons:0.012618030755432563 man,:0.011038218736542406 girl:0.01031960025710095 gentleman:0.006638752059877602 Those:0.006465093596141084 farmer:0.00607161285980784 others:0.00603067178102228 he:0.005864737290369572 of:0.005290588156863596 but:0.005257778806612209 :0.5115412880260488 +of:0.29599594722234923 the:0.1767978822273877 in:0.12818905941174474 and:0.05080480940196433 for:0.040273310153067995 their:0.03445146154611716 this:0.02999632993587974 an:0.027291390017887357 his:0.02334297240034247 its:0.02227391651121129 with:0.019452842658114086 great:0.016028436413803707 In:0.015940282111395015 to:0.01351527772251659 into:0.011548020699512173 other:0.010754765884252565 good:0.010595352940721205 our:0.01042082899828566 no:0.010157540230956406 :0.051169573512490546 +of:0.170179042190255 in:0.1089168214556559 to:0.07790807087824261 with:0.051723341442285686 by:0.050833355685639355 as:0.05049566436072189 is:0.04393771356188501 on:0.04304867219746812 for:0.03674721686962845 was:0.034994949959267635 and:0.03257662763970095 In:0.028719578453101142 that:0.027030602230472527 from:0.0265419558240762 have:0.018058618986423955 be:0.017905811583506633 had:0.016850119630461634 at:0.01678363478213871 made:0.015684024944122337 :0.13006417732494624 +is:0.18128137132245542 are:0.15181469941900885 was:0.1335246275474002 be:0.0888820202927982 were:0.06066221398900885 and:0.045495322106375434 the:0.042267646142542366 a:0.03984674528949221 been:0.03523561947453549 not:0.028574213150733992 Is:0.02330989831718232 being:0.01543148902386962 but:0.013561661232457337 very:0.013058720585732377 it:0.012191692654014421 so:0.011656594788096823 am:0.010844586785311163 became:0.010764167509172603 I:0.008647156573997979 :0.07194955379581437 +and:0.10567691123919132 to:0.06584999623923687 the:0.050216718435014865 of:0.03994015693853332 that:0.02368567769860365 be:0.023521197657197866 re-:0.023405939818316863 I:0.023226879269797916 in:0.02081239467086493 not:0.02036132054844808 will:0.02032153440996068 is:0.02028731912560614 or:0.0189683991589476 much:0.018925699975747654 he:0.01866364822002203 which:0.01842451261981577 was:0.016287131017074907 they:0.016150572493955316 who:0.014616814715569026 :0.4396571757480952 +the:0.7484917741815862 The:0.06417517262219807 a:0.04461999801193277 tho:0.03568782894834558 tbe:0.013101251210657573 and:0.008233582744055199 this:0.0076895722894189875 of:0.007246171267425263 A:0.005059701490957129 his:0.004694408219064681 our:0.0033623943498653146 Tho:0.002218747446022244 tlie:0.0021006940871466985 its:0.00208320468645359 their:0.001899962922672041 at:0.0018329587327951967 new:0.0016880750592780617 that:0.001664898029910199 your:0.0013794870339589771 :0.041770116666256275 +have:0.36483066997947167 has:0.27251126830196165 had:0.18132778406146402 not:0.042744749512656624 having:0.033771942708701735 never:0.016087946944216815 lias:0.009754541493862092 ever:0.009365785686779744 bad:0.008613292748499923 havo:0.007132508113855119 already:0.005499202092236322 yet:0.004918789997037485 always:0.004643247295843113 just:0.0036448741166777046 haa:0.0034870748843336056 baa:0.0034752575672032096 long:0.0025452540456514586 bas:0.002376009488591812 hare:0.0019107145558220986 :0.020359086405133835 +is:0.18980862663719206 are:0.11672819096036031 and:0.07942593226341389 will:0.07601480056303517 not:0.049245031299806535 would:0.03860180519378508 can:0.03376957960170494 Is:0.031844733937388785 we:0.030668412241074465 may:0.028284374161401237 a:0.0244102209574816 but:0.023925611138456163 the:0.023899627043685912 I:0.021679730605758254 they:0.01977181592790158 was:0.01904746089947903 it:0.01903059791595178 that:0.017310573596172094 have:0.017304423689967915 :0.1382284513659832 +of:0.28767355066866834 to:0.08775711267569858 in:0.08678131196995101 and:0.05160598694501188 on:0.04646139928102899 by:0.04519522654900943 for:0.044547789071328545 with:0.03396756772609607 that:0.033699232901107726 from:0.03075346596941143 at:0.027039283056790858 In:0.021061449543044047 as:0.017514234937992545 all:0.012543839382496166 upon:0.011844431150487573 is:0.00998972746569266 was:0.008814315973987914 into:0.008557199930727406 through:0.007781895704231326 :0.1254109790972375 +I:0.1672803105231719 1:0.062215050984893806 and:0.059402180011718306 they:0.054039885580135394 which:0.049335297828146274 that:0.04821019025181406 we:0.029104602733260265 would:0.028539563066143463 will:0.024633749440422018 who:0.02087472325647246 to:0.01843817076079498 :0.017172697596646868 t:0.01689941323625482 he:0.015008440056803948 one:0.014103103967804984 They:0.012301260679538064 not:0.009078877478932936 but:0.008735520859673341 you:0.00860000953796764 :0.3350269521494045 +hundred:0.02334136986593815 up:0.005482494641173394 men:0.005366536521246011 Hundred:0.0047587970519216575 John:0.00441808156134956 William:0.004390720675819281 him:0.004016828614280843 ;:0.003997112205305733 due:0.003721199871732 in:0.0036582900032443304 time:0.003637206863828461 James:0.0035594902370151707 out:0.0034878448964120057 .:0.003467980723571515 1:0.0032804584819785204 day:0.0032444781513863933 ,:0.003058139385740603 :0.0030314555521939613 Robert:0.003005471634785646 :0.9060760430610768 +it:0.2867903312290399 It:0.21189663858499053 which:0.04550171358954664 he:0.03679048188854266 and:0.0341174713395786 there:0.03361212648706139 that:0.028923410374055773 This:0.020266584077153985 He:0.0164993182706602 who:0.013694320565577884 this:0.01333398706363873 she:0.013053707314985324 There:0.01250193647691774 what:0.008868781701629377 as:0.007090207325474908 She:0.005815800967385136 man:0.004603472912953134 but:0.004170138648379868 lie:0.003494400916497519 :0.19797517026593064 +and:0.11118265212736868 was:0.05284717662579494 be:0.025320724281901196 feet:0.022636042926156348 situated:0.02215008174567666 that:0.01987310138107424 been:0.019143972608707545 is:0.018529740765051258 made:0.016692582041185438 published:0.01638047473372513 were:0.01606467881877455 as:0.015957160663391746 land:0.013227812405875214 up:0.012237690888779332 Monday:0.011383472039584848 or:0.011234180832920188 are:0.010331961777593357 being:0.010116337190812712 came:0.009980472702414277 :0.5637096834432123 +of:0.4044368889096365 for:0.0902288762158626 in:0.08217485553726606 to:0.06548591748630632 and:0.045709643418371505 by:0.04461213693134369 that:0.033698074526872304 on:0.024861021796200537 from:0.022906973316226174 at:0.019332408119114002 In:0.01807884072579646 with:0.01673483456214089 which:0.01397541905914361 upon:0.013972641280417827 all:0.013315670124393887 during:0.01288515653003491 as:0.012371789063335347 when:0.009296616864692502 throughout:0.008389304683269897 :0.04653293084957498 +of:0.15933519964801454 in:0.08191482296606195 to:0.06810967006234991 and:0.04462025426623595 from:0.0436350511037413 for:0.0398049665953738 In:0.03900261377265006 at:0.03527209828985253 on:0.033635404357407965 with:0.026690539984351475 by:0.021841914675376665 :0.016731014769812848 that:0.015963034146673095 all:0.012389756975426918 do:0.009599547339990331 or:0.009278565358986324 upon:0.007804089781004642 through:0.007689146464578355 the:0.007390053858978282 :0.31829225558313307 +and:0.06454739073657131 demand:0.023313300174744492 ready:0.0192991955467307 used:0.018559068069203856 time:0.0167973135366693 not:0.012889415712033305 vote:0.012868664167591082 it:0.01277775949265748 candidate:0.012059490274945432 him:0.011492660117416436 them:0.011389360230310022 called:0.010603763162339089 made:0.01030049958521204 up:0.009942829375404135 was:0.009875709402481388 as:0.009516893763303088 patent:0.00929908628672026 or:0.009178704268878403 but:0.00882338719685127 :0.7054655088999369 +of:0.2543377493135862 that:0.09753107036167163 and:0.08756585507627783 to:0.08523872447634134 by:0.06193557472843872 in:0.05534392976363698 with:0.035550255984616315 from:0.030130009585395676 for:0.028711125952933316 as:0.025462997707111846 all:0.01729407542720728 on:0.013974814924510505 which:0.013368627794540427 In:0.013280512479674109 under:0.011858909306521411 upon:0.010055881285067108 but:0.009753919603625321 at:0.00824209659471873 if:0.008240285855611935 :0.1311235837785133 +is:0.0959868528833638 a:0.09053866092929955 was:0.07385369591524597 the:0.05853156337528069 had:0.05848713218144276 and:0.05489452877911121 have:0.04810265097135334 has:0.0464993219450544 are:0.04069485716147188 of:0.026570134088502128 be:0.02207207269731123 were:0.0196373807754857 I:0.018233884362450277 Is:0.01807666181580345 been:0.018022090499390457 that:0.01661751110833294 in:0.01334562006315228 but:0.013017702938781746 it:0.011745369711688295 :0.25407230779747786 +of:0.28767355066866834 to:0.08775711267569858 in:0.08678131196995101 and:0.05160598694501188 on:0.04646139928102899 by:0.04519522654900943 for:0.044547789071328545 with:0.03396756772609607 that:0.033699232901107726 from:0.03075346596941143 at:0.027039283056790858 In:0.021061449543044047 as:0.017514234937992545 all:0.012543839382496166 upon:0.011844431150487573 is:0.00998972746569266 was:0.008814315973987914 into:0.008557199930727406 through:0.007781895704231326 :0.1254109790972375 +be:0.42889885608947154 is:0.09036155913988073 was:0.06632352086949399 been:0.057612675232788235 are:0.043330097410156726 not:0.03903802593524563 and:0.03628048530123498 being:0.029744050883256285 as:0.025430349244436014 he:0.025427014423150207 were:0.02363702601076828 bo:0.0204532554551006 so:0.019546830507640743 now:0.012969604812218757 Is:0.009593740213435302 ever:0.008494181656454996 well:0.0077741866864193265 much:0.007666494404800217 generally:0.007567990838447081 :0.038850054885600324 +of:0.28767355066866834 to:0.08775711267569858 in:0.08678131196995101 and:0.05160598694501188 on:0.04646139928102899 by:0.04519522654900943 for:0.044547789071328545 with:0.03396756772609607 that:0.033699232901107726 from:0.03075346596941143 at:0.027039283056790858 In:0.021061449543044047 as:0.017514234937992545 all:0.012543839382496166 upon:0.011844431150487573 is:0.00998972746569266 was:0.008814315973987914 into:0.008557199930727406 through:0.007781895704231326 :0.1254109790972375 +and:0.4047542688009672 was:0.07894141317014523 He:0.03744536128498641 will:0.033318992452366844 is:0.030314403224453074 shall:0.029519825520311096 were:0.0285609838197432 are:0.021056384386633722 would:0.02043741419131275 Since:0.01897650310383738 They:0.017236013973666708 he:0.01619794613146949 may:0.014749346008942343 who:0.014537063650939541 not:0.013877456074731839 it:0.012459796064552562 And:0.011669162522763257 do:0.011244675657822056 which:0.010567359151290569 :0.17313563080906466 +hundred:0.02334136986593815 up:0.005482494641173394 men:0.005366536521246011 Hundred:0.0047587970519216575 John:0.00441808156134956 William:0.004390720675819281 him:0.004016828614280843 ;:0.003997112205305733 due:0.003721199871732 in:0.0036582900032443304 time:0.003637206863828461 James:0.0035594902370151707 out:0.0034878448964120057 .:0.003467980723571515 1:0.0032804584819785204 day:0.0032444781513863933 ,:0.003058139385740603 :0.0030314555521939613 Robert:0.003005471634785646 :0.9060760430610768 +the:0.35899994574796346 an:0.2717573516652959 The:0.046783030419972914 and:0.03241692309963451 in:0.02798002496796323 An:0.025064486523673428 tho:0.019255918028063417 thorough:0.01872224727750107 a:0.01391769871133438 general:0.012660605607610934 any:0.010783942419858078 In:0.00906818198891402 tbe:0.008278340067047201 of:0.007673460438898245 great:0.007451066875039271 or:0.007352406539978848 every:0.007289285923321449 this:0.006321337063109662 no:0.006244948408873156 :0.10097879822594681 +and:0.05917734571267282 closing:0.04405297983259551 was:0.026323119710997635 valued:0.021005792503071843 held:0.01922887441606307 sold:0.018225285914023 2:0.017782437938973866 is:0.017552850459549643 arrived:0.01662711812741857 be:0.01645048243064216 are:0.016339673120917095 White:0.01533836240735085 not:0.015154252504664439 as:0.012706467917481812 that:0.012063629264509927 estimated:0.011864260728812118 Dated:0.0116063700277585 or:0.011444173640079769 made:0.010438189210536826 :0.6256183341318805 +it:0.048690672248253644 and:0.04310286718041151 that:0.030904622558077556 as:0.020843486987922318 to:0.018172414873325105 It:0.017969924032012766 of:0.017334645426909937 I:0.017051248149108765 man:0.014102716654094806 State:0.013155335689663974 which:0.012486780586198612 sale:0.012290253713281171 .:0.012273657267616691 work:0.012074035136456319 county:0.010884000489585337 but:0.01087688669972872 :0.01038942712798418 for:0.009870399158563019 in:0.00942629028322641 :0.6571003357375792 +of:0.12756523706403983 the:0.10843397699362743 a:0.07740009216806992 and:0.05432559599501301 in:0.04746526973913096 to:0.04358338018599103 for:0.04067532865024859 on:0.014938006500531068 by:0.014158145353617653 that:0.012140091940377492 :0.01185510970485992 as:0.01178506723425816 In:0.010841138239702834 one:0.010240508282469892 all:0.010198106418212713 with:0.010050113173485649 from:0.009222719452039407 or:0.009155633711439003 at:0.008384734270045007 :0.3665817449228404 +of:0.3716387075413922 in:0.09671903698821724 to:0.0772075233545754 that:0.03470020597158995 by:0.03467173475791107 for:0.03263341336115185 with:0.028661689284926923 and:0.02333245779896124 from:0.02206771351492586 on:0.021639399931672236 all:0.01921934823067841 In:0.018242067024192923 is:0.013988758873468544 at:0.01381994875305849 as:0.013504059774881573 upon:0.011235428945220331 was:0.008596785620363236 over:0.007942663213454808 which:0.007712703129565481 :0.14146635392979218 +and:0.07558940021936399 recorded:0.030196237618668006 was:0.028917161578042846 made:0.027969746247669736 that:0.027730098932509103 o'clock:0.025060522019555328 up:0.023026552239529506 is:0.020398277211376416 found:0.02003101797656537 placed:0.017482208134164214 out:0.016937164562539058 place:0.016819459500107596 interest:0.016629321966808677 him:0.016002796715253755 situated:0.01573420479581609 it:0.015128305982428461 them:0.014715943643665314 part:0.014646613000297721 interested:0.014450471929902294 :0.5615344957257364 +the:0.7356134296380729 this:0.044328171537282295 tho:0.04156710323956371 The:0.032745878224928936 a:0.024475661936553136 said:0.01840579439448456 tbe:0.01754639066722662 and:0.012228613422091096 that:0.010960639300324503 any:0.004580513796278478 every:0.004400588412407166 great:0.0039913694474049905 or:0.0038673952244354243 other:0.003766606187592172 our:0.002940269883367216 tlie:0.002880546857859609 of:0.0026542422356104476 tha:0.002372336798741044 whole:0.0023396022584095807 :0.027334846537366193 +a:0.5528371542444236 the:0.17527652472242986 and:0.06699847722083929 of:0.03099030305125524 most:0.030046115159171532 The:0.02393831582561197 to:0.011491469671414003 A:0.011279302801567779 in:0.009626288201245576 with:0.007880626130918294 tho:0.0070887322353762085 very:0.007035885975616891 some:0.006024206772564964 that:0.004855557643292629 is:0.0045118563057151935 more:0.00421327792315284 their:0.004136331443178318 this:0.004019184012106175 his:0.003954243255430381 :0.032796147404689335 +as:0.05110605377922601 and:0.04612307563559411 right:0.034204792852532674 able:0.026572826173109916 necessary:0.021300196321598082 him:0.020823169270590153 is:0.01874344811119903 made:0.018617584565676533 time:0.018284130937250405 order:0.01801561131290911 enough:0.01777400486254779 going:0.016435008103064586 them:0.01635129260515571 power:0.01604877320185154 up:0.015616840315135506 go:0.015380455922940421 out:0.01386840052077512 went:0.013787726523389682 allowed:0.013542786614996267 :0.5864038223704573 +for:0.09589022469997553 want:0.09321169822190957 to:0.0654505170795788 ask:0.06093343253128139 give:0.059627846285204344 and:0.049140055460336625 enable:0.04533829357245557 refer:0.043600422041644056 of:0.03730662237786018 tell:0.03370679844951358 from:0.03341886773740805 send:0.028784324744839326 that:0.02865014950602832 with:0.023413540136049744 by:0.02250324637799912 in:0.022387739757266108 advise:0.021552221507098863 upon:0.02146452263112902 do:0.020984610555797284 :0.19163486632662452 +I:0.7789618884661464 "I:0.05878265948473135 1:0.04237755169079885 and:0.025283996504114486 he:0.007377299298721192 have:0.004880375077552727 you:0.0042719791517796145 we:0.003790443897871985 “I:0.003661712677035513 the:0.003357461611087976 to:0.003344721195840453 that:0.003147025868178324 who:0.003001621810683844 which:0.002715738051794684 had:0.002551155912755761 "1:0.0021623624869929947 not:0.001994099213277125 they:0.0018760495842282576 all:0.001631589515964896 :0.04383026850044361 +:0.09015019032178499 it.:0.024799751118739517 them.:0.015351484675957448 time.:0.011300184868066969 .:0.011191505521423357 him.:0.010943483772894504 country.:0.009584206927118482 year.:0.008536048182227161 day.:0.008277509494254983 work.:0.007479390514912765 years.:0.006320987682220148 city.:0.005605176436351772 of:0.005570580097427086 tion.:0.005530037742103197 way.:0.005310322249188604 place.:0.005268863947821191 one.:0.005196972164867925 people.:0.005164624590909069 night.:0.005124443329698491 :0.7522942363620323 +of:0.3157223959689328 on:0.10187003802505157 in:0.07676360698872402 to:0.07564938379720933 from:0.047453640875799556 at:0.039423752075449084 and:0.0373248992014448 for:0.03318814081166521 by:0.027393071566999005 with:0.02649693834373459 that:0.024416120132083042 On:0.016435150388770907 In:0.0162250183887757 upon:0.012274319817743509 all:0.010556202402533122 as:0.009307131375204543 about:0.008271595622068873 over:0.007513215693218687 during:0.0068226052498594 :0.10589277327473226 +the:0.5733248876013803 The:0.0369327858035962 a:0.03328659777819029 and:0.03146634358454129 tho:0.025711864204181357 an:0.02351063253933605 great:0.022581525818929676 by:0.017710148945240034 their:0.014703558560680213 large:0.01186838182006009 tbe:0.010602043380978974 any:0.010194599879121266 of:0.009438323149939898 its:0.009057951972274677 undue:0.00886014496740351 his:0.00834856004296855 our:0.007453988543039202 every:0.0073142396652442765 powerful:0.006918170401017376 :0.12971525134187664 +of:0.26905385947271643 in:0.11013621148641586 to:0.10878495478548646 for:0.07642524593774788 with:0.042444689862720555 by:0.041560219754647916 from:0.04128591439847503 at:0.039579019990312804 and:0.037722769363141916 that:0.03242299944455765 In:0.027858045280427256 on:0.023313539462287404 under:0.02317316877454335 upon:0.015239434899557529 as:0.011536892724292244 through:0.01079340647772364 all:0.010565205948550782 after:0.00960677079519595 into:0.008438051619637352 :0.059059599521561985 +be:0.2705099659883182 was:0.17732454994730004 been:0.09662268151712901 were:0.06725758955806084 is:0.06313181885792221 are:0.04656005269561625 and:0.037609251249991836 he:0.03683620944302668 I:0.02516610981012206 bo:0.01768780195991004 being:0.016728362506327775 have:0.014345051082676035 they:0.013319993698698976 had:0.012061122811872084 not:0.010603035760537862 we:0.010571564080551373 Is:0.010033330751048394 has:0.0072766057855768755 He:0.005437391220011421 :0.05991751127530207 +I:0.31039460107576367 we:0.1372821739676762 to:0.11469431421296801 We:0.07003779439942814 and:0.049560786513113485 you:0.04095992471518175 not:0.035173621327145015 they:0.03203459972354753 who:0.02857033683156602 1:0.018459685287160098 "I:0.016572072215680755 They:0.01359663357631531 don't:0.013347510544413098 that:0.012913837185124214 the:0.008147408814134498 wo:0.007539295209163423 which:0.007202488916446047 would:0.00551587600932735 but:0.005041584963403435 :0.07195545451244197 +to:0.4902874147348861 with:0.06795523754503957 of:0.05805805820399682 for:0.04477478736497587 in:0.036974015197608186 by:0.021143819817495926 told:0.018031558989098875 and:0.01606802374991514 upon:0.014834933381192633 on:0.012876126020029669 from:0.012586132668138496 see:0.009968287909444347 In:0.009563924676886763 into:0.008310486962455928 against:0.008284729308296584 about:0.007706917510295441 under:0.0074528752759002535 saw:0.006721111949847787 around:0.006463886177495484 :0.14093767255700015 +the:0.16807735899698817 of:0.10541662057906837 and:0.05138367848570702 a:0.04141865232648221 to:0.0385989743764065 in:0.026264864977736738 was:0.019530675665220657 his:0.018900421021236905 be:0.017373825006196972 their:0.015767721170721456 for:0.01557246589796783 with:0.014071419046630446 is:0.012922913111931644 at:0.012690452250034052 are:0.010702713108721902 .:0.010158075558988393 Mr.:0.009672788574483367 tho:0.009612591781990074 were:0.009549306361446321 :0.391314481702041 +was:0.11057926507563832 is:0.10352263032119868 as:0.09604473379802402 a:0.06978047954708655 are:0.06631166779916271 so:0.06404481141473614 be:0.05005095390814058 and:0.04960114957070651 were:0.045080606842538 very:0.031212996422632068 pretty:0.025862721895633094 been:0.022745743873341388 the:0.02145600319971093 do:0.02135526264751183 Is:0.019549198992546243 not:0.017649600156958666 or:0.013585156648133744 being:0.012469345148608422 had:0.010249167389393273 :0.14784850534829883 +be:0.13250487355961812 was:0.09011243797055414 is:0.07079367746995793 are:0.06060676941611505 and:0.05072659740135793 were:0.040597656117391225 been:0.03978970252778393 more:0.031033796206168925 not:0.022402068239289388 being:0.01938011919203494 have:0.01803655673183725 so:0.017794053479482902 all:0.016642821478269218 do:0.01656768669411429 most:0.015873788859469537 had:0.015643323207118275 Is:0.014460394283716453 it:0.013031291602244298 very:0.012441846875655645 :0.30056053868782057 +of:0.13917146145420697 in:0.09017536636107427 and:0.0820741366481696 with:0.06842278274206942 to:0.05753477506951965 for:0.05233480565750112 by:0.042749950214104215 such:0.04180680620441987 as:0.04072415825260824 is:0.039907492568008886 that:0.03926466833561838 was:0.033564467532931686 at:0.025759191119768335 In:0.019237944905973133 from:0.019098128667011792 have:0.017785295236003165 be:0.017305266611436346 but:0.013799191441926574 on:0.012294781883950815 :0.14598932909369755 +the:0.11919516938815296 of:0.07230453158552728 and:0.05781056740443249 a:0.043018564803886335 to:0.031305092790907506 in:0.020848713353460488 at:0.014270110001066288 .:0.012526810245749479 :0.012413283442322082 for:0.011719122709941797 by:0.010808400946589808 or:0.010404172990115616 The:0.01003576004804544 with:0.009811868184449042 tho:0.009295902015355835 was:0.008924239095331684 that:0.008672304223433876 is:0.0085591147338948 be:0.008335143826716943 :0.5187411282106204 +the:0.15222905078516735 of:0.10265370743233825 and:0.06865035107460918 to:0.056210920035771286 a:0.03870913449841078 be:0.035426529064451186 his:0.03107180083403778 was:0.03013024236964306 in:0.02311804390746845 is:0.022982270416614558 at:0.019265184189083413 their:0.018576049028985974 on:0.013508261462182985 are:0.012820859341422438 not:0.01238749207080837 its:0.011193067503537242 this:0.010848474821528254 with:0.01077550342302944 were:0.010618728628137005 :0.317824329112773 +the:0.3371057723418612 of:0.05024557799628089 an:0.04727277250493661 in:0.03512838611894477 American:0.03480138562427514 his:0.026119298279448314 and:0.02512002477400394 any:0.022169264571871582 their:0.02019871343048594 tho:0.019472511202934095 our:0.01801562992669037 young:0.017909943251282277 other:0.01711373005822614 The:0.014876874711432177 old:0.014197078308307328 all:0.013169717286276954 free:0.011593328213942598 said:0.010201083125796411 her:0.008341319421705044 :0.25594758885129826 +it:0.16558174341344517 It:0.07846395477223078 there:0.068926656508768 they:0.05354081626270712 that:0.04867727640265432 which:0.04505196720686623 he:0.0439264118286433 and:0.04292049757801078 I:0.03259451855648658 we:0.022714282810773655 you:0.017312799630666443 There:0.014753102337007622 she:0.012061733113950288 who:0.011822775785340672 what:0.010328641715673107 law:0.009760151038589949 States:0.009676543902658263 man:0.009568256342280966 men:0.009031003643309513 :0.29228686714993724 +the:0.1571829842532025 of:0.09597945470994755 a:0.09059369368502392 in:0.08193194151962375 to:0.05598417792197212 and:0.04352968131268983 at:0.02338591354767511 In:0.022125122543473683 his:0.013722907777884584 an:0.013554366050582847 .:0.013397046112745878 Mr.:0.012935333758206935 tho:0.012834734364402786 The:0.012623321177104088 for:0.01238017567106929 by:0.011314114855049828 that:0.010699242522270922 :0.00988020157642307 with:0.009362079986086054 :0.29558350665456523 +the:0.181261634834079 a:0.05511495622718591 of:0.040610180417767 said:0.03923616395742456 :0.03626652819144869 in:0.0338411070678054 and:0.031358994134533275 The:0.02326027287039769 No:0.011782259000778039 tho:0.010513851297631053 A:0.010468777659288811 by:0.010132711709759594 City:0.008862910100213131 County:0.008423685653047467 new:0.007364129164675314 at:0.006852984887415236 National:0.0067988731325633 tbe:0.006340629616488498 :0.005763965741314271 :0.4647453843361838 +the:0.09243404345529382 and:0.058213638210114715 of:0.05452650437535152 .:0.0324512188537442 a:0.02927537664445198 to:0.02832427249147428 was:0.024633746965588156 by:0.01878544022652125 in:0.01803629278938534 :0.017208300684559957 at:0.016094149169510377 be:0.013239455732291398 Mr.:0.012495273266054737 on:0.011601957824162925 is:0.010090818900891047 or:0.009590749440970367 were:0.009472014893229963 from:0.00910191482581915 said:0.008549992114277684 :0.5248748391363072 +the:0.2679630926794279 The:0.17267909987437952 A:0.08831658093897898 a:0.07852540873078112 this:0.051736882244367066 of:0.04240748339477975 said:0.0207053399465768 his:0.01993371384653863 Mr.:0.017675168991164194 tho:0.016346131236700936 This:0.016321459698964515 and:0.013272676828991848 that:0.011592026808370048 &:0.010993478883260353 old:0.010584800905243405 new:0.010221819703393429 our:0.009762903239084401 Tho:0.009264865366387622 :0.007746801200464848 :0.12295026548214459 +of:0.21566201104533622 the:0.1806594350252744 and:0.10469439870199167 a:0.027404605430793667 with:0.025807267278150005 to:0.024292988391347456 by:0.0221243404632807 The:0.020324283027691768 their:0.020250231263810838 his:0.01437670192389564 in:0.014118346864830104 her:0.013690347835865927 two:0.01357376544290835 six:0.012852685276241251 four:0.012461838717181727 our:0.011970949616854949 tho:0.011246581090008399 for:0.010091777630540042 some:0.009856518655298319 :0.23354092631869858 +the:0.14492334158820958 of:0.09385006260294486 and:0.07295501142429416 to:0.07100108428351827 at:0.05265798067423487 a:0.048496821724779336 in:0.037377108586485894 or:0.028002727980479043 for:0.02766355754993398 with:0.014297609890864772 from:0.011035201137724625 In:0.010707634978614943 is:0.010058319411064697 :0.009674447272505934 by:0.00965173313256354 about:0.009443807471279706 tho:0.009298604170692745 are:0.00863088879686223 all:0.008078968100781281 :0.3211950892221655 +of:0.3555734407517428 to:0.07627933214854979 in:0.074070739267691 for:0.06771057071258052 and:0.05823603169668509 that:0.054714733157521615 by:0.04422253036006395 with:0.03636552493381151 on:0.02267509684505175 from:0.019978759640587946 In:0.018029300871880972 at:0.017525429498429463 all:0.013975719189786592 is:0.011372840340577308 as:0.01095769074924679 under:0.009978187212083036 which:0.009875469684639215 upon:0.009852438711323169 or:0.008470942304348606 :0.07913522192339888 +the:0.18437599904918375 of:0.10860966813825493 to:0.07187140427040642 and:0.054702034572562036 a:0.05464238991289562 in:0.041143760117275316 at:0.022658811258815994 for:0.012156070805161595 tho:0.011971162792173294 or:0.011617535660771944 In:0.011290178730885992 his:0.011076792894546165 :0.010954873365720985 by:0.009656913319697025 The:0.00941727721522181 .:0.009300740695668379 an:0.008452481689349766 that:0.008048644367040808 from:0.007920926217970671 :0.3391323349263975 +and:0.11101960798674682 to:0.062334791247409815 of:0.04678917569723103 the:0.03147852576058688 which:0.022220284625160364 :0.02113317386480409 re-:0.020643554768386807 in:0.020043216833881133 that:0.01961125296176328 for:0.018057155070897727 I:0.017027774068931002 not:0.014397456711628813 or:0.014367473821082147 is:0.013233884844358232 by:0.012753669465645162 con-:0.011884491726436214 was:0.011662969423011264 be-:0.011625025359963036 he:0.01156604482637356 :0.5071504709357026 +and:0.09389314468996408 well:0.083486524339072 soon:0.04476423732073534 known:0.03814887493709667 far:0.03243742404568994 him:0.030992522727779685 it:0.028056323610996803 just:0.022542438550242815 regarded:0.019882099179953178 long:0.018256864810101657 much:0.016206782265573733 but:0.015754041620968808 such:0.015095073271896154 was:0.012766533701625494 is:0.01155129391483767 act:0.01124917564014403 time:0.010682153542293342 up:0.010268281117512292 them:0.009937463315305648 :0.47302874739821066 +of:0.4655895846322175 in:0.2404963324687856 In:0.044665220124790024 to:0.044209561544886304 throughout:0.029024248435006787 for:0.022327274761759417 by:0.021750564621487795 from:0.020228626107104127 that:0.01604717713990559 and:0.01346034087075857 with:0.011489680753916728 into:0.00946413115106544 on:0.009025263555494002 over:0.0063359867975953995 ot:0.005569739830589496 at:0.005318612336782695 through:0.005223985183921182 as:0.004849636694365833 upon:0.0047272605451028635 :0.019196772444464685 +on:0.17056335232491093 of:0.1566267350649704 dated:0.11519661515705705 ending:0.05542923955099216 in:0.03583535943455071 approved:0.028715130209031603 to:0.024768298822325736 On:0.023180914653588826 and:0.02127951975688038 Dated:0.0205049095457951 from:0.019137540918506658 at:0.014691528600337686 last:0.013918706589695995 Monday,:0.01268691768199439 York,:0.012657027433816295 for:0.01092761919870309 seller:0.010772400670122409 Saturday,:0.010510634743431614 said:0.0089316066579126 :0.23266594298537638 +has:0.22165442140412903 had:0.15637517783151686 have:0.09855883920502591 was:0.06684270763658834 and:0.04680174863030097 mortgage:0.040363773400014076 having:0.03397717776179673 been:0.027646498136869552 be:0.020911451310033354 is:0.01931078148166981 were:0.017108246589603235 not:0.015137652230792725 the:0.013582100595553738 are:0.013572615351183304 mortgage,:0.012998534800899996 lias:0.011009090118738319 as:0.010727774408995942 which:0.009848594645301096 be-:0.009767512870841289 :0.15280530159014574 +the:0.1143813740681367 of:0.10725563490218938 and:0.07013929237617328 a:0.0672759526714516 to:0.03944702605759211 Mr.:0.032280789449834216 in:0.027269198971288964 with:0.021909795963145674 or:0.02061024109820549 that:0.019525534817269843 is:0.014252297178278717 :0.013083784932540853 be:0.012894570222885867 for:0.012197138456365417 by:0.010979979158896813 have:0.010972992252561221 it:0.010656148240659748 was:0.010307594572519506 he:0.010174940486945613 :0.373385714123059 +which:0.0991103200297577 it:0.09640073651447621 they:0.07846476786521855 and:0.07177249039624398 you:0.06856102149400696 that:0.06428931643902906 he:0.0586742320630181 It:0.058619857424093175 who:0.03728206243216445 I:0.03501398311933061 we:0.02877708458806541 she:0.013237356067668729 They:0.01231611465251535 as:0.011572382060738049 He:0.009951970076438558 there:0.009884224135479461 this:0.008844872279688649 This:0.008734289272778606 You:0.008547540572631528 :0.21894537851665682 +which:0.1482357833340512 it:0.07708101598207284 It:0.07697151208251973 he:0.07305729913198358 and:0.05533573259356665 who:0.04576391499960492 He:0.03620821525704549 that:0.03590380032477168 as:0.025061247584213235 they:0.022457752982446486 There:0.015492781823867548 of:0.013850464593659175 above:0.012843916221273156 I:0.012283737796990104 the:0.012004232047622724 be:0.011845980694943487 if:0.011784708487119135 bill:0.011508713361869623 but:0.010527769650169348 :0.2907814210502098 +and:0.08130369781485255 was:0.044493883543677185 sale:0.03336263626570302 sell:0.03317248213163059 is:0.0311310007311827 are:0.02730000773171537 not:0.02366040951932832 as:0.02312394170947147 held:0.020963978821705233 be:0.018011914109115706 than:0.017854870886488395 or:0.017735701702932972 that:0.017472954494063955 made:0.017246345459973757 for:0.016732529629223614 sold:0.016409158409836887 land:0.014472051974531315 were:0.013669701200953446 interest:0.013529323675430215 :0.5173534101881834 +the:0.2834092770970717 of:0.1104026100591837 and:0.08353389027532858 to:0.07524711630951389 a:0.062057713233203866 most:0.04525602001160011 his:0.02930023316002899 in:0.022305090105198114 their:0.020772783977809618 with:0.01638510075960303 be:0.01551900530215245 other:0.01465760694406577 an:0.013692940567966843 very:0.013139770284828331 tho:0.012964641840300313 all:0.012721506895462323 re-:0.012681823384941475 more:0.011163947772564874 our:0.011062917125483216 :0.13272600489369282 +the:0.34023420644009195 The:0.08134133607376899 a:0.05620977787190817 and:0.03934180517295427 at:0.028757091624545164 of:0.027322632648987377 Mr.:0.023585017621920872 his:0.02243732724144811 tho:0.022115489226465685 her:0.015363662350329883 young:0.01146082011731359 to:0.011168085446869775 A:0.010059586363725212 old:0.009697043668372651 is:0.009470411135619817 their:0.00923114755817175 with:0.008649902000909706 tbe:0.007868884558654206 by:0.007828282544972845 :0.25685749033296995 +is:0.1744407947305831 was:0.16007979215117107 not:0.08501773740354726 are:0.06128622719812181 be:0.04973268175377134 a:0.04475860375973511 were:0.03906769086604915 in:0.03622628685471652 the:0.032433698522608384 of:0.03164652671135833 Is:0.027713059009835995 and:0.02740504884443766 so:0.026111277474492784 been:0.023646472561790238 as:0.018658148376939254 from:0.014273384745909596 had:0.0119907597871246 being:0.011915615099456928 very:0.011334804166592388 :0.11126138998175848 +sum:0.03352282876311118 number:0.028116684882597106 line:0.019995206059833036 city:0.01946514558931857 out:0.019275318828420953 day:0.01666865340772654 county:0.014872697538657208 amount:0.013254184849875051 Board:0.01252325449624941 town:0.012449555905674143 side:0.011663975251122375 part:0.011517157473718155 County:0.011460540331966697 state:0.011087331502382173 City:0.010878919191854432 purpose:0.01081028255427907 and:0.010297866493795984 way:0.009848747943663767 name:0.009522170936943183 :0.711769477998811 +and:0.10119789434721585 the:0.08750650826269914 of:0.06965652901268303 to:0.05397231607343732 be:0.036865526523342323 was:0.035053854231348616 in:0.031304212937328754 is:0.026000336185972757 are:0.0211137244270955 were:0.018396838756921496 con-:0.017174874810272 been:0.01699376096117119 for:0.016754654309511306 com-:0.014528737373553537 much:0.013539613194676265 their:0.013377304520975603 he:0.012755370579971337 or:0.012523440083369532 not:0.012362122862064477 :0.38792238054639 +the:0.0995983838336578 of:0.06326950452299974 to:0.03943964014148809 and:0.03704251059937071 a:0.026112574821943436 :0.02306491687336277 in:0.020635571790003793 .:0.016531182358587353 I:0.014770901429082153 that:0.011096325170308539 an:0.011019749746929111 be:0.01063809608964333 as:0.010523084200605052 on:0.01044059984615188 not:0.00987028604256771 The:0.00975252972636846 tho:0.009508102998441017 -:0.009428172532356885 for:0.00859732813014127 :0.557660539145991 +of:0.13670515669559946 as:0.07723535484175828 by:0.07282258352986157 in:0.06325008990502681 for:0.06090681113882115 such:0.057833835006245386 is:0.056126534504997404 to:0.05417695000219696 with:0.048400600787378005 and:0.039636280621150516 be:0.028775743647788673 was:0.02720904901831854 not:0.023233051617186574 at:0.021600973551574428 that:0.02112094760227494 made:0.01797510988584156 have:0.016659453100335946 than:0.01530381426469248 like:0.015215821272262514 :0.14481183900668884 +the:0.14376932733477882 of:0.14371848404051316 and:0.051604928814915116 to:0.03247332045254531 at:0.0318412955661528 a:0.021959857729316773 in:0.018123120471391863 .:0.011954859216584788 for:0.011853056490362715 OF:0.009647709840885237 :0.009331868924124517 or:0.009088103058227688 his:0.00887807697822016 No.:0.008686010252032963 1:0.0086061557626242 from:0.008500209600943803 tho:0.008493040331958667 this:0.007206119027719076 St.:0.007079057247131182 :0.44618539885957115 +and:0.08995317707915026 to:0.06844710404109794 of:0.04605142056172993 the:0.04074574508561307 which:0.02479116931334353 that:0.023764822140213245 re-:0.020841117231308055 in:0.020803825395358622 for:0.020278423301550053 :0.018417753428486977 not:0.016860793136637672 con-:0.016444405871234195 is:0.014386481772210856 or:0.014080680914153714 be-:0.01352268143271276 I:0.01317002660943805 was:0.011429878269381662 dis-:0.011196807025842847 he:0.01113106290024311 :0.5026826244902934 +to:0.12022893700269083 and:0.09020394424291768 the:0.08587503820055309 of:0.06450042443224316 in:0.0310058468700829 a:0.017742048521183405 :0.015548046036689871 not:0.01491307651316237 that:0.014112408707955496 for:0.013734482372212283 I:0.013065769926808477 will:0.012848502316304782 at:0.012837991177321897 In:0.012628718855091186 by:0.012491091048660757 be:0.011425930130217754 is:0.0113962101007567 he:0.011342727513475473 or:0.01112522537451577 :0.4219735806571561 +the:0.11919516938815296 of:0.07230453158552728 and:0.05781056740443249 a:0.043018564803886335 to:0.031305092790907506 in:0.020848713353460488 at:0.014270110001066288 .:0.012526810245749479 :0.012413283442322082 for:0.011719122709941797 by:0.010808400946589808 or:0.010404172990115616 The:0.01003576004804544 with:0.009811868184449042 tho:0.009295902015355835 was:0.008924239095331684 that:0.008672304223433876 is:0.0085591147338948 be:0.008335143826716943 :0.5187411282106204 +has:0.3220268487496617 have:0.28254243872372947 had:0.17245127888664516 not:0.03902074352375358 having:0.022721383180822296 always:0.014477217319141119 ever:0.010973304325900568 never:0.010731334387898138 lias:0.009215627421372705 bad:0.008813319702610546 to:0.007513596916116459 already:0.007247498453755731 also:0.006710908786399422 havo:0.0061686110142383736 and:0.006048375999593474 since:0.0048840756058359525 yet:0.00437124643958748 just:0.004096951703600042 haa:0.003972960765622138 :0.05501227809371563 +to:0.17681936104598286 of:0.1502599028670743 in:0.13645103315766738 for:0.0644128770735004 that:0.05918842814002497 and:0.054150876643036604 with:0.04119771461725033 by:0.03979838689335913 under:0.027887942580373543 In:0.027865147385445193 at:0.022890025319782972 from:0.01594518738143533 as:0.013460542499352532 all:0.012154925673832813 have:0.01133992748682795 which:0.010243959864113484 when:0.009775448800866246 on:0.009545244997723046 upon:0.00931870689097003 :0.1062943606813809 +the:0.08729735206031883 of:0.057822895109519254 and:0.05282437059509106 to:0.05271528994970048 in:0.025005230356830034 was:0.02313758335288352 Mr.:0.018553494963266862 that:0.01820635784046301 is:0.016752125728073674 .:0.01643381756196746 be:0.014965395965890884 said:0.01489997641030778 be-:0.01462320872564181 Mrs.:0.014038202396430435 :0.01361503189801993 a:0.013101313847420675 for:0.012846021701111578 he:0.012299760260988467 his:0.012038141318686656 :0.5078244299573876 +the:0.16883506074108198 of:0.10345999980581193 and:0.07765091647747123 Mr.:0.042646070294986925 a:0.03676854853394007 to:0.02730423700154303 The:0.023555615107356022 .:0.020409359832543682 by:0.018024363299732695 in:0.013897353732280127 for:0.01331089079449869 with:0.011100144844755954 that:0.010788179786794411 Mrs.:0.010587736569899649 or:0.010484845999064638 tho:0.010440233278329509 :0.009960897908832863 their:0.009790656798233792 his:0.00974718170240166 :0.37023770749044116 +be:0.11964534977102274 is:0.10643249250949458 was:0.09577377658659093 and:0.09517927412864775 are:0.05350151147433439 were:0.049354989557121844 been:0.04868439533004631 the:0.03536855218352081 have:0.032455131190634964 had:0.028222001562271764 has:0.02766350523284576 he:0.025907691643428026 it:0.020614604362493842 Is:0.01984311661624281 I:0.019146593286849447 so:0.015403068241974243 an:0.009506029036330443 generally:0.009189414404688808 but:0.009165716708306678 :0.17794278617315382 +recorded:0.09847594240401705 and:0.06592001825933197 time:0.05934298026054529 was:0.04356545648041318 at:0.04295571520345622 that:0.035008375632923805 is:0.03465269849665044 be:0.029188028163444752 for:0.027566348717807474 one:0.01961981970626098 are:0.018485086667778167 spent:0.017241928635436797 it:0.017018962987051727 length:0.016871046293330774 as:0.01677850495280922 held:0.016283402037828697 now:0.015958860550208037 out:0.015396113804337995 more:0.014611005544878842 :0.3940597052014886 +made:0.0999812034390529 and:0.06680208263369662 caused:0.02435411478715239 shown:0.02379785223577525 up:0.023253655008919294 ed:0.02312002180398423 out:0.022293807888227747 taken:0.021988971765594088 done:0.02128782706813444 given:0.020283609421760777 paid:0.017098570970207227 owned:0.01708227903067019 that:0.01698438626809451 or:0.016145946252097726 him:0.015808363688274 followed:0.015366441255538056 appointed:0.015126279845513936 held:0.013990473525433292 approved:0.013949758860964168 :0.5102843542509091 +the:0.14752772158677557 of:0.11295968778648792 and:0.08818308233273206 a:0.05664112909208959 to:0.055774796586928514 in:0.0338935872447625 with:0.022699430306070637 for:0.01897813462615592 or:0.01758834985117478 his:0.01407809908127736 that:0.013344179369840095 by:0.013207457383099051 not:0.012939522194284304 their:0.012296602977685275 .:0.011940753553091503 her:0.010338700934135045 tho:0.01012090096318447 would:0.009040449467542318 more:0.008547005256868166 :0.32890040940581494 +more:0.20193825715696415 one:0.10880745702456322 two:0.07338383749655451 five:0.01786822735710385 dozen:0.013832821497584316 four:0.013728109184358323 three:0.013381950950658115 ten:0.011930120603510508 six:0.011171087831591979 on:0.009717728988759042 person:0.009597029048035267 year:0.008588567763906383 hundred:0.008251923495066812 eight:0.007400543916997082 man:0.007281807540760635 other:0.007072438161140651 seven:0.006926437473312292 fifty:0.0062466654897028375 and:0.006104167796315968 :0.4557708212231141 +the:0.11919516938815296 of:0.07230453158552728 and:0.05781056740443249 a:0.043018564803886335 to:0.031305092790907506 in:0.020848713353460488 at:0.014270110001066288 .:0.012526810245749479 :0.012413283442322082 for:0.011719122709941797 by:0.010808400946589808 or:0.010404172990115616 The:0.01003576004804544 with:0.009811868184449042 tho:0.009295902015355835 was:0.008924239095331684 that:0.008672304223433876 is:0.0085591147338948 be:0.008335143826716943 :0.5187411282106204 +;:0.016562409616182012 and:0.015672639467270183 up:0.009091625461783014 feet:0.00782938060882488 them,:0.007540694238264952 it,:0.007401727195174354 out:0.006695099595566461 him:0.0063920222102435385 time,:0.006177259818327805 land:0.006089722673858281 years,:0.005927777519875964 ,:0.005831021934666501 day:0.005774306143758818 day,:0.005686855202111212 time:0.005636339134344065 years:0.005455820712257522 him,:0.0054334622094425805 that:0.005404804830006496 street:0.005375748003691391 :0.85902128342435 +al-:0.1619570772142483 the:0.08482687919600009 all:0.05443746213987765 their:0.047923703418317865 other:0.041902239671444755 of:0.03959473387276488 and:0.03824927967684326 his:0.03611881447990785 al­:0.035031433709868276 high-:0.025163534346389127 her:0.023168617018772344 al:0.02021369253500394 al¬:0.01834445747425512 our:0.016449726857853092 in:0.014286327179722983 many:0.01337033035604993 or:0.013301361179289846 various:0.012717484530314778 its:0.012587874913294436 :0.2893549702297815 +the:0.2883186065432939 degrees:0.18373946999825955 minutes:0.12651931258322827 thence:0.08109492766389531 degrees,:0.024132424775159943 tho:0.019409139673801486 feet:0.01907914851896408 and:0.015476762501985892 grees:0.012849473784320994 south-:0.0108349606477173 :0.01039943764192707 miles:0.010379482471041543 south:0.009515737254616068 of:0.009319004976443867 The:0.007993603648341311 mile:0.007490967234488765 last:0.007099150127478051 on:0.006844595904343387 utes:0.006647080835834118 :0.14185671321485907 +to:0.288784910966342 and:0.23479563187598573 not:0.03285962735288962 will:0.030485401078824526 that:0.025666508616142274 I:0.025628991804005363 would:0.021903719114949084 who:0.01740368013745936 which:0.017222806228335382 then:0.017012083818550627 have:0.015339060802186446 you:0.0142376256577302 but:0.013927851950598282 or:0.012404498212880104 it:0.01110024623598041 But:0.011044923871425253 And:0.008877865567394845 never:0.008774203125454032 he:0.008433232368223218 :0.1830971312146432 +north:0.1080656550985611 feet:0.03030608281133504 east:0.020260825388101956 street:0.01787921618823479 land:0.013204021262939783 North:0.013069831541135743 south:0.012838431140159852 chains:0.012269668600317016 ;:0.011141156778566771 wife:0.010212552034371962 day:0.009614618872458281 township:0.00882014885218313 house:0.007480204059038217 street,:0.007394608165635002 on:0.007184304569400967 feet,:0.00677041223490948 1:0.006763055308608279 west:0.006593511539802388 .:0.00624779867565371 :0.6828838968785865 +the:0.3760012880190163 a:0.26845728831650945 of:0.052764127982819216 The:0.04657358684502337 with:0.0343177391677788 and:0.030685332253772665 his:0.021919716620126133 tho:0.018744034935309937 in:0.016872382603218675 this:0.01657441330705967 our:0.015559785148252844 A:0.015399600259808108 very:0.014682032676105173 no:0.010121355380786809 that:0.009220148446610546 their:0.008846504757108672 any:0.008368585045019793 her:0.007569802909868436 some:0.007522381633791327 :0.01879989369201407 +of:0.23196455299179394 for:0.12550815510799415 at:0.08157360459685457 to:0.0814235042903319 and:0.07717392296413517 that:0.06835236657426132 in:0.0509583681067461 by:0.04490330783103773 with:0.026895613320076926 from:0.02415269341249753 all:0.016925422358648197 as:0.015833119271427044 which:0.015723361253851917 under:0.012719160058762129 In:0.012059532766373442 on:0.011496396591088049 when:0.009826676646440716 than:0.009638872595235578 upon:0.009564108789432275 :0.07230726047301131 +a:0.30540479719719216 the:0.07376993280439405 is:0.0634483218100915 and:0.06113427944928356 as:0.0486045854109841 that:0.045026552436212196 of:0.043234753302368 was:0.039085582946275364 in:0.03698962607835007 are:0.03545929598667849 be:0.032365176490257684 or:0.026999645420155653 with:0.01876365046483042 A:0.017977242406408512 by:0.015955344145926427 for:0.014580528605014935 at:0.01434981021890512 were:0.013668327233552801 as-:0.013095733386123439 :0.07908681420699552 +and:0.1340004079852747 the:0.08618735805882942 will:0.055963582300804934 to:0.04363478739117668 of:0.032633882315799737 I:0.029487827250390557 a:0.02409093642619916 could:0.02241463173477252 can:0.020525520009134657 they:0.018454712571355666 he:0.01799054257896371 do:0.017473641341835548 his:0.016842573733651358 would:0.01675925160255202 you:0.016044929257820476 did:0.01441062759689245 we:0.014120187030987994 that:0.013435192548793568 their:0.012548396313116982 :0.39198101195164786 +of:0.17997697195668502 the:0.11078716414721311 to:0.053397766792165895 and:0.0493171093957557 in:0.03367687579774252 by:0.026033258802729786 that:0.01809502259382636 a:0.01729880411981093 from:0.016358036041727437 for:0.014961009879112084 on:0.014572452139930777 with:0.012094284201300322 at:0.011998178658258061 :0.011607820180572779 said:0.009188408596676812 or:0.008925430585020593 as:0.007841089109674503 The:0.007128822807364482 In:0.0062062315386423325 :0.38953526265579047 +of:0.27114877670046533 and:0.17515560169336908 that:0.08942286405293526 to:0.06819399713501076 in:0.0606255079215359 for:0.05231386595766491 with:0.025227813239649954 from:0.02021813268907706 by:0.018944548336274465 at:0.015628637679575216 In:0.014662214511135528 or:0.014230624205098739 all:0.013284325797992698 on:0.012846804794110727 but:0.00988540325157965 are:0.009047045058189023 which:0.008248266570709983 if:0.007423204996386676 nearly:0.006936847886663138 :0.1055555175225759 +to:0.1775152717651263 of:0.14245963868965597 for:0.09074946514674999 in:0.05405927284684968 on:0.04587792761948858 and:0.03361347035942143 In:0.029385479780081658 with:0.026331104642995602 by:0.01737519274076402 that:0.014584292806687656 was:0.014533064258085085 made:0.013683034801701511 is:0.012991272420760711 at:0.012931276603631062 when:0.012426405954621906 about:0.011728158420172793 or:0.011548785628084814 her:0.011394872766541397 had:0.01075766750894494 :0.2550543452396349 +the:0.1454500361787387 of:0.1080247151493501 to:0.04516715868785427 boy.:0.036249098323069925 and:0.03403580073245388 girl.:0.032660326140049385 a:0.03171979252021135 in:0.02714044436566853 for:0.02365213940166824 be:0.021942286684630472 their:0.021087116084698817 his:0.019774122064073623 was:0.014637031197642503 with:0.014008395154201525 are:0.012730720509515858 is:0.011363112041341867 as:0.011357870543086747 from:0.01063391638067422 were:0.010589399829418696 :0.3667765180116513 +the:0.3650006754801019 of:0.12358459983999535 a:0.10153211763408444 in:0.04741820368426967 and:0.03109896478765109 The:0.027249379343174913 at:0.02586319896806633 to:0.02311092003760988 very:0.021784427491535134 all:0.021485283821192892 tho:0.02109123747247859 by:0.02010533721031797 three:0.018681768511450637 with:0.01866660410625813 for:0.01756065503647177 some:0.01674292521835234 many:0.015815399287888745 two:0.013169512215549573 In:0.011576085207170786 :0.05746270464637989 +the:0.17965426245359045 his:0.1038513010151066 and:0.08000501675545774 their:0.07085499161350854 of:0.03938501389936102 or:0.03827612491574387 in:0.03628697871500799 was:0.03566813631648177 her:0.030847526565742765 a:0.029030903933761593 our:0.02656073812838931 an:0.02558628784214318 its:0.02405914127568782 my:0.02324317985012321 good:0.02076510828879178 The:0.018629916981200024 other:0.018455312305412922 is:0.01683061308095061 great:0.016319793208146298 :0.1646896528553925 +those:0.1390214878070257 man:0.08254063298123848 men:0.08094352874923426 and:0.060717757267258025 one:0.05058108251591743 persons:0.034526744825714106 person:0.033220010878100656 all:0.028278321411685157 people:0.020515401179287452 Those:0.013936331009681929 woman:0.013658815738075652 others:0.011553441330316085 women:0.010562033008113047 men,:0.00919928135454793 man,:0.008852387734955742 or:0.008616359437274446 girl:0.008140826405862 but:0.006539408818018154 parties:0.006104014572503248 :0.3714921329751905 +and:0.148943478054091 as:0.12915150018994911 that:0.10649611074758404 when:0.07156763034301193 which:0.060642265849694454 for:0.05132267112463175 if:0.04422404405281799 but:0.04301174404303754 where:0.02768532296353818 because:0.01936499056903641 until:0.018376656021919433 what:0.016131978015342267 or:0.01541163692401485 is:0.01470177344400579 have:0.014368156291510779 than:0.013273348308410456 had:0.012849151887276825 after:0.012593269607321515 while:0.01223970094214367 :0.16664457062066204 +of:0.2674706345285115 in:0.12587953100711133 to:0.11458191354062396 for:0.05632538622507727 on:0.04944184408012612 by:0.041785575695744356 with:0.033656062671489184 and:0.032503638752698114 In:0.027402956436462313 from:0.026500201287188135 is:0.024836038632116888 that:0.023738118219021852 as:0.0213426847553151 all:0.0162357287010228 if:0.015518731459126203 make:0.015099226424201025 upon:0.014962182630043504 have:0.013357789519865977 get:0.013194201800042719 :0.06516755363421169 +and:0.07558940021936399 recorded:0.030196237618668006 was:0.028917161578042846 made:0.027969746247669736 that:0.027730098932509103 o'clock:0.025060522019555328 up:0.023026552239529506 is:0.020398277211376416 found:0.02003101797656537 placed:0.017482208134164214 out:0.016937164562539058 place:0.016819459500107596 interest:0.016629321966808677 him:0.016002796715253755 situated:0.01573420479581609 it:0.015128305982428461 them:0.014715943643665314 part:0.014646613000297721 interested:0.014450471929902294 :0.5615344957257364 +the:0.11919516938815296 of:0.07230453158552728 and:0.05781056740443249 a:0.043018564803886335 to:0.031305092790907506 in:0.020848713353460488 at:0.014270110001066288 .:0.012526810245749479 :0.012413283442322082 for:0.011719122709941797 by:0.010808400946589808 or:0.010404172990115616 The:0.01003576004804544 with:0.009811868184449042 tho:0.009295902015355835 was:0.008924239095331684 that:0.008672304223433876 is:0.0085591147338948 be:0.008335143826716943 :0.5187411282106204 +that:0.28156553707570825 which:0.0912517228539146 and:0.08437515847198501 as:0.048598121672078186 when:0.03803201596411934 w:0.03676731699579889 if:0.029431775001521793 but:0.026014428542731415 where:0.02161445320097541 If:0.017161952219819417 because:0.011614539591410525 of:0.011377219907562285 whom:0.010854864369421898 what:0.010686450339314818 to:0.009541204079798974 time:0.008202717488460484 says:0.008065844470013768 until:0.007733196980623998 When:0.007665870316427926 :0.23844561045831295 +of:0.09129790931378902 the:0.07369883040827747 and:0.047842263382354346 in:0.04189055351593407 to:0.04045875475680249 a:0.03542341257202578 be:0.02020462051672066 for:0.01979292654746225 was:0.01760256398103379 at:0.017380150555488715 is:0.014984483003968216 with:0.014047653760730413 by:0.01374644383819499 :0.012670486581795598 In:0.01200961464556976 or:0.011563835749786333 from:0.011391516893522809 are:0.011273104484969465 that:0.010755276030689069 :0.4809655994608848 +of:0.28767355066866834 to:0.08775711267569858 in:0.08678131196995101 and:0.05160598694501188 on:0.04646139928102899 by:0.04519522654900943 for:0.044547789071328545 with:0.03396756772609607 that:0.033699232901107726 from:0.03075346596941143 at:0.027039283056790858 In:0.021061449543044047 as:0.017514234937992545 all:0.012543839382496166 upon:0.011844431150487573 is:0.00998972746569266 was:0.008814315973987914 into:0.008557199930727406 through:0.007781895704231326 :0.1254109790972375 +of:0.28767355066866834 to:0.08775711267569858 in:0.08678131196995101 and:0.05160598694501188 on:0.04646139928102899 by:0.04519522654900943 for:0.044547789071328545 with:0.03396756772609607 that:0.033699232901107726 from:0.03075346596941143 at:0.027039283056790858 In:0.021061449543044047 as:0.017514234937992545 all:0.012543839382496166 upon:0.011844431150487573 is:0.00998972746569266 was:0.008814315973987914 into:0.008557199930727406 through:0.007781895704231326 :0.1254109790972375 +a:0.3738502148237195 the:0.36097227780171237 per:0.04278935526519104 one:0.02622188820774465 every:0.02096299630578691 tho:0.01925196866209577 last:0.017306707211213298 each:0.013276771949338868 this:0.011617844766955893 The:0.011009185656107931 tbe:0.008174069257773555 next:0.007654930703893007 that:0.007575977114678981 first:0.007526545057244741 and:0.007497474429909173 other:0.007143117136915086 half:0.005629596691370602 A:0.004583272099696077 long:0.004288452152155376 :0.041667354706497184 +of:0.2445569740589051 in:0.2396709071451559 and:0.06158552597161634 In:0.058948666058569174 was:0.04577626357937674 is:0.04226527194300018 from:0.031024542880246742 are:0.030064379510652824 to:0.025523369372820525 with:0.024308358476307003 by:0.022348378911707233 for:0.019347096089389677 were:0.013310014309395825 or:0.013215840741072713 on:0.013175065081724696 the:0.012901510535980265 without:0.01258682394119487 been:0.010998587722801727 be:0.01087941802719193 :0.06651300564289053 +hundred:0.02761341037911891 Hundred:0.01700727027361944 North:0.015043471842983377 street:0.014798943521219814 north:0.01295670649918107 1:0.012139762034208539 east:0.009865552485400473 men:0.009766842039027829 city:0.009416806928680584 up:0.009383125476137486 3:0.008736939684866312 ;:0.00801131893845337 south:0.007867402086280176 States:0.007767636129923272 day:0.007478932965345525 2:0.007404367079603223 4:0.007341394303958543 state:0.007278218439350922 State:0.007169419859594688 :0.7919524790330464 +the:0.15315091263591102 of:0.11725846910114514 a:0.07603689463519724 other:0.056699191812957045 their:0.04574517251615534 his:0.03672601596546994 our:0.03631775241367746 these:0.033456730788170345 public:0.03264017156903734 this:0.026725799006029415 The:0.02540360992235146 such:0.023839395392392663 and:0.0236735453497531 or:0.023255085111459777 for:0.021940449872309017 good:0.01991606905049108 any:0.019719274339172803 its:0.019719207431781068 same:0.018787999720609735 :0.18798825336592906 +of:0.28106339864244195 in:0.09956058212131826 to:0.08776891003088132 and:0.0693685209221416 with:0.06191594002440933 for:0.043187106786423894 by:0.03825971076991069 that:0.03364193849818919 on:0.03334895004237309 from:0.024274051433436618 at:0.02326087978677075 all:0.023016587540449968 upon:0.019547047238465592 as:0.01477042566629758 under:0.014471407489494631 In:0.012234206766995962 through:0.007445975625452719 made:0.007417437992871111 up:0.007319788503824224 :0.09712713411785152 +;:0.06334921141704543 nothing:0.0274707029466779 it,:0.023717913328359246 and:0.016005485503028282 them,:0.01579833924146486 is:0.014932411385964036 or:0.0148267085067052 time,:0.009299116297966693 all,:0.00814535895861267 cause,:0.007555255288768254 to:0.0070577266200956635 mortgage,:0.006463619502418027 cannot:0.006443939037218981 him,:0.006382168132765166 ,:0.0062356399239480685 are:0.006219557390363475 anything:0.006168719657245001 true,:0.006125064543435376 made,:0.006036194686564148 :0.7407668676313535 +it:0.14980370725759037 It:0.1417831987182438 This:0.0994395734160535 which:0.06123870759127718 that:0.053827314535707556 this:0.0485319048157116 and:0.03481463816943127 there:0.03163351300029438 he:0.025874957304685715 That:0.02452637228711398 what:0.02101535076138451 who:0.020745118014465793 He:0.01553744098124584 What:0.015466571118696077 There:0.012715435083286795 Here:0.00825702518154719 one:0.007881347531268929 Such:0.007797349307744799 as:0.006397540204786528 :0.21171293471946415 +and:0.09044345427039478 to:0.04105593492830116 :0.023307034077389686 of:0.02109138061698974 in:0.01899699339353467 on:0.013053898284659405 which:0.012116409573640312 by:0.011914935805879389 .:0.010129995250566742 and,:0.008921455041896132 is:0.008528838654270393 that:0.008448677934273991 -:0.008248726454367993 there:0.007863652226003787 but:0.007095987083257652 from:0.00668142110229941 all:0.006494979693051747 before:0.006065613535245695 I:0.005575337138914897 :0.6829652749350623 +:0.07781333410881235 them.:0.034100568867120595 it.:0.030649780233943137 time.:0.017097029557934303 him.:0.015432150789884533 .:0.012186979366327278 work.:0.010791134804278468 day.:0.010529012534221685 country.:0.00997902273477154 years.:0.008892224998796366 again.:0.0086906615444832 life.:0.008614424093592714 year.:0.008531338971282618 States.:0.00838082191051244 me.:0.007441506804439564 place.:0.007425141620559953 city.:0.006969989079744027 water.:0.006894471264272197 her.:0.006635186813815068 :0.701945219901208 +of:0.10865598255232314 the:0.07898250272624091 and:0.05336889516255642 to:0.04302855557192271 was:0.031077075465581437 in:0.029762864471386426 be:0.02447881934934539 :0.023507734327519778 for:0.0221449197258726 a:0.0218710594777332 is:0.014404629109464114 were:0.013984481019390895 his:0.013667978529846388 at:0.012825880428926706 .:0.012294734294955445 been:0.011564872972298582 that:0.011535685164578327 by:0.011042482077707957 Mr.:0.010149721326738676 :0.4506511262456109 +the:0.28234660504898995 National:0.19786605419349626 Savings:0.04747879219557798 of:0.03124536300587439 State:0.026697821954913006 and:0.02470638319670037 The:0.02363520261035354 tho:0.015445275559931837 any:0.011042336538225062 in:0.008939930176924972 a:0.008411396585896676 Central:0.008233882517073526 said:0.007952324214244388 by:0.007596984302767652 tbe:0.007271179986610665 :0.007229306107788449 an:0.0068686600710570755 that:0.006363325106407719 such:0.006235668979860316 :0.26343350764730616 +and:0.1581830915867693 of:0.0728903749952249 for:0.048669178608618 fact:0.04857847675779397 is:0.0327355998704786 in:0.03218156593921946 but:0.028408989470849303 to:0.024815176998352822 was:0.023214464618175047 say:0.02299807636275694 believe:0.021881285768054246 all:0.020936717120086924 so:0.017153548019579867 on:0.015192195915675388 know:0.013357915086635775 found:0.013152720223979068 with:0.012361307825178853 that:0.01226036703678475 said:0.012214020045055915 :0.3678149277507308 +and:0.09262153580857925 be:0.09048390631948604 to:0.08684081721539323 was:0.08182909326393789 I:0.049739733186887874 been:0.046380199351380186 will:0.043929253563090374 is:0.04276061079600539 he:0.033417078986156555 not:0.03122927432800222 were:0.025503515752932453 they:0.02359438837411658 are:0.021568167338042087 a:0.0203644782910458 then:0.01936738697281272 have:0.018247244677619574 had:0.018131504292555545 would:0.01631448343177232 has:0.015438311823763687 :0.22123901622642023 +and:0.19314669346996644 as:0.09544708588834988 that:0.08318869247765472 but:0.02481183136198749 or:0.02372530432940557 But:0.012786118950892818 even:0.012044213299915046 which,:0.011629787426033817 And:0.011614263879710273 do:0.010206736036660616 and,:0.009978878428103443 it:0.008758054490213725 than:0.008121497702406548 or,:0.007713973106416196 which:0.00769867081656253 ;:0.007593401317125696 him:0.007408090846733662 that,:0.00727120235477434 see:0.00712943611963887 :0.4487260676974483 +Now,:0.46735018788934113 Now:0.08876215202899819 Now.:0.04686915416445462 is,:0.03958036216920737 and,:0.0335264839248889 and:0.032892272627928355 are,:0.029262082491911336 If,:0.015840599504649895 that:0.013780403896151844 will,:0.013256399318859875 We,:0.012989620712643096 would,:0.012147234931370576 was,:0.011373636031561583 not,:0.009889198751446057 must,:0.009625904325078288 but:0.007385296059954075 may,:0.004810652017083267 is:0.004723926360841572 Is,:0.004454515645849968 :0.14047991714778 +of:0.33561971853383804 to:0.08732938984613774 in:0.08542871027405656 on:0.06502663801613737 that:0.06017620323210775 and:0.05366748099050766 for:0.029812185770185 In:0.02174070765094312 by:0.021038494660534094 from:0.02004703386423825 all:0.01939568190757782 as:0.019295266687138258 which:0.016527829511341623 with:0.016451048082360493 upon:0.012769691721430988 when:0.009903478562668598 at:0.00971166582077935 or:0.009516069582512906 over:0.009048468196554138 :0.09649423708895029 +and:0.1441248083657974 is:0.06674291966846173 was:0.0658195468679945 that:0.061385902838661896 but:0.05971258584013102 are:0.05501931404165561 or:0.03408258960449144 not:0.029533916049663614 to:0.024328985992273015 were:0.023801526460694392 had:0.02248665146866262 have:0.01635169383671036 has:0.01538552290192941 as:0.01481170985429252 which:0.013959334030201994 be:0.013666535417479557 by:0.013538888913461845 than:0.013487225696628118 know:0.012676220893599415 :0.2980841212572095 +the:0.4071374189315913 and:0.06449181461132415 of:0.02892866618288876 in:0.028670005984162618 The:0.02603617389223924 tho:0.024993820467459137 a:0.023579040051412606 to:0.01755553213771617 on:0.014626070241060114 by:0.013447843485786471 or:0.012794166593089693 tbe:0.012024509152999897 :0.010353482361299817 that:0.009291482237329618 In:0.007938246807075932 from:0.007526799010378873 other:0.007469196869028889 all:0.006409533041696086 for:0.00626887758057738 :0.26945732036088327 +the:0.2071401012229695 any:0.10036533889476819 this:0.07228957539528232 a:0.07158401966191204 every:0.052097797321335244 of:0.03491991644662743 other:0.031368017982654456 some:0.03107138829215447 that:0.03092861772107431 and:0.022375180478752286 all:0.020884886746469874 one:0.018881958457142804 same:0.018318404481486184 great:0.012454809604426654 tho:0.012331270389922676 such:0.011655167924178767 The:0.010935349876179 in:0.010929707089185323 our:0.010804476623055233 :0.21766401539042324 +and:0.07766944470163145 time:0.04791888878636931 ready:0.04521556756211451 demand:0.039076198951048115 used:0.027758305524062932 reason:0.026448179951786558 necessity:0.02323938329999289 not:0.023172877427642638 necessary:0.021103826755415323 was:0.01992459511227767 candidate:0.019223012625244455 them:0.01914651841989451 it:0.017582705538809994 or:0.017346418917467823 him:0.017020294331863473 pay:0.016352703354924378 is:0.015684862384496616 been:0.015429769218769315 but:0.014730456634591379 :0.49495599050159667 +the:0.16967043574404367 and:0.09277859846911309 of:0.05758432827902556 a:0.042615261423843934 to:0.02981424504483378 The:0.02914089351353769 Mr.:0.02707918449598404 that:0.02395211068233122 by:0.017565516175371294 for:0.016744395857064914 which:0.01570238675624933 in:0.014764573414900867 with:0.014399631311341185 as:0.013815310491777704 his:0.01377926438487776 tho:0.012082890790531714 :0.011499313298279032 he:0.010738664705246072 have:0.010318378078966208 :0.3749546170826809 +he:0.16530178347167473 I:0.14575994098422745 they:0.12047284043650756 we:0.056413377890001025 she:0.046295753455826254 that:0.037741521477202264 who:0.03716292976256022 and:0.033666617461215784 it:0.033477115827506614 you:0.026002296991381638 one:0.0241572851572492 which:0.02329806365361636 He:0.017191992000832605 1:0.016888768704157283 ho:0.012537469292582051 We:0.011775821799901833 never:0.010042471309571296 They:0.00957578754063884 It:0.009244726866035478 :0.16199343591731155 +:0.04653993633805971 it.:0.03347503915532306 them.:0.021164341792444866 him.:0.01995553153891892 time.:0.011871921959010334 country.:0.011432282362535559 life.:0.009141430376893831 ?:0.008714453507277963 work.:0.007271958608292754 years.:0.007136357861873871 money.:0.006844947406393978 again.:0.0067839659150312846 world.:0.006635789253383134 and:0.006346073341295353 people.:0.005652553379171171 all.:0.005617109711219136 man.:0.005516098739830242 home.:0.0054230288254780105 her.:0.005301209547879654 :0.7681759703796871 +and:0.08995317707915026 to:0.06844710404109794 of:0.04605142056172993 the:0.04074574508561307 which:0.02479116931334353 that:0.023764822140213245 re-:0.020841117231308055 in:0.020803825395358622 for:0.020278423301550053 :0.018417753428486977 not:0.016860793136637672 con-:0.016444405871234195 is:0.014386481772210856 or:0.014080680914153714 be-:0.01352268143271276 I:0.01317002660943805 was:0.011429878269381662 dis-:0.011196807025842847 he:0.01113106290024311 :0.5026826244902934 +and:0.12903815515389785 so:0.07627390034423512 say:0.05396951788641086 fact:0.046386200667894444 said:0.04383336067577344 know:0.042968617845181765 me:0.039613044759563856 is:0.03417819954245444 but:0.023479796166398816 believe:0.022815078704092138 feel:0.018802511596853116 was:0.018763340451625254 think:0.016820850676886497 him:0.015709705327703372 all:0.0156851874509525 stated:0.015365472560428244 says:0.015133104292256372 told:0.01464750367292627 of:0.01436619171034837 :0.3411502605141173 +the:0.16796301898452762 of:0.06710165382142279 and:0.05790160674169717 Mr.:0.03262025235849975 The:0.031540439681376646 a:0.02991254499415919 that:0.020365112427800695 as:0.018659299043171144 :0.015790265428947646 or:0.01535854143597646 .:0.01347562860828103 to:0.012537046629211433 tho:0.01142810723004613 was:0.011222131902453277 in:0.01047837419786071 be:0.00976738851659866 at:0.009073057018816923 his:0.0088854030264824 Mrs.:0.008818585418616022 :0.4461015425340543 +the:0.11919516938815296 of:0.07230453158552728 and:0.05781056740443249 a:0.043018564803886335 to:0.031305092790907506 in:0.020848713353460488 at:0.014270110001066288 .:0.012526810245749479 :0.012413283442322082 for:0.011719122709941797 by:0.010808400946589808 or:0.010404172990115616 The:0.01003576004804544 with:0.009811868184449042 tho:0.009295902015355835 was:0.008924239095331684 that:0.008672304223433876 is:0.0085591147338948 be:0.008335143826716943 :0.5187411282106204 +of:0.15147192135946327 o'clock:0.1460786183334083 in:0.093216340718764 on:0.05414911401640407 that:0.05183011727175351 and:0.05128233855614409 In:0.04188720533058148 to:0.03043334078118998 On:0.027074457160231005 at:0.024288029574699797 as:0.021508795291932437 but:0.021029365699129096 for:0.015166974780759375 here:0.01442567476411071 up:0.014072712186526525 made:0.014071379109892054 early:0.013364915413007602 out:0.012882666708341404 from:0.01287528220733516 :0.18789075073632616 +the:0.11500545585881412 of:0.0897605566703555 and:0.07914879987306167 a:0.05827037833039227 to:0.0386987683614473 was:0.029282661483795363 be:0.023890810389268442 is:0.02056818843792312 been:0.017204803150083207 or:0.017094944717067368 in:0.01610392931760865 are:0.015798243080240505 his:0.01344187865263006 at:0.01321973597799718 for:0.01304287912725108 their:0.012337012043366955 were:0.012236169772424844 :0.01133284696603621 The:0.01095822742659897 :0.3916037103636372 +and:0.08189559233336957 was:0.034412811973772287 made:0.030452194929576418 that:0.028429614579538954 is:0.02273240165946779 out:0.022249633467878616 up:0.02186480507967773 work:0.02174684863889149 but:0.02027047318699576 put:0.017075515798431345 them:0.015757797283364357 it:0.015079470164977593 him:0.014664500962106726 go:0.01379258451266427 effect:0.01370044384463789 due:0.013235994755461137 people:0.01293977541771161 interest:0.01286929926839455 carry:0.012657357732476993 :0.573172884410605 +he:0.14310369022750694 it:0.11130990705288764 they:0.07892028322034934 I:0.06922591899986383 that:0.060100073084607714 It:0.05946011763411077 we:0.036316425751995396 which:0.036236228689137596 and:0.03553735421997305 she:0.03359563137184539 you:0.028952414365320575 who:0.02587827559873309 there:0.024204570205481602 He:0.01604217147798961 one:0.012579625274040624 what:0.01157528461570685 This:0.009914422079096447 ho:0.008797666808088172 1:0.008575266563447025 :0.1886746727598184 +the:0.1636632693648676 is:0.11305027039227811 an:0.1060333786050827 and:0.10595027574632018 was:0.056697421788694774 are:0.05542555166125579 not:0.03918752753793122 of:0.03004683357150551 be:0.029454333329433684 with:0.029007151765653397 to:0.027682818578638545 were:0.023311032605093245 or:0.02104710020126653 that:0.01799556855648471 Is:0.016773779873400983 have:0.01657521156376341 had:0.0143278409669305 been:0.013789684439212174 very:0.013056311200593917 :0.10592463825159303 +or:0.11498514111423122 and:0.11224824598756587 of:0.10271412302537423 is:0.08563368987915232 are:0.07491919400949205 the:0.06258125357736975 was:0.04431239194613684 for:0.03693145189923377 about:0.03352135171064584 be:0.027240529577056152 were:0.026057732551243905 to:0.025732748813547545 from:0.02308757708366804 in:0.019611623665433193 not:0.013724743097925398 an:0.013450942802454954 with:0.012464675810893899 been:0.012345727242243905 a:0.0122780529458069 :0.14515880326052422 +the:0.11919516938815296 of:0.07230453158552728 and:0.05781056740443249 a:0.043018564803886335 to:0.031305092790907506 in:0.020848713353460488 at:0.014270110001066288 .:0.012526810245749479 :0.012413283442322082 for:0.011719122709941797 by:0.010808400946589808 or:0.010404172990115616 The:0.01003576004804544 with:0.009811868184449042 tho:0.009295902015355835 was:0.008924239095331684 that:0.008672304223433876 is:0.0085591147338948 be:0.008335143826716943 :0.5187411282106204 +of:0.29626858776731196 to:0.1228537982244471 that:0.08708621161096905 by:0.07120559930138087 in:0.06016255894171218 and:0.05418980408853184 with:0.03451675048877713 from:0.02736594428599046 as:0.024026660320201527 on:0.02393924338228739 for:0.02066499900115968 when:0.01704299435654403 at:0.0169239628492219 upon:0.01543319412886567 which:0.014886516814206193 under:0.01211204267282568 In:0.011640075058721886 where:0.008278996751763369 but:0.008188027155042379 :0.07221403280003968 +of:0.16264459309588855 the:0.08953736078895033 to:0.06073691574832497 in:0.05430596810255518 and:0.047268701770247515 by:0.023838057577973266 a:0.020959975535196646 for:0.016837111073974474 from:0.016488397251204896 with:0.015790677840816808 :0.01423116730911909 that:0.013849749388198728 The:0.013158560419228048 In:0.012847860227413844 his:0.011129520940385329 on:0.009720351548329125 other:0.009420869617048756 some:0.008877358699165566 as:0.00769898068753766 :0.3896578223784412 +of:0.28457502345561136 and:0.11117105887903127 in:0.07812912006593871 to:0.07593752063103414 that:0.05378951451195472 with:0.04444886202937072 by:0.03334827357639987 from:0.02994980997310388 at:0.023826785779268306 on:0.023284481317733804 for:0.023279847229244907 as:0.01891654727883502 all:0.018437919700873263 In:0.01705163400764275 but:0.015499596838372744 up:0.015399088000933378 upon:0.013121051034129968 was:0.011476426006234152 over:0.010774942141833981 :0.09658249754245309 +as:0.07348237429869825 and:0.053293291927724 according:0.0479709431097652 up:0.04410375066718131 them:0.0360918361710351 regard:0.032406892412297036 come:0.031291428310290255 back:0.02891251395441225 return:0.02673975554051193 came:0.025351047659788954 returned:0.022021941716222352 it:0.01975522069512534 down:0.01933170912324385 him:0.019027828623193535 go:0.018504100610066444 went:0.017627960690307223 given:0.016230557067889343 owing:0.015689732254652238 attention:0.015375915241202635 :0.43579119992639276 +the:0.14538285862993044 1st:0.08134507703834688 first:0.06736886768797135 a:0.055874525947905124 25th:0.04330570615268372 7th:0.03688213350850801 10th:0.035117537855034915 12th:0.03482687129394641 21st:0.032870317578004654 15th:0.03272520813383107 13th:0.02925249040911833 28th:0.028551498372195953 14th:0.027199406423118976 6th:0.026808826990102827 26th:0.025722141500643267 4th:0.024208282672405948 29th:0.02309675301622377 18th:0.02303604825841656 24th:0.022877400054659373 :0.2025480484769524 +and:0.11717132479065025 of:0.05975776404107632 the:0.036894797744751906 be:0.030476697286946262 a:0.029689055699173163 in:0.026487129630288927 is:0.026201236531637237 was:0.025891673231283507 he:0.024166191619701714 I:0.02129953996234262 to:0.020689032195699227 they:0.017691857447921393 that:0.017526962289634983 it:0.017418942196368217 which:0.01639384581937364 as:0.015422020984154518 are:0.015414815296460722 or:0.015342212184098876 for:0.014934605060334663 :0.4501302959881019 +of:0.09129790931378902 the:0.07369883040827747 and:0.047842263382354346 in:0.04189055351593407 to:0.04045875475680249 a:0.03542341257202578 be:0.02020462051672066 for:0.01979292654746225 was:0.01760256398103379 at:0.017380150555488715 is:0.014984483003968216 with:0.014047653760730413 by:0.01374644383819499 :0.012670486581795598 In:0.01200961464556976 or:0.011563835749786333 from:0.011391516893522809 are:0.011273104484969465 that:0.010755276030689069 :0.4809655994608848 +and:0.2388485383634219 of:0.11674852068979218 to:0.10422843919928866 that:0.055322102072746855 by:0.052766778816579235 in:0.03152913605749273 as:0.025786952956633843 which:0.02552594452877856 the:0.019054278765202406 from:0.017863398769148147 on:0.015316026334393296 it:0.015052722132864594 with:0.014749284663262552 I:0.013551511566294607 In:0.013023852378610251 It:0.012015955716939695 who:0.01199751323295899 day:0.01169957244201611 but:0.011390555063289405 :0.192528916250286 +the:0.1731948400089812 of:0.11098843145223115 and:0.06621471634063167 to:0.058563789011659484 in:0.026105438154552997 a:0.023978862487705425 for:0.018751893208832904 as:0.016285083316604634 at:0.013834149806449982 or:0.012881792317065297 their:0.012703430037974781 tho:0.012040377642593846 be:0.011835358390387818 his:0.011612634334100178 with:0.01117740178603861 by:0.011149914060846013 .:0.009616998049194516 :0.008786020537077204 this:0.007475283220794385 :0.38180358583627794 +the:0.17083776091191683 of:0.09189912422425103 a:0.060254871845546086 and:0.047750310196321664 in:0.03574229248467786 to:0.033388047533268655 for:0.018168718891822987 or:0.017595406403593358 that:0.01652047368268241 one:0.014371638622395733 as:0.011264721746194181 tho:0.010575729066317246 his:0.010429810893162016 In:0.010381487408886924 The:0.01023499252964856 be:0.009834887946428181 other:0.009459964273151156 at:0.0091872008785791 :0.009150703072930994 :0.40195185738822503 +the:0.17027190784407714 of:0.10585557835912704 and:0.07355927771906935 to:0.05486905984958157 a:0.04543746377447453 in:0.03128555052933153 be:0.028704485173100775 was:0.02350529800142253 is:0.02215549335554494 for:0.02077556258358175 his:0.01804639098945333 or:0.016335100594594944 their:0.015847999621030492 at:0.015526727957625254 been:0.011815834631173878 are:0.01139058447814694 this:0.010362020528084328 tho:0.01035635773045807 its:0.01000473355720393 :0.30289457272291764 +the:0.13386388923058076 all:0.0933583599920954 of:0.0661769129248043 other:0.04349789297931201 and:0.043482639648886136 on:0.04031011023219421 these:0.035912480349520465 their:0.033332019813549274 be:0.03271808347090109 those:0.03035792046610063 or:0.028994400925860708 his:0.02420793155984537 been:0.01780531753400609 was:0.01751655353480093 two:0.016545826646313957 said:0.015061883981276487 for:0.014545774522194053 is:0.014413219365447772 any:0.0120411386755528 :0.2848576441467575 +out:0.05941904963054598 one:0.054824042063606755 some:0.05247794090323687 all:0.03926190883783565 part:0.035496978464792696 because:0.025099630466577632 account:0.024761806092616793 many:0.023799186613584284 and:0.02140242809025699 that:0.01934844095643571 portion:0.019105006248878457 value:0.018257503974032613 use:0.01686640358385487 time:0.015610548615003978 amount:0.01525203957993562 tion:0.015055978834802522 cause:0.014538196289420737 any:0.014448371559742294 members:0.014218034247347602 :0.49975650494749196 +about:0.1826083205545034 and:0.10871988175955799 or:0.10109924455165377 of:0.08873453361381767 to:0.058042330584911414 was:0.04859471002511044 than:0.045156971430966794 at:0.0444026784695855 is:0.028068413534749228 the:0.027815820121917186 containing:0.02084035880518556 number:0.0192924747114731 over:0.0189766617045373 from:0.018471311236419603 on:0.018019323725997342 with:0.017156808085058997 nearly:0.015683533664505814 east:0.015230636245613055 for:0.014652222243380532 :0.10743376493105533 +of:0.09129790931378902 the:0.07369883040827747 and:0.047842263382354346 in:0.04189055351593407 to:0.04045875475680249 a:0.03542341257202578 be:0.02020462051672066 for:0.01979292654746225 was:0.01760256398103379 at:0.017380150555488715 is:0.014984483003968216 with:0.014047653760730413 by:0.01374644383819499 :0.012670486581795598 In:0.01200961464556976 or:0.011563835749786333 from:0.011391516893522809 are:0.011273104484969465 that:0.010755276030689069 :0.4809655994608848 +the:0.23162098934516342 a:0.09042376785170878 of:0.06350469145474291 and:0.05895726041676459 The:0.02836904090725827 to:0.024734987765639017 in:0.02184982025704187 tho:0.018930419378310026 Mr.:0.015280214425216288 or:0.013291196022438808 .:0.012386937954140134 that:0.012072031766790784 his:0.011899823389210232 tbe:0.011651458985776693 an:0.01164693548207075 with:0.01158109411781371 by:0.011106826648348595 for:0.009871393684921887 :0.009415093752312063 :0.33040601639433115 +feet:0.0719208472326295 poles:0.05759396229176634 up:0.04010587224329879 chains:0.0385088170079141 entitled:0.029123404981740347 went:0.027388526271997813 came:0.025857650765910022 down:0.025633262313841977 him:0.025574415868859987 as:0.024916209858287616 and:0.023917753661251574 subject:0.02185045005331621 brought:0.02171367122116056 them:0.021644069985480026 it:0.02099405133651225 rods:0.019030517253069822 back:0.018922583019034468 go:0.01891708435510451 sent:0.018892511875840953 :0.44649433840298314 +of:0.13261931021687628 the:0.07407673758377663 in:0.07048880819983303 and:0.05195611100306877 a:0.04872313791377405 for:0.034543560788885944 to:0.029166629388134503 by:0.021452682712288684 In:0.019075690567150094 or:0.018512628240112673 as:0.017433270760336083 that:0.015190341830798157 with:0.013109022990102432 his:0.012053672610355835 :0.011943694897424391 from:0.011772615041157855 be:0.01132690875110011 an:0.011094152505140906 their:0.010517451297363553 :0.38394357270232 +the:0.1660512582853001 a:0.11058037744530753 of:0.09866810593618755 in:0.047730858373050314 and:0.03792754351629989 that:0.027917115003788455 an:0.02486282912998633 as:0.022103213154982673 to:0.022044737918964972 The:0.018145916099933535 for:0.01707499848358841 his:0.012222538306050463 on:0.011404912214252862 In:0.01131615852942917 which:0.010923195293818697 tho:0.010909680057280952 no:0.01082976176136415 any:0.009859075178044014 with:0.009533324320712798 :0.31889440099165717 +to:0.3198003477384576 will:0.1544369110922812 may:0.06946857720386475 shall:0.06390438367647248 would:0.06236970851584389 can:0.054210812215469514 should:0.05328777853468072 could:0.037882873851377376 not:0.034954588830236895 must:0.034210357899356766 cannot:0.014178267743273874 might:0.013263422520840102 and:0.006745409670239448 it:0.0066012124644211695 that:0.0050923110262086424 which:0.0035325958603843245 never:0.0030679550066471527 there:0.002700452216714245 then:0.002694585472604989 :0.05659744846062487 +statute:0.18503778554392375 and:0.0783983962223686 that:0.033380239341607734 or:0.03152256600567214 as:0.02563417972280283 is:0.02236126157520294 it:0.021719211380978074 was:0.019916659616198235 be:0.019571526470503822 interest:0.018952452254899003 made:0.017678352581659514 described:0.01578673853550229 them:0.015529260604471443 interested:0.01516978637816619 but:0.014400036858924001 not:0.01437132414250767 than:0.013662947787247437 been:0.012665598734066783 engaged:0.011480850852674019 :0.41176082539062353 +out:0.06331328318245613 one:0.04899354929006605 number:0.035331994293291605 means:0.029994617909449364 place:0.02742570722558769 kind:0.02570408710245527 some:0.02434456717393522 amount:0.023625769975142295 all:0.020971384007165476 loss:0.020612983259681323 purpose:0.01911172226058355 time:0.01851115178566863 lack:0.01844292330101573 matter:0.018095937825744975 that:0.017235979635830567 use:0.01668932965924554 course:0.016655994298440637 sort:0.016354157060318793 point:0.015593931239830643 :0.5219909295140905 +of:0.1257909310672679 such:0.08818377161438348 with:0.0781383792734196 to:0.07048369705091789 in:0.06906166178803158 as:0.059546183720558137 for:0.048202152283287336 and:0.04751781567886834 is:0.039614469560759646 at:0.038174185540172705 by:0.0374647446079474 that:0.03191287336971224 on:0.028066247384131875 was:0.024965539369564863 made:0.02211308571834045 make:0.019627257636154128 from:0.019272426596330095 be:0.017396347007251817 In:0.015492739683192789 :0.11797549104970773 +;:0.013995246653276753 in:0.012142303624606414 one:0.01110439684402698 up:0.011046693529420401 there:0.01097207503187511 men:0.010946849818750708 it,:0.009570863233975924 them,:0.007629727440200793 to:0.006793735662444277 hundred:0.00671818565574293 1:0.006611075351333076 out:0.006433464559938333 it:0.006054817737577586 you:0.0060012566463736264 him:0.005961011704694261 down:0.005778668901608296 them:0.005668323670109664 city:0.005614772172673373 States:0.00540253747376115 :0.8445539942876102 +the:0.5297769080987089 this:0.06676865417834753 an:0.057893206986123255 a:0.044710759838602544 tho:0.031667528630358294 The:0.02401806485794809 any:0.017199513192426928 our:0.016644968065505014 of:0.014743136189220438 and:0.014346204645186543 their:0.014293344362856097 other:0.013386820239728082 his:0.011057309736496308 tbe:0.010510401089578509 one:0.009726306668038235 some:0.009267178640328801 every:0.008653803529360517 its:0.008502114088647332 whole:0.008332963428121162 :0.08750081353441745 +the:0.09777078585636206 of:0.07081433100622911 to:0.04559270892947347 and:0.04368018182366854 .:0.03913575466544439 Mr.:0.03645808166343487 a:0.03211783440461773 in:0.02565084019744012 at:0.01775941322943709 his:0.0172171789247959 was:0.0163320836097233 Mrs.:0.016213759057880504 be:0.012438624372100597 H.:0.012297386381579827 :0.011348365562069659 A.:0.010859595947677065 by:0.01012885831062819 W.:0.009987266272602649 In:0.009898957211702395 :0.46329799257313253 +and:0.09059133729788839 the:0.06006400125320799 of:0.05063962828943911 to:0.04753262059403346 a:0.021339209627495737 that:0.020354087511242232 was:0.02032273326826959 said:0.019331794083073506 be:0.0182366445995837 or:0.015404311317721204 for:0.015231424961901595 by:0.013990506574321316 will:0.01336568777345571 which:0.012510967674017714 been:0.012025379431506536 are:0.011125644844942481 were:0.010930994529814523 is:0.010875248920631348 have:0.010572811739802691 :0.5245549657076513 +all:0.07129570287508043 it:0.05711305110374007 and:0.04676718653102504 went:0.029889117762655036 him:0.02681827525450393 them:0.025665934596122715 was:0.025551234350449828 is:0.023892023043650512 turned:0.023483820263485135 passed:0.021324743890097184 extending:0.020196725655346234 of:0.02008354899446698 ing:0.020017606693547255 looking:0.019236558640770948 for:0.019139254405143698 go:0.018192444204448537 came:0.017507978179025083 up:0.017287413833210988 or:0.01699146193016373 :0.47854591779306666 +the:0.10442087431339736 and:0.06939931179057497 of:0.059572203373200204 to:0.053395145484619676 a:0.0486301317746673 be:0.02495829126582574 is:0.02176810608490287 in:0.021387948844742682 was:0.021133420387223628 at:0.016201961358633225 it:0.014708045421280487 I:0.014013289124653647 or:0.013113755083441998 .:0.012431333144635159 for:0.012232343553272098 he:0.011657353848976844 :0.010801417707194536 not:0.01066798961461849 that:0.010348695280748398 :0.4481583825433907 +the:0.2198553054381073 of:0.21008223448764576 on:0.07258358961149543 at:0.05650517335400982 from:0.04828223043336021 in:0.033569514921013004 and:0.032875481074069644 by:0.020485780795161307 to:0.016400670888376507 County:0.015414942911001824 :0.015397539773110097 said:0.015085708009783996 North:0.013065655523703899 The:0.010998945627944163 tho:0.010362626370267228 a:0.010015923055200155 City:0.00994076843293558 Central:0.008124330815433373 Fourth:0.007715403903382089 :0.17223817457399862 +they:0.08285829079392477 who:0.08023477245355798 and:0.056887590766148736 which:0.05582222697740262 we:0.04285430971877981 They:0.03996706714695416 that:0.03497481248518051 there:0.03484919528664559 men:0.02524001290829121 There:0.02474831633124766 We:0.02015422656311679 you:0.019269708790674998 people:0.014419134229897514 These:0.011707865790758403 these:0.010559561231660061 the:0.010490708103882267 as:0.008072339534385334 or:0.006963845527208775 them:0.006899772040638591 :0.4120262433196442 +of:0.09129790931378902 the:0.07369883040827747 and:0.047842263382354346 in:0.04189055351593407 to:0.04045875475680249 a:0.03542341257202578 be:0.02020462051672066 for:0.01979292654746225 was:0.01760256398103379 at:0.017380150555488715 is:0.014984483003968216 with:0.014047653760730413 by:0.01374644383819499 :0.012670486581795598 In:0.01200961464556976 or:0.011563835749786333 from:0.011391516893522809 are:0.011273104484969465 that:0.010755276030689069 :0.4809655994608848 +the:0.11919516938815296 of:0.07230453158552728 and:0.05781056740443249 a:0.043018564803886335 to:0.031305092790907506 in:0.020848713353460488 at:0.014270110001066288 .:0.012526810245749479 :0.012413283442322082 for:0.011719122709941797 by:0.010808400946589808 or:0.010404172990115616 The:0.01003576004804544 with:0.009811868184449042 tho:0.009295902015355835 was:0.008924239095331684 that:0.008672304223433876 is:0.0085591147338948 be:0.008335143826716943 :0.5187411282106204 +at:0.23323462010011325 for:0.0833842784998519 to:0.05251691508459144 of:0.05106924524047931 about:0.050630338233179945 the:0.043371998614652636 and:0.039799498068964725 in:0.027835411369802936 a:0.02392537554419731 At:0.019036744377785055 was:0.015953689488173255 be:0.013325457773273357 during:0.009539894855179577 or:0.008597775670440646 For:0.008497632532446673 than:0.008372645528873611 his:0.008246462307778795 over:0.008184540323577563 About:0.008030156582710845 :0.2854473198039271 +of:0.2808141355158468 to:0.11413013687446809 at:0.06319247183240854 for:0.06268740202760423 in:0.05629718207948665 that:0.05073635668425226 and:0.04974560532994934 by:0.04119136293396233 from:0.03509050406514752 on:0.031516899127037735 with:0.028477119302093405 which:0.01615122375652433 In:0.014602804156593928 all:0.01180221050204241 as:0.010571391693014595 about:0.010013079140714778 over:0.009849515342879232 when:0.00959944864230059 under:0.009288355273076882 :0.09324279572059638 +It:0.16684908023343487 it:0.15273563471648685 I:0.07438041327655097 there:0.07247987117892489 he:0.06952996487191712 This:0.05004769895381098 and:0.04447997899182553 which:0.032658331751547406 He:0.029676255976702877 this:0.025426464440103495 what:0.02210592106509044 that:0.021964437299309143 There:0.02023006236582742 she:0.01992032771498921 who:0.012385759416013768 What:0.011723392578435944 That:0.010036341245750157 She:0.008841031101617403 time:0.006366853457394717 :0.14716217936426684 +of:0.09129790931378902 the:0.07369883040827747 and:0.047842263382354346 in:0.04189055351593407 to:0.04045875475680249 a:0.03542341257202578 be:0.02020462051672066 for:0.01979292654746225 was:0.01760256398103379 at:0.017380150555488715 is:0.014984483003968216 with:0.014047653760730413 by:0.01374644383819499 :0.012670486581795598 In:0.01200961464556976 or:0.011563835749786333 from:0.011391516893522809 are:0.011273104484969465 that:0.010755276030689069 :0.4809655994608848 +at:0.39280073181687053 of:0.1146170428851157 to:0.10258931136776576 in:0.09745038119078249 for:0.0379729404655974 from:0.03583999396810749 In:0.032538844554996525 At:0.019599934314145518 and:0.018841420926767865 within:0.018419448469198275 on:0.017018533391793083 about:0.014402012075208102 that:0.013708601518930344 during:0.01209227946794394 over:0.011700305975597191 by:0.009642989691060467 with:0.006922789542247833 into:0.005338399683778737 between:0.004809643424342139 :0.03269439526975058 +the:0.11864838060610715 and:0.09032138936894603 of:0.055756317646336186 to:0.0437169608024456 a:0.037640675153399174 was:0.03033511015538859 in:0.029471299843645937 be:0.02594582570051817 Mr.:0.025257990984503115 his:0.021116278786459605 is:0.021032280450315317 I:0.018996217329502994 he:0.014651722469508029 not:0.014289805610664409 it:0.013264101624503886 her:0.013108561537268935 will:0.012778030241006948 been:0.011357875715058455 their:0.0110213452507603 :0.39028983072366114 +the:0.16470654815981697 a:0.07433235793269813 his:0.07235486633899968 their:0.06756818827043888 this:0.05660018608608466 of:0.055860528374348746 in:0.04802338310752263 our:0.0385104955335192 great:0.0360769348638599 any:0.033124040720819474 that:0.032490961640719705 other:0.028557021959550382 every:0.027507908008636128 her:0.026712436251223545 own:0.026588082985867866 old:0.024948200098538233 good:0.023713887227372752 its:0.02015555103828355 same:0.018428332356525565 :0.12274008904517396 +made:0.08029750359708258 and:0.0678833567656104 accompanied:0.052963276946685095 him:0.03489736644158213 was:0.03128950395690429 up:0.02416320312689543 it:0.023787953017385753 ed:0.02347575978751791 followed:0.023313774441496436 held:0.022407607859767493 out:0.02168270487823189 or:0.020489864747923914 taken:0.018235217525242393 given:0.018100068469247707 owned:0.016050298861543986 survived:0.01584604169612574 not:0.015652594387021868 down:0.014230409508807244 done:0.014044223860099049 :0.4601892701248287 +he:0.14507456315105602 and:0.09813847387229264 it:0.07592544842920698 who:0.06372275983379685 He:0.06262744266999741 It:0.06014162495255499 which:0.048053671567894064 that:0.03467932359723033 she:0.023815010411133184 She:0.013873987341247064 one:0.011779159620642899 man:0.010921201826087254 ho:0.010244125173685378 lie:0.00963146620847584 also:0.009594196207116198 as:0.009166077823918995 there:0.007536404868220858 This:0.006705155933397046 company:0.005921169426541995 :0.29144873708550395 +of:0.2959900404987134 and:0.09207256578435047 to:0.0664818978545476 for:0.06479909927098208 that:0.055752010014589216 in:0.05004832242566512 with:0.04160043984016253 by:0.03455074258383386 have:0.029506484289109833 on:0.023392019142107635 all:0.020035421332042835 from:0.01947480853820315 upon:0.016422421472102287 as:0.015007708177296365 when:0.014770539833128218 which:0.013995574032526442 had:0.013736876865564067 up:0.01225394628959658 at:0.009490505096877367 :0.10961857665860095 +put:0.11178508945662076 to:0.10980331884083591 of:0.10101533892545987 keep:0.05619483836593203 get:0.04634275486472664 take:0.04566419464271619 for:0.0443764985972748 with:0.04087182425039303 give:0.031120945946362617 threw:0.029130188610936157 upon:0.025235761182951216 bring:0.025217692768339028 throw:0.023083176154555487 send:0.022418718485447343 took:0.02240446191849805 from:0.022063672469832363 let:0.021069075423407586 carry:0.020681196179876075 drove:0.020577852754348775 :0.17994340016148605 +the:0.10199665559103764 and:0.07713547567948774 of:0.041347780702152385 in:0.024186174430904255 was:0.024164362896384475 to:0.02108098745161965 for:0.018720410508683342 that:0.018281675128206592 is:0.01814335812147744 he:0.016523175383077057 as:0.015868178535881888 his:0.015610793592464096 be:0.015139187977977484 be-:0.012949134719825844 said:0.012826890890490161 In:0.012786976428032828 her:0.012684963833504911 or:0.012669257693463908 :0.01224147820803361 :0.5146430822272947 +the:0.1093008997673315 and:0.08406080139142774 of:0.05573492664976098 a:0.05327063252597285 to:0.02392615211096689 was:0.021477699509761045 be:0.020504717502005537 is:0.018655687414811054 at:0.016959027523467146 in:0.014656728926398192 or:0.013171201070390683 .:0.011239911657119206 are:0.010789939521017105 for:0.010372517313958017 :0.0100362791345065 he:0.009990112785519237 I:0.009681073213607944 as:0.009607911637502577 his:0.009507768929951923 :0.48605601141452387 +and:0.045676019148290004 it:0.03417164245425952 is:0.028556639444133735 was:0.021501435129468567 him:0.01971078946445867 feet:0.01833835068820207 that:0.016014743656303294 out:0.015112268284126828 them:0.014957914250215226 but:0.01431722166740317 ;:0.013869217543924195 me:0.013304941761563122 in:0.012658976447164185 so:0.01180589644728783 one:0.011385312967257977 looked:0.011337650238136224 for:0.010625155003177816 made:0.010509648439195222 time:0.010350916046055347 :0.664795260919377 +the:0.11005608853566927 of:0.09040603879869959 and:0.08743560916348402 in:0.043187309367728806 to:0.04242675891035215 on:0.027665667703472365 that:0.01957467927660031 as:0.01723379373618948 an:0.01648602906678816 or:0.015810351694074583 at:0.012876443443094632 a:0.011034490783486691 from:0.010957845937214576 his:0.010815718238843393 by:0.010788127720520383 such:0.010618260211360015 be:0.010539901995805904 :0.010297355737676912 for:0.010215521866452866 :0.4305740078124859 +went:0.08767091767528822 carried:0.08138189225163693 get:0.05816835146713374 go:0.057954857034126395 passed:0.05225766520086815 far:0.0484493974027092 taken:0.045994042535020485 turned:0.03946412058344133 ran:0.03389687324454027 put:0.03292761199579497 got:0.030401902814427822 them:0.029377432541120865 and:0.02896272283374728 swept:0.026336867973835203 going:0.026158080046258813 take:0.02604454998544915 came:0.025770342762599274 it:0.02569467344093298 run:0.02524147214767354 :0.2168462260633954 +the:0.2665849475617704 a:0.1325510557230103 of:0.08313951661852763 and:0.048675172413615984 are:0.04079886505841072 with:0.03661641314445555 very:0.03257596928493598 these:0.029610453659141688 other:0.027049615506193527 The:0.026564674277293254 those:0.02416467184980976 by:0.023137754926916786 some:0.01876853404908986 in:0.018411148167238454 for:0.01779821176249967 tho:0.016882048393687843 their:0.016206807908471718 his:0.015978531768596198 all:0.015673348899223793 :0.10781225902711085 +W.:0.087774326391535 Mrs.:0.0729989138604011 .:0.06125120901411214 Mr.:0.05321407453062358 John:0.050177925993942794 J.:0.04842217451981308 M.:0.03951570255782308 S.:0.03372896368576687 H.:0.033257847265253736 C.:0.033096624759624896 E.:0.0324264377309076 D.:0.026460587048811473 Dr.:0.023952804539155104 of:0.022359342254162806 and:0.02184428262485842 A.:0.020580478239459497 R.:0.019333833406430606 James:0.017811901192945415 William:0.017214133670936247 :0.2835784367134366 +up:0.05700266716616658 addition:0.04953632882010039 and:0.04490531028211803 came:0.04114305958527159 as:0.04055237558902992 due:0.03201550142716485 according:0.03129993379445457 reference:0.030478730316372868 sent:0.02990980261918604 come:0.02933172411388293 went:0.026782053734389237 Up:0.026552697895023868 regard:0.024442340701925202 given:0.023424952825448295 brought:0.022894402438597753 go:0.022293966736896334 attention:0.02201988315146004 answer:0.019273660204722595 back:0.018803859585491568 :0.4063367490122974 +was:0.1862537338263195 be:0.10602977004003683 he:0.07994867682453245 are:0.07480809424615295 is:0.07253049839459262 been:0.06856552695863723 were:0.0628345904476125 and:0.05619476354211119 not:0.037109422253301536 have:0.027018277105163063 she:0.023846576876403965 has:0.02367665899366098 had:0.020967711562296855 it:0.02075767514805221 being:0.018343387455718674 I:0.016491427531808173 He:0.015886581064786794 who:0.014091184885070062 they:0.010603816190756132 :0.0630416266529863 +is:0.1300949053123692 ought:0.06235942008217411 are:0.06072445398663133 seems:0.05697318922100556 was:0.04954471475520722 not:0.048536362204045544 said:0.03881623685409472 seemed:0.03220746110521765 as:0.030923473227594384 it:0.030881869856406088 claimed:0.028226689520969073 have:0.027725540143517465 and:0.027557757709861613 likely:0.02587900806524851 seem:0.02574969309575762 supposed:0.023317446089120043 had:0.02145961764731352 Is:0.017651730366473797 proved:0.01677680343414685 :0.24359362732284573 +feet:0.25253364767818687 so:0.09558545955067776 inches:0.056199665570352296 and:0.045998132376584885 a:0.037531824229239855 as:0.03389056981327772 is:0.03356387679523523 was:0.0314216671926277 too:0.02719489492142974 very:0.024606950527097392 how:0.021208403226896228 of:0.01342522860546581 are:0.013032912695672118 with:0.011105633391965743 not:0.010225788361034376 miles:0.010179952511245208 been:0.009742498518428172 had:0.009430171896321641 or:0.00877980318335522 :0.25334291895490607 +as:0.06931392982974462 according:0.052071562389565784 up:0.0511867300210483 and:0.040371568633051955 went:0.03351644485287816 back:0.032358406609281 regard:0.03073407747799069 feet:0.02852138506231652 down:0.026379903432040268 owing:0.02466642634685871 due:0.023695193974505355 go:0.022910973192184297 reference:0.020802802907016128 came:0.019883741951819873 sent:0.019874244915639484 attention:0.019565955494145405 come:0.01885185084678811 given:0.018792390567602263 it:0.017366961307524745 :0.4281354501879983 +:0.05408755002078587 that:0.049531093299571755 and:0.026307747831082865 it.:0.023066050300906284 but:0.01604063510609521 as:0.013691133477483644 them.:0.013231826614228009 country.:0.010841946065548622 of:0.010487154798430135 which:0.009468692177853443 people.:0.008334614695462483 years.:0.008004416265567844 time.:0.007956347283674411 If:0.007858697640010603 him.:0.007413514011734311 year.:0.006977232836926869 for:0.006851092903969388 life.:0.006064905382420001 .:0.005982979647669748 :0.7068023696405785 +of:0.1871094139537298 and:0.08180353430003881 are:0.05273898925022509 is:0.04431911499211212 in:0.040191378588168444 the:0.030250809160831258 by:0.025626268703481562 now:0.025184776003638852 for:0.023951436710418716 without:0.022803110074675864 not:0.02246215146965972 was:0.02207836563217326 it:0.02196234873723601 from:0.02118283171599719 after:0.021051988854005388 as:0.02018835641783001 with:0.01547629402900755 to:0.015186546937237033 on:0.013880181116557365 :0.291552103352976 +was:0.15502202680300567 be:0.14283303375920955 is:0.1352628737148901 are:0.10627589531265484 and:0.06803793479718942 were:0.053571230590754755 al-:0.0360501967767492 am:0.03340392777912102 been:0.031870276780092716 always:0.02580768610083924 Is:0.020737640833814207 being:0.01658834567215498 it:0.014425460534132298 bo:0.013155541957353066 getting:0.010195341746496018 get:0.010074537155754681 have:0.009990599328577857 not:0.009293347661795074 had:0.00847509408135385 :0.09792900861406141 +he:0.12789912136631293 and:0.12639878760784745 who:0.07338745606660751 has:0.06338073443641896 I:0.050752337682234576 they:0.0485022264898061 which:0.04183375099378273 she:0.038858529996495104 He:0.03655673444513635 have:0.034423483763342484 that:0.031092502440671018 had:0.03053744764155552 never:0.02096905909151311 the:0.019933416400489557 otherwise:0.019602006762048624 to:0.016298162317212293 This:0.015289056799738887 we:0.014751349923022652 this:0.013303964149096596 :0.17522987162666753 +the:0.21358127554484752 a:0.09949023032004581 and:0.06790108162130665 of:0.056125931975553905 to:0.045364510367412285 in:0.038980257931291125 The:0.03210153100854345 his:0.028416913466961256 on:0.020015195838055604 at:0.01796909174497558 an:0.015572316930763963 tho:0.014595191869226988 that:0.011178508217252081 :0.010921139559256407 their:0.00977883062787101 my:0.00899408373483248 for:0.0088861034715329 In:0.008594729501811739 its:0.008371115641540186 :0.28216196062691906 +of:0.09043409053013649 the:0.08458268447909405 and:0.06941169710674647 to:0.06842685376506503 a:0.03502196399400508 be:0.027631492661475 was:0.02262770347407094 or:0.020899547147549786 is:0.018061672947865565 are:0.017763045964156114 his:0.017114589037761113 for:0.016727962397261282 re-:0.0162769353827767 their:0.01514882567544624 been:0.013878331263912594 were:0.013374436412516415 that:0.01319950985941409 at:0.012567281873590285 :0.012294075404375895 :0.41355730062278084 +the:0.39749834532651884 a:0.07520030034269234 and:0.05540858759821703 The:0.03273515726769502 tho:0.030061875542463562 of:0.020144331424922633 tbe:0.014929647509541684 in:0.014268129706664795 or:0.013333166761078447 .:0.013287381914101323 an:0.009000188755386574 to:0.00880680429595084 :0.007943763822197133 Mr.:0.00773879605474787 by:0.007328417831573476 as:0.005922572098978465 for:0.0047526933692942485 that:0.004736121968310169 on:0.004594595720579333 :0.2713091226890862 +of:0.09129790931378902 the:0.07369883040827747 and:0.047842263382354346 in:0.04189055351593407 to:0.04045875475680249 a:0.03542341257202578 be:0.02020462051672066 for:0.01979292654746225 was:0.01760256398103379 at:0.017380150555488715 is:0.014984483003968216 with:0.014047653760730413 by:0.01374644383819499 :0.012670486581795598 In:0.01200961464556976 or:0.011563835749786333 from:0.011391516893522809 are:0.011273104484969465 that:0.010755276030689069 :0.4809655994608848 +the:0.18966561988927685 and:0.07332811833427204 a:0.049259947707463426 of:0.04754929247891586 Mr.:0.041663761250460174 The:0.034104931062106686 is:0.028274383450473093 was:0.018337975145060064 be:0.01629858290530957 to:0.01569563585925913 are:0.014410987192109814 an:0.013775080965948351 tho:0.013674985375651346 .:0.013218580925388903 as:0.013096018624131072 that:0.012816832747434235 he:0.011928411526305303 it:0.011566571672822061 :0.009847444480919575 :0.37048683840669244 +was:0.20422068470474886 be:0.20214713412904306 is:0.12171802805420288 been:0.06521339929481872 are:0.04741801252842584 and:0.04327683966727002 were:0.039606213434571866 not:0.03714227464339526 had:0.03326444253843344 have:0.0318608226673747 has:0.031086488329231794 being:0.02092031818447506 more:0.01612460782988612 as:0.013410085973578335 most:0.013059735234445122 Is:0.012540230004784159 so:0.011545238339474889 or:0.011334399335523503 it:0.01006513556930652 :0.03304590953700984 +of:0.40246641301133823 in:0.17045312051687717 to:0.08797276465268795 from:0.05023633814538686 on:0.038887791401689784 by:0.03226248889980486 In:0.02551174678116553 at:0.023673754585067475 for:0.01714318183168438 with:0.017076285859931373 that:0.01636356013495779 into:0.014285892877150418 and:0.013162801659495675 over:0.011009718687178854 through:0.008510245650594345 across:0.008251018131409901 upon:0.007618891666833427 between:0.005860544459904916 within:0.005803886842792476 :0.04244955420404862 +the:0.20423664442365125 a:0.10246545219881023 of:0.07425811985303385 and:0.050595110597888314 to:0.030812085400655435 in:0.027956895609403617 be:0.0232880053997145 his:0.02327818797126904 or:0.020941341765667053 for:0.020760292479235026 was:0.01732939642990788 their:0.015442879866743144 tho:0.013687795927463995 at:0.013439678124902587 is:0.012652506608654298 by:0.011220168347104546 this:0.010054721513683482 been:0.009596783820684032 are:0.008988752477380032 :0.3079951811841477 +able:0.07552158164578 enough:0.0486763646156188 began:0.04607645795555063 and:0.044562077548117085 right:0.043452996424429145 time:0.04326598758756138 order:0.03894714739322488 him:0.03817659250937823 is:0.03164720602178357 want:0.03128476838513419 nothing:0.0293846895533889 unable:0.029296665963083637 wish:0.02810101958042639 me:0.027279654740848612 desire:0.02708070934113991 them:0.026745975971333977 not:0.026271069566073963 glad:0.025449320000964188 difficult:0.024064831795920234 :0.31371488340024223 +the:0.11919516938815296 of:0.07230453158552728 and:0.05781056740443249 a:0.043018564803886335 to:0.031305092790907506 in:0.020848713353460488 at:0.014270110001066288 .:0.012526810245749479 :0.012413283442322082 for:0.011719122709941797 by:0.010808400946589808 or:0.010404172990115616 The:0.01003576004804544 with:0.009811868184449042 tho:0.009295902015355835 was:0.008924239095331684 that:0.008672304223433876 is:0.0085591147338948 be:0.008335143826716943 :0.5187411282106204 +that:0.298271107806373 and:0.15231099468294887 but:0.05425708956536086 if:0.0365746785442632 when:0.036237276966220575 where:0.034875323325062386 which:0.03211973898294982 as:0.02981166807768261 Then:0.02053986173605224 But:0.01983693269486051 If:0.01908825092960859 time:0.018703219266474815 because:0.01148572386555154 until:0.010322078977824858 while:0.010268000802764871 then:0.010120350810279377 though:0.009627610782983168 said:0.00873978076280895 ago:0.008570928221952125 :0.1772393831979776 +he:0.2131535896265262 I:0.1703795998050618 they:0.09937616744084553 she:0.061052780473077786 we:0.050264161346241634 and:0.03974134389087976 who:0.03440160440001184 it:0.029046286466809183 that:0.02675905367540155 you:0.026086907471039103 one:0.02599828364586532 which:0.021087476367035472 He:0.01945804201335527 man:0.016254364027572393 1:0.015357858510995569 ho:0.01433696976990555 nothing:0.009820985562496264 She:0.008204307139681628 We:0.007821900842506549 :0.11039831752469162 +of:0.12126685006083614 the:0.09676053235795393 a:0.086403993231287 and:0.06992981911698502 to:0.05054272835126962 in:0.03714921304722015 for:0.019087085062388043 that:0.017683039531487203 by:0.01759787218743998 an:0.01737872390738882 with:0.016297586169268054 or:0.016073089471661518 at:0.014189248879431876 was:0.013014086342565873 be-:0.012262872349964425 In:0.011877230440916006 which:0.010311729952852112 is:0.00954780365640623 con-:0.009443947613332703 :0.3521825482693453 +the:0.7309621020469338 The:0.08046460954465767 tho:0.035154370540042765 its:0.026260980583556578 our:0.018798429576911573 their:0.013055548734645804 a:0.012174618067654965 tbe:0.010924617272630301 this:0.009809421152169602 his:0.00874553833765351 an:0.006676804665992691 of:0.006499528331086391 and:0.0060141148721315554 in:0.004941971502204104 to:0.0049004856843152065 at:0.004635507010435354 Tho:0.003849255631768846 Its:0.0034686374318575962 was:0.00291518485976827 :0.008748274153583395 +:0.06380183285188827 .:0.031460966925052805 it.:0.02550860004289598 and:0.014221164007515727 Mr.:0.010393829581757486 boy.:0.01002742755110872 him.:0.009678578916238755 time.:0.009273593846282903 girl.:0.008523588980049727 them.:0.008395590227201731 day.:0.006805361933499945 No.:0.006509367162626719 country.:0.006395390379272339 follows::0.006217131705391145 to:0.006123120171611277 of:0.006031683268307455 2.:0.005959960000455325 ::0.005872530714199831 year.:0.005435420700755925 :0.7523648610338879 +would:0.13516776815931453 to:0.10175318883572715 who:0.0734216616549984 they:0.06090829687960963 I:0.054414498797697934 which:0.046947310165833735 must:0.0405200574155989 might:0.036445589637541506 shall:0.03272411333844378 and:0.03228038765818951 should:0.03179090655993478 that:0.029508760759060126 not:0.02876680420731567 we:0.028503874055856488 may:0.028150033623979002 could:0.022163961267380006 will:0.019029697840863502 there:0.014322928357478427 They:0.011858887319353098 :0.17032127346582382 +and:0.06317916895143688 was:0.03089079697380977 is:0.020044819943736053 be:0.019406329289829806 are:0.016631216139614186 that:0.015910745835586493 it:0.014132589635136123 been:0.013429954470292457 made:0.013153338042273357 were:0.012494049396038097 or:0.012369181282419555 them:0.011608721240324167 up:0.01101461536327863 him:0.010833186604515583 as:0.010718511743974049 succeeded:0.010682665877813333 engaged:0.010592681714621757 not:0.009777868089593193 now:0.00948198968071834 :0.6826475697249881 +the:0.1697456923848459 by:0.13826380144898526 and:0.10082214675587592 of:0.0482361487345162 said:0.034220661304809864 :0.030556223529957842 to:0.02796213829294833 The:0.019732166445067197 that:0.01595648596388356 pastor,:0.015917935157768553 as:0.014983766019490832 from:0.007141271035009192 a:0.007104907365047794 at:0.006425802222202927 church.:0.006254006347877643 .:0.00619110656505249 with:0.004784116688047849 pastor.:0.004454142013649967 tho:0.004364486834778992 :0.33588299489018375 +is:0.3653468964403502 was:0.1893164948909823 are:0.05704724825304826 and:0.055131246228750465 Is:0.048662690984562586 had:0.028594780673920035 has:0.025605385821532895 were:0.02412574652298035 have:0.02060889609234474 but:0.020335207603955567 if:0.01897459981066769 it:0.013326763453721911 am:0.010985605965481976 that:0.008641639208502543 will:0.008206673974392018 or:0.008006742610054133 do:0.007726218213695274 did:0.006569042346013421 in:0.006197279136913941 :0.07559084176812975 +and:0.09631219532671687 was:0.03513566928966104 held:0.02987715681559008 Beginning:0.024332169066967536 is:0.023122938489353394 look:0.022074108253454683 arrived:0.021820518428646088 that:0.021226918252779888 interest:0.02006974641058921 thereon:0.01971421054267379 made:0.019401567074562896 are:0.019271449916013022 up:0.01806602795372081 him:0.01678700722897829 be:0.016375054451444982 but:0.01586396852970274 out:0.015503094089883073 or:0.013721423267833084 not:0.012734170433403743 :0.5375906061780248 +to:0.14189393590180194 will:0.05739228135466825 t:0.05453314980602502 that:0.041843043017140265 would:0.03909264579669568 and:0.03883550485435748 I:0.03009182294498684 may:0.02609491598813315 which:0.020695165253699622 should:0.01977656238993678 shall:0.017907350947676072 not:0.014989936622492093 can:0.014921005933167681 1:0.01482737719229919 :0.012846870964661042 must:0.012781991865814649 when:0.012334037662333649 this:0.012312090622223729 could:0.010861447327209851 :0.40496886355467704 +of:0.3333065458166059 to:0.08827624799904184 in:0.0802205609834302 and:0.054727902570164404 with:0.053844104463667414 by:0.04179886891191935 that:0.041271857566265 for:0.03533919348417383 on:0.03411279637493314 from:0.024543815024310772 In:0.01932993367492715 is:0.017203666033063315 at:0.016875029540651308 upon:0.013132813032282519 as:0.012369541014306314 into:0.012032362214164318 was:0.011276368692869599 which:0.009436797977337211 under:0.009018887811300424 :0.09088270681458599 +of:0.09129790931378902 the:0.07369883040827747 and:0.047842263382354346 in:0.04189055351593407 to:0.04045875475680249 a:0.03542341257202578 be:0.02020462051672066 for:0.01979292654746225 was:0.01760256398103379 at:0.017380150555488715 is:0.014984483003968216 with:0.014047653760730413 by:0.01374644383819499 :0.012670486581795598 In:0.01200961464556976 or:0.011563835749786333 from:0.011391516893522809 are:0.011273104484969465 that:0.010755276030689069 :0.4809655994608848 +of:0.5194694586760311 in:0.1330051001477447 to:0.06851432888974311 by:0.0550349750629288 In:0.02878169727629539 from:0.024254562818901995 that:0.023947275467146364 for:0.0208712368580367 and:0.02014793498328324 with:0.012527167863237659 on:0.009063621849989515 at:0.007949625624273258 into:0.007715055802641988 which:0.006610948246463611 ot:0.006473742536331837 throughout:0.006333274786906171 between:0.0060025462560295145 upon:0.005525803780418543 as:0.004602943667776204 :0.03216869940582036 +the:0.5185816713552248 of:0.07665501267399359 The:0.06444090880472847 a:0.026574395144464132 from:0.026449597885056114 tho:0.024997563940744327 and:0.02171716277882688 for:0.019383853567145455 in:0.014971633585597022 at:0.013331366585070123 tbe:0.011166046511602929 to:0.010901110349837265 that:0.010025415603493928 A:0.009690416377046382 by:0.009416396700682747 said:0.009168746231535286 his:0.006788141816763601 old:0.006496102000633649 this:0.006024622695925471 :0.11221983539162779 +one:0.0793092951769567 part:0.03499872460097183 out:0.024431206666010955 portion:0.021371839380432446 side:0.017793495858940543 some:0.014581375577805327 that:0.014192984529866021 tion:0.013643782945564628 member:0.012600961637713619 members:0.012024818404567643 office:0.011724478994255697 any:0.010701426521782015 all:0.010650397320457663 and:0.00980224438363923 payment:0.009516112361615207 account:0.009473436319125074 virtue:0.009275065279112517 parts:0.009221863249830355 end:0.009168467686442978 :0.6645180231049095 +secured:0.23171430082806793 made:0.0461896609953322 and:0.03712650874647173 provided:0.024758480147952244 conveyed:0.023300466184664664 executed:0.017882294452989344 that:0.01749702594885698 delivered:0.015790198718089902 filed:0.015590531210890296 assigned:0.013531473578844821 ed:0.011908750709168454 was:0.010660323199788614 described:0.010324033327123215 given:0.009772685262550469 owned:0.009719461163663961 appointed:0.009570909361095456 required:0.00894468264369124 occupied:0.008194705446200396 foreclosed:0.007753588228569024 :0.4687699198459891 +of:0.19232165432188145 at:0.1474435854020136 in:0.11184133434340746 to:0.08598085688571534 on:0.06902782487868084 for:0.05410970059790058 and:0.05207070712176932 from:0.0369764449620992 that:0.029881056619954553 In:0.025876123476338858 with:0.020705473318819435 by:0.018519373319634096 upon:0.015353315225126927 up:0.014685684167739374 At:0.014589493298299927 during:0.011501702849874593 about:0.010002644224220543 after:0.009573720850227516 within:0.00951730745964601 :0.06902199667665038 +up:0.019180615216692332 men:0.013000000129092536 time:0.012134014343421175 him:0.011929555886848787 years:0.01068573524697452 ;:0.009824601477239006 here:0.009477944937301818 it,:0.009085854949993102 day:0.008892715371890467 him,:0.008578245490825075 them:0.007814641727085037 them,:0.007808462228746098 house:0.007259705020411817 in:0.006971251177797503 years,:0.006939315904188946 year:0.006804364538384722 out:0.006516600369838329 home:0.006352913519055041 down:0.006346579358035558 :0.8233968831061781 +and:0.29488643176474033 the:0.1118115331813083 of:0.08900015395406748 from:0.041996137988847645 a:0.0326097374108724 that:0.027848224018041268 his:0.027177041983532792 or:0.021881134005104573 as:0.02103312523807102 great:0.01937198898376933 this:0.017854319681865943 to:0.017607893346366605 their:0.017029102533432983 in:0.016200031033604255 not:0.013871868994652535 much:0.013453483181672842 by:0.012651485627217974 it:0.012639323064435744 such:0.012197737383797964 :0.17787924662459803 +to:0.22951919344149024 will:0.17697636837126754 would:0.12630740375271707 may:0.08842705760724588 should:0.07100462565086472 shall:0.06559642366187177 not:0.06465646268853294 must:0.03424468485472672 can:0.026822776613520054 cannot:0.01658166943000586 might:0.015696038616298855 could:0.015335291862851924 and:0.013646467434678147 it:0.006252844002246722 never:0.005314787543701264 also:0.004299702296024567 now:0.0033277420596884368 only:0.00278198014894098 well:0.0026916116265686685 :0.029516868336757603 +of:0.2548217177638266 in:0.18320211837412448 for:0.06821123303685925 and:0.05621540511815744 by:0.04675659744697994 are:0.041577511598242314 In:0.03644879932445589 is:0.02726429633908598 with:0.02154388496661698 was:0.019071980789674974 to:0.015421735125704963 from:0.013459804868403978 were:0.012581993509205261 the:0.01207926519997789 between:0.008948606667785224 on:0.007870811779030531 be:0.007854997073522395 that:0.007613082646351263 been:0.007128275224915977 :0.1509278831470786 +of:0.29753082156015714 the:0.1244899935549349 and:0.07710520117157312 a:0.05939957465827325 to:0.05084202468467319 with:0.04120549812747907 in:0.033664270990888645 for:0.031058177833293375 some:0.026995579148093515 make:0.025537088780589055 their:0.021366100222829476 all:0.02082223615005353 by:0.01965082180487805 The:0.019295073910056266 are:0.01882267875203136 many:0.01776937624378955 as:0.016191645436877546 our:0.014402298404256933 that:0.01332958050851475 :0.06952195805675726 +and:0.06317916895143688 was:0.03089079697380977 is:0.020044819943736053 be:0.019406329289829806 are:0.016631216139614186 that:0.015910745835586493 it:0.014132589635136123 been:0.013429954470292457 made:0.013153338042273357 were:0.012494049396038097 or:0.012369181282419555 them:0.011608721240324167 up:0.01101461536327863 him:0.010833186604515583 as:0.010718511743974049 succeeded:0.010682665877813333 engaged:0.010592681714621757 not:0.009777868089593193 now:0.00948198968071834 :0.6826475697249881 +one:0.1028303141280697 part:0.05963429477052991 out:0.04766456937681193 some:0.031418679026461914 members:0.030764490253327767 side:0.029940657362655835 portion:0.022063658796890564 office:0.020457735219956013 member:0.019726706386316174 end:0.019666887540649894 tion:0.018667441728710307 parts:0.016814747270460957 people:0.014112771422418794 all:0.014072739582212475 any:0.013183573287639892 One:0.013083578354183906 that:0.013024335602903442 account:0.012482348155001894 many:0.012077825070275192 :0.48731264666452345 +the:0.1579307475476536 Navy:0.12604690744003283 War:0.08973550387612327 of:0.08815563993656536 Treasury:0.07041658735517882 Fire:0.05603900798107976 State:0.04355087347104259 and:0.014099305972279081 Agricultural:0.011469165284597198 com-:0.011224839386532142 for:0.008894025628805617 National:0.007926511788069369 two:0.007687219824736814 Interior:0.0076130436304974215 other:0.007465520603981225 tho:0.007357762024924869 these:0.007215024053240105 their:0.007181071557624702 with:0.007120181556613988 :0.26187106108042124 +it:0.14498355906285576 he:0.1173597399531723 It:0.10840037786945451 there:0.07649461617247398 I:0.06639147059068153 He:0.05102095709026286 which:0.04688447820655656 There:0.04179674044722386 and:0.035224222032798166 she:0.0321465050482465 that:0.029270768748699768 who:0.018142789893065475 She:0.014401034788914755 this:0.010454653367127262 ho:0.008919187184288784 This:0.008810352126212447 lie:0.008605873300290345 man:0.008469515366433844 1:0.007360733956807774 :0.16386242479443353 +a:0.1595416784839556 to:0.14995693018045234 the:0.13777347885155064 this:0.11875293686271078 last:0.07612150545548592 and:0.0416491716735277 next:0.035987301664535426 can:0.02888870692441513 or:0.022699116167238284 his:0.02266957982300467 of:0.02056309081634683 that:0.020476349605220396 could:0.01778121594990572 will:0.015167432945474445 must:0.014866573245635603 their:0.013681691865156116 may:0.012210700837424366 on:0.012068440630696804 would:0.009169974137038349 :0.06897412388022488 +the:0.11500545585881412 of:0.0897605566703555 and:0.07914879987306167 a:0.05827037833039227 to:0.0386987683614473 was:0.029282661483795363 be:0.023890810389268442 is:0.02056818843792312 been:0.017204803150083207 or:0.017094944717067368 in:0.01610392931760865 are:0.015798243080240505 his:0.01344187865263006 at:0.01321973597799718 for:0.01304287912725108 their:0.012337012043366955 were:0.012236169772424844 :0.01133284696603621 The:0.01095822742659897 :0.3916037103636372 +for:0.2356626544231357 of:0.20165994090761089 during:0.10782699943018931 in:0.08319458038250396 to:0.049687870266572724 all:0.03097490238519296 In:0.029887821987954418 at:0.029431491826956896 During:0.022829223380620295 and:0.021970642149022546 that:0.01908303123010015 by:0.018997541856555795 For:0.017910646085316798 with:0.015437295718679304 after:0.01280848021275159 from:0.01277606516226007 until:0.010908536754047498 about:0.010907864815885888 on:0.010356462312796204 :0.05668794871184703 +the:0.1725714917190524 of:0.09833999786964949 and:0.06294068012686169 a:0.052133331039519816 to:0.04469189034771167 in:0.0204665855283515 his:0.01596896554168533 for:0.014245325751618415 Mr.:0.012633995764703556 with:0.012342036427502976 their:0.011109354022374365 by:0.01100766185669527 tho:0.010965936897454199 The:0.01088718352138088 :0.010272117773304354 at:0.010159609210616002 or:0.01002885258337842 be:0.009953616766318151 was:0.009564416507492754 :0.3987169507443288 +point:0.05560944209249408 number:0.04600009666714128 line:0.044300285549829135 amount:0.041299013579578055 day:0.04065320798844172 out:0.03384463826785243 bushels:0.027554477220570035 state:0.027257583606553087 costs:0.02237299073332369 system:0.01924365791693035 years:0.01872767300217307 matter:0.017746255850979196 place:0.01588952233547517 cost:0.015699544711460227 pounds:0.015195376039840149 piece:0.01499117858411244 time:0.014750523900270106 price:0.013778914398963225 set:0.013712504759368525 :0.500373112794644 +the:0.16889008346404644 and:0.07014648694869381 of:0.05227419029730454 Mr.:0.03800467847958812 The:0.03566701473082823 a:0.02775516448622503 his:0.01991538316304037 I:0.016881286124750244 that:0.01628978960361243 was:0.014329928907225257 he:0.014076357288743553 when:0.011174277060095841 Mrs.:0.010918106026900444 to:0.010737773363421273 in:0.010329160416546019 .:0.010281375136314191 as:0.010207376946321024 tho:0.010106836217815694 be:0.009690860572295942 :0.44132387076623153 +for:0.1481644496054697 of:0.11752739357411197 to:0.07747192220527173 and:0.05646600555230532 in:0.05211796396906716 with:0.05038470212340903 about:0.041323180159373 upon:0.0401180690388042 by:0.026443464173450164 from:0.024820990862931994 know:0.02232235086659271 on:0.02116333739493336 see:0.020167101498267188 or:0.019575604722129353 do:0.015335731402414343 In:0.014908342969138065 told:0.014557658907923154 over:0.014415587480756647 after:0.014393515865688003 :0.20732262762796289 +of:0.18452757121276023 for:0.08739028544774725 to:0.08152022418074319 and:0.0790884358665721 by:0.06657572253442481 in:0.05389078151886718 with:0.043690177469441954 that:0.03751016289873764 at:0.025919141058418752 on:0.025550674167795148 is:0.022059154705737057 as:0.01841440672427457 under:0.015760589887707874 from:0.014075235809108562 In:0.013313273377096499 was:0.012610675045548001 satisfy:0.01197884118518821 all:0.010921338818937339 upon:0.010161654890891462 :0.18404165320000218 +the:0.08729735206031883 of:0.057822895109519254 and:0.05282437059509106 to:0.05271528994970048 in:0.025005230356830034 was:0.02313758335288352 Mr.:0.018553494963266862 that:0.01820635784046301 is:0.016752125728073674 .:0.01643381756196746 be:0.014965395965890884 said:0.01489997641030778 be-:0.01462320872564181 Mrs.:0.014038202396430435 :0.01361503189801993 a:0.013101313847420675 for:0.012846021701111578 he:0.012299760260988467 his:0.012038141318686656 :0.5078244299573876 +is:0.07094322658366768 as:0.06283391196825974 and:0.054077138794583327 seemed:0.04075064561044208 was:0.037754216190444057 him:0.03641200215700767 seem:0.03344724746660793 seems:0.03266813639327945 reason:0.032107877387515533 not:0.030704537897274318 able:0.026862241218489454 me:0.02554172249390571 enough:0.025538989890155094 going:0.020666284915151836 ought:0.019876506755926806 it:0.01876324158034499 glad:0.01875224044266836 them:0.018644785615336137 but:0.01792127309706357 :0.37473377354187626 +and:0.10833720767410566 said:0.09968530367333475 of:0.09514550346743395 in:0.08017498244218833 on:0.06052611172753338 to:0.055150489932914895 at:0.0359015611868945 fact:0.029591403719761808 from:0.02702990873839577 for:0.026115171152298784 all:0.02343433083124894 In:0.020474318931010267 than:0.020137031718984223 given:0.014046881518313233 believe:0.012753887055110562 is:0.012504490972972966 or:0.011822028248864015 with:0.010401134022804761 so:0.010073142631041802 :0.24569511035478742 +the:0.16287760685838365 of:0.0883592780729449 to:0.0618987346693935 and:0.05423685233212741 in:0.030811253892523358 for:0.03057359609188714 be:0.025098115820027647 was:0.01826945122296575 is:0.01662970283289366 a:0.016448402520667066 or:0.01633619095301082 his:0.015510346299682681 their:0.015084175217362073 are:0.014656254371894712 been:0.013019491851438341 were:0.01267572744006931 that:0.012270302451397866 on:0.01131798809455223 :0.011150587255169986 :0.37177594175160794 +the:0.5845958204366754 The:0.059646279325937204 and:0.041764476336922866 assessed:0.03926015443260602 par:0.03812645348990866 tho:0.028430927639752312 in:0.021909629602283487 of:0.02019607396286974 a:0.019987806663120666 great:0.018709759220909967 total:0.015713324619915165 general:0.01193556029434643 full:0.0109273595750498 tbe:0.010255563946204185 on:0.0074201556434255736 real:0.007001708539588589 or:0.006988146109555765 relative:0.006210334481610738 best:0.006106666560718502 :0.04381379911859892 +;:0.021258909754392104 it,:0.017849239057097514 here:0.013380394615109129 him,:0.0131085679066358 them,:0.010439039545757263 him:0.008901070126744166 up:0.008897793963204228 time,:0.008541972451766883 in:0.007558355642369932 years,:0.006711388312844546 up,:0.006387420965244681 it:0.00581613746602584 and:0.005801081453851895 country,:0.0057087804180745 ,:0.005599624973279854 man,:0.005444530802986974 out,:0.005210256429661834 day,:0.0049432424826446495 them:0.004891578008701529 :0.8325506156236068 +to:0.1880241272656622 a:0.12753808224676708 the:0.11401395250006233 great:0.06113406396726453 of:0.047996435965609895 in:0.046037415249846406 large:0.040290065946987336 and:0.03844091400460137 full:0.027583572297299727 no:0.02299229105732304 good:0.021752540994709975 equal:0.021268686457112895 will:0.019320682219264196 or:0.016612106733671323 his:0.01656314698976895 any:0.01580897199829331 their:0.014839112986451113 police:0.014721858674361935 its:0.014201234183123681 :0.12986073826181868 +the:0.6125598925656085 and:0.0436999725499819 tho:0.04154178638887763 The:0.027356076366256612 said:0.024145483782816557 a:0.0174573146292843 an:0.016072300054419463 tbe:0.01576795178025631 this:0.011430912560513665 of:0.008763246530789595 great:0.005010484343626953 high:0.004184644176846668 by:0.0041579433065080055 that:0.003958908403569634 or:0.003748419147955606 any:0.0035451094857891934 :0.003206290635804089 per:0.0030784028530618152 in:0.003037913752394373 :0.14627694668563912 +the:0.08078893313634433 and:0.06527404893315186 of:0.059988648098588254 .:0.033881822084809374 to:0.022881323151745077 by:0.021125117225776608 Mrs.:0.019983414439307286 :0.017538240910136768 Mr.:0.014846912076336108 a:0.013810792932630189 in:0.011557374914936316 said:0.010898687052438613 The:0.010650181891457718 A:0.010186982281063482 Miss:0.01010405966693973 with:0.009807499991173264 at:0.00936785509719241 for:0.008958020734041082 J.:0.008140541019324786 :0.5592095443626067 +the:0.20512163568266278 of:0.06805052034167466 and:0.04913847171978507 a:0.04409778869449765 for:0.028294500868112873 to:0.02214205371979159 in:0.019125771330927823 at:0.018858813043095092 was:0.015132552599150865 his:0.014177137784693122 be:0.013706573004528329 are:0.0116525867697606 that:0.011191480363181305 their:0.010829516348739557 tho:0.010578368262444739 were:0.010569761963340663 by:0.01003784550823539 The:0.0097663042852 be-:0.00785414740865267 :0.4186741703015252 +able:0.04795907955406747 and:0.04353567184461763 is:0.041235567977807294 have:0.03876828334361679 him:0.03662776951487707 had:0.031575658538607075 right:0.02987975483179204 enough:0.029329435508820084 willing:0.028280012905788597 not:0.02682313507330459 them:0.025942367597424534 order:0.025862676912433363 was:0.025636089024478878 necessary:0.0255781117934275 began:0.024933373581299306 ready:0.023995472098691805 ought:0.021512881147108052 want:0.02106226583126587 as:0.020369275689315257 :0.43009311723125676 +it:0.12730989840490078 they:0.10878078057255668 we:0.09085068474197495 he:0.06513664710441101 you:0.06325437914987507 It:0.06180499333816779 that:0.0554971385089745 which:0.04727811683769357 I:0.04608727373919472 as:0.04250302326252453 who:0.028799306787998854 and:0.02752672421921904 You:0.019088781237794485 We:0.01803781703345862 what:0.01382463878910276 there:0.013547031909794015 They:0.012903438704032556 she:0.011882793364984469 one:0.010480128845022361 :0.13440640344831922 +of:0.11897595829480066 the:0.0769353065914845 to:0.05102025787222109 and:0.04700367589876426 a:0.046668629262306624 in:0.036765864517708274 on:0.028200576967135134 that:0.022521267271271166 by:0.0186544534785976 with:0.01809574220125657 :0.017976508514020637 for:0.017297009003325866 at:0.016850582838827514 from:0.01473429161121447 as:0.01322117414744531 In:0.012322055517073724 was:0.012279665758727952 or:0.011639216199759182 which:0.011198267959675968 :0.4066394960943835 +he:0.16530178347167473 I:0.14575994098422745 they:0.12047284043650756 we:0.056413377890001025 she:0.046295753455826254 that:0.037741521477202264 who:0.03716292976256022 and:0.033666617461215784 it:0.033477115827506614 you:0.026002296991381638 one:0.0241572851572492 which:0.02329806365361636 He:0.017191992000832605 1:0.016888768704157283 ho:0.012537469292582051 We:0.011775821799901833 never:0.010042471309571296 They:0.00957578754063884 It:0.009244726866035478 :0.16199343591731155 +the:0.1641320911864556 of:0.10963561514902358 to:0.05993589229439846 and:0.04208926764956589 in:0.019221005540290003 be:0.01918552126025394 for:0.017445399739083878 :0.014664063357480404 a:0.014069170585525209 was:0.013733291802570586 or:0.012468520814202116 his:0.011799879485955518 at:0.010696823819775148 by:0.010119018117454564 that:0.010046356341542622 is:0.009673674731749014 on:0.009564704884264759 their:0.009040151420537667 were:0.008959694247019914 :0.4325198575728511 +and:0.12322494157806231 that:0.032852160940883196 a:0.021833408563833562 but:0.021464903049512905 was:0.018548789295442424 ;:0.01421865916417235 as:0.01361291822065667 is:0.013039926555284968 the:0.011850247190066289 and,:0.011771951420672808 it:0.011368970587494023 be:0.00871487148509266 little:0.008345494129873354 that,:0.007506187102457079 which,:0.007270217188858288 more:0.006980653200422074 for:0.0067533868401608195 them,:0.006499793484498896 it,:0.006255722135584691 :0.6468867978669706 +the:0.2483013371171908 his:0.19603667056105772 a:0.1004845322733275 my:0.06601002386384627 her:0.06464943450468269 and:0.02856918307891982 your:0.025161894520962045 of:0.024806044668116877 their:0.020653451261169145 every:0.019646148025477143 to:0.013787704952617656 our:0.01272492055808227 tho:0.012455331108353231 this:0.01074851576226119 old:0.01069726291247458 bis:0.009844039021672966 own:0.008541671745793513 said:0.00769482292510429 The:0.00676871323581168 :0.11141829790307861 +:0.11500980526305161 it.:0.015529081127436594 .:0.012629374087654594 them.:0.010463056889788417 him.:0.009833097479720858 day.:0.008055203753919283 time.:0.007193001896609073 country.:0.006650127178586071 year.:0.006203047824741975 work.:0.005412840110813643 years.:0.005160920710651311 city.:0.00451953384121436 tion.:0.004300450068898066 up.:0.0041783785400774836 night.:0.004175731671921645 of:0.004151155594479757 place.:0.004123970960706252 way.:0.003977886059362022 ago.:0.00393666900162103 :0.7634966679387459 +and:0.08534016571504284 recorded:0.054273879860080726 that:0.028069560682094288 office:0.0208279647824315 feet:0.020184513066305643 interest:0.016726930535164133 or:0.01637183194572541 payable:0.01601524603693696 as:0.015666817760970543 men:0.015583548311606297 county:0.0150565220275223 Deeds:0.013640299169965198 land:0.013082833194969872 property:0.01250323403977894 sale:0.010056060960145647 contestant:0.009905822731189286 Court:0.009893578254226681 lot:0.009715649466837124 was:0.009694227105604539 :0.6063913143534021 +the:0.22052173904674707 of:0.11538277631709545 and:0.07600893695483417 a:0.07004925231740321 in:0.02032394001329095 to:0.017760541526728617 or:0.016321320631386877 The:0.016047378210588287 tho:0.014162478919836598 his:0.011851559038502319 their:0.010247726296522618 an:0.009976024422455008 all:0.009838815678283644 that:0.007981786074193685 other:0.007735324991191378 :0.007694646861427443 at:0.007393351766959102 by:0.007172496730326369 .:0.006850640354361914 :0.3456792638478653 +the:0.24211777281479166 this:0.14722227798391505 any:0.12934723013664287 a:0.11999368687106447 no:0.10481493738693166 every:0.04551187221161007 that:0.04031165795001832 of:0.02109399326401153 The:0.020957553263135337 such:0.02000442895051144 and:0.014048581029891382 his:0.01144563321415036 one:0.00845655285921315 its:0.007773138857513015 tho:0.007772645921868782 in:0.00760619244524952 much:0.007587868995627566 their:0.007209489302389414 This:0.005772797415495627 :0.02995168912596878 +of:0.3422280647076031 in:0.23224345287751103 to:0.06343590392299779 In:0.05181586387219794 by:0.05050847041994693 at:0.04803216670982083 on:0.03414497357925778 from:0.030804177314029034 with:0.01835964653729011 for:0.017952119648713547 that:0.01209913867500986 and:0.011636214479625097 before:0.007918655980314859 upon:0.007551496334063471 into:0.006963063070109366 as:0.006814763524001764 through:0.006188552246970145 ot:0.005547783200567892 At:0.0051816302591828406 :0.03957386264078661 +and:0.21880673329190875 that:0.11891785466545658 or:0.041160108459270366 but:0.0351830985190908 it:0.019699510627729084 only:0.018694555281163296 made:0.013835251197469343 which:0.012612887409551377 time:0.012075713388482717 than:0.011844502130319736 him:0.010719231809873669 if:0.010631660907466981 day:0.00992637366462828 That:0.009600194017485372 as:0.00946751300896337 was:0.009271928123801008 is:0.00816290314985318 of:0.00738058448137713 done:0.007380281592163107 :0.41362911427394583 +the:0.09684081064840576 and:0.06551335624548284 of:0.05146145169206151 from:0.049520598669154245 a:0.045427902131977435 to:0.0370403239153822 be:0.035669151526387034 was:0.030489628475080553 is:0.026635804908522978 in:0.023878514238638158 are:0.018513936943033917 not:0.017945708099223703 or:0.017556265685966497 been:0.014265228721347686 at:0.013857211504087178 he:0.013733215789660087 were:0.012396679125422956 I:0.012347944480187516 for:0.012197989992860347 :0.4037082772071174 +.:0.05330955824125287 the:0.05314175894802315 and:0.03951906020525599 of:0.036500871693550534 to:0.027542076256083264 Mr.:0.021815508722818858 Mrs.:0.021663185362536114 Miss:0.021613700742073503 a:0.01937377035218912 M.:0.016051079504205295 H.:0.016044043864157028 J.:0.014174511767877901 :0.013963502382777422 A.:0.01365692400671348 W.:0.013212729872643002 C.:0.011896476301988921 by:0.011742599779303258 at:0.01166086589699525 S.:0.011301641915897028 :0.570816134183658 +of:0.07524536452070613 and:0.07021919787464526 as:0.0686984902553672 for:0.06766460649792695 to:0.05323179103068398 put:0.043935462228425134 that:0.03644739243668685 in:0.036410479118938015 with:0.03255110544361396 made:0.031212024872817566 upon:0.028131296691808548 from:0.02662646204457865 found:0.02391213201426454 is:0.023677994087457604 given:0.0217101832123097 was:0.021564509631695233 by:0.020905215471098783 make:0.020336672117279304 find:0.018840045277275817 :0.27767957517242076 +it:0.16558174341344517 It:0.07846395477223078 there:0.068926656508768 they:0.05354081626270712 that:0.04867727640265432 which:0.04505196720686623 he:0.0439264118286433 and:0.04292049757801078 I:0.03259451855648658 we:0.022714282810773655 you:0.017312799630666443 There:0.014753102337007622 she:0.012061733113950288 who:0.011822775785340672 what:0.010328641715673107 law:0.009760151038589949 States:0.009676543902658263 man:0.009568256342280966 men:0.009031003643309513 :0.29228686714993724 +hundred:0.02334136986593815 up:0.005482494641173394 men:0.005366536521246011 Hundred:0.0047587970519216575 John:0.00441808156134956 William:0.004390720675819281 him:0.004016828614280843 ;:0.003997112205305733 due:0.003721199871732 in:0.0036582900032443304 time:0.003637206863828461 James:0.0035594902370151707 out:0.0034878448964120057 .:0.003467980723571515 1:0.0032804584819785204 day:0.0032444781513863933 ,:0.003058139385740603 :0.0030314555521939613 Robert:0.003005471634785646 :0.9060760430610768 +the:0.1512046462117109 a:0.11578893106251403 to:0.1021283845170086 and:0.055690291410177575 in:0.03522694124177637 of:0.033557775269215114 not:0.032615121452098654 abun-:0.032156939076683794 will:0.023276742304947327 his:0.022168478262513457 their:0.01933773752067588 this:0.018349601370152797 one:0.013099981924969537 well:0.010852590890890891 that:0.009664620767670119 he:0.009664130614669987 any:0.00908285834749406 tho:0.008977556266221707 great:0.008701550057754208 :0.287455121430855 +of:0.3065478640284015 in:0.17025201174971535 to:0.08855159317150879 and:0.042870907258812575 that:0.03851723572822849 In:0.03786972194036441 by:0.03570426845230988 for:0.032678888587307636 with:0.0312436861312774 from:0.026245219770926493 at:0.018553761221686095 on:0.013960380007614303 as:0.012714940172876284 under:0.010255167958696581 into:0.010209242040305176 through:0.0076677242519060254 upon:0.0071017183769917155 which:0.006941641487328951 all:0.006594963720051054 :0.09451906394369128 +sum:0.03352282876311118 number:0.028116684882597106 line:0.019995206059833036 city:0.01946514558931857 out:0.019275318828420953 day:0.01666865340772654 county:0.014872697538657208 amount:0.013254184849875051 Board:0.01252325449624941 town:0.012449555905674143 side:0.011663975251122375 part:0.011517157473718155 County:0.011460540331966697 state:0.011087331502382173 City:0.010878919191854432 purpose:0.01081028255427907 and:0.010297866493795984 way:0.009848747943663767 name:0.009522170936943183 :0.711769477998811 +and:0.07558940021936399 recorded:0.030196237618668006 was:0.028917161578042846 made:0.027969746247669736 that:0.027730098932509103 o'clock:0.025060522019555328 up:0.023026552239529506 is:0.020398277211376416 found:0.02003101797656537 placed:0.017482208134164214 out:0.016937164562539058 place:0.016819459500107596 interest:0.016629321966808677 him:0.016002796715253755 situated:0.01573420479581609 it:0.015128305982428461 them:0.014715943643665314 part:0.014646613000297721 interested:0.014450471929902294 :0.5615344957257364 +and:0.017342203175461497 that:0.01640460103952242 :0.011973881526457479 .:0.00989031646797916 it:0.006985855010093337 ,:0.006727785022716227 :0.0065598469661106076 which:0.006483153835882516 as:0.005821773458091505 in:0.005370465477389102 ;:0.005335244551920554 it,:0.005246209046100921 of:0.00521043127760739 land:0.0049402671292295385 money:0.0047139009459703785 tion:0.004218357258701252 county,:0.0039951381188492435 sale:0.003852861446357691 now:0.0038298679375672823 :0.8640978403079919 +be:0.321688592281886 was:0.11751852470806116 is:0.10093801491273124 are:0.08469413481759759 been:0.06652382034322198 were:0.04412983312878656 not:0.03436048721088587 and:0.03140603676005147 being:0.028590736745972643 he:0.022753001535998595 bo:0.015619621776447469 have:0.014582261981396236 disbursements:0.013068173173503913 Is:0.012486826906529977 it:0.011747593591329047 has:0.01134998017853992 had:0.008888186212322539 or:0.007893183524082 I:0.006961921450791357 :0.043799068759864355 +to:0.4520625308120789 and:0.06091740095346195 I:0.05978537868010048 they:0.04797786930232673 we:0.04162784347485513 you:0.03855227700824329 would:0.038389370018938065 will:0.03795152020696383 not:0.03362842580090864 should:0.028173214446656554 may:0.025307617830036648 can:0.019877111874087118 could:0.018266257419369485 must:0.011541702676722656 who:0.011258600066675986 might:0.010544099734688877 cannot:0.00876570040716594 We:0.008236168076289812 They:0.0078000265533771694 :0.03833688465705274 +is:0.19749096586202744 had:0.14017609814969223 have:0.12004818168513781 was:0.11782042161479386 has:0.11674758460182212 are:0.06620961593270629 Is:0.02797403739142536 were:0.0221653649829268 do:0.017222001067680414 and:0.016856289515788072 could:0.015238121777649364 it:0.0127719961116472 if:0.012515425839187891 am:0.011164934105589488 did:0.011031503176472418 does:0.010149321415385479 would:0.009002326293221844 will:0.008980616105677535 but:0.007981974312353413 :0.05745322005881495 +have:0.28220814909600755 had:0.277910905257547 has:0.17901953243981322 was:0.03724698457859443 and:0.021189908280589663 be:0.020259062770938027 is:0.018699405566387405 having:0.0168402046918983 been:0.016691522295285262 were:0.01326081038081926 not:0.010366898377729961 are:0.009432185332768852 never:0.008206513555327867 he:0.0074317701645129665 it:0.006821765708010371 bad:0.0062915607166775765 lias:0.005698578661628249 havo:0.00501804108642377 already:0.003704841476533318 :0.05270135956250691 +the:0.4480896726256921 The:0.0904698364350287 of:0.08476603332515713 this:0.05376994769949919 that:0.04041866869078757 a:0.025249095068159946 and:0.021228860106429766 tho:0.020723784054615023 This:0.012896802816704012 his:0.010275790157683446 our:0.009455079122852745 tbe:0.007714220985682745 which:0.007396109413222405 to:0.006201134979976256 :0.005890212859892207 their:0.005769420714349966 its:0.005588888692107721 new:0.005171640111996216 these:0.004592596143746249 :0.13333220599641663 +make:0.10636497715183554 made:0.0927526175752167 put:0.06400892489409606 get:0.056854102654527866 take:0.052503760603997515 keep:0.04913019205961574 taken:0.04276823938578962 give:0.0371596427345341 kept:0.033379752443025684 picked:0.03048927259313052 and:0.028152249995673558 got:0.028135367581002945 took:0.027368350070571524 it:0.02713830772616885 them:0.02006020210697922 build:0.01957423562419239 pick:0.017841836806129954 gave:0.01484423712011371 be:0.014819067910437094 :0.23565466296296142 +the:0.12407879029250769 in:0.11866021430274798 and:0.10744901342112767 of:0.07425014407350135 to:0.06222790838779823 or:0.04836813950794358 a:0.04811154646631187 In:0.032773661073051935 at:0.018913560451837223 on:0.01651642165777134 for:0.015900227454832185 an:0.013943275462310225 with:0.012993571960595302 from:0.01162171220481858 all:0.010541674804861846 two:0.008741928569872166 about:0.008730111295326463 than:0.008591993612002172 other:0.008530176441492647 :0.24805592855928957 +the:0.6968923323259137 The:0.1534737847625398 tho:0.03167631691873882 this:0.015457455644787916 tbe:0.011231584185242999 that:0.010873501051555018 This:0.00832542191928786 a:0.008242589006236901 our:0.007365537237269884 Tho:0.0055824397315251024 and:0.0053150410779963155 his:0.003473757954037484 Tbe:0.0034314557023904257 these:0.003207239365700057 no:0.002833940141864221 some:0.002630435158853075 her:0.002306197160260323 their:0.0022877921034942365 next:0.0021721153606538133 :0.022221063191651996 +of:0.43464196983890274 to:0.07502324860225676 on:0.06706364840695926 in:0.06627050308740574 by:0.056250089822291245 and:0.03848391125330755 from:0.03410959855766336 that:0.03342584706471095 at:0.032834193014367616 for:0.017330961207858587 with:0.015247918133383978 between:0.014351664448668986 In:0.012724288616904738 along:0.010541110030652256 before:0.008767685149883 over:0.00840758706830052 into:0.00806276119850682 upon:0.00804008676124075 ot:0.007370417740564045 :0.05005250999617108 +and:0.1916909232981965 he:0.08090330212178412 had:0.05535423286254069 be:0.05039305342926836 was:0.045145240233786146 I:0.03353853155977818 have:0.03269823987194309 that:0.029218398440292368 the:0.028588277797889614 a:0.0280737824601571 been:0.02716883306421061 has:0.026058877314123208 it:0.021717241944996964 who:0.021458450718411893 were:0.020628992239456637 It:0.02046951895103083 she:0.01803874576712896 He:0.01723465598007067 which:0.016133859678842823 :0.23448684226609123 +and:0.07359963406644195 be:0.052667135004264946 to:0.04483536256874564 of:0.043448293679263235 the:0.03579172892628988 in:0.028005289969665195 was:0.026700397492138477 is:0.024892551934152005 re-:0.024162182625676702 he:0.024086629517294657 are:0.02098604388819216 from:0.020307931541148256 a:0.018606881911690538 or:0.018077853608073062 for:0.017195224169077532 been:0.01615904189338184 I:0.015254891559368164 :0.015184018660626356 which:0.015016145996292442 :0.464022760988217 +of:0.1553748945008992 Mr.:0.07725727197996417 the:0.06781592176610239 and:0.06296333311253192 at:0.055029946025678435 by:0.050903113236812535 to:0.04315927906105811 dis-:0.029817292168219874 for:0.027973843261850814 .:0.02693820689797196 con-:0.02275265999562241 Mrs.:0.022048120168906372 St.:0.02184844328608348 A.:0.020477988963993245 from:0.01523536486494225 in:0.014459719314619647 with:0.013870769976081481 :0.01306375980347344 as:0.012484362604544727 :0.24552570901064355 +made:0.0999812034390529 and:0.06680208263369662 caused:0.02435411478715239 shown:0.02379785223577525 up:0.023253655008919294 ed:0.02312002180398423 out:0.022293807888227747 taken:0.021988971765594088 done:0.02128782706813444 given:0.020283609421760777 paid:0.017098570970207227 owned:0.01708227903067019 that:0.01698438626809451 or:0.016145946252097726 him:0.015808363688274 followed:0.015366441255538056 appointed:0.015126279845513936 held:0.013990473525433292 approved:0.013949758860964168 :0.5102843542509091 +the:0.30571612996821146 a:0.05813784523362224 so:0.056398465554154245 other:0.05264000059029767 to:0.051664328548699234 such:0.0396711893784396 re-:0.03803398016049749 tho:0.0346013745005635 and:0.03228601415892664 this:0.031800249628661605 of:0.02785774583215565 hereby:0.0215541383380045 same:0.018263366745045286 The:0.017405707865251446 every:0.017126826654236763 first:0.015556081877509157 one:0.01321623691326962 pro-:0.013206693966721651 at:0.012963922939147648 :0.14089970114658457 +I:0.23624126829501021 they:0.10689002425277312 you:0.0831665202648219 we:0.07938009144791802 and:0.0611743255439532 he:0.04232821122322625 who:0.036575515094150544 You:0.03303168591902512 We:0.027644908992090367 it:0.02728350466150907 that:0.02349911867457684 which:0.023084282930814427 1:0.02263569974458167 They:0.018337437433406878 "I:0.01789164955573904 It:0.01618318222458277 not:0.013717910227370164 as:0.013146279133696656 she:0.011880654962536335 :0.10490772941821741 +the:0.6587971730450427 a:0.0443318901630992 and:0.03474274949472116 tho:0.028237643410759374 in:0.025862175560495894 of:0.024984000211598155 The:0.02219872538748985 his:0.020076653530489808 great:0.013949249704797866 or:0.010720494687764372 tbe:0.009752761095794442 by:0.007827988790801363 their:0.006161133737670098 In:0.005941286947773123 no:0.005868309605650066 other:0.005315197159428556 our:0.004595116156790705 for:0.004541942943076281 her:0.0041452904931706955 :0.06095021787358633 +the:0.21613569726465554 of:0.08445192193183526 these:0.04537926185323471 The:0.04255544976877201 his:0.03930631463402022 and:0.030747150158008444 two:0.0268822880322776 some:0.026007751337392096 their:0.0256340782602865 that:0.024406364282273642 her:0.024150870679426235 These:0.022014414441989958 many:0.018922237846793703 those:0.01817913429868395 or:0.016002840133044736 at:0.015802366263033076 our:0.01440588974927309 hard:0.014059125562341653 this:0.013254204631949058 :0.28070263887070857 +of:0.3535275409597923 to:0.09398307098309647 in:0.0700177599002807 on:0.06314944753209921 at:0.061657390704905224 by:0.049609727115738904 for:0.040766160536375814 from:0.038796624526494655 and:0.03324160756742915 with:0.028405849269268424 that:0.026119956115965577 upon:0.015093106626448019 In:0.014236375442663176 before:0.01344613743198623 when:0.009882403056787333 which:0.008196017778490303 as:0.007341779435857865 into:0.006605962096011658 through:0.006201933677733648 :0.05872114924257536 +the:0.11772829171290487 and:0.0781674885065048 of:0.07167970430110675 to:0.05380593022319147 in:0.04338783981710163 his:0.02915440943526211 be:0.029040680129466177 a:0.026059035354864663 for:0.024832692890857867 was:0.023738743175792113 is:0.022059593269131022 their:0.019752320906839288 he:0.017656238599000715 as:0.016478255872202495 much:0.016066705385182248 that:0.015582232227554463 at:0.012400807465895353 so:0.012133545205562214 her:0.011193135755430506 :0.3580823497661493 +as:0.06931392982974462 according:0.052071562389565784 up:0.0511867300210483 and:0.040371568633051955 went:0.03351644485287816 back:0.032358406609281 regard:0.03073407747799069 feet:0.02852138506231652 down:0.026379903432040268 owing:0.02466642634685871 due:0.023695193974505355 go:0.022910973192184297 reference:0.020802802907016128 came:0.019883741951819873 sent:0.019874244915639484 attention:0.019565955494145405 come:0.01885185084678811 given:0.018792390567602263 it:0.017366961307524745 :0.4281354501879983 +and:0.06469864895065464 going:0.04476103790750439 him:0.04234369385497898 is:0.041580545973090785 time:0.03770157221313875 able:0.03583096539055033 as:0.03576761342114597 order:0.03295160215782661 enough:0.031970121163455996 ought:0.03195986601271087 right:0.02918282716129974 was:0.026234192484181545 necessary:0.025925747076166086 them:0.024819561664172186 go:0.02080900075342917 said:0.019580739097702766 not:0.019466306054120225 it:0.019292191561767827 went:0.018342907725471258 :0.3957808593766319 +the:0.4165077305650209 of:0.082213358291152 Western:0.0812870706953483 and:0.057183732815976475 a:0.052157336066154504 The:0.03346303034789262 tho:0.022686344718327135 large:0.018722849260031246 an:0.018229901904424545 in:0.017951082291225044 our:0.012982451649547765 to:0.012605543976602622 their:0.012035436503272346 other:0.010360284242038756 Central:0.00972003179691398 his:0.009598082005182092 its:0.009479003290950768 great:0.009037116134880228 Southern:0.00863970581133288 :0.10413990763372577 +I:0.20782629462962746 to:0.10150742158215448 we:0.08915211648555643 they:0.06601250755551179 would:0.06064053333550346 We:0.05442639044719931 who:0.04597308974506371 you:0.043232263880474076 will:0.036614408220058695 and:0.03560179069572908 1:0.027085833771361815 not:0.02483104102223797 They:0.02157322190533113 should:0.0180393029617532 must:0.018018153707088307 could:0.01523013580491152 may:0.014551596555921895 which:0.013715917735893816 "I:0.012227484338353906 :0.09274049562026794 +one:0.07866438238355077 part:0.05729974966283364 some:0.04351520577212045 out:0.042022035100167804 all:0.02745158226822653 portion:0.024034405840308935 any:0.019795425702599873 much:0.018784109062713775 that:0.01834799316398485 and:0.018171375761855582 many:0.016429892319021228 use:0.01628875608318383 tion:0.015661149718499606 account:0.015060168076824625 end:0.014690313477718408 side:0.013787738229685133 value:0.013221484407307478 think:0.013188507935128588 result:0.012701850392752486 :0.5198838746415164 +he:0.17512350792818462 I:0.08657978539457327 who:0.07860342315554748 they:0.056670305233187626 she:0.04578467203353106 and:0.041910664934168146 which:0.03696749716529486 He:0.03067797657814864 that:0.0302623450134665 it:0.0275840319564444 we:0.020889049271991457 be:0.017769071013795674 have:0.01702392837388154 1:0.014413700084261603 ho:0.014361007844011092 She:0.01225880044686048 lie:0.010965574012766483 It:0.01081919917913008 man:0.010448725249322466 :0.25988673513143257 +the:0.11919516938815296 of:0.07230453158552728 and:0.05781056740443249 a:0.043018564803886335 to:0.031305092790907506 in:0.020848713353460488 at:0.014270110001066288 .:0.012526810245749479 :0.012413283442322082 for:0.011719122709941797 by:0.010808400946589808 or:0.010404172990115616 The:0.01003576004804544 with:0.009811868184449042 tho:0.009295902015355835 was:0.008924239095331684 that:0.008672304223433876 is:0.0085591147338948 be:0.008335143826716943 :0.5187411282106204 +of:0.2794596897037556 that:0.09650842533113703 by:0.0955813935473395 to:0.07836966538574049 in:0.058310035893117895 and:0.054942244663808426 for:0.03730841837175853 with:0.030064700607847203 as:0.028514483843568146 under:0.021432867572376852 from:0.017410434296080232 when:0.01630418145519381 at:0.014511951121021474 In:0.014475133643898262 on:0.013348620396800718 but:0.011782119446948727 is:0.01175735757283101 which:0.011006144520835285 before:0.010406293897293415 :0.09750583872864738 +in:0.27134545907691665 of:0.26974440322947973 In:0.07669109116565276 for:0.058755966683077074 to:0.055999477386697465 from:0.031501307648804974 at:0.030315095645501944 on:0.02746993922468124 that:0.023134518439446652 with:0.02220162549361797 upon:0.015003797806123905 by:0.014569327818965009 and:0.013194905238565292 over:0.007695523402821129 into:0.007540953890686568 through:0.006404161439388884 about:0.006091800323087419 under:0.006011864832373261 make:0.005959091207136336 :0.04936969004697574 +the:0.49090168708211773 an:0.11887764786299976 The:0.06105885392586738 of:0.05913041146893902 tho:0.024228127628998647 in:0.02401466311866371 his:0.02272203664681941 a:0.021966751366674392 their:0.020108768583272783 her:0.015986442337502505 its:0.014982489039108106 and:0.01452723262618592 our:0.01194652906267272 two:0.011391236494394394 very:0.010612687533174806 my:0.010463726253520546 for:0.008065698366864535 tbe:0.008044945723219208 that:0.008035223030378678 :0.041934841848625726 +from:0.0739840859529395 and:0.07282512368526986 give:0.06465208393827934 of:0.0614077773286634 for:0.05880479241568308 with:0.051085950342439734 as:0.05015391086372062 in:0.04844068110543287 that:0.0386721936284024 make:0.03621412599472464 do:0.029647046127484446 gave:0.02646834869976784 enable:0.024009905099339156 bring:0.022841864428179936 take:0.02222473887744307 upon:0.02189596639728093 but:0.021737735120814682 send:0.020820537377167755 commend:0.01987801707930086 :0.23323511553766588 +and:0.1766404990393777 that:0.10483704292091854 time:0.05839507732267869 but:0.05148732671807878 day:0.04367266491067815 which:0.019478762949068928 do:0.01565744171731268 days:0.013512169658117548 the:0.013244026146970891 year:0.013058474624420034 But:0.012800610901950345 as:0.01151179060047415 her:0.01063800491675487 this:0.010045134087220497 it:0.009758032278169175 times:0.009385265360911069 them:0.009024858984069697 if:0.008563269976920198 long:0.00817689978054564 :0.3991126471053624 +the:0.3228324609732622 this:0.1723432349364634 last:0.09498353640217799 a:0.09073580687244692 next:0.03125624732205495 every:0.022477773146125788 The:0.022203946976923915 first:0.02031139870028894 that:0.019927728797506223 rainy:0.01853124850062837 one:0.01758221168594551 tho:0.016851466019777123 in:0.015975430750656102 his:0.013314595066978541 of:0.010019944987055667 day:0.00978902844238974 This:0.009146114284900605 One:0.007849742509957446 any:0.007201063312305114 :0.07566702031215543 +a:0.11177213075942455 the:0.09543698431215787 of:0.0841175590838569 and:0.07910675376413512 to:0.050157659089588434 in:0.04536238845017891 for:0.044537776431812094 that:0.02938308392462598 by:0.02195655887788467 with:0.021917425054095763 an:0.019428690902248177 as:0.018940568749436844 be:0.016467598562953215 which:0.01549558476677605 is:0.015336924548389561 or:0.014872841529621388 In:0.013452806255234628 was:0.01315458864196594 no:0.011181307366851216 :0.27692076892876266 +N.:0.2549988459382314 S.:0.19836448897804682 north:0.09469632839690231 8.:0.07170716201176754 south:0.05207211165419705 thence:0.02998173076106811 and:0.0176262104781113 of:0.014724095577957778 lot:0.012853528659051709 east:0.012094814623452318 degrees:0.01158104347480562 No.:0.011475809595477265 lots:0.011236737128971436 .:0.008261516934377199 W.:0.007679615413280147 west:0.007113009855700002 to:0.006772442356526832 the:0.00629766944701222 N:0.00619706991280138 :0.16326576880226154 +him.:0.04591916935483845 :0.03288463980190894 it.:0.027440485274688214 them.:0.016464570793599777 life.:0.013157241608612343 time.:0.011550294268290144 years.:0.01149653412689754 her.:0.011393966473371996 man.:0.00925386952070547 himself.:0.008917697636810726 again.:0.00872608525672578 country.:0.008101300409844355 home.:0.008055534382463928 and:0.0070880732681527945 day.:0.0070811712367161335 work.:0.00666107593706596 death.:0.0064488229644390944 city.:0.006396764709692836 there.:0.006053183010743513 :0.745909519964432 +the:0.3952099121265182 The:0.21000765595830456 and:0.05667669164659343 to:0.03596556288364057 of:0.025065571698823615 tho:0.02118094446346218 that:0.020606740406207077 a:0.01929355866625196 his:0.016657469685228347 an:0.015064398706603189 This:0.012707837303324445 as:0.011525843145993113 which:0.011129821406475695 said:0.01080014099173057 His:0.010734131063370884 or:0.010153590373797086 Tho:0.010012115883351807 this:0.00836602677499912 her:0.008280771643098135 :0.08956121517222604 +the:0.16252600296301706 of:0.09943636141121946 a:0.06972061183976204 to:0.05786006055271911 and:0.051901321414837935 be:0.037439623662398995 in:0.027926045399370266 is:0.026607440308126628 not:0.024117671416066706 was:0.023783954316327426 for:0.02116560723292378 or:0.019279992189698437 their:0.01878366798909115 his:0.0183649522149638 been:0.016598750070275194 are:0.014734104368434184 at:0.014726030078833321 no:0.01294859103405944 with:0.012367286558919744 :0.2687119249789553 +as:0.08158493787285717 and:0.05356832423916655 up:0.04315731502077095 him:0.03182392501387848 came:0.03079482617508184 them:0.030038493706710474 come:0.029847929923902044 it:0.02811457184322022 is:0.026676770401469777 entitled:0.023148966388227908 regard:0.022957161070185843 reference:0.0195411060239296 known:0.019516512830345095 attention:0.019402602512457085 was:0.018620338151640603 brought:0.018522747004701825 went:0.018443960258371257 addition:0.018175302829771384 owing:0.018116879420464124 :0.44694732931284775 +the:0.17186949188796918 of:0.09613600487758009 to:0.06810989472881987 and:0.0671159178156827 a:0.04842755304971689 in:0.029606656037987913 be:0.02592226045891956 is:0.02133049953187464 for:0.021086273175484706 their:0.018418729535074327 at:0.018178161049898205 his:0.017948069219767125 was:0.017687920992466927 this:0.013169019954401257 its:0.013019007776548993 tho:0.011547047340633677 not:0.011018992573181827 or:0.010498610803800934 by:0.010366588313851233 :0.30754330087633996 +to:0.1845304417266442 with:0.15492102923199702 for:0.09178137258309703 of:0.08444771430128638 upon:0.04915990276020557 on:0.03873025131525373 against:0.03450161127133153 in:0.02682443683104652 from:0.02629286831827668 by:0.024021812531900902 about:0.023981788482785194 before:0.023510593884717382 behind:0.01316567986136332 around:0.013091990066124494 over:0.010277667178638244 see:0.009997835926763567 kill:0.009973257430122437 at:0.009103597691756693 take:0.008848891774551488 :0.16183725683213762 +at:0.15759636317629921 of:0.1421714067936483 in:0.11676904876960983 to:0.06398364411645996 on:0.051157018190029144 for:0.05108566601725402 and:0.04555513108461132 that:0.031721944739604234 from:0.030113826054908015 In:0.029702699076370135 At:0.029399515452081842 with:0.028043139425789426 by:0.026185917658690036 is:0.020303271491863204 as:0.01797707611473321 was:0.017223050385135958 upon:0.016504659720422372 about:0.014081527374087893 be:0.01236778699448754 :0.09705730736391437 +the:0.1814123596159403 of:0.07931885472948122 a:0.0569024145519341 and:0.04406073693723686 to:0.03691076564920181 in:0.024600194030673914 or:0.023317632136696808 that:0.020089528170884295 The:0.01817492371543605 for:0.016200577557310525 his:0.015213222155803145 as:0.013432395185367702 tho:0.012638594721049343 on:0.012130823137831502 :0.011958015779850307 their:0.011343098658353869 with:0.010910122891819125 -:0.01088326214829167 by:0.010681913105342616 :0.3888205651214949 +and:0.30862257634120016 of:0.03709875928236843 that:0.0314439140707057 by:0.02633880283611791 :0.016724815856289307 to:0.013919696785583913 said:0.006129141124331806 sister,:0.0055961199789766785 from:0.005224080094004039 president;:0.0048230462308520025 daughter,:0.0038599419793151155 ;:0.0037299445404659413 the:0.003287090622726173 for:0.0031539613031970727 or:0.0030190875903476277 while:0.0029815942486787128 mother,:0.0029044627334123105 Smith,:0.0028106915583229006 Mrs.:0.0027265364671902105 :0.5146057363559139 +and:0.0949258404138262 the:0.0863619517851994 a:0.03747825008443821 A:0.03540307989957035 Mrs.:0.028976321177237373 of:0.02448112307206199 .:0.020543693060777933 :0.02037448407344968 Miss:0.018438666829234607 Mr.:0.014379979379368229 The:0.012780185757089838 A.:0.009261185410272928 to:0.008611152506372755 John:0.008090867722147574 by:0.007909532184781722 J.:0.007833891599498663 New:0.00764441042580919 C.:0.007499203816773012 Mrs:0.007391584514541316 :0.540614596287549 +of:0.2158933558620129 in:0.18444193293974692 and:0.0811426228812806 to:0.06984792236180257 on:0.06105253174488704 for:0.04031371015387945 with:0.03081053466370972 from:0.030698090435865726 In:0.02817380895056396 that:0.0268393809847444 as:0.02508244064573717 by:0.023397405370657112 up:0.01776788103689639 upon:0.014479370479425253 have:0.014468126345062924 at:0.013861671355221464 or:0.012284367491376949 into:0.011222703160488758 all:0.010971871139688762 :0.0862502719969519 +the:0.194379910710079 I:0.148425235738487 a:0.09682342419993159 and:0.05658689748169499 not:0.05244001763150966 we:0.04723266779189825 to:0.03899577107934687 you:0.02660550423322947 who:0.026255946748523946 We:0.025185047010781784 first:0.02478018355068419 they:0.023418463690824568 he:0.01651388984752191 only:0.015935324889076206 this:0.014762839402735428 The:0.014111205117551318 may:0.014018253710594376 or:0.013784767404934454 1:0.013415196723174426 :0.13532945303742056 +out:0.06613557959535392 number:0.03232092861485209 amount:0.03016864919612902 place:0.025357407207894044 purpose:0.024228954873218914 cost:0.021277416259327397 line:0.01825204400337935 tion:0.017109755484660594 board:0.017002241015753265 matter:0.01687828867227622 means:0.01673129751403331 point:0.01654040870941217 case:0.015199201520068104 one:0.014518894299344814 cause:0.014467773607266214 made:0.014330915624113202 time:0.014057872298492417 way:0.013734687617749274 use:0.013668986654651395 :0.5970186972320243 +part:0.04807218997833022 out:0.027596348888882898 one:0.02738562945909036 side:0.02632925811451209 day:0.022799409073004047 and:0.012633426243649154 portion:0.0126265192566199 that:0.011462151082624262 case:0.011241552313357184 parts:0.009415062094306034 tion:0.0089159525436769 Court:0.008495281202497224 some:0.008369794318382966 office:0.008201945304349834 people:0.008069689871539387 time:0.00789666774273675 name:0.007756844347718576 favor:0.007739450656959404 front:0.007531087393306147 :0.7164617401144567 +:0.07581068728089807 it.:0.03085074545988425 them.:0.02241970252642635 him.:0.012119240853457404 time.:0.011436904652762129 country.:0.009067969057794306 .:0.00838196289519517 day.:0.007955265282470368 life.:0.007255381340148989 of:0.006660543728508705 work.:0.0066361463270746 tion.:0.006601121024763047 people.:0.006504361058003663 year.:0.006144592000627652 years.:0.006087110301183559 world.:0.00585694839725599 ?:0.005784386317542275 again.:0.005751037337127529 way.:0.005637338699048446 :0.7520385554598276 +the:0.13552957000291843 of:0.09601149337285239 and:0.08348006166639503 to:0.0467553070054086 in:0.0362628454095111 that:0.02704355451620117 for:0.02357187373739288 by:0.021791823972195166 on:0.016364398155693433 a:0.016334788507385185 be:0.015561469940001288 or:0.015549340838541686 which:0.015139923712946153 was:0.014838502604808236 :0.01462624017393183 from:0.014207265543570132 is:0.013241225524846592 as:0.012600289757674188 are:0.012148267743301787 :0.36794175781442473 +it:0.12952468149102242 which:0.07928005760172463 he:0.07332785431407599 It:0.06744647650064474 and:0.05667508934303172 that:0.05556173775947229 be-:0.04518984325590055 who:0.031227679308674153 there:0.02475234763100488 He:0.019491926047256327 time:0.0166958129020785 she:0.016053220214067035 as:0.011239982100529535 man:0.01090656772405385 what:0.010382040332521011 be¬:0.009736274324558978 but:0.009712602769001192 be­:0.009657147903503438 or:0.009370255440618251 :0.3127684030362605 +there:0.26696462084768346 There:0.14165591169489827 they:0.09208362211797468 and:0.03818591874488511 who:0.037806297537274436 They:0.02810014924578721 we:0.02626414370509824 which:0.023841202627034565 that:0.015853381549495033 men:0.012740761650629236 it:0.012009078875259555 you:0.010564275737093535 I:0.00904079915099435 them:0.008043107687650061 We:0.00728310665428462 he:0.005973208025595122 people:0.005815335406550464 but:0.005469299342396139 thero:0.0043552396367725465 :0.24695053976264336 +the:0.6061707863472653 a:0.08934524167261293 of:0.036479461728329596 The:0.03532028577056542 tho:0.02462936157894821 until:0.02073896213355609 and:0.018433150857726337 this:0.013786544616269825 too:0.012781727698808412 tbe:0.010929000628193877 o'clock:0.009242219538052881 in:0.0092197227504366 our:0.00801086843719702 very:0.007856808064362045 on:0.007849374751494238 A:0.006259592709414387 his:0.00599361235960669 its:0.005534664542703801 an:0.004518890545346957 :0.06589972326910938 +it:0.14980370725759037 It:0.1417831987182438 This:0.0994395734160535 which:0.06123870759127718 that:0.053827314535707556 this:0.0485319048157116 and:0.03481463816943127 there:0.03163351300029438 he:0.025874957304685715 That:0.02452637228711398 what:0.02101535076138451 who:0.020745118014465793 He:0.01553744098124584 What:0.015466571118696077 There:0.012715435083286795 Here:0.00825702518154719 one:0.007881347531268929 Such:0.007797349307744799 as:0.006397540204786528 :0.21171293471946415 +the:0.18244191253374198 a:0.11111523517240078 of:0.10192257937126543 in:0.05559712621326547 for:0.04242603785390301 and:0.0354592090973734 to:0.026485470528380312 by:0.024573333129197475 his:0.017973400377712265 with:0.015497390594629701 that:0.015389341324159466 The:0.012728554679079738 In:0.011101187254197158 as:0.011005215932999047 on:0.010667567412361006 tho:0.01021048921840532 an:0.009696078912477146 :0.009504800280619834 their:0.008243109831332697 :0.28696196028249876 +was:0.21052859246376965 be:0.13087762325459865 is:0.1214747006944215 been:0.10861758071008953 were:0.05037454765486335 are:0.0409563530410794 being:0.029107332566295527 and:0.02762168236380637 had:0.025410941856914258 it:0.02127457563144558 have:0.021000937032796492 Is:0.020242532554168753 has:0.018005755355449515 he:0.01653746479330022 as:0.010352773831546591 so:0.009009621496537808 bo:0.007683419036833749 ever:0.007322808501647818 more:0.007290085441173044 :0.11531067171926218 +it:0.13812177237467987 he:0.12585765998368367 I:0.08352509856849707 they:0.05716411877950845 that:0.04952224241559005 who:0.04319275480235232 and:0.04292134439045018 It:0.04203536494114221 which:0.03828386347319013 we:0.028797718632867043 she:0.025992809270254488 you:0.019915579643707958 He:0.0183068401343107 as:0.015667102093907665 1:0.015485482434107979 one:0.01302243101984637 ho:0.01112699493158622 or:0.00894588959761626 man:0.00853240543147571 :0.21258252708122563 +of:0.18670444196905808 his:0.17711581976672114 a:0.12324818689788605 the:0.09320503121034578 my:0.08887223891652353 her:0.07408000389289861 for:0.023880486489021607 your:0.018404486358671156 their:0.01726044411631752 whose:0.014216280903460738 with:0.01416879309353988 its:0.013236673799977674 and:0.013101261026117871 our:0.011977023090745713 The:0.0118150097817885 His:0.010937285975898818 own:0.010101290526714907 in:0.010087064567290447 that:0.009359563138830056 :0.07722861447819195 +the:0.1417023225861149 a:0.08461666123424352 of:0.08180280401294363 and:0.0715635874525381 for:0.03843684207765525 in:0.03748477320635634 at:0.033069585324867416 that:0.029646768288051118 to:0.029126334335932785 or:0.028013528180048992 be:0.017243809611966202 their:0.015515190060233872 his:0.014848701010126128 by:0.014259959797519262 any:0.014213491224635989 more:0.013591201546977955 In:0.013388220351103632 which:0.013019832294305275 The:0.012868451742616594 :0.29458793566176306 +of:0.09129790931378902 the:0.07369883040827747 and:0.047842263382354346 in:0.04189055351593407 to:0.04045875475680249 a:0.03542341257202578 be:0.02020462051672066 for:0.01979292654746225 was:0.01760256398103379 at:0.017380150555488715 is:0.014984483003968216 with:0.014047653760730413 by:0.01374644383819499 :0.012670486581795598 In:0.01200961464556976 or:0.011563835749786333 from:0.011391516893522809 are:0.011273104484969465 that:0.010755276030689069 :0.4809655994608848 +and:0.07558940021936399 recorded:0.030196237618668006 was:0.028917161578042846 made:0.027969746247669736 that:0.027730098932509103 o'clock:0.025060522019555328 up:0.023026552239529506 is:0.020398277211376416 found:0.02003101797656537 placed:0.017482208134164214 out:0.016937164562539058 place:0.016819459500107596 interest:0.016629321966808677 him:0.016002796715253755 situated:0.01573420479581609 it:0.015128305982428461 them:0.014715943643665314 part:0.014646613000297721 interested:0.014450471929902294 :0.5615344957257364 +and:0.05868920603804488 not:0.032042224363963354 them:0.025429390000791002 up:0.024183087926997693 it:0.020799788186282375 there:0.02029581621724865 continued:0.01882195349131377 him:0.017623303151292357 her:0.016661604201315156 was:0.016636513684270954 wait:0.015700686776716648 on:0.013614508685641319 is:0.013307678269577499 out:0.01292199283090036 be:0.012270094093426017 as:0.01130051150619123 or:0.011250166174153899 of:0.010685287623306205 adjourned:0.010602937050817262 :0.6361632497277494 +of:0.09043409053013649 the:0.08458268447909405 and:0.06941169710674647 to:0.06842685376506503 a:0.03502196399400508 be:0.027631492661475 was:0.02262770347407094 or:0.020899547147549786 is:0.018061672947865565 are:0.017763045964156114 his:0.017114589037761113 for:0.016727962397261282 re-:0.0162769353827767 their:0.01514882567544624 been:0.013878331263912594 were:0.013374436412516415 that:0.01319950985941409 at:0.012567281873590285 :0.012294075404375895 :0.41355730062278084 +of:0.2502633485675604 in:0.1981511368011782 to:0.10355016747300792 In:0.048414818984173574 for:0.04699784432037394 from:0.04251240406303959 by:0.03934528060980522 on:0.038454847015077426 with:0.035509626821960245 and:0.033231177963252125 at:0.025697044197738734 that:0.02021481621906018 into:0.012697894244877333 upon:0.01060780007648068 through:0.010360764395845594 all:0.009203396110185402 as:0.007334221854125646 over:0.006793226085511444 is:0.0064175814641213025 :0.053242602732625044 +hundred:0.013633628820093018 ;:0.011172311961148602 him:0.009807052834026905 one:0.00914669734384353 feet:0.0090219372983598 up:0.00838318558829166 mile:0.007527126877816727 feet,:0.0071805242500254255 time:0.006879602834379732 man:0.006817451499927337 it:0.006300585667639516 it,:0.005903705234588485 out:0.005451849962934835 :0.00538718305729827 ,:0.005295204710281874 and:0.005240008239108335 here:0.004938150073064577 water:0.004837308913464981 them:0.004796443021708541 :0.8612800418119979 +a:0.2038488801484687 the:0.16161642848524319 to:0.1176721351889166 and:0.07277411175650907 I:0.041083892228649936 we:0.03313438700449468 who:0.02948996402248044 they:0.026701834601173025 The:0.02338350480828627 not:0.021362547072839726 you:0.02017450651458448 of:0.017252552544259645 his:0.015025269955246542 no:0.014916657319791549 their:0.013204388127217094 our:0.013139099952246476 We:0.01179615757247268 with:0.011170896477977523 by:0.011020884182744344 :0.14023190203639804 +and:0.06822641942633571 right:0.06762569540765875 as:0.048784547506614415 is:0.04460190445718854 able:0.04080862474576873 them:0.03560270788821286 necessary:0.03283868158297219 him:0.031482297775550235 time:0.02925309282015806 made:0.02564147278910983 enough:0.02549357464373831 order:0.023827789530245783 or:0.022773262631674594 power:0.022366410081414833 not:0.02028888738471858 ready:0.02020943689119218 desire:0.019073526138088798 unable:0.018236191775777875 began:0.0180715145351367 :0.383793961988443 +and:0.13219547095459117 of:0.11963939858301127 to:0.060638676925918684 are:0.04680253934744333 with:0.045533899117392335 at:0.044520324157671945 that:0.04401408054322079 was:0.04154427742638588 in:0.03762846549756993 is:0.0330913196665898 from:0.030921049472970086 were:0.02637076529894429 nearly:0.024529510858266212 on:0.02437731221533636 for:0.02145730644070908 by:0.017389432786129193 be:0.016713489852666387 them:0.015135620301775385 it:0.014677674217599765 :0.20181938633580807 +of:0.09129790931378902 the:0.07369883040827747 and:0.047842263382354346 in:0.04189055351593407 to:0.04045875475680249 a:0.03542341257202578 be:0.02020462051672066 for:0.01979292654746225 was:0.01760256398103379 at:0.017380150555488715 is:0.014984483003968216 with:0.014047653760730413 by:0.01374644383819499 :0.012670486581795598 In:0.01200961464556976 or:0.011563835749786333 from:0.011391516893522809 are:0.011273104484969465 that:0.010755276030689069 :0.4809655994608848 +Mrs.:0.09789014932004615 .:0.05259536599483901 Mr.:0.04862955170334167 and:0.03509698060578601 of:0.03362164492289176 Dr.:0.02392558942752096 J.:0.02364028843570642 by:0.02201890147754769 W.:0.021605778798691213 John:0.02019538124746431 to:0.019539446743602563 B.:0.016054841261498178 A.:0.01602210765794442 C.:0.01500985848096261 M.:0.014098567185547087 Rev.:0.013022186716944231 George:0.011677287970385869 :0.011377233856887029 Charles:0.0106606908220435 :0.4923181473703493 +;:0.02145494749130869 mortgage:0.017556809137559196 Mr.:0.011935484395170929 street:0.009898945846815436 mortgage,:0.00960219144294401 contained,:0.007966654675810815 ,:0.007893310235101602 feet:0.006715483446504837 one:0.006211518489176202 hundred:0.006087444892012141 street,:0.0058141537814087015 1913,:0.005772779023929386 and:0.0056279208669624565 east:0.005413781913084572 up:0.005285543321574482 .:0.005152791423392798 .,:0.005130221362009432 wife:0.004851959905080687 quarter:0.004776482291924574 :0.845851576058229 +and:0.06642613286336406 is:0.05827046979256201 as:0.037840524369510124 him:0.036224226798036614 was:0.03569326472181366 not:0.032347441444577456 necessary:0.031965269659623104 have:0.02996829584215389 them:0.027877653780517216 able:0.027380633400825527 ought:0.027225201157122875 enough:0.027036926877887984 had:0.02661908560904071 want:0.023835899923171935 entitled:0.02323276313680391 going:0.018620707490792452 me:0.018064604524945578 order:0.0180505957235469 it:0.016927058884919285 :0.4153932439987847 +the:0.17027190784407714 of:0.10585557835912704 and:0.07355927771906935 to:0.05486905984958157 a:0.04543746377447453 in:0.03128555052933153 be:0.028704485173100775 was:0.02350529800142253 is:0.02215549335554494 for:0.02077556258358175 his:0.01804639098945333 or:0.016335100594594944 their:0.015847999621030492 at:0.015526727957625254 been:0.011815834631173878 are:0.01139058447814694 this:0.010362020528084328 tho:0.01035635773045807 its:0.01000473355720393 :0.30289457272291764 +hundred:0.013633628820093018 ;:0.011172311961148602 him:0.009807052834026905 one:0.00914669734384353 feet:0.0090219372983598 up:0.00838318558829166 mile:0.007527126877816727 feet,:0.0071805242500254255 time:0.006879602834379732 man:0.006817451499927337 it:0.006300585667639516 it,:0.005903705234588485 out:0.005451849962934835 :0.00538718305729827 ,:0.005295204710281874 and:0.005240008239108335 here:0.004938150073064577 water:0.004837308913464981 them:0.004796443021708541 :0.8612800418119979 +to:0.3195729752032819 will:0.18626823526307568 may:0.08422330530496087 shall:0.060242782162461476 can:0.05916804545317362 should:0.05688857487193784 would:0.04641179200858261 must:0.041080598248278415 could:0.03797051722281157 not:0.02952204533323229 cannot:0.015406006408789521 might:0.010823790131726888 and:0.0065052911275713015 it:0.003468597518879 never:0.00251896586270885 that:0.002336982327040673 also:0.002278239746315253 probably:0.0021210593713628287 which:0.001992815033102389 :0.030199381400707034 +;:0.020304335308198574 up:0.013786920493285807 him,:0.007576553724208954 ,:0.007351958208815534 .:0.007206228913392152 it,:0.006870354925092399 street:0.006723804515916638 in:0.006278515865865391 hundred:0.0058713613439108515 :0.005836900487417196 1:0.005672265925818254 one:0.005620703410444233 him:0.005572056183357041 and:0.005430463394790091 wife:0.005330652084816667 house:0.0051438010447616995 down:0.004864782076414053 man,:0.004756555604725826 out:0.004513090360157333 :0.8642886961286114 +of:0.2601047325984306 the:0.12314015346853037 and:0.09192746952024962 a:0.08503266215992786 in:0.06464015711965138 with:0.03839413267159135 by:0.0370236282104211 to:0.029767810917743474 for:0.023645779423250475 or:0.018143101114606534 In:0.016354627888123197 any:0.015007006501224508 his:0.013716689497062307 that:0.01216474722751165 The:0.011271799671368363 this:0.01110795503940405 our:0.010697692887377982 on:0.010562312029721202 some:0.008529763342791145 :0.11776777871101285 +of:0.24260447739166444 the:0.23920525812083263 our:0.050681265951499126 their:0.04458081548803353 and:0.03965527196946115 The:0.02711952005185295 his:0.02292500471120343 all:0.015244869732259251 or:0.015148955484456033 its:0.014061882304248898 to:0.013727724513868389 public:0.012579027002219119 these:0.011983713343359771 other:0.011362165284296639 tho:0.011223829234450854 at:0.009738104935007532 in:0.008659845825943152 those:0.008050953078225035 a:0.007823108274417429 :0.19262420730270066 +the:0.1230049064262171 and:0.08503568159061524 of:0.08049514661646495 to:0.06249795272045366 be:0.037787692337465824 a:0.030772695158105653 was:0.030225430638798498 at:0.0232079861893999 in:0.022258293084416875 or:0.02076453064585544 his:0.017325280923675534 been:0.017093839100041554 is:0.01613533332570587 for:0.015009812608712095 are:0.014120955390505714 :0.013322890642117769 were:0.012952875898379415 their:0.01289660242217441 Mr.:0.012094272431719493 :0.35199782184917505 +and:0.1248627747554406 he:0.09148597933483894 it:0.08279586932767613 which:0.06965760330468677 who:0.06782407619192922 It:0.06344427808832166 has:0.04242696657110791 had:0.04037164182374259 He:0.04024765635216115 have:0.0359727519023234 there:0.032995905490018955 she:0.026937194677290183 that:0.02215720327131954 be:0.014533948794155612 one:0.014353860694650292 She:0.01350536875874008 they:0.010329206960349228 There:0.010086703944983962 having:0.009848227877971263 :0.18516278187829252 +the:0.1454500361787387 of:0.1080247151493501 to:0.04516715868785427 boy.:0.036249098323069925 and:0.03403580073245388 girl.:0.032660326140049385 a:0.03171979252021135 in:0.02714044436566853 for:0.02365213940166824 be:0.021942286684630472 their:0.021087116084698817 his:0.019774122064073623 was:0.014637031197642503 with:0.014008395154201525 are:0.012730720509515858 is:0.011363112041341867 as:0.011357870543086747 from:0.01063391638067422 were:0.010589399829418696 :0.3667765180116513 +the:0.6587971730450427 a:0.0443318901630992 and:0.03474274949472116 tho:0.028237643410759374 in:0.025862175560495894 of:0.024984000211598155 The:0.02219872538748985 his:0.020076653530489808 great:0.013949249704797866 or:0.010720494687764372 tbe:0.009752761095794442 by:0.007827988790801363 their:0.006161133737670098 In:0.005941286947773123 no:0.005868309605650066 other:0.005315197159428556 our:0.004595116156790705 for:0.004541942943076281 her:0.0041452904931706955 :0.06095021787358633 +the:0.37308971236609845 at:0.14423340352705305 of:0.1336394070898728 for:0.05245866380467427 in:0.04519800455948106 a:0.030052268099425513 our:0.020999969894649747 tho:0.01640273953191274 their:0.01562348797565199 and:0.015166382245531872 any:0.015045219697179384 all:0.014058048192953832 other:0.01284474491764949 his:0.012162471932250764 or:0.012121670585338864 The:0.011218402151248343 to:0.010399876295962642 by:0.010014322441270773 that:0.009989002369565866 :0.04428220232222858 +to:0.512047162898307 the:0.09212042038094129 will:0.0586378800888598 and:0.0577105813854233 shall:0.05647198161774294 may:0.03810353338062446 a:0.030219591172241003 would:0.027389501227681048 should:0.013448566499965618 of:0.01097685768608158 not:0.010160211401143211 must:0.008755461975482114 can:0.008403768777917648 The:0.008365802433272725 for:0.008159664841450651 in:0.008150231547600851 is:0.00810354739544643 an:0.007622439940304773 this:0.006918767113919673 :0.02723402823559393 +him:0.02346330166566789 ;:0.013993117901978207 man:0.012063973158208985 him,:0.009909121800163739 up:0.009718454247617242 and:0.009483607636828621 himself:0.008708172500287844 in:0.008383704791678692 man,:0.0074619430074121034 it:0.006727629907354967 he:0.006463016531639386 .:0.00621915130927209 time:0.0060721975060543465 one:0.005851681181497556 to:0.00584951612224459 out:0.0057405518294329876 it,:0.0055790022104404615 on:0.005073440824683246 hundred:0.004882599142558921 :0.8373558167249782 +the:0.19051881613063226 of:0.12751796422957576 and:0.054200299749850384 a:0.04669877214115388 to:0.04210202261944184 in:0.028007831672383122 for:0.026629998659285645 or:0.02326717743269934 The:0.018138723404431133 that:0.017408417000588552 no:0.015058818853377289 by:0.013987102410538304 tho:0.013063722727876509 as:0.011745505311935063 their:0.010979641056268067 such:0.010934133699175513 his:0.010513155506545227 with:0.010307151998377095 at:0.009647416914444039 :0.318273328481421 +the:0.11919516938815296 of:0.07230453158552728 and:0.05781056740443249 a:0.043018564803886335 to:0.031305092790907506 in:0.020848713353460488 at:0.014270110001066288 .:0.012526810245749479 :0.012413283442322082 for:0.011719122709941797 by:0.010808400946589808 or:0.010404172990115616 The:0.01003576004804544 with:0.009811868184449042 tho:0.009295902015355835 was:0.008924239095331684 that:0.008672304223433876 is:0.0085591147338948 be:0.008335143826716943 :0.5187411282106204 +was:0.11538502046063165 and:0.09980839472294295 is:0.09413573881107454 be:0.05875802225093798 are:0.0544243637839261 been:0.05349669158104139 not:0.051365393738741064 or:0.05035874894516048 were:0.03992678800796216 of:0.029261620824102084 that:0.019940381405502913 for:0.01937196661043933 do:0.017595849582459577 have:0.015590339557941823 to:0.01523654771356162 being:0.014169616300659535 Is:0.014012443086134016 but:0.013528879048187469 a:0.012795060845050256 :0.20983813272354307 +the:0.2595734068172519 of:0.09135947327144367 to:0.04765515763157753 in:0.045692978653480334 and:0.03754521682028506 a:0.027331664453886833 at:0.024028119144880074 by:0.0209173926348452 that:0.016040254757398 for:0.015856615638549156 tho:0.01479053079711643 The:0.014309425826361298 :0.01169151744187641 on:0.010188112769428954 In:0.010183969965321718 from:0.009709654251523179 or:0.008769570151371987 there:0.00845462356806795 as:0.00843963973567303 :0.31646267566966135 +the:0.08749831713710811 at:0.07705180473418505 No:0.07369926606482737 No.:0.07140926702546924 and:0.0674868002090981 a:0.02534010981760502 about:0.02424686381482436 on:0.023122180189452446 of:0.019268267277877383 until:0.019103687116631046 after:0.017989023755394056 feet:0.01449174198815455 as:0.012816825006681094 or:0.011481127622023862 for:0.011466286157519283 day:0.011291746159685092 :0.010648056630148044 before:0.010628004628293306 from:0.010606562027950225 :0.3993540626370724 +and:0.11203614284734381 made:0.029480560291083903 necessary:0.027231632327903786 provide:0.01978786821063526 him:0.018624150941585572 time:0.017844902254185023 but:0.01736032991925495 pay:0.01712283223509279 responsible:0.01655246417854943 work:0.01573375727996718 used:0.015721729148453864 that:0.015344008200088246 providing:0.015123591452644664 or:0.014918878594106077 it:0.014272018550925738 vote:0.014240496926603478 out:0.013886758983508773 demand:0.013625570335128902 ready:0.01288626098417059 :0.5772060463387679 +foreclosed:0.0826326115191591 accompanied:0.05930666942049243 made:0.05336585618201428 and:0.05113808815574321 followed:0.0477509052190524 surrounded:0.027001067213274173 up:0.0223956915218854 caused:0.01986528146981332 secured:0.01963201700061169 was:0.019527138795776604 ed:0.0163892391762384 it:0.014428341647705614 occupied:0.014047766264405974 him:0.014002524716027894 surmounted:0.013411064770142235 given:0.012603829803430331 done:0.01236267211154264 covered:0.012285928470556887 that:0.012257320636555267 :0.47459598590557217 +and:0.0945156499931445 that:0.0699244522143845 a:0.04213500740841569 one:0.028585729303407952 but:0.02084785136391851 long:0.020738288351189585 ;:0.020506370704956273 worth:0.016016945886858154 and,:0.012799695909973501 the:0.012128058499815037 was:0.011454930316461213 that,:0.010479915135121233 short:0.010428479390436798 years:0.009720223083285342 him:0.009701451413709395 little:0.009079623326887562 time:0.008889227580117325 year:0.008683197705537165 feet:0.0083231909001549 :0.5740417115122254 +of:0.4199510699663864 to:0.0892454452065872 in:0.07111945307417175 by:0.06437957592653966 that:0.04956587948813453 and:0.03755458688730429 from:0.030605282856605 with:0.024373832398945732 at:0.020296460761094842 on:0.020199853088394466 for:0.019075790470051104 In:0.016213635138578854 as:0.01609540233311672 which:0.009463883437505607 when:0.009017741642376492 all:0.008899707999275724 into:0.008369707708061227 upon:0.00756703882395499 over:0.0073492826366769555 :0.06965637015623849 +they:0.10820419906340109 we:0.09779798816906361 he:0.09429646894785979 I:0.0910791010525095 it:0.06516122872282562 that:0.041243941484633555 you:0.039770831259027445 which:0.038423978189690566 and:0.033530096244186 It:0.02891756279271421 We:0.023247624674727557 she:0.0218458510396569 who:0.019170608997844597 They:0.014625543993133153 States:0.013473535890585964 there:0.0128663070938615 people:0.010765894213616711 He:0.009875731730809356 men:0.009819234817866417 :0.22488427162198643 +I:0.2270757494202284 we:0.12198451299124506 they:0.12132007300932493 We:0.08226272443949183 who:0.052078621192277526 to:0.04674868558565357 and:0.039139007277529315 you:0.03728717086809822 They:0.028424842485011023 1:0.02184088342547565 would:0.016222940085224225 "I:0.015062482890720322 will:0.012269401432579468 could:0.01087993986707566 but:0.010327133678487822 can:0.010152250372158306 people:0.009656710944150326 he:0.009398595408284695 not:0.009244240665470645 :0.11762403396151297 +the:0.41862561229297884 in:0.09844799831459873 of:0.09085060696585226 to:0.06612719766070844 this:0.041136406511975004 at:0.032765689561708056 tho:0.02610707340831078 In:0.02534265028493511 The:0.01881748880391262 for:0.017174151588231462 a:0.014502601896765614 its:0.014445254537550797 and:0.01319770510022847 tbe:0.011952050658254014 that:0.011882992077789718 on:0.009850822066675556 an:0.00852836343825192 by:0.008339918275876304 such:0.00755520707730695 :0.06335020947808934 +the:0.17207248948142312 other:0.08849668657420456 and:0.08347935259552881 his:0.04364067629775229 more:0.040722967197737006 as:0.03491323308226391 two:0.03334635137430752 of:0.03328958826407878 a:0.03108327527703685 all:0.03032899083506549 their:0.025439718907864322 or:0.02377511563862898 be:0.023667783430455655 these:0.021901451136950634 is:0.021376492856588054 are:0.019602915651138475 any:0.01705945274447328 various:0.01705726498446596 those:0.016442396668871605 :0.22130379700116468 +the:0.22306370172747475 a:0.0965809781462511 of:0.06616513400256839 and:0.054619121426636844 to:0.04441683599253488 The:0.03452937268561105 with:0.022999259545805593 an:0.02074734895007533 in:0.015455349472135642 Mr.:0.01515464605987499 at:0.013204571618381658 for:0.013049545274742664 tho:0.012990744335777233 by:0.01220788084728514 :0.011053632410963287 that:0.010510987431637742 his:0.009573976231980056 or:0.008756709248831325 will:0.008725496783124257 :0.3051947078083081 +;:0.01458927046758731 it,:0.007973265891266864 him:0.007834970369143835 one:0.007240974664279108 in:0.006989508095588829 and:0.006417396987522371 ,:0.006059091806132192 it:0.006014614548599763 up:0.005812344146302806 out:0.005395853159197619 them,:0.005290532062834904 him,:0.004938420268273817 city:0.004793760033506698 :0.004646491011450349 man:0.004641061555670736 country:0.0046164671969483135 feet:0.0044416267197611185 time,:0.004376787347733258 time:0.004358244018157902 :0.8825693196500423 +the:0.34854901412616146 a:0.22562467414793128 The:0.06429225196807119 and:0.03080928683941686 tho:0.028772946363144487 consumptive:0.01975077854555595 other:0.014314923284881816 of:0.014314221366509505 tbe:0.013422584630894664 great:0.011551055605713586 as:0.011180623779728718 A:0.011020118445260591 this:0.010815446168806139 all:0.01014429725302879 that:0.00993562099003316 by:0.009619855380702166 said:0.008193371087209463 in:0.007965323911684098 one:0.007572012598580946 :0.1411515935066851 +the:0.16252600296301706 of:0.09943636141121946 a:0.06972061183976204 to:0.05786006055271911 and:0.051901321414837935 be:0.037439623662398995 in:0.027926045399370266 is:0.026607440308126628 not:0.024117671416066706 was:0.023783954316327426 for:0.02116560723292378 or:0.019279992189698437 their:0.01878366798909115 his:0.0183649522149638 been:0.016598750070275194 are:0.014734104368434184 at:0.014726030078833321 no:0.01294859103405944 with:0.012367286558919744 :0.2687119249789553 +and:0.16457211921299217 the:0.12425073262795336 of:0.045060694878328096 a:0.04484641989738129 an:0.04267967148391013 his:0.03847120811081013 their:0.03616096888565506 her:0.02484790296710468 is:0.022427654658166506 with:0.02151625092587628 was:0.019876534796751427 or:0.019099241741880983 most:0.017457025589888747 be:0.01681246698821827 more:0.01670774268621541 two:0.016257309446613914 its:0.015601985399138903 The:0.014900934964105285 your:0.012979385683583863 :0.28447374905542555 +be:0.15785750409677032 was:0.14481599832401196 is:0.10857162977265494 been:0.07267894749989968 and:0.06780980619112184 were:0.04737389946673734 have:0.041702082816293694 the:0.04069297151331311 are:0.03953287100611466 not:0.03520000408580081 had:0.022723798716294784 Is:0.020996566827632703 has:0.018256523420321243 a:0.01812971952531223 of:0.01779721023840407 being:0.017084655462111128 or:0.016135459960558127 now:0.012414736424869361 to:0.012030416831122702 :0.0871951978206553 +it:0.15590291243815246 there:0.0887784025092866 It:0.07904016205387611 which:0.06936908824431676 they:0.05362226352982171 that:0.04647101454662571 and:0.04420120519214072 he:0.027952982163116303 There:0.027623278151575524 mortgage:0.023443129896555264 you:0.018859539766003214 who:0.017891862574647276 this:0.014117846301193209 I:0.01363040583752058 sale:0.011818751696880098 This:0.010767348085132659 work:0.010306262168963347 as:0.009927627839447666 They:0.008978002990569422 :0.26629791401417535 +the:0.2599818835309201 and:0.15471188730474844 or:0.08546862422164224 of:0.07468342643410981 in:0.053523197384770446 any:0.05194765247499291 to:0.0347266677163701 all:0.03202655382556628 at:0.02965338181357738 In:0.026992041430693246 from:0.026802026079138296 by:0.020637175571264144 with:0.019501763733155902 some:0.016784150294529922 The:0.015214048544757984 for:0.013636828024682442 each:0.013553482139074556 many:0.013247317827954892 no:0.01068575231792815 :0.04522213933012273 +a:0.1627604967200412 the:0.1314810959649678 of:0.08146922501718874 and:0.04556196144874905 to:0.032677830888526424 The:0.020602186941553725 in:0.019230734773225483 that:0.019227205784518052 an:0.0180200929807486 with:0.015330448175843673 as:0.013719065363052858 :0.012260984212247424 for:0.011108374203805638 at:0.010550508806438569 from:0.010144671900796813 his:0.00982489895492455 which:0.009729773269914798 tho:0.00962556983822695 by:0.009223431748533687 :0.35645144300669596 +the:0.35844368076341127 a:0.09804616802665463 of:0.0884400761109877 and:0.07067508552399093 on:0.06497180200620359 said:0.06469836577737836 described:0.03513266715511996 The:0.03137003858356887 tho:0.021910235856582416 as:0.01450158326733567 in:0.013266614290293613 any:0.013064418844296648 with:0.011183385448744186 by:0.010695270414216251 this:0.01069517808455959 tbe:0.010476138328101818 that:0.010258185070631923 upon:0.009792873510672467 at:0.009145671226675055 :0.05223256171057507 +of:0.09544059833640606 the:0.08539425122557184 a:0.054425588082747396 and:0.04620079792699208 at:0.02808197700873501 to:0.024647086560286843 .:0.024203111851390357 :0.023365086394486898 in:0.020040311152589353 A:0.016659852352604608 for:0.014015652576892268 Mr.:0.01265502496713245 No.:0.011977309992498316 W.:0.010323552621902377 by:0.010265232127554069 The:0.010235232023801956 John:0.009711958188915308 E.:0.00918650062530992 as:0.00833505575404646 :0.4838358202301364 +and:0.07558940021936399 recorded:0.030196237618668006 was:0.028917161578042846 made:0.027969746247669736 that:0.027730098932509103 o'clock:0.025060522019555328 up:0.023026552239529506 is:0.020398277211376416 found:0.02003101797656537 placed:0.017482208134164214 out:0.016937164562539058 place:0.016819459500107596 interest:0.016629321966808677 him:0.016002796715253755 situated:0.01573420479581609 it:0.015128305982428461 them:0.014715943643665314 part:0.014646613000297721 interested:0.014450471929902294 :0.5615344957257364 +of:0.08650291602162778 and:0.0339211491053859 to:0.02343461734172366 Section:0.019039468332592277 for:0.018514907737670047 .:0.01793110694526132 No.:0.017840976991920908 New:0.016616737329904305 June:0.01536729510959898 April:0.015308303970650179 in:0.014568457175741002 the:0.012543419597461048 July:0.011495098643526852 May:0.011487202405018588 1:0.011120688943804061 4:0.011090667644242474 on:0.01047974979139437 9:0.010016889659165824 5:0.00990428271422969 :0.6318160645390808 +of:0.25972523091503086 to:0.08639435298873215 and:0.08242811220566887 in:0.06563482350625575 for:0.053525743979953896 that:0.04921353023566326 by:0.0406034194720727 with:0.03757030885201375 all:0.03130124631097667 on:0.027502875194838298 as:0.026107866453416343 from:0.02402300995816262 is:0.019384012517259297 In:0.016549881726644594 was:0.01628819625945009 at:0.015568246175829956 but:0.014951339304835012 when:0.012054431697272366 be:0.011843835908077176 :0.10832953633784635 +the:0.15068665975341683 all:0.11336154651214483 of:0.11225289385858327 a:0.1005147957518888 and:0.07642760013349056 in:0.03587796527051643 most:0.035490174978881295 to:0.0183263952840861 that:0.01750899113014968 no:0.01728972283054071 such:0.0164900441933106 with:0.015150248965518023 an:0.012535355387101552 The:0.012394481291423454 very:0.012307148800577974 this:0.011928668514855956 be:0.011231190387936026 other:0.011206494769769421 any:0.011086505061808959 :0.2069331171239995 +to:0.7175803000991381 will:0.047212373204968835 and:0.03388086807138889 shall:0.022662439082432408 can:0.021822822265361582 not:0.017717368253127575 could:0.016345761883637407 we:0.013158835260211166 should:0.012463111740487191 they:0.01112023923634646 To:0.010920489754894487 I:0.010442164599874858 cannot:0.009459043048404482 would:0.00825569537319372 you:0.007177999892143013 may:0.00706169925181111 who:0.006610589649820044 must:0.006265062392813006 or:0.004351231795792303 :0.014491905144153286 +the:0.16807735899698817 of:0.10541662057906837 and:0.05138367848570702 a:0.04141865232648221 to:0.0385989743764065 in:0.026264864977736738 was:0.019530675665220657 his:0.018900421021236905 be:0.017373825006196972 their:0.015767721170721456 for:0.01557246589796783 with:0.014071419046630446 is:0.012922913111931644 at:0.012690452250034052 are:0.010702713108721902 .:0.010158075558988393 Mr.:0.009672788574483367 tho:0.009612591781990074 were:0.009549306361446321 :0.391314481702041 +and:0.1008757805197254 covered:0.05094190437589738 filled:0.033758763582634764 but:0.03207856203271878 up:0.025926466073433196 together:0.025484556622134145 it:0.0186589303996166 him:0.01822755148581379 was:0.01715794037896365 them:0.01604681636291379 charged:0.015969432580590193 her:0.014764693908091044 that:0.013958239840136614 down:0.01375805760173919 met:0.013145990697153111 out:0.01289701381040978 in:0.011556735095844808 of:0.011347954983303396 away:0.011005455992239632 :0.5414391536566407 +the:0.39749834532651884 a:0.07520030034269234 and:0.05540858759821703 The:0.03273515726769502 tho:0.030061875542463562 of:0.020144331424922633 tbe:0.014929647509541684 in:0.014268129706664795 or:0.013333166761078447 .:0.013287381914101323 an:0.009000188755386574 to:0.00880680429595084 :0.007943763822197133 Mr.:0.00773879605474787 by:0.007328417831573476 as:0.005922572098978465 for:0.0047526933692942485 that:0.004736121968310169 on:0.004594595720579333 :0.2713091226890862 +the:0.13987575842963337 of:0.11852346070415384 and:0.0963072448019898 in:0.06789983058743904 a:0.03969157867574745 was:0.034859941870910544 is:0.027535153340949064 are:0.023837637965263416 be:0.022833671015685297 for:0.02238714373648263 by:0.021037585439734795 to:0.01742709704260978 In:0.01710682232197593 been:0.01680336484265405 from:0.016507157063768207 were:0.01546416326081484 or:0.014614228560089978 not:0.01340921522630585 as:0.010338408172987403 :0.26254053694080476 +hundred:0.03227832000314666 up:0.02139338494180304 time:0.017370142905977857 street:0.01609411725776005 dollars:0.013681646017937928 boys:0.01291448337738049 women:0.010211117706138969 wife:0.010043039451997466 land:0.009986936282842033 men:0.009589301356300681 in:0.008497857979576431 house:0.00787818648445854 feet:0.007684177659910768 one:0.007607579565509313 and:0.007459731606520504 1:0.007076566303820937 :0.006251378548520337 ;:0.006087746954100204 interest:0.005865593964176299 :0.7810286916321215 +that:0.1616946271226544 and:0.1139500058877757 as:0.1036735123980877 which:0.07615071504676658 if:0.05448984670517955 but:0.05107845687469744 when:0.050529399868955445 where:0.031657081642127355 what:0.02009399278973574 because:0.018221449066299543 If:0.014620793644758419 until:0.014546483355248939 though:0.013652036430056538 while:0.012082291273338359 than:0.011848198354823035 before:0.011102491426988777 for:0.010746396633730598 then:0.010637305307343827 time:0.010267396307550981 :0.2079575198638811 +was:0.11946427041532401 and:0.08990504387659051 be:0.07653382665316605 have:0.06270109873426095 is:0.05305933075917324 were:0.04692024432937185 had:0.04294991949165713 are:0.04280785737352646 been:0.04146454915730346 not:0.03847163427077256 he:0.03430312895449668 I:0.031269419916535375 has:0.024769404300397417 being:0.02328164684175678 or:0.021089026752696683 they:0.020660444169806093 who:0.0137698633376636 we:0.013088924754541226 the:0.01206287373193107 :0.19042749217902885 +that:0.22005980149935686 which:0.12785729484424777 if:0.12072134342890829 as:0.09297950900492521 when:0.079903715573977 and:0.05510696381100165 but:0.026409704517134973 where:0.02626166239257608 If:0.02579928998058127 what:0.02208902039213174 whom:0.018738335716400392 whether:0.015264272219612386 said:0.012593397846171422 because:0.011804822612783018 though:0.011697269633986294 When:0.00989160756341432 before:0.0096243876568652 time:0.008168244026163686 unless:0.007773014068344149 :0.09625634321141831 +and:0.09978785101352279 the:0.0825327705718802 of:0.06415943199413833 to:0.06174656913439675 which:0.024901163779280665 be-:0.022756673981615093 that:0.021314848236130737 a:0.019443320821974266 he:0.018868526538184383 in:0.018056282434876766 for:0.017969693443854937 Mr.:0.01744708157622041 :0.01513746333472413 or:0.014705575470506882 The:0.01467491627840688 they:0.013803627114205033 re-:0.013451571394265813 I:0.013023866551618248 on:0.012031375559890665 :0.43318739077030705 +to:0.22958013324745338 in:0.14133750677664908 a:0.1002262137906692 the:0.09354098324677498 and:0.040564035137054345 of:0.037131630697388285 In:0.0283247002525304 great:0.021166287577043752 full:0.020792465941901216 equal:0.019508643133945885 into:0.01753396140294874 by:0.016834679987451712 his:0.01598713467590604 large:0.015668080003823776 their:0.014355458431095012 its:0.013026145859040966 will:0.012441955692130817 police:0.012010139452252745 good:0.011313430807150315 :0.13765641388678937 +to:0.2466765314495687 will:0.1817429703952473 may:0.08772755091200704 shall:0.079393998875803 should:0.07098831737746214 would:0.06701168381342984 not:0.04386369960070774 can:0.0425636023000606 must:0.042446575426972895 could:0.027205570994621238 might:0.01820696992335261 cannot:0.016868627051883304 and:0.007611158628565899 it:0.005775611623458321 never:0.0038933812613918145 soon:0.003499005674301233 also:0.0031236784117247727 probably:0.002820683077993743 that:0.002737797781122554 :0.04484258542032523 +it:0.02194513289258178 him:0.016796933133942867 in:0.01399052465970688 ;:0.011346952493478685 them:0.010823083767493845 made:0.010760827532170392 it,:0.010139410836519409 them,:0.010114552011745449 and:0.009477529267498775 up:0.009019396181350397 him,:0.00857379549301221 time:0.0085700438180241 out:0.00817602512479225 be:0.007831648057534099 work:0.006500721465612963 man:0.0060198095950410105 this:0.005940806073513557 now:0.005823031855127932 :0.005681640825012245 :0.8114681349158411 +hundred:0.7345397835729508 dred:0.0361080747495617 dollars:0.03483880340788703 due:0.00863117283241394 five:0.0054228806860103585 one:0.003468866450663752 two:0.002866416060726499 Hundred:0.0028556357248188976 four:0.002689220112711737 three:0.0025273907858490386 six:0.002169507904947411 eight:0.0021523189867600147 forty:0.0020907754532112294 feet:0.0019329995847759225 years:0.0018597029113600286 dollar:0.0016804789309782429 twelve:0.0016674425108711812 time:0.0015775809668179363 day:0.0015504783096861967 :0.14837047005699813 +the:0.32590726408468856 of:0.13418302257735223 a:0.07690028165094585 in:0.05028158650118192 and:0.046321146130756864 The:0.040425548935079124 no:0.03888834894342429 their:0.03294262164577725 any:0.027784781825829583 an:0.023565242177744413 most:0.023180697308289238 our:0.019922092358093894 his:0.0190728134860496 tho:0.018108635289684785 its:0.016412986619508838 for:0.014324699725615711 some:0.013430405068653919 or:0.013318230115140469 great:0.013153673640742165 :0.0508759219154413 +the:0.18985652363746486 of:0.15628454296670768 and:0.06468322395778416 a:0.03717870394898445 to:0.03654588662752801 in:0.02480890938321355 The:0.02448643554664989 that:0.018856988243806255 by:0.018052789893627453 at:0.015151401214717928 with:0.014933454729281776 for:0.014694082802495416 which:0.012432060415582685 on:0.011037195465795848 as:0.011005117886291726 an:0.010678881875162326 was:0.01004038104775392 from:0.008863926472422614 tho:0.008710946951778622 :0.31069854693295085 +sum:0.015264990909639524 out:0.010469624548822214 amount:0.010268768642269844 number:0.010252144109883224 Board:0.009915489778488978 day:0.00934391924304638 line:0.009159513299813713 county:0.009058268073362647 purpose:0.007929238102727576 and:0.00784672009005394 city:0.007535183166758685 part:0.007294147380644756 case:0.006189609631311928 time:0.006139795834628276 that:0.006097569449880835 tion:0.005913104914262385 town:0.005848644229223571 use:0.0056842696333859015 state:0.0055904354376684826 :0.8431985635241271 +the:0.14935877752947224 of:0.13522602152933808 a:0.11562721968005411 in:0.03544848238208765 and:0.03353564526227444 for:0.032201569646648935 to:0.026810420016572543 that:0.019608472676044538 which:0.015040859827938808 The:0.014245955254020748 with:0.011101463116491328 from:0.010315359782959395 an:0.009711405014515973 by:0.009471296547486432 In:0.009170938298273808 on:0.008890649259569974 as:0.008718229249315349 their:0.00852277757043967 tho:0.008347171520328454 :0.3376472858361675 +the:0.11919516938815296 of:0.07230453158552728 and:0.05781056740443249 a:0.043018564803886335 to:0.031305092790907506 in:0.020848713353460488 at:0.014270110001066288 .:0.012526810245749479 :0.012413283442322082 for:0.011719122709941797 by:0.010808400946589808 or:0.010404172990115616 The:0.01003576004804544 with:0.009811868184449042 tho:0.009295902015355835 was:0.008924239095331684 that:0.008672304223433876 is:0.0085591147338948 be:0.008335143826716943 :0.5187411282106204 +-:0.06687885324472455 ti:0.05555928689328789 to:0.038067305477953346 tl:0.031294272100719986 of:0.024849055139661985 I:0.020534499846033543 t:0.020451608455281226 .:0.018996703992392342 a:0.01820094757689728 the:0.015631704349893506 w:0.014230236146204587 W:0.012588524671999179 and:0.012372445775699764 :0.012110467902499984 A:0.00998472114199515 i:0.009900338046190163 1:0.009601554124798437 r:0.009479607041799312 t!:0.008422444326446659 :0.5898454237455211 +of:0.27886845194223026 in:0.07986774993262252 for:0.07889232964810479 and:0.0733553283421296 that:0.06713983324263521 to:0.060229054999636225 on:0.041304681319708034 with:0.03711568297342268 by:0.02362559989431922 In:0.021784731649872924 as:0.018921949669807318 from:0.01839771453610646 which:0.014926715969333232 all:0.013678375049237383 upon:0.011944265624194952 but:0.01175236887165149 over:0.011536914800993435 have:0.011508258732885858 under:0.010319324279868368 :0.11383066852124 +in:0.12584751051357324 of:0.09759502479664728 the:0.07371839375246729 and:0.055651754291004454 for:0.04744536705298647 a:0.032925964492396737 to:0.03198260274187316 In:0.029652859996176964 was:0.017176340234656633 by:0.01637913782528117 are:0.015624529717594675 be:0.015359740034713075 from:0.015332737536474472 that:0.014587063309917358 is:0.012292937239714764 which:0.011956538642930331 were:0.011584038466634639 been:0.010892258706962473 with:0.010501774296364555 :0.3524934263516303 +be:0.23402259234689443 been:0.08438589728489304 was:0.0748262340169167 I:0.06983124468424727 ever:0.06323298439787631 have:0.059737958033243464 he:0.047602635037625185 had:0.0445499595450396 never:0.04080547490306716 were:0.0365974698487538 and:0.03383731772160555 is:0.022314975709734303 they:0.020458315030081 we:0.01960431134723322 not:0.0195134018400082 are:0.018739355959034792 has:0.018565250446761845 bo:0.013488310067771668 being:0.01348039081978388 :0.06340592095942857 +to:0.3190771545421261 will:0.21605638877977743 would:0.10147253698987338 shall:0.07612350178826038 may:0.06505175011977053 should:0.04620456837505543 not:0.03056517855220481 must:0.0304999993348572 can:0.01567394057796055 could:0.012730871138441026 might:0.009711913768001802 and:0.00914283552318429 cannot:0.00718060748824185 it:0.004615457111819607 also:0.0034036467109704034 only:0.0033169867952911607 that:0.0032439221132836934 To:0.003002673501863115 soon:0.002926110938652395 :0.03899995585036482 +to:0.31019601080253456 will:0.13793678134185958 would:0.07774183426288846 may:0.07078528459128908 should:0.05127128910568003 shall:0.04901700088221223 not:0.04594340671139167 must:0.03257846389794495 can:0.03230794200897745 could:0.02086203652199685 cannot:0.017984019065961077 and:0.017474170306863105 might:0.013535476571922157 it:0.006941357203389574 never:0.005186754057084183 that:0.004968373522249409 also:0.0034185027334872305 only:0.0032209125075107173 soon:0.003102154139878731 :0.09452822976487903 +the:0.3088777383932953 The:0.2065664016858042 this:0.11745607831527337 a:0.06817847874747372 that:0.056076455795204184 This:0.05169107664056357 his:0.019945594480216367 tho:0.01801017621313409 whole:0.01563429598481026 Tho:0.01171054620657505 His:0.011648309188599845 A:0.011423192656329866 first:0.011416093618256906 every:0.01105163133288032 said:0.010750767905556693 same:0.010223851598193395 second:0.009719405652113046 and:0.008138480709877048 whose:0.007203029584164079 :0.03327839529167869 +was:0.21914417045711407 be:0.14409496481378387 and:0.10322951051726628 were:0.09227824603783316 are:0.0465240901750036 is:0.045508942264361286 been:0.04433466969442227 a:0.025065506180428975 very:0.024383942784264572 the:0.023126769812073802 I:0.022044785681521715 he:0.02153770862081581 not:0.021369625839474236 had:0.021330685812870235 have:0.018482213287157788 an:0.017986441747196387 or:0.0156664641535369 being:0.014172062165316038 no:0.012270321080846552 :0.06644887887471249 +of:0.16318172105634396 the:0.16097916268151174 in:0.1118398384761334 to:0.0764537684968937 at:0.06037019408707975 from:0.04590381908674307 and:0.04585814471421012 In:0.032028281869227807 by:0.020129166152639717 The:0.012295538451825933 :0.011483370930616943 George:0.011326940155761843 for:0.011163758318807436 with:0.010307674651343789 on:0.009085930623395428 tho:0.008639337856148233 .:0.0064324635955377435 J:0.005682711790185032 Mrs.:0.005652428811960216 :0.19018574819363412 +is:0.11521381432734017 was:0.11190676366690155 are:0.11078589575171838 a:0.1029131527008795 the:0.08705890959268475 were:0.06921411343775558 be:0.057290384400742654 and:0.035877757231606924 his:0.03137729277157545 Is:0.02426434576523543 been:0.01886830514407085 very:0.018788955185180693 her:0.015433296541209056 their:0.01417509817725914 in:0.013207377962350064 of:0.012939750066845591 to:0.011906097752019713 de-:0.011350665426691033 so:0.010736738731925344 :0.12569128536600813 +girl.:0.12367559118681115 boy.:0.12144526447918925 of:0.07054681809959282 the:0.02868472004643328 lots:0.02086809744414821 .:0.02077599894292493 and:0.01907607092913108 :0.017349164809009138 St.:0.013962721806104288 on:0.013504969526510185 to:0.013326597906322952 for:0.012757530326658034 at:0.011881427727925397 sup-:0.009656743133908158 Mr.:0.007882555301479372 from:0.0077512565153506395 between:0.007533722224348656 by:0.007164391068387282 in:0.006768121020788117 :0.46438823750497704 +the:0.10402548539601925 of:0.09975888010123626 and:0.06334327093757136 to:0.05851726414294591 a:0.03966641360343147 in:0.037855635686262 at:0.03778671447825742 by:0.0197101803242814 for:0.017264286684117065 be:0.013709482784774327 .:0.013166828536000165 was:0.012331056842206995 :0.011485616108616052 his:0.01088321238089611 with:0.010869416909697864 from:0.009405032855745522 their:0.008062712742313368 said:0.006959395446472685 In:0.006691298168175304 :0.41750781587097946 +the:0.3199582605467741 The:0.09521631302367435 a:0.0692142272657363 distressing:0.04526868454487719 of:0.030786953242147887 other:0.02834608103604393 no:0.027531089321661865 our:0.026743814416164646 and:0.02600800531164248 tho:0.025237710517260422 his:0.02403508454970173 some:0.023059413413263983 their:0.019103665215990925 that:0.018955474765392055 this:0.018782913340610847 any:0.016856398877040542 or:0.016509463700347598 her:0.013531077787373131 such:0.011557834238174221 :0.14229753488612182 +go:0.05447425589597667 them:0.049947786305159614 put:0.04891957435337219 come:0.04678672109137259 went:0.041158722149022574 came:0.039148373726504815 brought:0.038541894299343446 back:0.036567028562601495 it:0.03545976072459045 out:0.030228358811462266 get:0.02919869056703388 enter:0.028793601386875957 thrown:0.026327650077951684 way:0.021223686773520493 taken:0.02087698221459921 got:0.020027665989557516 entered:0.019003752123689602 down:0.018051651688679095 fall:0.017976825985841122 :0.37628701727284536 +of:0.29246617660346336 in:0.1273992861390348 to:0.08231741684063325 for:0.07723372757114048 at:0.07584091462240443 and:0.05122683836917822 that:0.03540597158779535 by:0.033227312641339664 In:0.030378203315521938 from:0.023558985347531397 with:0.019290798198664808 on:0.01859380078458892 all:0.009857990990179862 At:0.009854711540990303 as:0.007280039806188786 after:0.006959246056265226 under:0.006837994278640577 within:0.006670538069871403 before:0.006442563778858231 :0.078157483457709 +to:0.1564956734057054 the:0.13638236042453167 took:0.08037782229358628 a:0.07642208026548931 take:0.06988516555152506 taken:0.045968372802994484 and:0.04333011715310539 that:0.03284829365183114 in:0.03158319819214661 this:0.028410307802527263 his:0.027429205703922117 same:0.024765788383156587 any:0.0232490269866894 which:0.020069640037024127 some:0.019472638013177876 of:0.015620277900355906 first:0.015454601004616842 resting:0.014860074227067985 their:0.014528368147583579 :0.12184698805296298 +the:0.22341114474218546 of:0.08652996391115703 and:0.05451225262037037 in:0.05400405599952235 his:0.049296300570994586 their:0.04248019778839804 this:0.04039322457351242 that:0.03413820056720579 or:0.02689509196614654 to:0.024340599203729007 an:0.020996458971420984 for:0.020477542612132 its:0.019803756305504874 our:0.016428936756750567 great:0.01416700769697058 general:0.014154985560401278 tho:0.013554759701907575 own:0.013377555151214686 other:0.012600097517986948 :0.21743786778248891 +of:0.09129790931378902 the:0.07369883040827747 and:0.047842263382354346 in:0.04189055351593407 to:0.04045875475680249 a:0.03542341257202578 be:0.02020462051672066 for:0.01979292654746225 was:0.01760256398103379 at:0.017380150555488715 is:0.014984483003968216 with:0.014047653760730413 by:0.01374644383819499 :0.012670486581795598 In:0.01200961464556976 or:0.011563835749786333 from:0.011391516893522809 are:0.011273104484969465 that:0.010755276030689069 :0.4809655994608848 +the:0.1065667232173849 of:0.08506428143971133 a:0.0739472777042879 Mr.:0.04539598564156373 and:0.045147429689713144 to:0.03923559531937934 in:0.03640492441748381 at:0.026680175767957573 .:0.026627853945036747 by:0.01626889009015311 The:0.0156592694167257 for:0.015623557150083175 :0.013972472086597208 his:0.013785709807221878 that:0.0132202859562268 with:0.01315829055305444 an:0.012123694499906561 or:0.011039058554017408 Mrs.:0.010315689060402177 :0.3787628356830931 +made:0.0999812034390529 and:0.06680208263369662 caused:0.02435411478715239 shown:0.02379785223577525 up:0.023253655008919294 ed:0.02312002180398423 out:0.022293807888227747 taken:0.021988971765594088 done:0.02128782706813444 given:0.020283609421760777 paid:0.017098570970207227 owned:0.01708227903067019 that:0.01698438626809451 or:0.016145946252097726 him:0.015808363688274 followed:0.015366441255538056 appointed:0.015126279845513936 held:0.013990473525433292 approved:0.013949758860964168 :0.5102843542509091 +and:0.08617414861788597 of:0.07853449772891961 in:0.05221826862812806 that:0.05145334319385529 put:0.049160945592660946 on:0.04398085445342232 as:0.043933147450044764 make:0.03703618630625759 take:0.03240837649574458 to:0.03143477244360087 for:0.030741078042057696 with:0.028797220804405783 but:0.023385915434954396 upon:0.021898104054612785 made:0.021422226326558078 threw:0.019853943913514024 get:0.0197798244573839 from:0.01924720361468942 took:0.018772751630154665 :0.2887671908111492 +of:0.1261091600209026 Mr.:0.08682256826787156 the:0.07609243659543459 and:0.05180870632110562 to:0.034292600469571895 .:0.027203031981145844 a:0.022517649439227246 was:0.019270951292890467 his:0.0179925787330447 Mrs.:0.017414346818124933 with:0.015270959520188204 at:0.014339966678622204 Dr.:0.01342798816985384 in:0.01303817299784553 by:0.012922385597641315 John:0.011434693338600763 for:0.010769708461863398 is:0.010654582353592719 be:0.010213823615909631 :0.4074036893265629 +and:0.08376606557255314 day:0.06469050220322092 which:0.05812371352969828 he:0.053733058660900855 who:0.04312435750705018 was:0.029696974698792185 I:0.02698790441863619 He:0.024834177231901716 be:0.02459489294453792 they:0.023867088823460295 had:0.021507916228109596 has:0.014257807132227532 have:0.013835175592032485 it:0.013212592527538305 1:0.012722973916961058 then:0.011760285405759125 meeting:0.011622362565577969 we:0.011477631523855116 It:0.011336603944515857 :0.4438479155726713 +of:0.14521459775131834 the:0.14443661467229582 in:0.08919214889660036 to:0.06701094920751212 and:0.047130055165668545 a:0.0444867956625373 In:0.02276164701943456 for:0.018054073784743413 from:0.01804833533665973 that:0.017352537935973043 by:0.017252925502583887 at:0.017067558342853683 as:0.01517340320315739 with:0.01327749281172343 on:0.013277155638597786 his:0.012978054888045975 their:0.012441857464847871 our:0.010938422012451512 which:0.010396455784746838 :0.2625089189182484 +well:0.15057467945897698 far:0.0792479018211486 so:0.05420609301596767 and:0.04110205282168299 soon:0.03939770137513164 such:0.033524064949910296 it:0.028336353357946518 much:0.02671787661057775 known:0.025583983771219745 long:0.02133786173069486 same:0.019720903502335088 just:0.019130423711853053 but:0.017024323569231344 is:0.013390334910411847 him:0.013375607725248853 and,:0.010824146775696174 them:0.01044201269169597 Just:0.00855746569709799 regarded:0.007826014684261222 :0.37868019781891143 +the:0.11919516938815296 of:0.07230453158552728 and:0.05781056740443249 a:0.043018564803886335 to:0.031305092790907506 in:0.020848713353460488 at:0.014270110001066288 .:0.012526810245749479 :0.012413283442322082 for:0.011719122709941797 by:0.010808400946589808 or:0.010404172990115616 The:0.01003576004804544 with:0.009811868184449042 tho:0.009295902015355835 was:0.008924239095331684 that:0.008672304223433876 is:0.0085591147338948 be:0.008335143826716943 :0.5187411282106204 +:0.05408755002078587 that:0.049531093299571755 and:0.026307747831082865 it.:0.023066050300906284 but:0.01604063510609521 as:0.013691133477483644 them.:0.013231826614228009 country.:0.010841946065548622 of:0.010487154798430135 which:0.009468692177853443 people.:0.008334614695462483 years.:0.008004416265567844 time.:0.007956347283674411 If:0.007858697640010603 him.:0.007413514011734311 year.:0.006977232836926869 for:0.006851092903969388 life.:0.006064905382420001 .:0.005982979647669748 :0.7068023696405785 +put:0.10609768372009885 taken:0.08857213505131889 made:0.05935424826314056 came:0.05019079928375056 set:0.047791001638866626 it:0.03909830925602578 come:0.03822617657145621 locked:0.03306232971500679 picked:0.03199580638598792 kept:0.03081543106094704 take:0.029023706576635153 keep:0.028527290155224972 brought:0.028080205961645708 them:0.025817033829512708 got:0.024890144424421144 get:0.02458572334944246 went:0.024217938588287788 took:0.023882708577090937 and:0.023607194748364004 :0.2411641328427759 +of:0.3222301720722049 in:0.13028394884370048 to:0.07483307163493944 In:0.04007050652378976 that:0.03625279610694092 for:0.035526800292580756 by:0.032351511242523286 and:0.03130478063956306 on:0.030381343395959676 with:0.027570482988076805 from:0.026624980699238167 at:0.026441504951881713 as:0.012554591280306577 upon:0.011703246759675802 all:0.009488555167831413 but:0.009184562114092546 do:0.008508308745653134 which:0.007343062797590127 is:0.00716475554226877 :0.11918101820118267 +the:0.1705558616165215 and:0.08825848766269073 of:0.07255354974064698 a:0.07196058463885002 to:0.03481975954065647 in:0.020181338096994222 was:0.018061967187115294 be:0.01692115938310526 is:0.015386910115110133 The:0.015133955317898767 for:0.014480706989546085 that:0.013012757112171829 or:0.01281266178679139 at:0.012706794368035033 his:0.012662116224639386 tho:0.01225516937253134 not:0.011504287563143036 I:0.01065857459399081 their:0.0103651036324106 :0.3647082550571511 +he:0.17512350792818462 I:0.08657978539457327 who:0.07860342315554748 they:0.056670305233187626 she:0.04578467203353106 and:0.041910664934168146 which:0.03696749716529486 He:0.03067797657814864 that:0.0302623450134665 it:0.0275840319564444 we:0.020889049271991457 be:0.017769071013795674 have:0.01702392837388154 1:0.014413700084261603 ho:0.014361007844011092 She:0.01225880044686048 lie:0.010965574012766483 It:0.01081919917913008 man:0.010448725249322466 :0.25988673513143257 +and:0.17407158602835276 the:0.1203241041078669 to:0.08045143068551919 a:0.05538486227410158 of:0.04825668435643996 that:0.02881826977256298 in:0.020799072856409934 by:0.016978178010128752 as:0.016313186309297102 :0.015644378616498998 for:0.013466487634078558 The:0.012965955247271222 was:0.012306936027637355 with:0.011135400564205235 at:0.011005185780579782 be:0.010458338573948544 he:0.010117160585525234 but:0.009998819457537196 had:0.009728445838740633 :0.3207755172732981 +and:0.0735109826234069 was:0.02935754323727553 went:0.02903844612740854 that:0.028461297759933283 go:0.026748052709009415 put:0.02583357949246014 Committee:0.025707495220863744 going:0.02371555680523771 up:0.020255274782208902 it:0.020238040108692342 committee:0.020068035753380294 made:0.018831477000657588 out:0.018301453107304397 down:0.01813202834795296 work:0.01790500762440133 him:0.017447567972955783 interest:0.016702667183518607 carried:0.015780443255381457 feet:0.015753636019279822 :0.5372114148686713 +the:0.12845602204506526 and:0.08752166280195371 of:0.07273728644222598 a:0.030561675470019617 to:0.026864674740624945 be:0.024726778067230552 or:0.02386070964623351 in:0.023133967218503065 :0.015292802368109294 was:0.013074834605955465 as:0.01281848122364916 at:0.011663005751781329 an:0.011593596270448037 his:0.010760425756496403 is:0.010656261046279937 for:0.010475206004945224 tho:0.009686968929485095 from:0.009644111953175426 are:0.009558895363199744 :0.4559126342946182 +one:0.1028303141280697 part:0.05963429477052991 out:0.04766456937681193 some:0.031418679026461914 members:0.030764490253327767 side:0.029940657362655835 portion:0.022063658796890564 office:0.020457735219956013 member:0.019726706386316174 end:0.019666887540649894 tion:0.018667441728710307 parts:0.016814747270460957 people:0.014112771422418794 all:0.014072739582212475 any:0.013183573287639892 One:0.013083578354183906 that:0.013024335602903442 account:0.012482348155001894 many:0.012077825070275192 :0.48731264666452345 +and:0.03868242960999506 as:0.031124813427855922 went:0.02352509775927722 him:0.02196555539050794 them:0.018760608639018784 up:0.017985449426794205 is:0.017894175620344187 go:0.017174904667157563 able:0.016756848979943888 going:0.014481672239490295 it:0.014128375989346808 was:0.013277058274565138 time:0.013249953793837373 not:0.012469887553778763 began:0.012465717758716884 way:0.012105610030480113 back:0.012090864562211581 right:0.011941707822828511 amounted:0.011564315359310868 :0.667354953094539 +gold:0.1723235662311962 hundred:0.03721121282100509 men:0.027581559728099357 wife:0.0178264631271568 relatives:0.012887333390947848 city:0.011767292722319347 land:0.009551104536877611 in:0.008291486191596935 up:0.008205378565952232 north:0.007688145658632455 1:0.007337094172414662 friends:0.00722033050881729 dollars:0.006887239885236685 man:0.006568420234476499 cities:0.006381287376825957 time:0.006020808296476425 ;:0.005974922806552313 to:0.005829860215964098 house:0.005781703861207443 :0.6276647896682447 +and:0.0748102466919118 made:0.04690761095238907 up:0.030458431603894543 or:0.026504189760307995 down:0.02418120502954805 ed:0.02206069000141529 that:0.02204295286233935 out:0.020981510444964616 west:0.0199796710566935 east:0.019483133112105616 followed:0.018830795466839214 taken:0.017893348655372936 covered:0.017724884325303773 north:0.017502619767407558 occupied:0.017476747471289165 south:0.017448138142155595 done:0.017270841653097883 side:0.015875283550603077 day:0.01578474195750424 :0.5357829574948567 +the:0.1570879454366584 of:0.07804606027406501 and:0.06787223916973353 a:0.036913117407562514 that:0.03650642298570135 The:0.02495259369096442 in:0.024366179622801448 no:0.021237121796534534 Mr.:0.02095974543727837 which:0.020555747976365113 to:0.019670312615068093 his:0.014514871313338153 for:0.013864556278571553 as:0.012619099712826765 he:0.011995143219360524 their:0.011486225473642654 said:0.011457904953995053 Mrs.:0.010878795762489643 tho:0.010097198257076249 :0.3939187186159666 +that:0.24802817604465266 and:0.09171545556943075 when:0.07956398170643564 which:0.06761961258169587 if:0.06656761944866448 as:0.05332720781479713 but:0.04099301665614489 where:0.03825118942231719 If:0.017485978833998255 Then:0.017053108514737528 what:0.01675638105607666 before:0.014774037905830832 because:0.01430496347033198 while:0.012796495326382168 When:0.012467878684895265 then:0.011316082544659462 until:0.011050192305855409 said:0.010904705450164809 whom:0.009374322542165919 :0.16464959412076313 +of:0.35153165027096284 in:0.131115642187598 to:0.08856936712471548 on:0.08712420971422402 at:0.03579854971791366 for:0.02850118202823181 by:0.027293114220526077 In:0.02409494546752839 from:0.02222166222754618 and:0.01852445970608872 as:0.014576393644155673 with:0.014027774203906204 that:0.01308138853708584 into:0.011069273730340584 upon:0.010802503521563377 along:0.010557606713835922 over:0.009542525201935638 across:0.008191712462053144 through:0.008109653352750245 :0.0842663859670382 +of:0.14092740204370865 to:0.08587728368369618 at:0.07657328943198934 and:0.0706791088499103 for:0.05877277507634274 in:0.0576323105787293 with:0.048091406724922806 was:0.04749133277325216 is:0.0402701644089318 as:0.03929909545992825 by:0.03787553209657152 from:0.025195455918524925 that:0.022862867403180488 on:0.021954967365020204 be:0.021285354877354938 have:0.01666710574844039 make:0.013824632080757963 In:0.013638135885548072 made:0.013307917686143287 :0.1467738619070467 +of:0.2148870408097133 to:0.09441216599398437 in:0.06217098600990553 with:0.05640894276621883 and:0.040739820625220455 on:0.037811981365512996 by:0.023496356572489666 for:0.020714979018026523 is:0.019355680180230754 from:0.017818360894835118 at:0.01553681322792007 In:0.01533266682667119 are:0.013607965935266647 was:0.013294601083487788 as:0.012899991682580965 that:0.00988966184166689 upon:0.009694662633722631 :0.009227203667490443 or:0.007333884206897632 :0.30436623465815815 +that:0.1596369859133438 as:0.09322729412986129 and:0.09270281232592192 if:0.050295198711110094 but:0.04515576261080507 for:0.041951422818066256 of:0.03774875454958992 make:0.03571097369516582 which:0.030418785536861646 let:0.02711546981346201 have:0.02484788354277877 is:0.02385143203228052 made:0.023610541311787355 had:0.018550040304905983 when:0.01851109864235586 Be:0.018360117418778774 do:0.017291643627748935 whether:0.017120950691716146 because:0.01676831614550691 :0.20612451617795288 +one:0.1028303141280697 part:0.05963429477052991 out:0.04766456937681193 some:0.031418679026461914 members:0.030764490253327767 side:0.029940657362655835 portion:0.022063658796890564 office:0.020457735219956013 member:0.019726706386316174 end:0.019666887540649894 tion:0.018667441728710307 parts:0.016814747270460957 people:0.014112771422418794 all:0.014072739582212475 any:0.013183573287639892 One:0.013083578354183906 that:0.013024335602903442 account:0.012482348155001894 many:0.012077825070275192 :0.48731264666452345 +it:0.12291356726271781 he:0.10766523848787593 It:0.08126222867785683 which:0.05815091424687329 I:0.054909855356083816 and:0.04607290301292405 who:0.036234513317437905 He:0.03284977251390459 that:0.0307500349566012 she:0.02807960748770171 there:0.017106531141060498 as:0.011444714915749334 She:0.009915288061780691 ho:0.009311744482256256 what:0.009144898696231517 1:0.008083327589627603 This:0.007923029238788926 lie:0.007752420127589498 man:0.007654383581502722 :0.3117750268454358 +of:0.21793806601215193 in:0.11659304719709151 to:0.09347555069953967 and:0.07899500941944222 with:0.07252655494273438 for:0.059032007097779914 by:0.039320956743447925 that:0.0388141924830871 from:0.026744837523969285 as:0.02197118981819855 In:0.019842699515112056 all:0.019295696347092307 on:0.01659000626327767 upon:0.015172934447401022 at:0.01483873773119013 have:0.014685073854089936 or:0.014212440637846697 make:0.013049931875001784 into:0.009849710318980352 :0.09605135707256554 +the:0.7458403248837053 tho:0.04176896284503911 The:0.033914226757095635 of:0.03132947060331809 and:0.0138184483090813 tbe:0.013388488833805555 a:0.011403050394496305 on:0.009155860650289765 surface:0.007055786264029354 no:0.006200274955074441 to:0.00605411015250905 his:0.005798182575933564 their:0.0056794944423532905 this:0.005222825392844798 any:0.005156852950883117 other:0.004767013161802237 said:0.004078815366005245 our:0.0035554148061851918 much:0.0035423779219389143 :0.041270018733609644 +the:0.16040950464015438 to:0.1469477655564597 a:0.08860308539154907 of:0.08127110628943103 in:0.07908224480043992 great:0.040672837137126786 good:0.02963910879349521 and:0.024209716797830124 full:0.02362312964518292 his:0.02156843381906024 its:0.02155495530543084 their:0.019242179264834913 for:0.017922563608994323 large:0.01661226172707666 into:0.015254971973110749 our:0.015025774932859419 with:0.014519045670759064 police:0.013320805267292016 In:0.013305999310607866 :0.1562145100683048 +the:0.19438780608079234 for:0.1583352240882548 of:0.13059240363623212 and:0.05991918494127083 no:0.047543921970239184 his:0.04212137981571491 in:0.03640943768654105 a:0.03126892851537278 their:0.030687556940409078 with:0.029881171530444048 or:0.021347093631649914 our:0.020267472994829706 to:0.01624098251172769 by:0.015930238726191405 from:0.015400826609034223 The:0.015151578442256718 her:0.014288424566279628 its:0.014178721198243469 good:0.012600159138810926 :0.09244748697570519 +within:0.20996100404935245 of:0.1523174799270089 in:0.14521164129034908 at:0.08912719125273426 to:0.0672339209871517 on:0.059533452762808296 for:0.05499046607094796 from:0.0531505063435841 In:0.03681253202441749 during:0.01566062033266248 and:0.012808121806496776 over:0.010720077352849482 by:0.008913598805775379 through:0.008812063136422089 about:0.008789173868889949 along:0.008335673344176741 On:0.008251715145032706 that:0.008124950530595873 with:0.008063502014097636 :0.03218230895464667 +he:0.09429621201570366 they:0.08716939194873642 I:0.07701566229639928 we:0.0712968138409845 Ameri-:0.06378057855216761 you:0.061483883512943434 it:0.054095487188351755 who:0.03498697832662869 one:0.03478999435107583 and:0.03103963656526156 Ameri¬:0.028805156349186574 that:0.02608388096072339 man:0.022773292070372188 she:0.02157473206055776 It:0.018905091454438163 which:0.017717918496779103 We:0.01660184445913683 Republi-:0.016097343841196165 Ameri­:0.011366571845736625 :0.20911952986362042 +the:0.7691821914915277 The:0.0787208843322018 tho:0.043173027000919524 a:0.013145640575926092 tbe:0.013035101927965908 this:0.00970418811915996 of:0.009674637454620305 said:0.008319174168860908 and:0.008172984835968969 an:0.005308984104251218 that:0.005187386581001357 our:0.003673741754797685 Tho:0.0032112113258363083 States:0.0031501098894923998 every:0.00246504145232667 tlie:0.0023081143247591033 in:0.0020978593116854965 to:0.001938129630955638 or:0.0019348211713162715 :0.014596770546426711 +the:0.14568178374763094 and:0.03468161484111128 of:0.025744482596156498 States:0.024012350658866824 said:0.017512249180314212 National:0.016027266012665443 .:0.014808783223243022 General:0.014259438581779795 The:0.012030015025540755 :0.011790444688435577 Miss:0.010403875024471938 to:0.01040348238313832 tho:0.009634489025284462 State:0.009378558885276837 Mrs.:0.007334053479279741 American:0.006685757157786081 Charles:0.006432595972974797 John:0.00641293358649982 a:0.0056941175928972056 :0.6100717083366465 +they:0.11438656240296116 who:0.0776338866467297 there:0.05800981141766363 we:0.05588457397290554 and:0.05064628489732366 which:0.049264267746506794 you:0.04332264002829638 They:0.04123688912992953 that:0.0343358548704091 We:0.027428738389673763 There:0.026698173426095047 men:0.021829816299307355 people:0.017149094100615884 them:0.008505293937688785 You:0.007569003029762441 these:0.007262535806714337 These:0.0067424864369160205 as:0.006709517625119002 I:0.006606930029102553 :0.3377776398062793 +with-:0.14459072438448564 and:0.053645178664609744 with¬:0.046300147656050436 sent:0.03238641415446141 it:0.029455646908539017 went:0.02892733787063134 go:0.022539592794057664 the:0.021669970212618933 came:0.02076358450029891 come:0.020177306698333466 brought:0.01982389153880136 them:0.019166232828546664 with­:0.01849652744263595 made:0.018045740571586106 was:0.017874614796875125 pointed:0.017869110042303946 taken:0.017846608620989614 get:0.01721876375797304 find:0.01653795640233929 :0.41566465015386234 +and:0.0753016902378679 that:0.04256508158864723 held:0.03227344308739045 at:0.024512623321449364 recorded:0.02260638596046907 was:0.022087591474488643 time:0.021658270753536452 it:0.020916962526965198 now:0.020242475513713887 is:0.019994234373708585 made:0.017141503338078387 day:0.01679706562670504 out:0.01617057225260322 them:0.015935330754999543 here:0.01593173658664068 as:0.015589270533338478 up:0.015352482809836743 years:0.014811278317386949 increase:0.014189212371900252 :0.5549227885702739 +of:0.18385385361411813 is:0.09809981942798207 and:0.08380692255261794 know:0.07297890698290935 for:0.07251875880177733 in:0.043171823147414586 to:0.04275669887668398 but:0.033458013569083817 with:0.032935783184793184 do:0.024877879483653505 or:0.024649099078155684 just:0.02455919989350966 are:0.023850645829143324 was:0.02238904961417934 that:0.019886253451011617 see:0.01941793762131437 matter:0.01850924955939268 have:0.018408556820745145 not:0.017607198744125776 :0.12126434974738852 +up:0.012911139714059282 out:0.011553820269205156 time:0.011010352776887033 work:0.010861605985325883 in:0.010731978667339437 it:0.010256701618407018 ;:0.00905985337265737 him:0.008687925711582537 power:0.008602829928997264 one:0.008449150543744106 right:0.008325614389993265 it,:0.008176641187639265 each:0.008040728420480103 man:0.007942997487837914 made:0.00767343096210592 law:0.007175277754213809 them,:0.007047391861582288 them:0.006620594768702055 :0.0065812028602854475 :0.8292907617189548 +and:0.09165058916959702 of:0.06727488666159903 the:0.044347791228369925 to:0.04160561783563488 in:0.03865599724207529 be:0.03860204734489509 I:0.030105674783911764 was:0.026162936109382234 is:0.023984234886758774 for:0.023158407613233786 that:0.02010360689622394 he:0.019942429582553503 con-:0.019846364703158228 a:0.01887586264616899 or:0.01727607344749333 as:0.016376793770385586 de-:0.015479800887669988 it:0.015071917666344997 1:0.014586707441784452 :0.41589226008275915 +and:0.1348697059735844 the:0.09294195578389501 is:0.0681166849290136 an:0.061607805351258364 was:0.056187543956910675 are:0.050632737107065506 be:0.048760473078411276 that:0.03803703854022345 been:0.03413065668828682 of:0.033844266914297275 not:0.03237267033972225 so:0.029814839194277163 were:0.02857622590068066 as:0.024770860586721143 to:0.022626437770911577 now:0.0193368276800794 or:0.01746715791536723 which:0.016953964439522188 very:0.01662419744140716 :0.17132795040836485 +;:0.01458927046758731 it,:0.007973265891266864 him:0.007834970369143835 one:0.007240974664279108 in:0.006989508095588829 and:0.006417396987522371 ,:0.006059091806132192 it:0.006014614548599763 up:0.005812344146302806 out:0.005395853159197619 them,:0.005290532062834904 him,:0.004938420268273817 city:0.004793760033506698 :0.004646491011450349 man:0.004641061555670736 country:0.0046164671969483135 feet:0.0044416267197611185 time,:0.004376787347733258 time:0.004358244018157902 :0.8825693196500423 +the:0.3477794589493156 a:0.28150925445585956 of:0.03559217930550797 and:0.029870561804677582 other:0.023791977670726806 very:0.021849938941533784 A:0.021600805851402734 his:0.021405930847840135 their:0.019285307263910846 our:0.014946962685993239 tho:0.01426122644891274 The:0.013566190293585186 one:0.012955169027173018 two:0.01191729350206591 her:0.01103668593147737 this:0.009821320451243457 its:0.009284945036138796 most:0.008982917896382921 for:0.0086384765477893 :0.08090339708846306 +of:0.13132252670339994 was:0.05847551815719498 and:0.056097594695832816 on:0.05460496969987756 in:0.0492236436273223 to:0.0449268519641037 is:0.034983416380871366 for:0.030119216035757106 are:0.028692307203879584 be:0.026917308959536288 were:0.02666710087864898 that:0.026516906365459253 been:0.020811720497061516 with:0.019486132689218342 had:0.019383894828532998 have:0.0166279385921686 from:0.01648869262628604 by:0.014702505740370131 over:0.011436884114958216 :0.31151487023952024 +a:0.27460042892509307 the:0.22714952973883046 of:0.08215440338140566 so:0.05660955966219929 this:0.040103753202640195 and:0.03435943500279387 with:0.03161261260058578 very:0.0291476561874335 that:0.021555629058982416 The:0.020703026067523736 no:0.018735275631144105 is:0.016782965311314905 as:0.01632887730976959 his:0.015612265226100581 our:0.014815902068089862 be:0.012695130284872064 tho:0.012303720817853574 A:0.012190103072175945 in:0.010818211572929576 :0.05072151487826185 +to:0.09214286969492186 and:0.0840343972740635 the:0.055829370220516754 of:0.04344455428535737 is:0.025096313947535188 was:0.024246016597463192 be:0.024013372339766147 for:0.023234087093751705 re-:0.019839832929996592 in:0.018443356566261844 at:0.01806982829321437 that:0.016825599959663116 he:0.016806468030576185 has:0.016050744896127147 or:0.01543184068090328 which:0.015378406080574917 will:0.015102896472475187 are:0.014852662073444425 dis-:0.01335944625117648 :0.44679793631221076 +is:0.22896329876892024 are:0.19046196878997215 and:0.06051694653703699 was:0.059042256446842654 Is:0.03967775967191966 not:0.02633696881950253 be:0.026272233917815916 were:0.023538013610385627 he:0.023371142787526784 it:0.021698248002958616 I:0.020003383127830135 they:0.01858136267304748 but:0.01770067286164424 have:0.014608709106945793 am:0.014199228857594757 we:0.01344317584008815 that:0.013009333715521714 has:0.012483830455232348 had:0.010508592261961157 :0.16458287374725306 +the:0.1874435877442859 and:0.07455351852690958 of:0.0612297294357596 in:0.0484246295878173 his:0.03873974751799316 at:0.03576211499909907 to:0.027894152546540832 their:0.026122710202364622 said:0.020258758081702175 statute:0.019759488327656966 for:0.018533324242841986 all:0.01816081450864365 from:0.018103253810469348 this:0.017855539380106214 that:0.01625247130087153 our:0.013867583273180521 on:0.01124610717897783 a:0.010851227719502927 its:0.010288159504752835 :0.3236530821105239 +of:0.12968297043885474 to:0.07986005646423763 with:0.06953176160052653 is:0.06241528093341596 for:0.05869601906582756 and:0.05518641048451812 in:0.054897568547699054 was:0.04839317445022367 be:0.041961866319163925 by:0.040255592991606616 such:0.03882693250397871 that:0.03836777666889295 on:0.03319814314535038 have:0.03206305970825987 as:0.029685518794619312 had:0.024237559002077084 made:0.024201019971384893 make:0.022680364682592977 not:0.01750301782480887 :0.09735590640196118 +the:0.12397170260116352 of:0.0943155434282568 and:0.04047242644896243 The:0.039121251000670806 Mr.:0.038849315117364246 that:0.03749617133485052 in:0.035552871266442694 Mrs.:0.022501402823346915 which:0.02123924194599288 a:0.01931574625006573 to:0.018732434543853364 his:0.014277305910035551 when:0.012369804522166431 :0.012284549055542177 as:0.00976422368815642 he:0.00970781880966711 for:0.00927189170209692 tho:0.009034083963245747 said:0.008744635319874062 :0.42197758026824567 +and:0.0766015406746511 as:0.06771434440925868 is:0.035530940834860573 time:0.03193776813332837 or:0.030466021641196443 subject:0.029514147116274047 him:0.0289037647352443 made:0.02808460526903455 them:0.025390615566664786 according:0.024367459637148616 go:0.02232676404461241 able:0.02032974603540221 necessary:0.0195553624283081 went:0.019395025182511814 not:0.019050691846902515 order:0.017769549465137254 entitled:0.017725600067736217 it:0.016325041314537075 enough:0.016208209013397527 :0.4518028025837934 +of:0.33158629863114386 to:0.07788716989543115 that:0.07761576660307837 and:0.06068803078773537 on:0.05935804635479538 by:0.04425862762394868 in:0.04093309427237936 for:0.039483170210525075 from:0.03209206095184284 with:0.027683132743266486 which:0.01930005786551764 at:0.015756852993890125 upon:0.014776838879030932 as:0.014131805320764952 all:0.01272628519676559 when:0.012267523731041074 over:0.011927076618880731 where:0.00853825213768065 into:0.008344883599147576 :0.08964502558313417 +of:0.1212330710883862 the:0.10103414215615908 to:0.06632985757671252 at:0.05050437411505442 and:0.03802590012959783 a:0.036734324540431636 in:0.02303904263611303 was:0.017749568485257033 for:0.01661195060580012 his:0.015428460493162804 be:0.014749055754156706 by:0.01388581980831495 is:0.013181168368014523 not:0.01122012524199712 :0.009488485480060179 or:0.008968887118295686 with:0.008931903696970164 .:0.008365703542406839 their:0.007386655164694478 :0.41613150399841464 +of:0.19520652174773218 for:0.1229666896165347 to:0.10995697408041474 with:0.07726606158897864 in:0.04831154227313461 upon:0.037323697854515045 on:0.03361114136003091 about:0.0301523637258195 and:0.0279645966864556 make:0.0278001886567541 do:0.025819481880036015 at:0.024706716927733945 by:0.023068651039499236 from:0.02252358384134332 is:0.016439788406080225 made:0.01493363611790501 find:0.013565014526766079 that:0.013012179477431857 take:0.01218317927750978 :0.12218799091532451 +of:0.1989834374444772 in:0.1004721202217017 with:0.08715589653067427 is:0.07095086990668041 to:0.06354610533941893 and:0.057088084850161494 for:0.054526861286616796 was:0.04233026875056805 by:0.03462257274058992 as:0.027003537850023338 be:0.023223717860263032 that:0.022167698865602367 In:0.021860980505172038 such:0.01694331992632047 make:0.01508253422195152 have:0.014533985090899983 made:0.014490635137787864 not:0.01387602645012994 at:0.01380077885695277 :0.10634056816400789 +of:0.10841682455348012 is:0.09340120294865938 to:0.09071523989640581 was:0.0791766575955369 with:0.07144476114505338 and:0.07031883559626396 in:0.06461495281812289 as:0.04129802481394497 by:0.03841890467907303 for:0.03585434576143803 on:0.03254314578951462 be:0.0283365133757 at:0.027678539173505216 have:0.026265472756841324 made:0.021852593642818847 from:0.02129823758158251 had:0.020529721476103838 that:0.015797598007325043 has:0.014131584245953678 :0.09690684414267645 +to:0.5781865842248594 will:0.07965845672944606 would:0.06069880819301124 and:0.04640244761993217 not:0.04490137883078036 can:0.017256975812263875 may:0.015420828763120661 should:0.015307767065872923 I:0.013772816341509071 could:0.01342370927266363 shall:0.01306826997831142 you:0.012951764137405827 must:0.011682677455829266 who:0.009671515398287872 we:0.008275112919587973 they:0.007234158907393834 cannot:0.0070563767749216725 he:0.006281565409678895 the:0.0060886882055025595 :0.03166009795962133 +the:0.4542333056844233 a:0.19526615896961244 white:0.04452843165207301 this:0.023567549036990175 tho:0.018728371635484468 and:0.013819584632824589 large:0.012609213770625365 The:0.01237214684814657 of:0.011295659713819612 great:0.011184628943830514 any:0.010080076132553418 that:0.009598761098502728 tbe:0.008260417764003396 first:0.007839287203093867 his:0.0070131128801223545 small:0.006722653217573252 new:0.00619200586956035 to:0.004906926674268444 public:0.004786798489260661 :0.13599490978323148 +the:0.10442087431339736 and:0.06939931179057497 of:0.059572203373200204 to:0.053395145484619676 a:0.0486301317746673 be:0.02495829126582574 is:0.02176810608490287 in:0.021387948844742682 was:0.021133420387223628 at:0.016201961358633225 it:0.014708045421280487 I:0.014013289124653647 or:0.013113755083441998 .:0.012431333144635159 for:0.012232343553272098 he:0.011657353848976844 :0.010801417707194536 not:0.01066798961461849 that:0.010348695280748398 :0.4481583825433907 +:0.07897181392638632 it.:0.018650070656779868 them.:0.01384270694814473 him.:0.012014164712638794 .:0.011438665512981661 time.:0.00902689282089531 country.:0.006755989821836558 day.:0.006439630701463467 work.:0.005350782276985059 year.:0.0050882140861425685 city.:0.0049710073927011385 her.:0.004898472572550016 man.:0.004686205925813631 years.:0.0046449030401759335 out.:0.004565358274752742 place.:0.004523160468176692 way.:0.004464901921325018 night.:0.004459059941938259 life.:0.004430331636092007 :0.7897776673622202 +and:0.09500881008555331 well:0.06206658951236029 regarded:0.036935028935535894 him:0.0314142794209011 known:0.031077052056542338 soon:0.02700320061470986 it:0.02623085774473942 is:0.02438162343435629 but:0.023839390993020203 used:0.021720637341540703 far:0.02045890976727103 just:0.020384524333195254 much:0.01971667289504282 such:0.019521581813054578 them:0.016090407278819097 was:0.015694381145043425 so:0.015081118446204548 act:0.014529263549522683 that:0.014487886332689187 :0.463357784299898 +the:0.11919516938815296 of:0.07230453158552728 and:0.05781056740443249 a:0.043018564803886335 to:0.031305092790907506 in:0.020848713353460488 at:0.014270110001066288 .:0.012526810245749479 :0.012413283442322082 for:0.011719122709941797 by:0.010808400946589808 or:0.010404172990115616 The:0.01003576004804544 with:0.009811868184449042 tho:0.009295902015355835 was:0.008924239095331684 that:0.008672304223433876 is:0.0085591147338948 be:0.008335143826716943 :0.5187411282106204 +those:0.29417733418102865 men:0.11474609756361094 and:0.050500916231694955 people:0.0452864421112161 Those:0.03929266274480016 man:0.02745860740972976 all:0.02688729667479669 persons:0.025688809821404 one:0.018878806280583842 women:0.01607063891236871 many:0.01358512605987385 others:0.012444161655297098 person:0.008651338541895986 thoso:0.008634342481042697 friends:0.006389425784956931 men,:0.0061337138708749996 woman:0.005892040419452581 or:0.005709254368670048 boys:0.0056022350960546925 :0.26697074979064733 +the:0.1454500361787387 of:0.1080247151493501 to:0.04516715868785427 boy.:0.036249098323069925 and:0.03403580073245388 girl.:0.032660326140049385 a:0.03171979252021135 in:0.02714044436566853 for:0.02365213940166824 be:0.021942286684630472 their:0.021087116084698817 his:0.019774122064073623 was:0.014637031197642503 with:0.014008395154201525 are:0.012730720509515858 is:0.011363112041341867 as:0.011357870543086747 from:0.01063391638067422 were:0.010589399829418696 :0.3667765180116513 +away:0.05746860598250849 and:0.04985561698690421 taken:0.03950823995165392 miles:0.0355312759828073 feet:0.031845900191456514 come:0.022313957473317422 them:0.021637161013586904 out:0.020621546731341717 came:0.02000539576637417 up:0.019820502682224503 him:0.019195504147748815 received:0.019046714556510396 far:0.018152378296247898 removed:0.017489734983720518 down:0.017467467859455896 it:0.015386533775439217 years:0.01424855034507225 annum:0.014237643714946796 free:0.014107989586278378 :0.5310592799724048 +of:0.31501431617033643 in:0.21692358609759538 to:0.08572624071251302 for:0.08256643968721071 In:0.03934824226475795 and:0.029430601946960074 with:0.02425970497675476 from:0.02179556894202687 at:0.017754714088789376 by:0.011588046320073724 the:0.010965620230476125 on:0.010813869360275907 ot:0.0071094904583666905 iu:0.006926522003964073 all:0.0062986640802198185 about:0.005943366399560033 upon:0.0056954716186341766 against:0.005546047402125841 or:0.005531476008094439 :0.08976201123126461 +in:0.11709409145377288 the:0.10229998863208783 a:0.08887489434630336 of:0.06775520661872868 and:0.05792493835519087 to:0.0481007454639633 for:0.0358427073491212 In:0.025630656708324248 an:0.02238682960883785 that:0.01442973169532493 as:0.012377180769418634 more:0.010882976048401214 any:0.009244634127405425 their:0.008867621656669707 or:0.008576843013784764 :0.007900109375517763 with:0.007699770781329454 this:0.0076072834867368 his:0.007337169678400969 :0.33816662083068016 +all:0.07129570287508043 it:0.05711305110374007 and:0.04676718653102504 went:0.029889117762655036 him:0.02681827525450393 them:0.025665934596122715 was:0.025551234350449828 is:0.023892023043650512 turned:0.023483820263485135 passed:0.021324743890097184 extending:0.020196725655346234 of:0.02008354899446698 ing:0.020017606693547255 looking:0.019236558640770948 for:0.019139254405143698 go:0.018192444204448537 came:0.017507978179025083 up:0.017287413833210988 or:0.01699146193016373 :0.47854591779306666 +of:0.07503645111500423 to:0.07264476347900395 the:0.06548918194916983 and:0.06380975888952169 be:0.038402835218196825 a:0.0305220516969499 was:0.027548216375016688 re-:0.019121434020034675 for:0.01908661686432892 is:0.019039318734989145 are:0.01861426379138935 in:0.017261425390502665 were:0.0150081851099556 or:0.014771028615010682 :0.014460810407977458 been:0.014137074009157908 at:0.012047409084395909 that:0.011530608596044637 his:0.01152679673753536 :0.4389417699158146 +the:0.2785119204658057 of:0.09063594558622545 and:0.03920841049393118 this:0.03363328696471186 said:0.027422639870646047 its:0.025659916282250374 for:0.025379966312652248 to:0.025188594831177635 our:0.02274356065446087 his:0.0220383143270132 other:0.021236476954604795 tho:0.020316222922292564 their:0.019846972201015948 an:0.017041993571103302 in:0.01618518456961665 county:0.01592941666860202 a:0.014213605043856561 The:0.013457209027785206 or:0.012833127730006985 :0.25751723552224143 +day:0.06529460243752098 number:0.05227928808012946 half:0.03797145380060951 part:0.03486378081246475 millions:0.023042603556620005 all:0.022958661624920045 out:0.022945002885236265 one:0.022729854113261106 quarter:0.021808095220552454 cost:0.01817055289610851 sum:0.01599933821873524 couple:0.015891507928228223 rate:0.014798034478313246 thousands:0.014613132308205089 some:0.013169210086059585 price:0.01247663534396925 and:0.012022630542871792 pounds:0.011760008201713247 amount:0.011590645341424038 :0.5546149621230572 +of:0.12496200550985935 and:0.12354281402457208 for:0.10871681759331649 that:0.053032793033452874 by:0.052692433417581876 in:0.052562309602026874 is:0.04931153327321286 was:0.04026327898121236 to:0.03848692660131835 or:0.03597863050662896 are:0.03529103469394781 with:0.031290062585213815 as:0.019270418252315968 have:0.018888619634312452 be:0.01866561251745203 were:0.017453354095284878 after:0.017286064869321133 which:0.015879862684896794 from:0.0156485556777233 :0.12977687244634975 +the:0.20924875657480307 of:0.1155101918735332 in:0.07092684506198911 and:0.07068559323310787 to:0.056041565572650845 a:0.04839429528464431 on:0.02944914859198302 at:0.02342159955527822 with:0.020163414160732543 or:0.01757317047310538 In:0.016872519808899616 by:0.016842503732392218 tho:0.015301634826081592 from:0.013774867654563608 for:0.012946936962777563 The:0.011869698674270622 :0.01049562588848366 his:0.009396841398634517 that:0.008460607837640285 :0.22162418283442875 +a:0.13353512985035385 the:0.10686913531226658 to:0.10585559200936179 and:0.08092370470956009 of:0.042504905573395806 is:0.02855827164252281 not:0.026795737373637885 was:0.024770292959055255 will:0.022911097057511577 be:0.02086974440184885 his:0.020250648037907125 bene-:0.019625397348312715 by:0.01901564240626746 very:0.018961786706064927 as:0.018883446012497432 or:0.018156334715175044 with:0.01652470682491385 The:0.016459756605308344 are:0.013695432180564165 :0.24383323827347447 +of:0.22837052251307133 the:0.16256336245467204 and:0.08232783809746314 to:0.06277400888841381 at:0.05251309800007026 in:0.04943978935610812 from:0.023774040802999614 The:0.02350660415284615 :0.021540579941831055 by:0.019964881040122458 on:0.017747868730044608 Bay:0.014660163717169425 &:0.013333816610173587 East:0.010591338778124125 .:0.010419143332785662 In:0.009606255056895559 for:0.008897224818941464 tho:0.007814799126861857 with:0.0071335614470361365 :0.1720211031343696 +the:0.5272624223828761 The:0.03183885356895152 tho:0.028540216742274208 Missouri:0.02820696182680446 Mississippi:0.025440335779549256 of:0.016700442255174395 Potomac:0.012264826303090538 this:0.011881373456781731 tbe:0.011536613390855804 a:0.010495709651748711 Red:0.009765352725079265 Ohio:0.009110472740984442 and:0.0072866614543452305 Republican:0.007003261554646205 his:0.006735992659692616 Snake:0.00522846994521606 that:0.005060625743384337 our:0.004729167791941547 Hudson:0.004606286817456657 :0.23530595320914688 +of:0.28767355066866834 to:0.08775711267569858 in:0.08678131196995101 and:0.05160598694501188 on:0.04646139928102899 by:0.04519522654900943 for:0.044547789071328545 with:0.03396756772609607 that:0.033699232901107726 from:0.03075346596941143 at:0.027039283056790858 In:0.021061449543044047 as:0.017514234937992545 all:0.012543839382496166 upon:0.011844431150487573 is:0.00998972746569266 was:0.008814315973987914 into:0.008557199930727406 through:0.007781895704231326 :0.1254109790972375 +of:0.09129790931378902 the:0.07369883040827747 and:0.047842263382354346 in:0.04189055351593407 to:0.04045875475680249 a:0.03542341257202578 be:0.02020462051672066 for:0.01979292654746225 was:0.01760256398103379 at:0.017380150555488715 is:0.014984483003968216 with:0.014047653760730413 by:0.01374644383819499 :0.012670486581795598 In:0.01200961464556976 or:0.011563835749786333 from:0.011391516893522809 are:0.011273104484969465 that:0.010755276030689069 :0.4809655994608848 +;:0.019063672149647996 it,:0.01704886192709601 them,:0.013112782148456029 in:0.011416184934199956 up:0.010828198443485048 it:0.010176642640773217 him,:0.009190044382264546 him:0.008011560612292853 them:0.007541183442519455 time,:0.007096749166226951 people,:0.00707493931560984 out:0.0058256639079913314 States,:0.00581570804263506 years,:0.00558439186939748 law:0.005501962821559197 ,:0.0053267890000498735 country,:0.0051920624255741895 and:0.0050516904884062045 time:0.004947652930652183 :0.8351932593511626 +to:0.12022893700269083 and:0.09020394424291768 the:0.08587503820055309 of:0.06450042443224316 in:0.0310058468700829 a:0.017742048521183405 :0.015548046036689871 not:0.01491307651316237 that:0.014112408707955496 for:0.013734482372212283 I:0.013065769926808477 will:0.012848502316304782 at:0.012837991177321897 In:0.012628718855091186 by:0.012491091048660757 be:0.011425930130217754 is:0.0113962101007567 he:0.011342727513475473 or:0.01112522537451577 :0.4219735806571561 +as:0.06931392982974462 according:0.052071562389565784 up:0.0511867300210483 and:0.040371568633051955 went:0.03351644485287816 back:0.032358406609281 regard:0.03073407747799069 feet:0.02852138506231652 down:0.026379903432040268 owing:0.02466642634685871 due:0.023695193974505355 go:0.022910973192184297 reference:0.020802802907016128 came:0.019883741951819873 sent:0.019874244915639484 attention:0.019565955494145405 come:0.01885185084678811 given:0.018792390567602263 it:0.017366961307524745 :0.4281354501879983 +to:0.22853837332549462 will:0.14651787603526975 may:0.103799032492861 can:0.10308453052596096 could:0.07142877751543802 should:0.07008521863182254 would:0.060218908966719296 must:0.04897573273286858 not:0.042271224987002254 shall:0.036985040543662945 cannot:0.024899587742062416 might:0.02071082161574004 never:0.005547175823783435 it:0.004316832614098622 and:0.0037083548891121134 probably:0.0024419679098461634 also:0.0023307266738761875 hardly:0.002262226836112453 only:0.0022588485487178636 :0.01861874158955069 +the:0.10827285224321626 and:0.08870080307854705 of:0.07654378796298532 as:0.07601899914727774 a:0.04239111470737973 to:0.036354557417072705 be:0.029098708624609438 such:0.02486086551323051 in:0.02412061979539941 so:0.021759133747919383 is:0.0213871206641338 was:0.01854428813517412 or:0.018041820802296556 his:0.017121500893264113 are:0.011896248230315926 Mr.:0.011670635217693667 for:0.009878887779613906 their:0.009758437766275404 at:0.0092398132181 :0.343339805055495 +as:0.06931392982974462 according:0.052071562389565784 up:0.0511867300210483 and:0.040371568633051955 went:0.03351644485287816 back:0.032358406609281 regard:0.03073407747799069 feet:0.02852138506231652 down:0.026379903432040268 owing:0.02466642634685871 due:0.023695193974505355 go:0.022910973192184297 reference:0.020802802907016128 came:0.019883741951819873 sent:0.019874244915639484 attention:0.019565955494145405 come:0.01885185084678811 given:0.018792390567602263 it:0.017366961307524745 :0.4281354501879983 +of:0.11791145677269535 the:0.09997170150552964 any:0.0722888246927475 and:0.0654452761516564 that:0.046599810928997336 in:0.034881294009470036 some:0.030183258741420017 every:0.029217685261982165 is:0.02812962635695053 only:0.02774248131833241 to:0.025673455840720085 for:0.021546892519473313 but:0.020949219348349785 no:0.020687676365744336 each:0.01834001941925785 a:0.016481622990408423 from:0.016157742353612295 by:0.01608495145708302 as:0.014662314791961058 :0.27604468917360847 +and:0.1408428103283946 to:0.10615175362376202 I:0.0726656987817824 who:0.06925265552994897 he:0.053242894133337174 which:0.04128994596354494 that:0.03314475182838196 the:0.03290379167781245 we:0.02476787701138908 a:0.02092566324879486 she:0.019644936986469567 they:0.018062594107476574 He:0.0176121770015651 1:0.017500775285214525 would:0.017371583002000035 will:0.016274845979928163 not:0.015688826215754157 it:0.015326809985185427 then:0.014015323759522212 :0.25231428554973573 +the:0.3859683128105762 and:0.06704781549959381 all:0.06275823227952777 such:0.03957438768882994 other:0.03493680056867428 a:0.03411976454070858 his:0.0335005544817699 of:0.033314525766218205 their:0.028111839817918143 tho:0.021053771905548985 this:0.019120429562648852 as:0.01795037052476504 its:0.01744208681368433 The:0.016039317653249365 any:0.014854363787099546 these:0.013168009057909833 that:0.01300900077707891 our:0.011122004787117591 various:0.010505959313781715 :0.12540245236329903 +of:0.09129790931378902 the:0.07369883040827747 and:0.047842263382354346 in:0.04189055351593407 to:0.04045875475680249 a:0.03542341257202578 be:0.02020462051672066 for:0.01979292654746225 was:0.01760256398103379 at:0.017380150555488715 is:0.014984483003968216 with:0.014047653760730413 by:0.01374644383819499 :0.012670486581795598 In:0.01200961464556976 or:0.011563835749786333 from:0.011391516893522809 are:0.011273104484969465 that:0.010755276030689069 :0.4809655994608848 +as:0.06931392982974462 according:0.052071562389565784 up:0.0511867300210483 and:0.040371568633051955 went:0.03351644485287816 back:0.032358406609281 regard:0.03073407747799069 feet:0.02852138506231652 down:0.026379903432040268 owing:0.02466642634685871 due:0.023695193974505355 go:0.022910973192184297 reference:0.020802802907016128 came:0.019883741951819873 sent:0.019874244915639484 attention:0.019565955494145405 come:0.01885185084678811 given:0.018792390567602263 it:0.017366961307524745 :0.4281354501879983 +brought:0.05205325954018388 go:0.05028583589858565 put:0.050219484717165426 come:0.042866552810564305 went:0.04173389725798329 get:0.03540554895078203 enter:0.031898356755879584 them:0.030217730257311032 came:0.029903240997262635 due:0.028988204577739984 and:0.028889614899297086 made:0.02074421409768459 taken:0.019082018654661564 it:0.017933942807936747 out:0.01788503455852035 look:0.015894865603048806 up:0.015756747890219226 way:0.015083843490113503 going:0.014583794216359873 :0.43957381201870044 +the:0.39162547708383594 an:0.14974728756267827 of:0.054261871521075665 The:0.0346180504637315 his:0.0335416638144469 years:0.02912415448403567 tho:0.02894959986305739 and:0.025279967518937036 their:0.020731680465628136 our:0.014866439093256906 a:0.014080824605510566 her:0.013829359490354165 my:0.013126278768510687 tbe:0.011849265457926814 its:0.010742445137024421 dear:0.0107249113373195 to:0.01050221329959081 at:0.00915778147137437 as:0.009125938141746608 :0.11311479041995863 +man:0.09992144728626386 and:0.059111775230139524 one:0.043755697253291224 those:0.030268358886037423 men:0.027561944322300153 woman:0.024878101644663753 all:0.015977039126904524 people:0.01141373999611368 person:0.01128055096740635 girl:0.010990758146254269 man,:0.010153241175566277 but:0.0066421298062370945 gentleman:0.005810285877788721 he:0.005042485389952717 wife,:0.005010827211119167 boy:0.004970377163264104 friend:0.004816407475637736 lady:0.00477991958101775 or:0.004461599525863101 :0.6121533139341786 +the:0.4371867640568733 The:0.08164786882506442 this:0.06242243283644153 that:0.05084140343517575 and:0.033584156088525816 of:0.026428771016392204 a:0.02561504635589004 tho:0.01750207652593208 said:0.010975748169893688 every:0.01023611473324528 County,:0.010066798805517621 county,:0.009999223716690046 This:0.00907861103968396 any:0.009045032259678575 White:0.008502716675724612 county.:0.0077389138833712096 tbe:0.007628333965813302 :0.006410537960183133 York:0.005984884914972834 :0.16810456473493063 +and:0.039360021369903284 a:0.0365844162683313 that:0.032800847442030684 the:0.024611829226502978 it:0.018757587094101944 in:0.012807950374172176 t:0.01190050435614599 of:0.011797594625780386 land:0.011531531500594204 or:0.011019247364318628 -:0.010669648618233878 said:0.01065714071367723 large:0.010480766366150274 place:0.010079697083494814 this:0.009673011745282399 point:0.00922926428700746 which:0.008909696906501825 acres:0.00839354549909247 feet:0.00837783493271643 :0.7013578642259617 +the:0.2753352083864321 to:0.10903626532460729 a:0.09393571431536459 of:0.07292957293255305 in:0.07018429262517673 and:0.0541530807784365 this:0.036469084288557156 that:0.023719084911213374 In:0.01644846523544292 will:0.016306592268934352 an:0.015085268036897777 great:0.014313589264410547 tho:0.01258895059181398 for:0.011705952842508657 any:0.010977844065297542 The:0.010909171560052701 by:0.008872879502738443 last:0.007374228425169591 would:0.007367115200532662 :0.13128763944386007 +of:0.15405471737238052 the:0.12516116883489034 and:0.11006504790487169 by:0.07212871834037343 at:0.06402207684467476 to:0.03301153529571792 from:0.02863497595325277 as:0.017944350590488312 :0.01751500012013995 with:0.014069192903805962 The:0.012570108114906808 .:0.010240981380231355 on:0.009343645456404813 Mr.:0.009059479839530787 or:0.007774813062216399 tho:0.007517855270512527 Mrs.:0.007480157724464121 was:0.006911241307050156 that:0.006843192806470965 :0.2846517408776164 +of:0.15536772086000047 in:0.05565587644875849 to:0.05195588861490112 at:0.038548995475926426 by:0.030573752777819017 for:0.02510646110783097 In:0.024431370033583616 :0.02376332179002329 and:0.02327204173998765 on:0.018870194198083896 from:0.016968551550075157 with:0.010402698775271559 that:0.010268148384613481 ol:0.0071425185760198035 ot:0.007129342899306144 said:0.0063242587041881125 do:0.006184647564608683 as:0.0061153760843088295 the:0.006101823288010399 :0.47481701112668284 +in:0.14777778868539876 of:0.12240335000082818 as:0.059712455261726506 and:0.058989013073955696 to:0.05781814961423366 by:0.057656794823451187 with:0.054871259805928975 for:0.045075380246815955 is:0.0439582770463972 In:0.0372855489517639 at:0.03437785568796124 that:0.032636706223496056 such:0.02989513148809624 was:0.026604034722948252 be:0.021365585265958605 from:0.020419177617270738 on:0.015772003542858615 have:0.014640301303313041 like:0.012508971113324392 :0.10523221552427278 +the:0.1011553275150833 of:0.07698783520159709 and:0.06958957097630311 to:0.040664268553338816 a:0.03981554366049125 on:0.029285989935170086 in:0.023736299824658493 that:0.023427486784449596 was:0.019872207619484928 as:0.018834677473522448 is:0.018325680775177555 :0.01626393135321983 be:0.015803973630911492 by:0.012467200119891584 for:0.011755687736699067 an:0.010719596227334522 from:0.010652052078379564 The:0.010499260944715691 are:0.009639967482489655 :0.4395034421070819 +the:0.08741288820481248 and:0.07392080242938477 be:0.0572668144792991 was:0.05686739458441792 of:0.05297029938296901 to:0.040095074017987696 is:0.03448309022071693 been:0.028380973754521515 a:0.02485235362607966 are:0.02226522268065813 were:0.019682022343204007 in:0.019454144698829248 or:0.019273705289081854 as:0.0158232132157123 not:0.012361914460680723 being:0.010097596398749334 for:0.009388164492904385 :0.00930537568905371 their:0.00894740846790883 :0.3961515415630284 +of:0.19271993207475108 and:0.12467366995353944 in:0.07231074361529238 to:0.06242628352197255 at:0.04618611108257369 that:0.0434273544631262 with:0.03637067705535393 on:0.03635696090802566 for:0.03386919221230831 by:0.02665756984153553 from:0.026392292031087058 are:0.02083440225460235 In:0.018364192734505107 was:0.016391289218422818 nearly:0.01491791340554394 is:0.014536810350990087 were:0.012163883875832232 which:0.009397745508264523 but:0.009099192515724401 :0.1819037833765487 +the:0.22263106376475128 a:0.1361932108286671 and:0.06922822888313925 of:0.04830085563607259 The:0.042424294540361715 an:0.03159491680984587 Mr.:0.017553749604138573 to:0.016552353615721195 as:0.01582750912156408 that:0.015501690176896765 tho:0.013582212833273736 or:0.011638546917425515 his:0.011051266255987917 A:0.010476060059380019 in:0.010384342028107944 .:0.010016416897365892 most:0.009750680390584762 by:0.008013817352152562 this:0.007197906451398517 :0.2910808778331647 +of:0.21416304001851336 and:0.08774820127368982 in:0.08698482143881138 to:0.08120972968497575 on:0.06420313262700568 that:0.052244852549335606 for:0.05088179712265062 at:0.047283184441352245 from:0.03453026226962564 all:0.027812414436141044 with:0.027078871241258427 In:0.023679380938312483 by:0.02006092403036922 as:0.014624124188017241 is:0.014480880523002754 but:0.011342639839860275 was:0.011031428153302157 when:0.009959945364520498 upon:0.009641036642285647 :0.11003933321697014 +Lode:0.07183190029735761 Silver:0.06874748334008868 the:0.0477277851900892 Hill:0.0445289165986682 and:0.043807932912190456 Eureka:0.018956638269750192 Copper:0.018573926769611886 :0.01752795729506473 Consolidated:0.017252521909329428 of:0.01255620570714931 County:0.011708386501371739 City:0.011530998087616968 Gold:0.010364699159548855 Pine:0.010246000444558702 .:0.007129623984434585 Harris:0.007027485304384011 :0.005548673643852449 a:0.0054567895664935145 that:0.005287696369718453 :0.563188378648721 +of:0.28516877390807366 to:0.09189002958540368 and:0.08322952551920179 that:0.0709806837667338 as:0.042138022394720406 in:0.03973086921303774 all:0.03286612884563423 for:0.029189777016818266 by:0.027779527458343316 with:0.026509343753299087 when:0.02456969592897714 on:0.020332893056360015 which:0.01934570398045488 from:0.018921386376360635 but:0.014888717210984502 while:0.012007925513757583 than:0.011979131332870626 if:0.011247044893177327 over:0.010865549945488906 :0.1253592703003024 +the:0.3525613885247698 The:0.0969030765323227 this:0.08337135438520288 a:0.0689398783225485 This:0.05627064559888795 that:0.03759750818810938 his:0.033936886871778184 and:0.024069152881518625 of:0.021078130794128427 tho:0.018013308520385095 new:0.01386755336974023 said:0.011431825591011963 their:0.011131208475114158 gold:0.011126645790311807 our:0.0098512479339799 A:0.00882772584695361 present:0.008151967763386272 my:0.008051518555223536 whole:0.007824654578872688 :0.11599432147575431 +went:0.0927774039628488 all:0.06463498121337967 go:0.05842403382303225 turned:0.053781602991305084 was:0.04713101927150155 came:0.04223901068603393 come:0.039343483179708594 and:0.03516518158629227 going:0.025942102445140478 them:0.02304459078550818 get:0.022763784301918756 looked:0.02252150617229802 presided:0.021802430852890946 it:0.020153327040319233 him:0.019511163412180243 passed:0.019166058976959242 is:0.017803026972838653 gone:0.0177705012247419 carried:0.01749732776808197 :0.3375274633330202 +about:0.15567641344605065 and:0.13756118706203585 or:0.09912112775986415 to:0.08222264957446464 at:0.0790367492270459 of:0.05544950903413868 than:0.0485884748633865 the:0.03237660376519554 for:0.028799176288513497 was:0.0280077492214221 least:0.024672935120594056 from:0.022027707683662193 is:0.021460386944632332 About:0.01604219934423039 feet:0.01372214191129911 with:0.013614340939924882 degrees:0.012596038773842362 on:0.012547153060030515 as:0.012401555606600214 :0.10307590037306646 +interest:0.41257522401460467 terest:0.07555244185779814 Interest:0.07111424317537558 improvements:0.06623980315501704 it:0.017470683533610636 and:0.015869963330580904 due:0.015036266316414046 them:0.009868317217435394 is:0.007734848696471481 said:0.007503281129385027 high:0.007479340561536401 public:0.007372694661966681 buildings:0.00736861103420071 much:0.00734591235863676 Improvements:0.00701373871347847 come:0.0070066218384914275 or:0.006881645758168407 was:0.0066232457426168255 up:0.00637815392587356 :0.23656496297833784 +and:0.13271421989601995 is:0.05683437541089586 of:0.049656216999397644 was:0.048238212435768375 as:0.043464186222303254 be:0.04174784974105159 are:0.0354661718102972 or:0.022859761821747156 were:0.020261847294071714 that:0.01837522176765144 thereunto:0.016509702929991547 been:0.015602911342096404 the:0.014083903543517734 for:0.014057117323422012 more:0.012912366788791933 come:0.011820564094975474 free:0.011600573933205412 to:0.010883135087718243 came:0.010798454915268046 :0.411113206641809 +the:0.11450002092770444 and:0.08441452393225143 to:0.07760813378497525 of:0.06316230290547681 a:0.05835981603285578 in:0.030416210159935207 at:0.02026716401541845 or:0.02003760333375277 is:0.01680391315329448 was:0.015485397170189713 .:0.013619122237482005 be:0.012415470551684706 from:0.010845714818254094 about:0.010817769152218451 are:0.010353789077009236 :0.010089391840198022 for:0.009775995236790472 not:0.009673557574093083 tho:0.009594700917115716 :0.40075940317929987 +to:0.20646862129243626 can:0.0912187960026205 could:0.0845216639408098 will:0.08412966951999253 I:0.06407039065223129 would:0.061072546338286605 they:0.05471823206291653 we:0.04947202351334632 and:0.039197055702705506 you:0.029068163674643824 not:0.02763220949748119 We:0.02652854719928778 who:0.024604955975393174 They:0.01480848629182052 should:0.01357988489191143 may:0.009705808180537786 must:0.009534203589037766 1:0.00909671850144213 cannot:0.008575692414885093 :0.09099633075821398 +ten:0.0853534257006675 10:0.07791104683258857 50:0.07307943614791772 fifty:0.07039512611720566 20:0.0558728283546593 three:0.04402986523450323 five:0.043550923790915595 25:0.040564996330152016 5:0.03967114792963438 six:0.03888271516163278 15:0.036395369864804385 60:0.02441455490589431 30:0.023540639032575326 40:0.023354531469800127 two:0.02199676397280662 35:0.02028633403949315 4:0.01957922572162911 twenty:0.018201048047116416 75:0.01627527117850505 :0.22564475016749874 +W:0.07892631551588039 M:0.0649850702455623 J:0.06391667000631429 C:0.05905432254903491 S:0.054856972986157694 E:0.05424348669664422 A:0.0514021035998739 H:0.049828895999379015 B:0.046817024292917286 P:0.04169510535418999 L:0.03908899165768591 F:0.03868396050835962 D:0.03284277583604958 T:0.02839631999315026 R:0.022484651061807727 K:0.02066410658290062 .:0.02003194872932241 G:0.015174321886982735 N:0.014851087760055299 :0.20105586873773182 +of:0.16374495768360597 at:0.10637119194877842 in:0.09200753098015066 to:0.07707735370039541 for:0.07125976730470698 on:0.07047994633191061 and:0.052842719796100675 from:0.033475377595949346 In:0.029575959091747654 during:0.02699847842109559 that:0.02451368576345207 until:0.022252103815355827 within:0.021577087041070392 by:0.019781017528441507 with:0.01397805937123127 before:0.013677587643788316 after:0.012846637452722189 when:0.01133233190778724 was:0.01130595681714966 :0.12390224980456022 +part:0.05950410580720066 one:0.03921651515466511 side:0.0372128624231018 portion:0.01918370764411026 payment:0.015857239632332022 parts:0.014164381610052798 members:0.013633226646934829 that:0.013575272906521886 and:0.012835832364900945 day:0.011944565158307238 member:0.0113567338522943 corner:0.011111995065495185 tion:0.01056218378141027 all:0.010222805190805349 survey:0.009748340527196975 out:0.009424993679449895 office:0.009395786892381363 line:0.009212822285610477 time:0.008804162325423732 :0.6720324670518049 +the:0.19388658112035062 and:0.11941483496608829 a:0.094996135591946 The:0.047685329419898455 one:0.041867574586481646 two:0.03511688276488431 be:0.02814984478934556 that:0.027999568853484397 this:0.02566181344105255 is:0.02518287967716073 of:0.020784463542582808 any:0.020592973160815178 was:0.018387591282999993 are:0.017109624598803875 some:0.016015483535346306 he:0.015936812806379083 as:0.015596838708012569 more:0.015562810731491567 for:0.015551181097665063 :0.20350077532521096 +one:0.1028303141280697 part:0.05963429477052991 out:0.04766456937681193 some:0.031418679026461914 members:0.030764490253327767 side:0.029940657362655835 portion:0.022063658796890564 office:0.020457735219956013 member:0.019726706386316174 end:0.019666887540649894 tion:0.018667441728710307 parts:0.016814747270460957 people:0.014112771422418794 all:0.014072739582212475 any:0.013183573287639892 One:0.013083578354183906 that:0.013024335602903442 account:0.012482348155001894 many:0.012077825070275192 :0.48731264666452345 +seems:0.10533731715594809 ought:0.08540800787654407 seemed:0.05993859310596644 seem:0.059597636456045204 and:0.04862942117800906 is:0.04405378225685827 said:0.04319155343924715 supposed:0.037444323532873816 not:0.036232755509214475 as:0.033034600924368766 was:0.024426522341206073 going:0.02331430968190462 enough:0.02273536852789549 appears:0.022480920310009915 likely:0.021445431245536477 him:0.021437276507021992 able:0.019225153339494032 like:0.017388351905968998 glad:0.017109834262067216 :0.2565688404438199 +and:0.10153129813362174 the:0.10016129634104913 of:0.06494369553299317 a:0.03978266112581108 was:0.03006656025311356 in:0.02884781075089112 to:0.027037622257919645 is:0.022995346607271577 be:0.019440975318982073 for:0.018544441665868598 Mr.:0.017951321039869215 I:0.013389043596294897 that:0.012818061809398665 are:0.012400942582214787 his:0.012070509330600979 not:0.01059061782228125 he:0.010354936541006731 by:0.009989830917934702 or:0.0095790970596546 :0.43650393131322246 +purpose:0.05343987672295106 instead:0.05203517114779003 out:0.04495349021221376 sum:0.028097323986010666 is:0.0276662538969157 question:0.021242506844329097 are:0.02118568110965169 amount:0.02104616163694197 disposed:0.019589300691554175 means:0.01943459313826336 Instead:0.01921002990932253 number:0.019176195977275243 rate:0.019117522669367473 be:0.018911239337880394 matter:0.018078308224272442 cost:0.01696131371556076 account:0.016153325829627637 necessity:0.015592084909243405 use:0.015326296466268931 :0.5317833235745597 +a:0.13865037573060268 of:0.13256971029672376 or:0.07234078307834649 and:0.05944755545501657 in:0.058939175762851494 the:0.04939442945979488 any:0.04672443046133681 for:0.046394010723840536 by:0.04290253838932387 no:0.04137086435562136 to:0.04070879169576287 with:0.02748014393944536 such:0.022787346577420924 be:0.022248598554704346 as:0.016399965617882803 In:0.015512410794544131 his:0.014850481134925706 all:0.014435291470173512 is:0.014021161237307395 :0.12182193526437451 +that:0.17369320477753109 and:0.12229182427238638 which:0.0922000998895752 to:0.07254863256634267 when:0.06770676088542743 as:0.05616743365732413 will:0.04048456237830835 but:0.02799644475052969 if:0.027543076989109693 where:0.023411000534565303 what:0.01960802530796034 said:0.0193242799951616 would:0.017152642781612513 When:0.014297069938310383 shall:0.013991910895377376 because:0.0137201055083638 whom:0.013596471088601273 not:0.013386803358006578 If:0.013306894526753628 :0.15657275589875255 +know:0.15611038596794366 of:0.1060362655123061 and:0.08223223927303501 to:0.06768695375283243 see:0.058622376669032104 do:0.05780076606076112 is:0.039988999973040874 matter:0.03996490297871068 for:0.0361441556533065 or:0.03194040847494413 but:0.027049735460856962 with:0.02560090716589363 from:0.025438488718754284 in:0.02482095887712651 But:0.023378614400263613 just:0.022363254865877216 say:0.02214669893015209 Just:0.017542998668417034 at:0.01703595691530506 :0.11709493168144101 +:0.06982941348995454 it.:0.014451872424269966 .:0.010682174881597412 time.:0.0065797447764002715 him.:0.006573415737254848 them.:0.006416940569739769 country.:0.005765627296201554 year.:0.004807461992577165 day.:0.0047431097623279175 water.:0.004233870611856278 years.:0.0041949794392672265 again.:0.004121211407725727 all.:0.00399510455286701 It.:0.00379522574398537 :0.0037119939184377206 feet.:0.003632380697371212 out.:0.003534796281557361 ment.:0.0033734004764624306 city.:0.003288857388448014 :0.8312684185516982 +the:0.3901817981123289 a:0.098583878663056 and:0.05695640022835553 of:0.046997038487775346 The:0.03390065670069572 or:0.02636575980824721 tho:0.023222525713661575 their:0.0191104826846354 his:0.01706890896964544 said:0.016176622897309072 this:0.015797059144525553 our:0.014149033544967026 its:0.01203458248766106 tbe:0.011050373401248002 that:0.009375859595385824 for:0.009137664059336595 to:0.007324504125845271 following:0.007197305508786285 in:0.0059326262158829 :0.1784369196506513 +of:0.2274259997485255 thank:0.19460691047217799 to:0.09483372378347163 and:0.05162739346927551 Thank:0.03846206774790833 Almighty:0.03570162384550944 for:0.03555842610980688 with:0.03300686816878301 that:0.02510602162292789 a:0.022865047213533937 thanked:0.018580998571417172 by:0.018284483196767558 the:0.015303048945447534 as:0.015193573632961047 in:0.009702125107286443 against:0.008153146035934504 thanking:0.0077686946679720375 said:0.00631380390556535 good:0.005831851799493174 :0.13467419195523503 +of:0.28767355066866834 to:0.08775711267569858 in:0.08678131196995101 and:0.05160598694501188 on:0.04646139928102899 by:0.04519522654900943 for:0.044547789071328545 with:0.03396756772609607 that:0.033699232901107726 from:0.03075346596941143 at:0.027039283056790858 In:0.021061449543044047 as:0.017514234937992545 all:0.012543839382496166 upon:0.011844431150487573 is:0.00998972746569266 was:0.008814315973987914 into:0.008557199930727406 through:0.007781895704231326 :0.1254109790972375 +of:0.32994776050108165 to:0.08991831672087529 that:0.073439666147508 and:0.06240245204914888 with:0.05221398300825712 by:0.05067947522084891 in:0.03842047964112113 as:0.03463917150992961 for:0.029570858964434715 which:0.02131602330802634 from:0.016733313780652934 upon:0.015357203651743206 is:0.013745397156946044 on:0.012594485064385604 all:0.012103992670194333 when:0.011372344184967718 if:0.009180855200961369 not:0.00888910055239466 but:0.008775601085846666 :0.1076995195806758 +he:0.14310369022750694 it:0.11130990705288764 they:0.07892028322034934 I:0.06922591899986383 that:0.060100073084607714 It:0.05946011763411077 we:0.036316425751995396 which:0.036236228689137596 and:0.03553735421997305 she:0.03359563137184539 you:0.028952414365320575 who:0.02587827559873309 there:0.024204570205481602 He:0.01604217147798961 one:0.012579625274040624 what:0.01157528461570685 This:0.009914422079096447 ho:0.008797666808088172 1:0.008575266563447025 :0.1886746727598184 +to:0.26492732119977747 will:0.19792010249035252 may:0.0953653196209241 can:0.06903114320111238 shall:0.06589906738598889 should:0.06506534386977837 would:0.0425057922568494 must:0.04243763397026265 could:0.033220372178462916 not:0.03173367036118095 cannot:0.017198903882811742 might:0.01342613521257079 and:0.0069105444749937225 it:0.004124021498521262 also:0.0034446973276927102 never:0.0029062766847951444 only:0.0021694409937230716 that:0.0021151356502383764 which:0.0020129441923654244 :0.036586133547598154 +the:0.6012117386917473 in:0.05588633286059913 The:0.051970404660406436 and:0.04357722542785907 a:0.03775534811362728 tho:0.0333680654112192 great:0.019153777899828927 In:0.018773269006882625 of:0.01765431118820421 tbe:0.01346001986754444 this:0.00830896293488752 that:0.00692884585861101 other:0.006856444512171203 large:0.0058774322545136455 or:0.0037657218065220454 first:0.003319943709576371 ad-:0.0033133282431214287 on:0.0032264495852220793 said:0.003115855121993462 :0.0614765228454626 +the:0.4071374189315913 and:0.06449181461132415 of:0.02892866618288876 in:0.028670005984162618 The:0.02603617389223924 tho:0.024993820467459137 a:0.023579040051412606 to:0.01755553213771617 on:0.014626070241060114 by:0.013447843485786471 or:0.012794166593089693 tbe:0.012024509152999897 :0.010353482361299817 that:0.009291482237329618 In:0.007938246807075932 from:0.007526799010378873 other:0.007469196869028889 all:0.006409533041696086 for:0.00626887758057738 :0.26945732036088327 +is:0.11852008984255555 of:0.08939186844734127 was:0.08514032189887781 and:0.0796191565504778 in:0.05841897057277058 as:0.04141517031113783 to:0.03527418704711287 by:0.03208349761601984 any:0.0316178936538981 no:0.03129759887347578 the:0.027925111379291493 with:0.027276745378366836 that:0.02553986982270336 only:0.025049036289369744 but:0.024821881507018136 not:0.024674263954361692 for:0.024307050149215317 be:0.022936841776455594 from:0.02241706127132092 :0.17127338365822947 +the:0.21434027214467286 of:0.10100886760946659 their:0.08141983160792192 our:0.05372255241887071 his:0.05086667629373475 other:0.04766187086104692 its:0.03252314424321672 all:0.03122416757245522 American:0.025404885597742365 own:0.020855690122319134 good:0.01896320056263058 public:0.01865142420956469 these:0.018373523374435673 national:0.01754490911590329 for:0.016266479405708783 tho:0.015094462891589154 educational:0.014690319837019744 such:0.014258016375810935 and:0.013973962807037575 :0.19215574294885243 +of:0.2705325513134557 on:0.11021918362837207 in:0.07831075837954847 to:0.07153126062687236 by:0.06375285040281051 and:0.05342126240413414 that:0.03232940968143671 from:0.029875066628793735 for:0.028420888855012764 with:0.02826477040213627 In:0.025100866801778077 at:0.021597182350114274 upon:0.01664124045647936 as:0.014076665423478693 On:0.01042467337605368 before:0.010360941250431003 until:0.00882675102192552 all:0.008706521939458443 when:0.008312886814912587 :0.10829426824279563 +of:0.14061422670442228 by:0.07397890083971677 to:0.0645957650592629 that:0.06278196009235353 and:0.06171779412995163 with:0.024784207916322815 :0.021296554997849743 which:0.018150544625629747 as:0.015593235006414066 from:0.013045232743111014 Rev.:0.012950377448433107 for:0.01208267405942049 in:0.011345035541060299 but:0.010763995429851557 when:0.010542089526816392 if:0.007472747609427384 said:0.007100416424489038 or:0.00707214494317395 at:0.006990048717905581 :0.41612204818438775 +he:0.14978782237949578 and:0.13692239130285971 be:0.10933430725222264 I:0.04098489519858598 who:0.03609505414503718 was:0.034784111336173026 have:0.03391794379362447 He:0.029798908378844375 is:0.028256472602532685 they:0.025479856048166882 which:0.024333031171301908 had:0.02406149624164322 has:0.022427363569560693 she:0.01976525675075726 that:0.01830877369138533 been:0.017840898803095855 we:0.0171654192203342 lie:0.016539028894822238 are:0.01573496847215808 :0.19746200074739848 +and:0.15954896509628302 fact:0.06250413334095033 said:0.05065834510086072 so:0.041377132404438896 is:0.035044982477999385 say:0.031238107057586156 was:0.03080136861091614 him:0.030163903722579304 found:0.028801317587840422 know:0.027089045931031216 show:0.02253951910492264 stated:0.020965932865206496 says:0.020478382261860294 believe:0.019460213424765792 but:0.017059185035050474 thought:0.01632135970667961 see:0.0159709956695605 me:0.01535960772741225 told:0.014380823351940667 :0.33923667952211567 +be:0.18477486857640557 was:0.10618182207129176 been:0.09053092779834537 is:0.05276057240287957 and:0.05050585171008188 have:0.04799788167507539 has:0.041204292695533114 were:0.03433966674617767 had:0.03358109660994124 are:0.029884265808324286 he:0.02985141575411591 being:0.01957753439801229 case:0.01597292805137077 I:0.014706200004871158 bo:0.012327380561471944 who:0.00965055121395332 Is:0.009275558174830055 they:0.007772554041222143 which:0.0077704302030560815 :0.2003342015030405 +and:0.03868242960999506 as:0.031124813427855922 went:0.02352509775927722 him:0.02196555539050794 them:0.018760608639018784 up:0.017985449426794205 is:0.017894175620344187 go:0.017174904667157563 able:0.016756848979943888 going:0.014481672239490295 it:0.014128375989346808 was:0.013277058274565138 time:0.013249953793837373 not:0.012469887553778763 began:0.012465717758716884 way:0.012105610030480113 back:0.012090864562211581 right:0.011941707822828511 amounted:0.011564315359310868 :0.667354953094539 +to:0.1973386254331232 the:0.16316528627409052 an:0.09980854152385407 of:0.08397746617830043 a:0.0698300555033311 in:0.057370949759406015 and:0.05702982652361096 with:0.026345219763247923 not:0.022707633705489536 for:0.022550403222614812 In:0.020413292492168878 any:0.020059775466782316 his:0.01984831674668262 no:0.017709888925733233 have:0.0153709605135809 The:0.015332186458723107 or:0.015056616515722881 will:0.013764736598620006 without:0.012371850901521037 :0.04894836749339646 +and:0.061939340302319096 as:0.05050266539547882 order:0.040103501492605304 necessary:0.03613926360457758 right:0.028506790754358247 is:0.024723602362056746 able:0.023670476872810722 power:0.02231203747679429 him:0.021359653529027616 enough:0.019779352495774408 made:0.017548478648345977 time:0.01676579253392684 sold:0.01657007749954053 was:0.015794579878868273 going:0.015474637617866431 required:0.015032431468081845 went:0.013663980536495328 them:0.01300793714917692 way:0.012155519819396502 :0.5339498805624985 +:0.041243257182454134 it.:0.024901039998864578 them.:0.012135902103366401 him.:0.011978619349245304 ?:0.011532201748435205 .:0.01047143375112056 me.:0.0075747489799126225 her.:0.005228533698965571 you.:0.005193745766134443 world.:0.0045618353741115536 us.:0.004531949732628232 and:0.004481285065352315 life.:0.004425084214061919 country.:0.004221658264832795 know:0.0042148015046780144 all.:0.003999359400626952 I:0.003981998881821899 man.:0.0038383563050571946 to:0.0038112685763422908 :0.826672920101988 +and:0.07558940021936399 recorded:0.030196237618668006 was:0.028917161578042846 made:0.027969746247669736 that:0.027730098932509103 o'clock:0.025060522019555328 up:0.023026552239529506 is:0.020398277211376416 found:0.02003101797656537 placed:0.017482208134164214 out:0.016937164562539058 place:0.016819459500107596 interest:0.016629321966808677 him:0.016002796715253755 situated:0.01573420479581609 it:0.015128305982428461 them:0.014715943643665314 part:0.014646613000297721 interested:0.014450471929902294 :0.5615344957257364 +the:0.2623020900295326 a:0.23640808360094917 this:0.06942600295656572 The:0.04947401932242729 and:0.04257824180385212 his:0.037556560641138236 one:0.036787025623279346 every:0.022872013815529123 tho:0.022697701442226756 her:0.020681436790771123 A:0.020383219948792556 no:0.019836226304195945 any:0.01683419490573038 my:0.012490607234004697 to:0.011233921149484615 their:0.010887744248476872 each:0.009610069498387226 an:0.009580502100255005 I:0.009546560788542876 :0.07781377779585838 +and:0.05152002081201513 made:0.05121248695473743 up:0.02340229676555606 done:0.022979178924128638 out:0.019629436357228813 caused:0.018519803558448553 or:0.01747750932808515 it:0.016138120130117787 taken:0.015445817739404313 ed:0.01454003064440242 that:0.014425295282159517 shown:0.014247669474643088 them:0.014202428684592216 given:0.013153192558987 paid:0.012686108540808368 used:0.011970724474448817 followed:0.011603580389644397 him:0.010927038840246097 was:0.010460780758042135 :0.6344584797823041 +of:0.1207589535048498 the:0.09759447654908239 a:0.08225765792886593 to:0.0697578806082629 and:0.0557626338635959 in:0.045317100510868694 at:0.02759011623439675 for:0.025754503401265293 by:0.022633171719803613 with:0.022382814201420586 that:0.020716144120107534 from:0.012185113691324379 :0.01061270272472872 In:0.010333350004400567 on:0.010120506660694337 an:0.00940262370832602 or:0.008243716382117959 upon:0.007663928050824648 will:0.006918448833648139 :0.3329941573014158 +them.:0.04225323872976742 :0.034129962930603046 it.:0.02136109182424927 men.:0.011327092792106655 him.:0.01104424327385951 time.:0.008872771895249685 country.:0.00825560812424458 people.:0.007419642300229549 day.:0.0073653147874083846 themselves.:0.0072541178735326456 work.:0.007078535599911317 city.:0.006710559155287186 year.:0.0061683761503972265 week.:0.0059706036422928765 her.:0.005414785277518135 there.:0.005351063090598223 night.:0.005325765433404313 years.:0.0051036738457082105 one.:0.005087238788468375 :0.7875063144851634 +not:0.22568287133774845 to:0.2109123945522093 I:0.14232424285585876 don't:0.061247487572246635 you:0.055400487022612646 and:0.04264598284263239 we:0.034366971615378196 We:0.028032149732874104 You:0.021854376284194447 didn't:0.02076786692095435 don’t:0.01857900943400185 they:0.01639889587724292 will:0.01591005108474826 1:0.014779712207642782 who:0.013666995339304605 would:0.012334400024257931 must:0.011098848341296038 They:0.008474401234098419 should:0.00837951669706342 :0.03614333902363449 +the:0.4132272819587594 a:0.13950967817675505 brick:0.041325726134335834 his:0.0354995987165364 frame:0.02784675479344091 The:0.02727542056231366 tho:0.025874567572349006 and:0.020549953195068985 their:0.017926902602492734 in:0.016517124418213017 this:0.01188528201953944 her:0.011133148364115586 tbe:0.011125261397596533 our:0.010062633020422757 old:0.00943954112850338 that:0.009162240732789435 new:0.00892366222354474 large:0.008734663176146741 any:0.008209850165046464 :0.14477070964202987 +and:0.04434859239166702 years:0.024193795235090524 free:0.020377246982190646 miles:0.016194753086712498 him:0.01581101152417336 taken:0.01568138598369902 of:0.014891066055566346 away:0.01451999857175897 them:0.013708247868599623 or:0.012448609498127178 way:0.011622068239263662 out:0.011362640372182235 suffering:0.011087413277115874 deed:0.010984612967027244 far:0.010953992617511453 it:0.0108669964920283 water:0.010560313856884435 year:0.010080162720345114 money:0.009300780401546844 :0.7100063118585097 +as:0.11458754985313697 so:0.07876816005621373 are:0.06172872985110208 is:0.053701763552023656 very:0.04267694405557841 be:0.03552600385587107 and:0.03540622221155578 of:0.03515731461257736 was:0.034359187324067106 the:0.02935580882212856 were:0.02292075447623112 too:0.021092795034183678 it:0.02082366259934338 with:0.019485073965021787 by:0.01630317691824424 been:0.01614705935155428 that:0.014971630668112728 all:0.014002473022161177 Is:0.013401410264805647 :0.31858427950608725 +it:0.16558174341344517 It:0.07846395477223078 there:0.068926656508768 they:0.05354081626270712 that:0.04867727640265432 which:0.04505196720686623 he:0.0439264118286433 and:0.04292049757801078 I:0.03259451855648658 we:0.022714282810773655 you:0.017312799630666443 There:0.014753102337007622 she:0.012061733113950288 who:0.011822775785340672 what:0.010328641715673107 law:0.009760151038589949 States:0.009676543902658263 man:0.009568256342280966 men:0.009031003643309513 :0.29228686714993724 +the:0.14758139319324365 and:0.09650695447904364 of:0.06439644672661651 a:0.038945865087235444 to:0.03281444713457846 that:0.02346643394969413 The:0.023308288940496014 Mr.:0.022977641103377168 or:0.022701404561613747 I:0.021879765821533455 it:0.02137176581143954 be:0.018721237093173422 in:0.017897296968999554 he:0.016750243692262204 no:0.015597388814093017 as:0.01463575781894053 their:0.014026219803297291 which:0.013832985731725386 his:0.013673113510281526 :0.3579153497583553 +and:0.06510927638011743 bill:0.04460657175483756 President:0.01918197111839468 known:0.019125454367138108 was:0.01852861380768708 resolution:0.016947608719680447 is:0.01638167740858743 of:0.015157512338234614 not:0.01418365330344521 or:0.013921603865524408 for:0.012653692523837546 that:0.012535324004338193 it:0.012173196707106123 made:0.012133962344118057 :0.012044691944650597 act:0.011997596098524908 by:0.011793908535007615 thus:0.011635985956545702 as:0.0116158950174424 :0.6472718038047819 +out:0.043540176041628915 amount:0.04058050994164723 purpose:0.033288445957237886 number:0.03310754203997824 one:0.029801111829178478 means:0.02881709617338885 matter:0.028007828057505284 years:0.02632322404653041 way:0.022729170348322066 rate:0.020821831067245396 system:0.02023625245995343 full:0.019878352693778186 instead:0.019483758456024635 that:0.0192545663773544 sort:0.018551927948510412 kind:0.017854620942454626 cost:0.017774078288813135 question:0.017556221332126323 line:0.017514611608868906 :0.5238786743894532 +the:0.47021020832425314 The:0.09848327702787807 this:0.08593984648727741 a:0.056502466188063385 that:0.05617219369085376 tho:0.03177870122853952 of:0.02985048229453883 his:0.02348456844949198 and:0.01868249517979151 This:0.014627376265946061 tbe:0.011316589074907492 our:0.010635631606779642 other:0.008381170942928211 to:0.007589266449296648 Tho:0.0074291873050119014 or:0.006202939746306928 in:0.006164554743958742 my:0.0060371233784091765 these:0.005861307067386314 :0.04365061454838129 +the:0.21605058612028774 of:0.1097745805250761 and:0.065446508643625 in:0.05639121505483923 a:0.044091716977312456 The:0.029204159954143702 to:0.02702155647213601 at:0.019341575015938063 tho:0.016836178130396933 Mr.:0.014998953158883908 his:0.014252117190840293 or:0.012901043092692814 In:0.01242631173254012 :0.012303266673748462 for:0.011794650300273669 as:0.011577638373100137 .:0.010953595505151775 from:0.010357072017001204 by:0.010057838222157502 :0.2932194368398549 +:0.10132530864253071 .:0.01586153736849991 it.:0.012994963694550781 them.:0.009972326155771085 day.:0.006466314186158732 him.:0.005963072708890589 time.:0.005952754819220498 of:0.005834450921883061 country.:0.005314225508045209 year.:0.0049247550547799 city.:0.004072303040063511 years.:0.003997040955926161 work.:0.003880377182773483 people.:0.0033836246305601453 States.:0.0031455025043576447 place.:0.0030640999552846737 men.:0.0029656503323313246 way.:0.002952433427976742 out.:0.002933009065662241 :0.7939962498447336 +the:0.39749834532651884 a:0.07520030034269234 and:0.05540858759821703 The:0.03273515726769502 tho:0.030061875542463562 of:0.020144331424922633 tbe:0.014929647509541684 in:0.014268129706664795 or:0.013333166761078447 .:0.013287381914101323 an:0.009000188755386574 to:0.00880680429595084 :0.007943763822197133 Mr.:0.00773879605474787 by:0.007328417831573476 as:0.005922572098978465 for:0.0047526933692942485 that:0.004736121968310169 on:0.004594595720579333 :0.2713091226890862 +the:0.8720164496724387 tho:0.04690213718062064 The:0.020049037744112555 tbe:0.014608353362653797 of:0.010531132155482499 and:0.002859999174544876 by:0.0026471868598776324 a:0.0025839687482875763 tlie:0.0017670966627532552 our:0.0016744398623076587 that:0.0016363278773482784 in:0.0015877691034125033 ihe:0.0014314452382605672 said:0.0012657665366587463 tne:0.0012285756312794174 tha:0.0011553282168626636 this:0.0011250832174796185 from:0.0010033143504130397 ofthe:0.0009208976082912711 :0.01200569079691473 +and:0.09028170801185494 be:0.07822087956359496 was:0.0604322494376946 to:0.03875799823221426 been:0.03781583825357645 is:0.03554424767192397 of:0.034961410324985946 he:0.030725180805022397 were:0.02766787033135484 had:0.02522919821496135 the:0.025062736946777315 have:0.024744631581598685 are:0.02273367617647766 has:0.02153903863415162 which:0.020121609097888116 who:0.018038493709098425 I:0.01645201523010846 so:0.016103804784538968 con-:0.01599519306445885 :0.35857221992771815 +feet:0.08423840389809026 went:0.0659114074291643 according:0.04876855974971883 go:0.03960591211148875 and:0.03717280035045837 sent:0.027607007624142695 subject:0.025720053697236647 relating:0.02564726361188786 back:0.025095720753083247 as:0.024927495021280985 up:0.024193278803483112 down:0.023911127902334132 came:0.01904470267638727 chains:0.01880516602106768 returned:0.018592162026549407 regard:0.018194015754928065 time:0.01688023078332866 chs.:0.01595585158161924 return:0.015429074520117474 :0.42329976568363303 +and:0.1123733421746792 the:0.06398871609351217 of:0.05820119173641186 to:0.05410698206537067 was:0.04217115686866493 for:0.033307593773933754 in:0.033147563636303126 a:0.0308236866245999 is:0.029234408063700194 be:0.028449136552304022 will:0.020229528223419613 he:0.01952711385419231 not:0.017649792266210718 are:0.01723033176726026 as:0.016142300456216858 been:0.01590213861403329 that:0.015549231352813601 his:0.0147109348728496 which:0.01457074757463291 :0.361684103428891 +the:0.16856538854722275 a:0.16077802897909668 The:0.08816409840220225 and:0.08096847177678368 he:0.03600520295813543 that:0.03260525876167102 I:0.02522916943597762 A:0.02207937665187095 little:0.0165925284250011 her:0.014772135963559207 his:0.014320082053987326 first:0.01429839176824257 be:0.014162926740657012 or:0.011367993097594046 of:0.01135722974698467 This:0.010262528914992224 young:0.009698702470017605 this:0.00931247003209358 tho:0.009232364734516317 :0.24922765053939394 +and:0.09313270001887555 him:0.06091047184161428 was:0.0594866489753872 is:0.03215577593658439 it:0.031067546838141172 up:0.029276073733094606 as:0.026690993083394426 come:0.023361717891516733 placed:0.022729383997069585 be:0.022682130953541907 made:0.022607086175442465 that:0.022363290662966565 or:0.02235428229403113 them:0.022289093314016597 not:0.021737781529320866 Given:0.02002793555902313 down:0.01960468805570186 out:0.019087399565974713 had:0.018176415201057314 :0.40925858437324547 +would:0.07768064895254433 and:0.07126995101111326 a:0.06715780609847559 was:0.06187118455649225 not:0.04904117653334584 something:0.047490370983966065 to:0.046567915513729595 is:0.04477066348526667 looked:0.03213816641546165 much:0.03182615441577088 in:0.030874995146190055 of:0.03028734663431503 are:0.0235000376372132 anything:0.021843151089419983 up:0.02062507549988514 I:0.0174976980139414 be:0.017073117897156504 almost:0.016733496624314576 look:0.016503423016485188 :0.2742476204749128 +the:0.1401487583628289 of:0.10627744991186372 and:0.06685222491154473 to:0.047562604188104374 a:0.04124161738460994 be:0.03184237525013779 in:0.024790332844694805 was:0.02295716501771944 is:0.021484624743430582 his:0.020888944942807745 at:0.01777741764346001 their:0.014327351805052057 for:0.013065837504613844 or:0.012725697213947904 an:0.012190486820789428 this:0.012076078301681592 been:0.010953059428567084 are:0.010782757357686157 its:0.010711431409212225 :0.36034378495724767 +the:0.311486808271365 this:0.056390839998743655 every:0.04679098608748011 that:0.04519222121527137 next:0.04165466882595063 other:0.03425596133206575 a:0.03321382725677221 one:0.03208241388846543 all:0.028150281490855855 first:0.027988332742185935 The:0.02404839145346419 from:0.023627101069351165 of:0.023041866488530845 to-:0.022360063843918702 and:0.020374157959691153 to:0.019494961853756515 each:0.017750309605468483 tho:0.013503590856545764 One:0.013423125264771471 :0.16417009049534578 +and:0.08350412374984154 for:0.03276509070045988 of:0.030389105090322936 not:0.027840712848238233 about:0.027803971163558552 time:0.019637772678681425 as:0.0182775144537113 was:0.017849246077508405 in:0.01771378027543355 only:0.01565978106228631 aged:0.01442977344920968 is:0.014296089091408762 or:0.01354952514246393 but:0.012927884369758688 by:0.011462932499358909 to:0.011153162754768117 are:0.01074144394759248 that:0.010672193318794569 than:0.010532097692712381 :0.5977937996338903 +of:0.09129790931378902 the:0.07369883040827747 and:0.047842263382354346 in:0.04189055351593407 to:0.04045875475680249 a:0.03542341257202578 be:0.02020462051672066 for:0.01979292654746225 was:0.01760256398103379 at:0.017380150555488715 is:0.014984483003968216 with:0.014047653760730413 by:0.01374644383819499 :0.012670486581795598 In:0.01200961464556976 or:0.011563835749786333 from:0.011391516893522809 are:0.011273104484969465 that:0.010755276030689069 :0.4809655994608848 +that:0.21488806932375457 and:0.13704574472682768 but:0.07364295408934517 as:0.06153783271550263 when:0.056237149067654445 which:0.05511792399565147 if:0.03254514212126367 where:0.026252377085483634 until:0.018569156542656885 because:0.018405251161535782 of:0.01685808952523818 But:0.01451924119369239 time:0.014332649376990287 for:0.013714485166924044 what:0.013251216067409047 though:0.012499089054312695 before:0.012092095141291899 If:0.011363662217684147 said:0.011229030518646942 :0.1848988409081344 +the:0.108209712999719 and:0.08930691014018635 of:0.08784494059057514 a:0.0402267456671343 to:0.027169179850814046 in:0.02489978681045947 was:0.02381627638810896 that:0.018654146323514875 by:0.017554947674201207 is:0.01727027698808855 be:0.017063279385715176 for:0.016998149830016126 his:0.013009457800741399 The:0.01217871161614816 with:0.011049023102479905 as:0.01090734021097581 from:0.01004272434542858 .:0.009467739169310754 been:0.0092486222303718 :0.4340820288760104 +of:0.21179382952983505 to:0.11555703441073824 on:0.07423976026154733 and:0.06717602861190947 for:0.05996822602261922 in:0.048622943045231515 by:0.046523237463565265 at:0.04312274531510773 that:0.04204792640386192 from:0.03786267951830423 with:0.03400534198657177 all:0.03222732359385109 upon:0.02622222310943068 as:0.01445889949503349 In:0.011542092929649962 is:0.009663779277857392 into:0.00817445052362107 over:0.007989891248882906 when:0.007809848418520039 :0.09999173883386164 +-:0.055396690260264635 and:0.03436027736304963 to:0.032595255845561985 I:0.019834826735492937 f:0.016643356782079954 :0.01648655048487673 .:0.015919499195991935 the:0.013800097210694815 f.:0.013159718222134721 t:0.012092453340694441 i:0.011978637047003375 that:0.009491515760747506 e:0.0089822562828995 o:0.008863330819241554 at:0.008799100018740662 dis-:0.008702602505627807 1:0.008357490136121769 <:0.007175338101791916 in:0.006119317890417518 :0.6902416859965665 +the:0.11500545585881412 of:0.0897605566703555 and:0.07914879987306167 a:0.05827037833039227 to:0.0386987683614473 was:0.029282661483795363 be:0.023890810389268442 is:0.02056818843792312 been:0.017204803150083207 or:0.017094944717067368 in:0.01610392931760865 are:0.015798243080240505 his:0.01344187865263006 at:0.01321973597799718 for:0.01304287912725108 their:0.012337012043366955 were:0.012236169772424844 :0.01133284696603621 The:0.01095822742659897 :0.3916037103636372 +of:0.173933762990803 and:0.1717672126185615 to:0.1388393594327249 for:0.06088586956059814 that:0.05398192550974025 in:0.05117528977530425 with:0.03464025454301889 or:0.03266658795236522 nearly:0.03142887526640657 by:0.02832318375233411 at:0.024864269336572563 as:0.015511035180285656 on:0.013732867747379253 but:0.012975782343120116 from:0.01268070805544481 which:0.011319551464270721 do:0.010995032967463755 In:0.010010244222062918 almost:0.009448767264815187 :0.0998194200167282 +of:0.09129790931378902 the:0.07369883040827747 and:0.047842263382354346 in:0.04189055351593407 to:0.04045875475680249 a:0.03542341257202578 be:0.02020462051672066 for:0.01979292654746225 was:0.01760256398103379 at:0.017380150555488715 is:0.014984483003968216 with:0.014047653760730413 by:0.01374644383819499 :0.012670486581795598 In:0.01200961464556976 or:0.011563835749786333 from:0.011391516893522809 are:0.011273104484969465 that:0.010755276030689069 :0.4809655994608848 +of:0.27425399154842417 in:0.11406587209006444 the:0.09682690412968126 and:0.09579366100760996 from:0.06937037706206149 for:0.02557430912532221 or:0.022533654932673088 In:0.021971763133368866 by:0.02123467398127251 with:0.018992610900091942 a:0.01888963992279607 to:0.01727476544275033 that:0.013100556729398168 seed:0.012224815514067143 good:0.009827233251607247 this:0.008164912876765833 their:0.007331499302326493 on:0.007196179684780095 other:0.007079949878718288 :0.13729262948622037 +that:0.22050749519726323 if:0.11098261060627591 which:0.09506313352843512 as:0.07751568420175181 and:0.06640896028540039 when:0.04365664567827713 where:0.04190620812368557 what:0.03448063804356876 but:0.028262794131971747 If:0.021681345926257044 because:0.020339156967466708 until:0.0198520172938364 whom:0.01960588708107655 before:0.019266959247270905 than:0.01649764072893347 after:0.015684208040186363 though:0.012598886583322734 for:0.012044692878915492 whether:0.011072697925714182 :0.11157233753039046 +:0.042121809243109674 and:0.025115839546517717 was:0.01991321458715972 be:0.019361617353387452 is:0.011984115090027172 are:0.011708641305616186 that:0.010720595268890114 were:0.010118875880028138 .:0.008538828059217652 been:0.008214792900146319 put:0.007814765668374815 recorded:0.007169050565739314 situated:0.006726720926511513 it.:0.006648720798510434 them:0.0065998360318737246 made:0.006580774631752311 held:0.006505024562847372 it:0.006354607680120908 succeeded:0.006148044476402017 :0.7706541254237674 +of:0.20587999785716984 in:0.12969633507207662 that:0.08834563433382818 to:0.05329122971512877 under:0.05098442884166504 any:0.05090489945369927 and:0.04445077984962988 for:0.043140312583858476 with:0.041805250065820206 on:0.039439780748606254 upon:0.030288369175352735 In:0.02659325872133236 by:0.024753680759829404 as:0.022525197677768272 make:0.016014649582916835 which:0.014099747279147165 no:0.013316003848081272 at:0.011102537770880438 or:0.011041880539551283 :0.08132602612365773 +the:0.3339545015704507 said:0.1850560284107273 a:0.04446212061030324 of:0.04211164032624024 this:0.02981900648250985 his:0.027736229547943823 tho:0.019376221141954267 in:0.012987421856347674 their:0.01178596945999201 an:0.011088097600122077 and:0.01037701001886655 The:0.01036616690058917 certain:0.01017599721465579 our:0.010129192876718554 tbe:0.009309785943529566 same:0.009262052962294317 large:0.00808297031258944 such:0.008064084320276284 to:0.007709375682364026 :0.19714612676152515 +the:0.11919516938815296 of:0.07230453158552728 and:0.05781056740443249 a:0.043018564803886335 to:0.031305092790907506 in:0.020848713353460488 at:0.014270110001066288 .:0.012526810245749479 :0.012413283442322082 for:0.011719122709941797 by:0.010808400946589808 or:0.010404172990115616 The:0.01003576004804544 with:0.009811868184449042 tho:0.009295902015355835 was:0.008924239095331684 that:0.008672304223433876 is:0.0085591147338948 be:0.008335143826716943 :0.5187411282106204 +of:0.13084814232797154 in:0.0740836656586379 as:0.0625527229231004 with:0.059577596335708534 to:0.058433603729754965 is:0.05551580107464621 and:0.04946529489577619 was:0.04264000753602388 for:0.04009673021586375 by:0.037684080471064085 be:0.023941707008899252 on:0.02316059851167503 at:0.022644769441950232 such:0.019950936521181326 that:0.017856095877642635 like:0.017386655618315594 In:0.016902219705578994 from:0.016046571451088905 not:0.01205910100844263 :0.21815369968667797 +and:0.1392837516468652 to:0.06734672059580125 was:0.06235232310274085 is:0.05795071154088272 the:0.04753465642112274 not:0.03122309663456331 be:0.03042518732484979 of:0.02826902768748541 an:0.028171684350734246 as:0.02698402342793665 at:0.026061952576138102 are:0.02603907177681255 more:0.024821149567662917 were:0.022025503182963924 time:0.01634707488786087 have:0.015711915633428938 will:0.015070271050050472 now:0.014967010858091408 1:0.014432646618385175 :0.30398222111562345 +the:0.11919516938815296 of:0.07230453158552728 and:0.05781056740443249 a:0.043018564803886335 to:0.031305092790907506 in:0.020848713353460488 at:0.014270110001066288 .:0.012526810245749479 :0.012413283442322082 for:0.011719122709941797 by:0.010808400946589808 or:0.010404172990115616 The:0.01003576004804544 with:0.009811868184449042 tho:0.009295902015355835 was:0.008924239095331684 that:0.008672304223433876 is:0.0085591147338948 be:0.008335143826716943 :0.5187411282106204 +and:0.09959798839424233 made:0.06068576615840514 that:0.03297896537951394 or:0.02881934545874184 it:0.02251351577002146 followed:0.019367949137897852 done:0.01864792870966769 caused:0.016300884374071054 given:0.016298649510288584 secured:0.015608828735053726 surrounded:0.015513191806636753 accompanied:0.015312065662987127 only:0.01530624905309813 but:0.015253758746142003 was:0.015062910656537188 foreclosed:0.014609997039017051 ed:0.014337055394917947 shown:0.013524956590831782 him:0.013187230403950223 :0.5360727630179781 +the:0.18255445033060405 of:0.12721789186760124 and:0.05766996038766201 an:0.019680304276316386 other:0.01840305053700838 or:0.017921341549348824 his:0.01729410024787342 this:0.014275309884211286 one:0.01403618208419153 our:0.013282577664091756 all:0.012609630102221681 each:0.012471925788555733 said:0.012231618241871365 tho:0.011888894601050781 their:0.011868113503425473 every:0.011517563791721811 two:0.011134885999550781 new:0.010485066488400868 The:0.010472974808563646 :0.411984157845729 +to:0.2770126520885894 will:0.16651651852617208 and:0.05406747491284239 shall:0.04905082235289457 would:0.041434231823887606 they:0.04058691620065056 not:0.032236910288769606 may:0.031009673165604483 should:0.03068630969290928 we:0.02529887250322395 must:0.020225039261395926 can:0.014788116904252012 could:0.013042356185031188 might:0.011222141985055226 cannot:0.009263981478214353 who:0.008748155592094046 They:0.008549034501586866 I:0.008539525557277768 that:0.00845604565504998 :0.1482652213244987 +number:0.12595475216240484 hundreds:0.04422977386404289 amount:0.04352772312930562 thousands:0.04342035866600768 kind:0.031567149025220134 class:0.03040519042396111 couple:0.03019665523564785 series:0.02732857632676714 plenty:0.026742245902250203 piece:0.02669302278218078 kinds:0.026650437981608134 sum:0.02630769626421258 out:0.026056217190499862 sort:0.02551860070756776 day:0.022165574890193912 line:0.02190114406375951 way:0.021318018803807844 matter:0.018907615355779527 place:0.018109821966662967 :0.3619994252581196 +as:0.06931392982974462 according:0.052071562389565784 up:0.0511867300210483 and:0.040371568633051955 went:0.03351644485287816 back:0.032358406609281 regard:0.03073407747799069 feet:0.02852138506231652 down:0.026379903432040268 owing:0.02466642634685871 due:0.023695193974505355 go:0.022910973192184297 reference:0.020802802907016128 came:0.019883741951819873 sent:0.019874244915639484 attention:0.019565955494145405 come:0.01885185084678811 given:0.018792390567602263 it:0.017366961307524745 :0.4281354501879983 +of:0.28767355066866834 to:0.08775711267569858 in:0.08678131196995101 and:0.05160598694501188 on:0.04646139928102899 by:0.04519522654900943 for:0.044547789071328545 with:0.03396756772609607 that:0.033699232901107726 from:0.03075346596941143 at:0.027039283056790858 In:0.021061449543044047 as:0.017514234937992545 all:0.012543839382496166 upon:0.011844431150487573 is:0.00998972746569266 was:0.008814315973987914 into:0.008557199930727406 through:0.007781895704231326 :0.1254109790972375 +the:0.3309344836928579 of:0.10148606314954303 a:0.09292776789497585 in:0.03657724228980295 for:0.03645542762541147 their:0.02564002906164989 some:0.02261528719922547 this:0.020164680049050643 his:0.019610674642731394 tho:0.01832858009460559 short:0.017980808177677665 with:0.017876965251689258 and:0.017216827500505447 on:0.016473740267762806 little:0.015186014068841288 good:0.013877916836516468 much:0.013612168445083575 open:0.01360244540697689 any:0.012258791262027892 :0.15617408708306454 +:0.1101395026680795 it.:0.024764067813610846 them.:0.02044013458218442 country.:0.008844332701056917 time.:0.008679933413374218 him.:0.00790886550692191 us.:0.007875620221668203 world.:0.0075186248981658375 day.:0.00727660717990526 people.:0.006656288488937416 .:0.006425981628821678 of:0.00637585304836289 work.:0.006306002270259239 year.:0.005920388116239785 city.:0.0058753332641725605 in:0.005851802042953567 way.:0.005712432600287753 life.:0.005151152489449807 years.:0.004992534342284194 :0.736284542723264 +be:0.16318050713074186 and:0.11667345043902012 was:0.10142984899746935 is:0.07748071043405173 been:0.05596906890120994 are:0.04914325686808924 were:0.047014952441239266 he:0.04520449171505709 have:0.03269174345608422 has:0.02516356884431714 had:0.02076417593221159 who:0.019056323008514862 they:0.018128693998758955 Is:0.017906359051969988 being:0.017513338284335198 the:0.01712932992932462 I:0.016679534326635298 a:0.012522841693010696 He:0.012209335974754362 :0.13313846857320444 +the:0.4485662607117426 court:0.07688324808451134 a:0.05877591070606184 tho:0.032963709584450315 The:0.025995173601343513 my:0.024970554399902138 his:0.01978331998620732 this:0.014981604892007408 opera:0.014512513482656789 school:0.013452490170889038 their:0.012724820551856622 dwelling:0.012460529709429633 her:0.011091676163450793 whole:0.010917611997158088 of:0.010673715645205648 our:0.009164544379074713 tbe:0.009081002019854005 boarding:0.007768163890770383 own:0.007242358032033259 :0.17699079199139456 +they:0.15688249892045397 who:0.07802980029329734 we:0.06154363667839853 and:0.057857156022557206 which:0.05719332884557245 They:0.054366169566704266 there:0.03641259345893082 that:0.03328359332799505 you:0.028808084924713727 We:0.02873639172664403 There:0.02167795132370891 people:0.015886838217726205 men:0.015030519831750078 These:0.012637768982126164 as:0.00799288709005014 these:0.007397776672539921 You:0.0072309153835724395 States:0.006408967797005417 them:0.005695405401756878 :0.3059277155344965 +Mr.:0.10540409310129578 the:0.10449400038258391 of:0.06238731629653591 and:0.05726867054790561 The:0.03140456914196117 Mrs.:0.022402932460872108 :0.020070006552975576 .:0.017437355522633386 that:0.015520754557366068 Dr.:0.014679696982141778 at:0.014243550902311893 Miss:0.013910972128768084 a:0.012719970263264983 to:0.011438903761580393 John:0.011296455077375287 his:0.00985537874653567 in:0.009060255432746583 Mr:0.00901025783278115 or:0.008758422173100971 :0.44763643813526366 +one:0.07591276261110715 out:0.06051731193170748 part:0.05247657393880051 some:0.03764565803631056 account:0.03732080875142556 any:0.025795501308866122 all:0.022573497570587936 that:0.021706034880474935 tion:0.018820497961324994 time:0.018327338823311803 and:0.017698472540372448 use:0.017101246342976464 much:0.016743309263569286 portion:0.016424352739351607 side:0.015150320706867294 end:0.014971280442338157 cause:0.013657752568417643 because:0.013563549560043006 reason:0.012998228641295377 :0.48959550138085167 +the:0.31159887627838645 a:0.15611595553526406 to:0.09673326765868948 of:0.04411141271380085 every:0.03718181419844017 this:0.03394648735017531 his:0.033305628137731184 their:0.03017600528878603 tho:0.02061211939239938 for:0.018427366241796528 our:0.01828246412651842 and:0.01809912066132152 any:0.016352916809097933 my:0.015601971786827921 its:0.013203529359602405 each:0.012814924086023156 in:0.01268864973302608 great:0.011504506829371253 as:0.010790897569134024 :0.08745208624360788 +and:0.12146353410695149 he:0.09825301396095024 be:0.08579378261515619 was:0.06162951681529863 has:0.05586597148502379 have:0.04939170732410516 had:0.04792872984652257 who:0.047604832989782624 I:0.04360041278922855 they:0.03741118367697545 then:0.028737305644556867 which:0.028214890525838764 were:0.027061292451505983 been:0.026011078739160705 is:0.024935742143906467 He:0.021367388256598414 we:0.020011182223776902 are:0.017878621930847254 she:0.016002337979485675 :0.1398374744943283 +the:0.14538285862993044 1st:0.08134507703834688 first:0.06736886768797135 a:0.055874525947905124 25th:0.04330570615268372 7th:0.03688213350850801 10th:0.035117537855034915 12th:0.03482687129394641 21st:0.032870317578004654 15th:0.03272520813383107 13th:0.02925249040911833 28th:0.028551498372195953 14th:0.027199406423118976 6th:0.026808826990102827 26th:0.025722141500643267 4th:0.024208282672405948 29th:0.02309675301622377 18th:0.02303604825841656 24th:0.022877400054659373 :0.2025480484769524 +in:0.21772394484883426 of:0.1604318262979315 from:0.12141245358196831 with:0.044413567830607285 In:0.04389772543484522 by:0.03693238167771803 on:0.034959809526388254 upon:0.029049019886777442 for:0.028912973179718544 to:0.02848143822742842 and:0.02068796408746528 through:0.013769862419630213 at:0.007807265364987045 under:0.007217720875979804 iu:0.006485965669062599 that:0.00552766027779517 within:0.005337399095918395 over:0.00518609713941206 after:0.004987468520133158 :0.175777456057399 +the:0.3605133029073707 of:0.09142861308827402 in:0.08529432515847388 a:0.07788844183200186 their:0.034247175757154455 to:0.030636922674037306 and:0.0296813557352458 any:0.029679604442679818 In:0.026820063083549547 for:0.025205016748339016 his:0.02212487478204505 tho:0.020559273363840367 our:0.019555526931960478 such:0.015517884026042872 no:0.01518246954442597 The:0.014192516909943675 some:0.013870450958912765 its:0.0135591661489797 this:0.013527322128280337 :0.05951569377844234 +the:0.3761869528176537 a:0.13708636250537037 this:0.07806905817836106 dining:0.07627581633939104 The:0.022212458262736542 his:0.02102566041959656 court:0.02094004454266107 tho:0.02004081959052937 and:0.017416897980205404 other:0.015048259588217771 no:0.014343111462079427 any:0.013851315483945803 that:0.0128128553308688 of:0.01234206765182997 their:0.011821260292124252 my:0.011718324608765075 same:0.010584562341245038 tbe:0.009938451687400835 every:0.009216831560110576 :0.10806888935690735 +the:0.5711668943243483 of:0.06935800776465001 other:0.04050493521449586 this:0.03381564253825453 a:0.028462404876582133 The:0.02722440746786143 tho:0.026950505182803276 said:0.021461458062015232 our:0.016269680998923144 his:0.015029665862585629 their:0.01279030471422132 tbe:0.011654394714684362 new:0.011051745538513146 an:0.010552935153445173 such:0.010313194353395123 and:0.007961787857906268 American:0.007690469196760815 its:0.0069171199816127175 great:0.006876318222840475 :0.06294812797410099 +in:0.015538211848643674 up:0.01530977041881087 made:0.01262175335708944 ;:0.011922698979360342 it:0.011901852210896974 it,:0.011824237361449292 him:0.011048857127444975 out:0.010458402735439996 work:0.0086123503649987 them,:0.008164837099130552 him,:0.007872780004663373 and:0.00727539688919907 them:0.006877888341733023 :0.00656250868753377 one:0.006475304961386379 down:0.006176831659470282 law:0.006122527044720353 man:0.006118642091194577 large:0.006106089043741296 :0.822009059773093 +as:0.06299444877132172 and:0.05267088740176022 is:0.04652460414872227 enough:0.03432562852915204 able:0.033644190534224315 right:0.032932268371568825 order:0.030980835733619684 going:0.03057401888454194 him:0.030286333095380064 ought:0.028827867790769443 was:0.028198245720486837 not:0.026275448541396226 necessary:0.025008793291508343 seemed:0.024514100930527742 time:0.023302708405800003 made:0.022627130622701646 began:0.020216388219049367 them:0.020121479151043613 me:0.017883226492522768 :0.40709139536390293 +of:0.20153937792630205 in:0.12109497132219718 to:0.10794823531961684 and:0.07674032371147546 at:0.0765113121966505 on:0.07519586666035383 with:0.03647594207661275 from:0.036117940967335095 for:0.03079787363670394 that:0.023239081394512327 In:0.018183809344777205 by:0.016595542342695238 as:0.015897809085886765 upon:0.013636379161124063 up:0.01232980572773818 over:0.0099972484349564 about:0.009862639220697796 was:0.008383623247979163 all:0.008354996808626045 :0.1000972214137592 +to:0.09749257770986998 the:0.09551206399013314 and:0.09354319224337997 of:0.07480932460768112 in:0.02967229660085893 a:0.025579896041081792 not:0.017538510939051802 I:0.014890048771587954 be:0.014454354650863947 or:0.013502879084097318 he:0.013420350455248153 by:0.013217729847265764 for:0.013182212294170192 is:0.0128700234264903 :0.012502131012163752 at:0.012352874503725284 that:0.011267247520049631 this:0.010977319699742834 In:0.010892947902981794 :0.4113220186995563 +and:0.03457490380582813 one:0.026708797830215764 it:0.017818966440528952 that:0.01704066951564613 :0.015395145486146166 out:0.013873302507550141 day:0.009407521397126124 work:0.008448516003548677 time:0.008203254289983726 up:0.008199179056774027 way:0.00804430850204938 side:0.007431788396304113 as:0.007254323128910471 part:0.006964862797236108 tion:0.0059218867987411595 back:0.005737678503519269 all:0.005654186070785991 :0.005459003200839163 Court:0.005365269144566802 :0.7814964371236996 +of:0.12108553319654118 the:0.11645504643442554 a:0.06195489118438172 in:0.051347757753092915 and:0.04207395038002884 for:0.03163719770153314 to:0.029907963204636737 on:0.024650949908996515 as:0.01923053950046148 or:0.015370540049809573 his:0.015037150860668955 that:0.013195958711220082 their:0.012375093904044862 be:0.01225825271874485 In:0.012194182524410523 good:0.0111027687492261 :0.010919625613933065 The:0.010699126901058438 with:0.009368994886395813 :0.37813447581638965 +the:0.21060500054223444 his:0.09703966709815072 healthy:0.0661940617557023 this:0.06434252943780241 a:0.058880222452751506 her:0.05569843221704993 good:0.05480586839702537 my:0.04685259103968128 their:0.037073446157353564 great:0.035809505878765135 and:0.02487081485968867 better:0.023583558380752993 other:0.022634796613770665 flourishing:0.020397459732494256 own:0.01836317673932868 that:0.01788488346908106 no:0.017828997410574397 serious:0.017464016841224173 its:0.017095415464553183 :0.09157555551201527 +the:0.35989255939363884 of:0.135064657071251 for:0.12584884261286328 and:0.06666818076534349 in:0.05921349427640947 by:0.030834334403081427 from:0.028212585841951337 to:0.025427916791146626 at:0.01795618501930927 The:0.015516077915297195 In:0.013870999341313731 tho:0.013321659129143067 that:0.012104525663474863 with:0.011917469822375789 or:0.010628187149162917 have:0.009480156441605084 about:0.009436831755173182 which:0.00868053969501414 on:0.008521934779786113 :0.03640286213265919 +and:0.08995317707915026 to:0.06844710404109794 of:0.04605142056172993 the:0.04074574508561307 which:0.02479116931334353 that:0.023764822140213245 re-:0.020841117231308055 in:0.020803825395358622 for:0.020278423301550053 :0.018417753428486977 not:0.016860793136637672 con-:0.016444405871234195 is:0.014386481772210856 or:0.014080680914153714 be-:0.01352268143271276 I:0.01317002660943805 was:0.011429878269381662 dis-:0.011196807025842847 he:0.01113106290024311 :0.5026826244902934 +beginning,:0.10620426166942609 and:0.03981873400714088 west,:0.032675748133230695 ning,:0.021963814390674952 ginning,:0.02004224374036837 lot:0.0196259160633551 beginning;:0.019587142871846038 one:0.015287557077262204 section:0.01329316761495941 Meridian,:0.013177578858930042 was:0.012678496650732247 meridian,:0.012298725538694757 that:0.011276917579886104 on:0.010989388843072009 is:0.010501108246018121 lots:0.010465137473301295 ;:0.008820386367346531 book:0.008693611396275084 :0.008527820101470587 :0.6030722433760094 +of:0.2071488771240974 in:0.1373408052085974 the:0.08570956238556059 to:0.06081414630517369 from:0.0486236632107294 and:0.04581912755870471 In:0.037782545935901 for:0.03623370228213049 at:0.03303410956885691 :0.015283897753876195 by:0.01270667448889013 .:0.011138028109917342 a:0.010588077835008524 with:0.008949694921146624 The:0.008770529929108477 on:0.008005648830264793 Mr.:0.006649888115298899 tho:0.005126697778619019 that:0.005048964272920104 :0.21422535838519827 +to:0.12022893700269083 and:0.09020394424291768 the:0.08587503820055309 of:0.06450042443224316 in:0.0310058468700829 a:0.017742048521183405 :0.015548046036689871 not:0.01491307651316237 that:0.014112408707955496 for:0.013734482372212283 I:0.013065769926808477 will:0.012848502316304782 at:0.012837991177321897 In:0.012628718855091186 by:0.012491091048660757 be:0.011425930130217754 is:0.0113962101007567 he:0.011342727513475473 or:0.01112522537451577 :0.4219735806571561 +and:0.29143172193603956 And:0.10365959555601444 not:0.07467971023025205 as:0.055694525393238416 that:0.02230567893315419 but:0.016972798537070753 is:0.016959455110822103 do:0.012666734679941427 it:0.012570894525665042 or:0.012566782694861568 ;:0.01224886006086312 was:0.012162166648435776 to:0.011319883683376592 are:0.01020214136150369 will:0.009007207643922292 which:0.00800737454853983 him,:0.007531524304668934 be:0.0068253948822939664 him:0.006434644468593987 :0.2957529048007423 +and:0.052263813722489484 able:0.04406775732678235 inclined:0.04232933933590315 began:0.04230169910148018 reason:0.04203626925106677 enough:0.038972361713067546 him:0.038630078303024826 me:0.03741263554795473 as:0.03400858070165013 is:0.033040287320874405 seem:0.03218765078668341 seemed:0.028940032352216944 you:0.025710148172461984 them:0.02536103845744279 not:0.02332815038986914 was:0.021505660659605005 want:0.02041093464419976 right:0.020394975351723247 necessary:0.02020826622900453 :0.3758903206324996 +the:0.14722901992672954 of:0.1058677411451458 and:0.08501864084551052 a:0.08115936687785892 to:0.06394363391132776 in:0.025576850747811367 for:0.018892514700749603 with:0.018453416874165077 The:0.015713844680089302 by:0.014723434979559913 his:0.013243218880506908 an:0.012852776593150178 .:0.01239775239870851 at:0.012321196100399842 tho:0.010265166228549437 that:0.009793047976062116 or:0.009498867538295944 their:0.009493971433821321 is:0.00824051346574615 :0.32431502469581175 +of:0.22150186679714148 in:0.18189906163715597 to:0.11308851514861441 and:0.07328961207269502 by:0.05661243411613271 from:0.05185271600767409 In:0.050951498955015266 at:0.01643934875804974 for:0.015871685074839454 with:0.015769169840844116 that:0.015136963305698489 the:0.009941806519432371 between:0.008170135503799403 as:0.007575883279076665 upon:0.007503705160462706 :0.0073612832338210785 thence:0.006632497997470469 or:0.006387767369829036 on:0.005589325008241195 :0.1274247242140063 +it:0.12429869106039677 that:0.09678435709713536 there:0.08529435051722721 which:0.07210712961479024 they:0.06332936993729434 It:0.049888415821910975 he:0.04168017422385555 and:0.037383975030706444 There:0.02594395923751264 what:0.025582991309687896 one:0.023942067265387425 as:0.023005743009060758 you:0.02276527986613408 I:0.018301996633386393 this:0.018229091238523065 who:0.017226422865103896 we:0.01718954736209074 man:0.016876133115589217 nothing:0.01226960605280007 :0.20690069874140696 +the:0.33725752508941625 his:0.10813656276852389 a:0.069981670445648 of:0.0655629233618108 their:0.037851257777203384 her:0.02985038020094786 and:0.029086144149285592 our:0.019083079295153925 my:0.018254303928875337 tho:0.01727319298690043 The:0.016731364935907826 other:0.01592905635661227 or:0.01573716154244721 new:0.013207626868046099 old:0.01303585190408642 in:0.01285883935333028 its:0.009998217509985698 each:0.009583763902359816 these:0.008965442987602433 :0.15061563463585645 +to:0.17072548615075986 of:0.14919482229103523 in:0.11704268358133231 on:0.11167500230516188 at:0.06141594433887412 for:0.04796538364061384 from:0.039025232055872106 with:0.037211207600517736 and:0.028649443559434617 In:0.027107912135309043 that:0.024999365071509794 upon:0.021729964796495953 by:0.015997636178636233 under:0.01148211310152044 into:0.009064818907115434 against:0.007882322557892696 the:0.006400123535184368 On:0.006390770180934167 along:0.005033938266073133 :0.10000582974572705 +three:0.12913282036460016 two:0.1102998868611297 many:0.09233215701859099 four:0.07371525653504621 five:0.06816960487016761 several:0.05070270740844606 few:0.05069573371489784 ten:0.04760418259647772 six:0.040436325262005045 twenty:0.040161276729260634 of:0.03663934268286725 for:0.026446675226313613 seven:0.024405234439752135 eight:0.022012613762420568 thirty:0.021369854375076776 some:0.0201893814178872 hundred:0.01899730059911173 forty:0.01532654860564416 fourteen:0.015085073947087933 :0.09527802358321664 +and:0.07241682789255015 is:0.047445269907725005 as:0.03621086551165106 time:0.03361456736614446 them:0.032072814413864274 him:0.03124216147132254 able:0.027009704242174217 right:0.023317824133225643 was:0.022843559248397975 it:0.022477036315097662 made:0.020771729178262414 necessary:0.019343433280623667 are:0.01879532759441115 order:0.018525041642359547 not:0.017828852713943386 enough:0.017164426336086423 or:0.01635512635409962 only:0.01554884475331332 power:0.01537391078479669 :0.49064267685995083 +and:0.05917734571267282 closing:0.04405297983259551 was:0.026323119710997635 valued:0.021005792503071843 held:0.01922887441606307 sold:0.018225285914023 2:0.017782437938973866 is:0.017552850459549643 arrived:0.01662711812741857 be:0.01645048243064216 are:0.016339673120917095 White:0.01533836240735085 not:0.015154252504664439 as:0.012706467917481812 that:0.012063629264509927 estimated:0.011864260728812118 Dated:0.0116063700277585 or:0.011444173640079769 made:0.010438189210536826 :0.6256183341318805 +he:0.16427988328258758 it:0.07413910369258855 which:0.07317615015314333 who:0.06376913034962643 that:0.060518345968647885 and:0.057426153069258766 He:0.05512537805136375 It:0.05079227281235787 she:0.031048406493855082 one:0.013132521048865899 She:0.012109466051009968 lie:0.01031597597189151 be:0.010228181606175966 as:0.009430867270843652 what:0.009423362079385116 ho:0.009310516647262762 man:0.008543281316429757 there:0.007905473400556987 This:0.007903306753405157 :0.270422223980744 +all:0.07567946205174347 and:0.06110177374179002 of:0.05094745930936387 for:0.04286359042335268 was:0.041221999202283456 at:0.026891641808857815 it:0.0233546946767635 went:0.0225013518921885 is:0.02054536079786023 three:0.020183965238720424 him:0.017451843031273312 them:0.01724963671514777 to:0.016260102168501045 little:0.014338409195689626 ing:0.01393688754387047 or:0.013796156098998483 go:0.013762263123722538 out:0.013111527967322423 were:0.01271173042363884 :0.48109014458891153 +and:0.07715595865270657 the:0.0712763214959337 to:0.056550982802711904 of:0.050485898381221535 in:0.03829127195780908 or:0.031039806855240187 for:0.022251578513476464 that:0.021166781684166545 con-:0.017866085718547305 re-:0.0166654029960356 I:0.015099680186038179 In:0.013694641097202611 :0.013562125033985463 will:0.012295053352388683 he:0.012282748550097044 dis-:0.011972244120823731 which:0.011402155735138333 in-:0.011220291915777699 is:0.010950845549635636 :0.48377012540106373 +it:0.16601584130993768 It:0.12006207755674775 he:0.08192899707687465 I:0.054956411847141944 and:0.05326552420339905 which:0.038395910929142824 He:0.030438699684324503 she:0.027369845661272443 there:0.01769947811558267 who:0.016951601371072607 that:0.016735207004465326 This:0.01171022484530869 She:0.010456524660101855 but:0.008979187637898687 man:0.006943417009740781 what:0.006722600998601914 1:0.006016303227230951 lie:0.005963787824091635 this:0.005940993347393082 :0.31244736568967096 +and:0.15698474501827708 he:0.10318711483781656 I:0.07605733498144777 which:0.05563612534335607 He:0.04890578331215679 that:0.038670243870229284 who:0.03609035798954014 they:0.03218961213230222 she:0.026787310869807814 then:0.024544734499720628 it:0.02024570971255478 we:0.013742407377580337 but:0.013621788272580551 She:0.012387518751432021 It:0.012156728432845215 This:0.011821792925881872 1:0.011257611530015154 what:0.011137715813504293 They:0.010842422564584685 :0.28273294176436675 +of:0.23402101670041744 for:0.1054628599727464 in:0.09679077362518874 with:0.06727055786110532 to:0.06464105470272336 and:0.05609054007978061 at:0.03984153780524775 all:0.036646782046729574 by:0.034596994337554414 from:0.028422512527102813 that:0.027802599221471633 upon:0.023664583163815263 on:0.016272278909169397 In:0.012729570789366448 made:0.011488145370213665 make:0.01100959455519573 pay:0.010358008925848806 under:0.010282430411652032 have:0.009699538121645092 :0.10190862087302552 +and:0.034768603273323394 is:0.01576708804762381 are:0.013378416971025904 that:0.013364870147801277 :0.00956066419296285 was:0.009495286763688604 of:0.008635685018390453 or:0.007830955942298875 Is:0.0070127121835699925 it:0.006861095912187189 .:0.0064778541549344055 were:0.005527401827579027 on:0.005268349128083246 as:0.0052357902787922 now:0.00447723419671677 up:0.004451673743149302 which:0.004308515658219734 be:0.004253526153634919 :0.004217520009187289 :0.8281067563968307 +and:0.2020809975684256 of:0.15618938355517173 is:0.039529878568175005 so:0.03893325669725781 are:0.03878258834491077 that:0.03262439105241905 for:0.03091252061482508 was:0.028551714780707203 in:0.02656491335691909 but:0.02565031578628951 or:0.020362918100339952 more:0.02015260981188653 the:0.020094412542124497 be:0.01984593104686047 by:0.019625356299680964 been:0.017453129390139713 were:0.014988043036547265 very:0.013235752407393973 most:0.012513579351716562 :0.2209083076882092 +he:0.15113607274757193 who:0.09487384776660364 I:0.08098496478644875 they:0.0612550447193186 and:0.05469589817625362 which:0.05231107903445319 that:0.049396130777160964 she:0.03148432050543668 it:0.029856929101934965 have:0.02611087631668155 He:0.02412658631644612 we:0.019062392240668073 has:0.014075331155679171 1:0.012886324807640187 ho:0.011789181090033877 It:0.010884654572639261 man:0.010662747959959881 They:0.009758961456431804 what:0.008942135832395424 :0.24470652063624232 +the:0.4616826035315727 a:0.11514714626314843 to:0.062300494315159535 of:0.06129636594481957 The:0.03636321981475508 and:0.026026251384086225 tho:0.020631248285808205 its:0.018582651709129358 no:0.016864816142283284 their:0.01646782130318469 by:0.014801406243651581 or:0.012791085364369547 with:0.01244043747372442 be:0.012277381470347452 very:0.011472324412637827 for:0.010469895829161873 such:0.009763884585784758 he:0.00923445101736978 this:0.008942444209791582 :0.061444070699214044 +of:0.13695273013939563 in:0.13316022647179449 to:0.08674644533889501 and:0.08166921579987119 the:0.0711896116749954 a:0.06152542346858196 In:0.03542924418346851 with:0.03533448422021297 for:0.03228470344593608 by:0.030943502741550468 are:0.025974105986677345 without:0.02011846695298956 his:0.019774920456274228 that:0.01915654251842166 be:0.01607100113406905 very:0.01578080465701885 from:0.015619489254217677 their:0.015305985164822927 is:0.014242857895371013 :0.131720238495436 +and:0.11195781263604944 the:0.07646711229094824 or:0.07606027352002823 of:0.07193662846356022 in:0.0528570466365583 about:0.051582948483095026 for:0.04802318871670247 with:0.04402821397205789 are:0.04351657870977531 were:0.039055370634579374 was:0.038776119540471776 be:0.03324040480919797 had:0.026194145726909302 by:0.024781895612934993 but:0.022531922289832654 have:0.02098190901879371 is:0.02094801867639574 last:0.02010239266130447 from:0.017813895575727316 :0.15814412202507758 +the:0.2301300255518258 a:0.15707790279693445 and:0.07071946780424267 most:0.049378398797536055 be:0.039570350693741325 is:0.0391999014389767 are:0.0371784634577283 of:0.02671994122646868 an:0.02469745975639214 to:0.024538797637432948 or:0.023443561412117387 many:0.022533824980758673 his:0.021966856761483907 very:0.020541343814491103 The:0.018830497424064473 more:0.01672056658716134 other:0.016123238918093953 tho:0.015585125666431512 was:0.015427230082929975 :0.12861704519118858 +of:0.21416304001851336 and:0.08774820127368982 in:0.08698482143881138 to:0.08120972968497575 on:0.06420313262700568 that:0.052244852549335606 for:0.05088179712265062 at:0.047283184441352245 from:0.03453026226962564 all:0.027812414436141044 with:0.027078871241258427 In:0.023679380938312483 by:0.02006092403036922 as:0.014624124188017241 is:0.014480880523002754 but:0.011342639839860275 was:0.011031428153302157 when:0.009959945364520498 upon:0.009641036642285647 :0.11003933321697014 +the:0.4071374189315913 and:0.06449181461132415 of:0.02892866618288876 in:0.028670005984162618 The:0.02603617389223924 tho:0.024993820467459137 a:0.023579040051412606 to:0.01755553213771617 on:0.014626070241060114 by:0.013447843485786471 or:0.012794166593089693 tbe:0.012024509152999897 :0.010353482361299817 that:0.009291482237329618 In:0.007938246807075932 from:0.007526799010378873 other:0.007469196869028889 all:0.006409533041696086 for:0.00626887758057738 :0.26945732036088327 +and:0.05950938989837428 was:0.0532571126020662 be:0.052599838755906486 of:0.051421181359796224 to:0.05024550099255353 the:0.04946620832849482 a:0.03521751339690697 been:0.024973060072036077 were:0.024439810232640698 is:0.023647197209665488 are:0.01981240021295587 he:0.01636394529226805 Mr.:0.014705256753390319 his:0.014702828383561985 for:0.014090147231377562 their:0.012650737781608344 it:0.011647972354304958 in:0.011262760811146496 not:0.01076460915795788 :0.44822252917298777 +and:0.10119789434721585 the:0.08750650826269914 of:0.06965652901268303 to:0.05397231607343732 be:0.036865526523342323 was:0.035053854231348616 in:0.031304212937328754 is:0.026000336185972757 are:0.0211137244270955 were:0.018396838756921496 con-:0.017174874810272 been:0.01699376096117119 for:0.016754654309511306 com-:0.014528737373553537 much:0.013539613194676265 their:0.013377304520975603 he:0.012755370579971337 or:0.012523440083369532 not:0.012362122862064477 :0.38792238054639 +and:0.09500881008555331 well:0.06206658951236029 regarded:0.036935028935535894 him:0.0314142794209011 known:0.031077052056542338 soon:0.02700320061470986 it:0.02623085774473942 is:0.02438162343435629 but:0.023839390993020203 used:0.021720637341540703 far:0.02045890976727103 just:0.020384524333195254 much:0.01971667289504282 such:0.019521581813054578 them:0.016090407278819097 was:0.015694381145043425 so:0.015081118446204548 act:0.014529263549522683 that:0.014487886332689187 :0.463357784299898 +men:0.027153229885699456 city:0.019514466753777868 hundred:0.013341124787258274 William:0.011740978490909567 James:0.011665361942637112 Mayor:0.01040693657367084 Robert:0.00947549675962407 land:0.009037689406627405 street:0.00880522504034011 John:0.008704707635179337 in:0.008189292712205748 county:0.007863531665831992 Mr.:0.007722298974056478 1:0.007654856385213303 State:0.0075742396345561454 wife:0.0075659197205529775 women:0.007359307432342431 man:0.007184608363357996 friends:0.007042541717344792 :0.800998186118814 +in:0.23096844255356264 of:0.13666775111566654 In:0.07825906616429582 for:0.05752129521152097 to:0.04679721313259694 and:0.0446926598979198 from:0.03629280012252268 with:0.03283715961705995 on:0.028261141395130064 all:0.020644305610424938 at:0.017648514760848617 :0.013210233884948205 by:0.01275703367732697 that:0.011867401964217544 upon:0.010304377109033242 or:0.010021823441795164 through:0.00911619417387407 give:0.008171237821936645 make:0.007368763623319379 :0.18559258472199983 +in:0.2563320158709255 of:0.19306857329274318 that:0.08912101044368823 by:0.053206678678858046 and:0.04965416470824218 In:0.03839660676152129 from:0.024972226033971923 to:0.023441665476287704 for:0.021704308538551726 with:0.016340202501918474 on:0.014678905084665907 at:0.011449740683985167 upon:0.008472828984336635 against:0.006749221933294892 the:0.006693524088428706 That:0.005804157382093492 as:0.005673697555827893 which:0.004631760608903107 iu:0.004609925050802882 :0.16399878632095305 +United:0.6929945884963474 the:0.043833531749603145 other:0.026726636256719023 Southern:0.018830900153746857 per:0.014070115476284588 this:0.011171115215064158 a:0.010941758261154007 of:0.010371262997237493 and:0.006669295065273243 Uuited:0.005742198923872537 that:0.0056700497852167665 his:0.005477846543221298 American:0.005212815295423469 two:0.0051514401160710046 one:0.004754043747939778 I'nited:0.004732261195147851 many:0.004629061744489668 our:0.004228775824344267 each:0.00396325085498528 :0.11382905229785815 +the:0.6189093842530017 The:0.05957211993372198 tho:0.0336506118926736 and:0.02558003470892271 of:0.02200473101993053 other:0.018009838065529308 all:0.017537085650508277 a:0.017001967449658966 tbe:0.01403857572342743 by:0.01270929885958842 in:0.012228174040323763 two:0.010899055540537977 as:0.010573140297334757 on:0.00955438232127768 or:0.00826040446795745 with:0.0050829726046158225 three:0.004738572570008658 various:0.004399829501549522 said:0.0042632472445399295 :0.08998657385489148 +the:0.3407252548949725 of:0.20641513980168513 for:0.044961731258680845 a:0.042604740297441095 The:0.03613139229858609 any:0.03587137490145888 and:0.033261354401885976 by:0.02887526877681942 every:0.023833321506938895 with:0.021682908776048688 tho:0.020680816680985807 an:0.020595004117795003 their:0.017399481149265816 in:0.01602092990017078 our:0.015730780469243633 each:0.01530195656624838 this:0.013528500149304528 to:0.011317139065432549 no:0.011257635238201485 :0.042805269748834515 +of:0.21858756099337232 in:0.09594321771404966 that:0.09364064779971547 to:0.086706481854033 and:0.057066749100428665 for:0.044214660891293 with:0.04245218442591611 by:0.03417037281627895 at:0.033363618995842705 any:0.032251622557357466 on:0.026559552126286877 from:0.02527643653213938 under:0.024543738925162935 all:0.021404284325565806 In:0.019809267707445934 upon:0.018138838628695093 make:0.017174306348041336 or:0.015882179813569153 as:0.012724194100894232 :0.07909008434391192 +the:0.4279801001995972 The:0.10602787319523016 of:0.06172076487000737 this:0.0412317887108093 federal:0.02913103857913671 that:0.023375588837409915 our:0.022358838357462937 general:0.02104315949795037 tho:0.019487619945393084 new:0.01773504812552144 States:0.015166363403517498 Federal:0.014076215322752807 State:0.014019356571737345 Republican:0.01321750359444615 Canadian:0.011758974548717785 local:0.011548865349070236 and:0.010808226686119107 British:0.01053219339387847 his:0.009474633940058076 :0.11830584687118409 +the:0.4574099427778815 an:0.1202594825570121 this:0.06312613313600744 The:0.05469872020977609 tho:0.03336940915564291 a:0.01867655767330227 other:0.017364550251002336 This:0.0165448336131152 tbe:0.015199059783060465 our:0.014336675223950658 and:0.011622229904030664 one:0.010894209239961662 said:0.010266265324640795 any:0.00973677066468902 his:0.00935674947709697 county:0.008186467501475767 that:0.007373458153986673 their:0.0073493038971916 general:0.007068022747741929 :0.10616115870843394 +him:0.02346330166566789 ;:0.013993117901978207 man:0.012063973158208985 him,:0.009909121800163739 up:0.009718454247617242 and:0.009483607636828621 himself:0.008708172500287844 in:0.008383704791678692 man,:0.0074619430074121034 it:0.006727629907354967 he:0.006463016531639386 .:0.00621915130927209 time:0.0060721975060543465 one:0.005851681181497556 to:0.00584951612224459 out:0.0057405518294329876 it,:0.0055790022104404615 on:0.005073440824683246 hundred:0.004882599142558921 :0.8373558167249782 +the:0.621932809345658 The:0.0675464195883079 a:0.04924022175837373 rapid:0.03684165563543412 tho:0.03515404522983094 great:0.020175346138094585 and:0.017732302823357683 of:0.012114373832337745 tbe:0.011722760398104977 no:0.00966250712720189 large:0.00931769945856219 their:0.00871008000568184 other:0.008034561544270357 any:0.007744101878691656 good:0.006499962595110419 its:0.006487598385972464 luxuriant:0.006368606327571709 an:0.005566978873924128 this:0.0053046951371681405 :0.05284327391634555 +a:0.5065575508139067 of:0.1515088955009899 in:0.07177476727238616 the:0.049747525427566414 with:0.02828158153942164 very:0.023821208745695203 for:0.02228112606378885 no:0.017813174129692185 In:0.013387748713717115 A:0.011620075564980587 and:0.0111764512918758 make:0.010944304735883715 by:0.01057765617792843 some:0.01036286669123358 any:0.008842755395193759 is:0.006577004555819422 to:0.0061892489863938785 their:0.005223647934671765 The:0.004864461897508267 :0.02744794856134653 +to:0.09413126172693605 and:0.08161343981716504 the:0.06248336164999656 of:0.059161508905093654 was:0.029733063816477973 in:0.024195668372406515 be:0.02395558355071033 is:0.023748925873187565 a:0.021231811852397846 at:0.017161012587073324 he:0.01584053953758807 re-:0.01581927880004586 that:0.015715228741807412 con-:0.015279166675890667 or:0.014293179837722327 for:0.01292589137264433 I:0.01217104013984409 his:0.012061533047715295 are:0.012021913864289087 :0.435456589831008 +of:0.23300106829603176 in:0.11830212011894338 to:0.08441682694389796 and:0.08398377693465672 for:0.05996973204254658 on:0.05435184920254667 with:0.05189625305552729 from:0.036728700035640556 at:0.03285524917930499 that:0.027586468725874877 by:0.027046093558942018 In:0.023235986368949992 upon:0.02199011436843363 all:0.01488253456156447 or:0.011810571838110262 as:0.01043051855485273 but:0.009329829218533899 made:0.008690631490865184 during:0.008666190029645337 :0.07982548547513167 +the:0.28568584010058934 a:0.12355289947845406 and:0.1128441812565236 of:0.05939623356293314 The:0.042118945562814175 in:0.04075730841460206 with:0.03964311191821098 to:0.03411545930000418 is:0.023147119397951537 tho:0.018607939207108282 are:0.016637466875111594 A:0.01295872136799807 for:0.012814288969350201 no:0.012509023750873177 that:0.012162851900431537 was:0.011790054772744722 In:0.011381818060410689 by:0.011314658789758984 be:0.011166938955011623 :0.10639513835911807 +the:0.6670218666793156 and:0.05619211150446277 tho:0.044072897938383794 a:0.03559212422984171 The:0.03272613174002379 tbe:0.013160086567414683 an:0.009290673685146994 that:0.00854274199043795 in:0.008131066627872078 by:0.007093462836908713 this:0.006673380137462183 or:0.006462417948801432 of:0.006360965331368994 first:0.0057088398863957175 other:0.005480122684917489 his:0.003615770505287331 as:0.0036091646079415163 all:0.0033265481498653345 whole:0.003146543173417202 :0.07279308377473476 +and:0.1799355027704512 that:0.08951306742728686 but:0.049497200199837256 But:0.023257996421249462 day:0.0215904268322198 time:0.02130821434469378 come:0.013047331781806079 ago,:0.011752895039949956 And:0.009969606554810795 morning:0.009940935101325443 him:0.009345491035401656 out:0.009044114036845815 year:0.008730220616411054 or:0.008699328568780891 said:0.00862641639844339 up:0.008420633733644595 me:0.008004214135037746 was:0.007972194673730773 her:0.007683774564340535 :0.49266043576373286 +out:0.04421101620589941 that:0.026993563035073945 name:0.024042197360175863 people:0.02312247767208382 favor:0.01974812253719945 time:0.019377996253025945 and:0.01913714207209878 case:0.018932594685844732 tion:0.018106590322029725 office:0.01805160317933161 part:0.01742001452411671 one:0.0172329782803724 charge:0.01628299933802353 number:0.015477682907371719 state:0.0142672653223128 purpose:0.013760029486309971 account:0.01337535871657007 use:0.013080010937761373 question:0.012600673315200676 :0.6337796838491975 +one:0.1028303141280697 part:0.05963429477052991 out:0.04766456937681193 some:0.031418679026461914 members:0.030764490253327767 side:0.029940657362655835 portion:0.022063658796890564 office:0.020457735219956013 member:0.019726706386316174 end:0.019666887540649894 tion:0.018667441728710307 parts:0.016814747270460957 people:0.014112771422418794 all:0.014072739582212475 any:0.013183573287639892 One:0.013083578354183906 that:0.013024335602903442 account:0.012482348155001894 many:0.012077825070275192 :0.48731264666452345 +of:0.5185145276561681 among:0.05984583968352151 for:0.0532827384526151 to:0.03791512930552857 with:0.03657289266207148 by:0.034473462028550755 Among:0.017456525779475398 upon:0.015717978539963706 in:0.013699662139791681 against:0.013581385073598611 from:0.011003023460768032 and:0.010338804089913396 on:0.009772032037050099 before:0.009522237728628887 that:0.009391605730728671 see:0.009282539853260307 ot:0.007194838888635955 between:0.005707860440330779 ol:0.005544229307989929 :0.120182687141409 +:0.11421909612027416 it.:0.023667955768568238 them.:0.019856594812938052 time.:0.015512404294612828 .:0.011785764502029736 country.:0.011757305124728314 him.:0.01173659170271466 day.:0.011533648958153316 year.:0.01029013744931177 work.:0.008774107269317252 years.:0.00840249900548632 city.:0.007919506344175884 of:0.007667990703457858 place.:0.007599724434653167 people.:0.006680829013342001 tion.:0.006262740024535808 men.:0.006040690257381388 world.:0.005966704935577371 way.:0.005809983980383086 :0.6975157252983588 +the:0.22355942352082825 this:0.0755670083401083 his:0.0724708567358518 in:0.049276323790755035 of:0.046393917619751264 that:0.04202517268950344 same:0.04100039912563251 my:0.03533351540975593 their:0.033309801778024645 and:0.03212880775941973 its:0.025161121856646 a:0.0217284109725873 tho:0.015383601856334007 on:0.014095188039030393 In:0.013128393017447578 one:0.011994885722721326 The:0.01066533881504237 or:0.010204889293023591 your:0.009952894873858907 :0.21562004878367766 +and:0.09500881008555331 well:0.06206658951236029 regarded:0.036935028935535894 him:0.0314142794209011 known:0.031077052056542338 soon:0.02700320061470986 it:0.02623085774473942 is:0.02438162343435629 but:0.023839390993020203 used:0.021720637341540703 far:0.02045890976727103 just:0.020384524333195254 much:0.01971667289504282 such:0.019521581813054578 them:0.016090407278819097 was:0.015694381145043425 so:0.015081118446204548 act:0.014529263549522683 that:0.014487886332689187 :0.463357784299898 +;:0.01458927046758731 it,:0.007973265891266864 him:0.007834970369143835 one:0.007240974664279108 in:0.006989508095588829 and:0.006417396987522371 ,:0.006059091806132192 it:0.006014614548599763 up:0.005812344146302806 out:0.005395853159197619 them,:0.005290532062834904 him,:0.004938420268273817 city:0.004793760033506698 :0.004646491011450349 man:0.004641061555670736 country:0.0046164671969483135 feet:0.0044416267197611185 time,:0.004376787347733258 time:0.004358244018157902 :0.8825693196500423 +of:0.13610936895034267 and:0.13074452510176487 in:0.10182993247562762 to:0.07424460454682436 the:0.04574033123469669 for:0.04050728108239795 at:0.03842426533244359 street:0.03728948884695333 or:0.033402874799113795 by:0.021534127653978687 from:0.018876473911171462 In:0.018182873128976245 was:0.01630045357725351 that:0.012546614962686794 is:0.009569767237085334 with:0.009367527618318381 only:0.009201272436284118 about:0.009178183636399818 over:0.009030021363705622 :0.2269200121039751 +of:0.2231335010426776 to:0.14695673677001986 in:0.08465077919388438 on:0.0735170638328584 and:0.060530259935125084 at:0.04025460976225139 from:0.03703607178170049 with:0.03630558640936816 by:0.03483357746476254 for:0.034676696239495985 that:0.03280445110379678 upon:0.025540545162140507 In:0.020795731987913492 as:0.015527548179617911 all:0.014372253830654791 is:0.013311041464752755 was:0.012847832548822782 during:0.010299815228165152 after:0.009066511767858406 :0.07253938629413353 +on:0.36937909493171756 On:0.11733040121451827 next:0.050922039661802254 first:0.04030956545479414 of:0.036539003842698016 last:0.032825467284709725 and:0.03237793187287914 until:0.022888192270619754 after:0.01937876884317055 one:0.017145456137455765 day:0.016461427089555874 the:0.016321280770138294 to:0.015097936579961644 from:0.014827178086620143 in:0.014548790403770651 second:0.012249282818945237 as:0.01223550326269296 that:0.011888701061752485 said:0.011074910233259539 :0.13519906817893804 +the:0.6160617508453786 The:0.06275253642261527 a:0.0491987648919163 tho:0.037441378885822635 and:0.035805649084257804 his:0.017556527516611107 tbe:0.012220386818319834 in:0.010352657709177348 great:0.010147323638470639 their:0.009651740307456103 or:0.009249514334939117 our:0.007992903064308944 other:0.0076940624372377414 an:0.00765546137101142 two:0.00673546276661721 of:0.006496077151970711 by:0.005620229639432376 its:0.005276782225662828 A:0.005269952541405271 :0.0758208383473887 +the:0.12221641016191408 of:0.07791325836513456 and:0.06550873635081135 that:0.03922600334683664 a:0.032693428406290866 to:0.030615079189955353 The:0.03018077939944665 which:0.02796993412975707 in:0.02695854216885878 he:0.019165267372850032 Mr.:0.01636178988931537 his:0.015350329196833292 for:0.01390720146877745 their:0.013837514348341094 :0.013006567102386492 said:0.012444932832827878 as:0.012384182494663503 I:0.011591132335265177 pro-:0.011570018328002828 :0.4060988931117316 +the:0.5750604292734832 of:0.03853652207179924 tho:0.038338128528723384 this:0.032793089397903645 an:0.029361421809941342 and:0.02836261472307131 a:0.02086893712811235 that:0.020659542493382903 in:0.018492127548507962 any:0.016444090985663306 such:0.01617117619153111 their:0.015282436105193713 said:0.014939905252636597 on:0.01453893775165653 no:0.013394529419187144 our:0.012542978774843689 The:0.01239945551322335 tbe:0.012288358868033986 his:0.012108711760356343 :0.05641660640274891 +sum:0.03352282876311118 number:0.028116684882597106 line:0.019995206059833036 city:0.01946514558931857 out:0.019275318828420953 day:0.01666865340772654 county:0.014872697538657208 amount:0.013254184849875051 Board:0.01252325449624941 town:0.012449555905674143 side:0.011663975251122375 part:0.011517157473718155 County:0.011460540331966697 state:0.011087331502382173 City:0.010878919191854432 purpose:0.01081028255427907 and:0.010297866493795984 way:0.009848747943663767 name:0.009522170936943183 :0.711769477998811 +of:0.21984055256088514 in:0.16457438258237977 to:0.10085637552246786 by:0.05582775506572835 and:0.04031752776156194 that:0.03980422198904458 with:0.038800148388740095 under:0.031191357345166322 for:0.030969929815738945 In:0.02981072418750061 on:0.026816670503987537 as:0.025872571800750394 from:0.02473752739138095 at:0.01933445788063284 all:0.01794790608680489 is:0.015657013485271445 upon:0.015368503459013846 when:0.01228138488174757 was:0.012212740715110297 :0.07677824857608664 +the:0.13636800132362817 of:0.11801361359851327 and:0.057393797343873836 to:0.04270595105988566 on:0.03372545456530767 a:0.03291987466759636 in:0.03285036791440505 by:0.031449989876867056 from:0.017923376011398012 that:0.017743277414832077 for:0.017272335444201262 was:0.012955292920032828 as:0.012857159788863974 :0.012387435270199143 with:0.012227472197197166 be:0.010869685711177251 his:0.009630228692278165 is:0.009550748707452579 In:0.009378766457326514 :0.37077717103496394 +of:0.2346089833013663 to:0.10679593958410456 in:0.08770926287071919 with:0.06213471767901303 by:0.06206099668461442 and:0.049782716592049886 for:0.04316277157531314 that:0.04225517670976884 from:0.03385508781794999 on:0.026046591090041066 as:0.02509121120461566 is:0.024220952023507446 In:0.019443966488626122 at:0.01901533643893481 upon:0.017922093255085796 all:0.016400892937699568 was:0.013862570285867473 have:0.01349607335926713 under:0.012244668568502615 :0.08888999153295297 +the:0.3129148938754537 of:0.06323918527371315 a:0.05779277340010933 The:0.046420820278689476 and:0.03992271693291524 their:0.038935514180855633 these:0.026075754800220934 other:0.02428533849431775 such:0.02171173766168849 an:0.02103045054862818 tho:0.020176277816170377 to:0.019380965221350934 two:0.016750029640565777 by:0.014287993421079784 many:0.013637043931221813 all:0.013131569300444677 one:0.01271493900788787 as:0.012566335704130478 our:0.011373577120176639 :0.21265208339037978 +of:0.14247006942476895 in:0.12407938363528305 to:0.1045630465768316 and:0.06511326073651327 as:0.05649004804925407 with:0.04670854271439065 for:0.04495523849984431 is:0.03993001855534314 by:0.034429479582765606 was:0.03109301879004923 such:0.02734305135494227 on:0.026275645879047148 In:0.02440007040219733 at:0.022815956424840536 that:0.021518754296235003 made:0.017030600014463014 from:0.01667843748210905 be:0.015954999714708037 into:0.015379156979389554 :0.12177122088702415 +the:0.5195482341961348 a:0.16105900575383456 The:0.05637459788278064 tho:0.0426792684305382 tbe:0.022519570884624203 an:0.02217873559903593 this:0.017801583050848557 any:0.014455824831471939 every:0.013060242149540732 no:0.012347768251125255 whole:0.01098201269613254 great:0.01044657608841059 general:0.009393265221302877 one:0.00939129514811034 large:0.007082147196735989 first:0.007010313581782984 and:0.006988025919061458 certain:0.006849330578271851 said:0.00633866799860562 :0.04249353454165088 +;:0.011864931245913191 it,:0.010030187937198126 years,:0.009280800195973278 here:0.006764648433834412 them,:0.0066865644023765824 him:0.00660242724692105 it:0.0064913008516520035 time,:0.006463410406505873 :0.006401947103790347 ,:0.006142447310865259 up:0.0058606946785731895 country,:0.005521013818704755 :0.005385913755312117 man:0.005224962794489054 country:0.005166033603391283 year,:0.005081852063995821 time:0.00494890990549203 him,:0.004925011056010029 county,:0.004812233578175687 :0.8753447096108259 +a:0.2464462674081042 said:0.16522172819450584 by:0.15542319375461053 the:0.12798003873984895 certain:0.06253734016769792 in:0.022656575454458636 and:0.018433590786176082 of:0.018002503031928734 first:0.011502364760945398 A:0.010830948131232912 any:0.009730800714200906 for:0.00902948157783688 The:0.00887786481543379 mortgage:0.0070881664010147335 with:0.005952864828011291 In:0.0057984961599132755 prior:0.0057658434747042756 trust:0.005734594376542185 this:0.005627215361753734 :0.09636012186107973 +No.:0.09597461176417597 and:0.05426839543081285 at:0.03140633893228336 as:0.02544545001767834 that:0.023367102652805692 :0.016290497303169817 an:0.01607320764372249 to:0.015652484379935494 about:0.013600735646964984 No:0.013072024272204209 of:0.013045640824807447 than:0.012726355739856681 1:0.011658882249900292 .:0.01156442234216985 but:0.010950599405407256 lots:0.010630784479363076 the:0.010167074050543177 after:0.009414101850378052 I:0.008941716034919438 :0.5947495749789016 +the:0.34126100050805125 of:0.13048237443517086 a:0.08669913135263994 his:0.035612219671210275 and:0.025910579460449164 The:0.023135235561617423 text:0.02202505630171726 on:0.020282181424151485 said:0.019474705131690986 this:0.01908174011500969 tho:0.01778640480811691 other:0.017550895567408433 that:0.01630703134485167 in:0.015095828133182934 statute:0.012197638961445462 all:0.008248517128816064 my:0.00821439500120642 last:0.007980351688800423 tbe:0.007350402681876597 :0.16430431072258675 +and:0.1325361381687731 do:0.07598771134370601 was:0.04173571272202122 And:0.03438828385744118 is:0.032768709899767566 not:0.024187375496914028 be:0.022181939871527064 or:0.019162012089790632 but:0.017755573453579476 as:0.016787689276775004 of:0.016457953695462737 that:0.016448657698680945 been:0.01468029006897652 did:0.014644736143920024 doing:0.014445380431078094 are:0.014247353614104402 it:0.013332803462032616 were:0.012472940072886116 to:0.012072690189851487 :0.4527060484427118 +they:0.1399276098151314 there:0.1200513666698528 There:0.07634245417893 we:0.06679902361996917 who:0.05780208320608035 which:0.050867825887719015 that:0.039849130078537465 They:0.037378430825906916 and:0.03321959251162796 We:0.02698206168523194 you:0.026047649274635414 as:0.01391233481548841 people:0.011490586220463304 it:0.010069653446233175 men:0.009445881782716289 but:0.008085463773691374 You:0.007123354242891403 these:0.007066724042343654 them:0.005964681012254054 :0.2505740929102959 +and:0.17246332736222206 was:0.08620754941489603 is:0.06751310172802036 do:0.06677822592141479 or:0.05396759866321951 not:0.04563780639331699 be:0.034940260310356915 are:0.032380260190715084 were:0.02452791909335102 but:0.02158483867532903 of:0.021555658234208932 that:0.020436148582955987 to:0.01961865236123128 been:0.019359482509604252 doing:0.017119559325633808 for:0.01617036777628326 did:0.01565356043457457 And:0.01525050496110559 in:0.013284830106720488 :0.23455034795484006 +I:0.3571220214890463 we:0.20908371389208386 We:0.060709575860872736 to:0.055553487783094276 will:0.045111250485206235 you:0.037993750059129285 they:0.036984369536021695 can:0.028491631433306255 not:0.027431830036623004 would:0.024148828132625515 could:0.017797201658564243 1:0.017123704844899914 and:0.01562511050426328 may:0.00957606152232761 "I:0.008222127776382263 should:0.005428696736169782 wo:0.005372094403238674 cannot:0.005273025593091504 They:0.005086591610975151 :0.026864926642078422 +of:0.26321563335621156 in:0.1253392566061476 to:0.1050836835572217 and:0.07593601253762784 that:0.0542967291555221 for:0.041244337783078205 with:0.041160908408409 from:0.03265701102829887 by:0.025875812020168358 as:0.025501913352893268 In:0.020031834154147707 at:0.01986565283298894 have:0.01743998798342009 or:0.01276642437173963 on:0.011774353879875802 all:0.010802141711220944 had:0.010789421694401643 upon:0.01051301610857578 which:0.010300527732565682 :0.08440534172548532 +a:0.35319315605821405 the:0.2618202948494311 his:0.09663942378720025 their:0.03221382979792934 The:0.029968647596705797 of:0.024635870579625473 my:0.019897993154620153 tho:0.01606250068622624 its:0.013714651229608249 and:0.013633402405555876 our:0.0133658035615928 such:0.01334985140076464 A:0.011768042181559385 this:0.011713541004897469 more:0.01153993827398239 her:0.01039953254025184 your:0.00847919634376639 any:0.008279382558167448 no:0.008082838500532057 :0.040242103489369054 +and:0.08995317707915026 to:0.06844710404109794 of:0.04605142056172993 the:0.04074574508561307 which:0.02479116931334353 that:0.023764822140213245 re-:0.020841117231308055 in:0.020803825395358622 for:0.020278423301550053 :0.018417753428486977 not:0.016860793136637672 con-:0.016444405871234195 is:0.014386481772210856 or:0.014080680914153714 be-:0.01352268143271276 I:0.01317002660943805 was:0.011429878269381662 dis-:0.011196807025842847 he:0.01113106290024311 :0.5026826244902934 +of:0.13564258634627313 by:0.08722375620928537 that:0.07399407428713194 and:0.06057993320821868 to:0.041053000506200484 :0.02978062034406725 said:0.018120339321264715 which:0.016529042380819425 with:0.01454107332771741 Rev.:0.014254118790286712 from:0.012708852240896587 for:0.011636754163582796 when:0.0106255387907526 in:0.010456361850420304 if:0.010434613506061799 If:0.010180239286101466 as:0.00889302003382948 at:0.008488437354330738 but:0.007767040780630649 :0.41609059727212844 +sum:0.20107589490784927 rate:0.09640284855704429 number:0.05100754634436457 one:0.03547928940125027 period:0.0332542300594336 depth:0.027600393029223638 hundreds:0.018528286886695448 amount:0.018413457813143005 payment:0.017846624428003038 some:0.016053424261924045 and:0.01604191892443838 half:0.014931016937325712 instead:0.014115320655447522 out:0.013881266442674896 thousands:0.011872019740186104 expiration:0.011511256881044313 distance:0.011430001034787921 hour:0.010642269248128744 line:0.010538397353259739 :0.3683745370937755 +that:0.16832451653748762 and:0.16317551195275604 but:0.09202228048090219 as:0.06626898981545905 which:0.05056182452516285 if:0.034268175887251145 when:0.0327999336955599 where:0.02391654490512962 But:0.021638226096886436 because:0.020516735853829505 of:0.017875962661562897 And:0.017367123587138943 for:0.01715484095146282 If:0.016077584172624653 what:0.011042818726600803 though:0.010176208114312196 until:0.009969674033922531 while:0.008769541776912644 think:0.008148981878890557 :0.20892452434614764 +to:0.0790229023403277 and:0.06368933224254673 of:0.053496468130661154 the:0.050377031335121544 be:0.03847271258676145 was:0.038442602431489725 for:0.03347407970357355 is:0.031535016296651106 I:0.02745010425565338 :0.022214117101390814 in:0.021889660763818163 he:0.021513592690282236 will:0.01951709760384385 or:0.018632014649173013 at:0.01849179475062938 a:0.016146716373361337 1:0.014791741736570229 his:0.013381301875792602 be-:0.013232302790221962 :0.40322941034213006 +of:0.2889323594739487 to:0.11785424932169057 that:0.08191464828662498 in:0.06752642478401247 and:0.05439254039609321 by:0.04960615036788801 on:0.04301796524239749 for:0.03549268090664948 from:0.03154811522813882 with:0.025493990589347242 as:0.023458841576548126 upon:0.022557108408174386 at:0.019352943023937547 all:0.01692742743237928 In:0.015891287388281054 which:0.012921146689138054 over:0.009008648628368546 but:0.007392939508033372 before:0.007358066595480737 :0.06835246615286794 +as:0.08729666357285196 and:0.044797384882321115 up:0.03790656062906142 according:0.035852432497764555 come:0.035515616333150236 came:0.03192565645019488 regard:0.02779756043706061 given:0.022274110736174784 it:0.02185992831534119 addition:0.021383970770278104 back:0.02043567805724001 them:0.02031188397807145 sent:0.019475556923521556 attention:0.01861790608404056 is:0.01805678320840778 went:0.016362715851310793 down:0.016271117950870884 reference:0.015986197381304433 go:0.014654076539506443 :0.4722181994015272 +it:0.3160480571565056 It:0.15365542865035003 there:0.05321371926189626 he:0.04483424156867515 that:0.04203017342711214 which:0.03935135323137856 and:0.031503077568777786 who:0.02521014458682907 He:0.015969178389175928 what:0.01491551983592002 This:0.014898651722332467 this:0.012418663832512824 There:0.011186788865654497 work:0.010472993521666453 she:0.009490198665013185 man:0.008813109994500823 but:0.007525658868699846 case:0.005829799360536521 country:0.005738543643360294 :0.17589469784910255 +the:0.14511647989845677 to:0.13053448552127475 and:0.11188832768626786 a:0.08131230361489444 I:0.04135439675361724 will:0.03763135291892815 1:0.03486776022286022 The:0.029527190452800254 that:0.028509928374228402 this:0.023986517882885913 an:0.019352216324378703 would:0.015286002971431146 we:0.01479318368542494 t:0.01444383664257095 shall:0.012816443556978627 A:0.01252353962002789 or:0.01164568618535878 one:0.011627552640500574 more:0.0111953560564286 :0.21058743899068577 +of:0.2563186533389466 to:0.12111013253304173 on:0.0942171149641191 and:0.062153648475434954 that:0.057629095979434386 at:0.04631977678035366 in:0.04534652492549066 from:0.04240237378662483 by:0.040853309159542994 for:0.036857720209239705 with:0.0350836643239182 upon:0.01585686588232465 as:0.01266036926831753 In:0.010329543029584783 all:0.009925108451667332 or:0.009407248038236901 which:0.009332670653273674 is:0.00918013324964547 over:0.007616727285258688 :0.07639931966554413 +and:0.198562438390674 to:0.17773288124203715 he:0.05918085278191433 who:0.047182184675321766 I:0.038860343661158266 will:0.032336895809222596 be:0.029408830659819973 not:0.02885613994247739 they:0.028366512688337626 which:0.02747212411288039 have:0.019507753686309134 had:0.01861119447303759 was:0.01843942066352025 He:0.016227264467742634 shall:0.014408402105129893 has:0.014302999193113461 it:0.013839501956868032 then:0.01379843314623742 is:0.013204212893953444 :0.18870161345024467 +of:0.28767355066866834 to:0.08775711267569858 in:0.08678131196995101 and:0.05160598694501188 on:0.04646139928102899 by:0.04519522654900943 for:0.044547789071328545 with:0.03396756772609607 that:0.033699232901107726 from:0.03075346596941143 at:0.027039283056790858 In:0.021061449543044047 as:0.017514234937992545 all:0.012543839382496166 upon:0.011844431150487573 is:0.00998972746569266 was:0.008814315973987914 into:0.008557199930727406 through:0.007781895704231326 :0.1254109790972375 +the:0.24385419460707036 a:0.1292379201629284 his:0.12310650898050807 of:0.07172572764281863 my:0.04595083288346253 said:0.03214742378168999 her:0.027305387121567423 to:0.02598199475771647 in:0.025492099888411914 our:0.02351031911196501 their:0.02047439782007618 an:0.019830202196089695 this:0.01959955680274964 and:0.019122116741559378 tho:0.015863657756903512 one:0.014869003900577195 your:0.014621869974334211 own:0.01140430743889852 every:0.010010154543282329 :0.10489232388739052 +of:0.09129790931378902 the:0.07369883040827747 and:0.047842263382354346 in:0.04189055351593407 to:0.04045875475680249 a:0.03542341257202578 be:0.02020462051672066 for:0.01979292654746225 was:0.01760256398103379 at:0.017380150555488715 is:0.014984483003968216 with:0.014047653760730413 by:0.01374644383819499 :0.012670486581795598 In:0.01200961464556976 or:0.011563835749786333 from:0.011391516893522809 are:0.011273104484969465 that:0.010755276030689069 :0.4809655994608848 +the:0.3276604416171491 of:0.1418564046836442 The:0.0627927297569404 and:0.03822067964594389 that:0.033902295893471796 by:0.03224419680004695 to:0.02609905773378242 at:0.017346547531375916 for:0.017282528751779123 a:0.01624951862112525 Vice:0.01607191099842631 with:0.015482831148024281 as:0.014914897858851472 tho:0.014747532312149298 in:0.012711073258052378 :0.01071136152702933 tbe:0.0077121247936645446 this:0.00673764500649692 from:0.006500481330340592 :0.17975574073170583 +to:0.30158951742454065 will:0.13545753918595468 may:0.08400542457107231 would:0.06637899486311347 can:0.05648722401707489 should:0.05378379905165654 not:0.04072485737895061 could:0.03913601497776736 shall:0.03670196064423723 must:0.03330836466184852 it:0.01778455769578049 and:0.013736531088017041 cannot:0.013642984517828886 might:0.012619097061854784 only:0.00796140812576878 there:0.005563137283319248 that:0.005537331610344489 also:0.005161487436069129 never:0.004676926534877691 :0.06474284186992321 +to:0.15289158919170895 and:0.09591203605320338 the:0.04582767917706627 of:0.034816804299893075 had:0.026821431947761435 in:0.025119496862023208 will:0.024303506608406213 he:0.021565246028111308 not:0.020283331404596816 would:0.018771940214755922 it:0.018615373531487203 have:0.018032481215407497 a:0.017381487978471416 I:0.016871700872914924 was:0.014255738725336482 has:0.014193216356895588 It:0.013492602130616744 who:0.013425429015221623 that:0.012342027648198013 :0.3940768807379239 +and:0.04491804315792162 covered:0.04018777062174743 filled:0.03439831602262882 together:0.027274277474498326 charged:0.021185110165574027 it:0.018970003064941 up:0.017480630635068384 him:0.016212955803671315 them:0.014293565819421733 compared:0.013525193832595763 connection:0.011614636799553067 parallel:0.011283394857871554 do:0.011130056469426521 loaded:0.010955317894446719 trimmed:0.010816708291869467 thence:0.01055173438898371 lined:0.010343364261696459 but:0.009666074941737286 troubled:0.009518829589372486 :0.6546740159069743 +of:0.09129790931378902 the:0.07369883040827747 and:0.047842263382354346 in:0.04189055351593407 to:0.04045875475680249 a:0.03542341257202578 be:0.02020462051672066 for:0.01979292654746225 was:0.01760256398103379 at:0.017380150555488715 is:0.014984483003968216 with:0.014047653760730413 by:0.01374644383819499 :0.012670486581795598 In:0.01200961464556976 or:0.011563835749786333 from:0.011391516893522809 are:0.011273104484969465 that:0.010755276030689069 :0.4809655994608848 +and:0.10611852597137347 of:0.09825279922928455 the:0.08883911552054018 a:0.04212824109048294 to:0.03401692085514096 is:0.02827553167356136 was:0.027568974994893514 be:0.025844692584831394 in:0.02557590366152713 with:0.02546163507802685 for:0.024594102972472554 by:0.017319995118096673 or:0.016118431440724425 that:0.015614140176036219 as:0.015328798242710004 are:0.01503594042127729 on:0.010752047834772219 at:0.010672531769926549 :0.010341920717155263 :0.36113975064716647 +of:0.06695954584706283 and:0.06649137032642373 to:0.06601061952379313 the:0.06171729943033423 in:0.05467960970092213 a:0.028607847520134077 was:0.025593805541454278 is:0.025575134465780882 for:0.02227513014141085 that:0.02203423644291701 In:0.016378139785638783 or:0.015262626560564149 at:0.014440266861137486 be:0.014337880734617895 which:0.013575436189030142 be-:0.013320788275858104 on:0.013254535972039225 are:0.0128330814609448 :0.011498114248276568 :0.4341545309716597 +one:0.1028303141280697 part:0.05963429477052991 out:0.04766456937681193 some:0.031418679026461914 members:0.030764490253327767 side:0.029940657362655835 portion:0.022063658796890564 office:0.020457735219956013 member:0.019726706386316174 end:0.019666887540649894 tion:0.018667441728710307 parts:0.016814747270460957 people:0.014112771422418794 all:0.014072739582212475 any:0.013183573287639892 One:0.013083578354183906 that:0.013024335602903442 account:0.012482348155001894 many:0.012077825070275192 :0.48731264666452345 +that:0.156271911122039 and:0.09971635254847229 to:0.08986894417609695 which:0.0719944524029692 will:0.060033765882711046 as:0.053306709386730135 would:0.044302002761703534 may:0.03798304511152893 should:0.03751311278952221 shall:0.02864979724542575 if:0.028263739092679173 but:0.02528119572341433 can:0.02154937888872799 when:0.02052998809673039 t:0.016862189234464305 could:0.014125228677831262 for:0.013789697922649669 what:0.01336325717278306 where:0.012780780479328485 :0.15281445128419227 +it:0.15590291243815246 there:0.0887784025092866 It:0.07904016205387611 which:0.06936908824431676 they:0.05362226352982171 that:0.04647101454662571 and:0.04420120519214072 he:0.027952982163116303 There:0.027623278151575524 mortgage:0.023443129896555264 you:0.018859539766003214 who:0.017891862574647276 this:0.014117846301193209 I:0.01363040583752058 sale:0.011818751696880098 This:0.010767348085132659 work:0.010306262168963347 as:0.009927627839447666 They:0.008978002990569422 :0.26629791401417535 +of:0.1050160319211198 the:0.08622769678298708 and:0.08127828670531902 to:0.04105725214822769 in:0.03421669523247479 said:0.024731169336268847 be:0.020922042114145792 for:0.020001131984344223 was:0.018674110965771026 Mrs.:0.01514046926381558 are:0.013302685886680774 :0.013094298964544416 is:0.012584929208725766 Mr.:0.012380284506103848 or:0.01212024444929334 were:0.010692403219902401 that:0.010190561461984077 .:0.00983627538108583 by:0.009707440410212535 :0.44782599005699314 +a:0.41488598497462625 the:0.30033339456838004 The:0.056625962061416305 A:0.025944885152634496 this:0.02311999952227497 appropriation:0.012726975827562135 tho:0.01266074222206774 tariff:0.009951586074930418 any:0.006581022185810181 This:0.005498922496694653 one:0.005359047910166297 tbe:0.005139887147752807 every:0.0047732890070641375 Senate:0.004606666693512771 which:0.004489907279040191 no:0.004447423362155418 old:0.00412963308360014 that:0.004127345775457615 new:0.003984856012364893 :0.0896124686424885 +the:0.1686254608388007 of:0.08510631124515454 Mr.:0.053063968456177904 The:0.05290176461656073 and:0.04281351925879434 that:0.03659363717531167 a:0.027376597759942865 this:0.016009104250207996 in:0.014329796242200724 :0.013577096541793277 .:0.012332809689052695 Mrs.:0.011483371514010961 tho:0.011366564416127033 to:0.010938551223696477 for:0.010273564804762044 which:0.009103350770352783 as:0.009022855831525262 his:0.008831867202298479 or:0.008219518012985871 :0.39703029015024366 +the:0.26264280768230913 and:0.15997137381658758 an:0.13448930411067264 The:0.05640907625981575 most:0.03885874025030742 of:0.03652255901304076 as:0.03262094859639188 very:0.025528417174127394 their:0.025443271050168324 all:0.021793764468438774 a:0.02018905578242541 to:0.016476966184861802 is:0.016308755802705154 his:0.01568845952769778 be:0.015091496815073607 was:0.012813656997060012 are:0.011724910872537294 tho:0.011196854638089651 my:0.01103756800139687 :0.07419201295629277 +the:0.1454500361787387 of:0.1080247151493501 to:0.04516715868785427 boy.:0.036249098323069925 and:0.03403580073245388 girl.:0.032660326140049385 a:0.03171979252021135 in:0.02714044436566853 for:0.02365213940166824 be:0.021942286684630472 their:0.021087116084698817 his:0.019774122064073623 was:0.014637031197642503 with:0.014008395154201525 are:0.012730720509515858 is:0.011363112041341867 as:0.011357870543086747 from:0.01063391638067422 were:0.010589399829418696 :0.3667765180116513 +and:0.1426924431446011 that:0.028871567238285132 interest:0.020049365802271846 recorded:0.019890827089006753 it:0.019267977419470908 or:0.017476547426320207 out:0.017039708625424865 made:0.017026909984607614 time:0.016890032335231633 was:0.01616992486177421 up:0.01456843686945675 held:0.013655609835831107 but:0.013152150295317508 is:0.012234461473365526 States:0.011968346369866982 feet:0.011502441092842772 them:0.011116584957189644 published:0.009988396635438757 inches:0.009909395117912055 :0.5755288734257846 +be:0.1300598887049587 and:0.1273229708873349 he:0.05358137554673704 was:0.05234525280371668 are:0.04737804847894286 is:0.03811431096448128 not:0.03235796176998494 have:0.031584662394009644 had:0.02877406081297929 were:0.028677727053512618 who:0.028389020383452968 they:0.027576240322037576 been:0.025056867005033838 I:0.02501917297662562 men:0.020723138720417505 has:0.01839187758048216 well:0.01436571881928767 she:0.014156735383612038 being:0.011814365450154506 :0.24331060394223816 +be:0.13556080054029035 and:0.12981765634666656 was:0.10178580313988995 is:0.0742231060541335 as:0.0628544217309886 are:0.06181792179667978 been:0.05090955335903453 were:0.03289599510212499 the:0.019781047622516076 he:0.017620384763845955 Is:0.016840195403587718 not:0.014609215704271906 of:0.014552061170658484 being:0.014284886750810966 bo:0.013770044292620824 well:0.011688202581167125 it:0.00997855085828241 or:0.008270569136253297 now:0.007604970927100792 :0.20013461271907618 +a:0.2409459963227417 the:0.18881725201073535 to:0.13772278287315934 and:0.04929613388093414 The:0.048900407991272155 A:0.023548683384672947 annual:0.02327032802073437 will:0.017760788820803293 this:0.013430055305896825 said:0.012507625423623362 his:0.011403249710341923 minority:0.010164445036801055 not:0.008410398540782247 that:0.008334453474412796 tho:0.008309030641732867 of:0.0071987366116181405 conference:0.007016477003616557 would:0.006586230127699543 shall:0.00657764643047 :0.1687992783879514 +an:0.1955570970847708 the:0.13791770387968338 of:0.1038849398995371 and:0.08707971273310182 for:0.02927489373714533 such:0.02626129223537901 a:0.02550073776366849 two:0.02446369648815791 their:0.021155958999739825 these:0.020055678937153276 many:0.016830627870395454 to:0.015761816300833512 some:0.014797708508539346 most:0.014528021934892053 that:0.01442369849751473 any:0.014213646747805083 in:0.014073852865191533 other:0.013243758848126981 his:0.01288102754740375 :0.19709412912096064 +of:0.28767355066866834 to:0.08775711267569858 in:0.08678131196995101 and:0.05160598694501188 on:0.04646139928102899 by:0.04519522654900943 for:0.044547789071328545 with:0.03396756772609607 that:0.033699232901107726 from:0.03075346596941143 at:0.027039283056790858 In:0.021061449543044047 as:0.017514234937992545 all:0.012543839382496166 upon:0.011844431150487573 is:0.00998972746569266 was:0.008814315973987914 into:0.008557199930727406 through:0.007781895704231326 :0.1254109790972375 +.:0.04991059654853361 -:0.03628741040273066 and:0.03508252486997924 in:0.03385248838262225 of:0.032796435226199835 from:0.030437414987489607 pre-:0.025603206672815664 de-:0.023925719685112968 lots:0.0238558991171386 con-:0.023498475103951692 :0.02181295619395293 the:0.019110795157374842 at:0.018159929869524024 sub-:0.017216905598296715 26:0.01716485314191852 25:0.01538573838718628 was:0.014894517265638856 in-:0.012542392771221985 de:0.012377826296462531 :0.5350839143218492 +Mrs.:0.10159719560508669 .:0.09769480025552754 Mr.:0.05852490903430896 Miss:0.03359361968129272 W.:0.029119595515282252 J.:0.02909464023054288 No.:0.024856746920283477 E:0.02272933843956071 John:0.02128874243480161 C.:0.0202952123639059 M.:0.019807982042632368 July:0.017630310545940393 of:0.017298639739483625 E.:0.01715222724770168 June:0.01687103818135967 A.:0.016687545208959133 R.:0.016586575509085665 T.:0.015684478350674446 H.:0.015221430005075922 :0.4072649726884944 +and:0.07731874491444835 that:0.03168092224198785 look:0.028164855234413734 depend:0.026464427656508933 effect:0.020352047346327427 it:0.019438153683866706 called:0.017720932957728985 one:0.01693713670856052 depends:0.016933802023516933 but:0.01685730699848638 imposed:0.016852459014533586 call:0.016396196200795413 out:0.016089657393270004 down:0.015806271420532644 insist:0.015390091872205929 based:0.01457343724250264 or:0.013618785076826031 made:0.012956007245648053 enter:0.012821194341872896 :0.592627570425967 +the:0.3148205946258559 a:0.25392227757305313 this:0.04062098739964499 of:0.03912977595540818 The:0.03313361641340994 and:0.02484746407267438 to:0.0237538473941491 at:0.023672674571288906 tho:0.019228668531305577 or:0.016185898257748806 that:0.016079535099530685 in:0.013764501483141593 great:0.012984805724019177 as:0.012714826019578325 A:0.012041982749348732 no:0.011365511126147542 any:0.010380459593876526 tbe:0.010079743806431158 little:0.009353366401137642 :0.10091946320224976 +of:0.2578476971523858 for:0.1473734634541053 in:0.08299009943122583 to:0.06259168390014963 by:0.05273248617136361 and:0.043212258475818666 that:0.040804644421863386 with:0.03949236443609185 In:0.032425469467365506 from:0.029534763412136445 all:0.025117578129487433 at:0.01900964639819082 is:0.01456744621627748 upon:0.012128456500843397 on:0.01206935037537705 as:0.010193187745214698 through:0.00830403099711054 but:0.006953287918525854 during:0.006877412847559185 :0.09477467254890752 +the:0.20868490835408401 of:0.10003440067434094 and:0.065979043256236 a:0.051980271529282175 to:0.04378269262561072 be:0.032780508133345286 his:0.024390567772359633 was:0.024259731755571622 in:0.02117837701995398 is:0.019662190515930576 their:0.0194173534655315 for:0.015335121595484443 at:0.014366825701530186 or:0.013849603356054289 this:0.011948688966051424 tho:0.011725828270079475 are:0.011568030628036957 an:0.010021780375707301 its:0.009760016869272064 :0.2882740591355374 +he:0.06628148359702375 and:0.059519963374574936 I:0.04787308420671193 it:0.04060709120161402 they:0.03118201217045741 that:0.030673823860644978 which:0.029102715144929226 who:0.025710263767604474 we:0.022387741140386597 she:0.016739872373061487 city:0.015246961157530447 :0.0136845163313978 as:0.012428942924122083 It:0.01153467292232067 1:0.01118856597431187 He:0.010115196256168591 day:0.009840009554471412 you:0.008932250705774166 Mar-:0.008593301861879945 :0.5273575314750143 +was:0.1748103343760957 is:0.17341842941581798 are:0.08552091205131561 be:0.06802067521460856 and:0.05800492066608603 been:0.05640810674029693 were:0.05204054951222353 the:0.035079678286726146 very:0.030005649079697803 a:0.026937736033613612 have:0.024563156917366737 so:0.022951396522491285 Is:0.022514257163771506 not:0.021457927351716092 had:0.01850303532702949 of:0.01626995374893233 has:0.014429106789204532 being:0.013813819770300413 or:0.013641137440984925 :0.0706092175917208 +to:0.32481131785708195 and:0.0821308684947126 be:0.06649562599434838 the:0.05985871043962466 not:0.044030346252930064 will:0.03843581653642169 was:0.03689547108682164 a:0.023040930856719523 been:0.02205761602078477 were:0.01893292656899191 they:0.018421445087873797 of:0.015556203549238415 are:0.015489320400135112 we:0.015436896916938527 I:0.015311807772494253 or:0.014490834933685724 is:0.014366885025386992 in:0.013646541609351097 may:0.013088647681519048 :0.1465017869149399 +of:0.19847304646623784 to:0.09361190283766571 and:0.09050944591552387 in:0.08386929338698561 for:0.06794013102660262 that:0.04733696790640255 with:0.04250198266510161 by:0.03391970650801368 from:0.029212270587766584 on:0.0280366145363378 is:0.026580888295493918 In:0.02137211770788896 was:0.020480521883224315 as:0.018286992087808606 at:0.016883433894609768 all:0.016801751405438294 when:0.01378705670734385 but:0.01314298268055818 be:0.012686441254524783 :0.12356645224647146 +and:0.2912673200778676 but:0.05329508053778045 that:0.042034195264517245 time:0.03171069077887788 was:0.027160988254566195 it:0.01831324991573825 day:0.017906894038581624 But:0.015801233734758387 him:0.014659975651279071 ago,:0.01251171315179027 even:0.011100668763050199 and,:0.011099034381653827 her:0.010545595006759579 or:0.009634913361525919 as:0.009184861030231802 out:0.00862000136756009 only:0.008482180850589209 up:0.008474964986661105 me:0.007920023076414541 :0.38927641576979677 +was:0.09933017252498319 and:0.08687107478491903 be:0.039428328816048984 were:0.035116027076824034 are:0.03315264792322269 is:0.0323586185539462 him:0.022519781504019357 it:0.019637523068948844 them:0.01922389433497916 stay:0.01851574950617562 one:0.017719620532092153 held:0.017035999087434087 arrived:0.0168701204271898 had:0.015748970982237633 been:0.01450715930746466 look:0.013343496570356187 out:0.012880961041749356 set:0.01278132944172454 her:0.012684428151323224 :0.4592740963643613 +of:0.3653464398583552 in:0.07854279493352898 for:0.06749263794979599 to:0.06600759442927384 and:0.06280640340745684 that:0.05771828013296968 by:0.037679169292600866 as:0.025230385834056398 with:0.02391820847600479 all:0.020143737827833953 from:0.019170625223587923 when:0.017171888482634286 which:0.016098255588777408 In:0.01609001653622946 at:0.015119896160876865 but:0.0112770275860069 if:0.01024420911118011 on:0.009401417215492194 over:0.007990956523513736 :0.07155005542982458 +is:0.07369131211125304 and:0.06023722478800102 as:0.05212355690632125 order:0.04392725441535168 enough:0.04130441618969658 have:0.04026215557762483 right:0.03507953042655976 not:0.03502102486002502 had:0.03322241180257994 was:0.03317312301659381 able:0.032916249901603245 necessary:0.03140588836634614 him:0.028514782929556597 power:0.026309177895690622 are:0.02537867309739185 likely:0.022319428771396463 them:0.019691437043361185 ready:0.019657514779669722 unable:0.01914589260720455 :0.32561894451377266 +be:0.3643446759859579 was:0.09313259130198427 been:0.07696092013921621 is:0.06977950406837359 and:0.04062540437161512 are:0.03577947570042825 were:0.033122856992342825 he:0.028887596698864593 have:0.028044455291146877 not:0.022382585587794237 being:0.021318597751412385 bo:0.0199680409511813 had:0.01932021857980663 has:0.01797708555486949 I:0.013699500611744722 they:0.011437197449140013 now:0.010063320723546107 Is:0.009754116619661543 who:0.009394103551508782 :0.07300775206940523 +a:0.306316669452606 the:0.22116998349866177 no:0.15287165573688194 this:0.07174549207411983 easy:0.023070708885796536 any:0.021009702933042197 his:0.018773710420874945 The:0.01788001711152722 every:0.013728694389923902 No:0.013273445190175091 tho:0.011527294256977145 vegetable:0.009046210416870341 This:0.008349683924024862 that:0.00819669682529421 whole:0.007868232067690285 in:0.007287731348524665 little:0.007256322140088325 of:0.006704262875570558 their:0.006343365678800886 :0.06658012077254928 +the:0.10916347350285113 and:0.06868200626443996 of:0.06451271741528611 a:0.04137696519694505 in:0.03686901354416082 to:0.02711257447909439 for:0.022330566996329307 In:0.014537636603856707 that:0.013327638727681886 his:0.011226699823664237 which:0.011122960606038415 :0.010844440125868555 The:0.010590492150895064 I:0.009801943310903557 their:0.009230780114308005 he:0.008981711055949974 more:0.00895370956663075 was:0.008422814527241737 men:0.007435409835887778 :0.5044764461519665 +of:0.25324463027806204 in:0.12151302536964877 for:0.08095044566709422 to:0.07783286239840699 at:0.04000647388442463 is:0.03822976886908852 and:0.035111327389175266 from:0.030615860401324017 with:0.03011960954649161 by:0.029578418536089852 In:0.029443236717286613 was:0.028696457443605123 on:0.02765521535883675 that:0.025962476525348395 be:0.011576062673705569 upon:0.01101823290495494 all:0.0093625401893902 as:0.008767196050625968 after:0.007732906982422164 :0.10158325281401832 +of:0.27886845194223026 in:0.07986774993262252 for:0.07889232964810479 and:0.0733553283421296 that:0.06713983324263521 to:0.060229054999636225 on:0.041304681319708034 with:0.03711568297342268 by:0.02362559989431922 In:0.021784731649872924 as:0.018921949669807318 from:0.01839771453610646 which:0.014926715969333232 all:0.013678375049237383 upon:0.011944265624194952 but:0.01175236887165149 over:0.011536914800993435 have:0.011508258732885858 under:0.010319324279868368 :0.11383066852124 +of:0.11754841124492375 was:0.0890900381975748 and:0.07023180720847627 are:0.06224960121249116 is:0.05789161281488305 were:0.0461718286338731 for:0.034269674408878535 in:0.03182282007679762 all:0.03043352553165844 or:0.02324287923251697 bring:0.022649462838584086 at:0.018627306164603945 talk:0.01809104203255718 be:0.017943208027194707 that:0.017485217619913104 to:0.016828849664881518 talking:0.01674850600428463 by:0.016472515719682144 brought:0.015750505866784566 :0.2754511874994404 +the:0.39749834532651884 a:0.07520030034269234 and:0.05540858759821703 The:0.03273515726769502 tho:0.030061875542463562 of:0.020144331424922633 tbe:0.014929647509541684 in:0.014268129706664795 or:0.013333166761078447 .:0.013287381914101323 an:0.009000188755386574 to:0.00880680429595084 :0.007943763822197133 Mr.:0.00773879605474787 by:0.007328417831573476 as:0.005922572098978465 for:0.0047526933692942485 that:0.004736121968310169 on:0.004594595720579333 :0.2713091226890862 +;:0.026571403980587268 it,:0.015870383953832425 him,:0.014366666283007914 them,:0.010562164083232527 it:0.008914797564345324 him:0.008658739974460379 in:0.008563308136534544 time,:0.007630343887807345 States,:0.007612689371982528 country,:0.007362247907852296 ,:0.007288132781311494 people,:0.006911544867979867 years,:0.006897249127247925 up:0.006735676101470539 and:0.006727519134349249 law,:0.006324130571078796 made,:0.005585921996128152 life,:0.005365863658446561 tion,:0.005234115725765018 :0.8258171008925798 +to:0.22110508080346694 a:0.17636440073256734 the:0.11879201454084284 and:0.0711662070191933 of:0.03245669777959589 will:0.03099865253438462 his:0.02085729648978723 not:0.02079228752200333 or:0.020543896329566068 that:0.01866036418389788 can:0.015276494339566205 with:0.013901960758983025 would:0.01328769993298695 I:0.012765177173667146 for:0.012417291056001334 in:0.011936915862426439 her:0.011682392431932713 The:0.011595937400361751 this:0.011511266634075213 :0.15288796647469377 +of:0.11262937093395178 the:0.07933830126221257 and:0.061142640715328114 to:0.060236256985574714 in:0.03992463923984304 a:0.03339417177502128 be:0.02974599742579492 for:0.028778201704295268 is:0.02227390828963339 was:0.021921140498607126 at:0.021408804644676142 or:0.0196085274386579 with:0.01776914207166247 that:0.015589254532017845 are:0.01500556319959804 his:0.014936962884283948 no:0.012347146037078902 their:0.01216072595900912 I:0.012105281683176691 :0.3686839627195767 +of:0.11549668403633208 the:0.11180687677873508 a:0.08512207401408194 and:0.07090580588449187 to:0.0536946022681742 or:0.021215998905076604 in:0.020731867892684223 at:0.0185065456120336 for:0.017340319079976043 :0.0154590445595941 The:0.014547116514790112 with:0.013443517538414896 by:0.011200415697457286 an:0.010596140492082047 that:0.010221151407447893 this:0.008818014167087829 one:0.008655354383735216 tho:0.00860073483896797 .:0.0085368311208156 :0.37410090480802144 +of:0.10096814444213117 be:0.08531195508985609 was:0.07745989951743326 and:0.06518250445396459 is:0.0616215451086961 as:0.038434217933775695 to:0.0362849417603371 in:0.03616556438345965 been:0.028006261717713938 are:0.02534488387918801 the:0.024082619426289528 not:0.019470595516693782 were:0.01778956995253893 for:0.016810073542709757 Is:0.01325526996591141 :0.01309739275592227 it:0.012192219987109542 or:0.012178555952430899 by:0.012148555996476646 :0.30319522861736165 +to:0.7041349569915881 not:0.048940326839874565 and:0.038449810419262286 will:0.021413942344733643 would:0.018472446554114397 may:0.015130887104235536 of:0.014872164333798156 shall:0.011615435179585978 can:0.011094772887324337 or:0.010385441390188542 the:0.00884420031450455 could:0.007500661819007476 should:0.00708507632980994 as:0.006505011677073235 To:0.006444166387339031 for:0.006054464992787683 I:0.004992476148620365 must:0.004818545266641704 be:0.0047856270395772275 :0.04745958597993324 +and:0.051654636516201016 made:0.051015454799921624 or:0.024674408513783483 that:0.016062835335927065 him:0.01565924413931051 followed:0.01563124550437536 owned:0.015583321950137187 ed:0.014866750499448756 accompanied:0.014614648987466283 it:0.013626457525371337 taken:0.013108391888807197 them:0.012651103019890095 caused:0.011867361447385745 up:0.011657883035474385 done:0.011150870541727875 only:0.010691704012969913 given:0.010651579286736641 occupied:0.010536480438065907 secured:0.01016848645023085 :0.6631271361067688 +the:0.11919516938815296 of:0.07230453158552728 and:0.05781056740443249 a:0.043018564803886335 to:0.031305092790907506 in:0.020848713353460488 at:0.014270110001066288 .:0.012526810245749479 :0.012413283442322082 for:0.011719122709941797 by:0.010808400946589808 or:0.010404172990115616 The:0.01003576004804544 with:0.009811868184449042 tho:0.009295902015355835 was:0.008924239095331684 that:0.008672304223433876 is:0.0085591147338948 be:0.008335143826716943 :0.5187411282106204 +I:0.13711976915468246 you:0.13116976293084923 we:0.12474109776957555 he:0.09953914600094042 they:0.0861607117900413 We:0.04406540882625509 You:0.033766253516624954 it:0.03344781323788636 she:0.027103356062793543 who:0.026277705210605923 and:0.02296006957322332 which:0.020515906271299917 that:0.017944100108527095 there:0.017631718277790528 He:0.016610241596153767 man:0.013969404368016691 It:0.013019352619469743 They:0.012881274730186482 one:0.011130569495067254 :0.10894633846001037 +this:0.3820546454463459 the:0.06522869997174437 to:0.04968193956193776 his:0.04770689469219787 in:0.040223222827456745 a:0.03708078846160258 my:0.03137449097887436 good:0.027789109213441302 that:0.026140261994363385 This:0.02357377618901268 and:0.0230461900040186 of:0.021971588140692253 her:0.020782521352939523 no:0.01671423321484896 express:0.015231601192115458 such:0.015162761790635174 same:0.014914903844770656 own:0.013619858843950393 your:0.013544649394987712 :0.1131578628840643 +is:0.25701281532304027 was:0.08838682575174787 have:0.08263874356830576 be:0.08115707787145432 and:0.06517378412061635 had:0.0619909095339398 will:0.03911434999857651 has:0.03332428460170618 Is:0.03317598730035398 made:0.027269963488191978 that:0.025096136686589422 with:0.024255890432752815 but:0.02232078510234217 are:0.021433547121429492 make:0.019176925030821176 can:0.01515658940553921 not:0.013265382392802212 to:0.013204424452654878 of:0.013182191468488268 :0.06266338634864733 +to:0.2958488172291813 will:0.2221259672882793 shall:0.09888093022532546 should:0.0596297389600682 may:0.05108388235534139 can:0.04336496149113113 would:0.04016585904157254 not:0.03339712166451829 must:0.03309835075894306 could:0.025159295795382702 cannot:0.014710206480436465 and:0.010056062498345647 might:0.008044665667283651 that:0.004442124895577211 which:0.003145123528196562 it:0.003076896381039365 also:0.002988528365005657 never:0.0022691658719487086 probably:0.001738150864282841 :0.045774150638140484 +it:0.11499349744900987 he:0.10389681869042806 which:0.08819846868307805 and:0.08146935664957894 It:0.0768643467519417 that:0.05793616864105356 who:0.04661760788366885 He:0.02151594949916459 as:0.017971367395352975 she:0.016786563418573618 now:0.01533425116054498 I:0.01184995085645656 be:0.011120675777018902 man:0.010845224773359648 they:0.010111386873800981 lie:0.0073413856983325235 ho:0.006712573249633224 time:0.006631348623620799 then:0.005753119916767679 :0.28704993800861445 +of:0.09129790931378902 the:0.07369883040827747 and:0.047842263382354346 in:0.04189055351593407 to:0.04045875475680249 a:0.03542341257202578 be:0.02020462051672066 for:0.01979292654746225 was:0.01760256398103379 at:0.017380150555488715 is:0.014984483003968216 with:0.014047653760730413 by:0.01374644383819499 :0.012670486581795598 In:0.01200961464556976 or:0.011563835749786333 from:0.011391516893522809 are:0.011273104484969465 that:0.010755276030689069 :0.4809655994608848 +it:0.18355358574001127 that:0.15156971808905476 It:0.08366915845941622 which:0.05535713264393477 and:0.03534462430135942 he:0.028504642478607376 There:0.019055322664892314 there:0.016506557996641504 That:0.01603854310483945 but:0.013911701413792324 as:0.012494853161817431 who:0.01082577116785398 what:0.007802025603610531 fact:0.007684981036073479 truth:0.006720169433821267 (that:0.00658913359320885 they:0.006026543862149023 she:0.005196783683978024 land:0.005134293068321208 :0.3270144584966168 +of:0.09129790931378902 the:0.07369883040827747 and:0.047842263382354346 in:0.04189055351593407 to:0.04045875475680249 a:0.03542341257202578 be:0.02020462051672066 for:0.01979292654746225 was:0.01760256398103379 at:0.017380150555488715 is:0.014984483003968216 with:0.014047653760730413 by:0.01374644383819499 :0.012670486581795598 In:0.01200961464556976 or:0.011563835749786333 from:0.011391516893522809 are:0.011273104484969465 that:0.010755276030689069 :0.4809655994608848 +the:0.17989304745526827 and:0.08246673138151284 a:0.07757145761355809 of:0.06203165885467098 to:0.047295115767608926 in:0.032035895139538625 for:0.02896627913394 The:0.018854848190218924 his:0.01836366040766355 with:0.017405173118926167 Mr.:0.01711434536607261 that:0.014190529271153527 their:0.011557823348446326 an:0.010871261888366256 tho:0.010347417992085982 her:0.010244783312877192 or:0.010022430334119058 .:0.009871819207942384 :0.009170858028371783 :0.33072486418765845 +to:0.36254676081886866 a:0.1282443976001372 will:0.077273395762415 the:0.0684698338795588 not:0.04052827135845002 would:0.036428511946799615 and:0.02719425391034303 shall:0.021808774612995133 his:0.021471330947404624 no:0.020566778498244374 can:0.015648511593637768 unanimous:0.01430819465451131 should:0.010915249056928913 may:0.01069895679346217 must:0.010513831339030085 this:0.009182627603118885 electoral:0.00912853147315042 or:0.008714219480851007 per:0.008095294309622978 :0.09726227436047 +and:0.10227718169548757 was:0.03686100089566201 is:0.029386013270239993 Beginning:0.02548091656540377 look:0.02542223467373494 be:0.022743466905076618 it:0.02152780610588124 are:0.02033943667819368 that:0.019212590171628977 or:0.018447369952497412 held:0.018290879554348473 arrived:0.014957685469283808 interest:0.014550239551356403 as:0.014072337173708866 him:0.01386068850993191 were:0.013828254910803632 looked:0.013184984810246443 one:0.012306687335885611 up:0.011977369727943957 :0.5502728560426847 +of:0.08676523556613752 and:0.07585396501698681 on:0.03494240651066359 in:0.026336099135361474 is:0.02445627985819543 are:0.02325813319372505 to:0.021639228667775123 was:0.02082068440976407 an:0.0201781197344559 or:0.018791352520116857 that:0.01837952450009376 with:0.016763591328927633 up:0.015344609019094842 were:0.014026449422557341 it:0.013854468459477961 :0.013640480954211666 for:0.013070966028281525 said:0.012292155532824818 the:0.012256884937987019 :0.5163293652033616 +the:0.5726157812192875 a:0.0694891339358713 The:0.04428903573807401 tho:0.041386193188321256 and:0.04080226763295679 great:0.025364398385961898 tbe:0.01959518097981039 in:0.018872297672638302 this:0.017560437667329 or:0.015203001727143268 natural:0.015087696207996796 their:0.012162129710230517 large:0.01148345629124752 his:0.010071786660466143 our:0.008562394938515582 no:0.008489832989482794 an:0.008139232532482039 its:0.007200031469789487 any:0.006609580931727956 :0.04601613012066756 +and:0.09158144179857913 the:0.0601763351108652 a:0.031653532109788884 that:0.023100658885865665 of:0.021689579560488042 to:0.019802372768250455 man:0.0185265575719818 time:0.016976978058199556 men:0.01239968005313799 :0.012371733413566215 States:0.01202843791348814 which:0.011010501211777074 free:0.010515466025227117 him:0.010015839728761597 but:0.009837368302837936 as:0.009621508187932892 will:0.00942070559078213 right:0.009177252362004517 :0.00906820110055272 :0.6000258502459129 +and:0.08992539879612474 that:0.0844453761959803 as:0.055650472056453786 of:0.05562031899468547 to:0.040555788419955316 make:0.037189996829352125 which:0.03536333746764052 but:0.029259896215369344 if:0.026590790296909906 for:0.02502570581741944 with:0.022268509380744997 when:0.02057623614723612 is:0.018606847607363967 on:0.017958315461135077 what:0.01736685272866561 have:0.015599623247670023 in:0.014393328574136822 Be:0.013801468720923782 by:0.013560337942586894 :0.36524139909964576 +is:0.1300949053123692 ought:0.06235942008217411 are:0.06072445398663133 seems:0.05697318922100556 was:0.04954471475520722 not:0.048536362204045544 said:0.03881623685409472 seemed:0.03220746110521765 as:0.030923473227594384 it:0.030881869856406088 claimed:0.028226689520969073 have:0.027725540143517465 and:0.027557757709861613 likely:0.02587900806524851 seem:0.02574969309575762 supposed:0.023317446089120043 had:0.02145961764731352 Is:0.017651730366473797 proved:0.01677680343414685 :0.24359362732284573 +a:0.5405361728083322 the:0.1104983551344689 A:0.04416939270170309 of:0.033363900430774925 The:0.03163607299780719 no:0.02668959123745213 and:0.02220276617811875 his:0.015655369557985646 as:0.011826320783697972 this:0.01090834714970171 such:0.010879823792471516 by:0.010685298606813552 to:0.01037320462284815 not:0.010300659920053573 any:0.0101967199398865 which:0.009445300373420068 be:0.008992207566988684 or:0.008326648724371813 for:0.007406143648476625 :0.06490770382462704 +a:0.471339440675698 the:0.10891379116393698 and:0.05293959606925931 of:0.03794788807019103 most:0.03786845504461794 A:0.02839068790974583 very:0.026942259994794347 an:0.02525997110831525 one:0.019723444488013876 in:0.01716470667648926 The:0.013416601960388757 more:0.011923537740717497 his:0.010634289453608644 to:0.010381141113677772 her:0.00933159991068666 for:0.008968003957263276 with:0.007987089391678375 some:0.007645641422079396 this:0.006750320943681045 :0.08547153290515677 +of:0.2330188388104117 in:0.11675181541607631 on:0.11590921775584453 to:0.11461712878958906 and:0.051761307469912095 that:0.042313665405368024 with:0.03919973066113418 from:0.03120544400582135 for:0.030345352581526958 by:0.028659119827165225 upon:0.022593366862279897 In:0.020916120075120097 into:0.015439716250272684 at:0.015340564414253988 under:0.012781146477569843 over:0.009597909191512724 which:0.009399399990118138 through:0.009225210364499248 as:0.007957602461371538 :0.07196734319015247 +the:0.08420913210031296 and:0.07107068750542198 of:0.06822389165938944 to:0.0599489087081745 a:0.05257718780079019 in:0.03141473158662753 at:0.021975814255332612 or:0.017694597911752274 that:0.013162839445448531 .:0.013061368692281139 was:0.012987245792900807 :0.012773694497432157 is:0.012394992910484803 two:0.011275167442196135 for:0.011036798656478955 one:0.010008200950919357 Mr.:0.008795227227627026 I:0.008735566598605277 In:0.008322108371681566 :0.4693318378861428 +and:0.04491804315792162 covered:0.04018777062174743 filled:0.03439831602262882 together:0.027274277474498326 charged:0.021185110165574027 it:0.018970003064941 up:0.017480630635068384 him:0.016212955803671315 them:0.014293565819421733 compared:0.013525193832595763 connection:0.011614636799553067 parallel:0.011283394857871554 do:0.011130056469426521 loaded:0.010955317894446719 trimmed:0.010816708291869467 thence:0.01055173438898371 lined:0.010343364261696459 but:0.009666074941737286 troubled:0.009518829589372486 :0.6546740159069743 +the:0.12726855910616955 and:0.0892959780159441 of:0.062229337879632314 to:0.058292991969480845 in:0.037889522208997196 was:0.035486090111862774 a:0.03277831520841599 be:0.02993909980507852 is:0.021492638467572805 been:0.016319288425974923 are:0.01622912479566914 were:0.01571120940653339 at:0.013800451447349702 by:0.013390998935139781 his:0.013046404338315144 an:0.011587498063993411 he:0.010436524486303292 not:0.009967845652912184 or:0.009888058570455908 :0.37395006310419904 +the:0.3879024223900793 an:0.09987422401328346 of:0.06148188667563647 his:0.05839729527937322 in:0.027779576976383332 this:0.027386823304015696 The:0.019409266239539813 tho:0.01909118533399146 good:0.018355763932746856 and:0.01787851406202209 any:0.017684586022601735 a:0.01568279211194412 our:0.014248854964483441 their:0.012503576045358622 my:0.012058935843644831 for:0.011722295487655085 some:0.010682990976860648 to:0.009923048420712751 tbe:0.008968883376398713 :0.14796707854326835 +well:0.0783261505813394 known:0.07715919941364807 such:0.05477142900040686 and:0.04863188910629108 far:0.0445482759728691 soon:0.03102312685208889 is:0.028257952691436966 just:0.028005499533101993 was:0.022532512345363628 be:0.022395863339445075 much:0.020508662953047308 regarded:0.01823330307450135 it:0.017273059614160098 are:0.016747984622291417 described:0.015259584918361666 long:0.012277346915599112 not:0.011208503916372204 them:0.011089145850343493 him:0.010809593852119817 :0.42994091544721247 +and:0.03868242960999506 as:0.031124813427855922 went:0.02352509775927722 him:0.02196555539050794 them:0.018760608639018784 up:0.017985449426794205 is:0.017894175620344187 go:0.017174904667157563 able:0.016756848979943888 going:0.014481672239490295 it:0.014128375989346808 was:0.013277058274565138 time:0.013249953793837373 not:0.012469887553778763 began:0.012465717758716884 way:0.012105610030480113 back:0.012090864562211581 right:0.011941707822828511 amounted:0.011564315359310868 :0.667354953094539 +of:0.13084814232797154 in:0.0740836656586379 as:0.0625527229231004 with:0.059577596335708534 to:0.058433603729754965 is:0.05551580107464621 and:0.04946529489577619 was:0.04264000753602388 for:0.04009673021586375 by:0.037684080471064085 be:0.023941707008899252 on:0.02316059851167503 at:0.022644769441950232 such:0.019950936521181326 that:0.017856095877642635 like:0.017386655618315594 In:0.016902219705578994 from:0.016046571451088905 not:0.01205910100844263 :0.21815369968667797 +the:0.5059515438222958 to:0.07228305653095585 The:0.04900681181952039 and:0.04031316859781882 an:0.039484835604320534 a:0.03786954386771076 no:0.031496269247769014 his:0.028818574821286358 tho:0.024956053254926513 their:0.02005140377916204 in:0.018845437565635653 of:0.017966146218930126 its:0.01764551208585099 into:0.015068040723889176 take:0.014866133916075386 any:0.014374586388873107 this:0.011501783018463406 great:0.010650578870507223 or:0.007457666698857475 :0.02039285316715142 +the:0.18941070485687136 of:0.07390279899818201 and:0.06570082437222247 a:0.058469243590548274 in:0.024856988432496216 to:0.020873147706783023 for:0.018682659686982638 or:0.017866694612114674 that:0.017028564531941848 The:0.014409173905624696 tho:0.013452762362497402 any:0.012264366938919611 their:0.011649091646265465 other:0.010378896202069391 his:0.010181810078543935 by:0.009890952379887743 :0.0098587277099488 at:0.008693303303851414 with:0.008048251693860238 :0.4033810369903888 +as:0.10641765479650296 is:0.09294801216475586 and:0.07759600133966205 in:0.07569332621591036 was:0.06244740969189172 of:0.05788185622377343 be:0.057566117015248906 to:0.047005734915123956 the:0.0434185235133793 not:0.036938838356869785 are:0.03557357929162627 so:0.029684919347450784 his:0.029155459335779375 Is:0.02095164688427159 been:0.020120319425342995 have:0.018410708301059685 were:0.01712967587120905 her:0.01660537292018637 from:0.01659271679003769 :0.13686212759991784 +the:0.19961626280564265 any:0.19411957953366366 a:0.14626889187444467 Any:0.08648427748763464 every:0.06468958000532862 no:0.040293434590758494 other:0.031976501842089826 some:0.02925249574430935 The:0.027364118132916757 No:0.021232147061673638 of:0.020709940805999964 Every:0.018813544327935482 one:0.017225122296391303 such:0.01605085314105945 this:0.011457188610210724 his:0.010566335212635456 A:0.00964902210186994 and:0.009043170165041801 tho:0.0086556085880805 :0.03553192567231311 +of:0.09129790931378902 the:0.07369883040827747 and:0.047842263382354346 in:0.04189055351593407 to:0.04045875475680249 a:0.03542341257202578 be:0.02020462051672066 for:0.01979292654746225 was:0.01760256398103379 at:0.017380150555488715 is:0.014984483003968216 with:0.014047653760730413 by:0.01374644383819499 :0.012670486581795598 In:0.01200961464556976 or:0.011563835749786333 from:0.011391516893522809 are:0.011273104484969465 that:0.010755276030689069 :0.4809655994608848 +It:0.16483324464261526 there:0.15137929784652215 it:0.1389856574030547 There:0.07635769296985051 This:0.047005115735994085 which:0.03400493914593651 he:0.03276953491232582 that:0.032534901302704186 this:0.027705240540618296 He:0.025980981107979893 and:0.02571984886254885 who:0.015928391857077187 Here:0.008658225427457844 That:0.0071330239854848695 she:0.007117899171284279 one:0.006746549293447637 She:0.006029619888080546 man:0.005607440676998042 what:0.0055587671977417805 :0.17894362803227754 +the:0.14747317579422697 of:0.08969960687569191 and:0.08002288809402543 to:0.04018288925517698 in:0.038069034056462545 a:0.034447851134399 his:0.026243861016754164 was:0.017504724320044556 In:0.017094479622078555 Mr.:0.015549262855704193 be:0.014889239251186716 that:0.014292727471384912 or:0.013671713673569966 by:0.013608448145710786 for:0.012621338926358095 he:0.012559565867065125 their:0.012465751620385573 is:0.012137097840243853 I:0.011430039444749974 :0.3750363047347807 +six:0.251722781975132 three:0.11618085859641793 two:0.08865116731399142 four:0.06351389434477075 twelve:0.04863627968561103 eighteen:0.04771308000360516 few:0.045138091724875276 several:0.04212754838287033 eight:0.03131851016938385 for:0.027317545443179086 nine:0.027101711454000154 the:0.020670334449894065 some:0.019059065768670308 five:0.018596524912833888 of:0.017877147211464918 many:0.01753535203922745 seven:0.01671425181226329 eleven:0.013516029016681533 ten:0.012283327069255173 :0.07332649862587239 +and:0.08995317707915026 to:0.06844710404109794 of:0.04605142056172993 the:0.04074574508561307 which:0.02479116931334353 that:0.023764822140213245 re-:0.020841117231308055 in:0.020803825395358622 for:0.020278423301550053 :0.018417753428486977 not:0.016860793136637672 con-:0.016444405871234195 is:0.014386481772210856 or:0.014080680914153714 be-:0.01352268143271276 I:0.01317002660943805 was:0.011429878269381662 dis-:0.011196807025842847 he:0.01113106290024311 :0.5026826244902934 +the:0.48722776986650257 a:0.17895033428496576 The:0.05652704213454618 of:0.05540639211252186 tho:0.024646448442916316 A:0.01830606361060924 our:0.01815290135468531 in:0.016973352717758072 great:0.016492556315587385 and:0.016481877776207823 this:0.015444194893032906 that:0.010733385059994292 with:0.01039382458769383 for:0.008932736372704732 tbe:0.008916686538692228 an:0.007564567937233026 by:0.006280374240211177 to:0.005520842221668437 its:0.005430858654994999 :0.030617790877473808 +of:0.26699530032926955 to:0.11612804567056095 in:0.0786656980329295 and:0.07265817469063106 that:0.062254655101437094 by:0.049772131070447534 for:0.047175830772311515 with:0.03621847871695257 as:0.02477460990111581 from:0.02421780077139179 on:0.020392314503421643 In:0.01678839158054634 is:0.016288937490382824 when:0.01564343259060193 was:0.011718001162653435 but:0.011698290822870635 upon:0.011259514524195576 at:0.010927110307227046 all:0.010642136894046972 :0.09478114506700619 +amount:0.06324860670713985 payment:0.043711778774253286 out:0.0403578476114128 value:0.03982858121107984 part:0.039342291208537446 proof:0.035889357891094466 all:0.028363084961281194 tion:0.026158650552050744 proceeds:0.022448823347272166 cost:0.022374529335741928 that:0.021818365060714058 use:0.021718487437418287 one:0.021483921181429645 result:0.02138315113120925 sale:0.019976872838546288 sum:0.018781978899620917 advertisement:0.01782415255580784 favor:0.017625518672264102 reason:0.01741823927040189 :0.459245761352724 +in:0.024745671141431252 ;:0.021522984044907358 Under:0.020875399401828296 given,:0.011497823484486516 him,:0.008673043253468554 them,:0.008411734917607014 ,:0.008381729419098215 up:0.008183854591543931 thereof,:0.008118754678315116 mortgage:0.007035235590636141 years,:0.006852324131213381 States,:0.0067448333563323 county,:0.0061059672562892246 land:0.0060058141326634 day,:0.00599734573268566 it,:0.005992649533783088 and:0.005610048433393659 time,:0.005417556421912032 on:0.005343730308206672 :0.8174835001701982 +the:0.5727384625798222 an:0.14175787977780147 The:0.05229380159906196 tho:0.036065983190676235 a:0.025624249994518265 this:0.019470292070118887 tbe:0.01903681494705225 general:0.014157648974234684 said:0.012138431510072413 and:0.009953574745495608 any:0.009262665010153283 other:0.00860435100365155 An:0.007789547233414277 special:0.006820123422461722 primary:0.006459535231884498 great:0.006433535993469336 one:0.0063808091317357945 every:0.005886097234631201 county:0.00463965882557693 :0.03348653752416747 +.:0.07986929428044623 Mr.:0.06884590328078291 W.:0.05092168643173437 E.:0.045106714215195735 No.:0.033861230953190484 Mrs.:0.03244346982436148 C.:0.02905539612452757 J.:0.02702153911049787 H.:0.024178645163318205 D.:0.02340092164703786 A.:0.022222733579832153 S.:0.021512519400429874 F.:0.019692184588884824 T.:0.017313537597764817 and:0.01667913403775117 township:0.014825169530673518 Miss:0.014043953620843668 L.:0.013703432410084584 P.:0.012749216334690094 :0.4315533178679526 +the:0.5537866803088458 a:0.08494545771419372 of:0.05497155706335043 The:0.05451170290615102 tho:0.03884612329020338 and:0.023234389628309517 tbe:0.015377997801144086 to:0.013768994902606312 in:0.01252859838865619 by:0.011129484246864581 his:0.008580737057383638 with:0.00762959925431915 that:0.006147575500469359 said:0.0060867979850581155 for:0.005624219751216273 from:0.005621846884627401 A:0.004225879561462547 our:0.004077700873700544 her:0.0034875410438685037 :0.08441711583756932 +of:0.24771856616623836 to:0.10055514755145552 in:0.09984480279807748 and:0.05814117240642057 with:0.05158849496637837 for:0.04613065771486411 on:0.044432355864291194 by:0.03519649785437645 from:0.03338388255327628 at:0.03070401576666744 that:0.026848878623973782 In:0.02041195271981872 upon:0.015248471773457326 as:0.011599582931726849 all:0.011326016994932605 or:0.008867228292995478 up:0.008407673252508876 over:0.007381477118522736 into:0.006992770039889695 :0.13422035461012818 +the:0.15280520214249554 Mr.:0.07487181219879477 a:0.05707449987919959 and:0.05273435822623654 of:0.04410387258318849 The:0.033798771166272314 was:0.025617623265291645 is:0.019228816854083307 to:0.018686052040921795 be:0.018330608842042403 have:0.01776462888930528 I:0.01756922951570666 he:0.016397480009871908 his:0.01549506672980037 had:0.015164506515848351 has:0.014147077273365729 an:0.013321968229185624 or:0.013279565935215886 in:0.012073403748506807 :0.36653545595466697 +to:0.5337322946325576 not:0.09459394379815872 will:0.07126656533997872 would:0.06505132890553068 and:0.05197654719114495 may:0.01707059410104596 must:0.01572298540872825 I:0.01465106633672999 we:0.012322796091487393 can:0.011283680869557569 never:0.010999764864546102 should:0.01078211522511251 shall:0.00958265830155272 could:0.009448340818162544 they:0.00706999466610313 cannot:0.006837277188041688 or:0.006499090039575616 thus:0.005501876339673822 might:0.00514726531065883 :0.03945981457165325 +the:0.7795694826735058 The:0.029856488164230522 tho:0.023964666894066445 their:0.021112326934104544 our:0.0169415862898812 of:0.01561919586889006 his:0.014934314938155547 and:0.013951389072707992 its:0.011215735041323708 for:0.009707506617716771 a:0.009680751675227485 tbe:0.008722034583999741 her:0.007951118587088425 great:0.005588164980063173 this:0.004897804340121143 my:0.0035704020330345936 whose:0.003466497889345386 public:0.003099750797808184 such:0.0028503092798008696 :0.012300473338928478 +in:0.023286887944356852 men:0.016816133039475108 hundred:0.014214003464139998 time:0.011577943576968851 law:0.010340019969892218 large:0.00986677591397303 one:0.009499968226042677 due:0.009034100897912626 and:0.009033135718575728 States:0.00891368869257178 health:0.00876540693387806 peace:0.008646968682496183 out:0.008579653506810723 state:0.008560752416077786 up:0.008456072025622043 good:0.00814418983471482 rights:0.008083292797466567 ;:0.00801070309919686 it:0.007928055563099761 :0.8012422476967284 +they:0.13522731225895002 we:0.11199105299760076 you:0.10107631749611479 I:0.07143100512500314 he:0.06492671271462278 that:0.051776752142790865 and:0.051245763020451106 which:0.038939675261014446 who:0.03861510824486619 one:0.034740486291052156 it:0.028014205323945857 You:0.026865886977782975 We:0.023977903863926665 Ameri-:0.020287643652184335 man:0.019310068414236787 They:0.014423591435929226 she:0.01402965623471946 Republi-:0.012888313395348124 It:0.00999931884640945 :0.1292332263030509 +the:0.08884522774698979 and:0.07312476208731158 of:0.06761060466674214 a:0.054452269629497146 to:0.04378961386821884 was:0.034465268070819566 be:0.02911146983728545 is:0.021227990160120145 been:0.020717682818471996 his:0.013883807677090557 by:0.01380658683271889 in:0.013399192267761359 for:0.013162987460340026 are:0.012251139798266489 :0.012087276571051997 were:0.011808388562718064 he:0.011271439391771181 not:0.011106681887262286 Mr.:0.010627877099182573 :0.4422497335663799 +and:0.14745235966779816 the:0.09333368826022888 of:0.0891083845994413 was:0.06675172457104 is:0.05091940389284837 an:0.04117243572688284 in:0.04102977644879905 or:0.02868279603704809 from:0.025910358178275177 not:0.023707934563868913 so:0.023187834181856538 be:0.021509587732882897 are:0.01768351054605428 said:0.015615752112100093 were:0.015544765800884203 for:0.014567170772125843 his:0.012612135493547075 by:0.012602057039550939 their:0.012177677581093442 :0.2454306467936739 +set:0.15029052042678154 setting:0.12225134224383917 put:0.12033864017893262 brought:0.060805054210643 sets:0.04124978351431572 and:0.03572746220375747 bring:0.022487086421977952 to:0.018641326763660045 came:0.01585561645453912 send:0.015243308829987817 come:0.014992559835540284 called:0.013639663448793436 go:0.01316455890068739 went:0.012906080473959894 burst:0.011936117379081068 putting:0.011586318732690941 poured:0.009744026564505123 sent:0.008672863989239929 made:0.008113656071934325 :0.29135401335513317 +no:0.11388658350074658 the:0.11189330411928491 a:0.09278974228987248 and:0.08126600677662921 of:0.07428192888612782 or:0.07337778206926576 any:0.051416199762529737 much:0.04794544563496935 for:0.04132454515011543 with:0.032101738061385346 in:0.030364116283613095 is:0.029827812813500693 to:0.028861430135556046 still:0.021285795173332015 are:0.0200379556677521 be:0.01823840775946293 far:0.017068796869550002 but:0.013977885650331862 was:0.013527929566708627 :0.08552659382926599 +the:0.11919516938815296 of:0.07230453158552728 and:0.05781056740443249 a:0.043018564803886335 to:0.031305092790907506 in:0.020848713353460488 at:0.014270110001066288 .:0.012526810245749479 :0.012413283442322082 for:0.011719122709941797 by:0.010808400946589808 or:0.010404172990115616 The:0.01003576004804544 with:0.009811868184449042 tho:0.009295902015355835 was:0.008924239095331684 that:0.008672304223433876 is:0.0085591147338948 be:0.008335143826716943 :0.5187411282106204 +a:0.3279588547262412 one:0.08837550068583874 the:0.08398450312868302 in:0.04476282978115943 certain:0.04375692211148536 this:0.037845505727859635 of:0.03477789884983863 any:0.03475646351755638 A:0.027322684628943907 every:0.022719244173786696 described:0.019742789001193667 same:0.019198121730404326 said:0.017930976352265888 In:0.015542474786223611 by:0.01427553558099884 each:0.013417112208700361 One:0.01272917055841772 lot,:0.012719334115214045 no:0.012597868340737822 :0.11458620999445068 +are:0.11468297606178357 be:0.10943455620288425 is:0.10210257882555845 was:0.06777430053321754 and:0.05596382713611074 most:0.053779207577958524 more:0.051694660715981035 were:0.04317614156629591 a:0.03890301777196216 been:0.038750399609417084 not:0.03428293536621994 as:0.03012591044160709 very:0.02564147836052003 being:0.02377846101535598 too:0.022405545691674286 or:0.019185306931899 of:0.018962674833417265 Is:0.017738868780620053 so:0.017700262032502263 :0.11291689054501483 +and:0.09535820693487887 made:0.05868983218202315 or:0.03148451566765533 that:0.025944202614192967 ed:0.02401745542936779 him:0.019344947420765812 them:0.019150860667629957 held:0.01777214801970969 done:0.01634911224128143 accompanied:0.015513832626470325 it:0.015452944454964479 given:0.015431765798498604 caused:0.015195547195868648 followed:0.01508065307770798 north:0.014722630182053402 occupied:0.014402863400766316 secured:0.014364939891552719 destroyed:0.014061822001302286 surrounded:0.013706408705188484 :0.5429553114881217 +a:0.48520214761467934 the:0.24696032111682356 of:0.04703277770898884 The:0.036406919345624345 and:0.017277586838034313 this:0.013630026125236068 A:0.013581851831412788 with:0.01341882291516516 for:0.01034241784337086 his:0.009909407654900606 any:0.009586058218802198 tho:0.009045054027630712 to:0.007459413187682102 in:0.00587311621945916 their:0.005743035054542391 some:0.005647794760627166 our:0.005624515421380771 its:0.005281047782432967 or:0.004534146287156821 :0.04644354004604989 +to:0.3932302838099666 will:0.1606234714671026 would:0.08418722347640034 shall:0.0629680603799996 may:0.04909910074466142 should:0.03746087598670289 must:0.03322239787738936 and:0.0181684212526493 not:0.01622800540638936 can:0.011922066807673971 might:0.007501371344901981 could:0.0070731244007617615 cannot:0.006723028045426699 it:0.004480781895644713 there:0.0037676750982828873 that:0.0033035462491790464 lo:0.0028727912347939677 only:0.002386023201622443 t:0.0023521890040100525 :0.09142956231644102 +that:0.24087121215280272 and:0.12157520004556935 is:0.08115435684263181 was:0.052209367101571424 of:0.04667768524470752 be:0.046489075555368 but:0.04513104135701227 by:0.026977022891129472 which:0.026794037020544066 if:0.022108765922372996 have:0.020524152579354787 with:0.018779012190090535 for:0.01705915642051494 are:0.016604061038063576 to:0.01646844021876286 as:0.015645493281649717 had:0.0147279898166201 or:0.013478710552788462 were:0.011723633014645407 :0.14400158675379998 +the:0.5595370985817401 of:0.05649449789780505 tho:0.03348828841618085 at:0.03092658178451825 and:0.027135901924446003 The:0.026100395596321605 to:0.02459269766976088 said:0.013334300844186185 tbe:0.013100838146440905 on:0.01303240823278392 that:0.012412262140267485 for:0.009949706987754695 their:0.00908122593649008 until:0.008595619961121891 since:0.007075846483728266 Monday:0.006651638320504743 its:0.006624970102874346 which:0.006575687015475977 At:0.006553187363100344 :0.12773684659449844 +he:0.10192413820920368 they:0.0954463814882578 we:0.07771745694401128 who:0.053712302937332874 I:0.046936927812931926 you:0.04571088874504419 it:0.044934457440989964 which:0.0385205148721852 and:0.03369412550545867 as:0.032463340813825646 that:0.03128214465531775 It:0.02120664955707872 one:0.01843616876115458 He:0.01795032462964174 men:0.017790014252642927 We:0.015806185996030005 she:0.015420810123001632 man:0.013931533809581193 You:0.010718479293792207 :0.26539715415251797 +the:0.13243999893396943 a:0.11415792906748143 of:0.0975252633359605 to:0.06194801190800974 and:0.03725408596764487 as:0.029613532528518793 at:0.022327116296232984 in:0.02221037932347728 for:0.018901778015500054 from:0.016919272424603844 with:0.016662989299519024 his:0.014518609883223354 by:0.014220570761647977 that:0.013803428377328605 be:0.013673679387295239 on:0.013108890818338246 an:0.012940135677303986 is:0.012678503396463498 was:0.012295563439809311 :0.3218002611576718 +the:0.11919516938815296 of:0.07230453158552728 and:0.05781056740443249 a:0.043018564803886335 to:0.031305092790907506 in:0.020848713353460488 at:0.014270110001066288 .:0.012526810245749479 :0.012413283442322082 for:0.011719122709941797 by:0.010808400946589808 or:0.010404172990115616 The:0.01003576004804544 with:0.009811868184449042 tho:0.009295902015355835 was:0.008924239095331684 that:0.008672304223433876 is:0.0085591147338948 be:0.008335143826716943 :0.5187411282106204 +of:0.22494100336236053 the:0.18665669899380774 in:0.11869116659307005 to:0.035856737089498616 and:0.03429508201025662 for:0.026882114802429666 a:0.025367352566341525 In:0.022950375361587772 The:0.015999957392399577 from:0.0153273685122272 at:0.014536176063491788 an:0.013769066054878194 that:0.011963171812782116 by:0.011487487694607548 said:0.010659430295109486 tho:0.010275872366579496 his:0.00900691667697792 or:0.008850953963932288 on:0.007985570317462583 :0.19349749807019928 +virtue:0.04305871608268011 one:0.03403612327864009 out:0.0250159011367257 quarter:0.023133682284174104 part:0.01920456160177008 that:0.01641064646660135 payment:0.014018604208015699 tion:0.011498963637324855 side:0.010522532817838168 use:0.010115406936824545 and:0.009840829045391452 account:0.00943445191076968 all:0.009316798599904539 instead:0.008879578562043985 end:0.00845756904577208 favor:0.008325700596918865 charge:0.007803203719508871 cause:0.007659088076724041 guilty:0.0070755017395202615 :0.7151921402528515 +the:0.5722422407174096 The:0.0674531380108331 an:0.041743301301393185 that:0.03318648392726536 whole:0.026709587016041345 tho:0.024982714112875455 this:0.0222924124219966 and:0.020806563447305245 a:0.019313078766828876 large:0.019245748508303673 same:0.016283336940294105 any:0.013370761131955702 total:0.012236052121746017 to:0.01128606702174625 great:0.009431795242927674 small:0.009061809621751704 good:0.008810969498287845 these:0.0074749606001075905 some:0.007189867627000362 :0.05587911196393026 +the:0.12726855910616955 and:0.0892959780159441 of:0.062229337879632314 to:0.058292991969480845 in:0.037889522208997196 was:0.035486090111862774 a:0.03277831520841599 be:0.02993909980507852 is:0.021492638467572805 been:0.016319288425974923 are:0.01622912479566914 were:0.01571120940653339 at:0.013800451447349702 by:0.013390998935139781 his:0.013046404338315144 an:0.011587498063993411 he:0.010436524486303292 not:0.009967845652912184 or:0.009888058570455908 :0.37395006310419904 +:0.04059676730202151 .:0.02321028422926573 it.:0.018753979446414947 them.:0.017188071215212493 him.:0.015486274696176531 it:0.014223630199637481 Mr.:0.013340460682019915 her.:0.012650627393370018 me.:0.011205525499413439 time.:0.008344481936836425 ::0.008111379129044206 ?:0.007714495990550543 day.:0.007601929940645242 It:0.007064268402720656 I:0.0064262305847751925 follows::0.006268791891090487 life.:0.006192641519590878 -:0.005561121072518463 country.:0.005514613922706462 :0.7635444249459893 +and:0.07359963406644195 be:0.052667135004264946 to:0.04483536256874564 of:0.043448293679263235 the:0.03579172892628988 in:0.028005289969665195 was:0.026700397492138477 is:0.024892551934152005 re-:0.024162182625676702 he:0.024086629517294657 are:0.02098604388819216 from:0.020307931541148256 a:0.018606881911690538 or:0.018077853608073062 for:0.017195224169077532 been:0.01615904189338184 I:0.015254891559368164 :0.015184018660626356 which:0.015016145996292442 :0.464022760988217 +was:0.10865849600256025 he:0.10720768981864537 be:0.10433221260584777 and:0.10075083197415662 I:0.06468303415301475 is:0.054839538174447915 were:0.03587156170450335 are:0.03308265401483692 who:0.03151672793901549 He:0.02890469334317496 she:0.027330371221682942 been:0.02395275359314459 a:0.022309885481080354 to:0.014992251814325381 had:0.013464522661644626 they:0.013001719245268736 She:0.01260158665313898 lie:0.012196307431197142 will:0.012194190941258985 :0.17710897122705485 +of:0.3970550921661551 in:0.08025147340494135 to:0.06538675493119896 and:0.04940811086556186 by:0.04241069367299063 from:0.038694327994258856 on:0.037869253650082355 at:0.03418872398753242 that:0.030849822445777716 with:0.02686973838350785 for:0.02408690815455478 In:0.01771941214960844 as:0.014975808517630154 all:0.014260984938163706 upon:0.011689481725896895 when:0.010980212514768505 before:0.009512905547182237 through:0.006573824826338146 into:0.006515103393726417 :0.07970136673012365 +of:0.09129790931378902 the:0.07369883040827747 and:0.047842263382354346 in:0.04189055351593407 to:0.04045875475680249 a:0.03542341257202578 be:0.02020462051672066 for:0.01979292654746225 was:0.01760256398103379 at:0.017380150555488715 is:0.014984483003968216 with:0.014047653760730413 by:0.01374644383819499 :0.012670486581795598 In:0.01200961464556976 or:0.011563835749786333 from:0.011391516893522809 are:0.011273104484969465 that:0.010755276030689069 :0.4809655994608848 +there:0.02857164578368788 mortgage,:0.023111858169687954 ;:0.022964551423944605 it,:0.014281774319489465 cause,:0.013666658848416783 mortgage:0.009947571699450538 them,:0.009654406906161163 States:0.008080896103483936 you:0.0072751410293408255 to:0.006791881820187349 in:0.006192996714117222 here:0.0061120783670455805 him:0.0059643006119834575 and:0.005935724290155448 time,:0.005916641927246794 or:0.005688733813164402 it:0.005535867779291132 States,:0.00550408478386518 :0.00545520317734303 :0.8023479824319372 +the:0.19749125756169547 Mr.:0.07112699624208033 of:0.06603367254516487 The:0.05768776091110846 and:0.05327374818694666 that:0.0420321405581567 a:0.02582588575453538 his:0.0169326573605278 Mrs.:0.014795070048324819 tho:0.014769024234222154 which:0.011478554728659614 he:0.01110833274239838 as:0.010988112958762878 I:0.010409931249854676 in:0.010294293477152827 :0.008879223773482728 to:0.008465710829358392 for:0.008281932125153052 if:0.008197991279302505 :0.3509277034331123 +the:0.556099976110498 of:0.09760983005142018 an:0.07901140012597514 The:0.05154638926896706 and:0.02759221150856829 tho:0.025780190967549178 on:0.016616884347393578 in:0.015947793692873736 by:0.013077357139681691 tbe:0.011319989163183726 that:0.010340304761832874 with:0.009444908454452079 said:0.007724999439647263 our:0.0074397719729459326 every:0.007356823699621784 any:0.006831397371604135 a:0.006693241514199465 from:0.006680541797855302 North:0.0063214304246398765 :0.03556455818709061 +the:0.16807735899698817 of:0.10541662057906837 and:0.05138367848570702 a:0.04141865232648221 to:0.0385989743764065 in:0.026264864977736738 was:0.019530675665220657 his:0.018900421021236905 be:0.017373825006196972 their:0.015767721170721456 for:0.01557246589796783 with:0.014071419046630446 is:0.012922913111931644 at:0.012690452250034052 are:0.010702713108721902 .:0.010158075558988393 Mr.:0.009672788574483367 tho:0.009612591781990074 were:0.009549306361446321 :0.391314481702041 +of:0.2607177877192432 in:0.2344702988058659 to:0.10200436425914318 In:0.05218668185366141 for:0.05069808437566538 by:0.0426697337205356 with:0.029548632118696593 that:0.028613744344799186 from:0.026068510736482482 and:0.025701887336214566 at:0.024857764555330748 into:0.018866707245224403 on:0.01486588781857915 upon:0.010566484594282183 all:0.009898002911849071 as:0.007872805369727245 through:0.007604961514643783 under:0.006997935691393994 over:0.005715293109878956 :0.039074431918782966 +the:0.40525578590542927 this:0.29700993078795707 The:0.044636223359381846 our:0.031026053870853196 that:0.02975701424356924 a:0.028605539903693942 his:0.024078352065224837 tho:0.023871632402183426 whole:0.019705353415844555 This:0.011482448271232485 of:0.01110517354540601 their:0.007966781659532728 her:0.007228341780040754 other:0.007090375570871876 every:0.005184637566896221 new:0.005118639921566536 tbe:0.005113285374227002 surrounding:0.004860405918092857 entire:0.004468220056598265 :0.025435804381397916 +out:0.05477516666486384 number:0.04595991888921155 amount:0.04142871478341473 matter:0.030810375345415635 state:0.027264663106905982 point:0.02171570062272583 time:0.01932133077275749 day:0.0191475949773384 kind:0.01894490610228047 tion:0.01880575545030716 line:0.018710273977731978 cause:0.017991653807622316 and:0.017448110583759703 full:0.01737076254791719 loss:0.017258484941084843 place:0.017258163603655476 men:0.017142455190616177 years:0.01627793243416405 system:0.016275203952278765 :0.5450928322459484 +the:0.39304291566487487 a:0.09624002809933772 of:0.06502001417360986 and:0.04760819149838975 in:0.03455864437224566 tho:0.02193379521466496 an:0.021635446274360284 The:0.017508508129641 or:0.01698862008940202 their:0.01631651197252068 no:0.016109021437344283 this:0.01349266703606862 any:0.012828811330990314 his:0.01281914772896226 to:0.011832616852081278 for:0.009902114803518393 that:0.00974156352941184 its:0.0095291975521444 tbe:0.008695392679435815 :0.16319679156099598 +and:0.10402992543013229 that:0.05019092486459068 as:0.042727286857862486 which:0.02533234897998449 the:0.02508012675128413 of:0.022857658890955417 but:0.02193945521435193 :0.021424796317566188 when:0.019315947107283828 an:0.012160285773421877 what:0.011117510159342807 to:0.009847883387652535 for:0.00930937210305684 .:0.009110448322906767 a:0.008401418459977729 time:0.008210823708437065 on:0.008144468143099519 so:0.007721425325186425 said:0.007692928980800737 :0.5743849652221062 +of:0.3377798998477186 in:0.07921116703541464 all:0.07765346503697265 that:0.06623558247070657 and:0.056282800384572396 with:0.045274037854450104 for:0.042005233097760775 to:0.03188132041695229 as:0.029722331223916976 by:0.025525574438949566 on:0.02347613661744845 upon:0.017750279892046247 In:0.016920577694536077 from:0.01613240951961591 make:0.015907330740709515 but:0.015852574718345232 All:0.014210801841179803 do:0.010226210714630347 With:0.008830354088193057 :0.06812191236588075 +of:0.15228615714659027 in:0.10914342603580839 to:0.0909303899443956 or:0.07426861756455914 at:0.0692521571486688 by:0.06404202189002287 than:0.0527205288797469 that:0.04653740184530424 from:0.040694221585239686 for:0.029405932723220413 with:0.024721255834489135 and:0.02457335606004531 In:0.02065655153617346 without:0.02035117078642811 as:0.020218139497596224 if:0.019034976550610646 on:0.01839153482471619 have:0.016868183170019795 under:0.013590537671391458 :0.09131343930497335 +one:0.1028303141280697 part:0.05963429477052991 out:0.04766456937681193 some:0.031418679026461914 members:0.030764490253327767 side:0.029940657362655835 portion:0.022063658796890564 office:0.020457735219956013 member:0.019726706386316174 end:0.019666887540649894 tion:0.018667441728710307 parts:0.016814747270460957 people:0.014112771422418794 all:0.014072739582212475 any:0.013183573287639892 One:0.013083578354183906 that:0.013024335602903442 account:0.012482348155001894 many:0.012077825070275192 :0.48731264666452345 +one:0.02598915282963828 in:0.022654725269009135 right:0.021053798666322947 up:0.018836644144545674 him:0.01582616569902133 hundred:0.015805199294958612 time:0.014425197848484688 ;:0.012068200037138972 good:0.011138254543920595 out:0.010967669624115715 men:0.010195137833451027 down:0.010020166329627775 long:0.00889966985089936 man:0.008651015544719419 made:0.00807819199167003 them:0.007914983205760132 it:0.007902466077945031 :0.007873102564276833 relatives:0.007797085447999231 :0.7529031731964952 +the:0.12973186750634652 of:0.08551285269394816 and:0.06829940079331581 a:0.05309170030240411 to:0.05009184195785064 in:0.048030786141888354 for:0.02644048045008063 that:0.01956444413610825 an:0.017530164127799994 which:0.016737924294948792 by:0.014524563466795228 In:0.013697095666163249 with:0.012775000028077549 as:0.012580244008544116 be:0.01225333284951581 or:0.012138732103834947 I:0.011847653240230724 he:0.011764502812640036 was:0.011081228550771897 :0.37130618486873523 +is:0.12117128872088766 and:0.11881740404859546 that:0.11345189975102166 by:0.08682614201876718 have:0.0838695510381534 had:0.04970874642418852 of:0.04786363102489169 was:0.040366706325256886 has:0.03657215994243199 be:0.033755514089550166 with:0.028057121930683427 but:0.025880381368726595 as:0.025266712811188533 for:0.020439299793071807 Is:0.016239357164602314 are:0.0158641808113577 in:0.012176581131259773 which:0.010597100000738628 to:0.01036380972766466 :0.10171241187696196 +and:0.10431247533733769 of:0.09127107022460487 that:0.031316088401216476 when:0.029366801444471593 to:0.028174072758985192 said:0.02809589801033592 until:0.016187423773325313 the:0.014566034907667428 by:0.012714746092631818 for:0.012553178032650361 When:0.011701431749028485 before:0.011586707020366262 which:0.011442396204321217 Mr.:0.011139838073391492 while:0.010535712545506075 o'clock:0.008319260274504484 as:0.007832270522692149 it:0.007314852951730135 on:0.007279490196905938 :0.5432902514783271 +the:0.23219392763373167 of:0.12711315839531173 his:0.07773310408931992 their:0.07430286628849554 and:0.06688351987507946 a:0.03659088955400454 its:0.029223942621093707 an:0.026227705364325987 her:0.02593680064032791 or:0.024724119680740862 public:0.022546182455253937 was:0.021030785571822117 to:0.020788833020861982 is:0.0177659127088927 our:0.017152721366886236 your:0.01670111391361636 very:0.016154372780809414 no:0.014486103887783616 as:0.014344847717046446 :0.11709909243459586 +of:0.1504492314350784 at:0.09185511747527926 to:0.08985996792983726 in:0.07585882759479469 the:0.06858288766491584 from:0.04555357171313486 on:0.03737460144429599 and:0.03642070495631585 by:0.03243923818574548 with:0.01566224869705125 In:0.015611005325141519 At:0.0094591719239616 :0.009159553802731622 for:0.008693195059898365 between:0.008481771208199885 On:0.00804347504865208 near:0.004470286852512874 that:0.004431945313867421 From:0.004314315870731462 :0.2822788824978543 +of:0.17341076177986015 in:0.09778503589346846 with:0.07687993352530992 to:0.06771955029669766 for:0.06379588384379918 and:0.06083211630927779 is:0.05033954249380208 by:0.04224208624897803 was:0.03837561567773229 that:0.03140633142552258 as:0.030751857142835883 on:0.02906871088786001 not:0.025358532142115545 at:0.022660746042307417 In:0.021372239553404483 be:0.02126529270857861 from:0.016644106392106825 have:0.016618739157072293 make:0.01459544818575466 :0.09787747029351615 +the:0.34883778329584075 of:0.1112970249793813 a:0.08604629601190272 in:0.0781138454928937 said:0.03236200494640861 other:0.02836499545854639 and:0.02731756707812038 large:0.02396704452920686 two:0.023449728492374425 tho:0.01888963096459119 for:0.018424201269038442 this:0.017414820971476543 The:0.016625390965944228 any:0.01468377496800194 In:0.014139352636636798 great:0.013049555443476153 his:0.012514997957874203 three:0.01110068207082631 our:0.01026178722484307 :0.092139515242616 +able:0.05991411164777996 time:0.05526477982170044 began:0.050355907313442534 and:0.04622592691746416 him:0.04427132984340467 enough:0.041840329294427187 is:0.034913041676346825 as:0.03388664181116643 right:0.03320007842524788 necessary:0.030489713618271668 made:0.029583759324173012 them:0.029191295658431083 order:0.02602249612582114 me:0.024425377950866627 ready:0.024265118312510523 unable:0.023964910230323787 desire:0.021886581785292566 was:0.02142894787960919 wish:0.021287801019037864 :0.34658185134468245 +instead:0.22161189576698032 Instead:0.07363933586002344 capable:0.049581981661114743 purpose:0.03360133925911741 number:0.023892083355491745 sum:0.021641850198648137 amount:0.01858249641614495 rate:0.01786744270190212 question:0.015018323352469906 out:0.014860006935157351 line:0.01353927047336126 way:0.013297958364303393 charge:0.013251645448668697 work:0.012998005897451384 stead:0.01267383302924627 danger:0.012548822025114707 distance:0.01218123054550344 tion:0.011173674667810902 cost:0.010338692860405715 :0.3967001111810841 +with:0.13818668069056797 of:0.13059057611664002 the:0.12732348479573655 and:0.12254313237226487 an:0.07621524468646554 their:0.037310646454459515 no:0.03704466068300214 any:0.030448421496481366 as:0.025616325594654727 or:0.02520014121871928 much:0.022840847523063285 great:0.019879766647296803 by:0.01795530927249688 for:0.017148501313079087 one-eighth:0.01714739680440184 public:0.015025352220424474 his:0.012895436797486073 bear:0.01278480697344329 such:0.01225552058505477 :0.1005877477542615 +and:0.09694470971854181 as:0.05473523987853626 time:0.03791285116459882 order:0.02791169588098174 power:0.027809733987368048 necessary:0.026726397101839525 right:0.024188615601857647 go:0.023762676496210243 is:0.02315298483720357 went:0.022821623582789708 it:0.021494707402909846 going:0.02122448250618037 day:0.02087181606236721 him:0.019986587324910248 way:0.01891335095614641 said:0.018377589119924976 them:0.018131724662075792 able:0.0179245448697547 about:0.017656978416490464 :0.45845169042931266 +the:0.1482013259963789 of:0.0993379315565894 and:0.06499484115810877 im-:0.027623055550954328 a:0.0172976504274443 :0.016380019744577975 .:0.013883853906650322 for:0.01343149925452878 two:0.011623458634349807 all:0.01062891826192892 at:0.010491891355014573 in:0.010216466854860625 as:0.010165466683530315 other:0.009879581572668867 West:0.009382325990422316 our:0.009354482490122697 American:0.008702123944654966 North:0.008690914359227885 school:0.008612674665818904 :0.4901015175921674 +of:0.17670347485071888 to:0.10893338362463437 and:0.06172439353871703 in:0.061305776804796284 that:0.046825947948998164 by:0.038136856921593854 on:0.035356176183577 at:0.03485360477360651 from:0.034113433496136915 with:0.03206693830503773 for:0.02557650838846873 In:0.014516091605882079 or:0.01378425024128492 all:0.01034903124028852 upon:0.008924486574119603 about:0.008269489256403062 as:0.007397911629864393 under:0.007376424435988042 up:0.007208016559024638 :0.26557780362085925 +it:0.11059240984942034 they:0.07767333573102544 he:0.07516986506436855 and:0.07038011382697938 you:0.06604427028887651 I:0.05483916545536321 It:0.052576855821118776 which:0.048225132366590664 we:0.03800369440251921 that:0.03415518744577369 who:0.033780321938383144 He:0.016444395872062992 They:0.016405399808154697 she:0.0163875081900199 We:0.012689645820954127 You:0.012627386232148161 but:0.009655610013905488 there:0.009306174479407516 This:0.009110369767453016 :0.23493315762547518 +and:0.1571591445363558 day:0.13896153558007232 time:0.08547027498564837 that:0.053568444654943446 but:0.04210179438390512 o'clock:0.020375605614311332 night:0.01951816998494299 as:0.01926613090705923 times:0.018521961051681385 or:0.017693147474674844 was:0.016242952191138818 than:0.015797743768890597 morning:0.015401468993877726 him:0.014920723461335201 days:0.014890256069024874 said:0.013393843142078936 year:0.01281922952551779 when:0.012381297282192623 for:0.012326412735009276 :0.29818986365733935 +in:0.14991590318206124 of:0.1209398591194837 to:0.07834451347458347 with:0.045025032336516446 from:0.040918792491704215 for:0.03873328231398388 on:0.03234496445481239 and:0.031933724423831564 In:0.030166085650422156 upon:0.024097054184417405 by:0.022092548519012798 at:0.01839849579321132 through:0.015515935853952044 under:0.014946303696290079 that:0.010036824260624957 after:0.008568029538749444 over:0.005750480427829716 into:0.005026873105518554 but:0.004961068937205892 :0.30128422823578876 +of:0.09129790931378902 the:0.07369883040827747 and:0.047842263382354346 in:0.04189055351593407 to:0.04045875475680249 a:0.03542341257202578 be:0.02020462051672066 for:0.01979292654746225 was:0.01760256398103379 at:0.017380150555488715 is:0.014984483003968216 with:0.014047653760730413 by:0.01374644383819499 :0.012670486581795598 In:0.01200961464556976 or:0.011563835749786333 from:0.011391516893522809 are:0.011273104484969465 that:0.010755276030689069 :0.4809655994608848 +the:0.11919516938815296 of:0.07230453158552728 and:0.05781056740443249 a:0.043018564803886335 to:0.031305092790907506 in:0.020848713353460488 at:0.014270110001066288 .:0.012526810245749479 :0.012413283442322082 for:0.011719122709941797 by:0.010808400946589808 or:0.010404172990115616 The:0.01003576004804544 with:0.009811868184449042 tho:0.009295902015355835 was:0.008924239095331684 that:0.008672304223433876 is:0.0085591147338948 be:0.008335143826716943 :0.5187411282106204 +the:0.21003382952764246 a:0.14184600860075736 at:0.08436860940563867 to:0.072272310871404 of:0.063016157488001 an:0.036042708889412835 and:0.033758847590138946 in:0.03292833342074458 from:0.02131052397946945 that:0.01938670914160757 The:0.017417745671498047 for:0.01603691236169851 tho:0.013761746400846944 which:0.011846261806097389 his:0.00981783600375027 :0.009603233159061711 as:0.008643577905087093 any:0.008617259799892 on:0.00824720490665665 :0.1800441830705945 +the:0.29656480845829675 this:0.08974613982250865 an:0.06383000284808966 of:0.050040699501471414 and:0.03213354785421668 The:0.030456758969843865 a:0.02430938791952649 in:0.018676552992289975 tho:0.012641410392628111 any:0.010028979660840811 to:0.009859681903813934 that:0.009545753441637701 new:0.00923977666158486 said:0.00887228486574359 :0.00828325242126115 for:0.007559047186644796 his:0.007360900424964128 no:0.006819346664093815 Panama:0.006704379872087477 :0.29632728813845616 +a:0.3112043754443534 is:0.11581984720418023 the:0.10833538399390541 are:0.0734739504970693 was:0.0678100827510741 be:0.05739736514338587 were:0.027865522810101784 not:0.027639654883691966 and:0.024700189802301892 been:0.020305035213563728 Is:0.01817758727671161 of:0.016499466082759182 or:0.00994488704247893 in:0.009604938019110141 A:0.008474087370608853 some:0.008253800914450094 The:0.007833339618207705 very:0.00716247670144306 with:0.007074948073352693 :0.07142306115725001 +that:0.16832451653748762 and:0.16317551195275604 but:0.09202228048090219 as:0.06626898981545905 which:0.05056182452516285 if:0.034268175887251145 when:0.0327999336955599 where:0.02391654490512962 But:0.021638226096886436 because:0.020516735853829505 of:0.017875962661562897 And:0.017367123587138943 for:0.01715484095146282 If:0.016077584172624653 what:0.011042818726600803 though:0.010176208114312196 until:0.009969674033922531 while:0.008769541776912644 think:0.008148981878890557 :0.20892452434614764 +few:0.1396909145726097 ten:0.08895829852938193 thirty:0.08180612287234196 several:0.07191970490219292 three:0.06800351016981987 sixty:0.05722486047628169 the:0.050935747706014965 twenty:0.049338368734164584 two:0.04822840938909215 five:0.04102523010260651 fifteen:0.03017284182091513 four:0.0297091900354865 those:0.02716097046319306 of:0.02483406475035874 some:0.02177535735809621 early:0.019034036336714414 six:0.017097900709827613 many:0.01678346872952004 forty:0.01627888969069728 :0.09902211265068474 +the:0.35495952808008635 of:0.12201961290599163 his:0.03847536815588977 for:0.03243582423132123 and:0.029494874771094415 their:0.028659991865098558 The:0.02646856433334 tho:0.024782478240926175 all:0.02331971937245871 these:0.021914288751494666 both:0.02034163474923005 our:0.01836601529058368 a:0.014577963824473014 or:0.013757438888606265 other:0.013475390128870215 few:0.013229401819408309 to:0.012824153558045122 my:0.012565872262195188 that:0.011934419041644233 :0.16539745972924244 +miles:0.045250737425052236 and:0.03686887294595564 away:0.030652459186352597 came:0.027902089322931242 feet:0.026291406417613305 taken:0.0210476904953682 come:0.02011866584360454 up:0.019773184954566345 far:0.01798460950109033 them:0.017702665276005187 back:0.0170172065096367 received:0.01696622819123483 him:0.016734462333106312 returned:0.0167281430140686 letter:0.016008781472787437 made:0.015330654603401293 years:0.014239502989304698 year:0.013372608395421223 out:0.013248636737988692 :0.5957613943845106 +made:0.10339790485523824 and:0.06113033745555116 accompanied:0.03176832064502027 held:0.024829738500112403 ed:0.02473703959998484 owned:0.024569010279241982 shown:0.023953154203335512 taken:0.023372275252871073 given:0.022576589679574724 up:0.02131603087250302 was:0.020745754824619045 caused:0.020031156549916253 him:0.019258829384485927 done:0.018778669113483398 presented:0.01869497556450723 occupied:0.018418681001761132 followed:0.0182923481291191 paid:0.017086187905118778 out:0.016295785993007662 :0.46974721019054827 +and:0.15563598083930374 fact:0.08711133430257853 so:0.058396464404789995 is:0.0579273243303576 know:0.03891059414000834 believe:0.03502353458944794 say:0.02956643029162141 was:0.0244460879735422 found:0.02198426212440242 but:0.021647450971207037 said:0.020296919668606115 think:0.019452871708646135 stated:0.01753336395586828 show:0.01665691069363014 of:0.016641414712527034 given:0.01606702283810136 see:0.013748934150150846 to:0.013612160583704404 ordered:0.013591989952554125 :0.32074894776895235 +the:0.06174399065715909 Fifth:0.04489631099046844 Lake:0.04243250130192677 Pennsylvania:0.03909934714214436 Central:0.037644156599650806 Third:0.036135348367013 Summit:0.034563803774251826 Jersey:0.03431178633728762 Union:0.030794621749978775 said:0.02425436904874166 Grand:0.02417821486612634 Sixth:0.018513034000607432 and:0.015172276482523787 of:0.01362419521251567 Second:0.012700803135879405 an:0.012478485584469306 Water:0.012240070219390442 Missouri:0.012072926986333122 Southern:0.011714567499472696 :0.48042919004405943 +that:0.13227653913813653 which:0.0996445824511745 and:0.07867645746906639 it:0.0740381062551002 he:0.07194265513154424 who:0.06823158900277321 It:0.050215282178278677 there:0.04966199965507073 never:0.03417318056112608 what:0.027643623785423642 This:0.022329072693402285 or:0.021950055815515505 than:0.01773176407898963 He:0.017655759040707618 That:0.014484805285986812 nor:0.014230256082838903 she:0.014223412873942153 this:0.013961089361571935 What:0.009675401858310818 :0.16625436728104015 +be:0.25252743764085817 was:0.15370124445325187 is:0.09114944119964677 are:0.06199687931510777 and:0.0572160102888718 been:0.05655755377863565 were:0.04689785330564037 being:0.031612005438312864 he:0.022822254540717166 well:0.01809425600837029 not:0.017315897082109337 it:0.013651328499961467 who:0.010417636303580958 bo:0.009275176268495838 have:0.009030788260261251 also:0.008794010098830855 fully:0.008307497154321664 all:0.007513255534371653 Is:0.007370722398746999 :0.11474875242990727 +the:0.09887960814278356 and:0.07805002790338182 a:0.05748742759715528 of:0.04968890178373734 to:0.0468125891883352 for:0.02568350965929213 that:0.02036399551055671 will:0.017772211426702086 in:0.01662815778361048 would:0.015623063052480795 or:0.013396833121801698 more:0.011606714478102216 an:0.01124928064952448 which:0.010997050757608238 :0.010764236826943238 not:0.010011562278104685 no:0.009214665514744274 The:0.008910162856845842 with:0.008492228740776936 :0.477367772727513 +the:0.13157228473399482 very:0.09240367989030175 of:0.0917970573985762 a:0.07582118209156011 so:0.07487479311593909 feet:0.07065178067677128 as:0.06793660010944072 and:0.05494424018935605 too:0.037979646499707954 with:0.03142011146273442 is:0.028228902018366052 in:0.02179754962731726 for:0.0206910982366364 his:0.01910031545197825 are:0.018262473788214613 inches:0.015301962139939496 her:0.014878924018020703 be:0.014012943852507823 by:0.013685837324508865 :0.10363861737412816 +and:0.1348697059735844 the:0.09294195578389501 is:0.0681166849290136 an:0.061607805351258364 was:0.056187543956910675 are:0.050632737107065506 be:0.048760473078411276 that:0.03803703854022345 been:0.03413065668828682 of:0.033844266914297275 not:0.03237267033972225 so:0.029814839194277163 were:0.02857622590068066 as:0.024770860586721143 to:0.022626437770911577 now:0.0193368276800794 or:0.01746715791536723 which:0.016953964439522188 very:0.01662419744140716 :0.17132795040836485 +and:0.09528652095671128 of:0.0707049884058599 the:0.06227568616638856 to:0.045780075774981714 is:0.033858212566795914 I:0.02699680532910966 be:0.02617298604191724 there:0.025378866512316557 or:0.02497563118898234 he:0.023749603072870787 it:0.023445304997880542 was:0.023199983894036536 no:0.019585778912589148 not:0.019190083013751958 It:0.016331720824039154 will:0.014872156379405102 are:0.014707444952823594 that:0.013323480494497367 have:0.013084895760252381 :0.4060797747547903 +of:0.10034048735852319 the:0.09027957005122532 a:0.08888265821713888 and:0.06648048971806728 to:0.05085389878800766 for:0.026961054512232435 in:0.02582733018481774 that:0.019820733179979157 at:0.01941008435230604 or:0.016884061255958743 by:0.016174826863433817 :0.014464790566652657 with:0.013987150971226414 an:0.011997251883561178 as:0.011095178750021799 In:0.007746776422857575 from:0.0076823421496659775 I:0.007602303175140678 their:0.00734579820856229 :0.39516321339062116 +the:0.16883506074108198 of:0.10345999980581193 and:0.07765091647747123 Mr.:0.042646070294986925 a:0.03676854853394007 to:0.02730423700154303 The:0.023555615107356022 .:0.020409359832543682 by:0.018024363299732695 in:0.013897353732280127 for:0.01331089079449869 with:0.011100144844755954 that:0.010788179786794411 Mrs.:0.010587736569899649 or:0.010484845999064638 tho:0.010440233278329509 :0.009960897908832863 their:0.009790656798233792 his:0.00974718170240166 :0.37023770749044116 +and:0.09500881008555331 well:0.06206658951236029 regarded:0.036935028935535894 him:0.0314142794209011 known:0.031077052056542338 soon:0.02700320061470986 it:0.02623085774473942 is:0.02438162343435629 but:0.023839390993020203 used:0.021720637341540703 far:0.02045890976727103 just:0.020384524333195254 much:0.01971667289504282 such:0.019521581813054578 them:0.016090407278819097 was:0.015694381145043425 so:0.015081118446204548 act:0.014529263549522683 that:0.014487886332689187 :0.463357784299898 +the:0.11919516938815296 of:0.07230453158552728 and:0.05781056740443249 a:0.043018564803886335 to:0.031305092790907506 in:0.020848713353460488 at:0.014270110001066288 .:0.012526810245749479 :0.012413283442322082 for:0.011719122709941797 by:0.010808400946589808 or:0.010404172990115616 The:0.01003576004804544 with:0.009811868184449042 tho:0.009295902015355835 was:0.008924239095331684 that:0.008672304223433876 is:0.0085591147338948 be:0.008335143826716943 :0.5187411282106204 +and:0.10448534917824807 be:0.08171069961564176 I:0.06239258633249749 was:0.05777846975880958 he:0.048185704675846604 have:0.03267572090620419 is:0.029446328271452844 had:0.026261300835235365 has:0.02227486190747953 were:0.020959658692018705 it:0.018605940993376743 He:0.01847346808656342 been:0.018052662718181862 are:0.016802446904871 but:0.01549611746385298 her:0.015138484699619007 that:0.0147079652024565 she:0.014176849321287634 you:0.01214431229542498 :0.36923107214093176 +of:0.14042029990700297 and:0.05787272111949515 in:0.04606535585587745 that:0.03813052160878751 for:0.030662086630565615 to:0.027101773669004056 by:0.013249896293572287 from:0.012375120557372027 on:0.01136148417664756 things:0.010877752650735763 at:0.01060217853825977 those:0.01011155449812826 but:0.009714130050723 In:0.008003285823300251 with:0.00792046145487122 one:0.007762337513795671 after:0.0074002801872349346 ,:0.006422580625946773 upon:0.005730115536154709 :0.537216063302525 +a:0.31325648591072414 the:0.1961047437029134 in:0.09342694900131826 of:0.05147509630312898 and:0.045463019519326145 no:0.03412930377380272 for:0.03342844645575427 his:0.027095815171260654 with:0.023889976480655307 The:0.021835889947874366 their:0.019478519774917123 to:0.019059337754229917 In:0.015505299388560356 any:0.014266989608680664 very:0.012121745664309833 an:0.011217183560451817 by:0.010856634109392938 its:0.010507237736014606 A:0.009474839134850838 :0.036406487001833625 +the:0.4071374189315913 and:0.06449181461132415 of:0.02892866618288876 in:0.028670005984162618 The:0.02603617389223924 tho:0.024993820467459137 a:0.023579040051412606 to:0.01755553213771617 on:0.014626070241060114 by:0.013447843485786471 or:0.012794166593089693 tbe:0.012024509152999897 :0.010353482361299817 that:0.009291482237329618 In:0.007938246807075932 from:0.007526799010378873 other:0.007469196869028889 all:0.006409533041696086 for:0.00626887758057738 :0.26945732036088327 +the:0.12121889617759754 of:0.10616428623597994 and:0.06279377063062133 to:0.04443105126523003 a:0.02684618977981027 Mr.:0.02181995955751748 or:0.01707871449065802 The:0.01641817916234158 as:0.01628545334849087 :0.015685475544925057 his:0.013061493467101849 at:0.012983294969208272 .:0.012768574993045746 in:0.012699407558767981 for:0.012402898191955801 be:0.010236503725812817 was:0.010111534958071574 that:0.009537112446838913 tho:0.009264907576382236 :0.44719229591964266 +the:0.47514739922389115 said:0.1154166025559935 of:0.05157113178044179 tho:0.020670303145336476 his:0.01921192305669476 The:0.01428855101296282 a:0.012774964852172367 and:0.011476300790574767 this:0.009718939642270424 York:0.009082842267387488 public:0.008964519640917813 tbe:0.008773398533825876 that:0.008753258526258495 in:0.008426595699671312 our:0.007972199941746264 District:0.0073113115343213485 their:0.00685622097664343 for:0.006679145453224246 State:0.005995629143366147 :0.18990876222229955 +it:0.11057468705753506 and:0.07728746994594157 they:0.060283559446515596 I:0.059688318844228275 It:0.05516530159586596 he:0.04903508834773295 you:0.04284858758207349 which:0.03705488787670906 we:0.03572574544548089 that:0.02444660510702173 Nor:0.020243131172363007 He:0.016040377908436366 there:0.01521714528667802 who:0.014151638831549424 They:0.013676993598447838 This:0.01360009072018255 this:0.012376425239521475 but:0.011173003295279494 she:0.010996472388330658 :0.31941447031010656 +number:0.07442791864608685 line:0.041734904563526354 state:0.034853031803368933 State:0.02328502809163291 county:0.020201385158503258 city:0.01965951616288133 people:0.01693896407878578 out:0.01655235999199496 quarter:0.015992366106261265 class:0.015129070674096363 rate:0.014423915031365815 favor:0.0134021126464438 thousands:0.013215702923946054 system:0.012949931711698517 matter:0.012935916258060471 bushels:0.012862732476029823 tion:0.012752876717024186 and:0.011969198228285537 one:0.01176388164815194 :0.6039491870818559 +the:0.5336146945033711 a:0.15505240589443678 The:0.0681854294964775 tho:0.03815355667702619 and:0.017701504704473698 any:0.015013024054090666 tbe:0.014910394320416907 this:0.01222557476238023 great:0.010177888850111297 in:0.010171620041840725 or:0.008927585195202349 that:0.008606894356557253 every:0.00832750995478444 A:0.008319588645327206 of:0.008250468602861345 said:0.008113499204012114 one:0.006930111354017299 other:0.006821248014883988 whole:0.006511295387555074 :0.05298570598017389 +of:0.16619058935702724 for:0.12044974449543193 in:0.10696767942773364 at:0.09242838589886228 to:0.07510263054797903 and:0.051948329026927066 on:0.04267241240678403 that:0.02924324294347193 from:0.027644822789148427 with:0.02714433536022409 In:0.02466508454945828 by:0.01985822142474662 up:0.01634638435802232 upon:0.015624639296893398 after:0.013629880319732845 until:0.013575288308720002 during:0.012108536685335047 before:0.011863928142512298 about:0.010697959541831068 :0.12083790511915848 +one:0.07591276261110715 out:0.06051731193170748 part:0.05247657393880051 some:0.03764565803631056 account:0.03732080875142556 any:0.025795501308866122 all:0.022573497570587936 that:0.021706034880474935 tion:0.018820497961324994 time:0.018327338823311803 and:0.017698472540372448 use:0.017101246342976464 much:0.016743309263569286 portion:0.016424352739351607 side:0.015150320706867294 end:0.014971280442338157 cause:0.013657752568417643 because:0.013563549560043006 reason:0.012998228641295377 :0.48959550138085167 +to:0.12022893700269083 and:0.09020394424291768 the:0.08587503820055309 of:0.06450042443224316 in:0.0310058468700829 a:0.017742048521183405 :0.015548046036689871 not:0.01491307651316237 that:0.014112408707955496 for:0.013734482372212283 I:0.013065769926808477 will:0.012848502316304782 at:0.012837991177321897 In:0.012628718855091186 by:0.012491091048660757 be:0.011425930130217754 is:0.0113962101007567 he:0.011342727513475473 or:0.01112522537451577 :0.4219735806571561 +the:0.32296148562658666 his:0.11612625890490456 a:0.09832980235478936 of:0.03684776338432331 their:0.03600182265079791 said:0.025417506233113663 our:0.023943493363560105 her:0.02268589764235446 in:0.017009276901323415 its:0.016522335199497324 my:0.014976426487870719 tho:0.013936225421582939 own:0.013148235081536973 your:0.01253550060042933 this:0.01242785249453591 to:0.009411345950264001 such:0.008420521437931823 tbe:0.008333407206093919 at:0.008198771656055181 :0.1817660714024484 +of:0.11991539953177491 is:0.09592811023872119 was:0.08270052324759233 for:0.07241310607405783 and:0.05889534882347672 in:0.056246007950661175 to:0.054858165716815704 with:0.048744837457760176 as:0.04546319741763238 be:0.03419987981348978 that:0.031957592911326486 by:0.026285382340855836 have:0.02346460698794155 on:0.021274176056767433 had:0.019865775091493818 made:0.019745109751595408 such:0.01961565871182641 make:0.018180263272022094 but:0.017162487890432135 :0.13208437071375664 +and:0.14186288735856983 of:0.11286137087322588 in:0.06434803058432999 for:0.05811553458882973 to:0.05312382598389064 by:0.04261887847139536 was:0.02798703731726308 In:0.027895034772466736 or:0.027793948220791113 are:0.02713713909945728 that:0.02455531654093863 at:0.024367239731543484 is:0.022919655799795387 the:0.022626164200574613 have:0.018907008508235536 be:0.017374574007524107 not:0.014541503942735137 were:0.013324734609358693 been:0.013243031479802655 :0.24339708390927212 +of:0.2500174617332177 in:0.2077104296799512 for:0.08173847501626974 at:0.05928233497491661 In:0.047685822784981485 by:0.04555660961584291 with:0.03391791199340562 to:0.03388237374224685 that:0.030706412525553006 any:0.029637378677915785 and:0.023299045385538453 from:0.01965542883643285 all:0.018904675946172143 upon:0.01684899390264248 or:0.01339352695307529 on:0.01099579657667424 under:0.010059635106168053 no:0.009438150893106623 within:0.008488327634799444 :0.04778120802108951 +sum:0.015264990909639524 out:0.010469624548822214 amount:0.010268768642269844 number:0.010252144109883224 Board:0.009915489778488978 day:0.00934391924304638 line:0.009159513299813713 county:0.009058268073362647 purpose:0.007929238102727576 and:0.00784672009005394 city:0.007535183166758685 part:0.007294147380644756 case:0.006189609631311928 time:0.006139795834628276 that:0.006097569449880835 tion:0.005913104914262385 town:0.005848644229223571 use:0.0056842696333859015 state:0.0055904354376684826 :0.8431985635241271 +be:0.16976641658651093 was:0.1500603631246142 been:0.1279564862452373 were:0.06998248855726039 and:0.06018760810604112 is:0.042069425568422025 have:0.04185443144450961 are:0.03905118296694814 he:0.03761612991581567 has:0.03118623788041507 had:0.02936530497289889 being:0.023037323206657846 I:0.014857565073198718 not:0.013778001907368373 bo:0.013628352221044906 the:0.009426175502342376 well:0.009281016288388101 Is:0.008881704753590347 having:0.008471986356227453 :0.09854179932250852 +provisions:0.0679938503985306 copy:0.06201617447249093 date:0.05159752313646957 part:0.050661532655167846 one:0.04272232046411394 out:0.039198262926626565 people:0.03688333605300589 publication:0.031622932748407565 members:0.022148687792528047 tion:0.01953442712364951 laws:0.019086435714135187 result:0.017976916451795253 object:0.01720022560087386 portion:0.016216616046388216 that:0.01583665345861985 all:0.015799046403021585 member:0.014650050293503455 passage:0.014513299284273402 purpose:0.01444493434085836 :0.4288967746355404 +the:0.1454500361787387 of:0.1080247151493501 to:0.04516715868785427 boy.:0.036249098323069925 and:0.03403580073245388 girl.:0.032660326140049385 a:0.03171979252021135 in:0.02714044436566853 for:0.02365213940166824 be:0.021942286684630472 their:0.021087116084698817 his:0.019774122064073623 was:0.014637031197642503 with:0.014008395154201525 are:0.012730720509515858 is:0.011363112041341867 as:0.011357870543086747 from:0.01063391638067422 were:0.010589399829418696 :0.3667765180116513 +of:0.2161680004262712 in:0.16066626002532491 to:0.09623419000827109 and:0.07272534650320998 with:0.05147855653377772 that:0.04932158451809372 on:0.0437742597682876 for:0.035339194287210385 In:0.031187553376101677 by:0.02528864462215842 from:0.023149280723377064 as:0.01859854002107871 upon:0.01546375192903363 over:0.013112352176263857 all:0.01265171717848815 up:0.012376830129444478 but:0.010518948357513387 or:0.010225893179524796 made:0.009491589138982296 :0.0912275070975869 +the:0.4572201762854995 The:0.06344553674912574 a:0.05500828595996872 of:0.050886264916182 and:0.042293628304237295 his:0.032841607180531654 tho:0.02721860079271567 in:0.025676011804058353 for:0.024304096082640465 that:0.015841701069833205 to:0.014799975275184977 this:0.014303857825082747 their:0.01209311816969929 or:0.011987876960729333 tbe:0.010584443442021056 from:0.009816916776121341 at:0.00968169199367694 In:0.00958120794396962 next:0.0094994367064698 :0.10191556576225229 +the:0.5180453735996314 a:0.06611336766119762 tho:0.04298725460869974 of:0.03933909774864387 The:0.03681980341567562 and:0.0332731356109519 that:0.01819500721329681 tbe:0.01778181057085067 our:0.014617764332211432 this:0.013827894736532457 to:0.012516452079725236 his:0.012332495298400204 their:0.01138418008198664 by:0.011091402138667612 in:0.010508236234165597 its:0.007839371988527096 with:0.007818887795801963 said:0.0070748630249330025 great:0.00699915744994227 :0.11043444441015884 +the:0.12434008139118409 and:0.08134274679511559 a:0.06293587551684046 of:0.060793034543467364 was:0.02585880078774995 be:0.024562360292072052 Mr.:0.024068700369467382 to:0.02118173978366289 or:0.01788291028088914 are:0.017268069218679922 were:0.01602763370769634 is:0.01496917307827886 he:0.014871605175487123 in:0.01440829791023271 that:0.013946422324442678 .:0.013580576638725665 The:0.013549258650442438 I:0.01316269150988956 been:0.012704799361668054 :0.4115452226640078 +as:0.06931392982974462 according:0.052071562389565784 up:0.0511867300210483 and:0.040371568633051955 went:0.03351644485287816 back:0.032358406609281 regard:0.03073407747799069 feet:0.02852138506231652 down:0.026379903432040268 owing:0.02466642634685871 due:0.023695193974505355 go:0.022910973192184297 reference:0.020802802907016128 came:0.019883741951819873 sent:0.019874244915639484 attention:0.019565955494145405 come:0.01885185084678811 given:0.018792390567602263 it:0.017366961307524745 :0.4281354501879983 +such:0.13935432662393532 the:0.1075674232248907 same:0.09302991515776363 this:0.06953803804397972 that:0.06387587770570374 some:0.057197885074761354 other:0.048390204871062076 and:0.04349268385771396 any:0.033250571492420576 a:0.029878589492440728 all:0.02923627573398557 his:0.025947589162945664 their:0.021073286604993614 to:0.020407181137578036 each:0.01931035654646845 much:0.01634537614697758 certain:0.01586542465834528 of:0.015265733988439436 one:0.01346188036957927 :0.1365113801060153 +feet:0.10284387065660866 went:0.06746386423667082 and:0.0457828269640798 according:0.04493207877933815 go:0.03887756712411939 them:0.02422524651518533 him:0.022160252735810747 sent:0.021410309448644964 came:0.01680536801159446 returned:0.01674765884986937 back:0.016397803932363696 up:0.016350708078084086 chains:0.015551420962551547 down:0.015295995305476711 going:0.015152815299204236 belonging:0.014587073559631658 return:0.014451804508976495 regard:0.01401443165562705 given:0.013627988966968268 :0.46232091440919454 +the:0.364827755084173 The:0.15111148626167895 a:0.09626035112018659 this:0.04625420584322346 of:0.03455748989098584 This:0.0315806784223599 and:0.02670880943024804 that:0.022998818852889614 his:0.020760266037572184 tho:0.02023145569514663 no:0.015586624370379753 His:0.015122870318355483 A:0.011069839252805889 Tho:0.009910932944976449 little:0.009875952579125541 our:0.009588721223844066 her:0.00956250764366701 their:0.009369278854772243 whole:0.008738030771799023 :0.08488392540181036 +I:0.1408045065368801 he:0.11448264741380577 they:0.0919386637220633 we:0.08437877907637614 it:0.07229538039774988 you:0.055449183270732165 and:0.036850138042659755 It:0.029470278363863962 she:0.029442873864399453 which:0.027310241936794932 that:0.02287910896794697 We:0.022656265540461944 man:0.022558986842136388 who:0.02168010006683674 They:0.01536485212918366 one:0.015001901914402807 there:0.01354789294757738 1:0.013457047074645331 men:0.013397446353624602 :0.15603370553785875 +of:0.1367563137810595 to:0.11082438473072895 and:0.1063006715958543 in:0.06342823004706219 by:0.05946628589290805 was:0.05206622014471825 for:0.04913073624588034 the:0.04075798653738074 with:0.036360568459326156 a:0.026569908688765406 were:0.023862643166242026 from:0.023010579278900215 is:0.021628974311079564 his:0.02048346782756904 are:0.01915506664967116 In:0.018180934012048903 than:0.014722308899446807 on:0.01448429045512228 after:0.014112737921066251 :0.14769769135516986 +of:0.14842329130424534 to:0.1449029223687603 in:0.08921192669837766 for:0.07819497308300936 and:0.07714492189574676 that:0.06881161073904653 with:0.05324796634975068 by:0.04283821745682227 as:0.028693652190387442 under:0.023329203211726088 at:0.023252862589864035 is:0.020777495803076845 In:0.01969642400880403 from:0.01674673717652223 if:0.014835492463659205 was:0.013495222669116453 all:0.013296875209241926 but:0.011806468103414363 when:0.011412090629273765 :0.09888164604915475 +as:0.06558366575694856 and:0.06349565833438726 right:0.04093489507813995 go:0.03613974119452551 made:0.03586876260006912 time:0.03456818852257562 subject:0.031659094340184615 went:0.030516824333661735 him:0.029667493005438944 or:0.02931489152565525 able:0.029209668306016855 necessary:0.026310428195399273 them:0.025982836869293917 power:0.024822978685345512 way:0.024006888090732557 order:0.023983262618483266 up:0.023755219622468217 is:0.023516687821740264 according:0.022382985662486362 :0.3772798294364472 +the:0.18288351414813825 of:0.18051329188468113 and:0.12466833959860409 to:0.08741111691752511 a:0.06482949610076513 by:0.032691478938013205 for:0.03157472006196407 in:0.02752544489460446 with:0.025551503203245684 no:0.02011304366967191 as:0.01874555889749205 very:0.014120044383105301 tho:0.013969344073252921 make:0.013453032634784052 have:0.0131447538006713 that:0.012784165364370497 from:0.011631203045865658 their:0.01153426809664848 The:0.010967496878805827 :0.10088818340779086 +and:0.2011864876864113 the:0.10543262861665513 of:0.06987040172625497 is:0.03841841296671353 in:0.03798846953771051 was:0.034264872201487634 a:0.030834493268112304 as:0.028779280894127596 are:0.026197448096940957 be:0.02377236807423027 that:0.023559223341242535 have:0.017272488509983093 to:0.01612502655055714 been:0.01461956952298803 or:0.014062395213336493 were:0.01395932285075383 In:0.012491523289953184 with:0.011450218473949786 had:0.011443418146435822 :0.26727195103215584 +the:0.2785967470722467 last:0.11105644787449065 at:0.06729386827379201 Saturday:0.04676289452402168 a:0.041676100446299734 of:0.04025857998330619 Monday:0.03508889404691842 that:0.030128057744947576 day:0.0250217478984533 Friday:0.02429233858457668 this:0.024272272426660028 and:0.022577471064185745 Sunday:0.020479467628713357 The:0.01934901712926731 Tuesday:0.01666144931427622 Wednesday:0.01639259235110774 all:0.016235454894767336 Thursday:0.014949379831308606 tho:0.014101902556508275 :0.13380531635415244 +was:0.22060585400929478 is:0.16647074267389897 are:0.0993240160416498 were:0.05896460556953183 and:0.043215598858992406 did:0.041411748442881965 do:0.041148285937933356 had:0.039554629598826246 could:0.030014284009573868 have:0.02856605644990639 does:0.026245147866138817 Is:0.023998428401440015 has:0.021994260381451865 am:0.019390805693029742 will:0.01683924221592006 but:0.015870546078386526 if:0.014298213723735097 would:0.012695812540553814 be:0.007459825714460426 :0.07093189579239403 +and:0.07359963406644195 be:0.052667135004264946 to:0.04483536256874564 of:0.043448293679263235 the:0.03579172892628988 in:0.028005289969665195 was:0.026700397492138477 is:0.024892551934152005 re-:0.024162182625676702 he:0.024086629517294657 are:0.02098604388819216 from:0.020307931541148256 a:0.018606881911690538 or:0.018077853608073062 for:0.017195224169077532 been:0.01615904189338184 I:0.015254891559368164 :0.015184018660626356 which:0.015016145996292442 :0.464022760988217 +the:0.12705526289994734 and:0.114041913406469 other:0.10585498676240866 all:0.05576041852947052 this:0.048616393261462235 these:0.04272676535301113 of:0.03198193461732421 that:0.030675132500659525 by:0.030484454434402612 which:0.028653591890806147 many:0.028323222085879625 two:0.026796702665363867 for:0.024794634393092995 various:0.02409964035311984 It:0.01883624264991086 This:0.017516958567732655 as:0.016974747813813473 it:0.01649634174791155 some:0.014119841293269668 :0.19519081477394407 +;:0.026091211071328592 it,:0.020694725543600336 him,:0.014437232602704108 him:0.014224042469641748 them,:0.012018018667397287 in:0.010379879480545395 us,:0.009984107799288718 time,:0.008210047470528824 time:0.00706833730928623 be,:0.0068426525340385975 people,:0.006617580139026455 country,:0.006598752755322771 them:0.0065276428575912334 years,:0.006413694014780963 here:0.006250117508734548 up:0.0060439607250959045 me,:0.005910115339637736 up,:0.005889149237010761 and:0.005878658967069742 :0.8129200735073701 +it:0.1942126173345281 It:0.10576751722720416 there:0.07919594658562142 and:0.04688445984136255 that:0.03120969651056967 which:0.028415257910662607 he:0.02446835340778837 more:0.018333500135446757 one:0.01775254351029788 There:0.016568763067359042 this:0.01613627790875774 as:0.015625120773338615 what:0.012084588249117402 who:0.011078521451752399 This:0.009707593313388068 man:0.009591434720614094 work:0.008344945412858407 country:0.008035927857463154 time:0.007372391331018709 :0.3382145434508509 +of:0.1719898540313477 in:0.14573982582919362 to:0.14568059751278525 on:0.07718814959541706 for:0.06374301800843635 and:0.05142176957174415 that:0.05130892454745525 from:0.04205728726084415 In:0.03449714226440399 with:0.031755567736287627 at:0.0277366035207096 upon:0.02005181873020451 by:0.019665242586135532 into:0.01126535074973827 as:0.009488982214438953 is:0.009217167594864769 through:0.008086067425726526 which:0.007975420681131567 all:0.006893604610440727 :0.06323760552869444 +the:0.12052318959341798 and:0.0832418969128368 of:0.06811733732527955 a:0.0366635274487625 to:0.0361691046137437 be:0.031690749005512074 Mr.:0.03141165498553569 is:0.023235290082753664 or:0.022298105593797746 was:0.022257010195187985 are:0.016493591293808944 in:0.015859432030715874 as:0.013410078207954262 at:0.013389546120030103 been:0.012899471574921436 that:0.011778208092091532 :0.011656379999221587 The:0.011296143226051414 for:0.010606611436299939 :0.4060026722620772 +and:0.08879738838525081 held:0.03317150401162665 was:0.030893071447506564 that:0.02941485385378923 it:0.028858296660680467 out:0.026555576613829773 up:0.02532572518607089 people:0.022265490337185116 him:0.021752500436236086 made:0.0216237358933447 men:0.021278767594236924 is:0.021234909033992954 them:0.02033806253641403 are:0.017815329534685655 here:0.01768859852401541 placed:0.017537117742737748 place:0.0174106352452036 but:0.017063188495195548 found:0.016745917385932937 :0.5032293310820649 +to:0.7041349569915881 not:0.048940326839874565 and:0.038449810419262286 will:0.021413942344733643 would:0.018472446554114397 may:0.015130887104235536 of:0.014872164333798156 shall:0.011615435179585978 can:0.011094772887324337 or:0.010385441390188542 the:0.00884420031450455 could:0.007500661819007476 should:0.00708507632980994 as:0.006505011677073235 To:0.006444166387339031 for:0.006054464992787683 I:0.004992476148620365 must:0.004818545266641704 be:0.0047856270395772275 :0.04745958597993324 +of:0.09129790931378902 the:0.07369883040827747 and:0.047842263382354346 in:0.04189055351593407 to:0.04045875475680249 a:0.03542341257202578 be:0.02020462051672066 for:0.01979292654746225 was:0.01760256398103379 at:0.017380150555488715 is:0.014984483003968216 with:0.014047653760730413 by:0.01374644383819499 :0.012670486581795598 In:0.01200961464556976 or:0.011563835749786333 from:0.011391516893522809 are:0.011273104484969465 that:0.010755276030689069 :0.4809655994608848 +to:0.5781920369639918 not:0.08243568640259227 will:0.04976698323763136 would:0.038680616182092974 and:0.030955590817766727 can:0.021834219471062906 should:0.01897025879549886 shall:0.0168921065612012 could:0.016235560322923698 must:0.014416577133907593 they:0.012433549844689399 you:0.01210377046799447 never:0.011545325049664162 we:0.010718365033658904 may:0.010607948511488802 cannot:0.010335080594749933 or:0.010074202053055325 who:0.009174978887102038 I:0.006326685351135987 :0.037300458317791586 +of:0.08980370155688801 and:0.08745160701467034 to:0.07981789638725817 the:0.07897756289326979 in:0.06547920728135845 for:0.03328519724405148 with:0.022101612220508292 a:0.018908236036877614 In:0.015616405616449502 as:0.014123941542961468 that:0.012303216653026583 an:0.01181157959699589 by:0.009014129771109736 their:0.008381986835209281 or:0.008116909171363663 from:0.008094441556840047 be:0.008065422156626242 which:0.008033179055168701 is:0.007505960374913745 :0.412107807034453 +the:0.1293351901689112 and:0.10582664665241895 of:0.06604366077056814 to:0.04560654359446725 at:0.041900192879498026 a:0.040552178709910514 for:0.0334701140176683 about:0.023613907328459093 was:0.022438339434939503 be:0.022340122701540555 his:0.01604122387441331 in:0.01577369921462874 or:0.015239626675244786 is:0.01451437553557435 than:0.012818850966269335 not:0.011398280912701095 their:0.011051639933619467 more:0.009298133539151605 tho:0.009086337112561928 :0.35265093597745384 +and:0.1152364181823203 of:0.11008194448521082 to:0.08493825901667455 know:0.08471156784391441 see:0.03906070506757924 or:0.03843851407360475 but:0.03807965927488356 is:0.0355248756778203 in:0.033515157199075836 for:0.032320193629996545 with:0.03143110144542382 do:0.03133273204939256 matter:0.03105962772677041 just:0.030336168395699137 from:0.028462359095143608 that:0.020317068965716677 as:0.018533927307039816 Just:0.017829143576230718 But:0.01747790827797099 :0.16031266870953195 +hundred:0.013633628820093018 ;:0.011172311961148602 him:0.009807052834026905 one:0.00914669734384353 feet:0.0090219372983598 up:0.00838318558829166 mile:0.007527126877816727 feet,:0.0071805242500254255 time:0.006879602834379732 man:0.006817451499927337 it:0.006300585667639516 it,:0.005903705234588485 out:0.005451849962934835 :0.00538718305729827 ,:0.005295204710281874 and:0.005240008239108335 here:0.004938150073064577 water:0.004837308913464981 them:0.004796443021708541 :0.8612800418119979 +he:0.12879664016307185 it:0.11922802641824383 It:0.09335541588155127 and:0.07900049383180799 I:0.05778352156206617 He:0.05327048358019599 which:0.046898880477235554 there:0.04112137875177858 she:0.03683423554746559 who:0.03432675045369068 that:0.024609834834040976 She:0.017982562974116333 this:0.014502067402848273 There:0.014492143930135199 This:0.013023601735508464 ho:0.009790745152641967 lie:0.009218731648325179 but:0.00857285210802122 1:0.007645167666399469 :0.18854646588085547 +the:0.35707872149665376 a:0.08462567120172867 of:0.07257830474186679 to:0.03414597604555096 The:0.02708493507850168 in:0.02274418895740627 and:0.020271504444714573 tho:0.016049233177483174 that:0.013247657282665904 at:0.01181030062988658 as:0.011294849054953543 :0.010147788971925968 tbe:0.009181991192683148 by:0.008986457163089562 or:0.007653465757087282 from:0.006750433560588768 for:0.0061893142727648225 In:0.0060173824669543146 with:0.005979412377190129 :0.2671624121263041 +a:0.21779558908473357 his:0.20139906088508647 her:0.10487609773141794 my:0.06287630456139819 the:0.060791551540804824 their:0.033970988645768155 and:0.021505597533142146 was:0.01740829948937547 your:0.01274759086948334 bis:0.012747180000262141 our:0.011550619954270603 not:0.010204809395473418 A:0.008363846340142448 one:0.008295947285075295 is:0.00781828006055593 eldest:0.00771264260271587 be:0.006581218937517089 The:0.0054810109641900175 little:0.005306392841298294 :0.18156697127728877 +the:0.39304291566487487 a:0.09624002809933772 of:0.06502001417360986 and:0.04760819149838975 in:0.03455864437224566 tho:0.02193379521466496 an:0.021635446274360284 The:0.017508508129641 or:0.01698862008940202 their:0.01631651197252068 no:0.016109021437344283 this:0.01349266703606862 any:0.012828811330990314 his:0.01281914772896226 to:0.011832616852081278 for:0.009902114803518393 that:0.00974156352941184 its:0.0095291975521444 tbe:0.008695392679435815 :0.16319679156099598 +the:0.3916276235151951 and:0.09644083786093365 a:0.08681079689062632 Prime:0.04163095543046013 The:0.03800353912201804 tho:0.0315884720432328 of:0.024319730338398623 or:0.016477583522705657 tbe:0.01414302111820794 old:0.010550659611794976 said:0.010314281731551609 that:0.00958046851419921 by:0.008947938461441927 high:0.008198545428812572 to:0.008159493592308076 A:0.007928008618566887 Grand:0.00677139821855005 free:0.006561011509883695 present:0.006273497097636988 :0.17467213737347576 +the:0.39749834532651884 a:0.07520030034269234 and:0.05540858759821703 The:0.03273515726769502 tho:0.030061875542463562 of:0.020144331424922633 tbe:0.014929647509541684 in:0.014268129706664795 or:0.013333166761078447 .:0.013287381914101323 an:0.009000188755386574 to:0.00880680429595084 :0.007943763822197133 Mr.:0.00773879605474787 by:0.007328417831573476 as:0.005922572098978465 for:0.0047526933692942485 that:0.004736121968310169 on:0.004594595720579333 :0.2713091226890862 +the:0.24047582596666967 a:0.12013963739559833 and:0.07246959505820512 or:0.0487797186588329 any:0.043472616442118715 that:0.03910320536726662 other:0.03263598356781973 some:0.03051099301144128 his:0.029611261961252716 all:0.02913717131231283 The:0.02804193055955235 their:0.02401542226160588 those:0.021391473352365076 of:0.021096775685378672 no:0.019045966139633597 to:0.01802283070430111 our:0.01637559916032614 tho:0.0151726065768447 her:0.014112288528216112 :0.13538909829025847 +of:0.13665999187636912 the:0.11282951105761768 and:0.04374086320646421 to:0.02896436790371606 a:0.02660967602789636 at:0.022219614996261107 on:0.021232202099453555 in:0.01888711815341489 .:0.016672176908267486 his:0.016291066959897148 was:0.014304355443546144 is:0.01359454449738477 by:0.013170393034282383 be:0.013012742361267721 :0.01262954977485601 or:0.011939327256727906 for:0.011642294578988644 with:0.010844184905153506 an:0.010710461407289073 :0.4430455575511462 +the:0.14263925600758334 a:0.09690163576774828 every:0.04256816426331336 next:0.041784738067004376 one:0.039227980646235325 that:0.03720287372485663 first:0.03581234578478962 this:0.03191148597944906 to-:0.025686119349746808 per:0.024429882249481057 1st:0.021254523190975018 each:0.020611071707981845 from:0.018263137561412617 of:0.01825231550355299 to:0.017643965359786167 same:0.01661216352984527 all:0.015320986776033017 other:0.014114525545109552 second:0.013417734889137509 :0.32534509409595813 +have:0.34061426288561225 has:0.27778058649477816 had:0.21008761689608113 not:0.04735233590568259 having:0.03469269931602805 never:0.014460467689341127 ever:0.008021143747403151 lias:0.007856703316407154 bad:0.007542629937935665 havo:0.006111310777107946 already:0.005439975157225874 just:0.0051622766089862646 always:0.00370060626814526 yet:0.0033496436952616024 haa:0.0027622954482360517 long:0.0022088398364679828 baa:0.002073760514461359 also:0.0015404745527701832 recently:0.001473543190813022 :0.016768827761255135 +to:0.09749257770986998 the:0.09551206399013314 and:0.09354319224337997 of:0.07480932460768112 in:0.02967229660085893 a:0.025579896041081792 not:0.017538510939051802 I:0.014890048771587954 be:0.014454354650863947 or:0.013502879084097318 he:0.013420350455248153 by:0.013217729847265764 for:0.013182212294170192 is:0.0128700234264903 :0.012502131012163752 at:0.012352874503725284 that:0.011267247520049631 this:0.010977319699742834 In:0.010892947902981794 :0.4113220186995563 +him.:0.03223261037518833 :0.027842009485837434 it.:0.021539222041022973 them.:0.014119511622474335 years.:0.012081736095051934 time.:0.009859917475975788 life.:0.009831973831321835 himself.:0.009805918104561533 and:0.009172192649262384 country.:0.008860459277688042 man.:0.008343675269455031 again.:0.007495194541575465 day.:0.007255854519303681 home.:0.006546833117810101 work.:0.0064738377256352685 her.:0.0064319911338348214 city.:0.006381553593182795 world.:0.006236692484784478 death.:0.005995057443105816 :0.782493759212928 +the:0.11919516938815296 of:0.07230453158552728 and:0.05781056740443249 a:0.043018564803886335 to:0.031305092790907506 in:0.020848713353460488 at:0.014270110001066288 .:0.012526810245749479 :0.012413283442322082 for:0.011719122709941797 by:0.010808400946589808 or:0.010404172990115616 The:0.01003576004804544 with:0.009811868184449042 tho:0.009295902015355835 was:0.008924239095331684 that:0.008672304223433876 is:0.0085591147338948 be:0.008335143826716943 :0.5187411282106204 +and:0.13109458284982103 he:0.12673111746397742 I:0.06781299744512959 they:0.06611297656024273 be:0.04270844080917832 who:0.037104760419496306 have:0.03440311443003459 which:0.03169855760809953 we:0.03057821134127032 she:0.027082596631439512 that:0.02434446322941616 it:0.022843213221347743 He:0.020210503686800652 had:0.019692309930845753 has:0.018583612458551595 They:0.015652365905405793 ever:0.01417153544178428 as:0.01405877711438693 men:0.012037278645088315 :0.24207858480768346 +the:0.8014305507701333 tho:0.028958261817713396 this:0.025767604572484427 a:0.01758589162091632 The:0.013956457561166325 and:0.012091202225569763 tbe:0.009918426795238612 of:0.007877829358501133 our:0.007304063137332474 in:0.00619480037889002 his:0.005483365592660941 its:0.004327299720180872 an:0.0033429644954015973 to:0.0031896798633921425 their:0.002996280996015146 said:0.002017354059275298 or:0.0018770750931865615 new:0.0017761572875057512 that:0.0017042638649516645 :0.041200470789484286 +and:0.05954826800200673 able:0.04668638322633569 order:0.044604147860743466 him:0.0386265639301963 is:0.037952755253664684 was:0.03608034278118964 time:0.035788742053291994 had:0.03422850577743171 as:0.03375615948603487 have:0.03325378431854452 enough:0.03265489613643173 refused:0.03217993653985935 willing:0.031954089052473225 necessary:0.029379811072967266 unable:0.029231642185726107 ready:0.02728452641965818 want:0.022311327375082984 desire:0.02150886685695491 going:0.021449676184255563 :0.35051957548715107 +the:0.6599632477356879 an:0.1164243894514674 tho:0.031023288664663737 The:0.028454042040133836 of:0.024319845880519955 and:0.019972277496897527 to:0.018284009177778955 a:0.013518810418669192 tbe:0.01339745240115197 at:0.008486473606055823 our:0.00827067594072511 their:0.007898914071836455 its:0.0072079931335514375 his:0.005724898885613607 this:0.0055649314951824016 by:0.004239668745162614 in:0.003946091232462187 your:0.0032169374958737817 for:0.0026783450165468385 :0.016407707110019255 +and:0.12163974343008718 of:0.08487040140996578 the:0.06909508972335131 a:0.04527319304779533 to:0.041697399153088524 was:0.03214834858122986 in:0.02853078088944407 be:0.023638776740558077 he:0.02100068394636209 his:0.020095219707972716 is:0.019396126654204184 for:0.019156758348618633 which:0.017041942010804573 are:0.0167753149209489 as:0.01614935229761369 I:0.014308130741075151 that:0.013614621006683874 who:0.012096727830750607 her:0.01150631135226769 :0.3709650782071778 +to:0.5015161913433623 will:0.12953107848913728 and:0.045118498781355605 shall:0.0448961302894294 would:0.03362937399560509 not:0.03009802740908268 should:0.023444878661113153 we:0.020871054715099376 must:0.019202514455159424 they:0.01725512591086042 may:0.016831030888938708 I:0.016526005894565775 could:0.014541182612521634 who:0.014328759160642716 can:0.01090169858478995 To:0.009152225539567864 We:0.00574584395863175 that:0.005195339644671381 the:0.00516471673191914 :0.0350503229335463 +to:0.3551118623196622 will:0.18416570627079135 would:0.09222349651605352 shall:0.06923449313285596 should:0.059210652447885245 may:0.05764479217230928 not:0.039136265784668244 must:0.0336923618155526 can:0.0162772715184777 could:0.010049342258443615 and:0.009706410708213743 might:0.009619788206371282 cannot:0.00797526557952189 it:0.004602813716378173 that:0.0035352755203408083 soon:0.0028884874624949637 also:0.0026701941411332785 probably:0.00263818462808796 only:0.0024268021551380743 :0.036190533645620145 +the:0.23640794427913628 of:0.23455047514019028 and:0.11185417739844906 a:0.033355949427772535 in:0.03051856985753972 for:0.022725748554193338 The:0.019336500013202213 with:0.017437052263766722 to:0.015853128273605258 his:0.014650448920444478 tho:0.013835967569173217 or:0.011071837687573811 their:0.011045079800775279 that:0.010688846942594846 by:0.009846226634082062 this:0.009677691557707263 good:0.00804765421855215 other:0.006562718946639988 In:0.006539083295781585 :0.17499489921881992 +get:0.053610422214488855 was:0.05051841536969282 and:0.04903958730444051 him:0.038801969319659166 it:0.037410018187455464 them:0.035569152369498175 are:0.03479460583298655 go:0.03206022460430166 come:0.03018624754922308 came:0.02989007710531499 issued:0.028538548420871033 taken:0.028387580006254076 went:0.026471193886938953 got:0.02591677196361888 growing:0.02512307536827857 be:0.024827416016109424 is:0.024256616056951556 served:0.023420563816567756 paid:0.022272217198545566 :0.3779052974088029 +be:0.1975032006975558 been:0.09494016371917134 was:0.07325317014610823 and:0.07167383906400675 is:0.04982538176036499 are:0.03400929935209356 were:0.032201265783147755 case:0.028083631094885785 being:0.02654734850992078 he:0.026288569186142297 which:0.0216588899646845 I:0.01358094004215466 have:0.013055494274251338 if:0.012325485789143853 has:0.011713856946527238 that:0.010885585983376146 who:0.010268173197325774 when:0.010130600099728238 bo:0.00817919045273067 :0.2528759139366803 +to:0.380658902870304 and:0.11676112252956915 you:0.04260183113798841 I:0.04098303650285224 not:0.033775751398152365 will:0.02455611816907769 they:0.02333591019196227 we:0.021134844467057632 may:0.019342767190292636 They:0.016900063808559875 who:0.014450765954179743 shall:0.014322237929094294 would:0.012446621922529114 should:0.012053863580086584 or:0.010915669611180597 cannot:0.010453808732722654 must:0.009583092620822676 1:0.009455278295205236 We:0.009415624490140207 :0.1758526885982226 +in:0.19448073146429218 and:0.11513764324790712 of:0.08883379826328731 to:0.07473324182623778 that:0.05444365585678093 almost:0.053235535944282764 In:0.04548168142410838 with:0.043111266065185165 on:0.04018817369642087 for:0.03643742076557053 nearly:0.031665197247756405 from:0.022467651511441214 by:0.02046266404889556 but:0.0188817751030822 at:0.012950750446513726 is:0.011497794261122208 or:0.01119108543593489 make:0.008469310465473286 do:0.008283848185408676 :0.1070467747402988 +the:0.42295122131920043 a:0.2139460813651684 in:0.1049858119624545 In:0.03362888514547533 and:0.027005819721724167 The:0.024914257156514862 tho:0.023277462630061516 of:0.018874176036555973 great:0.010479689880503266 with:0.010114803719359642 A:0.009667775469139906 tbe:0.008680661409737004 his:0.00839470987457803 by:0.007565872621226771 very:0.006407385809227237 to:0.005762491298373106 on:0.005345765379664033 this:0.004159337432511627 large:0.0039287593482268506 :0.048909032420297344 +it:0.15590291243815246 there:0.0887784025092866 It:0.07904016205387611 which:0.06936908824431676 they:0.05362226352982171 that:0.04647101454662571 and:0.04420120519214072 he:0.027952982163116303 There:0.027623278151575524 mortgage:0.023443129896555264 you:0.018859539766003214 who:0.017891862574647276 this:0.014117846301193209 I:0.01363040583752058 sale:0.011818751696880098 This:0.010767348085132659 work:0.010306262168963347 as:0.009927627839447666 They:0.008978002990569422 :0.26629791401417535 +the:0.43083263736349686 a:0.10834866727248789 and:0.06819306007091257 The:0.04525596964497062 tho:0.023928435513514215 general:0.02010437835770534 or:0.017344034359393825 State:0.015528082267494057 first:0.011001548668727257 tbe:0.00985260594036066 States:0.008487724795624232 that:0.008346593431189812 great:0.006903989269691192 as:0.006683144744351944 young:0.006473200461419539 A:0.005506272598242626 County:0.005435561006685595 county:0.005410034278782367 good:0.005166006462855598 :0.19019805349209382 +to:0.3053691410435787 can:0.1178104061740853 not:0.08582553903243695 may:0.07155688512252423 cannot:0.06942580505995286 could:0.053271733371948474 will:0.04736348629612551 would:0.03301045160954832 and:0.030650811197501647 shall:0.02518138835364166 should:0.02263233148633734 they:0.020729879594654218 well:0.01704235936261559 might:0.0134393336721922 we:0.011078659530544708 must:0.01095662364906653 who:0.009205715422969598 or:0.007860163202378683 a:0.006692246748224238 :0.03989704006967326 +the:0.41468301989421485 a:0.09003101655180483 every:0.07622558059322629 this:0.06990393668508535 great:0.032978833201219096 in:0.028449040580332634 tho:0.02539577424426017 first:0.02306939398292013 and:0.0227198050400835 any:0.019430295678328553 The:0.014526012583542766 no:0.013873126119065018 of:0.013153208756383728 one:0.013113515857456317 other:0.012310290307565712 same:0.010582769450416234 tbe:0.010535500934673878 that:0.01027439029970164 or:0.009389768718194162 :0.08835472052152515 +and:0.06999639427886148 was:0.06539335023948792 is:0.050493785656847825 be:0.04474509326687011 are:0.041902892421839165 it:0.030422096168131223 were:0.027999337636977664 been:0.024937242422718293 engaged:0.023092120594458903 out:0.02052952989520079 placed:0.020416745007547758 put:0.019983100630867206 up:0.01969041391596801 not:0.019340216558431923 made:0.018949209633874118 that:0.0189106135377501 them:0.018742712807894697 him:0.016641872563523872 work:0.01582479437575709 :0.43098847838699184 +an:0.6414445327547295 the:0.11768968204313737 this:0.02837033502750036 in:0.02420496349447229 and:0.019077982975528613 of:0.01685046503326897 his:0.011237121854023402 to:0.009993736922601994 An:0.00943245954318336 their:0.009336246794207683 no:0.007535794904161974 its:0.007203561750748279 any:0.006669502794346946 tho:0.006258147529666113 great:0.006105734658158597 or:0.005496127996058724 a:0.0053424249222361565 for:0.0052757244911919125 In:0.005231913339528501 :0.05624354117124918 +of:0.09129790931378902 the:0.07369883040827747 and:0.047842263382354346 in:0.04189055351593407 to:0.04045875475680249 a:0.03542341257202578 be:0.02020462051672066 for:0.01979292654746225 was:0.01760256398103379 at:0.017380150555488715 is:0.014984483003968216 with:0.014047653760730413 by:0.01374644383819499 :0.012670486581795598 In:0.01200961464556976 or:0.011563835749786333 from:0.011391516893522809 are:0.011273104484969465 that:0.010755276030689069 :0.4809655994608848 +the:0.4480599556353239 of:0.0640690251234647 The:0.04024400965051777 American:0.03869975458150767 colored:0.033414717187744705 young:0.031464372004032216 our:0.030908484061055997 and:0.02989321531206795 many:0.02612316641945719 white:0.01960979792421148 tho:0.018460620539515627 his:0.017512902590049215 their:0.017081133789681267 a:0.015789617594953533 some:0.013766999215400273 good:0.0130442822439691 by:0.012871854081065299 thousand:0.012748449817239708 other:0.010797502906417691 :0.1044401393223247 +that:0.2247058195771553 and:0.12444598076866151 as:0.10340331575861703 but:0.05252786319205245 which:0.050769030985074126 if:0.03298618537702247 of:0.02530949794898872 what:0.02052570595349911 though:0.01997142974548937 where:0.01885312819427407 when:0.015597663634982285 whether:0.013156391060427045 because:0.013022052569085101 than:0.012385597460382897 If:0.01082211854376921 think:0.01028941046704472 for:0.01005930882201031 But:0.00967271484698667 said:0.009278310536599867 :0.22121847455787774 +per:0.2783936143056565 a:0.26081500124136636 the:0.06394968841430228 one:0.05936966630304218 and:0.01564955916131102 A:0.011378367309230924 each:0.01135453922125535 to:0.010514635881447791 his:0.01030881559461897 or:0.009718889983165483 this:0.009290219807030365 every:0.007366958680463312 that:0.007083752755600925 first:0.006976752998378104 their:0.0067769932723390856 a.:0.006767230946650627 her:0.006391439753611392 of:0.006143494353544429 n:0.005750525163662246 :0.20499985485332267 +and:0.18775035787023342 of:0.07734755533964696 so:0.03796398513393401 is:0.0373336492328176 but:0.03248286566535418 fact:0.02841180498401587 was:0.025700345700503096 all:0.024958541111752306 in:0.02278600587996451 than:0.020826483404754813 as:0.02041909525895026 to:0.02035384890315486 said:0.017787843865828535 that:0.016039459251915467 for:0.01427707714990788 know:0.013896228179250267 be:0.013838734418130872 believe:0.012015578461390345 one:0.011224785259319523 :0.3635857549291752 +that:0.30103060374455654 and:0.11091477879403241 which:0.08544641617801958 as:0.03895465044676986 when:0.028742892325440684 but:0.02530072375145198 w:0.024586538864641943 if:0.022867636759884475 where:0.019004936079741023 to:0.016437145537601578 said:0.013993216050172239 what:0.012298886596857442 of:0.011364957025006246 If:0.01101109342942241 I:0.008782594019158702 then:0.008502802893665305 whom:0.008101065453983173 it:0.007779277982557996 says:0.007674621197745272 :0.2362051628692912 +man:0.12019096870522539 those:0.09511448517451856 men:0.08203458969138344 one:0.04202495852664872 and:0.036158883279390604 woman:0.02884078913947384 all:0.025232227143424924 people:0.020725770209544397 person:0.019368234777408653 persons:0.013298059710454578 Those:0.011428183281875276 girl:0.010689737862347897 man,:0.010302770086419923 he:0.008722856875430892 women:0.008627819783270551 others:0.00837363253062948 friends:0.007399281875179219 many:0.0066560737808815254 gentleman:0.0065880591423734935 :0.4372226184241186 +the:0.09071973033345174 of:0.08367550736958079 and:0.06771533748290566 to:0.0477492961991191 in:0.03343368212607263 a:0.03198895358652938 Mr.:0.02911307743629702 was:0.028202046696329745 be:0.018972375153143855 his:0.01809539829105366 he:0.01630287059784651 which:0.015701252662446052 con-:0.015169410406761683 :0.015166000543636203 The:0.014728658487574228 is:0.01438551798840256 I:0.014371931895697151 are:0.01288219608907996 on:0.012812086480314731 :0.41781467017375734 +of:0.09129790931378902 the:0.07369883040827747 and:0.047842263382354346 in:0.04189055351593407 to:0.04045875475680249 a:0.03542341257202578 be:0.02020462051672066 for:0.01979292654746225 was:0.01760256398103379 at:0.017380150555488715 is:0.014984483003968216 with:0.014047653760730413 by:0.01374644383819499 :0.012670486581795598 In:0.01200961464556976 or:0.011563835749786333 from:0.011391516893522809 are:0.011273104484969465 that:0.010755276030689069 :0.4809655994608848 +with:0.13818668069056797 of:0.13059057611664002 the:0.12732348479573655 and:0.12254313237226487 an:0.07621524468646554 their:0.037310646454459515 no:0.03704466068300214 any:0.030448421496481366 as:0.025616325594654727 or:0.02520014121871928 much:0.022840847523063285 great:0.019879766647296803 by:0.01795530927249688 for:0.017148501313079087 one-eighth:0.01714739680440184 public:0.015025352220424474 his:0.012895436797486073 bear:0.01278480697344329 such:0.01225552058505477 :0.1005877477542615 +able:0.0658608267970607 enough:0.046442231589664665 order:0.04508012521858414 and:0.04305147626676072 right:0.041665586565233066 is:0.04164680675692466 unable:0.03982818855642389 began:0.0362731060048713 ready:0.035880972045779475 him:0.03582625359016541 ought:0.034040777376664805 necessary:0.032934483398583875 want:0.03238185394793794 them:0.02915297291699012 allowed:0.028083197619811727 going:0.027081130015462362 attempt:0.02638675168099446 as:0.025526509126494932 prepared:0.025451710181173412 :0.30640504034441834 +and:0.11556519417565557 the:0.08481561130242181 of:0.07004505633234759 to:0.0341721636003462 that:0.024989712907709082 a:0.02033341508293078 in:0.0195282517879194 which:0.01857195564664746 will:0.01715996747418425 for:0.016368884390064373 or:0.014422145985509987 as:0.014111218851616864 I:0.01385069987486557 he:0.012904087368211841 they:0.012821621856491204 :0.01282033337760942 would:0.012423812591599326 such:0.011604284904520845 The:0.010395181332605091 :0.46209640115674333 +the:0.1449641844563986 of:0.08710595808597107 and:0.060639991043772136 a:0.038971050768985306 to:0.035497607287402144 his:0.022269846080904755 be:0.02150484315278025 my:0.020367185734705945 I:0.01891633058414471 in:0.01859493769918256 for:0.017350580101599025 was:0.01676359899750709 is:0.015084084537449449 their:0.013269247511876204 at:0.012718929570411921 that:0.01170468572340591 or:0.011400632554895979 it:0.011330438956791117 :0.01130401752938815 :0.4092418496224277 +was:0.08041547819431223 and:0.07083417447772648 by:0.06929655455553663 or:0.06159510319529897 in:0.052219709142375025 of:0.04873992234796041 is:0.04316100653817352 the:0.040686797422252105 are:0.0375877432103149 be:0.034845340407002955 were:0.03236954569938757 that:0.03013925280380203 not:0.02729611156666409 with:0.02632810974325501 been:0.02266505179928034 for:0.02003374904282336 a:0.01919185130882528 to:0.01839797108482871 on:0.01823436546494423 :0.24496216199523616 +it:0.13683728130599518 he:0.08644675988806634 It:0.08259484283170929 which:0.04488843093089855 who:0.04176513314553067 and:0.03996731940360227 He:0.03138953276889656 be:0.024496427336818328 that:0.019762285821833606 man:0.018333667141573088 as:0.018241255813166303 she:0.014328423899859987 I:0.010716562331472236 been:0.00832664417327814 ho:0.007597937834335303 but:0.007446010989737248 was:0.007274381292575982 they:0.0071906228832323334 lie:0.006805510741350966 :0.38459096946606763 +and:0.11953366206652041 of:0.0700496152536019 the:0.0616126423067796 to:0.043398592980070295 was:0.030298068260868255 that:0.027938347212503115 is:0.025445670355253212 he:0.023280659414478707 be:0.0220964840188316 which:0.0196277344658634 in:0.01766359325815826 are:0.017217834473374865 I:0.016910312344270217 will:0.01609768321409069 or:0.015771421981063332 as:0.015578799143154949 not:0.014662336520969228 would:0.013928548144511905 for:0.013517331493053529 :0.4143706630925825 +the:0.10597367530797616 and:0.0853527820525933 of:0.06360945035772735 to:0.06244267659896638 a:0.060444786386947884 be:0.04363603891749144 was:0.04190816975681049 is:0.031505771318292075 in:0.021161351642113184 been:0.020564667155655386 are:0.015605619303933057 were:0.01484114565833905 or:0.012862722596575497 he:0.011958272903710238 at:0.011725530623216752 not:0.0111810727073711 it:0.010571643524452942 will:0.009870006355904577 for:0.009564406893979365 :0.3542202099379438 +the:0.1127981523652143 and:0.07684755124471951 Mr.:0.05473872308592499 of:0.054208138675841844 was:0.035518952628019726 a:0.025130554520882843 he:0.02248047916082173 The:0.02194229569882588 be:0.01864759429040681 to:0.016658418379527157 I:0.016550602936458172 were:0.015976847661479974 are:0.015114763474043209 had:0.015015991912519743 is:0.013430778550526521 or:0.012728848088218468 his:0.012624968597398301 that:0.01245744462980803 .:0.012440959607097783 :0.433687934492265 +be:0.371090165591786 was:0.16457448618601422 been:0.1051317643813471 were:0.04714581464840906 is:0.03958891257346804 not:0.038918928788973114 are:0.033242251673310054 ever:0.023830033241405525 bo:0.01990707463735833 have:0.01930289255468925 had:0.01690088667058553 never:0.015872937018736936 being:0.0156258864538867 and:0.010660639131151457 has:0.007517754682856044 as:0.006993002011081548 he:0.005296448076956959 now:0.004800901517019875 Is:0.004488471965280761 :0.04811074819568351 +it,:0.014148469319265274 them,:0.012106282402887846 ;:0.011231076823704392 years,:0.008120947260203976 him,:0.008092083714155544 it:0.0068612401531854455 them:0.006719922961542344 here:0.006609496771132242 time,:0.00651283065522917 people,:0.00647725155012039 up:0.006461667003632499 States,:0.006250833056110011 ,:0.006185707297543601 him:0.005761607882388644 country:0.005753498061650375 street:0.0055770134357519124 country,:0.005479093767839063 year,:0.005428658383849134 :0.005202211367608725 :0.8600201081321994 +of:0.1111164353126835 in:0.08678504646063083 for:0.08542735697297792 to:0.06506194112886379 is:0.0641448319755299 was:0.06395910426537846 and:0.05359000686928723 with:0.052657085235622354 as:0.05261915881221045 by:0.044397731538769435 have:0.02996397191926298 had:0.026240276183487347 on:0.025933811491166595 be:0.02504823722507735 In:0.022883396167903546 at:0.021256703338390862 that:0.019985616684189925 has:0.018448596537251852 made:0.017930389461256704 :0.11155030242005896 +and:0.07895257911471103 was:0.03596317658514438 out:0.024016824392823457 that:0.023672598027062328 placed:0.022844208461019616 work:0.021707439938587154 made:0.020781005318872947 is:0.020224993929329655 up:0.019794182040466738 put:0.018288921183371155 down:0.0171740551508179 interest:0.01663630075189571 point:0.01659978677065351 him:0.016175999448187352 held:0.015562908663841706 Dakota,:0.014616466073415059 place:0.01424333231426501 Minnesota,:0.014067166610364513 it:0.013665465625771424 :0.5740125895993994 +-:0.050436334098561277 ai:0.04933368395627706 the:0.032234205055095014 a:0.02894925845991774 at:0.021450439643722584 to:0.02071449029023316 I:0.018617532968665258 in:0.017122785227989348 of:0.016425004227389618 e-:0.015368620218474975 sa:0.011551554862785167 and:0.011269584664639341 .:0.008980496778941175 i:0.008868002673825134 :0.008427788467148875 t:0.008425980597182043 \:0.007749830838844538 A:0.007616167045071321 1:0.006942442928448937 :0.6485157969967874 +to:0.6833734018292774 can:0.03799668056984043 will:0.03542529860972547 and:0.026597476941712855 not:0.024010333432356097 would:0.01912362376919868 To:0.013981183412831158 could:0.01311669612301893 may:0.010560695635417014 cannot:0.009247620293266404 of:0.009110871345686129 should:0.0074912436220221125 in:0.007268559658496927 for:0.007110528076248998 with:0.00679706949003582 that:0.005615644748442035 shall:0.005538561198705191 from:0.005432925354303444 must:0.004444802872148719 :0.06675678301726616 +the:0.7286476501224087 The:0.0488212171923422 tho:0.03503569297187394 and:0.023854549943240592 a:0.019822686466478404 tbe:0.013723583061088146 of:0.012116046191642858 his:0.009495854493859566 in:0.009026698165106754 this:0.007200816809994467 great:0.006935152326369442 their:0.0059331606076746075 by:0.004847266148361606 its:0.004181594296935665 said:0.003839781924521553 or:0.0036755330234703454 special:0.0035927017779842224 other:0.003499596838244687 our:0.003378970900189573 :0.05137144673821262 +that:0.23996455104954165 which:0.10024063106182961 and:0.09777347627598429 as:0.09470161902899209 if:0.04772730243700888 said:0.0352991398924888 when:0.02870134687623433 but:0.025915453357279076 what:0.017953892741692543 where:0.017865776453219268 If:0.01758042047362076 whether:0.015926272117422362 than:0.012201711135297237 to:0.012040249015934902 whom:0.01191853292093647 time:0.011771069816572062 before:0.010670197731855393 because:0.01019297412322143 for:0.008853027187758494 :0.18170235630311032 +of:0.11383398358546784 the:0.07456785972552855 to:0.05476883681807443 and:0.04323550181845868 in:0.040155689200449284 his:0.02597240356104815 for:0.024071905661215264 be:0.019051561492071534 a:0.01895436206547055 that:0.017502142659259864 Mr.:0.01728194333485854 is:0.017267732165496166 as:0.016770154793900035 was:0.01567786665632595 with:0.015308183335244243 their:0.015166157095080558 it:0.013360752064582567 at:0.012462709999781812 or:0.012262950884083464 :0.4313273030836025 +made:0.0999812034390529 and:0.06680208263369662 caused:0.02435411478715239 shown:0.02379785223577525 up:0.023253655008919294 ed:0.02312002180398423 out:0.022293807888227747 taken:0.021988971765594088 done:0.02128782706813444 given:0.020283609421760777 paid:0.017098570970207227 owned:0.01708227903067019 that:0.01698438626809451 or:0.016145946252097726 him:0.015808363688274 followed:0.015366441255538056 appointed:0.015126279845513936 held:0.013990473525433292 approved:0.013949758860964168 :0.5102843542509091 +he:0.12976820625117658 who:0.09221886342062384 which:0.08202145445505479 they:0.06808463273766263 it:0.06300140281566258 that:0.0536651199481747 I:0.04355172570140108 there:0.03694176174144522 she:0.03568475182996337 It:0.03445956439681276 and:0.03146500019799679 He:0.03013662272772511 have:0.01649641755291053 has:0.014869129143777082 we:0.01270748492222897 She:0.010037042499654298 had:0.010034468298945191 They:0.009824977349933048 ho:0.009403905633941782 :0.21462746837490962 +of:0.14558048296577653 and:0.0912763710369412 the:0.07291315112584464 to:0.04855702611873126 a:0.04584485427721027 for:0.02594160334548467 that:0.024088934987210826 in:0.022197836818756738 by:0.02194708209659467 as:0.01731381171495224 with:0.016775421369774605 which:0.01265202665018035 other:0.012501783499166119 or:0.012160729470614575 all:0.011553617074280821 :0.011198630237547294 some:0.010663105901464036 more:0.010238937609175441 from:0.01004806983292817 :0.37554652386736553 +the:0.19613502861034052 other:0.1597816856267048 of:0.1419558999074381 all:0.09824728180462854 such:0.03607032815506389 their:0.027840860961992113 to:0.02744054193771376 any:0.024345883970647738 these:0.019593255876542218 and:0.019161429759253744 his:0.01737422152777254 on:0.017371090492838262 some:0.017204990120136793 our:0.01654011457078011 many:0.01618675919676674 tho:0.013991013676960658 toilet:0.013886569958974889 by:0.013563356651670253 those:0.012629237393579884 :0.10968044980019447 +of:0.2880353966356578 and:0.07179544341900168 to:0.07049471104124753 that:0.06610774263483614 in:0.060455272986142485 with:0.05428225759151147 by:0.0524652174988889 from:0.03246642073012517 on:0.030471752230048346 upon:0.02261215060265876 for:0.022234042164084995 as:0.016040530084105383 at:0.01536904523163578 all:0.012449662373544964 up:0.01091554159622758 but:0.010871657813989938 In:0.009319299490692686 over:0.008975544983791621 or:0.007211217904800321 :0.1364270929870084 +and:0.10869504653578058 the:0.095402618762636 of:0.047802558415097576 to:0.042504813713441905 he:0.025300606307278196 for:0.02185571638685464 in:0.020887518378819876 will:0.020806525494131086 be:0.020019146184621046 or:0.01866260193895474 a:0.017471146132881813 that:0.017169707641433857 is:0.014643175124744553 was:0.01438856209160244 are:0.014217038719055374 I:0.013155046457640976 his:0.012896385746388232 their:0.012464420734958424 no:0.011683419277388293 :0.44897394595629037 +the:0.5475601306074904 of:0.06378738383735277 in:0.0549021881452868 and:0.05074901774712631 The:0.028943409742267157 tho:0.028858118349887246 In:0.01768523991471896 that:0.009926021025677391 tbe:0.009653734783103484 a:0.008637849113727888 from:0.00724883446276552 to:0.006833414085345448 said:0.004759163289158599 this:0.0046801116267011856 for:0.004658543913414063 county,:0.004646189293096908 or:0.004616009257009798 :0.0038960690067418985 thence:0.003650125509164049 :0.13330844628996402 +of:0.17828815283729013 the:0.0959349375815305 in:0.0553620198496578 to:0.05306000633817808 and:0.04199277345049714 a:0.03607106995522721 on:0.022342054182740472 for:0.017538219837514406 at:0.016388181895267286 with:0.01435308937563509 :0.012923741859701405 from:0.012673247245462501 be:0.011587546082959525 In:0.01137450367404126 his:0.010481919066203481 that:0.008242588753298823 by:0.008143612063215039 was:0.007936958673509685 their:0.007570438182904478 :0.37673493909516564 +of:0.15088559360385448 in:0.11733891620610018 and:0.0684200865600062 was:0.04154276681561903 In:0.03775268991700018 to:0.03658224799472755 on:0.03554388713391348 is:0.029706532815442246 by:0.02822068063068095 with:0.027799731741838724 for:0.026424305648177795 at:0.026140956399607326 as:0.02486763240088855 that:0.018472660498969378 from:0.015219571511707618 the:0.015085132683579057 all:0.011700379883028883 be:0.01133858797847074 been:0.009302964153239857 :0.26665467542314775 +and:0.15255720082053267 of:0.11491083978926517 in:0.0870363158470583 was:0.0703003154867255 are:0.05878681103513118 be:0.03925270702041167 been:0.03816971014669136 is:0.03676853912413626 were:0.03388153983127051 by:0.03044330199300756 In:0.028991816972747796 or:0.023065099136342908 so:0.015112929108084799 the:0.014958066091668649 to:0.01404832009324972 all:0.013795696649640808 for:0.012890213612326389 with:0.012848153215107934 that:0.01190161102360105 :0.18928081300299981 +the:0.6329867833284119 a:0.055530825318500655 his:0.043941340053864374 tho:0.025261668756319952 The:0.024266453986442973 of:0.021823345073592522 their:0.019031866370461867 my:0.013121558048153369 this:0.010562820662244657 tbe:0.010275526464645912 to:0.009548031028696436 its:0.008569265422610087 her:0.008239186245924643 our:0.006998738570565408 in:0.006591882989154754 and:0.005965792298004828 as:0.005603028368281608 your:0.004016412233960527 with:0.0036743490589075086 :0.08299112572125607 +the:0.15962867752167784 and:0.12989541092788223 he:0.054877404957623374 was:0.05275183313960396 be:0.041052921442739025 I:0.040188566022541124 were:0.02940082112475599 The:0.028382843341943936 had:0.02588507592301929 been:0.02401094293427228 are:0.023871990679743223 is:0.021971885388727495 have:0.018723468571615477 He:0.01753903536205043 of:0.016364695396795807 his:0.015468882785975366 has:0.014963951137342068 they:0.01445090412838048 who:0.013379465742383911 :0.2561912234709267 +the:0.2926437327561482 of:0.05581242880654333 and:0.035258456293585635 .:0.023691296200356295 The:0.022273006487728387 said:0.020717513772671437 tho:0.017897242842622684 in:0.014744559299590966 Mr.:0.012856065574853286 :0.012721822568056852 tbe:0.008647625739661218 by:0.007742494499091581 Mrs.:0.007542686538324422 street:0.007293418731669755 S.:0.007109480970610303 A:0.006444161161195612 that:0.00597955367226849 :0.005969525411202834 a:0.0050414609590343894 :0.4286134677147843 +feet:0.5625236759428437 chs.:0.04238492682076588 went:0.020859130268229966 ft.:0.015251561256960991 chains:0.013668543375524039 right:0.012046609864879893 and:0.011831660143216795 feot:0.01114632579813888 down:0.010642893710663527 came:0.010394146145654594 up:0.009946945436153294 go:0.009116459315212665 back:0.00873263804787841 north:0.008651040410445784 made:0.007445471908551958 time:0.006978346320862967 south:0.006708092107098125 as:0.006682061006161808 come:0.006277999864269193 :0.21771147225648751 +know:0.1256973194371343 of:0.11248338459163743 to:0.07329400164313317 in:0.06621358095722231 and:0.05779976103562017 see:0.05398446510718306 with:0.03865515474961113 matter:0.038238284766095476 for:0.03772351025511723 do:0.0374101594979237 some-:0.025435664328808442 or:0.024848061832114913 is:0.023876315258257605 just:0.02355096038091707 but:0.021234352756921045 that:0.019536210124656842 In:0.01841671582881347 as:0.015481732917787804 knows:0.014559448293469671 :0.17056091623757516 +the:0.25669342737545897 a:0.18954957230378458 to:0.08939587704485631 and:0.03138772097660588 his:0.02608143462514894 their:0.022453703743825215 this:0.021965299140880593 The:0.01895764602206495 its:0.016748181840539292 not:0.012782232018284446 tho:0.01264374058463314 I:0.01206683502289919 of:0.01203758900138748 or:0.011591488452428703 our:0.010287869381715034 great:0.009983418588902164 most:0.009955268388099998 1:0.009064369883600803 any:0.009049350123044456 :0.2163049754818399 +with-:0.2870149274516389 and:0.050265870454939965 find:0.04601394137221069 with¬:0.04219009535510514 went:0.029287720636071143 with­:0.02780889139087209 set:0.027372532895950007 carry:0.02421469621249709 go:0.02389242319934658 sent:0.023565837465559996 brought:0.023415481737148094 let:0.021553522426139934 taken:0.02146480974218741 come:0.019782034046367813 came:0.01759347262674388 the:0.016887309141654074 make:0.016883524509259156 get:0.01565385568833537 laid:0.015122621433127018 :0.24901643221484562 +would:0.13516776815931453 to:0.10175318883572715 who:0.0734216616549984 they:0.06090829687960963 I:0.054414498797697934 which:0.046947310165833735 must:0.0405200574155989 might:0.036445589637541506 shall:0.03272411333844378 and:0.03228038765818951 should:0.03179090655993478 that:0.029508760759060126 not:0.02876680420731567 we:0.028503874055856488 may:0.028150033623979002 could:0.022163961267380006 will:0.019029697840863502 there:0.014322928357478427 They:0.011858887319353098 :0.17032127346582382 +the:0.5950309673352889 The:0.09143464686046757 a:0.05232978802609302 of:0.03965831207623663 tho:0.031107017165865034 and:0.02242778387473078 in:0.017244769866260296 by:0.010650765782572819 tbe:0.010043733844995423 with:0.0079274720045056 that:0.005102873680463758 In:0.004872294452135372 A:0.004353646146062302 our:0.00420591206234442 :0.003476936495136386 for:0.003366000691517785 an:0.0028204391825351863 to:0.00280419945253801 said:0.002765094580373944 :0.08737734641987675 +more:0.17130559780375462 of:0.06217763459325419 the:0.045367400568475914 to:0.04532566323127346 less:0.0413046301132575 and:0.03645638499158725 for:0.03555367745146998 greater:0.03478623091254069 better:0.02659607820196558 in:0.02538114335092192 not:0.02293305735298125 be:0.021178733978138454 a:0.01535580492803192 rather:0.014070223878624697 nor:0.013912994224816646 larger:0.013669217147797659 no:0.012926483716610955 other:0.011511322748173083 or:0.011247519756459932 :0.33794020104986433 +as:0.20837567924683154 be:0.1503470768283256 is:0.08490104130461683 and:0.06107761549640104 are:0.05486361562721598 was:0.040296354073706936 herein:0.03156427129762108 manner:0.03094477594202711 been:0.028687435240347885 Is:0.022037716127442944 otherwise:0.014528333049445874 hereinafter:0.013597531775148265 were:0.013465358204027352 that:0.012262898438598086 bo:0.010653714577710355 not:0.010545068552375967 have:0.009569053353051199 he:0.009566869923877912 being:0.00869665343441185 :0.18301893750681622 +of:0.11903322607800816 in:0.09861569230439966 with:0.06932881863062831 is:0.06196277817712433 was:0.054903652840259776 to:0.0542773794526358 as:0.048393527608299944 by:0.042271625094091214 and:0.04059730900489038 on:0.0348810385310648 for:0.03436649838317114 at:0.03199646020448721 from:0.030840663114316838 that:0.027381745391556644 In:0.024435395031298393 be:0.02243448589207103 such:0.019005786730175153 made:0.016938379747087895 into:0.013646111544943482 :0.15368942623948986 +it:0.11857892928876056 which:0.10419954526017984 It:0.10229720510101595 that:0.06796245048918885 who:0.06088908826247786 he:0.060731706658395446 there:0.047718276913133226 and:0.0298646407467943 There:0.025721626378001235 He:0.023765504777663107 default:0.02149030696489031 as:0.019132676760165265 This:0.015088553278066501 she:0.01413948392901254 what:0.014110548249504374 this:0.009613248172212615 work:0.008813388419150843 man:0.006677000754574867 country:0.0066605789516794795 :0.24154524064513283 +right:0.050090784240504366 and:0.05006209877613603 able:0.04522001101535977 order:0.04201067381199048 made:0.038501892452232754 began:0.03306732753877696 go:0.027861845195055086 as:0.027643480723975468 necessary:0.02756626922464716 time:0.02712466027934124 way:0.02696447977238494 him:0.02663119257032085 enough:0.024908809338603764 going:0.022620218593164508 them:0.02163617536047489 power:0.02163474090817379 went:0.01818271443271881 is:0.018082882999538804 one:0.01751686352263513 :0.4316728792439652 +of:0.15659712548433244 and:0.07182952381351645 the:0.07049902586402756 for:0.06085198566766498 on:0.043146876944910026 from:0.027432678177392405 to:0.02413401657796477 about:0.022823843231066888 feet:0.013731162162013312 over:0.013538874139716899 or:0.013401412340346799 in:0.012478180422081708 than:0.011931475001702014 with:0.01102742039431331 lot:0.00916581327261299 at:0.008902760039901916 as:0.00887067368585504 No.:0.006929432772694984 lots:0.006209193848611932 :0.40549852615927356 +:0.06257347121628311 of:0.05128294975516223 and:0.04490492473378969 that:0.041994076483249376 for:0.039109624347706796 to:0.037038504956879575 as:0.032568391029488636 in:0.016340798365167327 but:0.015996163353323895 by:0.01472217329709549 with:0.014278285657081285 on:0.013057552361289646 make:0.011410429147331291 it.:0.010603941791836874 .:0.010509796547172582 do:0.010331058960903626 is:0.009533867729768435 from:0.009005254762521911 or:0.008770036280391719 :0.5449686992235565 +the:0.10599306508258345 of:0.08104242310621311 and:0.06572460735622955 a:0.024888385391485385 .:0.01951543004094163 The:0.015359026589804934 in:0.01372854837833862 at:0.01270958924612043 :0.012565426791057573 that:0.012033567025084738 was:0.011928003113476901 Mr.:0.011798439683789923 to:0.010746428307797866 as:0.00871454968693845 be:0.00787412533039296 tho:0.007202532870257823 No.:0.007150361079308651 A:0.0071003990017288795 on:0.006956995433587723 :0.5559680964848613 +it:0.18933079373983122 It:0.09555282981329422 as:0.0866880719218501 which:0.08464636001756828 that:0.07051112314641195 they:0.052690658552864006 there:0.037417756895181786 and:0.029058424718588206 he:0.0269797830604667 what:0.022289821189138203 who:0.01796366222381316 There:0.013579855598546447 you:0.012550455952835911 we:0.012277334597652966 this:0.010978958519068683 whatever:0.009752693743122305 case:0.009057349738014284 This:0.008398456526460612 one:0.008370438307689692 :0.20090517173760122 +hundred:0.02334136986593815 up:0.005482494641173394 men:0.005366536521246011 Hundred:0.0047587970519216575 John:0.00441808156134956 William:0.004390720675819281 him:0.004016828614280843 ;:0.003997112205305733 due:0.003721199871732 in:0.0036582900032443304 time:0.003637206863828461 James:0.0035594902370151707 out:0.0034878448964120057 .:0.003467980723571515 1:0.0032804584819785204 day:0.0032444781513863933 ,:0.003058139385740603 :0.0030314555521939613 Robert:0.003005471634785646 :0.9060760430610768 +of:0.28571508084274183 in:0.09668204067210986 to:0.07874298396781138 and:0.07234703289229406 that:0.052575431781950926 with:0.04605064583598294 for:0.04589227695351991 by:0.039032478590087974 from:0.029520424708088227 is:0.02575291204529591 on:0.022845459154702957 In:0.022203170895305383 all:0.021718924061764327 was:0.014491053033084692 at:0.011537989298047186 upon:0.011127902091260477 as:0.010143577541686419 but:0.009984944120043462 into:0.009293333603003986 :0.0933423379112181 +know:0.11941270384941881 of:0.10026308375687559 and:0.09414136112125944 to:0.06523431949731666 or:0.05128696571615262 see:0.04744933242088828 do:0.032430826728363005 with:0.02972971126019461 for:0.027564280754646488 in:0.02752869094505542 matter:0.027016821130142706 but:0.026811834536351886 as:0.024327646702870968 is:0.023571530584275167 from:0.020757344321261438 by:0.019588524104385656 that:0.019005734757023985 asked:0.017458096300876504 knew:0.017322690557819768 :0.20809850095482102 +seems:0.10533731715594809 ought:0.08540800787654407 seemed:0.05993859310596644 seem:0.059597636456045204 and:0.04862942117800906 is:0.04405378225685827 said:0.04319155343924715 supposed:0.037444323532873816 not:0.036232755509214475 as:0.033034600924368766 was:0.024426522341206073 going:0.02331430968190462 enough:0.02273536852789549 appears:0.022480920310009915 likely:0.021445431245536477 him:0.021437276507021992 able:0.019225153339494032 like:0.017388351905968998 glad:0.017109834262067216 :0.2565688404438199 +of:0.34700944360652697 in:0.23286816778388475 to:0.08170201363116111 In:0.06062311661295472 from:0.03950377591060684 and:0.0321318346233831 South:0.027789415262514158 for:0.025066358960032346 with:0.01728792969546723 by:0.010619504682861616 at:0.00935186473954235 North:0.008705519355168391 or:0.008152680436286957 about:0.007661433965601606 the:0.006386154504067875 into:0.006295242602944489 upon:0.00609924004634659 on:0.005827744714019048 that:0.005478786021190159 :0.06043977284543972 +he:0.14949150383594792 it:0.07338279264989075 that:0.07306462311600512 which:0.05459466202597745 who:0.05098507499376482 and:0.04872738119055052 I:0.04587210309397424 they:0.04058261277907361 It:0.03335087441460292 one:0.030093605992853822 she:0.023613038216424923 He:0.017530258725023395 we:0.017191646293104355 man:0.01713961445372663 This:0.013620034903235989 you:0.013345865875399463 what:0.01059406506296725 ho:0.009537964731312002 but:0.008050014315388994 :0.2682322633307759 +and:0.05058234147200276 well:0.03882789120716973 known:0.02120059319675626 far:0.021019111521425753 that:0.014216765711940435 in:0.011647720007983666 made:0.010926442070686352 as:0.010792220576795254 it:0.010045607863334593 of:0.008764943558279881 and,:0.00863836845460077 regarded:0.008363184706994764 much:0.008324786394439874 not:0.008289338918901793 w:0.007273895387423816 was:0.006447000255654342 good:0.005979469867458082 is:0.005850937416814861 to:0.005639203943385665 :0.7361701774679513 +of:0.22043922946112768 to:0.0963544449013907 and:0.08390517619223019 in:0.07161874496636146 by:0.03391443066379785 for:0.02798348868634259 all:0.027492926507088164 with:0.025134822473451578 In:0.01579386087912012 that:0.015174041232718835 from:0.014145139874723558 on:0.010872186065832035 the:0.008512254197196275 are:0.008202112369320337 was:0.008174698569178424 or:0.008152724108006397 upon:0.007602487772086056 at:0.006827898126067626 made:0.006426477889966536 :0.3022728550639936 +and:0.10790144832293906 to:0.09124595902302916 of:0.08519246719326173 the:0.06098472309917942 I:0.019821985952907635 in:0.016982541209533436 :0.01661366153736131 a:0.01584985348814253 for:0.014641209714614755 he:0.014591902369335389 or:0.013379339245837734 was:0.01300606176907578 at:0.012886770767088692 be:0.012369486184554409 by:0.011724892893976813 is:0.011570874705394477 have:0.0112634107058121 not:0.010761397996955203 that:0.010143350650464546 :0.4480686631705358 +the:0.17234101881375233 and:0.0723308580507978 a:0.06418362524859451 of:0.059381903314211774 to:0.05765128534513001 so:0.0292258426364823 is:0.027247612130850953 in:0.024298181821023074 be:0.020836055953937775 was:0.01790457325883464 Mr.:0.01622639783612973 tho:0.012553953887538211 I:0.01099826163396415 he:0.010910273396485398 not:0.010754844629789139 at:0.01064958641021041 :0.009679095332540733 for:0.009454446178783427 or:0.008882500654999364 :0.3534896834659443 +the:0.13958310196535978 Deer:0.12724378864190047 Grand:0.08712095557388873 said:0.0754633208463576 of:0.04873670078232377 sub-:0.023609862423253133 or:0.018475285727957855 and:0.016715583958136524 street:0.01610065617709353 our:0.015908577782349224 .:0.015152650912051153 county,:0.013581991386510775 this:0.012372362868201306 in:0.01128314127210346 a:0.01102051163965261 state:0.010947581211626076 his:0.010487991133006988 sub¬:0.010405530202502287 Medicine:0.010116891753539102 :0.3246735137421856 +I:0.20310614865499124 we:0.13095336151644477 they:0.10963388335706742 who:0.08037077981491167 We:0.07488153667062789 you:0.039983544501829914 They:0.03415185450415067 would:0.03199343594162023 to:0.030793264693848865 and:0.026871895058738 1:0.022825749939299082 which:0.01789719419924261 will:0.015887388995413882 should:0.013516297021785922 men:0.01063709377663105 must:0.010533161864037152 that:0.010202623106271102 people:0.010010163778980136 "I:0.010000933548033069 :0.11474968905607533 +the:0.12308517424390064 of:0.07708619195637259 and:0.06698013221426398 to:0.055068982580103606 a:0.023976660137243706 that:0.018967967091725598 :0.014887525533497226 The:0.013421294913406191 in:0.011893986992017321 for:0.011348580771436622 at:0.01096737856225082 will:0.010743507589325362 or:0.01071998204612615 by:0.010547263371509427 -:0.010399542559965048 as:0.009824119257173412 tho:0.008593951564604612 which:0.007682245257271255 this:0.007630290725894238 :0.4951752226319122 +the:0.13719350867666488 and:0.0802390087002319 of:0.05262863071935662 in:0.040598665900038744 to:0.02864674616871877 for:0.027714307852499304 that:0.027264234510365297 or:0.022252847987919575 be-:0.021388571591443972 In:0.01605785670858949 as:0.015639519903610108 which:0.014706396246887302 any:0.014623615797131041 re-:0.013191711555669271 be:0.01309650349474952 he:0.013009134984926788 their:0.012745332384913556 a:0.01139011960642838 was:0.011007382519291562 :0.4256059046905639 +and:0.1487439812669867 of:0.048804638372984877 so:0.045617562994346154 said:0.04512849336248965 fact:0.04247418273960645 to:0.03172775127963019 all:0.02782886763477251 is:0.0275569439603598 given:0.02512777439402322 stated:0.025010658258772175 say:0.025006219305015186 as:0.022529488630150113 says:0.019143737763523627 was:0.018688012443718923 found:0.017797638660303258 given,:0.017700655850563133 believe:0.016562097686993897 than:0.016551605189846105 show:0.015724619230125476 :0.36127507097578854 +hundred:0.02334136986593815 up:0.005482494641173394 men:0.005366536521246011 Hundred:0.0047587970519216575 John:0.00441808156134956 William:0.004390720675819281 him:0.004016828614280843 ;:0.003997112205305733 due:0.003721199871732 in:0.0036582900032443304 time:0.003637206863828461 James:0.0035594902370151707 out:0.0034878448964120057 .:0.003467980723571515 1:0.0032804584819785204 day:0.0032444781513863933 ,:0.003058139385740603 :0.0030314555521939613 Robert:0.003005471634785646 :0.9060760430610768 +and:0.07338426889585799 it:0.03835538209630291 not:0.03401207879015783 him:0.02847764951692149 was:0.02568244844446705 there:0.0246901091135877 is:0.024351140617801397 but:0.022879779192037236 that:0.02016644079584594 or:0.020150276555606132 them:0.01895165675644432 used:0.018624235123766267 work:0.01743516303442871 been:0.017229859055902585 has:0.015899380646980932 be:0.01589382440316596 time:0.014618790432756238 had:0.014452988970660422 made:0.01413526211981896 :0.5396092654374899 +and:0.19068968535261877 be:0.13950481387492294 he:0.0820857261861741 was:0.049497445925334456 is:0.04856001797478093 have:0.037014815871973895 who:0.03692408793445835 they:0.03626460210830303 been:0.028622082352789287 has:0.022096062637870506 are:0.020923773321998157 which:0.019894532121241728 had:0.019582016107749248 He:0.01845942150351575 but:0.017994652482239495 were:0.01782309201693876 she:0.016952342495513337 it:0.016727179892674467 I:0.016415078189419487 :0.1629685716494833 +as:0.18793090952065328 is:0.14803628074855527 was:0.09254672729592923 be:0.08467901386836357 and:0.08003386675178863 not:0.049431570251676285 are:0.04352444647187248 been:0.028448165552307312 Is:0.022496620692887572 were:0.020773401316962724 so:0.017191492378928478 being:0.015424004126652305 to:0.014682428058410038 or:0.012012560060768637 but:0.011071676601733308 it:0.009508045132951962 of:0.00913131885133955 became:0.008867738991723956 have:0.008527767014307385 :0.134681966312188 +the:0.1431784636192142 in:0.08546715018303981 of:0.061827868482277164 and:0.05515926602171052 a:0.042012188383834054 to:0.03669876513267094 that:0.029102809625610862 any:0.025586059892900793 for:0.023711907727086652 In:0.021811671153109335 by:0.02014212667595045 which:0.01882503782020094 with:0.015376830836276965 no:0.015115052028461811 in-:0.014754516730222118 or:0.014244168794809275 an:0.013864018900880586 The:0.01226227609060653 :0.01213685844607588 :0.3377229634550611 +be:0.20721380381101753 is:0.16318901499092003 was:0.06480816600351598 and:0.043243689060009555 been:0.03620488641992823 are:0.03203682065374459 of:0.03196293843664215 not:0.031700196338688334 so:0.030987175857285196 it:0.0247104896561131 have:0.024576452892825368 as:0.022265231434359937 Is:0.01976793368680296 being:0.018806119377589137 a:0.018656531210851958 with:0.0186084304758081 that:0.01779655459775132 in:0.01684248315297286 were:0.014316832511005663 :0.161306249432168 +of:0.17366746867486416 to:0.10583072379393572 for:0.07194679147487172 and:0.05957812433276806 by:0.058987932338917234 with:0.05191657519105209 that:0.04698326462184906 in:0.0463294024554962 as:0.0414273754933931 such:0.039843573742053946 on:0.02288366380894187 is:0.01724237656064924 from:0.013222587893055849 was:0.012579836458308777 make:0.012013091436894207 than:0.011969794527205464 but:0.01099809157515481 In:0.009401455926874375 at:0.009269716997409864 :0.18290815269630425 +the:0.15101105772667328 of:0.13060424091461995 hundred:0.06779624069204165 many:0.045239362793901026 and:0.04337378043946692 few:0.043268918624224134 two:0.042934308925494484 thousand:0.04003235015110484 by:0.032694882184511866 ten:0.03149580431301002 fifty:0.030131063904428493 five:0.028515392597264693 three:0.025832452167214224 thirty:0.023483581618043797 twenty:0.021722674692233396 for:0.02069239979650638 or:0.019617307710711147 four:0.01903061538476242 are:0.018176372100574927 :0.16334719326321237 +number:0.06175151323842996 piece:0.05325833221237292 line:0.0443809671149245 kind:0.03535732698336942 sort:0.03271782697025319 amount:0.03067916715024922 board:0.02775268559385202 Board:0.025996356322330317 years:0.022621922350254585 matter:0.021674395891525863 out:0.020742500076893648 class:0.020556128208139818 full:0.018963103944251016 form:0.017272216837678638 state:0.01648023093179092 kinds:0.016074292950348474 power:0.015885651250249423 way:0.015451045250928871 hundreds:0.01541449376807418 :0.4859698429540831 +the:0.39749834532651884 a:0.07520030034269234 and:0.05540858759821703 The:0.03273515726769502 tho:0.030061875542463562 of:0.020144331424922633 tbe:0.014929647509541684 in:0.014268129706664795 or:0.013333166761078447 .:0.013287381914101323 an:0.009000188755386574 to:0.00880680429595084 :0.007943763822197133 Mr.:0.00773879605474787 by:0.007328417831573476 as:0.005922572098978465 for:0.0047526933692942485 that:0.004736121968310169 on:0.004594595720579333 :0.2713091226890862 +the:0.7787308614157994 The:0.054211667593397544 tho:0.03291189871214975 a:0.03173990874007804 tbe:0.012708921913555674 this:0.00915514244613317 and:0.0075998740930705464 an:0.0059161866680653525 in:0.004926724313059283 no:0.004873954120799841 on:0.0036765489794411245 of:0.0035938401801213606 by:0.0034343864269386847 whole:0.003030315120824709 every:0.002879769914241803 great:0.00285046962353513 any:0.002833902904906204 or:0.0023988210100692885 large:0.0022265800857257344 :0.029300225738087327 +be:0.3159179480648978 was:0.1748056365764644 is:0.07033170240229014 been:0.06309763298541268 were:0.0602561605342716 and:0.049415943446840575 are:0.045841633500522644 being:0.02093185295119003 he:0.019063795393141493 bo:0.013197569233861813 Is:0.012263521503811213 as:0.010458932239911642 now:0.00915871081864758 land:0.007335850804914181 not:0.006728889294044401 property:0.004566949348655658 lie:0.004307183383096442 person:0.004187446224353192 meeting:0.004153851609279964 :0.10297878968439257 +of:0.07475885970460856 .:0.056433373383158195 the:0.0543698458168847 and:0.0495726673332968 John:0.026680724097273328 A.:0.023371821937578318 Miss:0.023246796556874814 H.:0.021261649178521937 J.:0.02077896895046919 to:0.02075534363729907 W.:0.020740690357953173 Mrs.:0.017943118167785488 Mr.:0.01743165638800029 C.:0.017260218158019303 M.:0.016550062467810996 :0.01557423091545696 B.:0.014287626520186314 E.:0.013392757743178402 L.:0.013373303442744794 :0.4812162852428994 +one:0.1028303141280697 part:0.05963429477052991 out:0.04766456937681193 some:0.031418679026461914 members:0.030764490253327767 side:0.029940657362655835 portion:0.022063658796890564 office:0.020457735219956013 member:0.019726706386316174 end:0.019666887540649894 tion:0.018667441728710307 parts:0.016814747270460957 people:0.014112771422418794 all:0.014072739582212475 any:0.013183573287639892 One:0.013083578354183906 that:0.013024335602903442 account:0.012482348155001894 many:0.012077825070275192 :0.48731264666452345 +they:0.10259965940195896 it:0.09117565760855154 I:0.08617542999210606 he:0.08373284290065021 and:0.07196524100148177 you:0.06555044888079721 we:0.039298278772683194 which:0.03735542427579412 It:0.035405971758668796 that:0.033052538137333234 who:0.03110067606696142 she:0.02063642557790092 They:0.016481843614180956 He:0.01451180691431034 We:0.01134605766705866 1:0.010507937767249011 there:0.00973833065243111 this:0.00841492454158853 ho:0.006966976697807502 :0.22298352777048647 +the:0.20030723318260213 and:0.10006024529376316 of:0.0851557344874649 a:0.029491565072808135 to:0.026273426101619934 The:0.018967659568524472 in:0.017608683061791877 .:0.01617838176019565 tho:0.016096798182459873 for:0.014774172885217655 by:0.013554991350369652 with:0.01335103297063025 :0.010831574137639933 his:0.010624728393255062 that:0.01044510540478452 or:0.01041924333498587 at:0.010088627097278726 their:0.009934127681744048 tbe:0.008907637932677624 :0.3759290321001866 +the:0.2603177041296186 a:0.08581102032101535 this:0.08424193955867575 of:0.06816798871346998 in:0.05039794925175704 quarter:0.04973109732880778 every:0.039832729467940954 that:0.03513198233807197 first:0.03036253278706489 said:0.028442379011395413 and:0.02148861610401634 any:0.02097303858179684 tho:0.01571776815036237 or:0.01432947419605746 second:0.014261661380536287 third:0.011276806583561928 The:0.010861336337008826 In:0.01071715583797476 each:0.010554991539534968 :0.13638182838133248 +the:0.16122519181372932 of:0.08471430530468238 and:0.032195429489909215 a:0.0284816755309555 in:0.02525289629962038 to:0.02360970025327377 by:0.02157722633849364 for:0.01814551009187425 at:0.014293682314246216 :0.012565952753849356 on:0.011909973408537099 that:0.01050463128806774 from:0.009203002844845501 was:0.009197636642767654 be:0.008582430564369659 -:0.008007956632563491 tho:0.007832545561117626 as:0.007633051961634115 with:0.006904422875455503 :0.4971627780300076 +;:0.012816218457376504 up:0.012658010243188272 one:0.010522139520335292 hundred:0.009192372296584386 day:0.008871838804510606 it,:0.008592983051158095 due:0.00786107456277202 them,:0.007574202250431639 made:0.007305686017210034 time:0.007080133686714327 him:0.006827790735730511 them:0.006148757646201002 1:0.005889817770083484 :0.005755048367716775 ,:0.005723606385732418 here:0.00556065601707819 it:0.005542855992599022 him,:0.005364607217742686 interest:0.0049789831159746155 :0.8547332178608602 +and:0.08995317707915026 to:0.06844710404109794 of:0.04605142056172993 the:0.04074574508561307 which:0.02479116931334353 that:0.023764822140213245 re-:0.020841117231308055 in:0.020803825395358622 for:0.020278423301550053 :0.018417753428486977 not:0.016860793136637672 con-:0.016444405871234195 is:0.014386481772210856 or:0.014080680914153714 be-:0.01352268143271276 I:0.01317002660943805 was:0.011429878269381662 dis-:0.011196807025842847 he:0.01113106290024311 :0.5026826244902934 +both:0.028066741044527867 them:0.017413132822188083 it:0.015922203274030558 the:0.015420692647659622 feet:0.015367511914299949 well:0.015013211997683934 men:0.014916956104452617 and:0.014271598104205436 up:0.013377844685120719 him:0.012593962832381463 all:0.011050804291529437 land:0.01071024457484357 work:0.010030457133664447 lots:0.009581854838243177 made:0.009581352283592874 of:0.009354697912613738 year:0.008671994097877667 :0.008552357739018327 tion:0.008333267816188141 :0.7507691138858783 +the:0.08741288820481248 and:0.07392080242938477 be:0.0572668144792991 was:0.05686739458441792 of:0.05297029938296901 to:0.040095074017987696 is:0.03448309022071693 been:0.028380973754521515 a:0.02485235362607966 are:0.02226522268065813 were:0.019682022343204007 in:0.019454144698829248 or:0.019273705289081854 as:0.0158232132157123 not:0.012361914460680723 being:0.010097596398749334 for:0.009388164492904385 :0.00930537568905371 their:0.00894740846790883 :0.3961515415630284 +the:0.10199665559103764 and:0.07713547567948774 of:0.041347780702152385 in:0.024186174430904255 was:0.024164362896384475 to:0.02108098745161965 for:0.018720410508683342 that:0.018281675128206592 is:0.01814335812147744 he:0.016523175383077057 as:0.015868178535881888 his:0.015610793592464096 be:0.015139187977977484 be-:0.012949134719825844 said:0.012826890890490161 In:0.012786976428032828 her:0.012684963833504911 or:0.012669257693463908 :0.01224147820803361 :0.5146430822272947 +the:0.11919516938815296 of:0.07230453158552728 and:0.05781056740443249 a:0.043018564803886335 to:0.031305092790907506 in:0.020848713353460488 at:0.014270110001066288 .:0.012526810245749479 :0.012413283442322082 for:0.011719122709941797 by:0.010808400946589808 or:0.010404172990115616 The:0.01003576004804544 with:0.009811868184449042 tho:0.009295902015355835 was:0.008924239095331684 that:0.008672304223433876 is:0.0085591147338948 be:0.008335143826716943 :0.5187411282106204 +the:0.31016609344445134 of:0.10139464749154259 and:0.039311780117850914 a:0.031267976530705316 for:0.02866453154357584 in:0.01972457047549593 his:0.019384859806972226 their:0.018738769366615855 to:0.01500477503834044 such:0.014579331538644248 The:0.012985184434307724 or:0.012881329699115679 tho:0.012795743122906279 said:0.011907484171723074 much:0.011307138779794054 by:0.010216721952867137 In:0.00846628618558395 our:0.007877351727753836 :0.00703059643106856 :0.305294828140685 +of:0.09180327590091512 the:0.08704392345264056 and:0.05028553387910976 to:0.03971470743914892 a:0.033346211002626726 at:0.025904757386540782 his:0.017851249766701414 in:0.01742950073752589 is:0.015513218102514145 for:0.015233738043563084 was:0.01344727231219973 :0.013096887391641368 .:0.012989086604713972 I:0.011604169198481697 be:0.011583875001198117 1:0.01055199628515836 by:0.010541636001383357 Mr.:0.00920364089982067 their:0.008754647324319735 :0.5031006732697966 +of:0.24106693821433925 in:0.227120087594329 to:0.08395325435144445 In:0.05739331472363871 and:0.04478493597181403 that:0.04283903581536492 on:0.03478765050545141 from:0.03117166404277992 for:0.02955298133287422 with:0.0234277619284356 at:0.02338041665931247 by:0.02253604471584085 as:0.012862446120695401 into:0.012456088471675201 over:0.01002570292887561 through:0.00975981264818598 was:0.009753644019073804 upon:0.00962322016388653 up:0.00827051381184667 :0.06423448598013597 +is:0.07419343399006192 as:0.07034611140785411 and:0.046407184961022294 seemed:0.042363264941761215 him:0.04201064927779252 able:0.03949507502001132 was:0.038720202165127386 enough:0.03329714250560657 time:0.031758233478907584 me:0.03057448090156143 necessary:0.030373405413627697 order:0.027722591018329107 seem:0.026619871822607884 not:0.026298994302574867 want:0.02618165469830523 seems:0.024946426209199977 them:0.02320275722232384 it:0.02272876570643786 have:0.021689884577084297 :0.32006987037980283 +of:0.08548144118795624 and:0.07927828513830942 for:0.06383880277615728 to:0.061153039718126904 at:0.0483808262661315 the:0.03921974686664273 in:0.03411585230553876 that:0.026496325678823582 a:0.02259073163921486 or:0.01793214029737905 which:0.017728558407736805 in-:0.014917113421973875 be:0.014460913606792478 by:0.014342547539254217 I:0.014236686960985507 :0.014140479742854699 was:0.013774187001112537 will:0.012714444971349733 with:0.011174807160870617 :0.3930230693127892 +was:0.11679521384879378 and:0.10996923098948368 is:0.0903239807783827 be:0.04301603964732388 been:0.033098650086066474 he:0.032117763969806576 has:0.031233326362879617 it:0.029642886833691273 I:0.02963738843223852 have:0.02943988549326922 were:0.024450346295029332 are:0.023486894954990945 as:0.019222498933009473 had:0.01910415548412323 that:0.01714204801056868 Is:0.013706029221811543 which:0.01267412255944488 being:0.011594802275415485 they:0.01095943081798203 :0.3013853050056887 +and:0.1411765563886791 the:0.13347333769419065 to:0.1244973988414118 a:0.10338337608068172 at:0.06076466518559145 of:0.041583753719229316 on:0.028097073433596166 or:0.022986074530318163 by:0.021186197017915652 in:0.018547911312293573 from:0.015676363655948496 as:0.01512428771752524 with:0.013943457603190799 for:0.011993753085155743 A:0.011902735088449846 The:0.011293578755471309 north:0.01062672724568345 along:0.010160366254163285 than:0.009983519789610507 :0.19259886660089376 +and:0.1077749792836058 the:0.06778127820510269 of:0.0512355041064562 to:0.04057634236092281 that:0.03309449772045534 which:0.032184713121535445 in:0.02880706726921465 a:0.02476725794496234 or:0.02254924190231092 for:0.017556418657121785 any:0.015639295771894934 he:0.015141883170409012 said:0.014645315422217572 be:0.014551715827369548 I:0.014194895173058466 as:0.013317622499239594 it:0.011573824401991058 :0.011573113142989604 no:0.011243670362708203 :0.4507913636564341 +so:0.22313666983613392 as:0.1181500688813472 too:0.1086697772973524 very:0.08829036723697468 a:0.056945423886241346 how:0.043890826384762105 of:0.03370372325895668 is:0.03365229047543262 not:0.02730061725911188 and:0.026297661417343805 with:0.02554145284127209 was:0.020204615689859096 for:0.018991566609250055 in:0.01781635656634697 be:0.017408505042779125 are:0.016979010131706895 How:0.012178077950844027 by:0.011196617934873414 do:0.010350824345377376 :0.08829554695403431 +the:0.16807735899698817 of:0.10541662057906837 and:0.05138367848570702 a:0.04141865232648221 to:0.0385989743764065 in:0.026264864977736738 was:0.019530675665220657 his:0.018900421021236905 be:0.017373825006196972 their:0.015767721170721456 for:0.01557246589796783 with:0.014071419046630446 is:0.012922913111931644 at:0.012690452250034052 are:0.010702713108721902 .:0.010158075558988393 Mr.:0.009672788574483367 tho:0.009612591781990074 were:0.009549306361446321 :0.391314481702041 +this:0.27888328760436626 This:0.17826400481979776 the:0.147461287320242 that:0.058455636399585446 The:0.035802088536948086 whole:0.019765791558958266 one:0.019594092392872516 any:0.01710237728632582 his:0.015555216005224167 a:0.014748970825341406 every:0.01371129760731578 other:0.01304599583100611 and:0.011825362278899314 some:0.011150619670908173 same:0.010626665048304597 tho:0.008881397035275034 only:0.008783556457805838 present:0.00773956858770001 our:0.007609266499537194 :0.11999351823358619 +of:0.18651139578148418 on:0.1560202634380072 in:0.15442539523561055 to:0.1118243126649026 from:0.05045266330459223 In:0.04758970142364476 for:0.03348208858959176 and:0.030280491743501732 by:0.026324071499036112 at:0.025407860259997656 with:0.023275569082649283 into:0.017984781149174504 that:0.017642992646573315 upon:0.014616036349602995 under:0.011290678206262093 all:0.010366423483921482 through:0.009842688300914173 over:0.009060296311689146 along:0.00840833842646615 :0.05419395210237805 +a:0.2694317841338308 the:0.15892279103880924 is:0.08159030080958057 was:0.07243116804134941 be:0.044314242860785634 are:0.03989849856896115 and:0.029727036453060778 not:0.023441621483288894 were:0.022647917069409832 been:0.018283644984888058 of:0.01459913353659416 in:0.01183609203582731 Is:0.011362676593360451 A:0.010978907087470766 The:0.010805793052057156 his:0.010363836690104562 this:0.009726958533031911 so:0.009723253484427024 that:0.008959873630294213 :0.13995446991286808 +not:0.1348858660241642 you:0.09078679785838203 would:0.08657505416258185 to:0.0816993199683699 will:0.07634670932209064 cannot:0.07169819851478214 they:0.05728942807410464 I:0.05374355544861931 we:0.04460525067300783 should:0.03367365768112506 shall:0.03358844319501225 can:0.022770383301250908 and:0.022601064666691466 who:0.0214675871062662 never:0.021053972750057045 it:0.020435107403283168 may:0.020116084670594125 might:0.01911991458120179 We:0.016647422668585463 :0.06989618192982999 +of:0.25626981084565137 in:0.09151001799807366 that:0.0704390432220375 for:0.06820894678548466 any:0.06639546533106501 to:0.06589954672229265 with:0.06535051164701464 by:0.04471858705170561 upon:0.030491502296520503 and:0.02948757869737568 make:0.029318177928365302 under:0.027766883192929803 In:0.019128832552573197 no:0.01637549504007089 from:0.016053790843273165 on:0.015269920966435669 making:0.014221107827442082 have:0.013640874632407608 is:0.01156277165978651 :0.04689113475949449 +and:0.22512558646114986 that:0.03334137886524936 as:0.032383697151333754 And:0.028016727797861553 is:0.025141903003524462 be:0.023292763272710498 it:0.023022614699160924 was:0.020684527746742475 to:0.02005771572517067 have:0.018493183684858094 then:0.014899935105320073 had:0.014647998832931866 or:0.014226881254290375 them:0.01302010085007631 ;:0.012348870358470003 but:0.01153815791407035 are:0.01134755353545225 not:0.011339202168259186 Why,:0.010806263458759294 :0.4352649381146086 +the:0.3186760769119463 take:0.2922667630637908 taking:0.07111509849540956 to:0.02938697662220678 a:0.029253595485633936 took:0.028087016907728853 taken:0.027487055954247386 and:0.025177133032812382 or:0.02502627603993402 great:0.021259338790563024 in:0.010909092149499963 The:0.010555271228825141 tho:0.010431636192753826 takes:0.009366625602502657 not:0.008254516354321298 of:0.008163940508236045 no:0.007215929394356653 tbe:0.0061442526147353635 con-:0.005479638291908816 :0.05474376635858716 +the:0.1510313128243709 of:0.13537619925564987 and:0.11458921164302542 The:0.027690471692575807 to:0.025960055707430537 a:0.023539471681411333 for:0.021253522917965735 in:0.020513342878041116 at:0.017301558638548244 .:0.017253317591050466 that:0.01675928141217165 with:0.01597357196650347 or:0.014873861154126285 by:0.01313316097110622 his:0.01214018679940826 :0.011982926915003722 an:0.011463590259666973 as:0.01032354224246174 Mr.:0.010187008217166569 :0.32765440523231565 +the:0.5821779019560922 The:0.07245384358709538 his:0.04128070500841776 at:0.03862848454062395 tho:0.03162591045295147 their:0.01940934506136335 was:0.018039946002233246 and:0.015896010039679193 my:0.014642372292148821 its:0.0138003539024592 tbe:0.01376573339194573 of:0.011987516917910217 a:0.010555401308192025 her:0.010379160227881311 our:0.00989999282036137 are:0.00710588804094315 is:0.007025527162117241 were:0.006993040448576937 be:0.0056665050879729 :0.06766636175103455 +and:0.144184728886931 of:0.12671470469911722 for:0.058515557193172675 is:0.05024909940050928 to:0.043953679374752606 fact:0.0423509365353777 in:0.031279380112875635 but:0.02527885309781696 all:0.024898832003518227 with:0.020869275378496456 so:0.020668164492044082 was:0.017571436742566632 know:0.015557920450655852 or:0.01539713850791844 say:0.015340826993256522 that:0.015274156284859631 said:0.015005586898917078 show:0.014639264040536564 on:0.014607673358553772 :0.28664278554812367 +it:0.14980370725759037 It:0.1417831987182438 This:0.0994395734160535 which:0.06123870759127718 that:0.053827314535707556 this:0.0485319048157116 and:0.03481463816943127 there:0.03163351300029438 he:0.025874957304685715 That:0.02452637228711398 what:0.02101535076138451 who:0.020745118014465793 He:0.01553744098124584 What:0.015466571118696077 There:0.012715435083286795 Here:0.00825702518154719 one:0.007881347531268929 Such:0.007797349307744799 as:0.006397540204786528 :0.21171293471946415 +together:0.16609686069549726 and:0.08235855174617822 connection:0.027565930962423844 connected:0.024599884063808773 it:0.021531885107265766 do:0.019342835882029542 Together:0.01912773751935442 him:0.017267309877033208 them:0.015431151006397734 comply:0.015128305857139252 acquainted:0.015017005435109154 but:0.014544549747275305 gether:0.01434219198813663 familiar:0.014113831359418055 up:0.01144181365700697 charged:0.011098435044326515 satisfied:0.011017783727721666 that:0.01077467825091707 complied:0.01052814900562557 :0.47767110906733506 +to:0.6672289140138558 will:0.08120647437624397 would:0.03571042488321962 and:0.03511320890914307 not:0.018953716458565466 may:0.015011887334424314 can:0.013080102802974522 I:0.013014386369074912 could:0.010687860466265754 should:0.0105194757005606 we:0.009895373932958173 shall:0.0084595235776942 they:0.008350197795605868 must:0.005788662084992613 you:0.0054658309549376295 cannot:0.004179405447971424 who:0.004144870370968131 in:0.0034333947184657 We:0.0033820443470357936 :0.0453742454550425 +of:0.3521795682630024 in:0.1984534990647334 the:0.09137071045350359 from:0.064738561081642 to:0.04875353896800362 In:0.04034964741553819 by:0.02287590095566634 and:0.020814924530414766 a:0.015541875955354284 at:0.013779936896296936 for:0.0066713857636572695 said:0.005492223146754026 with:0.004560298845554049 ot:0.004245178203970596 tho:0.003874204241976937 between:0.0035032145383023646 A:0.003401620353300724 United:0.002729419882020482 into:0.0026665628254105523 :0.09299772861489752 +and:0.10038275173527456 Beginning:0.08454506876778513 was:0.04270128988250076 Commencing:0.0405695833232284 is:0.027566222665360032 that:0.019405408689992725 look:0.019015184862769922 it:0.01872728329699828 him:0.018662942658140315 be:0.01834873858796612 are:0.016965247200661948 but:0.016697303740895116 up:0.01624550082114781 them:0.015047790297139343 held:0.014226250042085734 beginning:0.013901322846056665 commencing:0.013833032028030028 out:0.013753735524837454 sold:0.013174941032054379 :0.4752304019970753 +and:0.10415952546796353 the:0.056763355969179634 to:0.0507468390371308 of:0.040112868469778976 for:0.03690168974148327 will:0.029078082329760523 that:0.022321644642114637 a:0.02141892008079892 which:0.0195815108464531 may:0.019203259843360635 in:0.019074022061811562 as:0.018381545249563955 said:0.01739950115489257 can:0.017042358766788404 would:0.01698366934649253 :0.01668470652192852 or:0.01609572654133273 it:0.013554405525576171 shall:0.01261805359368978 :0.45087831480989976 +and:0.0772872681476691 place:0.06004559269648248 point:0.03486762220565376 cases:0.024648695434962863 spot:0.02429521065904575 that:0.0204111957933908 every-:0.017646936524346006 places:0.015515760162490677 of:0.013728495168802162 in:0.012812617038430675 city:0.012071522199777683 room:0.011294879017427968 or:0.011211685708429755 the:0.010759892589787347 town:0.010271602210148879 know:0.010085014565906382 street,:0.010013367161882586 country:0.009798372622159178 some-:0.009555964774201044 :0.6026783053190049 +the:0.07591019013263572 and:0.06813786893198592 of:0.05917081661611384 it:0.03513238111187001 that:0.032699260753120164 will:0.027461607063874714 to:0.026670047283830434 a:0.026411494048458824 as:0.02479044302569599 or:0.020329797140119833 may:0.02029312580778602 which:0.020140522484129317 It:0.019576989117020327 this:0.018375696747224265 can:0.016240106796776663 not:0.014839306984822213 said:0.014595299128284535 there:0.014216118651543092 they:0.01402608637792205 :0.44998284179678605 +and:0.117447605375634 not:0.07787760442406495 of:0.04742243535712064 that:0.04382197507740885 in:0.035621747364036636 is:0.031363729558007925 for:0.030998244217866722 it:0.030970853761707873 was:0.02838416961605801 but:0.026297312821479908 are:0.02502157132092427 to:0.024068954523156653 by:0.019990167321229196 now:0.01925487789732511 the:0.019033114710974252 which:0.017451128374695767 were:0.015981899477244557 them:0.015799716542687824 be:0.015621907227783536 :0.3565709850305933 +and:0.08184677483738724 the:0.07909217780113714 of:0.06780965644469242 to:0.06289859899580835 be:0.03985155246328224 was:0.033732505141938984 is:0.030010668729588876 in:0.023021463002135298 for:0.018484059015684104 are:0.014846243970674295 that:0.014734512797306256 been:0.014404935020045943 as:0.01426470189874621 he:0.013838513130424883 were:0.013709655520613491 :0.013235943291591874 much:0.013202440868929965 or:0.012807434949848446 his:0.012778135806475932 :0.4244300263136881 +the:0.10885586344825623 Mr.:0.09365663362191323 of:0.07380220170464308 Mrs.:0.05436972468797815 .:0.04822309282140919 and:0.043239810609747464 by:0.034303044692899826 Miss:0.027918772692403473 J.:0.024234358707314805 W.:0.022488166067408527 John:0.021301451212193373 to:0.02127331910934038 at:0.01974759878624199 H.:0.016102716687070324 A.:0.015201487239564595 The:0.01506560592423992 E.:0.01416720874643207 A:0.013837943048258814 Dr.:0.01338977838125256 :0.317821221811432 +the:0.44110785718952195 said:0.1620152732968819 The:0.06488993164638983 a:0.05554718075005937 of:0.03217593618477372 and:0.03080017737826836 this:0.02550006543348636 that:0.022541415520239597 tho:0.021419326289618092 or:0.019781179905212175 Said:0.012589736465845044 all:0.011682884515761558 any:0.01037902899022566 tbe:0.008658432970690272 such:0.008251415120119558 which:0.008179479104980862 This:0.006578378872645471 other:0.005763259968085803 in:0.005247334941311746 :0.04589170545588272 +the:0.36771158945646937 his:0.10037840007281876 a:0.05114041532015241 their:0.04907087158880544 and:0.047626832389643096 The:0.037577480072794656 of:0.028648539374879815 tho:0.027345473331030618 my:0.0260372082803619 her:0.024762534924977982 good:0.018640617410316272 our:0.01701387360277483 other:0.014780702785498697 in:0.013376580628399441 this:0.013226297883011346 tbe:0.012834144225767114 on:0.012101196898209852 His:0.011274321739596953 or:0.010648607552053664 :0.11480431246243776 +of:0.09129790931378902 the:0.07369883040827747 and:0.047842263382354346 in:0.04189055351593407 to:0.04045875475680249 a:0.03542341257202578 be:0.02020462051672066 for:0.01979292654746225 was:0.01760256398103379 at:0.017380150555488715 is:0.014984483003968216 with:0.014047653760730413 by:0.01374644383819499 :0.012670486581795598 In:0.01200961464556976 or:0.011563835749786333 from:0.011391516893522809 are:0.011273104484969465 that:0.010755276030689069 :0.4809655994608848 +the:0.12043962260383918 and:0.09656360113187452 of:0.06938290347554729 by:0.04535402498805505 are:0.04147102512417191 was:0.038187925932397 to:0.037605823524526 is:0.030296262422026404 an:0.029209690057086117 that:0.028673224057989475 a:0.023788347520482138 it:0.02352052447731146 were:0.02168395879461779 not:0.019995999868247946 be:0.01933472726806387 The:0.0192344580955402 at:0.01896794918131129 with:0.01840210405540426 as:0.01750024215449626 :0.27938758526701185 +a:0.22806404219603718 the:0.1812862808108446 of:0.06084651822950484 The:0.03235982311344421 to:0.031313515238417085 and:0.031217125498521243 an:0.023537919584740795 A:0.018288127121765446 that:0.013120525368824727 his:0.012972709483593527 in:0.011190818785082894 on:0.010809496128481904 tho:0.009366308663042094 :0.009348785448575784 by:0.009086927072092422 with:0.008404913559455607 from:0.0081715890330897 at:0.008067754942128464 as:0.006569635348423237 :0.28497718437393427 +and:0.10547496030223176 will:0.09952034591257813 I:0.09793435303325859 would:0.059264192726878086 he:0.055163440271713104 they:0.05441600010422482 not:0.04885563227028229 we:0.0488171346053484 who:0.03268527568857319 you:0.028583944083634856 He:0.027379905744836886 We:0.026004412748137928 was:0.022828736225943228 could:0.022550489859835317 to:0.022188907351341124 it:0.020776719074002914 be:0.018319200555756105 They:0.016171093681420636 the:0.015233490563352882 :0.17683176519664973 +the:0.18941070485687136 of:0.07390279899818201 and:0.06570082437222247 a:0.058469243590548274 in:0.024856988432496216 to:0.020873147706783023 for:0.018682659686982638 or:0.017866694612114674 that:0.017028564531941848 The:0.014409173905624696 tho:0.013452762362497402 any:0.012264366938919611 their:0.011649091646265465 other:0.010378896202069391 his:0.010181810078543935 by:0.009890952379887743 :0.0098587277099488 at:0.008693303303851414 with:0.008048251693860238 :0.4033810369903888 +and:0.055366383321817404 of:0.05338296345583469 to:0.05300308120800793 I:0.03392266487214775 for:0.03282706670939489 the:0.02204864404286146 in:0.021498126444615517 wi:0.020173541652463264 is:0.01983131158056605 a:0.018618584074222868 :0.014575020659196344 was:0.013057846161721561 with:0.009237252236677774 be:0.009049189507501082 that:0.008744691409686908 -:0.00868605321599752 1:0.008600320411068074 have:0.008365110422304796 not:0.008289329971350155 :0.5797228186425639 +hundred:0.02334136986593815 up:0.005482494641173394 men:0.005366536521246011 Hundred:0.0047587970519216575 John:0.00441808156134956 William:0.004390720675819281 him:0.004016828614280843 ;:0.003997112205305733 due:0.003721199871732 in:0.0036582900032443304 time:0.003637206863828461 James:0.0035594902370151707 out:0.0034878448964120057 .:0.003467980723571515 1:0.0032804584819785204 day:0.0032444781513863933 ,:0.003058139385740603 :0.0030314555521939613 Robert:0.003005471634785646 :0.9060760430610768 +of:0.22190480420613096 and:0.13393964858814614 in:0.09811997412851976 for:0.07134831530432599 to:0.06670831156849238 that:0.04858384832092277 with:0.04830226753659677 all:0.03870029932684655 on:0.026858497937253166 by:0.02607156649085551 as:0.022401760537163598 from:0.020802047659909225 or:0.018077123939552287 upon:0.016871986574531053 In:0.015801174600390922 but:0.012669859329549922 up:0.011337576382614461 which:0.010290936766018478 make:0.009284545164377845 :0.08092545563780223 +it:0.1496983854216909 he:0.10964337238428326 It:0.10638682511248473 I:0.050969923320639536 He:0.04860408290558634 which:0.04656491803935457 and:0.039028603386181866 who:0.0331862277940019 there:0.03053864313057572 she:0.02473831015765317 that:0.020673460236108037 There:0.013695532075392687 She:0.013377251164555395 lie:0.010305604736014575 bill:0.010179505281152806 man:0.009520310547670104 ho:0.009465156303370794 as:0.008752836029768285 This:0.006926077595687868 :0.25674497437782745 +he:0.3254268107969583 and:0.0860837957933652 He:0.06572410256989669 I:0.05353554804001386 she:0.047559112477324236 have:0.04500814318258183 is:0.026361209221014148 who:0.02373917433952516 had:0.0228715917659667 be:0.022135625062832207 has:0.01988798912667371 was:0.01796122432642268 ho:0.01285111363388624 She:0.012317377087361388 lie:0.010514947966907023 they:0.010055595253884492 that:0.009896782586500452 which:0.00982939094260959 been:0.008760370363689192 :0.1684800954625869 +of:0.09129790931378902 the:0.07369883040827747 and:0.047842263382354346 in:0.04189055351593407 to:0.04045875475680249 a:0.03542341257202578 be:0.02020462051672066 for:0.01979292654746225 was:0.01760256398103379 at:0.017380150555488715 is:0.014984483003968216 with:0.014047653760730413 by:0.01374644383819499 :0.012670486581795598 In:0.01200961464556976 or:0.011563835749786333 from:0.011391516893522809 are:0.011273104484969465 that:0.010755276030689069 :0.4809655994608848 +of:0.22484065904582257 the:0.18990677432567285 and:0.09158294908764951 in:0.054260563935337264 their:0.04621427934931154 a:0.04575602861490246 his:0.038916253518417335 or:0.03344927149023259 to:0.03257044466650012 for:0.021175580772976415 by:0.020894160649566302 any:0.017818181354625744 our:0.017689405600879553 no:0.01707521012849988 with:0.015492652163283953 all:0.015312926890393702 great:0.013057882515920546 good:0.013014218362965744 my:0.012955611135231464 :0.07701694639181042 +it:0.21225419876846463 It:0.17717756379071226 which:0.0766790332085648 there:0.0576519556181571 This:0.04458051317016557 he:0.04022923709923177 that:0.03292562443139035 who:0.024535177536425753 what:0.023281712876119496 There:0.021923572697788555 this:0.01959411229995813 and:0.01849831068539548 He:0.01742530793894177 man:0.010330513361642972 work:0.008784260798091009 she:0.008656716897326076 country:0.006199183032407446 as:0.006043699559999821 one:0.005214433455071031 :0.187014872774146 +the:0.2783578883136866 his:0.18112343391322686 a:0.11140176130022456 her:0.05410837676839315 my:0.05104652718272918 and:0.04229118000019179 to:0.02509799324329568 your:0.024572833609128198 their:0.015130071604588279 tho:0.014085009737170327 of:0.011766207035326841 every:0.011704337717672934 in:0.01026527898312834 The:0.009235707743304683 old:0.009154049616526836 bis:0.009136109351635176 this:0.008596459580323929 our:0.008061595255352563 an:0.0066253249802206505 :0.1172398540638735 +the:0.11919516938815296 of:0.07230453158552728 and:0.05781056740443249 a:0.043018564803886335 to:0.031305092790907506 in:0.020848713353460488 at:0.014270110001066288 .:0.012526810245749479 :0.012413283442322082 for:0.011719122709941797 by:0.010808400946589808 or:0.010404172990115616 The:0.01003576004804544 with:0.009811868184449042 tho:0.009295902015355835 was:0.008924239095331684 that:0.008672304223433876 is:0.0085591147338948 be:0.008335143826716943 :0.5187411282106204 +of:0.20752424389360322 to:0.12447729405525423 for:0.11622080248614924 and:0.07520822897673293 in:0.06938917849419164 by:0.05280596192061604 that:0.051010101884174104 with:0.04588672785901147 under:0.03240841875778797 from:0.02184172163239266 In:0.017419875827227375 at:0.015938117709714844 all:0.01465125814308832 on:0.014537132649350857 upon:0.012517126765124635 is:0.012501973755572693 as:0.011028905758905198 which:0.00912072520037582 but:0.008303263444005619 :0.08620894078672109 +and:0.14120525294808958 which:0.10009794413680448 he:0.05282455107698561 It:0.04227805645343885 it:0.038385929343498715 that:0.03722753209584058 have:0.025381985686599284 who:0.02472846111877819 has:0.023556273640626044 I:0.023062490380900916 :0.018860344669957115 day:0.018394609147188424 He:0.017749312213643915 time:0.017543364243158256 all:0.01599374857507417 the:0.01583622850465587 had:0.015576086582798698 they:0.01529926693325507 she:0.014223615540101348 :0.34077494670860486 +the:0.09130818482997517 of:0.07980033634582452 and:0.04972129095022109 to:0.04546722575232894 a:0.025994998074837433 by:0.021698528090902315 :0.020765711817407207 on:0.02042080966654101 from:0.012348663155808013 in:0.010924148876119694 The:0.010398881264321242 A:0.009523041148132592 .:0.00872621692147584 1:0.00866259490583634 No.:0.007866301086737353 with:0.007715940280613434 at:0.007548926809933366 Mrs.:0.006791705111208456 that:0.006536361163727704 :0.5467801337480483 +:0.05408755002078587 that:0.049531093299571755 and:0.026307747831082865 it.:0.023066050300906284 but:0.01604063510609521 as:0.013691133477483644 them.:0.013231826614228009 country.:0.010841946065548622 of:0.010487154798430135 which:0.009468692177853443 people.:0.008334614695462483 years.:0.008004416265567844 time.:0.007956347283674411 If:0.007858697640010603 him.:0.007413514011734311 year.:0.006977232836926869 for:0.006851092903969388 life.:0.006064905382420001 .:0.005982979647669748 :0.7068023696405785 +it:0.19510260083243883 It:0.13857672422327538 he:0.11401547032026972 I:0.062188009799734385 He:0.044905896766306734 which:0.03845231924635239 and:0.030981107935716498 she:0.03059165697534986 there:0.02594337421636126 that:0.024920600407509562 who:0.020301892816267295 This:0.016384524462649423 She:0.012895108480595033 this:0.011509115956525007 There:0.009827433855582905 ho:0.008656844397803379 lie:0.008459902404208396 man:0.008200786254022503 but:0.007725701444468647 :0.18936092920456277 +in:0.13399641588033623 and:0.12735229336039633 to:0.08067326280693404 of:0.05862651043473773 In:0.03880466392269701 after:0.03817157512856079 he:0.02794648999117187 for:0.02769561405379609 that:0.023524358951187454 the:0.021323058779776236 who:0.018358667499074163 not:0.015284247491264672 After:0.013811297198142775 by:0.01241196960592425 which:0.011955443019847986 with:0.011504067017503951 so:0.011445919794094688 as:0.011264222819834111 this:0.010404513284458426 :0.3044454089602611 +for:0.522516378956517 at:0.07916392605981212 in:0.06076090356298737 For:0.05562015786770362 of:0.04941206788196688 and:0.03119865069194807 that:0.02291939654366062 In:0.019910676946278707 to:0.01874453065031037 by:0.017869908109897862 with:0.009414628068473072 until:0.008845848414850496 from:0.008478046209507874 time:0.008042910321727973 after:0.007725885381494389 spent:0.007562319633689019 on:0.007297862787903098 At:0.0068078758734425315 have:0.006496262814467953 :0.05021176322336102 +of:0.3661820849495029 the:0.17805419020423427 said:0.047858555790071 Eng-:0.029192033294693463 on:0.020259663676993462 described:0.018399358763208556 this:0.017412309023340393 in:0.01633589449927516 our:0.014699914244328547 Mary-:0.014246367553274512 his:0.011372736480196167 tho:0.011017053620333627 Cleve-:0.009829044963055686 between:0.009765341937434406 ot:0.009757182746114862 native:0.009559361519672176 by:0.00850605519015684 agricultural:0.008293438957586484 and:0.008229281906024549 :0.19003013068050295 +his:0.21294608919689365 their:0.16680315968739967 and:0.07745599694147802 of:0.0701526662513272 my:0.05610714112304241 our:0.052358806015096536 her:0.039493082115134345 many:0.03820406502318167 the:0.03623905853825335 your:0.03581873862435328 with:0.028671902193817034 in:0.01332668624461746 bis:0.012119308864250227 its:0.01209785118774211 to:0.011689946994081673 for:0.01142860125793434 by:0.010765514831987004 or:0.008483599675390542 a:0.008336898740195787 :0.0965008864938237 +is:0.2615014892512901 are:0.1568420002587309 was:0.1257778860784388 and:0.08651401309876496 were:0.046795508563129126 Is:0.04667032961015038 but:0.036046277645157505 be:0.032914634025132394 he:0.01717952868354031 I:0.013926460523141112 the:0.01381369343806723 not:0.013073008087170285 have:0.012540841827382876 had:0.012277195734220406 been:0.012019827998093023 they:0.011450140063414521 has:0.010668800015070961 it:0.009482463570460845 so:0.009254937765540157 :0.07025096376310408 +:0.05526121378491516 and:0.04213857513123554 that:0.022396869229903436 was:0.016184051873032144 .:0.011860294133118631 be:0.01139713653959577 is:0.009828450143280813 but:0.009336057117442977 feet:0.008907840571351498 up:0.008813241814152774 it.:0.008792162138166554 time:0.008585241366614215 are:0.008467262725123593 or:0.007666203863478521 the:0.007529915593564375 out:0.0075234588294304265 of:0.007503778279825686 used:0.007482597658912208 made:0.00732495805239878 :0.7320006911544569 +of:0.20229774148048785 to:0.09620866963289926 in:0.07920485629209435 at:0.06416977696412242 for:0.06088933463105681 by:0.05657569279008464 or:0.04850583479466894 if:0.04770299608848796 that:0.04323549188433986 If:0.03059903646522833 than:0.030477710455056786 from:0.02898983129212795 make:0.01804535179060619 with:0.017614752722527334 on:0.016494514274536506 have:0.016123291500303942 as:0.01573724028401233 and:0.014673793189513297 In:0.014593508660730881 :0.09686057480711437 +and:0.08995317707915026 to:0.06844710404109794 of:0.04605142056172993 the:0.04074574508561307 which:0.02479116931334353 that:0.023764822140213245 re-:0.020841117231308055 in:0.020803825395358622 for:0.020278423301550053 :0.018417753428486977 not:0.016860793136637672 con-:0.016444405871234195 is:0.014386481772210856 or:0.014080680914153714 be-:0.01352268143271276 I:0.01317002660943805 was:0.011429878269381662 dis-:0.011196807025842847 he:0.01113106290024311 :0.5026826244902934 +a:0.10330765468027867 the:0.10205009408751377 and:0.08423835821976441 of:0.0454082182983733 to:0.036804502178576476 in:0.02498157751176433 for:0.02386703544432962 more:0.019542188386433214 that:0.018507915612985416 his:0.016845214491984457 an:0.016527049006174126 as:0.015370674949874234 be:0.014043558285642233 was:0.01375262390446373 is:0.013660003952268993 will:0.013589219804035869 her:0.013369647416154174 with:0.012349647290974835 The:0.0111312154205353 :0.39965360105787284 +as:0.07348237429869825 and:0.053293291927724 according:0.0479709431097652 up:0.04410375066718131 them:0.0360918361710351 regard:0.032406892412297036 come:0.031291428310290255 back:0.02891251395441225 return:0.02673975554051193 came:0.025351047659788954 returned:0.022021941716222352 it:0.01975522069512534 down:0.01933170912324385 him:0.019027828623193535 go:0.018504100610066444 went:0.017627960690307223 given:0.016230557067889343 owing:0.015689732254652238 attention:0.015375915241202635 :0.43579119992639276 +and:0.21608868437081194 the:0.19034768246227998 any:0.11644645730943155 or:0.049707272176674054 all:0.04575673810391334 in:0.04411791940042146 of:0.04387201110119706 some:0.03451111474568302 an-:0.028333261549318922 with:0.02140604504348676 from:0.020476206736720726 many:0.020341355734470823 each:0.020000893607070486 The:0.019651980096657674 In:0.019565845805703152 to:0.01945184889724606 no:0.016362194745222068 every:0.010647398948302007 an­:0.010535952152806066 :0.05137913701258283 +and:0.049073875122769235 that:0.02645277232907055 of:0.023475490314539233 :0.020082886812981152 the:0.020032074218401703 -:0.017483614808842817 it:0.016677751951196515 which:0.01600011390461726 in:0.01541922612740534 to:0.01231864938745681 for:0.011250104133513685 by:0.010084216303093349 I:0.008870831636522369 as:0.008736759244478426 It:0.007574793996927895 a:0.007353588099564438 or:0.0070160466014137545 .:0.006984825629097682 not:0.006501641909907969 :0.7076107374681999 +more:0.5646929782169823 less:0.2808925315293171 three:0.01449094686601493 rather:0.01290869811724955 moro:0.007789236719801773 better:0.007188442559612245 other:0.006273555429495162 two:0.005338579305003538 More:0.0051451683954346844 and:0.005003204704473015 greater:0.003981917304677837 leas:0.0036155961027111673 worse:0.003458538637385512 later:0.003073756350079418 mora:0.0029767048731220136 time:0.002562974973336763 larger:0.00234471705335412 faster:0.0022055657427715192 longer:0.0020947848718002103 :0.06296210224737708 +the:0.10349941825977628 of:0.07780094728972378 to:0.06420702174654352 and:0.061746215223707865 was:0.03333156868202289 is:0.02533548124222037 that:0.018426761059415823 on:0.017895128487904314 Mr.:0.016945587502734435 for:0.016827398400811253 be:0.015643058415931745 by:0.014692845858738892 in:0.014266706900738784 be-:0.014097488423896855 are:0.013936813555046468 :0.01329330743580529 were:0.01280690120051024 Mrs.:0.012737777251573944 .:0.012321223343142363 :0.43918834971975484 +to:0.12022893700269083 and:0.09020394424291768 the:0.08587503820055309 of:0.06450042443224316 in:0.0310058468700829 a:0.017742048521183405 :0.015548046036689871 not:0.01491307651316237 that:0.014112408707955496 for:0.013734482372212283 I:0.013065769926808477 will:0.012848502316304782 at:0.012837991177321897 In:0.012628718855091186 by:0.012491091048660757 be:0.011425930130217754 is:0.0113962101007567 he:0.011342727513475473 or:0.01112522537451577 :0.4219735806571561 +and:0.07558940021936399 recorded:0.030196237618668006 was:0.028917161578042846 made:0.027969746247669736 that:0.027730098932509103 o'clock:0.025060522019555328 up:0.023026552239529506 is:0.020398277211376416 found:0.02003101797656537 placed:0.017482208134164214 out:0.016937164562539058 place:0.016819459500107596 interest:0.016629321966808677 him:0.016002796715253755 situated:0.01573420479581609 it:0.015128305982428461 them:0.014715943643665314 part:0.014646613000297721 interested:0.014450471929902294 :0.5615344957257364 +the:0.4863929569828634 high:0.07467659177734665 and:0.058891590549018984 The:0.04452974053297971 low:0.04282516198342537 tho:0.02945916394805929 in:0.027613228063983284 of:0.024978837060694432 a:0.02282061792042596 higher:0.012867406132623898 tbe:0.011960838322837244 at:0.011782525816008383 lower:0.011104372635289248 that:0.010365078610650611 with:0.01024821543277546 from:0.009558049874486258 on:0.007855289606912398 by:0.007472117083099207 In:0.006973033532333759 :0.08662518413418648 +and:0.06996321061696227 the:0.05539796578256483 of:0.053529893479966194 a:0.04801538788135023 to:0.034042400407439784 that:0.02804760309668386 in:0.02127496638030512 for:0.01770547686372303 her:0.0158453551032623 was:0.014973803393288854 is:0.014056553713952653 be:0.013541673254985766 you:0.01287318162168323 with:0.012717635755603866 more:0.012610581615981616 which:0.011870974207871957 as:0.011434122726492158 his:0.010846788839428427 by:0.010633113682268788 :0.529619311576185 +of:0.1741278322987472 for:0.14984533914493578 in:0.11448177118179419 to:0.10950032479113712 with:0.07267248139462186 and:0.059819144764563834 at:0.03401213242786972 all:0.027766309554793686 by:0.02514060133328238 from:0.024189294524992556 that:0.019486606042562655 upon:0.019267423516438963 on:0.014737021006952527 In:0.014701666386380182 under:0.01196021305166276 make:0.008241669544433906 after:0.008084023000780304 made:0.0078460758078502 is:0.007842301547187285 :0.09527776867901291 +the:0.08638641613184724 to:0.06432478961291928 of:0.048940586955523176 and:0.04726049611656772 at:0.04480943471960884 for:0.03202073486107988 in:0.031296866872585385 was:0.021152296717778924 is:0.021103666776398983 a:0.019025070040980863 will:0.01644702877679403 that:0.015793040328791356 be:0.014858149063606333 :0.013765118634067527 are:0.013506578302260923 In:0.01229918096952832 I:0.011444230009947643 -:0.01091095631980344 or:0.010550960387378593 :0.4631043984025315 +;:0.017133133096078276 it,:0.0145417343101323 in:0.014194265949948007 up:0.01382302776590254 them,:0.013795301019562837 him,:0.013580284362727563 him:0.013345422095364932 them:0.010282816254810655 it:0.009603478260343232 here:0.008926562510645952 time:0.008914996733883986 out:0.007657480405185466 time,:0.007230233557031522 up,:0.006865505818829017 and:0.006526108219093274 made:0.006141388563243173 men:0.006010261138239291 years,:0.005934741911328966 to:0.0059138089427478585 :0.8085794490849012 +of:0.21044560526000103 the:0.11392497295369439 on:0.0888091923010179 and:0.07648021835341025 at:0.042157097560038874 to:0.04081563458138143 from:0.028152768806944513 in:0.02744055147427621 with:0.015449965454392596 a:0.013104314513363089 for:0.010725902433474922 by:0.010523162467590892 about:0.008707737180290977 :0.008234128979833529 .:0.00764821866430621 along:0.00718939409733976 said:0.006928958257801909 or:0.006637720371442053 tho:0.006602869840998138 :0.2690215864484013 +men:0.02391317322234087 street:0.015501105374124904 rights:0.014313912282210933 city:0.012978500995972133 house:0.011577937616583574 state:0.011043757605338206 one:0.01065914588404838 land:0.010296142736827217 women:0.009614035095316678 North:0.009273906677066549 wheat:0.008777929676185648 officers:0.008700947810320311 up:0.008642725816742827 States:0.00812280398935402 time:0.008065488320843417 hundred:0.007982028930941144 known:0.007962952666677224 man:0.007780939230723172 town:0.007655964987174476 :0.7961366010812083 +the:0.11500545585881412 of:0.0897605566703555 and:0.07914879987306167 a:0.05827037833039227 to:0.0386987683614473 was:0.029282661483795363 be:0.023890810389268442 is:0.02056818843792312 been:0.017204803150083207 or:0.017094944717067368 in:0.01610392931760865 are:0.015798243080240505 his:0.01344187865263006 at:0.01321973597799718 for:0.01304287912725108 their:0.012337012043366955 were:0.012236169772424844 :0.01133284696603621 The:0.01095822742659897 :0.3916037103636372 +of:0.38784248177022235 in:0.19576324782032112 to:0.09542986803256373 for:0.03912608542122088 In:0.03886256616220825 that:0.032375606724202935 on:0.0317052653295985 from:0.027083193876887887 by:0.02144847284437294 with:0.013524339637324271 throughout:0.012824258521677257 and:0.012317623308056625 all:0.01221642178939611 upon:0.011029849137423107 as:0.01016465646795778 over:0.006498615002023567 under:0.0063548374593585255 iu:0.005236220510205079 ot:0.0050660134921498325 :0.034130376692829256 +be:0.15886860922852156 is:0.10952250289152227 was:0.10598081424252262 not:0.06936329694411753 been:0.05632488890467107 a:0.04936944206302504 the:0.04877371504809058 no:0.04804607184164604 to:0.04598960028509395 and:0.03542421079197273 very:0.02921771234933647 are:0.02831656296923826 were:0.026283213128018346 have:0.02221917573860639 Is:0.019871384265553346 had:0.017689858556369467 as:0.01763769987013514 he:0.015615495705835803 or:0.014574206987338176 :0.07991153818838521 +a:0.13904467368169265 so:0.12146527610682407 very:0.1099402692853128 the:0.07192875094994688 of:0.06553748811473885 is:0.04795495214850851 be:0.047119665559464605 as:0.046385481943112664 are:0.043202566772149405 too:0.03725093291695334 was:0.03536260757190883 with:0.02423528509596763 were:0.023386123156777877 and:0.01981943796609303 been:0.018775300921660104 in:0.015711239614055357 to:0.013055637739209558 his:0.009814714860522478 both:0.009270636928475249 :0.0997389586666261 +that:0.17355634793873995 and:0.07181278738620422 which:0.06087404052945047 as:0.058529782045597716 if:0.05758975011873287 when:0.045955781678148046 but:0.03546530931852298 what:0.02949482374092239 If:0.024721151370514484 time:0.02095510285378353 where:0.020103817411857395 whom:0.019625873214235708 When:0.019204331887195142 before:0.01690080682035397 after:0.01389311429639891 until:0.012707689097361651 because:0.011621928864876827 the:0.011409537737931914 But:0.011033173419135477 :0.2835448502700363 +of:0.2680889786401786 to:0.07689516299656515 and:0.07603768846544214 in:0.06534828020967813 with:0.05655118894891718 on:0.048237340816875876 for:0.04819301781976377 that:0.04166131364135675 by:0.04106024924652213 from:0.032409844417840075 is:0.02263228523599024 all:0.02079043639840426 at:0.01774212203469285 upon:0.016973665308471633 as:0.01607951442280962 was:0.015508117355698616 In:0.014652136395978262 but:0.00971165534370791 be:0.009681105163396719 :0.10074589713771012 +and:0.036163001301143326 miles:0.03426311212625663 free:0.03330978850321795 far:0.027878204138329216 away:0.027612474438655048 suffering:0.022457202217289057 him:0.01978041441012929 them:0.019452101850619567 or:0.018413834246186648 it:0.017667545223036624 taken:0.016172371544295145 come:0.015434205859242982 out:0.014632990848161971 made:0.013646733411622508 received:0.013193041403157992 feet:0.012967307522593894 came:0.012865443983456806 years:0.01262667261658779 up:0.012462096192195415 :0.6180014581638221 +of:0.16837266150142827 in:0.10919784975155265 the:0.08006515145462649 for:0.060532490511512486 and:0.038765116824290784 at:0.03871264811622726 their:0.029868990064065924 from:0.02847971333896055 by:0.02800680090216812 with:0.019757669346909063 his:0.016302123108760756 ad-:0.016027513522168916 public:0.014916967257308506 In:0.012706692153584682 or:0.0125625783143556 its:0.012348214351132489 made:0.011681049894614359 it:0.011536928626563341 to:0.011143305067538748 :0.27801553589223105 +a:0.1847773090972418 the:0.11379990473960405 of:0.10266676305241472 and:0.09821665516428833 that:0.055387055085900416 to:0.05239898495621305 will:0.03855869787306404 you:0.03488127253054349 by:0.024853978324945254 in:0.021604126358714483 his:0.020717960617130236 The:0.019075102871057882 which:0.018161863858407092 we:0.017535503849563348 would:0.013433260805883748 they:0.013368128878816788 no:0.010672508321415336 for:0.010250149393091509 on:0.009936471306676622 :0.13870430291502783 +the:0.19749125756169547 Mr.:0.07112699624208033 of:0.06603367254516487 The:0.05768776091110846 and:0.05327374818694666 that:0.0420321405581567 a:0.02582588575453538 his:0.0169326573605278 Mrs.:0.014795070048324819 tho:0.014769024234222154 which:0.011478554728659614 he:0.01110833274239838 as:0.010988112958762878 I:0.010409931249854676 in:0.010294293477152827 :0.008879223773482728 to:0.008465710829358392 for:0.008281932125153052 if:0.008197991279302505 :0.3509277034331123 +the:0.14957672291702365 of:0.08498002854255245 and:0.05726623870829423 a:0.04495984628063783 to:0.040159371349577026 in:0.0364293810645345 be:0.017565835952854315 for:0.01494504314278294 was:0.014215201942233868 is:0.013828094687930873 this:0.012113184880053737 or:0.011909582925857093 as:0.011598343721070768 tho:0.011585434102473565 with:0.011313987534899572 In:0.010796003112170636 :0.010668854187104315 his:0.01063646294435309 by:0.01035206669108507 :0.42410031531251047 +:0.07317252648219583 it.:0.023909164794577203 him.:0.01933181597355439 them.:0.015394961318414809 time.:0.010666547223684694 day.:0.008036588110981095 country.:0.00793787472012122 .:0.00789313286718507 work.:0.007244617046343547 years.:0.006361143299719951 life.:0.006239419173895015 out.:0.006202565309631506 man.:0.005812617690366467 city.:0.0057362209764779855 place.:0.005547263827519055 water.:0.005410153537742539 one.:0.005391359722416707 morning.:0.005237476271247588 night.:0.005227084975903167 :0.7682474666780221 +and:0.0869217066615866 to:0.07836038901998825 the:0.0550132038651713 of:0.04484154130514139 in:0.036374524664323275 be:0.03620437110026432 was:0.030059135171737035 re-:0.028349318322404466 for:0.026760886897740983 he:0.025627353942065598 is:0.019113386394678387 con-:0.018704616372348767 are:0.017717806950402024 been:0.01767321342256716 were:0.017100582084242342 or:0.01630447943278193 that:0.016133994988018478 I:0.014582439298757579 it:0.014073479518220801 :0.39908357058755933 +the:0.45209640199162526 The:0.09567589489490595 his:0.09051202808744627 my:0.03482092801389738 our:0.029436025248062936 their:0.027734367808033025 tho:0.019763006438381806 your:0.017419790024559043 and:0.01741214884826546 its:0.015043594081662346 of:0.0133287831166091 this:0.01286637662974418 her:0.012755783691839766 His:0.00957470064999418 a:0.007566937756835983 tbe:0.007377504970169276 or:0.006746612045205184 said:0.00630875338495864 that:0.006077080784636428 :0.11648328153316781 +to:0.6611311091440554 and:0.05180861378868453 will:0.04150081141030934 would:0.023796982131408104 can:0.021059249816458125 I:0.01853743777461446 not:0.016859843834279374 could:0.01582124090391674 who:0.014447328576685138 we:0.013083382095902138 they:0.01143018663480879 may:0.010807788804349353 should:0.008888189349237493 that:0.008646565007758138 To:0.007756882814138446 must:0.007542822666723526 which:0.007508079991241671 the:0.005492499405736796 We:0.005411034483911763 :0.0474699513657806 +that:0.21097312415356267 and:0.15268847568305033 which:0.09950931213088895 but:0.06476688320082268 as:0.051723209245815756 when:0.043978120041322295 to:0.026137014127546997 where:0.025172060493469463 if:0.022602197143419725 will:0.019476704834955526 would:0.018277740189997425 because:0.0165727629084201 what:0.013830789199962806 while:0.012266495446259318 Then:0.01195150614750911 it:0.01168129910514458 time:0.011536518305591251 so:0.011528912531939817 may:0.011423877014028371 :0.1629029980962928 +of:0.12290803917675319 as:0.10092694216438537 is:0.07281656193772186 and:0.06015296850196632 that:0.05866341917992869 was:0.051952494436217335 by:0.04992156188831352 for:0.04902278142030771 to:0.04901558791793477 with:0.04340264710651162 be:0.036197850262557216 such:0.03045394143858003 in:0.025432829326508078 but:0.017822137430435737 if:0.016592157277447814 like:0.016438295815065875 when:0.013881702727969437 not:0.013340375855818924 If:0.012927364416938977 :0.1571303417186375 +a:0.4131436660774751 the:0.11727874849322835 this:0.08291795565956275 said:0.040072634666299664 to:0.03500319987915846 that:0.03278365035952793 starting:0.024294042161044752 in:0.01915459412353904 any:0.018345635162549244 one:0.015855300540850145 first:0.013959291858274204 A:0.012865177793796808 of:0.011261900836222418 every:0.010299287935771869 and:0.009938618274880016 No:0.009277610620123033 his:0.008619823494903919 no:0.007522268958922782 tho:0.007440001700535037 :0.1089665914033345 +and:0.1123733421746792 the:0.06398871609351217 of:0.05820119173641186 to:0.05410698206537067 was:0.04217115686866493 for:0.033307593773933754 in:0.033147563636303126 a:0.0308236866245999 is:0.029234408063700194 be:0.028449136552304022 will:0.020229528223419613 he:0.01952711385419231 not:0.017649792266210718 are:0.01723033176726026 as:0.016142300456216858 been:0.01590213861403329 that:0.015549231352813601 his:0.0147109348728496 which:0.01457074757463291 :0.361684103428891 +able:0.051718119870189316 is:0.04699969064210397 and:0.04392097711063288 willing:0.04076597469176644 as:0.03548097467371745 ready:0.0339941202931278 unable:0.033921628250991154 have:0.03282822481204179 going:0.03084932209958752 was:0.030685653625727862 him:0.030042422411579606 them:0.02996646595183781 decided:0.029789262457927197 began:0.028702149071638164 had:0.028043740253739048 allowed:0.027100991723741207 refused:0.026722677647168753 made:0.025832498313756995 enough:0.025613252498956084 :0.36602185359976896 +the:0.20311644290997724 of:0.08089803041475234 and:0.06058303288877461 a:0.04472052512158245 to:0.043852371432943515 in:0.024837100372036652 or:0.0201705748565671 be:0.014644686481936344 for:0.014590410256476803 his:0.01453546701824368 their:0.01405707703627205 tho:0.013047605279205166 at:0.012649922734842209 .:0.012031874460414097 The:0.011949479546967942 said:0.010791970841973112 was:0.010515078549333562 is:0.010003208293309938 are:0.009874097001836377 :0.3721310445025548 +a:0.29074213916100644 of:0.16566121956142268 the:0.11225771927318279 in:0.07076422485184697 and:0.041656186096147255 for:0.03221082520276494 with:0.029542785658145658 by:0.020515274968986707 very:0.020217951969566123 any:0.017658336680163287 In:0.017295118955881317 make:0.016654851072436985 to:0.01520250778077324 A:0.014845966397351806 no:0.01371226616227294 that:0.012686160136440434 some:0.012413927707980867 or:0.011478952202707102 The:0.010151308329257586 :0.07333227783166486 +and:0.0683896310255697 Lots:0.05592431209960395 the:0.05151571478121027 of:0.0434795735102364 lots:0.026256363840099318 to:0.02526844347452121 1:0.023964643417395518 south:0.02326956990734984 than:0.02275116708523825 street:0.021854967685332214 :0.021701205603220832 that:0.021079715450751917 north:0.02057593131184659 from:0.018707912616808757 No.:0.017907469570061604 feet:0.01789280063644042 as:0.016188920734194333 lot:0.015126060249836697 for:0.015115711456053517 :0.47202988554422864 +of:0.09129790931378902 the:0.07369883040827747 and:0.047842263382354346 in:0.04189055351593407 to:0.04045875475680249 a:0.03542341257202578 be:0.02020462051672066 for:0.01979292654746225 was:0.01760256398103379 at:0.017380150555488715 is:0.014984483003968216 with:0.014047653760730413 by:0.01374644383819499 :0.012670486581795598 In:0.01200961464556976 or:0.011563835749786333 from:0.011391516893522809 are:0.011273104484969465 that:0.010755276030689069 :0.4809655994608848 +and:0.07895257911471103 was:0.03596317658514438 out:0.024016824392823457 that:0.023672598027062328 placed:0.022844208461019616 work:0.021707439938587154 made:0.020781005318872947 is:0.020224993929329655 up:0.019794182040466738 put:0.018288921183371155 down:0.0171740551508179 interest:0.01663630075189571 point:0.01659978677065351 him:0.016175999448187352 held:0.015562908663841706 Dakota,:0.014616466073415059 place:0.01424333231426501 Minnesota,:0.014067166610364513 it:0.013665465625771424 :0.5740125895993994 +the:0.3325940579442531 an:0.08672956874434659 and:0.08425448610057455 of:0.056639399639006126 most:0.0555186680504099 a:0.048443157445177944 The:0.03583830848478693 or:0.021845057234992016 his:0.021558303161000124 in:0.021286484465714788 be:0.021097010119690115 for:0.019981332782783186 to:0.019973912192819045 is:0.019195396645097066 with:0.01910226653572437 tho:0.01901401689753623 no:0.018472637029410332 her:0.014404467895752683 this:0.013643697448916725 :0.06940777118200814 +men:0.014611904704139858 ;:0.012257643068800282 in:0.007563873650542574 city:0.006780985809170611 and:0.006761677073252176 one:0.006665108473063561 :0.006577727409316432 up:0.005817523326018256 right:0.0056768053112492755 land:0.005412922834242787 street:0.005333747521370628 made:0.005284193345021688 mortgage:0.005252362439059261 all:0.005134223343992852 him:0.005029164984062979 appear:0.004735518721601944 work:0.00470924038232489 them:0.004635227070238776 York:0.004577058531166395 :0.8761830920013648 +two:0.11490668671689416 three:0.07760326331414039 five:0.0741994606680594 six:0.07010992936913478 ten:0.06766210375729312 four:0.05164221368132994 one:0.03907654114321747 eight:0.027007361987196447 hundred:0.025606542512655046 more:0.014912136067454637 hour:0.014721798319830092 fifteen:0.014240860228510283 seven:0.013338959385816647 year:0.01326765724234371 week:0.013241013386718263 day:0.012034014529776163 twelve:0.010413054546732907 lot:0.009324871994745377 twenty:0.00839403462300273 :0.32729749652514845 +in:0.5373759002422336 In:0.1172378658023568 the:0.0608071171554892 of:0.05122812356615526 from:0.031286604857805426 a:0.024847036349951748 this:0.020071482379186274 his:0.01836395772559822 their:0.01803504846382641 for:0.014532445579026521 no:0.012892557989480961 its:0.012479484877017388 iu:0.010867767998780793 and:0.01077502120776979 without:0.008413010285089098 with:0.007482022760239863 my:0.007318564702175275 any:0.007266121063221811 by:0.004250289690141384 :0.02346957730445413 +and:0.19859061761550814 but:0.06343621055989428 is:0.05563909400323261 was:0.0455540382295282 that:0.04312648602244532 be:0.02140659152366557 are:0.02105175409527132 have:0.01670559129681374 had:0.015608597194831571 which:0.015254516229865704 made:0.014177170237293441 men:0.013120753481650644 not:0.012907628945894267 as:0.012814718537367265 were:0.01211692651219259 has:0.01210882724395366 it:0.011530467957920069 I:0.011008850906412827 Is:0.010755242491791753 :0.39208591691446704 +that:0.17268155426278642 as:0.12939942734855897 which:0.08777445675294848 and:0.07219176860860545 when:0.06501319366246848 if:0.052564711473055345 but:0.04320704520380458 where:0.036967091738002944 what:0.028104086546442635 than:0.019624856602796406 because:0.018796318483507695 If:0.01802612701470826 whom:0.014385736798062243 until:0.014029665907167144 for:0.012884835822467022 When:0.010397688265510182 how:0.01027938669040384 before:0.009918190676976985 or:0.009759684751176804 :0.17299417339055015 +the:0.11863153009599811 of:0.07863490168947676 and:0.06103306037010035 to:0.035733798069091896 in:0.03493357288533504 a:0.024293651387377987 be:0.016949321973996328 was:0.016217134833042723 which:0.01605014262999271 his:0.015843399379637416 The:0.015784672503537607 that:0.015233411175496602 for:0.015092553082840706 much:0.014397562739533819 is:0.013733600208393612 he:0.013529864123662288 Mr.:0.011957903275045714 their:0.01093590760471549 it:0.010580887768222146 :0.4594331242045027 +one:0.1028303141280697 part:0.05963429477052991 out:0.04766456937681193 some:0.031418679026461914 members:0.030764490253327767 side:0.029940657362655835 portion:0.022063658796890564 office:0.020457735219956013 member:0.019726706386316174 end:0.019666887540649894 tion:0.018667441728710307 parts:0.016814747270460957 people:0.014112771422418794 all:0.014072739582212475 any:0.013183573287639892 One:0.013083578354183906 that:0.013024335602903442 account:0.012482348155001894 many:0.012077825070275192 :0.48731264666452345 +the:0.3687258032738073 a:0.09216712869122169 of:0.07327727837777863 an:0.07168909649980079 and:0.06153614960200016 The:0.050059563879749316 in:0.03711707310245043 tho:0.029447259121805052 any:0.018804977541403475 this:0.0165395311628466 with:0.015813323398707946 tbe:0.014918611994536691 to:0.013919368127436377 said:0.013294582818628446 on:0.011589886727413007 that:0.010832937465219947 for:0.010389994020820935 new:0.010190768123500855 In:0.010158547710134644 :0.06852811836073769 +of:0.2094044326800705 in:0.10323064403071443 to:0.10003830707887722 for:0.06651277384544663 and:0.059888103219910734 with:0.05229638367705768 on:0.04126439815398536 from:0.0354362178188539 by:0.03150820700611748 at:0.023923279676181686 that:0.021401420699051488 upon:0.015462838440665488 In:0.01545720659661401 all:0.012395979629342193 or:0.011833585179611528 as:0.010765835272299391 up:0.010244683825641929 into:0.008022179740618366 through:0.007346693776088779 :0.16256682965285124 +of:0.09129790931378902 the:0.07369883040827747 and:0.047842263382354346 in:0.04189055351593407 to:0.04045875475680249 a:0.03542341257202578 be:0.02020462051672066 for:0.01979292654746225 was:0.01760256398103379 at:0.017380150555488715 is:0.014984483003968216 with:0.014047653760730413 by:0.01374644383819499 :0.012670486581795598 In:0.01200961464556976 or:0.011563835749786333 from:0.011391516893522809 are:0.011273104484969465 that:0.010755276030689069 :0.4809655994608848 +the:0.5940138903130784 his:0.046312918557148176 a:0.03057715553285103 tho:0.028216920960260287 in:0.024535894678408596 their:0.02347326762436394 any:0.022538440991647778 this:0.01862050434243408 The:0.016998461840078315 of:0.01653355951047131 and:0.015604560620918802 my:0.01380017751544409 such:0.012865663611512633 same:0.012803674286418001 your:0.012207358250199748 its:0.01215966711053201 said:0.012060782832283111 other:0.01114611734536298 great:0.010545784434687112 :0.06398519964189961 +of:0.09129790931378902 the:0.07369883040827747 and:0.047842263382354346 in:0.04189055351593407 to:0.04045875475680249 a:0.03542341257202578 be:0.02020462051672066 for:0.01979292654746225 was:0.01760256398103379 at:0.017380150555488715 is:0.014984483003968216 with:0.014047653760730413 by:0.01374644383819499 :0.012670486581795598 In:0.01200961464556976 or:0.011563835749786333 from:0.011391516893522809 are:0.011273104484969465 that:0.010755276030689069 :0.4809655994608848 +and:0.04100058548081417 made:0.03527080183438041 up:0.03367954534641095 secured:0.02476622138504677 out:0.024689072807278292 taken:0.02328185886478565 ed:0.02044259980376245 him:0.01783557824685978 done:0.016560066545651793 that:0.015750093181258838 was:0.01569752058067051 in:0.015183890346288944 passed:0.013580017055816527 accompanied:0.013316817877456501 or:0.013019619994860636 held:0.012139161851077915 owned:0.012100256294445628 issued:0.012004080678763133 given:0.011007403175678152 :0.627674808648693 +those:0.04786752182671451 and:0.0464444742507646 men:0.024814664492651173 people:0.015140995810468733 persons:0.01179147976895901 two:0.010473940183516784 these:0.008292006589492461 :0.008266235859946213 both:0.007759679563110262 but:0.007281714049038465 all:0.007127225273984481 he:0.006268920751299815 you:0.005776059490652919 others:0.005394481929173031 well:0.005037742437760279 man:0.00472917405947789 I:0.00458961453736237 that:0.004580255224592905 women:0.004276492053009745 :0.7630873218480244 +they:0.20465291601047186 we:0.0932398471557799 who:0.06726026996548422 which:0.05764036356553189 They:0.04970329466983208 and:0.04640982782614767 you:0.04634000880268458 that:0.04395419602255319 We:0.04261885186333397 there:0.027839320981165743 men:0.02052725416801498 people:0.01614445038107812 You:0.0136276631482998 There:0.012493746077643988 but:0.009186976751704969 as:0.008622504089235832 it:0.008088492134258893 These:0.007147575951353116 these:0.006303065170454346 :0.21719937526497082 +will:0.26457023402043506 to:0.25458229715430514 may:0.08621204026210155 shall:0.07893867645735121 would:0.07558896716153836 should:0.058035304969896305 must:0.046685639198788195 can:0.04261433639490182 could:0.022150032160305005 not:0.02160195970092554 might:0.01397609727459395 cannot:0.010632185535736298 and:0.0027878558317725216 it:0.0018362921501992237 also:0.001484163270770729 never:0.0014615498407082345 soon:0.001148958515009211 now:0.0010595184475316265 well:0.0009449713343435224 :0.012688920318786495 +those:0.11999919925524949 men:0.07247191871737804 and:0.0613979338769373 man:0.05926365276765005 people:0.026258218536808476 one:0.020308933816621473 all:0.018795482585020194 Those:0.01292776883001645 persons:0.012582236727208517 woman:0.010976916577004985 person:0.010688696627121526 women:0.00972673656670808 others:0.007910529737203813 girl:0.006847435986203385 or:0.00672094681269142 thoso:0.00617455298030445 friends:0.006024193125371561 man,:0.005544672924237675 gentleman:0.005255714382956099 :0.519124259167307 +he:0.10092497398935762 of:0.0899675158601354 the:0.08345692295927752 and:0.08292883933870052 is:0.06744371447820392 He:0.06613829962480104 that:0.033778912480307545 be:0.03350973047312571 was:0.0307053769174531 I:0.027905631597084753 which:0.027740537790067663 by:0.022025054341296885 for:0.0204569354508325 in:0.018328876624629405 to:0.01739527301883028 she:0.01668670647757327 are:0.016368177950675 we:0.015474112626062204 who:0.015071282351951753 :0.2126931256496339 +in:0.1585239443094597 of:0.14691684071499472 for:0.07606339458086106 to:0.0714115921118487 by:0.05790234072216463 and:0.048191411666433405 In:0.04246229436476371 with:0.04125503540733733 is:0.03891296090255228 was:0.03425302211680465 at:0.027339526143426836 as:0.025674940452904308 from:0.022950308105942563 on:0.021284916044902822 that:0.020318402635968447 than:0.019059132780181853 such:0.019050813023708053 upon:0.014463924336746632 not:0.014112681186598572 :0.09885251839239974 +away:0.09549402343002612 taken:0.060483295419399855 and:0.052692558750583415 come:0.04138555618544674 them:0.03617758295906313 came:0.034629477164107116 him:0.029834592843084318 derived:0.024976440288223337 out:0.02390495915142546 it:0.021658429059553157 received:0.019992879138828572 down:0.01777331561857889 made:0.01712597753475001 up:0.016444078313291626 brought:0.01627799692885795 years:0.01505350980959259 separated:0.013004710906913249 back:0.012711253342514781 miles:0.012050201609326436 :0.43732916154643325 +and:0.03868242960999506 as:0.031124813427855922 went:0.02352509775927722 him:0.02196555539050794 them:0.018760608639018784 up:0.017985449426794205 is:0.017894175620344187 go:0.017174904667157563 able:0.016756848979943888 going:0.014481672239490295 it:0.014128375989346808 was:0.013277058274565138 time:0.013249953793837373 not:0.012469887553778763 began:0.012465717758716884 way:0.012105610030480113 back:0.012090864562211581 right:0.011941707822828511 amounted:0.011564315359310868 :0.667354953094539 +and:0.19342852649804285 of:0.1595531720836459 to:0.058442753472026175 about:0.04854245378781037 than:0.03482350715249807 the:0.032971658709723094 on:0.0318522941180719 in:0.03121475739822838 or:0.028161394819232907 for:0.025276222685188917 with:0.02115470731748334 from:0.01932457634619745 at:0.019270091513154092 are:0.014316341923099976 as:0.013798425871055604 is:0.013121944384214492 was:0.012526379691630018 by:0.011750084440549662 over:0.011010421574353522 :0.2184602862137933 +the:0.14688550666035172 of:0.089365093350741 in:0.07115038422064385 and:0.05494902531899314 that:0.035473490140925525 such:0.026405672476454155 to:0.02633440270560831 or:0.023725682396981227 which:0.023241958905384788 The:0.020832937300988244 a:0.018412753597480826 In:0.017395311545173004 said:0.01712240566117827 any:0.015575209457159596 con-:0.01546813841730081 as:0.014694963473556463 Mr.:0.014152332191883816 :0.012997582081916485 their:0.012508613507629059 :0.3423085365896497 +that:0.15382124707984565 if:0.13135665034087637 If:0.11020514924097287 and:0.08960775413507485 which:0.061413537020428725 as:0.06080966392878828 when:0.03013729624237977 but:0.025616125954144277 what:0.02514186784232047 of:0.017187605141175583 for:0.016314290112114615 And:0.015213842539712112 because:0.013853079247010552 unless:0.012963295314291816 before:0.01246950961286691 where:0.012064132893788456 until:0.01030738670539569 than:0.010262402015438977 whom:0.009857907093511392 :0.18039725753986263 +the:0.24693794467683097 of:0.22659026306031751 on:0.06598860375103742 from:0.050875952454725794 in:0.04813091377828333 to:0.03305927404856589 and:0.019356358842862565 South:0.01870165875545219 North:0.017586006745645182 at:0.016752582358950503 for:0.012683146514102805 south:0.011212859302466937 said:0.011119898037934084 In:0.010954654208576383 East:0.010272768857320267 tho:0.009851599392975356 along:0.008708919262952792 between:0.008122077767462339 by:0.00810255690669499 :0.16399196127684268 +the:0.12006732213393556 of:0.08889054786004134 and:0.07051515823233466 in:0.05603148422141488 for:0.046072764844801724 a:0.04483643460052409 to:0.03885437420031465 In:0.025664793531625804 that:0.01990102802920305 or:0.018337298654688562 :0.017249895154702603 an:0.0171438693735549 by:0.015644729854467913 on:0.01407527286068408 which:0.013550303998261168 from:0.010861054941150732 be-:0.010785266985021453 this:0.010612811048240871 only:0.009961166867845194 :0.3499444226071868 +in:0.048515785429817986 ;:0.01290524869529205 up:0.011428054540364918 from:0.009857194249487205 them,:0.009551775055887987 thereof,:0.00914457015479063 In:0.008717076390408932 him,:0.008556698915169029 benefit,:0.008446942942294347 due:0.007445306556836395 it,:0.007295928249127812 out:0.00651226713017592 States,:0.0063995652962191086 him:0.006265273202773819 ,:0.006153711715668133 years,:0.005751400366265867 county,:0.005344006316058594 :0.005207190277284108 State,:0.005148579217171931 :0.8103534252989052 +the:0.18436580960778953 a:0.13435775454508567 and:0.05614834633175491 of:0.04902998897329546 to:0.033822197865460875 in:0.033270238622800506 The:0.028696320630902 an:0.02526992542035945 is:0.0165905788950312 or:0.01587236846338461 was:0.015585925096989462 Mr.:0.01517156419649094 that:0.013875999185006167 tho:0.013232686890251906 his:0.013103419073485167 be:0.011786674103053162 for:0.01068459570881288 A:0.010207627269502126 no:0.00997426949064466 :0.3079537096298993 +is:0.1516570473706435 and:0.12624097145586008 was:0.09482108169565368 be:0.08680916839450899 he:0.060674967840285185 I:0.04548337215222033 He:0.04171948210902997 so:0.040007318052337495 are:0.03226825778554133 have:0.029734893706387523 been:0.026834301001490618 not:0.02652013431183927 it:0.022550660123962174 also:0.02248063931011617 Is:0.021197623001705825 generally:0.02106685772772093 who:0.017463197268986496 We:0.016454410785410573 They:0.01640161062175777 :0.0986140052845421 +to:0.1998002596619762 for:0.12203723685257359 told:0.07140393463177268 asked:0.0645982832285325 advised:0.045606558826021354 from:0.04271636479861026 permit:0.03704696888965602 with:0.03581978621835638 allow:0.028454981523784447 enable:0.026029643740109153 upon:0.02229120542865156 of:0.021783298297177903 wanted:0.019578315243407647 led:0.01898232475762998 enabled:0.018725621306303578 send:0.018010215975825885 on:0.016951010673884766 sent:0.01676242448918718 directing:0.016147960032726286 :0.1562536054238126 +this:0.3751943398108372 the:0.35802625534013177 said:0.061923072282527386 a:0.02772892016139804 York:0.018349552838319516 tho:0.01771517843057127 that:0.017298706275219723 of:0.01523775536747789 our:0.012277932483152275 other:0.010403184864004036 his:0.010107650988470924 such:0.008538644067181396 any:0.00781018522301025 tbe:0.00642458432662054 own:0.005171939645882878 every:0.004615730792756418 their:0.004240201499927095 same:0.004169639152043986 The:0.004000025237829568 :0.029766501212637835 +the:0.19823193478539852 of:0.08698694377256569 to:0.06222583266450553 at:0.03656614154312146 and:0.034932742655731645 by:0.025583580339448714 :0.020808761724035504 in:0.01871157273731872 said:0.016892466510926525 The:0.0159320965527923 from:0.013869751762096224 for:0.013728928329788262 tho:0.011100443427945934 a:0.010461809855644105 with:0.00745633724906721 that:0.007260638514360891 Mr.:0.0063722690646472605 tbe:0.005925932573093535 this:0.005070686536238343 :0.40088112940127363 +the:0.6842938547052797 a:0.07401042686583054 this:0.038686832214544574 tho:0.038152313164811276 The:0.032235764217045326 tbe:0.016260880500338887 whole:0.012126280422493807 our:0.011192953930199803 his:0.008076173191113522 and:0.00649497766574079 its:0.006042451674115344 said:0.005743293931256655 their:0.005607977303766715 great:0.005083472169990872 no:0.004718385953807973 special:0.004573336554536682 your:0.004571091009746221 my:0.004509732359494486 that:0.0042776663772977706 :0.03234213578858906 +to:0.5110899342778971 and:0.06481667863295604 will:0.061832053774637144 not:0.05769890628345733 would:0.03374248829867649 I:0.02660366612256954 may:0.020602375494648294 can:0.01678207148976928 should:0.01473378531224885 we:0.013704552327509856 could:0.012807683681309625 you:0.011937543910741394 they:0.011753305773387438 must:0.010793509143152075 shall:0.009388695277477491 or:0.009285501419321078 1:0.008333408850488125 now:0.008066733070888166 who:0.0071130172727367465 :0.08791408958612791 +and:0.06954454630682382 the:0.04591889931765341 to:0.04441537768223494 will:0.0397394699508654 which:0.03902395676601593 said:0.03884001254090859 of:0.03833137054480887 that:0.030175267836648433 may:0.02893916347065599 for:0.027061765505786938 it:0.023382938579402008 there:0.022841550737806325 shall:0.022684019024387738 would:0.020975563107901354 a:0.019245805635819582 or:0.01860143985334092 should:0.018461796486249123 can:0.0182102597929919 as:0.01668322510220108 :0.41592357175749767 +;:0.048214511721861864 him,:0.03118801412938965 it,:0.02165525966009788 her,:0.01706009553170372 time,:0.01295691265020207 and:0.012355615309671412 them,:0.01219842894897496 man,:0.010295424491566119 me,:0.008149307292260412 there,:0.007356207913178857 up,:0.006516299982022191 nothing:0.006499279988362063 out,:0.006483638682151871 here,:0.006413446128854645 ,:0.0062344040882351785 him:0.0061262753563238 away,:0.00610969912411711 is:0.005904157614156472 way,:0.00585264359153454 :0.7614303777953352 +of:0.3084999244718759 that:0.10178820980623995 in:0.09450935201179717 to:0.08540958873209707 by:0.0726181380541398 and:0.05665125919744753 for:0.03584181205399861 with:0.028889097437062757 from:0.02126046103598227 In:0.01944715300657878 all:0.017352722136190275 on:0.01688786845440471 as:0.01634655785838449 upon:0.01151878770687539 which:0.010505456698463882 into:0.009020306848589994 but:0.007734547425260396 at:0.0075797034667384865 when:0.007294101507533199 :0.06984495209033927 +of:0.173929230524896 and:0.11667666310358503 in:0.08603970904036806 with:0.06996330511428155 to:0.06811637073339848 for:0.051552939463677554 that:0.04492467118135372 by:0.03711197654552394 at:0.034015021797196274 from:0.030644909325300094 In:0.02475651362512929 nearly:0.021576888354087147 on:0.01918022912803143 is:0.016661279886395947 was:0.016324660867573417 are:0.012805604008820587 upon:0.010397080151397385 or:0.010136273193602406 through:0.009477563840768241 :0.14470911011461343 +a:0.10902151043518066 the:0.10487501618303162 and:0.07271060146792789 north:0.03945299086623385 at:0.037597233945548425 of:0.032637998401102875 line:0.031140844345816425 west:0.029246260536702363 south:0.023909598621553244 east:0.02368118227487763 was:0.01954993189871652 as:0.018882724626764127 are:0.01493453074899756 for:0.014685334735948423 that:0.013123631001374281 were:0.011739386163028099 or:0.01108659012601384 southerly:0.011054362554202515 northerly:0.01033429166555639 :0.36933597940142326 +one:0.1028303141280697 part:0.05963429477052991 out:0.04766456937681193 some:0.031418679026461914 members:0.030764490253327767 side:0.029940657362655835 portion:0.022063658796890564 office:0.020457735219956013 member:0.019726706386316174 end:0.019666887540649894 tion:0.018667441728710307 parts:0.016814747270460957 people:0.014112771422418794 all:0.014072739582212475 any:0.013183573287639892 One:0.013083578354183906 that:0.013024335602903442 account:0.012482348155001894 many:0.012077825070275192 :0.48731264666452345 +the:0.13899908009935136 of:0.10492034982735808 to:0.09457701159098626 a:0.08360109885785202 at:0.06971556452620789 and:0.0358966605598658 in:0.02831760426126387 on:0.02066125913773663 for:0.014523386317956227 with:0.012850765196120661 by:0.012318564014505862 from:0.011753733500608533 :0.011005827083884265 The:0.009348450454704183 that:0.008627789149252043 be:0.008302382078734622 1:0.007862944830892563 tho:0.007829715610623117 his:0.007461890408138405 :0.31042592249395756 +was:0.09762063140116185 be:0.08738552885382458 been:0.08456040992095908 and:0.075274068004443 were:0.05809403828031102 are:0.0470730545951376 is:0.041742027373411664 have:0.03794547092152586 to:0.03215955020875046 more:0.023499754452461052 had:0.02262149563424475 of:0.019288441640413694 well:0.01807996415501758 much:0.01688931137660312 so:0.01635053202294183 a:0.016252907658785492 has:0.015417381277630362 it:0.014386107532948713 for:0.013472836112006064 :0.2608864885774222 +to:0.19841298080278655 has:0.15314136626211924 have:0.1283989953326821 had:0.11678661993807458 will:0.07949682349663567 would:0.04505678347883588 and:0.04379328549144917 may:0.030486778279671476 not:0.02244230613795684 I:0.021578170965226975 shall:0.019054648769827123 they:0.016778177955059405 should:0.016172128768057632 having:0.013001098857944884 be:0.012382204668132512 is:0.010985745359958773 was:0.010711764838378717 who:0.00994165343404201 soon:0.009322480613800239 :0.041055986549360275 +of:0.32821771624862844 is:0.06595386849471895 to:0.06119276601957803 for:0.05935045847556686 in:0.05356465057085678 and:0.05081295648865407 with:0.044671162181614925 that:0.03668025126974825 by:0.0314248115922167 be:0.02800593680344437 was:0.025495952122687043 as:0.01995041489122556 on:0.019174529765723 from:0.013663353469875288 but:0.01258929077644301 In:0.0115461201361564 upon:0.010596925720136386 at:0.010260320779282678 Is:0.009934584441691981 :0.10591392975175122 +of:0.2328094739833929 in:0.11457016905559068 to:0.09077498465691239 for:0.05876595640850227 and:0.049882662187545355 with:0.040913591164224244 by:0.03610339826319986 is:0.03149887533149985 at:0.030299410644484246 all:0.030148049949466703 from:0.03014542711377756 that:0.029140299275828518 In:0.025663218678143557 on:0.024504383568513328 was:0.023089378339697604 as:0.01916676343621956 be:0.018059817896843407 have:0.012145346981092025 upon:0.011990723179467418 :0.08932806988559851 +is:0.3024189214783593 was:0.14243408650971245 are:0.13750614850055703 Is:0.044984121406837344 were:0.03700178691881002 have:0.030973159122611643 had:0.02766989854419767 and:0.02720199090245375 has:0.024407763802115543 do:0.022473394955518314 am:0.020811187910732973 if:0.020701223508367173 could:0.01880917046147391 does:0.013326986635666692 did:0.0130962854649394 will:0.011629510781853184 or:0.011165107826753189 but:0.011116556318040191 it:0.009138328104920154 :0.07213437084608001 +to:0.2676210767290176 will:0.15795235678128478 shall:0.08949655522612501 may:0.07976810578210357 should:0.07197791838753663 would:0.05915722004413161 must:0.04832516533504266 can:0.04452881237597617 not:0.042361445375628214 could:0.023284167819638067 might:0.01738538327180967 cannot:0.015409655038694141 and:0.010014330261206949 that:0.004899052319112397 also:0.004898661913030517 it:0.004607930402097435 never:0.0037903671203624975 now:0.0036885118608991603 well:0.0035575469115914837 :0.04627573704471153 +about:0.17233403529044927 of:0.15347190482598538 at:0.1009383557475514 and:0.06624991878990638 containing:0.059388297375564975 to:0.04452972578560598 than:0.039310184874408 from:0.023962242988995453 the:0.022738745474137532 or:0.018736084164939208 was:0.016504261204650237 township:0.014841865855068522 lots:0.013796614079916027 for:0.011927435053958511 as:0.011638379874569465 until:0.011270576752256038 No.:0.010998462936775751 on:0.010710024742908438 nearly:0.010539920167037971 :0.18511296401531546 +the:0.08420913210031296 and:0.07107068750542198 of:0.06822389165938944 to:0.0599489087081745 a:0.05257718780079019 in:0.03141473158662753 at:0.021975814255332612 or:0.017694597911752274 that:0.013162839445448531 .:0.013061368692281139 was:0.012987245792900807 :0.012773694497432157 is:0.012394992910484803 two:0.011275167442196135 for:0.011036798656478955 one:0.010008200950919357 Mr.:0.008795227227627026 I:0.008735566598605277 In:0.008322108371681566 :0.4693318378861428 +of:0.10783683792027887 thousand:0.07331852506084231 hundred:0.06284741717972776 two:0.05562527180900846 few:0.055310399321879596 five:0.05527609075995239 ten:0.05088234217443705 many:0.04848315829555898 thirty:0.043789419915138995 fifty:0.04118779961976924 twenty:0.037279769710472026 three:0.03517945876203507 and:0.03020514699146035 four:0.027009193897289306 the:0.024298100061596665 sixty:0.022527199768220638 or:0.021808910157892245 live:0.01964453472803273 are:0.017836166471391135 :0.16865425739501616 +the:0.11919516938815296 of:0.07230453158552728 and:0.05781056740443249 a:0.043018564803886335 to:0.031305092790907506 in:0.020848713353460488 at:0.014270110001066288 .:0.012526810245749479 :0.012413283442322082 for:0.011719122709941797 by:0.010808400946589808 or:0.010404172990115616 The:0.01003576004804544 with:0.009811868184449042 tho:0.009295902015355835 was:0.008924239095331684 that:0.008672304223433876 is:0.0085591147338948 be:0.008335143826716943 :0.5187411282106204 +of:0.15292576386388518 the:0.12449416685601054 that:0.05702870357820753 and:0.0539627652434266 a:0.03988386770913423 The:0.03449735481562838 his:0.03356562982762536 all:0.027191990767288215 as:0.023439720227441705 other:0.016767920415196536 her:0.014106090614663743 this:0.012578561360495266 His:0.011522037791010908 their:0.01034419361735108 these:0.009568572249451408 tho:0.00944133259811741 in:0.009011024112215781 our:0.008307715486454459 American:0.008186177610037036 :0.3421764112563586 +to:0.5032868913560683 an:0.12412570203753354 will:0.06366548844360037 the:0.04420989590715491 and:0.02632507203383778 of:0.023429908830972488 would:0.023098340016413452 by:0.01904834005494836 not:0.01827843252463019 may:0.016265204276647564 in:0.016169684202182275 this:0.012431502858399519 a:0.012039821346705143 can:0.009160427398138783 must:0.00838395525836247 could:0.007259667575356043 To:0.006985307485327323 any:0.006751851033179017 shall:0.00674447869624133 :0.05134002866430114 +hundred:0.02334136986593815 up:0.005482494641173394 men:0.005366536521246011 Hundred:0.0047587970519216575 John:0.00441808156134956 William:0.004390720675819281 him:0.004016828614280843 ;:0.003997112205305733 due:0.003721199871732 in:0.0036582900032443304 time:0.003637206863828461 James:0.0035594902370151707 out:0.0034878448964120057 .:0.003467980723571515 1:0.0032804584819785204 day:0.0032444781513863933 ,:0.003058139385740603 :0.0030314555521939613 Robert:0.003005471634785646 :0.9060760430610768 +to:0.12022893700269083 and:0.09020394424291768 the:0.08587503820055309 of:0.06450042443224316 in:0.0310058468700829 a:0.017742048521183405 :0.015548046036689871 not:0.01491307651316237 that:0.014112408707955496 for:0.013734482372212283 I:0.013065769926808477 will:0.012848502316304782 at:0.012837991177321897 In:0.012628718855091186 by:0.012491091048660757 be:0.011425930130217754 is:0.0113962101007567 he:0.011342727513475473 or:0.01112522537451577 :0.4219735806571561 +law:0.029105215063173925 in:0.02505021620638219 action:0.021408354820858705 city:0.018246047685205647 more:0.015836583849687887 owner:0.013813980552019113 one:0.013000268389588489 person:0.012867064226071631 day:0.012097277940364385 town:0.01097682069424251 county:0.010556305491741651 piece:0.009876501730809178 State:0.009414544831716762 whether:0.009407193756622639 land:0.009197636093976329 state:0.00919075709049604 on:0.008811946706469861 vein:0.00804351386469736 lot:0.00795217789598784 :0.7441475931098879 +the:0.19238968682406798 a:0.08315662243908946 of:0.08131161873525547 and:0.07342881992723788 in:0.0374109545858913 to:0.032660440349417785 for:0.02310751712114652 The:0.022835191229753013 Mr.:0.01867840048701566 his:0.017969012170684927 their:0.016832581026511022 or:0.016130276635849265 be:0.015861405342382295 I:0.014089455543025249 is:0.013258734210975507 with:0.013178463754583777 have:0.012926204424698952 tho:0.012466587117260255 by:0.012433682124639458 :0.2888743459505142 +of:0.3917102185822202 by:0.08401640386582837 to:0.0734430360951176 in:0.07085401147625339 and:0.05140533132330186 that:0.04514805435263299 with:0.03995626790859511 from:0.03357699361080858 on:0.027594170986454638 for:0.02454963427523053 In:0.016021677747892683 at:0.015133922066954577 as:0.013078907081140824 upon:0.012515196377851727 when:0.010948057248954016 all:0.009410071068928775 which:0.008968337872907437 is:0.008015187622391472 under:0.007394723120637481 :0.0552597973158977 +the:0.2764296634308947 an:0.12346869068628728 to:0.09784935661598301 this:0.0693642140070853 his:0.05811114803424286 a:0.045506429052745295 and:0.04250215915192737 that:0.0393718591740284 in:0.024459739506504072 of:0.02442727739429396 their:0.023756288585441758 your:0.021241234545737602 tho:0.018397035669922745 each:0.017958785994607585 public:0.015394363949646366 its:0.013070674917057516 my:0.010800675971087826 our:0.010106177985992148 her:0.009960687010287033 :0.05682353831622714 +would:0.13516776815931453 to:0.10175318883572715 who:0.0734216616549984 they:0.06090829687960963 I:0.054414498797697934 which:0.046947310165833735 must:0.0405200574155989 might:0.036445589637541506 shall:0.03272411333844378 and:0.03228038765818951 should:0.03179090655993478 that:0.029508760759060126 not:0.02876680420731567 we:0.028503874055856488 may:0.028150033623979002 could:0.022163961267380006 will:0.019029697840863502 there:0.014322928357478427 They:0.011858887319353098 :0.17032127346582382 +and:0.20083106179333457 of:0.043866109691629344 is:0.039198164312172094 to:0.035892816906049806 or:0.035015863310680434 be:0.03317297414718224 are:0.030870963706423605 was:0.029269786767436135 the:0.027946141777684175 for:0.025349918759941425 by:0.024282253282464042 in:0.021661941994116533 but:0.021368260222988367 not:0.021253204292940357 that:0.018088898664680584 and,:0.01739094591290903 were:0.013912203359849863 per:0.01105853950196999 with:0.010410466383071285 :0.33815948521247613 +it:0.24821867953307553 It:0.12491417828142069 there:0.069306522105283 he:0.059799171357782996 that:0.05448913452171614 they:0.04308045581579138 which:0.03975166646880763 and:0.028391784481365753 I:0.017785057885554047 what:0.015014723986643873 who:0.014813518986538871 she:0.012277284734011025 There:0.012075841823057449 This:0.011660321731650861 as:0.011471599182449319 this:0.010417679117785841 work:0.008583289274340197 He:0.00780328791147001 we:0.007024892215396919 :0.20212091058585846 +of:0.11448423723320765 the:0.0729090718018104 a:0.05587478676034625 and:0.04222184802390273 to:0.0340336023958622 in:0.027697588898178183 by:0.026449446454296272 Mrs.:0.018186335209253692 that:0.016033559270342588 :0.014271763316387484 for:0.012333920096318876 with:0.011454415206086532 from:0.010664968674474334 The:0.010402235492202035 Mr.:0.010203373987848359 .:0.010196207547617995 his:0.009698055733604716 at:0.00839278742731255 said:0.008322754341685161 :0.485169042129262 +of:0.26399141317455554 the:0.23421430758505024 in:0.18197985034873024 and:0.0684342463728645 In:0.04335433177609806 from:0.023782859101390785 The:0.015301635389740985 to:0.013820108159687632 New:0.012388297388481365 tho:0.011647710357037133 on:0.011405684786108877 that:0.007465268405424538 or:0.00667120137175152 :0.006425360354279953 county,:0.006221483607136817 for:0.005912888846451849 South:0.005624756907232573 said:0.005055039597134784 by:0.00490212159972863 :0.07040143487111394 +of:0.13084814232797154 in:0.0740836656586379 as:0.0625527229231004 with:0.059577596335708534 to:0.058433603729754965 is:0.05551580107464621 and:0.04946529489577619 was:0.04264000753602388 for:0.04009673021586375 by:0.037684080471064085 be:0.023941707008899252 on:0.02316059851167503 at:0.022644769441950232 such:0.019950936521181326 that:0.017856095877642635 like:0.017386655618315594 In:0.016902219705578994 from:0.016046571451088905 not:0.01205910100844263 :0.21815369968667797 +and:0.1613656843679632 so:0.06143159277582443 fact:0.05542864469212405 say:0.03810956595768138 said:0.03695005864399478 know:0.03500407555496958 is:0.030652998352621724 believe:0.02924081023931829 but:0.027424871682609812 think:0.01982848839978699 see:0.018335375645301365 show:0.017895710586937962 reason:0.015565106315652852 me:0.015379369902964051 says:0.015311104696524582 stated:0.014885665083219665 found:0.014490062855651449 all:0.013719839727914292 of:0.013171337682339824 :0.36480963683659967 +it:0.1315259359985462 they:0.09356153440770391 which:0.08836360559453693 that:0.054286988521862145 It:0.053833154795865736 who:0.04868871367283371 as:0.044816215379838466 we:0.04445700318625868 you:0.03780208161666811 he:0.036600052623341366 and:0.03491862424626638 I:0.016982182512213544 there:0.016754834654197307 one:0.012845988779015494 what:0.011032870276980042 They:0.01039455356430512 There:0.009850365962168754 or:0.009460028476504068 men:0.00903905107164862 :0.23378621465924543 +the:0.5633320567045393 tho:0.02829769167317341 The:0.023400784807508963 a:0.02186114144051885 an:0.02078756937437031 tbe:0.017112337716191476 of:0.014108944082365016 and:0.013482470691589093 on:0.013045552069159146 north:0.012589411386578646 south:0.012530496733580032 said:0.012425860183789137 No.:0.010141234020776836 .:0.009675475812426225 east:0.008539168325578156 &:0.007504162498793591 west:0.007497992887840969 :0.007107825080264892 S.:0.005383714373122206 :0.19017611013783373 +the:0.14012035802890488 of:0.13270717642065522 in:0.09998795384788187 this:0.07891571171559246 to:0.07374930662424752 a:0.034687264632836216 said:0.028934770392655997 and:0.028881370465621115 his:0.02802956083278845 good:0.02442240240451695 for:0.022266936889386347 such:0.017703436841275056 or:0.016308710956700133 their:0.015160255660810178 In:0.012802034642476147 with:0.011705082947449829 by:0.011343002831187382 her:0.008489808239917922 my:0.008137191216088854 :0.2046476644090075 +and:0.13096673260053437 to:0.08404310952525203 be:0.08214159797736025 was:0.05807735063092983 been:0.04342994100537179 not:0.0368669664115097 then:0.036432184775801256 had:0.03351422705882569 is:0.032478684994691163 have:0.02903713327731294 he:0.02622447504424081 has:0.023955534732056704 I:0.021337616346383308 they:0.020539399760675724 fully:0.01899281506943691 are:0.018464459461686334 now:0.017675296166914222 thus:0.0163129570759855 were:0.015590571345508647 :0.2529189467395228 +far:0.08860225070372596 well:0.07388176925029957 such:0.051964994416833235 described:0.04957628873507652 and:0.04567952877738223 so:0.034228515380259804 much:0.028743921790398533 regarded:0.02266479892120867 known:0.020799878164800115 it:0.016376034646824054 just:0.015744151861763245 same:0.015309498092714011 long:0.015241196840569923 but:0.014407214944188604 reputation:0.013949749942242531 is:0.013228824596883449 soon:0.012959606408336731 large:0.01151035929392722 him:0.011471948900550782 :0.4426594683320148 +them.:0.053186199659485935 it.:0.02946853919077467 :0.025367728716000577 him.:0.01468133656568877 me.:0.01215446823690839 themselves.:0.009783126598798535 time.:0.009425508408832165 us.:0.009241747355887267 men.:0.008585436611389862 people.:0.008170199864669478 life.:0.007751832293593724 day.:0.007569311972810348 her.:0.007485051370257043 country.:0.006987563223464706 home.:0.006961041332780005 all.:0.006013942673050929 out.:0.005828135848676759 there.:0.005667223074391372 work.:0.005628101613908104 :0.7590435053886314 +the:0.2596925711689366 The:0.10057365355244649 most:0.09998584218927675 and:0.08312751854676263 of:0.06084617452552106 as:0.04810923581340742 that:0.04332235724383607 a:0.04164916458248156 more:0.03627238709421726 very:0.031747516726770945 this:0.023060191310431227 This:0.016582827802568315 his:0.015035695517267026 tho:0.0145158142561373 so:0.014012784087529925 other:0.013422385569761098 are:0.012633266523571418 is:0.012538202042799571 no:0.009358031026792947 :0.06251438041948436 +the:0.11919516938815296 of:0.07230453158552728 and:0.05781056740443249 a:0.043018564803886335 to:0.031305092790907506 in:0.020848713353460488 at:0.014270110001066288 .:0.012526810245749479 :0.012413283442322082 for:0.011719122709941797 by:0.010808400946589808 or:0.010404172990115616 The:0.01003576004804544 with:0.009811868184449042 tho:0.009295902015355835 was:0.008924239095331684 that:0.008672304223433876 is:0.0085591147338948 be:0.008335143826716943 :0.5187411282106204 +and:0.07359963406644195 be:0.052667135004264946 to:0.04483536256874564 of:0.043448293679263235 the:0.03579172892628988 in:0.028005289969665195 was:0.026700397492138477 is:0.024892551934152005 re-:0.024162182625676702 he:0.024086629517294657 are:0.02098604388819216 from:0.020307931541148256 a:0.018606881911690538 or:0.018077853608073062 for:0.017195224169077532 been:0.01615904189338184 I:0.015254891559368164 :0.015184018660626356 which:0.015016145996292442 :0.464022760988217 +as:0.06345821111221826 and:0.0497025220576989 up:0.04943929748593646 according:0.03353596826352663 regard:0.029451977060172423 came:0.0282149584321223 come:0.026133607678649237 addition:0.02605466589208104 referred:0.024422339318225014 it:0.021927082789299255 them:0.021508742287353645 due:0.021312509701147137 go:0.020222836079155468 attention:0.020208301384908096 reference:0.020176527300585254 went:0.019938696817431035 attached:0.019499539092039764 back:0.019222346350156107 is:0.019124207720976193 :0.4654456631763178 +the:0.6819561743505054 The:0.05304568677755618 a:0.030157616724285744 very:0.02840365084775025 tho:0.02396006247645382 and:0.021637717640925862 is:0.02069560556660981 are:0.01950271066848224 was:0.014472629389925471 this:0.013168203194602688 more:0.010469128224653934 their:0.008258948037314418 tbe:0.008002294220080801 its:0.007556150354861297 of:0.006972575915794407 been:0.006786550347179137 no:0.006504215328180003 be:0.006384744896635095 his:0.005696278085008047 :0.025369056953195388 +of:0.23214586020710345 to:0.13574646931418982 in:0.08873251928908295 that:0.0559245485126286 and:0.04925947215694361 by:0.04905792221956258 with:0.04671747842733721 is:0.039158228017718705 on:0.03398939516916259 from:0.03074584106802555 for:0.029305069149154407 In:0.021707884091988906 was:0.01637485981644653 as:0.015247753205411904 at:0.014198437368165137 upon:0.01204546339552343 under:0.011573892071866704 but:0.009463557611468568 if:0.008027648382098998 :0.09957770052612035 +to:0.49956327976553555 I:0.05456786332678553 not:0.049136443585734595 you:0.0407686155499633 will:0.03971329619406726 and:0.03433124460899092 we:0.029803071653352237 would:0.02613390609971002 they:0.01962887777005759 may:0.01753244982555849 must:0.017315094527770403 We:0.015989652790262616 should:0.015985958734785668 They:0.013732366648205478 To:0.011094104219394807 can:0.010051606174879733 cannot:0.008965674767781361 shall:0.007406253862823188 1:0.00673758890043762 :0.08054265099390366 +to:0.32619728106811363 and:0.11151568555032652 the:0.10681570934005954 of:0.08059518153079892 not:0.05816278674057445 will:0.0351661999961466 would:0.023287035524702352 shall:0.02267759555833441 I:0.01997736518881895 that:0.018386485732460864 a:0.016149591435634825 The:0.015020436455630247 also:0.013213295512068284 can:0.012726076063600492 which:0.012649483424019723 we:0.012444063713749306 should:0.012064310951818043 in:0.011172884857702884 must:0.009845524080841779 :0.08093300727459818 +the:0.31611350844160474 a:0.12101224090030899 his:0.0909766642180961 The:0.04554499233394615 their:0.0434759713249938 our:0.03433410645438504 her:0.030391642145603116 and:0.030333233457221748 to:0.02698244153797135 tho:0.025356058483160856 of:0.02249260660675381 its:0.021041610040083782 my:0.01882435965426479 your:0.0144207851984298 or:0.013572699461660195 an:0.0107201946150415 these:0.00963721723264649 whose:0.009323168612481968 for:0.00845412486224286 :0.1059923744191029 +that:0.14694482026684774 in:0.1264074994627031 of:0.09841770357514529 have:0.07573894062286078 had:0.0711530598431164 and:0.05468541436037239 for:0.04730766897510926 has:0.04537177265166392 In:0.03399815591223371 was:0.03204515454261002 is:0.031555082104457656 by:0.029738347766381994 which:0.02772766860615397 with:0.026514561167468944 to:0.019014209574408306 be:0.0148620616967241 but:0.013754101628235482 are:0.01317461784708137 if:0.01240876149892988 :0.07818039789749572 +linear:0.16052645503555446 of:0.036000110915675274 few:0.020456451143000876 two:0.018342729946913345 and:0.01677207424010727 100:0.016262881835339877 five:0.015501236512936124 ten:0.01401053757454731 fifty:0.013009269955555397 300:0.011733044929080044 hundred:0.011108591263353639 eight:0.011067937744449596 six:0.010631473880289052 50:0.010244748000525928 or:0.010149501191812899 three:0.010063061752493767 twenty:0.009267543345575958 200:0.009060902373955194 for:0.007689173344597127 :0.5871022750142368 +:0.05250473553762359 and:0.030582732789461362 was:0.015364588210116934 recorded:0.014804701631109713 made:0.014738231285124304 is:0.012410298880789556 found:0.010653116822091725 place:0.010361814478955633 be:0.010071880543052955 out:0.009740458537585423 that:0.00953238705260904 up:0.009276448201471913 him:0.008247465396385423 placed:0.008124859221504178 it.:0.008058126373407292 o'clock:0.007796815780948513 it:0.0076738395559209 them:0.007532195963758258 part:0.007315181718170132 :0.7442101220199131 +for:0.1294610296752932 of:0.12288975732651625 with:0.09191896582618093 to:0.07862889362119965 do:0.06444922942922139 in:0.05919219339554635 upon:0.05617705457586407 on:0.035343762242494685 about:0.034984771425776884 by:0.02643550419069875 at:0.024163906661823248 from:0.023544646193755212 against:0.020560925398479868 know:0.015892800139999257 get:0.012474867165092484 over:0.011756509346288515 doing:0.011669625364135933 and:0.01092964255998064 see:0.009521860028580771 :0.15900405543307192 +the:0.5271894643182029 a:0.10479456150948406 his:0.04463893263922683 our:0.035142285569198184 tho:0.031105348756159654 their:0.024336087944408457 my:0.01625330189168338 of:0.015359341242927468 its:0.01500591426026504 no:0.013470107197894992 her:0.012736911194532402 any:0.011547071619691528 new:0.011454591972098258 every:0.010795853142079748 The:0.010544676214768614 this:0.010446134335682722 your:0.009851167926417702 tbe:0.009076251634789308 other:0.008023598577254517 :0.07722839805323425 +is:0.10284397836440196 was:0.08831242020362495 and:0.08077431907746264 a:0.06479478123731611 of:0.051441995271974336 the:0.049992759827778024 has:0.04895450738512318 had:0.045364348639357885 have:0.04415679656718013 are:0.04260627822265393 were:0.022389668919176025 been:0.02001285731862817 that:0.01726813313074287 be:0.01720897467929233 Is:0.01504767916126567 in:0.012170282922426447 but:0.011684023611914987 with:0.009666828764443233 for:0.008660879132441396 :0.24564848756279573 +one:0.1028303141280697 part:0.05963429477052991 out:0.04766456937681193 some:0.031418679026461914 members:0.030764490253327767 side:0.029940657362655835 portion:0.022063658796890564 office:0.020457735219956013 member:0.019726706386316174 end:0.019666887540649894 tion:0.018667441728710307 parts:0.016814747270460957 people:0.014112771422418794 all:0.014072739582212475 any:0.013183573287639892 One:0.013083578354183906 that:0.013024335602903442 account:0.012482348155001894 many:0.012077825070275192 :0.48731264666452345 +and:0.046263325011294675 go:0.0319935292963566 going:0.031910965911027114 work:0.02604689320789818 carried:0.024076888006873028 them:0.023001374547601445 put:0.019660257136060243 that:0.019618335546837305 interest:0.01865757687033611 was:0.016755330650445103 it:0.01671291659181218 place:0.016705992743759245 out:0.016510580672760025 now:0.016356298684946886 or:0.015706923920375013 went:0.015641105540567694 came:0.015514834710914938 placed:0.015150412575437882 him:0.013821527264267311 :0.598894931110429 +and:0.05411221174029869 made:0.04513887744392544 that:0.02589461737837909 it:0.025638056889860757 only:0.021253659053572363 or:0.019718861048575193 done:0.019300954951170596 them:0.019249729661897926 him:0.018940976019991198 ed:0.018076380677218125 out:0.016144344298579652 but:0.01611679675721025 followed:0.01448038798703276 secured:0.014239907014210218 accompanied:0.014139373870931945 up:0.011793106617733811 provided:0.011778378286907481 surrounded:0.010987394664324327 paid:0.010811043004152414 :0.6111849426340278 +from:0.1440794973424935 the:0.13015299724318258 in:0.08093927620826695 that:0.05911886084826407 some:0.05459647470635132 any:0.052685990973944656 this:0.04810117293168824 a:0.0441243728905235 same:0.04044130064189971 of:0.03968791274235325 no:0.03436796329741843 first:0.032123377850348196 long:0.02579241270661878 short:0.024241348867565723 In:0.02238569563719236 to:0.02046471011699861 and:0.01895358686248183 one:0.018062045621468775 which:0.01640347495111581 :0.09227752755982371 +of:0.26214247596415363 and:0.13395006268500362 to:0.083862340222257 that:0.055807111380073514 with:0.0553834490326354 by:0.04300227908407041 for:0.03210670783359293 in:0.031844250777253454 are:0.02191732460262072 at:0.018657212692458146 from:0.01696271007785565 but:0.014130970513201547 nearly:0.011741668146486962 were:0.011721450281870861 we:0.011448432835950312 was:0.01118846353594457 it:0.010601345619968392 is:0.010503048323054954 or:0.010217582200511813 :0.15181111419103613 +was:0.15393948463644233 be:0.13056921157285145 been:0.0952462004045469 he:0.07067970750229256 had:0.04396620566874354 is:0.04122219074552336 were:0.0356770164215843 and:0.03233264612916895 have:0.030668463602223438 has:0.02819836792935308 above:0.02326068861656461 who:0.022498114020096844 being:0.022334244028312758 are:0.020486594234823734 as:0.018541002498052413 herein:0.01389034772861429 He:0.013700576455566816 it:0.01340553733089264 bo:0.011163624819981706 :0.17721977565436425 +:0.023130609250479668 them.:0.02106757798145288 it.:0.016170937159041866 him.:0.008930409155955239 and:0.005055743785647727 men.:0.004823101539664587 people.:0.004783806821773605 country.:0.004537760661088961 us.:0.004531204791510396 me.:0.00445000096317173 time.:0.004352641418284187 day.:0.003818540183929781 all.:0.003529003621144554 out.:0.0032993286926331017 way.:0.0032078177210805676 you.:0.003105730211783772 work.:0.0030929699511280414 her.:0.002996380440673347 world.:0.00296648054062686 :0.8711499551089291 +it:0.19081260047348533 It:0.11434762019232496 which:0.08445354828732143 that:0.054667974067336 and:0.04797480170927166 he:0.04362820069955318 there:0.039071712059276786 who:0.03305940847663193 as:0.02152515656051934 what:0.019061185972489052 This:0.016674899735934536 There:0.015370563145761424 He:0.014374608594371731 this:0.013675934458910386 man:0.008887456786954706 she:0.008516263082722136 country:0.007151313207256729 work:0.006986768925800481 land:0.00685940973547451 :0.2519005738286037 +it:0.30140310211619153 It:0.15891568253397256 he:0.062156045475608476 which:0.05105115122834038 and:0.04454304351035217 that:0.041337396495094894 who:0.02755962560238432 He:0.02116928813969242 there:0.014526571666916501 she:0.014278572440745464 as:0.01222075639428607 what:0.008101753615452295 This:0.006654229323651243 be:0.0063843395211972765 work:0.006145746686764752 man:0.005724670467373214 lie:0.0053784049444259045 life:0.00524673434225117 country:0.005169641099508599 :0.2010332443957908 +the:0.22052173904674707 of:0.11538277631709545 and:0.07600893695483417 a:0.07004925231740321 in:0.02032394001329095 to:0.017760541526728617 or:0.016321320631386877 The:0.016047378210588287 tho:0.014162478919836598 his:0.011851559038502319 their:0.010247726296522618 an:0.009976024422455008 all:0.009838815678283644 that:0.007981786074193685 other:0.007735324991191378 :0.007694646861427443 at:0.007393351766959102 by:0.007172496730326369 .:0.006850640354361914 :0.3456792638478653 +of:0.19949705993274766 the:0.17956966781122474 to:0.06447133172102162 a:0.034844836378449345 and:0.02707116890772776 in:0.026116822466386753 at:0.02431902421206316 by:0.022139049403549167 on:0.01610453238186706 from:0.014553183884751407 with:0.01330473858355868 for:0.012279653675690979 :0.011429322448875883 tho:0.009846495240857955 as:0.009218268244464539 that:0.009038012972942204 The:0.007711500468711831 said:0.006970265086775037 upon:0.006891592566972913 :0.3036234736113613 +the:0.1748019281196568 of:0.1476574567424072 in:0.08525625390753847 to:0.07957292197189948 and:0.06610631586833061 his:0.03779489455450632 In:0.03053706045103365 a:0.030514250750876507 their:0.030075398947037653 by:0.024392347002673526 that:0.020565138595897006 for:0.020298738404377865 other:0.015415494001958067 all:0.014235454473284623 doing:0.014233546313569104 its:0.014035358516945646 or:0.013222453711908728 with:0.012507259149671237 these:0.012045814351250973 :0.15573191416517648 +State:0.04175121822483225 city:0.04003148251540993 day:0.03711440954609185 out:0.03095956488230099 side:0.026566532866410066 County:0.025268345744328388 state:0.024775803145564594 City:0.02439331993820649 line:0.019475478867905665 people:0.01851937015964115 county:0.01786246844567012 part:0.014618106632776838 Secretary:0.014062741463861661 tion:0.013761010124876972 that:0.013755892682327114 matter:0.012585886079698386 favor:0.011761621331265851 name:0.011300390283044724 office:0.011286044637575298 :0.5891503124282117 +No.:0.13366821807981755 9,:0.07106180248914544 June:0.053492984120662126 April:0.05290436373373925 March:0.051527326238470166 May:0.04524935480774936 and:0.04062297961172764 to:0.03878557383776327 July:0.03734895847534579 lot:0.03259160784673181 January:0.03199848485764662 of:0.022526992111828688 October:0.01979381848874159 section:0.018774989317032344 block:0.017762374383317202 the:0.01646976141383031 1,:0.015851932931953125 September:0.014832153831766785 Section:0.014386438861545529 :0.2693498845611854 +in:0.295602967595986 In:0.1450909815486484 of:0.08774083079162127 the:0.08607969949375535 and:0.08552099259421278 all:0.05339838109390182 from:0.036545613706563236 to:0.027955397425772507 or:0.02237407103825738 some:0.02202500297978652 any:0.021157949516658458 for:0.019467108635938448 with:0.019360804170483543 by:0.013703740492097166 at:0.011015796161917602 many:0.009488323249002258 among:0.007107724054091066 The:0.006883440477288086 that:0.006205722642424078 :0.02227545233159402 +the:0.507082615627446 a:0.10292122460009526 and:0.06433945253490202 circulating:0.04845136807184709 or:0.038330745181271955 tho:0.020613551440553365 The:0.017054723072799843 of:0.013109024876389729 in:0.012343778562378305 other:0.009117708289881378 tbe:0.007687170092518806 any:0.006836103226460195 that:0.006694805510654795 some:0.006594208487364118 com-:0.006450179910842291 at:0.006007967502724712 this:0.005096943648178721 to:0.004803077255563845 every:0.004674830741407717 :0.11079052136671981 +sum:0.015264990909639524 out:0.010469624548822214 amount:0.010268768642269844 number:0.010252144109883224 Board:0.009915489778488978 day:0.00934391924304638 line:0.009159513299813713 county:0.009058268073362647 purpose:0.007929238102727576 and:0.00784672009005394 city:0.007535183166758685 part:0.007294147380644756 case:0.006189609631311928 time:0.006139795834628276 that:0.006097569449880835 tion:0.005913104914262385 town:0.005848644229223571 use:0.0056842696333859015 state:0.0055904354376684826 :0.8431985635241271 +etc.:0.027648807885657534 and:0.023300436737699166 1:0.02217350133293462 that:0.02119164878716511 :0.01725917004022128 .:0.014936064321867504 -:0.013138017589620353 the:0.012042874273537752 A:0.012007546144309792 I:0.011632360049134613 Co.:0.009600061987166198 but:0.008744390382503452 one:0.00793750669358923 :0.007115134597192111 etc:0.007072926251141104 time:0.006968223349415753 of:0.006649050862037906 The:0.006371816556693689 as:0.006268915744597518 :0.7569415464135153 +a:0.22990420786201576 any:0.17776943593508077 the:0.16815223555179123 no:0.058509364785468594 one:0.03979578565074954 other:0.03577753971556517 of:0.027650113069855438 No:0.025397812244866796 every:0.023459837205586163 some:0.02058405387949723 his:0.017632055710320838 each:0.016127751368754707 in:0.014990385640060187 The:0.014450883165148797 and:0.01295370519404167 such:0.011851700264943135 this:0.011201686608073403 little:0.010290957030728059 Any:0.010194792572784373 :0.07230569654466812 +and:0.26957923831534597 that:0.057084739244568986 but:0.036258307377146436 days:0.033545209953922094 and,:0.03309328697915601 soon:0.030859941727718904 until:0.022812590680399324 shortly:0.020917594530473576 time:0.020149941198346375 day:0.01825207886953759 it:0.01679651558922823 hour:0.01616848716669882 Shortly:0.01598231570852236 even:0.015725523763968147 minutes:0.01431794503372505 months:0.01354106810708607 year:0.012678861572106615 alas!:0.011475121701749597 look:0.011338256134032772 :0.3284229763462671 +one:0.1028303141280697 part:0.05963429477052991 out:0.04766456937681193 some:0.031418679026461914 members:0.030764490253327767 side:0.029940657362655835 portion:0.022063658796890564 office:0.020457735219956013 member:0.019726706386316174 end:0.019666887540649894 tion:0.018667441728710307 parts:0.016814747270460957 people:0.014112771422418794 all:0.014072739582212475 any:0.013183573287639892 One:0.013083578354183906 that:0.013024335602903442 account:0.012482348155001894 many:0.012077825070275192 :0.48731264666452345 +of:0.2715258598510416 in:0.12261916263446747 to:0.09368083679772836 for:0.06588481665153166 and:0.05415941749734502 that:0.049773696776251763 by:0.03938147579466563 with:0.03393828060901826 from:0.030938152391223002 In:0.027551422901054196 all:0.025034544791336308 on:0.02210672753715393 over:0.01300654693499035 upon:0.012351600536435388 into:0.012200196676890483 as:0.01186641887473794 at:0.010958901457500642 through:0.0107746715631414 under:0.00645255795525402 :0.08479471176823256 +the:0.23483400964249876 and:0.10754273159584954 of:0.07111517994545083 most:0.0511319650714564 be:0.0468016769575367 or:0.04269316058008667 in:0.033640186270044475 was:0.032612439763842656 an:0.03154647700628846 been:0.0297254739274545 all:0.029663684064534228 were:0.02840210316847647 are:0.028229597813781628 not:0.027648062389096884 to:0.021381165088842774 a:0.020282861633865685 no:0.01991071563357223 is:0.01795872388682594 more:0.013556880093547276 :0.11032290546694791 +the:0.14829225561499298 three:0.06055403077463834 of:0.04684743041151766 two:0.04173397801884511 four:0.03646994079887979 five:0.03272603691264061 and:0.027233507878343628 The:0.02650594375903964 ten:0.024590322100741076 a:0.019469640729614428 several:0.018221899453545222 few:0.014384852590865223 many:0.013960593393101786 hundred:0.01067497561955247 tho:0.010393694780788155 six:0.010253598023617666 thousand:0.00977173368423199 these:0.008617571467013663 their:0.007482875430681691 :0.4308151185573489 +of:0.09129790931378902 the:0.07369883040827747 and:0.047842263382354346 in:0.04189055351593407 to:0.04045875475680249 a:0.03542341257202578 be:0.02020462051672066 for:0.01979292654746225 was:0.01760256398103379 at:0.017380150555488715 is:0.014984483003968216 with:0.014047653760730413 by:0.01374644383819499 :0.012670486581795598 In:0.01200961464556976 or:0.011563835749786333 from:0.011391516893522809 are:0.011273104484969465 that:0.010755276030689069 :0.4809655994608848 +the:0.12405432526578788 and:0.09781813222308079 of:0.05987991466027044 to:0.05406555751018881 was:0.0414584413388914 a:0.03306630322354003 be:0.032393115968392644 is:0.02584358949865983 are:0.025526811205906125 in:0.021016310657308326 were:0.020840937689253276 been:0.018653423980544332 his:0.01848310000101765 their:0.01755812887749827 for:0.013860651117019555 or:0.012524517578875198 he:0.012408544352161576 it:0.011433576466144834 from:0.011152096932840175 :0.34696252145261886 +out:0.06305659862595538 amount:0.04598348721743966 kind:0.04337033294298789 sort:0.037939440653604745 number:0.037190320020955334 right:0.035834710454738815 matter:0.03267769962819447 one:0.030843733364974153 state:0.024929336167599934 means:0.024673510034388824 purpose:0.023199836351544188 place:0.022382789013127756 form:0.02187111163348121 lack:0.02150874835360864 source:0.021320819246899447 system:0.02076458415823347 piece:0.020762015760290815 question:0.01993966496550034 that:0.019642493332963418 :0.4311087680735115 +of:0.15236998618007339 in:0.10765056780884849 at:0.0896748969662039 to:0.0821216010515669 and:0.053808777687788384 on:0.05034421238453861 In:0.04202796672168298 At:0.041109756172953066 with:0.03255577833881847 that:0.030978745824774206 from:0.029723249719107024 for:0.028153165170669948 is:0.026775143461566498 by:0.025508289202178052 but:0.025383343113485748 all:0.018735391855464436 upon:0.018302142055323406 do:0.018026637518533537 about:0.017432179135168396 :0.10831816963125455 +of:0.28571508084274183 in:0.09668204067210986 to:0.07874298396781138 and:0.07234703289229406 that:0.052575431781950926 with:0.04605064583598294 for:0.04589227695351991 by:0.039032478590087974 from:0.029520424708088227 is:0.02575291204529591 on:0.022845459154702957 In:0.022203170895305383 all:0.021718924061764327 was:0.014491053033084692 at:0.011537989298047186 upon:0.011127902091260477 as:0.010143577541686419 but:0.009984944120043462 into:0.009293333603003986 :0.0933423379112181 +of:0.2414992617818343 to:0.09040309371216336 and:0.07932279313489052 all:0.06744959139329781 that:0.060406793514365405 with:0.05758165598133521 in:0.03961166558617648 for:0.034849067265471406 by:0.02898411961147983 on:0.026113710941422185 as:0.02367768141643457 from:0.023228606747377405 is:0.021140353420734018 upon:0.019802602475506696 be:0.01738331422702172 have:0.01402777514830562 which:0.012756524994168832 under:0.011609954204139674 at:0.011492117648741989 :0.11765931679513296 +of:0.22262615730955237 and:0.059334321870984044 to:0.04178195836271495 about:0.0373646027486482 in:0.02784974238435761 at:0.024804475655844833 than:0.023855521339224174 by:0.0221885007114552 from:0.021175998109682705 .:0.020455985921866596 as:0.01978237977236699 thence:0.01855162696276148 the:0.017784389917778382 containing:0.01606573075340351 for:0.015029851157104998 2:0.014612727248024543 was:0.013669775081592008 point:0.013008048424052636 only:0.012582254112132688 :0.35647595215645206 +lots:0.24286532753294124 No.:0.10343636340518526 at:0.029038206401844607 of:0.02739640575190686 and:0.026756453585062477 to:0.02247614438000574 Lots:0.020709009876561307 the:0.01862558785716714 .:0.017058602160372267 Nos.:0.015829266510262383 for:0.013567113529637312 boy.:0.013178110252780333 as:0.013078053365771966 an:0.012810836427391926 by:0.012368797432075715 girl.:0.011808377638958204 sections:0.009629602324468805 :0.00948310415117578 that:0.009362609410556602 :0.369522028005874 +the:0.39749834532651884 a:0.07520030034269234 and:0.05540858759821703 The:0.03273515726769502 tho:0.030061875542463562 of:0.020144331424922633 tbe:0.014929647509541684 in:0.014268129706664795 or:0.013333166761078447 .:0.013287381914101323 an:0.009000188755386574 to:0.00880680429595084 :0.007943763822197133 Mr.:0.00773879605474787 by:0.007328417831573476 as:0.005922572098978465 for:0.0047526933692942485 that:0.004736121968310169 on:0.004594595720579333 :0.2713091226890862 +the:0.16233647603580859 of:0.08792788849553808 and:0.07826264319227039 to:0.06076431105541385 a:0.049588395829285356 be:0.043273384937436904 is:0.03285031729771106 in:0.029485852690644417 was:0.024484148799343155 or:0.021386606339049992 been:0.020374830700887792 are:0.018061293472081585 as:0.01691073810022897 not:0.015087375836475259 their:0.012777731754798929 for:0.012539333378550278 Mr.:0.012289918445317877 an:0.01194739526715623 were:0.011728891735114393 :0.2769224666368869 +one:0.1028303141280697 part:0.05963429477052991 out:0.04766456937681193 some:0.031418679026461914 members:0.030764490253327767 side:0.029940657362655835 portion:0.022063658796890564 office:0.020457735219956013 member:0.019726706386316174 end:0.019666887540649894 tion:0.018667441728710307 parts:0.016814747270460957 people:0.014112771422418794 all:0.014072739582212475 any:0.013183573287639892 One:0.013083578354183906 that:0.013024335602903442 account:0.012482348155001894 many:0.012077825070275192 :0.48731264666452345 +of:0.12481486260112419 in:0.11861260365474448 to:0.0683177044377168 and:0.06576558010228967 with:0.06306601772907076 for:0.05700650348729665 as:0.05102852155400488 that:0.036478836485435415 is:0.0364096500166965 by:0.03601076263387916 In:0.034678529766458514 such:0.03252981005133624 on:0.027241679189401083 at:0.026707058390502213 made:0.025106991621745338 was:0.024497315773541136 make:0.023682831057370003 from:0.021769878599673623 be:0.018159700485565096 :0.10711516236214826 +the:0.14097905379068107 of:0.07331087503882922 and:0.07181330996280533 a:0.05976433406615042 to:0.054517608548006975 be:0.027144583808848956 was:0.021670096559335054 or:0.017850176640821478 is:0.015691986615405103 in:0.01537689140487654 are:0.013527554375639277 :0.013345386361944066 at:0.012159230680710242 been:0.012083769908731407 for:0.012017580091645849 his:0.01156881653886233 were:0.010304989923631205 their:0.009881712923853423 tho:0.009488640365474152 :0.3965034023937479 +is:0.13625300153047898 be:0.0707783898909964 was:0.06965126121800358 in:0.0694622913010214 are:0.046246273367054884 and:0.045660106574179966 of:0.03958454539079528 amount:0.03795439183754873 that:0.03200736774998913 after:0.03023373773451376 by:0.02964817311623985 now:0.026055557628881836 Is:0.024322051677967402 been:0.0241645683836128 not:0.024116856500902225 In:0.020276205713561424 become:0.02016109836586948 interest:0.018266803432946937 taxes:0.016996447112925014 :0.21716087147251095 +the:0.2585188066945362 a:0.09905780603495702 his:0.07769909621467566 and:0.036257635616090404 such:0.03459345592468332 of:0.026013731967880677 as:0.025013571743702435 this:0.024379980544519734 her:0.021973800672721075 my:0.021544886635787647 to:0.018546427474367536 same:0.017695522154151898 The:0.016559273667640668 that:0.01629287169172251 one:0.014918604519263122 their:0.01452039700149112 tho:0.014482006728640301 at:0.0101593907386841 other:0.008016779207198906 :0.24275595476728568 +the:0.2948527419469999 a:0.08534223877770471 their:0.054913849543589625 his:0.04979523884183544 and:0.04554020178898836 of:0.03499456449112386 this:0.03438057107968952 each:0.03436320668238958 every:0.033248705709891455 any:0.028347329351389082 same:0.01981329434705086 to:0.01854804458976974 one:0.018000290533075024 in:0.01675263379084236 its:0.013740227406956402 all:0.013575034376961444 other:0.013465548457891122 tho:0.013049579343738784 her:0.012427990547259023 :0.16384870839285373 +and:0.06815801648599708 committee:0.03063006843675802 that:0.030358497621895176 Committee:0.027659815171520136 was:0.021268690953689048 feet:0.019833714868158114 out:0.01884108834025759 made:0.0176465052021588 up:0.014230985754973922 go:0.013769728160547045 is:0.01330710844869527 went:0.013171279946023288 work:0.012216218615851003 or:0.012031266156285823 it:0.011412322307085615 interest:0.011011354954204635 put:0.010550491373405753 plat:0.009231734686533336 land:0.008762526789780683 :0.6349085857261797 +to:0.12022893700269083 and:0.09020394424291768 the:0.08587503820055309 of:0.06450042443224316 in:0.0310058468700829 a:0.017742048521183405 :0.015548046036689871 not:0.01491307651316237 that:0.014112408707955496 for:0.013734482372212283 I:0.013065769926808477 will:0.012848502316304782 at:0.012837991177321897 In:0.012628718855091186 by:0.012491091048660757 be:0.011425930130217754 is:0.0113962101007567 he:0.011342727513475473 or:0.01112522537451577 :0.4219735806571561 +he:0.14623315485466418 it:0.124243613107223 they:0.08316779573580405 I:0.06418239672131623 It:0.05711441871963656 who:0.05051867599425431 that:0.05040871422428236 which:0.04740574811796719 and:0.03817761839239435 she:0.03329356142982239 we:0.028006019886132258 He:0.022411151114436787 you:0.017932081390841407 as:0.012087189476245834 1:0.010818168504483274 ho:0.009821389976486912 one:0.009688687073556222 there:0.009008897408243786 man:0.008980086448238875 :0.17550063142397002 +as:0.17716880800319534 of:0.061072808092038196 and:0.052551893554939534 was:0.049757161547393035 is:0.033835540898962874 be:0.031425043284623325 for:0.023339716395372682 by:0.021536639461437898 in:0.02039952871768291 As:0.01761775555714496 with:0.015129853932243023 looked:0.014917668581177563 are:0.01444660783932125 were:0.013752820478663488 to:0.012308117270448917 that:0.010439396751784086 about:0.010253111813968966 from:0.010179309115203594 so:0.010049079528670459 :0.3988191391757279 +him:0.02346330166566789 ;:0.013993117901978207 man:0.012063973158208985 him,:0.009909121800163739 up:0.009718454247617242 and:0.009483607636828621 himself:0.008708172500287844 in:0.008383704791678692 man,:0.0074619430074121034 it:0.006727629907354967 he:0.006463016531639386 .:0.00621915130927209 time:0.0060721975060543465 one:0.005851681181497556 to:0.00584951612224459 out:0.0057405518294329876 it,:0.0055790022104404615 on:0.005073440824683246 hundred:0.004882599142558921 :0.8373558167249782 +and:0.448160761623486 was:0.056311278358755 Since:0.0411148081234129 is:0.03136346896918949 And:0.02543173040626202 He:0.0194278668279774 ;:0.011798714609144554 are:0.01169148689908339 were:0.011637792989414895 I:0.010890500640790328 but:0.009633597320822935 he:0.009096180424351705 it:0.00875773132494814 aud:0.008240772180525349 that:0.007879948231165446 since:0.007714131480997537 It:0.006320215069583143 have:0.006176928643905201 which:0.00595483727534662 :0.2613972486008379 +the:0.11919516938815296 of:0.07230453158552728 and:0.05781056740443249 a:0.043018564803886335 to:0.031305092790907506 in:0.020848713353460488 at:0.014270110001066288 .:0.012526810245749479 :0.012413283442322082 for:0.011719122709941797 by:0.010808400946589808 or:0.010404172990115616 The:0.01003576004804544 with:0.009811868184449042 tho:0.009295902015355835 was:0.008924239095331684 that:0.008672304223433876 is:0.0085591147338948 be:0.008335143826716943 :0.5187411282106204 +is:0.08508752639674384 and:0.05274530223357191 for:0.05168743425687011 from:0.05145262498315429 are:0.04580489388398141 be:0.04173686840103826 to:0.03558417525088038 of:0.031442733789746366 was:0.03138160586146541 contestant:0.02818212790626846 or:0.027116679738778487 on:0.027113313325105252 not:0.02609028196989802 therein,:0.02284517438936897 by:0.02279608874999971 it:0.01939176772279951 in:0.018648535264040728 have:0.018458554332402462 them:0.015138633008005298 :0.3462956785358811 +Mr.:0.04426874923382236 ;:0.017018170426876335 .:0.01095783896839468 Mr:0.0104855261037771 city:0.010139530513684476 wife:0.008228530878711452 1:0.007903458014056031 home:0.007711978622206641 men:0.007444737842829438 Dr.:0.007029062751441201 John:0.006986501510874733 up:0.0068380472604321636 Smith:0.006649479544201095 James:0.006384994256061867 ,:0.005473873731790515 in:0.005387213665279128 him:0.0053153565549528305 Joseph:0.005247549272378242 William:0.005111402018799922 :0.8144179988294298 +he:0.09563413210500044 and:0.08945384064992448 it:0.06555969642182036 that:0.058923346925755626 who:0.03270771629939062 It:0.03187173780892242 which:0.026263617683585698 there:0.024974407876427684 He:0.0245759564589758 the:0.022852465663178362 more:0.02213148876163137 as:0.02026520981552193 so:0.019023447040578585 to:0.015839086730624344 she:0.015345398046037826 they:0.01492311431623197 be:0.0116957221235629 most:0.011565360482730281 this:0.010964814102811632 :0.3844294406872876 +to:0.14401522014784593 I:0.08717805441967116 would:0.08361228383208522 they:0.07250612364846672 we:0.06597598184142542 who:0.05136360986841521 will:0.048581532657812176 you:0.036303803346831635 and:0.03262750567837507 must:0.02681132061405771 We:0.026497479392441514 shall:0.02444461513167911 not:0.023426718145168758 should:0.022766551002372307 may:0.021516097053646 might:0.01661740567775864 They:0.016135791002525445 which:0.015447058681747887 could:0.01476846332748608 :0.16840438453018802 +the:0.2931256905611458 a:0.139733551126569 his:0.06127017226399119 this:0.05027869701013511 in:0.035143573439240676 one:0.03048527892072158 our:0.028783131620812006 her:0.02815123107078031 every:0.02758259254131384 and:0.026179381272988946 of:0.0261435189847634 their:0.023597765287254747 to:0.023546881013244658 tho:0.020644252404356914 that:0.018281923408999506 own:0.018126578480737565 public:0.017762634108297582 my:0.016061851843246138 other:0.013875193095670596 :0.10022610154573043 +of:0.2593475750115313 in:0.10189115234603544 to:0.0857325967909447 for:0.07415423918062646 and:0.06580863504068821 that:0.05928773769070986 on:0.03800331615579776 by:0.030438300905725503 from:0.027901184037220663 with:0.026003762045451642 In:0.02437472277127916 all:0.01772260691394783 as:0.01764625586341226 at:0.01574519270475678 is:0.014462748554719702 over:0.014144706631674995 upon:0.012619715385367259 under:0.011575146328032547 through:0.011508939667714992 :0.09063146597436302 +the:0.6136599618540325 The:0.09326863866768141 a:0.06405743847162651 tho:0.026924474203738988 his:0.026814564046649374 and:0.019900659761512132 of:0.015031160135178134 our:0.012993695794754411 tbe:0.012392513196040645 young:0.009761302551680633 National:0.009140210522019146 this:0.006550304993152506 my:0.005511334975188872 her:0.005340019812253093 old:0.005200976627103301 their:0.004735188324116068 every:0.004727801180152802 that:0.004550781730108537 Tho:0.004502357566002145 :0.05393661558700876 +of:0.09129790931378902 the:0.07369883040827747 and:0.047842263382354346 in:0.04189055351593407 to:0.04045875475680249 a:0.03542341257202578 be:0.02020462051672066 for:0.01979292654746225 was:0.01760256398103379 at:0.017380150555488715 is:0.014984483003968216 with:0.014047653760730413 by:0.01374644383819499 :0.012670486581795598 In:0.01200961464556976 or:0.011563835749786333 from:0.011391516893522809 are:0.011273104484969465 that:0.010755276030689069 :0.4809655994608848 +and:0.07359963406644195 be:0.052667135004264946 to:0.04483536256874564 of:0.043448293679263235 the:0.03579172892628988 in:0.028005289969665195 was:0.026700397492138477 is:0.024892551934152005 re-:0.024162182625676702 he:0.024086629517294657 are:0.02098604388819216 from:0.020307931541148256 a:0.018606881911690538 or:0.018077853608073062 for:0.017195224169077532 been:0.01615904189338184 I:0.015254891559368164 :0.015184018660626356 which:0.015016145996292442 :0.464022760988217 +and:0.09005343616954511 that:0.029236466303695505 was:0.01989414796548935 them:0.018659825481080347 made:0.018073869153086237 as:0.017786521868843334 it:0.017065749074932548 up:0.016732809747416595 or:0.01615275932496896 is:0.015427826660817094 but:0.01499462823666581 him:0.014915022147236303 out:0.01422180407812097 be:0.012634183629104298 than:0.012055438527848366 not:0.011898248251144541 time:0.011506314629588925 men:0.011151670131973577 found:0.010500560446095198 :0.6260387181723469 +up:0.05887864797631035 as:0.04187789652174236 went:0.041088947626156495 feet:0.03677172385250596 back:0.036524171619115815 and:0.035099728012122605 sent:0.03142024745485991 down:0.02704462849948832 go:0.026752724819394946 regard:0.026227788406997066 came:0.02445490189690935 prior:0.02259770430097833 chains:0.018139389980171904 made:0.017496108721140075 due:0.0162646973825002 according:0.01588653087655601 given:0.015846428350577094 them:0.014259290020431747 come:0.012876490076036416 :0.479491953606005 +and:0.03868242960999506 as:0.031124813427855922 went:0.02352509775927722 him:0.02196555539050794 them:0.018760608639018784 up:0.017985449426794205 is:0.017894175620344187 go:0.017174904667157563 able:0.016756848979943888 going:0.014481672239490295 it:0.014128375989346808 was:0.013277058274565138 time:0.013249953793837373 not:0.012469887553778763 began:0.012465717758716884 way:0.012105610030480113 back:0.012090864562211581 right:0.011941707822828511 amounted:0.011564315359310868 :0.667354953094539 +the:0.31160985093364935 this:0.11908942668120251 a:0.08169425209233916 The:0.06138672941269635 his:0.04099826236202084 This:0.03456418822502732 that:0.02453923635875736 present:0.023227195760406678 one:0.021443221491344974 tho:0.02042261623718014 whole:0.0188228858395845 our:0.016735653882132138 school:0.01440020760663327 new:0.012924383030460774 their:0.010597333864044184 and:0.009441947230156043 nervous:0.009428381901355233 county:0.009424242000949663 her:0.008967386186960942 :0.14928259890309858 +time:0.021801751947273778 up:0.018069488897857845 him:0.017840350156709366 out:0.015609872562661263 it:0.014452371924964217 in:0.011936792666166868 them:0.01126360933831987 work:0.011200725080010096 men:0.007979439040558242 man:0.007730233004414603 good:0.007659352562735133 life:0.007431367233482779 all:0.007096143519521415 right:0.006993700513837125 be:0.006844006902029424 you:0.006799452050880302 home:0.0067589609046676035 made:0.0066589153726626105 hard:0.006044698501340497 :0.798828767819907 +the:0.32877947343350566 of:0.17062753157453622 a:0.1106171126072034 and:0.058716787531538465 in:0.045845171800294855 very:0.02368687143754243 for:0.023459906344414236 tho:0.022515134470099944 as:0.0177561722424351 with:0.017484682830779554 The:0.016885750148382544 his:0.016788152049942516 feet:0.015992170512286092 by:0.015676504757285065 on:0.012676946311022265 to:0.01234445533704975 or:0.011254888651387176 In:0.010746966608404284 that:0.010550962366388464 :0.05659435898550201 +.:0.0409850216835478 and:0.027316044728173686 Mr.:0.023538927287807727 of:0.01709347649372921 I:0.016937880097566384 :0.013996806260719473 John:0.012064734054526474 at:0.01061821712605012 to:0.010555372654629377 W.:0.00931324926451632 Mrs.:0.008344466960286 was:0.007752427378828722 A.:0.007736255966717819 by:0.007647519199526117 the:0.007602354055958036 1:0.007396835760770969 Dr.:0.007039418987867317 ,:0.006666001553481686 -:0.006632403048361383 :0.7497625874369355 +the:0.2705315688256731 an:0.12857168405542022 of:0.08233048873524135 primary:0.04400401827230349 on:0.029332814770592915 general:0.025656042567840594 said:0.02531505792372324 for:0.023587476195467357 and:0.018622544661350177 his:0.01819958988993662 public:0.015590049753958862 tho:0.015109465865392501 The:0.014716894574754598 next:0.014377288037974422 in:0.013859625490019584 such:0.012930381342192095 to:0.012521445405526094 this:0.012405272471405483 that:0.011132253390703764 :0.21020603777052357 +the:0.4814505011314341 a:0.19183720822052044 The:0.05162535930072766 of:0.031945813249931336 and:0.02206723270076907 tho:0.01999140681511524 no:0.019502316599180544 his:0.019325383349220022 little:0.013398775077051003 was:0.011742109005333868 is:0.011317675014509768 as:0.008051643849631036 had:0.00790424394746993 tbe:0.0072688677774095396 have:0.007247230374165953 that:0.00708935744537513 A:0.006796549980203924 with:0.006478133200799851 has:0.006454548782365442 :0.06750564417878616 +to:0.061606902722576934 of:0.052889815073623045 :0.04436807253169995 that:0.022797262472987533 for:0.020576140846217124 and:0.017801571166314957 it.:0.01357046162732119 him.:0.013334317130193394 in:0.012244347029409363 at:0.010018837985232495 time.:0.009752143740705937 years.:0.009575461756043908 them.:0.008263180964938348 by:0.00814029518288895 with:0.008040640618185966 country.:0.00784990931973517 but:0.0065274071848280615 day.:0.0065077225811306 man.:0.006275059392505545 :0.6588604506734616 +the:0.1972922914779867 of:0.10707931134205359 and:0.07751345641690036 to:0.05965814400216777 a:0.03916990992603793 his:0.03332219732032006 their:0.03331774153636291 be:0.032850203570027194 in:0.031999481129964404 for:0.024419230255829164 was:0.015886632700938704 or:0.015687069681538747 with:0.014077907000147974 is:0.013616501400885488 tho:0.01238352879917961 at:0.012265965151178969 her:0.012068523214408489 by:0.011646939161358685 not:0.011571641806894432 :0.24317332410581885 +and:0.08995317707915026 to:0.06844710404109794 of:0.04605142056172993 the:0.04074574508561307 which:0.02479116931334353 that:0.023764822140213245 re-:0.020841117231308055 in:0.020803825395358622 for:0.020278423301550053 :0.018417753428486977 not:0.016860793136637672 con-:0.016444405871234195 is:0.014386481772210856 or:0.014080680914153714 be-:0.01352268143271276 I:0.01317002660943805 was:0.011429878269381662 dis-:0.011196807025842847 he:0.01113106290024311 :0.5026826244902934 +the:0.08441605691096911 and:0.07467667650526073 of:0.06107996234250084 to:0.056709999147334725 a:0.04715668084472512 was:0.0297904909673738 in:0.029692146476017495 be:0.024586011067688224 is:0.021584801717111 with:0.01893974042914785 are:0.018157621577913178 which:0.01786870687082797 for:0.01770519966054501 said:0.016762300534289665 or:0.016448569713241053 on:0.01594179680923944 :0.01567094034607194 his:0.014785296829559164 by:0.014683021711074924 :0.4023439795391087 +to:0.45653262171109665 the:0.11418926042113257 an:0.11062902434600656 will:0.046052049042944306 this:0.04576585706665587 and:0.030168594276957023 that:0.01727676608575166 would:0.015315262427913269 a:0.013279343951584442 should:0.010960980629070449 can:0.00869137464625692 said:0.00843889551221005 one:0.008345681069436617 of:0.00784283860039639 I:0.007407719027296889 or:0.007352027197848141 An:0.006964677369426331 any:0.0065483074411046265 "An:0.006443994882602965 :0.07079472429430825 +be:0.1393013409312777 was:0.11397768110682692 is:0.08706854077564632 he:0.07347679354540752 have:0.0701205547718348 been:0.06494201690140979 had:0.040766865710954926 has:0.03869111164210004 He:0.03860109365506142 I:0.031898005091723275 and:0.03143817604045197 it:0.023186979341121603 so:0.021827728472827164 were:0.020297181339857542 bo:0.018724045545182793 who:0.018570908567798885 are:0.018344860794183796 they:0.015432533650927421 Is:0.013761866472595632 :0.11857171564281048 +day:0.8218002732065272 dav:0.013326521109133448 Monday:0.007042676747860314 month:0.006297890865809789 middle:0.006004826783507671 State:0.005298942619500281 1st:0.005293624285088877 city:0.004723961509488332 part:0.004415840473519421 place:0.0043558618303318405 line:0.004288027834031535 4th:0.003901682437083318 date:0.0037813896724214788 side:0.003542425621483421 time:0.003243875752360136 mound:0.002889112625400283 act:0.002865016969142875 10th:0.002785356933136727 state:0.002551581326299077 :0.09059111139787403 +:0.08731773163555225 it.:0.01953014148619666 them.:0.015410544424448041 .:0.009856668727352753 country.:0.008473309167163249 time.:0.00831522054230509 year.:0.007963191992433508 day.:0.006891686373888978 him.:0.006378903754678889 work.:0.005874458943892105 years.:0.005805039479001077 of:0.005593560806804721 people.:0.0047826832887325555 world.:0.004584355741974002 all.:0.0045096482639048014 way.:0.004260682376279435 men.:0.00411155019613531 out.:0.004020914875283783 again.:0.003974706266305656 :0.7813450016576672 +and:0.16567388661201102 is:0.04613719537869687 not:0.04518955113880739 or:0.0398096264831931 are:0.03638660423914612 do:0.03604536695622682 was:0.035023668091256094 And:0.03080418198043152 be:0.019055199296638823 but:0.015759434662811333 that:0.015564197909866979 were:0.014294243221477569 been:0.013977339360220761 to:0.013248998240768617 in:0.013079165645543754 have:0.012977173627201093 for:0.01270089349194696 made:0.011749980357859926 of:0.011514684219799412 :0.4100086090860958 +the:0.28458266072007826 of:0.14806054776552785 and:0.08594929558753243 or:0.06357827941423287 The:0.032459127520572964 these:0.02984769515942682 for:0.028821210327070676 by:0.026338134049073477 about:0.024831505235595495 than:0.022083357510057373 in:0.019252269209001197 with:0.01833054900630716 that:0.015451600418445512 to:0.015164928245045691 tho:0.014962010094560184 from:0.01193730948123173 only:0.010603031683580661 between:0.009093308072508724 are:0.009018572962726047 :0.1286346075374249 +and:0.14005563238574212 of:0.11221093312629105 that:0.06684282720956836 to:0.06319367301624827 if:0.05986455967549725 for:0.044408356756605635 but:0.0371388960009273 when:0.03638062506809981 was:0.035340186466843226 is:0.032569348753488 in:0.027536150162238662 by:0.025402543885750355 with:0.021923618097594973 had:0.021127561106731876 have:0.020041477317209705 while:0.019351184304704054 If:0.019175664322262333 be:0.01881773428279945 as:0.016150231685382162 :0.1814687963760154 +up:0.019142520834963518 time:0.016496372633197 in:0.016238665305299882 down:0.010173427133850341 life:0.009847816593229908 land:0.008863800328139774 him:0.008419144044204898 out:0.008288154854077882 power:0.008137424963289133 ;:0.00802526801409874 principal:0.007627851635869543 work:0.00758403890524058 water:0.007500429856985338 due:0.007488712141194509 :0.007412114901244105 made:0.0073542650224455814 costs:0.007248041047194527 hundred:0.007030165095965209 right:0.006938038545832303 :0.8191837481436772 +the:0.28725586196136405 of:0.15207423838426928 in:0.041234841324894446 such:0.038571902526278484 to:0.03549457574121897 a:0.03193235476844333 all:0.029504368387706915 any:0.027160718081032913 on:0.02289835178059593 this:0.022673148855628534 tho:0.02038684959563346 for:0.020160048069601526 and:0.01892998992532545 by:0.017350099647471463 The:0.017019070812217537 from:0.016636198456328806 other:0.016318041073319096 some:0.01459471705504214 at:0.013552099819537549 :0.1552525237340901 +the:0.2552500723985015 any:0.16976481679848943 an:0.09199412516752843 either:0.03437269695837518 to:0.03294817696962829 presiding:0.03230563818780521 of:0.031228085522795702 such:0.030677594467866817 this:0.028657798183013915 commanding:0.025274283997837894 or:0.02370464862440827 general:0.023606726139921822 other:0.02252774001318414 one:0.019832993750564604 by:0.016151357797966125 each:0.01605864900862448 that:0.01548339420648629 tho:0.014804102092222682 in:0.01390351149530209 :0.10045358821947713 +the:0.22565967705697781 and:0.10446696703100707 of:0.09811164565093904 to:0.07769036395883451 their:0.04418434514725437 his:0.0349559505654597 in:0.024363343022661247 a:0.022487747009716206 that:0.022231808573585005 not:0.021460033844858614 for:0.019808116292984342 tho:0.01711810538452433 our:0.015872023987878982 or:0.01559733588063049 The:0.015035866604367653 her:0.013475660122449981 my:0.013442953937547795 its:0.013333514053729735 only:0.010526113418613455 :0.18917842845597968 +the:0.12285296094004503 of:0.09817851333752219 and:0.06592713213355123 to:0.04951419258787356 was:0.04418146059484458 a:0.038107061866298836 be:0.03381349245443766 in:0.03359448275853669 is:0.028478288952295754 at:0.023474326416834054 for:0.016699924134405294 his:0.014326395251805632 or:0.014153776705098658 been:0.014056104888894281 not:0.013109242053401433 their:0.012637453412934655 In:0.0119303395497276 are:0.010136045963321282 were:0.009961306282732157 :0.34386749971543945 +the:0.11991988767526711 of:0.0714654469688879 and:0.0711342930563939 to:0.052613787496908745 a:0.032479862175645705 be:0.02869842849715107 in:0.026629965681857475 for:0.019812965984958488 or:0.01913887337956174 :0.01773924614159882 by:0.016273597366108578 said:0.015364386231172481 was:0.014887897726728596 that:0.012976322588880214 been:0.012708301942539697 is:0.011293960638477247 from:0.010557172252974666 -:0.010231309906918914 at:0.009900761855036954 :0.4251735324329317 +an:0.23368728109534978 most:0.13396713529468338 the:0.12393908826054707 and:0.06089408111756492 of:0.0526158673718155 a:0.02864752297117895 other:0.02424010760704274 to:0.02359954352513956 this:0.019761001500837948 every:0.01746228529313645 in:0.01567629018304297 any:0.015393086898916825 such:0.015106623401034839 by:0.013189116022509054 some:0.012528176376462767 one:0.010823649562381766 his:0.010750922251403594 An:0.010584128820330828 more:0.009953822371196385 :0.16618027007542466 +one:0.0793092951769567 part:0.03499872460097183 out:0.024431206666010955 portion:0.021371839380432446 side:0.017793495858940543 some:0.014581375577805327 that:0.014192984529866021 tion:0.013643782945564628 member:0.012600961637713619 members:0.012024818404567643 office:0.011724478994255697 any:0.010701426521782015 all:0.010650397320457663 and:0.00980224438363923 payment:0.009516112361615207 account:0.009473436319125074 virtue:0.009275065279112517 parts:0.009221863249830355 end:0.009168467686442978 :0.6645180231049095 +and:0.10227285162684101 called:0.054845741003349394 due:0.025542442396411097 conferred:0.025056553278636377 made:0.024347228015060278 based:0.021263212737048825 call:0.019736850002332842 that:0.01940909752845717 depend:0.01898026395783348 imposed:0.018620022381169846 levied:0.01793618450538746 is:0.015136341512899217 enter:0.014675080871946624 effect:0.01448748676287412 delinquent:0.013595873551338842 be:0.013555239109503727 down:0.012985118660494762 dependent:0.012639754535262006 looked:0.01205396373274932 :0.5418606938304036 +Mr.:0.1379620393318463 Mrs.:0.126120662932447 U.:0.11059430588865109 and:0.04261361568661937 .:0.03560289957338553 Dr.:0.029758908129776548 John:0.027132260589182246 of:0.025980512811660042 W.:0.021483150311846857 Miss:0.02140794852991689 S.:0.01966490877597838 C.:0.018403939645613654 J.:0.01676290260651577 the:0.01663738247181894 A.:0.014481658579472976 H.:0.014204761705341684 D.:0.011935132999672417 George:0.011327820533981098 Charles:0.011188866843162497 :0.28573632205311067 +of:0.2409579689288252 in:0.170634821207267 to:0.0953493576468683 on:0.08397207571085334 from:0.0494822144529991 for:0.042246145125301275 In:0.03714790816667942 and:0.028461493764871424 with:0.02811777554221451 at:0.02325081410078637 into:0.020316323058893023 that:0.018689073457984286 over:0.018547174679112932 by:0.017952031764659485 through:0.016171977547016905 all:0.015781655618307022 upon:0.01455012648416158 about:0.008948619926072533 as:0.008578786875890608 :0.059843655941235675 +manner:0.10014154852873941 and:0.04758153569965947 that:0.027548634697924172 way:0.017860480013091023 time:0.013660246230114154 it:0.01211986153900764 all:0.010836767636137537 one:0.010756664322780446 part:0.010728763786470055 district:0.010609221477965584 land:0.010415108137366232 place:0.010399655452080119 esteem:0.009337949673530233 work:0.008993990842538664 now:0.008593781479256013 them:0.008489846330526286 day:0.008448021271808803 money:0.008371952622637733 interest:0.008221632363195723 :0.6558843378951706 +a:0.3167777869217986 the:0.2147416134313629 is:0.11113560090146377 was:0.05983589375153746 are:0.04383614737621827 be:0.03212148978459089 The:0.027597425915387514 not:0.023797585174415353 A:0.021188858707119007 and:0.01748558959985644 were:0.016791434738873432 Is:0.01499603375185763 been:0.012864691432754328 very:0.008124760760857896 this:0.007540308276711207 tho:0.007255750472479102 of:0.006935594888209519 his:0.005614294747022471 some:0.005490862308768711 :0.044868277058715524 +the:0.39023627804497696 and:0.12398007746878885 of:0.048444258954937425 or:0.03479426714126324 The:0.03394373397268986 with:0.024092074808227035 tho:0.019488721550504087 a:0.018386565862262467 for:0.016533315313650706 to:0.014190035566156431 by:0.01272532388975192 tbe:0.008635144425416153 great:0.00808974316037473 as:0.007925922663042071 that:0.007869449642077158 other:0.007784988176083687 be:0.007748104436969639 all:0.00714456337901774 this:0.007006536429552613 :0.1999808951142572 +it:0.20193921478579388 It:0.1638720282549578 which:0.06995140491770922 there:0.05880500658827758 he:0.04564771544156709 that:0.043766113078068054 There:0.03854308863449681 who:0.023166360397656745 He:0.02299605212899956 and:0.022453219856418356 This:0.021722739579842307 what:0.013704538031898637 this:0.013069382169898006 she:0.012871828664346571 as:0.007816035662985802 She:0.005944489169188435 man:0.005934070863224058 but:0.005664652825382912 work:0.0048760969388638555 :0.21625596201042432 +the:0.5240678838554108 a:0.07463226173581926 of:0.048563355748791816 this:0.0338171556083832 on:0.03185711543824098 tho:0.03140443363877365 and:0.022047401906231837 said:0.018415987173604646 his:0.018214989813472138 that:0.018042172089435 as:0.017758473192221666 their:0.016114985023087662 The:0.014302659864756052 other:0.013590537567859074 our:0.013514985770541638 tbe:0.01024726074761236 in:0.00836059572031037 its:0.007786750835401596 or:0.007418097956838804 :0.0688428963132075 +and:0.061237866649559235 that:0.044157273909165524 I:0.03845471828469593 which:0.02042010741800038 :0.018639589447122133 it:0.01861676223693295 1:0.01751183236233973 as:0.017500608983996715 he:0.016021053328128212 the:0.015425358992879343 to:0.015302074362345985 of:0.01385830787904153 It:0.013600500493371992 be:0.01050036996173857 :0.00913423221396313 who:0.00809231458217313 .:0.006377387237626259 but:0.006310293230107035 part:0.00619131450743882 :0.6416480339193734 +the:0.2412133270956124 .:0.041104145879004725 and:0.030943427732542574 Mr.:0.023450698508969935 of:0.019367414302419807 The:0.01607297962080308 in:0.015922943243690906 a:0.013677855196131072 :0.013604156727675728 tho:0.011930618391291016 W.:0.011866837770993 of-:0.011363986113598889 said:0.010110434736094102 tbe:0.0094131342105071 Mrs.:0.00781250761705214 :0.006904183528198057 or:0.006799308866576875 by:0.006622970244446012 E.:0.006511041383664817 :0.4943080288307278 +hundred:0.02334136986593815 up:0.005482494641173394 men:0.005366536521246011 Hundred:0.0047587970519216575 John:0.00441808156134956 William:0.004390720675819281 him:0.004016828614280843 ;:0.003997112205305733 due:0.003721199871732 in:0.0036582900032443304 time:0.003637206863828461 James:0.0035594902370151707 out:0.0034878448964120057 .:0.003467980723571515 1:0.0032804584819785204 day:0.0032444781513863933 ,:0.003058139385740603 :0.0030314555521939613 Robert:0.003005471634785646 :0.9060760430610768 +and:0.07558940021936399 recorded:0.030196237618668006 was:0.028917161578042846 made:0.027969746247669736 that:0.027730098932509103 o'clock:0.025060522019555328 up:0.023026552239529506 is:0.020398277211376416 found:0.02003101797656537 placed:0.017482208134164214 out:0.016937164562539058 place:0.016819459500107596 interest:0.016629321966808677 him:0.016002796715253755 situated:0.01573420479581609 it:0.015128305982428461 them:0.014715943643665314 part:0.014646613000297721 interested:0.014450471929902294 :0.5615344957257364 +one:0.1028303141280697 part:0.05963429477052991 out:0.04766456937681193 some:0.031418679026461914 members:0.030764490253327767 side:0.029940657362655835 portion:0.022063658796890564 office:0.020457735219956013 member:0.019726706386316174 end:0.019666887540649894 tion:0.018667441728710307 parts:0.016814747270460957 people:0.014112771422418794 all:0.014072739582212475 any:0.013183573287639892 One:0.013083578354183906 that:0.013024335602903442 account:0.012482348155001894 many:0.012077825070275192 :0.48731264666452345 +you:0.08428607940181054 it:0.08222971526115143 and:0.07225977022202744 they:0.06858649952311582 which:0.054232745957936514 he:0.05276711510273414 I:0.05180236591709538 that:0.04836749042925124 It:0.03337714498678705 we:0.030382443230202952 who:0.028886612377852266 They:0.014404333368323549 she:0.011358173631063725 this:0.011173270263415677 He:0.01101068298922596 This:0.009579299267379724 men:0.009568924060865942 You:0.009528496562904871 but:0.00916242185832111 :0.30603641558853467 +of:0.2936108481577397 in:0.09848746053093915 to:0.08357880578568423 for:0.0575183661548745 and:0.0535275198375106 with:0.04636481620681103 on:0.04154528160988572 by:0.03645366177042068 that:0.03157664554234693 from:0.03126174468157477 In:0.02984892067472682 at:0.024644525336527473 is:0.01835325991359311 all:0.013143787878615152 was:0.011730027074837026 upon:0.011140079922081969 but:0.010381014504614627 as:0.00950116154698502 into:0.00932029476345484 :0.08701177810677668 +and:0.1062364164078435 that:0.03560389535712349 it:0.03469720476733478 found:0.021099538256719994 made:0.020732308673072363 is:0.02060941982721668 him:0.020131156267548543 was:0.019550490217291615 but:0.019154666031600827 them:0.019094889919982958 or:0.01806205586180641 time:0.014407195782092782 interest:0.014345276930085568 out:0.013691345753768862 as:0.01342962685451398 place:0.013274005330756173 man:0.012667739634043563 be:0.012456485931675986 work:0.012081963221172408 :0.5576743189743495 +the:0.6131254544883442 a:0.07069791915848869 tho:0.03924043650695812 and:0.029897345548811707 The:0.027491271737489702 this:0.01764720744776209 of:0.01681758226849456 his:0.015722400039752893 our:0.014607155263704931 an:0.013117508192062224 tbe:0.012634285297210888 that:0.008474681004204513 their:0.008377594072708229 its:0.004836675946977351 A:0.003910587049775004 other:0.0038203698447921482 great:0.003771157686150139 American:0.0036648628036247497 same:0.0034863939810640472 :0.0876591116616238 +the:0.2092676397076197 a:0.15856762453887308 of:0.08803792512009732 his:0.04894544127858129 their:0.03680392042796608 and:0.032917741779585695 with:0.030581873429496087 all:0.026229699976001036 in:0.02280657468994922 for:0.022703480388566948 to:0.022260141229444617 its:0.013862885851725713 our:0.013699009903438895 this:0.011697200393496735 tho:0.011096735080214198 her:0.011073477255518166 other:0.011046586748981327 great:0.010623367875583212 my:0.010176818458486853 :0.2066018558663738 +the:0.11919516938815296 of:0.07230453158552728 and:0.05781056740443249 a:0.043018564803886335 to:0.031305092790907506 in:0.020848713353460488 at:0.014270110001066288 .:0.012526810245749479 :0.012413283442322082 for:0.011719122709941797 by:0.010808400946589808 or:0.010404172990115616 The:0.01003576004804544 with:0.009811868184449042 tho:0.009295902015355835 was:0.008924239095331684 that:0.008672304223433876 is:0.0085591147338948 be:0.008335143826716943 :0.5187411282106204 +the:0.15118102063654548 a:0.09102343561327943 and:0.058524286130504234 of:0.05731177060151001 in:0.028355634858352578 to:0.023642097824517545 :0.018873578769095883 The:0.017207374901310902 was:0.015684174236033712 by:0.013993823715049385 at:0.013455094205252621 for:0.012536690186415332 have:0.01147816606409386 an:0.011463225013756255 be:0.011376223260867353 Mr.:0.010876929029247426 had:0.010047175180290885 is:0.009999153038021432 has:0.009815598218412989 :0.42215454851744266 +the:0.44600556009424314 a:0.32412981073648867 The:0.03535038055138592 to:0.017372807667969666 tho:0.017006026355702697 no:0.016810200337689738 any:0.01421799854120242 and:0.0118367173780318 most:0.01175844405759132 of:0.009288822852458741 every:0.008761068373160739 an:0.007709850129460072 his:0.00617648869560968 not:0.0058483646758714525 that:0.0055508350186192395 tbe:0.005455698659206377 some:0.005361502620091125 this:0.005285308477885201 their:0.005268268769187382 :0.0398058460081446 +the:0.20265674840638057 a:0.11319665066743102 to:0.057847446241200376 town-:0.05144754704444954 town­:0.047522947248491335 of:0.03560565744487225 The:0.026079522247797374 and:0.024242297790103524 that:0.018768047852416526 this:0.017889757241489248 or:0.015871286863961387 his:0.012886823000517605 I:0.011773114054610515 said:0.011087861334834553 wor-:0.01034670449699495 steam-:0.00960934384021514 our:0.009217613705219126 Town-:0.009092977726057865 tho:0.00842309413462615 :0.30543455865833097 +the:0.4204602517795181 of:0.06054693824373321 his:0.04817747344582824 their:0.04742622166665273 a:0.040829449622572504 whose:0.037430686307389285 and:0.03599826879406663 in:0.032346870223988335 In:0.02437304296705288 tho:0.023661144587737774 to:0.02167772092369913 The:0.02011734180410827 our:0.01905103612212083 its:0.017594109061540384 my:0.016414819246083748 dis-:0.013457700706954852 for:0.013082634821111485 this:0.009992003432162434 or:0.008713761105207269 :0.08764852513847186 +the:0.3605361180263689 a:0.23963976008132903 The:0.06693216129537537 this:0.03419899478191995 A:0.03085707037818798 tho:0.030203244122079073 that:0.027215255406427896 of:0.024054198335203638 and:0.023551058786918093 every:0.021532418246742093 any:0.01972454646091826 our:0.01552235535869305 your:0.011991069978165871 other:0.011181533366963524 tbe:0.010820504056491004 This:0.010776756711995131 his:0.010588582681244187 by:0.007871997828558753 or:0.0072962829085829305 :0.034506091187835264 +and:0.05542414125537618 covered:0.053291064807930964 filled:0.039126191043412216 together:0.0388723391300143 charged:0.027999658910288338 up:0.023911219294285316 but:0.01751310736516498 it:0.017132672743010557 supplied:0.014769245721812591 them:0.014519083352315712 him:0.01359142235456155 connected:0.013515939011577547 loaded:0.013430321681720751 connection:0.013422749424080907 met:0.0128094292455337 compared:0.012613143429707444 accordance:0.012165646926534051 that:0.011343054718337311 down:0.011147002192238185 :0.5824025673920974 +of:0.30421289306378624 to:0.11657834161859816 and:0.06390984556782976 by:0.059553004867598666 that:0.05760728468690608 on:0.05276845261049657 for:0.036856707711096164 with:0.0324705157571124 in:0.029038268641056537 from:0.02122930250826093 under:0.019735412496252033 all:0.017873106833266563 which:0.01614369482811712 as:0.015943328502030042 upon:0.014782432061938362 when:0.014649115819541262 at:0.012020446930639073 where:0.009728677458637043 is:0.008785892833990474 :0.0951132752028465 +of:0.27707823784992214 to:0.08536664402122789 at:0.08360898717203359 from:0.07411125709328098 the:0.06151887254275808 and:0.05525203406433614 by:0.053874719298141256 in:0.03775845818190806 for:0.014653367273504414 :0.014429024117410759 on:0.010270987003894505 with:0.01018229449558465 In:0.008777653196968287 .:0.008718547589908096 &:0.007229880210894591 between:0.007114594581113268 The:0.006990584894790472 said:0.006391820259731729 ot:0.004853878266168436 :0.17081815788642263 +that:0.19557042770720998 as:0.11591629344306777 if:0.09145315781477564 and:0.08340128681198096 which:0.05436659644604573 when:0.04283215871729751 but:0.042497335016742424 where:0.030644674296709525 If:0.023416516458141377 until:0.022837781263891545 before:0.02255298758591246 of:0.021315084588875665 because:0.020769297992412013 what:0.02041745696246968 after:0.01914156141554857 though:0.016717889909769308 whether:0.01544012491360603 than:0.01435712982205848 for:0.012578085364817847 :0.1327741534686675 +the:0.21392905644137544 a:0.10546705025494146 of:0.07660538199061666 and:0.07050428468596869 an:0.03932408388395731 to:0.033064421465422475 in:0.029568945117614605 that:0.022428135571013027 The:0.01761703038202585 at:0.017349283924754065 as:0.014321746647082184 tho:0.012643650441393742 or:0.011612939657807356 for:0.011554787733867132 by:0.011461312013472433 :0.010439901247051124 A:0.00965891523234118 from:0.009588096906706497 said:0.008873943368290687 :0.27298703303429805 +and:0.07558940021936399 recorded:0.030196237618668006 was:0.028917161578042846 made:0.027969746247669736 that:0.027730098932509103 o'clock:0.025060522019555328 up:0.023026552239529506 is:0.020398277211376416 found:0.02003101797656537 placed:0.017482208134164214 out:0.016937164562539058 place:0.016819459500107596 interest:0.016629321966808677 him:0.016002796715253755 situated:0.01573420479581609 it:0.015128305982428461 them:0.014715943643665314 part:0.014646613000297721 interested:0.014450471929902294 :0.5615344957257364 +and:0.09860394117421444 reason:0.04537558134446942 necessary:0.026235751399848378 pay:0.024184919776422863 demand:0.0239080581792044 but:0.02334020348587279 made:0.020663437087703806 provided:0.020633761284611613 do:0.019440645483455317 responsible:0.016758014220346375 that:0.01592539464446829 asked:0.015525805062701346 provide:0.015222560187919558 done:0.01407280200315986 vote:0.013479870015703374 him:0.013352252346460527 enough:0.013261971503211028 it:0.013097506321030931 them:0.012950491007273838 :0.5529670334719219 +the:0.11076639060148961 a:0.07849534528798262 and:0.07662355077029165 of:0.07260297245149884 to:0.052614458906641126 in:0.02898323381454322 be:0.028619334122366183 was:0.018316043946281182 is:0.016699142604069347 or:0.015571116417843511 for:0.013777377220018703 his:0.013466243388399383 been:0.012200092708878738 .:0.011651566712874907 :0.01138899460054603 their:0.010869189054887483 no:0.010269055828557971 not:0.010112362588368682 an:0.009710495306262912 :0.3962630336681979 +I:0.20519536904151284 he:0.19734125113396067 He:0.08773303852835111 who:0.07065173700010813 they:0.0551220238135591 she:0.04921621584422008 we:0.040425435384152754 and:0.0393225412997979 She:0.025395730804100142 1:0.02144363902688567 We:0.017638438264075386 They:0.017193838862018276 never:0.014682851398146164 ho:0.010705952112496872 it:0.010525745825741045 be:0.01023604428430139 that:0.010104566122314257 you:0.00873215741466428 It:0.008350810791518039 :0.09898261304807589 +a:0.15995705452092696 the:0.1338440667875351 and:0.05099386134268966 A:0.03460627591078198 of:0.030051296696228233 :0.024681102254599244 per:0.019735947532850694 said:0.01678738899024392 one:0.015274979054614102 that:0.015203580417378822 this:0.01449424552666824 old:0.014109021282732287 The:0.012687306965931988 first:0.012231075358169453 for:0.011857807339488397 tho:0.011809021774651929 young:0.011720967737989604 each:0.01149633592208456 next:0.011346015881007428 :0.38611264870342743 +30:0.15143943818782246 20:0.07362204981670187 40:0.06019949140243897 45:0.053675906518720666 33:0.051097070962314195 15:0.05041687200693382 35:0.04888913030085901 48:0.043011630627895016 51:0.0413412907201645 22:0.03560041872675718 42:0.03352787569042384 21:0.03231819997980656 49:0.030808775158825408 50:0.030305506669425806 58:0.029653813961233733 53:0.029640664009668506 10:0.025077364715934525 47:0.024579118655101113 16:0.024353588703156022 :0.1294417931858168 +that:0.17674505306227245 when:0.12356412130340497 and:0.08972940536917694 as:0.08252810188773155 which:0.07225845742372002 but:0.0461157642164864 where:0.037794605172474634 if:0.030668824196977102 until:0.02663250510683392 When:0.024414912454331642 what:0.021487671427314867 before:0.020394600444781457 time:0.020137581511682413 said:0.019997550624155185 whom:0.016339972713589924 Then:0.014375163578200791 while:0.013830298931303118 then:0.012662548099941238 so:0.011456585747306292 :0.13786627672831514 +the:0.4099716056420355 The:0.14107601542656992 this:0.06112834326982015 a:0.06054794659397635 This:0.05021243640368051 tho:0.02915826090057642 his:0.02012563222436426 commerce:0.019161270341502102 of:0.01651261738091816 A:0.01604052619874595 county:0.015166412019499233 and:0.014300123157587948 that:0.013736392609314012 said:0.012156429196864976 whole:0.011376458056302005 such:0.011180072783741675 our:0.009795137628565516 tbe:0.009362563226523934 her:0.007895695695451193 :0.07009606124396024 +in:0.44951024736170975 of:0.1222075278391388 In:0.11245368079840393 any:0.07520668176997644 for:0.023081617045428403 no:0.021417051438631287 upon:0.018666527832439113 that:0.018309752011248105 with:0.017409818695910094 to:0.01713642321001808 at:0.016182226466450872 under:0.016058820982038837 by:0.015909069716885025 on:0.011568954866215007 from:0.010431028207856748 or:0.009731711497819963 and:0.007617016357168702 iu:0.006786030427504575 Under:0.006539642825202843 :0.022776170649953426 +the:0.1378854459619626 of:0.09550816209198172 and:0.0793082284712746 to:0.06325432732593851 a:0.04981744998475612 in:0.04049507588462003 be:0.036034788213397076 is:0.023342186109428096 or:0.020042185465407026 his:0.018536136774378487 was:0.018362645804285444 for:0.015918042951775277 their:0.015879187622248634 as:0.015274637443141725 at:0.013719580768808836 an:0.01347101662130876 that:0.012412869685016129 are:0.01241085713967708 it:0.012346328197267564 :0.30498084748332627 +the:0.7718167759552511 The:0.051558981913489545 tho:0.03132088676212441 at:0.02045556748038424 a:0.019838365409387073 his:0.01726312951207245 tbe:0.013285091375756772 their:0.010778221029321921 its:0.00980014415500162 in:0.006096260487228217 our:0.0060754104458140565 At:0.005346157046714739 of:0.00505809570966981 for:0.0046388393888381774 an:0.004602511242545526 to:0.004293089800414257 my:0.004042039113898506 and:0.0035781051697537937 In:0.0022793121214759932 :0.006873015880857769 +of:0.28767355066866834 to:0.08775711267569858 in:0.08678131196995101 and:0.05160598694501188 on:0.04646139928102899 by:0.04519522654900943 for:0.044547789071328545 with:0.03396756772609607 that:0.033699232901107726 from:0.03075346596941143 at:0.027039283056790858 In:0.021061449543044047 as:0.017514234937992545 all:0.012543839382496166 upon:0.011844431150487573 is:0.00998972746569266 was:0.008814315973987914 into:0.008557199930727406 through:0.007781895704231326 :0.1254109790972375 +above:0.16702185198632452 be:0.08447691232723822 man:0.07477101475185878 was:0.058126401828900214 he:0.046238905006992057 been:0.039706397556335676 were:0.03146139751848814 and:0.0314505902835654 is:0.025247192767606633 are:0.024379046305713647 I:0.02107791400903929 last:0.020345066445087268 hereinafter:0.014782672864357735 He:0.012600735612548293 being:0.012053245230809811 who:0.010836808895800923 it:0.010617322858799995 herein:0.010112664595574918 first:0.009907435829776155 :0.2937864233251823 +and:0.17000217113985092 be:0.12984590225582412 was:0.12055632103546676 is:0.0788167240479295 are:0.047078565449079915 as:0.04100385862607919 were:0.03902136671589882 been:0.03773374371488134 of:0.03192870528904758 have:0.021373066482006237 the:0.02084678185805742 so:0.02006390600303437 had:0.018566179376109493 with:0.017823465741889557 or:0.016775475119493698 being:0.013816205357928171 a:0.011786041487140488 Is:0.011067823646388605 has:0.010459989055992294 :0.14043370759790152 +of:0.24909969727062084 the:0.1873527314825504 and:0.05201991497229066 recover:0.03958146297357549 for:0.03811036454269412 The:0.03339894949236589 in:0.029885649492384557 this:0.025272352542688482 such:0.024918724073877536 or:0.024170593154227465 that:0.02271029641848429 no:0.021245651703104027 a:0.02107465054312165 any:0.01693995708029748 said:0.012869106068868156 with:0.011327308705181022 all:0.008109337484347738 tho:0.007346731320086801 by:0.007295908479460997 :0.1662706121997724 +sum:0.03352282876311118 number:0.028116684882597106 line:0.019995206059833036 city:0.01946514558931857 out:0.019275318828420953 day:0.01666865340772654 county:0.014872697538657208 amount:0.013254184849875051 Board:0.01252325449624941 town:0.012449555905674143 side:0.011663975251122375 part:0.011517157473718155 County:0.011460540331966697 state:0.011087331502382173 City:0.010878919191854432 purpose:0.01081028255427907 and:0.010297866493795984 way:0.009848747943663767 name:0.009522170936943183 :0.711769477998811 +It:0.14707848747958294 it:0.14161069793754544 he:0.09375673483994457 which:0.06526512008012257 He:0.04281874958312635 I:0.03631906791108794 and:0.033958678822113536 who:0.030584852721595612 she:0.025734151595986632 that:0.02051624327158232 there:0.018834109852590857 what:0.01696313056411227 She:0.012645019832274357 This:0.012572696872786735 bill:0.010727027904429236 as:0.010154581709587673 There:0.008564407697860177 1:0.007788932892455059 day:0.007426923833630948 :0.25568038459758474 +of:0.09180327590091512 the:0.08704392345264056 and:0.05028553387910976 to:0.03971470743914892 a:0.033346211002626726 at:0.025904757386540782 his:0.017851249766701414 in:0.01742950073752589 is:0.015513218102514145 for:0.015233738043563084 was:0.01344727231219973 :0.013096887391641368 .:0.012989086604713972 I:0.011604169198481697 be:0.011583875001198117 1:0.01055199628515836 by:0.010541636001383357 Mr.:0.00920364089982067 their:0.008754647324319735 :0.5031006732697966 +going:0.1643383196412044 go:0.11884062067999214 went:0.07202576724529007 goes:0.0628823677222268 carried:0.04943763193997405 and:0.03931672142092802 feet:0.03634877752959237 passed:0.03381722320751532 done:0.031455162792886036 was:0.02806700063592177 it:0.02759972577200463 get:0.026825823628726455 set:0.02594108120873068 so:0.025811457222665233 them:0.023808461729227893 put:0.0215130842511381 later:0.020683740199453477 miles:0.0199174473281241 were:0.019504548920869644 :0.1508650369235288 +the:0.11919516938815296 of:0.07230453158552728 and:0.05781056740443249 a:0.043018564803886335 to:0.031305092790907506 in:0.020848713353460488 at:0.014270110001066288 .:0.012526810245749479 :0.012413283442322082 for:0.011719122709941797 by:0.010808400946589808 or:0.010404172990115616 The:0.01003576004804544 with:0.009811868184449042 tho:0.009295902015355835 was:0.008924239095331684 that:0.008672304223433876 is:0.0085591147338948 be:0.008335143826716943 :0.5187411282106204 +the:0.22908397556179086 of:0.07921691331372896 and:0.05552865804383819 in:0.038351050101826094 to:0.03574941225258541 that:0.02739671186146549 a:0.027056076558410632 be:0.019171367271757486 his:0.014470341209011492 for:0.01386244475839316 as:0.013799803500738114 tho:0.013717042402333787 with:0.013356088895480985 was:0.012251392749837133 or:0.011895976597919007 is:0.011325845333819322 by:0.011161969438245042 their:0.01088549057274235 from:0.010278734989827622 :0.3504407045862488 +to:0.13044713395422963 of:0.09207871456820717 and:0.09166516115335492 the:0.09002829897175528 or:0.03885600182870352 in:0.02531910653895611 not:0.018634937802434026 at:0.01669103665704287 for:0.01564266679114199 a:0.015209121777739611 be:0.014519884398481186 I:0.013569879367236885 have:0.013502729021338006 no:0.013417440126820668 that:0.013035099087784345 is:0.012655274562395246 all:0.011493913022439883 :0.010943378649155528 as:0.01078617789446222 :0.3505040438263209 +and:0.1043588453895986 of:0.08282906886235072 in:0.0707872844920328 the:0.06763339066328096 on:0.05361024049935441 at:0.05123697986357868 for:0.045496916768935546 to:0.037893695194032746 from:0.0361667886360525 any:0.03456753913742452 but:0.025300527679656123 that:0.021798150628946553 In:0.021544391739838246 with:0.020491595011527846 On:0.01932960505430414 is:0.018368420555644804 some:0.018033414894183773 by:0.017811566159898744 only:0.017604071241263484 :0.2341375075280948 +be:0.3530816996622233 is:0.14003897747902974 was:0.0899572277251508 are:0.08521017185805524 been:0.06731752297964606 not:0.032911260541366234 and:0.03272425320228197 have:0.02901067396617031 were:0.02525517437155965 he:0.02217143949214058 being:0.019310362761953574 has:0.017888233216777048 bo:0.015839750820141923 had:0.013962337687772946 Is:0.01069402235525122 I:0.008996526532181016 never:0.005949034970902042 who:0.0049555116610654915 am:0.0038761722359951056 :0.019849646480335745 +of:0.11118349195747337 was:0.09180924246402736 is:0.07301500574146387 and:0.06433677888091949 are:0.03970406718288584 at:0.03314909568369672 were:0.029617918539133727 in:0.028923184066207017 for:0.02486674700998227 or:0.021984035224640396 to:0.019294646444796757 be:0.01786232813607653 by:0.01699086969067915 all:0.016419988921110535 only:0.015729545832485554 with:0.015697851535654478 that:0.014851577194750644 Is:0.013204674702337528 talk:0.012610190743393769 :0.337748760048285 +and:0.09028170801185494 be:0.07822087956359496 was:0.0604322494376946 to:0.03875799823221426 been:0.03781583825357645 is:0.03554424767192397 of:0.034961410324985946 he:0.030725180805022397 were:0.02766787033135484 had:0.02522919821496135 the:0.025062736946777315 have:0.024744631581598685 are:0.02273367617647766 has:0.02153903863415162 which:0.020121609097888116 who:0.018038493709098425 I:0.01645201523010846 so:0.016103804784538968 con-:0.01599519306445885 :0.35857221992771815 +one:0.1028303141280697 part:0.05963429477052991 out:0.04766456937681193 some:0.031418679026461914 members:0.030764490253327767 side:0.029940657362655835 portion:0.022063658796890564 office:0.020457735219956013 member:0.019726706386316174 end:0.019666887540649894 tion:0.018667441728710307 parts:0.016814747270460957 people:0.014112771422418794 all:0.014072739582212475 any:0.013183573287639892 One:0.013083578354183906 that:0.013024335602903442 account:0.012482348155001894 many:0.012077825070275192 :0.48731264666452345 +of:0.32086321212497215 to:0.11741529848257731 in:0.07544661652226944 for:0.06929523520813098 that:0.0468856277402834 and:0.04559124270306992 from:0.0353066609123202 at:0.030617675533832163 on:0.030523194297001982 by:0.027804746447998803 which:0.020660625378288316 with:0.019727403149621254 In:0.019223405598132494 all:0.016433065203898006 as:0.013585140192969265 when:0.013362114569822788 during:0.012940066553964727 was:0.009914297696065 is:0.009498037428394711 :0.06390633425638709 +of:0.3574736555576372 in:0.09908201453425593 to:0.07663301000995441 for:0.072994810738331 and:0.058896948110511015 with:0.05540605500166166 by:0.028933959759232235 that:0.024633236092704514 from:0.0245814899412146 on:0.01760688688476311 In:0.016123474383293875 upon:0.013808780446240638 all:0.013782592379630691 as:0.01111377954929397 or:0.009596967744694833 at:0.00868715634741849 ot:0.005558992338670775 but:0.005335421066999908 against:0.00525793057516203 :0.09349283853832913 +and:0.05429194314209437 covered:0.031720456755416876 together:0.024935784224312866 filled:0.023409536466708975 it:0.02177345108695381 do:0.020576864767317817 them:0.017121410129799803 up:0.016423007175897137 him:0.016062317370559607 loaded:0.014084113624725163 away:0.0119561699868986 but:0.011762234396797508 charged:0.011713092565467835 connection:0.011414344099518857 her:0.011370759996768757 connected:0.010909601950538356 met:0.010891740913908047 that:0.010220628960453228 go:0.009421855851705817 :0.6589406865341565 +the:0.4483106688163993 a:0.1107034105857767 large:0.06685375630893492 Grand:0.04692071795017475 great:0.03445782219581014 The:0.02847862978082302 tho:0.025875182477965702 high:0.018955278520953436 vast:0.018225839751203433 old:0.011579412875214003 tbe:0.011068041220014674 other:0.00967252891506387 small:0.009208490537126187 and:0.008818422088418173 said:0.008131016869189584 best:0.007829827816663991 main:0.007421542703798921 A:0.007222912579473564 personal:0.006889062115572102 :0.11237743589142356 +the:0.522916551430855 a:0.06881002140026582 of:0.06662180731079338 Men's:0.05709148851174487 and:0.04050338763689451 The:0.03215582380836505 tho:0.02618321807931079 in:0.016971297070732267 tbe:0.012162511378871484 this:0.011547852035076293 or:0.011154116122398344 for:0.0093627922660739 Woman's:0.006833379946022989 our:0.006532462535876674 that:0.005871382999487776 his:0.005820463346701034 said:0.00484455160551936 on:0.004751289013796881 A:0.00443124230085306 :0.08443436120036052 +the:0.1941678706012882 we:0.1046945000398875 to:0.0990693117260846 I:0.08830394968429961 We:0.08042318233336337 no:0.06502639758918002 and:0.054082198588708996 a:0.034734814521637125 sincerely:0.02841008583191086 any:0.027164520363944084 only:0.02425802698369237 they:0.023967339768369702 of:0.021424426358173366 by:0.019521489169296913 not:0.019197779964873915 this:0.016954767773331353 so:0.01608747165253324 all:0.013723130059940483 They:0.012608506409410133 :0.05518023058007415 +and:0.15659518156184268 of:0.1533911810442001 that:0.06287247467889277 in:0.05773080769852781 are:0.0569793930753834 to:0.055654065214887104 with:0.048447280025733494 is:0.03747470089742486 was:0.03238646161084103 at:0.030507774994793686 by:0.02643647131260038 for:0.02440075578401767 were:0.022128229243930018 from:0.02154043213461809 not:0.01650627835502752 In:0.01483219956575539 have:0.013954440311884501 but:0.01336815250874895 or:0.012713731309572719 :0.1410799886713178 +the:0.6428964441978171 The:0.05843890953368721 a:0.057231541185400144 tho:0.02801236973917922 and:0.015047744793989778 tbe:0.013871612544353307 by:0.011937971661972092 of:0.010414360958911765 to:0.009020311658232647 A:0.008638091013452516 no:0.007738229300739373 or:0.006894072398875135 that:0.0068220176270923395 made:0.006283727704829975 first:0.0053936324764763165 last:0.004530935470706804 any:0.004471220368280936 known:0.004373328122607362 in:0.00435495297840674 :0.09262852626498923 +:0.06705894482932111 of:0.040669893607602925 in:0.038705902733664206 to:0.03517164314903905 at:0.01910465542172329 for:0.015294075269950823 that:0.01424700297689003 and:0.01193818958202355 by:0.011755923402457947 it.:0.00991568469140836 In:0.009308596090792275 him.:0.008036137538518257 time.:0.007735743957302228 years.:0.006839532154428702 country.:0.006760574614888206 :0.006563243103741862 from:0.005668752192305325 with:0.005324390831350573 them.:0.005239070211137195 :0.6736620436414541 +the:0.08669920765481796 of:0.05480795095364653 and:0.04070345692241809 a:0.03143208818365321 .:0.030111446648794653 at:0.027391314526662356 :0.02626407597465122 to:0.02307618977119623 in:0.015631120446169572 on:0.013761257669492708 by:0.01300437063274956 E.:0.012392081798903947 W.:0.011487814104310877 A:0.011299281197757695 Mrs.:0.009156251036151652 No.:0.00906105467082742 The:0.008547919009273841 Miss:0.008283884317608941 1:0.008135161320276382 :0.5577540731606372 +and:0.1173461505914918 of:0.07404098489794307 to:0.06333635221505324 is:0.04050421362093834 was:0.03780997119334926 for:0.03556109988067284 are:0.034448730140752115 in:0.03416738977880735 with:0.02744992504557206 on:0.026028900615783314 be:0.022394222536594132 or:0.021062708913541065 from:0.019438490664586174 do:0.018583328061607667 were:0.017293110305485675 by:0.016154218380994807 agreed:0.015704990961885025 stipulated:0.014557778051767382 the:0.014460134202028251 :0.3486572999411464 +the:0.12056620821958075 and:0.07388105671229421 of:0.05380270742457313 a:0.04785485528913788 to:0.030041161172777567 was:0.02834464692850446 I:0.023776262453787122 Mr.:0.02103855758511623 be:0.020822293102649686 at:0.02015853780413717 his:0.01687182989455433 :0.014620302166747538 is:0.014413828393936736 for:0.012818961708999235 in:0.01201962174267895 .:0.011803563105077979 he:0.011376864894983435 1:0.010040613283390629 an:0.009883246589559355 :0.4448648815275136 +he:0.1311447561456677 who:0.08004550817614006 and:0.07374934096116265 which:0.06785932148585276 it:0.05794199922763847 He:0.042101388736455955 It:0.035170552506703257 that:0.031993886755023966 she:0.02500888509738984 one:0.017802958244920175 company:0.016397573738303053 man:0.014907912431465609 time:0.01378272709927525 as:0.011307608765646175 She:0.011133802391667261 ho:0.010757152187630582 country:0.010204876745893769 committee:0.00997075346587798 lie:0.009629621164874456 :0.328089374672411 +they:0.19162291354180527 we:0.08431291757368144 who:0.08311948644232088 and:0.07946195081006696 you:0.05023441881203629 which:0.04574184604804456 They:0.039943097683057725 that:0.03872921208402866 We:0.030847002546807827 there:0.022615434936165094 men:0.019427102293260078 people:0.017845107375459995 There:0.013338210480162638 but:0.010747115587517267 these:0.010585091429439938 These:0.009066683741560489 You:0.008568895688944292 all:0.008017116436794038 as:0.006695829082669375 :0.2280805674061772 +and:0.09295556372704601 of:0.05862665274930313 was:0.05057727003865739 are:0.04842114110706599 is:0.0339164790498496 by:0.028982808281714855 for:0.027885162378875648 to:0.02717809579797655 after:0.025777978037524733 were:0.02269516846499411 died,:0.01910343700932917 be:0.015614246386436438 :0.014561241941803858 claimed,:0.014533638108577683 not:0.01437306800992626 in:0.01337192106469636 After:0.012141032395120708 or:0.011848105619981291 with:0.011777925729040536 :0.4546590641020797 +the:0.40549249978850865 a:0.14166108451507592 and:0.059376175002220706 The:0.050114514882740935 his:0.04660118242528282 of:0.025424202888436918 tho:0.024987673463946886 be:0.021067501539018305 their:0.020979183233162127 to:0.019203153240143395 was:0.013804838887480688 our:0.011770152249866278 its:0.011425677819473495 all:0.011365828177182844 in:0.010596187831585417 her:0.010164966336337889 no:0.009633839905029317 tbe:0.008838429484671511 this:0.00880928049802166 :0.08768362783181424 +that:0.13948647625562619 and:0.09579057064856342 will:0.08072738143554958 to:0.06718008052802198 which:0.056452440430764056 as:0.046579759166559064 if:0.04493367961359976 would:0.043048090432120725 when:0.03710222572645902 should:0.027699715910969494 shall:0.02697672512452548 t:0.026544570301719028 but:0.024993650827120233 did:0.02371220230170306 what:0.023625595104722393 may:0.01912352625570018 said:0.018695476888330766 If:0.016801329397368628 can:0.016792937549719014 :0.16273356610085793 +of:0.07503645111500423 to:0.07264476347900395 the:0.06548918194916983 and:0.06380975888952169 be:0.038402835218196825 a:0.0305220516969499 was:0.027548216375016688 re-:0.019121434020034675 for:0.01908661686432892 is:0.019039318734989145 are:0.01861426379138935 in:0.017261425390502665 were:0.0150081851099556 or:0.014771028615010682 :0.014460810407977458 been:0.014137074009157908 at:0.012047409084395909 that:0.011530608596044637 his:0.01152679673753536 :0.4389417699158146 +of:0.11942892384563185 the:0.10393259060889964 and:0.04383273421310885 to:0.03942405532553369 at:0.03394995408419193 a:0.029203467760110634 .:0.027075860489246845 in:0.023811293361937914 by:0.01746452855154263 for:0.016325390913713076 thence:0.015571911380424953 from:0.014751977202093626 :0.014406166444644843 with:0.012878454342181574 E.:0.010673988724531406 said:0.010544897476043116 Mr.:0.010435046202894501 or:0.010405268145518969 W.:0.010249715263214176 :0.43463377566453576 +to:0.35939588462287714 a:0.07728213305023922 the:0.07271809472191712 will:0.06312336415110428 not:0.05677121484807806 and:0.03587759826877628 may:0.025035870048419416 would:0.01857230009546505 cannot:0.014612738822576266 can:0.014407155284039736 or:0.014337861394537934 per:0.014099772318594583 they:0.013568925379546218 their:0.01304053540146763 his:0.012283669136960752 must:0.011674510080960869 of:0.01095904178153547 could:0.010925841182801675 shall:0.010097290833066961 :0.15021619857703536 +owned:0.12132238940632811 made:0.05640149873440016 delivered:0.052678843593693354 assisted:0.04453750375890297 and:0.04221532363928803 occupied:0.03683063844527745 conveyed:0.0337263622728273 accompanied:0.027612643201051168 headed:0.01699619332031676 executed:0.01697445417057667 followed:0.014735347649713959 signed:0.014591583628970155 given:0.01393802689230286 ed:0.012752430839065458 secured:0.012608136997189557 appointed:0.011135878276980312 held:0.009839644386248255 was:0.009034607078393236 taken:0.008092928900570385 :0.44297556480790384 +sale:0.4052459665861584 and:0.06066092660222574 therein:0.03572043667674307 was:0.034026683102022316 be:0.026651909936503196 is:0.024994246524155047 as:0.024399788685930283 mortgage:0.01977943939479769 land:0.019606012719960035 he:0.01866112727066736 which:0.015515433355134074 property:0.013964968517326438 are:0.013168994772971888 herein:0.011681456325218996 it:0.011632829724538192 been:0.011235082477868814 were:0.010704570810009115 premises:0.010168246851681146 directions:0.010095015650185649 :0.22108686401590252 +or:0.09281608464010954 not:0.07489449038795472 and:0.06381966989279982 redemption:0.05712072525321487 than:0.04070956744699515 is:0.031290210208922024 was:0.03120549101847239 look:0.029189843522936663 there:0.028131497012039344 be:0.025115877200795157 that:0.020269696419443466 looked:0.018915865781502096 held:0.018441712244567282 made:0.0184125815247321 seen:0.017010353896818653 interest:0.016524808736177798 them:0.016376147217729283 it:0.015575334311057946 demption:0.014446495703073124 :0.36873354758065857 +the:0.3260742857828222 court:0.11147949731637345 school:0.0308585155037433 The:0.026854971795875697 his:0.026646542411865197 opera:0.024635990956738567 a:0.019792621297467755 said:0.019379159890531104 tho:0.015845018713775284 dwelling:0.01529847643660078 boarding:0.013841978188958772 her:0.01357983604208789 of:0.01322279702841544 this:0.009973767206549012 one:0.008816385529062798 tbe:0.007007490805810162 and:0.006942388482466254 custom:0.005950385387487914 lower:0.005129526136974919 :0.2976703650863935 +in:0.19038675989178505 of:0.15731195001728238 to:0.07390430751221926 with:0.0608356473214327 for:0.049333589442862744 and:0.04922649886107305 at:0.044204198748990176 In:0.038033524346172756 from:0.03443022466075027 on:0.03419184168661939 have:0.03187150038969704 that:0.02198668881285315 make:0.021335668208686865 all:0.016391286911030145 had:0.01633749215033443 by:0.015950899815482894 up:0.014934644083313192 upon:0.014412183043214979 take:0.012804264320147248 :0.10111682977605228 +the:0.11919516938815296 of:0.07230453158552728 and:0.05781056740443249 a:0.043018564803886335 to:0.031305092790907506 in:0.020848713353460488 at:0.014270110001066288 .:0.012526810245749479 :0.012413283442322082 for:0.011719122709941797 by:0.010808400946589808 or:0.010404172990115616 The:0.01003576004804544 with:0.009811868184449042 tho:0.009295902015355835 was:0.008924239095331684 that:0.008672304223433876 is:0.0085591147338948 be:0.008335143826716943 :0.5187411282106204 +a:0.27176971479714074 the:0.2622866098508023 young:0.08765022315004048 The:0.07188080491264945 A:0.055295973554813596 every:0.02723666082904955 old:0.026334407234741973 and:0.01644969055919616 Every:0.01246832386466395 of:0.012398864899915476 one:0.012243810014122041 tho:0.011131686559015131 man,:0.010578554871478874 poor:0.010119617325428034 or:0.009515847739858257 colored:0.009380244270635106 that:0.007065548677041783 little:0.00683854758396726 her:0.0065789943549153405 :0.0717758749505245 +to:0.515164852172506 will:0.08310602627342209 and:0.07600583572203369 the:0.03227456095502884 I:0.029290479507607176 would:0.028918100362541898 we:0.023556147229711305 a:0.015784189645078512 We:0.01447177844038045 you:0.014413453668328134 not:0.011655867741266975 they:0.011619952468039185 must:0.01053357942176412 with-:0.009550043589080957 who:0.009043804493813968 may:0.008490198153238001 can:0.008270349832388165 of:0.00813421357946235 They:0.007345692550535707 :0.08137087419377245 +the:0.42637759926737084 a:0.23283330883788955 The:0.04694746100783005 of:0.04518369115382159 with:0.02476618415257658 and:0.01969476249013275 tho:0.01902772070898253 A:0.017138225139511225 very:0.01614119772667243 his:0.015828477339691557 this:0.014689111096203728 our:0.014100322545118294 their:0.013565227147561604 in:0.012442108641726643 its:0.0123371678203748 that:0.011267072994676821 two:0.008799610871028847 as:0.008613149812585593 no:0.008201143862213317 :0.031046457384031202 +the:0.36194992100734613 in:0.2504020033522344 a:0.1310410616975561 In:0.0652890879786707 The:0.01773364474694284 this:0.017577812530023478 any:0.01618645321062597 tho:0.015738806636050727 every:0.015365573511489167 no:0.007700866761439791 tbe:0.007036946552304716 that:0.0067685000341775456 A:0.006157151030413604 and:0.006081490587000122 or:0.005784710073933747 such:0.005608626102383325 one:0.005101649718909381 iu:0.004818422217105215 first:0.0044192844689990764 :0.04823798778239393 +the:0.06667920091498994 and:0.036113220234202076 as:0.032063062270694796 :0.031729076082944584 that:0.030881736155107708 of:0.029232698192700673 I:0.023745448779234485 if:0.017908794238643257 The:0.016491256193426427 .:0.015893637250329988 it:0.014816152651460029 which:0.014611210253715402 a:0.010755285349547424 these:0.009965979256596352 -:0.00968426771043168 be:0.009385276172896162 It:0.009224253275948998 con-:0.008971229783001822 he:0.008864424569617245 :0.6019837906645109 +and:0.1114113806728231 the:0.09409586579190574 is:0.04911635958559314 he:0.04799672094039481 that:0.03527445021892484 which:0.034754640565146926 not:0.03213045872796929 be:0.030784828662110554 it:0.027873706639788363 who:0.02653868057775732 was:0.025887799892091928 a:0.025013408984047383 an:0.023233917141186708 only:0.021678027006228413 this:0.020367972333603372 said:0.01968115308489999 they:0.01887165174955948 or:0.01866201267310238 as:0.01767072544469219 :0.31795623930817407 +of:0.19260348692662965 and:0.09905358114760232 to:0.06715443328424256 by:0.05602567124894398 for:0.028086878623618885 at:0.02500538173029555 from:0.022364132775307688 in:0.018878576451578775 with:0.016022246525219653 :0.015861460170463023 that:0.01429926890665451 Brig.:0.011269621396411515 or:0.009398886550447952 on:0.007108043354434073 as:0.006994671136928946 ot:0.005820305055095306 .:0.005103114265977937 ol:0.0050208223576474155 Maj.:0.004914260281501361 :0.3880151578109989 +one:0.0651258849240609 and:0.04380487888064539 some:0.03838220895454736 out:0.03767987723985523 time:0.026859099728309837 part:0.024073500475455104 that:0.01956126054988391 all:0.01612205451242508 each:0.014668469665068302 front:0.012464721176489179 portion:0.011660680557338472 One:0.011654119217085217 tion:0.011583832113079433 side:0.01105970068119069 day:0.010961428282077471 many:0.010042180718347851 most:0.009907269426676297 death:0.009467396742469745 account:0.009461957415791398 :0.6044594787392031 +of:0.19791326123559178 the:0.10944483393039392 and:0.06093153183837291 in:0.04833701102405258 to:0.04487612233040194 for:0.03448552923447247 that:0.025525374756791168 a:0.020566960354640125 by:0.01987901035723135 on:0.017784546414809324 from:0.016726328990654484 with:0.016646348092000853 :0.01229905416253154 be:0.012065465962856271 more:0.011968838966404079 which:0.011864184626380838 their:0.011414396756420813 is:0.010019386804766257 was:0.009811909385573898 :0.3064399047756534 +was:0.07529916286063684 is:0.06673591128796395 of:0.0618170410971899 be:0.04920062455196904 and:0.04838795417097898 are:0.030235751788494972 to:0.027908431066345097 -:0.024678597931316677 for:0.021663466214663998 have:0.02127109971539443 the:0.020928720634156562 with:0.019856601029174286 in:0.01965714031536861 been:0.01830135993026464 were:0.018277041921954538 Is:0.01682135887175708 had:0.014465764270009089 I:0.012093686720871508 as:0.01144621659213524 :0.4199540690293546 +the:0.5885148551765809 a:0.1921085237240389 The:0.03528847709416036 tho:0.025392777092272747 of:0.02256340929828904 in:0.014428535804777575 any:0.013319554576100318 tbe:0.009883639071161993 this:0.009360979002997528 for:0.008423286794305667 and:0.0075885855800010525 by:0.007259512839877292 to:0.006233205744695222 no:0.0060409981928711215 first:0.005597601992060941 final:0.005502085832157912 same:0.005105691735080007 every:0.005029385385450519 some:0.004982949366758996 :0.02637594569636201 +the:0.1145039760948604 a:0.0631543917126742 of:0.05992871395740487 and:0.04632838331859623 at:0.03862834634948453 to:0.03467693442238209 in:0.032414182150798256 for:0.03082318934873265 that:0.022156171372174824 as:0.01561550207673989 one:0.013791217042045752 or:0.01317054406800993 :0.013063208407332055 by:0.012952838792347276 his:0.012751098882230869 on:0.011888454346608334 which:0.01151741203079649 In:0.011305012498055735 was:0.01085428107919032 :0.4294761420495353 +the:0.1982470158104566 Republican:0.13981234008216675 Democratic:0.0796819746382004 a:0.07329362124472331 any:0.03994067946470166 his:0.03681136843011887 one:0.03634685728535996 of:0.03551714572550413 this:0.03337241894537963 republican:0.030515018264659598 democratic:0.023439788233708448 our:0.018843494461737473 publican:0.017831515987700854 that:0.017386335858267033 to:0.017253722526599763 some:0.01511940626284202 other:0.013299926578154212 high:0.013284810743655588 each:0.011491306553836657 :0.14751125290222702 +the:0.11919516938815296 of:0.07230453158552728 and:0.05781056740443249 a:0.043018564803886335 to:0.031305092790907506 in:0.020848713353460488 at:0.014270110001066288 .:0.012526810245749479 :0.012413283442322082 for:0.011719122709941797 by:0.010808400946589808 or:0.010404172990115616 The:0.01003576004804544 with:0.009811868184449042 tho:0.009295902015355835 was:0.008924239095331684 that:0.008672304223433876 is:0.0085591147338948 be:0.008335143826716943 :0.5187411282106204 +-:0.04663797317823608 to:0.044073227758023366 .:0.02522442322980491 t:0.02177407203581196 ti:0.017315541578878203 I:0.01380943522331205 :0.013210365449298723 i:0.009853099281504392 of:0.00967247545649765 w:0.009628193503674158 tl:0.00955921779214865 will:0.008211084478329567 and:0.007855036250081224 i.:0.006186255507951548 1:0.005889308017232313 a:0.005310856203755859 n:0.005284117889433352 r:0.004869322718646064 in:0.004488892257670109 :0.7301471021897098 +the:0.28612882354072566 a:0.05626409235063032 sepa-:0.0518202802936338 this:0.026292864219335268 any:0.025260037901469065 of:0.02224070701680534 same:0.0213677365751098 and:0.016585641223394273 The:0.016535816788105586 to:0.016516824517739025 death:0.0157287580913789 high:0.012655983680337907 tho:0.012573698143143821 low:0.011904321296805307 his:0.011898862904739016 in:0.009920424828346763 that:0.009901480997057868 each:0.008815616657093154 one:0.007353797951707503 :0.3592342310224416 +the:0.16807735899698817 of:0.10541662057906837 and:0.05138367848570702 a:0.04141865232648221 to:0.0385989743764065 in:0.026264864977736738 was:0.019530675665220657 his:0.018900421021236905 be:0.017373825006196972 their:0.015767721170721456 for:0.01557246589796783 with:0.014071419046630446 is:0.012922913111931644 at:0.012690452250034052 are:0.010702713108721902 .:0.010158075558988393 Mr.:0.009672788574483367 tho:0.009612591781990074 were:0.009549306361446321 :0.391314481702041 +that:0.15298628535575065 as:0.1090252703226244 and:0.10151756719645691 when:0.09696412172550561 which:0.06910681586978637 if:0.04275231750575331 but:0.04182388321923355 where:0.039398782450799474 before:0.028940845193771957 When:0.02349484337214228 until:0.022514269405508196 whom:0.019192380336228287 what:0.01840902098665833 If:0.017885200102710434 time:0.017754826737113184 Then:0.014924061375059227 while:0.014469359323182239 As:0.01400562548615133 because:0.012980542036492827 :0.14085398199907143 +:0.10065454122236167 .:0.027346433690199814 it.:0.01599408906110007 them.:0.012608861776682538 him.:0.009481163623506973 day.:0.008580708854575202 city.:0.0075522340810574564 time.:0.0073033186536501545 year.:0.00674413191445291 country.:0.006326327290700626 work.:0.006019168266565341 State.:0.0050929957286913585 week.:0.00504749527718131 life.:0.004946003497913779 It.:0.004938294869406847 years.:0.004860706765969753 place.:0.004778289153549908 men.:0.004743628204066923 days.:0.004699059017058679 :0.7512825490513086 +the:0.14369401321423708 a:0.11716340294957789 took:0.11265093100643647 take:0.08386425144578138 to:0.08042830498741894 in:0.058874781241316024 his:0.036557184607234734 no:0.03201904462557075 and:0.029774876606677037 this:0.026331968237766255 taken:0.0262992228979128 takes:0.022478315159752984 first:0.020158973251315118 any:0.020049161292553425 their:0.018081120211047703 give:0.015975824998975725 gave:0.014314042272956302 due:0.014150975865389279 In:0.01295204319740126 :0.11318156193067884 +is:0.14474714258249047 have:0.12589063172859702 was:0.1068940974391951 has:0.10363099784588684 are:0.08218846887952289 had:0.07274352630342062 not:0.06064673779993128 and:0.04289138763386771 were:0.02825866131178367 he:0.027388562985171443 be:0.026714435005886366 Is:0.018174163147862337 been:0.017374199040664007 I:0.01731431861401534 they:0.014276797076853752 but:0.012287356662242668 who:0.01215408966442472 will:0.011730268922472786 He:0.009796085506487237 :0.06389807184922379 +and:0.08939268402247397 or:0.05687349754585604 appear:0.05429530567747306 days:0.05057368104141065 that:0.03798978317408274 time:0.036325234219019065 brought:0.025923216698042373 just:0.025188768122919702 long:0.024916162957727632 was:0.023270714274144625 day:0.022723575663473782 laid:0.022436232258905918 years:0.022142835676739015 but:0.021238383296727944 Just:0.018782325207086753 weeks:0.017852412038824067 up:0.017292151449600265 come:0.01635388708038715 made:0.015309192872048714 :0.40011995672305656 +and:0.06317916895143688 was:0.03089079697380977 is:0.020044819943736053 be:0.019406329289829806 are:0.016631216139614186 that:0.015910745835586493 it:0.014132589635136123 been:0.013429954470292457 made:0.013153338042273357 were:0.012494049396038097 or:0.012369181282419555 them:0.011608721240324167 up:0.01101461536327863 him:0.010833186604515583 as:0.010718511743974049 succeeded:0.010682665877813333 engaged:0.010592681714621757 not:0.009777868089593193 now:0.00948198968071834 :0.6826475697249881 +and:0.1037199769841525 contained:0.08163711869813658 served:0.07392278328896659 situated:0.03737962065018987 property:0.03376706544527502 interest:0.03236167682725134 land:0.03159527347662346 or:0.02562580969506966 that:0.02432560359891646 is:0.023568022578156128 office:0.021012456213881557 District,:0.020072050989562468 residing:0.019228849805786805 embraced:0.01906443642769577 are:0.01786214113331848 be:0.016841117909534645 included:0.016152027231055802 due:0.01583150948893234 sale:0.015621669946538833 :0.3694107896109557 +is:0.28876788875924225 be:0.25859895945766803 was:0.08879824723198285 are:0.06426121614569652 Is:0.04566486035519307 been:0.03751490896453249 and:0.03682785727760862 he:0.02611391449017407 not:0.02587211560074819 were:0.016090941131555656 bo:0.01338651773711001 being:0.011113933443779048 I:0.009628553207117387 they:0.007222638511486943 have:0.006893012503544184 had:0.006596374036489535 He:0.005058820554968123 most:0.004660675355456532 lie:0.004215814552369362 :0.04171275068327713 +was:0.1626492025478544 be:0.13325860995389932 and:0.12263607763209783 is:0.11276054589148515 were:0.051965802065819904 are:0.05005445220933664 been:0.042083922676770476 to:0.025034282961895176 he:0.02407413220625678 the:0.023638961386291717 Is:0.02120297777380373 now:0.02002680937318643 not:0.019789469511450872 who:0.01787945535705179 of:0.012233809505761832 will:0.01207630082008276 being:0.010288846522517945 in:0.009926595539384795 they:0.009274850276611008 :0.11814489578844145 +of:0.14972410653696938 to:0.09660403992805897 and:0.0923574390828798 in:0.08747939760751962 for:0.06855206611613651 with:0.05506465380223625 that:0.03832395378634673 by:0.037336590015605825 on:0.0328602169403032 at:0.02699163353876723 from:0.02475857745203223 have:0.02446301572284299 or:0.019563317388305107 upon:0.015223159382316095 In:0.014496044502599056 up:0.013613741470091279 had:0.012818593044521211 all:0.012618821592764838 as:0.011953279691080282 :0.1641973523986234 +and:0.1039496648371764 was:0.033762521124349 of:0.031242424876087437 the:0.025068213362349306 I:0.021588121488570557 he:0.020744710894278873 her:0.0201711165860689 to:0.019420926527050963 be:0.018285999489056057 :0.018049725006892652 who:0.016839893949646773 it:0.012676855023007636 or:0.011656255056574872 were:0.011169791168480431 that:0.011076883933354717 went:0.010507167951187736 a:0.010455368993379966 He:0.010251418292103227 which:0.009528187435998653 :0.5825547540043859 +of:0.30661803220948225 in:0.1839108036394887 to:0.08909405496621957 In:0.04349864824618733 for:0.0390823179310071 on:0.03891667814428122 from:0.03793957074251604 and:0.03457002645993175 that:0.0328939942205617 with:0.024593765902522925 at:0.024545221287473187 by:0.02360229025704121 into:0.018646970364081316 upon:0.014751679346391164 over:0.01086298502329292 through:0.009227241339304037 under:0.007020853165901938 which:0.006660539715786687 as:0.006430796845082475 :0.04613353019344647 +is:0.062223675562987316 nothing:0.04725963692514748 was:0.02189481180392335 are:0.019933172590293317 ;:0.019768302799507656 anything:0.018647401003884977 and:0.015465018112875433 it,:0.014881221963451608 be:0.013844966978590256 have:0.013663904952789614 to:0.012448028290155747 had:0.010695390383353846 time,:0.010665608284483138 more:0.010471153291336638 of:0.010102169899288162 Is:0.00973152857188201 in:0.009004017993627792 good,:0.008431149266778789 with:0.008389263038394618 :0.6614795782872482 +any:0.12194253665172268 no:0.10246001100662429 No:0.10050086415651155 that:0.07013792972924114 the:0.05778291792999497 of:0.05726015650400437 some:0.04877767542706079 and:0.03930521149223016 every:0.03794750742352654 but:0.03600764201236868 only:0.028545661531706994 The:0.02277837415203901 Every:0.02261273187137367 which:0.020116990389490455 each:0.018085817097196984 in:0.018023151511949 as:0.016438013693461876 at:0.015729894215720026 by:0.014550867843480366 :0.14999604536029645 +that:0.24753850921423345 which:0.10520035145016075 and:0.07357339122903989 as:0.05829755628453203 if:0.05706671129063915 what:0.037985721587638174 when:0.03174413948790155 where:0.030484073670679842 but:0.02815002692294964 said:0.027754958544204178 If:0.017862757299881415 would:0.016596018966940924 whom:0.016144074978354447 to:0.014677399076572614 than:0.012671547563667366 will:0.011957809425231707 because:0.011234861454249333 before:0.010560207735862675 should:0.009674363837202127 :0.17982551998005872 +and:0.06751335289221745 it:0.03214763507323768 that:0.02996933670548981 made:0.025912680506811794 was:0.024879858212137708 them:0.02483832673780292 found:0.023741468686416172 is:0.019742038283836603 up:0.018268563924991495 as:0.017208879131196005 but:0.016987396373859664 place:0.01540631890801325 not:0.014800413182537648 interest:0.014778388975712216 are:0.014686505873528809 men:0.014045216801780917 or:0.013600996768689307 been:0.013264660380576153 be:0.013105198248003965 :0.5841027643331604 +feet:0.018379984250567197 and:0.01756389042989991 men:0.013667036949544298 it:0.012351371946339194 them:0.01053022267766305 made:0.010114017200542216 well:0.010004711700994677 him:0.00896513810663129 up:0.00826065565955114 all:0.007938882021133466 to:0.007518196623289899 be:0.007352233346158685 now:0.006903879669236957 day:0.006885130725991946 interest:0.006539720221620598 :0.0064002373044280145 the:0.006234230575821766 come:0.00604642078080148 work:0.00603553544983939 :0.8213085043599448 +one:0.07591276261110715 out:0.06051731193170748 part:0.05247657393880051 some:0.03764565803631056 account:0.03732080875142556 any:0.025795501308866122 all:0.022573497570587936 that:0.021706034880474935 tion:0.018820497961324994 time:0.018327338823311803 and:0.017698472540372448 use:0.017101246342976464 much:0.016743309263569286 portion:0.016424352739351607 side:0.015150320706867294 end:0.014971280442338157 cause:0.013657752568417643 because:0.013563549560043006 reason:0.012998228641295377 :0.48959550138085167 +and:0.1433349926440823 is:0.1033986307670541 was:0.09832103234104989 are:0.06606288366103946 will:0.05179229618197112 were:0.046288651827536685 but:0.03213001974387931 He:0.02027150772272266 I:0.01874663038310226 has:0.018119113133272823 he:0.015702933802255493 Is:0.01530764675947571 it:0.014813952065645427 have:0.014308921314169977 It:0.014164626592180927 be:0.012699683480988783 shall:0.011974337868319336 They:0.011332043728461947 that:0.011193798574518453 :0.27903629740827335 +of:0.28767355066866834 to:0.08775711267569858 in:0.08678131196995101 and:0.05160598694501188 on:0.04646139928102899 by:0.04519522654900943 for:0.044547789071328545 with:0.03396756772609607 that:0.033699232901107726 from:0.03075346596941143 at:0.027039283056790858 In:0.021061449543044047 as:0.017514234937992545 all:0.012543839382496166 upon:0.011844431150487573 is:0.00998972746569266 was:0.008814315973987914 into:0.008557199930727406 through:0.007781895704231326 :0.1254109790972375 +of:0.4758419844125758 in:0.1120958988629855 the:0.089780867049688 County,:0.07573562422219685 to:0.01830132381798652 on:0.015099198124732358 and:0.014753546483426553 from:0.014623358353887974 county,:0.013977980250397487 In:0.01172951337651952 by:0.005404908039342037 County.:0.004501596764846519 thence:0.004411098347617066 :0.004370607966066683 county.:0.003982094149420356 ot:0.0034924341542842408 at:0.0033888994848304647 said:0.0032699398071538736 between:0.003189963259794623 :0.12104916307224761 +that:0.12877368706521958 and:0.10343811039022899 which:0.0800594611337696 when:0.0599498536653849 as:0.05365331218935483 to:0.05164919583107528 if:0.0270497931800979 will:0.026888923864509424 but:0.025383516994720454 where:0.02293792694881519 what:0.0207777038096785 t:0.019343962651763098 said:0.01729463067489876 would:0.015552874955014286 for:0.015152722422811573 whom:0.014651225618177431 before:0.011897529933941699 not:0.011235367786820124 If:0.010599156710423857 :0.2827110441732945 +it:0.20716538773325 It:0.12024194766692717 which:0.06912178182901393 he:0.04705934557402162 and:0.0462013680543126 that:0.04288017454586553 This:0.028373345639649973 what:0.022667281343514513 who:0.020361477138893903 He:0.019082805455089356 there:0.01733539374835135 this:0.01557906207511202 man:0.015386008051029779 she:0.01340106963777083 country:0.008468789405894055 county:0.008076323854332263 city:0.007820372713731007 work:0.007768898992857224 as:0.007638625963548272 :0.2743705405768346 +the:0.3935213285348876 supreme:0.08978475691067 circuit:0.08125782614986529 a:0.06457761276727951 district:0.05686219205401275 said:0.046327839507159504 The:0.03135531936451586 this:0.030110323369133052 preme:0.023965523293372197 county:0.023576378154860307 tho:0.02074244582000327 probate:0.014859541386788166 tbe:0.012428343385756135 of:0.011402230128268144 supremo:0.009115535262053963 any:0.008795506324253322 superior:0.00712778835813407 and:0.006834720837329082 that:0.006552649253429738 :0.05980213913822803 +the:0.342215136017772 of:0.10028953169050062 and:0.038783294429596375 to:0.030247274498609183 a:0.028697810436110333 The:0.02449015532478957 in:0.01800216130130791 tho:0.017088986458878467 this:0.016701092157643968 said:0.010727507362965717 an:0.010267878746004074 by:0.009839280393884554 for:0.009675389259423222 that:0.008319551348886347 :0.007628431175857649 our:0.006600197859711003 with:0.00580673952499089 tbe:0.005725908273202841 or:0.0049203698470221624 :0.30297330389284316 +and:0.14625498311756543 said:0.0821408402137806 fact:0.053042879817408975 stated:0.043080626045290886 so:0.03670560455337853 him:0.03145185140002361 know:0.030269284895004085 say:0.023631027804186345 is:0.023317250373478222 says:0.022511697585094068 believe:0.021363437164841573 but:0.01993757805139123 saying:0.018992342115662253 told:0.01877630041085035 replied:0.01865923525468731 all:0.017484377075553177 found:0.017287552137347117 me:0.01691240193856356 stating:0.014580183464830303 :0.34260054658106237 +men:0.03482052618477242 one:0.01512537505076668 man:0.014744240048834682 it:0.013702696726669428 right:0.010315141086279084 time:0.009645443547280022 women:0.009503442120254476 made:0.00945173331658588 out:0.008884964717700384 long:0.007790544513707462 up:0.0077260004748399185 life:0.007507137960831668 strength:0.0072296694413656205 and:0.007100457380217848 hundred:0.006983355728164093 in:0.006930177743762761 :0.006781202817463284 large:0.006727716009909475 work:0.0066786521857115 :0.8013515229448833 +and:0.07359963406644195 be:0.052667135004264946 to:0.04483536256874564 of:0.043448293679263235 the:0.03579172892628988 in:0.028005289969665195 was:0.026700397492138477 is:0.024892551934152005 re-:0.024162182625676702 he:0.024086629517294657 are:0.02098604388819216 from:0.020307931541148256 a:0.018606881911690538 or:0.018077853608073062 for:0.017195224169077532 been:0.01615904189338184 I:0.015254891559368164 :0.015184018660626356 which:0.015016145996292442 :0.464022760988217 +and:0.17781229259163178 that:0.10137500896394921 which:0.06877237886917022 as:0.0682453755812764 but:0.04602866706468871 when:0.03949896038698334 if:0.03232254021634951 what:0.026735611568434646 have:0.026598992248156313 had:0.021440116367477908 has:0.01588559992860722 Are:0.014495149874772958 it:0.013459703432469546 while:0.013254416713365653 If:0.013199180776129353 time:0.012616558879010444 are:0.012361926986372921 then:0.011332858049197 yet:0.011119220841907305 :0.27244544066004955 +and:0.18694507459647028 that:0.16746064710141434 as:0.06110635264720023 but:0.042115203992052055 But:0.02935800342154866 And:0.023858510452155392 or:0.01991974321523683 do:0.019549582940233883 even:0.018877947320206957 which:0.014100404021334055 and,:0.013268400213906652 or,:0.01252826080559553 me:0.012469381975706115 it:0.011454889579440977 which,:0.010884367697950693 ;:0.010726318791022439 time:0.010215413641785517 him:0.009381543963772174 that,:0.008826875314469941 :0.3159530783084973 +the:0.11919516938815296 of:0.07230453158552728 and:0.05781056740443249 a:0.043018564803886335 to:0.031305092790907506 in:0.020848713353460488 at:0.014270110001066288 .:0.012526810245749479 :0.012413283442322082 for:0.011719122709941797 by:0.010808400946589808 or:0.010404172990115616 The:0.01003576004804544 with:0.009811868184449042 tho:0.009295902015355835 was:0.008924239095331684 that:0.008672304223433876 is:0.0085591147338948 be:0.008335143826716943 :0.5187411282106204 +and:0.15537069145199423 the:0.06873753284453826 of:0.05899479787477188 to:0.03897917044715397 a:0.035037122059722856 was:0.029392039288685647 as:0.019014132740336018 be:0.018937211484529527 is:0.01790246153244458 by:0.015859055461123966 for:0.014269013373902198 with:0.013906672561697217 that:0.01333023959460911 or:0.013035715103156067 are:0.012763919964238294 were:0.01131368653703651 his:0.01092969074416124 all:0.010654082946412687 :0.010541573384365356 :0.4300311906051204 +one:0.1028303141280697 part:0.05963429477052991 out:0.04766456937681193 some:0.031418679026461914 members:0.030764490253327767 side:0.029940657362655835 portion:0.022063658796890564 office:0.020457735219956013 member:0.019726706386316174 end:0.019666887540649894 tion:0.018667441728710307 parts:0.016814747270460957 people:0.014112771422418794 all:0.014072739582212475 any:0.013183573287639892 One:0.013083578354183906 that:0.013024335602903442 account:0.012482348155001894 many:0.012077825070275192 :0.48731264666452345 +I:0.1712276129118296 he:0.12302012528281207 and:0.10705254807707608 have:0.07038071428848452 had:0.053647540545536644 they:0.04055840535750364 we:0.035111388260523874 has:0.03399025655617678 who:0.028742024099639246 He:0.02739012754320437 she:0.022368821676301148 which:0.018472517628998927 be:0.017037113164782423 then:0.014690880767585185 1:0.013958146185449317 not:0.012000452800210731 never:0.011429695499749743 to:0.011394964364429497 was:0.009951557608028778 :0.17657510738167737 +so:0.11731365081467694 of:0.09963903061725472 in:0.0802753948990278 and:0.07332562183291175 as:0.0711517826525409 the:0.06651477499861877 for:0.06319761590264734 with:0.04650345190767742 great:0.041905856370774285 that:0.037178024483584836 are:0.033629831676101486 how:0.02861991590245021 In:0.02828333681795291 by:0.026530542304809085 too:0.02144675595734454 good:0.02078713274772193 to:0.015498321461410074 were:0.012459520724308667 How:0.010580267211883524 :0.10415917071630282 +of:0.13545334247992405 as:0.08175092788406958 with:0.07620451308576535 in:0.07395657978342662 is:0.06780325099453317 to:0.059105054018089354 by:0.055912549931109 and:0.046308419480388434 was:0.04374303898143264 for:0.037119867151567995 be:0.03256019669783003 on:0.0315178045817384 that:0.026283510246157004 such:0.02485309213934113 from:0.020584575765965434 at:0.01747425336196874 make:0.01661922227374295 into:0.015638176175670572 In:0.015066696919239893 :0.12104492804803965 +sum:0.03352282876311118 number:0.028116684882597106 line:0.019995206059833036 city:0.01946514558931857 out:0.019275318828420953 day:0.01666865340772654 county:0.014872697538657208 amount:0.013254184849875051 Board:0.01252325449624941 town:0.012449555905674143 side:0.011663975251122375 part:0.011517157473718155 County:0.011460540331966697 state:0.011087331502382173 City:0.010878919191854432 purpose:0.01081028255427907 and:0.010297866493795984 way:0.009848747943663767 name:0.009522170936943183 :0.711769477998811 +the:0.29183327001312687 and:0.10778802634357519 I:0.08229816491328892 a:0.07156201699216544 to:0.05484028850173035 you:0.046090389945844704 or:0.03631747664778604 not:0.03508232597783305 we:0.0270905010981076 The:0.024739262827969837 who:0.01745800571692485 in:0.01712304871081276 no:0.015978556707377755 they:0.015914717354116533 We:0.014726516932789473 tho:0.01325043989512887 only:0.012119601014635818 1:0.010589486884573094 They:0.009164365226066224 :0.09503353829614668 +of:0.2882945661602186 in:0.19890890809399364 to:0.08878174559450266 In:0.04788481070696476 by:0.04182111855890084 on:0.040771705654177585 for:0.02931179895758014 that:0.028897062510062257 from:0.025048019963490736 at:0.023428390328078835 and:0.02221220283148831 as:0.016213302237994717 with:0.01384652466751418 before:0.013097485434088707 over:0.008142424735700041 into:0.00811709337104339 upon:0.007173491681107367 through:0.005250907286955044 which:0.005180856318509364 :0.08661758490762882 +the:0.16807735899698817 of:0.10541662057906837 and:0.05138367848570702 a:0.04141865232648221 to:0.0385989743764065 in:0.026264864977736738 was:0.019530675665220657 his:0.018900421021236905 be:0.017373825006196972 their:0.015767721170721456 for:0.01557246589796783 with:0.014071419046630446 is:0.012922913111931644 at:0.012690452250034052 are:0.010702713108721902 .:0.010158075558988393 Mr.:0.009672788574483367 tho:0.009612591781990074 were:0.009549306361446321 :0.391314481702041 +to:0.4953194632896225 will:0.10081671788057772 would:0.06475740400039134 the:0.04164019844910054 not:0.0359392972496942 and:0.03307589140670564 who:0.022209563431737682 we:0.02142401381349854 should:0.0175466428771637 a:0.01718223952514744 shall:0.016196940520746664 can:0.013368438159479124 may:0.01272399274287773 I:0.012030398822873593 they:0.011057912024722772 We:0.010823116119804702 could:0.009809883938447618 in:0.009318711263074516 this:0.009063582704697842 :0.04469559177963613 +a:0.11561996958050734 and:0.11068262700298197 in:0.10015265762484163 of:0.06588588457147099 the:0.06449398313245527 with:0.04694232254842497 was:0.04283470715031128 for:0.04026816328675318 be:0.03592505226978653 to:0.03579576835740948 that:0.031028540416655637 is:0.02930380361253655 no:0.019911253475754696 In:0.019374518129664405 an:0.018698327685204266 or:0.01844550601486196 are:0.016542280771940317 not:0.01627256369235737 this:0.015589159990231367 :0.15523291068585082 +the:0.572233945861866 said:0.1295320291053506 and:0.03507349651129447 tho:0.0250369387533049 this:0.024746593853311342 The:0.020531745241924887 a:0.018711409118984328 of:0.014533773601686265 tbe:0.012675488164921074 or:0.0075671114648927 that:0.005820820524692174 other:0.004535549386850235 our:0.0029574550551892368 every:0.0028986547792168513 in:0.002755786532869089 Angeles,:0.002612076264506111 great:0.0025911227239715407 any:0.002510011062704232 tlie:0.0023122476995702103 :0.10936374429289365 +the:0.19047456774100358 and:0.08714199410699794 a:0.07057033217529614 of:0.06240427044524808 to:0.043703312782510155 The:0.023236073919129654 in:0.015817277250216234 his:0.01564894653312613 be:0.01469252739785684 Mr.:0.01421275424398289 tho:0.013158540087580847 that:0.012829376306690525 or:0.012747264402068215 is:0.012505964927021778 for:0.011223974373874035 was:0.0109896485564604 this:0.01044631546444489 with:0.010096915370312334 by:0.009972562485124294 :0.35712738143105505 +to:0.413381301012517 and:0.0771540701845553 not:0.060096145083384976 will:0.04868294262143294 a:0.0450610257491794 we:0.031321542540860094 would:0.027724772929001055 may:0.019384241831509528 they:0.01887406384525838 I:0.018834280796274347 you:0.018120879176461956 must:0.018067914921754354 should:0.01632845663788409 can:0.01578442050202969 could:0.012800074564708235 shall:0.012370697203462688 who:0.011046984583465617 the:0.011021880919037127 or:0.01094477903114789 :0.11199952586607535 +it:0.20902196303017548 It:0.1815746031893836 which:0.06673623294637265 that:0.06168950878307439 and:0.05900188652456046 he:0.04247186055716182 who:0.02601282949710228 He:0.019931842079103628 there:0.019861070688173325 This:0.017341374275628617 this:0.015317792852104205 what:0.014144252459141578 she:0.01347999725159635 as:0.008170658071680709 That:0.007966023211507835 man:0.007593577819513011 She:0.007530957665618424 country:0.0064553260955744415 State:0.006032524488642792 :0.20866571851388444 +the:0.13493882560778 of:0.1140900121868118 in:0.10436662370500623 and:0.09014589995546982 their:0.05510987418035668 his:0.04214317013787116 no:0.040966273671138656 or:0.03793929286809946 an:0.03418364264267936 with:0.032454289659005445 In:0.02610207364785298 its:0.025231497761895254 to:0.02254798636594334 by:0.02178592125915974 for:0.019489250361713135 give:0.017903054266817212 her:0.017035850796290115 without:0.015534151717786963 is:0.013268077045337444 :0.1337642321629852 +and:0.050940733601605 him:0.04034978334292004 able:0.03723899907271679 is:0.036025210240552254 as:0.03504653815776964 began:0.03313393235778894 them:0.03152855711564974 right:0.03139835368225637 going:0.02946133404525463 have:0.02825178611435666 enough:0.027809231244085884 had:0.021407028779592597 ready:0.020025975769618443 decided:0.019930098864000857 time:0.019840897588057887 was:0.018696861783656593 order:0.017912239588557748 made:0.01758047133127808 not:0.01693502427569581 :0.46548694304458604 +and:0.18251385621488297 of:0.10085402366059959 to:0.06252910833668812 in:0.05268788747268925 for:0.0417084477629931 that:0.03350255560552531 or:0.030312964974121066 from:0.027473376318500452 was:0.022058191928142852 by:0.020860508905977508 are:0.019000756479133945 In:0.01880912982270948 is:0.015032670241370998 all:0.013345072753597672 with:0.013036207129627326 were:0.01266840275358675 the:0.012012392148995977 as:0.011923782425765769 at:0.011322664987820981 :0.29734800007727086 +the:0.1836501552698974 of:0.07874751816988207 to:0.0395531180458964 in:0.028992572378996342 and:0.028407899960343427 by:0.01850333407930507 a:0.018076556851260254 :0.016316097036164535 on:0.015081711704106071 The:0.014330023385085792 .:0.013607966124550503 Mrs.:0.012878468961586498 that:0.011915231382391199 at:0.010102371943480045 said:0.01006627368687235 tho:0.009844411404281024 In:0.009338834414846512 from:0.0085637711971949 I:0.008056028119537081 :0.46296765588432254 +and:0.1661108353052244 was:0.08747548104375816 is:0.0822217500551085 do:0.07876504217145415 are:0.0633556426833404 be:0.03371841280986394 were:0.0323422902418796 not:0.02960541663033987 or:0.025793736104561798 been:0.025240610609841667 but:0.015703640077664865 to:0.014210071051313755 that:0.01379759559421622 doing:0.013591744215620366 did:0.013299595904975613 of:0.012103279721429838 Is:0.01172272256323755 done:0.011423704390787144 it:0.011175231788669287 :0.2573431970367128 +the:0.5458615085212135 and:0.10532723833034459 The:0.027025064400236228 tho:0.023665112552991866 this:0.019335320887544263 County,:0.018944704014561914 of:0.01842519701586739 a:0.015770738980620858 county,:0.015224763745018126 that:0.012768810807897895 Angeles,:0.01155356694924286 tbe:0.011403619536003723 county.:0.00932009619754861 Elko,:0.00835156115158733 or:0.007733593938764859 every:0.007279711094454517 other:0.0071452260519393644 said:0.0070688449641858496 any:0.006280820209600275 :0.12051450065037594 +and:0.19140176427359534 of:0.05051004892987653 in:0.022593964117615658 was:0.021039819666383772 to:0.020339652176452228 not:0.018407829059624195 the:0.01494880102224024 for:0.014705635176194224 will:0.014285124351133405 at:0.014240476199292118 that:0.013046254043751718 or:0.012864398349151748 her:0.011350393644598852 but:0.011227110250342783 is:0.008810033638762526 as:0.008497205462591768 so:0.007800941047030314 were:0.0068786094549502215 :0.006577344945248864 :0.5294745941911635 +there:0.26331580452448583 There:0.1896667040323326 It:0.10537903391597335 it:0.10357474490058549 which:0.04016119537313015 This:0.03741232613259072 that:0.03632602473675084 this:0.025795230652104557 he:0.018330403911004295 who:0.018126577096680332 and:0.012887416922525962 He:0.012324691204938969 That:0.01229400182355845 what:0.01048225345069308 Here:0.009765234024698753 "There:0.00530414648789588 as:0.004586488098298707 she:0.0043050969146938 What:0.004073145401913338 :0.08488948039514489 +they:0.18044363444667172 who:0.11715407108968813 which:0.057707541559322964 and:0.05706008612420917 we:0.05156412822494206 They:0.0476003968767057 men:0.04150593589151812 that:0.021719676496564477 it:0.01985972478045235 there:0.015976083685922546 We:0.015185874116197703 them:0.012916316116615173 I:0.010502133250703549 you:0.010250412833277824 he:0.009683511495038774 people:0.009474292627778635 as:0.009142424616210551 but:0.008220976100107339 others:0.007897755743013657 :0.2951350239250595 +the:0.30657940174364184 of:0.12477862218500448 and:0.08560179107031338 his:0.07872123931578885 to:0.037747613727594415 their:0.032830746085090366 by:0.03066352300157556 a:0.019071494733896778 in:0.01893911948700781 my:0.018778485137810715 The:0.018130786572130093 her:0.016254192373405106 for:0.015354138410322283 our:0.01535074500840002 tho:0.013559225705511444 at:0.011622802070320662 its:0.01161732776682696 white:0.011365392103039489 your:0.00976255601471331 :0.12227079748760643 +we:0.18524498213346846 I:0.12744223446855307 he:0.11776098580324774 they:0.09075252230334162 you:0.06468378639108657 We:0.052939585067122104 who:0.03886303861271469 it:0.03737598071229586 and:0.025547433321134388 which:0.0250383584402508 she:0.02404710584176445 He:0.01829658088386023 It:0.01747036876490622 You:0.0170574073688271 that:0.014214286466640616 one:0.013130531123311057 man:0.012364748851017461 They:0.011525500221920039 wo:0.009441301039976115 :0.09580326218456142 +it:0.16558174341344517 It:0.07846395477223078 there:0.068926656508768 they:0.05354081626270712 that:0.04867727640265432 which:0.04505196720686623 he:0.0439264118286433 and:0.04292049757801078 I:0.03259451855648658 we:0.022714282810773655 you:0.017312799630666443 There:0.014753102337007622 she:0.012061733113950288 who:0.011822775785340672 what:0.010328641715673107 law:0.009760151038589949 States:0.009676543902658263 man:0.009568256342280966 men:0.009031003643309513 :0.29228686714993724 +made:0.0999812034390529 and:0.06680208263369662 caused:0.02435411478715239 shown:0.02379785223577525 up:0.023253655008919294 ed:0.02312002180398423 out:0.022293807888227747 taken:0.021988971765594088 done:0.02128782706813444 given:0.020283609421760777 paid:0.017098570970207227 owned:0.01708227903067019 that:0.01698438626809451 or:0.016145946252097726 him:0.015808363688274 followed:0.015366441255538056 appointed:0.015126279845513936 held:0.013990473525433292 approved:0.013949758860964168 :0.5102843542509091 +June:0.046745212176371106 No.:0.038021047840748425 July:0.030153081902959657 May:0.029323789188077633 April:0.02691116224515085 March:0.024528693265068013 lot:0.02428543449449637 Section:0.021237851586164706 .:0.01964513028670026 at:0.018033448279503407 and:0.01643577040463759 of:0.015949111679250928 October:0.015343379171460026 block:0.012505391835861294 August:0.010321107716269986 de:0.01015051681191681 to:0.010044273988011745 February:0.010038485434033337 Feb.:0.009959405450094888 :0.609367706243223 +State:0.05038196185471956 number:0.046754416525367465 line:0.04576104635696256 day:0.03829044753035063 state:0.03455924455890855 city:0.032558149691985304 board:0.03166726529797299 side:0.026635183884178796 county:0.025459905881960405 out:0.023373553394155082 point:0.020394018632635187 County:0.019727332909440048 City:0.018595410615306864 corner:0.01856997938791467 part:0.017610206156886053 quarter:0.016669126763169163 deed:0.01609549582694115 power:0.015489810063292255 acres:0.014124007602966641 :0.48628343706488664 +and:0.062130046958630766 him:0.04826661024254473 want:0.04553366651097016 able:0.041695045206483844 is:0.03771226571367157 enough:0.03649423108236219 have:0.03384494408444413 me:0.03191512189763554 necessary:0.02924435678580023 not:0.02891928579168823 had:0.028778423427743643 was:0.028605473905719287 wish:0.028115364668226183 time:0.026545055490378888 as:0.02591596094868502 needless:0.025356658901102565 order:0.025277091069883694 them:0.023257418664843935 fail:0.023176692094579742 :0.36821628655460564 +the:0.21593099183327388 a:0.10282783840529128 and:0.05546251634693341 of:0.049908008939654955 The:0.034144819617610095 to:0.01890424009578699 A:0.01806636603688402 by:0.016304538629762676 an:0.01625920524645007 with:0.015619498401322958 tho:0.015018854262803359 .:0.014085748728694666 Mr.:0.011883805157446142 :0.011329400934979597 in:0.010668547000055055 that:0.009770533980793843 at:0.00885875262659932 his:0.008791761965295821 tbe:0.008342194248652408 :0.3568223775417095 +of:0.12266598490211168 and:0.062413274659644344 :0.025819497666840965 in:0.018679723292216413 is:0.015456198199608607 the:0.013648644731125094 county,:0.013319755020167278 West:0.010557264754443345 by:0.010327065612887957 It:0.010101697118601663 or:0.009257232093199692 New:0.00907662279714883 described:0.008758830889746758 it:0.008069493981744382 land,:0.0078715442962122 that:0.0076396715130846405 are:0.00763889954662373 :0.007371325457443089 was:0.007294081384841077 :0.6230331920823082 +of:0.09129790931378902 the:0.07369883040827747 and:0.047842263382354346 in:0.04189055351593407 to:0.04045875475680249 a:0.03542341257202578 be:0.02020462051672066 for:0.01979292654746225 was:0.01760256398103379 at:0.017380150555488715 is:0.014984483003968216 with:0.014047653760730413 by:0.01374644383819499 :0.012670486581795598 In:0.01200961464556976 or:0.011563835749786333 from:0.011391516893522809 are:0.011273104484969465 that:0.010755276030689069 :0.4809655994608848 +he:0.09542541116792713 and:0.08986723155430022 it:0.08706759737297454 be:0.05334147090750148 It:0.04706405188935162 I:0.04313719652265108 one:0.028897675789652816 who:0.024561899396766868 they:0.023358977107474598 more:0.021148009117147332 that:0.018896792006199797 is:0.01800614679694606 man:0.016663324820838387 she:0.015400735872068548 which:0.014227668905863092 was:0.014057693962480583 men:0.013120792861141827 now:0.012305926379386774 then:0.011885751227642061 :0.3505656463416852 +he:0.16002942479526183 which:0.10903453391868619 it:0.0923165228404148 who:0.07816129968302367 that:0.06454367966274482 It:0.06208592990686408 He:0.05185625532984403 and:0.04661257219589632 she:0.032574056866758856 what:0.02015975937894497 man:0.013340166032709272 as:0.013258875837686855 ho:0.011815571363938128 She:0.010610978118221483 company:0.008469415779688225 lie:0.008445287155521236 time:0.0074417679548067234 there:0.007433834393767207 This:0.007274253054932057 :0.19353581573028925 +to:0.3650174351448972 and:0.09178043640380758 not:0.06915310640473987 will:0.05088201302140392 I:0.030301581298478358 would:0.029963993704790554 they:0.028895909348696267 may:0.021729601167256744 we:0.02057481224839311 the:0.017286747305785017 can:0.01648697695444191 of:0.016083108251152296 a:0.01324129694527179 who:0.011514095003501382 should:0.010981990016119918 he:0.008954570298149016 or:0.008548370230175462 shall:0.008347910912633788 all:0.007859602276100608 :0.17139644306420523 +and:0.08295272564971559 as:0.0480028511125283 him:0.031711744329724706 time:0.026558340692154122 right:0.025357225142328996 up:0.02510662520148247 way:0.024931815985439428 went:0.024859989475761797 them:0.024281863909044295 order:0.024109255827975247 according:0.02308245894519813 go:0.02235733521321095 made:0.02073261521995766 subject:0.019740495263740384 is:0.018384384332925927 out:0.017778053104066365 back:0.017150601116262286 necessary:0.016963864862107703 regard:0.016825416006445066 :0.48811233860993053 +as:0.17064217335447082 and:0.12677536551073781 to:0.061984216651566525 of:0.04648423377145484 with:0.042682515181191635 for:0.04096012967952653 by:0.03989184627621419 than:0.03485708305748498 that:0.033371127689136984 was:0.026968089532046595 is:0.026090533449790065 be:0.018723509156236513 or:0.0162999286886108 give:0.015884227980722858 tell:0.01546769254977324 upon:0.015452838273471102 but:0.01429010009197282 get:0.011528797399666306 about:0.01090466686066761 :0.2297409248452578 +the:0.12919416280914908 and:0.12522949978081982 a:0.12113436560242002 it:0.04499378230512114 is:0.03774002554835099 It:0.03466126638172787 he:0.03218612551311587 was:0.027436184409559042 be:0.026993208275005055 or:0.025332902601137977 The:0.02473820886776336 to:0.024351972809215687 I:0.021090046634908627 are:0.01643332828584815 that:0.01612686322491684 which:0.015554072740722232 still:0.014606189801925119 He:0.014304247532564401 who:0.012558577605828005 :0.23433496926990072 +to:0.2298933985427852 will:0.22915129993976044 may:0.08858144316689295 should:0.08365483538970553 would:0.0706847439850751 shall:0.060782999835396694 can:0.042735447739641406 must:0.04254608899167787 not:0.0341411645555034 could:0.02755168303339104 might:0.014590516367160833 cannot:0.012529680663754887 and:0.008559965477794551 it:0.0041812431109269155 also:0.003624710374146508 never:0.00281444769453033 soon:0.0028010019341199043 that:0.002332747224764159 then:0.0022895016095983156 :0.03555308036337394 +that:0.2256871171032036 and:0.19930488239513336 but:0.06745262964340179 as:0.05886427158600607 if:0.04859859981457123 which:0.03447126660995012 If:0.03112853201235846 where:0.02904154717202389 But:0.025141909646087177 when:0.021856609683108656 Then:0.013501190972854682 because:0.012561294822002368 while:0.012448622397862952 though:0.010702719797682465 And:0.009497483083679675 yet:0.008791147909762313 then:0.008386756588468817 for:0.008200958550189258 time:0.00793138172843354 :0.16543107848321956 +in:0.11061576530895885 of:0.10620098956877011 to:0.06618353200787762 for:0.05056635685351553 In:0.04293803796683453 by:0.04093275606578555 on:0.03991933206983928 and:0.03775581881333697 that:0.03560662960233002 is:0.029633431499566994 therein,:0.025728141874169844 with:0.020962635967246318 be:0.020269342384731125 have:0.020173924324995936 are:0.01997685311123405 or:0.018186239616089103 had:0.01614586669328153 was:0.015369694147964623 not:0.013846573977900354 :0.2679880781455717 +one:0.07591276261110715 out:0.06051731193170748 part:0.05247657393880051 some:0.03764565803631056 account:0.03732080875142556 any:0.025795501308866122 all:0.022573497570587936 that:0.021706034880474935 tion:0.018820497961324994 time:0.018327338823311803 and:0.017698472540372448 use:0.017101246342976464 much:0.016743309263569286 portion:0.016424352739351607 side:0.015150320706867294 end:0.014971280442338157 cause:0.013657752568417643 because:0.013563549560043006 reason:0.012998228641295377 :0.48959550138085167 +of:0.1666544924698234 by:0.09152437642175187 and:0.08593497808984173 to:0.08432549202620931 that:0.06167809698529074 with:0.028828773488067398 which:0.025370407590775662 :0.020674530350038273 for:0.015878046034772986 when:0.015032960163200073 as:0.014679835302896918 said:0.012111999356831396 Rev.:0.010982922789421045 from:0.010331647400238942 if:0.009257132119514311 but:0.008816964720429827 If:0.008488808460360205 against:0.008436882051086062 in:0.006873219225691734 :0.31311843495375813 +the:0.5352241839186618 an:0.04686557944806606 The:0.04666563419570439 and:0.0429452314643198 a:0.033800732347533745 that:0.02957565106058757 to:0.023682496928645116 any:0.023590852576845144 this:0.02008121185443419 tho:0.019526705961463102 large:0.01813788287442838 of:0.01525586660171408 such:0.014086100464423346 some:0.01287817247134125 great:0.012766813853045816 same:0.010696405611201148 which:0.009624714648415805 good:0.009557289087747547 whole:0.007021845568707634 :0.06701662906271401 +as:0.06931392982974462 according:0.052071562389565784 up:0.0511867300210483 and:0.040371568633051955 went:0.03351644485287816 back:0.032358406609281 regard:0.03073407747799069 feet:0.02852138506231652 down:0.026379903432040268 owing:0.02466642634685871 due:0.023695193974505355 go:0.022910973192184297 reference:0.020802802907016128 came:0.019883741951819873 sent:0.019874244915639484 attention:0.019565955494145405 come:0.01885185084678811 given:0.018792390567602263 it:0.017366961307524745 :0.4281354501879983 +to:0.1521641999260088 of:0.09969572876936764 and:0.0995662681014208 in:0.08354056991949052 with:0.03592509009420666 from:0.029266498140310234 by:0.025858164935433862 are:0.024999530191606403 the:0.02350393580657024 In:0.02231347216686339 was:0.02156970877522528 at:0.021471197449175087 is:0.020052780395852968 all:0.019429585101451638 for:0.017941740593647323 have:0.014681157655502656 were:0.013906374316517216 before:0.012743403138680666 be:0.012395095302218856 :0.24797549922044976 +the:0.5085605430799527 of:0.06780390196832935 and:0.03968421354446139 to:0.03722916914522478 an:0.03624639977990774 tho:0.026416517158959516 The:0.024859060154501022 or:0.023055872868319942 a:0.022868177241123847 for:0.019269710990069265 in:0.01361222602368057 our:0.011892182215718932 this:0.011615383253263329 their:0.010310979026439723 with:0.009684527186591121 tbe:0.00792543885554991 some:0.0068271564259295165 other:0.006477808357798169 by:0.006234167369938675 :0.10842656535424058 +and:0.13613401976395292 the:0.056434660604861554 to:0.051865055782917766 of:0.043459087419951636 that:0.027689186317852114 be:0.021999959632541 in:0.021244588104247123 or:0.021176673099039943 which:0.018890922011131298 he:0.01879096558108093 re-:0.017848853100388494 is:0.01762471153062688 was:0.016997584758117138 for:0.015561960548855665 they:0.01504571663462392 have:0.014135179562033811 not:0.01399011382103202 pro-:0.012822675311361621 I:0.012539639489019441 :0.4447484469263647 +sum:0.03352282876311118 number:0.028116684882597106 line:0.019995206059833036 city:0.01946514558931857 out:0.019275318828420953 day:0.01666865340772654 county:0.014872697538657208 amount:0.013254184849875051 Board:0.01252325449624941 town:0.012449555905674143 side:0.011663975251122375 part:0.011517157473718155 County:0.011460540331966697 state:0.011087331502382173 City:0.010878919191854432 purpose:0.01081028255427907 and:0.010297866493795984 way:0.009848747943663767 name:0.009522170936943183 :0.711769477998811 +of:0.31880361772078364 that:0.0789569846075802 to:0.07879424599541053 in:0.07557006402290381 and:0.0556721584141093 for:0.0496579021095746 by:0.034496625402099204 with:0.024127787702429054 from:0.023224718041935082 on:0.02219326189008905 In:0.020687790588279954 but:0.018354476443676448 at:0.013124995145209456 as:0.01296659954381937 under:0.012580259083046014 If:0.011765298497660713 when:0.011330210095224282 which:0.011031112482951673 all:0.009135317435428772 :0.11652657477778885 +out:0.05462427620847308 put:0.0508023617608973 go:0.04685797788581865 went:0.04408033227771864 enter:0.04240078039090375 taken:0.03743835302765057 brought:0.030643397571686968 take:0.030400711082287507 them:0.030249358125580102 it:0.02932287791568377 come:0.02493300446613078 up:0.024196946845517372 back:0.023694551221793262 him:0.023178901210187827 came:0.022522567455123373 down:0.020721443651600113 entered:0.019802959446963794 divided:0.01803259578612447 get:0.017671810403246512 :0.4074247932666122 +of:0.3346264903137771 on:0.10072785804589911 in:0.07707535766044414 and:0.054785582441995086 to:0.05354036750327018 by:0.05078976599109691 from:0.0362517691777892 for:0.03483347979909425 upon:0.033033170456026134 that:0.02215864438734681 as:0.021796265776406767 with:0.021434166471616407 In:0.019292659461037164 at:0.01877139924993789 or:0.012741041868973796 all:0.009187268274015016 above:0.008613262118400428 ot:0.008020051961909056 which:0.0076933932013405395 :0.07362800583962406 +:0.12081213957564735 it.:0.017764529848432232 them.:0.01462625308764258 .:0.012629893802223922 him.:0.01151707963790416 time.:0.009262175284922385 day.:0.008517373890739062 country.:0.008311195156557821 of:0.007838860194102511 years.:0.007796677215801373 year.:0.007392358205317878 work.:0.0069185854607905954 city.:0.006596835740076848 week.:0.00503584852980612 men.:0.0049572830481463106 life.:0.004903107150510825 up.:0.004863125145155277 way.:0.004776977662171311 morning.:0.004708140761309726 :0.7297715606027417 +out:0.04190956742543696 one:0.03681179109154942 purpose:0.035358857155223515 means:0.0284576488047892 is:0.024237124236551024 all:0.023659232814113976 that:0.023229359336871445 use:0.022991477336384045 number:0.022740745527789104 cost:0.020365090386620783 and:0.01983429313595959 instead:0.01947355251080546 part:0.01866751210129421 some:0.0177967246562879 result:0.01690174503926167 more:0.015738684546072884 necessity:0.015277596014255773 cause:0.014694103590619071 tion:0.014201206832627622 :0.5666536874574863 +the:0.13476476805868978 of:0.10335620763565354 and:0.07298982432450123 a:0.05493260493485237 to:0.03943912225916912 be:0.027111183577981188 was:0.024964516309082224 is:0.021318618791884996 in:0.01997329939240196 or:0.017463858114689805 his:0.016747288852367714 their:0.014456994452191905 been:0.014017672545055988 at:0.013647384018866159 are:0.013377045933421108 an:0.011360803488482838 for:0.011045703440883426 :0.009853875281147081 as:0.009770129219928711 :0.3684090993687488 +and:0.10799541184552887 is:0.03985400072487149 be:0.03706787565211551 served:0.031985297661073726 that:0.03152057215197113 time:0.02792188259079336 was:0.027530800509016996 or:0.02722861640376396 now:0.023718939218851477 are:0.02170577194352965 made:0.021455840389263767 it:0.01906992874817851 him:0.01755804988964881 property:0.01755265059690988 embraced:0.016961873450828616 included:0.01664869571791473 not:0.016361891814034375 office:0.015108403526755246 but:0.015062322935616585 :0.4666911742293333 +the:0.6411995218030657 feet:0.043027456318639204 The:0.030275752245020958 tho:0.02943512723509427 miles:0.0280155778338458 and:0.02421038796266715 said:0.016180799144404092 tbe:0.011517791174041326 of:0.010740696561935222 land:0.008923107948470428 on:0.007912280348781718 far:0.0056765068885728945 as:0.005127969081024988 inches:0.005106503895689976 street:0.005021548919260642 rise:0.004774002597298646 that:0.0038002257827906153 in:0.0036825817205302014 mile:0.0032270128449758727 :0.11114514969389021 +and:0.06723256706723521 of:0.05797784578213101 that:0.03154854019521453 the:0.02317260351768201 by:0.017278331934203642 which:0.014617407692400842 to:0.013459407192997154 it:0.013122753756291471 in:0.011870496295470505 same:0.009491317618510913 with:0.00881961235402442 be:0.008510939997789525 or:0.008506988224347303 for:0.006966614975071721 land:0.006829979006957198 a:0.00640598563497587 at:0.006204599349454731 taken:0.006177510638297707 this:0.0056008869362059645 :0.6752056118307382 +the:0.2990007316058407 of:0.21340673221732112 in:0.04871389682884645 and:0.04652991266730097 to:0.03832203851403456 this:0.02540946239132588 for:0.022927508773692592 The:0.021420740422203568 our:0.0196502252594932 said:0.01865722417569443 tho:0.017943551679775713 In:0.015837529144481544 or:0.015065307256276268 by:0.013425925214091116 his:0.012927929032604327 it:0.011471038566045914 an:0.011230559875735692 tbe:0.011131346604868383 that:0.010896306090236797 :0.1250320336801308 +one:0.1028303141280697 part:0.05963429477052991 out:0.04766456937681193 some:0.031418679026461914 members:0.030764490253327767 side:0.029940657362655835 portion:0.022063658796890564 office:0.020457735219956013 member:0.019726706386316174 end:0.019666887540649894 tion:0.018667441728710307 parts:0.016814747270460957 people:0.014112771422418794 all:0.014072739582212475 any:0.013183573287639892 One:0.013083578354183906 that:0.013024335602903442 account:0.012482348155001894 many:0.012077825070275192 :0.48731264666452345 +of:0.10070608769283206 the:0.08977315241786614 and:0.056723264834917186 to:0.04665389949129709 in:0.040702218588531215 be:0.028966766240175745 a:0.025809764402780558 or:0.025209261706257667 for:0.023877496899798914 is:0.019609443010413858 was:0.01894846311596395 at:0.018731083315582608 as:0.01668374607202523 an:0.015525437030901859 with:0.013288768728182836 that:0.012270422612041665 been:0.011540797021331727 his:0.011449385733140584 are:0.01126409134308181 :0.41126644974287735 +and:0.07494362357779316 bridge:0.0725747899094668 came:0.05004305304868796 up:0.03719261930108528 went:0.03520622776375286 directly:0.030837741226221915 out:0.02958380316225891 go:0.02608284759313926 way:0.025320083440299235 ran:0.02493848509308516 come:0.024720815092523656 back:0.023579116655432754 far:0.023409638996814405 was:0.020961243890915474 run:0.02055707801402421 him:0.020065992577316984 taken:0.01870715990140441 going:0.018169350142689476 running:0.016810537127758176 :0.4052957934853299 +to:0.2948914738643517 will:0.17809021706452616 may:0.07648417568778465 would:0.06655455033872762 should:0.05953860210589187 shall:0.05508814094404864 can:0.04170846784009945 not:0.03606658459362672 must:0.03345631549986693 could:0.02187662037868928 cannot:0.01719227182367342 and:0.013452827020666523 might:0.012309246511533154 it:0.008357907113169454 that:0.005978567333007761 never:0.00353237895853726 also:0.002833188884460194 which:0.002823454317938932 only:0.002322722696578586 :0.06644228702282173 +;:0.03241853077042372 nothing:0.019824337772337906 him,:0.0176601177745415 it,:0.017235328233106563 is:0.014429733948929643 time,:0.014373477850783283 ,:0.010912669452080132 them,:0.009642795138059327 years,:0.008785643992425362 was:0.0081056255159866 anything:0.007583903967389607 day,:0.006483560410208077 man,:0.006250736189494739 and:0.006051238389163444 ago,:0.005675777244951961 to:0.005653308938052778 first,:0.005365334676351479 here,:0.005307339515028517 year,:0.00524920029697973 :0.7919913399237056 +the:0.2282118867800154 a:0.14442386043462313 his:0.11149963656665193 of:0.07055622757938129 and:0.0482846838308403 her:0.03936656639390453 their:0.030502538672184925 my:0.028224663644160562 this:0.026814214603579654 to:0.026182638883700912 our:0.023385369886669092 its:0.016825613133242854 The:0.015299975293344148 in:0.012942185232443625 your:0.011845642324221696 an:0.0108770064643517 Mr.:0.010798437702723988 tho:0.010084594126978944 or:0.0077387055285640955 :0.12513555291841724 +It:0.2157974376552764 it:0.08716490061412127 there:0.08708762376497117 which:0.07080998060388073 that:0.06724855314599182 This:0.0357387104366194 There:0.035028991801785314 this:0.030873194039396604 That:0.02421082656801608 he:0.02209337927702143 and:0.020021254591014764 who:0.018894910621297008 what:0.011632725258921566 He:0.010022039085391845 one:0.00822724318102611 as:0.00685654404215466 other:0.005982545343238173 :0.005898850838693133 result:0.005709674051301008 :0.2297006150798815 +and:0.11330996338505848 in:0.047955888554760795 the:0.04023538995289735 .:0.037928354363605504 of:0.03182998073549875 by:0.028735244343410276 Book:0.028716329204571612 In:0.02119574580959791 book:0.017027679217749527 No.:0.01697346071053756 :0.016866035478750274 from:0.01680989325993911 or:0.016103883970630405 1,:0.013744024768819014 at:0.013635696778304564 section:0.011341686998908942 West:0.010156114137043435 By:0.009347713056254649 as:0.009204562625266694 :0.49788235264839514 +the:0.12575338792580568 a:0.07676611790729743 of:0.07440542505182596 to:0.06141326285834753 and:0.03868596969454163 in:0.037887592028462404 an:0.027427947895103548 on:0.025413544273022448 from:0.021900046433821894 at:0.020959558035651624 for:0.015074484756544382 that:0.014226533722430797 by:0.013539530438436954 was:0.012400305344175635 with:0.012222122132952177 his:0.011514048269478192 :0.011399099368285398 The:0.010786573098219742 In:0.01071151332687106 :0.37651293743872555 +said:0.5471265855219357 such:0.06112978779257067 the:0.05191848331766794 a:0.046103057697858815 certain:0.027336254792811442 to:0.02100675426023546 his:0.01978662480181169 of:0.01966701904487878 and:0.015088816012226173 this:0.01449091467343724 their:0.009216583590699158 any:0.0071777616033340454 our:0.0062963788876405 your:0.005297079622201766 her:0.004584427829806327 prior:0.004448746039135158 by:0.004322195855319772 first:0.0041843104046051715 that:0.0039585779400938765 :0.12585964031173028 +of:0.5194694586760311 in:0.1330051001477447 to:0.06851432888974311 by:0.0550349750629288 In:0.02878169727629539 from:0.024254562818901995 that:0.023947275467146364 for:0.0208712368580367 and:0.02014793498328324 with:0.012527167863237659 on:0.009063621849989515 at:0.007949625624273258 into:0.007715055802641988 which:0.006610948246463611 ot:0.006473742536331837 throughout:0.006333274786906171 between:0.0060025462560295145 upon:0.005525803780418543 as:0.004602943667776204 :0.03216869940582036 +in:0.3015718315535385 of:0.18533212126265033 In:0.15728971925683394 to:0.08142272396819299 from:0.04198232533073928 by:0.02340732447552252 and:0.020816999842455598 at:0.01955198691070766 the:0.01754968846819828 with:0.015649465281510216 for:0.01497589494700828 on:0.011881427417829224 near:0.008262674283732509 into:0.007128595311565601 iu:0.007005411790484543 :0.006629599547436946 between:0.005077773037344828 New:0.004970731980118155 ot:0.004814799810136504 :0.06367890552399409 +and:0.18627770671734603 annum,:0.11625720436693442 be:0.111354863859139 are:0.03459207729208631 sale,:0.02870165851337274 was:0.021522215476730135 is:0.02064240300683357 annum:0.02035910428223022 interest:0.01831111818392661 were:0.015094378690312965 Installments,:0.013192638793289085 or:0.013013885968656545 of:0.012878941173333604 each,:0.012753749579611975 as:0.012440351559871726 sum:0.012093965127243358 dollars,:0.011057204250540747 made:0.009973410188698068 been:0.009866138736498947 :0.31861698423334395 +the:0.15744913570682972 and:0.07144855466524068 of:0.05061498971873122 I:0.03705614246685397 a:0.036843657082697955 that:0.02695617538361329 The:0.026017050523486577 in:0.023882394928901405 to:0.018460793157644855 this:0.016795272235821442 it:0.015131780105771297 his:0.013975255744869103 not:0.013971624900154408 is:0.012365893245925996 :0.012260658838916022 as:0.01224171224586484 but:0.012122754977231925 he:0.011970086359354577 would:0.01114623292577874 :0.418289834786312 +the:0.4583529189532284 and:0.1463890385867331 a:0.03891547733935174 The:0.03796188046666111 tho:0.024884555534447492 or:0.024754290920769983 of:0.024110236808567432 with:0.01200232692681767 in:0.011845966487167027 other:0.011667613356021355 for:0.01058213616651624 by:0.010152589361236215 all:0.009606349165456763 tbe:0.009605322357078377 various:0.006912700133422304 said:0.005575926110724196 large:0.00557408359429272 two:0.005410646169950321 that:0.0050020160593616265 :0.13969392550219592 +and:0.10004632507557551 as:0.051535437777971725 right:0.04099832394723272 able:0.03867665190936563 is:0.037278445314980625 necessary:0.037220590658850757 order:0.03605585452984157 him:0.034020267155497386 them:0.027482902646702244 time:0.02693295286150342 enough:0.025530120555168234 entitled:0.023411006327260855 it:0.02237360526499012 made:0.021204821889969618 was:0.020883420570764318 used:0.020201872807814124 way:0.020091206428582427 going:0.01821027504711383 power:0.01814059509598975 :0.3787053241348251 +of:0.13269598987756875 to:0.10750610406169675 is:0.07728938411169335 in:0.06674946372120663 with:0.06320307101264801 as:0.05843491196932075 and:0.0536823218563209 was:0.04255920339888508 by:0.038296039559434995 for:0.03229423350208203 such:0.03209165166856318 be:0.02601472237144655 at:0.021654617562430152 on:0.021360217514541133 not:0.01769816728894333 make:0.016890669161849087 made:0.01589172360667042 from:0.015249355975900311 In:0.014057510246262393 :0.14538064153253616 +was:0.1300611222533281 be:0.10071957739037422 been:0.09180542043461166 are:0.08465147201043467 is:0.07468510306734316 were:0.061112955813829584 has:0.06027997082715956 and:0.05182518102794202 have:0.04793892388799453 he:0.034260232732579825 had:0.025184901646873478 He:0.02246183096667069 so:0.01897526707352357 being:0.0162416171934697 it:0.014898557386314204 as:0.007794118027393712 Is:0.007621969207195553 It:0.007345837403363618 of:0.006865443228085131 :0.134270498421513 +the:0.2763699873783423 of:0.0764900112039095 a:0.06781723742661651 and:0.06174824508047547 to:0.05879831577479703 The:0.046719437224667815 or:0.03910669900794378 his:0.03426532347390955 not:0.028228961220639098 for:0.019489466370870175 their:0.019122322712920806 at:0.015082031638940323 I:0.012535190635812677 was:0.011932179750737237 be:0.011304381918151482 no:0.011265392853904077 tho:0.011226167812203234 that:0.010432869055629646 by:0.010254741785399712 :0.1768110376741296 +of:0.28767355066866834 to:0.08775711267569858 in:0.08678131196995101 and:0.05160598694501188 on:0.04646139928102899 by:0.04519522654900943 for:0.044547789071328545 with:0.03396756772609607 that:0.033699232901107726 from:0.03075346596941143 at:0.027039283056790858 In:0.021061449543044047 as:0.017514234937992545 all:0.012543839382496166 upon:0.011844431150487573 is:0.00998972746569266 was:0.008814315973987914 into:0.008557199930727406 through:0.007781895704231326 :0.1254109790972375 +miles:0.0688123531957514 and:0.06819848914301688 far:0.06235311520702781 away:0.04047776115342183 feet:0.029605243329347764 them:0.02789968831862204 was:0.026306947579034467 is:0.024927541508120727 him:0.023697824638609064 come:0.02267734615253961 up:0.021895723413161188 came:0.02039892841202049 out:0.01992053448320581 free:0.019149036208713874 taken:0.018597425990212024 received:0.01853831002086075 men:0.01836243235973162 it:0.018361094251040197 or:0.017876894603140597 :0.43094331003242187 +the:0.7427191020760174 The:0.06458177035825821 tho:0.03846021339559985 of:0.023199045932939977 and:0.02051157001579544 our:0.01909563911738404 a:0.014069829411910532 tbe:0.010361276758643564 their:0.007685654108856561 his:0.007431484194173229 an:0.006457524672129406 American:0.0054024838475029945 its:0.0044520006328434445 your:0.004268832826977882 national:0.0035485475692833878 great:0.0029389063912205016 in:0.002923382188767777 to:0.0026793020530138986 this:0.0026162578709682275 :0.015597176577713617 +one:0.1028303141280697 part:0.05963429477052991 out:0.04766456937681193 some:0.031418679026461914 members:0.030764490253327767 side:0.029940657362655835 portion:0.022063658796890564 office:0.020457735219956013 member:0.019726706386316174 end:0.019666887540649894 tion:0.018667441728710307 parts:0.016814747270460957 people:0.014112771422418794 all:0.014072739582212475 any:0.013183573287639892 One:0.013083578354183906 that:0.013024335602903442 account:0.012482348155001894 many:0.012077825070275192 :0.48731264666452345 +of:0.11118349195747337 was:0.09180924246402736 is:0.07301500574146387 and:0.06433677888091949 are:0.03970406718288584 at:0.03314909568369672 were:0.029617918539133727 in:0.028923184066207017 for:0.02486674700998227 or:0.021984035224640396 to:0.019294646444796757 be:0.01786232813607653 by:0.01699086969067915 all:0.016419988921110535 only:0.015729545832485554 with:0.015697851535654478 that:0.014851577194750644 Is:0.013204674702337528 talk:0.012610190743393769 :0.337748760048285 +and:0.09792994943286375 that:0.04377651966496981 I:0.041978008108669605 which:0.039521499276612235 of:0.037381692486157636 the:0.02969244652527591 to:0.01811819865086051 whi:0.016040648106215714 :0.014953289037738357 whic:0.013769921776001044 wi:0.013293904372241167 who:0.01290215388277864 he:0.012653366750503334 for:0.012296197203691493 whit:0.012292743886349548 if:0.0108803181848403 but:0.010767147900063967 or:0.009617309662697675 The:0.009314217871229899 :0.5418204672202394 +to:0.12022893700269083 and:0.09020394424291768 the:0.08587503820055309 of:0.06450042443224316 in:0.0310058468700829 a:0.017742048521183405 :0.015548046036689871 not:0.01491307651316237 that:0.014112408707955496 for:0.013734482372212283 I:0.013065769926808477 will:0.012848502316304782 at:0.012837991177321897 In:0.012628718855091186 by:0.012491091048660757 be:0.011425930130217754 is:0.0113962101007567 he:0.011342727513475473 or:0.01112522537451577 :0.4219735806571561 +the:0.11772829171290487 and:0.0781674885065048 of:0.07167970430110675 to:0.05380593022319147 in:0.04338783981710163 his:0.02915440943526211 be:0.029040680129466177 a:0.026059035354864663 for:0.024832692890857867 was:0.023738743175792113 is:0.022059593269131022 their:0.019752320906839288 he:0.017656238599000715 as:0.016478255872202495 much:0.016066705385182248 that:0.015582232227554463 at:0.012400807465895353 so:0.012133545205562214 her:0.011193135755430506 :0.3580823497661493 +the:0.11919516938815296 of:0.07230453158552728 and:0.05781056740443249 a:0.043018564803886335 to:0.031305092790907506 in:0.020848713353460488 at:0.014270110001066288 .:0.012526810245749479 :0.012413283442322082 for:0.011719122709941797 by:0.010808400946589808 or:0.010404172990115616 The:0.01003576004804544 with:0.009811868184449042 tho:0.009295902015355835 was:0.008924239095331684 that:0.008672304223433876 is:0.0085591147338948 be:0.008335143826716943 :0.5187411282106204 +the:0.3699223148361033 The:0.08807250173538751 of:0.082794304721407 and:0.0372472182551929 in:0.030808931086207303 that:0.02994069498453265 tho:0.02865061971849508 a:0.026315050026100927 this:0.022419509218207484 said:0.02064717061713385 our:0.016042954325718964 his:0.01573369214653838 these:0.01463063607115895 or:0.01427845270979144 their:0.013878417805545702 tbe:0.01243198311925863 In:0.011587934493400714 other:0.010455314560697959 no:0.00973706127944539 :0.14340523828967586 +of:0.09113099954199033 and:0.07691624516810364 in:0.04313410834613554 to:0.03691279055336946 the:0.03647737725088136 at:0.03547131563074336 with:0.034860757361098865 an:0.03286254713355004 be:0.028730752156717 was:0.027322109995463792 a:0.026702222500509798 is:0.023339516191881102 are:0.021414515914001748 for:0.017036690022707506 or:0.016882899526064334 have:0.01521774795660092 as:0.014766438655089734 that:0.014726910685379957 not:0.01463877021075218 :0.39045528519895933 +have:0.09167287763927395 of:0.08776662086418865 and:0.08017563842078003 to:0.06810753583934197 had:0.06256299799350108 has:0.06008182369358717 was:0.05360824323164842 is:0.04595657305138884 be:0.04114784343354243 been:0.03824298828353925 not:0.033390570546853536 are:0.03283567783033348 the:0.032059933991771934 an:0.030512738493334097 so:0.029763746117148358 were:0.022786449883960867 by:0.021716672017542932 they:0.019632513452608562 I:0.018532895410150674 :0.12844565980550376 +and:0.13562958850232856 I:0.12294682049134756 he:0.09673941443959957 who:0.07272839448642016 they:0.03965212540135001 He:0.028514295424797376 we:0.028280478243615684 she:0.024939667952332743 that:0.021473444847263393 which:0.01982001343326481 1:0.019074256969755767 We:0.017738543832811506 it:0.013628328323376473 They:0.011563335766629787 man:0.009789607958661427 was:0.00973079494430092 be:0.008352079135512332 men:0.008196031001470368 but:0.00803549843405398 :0.3021672804111076 +and:0.13337039627562405 a:0.1200557887524483 the:0.11610172684226644 was:0.051587823012749806 be:0.038675908633237575 of:0.03342764120843757 is:0.0326298247277809 are:0.03203051045470409 were:0.029012410535413424 very:0.021065337913600306 been:0.017307719112815957 A:0.0156631138341655 his:0.014837275025027099 or:0.012902686019694938 two:0.01195981586319194 The:0.0099871285964857 for:0.009693496448480885 with:0.009278989698771107 it:0.00906857498513624 :0.28034383205996816 +the:0.24226597779266879 take:0.09206962466570139 an:0.08944808903570385 no:0.08800292872754843 of:0.05537908138113498 this:0.045783074614851274 and:0.03985625575189539 taking:0.032359213363944705 to:0.031088688722581432 good:0.02679216014732287 great:0.0255507913662961 took:0.023399277555455202 its:0.022552161296137394 that:0.02198142072965806 their:0.01877260041684849 his:0.01708402985547699 in:0.015137170118018132 any:0.013155365277487237 not:0.012887068468393777 :0.08543502071287554 +the:0.35181854322130973 a:0.1413755406700435 in:0.07374870072778661 an:0.05859084555973889 of:0.05326236277729812 his:0.04063082889751197 no:0.029704152156576666 The:0.029163721199317892 their:0.024777089386893384 and:0.020330221836611793 In:0.019349475472262106 for:0.01868033609722074 any:0.017197428931500638 my:0.016278321161093685 with:0.013672359974721328 tho:0.013253211972860746 very:0.012888251706025908 most:0.012684005534824362 our:0.011749397414029635 :0.0398452053023723 +:0.08604966654267406 it.:0.02006705969532136 .:0.014630505390374504 them.:0.014152900283837953 him.:0.011500357552065027 time.:0.008771571739983742 country.:0.008651366629312436 day.:0.006931532790097509 years.:0.006396253722492698 of:0.006090799804631617 year.:0.005791365844616118 life.:0.005144538340586428 work.:0.005016370798823999 world.:0.004827107345842588 city.:0.004758975498923665 people.:0.004620821111018409 again.:0.004148706859560638 out.:0.00393474398454598 place.:0.0038947488424802773 :0.773620607222811 +the:0.24412314008632538 of:0.13019443913893564 in:0.12778352798982937 and:0.09783624939313627 a:0.05738366169747752 In:0.053243862781558654 are:0.03156072753040667 to:0.030148841554449142 The:0.02502997257348629 or:0.021577103987399936 is:0.017907993926538107 was:0.014429645331092813 an:0.013740008984762478 no:0.012485908601644153 with:0.010952762612154932 tho:0.010558457351045453 were:0.009249589056337718 for:0.0082974691097198 from:0.008197105948824873 :0.07429953234487482 +the:0.6816937034678703 a:0.08928220675032297 The:0.08223975507566113 tho:0.026803717612583402 and:0.020887479595901048 of:0.010781989513097645 our:0.009404084390172316 tbe:0.007528183374590008 that:0.0064803430110133755 this:0.006242985404075416 al-:0.005427070285347282 in:0.004964698710013066 their:0.00435512983072729 as:0.004092695865930043 its:0.004060114425094064 his:0.0036992837654408347 Tho:0.0025294991717787776 very:0.0025248933517040537 any:0.002433543398596628 :0.023568623000080353 +and:0.06036649376945979 together:0.05288633770202577 covered:0.043493447294162664 one:0.04077793008980824 thence:0.024583917979868235 up:0.023607792015698834 along:0.017763522149829243 filled:0.01775064388202161 charged:0.016977000118452684 week:0.016893940483943364 down:0.013807930747123066 that:0.012651079181069865 him:0.01223645030917993 it:0.011861347679949582 complied:0.011586390603931674 them:0.011382108215358082 connection:0.011297094771065445 war:0.010999868302401012 connected:0.01044914348879397 :0.5776275612158569 +is:0.16885512799854321 was:0.11256193051376649 the:0.09050915211059526 and:0.0758786112260525 in:0.06365388262653268 of:0.052391954658008354 are:0.03660029040089997 a:0.033923447537974175 it:0.03358143680042101 be:0.03310602449458696 by:0.0290862713568742 no:0.026842559461816035 Is:0.024666737643364037 were:0.02156103453238568 or:0.021049384294695623 had:0.019675420849238758 without:0.01958339523324805 from:0.019492726830202218 their:0.018487435393426125 :0.09749317603736865 +the:0.09543679376433843 and:0.0819206207974566 be:0.0771566979802922 was:0.07267115872662477 have:0.06653723776752814 has:0.05769819675455972 been:0.05581624340721704 he:0.05105066279946463 I:0.04900128733864918 had:0.048576299827485785 were:0.045102849095757194 are:0.028059719284923953 is:0.025760628985846874 of:0.02167628794840488 his:0.016088828184813376 a:0.015368917886053294 He:0.014137501827331067 an:0.012903859724247048 1:0.012319796154226749 :0.15171641174477904 +hundred:0.013633628820093018 ;:0.011172311961148602 him:0.009807052834026905 one:0.00914669734384353 feet:0.0090219372983598 up:0.00838318558829166 mile:0.007527126877816727 feet,:0.0071805242500254255 time:0.006879602834379732 man:0.006817451499927337 it:0.006300585667639516 it,:0.005903705234588485 out:0.005451849962934835 :0.00538718305729827 ,:0.005295204710281874 and:0.005240008239108335 here:0.004938150073064577 water:0.004837308913464981 them:0.004796443021708541 :0.8612800418119979 +to:0.3383974684821687 will:0.20451170537077293 would:0.08560373625855966 shall:0.06448897013776293 may:0.055477937918228026 not:0.052952442993827925 should:0.04975787911262156 must:0.03295485021150135 can:0.01883908011985644 could:0.011807722901743251 and:0.010348222171501928 might:0.008990565846238195 cannot:0.006737754947076162 it:0.003406894348346456 also:0.0030875741690492885 then:0.0029389353467913415 never:0.002853421441492082 that:0.0026070643817829955 soon:0.0025542753742789645 :0.04068349846639983 +the:0.1695803830447335 and:0.1632784812013167 he:0.06587046352589622 had:0.05336510327538357 He:0.041036519755790826 have:0.0394490933294081 I:0.03656680986867118 has:0.03324675034576159 who:0.031091947359462434 was:0.029715892050745856 The:0.02444438782136318 to:0.022514168680061432 they:0.02194236619794519 we:0.018926518096068785 of:0.016387763919963046 she:0.016069556048416995 be:0.015094648312014437 were:0.014263181429624865 We:0.01379534909564338 :0.17236061664172875 +the:0.11919516938815296 of:0.07230453158552728 and:0.05781056740443249 a:0.043018564803886335 to:0.031305092790907506 in:0.020848713353460488 at:0.014270110001066288 .:0.012526810245749479 :0.012413283442322082 for:0.011719122709941797 by:0.010808400946589808 or:0.010404172990115616 The:0.01003576004804544 with:0.009811868184449042 tho:0.009295902015355835 was:0.008924239095331684 that:0.008672304223433876 is:0.0085591147338948 be:0.008335143826716943 :0.5187411282106204 +the:0.2575826664848346 of:0.08498396749783788 other:0.03803862948897963 and:0.03594355848199834 this:0.03460897823650158 for:0.03430402722721558 in:0.030698429154167792 any:0.02982921240027943 that:0.027240467491153393 such:0.024116870554344656 these:0.022905350299655295 their:0.017015448002642274 tho:0.012998470284925978 The:0.012680218503898317 all:0.012610212456035086 our:0.012422906431390114 In:0.012283835919612941 two:0.011967733250042053 many:0.011703566841704536 :0.27506545099278057 +the:0.7373155740370749 an:0.04250512920933323 and:0.04059075868140123 The:0.0380463803468174 tho:0.020158653353286333 of:0.011811800866863006 tbe:0.008256822391770665 in:0.004609736335549798 equal:0.004283190260404886 a:0.0041798107071405926 to:0.0040866239765142845 great:0.00400214850566477 any:0.0034853804791708507 that:0.0031768300327753665 as:0.0029989089013894815 with:0.002845929976977154 most:0.0027520491932479687 this:0.0026366208781177162 other:0.0026121536508517907 :0.05864549821564855 +that:0.16832451653748762 and:0.16317551195275604 but:0.09202228048090219 as:0.06626898981545905 which:0.05056182452516285 if:0.034268175887251145 when:0.0327999336955599 where:0.02391654490512962 But:0.021638226096886436 because:0.020516735853829505 of:0.017875962661562897 And:0.017367123587138943 for:0.01715484095146282 If:0.016077584172624653 what:0.011042818726600803 though:0.010176208114312196 until:0.009969674033922531 while:0.008769541776912644 think:0.008148981878890557 :0.20892452434614764 +one:0.0366779532488308 day:0.023923245623917507 on:0.015819883571862283 in:0.015407752536025426 person:0.012980090535246474 and:0.0116016053758178 man:0.011279836394838271 two:0.011246489326900993 year:0.010869681548879994 more:0.010159547624232618 belonging:0.008986968905800226 action:0.00876948620992644 mortgage:0.008765756537860294 week:0.008743385777551274 ;:0.007620936287837351 office:0.0075615428736784335 for:0.007376975011019176 lot:0.007034272870601359 of:0.006879087424473944 :0.7672955023146993 +the:0.48233767183038145 of:0.0698739203126106 a:0.05920045683226804 by:0.046343864978836 The:0.03028995026583638 tho:0.025656672194835112 in:0.023146455856037265 first:0.01959640863139344 and:0.016072961772325742 to:0.014756463186718579 tbe:0.012525798390878681 this:0.012412727034253179 that:0.009333982087582774 on:0.008435938145054115 with:0.007994140885709057 every:0.007397821722784616 any:0.006677559060680015 or:0.006583519323810447 last:0.006260328171360288 :0.13410335931664427 +the:0.10442087431339736 and:0.06939931179057497 of:0.059572203373200204 to:0.053395145484619676 a:0.0486301317746673 be:0.02495829126582574 is:0.02176810608490287 in:0.021387948844742682 was:0.021133420387223628 at:0.016201961358633225 it:0.014708045421280487 I:0.014013289124653647 or:0.013113755083441998 .:0.012431333144635159 for:0.012232343553272098 he:0.011657353848976844 :0.010801417707194536 not:0.01066798961461849 that:0.010348695280748398 :0.4481583825433907 +of:0.4372031142752709 in:0.11949452405262832 to:0.06625026431753409 that:0.0430020248670359 by:0.024670546907003474 with:0.024428079121141658 for:0.023179315775933074 and:0.022341786329177 In:0.02126156088974319 from:0.016899695356529947 all:0.016375403889351377 on:0.014744866189567765 upon:0.01314429269673457 as:0.012119654525543228 over:0.011861559136926873 which:0.01027960536421473 into:0.008338978286893903 than:0.0075411639983229825 up:0.00710395820815979 :0.09875960581228721 +the:0.6666546582197683 The:0.10763804089060225 a:0.0905467690270327 tho:0.03925860017163324 and:0.0133194681885356 tbe:0.011472952911241724 in:0.007921307566167353 Tho:0.0049537690026692045 of:0.0030373972331248986 Tbe:0.0029090866240592925 A:0.002691248016394883 this:0.0026806354842191164 In:0.002538225274803864 an:0.0023892097221547763 on:0.0022051484811453008 his:0.0021981355602818703 "The:0.002023828148662602 its:0.001996537322146131 tlie:0.0019718302248034536 :0.030593151930553474 +the:0.7855508602441817 tho:0.040750628069386945 a:0.027913467704427233 The:0.026771966114969913 tbe:0.019096616031836232 his:0.018704782296290384 and:0.01118037324271501 in:0.007355629019198629 its:0.006324647879804864 their:0.006001039316065545 our:0.005026873242887015 this:0.004935383921918341 her:0.0044821661041221615 of:0.0034215199600970488 great:0.0033335149437712366 or:0.0032587997585103367 your:0.003206328300011617 full:0.0031894340523594346 tlie:0.0031292920969350885 :0.015366677700511224 +the:0.5008588842390642 a:0.21537256308647423 The:0.030468220650533628 tho:0.02364989542483939 and:0.022427331277744673 of:0.013224594496210775 any:0.012054202493365009 great:0.011386427066000826 every:0.010968674312183749 as:0.009729625438985976 other:0.009676401373682354 or:0.00959920413623721 no:0.00940599546523255 one:0.008247487996414928 an:0.008131358810498543 tbe:0.007634218625398608 this:0.00691908018081155 most:0.006712941093306476 very:0.006372210458044845 :0.07616068337497042 +is:0.15256295275374757 and:0.14776531902872114 not:0.05825528239549556 as:0.052316788239980844 be:0.04582206284096002 was:0.045442513889427626 it:0.04468975748472191 are:0.03794078090305431 Is:0.031728293640495814 would:0.030266731488557682 but:0.025046975330405712 will:0.024184886663058378 have:0.024052194685455046 he:0.023512042511125462 how:0.02342164281166332 I:0.023383853393926044 It:0.020794533810809496 can:0.019112744291326242 they:0.017879883464803067 :0.15082076037226477 +of:0.22334134976953565 at:0.16694684214362498 to:0.12660874859957127 in:0.05664116202881999 on:0.043795738719217714 from:0.04213947137767433 and:0.03859127252331071 that:0.036527677935904404 by:0.03388829065394531 for:0.029774226318937176 all:0.021474631138777237 with:0.019537788555896714 about:0.015560373434790102 under:0.014339344698306259 In:0.014180713592352514 At:0.014159658983234437 upon:0.010225213924690361 over:0.00950098809327857 when:0.009098627311944323 :0.07266788019618793 +in:0.16521611244786116 of:0.11786614235297437 the:0.08488303544857445 In:0.0501997408972461 to:0.04791681948756195 a:0.04781299703252445 for:0.041538436330466055 and:0.03603218839797969 from:0.021598513194730995 that:0.0174797989417121 on:0.0158522075564565 at:0.0156885421897657 by:0.015148818386764297 or:0.013185250522402324 was:0.01225476088952794 his:0.01061989062644454 is:0.009630539041527936 with:0.009433926208006812 are:0.009225568986492547 :0.2574167110609801 +and:0.07359963406644195 be:0.052667135004264946 to:0.04483536256874564 of:0.043448293679263235 the:0.03579172892628988 in:0.028005289969665195 was:0.026700397492138477 is:0.024892551934152005 re-:0.024162182625676702 he:0.024086629517294657 are:0.02098604388819216 from:0.020307931541148256 a:0.018606881911690538 or:0.018077853608073062 for:0.017195224169077532 been:0.01615904189338184 I:0.015254891559368164 :0.015184018660626356 which:0.015016145996292442 :0.464022760988217 +the:0.13719350867666488 and:0.0802390087002319 of:0.05262863071935662 in:0.040598665900038744 to:0.02864674616871877 for:0.027714307852499304 that:0.027264234510365297 or:0.022252847987919575 be-:0.021388571591443972 In:0.01605785670858949 as:0.015639519903610108 which:0.014706396246887302 any:0.014623615797131041 re-:0.013191711555669271 be:0.01309650349474952 he:0.013009134984926788 their:0.012745332384913556 a:0.01139011960642838 was:0.011007382519291562 :0.4256059046905639 +the:0.08049856775151801 of:0.0762824838185457 to:0.048865061238393175 and:0.047798654586933935 in:0.022406174421371123 was:0.022254403632174367 :0.020965523123666136 be:0.018679548425089502 a:0.013501255982810347 is:0.013496507834303825 for:0.013247907572081784 Mr.:0.01267224516829002 or:0.012579689492456086 were:0.012552082091401651 are:0.012104263547520032 Mrs.:0.011901169336628882 .:0.011019490847501473 he:0.010233805149845081 on:0.010147398272247954 :0.5277937677072209 +and:0.26006001036362375 be:0.04889263722155751 who:0.043032787095073334 he:0.03889329487698801 I:0.031087440728481158 was:0.02879135284431563 an:0.024029048903188178 now:0.023062788059762813 the:0.020909656017900822 not:0.02039067177359236 as:0.020102396656914805 is:0.019920296876530224 to:0.018967661134629225 that:0.018878737165212028 which:0.017563600782135633 dis-:0.01705469194868006 are:0.016931284713650286 been:0.016872794636940722 or:0.014895833678210192 :0.2986630145226133 +the:0.14152980316786065 a:0.07679396640805443 of:0.07247547196952539 to:0.04945994866093479 and:0.04683413362008368 in:0.03950109136140753 at:0.0306254444536005 on:0.018989866130214125 his:0.017723373264896185 from:0.016219233799556143 with:0.014293997972815557 by:0.014278170567719819 that:0.012568808616224966 :0.012363532201772423 be:0.011946693974737741 In:0.01109567902265862 for:0.011087659114381542 was:0.010739112822093798 an:0.009452636771022203 :0.3810213761004399 +and:0.10172420155740118 Committee:0.055099892687173 committee:0.051703776220398734 that:0.03558446183562077 was:0.025257441406125063 or:0.024346965655580866 fronting:0.01787137565553888 land:0.017289447059234558 interest:0.01697055263017386 place:0.01586443713345519 placed:0.015850604788648984 put:0.015501885825162414 men:0.015257705771610753 feet:0.014538453239095639 north:0.013882780381726122 work:0.01370426894850394 were:0.01340343663239496 out:0.012867536594395311 going:0.01283131466534379 :0.509449461312416 +of:0.13273396182066366 the:0.09995279131319948 and:0.04956956748776275 to:0.0427498286257595 in:0.026972953655792668 on:0.023479667929504816 a:0.02096651930228125 said:0.01875026205820728 :0.018137077332940815 by:0.018049033719063252 for:0.016830639427538163 his:0.01657184174813554 .:0.013942739182100018 from:0.011320393484581338 be:0.011246354201845497 at:0.0112006426314589 be-:0.011071161843966714 Mrs.:0.009606373490665654 their:0.009554935408652798 :0.43629325533587987 +they:0.10940264097319059 we:0.10875478183439752 it:0.08801667582664431 I:0.08319490759983035 he:0.06991564275503222 you:0.06261106268114248 and:0.055008223935429895 It:0.04803507781835867 which:0.03899967057805944 that:0.036523091012085146 who:0.03222014458893405 We:0.029244601249569582 she:0.017825873354883854 They:0.015976450870484358 there:0.013590262777532131 You:0.011751132395835922 man:0.011170908065158686 one:0.010753453551040574 people:0.009892195110755937 :0.14611320302163427 +the:0.21553534509093536 of:0.08554611125012115 a:0.07313508638926251 and:0.06776975174068571 to:0.041790722794781805 The:0.0277962358526401 in:0.026150221535370808 Mr.:0.02105981365625366 tho:0.016493193424420228 an:0.015915404413113794 .:0.015883388334739033 by:0.01532022928480814 or:0.012316823574718869 for:0.01221924818731755 at:0.012148331053453103 that:0.011357338989203351 :0.011220654924449942 said:0.0085460317173424 no:0.008340444745986832 :0.3004556230403956 +the:0.36116580384168034 of:0.0962612278995089 and:0.06707798902474961 a:0.04860296531897597 The:0.04603415732522198 to:0.04086490951655276 in:0.028526480566213628 his:0.02468444410371897 tho:0.02371756191020311 for:0.02316341635243177 their:0.019083613319203305 or:0.017970681821216312 some:0.013441197843938569 many:0.012623362017515172 our:0.011987266161769199 that:0.011788254053662928 was:0.011665061075663802 In:0.011498846246867367 tbe:0.011200987080982154 :0.11764177451992415 +and:0.16571631333098363 is:0.126596890643723 was:0.08129621535630197 so:0.07714096045920395 but:0.05208765853701239 be:0.047454468119898 has:0.03752929671434913 are:0.03704530086899645 not:0.0351713018611688 as:0.03224394208412795 had:0.02787748333963817 he:0.025818184035646133 have:0.024539502559089033 it:0.024353881510961024 were:0.02209378581740884 that:0.019872686015528846 been:0.018794591496367405 He:0.01749418945154389 more:0.017134213296316255 :0.10873913450173511 +of:0.2474981742310926 to:0.1248109146808623 and:0.0638393486855705 for:0.04950754604284347 with:0.04572141944610756 is:0.030254176870058533 in:0.030069753121597504 as:0.02911386647780107 on:0.024637050800443948 make:0.024443639566795492 was:0.022564695075190305 are:0.021875365549268777 be:0.021140119595267442 by:0.019463325235747182 under:0.016378455725520453 that:0.016094066344479574 from:0.015905745001281297 at:0.014491917062122096 have:0.014111680609239466 :0.16707873987871044 +the:0.12285296094004503 of:0.09817851333752219 and:0.06592713213355123 to:0.04951419258787356 was:0.04418146059484458 a:0.038107061866298836 be:0.03381349245443766 in:0.03359448275853669 is:0.028478288952295754 at:0.023474326416834054 for:0.016699924134405294 his:0.014326395251805632 or:0.014153776705098658 been:0.014056104888894281 not:0.013109242053401433 their:0.012637453412934655 In:0.0119303395497276 are:0.010136045963321282 were:0.009961306282732157 :0.34386749971543945 +to:0.20827405662175968 of:0.17729603789587342 with:0.10053377488148892 for:0.09605013632740383 by:0.04867468877395514 upon:0.04379844573865567 between:0.038363447659269564 among:0.03648929720381692 against:0.030047736975116725 from:0.02865681193438972 in:0.02667119896794084 on:0.017257576926735907 around:0.015095655518480001 and:0.015056124849689878 about:0.013942610428220072 behind:0.010703115915738408 over:0.010617150032352122 before:0.009734282026799998 see:0.009515051801463666 :0.06222279952084954 +of:0.23418024533207907 in:0.14591447567824714 at:0.04248418808840467 for:0.04043768636826628 and:0.0381331893966772 In:0.037643114418553156 that:0.03342565276012521 to:0.033169840045107916 on:0.02807953311914925 with:0.022781667313635116 the:0.015719153749921982 by:0.013652259059752639 from:0.012010589350986913 under:0.009953254572706639 or:0.007303460892331645 do:0.006930718620266438 is:0.006709423339172304 .:0.0061913785364252375 as:0.006143840898114838 :0.25813632846007634 +of:0.28767355066866834 to:0.08775711267569858 in:0.08678131196995101 and:0.05160598694501188 on:0.04646139928102899 by:0.04519522654900943 for:0.044547789071328545 with:0.03396756772609607 that:0.033699232901107726 from:0.03075346596941143 at:0.027039283056790858 In:0.021061449543044047 as:0.017514234937992545 all:0.012543839382496166 upon:0.011844431150487573 is:0.00998972746569266 was:0.008814315973987914 into:0.008557199930727406 through:0.007781895704231326 :0.1254109790972375 +to:0.12022893700269083 and:0.09020394424291768 the:0.08587503820055309 of:0.06450042443224316 in:0.0310058468700829 a:0.017742048521183405 :0.015548046036689871 not:0.01491307651316237 that:0.014112408707955496 for:0.013734482372212283 I:0.013065769926808477 will:0.012848502316304782 at:0.012837991177321897 In:0.012628718855091186 by:0.012491091048660757 be:0.011425930130217754 is:0.0113962101007567 he:0.011342727513475473 or:0.01112522537451577 :0.4219735806571561 +be:0.17029699433269768 been:0.15427320224368102 was:0.15199201136758236 were:0.06877884714486217 are:0.0639411899702337 is:0.04676312011806195 and:0.04211489002639815 resolution:0.022673930429816556 being:0.022238391047992065 unanimously:0.017392674048306824 resolutions:0.016053077835771593 as:0.014355164569763856 bo:0.012738314311328438 he:0.011488773473164404 not:0.011288010558113877 so:0.010215491424171514 Is:0.008942943600413882 property:0.008881536635016084 land:0.007329074901980215 :0.13724236196064363 +the:0.39749834532651884 a:0.07520030034269234 and:0.05540858759821703 The:0.03273515726769502 tho:0.030061875542463562 of:0.020144331424922633 tbe:0.014929647509541684 in:0.014268129706664795 or:0.013333166761078447 .:0.013287381914101323 an:0.009000188755386574 to:0.00880680429595084 :0.007943763822197133 Mr.:0.00773879605474787 by:0.007328417831573476 as:0.005922572098978465 for:0.0047526933692942485 that:0.004736121968310169 on:0.004594595720579333 :0.2713091226890862 +of:0.31954557892465263 on:0.11089821562191515 to:0.10004291893642632 in:0.074636399347326 from:0.0542615005343517 by:0.050441964271426165 and:0.03238154116120233 at:0.025802252958163487 that:0.025038551408508993 with:0.01978913500546051 for:0.012920218723625549 In:0.012662072136818827 upon:0.009586440281661664 as:0.008004834224778233 over:0.007512020369652096 through:0.006962627617495528 into:0.005705643850206978 before:0.005642737940553904 along:0.005537747070626057 :0.1116275996151479 +line:0.09098622031610062 street,:0.05253645466755133 and:0.05067956810142521 difference:0.03630883665721612 of:0.021882862603856613 street:0.018194336920594176 or:0.01650454142406657 lot:0.016160343862945986 relations:0.015688011761104386 midway:0.014360801624182327 road:0.013614410578050951 war:0.012788008588873278 place:0.01208239215369584 distance:0.012031547182287588 all:0.012031331261085255 agreement:0.011401970784257944 space:0.010628478433133304 be:0.010623270132652208 point:0.009901718968270736 :0.5605948939786495 +of:0.22547645859652307 to:0.0976255956545342 in:0.08975713220785093 with:0.06434602133951098 on:0.04667326786831187 and:0.041649932604920926 for:0.0398249655813687 by:0.036685018433643767 from:0.032664781559268836 upon:0.021490740627235556 that:0.02139281221101055 at:0.021288306778277744 In:0.02025590254753344 as:0.010353932037056318 all:0.010074400759570251 over:0.008939820994499942 or:0.007693784865817322 told:0.007468153789186353 into:0.00691772114560941 :0.1884212503982698 +of:0.23768669068114165 to:0.08891344758502599 in:0.08287931552283152 and:0.08218472472263662 for:0.07879939915180745 with:0.0536222977774948 that:0.05060709193563747 by:0.03696696146689018 from:0.028957421073136484 on:0.026691591501077628 In:0.01938802832539216 is:0.017648907474627044 all:0.015731071678210733 at:0.015589620056286542 upon:0.013829853679614899 was:0.011990758921326733 but:0.01142393061687621 as:0.010713924866141809 into:0.010306447677568808 :0.10506851528627531 +the:0.1907777334500456 of:0.14541756543564915 a:0.10116990075542903 and:0.09554524501565587 in:0.04805568808881981 that:0.04108748996995484 was:0.022078892126119874 no:0.019525160855681442 his:0.018913168815814407 for:0.018698647564275046 be:0.017921553081804018 The:0.017123273483119174 or:0.015070964324210486 much:0.014230808467842786 their:0.014014175105019264 this:0.013288245574767482 is:0.012883134589016819 on:0.012334539530472734 as:0.010119726629984498 :0.1707440871363177 +that:0.2256871171032036 and:0.19930488239513336 but:0.06745262964340179 as:0.05886427158600607 if:0.04859859981457123 which:0.03447126660995012 If:0.03112853201235846 where:0.02904154717202389 But:0.025141909646087177 when:0.021856609683108656 Then:0.013501190972854682 because:0.012561294822002368 while:0.012448622397862952 though:0.010702719797682465 And:0.009497483083679675 yet:0.008791147909762313 then:0.008386756588468817 for:0.008200958550189258 time:0.00793138172843354 :0.16543107848321956 +of:0.09129790931378902 the:0.07369883040827747 and:0.047842263382354346 in:0.04189055351593407 to:0.04045875475680249 a:0.03542341257202578 be:0.02020462051672066 for:0.01979292654746225 was:0.01760256398103379 at:0.017380150555488715 is:0.014984483003968216 with:0.014047653760730413 by:0.01374644383819499 :0.012670486581795598 In:0.01200961464556976 or:0.011563835749786333 from:0.011391516893522809 are:0.011273104484969465 that:0.010755276030689069 :0.4809655994608848 +to:0.15897643407266607 have:0.11129893370180567 had:0.10080984132484723 has:0.08512036276312981 will:0.08435347495393021 not:0.06035859573371976 would:0.055845031769540907 they:0.03385345224435983 may:0.029844544800553593 should:0.02805415169400634 and:0.026464257965833144 I:0.024998791642581047 shall:0.02308773450939061 you:0.02051354397326968 we:0.019943477437087936 must:0.019533156928782113 who:0.015620890708359429 be-:0.014977412713881921 never:0.014750090737985581 :0.07059582032426912 +of:0.293806622676882 and:0.0813612899778517 to:0.06874507034898784 with:0.060440731108143804 for:0.05546417130070638 that:0.05215018149352723 by:0.05142989216975068 on:0.03984143698804885 from:0.03278266556329391 in:0.03055057365527088 all:0.029713048998172946 at:0.029661037750533484 as:0.01646275734031771 upon:0.015446155625366616 when:0.012530960774228501 against:0.010669194309766913 which:0.0080263586828539 while:0.00777243787223869 if:0.007600814391053487 :0.09454459897300443 +the:0.11647987720560213 of:0.09356352502053812 to:0.04253724942247862 and:0.039720762402541694 in:0.018815614480201106 :0.01856532488662151 was:0.018391020108902034 on:0.01826333925947766 for:0.017632215522792857 1:0.015583235650650031 at:0.01517532496586896 were:0.014156348693615239 be:0.013507089822756327 is:0.012992807009962942 or:0.012798882579453998 .:0.011785925221784335 are:0.011441131075162909 a:0.009664398076268198 that:0.008760916004954091 :0.4891650125903672 +men:0.03806039317501682 hundred:0.020621502952523674 up:0.01435311608867308 women:0.01422006000877333 wife:0.012851238184233692 time:0.011335761162567293 dull:0.010808223697022135 land:0.010484076461535879 quiet:0.010397647933367997 life:0.00988385223313265 due:0.009664884184031526 officers:0.009619701484471664 dollars:0.009118035193943563 costs:0.009070805710528967 friends:0.008220268137830077 made:0.007942712251721341 man:0.007900674834320507 boys:0.007663641810400141 gold:0.007661459943133664 :0.7691219445527719 +those:0.12444736173695367 and:0.08002981893803256 man:0.06413719060718148 men:0.056744568312779145 people:0.024514383145758167 one:0.018732624286523884 all:0.017463047376472418 woman:0.011584790429303217 men,:0.010147821398013505 Those:0.009777258321369183 man,:0.009078296454478746 person:0.008686712522719114 persons:0.008556768378305804 but:0.008503824092543879 others:0.00790679915221199 or:0.007416765011285949 people,:0.007227296251926401 he:0.007173244950150932 women:0.007114901088444055 :0.5097565275455459 +one:0.1028303141280697 part:0.05963429477052991 out:0.04766456937681193 some:0.031418679026461914 members:0.030764490253327767 side:0.029940657362655835 portion:0.022063658796890564 office:0.020457735219956013 member:0.019726706386316174 end:0.019666887540649894 tion:0.018667441728710307 parts:0.016814747270460957 people:0.014112771422418794 all:0.014072739582212475 any:0.013183573287639892 One:0.013083578354183906 that:0.013024335602903442 account:0.012482348155001894 many:0.012077825070275192 :0.48731264666452345 +and:0.1716485971970451 that:0.1400989318756159 as:0.13700289279980563 but:0.04217126703364742 even:0.03369024981472458 or:0.021330853432285947 But:0.02112444561030227 And:0.01800398571411738 and,:0.01759157065582032 me:0.014945844837500642 asked:0.013388617418746236 know:0.012700470859234694 see:0.012503859685876155 ;:0.012264042087395387 that,:0.011470423184084644 him:0.01047580436533919 or,:0.008655497431389514 Even:0.007900493123505931 than:0.007850790689362869 :0.2841813621842002 +a:0.4400881469170883 the:0.25755644408979067 large:0.07640537445078445 The:0.02639912934686894 A:0.022242739209161557 total:0.01642172827219285 great:0.014057481312334728 this:0.012062756723683066 any:0.011817380084127884 and:0.009751289888416163 tho:0.009330387366683453 whole:0.008485258472651013 considerable:0.0072515929720075025 largo:0.00653049609436868 sufficient:0.006235330737714609 goodly:0.0057493360940294004 said:0.005332979281703675 same:0.005269285393276489 tbe:0.005159371474229337 :0.052853491818887204 +one:0.1028303141280697 part:0.05963429477052991 out:0.04766456937681193 some:0.031418679026461914 members:0.030764490253327767 side:0.029940657362655835 portion:0.022063658796890564 office:0.020457735219956013 member:0.019726706386316174 end:0.019666887540649894 tion:0.018667441728710307 parts:0.016814747270460957 people:0.014112771422418794 all:0.014072739582212475 any:0.013183573287639892 One:0.013083578354183906 that:0.013024335602903442 account:0.012482348155001894 many:0.012077825070275192 :0.48731264666452345 +of:0.09129790931378902 the:0.07369883040827747 and:0.047842263382354346 in:0.04189055351593407 to:0.04045875475680249 a:0.03542341257202578 be:0.02020462051672066 for:0.01979292654746225 was:0.01760256398103379 at:0.017380150555488715 is:0.014984483003968216 with:0.014047653760730413 by:0.01374644383819499 :0.012670486581795598 In:0.01200961464556976 or:0.011563835749786333 from:0.011391516893522809 are:0.011273104484969465 that:0.010755276030689069 :0.4809655994608848 +the:0.09609689971809109 of:0.09286653610706762 to:0.09084369414019672 and:0.046562706934036316 in:0.025735375986860896 on:0.023709662552035497 :0.023294428526078922 a:0.019017133164302716 at:0.018989854218734947 from:0.013944830067541984 for:0.012265711853852968 by:0.010638370453624672 that:0.008701902179762215 .:0.008191481408528349 was:0.00807366451078825 as:0.007969784532915173 with:0.007926945846645187 In:0.005983940568777232 :0.005960071228642991 :0.47222700600151624 +in:0.17592005068970298 of:0.08272643728089042 the:0.06308746896967905 In:0.060992974130388844 with:0.052003897228688166 any:0.04916651229553706 and:0.048085211169062926 from:0.04446745354507589 for:0.0416294930040122 to:0.039602136947860495 no:0.03420643479518265 by:0.03225899539889584 at:0.031368656839424566 only:0.024947965653721756 but:0.02384550474712734 that:0.022458059125140376 is:0.020344228811452883 on:0.017158718688496947 as:0.015819009839927956 :0.11891079083973168 +the:0.42054583798965234 a:0.18942475828300354 and:0.051486020136516306 our:0.03423102848292501 The:0.03164978708081299 tho:0.029647365240048077 their:0.02575426889568596 of:0.023463523774260583 this:0.019656177532211265 his:0.01890145732535396 its:0.01688398317364004 in:0.011302468125559729 that:0.009829738207490118 any:0.009638920194795867 A:0.009204449341744997 other:0.009097456890029052 tbe:0.00841622022350302 her:0.006684505420915461 every:0.00632674112129441 :0.06685529256055732 +the:0.08741288820481248 and:0.07392080242938477 be:0.0572668144792991 was:0.05686739458441792 of:0.05297029938296901 to:0.040095074017987696 is:0.03448309022071693 been:0.028380973754521515 a:0.02485235362607966 are:0.02226522268065813 were:0.019682022343204007 in:0.019454144698829248 or:0.019273705289081854 as:0.0158232132157123 not:0.012361914460680723 being:0.010097596398749334 for:0.009388164492904385 :0.00930537568905371 their:0.00894740846790883 :0.3961515415630284 +the:0.10092458788121426 and:0.08525013492851889 of:0.08178369169778861 a:0.03904439136399566 to:0.03801794633564697 I:0.021384958613369056 in:0.01896871376639219 that:0.01818706310098092 at:0.015848295809690126 his:0.013470652816935788 for:0.012895390403161677 :0.012728319479876722 or:0.011126523326675852 The:0.009983886071069283 .:0.009811539731391566 will:0.009656999247884338 he:0.009119493040338522 they:0.008767124924228126 would:0.008549950562598383 :0.47348033689824304 +the:0.14648668949972485 and:0.08899859572974296 of:0.0801752848532613 Mr.:0.033367818809143565 to:0.028295686690356817 The:0.026498777242513212 that:0.02181405974752316 he:0.01917252932340375 his:0.016282534963481927 in:0.0157164901770417 which:0.01305612172524907 Mrs.:0.012452359890097865 as:0.010395359106489727 I:0.01011682391001869 a:0.009733545411592721 when:0.009625533151593839 these:0.009233082650630404 their:0.009232120883231621 for:0.00804743734920447 :0.43029914888569837 +and:0.10214269553251397 of:0.09040688128822227 to:0.08266334484250851 the:0.07952638880880775 in:0.030159081630398647 or:0.02141868930653503 be:0.020558547501083067 a:0.019092232084906114 was:0.01730227941062289 I:0.01685050869379049 is:0.01541184109028007 that:0.015236427571031103 will:0.014324589118144174 not:0.012733753133334462 it:0.012305399851639243 he:0.011611656462904685 for:0.010710394488925572 :0.010474259588190279 In:0.010168478097621888 :0.40590255149853977 +the:0.17027190784407714 of:0.10585557835912704 and:0.07355927771906935 to:0.05486905984958157 a:0.04543746377447453 in:0.03128555052933153 be:0.028704485173100775 was:0.02350529800142253 is:0.02215549335554494 for:0.02077556258358175 his:0.01804639098945333 or:0.016335100594594944 their:0.015847999621030492 at:0.015526727957625254 been:0.011815834631173878 are:0.01139058447814694 this:0.010362020528084328 tho:0.01035635773045807 its:0.01000473355720393 :0.30289457272291764 +the:0.6875152883678963 The:0.03806912301887709 and:0.03688103224996259 tho:0.024579037783788883 no:0.016525767876206448 much:0.012364976389634488 tbe:0.010637654591647927 their:0.010206618109164936 little:0.009486191064897793 his:0.009392525011926525 a:0.00919326992294415 of:0.009178837612058708 an:0.008453598980657924 more:0.0070914922068878285 any:0.007087561580067174 in:0.007034380493245562 its:0.00544891290977315 called:0.005167423422506764 special:0.0043309506863855665 :0.08035535772147025 +of:0.20719614755196603 in:0.09492025490269755 with:0.07751919508853243 and:0.058103979656046696 is:0.057159672823572566 to:0.05679046891762384 as:0.05091709782377896 by:0.0496837033221892 was:0.03890964946132992 for:0.0388937035715977 be:0.03182228165761531 such:0.028837911697187 that:0.022328367108509318 In:0.019459579306024478 from:0.01864268451124482 have:0.016818007660916238 at:0.01591558889278559 make:0.015405314947936965 made:0.01515732260985949 :0.08451906848858588 +the:0.47532481704377655 his:0.07208996436894177 a:0.05330034582437653 of:0.043154441367584284 and:0.03504288776147169 my:0.031705775172200086 their:0.0316471103809005 tho:0.030757669828821346 its:0.02498414208815533 The:0.02387406657443455 our:0.01676287342050096 your:0.013151646867605003 little:0.011682283219202028 her:0.011414115764130104 tbe:0.011318029156253715 this:0.010790423462694532 in:0.010027451384223772 no:0.006981347614585784 new:0.0058796601663859355 :0.07911094853375551 +Mrs.:0.10401537259006784 and:0.09242433823011713 to:0.05492429328498172 of:0.04496275890276771 Mr.:0.029650709383452656 by:0.02768310383116812 .:0.024598074917333228 from:0.021096939673786577 :0.01990095599519848 the:0.018080195908951952 Rev.:0.013353930168326242 Miss:0.012391682924589026 for:0.012323133494980766 with:0.010766956273141568 in:0.010713704893155545 as:0.007309723386196114 girl.:0.006718041730803189 or:0.006390424841323626 Mrs:0.005918792458357635 :0.47577686711130085 +the:0.11392288322722603 of:0.10827972998867663 to:0.06990040559406768 and:0.05030623114813265 a:0.032917735704730555 be:0.02564826758168805 in:0.02432235645407566 is:0.02107439251353629 not:0.01832002117359016 was:0.01826323397247578 his:0.016847954364052394 at:0.014898777163308641 for:0.014485961846791285 HEREBY:0.013907321665391836 .:0.011440863335300179 :0.011084471702497182 or:0.010457936038205417 their:0.010097119200689116 by:0.00936883377686809 :0.40345550354869636 +that:0.1961785456752114 as:0.13954624149551012 if:0.08538655912470369 which:0.0814983014969138 and:0.05851798505856279 will:0.05040889988601732 when:0.03363523791645521 would:0.0336275819369411 should:0.02388810269957983 If:0.022637494800245486 may:0.02140215656976681 what:0.02131754414245868 but:0.020826340871678846 can:0.019932535158183693 As:0.01794187257166108 shall:0.017760942088938202 where:0.014985018079048767 could:0.01302940237931903 t:0.012116625148587913 :0.11436261290021621 +one:0.1028303141280697 part:0.05963429477052991 out:0.04766456937681193 some:0.031418679026461914 members:0.030764490253327767 side:0.029940657362655835 portion:0.022063658796890564 office:0.020457735219956013 member:0.019726706386316174 end:0.019666887540649894 tion:0.018667441728710307 parts:0.016814747270460957 people:0.014112771422418794 all:0.014072739582212475 any:0.013183573287639892 One:0.013083578354183906 that:0.013024335602903442 account:0.012482348155001894 many:0.012077825070275192 :0.48731264666452345 +of:0.11124107108521138 the:0.07960715949866216 and:0.07777316611363787 to:0.056339061496157215 in:0.04265849621151259 for:0.02465065950074519 a:0.023366318308151734 at:0.022072405718038916 that:0.022018664423500447 as:0.02080928339754287 or:0.01810064751985284 :0.015884467981247256 with:0.015002337130149855 by:0.014821350830911476 In:0.011864142668502633 such:0.011806426055384331 which:0.010392552831552476 his:0.010317205576102167 an:0.010201417982587604 :0.400073165670549 +of:0.11308629024967284 large:0.10197063568374651 the:0.09581164011904339 in:0.0945567272650074 such:0.08428215880932212 and:0.07827352789511839 great:0.03680928060421572 a:0.03150595089147148 much:0.02780029781252477 their:0.02140063383523989 or:0.019611827338184545 to:0.018158372603094164 In:0.016813807437309976 this:0.015616588653493269 same:0.015298025899596774 his:0.014621434539222749 for:0.014415494802335574 as:0.014122090777105167 is:0.01401543614270897 :0.1708297786415863 +the:0.17382582927757723 his:0.15707504317382406 an:0.11321087802184776 of:0.06617412918721621 this:0.04177164894063164 my:0.041631883555560904 in:0.03875382543761813 post:0.025426232997834978 to:0.018195382927913725 their:0.017503674317960342 our:0.01523776236679697 her:0.015126004288510077 good:0.013858759871345185 and:0.011369791137142548 for:0.010431419999255584 at:0.009944800612361545 a:0.009451898732973887 other:0.007721189855942302 that:0.007720664669580484 :0.20456918062810642 +be:0.22490234887847352 a:0.09653126621253413 is:0.09442157686273915 most:0.07905632058915571 was:0.0634703873202097 and:0.059024204390160886 are:0.055350474774212004 the:0.046261691908457275 been:0.030734460193659278 one:0.024709137376638844 very:0.02297992595544321 he:0.020496909658307628 were:0.01866000928595037 as:0.01751272642933594 Is:0.014433793333764381 too:0.013517827573756636 first:0.012062176115011869 this:0.011847565387232188 being:0.011057646150700874 :0.08196955160425638 +the:0.4925741037544272 tho:0.044272339628418825 this:0.040960822056424755 The:0.03800455907793278 their:0.037710149011824005 a:0.03447777983401189 his:0.03151380148835526 con-:0.026173195422657766 our:0.023900999662440872 and:0.0238723085983025 of:0.022455803055277956 tbe:0.019133352939773057 public:0.01895311786356052 no:0.016182069447537018 said:0.015760641306436778 my:0.01559147236524431 your:0.01400868382363135 an:0.01358448137118822 that:0.012641316165743906 :0.057229003126811055 +the:0.24295394264281478 a:0.0920799580199881 and:0.06484074285584086 of:0.054277088203728334 in:0.031039891062809508 to:0.026035854148936027 The:0.020612708231910512 his:0.018060520355514656 this:0.016250393969530697 for:0.014355996358531143 or:0.013549960645009022 an:0.013520526577728311 tho:0.013456327181004151 at:0.012046824336447822 be:0.01185476324071514 that:0.011654230449179449 no:0.010399185629671149 is:0.010004589173787031 any:0.009735315676698575 :0.31227118124015474 +they:0.16093932153454857 who:0.0738963583538454 we:0.06060278255469237 which:0.047583239663008474 there:0.04752437643107939 and:0.04478815974098035 They:0.031171467156496026 you:0.02867686798999066 that:0.02804661021736214 We:0.019233592880919022 There:0.015505018575721147 people:0.015250503571020865 men:0.014148038152290035 as:0.01189387215853979 prices:0.00852002784878742 it:0.007087271364876786 these:0.007019341379889502 them:0.0068315998764165 or:0.006707324649098069 :0.3635742259004375 +is:0.17551815878262284 and:0.1389784879222888 are:0.10983636805750069 but:0.033781814587594564 which:0.02920656227294741 Is:0.028247536387755776 that:0.02764623698361649 was:0.026130245245357082 not:0.02376372780684275 he:0.020578353379132455 we:0.020075342955588677 it:0.01967488468100853 I:0.01965341584110061 they:0.016506957699561606 as:0.015592461807404387 be:0.013633213890761062 have:0.012885383893211897 has:0.012019201390740123 were:0.011237069604283003 :0.24403457681068122 +of:0.4289598291796064 that:0.08416093872136639 the:0.07836530667181886 and:0.04507886513380018 by:0.036898224159546654 in:0.03476429667405808 to:0.03058176925935471 this:0.021297511219471144 for:0.017102019305740627 The:0.01611452472432802 which:0.013158249656815635 said:0.011487576618185807 on:0.01082008956294851 from:0.010807120990877368 other:0.009012073480901928 before:0.008934481314009982 :0.007709437982044018 In:0.007575440265426184 until:0.007266383796864551 :0.11890586128283494 +;:0.01458927046758731 it,:0.007973265891266864 him:0.007834970369143835 one:0.007240974664279108 in:0.006989508095588829 and:0.006417396987522371 ,:0.006059091806132192 it:0.006014614548599763 up:0.005812344146302806 out:0.005395853159197619 them,:0.005290532062834904 him,:0.004938420268273817 city:0.004793760033506698 :0.004646491011450349 man:0.004641061555670736 country:0.0046164671969483135 feet:0.0044416267197611185 time,:0.004376787347733258 time:0.004358244018157902 :0.8825693196500423 +and:0.03868242960999506 as:0.031124813427855922 went:0.02352509775927722 him:0.02196555539050794 them:0.018760608639018784 up:0.017985449426794205 is:0.017894175620344187 go:0.017174904667157563 able:0.016756848979943888 going:0.014481672239490295 it:0.014128375989346808 was:0.013277058274565138 time:0.013249953793837373 not:0.012469887553778763 began:0.012465717758716884 way:0.012105610030480113 back:0.012090864562211581 right:0.011941707822828511 amounted:0.011564315359310868 :0.667354953094539 +the:0.4870762099516259 a:0.05297478206481668 and:0.035627151542268205 tho:0.033827025907404364 this:0.030793600068983098 or:0.025325079139863985 The:0.02492894183154044 of:0.024228622166639104 any:0.023859133559628848 general:0.022821563248048658 great:0.019599961890456468 other:0.016895538756335447 his:0.016883578751457188 our:0.012795701671619048 their:0.01278326056390366 tbe:0.012144716619816148 every:0.011231694959635993 re-:0.010864020053338285 States:0.010250569977367936 :0.11408884727525055 +of:0.23699897165158873 in:0.2028060789615501 to:0.07811889258482617 for:0.06963513699092591 at:0.053793177951165116 In:0.05000475035716322 with:0.038194374059628965 and:0.03285089577654748 by:0.029336413638022408 that:0.020165523307118124 have:0.017395909222895398 make:0.016423552572479592 is:0.015961472792426136 from:0.01287806390263455 or:0.011559005380334131 be:0.010949409339637062 as:0.010765616645221455 under:0.010270307699551272 was:0.009769193510461256 :0.07112325365582292 +and:0.1885068935598877 have:0.10242818149415471 had:0.08426770621803957 I:0.07977800419819188 has:0.06530505461579705 he:0.06400522120227085 is:0.037541612253939996 they:0.03635357783950155 was:0.033149437760972095 also:0.029776279918922826 be:0.02533008358519081 we:0.023623990933157826 He:0.023063980388488663 who:0.022594263559747495 which:0.017706822158332945 not:0.015997984992413814 that:0.01591121247989248 They:0.015296877960653866 ever:0.013734858841898255 :0.10462795603854563 +of:0.23337103447810192 in:0.1244725273716752 and:0.0803945780546455 for:0.06020356486575903 to:0.05921666217069863 with:0.05868008907313681 on:0.04609390405331939 by:0.040956545840024006 from:0.03885768155977177 that:0.027917724590289513 In:0.02767646828442999 at:0.023638115424793504 was:0.014781713028236549 upon:0.013818781219094262 all:0.013613395631805034 is:0.013279571162552557 up:0.010500958622975313 about:0.010192580605967495 or:0.010001636508270639 :0.09133246745445288 +the:0.11919516938815296 of:0.07230453158552728 and:0.05781056740443249 a:0.043018564803886335 to:0.031305092790907506 in:0.020848713353460488 at:0.014270110001066288 .:0.012526810245749479 :0.012413283442322082 for:0.011719122709941797 by:0.010808400946589808 or:0.010404172990115616 The:0.01003576004804544 with:0.009811868184449042 tho:0.009295902015355835 was:0.008924239095331684 that:0.008672304223433876 is:0.0085591147338948 be:0.008335143826716943 :0.5187411282106204 +of:0.16139670342139745 that:0.09049630308955249 for:0.07516154539943531 and:0.07041847442772399 by:0.0678568445930748 in:0.05963146312993831 to:0.051736313484617366 with:0.034983140226581666 on:0.029318483834320324 from:0.024664686948155035 In:0.021223812897652128 have:0.020077430217781855 is:0.019892402546123136 at:0.018627233082368674 or:0.018472816005089335 had:0.014887456399657882 was:0.01479452846040885 upon:0.013972885508252434 which:0.01264906821270432 :0.17873840811516467 +the:0.17513929960634633 of:0.08415464598587795 and:0.05131546758919202 in:0.039857375875223096 a:0.03687087231837209 to:0.03443205854828631 at:0.032675548750583164 on:0.0308475391129054 by:0.021012940605201706 .:0.02092885877350829 :0.014164480007793852 The:0.013578155443476585 his:0.012405895400278956 from:0.011731270943110082 tho:0.011606827357057916 In:0.011046912787131628 with:0.010462743662379302 for:0.009071007555886492 an:0.008730168713155238 :0.3689679309642336 +the:0.10956948708244944 and:0.10551072321128666 of:0.10042561193206134 a:0.06179960969853463 to:0.04750348986283182 or:0.029226754525388917 are:0.024815256806147948 is:0.02236100527330016 for:0.020187230213745445 be:0.01814350822794743 was:0.016928955017178577 in:0.012602512824243007 all:0.011235952138623152 an:0.010602435791556428 were:0.009658496591363265 with:0.009130623845434158 at:0.008807294947112755 two:0.008051094664270012 has:0.00794364286322991 :0.36449631448329495 +of:0.1343138587507163 in:0.06765056899607808 as:0.06523902155079696 is:0.06408242877157266 to:0.05920677986120668 with:0.052352944016705046 by:0.0489161125839358 and:0.04476446561312716 was:0.043874711196451026 for:0.0353857632723415 at:0.028122627130863165 such:0.027654959488952243 be:0.026520497424890634 on:0.01775924540667342 In:0.017304992039102633 that:0.017053231434412737 have:0.01675624464989442 from:0.015365315280442398 had:0.013575095776826075 :0.20310113675501107 +will:0.1594610157634048 and:0.12408684856536356 can:0.0475765313021425 was:0.043297385577949044 the:0.04309049730929754 would:0.03795104648471108 it:0.03529181935794582 had:0.03380446296120641 that:0.03218672280647545 is:0.028706427676310202 I:0.02654869274892226 could:0.02641152237841077 may:0.024868404034085034 which:0.022633316027852485 he:0.02027839241074357 time:0.019500740557674156 shall:0.019471637954968264 a:0.01855830410838547 has:0.017357241859625276 :0.2179189901145263 +in:0.21361866819538164 of:0.10015439075163463 to:0.09174658439678078 on:0.05652562204267865 by:0.054930212699003556 from:0.053800904758746104 with:0.05373167810334797 upon:0.046095939790645926 In:0.04150275646746811 for:0.03527557867873188 at:0.02737751360816521 through:0.020451686420470176 and:0.019877920035511497 under:0.013975199609340678 after:0.010310748620116106 into:0.007773820479550836 during:0.00617879543604524 over:0.00592093902393609 that:0.005432617107744836 :0.1343184237747001 +the:0.10145115073724262 and:0.07037766010668917 of:0.059672800397955375 to:0.03808636035687919 in:0.03420431611173551 a:0.023805075696144436 his:0.01974249500091645 said:0.01701927707638035 that:0.01646466294930901 or:0.01623634421336646 will:0.014602827543637264 this:0.013941248711357778 was:0.01367924014327157 for:0.013607797685872136 In:0.012876580660220965 their:0.01250743591786298 be:0.012020664677474724 is:0.011544747172890267 he:0.011209395911886041 :0.4859499189289077 +the:0.536335240995193 a:0.1329568405389516 and:0.05193547021161019 The:0.04701319027173187 of:0.03022794702645981 tho:0.02456632875321168 great:0.017974436021283378 for:0.013735628170979518 or:0.011646164212054324 in:0.011482595507272089 by:0.011036346304646429 tbe:0.010345178361903705 no:0.008663745746893929 best:0.007072580281827655 to:0.0069599553339535795 first:0.006186942452271134 good:0.006092507083933184 any:0.005995806867873801 general:0.0059628756960901155 :0.05281022016185905 +and:0.13492201460434688 that:0.03833073190067474 or:0.03144979990261081 is:0.030094343685904783 was:0.02260557825940152 are:0.022031584597644906 made:0.01815687871821259 but:0.01757072959446143 be:0.016694495273851796 it:0.01610824096157739 out:0.015982904195465355 not:0.014360685243149502 as:0.013234841650668594 were:0.012180748232713541 them:0.011891497583035787 found:0.011692046994405063 now:0.010715966335333837 been:0.010712385284873494 him:0.010631414098773509 :0.5396331128828945 +the:0.18705554593305831 and:0.07965205743837732 of:0.06703787582941824 a:0.057993529812955705 The:0.029144305963792982 to:0.023775350859785868 in:0.02120521813491336 with:0.01617670818197488 Mr.:0.014752697338900923 .:0.014426679327146356 by:0.013849522674927877 his:0.013605567141411293 that:0.01338009231844623 an:0.01281039903010432 tho:0.011687444039032852 :0.011133192298238028 are:0.010001239638144744 for:0.008684556029310548 their:0.00850533629246625 :0.38412268171759395 +it:0.20661626833118804 It:0.13133310388077965 which:0.05346195225056892 he:0.04322413433168328 and:0.0399221355018402 that:0.03638459118631527 there:0.02656324547693805 who:0.022588363007738477 This:0.01601752777676921 He:0.015090910728543903 what:0.013686208311658789 she:0.01181234484166701 this:0.011752239301455133 There:0.009749183368011116 man:0.007759333367156636 as:0.007068481254995637 work:0.006691860301109499 country:0.006039779831696346 but:0.005362639996269743 :0.32787569695361507 +the:0.17936247235911493 and:0.10246506346420732 of:0.060002983479122515 to:0.04263663359086398 in:0.04015878952725786 that:0.03392510360457337 a:0.029023724795387104 for:0.018060899006431385 which:0.017624558887851027 he:0.017167076155815086 be:0.016451239230163082 or:0.016233856764035645 I:0.014229610280779256 his:0.01360412033629433 as:0.013131815995735947 :0.011580297140243546 by:0.011229228965215677 re-:0.011023299099773056 was:0.010752788283288118 :0.3403364390338468 +to:0.23130715207018865 the:0.17329413148036701 at:0.08793134636477937 of:0.06349314819766169 his:0.049935970755695024 their:0.04239057785108377 and:0.03291690254197935 no:0.025071463503573872 will:0.02132672207000367 hard:0.02060771535760673 a:0.01949324084386313 this:0.018394603656849393 for:0.016477230970706854 good:0.015608610450246713 not:0.014212753985819724 all:0.013565500413453807 The:0.013508606009473186 its:0.011333750933381365 my:0.01096473230929456 :0.11716584023397211 +the:0.11919516938815296 of:0.07230453158552728 and:0.05781056740443249 a:0.043018564803886335 to:0.031305092790907506 in:0.020848713353460488 at:0.014270110001066288 .:0.012526810245749479 :0.012413283442322082 for:0.011719122709941797 by:0.010808400946589808 or:0.010404172990115616 The:0.01003576004804544 with:0.009811868184449042 tho:0.009295902015355835 was:0.008924239095331684 that:0.008672304223433876 is:0.0085591147338948 be:0.008335143826716943 :0.5187411282106204 +the:0.11919516938815296 of:0.07230453158552728 and:0.05781056740443249 a:0.043018564803886335 to:0.031305092790907506 in:0.020848713353460488 at:0.014270110001066288 .:0.012526810245749479 :0.012413283442322082 for:0.011719122709941797 by:0.010808400946589808 or:0.010404172990115616 The:0.01003576004804544 with:0.009811868184449042 tho:0.009295902015355835 was:0.008924239095331684 that:0.008672304223433876 is:0.0085591147338948 be:0.008335143826716943 :0.5187411282106204 +the:0.10646990991578081 and:0.07825143545686956 of:0.07297722547326334 a:0.054857002057356934 to:0.04552590224416819 be:0.040439476017448836 was:0.03010505879190135 is:0.02161084993805221 as:0.018393100793782056 in:0.014823079542130971 are:0.014110316813821399 with:0.012933574294203849 been:0.012826066868199912 he:0.012123902888376076 were:0.011505167874371752 that:0.01086977476706554 his:0.010342326779095775 by:0.009451875650661882 for:0.008223522606084296 :0.41316043122736523 +:0.05094186463593844 it.:0.03485461876670106 them.:0.021081279060483904 him.:0.012662393674874536 country.:0.010721999340613455 time.:0.010405713665957522 again.:0.008505576663797136 people.:0.008203380299293753 life.:0.007585551980861433 world.:0.0069313915627007465 us.:0.0067997552397258245 .:0.006741918403448826 day.:0.006223189261771642 years.:0.006150977548725585 all.:0.0059540645357906334 year.:0.0059147278797671956 work.:0.005638049887699452 and:0.005516157144207943 party.:0.005341929520024293 :0.7728254609276166 +the:0.4536866041497252 a:0.17180244945754794 The:0.06732742796426795 and:0.04840253550972459 of:0.03475162857585904 tho:0.026788489200814107 any:0.026654331827997178 some:0.02359183560766062 no:0.018523454203327693 in:0.013901132197777305 his:0.012318663569952924 this:0.011290664713498037 with:0.011042188972756726 tbe:0.010486622075279253 for:0.010426515922411998 very:0.00931651823125436 their:0.00856501624030093 A:0.007511914473957849 its:0.007240186944082456 :0.02537182016180379 +have:0.14992633425920726 and:0.13989646572224762 has:0.08006121994851843 had:0.07064355053865659 they:0.04886691395064209 I:0.047761774247838944 who:0.04362346642786683 he:0.04065562770897278 we:0.027949538284930697 which:0.023933197084496018 They:0.02187397955664347 was:0.018749220369929917 He:0.017591610670078164 but:0.01749679690530191 that:0.016868529802611318 be:0.015589237469510804 are:0.013371698370215632 is:0.012647567851770212 most:0.01238134247352703 :0.17911192835703427 +of:0.3357076492265733 in:0.09126906076293609 at:0.08110343479830298 to:0.07331810028887865 by:0.053431316285246326 for:0.047183107768521935 from:0.042035660763858576 on:0.04085799444208549 and:0.039689359037764944 In:0.02667204431583873 that:0.023105392427120622 with:0.018571277428990875 all:0.018430438599857303 as:0.010181407448895596 upon:0.008717742804479938 was:0.00741762498355493 is:0.007118589263521231 before:0.006706099658237844 At:0.006416027620187201 :0.061067672075147426 +of:0.12275232581818381 to:0.08045320505143562 as:0.06760268649762323 and:0.0669341406543465 was:0.06423594097018595 is:0.05946239399458537 in:0.05862870590567721 for:0.05375539510047831 with:0.04293835960729614 that:0.03677346277920413 by:0.03393677025933189 be:0.030269831049534682 such:0.023544061710172242 on:0.023120947216325294 not:0.017811507468930173 but:0.01711430371241257 at:0.016472683856494575 made:0.015385139522365907 like:0.015105272750904066 :0.15270286607451233 +be:0.22548762512214796 was:0.14124699467063737 been:0.0815682536448575 are:0.06889021820106063 were:0.06878796154558957 is:0.06727903214086245 he:0.039146389718694566 have:0.03906428791864548 and:0.03574895694927687 being:0.027892228103433815 had:0.026222677512981404 has:0.01853411900192525 I:0.017039545333568218 bo:0.015555098505534208 Is:0.014027028576504478 they:0.01053679137252716 not:0.00994572182502589 one:0.007019917339229051 who:0.006988695431282742 :0.07801845708621537 +and:0.09866285689535641 do:0.057068102237696025 was:0.047801982655627365 amended:0.04658152142316204 as:0.04176866788065536 is:0.038894860951321865 be:0.038140659589091734 not:0.03772128147218103 are:0.034426117905883166 or:0.024878495538802163 been:0.023522727119673688 were:0.019163849589453157 it:0.015283903629758521 to:0.014391773214224605 of:0.013965349731533412 done:0.012664852776923865 And:0.01254716490096375 doing:0.010829678466567882 so:0.010446987483592594 :0.4002391665375314 +the:0.16252600296301706 of:0.09943636141121946 a:0.06972061183976204 to:0.05786006055271911 and:0.051901321414837935 be:0.037439623662398995 in:0.027926045399370266 is:0.026607440308126628 not:0.024117671416066706 was:0.023783954316327426 for:0.02116560723292378 or:0.019279992189698437 their:0.01878366798909115 his:0.0183649522149638 been:0.016598750070275194 are:0.014734104368434184 at:0.014726030078833321 no:0.01294859103405944 with:0.012367286558919744 :0.2687119249789553 +to:0.3340854217858661 will:0.09075842198718949 would:0.0644530370776352 not:0.05006165125185367 I:0.04566311864176302 and:0.04273960970797131 the:0.03532648809153355 can:0.031317611261626514 they:0.02506209629556197 we:0.022877714522365405 could:0.02251083492567348 must:0.021008302815053892 who:0.020639192730710108 should:0.019540439168526814 under-:0.018126764863281235 a:0.016671112725624555 may:0.013416090029144243 you:0.012843906922835872 cannot:0.012565823477989495 :0.09933236171779405 +men:0.027616844300487994 made:0.019849983778980982 wife:0.015489208194830392 up:0.01335805477555324 right:0.010267416782083118 in:0.009955683957183728 city:0.008560249272655574 day:0.008397037094277738 it:0.008393658617337157 power:0.008274950656347469 out:0.008137138909058237 life:0.0078022731548374885 them:0.0074289236425623874 him:0.007375512923730685 man:0.007333720694076842 place:0.007050386542717014 work:0.007040952603772092 friends:0.006894319224528162 quiet:0.0067483321959677265 :0.803025352679012 +number:0.04149975859908773 out:0.03057059929473371 day:0.021927644621538667 one:0.019891149501342707 and:0.01797545436478611 tion:0.017450583710298194 part:0.0159194098134021 time:0.015804361070277988 that:0.015671248571732733 amount:0.015584180976045026 state:0.015202515105795265 line:0.014530163056404354 all:0.013753431698718444 condition:0.01308947454585428 people:0.01259393816357188 matter:0.0121017625013793 purpose:0.011755763895451727 cause:0.011462532553054386 some:0.011325765697139481 :0.670890262259386 +of:0.2415488423401139 in:0.09614579569811586 to:0.08289570162165452 and:0.05599323906157093 by:0.05435401375185492 on:0.05161224156187877 that:0.04698986103240531 with:0.04266007323634258 for:0.038146632832732785 from:0.034336461736242704 all:0.02729319701129252 at:0.02578339019324652 In:0.02431910430341181 under:0.015452351875953079 upon:0.015278365437033287 over:0.011097545265403254 into:0.010460869716309317 as:0.01040527890486728 through:0.008998754079741452 :0.10522828033982921 +the:0.711323830325688 The:0.0517383752692065 a:0.033625706017670606 re-:0.025316995831559965 tho:0.0238862055245919 and:0.02207495355502354 his:0.013515821573108247 this:0.011041264121490042 to:0.010670890106449228 tbe:0.009675068250987864 an:0.009636880954557343 of:0.008094136506821129 their:0.007363693085605854 will:0.005593893364173423 re­:0.005568594201297437 our:0.0047881722685491025 that:0.004716324373246072 re¬:0.0042930581405776795 its:0.004259352780270499 :0.03181678374912559 +of:0.28767355066866834 to:0.08775711267569858 in:0.08678131196995101 and:0.05160598694501188 on:0.04646139928102899 by:0.04519522654900943 for:0.044547789071328545 with:0.03396756772609607 that:0.033699232901107726 from:0.03075346596941143 at:0.027039283056790858 In:0.021061449543044047 as:0.017514234937992545 all:0.012543839382496166 upon:0.011844431150487573 is:0.00998972746569266 was:0.008814315973987914 into:0.008557199930727406 through:0.007781895704231326 :0.1254109790972375 +the:0.39749834532651884 a:0.07520030034269234 and:0.05540858759821703 The:0.03273515726769502 tho:0.030061875542463562 of:0.020144331424922633 tbe:0.014929647509541684 in:0.014268129706664795 or:0.013333166761078447 .:0.013287381914101323 an:0.009000188755386574 to:0.00880680429595084 :0.007943763822197133 Mr.:0.00773879605474787 by:0.007328417831573476 as:0.005922572098978465 for:0.0047526933692942485 that:0.004736121968310169 on:0.004594595720579333 :0.2713091226890862 +the:0.16883506074108198 of:0.10345999980581193 and:0.07765091647747123 Mr.:0.042646070294986925 a:0.03676854853394007 to:0.02730423700154303 The:0.023555615107356022 .:0.020409359832543682 by:0.018024363299732695 in:0.013897353732280127 for:0.01331089079449869 with:0.011100144844755954 that:0.010788179786794411 Mrs.:0.010587736569899649 or:0.010484845999064638 tho:0.010440233278329509 :0.009960897908832863 their:0.009790656798233792 his:0.00974718170240166 :0.37023770749044116 +the:0.5448308972792827 of:0.09485343529789804 and:0.04114188826194257 tho:0.02886173604170696 their:0.022311460223973553 other:0.01929698507123277 The:0.018486684178449793 his:0.017050502317025946 in:0.016628062259356636 two:0.014934382873584564 for:0.013830011387108617 its:0.012120598525169904 tbe:0.011668610592701816 these:0.010944644823579666 our:0.009238155751034031 with:0.008766422504582639 same:0.007953974332269369 a:0.0075481073471880475 all:0.007328134642487804 :0.09120530628942451 +the:0.13552825635915303 of:0.1029805599383836 and:0.056621969468085516 a:0.03688610695349926 to:0.035891609243247594 at:0.027107278804001954 in:0.025080984553754897 be:0.020537450285025776 his:0.019054889112167003 was:0.01855957709963544 for:0.016758218523239065 an:0.014366761612739228 is:0.01297023757594031 by:0.012728027895913475 or:0.011269715867108057 .:0.011108667822817574 as:0.010004430656547202 :0.009973418216775389 this:0.009593732367737895 :0.41197810764422776 +:0.07523183015059973 it.:0.02070988598866393 them.:0.01907899641687738 time.:0.011287147362665685 him.:0.011130892685454008 country.:0.009455391098321072 of:0.009020645918289034 day.:0.009001452252081316 .:0.008036415452182463 years.:0.007534002617585075 city.:0.007442715014521072 year.:0.007146198197001869 work.:0.0069197576276155935 life.:0.006110476743717124 place.:0.0056303413139994485 men.:0.005574085578140835 world.:0.0050965047354157855 out.:0.005089619804668689 people.:0.005050814156398614 :0.7644528268858013 +w:0.5092813207240426 and:0.04863918192045862 of:0.028146776148130288 was:0.026111281420267207 is:0.022651427750925008 a:0.01569474858700989 have:0.014879955432108233 :0.013511191185905123 are:0.012295861851643313 the:0.011358650467147983 to:0.009419687344409339 sh:0.008786304326724633 will:0.008264582534640174 that:0.0075748348536892485 has:0.007523667891910108 had:0.0074258702656651 not:0.007133238168751213 be:0.007043185318147461 been:0.0069630848466363 :0.22629514896178804 +of:0.2878876095826299 to:0.11553817730718587 for:0.08439937584142697 with:0.0648457874239805 upon:0.038947598139692854 among:0.03564093561511468 by:0.0229709278983573 from:0.02269308045000296 before:0.019989036164968874 on:0.019677714891382245 told:0.019653022681468728 in:0.019467258047624145 keep:0.018394993220715233 about:0.016775993883142194 against:0.016494081387117672 put:0.014543140565909558 see:0.01356247388620939 give:0.011757816184056542 at:0.0109242877433833 :0.14483668908563113 +and:0.23151992010901734 was:0.06757098582007047 is:0.0511669887794544 are:0.03870611194813118 do:0.038316226691581697 that:0.03221792407278584 or:0.029898268955633342 were:0.026202200623709107 but:0.024421052551668754 be:0.02394160849244298 not:0.021095960343473278 And:0.020878289514662546 been:0.016731703139462442 for:0.014491023925686148 of:0.014328974359160465 to:0.01195269172875241 done:0.011820264908321651 doing:0.010855032229522985 it:0.010091128666469945 :0.302793643139993 +the:0.7548881881646617 tho:0.026187506916196684 a:0.01936805989170891 of:0.018443096286885396 this:0.015692071798236305 The:0.013364495952754636 tbe:0.011331342915136189 our:0.008953885632046937 American:0.007035361733902832 said:0.006886000409783283 York:0.0051138848855032315 his:0.004786806655782512 and:0.0038419921590311596 State:0.0030207200952370823 Civil:0.0028485688231691246 national:0.002826317631268867 in:0.0028125750987037994 their:0.0026911000711923503 new:0.0026396661654986523 :0.08626835871330024 +it:0.1764555718851308 It:0.14283493690793594 which:0.07448415484194512 he:0.051356199621528896 and:0.044128980146408536 there:0.040301721360388086 what:0.03614212790887232 that:0.035641617740640924 This:0.031796669711603255 He:0.020214424621068722 who:0.018644112788445414 There:0.014443388594329731 this:0.01438509022695194 as:0.012129534657080065 land:0.010088896041434977 man:0.00922873250650129 country:0.007853950415322304 she:0.007851318230904392 one:0.00668418477144168 :0.24433438702206556 +is:0.21971053838173435 was:0.1622685740218673 and:0.1508640689623828 are:0.060875599885087506 were:0.04105766131324076 but:0.03888095423027202 Is:0.028244743171882802 He:0.02800633287387755 has:0.02359539585393518 have:0.015434546807822674 It:0.01343993111028509 had:0.01316837709282332 he:0.010721201034415937 be:0.010420645073435637 it:0.010204314055721855 been:0.009874766342600826 that:0.007762512250541094 I:0.007623618039053731 which:0.006870542482714833 :0.13997567701630473 +of:0.3229006485882226 in:0.091016670548603 to:0.08889283120684915 that:0.06501101486870864 and:0.05598000981248931 on:0.04867463982952786 by:0.0436185140268337 from:0.032606102207195065 with:0.028118517789090174 for:0.023234982095323944 as:0.016451437826248593 In:0.0162372854284205 upon:0.01490434429178597 into:0.012526049767731898 which:0.012201088124729762 when:0.009784521902816198 at:0.00900403293176017 under:0.008971727593238598 all:0.008152836630761558 :0.0907127445296633 +and:0.1536839027304294 the:0.11889508829334539 most:0.08831135751853884 a:0.07487233233055106 that:0.0651477705254814 of:0.05113211454968048 to:0.05086151499232756 in:0.03732566786071194 are:0.030588700828500324 or:0.027087097595839698 some:0.023315776589546013 this:0.020430358940891184 many:0.020225830426927487 is:0.019354751840246903 one:0.01849031974192119 all:0.017620394793229837 The:0.016602514901091946 with:0.016571889472054593 his:0.01653715660383202 :0.13194545946485275 +that:0.2679495631073823 and:0.1251864070781587 as:0.06960434255140235 if:0.05620986343108479 which:0.047652388323506455 but:0.04472811985044428 why:0.030024189244998365 when:0.02932697435939476 If:0.026104191510988944 what:0.023485767900229465 But:0.01822845506637375 where:0.017261288204763626 than:0.015257106401566493 because:0.012146362020434016 think:0.01138719835924413 whom:0.011095271801215984 while:0.009175412540560174 whether:0.00907331571919723 for:0.007593469655609998 :0.16751031287344414 +the:0.11772829171290487 and:0.0781674885065048 of:0.07167970430110675 to:0.05380593022319147 in:0.04338783981710163 his:0.02915440943526211 be:0.029040680129466177 a:0.026059035354864663 for:0.024832692890857867 was:0.023738743175792113 is:0.022059593269131022 their:0.019752320906839288 he:0.017656238599000715 as:0.016478255872202495 much:0.016066705385182248 that:0.015582232227554463 at:0.012400807465895353 so:0.012133545205562214 her:0.011193135755430506 :0.3580823497661493 +Harper's:0.07377265915228111 the:0.040182186272425195 of:0.024171389439781216 and:0.014489817927717015 No:0.011696297382136095 Mr.:0.010801525473994721 lying:0.010203687523796056 lot:0.00849943666798199 a:0.006828833799067963 .:0.00680371347600587 :0.005421700838586514 No.:0.004860625569349429 The:0.004770068421225191 said:0.004319042327375032 June:0.004026519727926822 de-:0.003856676462048376 feet:0.003706680542759198 in:0.0031568150960576188 :0.0029590277856842854 :0.7544732961138003 +as:0.06042858246012138 and:0.05741880766077303 it:0.047766236137050944 up:0.04283931922438982 addition:0.02748135694574055 regard:0.02355227753757134 came:0.023502213602958504 come:0.0230117950668034 similar:0.021538935248319725 them:0.02149233766555052 back:0.02003743661124647 is:0.019897891309712933 reference:0.01978245529259943 known:0.01969910766986667 him:0.018170924624317734 attention:0.017436158689781232 given:0.017106907689799566 according:0.017015191962389223 equal:0.01691253615175549 :0.483909528449252 +Van:0.8539878641330043 of:0.014595191959705142 and:0.0057857430257697694 the:0.004821298352329341 A:0.003992187104840395 Mr.:0.0035656213921589973 author-:0.002680212364489108 a:0.0022534057625179164 :0.0022268173141835926 w:0.0017512091463089496 .:0.001584342010219339 pres-:0.001327508323440533 was:0.0012879320360735787 pro-:0.0012864915181206185 -:0.001271444010555047 The:0.0012622800611296271 St.:0.0012099221880462747 pro:0.0011457109993800014 last:0.0009921061859029586 :0.0919727121118245 +not:0.35179900292816996 is:0.10259459106491546 was:0.08334949648492733 and:0.04176533389390588 are:0.04113427338508345 the:0.02782703896279509 be:0.025332680931690735 were:0.024058288421560707 had:0.017696297285411063 Is:0.016171887999309065 as:0.015990960500911096 it:0.015624390060752988 have:0.014425738532771354 but:0.014368299896722822 would:0.011447265114740214 Not:0.011241032033617735 has:0.010514666650076412 that:0.010266386744825814 can:0.010196712525480038 :0.15319565658233275 +be:0.13670277759873675 was:0.09027083203172702 and:0.0854410655035394 have:0.07162484183898271 had:0.06915727906932415 are:0.0688091537754642 been:0.06779827386142746 were:0.06261533493511791 is:0.05899175252087368 has:0.049285046923089056 so:0.021844995605852856 not:0.019862404769994905 being:0.016674328125957604 the:0.015962257790176924 he:0.015834882276991098 or:0.014886560340303027 they:0.011425659750287736 to:0.011209711531401684 that:0.009334028895172142 :0.1012688128555797 +the:0.11919516938815296 of:0.07230453158552728 and:0.05781056740443249 a:0.043018564803886335 to:0.031305092790907506 in:0.020848713353460488 at:0.014270110001066288 .:0.012526810245749479 :0.012413283442322082 for:0.011719122709941797 by:0.010808400946589808 or:0.010404172990115616 The:0.01003576004804544 with:0.009811868184449042 tho:0.009295902015355835 was:0.008924239095331684 that:0.008672304223433876 is:0.0085591147338948 be:0.008335143826716943 :0.5187411282106204 +be:0.11930013899000266 and:0.1152951430850049 was:0.09923380718481961 he:0.0769500085831261 been:0.04161873459623744 were:0.04014357273571255 I:0.040083718263865704 they:0.03695033390586468 have:0.03459946071513523 had:0.027505248625696272 are:0.02632762823610605 we:0.025914365362782136 the:0.02286815161143054 has:0.01928485050660392 not:0.018583891943343964 ever:0.018501281902453096 is:0.018419365004544528 she:0.014800866217225917 who:0.014756385932408425 :0.1878630465976363 +in:0.111989678595562 as:0.10736607021166272 for:0.09341736036026188 of:0.08937918580287897 is:0.05683091383437657 with:0.05429595676680341 to:0.04582462203300615 and:0.04061019409860853 such:0.03698330495067771 was:0.03578762168303261 at:0.03430819895980519 In:0.027969432649773064 made:0.023355679953104887 on:0.022401721864306133 that:0.021409339355906425 make:0.019961874430383844 by:0.019901612495111062 have:0.0190096446523124 be:0.01855925738550412 :0.11963832991692233 +one:0.1131489054449633 some:0.07292683844455583 many:0.04177586335839287 all:0.03741238811831752 out:0.036733531510679984 part:0.03646128012114051 any:0.025949144817565935 most:0.023945150594173712 portion:0.022626717977395593 that:0.018458867259454427 Some:0.014710432673859845 much:0.01381627062899526 tion:0.01361415857188464 people:0.013613525641643035 members:0.013050762655861154 result:0.012865030630324015 and:0.012800804287906304 none:0.012231252532968825 Many:0.011996314411964118 :0.4508627603179531 +is:0.07936041588690286 and:0.07911277000199148 was:0.060395719314691544 be:0.04779088103006883 are:0.04255808554043752 it:0.02628538551789101 made:0.022076413580656824 not:0.0213351186808953 were:0.019692143757810275 been:0.019376721056162078 that:0.019219486264660583 will:0.018955993636697338 now:0.01700052181126683 time:0.01654016321448125 put:0.01602090600949294 them:0.014645696710220464 him:0.014221291994059672 found:0.013072559493827454 out:0.012787842792378929 :0.4385518837054068 +in:0.2871169770425693 a:0.2354467197733633 In:0.1451776172066279 the:0.12723469338797003 this:0.03325616832527951 and:0.017392280460439457 of:0.010032621244475898 iu:0.00998421574137245 great:0.009021436877247746 tho:0.008852930555172004 full:0.008755447528800262 "In:0.008690299244826727 by:0.008209528362970352 to:0.008199606647534762 that:0.008011884558991357 every:0.0064537019049452585 The:0.006425752306787278 A:0.006240518394170674 on:0.0053130886413752755 :0.0491845117950805 +of:0.15074559927155404 to:0.1401390010182626 in:0.10772178934400944 at:0.09841822195417989 on:0.05874956260658439 and:0.05791534212250227 from:0.05119483000707496 with:0.034817456404815934 that:0.031791886055837715 by:0.026445642585382047 In:0.024316068846302576 for:0.023542976025653133 is:0.018969304123787084 upon:0.01834564775303941 as:0.01651896024435507 was:0.014967600866093318 under:0.01253279681369491 into:0.010911223541898073 which:0.010703275772607967 :0.09025281464236516 +it:0.22991730441656374 It:0.14452381656517574 which:0.06374262721510725 he:0.04985351401572595 there:0.0384192851672805 that:0.038150038364305 and:0.03035788462642254 who:0.02370319995946771 what:0.019807661099042792 as:0.014948913905626183 work:0.013069897112901062 He:0.012396619143897999 There:0.010628285476161518 This:0.010134742040757221 land:0.00989580011092966 she:0.009322358000948173 country:0.007697927279129241 water:0.007354289774009871 this:0.007300132822480244 :0.2577757029040676 +it:0.11857892928876056 which:0.10419954526017984 It:0.10229720510101595 that:0.06796245048918885 who:0.06088908826247786 he:0.060731706658395446 there:0.047718276913133226 and:0.0298646407467943 There:0.025721626378001235 He:0.023765504777663107 default:0.02149030696489031 as:0.019132676760165265 This:0.015088553278066501 she:0.01413948392901254 what:0.014110548249504374 this:0.009613248172212615 work:0.008813388419150843 man:0.006677000754574867 country:0.0066605789516794795 :0.24154524064513283 +went:0.06527228071368989 go:0.05619934446464802 came:0.040550395705713206 back:0.03555337887687652 it:0.035376220595961315 out:0.03490526632483226 put:0.03355619440406013 down:0.03042882513856963 come:0.028160683632563837 them:0.027165266356164442 enter:0.02685927818294859 up:0.02683395703545789 brought:0.02610450155923051 way:0.025650479473236742 taken:0.024297963337896748 get:0.02381342012574062 entered:0.02315017182132224 thrown:0.022312163284405207 going:0.021115908751936613 :0.3916943002147456 +and:0.1033366960942769 was:0.041246468125173734 arrived:0.03319463710266379 that:0.02994810703920176 but:0.029496995836373198 is:0.024247053759927938 made:0.023963073229111467 held:0.023808662486176437 look:0.023307794027366744 appear:0.022159007079112388 be:0.01861049461679925 not:0.015973717459714237 required:0.014868588615543034 do:0.014046271475169523 are:0.014013336634504086 sold:0.01399397177892937 done:0.013923992849550667 him:0.01370182491454535 them:0.013114960732308752 :0.5120443461435513 +called:0.05758689213901183 and:0.05446706015564198 depend:0.02917110299975005 due:0.02863378099077757 levied:0.02800492448618491 look:0.027457305602688598 based:0.02723857566733502 made:0.026298347606011935 placed:0.025826391390689693 imposed:0.024800604590392093 depends:0.024795554463477424 conferred:0.02306331707020643 down:0.01993417585318586 put:0.01965167275180742 agreed:0.01878767150880491 call:0.01863835472847434 entered:0.018603416743530086 looked:0.017293109211035187 effect:0.014125819041882632 :0.49462192299911206 +of:0.21665624379490442 to:0.11414895526171316 in:0.10041018166810524 for:0.07287452509873099 and:0.05827409822665356 by:0.0558167968824953 that:0.04242629805248354 from:0.03984094745717165 with:0.03267415237489519 on:0.026345928045145607 at:0.02576189890901195 In:0.025631538943784355 under:0.02105715274987661 as:0.016060272025538776 all:0.0137596992479582 about:0.011177334735214605 when:0.010605173777325711 which:0.010486774295831855 into:0.01010569646909175 :0.09488633198406753 +is:0.2340304753977605 was:0.17323613805226376 are:0.07691567028768159 were:0.03897484970525509 Is:0.03745818979056135 as:0.03206347402244312 it:0.0314762360827129 and:0.030421281202976058 do:0.02861040885529661 had:0.02396638220684768 have:0.02057072841471064 has:0.019793130997144023 if:0.018445532343451164 be:0.0172777360150511 could:0.01633567667566816 will:0.013953362707413547 am:0.01353884262697409 would:0.0127900961717386 but:0.012674830642594535 :0.14646695780145547 +the:0.07308391748213149 and:0.0650236830030406 of:0.06160769942055397 to:0.052268247186185425 be:0.047076308054616864 a:0.0372396837426395 in:0.024252681833945605 was:0.022488248066258144 is:0.02167905136294673 for:0.02153860696418792 are:0.020623701936193742 or:0.01929925567751662 re-:0.01871171112926931 been:0.01861238611348457 pro-:0.01601091340941376 his:0.013531807626344868 not:0.013315154707748283 were:0.013106637980199716 he:0.012779513704430508 :0.42675079059889237 +a:0.20806541431886566 so:0.15906621930226703 the:0.13959734575710134 has:0.05072247074775818 have:0.04978648800227359 had:0.046048061062018524 and:0.031329886266510246 very:0.03128953324902514 not:0.02650094232309101 as:0.026026053726112337 how:0.022254263572799648 of:0.02096111988914125 his:0.02001373634109232 The:0.01897653208893726 was:0.01654643198367972 that:0.015494398475432138 is:0.014395747854511842 with:0.013615326708182177 be:0.011116862104718584 :0.07719316622648202 +the:0.23850006300974969 a:0.13426404160561808 of:0.09233218578470154 last:0.08968377013709149 this:0.06027130530169819 past:0.03760784859322278 some:0.03515557748242917 for:0.03289221463371813 his:0.031207336945158183 in:0.029826555994001684 other:0.02524036989180275 their:0.019657189955416286 next:0.019129703212281152 after:0.018514715023955054 its:0.016759204670574082 that:0.01621997468306543 to:0.016074310870806324 and:0.01601435180638185 short:0.015794879704790016 :0.0538544006935381 +and:0.07705437548817387 depend:0.031536193375950296 based:0.03144111872793531 placed:0.030957065963502946 depends:0.03075765919212402 called:0.030155936973754766 down:0.02681736716319054 made:0.026577710722022318 effect:0.023344764020024934 that:0.02149799173318628 look:0.02036076372291408 due:0.02026744173692952 call:0.019789339473829694 levied:0.01970103437603757 imposed:0.018928989316509288 put:0.01802119246063272 dependent:0.01689647076264392 out:0.015342186135269933 entered:0.01437601109950992 :0.505176387555858 +of:0.21480643992702297 on:0.10714420023790953 to:0.08510030327084041 in:0.08058174082965769 at:0.056838710491215624 and:0.05169684199038877 from:0.04950190043676855 for:0.042101549075837734 by:0.0378167132472333 that:0.032907860730419035 In:0.02635112198208922 with:0.025992933016604606 all:0.013649855843894438 upon:0.012575664732505166 was:0.01156155902098435 On:0.011516797463438007 is:0.011404324408730173 after:0.009941643919402086 until:0.009067171603346096 :0.10844266777171223 +the:0.14079329559641862 and:0.07335420952045946 of:0.05793894542236096 Mr.:0.04346309616022294 a:0.03907791988695134 The:0.03283601407044736 that:0.028348916074235203 .:0.013955920213751376 to:0.01357171014852909 in:0.012786987573025422 his:0.011380810722856073 he:0.010552654002168755 which:0.010347646987392298 :0.010328589226549705 I:0.009650058633430852 tho:0.008977952630285233 an:0.00852992868348483 or:0.00804792266869466 Mrs.:0.007855796515195976 :0.4572016252635398 +the:0.4296839047704616 of:0.1464472013123313 The:0.05246224171012556 in:0.04448795624778234 and:0.042635826136703706 that:0.03402871663515241 tho:0.019887218939971453 from:0.013750453417935389 County,:0.010137530202879219 In:0.009985040999010111 to:0.009347193971339667 a:0.007370756771972201 by:0.006178561461497679 tbe:0.006110692361541917 county,:0.005560453853394401 on:0.004029859697698843 far:0.003954420486584818 Mr.:0.003921392899804909 this:0.0036193585283605936 :0.14540121959545188 +be:0.1624217324272274 and:0.09618843178572241 was:0.07406352563724786 is:0.06129013876001196 been:0.05876564917447755 he:0.0482540633405129 the:0.03995356271459479 are:0.03472131488105927 has:0.0229255226806873 were:0.022909687582620557 had:0.0203312950554429 have:0.020139963214605438 I:0.019929640973390894 or:0.019352327780226462 it:0.01901287416424866 not:0.018740237631730685 being:0.016543797378545253 time:0.0149922724612857 bo:0.011741502587729423 :0.21672245976863258 +the:0.19749125756169547 Mr.:0.07112699624208033 of:0.06603367254516487 The:0.05768776091110846 and:0.05327374818694666 that:0.0420321405581567 a:0.02582588575453538 his:0.0169326573605278 Mrs.:0.014795070048324819 tho:0.014769024234222154 which:0.011478554728659614 he:0.01110833274239838 as:0.010988112958762878 I:0.010409931249854676 in:0.010294293477152827 :0.008879223773482728 to:0.008465710829358392 for:0.008281932125153052 if:0.008197991279302505 :0.3509277034331123 +to:0.27772336223592736 the:0.10314387932231447 and:0.09471635652767747 I:0.04596635483769646 will:0.03411562800078823 not:0.0327690077455034 would:0.02536413025356537 a:0.018415331387306846 they:0.017505807380397004 can:0.01364109000684078 could:0.011722345434343837 1:0.011041339980457261 The:0.010136766404403596 we:0.010114888832370394 should:0.00993990776336007 or:0.009704700460248692 only:0.008953852191015988 who:0.008793898479516159 may:0.00849168257719769 :0.24673967017906892 +want:0.06774843185421937 glad:0.058574876632791574 him:0.04820793812901518 and:0.04460532431883909 wanted:0.04375149805839773 able:0.04113914728968745 me:0.03294005713114922 them:0.029734713735466815 surprised:0.02911941569864074 desire:0.02737691519170368 wish:0.027063386208170333 going:0.02705919129329535 enough:0.026197383393453743 fail:0.025872799535738393 like:0.02560742183283883 not:0.025409850956627813 allowed:0.025029547429439095 right:0.02443015532235613 began:0.022092342925096285 :0.3470396030630732 +and:0.07895257911471103 was:0.03596317658514438 out:0.024016824392823457 that:0.023672598027062328 placed:0.022844208461019616 work:0.021707439938587154 made:0.020781005318872947 is:0.020224993929329655 up:0.019794182040466738 put:0.018288921183371155 down:0.0171740551508179 interest:0.01663630075189571 point:0.01659978677065351 him:0.016175999448187352 held:0.015562908663841706 Dakota,:0.014616466073415059 place:0.01424333231426501 Minnesota,:0.014067166610364513 it:0.013665465625771424 :0.5740125895993994 +as:0.87252140452724 so:0.028065327764941368 ns:0.011773237433853863 aa:0.01090329876322181 As:0.010278422318093861 is:0.008820531183516497 be:0.007945988383149732 and:0.005928475622869833 very:0.005709877399414792 was:0.005242134495503118 are:0.0026859600428669247 a*:0.0024308058588011624 So:0.0019344379250489977 pretty:0.0019195478326968977 a:0.001870336261733337 not:0.0016102585220664726 Is:0.0015272309073977527 been:0.001369916478948576 were:0.0013632365183097583 :0.015099571760325194 +of:0.28767355066866834 to:0.08775711267569858 in:0.08678131196995101 and:0.05160598694501188 on:0.04646139928102899 by:0.04519522654900943 for:0.044547789071328545 with:0.03396756772609607 that:0.033699232901107726 from:0.03075346596941143 at:0.027039283056790858 In:0.021061449543044047 as:0.017514234937992545 all:0.012543839382496166 upon:0.011844431150487573 is:0.00998972746569266 was:0.008814315973987914 into:0.008557199930727406 through:0.007781895704231326 :0.1254109790972375 +set:0.07145998532693307 it:0.06414196803106684 put:0.05979261816036348 came:0.05792603932466702 taken:0.05411170755382997 went:0.049097822914236845 made:0.040138736591397696 take:0.03846796028396705 picked:0.03785275738758616 come:0.03731542749693623 took:0.030399551590097666 go:0.025376060972836047 got:0.024916273465953574 keep:0.0242089141824259 them:0.023956870038909957 looked:0.02384620138476755 kept:0.022942163040326622 and:0.021171180085381852 brought:0.01874856943292901 :0.2731291927353875 +be:0.24698657954581038 is:0.1534659539156283 was:0.07611633481044548 not:0.053468338167668245 it:0.05040000351942353 been:0.04627417112610193 and:0.04135743919148381 as:0.03604699870411294 are:0.0352790249580074 the:0.03181727316215898 deem:0.021276791156557985 Is:0.01972486831474051 absolutely:0.01696539715768528 were:0.016475234943199246 so:0.014048496532759521 bo:0.013292891636891067 deemed:0.013181947060691788 very:0.011936392733800089 made:0.011384788032158413 :0.08950107533067507 +the:0.13977190192981195 and:0.08186052419204365 of:0.07828377301995071 that:0.06131553234830777 in:0.05251852677304626 which:0.027289048237099937 The:0.022889683467874154 as:0.019998121622106423 Mr.:0.01853660288643498 for:0.01725916962853093 to:0.016927741616230924 no:0.015967886782494826 any:0.015816531575019853 or:0.014672847824281488 a:0.01291892021413785 In:0.012624172569276252 such:0.012486164779167443 said:0.011471326157554106 he:0.010991487911195887 :0.3554000364654346 +the:0.7283149393127173 The:0.09906963339589026 a:0.03576210603350093 tho:0.035685411741465424 his:0.01589753132207859 tbe:0.013053404490272971 this:0.01224152982591507 their:0.006030542577502694 its:0.00493478369601068 our:0.0044995047725343495 an:0.004381924615132082 whose:0.004110811829260131 Tho:0.0040623904201677365 my:0.00330872157021325 of:0.0028920842663086436 This:0.002616208665030504 whole:0.0025946217165704077 His:0.0024090177290940185 her:0.00221010378647206 :0.014924728233863007 +of:0.19508272470149568 a:0.12184283927083027 the:0.06102260230614177 to:0.05678969656348057 in:0.03978241558494561 and:0.03407303537203752 as:0.03291769839687694 on:0.02416509205215044 was:0.024164735284336773 for:0.023492933194273865 at:0.023166414313049295 with:0.022423266957178667 be:0.02071942021081816 this:0.017124896540697654 been:0.016723683754372425 that:0.015279578910828902 by:0.013134076842539819 his:0.0129598994771367 In:0.010842452634083368 :0.2332925376327256 +and:0.2165984861380868 that:0.06333725266727926 time:0.05590893579765518 but:0.04455073506962313 which:0.024326567092176805 or:0.021637973570393324 it:0.02018944676680352 day:0.016406622916710797 which,:0.015246939794102733 was:0.015030412460463249 as:0.01402706361015221 days:0.012940758577066197 do:0.012149627001444287 ago,:0.012128834619601169 year:0.011499849088755369 of:0.011395248806016502 them:0.01064084653668472 for:0.010181103871486866 is:0.009813102703754193 :0.4009901929117437 +was:0.10758739988259915 is:0.10409708324301789 of:0.09152240779016056 and:0.07374517399510444 an:0.061715940295053145 are:0.05105058551985945 the:0.05065709075117912 were:0.033283281618523765 in:0.030506658708327927 to:0.026932977312884007 for:0.026697845630214462 by:0.024187331392506176 be:0.020825607767977424 with:0.01720807439304782 Is:0.01592210680486243 been:0.01479178896368556 will:0.011331168411114742 or:0.011103237238451805 at:0.0098329310715113 :0.21600130920991883 +time:0.013349870782081531 it:0.012113126571558512 good:0.01163834200969597 more:0.011324353548583294 prompt:0.009819106583419735 due:0.009309484181162512 him:0.009289387517232326 them:0.008988349518853795 men:0.008376805440983083 health:0.008368700335812005 up:0.00816910368454759 rich:0.00789526735523786 all:0.007786773593696745 them,:0.007488770955890015 her:0.007361153458583512 it,:0.0072831645010562815 and:0.007269806022051221 in:0.007176926442787338 long:0.0065987371472438815 :0.8293927703495227 +of:0.28767355066866834 to:0.08775711267569858 in:0.08678131196995101 and:0.05160598694501188 on:0.04646139928102899 by:0.04519522654900943 for:0.044547789071328545 with:0.03396756772609607 that:0.033699232901107726 from:0.03075346596941143 at:0.027039283056790858 In:0.021061449543044047 as:0.017514234937992545 all:0.012543839382496166 upon:0.011844431150487573 is:0.00998972746569266 was:0.008814315973987914 into:0.008557199930727406 through:0.007781895704231326 :0.1254109790972375 +as:0.05729471634571925 up:0.04430965073015733 come:0.03915500656730188 and:0.034294293517799064 back:0.03411766687236335 came:0.03356402097212845 go:0.03245958305552573 it:0.026175332672653342 regard:0.025675490431796306 went:0.023774114907783788 return:0.023245457523849457 them:0.023151599188047635 him:0.02042951252271379 sent:0.01971150145819369 given:0.01952167086863279 brought:0.018577046663596164 out:0.018524484481550398 is:0.018218484921632427 down:0.016545073780232664 :0.4702552925183225 +they:0.16290325553461818 we:0.09142770432620347 who:0.07809332969391017 and:0.06392644490959382 you:0.06290311719344556 which:0.04776738985131482 They:0.042288973764962094 there:0.038089116928536275 We:0.03779959931608183 that:0.035826804830964745 There:0.023850816408693312 people:0.020785680052935067 men:0.01738603532850051 You:0.01452608334094247 but:0.012259842590668849 as:0.010736984122522055 women:0.010068715745136101 them:0.009116049713597465 I:0.007378368304397095 :0.21186568804297615 +the:0.22028177146617897 of:0.1241204794263622 to:0.07540612130215363 a:0.03026708550468196 and:0.02967954173550623 this:0.02741394284873733 for:0.024410065828628816 in:0.023913113496634043 The:0.021068087685823977 that:0.01869886777315361 an:0.018523639691292414 tho:0.01609664890497029 :0.01520904913943062 by:0.014761230606952848 or:0.012914374701568192 from:0.012210199408742965 tbe:0.009339873286648124 at:0.00879596352599955 said:0.007981533094334572 :0.2879084105721996 +not:0.23765354061690702 is:0.10673253065913212 the:0.10107980070203294 and:0.08819799173176796 was:0.08502663135807668 are:0.061018305455727416 were:0.039210734782845605 Is:0.01938207332930336 be:0.01766251415378525 Not:0.016974316759651976 as:0.01567710836116605 of:0.013789625588553331 The:0.013160835937813274 that:0.01253511164388648 had:0.012460101866874837 have:0.012378078355158004 has:0.011808584467403321 with:0.011685271813245275 would:0.011529107868599089 :0.11103773454807 +of:0.19600501857294825 in:0.10421155953130457 with:0.06136616264257306 is:0.05483640333289435 and:0.05229618286921259 by:0.0511310417857194 was:0.04939176424057664 to:0.04377348154799504 as:0.04365131826876052 on:0.039794057671374644 for:0.03215523740789718 In:0.02706884833854838 such:0.02588478119907331 be:0.021366282466078752 that:0.019980969581716246 made:0.019190535102228425 at:0.015338997101449457 from:0.01405215535369487 make:0.01402077820503805 :0.11348442478091625 +the:0.6198422147591465 The:0.15877765633713037 tho:0.03173478421667199 of:0.03129396510825058 this:0.015188112528956771 and:0.014586149684924986 tbe:0.00995018201011136 our:0.00992420745508821 a:0.009540962790533422 these:0.008235855986315382 its:0.008144277301211962 his:0.008057020219351268 their:0.008055652380698398 that:0.007543935732429699 an:0.0063342157528147045 such:0.00579952984022929 Tho:0.005671735484862465 by:0.005126210514428141 This:0.004525241345563147 :0.030668090551281422 +to:0.371835808243588 not:0.35493114151701366 will:0.05117429542374406 never:0.02872301689830548 would:0.02308430780533529 and:0.01765899011157234 a:0.013413283557610314 shall:0.010660017327052813 must:0.008722967222634577 can:0.008268991688763605 they:0.007673114133962582 well:0.006984100034173048 or:0.006482508013182641 could:0.006358167865374211 you:0.006189777170223322 may:0.005847179669127469 ever:0.0054353853348273855 also:0.005115630166120704 I:0.004841071817292955 :0.05560024600009553 +and:0.162177219441534 of:0.1608588289089863 to:0.0660159202051687 in:0.060844995295656554 from:0.039857767230199334 all:0.03892752081516152 on:0.022024384532784616 with:0.017530130277545523 said:0.016959040141371916 fact:0.016257067229980302 so:0.015174890996714478 as:0.01515484227884724 than:0.014559503412205738 In:0.013795032997876138 one:0.0134793590642305 at:0.013109345705813588 is:0.01291569646711913 for:0.01256028801829092 by:0.011870697862170208 :0.2749274691183433 +of:0.15866196531707819 and:0.0891919913573516 to:0.06744370203831616 for:0.0390608423562144 in:0.03905995828060676 with:0.0379821849381834 by:0.027986309183718867 from:0.023030237132769624 at:0.022080090824826145 or:0.013988644631409204 that:0.010272432814727134 In:0.009732294192592686 on:0.009244175049151843 upon:0.007873694846703206 about:0.007593941456606698 all:0.0074626738516429 over:0.004300599377545197 like:0.004208944087203438 after:0.0039030491541292575 :0.4159222691092233 +:0.03525682893204602 it.:0.02034197749316548 them.:0.014182404190542714 him.:0.01044425429435986 time.:0.0068980019078215705 country.:0.0065254090745001546 day.:0.005932484099622725 year.:0.005190372583968777 and:0.005152585231310158 people.:0.004436387307672767 tion.:0.004191994833527944 life.:0.004110005388571805 that:0.004094552425804724 one.:0.004068876182527436 me.:0.0040055036475643195 out.:0.00399641146237819 work.:0.00397198351326959 her.:0.003959978220111272 world.:0.003786187931959238 :0.8484538012792753 +of:0.15627374415383 the:0.15446359437448026 these:0.08984434656071409 These:0.05770035982838271 business:0.04676088119325018 young:0.046155129361952436 The:0.037655345771888005 two:0.03418655462693455 and:0.03377799670775394 many:0.030705834824752996 that:0.02460202227424207 white:0.022596487890841142 such:0.021454442493967087 other:0.020129059516218167 our:0.016235928325652228 all:0.015814487306359315 their:0.015525605815558997 Many:0.015001144147745152 good:0.013566748949904915 :0.14655028587557176 +of:0.18309268675724996 for:0.10480524637586719 in:0.10300166221594875 and:0.09766827162901898 to:0.08429091454775077 that:0.04808669370990606 with:0.03853012574542763 all:0.02969959840423163 on:0.025252985183733187 by:0.024681417455408153 In:0.024558639295533802 at:0.022002059759147513 from:0.01903111151042101 as:0.017260030324061936 do:0.01292160066553463 but:0.012677761010633042 upon:0.01253883239378855 when:0.010676331016606366 is:0.010506051166031274 :0.11771798083369955 +and:0.21912857797141996 that:0.12612960372662618 as:0.09741335600300842 but:0.0412915095351797 even:0.037094035169566664 And:0.02620564510440045 or:0.023466409296357082 But:0.022118025687574577 see:0.02169483661620632 ;:0.0127932422353468 and,:0.012772737420970863 know:0.010709127131252688 Even:0.010049673725760938 that,:0.009609381980062498 asked:0.008178627448094342 or,:0.007415157645841991 which:0.00704121033615635 doubtful:0.006910235158049905 cause,:0.006626540591359064 :0.2923520672167652 +a:0.1924612359452715 the:0.10428313659752153 they:0.0691545630747475 who:0.06749600810202494 I:0.06284023653399946 not:0.06233970687356457 we:0.06089829454859592 and:0.048583636003632406 to:0.0370820691759793 no:0.034373465954726276 you:0.026547244711123286 his:0.021426635058223138 their:0.020563677097654238 will:0.018921650375472616 We:0.017790380843155144 he:0.017325599056607598 would:0.01594861234783113 sincere:0.01567925143781848 earnest:0.015262820531224089 :0.09002177573082686 +sum:0.03352282876311118 number:0.028116684882597106 line:0.019995206059833036 city:0.01946514558931857 out:0.019275318828420953 day:0.01666865340772654 county:0.014872697538657208 amount:0.013254184849875051 Board:0.01252325449624941 town:0.012449555905674143 side:0.011663975251122375 part:0.011517157473718155 County:0.011460540331966697 state:0.011087331502382173 City:0.010878919191854432 purpose:0.01081028255427907 and:0.010297866493795984 way:0.009848747943663767 name:0.009522170936943183 :0.711769477998811 +of:0.28767355066866834 to:0.08775711267569858 in:0.08678131196995101 and:0.05160598694501188 on:0.04646139928102899 by:0.04519522654900943 for:0.044547789071328545 with:0.03396756772609607 that:0.033699232901107726 from:0.03075346596941143 at:0.027039283056790858 In:0.021061449543044047 as:0.017514234937992545 all:0.012543839382496166 upon:0.011844431150487573 is:0.00998972746569266 was:0.008814315973987914 into:0.008557199930727406 through:0.007781895704231326 :0.1254109790972375 +made:0.0999812034390529 and:0.06680208263369662 caused:0.02435411478715239 shown:0.02379785223577525 up:0.023253655008919294 ed:0.02312002180398423 out:0.022293807888227747 taken:0.021988971765594088 done:0.02128782706813444 given:0.020283609421760777 paid:0.017098570970207227 owned:0.01708227903067019 that:0.01698438626809451 or:0.016145946252097726 him:0.015808363688274 followed:0.015366441255538056 appointed:0.015126279845513936 held:0.013990473525433292 approved:0.013949758860964168 :0.5102843542509091 +the:0.16807735899698817 of:0.10541662057906837 and:0.05138367848570702 a:0.04141865232648221 to:0.0385989743764065 in:0.026264864977736738 was:0.019530675665220657 his:0.018900421021236905 be:0.017373825006196972 their:0.015767721170721456 for:0.01557246589796783 with:0.014071419046630446 is:0.012922913111931644 at:0.012690452250034052 are:0.010702713108721902 .:0.010158075558988393 Mr.:0.009672788574483367 tho:0.009612591781990074 were:0.009549306361446321 :0.391314481702041 +any:0.23921489311480248 the:0.14583100375769484 and:0.1413152266791573 no:0.12126240958936595 or:0.05059513081967228 some:0.04069939237606408 all:0.037910719413927575 of:0.02765026425095175 in:0.02750061532566488 The:0.021403673504167723 for:0.019511111161958417 such:0.017401528062769744 with:0.016597592262568087 many:0.01427449080767438 an-:0.012986976966772337 In:0.012143700519094325 every:0.011922177530049484 each:0.008543785208866944 their:0.008492047856982652 :0.023743260791794788 +the:0.4277378562953591 at:0.2217099711840499 At:0.0446310797343357 tho:0.028874276132233437 of:0.027235477348364772 to:0.025708475777265757 and:0.025665238005447604 The:0.01885673010148003 on:0.01371808592960121 for:0.013552569384428394 tbe:0.009890769168799081 will:0.009039397433249918 than:0.008818903402395512 here:0.008181507701201365 said:0.0077124658714521725 week:0.0073588294855717355 that:0.0073413724182042695 year:0.006356321896822184 a:0.006024036753335233 :0.08058663597640263 +the:0.1022505818467008 and:0.05036271298229135 at:0.038968256110680645 a:0.0364399752578153 -:0.024738075632820516 .:0.02402096087681708 :0.0216095116011451 of:0.021301739458028858 25:0.01912380529641451 5:0.016110899622324613 6:0.01568051307666095 4:0.013744244574471286 3:0.013047487214218292 was:0.01226925585886482 26:0.010444965986831374 an:0.010060130525168704 as:0.010051589523433758 1:0.009823772111540974 feet:0.009654282589299486 :0.5392972398544715 +that:0.14463452548565398 and:0.11682634874950754 but:0.0832682979483771 as:0.04437360222101289 which:0.0442616849980281 But:0.025528367260673295 what:0.02238547034739165 if:0.021395592886368636 when:0.01920187680642824 :0.01795818179720117 because:0.01588173870506259 time:0.015311597731843565 And:0.013586465668642045 for:0.013193179693645985 If:0.013089618940677554 it.:0.011950143302786575 whom:0.01018344044570621 me.:0.010080990362803246 where:0.009702106176113381 :0.3461867704720762 +and:0.08995317707915026 to:0.06844710404109794 of:0.04605142056172993 the:0.04074574508561307 which:0.02479116931334353 that:0.023764822140213245 re-:0.020841117231308055 in:0.020803825395358622 for:0.020278423301550053 :0.018417753428486977 not:0.016860793136637672 con-:0.016444405871234195 is:0.014386481772210856 or:0.014080680914153714 be-:0.01352268143271276 I:0.01317002660943805 was:0.011429878269381662 dis-:0.011196807025842847 he:0.01113106290024311 :0.5026826244902934 +of:0.3026046169535125 the:0.11853235133083197 to:0.1093533609460856 and:0.06494106845789842 in:0.044602906606808775 at:0.03998903943933038 from:0.03856766095958824 said:0.03791041704702464 by:0.026750910415069436 In:0.013120819927769813 :0.01011358723812932 The:0.008819491296465688 with:0.008186050370088401 for:0.008162704273511593 tho:0.005696251674029063 ot:0.004836511682206137 that:0.0038692794927570003 as:0.0036935134372070755 .:0.0035523419079261714 :0.1456971165437598 +a:0.5916925262769442 the:0.21353389808917642 his:0.02638764591324534 and:0.015413058240349282 to:0.012127359362532732 this:0.009847938503120303 The:0.009674570134573098 tho:0.00825336611182917 her:0.006545474375037553 that:0.00590560008757503 their:0.0056604909452270214 any:0.005585624822898685 A:0.005228165289818508 each:0.005011663925363134 said:0.004835198656754881 who:0.004302204404405021 our:0.00372122413225011 of:0.003710656664891321 will:0.0036209677535880658 :0.05794236631041998 +the:0.06925965325902009 his:0.06556705942969716 her:0.05026529657666208 of:0.048475500487347584 and:0.046144990946230244 go:0.045883580777091 it:0.04170391595438436 at:0.03944587984569557 a:0.029964803199136827 get:0.02948554331906285 taken:0.028497117400974898 was:0.027091809862829084 in:0.02604710704675717 them:0.024488311790685058 come:0.0233847766702513 came:0.02321067446273018 to:0.02156709767258261 set:0.019306715595461345 went:0.018424133555769693 :0.3207860321476309 +of:0.25733568068172324 the:0.20456614219914254 in:0.19925439029993203 a:0.05219016230613447 In:0.03426653346797656 his:0.026379131615878692 by:0.017117000635252625 with:0.016076824631065245 for:0.015862120088093016 into:0.013841653990199296 tho:0.01201183657677011 their:0.011858098275926139 from:0.010968950503786127 and:0.010500822189456529 to:0.010053083713479134 said:0.009937169813688829 such:0.008636768213233642 on:0.007692053724967946 our:0.007094829332518485 :0.07335674774077533 +of:0.11765737181713248 the:0.106802768912813 and:0.07323565981797077 to:0.051211999170975124 be:0.04110133823176292 is:0.04080695423269617 in:0.03700279180169096 a:0.03612176729007644 was:0.0330355104529622 or:0.018820855785419963 at:0.016751716297015766 for:0.015176707740745516 been:0.014767809686953168 are:0.014152676063881719 as:0.01343325765629355 that:0.01284555437507635 not:0.012647959280680849 this:0.011905014817972754 it:0.01188439457306453 :0.31963789199481574 +manner:0.10014154852873941 and:0.04758153569965947 that:0.027548634697924172 way:0.017860480013091023 time:0.013660246230114154 it:0.01211986153900764 all:0.010836767636137537 one:0.010756664322780446 part:0.010728763786470055 district:0.010609221477965584 land:0.010415108137366232 place:0.010399655452080119 esteem:0.009337949673530233 work:0.008993990842538664 now:0.008593781479256013 them:0.008489846330526286 day:0.008448021271808803 money:0.008371952622637733 interest:0.008221632363195723 :0.6558843378951706 +the:0.1424765048482371 and:0.07939004699676931 was:0.05242941496092056 is:0.04678583310512836 a:0.046236900016217476 be:0.03305347570979359 his:0.029434463857986152 her:0.02519786343730549 of:0.02227551805220175 my:0.02148607407563651 The:0.020043771315788238 w:0.017544999698520698 not:0.016721901616083265 are:0.015578140409088878 an:0.013701858841047418 it:0.013008963294264828 little:0.012888227413364484 been:0.0128786738710542 were:0.011625714428361286 :0.3662416540522304 +it:0.0927277939890323 go:0.08981517486337261 taken:0.07981081112758233 went:0.07060442838219144 them:0.05584290847300553 set:0.05265247401683557 him:0.047699240662014156 came:0.047282433548173665 come:0.034160409801147554 get:0.028082148483211906 looked:0.028076288941199224 got:0.026565957109204133 going:0.026064960112138703 look:0.025187920441096218 locked:0.023031178131751786 brought:0.022042883073901974 broken:0.016692314913798318 put:0.014588783441943353 turned:0.014508594296437161 :0.20356329619196206 +more:0.3025581312188659 less:0.11361229550157692 better:0.055726483044737526 greater:0.04783512755252839 rather:0.04774900978695876 worse:0.025962610454381 larger:0.024338933013280092 higher:0.024145264729856467 other:0.023583406218844298 lower:0.01740816105916675 faster:0.013320113341121102 and:0.011850589620021735 longer:0.010168519541118245 More:0.009644876926096519 smaller:0.00828514368718763 stronger:0.007941849956989464 moro:0.006774069717768751 earlier:0.006379423643939423 cheaper:0.006312927131776862 :0.23540306385378426 +the:0.1847564407057139 and:0.10126478200649837 of:0.08831264818219191 The:0.05781217644693712 that:0.022136138620238693 these:0.01631671668090445 a:0.014513194758497697 or:0.01417786516951797 to:0.012988822898574776 their:0.012329949427663977 as:0.012287881083578981 :0.012262416633580412 his:0.011940145330932676 in:0.011700605535597748 tho:0.011368635516343475 These:0.011209828309073805 this:0.010982581867111285 which:0.010198916461314558 other:0.008582822905284792 :0.3738574314604434 +to:0.31059571406939357 will:0.20425757625330873 would:0.133094322816397 may:0.05360388159749485 should:0.04751723065858571 shall:0.042846075470128905 not:0.03498447710879167 must:0.033197114998686265 can:0.01733161400489818 could:0.013140053132453297 might:0.010038574927070389 cannot:0.008553309467174345 and:0.008238336102433406 it:0.006886561425115729 there:0.00574775815678757 never:0.004645075469242335 only:0.004505185745248458 also:0.00449863383901001 always:0.002953648667362942 :0.05236485609041661 +not:0.11573404640993411 to:0.1038235049974887 and:0.07591504631884455 I:0.062184752692270744 would:0.05742692968041179 we:0.05323400553755148 will:0.0516758634496638 they:0.03352152479396159 it:0.030662866298982835 who:0.02083883078375252 is:0.020805272532908942 was:0.02028855087801754 you:0.01991605626941188 now:0.0193400404683312 We:0.018184994188645824 he:0.016280328832001693 be:0.015192665781343121 then:0.014689219574226807 also:0.01324555620192906 :0.23603994431032183 +man:0.09687849723730742 and:0.0814047230989875 those:0.06551443803011006 men:0.05218613063158062 one:0.038430908181672364 woman:0.021026572789039803 person:0.018794908296721872 people:0.015873601746827257 girl:0.012732614975762205 all:0.012596050295154928 man,:0.011536794429022173 persons:0.011508854102519218 he:0.00812000840015706 men,:0.007039829073630249 lady:0.007022555531385822 women:0.006419429071168197 farmer:0.006116343717476907 Those:0.005909751198699078 but:0.005877012298141151 :0.514010976894636 +the:0.3208965413411384 of:0.09754793662298847 to:0.09488881525604106 a:0.05213504880207018 in:0.05171484296151443 and:0.03224223439418092 this:0.03170811503084454 said:0.028859633666044462 his:0.024302409253579703 tho:0.0194730039258937 by:0.01714218931248218 our:0.016090257451169376 their:0.014778894988201655 In:0.013529374310190063 its:0.012417725716182182 The:0.01191935531045304 other:0.011274308554139205 for:0.011039748686317657 tbe:0.010718792083980333 :0.12632077233258848 +the:0.11919516938815296 of:0.07230453158552728 and:0.05781056740443249 a:0.043018564803886335 to:0.031305092790907506 in:0.020848713353460488 at:0.014270110001066288 .:0.012526810245749479 :0.012413283442322082 for:0.011719122709941797 by:0.010808400946589808 or:0.010404172990115616 The:0.01003576004804544 with:0.009811868184449042 tho:0.009295902015355835 was:0.008924239095331684 that:0.008672304223433876 is:0.0085591147338948 be:0.008335143826716943 :0.5187411282106204 +the:0.2310247180480442 a:0.13675279418152228 and:0.07896185347794739 of:0.045128911174215476 an:0.04306598377763365 to:0.030376170954299283 The:0.02696836783868693 in:0.022465749341183647 his:0.021158325473921043 tho:0.01465703824757097 will:0.014097787196992072 that:0.013490695851605616 their:0.013378561251179524 or:0.011690471331334268 I:0.01141698888621277 this:0.011386054312389517 her:0.011116379775119766 no:0.010533914207230346 for:0.009452980671908933 :0.24187625400100235 +first:0.20167607984343064 third:0.16475316697997813 on:0.10124855750778462 second:0.05086329098275822 last:0.04360312298638894 and:0.029635885889103264 next:0.025058666757928148 of:0.02474631840962403 fourth:0.022474458945723787 On:0.022029408621359946 the:0.01623265465424096 in:0.00919364028039336 was:0.009128648578840345 made:0.00902826559927694 that:0.008850603425862023 or:0.008805070596403303 until:0.007625971265629986 every:0.006746445931042465 up:0.0064362533261352155 :0.23086348941809562 +the:0.27637408721166384 of:0.11012294811419955 and:0.0995254510846672 their:0.0702348772475663 its:0.04801044162763419 to:0.04659530710581083 his:0.03821130648460448 a:0.03323613159252863 in:0.021763411243213425 an:0.021252857252289373 The:0.018949141542582374 our:0.017478250736902637 for:0.0167022418419795 by:0.014275384804370624 tho:0.014059718175325248 great:0.012606524467754844 or:0.011547247565296763 from:0.009555928982490332 was:0.008325642837278002 :0.11017310008184185 +it:0.24191908845743837 It:0.2370034660566888 which:0.1004209636060143 there:0.05722504976266165 that:0.031098563300374235 he:0.030654584430967597 what:0.027223611724276838 There:0.026717842619114668 This:0.023884482353256305 who:0.01750721183517013 and:0.015124909123780662 He:0.010497859709009068 this:0.009190166578557249 as:0.008934855565609481 she:0.007504359094920761 land:0.005410461494064129 work:0.004778459108109419 country:0.004001631895996678 but:0.003312247042154024 :0.13659018624183564 +the:0.13476476805868978 of:0.10335620763565354 and:0.07298982432450123 a:0.05493260493485237 to:0.03943912225916912 be:0.027111183577981188 was:0.024964516309082224 is:0.021318618791884996 in:0.01997329939240196 or:0.017463858114689805 his:0.016747288852367714 their:0.014456994452191905 been:0.014017672545055988 at:0.013647384018866159 are:0.013377045933421108 an:0.011360803488482838 for:0.011045703440883426 :0.009853875281147081 as:0.009770129219928711 :0.3684090993687488 +one:0.1028303141280697 part:0.05963429477052991 out:0.04766456937681193 some:0.031418679026461914 members:0.030764490253327767 side:0.029940657362655835 portion:0.022063658796890564 office:0.020457735219956013 member:0.019726706386316174 end:0.019666887540649894 tion:0.018667441728710307 parts:0.016814747270460957 people:0.014112771422418794 all:0.014072739582212475 any:0.013183573287639892 One:0.013083578354183906 that:0.013024335602903442 account:0.012482348155001894 many:0.012077825070275192 :0.48731264666452345 +of:0.3073896937969409 in:0.07751416478046896 to:0.0765239080650224 for:0.06173018741259278 by:0.04731913833318902 that:0.04663581636381935 on:0.042199757588241876 and:0.03963530189014223 with:0.03800876088931749 all:0.03705805086397979 from:0.03380743115140701 In:0.018606120499244257 upon:0.016395635699938686 over:0.012517754735808934 into:0.012168997826011248 at:0.010129208766909571 through:0.009545083512424026 is:0.008938625387889199 which:0.008399188076979588 :0.09447717435967265 +and:0.15922354785268114 of:0.12720482339291622 in:0.11413523882463113 that:0.06315254459200353 for:0.06002565020730157 by:0.04751747265199827 to:0.04096488829977412 with:0.03811806266727048 or:0.03758649542200312 In:0.0340501308328998 was:0.0278410622402981 at:0.021628894088800033 is:0.02126980316414768 from:0.01984757774896059 but:0.011706515253084103 be:0.011580293888307086 are:0.010160560910062382 on:0.008597858211863027 have:0.008532554311284479 :0.13585602543971312 +line:0.07418475421952035 street,:0.07137023448622126 city:0.04174878710174244 relations:0.02931471018293446 street:0.02853354523058398 and:0.0192437851260327 avenue,:0.01876553308829418 State:0.01780190993692075 war:0.015812651649625767 up:0.013727357489977636 county:0.013415480757694033 contest:0.012660842924893998 state:0.012495130706344471 difference:0.012333103113565948 communication:0.011531816023970989 road:0.011510429649604678 place:0.011029174289673772 of:0.010984140244571474 lot:0.00994531380834516 :0.562591299969482 +the:0.11392410893143563 of:0.08858574844854122 and:0.0807324260425194 to:0.04087878000225387 a:0.033563070828305605 at:0.029666884388077814 in:0.02948774916245063 or:0.017616645050394987 .:0.016000990151024505 be:0.015626436994957 his:0.014869377545237265 for:0.013611305334689449 was:0.012683218519888568 this:0.009328444515180804 on:0.009048270478650746 by:0.00870112215539001 is:0.008631680792172495 :0.008397792506893226 about:0.008118439256804296 :0.4395275088951325 +and:0.09895858434884586 the:0.08531822172154292 of:0.08097129818486058 to:0.038424246671365 in:0.02511448395496922 for:0.021706420488923246 Mr.:0.018065422509702722 a:0.01804990308889873 Mrs.:0.012245087041404104 or:0.012117151389296234 by:0.011371987607652012 that:0.010368824642728522 :0.009715028766046895 their:0.009498327441732344 be:0.008970449535827851 from:0.00870217231629381 as:0.008546905948317203 his:0.008428878023331601 boy.:0.008378372780196123 :0.5040482335380649 +to:0.12354075643190157 and:0.08505277297992589 of:0.04744757283939691 the:0.03673010520209344 in:0.027828707058379372 is:0.023305008409429784 I:0.022144012276299987 for:0.020271140005288447 not:0.0199713319441252 was:0.01932205964909315 will:0.019268066369548417 con-:0.018699135648169458 be-:0.018627423880957478 he:0.017655999283213552 be:0.01709344544110531 that:0.015543213952415522 which:0.015438694118314914 would:0.013939369606180202 re-:0.012827440509741625 :0.42429374439441975 +the:0.2427273908446121 a:0.17524043485437463 that:0.15256273432115794 this:0.1313644339121901 of:0.033633590585954116 to:0.026660761925791355 same:0.02523683732181494 every:0.02399769618043719 any:0.02242520449777441 tho:0.015759386950065086 The:0.01572749652960228 other:0.014413606179421338 and:0.01365714730843511 This:0.012101147203864475 in:0.012072360364518645 That:0.00988165741619584 said:0.008568728170738461 present:0.008071438166888451 first:0.008045725804318345 :0.04685222146184515 +the:0.33007455369296124 a:0.14781469482091453 to:0.12483453788311545 of:0.035686622595709004 and:0.023545931196474544 an:0.021210873211549765 tho:0.020921650871085704 this:0.019896363915326738 The:0.016494735342198537 will:0.012494063952819417 tbe:0.010660524142794623 his:0.01055169947486645 no:0.008910334152077412 in:0.008843523846216427 I:0.008839374901124452 not:0.008603667585300515 its:0.0075698554506096975 at:0.007505686728633111 with:0.006810703629078506 :0.16773060260714384 +of:0.17056260731754305 and:0.059468064026747876 to:0.054737105898768616 the:0.04737595867312793 I:0.019315538696542917 that:0.018390447897871243 at:0.018109444805814227 :0.01596596768152083 for:0.015455397249407853 in:0.01382536402479544 Mr.:0.013200643704099744 which:0.013002766411355471 Mrs.:0.012753010694646835 .:0.012076172088085953 a:0.00911921112753552 The:0.008988742829309764 ;:0.008533392311950267 au-:0.007809951268194769 was:0.007384792148791 :0.4729254211438907 +the:0.08079911513931724 of:0.05179153013071802 and:0.050374456528474484 .:0.033047609620344476 a:0.026115975744960274 to:0.02351093965076128 at:0.018532715866949 :0.016663025583531946 Mrs.:0.014918036374671421 A:0.013109651134182849 The:0.01231312911917008 Miss:0.010931576979501556 Mr.:0.009329950391313716 A.:0.009187142199462884 by:0.008814784634540973 M.:0.008756928138884424 J.:0.008645250861366976 W.:0.008212890369206766 in:0.00810125269374802 :0.5858440388388936 +it:0.18933079373983122 It:0.09555282981329422 as:0.0866880719218501 which:0.08464636001756828 that:0.07051112314641195 they:0.052690658552864006 there:0.037417756895181786 and:0.029058424718588206 he:0.0269797830604667 what:0.022289821189138203 who:0.01796366222381316 There:0.013579855598546447 you:0.012550455952835911 we:0.012277334597652966 this:0.010978958519068683 whatever:0.009752693743122305 case:0.009057349738014284 This:0.008398456526460612 one:0.008370438307689692 :0.20090517173760122 +of:0.31576785489768694 by:0.09260196466228329 to:0.08441109759635698 that:0.07813234568521957 and:0.07556634085726503 for:0.03946936503552126 with:0.03277529905436631 in:0.032507274725524 on:0.023522101920220674 as:0.02257305059181454 from:0.019830602706501565 all:0.01636961225474655 which:0.013511542527840252 under:0.0123383416675781 upon:0.011400470508397771 but:0.011396378005903566 when:0.009979578860294889 In:0.007948113939985721 than:0.007370215121231847 :0.09152844938126115 +the:0.45224858974529214 this:0.07960738299111894 The:0.0582128926091972 that:0.05180698266499706 a:0.04144986601403895 white:0.0230592375425928 tho:0.020267296466526613 This:0.013150965072378461 whole:0.013006589836851743 of:0.012148852977752476 and:0.011701073591961 tbe:0.009387621227444269 new:0.007920687700009683 his:0.0064321941678475636 said:0.00641870118363428 present:0.0061401686341209715 such:0.005579595191754373 any:0.00557341763047464 old:0.005483565376508321 :0.16940431937549857 +that:0.23263916119820147 and:0.11888249797966903 which:0.06542489615751962 as:0.05332571702410422 but:0.04641497363774643 if:0.040352773042676676 when:0.029106692074069646 for:0.02523850821901515 to:0.02232661779850978 where:0.018400281267689052 will:0.018224006616833353 would:0.017417484469686426 If:0.016504503346978623 than:0.012427997494791919 said:0.012290168089717234 what:0.011983946142366694 because:0.011572418740877416 should:0.011151631221684243 may:0.009942395405590823 :0.2253733300722722 +the:0.098267937923697 and:0.07624076955741395 of:0.058658698534063275 to:0.046819633945858634 was:0.02918093796067743 in:0.028699381285437014 on:0.02427605460159848 be:0.02391890023725328 is:0.02320950187715587 are:0.018390034772697954 or:0.014535444909276508 for:0.013607935369482977 as:0.01335974054153974 he:0.013149971458101779 were:0.012395195121498878 a:0.011824396790378775 been:0.010906304854368665 that:0.01040377796541857 be-:0.009792028848444984 :0.4613633534456363 +made:0.0999812034390529 and:0.06680208263369662 caused:0.02435411478715239 shown:0.02379785223577525 up:0.023253655008919294 ed:0.02312002180398423 out:0.022293807888227747 taken:0.021988971765594088 done:0.02128782706813444 given:0.020283609421760777 paid:0.017098570970207227 owned:0.01708227903067019 that:0.01698438626809451 or:0.016145946252097726 him:0.015808363688274 followed:0.015366441255538056 appointed:0.015126279845513936 held:0.013990473525433292 approved:0.013949758860964168 :0.5102843542509091 +and:0.09722520144096626 is:0.08956761851773734 the:0.08058344356729231 of:0.07927706201822764 was:0.06869246103690448 be:0.060307031270875014 to:0.04606744425083368 as:0.04237585114341428 are:0.040185155668087814 with:0.03752685256369845 a:0.0337192875748834 for:0.026224293102869833 or:0.023479767221912137 in:0.019198414621204248 entirely:0.01850698923269807 been:0.01826437166459536 were:0.018215236600350168 Is:0.017585603224800028 so:0.017196018123194715 :0.16480189715545476 +and:0.13649864210407622 have:0.12465361313329248 had:0.11303786744345254 who:0.0738039922043784 he:0.06440266942919977 has:0.045519090820346025 en-:0.03616956298930363 which:0.028786000223242878 that:0.02702204503136576 I:0.026248815238423588 they:0.02112551839452027 not:0.01799687653640336 she:0.017982329612238324 to:0.017560909627336117 having:0.017034370731702598 never:0.015392462518261445 it:0.015040867584909608 then:0.014046619347740192 He:0.013200104375222593 :0.1734776426545842 +to:0.31019601080253456 will:0.13793678134185958 would:0.07774183426288846 may:0.07078528459128908 should:0.05127128910568003 shall:0.04901700088221223 not:0.04594340671139167 must:0.03257846389794495 can:0.03230794200897745 could:0.02086203652199685 cannot:0.017984019065961077 and:0.017474170306863105 might:0.013535476571922157 it:0.006941357203389574 never:0.005186754057084183 that:0.004968373522249409 also:0.0034185027334872305 only:0.0032209125075107173 soon:0.003102154139878731 :0.09452822976487903 +and:0.15812420332331117 but:0.03757112548355975 that:0.037363124149662204 are:0.02732244208822011 as:0.02188964468216551 is:0.015501150961953524 men:0.014148025759082644 if:0.013762636909310353 is,:0.01307223451104662 But:0.012875552387312613 when:0.012863350364376431 or:0.012584832769349677 all:0.012036242730577336 while:0.011381757969143487 which:0.011273431172500195 be:0.010530817861568603 were:0.01048563474022583 not:0.009973447133239778 those:0.0097735461561198 :0.5464667988472743 +that:0.1827907093851554 when:0.15371696084755937 and:0.08730481935042333 as:0.06236297307137768 which:0.05505509567253196 but:0.03589704572236683 where:0.032739760067702996 if:0.029844274676089206 When:0.029031900759648618 Then:0.024313882767571078 said:0.023695842635645774 time:0.01871706464434108 before:0.016865536092327268 while:0.014710292178698781 then:0.014151580744986528 until:0.014134436427806898 what:0.013555794885660508 whom:0.013401085695853307 If:0.010040855629160263 :0.16667008874509315 +;:0.06356995204018225 it,:0.020406290443081686 him,:0.018367386382131465 time,:0.014007623864244333 them,:0.011830341004348262 and:0.00996651662920621 is:0.009603585005455322 ,:0.009019742104240074 me,:0.007891347378925322 right,:0.007442000517058582 way,:0.006549578943443883 day,:0.006536175877056979 out,:0.006419695614919661 here,:0.00612210978067764 years,:0.006044268943695671 was:0.006006391673497874 up,:0.005534055136656368 nothing:0.005326862016982242 her,:0.0053055387272046405 :0.7730505379169915 +of:0.14287341874415704 the:0.06896575074921615 to:0.03920498292263958 in:0.03550449605928717 on:0.034104346916509806 a:0.03245243721324073 at:0.02818145782660207 and:0.02724253853597607 for:0.01494683417661038 :0.013736571267472046 about:0.011849047906646103 from:0.011230664392125304 by:0.011182613697009553 with:0.01044405385244154 be:0.010204423221999425 1:0.010076032228631945 or:0.009397117580953927 his:0.008998632862081097 In:0.008484240950069227 :0.46992033889633084 +so:0.18584095600501466 well:0.086018975834868 far:0.036928073701124886 and:0.036295686129605216 such:0.03180662616763135 much:0.027609352084598034 it:0.02205361672230219 manner:0.020200107052006817 doubt:0.018871588850796813 is:0.018035330128024357 question:0.017585521180360823 opinion:0.01697504297808242 them:0.016303008553215422 just:0.015375214437991785 are:0.015253496449112244 soon:0.015007069772728912 him:0.01372397311447532 be:0.012734425091976188 described:0.012688849338558628 :0.3796930864075259 +and:0.08995317707915026 to:0.06844710404109794 of:0.04605142056172993 the:0.04074574508561307 which:0.02479116931334353 that:0.023764822140213245 re-:0.020841117231308055 in:0.020803825395358622 for:0.020278423301550053 :0.018417753428486977 not:0.016860793136637672 con-:0.016444405871234195 is:0.014386481772210856 or:0.014080680914153714 be-:0.01352268143271276 I:0.01317002660943805 was:0.011429878269381662 dis-:0.011196807025842847 he:0.01113106290024311 :0.5026826244902934 +of:0.18582314642926676 in:0.1675957226370464 for:0.09475193835941502 to:0.0847550987917742 and:0.07458675393224501 with:0.06508934346229191 by:0.034059422071167585 In:0.03358925662648273 that:0.032169733011528576 on:0.02488511683492961 from:0.020639814592791114 upon:0.01540605770515784 or:0.013247732028835607 have:0.0127943516845734 all:0.011050625408150258 but:0.010459080866456548 make:0.009746845362244525 up:0.008681285410149934 as:0.008502367181308982 :0.09116630760418401 +he:0.14204215922224808 it:0.07174080578844616 and:0.07058537574774472 which:0.06364045909748335 who:0.05421466119267323 that:0.05253198290641257 It:0.04068031886851445 He:0.031208443174713656 she:0.024553872652622467 as:0.021345201560807353 ho:0.011939465314502913 man:0.010228909187846903 lie:0.0101822183282211 what:0.009951744078332334 one:0.007707094219399755 She:0.007558601762166279 be:0.006512769346499396 company:0.006201032302697171 time:0.006110757651672149 :0.35006412759699596 +purpose:0.039909927513983305 sort:0.033229017389677484 line:0.03213994151725334 matter:0.031034269959064376 number:0.027642563057906376 out:0.027303187686372736 means:0.0240351956664593 kind:0.0239381242914818 question:0.022535532750067793 instead:0.022297138071586956 place:0.02193140826991193 right:0.02178208007986829 board:0.021230499550796002 piece:0.02024046426319871 writ:0.019613409643920266 way:0.019578429492606273 side:0.01848169795312251 capable:0.018234978270244097 system:0.018032108913488745 :0.5358100256589897 +the:0.27418188448475045 a:0.13377629818771294 to:0.09794781477791624 no:0.05514681284119516 and:0.039783397194368166 be-:0.03460572045845543 will:0.033718526728120035 this:0.025590960756787604 would:0.02504799226162603 show:0.02177568668847594 not:0.021492176528081705 his:0.02132050442012166 of:0.01975953469638359 great:0.01708426466872254 any:0.01689668832777585 said:0.015897361036464917 tho:0.015648797973135394 shall:0.015040398197001594 The:0.014931750168448632 :0.09935342960445609 +the:0.5257361204418712 an:0.0949284916397541 a:0.06119297049496035 tho:0.03642293488271463 The:0.031339561074256624 and:0.03027924405145819 or:0.020142990267441853 tbe:0.016606049270702167 on:0.015718420376325655 this:0.013074998781360321 first:0.01192374940897834 great:0.011582945380515401 in:0.01131839841408999 of:0.011280450122802837 every:0.01013521007955713 to:0.009240463923618417 other:0.008441660701517027 one:0.008359722675823083 last:0.008336289102165153 :0.06293932891008752 +:0.11846063066472079 .:0.017301617317143705 it.:0.014997683348620136 them.:0.009775169459042212 of:0.009248948717552325 day.:0.008006309483063297 him.:0.006978430211458404 time.:0.006195074014964546 year.:0.005663617474239351 to-wit::0.005485890946475719 country.:0.005386902463599158 city.:0.005156148102871944 feet.:0.004670495429770647 years.:0.004606451166860108 ::0.004313282089373136 way.:0.004177348459077066 work.:0.004119002008326799 night.:0.003981602645932822 in:0.0038078412516430065 :0.7566675547452648 +of:0.28767355066866834 to:0.08775711267569858 in:0.08678131196995101 and:0.05160598694501188 on:0.04646139928102899 by:0.04519522654900943 for:0.044547789071328545 with:0.03396756772609607 that:0.033699232901107726 from:0.03075346596941143 at:0.027039283056790858 In:0.021061449543044047 as:0.017514234937992545 all:0.012543839382496166 upon:0.011844431150487573 is:0.00998972746569266 was:0.008814315973987914 into:0.008557199930727406 through:0.007781895704231326 :0.1254109790972375 +to:0.12022893700269083 and:0.09020394424291768 the:0.08587503820055309 of:0.06450042443224316 in:0.0310058468700829 a:0.017742048521183405 :0.015548046036689871 not:0.01491307651316237 that:0.014112408707955496 for:0.013734482372212283 I:0.013065769926808477 will:0.012848502316304782 at:0.012837991177321897 In:0.012628718855091186 by:0.012491091048660757 be:0.011425930130217754 is:0.0113962101007567 he:0.011342727513475473 or:0.01112522537451577 :0.4219735806571561 +it:0.12095170213729357 I:0.10295253072398855 he:0.09334846102451981 It:0.07560258178653198 we:0.07475312662710235 they:0.07214204772571246 We:0.030151283973907466 and:0.02932294138389299 you:0.024017617487323593 she:0.0217617484534564 which:0.02015335738562504 that:0.019474813901445006 He:0.019412464993831032 They:0.016494013645298986 who:0.016280066098497956 man:0.009946927938764435 ho:0.0091155519095246 there:0.009028002202766 people:0.008837686362582114 :0.2252530742379357 +to:0.44726373403069614 not:0.08366526162564795 would:0.058868147276281084 and:0.05813766339244614 will:0.05534710355493878 must:0.028258125942343525 may:0.02533604918762034 can:0.024735806616407126 could:0.023063208869854156 I:0.022069656425509666 should:0.01999334950303654 they:0.01729066979328206 we:0.016237738070836057 you:0.013323898341785809 shall:0.011031621838230657 never:0.007935658299903309 might:0.007271825334877766 who:0.006586738852654246 also:0.005799017710954961 :0.06678472533269368 +and:0.34101613330749325 was:0.166803018875626 He:0.045843156545267535 were:0.04353210422215507 is:0.04144286503277926 are:0.025214363472377786 he:0.01792797637454052 be:0.013460903643546438 it:0.010494031781151172 not:0.009852531751499739 been:0.009422741704561814 but:0.00787287497709228 which:0.007708125337656226 They:0.007560949504988342 since:0.007361046982508665 being:0.006958726877004766 had:0.006878445933642516 that:0.0067966481249713 I:0.006671259446532777 :0.21618209610460457 +to:0.1264820031376333 would:0.12108812788140948 we:0.08747230419294579 I:0.08489018978669563 who:0.07912146482724122 they:0.07291495371853826 not:0.040987075967710174 will:0.04044753793163027 you:0.03453619513620737 We:0.03440848150652027 and:0.03282059093540214 shall:0.031156821067772594 should:0.030761235533564996 must:0.029528080280317767 may:0.020942346270877002 might:0.01971427664537129 They:0.019306671251629225 which:0.0155855742023523 could:0.013505212889797306 :0.06333085683638363 +a:0.1192410466355791 and:0.09642848527038102 of:0.09011707600264182 the:0.08408966700809468 with:0.06493569167958436 to:0.038747500649770304 as:0.03304495410647643 was:0.03137094666266987 their:0.01936224839412096 her:0.01821567304789987 is:0.018110991319772635 very:0.018021070015380083 by:0.017845684061377577 his:0.01715449050384321 no:0.013600893660086304 for:0.012884867300902957 most:0.01288377374051889 be:0.01244519051854353 at:0.01187677367960742 :0.2686229757427489 +the:0.3423143976570208 an:0.14902810900493563 The:0.058801144112821724 said:0.058747657456177764 primary:0.034309763943527895 of:0.03169742532746781 general:0.03164574546021469 this:0.029307233601014095 An:0.028306906788781606 his:0.02005684465916841 Presidential:0.01827496193121968 that:0.017687674287076093 first:0.017102633036986153 tho:0.01564131173636062 This:0.014848937847000351 special:0.013415717100743142 last:0.012535186115798251 and:0.010466397325269846 such:0.010396897108481608 :0.0844150554999338 +of:0.2926677974955294 in:0.10238551683708368 and:0.07000957006069432 to:0.06663701609235255 that:0.06502208372512984 by:0.04345009510407014 with:0.04332441700574485 for:0.038039923950420586 on:0.03192080867539448 from:0.02630044815083801 all:0.025371001542922465 In:0.020792732111835164 as:0.02040701944627626 is:0.014822129372058726 upon:0.01365531747717792 under:0.012188961872793329 which:0.011801320850352452 but:0.009890904110139192 when:0.008910719236571761 :0.08140221688261488 +the:0.48627434677170595 The:0.12213248254460012 a:0.06081437070847852 of:0.04785214874520714 tho:0.02720670794830677 and:0.019094427570471778 in:0.010197096143805713 by:0.008027674695285852 A:0.007476117397802586 tbe:0.007171913933015496 with:0.006660262117374199 our:0.006376223017371515 old:0.005913534640644249 that:0.005200152590813695 young:0.004523183232196385 his:0.00436886671223626 :0.0038663953277737165 this:0.0037254034209745633 for:0.0036193434079917096 :0.15849934907394375 +have:0.31025810789759173 has:0.3008985144145266 had:0.20405430517332535 having:0.04432668085515079 not:0.029157422119248565 ever:0.014841213052487312 never:0.011711933732450556 lias:0.010630079714254084 bad:0.008947375335352503 already:0.006105354226761153 havo:0.005353432041347988 yet:0.00407450844209261 recently:0.003167506872685677 always:0.002949647728498166 haa:0.0027533410928262886 baa:0.002563649191119342 just:0.0024998409917225723 long:0.0023311436804260583 bas:0.002259824927738795 :0.030116118510393877 +sum:0.07262940304567712 day:0.07092364135847627 State:0.049335460472444706 that:0.03038935240536391 and:0.02537742752853418 part:0.022290978002747038 action:0.0208312497814671 it:0.018460797761663077 :0.01799180421215861 point:0.01709628312981777 work:0.01623097240019907 amount:0.016175126864526993 date:0.01563043137077086 line:0.015385487406259902 one:0.015289688577892225 order:0.014928246485140493 interest:0.01450277532698202 dollars:0.013627191629676908 side:0.012786295301585962 :0.5191173869386158 +was:0.17837849691253052 be:0.12815473029293864 were:0.09711478117422502 been:0.08088412342569613 are:0.06998111234078495 is:0.056037867051145066 and:0.038941399890145806 being:0.03469721967141313 had:0.01834944808416851 well:0.017960540360956175 he:0.017017286170873874 it:0.016531445412049282 as:0.015491729582601399 bo:0.014163390246689767 have:0.013797732251939906 has:0.013746384979292994 more:0.013092085049008013 not:0.012457120124445642 so:0.011363571037617877 :0.15083953594147728 +and:0.15857478212260565 of:0.14998674485268917 to:0.07194388793010872 by:0.05736603747646747 for:0.05565190424064851 all:0.04353854877149777 that:0.04288471387510873 the:0.036534425454102126 in:0.02392247494986478 at:0.023703300711202968 or:0.021412468711530817 with:0.014181440654927067 was:0.013159042877289853 than:0.011150487680369778 be:0.010835193938310327 between:0.009956815100592193 he:0.009244651152885645 it:0.009113899577557266 much:0.008849776043947806 :0.22698940387829333 +of:0.2094044326800705 in:0.10323064403071443 to:0.10003830707887722 for:0.06651277384544663 and:0.059888103219910734 with:0.05229638367705768 on:0.04126439815398536 from:0.0354362178188539 by:0.03150820700611748 at:0.023923279676181686 that:0.021401420699051488 upon:0.015462838440665488 In:0.01545720659661401 all:0.012395979629342193 or:0.011833585179611528 as:0.010765835272299391 up:0.010244683825641929 into:0.008022179740618366 through:0.007346693776088779 :0.16256682965285124 +the:0.14117344734319692 of:0.07921767072475763 and:0.07699184487070236 to:0.042809214222713644 a:0.03791407805822653 in:0.02396483489085983 be:0.017184590766676496 his:0.01586114000519643 or:0.015250977317522615 The:0.013723614785415523 is:0.013570396888354291 for:0.013424748629642828 was:0.0133622346024403 :0.013200792545264167 .:0.013123607706178776 their:0.012333362934545374 Mr.:0.01126373039767266 with:0.010721976863014952 at:0.010525120859165741 :0.4233826155884529 +of:0.28767355066866834 to:0.08775711267569858 in:0.08678131196995101 and:0.05160598694501188 on:0.04646139928102899 by:0.04519522654900943 for:0.044547789071328545 with:0.03396756772609607 that:0.033699232901107726 from:0.03075346596941143 at:0.027039283056790858 In:0.021061449543044047 as:0.017514234937992545 all:0.012543839382496166 upon:0.011844431150487573 is:0.00998972746569266 was:0.008814315973987914 into:0.008557199930727406 through:0.007781895704231326 :0.1254109790972375 +the:0.0950181786483079 of:0.0867433383055885 and:0.07490825088265722 a:0.03712692745203889 to:0.036311556882573044 as:0.020581394560763945 that:0.02054328275819547 is:0.020450071354049085 with:0.0196727378985266 on:0.017765475002447274 for:0.01628568730128713 by:0.016136145220983316 an:0.016066163266983326 was:0.01570903960598498 in:0.01551159378681283 or:0.015191268438768826 :0.01413916712105405 which:0.013802009789925422 be:0.013593680035244802 :0.4334440316878074 +the:0.2813198589993358 no:0.15469592107130126 of:0.07612262218240455 much:0.06846819099325117 The:0.03707008847451784 a:0.03192275513103125 and:0.029527532953537602 any:0.029468046868929232 his:0.02826436780740445 in:0.028013525586923972 little:0.027837335943102875 their:0.021786662391396244 tho:0.021638865631537295 great:0.01971024097758106 to:0.019263579358938555 serious:0.017307031366532753 is:0.017276964974205257 this:0.014607987443195997 more:0.012309135612278744 :0.06238928623259404 +the:0.16807735899698817 of:0.10541662057906837 and:0.05138367848570702 a:0.04141865232648221 to:0.0385989743764065 in:0.026264864977736738 was:0.019530675665220657 his:0.018900421021236905 be:0.017373825006196972 their:0.015767721170721456 for:0.01557246589796783 with:0.014071419046630446 is:0.012922913111931644 at:0.012690452250034052 are:0.010702713108721902 .:0.010158075558988393 Mr.:0.009672788574483367 tho:0.009612591781990074 were:0.009549306361446321 :0.391314481702041 +was:0.24751152222020217 be:0.22195197568095218 been:0.13169848713244306 is:0.06666132740877473 were:0.053100939220235406 being:0.029832840283236885 are:0.02769579211854431 he:0.025284371020551057 had:0.02043778981633954 duly:0.018508705970136444 has:0.017398575292542674 have:0.01716303305071529 and:0.015464487717020383 bo:0.014805496447306808 not:0.01244620670381748 ever:0.0088294964733494 Is:0.006787197184558833 then:0.004913676988379184 man:0.0047605971408980294 :0.053747482129996145 +and:0.08817314775942905 in:0.07385229697379511 of:0.04991606551703141 to:0.04876182873404456 that:0.03984565041132416 as:0.03635969311725062 for:0.032580844504408076 make:0.03254527321730157 on:0.030720454363368916 put:0.024819093324274694 get:0.023639714652882154 from:0.023136464438967955 upon:0.022622053672434073 do:0.02231749705968126 but:0.022231437214981362 with:0.021975572280565694 made:0.021336659124922688 take:0.021117654731269288 keep:0.020753472300114408 :0.34229512660195294 +be:0.23789881894926862 and:0.1208300842207335 as:0.11331764432243031 was:0.07146014352348046 he:0.06168741156774611 is:0.0550350478792613 been:0.03548994191527463 it:0.02920757453232221 have:0.02661920026321081 had:0.021384948240146813 who:0.02102893678710794 has:0.019427968428639506 being:0.016714513302666704 were:0.015547915769933408 are:0.014624420604059954 I:0.012916239971403646 well:0.01259127579355056 they:0.012411656968921894 bo:0.012306979118536123 :0.08849927784130553 +day:0.2214484361752361 side:0.057293347099711026 part:0.038939456835986236 State:0.030443960040594485 Monday:0.024430505155870808 city:0.022924357140623613 line:0.020345565122979248 middle:0.0201800464769889 quarter:0.02013902219479724 corner:0.01946863819651907 1st:0.017189988379988384 county:0.015368550194137841 date:0.015214562284966253 County:0.01455934975233021 month:0.01377550048421713 Court:0.013620598574714926 dav:0.01328786133610389 parts:0.013082925544750003 state:0.012938620400006354 :0.3943487086094783 +the:0.27959585137794635 of:0.1407347082993757 personal:0.09419590623552787 real:0.054688452860037415 said:0.05087954733771044 described:0.03797441224757159 and:0.036835309275464946 their:0.025993131856379807 taxable:0.024119523058345065 such:0.023008547735387196 his:0.018521122959180333 for:0.015926380734415182 other:0.01488025849715992 tho:0.014796462389739213 to:0.013001612171380506 its:0.011985061442148937 same:0.010944939063125915 on:0.010268396036609525 private:0.009778144214166744 :0.11087223220832736 +:0.11319552355954116 ?:0.0371247938019201 it.:0.019979837870216594 of:0.015765860928806365 to:0.013632639879848588 .:0.012499274682577662 and:0.01121760999632599 them.:0.01037455864831856 -:0.008204607378767888 him.:0.007837485850292134 ::0.007391848205540012 country.:0.006414686665313724 !:0.005411385708646589 us.:0.005333943776291279 State.:0.005268818964691771 time.:0.00526774383974231 people.:0.005237595171794082 day.:0.005237358032636739 me.:0.005003912411772247 :0.6986005146269563 +of:0.3097401837320649 in:0.1468006764722364 to:0.09412599870399935 for:0.0629281242177686 on:0.058358098682974584 and:0.04557080616905855 from:0.036666872014948566 that:0.03332888659580213 by:0.030608198349537114 In:0.028661389548627788 with:0.02861705896806036 all:0.02258732328594288 upon:0.011971688997671922 into:0.010623679117332769 through:0.007481930642150107 over:0.007401616784695972 at:0.006954354536321253 as:0.006906292813078168 is:0.006243086092328551 :0.04342373427539999 +of:0.12306400219201964 in:0.11441206333790074 for:0.0877441913157189 as:0.07766221037862418 and:0.06380732169196753 to:0.058790452457465114 with:0.0483312776093833 that:0.036264255632433205 is:0.032356075244281385 by:0.03229374889546658 such:0.03092888292735306 In:0.029149698879224743 was:0.025231749619406392 on:0.023665011769598978 at:0.020747905960966515 from:0.017266878128735553 be:0.0171439872322831 made:0.015001452748751904 have:0.013726842240544363 :0.13141199173787485 +of:0.2693594628851645 in:0.13994062549786934 to:0.08497642491470933 that:0.06336522487223561 by:0.054259623405522 for:0.05093727834852389 and:0.04947827020069222 with:0.04101804975150871 In:0.031069634373639975 have:0.02789354483832946 from:0.017160030413797003 at:0.01575931851579263 which:0.014661709388692924 all:0.01446067840018309 as:0.013203355299364158 under:0.013045057679282452 has:0.012437994748726384 had:0.011347540836100074 upon:0.01113684972821206 :0.06348932590165421 +in:0.20670093564493142 of:0.12871079136986657 to:0.1239054941183717 In:0.04766090411952179 and:0.04735698769018839 on:0.043393702897336045 with:0.03618246336421129 that:0.034487654057473054 for:0.028609798436542083 at:0.022425257781813753 from:0.021754180396249864 all:0.020169763566961124 is:0.020043782896286486 under:0.019660392017319353 as:0.017918113061857983 was:0.017065842932010657 up:0.014600964878775278 upon:0.014318123846697929 by:0.013902295624461141 :0.12013255129912409 +and:0.06656917993781573 to:0.05363673721756417 the:0.03237525514867997 of:0.02981096439512609 that:0.021225053583146802 or:0.017255584802479688 re-:0.01689903488259873 :0.01584284177625918 would:0.013557466509718716 is:0.01323935829725787 which:0.012517845136930822 will:0.011987401652425683 in:0.011212280468986374 was:0.011157016917083975 I:0.010392206471105461 he:0.010244183970004385 be:0.010203884589343348 -:0.010146990177126154 for:0.009642085416962327 :0.6210846286493845 +the:0.3908022210519194 an:0.1816346910244493 of:0.07178409640815785 a:0.0521107629706406 The:0.0439457064455651 by:0.02708187302329482 and:0.02653432156408782 tho:0.01965477028094866 An:0.016799323007512752 said:0.015253773984149685 any:0.014482729567365227 with:0.013814088391518636 in:0.011822784226309686 this:0.011108223599529668 every:0.010443436751098779 tbe:0.009605512862288574 his:0.00756522077595139 to:0.006873027459194644 our:0.006448900317078836 :0.06123453628893861 +that:0.2368331833616516 and:0.1483503130228932 which:0.07274416519702762 but:0.052424205829178096 as:0.045556036319538154 when:0.030405268385311744 if:0.028199075748118533 where:0.022200045401102805 what:0.021877372818253266 But:0.01675127063241316 If:0.015886390234708624 then:0.011873610226335672 think:0.011786861644684177 because:0.01104249320116081 And:0.010851210509525096 That:0.010017124406564784 whom:0.009690871181499652 ;:0.009072120386997734 while:0.00839614491070763 :0.2250422365823276 +his:0.2188857596294766 their:0.15616745671209345 the:0.1515598015278583 her:0.07760795732083511 my:0.07287802955001037 your:0.03979720216197798 own:0.0316612901799003 our:0.02868881099455561 of:0.024050835857420325 whose:0.02218086101443051 its:0.02163371600881671 in:0.01999521774133998 and:0.015460521439862599 bis:0.011508458070255623 In:0.009553466159965248 at:0.009139759939833859 shake:0.00821017293710844 shook:0.0070861299130124756 tho:0.007065353450647462 :0.06586919939059904 +and:0.08184677483738724 the:0.07909217780113714 of:0.06780965644469242 to:0.06289859899580835 be:0.03985155246328224 was:0.033732505141938984 is:0.030010668729588876 in:0.023021463002135298 for:0.018484059015684104 are:0.014846243970674295 that:0.014734512797306256 been:0.014404935020045943 as:0.01426470189874621 he:0.013838513130424883 were:0.013709655520613491 :0.013235943291591874 much:0.013202440868929965 or:0.012807434949848446 his:0.012778135806475932 :0.4244300263136881 +as:0.41968452991861793 so:0.18062670488817442 and:0.07158092211915051 be:0.04062999410211982 was:0.03863429935799933 it:0.03498891912471392 is:0.03196761286174512 It:0.015752719226072798 As:0.013523591657374327 more:0.010953100936744694 been:0.010731388071683159 So:0.009712617327235357 not:0.009247348475392141 Is:0.0091949205436049 are:0.008274453466158684 ns:0.007878475850438825 such:0.007600120337420742 now:0.0074407669210748975 were:0.0070520696059852735 :0.06352544520829316 +made:0.06948555801840574 and:0.06462319680848598 secured:0.04748798780398025 that:0.03687913898734129 or:0.02372762773941823 ed:0.0218944361888443 accompanied:0.019320344076196372 executed:0.018345958972847368 owned:0.016885961264543062 it:0.015015029312854589 taken:0.014209771801062272 followed:0.013843420616606641 him:0.013735666890288408 caused:0.01350996194318886 but:0.013207375322881075 only:0.012915231009440491 them:0.011688769978386138 given:0.011406481630993004 described:0.011120153878931852 :0.5496979277553041 +the:0.5174817150002976 a:0.15726822380703084 is:0.04888137792276497 of:0.046046071418225025 and:0.03556800641086022 The:0.026090067233530512 tho:0.02288468713188544 an:0.0167911375679151 are:0.01357293728878923 its:0.013127431867977093 this:0.011534540411621214 very:0.011486906244262017 in:0.011004584921401824 for:0.010701352506205998 with:0.009806990021260856 his:0.009151747154715052 Is:0.007394219122063495 their:0.007193465328080392 most:0.005750983827995269 :0.017263554813117827 +of:0.331569288747056 in:0.18858532904474698 to:0.07666560613635559 by:0.049769398881565265 and:0.03633259309716104 In:0.03502815230765579 that:0.030610170983479137 for:0.030108586805369937 from:0.030072873251432448 on:0.02980394301664716 with:0.020976415094017962 at:0.017648115415797055 as:0.014315623089537778 into:0.011930172388622894 upon:0.008103514767353754 before:0.006599094932575753 through:0.006011552597691964 over:0.0056300666198535985 ot:0.004994548059347541 :0.06424495476373239 +able:0.06083112990886754 order:0.05434373514863432 as:0.05434179927040743 and:0.0405092028055945 have:0.04030545588001105 is:0.0393023047879671 had:0.03903572413741234 enough:0.03420839605029731 not:0.0312006146689978 unable:0.030199385262525125 attempt:0.029340207307645513 made:0.02869083654230011 necessary:0.02620914568107907 right:0.025782889139179394 was:0.025345874564317968 him:0.024210561463118622 ready:0.023345070615018188 time:0.02086046032453563 them:0.02066914190748067 :0.3502680645346103 +the:0.06647623600238486 of:0.06400552517032125 and:0.062281308223140285 be:0.05990300454652408 to:0.04886480238196076 was:0.046359477162698864 is:0.033642421755709494 or:0.024224754484440145 are:0.023949812295997554 been:0.021419866649644067 were:0.01944175848099471 for:0.018415802147964767 as:0.01668021786349543 in:0.015768024701088016 a:0.014332062457127072 on:0.013218118866175774 :0.011989868035949203 being:0.010901119313506834 by:0.010399318984640265 :0.4167265004762365 +of:0.2363460953012322 in:0.1312561309369335 and:0.071857577222654 to:0.06964041985601513 with:0.05634642791957651 for:0.052123862228656066 by:0.03709245470771219 all:0.036888120189764284 from:0.03368195824647899 on:0.0312942936394529 at:0.02772015612120838 In:0.018595624238642226 that:0.01661143134815104 upon:0.014529454946839522 as:0.010527822265558807 within:0.010065272762893757 through:0.007584197962800866 but:0.006891160458981784 after:0.006609930051429546 :0.12333760959501827 +the:0.46455700544220785 a:0.31673406607816484 The:0.07545957042218455 tho:0.022015299693511646 and:0.013432758686465032 A:0.01200239353579622 of:0.009875997213990354 tbe:0.00745830748559198 this:0.0064300576192196065 to:0.0062619834692315005 his:0.005900727074726646 our:0.005870055744216548 any:0.004801188438420697 no:0.0044596214983084765 grand:0.0038029110683680104 their:0.003761874383305371 its:0.0034970785083597794 with:0.003309226555094346 great:0.003157976831380986 :0.026211900251455512 +of:0.2337443218107572 the:0.06669074221399467 all:0.06398899988145991 for:0.05460186265093319 in:0.04943201682065852 and:0.0446133570470905 their:0.02786336312767016 her:0.02299451395479165 his:0.022455040018189158 or:0.01847409876714947 with:0.016763897896862733 by:0.01623609794467063 farm:0.015300682825758256 other:0.015016682829787529 both:0.013171201537995043 our:0.012485206966966972 its:0.012054520397141392 that:0.011575363017065243 my:0.0115663867613881 :0.2699716435296697 +sum:0.03352282876311118 number:0.028116684882597106 line:0.019995206059833036 city:0.01946514558931857 out:0.019275318828420953 day:0.01666865340772654 county:0.014872697538657208 amount:0.013254184849875051 Board:0.01252325449624941 town:0.012449555905674143 side:0.011663975251122375 part:0.011517157473718155 County:0.011460540331966697 state:0.011087331502382173 City:0.010878919191854432 purpose:0.01081028255427907 and:0.010297866493795984 way:0.009848747943663767 name:0.009522170936943183 :0.711769477998811 +thereof,:0.015460008229824568 mortgage,:0.013716390129790893 dollars:0.013531911422487084 ;:0.0115347877276928 years,:0.011480633581359903 due:0.011078022740078804 hundred:0.010002504934089862 of:0.00988008630289484 States,:0.009807032818952928 it,:0.009502796315999745 same,:0.008994904913328385 county,:0.008577494541768567 them,:0.00817970131070215 in:0.008130195632286445 dollars,:0.008077499812329454 mortgage:0.007959796127865064 law:0.00754729929797224 city,:0.007518058718105014 act,:0.007440737967543248 :0.8105801374749281 +day:0.0661313801152878 city:0.03601446390778281 side:0.029261575652152597 State:0.02766456711707851 part:0.021657255676435786 line:0.02110317559655293 City:0.019082456557250913 name:0.016247304344560214 place:0.015677020560736037 county:0.015122613404102547 case:0.014642626932066513 state:0.01369157085088472 son:0.01284321150748852 daughter:0.012373970310997953 people:0.01200229852208322 office:0.011118288483106998 County:0.01046568390472688 corner:0.0103582371814254 favor:0.00986694645431515 :0.6236753529209645 +he:0.162108096338937 and:0.10568244436251117 I:0.09242522248684783 they:0.08446994844992105 who:0.047169072923088674 He:0.03885361588501082 she:0.033987799742135845 it:0.033388840130459334 we:0.025414818025119794 which:0.022179544693326263 as:0.01901184490966847 1:0.018627622135941643 be:0.018442911010866522 They:0.01675554238714577 ever:0.016135059608885883 that:0.01591994057178695 you:0.014202482535333422 lie:0.013392728091425294 but:0.013144000455224205 :0.20768846525636409 +the:0.1225076649597919 and:0.07161361224167645 of:0.06473629272949444 that:0.04958618514670853 in:0.028043918893866652 The:0.018977980784367614 which:0.018116365783577473 a:0.016457792131635864 Mr.:0.016204994403703713 any:0.014996833454149294 as:0.014951613809545558 or:0.014949554079500006 such:0.013882217367030407 to:0.013849308168220787 no:0.013167338522426214 he:0.012643594782225433 their:0.01149823381066073 for:0.011150101666402977 other:0.010739089653356843 :0.4609273076116591 +and:0.08952307840244308 to:0.06361716496541442 in:0.039693217386609254 the:0.03897804143111933 of:0.03511726134423916 that:0.024123922275723412 not:0.023898606090794985 for:0.022657531457723243 I:0.01935055655627128 which:0.019076155425379746 or:0.017050923206013355 have:0.01564436923128384 in-:0.015324785919123955 re-:0.015206557420749943 :0.01481725702077034 In:0.014759641681405028 will:0.012255546741123027 you:0.012198419436505311 who:0.011910494824925679 :0.49379646918238157 +the:0.39304291566487487 a:0.09624002809933772 of:0.06502001417360986 and:0.04760819149838975 in:0.03455864437224566 tho:0.02193379521466496 an:0.021635446274360284 The:0.017508508129641 or:0.01698862008940202 their:0.01631651197252068 no:0.016109021437344283 this:0.01349266703606862 any:0.012828811330990314 his:0.01281914772896226 to:0.011832616852081278 for:0.009902114803518393 that:0.00974156352941184 its:0.0095291975521444 tbe:0.008695392679435815 :0.16319679156099598 +to:0.12022893700269083 and:0.09020394424291768 the:0.08587503820055309 of:0.06450042443224316 in:0.0310058468700829 a:0.017742048521183405 :0.015548046036689871 not:0.01491307651316237 that:0.014112408707955496 for:0.013734482372212283 I:0.013065769926808477 will:0.012848502316304782 at:0.012837991177321897 In:0.012628718855091186 by:0.012491091048660757 be:0.011425930130217754 is:0.0113962101007567 he:0.011342727513475473 or:0.01112522537451577 :0.4219735806571561 +a:0.18280349856055386 the:0.13129210270283626 to:0.11279301236897755 of:0.1000076206698119 for:0.05879171708907832 and:0.040632121313204775 in:0.03677166603706485 at:0.02817592032166233 be:0.027410934853477016 by:0.022750026915834828 with:0.02023997940661223 was:0.01961143441088505 every:0.018027326246969268 one:0.014547510064716386 is:0.014182516058616063 are:0.013964746236317487 or:0.012777725059473097 from:0.011299926350298589 were:0.011165173490195867 :0.12175504184341429 +of:0.20302701073163157 to:0.08849774348222653 in:0.08461478400087474 for:0.07372654842076827 and:0.06976884619668905 on:0.04388271363692125 from:0.043260309989087094 by:0.03855948865570517 with:0.03831160901551999 or:0.032756052866004234 oi:0.023664933210815548 In:0.023000154243881063 at:0.022551710018369364 that:0.019095517104430516 upon:0.014080702254932598 ot:0.012665842530049338 as:0.008913090416528059 into:0.007683911857718101 against:0.007500247253534372 :0.14343878411431316 +to:0.263409309931965 and:0.10189351003746523 the:0.08401631579564578 not:0.06321760372315019 will:0.057867134370578485 of:0.048321457097416504 for:0.044755515380733725 or:0.033100797273925835 would:0.028529723001178554 a:0.027260761603349056 in:0.022807308420039682 by:0.019234672717630692 is:0.01867851354445119 was:0.017167526076933348 that:0.016764603025637006 shall:0.015607422041198256 be:0.014535045212403964 without:0.013314572624469601 it:0.012695222005215223 :0.09582298611661272 +number:0.07936486626472158 deed:0.04782872289432975 city:0.04529721504119386 State:0.03948495631386208 sum:0.0385482610725371 county:0.03786793369705462 County:0.03387273464414626 line:0.03097262170371473 state:0.03075707342492471 Board:0.030198417044717433 City:0.02420966270006015 day:0.01775527769488701 corner:0.01735852939406633 acres:0.015947310613991586 rate:0.015937865744875407 out:0.013560669855392 town:0.013533386527160947 bushels:0.012920762636373826 lot:0.012763525675810034 :0.4408202070561806 +and:0.21912857797141996 that:0.12612960372662618 as:0.09741335600300842 but:0.0412915095351797 even:0.037094035169566664 And:0.02620564510440045 or:0.023466409296357082 But:0.022118025687574577 see:0.02169483661620632 ;:0.0127932422353468 and,:0.012772737420970863 know:0.010709127131252688 Even:0.010049673725760938 that,:0.009609381980062498 asked:0.008178627448094342 or,:0.007415157645841991 which:0.00704121033615635 doubtful:0.006910235158049905 cause,:0.006626540591359064 :0.2923520672167652 +of:0.34412164245965476 in:0.11479034230826798 to:0.09175511108999401 and:0.04684676596147334 on:0.042786314983101904 with:0.03845617415308404 that:0.0341019213915791 by:0.033138099052308516 for:0.03189335026089182 from:0.03108523591709197 In:0.022380322445552592 upon:0.018973543327274373 over:0.010721163992961887 at:0.009429755711305414 or:0.009333517474027669 but:0.008953041719643656 as:0.008696398078821697 all:0.0076058972969874515 before:0.006801938407635554 :0.08712946396834229 +and:0.04491804315792162 covered:0.04018777062174743 filled:0.03439831602262882 together:0.027274277474498326 charged:0.021185110165574027 it:0.018970003064941 up:0.017480630635068384 him:0.016212955803671315 them:0.014293565819421733 compared:0.013525193832595763 connection:0.011614636799553067 parallel:0.011283394857871554 do:0.011130056469426521 loaded:0.010955317894446719 trimmed:0.010816708291869467 thence:0.01055173438898371 lined:0.010343364261696459 but:0.009666074941737286 troubled:0.009518829589372486 :0.6546740159069743 +is:0.16180211606109193 He:0.13299537646339468 he:0.09379365868672228 the:0.05688580902838177 be:0.05673400756627527 and:0.048346931837754584 of:0.04832914176115517 was:0.04674548334557047 Is:0.028056170362910752 are:0.023675731817704892 been:0.01796821408699316 I:0.01775898516690657 she:0.016270959275268355 by:0.015891674362732727 also:0.014676765250904207 have:0.01438308665441518 She:0.013945238619585647 to:0.01353847302783607 who:0.013430501016701377 :0.16377167560769493 +and:0.39488951023152874 will:0.05288053059954104 shall:0.030833396087540137 would:0.026633678997194564 And:0.021336024160321113 that:0.01797510163890219 was:0.01793124037238485 I:0.016897430550538148 but:0.016358974451812107 He:0.014364924518431734 should:0.013437692876326042 is:0.013154666810382031 it:0.011049189680005045 he:0.010487186608935132 or:0.010462920989894334 Since:0.009582824358001922 can:0.009276431186715898 aud:0.008906683765249843 you:0.008859245691458089 :0.2936823464248371 +the:0.22044444262815824 and:0.10572167895056667 of:0.0825718768738132 to:0.03708726183969666 a:0.03358892090329963 at:0.030906830744077345 by:0.02451213670921163 on:0.02353570212148608 or:0.022524189512359592 as:0.019351673543308884 was:0.018753800234568196 than:0.017432358808367056 is:0.016250121520729004 The:0.015025654358206597 for:0.014939802603942839 in:0.012195889983599743 his:0.011874766105639091 their:0.010678044347199604 with:0.010407705269275319 :0.27119714294249464 +a:0.1560523539937706 he:0.1276110429369246 the:0.08966655425002819 and:0.07638728018291116 He:0.05291530095568781 I:0.04800087792168332 who:0.04113474360316818 so:0.03716265609823795 be:0.03376439045698831 she:0.02885763788832589 they:0.02700447302206516 have:0.022746474560089405 that:0.018958055080342085 was:0.01873092108488739 which:0.0174066470791026 been:0.017061001100782645 had:0.016219829688448057 we:0.015795848359287476 very:0.014500014754402837 :0.13902389698286632 +make:0.12420607332394258 give:0.08818583686765562 and:0.07062334485136029 of:0.04632922336123501 as:0.042601516067764716 that:0.036105858155268476 in:0.03253852952172686 to:0.03176751128482822 for:0.031580146178034736 with:0.0308411499340924 is:0.030542283804975662 makes:0.030017002207676103 but:0.026639957008776454 find:0.025509509254171597 gave:0.02434323050410744 making:0.022303627839858037 found:0.02077146591271942 consider:0.020689153144716994 on:0.02038052815712997 :0.24302405261995944 +and:0.1444941855866664 that:0.1373321917696062 but:0.06318178896040962 as:0.041458410389116684 if:0.03595722392932196 which:0.031691796591825604 when:0.027469691658614726 what:0.02442502114852668 But:0.019213506271256692 If:0.019182834835633565 for:0.013652598035513755 :0.012599996633229507 the:0.011265239556776137 it.:0.010452520317316102 because:0.009840331521342833 whom:0.009496796507795405 will:0.008914670476955747 And:0.008517408353736355 why:0.008475993580072089 :0.36137779387628394 +of:0.210393911454493 the:0.10807019154904719 young:0.05016961973836896 hundred:0.033203254945053606 and:0.0313817458665748 white:0.027108993123287742 two:0.024743341014941488 business:0.01839901946342518 thousand:0.016420620216941666 colored:0.016296371263976192 by:0.015812496577774775 good:0.015294736634208534 these:0.01351486234816195 such:0.013054700300366897 three:0.012356240952037743 other:0.012348665655118995 to:0.012079573341690677 his:0.011298597333968447 their:0.010917799408700751 :0.3461352588118614 +of:0.312400814767901 the:0.09859502195443151 in:0.09632246349632005 to:0.09565743456054347 and:0.0527926282873507 at:0.049733389886959495 for:0.03877587490875782 from:0.022518565275511798 In:0.01998669583409142 or:0.012788606408785505 about:0.012079190134974228 with:0.01034691582612908 on:0.009558595643951949 :0.008199198008058715 a:0.007228502176931704 all:0.006994688232830379 this:0.006465205488906738 by:0.0062707222514250555 that:0.005490001322867658 :0.1267954855332717 +of:0.25275266397169344 and:0.14560234553483592 by:0.13260883521825248 in:0.07761331601243526 to:0.06644798285686895 for:0.06453681921723606 with:0.03230636616531689 In:0.029470807340530803 or:0.018275973491086377 that:0.018124270211097613 from:0.010369664584946033 is:0.009934769031119678 without:0.008973032677273373 an:0.008610936674362944 which:0.007627499555166222 are:0.0064012608040139715 not:0.00611503802218633 the:0.005672380470230085 all:0.005651196997029025 :0.09190484116431857 +as:0.07348237429869825 and:0.053293291927724 according:0.0479709431097652 up:0.04410375066718131 them:0.0360918361710351 regard:0.032406892412297036 come:0.031291428310290255 back:0.02891251395441225 return:0.02673975554051193 came:0.025351047659788954 returned:0.022021941716222352 it:0.01975522069512534 down:0.01933170912324385 him:0.019027828623193535 go:0.018504100610066444 went:0.017627960690307223 given:0.016230557067889343 owing:0.015689732254652238 attention:0.015375915241202635 :0.43579119992639276 +the:0.19440387777171889 of:0.08049512825084389 and:0.07213050934580077 a:0.05638228109597828 to:0.025756888902114163 or:0.01723418446114133 an:0.01712622485715502 The:0.015425325182247342 at:0.014082989149746303 .:0.014007694563982178 tho:0.013880949211722912 in:0.013831993318996821 :0.012231392480353303 his:0.011966462934399034 on:0.010712636739004447 be:0.009634045267483933 was:0.009629643742216592 from:0.00911277785041206 is:0.00909328324626292 :0.3918617116284198 +the:0.23606206074020195 an:0.1844338596946253 to:0.0922046120258446 of:0.056687732540616514 and:0.042280183849039 a:0.029587294744121025 is:0.028027887107567994 in:0.025695233849465222 not:0.024423289649338268 be:0.02023113757626792 will:0.01874177805420047 are:0.01651329607141136 was:0.016235087712486936 tho:0.014769227458114098 with:0.014489717129160305 I:0.01348953220654042 for:0.012222602945814804 at:0.012004819973060884 The:0.010635230299558608 :0.1302654163725643 +and:0.08894606480008112 recorded:0.05396623958202806 that:0.029615579984763957 was:0.023057501810160204 made:0.018150969254583402 up:0.015469636484351963 men:0.014707975640937565 feet:0.013554653855777438 held:0.01306976780650839 office:0.012133331872758727 one:0.011586145028314771 part:0.01147385574969866 corded:0.011215477241811492 is:0.010598289429335451 him:0.010328378500080459 now:0.010294153758077287 Monday:0.010169377107230449 time:0.01013355773833023 out:0.009858387527129149 :0.6206706568280412 +to:0.381851208565992 and:0.14152216586841362 of:0.055617150171348925 in:0.04899084416447584 will:0.047030119881218545 the:0.042922308543371986 not:0.028989995725513987 or:0.02650002675823028 would:0.026399075661805427 no:0.02117672716303654 have:0.01775304740474166 without:0.01743874495864447 any:0.0156877863228445 In:0.012625280935026087 which:0.01209080038132931 that:0.011505769146482502 by:0.010916702101088036 should:0.010797080125021109 with:0.009114477297998245 :0.06007068882341696 +the:0.5015693846463568 of:0.12413059760349864 in:0.044701192526195116 The:0.030354514561011056 at:0.023990523283339404 a:0.01966443195933626 and:0.018598855183993512 by:0.016168044373069217 tho:0.016057499264785266 said:0.014491857667980123 from:0.01136903227879389 his:0.011326834940190402 on:0.011164976859645927 an:0.010895626731926669 tbe:0.009634885546476854 In:0.008870435832751466 for:0.007861117782378186 with:0.007308882747773262 to:0.0061828848157986895 :0.10465842139469923 +they:0.18777897774325128 who:0.1285662238290447 we:0.08194633378314725 which:0.07494193092483954 and:0.046873035238487626 that:0.042175983593414554 They:0.03864062816102944 you:0.036855330728351975 We:0.031197610359766672 men:0.020599223711743737 people:0.01808137939528643 there:0.013691660741914378 these:0.010899367738245163 as:0.010773939783099823 These:0.00951877175920158 them:0.0060889384401860685 things:0.00550719644938235 but:0.005316997951005202 facts:0.0050313987091098475 :0.2245150709594924 +with:0.22739943054129036 to:0.20813443478274665 upon:0.07422119067281406 of:0.07233431752700288 for:0.06026540624249923 on:0.04197660084464246 against:0.041521921392402274 by:0.03609828235876222 from:0.02473408802762285 in:0.017910231777009008 about:0.016918039477733574 at:0.013738238248260565 over:0.012225711823332923 between:0.011278785281845484 kill:0.010984507381471288 behind:0.010662055195477582 around:0.009806237744945075 before:0.00980100639741175 marry:0.009304486259855414 :0.08968502802287436 +to:0.3828443526954647 a:0.13333052302269532 the:0.04713006004212091 re-:0.043168672879964676 not:0.03973250001767273 and:0.03912845205431228 will:0.031298960196924554 they:0.02099514322824652 would:0.02059528277896958 or:0.019296261837211497 every:0.014445901268031887 all:0.013737288430247229 re­:0.01292291353990385 may:0.01150744967950536 re¬:0.011352826963983357 his:0.011266579210252205 can:0.010877618839082817 should:0.010801741954629103 we:0.010025305506512585 :0.11454216585426887 +that:0.3006282797824588 which:0.08825833989594935 if:0.07590645430925741 as:0.057415901162760165 when:0.046979310514990436 and:0.04469798510716899 where:0.03859947268255101 what:0.029567497471003793 whom:0.02794588647609859 but:0.027263368649816086 said:0.025667511709866035 If:0.0221645656642884 after:0.017088573952120545 because:0.01688933254693009 before:0.01683775684107503 until:0.01581127311986328 though:0.013677231415689368 time:0.013460006345194214 When:0.01100496486132436 :0.10913628749159403 +of:0.25626981084565137 in:0.09151001799807366 that:0.0704390432220375 for:0.06820894678548466 any:0.06639546533106501 to:0.06589954672229265 with:0.06535051164701464 by:0.04471858705170561 upon:0.030491502296520503 and:0.02948757869737568 make:0.029318177928365302 under:0.027766883192929803 In:0.019128832552573197 no:0.01637549504007089 from:0.016053790843273165 on:0.015269920966435669 making:0.014221107827442082 have:0.013640874632407608 is:0.01156277165978651 :0.04689113475949449 +last:0.25517867468509114 a:0.21305259027244863 this:0.12994649692546092 the:0.10291831637541494 past:0.06366930280971941 next:0.052202425755800246 per:0.03374728125063093 one:0.02555121892319959 every:0.019714226190789583 to:0.010355511142714985 first:0.006119690511917416 that:0.006053764717394974 each:0.005699632804880955 of:0.005301913819230024 for:0.00520562181661665 A:0.0050285054987123145 tho:0.005026809190527804 previous:0.004776322081136647 preceding:0.004099770905490199 :0.04535192432282265 +and:0.20448436040807252 that:0.09658874084439074 but:0.08768613606923051 time:0.04049380941655143 But:0.03190883114208586 or:0.016997792483260315 And:0.01699662229227578 day:0.013924986392584387 ago,:0.011140123108857227 it:0.01021387620294247 even:0.01013734412815634 and,:0.0099193400375064 me:0.00980477449229753 him:0.009667089187298557 days:0.009446861281092908 only:0.009081754337786579 them:0.00847992703835433 come:0.008292794939838822 year:0.008117496029847732 :0.38561734016756954 +a:0.2026138951157853 the:0.11809477752112416 some:0.11212891596262366 any:0.10475363229380492 highest:0.028220140612957058 in:0.025405982905954715 one:0.025066011490653257 each:0.02347471457340881 no:0.02288214886044261 this:0.018261800011646356 that:0.018171271213590717 certain:0.01768081584549842 and:0.01739171214208855 every:0.015562946649933403 large:0.014165609886649107 of:0.012325160330189955 his:0.012010636683921645 such:0.011330756096077936 The:0.011014335144055573 :0.18844473665959388 +of:0.15461684514775906 the:0.14841738475800587 and:0.08054388594418 to:0.04146131258671637 in:0.03705160755655243 a:0.02944352140190106 with:0.025084756891798864 for:0.020089460419595275 by:0.018894092285948707 all:0.015275758920820523 or:0.014684665830473276 The:0.01353045680741581 tho:0.011960871984491403 two:0.011656512071061035 :0.010393393676965549 that:0.01032835681755869 an:0.009865626804025565 their:0.009778066641917656 as:0.008950536135079163 :0.32697288731773366 +cut:0.09919473615795606 take:0.057821800332270766 took:0.055065899294234874 taken:0.05324700827145077 cutting:0.04103570555385441 set:0.0365106045110644 get:0.033488244752728005 put:0.031025764875708153 them:0.03020161256790504 went:0.028774953198382653 him:0.02852364593813027 carried:0.028368075041258274 pay:0.027707805985995378 it:0.0270615147838221 got:0.026498402628021746 pulled:0.025427790084449686 came:0.020635019258859445 and:0.020122313938099226 carry:0.01989491441108885 :0.3083941884147199 +and:0.1518769662260956 that:0.1085418017712042 as:0.09803698022536364 when:0.09171170458573591 which:0.08114008686823782 if:0.0354213465658112 but:0.03289814870060115 where:0.022880658056765438 what:0.016545519342247475 Then:0.015968334022595926 When:0.01566677318086587 time:0.01438127991079796 whom:0.01315419998749643 If:0.012116932109665522 then:0.01209767571358518 before:0.01199087072445706 or:0.011809884965393007 it:0.010215667109668192 said:0.010089528600717919 :0.2324556413326945 +property:0.07429438748016665 and:0.058937132558623526 land:0.03585838771896306 premises:0.025439169145153973 be:0.0241777771438733 one:0.02294435570114539 thereunto:0.022881356117242048 as:0.02106051853525447 lands:0.017666266719298843 estate:0.016966142514189198 he:0.015520413520957291 or:0.013559135189984707 man:0.01269241740458599 it:0.012589302151179342 are:0.011967012578037292 person:0.011776561140600116 was:0.011702999289720814 is:0.011372299348526172 now:0.011204271035371666 :0.5663900947071261 +his:0.16428910219448126 in:0.1216371145720412 my:0.11189979462122457 the:0.1036251958824019 of:0.08434463395887178 a:0.06507386243577672 her:0.05507927907111721 and:0.037982458100861406 In:0.03213639227277844 their:0.02640248599947925 your:0.024866843014766597 for:0.018061399039227835 to:0.017639179419459607 by:0.013309266700122726 our:0.012959606382173541 its:0.012609678204373096 with:0.011384429495101522 under:0.007471229909645581 own:0.007437403388061948 :0.0707906453380338 +they:0.1725265216126301 we:0.09367233054320609 there:0.07246871238035128 They:0.05463944113398244 who:0.054435459738679644 There:0.04838222620377626 you:0.04322473979501032 and:0.0424175678191204 We:0.03669860865145046 which:0.034407980465057705 that:0.02552533993406484 men:0.01591251332178337 people:0.014913155626186473 These:0.013969095735907627 these:0.010062135493728707 them:0.007788589432828053 You:0.007082945896354893 as:0.005997082497971526 I:0.005574907343970057 :0.23930064637393977 +of:0.210702990828204 in:0.11932552742704083 to:0.11437630364524305 and:0.05605001752680474 at:0.05378185549740254 on:0.05305916047126801 from:0.043614630424697376 that:0.038013836559794435 with:0.03355330797606643 for:0.033372997221866214 by:0.02941514310015738 In:0.028982761762055366 upon:0.01727100584999504 as:0.01620298244210616 all:0.015957800084668915 is:0.01579956192984382 into:0.011311132134374914 was:0.009443155928425909 under:0.008642502109665206 :0.09012332708031964 +of:0.09129790931378902 the:0.07369883040827747 and:0.047842263382354346 in:0.04189055351593407 to:0.04045875475680249 a:0.03542341257202578 be:0.02020462051672066 for:0.01979292654746225 was:0.01760256398103379 at:0.017380150555488715 is:0.014984483003968216 with:0.014047653760730413 by:0.01374644383819499 :0.012670486581795598 In:0.01200961464556976 or:0.011563835749786333 from:0.011391516893522809 are:0.011273104484969465 that:0.010755276030689069 :0.4809655994608848 +and:0.0880147824500874 was:0.04385948861147177 is:0.04050768291945061 be:0.03137792465644503 made:0.030613930851320643 that:0.030400737856916094 are:0.021815082229202764 it:0.021454756574808737 or:0.021405058805869768 as:0.01990273421133748 been:0.01850481195666733 now:0.018098638301246556 but:0.017866770776920265 engaged:0.016933425050227772 not:0.016909258815860754 succeeded:0.01662312639355865 them:0.016519203696911806 held:0.01577095396995958 were:0.015178405266224416 :0.49724322660551257 +the:0.18139668783716206 and:0.0802081772313699 of:0.07669373778101875 a:0.04880815237260917 to:0.039208950938615636 in:0.022148860574327293 was:0.020144560396712224 or:0.017436598036600668 be:0.0172149602496046 is:0.015286817067342251 :0.01477840608100245 at:0.014320314982317119 tho:0.01268515917492194 on:0.012584834041411655 Mr.:0.012342199614387947 are:0.012099081824601086 The:0.010765734762500583 for:0.010342216641452249 that:0.010053116688807593 :0.37048143370323483 +the:0.16825118215116164 of:0.11151446067020733 a:0.09712803270430458 and:0.0786583643477746 to:0.04793604884402002 his:0.04464952873944928 in:0.04399854482527574 our:0.031978037721812354 for:0.03178121838040441 their:0.02710930785048688 with:0.024994277973794957 any:0.019156347269902594 her:0.01865399530321105 old:0.017303790681354313 its:0.015924770902322243 The:0.015771960890048696 other:0.01549015431482622 tho:0.014517256113416963 some:0.014355003180718692 :0.15982771713550742 +the:0.13758371847043735 of:0.08126231297889798 a:0.04835240661334856 to:0.03996161899422211 in:0.03603320280674478 any:0.034005415697271016 for:0.03290981553838409 or:0.031193260325817707 and:0.028804775836003934 either:0.02343738739108748 no:0.021123155370424168 be:0.016843477735894497 their:0.016601367834784518 such:0.015397861219013374 said:0.015232309787862667 by:0.013689181478574652 with:0.013615736362004947 other:0.013335896604116772 his:0.012177012617782089 :0.3674400863373273 +hundred:0.02334136986593815 up:0.005482494641173394 men:0.005366536521246011 Hundred:0.0047587970519216575 John:0.00441808156134956 William:0.004390720675819281 him:0.004016828614280843 ;:0.003997112205305733 due:0.003721199871732 in:0.0036582900032443304 time:0.003637206863828461 James:0.0035594902370151707 out:0.0034878448964120057 .:0.003467980723571515 1:0.0032804584819785204 day:0.0032444781513863933 ,:0.003058139385740603 :0.0030314555521939613 Robert:0.003005471634785646 :0.9060760430610768 +of:0.11734546267058435 the:0.09117160086199183 and:0.07982369411712172 to:0.0528091196794494 a:0.024136109670351825 be:0.023537735823083904 in:0.020166022100743544 was:0.01811261941358879 for:0.016226942487908205 :0.016116120578320903 were:0.015716240365449472 are:0.01515777747387908 on:0.014789890755355231 or:0.013008211256325872 which:0.01165499255983242 that:0.011413794507918504 The:0.011197785363867792 by:0.011157709930836143 said:0.010314525499239068 :0.42514364488415196 +foreclosed:0.0826326115191591 accompanied:0.05930666942049243 made:0.05336585618201428 and:0.05113808815574321 followed:0.0477509052190524 surrounded:0.027001067213274173 up:0.0223956915218854 caused:0.01986528146981332 secured:0.01963201700061169 was:0.019527138795776604 ed:0.0163892391762384 it:0.014428341647705614 occupied:0.014047766264405974 him:0.014002524716027894 surmounted:0.013411064770142235 given:0.012603829803430331 done:0.01236267211154264 covered:0.012285928470556887 that:0.012257320636555267 :0.47459598590557217 +or:0.1568710206196015 of:0.1353385495178013 for:0.08609065550930259 and:0.06517988857431858 in:0.05684266255245431 the:0.04654581900357877 by:0.04194113544918396 about:0.031303512291634195 to:0.031222103401698093 than:0.030128080643651287 with:0.023730752678705405 any:0.022593602987974536 some:0.018641930403350066 all:0.016908973009501227 are:0.01689990793444255 from:0.015685530945649537 only:0.015495875012490095 that:0.014753153231369623 In:0.013516464500585312 :0.15931038173270706 +the:0.4091602473853125 their:0.08585938375145243 our:0.04781826372342713 of:0.0439836349254224 and:0.03441017669924225 his:0.03348858323098278 its:0.025763044956739003 equal:0.02543123042938275 other:0.02489395932034764 all:0.021586600498481642 tho:0.016240689731099253 a:0.015976867834140786 to:0.012765103865068694 constitutional:0.012763115697127427 political:0.012708711644432845 any:0.012082910537145693 great:0.01161377826949419 these:0.011355829682909603 The:0.008922473407081983 :0.13217539441070905 +the:0.14727394599255683 and:0.09073575783742106 of:0.06485537281499076 a:0.04539783383633917 was:0.03604326562686749 be:0.033311110296825874 Mr.:0.03225326737141763 is:0.024959403187875234 The:0.022325181623238946 to:0.021692442236449436 he:0.019230887868343642 been:0.017093382053680717 are:0.016640905197870315 that:0.015540396077415888 an:0.015031969159176798 as:0.014535609492022329 were:0.01359630038250487 or:0.01310439504764967 I:0.01291679325412565 :0.3424617806432277 +number:0.0448614902738218 board:0.04460637895231121 amount:0.04352873689647975 matter:0.043083710616330574 kind:0.036971646219372836 out:0.03395016719510624 Board:0.028573167251885072 sort:0.024137476283342587 line:0.023416489702116357 full:0.022442337169549856 kinds:0.021582029688022208 cost:0.02091660563734061 city:0.020843898830521707 deal:0.020346904063151625 want:0.020221680280572456 plenty:0.02016325983605956 purpose:0.019897728836068718 piece:0.018095185402155513 question:0.017448379490226765 :0.47391272737556456 +and:0.03868242960999506 as:0.031124813427855922 went:0.02352509775927722 him:0.02196555539050794 them:0.018760608639018784 up:0.017985449426794205 is:0.017894175620344187 go:0.017174904667157563 able:0.016756848979943888 going:0.014481672239490295 it:0.014128375989346808 was:0.013277058274565138 time:0.013249953793837373 not:0.012469887553778763 began:0.012465717758716884 way:0.012105610030480113 back:0.012090864562211581 right:0.011941707822828511 amounted:0.011564315359310868 :0.667354953094539 +On:0.1553795321210719 a:0.12059040152211448 on:0.08292052905144688 the:0.08213501970061508 of:0.07780899089699103 by:0.04505405916342038 in:0.03434707543016439 and:0.02213458779061734 A:0.01920323953121561 his:0.016412502282061977 one:0.015390900496991116 In:0.014857525530859911 :0.012091880013477793 to:0.012086185783954454 with:0.010729754022444197 this:0.010569238398703995 other:0.01034465308091379 said:0.008673099740863822 The:0.008458610245616158 :0.2398122151964557 +he:0.1226918091918387 it:0.09254183892980516 It:0.07605656817535816 and:0.06984723296425957 I:0.06291238175405989 which:0.054337656980192967 He:0.04401947419141828 she:0.02981971603670067 who:0.027748636414127555 that:0.025774150528552215 This:0.013729475483171511 but:0.01255124936134005 She:0.012133798381517066 be:0.011353200255285944 there:0.010807999413767769 ho:0.01011341841340922 man:0.009637493547715249 this:0.009583985419508114 lie:0.008559000454981123 :0.29478091410299073 +and:0.06961599786465661 provided:0.03677953911061771 reason:0.025995750252132743 voted:0.022182957261314216 demand:0.022064367166324813 time:0.01820775591221419 necessary:0.016280489274907037 used:0.016129606351069782 vote:0.01606464690507593 provide:0.016038561442089226 place:0.014607451825594591 ready:0.014526750754874094 candidate:0.014100742814270678 called:0.014097778194759084 necessity:0.012624569563992973 made:0.012460552675973477 providing:0.012013980178692225 reasons:0.01182743058802693 responsible:0.010875925016715087 :0.6225051468466987 +and:0.08503425215113287 together:0.05335287900593926 covered:0.03253077787715905 him:0.028699283380466227 up:0.02694908563101517 it:0.020075958598700875 met:0.019295061035032795 them:0.018700319853085637 but:0.01578533889291739 thence:0.01248413508838869 filled:0.012418217423982135 out:0.012348631427551895 away:0.012156361159124838 do:0.012018718033405752 down:0.011784916836511368 man:0.011218165866290394 along:0.010245892575704265 connected:0.010128653854803403 ed:0.009471429225277377 :0.5843019220835106 +well:0.19230343745259507 and:0.05889439860858683 far:0.04167700078052587 much:0.031315463888105764 such:0.028481243432762763 known:0.02732343891979944 so:0.02386827446148009 long:0.022715819265547447 is:0.021319054308340073 it:0.020352238105665707 was:0.018301231208050737 are:0.017535925026789877 same:0.017168332934790243 be:0.016275017805129847 them:0.015173367244679893 soon:0.014970070648512303 regarded:0.014666646077340488 just:0.014224289300959562 him:0.012609550949252856 :0.38982519958108514 +the:0.2412252424281757 and:0.1339052196530035 in:0.030747650578505897 that:0.029776217563355186 this:0.02410580776582837 of:0.02377799306833742 his:0.021830042843792613 to:0.021327646642268147 a:0.02128298708003417 or:0.017040691192961314 The:0.01595557559452831 tho:0.014954648947519748 for:0.014552178825966496 :0.013820909883758312 In:0.012225308467603833 only:0.011313919344363765 more:0.010982489121609994 but:0.010361072374951518 their:0.00935894055285535 :0.3204554580705804 +to:0.2752691288523868 an:0.18189389127921882 the:0.14038963294430631 this:0.06989201845069873 will:0.04365820086716941 and:0.02898386394349882 "An:0.02463135677967732 a:0.018057126165196342 An:0.0159768540967317 that:0.014436941862368342 one:0.01405381453351185 or:0.011945283016587916 should:0.011084758498936687 said:0.010592566682441589 The:0.010575385688860026 would:0.010248113754723207 any:0.009876185390119538 can:0.009466990902540183 every:0.00913788680552041 :0.088829999485506 +the:0.3473942542649613 a:0.11699443720714751 and:0.07101535339523414 to:0.055526327155763 of:0.049635468776595935 The:0.04530127961017701 as:0.026640555765472328 be:0.020590105314061063 or:0.018367916656189913 in:0.017761170565943746 tho:0.01688038249438993 was:0.016853768448760426 will:0.013940374169530716 he:0.013740017311640967 with:0.012958749818412812 is:0.012112334624652643 more:0.009787586396663167 their:0.009483698925527502 his:0.009136258670015237 :0.11487996042886066 +of:0.29864737992371393 and:0.07693239753863217 to:0.06155463015381506 that:0.06077374768449976 with:0.05764805756672718 in:0.039539828772987236 is:0.037805816421818794 by:0.03700352533367109 all:0.03307761859400658 for:0.030951004767669123 on:0.026123111840257826 from:0.02498091008447252 was:0.023361870180872442 but:0.017201270875992762 at:0.01639240693840683 as:0.014199453079012915 when:0.01155097359170211 be:0.011376876473226423 are:0.011185856411803686 :0.10869326376671158 +of:0.09129790931378902 the:0.07369883040827747 and:0.047842263382354346 in:0.04189055351593407 to:0.04045875475680249 a:0.03542341257202578 be:0.02020462051672066 for:0.01979292654746225 was:0.01760256398103379 at:0.017380150555488715 is:0.014984483003968216 with:0.014047653760730413 by:0.01374644383819499 :0.012670486581795598 In:0.01200961464556976 or:0.011563835749786333 from:0.011391516893522809 are:0.011273104484969465 that:0.010755276030689069 :0.4809655994608848 +is:0.2014543903981625 was:0.10548999196094787 had:0.07322023187384502 have:0.06526629739676768 and:0.05975664198958681 be:0.05497206686602775 has:0.04578659803634028 that:0.0411432152787172 are:0.03401691726356316 Is:0.032404370208914464 in:0.02848165217061211 with:0.026647628161345638 of:0.026496929414288047 were:0.021358473528509867 been:0.020529671522020385 but:0.018178160404773932 by:0.0151333425708262 to:0.01387913147708472 made:0.013304005694808848 :0.10148028378285755 +of:0.17080034043473566 to:0.13024079931289936 in:0.08609325881482223 and:0.07554564107103114 with:0.049705007797793896 on:0.047801570360304586 is:0.0433422135789275 was:0.041665882943454365 by:0.038053115704262855 from:0.03509997167013441 at:0.03458005876145832 that:0.030405939146148406 for:0.02592836578323855 In:0.020845433117522755 be:0.0199445539502573 as:0.01789174247341098 upon:0.017016941425379756 when:0.012376842426146258 all:0.010819722605008708 :0.09084259862306296 +the:0.12071037279450847 said:0.07155470715298433 Supreme:0.05216211754056711 of:0.041644309750608705 Sixth:0.03715182868890763 Fourth:0.02737964903053249 Seventeenth:0.026249994110702245 First:0.026014653099789925 Tenth:0.022205250965465387 Second:0.02130163699184669 Third:0.01963119366730008 Eleventh:0.018946555643496562 county:0.017238611455141457 Seventh:0.015386988976976894 Eighth:0.010883640966453627 and:0.010390562314187725 State:0.009850068284321202 tho:0.008519536795324807 this:0.008207243239338165 :0.43357107853154647 +a:0.4049737961175704 the:0.2485109290162082 to:0.09864599277128273 and:0.04263774909552642 in:0.020262539648417364 or:0.019506981234753966 The:0.018219281422212345 of:0.01777764401048827 on:0.01453867439128374 tho:0.011863084415919486 this:0.011842644753886895 by:0.010558956443155626 his:0.010422173288227378 A:0.010286138976423416 every:0.006145937209380976 at:0.005869893532079373 tbe:0.005116688230917887 In:0.004972192433604813 said:0.00484065173279078 :0.032008051275869906 +of:0.3347158772841498 in:0.09983914024972311 at:0.05725522473891785 with:0.05444172751982703 for:0.05070656344955662 the:0.0320162944937986 to:0.0307618685137076 In:0.0278299976099693 on:0.027127128478796093 an:0.024194367126656145 by:0.022953326648301277 and:0.02267578171489476 from:0.015136954592102694 that:0.01274056770383479 upon:0.01232638690029379 is:0.01065713186383079 ot:0.008717615346237615 be:0.008346306356002314 as:0.008002625245977663 :0.13855511416342217 +of:0.09129790931378902 the:0.07369883040827747 and:0.047842263382354346 in:0.04189055351593407 to:0.04045875475680249 a:0.03542341257202578 be:0.02020462051672066 for:0.01979292654746225 was:0.01760256398103379 at:0.017380150555488715 is:0.014984483003968216 with:0.014047653760730413 by:0.01374644383819499 :0.012670486581795598 In:0.01200961464556976 or:0.011563835749786333 from:0.011391516893522809 are:0.011273104484969465 that:0.010755276030689069 :0.4809655994608848 +of:0.28767355066866834 to:0.08775711267569858 in:0.08678131196995101 and:0.05160598694501188 on:0.04646139928102899 by:0.04519522654900943 for:0.044547789071328545 with:0.03396756772609607 that:0.033699232901107726 from:0.03075346596941143 at:0.027039283056790858 In:0.021061449543044047 as:0.017514234937992545 all:0.012543839382496166 upon:0.011844431150487573 is:0.00998972746569266 was:0.008814315973987914 into:0.008557199930727406 through:0.007781895704231326 :0.1254109790972375 +the:0.11919516938815296 of:0.07230453158552728 and:0.05781056740443249 a:0.043018564803886335 to:0.031305092790907506 in:0.020848713353460488 at:0.014270110001066288 .:0.012526810245749479 :0.012413283442322082 for:0.011719122709941797 by:0.010808400946589808 or:0.010404172990115616 The:0.01003576004804544 with:0.009811868184449042 tho:0.009295902015355835 was:0.008924239095331684 that:0.008672304223433876 is:0.0085591147338948 be:0.008335143826716943 :0.5187411282106204 +per:0.8243514589621821 the:0.043936193717034985 and:0.026328402518657073 to:0.013506300691653502 of:0.01295614144115155 as:0.009359699792082468 by:0.008323400225939177 an:0.007726927972976109 such:0.006110631463271819 that:0.004841945158923709 not:0.0032346630609681516 said:0.0024456518783591576 or:0.0024399963695161454 tho:0.0015943850067597686 will:0.0015092081043822727 The:0.001341715964986017 for:0.0013396650904779228 this:0.0013039874671382501 any:0.0013020278818561036 :0.02504759723168373 +the:0.14538285862993044 1st:0.08134507703834688 first:0.06736886768797135 a:0.055874525947905124 25th:0.04330570615268372 7th:0.03688213350850801 10th:0.035117537855034915 12th:0.03482687129394641 21st:0.032870317578004654 15th:0.03272520813383107 13th:0.02925249040911833 28th:0.028551498372195953 14th:0.027199406423118976 6th:0.026808826990102827 26th:0.025722141500643267 4th:0.024208282672405948 29th:0.02309675301622377 18th:0.02303604825841656 24th:0.022877400054659373 :0.2025480484769524 +the:0.10728493308281047 called:0.09955866345091323 their:0.0760163047977866 his:0.06305781846074603 call:0.05719730901401396 much:0.04701941943267434 more:0.04678812604043557 no:0.043112100315348546 and:0.039103221845682365 of:0.032377823451218854 calling:0.03092037295926979 my:0.025836350714927906 give:0.02413059247323383 attract:0.02380756912219041 her:0.023665649076393055 in:0.02317542835182797 calls:0.02248099521721443 its:0.022443315584602965 your:0.020685818276065287 :0.1703381883326444 +the:0.38530463948234184 The:0.12332839774856096 that:0.08387918892559826 and:0.07787520808527185 of:0.03992133642069723 tho:0.03362650524157505 this:0.027530306555296306 if:0.016557690827000378 these:0.014966664129982715 when:0.012800641966462939 but:0.012038700693513467 a:0.011697642412271208 said:0.011224265005172865 all:0.010703425522324617 If:0.010605082157222919 tbe:0.010604465326244913 or:0.010148122627006387 other:0.00992012203622462 what:0.009728973059526625 :0.08653862177770487 +the:0.19305283106014612 of:0.0943361954389434 and:0.08828004328475599 a:0.07114356412164778 to:0.05325617449854535 in:0.027816298903288492 their:0.01785183312889016 his:0.015771269170864785 for:0.0149337485890383 with:0.014469370136739837 The:0.013919388688929566 tho:0.013767877409525625 that:0.01349703262804567 or:0.012532800567024584 an:0.01194802208232713 from:0.011519712826478477 by:0.010737015741665476 at:0.009741512499786378 her:0.009023744903684787 :0.3014015643196721 +the:0.11074628397092116 of:0.07951682175567779 and:0.07899351429519978 a:0.0543943735107345 to:0.03987642273070964 be:0.030160781271361174 was:0.026700127193684378 is:0.01960709915698138 in:0.01870385886672511 an:0.016622195460626526 been:0.016384284993405312 or:0.016185304882880412 are:0.013583600839579778 were:0.011579003889774992 for:0.011128693253322594 he:0.010985757976145892 his:0.00990295999424592 :0.009864950035075978 I:0.009768756200223027 :0.41429520972272466 +and:0.06317916895143688 was:0.03089079697380977 is:0.020044819943736053 be:0.019406329289829806 are:0.016631216139614186 that:0.015910745835586493 it:0.014132589635136123 been:0.013429954470292457 made:0.013153338042273357 were:0.012494049396038097 or:0.012369181282419555 them:0.011608721240324167 up:0.01101461536327863 him:0.010833186604515583 as:0.010718511743974049 succeeded:0.010682665877813333 engaged:0.010592681714621757 not:0.009777868089593193 now:0.00948198968071834 :0.6826475697249881 +of:0.12290803917675319 as:0.10092694216438537 is:0.07281656193772186 and:0.06015296850196632 that:0.05866341917992869 was:0.051952494436217335 by:0.04992156188831352 for:0.04902278142030771 to:0.04901558791793477 with:0.04340264710651162 be:0.036197850262557216 such:0.03045394143858003 in:0.025432829326508078 but:0.017822137430435737 if:0.016592157277447814 like:0.016438295815065875 when:0.013881702727969437 not:0.013340375855818924 If:0.012927364416938977 :0.1571303417186375 +the:0.13742010605008512 and:0.10207877426319824 of:0.07397450603172974 The:0.03323666966533758 that:0.028170308219414686 these:0.024611712608994665 These:0.02321426573404504 in:0.02233958880195577 such:0.018503551962230223 to:0.016786282210728126 or:0.01636101860162539 which:0.016209694122772757 as:0.016160870658285174 their:0.015028655951173324 :0.014297837749869223 our:0.011954104112023089 for:0.01170272696380604 many:0.010385161604963049 other:0.010218895688899507 :0.3963452689988633 +of:0.20654869127671524 to:0.14179886310295012 in:0.12515158937740703 with:0.049898445298134725 and:0.046580086350732595 from:0.045348438540539694 by:0.04448236390715622 on:0.03984097482826004 In:0.03428566103701618 for:0.03230170563321529 that:0.028512472062513998 all:0.024751713170460217 at:0.024591209801193625 upon:0.020492357991805498 as:0.01772582898962611 is:0.016023462919976323 was:0.009349309601071562 under:0.00911750980617406 into:0.0083180811457262 :0.0738812351593253 +to:0.20497536465119573 in:0.15005768071206257 of:0.14215634335372232 at:0.05517864116721587 from:0.05080058755675417 and:0.04862120992955873 for:0.04244214136236963 by:0.04096295621133994 with:0.03461378284480291 In:0.02485348142840095 on:0.019039450679429717 upon:0.015058148063979804 that:0.014404985732747875 over:0.011935613762135096 as:0.009836124105697532 up:0.009204651807143471 all:0.008809917100733837 through:0.007849926264758148 or:0.007636778396104334 :0.1005622148698474 +the:0.3083568137904357 of:0.09950549532532339 a:0.05211118015530212 in:0.05079938496220961 that:0.03298304247460294 to:0.025660524906303595 tho:0.025061498147434216 The:0.022806195132532684 and:0.022560586828151888 at:0.018082271899567036 by:0.016662122292137788 from:0.015273964918025596 for:0.014888226716833064 In:0.01299103810638142 tbe:0.011022512687957325 :0.010899774420384117 on:0.010243219887365033 an:0.008738988140510839 our:0.0081459005456836 :0.23220725866285796 +beginning,:0.2217658690218287 and:0.09235732641508917 beginning;:0.02999914214482428 as:0.021170635261454834 that:0.020805933584884195 ginning,:0.01975045688390535 lot:0.019544807893960542 one:0.019162627284943872 ning,:0.014604827130785316 meridian,:0.014529419141959045 are:0.01388277814204542 is:0.013070506061648153 Meridian,:0.012921556668261305 west,:0.011536507473775846 was:0.010113936240452044 lots:0.009946745380794965 those:0.009509594033112495 all:0.009435080705850887 appurtenances:0.009163699844615516 :0.425728550685808 +he:0.2794214197728485 I:0.17285566792231458 they:0.06144989693343844 she:0.061446619430801847 we:0.042808856058820025 that:0.03930142319713332 one:0.03927350918591382 who:0.03772335828600394 and:0.028009726922504363 it:0.024461719840777996 which:0.021961569282177556 He:0.02049167511015293 man:0.019338806981683533 you:0.01621368980475817 ho:0.014578052903093433 1:0.010929500010647407 this:0.008550259970160274 lie:0.007274607807323223 She:0.006868720276251969 :0.08604092030319468 +of:0.13242624621479293 to:0.12425715113696587 in:0.0847992499356107 know:0.0601409282073629 for:0.050401569577724736 and:0.04813061406892997 from:0.03859151616342604 with:0.03693629876837258 is:0.035738921456920605 just:0.03404195189484336 or:0.02549522619126283 do:0.024957952609898613 see:0.024296094107130753 In:0.02334618504073565 by:0.0195195319719839 but:0.019005338279551358 not:0.01757072791228886 at:0.017044028264167597 matter:0.016792814140729626 :0.16550765405730117 +of:0.3354572874749542 that:0.08806526081523938 to:0.07863388149674674 and:0.06435812097583912 by:0.05692814081189558 in:0.04763423427639286 as:0.03132880457428635 with:0.030615471070161288 for:0.02649565346448778 which:0.021126621010627445 from:0.020709810495754176 when:0.019548168416876 on:0.017962053882181955 all:0.016968764249003027 but:0.01316935676928513 is:0.011260912758417506 at:0.010727263828141273 upon:0.010614731003037975 if:0.009807357068197213 :0.08758810555847496 +the:0.4926704294546541 an:0.15780449526233917 The:0.08761999436847503 tho:0.030841546446884534 An:0.02954549172170621 of:0.024790099629562915 a:0.0144512176979018 and:0.013715252184853869 that:0.013464782324367137 his:0.012743649546949343 as:0.01151704320005636 tbe:0.011272261657149953 by:0.009529052926778825 our:0.00918003366444472 some:0.009092425536264749 good:0.009000986226944186 dear:0.00813825806059476 very:0.008045085829861907 their:0.007186806875304329 :0.038391087384906104 +that:0.22320293930089966 as:0.1060252068469375 and:0.07727399358695633 when:0.07484420533866341 which:0.07147859858169105 but:0.037457627627007564 if:0.035192614433332374 where:0.023285865251138158 said:0.0198625783107944 what:0.018825383260487053 As:0.018208257628392746 so:0.013035437506396855 When:0.01215510528384197 until:0.011697855167592992 whom:0.010844254980452791 If:0.010691948327569537 though:0.01028298871257018 to:0.010163377566737486 I:0.0096452496907687 :0.2048265125977692 +it:0.25531501014588837 It:0.2007811845036936 he:0.0557347261299609 that:0.05533143898722885 which:0.04733025673883771 This:0.03219203095143278 there:0.02727469901548111 this:0.025127020449402678 what:0.023729098801184383 and:0.023396836169418445 He:0.022219966615481843 who:0.017581934754248144 she:0.011975375204077146 as:0.010760591608623077 There:0.009894291105050666 work:0.007677574730878667 man:0.007530360281477805 one:0.006792358761554727 She:0.006047152817348819 :0.1523080922287303 +he:0.1678599968825063 He:0.07907318345228102 who:0.07081164985179474 and:0.04616590723588888 I:0.034090232774356966 she:0.03091218380303123 be:0.02538606433418892 it:0.024268151100268084 was:0.01666952277005482 It:0.016372378460781243 which:0.015110706962066296 She:0.01379420346360822 they:0.01241903889541181 lie:0.010991739631760403 man:0.010197231627751841 then:0.009616284704197196 one:0.008476682120106112 be-:0.007192714413079609 ho:0.0071808506543287855 :0.3924112768625375 +of:0.28767355066866834 to:0.08775711267569858 in:0.08678131196995101 and:0.05160598694501188 on:0.04646139928102899 by:0.04519522654900943 for:0.044547789071328545 with:0.03396756772609607 that:0.033699232901107726 from:0.03075346596941143 at:0.027039283056790858 In:0.021061449543044047 as:0.017514234937992545 all:0.012543839382496166 upon:0.011844431150487573 is:0.00998972746569266 was:0.008814315973987914 into:0.008557199930727406 through:0.007781895704231326 :0.1254109790972375 +belonging:0.03212455056904486 person:0.02198912722570465 one:0.02196477342890394 and:0.015036532184656972 more:0.014974475779226731 on:0.013241015371911045 two:0.012408120555799767 States,:0.010699632998997207 man:0.010687323712604137 lot:0.009229840993059749 law:0.008622551165801528 in:0.00861184638458777 ;:0.00833767085167505 day:0.007637408293448407 year:0.0074292864442670956 ten:0.0072875823457971564 mortgage:0.006737562445415664 them,:0.006600690042524918 of:0.006547399680063004 :0.7688326095265103 +:0.06243347165661944 and:0.0597812741826444 that:0.02452256400290369 but:0.015554737593966729 a:0.014962420812817531 or:0.013711882192766556 made:0.011483887039989487 was:0.011041019033678764 not:0.010630429888344449 it.:0.010096321826959557 them.:0.01000232036903163 are:0.008766547151167403 time.:0.008437549992616589 used:0.00814156700991026 out:0.008047444164653205 is:0.007936571774583522 country.:0.007580240223227131 :0.0072742551788148235 be:0.00722622710630354 :0.6913692687990013 +to:0.23408452023472082 the:0.1875589930270308 of:0.11960601650100004 in:0.0705247285051536 a:0.06029219660367137 and:0.03774813347635638 from:0.02536667390433397 his:0.02490114420511692 at:0.01560367853098001 The:0.014595550141594886 that:0.013760061590226197 In:0.013039785174601495 an:0.011628378185434034 their:0.01104716070887422 by:0.010465512746563614 tho:0.01011969797373212 this:0.008789823631089 for:0.008715038020851095 or:0.007902991375366377 :0.11324991546330306 +the:0.46323940192176616 this:0.13299005147109838 a:0.05992413622475391 our:0.04420497090414664 tho:0.03244459841365297 of:0.02909838430281087 his:0.028052385284857574 The:0.02560511054202303 whole:0.015863483612220557 that:0.014197129368705728 their:0.013994403360784587 her:0.010881829637912366 tbe:0.00969366208655178 and:0.008644201553170439 its:0.007508656059335725 old:0.006273358094681482 own:0.005983140141700386 great:0.005780299265746643 good:0.005664221250189966 :0.07895657650389076 +the:0.13703330766915586 to:0.07957161427795498 and:0.07268128978643924 of:0.05759442189757493 a:0.05374414967634289 in:0.0488990175343127 that:0.028951545442515523 for:0.02626003451155174 at:0.016865472328660498 which:0.014386268999103918 with:0.013433892740744158 In:0.012748767741816769 will:0.01175714405279939 or:0.011646364645715336 an:0.010055823975408067 as:0.009975203650019693 any:0.009510852425150745 this:0.00830822404511797 by:0.00809049436015611 :0.3674861102394595 +number:0.07708402000415097 line:0.04275901649577514 State:0.040679395256586086 state:0.03881720315328347 place:0.027272037657948844 board:0.027057013380853166 City:0.02394250428077699 matter:0.023163705620825165 people:0.021920599652566354 case:0.0217885092737388 county:0.02063615162738513 city:0.019925609751777488 out:0.019640567436666763 kind:0.019065822594868956 class:0.018799484939602415 name:0.01697990934075424 Board:0.01653631955362958 County:0.014341906874359597 men:0.013718578050607591 :0.49487164505384323 +and:0.08995317707915026 to:0.06844710404109794 of:0.04605142056172993 the:0.04074574508561307 which:0.02479116931334353 that:0.023764822140213245 re-:0.020841117231308055 in:0.020803825395358622 for:0.020278423301550053 :0.018417753428486977 not:0.016860793136637672 con-:0.016444405871234195 is:0.014386481772210856 or:0.014080680914153714 be-:0.01352268143271276 I:0.01317002660943805 was:0.011429878269381662 dis-:0.011196807025842847 he:0.01113106290024311 :0.5026826244902934 +nothing:0.06252510084897628 able:0.05430356112944802 and:0.04989526780458106 right:0.038087733783625684 order:0.037373126557544004 enough:0.0349428389105576 time:0.03486873760780056 want:0.0346953867900447 going:0.033433660360312756 him:0.032420561468315984 desire:0.03120220043142262 have:0.028863686431539602 ought:0.027155397920157285 not:0.026419929717902888 unable:0.026284860345547043 as:0.0260270384727921 willing:0.024717243194984143 had:0.024169625600140854 is:0.024045670887294056 :0.34756837173701277 +the:0.13495043060413897 of:0.08116512228138067 and:0.0666484668031579 to:0.061479885922863124 for:0.0225472057129304 in:0.022258265482069606 be:0.02060705238488401 is:0.018128702512605167 was:0.016565762763359006 a:0.015576597161064762 that:0.014241236932705084 their:0.013967877427544685 he:0.012125594536493497 or:0.011887633530224664 will:0.011130101470498135 so:0.0108874112080436 at:0.010863400836486839 :0.010492776840493524 his:0.010323787803221298 :0.43315268778583504 +of:0.2610207541000638 on:0.10054574648292156 in:0.09781388433219436 to:0.08153964201772788 and:0.05342423063289905 for:0.04217528590270491 with:0.04183936093659442 by:0.03983902291574893 from:0.03790023394168383 that:0.03690089136475303 In:0.030935082469046405 at:0.020511152344996644 upon:0.0193684483052195 all:0.014931592365531508 into:0.011816655043152631 On:0.010142009061922384 is:0.009568773943577996 or:0.009562298964658244 as:0.008422281958639434 :0.07074265291596345 +the:0.19643135097470102 most:0.1580113970356033 a:0.1530425490198482 and:0.05614087606693342 very:0.0556029112006866 of:0.05335794323194734 any:0.028078139440562866 no:0.027739974347069936 all:0.024767291009561786 in:0.02126621366317378 is:0.014211207349181168 this:0.014119846092413872 more:0.013195997049475012 as:0.012765272066982736 such:0.012389970174855639 The:0.012327558096551745 or:0.011673275202432816 with:0.011154912263295354 an:0.011131934145397893 :0.11159138156932552 +the:0.1739161698383607 of:0.14626683833744056 and:0.04784781733781951 are:0.042130277508853814 in:0.039497938924413195 no:0.035518064240118004 was:0.033753636589851296 is:0.03033579785568822 be:0.030161927122222338 more:0.02990518478522433 by:0.02857353236077047 were:0.026594298854230772 a:0.023384168973621555 their:0.022322008214064156 his:0.019735158500476732 good:0.016656286226869682 to:0.016290178105777656 this:0.016175617899008517 less:0.01612300869282451 :0.203812089632364 +made:0.06626495994532966 and:0.04686750370213576 owned:0.046650887556906925 accompanied:0.045927082037983034 assisted:0.03301819888511844 occupied:0.03142979330127277 delivered:0.02636155885643701 ed:0.02254774164539749 followed:0.02227959183699868 signed:0.0211313330468166 given:0.020516781191126505 conveyed:0.018960999509235882 appointed:0.018583013504553596 secured:0.017350246398713055 designated:0.01595141019674009 taken:0.015285973874042773 held:0.015012039758601324 him:0.014430302563928315 up:0.013599245326335737 :0.4868313368623264 +the:0.39749834532651884 a:0.07520030034269234 and:0.05540858759821703 The:0.03273515726769502 tho:0.030061875542463562 of:0.020144331424922633 tbe:0.014929647509541684 in:0.014268129706664795 or:0.013333166761078447 .:0.013287381914101323 an:0.009000188755386574 to:0.00880680429595084 :0.007943763822197133 Mr.:0.00773879605474787 by:0.007328417831573476 as:0.005922572098978465 for:0.0047526933692942485 that:0.004736121968310169 on:0.004594595720579333 :0.2713091226890862 +to:0.1489980850120944 the:0.08022164295935866 and:0.07099642985504681 of:0.06283400559562824 in:0.056006454354629906 will:0.04845701023237942 at:0.045760118028460896 I:0.04156694793852805 could:0.027766245008335466 that:0.02738815660862565 for:0.02504479128556783 did:0.02371756285324369 do:0.02323949125898604 can:0.019823572630720175 or:0.01969019721112858 would:0.01955798898418715 his:0.01912795104782089 should:0.018625280079817372 In:0.018161526048735055 :0.20201654300670568 +the:0.15805797121285375 of:0.10092845460343541 a:0.06712510071557043 and:0.05389739960876382 Mr.:0.035606079026436394 The:0.030368507308847204 to:0.02533927544938598 in:0.021404165636810146 by:0.0175237822780048 his:0.015913602612344965 for:0.015014995877939936 tho:0.011849121720595341 that:0.011456627681223302 an:0.011213996718953914 :0.010611896627049278 .:0.010451572497251501 their:0.009644367794562639 with:0.009607950281093796 or:0.009383670220829608 :0.3736014621280478 +of:0.17312045953146765 to:0.147412153866368 in:0.10222337467994962 and:0.054803139614302034 with:0.04604055511572184 for:0.04149904562368754 at:0.03956938147048781 reserves:0.038840851192945114 have:0.03400578225267063 that:0.03306989117480937 on:0.03199060342861318 is:0.02894910298991354 by:0.028586012888662186 from:0.023493428337626375 In:0.019580418354436822 had:0.01928798308388368 was:0.01712562291840452 has:0.01581001057391569 as:0.01572831389810426 :0.08786386900403018 +as:0.043520907913991436 and:0.03187145913399041 up:0.025828477299434542 came:0.02303082706124565 it:0.019429161979765 him:0.018392445103217702 went:0.018027593979141596 come:0.017888083226860828 according:0.0172463994313635 reference:0.016129533641311106 subject:0.015041548478529626 them:0.014924587837671765 go:0.014142780245611788 sent:0.014035482961063236 made:0.013970580638401143 back:0.013924015778379794 down:0.013539147946238108 feet:0.013437663894705569 entitled:0.013049108391730218 :0.641570195057347 +in:0.30864717517460677 of:0.19200341659339384 to:0.09486762561767545 on:0.08418830140022655 In:0.057073760684712455 with:0.02446266955067997 from:0.023973838075294327 and:0.02334665970135354 at:0.019583132891076434 into:0.019303662447946644 by:0.014231238401077867 for:0.013298099107400688 that:0.013025606924799345 upon:0.010921739472397243 through:0.009295828799092397 over:0.008454961021071765 as:0.007531985741674953 is:0.0075071413079271605 under:0.006018806776612551 :0.06126435031098 +was:0.1617722178575628 be:0.12392346812448679 is:0.1213343271887622 as:0.1134272425898405 been:0.0616361649932155 has:0.05153285059099304 have:0.04364720558210376 are:0.03731634166746578 and:0.03491935136228866 being:0.0322768520918027 had:0.031603835627219946 were:0.031416715841809696 not:0.01837239649426291 Is:0.014327119711815054 he:0.013731295609682597 so:0.010646377117127001 now:0.00938873696131519 already:0.009027267281494417 also:0.008855329773051514 :0.06984490353369993 +and:0.06918971173294593 is:0.057744349134659305 able:0.05117359341974178 order:0.044845030138142956 was:0.04326605796301721 not:0.03409081152185849 him:0.03310527186838928 have:0.030449484552866446 time:0.029442024966932764 enough:0.027048030969751728 unable:0.025473982144679365 had:0.022953313264853014 them:0.022754222116859242 attempt:0.0223823064253689 are:0.021822060644457485 necessary:0.020950306965679837 as:0.020345948400027573 trying:0.02026816162787173 required:0.019200553290847282 :0.38249477885104965 +is:0.1300949053123692 ought:0.06235942008217411 are:0.06072445398663133 seems:0.05697318922100556 was:0.04954471475520722 not:0.048536362204045544 said:0.03881623685409472 seemed:0.03220746110521765 as:0.030923473227594384 it:0.030881869856406088 claimed:0.028226689520969073 have:0.027725540143517465 and:0.027557757709861613 likely:0.02587900806524851 seem:0.02574969309575762 supposed:0.023317446089120043 had:0.02145961764731352 Is:0.017651730366473797 proved:0.01677680343414685 :0.24359362732284573 +and:0.10990237556961939 of:0.09246469562332023 to:0.06291430063863192 the:0.04950933584397327 as:0.03147826735772672 that:0.029940278570410307 or:0.02279220296250275 a:0.019092488735924656 not:0.017327946037822506 in:0.0166716803848654 which:0.015800949074773522 for:0.012383086624330927 is:0.011715310856797365 will:0.01159327563306465 would:0.011454851423393822 with:0.010499897339597344 :0.010279278032396266 it:0.01022420280445408 more:0.009751509474380386 :0.4432040670120145 +and:0.06642789406289233 was:0.02284786419564384 up:0.02125614496693863 out:0.02071604945427886 made:0.01947263295225617 that:0.01739606948596638 down:0.01653481669393844 placed:0.016514785901768574 work:0.015430188529799322 it:0.01520393786357185 point:0.015198227252568077 held:0.014762471997342137 is:0.014704883915299257 due:0.014334720506431002 him:0.013646221269840273 o'clock:0.013080439589245907 put:0.012189351750118847 interest:0.012038778706719216 place:0.011867948584847859 :0.645376572320533 +in:0.12584751051357324 of:0.09759502479664728 the:0.07371839375246729 and:0.055651754291004454 for:0.04744536705298647 a:0.032925964492396737 to:0.03198260274187316 In:0.029652859996176964 was:0.017176340234656633 by:0.01637913782528117 are:0.015624529717594675 be:0.015359740034713075 from:0.015332737536474472 that:0.014587063309917358 is:0.012292937239714764 which:0.011956538642930331 were:0.011584038466634639 been:0.010892258706962473 with:0.010501774296364555 :0.3524934263516303 +of:0.1989834374444772 in:0.1004721202217017 with:0.08715589653067427 is:0.07095086990668041 to:0.06354610533941893 and:0.057088084850161494 for:0.054526861286616796 was:0.04233026875056805 by:0.03462257274058992 as:0.027003537850023338 be:0.023223717860263032 that:0.022167698865602367 In:0.021860980505172038 such:0.01694331992632047 make:0.01508253422195152 have:0.014533985090899983 made:0.014490635137787864 not:0.01387602645012994 at:0.01380077885695277 :0.10634056816400789 +N.:0.46881926888993336 .:0.08831303096761965 X.:0.06916795490133525 S.:0.028095081539702405 N:0.01757912187697468 A.:0.015791932840261095 C.:0.015013180818044886 No.:0.01325783298993866 W.:0.01323356816817346 J.:0.01297430366075732 R.:0.008419771765430673 (N.:0.008030505117222118 8.:0.007660997081252778 Mrs.:0.007478632442220068 E.:0.007137090389181865 P.:0.007050618690474946 H.:0.005972795783148077 T.:0.0058323583604482886 and:0.005644777511913455 :0.193527176205967 +the:0.30868310226910023 a:0.291517580151707 and:0.03282730408561992 this:0.024928968993072287 A:0.022477324879617757 tho:0.022285255886901795 The:0.01600388296566104 in:0.013370761582400586 every:0.010465005104940452 one:0.009502392432147804 that:0.008838599820194698 tbe:0.00878371021001182 first:0.00834609605477393 as:0.007669501516837474 upper:0.006989000344711527 great:0.006710307432708034 large:0.006644585481820764 de-:0.005764707118970097 of:0.005511665350166469 :0.18168024831863627 +and:0.14933103236010742 that:0.1441821524818412 to:0.10230437852607867 which:0.05579241180677099 as:0.047912730211792 when:0.019800625177146692 will:0.01824908130980141 shall:0.01816291212804579 not:0.01695677673975038 but:0.015280919322711535 said:0.01448806241400707 what:0.013477777406877703 may:0.012847555973281978 Then:0.012726016983358963 for:0.012312475754571905 before:0.010336388372135479 t:0.010330487724659653 then:0.0102858373996644 where:0.010213530255702291 :0.30400884765169445 +and:0.04100058548081417 made:0.03527080183438041 up:0.03367954534641095 secured:0.02476622138504677 out:0.024689072807278292 taken:0.02328185886478565 ed:0.02044259980376245 him:0.01783557824685978 done:0.016560066545651793 that:0.015750093181258838 was:0.01569752058067051 in:0.015183890346288944 passed:0.013580017055816527 accompanied:0.013316817877456501 or:0.013019619994860636 held:0.012139161851077915 owned:0.012100256294445628 issued:0.012004080678763133 given:0.011007403175678152 :0.627674808648693 +that:0.13940915097717585 as:0.07282434403171527 and:0.07252342702453653 have:0.05342186913327559 make:0.04695184323941963 had:0.04542613127569967 of:0.039957095085725064 if:0.03673282178811268 but:0.03630641098285065 which:0.03532208995008966 is:0.03295230819420732 for:0.02607486887761621 when:0.022081111579905388 has:0.020845148000894737 Is:0.018581246011660175 find:0.016318906710343143 found:0.015897209822126473 made:0.015526271565348795 what:0.01361437939247904 :0.2382333663568181 +he:0.13241231824633498 and:0.10210467641291981 I:0.10175625840356653 they:0.05145767693198934 who:0.050390028536765025 we:0.035179946361566475 then:0.030366527325581132 He:0.030296223697515758 she:0.029012650500128172 it:0.02893241081632181 which:0.018195569489553524 man:0.017111888454266817 you:0.016001830811206527 men:0.015028872381333198 Then:0.012993492778170449 that:0.01293619134415546 It:0.012093469858386944 be:0.012092454327544447 was:0.010186612269420926 :0.2804509010532727 +one:0.07798655968170567 all:0.0701564311548887 copy:0.04690695820056385 some:0.027625227152969747 out:0.025477954525797434 those:0.02459154416493174 means:0.02404073766879842 purpose:0.02296024622361466 part:0.022077875043067605 any:0.020254061199805943 way:0.01695718583420243 many:0.01538878129643016 end:0.014892268115746548 and:0.01387430440588936 manner:0.011913042152360553 time:0.011678765868898126 most:0.011599288876158725 each:0.01152901784856222 that:0.011431730212607183 :0.5176580203730009 +and:0.08802847857673357 him:0.052172970075824145 was:0.03542681819451724 man:0.030431362773220866 it:0.029288088378781416 up:0.020708279568259668 that:0.020571036336634863 found:0.01804151815880068 made:0.017726654982860655 out:0.017249066649085414 time:0.017248369497211622 is:0.0164635781145802 them:0.015112757506419695 confidence:0.014637843296866227 but:0.014176928512072494 himself:0.011931876492387125 or:0.011775222365452837 down:0.010882539895529912 put:0.010458276845277415 :0.546668333779484 +the:0.48222000394780495 a:0.09968856646015713 and:0.07503611058704913 The:0.06595656925350803 tho:0.04022797231244287 or:0.021813683024731207 tbe:0.018430919401889685 of:0.013000063195588017 great:0.009260371697388855 as:0.007494398195893658 A:0.007412505989236655 in:0.006543704017792084 all:0.006182598991090021 he:0.005862265550049096 by:0.005528257940009414 :0.005207317862196531 general:0.004863252523432495 tha:0.004797358743798675 Tho:0.004673025343461906 :0.11480105496247962 +of:0.22773065884921864 and:0.0951652975070623 the:0.08161008317408446 in:0.05860265106578032 for:0.050991326947663174 any:0.04337919984580482 that:0.03303165825219553 by:0.03251210945260965 only:0.03222022333609346 with:0.03194588378824934 to:0.0317535951341747 is:0.02820651368539267 no:0.02568951382442193 from:0.023402161207098038 but:0.023379753991597023 than:0.02308223935596705 on:0.01938177579993275 some:0.018119262477326373 a:0.01623594349473306 :0.10256014881059472 +the:0.2813198589993358 no:0.15469592107130126 of:0.07612262218240455 much:0.06846819099325117 The:0.03707008847451784 a:0.03192275513103125 and:0.029527532953537602 any:0.029468046868929232 his:0.02826436780740445 in:0.028013525586923972 little:0.027837335943102875 their:0.021786662391396244 tho:0.021638865631537295 great:0.01971024097758106 to:0.019263579358938555 serious:0.017307031366532753 is:0.017276964974205257 this:0.014607987443195997 more:0.012309135612278744 :0.06238928623259404 +sum:0.03352282876311118 number:0.028116684882597106 line:0.019995206059833036 city:0.01946514558931857 out:0.019275318828420953 day:0.01666865340772654 county:0.014872697538657208 amount:0.013254184849875051 Board:0.01252325449624941 town:0.012449555905674143 side:0.011663975251122375 part:0.011517157473718155 County:0.011460540331966697 state:0.011087331502382173 City:0.010878919191854432 purpose:0.01081028255427907 and:0.010297866493795984 way:0.009848747943663767 name:0.009522170936943183 :0.711769477998811 +city:0.0196334344707747 hundred:0.014537945596444569 feet:0.01386046327100031 one:0.01349312497872304 north:0.012791589211290201 county:0.012701234457429022 street:0.011318690379370349 State:0.01126075451960974 life:0.01117559465985633 day:0.010728652978369895 land:0.010014877110651174 States:0.009698299107662973 wife:0.009664912935102231 men:0.009563142081677753 power:0.009282156605423907 house:0.008974753297048388 quarter:0.008827792768175073 up:0.008768429665371832 time:0.008386753145595645 :0.7843173987604228 +I:0.10235667957814905 he:0.09868466528772202 and:0.07050116300059375 be:0.0689490258151048 they:0.06722919977801664 was:0.04376878946225198 we:0.04039014621676097 are:0.02854592607249537 been:0.027660477169080534 who:0.02701402238864629 were:0.02601560130088359 have:0.025412429678378406 is:0.023745222921396924 1:0.019156632774144176 He:0.0181175816839135 she:0.017853220566787276 it:0.016403853387540846 not:0.014442509685823324 you:0.013462460374032783 :0.24929039285827778 +and:0.1338754820798073 they:0.07744780171699754 he:0.05746762360904678 is:0.05160118109758911 I:0.04746176939521228 who:0.04697333464833516 it:0.040971513047348945 not:0.03530620827412315 we:0.03528280476482094 It:0.034857233961686544 was:0.033310707512556575 be:0.03047521451229886 as:0.026019016199381847 are:0.01828166817447283 ever:0.016032820081013196 They:0.015013313517363376 He:0.01465175404951895 Is:0.013028432684131933 to:0.012466800913063774 :0.2584753197612309 +and:0.09247332925256331 :0.019103216830161095 to:0.013301852119173013 be:0.013141445597547976 is:0.011991976684861719 that:0.01197081125943624 was:0.010955227100027363 it:0.009778190420085597 w:0.008339775701173033 .:0.007910781515431658 all:0.007853821178865556 :0.007218919519007657 are:0.007204473859833253 now:0.00664901374574161 the:0.006615803798238607 as:0.005822376343504835 he:0.005624162139573428 were:0.00501097531347825 given,:0.004887158558599551 :0.7431466890626963 +two:0.12640853757440418 many:0.119778734201254 few:0.08767730680372533 ten:0.0856181820564309 five:0.0670861842222293 four:0.057247564587971735 three:0.05452093777561093 twenty:0.05043609017020442 several:0.04668901805992127 six:0.039953839170588396 eight:0.033590448976334425 seven:0.02859166547207403 fifteen:0.02247549954301054 for:0.02032062906751966 10:0.01904798192286923 some:0.019039282247511 thirty:0.018775033305948916 of:0.018329073880364963 20:0.01693779629292822 :0.06647619466909858 +the:0.10379838905333733 and:0.09472196648440975 to:0.06316910136450736 of:0.060618492918348615 a:0.03964595692136802 in:0.03615194597679835 in-:0.030299835748289483 or:0.027693827576069207 that:0.026089015117212445 an:0.025901741280838185 for:0.025887874679971733 as:0.02279074144091712 is:0.01806305366651747 with:0.017612348901993223 which:0.017346460106768748 it:0.015184302721758363 be:0.014115988153728394 by:0.013888752709600974 :0.013321956836197881 :0.33269824834136735 +of:0.2647989847966197 and:0.0749118442771294 to:0.0734391630683214 for:0.07264293607464152 that:0.058937712432175444 in:0.053821627134602375 with:0.05184919816820443 by:0.04712972227287703 is:0.04527900784649481 was:0.02041672026093008 be:0.01769053956233506 from:0.017683156245530608 all:0.016709245749258524 as:0.013268643234593818 but:0.012440809449847172 In:0.012390357555557042 on:0.011862653056128325 are:0.009997954094504604 under:0.009780171676602091 :0.11394955304364658 +the:0.23931310073210876 of:0.21911499208306676 his:0.04257087964405546 to:0.04167282003018301 in:0.03827209589208355 their:0.03795583282132932 good:0.0364220724001348 public:0.030023741627635516 perfect:0.02752248553609018 for:0.027258471089274292 and:0.02366035657457106 my:0.0187874055609008 or:0.018372926266538383 an:0.01625145095750448 her:0.01470756966266343 our:0.01469489214216292 general:0.013803905592646678 no:0.01356189262079306 The:0.013516219393311876 :0.11151688937294568 +.:0.16006798053166058 A.:0.06016304415325699 Mrs.:0.0416708202549261 C.:0.03345430602816352 Mr.:0.025613197204561608 Dr.:0.024459893346512097 D.:0.021023024721221244 J.:0.017972658954625853 :0.01645830576168477 M.:0.015361097675955959 R.:0.014505645064002424 -:0.01310835550292985 S.:0.012753034553161758 W.:0.011927899292130903 B.:0.011610159081872726 and:0.010781232431120636 H.:0.010278128506622866 L.:0.010148126103405397 T.:0.009829613573018819 :0.4778134772591659 +to:0.15031706312056395 with:0.0938885065357916 for:0.0662702483995419 by:0.051443256348923265 of:0.048578473201476645 put:0.043728552636276743 upon:0.043242767098938165 told:0.03177409142193343 against:0.028286582159455894 at:0.028037414970821076 keep:0.027632095494286156 on:0.02696735042486172 assist:0.02435466442358006 saw:0.021947227039773986 see:0.021928685643212962 took:0.0217488307805318 found:0.021675667111858647 take:0.021194867476380174 made:0.017691387932053805 :0.20829226777973803 +the:0.14236265328076605 of:0.07838938141226007 to:0.056346888685305095 and:0.05462852877587711 a:0.039088293088393254 in:0.0209357713450444 by:0.018247932233352172 at:0.017308706495121166 :0.015998605222481196 .:0.01386198119321919 with:0.011938150480281792 on:0.01101867758260915 tho:0.009936518428523325 or:0.00893847653244998 his:0.008878763172473951 The:0.007953738176891633 from:0.007637704722638708 for:0.007242078883807987 was:0.005689254207408089 :0.4625978960810957 +and:0.12892662447278513 of:0.11462222315053168 to:0.10621576725043129 in:0.0978748917943735 with:0.083260181532499 that:0.038775054550345495 for:0.03192382276674949 at:0.02711299453106552 was:0.026824520581042278 by:0.026442472417042735 In:0.025347739777927883 nearly:0.023063460604753536 on:0.0193630355568026 had:0.01840663961509202 is:0.0167594923056879 it:0.01636613040183109 have:0.014375279185350304 from:0.014037277433351807 him:0.011108322645248223 :0.15819406942708847 +of:0.20826169567362085 for:0.09648199890163163 in:0.09044302006629684 to:0.08975933070020724 and:0.06451546838513018 with:0.04516891647968899 that:0.04222897768082896 by:0.039388001688053266 on:0.03873727905708284 from:0.037117476308589116 at:0.0357994567589855 In:0.025716438182555524 after:0.021298339722511248 all:0.0170753692183458 upon:0.01487779902397428 into:0.010133983020499525 as:0.00964742706928608 before:0.008854794552670598 over:0.008534511348522357 :0.09495971616151921 +Mrs.:0.09527573031570291 Mr.:0.05625354551456112 .:0.04440443251000948 of:0.027934490978331308 and:0.026048538506636645 Dr.:0.022899468498269362 J.:0.021382314333018643 W.:0.019684893144466066 by:0.019189087273989776 C.:0.017802333722543202 B.:0.017208097157914604 John:0.016863769123290257 S.:0.014264000950316236 Rev.:0.013994148006564244 A.:0.013354773801605045 M.:0.012399540929334511 to:0.01203600218598238 H.:0.011730377763052042 :0.008632161844017036 :0.5276422934403951 +is:0.07059111849295262 not:0.06087685526020886 him:0.051208622497703346 and:0.049290040069661895 have:0.04660997854508267 was:0.04390518847903611 able:0.04371130921934299 had:0.03987078621075426 want:0.03581111132264844 enough:0.02998577605639406 are:0.029320836638063192 me:0.02839230566861577 them:0.028194264749969604 order:0.02729571574082374 refused:0.02560673077611312 ought:0.02239213928990227 willing:0.021195255182925775 going:0.021120793916177556 as:0.021014446414879567 :0.3026067254687442 +:0.07789964272227642 sale.:0.046456476340182434 .:0.017914687652571495 wit::0.01684352743207592 to-wit::0.014709795140476368 follows::0.014271377169237901 it.:0.011823796827859 them.:0.009904075229375024 day.:0.007752523031730953 of:0.007152956553041905 county.:0.006947073741336112 year.:0.006182960739230655 country.:0.006108255262232785 purchaser.:0.005966186038495416 and:0.0049701651659628384 States.:0.004929798368104385 city.:0.004826280307423389 time.:0.004704288654575633 work.:0.004652156946354138 :0.7249839766774572 +of:0.2297673302696177 on:0.2121403880578723 during:0.05696998292866729 in:0.05591224369288548 for:0.044846839730321046 and:0.04222144551245377 to:0.03844058363287657 that:0.03470104312892435 On:0.030018709543741164 by:0.024773326026053217 from:0.02337611511990447 upon:0.01675365790158438 until:0.014391660326092556 In:0.014341948570363732 During:0.01422513430252169 within:0.013661956798701125 all:0.01360807917965965 as:0.013076637606735168 at:0.012734019177245053 :0.09303889849377926 +of:0.08471158294608466 the:0.0784438437743542 and:0.06720291665013167 to:0.046122408044339536 be:0.04046161143939536 in:0.027015564105553006 or:0.02435480735182264 for:0.020708581282078056 re-:0.019876814990101653 a:0.019001442367514877 was:0.017086966244810257 he:0.01604154291250958 that:0.015254506438979668 been:0.0144517087438338 are:0.013598540775756165 :0.013261930010872289 is:0.012996389654437859 their:0.012513526857303347 by:0.011245002537989195 :0.4446503128721322 +they:0.10820419906340109 we:0.09779798816906361 he:0.09429646894785979 I:0.0910791010525095 it:0.06516122872282562 that:0.041243941484633555 you:0.039770831259027445 which:0.038423978189690566 and:0.033530096244186 It:0.02891756279271421 We:0.023247624674727557 she:0.0218458510396569 who:0.019170608997844597 They:0.014625543993133153 States:0.013473535890585964 there:0.0128663070938615 people:0.010765894213616711 He:0.009875731730809356 men:0.009819234817866417 :0.22488427162198643 +and:0.1613656843679632 so:0.06143159277582443 fact:0.05542864469212405 say:0.03810956595768138 said:0.03695005864399478 know:0.03500407555496958 is:0.030652998352621724 believe:0.02924081023931829 but:0.027424871682609812 think:0.01982848839978699 see:0.018335375645301365 show:0.017895710586937962 reason:0.015565106315652852 me:0.015379369902964051 says:0.015311104696524582 stated:0.014885665083219665 found:0.014490062855651449 all:0.013719839727914292 of:0.013171337682339824 :0.36480963683659967 +of:0.18429705891549247 and:0.09171405829997979 containing:0.07862100280547986 the:0.06896046829230999 about:0.0442173201247775 to:0.033894678533746676 or:0.031166535473153775 for:0.020206900598899197 in:0.0187986083709613 at:0.01754989460018337 than:0.017344865279500035 on:0.01670295468013872 as:0.011380981752071152 all:0.010911190607085173 a:0.010809689369112904 are:0.01014996814358485 from:0.009473457245887305 was:0.009075791479721642 be:0.008393774962066808 :0.3053308004658475 +the:0.11919516938815296 of:0.07230453158552728 and:0.05781056740443249 a:0.043018564803886335 to:0.031305092790907506 in:0.020848713353460488 at:0.014270110001066288 .:0.012526810245749479 :0.012413283442322082 for:0.011719122709941797 by:0.010808400946589808 or:0.010404172990115616 The:0.01003576004804544 with:0.009811868184449042 tho:0.009295902015355835 was:0.008924239095331684 that:0.008672304223433876 is:0.0085591147338948 be:0.008335143826716943 :0.5187411282106204 +and:0.06829155943869254 has:0.06056886441758647 of:0.049800761845366304 which:0.04944565261120418 the:0.04842121122798511 have:0.044883502305719254 had:0.037030895168991114 to:0.03669674756092904 as:0.03186533048726014 that:0.022700713064229588 it:0.017080850871969373 It:0.014842944096852818 not:0.014186995367151324 in:0.013879042404238774 a:0.0136143008006281 he:0.012206402424766718 or:0.010614495464541766 who:0.009863433658626153 is:0.00972959812189437 :0.43327669866136687 +of:0.09129790931378902 the:0.07369883040827747 and:0.047842263382354346 in:0.04189055351593407 to:0.04045875475680249 a:0.03542341257202578 be:0.02020462051672066 for:0.01979292654746225 was:0.01760256398103379 at:0.017380150555488715 is:0.014984483003968216 with:0.014047653760730413 by:0.01374644383819499 :0.012670486581795598 In:0.01200961464556976 or:0.011563835749786333 from:0.011391516893522809 are:0.011273104484969465 that:0.010755276030689069 :0.4809655994608848 +a:0.09830589516724826 the:0.0913214341497009 and:0.07878593797044897 of:0.0583790205655522 to:0.04811105714818657 for:0.042632668305943186 in:0.027426728233692736 that:0.022052046555572222 at:0.018612574651155418 will:0.017521635603419794 which:0.01558888197631657 his:0.015261767361476657 would:0.014863998674930585 I:0.013752843466913254 they:0.012500271033326137 as:0.012183591145746958 it:0.012035437197924983 their:0.011965085199885647 1:0.011634978617298144 :0.3760641469752608 +the:0.14376876083629067 of:0.09852069137934388 and:0.07659168864235309 to:0.06558391740680439 a:0.06147695087192359 in:0.023292791916456817 at:0.01987639406450983 for:0.01975688867016057 was:0.01895746781645596 be:0.01725293972566425 or:0.016242533103199012 is:0.016080773069982922 are:0.012512459510712833 their:0.012048898519223458 tho:0.011502902846729281 with:0.011448674879685625 not:0.010908275793715802 his:0.01047788781949 been:0.010062296103180931 :0.3426368070241171 +of:0.28767355066866834 to:0.08775711267569858 in:0.08678131196995101 and:0.05160598694501188 on:0.04646139928102899 by:0.04519522654900943 for:0.044547789071328545 with:0.03396756772609607 that:0.033699232901107726 from:0.03075346596941143 at:0.027039283056790858 In:0.021061449543044047 as:0.017514234937992545 all:0.012543839382496166 upon:0.011844431150487573 is:0.00998972746569266 was:0.008814315973987914 into:0.008557199930727406 through:0.007781895704231326 :0.1254109790972375 +the:0.17027190784407714 of:0.10585557835912704 and:0.07355927771906935 to:0.05486905984958157 a:0.04543746377447453 in:0.03128555052933153 be:0.028704485173100775 was:0.02350529800142253 is:0.02215549335554494 for:0.02077556258358175 his:0.01804639098945333 or:0.016335100594594944 their:0.015847999621030492 at:0.015526727957625254 been:0.011815834631173878 are:0.01139058447814694 this:0.010362020528084328 tho:0.01035635773045807 its:0.01000473355720393 :0.30289457272291764 +able:0.07698418727248066 began:0.05849605448215527 unable:0.049066318676047826 right:0.04811669874944567 is:0.04395778852559764 enough:0.036765463436252976 ready:0.035526139081864465 him:0.032744464388266496 have:0.03158727117538379 not:0.029699003398255593 and:0.02959837177240242 had:0.027041842804453764 going:0.02613532746243634 them:0.025082372328678073 necessary:0.0250082411698359 me:0.024744360894184636 allowed:0.02338289373756736 was:0.023026363358519028 want:0.02136036151466532 :0.3306764757715068 +of:0.20075488691833412 in:0.12705602661639415 to:0.10084641507766252 and:0.05307410342984901 that:0.05281885061114398 on:0.043560395522425494 by:0.041426365304450874 from:0.03756915618134906 with:0.03307398973773834 for:0.03154071920928969 In:0.03048159855012667 is:0.023116939376389773 all:0.02256673434572853 under:0.02206264592708913 as:0.01565551839179851 upon:0.014724943837450427 into:0.014048594393751774 was:0.012203809192920767 be:0.010455172672635847 :0.11196313470347136 +of:0.17441621056080653 in:0.12777475520038942 and:0.07223563543716492 to:0.06456686202515412 for:0.04922068168724545 In:0.02808613351880927 on:0.027726823675289423 by:0.0275616334839829 with:0.026921490625201033 that:0.021265423111570377 at:0.020725448706542044 as:0.019888802758059935 all:0.01951766793878531 from:0.016981402877294934 is:0.01406488498059637 are:0.007749036646201457 was:0.0077444745124150205 be:0.006483219175638237 upon:0.006441333192261557 :0.2596280798865917 +the:0.259388994241624 of:0.11437988709963129 and:0.06688979199731128 a:0.05490207899881107 in:0.040356889503383384 to:0.035315187779860036 The:0.027788361239446398 on:0.017299348626578136 at:0.01592796204716085 tho:0.015384264824208934 his:0.01528514891250709 or:0.014952778706834131 for:0.013682696410877005 an:0.011753638656955456 In:0.010388915674276926 :0.010363111636884406 by:0.0103493914644888 with:0.010308757444358505 that:0.009780561582585143 :0.24450223315221717 +of:0.13593238032662447 for:0.12920881605516082 in:0.11030448096466632 to:0.09602467379241918 and:0.08903114920715942 is:0.05573727038124131 with:0.05307827235600831 In:0.03518893278945276 at:0.02732484726292985 by:0.023264475975875276 that:0.02034645652745882 from:0.02008116650924699 on:0.01987453977236204 was:0.01804132107615389 upon:0.013991525639607304 under:0.012858499778235319 or:0.011386661355072707 Is:0.01091301092964538 are:0.009825799652674017 :0.10658571964800581 +to:0.11300351877833904 and:0.08968324963580215 the:0.07383354190441617 at:0.06600233315533158 of:0.033837850120616755 in:0.033022679756274605 from:0.022413304412549927 for:0.02160113971718088 his:0.02005152178719805 a:0.017602313309599223 will:0.015906134019662437 by:0.015787755953024722 their:0.012983601644492922 or:0.012798166279594448 little:0.012149314402010922 her:0.011794609436331269 I:0.010250505673707644 take:0.009726781236548339 took:0.00959095176177025 :0.39696072701554863 +the:0.20050726164490254 and:0.11917661863386707 a:0.07202322375289393 be:0.06190316665189083 was:0.04880903279701976 in:0.0425264287418537 of:0.037708399292901464 to:0.030007693627128688 been:0.025162526003007134 as:0.02210717975856072 his:0.021315814497899946 is:0.021257251295464727 or:0.02059092992025209 were:0.020495841691800475 this:0.019874072193784505 their:0.016375408855153685 I:0.016172621492249226 he:0.015776264806139927 for:0.01560951981202746 :0.1716007445312021 +the:0.39796652684031913 The:0.09227402393482297 and:0.061103919790450247 a:0.04038821583295238 tho:0.028579467354975734 .:0.01545368607867005 of:0.014155475517686724 tbe:0.011301745819346379 at:0.010977722584469638 Mr.:0.010811147540659694 A:0.010576990667561134 great:0.010420497482258186 or:0.01003956516645371 as:0.007415222103391491 by:0.00721368235022749 is:0.006573226419597048 are:0.006299438404298328 :0.006140331329891734 young:0.0059788531103214665 :0.24533026167164645 +and:0.15409243975083484 it:0.09485732474194716 he:0.03701037317116124 It:0.0349272834054698 of:0.031110092263707572 we:0.01907786547372107 who:0.017918583446770442 land:0.01760147795765181 they:0.016854749687573636 the:0.015823262934839898 was:0.014803652149885431 which:0.014649726531039395 I:0.014192259536093385 to:0.014027737724335262 that:0.013695148459897187 is:0.012433784558280652 :0.010288940831975225 now:0.010253300066578428 be:0.009607968766526184 :0.4457740285417114 +No.:0.08676244193263062 and:0.05066399665610407 at:0.030398747109036162 .:0.029288017866456226 to:0.017898843902803795 that:0.017805655407880584 :0.016779690092459845 as:0.01594155206205139 an:0.015165146990347609 May:0.014977541668792156 July:0.012818683908973597 March:0.012610582622425278 lots:0.009369787594763415 January:0.009285228556948976 of:0.009158757595816448 June:0.00869048601144304 by:0.008264414099393966 April:0.008098021353358274 but:0.007826533932313721 :0.6171958706360008 +:0.08018008866495054 it.:0.017439056310691144 them.:0.014810310825590436 him.:0.014091019596808628 .:0.011076751106605059 time.:0.008464050604975619 day.:0.007930610192248428 work.:0.006396350319875119 city.:0.00568532693915577 her.:0.00546649825232118 years.:0.005447061190125238 country.:0.005255014851755136 night.:0.005246574814162863 year.:0.005186113183894409 life.:0.0051595310814006945 out.:0.00510332962914779 place.:0.0049475404643922 ago.:0.004932634242348125 house.:0.004745500531777461 :0.7814366371977742 +of:0.09129790931378902 the:0.07369883040827747 and:0.047842263382354346 in:0.04189055351593407 to:0.04045875475680249 a:0.03542341257202578 be:0.02020462051672066 for:0.01979292654746225 was:0.01760256398103379 at:0.017380150555488715 is:0.014984483003968216 with:0.014047653760730413 by:0.01374644383819499 :0.012670486581795598 In:0.01200961464556976 or:0.011563835749786333 from:0.011391516893522809 are:0.011273104484969465 that:0.010755276030689069 :0.4809655994608848 +and:0.06056889263960324 is:0.052523006939222655 enough:0.04406328368369148 able:0.043337342178905995 have:0.03652355856432176 ought:0.03507176061060451 as:0.03474661929971164 them:0.034446855253334234 him:0.03165707428487763 was:0.03095768721762308 not:0.030745595343024623 had:0.030530118245448164 necessary:0.02793092533065289 it:0.026415184087227102 order:0.025436004088048265 seemed:0.02481454689508774 used:0.024543696735623424 seem:0.02418656081479578 desire:0.02375169745260596 :0.3567495903355898 +a:0.4123040741991366 the:0.2120418333954029 most:0.08219004939208313 The:0.04361464360260018 of:0.04108489255525648 and:0.03921960874418064 very:0.03874605973149498 A:0.017074898158280834 is:0.013647960931356642 tho:0.009966788623330638 his:0.008438600369271675 their:0.00815628649151734 its:0.00784870259901445 with:0.007745571074738834 to:0.007502959647800143 more:0.007141467555892012 that:0.006731811705706068 this:0.006506073834461508 our:0.006282984033849558 :0.022754733354625356 +about:0.1532675504007533 and:0.13492950736947446 the:0.1316481385552853 or:0.08474879450495428 of:0.04967696525277847 was:0.03789035983553129 were:0.026535275642636066 than:0.02613930970074146 are:0.02393791525279274 be:0.02330000694153162 to:0.02306181737289262 with:0.02022031533374925 for:0.019963050440837397 only:0.019600841211195215 is:0.01755537678936799 nearly:0.01466826473596181 these:0.013561425864800948 by:0.011235396820534765 between:0.01108384531879391 :0.15597584265538708 +the:0.4213908208828511 of:0.1735691157886516 a:0.07660901912734513 The:0.04413256677767105 tho:0.036194335148516464 with:0.026213945636923003 and:0.024074151075295036 hot:0.022236112936176607 low:0.015084846700530723 cold:0.014584020986854419 this:0.013053756916361342 tbe:0.01204015787823811 that:0.011969582395805202 salt:0.011326884031391761 an:0.01089547505591759 no:0.01051234416734364 boiling:0.010078764064000515 high:0.009036777815641649 for:0.008282895311841607 :0.04771442730264343 +the:0.1158977923668084 of:0.11233245941202548 to:0.08503397375801325 and:0.07451672553554363 in:0.04658949198396254 for:0.02544207180421919 by:0.024834639095002903 at:0.02278129086941067 that:0.02219072696105553 a:0.021156404012297122 or:0.020163833274855894 with:0.017693050906965487 on:0.016371612633467456 from:0.015013692684328443 be:0.013785329138509614 which:0.012080941305187484 in-:0.01188863157365001 :0.011396263223830184 In:0.01096940848130726 :0.3188616609795595 +of:0.08746639851891724 that:0.04352789649289575 and:0.04109713348912623 in:0.03165278628632379 for:0.018239130409948158 to:0.012215607511088081 one:0.011713729029594696 from:0.011180580811369394 by:0.01095842300640384 on:0.010375393965173074 after:0.009585921670375128 but:0.008426501071220767 with:0.008122330166015235 work:0.007781175004425757 land:0.007769967264917898 ,:0.007716249571725768 tion:0.007713269199726441 law:0.0076579714410952345 upon:0.0072448719423481535 :0.6485546631473094 +and:0.1101551391365163 the:0.057658052521356855 be:0.05305270659836034 was:0.044456615215943636 of:0.044321720311763825 a:0.03887197938847038 is:0.03328764288726518 to:0.03229778852626922 are:0.024093420588799912 were:0.01819415213643562 been:0.0160029319902867 he:0.015924170665543243 that:0.01390030691715788 or:0.013708086630790652 as:0.013684703967028108 they:0.012483346985588908 on:0.012168520678995015 it:0.011683852025962893 you:0.011292988043571907 :0.42176187478389343 +to:0.12834281327565913 the:0.12360144656537854 and:0.11419349221129921 of:0.11292682384779516 be:0.05765606236498934 in:0.05166893872301016 is:0.03322721912216468 or:0.0314100610998467 are:0.03003997951898715 a:0.029218887564476992 for:0.0248390019713426 been:0.023244051280415852 he:0.022123509224860144 was:0.021039548821559246 with:0.020871652012767895 his:0.02071522355307121 not:0.016933007423225413 their:0.01670257662008863 it:0.013214898763915604 :0.10703080603514635 +the:0.3390923730818516 at:0.1320901844793482 of:0.07544910119160053 here:0.03220248111757817 The:0.029331437381510315 At:0.028523973730036446 and:0.024866940150212076 tho:0.023441417550609897 day:0.02341690040494372 to:0.020144689049475407 Saturday:0.017660391639416392 on:0.015766956303631827 said:0.01481899630238893 until:0.012848322299371615 for:0.01096085811763351 since:0.010834211133402627 place:0.010306170220570983 Monday:0.009973572395061163 tbe:0.009808695253286393 :0.15746232819807024 +one:0.09679428832011641 some:0.0686433811832916 all:0.05229451680183637 many:0.05035900167252876 out:0.03974976134204934 most:0.03436117546362689 none:0.03404458060709228 any:0.027172276290055294 part:0.02710125721154077 those:0.022104776406432634 that:0.019599661692056496 care:0.0189427195981171 and:0.01783309778141219 much:0.017398394430492344 Many:0.015566384842616743 each:0.015305648940354879 rest:0.014630791256892206 portion:0.014422066450216485 Some:0.013210636776111772 :0.3994655829331594 +hundred:0.03792211294857493 due:0.013398902565783596 time:0.012146026596927961 him:0.011748140414834423 up:0.011553413640273427 more:0.009579660047454015 one:0.009477358125122145 life:0.008827662902960361 it:0.00843055856183737 them:0.00835591018589112 work:0.008334485493396037 dollars:0.008309723071174887 out:0.007863745794735399 right:0.007167536659581202 men:0.007151020690935018 interest:0.007036911844996836 man:0.0066317804157510485 :0.00656275229518445 made:0.006390753468894625 :0.8021115442756912 +a:0.1892862821095596 the:0.14126010420523338 of:0.06471613116321644 and:0.057054083234971936 that:0.04611633971269651 in:0.041904032671322464 this:0.03430757942880507 The:0.029665939227140573 their:0.020863193718741978 cor-:0.020112758629610802 his:0.020099656043446452 by:0.019603087648994835 an:0.0195808380515034 In:0.016430824273469497 which:0.016319922381778287 After:0.015743982237466064 only:0.015732229969821775 to:0.01512594104206128 its:0.014556796092965535 :0.20052027815719412 +and:0.027486481988353337 one:0.021825010299217372 corner:0.02039813574627185 city:0.019587147571578686 day:0.016750176934265015 line:0.015859487510210005 part:0.014916380724763584 that:0.0125211853730799 daughter:0.011313448734256977 residence:0.011077995455813916 home:0.010372540687282472 death:0.00983245340165334 Court:0.008019123380061985 guest:0.007955254255796003 son:0.007452892349007953 house:0.0068721435028741215 people:0.006731914527134708 office:0.006702816981949457 men:0.006664020422827186 :0.7566613901536022 +is:0.11026310181549064 in:0.10896405809240482 was:0.09726247775447405 of:0.08524463370494362 with:0.06588218343962726 to:0.06557280927660965 and:0.04272991442661676 be:0.042542651120865645 for:0.03685290005298665 at:0.033189000752212844 have:0.03317781752682651 had:0.03176396219704144 by:0.02902648758029402 In:0.02555789977106739 from:0.01640377099156104 has:0.01567214485219643 make:0.015569212964258233 made:0.015418160758761582 Is:0.014733843727024853 :0.11317296919473657 +of:0.0881634389259501 the:0.07184509534118803 and:0.06644911854657763 a:0.0660757418390808 to:0.05725360546565806 for:0.04723319231914389 in:0.037369357797918425 with:0.021868069875687443 that:0.020575736620167 by:0.018587327124259655 any:0.014776475326717857 more:0.014763717120454599 which:0.013945515138264775 or:0.013851079898157094 an:0.012891375252816249 was:0.012681956415037107 in-:0.012527190200497192 at:0.011673299600220139 be:0.011606282598330474 :0.3848624245938735 +the:0.30473281918943057 of:0.09651203720391091 and:0.0725520081396897 a:0.05847195097187159 to:0.042555357036025816 The:0.03268069172419517 tho:0.026806075126688998 with:0.023803159599985378 in:0.0217754258434081 his:0.01756446793823079 by:0.015840625894748134 tbe:0.014014210023954234 for:0.011268535893859557 :0.011015287764341786 to-:0.010382006608027669 on:0.0103250674531689 from:0.00886087573978076 A:0.0077485802480171785 her:0.007706187994704826 :0.2043846296059599 +the:0.4993671432377317 a:0.06388315212522262 white:0.05418865276402584 and:0.027094972756195122 tho:0.022715537163138545 this:0.018359726701076336 of:0.015338100590461683 The:0.011901670033819315 his:0.011509022459728555 that:0.010323624012290063 tbe:0.009528923191947706 old:0.009418302745333063 large:0.008646621660070405 any:0.008315942504586024 our:0.0070022047622871125 great:0.006976462678528556 new:0.006622663275232793 public:0.0064649599589864095 whole:0.0062643871895028975 :0.19507793018983532 +of:0.17102298229670587 the:0.16041820448141997 and:0.08460653885158602 in:0.0711082735495152 a:0.07088944136131822 for:0.044494002526458666 by:0.04177622712209995 to:0.03615575149666598 with:0.025128490588412183 or:0.018865365682898445 great:0.01828894663063651 In:0.018192596523562605 The:0.018157463188290632 their:0.016877885792491523 no:0.016861137216913093 an:0.016310850138700324 this:0.015887000166562575 any:0.01464865147901167 that:0.013687124789295776 :0.12562306611745477 +the:0.19755092767356544 in:0.14768769327440662 of:0.14577581921001143 this:0.07099762901590324 his:0.047568262298966824 that:0.04672453908972266 to:0.04605201549920425 their:0.03171480677812521 same:0.02829048633612974 and:0.028211803589994387 In:0.026527331895739796 for:0.02073801722028829 my:0.017087462918167214 other:0.01597992369151731 its:0.015782482360499155 as:0.01573623774727196 her:0.014777272541644359 tho:0.013814430426211511 a:0.012421434708431937 :0.05556142372419869 +of:0.1809336675012776 is:0.08804534399775599 with:0.07371774767827108 to:0.060925801619952494 as:0.060715073506974374 in:0.06010871793391084 and:0.058441092160509786 by:0.053066147618121354 for:0.042024557016644704 be:0.03926170312000155 was:0.03833062669885029 such:0.0372685197203132 that:0.027535214334684442 make:0.018619918499949317 have:0.018335506180417564 at:0.017763504647695275 made:0.01746923711723905 from:0.01592240966285962 or:0.01385353760693808 :0.07666167337763342 +a:0.3508682097970282 is:0.09429852939718307 was:0.09088038126877773 the:0.07946384021052279 are:0.0687915086075348 be:0.05917970234467371 were:0.03350470367968076 not:0.027285676014462024 been:0.026923860010510562 and:0.022559247996152144 Is:0.013996757217000198 A:0.011785872792548604 of:0.009903525710504086 in:0.009537316506525862 being:0.009152649694135663 very:0.009075674113073902 it:0.007446833177472343 that:0.006819329320794662 had:0.006668140186145066 :0.060858241955273826 +to:0.2457630739558991 I:0.22600730887616205 not:0.1028502223666147 you:0.06546984575802466 we:0.058662884594960024 and:0.04651036348419332 We:0.03486946019605144 would:0.021630104828867108 they:0.018005565018992815 will:0.017821335501585 1:0.017374149730067838 may:0.015431366702463308 who:0.013897010917295676 don't:0.011794901557680773 "I:0.010242002924483897 people:0.008985361828814506 only:0.008550734211245492 but:0.008403897572045365 They:0.007370498126731406 :0.059359911847821537 +it:0.12646345559141328 which:0.06874049228939834 and:0.0656467730514304 It:0.055899354080079296 there:0.04819894680944666 they:0.03712179471058455 who:0.02815526182575708 we:0.02681863422926571 that:0.025159511562839045 thereof:0.024851973400234234 as:0.02428947294515817 same:0.020568888037149836 he:0.02001322537743491 election:0.019553934975150428 person:0.019134845881448644 act:0.018245867186635015 I:0.01822575051588607 bonds:0.0165852660779681 or:0.016416112573120735 :0.31891043887959947 +at:0.06722726313833005 and:0.05106086544919432 No.:0.043302330840425084 the:0.02212669451573443 an:0.021472487485791697 of:0.02142262191613833 that:0.017776433665852603 No:0.0172675406409789 :0.017267326995796233 .:0.01716147854809407 to:0.013569084782770469 as:0.011817049241387215 1:0.011700168666064523 lots:0.009892404072789861 I:0.009666501732785772 which:0.00942187897865648 by:0.009229744337798973 when:0.007582513518798888 but:0.006980783331854542 :0.6130548281407576 +to:0.31019601080253456 will:0.13793678134185958 would:0.07774183426288846 may:0.07078528459128908 should:0.05127128910568003 shall:0.04901700088221223 not:0.04594340671139167 must:0.03257846389794495 can:0.03230794200897745 could:0.02086203652199685 cannot:0.017984019065961077 and:0.017474170306863105 might:0.013535476571922157 it:0.006941357203389574 never:0.005186754057084183 that:0.004968373522249409 also:0.0034185027334872305 only:0.0032209125075107173 soon:0.003102154139878731 :0.09452822976487903 +of:0.1482982138729951 at:0.12819134809140306 to:0.12045005400201317 about:0.09592499744030307 and:0.07673102913886648 for:0.05914912040360935 than:0.029219886716151798 or:0.020804012403936045 from:0.020366151504103647 over:0.01658193303357922 by:0.012662781817315876 degrees:0.010671895754458902 $1:0.009328943757846734 with:0.008070007865010047 $3:0.007843453612346455 in:0.0075087054761928465 $2:0.007415181733884812 6:0.007124145381644783 flour.:0.0068577602449345675 :0.205800377749404 +and:0.06988845589567727 was:0.05113173020599859 held:0.04048482170080446 is:0.02870332244441044 closing:0.024790258987290648 be:0.023468145471397084 sold:0.023229754320101225 sell:0.022992490098157476 required:0.01911221598392697 sale:0.019059991841096594 are:0.018737387237895926 that:0.018164993152166246 arrived:0.016459697849013414 out:0.016321864926485005 him:0.015951740035184746 look:0.015649695440774457 time:0.015402753390425197 been:0.01498229002739366 not:0.014181561129395715 :0.5302868298624048 +of:0.23580074912797275 at:0.20222437452789147 in:0.07780113362746525 and:0.07699325232726752 to:0.06741093057021691 for:0.04350366229581133 after:0.02711496211001812 with:0.026214266648489776 by:0.02445074809947642 that:0.01854317609080518 In:0.01669666218992035 from:0.01581839399268389 Above:0.015085218282207498 than:0.012520130082972541 it:0.010125836220733637 but:0.008721604202348701 After:0.0075458695004749915 the:0.0071710215733256635 as:0.006849038353826234 :0.09840897017609176 +part:0.044598090857230634 one:0.02418292219059228 side:0.020809729586764907 to:0.01830139665970036 an:0.014957513288247331 day:0.013693041129040111 time:0.01227988267459664 cost:0.012224888451537732 and:0.012107159927049685 line:0.010873565018721512 sale:0.010725310988046015 amount:0.010573052153351756 out:0.010470726656045289 tion:0.009930465456461984 that:0.009550353191173077 all:0.00894717461340549 value:0.008795765051436479 payment:0.008356207085690454 half:0.00832909646953297 :0.7292936585513753 +the:0.45552661202710454 a:0.12139239763979037 The:0.05599432529507254 tho:0.03804525911407989 of:0.026616657546068533 to:0.024739587945685673 and:0.0205263597544 this:0.019463883209882127 tbe:0.013852120804120172 A:0.013495037710046535 one:0.012444213308560301 in:0.011859245621130528 that:0.011616911153313906 his:0.010271318441093183 he:0.008091495705188065 her:0.007733515799666143 other:0.007102188565431611 whole:0.005664205056649405 our:0.0056226270362405685 :0.12894203826647593 +to:0.31019601080253456 will:0.13793678134185958 would:0.07774183426288846 may:0.07078528459128908 should:0.05127128910568003 shall:0.04901700088221223 not:0.04594340671139167 must:0.03257846389794495 can:0.03230794200897745 could:0.02086203652199685 cannot:0.017984019065961077 and:0.017474170306863105 might:0.013535476571922157 it:0.006941357203389574 never:0.005186754057084183 that:0.004968373522249409 also:0.0034185027334872305 only:0.0032209125075107173 soon:0.003102154139878731 :0.09452822976487903 +the:0.43685359982459104 an:0.10322590673533448 The:0.0775689113368261 of:0.04909177084925837 and:0.037869251889733266 his:0.03301862992183689 their:0.02909955742179992 tho:0.02742557532321248 years:0.020089247484672914 our:0.019818282571578003 these:0.018657609157871916 good:0.014586070250523312 two:0.014318349423321202 my:0.014184397527905382 her:0.012612534468020783 dear:0.011803536854045008 as:0.01060484219071025 some:0.0096936249080354 An:0.009444139221340929 :0.049034162639382345 +and:0.0645733993466475 to:0.05794485596256487 the:0.05657737421114569 of:0.04897908445783381 be:0.03563865085798185 is:0.02876271747775706 was:0.026533338915363143 for:0.02444200136575475 in:0.020070269965151634 or:0.019645987185800066 I:0.01828314910848504 a:0.016159130149933608 that:0.015597813547385316 are:0.015324843964829277 he:0.014651706599362073 not:0.013649869503805787 -:0.013311179664652464 were:0.01219399209890404 it:0.011886746264341797 :0.48477388935230026 +a:0.3399798288869981 the:0.18372865417590142 every:0.04499477091033116 any:0.039558597715498654 and:0.03814839848390209 other:0.037165646467681376 some:0.037156485244067644 American:0.032311081985312705 of:0.02004473209865399 one:0.019123349584161682 young:0.017563833733349785 their:0.014736886819967102 good:0.014392062075455162 A:0.014002842204904341 our:0.01268949334039185 his:0.011911048880253324 each:0.011691497262007555 tho:0.011509985013617406 all:0.010501083240982763 :0.08778972187656191 +the:0.39749834532651884 a:0.07520030034269234 and:0.05540858759821703 The:0.03273515726769502 tho:0.030061875542463562 of:0.020144331424922633 tbe:0.014929647509541684 in:0.014268129706664795 or:0.013333166761078447 .:0.013287381914101323 an:0.009000188755386574 to:0.00880680429595084 :0.007943763822197133 Mr.:0.00773879605474787 by:0.007328417831573476 as:0.005922572098978465 for:0.0047526933692942485 that:0.004736121968310169 on:0.004594595720579333 :0.2713091226890862 +one:0.1028303141280697 part:0.05963429477052991 out:0.04766456937681193 some:0.031418679026461914 members:0.030764490253327767 side:0.029940657362655835 portion:0.022063658796890564 office:0.020457735219956013 member:0.019726706386316174 end:0.019666887540649894 tion:0.018667441728710307 parts:0.016814747270460957 people:0.014112771422418794 all:0.014072739582212475 any:0.013183573287639892 One:0.013083578354183906 that:0.013024335602903442 account:0.012482348155001894 many:0.012077825070275192 :0.48731264666452345 +and:0.19998254019029432 his:0.13205720823357547 of:0.06645394676855733 Miss:0.042969112741668085 the:0.029651996364735925 to:0.0261270985204093 her:0.01728311067161714 my:0.011910521396987797 a:0.011661203522502129 by:0.009976686738111917 said:0.008988532557029175 Mr.:0.00788723115236448 :0.006478226910428629 their:0.005947164675279815 .:0.005353832156990408 Mrs.:0.005183396691346696 bis:0.005009400186726534 your:0.004912657526741101 or:0.003913132851307536 :0.3972530001433262 +at:0.26733429083375987 of:0.058052282641265635 Section:0.04976930143108117 to:0.04523077600885336 No.:0.04499492348061139 and:0.03347544358713139 Sec.:0.029397000767443254 about:0.026827593581438294 June:0.025825348008603772 the:0.024287950296952722 May:0.023746304870316242 lot:0.022010843886089034 lots:0.021979866670297676 from:0.020861573071254715 for:0.01804226256079881 July:0.01746441649760686 by:0.01732002010319635 April:0.016553582501865 in:0.016315841453386132 :0.21951037774804832 +and:0.21780052486606158 that:0.049802677770766746 but:0.04516137445561119 time:0.041190718172561744 or:0.01696618644776752 But:0.014724363867684886 come:0.014582987990623368 ago,:0.012465749117285716 which,:0.011594809356740843 them:0.009950847741612732 it:0.009877232563729778 And:0.00936608044182593 days:0.009285179658704849 even:0.009168147929551831 which:0.008833000804843009 him:0.008773134153919908 came:0.008703188201650903 and,:0.00841992369860011 only:0.00810628560586219 :0.48422758715459513 +men:0.019917807041111266 do:0.011440913013363882 them:0.009225447367549025 up:0.00911479506823359 him:0.008986821695803353 it:0.008277244208675484 in:0.007618878398370717 out:0.007060894075916928 can:0.007060618213699742 made:0.006812563069803019 man:0.00652026561272263 time:0.006142719449711096 work:0.005881463772885001 it,:0.0056486130056477585 life:0.005409561810364727 will:0.005225203737804084 all:0.005001841093775799 :0.0048798614549734895 to:0.004796394123242466 :0.8539780937863459 +the:0.17027190784407714 of:0.10585557835912704 and:0.07355927771906935 to:0.05486905984958157 a:0.04543746377447453 in:0.03128555052933153 be:0.028704485173100775 was:0.02350529800142253 is:0.02215549335554494 for:0.02077556258358175 his:0.01804639098945333 or:0.016335100594594944 their:0.015847999621030492 at:0.015526727957625254 been:0.011815834631173878 are:0.01139058447814694 this:0.010362020528084328 tho:0.01035635773045807 its:0.01000473355720393 :0.30289457272291764 +sum:0.03352282876311118 number:0.028116684882597106 line:0.019995206059833036 city:0.01946514558931857 out:0.019275318828420953 day:0.01666865340772654 county:0.014872697538657208 amount:0.013254184849875051 Board:0.01252325449624941 town:0.012449555905674143 side:0.011663975251122375 part:0.011517157473718155 County:0.011460540331966697 state:0.011087331502382173 City:0.010878919191854432 purpose:0.01081028255427907 and:0.010297866493795984 way:0.009848747943663767 name:0.009522170936943183 :0.711769477998811 +as:0.07348237429869825 and:0.053293291927724 according:0.0479709431097652 up:0.04410375066718131 them:0.0360918361710351 regard:0.032406892412297036 come:0.031291428310290255 back:0.02891251395441225 return:0.02673975554051193 came:0.025351047659788954 returned:0.022021941716222352 it:0.01975522069512534 down:0.01933170912324385 him:0.019027828623193535 go:0.018504100610066444 went:0.017627960690307223 given:0.016230557067889343 owing:0.015689732254652238 attention:0.015375915241202635 :0.43579119992639276 +up:0.01579508504279229 in:0.015027248813119417 him:0.01434493836784623 out:0.01062871936730401 time:0.009134908967064937 work:0.008424627706561995 men:0.007927821394469728 made:0.0078286847648795 them:0.007617094137491823 life:0.007583256921387029 ;:0.0072293038004976355 man:0.006657089074517828 notice:0.0064310835482437895 him,:0.006394508783023688 one:0.006163301233359122 it,:0.0061029658182599235 good:0.005947399999300292 read:0.005897682068788194 :0.00543109394647171 :0.8384331862446209 +the:0.12726855910616955 and:0.0892959780159441 of:0.062229337879632314 to:0.058292991969480845 in:0.037889522208997196 was:0.035486090111862774 a:0.03277831520841599 be:0.02993909980507852 is:0.021492638467572805 been:0.016319288425974923 are:0.01622912479566914 were:0.01571120940653339 at:0.013800451447349702 by:0.013390998935139781 his:0.013046404338315144 an:0.011587498063993411 he:0.010436524486303292 not:0.009967845652912184 or:0.009888058570455908 :0.37395006310419904 +and:0.2406750098035379 the:0.21966651877620677 all:0.1072936955473869 or:0.07311581641920033 any:0.06244516355097602 of:0.034303030563037816 no:0.03406417608387808 with:0.027508933469596666 The:0.02692454412999659 many:0.02121662739660757 some:0.01887319577516384 to:0.01780371872119797 each:0.016917662637507432 by:0.013326462003048767 an-:0.012446512914624425 tho:0.011335019428004545 every:0.010037334440249814 two:0.010017782390016062 for:0.00835828909087842 :0.03267050685888405 +:0.11846063066472079 .:0.017301617317143705 it.:0.014997683348620136 them.:0.009775169459042212 of:0.009248948717552325 day.:0.008006309483063297 him.:0.006978430211458404 time.:0.006195074014964546 year.:0.005663617474239351 to-wit::0.005485890946475719 country.:0.005386902463599158 city.:0.005156148102871944 feet.:0.004670495429770647 years.:0.004606451166860108 ::0.004313282089373136 way.:0.004177348459077066 work.:0.004119002008326799 night.:0.003981602645932822 in:0.0038078412516430065 :0.7566675547452648 +the:0.2586409248155791 of:0.15806169852678392 in:0.09416435274388128 at:0.07885575955814855 The:0.039198911926489104 and:0.03810878275888334 to:0.034795465652870484 for:0.027650802447553403 that:0.018702925984007936 In:0.016291161811120478 tho:0.014765846365496924 from:0.013331341032370813 by:0.011901896716112881 said:0.008668855793048318 his:0.00789217458111161 this:0.007073195203619765 which:0.005927428155571023 :0.005652534259706584 tbe:0.0051950338998631405 :0.15412090776778137 +that:0.09624802202812972 and:0.09500681735936567 had:0.056303166422429336 but:0.05287588054839266 is:0.049440103555322634 as:0.04697636761477422 have:0.04692393727291159 Is:0.037108548083937216 make:0.03683505059700771 Would:0.03375141218810264 for:0.03338402888814851 of:0.03319599012080882 which:0.02717746684618881 was:0.024390403840816338 if:0.02345625269595207 when:0.021660297124789177 would:0.021237754667807245 Had:0.019169423161578842 Be:0.019007709954133464 :0.2248513670294033 +to:0.04284997219610188 in:0.042414597221651154 the:0.042181623678302166 of:0.041681443360023496 and:0.03569470882387247 a:0.029312147642533197 :0.028130938305783913 -:0.018159218602272136 by:0.013549024714187567 t:0.012911245365613135 from:0.012174411745512901 that:0.011863369639314569 .:0.010932720364212844 at:0.010648465644005515 In:0.010014352319801129 for:0.009850377926590468 on:0.008307392708871344 i:0.007922639674357182 was:0.007809768895679201 :0.6025915811713137 +be:0.2062981185225753 is:0.11876868765664311 are:0.09302974936582582 and:0.07729429715966356 was:0.07224780767485385 been:0.0462683677961309 with:0.03931873017212066 of:0.03506160386183521 not:0.029137112551137757 were:0.02847010092530147 as:0.02727989138325834 it:0.020517624216924202 or:0.019135606235343057 amply:0.018016404403090575 sum:0.017591709153281922 more:0.01679743321899314 Is:0.015973638564372918 bo:0.014727855260612826 so:0.014189918148552721 :0.08887534372948265 +was:0.23791211819176328 were:0.12061221652697929 be:0.10265165339589281 been:0.07244182849810778 is:0.05135090524874682 are:0.04890113350114444 and:0.03407231748795686 being:0.02182593320084556 to:0.021585691794698176 or:0.017857048299170394 of:0.017376797863776047 a:0.015516399291651342 so:0.014335482576754925 if:0.013283151982796856 Is:0.01325452060704231 as:0.013088254934789174 when:0.011792719221481049 had:0.011577463778462811 very:0.011232349587887503 :0.1483320140100526 +there:0.12549427689156126 they:0.11782333397126406 There:0.09458498985770013 and:0.06143527850409908 who:0.05629576795282929 They:0.03345666773159386 which:0.03240513091489444 we:0.02953523710713787 that:0.018663004304878664 men:0.01757192361269591 it:0.014420579854665692 you:0.011641309275379225 We:0.010706997477264509 them:0.009870645803799823 I:0.009433630380369823 people:0.008803766524947727 but:0.008513951737224232 as:0.007020427419981949 all:0.006511194735348928 :0.32481188594236354 +be:0.12957031292553878 and:0.06036504673538918 is:0.056766948110299684 been:0.05625833325701823 was:0.05241999535806135 he:0.044970200379386586 as:0.04478929832223845 the:0.04022634571368348 all:0.031208766240698377 so:0.028398568044332696 were:0.027236950250179415 more:0.026433538078137423 are:0.026404924339293243 that:0.022305641723090006 this:0.022209577627369505 most:0.022166421528355136 being:0.02007395074368086 or:0.0164826103804717 ever:0.01611460608510909 :0.25459796415766683 +New:0.8598556548586347 of:0.021596636774245698 Now:0.013178563423928253 Xew:0.010906393588572774 and:0.009891811087649362 New-:0.0057075232395283745 Mew:0.0054912956884930145 to:0.004085017116212382 be:0.0031552690637640765 in:0.002285702945075179 for:0.002266681015778162 the:0.0018557282538389603 are:0.0014895986814779955 Sew:0.0014474239579084283 is:0.0011936290731478876 or:0.001012953115102828 that:0.0009906854359836921 at:0.0009153023097688935 inter-:0.0009113923243278281 :0.05076273804656157 +of:0.11981843293820015 the:0.09668537048200626 and:0.07775247522025937 a:0.07468430765249257 to:0.05581510201819741 in:0.03790703484500233 for:0.030423750652532847 be:0.01892492078794172 as:0.017580456353284608 with:0.016675525070456543 or:0.016611958959560153 at:0.015974099051751327 was:0.01576209258206658 from:0.015735496711544273 is:0.015295269417090092 that:0.014313447547357054 by:0.014073266032677823 their:0.013864094318978355 are:0.011882614176440336 :0.3192202851821602 +a:0.09204101918143635 the:0.08913956222323517 this:0.06521206325496223 of:0.05800887131147814 his:0.04501962265970482 and:0.04373150030689781 in:0.04314529000379157 her:0.022915214711351415 to:0.022838248904499266 any:0.021132556043660877 that:0.020586435959172884 other:0.01921794071897332 or:0.018484746609185292 same:0.013449140374676401 their:0.013064299757767378 on:0.012989704829920987 for:0.012029460520751585 as:0.010085095609441583 my:0.009651290683385418 :0.3662579363357075 +the:0.11919516938815296 of:0.07230453158552728 and:0.05781056740443249 a:0.043018564803886335 to:0.031305092790907506 in:0.020848713353460488 at:0.014270110001066288 .:0.012526810245749479 :0.012413283442322082 for:0.011719122709941797 by:0.010808400946589808 or:0.010404172990115616 The:0.01003576004804544 with:0.009811868184449042 tho:0.009295902015355835 was:0.008924239095331684 that:0.008672304223433876 is:0.0085591147338948 be:0.008335143826716943 :0.5187411282106204 +the:0.20327828569106815 of:0.16962374377167422 a:0.07448703945886026 for:0.06505131539621402 and:0.057577019216288536 in:0.05115919079953809 no:0.04216272447951843 his:0.04098841165898029 their:0.037904551791464666 any:0.030831626330035118 The:0.021776149351816213 its:0.021200386210014743 our:0.020160311981876722 some:0.01883520088808939 good:0.01781445736399607 all:0.01732958753935189 to:0.016200149980273575 that:0.014737715760966873 with:0.013281231006477517 :0.06460090132349525 +and:0.06317916895143688 was:0.03089079697380977 is:0.020044819943736053 be:0.019406329289829806 are:0.016631216139614186 that:0.015910745835586493 it:0.014132589635136123 been:0.013429954470292457 made:0.013153338042273357 were:0.012494049396038097 or:0.012369181282419555 them:0.011608721240324167 up:0.01101461536327863 him:0.010833186604515583 as:0.010718511743974049 succeeded:0.010682665877813333 engaged:0.010592681714621757 not:0.009777868089593193 now:0.00948198968071834 :0.6826475697249881 +be:0.12081116284424236 has:0.11207679172301493 have:0.10240069675616824 had:0.07714356202573824 he:0.06141041546714124 been:0.050019186544703366 was:0.045824640296306125 and:0.041310731625555874 are:0.03645320973323779 is:0.03213341550247697 were:0.031153238361620934 who:0.028964351314040418 they:0.028702655794475385 it:0.020666390258142302 which:0.01624959283052221 being:0.014795966244955376 more:0.014663639368981697 so:0.014347490391754321 bo:0.013924141816569018 :0.1359487211003532 +the:0.27005309169841435 a:0.24862315247306221 his:0.05330234635114914 and:0.048379752260578356 The:0.04648366785624833 of:0.035453269059725005 will:0.03415650401634631 in:0.029197827826813634 to:0.026092269453579703 this:0.017852789159820515 its:0.017467133437615058 their:0.01673132433101267 any:0.015874825716457028 her:0.015353092367974589 tho:0.01489285700920879 no:0.013451914447583894 In:0.01119580674910141 most:0.011120818485704058 that:0.010340100940460313 :0.06297745635914465 +and:0.051654636516201016 made:0.051015454799921624 or:0.024674408513783483 that:0.016062835335927065 him:0.01565924413931051 followed:0.01563124550437536 owned:0.015583321950137187 ed:0.014866750499448756 accompanied:0.014614648987466283 it:0.013626457525371337 taken:0.013108391888807197 them:0.012651103019890095 caused:0.011867361447385745 up:0.011657883035474385 done:0.011150870541727875 only:0.010691704012969913 given:0.010651579286736641 occupied:0.010536480438065907 secured:0.01016848645023085 :0.6631271361067688 +be:0.20889532259733018 was:0.12140259118784284 is:0.06783320848096111 been:0.0629923840672027 being:0.04056320793752166 were:0.03958014947679382 and:0.039417804431783623 are:0.038969218041465956 have:0.0367773767181249 had:0.032368582898877195 he:0.02567085405468813 not:0.02399781322086666 has:0.017674112596912813 well:0.01724637695023175 who:0.012309243476037585 I:0.012064473934549078 Is:0.008387426375219382 bo:0.007439386675365861 they:0.00729628525363748 :0.17811418162458728 +the:0.09728057071804312 of:0.09180464700648173 in:0.06460106972359687 and:0.05649579282750649 to:0.046347334376164465 on:0.033039223063428005 at:0.026451670936514977 a:0.02127421519055784 :0.020189654291712676 In:0.017330922193653803 that:0.016767149718093937 by:0.013374184270114406 or:0.011356234029573808 for:0.010747284928394564 said:0.010476400747758333 from:0.010459599031045028 as:0.008613855674767771 was:0.008281770689724757 this:0.0080363315422214 :0.426072089040646 +those:0.13038086770594562 men:0.10496790712659691 man:0.08983367620491142 one:0.04351066310532934 and:0.04269619895627972 people:0.026211272367280727 all:0.024889050834528907 woman:0.022767385952872147 Those:0.018242930464886942 women:0.014580370638870958 persons:0.013436007203002254 person:0.012351624709233856 others:0.011923692383744399 man,:0.008777462486136523 friends:0.00827529349095963 girl:0.007203923201967733 he:0.006472187654788315 I:0.006020092845106669 men,:0.005791410791621903 :0.400667981875936 +is:0.10275131411243035 as:0.09345702289759128 of:0.08799579623586577 was:0.07057525041930794 in:0.06619156974029754 for:0.06398181133178533 with:0.05779745235597142 such:0.0479154341368742 by:0.04434441237996978 and:0.03872560789349783 be:0.035026434896052096 have:0.03341150021032538 to:0.029700008042491885 had:0.02632837758550772 at:0.021698425038522637 has:0.021623727245951595 been:0.019988573983247333 that:0.019418918415194216 not:0.017817571664857187 :0.10025079141425851 +will:0.21877117031559232 to:0.16161531055549413 would:0.1387811014635167 can:0.08436047711996551 may:0.07529424396343495 should:0.0523859518083404 shall:0.0456761375372733 could:0.04397191982669669 not:0.03411388684106234 must:0.03280780298548133 there:0.022786118867692228 cannot:0.011809835064112751 might:0.011486800751965107 and:0.008440966063870245 it:0.006700359220734191 that:0.003379731969705738 need:0.002708386830157029 And:0.0023841337419759846 soon:0.002346971200925669 :0.039178693872003366 +dollars:0.023000633208516096 day:0.022972005714356508 hundred:0.019274753313108114 feet:0.011799726692467498 up:0.010396764748275713 ;:0.008689353801871857 costs:0.007583991582431742 street:0.007406422683368156 time:0.007347811648584038 due:0.006949229270178308 in:0.006305381998970848 and:0.0056378798642761595 men:0.005610567679951457 gold:0.005251609269240905 house:0.005142937058825103 cents:0.004873016838520003 principal:0.004819285568700743 1:0.004812134909223058 city:0.004666692711795805 :0.8264598014373379 +be:0.2880443981702457 was:0.15658288512373822 is:0.10944630117654197 been:0.0991503070192456 are:0.046239048983398465 were:0.045754595310352336 and:0.035588908025180305 he:0.0239540588835233 so:0.02232266192958231 not:0.021477224959989105 being:0.017018578912678824 bo:0.015362199518156443 has:0.011029549347847788 Is:0.011029364346377189 one:0.009766311904082104 have:0.008824745273545202 they:0.008801257987197733 very:0.008583370365502404 it:0.008524795344722188 :0.05149943741809288 +is:0.1286240852028706 of:0.09665045115211275 was:0.07536701554794419 as:0.07296260731372306 with:0.05569519287373566 be:0.05210417484860876 for:0.049359349770000276 have:0.04644612210170594 in:0.038924039540228834 and:0.03862204201161243 to:0.033086994875147484 had:0.031444101626153076 by:0.029053654218883455 such:0.02758894438843717 make:0.022737220606275532 has:0.019913334897140873 been:0.018004040103258276 Is:0.016972830907981868 made:0.016924491430078993 :0.12851930658410074 +the:0.2023921384182488 of:0.10637467432269268 in:0.09488634504418547 a:0.05846313996208076 his:0.03543637652148154 and:0.02935071553305048 In:0.029258429670834838 to:0.02821609819978607 an:0.028082416397113702 with:0.026624301671479812 from:0.02560120244983884 at:0.024699784145187236 their:0.024116583791891213 for:0.02345558639271106 by:0.019186000935299118 our:0.016657050263402803 between:0.01619894016961973 its:0.01417726527534217 tho:0.013218024521490668 :0.182604926314263 +to:0.18494945072817237 the:0.14185319828539894 of:0.10912695309336308 and:0.07280945336165301 not:0.06663177627425074 for:0.034431970885752144 or:0.0337834903061728 at:0.025687991267449445 in:0.025673553273153633 can:0.015083952074025258 will:0.014338258369931703 would:0.014203444482110953 from:0.012421733175949062 The:0.012340241284347846 tho:0.010562280903382223 is:0.010051294038136191 with:0.009904392333713992 it:0.009069087186055686 States:0.009064180930143296 :0.18701329774683764 +the:0.4659540080203177 tho:0.027182874156894007 Mississippi:0.02487461829701937 of:0.02486344357298091 The:0.015217851302997222 Potomac:0.014613310888743429 Missouri:0.012922510308515137 said:0.01254154316538936 Ohio:0.012232797516341307 tbe:0.007174386692235604 Snake:0.00602893245523144 his:0.005801773097199059 and:0.005295641278364322 a:0.004799805671066833 York:0.004558793279583271 their:0.0041894828886556495 an:0.00389416958882133 marked:0.003598572362301001 this:0.0032235265960371623 :0.3400319588613059 +and:0.07485205944201978 made:0.05903768547072351 it:0.019491756472716143 up:0.01833543544718108 followed:0.018053129056828814 done:0.01592491976894268 but:0.01366103494818695 that:0.013653754746753833 ed:0.013149942452818352 or:0.012632386450056628 given:0.012367627059023398 owned:0.011862185847960713 held:0.01182134443953209 down:0.011580749803081719 him:0.01154047993144933 occupied:0.011138604615594586 used:0.011116314680541485 out:0.01096787383234428 accompanied:0.010942256018109981 :0.6368704595161346 +one:0.1028303141280697 part:0.05963429477052991 out:0.04766456937681193 some:0.031418679026461914 members:0.030764490253327767 side:0.029940657362655835 portion:0.022063658796890564 office:0.020457735219956013 member:0.019726706386316174 end:0.019666887540649894 tion:0.018667441728710307 parts:0.016814747270460957 people:0.014112771422418794 all:0.014072739582212475 any:0.013183573287639892 One:0.013083578354183906 that:0.013024335602903442 account:0.012482348155001894 many:0.012077825070275192 :0.48731264666452345 +in:0.14048713722096412 for:0.12045306486651125 of:0.1150959154773748 within:0.061090158043955345 and:0.05346109170384797 only:0.04877263632788032 In:0.04433449219687606 with:0.037160146048207214 is:0.0315421892589043 but:0.029830979859766554 by:0.028968633883732185 to:0.025999925223267443 was:0.02505070588261269 after:0.022494641765410772 that:0.022285961534963723 as:0.01690029607373616 from:0.014222657035431458 or:0.013178995054789719 made:0.012188942064310933 :0.13548143047745698 +the:0.13640801747056752 to:0.06551968320699815 of:0.06252668286938488 and:0.052178463324617154 a:0.03887806295240963 at:0.027329609492724824 in:0.022699073601041963 by:0.020603512841005697 :0.018546231115311427 on:0.01759678673821952 as:0.014529337066778456 that:0.014013231706230174 The:0.012814533869736775 is:0.011901585596662961 for:0.011436289752744277 was:0.01141250002548521 with:0.0113986363430563 from:0.01117794874545307 be:0.011060119437612202 :0.4269696938439598 +above:0.41074286784319475 following:0.3255762902817133 and:0.050628639026891874 the:0.035894703219365026 lowing:0.02893587883272638 premises:0.019089089178411598 hereinafter:0.01361730245882575 a:0.008123371990726139 is:0.00643665349552703 particularly:0.005648972302318714 or:0.005635119876242302 as:0.005072514606016088 which:0.004796500553211592 was:0.004745803243258756 herein:0.004451085606612903 that:0.0041890193623504764 The:0.004146471274426973 of:0.0038699171844554085 on:0.003829469735440269 :0.053570329928284685 +he:0.15209708370622607 which:0.115968192969322 who:0.09393292294884084 and:0.0738958694446507 that:0.07113414961351121 He:0.0542373202099834 it:0.0399190665150939 It:0.03030639552249697 she:0.02738734313394311 as:0.020822187060296274 man:0.013659623007819767 what:0.011991237371260352 ho:0.011507403308757531 lie:0.009992021864344324 She:0.009419272289255591 one:0.008738801047112384 company:0.007278666190394002 government:0.006539714340058111 time:0.005753656650786827 :0.23441907280584662 +and:0.2693971927833931 that:0.11913892632651331 but:0.05221747670473287 is:0.04927131325642822 was:0.0340495579289912 as:0.02340190152274732 And:0.018370583889773792 Is:0.017632730116489307 it:0.01748494445838573 or:0.016871833530456383 for:0.014895888207156078 But:0.013755642847635011 are:0.012727745009669658 were:0.012612725149799744 if:0.01199812455025138 which:0.011915066926484962 found:0.010373063759831424 be:0.009653680868015005 with:0.009205165862114794 :0.27402643630113077 +and:0.08541288770208846 in:0.05148918452925486 of:0.02549397830797993 are:0.024332335919926635 recorded:0.023700342893490493 is:0.023336664738748084 was:0.02323970382379745 that:0.022243334339933273 be:0.02085101136280396 all:0.02051529308888883 out:0.017977712708502083 up:0.017545477894072632 divided:0.014411422701123134 were:0.013202082801029923 distributed:0.012834877424199328 them:0.012774593270759606 known:0.011846336072146168 but:0.011540392208006576 In:0.010578429340653546 :0.5556739388725951 +of:0.28767355066866834 to:0.08775711267569858 in:0.08678131196995101 and:0.05160598694501188 on:0.04646139928102899 by:0.04519522654900943 for:0.044547789071328545 with:0.03396756772609607 that:0.033699232901107726 from:0.03075346596941143 at:0.027039283056790858 In:0.021061449543044047 as:0.017514234937992545 all:0.012543839382496166 upon:0.011844431150487573 is:0.00998972746569266 was:0.008814315973987914 into:0.008557199930727406 through:0.007781895704231326 :0.1254109790972375 +the:0.5732565326510021 The:0.05868984761115315 large:0.04032314127623081 a:0.03691924174469436 an:0.032488103743919784 that:0.02881289529358096 tho:0.02321650135866421 this:0.02024346969092641 and:0.018910584178253066 to:0.018653382046070782 of:0.01592156693001686 will:0.012002216867581073 any:0.010285213001987259 total:0.010188573201560006 same:0.010056510088322293 small:0.009849347995060702 whole:0.009034676449928647 great:0.007688847182098515 some:0.007586318339202241 :0.05487303034974681 +:0.1512047772868688 .:0.018106674918246694 it.:0.010318178877827877 of:0.007140965928920783 day.:0.005878167453570464 them.:0.005436115806619205 in:0.005005520288345393 time.:0.004686041395295897 city.:0.004548935059440483 country.:0.004249163152921468 year.:0.004189917795649323 :0.003764116076658653 ::0.0035874739349622082 him.:0.0035538961795499972 1.:0.003433630981251087 week.:0.0034179312244762834 the:0.0032581094873895588 States.:0.0031319358267407347 to-wit::0.0030812749781456367 :0.7510071733471194 +and:0.12442776279465007 was:0.05022493453682814 it:0.03224177636346511 that:0.02917272719492536 is:0.02873718061755939 but:0.024474007916074594 when:0.020811676096968306 be:0.01990132700956949 had:0.019803066912279847 were:0.01912597762525711 as:0.018882424321091402 on:0.018840337520695687 not:0.018733256402558154 him:0.01862630788497873 are:0.017144616913778887 men:0.016649844142948664 I:0.01509388144054052 he:0.014353998079920336 who:0.014338465312218605 :0.4774164309136916 +the:0.3893924594635086 a:0.12129873687342245 large:0.10878477939176665 in:0.08988460183275059 In:0.032308009134601794 tho:0.027897192307746004 this:0.024122546862831943 The:0.021587530470852028 and:0.020779015972054057 of:0.01993865554342805 any:0.01964557474963789 larger:0.015188902463085331 great:0.015024531620132292 tbe:0.010339814492674659 small:0.010038981719331127 every:0.00997565230341953 other:0.009864974487048492 all:0.009288968766690265 certain:0.008936507482056695 :0.034702564062961586 +the:0.11131769804514842 of:0.08500772301364584 and:0.07962611781259461 to:0.06968775000189546 in:0.04279294074166484 for:0.030174031052954825 by:0.027705952169799992 with:0.022570543661224428 that:0.0221520867785269 or:0.021624888250106646 a:0.02058008254290229 is:0.017800557712024493 was:0.016933262728947036 be:0.0161426918043057 In:0.015071834464061493 as:0.013121885005309123 at:0.012923229510737268 which:0.01288640726376173 from:0.012362567953931841 :0.3485177494864571 +the:0.6531331729326925 this:0.11086920079371486 tho:0.04063147742067847 a:0.030627064483229917 The:0.015331338435796395 tbe:0.014558034669970793 that:0.014110468179888374 other:0.012207929467401488 his:0.01165144370986266 next:0.00987177412264569 of:0.009870937176787008 our:0.008672745987168159 on:0.007311840093861536 whole:0.007285796140339434 said:0.006325196662176831 their:0.006019699451099224 its:0.0057981522426096156 one:0.005327909536871056 same:0.005053113643565941 :0.024342704849640046 +the:0.37377565772325577 their:0.06915364125006625 of:0.05175698523238545 a:0.03885665911444458 The:0.034568453299528436 our:0.03264891606940153 his:0.031332305274680686 and:0.030372734726742703 these:0.028836964678778856 tho:0.027458164848845647 its:0.022402735917943426 other:0.016902154154179828 public:0.016100672499312792 such:0.015517296097628194 two:0.012303340685752465 hundred:0.012237754193010309 in:0.011416414287721463 three:0.01138077231060187 many:0.011136404973456172 :0.15084197266226357 +the:0.2849184330754206 of:0.2014948361569607 and:0.051077736794896515 by:0.0399017962377715 said:0.035686915190584374 a:0.02627637992388361 to:0.025947760832753516 The:0.017562833323553326 tho:0.01383124743274849 in:0.012248269986838907 their:0.011980682742201843 for:0.010920586134955695 or:0.01011894901438499 that:0.009772048237084106 with:0.009305813960189788 from:0.0071028973005088395 his:0.007021176812374781 tbe:0.006384985167573413 our:0.005985098833943885 :0.2114615528413711 +hundred:0.053677316206166455 time:0.017020837127570496 strength:0.01458468318811296 rules:0.014387305858773599 good:0.014154433430555923 men:0.012505458274049856 rights:0.012105080322849375 out:0.011404155130337998 life:0.011384677245440539 peace:0.010256855787905216 in:0.01025172670681856 free:0.010234622227680493 costs:0.009260295101225245 labor:0.009132177038748737 interest:0.008835889542747095 judgment:0.008711957391582311 work:0.008647392537917414 law:0.008101882551292886 growth:0.00790794802980621 :0.7464353063004185 +and:0.18955017923316145 was:0.1170628773979377 been:0.05275979289678848 be:0.0513466304839019 the:0.036350369121089944 were:0.0320678376839705 is:0.031087882423706494 has:0.026470598468051616 had:0.022982613266670806 have:0.021311362243049255 being:0.018604540765849633 he:0.01851227582513445 or:0.017711958803951627 so:0.017445413137204362 a:0.016607833974071333 duly:0.015987885932704657 of:0.015938785415145953 are:0.015392626220667515 most:0.014191758080117947 :0.26761677862682437 +and:0.16610819467043936 when:0.07921816729970918 that:0.07023803466683688 which:0.042594940457375025 but:0.041492254382948415 as:0.036898672272676326 When:0.023481718275056362 Then:0.021868813919483317 what:0.018148230853380937 where:0.018096963591304954 so:0.017908909433008286 the:0.017342248333174753 if:0.015343097816612949 :0.015283973404644576 then:0.0144927658690625 I:0.013479669017541242 of:0.012411055843055888 time:0.012184446643244827 to:0.012022124592575574 :0.35038571865786866 +of:0.21765921106917238 to:0.1067127586273384 for:0.09072526027310865 and:0.07079803376048369 in:0.06451276084153416 by:0.048131538342123345 that:0.04640920050866022 all:0.03920113188353976 on:0.036756108965548887 from:0.03661957426277667 with:0.03586169931186133 In:0.01830582950817699 as:0.016408709841623317 upon:0.015743703817381625 at:0.01523874077778755 is:0.01507392226113157 under:0.014055432874719864 when:0.011569959749489649 but:0.011144973678958257 :0.0880714496445837 +:0.079640375950852 it.:0.02107642347922797 and:0.018804548423960593 of:0.018254381840951968 them.:0.013636681392532317 in:0.012489075908128604 ;:0.0114389409294139 year.:0.010347643992093836 as:0.009325931898558924 .:0.009062090892076035 day.:0.00905993089931781 country.:0.008687829968026523 law.:0.008418344787249914 time.:0.007842548547106757 county.:0.006635039892522013 ::0.006626162388883633 week.:0.006547029067347895 in-:0.006532410267439257 business.:0.0064762055021248275 :0.7280984039721853 +and:0.12163974343008718 of:0.08487040140996578 the:0.06909508972335131 a:0.04527319304779533 to:0.041697399153088524 was:0.03214834858122986 in:0.02853078088944407 be:0.023638776740558077 he:0.02100068394636209 his:0.020095219707972716 is:0.019396126654204184 for:0.019156758348618633 which:0.017041942010804573 are:0.0167753149209489 as:0.01614935229761369 I:0.014308130741075151 that:0.013614621006683874 who:0.012096727830750607 her:0.01150631135226769 :0.3709650782071778 +the:0.12927673701534828 of:0.08497450406200965 a:0.08397162955869555 this:0.07895131985043315 in:0.05934543952222124 and:0.045319435672848164 by:0.03770057120286292 one:0.028379551804685873 his:0.026515809663622075 an:0.024905940523373103 for:0.02311952507905943 to:0.022629410678963655 or:0.02175933536257294 any:0.021698126941443012 their:0.019422404075174232 that:0.01941479487121954 our:0.018175235807966924 every:0.017805707551519324 first:0.013704958142945018 :0.22192956261303592 +to:0.18494945072817237 the:0.14185319828539894 of:0.10912695309336308 and:0.07280945336165301 not:0.06663177627425074 for:0.034431970885752144 or:0.0337834903061728 at:0.025687991267449445 in:0.025673553273153633 can:0.015083952074025258 will:0.014338258369931703 would:0.014203444482110953 from:0.012421733175949062 The:0.012340241284347846 tho:0.010562280903382223 is:0.010051294038136191 with:0.009904392333713992 it:0.009069087186055686 States:0.009064180930143296 :0.18701329774683764 +it:0.23916211478210356 It:0.20571180260757493 which:0.09954319858300392 there:0.06293885748917442 what:0.05326165029741542 he:0.04451290637339789 that:0.04212597394760668 There:0.03694275800263685 who:0.024115008329511113 This:0.01874288996394962 Reference:0.018595848842967208 He:0.017019515641303905 and:0.013701063103108976 she:0.011852516040867752 man:0.008516520708764203 this:0.007292036418974527 as:0.00650384577374333 She:0.005258986660518532 country:0.00484964999377084 :0.07835285643960631 +and:0.07558940021936399 recorded:0.030196237618668006 was:0.028917161578042846 made:0.027969746247669736 that:0.027730098932509103 o'clock:0.025060522019555328 up:0.023026552239529506 is:0.020398277211376416 found:0.02003101797656537 placed:0.017482208134164214 out:0.016937164562539058 place:0.016819459500107596 interest:0.016629321966808677 him:0.016002796715253755 situated:0.01573420479581609 it:0.015128305982428461 them:0.014715943643665314 part:0.014646613000297721 interested:0.014450471929902294 :0.5615344957257364 +not:0.33331321499898836 or:0.09811602337627603 much:0.05237693142085705 be:0.050377951877451234 in:0.04116651743772567 of:0.04086363469600837 no:0.0364767938568912 for:0.03459834122996516 and:0.03067788826534756 with:0.02340011874270719 nor:0.022692163260916724 nothing:0.022124815891777488 to:0.021716992613985735 is:0.020904688430088126 was:0.012615952949990211 been:0.012509363226697491 far:0.009844170237023067 do:0.009806820120474468 at:0.008709332862500682 :0.11670828450432817 +the:0.11919516938815296 of:0.07230453158552728 and:0.05781056740443249 a:0.043018564803886335 to:0.031305092790907506 in:0.020848713353460488 at:0.014270110001066288 .:0.012526810245749479 :0.012413283442322082 for:0.011719122709941797 by:0.010808400946589808 or:0.010404172990115616 The:0.01003576004804544 with:0.009811868184449042 tho:0.009295902015355835 was:0.008924239095331684 that:0.008672304223433876 is:0.0085591147338948 be:0.008335143826716943 :0.5187411282106204 +the:0.11919516938815296 of:0.07230453158552728 and:0.05781056740443249 a:0.043018564803886335 to:0.031305092790907506 in:0.020848713353460488 at:0.014270110001066288 .:0.012526810245749479 :0.012413283442322082 for:0.011719122709941797 by:0.010808400946589808 or:0.010404172990115616 The:0.01003576004804544 with:0.009811868184449042 tho:0.009295902015355835 was:0.008924239095331684 that:0.008672304223433876 is:0.0085591147338948 be:0.008335143826716943 :0.5187411282106204 +no:0.47586185768765527 No:0.10043923397397761 a:0.04550335142873487 I:0.04259502769034649 the:0.033557182401952816 that:0.03050910549787283 little:0.02898066749751591 of:0.02886063003535816 and:0.02354764355322805 any:0.01883455300443605 we:0.016071990835721056 The:0.015564160129281029 to:0.012669024988345132 or:0.011419486701661727 an:0.0109091026747169 which:0.009257719717382453 this:0.008638750492432862 but:0.008204413468225667 We:0.00765607501646282 :0.06992002320469229 +to:0.3321981199519468 and:0.07282437339094018 who:0.057527986867150153 they:0.04641953544309339 not:0.04581339956123415 I:0.03725519685290979 will:0.0357897046750707 of:0.03396294086394095 we:0.03267521599433046 may:0.0288187897913183 the:0.025732754272788344 a:0.022209186647661184 or:0.019280837134668535 would:0.017761994187826327 shall:0.01605394651834495 can:0.01564206881650584 for:0.013947840556874107 he:0.013509494979652946 have:0.013170347480427547 :0.11840626601331529 +of:0.11383398358546784 the:0.07456785972552855 to:0.05476883681807443 and:0.04323550181845868 in:0.040155689200449284 his:0.02597240356104815 for:0.024071905661215264 be:0.019051561492071534 a:0.01895436206547055 that:0.017502142659259864 Mr.:0.01728194333485854 is:0.017267732165496166 as:0.016770154793900035 was:0.01567786665632595 with:0.015308183335244243 their:0.015166157095080558 it:0.013360752064582567 at:0.012462709999781812 or:0.012262950884083464 :0.4313273030836025 +the:0.13987575842963337 of:0.11852346070415384 and:0.0963072448019898 in:0.06789983058743904 a:0.03969157867574745 was:0.034859941870910544 is:0.027535153340949064 are:0.023837637965263416 be:0.022833671015685297 for:0.02238714373648263 by:0.021037585439734795 to:0.01742709704260978 In:0.01710682232197593 been:0.01680336484265405 from:0.016507157063768207 were:0.01546416326081484 or:0.014614228560089978 not:0.01340921522630585 as:0.010338408172987403 :0.26254053694080476 +is:0.28720597657403946 was:0.183062585395115 are:0.14625700422112456 were:0.03944531693021727 has:0.037255013561296894 had:0.03534820326938488 Is:0.03371034817582012 have:0.03208341648527747 will:0.024374166486520844 would:0.02003373219058545 could:0.01901350367647747 and:0.017624119901340256 does:0.016114905262055786 did:0.013615303192880212 am:0.012515856125108407 do:0.012406670969173866 if:0.009461201003265148 should:0.009180383793440054 shall:0.007938364878190565 :0.042353927908686265 +is:0.09669299787006048 more:0.08799553501341588 was:0.08455384139331476 be:0.08029389210625032 not:0.06043444318202514 been:0.05485456496371462 and:0.051990137915173276 are:0.0362489842805693 of:0.034895340054051274 were:0.02792724888176146 better:0.027158665487572696 much:0.020686985272597654 less:0.018115156347940763 to:0.014007095946198677 for:0.01285991302717445 Is:0.011423988175099 being:0.011203704257874916 or:0.010896992223605167 have:0.010468045710694198 :0.24629246789090595 +of:0.3009097810395509 to:0.12857637630618907 in:0.09444728558691722 on:0.08975228289528811 and:0.04748625611076069 from:0.03595810495749564 by:0.03180989328818969 for:0.026398711571045126 In:0.02633412596748623 that:0.026023533199211784 with:0.02197417929418992 at:0.021723309648618266 upon:0.015656839443811285 as:0.014879125834556547 into:0.010883556319549048 through:0.007710809859882451 was:0.007585322568999985 is:0.007323070625713512 when:0.007153880689586041 :0.07641355479295853 +the:0.13719350867666488 and:0.0802390087002319 of:0.05262863071935662 in:0.040598665900038744 to:0.02864674616871877 for:0.027714307852499304 that:0.027264234510365297 or:0.022252847987919575 be-:0.021388571591443972 In:0.01605785670858949 as:0.015639519903610108 which:0.014706396246887302 any:0.014623615797131041 re-:0.013191711555669271 be:0.01309650349474952 he:0.013009134984926788 their:0.012745332384913556 a:0.01139011960642838 was:0.011007382519291562 :0.4256059046905639 +of:0.1509262677842936 the:0.08158847055959408 in:0.07791378067733451 to:0.07199839009270641 and:0.04902903340549232 a:0.02814046134745657 or:0.02095421853944264 In:0.02086898711779537 on:0.01890511227131828 for:0.018345162042754045 from:0.018251566172914967 by:0.017292450241183963 with:0.01604809476323422 :0.014214458650216248 that:0.014031859858809323 as:0.013178576467579585 in-:0.011961897308038117 his:0.010702189475218803 their:0.00996723941206091 :0.3346817838125561 +an:0.3347604352817502 the:0.19377311638579536 most:0.11179152223548977 a:0.06886358168205292 and:0.053667622712401074 more:0.03005013450040418 in:0.026790439355798435 The:0.021592061077209897 very:0.018624788563273438 of:0.01732127001000524 is:0.012496068297173403 tho:0.010392301115604439 In:0.010205422260449614 was:0.00873689827763541 for:0.008068627954676543 An:0.007490079683883594 this:0.0068986518912775045 are:0.006774791370291608 his:0.006298345920630868 :0.04440384142419648 +dry:0.17013401331930553 the:0.16389070437502767 of:0.13887265276638563 a:0.09343875978334021 his:0.0508959056874312 in:0.05029762313130481 their:0.045598971539390215 other:0.026937615944161608 our:0.023220695849326706 with:0.01748871236221172 more:0.01637369397116723 its:0.015989140967641546 and:0.01588953661989342 her:0.01417657333055051 or:0.014094660682486763 by:0.014019585998064897 for:0.01261302205958513 on:0.011201310017104883 no:0.010304469624231994 :0.09356235197138832 +out:0.03824444552856091 part:0.03408365036447735 one:0.029335466044976482 day:0.028929092830071054 side:0.0190016319188074 some:0.017370927990901504 all:0.013161334282273986 and:0.011808547768990277 state:0.01008349954873226 parts:0.009230030521408326 portion:0.009220463342900923 tion:0.009188760662822808 any:0.009083293124335614 that:0.008804606467242121 people:0.00877509173253596 many:0.008689511309767634 end:0.00837337463241756 State:0.008188755889845425 account:0.005997124198076204 :0.7114303918408562 +of:0.09129790931378902 the:0.07369883040827747 and:0.047842263382354346 in:0.04189055351593407 to:0.04045875475680249 a:0.03542341257202578 be:0.02020462051672066 for:0.01979292654746225 was:0.01760256398103379 at:0.017380150555488715 is:0.014984483003968216 with:0.014047653760730413 by:0.01374644383819499 :0.012670486581795598 In:0.01200961464556976 or:0.011563835749786333 from:0.011391516893522809 are:0.011273104484969465 that:0.010755276030689069 :0.4809655994608848 +a:0.5926294574083948 the:0.10178194264605273 A:0.0469609999877316 very:0.037763330218292035 of:0.02472365696316471 and:0.020550597531954273 The:0.019976900391289996 but:0.016358138656644747 with:0.01496569213815312 as:0.010481146571007549 is:0.01003227301395398 his:0.007819560494427941 by:0.007194146934489328 her:0.00652560436352083 that:0.006395806231100316 in:0.005366118453375391 tho:0.005157473506276282 was:0.005125245108809709 no:0.0049152918658671475 :0.05427661751549352 +said:0.732482774626333 the:0.04238739059531398 of:0.037219174399335676 certain:0.028121139009997503 in:0.014811304305049913 this:0.010205852653372918 at:0.006790735494855084 to:0.005851421250418817 on:0.004212372169389526 his:0.0038977102622508807 a:0.003765264303660187 such:0.003660008155256979 that:0.0032606319198804647 any:0.0031480923080310225 aaid:0.002995974246552482 tho:0.0025717441971723244 and:0.002500321983568627 by:0.002382485986769763 for:0.0021552889048649317 :0.08658031322792588 +of:0.2545136377265004 the:0.2069930141926949 and:0.06685734161431284 in:0.053976342089047426 by:0.04290673550329258 to:0.02919661201136197 for:0.022145222354291387 at:0.015718713029887466 In:0.014088363676319151 as:0.012946673812258103 an:0.012650104716046183 a:0.012630700222064924 this:0.011147969803977687 tho:0.010068429185120313 with:0.009899506073604363 The:0.009603746228231168 our:0.008930356565627457 that:0.008456130240090311 is:0.007777927744814872 :0.18849247321045653 +thence:0.1411245277884487 the:0.03163713744150523 .:0.03113142103358983 of:0.029140605860019222 bears:0.027916514241880196 and:0.024339175123423956 :0.014966765882768357 J:0.013857144456775012 to:0.013288790065519699 Mrs.:0.012881485104596042 thenco:0.009894003225571126 Miss:0.00988354438805153 J.:0.009037457405320056 in:0.008020668353021794 theuce:0.007212484012669827 &:0.006996595888019884 C.:0.006369509951741238 S.:0.006277883252109777 Mr.:0.006272542414935384 :0.5887517441100331 +;:0.01458927046758731 it,:0.007973265891266864 him:0.007834970369143835 one:0.007240974664279108 in:0.006989508095588829 and:0.006417396987522371 ,:0.006059091806132192 it:0.006014614548599763 up:0.005812344146302806 out:0.005395853159197619 them,:0.005290532062834904 him,:0.004938420268273817 city:0.004793760033506698 :0.004646491011450349 man:0.004641061555670736 country:0.0046164671969483135 feet:0.0044416267197611185 time,:0.004376787347733258 time:0.004358244018157902 :0.8825693196500423 +;:0.01458927046758731 it,:0.007973265891266864 him:0.007834970369143835 one:0.007240974664279108 in:0.006989508095588829 and:0.006417396987522371 ,:0.006059091806132192 it:0.006014614548599763 up:0.005812344146302806 out:0.005395853159197619 them,:0.005290532062834904 him,:0.004938420268273817 city:0.004793760033506698 :0.004646491011450349 man:0.004641061555670736 country:0.0046164671969483135 feet:0.0044416267197611185 time,:0.004376787347733258 time:0.004358244018157902 :0.8825693196500423 +and:0.07558940021936399 recorded:0.030196237618668006 was:0.028917161578042846 made:0.027969746247669736 that:0.027730098932509103 o'clock:0.025060522019555328 up:0.023026552239529506 is:0.020398277211376416 found:0.02003101797656537 placed:0.017482208134164214 out:0.016937164562539058 place:0.016819459500107596 interest:0.016629321966808677 him:0.016002796715253755 situated:0.01573420479581609 it:0.015128305982428461 them:0.014715943643665314 part:0.014646613000297721 interested:0.014450471929902294 :0.5615344957257364 +well:0.0783261505813394 known:0.07715919941364807 such:0.05477142900040686 and:0.04863188910629108 far:0.0445482759728691 soon:0.03102312685208889 is:0.028257952691436966 just:0.028005499533101993 was:0.022532512345363628 be:0.022395863339445075 much:0.020508662953047308 regarded:0.01823330307450135 it:0.017273059614160098 are:0.016747984622291417 described:0.015259584918361666 long:0.012277346915599112 not:0.011208503916372204 them:0.011089145850343493 him:0.010809593852119817 :0.42994091544721247 +the:0.7128175970550102 The:0.06095765514998046 a:0.05471236271965901 tho:0.02927383865281078 in:0.025023557601272995 this:0.015791662249381923 In:0.012591862249284257 of:0.012126221773183114 tbe:0.009565370991685071 and:0.00599312787263733 any:0.005230321032570874 to:0.004518611470385451 no:0.003761905900101775 that:0.0033534534295136314 every:0.0032733507414406393 great:0.0031052672159924146 his:0.00272287757775067 by:0.0025495835942633276 This:0.002361993400059047 :0.029269379323017063 +the:0.16895970820131562 a:0.08583692035943077 and:0.06811166753232581 of:0.03184988762358831 The:0.025567518817618973 that:0.021066506100625836 be:0.014508925157341111 in:0.013505180333204905 which:0.012052529126482133 his:0.011897304801083333 to:0.011770438341377589 tho:0.010625464900117065 :0.010542565273622866 or:0.009184437636846992 :0.008970460476024901 said:0.008942658023612896 with:0.00825326740344136 their:0.00810333054183736 mortgage:0.007905100981101523 :0.46134612836900063 +the:0.24560354047473898 this:0.20329684293870057 a:0.17669215195735402 in:0.08399702494099032 any:0.044609022056322896 some:0.03450095753177308 same:0.031497104108634905 present:0.019421180139832062 In:0.016880056136489036 of:0.016111316253287572 that:0.013995957940358994 first:0.013673481344502227 to:0.011491147539229316 every:0.010611144644722403 no:0.010273604703804042 and:0.009980221580371202 their:0.009843780507225196 tho:0.009334989521285182 for:0.007861889245504551 :0.029324586434873443 +and:0.07558940021936399 recorded:0.030196237618668006 was:0.028917161578042846 made:0.027969746247669736 that:0.027730098932509103 o'clock:0.025060522019555328 up:0.023026552239529506 is:0.020398277211376416 found:0.02003101797656537 placed:0.017482208134164214 out:0.016937164562539058 place:0.016819459500107596 interest:0.016629321966808677 him:0.016002796715253755 situated:0.01573420479581609 it:0.015128305982428461 them:0.014715943643665314 part:0.014646613000297721 interested:0.014450471929902294 :0.5615344957257364 +chs.:0.1329293897441503 ft.:0.0417344313901515 and:0.035245019005218335 right:0.022929471130494695 went:0.022006541145975732 as:0.02116781960051895 order:0.020494192032730212 him:0.019175599722200846 made:0.01812690257401701 able:0.015250863574101619 go:0.014938374869543221 according:0.013650673549845041 came:0.013315476278381528 going:0.012772143357336199 them:0.012211867638434496 come:0.01150950609408524 time:0.011237692337449185 way:0.011132643994886513 up:0.011130066312902176 :0.5380413256475771 +the:0.162685549488703 a:0.10693720119204227 two:0.09404526997196612 and:0.05786233291658601 three:0.04519830005377235 some:0.027416899994170987 few:0.027209286788984474 many:0.021227169468956707 several:0.020678649772229586 most:0.02049018305545176 one:0.019474993817743654 his:0.019207148127690997 A:0.01866488637591216 of:0.018097841280049414 their:0.017824834902764215 The:0.015883618497717925 all:0.01497095698332718 four:0.014288488092331842 8:0.012369741003305129 :0.26446664821629423 +line:0.03897897167025112 city:0.03350917241248984 place:0.03189237374435846 number:0.03159799125142003 deed:0.02901214396346511 day:0.028273332114312325 act:0.027775640561120758 out:0.02426768494508756 amount:0.022820790630355046 part:0.01950760048783558 City:0.01939100485877535 action:0.019235523987414436 power:0.019067052289019074 and:0.01766688889290546 tion:0.017510568590399057 corner:0.0172378891729196 case:0.016961070758914475 state:0.016258075284849197 side:0.01613722434085976 :0.5518990000432478 +the:0.10973912617333231 of:0.10851621246364662 and:0.06720551813814171 in:0.0481504064315728 to:0.029628528134688165 or:0.02699152427455335 for:0.023259173631120143 be:0.022754095398626172 as:0.021455623228870423 that:0.02043986248980096 a:0.019243344398113243 by:0.015741204979122722 are:0.013836625995718548 is:0.013026799470486334 was:0.012289273210165767 :0.011612363652515263 were:0.010975839211992614 been:0.010755512963620898 with:0.010739548699389867 :0.40263941705452205 +the:0.15343296914739027 and:0.08110008726450657 a:0.07151433427849516 of:0.044780405046964754 be:0.03970387213893549 to:0.030465613181638308 are:0.02723529428970474 or:0.025646786974789965 was:0.025204653611115454 is:0.02090361449237098 been:0.019885303309041383 The:0.018314138432813255 in:0.017724241678420575 were:0.017280310126690065 an:0.015088357640477914 have:0.011740382412696992 tho:0.011080710923704596 by:0.010340181040974205 Mr.:0.010140471717707253 :0.3474182722915621 +and:0.14507320772351315 fact:0.08580533594336559 said:0.056464728489513914 so:0.05141663139801109 believe:0.03728868944610554 is:0.032697255055655516 say:0.030323479159427524 know:0.029749358812227955 found:0.025535190692382553 stated:0.021273605064562356 show:0.019511948220510757 but:0.018999393120383457 says:0.018814328565908398 think:0.016893655385130203 was:0.01658797795582863 all:0.01652317309060226 see:0.015409038245983688 opinion:0.015263158537430448 order:0.014744011681695817 :0.33062583341176116 +the:0.17027190784407714 of:0.10585557835912704 and:0.07355927771906935 to:0.05486905984958157 a:0.04543746377447453 in:0.03128555052933153 be:0.028704485173100775 was:0.02350529800142253 is:0.02215549335554494 for:0.02077556258358175 his:0.01804639098945333 or:0.016335100594594944 their:0.015847999621030492 at:0.015526727957625254 been:0.011815834631173878 are:0.01139058447814694 this:0.010362020528084328 tho:0.01035635773045807 its:0.01000473355720393 :0.30289457272291764 +to:0.19165816006672798 and:0.13929419960078426 not:0.039198290238607554 of:0.0367818463493325 the:0.0303579356465878 in:0.023814319167530917 or:0.018432475915680993 who:0.0171881543802312 will:0.016565198322219612 I:0.016000013280039662 have:0.014567513827523335 it:0.014526161556131156 would:0.014326601105659587 he:0.014256525207924737 a:0.012882460297455572 had:0.012880839599380208 be:0.012748581412945404 for:0.011521324265883794 that:0.011331204711111405 :0.3506681950482423 +and:0.06317916895143688 was:0.03089079697380977 is:0.020044819943736053 be:0.019406329289829806 are:0.016631216139614186 that:0.015910745835586493 it:0.014132589635136123 been:0.013429954470292457 made:0.013153338042273357 were:0.012494049396038097 or:0.012369181282419555 them:0.011608721240324167 up:0.01101461536327863 him:0.010833186604515583 as:0.010718511743974049 succeeded:0.010682665877813333 engaged:0.010592681714621757 not:0.009777868089593193 now:0.00948198968071834 :0.6826475697249881 +:0.048684348333964025 it.:0.0336416763409748 them.:0.017437516337844815 him.:0.012760083562631981 country.:0.01032677160048145 .:0.007919078776068948 again.:0.007871035153275504 time.:0.007561548630333125 life.:0.007406725559348793 years.:0.0072760430199622275 people.:0.006458382344984263 us.:0.006335229733755727 all.:0.006163932956788366 year.:0.005912070606451844 day.:0.0058728889638329194 men.:0.005522711518012421 world.:0.00538943303930161 party.:0.005310089318336486 law.:0.005100897507627535 :0.7860495366960232 +the:0.3080793626741277 a:0.2114877243203607 of:0.07563869703683689 and:0.05806261333717955 in:0.034422434065205024 by:0.01991970621628905 The:0.019532151688807984 this:0.01927062169394083 any:0.01917226702554237 to:0.01883199252615194 his:0.0177176633419099 tho:0.014764333455982284 or:0.014375525726311407 their:0.013904572343380885 with:0.013038091546635464 no:0.010906487736792042 our:0.009116471138130055 on:0.008980869760401949 that:0.008209461502521003 :0.10356895286349296 +the:0.28701717483936484 degrees:0.17212902517982132 minutes:0.12521530147554016 thence:0.07755409091747777 and:0.05223169174953222 tho:0.019332788095073175 on:0.01864000442484107 The:0.01770516701158091 degrees,:0.017461978789808336 street:0.016589763666627764 of:0.014898102487318434 grees:0.007896503592694747 north-:0.0067984950031046215 to:0.006545712884456909 feet:0.00653310015017955 utes:0.00631728400870378 south-:0.00563656749267169 one:0.005516531680246661 miles:0.005226188831896335 :0.1297545277190597 +of:0.1343138587507163 in:0.06765056899607808 as:0.06523902155079696 is:0.06408242877157266 to:0.05920677986120668 with:0.052352944016705046 by:0.0489161125839358 and:0.04476446561312716 was:0.043874711196451026 for:0.0353857632723415 at:0.028122627130863165 such:0.027654959488952243 be:0.026520497424890634 on:0.01775924540667342 In:0.017304992039102633 that:0.017053231434412737 have:0.01675624464989442 from:0.015365315280442398 had:0.013575095776826075 :0.20310113675501107 +the:0.4071374189315913 and:0.06449181461132415 of:0.02892866618288876 in:0.028670005984162618 The:0.02603617389223924 tho:0.024993820467459137 a:0.023579040051412606 to:0.01755553213771617 on:0.014626070241060114 by:0.013447843485786471 or:0.012794166593089693 tbe:0.012024509152999897 :0.010353482361299817 that:0.009291482237329618 In:0.007938246807075932 from:0.007526799010378873 other:0.007469196869028889 all:0.006409533041696086 for:0.00626887758057738 :0.26945732036088327 +able:0.07390960241674038 and:0.06831059679658202 right:0.049366289648345746 order:0.0423118646815734 time:0.04099055195471692 necessary:0.03758136082964712 enough:0.03649758512342594 him:0.03475473947240936 desire:0.0322943351803442 as:0.030418649997484597 began:0.030095567143191053 required:0.02901832338775362 is:0.027650488678615043 unable:0.02638182867443467 going:0.025631477225001385 them:0.025571017275659906 power:0.022925055225338508 allowed:0.022813354977652096 attempt:0.022311715077004676 :0.32016559623407936 +and:0.0898983534307284 recorded:0.03839146221566241 is:0.03668562203905007 that:0.03431669392481337 was:0.03241998013206866 are:0.027724572492448484 distributed:0.02179882077106108 but:0.01800596869166509 divided:0.01768723397643896 known:0.017021756068469524 be:0.016884730073410792 it:0.015315420617176249 were:0.014487761080509552 out:0.014292757089545834 up:0.014183216524911337 work:0.013587985847310425 them:0.013360650140025847 all:0.013336002124362483 him:0.011966071585439919 :0.5376349411749015 +be:0.09100883939119543 and:0.08247387041876873 was:0.065817405921115 are:0.06388781623887431 more:0.05764344911372145 is:0.0556360974363259 been:0.0393432533482424 were:0.03703436415006646 care-:0.03581127900191783 not:0.03496447758695844 it:0.03249306215106494 the:0.022226494820523232 I:0.01650938766294708 success-:0.015627315668452015 cheer-:0.015580960049633696 very:0.015079845510605643 to:0.015059657549692837 by:0.014692437836759262 beauti-:0.014599268118637584 :0.2735107180244978 +the:0.21372600476594955 of:0.09546182567972229 a:0.07651252931256408 and:0.0440486332843121 The:0.03994883062675828 in:0.03674644958074024 to:0.03476677575329522 at:0.022292519781567627 on:0.01773759097027408 with:0.015277709058228898 his:0.014940216668079676 tho:0.01318113571575487 by:0.011356626469452503 from:0.010425368302856656 :0.01036975988882955 .:0.00986426428377172 Mr.:0.009393405366260429 for:0.009048375220068077 an:0.008377993582913494 :0.3055239856886007 +the:0.5705434737956826 The:0.06617741380060684 tho:0.04561181021802382 and:0.02667757035849222 a:0.024052856352644415 miles:0.02150557871211552 minutes:0.020757706975160054 tbe:0.016193544389903895 feet:0.015760228099015106 south-:0.014841722935493767 north-:0.01305586024333456 north:0.012123839461532098 degrees:0.011036966016824967 north­:0.010126195710202264 south:0.010090691500431207 of:0.009263518980323224 far:0.008750627229184335 thence:0.007758317332928809 on:0.007339891927159048 :0.0873321859609412 +of:0.3184190360443104 to:0.09837906929557073 that:0.09130553659096319 by:0.07716162857593323 and:0.07688457445143693 with:0.03906316830091578 for:0.025965737317318032 as:0.02542658772834525 all:0.023506616441147255 which:0.01968652879663868 among:0.01841207866951537 in:0.017513619642541476 when:0.01720235800928863 from:0.015449175925616863 on:0.014523860288414415 but:0.011312790402103057 if:0.010474920730546195 where:0.009647153854551638 upon:0.009387241003742929 :0.07927831793109999 +the:0.08523216295110722 a:0.07688249095133122 to:0.05486983525011538 and:0.05170601047612832 of:0.04062195180551941 an:0.024998329287129428 was:0.02465346131769638 be:0.020425937187328082 is:0.01985261027097112 in:0.016933571206421687 as:0.0168788101784353 at:0.016591043897938314 his:0.014795575415001934 that:0.013514368182703192 with:0.012706485028126373 are:0.011680608392742832 on:0.011601966496279134 more:0.011033976695340137 been:0.010914761829627643 :0.4631060431800569 +the:0.5878686138204182 The:0.06660804475859651 a:0.04358763035725806 and:0.039731199910028644 tho:0.039334742988449585 tbe:0.018702212200276246 :0.009765710960842035 said:0.007095733658316356 com-:0.005875006651914927 A:0.005516481904559501 his:0.005202574635816003 that:0.005196892360620111 of:0.005154579085663206 to:0.0049255536975088025 tlie:0.00473767858422326 high:0.004661761690591285 in:0.004593332291167365 or:0.004568411472346392 this:0.004474906732336117 :0.13139893223906737 +to:0.14083933259002737 of:0.13479172316229232 with:0.12682302243753385 in:0.11410642811277047 and:0.056241859005538235 on:0.03893940252550313 for:0.03532540775553834 by:0.03477157856418875 from:0.032624866215614036 that:0.026767108903858066 upon:0.023977594646722025 In:0.021224856827029095 made:0.020726586911294465 at:0.01933092093571813 give:0.015840152200471552 make:0.015411085615151065 as:0.012815743334702237 gave:0.01209305979816797 all:0.01189808374069819 :0.10445118671718068 +hundred:0.13250849730896214 one:0.0889654652721077 up:0.013784912919069747 hour:0.012603885065369635 week:0.011423021606453624 year:0.01059537177733752 street:0.010527799088232629 dred:0.010277500167079606 two:0.010260014280130705 years:0.01010876393115847 dollars:0.009485184495146255 feet:0.008873812443993436 day:0.008866486869461909 four:0.00715993320610659 three:0.007127436645849406 wife:0.006347134658834185 long:0.006151040986558849 due:0.005971837091450065 six:0.0059438678205950375 :0.6220180343661025 +the:0.1307063152166266 Miss:0.09519138024249614 and:0.059126606177077434 of:0.04139797011204347 .:0.025993800419815086 Mrs.:0.02474868883164841 a:0.023855834783229342 A:0.02266596934158423 The:0.021487427119572546 said:0.020934486354920564 May:0.02083538706457055 No.:0.020460701616716707 March:0.020151424932551384 July:0.0191730241985333 block:0.01817796918640047 lot:0.01696896665883257 June:0.016076760858310127 April:0.014972181333988333 E:0.013298408019493044 :0.3727766975315897 +a:0.1421266927635767 of:0.0948218393604265 the:0.08612995511354703 and:0.06087532032473657 to:0.05902495810685729 at:0.05697820026550676 for:0.03146040176736413 in:0.029363640243731087 an:0.020362604929809496 with:0.01955713147814037 that:0.01831369151382025 his:0.015993714145658346 by:0.014736664578643836 is:0.012798113582947189 or:0.010950758753599486 as:0.010523480960563639 be:0.009660491092889608 was:0.009574795967142002 their:0.009435711088549192 :0.28631183396249055 +the:0.2615169534987628 that:0.0739649958849845 a:0.07116646644812896 of:0.056803748116508505 and:0.052915195155989095 The:0.0404103501586906 no:0.03714795541350703 this:0.035411436076489 their:0.030853071498248327 to:0.02268789509303131 any:0.02258694198502583 in:0.02174631599266237 its:0.021724610599756593 his:0.021642978913104956 our:0.02129332975215394 only:0.018685140049863793 good:0.017382876250614993 what:0.016442722962140315 all:0.015745708400596668 :0.1388713077497404 +a:0.429520252259742 the:0.13641894141710056 and:0.044391232562466895 his:0.026795815854169718 of:0.024387278962636184 to:0.023297021868212406 very:0.02157887218057915 her:0.020109218165412755 for:0.019315594811838158 two:0.01618126784337096 with:0.01505001803976159 one:0.014406723516540548 in:0.014128373234193546 their:0.012559497462065168 A:0.01247334002002724 three:0.012309969393457403 live:0.012105707391886942 go:0.011726189216564013 went:0.011127864552762668 :0.1211168212472121 +one:0.1028303141280697 part:0.05963429477052991 out:0.04766456937681193 some:0.031418679026461914 members:0.030764490253327767 side:0.029940657362655835 portion:0.022063658796890564 office:0.020457735219956013 member:0.019726706386316174 end:0.019666887540649894 tion:0.018667441728710307 parts:0.016814747270460957 people:0.014112771422418794 all:0.014072739582212475 any:0.013183573287639892 One:0.013083578354183906 that:0.013024335602903442 account:0.012482348155001894 many:0.012077825070275192 :0.48731264666452345 +of:0.09129790931378902 the:0.07369883040827747 and:0.047842263382354346 in:0.04189055351593407 to:0.04045875475680249 a:0.03542341257202578 be:0.02020462051672066 for:0.01979292654746225 was:0.01760256398103379 at:0.017380150555488715 is:0.014984483003968216 with:0.014047653760730413 by:0.01374644383819499 :0.012670486581795598 In:0.01200961464556976 or:0.011563835749786333 from:0.011391516893522809 are:0.011273104484969465 that:0.010755276030689069 :0.4809655994608848 +was:0.23555149322979657 be:0.09030930704905794 and:0.07598913416024201 is:0.07038322539549398 were:0.06362176438681015 he:0.052296461402523975 are:0.05169899607881835 been:0.04875117039111012 not:0.0335674279202218 who:0.027324527767134003 He:0.027319460161835944 I:0.024894537196135366 being:0.013833271213993938 they:0.012711121809195727 had:0.01215198162506214 it:0.01202192356150123 you:0.010938625535510907 we:0.009885947564161755 has:0.009377236022024739 :0.11637238752936935 +number:0.042308714629059906 out:0.0364832665569158 purpose:0.036409872320967304 matter:0.03283243299102104 all:0.028293901283179632 kind:0.027642255375364674 amount:0.02733755840566943 means:0.02710508688182795 one:0.025914201285308403 loss:0.02152609244965855 and:0.021372916932243895 that:0.021150219054194556 sort:0.020194726956753308 way:0.019600060598556464 right:0.01836634689856576 instead:0.017576147739521264 feet:0.01751073885921997 cost:0.01692888479456154 deal:0.0165297667247136 :0.5239168092626969 +laid:0.10891621446999607 went:0.06060886415553338 sat:0.05734521336534799 put:0.04918519397315257 came:0.042466418402836124 set:0.04209341580941088 brought:0.04117704642840227 go:0.04064925093276505 broken:0.03289239459947342 knocked:0.03251859849117056 carried:0.0310933445690862 cut:0.030676033944929727 come:0.029026137111015638 and:0.0283250701667122 handed:0.02276077824180847 sit:0.021181524932389756 them:0.020791419218298114 run:0.02021678564449381 going:0.018954122920831668 :0.2681221726223461 +is:0.23598380272381572 be:0.0974445902602091 he:0.09440422688857238 was:0.0921622654534069 are:0.06859310417890968 I:0.05596572909553552 and:0.05336035017265339 Is:0.03685814951657942 they:0.026029964909188 He:0.024776558679745986 who:0.021977425683493416 we:0.021672346967066526 am:0.02053230470484072 been:0.020239371847990156 not:0.019831162341532826 have:0.01883734040491277 so:0.018543974093759366 were:0.01850782766054103 it:0.01677979810858362 :0.03649970630866347 +and:0.07558940021936399 recorded:0.030196237618668006 was:0.028917161578042846 made:0.027969746247669736 that:0.027730098932509103 o'clock:0.025060522019555328 up:0.023026552239529506 is:0.020398277211376416 found:0.02003101797656537 placed:0.017482208134164214 out:0.016937164562539058 place:0.016819459500107596 interest:0.016629321966808677 him:0.016002796715253755 situated:0.01573420479581609 it:0.015128305982428461 them:0.014715943643665314 part:0.014646613000297721 interested:0.014450471929902294 :0.5615344957257364 +and:0.1436049237841356 to:0.07920939404896601 of:0.03578992576961711 which:0.035151490729948456 re-:0.029478985693585574 that:0.028219155808867784 for:0.024388756402958144 or:0.023852116063025307 not:0.02278311757804375 have:0.022207041004794648 who:0.02214591918381536 the:0.01995998182851126 in:0.019527814996202028 ex-:0.017409940975967396 they:0.01726837696362767 con-:0.01721546164935223 be:0.01596297722594579 in-:0.015705995925345655 I:0.015478889002129006 :0.3936397353651612 +he:0.21076065159598145 and:0.10013836999074177 it:0.09790917904768734 It:0.06346301114330065 who:0.04818247373778074 she:0.04162339939090633 that:0.03959104338115132 He:0.03794118411606893 which:0.030696725910594382 the:0.02394782219302857 I:0.019465861532792294 there:0.015886901368032925 they:0.015768583009724335 man:0.014893444065775334 as:0.01312574095896005 lie:0.012998193025849966 one:0.011294581493329691 ho:0.010126184483474146 She:0.00854652335104754 :0.18264012620377224 +as:0.2172118373920496 is:0.1440565546959548 and:0.06939056662251261 a:0.0661047932998595 are:0.06347975514613285 was:0.06154709825317645 the:0.05239085257138812 very:0.03575822992372781 be:0.03057417222412619 so:0.029011466353996578 Is:0.0243165394788707 were:0.018725808296576017 pretty:0.018014688645999505 been:0.0139793892450375 not:0.013813093680639234 of:0.011599692569449904 but:0.009065613824484498 many:0.008760693318598408 or:0.00813326442452491 :0.10306589003289482 +him:0.0478689650855018 able:0.04509587162308282 have:0.04259180339627287 and:0.04176798504364067 want:0.04103078465127416 allowed:0.039126596174939805 them:0.0378666918575206 is:0.03743583862891464 had:0.037341695093764914 not:0.03195572203160995 was:0.03138394010511727 enough:0.028193811987226355 me:0.027966249504266932 unable:0.02774648865115808 began:0.02709296104664355 going:0.025035293042160265 wanted:0.024689030440212232 willing:0.024459350949738702 necessary:0.02171144882175045 :0.35863947186520395 +that:0.11806898741799098 when:0.10306042197815947 and:0.098198099256166 which:0.08874353598101226 as:0.07208403833378212 to:0.051514647258026514 if:0.03595308831848353 said:0.025122446624163602 where:0.024332714935771226 When:0.01954405536025337 whom:0.018850509083922783 but:0.016100293086517028 will:0.015580371590202646 not:0.012723061507614587 had:0.012690851689033332 If:0.012250191064860468 was:0.012175422434634929 I:0.012038883627882664 shall:0.011501944157456593 :0.23846643629406591 +and:0.08763596714098056 on:0.05082123292937371 wait:0.03202552447849287 to:0.03147058847438596 years:0.030849741456444677 not:0.03058265866560959 of:0.02066230496993823 him:0.01818415981972809 for:0.018110633846892644 it:0.017113662195520345 is:0.0164202811476756 in:0.016400006696704862 at:0.015253682942138223 or:0.015125623109618744 me:0.013952880608296862 do:0.013913631295356138 was:0.012801850156397869 but:0.011948390364508031 over:0.011295055777945729 :0.5344321239239913 +of:0.28767355066866834 to:0.08775711267569858 in:0.08678131196995101 and:0.05160598694501188 on:0.04646139928102899 by:0.04519522654900943 for:0.044547789071328545 with:0.03396756772609607 that:0.033699232901107726 from:0.03075346596941143 at:0.027039283056790858 In:0.021061449543044047 as:0.017514234937992545 all:0.012543839382496166 upon:0.011844431150487573 is:0.00998972746569266 was:0.008814315973987914 into:0.008557199930727406 through:0.007781895704231326 :0.1254109790972375 +the:0.4074626765558322 a:0.23358708774509798 of:0.044321821260925265 this:0.03929345989591475 and:0.03360764338377674 his:0.03047163868379978 The:0.030023933099058916 tho:0.02321619835559167 in:0.017854727933670784 to:0.011341205860761877 an:0.010002596312256015 by:0.008959909611034432 their:0.008849178752340552 its:0.00788634514322457 tbe:0.007874570714526113 more:0.007214792640990385 no:0.006676148071042439 A:0.006569541376077887 some:0.006292293588142307 :0.05749423101593535 +and:0.17929644688404292 of:0.1524509846511172 that:0.09083564554373197 to:0.0720290644345781 in:0.06218174490603613 for:0.04564526003910175 by:0.030860587743383208 with:0.026051698165132732 on:0.019702516044781033 as:0.018206267573179648 but:0.01670453663387644 from:0.015378116508568462 or:0.014284329091791018 which:0.013601229064660035 at:0.012713084218826935 In:0.011604000137842053 nearly:0.008478707399152777 almost:0.007421939366833284 upon:0.007141583471028617 :0.19441225812233573 +the:0.3142022965856351 of:0.0788149128694281 and:0.05906876756654873 a:0.047168343231599554 in:0.036770602959257465 their:0.03397904055197962 The:0.03125637556292167 our:0.02819091238092964 tho:0.028045598075954137 for:0.027688926641460575 his:0.026207289975197397 that:0.02092612424725632 its:0.017215880764798845 this:0.01643244234351537 tbe:0.012783266028365924 all:0.01182686936670806 by:0.011093797572063788 In:0.011023227998163392 some:0.010161894119425596 :0.17614343115879072 +the:0.5092440427323437 a:0.10850010434278638 The:0.0750106346876475 of:0.04680525429562762 tho:0.028180371841222695 to:0.02619203237029489 in:0.019966217145153436 our:0.01917841510412603 his:0.017457694788272478 and:0.014904561904378744 their:0.013093106693616791 for:0.01278344073375578 any:0.01277420303527881 this:0.011560223352157055 tbe:0.00952562874966933 that:0.008743621802187638 no:0.008495676291875759 an:0.007219114879300595 my:0.007191172318785701 :0.042174482931519125 +of:0.516899315161299 in:0.13125265721855084 to:0.07177916856876627 by:0.04129644712349763 for:0.03339808127925018 that:0.02631403685795663 and:0.02085340405194267 In:0.02036013805629581 from:0.02020028354571576 with:0.011896963915412631 at:0.010600422476415213 as:0.008533753182499668 ot:0.008053900162085417 throughout:0.007324027693985797 on:0.006136320941072775 which:0.0061106779207973526 before:0.0055581025073286865 into:0.005305634893660316 when:0.004751044411970078 :0.04237562003149736 +the:0.18343977616566587 to:0.13310293956187302 and:0.0804156379990439 a:0.07786674252967528 of:0.04638985471415851 was:0.042750369110642415 be:0.03882072894609601 is:0.022419243940751923 not:0.021802096801934435 will:0.020481095777296256 been:0.0196029699520223 he:0.018088512516708694 The:0.01581905137168528 I:0.015640300300573427 were:0.015418098177265796 with:0.013669423200043506 his:0.01308958180865304 are:0.01301214138854094 in:0.012764145515445083 :0.19440729022192432 +was:0.10707758757882635 and:0.09140774399942972 day:0.03907010981036181 is:0.03512830786397655 until:0.034956215671529005 died:0.026840357343859443 arrived:0.026054937155227536 be:0.02446914779921875 held:0.02413769188501002 that:0.02243680243742402 were:0.021356468908827454 are:0.019408492990598006 for:0.019374123020050895 as:0.018692514401063617 here:0.01748787891659357 but:0.01630484829923713 time:0.015789921497732194 him:0.015150201016170742 night:0.013455632126421683 :0.41040101727844147 +men:0.00985328101624042 ;:0.00891629738094079 good:0.00864763135468731 him:0.008378155130727604 in:0.007125861339823278 it:0.007124298705654143 man:0.00668019869090612 one:0.0065068279340227695 :0.00592253522055123 :0.005785182064549053 it,:0.005754019873780895 time:0.005607765710183957 work:0.0053927502520957375 life:0.005293483319635303 up:0.00496556195924028 day:0.004892896774850851 and:0.004855748593900535 them:0.004811051018449018 you:0.004699799783225696 :0.877786653876535 +the:0.18437599904918375 of:0.10860966813825493 to:0.07187140427040642 and:0.054702034572562036 a:0.05464238991289562 in:0.041143760117275316 at:0.022658811258815994 for:0.012156070805161595 tho:0.011971162792173294 or:0.011617535660771944 In:0.011290178730885992 his:0.011076792894546165 :0.010954873365720985 by:0.009656913319697025 The:0.00941727721522181 .:0.009300740695668379 an:0.008452481689349766 that:0.008048644367040808 from:0.007920926217970671 :0.3391323349263975 +and:0.13465296748199154 be:0.03772593613963119 or:0.037360757384977336 time:0.032240727625344606 that:0.029343280714941033 is:0.02533053298962614 them:0.02349640950696953 are:0.02315927207940848 it:0.02310675429616064 served:0.021901672773226168 not:0.021745179297091532 now:0.018966087845034695 him:0.01773076505998373 all:0.01762879057581896 was:0.016500980463181793 to:0.016296341182435944 shall,:0.01398930139821244 but:0.013462162450915003 made:0.013188230446562374 :0.46117385028848684 +the:0.42715398354937095 of:0.06639700490704628 The:0.06252927559515371 and:0.05770044635053651 or:0.04255967766546341 a:0.03883724806560023 in:0.028436836173297883 tho:0.023188653740696074 these:0.02249114808054932 with:0.020041411225862185 by:0.017293845835082748 about:0.016312497919660218 for:0.014910729430583696 only:0.014361128726827403 that:0.011588666491798304 his:0.010213253313340625 In:0.00990750980376196 those:0.008944823494815216 to:0.008808263554289436 :0.09732359607626383 +hundred:0.06038135816569538 State:0.022952077111837492 state:0.017007080588363473 city:0.01624848612837368 States:0.015977576311341477 street:0.015398546904089174 dollars:0.013372416622865452 North:0.012762814324563948 Hundred:0.01214394142364122 men:0.011709471021240186 land:0.011612156568416132 towns:0.011108794628336152 due:0.010518788659321333 county:0.009915556833100863 time:0.009817295923492944 up:0.00968287160125261 cities:0.00938004340553341 feet:0.008367831828724775 life:0.008335534283091646 :0.7123073576667186 +of:0.24963298981918547 in:0.13356505018012074 to:0.0841910138994086 on:0.08343932529300599 for:0.04960990376873069 from:0.044738900751030576 and:0.036789882907457945 by:0.036534545144313216 with:0.034570703703664635 at:0.03279610538548758 In:0.029170332773611345 that:0.022479779533671425 all:0.01630812727658877 upon:0.015990255876034518 through:0.015141237502030547 as:0.011953718224461625 over:0.011422311234390106 into:0.011344353785514476 after:0.00923492032308046 :0.07008654261821129 +and:0.16444353364850253 a:0.07275072930474016 the:0.07036856216583887 of:0.06998532486588237 or:0.0594330236644494 to:0.05730166337992522 be:0.0541904371546689 not:0.03428508752654823 are:0.03078918539914516 is:0.02613294587190422 this:0.025560646997840605 was:0.025107839054051766 an:0.022160388202866244 who:0.019699299505895995 their:0.0196883222597877 with:0.0186799194313778 for:0.018225228262469036 in:0.018012830900910458 were:0.01670255084036958 :0.17548248156282578 +the:0.22782339914275815 to:0.11824117019961518 a:0.1172263758145297 and:0.09182730965391608 of:0.03923234506441015 his:0.03182309711595897 The:0.025056934927963306 I:0.01798054532321281 by:0.015421491853201819 their:0.014401980433236105 in:0.013771501009119136 that:0.01276262181715382 tho:0.01054940103292717 or:0.010006676715232051 any:0.00921618896368972 with:0.008980026269086838 our:0.008938090017500348 every:0.006960514152351473 for:0.006914208189136431 :0.21186612230500074 +.:0.0202913723389293 -:0.01967868424097733 and:0.015816459417168405 1:0.015791494334138144 of:0.014943865855363376 etc.:0.012832696245751462 the:0.009906834100685847 ,000:0.008567695493999756 M:0.008386015409472512 one:0.0078455840427284 m:0.007812064865727515 :0.007551280082131132 t:0.007413778831544003 I:0.007035235033961063 it:0.006532875865760457 to:0.006502360007018851 :0.006366724098631821 Co.:0.0062296423964101535 s:0.0061454589833724324 :0.803349878356228 +the:0.12742435044976427 and:0.10375679343506033 an:0.06018173139217769 a:0.05808445828907732 of:0.04257707335387356 was:0.03504873808129511 to:0.030075234683800182 his:0.025818733853960083 in:0.02271408076925556 The:0.0218669433293194 be:0.01864622187392424 is:0.018428516686629867 I:0.018063104775818566 1:0.018036260027392066 one:0.015895406139804277 tho:0.015117074752789278 for:0.014747548601683062 were:0.014254860221919682 her:0.013903955976526525 :0.3243589133059289 +the:0.27072400370820654 an:0.12468876767445668 and:0.08112923321559394 a:0.06683771142861489 of:0.05486158477519978 The:0.048041151269975296 their:0.02878490845878706 its:0.025869766978453897 his:0.021346252345505273 be:0.019802113194519726 tho:0.019423802227645778 to:0.017667753550692077 with:0.015475744784557002 was:0.014221707724261484 very:0.01389539942092662 most:0.013886804905134355 that:0.012858551830170031 as:0.01238346137448495 such:0.01205880327484155 :0.12504247785797307 +the:0.17027190784407714 of:0.10585557835912704 and:0.07355927771906935 to:0.05486905984958157 a:0.04543746377447453 in:0.03128555052933153 be:0.028704485173100775 was:0.02350529800142253 is:0.02215549335554494 for:0.02077556258358175 his:0.01804639098945333 or:0.016335100594594944 their:0.015847999621030492 at:0.015526727957625254 been:0.011815834631173878 are:0.01139058447814694 this:0.010362020528084328 tho:0.01035635773045807 its:0.01000473355720393 :0.30289457272291764 +the:0.16807735899698817 of:0.10541662057906837 and:0.05138367848570702 a:0.04141865232648221 to:0.0385989743764065 in:0.026264864977736738 was:0.019530675665220657 his:0.018900421021236905 be:0.017373825006196972 their:0.015767721170721456 for:0.01557246589796783 with:0.014071419046630446 is:0.012922913111931644 at:0.012690452250034052 are:0.010702713108721902 .:0.010158075558988393 Mr.:0.009672788574483367 tho:0.009612591781990074 were:0.009549306361446321 :0.391314481702041 +it:0.12540837875009556 they:0.11752861206473134 he:0.11296482940760676 who:0.06162083271043763 we:0.048823060418179014 I:0.04575675464868392 It:0.04095392357525528 He:0.036525771053188785 and:0.03493537748933276 you:0.03305383992334849 there:0.029673324745321042 that:0.02888096305016066 she:0.024359377436307283 which:0.021079471446830013 We:0.02052453093907711 They:0.016625281529480153 as:0.011588348711616753 There:0.01093836347962349 ho:0.009444598545451361 :0.16831436007527265 +of:0.14099302775852257 in:0.12945665500027304 at:0.10499182636892174 for:0.08949666925435888 during:0.08267893998853247 to:0.05955747458837054 In:0.046310445714339295 on:0.04620701923095333 and:0.03924863122768072 At:0.024216256282471014 that:0.021058717364206343 within:0.019693509019190494 until:0.019500150890029728 from:0.019372741179938584 by:0.018824136323233955 after:0.017748335374084108 was:0.017079504575661 During:0.016534870500016785 before:0.015096969226122832 :0.0709341201330926 +went:0.04760435176594426 and:0.043316011223115757 up:0.032096906118476105 according:0.031247414442600863 came:0.0256875111950784 back:0.02454268942965149 go:0.023254698722543758 him:0.02234976318774755 down:0.020307692717613707 as:0.020292731099228228 going:0.018764497520273943 returned:0.01762933796176781 feet:0.017584711065549048 sent:0.015929295073977993 come:0.014985236344056225 them:0.014136025999237179 said:0.01403906719839598 street:0.013337633565141229 on:0.013144897553894854 :0.5687495278157056 +the:0.7426637709319989 The:0.04625061205341857 tho:0.036368036641528816 a:0.021749294718651994 in:0.021651227118132728 and:0.02146087118073123 tbe:0.01506042779645531 of:0.012169861978826413 said:0.010076515138473994 any:0.006686973556096921 for:0.00633120234027981 In:0.005480468673179946 large:0.004782105718512084 this:0.004007975545193342 great:0.003570227746262972 all:0.003503601899778593 or:0.003315147688345447 good:0.0032552307805394755 certain:0.0031472417456329467 :0.02746920674796057 +the:0.2014954853133326 of:0.0861414391416471 and:0.07280385406465283 The:0.04559186983907473 Mr.:0.03492086363563214 a:0.02742399264974953 that:0.027378585421016878 to:0.018065273637566843 or:0.015887011513874543 tho:0.01278835454433166 :0.012776359790067669 in:0.012534070531893962 this:0.012110080689405844 his:0.010243683215264043 their:0.008705606823750465 said:0.008477115479989892 .:0.008231419848711858 which:0.007797785800011309 as:0.007794443306140376 :0.36783270475388574 +to:0.13815679729242847 of:0.08611556744637727 this:0.07540750115169752 the:0.06055626702929363 or:0.060063711959613825 same:0.05883023632259209 and:0.04928979131752116 without:0.03780094524522324 that:0.03543376379470167 as:0.02955660780196465 these:0.027567725775532143 no:0.02740281847183297 for:0.026058894241433022 by:0.025567322834238355 their:0.02443904804403499 other:0.024089237712675814 his:0.023459672842560425 such:0.019597168977399517 public:0.0183132562784483 :0.15129366546043096 +the:0.30443264417905863 a:0.16763141849154914 The:0.04149122769851993 two:0.03450165349916512 of:0.03320229708800407 and:0.022670872351943268 gold:0.022598238676723784 tho:0.02136558693890782 this:0.016307208182713074 railroad:0.015423934334614918 county:0.014502228578421988 one:0.013542519598661545 their:0.013459683685327666 said:0.011892575227966308 other:0.011686167030348235 our:0.011554334063268881 no:0.011347853284143544 his:0.01117520796234846 any:0.010377056345062911 :0.2098372927832507 +and:0.07607965573275648 that:0.029003717174563036 was:0.026339483175456965 made:0.021571751969520377 is:0.020537305565204233 as:0.017914075610509415 it:0.01717890841761646 up:0.016709861007033578 but:0.01551316720650669 o'clock:0.014755698743758164 found:0.01405782829206355 them:0.01305334410514391 interest:0.012818695923599957 be:0.011930172246686143 him:0.01191484948114096 out:0.011834932245175319 man:0.01117775421202903 recorded:0.010949129636550672 interested:0.010594433249324011 :0.635065236005361 +be:0.165170629326619 was:0.1252748212184288 been:0.09417821781208256 and:0.08228997665711124 have:0.05710274505526234 is:0.04834197735619439 had:0.045627429047529325 were:0.04056812290518212 has:0.038747692094963815 are:0.03576220010661131 he:0.03110071107090888 being:0.023037745821990366 I:0.014691874613602973 then:0.010999662292727731 who:0.010906477167836055 bo:0.01065716164231868 not:0.009932601350701592 they:0.009887675691957185 now:0.007804540998205236 :0.13691773776976637 +and:0.3056266103684076 is:0.09214222926192549 are:0.058279689023512306 be:0.04835069621129184 was:0.04635263660300966 not:0.03029395727124099 an:0.027888964062565857 the:0.027505754791180323 most:0.026854531070314967 that:0.02657669496376296 with:0.025637784940707935 but:0.024487452443511498 of:0.024047016762524284 Is:0.0237321617460017 for:0.021548834161199498 a:0.020503971420904356 were:0.018094008111287904 to:0.017880325602288246 or:0.015717597373573866 :0.11747908381078873 +time:0.03210494281729264 up:0.019402687804877992 appear:0.016136178531158316 him:0.015341286596891514 good:0.014049652988972683 out:0.013249164427990897 made:0.012557371295188182 right:0.012372683959583766 life:0.012157999889258296 law:0.011825015405607502 in:0.011773995651968376 work:0.011648883182894006 power:0.011347101441067832 it:0.010997263815738751 them:0.010905576318096128 due:0.010844995996983088 principal:0.010253491238376326 man:0.010082671638472844 sale:0.009827569505302038 :0.7421214674942788 +one:0.1028303141280697 part:0.05963429477052991 out:0.04766456937681193 some:0.031418679026461914 members:0.030764490253327767 side:0.029940657362655835 portion:0.022063658796890564 office:0.020457735219956013 member:0.019726706386316174 end:0.019666887540649894 tion:0.018667441728710307 parts:0.016814747270460957 people:0.014112771422418794 all:0.014072739582212475 any:0.013183573287639892 One:0.013083578354183906 that:0.013024335602903442 account:0.012482348155001894 many:0.012077825070275192 :0.48731264666452345 +recorded:0.6306802723459396 corded:0.03562964875396173 and:0.027748628211085098 Monday:0.019246032075778515 held:0.00782592615096506 situated:0.007812945946977259 on:0.0076909146562087 filed:0.007345693181310213 feet:0.006630062344286961 M.,:0.006077241520228367 .,:0.005939041690654523 early:0.005926574251530901 that:0.0056602300125733595 m.,:0.005651173977850404 was:0.0055025409013443865 day:0.005081472816392173 published:0.005060708369482702 as:0.005006020056982476 office:0.0046308098494805055 :0.19385406288696716 +and:0.03868242960999506 as:0.031124813427855922 went:0.02352509775927722 him:0.02196555539050794 them:0.018760608639018784 up:0.017985449426794205 is:0.017894175620344187 go:0.017174904667157563 able:0.016756848979943888 going:0.014481672239490295 it:0.014128375989346808 was:0.013277058274565138 time:0.013249953793837373 not:0.012469887553778763 began:0.012465717758716884 way:0.012105610030480113 back:0.012090864562211581 right:0.011941707822828511 amounted:0.011564315359310868 :0.667354953094539 +of:0.17436100459818166 about:0.10383704707434145 and:0.09039908706357604 the:0.08142918737800699 for:0.07062790321065271 than:0.05730059168513145 or:0.04966252967815085 to:0.0345005624820156 in:0.02970013821211084 by:0.023821313187459746 are:0.02099217949511625 within:0.018959013578755055 from:0.017917699665799217 at:0.017862753806959578 as:0.016845159500420405 over:0.01623037652658051 until:0.015289937637576058 on:0.014881628405955095 is:0.014162415867424243 :0.1302194709457863 +the:0.08741288820481248 and:0.07392080242938477 be:0.0572668144792991 was:0.05686739458441792 of:0.05297029938296901 to:0.040095074017987696 is:0.03448309022071693 been:0.028380973754521515 a:0.02485235362607966 are:0.02226522268065813 were:0.019682022343204007 in:0.019454144698829248 or:0.019273705289081854 as:0.0158232132157123 not:0.012361914460680723 being:0.010097596398749334 for:0.009388164492904385 :0.00930537568905371 their:0.00894740846790883 :0.3961515415630284 +the:0.16889008346404644 and:0.07014648694869381 of:0.05227419029730454 Mr.:0.03800467847958812 The:0.03566701473082823 a:0.02775516448622503 his:0.01991538316304037 I:0.016881286124750244 that:0.01628978960361243 was:0.014329928907225257 he:0.014076357288743553 when:0.011174277060095841 Mrs.:0.010918106026900444 to:0.010737773363421273 in:0.010329160416546019 .:0.010281375136314191 as:0.010207376946321024 tho:0.010106836217815694 be:0.009690860572295942 :0.44132387076623153 +of:0.10036425554061128 and:0.09867255827094257 in:0.04887477001133228 to:0.04309676529803197 fact:0.03312124920228808 said:0.028016465130273754 on:0.025147031828386315 all:0.020897671259005178 is:0.018989333611116044 so:0.018899457882617265 from:0.018463519784011995 for:0.017651195592365977 at:0.016946018612698295 know:0.015554635744109193 believe:0.015397314140675087 say:0.014489633297242495 with:0.013970217188878864 by:0.012605124887586036 In:0.011949884106238937 :0.4258928986115884 +as:0.16768937291019764 be:0.09302480188800333 and:0.07631718653475598 is:0.07231818739412735 are:0.0494202077814373 was:0.04652145610470798 that:0.0251281261348302 been:0.02485881624325027 has:0.024104550566610306 have:0.023416075987704267 herein:0.018105685105430865 not:0.01648731205632152 otherwise:0.015175689878687452 were:0.014402572266218593 Is:0.013545081814498313 had:0.012532068166252797 the:0.012242404447941878 he:0.011448219793127259 aa:0.00970202941823441 :0.27256015550766227 +turned:0.08796479506756279 up:0.04462107114715356 taken:0.035551013709482916 step:0.03453317093069602 down:0.0342351326535192 it:0.03409025288386235 came:0.03345244837083114 him:0.03076625977857783 made:0.030664205485336805 attitude:0.02927781773568767 back:0.025452686145986014 looking:0.02399535158132496 out:0.02394736535737176 and:0.022651763309363495 was:0.021848657025715163 much:0.02034244299508382 leaning:0.018986501613148025 way:0.018817695585386963 come:0.018456712530311774 :0.4093446560935977 +a:0.48410951883927367 the:0.08656200034324399 any:0.0350694068964252 this:0.02943176189751223 and:0.02909315948565705 no:0.0260730320964605 every:0.018561296569041548 that:0.01669188719169032 A:0.015733710698121944 very:0.014764777816954977 good:0.012070388010234632 best:0.009991577275406376 one:0.008562399383987031 of:0.00740839430627606 This:0.006403825681003401 great:0.00607031610510315 other:0.005739689605311357 it:0.005490185531270561 same:0.005078569665846208 :0.17609410260117983 +and:0.09028170801185494 be:0.07822087956359496 was:0.0604322494376946 to:0.03875799823221426 been:0.03781583825357645 is:0.03554424767192397 of:0.034961410324985946 he:0.030725180805022397 were:0.02766787033135484 had:0.02522919821496135 the:0.025062736946777315 have:0.024744631581598685 are:0.02273367617647766 has:0.02153903863415162 which:0.020121609097888116 who:0.018038493709098425 I:0.01645201523010846 so:0.016103804784538968 con-:0.01599519306445885 :0.35857221992771815 +the:0.12980911770972015 a:0.10468216604174106 of:0.10060899677956833 his:0.08625809753413316 and:0.05831693767087426 my:0.05763670608324707 in:0.048822717877436056 this:0.029791495989193305 that:0.024941545246374628 to:0.023825611035329524 her:0.020413408908814375 their:0.019367587306181246 your:0.01828874297539495 In:0.015752218595226988 good:0.014137076881663335 own:0.01065953846371975 The:0.010367473962845737 our:0.008064037194339404 with:0.00770916822412072 :0.20954735552007595 +those:0.20802913226256722 men:0.12534214794393977 and:0.06254309993284199 people:0.04137330757735085 man:0.040682047973860845 Those:0.03203785651479684 all:0.02463094960464709 persons:0.02305378998287307 women:0.020503239198083133 one:0.018857074561595084 others:0.014843870059291229 person:0.011691109016512337 woman:0.01161790301403491 friends:0.008811844764143133 thoso:0.008281981580560234 men,:0.007843941643103472 many:0.006989215451426362 boys:0.006205027055242769 girl:0.006030762768995423 :0.3196316990941342 +provided:0.1210402079960085 paid:0.05079875885758021 and:0.03590438178300015 cared:0.03195634051011471 voted:0.03185370254414734 accounted:0.02972253304876099 called:0.020895568279454015 vote:0.019239045442703728 prayed:0.016579656519788887 time:0.01653164385217386 used:0.015469358882399288 looked:0.014975037767802794 demand:0.014725204210610602 them:0.013496060634188378 was:0.013268737969102103 him:0.012914276609580043 work:0.012480730899481356 pay:0.01240537452980237 it:0.012397453591871466 :0.5023459260714291 +to:0.25465687578003926 a:0.20255774250675204 the:0.05987167429308398 would:0.038700180668176626 will:0.03827146745927596 not:0.03729915345094805 and:0.030007486649521495 this:0.024968219844974448 I:0.01762720778643677 in:0.017236313756551904 or:0.016391838881918197 should:0.015180190511526538 that:0.013441499372686927 must:0.01343453875944226 who:0.012492797306189645 from:0.01243037585419052 of:0.012236412424140933 can:0.011970660309436328 last:0.01191699430250842 :0.15830837008219972 +;:0.01458927046758731 it,:0.007973265891266864 him:0.007834970369143835 one:0.007240974664279108 in:0.006989508095588829 and:0.006417396987522371 ,:0.006059091806132192 it:0.006014614548599763 up:0.005812344146302806 out:0.005395853159197619 them,:0.005290532062834904 him,:0.004938420268273817 city:0.004793760033506698 :0.004646491011450349 man:0.004641061555670736 country:0.0046164671969483135 feet:0.0044416267197611185 time,:0.004376787347733258 time:0.004358244018157902 :0.8825693196500423 +to:0.5776792278959814 will:0.08702690868063757 would:0.04961867681225342 and:0.036001082476072616 may:0.0346902409207103 can:0.02829839445918958 shall:0.026100140659302547 could:0.022179215080743424 not:0.021251817076366173 should:0.014460454165953254 might:0.009369753484935633 cannot:0.008786129590812796 must:0.0081867971595461 re-:0.006263338309591167 ob-:0.005629802928630421 or:0.00546198591817744 who:0.005118559435080872 the:0.004836142597774752 I:0.0045263795405457215 :0.043514952807694865 +of:0.1781482538863392 and:0.0967032453707056 to:0.09143496971157423 at:0.07206577324677978 about:0.04766329812702786 east:0.039131034982870676 lot:0.036586737880215936 range:0.030136665142845152 Township:0.027189413025402846 west:0.02258542048535476 from:0.021841380318526806 No.:0.021654508886789107 on:0.01886277344584095 for:0.01804880690923237 Range:0.01591800074018047 street:0.015798277408771436 degrees:0.015271584249746983 by:0.014403636744128161 north:0.01400569589691723 :0.20155052354075043 +hundred:0.02334136986593815 up:0.005482494641173394 men:0.005366536521246011 Hundred:0.0047587970519216575 John:0.00441808156134956 William:0.004390720675819281 him:0.004016828614280843 ;:0.003997112205305733 due:0.003721199871732 in:0.0036582900032443304 time:0.003637206863828461 James:0.0035594902370151707 out:0.0034878448964120057 .:0.003467980723571515 1:0.0032804584819785204 day:0.0032444781513863933 ,:0.003058139385740603 :0.0030314555521939613 Robert:0.003005471634785646 :0.9060760430610768 +the:0.6702592799696356 The:0.11200571902688397 a:0.057541760388683305 tho:0.02779469050936804 and:0.020149442730335195 an:0.01786809538980481 this:0.011489086867779568 re-:0.010850710571763865 tbe:0.008590657241843432 his:0.007757911479330317 its:0.006907627351756426 their:0.006595349880018999 Tho:0.004151105083931156 of:0.0038387346353700247 our:0.003646886360360806 re­:0.003331420118389922 This:0.003315039971545754 great:0.0027179422946122444 re¬:0.0026080475522971573 :0.017580492576289346 +District:0.17378586126895965 the:0.14709177536132637 State's:0.07103355918527901 of:0.05866879949282043 at:0.030328784069334088 and:0.0264382912583624 an:0.0245388070188556 Mr.:0.019237399326751906 Assistant:0.017830990095455468 The:0.015003794224124897 said:0.011559844091258037 tho:0.010886460382344067 .:0.009971210233721647 his:0.009552633239405972 a:0.009042362704659095 by:0.009005392550240309 City:0.008015560162877843 County:0.0077086941472406445 :0.007627548440821625 :0.331672232746161 +the:0.09276978430139622 and:0.08807944191960962 baking:0.08416632157249791 as:0.07516332621476007 of:0.04670359934464056 that:0.04381639114612968 a:0.04032574248519964 in:0.03101661754048743 or:0.027790723067800307 to:0.026873243420839115 which:0.022053675233900064 is:0.015557846298198915 this:0.014555439490047806 its:0.014342054832137895 their:0.013029014190564733 was:0.011970186453711413 at:0.01148006306735859 other:0.010662486474040797 for:0.010577085624683851 :0.3180669573219954 +of:0.26662236811194107 and:0.08652825166691872 to:0.07351287657540596 that:0.07094595061964198 by:0.04438495905364046 on:0.04126283236109597 in:0.04072991141274284 as:0.034413583253955674 for:0.03418103084007092 from:0.03376969313579835 with:0.03313355845473498 all:0.03150432084426857 at:0.024129408080665323 upon:0.01581644068852645 when:0.013024205773401128 which:0.012455872561591865 In:0.011353725484291338 is:0.010988044578662204 but:0.010298360916119232 :0.10994460558652702 +will:0.23182708005896652 could:0.1782163357672354 would:0.13514607954118743 should:0.12616265782596803 shall:0.08217061144200861 may:0.07040381908423446 can:0.04454091221278924 must:0.03249972873665781 need:0.01576104156172084 did:0.012696211291347766 do:0.01228216163184422 does:0.011908458104831007 might:0.011860043342929148 can-:0.008591098044530905 it:0.0037251442917356913 can¬:0.003598336048022955 if:0.0034147764704130787 is:0.0029392161997355516 and:0.002833314941137123 :0.008422973402704226 +was:0.15525084477727713 been:0.13565822557874363 are:0.07710946175588562 be:0.07690052081009312 were:0.07466186163191613 is:0.06034647394983389 and:0.039294225776218536 those:0.034825084257695225 busily:0.03460548526940306 being:0.02402466485099241 he:0.020205345266491734 persons:0.01879242295835239 men:0.017852774971967807 have:0.017728858598888255 had:0.015549460612026366 actively:0.015381238338616697 has:0.012587094824510175 as:0.011580009582422725 not:0.01093462179627022 :0.14571132439239487 +30:0.06396248878790489 50:0.054208319824110805 5:0.05298418877664906 20:0.0506443357191881 4:0.050410732080551905 6:0.04553730653997891 100:0.04376872736023709 hundred:0.04201851883108123 eight:0.04056954691026173 3:0.038107361754951385 six:0.037379923716283396 10:0.036461858534467026 15:0.034672455129861286 ten:0.029101566049716077 40:0.028002193412445253 12:0.027928140256717738 24:0.02599777316799948 25:0.024314109078368097 twenty:0.023236057222660308 :0.24969439684656625 +be:0.11780008116913351 was:0.10494181861506967 and:0.08955353015295288 been:0.06381091175204245 is:0.060117198585295205 are:0.037249101189997746 were:0.03689148086333705 the:0.03191643253885115 he:0.03170140532980151 had:0.025450444054517043 have:0.025016278419066576 of:0.021702932398338447 to:0.019246371740201933 a:0.019045527751850998 has:0.018898137255671178 I:0.013171060070013741 being:0.012971672736761591 so:0.012717183591094958 not:0.0121399293836347 :0.24465850240236767 +of:0.4170992980277542 to:0.09767784011326837 in:0.06357213234902934 that:0.05649077742099742 by:0.05312930209121341 and:0.04452411866965872 for:0.03408724755288123 from:0.03314040567118093 on:0.024319650978854013 with:0.019405761654768584 In:0.013909483114342133 which:0.013192601072590992 as:0.01282658117939033 at:0.012687667563888267 upon:0.01086220218322333 when:0.009096325587770453 before:0.008566416190151586 over:0.006559915648721632 ot:0.00618085455600834 :0.06167141837430673 +of:0.1462667786212818 the:0.11311178347038299 and:0.06329984292166121 to:0.05226433769762739 in:0.02221452860331263 a:0.01994487186008941 on:0.017961640544266386 The:0.016720237204012434 be:0.01653811657161028 was:0.016314651473296783 Mr.:0.014733175486113213 for:0.01453090968204903 is:0.012674033373706468 or:0.012643998500132186 his:0.012449266497499042 with:0.011977649511894216 :0.011620379426465322 are:0.011197681349073707 which:0.01095696674114518 :0.4015791504643803 +was:0.16644025966212272 be:0.11860236099252378 been:0.102964387743138 is:0.0730748614959052 and:0.04152993192148669 were:0.038086566477515064 it:0.034248620641063404 are:0.03204929185556201 not:0.027913570811077138 came:0.026381413737781603 have:0.025275479098190827 had:0.022715220766879148 has:0.021963594220852263 a:0.020638583464944578 kept:0.016538665239109532 brought:0.015392887800207786 Is:0.015092235839610765 grew:0.014817180489597978 being:0.014389951416193598 :0.1708849363262379 +out:0.04287661786367127 one:0.03640867261351989 all:0.027271887564203918 part:0.026830427102952904 that:0.022344088909413317 use:0.022192185438938316 some:0.021917327669198686 charge:0.019486948940036695 tion:0.01759130237509692 and:0.017318101531657498 favor:0.01679846026050555 end:0.016656603945684075 virtue:0.015186261370597566 result:0.014207386559676603 means:0.013643963458991847 account:0.013572077241066852 case:0.013454736907621239 instead:0.013251484081527366 value:0.013226052278778157 :0.6147654138868612 +the:0.20005500462194406 of:0.08348048285230081 within:0.07551778633374757 and:0.06424450560170536 in:0.03869524416138599 a:0.03544389434422048 for:0.030032746735874395 about:0.02739095815242297 to:0.026886798123247995 or:0.026829812305359895 at:0.021683110983376754 two:0.017899775888517606 on:0.01716023372272367 three:0.016058668609596084 from:0.01485261645913309 all:0.01462580657298944 than:0.01326508097013644 only:0.013188894002494154 tho:0.012782444348298786 :0.24890613521052446 +the:0.11919516938815296 of:0.07230453158552728 and:0.05781056740443249 a:0.043018564803886335 to:0.031305092790907506 in:0.020848713353460488 at:0.014270110001066288 .:0.012526810245749479 :0.012413283442322082 for:0.011719122709941797 by:0.010808400946589808 or:0.010404172990115616 The:0.01003576004804544 with:0.009811868184449042 tho:0.009295902015355835 was:0.008924239095331684 that:0.008672304223433876 is:0.0085591147338948 be:0.008335143826716943 :0.5187411282106204 +the:0.16519362153530517 in:0.13078813000802617 a:0.0795336520922027 of:0.0658674694348566 his:0.04647012385447592 for:0.0449684144044427 this:0.04288401457507142 their:0.04014114565367637 to:0.036679661625373984 great:0.03495020227482975 any:0.03255708675568111 good:0.030478485242879126 no:0.02305597989499282 In:0.019390742307764774 its:0.018693451013138542 public:0.0178135983201779 and:0.01714614117921328 every:0.01523369726418865 our:0.01472143301597413 :0.1224329495477289 +on:0.2882398451377271 of:0.2555203183663447 to:0.09312056106228696 in:0.08577650939675856 from:0.05580088339374018 at:0.03554871030363254 upon:0.021754964344384262 for:0.018896732752120567 In:0.015784525119138613 that:0.014730042618897323 by:0.014411648360793543 and:0.014099306413888409 with:0.011177774754106189 into:0.007667301532768721 along:0.006748141169918423 On:0.005930829416294679 as:0.004722491878008466 through:0.004542836236043823 over:0.004241241583778354 :0.0402853361593686 +one:0.1028303141280697 part:0.05963429477052991 out:0.04766456937681193 some:0.031418679026461914 members:0.030764490253327767 side:0.029940657362655835 portion:0.022063658796890564 office:0.020457735219956013 member:0.019726706386316174 end:0.019666887540649894 tion:0.018667441728710307 parts:0.016814747270460957 people:0.014112771422418794 all:0.014072739582212475 any:0.013183573287639892 One:0.013083578354183906 that:0.013024335602903442 account:0.012482348155001894 many:0.012077825070275192 :0.48731264666452345 +and:0.09028170801185494 be:0.07822087956359496 was:0.0604322494376946 to:0.03875799823221426 been:0.03781583825357645 is:0.03554424767192397 of:0.034961410324985946 he:0.030725180805022397 were:0.02766787033135484 had:0.02522919821496135 the:0.025062736946777315 have:0.024744631581598685 are:0.02273367617647766 has:0.02153903863415162 which:0.020121609097888116 who:0.018038493709098425 I:0.01645201523010846 so:0.016103804784538968 con-:0.01599519306445885 :0.35857221992771815 +and:0.07705437548817387 depend:0.031536193375950296 based:0.03144111872793531 placed:0.030957065963502946 depends:0.03075765919212402 called:0.030155936973754766 down:0.02681736716319054 made:0.026577710722022318 effect:0.023344764020024934 that:0.02149799173318628 look:0.02036076372291408 due:0.02026744173692952 call:0.019789339473829694 levied:0.01970103437603757 imposed:0.018928989316509288 put:0.01802119246063272 dependent:0.01689647076264392 out:0.015342186135269933 entered:0.01437601109950992 :0.505176387555858 +and:0.27159299291895406 as:0.04434456786443743 was:0.03814173298198979 that:0.037568757112673275 are:0.036527437426779864 is:0.035166608144182356 of:0.02414030665263847 but:0.02350481660359971 the:0.02301426309562465 to:0.0215696788702018 for:0.019482153366307382 or:0.01890491128374208 were:0.01863266561877107 not:0.018588495179768443 much:0.01801414279771033 which:0.015765331003007563 been:0.01493235164586874 even:0.014405974637856077 be:0.01303471900342858 :0.29166809379245834 +the:0.1502022428085192 to:0.10437020157958087 and:0.09120374800332942 of:0.06090750469610512 be:0.051829162597366404 a:0.04040268491579906 not:0.0389357441832952 or:0.03089271407505353 was:0.03077603822383447 will:0.028530252304946442 are:0.02502067817991354 is:0.02420748333213969 The:0.020168233398497014 were:0.01901017885502523 been:0.01822800300789209 by:0.018011302633717922 his:0.017457352116161954 has:0.016215327782775884 their:0.015195362315427315 :0.19743578499061964 +the:0.42209657301574194 this:0.08498810255204693 that:0.06300161760220527 and:0.04302806876208978 to:0.03878206643515785 tho:0.0240039726705917 an:0.019746927787751688 a:0.019226724126856175 The:0.018581939063821343 one:0.015931535225110947 said:0.014873506587124058 any:0.011376815535932009 tbe:0.01064453767537029 in:0.010108415392735855 each:0.009363505055274765 last:0.0092302927855217 same:0.009160872398053327 south:0.008677940367558777 north:0.008675759772431775 :0.15750082718862382 +he:0.17256741143416857 and:0.09950531614454401 was:0.0878303273106152 be:0.05535533811179811 He:0.04840499129466539 is:0.03985336141103077 I:0.03289921605588854 she:0.031193720184264653 been:0.030309836160436615 had:0.028964782368169267 has:0.026765461224886176 who:0.020735673912246445 have:0.02059295619604596 they:0.015330528069496687 were:0.015192087541162518 then:0.014837385853327082 which:0.014059705886160546 one:0.011101463250970904 it:0.011049030651087569 :0.22245140693903498 +to:0.6624751467144602 will:0.042964814637760036 and:0.027873028848305937 shall:0.026386872087006175 not:0.021588124350628856 can:0.01999153637246511 should:0.018108889572730977 could:0.01765935614841767 they:0.017654166583290914 we:0.017205269199826484 I:0.01638980981074201 cannot:0.015961025843602185 who:0.01471378825355475 or:0.014139791098701386 may:0.012455149977553592 you:0.009705220764969193 would:0.008818780647692665 the:0.008490159909249352 must:0.007659411880833116 :0.01875965729820948 +it:0.12161684482073773 It:0.09199317996777528 he:0.0897062039053806 which:0.07428367889446695 I:0.07275289191783986 and:0.060494937194931736 He:0.04421999153450155 that:0.039857603067099276 she:0.03447903740177439 there:0.029482777990801286 who:0.026666135978507314 She:0.014738967028872143 what:0.011674986914629214 1:0.011328345395798836 There:0.01098893537626162 as:0.010884525840311285 This:0.009781386562819844 one:0.008884334788069482 man:0.006690379440515397 :0.2284748559789062 +of:0.26932787939825886 that:0.11547966691857996 in:0.10897403966328512 to:0.05798328111739909 and:0.05747312547395093 by:0.036006650721592606 In:0.03554903459496295 on:0.031635407917038984 at:0.029420238334846104 from:0.028457728993721062 but:0.022351995801260648 which:0.02218073210510045 for:0.018562601898536944 when:0.01574469835338836 with:0.01543459163163299 as:0.014964355783032002 before:0.01272927765611442 When:0.01087603048397774 If:0.008641170809810986 :0.0872074923435098 +and:0.06564001495426619 recorded:0.029411864615612508 up:0.027628176869244205 was:0.026272293455839292 that:0.02537596081849904 is:0.022431023177345272 out:0.019299278942157497 as:0.017868689101788723 made:0.01378321067090413 are:0.013003442296410083 down:0.012645024830454803 interest:0.012055925413500238 been:0.011857600448008541 them:0.01131398688083129 time:0.01116292036442644 but:0.01114341296188583 placed:0.010583511215764901 were:0.010481085458743449 be:0.010405592286658612 :0.636636985237659 +the:0.38387389385616966 a:0.10662952930673936 his:0.05663951854200605 The:0.03951545425801651 great:0.030981144990289054 any:0.02879185985848917 that:0.02755568615699665 of:0.025087189767728814 tho:0.02355325255444004 whole:0.02203117129014276 and:0.021529739694070796 dead:0.02060927934648193 this:0.018962954815948264 every-:0.016583210423767026 one:0.016379571268891755 my:0.015044818082810715 their:0.013488489513582504 every:0.012406348702995609 her:0.012198023836114012 :0.10713886373431934 +of:0.09129790931378902 the:0.07369883040827747 and:0.047842263382354346 in:0.04189055351593407 to:0.04045875475680249 a:0.03542341257202578 be:0.02020462051672066 for:0.01979292654746225 was:0.01760256398103379 at:0.017380150555488715 is:0.014984483003968216 with:0.014047653760730413 by:0.01374644383819499 :0.012670486581795598 In:0.01200961464556976 or:0.011563835749786333 from:0.011391516893522809 are:0.011273104484969465 that:0.010755276030689069 :0.4809655994608848 +of:0.10933090874330417 and:0.07628148933560011 in:0.06841010374950167 the:0.053991137009504836 to:0.03692229143104559 for:0.02668209641483015 a:0.02242760297470275 that:0.018974118462527667 be:0.018575341531595107 In:0.01612427604041045 with:0.014345040089512024 which:0.013842911805925846 was:0.012844700515167085 as:0.011554648331656791 or:0.011460886639101426 is:0.009928285984248763 by:0.009748287062104719 :0.009695184482696502 more:0.009500013550612824 :0.4483606758459515 +of:0.11527662731502354 and:0.08642961411257413 Mrs.:0.07481768823397994 by:0.07220949145261489 to:0.04754290134678127 Mr.:0.03673533699746829 said:0.02992721193790738 the:0.019926533859935786 .:0.016161886048455792 at:0.015295947188436926 John:0.013773535670587476 Mrs:0.013590861287542489 Sir:0.012296540909848212 girl.:0.011862069981256735 boy.:0.011071569111108282 Rev.:0.010324568005435903 Dr.:0.010171862421867326 :0.009937555554248714 that:0.009417796328422403 :0.3822304022365045 +the:0.108209712999719 and:0.08930691014018635 of:0.08784494059057514 a:0.0402267456671343 to:0.027169179850814046 in:0.02489978681045947 was:0.02381627638810896 that:0.018654146323514875 by:0.017554947674201207 is:0.01727027698808855 be:0.017063279385715176 for:0.016998149830016126 his:0.013009457800741399 The:0.01217871161614816 with:0.011049023102479905 as:0.01090734021097581 from:0.01004272434542858 .:0.009467739169310754 been:0.0092486222303718 :0.4340820288760104 +up:0.02607219650472982 him:0.01971837111015555 out:0.017312744116818053 in:0.015867050314935894 men:0.015621832990175463 it,:0.015201862006044594 man:0.015087440575368692 him,:0.014147780475023936 it:0.013926872240640369 come:0.013735204849323616 time:0.011813235886767047 them:0.011813113274131109 work:0.010328166399216064 right:0.01011085139624679 home:0.00967706151392485 me:0.008747976185778642 here:0.008396383316924638 can:0.008293162777602097 do:0.007763755474687947 :0.7453649385915048 +that:0.06858660046514592 and:0.039937963627479464 it.:0.03203373609840499 :0.03032565851292623 them.:0.02641804678013247 him.:0.013204337371923986 but:0.011950867893826872 time.:0.010715191153436271 as:0.010214342367838343 us.:0.009325434124267444 ?:0.007518673210848792 life.:0.007474911176315992 country.:0.0073147531951868764 people.:0.00721017260047346 years.:0.006922841083364323 But:0.006820818620525815 day.:0.00665625661507642 year.:0.006602697345520852 me.:0.006110111546679408 :0.6836565862106261 +away:0.05746860598250849 and:0.04985561698690421 taken:0.03950823995165392 miles:0.0355312759828073 feet:0.031845900191456514 come:0.022313957473317422 them:0.021637161013586904 out:0.020621546731341717 came:0.02000539576637417 up:0.019820502682224503 him:0.019195504147748815 received:0.019046714556510396 far:0.018152378296247898 removed:0.017489734983720518 down:0.017467467859455896 it:0.015386533775439217 years:0.01424855034507225 annum:0.014237643714946796 free:0.014107989586278378 :0.5310592799724048 +a:0.3793580215778183 the:0.11428266715492993 any:0.08736558215998742 to:0.05395946839829025 no:0.04434002563519232 this:0.03828352044389957 either:0.02904372840682457 every:0.024482846618331285 one:0.01844743085133813 or:0.01660328683843374 good:0.016512754889725915 and:0.012221767878062678 such:0.011349548706724189 his:0.011114929888606982 their:0.010116372081706768 that:0.01010190819903916 laxative:0.008579345720609834 of:0.008305087331244491 same:0.007819524497390973 :0.09671218272184352 +be:0.15826678763614746 and:0.08572532025504535 was:0.0763579632947484 have:0.07557598546355208 he:0.0629443773069248 been:0.05787952751307452 has:0.04493806551275149 had:0.03605604665096085 is:0.03555617579673568 I:0.03480559953754099 were:0.030208982346093958 are:0.022589077068605336 ever:0.021318309302043075 they:0.01890812031100817 not:0.017358625170882734 bo:0.016098741602290106 being:0.013548084674792564 He:0.013372757181940888 who:0.011167137936619586 :0.16632431543824194 +the:0.11821749065332066 to:0.08524506521375715 and:0.0837059151161425 a:0.06294927071196896 of:0.0536648745789638 in:0.02788968035012167 more:0.016994427182134734 be-:0.015903937220747552 was:0.015695024797271917 for:0.01426687121340244 or:0.013123254640538587 that:0.013004970654134206 with:0.012423380427074247 be:0.012060070281629972 by:0.012033396338097788 is:0.012025001512717756 on:0.011961928222400183 :0.011529597639675544 will:0.010493187626878555 :0.3958126556190218 +the:0.11919516938815296 of:0.07230453158552728 and:0.05781056740443249 a:0.043018564803886335 to:0.031305092790907506 in:0.020848713353460488 at:0.014270110001066288 .:0.012526810245749479 :0.012413283442322082 for:0.011719122709941797 by:0.010808400946589808 or:0.010404172990115616 The:0.01003576004804544 with:0.009811868184449042 tho:0.009295902015355835 was:0.008924239095331684 that:0.008672304223433876 is:0.0085591147338948 be:0.008335143826716943 :0.5187411282106204 +of:0.2023435297294271 to:0.12664457256578998 in:0.10200393706464392 and:0.07634967779493905 that:0.06493107819815191 for:0.058131931228500286 by:0.04236814711213397 with:0.038058955986710545 at:0.03515701451474402 from:0.03477429296863734 In:0.023481278032312734 all:0.02305499423620075 as:0.01632127329929764 when:0.012929456676162635 on:0.011513244330447025 under:0.010955208147762118 which:0.010199852541374848 into:0.009847182756545005 upon:0.009644800951419489 :0.09028957186479965 +the:0.17752539118980493 to:0.11753822528145703 a:0.10491548311620352 and:0.09126413347898843 this:0.031067447727951523 will:0.027277772991633108 that:0.01564145407917693 The:0.015405491818963965 of:0.013790119045318395 or:0.012805420528037837 an:0.012452823973253391 tho:0.01098891275649861 his:0.010202484755249942 would:0.00874282113429018 her:0.00782530340836762 This:0.007290546213773857 A:0.006912573675214003 no:0.006567989355842903 shall:0.006258132533195931 :0.3145274729367779 +and:0.1339272685469214 of:0.12964709370699157 the:0.11216180073868155 to:0.06759170966322699 or:0.06544793646980188 for:0.05915466400380871 at:0.057016894988412316 that:0.03961011348467217 with:0.026624296836323745 a:0.02510227035963056 from:0.019963391937442006 in:0.019295244475753988 section:0.017194969939876115 is:0.016403277637553785 No:0.015553835428474664 only:0.015129843927485499 about:0.014839159668762307 than:0.014260163638385394 hundred:0.013213508058997438 :0.13686255648879786 +it:0.013518193821710519 ;:0.011667535557364023 one:0.01011584826878242 and:0.00982560722223005 dollars:0.009728534974055656 more:0.009630404863870805 is:0.00940876508458783 I:0.008610270982783986 man:0.0074460972637757855 nothing:0.006146585106878297 made:0.0059800676982773 him:0.005979859435260138 there:0.0058062348372296515 :0.005502768803795721 it,:0.0052580723114703356 It:0.0050162469958637355 as:0.004903549315566142 offense,:0.004876052320881127 1:0.004846081846252564 :0.854733223289364 +and:0.14507320772351315 fact:0.08580533594336559 said:0.056464728489513914 so:0.05141663139801109 believe:0.03728868944610554 is:0.032697255055655516 say:0.030323479159427524 know:0.029749358812227955 found:0.025535190692382553 stated:0.021273605064562356 show:0.019511948220510757 but:0.018999393120383457 says:0.018814328565908398 think:0.016893655385130203 was:0.01658797795582863 all:0.01652317309060226 see:0.015409038245983688 opinion:0.015263158537430448 order:0.014744011681695817 :0.33062583341176116 +to:0.5258663728109638 will:0.0452496050762478 can:0.04379272268298723 they:0.030005678085958654 could:0.02961106547287679 and:0.023938134233157417 I:0.02124819913685982 would:0.02119609259375806 we:0.015425883646028659 not:0.013403265375232534 may:0.01226905497214398 you:0.011721385356921118 who:0.008491031880182664 should:0.007792555434949365 must:0.007133166242544447 1:0.0058030782330653246 all:0.005556292624658862 that:0.005008866023129098 a:0.004269342606330753 :0.16121820751200358 +of:0.16311568465577858 in:0.11411627955618477 to:0.10268690441176573 and:0.09807085265230595 for:0.08605497201751121 with:0.07303815788680262 that:0.03754186838728536 but:0.02667023907581218 by:0.026605892262348354 In:0.02284458003997592 as:0.020945186827245662 from:0.019752162213119463 on:0.013924538436749477 upon:0.012906429333451838 after:0.012314020815285204 found:0.012119296280661487 take:0.01017989982416875 made:0.0095052805023178 at:0.00935614331338451 :0.12725161150784517 +and:0.15887636833662153 most:0.1083066451713376 the:0.06186850197416766 very:0.048737064043205255 as:0.047797365111356314 of:0.042240951453042186 or:0.0399454237650311 more:0.03957776946464337 is:0.028997163004446786 a:0.02411166191850873 be:0.021883732049241246 are:0.021613712252704587 all:0.018979590813431875 by:0.018712271070128725 in:0.0165379418407219 great:0.015574640358957418 many:0.015378075197052643 was:0.01510394984011983 with:0.012496830541313958 :0.24226034179396727 +of:0.2815213335143326 to:0.14455685077288102 on:0.10594591055247858 in:0.08633410788650812 from:0.05215909804108799 and:0.04405487093083377 at:0.03648653706932453 for:0.028588391405237903 that:0.024581851535600673 by:0.021581839705407984 In:0.019851798163140894 upon:0.015076822264969108 along:0.014050098273795983 over:0.013329113170648351 with:0.012399475727546029 through:0.011117897048033388 which:0.010779798893580229 between:0.010751536559497774 as:0.01022991258365861 :0.05560275590143644 +made:0.09475331170812368 take:0.07931282937279298 make:0.06942786842830553 took:0.06018190631599854 put:0.05556951526982638 give:0.05144893484487832 taken:0.05043572513608857 picked:0.04082586205516022 keep:0.04040224549617611 build:0.038565530540205444 and:0.0327722779690384 gave:0.029223356086452996 break:0.027993759507894424 set:0.023502458708101002 pick:0.023068893141774297 given:0.021143229643167862 it:0.02045051721381984 taking:0.01990908814043749 came:0.019236421856636557 :0.20077626856512135 +was:0.23455308059957497 be:0.2116375107049415 were:0.11531038058851972 been:0.08308953474404421 are:0.08050194290482653 is:0.07655499067299691 being:0.04072576085539985 and:0.02746211395155659 have:0.010348058441874608 so:0.009894986514243316 greatly:0.009704192445656552 had:0.009693255352504062 very:0.00964294085160849 Is:0.009302326274630814 bo:0.009189468978271633 not:0.009070129657186704 agreeably:0.00848580051049391 quite:0.0066141538385485294 became:0.006042719764286905 :0.03117665234883422 +three:0.17658971765539264 two:0.16192550701418726 four:0.14801552564516 five:0.07751535673264641 few:0.06386758761847425 a:0.042488208534515175 several:0.039972604858716745 ten:0.035075754580929375 the:0.033070675737442545 many:0.032294277390272894 nine:0.02136994429856679 and:0.02130551534850115 eight:0.020430231418664898 six:0.019166910983957484 one:0.015570955185841766 per:0.011080329960214888 seven:0.010983108696999247 all:0.01013414007343439 Two:0.009171901825500262 :0.048971746440581866 +is:0.21497033593154038 was:0.17751918205436829 are:0.11377224864940329 has:0.06892203433510932 had:0.06768975477620734 have:0.06521678132367241 were:0.0472533312092068 and:0.03184953739877144 Is:0.025852969817503922 do:0.01972199974925056 if:0.015554499961808075 it:0.01458239723917514 but:0.013259717032658684 am:0.012574575907472428 did:0.010907902160806714 does:0.010473820362940544 be:0.00950177524833054 will:0.009444291349901657 he:0.005573157521175195 :0.0643596879706973 +and:0.2854471318652375 And:0.1860848280911082 not:0.07374965248286461 as:0.05112183495684417 is:0.02453943450211109 that:0.01993383071813998 but:0.01957093176372352 or:0.0168890284919421 are:0.01272160158792456 it:0.01239049235088779 do:0.012174930362573062 ;:0.010827115215569108 have:0.009863109644809973 nor:0.009578630804883836 was:0.008979110543960379 be:0.008626243115820945 which:0.008406821282944019 to:0.007719364340239811 why:0.006978932361360539 :0.21339697551705475 +the:0.11922946916929508 of:0.06734449006067411 and:0.061152649486193714 to:0.03428830138877565 that:0.023243192029392488 Mr.:0.02279526539267234 The:0.022752331964448546 in:0.020144542248834628 he:0.018315133360923504 Mrs.:0.017725347271503416 his:0.01639754682222208 I:0.01598860689005475 which:0.014904831976683876 a:0.014243072946801142 :0.014235252815946372 when:0.010712748056402845 be-:0.01058326495673647 .:0.010376088463945585 was:0.010045299490449222 :0.4745225652080442 +is:0.16702806104084877 has:0.13267810238606734 had:0.11465088186067147 was:0.09569707451261458 have:0.09233982571237391 are:0.0742064319449362 and:0.040025928665625 Is:0.02823427834669462 were:0.025569179176318093 if:0.02378339696116612 could:0.021495894487284485 will:0.017187017027681776 it:0.016372598978374158 would:0.015349781805377478 but:0.013952935717483149 that:0.013351232071639607 does:0.011625194004606666 am:0.011179235555350468 do:0.010287875717871769 :0.07398507402701432 +of:0.09129790931378902 the:0.07369883040827747 and:0.047842263382354346 in:0.04189055351593407 to:0.04045875475680249 a:0.03542341257202578 be:0.02020462051672066 for:0.01979292654746225 was:0.01760256398103379 at:0.017380150555488715 is:0.014984483003968216 with:0.014047653760730413 by:0.01374644383819499 :0.012670486581795598 In:0.01200961464556976 or:0.011563835749786333 from:0.011391516893522809 are:0.011273104484969465 that:0.010755276030689069 :0.4809655994608848 +would:0.13516776815931453 to:0.10175318883572715 who:0.0734216616549984 they:0.06090829687960963 I:0.054414498797697934 which:0.046947310165833735 must:0.0405200574155989 might:0.036445589637541506 shall:0.03272411333844378 and:0.03228038765818951 should:0.03179090655993478 that:0.029508760759060126 not:0.02876680420731567 we:0.028503874055856488 may:0.028150033623979002 could:0.022163961267380006 will:0.019029697840863502 there:0.014322928357478427 They:0.011858887319353098 :0.17032127346582382 +and:0.09604334981207682 of:0.07301114630343641 the:0.0666389505193539 to:0.0563505731469426 a:0.04014011662670427 in:0.026729585656007346 be:0.026426514138342863 is:0.02545237588270473 was:0.02241672074936954 that:0.022182265911681348 or:0.0200975839943587 which:0.016751068770866403 for:0.016235282516175755 it:0.01454294220765402 be-:0.01284003286557967 with:0.012693867448014012 are:0.012092650486001959 con-:0.01193207917531837 in-:0.011215843512961992 :0.4152070502764493 +of:0.30099253831740364 to:0.10028621322380979 in:0.08837366849622778 for:0.05880918225856663 with:0.05556081122598806 by:0.05010045792250281 and:0.05006547013198059 that:0.04246490278272485 on:0.035826291988453836 from:0.024469818275060777 In:0.023649385349586882 upon:0.022593474256525685 is:0.01611986323399131 as:0.015008347381816218 at:0.010936193146848398 all:0.010895221547824826 into:0.010676766472194054 or:0.00998082627659114 but:0.007594405525574551 :0.06459616218632815 +the:0.19045016745146298 of:0.12344037597096921 and:0.07870799065850427 to:0.04280632593824212 a:0.03799946728924427 in:0.028502408991399473 or:0.018028345145974733 for:0.016913376774663515 The:0.01629393192252944 was:0.015994726752969955 be:0.015246039986879604 tho:0.013716732784689786 is:0.013668001151061914 that:0.01248525591030824 by:0.012293899438121918 his:0.012292896878622677 an:0.0120003384748629 their:0.010488186808302867 from:0.009914792931271047 :0.3177567387399191 +the:0.11919516938815296 of:0.07230453158552728 and:0.05781056740443249 a:0.043018564803886335 to:0.031305092790907506 in:0.020848713353460488 at:0.014270110001066288 .:0.012526810245749479 :0.012413283442322082 for:0.011719122709941797 by:0.010808400946589808 or:0.010404172990115616 The:0.01003576004804544 with:0.009811868184449042 tho:0.009295902015355835 was:0.008924239095331684 that:0.008672304223433876 is:0.0085591147338948 be:0.008335143826716943 :0.5187411282106204 +that:0.2256852183978063 and:0.10959362030722274 which:0.06300337427546555 when:0.04968670693040679 to:0.041710212327366755 will:0.03932422042222188 if:0.03676049615258114 as:0.035705229280151136 but:0.032592267827325355 said:0.02178661714872273 where:0.020365191000123045 would:0.01599938359891214 should:0.01585567886696357 what:0.015850170603913995 because:0.013330777292298566 whom:0.012287159651858537 If:0.011472159162948376 for:0.010871694440974508 When:0.010587128258679794 :0.2165326940540571 +and:0.14690730320657555 so:0.05435575319182233 say:0.04238766789833749 fact:0.03908136999212515 know:0.0351979392553035 said:0.03366214485096073 is:0.030279805180628463 all:0.0263252408945833 show:0.022996744051861428 but:0.02215349007530338 believe:0.02189392375418679 notified:0.019111503361398424 me:0.01797843286327251 of:0.017862325786196412 think:0.017309691876854858 ;:0.016492911436199492 see:0.015067771854113643 as:0.014994591239418036 says:0.01306736208657778 :0.39187402714428077 +to:0.20488556791314433 of:0.11523562125982158 and:0.052432071487131346 in:0.030433737520745904 by:0.021439717338530184 the:0.01948443641998534 for:0.0184623839663489 a:0.015064472524629712 from:0.013173230055977047 with:0.013042509511643256 .:0.012673759490175598 or:0.01154395109745116 at:0.009636223557950182 :0.008559907146211307 In:0.007626224133497851 No.:0.007403975623749573 that:0.0068513524452333005 lot:0.006526618145684233 it:0.006153690809320392 :0.41837054955276876 +and:0.16624060392846174 was:0.11359117374612873 be:0.07003203532135346 were:0.06864287009978047 are:0.06473726617404589 is:0.0609905790464044 been:0.04138018899311848 he:0.02870170409657423 has:0.027199160439908155 so:0.02604919419912175 I:0.021456675798090366 had:0.020475295391889473 not:0.02045246963729565 being:0.02005350029945649 which:0.020023425248769385 have:0.01876181349607977 who:0.01753730178281606 then:0.015658884505738352 just:0.01537376901548251 :0.16164208877948463 +:0.10132530864253071 .:0.01586153736849991 it.:0.012994963694550781 them.:0.009972326155771085 day.:0.006466314186158732 him.:0.005963072708890589 time.:0.005952754819220498 of:0.005834450921883061 country.:0.005314225508045209 year.:0.0049247550547799 city.:0.004072303040063511 years.:0.003997040955926161 work.:0.003880377182773483 people.:0.0033836246305601453 States.:0.0031455025043576447 place.:0.0030640999552846737 men.:0.0029656503323313246 way.:0.002952433427976742 out.:0.002933009065662241 :0.7939962498447336 +of:0.17064593327787245 and:0.10805819258822726 to:0.09445377064136239 that:0.0666788835213754 in:0.06402460440804648 for:0.049091288519475404 with:0.047721593142044126 all:0.044066173725300486 is:0.03781963625233208 by:0.03562325163489986 be:0.027470371893396045 as:0.021318157382330755 was:0.019881384738562772 from:0.019875373812763993 on:0.01897719258341146 In:0.01702278208209279 but:0.015369128780390385 when:0.01535266504316799 if:0.013087821061893504 :0.1124617949110544 +the:0.3395309697284479 and:0.13272756146937076 a:0.055783567177868275 in:0.036671144716881585 The:0.0347881564284085 is:0.029517896717910334 was:0.02934516947911284 that:0.02741668490280657 of:0.02388044497549941 by:0.02308050783959251 tho:0.02252959213830035 as:0.02064830285610014 or:0.01746781326282693 are:0.015382108299251317 were:0.01297644307027557 In:0.010707726409090552 tbe:0.009313666687412604 with:0.009234029947501252 than:0.0091709828336882 :0.1388272310596544 +the:0.2517436678774901 of:0.21774473420358223 and:0.04058929651143652 or:0.036113443715186065 his:0.035379827777469244 their:0.03166109694982428 by:0.03162376936460914 in:0.02374916941846786 no:0.0234361455015308 tho:0.021230448306649736 this:0.02020561842387016 with:0.02008909447531621 The:0.019892539400322522 for:0.01988978406979376 a:0.019275955616568287 its:0.0179513702640868 public:0.016915444563218633 to:0.01655846087843443 is:0.015742924882126495 :0.1192072078000168 +he:0.1408877556671318 and:0.12566027220852755 be:0.06192133305902928 it:0.03752104566105007 was:0.03312355428875914 It:0.02803572069137274 been:0.026011736119518306 she:0.025647260518360526 He:0.02554502943164188 who:0.025404619594263954 :0.02164168497436683 were:0.01806682449544524 they:0.017704407468389187 as:0.016555335744317723 have:0.014866622788987292 I:0.013971295605191388 has:0.013859112743922694 are:0.013360145920185702 had:0.013013678985805409 :0.3262025640337333 +him,:0.01399329676426576 him:0.013838726765903326 time:0.012488217224513255 man:0.01135224834449577 it,:0.011020491862332964 up:0.00977083469440904 them,:0.008758857206463957 years:0.008376048712959513 men:0.00818385545848304 it:0.0078029695745596905 them:0.007779334062644008 ;:0.007775247540789471 house:0.007121399270089462 in:0.006964032156885004 years,:0.006822676518912007 Mr.:0.0065415428244168655 time,:0.0064832486943213335 home:0.006203749434968948 out:0.005884527672878649 :0.831838695215708 +;:0.01458927046758731 it,:0.007973265891266864 him:0.007834970369143835 one:0.007240974664279108 in:0.006989508095588829 and:0.006417396987522371 ,:0.006059091806132192 it:0.006014614548599763 up:0.005812344146302806 out:0.005395853159197619 them,:0.005290532062834904 him,:0.004938420268273817 city:0.004793760033506698 :0.004646491011450349 man:0.004641061555670736 country:0.0046164671969483135 feet:0.0044416267197611185 time,:0.004376787347733258 time:0.004358244018157902 :0.8825693196500423 +has:0.24572843452834772 had:0.18130013535741335 have:0.13516440014289996 was:0.06119970411078108 he:0.037027574657489605 I:0.03199716665396727 and:0.02835521228772799 is:0.027211850457239475 they:0.019795769027947906 than:0.018527278737961644 it:0.01796028499894588 will:0.015967652218498475 were:0.015205691803284219 you:0.014334262777260577 been:0.013284193481314517 be:0.012818431403173163 which:0.012435289847132684 who:0.011849821826380013 are:0.011827277288735154 :0.0870095683934993 +and:0.06567582838972946 is:0.06194124985239307 him:0.04707804766547027 was:0.04429636684193705 able:0.036239117506190556 ought:0.035313842698267144 enough:0.03485912234037327 not:0.03018064881663459 me:0.029982793721707927 as:0.029402250002992333 began:0.029118574855782894 wish:0.027996952017431638 had:0.02754069485034489 want:0.02623197788638313 right:0.025170097266042798 have:0.024971751383664215 them:0.023258592509660773 desire:0.023154274562641342 order:0.023021680978955943 :0.35356613585339675 +the:0.14688550666035172 of:0.089365093350741 in:0.07115038422064385 and:0.05494902531899314 that:0.035473490140925525 such:0.026405672476454155 to:0.02633440270560831 or:0.023725682396981227 which:0.023241958905384788 The:0.020832937300988244 a:0.018412753597480826 In:0.017395311545173004 said:0.01712240566117827 any:0.015575209457159596 con-:0.01546813841730081 as:0.014694963473556463 Mr.:0.014152332191883816 :0.012997582081916485 their:0.012508613507629059 :0.3423085365896497 +it:0.17415695299507217 It:0.11891155727867181 which:0.07365354838481436 he:0.05278621298034836 and:0.052455163462033355 that:0.04779863030441497 there:0.03836913956773712 who:0.027935691250516252 what:0.022806886251769864 He:0.018379097711806562 this:0.016230468017935613 This:0.015974795738790782 as:0.015558432565755875 There:0.013825069119859148 object:0.010274091604654605 she:0.00995413027320304 plan:0.009614631966920612 man:0.009582934530166981 notice:0.009234485808389377 :0.26149808018713916 +of:0.12350422360597871 and:0.10154729308771376 the:0.07456495348185434 to:0.03191202779939512 for:0.027830103265675275 or:0.025682894641922457 a:0.023877431948267937 with:0.022791491847221 is:0.02088694685906144 by:0.020505624123286915 all:0.017925977458294932 was:0.015127452661659484 are:0.01486534155766322 in:0.014799097286640358 from:0.01453165375499488 as:0.013692051213219598 other:0.0127983519653726 per:0.012758920767111367 that:0.011461251503357278 :0.3979369111713093 +one:0.17896815771583502 some:0.08659644581987248 many:0.04990449165862142 all:0.0478665878503545 One:0.038096175605452455 Some:0.03552640793926947 any:0.030556472203911753 part:0.02863440842448241 out:0.0277194039896207 Many:0.0269363120854098 Most:0.02547340768335081 most:0.024353222153046517 each:0.023219256850445295 none:0.017889879874876717 that:0.01660051196194893 portion:0.013050827281407395 and:0.01196719025110212 those:0.011218763533358999 number:0.01119499011182692 :0.2932270870058063 +was:0.03150280368863662 -:0.028655917261844764 of:0.02554466172274719 be:0.023610519511148037 and:0.021916920338552998 it:0.01776992030768898 at:0.0171595976520958 :0.01599418314480895 the:0.015764476054191106 i:0.014961696945143876 is:0.013651594248328387 .:0.013071138769825368 It:0.011789117445765529 a:0.010291750541618811 he:0.009953269548419429 were:0.009849411612814796 to:0.009513621338253961 t:0.00880872813080929 an:0.008625164662617466 :0.6905655070746887 +his:0.22866670844117165 the:0.15034037102174333 their:0.1244082709816839 my:0.0837331948576488 her:0.05974102285309547 a:0.038981662336290857 its:0.03368144303923831 your:0.031804334042908396 of:0.027200938104573854 whose:0.026810329075183575 our:0.025306260128671754 no:0.023710005712875317 this:0.019049462892344122 His:0.01708192399972605 and:0.01640941499576892 bis:0.016109371008663494 The:0.015464774952869792 to:0.012947471420364478 tho:0.010321804647792024 :0.03723123548738591 +you:0.11129273720375946 I:0.09497421978346204 and:0.07322404628099954 he:0.06708018530935529 it:0.06323117365765409 they:0.05970476282376679 that:0.045260476272069236 which:0.04269160713069376 we:0.040973400796964286 who:0.028260976189930023 It:0.01864397581639752 this:0.014268898381307816 as:0.012209702747588 she:0.011667552130239985 You:0.01054515409664882 but:0.010050033410285134 1:0.009592426682497048 the:0.00904178807410627 They:0.008148327639549603 :0.26813855557272526 +to:0.3613179367679348 not:0.24708619978500823 would:0.08194920387421624 or:0.058026510762563155 will:0.041150791438823435 and:0.031463363438076965 never:0.02552937593927741 can:0.016742444751718977 could:0.01569279097748375 shall:0.012267306110593372 may:0.011770062829993534 cannot:0.011355922228281278 should:0.010098594579101153 a:0.009747638170025049 you:0.008419641468185982 of:0.0070066122743414295 they:0.0062532213529428735 might:0.005223757808629537 nor:0.004919034092109042 :0.03297959135069382 +of:0.28767355066866834 to:0.08775711267569858 in:0.08678131196995101 and:0.05160598694501188 on:0.04646139928102899 by:0.04519522654900943 for:0.044547789071328545 with:0.03396756772609607 that:0.033699232901107726 from:0.03075346596941143 at:0.027039283056790858 In:0.021061449543044047 as:0.017514234937992545 all:0.012543839382496166 upon:0.011844431150487573 is:0.00998972746569266 was:0.008814315973987914 into:0.008557199930727406 through:0.007781895704231326 :0.1254109790972375 +and:0.11556519417565557 the:0.08481561130242181 of:0.07004505633234759 to:0.0341721636003462 that:0.024989712907709082 a:0.02033341508293078 in:0.0195282517879194 which:0.01857195564664746 will:0.01715996747418425 for:0.016368884390064373 or:0.014422145985509987 as:0.014111218851616864 I:0.01385069987486557 he:0.012904087368211841 they:0.012821621856491204 :0.01282033337760942 would:0.012423812591599326 such:0.011604284904520845 The:0.010395181332605091 :0.46209640115674333 +and:0.07181562702745725 together:0.06672214896410926 connected:0.05460722541492519 connection:0.053485248068146786 accordance:0.040816432970329504 comply:0.022327715315442986 acquainted:0.01991331996883064 compared:0.01902004432375884 contact:0.016949822974841922 familiar:0.016791563233682194 up:0.016271038698657696 do:0.015355480362757417 interfere:0.014875808889703945 charged:0.014646284015101253 pleased:0.013610051164447858 him:0.01274062267734275 but:0.012200014478196207 satisfied:0.011962054640116513 it:0.011810815262474694 :0.4930786815496771 +the:0.24687408812815698 of:0.14535506778841797 and:0.059197847886350935 in:0.05916174773380993 to:0.04509811864381936 between:0.03486947635615477 a:0.03475952807142089 for:0.024187952826442198 their:0.021097751003870527 tho:0.018614011197515004 both:0.018023335036277368 this:0.017613402086122658 public:0.013155062012370529 or:0.01297898285059142 with:0.012245671021195047 that:0.011325991383813018 our:0.011181809593583303 as:0.010623590695276245 In:0.010549482650203668 :0.1920870830346082 +the:0.23043703697222154 of:0.13338618942475286 and:0.050874748469992084 a:0.03496243692376243 .:0.02105224641806452 The:0.02028363964597336 to:0.020123043941338497 in:0.016594451217721566 by:0.014969142445649692 tho:0.013692367858859243 :0.010244084796993668 or:0.009567105848126485 with:0.008265138589594082 that:0.008014914005250751 as:0.007850029114214743 an:0.00769903447935997 for:0.007650410316121902 Mr.:0.007644172573123323 tbe:0.007616721150319532 :0.36807308580855974 +one:0.1028303141280697 part:0.05963429477052991 out:0.04766456937681193 some:0.031418679026461914 members:0.030764490253327767 side:0.029940657362655835 portion:0.022063658796890564 office:0.020457735219956013 member:0.019726706386316174 end:0.019666887540649894 tion:0.018667441728710307 parts:0.016814747270460957 people:0.014112771422418794 all:0.014072739582212475 any:0.013183573287639892 One:0.013083578354183906 that:0.013024335602903442 account:0.012482348155001894 many:0.012077825070275192 :0.48731264666452345 +one:0.1028303141280697 part:0.05963429477052991 out:0.04766456937681193 some:0.031418679026461914 members:0.030764490253327767 side:0.029940657362655835 portion:0.022063658796890564 office:0.020457735219956013 member:0.019726706386316174 end:0.019666887540649894 tion:0.018667441728710307 parts:0.016814747270460957 people:0.014112771422418794 all:0.014072739582212475 any:0.013183573287639892 One:0.013083578354183906 that:0.013024335602903442 account:0.012482348155001894 many:0.012077825070275192 :0.48731264666452345 +the:0.3429295853986069 of:0.08158010885516366 to:0.06903231986204668 and:0.0554705485109878 a:0.0366845707414433 tho:0.03250116160352679 The:0.023978076390285822 said:0.0219615622357452 by:0.01950731883426034 that:0.01925395999664289 or:0.016816278979849286 in:0.015050709318326685 tbe:0.01187850801629742 all:0.010729464890903491 our:0.010579790934400084 this:0.010271500219658013 States:0.009315118326349745 other:0.008990497319875515 with:0.007520834143188186 :0.19494808542244216 +at:0.061746925917184316 and:0.05246196725896201 of:0.05097510045549638 the:0.0410383398797495 to:0.03666755944276531 .:0.031609842096984635 a:0.0271441676078798 was:0.02214344584474442 on:0.019233298808397647 in:0.014513721672251758 No.:0.013412537994402186 :0.013220053419372109 W.:0.01128619632710367 said:0.010245170288689851 one:0.01020772585221365 or:0.0101078073992959 be:0.009213415534800467 is:0.00900959746429566 from:0.007964840961367273 :0.5467982857740434 +and:0.10608034301639768 to:0.09549591898018815 it:0.030879830304771896 was:0.030769930782199452 not:0.030479036453883397 would:0.030231504777107444 of:0.029458400277838397 he:0.02729842500409966 will:0.021456683755678146 is:0.021157678862941388 I:0.02008363118350623 in:0.019531102419025757 that:0.01873900820163678 It:0.018332341752238916 be-:0.01727846325944453 be:0.01726752087083626 the:0.015010429148855262 or:0.01483751466474977 for:0.014343045169474097 :0.4202691911151268 +.:0.06697540854548728 the:0.04400840463777622 to:0.039288169270747145 of:0.03858773395192355 and:0.03778027064917381 a:0.028326396249789335 at:0.02642121247544544 in:0.020013456925078953 was:0.017927249539586854 Mrs.:0.01478870250678956 No.:0.0147526381725335 W.:0.013917241872850135 be:0.01305668281349538 J.:0.01150001996255925 Mr.:0.011321038108706077 A.:0.01099828487619875 is:0.010443333230022594 C.:0.010145848917583885 :0.00956615732297359 :0.5591817499712787 +be:0.10455388773660669 was:0.08516675188947102 is:0.07098308615917145 and:0.05439332113896751 as:0.04977649281832113 been:0.049263948211693144 the:0.04554017732804547 are:0.03472605284563401 very:0.03029270487378639 not:0.024473482872467596 were:0.023796677224203887 so:0.020662827958144746 being:0.019671534292323024 it:0.01823819209940935 much:0.017284095401241283 in:0.016841156636912505 do:0.015231397982648196 him:0.01511234158145556 go:0.013439402857428564 :0.28955246809206847 +the:0.1594295935815866 to:0.12643390172125385 and:0.1165777235525246 of:0.0674932340544239 a:0.041844431664639026 I:0.0381285630816777 it:0.02423035539392218 as:0.02409369064105691 will:0.023287631671569494 not:0.021898085506617773 The:0.02073039186866304 would:0.018925146330796897 is:0.0181507518207393 was:0.017613487973556895 or:0.016773266724804392 be:0.015425574677898457 but:0.014514391305774066 which:0.014463414672797804 he:0.01440278586199955 :0.20458357789369755 +the:0.16850633981718008 of:0.11822775782639793 a:0.07741211983864266 and:0.05900104496193672 to:0.03402593723768886 in:0.03367866022243003 for:0.029856154181212093 The:0.018175964534805737 by:0.015917907077946387 that:0.015707467736893306 more:0.013740116754335901 their:0.012422953134340749 his:0.012089123139958613 with:0.011545022909197596 an:0.011203578634079761 as:0.009972416166907905 In:0.009536392104548465 or:0.009339445488338075 :0.008380820340824293 :0.3302607778923348 +as:0.28866284485382604 so:0.23904982233657945 very:0.10748917092587729 how:0.04762667424573889 too:0.043688675855348615 a:0.03478633505961879 and:0.03208460939909227 for:0.026326130641673308 is:0.019422920881976505 with:0.017430363008133984 of:0.01706215487445525 not:0.012889201630722075 So:0.011290472945114207 be:0.010636219222084284 do:0.00963290507144686 As:0.009554604193804436 was:0.009550303611220825 the:0.008259081122735351 made:0.00823574719018056 :0.04532176293037102 +the:0.7648607746603886 tho:0.035466482632709226 The:0.02871816605123829 of:0.016605909969989653 a:0.016583846452471462 this:0.014798294612185013 any:0.0128779233022106 an:0.012632991602731177 on:0.01072945340935152 its:0.010210819175251669 tbe:0.010196620446589795 our:0.008921352660384444 his:0.008611361950568865 first:0.007885295595769627 their:0.007701645049128122 and:0.007493495213291113 in:0.007345734053592715 every:0.0038910921000258857 at:0.0035836266169896706 :0.009885114445132508 +he:0.15581466542975142 it:0.14499820109016215 they:0.08943011190542358 It:0.07992681673966813 I:0.057997524707114216 that:0.03654466707155206 we:0.03511539685820547 who:0.03429913789100766 she:0.033032424302688164 and:0.029941817005246976 which:0.02789553865715621 He:0.023325696741163113 you:0.016200537098616644 We:0.01394571482231166 be:0.01319251237890309 ho:0.011933529571185705 They:0.0115513567791168 there:0.01078661793675704 lie:0.008497770992066746 :0.16456996202190316 +nothing:0.029086494331117894 and:0.01335940867653907 ;:0.01263701018210928 had:0.012519090440497073 it,:0.012435486856163384 him,:0.011905322285348198 anything:0.010482680536598473 them,:0.00877678510042517 of:0.00863304142158778 have:0.008423456084490175 time,:0.00826001142957812 years,:0.006730623449207021 has:0.00647124998409163 is:0.006411828286621249 was:0.006050407715067806 man,:0.005879541179116704 that:0.005593221605364055 ,:0.005343230840895974 are:0.005036520920178099 :0.8149645886750029 +the:0.2470051455707208 of:0.08836884515035048 a:0.08378159942796988 in:0.05741920368195054 and:0.03633741794687932 to:0.03195780001490284 The:0.02924685430310347 on:0.017189739877052346 that:0.01644056629462928 for:0.01619095694837088 tho:0.015632236838107855 :0.014979743572052315 from:0.01495014466270081 In:0.01373901417691049 an:0.013391347333098396 in-:0.01252852684172488 with:0.012478840461467907 as:0.011362640602822365 any:0.011093704780628667 :0.25490567151455645 +it:0.2031734080189888 It:0.15030191790120856 there:0.12817360797548039 which:0.06646331381528968 and:0.043317589178021185 that:0.04231992464615241 There:0.04211736475658634 he:0.03927519876627437 what:0.02175264484487882 This:0.02123836440236859 who:0.020907179048532388 this:0.01917020634607872 He:0.01275387123558214 she:0.009824926314734434 That:0.005589186859546396 but:0.00524434391696498 or:0.004513280978962199 country:0.004414238141393249 as:0.004204275624693192 :0.15424515722826315 +of:0.17341076177986015 in:0.09778503589346846 with:0.07687993352530992 to:0.06771955029669766 for:0.06379588384379918 and:0.06083211630927779 is:0.05033954249380208 by:0.04224208624897803 was:0.03837561567773229 that:0.03140633142552258 as:0.030751857142835883 on:0.02906871088786001 not:0.025358532142115545 at:0.022660746042307417 In:0.021372239553404483 be:0.02126529270857861 from:0.016644106392106825 have:0.016618739157072293 make:0.01459544818575466 :0.09787747029351615 +by:0.15228336686968733 of:0.1199747435903938 and:0.0952780031677713 for:0.09179599498284507 in:0.08935320838914083 without:0.035306288491129705 In:0.03231569448346102 with:0.024960000893613964 after:0.024584009552495314 to:0.018319718362281016 that:0.017507187535682003 or:0.015184296966653205 After:0.015084400868949377 I:0.014831844989299351 as:0.014828030412105406 from:0.014302277370683505 is:0.011306584158165718 but:0.010003811616713827 are:0.009028745672738902 :0.19275179162618938 +of:0.5194694586760311 in:0.1330051001477447 to:0.06851432888974311 by:0.0550349750629288 In:0.02878169727629539 from:0.024254562818901995 that:0.023947275467146364 for:0.0208712368580367 and:0.02014793498328324 with:0.012527167863237659 on:0.009063621849989515 at:0.007949625624273258 into:0.007715055802641988 which:0.006610948246463611 ot:0.006473742536331837 throughout:0.006333274786906171 between:0.0060025462560295145 upon:0.005525803780418543 as:0.004602943667776204 :0.03216869940582036 +and:0.07558940021936399 recorded:0.030196237618668006 was:0.028917161578042846 made:0.027969746247669736 that:0.027730098932509103 o'clock:0.025060522019555328 up:0.023026552239529506 is:0.020398277211376416 found:0.02003101797656537 placed:0.017482208134164214 out:0.016937164562539058 place:0.016819459500107596 interest:0.016629321966808677 him:0.016002796715253755 situated:0.01573420479581609 it:0.015128305982428461 them:0.014715943643665314 part:0.014646613000297721 interested:0.014450471929902294 :0.5615344957257364 +is:0.14392948131607836 was:0.126338717391055 are:0.08848315970128419 and:0.0773477231508715 had:0.07557935937445925 has:0.06853156837326145 have:0.04990966881711814 were:0.04540612581244294 but:0.03125617164204366 do:0.02348668385571407 Is:0.020626294237320097 it:0.0193214228638367 if:0.015075127489726647 or:0.012248233828888098 be:0.012036222353208986 did:0.010659041097117936 that:0.010053460736441795 he:0.009282547075452592 would:0.009050937355850037 :0.15037805352782854 +he:0.1567502203420052 which:0.08078373111547418 who:0.0759915000202399 it:0.06908481867271452 and:0.05261407416115036 He:0.0504936479164688 It:0.04195137649081595 that:0.04158602585194283 she:0.025499615300377327 man:0.016854545437065657 as:0.012428787892411742 ho:0.010893648540646816 lie:0.010835258204373525 company:0.010563071699562006 what:0.010009879489395739 She:0.008564948450617726 country:0.007513854829945328 be:0.006382917038867743 world:0.006044210081071518 :0.30415386846485315 +carry:0.1412497087947734 through-:0.12826013105545556 with-:0.08091675963353849 carrying:0.046277804198627925 pointed:0.03723144396063946 and:0.033126401155713206 sent:0.030773149825916037 brought:0.02747943045078021 carried:0.027073602342564777 find:0.026641036907707145 put:0.02615503321810391 wipe:0.025838030544031883 go:0.022515062343076847 went:0.022513291814153923 get:0.02250598350754256 taken:0.022060176804249623 pointing:0.019443788737956894 cut:0.01939461821188527 bring:0.01927596027535409 :0.2202685862179288 +the:0.20479950727251392 of:0.16849165666461952 and:0.06180880752101623 a:0.03145546802458591 The:0.02432511728432431 by:0.024247994333455886 to:0.019420437532802832 in:0.01708007697796938 for:0.01645194336880306 or:0.01528719698316342 tho:0.014572538915318798 with:0.013192434462217174 at:0.012077974239724005 as:0.01059686782576995 his:0.009246347456610083 .:0.0078790500549825 :0.0076422425806783895 that:0.007571425403830701 their:0.007107994765082947 :0.325744918332531 +and:0.05954826800200673 able:0.04668638322633569 order:0.044604147860743466 him:0.0386265639301963 is:0.037952755253664684 was:0.03608034278118964 time:0.035788742053291994 had:0.03422850577743171 as:0.03375615948603487 have:0.03325378431854452 enough:0.03265489613643173 refused:0.03217993653985935 willing:0.031954089052473225 necessary:0.029379811072967266 unable:0.029231642185726107 ready:0.02728452641965818 want:0.022311327375082984 desire:0.02150886685695491 going:0.021449676184255563 :0.35051957548715107 +the:0.16703406384853273 and:0.09393037103065463 of:0.07000545088338954 The:0.03790866461643553 to:0.036876865157808594 that:0.03194944727769175 which:0.030322699530087174 a:0.026134986029141494 no:0.0224631698878771 as:0.01983263765801268 or:0.013797878815220987 he:0.012951010190651193 said:0.012331532654233162 if:0.012221584091031077 in:0.012070251086740978 any:0.010871571467135896 tho:0.0106750483924877 his:0.010005852418628678 when:0.009791802952019802 :0.3578251120122193 +of:0.09957743619420241 the:0.092128363905457 and:0.07056083060091681 in:0.04851452835554685 to:0.04634069822900595 be:0.04367180462596795 a:0.0428987370445523 on:0.02852181309588808 or:0.02153301670262926 was:0.019780675392438992 is:0.017184552459671813 by:0.01646079157055043 with:0.01643608517896635 for:0.016111344848589667 from:0.014420920984450634 as:0.014119598616731717 are:0.013949238402715598 been:0.013886892758558892 that:0.013541241022195583 :0.3493614300109637 +will:0.16823926633318917 would:0.15035911947713596 can:0.1046320976021328 may:0.09856666945467665 should:0.053047141561785534 must:0.04683984825731173 and:0.03888775123876552 not:0.035402879207151995 is:0.03498713707706373 it:0.03389444637683195 could:0.02131014102486454 are:0.020161486299037037 shall:0.019726298439338312 It:0.018308388738843367 cannot:0.01742097734161883 they:0.016995055338606548 that:0.01586250861194348 might:0.01580833982900273 there:0.014479457222787076 :0.07407099056791304 +as:0.06931392982974462 according:0.052071562389565784 up:0.0511867300210483 and:0.040371568633051955 went:0.03351644485287816 back:0.032358406609281 regard:0.03073407747799069 feet:0.02852138506231652 down:0.026379903432040268 owing:0.02466642634685871 due:0.023695193974505355 go:0.022910973192184297 reference:0.020802802907016128 came:0.019883741951819873 sent:0.019874244915639484 attention:0.019565955494145405 come:0.01885185084678811 given:0.018792390567602263 it:0.017366961307524745 :0.4281354501879983 +to:0.1296614693795769 and:0.11834060075243594 of:0.04694593778794064 the:0.04531913541320229 he:0.0407186168553034 in:0.037467800909897674 I:0.01641276333331621 was:0.015016064571468833 by:0.014547602223777245 had:0.014510066841285127 a:0.013805460654044914 or:0.013432860718589752 who:0.013290592432039193 will:0.01313012054332892 He:0.012759702770683602 not:0.012527595932333189 In:0.012328690701134546 it:0.010610498256838545 that:0.010606739481398588 :0.40756768044140446 +;:0.016467371822176696 it,:0.014600666987422075 him,:0.01435845380087453 up:0.013907863376986263 him:0.010803589970894707 them,:0.010672093941676402 in:0.007908066839429132 time,:0.007552845753134016 here:0.007414526926031824 years,:0.007170147342827695 it:0.006590065868587609 up,:0.0062904972340151605 man,:0.005989399764440318 man:0.005958989888519999 Mr.:0.005903488814246419 out:0.005593395971459712 :0.005534460714393433 down:0.005299140994283814 one:0.005295902211973867 :0.8356890317766263 +the:0.1252739042169693 of:0.08934821475998349 and:0.07199351058611608 to:0.04278304853214502 a:0.021473257094305993 :0.021340391431173826 by:0.01739016592439959 The:0.016822495279226055 Mr.:0.015985499348839475 .:0.014305695136352076 or:0.01260305428853056 that:0.012474303123804466 on:0.01170492953897831 with:0.011536835961398312 for:0.011366379622687673 in:0.01056840076799415 tho:0.010309786192123324 at:0.007275042680771774 Mrs.:0.007260467067626569 :0.467184618446574 +a:0.08819444652228231 to:0.08790534829882907 the:0.08697802753649225 and:0.07485455735681229 of:0.06256140908242101 in:0.058490667064410064 that:0.024437715690929174 for:0.019647819337082106 as:0.016502436076686562 will:0.016313731683596917 more:0.016279933488780356 his:0.016072843232044488 In:0.01526972850136371 would:0.013615406581379387 which:0.01327722591888568 with:0.013083530923182513 or:0.012886054369874132 at:0.012120120765884663 not:0.011733915878001327 :0.33877508169106196 +be:0.1842713115829465 he:0.11075482693315247 was:0.09220003907236606 and:0.07098388299689531 are:0.0531637819421811 been:0.053147334285119884 is:0.05265841838247362 have:0.03990679300219645 were:0.03953865439069722 has:0.033467992936668675 had:0.03255581159697821 I:0.027772975946683463 He:0.02647608819902446 she:0.02111071515186 not:0.01970441186850564 they:0.01939166181483332 lie:0.017385828559518444 being:0.017330813291995276 it:0.014745842299013691 :0.07243281574689023 +and:0.07830611899145115 to:0.062016980810771845 the:0.0614724433575171 of:0.054399648184075736 was:0.049204726847961226 be:0.03253472468198083 is:0.02872908298869892 I:0.024036747259147794 in:0.01941696577379444 a:0.017664520040327737 at:0.015944979771396278 he:0.015725439372577508 not:0.014189369992241265 were:0.01416555975971516 for:0.013117093328938994 are:0.012985223150711834 been:0.012938636674215211 that:0.010978911855037727 so:0.009963636863978024 :0.4512091902954612 +and:0.17321106758865723 he:0.12952782826437478 He:0.07954069216741852 who:0.051699843112901045 that:0.032221160305194306 I:0.030640363190883417 she:0.02722763822335221 they:0.024864554116236733 it:0.022470065604019752 It:0.021942851921905517 which:0.018714623480099717 She:0.017373997071819726 one:0.012773809067929676 we:0.012080399359947005 They:0.01194298173303604 ho:0.011114360021632689 Why:0.008833621830424953 then:0.008716548823920825 have:0.008435208326660375 :0.2956683857895855 +with:0.11920163366063803 of:0.11670437741486714 in:0.07793226161222805 is:0.06714904577598287 for:0.05918876524043084 by:0.056586183288429036 was:0.05147044403624919 to:0.05057506681150715 and:0.04566940175797923 be:0.02972462538149383 make:0.025927329448563373 have:0.025487536014126483 as:0.025484968203376247 made:0.024931773999648625 such:0.024887751562845156 that:0.02256887612869116 had:0.01991502098558884 on:0.019061373156487628 In:0.01882446444595393 :0.11770910107491321 +;:0.026125401436460458 it,:0.017903419614875335 them,:0.014297965428500939 in:0.012557670566633641 him:0.009086338502198293 up:0.00882984871505397 you:0.008704779328133596 it:0.008573801564355691 and:0.008571471985134117 time,:0.007621443840086752 him,:0.007350180651707236 them:0.007166976705479176 people,:0.006985864626307222 to:0.006538719846093144 time:0.0062052293506743034 me:0.00619864636308512 country,:0.005868107597003678 country:0.005671916779418474 there:0.005450772742036245 :0.8192914443567626 +the:0.2298643063916167 a:0.18427734889256706 of:0.07580173915988546 very:0.057397025388686185 feet:0.051844470165713835 and:0.04916269280074707 in:0.038461412801014234 on:0.037292496671248815 inches:0.028757133531054926 as:0.025474018400767823 his:0.0223521132504723 with:0.020234649400474376 tho:0.01883073733534976 to:0.017259717843313132 from:0.015538667087297954 for:0.015074529798955454 her:0.014642584676578233 their:0.014463422489524046 too:0.014225991312227841 :0.0680449426025048 +I:0.18792000553298333 and:0.08010075633338451 had:0.07690258273020223 he:0.0743125345568552 have:0.061841033484265534 has:0.05163948732280806 they:0.04802856389403312 she:0.03702696106012809 will:0.0351136902384359 He:0.033273095153004126 we:0.02851935253671917 was:0.028154926722419305 could:0.02313333130910704 would:0.02137316692102726 but:0.020504375967985013 you:0.02017231715230137 who:0.019097589552801744 that:0.01737711179947564 1:0.016884444548182977 :0.11762467318388037 +feet:0.0719208472326295 poles:0.05759396229176634 up:0.04010587224329879 chains:0.0385088170079141 entitled:0.029123404981740347 went:0.027388526271997813 came:0.025857650765910022 down:0.025633262313841977 him:0.025574415868859987 as:0.024916209858287616 and:0.023917753661251574 subject:0.02185045005331621 brought:0.02171367122116056 them:0.021644069985480026 it:0.02099405133651225 rods:0.019030517253069822 back:0.018922583019034468 go:0.01891708435510451 sent:0.018892511875840953 :0.44649433840298314 +of:0.27849755783207975 and:0.10353690313643785 to:0.08856246300450958 in:0.05478659962956181 with:0.04981362325083787 that:0.04582812350591279 on:0.04169362467037135 for:0.03980478865580425 by:0.034083619289763056 from:0.029865960545061455 as:0.025416304929079786 at:0.022032893374755183 upon:0.01881026825321469 all:0.01558260513876602 In:0.011330144311349778 or:0.010507180063373816 up:0.00975197351739535 but:0.009583722418420556 made:0.00923229313987428 :0.10027935133343081 +the:0.11641459469611463 of:0.08447484899118053 to:0.04120608863059593 and:0.03886846190110409 in:0.030519531173095315 a:0.030180724790748552 be:0.024777023141240518 his:0.021496495577264484 at:0.01955481437357934 that:0.01609996149867902 was:0.01604699268146337 their:0.015871047468304058 for:0.015489481057170249 were:0.011013754304083318 is:0.010576392048453294 :0.00992857158379673 or:0.00900099386130365 are:0.008717301035383884 on:0.00869237127900862 :0.4700705499074304 +and:0.07951493048159382 I:0.054483314946251964 he:0.046604298522671284 1:0.03823606224023847 feet:0.03512114257911387 one:0.030370013871233056 friends:0.024090622837187613 man:0.02383020809124793 well:0.022498880474305875 be:0.02201031078014644 was:0.021845274666036734 men:0.0201519286527361 me:0.01864775589751619 guests:0.018606994623800922 she:0.016731410442475045 it:0.016655154405251785 you:0.0156637448710083 her:0.014367336736348857 ;:0.014123032507665834 :0.4654475823731699 +the:0.6050914960031705 to:0.044814692514945347 of:0.03990476548781192 all:0.03732660360582447 The:0.03322589895392091 tho:0.023792889004181934 a:0.023436066752183796 and:0.022086431388429886 their:0.01873434312615124 our:0.016586816936151248 his:0.013022591764327083 in:0.012377442361187103 good:0.0115453837841536 for:0.010969823350791327 tbe:0.010158997616626152 its:0.007276965455012648 other:0.006831964600006841 great:0.006813524744564097 no:0.0063977686163560026 :0.048605533934203964 +or:0.1996489374377742 the:0.18715475736875134 and:0.06470158543437529 a:0.06135697667407874 regard-:0.0545864086023993 not:0.052612280675875304 be:0.032162249772737454 no:0.028972187637661007 with:0.027563178721085674 much:0.027105805087555893 is:0.020856821423265868 of:0.0185573600780937 are:0.01710585913432866 was:0.016264541273277325 un-:0.014474585027590707 far:0.012969977479458277 in:0.011399281712557536 at:0.010723234976145423 The:0.010230272162439326 :0.13055369932054894 +the:0.3360404280611392 to:0.05507104857910116 his:0.046373588374087595 of:0.041961619967941864 their:0.04038082294117124 and:0.031985862003522186 a:0.02887773767515321 this:0.027363292421107747 at:0.02563546287794117 tho:0.023080406560799318 for:0.02002681131222945 in:0.017849086408888656 The:0.014199783202578477 its:0.013816208240515033 no:0.013330540283246595 all:0.013276575023723623 by:0.012765532385680869 that:0.012438121674495593 my:0.010528800137729069 :0.21399827186894796 +in:0.42745319744231136 of:0.1377623398590975 In:0.08065498286555492 to:0.04663546657801711 for:0.04277270159422184 or:0.03619671719350186 at:0.030614607139385627 by:0.02776801597175585 from:0.025388048820483202 without:0.021869483930454823 that:0.01743161673655862 with:0.015336319092567437 if:0.01314144485924979 on:0.011737518146487044 and:0.009584267385635264 upon:0.008605204841208637 iu:0.008279267264423186 make:0.008168503156612262 have:0.0073977191456256 :0.022202577976848117 +is:0.3008798911734094 are:0.1810008729465427 and:0.08053536479584848 Is:0.050818337240515384 was:0.04059994687324435 not:0.028534153065546658 but:0.017236676645667998 am:0.01671517433287 I:0.01668379996939778 be:0.015474606912265215 the:0.01390649199644618 we:0.013654795491592386 it:0.012792883070519906 were:0.012341752018740736 have:0.01230027928510493 has:0.011804619544463693 that:0.01088650994134504 And:0.010380157662934032 he:0.010370643543810192 :0.14208304348973497 +hundred:0.02274858291267413 ;:0.005302075045587339 up:0.004941740017890165 and:0.004868762129359411 .:0.0043233045203941774 time:0.004071292435899312 ,:0.004024426363025641 men:0.003984089010132137 out:0.003583733474395465 day:0.00358264688653056 dollars:0.0034896051193674354 it:0.0033267523800818463 city:0.0031720367927287312 street:0.00314202539524176 them,:0.0030086275831773023 him:0.0029675391792807287 :0.002916916012833566 man:0.0027552497564055384 :0.002746084237616149 :0.9100445107473787 +to:0.11072297279764762 or:0.10613980047998905 and:0.07584878414490738 not:0.04107508953982762 of:0.03719930795239555 there:0.027150188177330947 the:0.02707119059246538 nor:0.025270356513242505 that:0.024241483978626317 in:0.015763415321107248 as:0.015610491314474187 than:0.014201938942672014 for:0.01378946478582446 re-:0.012417242777279751 :0.012407866813393597 by:0.012050683302328837 is:0.011754987194787724 never:0.011366555260533555 would:0.010899589151123138 :0.3940185909600431 +hundred:0.038454857127180414 wife:0.018255852738142186 right:0.017866115441437524 gold:0.01708564476412195 one:0.016027488674659387 feet:0.01441610851349893 up:0.014050006416600093 in:0.013352750006808394 man:0.012937035492712034 street:0.012492289258883692 power:0.011905887573295597 land:0.011469309924873466 large:0.009133589634920803 order:0.00911515627119715 dollars:0.009022886008625967 principal:0.008980704702810718 States:0.008568279473959035 city:0.008544289194067611 time:0.008262507866301456 :0.7390592409159036 +the:0.09684081064840576 and:0.06551335624548284 of:0.05146145169206151 from:0.049520598669154245 a:0.045427902131977435 to:0.0370403239153822 be:0.035669151526387034 was:0.030489628475080553 is:0.026635804908522978 in:0.023878514238638158 are:0.018513936943033917 not:0.017945708099223703 or:0.017556265685966497 been:0.014265228721347686 at:0.013857211504087178 he:0.013733215789660087 were:0.012396679125422956 I:0.012347944480187516 for:0.012197989992860347 :0.4037082772071174 +and:0.07705437548817387 depend:0.031536193375950296 based:0.03144111872793531 placed:0.030957065963502946 depends:0.03075765919212402 called:0.030155936973754766 down:0.02681736716319054 made:0.026577710722022318 effect:0.023344764020024934 that:0.02149799173318628 look:0.02036076372291408 due:0.02026744173692952 call:0.019789339473829694 levied:0.01970103437603757 imposed:0.018928989316509288 put:0.01802119246063272 dependent:0.01689647076264392 out:0.015342186135269933 entered:0.01437601109950992 :0.505176387555858 +the:0.11131769804514842 of:0.08500772301364584 and:0.07962611781259461 to:0.06968775000189546 in:0.04279294074166484 for:0.030174031052954825 by:0.027705952169799992 with:0.022570543661224428 that:0.0221520867785269 or:0.021624888250106646 a:0.02058008254290229 is:0.017800557712024493 was:0.016933262728947036 be:0.0161426918043057 In:0.015071834464061493 as:0.013121885005309123 at:0.012923229510737268 which:0.01288640726376173 from:0.012362567953931841 :0.3485177494864571 +and:0.09371829588516653 put:0.08518338138709944 as:0.0686856081238517 of:0.06769209894736022 to:0.061273727180715234 for:0.052537574102290575 that:0.04804033680941679 with:0.03475758591533006 make:0.03126125663870397 in:0.024859268017233413 take:0.02162262846319541 get:0.02047568041599992 keep:0.019994823626297373 made:0.019772104990745908 on:0.018936792622727502 but:0.018820502029100107 when:0.01846703255187629 from:0.018012202667871704 by:0.01767779421660038 :0.25721130540841747 +the:0.22028177146617897 of:0.1241204794263622 to:0.07540612130215363 a:0.03026708550468196 and:0.02967954173550623 this:0.02741394284873733 for:0.024410065828628816 in:0.023913113496634043 The:0.021068087685823977 that:0.01869886777315361 an:0.018523639691292414 tho:0.01609664890497029 :0.01520904913943062 by:0.014761230606952848 or:0.012914374701568192 from:0.012210199408742965 tbe:0.009339873286648124 at:0.00879596352599955 said:0.007981533094334572 :0.2879084105721996 +of:0.2311197112620773 at:0.12088233067240152 and:0.07545366365547461 to:0.06578951838029544 that:0.05036083118418277 for:0.04370586642774689 in:0.0429268214971355 on:0.04285231080072979 by:0.03997517056215457 from:0.026693111300408683 under:0.02389927706488595 with:0.0217268272261059 At:0.020011278481727048 after:0.019807656747084235 the:0.01889693086877766 is:0.01867787906419099 was:0.015204824581667312 In:0.011635290088255618 or:0.010152775275320297 :0.09922792485937788 +the:0.4071374189315913 and:0.06449181461132415 of:0.02892866618288876 in:0.028670005984162618 The:0.02603617389223924 tho:0.024993820467459137 a:0.023579040051412606 to:0.01755553213771617 on:0.014626070241060114 by:0.013447843485786471 or:0.012794166593089693 tbe:0.012024509152999897 :0.010353482361299817 that:0.009291482237329618 In:0.007938246807075932 from:0.007526799010378873 other:0.007469196869028889 all:0.006409533041696086 for:0.00626887758057738 :0.26945732036088327 +of:0.12393599942397789 in:0.10932254621560188 as:0.08350614674987471 with:0.06497681821467813 and:0.0444655375842478 to:0.043913220656639766 is:0.04372891870743936 by:0.04087928865487873 for:0.038662833869880224 such:0.03392636417652434 that:0.03154052924954092 at:0.030453816192206204 In:0.026609487142390347 on:0.02533343443170982 was:0.023531558690948418 be:0.021767176897905097 from:0.020969946150334543 have:0.017457276584825612 made:0.015445887867640232 :0.15857321253875598 +and:0.17128068770317034 which:0.09438427665550259 he:0.06850953480573495 that:0.05203933986152537 who:0.03876994502615041 as:0.038449528762019215 it:0.034286148247680455 It:0.028738509842827352 He:0.025357935682873405 I:0.022637475222777963 the:0.01905949988784024 to:0.016788145839728073 she:0.016612876451513416 of:0.016043406661081658 a:0.01427846968512378 or:0.013993314996781065 be:0.012864643074241731 have:0.011064369148168362 1:0.010005228995432634 :0.293836663449827 +of:0.25703338686438565 and:0.09831632693448339 to:0.08305801579168352 for:0.05253747745182172 that:0.04818364147833604 on:0.04378543398267636 in:0.04008957644903024 by:0.03623349224155889 with:0.03300599729992832 at:0.02740387524066131 as:0.022214249443397904 all:0.021882862734986203 from:0.02046057340908787 is:0.020110147545489857 was:0.01991772602620172 but:0.013798941287127628 when:0.013457811360643746 which:0.011596567383761847 before:0.01154446775370605 :0.12436942932103173 +of:0.39123915670062026 to:0.12123645206850839 in:0.05845704507463093 that:0.03880429455332223 with:0.033735931094011296 and:0.032719164142251 by:0.029903999309960398 for:0.027980846916405636 all:0.024194611332167947 from:0.024152152931984548 on:0.02256890833206089 as:0.01811218044673265 upon:0.016731542993669548 which:0.012449879209904249 over:0.01137822937957419 is:0.010120803659275333 In:0.00949697196557035 among:0.00798365812868406 about:0.007455259967392831 :0.10027891179327326 +the:0.15347276728088466 and:0.09415946145931965 an:0.09007594852896103 as:0.08274967815834938 a:0.07770914160185975 to:0.06857884253142653 this:0.05273027536186857 good:0.051886402692130774 great:0.033463087013246816 or:0.03110633364680823 so:0.03024048276731926 that:0.0280192791388802 very:0.02683751028673879 such:0.02546810168384271 will:0.02373993767635213 same:0.023335830923885064 much:0.018026895305253587 would:0.014577853079174693 his:0.014220594415594067 :0.05860157644810412 +and:0.08995317707915026 to:0.06844710404109794 of:0.04605142056172993 the:0.04074574508561307 which:0.02479116931334353 that:0.023764822140213245 re-:0.020841117231308055 in:0.020803825395358622 for:0.020278423301550053 :0.018417753428486977 not:0.016860793136637672 con-:0.016444405871234195 is:0.014386481772210856 or:0.014080680914153714 be-:0.01352268143271276 I:0.01317002660943805 was:0.011429878269381662 dis-:0.011196807025842847 he:0.01113106290024311 :0.5026826244902934 +the:0.2728033408023643 no:0.08682636540275258 any:0.0696936608129982 a:0.06299034863966964 an:0.05746565722425967 his:0.041085048289587804 every:0.029529485990764645 this:0.025869157428969957 good:0.024466699261682486 of:0.022324205746369948 first:0.021203937418550405 their:0.020908371538540745 to:0.020006803660635477 The:0.01963297438370337 and:0.01962530218778767 one:0.017641088611202015 tho:0.01678088760400023 its:0.0155373077542317 some:0.014859802989976531 :0.13974955425195265 +to:0.33719281154916664 the:0.126105469434568 and:0.08383375361516848 a:0.05793014311697485 will:0.041905631475181185 I:0.02611258656088019 that:0.01952447901774126 would:0.01862976069941075 of:0.018565322152446505 one:0.016668376729236878 they:0.01377922019859968 this:0.012723162546953685 he:0.01163872774684364 1:0.010807449820771173 at:0.010681074006437976 who:0.010397743124147337 any:0.01013015969621345 or:0.009649483384048167 his:0.00897593656628601 :0.1537487085589241 +in:0.2535202788577546 of:0.2301276110181212 from:0.09590285694337447 In:0.07194062168503043 by:0.029685361962224804 on:0.0273522566660128 and:0.026357742103430806 to:0.020609090516828774 with:0.02045729765016476 at:0.01410648818074866 for:0.013108053276143132 the:0.011721160342487293 do:0.00803140340829157 :0.008002385502273418 asked:0.007114068681308598 send:0.006294681046213822 ask:0.006229505179311716 .:0.005476288319017309 iu:0.004976793217998751 :0.1379860554432631 +and:0.0982422554922478 that:0.02930467373972723 made:0.02718234021385435 or:0.024964969347617504 one:0.020769514460041612 out:0.020747880148492336 them:0.020417414519584762 up:0.020029006779828957 but:0.019680473260598783 be:0.017820585332345956 not:0.014896527729313023 is:0.014813786756854096 him:0.014797760846585194 only:0.014599518245642486 time:0.012247125341018586 to:0.012096010660988327 done:0.011924173664857611 almost:0.011341625079299637 it:0.011019260639232534 :0.5821050977418692 +made:0.0999812034390529 and:0.06680208263369662 caused:0.02435411478715239 shown:0.02379785223577525 up:0.023253655008919294 ed:0.02312002180398423 out:0.022293807888227747 taken:0.021988971765594088 done:0.02128782706813444 given:0.020283609421760777 paid:0.017098570970207227 owned:0.01708227903067019 that:0.01698438626809451 or:0.016145946252097726 him:0.015808363688274 followed:0.015366441255538056 appointed:0.015126279845513936 held:0.013990473525433292 approved:0.013949758860964168 :0.5102843542509091 +It:0.2542294303873996 there:0.12782348782792471 it:0.08171619760424016 There:0.08125995832975863 This:0.03410219657576603 which:0.03172832127680203 that:0.028847145217911582 he:0.02710183567971819 and:0.016257629805421062 He:0.016193340871905267 this:0.01269340954349872 who:0.010004949206161885 I:0.007318147523309761 That:0.00711215131531512 thero:0.007060289432647929 she:0.006272120367336847 Here:0.006024515156153281 :0.005841883153821616 what:0.005699859256345203 :0.23171313146856237 +of:0.14291165597735367 the:0.10750740098519912 and:0.06675782746356966 to:0.06044026114710577 in:0.042411939588125606 a:0.038249509640845156 with:0.021315859801115472 for:0.01919694229943554 by:0.018135271870622124 on:0.01592966829266315 as:0.012563220598012176 that:0.011969918074907123 from:0.011905195212184423 :0.010004241743613996 In:0.009115712711831672 or:0.008653151882712675 upon:0.008437891914370124 his:0.00822861858941787 The:0.008172336178858361 :0.3770933760280563 +and:0.12501381214657703 the:0.11740544903495405 he:0.08174372883884563 was:0.06273909664345367 I:0.06237390211308161 had:0.03435745597170305 be:0.03171017548138091 his:0.027790543709351623 to:0.019318895373431403 is:0.019060816495774735 who:0.018584013074387697 she:0.01794435286392366 have:0.01734477589809255 He:0.01721346930741846 they:0.017050795601547118 were:0.016766470805277607 been:0.01626128777595572 then:0.015105131020694978 her:0.014908869246346539 :0.26630695859780196 +one:0.1028303141280697 part:0.05963429477052991 out:0.04766456937681193 some:0.031418679026461914 members:0.030764490253327767 side:0.029940657362655835 portion:0.022063658796890564 office:0.020457735219956013 member:0.019726706386316174 end:0.019666887540649894 tion:0.018667441728710307 parts:0.016814747270460957 people:0.014112771422418794 all:0.014072739582212475 any:0.013183573287639892 One:0.013083578354183906 that:0.013024335602903442 account:0.012482348155001894 many:0.012077825070275192 :0.48731264666452345 +is:0.18330895641168674 are:0.12037223730082053 and:0.11445126875052503 the:0.1023375484665569 a:0.043888979675795005 but:0.03146550665156911 Is:0.031067396885094727 not:0.02749078911728473 I:0.02628042649814597 that:0.021970133121053125 we:0.021615513712694396 was:0.02000570132678151 it:0.015848888990473164 in:0.01488376198748263 will:0.013245801814628068 he:0.013184215400851516 have:0.01301877550577898 they:0.011585128204434568 has:0.011476310670415248 :0.16150265950792805 +the:0.09684081064840576 and:0.06551335624548284 of:0.05146145169206151 from:0.049520598669154245 a:0.045427902131977435 to:0.0370403239153822 be:0.035669151526387034 was:0.030489628475080553 is:0.026635804908522978 in:0.023878514238638158 are:0.018513936943033917 not:0.017945708099223703 or:0.017556265685966497 been:0.014265228721347686 at:0.013857211504087178 he:0.013733215789660087 were:0.012396679125422956 I:0.012347944480187516 for:0.012197989992860347 :0.4037082772071174 +and:0.06403202932760814 and,:0.06282234496762032 that:0.03341860265406661 but:0.03130583879218238 is,:0.029112053324205668 if,:0.026237543470509266 This,:0.025633832038648992 But:0.02064139090416383 which,:0.017495987820157703 And:0.0169884260034911 not,:0.013905306127745123 it:0.013246092974440338 as:0.010558729942157742 place:0.010237537432480308 was,:0.009051593779988576 that,:0.009050290917979728 is:0.008135219982225387 are,:0.007955397506797577 which:0.0076035767326295 :0.5815682053009017 +to:0.2318447667589195 I:0.20847888254090366 not:0.12398286023406487 We:0.08331631870518048 we:0.07257049666008816 and:0.032513566680751164 you:0.028087965507632942 who:0.01950270770866452 They:0.01794817006239425 1:0.01737491015905896 they:0.017334491220230404 "I:0.014379195939073452 don't:0.014031531548949044 would:0.012736224096652983 will:0.010630982486621985 people:0.007409239343842864 firmly:0.006260953276614693 also:0.0045263054042699435 may:0.004315816894700263 :0.07175461477138585 +day:0.05515344826485971 city:0.04665512819545986 County:0.04658900190316357 City:0.03275857972756129 board:0.026344231828533075 line:0.02479031273271427 quarter:0.021816747006564698 county:0.02131928111954768 District:0.020908850067118713 Court:0.019850778935401492 corner:0.017684541607560486 out:0.01761905609346667 north:0.01688855044248783 side:0.01575733136756794 Board:0.01567830037409688 part:0.014010013301047996 State:0.012940231569268231 House:0.012524870224711828 amount:0.012453949868724848 :0.5472567953701429 +it:0.17010051777151988 he:0.16119893875693803 It:0.1133071656737514 He:0.06353750312296971 I:0.06347319110038525 and:0.049337815606595205 she:0.037267340584751646 which:0.035858232861713496 who:0.025584068138696354 that:0.02149175131777216 there:0.017718157501437088 She:0.014342711434280663 this:0.01176239871478212 man:0.010323470395313537 lie:0.010291331054215772 This:0.009444797940309948 ho:0.009166066732227463 but:0.006472914657165536 There:0.006202074007793546 :0.16211955262738117 +have:0.15796413912725057 he:0.12555935720303543 has:0.10003144992900594 had:0.08533789630630828 and:0.08043800159304765 I:0.07372160572537678 be:0.04325741859296716 He:0.0348031263768479 who:0.033461296294422786 she:0.02885987619834419 was:0.018706971947785384 been:0.01428652379513989 it:0.01334293969987411 is:0.012284631232526195 having:0.011887227204794749 they:0.01146155504705317 which:0.011250737121908673 ho:0.011100606053651546 She:0.010830339543981377 :0.1204143010066782 +hundred:0.1392159302376297 3:0.013650060595190309 dred:0.01259221971050986 Hundred:0.011811975328567974 2:0.011698200476784788 7:0.011518341636989097 north:0.010239457702201462 6:0.00985757740172582 4:0.009750858058682173 8:0.009183585706392279 1:0.0086632844925526 5:0.008150884723598002 one:0.008077479860495784 ;:0.007732790977614066 south:0.0070347888054700805 up:0.007028753339091198 9:0.006996618768555528 men:0.006751514110072866 east:0.006432234378837491 :0.692613443689039 +is:0.07323510616804017 as:0.05557238584613616 and:0.05046899013359642 was:0.04311750659837093 not:0.03748921214478317 enough:0.033996959827968375 him:0.03375967712982445 are:0.03243143628652438 order:0.0317722782820924 have:0.02976552582812598 able:0.02817818806649685 right:0.026831609023156074 them:0.026049699692201597 time:0.02337221324502749 seemed:0.023185482374105164 had:0.02301181030735245 it:0.02291483812043797 seems:0.021493430624899834 nothing:0.02008219330885693 :0.36227145699200314 +of:0.13084814232797154 in:0.0740836656586379 as:0.0625527229231004 with:0.059577596335708534 to:0.058433603729754965 is:0.05551580107464621 and:0.04946529489577619 was:0.04264000753602388 for:0.04009673021586375 by:0.037684080471064085 be:0.023941707008899252 on:0.02316059851167503 at:0.022644769441950232 such:0.019950936521181326 that:0.017856095877642635 like:0.017386655618315594 In:0.016902219705578994 from:0.016046571451088905 not:0.01205910100844263 :0.21815369968667797 +and:0.07359963406644195 be:0.052667135004264946 to:0.04483536256874564 of:0.043448293679263235 the:0.03579172892628988 in:0.028005289969665195 was:0.026700397492138477 is:0.024892551934152005 re-:0.024162182625676702 he:0.024086629517294657 are:0.02098604388819216 from:0.020307931541148256 a:0.018606881911690538 or:0.018077853608073062 for:0.017195224169077532 been:0.01615904189338184 I:0.015254891559368164 :0.015184018660626356 which:0.015016145996292442 :0.464022760988217 +:0.07150831435607195 it.:0.025823644357409106 .:0.014739306186487186 day.:0.0125651113159805 them.:0.012453764246545707 him.:0.01042725574176353 time.:0.008655424385719914 her.:0.007696505700477755 night.:0.007416930213699197 house.:0.007129760121898607 States.:0.006344609185428867 week.:0.00619246406099434 year.:0.006035594526938739 evening.:0.006030273252656452 city.:0.005775840386199905 o'clock:0.005455030244478219 country.:0.005437152958030719 do.:0.005394202499305597 years.:0.005375356825441935 :0.7685434594344718 +a:0.2160384843819095 and:0.09381139610103648 the:0.0723231145035785 was:0.06229748686438255 to:0.06210309347399128 is:0.051395184243591185 came:0.049994612407359244 as:0.04072383299204547 be:0.029278783308770776 of:0.023624286202229963 in:0.02264804406851299 not:0.02254407435491353 come:0.02250747457958943 feet:0.02219967144436469 are:0.01825594962082773 from:0.016960830277716502 than:0.016809170792158764 no:0.014187285212274829 go:0.013652717320855415 :0.12764450784989112 +of:0.256783368279888 and:0.10564908324327167 to:0.10145868932276259 in:0.08132757906362166 with:0.05214915149554951 from:0.03911802809923875 by:0.037221897064121275 that:0.03457858775950249 for:0.02976201056548206 at:0.02973726548074521 on:0.028265792229716404 In:0.014525333606805243 upon:0.014061117311560761 as:0.011602495599468833 over:0.011305732044859912 all:0.010230143567493657 up:0.009817130574948395 but:0.00962909610696959 made:0.008187036442761541 :0.11359046214123246 +at:0.18088267846275619 the:0.13101782964441633 to:0.1103930111875006 this:0.08977414185836993 of:0.07668496377666748 his:0.04673171105929167 and:0.03254194433735204 in:0.03131335186788879 their:0.029093839294823474 for:0.02721115233900085 a:0.02545834177440226 hard:0.01823827604554561 day's:0.018159599840055503 that:0.017988984710090646 or:0.017947588135104345 can:0.016545162017165826 could:0.01590986213105729 will:0.013091411528290322 our:0.012142740999614316 :0.08787340899060654 +and:0.07181562702745725 together:0.06672214896410926 connected:0.05460722541492519 connection:0.053485248068146786 accordance:0.040816432970329504 comply:0.022327715315442986 acquainted:0.01991331996883064 compared:0.01902004432375884 contact:0.016949822974841922 familiar:0.016791563233682194 up:0.016271038698657696 do:0.015355480362757417 interfere:0.014875808889703945 charged:0.014646284015101253 pleased:0.013610051164447858 him:0.01274062267734275 but:0.012200014478196207 satisfied:0.011962054640116513 it:0.011810815262474694 :0.4930786815496771 +the:0.2735278062247287 of:0.1730414801397828 and:0.08162818980385478 a:0.050000305545097774 in:0.03998184629985122 to:0.031708303216596324 from:0.021335160010667233 by:0.021207290864710772 with:0.020577502229653367 The:0.019699054200179096 all:0.017205229751154495 tho:0.015346673668589213 this:0.012817591761813426 their:0.012262953728839421 that:0.011506720182350605 In:0.010953488890744744 our:0.010893378759195861 his:0.010310621205371302 sundry:0.009951451707704544 :0.1550449518091143 +the:0.35955481537682255 a:0.35942989941188086 The:0.035579398423116464 to:0.03523723226048385 unanimous:0.025138065079687168 tho:0.018352747359270106 and:0.01431727759122729 no:0.01214945480970426 A:0.011924155159156924 final:0.01065143076226962 electoral:0.009573889493090758 tbe:0.009266043656861438 every:0.008904964887325522 any:0.008184032545063297 great:0.007516793068033043 will:0.006157963488422175 full:0.006014775213963508 total:0.005147635086177933 large:0.004905302494495141 :0.05099412383294811 +of:0.24075587130087767 in:0.12450793963362343 to:0.08198057970029782 on:0.07853766902349349 and:0.0638804013430192 for:0.04089776749891185 by:0.03912460261904115 that:0.037647313965290016 with:0.03293571872425053 from:0.03248236459290204 In:0.029870579378757305 upon:0.023090910009664282 as:0.01883164485448621 all:0.017932280868479096 is:0.011313912930489379 at:0.010560770275401938 through:0.010131787951083122 which:0.009992428200489834 into:0.009944670586883987 :0.08458078654255763 +and:0.07344436263218804 was:0.047020699338672235 are:0.030411962042205306 is:0.029008525788427462 arrived:0.027348876803761992 it:0.024214048943706667 them:0.021518461664124695 be:0.020232791008965207 not:0.02015448179466188 or:0.02009591546945585 were:0.01943184698308566 that:0.01867662023786516 out:0.017988307679642695 held:0.017499595240295866 made:0.016482782563006122 up:0.01515521387193704 him:0.013927702926649823 but:0.013245807052332975 look:0.012828438457632268 :0.540313559501383 +he:0.1128016912759396 be:0.09556934279650546 and:0.09341212738165366 was:0.07315332115365043 had:0.05289121357380536 have:0.04477863810050267 I:0.036112143652820713 has:0.03476060233711461 is:0.03234679287463782 been:0.030993569738182083 were:0.028263991053556477 are:0.027077233748081863 she:0.024604826110012887 He:0.02422180536749873 they:0.023877019000213603 having:0.015263664187094347 lie:0.013804668294779911 who:0.012812261277179066 being:0.012271473126498487 :0.20998361495027223 +amount:0.06324860670713985 payment:0.043711778774253286 out:0.0403578476114128 value:0.03982858121107984 part:0.039342291208537446 proof:0.035889357891094466 all:0.028363084961281194 tion:0.026158650552050744 proceeds:0.022448823347272166 cost:0.022374529335741928 that:0.021818365060714058 use:0.021718487437418287 one:0.021483921181429645 result:0.02138315113120925 sale:0.019976872838546288 sum:0.018781978899620917 advertisement:0.01782415255580784 favor:0.017625518672264102 reason:0.01741823927040189 :0.459245761352724 +of:0.15354098307367287 to:0.12068442873940742 and:0.09862471741708713 in:0.08075779584188447 the:0.06889372933317889 not:0.05318481764138622 with:0.040849070607534725 is:0.03431726710791869 will:0.029179069244923424 have:0.026528641895555444 for:0.02528646918385381 no:0.024068956123196532 a:0.023482232176410506 are:0.023258918956653968 or:0.021655815296559276 at:0.019788849875299875 was:0.019001085780899218 In:0.01887909065767226 had:0.017201398917611636 :0.09981666212929366 +was:0.08486472119522886 carried:0.04990073075980976 be:0.03760554454259609 went:0.03679481638274087 taken:0.03453069620383418 is:0.03331180603304783 far:0.02750871278784637 it:0.027364252701597674 laid:0.0266724796229723 go:0.023740897231531527 came:0.02215250401742773 and:0.02181874116304168 turned:0.017603326287200082 been:0.01575387341122098 going:0.015083690077648699 thence:0.01476434291755454 come:0.014184373400320987 them:0.013950662182632283 were:0.013887857234319545 :0.467505971847428 +in:0.3366547756908291 of:0.09899205350489833 the:0.08945583396417542 In:0.08177964995831244 to:0.04177730628550915 into:0.027979124458621718 this:0.027338937068430137 and:0.026496525845482816 on:0.025231545732955434 from:0.018955027892113525 at:0.015940304901783272 his:0.014789932066808582 by:0.013688994899402672 iu:0.013092173039950958 a:0.011195955121276312 their:0.010871706977211404 for:0.009520990504786601 with:0.008479482434112652 her:0.008399925418903146 :0.11835975423443636 +the:0.6490404885670079 a:0.06688329207062098 The:0.03544171008850156 tho:0.03268790001335797 in:0.01700246870718621 and:0.016605624725160927 tbe:0.013043109506496236 this:0.009107911358898739 of:0.009090274129715657 his:0.00878745231285113 general:0.007489491670239211 best:0.006473787951119145 that:0.005827917399109859 their:0.0057071507519151745 great:0.0056893424038563295 other:0.005587015979479625 high:0.005290571503440179 any:0.0052678369958392215 or:0.005013284684415731 :0.08896336918078819 +or:0.6180034820956205 the:0.0759998447331182 and:0.050644250334546594 a:0.046623909335829064 of:0.016895432854404993 this:0.009494713978578952 as:0.009129014717958222 in:0.008885968937075248 that:0.008228859519358875 certain:0.00808875335075053 said:0.007979446339778503 any:0.007417424523432133 such:0.005709901553568312 other:0.004931332473735225 same:0.004798891694984816 than:0.004480041559093212 one:0.00419402307901356 no:0.00400085079797154 only:0.003882179310000101 :0.09961167881118144 +is:0.10114506500033761 was:0.09861420138909555 the:0.08985103795518963 and:0.05517659501459878 are:0.05112000879189979 be:0.046861989247366995 a:0.037909492842420796 very:0.03032965227666902 been:0.028944459391540608 I:0.02888663521434976 were:0.02669314422676534 as:0.02627454220655752 in:0.02580088379526038 will:0.023343134841761197 he:0.022466843510956114 of:0.022307837274740918 so:0.021162281360495187 his:0.02043821826527444 most:0.020350385136107187 :0.2213235922586132 +of:0.09129790931378902 the:0.07369883040827747 and:0.047842263382354346 in:0.04189055351593407 to:0.04045875475680249 a:0.03542341257202578 be:0.02020462051672066 for:0.01979292654746225 was:0.01760256398103379 at:0.017380150555488715 is:0.014984483003968216 with:0.014047653760730413 by:0.01374644383819499 :0.012670486581795598 In:0.01200961464556976 or:0.011563835749786333 from:0.011391516893522809 are:0.011273104484969465 that:0.010755276030689069 :0.4809655994608848 +be:0.15447996668806938 is:0.08538396597450214 was:0.0696365932869395 are:0.06704064808448143 not:0.06314399940705184 and:0.05097320707673186 an:0.0452486935743456 as:0.04103139214849628 amount:0.04076065311314892 were:0.029761256854796317 of:0.027713632846340916 so:0.024633885555789214 been:0.021849283377786497 being:0.018889411172760072 to:0.014935867521367828 sum:0.013330733608924032 more:0.012769019267919157 the:0.012616774827771368 from:0.012401149145773897 :0.1923998664670038 +a:0.15239497169467137 the:0.11586528588406643 of:0.09895631787380411 in:0.05191407944785144 and:0.050112492563136095 to:0.04045388607510967 an:0.03178559610315762 for:0.017732327764700066 his:0.015581152360399305 In:0.01531934136296972 as:0.014414176953655352 with:0.014352981526113775 on:0.01420908267838188 from:0.013196140147191794 was:0.01298373761516673 The:0.011939758855899282 that:0.011485266184279298 by:0.011112682125668964 :0.010319156465261253 :0.29487156631851585 +-:0.055032081272720405 :0.031683374471289286 of:0.025858124010615054 I:0.0202950753000452 and:0.0179492547847855 .:0.017064620752702563 w:0.01669008277178891 to:0.01655597703731137 ti:0.01577220034683983 t:0.013042299926939456 that:0.012132744744884813 tl:0.010754696330176682 which:0.008724124323478345 i:0.007909844698416334 a:0.007386950229446515 r:0.007365186162329299 as:0.007290971804069303 in:0.007106779124851503 \\\\:0.006648296912614849 :0.6937373149946948 +and:0.06911900984437591 them:0.02977367974043073 put:0.02908567729325693 out:0.025988117288274822 carry:0.021094922405956194 was:0.020496295450414526 work:0.019793803679286376 it:0.01931024237490275 that:0.019164015614479595 him:0.018505457900182137 placed:0.0159704901942951 up-:0.015033537339464968 made:0.014322160361255285 up:0.014271535580732367 down:0.013260437300405164 or:0.012859310150814167 men:0.012708226489101231 go:0.012706990069256519 is:0.012349877431639442 :0.6031862134914758 +of:0.28059339816772033 and:0.10213353383090452 to:0.1018939118947376 that:0.061343251121506216 in:0.04639141443737684 by:0.04096260517400082 from:0.0389590502872024 at:0.031280512454123284 with:0.02750908824923526 on:0.026236754991014535 as:0.02076251644179018 for:0.019481907059645677 all:0.01909554461450778 when:0.013712012442592635 which:0.010008673800668324 In:0.009106328792395117 was:0.00831492388807819 upon:0.008075536153954083 over:0.00680944360442682 :0.12632959259411938 +the:0.11919516938815296 of:0.07230453158552728 and:0.05781056740443249 a:0.043018564803886335 to:0.031305092790907506 in:0.020848713353460488 at:0.014270110001066288 .:0.012526810245749479 :0.012413283442322082 for:0.011719122709941797 by:0.010808400946589808 or:0.010404172990115616 The:0.01003576004804544 with:0.009811868184449042 tho:0.009295902015355835 was:0.008924239095331684 that:0.008672304223433876 is:0.0085591147338948 be:0.008335143826716943 :0.5187411282106204 +the:0.11919516938815296 of:0.07230453158552728 and:0.05781056740443249 a:0.043018564803886335 to:0.031305092790907506 in:0.020848713353460488 at:0.014270110001066288 .:0.012526810245749479 :0.012413283442322082 for:0.011719122709941797 by:0.010808400946589808 or:0.010404172990115616 The:0.01003576004804544 with:0.009811868184449042 tho:0.009295902015355835 was:0.008924239095331684 that:0.008672304223433876 is:0.0085591147338948 be:0.008335143826716943 :0.5187411282106204 +one:0.10757504863160208 out:0.06393072214258595 part:0.05345953864888265 some:0.04657778396619151 time:0.032653763285528395 account:0.0298978741893603 all:0.02673860913095395 and:0.02324876597992745 that:0.02275453097379819 because:0.021318504223257338 portion:0.02010071224985526 side:0.01926992014112468 any:0.018918137101655273 front:0.016609963575485047 many:0.016563310866764772 end:0.01592265492673931 day:0.015255366376758018 members:0.014811614297040794 result:0.014486922106154784 :0.41890625718633423 +to:0.5694329168300621 and:0.05530980564775654 will:0.04663024206686876 would:0.04324749365427405 not:0.041136650007091574 can:0.026010426579315606 or:0.017224246076295253 should:0.017099094868717687 could:0.016686623675477776 must:0.013618783967799385 we:0.011908685157555488 who:0.011533134509704352 shall:0.011265093912640122 they:0.011159235776690191 you:0.010775153137975486 may:0.009772857542375528 cannot:0.007930334372406624 for:0.00782760840630572 the:0.007633429424563318 :0.06279818438612442 +that:0.15050712136049138 if:0.14744906009533224 If:0.12571283633060415 and:0.07485720935839196 as:0.05910763708749387 which:0.05223157213425152 what:0.031511836783702174 when:0.031005643864081583 for:0.024038713708300626 of:0.02084733623572023 but:0.019860841743732198 do:0.01824062494806507 than:0.0171292720357947 before:0.013736881102582366 until:0.013594303117736222 to:0.012838329006549803 When:0.012780245475128326 whether:0.011175302111524472 because:0.009999778539797841 :0.15237545496071928 +to:0.09510176257557867 and:0.0759782477397007 of:0.044882537993784916 the:0.0315600709783228 is:0.027469709441114137 in:0.024414242512733896 was:0.023644505786906175 con-:0.02072663556943141 will:0.0197525729259325 re-:0.019515757684955143 he:0.01933396268374066 I:0.019168528042120436 for:0.018758717550584603 be:0.018539065847662673 would:0.018528419960293203 that:0.017041510263127942 be-:0.016586329410835588 there:0.01648203693916975 not:0.016023551150036123 :0.45549183494396867 +has:0.16522684683545813 be:0.15444469787035717 have:0.1312411429861666 had:0.11406517020245013 was:0.08785804832386856 been:0.05254346780419029 and:0.03463317225649725 were:0.03168587766359637 is:0.031259742524186084 are:0.017049113049603697 not:0.0131229164803092 having:0.012596282380186372 bad:0.011175706203034043 he:0.011124674883113073 bo:0.008520262671936098 I:0.007992702016752219 being:0.007481244875999933 havo:0.006105738492087731 lias:0.005927568030645468 :0.0949456244495616 +and:0.09976846790187298 him:0.022481820467964042 reason:0.022111953260397145 made:0.021945432011148347 but:0.021216150289988026 enough:0.019022789835021536 asked:0.018139266498890465 time:0.01661680982408657 them:0.01649308480354857 provided:0.015948281471856066 necessary:0.015914351276976317 vote:0.015881883039876366 that:0.015503492476515578 it:0.015111110916371674 pay:0.0150371684983729 demand:0.015030100003476385 work:0.014582613178973585 responsible:0.014279697960215635 out:0.014127060240673216 :0.5897884660437746 +to:0.36834976061221775 will:0.14858319274307846 may:0.08455513486827002 would:0.07475891157140578 shall:0.052566243305745775 should:0.049458863246415005 must:0.03853455808575494 not:0.03469945166414594 can:0.02909065514539175 could:0.02035666207389985 might:0.012906718306929674 cannot:0.0114707174782906 and:0.007562223436520173 it:0.005828952974267782 never:0.004688633880264027 also:0.004042579967705709 only:0.002869509589940907 that:0.002830852656350587 which:0.002482784132877688 :0.043363594260527584 +is:0.12515901795980772 of:0.10580166043339471 was:0.06865749139051587 and:0.06334651452341333 with:0.058032807275327544 for:0.056074315652967825 to:0.0489436298932688 in:0.04756390921804454 as:0.04595753384795358 be:0.04151283373819901 that:0.028585938680477454 by:0.02734714498441579 have:0.024480052024661313 make:0.024030441327336605 at:0.022606619303283015 made:0.022082661764958347 such:0.021678627851139654 had:0.017576285545873125 making:0.017336373987753215 :0.13222614059720855 +was:0.2128836510562326 is:0.1500114524107035 be:0.11044481105082077 as:0.09554182768462849 been:0.0538109061513582 and:0.05182167682675938 were:0.04863175716080618 are:0.04693120136868972 the:0.028026542059464383 not:0.021388092649587284 Is:0.021095167144972653 so:0.01303646609605725 being:0.012074170583762847 it:0.01197019217747984 that:0.01186931153751701 or:0.011126481601511057 in:0.010405884693687067 seems:0.008238284097689839 very:0.008221502333616758 :0.0714706213146552 +:0.07183673117911153 it.:0.01514882704589132 them.:0.010000704532555693 time.:0.008164342624922641 day.:0.007953086345620421 him.:0.00762442359196348 country.:0.006598718650255541 years.:0.006322662814058657 .:0.0058251878970883115 year.:0.005522513194606949 of:0.005479957633197681 city.:0.00453575417370536 work.:0.00421878638336879 week.:0.0037605325978423256 night.:0.0037017685335843362 tion.:0.0036591644806562443 States.:0.00346526369876859 people.:0.00333454587713273 the:0.003327668376061754 :0.8185193603696076 +the:0.16321470914397607 two:0.0912565635420938 of:0.08921110965914994 and:0.08498488252767306 for:0.058418332333646086 The:0.05301356944870341 three:0.03670682322970473 that:0.030942542325933128 few:0.03021118861522309 all:0.023560507854253246 six:0.022031553556631056 in:0.020056453691178023 a:0.019970492536790074 these:0.018196911402818112 new:0.016888825035637177 large:0.016561577769868545 other:0.016052471038866558 tho:0.014277277054890814 their:0.013697342453567431 :0.17974686677939566 +of:0.2788566694793291 the:0.09724744738623806 by:0.0923524859855405 from:0.07845496552628005 to:0.057996066191441556 in:0.054054769660839316 and:0.04487357634383324 with:0.04272644900845069 for:0.035321267245316666 a:0.020265707388970464 In:0.012953051617641083 on:0.012665961870284211 that:0.01144054951493237 The:0.010298822334309567 upon:0.009731683679710012 into:0.009438562514534921 at:0.00892962710168107 his:0.0057359064510779465 ot:0.00571081441343642 :0.1099456162861528 +:0.12559760155247265 it.:0.01607743129382069 of:0.012933032403248432 them.:0.01202009324301569 .:0.011856381515343968 day.:0.008546973757795546 time.:0.00758024092715205 to:0.007280113095525244 year.:0.007038009135838992 city.:0.006870640267737886 country.:0.0067804589400795 feet.:0.006208385480040557 him.:0.006195905610344803 county.:0.005776854393563477 work.:0.005342373592784975 years.:0.005315559730855157 water.:0.005085334443497794 river.:0.0048494158687550715 place.:0.004553499863953441 :0.7330916948841741 +:0.042121809243109674 and:0.025115839546517717 was:0.01991321458715972 be:0.019361617353387452 is:0.011984115090027172 are:0.011708641305616186 that:0.010720595268890114 were:0.010118875880028138 .:0.008538828059217652 been:0.008214792900146319 put:0.007814765668374815 recorded:0.007169050565739314 situated:0.006726720926511513 it.:0.006648720798510434 them:0.0065998360318737246 made:0.006580774631752311 held:0.006505024562847372 it:0.006354607680120908 succeeded:0.006148044476402017 :0.7706541254237674 +the:0.5190029810745005 of:0.048182557538224396 and:0.03285082958742146 The:0.03263518631116773 tho:0.030574581866736145 Rocky:0.02314625244826903 a:0.0164963641566653 tbe:0.015060233173242303 in:0.013518732012153038 said:0.009252307432511856 &:0.009005424878005102 our:0.007479674659729384 that:0.006153873833564127 his:0.005493192865264737 or:0.005235511098089599 this:0.00520529165763615 to:0.005128624397210746 by:0.005104808933179243 :0.004828699621591195 :0.2046448724548379 +the:0.2152269621322908 a:0.06798046599242871 of:0.06786960391247603 and:0.057495504719277855 Mr.:0.04924046697171696 The:0.03622281863979814 to:0.029471396359576543 in:0.023909333502672638 an:0.021656933319035697 his:0.014418118368912878 tho:0.01398944752041477 that:0.012931925028006925 for:0.011446085795361815 or:0.011263862654493063 was:0.011167341474024593 as:0.010935524743605459 is:0.010480415105177443 be:0.010452107787821838 with:0.010214376964366863 :0.3126273090085409 +the:0.16287760685838365 of:0.0883592780729449 to:0.0618987346693935 and:0.05423685233212741 in:0.030811253892523358 for:0.03057359609188714 be:0.025098115820027647 was:0.01826945122296575 is:0.01662970283289366 a:0.016448402520667066 or:0.01633619095301082 his:0.015510346299682681 their:0.015084175217362073 are:0.014656254371894712 been:0.013019491851438341 were:0.01267572744006931 that:0.012270302451397866 on:0.01131798809455223 :0.011150587255169986 :0.37177594175160794 +the:0.4029758436557211 The:0.1867667318577501 of:0.0720773259772049 a:0.06492041423477357 and:0.04732277213117109 his:0.025664263223803697 tho:0.023845830587070873 that:0.013373002999173385 Tho:0.011699153650952358 This:0.011565701144886992 His:0.010362415196927488 this:0.010074608227850274 A:0.010002767323185297 whose:0.008671190542806677 tbe:0.008559129694375991 their:0.008337038005031407 her:0.008151440772461105 its:0.007514060732003291 to:0.007189897013478381 :0.05992641302937201 +one:0.0911586739772231 out:0.06914445242785552 some:0.044072789933600254 and:0.03121874408726069 part:0.030494395250434268 many:0.026952446815903718 that:0.02643717760123072 all:0.0224945269089361 time:0.020723575912610655 home:0.019240137992903552 side:0.017855313384407843 account:0.017009321224268212 end:0.015960594778792213 front:0.01578854825549248 portion:0.015317875285779064 death:0.015281201681475318 One:0.014699303850118774 any:0.012777720337190258 because:0.012455778347118333 :0.4799174219473989 +to:0.1259197001239315 for:0.06936881022637727 given:0.06587204451485502 upon:0.06307142442717506 with:0.052426864810026 by:0.051079821173480845 told:0.04454130905308932 against:0.04076533843716068 on:0.038883951569336404 of:0.03524867974927844 brought:0.0302945859719525 made:0.02533844215423716 from:0.020443206544472965 sent:0.02005639693557154 put:0.019333547803515785 at:0.01822326345381154 carried:0.017759251280146184 asked:0.0128261286416347 struck:0.012274963259844127 :0.23527226987010297 +of:0.09129790931378902 the:0.07369883040827747 and:0.047842263382354346 in:0.04189055351593407 to:0.04045875475680249 a:0.03542341257202578 be:0.02020462051672066 for:0.01979292654746225 was:0.01760256398103379 at:0.017380150555488715 is:0.014984483003968216 with:0.014047653760730413 by:0.01374644383819499 :0.012670486581795598 In:0.01200961464556976 or:0.011563835749786333 from:0.011391516893522809 are:0.011273104484969465 that:0.010755276030689069 :0.4809655994608848 +the:0.2774879456826396 young:0.05542957617498315 business:0.05275474477605493 of:0.04883323869871782 and:0.04727377049492329 The:0.039333933143487494 two:0.03636140716830882 many:0.026284033248746858 by:0.024254857124123997 all:0.02395837301215019 other:0.021561775188971875 three:0.019757160096621193 good:0.01877499376250942 tho:0.017115968853750062 white:0.015815783889821588 these:0.015151656094478438 both:0.013522715602963484 few:0.013120227271945971 are:0.012249390801516168 :0.2199584489132856 +the:0.11076639060148961 a:0.07849534528798262 and:0.07662355077029165 of:0.07260297245149884 to:0.052614458906641126 in:0.02898323381454322 be:0.028619334122366183 was:0.018316043946281182 is:0.016699142604069347 or:0.015571116417843511 for:0.013777377220018703 his:0.013466243388399383 been:0.012200092708878738 .:0.011651566712874907 :0.01138899460054603 their:0.010869189054887483 no:0.010269055828557971 not:0.010112362588368682 an:0.009710495306262912 :0.3962630336681979 +Mrs.:0.110181193637886 of:0.09391005144475476 by:0.08482807388796816 said:0.07920471150607031 and:0.07205600025694116 Mr.:0.03529692523386587 boy.:0.030227349976571997 to:0.028578516878022427 girl.:0.02374215166222502 Dr.:0.019917666820594055 Rev.:0.015006365440780848 :0.014955786698829902 Sir:0.014136266717202906 that:0.011551371324365147 Hon.:0.008462384298797303 Col.:0.00792681187215726 .:0.00733761936134471 Mr:0.005753545704812714 Mrs:0.004784403893948634 :0.33114280338286084 +few:0.2770570691797189 two:0.18674256373113954 three:0.17048015288871793 six:0.06483335679186525 some:0.059750603464595 several:0.05058870269487 four:0.04766956508482386 successive:0.016151262589547234 five:0.015761843216222184 Three:0.01427078738845177 eight:0.01140885241824225 many:0.01077879115605079 Two:0.009631176149004174 ten:0.009320831595160851 for:0.006734791896943991 seven:0.006527437926039279 nine:0.005544357976181473 Some:0.004985869018590852 of:0.0040521881765014246 :0.02670979665733327 +the:0.164622510216757 of:0.07124655442027641 The:0.06889686753552093 Mr.:0.06325252336407099 and:0.044366166073833896 that:0.04264168951999022 a:0.026935017441304315 Mrs.:0.021417054292642027 his:0.015373932368963752 in:0.015166387820743404 this:0.013228806556018961 :0.013136427543557318 tho:0.012055764911697249 .:0.010810741278177282 which:0.010410363554372798 Dr.:0.009964965976760979 to:0.00981126413214408 at:0.009089697865957478 when:0.008784665899295399 :0.3677885992279155 +feet:0.052558294898663524 as:0.040749730583483204 day:0.0384257097419187 went:0.03735511604818882 came:0.0291966846106203 up:0.028972929545332128 prior:0.02493715514046237 and:0.023531789235098636 back:0.020136405814905833 go:0.018113080424787986 returned:0.017933617499864964 sent:0.016322845974142332 made:0.013174531356539548 given:0.011753574705171606 come:0.011709771482734761 visit:0.011132810770792433 Up:0.011025173030629958 payable:0.010699705965098042 time:0.010629928636296965 :0.5706411445352678 +the:0.21518542985921763 a:0.08977927659968216 of:0.06431075011074855 and:0.06079726147053328 to:0.031960645422667244 Mr.:0.03169064686194118 The:0.023489685082705367 in:0.0191039031283732 tho:0.01678327523688972 for:0.015771041999248853 an:0.015280949800066189 with:0.015279990758838279 or:0.014809300701420256 that:0.013057782629059007 his:0.012329910384950757 by:0.011702055601998926 :0.009674827931093977 at:0.009649829625680761 A:0.009614756117917195 :0.3187286806769675 +to:0.29455546499503193 the:0.2130325595444371 a:0.09220022165080403 this:0.04407697881660092 will:0.03832960929586529 would:0.03526216797651451 and:0.03188161565648723 of:0.02079354434574089 in:0.019099593970661393 not:0.0186849152706222 The:0.01390863931620425 I:0.012199547190964792 that:0.011018008898882097 last:0.011005985066968788 tho:0.010523833612672012 may:0.009467804441415265 who:0.008961602372115112 which:0.008480230028482904 should:0.008417528589251603 :0.09710014896027767 +the:0.811026755332568 The:0.060070863607812296 tho:0.043408702404133054 a:0.018870265443847543 tbe:0.017217494540157252 said:0.005780138099187844 and:0.004662649784134872 of:0.003225106096938127 any:0.003072886546066247 tlie:0.002939180720655469 Tho:0.0028098478610343682 this:0.0023652347274776457 by:0.002262291903930855 Tbe:0.0018307225722692232 whole:0.0017954424366835055 tha:0.0017858420057522129 ihe:0.0017542107925640823 no:0.001678123955847998 great:0.0016669467762624973 :0.010777294392676964 +and:0.17002764950313118 of:0.10962500787574016 by:0.05387510140199261 after:0.05222898862103169 to:0.0513407060889309 in:0.04853085704507901 with:0.040500441585929046 for:0.03907033226370272 without:0.03407274053057911 on:0.027952128899249272 not:0.021202528085816193 from:0.020438156539111626 that:0.015679560243586493 After:0.01223238266647894 or:0.01212121174259395 upon:0.01186978462469404 as:0.011260326922211126 is:0.010470489315470847 persons:0.009911938620582985 :0.2465896674240881 +and:0.10429476422817 of:0.04333671938663404 an:0.03075879733998308 to:0.03033780200891017 said:0.020484572821763313 that:0.01852424950721762 which:0.01756012283694855 by:0.017070605188879522 as:0.01684270112297713 the:0.015044039751830097 with:0.014902773186637991 in:0.01359445363024398 thence:0.010753226898289952 at:0.010719695402029454 not:0.009576997085784005 was:0.0090162022062165 up:0.008211111684290884 a:0.00816532812610614 for:0.007856006831269871 :0.5919498307558176 +is:0.322135486409646 are:0.2109768355988111 was:0.06037677614179186 and:0.05370318012190532 Is:0.041745880925370446 not:0.02664294808768822 has:0.025971338847635042 have:0.023010585265526785 be:0.016584303560946177 were:0.015776583394904693 but:0.014997973307391959 he:0.014535868507942263 I:0.013636728248631423 it:0.013328448905339732 had:0.013213984898293103 who:0.009277534439681222 am:0.009094306359540274 which:0.009068409224666514 we:0.00784334226899858 :0.09707948548528926 +to:0.11386489607288022 and:0.08238011603450766 the:0.07605002225234392 of:0.06275080932851036 be:0.03641172915384414 was:0.03500952208627676 is:0.028270567943056525 for:0.02146581400448022 been:0.019965109870799587 it:0.01785306712823901 he:0.01631881085401092 a:0.01630991205515646 with:0.016242231066671504 in:0.015342813328236234 or:0.015316203257934986 not:0.01512564283018879 were:0.014449560723688006 at:0.013859773705943731 that:0.013847851089963033 :0.36816554721326794 +sum:0.03352282876311118 number:0.028116684882597106 line:0.019995206059833036 city:0.01946514558931857 out:0.019275318828420953 day:0.01666865340772654 county:0.014872697538657208 amount:0.013254184849875051 Board:0.01252325449624941 town:0.012449555905674143 side:0.011663975251122375 part:0.011517157473718155 County:0.011460540331966697 state:0.011087331502382173 City:0.010878919191854432 purpose:0.01081028255427907 and:0.010297866493795984 way:0.009848747943663767 name:0.009522170936943183 :0.711769477998811 +of:0.19833899703073046 in:0.10451731951703706 and:0.08228994092686823 for:0.05875369646193296 to:0.04534626667448895 all:0.02686276274626422 from:0.025030516340261367 In:0.02202387071811797 fact:0.017039317351913247 on:0.01407677968794908 at:0.012883161627330922 with:0.012249718953783505 by:0.012235128254248748 is:0.012204373113170876 but:0.012112491529451501 said:0.010463957432151765 out:0.009764140270204499 show:0.009446192566182817 that:0.009083924832650294 :0.3042774439652615 +that:0.1384787833413635 and:0.13225816703457685 is:0.11756726753664382 was:0.0870309935274072 but:0.0528225052022462 had:0.04198920383297184 have:0.03486236431838307 be:0.0326987447854311 with:0.02449955542509327 of:0.023656781882197636 Is:0.022218842933505862 has:0.021443388360023793 in:0.019583177367811552 are:0.01847183543555041 were:0.018113882829910007 to:0.014587432982549803 or:0.014341496924730685 if:0.013900326009125736 for:0.01368165195492812 :0.15679359831554954 +one:0.015552536992080472 more:0.014252271697624306 on:0.010631301787611593 day:0.010222750824534239 two:0.010216157614982159 person:0.007504694644314241 in:0.007364820929323563 man:0.007179188731169107 law:0.006205362369136604 action:0.006166303509128973 and:0.005659786788634644 city:0.005177234665142273 three:0.005130416479837977 State:0.0047265097104810415 to:0.004696031397422901 ten:0.004594585978494318 of:0.004463781172886088 town:0.004231879326219736 year:0.0040256313925199315 :0.8609987539884558 +was:0.22318285741726498 be:0.17267792736068854 been:0.15833200677137138 is:0.06732871363996128 were:0.06488899155388701 being:0.03717214168650966 are:0.032992217074347636 duly:0.03226336600806014 and:0.01782932971635303 committee:0.012107331201164542 Is:0.011128843427405548 well:0.007864292953390858 recently:0.007303925840221087 bo:0.007163891305181026 property:0.006684422461042443 now:0.005922248487078977 hereby:0.005913694846324808 premises:0.004757269212947544 person:0.0043015746555222275 :0.11918495438127727 +the:0.21165040655854114 of:0.17819529753591412 and:0.10345784468358546 in:0.057068463903685654 an:0.05520303093960424 a:0.03766841553111088 In:0.02853462584222281 tho:0.022690852227021434 for:0.021953949353938823 to:0.020961286398981382 great:0.01833487771217823 their:0.017859536265988938 its:0.01716080091536216 or:0.01614382035229248 our:0.015624952880703473 this:0.01560700810018415 The:0.01458187537234261 greater:0.01416496745018277 his:0.01388417256094891 :0.11825381541521034 +Mr.:0.19897655162963462 the:0.07649536900821752 Mrs.:0.06124374733994232 that:0.060423913548428555 and:0.03679846315428854 The:0.031087118485628697 of:0.030445882829920983 as:0.02018832188375561 :0.016438616601481774 Dr.:0.014925446696353848 Gen.:0.00972973778542303 General:0.009470984786785552 St.:0.0090207992958052 Mr:0.00860850969597159 Miss:0.00762845709321735 girl.:0.00698673277248939 which:0.00669193464058917 .:0.006566701241375666 said:0.006344113107048248 :0.38092859840364235 +the:0.19045016745146298 of:0.12344037597096921 and:0.07870799065850427 to:0.04280632593824212 a:0.03799946728924427 in:0.028502408991399473 or:0.018028345145974733 for:0.016913376774663515 The:0.01629393192252944 was:0.015994726752969955 be:0.015246039986879604 tho:0.013716732784689786 is:0.013668001151061914 that:0.01248525591030824 by:0.012293899438121918 his:0.012292896878622677 an:0.0120003384748629 their:0.010488186808302867 from:0.009914792931271047 :0.3177567387399191 +the:0.16509584425913332 of:0.1156134635704538 to:0.07653245518639677 and:0.05337229271089504 in:0.05029576619553829 a:0.03096011331089444 from:0.02155553044987859 for:0.020621172133360486 on:0.018861496101477058 at:0.018742524644774352 by:0.015266509523686947 his:0.015057003654910714 that:0.013731373003469391 In:0.012457437744713562 their:0.01198633540449982 tho:0.011595499246440115 as:0.011479413545505676 con-:0.010699932957879996 :0.010207190461675404 :0.31486864589441627 +so:0.3124281440388313 as:0.16973765229245408 thus:0.11241531628356534 not:0.04560009237346192 has:0.03915883935977666 have:0.034120646391956 So:0.03410631781244399 had:0.026993422077397303 and:0.02347677064332178 that:0.019021118792491087 is:0.01539429720211314 how:0.014424165491119441 which:0.012998250227741473 As:0.011841240095980468 too:0.008622313376689787 be:0.008449637625245457 it:0.008156288919080476 was:0.008027789387009496 a:0.007125220453900232 :0.08690247715542057 +the:0.2790870903672938 a:0.2729338660328522 feet:0.03980997935058028 of:0.03798108591771706 very:0.03517496683608322 and:0.02703722540974928 miles:0.024088619020229598 as:0.02135800723657416 The:0.019192456679224233 with:0.01915123319825018 tho:0.016406839846760096 inches:0.014721179305514994 his:0.013169258497982058 so:0.013148216613034098 at:0.013034491631435914 by:0.011829211210287495 that:0.011285773215686239 an:0.01112548705139425 this:0.009160393588849142 :0.10930461899050165 +the:0.11919516938815296 of:0.07230453158552728 and:0.05781056740443249 a:0.043018564803886335 to:0.031305092790907506 in:0.020848713353460488 at:0.014270110001066288 .:0.012526810245749479 :0.012413283442322082 for:0.011719122709941797 by:0.010808400946589808 or:0.010404172990115616 The:0.01003576004804544 with:0.009811868184449042 tho:0.009295902015355835 was:0.008924239095331684 that:0.008672304223433876 is:0.0085591147338948 be:0.008335143826716943 :0.5187411282106204 +and:0.13287131783286457 fact:0.07820237149594751 believe:0.051429661542661875 said:0.038614936516494947 so:0.03680313624585611 know:0.034572100812604444 say:0.0314499069723634 is:0.030835062714540264 but:0.026800467799096186 found:0.02327631198999351 find:0.02299955362417293 show:0.022372563173150693 think:0.017894252770880265 feel:0.017056527078059134 see:0.016763244422205868 of:0.01602573372184818 me:0.015548835820451627 stated:0.015185463749663923 one:0.015104577876749315 :0.35519397384039525 +is:0.1752026254930031 be:0.12784679727121506 was:0.11237669465527884 are:0.10367811791808507 been:0.07449460198707214 and:0.06303764294080702 were:0.04146468117805504 have:0.037583549463025855 Is:0.03660894249108324 so:0.028065162717349112 of:0.024807643067523893 not:0.024433392331568906 has:0.018422269025290216 had:0.017631778173062645 to:0.0123444028901142 with:0.011841684712042451 the:0.011796034640053632 I:0.01178963788606557 a:0.0116637201794412 :0.053910620979862774 +would:0.13516776815931453 to:0.10175318883572715 who:0.0734216616549984 they:0.06090829687960963 I:0.054414498797697934 which:0.046947310165833735 must:0.0405200574155989 might:0.036445589637541506 shall:0.03272411333844378 and:0.03228038765818951 should:0.03179090655993478 that:0.029508760759060126 not:0.02876680420731567 we:0.028503874055856488 may:0.028150033623979002 could:0.022163961267380006 will:0.019029697840863502 there:0.014322928357478427 They:0.011858887319353098 :0.17032127346582382 +the:0.5295769141526827 a:0.06415744203501766 this:0.060932770154702595 said:0.04193083906715625 tho:0.020858525458002083 further:0.01942957345957696 any:0.0185984055140292 large:0.017618716868522743 principal:0.016478593398509614 good:0.015928302692050693 great:0.013482915144960896 to:0.011468846952432539 whole:0.009873935891353042 that:0.009773801153300652 his:0.00956408235795275 of:0.009446199133998932 their:0.009327600604129236 tbe:0.009287598755672378 same:0.00911576825171604 :0.10214916895423304 +and:0.07558940021936399 recorded:0.030196237618668006 was:0.028917161578042846 made:0.027969746247669736 that:0.027730098932509103 o'clock:0.025060522019555328 up:0.023026552239529506 is:0.020398277211376416 found:0.02003101797656537 placed:0.017482208134164214 out:0.016937164562539058 place:0.016819459500107596 interest:0.016629321966808677 him:0.016002796715253755 situated:0.01573420479581609 it:0.015128305982428461 them:0.014715943643665314 part:0.014646613000297721 interested:0.014450471929902294 :0.5615344957257364 +it:0.16673359405764093 he:0.1336913878379783 It:0.10471441820399155 I:0.07575437317591838 He:0.044398592353684985 which:0.04316740872008444 and:0.03957510410230089 she:0.039563607913057866 that:0.021055142320185863 there:0.020603062721056834 who:0.0180346132782673 She:0.016766159675147742 what:0.012722475899095882 This:0.010527074335761492 ho:0.010394908882772566 lie:0.010107448157151405 man:0.00937267856768219 1:0.008227984109140326 but:0.006912868215047502 :0.20667709747403357 +of:0.3365126327118791 to:0.09300518233777454 in:0.06546344278407189 that:0.05949630863488497 for:0.05758576829877807 and:0.057123892895216924 with:0.038061715236302654 by:0.033766910022765655 from:0.028803465967872487 all:0.02363410632963122 Among:0.023005164925959384 In:0.020436539305164855 upon:0.018625812261958585 on:0.013935645082491333 but:0.012265340585266496 as:0.011735517085102409 than:0.011253192027266526 after:0.00966247428825889 among:0.009511394063132964 :0.07511549515622108 +the:0.807976161204718 The:0.05109771641882213 tho:0.027243982194153093 this:0.016563721988520706 a:0.010890849658367499 and:0.01056843026994289 said:0.009900918799381094 tbe:0.009053840459685531 next:0.004346558577806352 first:0.003664942291186569 last:0.0036380745003347977 of:0.0030096091360105803 com-:0.0029518354968322796 an:0.002096875928656525 that:0.0018359011966051038 on:0.0017519219627813339 his:0.001676514907385433 o'clock:0.001578258335055419 early:0.001436886264807724 :0.027717000408946896 +the:0.22240718530639325 a:0.15788299769709882 of:0.14022888791312854 to:0.053173040761095185 this:0.040018302354167666 in:0.034117356439646924 his:0.03370337619411602 and:0.032939077254686644 that:0.028744936145128155 no:0.020599881929867562 any:0.020449029032655736 great:0.01720981876732804 their:0.01692051070052194 tho:0.01434219666412436 every:0.012776640264493877 or:0.012205782362066937 for:0.011516042378518485 its:0.011327618568201171 her:0.010204469832769885 :0.10823284943399081 +and:0.07895257911471103 was:0.03596317658514438 out:0.024016824392823457 that:0.023672598027062328 placed:0.022844208461019616 work:0.021707439938587154 made:0.020781005318872947 is:0.020224993929329655 up:0.019794182040466738 put:0.018288921183371155 down:0.0171740551508179 interest:0.01663630075189571 point:0.01659978677065351 him:0.016175999448187352 held:0.015562908663841706 Dakota,:0.014616466073415059 place:0.01424333231426501 Minnesota,:0.014067166610364513 it:0.013665465625771424 :0.5740125895993994 +of:0.17864805963673433 and:0.1669426325722521 in:0.1211400213525846 to:0.09840165392872141 the:0.05379899079939686 In:0.03601137695996825 that:0.02379590097645176 they:0.022434974599760318 by:0.018998409366810194 is:0.016459449152071624 not:0.01554118813349552 as:0.015530547383373552 for:0.01477792689155123 with:0.014219188699297461 or:0.01401427675185585 all:0.013537125500390716 which:0.013074173096187499 we:0.012302457634134378 some:0.012198253886837568 :0.13717339267812478 +few:0.11845907677328858 five:0.08439619739793135 30:0.07850026761141721 10:0.07331350120006629 15:0.056542785663381515 three:0.0552525244285498 ten:0.05104106757798604 45:0.04637609395262313 20:0.0390673993970377 two:0.036638087461640684 four:0.03533702162967387 51:0.02875891304802171 49:0.02845506021786253 9:0.023327885950192355 4:0.022320132096812353 fifteen:0.020499110726859247 11:0.020116096549938536 thirty:0.019755482803976272 twenty:0.019043590469622975 :0.14179970504311784 +of:0.1943904927385681 and:0.08547718814977584 in:0.08309844890466198 to:0.08153060927259548 that:0.0642342315324886 with:0.05670920861962772 by:0.04193401967286266 is:0.04008404664915967 all:0.0393828522772811 for:0.0354363710502709 on:0.02948979068795283 from:0.02646599961879258 was:0.0226262720778079 In:0.01930043800731731 have:0.0183050315477543 as:0.017985576891082974 be:0.017445966775775888 upon:0.01555202125044784 under:0.01502227065232163 :0.09452916362345472 +the:0.4948537718626509 The:0.0900788814919938 this:0.07374372049904132 said:0.048805759440164444 rail-:0.03869430427944621 tho:0.026431845765137744 rail­:0.02395240548706722 a:0.013084651087742746 that:0.01284016669949083 our:0.012579812990898323 This:0.012005003803789577 rail¬:0.011798766499805888 of:0.01177612398112073 rail:0.01071269259345959 and:0.010392154407649824 new:0.010389232127122653 tbe:0.009801634886097593 Rail-:0.009784240232442907 present:0.007016768730211001 :0.07025806313466672 +a:0.2555825822015734 the:0.2411260502649796 The:0.0677554272654277 this:0.02380589806988192 his:0.02079554060180436 that:0.01899538078417336 tho:0.01578969418134603 A:0.01553192129522982 one:0.014416771412634566 of:0.014037961676118019 little:0.01325001327901001 our:0.013224843809985915 old:0.012752508675282397 whole:0.01195075821206998 This:0.009974684509865613 young:0.009160615666388932 my:0.008973388375067136 her:0.008812876293910874 white:0.008152880286689474 :0.21491020313856082 +of:0.23989522691839948 to:0.09898068852587726 in:0.09648981082702356 and:0.057569574201758865 that:0.05139038318581748 by:0.049314428114166996 on:0.045768066425910775 for:0.04525437927149627 at:0.03646814280173064 with:0.0336310908704847 from:0.03319854888646574 In:0.027586948256793736 as:0.01674751962115763 is:0.016401093775833927 under:0.015204574286734981 was:0.013831817681086454 upon:0.013183499059952185 when:0.012148541685756154 but:0.010759462497630927 :0.08517620310592224 +the:0.11274823966931571 and:0.08329996793360815 to:0.062372082173126384 of:0.05346002906215973 so:0.0299749817344208 is:0.026294180790411077 be:0.020260006954324915 he:0.018124449911071136 was:0.016351044211737983 re-:0.01567649125103956 Mr.:0.014726716630740086 in:0.013675410003338988 for:0.013272602215284653 a:0.012159264338821467 I:0.012040910229586727 or:0.010977326121126826 :0.01035107289213954 are:0.010219913969554774 not:0.009881708091297656 :0.4531336018168938 +in:0.1910057016572792 for:0.14371224779040032 of:0.13454645980448635 to:0.07062793166028919 on:0.05868757913317571 In:0.05281720086638102 from:0.04099263393883428 at:0.034109192136781166 during:0.031004600056971744 with:0.0293126809679376 and:0.028366441178599818 by:0.028365873997300964 that:0.02105958558103536 after:0.016759473212403182 upon:0.014602946266822263 through:0.012700991593453686 On:0.012497645581443537 into:0.009819623502723456 all:0.009467842977801448 :0.058543348095879716 +made:0.06897469173957262 and:0.06707969442928423 owned:0.044795696704866335 occupied:0.03113432587619084 accompanied:0.02808757127170626 assisted:0.02590603164025979 given:0.022870893146847822 followed:0.022717274034879564 signed:0.019806739468716094 appointed:0.019586693496253835 held:0.01891992138582011 that:0.01856113063703692 ed:0.018485025614210233 done:0.017762124408748175 taken:0.016397486147789544 him:0.015999303309479948 or:0.015371676219410562 but:0.015233866638472588 day:0.014654389081588035 :0.4966554647488665 +is:0.21803364873260203 be:0.17196231202339207 are:0.11185956233733761 was:0.09345699932866482 and:0.06012048488981006 been:0.031594222030979974 Is:0.029832959598566904 not:0.029284854426310642 were:0.02901440159550506 with:0.023907439190107873 it:0.023859084402588084 of:0.022840916897891896 Cash:0.01834969137671117 sum:0.014627504656737976 bo:0.014598681340047999 amply:0.014236863505733627 as:0.013410726880382888 in:0.012914289209295804 or:0.012840926592986843 :0.05225443098434667 +person:0.05952189448318162 one:0.052025008327708816 more:0.027332341715790312 action:0.024070268372927375 man:0.023368472814970884 city:0.018527342909129173 in:0.018140745926608377 owner:0.016579618548591985 law:0.013535517690927801 agent:0.011534632826955599 right:0.011528930611194803 county:0.011380300188881162 state:0.010378793264949455 town:0.010311597277647609 tion:0.010008464368569765 that:0.009796450474512592 State:0.009660334375473166 day:0.009654900285631431 piece:0.009524760937656385 :0.6421196245986917 +the:0.13309779970470206 was:0.11850841277880993 be:0.073981208655642 and:0.057701804960855856 is:0.05720478335421856 been:0.04278338370650173 a:0.03921212250579787 were:0.034619814978120896 are:0.031210679376632345 to:0.028803481966576013 being:0.020601092979713336 at:0.0174736837370709 of:0.016753997110919613 or:0.014670482550901968 in:0.011238492028681307 as:0.010791558234289875 not:0.010353717076301165 Is:0.009593030584963566 much:0.008410737441684813 :0.2619897162676162 +and:0.11717132479065025 of:0.05975776404107632 the:0.036894797744751906 be:0.030476697286946262 a:0.029689055699173163 in:0.026487129630288927 is:0.026201236531637237 was:0.025891673231283507 he:0.024166191619701714 I:0.02129953996234262 to:0.020689032195699227 they:0.017691857447921393 that:0.017526962289634983 it:0.017418942196368217 which:0.01639384581937364 as:0.015422020984154518 are:0.015414815296460722 or:0.015342212184098876 for:0.014934605060334663 :0.4501302959881019 +made:0.0643126829595994 and:0.0627581189230708 or:0.03211605780703522 it:0.0196933030612712 paid:0.01809506963703845 accompanied:0.01809072839028369 that:0.016925424786826303 ed:0.016639887948187927 done:0.01615725991466513 him:0.016120970822416782 caused:0.015256944816503862 out:0.0149090010160046 followed:0.014725757113667077 given:0.014587971361630458 shown:0.014295257476016288 only:0.013221519512460473 claimed:0.012397601206602068 upon:0.011972241731809266 used:0.011724880412870026 :0.594999321102041 +and:0.04462118554346252 was:0.025134690219707056 application:0.02288259529644857 there:0.021538157069052776 so:0.01859957375114797 place:0.018350937917128517 feet:0.017464644681589366 as:0.016986529360585957 him:0.016658591359044957 up:0.016589783689932497 made:0.014980648952240149 it:0.014948533946525027 is:0.01427871711141669 out:0.013832986536789056 not:0.013711906301062022 one:0.013505048535248056 but:0.012465192734955331 them:0.01139433103907569 called:0.01127110239832206 :0.6597848435562658 +the:0.2934797871367701 and:0.0774890770440539 a:0.06805057513303953 of:0.06027881425671598 The:0.05824089753671159 this:0.04052880785618931 his:0.030352460545324873 its:0.02259195179489055 tho:0.02244909935446117 or:0.02116376753287128 their:0.01869985918841322 same:0.01751738017299709 in:0.017084055373699322 said:0.012799300513870855 on:0.01243997677523179 that:0.012049391035605216 any:0.011930379642667738 to:0.01167335369310389 such:0.011464725783150156 :0.17871633963023245 +virtue:0.062060494787377685 out:0.05417899169104244 part:0.03289673107629515 one:0.02969369892462812 quarter:0.027015883171169475 favor:0.01993830018372674 result:0.019463829004704194 guilty:0.018891084377354095 means:0.018499162894926688 end:0.018170939082736048 that:0.018121271122199262 construction:0.01726217741616459 presence:0.017003995482744873 tion:0.01673652166540914 case:0.01640819963257697 side:0.016055927605250184 erection:0.015381239457214257 account:0.015287601389485416 hands:0.015156055434805247 :0.5507778956001894 +is:0.13030857312070512 was:0.09680652415447637 are:0.08201999923717347 did:0.0790595326303509 do:0.07215816208255724 could:0.05799031418203049 and:0.0507887508926188 does:0.04864229928982388 will:0.04854640933576163 would:0.04155227816171379 were:0.03888568717480415 had:0.022728217386867866 Is:0.02002134604877732 if:0.01835653530257919 but:0.01782471105297468 have:0.017598658880332844 has:0.01671622045559762 should:0.012750134334889756 shall:0.01175599227108347 :0.11448965400488138 +the:0.14048602411779254 of:0.10252225631561868 and:0.07633183975731359 to:0.03245895674061561 that:0.030733737144535016 The:0.02900268575179401 in:0.027931447478085947 which:0.018752304155935415 or:0.01571308762550976 :0.015055749982663399 Mr.:0.0149342694058751 their:0.010852954179470109 on:0.010754035534755927 as:0.01048165637565865 for:0.010288939626440372 said:0.01005519865138013 tho:0.009754500854680081 he:0.009279558727176576 a:0.008993895187521092 :0.41461690238717797 +and:0.06757538639375386 able:0.04480443256440997 order:0.04164193849152858 him:0.03728612471927136 necessary:0.033553024710615324 unable:0.02958898131391231 enough:0.027378510210707207 is:0.02676363856814044 them:0.02620870961657156 allowed:0.025056188179911787 was:0.023524084134238343 have:0.021626974897503662 time:0.021139398915115116 refused:0.021127472431644687 me:0.02111167206376693 as:0.021037750728518902 right:0.020928519889492604 power:0.02014589362912954 required:0.019997383235232126 :0.4485039153065357 +and:0.09265821071003848 of:0.07588637156317918 the:0.07223074255348198 to:0.05337536936162044 in:0.03418366664974142 for:0.026388815076355647 a:0.018823104604324077 be:0.017877144321235345 :0.016901670709614406 is:0.01662526047319965 was:0.014681030057392342 on:0.0131932136847272 as:0.012545180635660957 with:0.010774956432943995 1:0.010724058066300047 ex-:0.010580409446161275 or:0.009746149076546329 from:0.008939455114732195 In:0.008623754801996024 :0.47424143666074897 +of:0.28767355066866834 to:0.08775711267569858 in:0.08678131196995101 and:0.05160598694501188 on:0.04646139928102899 by:0.04519522654900943 for:0.044547789071328545 with:0.03396756772609607 that:0.033699232901107726 from:0.03075346596941143 at:0.027039283056790858 In:0.021061449543044047 as:0.017514234937992545 all:0.012543839382496166 upon:0.011844431150487573 is:0.00998972746569266 was:0.008814315973987914 into:0.008557199930727406 through:0.007781895704231326 :0.1254109790972375 +and:0.08702907123944087 or:0.027157707096730276 that:0.016927222188748953 it:0.01223199886550176 is:0.011411185326959637 one:0.010829454711774369 out:0.010718671263074128 but:0.010688614756136526 are:0.010587714651690996 those:0.010473694464202082 not:0.010202620517933931 be:0.01003265827686416 of:0.009067966262782577 day:0.008850282615561889 way:0.008840311452812909 property:0.008465156699873563 for:0.008210933868105197 now:0.008105002182121512 years,:0.007754152242928632 :0.7114155813167561 +in:0.19318598900801717 of:0.12141459057833048 to:0.07278019303421908 with:0.06026661376922482 for:0.05387097695820097 from:0.05211801958806367 by:0.04866330916740359 In:0.04399731632527883 and:0.024960524658762147 upon:0.023909760609306618 on:0.021676744739552233 at:0.019549918187511346 after:0.018025376417767754 under:0.015119982143164372 through:0.013910035091781351 that:0.008777507307425773 during:0.007994639943680047 over:0.006824864362379838 into:0.006078776816569285 :0.18587486129336062 +of:0.24438647783288206 and:0.0818613456821997 that:0.07308870387011691 in:0.07109620157118386 to:0.06751365866772063 for:0.05461890051767524 by:0.05018729502974304 when:0.03114175814220727 In:0.025239090652822833 from:0.02227141745881392 with:0.021423247696474582 at:0.02001291207803463 as:0.019484475594172185 but:0.018708695206628736 on:0.018699750898447103 during:0.016931872995200613 which:0.012342040925978022 until:0.011542199384212875 was:0.010148758212629661 :0.1283011975828561 +the:0.5842862490412873 a:0.14321627724729677 The:0.04108899727858305 tho:0.03204563951154414 and:0.02482941839397715 seating:0.018794833419272086 this:0.01627933804958939 great:0.013549822229509819 tbe:0.01228562867804619 A:0.009491298581169606 every:0.009075370198098358 or:0.00904643519239043 any:0.006911513171310761 good:0.006836658165356446 true:0.005791085563611038 our:0.0054784358745121635 productive:0.005370944589120133 full:0.005368271050348107 his:0.005226871990731054 :0.044026911774245885 +sum:0.03352282876311118 number:0.028116684882597106 line:0.019995206059833036 city:0.01946514558931857 out:0.019275318828420953 day:0.01666865340772654 county:0.014872697538657208 amount:0.013254184849875051 Board:0.01252325449624941 town:0.012449555905674143 side:0.011663975251122375 part:0.011517157473718155 County:0.011460540331966697 state:0.011087331502382173 City:0.010878919191854432 purpose:0.01081028255427907 and:0.010297866493795984 way:0.009848747943663767 name:0.009522170936943183 :0.711769477998811 +the:0.17234101881375233 and:0.0723308580507978 a:0.06418362524859451 of:0.059381903314211774 to:0.05765128534513001 so:0.0292258426364823 is:0.027247612130850953 in:0.024298181821023074 be:0.020836055953937775 was:0.01790457325883464 Mr.:0.01622639783612973 tho:0.012553953887538211 I:0.01099826163396415 he:0.010910273396485398 not:0.010754844629789139 at:0.01064958641021041 :0.009679095332540733 for:0.009454446178783427 or:0.008882500654999364 :0.3534896834659443 +of:0.21316194369748867 the:0.19214376826826549 The:0.06510826974484135 and:0.03272657316118734 other:0.027871209944964743 these:0.027759307269186465 for:0.025984806771895987 at:0.02179893238777079 all:0.021062061489408413 their:0.020364397095505346 a:0.01585924813645812 this:0.015604762423116666 our:0.015157823595762693 or:0.01470648712546478 that:0.014631496360909936 his:0.01444786308964783 new:0.01440118049395637 tho:0.014180223738454633 in:0.01401652278138024 :0.21801312242433418 +the:0.11919516938815296 of:0.07230453158552728 and:0.05781056740443249 a:0.043018564803886335 to:0.031305092790907506 in:0.020848713353460488 at:0.014270110001066288 .:0.012526810245749479 :0.012413283442322082 for:0.011719122709941797 by:0.010808400946589808 or:0.010404172990115616 The:0.01003576004804544 with:0.009811868184449042 tho:0.009295902015355835 was:0.008924239095331684 that:0.008672304223433876 is:0.0085591147338948 be:0.008335143826716943 :0.5187411282106204 +of:0.3605274226544136 to:0.1236229530686763 in:0.10856390225353885 by:0.04754252833082726 for:0.04744700680740643 that:0.04578193005641065 and:0.042708030633948416 from:0.02536859391407343 In:0.02333912901468964 as:0.021914837466790724 with:0.019835315434029818 all:0.01630569122810092 which:0.013525600849705511 at:0.01184265385823661 on:0.007783563878795918 when:0.006860019324986199 before:0.006653109642141446 into:0.006627715621228086 through:0.006080771309561458 :0.05666922465243874 +they:0.1339461974459378 who:0.06449150759567976 there:0.05964669119660761 we:0.0585849824831157 which:0.04520706527438132 and:0.04286863407622332 you:0.03913729104764804 There:0.03396718801066769 They:0.03209640169845594 that:0.031200974702725145 men:0.019845671685432692 We:0.019418999595623168 people:0.013692363921183908 as:0.010974793792506123 them:0.008386153753557493 these:0.008192396320777473 You:0.006556364269777689 These:0.006145955695672415 but:0.0058114506320729896 :0.3588289168019537 +:0.11697507605016853 .:0.015240840337075937 it.:0.010209232880934409 them.:0.0076356457527570355 of:0.0074851676057392765 day.:0.006723461370762294 time.:0.004915359932037894 year.:0.004517066408041774 country.:0.004246745383232696 years.:0.004225068637975663 city.:0.004196098358317594 to-wit::0.00417299819964855 him.:0.004047423949998904 work.:0.003519769088429826 law.:0.0034511161083659496 to:0.003144271956802047 ::0.0029754495133087174 water.:0.002956675947677978 men.:0.002955018367043771 :0.7854075141516811 +one:0.1028303141280697 part:0.05963429477052991 out:0.04766456937681193 some:0.031418679026461914 members:0.030764490253327767 side:0.029940657362655835 portion:0.022063658796890564 office:0.020457735219956013 member:0.019726706386316174 end:0.019666887540649894 tion:0.018667441728710307 parts:0.016814747270460957 people:0.014112771422418794 all:0.014072739582212475 any:0.013183573287639892 One:0.013083578354183906 that:0.013024335602903442 account:0.012482348155001894 many:0.012077825070275192 :0.48731264666452345 +the:0.37075894884550453 of:0.10715304836349582 to:0.07147866281398102 and:0.04733998149100959 our:0.04257028011856445 by:0.02647579338870112 many:0.02288274171958856 The:0.02196152451347958 these:0.021680756800375706 American:0.020414167548510363 for:0.01431117665838581 tho:0.013593333585809948 his:0.0131919031253516 colored:0.012368351882097615 that:0.012277351111454386 their:0.012239819248805692 as:0.011235146007645554 white:0.010857107658365601 other:0.009902937985239618 :0.13630696713363344 +of:0.2077743388666079 in:0.1442616692169553 to:0.09802028514120245 for:0.0653921594907628 and:0.05375979846210991 by:0.05142130058811927 that:0.0446962231458874 with:0.040931910980799374 In:0.03059037544695825 from:0.022501640954021487 on:0.019302991154048748 at:0.019237639410477233 all:0.015628672039249225 as:0.014692970892230485 upon:0.01450454351178973 after:0.012362617443052115 before:0.011993791793209571 was:0.011702059633989223 is:0.010900735652769392 :0.10932427617576014 +of:0.32821771624862844 is:0.06595386849471895 to:0.06119276601957803 for:0.05935045847556686 in:0.05356465057085678 and:0.05081295648865407 with:0.044671162181614925 that:0.03668025126974825 by:0.0314248115922167 be:0.02800593680344437 was:0.025495952122687043 as:0.01995041489122556 on:0.019174529765723 from:0.013663353469875288 but:0.01258929077644301 In:0.0115461201361564 upon:0.010596925720136386 at:0.010260320779282678 Is:0.009934584441691981 :0.10591392975175122 +of:0.22362359732579185 and:0.09094628149122741 to:0.07968534830422304 for:0.07632418833436243 all:0.060448817320915706 that:0.05540945560331937 with:0.051744668482349356 by:0.04227797907468696 in:0.03160039159866308 is:0.02385709874933437 from:0.020644643374561792 as:0.01975060223209469 at:0.018835739888713815 on:0.017686564715140615 was:0.013542072038923042 upon:0.012787952455647629 are:0.011853305238175196 when:0.01093331274486829 which:0.010895637946852093 :0.12615234308014925 +one:0.1028303141280697 part:0.05963429477052991 out:0.04766456937681193 some:0.031418679026461914 members:0.030764490253327767 side:0.029940657362655835 portion:0.022063658796890564 office:0.020457735219956013 member:0.019726706386316174 end:0.019666887540649894 tion:0.018667441728710307 parts:0.016814747270460957 people:0.014112771422418794 all:0.014072739582212475 any:0.013183573287639892 One:0.013083578354183906 that:0.013024335602903442 account:0.012482348155001894 many:0.012077825070275192 :0.48731264666452345 +him,:0.028310204014180954 her,:0.024534782009342785 him:0.023672854742087194 ;:0.019625747071829666 it,:0.01870125139901923 them,:0.013412793758392105 up:0.010995578897090384 man,:0.009725795042757883 me,:0.009451702162923263 her:0.008646956744249194 time:0.007937262011526015 time,:0.007666531121808877 up,:0.007557799495371146 in:0.007500661146223158 them:0.007122934183738588 years:0.0070523139593080784 here:0.0069260144599494295 me:0.0066021714991614045 life,:0.006306665838848261 :0.7672499804421924 +for:0.09323054213479401 and:0.09109431574276669 as:0.05340519933551984 that:0.05014368710784946 to:0.04805277370038703 in:0.04579061544058636 of:0.04085022045820151 but:0.031971822995951214 cleanse:0.03175677237931927 with:0.03078808485586589 do:0.02380275069997422 until:0.023337584509140263 on:0.020537462390256764 upon:0.01917251648444206 about:0.018463841859067343 after:0.017587414688359275 make:0.016878872580575008 made:0.016423997250704512 at:0.015953719093426823 :0.30975780629281247 +the:0.5791566480545886 a:0.04890291854562759 The:0.04634224123821391 tho:0.036177033971912485 of:0.03397957048939095 all:0.031744010512540916 and:0.02924656082903219 other:0.025788773863584212 tbe:0.013465345702319307 different:0.00758520481323005 in:0.007337113387914649 citrus:0.0072286024951467125 two:0.00633540643453585 these:0.006154222273532988 with:0.006064206571312705 or:0.005660302364734337 for:0.00529558336701552 as:0.004629359668817378 some:0.004389703652553045 :0.09351719176399668 +the:0.31843448020294346 and:0.08427617063470719 a:0.07990379236759727 by:0.06096772865652544 The:0.05632319443656562 of:0.037165707087679724 tho:0.0227138827438965 in:0.022556870088259726 with:0.012898177080538406 tbe:0.009902700961758255 or:0.0076468385722686825 for:0.007234756343817379 good:0.007233711232170619 this:0.006929205487686063 first:0.0068995752063414 In:0.0065437753139259095 that:0.006482914210565137 to:0.005966172247644906 on:0.005905505821943824 :0.23301484130316447 +:0.04908375796753416 them.:0.02404701091990132 when.:0.020499909648167006 it.:0.018758262535100854 him.:0.016894589086696166 her.:0.010534787859815337 country.:0.009077886633995037 life.:0.008011784338556208 time.:0.007563066011757588 work.:0.006871322341140117 water.:0.0062232559537788645 again.:0.006023776145210965 home.:0.00584040342740386 world.:0.005783337060872959 well.:0.005509139728897148 people.:0.005483753374932625 all.:0.005454071625885838 .:0.005200721749669711 night.:0.005136287747606851 :0.7770028758430774 +the:0.6684398483995099 The:0.186806168884747 tho:0.03342629421477491 and:0.030322359205198195 tbe:0.013587014175924884 Tho:0.007357408321329985 Tbe:0.003333892014989793 of:0.0030152183326721408 that:0.0025696632399273465 a:0.002542912668847661 tlie:0.002466988572885793 A:0.0023741510153428977 to:0.0022551378811646833 an:0.0021405968969580814 by:0.0018927787345752105 "The:0.001847854549317448 tha:0.0016698591384389438 from:0.0016313969759719667 on:0.0015364345525960281 :0.029784022224827168 +the:0.39749834532651884 a:0.07520030034269234 and:0.05540858759821703 The:0.03273515726769502 tho:0.030061875542463562 of:0.020144331424922633 tbe:0.014929647509541684 in:0.014268129706664795 or:0.013333166761078447 .:0.013287381914101323 an:0.009000188755386574 to:0.00880680429595084 :0.007943763822197133 Mr.:0.00773879605474787 by:0.007328417831573476 as:0.005922572098978465 for:0.0047526933692942485 that:0.004736121968310169 on:0.004594595720579333 :0.2713091226890862 +the:0.15062353415609026 of:0.07912706015328233 and:0.06572892233615747 to:0.058948709564443084 be:0.03756040984197315 in:0.032713072829844744 for:0.027792730727935203 a:0.026241905833703012 his:0.02461421944329024 their:0.02374989179128973 or:0.021942311846200494 is:0.021092873304573566 was:0.020783269878328462 that:0.017788941018546202 as:0.017017141107273096 he:0.014892456277622125 are:0.014756693538842213 so:0.014474174376597286 ex-:0.01423649488066635 :0.31491518709334093 +and:0.32161488731122634 the:0.06870133381923103 that:0.059030735618920124 of:0.03867369920663393 as:0.03518468934435158 if:0.033691621077990966 than:0.029862888593197575 when:0.023158737683514313 but:0.02202860126126486 which:0.016872258416203958 The:0.016535441663714394 If:0.016410779153637114 last:0.015296630162674664 this:0.011582823636458016 he:0.011502342701512496 was:0.011326177333392197 I:0.01107482558039798 first:0.01039985492920767 or:0.010384200283507542 :0.23566747222296328 +the:0.16446836445005697 and:0.08980042068295702 of:0.07545440358519626 a:0.05183869186889099 to:0.05138299375156314 in:0.042274081925296275 be:0.024401458491902773 is:0.024110572686089692 that:0.021408406933943778 with:0.021058066175859015 for:0.020695390493219362 an:0.020631562529476902 or:0.01910060461521695 in-:0.017041408946168495 was:0.016768980517860587 which:0.01600648105974327 as:0.014340396854145152 their:0.013782455312340371 he:0.012269077093705892 :0.2821661820263671 +the:0.24325187455767389 oppo-:0.1219631655591499 a:0.11748132458936683 and:0.04506963729740674 of:0.042091618370469756 their:0.028092156669236024 his:0.020751027564882757 one:0.01957389216164626 The:0.016904464295818006 tho:0.01613711536185101 new:0.015207939758137152 our:0.014123125677468307 county:0.013364240454204028 in:0.012032352462664856 re-:0.010983387559922423 present:0.010896486877110886 high:0.010545314535706899 said:0.009156573337128254 its:0.009133657482136863 :0.22224064542801916 +the:0.11274823966931571 and:0.08329996793360815 to:0.062372082173126384 of:0.05346002906215973 so:0.0299749817344208 is:0.026294180790411077 be:0.020260006954324915 he:0.018124449911071136 was:0.016351044211737983 re-:0.01567649125103956 Mr.:0.014726716630740086 in:0.013675410003338988 for:0.013272602215284653 a:0.012159264338821467 I:0.012040910229586727 or:0.010977326121126826 :0.01035107289213954 are:0.010219913969554774 not:0.009881708091297656 :0.4531336018168938 +one:0.1028303141280697 part:0.05963429477052991 out:0.04766456937681193 some:0.031418679026461914 members:0.030764490253327767 side:0.029940657362655835 portion:0.022063658796890564 office:0.020457735219956013 member:0.019726706386316174 end:0.019666887540649894 tion:0.018667441728710307 parts:0.016814747270460957 people:0.014112771422418794 all:0.014072739582212475 any:0.013183573287639892 One:0.013083578354183906 that:0.013024335602903442 account:0.012482348155001894 many:0.012077825070275192 :0.48731264666452345 +to:0.15718290730695145 told:0.10534372726705858 with:0.08140451880520891 let:0.07635645057085337 tell:0.05590053890195099 of:0.054112641367949466 made:0.04329100059233113 make:0.04254450670554806 for:0.03234893443312179 Let:0.030204947301663943 upon:0.022789874884140502 asked:0.02198248403451192 give:0.019765946788423878 gave:0.017351193760507633 see:0.017022236379350648 by:0.016892182211677178 makes:0.015708932178366844 have:0.011651968137994798 tells:0.010571323205376092 :0.1665736851670128 +the:0.19910132350662244 of:0.1434853424172865 and:0.06523969269708618 The:0.045324441793070394 his:0.04410872853036679 I:0.03789867777891979 that:0.036312945829001776 a:0.03611967141433889 in:0.032056396933265216 to:0.03159807183245484 by:0.022427075805980527 their:0.02175061890723772 no:0.019970115131330807 my:0.015607322859281694 her:0.014788466228898938 good:0.014715145474439273 you:0.01360205195921659 tho:0.013303338826996412 not:0.012961643062193957 :0.1786289290120113 +and:0.1613259252889117 so:0.08105690961116276 as:0.07215480722663863 all:0.04493141328634259 said:0.03839883365026912 is:0.03432115058802604 fact:0.031390434309839364 of:0.0299462828658515 than:0.027096024468127713 to:0.023890674215113816 says:0.017955089714701045 say:0.01654749579330691 was:0.016398733133433843 stated:0.014588088919920238 be:0.014323868691836493 know:0.013413434201291586 show:0.01324232848474147 believe:0.0119760462222374 such:0.011447385704802762 :0.32459507362344503 +of:0.3728318622761715 in:0.13458219233902644 with:0.057709533629301826 to:0.050549713357459246 for:0.0473782535379353 that:0.04515904122991062 by:0.04333430200597291 any:0.030521578255129182 and:0.02544988585721215 In:0.02476949211832058 have:0.015118372132807981 no:0.01481738350540679 upon:0.013802247956832157 make:0.012387273914294363 from:0.01188035406418703 on:0.01169368534210221 under:0.010972427554928305 at:0.010927002908251212 is:0.010924486598935862 :0.05419091141581435 +of:0.13917146145420697 in:0.09017536636107427 and:0.0820741366481696 with:0.06842278274206942 to:0.05753477506951965 for:0.05233480565750112 by:0.042749950214104215 such:0.04180680620441987 as:0.04072415825260824 is:0.039907492568008886 that:0.03926466833561838 was:0.033564467532931686 at:0.025759191119768335 In:0.019237944905973133 from:0.019098128667011792 have:0.017785295236003165 be:0.017305266611436346 but:0.013799191441926574 on:0.012294781883950815 :0.14598932909369755 +of:0.29581124568678835 in:0.0943727450758361 to:0.08309241748196897 on:0.06801614002424683 with:0.04351903849677403 for:0.04126065511558808 and:0.03893551985104005 from:0.038276161425582315 by:0.03681093396018978 that:0.036561945731777595 at:0.02432735162855953 upon:0.01798440300873705 In:0.01655921294497558 over:0.012813693349994514 under:0.012354769362908274 into:0.011983162700961279 as:0.011342828466482288 about:0.010889196293375036 is:0.007970119959887782 :0.09611845943432659 +of:0.13084814232797154 in:0.0740836656586379 as:0.0625527229231004 with:0.059577596335708534 to:0.058433603729754965 is:0.05551580107464621 and:0.04946529489577619 was:0.04264000753602388 for:0.04009673021586375 by:0.037684080471064085 be:0.023941707008899252 on:0.02316059851167503 at:0.022644769441950232 such:0.019950936521181326 that:0.017856095877642635 like:0.017386655618315594 In:0.016902219705578994 from:0.016046571451088905 not:0.01205910100844263 :0.21815369968667797 +the:0.11919516938815296 of:0.07230453158552728 and:0.05781056740443249 a:0.043018564803886335 to:0.031305092790907506 in:0.020848713353460488 at:0.014270110001066288 .:0.012526810245749479 :0.012413283442322082 for:0.011719122709941797 by:0.010808400946589808 or:0.010404172990115616 The:0.01003576004804544 with:0.009811868184449042 tho:0.009295902015355835 was:0.008924239095331684 that:0.008672304223433876 is:0.0085591147338948 be:0.008335143826716943 :0.5187411282106204 +of:0.28767355066866834 to:0.08775711267569858 in:0.08678131196995101 and:0.05160598694501188 on:0.04646139928102899 by:0.04519522654900943 for:0.044547789071328545 with:0.03396756772609607 that:0.033699232901107726 from:0.03075346596941143 at:0.027039283056790858 In:0.021061449543044047 as:0.017514234937992545 all:0.012543839382496166 upon:0.011844431150487573 is:0.00998972746569266 was:0.008814315973987914 into:0.008557199930727406 through:0.007781895704231326 :0.1254109790972375 +feet:0.0719208472326295 poles:0.05759396229176634 up:0.04010587224329879 chains:0.0385088170079141 entitled:0.029123404981740347 went:0.027388526271997813 came:0.025857650765910022 down:0.025633262313841977 him:0.025574415868859987 as:0.024916209858287616 and:0.023917753661251574 subject:0.02185045005331621 brought:0.02171367122116056 them:0.021644069985480026 it:0.02099405133651225 rods:0.019030517253069822 back:0.018922583019034468 go:0.01891708435510451 sent:0.018892511875840953 :0.44649433840298314 +of:0.3363545621985301 to:0.08874813437020228 by:0.07879502807237863 and:0.0590147415127103 that:0.05527815737165737 with:0.04810829487583964 in:0.04023663173921026 for:0.037723397110877153 from:0.029310705719624575 under:0.022963412701421503 on:0.020871069820240045 at:0.0201540326203812 as:0.015757481655295547 upon:0.014639875196775379 all:0.010569300616707458 In:0.010410262966143032 which:0.010253879734031248 against:0.007906592887590014 when:0.0077771913148538775 :0.0841272475155304 +of:0.4288280206655963 in:0.07550068428209242 that:0.0534004266589644 to:0.0497435457863459 for:0.04200624651561214 and:0.03644760532003738 all:0.03642601623496853 by:0.02885855539979331 with:0.028292609550459494 from:0.02357085876411044 on:0.019506231888604005 In:0.015391803460841071 as:0.014675457484520909 upon:0.01089067691595807 but:0.010785954150181985 which:0.009871686962657973 at:0.008329984711955516 ot:0.008052108314384677 All:0.007587606488429654 :0.09083392044448589 +to:0.1917672849862255 with:0.07993977642169568 told:0.07246744821779016 give:0.06217676258502141 gave:0.05448135072878846 for:0.05359837428069894 by:0.041323550979010255 made:0.03463599304052811 make:0.03214947228074317 of:0.027032845761030603 upon:0.02624243281628447 found:0.020903552605179447 tell:0.019990614919015652 saw:0.018705726371380335 gives:0.018078103582140882 asked:0.015093131495581199 given:0.014716597385853283 see:0.014611929992476194 let:0.014497609028054578 :0.18658744252250167 +the:0.08891715144806267 of:0.06838653071275312 and:0.05246068722139148 to:0.03352002756889277 an:0.027936406257045264 in:0.026899815296484216 be:0.022186731443669314 is:0.021264543452506723 Mr.:0.02108360336577109 his:0.01997781459939538 was:0.018060369874453128 that:0.017840608949453 a:0.01582188289484564 con-:0.01363948402455952 for:0.012653366523470348 as:0.012539609816061191 on:0.011456684392218437 her:0.011159805966224777 or:0.01082530368002482 :0.4923695725127171 +and:0.0869743300955074 that:0.03556749079984914 was:0.03234216042620933 is:0.027693965892075973 work:0.02471023929206034 put:0.024467894236185277 them:0.02388298412011947 due:0.020693316654769242 out:0.01840244487859098 up:0.017964029537353113 interest:0.017582995770353042 it:0.01756871478698917 placed:0.017207821071143894 or:0.017104637067828093 be:0.016985386675727084 him:0.0160984842726688 down:0.016014263986935885 made:0.01579353250668994 are:0.015452259040421084 :0.5364930488885228 +was:0.17244274161609915 is:0.12307186585157243 and:0.10273908220971234 are:0.10261697047939826 were:0.06556074858363717 be:0.06387083296302867 been:0.05525182636074172 so:0.03064139037439774 Is:0.021787826868198076 he:0.020640958354961207 has:0.018317629689874028 have:0.017535186463585452 it:0.014280296188794419 had:0.013606437619683267 or:0.013557450956896625 not:0.011760577320256559 which:0.011400399279845472 He:0.011147107167615395 am:0.011130749162182164 :0.11763992248951989 +of:0.27558877094185474 to:0.07793443609393182 in:0.059830183041070815 on:0.05837393265351075 by:0.058098263374169956 and:0.054757990035330696 that:0.049768470891421675 with:0.043812452983334096 for:0.03528756692510737 at:0.03521266239299317 from:0.027323064622607387 is:0.01707266310768146 In:0.014860110171974526 as:0.013980844446914794 upon:0.013784028743173308 was:0.011776145703659887 all:0.010229750607275424 when:0.008221081855886679 which:0.008204434859868995 :0.12488314654823245 +he:0.17512350792818462 I:0.08657978539457327 who:0.07860342315554748 they:0.056670305233187626 she:0.04578467203353106 and:0.041910664934168146 which:0.03696749716529486 He:0.03067797657814864 that:0.0302623450134665 it:0.0275840319564444 we:0.020889049271991457 be:0.017769071013795674 have:0.01702392837388154 1:0.014413700084261603 ho:0.014361007844011092 She:0.01225880044686048 lie:0.010965574012766483 It:0.01081919917913008 man:0.010448725249322466 :0.25988673513143257 +I:0.2442648016431974 he:0.15799531468413774 and:0.10534111695102522 He:0.057488563519606385 they:0.04587134939986443 she:0.041421542007748835 we:0.040483882281239426 it:0.039114816097296036 who:0.025076746358984655 It:0.01849226682353913 that:0.017975231284027008 We:0.017062074509928922 which:0.014613985679349174 you:0.013585481508291707 She:0.013375642382254306 They:0.012124932547187533 but:0.008860501878506136 ho:0.007832587471275644 "I:0.007224724255010542 :0.11079443871752978 +a:0.18889585394090683 the:0.12480947266901007 and:0.08591529878103076 of:0.06158049557316458 much:0.05589617038582807 is:0.054392151250161946 no:0.04787007379833852 was:0.03811748059457882 be:0.030942979864679487 to:0.03058189064071228 in:0.02328824775511623 had:0.023057774069276615 by:0.021704964932738772 are:0.02120511257145747 for:0.019736916825940847 with:0.016101760856823244 not:0.015221299219257972 do:0.014658188604872079 or:0.014623739155524453 :0.11040012851058097 +to:0.45477895353562425 the:0.073411314002724 this:0.07087587600985139 an:0.06647737999763312 will:0.06171183224936442 and:0.035872489690523514 would:0.026973028448818503 that:0.018260178439905985 I:0.015595580461557183 can:0.013524729538913953 should:0.012737514584206617 we:0.012716134424151943 To:0.012181084914090983 not:0.010629980227289964 "An:0.010566283310507142 must:0.010465468172818484 every:0.00990545353838902 shall:0.009045428025981279 or:0.008700166256640598 :0.06457112417100762 +of:0.21752756424334257 and:0.1108790972571787 in:0.094390035139371 to:0.07253021582741002 for:0.04239963945442671 from:0.03503431922980502 or:0.033658233427586684 by:0.02571746757151113 In:0.023628842159181263 with:0.02078783576908147 the:0.019880327215912288 without:0.01741931447143885 not:0.01726947031051353 that:0.014620477715148192 will:0.010303630750282886 their:0.010215384203370618 :0.009686363275814194 as:0.008819823190099746 all:0.00855047532133844 :0.2056814834671867 +of:0.2900593080083686 the:0.16470997991749373 in:0.043725201685701515 on:0.02598551446038476 that:0.02358366641219836 such:0.021266965825612407 and:0.021258135843688818 any:0.021054289017504915 for:0.019457138992720897 said:0.015464656919045165 this:0.01474718032122107 by:0.013426654327194646 tho:0.012161089223717109 with:0.01149101630947782 a:0.01137827515436616 either:0.010463093334362635 In:0.008805813566670937 each:0.008462304620196013 or:0.00840298282739543 :0.253096733232679 +the:0.10283197938476113 to:0.09521627504798869 in:0.08774467528253194 a:0.08681268846464713 at:0.08353061295911288 of:0.05963702371144163 and:0.05216096443839595 for:0.035302065292384256 In:0.02116769728100894 which:0.016008781275417702 an:0.014780852090690837 that:0.014406065845111638 as:0.014305873240732903 such:0.014048344756290316 his:0.013965082661701197 :0.013608051863003847 in-:0.012575876031326141 from:0.012295491672843835 with:0.011000240799277486 :0.23760135790133155 +in:0.3119073453801186 of:0.10933622674315345 such:0.07317063493752397 In:0.06362002135657131 to:0.05084708671995183 as:0.04657479137619271 with:0.04340801240469807 for:0.036856171388726114 and:0.030846957447326004 by:0.026720211060884843 at:0.02406964614132815 is:0.023920222336560798 on:0.02102670604436543 into:0.018640129429651674 that:0.0157872782031618 from:0.014906392310236112 make:0.012528702064420921 made:0.011069121506467843 was:0.010520871606388541 :0.05324347154227187 +of:0.1507210116675632 is:0.08546635352576656 with:0.07878899220588194 was:0.07267964487867849 in:0.062608335464105 to:0.06210533267632638 by:0.049168023794920836 as:0.0404822557966092 and:0.040442434627930644 on:0.03514789073349828 for:0.03131796309459954 be:0.02837143908884138 made:0.01752309409892116 such:0.016741843560522475 from:0.015440697708005166 that:0.015107235833064739 been:0.014560002588453668 at:0.013678570581236825 have:0.013452597142885986 :0.15519628093218854 +the:0.1378854459619626 of:0.09550816209198172 and:0.0793082284712746 to:0.06325432732593851 a:0.04981744998475612 in:0.04049507588462003 be:0.036034788213397076 is:0.023342186109428096 or:0.020042185465407026 his:0.018536136774378487 was:0.018362645804285444 for:0.015918042951775277 their:0.015879187622248634 as:0.015274637443141725 at:0.013719580768808836 an:0.01347101662130876 that:0.012412869685016129 are:0.01241085713967708 it:0.012346328197267564 :0.30498084748332627 +of:0.19811536347771957 the:0.14023752248486954 in:0.08386132212326802 to:0.06372287740240137 their:0.05651222268879413 and:0.05456387084936619 his:0.048330615061680335 with:0.027702356201793114 a:0.02558437136717849 its:0.020608032266583535 this:0.020356180765220208 good:0.013465909429531993 from:0.013374005980789378 such:0.012837923230917618 public:0.011881775604077813 on:0.01117892139170451 our:0.010768431582090822 at:0.009460755732021792 by:0.009369856287930254 :0.16706768607206135 +it:0.1496983854216909 he:0.10964337238428326 It:0.10638682511248473 I:0.050969923320639536 He:0.04860408290558634 which:0.04656491803935457 and:0.039028603386181866 who:0.0331862277940019 there:0.03053864313057572 she:0.02473831015765317 that:0.020673460236108037 There:0.013695532075392687 She:0.013377251164555395 lie:0.010305604736014575 bill:0.010179505281152806 man:0.009520310547670104 ho:0.009465156303370794 as:0.008752836029768285 This:0.006926077595687868 :0.25674497437782745 +the:0.16287760685838365 of:0.0883592780729449 to:0.0618987346693935 and:0.05423685233212741 in:0.030811253892523358 for:0.03057359609188714 be:0.025098115820027647 was:0.01826945122296575 is:0.01662970283289366 a:0.016448402520667066 or:0.01633619095301082 his:0.015510346299682681 their:0.015084175217362073 are:0.014656254371894712 been:0.013019491851438341 were:0.01267572744006931 that:0.012270302451397866 on:0.01131798809455223 :0.011150587255169986 :0.37177594175160794 +have:0.2581837141281445 has:0.22318171454416758 had:0.19252388621478336 be:0.052768356249492124 was:0.040278952333674435 and:0.03382104986972726 having:0.029213450714502584 been:0.0175771762940731 he:0.01641069626683489 bad:0.013748956287651583 is:0.01287705934408121 not:0.011288815488676867 were:0.009895984714532454 havo:0.009570316961707777 lias:0.008259821897710563 then:0.005347693707342648 are:0.005291541354182954 I:0.005232609678553182 but:0.004412074626181339 :0.049116129323979525 +of:0.15960345738363574 in:0.09698205209679273 at:0.07928423063027262 and:0.07169982705517693 to:0.06528305718011426 for:0.037849510418090766 on:0.03700187669839342 with:0.03421651771243882 by:0.029563729387437135 from:0.02915144472343935 In:0.027380192843244278 that:0.023991016820190687 as:0.019566728674166735 the:0.017546629934763757 upon:0.011938309923868516 is:0.01006405768279549 which:0.008091989672878575 are:0.007600789687998385 but:0.007547662496257125 :0.22463691897804466 +of:0.3125592769526723 for:0.08756564137721196 to:0.06909875541029303 in:0.06576375540879968 and:0.06361524272061085 by:0.05420675040789918 with:0.04612100907947139 that:0.04299852699870189 from:0.028162224578963963 all:0.026135939909366843 In:0.01653136889988416 as:0.01623541615354859 on:0.013874766800815227 is:0.012530296269842107 at:0.012049453866780458 under:0.011971164492647984 upon:0.010099210968187599 but:0.009367987234278372 or:0.008699620287417444 :0.09141359218260699 +of:0.28767355066866834 to:0.08775711267569858 in:0.08678131196995101 and:0.05160598694501188 on:0.04646139928102899 by:0.04519522654900943 for:0.044547789071328545 with:0.03396756772609607 that:0.033699232901107726 from:0.03075346596941143 at:0.027039283056790858 In:0.021061449543044047 as:0.017514234937992545 all:0.012543839382496166 upon:0.011844431150487573 is:0.00998972746569266 was:0.008814315973987914 into:0.008557199930727406 through:0.007781895704231326 :0.1254109790972375 +line:0.0348225043813448 side:0.03190195846250875 out:0.02915248398019678 part:0.028598141222475587 sum:0.02719332188925439 rate:0.024548935849805643 one:0.023791853415045718 District:0.023173595618142393 north:0.022104707476179736 number:0.019637661238106972 corner:0.019046910363112214 Court:0.01883205419286584 name:0.01508583933392121 south:0.013424330753203009 consisting:0.013261559476125007 case:0.013115053306036427 cost:0.01293886964367195 favor:0.012690964316238692 half:0.012305085574177086 :0.6033741695075878 +the:0.3398610339396037 whose:0.1097317483541969 The:0.0836867193624316 of:0.07694485736376669 his:0.06257883614715161 my:0.040215339852079285 and:0.03745628176880399 a:0.025891664840003853 their:0.02194753925246742 her:0.015816192547737414 His:0.015374042948676078 tho:0.012965427875905293 this:0.012859572035951531 no:0.010302261677524495 any:0.009475159111501277 first:0.009313259348881331 its:0.00913549849788751 your:0.00879441800254393 our:0.007440180868670753 :0.08920996620421534 +of:0.19967174317361755 a:0.12147739937185656 in:0.09797477636446689 the:0.07169911586425744 make:0.05730318985777456 and:0.056667490757338734 for:0.04320965363534056 as:0.036032387826613395 with:0.03577795792212582 to:0.03453654088101373 very:0.0336474125990063 by:0.024883212236708713 In:0.021802477387365203 or:0.020673055581127014 some:0.015271002081189042 no:0.013120886545904537 made:0.012877139592358644 that:0.01287431746021012 much:0.0122321986131553 :0.07726804224856992 +the:0.19613763461303116 of:0.11668302920074626 a:0.0858636874321232 and:0.048369685748116086 The:0.04280665747292582 to:0.03131354572075241 that:0.03129547899206574 in:0.030214203879749834 as:0.02776022736811238 an:0.024559301714696145 on:0.016283271111947103 which:0.01483683996592342 by:0.01473718944020071 with:0.013758824304603746 tho:0.01313869615837279 such:0.01281172958983826 for:0.011772178868575544 upon:0.01023135434342362 in-:0.010188819613843924 :0.2462376444609518 +one:0.07798655968170567 all:0.0701564311548887 copy:0.04690695820056385 some:0.027625227152969747 out:0.025477954525797434 those:0.02459154416493174 means:0.02404073766879842 purpose:0.02296024622361466 part:0.022077875043067605 any:0.020254061199805943 way:0.01695718583420243 many:0.01538878129643016 end:0.014892268115746548 and:0.01387430440588936 manner:0.011913042152360553 time:0.011678765868898126 most:0.011599288876158725 each:0.01152901784856222 that:0.011431730212607183 :0.5176580203730009 +and:0.15040135231663412 the:0.13382190096755794 it:0.047128566881641 or:0.046873981357933886 he:0.04403427076091659 was:0.03690350976552197 a:0.03556391766888944 be:0.03384017571080318 is:0.03334580704068529 The:0.026027022561083312 still:0.02507009496624501 It:0.02477139682161591 much:0.022021125363819484 are:0.019545238249605232 were:0.01949785783743236 that:0.019118745393996266 who:0.018324884680120907 I:0.018179946869898555 which:0.01655661010286412 :0.2279735946827354 +the:0.21535319638376976 of:0.11327023947482961 and:0.07958411135315428 The:0.06982933441983913 that:0.04906235139167273 a:0.03704320146535089 in:0.02965322465074138 our:0.023502832708970845 for:0.02235948050465885 to:0.018898792076514803 his:0.01820347585465467 or:0.015398694596030913 which:0.014361842771607595 this:0.013831906372347323 by:0.012342774140294404 their:0.01145368056431392 any:0.010526427849967065 tho:0.009374631766504804 no:0.008236267796828203 :0.22671353385794882 +feet:0.1335565191942709 miles:0.07384948157530385 and:0.054147882941550325 street:0.025172691629175983 range:0.018596552099464335 came:0.016911721683116016 mile:0.01669313231689735 or:0.01546240476804268 year:0.015254233225208262 away:0.014891336932578601 returned:0.014888640306909878 road:0.011483705644176794 arrived:0.01024541256219598 him:0.010084673073116201 street,:0.009996460408174352 up:0.009673506127646987 taken:0.009667192933698596 days:0.009665611709185383 here:0.009554954083111107 :0.5192038867861765 +well:0.08194715243024299 such:0.0725835534390777 far:0.07044860390410196 or:0.07012522663251955 and:0.06715810247329833 known:0.03829318327973665 much:0.030144342500251182 not:0.022517638119704936 that:0.02053862492767043 soon:0.01922395839602847 but:0.017355978268407308 it:0.017332746084153087 is:0.016705436823096147 long:0.016369940601369856 there:0.016145960878373465 just:0.015380006683947789 same:0.014767537129857964 used:0.013565623019796863 than:0.012826254835196504 :0.36557012957316887 +was:0.36941906190794427 is:0.10148682820846087 were:0.08843080293428723 are:0.07855817272686748 be:0.07149036421608769 been:0.06406934922906507 and:0.01794752179904944 being:0.01588257538573095 Is:0.014682658877242209 waa:0.007744401781218428 bo:0.006880075982826677 so:0.006673295648222695 am:0.006168046858177369 had:0.006046419321457072 not:0.00464166443013073 from:0.004345352077271725 it:0.003943497922208834 have:0.003793589372586462 he:0.003415723980900289 :0.12338059734026445 +the:0.8226679733617721 The:0.040146156943408805 a:0.023990403905248807 tho:0.020969638882534117 on:0.012588973199885655 and:0.01088995597519388 this:0.008815826265598039 tbe:0.008334526473651214 next:0.007105051290192029 of:0.005237332685959373 said:0.0030500648519408645 com-:0.00298137883083238 last:0.0026360732499168997 A:0.001982153190905536 dated:0.0012025491992223535 until:0.001172572182169693 his:0.0010133531248669673 for:0.0009292641335522375 On:0.0008728851336982044 :0.02241386711945084 +the:0.1378854459619626 of:0.09550816209198172 and:0.0793082284712746 to:0.06325432732593851 a:0.04981744998475612 in:0.04049507588462003 be:0.036034788213397076 is:0.023342186109428096 or:0.020042185465407026 his:0.018536136774378487 was:0.018362645804285444 for:0.015918042951775277 their:0.015879187622248634 as:0.015274637443141725 at:0.013719580768808836 an:0.01347101662130876 that:0.012412869685016129 are:0.01241085713967708 it:0.012346328197267564 :0.30498084748332627 +Miss:0.21020741344600613 Mrs.:0.10794629505802937 and:0.07614283789472878 A:0.04576966535954025 Santa:0.0278895710628365 Mr.:0.022637809956425666 the:0.02219418592114162 St.:0.014649936970576148 .:0.01442266911261791 :0.01312971854666795 lot:0.012127559493058396 of:0.010748644281678531 No.:0.010429780799131334 J:0.009653008187728948 Mrs:0.009535099278813339 W:0.009451676800223381 &:0.0073604679346024006 a:0.006359438659210077 1:0.00485219311436117 :0.36349202812262205 +an:0.37194786078717357 the:0.2228901688590409 great:0.038985229355145264 of:0.037511217658716095 and:0.03517099575513272 some:0.03165416791366188 any:0.03082462207562621 this:0.0306214453978227 such:0.024603801326858712 in:0.01948084652224152 same:0.018253077157436258 no:0.014722699601236356 a:0.014564174103471751 tho:0.012333674066366807 that:0.011394820620646975 fullest:0.009779571950091808 so:0.00885129936440881 said:0.00806142065529356 The:0.007806878969283976 :0.049542027860344166 +the:0.3770714639181429 The:0.28227281837698703 a:0.04111473201498202 his:0.0405535085088283 This:0.035592907898058704 this:0.031035279372021288 tho:0.023168946360363273 Tho:0.01837637696241041 my:0.017044134808321797 His:0.01629652560522145 that:0.014972819670068896 and:0.013754803741949803 whose:0.010559198572325776 A:0.00924007660411715 tbe:0.008584182110968331 My:0.00843642845166815 of:0.008299334516770682 an:0.007594567129541722 her:0.0073226113606128075 :0.02770928401663953 +of:0.4704252613683971 the:0.17659458066265804 said:0.03005053264545423 agricultural:0.016794404817856403 on:0.01517182533275673 The:0.01294371468411084 this:0.01177905171395936 and:0.010346816463834844 tho:0.010329085777744957 our:0.009388069586324724 his:0.008039170938387019 other:0.007706788631980964 by:0.007349269526555755 a:0.007348022494057713 ot:0.00719989488595263 that:0.0063377062459422095 in:0.006159671850354301 Eng-:0.005210870918883137 Cleve-:0.004916602157681767 :0.1749086592971073 +the:0.17234101881375233 and:0.0723308580507978 a:0.06418362524859451 of:0.059381903314211774 to:0.05765128534513001 so:0.0292258426364823 is:0.027247612130850953 in:0.024298181821023074 be:0.020836055953937775 was:0.01790457325883464 Mr.:0.01622639783612973 tho:0.012553953887538211 I:0.01099826163396415 he:0.010910273396485398 not:0.010754844629789139 at:0.01064958641021041 :0.009679095332540733 for:0.009454446178783427 or:0.008882500654999364 :0.3534896834659443 +a:0.5598551033985332 the:0.18369919660946324 to:0.040451148190322944 no:0.03159316332851849 any:0.017604462783340803 The:0.012451130041631056 and:0.011671364229814563 tho:0.011006064767168259 an:0.01064076096926472 A:0.010146061821352921 one:0.009435736425560259 very:0.00860109215498639 this:0.007870282140734928 not:0.007279186333202467 will:0.006552348460639707 every:0.006197037472015923 some:0.006027068113508375 or:0.005697040213491763 tbe:0.005432662508184344 :0.046789090038265674 +is:0.20986977666946094 be:0.19792186442926044 was:0.08497562355431727 it:0.08002454958976132 not:0.07203561636933214 are:0.03902441074414732 and:0.03466640207706327 Is:0.024982313654084536 as:0.0239148579802714 been:0.022822773642522606 the:0.02126279992360015 deemed:0.020680902860817186 absolutely:0.01891407791481325 were:0.014898527257187048 so:0.014203648476985416 a:0.01123486367560788 It:0.01109444121339995 bo:0.010708671083100106 became:0.010330871161829 :0.07543300772243877 +that:0.14721998378042261 as:0.14232263899766215 and:0.11448258533699238 but:0.040073431515322784 if:0.03306178602852908 of:0.03260595021506425 which:0.021560690297123992 for:0.01841606736396448 when:0.01797229648814789 than:0.014253683413685247 If:0.012827805121106005 to:0.011035353969134338 think:0.010652487093949621 in:0.01055038743698671 whether:0.010034885378031731 because:0.009396009318213798 thought:0.009235776200146976 before:0.008634301447038561 though:0.008584929963729547 :0.3260789506347478 +and:0.1234536126173193 week:0.036289326351217725 made:0.01973875713137204 one:0.018093357249289583 or:0.01696406690320912 paid:0.01596983273217501 time:0.015347547533098246 but:0.014351643309562054 vote:0.013631337143536955 was:0.013439798864281543 used:0.013340133169974377 up:0.012505948276469364 it:0.012316665341915587 that:0.011812823023913309 pay:0.011671982164062981 work:0.010875662580573622 is:0.010680357889736005 year:0.01044961628872991 demand:0.010433017767758273 :0.607634513661805 +the:0.18464964970818568 and:0.06611556790579344 of:0.06385818523970475 to:0.029313448693325653 in:0.028003728909569276 be:0.021021022058728956 a:0.019145893513983367 his:0.018956291009525297 for:0.018291614424590714 was:0.016282484003490683 or:0.015631928462987936 their:0.015487805927307263 said:0.013950105141355253 :0.013334074184277699 that:0.013205355493685757 are:0.013201367708218281 as:0.012703939507270735 re-:0.012168889574350684 is:0.012126815445254732 :0.4115518330883938 +protest:0.05089169997999698 up:0.03878215362237503 and:0.03727787096966203 made:0.030562355787575567 voted:0.03030902102676772 guard:0.025067159630558285 fight:0.022274360769779566 out:0.02116888916695806 vote:0.021121607787420595 assessed:0.020040414975760236 taken:0.019675710251929327 brought:0.018668905366956284 as:0.01846178616299651 war:0.016997081265737974 protested:0.016351772808140395 suit:0.016292256897905665 protesting:0.015300747883401015 claims:0.015292236771010532 is:0.01444986094666026 :0.5500141079284079 +It:0.09881178795845179 he:0.08310935777708664 and:0.06815033350103003 it:0.06551124542509516 who:0.06474507753477794 I:0.05644558523345403 which:0.05579546408608414 He:0.030070225680030475 1:0.02994440992367863 she:0.02910500199924529 as:0.02617486243310901 the:0.022862339896438964 that:0.02228176225782278 be:0.021301245778574444 now:0.01665389165622007 was:0.015238023990919804 is:0.014125711155336954 they:0.013640999016442983 had:0.01204829671881931 :0.25298437797738155 +to:0.24391860944454055 will:0.07630432063089074 we:0.07243156850519224 I:0.06936807542732136 would:0.06345749466832155 they:0.05232168207558925 you:0.046791778690711716 who:0.03549937290559827 and:0.03402080420368258 We:0.031093978064054163 should:0.030330405857628927 not:0.028883578706167312 shall:0.028756759134416325 must:0.02529765299541967 may:0.01744415955960644 They:0.014913414668329896 could:0.013303994067867147 1:0.01107266391127136 might:0.009849236667912764 :0.09394044981547776 +and:0.09058070628408417 them:0.035612128915564936 it:0.02812593617712726 that:0.0257487823668707 was:0.020683479359983183 men:0.020005358105522793 or:0.019864638542064744 made:0.018839006930580358 him:0.01868863320898503 all:0.015585011491454318 as:0.014536909705151391 interest:0.014290786739958263 time:0.014091594334534314 are:0.013862929960904722 be:0.013860062185175548 out:0.013821803322165488 is:0.013817404255346437 not:0.013336237941836774 found:0.0132245688903211 :0.5804240212823685 +Miss:0.147839722161994 Mrs.:0.14709230363827952 of:0.08287459112738942 and:0.07143235130295943 Mr.:0.05034592226144079 the:0.02730589883876776 :0.016970763447902916 Mrs:0.016344485024555454 said:0.01618355227154004 by:0.014879686940102143 A:0.013242896751719802 .:0.010518534521785064 St.:0.010333168144569794 Dr.:0.007919989761030779 J:0.007884227899742198 E:0.00682756526199282 &:0.006669241330192584 No:0.006540561161222326 to:0.006497915813851131 :0.331296622338962 +of:0.1076617761543673 the:0.07387131833731708 to:0.0647145000267213 and:0.050319511629870556 in:0.042608704099278916 by:0.018663091802745273 or:0.018023881705726497 be:0.01746299540577625 at:0.01692778237692853 for:0.016608670373904285 :0.016497483942110425 was:0.01527486577590094 that:0.013634566402067127 a:0.012872289409352044 on:0.011978384855083556 -:0.010472043009963032 from:0.009864328608669697 said:0.00972643170262884 In:0.00971923859909084 :0.4620981357824975 +of:0.18662658111233854 in:0.1855452312411166 to:0.11489541277051188 and:0.06272526988346185 with:0.04579855612928082 that:0.04399224592851325 on:0.04327600437761973 In:0.03799838263773945 by:0.03503537822371065 for:0.033946066715603324 from:0.027682550296697788 upon:0.018667851521336775 as:0.014005778757586256 at:0.012749734440155334 over:0.012522987953526585 up:0.01161930212588517 into:0.010150475491274881 all:0.009205195643866437 or:0.007681309514376467 :0.08487568523539822 +it:0.18933079373983122 It:0.09555282981329422 as:0.0866880719218501 which:0.08464636001756828 that:0.07051112314641195 they:0.052690658552864006 there:0.037417756895181786 and:0.029058424718588206 he:0.0269797830604667 what:0.022289821189138203 who:0.01796366222381316 There:0.013579855598546447 you:0.012550455952835911 we:0.012277334597652966 this:0.010978958519068683 whatever:0.009752693743122305 case:0.009057349738014284 This:0.008398456526460612 one:0.008370438307689692 :0.20090517173760122 +:0.017543132899947536 was:0.01500224009713887 and:0.011727085675186707 is:0.010312515832438791 I:0.009197872590704256 be:0.008326588834190794 in:0.006884895313195749 it:0.00663360218511671 -:0.006217810378176615 of:0.006031611435545022 t:0.005901545273137117 .:0.0058899150987921116 :0.0053697500876115955 have:0.005292469734252218 i:0.005250267070079099 were:0.00507727380039503 ,:0.004928290644983303 he:0.004697258252776272 ;:0.004677484148897493 :0.8540383906474347 +of:0.28767355066866834 to:0.08775711267569858 in:0.08678131196995101 and:0.05160598694501188 on:0.04646139928102899 by:0.04519522654900943 for:0.044547789071328545 with:0.03396756772609607 that:0.033699232901107726 from:0.03075346596941143 at:0.027039283056790858 In:0.021061449543044047 as:0.017514234937992545 all:0.012543839382496166 upon:0.011844431150487573 is:0.00998972746569266 was:0.008814315973987914 into:0.008557199930727406 through:0.007781895704231326 :0.1254109790972375 +at:0.3513259919441468 the:0.05812086191669538 his:0.05688484404550371 go:0.04512975926627579 went:0.0430582509817776 a:0.042919656560849014 her:0.03481353029284275 of:0.034056121862800284 and:0.02931624137737297 from:0.027882966963614912 returned:0.022071378023235926 to:0.01962440442242877 for:0.017349356300995482 sent:0.01486647743608244 carried:0.012274517874799088 came:0.011599959289884842 left:0.011007590085374466 their:0.010310941872976357 or:0.009523135152304319 :0.1468640143300391 +and:0.023849608486453226 :0.01488689757739041 -:0.01273149470017026 of:0.012440236545095455 that:0.0068124658597729666 :0.005678915407058927 when:0.004560141311215885 her:0.004516353048464842 .:0.003995215801962844 for:0.0037357153005260334 1:0.0035712848256207875 in:0.003482557988127181 called:0.0033972982092015653 it:0.003326811983217656 him:0.0031629962698094035 made:0.003155986446582573 was:0.0029984140322312967 one:0.0029964975465610814 ¬:0.0029227379083758224 :0.8767783707521618 +have:0.30825979017372884 has:0.23335574802959289 had:0.21175046658197516 not:0.030988266201518243 having:0.02927012901615229 bad:0.014171973849594698 ever:0.013086879418728829 never:0.01300501411300987 havo:0.009928021099038665 lias:0.009747205787221536 haa:0.00770115724572842 baa:0.007542997033275567 always:0.006964193192067684 already:0.006843537117543435 yet:0.006280305743339498 long:0.005835741283387316 since:0.003932840742479124 hare:0.003476596932273983 and:0.0033496242557260235 :0.07350951218361794 +the:0.1454500361787387 of:0.1080247151493501 to:0.04516715868785427 boy.:0.036249098323069925 and:0.03403580073245388 girl.:0.032660326140049385 a:0.03171979252021135 in:0.02714044436566853 for:0.02365213940166824 be:0.021942286684630472 their:0.021087116084698817 his:0.019774122064073623 was:0.014637031197642503 with:0.014008395154201525 are:0.012730720509515858 is:0.011363112041341867 as:0.011357870543086747 from:0.01063391638067422 were:0.010589399829418696 :0.3667765180116513 +and:0.20456053332448082 that:0.12596365366628717 as:0.04530032506931169 but:0.04099640886628012 or:0.03312844039365915 and,:0.02745479176306619 even:0.019703475333699094 But:0.018020986154245223 which,:0.014794745688853306 see:0.014699015433696751 him:0.014278780557038172 them:0.012228632103660805 And:0.011516602029305866 it:0.01132089136655529 for:0.010608443145646395 will,:0.010474806158075504 that,:0.010299096637983578 all:0.009866753586759744 any:0.009284532711708725 :0.3544990860096864 +and:0.0660646831504907 want:0.0650098192112887 wanted:0.061487374456468034 him:0.056736758601036906 ought:0.05622907215842067 glad:0.04708881145631895 enough:0.04344963220339733 able:0.04044333335486504 is:0.028688956031323636 right:0.028519190592486247 time:0.02744297464161176 them:0.026845852078357463 reason:0.026559060669513756 as:0.02638993918023474 wish:0.025031336096575024 order:0.024062629219075676 necessary:0.023791421389544695 have:0.023592961219465202 had:0.023553132939279586 :0.2780130613502459 +one:0.052088814224272924 some:0.026811882497922164 all:0.02253398812518763 part:0.02041286119413932 that:0.019855448263233672 any:0.018421050443301328 portion:0.01817693635356031 out:0.016981126212641907 many:0.014520761879905626 and:0.012717135483743224 tion:0.011331838502327135 use:0.008845269488721332 people:0.00852851435234807 time:0.00801159879186273 none:0.007793634458890302 condition:0.007669757726247258 view:0.007613566447844059 cause:0.007571447508729576 or:0.007305546858952316 :0.7018088211861692 +the:0.22691548294902578 of:0.11897267602575311 to:0.08908010601625808 with:0.05571007592222456 and:0.045361082473352805 his:0.04004361043493161 their:0.028487510880182233 by:0.02598655293229011 said:0.02402008947422145 public:0.023815051771365347 a:0.023080588899270834 our:0.022920426519826953 for:0.021738581710680528 from:0.016661672073325647 between:0.016105058753696548 at:0.01586595295589469 in:0.015497493110652232 tho:0.014829397391248843 this:0.014442803581793184 :0.15946578612400544 +and:0.09631219532671687 was:0.03513566928966104 held:0.02987715681559008 Beginning:0.024332169066967536 is:0.023122938489353394 look:0.022074108253454683 arrived:0.021820518428646088 that:0.021226918252779888 interest:0.02006974641058921 thereon:0.01971421054267379 made:0.019401567074562896 are:0.019271449916013022 up:0.01806602795372081 him:0.01678700722897829 be:0.016375054451444982 but:0.01586396852970274 out:0.015503094089883073 or:0.013721423267833084 not:0.012734170433403743 :0.5375906061780248 +the:0.14688952434354277 of:0.09894372060128218 to:0.08540015859321705 and:0.051439477374809466 be:0.030620671338852722 in:0.030465651181793726 for:0.020805380950234563 was:0.01984830275190478 a:0.019019972030769935 that:0.016071087127507516 their:0.0156051585067363 is:0.01506558759872616 his:0.014000272435420987 on:0.013739802060835912 he:0.013082180655432827 or:0.012704790545114242 will:0.012160774354233225 too:0.012053526646357867 from:0.01169415860771856 :0.3593898022955092 +a:0.23037876965691992 the:0.20565971535306157 this:0.09386996540345906 and:0.03867514972647741 his:0.029987261975052408 to:0.025068223915339246 one:0.021289150575229995 her:0.019126351904560617 no:0.017330668215101007 said:0.017018370381443756 or:0.01681644029472485 any:0.016099068555154358 tho:0.015366778330832073 that:0.013651302439383175 good:0.01342753354509432 general:0.012368138695535586 large:0.012313163315988572 great:0.011939967572307917 their:0.011913221711355672 :0.17670075843297847 +have:0.32339401207740553 has:0.2484874605034293 had:0.21717066100842242 not:0.0363249002132069 having:0.03530298539708041 ever:0.01505130249088546 never:0.01358363101029182 lias:0.011171319554827244 bad:0.008641511600014244 yet:0.007796898889455173 already:0.007712311906460382 havo:0.007087571328419914 just:0.005068727457549264 haa:0.004798660417080505 baa:0.003965381038364556 recently:0.003334450636568629 always:0.002734253157772743 since:0.0027171541772620642 long:0.002648486598292593 :0.04200832053721085 +the:0.45040040472088216 a:0.3448345599493404 no:0.042855182107737026 The:0.030360124507491048 tho:0.019030944912695125 this:0.018968771794152267 any:0.009035854134671157 tbe:0.005731907952010323 every:0.005622546639105182 in:0.005005233514125015 Asa:0.00473015463524466 No:0.00406364153945702 whole:0.003850208708537944 easy:0.003777045850217852 mere:0.0031825409888152994 his:0.0030913728903863708 of:0.003042186441007299 an:0.0025070708746533373 that:0.002395430007995461 :0.03651481783147507 +and:0.08934296525867834 of:0.08068838607300491 as:0.07853645433812198 the:0.06307320057451939 to:0.042658746496865775 be:0.030835544751753347 such:0.029703590012664483 much:0.025794511891263566 in:0.023621249210533997 so:0.021449367110620385 is:0.021260609143037765 or:0.019920658237143826 a:0.01927671572579788 his:0.01906207551381598 was:0.01720359984272631 are:0.013935218166333807 their:0.012335998801341931 for:0.011516936419171063 that:0.010287085618050218 :0.36849708681455506 +the:0.13568725220145605 and:0.1256228649256657 of:0.03939945427385968 will:0.03677241356577283 to:0.03605866881347645 a:0.02503566919022641 do:0.023126706752747847 that:0.021826827192609324 would:0.020724200761322358 which:0.01861800239149347 for:0.01841654405668539 as:0.015719391890244423 shall:0.013066467802179172 did:0.013050172133044718 :0.012038488737149727 The:0.011949192597453216 is:0.011758839234021358 are:0.011727482075418206 in:0.011667643542341968 :0.3967337178628317 +the:0.3034133768929649 of:0.08021648212995038 their:0.06632024146015121 our:0.05463725913891901 to:0.04634889376231854 its:0.041789075026600946 his:0.04158662231057476 a:0.041332793641918185 and:0.03175090975610343 an:0.029251968192681027 by:0.02003566980829869 in:0.01915523590371966 The:0.01910074867445483 any:0.017134698959240358 that:0.016988632708823097 tho:0.013606414684436343 other:0.012386294592019346 whose:0.011780156881738892 great:0.011292298768406504 :0.1208722267066799 +of:0.10036425554061128 and:0.09867255827094257 in:0.04887477001133228 to:0.04309676529803197 fact:0.03312124920228808 said:0.028016465130273754 on:0.025147031828386315 all:0.020897671259005178 is:0.018989333611116044 so:0.018899457882617265 from:0.018463519784011995 for:0.017651195592365977 at:0.016946018612698295 know:0.015554635744109193 believe:0.015397314140675087 say:0.014489633297242495 with:0.013970217188878864 by:0.012605124887586036 In:0.011949884106238937 :0.4258928986115884 +the:0.1768020447774683 his:0.08519257417604094 their:0.06223672907675939 her:0.041815291241945704 of:0.037384224001147624 our:0.03669544699381956 and:0.03421975849182914 to:0.033808685116974095 a:0.033654220186250014 its:0.01603839845261862 other:0.014749137546233757 my:0.014428869976449774 tho:0.012788085653967078 old:0.011725984958458356 your:0.010614340187684547 said:0.010307866654552845 from:0.009071285439743698 for:0.008776839412320235 are:0.008506764633058779 :0.34018345302267755 +and:0.21836428931140237 that:0.08575691441572711 but:0.07914595358080531 time:0.047487653995230104 But:0.02204533003321122 or:0.01725642986469812 And:0.01710196210300124 even:0.017095031397895165 especially:0.015138772482568398 them:0.014437073499874897 come:0.014195855099181226 him:0.013623746338252682 only:0.012897760162940305 ago,:0.012579800759189996 days:0.012407250673120014 day:0.011510705969827676 except:0.011377231483950305 me:0.010337197128654841 as:0.010258813660474323 :0.3559822280399947 +away:0.05746860598250849 and:0.04985561698690421 taken:0.03950823995165392 miles:0.0355312759828073 feet:0.031845900191456514 come:0.022313957473317422 them:0.021637161013586904 out:0.020621546731341717 came:0.02000539576637417 up:0.019820502682224503 him:0.019195504147748815 received:0.019046714556510396 far:0.018152378296247898 removed:0.017489734983720518 down:0.017467467859455896 it:0.015386533775439217 years:0.01424855034507225 annum:0.014237643714946796 free:0.014107989586278378 :0.5310592799724048 +be:0.16775542812222766 was:0.15013469192538115 been:0.06958089665416912 were:0.06733755630017613 and:0.06505735186308179 I:0.05283853917851258 he:0.04575827922724031 is:0.043004899984767794 have:0.034655661286896976 are:0.031233239434088185 they:0.029523623798690925 had:0.028432551467392132 we:0.025529231288338377 has:0.017011080551738025 bo:0.016416514498840244 not:0.01192409293230716 who:0.010848563742935073 being:0.009817905191530344 We:0.009321405069912813 :0.11281848748177324 +to:0.18494945072817237 the:0.14185319828539894 of:0.10912695309336308 and:0.07280945336165301 not:0.06663177627425074 for:0.034431970885752144 or:0.0337834903061728 at:0.025687991267449445 in:0.025673553273153633 can:0.015083952074025258 will:0.014338258369931703 would:0.014203444482110953 from:0.012421733175949062 The:0.012340241284347846 tho:0.010562280903382223 is:0.010051294038136191 with:0.009904392333713992 it:0.009069087186055686 States:0.009064180930143296 :0.18701329774683764 +was:0.1669521392903659 have:0.0818054058548778 and:0.08071655153676956 be:0.07877383452439518 been:0.06927239422550484 had:0.06681386978342008 has:0.05840294173567689 is:0.05643794319042886 were:0.03308930481860905 he:0.027664773502922825 are:0.01740345628761117 being:0.012490318494659647 that:0.012045469240052856 He:0.009203888882059695 then:0.008808215008556025 Is:0.00819921135763656 but:0.007694718641435924 also:0.007690221158327518 having:0.006801942084408311 :0.1887334003822813 +of:0.12290803917675319 as:0.10092694216438537 is:0.07281656193772186 and:0.06015296850196632 that:0.05866341917992869 was:0.051952494436217335 by:0.04992156188831352 for:0.04902278142030771 to:0.04901558791793477 with:0.04340264710651162 be:0.036197850262557216 such:0.03045394143858003 in:0.025432829326508078 but:0.017822137430435737 if:0.016592157277447814 like:0.016438295815065875 when:0.013881702727969437 not:0.013340375855818924 If:0.012927364416938977 :0.1571303417186375 +the:0.28209782568536773 a:0.09261374335973097 this:0.08223178222133738 same:0.06389277674816811 such:0.048497591542507205 of:0.03493284425631824 his:0.03367623579838196 any:0.025235794177080467 their:0.023480032037627406 other:0.023370075695350268 and:0.021767486471799078 in:0.019881516214083548 every:0.014323179258037931 its:0.01242770496396666 our:0.011643137597186612 all:0.009899177242938205 some:0.00978449496922987 tho:0.009419757832756533 own:0.009111244685837239 :0.1707135992422946 +and:0.036163001301143326 miles:0.03426311212625663 free:0.03330978850321795 far:0.027878204138329216 away:0.027612474438655048 suffering:0.022457202217289057 him:0.01978041441012929 them:0.019452101850619567 or:0.018413834246186648 it:0.017667545223036624 taken:0.016172371544295145 come:0.015434205859242982 out:0.014632990848161971 made:0.013646733411622508 received:0.013193041403157992 feet:0.012967307522593894 came:0.012865443983456806 years:0.01262667261658779 up:0.012462096192195415 :0.6180014581638221 +be:0.11565462062792903 was:0.10310942067317481 has:0.09499243404410705 have:0.07468852312243565 and:0.07450769373354903 been:0.061444561083220335 had:0.05861141861561738 is:0.04996044188413237 he:0.03571496608932145 were:0.02713437179438946 are:0.019844821821865484 being:0.019424101032891983 having:0.01499723227879916 He:0.014218898819198193 which:0.013857024724084469 case:0.013009557358695993 I:0.012774469549060556 that:0.011680469250511862 who:0.0100374012140545 :0.17333757228296123 +and:0.08052616688966503 was:0.03386805967473211 is:0.027131659989010366 that:0.026624687792480752 it:0.02376543335216197 as:0.021724974035658717 be:0.0204493374234934 them:0.019362899857706416 up:0.01923755053633099 made:0.019051155858661004 been:0.015122377046947891 him:0.014895946421979866 found:0.014817751086571159 are:0.014800220963278276 out:0.014079301690022833 but:0.013109673893223404 were:0.011386116294665112 time:0.011231179353175257 not:0.010634397289030435 :0.5871811105512049 +-:0.050436334098561277 ai:0.04933368395627706 the:0.032234205055095014 a:0.02894925845991774 at:0.021450439643722584 to:0.02071449029023316 I:0.018617532968665258 in:0.017122785227989348 of:0.016425004227389618 e-:0.015368620218474975 sa:0.011551554862785167 and:0.011269584664639341 .:0.008980496778941175 i:0.008868002673825134 :0.008427788467148875 t:0.008425980597182043 \:0.007749830838844538 A:0.007616167045071321 1:0.006942442928448937 :0.6485157969967874 +of:0.2370780652920984 in:0.09497395099672522 to:0.0814933130607011 and:0.05327440211514149 for:0.05137451047934277 with:0.04651689306828672 on:0.043156316985770514 In:0.031532089501031264 all:0.023664595879296296 from:0.023645504974427703 that:0.020443341742690968 by:0.01852471001995922 upon:0.017344674861820147 at:0.015512398323227629 through:0.012981567376812931 or:0.01176426371620643 :0.010315953191528738 make:0.00963732794104619 do:0.009187514412600512 :0.1865786060612858 +and:0.1118251599412174 be:0.03266595860518125 but:0.02325518057502832 is:0.0228706091465244 or:0.022684855107132654 it:0.02184803308290863 them:0.020179800911383102 was:0.019821703540377832 that:0.018790727552900403 not:0.018042460723255403 made:0.016154266460514034 are:0.01559905970410618 done:0.014749875763145834 him:0.013918765955822478 up:0.013304590851117348 almost:0.011256859446373797 out:0.010830629999303502 men:0.010634920601211196 for:0.009729809134288232 :0.5708367328982079 +the:0.11919516938815296 of:0.07230453158552728 and:0.05781056740443249 a:0.043018564803886335 to:0.031305092790907506 in:0.020848713353460488 at:0.014270110001066288 .:0.012526810245749479 :0.012413283442322082 for:0.011719122709941797 by:0.010808400946589808 or:0.010404172990115616 The:0.01003576004804544 with:0.009811868184449042 tho:0.009295902015355835 was:0.008924239095331684 that:0.008672304223433876 is:0.0085591147338948 be:0.008335143826716943 :0.5187411282106204 +of:0.3114563826662687 to:0.08744420734692937 in:0.07675264382296804 for:0.060928388194728865 by:0.05184087233853572 on:0.048374995254276805 that:0.04688728654061368 and:0.04629948090561389 with:0.03377132202196443 all:0.02794757826651975 from:0.027021604026331265 In:0.01570838948328296 upon:0.015340312986590833 over:0.014784980814049647 through:0.01249937875823056 into:0.011702826333824586 among:0.011404532592016216 which:0.009763402735233706 as:0.009555928655044553 :0.07951548625697645 +he:0.13366376148714418 it:0.11440413622330296 they:0.07020805729080841 I:0.061907981342188466 that:0.05956339559226442 It:0.04382016851403311 she:0.03984670424770736 and:0.03837284279527131 who:0.036149499578884595 which:0.03576479396549903 you:0.033119411146427635 we:0.023924213702916548 He:0.017139124107400597 one:0.014356920423591034 ho:0.012468918561678656 there:0.010926276265205315 what:0.010718158387228085 this:0.010060333565914707 This:0.009251948017936249 :0.22333335478459732 +sum:0.03352282876311118 number:0.028116684882597106 line:0.019995206059833036 city:0.01946514558931857 out:0.019275318828420953 day:0.01666865340772654 county:0.014872697538657208 amount:0.013254184849875051 Board:0.01252325449624941 town:0.012449555905674143 side:0.011663975251122375 part:0.011517157473718155 County:0.011460540331966697 state:0.011087331502382173 City:0.010878919191854432 purpose:0.01081028255427907 and:0.010297866493795984 way:0.009848747943663767 name:0.009522170936943183 :0.711769477998811 +be:0.18397310895655228 was:0.1301667155260682 and:0.06730060333523959 is:0.06523435991073928 been:0.06103577504010662 thickly:0.044716083016342084 a:0.036326877715638806 have:0.03569407736298252 were:0.03194993754712392 had:0.028160370801586457 has:0.026337705161450772 he:0.022031478289074237 not:0.021233286417350006 being:0.02048345077506181 the:0.019434943729531445 are:0.018307317924948364 to:0.012939873287178426 well:0.01041043027010198 fully:0.009676434816250747 :0.15358717011667244 +of:0.19314000382800514 told:0.1274495214459842 to:0.09977931940334685 tell:0.050089796013800196 with:0.04892073691234024 for:0.04413724116933323 upon:0.03644594486408077 remind:0.026642317720404048 among:0.026419960180165857 by:0.025989234407796845 tells:0.021558412437502398 assure:0.02074665831141454 assuring:0.019545102180517786 give:0.019252386247402938 from:0.01832020888965106 convince:0.017852009681149836 telling:0.015469712197361173 informed:0.014691311275076328 on:0.012810051815399829 :0.15974007101926674 +purpose:0.15629546290636626 instead:0.04067235169987101 cost:0.03789169719030422 means:0.03715155922526685 number:0.03691513157171963 amount:0.030542455119399896 out:0.026054467034596903 capable:0.022536321166439676 method:0.02200269228385709 tion:0.02156280510439008 one:0.018760960717187716 and:0.018276873885807725 pounds:0.01581141998843525 all:0.015703207080161808 way:0.01531371230900811 is:0.014731609287545522 people:0.014606920828488384 part:0.01414165819828799 value:0.014060614152407475 :0.4259680802504584 +is:0.16634480281849723 and:0.12328211789797823 was:0.0948811545803972 as:0.08166076220125905 be:0.06191406937669843 it:0.05929499842754577 not:0.0328755029284192 will:0.031256433277207056 are:0.023817845091467307 would:0.02266429274950144 so:0.021320951243591985 It:0.019782810754054594 he:0.019460264903488404 Is:0.019424776206215577 that:0.0173296082464069 now:0.015354954518005746 but:0.015283287089024315 were:0.013981128478487842 to:0.01183729753690196 :0.14723294167485176 +and:0.07096836966409403 together:0.04081854449321519 do:0.03318622231133919 covered:0.03295034524000029 up:0.03018963971252164 charged:0.028587393789462668 filled:0.02707318669654758 met:0.026283048784980043 compared:0.02159981563344741 him:0.021417093594153957 connected:0.0196296748097644 complied:0.019601632620413416 it:0.0172771119833296 them:0.01631800314872708 dealt:0.01577634237905082 along:0.014439212028230201 away:0.014260963224145683 was:0.013916506330048253 accordance:0.013787838173098824 :0.5209190553834298 +J:0.07218945548816794 .:0.06288154196677485 W:0.048682850333651884 of:0.04464064434896528 and:0.03780385802952327 to:0.02928463421039332 C:0.02086349077761252 H:0.019283928076814803 J.:0.01856612920895328 the:0.018482691934358458 M:0.017306393778083157 :0.016389283826627993 John:0.015210213679620976 by:0.015033435627829895 A.:0.01456326852128518 E:0.014028595175063092 Mrs.:0.013339769621042162 A:0.012774919938216129 T:0.01230900716566113 :0.4953658882913547 +and:0.1417157418003202 so:0.06755684882674218 fact:0.05707173571703629 said:0.04486723127003565 know:0.04457473274659093 say:0.04048471673355019 is:0.029279944568814904 but:0.02438556998593403 believe:0.02348236877231084 stated:0.019305661733568756 all:0.019217712097723813 me:0.019031297091898075 him:0.0175758659888339 order:0.014998765855170048 see:0.01489256018742656 feel:0.014720541888046773 think:0.014424977241856658 was:0.01431732896568077 says:0.013992258106505139 :0.3631041404219543 +the:0.2580136306948662 a:0.0929487971435781 and:0.06150435125873941 The:0.04823579828238198 A:0.04587435772831557 said:0.03818639670704102 of:0.029051776187022944 this:0.027594960963752264 tho:0.01950542227546939 State:0.01919629311111551 York:0.016483355524736554 our:0.01647712016580579 Washington:0.016422256374865545 that:0.013757033050180195 state:0.011262272921860921 to:0.010769864727020208 railroad:0.010224702215902394 Republican:0.010217780502163954 .:0.008992677886422999 :0.24428115227875902 +of:0.38118640491970296 the:0.10880590052720414 in:0.04062424323329248 by:0.030008741160899605 to:0.027431628670602216 at:0.027219665575564694 a:0.01931342421728166 with:0.013235904045094992 and:0.011487535131726694 for:0.010131769066162106 on:0.009644163186433075 The:0.007649899050015262 :0.007094952582171276 tho:0.006880537742054527 from:0.006836075530147703 In:0.005599535570699623 his:0.005076136362419887 ot:0.005069040274129206 ol:0.004543758966363419 :0.2711606841880345 +at:0.16303488407042313 for:0.10914075215701079 of:0.09775994531577863 to:0.0719762937362884 as:0.06733333537242028 and:0.05574918285992227 was:0.0462074246849678 that:0.039748818938682574 is:0.03921721136334565 in:0.03087470784385214 with:0.030613544686492848 half:0.030281902149801622 about:0.023072345520407513 by:0.0222248732418488 from:0.020872253339422456 be:0.019539675758958465 cents:0.019452799382673556 than:0.01530055594187163 such:0.015117950699395822 :0.08148154293643563 +the:0.18941070485687136 of:0.07390279899818201 and:0.06570082437222247 a:0.058469243590548274 in:0.024856988432496216 to:0.020873147706783023 for:0.018682659686982638 or:0.017866694612114674 that:0.017028564531941848 The:0.014409173905624696 tho:0.013452762362497402 any:0.012264366938919611 their:0.011649091646265465 other:0.010378896202069391 his:0.010181810078543935 by:0.009890952379887743 :0.0098587277099488 at:0.008693303303851414 with:0.008048251693860238 :0.4033810369903888 +and:0.14868997741076614 so:0.059419259235811726 fact:0.05817272128681485 know:0.040973324992650245 said:0.03399586069758518 is:0.03379053442048322 say:0.03334539559835076 but:0.023573030402058635 believe:0.02038189140298399 me:0.017699290916216928 him:0.017416131358349445 all:0.017376926907195406 says:0.015213736366744479 think:0.014905898430444858 was:0.014708075962149632 found:0.013868837292830397 stated:0.013591874037772718 hope:0.013385358249117471 see:0.012648605726683774 :0.39584326930499014 +of:0.09129790931378902 the:0.07369883040827747 and:0.047842263382354346 in:0.04189055351593407 to:0.04045875475680249 a:0.03542341257202578 be:0.02020462051672066 for:0.01979292654746225 was:0.01760256398103379 at:0.017380150555488715 is:0.014984483003968216 with:0.014047653760730413 by:0.01374644383819499 :0.012670486581795598 In:0.01200961464556976 or:0.011563835749786333 from:0.011391516893522809 are:0.011273104484969465 that:0.010755276030689069 :0.4809655994608848 +and:0.09537307546744904 was:0.054533009377706006 be:0.0525434126088274 to:0.0480106611549256 the:0.04720704939246441 were:0.03540055337366556 is:0.03244513886452105 are:0.03091902763606256 been:0.029116854131771803 he:0.025279000570064856 of:0.01932825762529143 or:0.018359138803192693 will:0.016890607253057098 for:0.015225856792660638 that:0.013961879074161758 not:0.013164185369591658 it:0.01306568189435524 being:0.013018487903471643 have:0.012941659412215142 :0.4122164632945444 +the:0.09486664587568451 was:0.07348790309385439 and:0.07163858741447966 is:0.07106724528573309 be:0.06030001188013777 a:0.04959310845976468 are:0.039294300856040465 of:0.037126174543970505 not:0.030617645176282227 been:0.028822281113407525 to:0.02805745181828971 were:0.023958454547020443 in:0.023101732822393053 as:0.02223099865017219 an:0.020821127621263164 his:0.018938808126015037 it:0.01504392763747424 very:0.014727876971839561 or:0.014135431326422433 :0.26117028677975535 +as:0.06337289415049517 up:0.04809314218185479 and:0.041411564292737395 according:0.03738221587639796 back:0.03564998809838123 him:0.035577611022324374 returned:0.035110739114133455 went:0.031172920432325488 came:0.03111997420978254 it:0.024764398107483297 regard:0.022823763012400078 confined:0.01803499028792385 come:0.01739043734809638 return:0.017283054062928106 go:0.01654150200276455 down:0.016309920682264393 owing:0.01563727895997569 is:0.015449497308450856 was:0.015024338606440533 :0.46084977024283985 +they:0.10327100053968397 which:0.0734006443581985 that:0.048292418206472204 who:0.04704934038655525 we:0.04281207363495672 there:0.04011572308081391 and:0.03160623148696676 They:0.02944279026533422 you:0.02104176212590411 There:0.01867526108429536 people:0.01570855353892485 men:0.014468834884070362 We:0.012232331252979118 You:0.008305698451057308 as:0.008196136720469838 acres:0.007983909795973151 these:0.007653428874277346 These:0.007606067493646588 prices:0.0069049989274591345 :0.45423279489196133 +of:0.10716038318689665 the:0.06033703247223839 to:0.04742729228752408 and:0.04593463852333595 Mrs.:0.022129968504536225 :0.017795758817610124 by:0.01613782945937145 was:0.014786531462149642 .:0.01401817546042115 said:0.01327136401224376 be:0.012202584750778192 Miss:0.011438044867621067 in:0.010817104922203447 at:0.010638369444798455 as:0.010221398402111873 Mr.:0.00997141307330043 a:0.00987649724574199 that:0.009834849626338607 on:0.008665023555305367 :0.5463357399254731 +hundred:0.02334136986593815 up:0.005482494641173394 men:0.005366536521246011 Hundred:0.0047587970519216575 John:0.00441808156134956 William:0.004390720675819281 him:0.004016828614280843 ;:0.003997112205305733 due:0.003721199871732 in:0.0036582900032443304 time:0.003637206863828461 James:0.0035594902370151707 out:0.0034878448964120057 .:0.003467980723571515 1:0.0032804584819785204 day:0.0032444781513863933 ,:0.003058139385740603 :0.0030314555521939613 Robert:0.003005471634785646 :0.9060760430610768 +purpose:0.023249948506540764 instead:0.019133423811040922 that:0.018824131477763156 one:0.01758860653812894 tion:0.014469586422591857 out:0.012985265610848316 matter:0.012926847456409263 sum:0.012275445517314042 Court:0.012220010516486144 case:0.011481066578692663 Board:0.01137488783361037 capable:0.011092373285835561 cause:0.011033539297862832 part:0.01053619119937923 sale:0.01049274821778648 payment:0.010344016702030317 charge:0.00997201701624978 people:0.009716985363013297 account:0.009439317901769747 :0.7498435907466463 +manner:0.10014154852873941 and:0.04758153569965947 that:0.027548634697924172 way:0.017860480013091023 time:0.013660246230114154 it:0.01211986153900764 all:0.010836767636137537 one:0.010756664322780446 part:0.010728763786470055 district:0.010609221477965584 land:0.010415108137366232 place:0.010399655452080119 esteem:0.009337949673530233 work:0.008993990842538664 now:0.008593781479256013 them:0.008489846330526286 day:0.008448021271808803 money:0.008371952622637733 interest:0.008221632363195723 :0.6558843378951706 +be:0.25234579305972304 was:0.17345392534825052 been:0.10819928382388319 were:0.06103646236383876 is:0.06012933557015396 are:0.05364297215992781 had:0.043875226695181305 have:0.04259605285626426 has:0.03499556471632985 being:0.029139533135326214 and:0.01709198006062799 bo:0.013054455238262175 Is:0.009430358803531753 not:0.00805997576600431 he:0.00788015784536671 hereby:0.0076267499916064015 having:0.006822881073912979 it:0.0065531583395023844 ever:0.005115127368990312 :0.05795100578331605 +the:0.41658687501795516 unpaid:0.07535546123747255 of:0.0629020165149896 and:0.03448076133368846 The:0.027264018263514607 tho:0.02513321533870293 that:0.02466138760600109 in:0.023244413652388864 for:0.020544236109570808 to:0.01883863974403444 a:0.014375673456133662 tbe:0.010583103968207592 on:0.008968680098401249 at:0.008528923129170564 said:0.008119393360587514 an:0.00803270542179643 all:0.0070959463272843495 this:0.006819007765866461 In:0.006353565990192139 :0.1911119756640415 +the:0.16807735899698817 of:0.10541662057906837 and:0.05138367848570702 a:0.04141865232648221 to:0.0385989743764065 in:0.026264864977736738 was:0.019530675665220657 his:0.018900421021236905 be:0.017373825006196972 their:0.015767721170721456 for:0.01557246589796783 with:0.014071419046630446 is:0.012922913111931644 at:0.012690452250034052 are:0.010702713108721902 .:0.010158075558988393 Mr.:0.009672788574483367 tho:0.009612591781990074 were:0.009549306361446321 :0.391314481702041 +of:0.42293044532927765 to:0.10112907333855707 in:0.05557823508997032 for:0.04430839994343944 and:0.03850623296935555 at:0.03720810670460629 by:0.032707489007052754 that:0.02837434281413553 from:0.02628520294754012 In:0.023353450842731268 on:0.02246833577273829 as:0.014656709329961687 with:0.013008867539066217 over:0.011893829290334694 ot:0.01174779603009376 all:0.010996252889666892 when:0.008955572156648727 about:0.007392413978776444 into:0.007184219739136064 :0.08031502428691124 +of:0.09535819706554119 the:0.07756307250046315 and:0.07708252601510572 to:0.0406018774337806 be:0.023619563979351884 was:0.020291969857854926 in:0.020157748755823702 he:0.020011679880813947 a:0.019576031913850708 or:0.019458499701416956 for:0.01940908201675651 are:0.01840122660455304 The:0.01756634325551437 Mr.:0.01751357050928392 that:0.016313920799612795 which:0.01594710581805199 :0.015032671925817807 is:0.01483718028272099 were:0.01421196964257681 :0.436045762041109 +the:0.1941711311547156 of:0.15475788842161298 and:0.06985862488600579 to:0.04784665818089017 a:0.039915644565146305 his:0.024181495850461653 in:0.02276815682637814 at:0.019072708663410244 for:0.018291401376492617 their:0.01808603333139909 be:0.017572604858816496 was:0.014552718165604325 is:0.014234909109458386 by:0.012516068816593133 with:0.012194053711530494 from:0.011422938125255 are:0.010983543428474025 or:0.010499888557316189 tho:0.010345939852097245 :0.2757275921183421 +hundred:0.02334136986593815 up:0.005482494641173394 men:0.005366536521246011 Hundred:0.0047587970519216575 John:0.00441808156134956 William:0.004390720675819281 him:0.004016828614280843 ;:0.003997112205305733 due:0.003721199871732 in:0.0036582900032443304 time:0.003637206863828461 James:0.0035594902370151707 out:0.0034878448964120057 .:0.003467980723571515 1:0.0032804584819785204 day:0.0032444781513863933 ,:0.003058139385740603 :0.0030314555521939613 Robert:0.003005471634785646 :0.9060760430610768 +of:0.2607605420921837 to:0.14370786069962702 and:0.07531896861288083 in:0.07180808808210627 with:0.06868315917691094 by:0.06708437632890757 for:0.04920775188653863 from:0.03382376698903859 In:0.01852432295541525 or:0.017972343502482224 as:0.015686070893461794 at:0.012508826679410686 is:0.01137600918207989 the:0.009437764587244034 that:0.008516094377392253 are:0.008381790283234918 among:0.007880451865119502 be:0.007705128824338334 all:0.0073934253440527545 :0.10322325763757484 +of:0.4288280206655963 in:0.07550068428209242 that:0.0534004266589644 to:0.0497435457863459 for:0.04200624651561214 and:0.03644760532003738 all:0.03642601623496853 by:0.02885855539979331 with:0.028292609550459494 from:0.02357085876411044 on:0.019506231888604005 In:0.015391803460841071 as:0.014675457484520909 upon:0.01089067691595807 but:0.010785954150181985 which:0.009871686962657973 at:0.008329984711955516 ot:0.008052108314384677 All:0.007587606488429654 :0.09083392044448589 +there:0.012180656255086337 and:0.011954235829243796 hundred:0.011024023165127805 ;:0.00853009796681701 men:0.008039958027560457 them,:0.006829311896228202 acre,:0.006753086834856573 right:0.006535794273257652 man:0.006246260149586328 :0.005328423889904297 time:0.004910881306878221 ,:0.004544974920722809 years,:0.004253159877443987 on:0.004111432413935246 .:0.004110157833686615 out:0.003906426959412965 that:0.003779474022727168 it:0.0037252851771812203 in:0.0036967215338260806 :0.8785396376665172 +the:0.11919516938815296 of:0.07230453158552728 and:0.05781056740443249 a:0.043018564803886335 to:0.031305092790907506 in:0.020848713353460488 at:0.014270110001066288 .:0.012526810245749479 :0.012413283442322082 for:0.011719122709941797 by:0.010808400946589808 or:0.010404172990115616 The:0.01003576004804544 with:0.009811868184449042 tho:0.009295902015355835 was:0.008924239095331684 that:0.008672304223433876 is:0.0085591147338948 be:0.008335143826716943 :0.5187411282106204 +of:0.1924373128253263 to:0.08708640561740905 with:0.08672147151293204 in:0.08457439718604784 and:0.08253469829310785 by:0.05585208695430777 for:0.04200999454350131 on:0.036305209345799345 from:0.034041710584975654 that:0.03325280066738564 all:0.02058931486713335 In:0.01921341743418172 at:0.018704910387612645 upon:0.016530877581575797 under:0.01570718179983719 as:0.015344788956192188 is:0.01420986488494866 was:0.013173181282154079 through:0.010488100168716145 :0.12022227510685546 +:0.06084251025406862 it.:0.02781405298163472 him.:0.019595523970102537 them.:0.018102310542311293 country.:0.01088325700626565 time.:0.009997863117653345 life.:0.008394055832887725 and:0.00815626051704262 her.:0.007923386961030678 again.:0.007724129669937065 world.:0.007597023887229464 years.:0.0069496211168426055 way.:0.006649096725908722 men.:0.006420025741124117 year.:0.0060636604025894785 home.:0.005867203308037472 man.:0.0057931655329703765 tion.:0.005783494452900379 law.:0.005739543493594583 :0.7627038144858685 +it:0.3433935546349107 It:0.22577997225829854 he:0.05550890622480477 that:0.03996376935343941 which:0.03537371540612851 He:0.02092525927458759 who:0.018153458159531174 and:0.016189003005224207 she:0.014133065555889219 This:0.01396314789221056 this:0.012675020791645508 what:0.011959735896965378 there:0.010465881854843626 man:0.0062972120746080116 work:0.005925052781013088 She:0.0055541782798461245 as:0.005276061748509156 country:0.004419595568769008 ho:0.004133770679282783 :0.1489096385594926 +is:0.20779657237387833 are:0.1476619170915054 was:0.10710194264393738 and:0.10097428770066515 were:0.043397421523505994 Is:0.030623401218230335 be:0.028181529064978478 but:0.0260250738776519 it:0.018023164209905053 a:0.017158715270125344 been:0.016559527621233743 not:0.015479345072561837 the:0.013637431559139252 will:0.008507463134208366 would:0.008486749016049679 have:0.008207409462966409 they:0.007872193271067189 more:0.007827519437678877 he:0.007555144664365866 :0.1779231917863454 +is:0.2190662452259373 was:0.16625155979585504 be:0.1522740608289087 are:0.09135692964261086 were:0.03828692277365083 not:0.036020787342687946 and:0.035865177841033026 been:0.03166020081208178 Is:0.028602284179850238 have:0.020300152634523908 being:0.01661590731916819 far:0.015037496880516674 had:0.01163729509296128 has:0.010258364862356609 will:0.009589968879682104 am:0.009512911097773618 of:0.008759186536296426 almost:0.00818247531848536 it:0.008083143084366275 :0.08163892985125382 +and:0.10771526031287741 that:0.09417345443466431 will:0.06904110803722492 to:0.055143709884065285 as:0.05009706791489768 which:0.037176295371439946 would:0.0352973039186414 when:0.02498209893740622 but:0.024968519760830598 should:0.020722275408841608 if:0.016645466037190824 may:0.016603720740367277 not:0.01585381761883795 said:0.015389986820771641 shall:0.015197110698419086 so:0.014923418046187855 t:0.01385745040240321 for:0.013510359664379834 then:0.010174615194103594 :0.34752696079644935 +and:0.03868242960999506 as:0.031124813427855922 went:0.02352509775927722 him:0.02196555539050794 them:0.018760608639018784 up:0.017985449426794205 is:0.017894175620344187 go:0.017174904667157563 able:0.016756848979943888 going:0.014481672239490295 it:0.014128375989346808 was:0.013277058274565138 time:0.013249953793837373 not:0.012469887553778763 began:0.012465717758716884 way:0.012105610030480113 back:0.012090864562211581 right:0.011941707822828511 amounted:0.011564315359310868 :0.667354953094539 +of:0.15202893919603663 and:0.09812728427532111 to:0.06791432854549577 in:0.05575871267048355 at:0.04982234126189911 on:0.044226688514000266 is:0.03666087787619237 from:0.03575765516089405 for:0.03344825626682076 all:0.028069498696424427 fact:0.021106321337709084 so:0.016935461432433112 but:0.01632235151693798 with:0.01616659696132137 upon:0.016121330813777448 said:0.015968561279332872 that:0.013808373402469652 In:0.013274978148001009 an:0.013183120612012031 :0.2542983220324374 +the:0.11500545585881412 of:0.0897605566703555 and:0.07914879987306167 a:0.05827037833039227 to:0.0386987683614473 was:0.029282661483795363 be:0.023890810389268442 is:0.02056818843792312 been:0.017204803150083207 or:0.017094944717067368 in:0.01610392931760865 are:0.015798243080240505 his:0.01344187865263006 at:0.01321973597799718 for:0.01304287912725108 their:0.012337012043366955 were:0.012236169772424844 :0.01133284696603621 The:0.01095822742659897 :0.3916037103636372 +of:0.09129790931378902 the:0.07369883040827747 and:0.047842263382354346 in:0.04189055351593407 to:0.04045875475680249 a:0.03542341257202578 be:0.02020462051672066 for:0.01979292654746225 was:0.01760256398103379 at:0.017380150555488715 is:0.014984483003968216 with:0.014047653760730413 by:0.01374644383819499 :0.012670486581795598 In:0.01200961464556976 or:0.011563835749786333 from:0.011391516893522809 are:0.011273104484969465 that:0.010755276030689069 :0.4809655994608848 +the:0.11919516938815296 of:0.07230453158552728 and:0.05781056740443249 a:0.043018564803886335 to:0.031305092790907506 in:0.020848713353460488 at:0.014270110001066288 .:0.012526810245749479 :0.012413283442322082 for:0.011719122709941797 by:0.010808400946589808 or:0.010404172990115616 The:0.01003576004804544 with:0.009811868184449042 tho:0.009295902015355835 was:0.008924239095331684 that:0.008672304223433876 is:0.0085591147338948 be:0.008335143826716943 :0.5187411282106204 +to:0.5957733889153539 not:0.05176106384767595 and:0.05114633632169136 can:0.03328145293351773 will:0.03286304612937158 could:0.03092577121276407 we:0.02046894670315425 they:0.018830221499687584 would:0.01882991356065387 I:0.015844865366005184 you:0.01389189909445993 who:0.012969405115977413 never:0.012757157291003254 cannot:0.010174848233180952 should:0.009181888667131882 may:0.008158531119326124 or:0.0070471791466500565 must:0.006885214494734251 now:0.005338527530921293 :0.04287034281673933 +was:0.25660112736022755 be:0.10710648083690077 been:0.09039740930462152 were:0.0656831515033425 and:0.06468461145519598 is:0.05724008107605831 have:0.0343502105322864 had:0.031187801169848147 are:0.029501024702159883 a:0.021698129382155235 I:0.019944860683384774 he:0.0180694111765629 being:0.01754487882083767 has:0.01615989584080484 the:0.01508130741094302 not:0.012835037249781585 bo:0.010531787884139318 to:0.01021720532353983 waa:0.008216308085846226 :0.11194928020136352 +and:0.14690730320657555 so:0.05435575319182233 say:0.04238766789833749 fact:0.03908136999212515 know:0.0351979392553035 said:0.03366214485096073 is:0.030279805180628463 all:0.0263252408945833 show:0.022996744051861428 but:0.02215349007530338 believe:0.02189392375418679 notified:0.019111503361398424 me:0.01797843286327251 of:0.017862325786196412 think:0.017309691876854858 ;:0.016492911436199492 see:0.015067771854113643 as:0.014994591239418036 says:0.01306736208657778 :0.39187402714428077 +the:0.08741288820481248 and:0.07392080242938477 be:0.0572668144792991 was:0.05686739458441792 of:0.05297029938296901 to:0.040095074017987696 is:0.03448309022071693 been:0.028380973754521515 a:0.02485235362607966 are:0.02226522268065813 were:0.019682022343204007 in:0.019454144698829248 or:0.019273705289081854 as:0.0158232132157123 not:0.012361914460680723 being:0.010097596398749334 for:0.009388164492904385 :0.00930537568905371 their:0.00894740846790883 :0.3961515415630284 +in:0.3114048631875333 of:0.1069468503930642 In:0.07735384718336341 to:0.0690112662407028 and:0.053511518533357616 all:0.024618838133437574 on:0.022982403111191048 for:0.022855028151134184 from:0.016758488054263526 with:0.015503528129341563 fact:0.01006336799962564 is:0.008344015575573483 but:0.008156899288614947 at:0.007720655528393596 upon:0.007696164555842769 by:0.006755965282284731 one:0.006201396065800449 that:0.005441552052183301 out:0.004901612075898368 :0.21277174045839345 +men:0.01766135596942324 time:0.01505562673616322 made:0.013560315691959812 free:0.01245394913114941 him:0.011892767228711324 right:0.011234977694580851 in:0.01088611093878477 up:0.010215822590996494 life:0.009691508412909737 her:0.00930299611532786 good:0.0090028362455134 out:0.008991811412937758 long:0.008890375128403995 health:0.008734013941397572 highest:0.00796852097353956 friends:0.007961175634480124 and:0.007953647412582717 it:0.007694675305501132 gold:0.007647292272898856 :0.8022002211627383 +of:0.09129790931378902 the:0.07369883040827747 and:0.047842263382354346 in:0.04189055351593407 to:0.04045875475680249 a:0.03542341257202578 be:0.02020462051672066 for:0.01979292654746225 was:0.01760256398103379 at:0.017380150555488715 is:0.014984483003968216 with:0.014047653760730413 by:0.01374644383819499 :0.012670486581795598 In:0.01200961464556976 or:0.011563835749786333 from:0.011391516893522809 are:0.011273104484969465 that:0.010755276030689069 :0.4809655994608848 +the:0.37312454149723284 and:0.0870415171110524 The:0.05041685559077831 his:0.04419915216677703 a:0.042739257564181024 their:0.034231997402933645 many:0.03181502847311128 with:0.025025889973359892 of:0.02279624893902677 by:0.02181502604454161 tho:0.021775724584072363 our:0.018990693990372273 her:0.017132217823653404 intimate:0.016976055063312092 two:0.012282671355564205 my:0.011590690196763976 old:0.010254747244395615 young:0.009268349450252851 or:0.009144533791237901 :0.1383788017373805 +the:0.244382071846319 and:0.09741649297788879 more:0.094530231009461 a:0.049086163716474604 their:0.048782442153440894 an:0.04458434636474247 of:0.03822383869725342 was:0.03751489672640175 no:0.03673080045601148 less:0.029082586110012246 be:0.02538995528507592 some:0.02368381560969793 most:0.023618962157258873 were:0.02045819011696332 his:0.020209585589247188 other:0.01670656740011403 are:0.016629259531432964 tho:0.01584612637568779 is:0.01524108207702712 :0.10088258579948922 +to:0.2315349075382314 with:0.1498178197470576 of:0.07119557267242496 by:0.06178265933260891 for:0.05536055632293516 upon:0.027666733406393165 from:0.021897933321167982 at:0.020529545732796285 on:0.01933273481681155 before:0.019149326547751786 against:0.018733055293719596 in:0.012754111636360744 asked:0.011539956920792056 and:0.011043960522260763 kill:0.010770772720947534 tell:0.010742727854897256 see:0.010090263760711114 around:0.008177436747383977 filed:0.0077237383841272395 :0.21915618672062095 +in:0.01537890912747597 due:0.01499868500005919 ;:0.014676680247169489 up:0.011091765318669173 it,:0.010755223802698798 them,:0.010386858638301764 him:0.00899504129621563 time:0.00880987578951211 out:0.008641182838918227 it:0.00831862486812748 thereof,:0.008031710473103902 made:0.007457741734895027 him,:0.0073605759140591195 them:0.007010073394894898 and:0.006649684806091494 law:0.006542181136651371 States,:0.006486279360037424 interest:0.006442130880884873 dollars:0.0060236299919868485 :0.8249431453802473 +that:0.3006282797824588 which:0.08825833989594935 if:0.07590645430925741 as:0.057415901162760165 when:0.046979310514990436 and:0.04469798510716899 where:0.03859947268255101 what:0.029567497471003793 whom:0.02794588647609859 but:0.027263368649816086 said:0.025667511709866035 If:0.0221645656642884 after:0.017088573952120545 because:0.01688933254693009 before:0.01683775684107503 until:0.01581127311986328 though:0.013677231415689368 time:0.013460006345194214 When:0.01100496486132436 :0.10913628749159403 +of:0.12029075334173585 the:0.10451906801474217 and:0.07804003068402295 to:0.059553244134028856 in:0.0357212996940669 a:0.03325056500674509 that:0.02732399050126487 with:0.024818148475514456 which:0.0215599066618441 or:0.019822448686589986 for:0.017781027265530797 by:0.016875107288106053 :0.01312225379629731 The:0.012555724672440968 any:0.011941515886687886 from:0.01147252895948787 In:0.010970552485957377 be:0.010013314725197814 no:0.009000390234684384 :0.36036812948505437 +and:0.07716139068909908 o'clock:0.06643281029583649 which:0.04604686697239624 that:0.04423192940644453 at:0.041388542249495903 of:0.030588741074944283 here:0.03017171674781308 meeting:0.0271984562049883 arrived:0.022217906209811233 until:0.021307984244324743 left:0.019350388019997614 it:0.018807017278714193 It:0.017472811636624938 on:0.01621571007193427 but:0.01605267112808588 when:0.014399049099344727 met:0.012992153939398659 Mr.:0.012437267101046933 day:0.012327664617761209 :0.4521989230119377 +to:0.37283843644897946 not:0.11814377900680881 and:0.07806572179065009 I:0.060476131261482144 will:0.041809576172264676 we:0.026572413131715045 would:0.02623411762658226 who:0.023642697671432 you:0.023106270589509172 may:0.019359810379276966 or:0.019233634024418345 never:0.018652094470844448 they:0.016824021958584203 there:0.015193541024179285 We:0.014939373277611396 have:0.013244997806181933 shall:0.012910770487093699 should:0.011271403586391119 do:0.010466423826709606 :0.07601478545928533 +the:0.4448053583238228 in:0.1236138298234768 on:0.07607843526340571 a:0.042727799812331706 of:0.04005894865256398 The:0.035768748027659954 and:0.03149471078288241 In:0.028261134556887783 tho:0.02123519886618237 great:0.012750029043542988 first:0.011090149479825772 this:0.01100135524200429 tbe:0.009190268363595733 On:0.008818955063349534 any:0.0076091928215763945 by:0.007284604463693343 large:0.006773208745228204 from:0.006234365706325814 his:0.005742277155479867 :0.06846142980616457 +a:0.22349028267644427 of:0.127642217048378 the:0.09290425789008543 with:0.06895900917624936 and:0.06259901486376919 for:0.04931441324820632 very:0.04108005490562987 no:0.0367383384418519 be:0.0359559526677493 is:0.03488447516657112 are:0.024917428551762013 by:0.024881711352217024 in:0.022185722955281387 so:0.021930357560225395 as:0.021635544864387228 was:0.019101060969828453 or:0.01885982407330777 too:0.017308645191634758 been:0.015626023167119037 :0.038985665229302156 +and:0.06317916895143688 was:0.03089079697380977 is:0.020044819943736053 be:0.019406329289829806 are:0.016631216139614186 that:0.015910745835586493 it:0.014132589635136123 been:0.013429954470292457 made:0.013153338042273357 were:0.012494049396038097 or:0.012369181282419555 them:0.011608721240324167 up:0.01101461536327863 him:0.010833186604515583 as:0.010718511743974049 succeeded:0.010682665877813333 engaged:0.010592681714621757 not:0.009777868089593193 now:0.00948198968071834 :0.6826475697249881 +he:0.15020584904886594 it:0.14932502602373973 I:0.10617331681817163 It:0.0958150973478426 He:0.06606310886610721 and:0.04933873754341522 she:0.04406522577711935 which:0.03336850425704226 who:0.02076056888590406 She:0.016416600004860324 lie:0.01271774115660674 that:0.011192111867602465 ho:0.009654722382145724 there:0.009227304501342846 be:0.008930612403501447 man:0.008121840193101115 but:0.006124572114280355 1:0.005955252657948116 bill:0.005932187918411267 :0.1896116202319916 +that:0.11369524918561855 and:0.10719618996084543 but:0.06824763114444864 which:0.05708137772612762 when:0.05435451600413945 as:0.04631803651132031 if:0.036664097582340766 what:0.02819477351199355 because:0.019653177724588678 But:0.018891172442344884 If:0.01885409932635473 time:0.018033385434028534 where:0.01747971695801815 When:0.01604050293833985 whom:0.014445087760254329 Then:0.011786520491126662 think:0.011565265059345997 :0.010886076108293105 me.:0.010421710870154543 :0.31919141326031625 +of:0.28149421264834623 in:0.11267693972804442 to:0.07941611430693077 on:0.049317193708205066 by:0.04883207455350315 that:0.048457459515689645 from:0.04546558477022089 In:0.044536945565855496 at:0.0440168314543658 for:0.03812839440009732 and:0.03496365355291686 with:0.022914340756688002 upon:0.022251737791802968 At:0.019816929521809523 but:0.011568425522272026 From:0.011384757008237779 which:0.011152280904812352 To:0.011093130076293742 By:0.009918362579112466 :0.051594631634795475 +a:0.2202362919951088 much:0.10602135653676927 the:0.09912629446835154 no:0.07091040978217338 is:0.06064406898567343 and:0.05522812415894644 of:0.04387868433694038 far:0.04141465437972203 or:0.04026891612773716 are:0.023252222592644787 not:0.021941403041608746 for:0.02112668955936441 any:0.020271759269514456 be:0.018104649907547895 was:0.017420728905162844 with:0.017015199997694994 The:0.014547533731080425 little:0.014364433193698546 have:0.014204822738513744 :0.07902175629174672 +to:0.42152878528141885 the:0.10368921175825548 a:0.09727833198830482 of:0.04141705954458664 this:0.033706997374721 in:0.02284725297568193 and:0.019659653596093965 that:0.018960687607962618 or:0.016648168626677385 last:0.016323119656462767 every:0.014215917478115746 will:0.012001716459927573 for:0.011074348988821245 can:0.010653490715461237 could:0.010132403890655773 not:0.00998997225448609 their:0.009060420201636764 his:0.00898181429558214 would:0.008304494522165891 :0.11252615278298214 +the:0.10145115073724262 and:0.07037766010668917 of:0.059672800397955375 to:0.03808636035687919 in:0.03420431611173551 a:0.023805075696144436 his:0.01974249500091645 said:0.01701927707638035 that:0.01646466294930901 or:0.01623634421336646 will:0.014602827543637264 this:0.013941248711357778 was:0.01367924014327157 for:0.013607797685872136 In:0.012876580660220965 their:0.01250743591786298 be:0.012020664677474724 is:0.011544747172890267 he:0.011209395911886041 :0.4859499189289077 +one:0.1028303141280697 part:0.05963429477052991 out:0.04766456937681193 some:0.031418679026461914 members:0.030764490253327767 side:0.029940657362655835 portion:0.022063658796890564 office:0.020457735219956013 member:0.019726706386316174 end:0.019666887540649894 tion:0.018667441728710307 parts:0.016814747270460957 people:0.014112771422418794 all:0.014072739582212475 any:0.013183573287639892 One:0.013083578354183906 that:0.013024335602903442 account:0.012482348155001894 many:0.012077825070275192 :0.48731264666452345 +of:0.24919447943423864 at:0.21699840808105578 in:0.13311120535290835 In:0.05329037205313391 for:0.04695755791239881 to:0.027147789415976602 and:0.026248460225329315 the:0.021751602739882924 from:0.01723223136679262 with:0.013692096905933895 a:0.012329129130660367 above:0.011799666867672485 about:0.01147357638793725 by:0.010864693785010999 all:0.010414108738719691 on:0.009210708427976711 nearly:0.00883710609875831 two:0.008104807314765278 some:0.008057486273052583 :0.10228451348779549 +of:0.3528647559944451 in:0.08752290190833956 to:0.07981398817538778 for:0.06009520948946063 that:0.05118801456547429 by:0.04417949522952344 with:0.04080674158731589 and:0.03251676531607218 from:0.030307900172738354 at:0.02995470932660046 In:0.028263497987968796 upon:0.01711301544094913 under:0.015604934911372971 on:0.015495665283230303 but:0.011116045918239292 make:0.010078165410181422 is:0.008845901850331385 as:0.008829761472497208 which:0.00703800527580247 :0.06736452468406935 +of:0.1462195112731987 in:0.12440687670226991 for:0.08966280601549906 and:0.07874388976807965 to:0.07699730448174372 by:0.0642673888322884 with:0.055790877844681105 that:0.05000199042579133 In:0.03783448348868884 was:0.026217543148616625 or:0.023318095162246498 is:0.02283662883754792 from:0.02174016432098208 at:0.019833321566993016 on:0.01837931780711167 make:0.017390622657679176 had:0.01474802010215184 have:0.013828287139868682 upon:0.01276177749434942 :0.08402109293021233 +a:0.5571118135078748 the:0.18148717709055118 and:0.03575675815089628 of:0.023294431276722902 The:0.02046498846135228 in:0.01816523452363591 tho:0.01506184250737977 are:0.01475957983475562 some:0.014508321426895152 A:0.013668271531862928 with:0.01198709180179261 is:0.010115008569881661 was:0.009012796006684197 In:0.007834770088197654 their:0.007304264626442974 most:0.007299470584731664 his:0.0068975641619233525 our:0.0067404877317731775 very:0.0066253813138041255 :0.030904746802841856 +at:0.15759636317629921 of:0.1421714067936483 in:0.11676904876960983 to:0.06398364411645996 on:0.051157018190029144 for:0.05108566601725402 and:0.04555513108461132 that:0.031721944739604234 from:0.030113826054908015 In:0.029702699076370135 At:0.029399515452081842 with:0.028043139425789426 by:0.026185917658690036 is:0.020303271491863204 as:0.01797707611473321 was:0.017223050385135958 upon:0.016504659720422372 about:0.014081527374087893 be:0.01236778699448754 :0.09705730736391437 +the:0.9028603321205297 tho:0.027089896719410037 a:0.019105950181382295 tbe:0.010864499713532011 The:0.008368132871149455 our:0.004618541902762843 this:0.003994842268552334 in:0.0021439452472375117 great:0.0018783677222232887 his:0.0018423645075077485 their:0.0018311501766690988 immediate:0.001614953774662278 other:0.0013501901235551813 tlie:0.0012557557603113776 whole:0.0011903579773013039 its:0.0011412939606276664 regular:0.0009739087636649628 said:0.0009125976369742103 tha:0.0007780577536071535 :0.005184860818339531 +of:0.09129790931378902 the:0.07369883040827747 and:0.047842263382354346 in:0.04189055351593407 to:0.04045875475680249 a:0.03542341257202578 be:0.02020462051672066 for:0.01979292654746225 was:0.01760256398103379 at:0.017380150555488715 is:0.014984483003968216 with:0.014047653760730413 by:0.01374644383819499 :0.012670486581795598 In:0.01200961464556976 or:0.011563835749786333 from:0.011391516893522809 are:0.011273104484969465 that:0.010755276030689069 :0.4809655994608848 +to:0.3516447359759263 and:0.18023777277199615 not:0.08198239250589186 will:0.03868137596617981 you:0.021434230236783095 would:0.020562549858568722 shall:0.020006280342992587 can:0.01771157832264936 could:0.016211532076110712 be:0.014971883842705383 who:0.014500927104216094 was:0.014269904282404922 I:0.013850367565657155 is:0.013037443082672826 they:0.012899992269550357 may:0.009942001461075262 as:0.009424111945645994 the:0.009398621749132065 should:0.009395176383037513 :0.12883712225680383 +he:0.24857899604278952 who:0.11198097260451954 I:0.09062580440538431 they:0.07587746227743704 she:0.06673774299576715 He:0.04959981839050062 and:0.04157195833590072 we:0.033175694931322955 have:0.023958985965738457 which:0.021627790451976152 be:0.018803255945943412 it:0.01542573154140241 She:0.014809176108495402 ho:0.014212422943442953 They:0.013343005593801877 that:0.013228238400328229 lie:0.011836103627679612 man:0.0113640030656227 has:0.011213654537876164 :0.11102918183407078 +to:0.09864282010030183 the:0.08375297126946753 of:0.07074571151673052 and:0.06779046829403 a:0.02766650927741597 in:0.021670314456411932 at:0.021392828982420006 for:0.01627599403114278 is:0.015107338441904122 he:0.014818877918256685 was:0.013808540905081488 by:0.013132601340090633 it:0.012796195965848819 I:0.012723560421513859 :0.0121914922721236 not:0.011777366450725432 .:0.011011346691779235 that:0.01092359583028988 with:0.01073896800850032 :0.4520324978259654 +:0.11871729138305977 it.:0.01911064143447919 .:0.016386251172335452 them.:0.012596243526354401 time.:0.009360020420445998 day.:0.009168412944419536 of:0.007686906479358225 country.:0.007650883357762753 year.:0.007469439980974469 him.:0.00728687003003788 city.:0.0064269466476686386 years.:0.005867481692294424 work.:0.005691895573378589 States.:0.0050291823875685225 law.:0.0049355462756249975 people.:0.004822028130314291 place.:0.004649840287818021 tion.:0.004632030791400461 State.:0.00454940182491829 :0.7369626856597861 +one:0.1028303141280697 part:0.05963429477052991 out:0.04766456937681193 some:0.031418679026461914 members:0.030764490253327767 side:0.029940657362655835 portion:0.022063658796890564 office:0.020457735219956013 member:0.019726706386316174 end:0.019666887540649894 tion:0.018667441728710307 parts:0.016814747270460957 people:0.014112771422418794 all:0.014072739582212475 any:0.013183573287639892 One:0.013083578354183906 that:0.013024335602903442 account:0.012482348155001894 many:0.012077825070275192 :0.48731264666452345 +the:0.09430077480139609 of:0.07642839840266616 two:0.05445876048326873 and:0.04701528766002996 three:0.042986508182469844 five:0.03165458449806558 in:0.026598220108657943 four:0.025266487605959745 30:0.02389120620792211 20:0.023060402770616016 2:0.01985951344305334 few:0.01985923438496195 their:0.01909962638539651 a:0.019039294421865912 several:0.017751021753414156 many:0.017545249066750986 3:0.014847465853520299 4:0.013884359193866177 50:0.013802743608245033 :0.39765086116787346 +of:0.2325904965154777 to:0.09555688513152961 or:0.0771174687555151 in:0.06951448302798575 for:0.057324629021020077 than:0.055021354096736384 by:0.04973704096652859 without:0.03898872352967628 that:0.03772030562099877 at:0.03254069057922397 if:0.03067909419774899 with:0.029148027520137298 from:0.02375727839016155 and:0.023432330481143224 as:0.01924636486145014 on:0.018586853799889037 have:0.017309805833093526 upon:0.014934392367847518 make:0.012953718618804988 :0.06284005668503151 +the:0.2286070419057375 of:0.11152490760907478 and:0.07594663552956302 a:0.0400668088306149 The:0.0384127879575459 to:0.027422354760493563 in:0.026321479803662295 by:0.0228143918704424 an:0.021899081483674455 with:0.015967632546021918 that:0.01487878232940222 tho:0.014237731361504004 for:0.01205879038035713 Mr.:0.0113647514184833 .:0.010045345727252294 their:0.009617494363018904 as:0.009291859583788222 his:0.009218318771056376 :0.007682629806029095 :0.2916211739622777 +has:0.31428547775070687 have:0.2636510369403743 had:0.20778638927562496 not:0.05154167191368212 having:0.03168033038544899 never:0.012399956027189312 lias:0.012088166513063232 bad:0.01059672161216 ever:0.007919905488863423 already:0.007243762087623773 havo:0.00695520506153417 always:0.006216707464370442 yet:0.005463436836476106 baa:0.00508361590436327 haa:0.005075116288961736 also:0.0033051399850056755 hare:0.003009100424514341 bas:0.0029676781211078274 long:0.002903144318799208 :0.03882743760013031 +of:0.2917268351623647 and:0.08635478758094653 by:0.07644387211221426 to:0.07498956689763257 that:0.07309514938109743 in:0.06705300118453328 from:0.03799613467551662 for:0.03692653866970655 with:0.028065992939779065 provided,:0.025812309374190462 on:0.025181658504020852 In:0.01433826908553186 which:0.014288274129409919 upon:0.011707670743741358 at:0.011067001029860983 all:0.009221910280057397 That:0.009185702809103215 as:0.008633319367177433 before:0.008021653602937029 :0.0888903524701785 +one:0.1028303141280697 part:0.05963429477052991 out:0.04766456937681193 some:0.031418679026461914 members:0.030764490253327767 side:0.029940657362655835 portion:0.022063658796890564 office:0.020457735219956013 member:0.019726706386316174 end:0.019666887540649894 tion:0.018667441728710307 parts:0.016814747270460957 people:0.014112771422418794 all:0.014072739582212475 any:0.013183573287639892 One:0.013083578354183906 that:0.013024335602903442 account:0.012482348155001894 many:0.012077825070275192 :0.48731264666452345 +to:0.14116657904931945 with:0.12159370884999614 for:0.09877887490205817 of:0.055057868713499526 upon:0.05230087733755565 by:0.04872255099775551 asked:0.043086769531705316 told:0.037034260547962224 against:0.033582088425885066 on:0.028018525917520975 made:0.020410254605218565 make:0.019856328725368935 give:0.016965504496641175 given:0.016239836402747294 see:0.015530194207629919 pay:0.015185838678829314 from:0.013527506595745734 at:0.013320211701016304 before:0.013304018645076124 :0.1953182016684686 +the:0.5548874446440009 of:0.03401998106379578 tho:0.031245624667656936 said:0.02885877158655666 and:0.02715070727048409 in:0.012261085633654183 tbe:0.011919292733564868 The:0.011566040249503902 In:0.0063873180406045366 our:0.00588191366940779 to:0.0053611463489702865 on:0.00492619976406251 First:0.004871880447697031 a:0.004316516435969808 Pacific:0.004170976758397002 from:0.003872951474020819 or:0.0036253664220300464 A:0.003489414892493471 with:0.003196491047720999 :0.23699087684940848 +of:0.08493743996874009 the:0.04537007712050972 and:0.041506932927266336 in:0.03586212233555753 a:0.03573683082071449 to:0.030385880039074588 -:0.025361483548512063 for:0.014246053942594594 by:0.012216347673762725 .:0.01103989863556381 that:0.010551185155321599 at:0.010374993125063453 In:0.01011125400774165 on:0.009832568924000638 I:0.009426519128921942 is:0.008952552526977567 :0.008595007489776527 as:0.008399059792090114 with:0.008155065813497852 :0.5779387270243127 +of:0.0908621371152707 the:0.08315669358370874 and:0.08149363013832153 to:0.049364160231931034 be:0.034898231336433785 was:0.02926532150836718 is:0.020023449864655585 Mrs.:0.01823316244052882 Mr.:0.018105683734027187 are:0.018086942105937247 he:0.017576769912502746 a:0.015171461444441961 were:0.01515906293357739 in:0.014320382995550326 on:0.01273827414468091 with:0.012091061054920015 been:0.01139811047362188 or:0.010726812412015967 for:0.010711173051308096 :0.4356174795181989 +the:0.11500545585881412 of:0.0897605566703555 and:0.07914879987306167 a:0.05827037833039227 to:0.0386987683614473 was:0.029282661483795363 be:0.023890810389268442 is:0.02056818843792312 been:0.017204803150083207 or:0.017094944717067368 in:0.01610392931760865 are:0.015798243080240505 his:0.01344187865263006 at:0.01321973597799718 for:0.01304287912725108 their:0.012337012043366955 were:0.012236169772424844 :0.01133284696603621 The:0.01095822742659897 :0.3916037103636372 +the:0.11919516938815296 of:0.07230453158552728 and:0.05781056740443249 a:0.043018564803886335 to:0.031305092790907506 in:0.020848713353460488 at:0.014270110001066288 .:0.012526810245749479 :0.012413283442322082 for:0.011719122709941797 by:0.010808400946589808 or:0.010404172990115616 The:0.01003576004804544 with:0.009811868184449042 tho:0.009295902015355835 was:0.008924239095331684 that:0.008672304223433876 is:0.0085591147338948 be:0.008335143826716943 :0.5187411282106204 +the:0.26057628525799037 an:0.1778511219504593 great:0.05747802431267988 this:0.05154351936835318 and:0.04968969509583555 some:0.041985519966026875 any:0.034344903703570746 of:0.027673820201907756 his:0.02347211875498818 such:0.022678446209869467 a:0.022154990139414025 that:0.021599440658461092 in:0.02151134595484535 their:0.01962630796019278 same:0.01879217943250107 large:0.01782571451571446 no:0.01738727700592142 considerable:0.015401691737954836 its:0.014717218118206416 :0.08269037965510724 +one:0.1028303141280697 part:0.05963429477052991 out:0.04766456937681193 some:0.031418679026461914 members:0.030764490253327767 side:0.029940657362655835 portion:0.022063658796890564 office:0.020457735219956013 member:0.019726706386316174 end:0.019666887540649894 tion:0.018667441728710307 parts:0.016814747270460957 people:0.014112771422418794 all:0.014072739582212475 any:0.013183573287639892 One:0.013083578354183906 that:0.013024335602903442 account:0.012482348155001894 many:0.012077825070275192 :0.48731264666452345 +and:0.07895257911471103 was:0.03596317658514438 out:0.024016824392823457 that:0.023672598027062328 placed:0.022844208461019616 work:0.021707439938587154 made:0.020781005318872947 is:0.020224993929329655 up:0.019794182040466738 put:0.018288921183371155 down:0.0171740551508179 interest:0.01663630075189571 point:0.01659978677065351 him:0.016175999448187352 held:0.015562908663841706 Dakota,:0.014616466073415059 place:0.01424333231426501 Minnesota,:0.014067166610364513 it:0.013665465625771424 :0.5740125895993994 +50:0.05401428206609109 20:0.04991301979490946 120:0.03531313524188912 25:0.029371131653073278 the:0.02782742168785531 14:0.027547938142260937 30:0.026362382509850506 75:0.02616128422066324 40:0.025670192384668385 100:0.02435536532361759 ,000:0.023548689682955884 55:0.02120879469039519 60:0.02100247577005019 15:0.019979367778394236 two:0.017979665115896833 000:0.01775821130029476 300:0.016168010927228204 1,000:0.015820213255015817 12:0.015674188923217366 :0.5033242295316726 +the:0.11919516938815296 of:0.07230453158552728 and:0.05781056740443249 a:0.043018564803886335 to:0.031305092790907506 in:0.020848713353460488 at:0.014270110001066288 .:0.012526810245749479 :0.012413283442322082 for:0.011719122709941797 by:0.010808400946589808 or:0.010404172990115616 The:0.01003576004804544 with:0.009811868184449042 tho:0.009295902015355835 was:0.008924239095331684 that:0.008672304223433876 is:0.0085591147338948 be:0.008335143826716943 :0.5187411282106204 +as:0.05270243539220221 up:0.04864442470168452 went:0.04246500733268543 and:0.04039705040001216 go:0.036588636791750936 came:0.02903065915448317 returned:0.026858687302575877 him:0.02460318655294626 them:0.02423366010208504 back:0.022201965596743277 is:0.022017408540252355 come:0.021426632339955447 was:0.020837134387084618 according:0.018892738981901434 began:0.018180966712833542 made:0.018115317144115867 brought:0.018075298856535218 sent:0.017478764268114073 it:0.017270054968531737 :0.4789799704735068 +of:0.11134572177493632 and:0.08902955457947626 to:0.08320493933683627 or:0.08264829655664845 the:0.07698222938619555 in:0.057839073544563586 a:0.05038974729019773 about:0.049360045277067346 for:0.040878486256378 from:0.040795582397133184 at:0.03586885307987923 with:0.02457877624168132 than:0.019055523089277722 by:0.014663165924112147 In:0.014550504926518406 that:0.014419485122189454 within:0.014284629419092077 thirty-:0.012363401805654223 past:0.012216478929027809 :0.15452550506313492 +to:0.6901051859237077 and:0.058698849280065135 will:0.0385382176552527 would:0.02773565171337207 the:0.01833856424207167 shall:0.015520182946221893 not:0.01383931690217343 I:0.011158138292130209 To:0.010806211002098522 can:0.00871220193739791 should:0.00857726322686741 he:0.00827716345472431 must:0.008059933144433228 may:0.007706510179243269 who:0.006849515051270896 then:0.0061278187745092355 could:0.006004151375933953 we:0.005725872855005476 you:0.005445884757181389 :0.04277336728633963 +per:0.8799792699675937 the:0.02201317638133544 and:0.010813942000893225 por:0.008215706742653693 The:0.0013095586134819076 a:0.0010786538006988078 long:0.0009473605048691884 :0.0008788649994598384 or:0.0007692070158382908 tho:0.0007045740418415568 one:0.0006842714260155498 of:0.0006682208540876079 to:0.0006440254372539706 north:0.0006119099332162002 .:0.0005345618821531543 first:0.0005299058464161193 south:0.00048312433628613287 last:0.0004610616150130273 all:0.0004584073350037607 :0.0672141972658889 +two:0.13522546403145952 three:0.13245153283053296 four:0.08526737086296804 five:0.059636350581219084 six:0.05182020728509171 twenty:0.05030974622551462 few:0.0487601246955461 ten:0.04579024729238961 many:0.04184707894413828 several:0.03711953102141667 thirty:0.032685454253113456 for:0.029842663033185488 eight:0.028371254556295324 seven:0.02771066920688984 of:0.026070051314032353 forty:0.02066909047047229 fifty:0.017425196279104514 10:0.014942110965119538 fourteen:0.01443361408287856 :0.09862224206863204 +is:0.09752816972903013 well:0.09519830246188332 and:0.06927169332987482 are:0.05054020957829281 was:0.049466166280125734 be:0.04516965685891033 not:0.042834916864203744 regarded:0.0421288627789902 such:0.03620930315600614 soon:0.028701304180619076 just:0.028426895131448825 long:0.022284297008547276 known:0.019613416403419567 much:0.01860401950936954 far:0.017434954144226744 it:0.01726617387950707 quite:0.015420652886790877 were:0.014738230495692853 almost:0.01344611324142516 :0.27471666208163587 +the:0.2117265090343872 a:0.12178224170954703 his:0.08850594286561787 of:0.0792978622885282 in:0.05330107477089237 to:0.03335607172144837 and:0.02938653468485258 or:0.02424785689326766 my:0.018442051711559576 on:0.01828784025303908 her:0.01773796711186693 that:0.015100697598369826 for:0.015100659615626177 as:0.013709418565429914 their:0.013298275116467353 In:0.012466975673129443 tho:0.01215362791354705 great:0.010964054721439931 good:0.010398816800807308 :0.19973552095017613 +to:0.3069293909282888 will:0.22899704366484905 may:0.06951938696863126 shall:0.06670112404723777 should:0.0609395586666499 would:0.05835331082257887 not:0.04955395597910967 must:0.039840187791602 can:0.029894529537140575 could:0.01637540197232398 cannot:0.012560564725560329 might:0.011027466732727507 and:0.007693269872475227 also:0.004689056111124548 it:0.0038056737262985854 never:0.003472685951097267 soon:0.0029185996290215115 always:0.0027704308290639737 only:0.00226073282409791 :0.0206976292201213 +State:0.09293265078595353 city:0.062499489255516155 City:0.04269550042287497 county:0.031168754978018135 day:0.03096222293915111 state:0.028945555364535983 line:0.026986676708660336 side:0.025226477763560063 County:0.024270546935723745 corner:0.020549365543221527 part:0.016378837047182966 District:0.016115713437859964 deed:0.015771216521424488 Secretary:0.01572595443749968 House:0.015162185738620828 Bank:0.013775443517559553 Court:0.012627447906612726 one:0.011872275284987585 lot:0.010348943661278611 :0.4849847417497581 +and:0.11960381353697505 a:0.10467419535712988 was:0.07516718448553815 is:0.0691424459423878 are:0.04691447118957528 but:0.04401983771822667 or:0.04091269962243895 the:0.037091116228622795 of:0.036406364618937474 would:0.034525227904274924 not:0.02808333745005781 were:0.027610666734901094 to:0.017429573722687487 be:0.016244753592238516 been:0.015995495490971588 will:0.0158625431014833 that:0.015567873580505846 for:0.014161663739057091 Is:0.011555702380722012 :0.2280310336032683 +he:0.1636498188404562 and:0.06927198724896123 I:0.06656994430114405 they:0.06579429607427177 who:0.05682561814940432 it:0.0529456919374724 she:0.04209797699254853 He:0.033175284132465226 that:0.02944894220935246 we:0.02872329865938571 which:0.025005048619189767 It:0.022691402009067045 be:0.014046751336344317 ho:0.012553926196652642 She:0.012186845212580837 1:0.009888397651086485 They:0.009868543575669523 men:0.009799334280327343 have:0.009383434317161357 :0.2650734582564587 +of:0.1225968227454333 and:0.060567674212084824 that:0.03395386874328944 the:0.031121582349795823 in:0.024366441197429346 by:0.018429692803328342 .:0.0170384876269412 to:0.015985581725268466 at:0.01163119316927628 said:0.011560060934142306 with:0.01105228623854901 In:0.009986995841552068 or:0.0096800246657226 :0.009354987141090782 for:0.0093380907800663 ;:0.0079691125385584 from:0.007373306413906458 on:0.006918410633232347 a:0.006707623028904063 :0.5733677572114286 +as:0.04634030036332146 according:0.03899412849546743 up:0.036798797569585144 come:0.03655438549785151 regard:0.032890747479030105 came:0.03260859747343426 and:0.02825872602010057 reference:0.02713067719242744 went:0.025198656158362594 sent:0.024710514541197198 it:0.02393318075930395 given:0.023815087790101688 back:0.022981088406173418 them:0.020893835420696744 him:0.020706291918003362 go:0.019693633812541463 attached:0.01968915858906368 attention:0.01912401089214432 made:0.0184713326792887 :0.48020684894190496 +the:0.15570214332335908 a:0.14802542505826233 this:0.10160108927796545 such:0.06758347144901537 of:0.060332756124938304 his:0.046461315664812916 and:0.03613469163613034 same:0.03178411400197268 said:0.028386608125162555 their:0.02248327498670849 in:0.018566761394565198 other:0.018037849768999487 much:0.01721059018243957 that:0.016422332495695368 on:0.012066580088264878 our:0.011030705614974684 her:0.01068735314403984 own:0.010666033966256625 its:0.010417952512665295 :0.17539895118377155 +and:0.09047039971130154 the:0.08514126942696325 to:0.04888825982658676 of:0.04478658463432405 was:0.022836452861205957 is:0.022308270888301885 will:0.02191756329140496 are:0.02101453974760707 be:0.020967996836678684 for:0.019159598666238942 a:0.018734205374933248 in:0.014936925937771321 his:0.013328244619752894 were:0.013319041141563284 he:0.012383329429564592 which:0.011543939201709964 been:0.010967773265051852 more:0.01085087120785598 much:0.010817713923651795 :0.48462702000753194 +sum:0.015264990909639524 out:0.010469624548822214 amount:0.010268768642269844 number:0.010252144109883224 Board:0.009915489778488978 day:0.00934391924304638 line:0.009159513299813713 county:0.009058268073362647 purpose:0.007929238102727576 and:0.00784672009005394 city:0.007535183166758685 part:0.007294147380644756 case:0.006189609631311928 time:0.006139795834628276 that:0.006097569449880835 tion:0.005913104914262385 town:0.005848644229223571 use:0.0056842696333859015 state:0.0055904354376684826 :0.8431985635241271 +one:0.1028303141280697 part:0.05963429477052991 out:0.04766456937681193 some:0.031418679026461914 members:0.030764490253327767 side:0.029940657362655835 portion:0.022063658796890564 office:0.020457735219956013 member:0.019726706386316174 end:0.019666887540649894 tion:0.018667441728710307 parts:0.016814747270460957 people:0.014112771422418794 all:0.014072739582212475 any:0.013183573287639892 One:0.013083578354183906 that:0.013024335602903442 account:0.012482348155001894 many:0.012077825070275192 :0.48731264666452345 +w:0.223008097943846 and:0.06314622304446404 a:0.039635986151547405 was:0.037796227728208426 of:0.03749451139796394 is:0.032329208252078315 have:0.029832214254343563 to:0.023816629956602893 for:0.021015320615930696 in:0.019775438897318823 the:0.018637218416600317 with:0.016733357839943747 no:0.015329095084651375 or:0.013104139149726659 had:0.012914998607456124 are:0.012246580389979934 be:0.012232941158612717 :0.012142222397154073 been:0.011836317113786977 :0.34597327159978397 +of:0.19194847741005577 and:0.14081504180209933 in:0.09070778900262216 to:0.08139139477448545 Mr.:0.04235315925935352 by:0.038592449204968196 the:0.03564079461623285 with:0.025854036977605105 Mrs.:0.02480795499194689 that:0.01914724661696516 for:0.018088929709479416 In:0.01776152258847949 from:0.01551915790558045 Dr.:0.011867861914796897 a:0.010902800853238255 at:0.010754719993170788 Miss:0.010639619027582436 .:0.0092835859443332 which:0.0070247106289792385 :0.1958987467780254 +and:0.07181562702745725 together:0.06672214896410926 connected:0.05460722541492519 connection:0.053485248068146786 accordance:0.040816432970329504 comply:0.022327715315442986 acquainted:0.01991331996883064 compared:0.01902004432375884 contact:0.016949822974841922 familiar:0.016791563233682194 up:0.016271038698657696 do:0.015355480362757417 interfere:0.014875808889703945 charged:0.014646284015101253 pleased:0.013610051164447858 him:0.01274062267734275 but:0.012200014478196207 satisfied:0.011962054640116513 it:0.011810815262474694 :0.4930786815496771 +a:0.2690653017109875 the:0.1453366611390955 one:0.048969527111049 his:0.04676916802961654 of:0.04420586667268197 on:0.031155802089320707 their:0.030172409811521833 and:0.02261032957477983 some:0.01860164052215929 per:0.016645109707257962 its:0.013729286250623614 two:0.013450696464959909 in:0.01330511007421706 square:0.013142656029121404 ten:0.012772125483689547 first:0.012183949673867028 six:0.011761564138474423 every:0.011132925361694902 all:0.010812881525654518 :0.2131769886292275 +of:0.28767355066866834 to:0.08775711267569858 in:0.08678131196995101 and:0.05160598694501188 on:0.04646139928102899 by:0.04519522654900943 for:0.044547789071328545 with:0.03396756772609607 that:0.033699232901107726 from:0.03075346596941143 at:0.027039283056790858 In:0.021061449543044047 as:0.017514234937992545 all:0.012543839382496166 upon:0.011844431150487573 is:0.00998972746569266 was:0.008814315973987914 into:0.008557199930727406 through:0.007781895704231326 :0.1254109790972375 +to:0.12022893700269083 and:0.09020394424291768 the:0.08587503820055309 of:0.06450042443224316 in:0.0310058468700829 a:0.017742048521183405 :0.015548046036689871 not:0.01491307651316237 that:0.014112408707955496 for:0.013734482372212283 I:0.013065769926808477 will:0.012848502316304782 at:0.012837991177321897 In:0.012628718855091186 by:0.012491091048660757 be:0.011425930130217754 is:0.0113962101007567 he:0.011342727513475473 or:0.01112522537451577 :0.4219735806571561 +it:0.132250017961467 he:0.10611683068978595 It:0.10158323269508335 I:0.09385531376711469 there:0.0482272570969675 and:0.047932678423754184 He:0.04689323806798481 which:0.03778870969022465 she:0.03246698667854158 There:0.032109050324957075 that:0.026343354658741405 who:0.01926175852057592 This:0.0173652499265126 She:0.016887653067166317 man:0.01079580816221595 this:0.009690002595939693 1:0.009128986819057064 but:0.009031422398282092 lie:0.007227527567309806 :0.19404492088831835 +as:0.09093073842646554 is:0.0885318388614584 was:0.08245065582085354 in:0.06839867136440488 with:0.05935110044690696 of:0.05329054661977189 to:0.04519791089295467 and:0.04062374444899285 at:0.04053068776263254 such:0.03936528552098265 for:0.037269565445823015 had:0.028799718709489927 have:0.02728538502275054 be:0.026537576950022075 that:0.026436247337471765 made:0.024525670150110063 by:0.02084397079656956 on:0.020569728237350798 has:0.016818337079739586 :0.16124262010524876 +and:0.1514646144212111 the:0.05862689575860203 is:0.049429280730477636 was:0.039143006644315956 are:0.03868972599958803 to:0.02669845689119512 of:0.022647635860447803 an:0.022039528043420388 have:0.02184384619725233 I:0.021194222671277428 be:0.01997949339972461 were:0.017114532576381892 a:0.014518440039983897 Is:0.014218997914213742 all:0.013853790529495855 he:0.013671745914319884 not:0.012865328540043165 will:0.011204123226087926 more:0.010550631098620478 :0.4192457035433408 +of:0.1343138587507163 in:0.06765056899607808 as:0.06523902155079696 is:0.06408242877157266 to:0.05920677986120668 with:0.052352944016705046 by:0.0489161125839358 and:0.04476446561312716 was:0.043874711196451026 for:0.0353857632723415 at:0.028122627130863165 such:0.027654959488952243 be:0.026520497424890634 on:0.01775924540667342 In:0.017304992039102633 that:0.017053231434412737 have:0.01675624464989442 from:0.015365315280442398 had:0.013575095776826075 :0.20310113675501107 +all:0.20184020577437875 and:0.12949717536996225 the:0.0902525539257231 or:0.046763132187637335 of:0.04339442476445055 be:0.03636238608581481 is:0.03576289968750319 not:0.032493182310657794 much:0.031858133131538825 a:0.027871908561785442 more:0.02417249070668713 to:0.02392150951903172 no:0.021560348392709726 that:0.021465778172444213 this:0.01888009122030222 any:0.017130963041360678 by:0.015051117736337095 are:0.014480242222763466 little:0.013162017799223097 :0.15307943938968865 +of:0.16179865622146847 in:0.09809603196471278 with:0.06490976664679782 to:0.06184160943657442 and:0.05682057839289064 is:0.054002905773474115 by:0.051936181587385846 for:0.04585136449242679 as:0.04078487837916495 was:0.03631610298166641 at:0.032517403585058814 such:0.02945966581252323 that:0.02897800858240903 on:0.026724354376323204 make:0.026693450527731012 In:0.02047524027229662 be:0.020092671312908216 made:0.018128420078804417 into:0.01749208727780859 :0.1060806222975746 +to:0.0687538053547516 and:0.06844425404882046 of:0.04300324989470599 for:0.026060103926942094 the:0.02505220971254534 :0.022802481988118968 that:0.022164905777675548 in:0.019979266421832276 on:0.019277723921296452 from:0.017510021697883717 by:0.01677148657563097 with:0.014845420159432996 all:0.011886462538350004 District:0.011187525561880235 day:0.011142778116969164 or:0.010634769770678992 it:0.0101912529358947 is:0.010091717799971107 but:0.009106401718525942 :0.5600941620780935 +have:0.13260156877671406 he:0.11189381693819768 I:0.08873375050589181 has:0.07858306698398693 and:0.07209995473776871 who:0.07103788638736931 had:0.06559927199529716 be:0.028980865328702643 He:0.025199736472281235 they:0.024257021376134977 she:0.0210333117337325 not:0.018036982444564583 was:0.015794852368215224 it:0.015765454627598964 which:0.015355156712543897 we:0.012388873496185511 also:0.012300569263830396 then:0.011918755565433172 is:0.010672492261484041 :0.16674661202406715 +a:0.21170634060197127 the:0.1909422341511322 any:0.14127734982287316 no:0.051092183384596764 The:0.04312688856854014 other:0.042274570576829776 some:0.029839401513590647 every:0.02824257786432262 of:0.026567796187907954 one:0.021541174043464256 No:0.01876399513995128 and:0.018679196290507273 this:0.01786083601613018 each:0.017645643214500586 such:0.016098723858034014 his:0.013906037916528396 little:0.013403952968386737 that:0.013316675285452434 Every:0.012301569279428728 :0.07041285331585158 +the:0.16287760685838365 of:0.0883592780729449 to:0.0618987346693935 and:0.05423685233212741 in:0.030811253892523358 for:0.03057359609188714 be:0.025098115820027647 was:0.01826945122296575 is:0.01662970283289366 a:0.016448402520667066 or:0.01633619095301082 his:0.015510346299682681 their:0.015084175217362073 are:0.014656254371894712 been:0.013019491851438341 were:0.01267572744006931 that:0.012270302451397866 on:0.01131798809455223 :0.011150587255169986 :0.37177594175160794 +turned:0.14176991408149778 went:0.09450661123497978 was:0.054046031776665386 go:0.04632351914099016 all:0.04105920275335817 come:0.039325794565632254 is:0.03181842998542007 came:0.02856237490077157 and:0.027313794770557284 it:0.026366591557228855 them:0.026070416468527095 not:0.0248229032100805 going:0.024046934019888996 handed:0.018292182423643333 are:0.016809827054494034 get:0.016345712433838606 sent:0.0155251091280989 him:0.014713202042130228 gone:0.01458266928737302 :0.296698779164824 +:0.061569231226670185 it.:0.015917849376082933 him.:0.011403275934850238 them.:0.00932619773855283 ?:0.007455619689901378 her.:0.006668426930577034 and:0.006598271342783577 years.:0.005758268185655176 again.:0.005466065166067957 country.:0.005429093398451956 time.:0.0053793463987660125 year.:0.005370806233789607 ::0.005190832941096384 day.:0.005061415593488992 .:0.00444490537547269 made.:0.004290453816339108 life.:0.004288115865372061 so.:0.004196100795168957 all.:0.004169458120064631 :0.8210162658708483 +the:0.17027190784407714 of:0.10585557835912704 and:0.07355927771906935 to:0.05486905984958157 a:0.04543746377447453 in:0.03128555052933153 be:0.028704485173100775 was:0.02350529800142253 is:0.02215549335554494 for:0.02077556258358175 his:0.01804639098945333 or:0.016335100594594944 their:0.015847999621030492 at:0.015526727957625254 been:0.011815834631173878 are:0.01139058447814694 this:0.010362020528084328 tho:0.01035635773045807 its:0.01000473355720393 :0.30289457272291764 +of:0.09129790931378902 the:0.07369883040827747 and:0.047842263382354346 in:0.04189055351593407 to:0.04045875475680249 a:0.03542341257202578 be:0.02020462051672066 for:0.01979292654746225 was:0.01760256398103379 at:0.017380150555488715 is:0.014984483003968216 with:0.014047653760730413 by:0.01374644383819499 :0.012670486581795598 In:0.01200961464556976 or:0.011563835749786333 from:0.011391516893522809 are:0.011273104484969465 that:0.010755276030689069 :0.4809655994608848 +of:0.09600784190523846 and:0.0683277518527659 is:0.06736554247482035 no:0.06505036619498145 any:0.06318194291607745 to:0.058819263447234135 was:0.04926986382961732 the:0.047452264603049125 that:0.04085783061044957 only:0.03257574688118978 for:0.03242210162931259 by:0.032247367073842605 as:0.03083529278734916 from:0.02916034151975441 every:0.028023491886569565 in:0.027291840914661265 than:0.027136258736045582 but:0.027109402030343437 some:0.025853421029716044 :0.1500120676769818 +and:0.07937204038540155 to:0.07144978193605266 of:0.0672060292061216 the:0.05555592158872507 was:0.03668090227291337 be:0.0349085883197884 for:0.032924091876542425 is:0.02664876365997107 in:0.025674788931279047 a:0.023223776118971466 or:0.016939206298533106 that:0.016539581232081792 he:0.014316053657548605 have:0.01328430700369435 not:0.013187005768047653 with:0.012119957551210947 been:0.01201541922496813 it:0.011894114007232226 which:0.01106992325189301 :0.42398974770902353 +of:0.1988831510696926 in:0.13406508595499314 to:0.10537286133467846 and:0.07209489878923016 for:0.0505717585082725 with:0.043209017410876516 on:0.042882882768387455 from:0.03693806143866171 at:0.03306815414669597 by:0.03134985505551198 In:0.027907597343156704 upon:0.022573162932006625 that:0.02115588873809918 all:0.012519970121896005 about:0.011548560678732786 under:0.01150897855313043 as:0.010261026829105025 up:0.00943954881819355 over:0.009358341018613464 :0.11429119849006578 +of:0.13084814232797154 in:0.0740836656586379 as:0.0625527229231004 with:0.059577596335708534 to:0.058433603729754965 is:0.05551580107464621 and:0.04946529489577619 was:0.04264000753602388 for:0.04009673021586375 by:0.037684080471064085 be:0.023941707008899252 on:0.02316059851167503 at:0.022644769441950232 such:0.019950936521181326 that:0.017856095877642635 like:0.017386655618315594 In:0.016902219705578994 from:0.016046571451088905 not:0.01205910100844263 :0.21815369968667797 +and:0.043015776808721616 :0.04028952622357906 him:0.029849066119168963 was:0.02681302709661934 out:0.014119963913348797 is:0.013074138148868823 be:0.012766846983914327 it:0.011772514041273297 made:0.011223532608227454 up:0.010963937419784348 man:0.010937823438994515 them:0.010623785233086304 found:0.009069041086430609 put:0.008043119849930488 day:0.007916602851218564 that:0.007895868193531492 been:0.0075237704681003536 placed:0.007502762542176327 time:0.0071425151592323455 :0.708456381813793 +and:0.1387516010270223 was:0.06896540873548426 is:0.03967723008394472 be:0.030935907254196524 made:0.0247037868738781 succeeded:0.023272724727185327 are:0.023119803351061424 been:0.022683060782540544 were:0.020219814649011517 that:0.01920953684475755 it:0.01909613476617951 engaged:0.01835186183760243 them:0.016971727561650045 him:0.014987062893899913 found:0.01468025235023546 now:0.014647707350265125 or:0.013754653711865468 man:0.013263672633816798 but:0.0124688102170854 :0.4492392423483175 +of:0.28744187449061614 in:0.13016364976473568 to:0.09197739450967872 on:0.06597421316436011 and:0.0467890115784662 that:0.0444304204823193 from:0.04098623714915948 at:0.03375505128718631 for:0.031151916095031148 In:0.031098161575266563 by:0.02468616454890314 with:0.02079680083145004 as:0.01900489690836246 into:0.016947469208420277 which:0.013002617136618879 upon:0.010761772893166021 over:0.00971759925347644 all:0.009401209739885154 through:0.007886472264643422 :0.06302706711825448 +manner:0.10014154852873941 and:0.04758153569965947 that:0.027548634697924172 way:0.017860480013091023 time:0.013660246230114154 it:0.01211986153900764 all:0.010836767636137537 one:0.010756664322780446 part:0.010728763786470055 district:0.010609221477965584 land:0.010415108137366232 place:0.010399655452080119 esteem:0.009337949673530233 work:0.008993990842538664 now:0.008593781479256013 them:0.008489846330526286 day:0.008448021271808803 money:0.008371952622637733 interest:0.008221632363195723 :0.6558843378951706 +the:0.15221692559957206 of:0.08069151212182069 and:0.07240635484257117 a:0.06392219701248592 to:0.049176531100385425 be:0.03126073625539749 was:0.026597884151575976 is:0.023935668013294973 in:0.01809554000060103 or:0.01736809520316659 not:0.015262215701975859 are:0.015051161940897423 an:0.01311498090898963 been:0.012584606500930769 for:0.012457103310419224 their:0.012288032821829989 his:0.011371194071019814 that:0.01120572166061323 were:0.011074588239307515 :0.34891895054314526 +:0.06597398843171462 .:0.01030395389672125 it.:0.010088066621603407 them.:0.008598140741699399 purchaser.:0.007088479310190136 year.:0.006602918923370603 week.:0.006528145505184498 time.:0.006209692533000022 States.:0.005620657441033837 :0.005472539505334583 work.:0.005242841846255723 -:0.005171601017842856 county.:0.005010752681249356 country.:0.004892429414871051 ::0.004794814488815709 ?:0.004554504053208262 world.:0.004434247536744677 of:0.004202702115073913 to-wit::0.004185604080427258 :0.8240239198556588 +of:0.12105416942352887 and:0.10881632876121317 was:0.08099441851939787 is:0.06311574424947787 are:0.05574940472105266 were:0.04206107955143143 in:0.03690560075603582 for:0.03246211103807695 all:0.024941622304492417 containing:0.02441390594738128 or:0.021600271042345923 only:0.0210956554575692 to:0.016556440352702213 with:0.016472085281632274 bring:0.01586118318515029 be:0.015824873128742548 being:0.01483811135993239 by:0.01396963441393815 that:0.0136335173886647 :0.2586338431172339 +and:0.06454739073657131 demand:0.023313300174744492 ready:0.0192991955467307 used:0.018559068069203856 time:0.0167973135366693 not:0.012889415712033305 vote:0.012868664167591082 it:0.01277775949265748 candidate:0.012059490274945432 him:0.011492660117416436 them:0.011389360230310022 called:0.010603763162339089 made:0.01030049958521204 up:0.009942829375404135 was:0.009875709402481388 as:0.009516893763303088 patent:0.00929908628672026 or:0.009178704268878403 but:0.00882338719685127 :0.7054655088999369 +the:0.6947689262348768 The:0.06493769032696295 tho:0.027758082866621257 a:0.025714861659465793 and:0.024092509753365556 his:0.01972629211239211 their:0.019214102989454116 very:0.017688453577664694 our:0.016074428315215127 its:0.013851160839994615 an:0.013751374136252326 tbe:0.007529208979760912 of:0.006901153192574307 as:0.005374100367533051 most:0.004117205366842368 this:0.0040809757020739005 are:0.004066437588492491 your:0.003925676579845802 Tho:0.0036405493578634276 :0.02178681005274836 +a:0.5987951863135793 the:0.18102187151211482 of:0.03879368378644567 The:0.025956895082611675 A:0.02371087636252911 in:0.018579969678188566 and:0.012282832725812542 to:0.008646147524682382 with:0.008153079159431543 this:0.008100331159511616 tho:0.007983170477484617 that:0.0068351757296568946 highest:0.006730926704681959 their:0.0046683472786369674 which:0.004259704947198511 for:0.004033218959056322 by:0.003996759816174736 our:0.0031361026933834253 no:0.003100278368918989 :0.03021544171990045 +and:0.1443821688795852 have:0.1122713107468667 had:0.0607684525005551 is:0.05648124381542362 has:0.05431622088720998 of:0.0392518766244789 was:0.035883849763566046 which:0.035116439257812354 to:0.034427608635534804 who:0.028976753563592954 he:0.02815792015939644 are:0.027144844123196264 be:0.027115044611211014 been:0.017425101090979944 in:0.017094021692758036 I:0.016692111039751947 by:0.016153242330727718 the:0.014890646333308825 having:0.014884650441643282 :0.21756649350240087 +a:0.3437668258838085 the:0.11031653568935253 of:0.0918296795009358 very:0.042927834027026164 and:0.03751138193084017 so:0.031235176310722805 with:0.02918034174653596 as:0.0223394553818864 in:0.02156531120583688 The:0.02106547891599962 A:0.02038664997457675 be:0.02027433324007138 is:0.018858481791795577 are:0.01864749934076842 to:0.014845783701305695 too:0.01381780632576268 was:0.013342245232017524 by:0.012623175951958943 for:0.011814483800906042 :0.10265152004789214 +the:0.1686254608388007 of:0.08510631124515454 Mr.:0.053063968456177904 The:0.05290176461656073 and:0.04281351925879434 that:0.03659363717531167 a:0.027376597759942865 this:0.016009104250207996 in:0.014329796242200724 :0.013577096541793277 .:0.012332809689052695 Mrs.:0.011483371514010961 tho:0.011366564416127033 to:0.010938551223696477 for:0.010273564804762044 which:0.009103350770352783 as:0.009022855831525262 his:0.008831867202298479 or:0.008219518012985871 :0.39703029015024366 +in:0.17333390910102422 of:0.13578951613764473 with:0.05904541970333935 by:0.0517299874415416 from:0.05117384264788293 to:0.04954801642333707 on:0.03258580133098789 upon:0.028045552262219903 and:0.02746465638581391 at:0.027401129230372467 In:0.0264916126857894 for:0.020981012353372862 through:0.016179977358265752 under:0.010272339319953236 over:0.008088591792628616 after:0.006672089634355952 that:0.005549924402439045 into:0.005431739385443137 about:0.004992604493598926 :0.25822227790998903 +the:0.6907011976264315 The:0.11052454641044757 a:0.04088875778465804 tho:0.02992449884422076 his:0.019006684818004518 tbe:0.009923258254199367 their:0.009066453782265711 whose:0.008950846065203612 of:0.007585563722536913 this:0.007391225886683205 our:0.006740592509805241 its:0.005936423658785234 my:0.005758801705270019 and:0.005152791873427949 Tho:0.0045596336676802275 A:0.0038825976164377426 This:0.003082777592010968 His:0.0029971932384508498 your:0.002832888508783391 :0.02409326643469726 +to:0.5337322946325576 not:0.09459394379815872 will:0.07126656533997872 would:0.06505132890553068 and:0.05197654719114495 may:0.01707059410104596 must:0.01572298540872825 I:0.01465106633672999 we:0.012322796091487393 can:0.011283680869557569 never:0.010999764864546102 should:0.01078211522511251 shall:0.00958265830155272 could:0.009448340818162544 they:0.00706999466610313 cannot:0.006837277188041688 or:0.006499090039575616 thus:0.005501876339673822 might:0.00514726531065883 :0.03945981457165325 +and:0.07189316291157011 connected:0.05841286227789318 comply:0.05229645419485993 or:0.04739980534041525 connection:0.03690732183213075 together:0.03598029574110099 interfere:0.032450833347082944 not:0.02498101262343607 do:0.02432568729706535 accordance:0.021447167799881057 them:0.019652550571200404 it:0.017896087612732422 but:0.013890900570294603 him:0.01383249668007508 there:0.012626478382522507 familiar:0.012201071096274205 that:0.01170270088044219 done:0.011313990069365468 acquainted:0.011148885942102388 :0.46864023482955514 +the:0.21753169445174048 of:0.1432943174652635 his:0.08333949951807483 their:0.0674842295469205 in:0.038431470772385214 this:0.03538694770793831 good:0.03276773521847571 a:0.02349161340973148 its:0.020007355726235142 for:0.019891892082257036 my:0.018988967954760304 to:0.017596373107062954 our:0.01676955617463218 your:0.015968049491771257 own:0.01588666494659078 tho:0.015756948358044677 on:0.01515748879385401 same:0.013492298583790656 by:0.01348537172758664 :0.17427152496288434 +would:0.13516776815931453 to:0.10175318883572715 who:0.0734216616549984 they:0.06090829687960963 I:0.054414498797697934 which:0.046947310165833735 must:0.0405200574155989 might:0.036445589637541506 shall:0.03272411333844378 and:0.03228038765818951 should:0.03179090655993478 that:0.029508760759060126 not:0.02876680420731567 we:0.028503874055856488 may:0.028150033623979002 could:0.022163961267380006 will:0.019029697840863502 there:0.014322928357478427 They:0.011858887319353098 :0.17032127346582382 +one:0.1028303141280697 part:0.05963429477052991 out:0.04766456937681193 some:0.031418679026461914 members:0.030764490253327767 side:0.029940657362655835 portion:0.022063658796890564 office:0.020457735219956013 member:0.019726706386316174 end:0.019666887540649894 tion:0.018667441728710307 parts:0.016814747270460957 people:0.014112771422418794 all:0.014072739582212475 any:0.013183573287639892 One:0.013083578354183906 that:0.013024335602903442 account:0.012482348155001894 many:0.012077825070275192 :0.48731264666452345 +the:0.1570879454366584 of:0.07804606027406501 and:0.06787223916973353 a:0.036913117407562514 that:0.03650642298570135 The:0.02495259369096442 in:0.024366179622801448 no:0.021237121796534534 Mr.:0.02095974543727837 which:0.020555747976365113 to:0.019670312615068093 his:0.014514871313338153 for:0.013864556278571553 as:0.012619099712826765 he:0.011995143219360524 their:0.011486225473642654 said:0.011457904953995053 Mrs.:0.010878795762489643 tho:0.010097198257076249 :0.3939187186159666 +of:0.09129790931378902 the:0.07369883040827747 and:0.047842263382354346 in:0.04189055351593407 to:0.04045875475680249 a:0.03542341257202578 be:0.02020462051672066 for:0.01979292654746225 was:0.01760256398103379 at:0.017380150555488715 is:0.014984483003968216 with:0.014047653760730413 by:0.01374644383819499 :0.012670486581795598 In:0.01200961464556976 or:0.011563835749786333 from:0.011391516893522809 are:0.011273104484969465 that:0.010755276030689069 :0.4809655994608848 +was:0.20037987588346862 is:0.12725112459072782 had:0.098787946548962 have:0.08248848424161176 has:0.07219317810955253 and:0.03676073446369828 not:0.0359145262284483 be:0.034758535511480275 been:0.029164977962666674 were:0.02534839048911262 are:0.025184330688674438 of:0.02378717664634124 in:0.01763939637563083 to:0.01519620431173223 as:0.013053723197059486 Is:0.012187756445841021 it:0.011890242389088982 take:0.011541433012265056 for:0.010813049670092584 :0.11465891323354525 +went:0.10912029234451565 come:0.10671720464377592 go:0.10624358994743464 came:0.09873191771416212 brought:0.04987483716148017 get:0.042826637804221086 sent:0.03429197594912053 way:0.033901667578156366 them:0.03260080247055569 her:0.031517442000632875 the:0.03147139439550924 far:0.029938067543489044 him:0.026593642265769518 it:0.025919772339275147 and:0.02536119703702789 turned:0.023849219963742854 look:0.01927037720574664 going:0.018207213090320886 comes:0.017766384737727882 :0.13479636380733584 +and:0.06757538639375386 able:0.04480443256440997 order:0.04164193849152858 him:0.03728612471927136 necessary:0.033553024710615324 unable:0.02958898131391231 enough:0.027378510210707207 is:0.02676363856814044 them:0.02620870961657156 allowed:0.025056188179911787 was:0.023524084134238343 have:0.021626974897503662 time:0.021139398915115116 refused:0.021127472431644687 me:0.02111167206376693 as:0.021037750728518902 right:0.020928519889492604 power:0.02014589362912954 required:0.019997383235232126 :0.4485039153065357 +the:0.8720164496724387 tho:0.04690213718062064 The:0.020049037744112555 tbe:0.014608353362653797 of:0.010531132155482499 and:0.002859999174544876 by:0.0026471868598776324 a:0.0025839687482875763 tlie:0.0017670966627532552 our:0.0016744398623076587 that:0.0016363278773482784 in:0.0015877691034125033 ihe:0.0014314452382605672 said:0.0012657665366587463 tne:0.0012285756312794174 tha:0.0011553282168626636 this:0.0011250832174796185 from:0.0010033143504130397 ofthe:0.0009208976082912711 :0.01200569079691473 +and:0.03868242960999506 as:0.031124813427855922 went:0.02352509775927722 him:0.02196555539050794 them:0.018760608639018784 up:0.017985449426794205 is:0.017894175620344187 go:0.017174904667157563 able:0.016756848979943888 going:0.014481672239490295 it:0.014128375989346808 was:0.013277058274565138 time:0.013249953793837373 not:0.012469887553778763 began:0.012465717758716884 way:0.012105610030480113 back:0.012090864562211581 right:0.011941707822828511 amounted:0.011564315359310868 :0.667354953094539 +be:0.22692425806162725 was:0.13143189300298053 and:0.11882014801710515 been:0.09102910214825832 is:0.07165807366060592 were:0.04467869161084922 are:0.03994243904495195 being:0.0292862753481153 he:0.024696030089988344 as:0.023868533897121357 bo:0.015635814909549847 Is:0.014536487379439599 now:0.013571166494072908 if:0.009794343026925393 it:0.009602405287798401 who:0.009239352212336948 they:0.009209855326491297 that:0.009023287903045157 not:0.008633578326370954 :0.09741826425236615 +to:0.3940137292134465 and:0.1878696166556622 will:0.03969648863300279 not:0.03645668321379428 or:0.02513324520343958 I:0.02162462646688611 that:0.017400968563295156 the:0.017070681028896893 we:0.01700190771769312 would:0.01607597716815865 an:0.015856099357463665 beg:0.014168838610994584 can:0.010339386767325048 they:0.010335794310499542 shall:0.010125802275640257 must:0.009437675875215509 of:0.00926692951054611 may:0.009059809608620696 could:0.00823545248080375 :0.1298302873386155 +the:0.25886971421497584 a:0.09696833780237532 motor:0.07362898976027349 this:0.058161576393914755 their:0.05728392174868182 The:0.05708571134856771 his:0.034633593049564544 our:0.034029242831173805 such:0.02878946143867217 other:0.026521711120740386 and:0.022556735054626187 of:0.016941520242816466 whose:0.016433028208933526 tho:0.01351364254974577 one:0.013509346972865816 two:0.013286222226847957 its:0.01314108019122412 little:0.012472933680442905 your:0.010876923472138573 :0.14029630769141888 +to:0.5068686830578658 will:0.12941272488486436 would:0.0521652131920658 the:0.04252329305885895 shall:0.03026190489682848 should:0.021914263830752692 and:0.018958469580900687 this:0.01743560398330102 not:0.015019462179509129 of:0.014645526312857952 an:0.014179210816501217 must:0.009964624381909933 can:0.009227806917296478 or:0.008994204869837203 may:0.008964374628939566 a:0.008161384780949056 could:0.007468976728442237 I:0.006881488700928926 any:0.005597118854123553 :0.07035566434326698 +part:0.05950410580720066 one:0.03921651515466511 side:0.0372128624231018 portion:0.01918370764411026 payment:0.015857239632332022 parts:0.014164381610052798 members:0.013633226646934829 that:0.013575272906521886 and:0.012835832364900945 day:0.011944565158307238 member:0.0113567338522943 corner:0.011111995065495185 tion:0.01056218378141027 all:0.010222805190805349 survey:0.009748340527196975 out:0.009424993679449895 office:0.009395786892381363 line:0.009212822285610477 time:0.008804162325423732 :0.6720324670518049 +it:0.15590291243815246 there:0.0887784025092866 It:0.07904016205387611 which:0.06936908824431676 they:0.05362226352982171 that:0.04647101454662571 and:0.04420120519214072 he:0.027952982163116303 There:0.027623278151575524 mortgage:0.023443129896555264 you:0.018859539766003214 who:0.017891862574647276 this:0.014117846301193209 I:0.01363040583752058 sale:0.011818751696880098 This:0.010767348085132659 work:0.010306262168963347 as:0.009927627839447666 They:0.008978002990569422 :0.26629791401417535 +the:0.39694257497746904 of:0.10096261421825915 The:0.07520642489608657 and:0.051249218172651684 by:0.02924213383987534 that:0.028426716709905733 his:0.023889371705626238 tho:0.022664652653056085 their:0.014509859289085382 in:0.013177063389676755 her:0.012412337677210094 an:0.010509787515537038 or:0.00996581140582904 for:0.009751137161068422 said:0.00932556948544448 tbe:0.009285518641060373 our:0.009264884796354091 with:0.009113972821832081 on:0.008833125125680607 :0.15426722551829178 +he:0.19956729287862465 and:0.07191296902611605 it:0.053667871137476626 who:0.03927380510309982 It:0.03836828074963396 she:0.031028488703260866 that:0.030895883272376374 man:0.02693302638513644 which:0.026780687228380222 He:0.026397545453575012 they:0.022678394275779067 as:0.020716390833758182 ho:0.01656895905018284 one:0.012810495222557935 I:0.012074741073242024 lie:0.009395333665666226 She:0.008257139396057874 this:0.007348621032836826 the:0.007110790319914505 :0.33721328519232446 +of:0.38118517732936974 to:0.10511195162615061 in:0.07606647162499605 on:0.052794004063553425 by:0.05262545467809198 and:0.045344880368223456 from:0.037404596718026616 for:0.031665710939286246 that:0.029012191869654383 with:0.026945824532511726 at:0.02194570306491385 In:0.015268695074065374 upon:0.01230438423503305 into:0.008181026577817174 through:0.007297488788968844 against:0.0071526706558473745 over:0.006210108951168131 before:0.006050186743921909 ot:0.005961897405282696 :0.07047157475311734 +to:0.23334741397546274 will:0.15836533405171113 may:0.09949037511980667 would:0.07389204208812378 should:0.06763166071221012 can:0.061808270435966914 not:0.051498153898775705 must:0.05081598318993426 could:0.04710282928857721 shall:0.031831558334186466 cannot:0.017590765728060724 might:0.01695145084434011 and:0.009781930439699304 it:0.009544075267830807 never:0.007617720664411977 also:0.004657406608930041 that:0.004423586746439444 which:0.004235962913144111 then:0.0037281092328610324 :0.04468537045952745 +the:0.6403229278503515 first:0.04928033809876541 a:0.038662493989641486 tho:0.03373495536740619 The:0.02315059978468975 second:0.02248201604975525 third:0.015282564084020386 upper:0.015179086438239993 tbe:0.01392437916428955 every:0.012774346077122712 front:0.010393813129560132 said:0.010167939208787228 this:0.009638919431599492 and:0.009235689987412851 main:0.006214187570451082 that:0.00611278985898074 one:0.006071840009932596 fourth:0.00597110453882401 any:0.005119149676674513 :0.0652808596834952 +:0.04162698371885081 it.:0.02595146017363132 them.:0.018702723544352963 him.:0.015153269457938101 time.:0.01200940356180651 country.:0.00951986047329463 years.:0.009438122250081664 year.:0.0090368096589184 day.:0.008419466221505564 all.:0.007855076214131803 work.:0.007535192774468745 again.:0.0071232798588866655 people.:0.006803176663452785 law.:0.006734786354354629 life.:0.006577811337429185 water.:0.006515459814103475 other.:0.006201172435867552 tion.:0.005954223494809217 party.:0.005938784045507204 :0.7819029379466087 +of:0.3960418485976253 in:0.10538272220288886 to:0.09723905862723771 on:0.06856076698289106 by:0.0570628846365099 from:0.03951740983759001 at:0.026762542855479153 and:0.024765746242145552 In:0.020160279281995732 that:0.017330651705459728 for:0.0163323574455821 with:0.013459663746930842 between:0.01301684870472718 upon:0.008101473758715845 into:0.007328053512132755 along:0.006758981737528424 through:0.006676026966631805 ot:0.006261334037429177 over:0.005995251137206178 :0.06224609798329271 +of:0.24299249158433378 in:0.07570722620350982 to:0.06305750383132927 after:0.052235300701692994 for:0.051305914578957126 and:0.042912420901514065 on:0.03906252684544772 from:0.03395109386387899 by:0.03381074139092331 at:0.026367585245792354 In:0.02594076971297569 the:0.02175122569857919 or:0.01944994094515023 are:0.019324810786393986 before:0.01919070352486027 After:0.019025724647356183 without:0.0187117872173 is:0.017273062958912205 with:0.016285849038811126 :0.1606433203222817 +and:0.10228541904213816 as:0.09420329615794544 that:0.07693625735102896 when:0.06545570679734035 When:0.03839369323146024 but:0.03506348319360449 which:0.032941448970856775 what:0.019637568359985307 As:0.01954778726345468 time:0.019318434565911344 if:0.017879502473545927 before:0.01773397480259024 Then:0.015806195783672726 :0.015432895013842136 until:0.015283920114533346 where:0.014379519868240443 If:0.011843583932174405 than:0.011641757627345865 me.:0.01162692631596991 :0.3635886291343593 +and:0.1138094363795065 made:0.09526380936055853 secured:0.03664601321945781 or:0.03448827653175072 that:0.028593572900075505 ed:0.022008753795563326 up:0.0212163720451728 followed:0.019152362698814127 caused:0.019018501144630582 done:0.018145450787140836 given:0.01746592712926799 surrounded:0.016893134110604346 but:0.0161890677241419 taken:0.015054122008618609 used:0.01460984439742943 out:0.014428800413338208 bounded:0.013846153576631383 him:0.013838570051933072 only:0.013723677270721346 :0.454608154454643 +to:0.13883772179126702 for:0.08581078407916239 of:0.06881846600108704 and:0.053879318139585665 with:0.041341719321317506 have:0.03605423140134866 that:0.032810178599866166 had:0.030640614695577977 from:0.027593870430442702 about:0.02314547051788287 made:0.02278488881378046 in:0.021476242632145374 make:0.01887011495792807 at:0.018154259079675775 on:0.01746958910375178 has:0.017399125536641406 upon:0.01678715095527644 was:0.016193908179413383 over:0.016135965330844274 :0.29479638043300505 +the:0.16351676733681442 and:0.1320889879483174 of:0.09513381235640546 to:0.03229699506297686 in:0.031784817003177236 or:0.028080402190604994 all:0.026057951304671385 their:0.019548694514661572 a:0.01869116802129208 many:0.017510697528295774 such:0.01628642884770151 other:0.016144586505040064 his:0.014933392352173338 as:0.01330432681928269 that:0.01249304456398631 for:0.012122501606344599 these:0.010667374151043657 tho:0.009749366099097554 be:0.009744707781769469 :0.3188439780063437 +a:0.255121502786903 this:0.2138494517661727 the:0.18490604912867495 that:0.06951788304689274 to:0.03325840488705594 in:0.021331743493054167 any:0.017193412076733246 which:0.015748120029470836 one:0.014972424029549446 his:0.013682229527054003 every:0.013292444688053948 of:0.012731221631077304 In:0.011921386352130884 and:0.01149446922960289 no:0.010966099796796074 tho:0.010242987723279858 said:0.009255916565787321 what:0.00909442095963344 A:0.00808236759982205 :0.062337464682255185 +one:0.1028303141280697 part:0.05963429477052991 out:0.04766456937681193 some:0.031418679026461914 members:0.030764490253327767 side:0.029940657362655835 portion:0.022063658796890564 office:0.020457735219956013 member:0.019726706386316174 end:0.019666887540649894 tion:0.018667441728710307 parts:0.016814747270460957 people:0.014112771422418794 all:0.014072739582212475 any:0.013183573287639892 One:0.013083578354183906 that:0.013024335602903442 account:0.012482348155001894 many:0.012077825070275192 :0.48731264666452345 +and:0.08326739912428248 was:0.04749787573224883 succeeded:0.03894879800486404 is:0.037598757515529026 be:0.03490085685374997 are:0.02625531217847955 made:0.024466779603527923 that:0.024274732323960747 it:0.023556631846419866 them:0.021505038173796398 as:0.01973392053502453 were:0.017825530903768337 been:0.0177671436043677 him:0.017425656646122455 engaged:0.016768465321854515 found:0.016677797602914646 but:0.014408720770285533 not:0.014375396765525544 up:0.01408568543370381 :0.48765950105957406 +re-:0.11695242295961623 he:0.09805859915837788 and:0.08233281309714287 be:0.08215092721429174 was:0.04913363332119114 He:0.03709908484799321 I:0.03429388354807388 who:0.029249722417510938 have:0.02409153311126956 re¬:0.02220113518720938 had:0.021777332825335186 they:0.02121341968442224 been:0.021009515371092743 has:0.0203527486947868 she:0.02014408786790423 it:0.018997044139613197 re­:0.01886705551432875 were:0.018629947141553 then:0.01843995621286441 :0.24400513768542265 +the:0.15412792167387435 of:0.10789567809504626 and:0.05734095476259966 a:0.03667498568822702 Mr.:0.02653794373680003 to:0.02206954110056198 The:0.020435210766628655 in:0.01938072586739012 that:0.013490375310674842 his:0.012278088895466562 :0.012005717244805552 for:0.011755979533062982 their:0.010166334025212144 by:0.01001135477730392 or:0.009839580477185098 tho:0.009663483968845532 .:0.009647733202313052 Mrs.:0.007902627684581071 as:0.00788842986291276 :0.4398873333265084 +of:0.24902430830586283 in:0.09786530477567011 for:0.0875542236492438 to:0.08183565848405801 by:0.05845964238968011 and:0.048595734151550746 that:0.04826820902852847 In:0.047831493939001005 from:0.04250986741179081 on:0.03983153161380601 at:0.027516319324241787 during:0.02380119377413065 with:0.021515831406881066 upon:0.01918999606485043 all:0.01340935451065581 which:0.010059194072822382 after:0.00839655954240914 when:0.007170706022471841 ot:0.006713862655412664 :0.059451008876932325 +well:0.11482583804944232 known:0.09871763831710513 soon:0.0916505083085803 far:0.07244252345830873 and:0.05646760229569708 long:0.033191133685989645 such:0.026114132691679413 just:0.021539382495143138 much:0.018216698075154383 but:0.015820973354116454 it:0.015060478378985437 that:0.012982875435048865 regarded:0.011853385324054824 inasmuch:0.011638912473280656 him:0.010904627694769634 same:0.010576795833003501 Just:0.009621947202407478 them:0.008618852072826538 designated:0.00803461652825095 :0.3507210783261555 +for:0.4747785942328649 of:0.17068923430042351 to:0.06409556298007232 in:0.04682769474454303 at:0.026854034462146605 that:0.022018006285965567 by:0.021248656463714443 and:0.020624859961981632 during:0.016760387606223538 In:0.01343403373654681 with:0.013165325198262705 For:0.012576758254757587 from:0.008930573698792495 as:0.008383948513314917 lor:0.008361479908059785 until:0.0053465060657259976 all:0.0048183895949402405 about:0.004246352174077155 on:0.004058394008580394 :0.051781207809006365 +one:0.10757504863160208 out:0.06393072214258595 part:0.05345953864888265 some:0.04657778396619151 time:0.032653763285528395 account:0.0298978741893603 all:0.02673860913095395 and:0.02324876597992745 that:0.02275453097379819 because:0.021318504223257338 portion:0.02010071224985526 side:0.01926992014112468 any:0.018918137101655273 front:0.016609963575485047 many:0.016563310866764772 end:0.01592265492673931 day:0.015255366376758018 members:0.014811614297040794 result:0.014486922106154784 :0.41890625718633423 +the:0.11919516938815296 of:0.07230453158552728 and:0.05781056740443249 a:0.043018564803886335 to:0.031305092790907506 in:0.020848713353460488 at:0.014270110001066288 .:0.012526810245749479 :0.012413283442322082 for:0.011719122709941797 by:0.010808400946589808 or:0.010404172990115616 The:0.01003576004804544 with:0.009811868184449042 tho:0.009295902015355835 was:0.008924239095331684 that:0.008672304223433876 is:0.0085591147338948 be:0.008335143826716943 :0.5187411282106204 +the:0.24905450233291943 of:0.10080165261488189 and:0.07554378443138415 a:0.06776995862954359 in:0.03325018170542906 to:0.03200589029096145 with:0.020941113822489473 his:0.017444680538198455 The:0.015971893505830177 for:0.015736792042280068 tho:0.015686745889073567 at:0.015346608980638351 or:0.014398282775815589 their:0.01318793024702891 on:0.010870648741360624 by:0.009800949077690259 .:0.009612495880284337 tbe:0.00896323205208305 this:0.00830581795984214 :0.26430683848226544 +in:0.6370063181911252 In:0.17039545513230675 the:0.04346783136050477 a:0.023330833528118513 of:0.018322245645366875 this:0.01755594202130497 iu:0.010514243569032088 his:0.010475134489737066 their:0.006835891183782691 into:0.004679405364508762 by:0.004426705869747428 and:0.003945135682910966 to:0.0037348798380155922 for:0.003340081300467763 its:0.003010331987971513 tho:0.0028229194684546567 no:0.0027953200359690034 that:0.0027516821188927733 my:0.0024047874870912083 :0.02718485572469141 +in:0.01867429167207336 up:0.016477959004942547 ;:0.010671125660107863 him,:0.009680839147087278 him:0.007812207401982878 it,:0.007744970173981971 them,:0.006337892614935437 up,:0.006043934700795907 ,:0.0058006284222871865 years,:0.0052901419573475154 back:0.005269708317846875 men:0.005143567863504991 them:0.004988988634339788 out:0.004948979284423982 :0.004700790157141978 time,:0.004675520316575468 thereof,:0.004626808059380288 it:0.004514204380998278 year,:0.004251281575330404 :0.861346160654916 +a:0.10521434551967807 of:0.08448157462456986 the:0.07795904586602871 young:0.06215084464433275 good:0.04058092281303915 one:0.03975966839742937 white:0.0363471222109418 great:0.029316017962181907 to:0.029101614784639195 other:0.027714018531471974 old:0.02542178456861223 that:0.02434019031694081 any:0.022178099785937044 poor:0.0220639780820287 colored:0.021878259431844 this:0.01989418248197888 for:0.019690010191428884 laboring:0.016268545387520504 by:0.01619404700118149 :0.27844572739821466 +and:0.055816382268487404 up:0.026397379468894207 filled:0.024963956388303236 do:0.022763684416178983 it:0.022545669424637788 him:0.019915200432274408 covered:0.01692352963475281 charged:0.01641485275080424 made:0.014188214608252077 not:0.012024889857510553 them:0.012014274223772077 in:0.011681199749320526 out:0.011656523011916392 or:0.010240014755064602 down:0.009989382434738757 together:0.009782171360980385 but:0.009702025119436268 on:0.009282646106262199 was:0.009225968766381943 :0.6734720352220311 +and:0.0714616191757158 time:0.02764999781817853 reason:0.020299434386064002 provided:0.015560415110533767 that:0.01122507607248051 day:0.010882311534776663 it:0.009195721405726031 money:0.008901462793860258 way:0.008885963233398294 reasons:0.008705358882422146 purposes:0.008593909165606295 but:0.00826662110803132 demand:0.008167920669405051 him:0.008164263553400192 basis:0.007723793264973678 one:0.0074638193711265895 thing:0.007401354310928763 land:0.0072330011496635205 cause:0.007143333311072054 :0.7360746236826365 +of:0.2573767237547282 to:0.09964073917130514 for:0.07535110430995277 in:0.06386562533634882 and:0.05328102287635015 at:0.05106296087030002 on:0.048836516843069916 by:0.0395565499665632 with:0.0383217799747823 from:0.03440222836659457 all:0.032788229723463 that:0.02638279897111681 upon:0.020552955832494366 In:0.017420198539300515 about:0.010253044386344928 during:0.010003479099355976 is:0.009719153715051328 over:0.009297014173375478 after:0.008952888848656063 :0.09193498524084649 +:0.09396520764834321 it.:0.015546068437305426 .:0.011907927062840775 him.:0.009545912493662998 them.:0.008857473729993268 Mr.:0.007684373110071743 time.:0.006832476570297456 day.:0.0056745399319364795 water.:0.0049842177639874505 year.:0.0047981118190617315 country.:0.004566418449560442 city.:0.004382544875252001 out.:0.004359946558764837 I:0.0042040667599051885 week.:0.0038204044648985536 place.:0.003741230508963607 work.:0.003668672549218396 years.:0.003634903507619304 ::0.003584250156459369 :0.7932412536018577 +of:0.32916642448374167 in:0.07716754468197058 for:0.058648528131004365 by:0.0542655819828225 that:0.054205993316614715 and:0.05357723511328271 to:0.049617186142100554 all:0.041995733350177845 any:0.039455573002851005 with:0.03936810051191332 or:0.02378381977322412 upon:0.020634147270031322 if:0.017148442737062647 In:0.015671469802560418 on:0.015320647078834279 If:0.015295066661374734 under:0.014725652687150865 from:0.013171850023037616 no:0.010983514141661264 :0.05479748910858344 +hundred:0.02334136986593815 up:0.005482494641173394 men:0.005366536521246011 Hundred:0.0047587970519216575 John:0.00441808156134956 William:0.004390720675819281 him:0.004016828614280843 ;:0.003997112205305733 due:0.003721199871732 in:0.0036582900032443304 time:0.003637206863828461 James:0.0035594902370151707 out:0.0034878448964120057 .:0.003467980723571515 1:0.0032804584819785204 day:0.0032444781513863933 ,:0.003058139385740603 :0.0030314555521939613 Robert:0.003005471634785646 :0.9060760430610768 +sum:0.03352282876311118 number:0.028116684882597106 line:0.019995206059833036 city:0.01946514558931857 out:0.019275318828420953 day:0.01666865340772654 county:0.014872697538657208 amount:0.013254184849875051 Board:0.01252325449624941 town:0.012449555905674143 side:0.011663975251122375 part:0.011517157473718155 County:0.011460540331966697 state:0.011087331502382173 City:0.010878919191854432 purpose:0.01081028255427907 and:0.010297866493795984 way:0.009848747943663767 name:0.009522170936943183 :0.711769477998811 +the:0.530451353852606 a:0.07194007601207547 tho:0.032693828776200605 of:0.030335889103182988 The:0.027875062024554347 to:0.02562004051479493 stock:0.024669026366778302 and:0.024398363685164567 this:0.022609506614079886 his:0.013940582170878294 our:0.01144663602669801 that:0.010062293535204157 tbe:0.010062043629320748 their:0.009214306740093258 in:0.00767805453595781 all:0.00707253565622392 :0.00683552876110527 cotton:0.006631546351773159 money:0.006625028806333867 :0.11883829683697446 +the:0.10088723517042045 of:0.05772885818559526 to:0.05408528065471863 a:0.04965794617444341 and:0.048526893260292636 in:0.028660260613408355 by:0.021832895356922014 :0.020716701016463578 or:0.01977680458067695 that:0.014160764969882875 at:0.013849386653873417 for:0.013318586398838199 with:0.012937021349299247 as:0.012210084979681478 on:0.010960255125738361 said:0.009488738678851933 .:0.009163220277902397 his:0.00914542495215261 from:0.00864151937175796 :0.48325212222908026 +of:0.09129790931378902 the:0.07369883040827747 and:0.047842263382354346 in:0.04189055351593407 to:0.04045875475680249 a:0.03542341257202578 be:0.02020462051672066 for:0.01979292654746225 was:0.01760256398103379 at:0.017380150555488715 is:0.014984483003968216 with:0.014047653760730413 by:0.01374644383819499 :0.012670486581795598 In:0.01200961464556976 or:0.011563835749786333 from:0.011391516893522809 are:0.011273104484969465 that:0.010755276030689069 :0.4809655994608848 +the:0.12960942947738907 and:0.09438128245310703 his:0.08521902834746359 good:0.0842232606043766 their:0.07588869928728105 of:0.0645954581338036 abiding:0.053711280565334765 a:0.045911191417339736 no:0.03955203472121606 or:0.03487213511747059 to:0.027398357674693 its:0.026879188948658185 great:0.024889451365724607 her:0.02280291699220245 any:0.021569199655090993 my:0.019382342280753903 in:0.017282196039795472 much:0.01679425863295296 this:0.01655232465336023 :0.09748596363198608 +the:0.10858185699629669 of:0.09067729844618934 and:0.07956027330276128 to:0.02955030570072645 a:0.025192901369914946 .:0.01616125200539285 by:0.015260227995177417 in:0.014965272408184736 :0.014078512600231557 or:0.012409164477290971 The:0.010259615857333065 for:0.009745165309429912 with:0.008801835949863805 at:0.008493113785224455 on:0.007791163465757278 Miss:0.0075397500326285965 tho:0.007444646193205003 be:0.00709290645398392 his:0.007052450091095545 :0.5183422875593122 +the:0.10336983496615278 of:0.07543688350053557 and:0.06641644690227996 a:0.04455859280514038 to:0.03951391183407334 be:0.030966861721460015 in:0.030146059226641746 was:0.02880487163345596 is:0.016456555486564176 :0.014268559619302467 at:0.014138495910890675 for:0.013691162369318591 or:0.013653239614092283 .:0.011458704682463305 Mr.:0.011455809661350676 his:0.011360920796348824 are:0.011169575397813998 were:0.010356811134618766 been:0.009941051066127606 :0.4418356516713689 +one:0.1028303141280697 part:0.05963429477052991 out:0.04766456937681193 some:0.031418679026461914 members:0.030764490253327767 side:0.029940657362655835 portion:0.022063658796890564 office:0.020457735219956013 member:0.019726706386316174 end:0.019666887540649894 tion:0.018667441728710307 parts:0.016814747270460957 people:0.014112771422418794 all:0.014072739582212475 any:0.013183573287639892 One:0.013083578354183906 that:0.013024335602903442 account:0.012482348155001894 many:0.012077825070275192 :0.48731264666452345 +the:0.6339946629405362 this:0.0809293199441521 tho:0.036196517734605575 The:0.02678662631702825 York:0.025225207433295323 said:0.017787429891396846 a:0.016803605187651532 that:0.015302689950652568 tbe:0.013310127559850858 our:0.011288845601197197 of:0.009148697177032254 and:0.008128690075395148 one:0.0055180465992664025 :0.00425478701902247 other:0.004122974257257142 to:0.0036271052824798 every:0.0033487769013295556 his:0.0031649949395607616 Washington:0.002665158517467719 :0.07739573667082227 +one:0.1028303141280697 part:0.05963429477052991 out:0.04766456937681193 some:0.031418679026461914 members:0.030764490253327767 side:0.029940657362655835 portion:0.022063658796890564 office:0.020457735219956013 member:0.019726706386316174 end:0.019666887540649894 tion:0.018667441728710307 parts:0.016814747270460957 people:0.014112771422418794 all:0.014072739582212475 any:0.013183573287639892 One:0.013083578354183906 that:0.013024335602903442 account:0.012482348155001894 many:0.012077825070275192 :0.48731264666452345 +of:0.14302282511514094 and:0.09854073475961779 to:0.07592459651763353 the:0.06829074773131222 by:0.06638905469050689 in:0.03587053914058529 that:0.02920803619416181 at:0.026092834033886694 :0.023773079833961937 as:0.021155435241347016 from:0.01883430581790138 before:0.016330353160906242 which:0.015447768661343557 on:0.013651921141958324 with:0.012865445241726576 for:0.012752569951185242 In:0.011087941676083709 The:0.008664288490253273 said:0.008164888802197826 :0.2929326337982897 +to:0.17166814434836278 the:0.13629612366762628 and:0.13121618030078613 was:0.03929187626230686 a:0.03539216229125612 be:0.03453303044295271 of:0.03199552871213917 is:0.02327222538175166 are:0.021709042072824272 were:0.02064304056781164 with:0.019170980337741093 been:0.01829302900820372 not:0.014904596153863322 he:0.014715037490065681 or:0.014002243843583248 I:0.013556354351266939 said:0.012036263556320833 had:0.01126834286701601 will:0.010300151114358065 :0.22473564722976347 +the:0.3060287433092067 a:0.1012547306101174 of:0.08300203628222537 and:0.04207100172502895 in:0.02886588406884334 The:0.023451822851483024 tho:0.021766463639381527 at:0.020393516962693384 to:0.01932666176252738 on:0.0182849889799721 an:0.015211982915408774 with:0.012049246857744287 tbe:0.011737074679468596 his:0.011637774633250775 by:0.011446470381431319 for:0.009426380472196245 :0.009019026032832028 .:0.008388942315045512 or:0.00809608466884263 :0.23754116685230062 +the:0.29455262050802156 a:0.12068555095406149 and:0.09883077439677378 in:0.05302263521183717 of:0.05231060733388005 be:0.02911367314824517 to:0.028741644881462473 The:0.01836403493415054 tho:0.018263717074306393 all:0.016185245253052902 or:0.01592869575682311 with:0.015759951442158686 for:0.0147333487439778 his:0.014557673274800627 its:0.013715452659792616 was:0.01334421974255035 by:0.013272742981472681 their:0.01297691958243832 on:0.01164700541006974 :0.14299348671012457 +the:0.49123121726525415 of:0.09359164872060922 and:0.05294594592344794 The:0.03498721736403543 tho:0.030332202874605273 in:0.02818507516437195 on:0.021482206623922 that:0.01801613966181605 a:0.016487976725254237 tbe:0.010333432015272297 by:0.008288250945075846 In:0.007918786302854097 or:0.0074312791503571484 with:0.007216259764390694 this:0.006379651416436479 for:0.005770368066165061 first:0.005663456258178165 great:0.005567424472135164 ing:0.005315922080050137 :0.14185553920576865 +that:0.1816292533556709 as:0.1222778120761856 and:0.11828109508216715 which:0.08088566827058977 when:0.06341956717662911 what:0.03618720589604203 but:0.034916885671307386 if:0.0326926843035831 where:0.030316967211605164 to:0.02000694227918181 whom:0.015217980925161667 As:0.015125507077358396 will:0.013930132303075578 If:0.013031981843497306 because:0.011435571124193371 time:0.010542847157982708 When:0.010337500165026364 though:0.010160789263313525 may:0.010010938130813543 :0.16859267068661551 +in:0.2682565871859917 In:0.08550831808989949 is:0.08365950473960418 such:0.07701502020745811 of:0.07579207251319514 as:0.06470852468974089 was:0.04548026685797519 with:0.035606012887737674 for:0.030626492951559846 be:0.025737197482156627 and:0.02561723319798651 by:0.021636053117258656 to:0.017604656764771336 made:0.014726230376516198 that:0.013517179162535715 or:0.012245916109819828 from:0.012058455045916286 on:0.011693787656245123 into:0.010460178910805647 :0.06705031205282587 +the:0.2526941841255729 a:0.1955593395220863 and:0.10946899793224986 in:0.0437803440057837 of:0.040964396989994115 to:0.021747728747834014 any:0.021580618030087637 The:0.017732464836336486 with:0.01616354483870035 no:0.015547445152415738 for:0.014910154448676058 tho:0.011803316273625117 all:0.01086178056153015 or:0.010498465657960546 that:0.010042430161773417 this:0.009772440536003261 In:0.008743745752364208 his:0.007696864913510032 in-:0.007293035443334776 :0.1721387020701614 +the:0.11919516938815296 of:0.07230453158552728 and:0.05781056740443249 a:0.043018564803886335 to:0.031305092790907506 in:0.020848713353460488 at:0.014270110001066288 .:0.012526810245749479 :0.012413283442322082 for:0.011719122709941797 by:0.010808400946589808 or:0.010404172990115616 The:0.01003576004804544 with:0.009811868184449042 tho:0.009295902015355835 was:0.008924239095331684 that:0.008672304223433876 is:0.0085591147338948 be:0.008335143826716943 :0.5187411282106204 +of:0.514926832803087 in:0.08821756890320498 at:0.07433585607991772 to:0.04786808563476191 from:0.034151252834701794 for:0.026732048869936447 In:0.022907437115146003 and:0.016186401389526598 by:0.0140151776735079 the:0.009396603546773265 on:0.0079522157515974 ot:0.007857516644518432 that:0.004176057230383356 :0.003571845099693749 County,:0.0035344360481103744 about:0.0028546541613137474 county,:0.0028102493666181476 ol:0.002406548103004303 .:0.0018041925779856522 :0.11329502016621114 +the:0.5624120321732033 and:0.06018864817339952 The:0.041488354619649816 a:0.04129856301447307 tho:0.03267429223875883 or:0.020588374157585625 of:0.018547601373634984 de-:0.01522680592249905 tbe:0.012101154103235819 said:0.00890654196451378 by:0.008265262493190895 every:0.006890188540415641 par-:0.006823538160402344 A:0.0062594963462218635 sub-:0.005772438299219173 for:0.005296233228145769 con-:0.005268807863595935 section:0.0052619410257157525 as:0.00482684218321572 :0.13090288411892306 +and:0.09089500087104639 was:0.041876705501395814 be:0.0329298404238166 made:0.02772790647164483 that:0.02482144150187893 up:0.024399372035159173 is:0.023609377710447015 are:0.023020694649092326 been:0.021622701865694247 succeeded:0.0183119454215424 were:0.017874465730613204 engaged:0.01781339046727181 them:0.0174248002552606 out:0.01730371357995036 men:0.017000940163896788 but:0.01470371508679868 or:0.014538234403439923 now:0.013859230853841034 it:0.013595006840420651 :0.5256715161667893 +and:0.2141278822931176 to:0.13237369070924235 of:0.07955356766307142 be:0.06476604517774322 was:0.053595854613974835 is:0.046470128096739734 or:0.04551457686665276 not:0.04133758083864155 by:0.03503241714011811 the:0.027696258335379784 been:0.02417150065633762 are:0.02377533528721025 a:0.01677799517468115 were:0.015898091586360033 had:0.01514118515294142 with:0.013588756589793813 have:0.013166367285703454 he:0.011702403222948245 as:0.01162383962463943 :0.11268652368470325 +of:0.28767355066866834 to:0.08775711267569858 in:0.08678131196995101 and:0.05160598694501188 on:0.04646139928102899 by:0.04519522654900943 for:0.044547789071328545 with:0.03396756772609607 that:0.033699232901107726 from:0.03075346596941143 at:0.027039283056790858 In:0.021061449543044047 as:0.017514234937992545 all:0.012543839382496166 upon:0.011844431150487573 is:0.00998972746569266 was:0.008814315973987914 into:0.008557199930727406 through:0.007781895704231326 :0.1254109790972375 +the:0.2952070207828357 and:0.06157962149959845 of:0.054311177957429464 The:0.05109020499854817 a:0.03525704998766524 that:0.021409758910699735 tho:0.016866947782945303 his:0.013409311914792508 in:0.011517278946410792 as:0.010830452155418314 or:0.010488787628506776 to:0.009286970328858632 Mr.:0.009083107602715064 an:0.008840765580807016 he:0.00875105285118203 their:0.008644446813044849 I:0.008441632486933857 which:0.008405903985184577 tbe:0.00806057257029966 :0.3475179352161239 +and:0.13295617620592956 is:0.06010359412828663 was:0.05906219660237258 it:0.036218804742619494 that:0.02880038229891281 are:0.027006093745999885 be:0.02362091980157685 found:0.023347172634038616 or:0.022258143539309442 but:0.020977648447854973 were:0.019869189936322328 made:0.0198688536781624 put:0.018852598955465632 him:0.018650767500729984 been:0.017648946359317727 engaged:0.01627040349234609 them:0.015679022963941223 as:0.015673422163964883 succeeded:0.014545378115768798 :0.4075902846870801 +the:0.21738423329756038 a:0.0651988247436156 to:0.04728779378289064 this:0.046890316482573406 and:0.039481663637380586 of:0.028853313280626104 The:0.01919850917963906 who:0.016847496744138383 tho:0.01590863826556314 :0.014967516557792887 not:0.013604004741850764 no-:0.012704602512790474 his:0.0127009523575964 Mr.:0.012385846227951972 official:0.010696057743674055 Railroad:0.010389726613711119 I:0.009940133873551945 be-:0.009656662422256154 he:0.009635781406951042 :0.3852679261278859 +and:0.06341133254117746 as:0.06259082891459346 order:0.056456003165205215 able:0.05207201748069918 is:0.044713020507936144 enough:0.04243037913116934 necessary:0.039359843632736737 him:0.03361619156125576 was:0.030665654521335114 time:0.0264640239000838 them:0.023856718676681873 not:0.023203136750960876 me:0.021572324247991714 required:0.02117145742556287 desire:0.02116683340872205 unable:0.019897817268225666 have:0.01838624653534061 right:0.018280289611863242 power:0.017701366469714402 :0.36198451424874445 +the:0.40526833375988414 The:0.10544695770670805 a:0.07303749065757256 and:0.05534913218547013 of:0.049904862601180655 this:0.04461216357615796 tho:0.02122066418861651 his:0.020326899168591733 our:0.018242623161061164 that:0.016224875510722447 to:0.015337789000952295 new:0.014363798885288008 This:0.013794279765030393 said:0.013174258520463384 good:0.013082756980997328 any:0.01222859258360401 their:0.011874902375147456 tbe:0.010814238002335474 such:0.010381816204752047 :0.0743135651654643 +Section:0.1761235888840724 Sec.:0.16150207893718901 No.:0.04997494091672933 March:0.043990946723617114 April:0.03671965031627997 June:0.025624327552796537 May:0.02383060098932471 July:0.02297500948199752 .:0.0219958060461148 lot:0.021888457807696264 See.:0.018575376207934324 to:0.017842270863311204 :0.014609167516792027 Sec:0.011867737675789587 Dec.:0.011582438809345202 Feb.:0.011560986190052525 September:0.010460993123757294 and:0.010086547476862525 N.:0.009594197565813188 :0.29819487691452445 +to:0.1933054694467351 I:0.12616156929530192 not:0.11050296067747262 we:0.08835240723137315 you:0.08651114080803861 they:0.05480240003614002 We:0.043460151600541584 who:0.03837808268500574 and:0.035204018027422464 They:0.01967821018754229 will:0.018321331068148324 don't:0.017376692100743236 1:0.017105013976503092 You:0.01625765103775934 may:0.013251284131178192 should:0.012282433120509847 didn't:0.012228757615743215 would:0.010422236633267053 men:0.008873296187413095 :0.07652489413316114 +to:0.288784910966342 and:0.23479563187598573 not:0.03285962735288962 will:0.030485401078824526 that:0.025666508616142274 I:0.025628991804005363 would:0.021903719114949084 who:0.01740368013745936 which:0.017222806228335382 then:0.017012083818550627 have:0.015339060802186446 you:0.0142376256577302 but:0.013927851950598282 or:0.012404498212880104 it:0.01110024623598041 But:0.011044923871425253 And:0.008877865567394845 never:0.008774203125454032 he:0.008433232368223218 :0.1830971312146432 +the:0.3135103962784187 of:0.1316871468302773 a:0.07930265442468146 an:0.06981859150950881 at:0.05823826273146599 and:0.05673517998083462 in:0.036371361923888686 from:0.02338164005015594 for:0.022462819033294494 his:0.02078144028211185 with:0.019142069938960546 The:0.01871237627401161 its:0.01718208913844059 that:0.01662327964707212 tho:0.014779684123973943 by:0.013431646379157709 this:0.011794178723643559 their:0.01146258606456075 our:0.007391129918379669 :0.05619146674716169 +and:0.1436049237841356 to:0.07920939404896601 of:0.03578992576961711 which:0.035151490729948456 re-:0.029478985693585574 that:0.028219155808867784 for:0.024388756402958144 or:0.023852116063025307 not:0.02278311757804375 have:0.022207041004794648 who:0.02214591918381536 the:0.01995998182851126 in:0.019527814996202028 ex-:0.017409940975967396 they:0.01726837696362767 con-:0.01721546164935223 be:0.01596297722594579 in-:0.015705995925345655 I:0.015478889002129006 :0.3936397353651612 +and:0.17280073917727773 he:0.14190352354722538 I:0.08024448152739597 He:0.07043830867457859 who:0.05365498707840021 which:0.05340307630611326 she:0.042029085777250064 that:0.03472712384307037 it:0.03439485549115021 they:0.03426109854589398 It:0.024574375555593456 She:0.02006010991350387 then:0.01455810808456398 we:0.014549931401751188 but:0.014298911125815212 They:0.013140386356555601 This:0.011007363718589274 ho:0.010015404855494051 man:0.008198110486845477 :0.15074001853293212 +the:0.32376355846074156 of:0.12588093154400387 an:0.054728267663417735 a:0.054691899343642734 and:0.04931612821656528 The:0.04608678534220029 to:0.02532599272743391 tho:0.020169128904994022 in:0.01925830506009631 any:0.016989967266163187 that:0.0167043751225431 or:0.016671666281816336 by:0.016126743609690956 last:0.013571287690943278 next:0.013485643119770066 for:0.013073691105792075 said:0.01296984529955899 public:0.012756788488193518 no:0.012428066256537418 :0.13500092849589534 +of:0.2855535999505529 to:0.1389384346228438 in:0.07736381347756616 and:0.06413316938221363 by:0.04969789444310432 for:0.04619889148116407 that:0.038270091878422806 from:0.03738745020834559 on:0.03089167083820039 with:0.029162262935394572 all:0.028191198768978017 upon:0.01779039712897674 as:0.016302913219165025 In:0.01575049841778872 at:0.014079748978650103 over:0.011905626509376592 under:0.01110740743673458 through:0.008977943784963765 between:0.008931542403976787 :0.06836544413358148 +of:0.1280990871142692 is:0.11660657108911543 was:0.0957041871977693 in:0.06844812512513018 with:0.06807837572000329 and:0.060812163850519706 to:0.05960758823398953 for:0.043519507107171264 as:0.04185255890738854 be:0.03632391651749366 by:0.03011100659491577 have:0.0241353674657678 had:0.02408387573220839 that:0.022515748478240775 been:0.016879432705642516 In:0.016834828953764258 made:0.016227822913443164 has:0.016219191698988125 Is:0.015103731557682238 :0.09783691303649689 +and:0.17825376701226214 the:0.13115488029830824 a:0.08492613398746213 to:0.06057133701838725 of:0.05067680027979238 or:0.02360075411511586 that:0.01810372433654537 with:0.018064762391047613 by:0.017221682941622428 The:0.0164868151006356 for:0.013343099099193506 in:0.012032549918177572 will:0.010407813786426521 :0.010262196103134275 tho:0.0098556430397641 but:0.009211704297323315 who:0.009131726104970022 which:0.008843212936899937 was:0.008477142416113177 :0.3083742548168185 +an:0.25434065340725265 the:0.2223616963412461 a:0.1005600888475934 and:0.07250187768858493 of:0.047935367202133115 his:0.040233772776238866 their:0.0395514905144241 its:0.028798545620600895 her:0.01627676120164202 any:0.013922969072713454 great:0.012983179678573983 to:0.012904187267246667 this:0.012675976756767378 or:0.012658773372436394 good:0.011766481938676866 tho:0.011593857865643526 no:0.011587591852285141 in:0.010837684925955713 very:0.010449681367111887 :0.05505936230287295 +the:0.09578769058842936 a:0.09396268119188085 or:0.08229319223564516 and:0.08008690222834246 no:0.06202329560400516 much:0.05342930984744037 of:0.04592749816228467 is:0.03645412408085033 be:0.026828781860053448 for:0.026194962529655176 are:0.025622591894135415 was:0.024505346429493213 any:0.022821882046398265 still:0.02275464807247297 far:0.021972958046029365 once:0.021132626832165324 with:0.019858668040868215 not:0.017436605261951933 to:0.014871592790504517 :0.20503464225739382 +a:0.4083203555760586 and:0.051050815912078974 the:0.04524599739366942 to:0.04417951379257787 is:0.03176289137842856 be:0.03065822818067629 very:0.02932765672260978 with:0.02509196052261257 of:0.023509826202021016 that:0.023230701415992365 more:0.02318695967842328 as:0.020158551116077075 not:0.017922944396356572 was:0.01735297648351864 his:0.015071963454918983 A:0.014596529321065114 an:0.014371016094884248 or:0.012190065815371917 are:0.012039838254638627 :0.1397312082880201 +not:0.17200445968379177 will:0.14854841857497667 and:0.14487950738602523 would:0.04590716601006822 may:0.029363120391476455 do:0.02919870537914965 as:0.028179829520658922 can:0.02798994495866583 And:0.023962912703101233 could:0.023040644593722192 have:0.02296404063073528 that:0.021867626633051238 shall:0.0204864418126687 did:0.0200900846262557 they:0.017551279854957656 to:0.017105108517220764 should:0.01591608086577753 but:0.013227909343603945 is:0.012778575130510205 :0.1639381433835828 +number:0.08692080766198883 line:0.030320627619109895 part:0.025631029678942135 amount:0.024076448741624415 out:0.021995299686527234 board:0.019549654818565246 matter:0.019426637652002147 men:0.019341613084274924 kind:0.019254946056197476 thousands:0.01837270159274187 way:0.01726564828791353 class:0.016811508001075726 place:0.01627264089110025 full:0.014402479879499844 sum:0.013962773394104733 Board:0.013862823649059896 point:0.013824041929759539 and:0.013378400986025545 hundreds:0.01336575365212018 :0.5809641627373666 +be:0.2701224817410892 been:0.11216447826780265 was:0.08445719691798179 were:0.06332809348855847 and:0.04593118954179617 are:0.03792774652682807 had:0.03656751863959935 has:0.032280126572079564 have:0.03140332275406339 is:0.028305974257806295 being:0.027536406290443387 he:0.023096852530868264 bo:0.01696864027969757 fines:0.010634632587341661 or:0.010091530764149042 they:0.007752299993624613 I:0.007439918853702288 as:0.006879973623936843 not:0.006740598940890679 :0.13937101742774066 +of:0.2770265673441549 in:0.15427543954922873 to:0.10392434964609995 on:0.07561182485396273 by:0.05046951519142823 In:0.03834987693273004 from:0.03826918534041519 and:0.03178372492892124 that:0.030056354299134558 at:0.029567877706174805 with:0.0240662453568874 for:0.02222517465619068 upon:0.014707554138915726 into:0.012848242839038052 as:0.00880438541645912 through:0.008687164113550513 which:0.007355926728355535 is:0.0062751674467103466 along:0.005997956583287427 :0.058697466928354855 +as:0.06172709357271213 and:0.051210389135318425 is:0.042861415109115085 it:0.03639464605996672 him:0.035992517683505185 time:0.03209482442853821 them:0.0295519009873593 subject:0.027534230718164524 right:0.02720494671054846 able:0.02470770221783126 made:0.02469743053097623 was:0.02181799245290487 order:0.01983595395292325 used:0.01978399992408876 regard:0.018014764948091483 entitled:0.01750991970307962 up:0.01731775974628261 not:0.016943017586941788 way:0.01653190148448209 :0.45726759304717 +and:0.12039643250741916 w:0.08144123889223374 the:0.0669791473521943 his:0.062327583912705625 to:0.05541631853743382 t:0.03274375122848473 her:0.02130753394556794 who:0.02062419376043493 I:0.01985608790395091 my:0.019663555770512476 a:0.017323889103550497 he:0.014331821997414725 it:0.01381588223370484 will:0.013790170036659874 not:0.013495397191681427 or:0.012932203611882631 that:0.011981287419687237 have:0.01167567637798502 one:0.011503859176500764 :0.37739396903999534 +of:0.25306012678649786 to:0.1626260880890194 on:0.09385459633948967 in:0.07728678220803818 and:0.041701491523611176 from:0.041555109932497475 that:0.038414143976156924 by:0.03807406496225679 with:0.03381433988804396 at:0.031843239276869675 for:0.02817985781253146 upon:0.022417994850342297 In:0.01545167982407877 into:0.01400830589095062 under:0.013180381418426722 all:0.01292707630590754 as:0.010585818429788486 which:0.008677081110576352 over:0.008067123620352971 :0.053274697754563685 +the:0.28781644402089207 a:0.12033745209138813 of:0.1086422565057641 said:0.06727976923438889 and:0.052190370933097495 for:0.030473039841792515 The:0.02978151420064904 tho:0.022621099571580202 that:0.022030390092714076 in:0.02106816776687243 on:0.019181875401039505 or:0.017896826541811545 such:0.01584161218010471 this:0.0142970532431115 with:0.012614424985184412 our:0.011258954531279654 to:0.010404982237437438 great:0.01029802271741034 tbe:0.009009093371677936 :0.11595665053180401 +the:0.14758139319324365 and:0.09650695447904364 of:0.06439644672661651 a:0.038945865087235444 to:0.03281444713457846 that:0.02346643394969413 The:0.023308288940496014 Mr.:0.022977641103377168 or:0.022701404561613747 I:0.021879765821533455 it:0.02137176581143954 be:0.018721237093173422 in:0.017897296968999554 he:0.016750243692262204 no:0.015597388814093017 as:0.01463575781894053 their:0.014026219803297291 which:0.013832985731725386 his:0.013673113510281526 :0.3579153497583553 +;:0.026125401436460458 it,:0.017903419614875335 them,:0.014297965428500939 in:0.012557670566633641 him:0.009086338502198293 up:0.00882984871505397 you:0.008704779328133596 it:0.008573801564355691 and:0.008571471985134117 time,:0.007621443840086752 him,:0.007350180651707236 them:0.007166976705479176 people,:0.006985864626307222 to:0.006538719846093144 time:0.0062052293506743034 me:0.00619864636308512 country,:0.005868107597003678 country:0.005671916779418474 there:0.005450772742036245 :0.8192914443567626 +filled:0.05891970955047767 covered:0.042604290758874716 and:0.04150209810775779 together:0.027802554479410456 it:0.025178159187333817 trimmed:0.018546789331775046 them:0.017929500202686154 him:0.017740340301846014 lined:0.016593158569151195 up:0.01609553039894913 loaded:0.01602184263515906 charged:0.014935752013212806 do:0.0149194229738071 men:0.013776836990870334 parallel:0.013513604133341324 supplied:0.012066093897211808 laden:0.00938000917751716 mixed:0.009360693383769223 made:0.009189924330719405 :0.6029236895761299 +of:0.18494292361434958 the:0.15345861634851418 in:0.05231559579588694 a:0.0517462553328955 to:0.04603832099273496 and:0.042381492177839694 for:0.0360094023729299 some:0.01941731306880245 that:0.014356396049221917 In:0.01414793172111117 more:0.013063831489295642 by:0.012623624218953479 from:0.01204649424595684 about:0.010400835204426391 on:0.010085281918413803 The:0.009807036745041842 all:0.009607201723935624 which:0.0091302686118453 one:0.008782006891351606 :0.28863917147649315 +to:0.40196378499594654 I:0.06519840333598596 and:0.0621095400478296 will:0.06179798209845319 not:0.034992318634672205 you:0.032158767134321885 would:0.02954163840242526 we:0.02949096729514641 they:0.025534039732736016 should:0.019631814193048866 They:0.019481454244557 may:0.01823875995798236 shall:0.01694716200843389 must:0.01562688635722411 We:0.014446685911829203 You:0.014294719791769344 can:0.012008441424311511 who:0.011767776610045085 could:0.009562754134421819 :0.10420610368885974 +and:0.0895073349204154 looked:0.054960328758702236 look:0.04476432152079771 him:0.042473410087848246 was:0.04142803298415455 died:0.03179745099241578 it:0.026842562962207477 held:0.02439568151104105 up:0.023280447360704903 her:0.022431269532994208 out:0.018946726689529517 down:0.01604176983168039 home:0.015740940216075115 arrived:0.015082125682113413 them:0.014900494307131418 is:0.014787786900237012 laughed:0.014666364539640243 looking:0.014483121483518041 back:0.014481270594966497 :0.4579885591238268 +the:0.6046045139303358 The:0.04551712507562731 tho:0.034805527833957565 and:0.033799371029443366 a:0.022726984964555393 in:0.019508981679719796 of:0.018220261186369685 tbe:0.016674356620026448 all:0.01624785896719752 coal:0.012466466168892295 that:0.012128705816793421 other:0.011984511243987682 large:0.00941482336946579 or:0.009329586583304371 some:0.008577573651693647 good:0.007676757337078378 this:0.007614408803164257 South:0.007609501142642172 said:0.006952262005021284 :0.09314042259072385 +of:0.09129790931378902 the:0.07369883040827747 and:0.047842263382354346 in:0.04189055351593407 to:0.04045875475680249 a:0.03542341257202578 be:0.02020462051672066 for:0.01979292654746225 was:0.01760256398103379 at:0.017380150555488715 is:0.014984483003968216 with:0.014047653760730413 by:0.01374644383819499 :0.012670486581795598 In:0.01200961464556976 or:0.011563835749786333 from:0.011391516893522809 are:0.011273104484969465 that:0.010755276030689069 :0.4809655994608848 +the:0.11919516938815296 of:0.07230453158552728 and:0.05781056740443249 a:0.043018564803886335 to:0.031305092790907506 in:0.020848713353460488 at:0.014270110001066288 .:0.012526810245749479 :0.012413283442322082 for:0.011719122709941797 by:0.010808400946589808 or:0.010404172990115616 The:0.01003576004804544 with:0.009811868184449042 tho:0.009295902015355835 was:0.008924239095331684 that:0.008672304223433876 is:0.0085591147338948 be:0.008335143826716943 :0.5187411282106204 +the:0.2131996610975068 of:0.12632236119575943 and:0.03857516510398351 for:0.027481691391647037 to:0.025213476043340465 in:0.02268510627655835 more:0.022682956223373133 all:0.02025341629343485 their:0.019770344118683975 one:0.019590120851925186 his:0.019057730571653796 raw:0.01815329637905152 other:0.017543155254280268 a:0.016029166865121472 with:0.01601181920335221 such:0.015190474683374802 tho:0.012660786849278858 that:0.01086183472719354 its:0.010692491818697079 :0.3270249450517837 +of:0.09129790931378902 the:0.07369883040827747 and:0.047842263382354346 in:0.04189055351593407 to:0.04045875475680249 a:0.03542341257202578 be:0.02020462051672066 for:0.01979292654746225 was:0.01760256398103379 at:0.017380150555488715 is:0.014984483003968216 with:0.014047653760730413 by:0.01374644383819499 :0.012670486581795598 In:0.01200961464556976 or:0.011563835749786333 from:0.011391516893522809 are:0.011273104484969465 that:0.010755276030689069 :0.4809655994608848 +and:0.08938655578847894 it:0.046342019158889775 pain:0.041251903810146234 was:0.02514461561529863 him:0.023897061420385016 not:0.02386175151769552 that:0.02320631134733673 up:0.02134785174529152 is:0.02055119962248676 but:0.020003960395700987 made:0.019592523480922424 them:0.019112205980502915 found:0.017732412514953798 out:0.016087436034656972 me:0.015967133766096424 be:0.015201457325792025 down:0.014552834115865852 as:0.01364093143384261 pains:0.013515160954300196 :0.5186046739713567 +of:0.2094044326800705 in:0.10323064403071443 to:0.10003830707887722 for:0.06651277384544663 and:0.059888103219910734 with:0.05229638367705768 on:0.04126439815398536 from:0.0354362178188539 by:0.03150820700611748 at:0.023923279676181686 that:0.021401420699051488 upon:0.015462838440665488 In:0.01545720659661401 all:0.012395979629342193 or:0.011833585179611528 as:0.010765835272299391 up:0.010244683825641929 into:0.008022179740618366 through:0.007346693776088779 :0.16256682965285124 +of:0.388933456807528 to:0.11180856140471962 in:0.08269260278334573 from:0.03811057097142074 by:0.03758086929048677 on:0.03095417899562252 that:0.03074757396278768 and:0.03012650379602105 with:0.02965686402342219 at:0.029221894604722777 for:0.026249590679645968 In:0.01915317476454644 into:0.010253196737881318 as:0.009258420927660342 over:0.007804028358673582 upon:0.007537649793014715 all:0.007050796360190932 which:0.0066965884077390845 through:0.006529850533611523 :0.088633626796959 +number:0.082753165998136 out:0.06533331396357893 plenty:0.06274130169649061 amount:0.05865487262611665 matter:0.04949323752119248 lack:0.04002841057672345 kind:0.03246142771056899 deal:0.029850202405590113 right:0.028531009039531197 sort:0.02828635349806314 place:0.02792613063649895 board:0.026484187490745072 time:0.02602617485192711 cost:0.024771768168634065 source:0.024379951124388545 point:0.023898774513392257 length:0.02358071101160608 loss:0.022813799443555074 course:0.022769990261343187 :0.2982152174619181 +in:0.018988754314629253 highest:0.01752690657739548 largest:0.01666851046940789 it:0.015595252166385016 time:0.013121824841993033 ;:0.010437190910811316 made:0.009534884345121083 law:0.009202961575083136 him:0.008533177470336679 quiet:0.008423032941290006 any:0.00832119422766761 this:0.008126132462780102 best:0.00808633479417205 land:0.007904877530045405 dull:0.007834353037488834 of:0.007777301335514759 health:0.00690896136137884 other:0.006908229638165692 up:0.006868066107951065 :0.8022320538923827 +one:0.12250400995529193 two:0.09854237947126925 hundred:0.09508781367172982 a:0.07714571281858479 three:0.07604172096154377 five:0.07489387583641528 fifty:0.07141604623108926 ten:0.06204785579688663 four:0.040183919698102546 several:0.03990889727270674 twenty:0.03420744550607547 six:0.03364468012558132 few:0.023348161937070545 forty:0.02003575762593701 the:0.019772756076255615 One:0.017124789421611157 seven:0.016479410190631875 Two:0.015805387398777838 thirty:0.01467954968479651 :0.04612983031964266 +the:0.11919516938815296 of:0.07230453158552728 and:0.05781056740443249 a:0.043018564803886335 to:0.031305092790907506 in:0.020848713353460488 at:0.014270110001066288 .:0.012526810245749479 :0.012413283442322082 for:0.011719122709941797 by:0.010808400946589808 or:0.010404172990115616 The:0.01003576004804544 with:0.009811868184449042 tho:0.009295902015355835 was:0.008924239095331684 that:0.008672304223433876 is:0.0085591147338948 be:0.008335143826716943 :0.5187411282106204 +of:0.09129790931378902 the:0.07369883040827747 and:0.047842263382354346 in:0.04189055351593407 to:0.04045875475680249 a:0.03542341257202578 be:0.02020462051672066 for:0.01979292654746225 was:0.01760256398103379 at:0.017380150555488715 is:0.014984483003968216 with:0.014047653760730413 by:0.01374644383819499 :0.012670486581795598 In:0.01200961464556976 or:0.011563835749786333 from:0.011391516893522809 are:0.011273104484969465 that:0.010755276030689069 :0.4809655994608848 +a:0.3385960303786075 the:0.27523338108765105 his:0.057216997237479 this:0.037663054705870044 their:0.023695478812488697 and:0.02201104736292493 The:0.02012995548307382 said:0.018004670905124212 her:0.016708190087588896 other:0.015723698079771014 any:0.015652548599088007 tho:0.015299758449906223 one:0.014579316285943122 our:0.013532602500022627 of:0.013160969682380317 little:0.011870712554543928 my:0.011331723488708161 whole:0.010149526335533836 that:0.007918654476837528 :0.0605216834864571 +of:0.09129790931378902 the:0.07369883040827747 and:0.047842263382354346 in:0.04189055351593407 to:0.04045875475680249 a:0.03542341257202578 be:0.02020462051672066 for:0.01979292654746225 was:0.01760256398103379 at:0.017380150555488715 is:0.014984483003968216 with:0.014047653760730413 by:0.01374644383819499 :0.012670486581795598 In:0.01200961464556976 or:0.011563835749786333 from:0.011391516893522809 are:0.011273104484969465 that:0.010755276030689069 :0.4809655994608848 +the:0.12397170260116352 of:0.0943155434282568 and:0.04047242644896243 The:0.039121251000670806 Mr.:0.038849315117364246 that:0.03749617133485052 in:0.035552871266442694 Mrs.:0.022501402823346915 which:0.02123924194599288 a:0.01931574625006573 to:0.018732434543853364 his:0.014277305910035551 when:0.012369804522166431 :0.012284549055542177 as:0.00976422368815642 he:0.00970781880966711 for:0.00927189170209692 tho:0.009034083963245747 said:0.008744635319874062 :0.42197758026824567 +and:0.11101960798674682 to:0.062334791247409815 of:0.04678917569723103 the:0.03147852576058688 which:0.022220284625160364 :0.02113317386480409 re-:0.020643554768386807 in:0.020043216833881133 that:0.01961125296176328 for:0.018057155070897727 I:0.017027774068931002 not:0.014397456711628813 or:0.014367473821082147 is:0.013233884844358232 by:0.012753669465645162 con-:0.011884491726436214 was:0.011662969423011264 be-:0.011625025359963036 he:0.01156604482637356 :0.5071504709357026 +of:0.46138789962364624 in:0.07230637028687353 by:0.0629324701257454 for:0.05368766498337413 and:0.05367197736069929 to:0.05198140826163643 that:0.03015416865441898 with:0.02993982036648966 from:0.02185614457758626 In:0.014926785489163982 on:0.014418674703434168 as:0.012169182738943895 all:0.01032921393687795 at:0.009220882644057335 upon:0.007087765158718815 ot:0.006994232589002592 against:0.00650976461239815 if:0.006479391117363667 or:0.006408027200781195 :0.06653815556878832 +the:0.5827899604330147 and:0.0763464153260038 The:0.048426342576913604 tho:0.036146757252297296 in:0.028199563590885386 a:0.02183945593679264 great:0.02086010210379052 of:0.018582731894020012 his:0.013634544258435905 tbe:0.013026873367843967 their:0.01299399108631307 good:0.010764524084139467 full:0.00992616272458086 or:0.009778630707586524 no:0.008327620936274113 our:0.008001059917982696 its:0.007930792426327934 that:0.007720005628595651 an:0.007085367048547765 :0.05661909869965414 +it:0.19768159487563686 It:0.11717098127203271 which:0.05882000457719376 he:0.05024946001781462 there:0.04747607358854504 and:0.046137809285128596 that:0.04574847361004905 who:0.035450991467072264 There:0.01979709437839573 He:0.019423039543520194 this:0.018623672710649325 This:0.015409207541659581 what:0.015249403682971122 as:0.01327247848263514 she:0.012403998150487075 man:0.00829531838965592 work:0.007400157597207263 country:0.0067886162151015155 be:0.00675387153269982 :0.2568477530815444 +in:0.20443635608759955 of:0.145095827653369 at:0.0892907559710308 to:0.06326055545069872 without:0.051577624326592374 or:0.04967637928255342 from:0.04756635953819601 by:0.04259391478875898 for:0.03864868505385934 In:0.03330858036981028 that:0.026335676755202316 with:0.02583185273069785 on:0.022784608814206065 make:0.02262939680087812 have:0.02053609236179284 upon:0.016340282003678267 if:0.015653772054350812 take:0.0119982607127918 under:0.011279158605531813 :0.060155860638401636 +to:0.20092408504000503 for:0.08903768723142143 of:0.07621984154206402 with:0.05984748361649583 upon:0.05204176306213518 against:0.04999488922783023 by:0.03667272477425248 on:0.029310750112690333 at:0.024296246007475823 from:0.023356457809129202 given:0.020180365565704492 and:0.02000089493912583 tell:0.017472747079633477 before:0.01431417047515543 do:0.011352508095810704 see:0.010817257806914693 in:0.009767450831725673 made:0.009739327245056498 give:0.009042076943283489 :0.23461127259409018 +as:0.1790464884477199 that:0.1651561692922248 if:0.10206099142435628 and:0.07643649714034542 when:0.044039898316648216 which:0.03665578634065808 but:0.0348136432215486 until:0.02322635917602569 for:0.02187749315419611 If:0.020220805567032842 do:0.016609719870667155 of:0.016539698470941396 though:0.016196312657062974 where:0.015334507598221903 whether:0.014035919182347785 before:0.013823229389724861 did:0.012920310380524153 because:0.012870497688567347 let:0.012314749863158584 :0.1648209228180279 +it:0.15590291243815246 there:0.0887784025092866 It:0.07904016205387611 which:0.06936908824431676 they:0.05362226352982171 that:0.04647101454662571 and:0.04420120519214072 he:0.027952982163116303 There:0.027623278151575524 mortgage:0.023443129896555264 you:0.018859539766003214 who:0.017891862574647276 this:0.014117846301193209 I:0.01363040583752058 sale:0.011818751696880098 This:0.010767348085132659 work:0.010306262168963347 as:0.009927627839447666 They:0.008978002990569422 :0.26629791401417535 +the:0.4071374189315913 and:0.06449181461132415 of:0.02892866618288876 in:0.028670005984162618 The:0.02603617389223924 tho:0.024993820467459137 a:0.023579040051412606 to:0.01755553213771617 on:0.014626070241060114 by:0.013447843485786471 or:0.012794166593089693 tbe:0.012024509152999897 :0.010353482361299817 that:0.009291482237329618 In:0.007938246807075932 from:0.007526799010378873 other:0.007469196869028889 all:0.006409533041696086 for:0.00626887758057738 :0.26945732036088327 +the:0.5679673476387797 a:0.11644240820242235 The:0.034631810667812485 tho:0.03026027590933631 in:0.02335815466086846 cardinal:0.015991635064835533 fundamental:0.015084297184801598 every:0.013254205506565041 this:0.011829778517633515 tbe:0.0116085067439264 whole:0.01142917157493779 great:0.011393121810536732 and:0.011377112602260148 of:0.011156309685857306 by:0.010998805255427674 full:0.008785356045963928 that:0.0075928498038233955 first:0.007099547984640154 high:0.0067417534886066955 :0.07199755165096475 +to:0.2264835950194957 I:0.18568136863376627 we:0.0916620460665849 and:0.05445056169996271 they:0.05317982670533134 who:0.04940092538230922 not:0.036757942097644075 We:0.0345607962337321 will:0.024733888848250462 would:0.022795825049885 you:0.021060882958782508 may:0.017509184059037744 They:0.01531975162922427 1:0.01496539046952798 the:0.010940808933455054 should:0.010917594623024267 he:0.009530120089018036 or:0.00709590575179567 which:0.006983080349575004 :0.1049705053995977 +a:0.16386682490653717 the:0.11435034129218814 of:0.09361164721216732 to:0.04266463205307326 at:0.040168443189815536 and:0.030936310007088564 in:0.027064722637412223 on:0.026741077007926342 by:0.018917261850867898 from:0.01733267268116709 with:0.014710640606423134 be-:0.0136236714774047 :0.013582301660691676 his:0.01156564046117437 A:0.0113368278560413 that:0.011013681267383469 for:0.01097742876608312 The:0.010356265109317189 an:0.00937488939359595 :0.3168047205636415 +number:0.07717618969978443 place:0.06322137393576287 out:0.03878719627604211 thousands:0.03268574985092451 amount:0.03077402213623465 point:0.026613361023275862 mound:0.026195644461095124 line:0.02570478144980005 day:0.024222631933468197 rate:0.023792721837937496 loss:0.023685795632136124 plenty:0.022081048831832418 hundreds:0.02080616356822543 set:0.020797449423569158 pounds:0.01905895728203761 millions:0.018385705711110725 full:0.018262962761157527 right:0.0158835679597972 sort:0.015582295676781294 :0.45528238054902725 +I:0.3042646608967408 to:0.12494059459117497 and:0.0737976959846235 you:0.05233669992617942 not:0.05143213901643211 we:0.037611813850979725 We:0.027672842510950667 but:0.026321693536276697 1:0.025786244632111977 will:0.024699285297547204 "I:0.021021869783515675 would:0.017709584792607314 who:0.016315677753884917 may:0.015237633217775211 they:0.014446106528582235 that:0.010456535478161092 can:0.009397549547486977 don't:0.008132738255554248 could:0.007767250794855004 :0.12965138360456022 +the:0.15666062565508787 of:0.1163496162694897 and:0.06157584245586571 a:0.046124566598187165 to:0.04484072438673125 be:0.04048717601082985 in:0.026919655374899962 for:0.023694329500172195 their:0.023001443844177693 is:0.022914456813349183 or:0.02041402634909368 his:0.019825369056388546 was:0.019005124328248062 this:0.01710163498825682 not:0.0159851943780859 at:0.015151009715691477 been:0.013788110733168352 as:0.012519563117144434 its:0.011212674928534935 :0.2914288554965972 +of:0.28648542825116685 in:0.1335274098177242 to:0.09613187625300672 for:0.04803916888625946 and:0.04746248095432244 with:0.04647556986569529 by:0.04584143486229927 from:0.035469855903989315 is:0.02842173666950714 that:0.02824537031116881 In:0.027681644155947687 on:0.02654249588847301 as:0.015943438019852364 upon:0.01439944158590664 at:0.012499478767441913 was:0.010403750971753127 into:0.010222286097730435 under:0.0077674768355714225 or:0.007485255967386521 :0.06995439993479739 +of:0.12863334034542037 that:0.09868036561754556 and:0.09232266240987096 to:0.08573050813472775 by:0.0630981400072188 for:0.02232784811566159 with:0.019033709173200446 said:0.016738116930739094 which:0.015864699703979492 as:0.015202827907845853 from:0.014156150482299842 in:0.01355933922688867 :0.013253058211944845 but:0.009085737179045993 or:0.006855955814105719 Rev.:0.006678030258761193 if:0.006649527537684944 when:0.005625160350223632 against:0.005219114772877466 :0.3602857078199578 +the:0.11919516938815296 of:0.07230453158552728 and:0.05781056740443249 a:0.043018564803886335 to:0.031305092790907506 in:0.020848713353460488 at:0.014270110001066288 .:0.012526810245749479 :0.012413283442322082 for:0.011719122709941797 by:0.010808400946589808 or:0.010404172990115616 The:0.01003576004804544 with:0.009811868184449042 tho:0.009295902015355835 was:0.008924239095331684 that:0.008672304223433876 is:0.0085591147338948 be:0.008335143826716943 :0.5187411282106204 +the:0.22052173904674707 of:0.11538277631709545 and:0.07600893695483417 a:0.07004925231740321 in:0.02032394001329095 to:0.017760541526728617 or:0.016321320631386877 The:0.016047378210588287 tho:0.014162478919836598 his:0.011851559038502319 their:0.010247726296522618 an:0.009976024422455008 all:0.009838815678283644 that:0.007981786074193685 other:0.007735324991191378 :0.007694646861427443 at:0.007393351766959102 by:0.007172496730326369 .:0.006850640354361914 :0.3456792638478653 +and:0.11438807215349694 was:0.05579408658171733 is:0.052470544492980824 are:0.0321262392769878 be:0.02732774456177614 it:0.021489420874190656 that:0.02070676141461369 been:0.01971271733715759 succeeded:0.019407763044044346 were:0.017992067051647045 not:0.017127278568819307 but:0.016505260721077986 them:0.015285229593574924 made:0.015030572566817512 as:0.014620884305093174 up:0.014179970492449116 him:0.013795983581115395 out:0.012970185434566458 or:0.012757117406466914 :0.4853121005414069 +of:0.3053408122261851 to:0.07992857708064811 make:0.07659749947455201 for:0.075290192781766 with:0.0704676768591138 upon:0.03559461990837931 give:0.033719235144883716 by:0.0328300045282062 in:0.025166156241652554 on:0.02370041698593034 keep:0.02264142591965091 take:0.01808869157835413 put:0.014845344839200877 made:0.01395862625013277 at:0.013562243569210722 about:0.012430101580018763 from:0.01239574451051216 have:0.012034016778046344 let:0.011079211208209412 :0.10932940253534676 +more:0.047384324761295546 person:0.031429580234948615 one:0.031330241265398004 law:0.021508227338100525 man:0.015615845512353583 action:0.01534393634629572 debt:0.012890249903690391 right:0.011618026166204795 time:0.011090392100756949 piece:0.010451339867171642 tion:0.010191655998440203 day:0.010059479549249906 two:0.009537635284900911 money:0.008820366077162491 good:0.008684761926774625 out:0.008395637118681088 owner:0.008126131940974312 county:0.008121611564238497 and:0.008067978512608952 :0.7103325785307533 +the:0.48233767183038145 of:0.0698739203126106 a:0.05920045683226804 by:0.046343864978836 The:0.03028995026583638 tho:0.025656672194835112 in:0.023146455856037265 first:0.01959640863139344 and:0.016072961772325742 to:0.014756463186718579 tbe:0.012525798390878681 this:0.012412727034253179 that:0.009333982087582774 on:0.008435938145054115 with:0.007994140885709057 every:0.007397821722784616 any:0.006677559060680015 or:0.006583519323810447 last:0.006260328171360288 :0.13410335931664427 +and:0.03868242960999506 as:0.031124813427855922 went:0.02352509775927722 him:0.02196555539050794 them:0.018760608639018784 up:0.017985449426794205 is:0.017894175620344187 go:0.017174904667157563 able:0.016756848979943888 going:0.014481672239490295 it:0.014128375989346808 was:0.013277058274565138 time:0.013249953793837373 not:0.012469887553778763 began:0.012465717758716884 way:0.012105610030480113 back:0.012090864562211581 right:0.011941707822828511 amounted:0.011564315359310868 :0.667354953094539 +the:0.11274823966931571 and:0.08329996793360815 to:0.062372082173126384 of:0.05346002906215973 so:0.0299749817344208 is:0.026294180790411077 be:0.020260006954324915 he:0.018124449911071136 was:0.016351044211737983 re-:0.01567649125103956 Mr.:0.014726716630740086 in:0.013675410003338988 for:0.013272602215284653 a:0.012159264338821467 I:0.012040910229586727 or:0.010977326121126826 :0.01035107289213954 are:0.010219913969554774 not:0.009881708091297656 :0.4531336018168938 +:0.04187704747935935 him.:0.03244422397683226 it.:0.020311492425783492 them.:0.013857516415363258 time.:0.013074511704049704 life.:0.010157223204701159 .:0.009668706397001525 years.:0.009593984627555749 man.:0.008814920327803908 himself.:0.008151713903909022 country.:0.008127309382145849 day.:0.006923477431941998 work.:0.006803432390309556 city.:0.006792657652612187 again.:0.006785244425779301 me.:0.00674958991416956 home.:0.0066767779870036586 night.:0.006153714411551342 there.:0.0057403475124703065 :0.7702961084296568 +and:0.062130046958630766 him:0.04826661024254473 want:0.04553366651097016 able:0.041695045206483844 is:0.03771226571367157 enough:0.03649423108236219 have:0.03384494408444413 me:0.03191512189763554 necessary:0.02924435678580023 not:0.02891928579168823 had:0.028778423427743643 was:0.028605473905719287 wish:0.028115364668226183 time:0.026545055490378888 as:0.02591596094868502 needless:0.025356658901102565 order:0.025277091069883694 them:0.023257418664843935 fail:0.023176692094579742 :0.36821628655460564 +the:0.1472932363478679 of:0.11856217627024289 to:0.09167942291249044 a:0.056820894100193295 and:0.04458825919594682 in:0.04192711984049207 on:0.027417284182449334 The:0.015727934829623046 at:0.015565386194278982 from:0.01512820450305813 that:0.012943243369217348 :0.012875248042498144 by:0.012328390728309173 an:0.012298168699756177 his:0.011981696205023585 with:0.01089181889098332 as:0.010765322176968833 for:0.009250899471363497 In:0.009218828940222806 :0.3217364650990142 +:0.042121809243109674 and:0.025115839546517717 was:0.01991321458715972 be:0.019361617353387452 is:0.011984115090027172 are:0.011708641305616186 that:0.010720595268890114 were:0.010118875880028138 .:0.008538828059217652 been:0.008214792900146319 put:0.007814765668374815 recorded:0.007169050565739314 situated:0.006726720926511513 it.:0.006648720798510434 them:0.0065998360318737246 made:0.006580774631752311 held:0.006505024562847372 it:0.006354607680120908 succeeded:0.006148044476402017 :0.7706541254237674 +and:0.05967411824579593 was:0.03378809660034908 recorded:0.031689093744596046 is:0.02423211877272987 made:0.020498290907965584 up:0.018710206741254096 as:0.018434428100673455 held:0.016028532022064217 it:0.015096406729892481 be:0.014533724001568372 are:0.013154581772544922 out:0.012750222189124293 been:0.012348794819855667 engaged:0.011661522407992267 that:0.011497057074881445 day:0.009513011243950906 were:0.009456067043077856 but:0.009057887959575376 o'clock:0.008685302467166317 :0.6481905371549418 +one:0.0911586739772231 out:0.06914445242785552 some:0.044072789933600254 and:0.03121874408726069 part:0.030494395250434268 many:0.026952446815903718 that:0.02643717760123072 all:0.0224945269089361 time:0.020723575912610655 home:0.019240137992903552 side:0.017855313384407843 account:0.017009321224268212 end:0.015960594778792213 front:0.01578854825549248 portion:0.015317875285779064 death:0.015281201681475318 One:0.014699303850118774 any:0.012777720337190258 because:0.012455778347118333 :0.4799174219473989 +the:0.11919516938815296 of:0.07230453158552728 and:0.05781056740443249 a:0.043018564803886335 to:0.031305092790907506 in:0.020848713353460488 at:0.014270110001066288 .:0.012526810245749479 :0.012413283442322082 for:0.011719122709941797 by:0.010808400946589808 or:0.010404172990115616 The:0.01003576004804544 with:0.009811868184449042 tho:0.009295902015355835 was:0.008924239095331684 that:0.008672304223433876 is:0.0085591147338948 be:0.008335143826716943 :0.5187411282106204 +the:0.1850342502253772 of:0.10783512487860085 and:0.06648354738786433 to:0.06558181118946904 a:0.05264534085283429 his:0.03189945415468161 be:0.0301197982981347 was:0.026692308190314765 in:0.02564193571290189 their:0.02378994296755844 is:0.022372979642541004 for:0.016777085670388877 at:0.016451737685395575 with:0.014009465318011649 or:0.01327695568116705 as:0.012183401566029553 her:0.011151275661993759 by:0.010426542835353173 been:0.01037272813937534 :0.2562543139420069 +he:0.1529150229209316 it:0.11255859863382663 It:0.08144177598917217 which:0.071393132707607 I:0.06609207680046354 He:0.05384730626195115 and:0.05370242356725473 who:0.051866822674672755 she:0.03886474784455766 that:0.030528366946902176 what:0.01941910598206152 She:0.01621186098176952 man:0.015518382010529286 This:0.0141896429989589 ho:0.013364897291537971 there:0.01176740990095156 lie:0.011621505803438471 as:0.011100614048656815 time:0.00806966348341353 :0.16452664315134305 +of:0.09129790931378902 the:0.07369883040827747 and:0.047842263382354346 in:0.04189055351593407 to:0.04045875475680249 a:0.03542341257202578 be:0.02020462051672066 for:0.01979292654746225 was:0.01760256398103379 at:0.017380150555488715 is:0.014984483003968216 with:0.014047653760730413 by:0.01374644383819499 :0.012670486581795598 In:0.01200961464556976 or:0.011563835749786333 from:0.011391516893522809 are:0.011273104484969465 that:0.010755276030689069 :0.4809655994608848 +the:0.49715536346440875 a:0.17244113205776632 his:0.0622062038402272 this:0.03148177861737335 and:0.024201818512179785 of:0.02087884654767897 their:0.01828716110210872 tho:0.01689245907755849 The:0.015731723128932684 to:0.01167979813586739 our:0.011243020398442525 her:0.009238423578128359 that:0.008732494388024262 its:0.008379269734691242 my:0.007040887173460884 in:0.006376050490525075 tbe:0.005565213364355749 great:0.005441695118393358 your:0.0036162229350925343 :0.06241043833478436 +of:0.40110189405864094 in:0.34453616592826564 In:0.07988373098008114 to:0.03302454235405558 for:0.0191785985149237 that:0.01638152992933815 by:0.014730816004513028 from:0.01247504296874112 and:0.008640360637291946 iu:0.007316017503624463 with:0.00718381410089604 on:0.00704708037164316 throughout:0.005741758331789678 ot:0.005644159613734039 at:0.0047698191496912765 upon:0.0038568328032388454 into:0.0035075998186706874 ol:0.003376060794081532 all:0.002969657285930778 :0.017634518850848258 +be:0.3487785933713926 been:0.1795972554397484 was:0.1745524426114587 is:0.04854904372825458 were:0.04673285690704007 are:0.02621860965351921 have:0.022827199218526915 had:0.0226410040169775 bo:0.01895591229955623 has:0.016159699408170112 and:0.013619129350793754 being:0.013307161039641177 he:0.009215958962925297 Is:0.008776356477663743 not:0.008221275453922636 well:0.008100295437755938 so:0.004932094228449188 duly:0.003100917693438072 already:0.0030164467949858956 :0.021697747905780024 +the:0.5285046013573097 The:0.052789131844994445 a:0.04180596046142137 and:0.0393231916353249 tho:0.038793465961945134 any:0.029071980924283536 by:0.017849240458288382 an:0.0167785836576846 in:0.01627788863280845 tbe:0.015499659492746898 other:0.015316081077503622 or:0.014629928732539882 such:0.013846331292923147 no:0.012165710170133608 of:0.011397382754024332 all:0.009899224555661407 great:0.008880031098179747 many:0.007905251604745228 some:0.007899147778432807 :0.10036720650904873 +they:0.1754512642648576 who:0.07106714930153157 we:0.06388720579354347 and:0.049077004351016786 They:0.04258842693756332 there:0.036774160899785684 men:0.03557051684042128 which:0.03112110367040644 it:0.024122964629597874 I:0.01951810516711305 people:0.017891199462204802 you:0.01764637402537191 There:0.015049085861254271 that:0.014675939671997531 We:0.01195423840093746 them:0.010515503094104739 he:0.009365130293100678 others:0.00855316948601657 but:0.008541203049320129 :0.3356302547998548 +the:0.2338981624863222 of:0.14393688204885127 a:0.07497161123014122 and:0.04257274356366235 to:0.03632814518744428 his:0.03435419187099547 in:0.02540187428928013 with:0.02089486537705136 for:0.019264387371673995 The:0.01900033590410167 her:0.017049132284146822 this:0.01586298556020251 their:0.015808063085564542 by:0.01573451319470817 that:0.015029126772007566 my:0.014773647137751953 I:0.014378052366972817 thou:0.014197790358107107 tho:0.011901673461768734 :0.21364181644924585 +in:0.17312309315603053 of:0.15632570449203967 to:0.07651541093564415 from:0.04986921191570722 for:0.048870513603984075 with:0.04692521418371988 by:0.037567204038360315 In:0.037167483339101186 and:0.02533685384255713 at:0.022818872773087525 on:0.021739674781869354 upon:0.020973717014937183 through:0.012021245294680518 after:0.011707367759601345 that:0.010101536778144774 during:0.008834534561374622 under:0.008549395095189215 into:0.005900008654259652 over:0.005611245418422071 :0.21904171236128958 +the:0.43891575607356476 The:0.25183933971270356 of:0.06240358392332731 that:0.025898653824653218 tho:0.018935378169260497 and:0.01708161937197835 this:0.011259090433229825 a:0.010217250441679877 tbe:0.008592127038392308 Vice:0.008474453531519457 Tho:0.008189471310217931 for:0.0068793411500820785 by:0.006347248207529085 :0.0060045730661619145 said:0.005707481035110087 Tbe:0.0052599340870420645 This:0.005187592122519155 "The:0.003977593864297819 which:0.0037142245033048318 :0.09411528813342587 +the:0.27567099748612894 of:0.1420456579464833 in:0.06922847153296015 his:0.05047084118740804 and:0.03756427976530472 for:0.037489993387484176 to:0.029159954441848022 a:0.02748333497457434 with:0.02660052013979705 their:0.024780122895026763 tho:0.02065366742334351 both:0.019535456629016533 her:0.01769629203344017 or:0.015531520426590102 our:0.013824688176701459 its:0.013818559739972895 on:0.013748759971421432 In:0.01354746666262148 an:0.01275771502855231 :0.1373917001513246 +and:0.06454739073657131 demand:0.023313300174744492 ready:0.0192991955467307 used:0.018559068069203856 time:0.0167973135366693 not:0.012889415712033305 vote:0.012868664167591082 it:0.01277775949265748 candidate:0.012059490274945432 him:0.011492660117416436 them:0.011389360230310022 called:0.010603763162339089 made:0.01030049958521204 up:0.009942829375404135 was:0.009875709402481388 as:0.009516893763303088 patent:0.00929908628672026 or:0.009178704268878403 but:0.00882338719685127 :0.7054655088999369 +did:0.18628064286763013 do:0.13765352126006689 could:0.13459474522727052 does:0.12187220907976894 would:0.11520527754419109 will:0.1110490137696887 may:0.021665595098635734 should:0.02092570225388738 had:0.018033109799545113 can:0.016006291877797844 is:0.015924316652817995 shall:0.015572180869882707 and:0.013674311721727022 have:0.01132240297340457 was:0.01114637080772707 must:0.010434581895745197 has:0.007940384790367818 need:0.0073686297781165346 docs:0.007080841475438912 :0.015249870256289814 +the:0.19792660746269786 and:0.11266524542566489 of:0.09719957489861525 this:0.06507909892070468 in:0.050449618490171995 such:0.03526523724735027 to:0.034834405685153974 that:0.02961522899067202 which:0.029398436232156423 our:0.0283264793452675 their:0.026501438115305972 these:0.025864397331589763 who:0.024211699691717433 other:0.02384823458825819 by:0.0228215598040681 or:0.018144779364316986 with:0.017605307868664245 his:0.017577962320196403 an:0.015549658769083863 :0.12611502944834418 +gold:0.1723235662311962 hundred:0.03721121282100509 men:0.027581559728099357 wife:0.0178264631271568 relatives:0.012887333390947848 city:0.011767292722319347 land:0.009551104536877611 in:0.008291486191596935 up:0.008205378565952232 north:0.007688145658632455 1:0.007337094172414662 friends:0.00722033050881729 dollars:0.006887239885236685 man:0.006568420234476499 cities:0.006381287376825957 time:0.006020808296476425 ;:0.005974922806552313 to:0.005829860215964098 house:0.005781703861207443 :0.6276647896682447 +the:0.13811928498103937 and:0.0908446683468332 to:0.049824681130026964 of:0.049036890693726076 in:0.0371627789960751 a:0.028917804465932617 :0.021282617290195618 for:0.020213878443470883 I:0.017423534508377247 that:0.016827692578723758 at:0.01591086848994245 on:0.014664432712347037 In:0.013450553722332998 as:0.01335827702028922 will:0.013001313111314102 which:0.012365714114898773 1:0.01181803448923144 The:0.010940067841607228 or:0.010479429244309469 :0.41335747781932647 +of:0.27200703686738026 in:0.11827527666403037 to:0.07388042147552921 and:0.06655920443567279 by:0.05815681689274711 for:0.047804019532142146 with:0.04082530350770354 that:0.035040781957904846 In:0.028885694147148807 on:0.021817757680150464 from:0.02012840193392582 upon:0.01373977263762314 as:0.012059443665379916 all:0.011793415657241624 at:0.01090725567438582 which:0.009217864389680933 through:0.008729258154513054 under:0.008378334519277924 but:0.006613299216740781 :0.13418064099082147 +the:0.171667293587615 a:0.1425504812841189 of:0.11653365791047178 and:0.10218402934194697 in:0.06286682835056377 from:0.027094690083447077 The:0.025673571406892935 that:0.02524434954257717 with:0.025226556658591193 In:0.018569412361614388 for:0.018039133434507384 have:0.0162330137282664 free:0.013903276939131147 his:0.013272636336700968 had:0.01292487483868627 tho:0.011617221292958757 last:0.010552564524910282 one:0.009836571161128608 this:0.009818869435824636 :0.16519096778004635 +and:0.07558940021936399 recorded:0.030196237618668006 was:0.028917161578042846 made:0.027969746247669736 that:0.027730098932509103 o'clock:0.025060522019555328 up:0.023026552239529506 is:0.020398277211376416 found:0.02003101797656537 placed:0.017482208134164214 out:0.016937164562539058 place:0.016819459500107596 interest:0.016629321966808677 him:0.016002796715253755 situated:0.01573420479581609 it:0.015128305982428461 them:0.014715943643665314 part:0.014646613000297721 interested:0.014450471929902294 :0.5615344957257364 +to:0.20061132248828306 will:0.18494189451657547 and:0.06447615359817553 not:0.05226185302149661 would:0.04185458203146355 may:0.04007780015087835 shall:0.03298533685651198 is:0.029678416655108397 it:0.028941402406222283 can:0.025429713770681834 was:0.019862661225130158 must:0.01640671991073165 could:0.015236022062955717 be:0.014050787204854765 should:0.012902612352750368 cannot:0.012359480537420853 they:0.010943309395459462 might:0.009587981120274784 always:0.007931612112783103 :0.17846033858224206 +to:0.09864282010030183 the:0.08375297126946753 of:0.07074571151673052 and:0.06779046829403 a:0.02766650927741597 in:0.021670314456411932 at:0.021392828982420006 for:0.01627599403114278 is:0.015107338441904122 he:0.014818877918256685 was:0.013808540905081488 by:0.013132601340090633 it:0.012796195965848819 I:0.012723560421513859 :0.0121914922721236 not:0.011777366450725432 .:0.011011346691779235 that:0.01092359583028988 with:0.01073896800850032 :0.4520324978259654 +peo:0.23956665475411132 the:0.06506608170472584 peo-:0.05639575385939091 a:0.05004265353033706 of:0.046224594554002824 and:0.03209156152193633 as:0.02126338522897661 said:0.01965300040936853 di-:0.014538128783398465 to:0.013288973136447618 for:0.013270515070816646 boy.:0.011937291572848712 girl.:0.011410083374027715 that:0.009759745111323829 was:0.00880350759306041 con-:0.008023546446256488 from:0.007964313652259608 or:0.0072288334440102076 :0.00712985653841703 :0.3553415197142838 +north:0.1080656550985611 feet:0.03030608281133504 east:0.020260825388101956 street:0.01787921618823479 land:0.013204021262939783 North:0.013069831541135743 south:0.012838431140159852 chains:0.012269668600317016 ;:0.011141156778566771 wife:0.010212552034371962 day:0.009614618872458281 township:0.00882014885218313 house:0.007480204059038217 street,:0.007394608165635002 on:0.007184304569400967 feet,:0.00677041223490948 1:0.006763055308608279 west:0.006593511539802388 .:0.00624779867565371 :0.6828838968785865 +the:0.38993024146171334 a:0.07789039812775049 of:0.07200442038475055 said:0.04950846293824783 at:0.03832924326511504 to:0.03569878006320523 any:0.0314428704325897 and:0.02598248365265132 The:0.020340396647966476 tho:0.018225725338102065 in:0.0176840428131374 this:0.015002893101480721 that:0.01460118037256103 such:0.013602867411500389 his:0.01356369466773151 by:0.013488831480780847 no:0.013277846181934111 or:0.012047847967035048 their:0.009439871892004134 :0.1169379017997427 +has:0.12555541514149768 have:0.11590535720080766 was:0.06800060487913699 he:0.06688557602359003 be:0.06563631077115302 is:0.06561269327803364 and:0.06011858066383697 had:0.055084017396583695 been:0.03612188104406747 ap-:0.02852546075582288 I:0.027025144038921395 it:0.023326437652435847 im-:0.021074465356854137 He:0.018202580106916836 who:0.01490897144774012 are:0.014752825249813525 were:0.014356031593809432 which:0.013837955126798506 It:0.012596581771620107 :0.15147311050056003 +of:0.08493743996874009 the:0.04537007712050972 and:0.041506932927266336 in:0.03586212233555753 a:0.03573683082071449 to:0.030385880039074588 -:0.025361483548512063 for:0.014246053942594594 by:0.012216347673762725 .:0.01103989863556381 that:0.010551185155321599 at:0.010374993125063453 In:0.01011125400774165 on:0.009832568924000638 I:0.009426519128921942 is:0.008952552526977567 :0.008595007489776527 as:0.008399059792090114 with:0.008155065813497852 :0.5779387270243127 +the:0.5423975615899158 and:0.07029638565313658 of:0.057774218567527263 said:0.029501745933541206 The:0.02738195755211598 tho:0.025321865503706888 in:0.016857183852661165 on:0.015124904654657533 or:0.012599136107811925 from:0.011733655629831495 tbe:0.011499256841124931 by:0.009725171737828513 that:0.007975059087985998 :0.0071814791774750236 In:0.006949799637823025 as:0.006138996817056217 at:0.005768516226137103 &:0.004567965969308286 a:0.004523256992765252 :0.12568188246758985 +a:0.36646391159284497 the:0.10346991459792629 very:0.07166677818625232 of:0.05221252194219188 and:0.049069188588711926 but:0.03537124526427662 with:0.03480264797594877 is:0.02990272425717467 to:0.02416923847418682 for:0.015831919406456445 her:0.01566295053508795 as:0.015213642057029384 at:0.013310444187889452 A:0.013006044788083721 some:0.01271000401554104 these:0.012361841602400473 his:0.011923881425650859 are:0.01170907583004891 by:0.011668911402293517 :0.09847311387000401 +to:0.5081846280797557 not:0.10247085499798768 could:0.046533540175945715 will:0.04295900113933389 and:0.03829734384573499 can:0.034430284011304914 they:0.02652229418261199 would:0.024981307006092062 may:0.02126727143576309 we:0.01709290829661786 should:0.016360567866337376 who:0.01599736210456187 must:0.012638512484893854 shall:0.011924444079790505 never:0.011203014241183792 I:0.010401831836493517 cannot:0.009567182682841199 you:0.008871251820809686 that:0.007300842883173333 :0.031995556828767015 +of:0.28767355066866834 to:0.08775711267569858 in:0.08678131196995101 and:0.05160598694501188 on:0.04646139928102899 by:0.04519522654900943 for:0.044547789071328545 with:0.03396756772609607 that:0.033699232901107726 from:0.03075346596941143 at:0.027039283056790858 In:0.021061449543044047 as:0.017514234937992545 all:0.012543839382496166 upon:0.011844431150487573 is:0.00998972746569266 was:0.008814315973987914 into:0.008557199930727406 through:0.007781895704231326 :0.1254109790972375 +of:0.14870698072999267 the:0.0845621995124163 and:0.06757800692451325 a:0.06370489404667218 to:0.05660993902384267 in:0.044754808810571894 was:0.02476206369313501 with:0.02372392891650905 is:0.02370118591038056 for:0.023671270390473925 at:0.02052745490553854 be:0.019885805590490524 that:0.01916544700111574 by:0.016703405181816126 which:0.01477775031565864 as:0.013781538588359489 an:0.012747545072512806 con-:0.011493668738063316 are:0.011384200297405571 :0.29675790635053173 +the:0.16807735899698817 of:0.10541662057906837 and:0.05138367848570702 a:0.04141865232648221 to:0.0385989743764065 in:0.026264864977736738 was:0.019530675665220657 his:0.018900421021236905 be:0.017373825006196972 their:0.015767721170721456 for:0.01557246589796783 with:0.014071419046630446 is:0.012922913111931644 at:0.012690452250034052 are:0.010702713108721902 .:0.010158075558988393 Mr.:0.009672788574483367 tho:0.009612591781990074 were:0.009549306361446321 :0.391314481702041 +of:0.1200771946266771 and:0.08085011823388627 in:0.07729099615538791 to:0.050008265494257964 any:0.045446848645355864 from:0.04337180901900968 the:0.04326145692830342 by:0.03693269684748342 for:0.03691960277758554 is:0.033344024060641006 with:0.0325999916525538 only:0.030709369676050573 that:0.030505168439642644 no:0.028349735284852465 at:0.02833692974043384 but:0.025145887808515236 In:0.025076926656931214 was:0.021684989064465733 on:0.02120173560204187 :0.18788625328592445 +to:0.11843141774085675 for:0.10349335282844656 of:0.04299396659874872 and:0.041292306887561775 threw:0.04001906152064142 put:0.032045281575482185 get:0.02554494620200898 in:0.02372728670110664 throw:0.020449821773350328 do:0.019571715085889303 found:0.01927765710591329 on:0.019078597898075634 bring:0.014983104995643582 upon:0.01495818833644417 at:0.014893341171035359 keep:0.01484372214873426 it:0.014233901055455524 with:0.014072362616075302 find:0.013934525033544132 :0.3911554427249861 +of:0.22359818851402294 at:0.10131831231328174 the:0.09721455368362895 to:0.07427315832500296 in:0.06926862396015744 and:0.05425792661065753 from:0.04336383379242914 by:0.02572656765470873 for:0.01634606488327248 In:0.01586943907870424 :0.015391753670168064 on:0.01224887684345295 with:0.011555942883860843 The:0.011439377301607104 Bay:0.008802848105433966 .:0.007500869855511857 or:0.0060350900282004315 tho:0.005918093941005339 &:0.005818276242183227 :0.19305220231271003 +of:0.07053523374883668 the:0.05364680527389692 .:0.05346155657199614 and:0.03201910937552455 Mrs.:0.025108015572903805 by:0.022424152232327965 J.:0.02155729050205873 John:0.02151383684431013 H.:0.020643926028465858 :0.02010049144343359 Miss:0.019543813440010858 W.:0.018924000936645723 A.:0.017830061908819292 to:0.01727152534533623 E.:0.016348017845656353 C.:0.01602809002871326 M.:0.01595757783063841 Mr.:0.015161942404337625 L.:0.012508296632652556 :0.5084162560334353 +the:0.09674412238517598 of:0.08771891523831278 and:0.08503404493854777 to:0.06552681661446395 a:0.06309002185916225 in:0.03248655633583034 be:0.023135797317715184 with:0.019652073381309157 was:0.01903015645121361 is:0.017283762319377893 for:0.01723807850551249 that:0.015390117678133771 his:0.014937106507598368 at:0.014199132072123134 as:0.014051404427800718 :0.0123911776475734 will:0.012298342768176972 or:0.011752543690076054 their:0.011749769879850555 :0.3652900599820456 +of:0.09043409053013649 the:0.08458268447909405 and:0.06941169710674647 to:0.06842685376506503 a:0.03502196399400508 be:0.027631492661475 was:0.02262770347407094 or:0.020899547147549786 is:0.018061672947865565 are:0.017763045964156114 his:0.017114589037761113 for:0.016727962397261282 re-:0.0162769353827767 their:0.01514882567544624 been:0.013878331263912594 were:0.013374436412516415 that:0.01319950985941409 at:0.012567281873590285 :0.012294075404375895 :0.41355730062278084 +of:0.09129790931378902 the:0.07369883040827747 and:0.047842263382354346 in:0.04189055351593407 to:0.04045875475680249 a:0.03542341257202578 be:0.02020462051672066 for:0.01979292654746225 was:0.01760256398103379 at:0.017380150555488715 is:0.014984483003968216 with:0.014047653760730413 by:0.01374644383819499 :0.012670486581795598 In:0.01200961464556976 or:0.011563835749786333 from:0.011391516893522809 are:0.011273104484969465 that:0.010755276030689069 :0.4809655994608848 +of:0.2532277900173132 to:0.13174664610790218 in:0.08389925033266173 and:0.06051088810873601 from:0.04391353056559152 on:0.043570989849465974 for:0.03999907917260756 by:0.03864023441765053 that:0.037214043437057476 at:0.03239850708826425 with:0.02685575325250877 as:0.017737265858988886 over:0.016806512634443563 In:0.01578761810167058 all:0.015757519738154972 upon:0.01382653065032138 into:0.01307512446753572 through:0.011786789616160503 when:0.011775582338731634 :0.09047034424423354 +and:0.20517685125369556 the:0.15368301224259398 any:0.10552723144649506 or:0.09141200483682692 of:0.058500745521287555 all:0.05417056642673625 no:0.040157936598832725 some:0.03638613783639421 in:0.03303836217615063 many:0.022126075746087593 to:0.02121359644216558 with:0.01799430657824639 each:0.01683745222858976 In:0.01634198592954959 The:0.015677891803255278 for:0.014974751053252001 an-:0.014285711921872756 by:0.013279853287190368 from:0.009660303405942677 :0.0585552232648351 +and:0.17980937695604496 days:0.040374911445391945 shortly:0.03846639733119241 that:0.03447931842907347 soon:0.032985189790313625 minutes:0.025270095719249343 until:0.019900124428569168 but:0.018712395130316 Shortly:0.01721642089038744 immediately:0.01644406687540484 year:0.01498987561081983 time:0.013453962941484196 years:0.012658596422049325 months:0.011927803783642159 look:0.011383538214980084 or:0.011346026819699945 Soon:0.011214445692124226 day:0.010561056448186192 and,:0.010303570287195099 :0.46750282678387567 +in:0.3468886303268223 of:0.16313499995863068 In:0.08475787685875978 the:0.049851173377924725 a:0.035109270099550734 to:0.03183855079860558 on:0.030542592137600248 at:0.03015052361073972 from:0.027264367462216964 into:0.012996610056479299 for:0.012900255447753212 with:0.012822228514111078 said:0.008995199383869546 his:0.008747959141717688 and:0.008051460799847716 by:0.007176119778423211 iu:0.006231579367074552 this:0.004964708091902172 :0.0049584129015771495 :0.1116174818863936 +the:0.11647987720560213 of:0.09356352502053812 to:0.04253724942247862 and:0.039720762402541694 in:0.018815614480201106 :0.01856532488662151 was:0.018391020108902034 on:0.01826333925947766 for:0.017632215522792857 1:0.015583235650650031 at:0.01517532496586896 were:0.014156348693615239 be:0.013507089822756327 is:0.012992807009962942 or:0.012798882579453998 .:0.011785925221784335 are:0.011441131075162909 a:0.009664398076268198 that:0.008760916004954091 :0.4891650125903672 +and:0.07352446294487991 lying:0.048245513333910174 it:0.025569782819092234 was:0.024742202960763304 made:0.02134482791405078 now:0.021277663061953084 them:0.02117644773278851 that:0.01915657403348748 is:0.018595175445694376 described:0.01796073838761745 interest:0.017427672363051767 work:0.01669506090046045 up:0.015572928751270594 him:0.015547551756696074 as:0.015205788219562024 be:0.01290606034453526 way:0.012583304931409809 place:0.011986973229259327 used:0.011683526093099928 :0.5777977447764175 +of:0.1886646222738722 to:0.10747443713201794 that:0.08674167413512228 in:0.07781388348258358 or:0.06963146212720407 for:0.06864636868349494 by:0.06361898647255815 at:0.03956868239123252 if:0.0373254556040925 If:0.023235326233687553 and:0.023213975201104933 have:0.021785683853566877 from:0.021391410687402426 than:0.02010477914370237 with:0.01984359794447952 as:0.018072111083074924 without:0.017517830983047992 make:0.01528857623020661 In:0.013568280109196236 :0.06549285622835238 +and:0.0772872681476691 place:0.06004559269648248 point:0.03486762220565376 cases:0.024648695434962863 spot:0.02429521065904575 that:0.0204111957933908 every-:0.017646936524346006 places:0.015515760162490677 of:0.013728495168802162 in:0.012812617038430675 city:0.012071522199777683 room:0.011294879017427968 or:0.011211685708429755 the:0.010759892589787347 town:0.010271602210148879 know:0.010085014565906382 street,:0.010013367161882586 country:0.009798372622159178 some-:0.009555964774201044 :0.6026783053190049 +to:0.278060220268045 will:0.0772942824896139 have:0.07024239049846143 had:0.059880370639290234 not:0.04872826889641124 has:0.04772007743813641 be-:0.041631386152263354 they:0.03787864418891676 and:0.032761155582485414 shall:0.03180312269322492 may:0.0312650396793307 would:0.023449486791502945 I:0.020720670386719802 be:0.02042546417299784 who:0.019439636936030038 must:0.01869722921036834 we:0.01836597340958098 you:0.01439500428425501 should:0.01432294732099018 :0.09191862896137554 +the:0.09868373883938258 and:0.07480453094193343 of:0.0589114817501612 to:0.04097910657897817 in:0.021158790794043262 that:0.019069334359151844 said:0.018742946492478332 for:0.017316364536936867 his:0.017177121694088426 was:0.016182606169468622 will:0.01591288197902934 he:0.015114551865358882 or:0.014845495585184915 a:0.014513966096661732 be-:0.013853328473103959 be:0.012881045636009362 :0.01244603010237448 is:0.011856827412481646 dis-:0.010720055582638647 :0.49382979511053426 +the:0.20574941013676984 of:0.1804093511165868 for:0.07822526042136067 and:0.07168230100732295 or:0.06439074594973064 by:0.05292616141185421 in:0.04550847272927269 these:0.02357169758882718 that:0.02352429289968253 from:0.023456874606948966 The:0.02286624971673228 with:0.021980849304383328 to:0.01888656059049081 about:0.018695315037432443 In:0.017107726756968717 some:0.015737440020077084 than:0.015327831899535687 tho:0.013730457196110967 between:0.01355656787859872 :0.07166643373131348 +and:0.14507320772351315 fact:0.08580533594336559 said:0.056464728489513914 so:0.05141663139801109 believe:0.03728868944610554 is:0.032697255055655516 say:0.030323479159427524 know:0.029749358812227955 found:0.025535190692382553 stated:0.021273605064562356 show:0.019511948220510757 but:0.018999393120383457 says:0.018814328565908398 think:0.016893655385130203 was:0.01658797795582863 all:0.01652317309060226 see:0.015409038245983688 opinion:0.015263158537430448 order:0.014744011681695817 :0.33062583341176116 +the:0.4421803373304635 a:0.08913261582917528 any:0.07884426866965634 at:0.049484788107306416 tho:0.03394717283575539 The:0.03366551415327321 every:0.023931758923495118 and:0.022968432760592378 by:0.01992962638815111 in:0.01871911994351137 of:0.01671054653461351 entire:0.014749572348632375 tbe:0.013692157136106352 no:0.013338593244537199 At:0.012267597116687446 an:0.011927625030220771 that:0.011739713730553583 one:0.010964617393346471 some:0.010610657386075284 :0.07019528513784688 +and:0.14507320772351315 fact:0.08580533594336559 said:0.056464728489513914 so:0.05141663139801109 believe:0.03728868944610554 is:0.032697255055655516 say:0.030323479159427524 know:0.029749358812227955 found:0.025535190692382553 stated:0.021273605064562356 show:0.019511948220510757 but:0.018999393120383457 says:0.018814328565908398 think:0.016893655385130203 was:0.01658797795582863 all:0.01652317309060226 see:0.015409038245983688 opinion:0.015263158537430448 order:0.014744011681695817 :0.33062583341176116 +and:0.1740007248845552 to:0.09876674395409803 not:0.03237349005079717 that:0.024014376656934705 or:0.022840877740201913 who:0.022052598538527538 of:0.021638491270845807 will:0.021298266202625062 re-:0.020505432833915756 which:0.020380619866447413 be-:0.02016858413091057 would:0.01961868809147256 there:0.01909091247887119 it:0.018292331437283312 he:0.018100623252480273 be:0.014906151206566987 I:0.013712294639720561 have:0.013148705999797922 for:0.01233301673244921 :0.39175707003149884 +the:0.16043476144102645 and:0.09311928486687433 of:0.05192335145205388 I:0.0402246794707311 to:0.02491143395892498 The:0.02289991060964794 do:0.02049342015925944 a:0.018125968380656558 in:0.01723109022839554 he:0.015848857432035107 :0.013859668815120211 his:0.013025586621541577 Mr.:0.01224071882694789 .:0.011496149076317951 we:0.010759312803730041 or:0.010450091223452238 that:0.010148808352238086 their:0.009631142951981664 will:0.00916842815776452 :0.43300733517130047 +the:0.3218935421180702 and:0.0837794366450775 of:0.0796507791366722 in:0.07362577266174768 an:0.06352373730247672 that:0.03399859370926342 their:0.02845515004341935 to:0.02809767335359768 a:0.026162016701739434 The:0.024361701887052584 which:0.019579450138455995 no:0.01815791988824425 tho:0.01775168513692864 its:0.016932514772888395 great:0.014580785640538807 his:0.013598334738074262 for:0.012332502245053629 In:0.012316702046164776 by:0.012252068563208745 :0.09794963327132573 +in:0.14375511999734872 the:0.13920431675421113 on:0.10817410170290533 a:0.09147133916155853 of:0.06304340161720001 In:0.059233171049434395 at:0.037056032665687355 from:0.03679209168899034 and:0.02596516291323872 for:0.02097930259371386 to:0.01712136931068567 this:0.013902310647593724 with:0.01380971524933942 an:0.013055127050915424 his:0.012432285635137838 that:0.011554465903373045 The:0.011483562020277852 A:0.010449397981474172 tho:0.00872990214309044 :0.160787823913824 +to:0.48496275241488745 will:0.09396744172588006 and:0.045231420641217324 can:0.04151435278257349 I:0.031879018493148364 not:0.021898621839561927 the:0.021176766672047636 shall:0.01793607852857504 they:0.017646070639974774 could:0.016864365554207852 may:0.016050914966465258 a:0.015829470131996128 would:0.014832237147188483 be:0.013004421711841472 should:0.010975832374392742 he:0.010751042917201114 at:0.010052658305864324 we:0.009616526349571098 who:0.009519406310970676 :0.09529060049243475 +the:0.21605058612028774 of:0.1097745805250761 and:0.065446508643625 in:0.05639121505483923 a:0.044091716977312456 The:0.029204159954143702 to:0.02702155647213601 at:0.019341575015938063 tho:0.016836178130396933 Mr.:0.014998953158883908 his:0.014252117190840293 or:0.012901043092692814 In:0.01242631173254012 :0.012303266673748462 for:0.011794650300273669 as:0.011577638373100137 .:0.010953595505151775 from:0.010357072017001204 by:0.010057838222157502 :0.2932194368398549 +of:0.12845906557169715 and:0.09069280108441956 to:0.0904000817819844 the:0.07000344699130331 in:0.029998807297681958 a:0.0284661052685885 for:0.01798221984401866 that:0.01611753566876056 as:0.013703596341218713 with:0.01232411282785466 on:0.01210480145407592 will:0.011601250629988895 be:0.011590092993680601 which:0.011377662324067188 by:0.010992808803416881 :0.01014270575099817 he:0.010026436895698803 was:0.009714731654491122 is:0.009337335162195617 :0.40396440165385933 +the:0.23578124448702956 of:0.11280018669845418 and:0.09144923509222325 a:0.04972846245625353 in:0.03293391616542869 to:0.029425226134276197 or:0.02213597816406408 The:0.018703232973766092 at:0.017307966315293397 tho:0.015225406158263385 for:0.014752635358540524 on:0.011534824120727824 with:0.010789180126395799 .:0.010471632904644741 as:0.009763370039379767 an:0.009466388241861553 by:0.00857250101485792 :0.008352795606125925 tbe:0.007822123034056263 :0.28198369490835734 +at:0.35192025072856226 for:0.10647638466568336 of:0.07419067666162908 to:0.06268401504248527 and:0.04244851966578317 At:0.03957536884719112 during:0.03477812045170813 that:0.03418399897315247 in:0.033862175708172966 from:0.025621702324958764 all:0.02429031183628755 by:0.01920866002449512 after:0.013027247536464694 until:0.012536081107947527 on:0.012309965813600979 within:0.011984158727070376 about:0.010433318492459924 In:0.010406822737012949 By:0.010383473933220767 :0.06867874672211355 +of:0.28767355066866834 to:0.08775711267569858 in:0.08678131196995101 and:0.05160598694501188 on:0.04646139928102899 by:0.04519522654900943 for:0.044547789071328545 with:0.03396756772609607 that:0.033699232901107726 from:0.03075346596941143 at:0.027039283056790858 In:0.021061449543044047 as:0.017514234937992545 all:0.012543839382496166 upon:0.011844431150487573 is:0.00998972746569266 was:0.008814315973987914 into:0.008557199930727406 through:0.007781895704231326 :0.1254109790972375 +and:0.08977451103509532 covered:0.04942187451061044 filled:0.04875203544529181 together:0.0460527769395158 charged:0.030606118761254658 up:0.024292196565542906 that:0.018735256661870144 but:0.016774639666871413 it:0.01592016624824579 connection:0.014578716950609995 supplied:0.013656810949928351 connected:0.01340095727762638 them:0.013282234776959292 met:0.012936922084629666 made:0.012123809337936324 him:0.010620599237630994 down:0.009680445238285937 out:0.009463365640114709 treated:0.009191064555020497 :0.5397354981169596 +in:0.15100824217228018 of:0.1310871033736233 to:0.08496038108110954 for:0.06466532166362847 with:0.05267929540162433 from:0.051306308400469555 by:0.047024534178240096 at:0.035195713212467665 In:0.03439182638478906 and:0.02431199995673231 upon:0.023533533774627156 on:0.020098146115786336 under:0.01584401246920626 after:0.015579405060092527 through:0.015044427902707888 that:0.00882173151047411 over:0.006921586031279294 during:0.006696120942967359 into:0.005883487407324257 :0.20394682296057032 +the:0.1228778812969354 of:0.07299440950973544 and:0.05895553790779895 on:0.05104118112864872 or:0.03754053612466659 as:0.03537910624620444 to:0.03444857366501495 be:0.018610682387095817 their:0.01852101965547376 that:0.0183486713100269 is:0.01730592854481587 for:0.016844016480016953 a:0.016705953839089682 an:0.01660238506771915 was:0.015754970837525306 in:0.01435640121731541 by:0.013513255908548667 from:0.012940428794910155 are:0.012057433725014782 :0.394201626353443 +the:0.1612326125387689 of:0.08818177450464765 and:0.08001032428103913 to:0.0463489768734577 a:0.03300643791463385 at:0.02377085051881812 in:0.020679443045072066 for:0.020459289165612782 or:0.017978807899284178 his:0.017905317186125844 their:0.01703244931054608 be:0.0160637727382065 with:0.015382871596241743 on:0.01420998895491747 is:0.011652233908134444 by:0.011086889745544793 that:0.010446494649797931 an:0.010299661164660447 was:0.010234158031974463 :0.3730176459725159 +of:0.39305429369237704 by:0.09093879704291893 to:0.08086698844212498 in:0.055950259415184306 and:0.04736528603626555 that:0.04479312736160587 at:0.025917702499959044 from:0.02435892411934937 on:0.02390564767308582 for:0.022588700403622014 In:0.022558501028150203 with:0.017804496502495208 as:0.01619532783814832 ot:0.012950495534372889 when:0.010353255422183984 against:0.010019925248600266 upon:0.009624475846937689 under:0.007477747860761451 before:0.0070974677363758185 :0.07517858029548126 +number:0.06434402010865761 purpose:0.060767714874872876 out:0.040134785214143986 matter:0.036904324188097234 instead:0.036278631162256256 cost:0.026030392593215837 means:0.02502824181659962 years:0.021927418812760096 line:0.02179536524405515 is:0.01916076118175673 be:0.016917894863904912 piece:0.016642125512325977 sum:0.016574248286390387 way:0.016471698365122443 kind:0.0163301543579987 full:0.016122504156354744 time:0.015540211557305013 sort:0.014469261104083779 case:0.01445890915768242 :0.5031013374424163 +to:0.3183245795772785 the:0.06628513629837715 a:0.06426607380092543 will:0.061508648124628536 and:0.04295902418561483 I:0.04011678920609828 under-:0.034998283672465366 would:0.033065660628396526 not:0.03143069114849689 who:0.02423618345416513 they:0.021425634147957794 we:0.021088845124233396 can:0.019861588055796447 could:0.014714612690539971 must:0.014370957770718963 1:0.01252596715356157 or:0.010168928586675667 should:0.010122543404758155 his:0.00983681364805567 :0.14769303932125574 +away:0.0808603012663094 him:0.061601567533124915 and:0.04839692277576944 taken:0.0306079602754262 came:0.025216204524358035 them:0.024333145689092915 it:0.02137507687925743 come:0.019866282403185928 returned:0.018509536570643297 years:0.01845149903632641 back:0.01759146285109306 up:0.017267911807921914 down:0.016880445972175653 out:0.016621615146806608 letter:0.01614341307646058 received:0.013728843645858184 made:0.013329251077665324 sprang:0.013118288315664757 separated:0.012313635671330463 :0.5127866354815295 +one:0.07866438238355077 part:0.05729974966283364 some:0.04351520577212045 out:0.042022035100167804 all:0.02745158226822653 portion:0.024034405840308935 any:0.019795425702599873 much:0.018784109062713775 that:0.01834799316398485 and:0.018171375761855582 many:0.016429892319021228 use:0.01628875608318383 tion:0.015661149718499606 account:0.015060168076824625 end:0.014690313477718408 side:0.013787738229685133 value:0.013221484407307478 think:0.013188507935128588 result:0.012701850392752486 :0.5198838746415164 +of:0.11514264741143516 and:0.0722834784608976 the:0.06065115780801058 to:0.040992280930035964 said:0.034193697667077375 in:0.02928445885465729 was:0.027172408801962932 by:0.023153669944174338 be:0.020173219832390316 be-:0.018258359571257664 Mr.:0.017939879890355722 is:0.016898011380725726 with:0.016732048505622682 from:0.01645473807259605 a:0.015844935628694632 for:0.015608433976682455 his:0.015390352836654223 that:0.01503540701731968 on:0.014764308411397004 :0.41302650499805266 +hundred:0.02334136986593815 up:0.005482494641173394 men:0.005366536521246011 Hundred:0.0047587970519216575 John:0.00441808156134956 William:0.004390720675819281 him:0.004016828614280843 ;:0.003997112205305733 due:0.003721199871732 in:0.0036582900032443304 time:0.003637206863828461 James:0.0035594902370151707 out:0.0034878448964120057 .:0.003467980723571515 1:0.0032804584819785204 day:0.0032444781513863933 ,:0.003058139385740603 :0.0030314555521939613 Robert:0.003005471634785646 :0.9060760430610768 +of:0.28767355066866834 to:0.08775711267569858 in:0.08678131196995101 and:0.05160598694501188 on:0.04646139928102899 by:0.04519522654900943 for:0.044547789071328545 with:0.03396756772609607 that:0.033699232901107726 from:0.03075346596941143 at:0.027039283056790858 In:0.021061449543044047 as:0.017514234937992545 all:0.012543839382496166 upon:0.011844431150487573 is:0.00998972746569266 was:0.008814315973987914 into:0.008557199930727406 through:0.007781895704231326 :0.1254109790972375 +and:0.06351042905672481 to:0.04713201560048082 the:0.044538216076986756 of:0.03232604628421672 was:0.03147987801464689 .:0.028207534370903106 Mrs.:0.021672798425109864 :0.019415640305498045 I:0.01494947429864185 be:0.01384650111888245 is:0.01354106967749762 were:0.012670735437054378 1:0.012112811930068206 said:0.012055650564386186 for:0.01174029531303118 Mr.:0.01138829946659 -:0.010986072677728678 by:0.010175447864037615 a:0.009892899415180775 :0.577358184102334 +in:0.14048713722096412 for:0.12045306486651125 of:0.1150959154773748 within:0.061090158043955345 and:0.05346109170384797 only:0.04877263632788032 In:0.04433449219687606 with:0.037160146048207214 is:0.0315421892589043 but:0.029830979859766554 by:0.028968633883732185 to:0.025999925223267443 was:0.02505070588261269 after:0.022494641765410772 that:0.022285961534963723 as:0.01690029607373616 from:0.014222657035431458 or:0.013178995054789719 made:0.012188942064310933 :0.13548143047745698 +and:0.07705437548817387 depend:0.031536193375950296 based:0.03144111872793531 placed:0.030957065963502946 depends:0.03075765919212402 called:0.030155936973754766 down:0.02681736716319054 made:0.026577710722022318 effect:0.023344764020024934 that:0.02149799173318628 look:0.02036076372291408 due:0.02026744173692952 call:0.019789339473829694 levied:0.01970103437603757 imposed:0.018928989316509288 put:0.01802119246063272 dependent:0.01689647076264392 out:0.015342186135269933 entered:0.01437601109950992 :0.505176387555858 +and:0.13583901136948118 the:0.08843793862440655 to:0.04444264869969467 do:0.04379092732237097 I:0.03887277499299367 of:0.02570004525454302 will:0.019427417919516108 he:0.018864092546921358 :0.016511014620251892 let:0.016389368288835613 for:0.016312822907182698 or:0.015980048606347223 did:0.015667968721851257 that:0.015421552430040097 which:0.013857803267375653 they:0.013454335522590219 we:0.012850453885730683 but:0.012530225013266583 The:0.012399696704244092 :0.4222498533023565 +Mr.:0.2223972935333392 Mrs.:0.10760834052324651 and:0.0670227868585547 Miss:0.038554579974223416 of:0.03674171114760977 the:0.03416755831502862 Sir:0.01995459390932377 that:0.017476925011898313 St.:0.01734110077681203 The:0.016946004068774355 .:0.016076174737904323 Dr.:0.014532121477630382 Mr:0.013641041058322397 :0.012561246434143768 General:0.012119153977633227 as:0.012059875608586812 by:0.012000027641989822 Judge:0.008957871769743192 Gen.:0.008023130584846725 :0.31081846259038864 +and:0.0792143941977051 of:0.0609417430721656 the:0.0570785242987123 to:0.05341060395569716 be:0.032250768174945425 was:0.02658780203704462 is:0.02189173262825174 a:0.02134725965012162 as:0.018002891125117996 for:0.016463815539444995 :0.015132444117289794 or:0.0150410314095221 on:0.014765909565349865 in:0.014520532756405817 been:0.012874052091160326 I:0.011415494733433309 are:0.011411354313548575 he:0.011329038884596371 not:0.010974015993817221 :0.49434659145567006 +of:0.09129790931378902 the:0.07369883040827747 and:0.047842263382354346 in:0.04189055351593407 to:0.04045875475680249 a:0.03542341257202578 be:0.02020462051672066 for:0.01979292654746225 was:0.01760256398103379 at:0.017380150555488715 is:0.014984483003968216 with:0.014047653760730413 by:0.01374644383819499 :0.012670486581795598 In:0.01200961464556976 or:0.011563835749786333 from:0.011391516893522809 are:0.011273104484969465 that:0.010755276030689069 :0.4809655994608848 +the:0.28819532618969557 of:0.12558613256928738 and:0.07507680514781108 The:0.07307907970563243 that:0.0485381972600435 a:0.04041264988758168 his:0.03261363257380467 this:0.018360037833126223 their:0.017386390584721925 in:0.016675303382820073 tho:0.015129118929406571 or:0.01047674910177606 large:0.010016165014063058 by:0.009832782447147932 any:0.009577841723141236 to:0.009022035690151083 our:0.00900524136353365 one:0.008831399937525753 all:0.008579647321599328 :0.17260546333713078 +it:0.15590291243815246 there:0.0887784025092866 It:0.07904016205387611 which:0.06936908824431676 they:0.05362226352982171 that:0.04647101454662571 and:0.04420120519214072 he:0.027952982163116303 There:0.027623278151575524 mortgage:0.023443129896555264 you:0.018859539766003214 who:0.017891862574647276 this:0.014117846301193209 I:0.01363040583752058 sale:0.011818751696880098 This:0.010767348085132659 work:0.010306262168963347 as:0.009927627839447666 They:0.008978002990569422 :0.26629791401417535 +of:0.06595146651383033 and:0.06507853975701317 I:0.05188768418400105 all:0.04360360882184524 .:0.04106217810691822 to:0.029665824742734718 :0.025183749950720452 the:0.023301583299106893 that:0.02050787010804758 for:0.017320059589710033 which:0.015890445692794953 are:0.012278473107535454 one:0.012000844474223463 or:0.011758070656692904 in:0.00958158214891037 who:0.009008463012840123 those:0.00860192688624123 :0.008521805026031355 some:0.008490767972425354 :0.5193050559483771 +they:0.20362109690448169 we:0.10860675686155348 who:0.06326211444013896 you:0.05314274741924938 They:0.05242008601123254 and:0.04598466376245315 We:0.041013448053095584 which:0.03776860299869432 that:0.03089738932030499 there:0.02694465453208769 people:0.020612315109103482 men:0.017536343802619613 You:0.013213716669659653 There:0.00939413954498987 These:0.008688337538641044 I:0.008036291484151232 them:0.007482807798662911 but:0.006230608631502327 it:0.005549067249139968 :0.23859481186823814 +sum:0.11069183705665649 rate:0.09960243590433593 period:0.034171935025734144 amount:0.033914304483367706 out:0.03096618529401489 number:0.026462261901868192 quarter:0.02551211798052166 one:0.023843417917145053 cost:0.02120988483098472 depth:0.018442983890863306 part:0.017110499087610653 line:0.01602806108986054 feet:0.015783102293002414 side:0.015049652241826627 piece:0.014998239655340345 hour:0.014640215300083864 lot:0.014228551805967092 board:0.014012065669329273 bushels:0.013466592521765904 :0.43886565604972116 +the:0.4680861748193138 an:0.14962151377571825 The:0.09028628371058071 and:0.02964977852216257 of:0.028016613395158547 a:0.027511755994126485 his:0.02453587800026907 tho:0.020570884854373677 their:0.02047950721934512 its:0.016195334044441716 equal:0.014138988941744738 tbe:0.008949420004996952 large:0.008863461700276281 her:0.008302783385369777 this:0.007857373226753133 no:0.007606698371837662 our:0.007403080462577388 any:0.006883118716478218 with:0.00647490282495796 :0.04756644802951795 +and:0.16263999549849967 be:0.06960790465870588 was:0.06872676529638926 is:0.0470391974778323 the:0.03536878659071843 been:0.031088830441124406 of:0.02799656292951124 or:0.02105260826794668 are:0.01627414052495278 had:0.015643250789233388 in:0.014561727622723586 were:0.013438228176887843 that:0.012266356097338005 have:0.011771031276526832 as:0.011527373511838539 has:0.011271574730109863 being:0.010656284865319304 to:0.009868840853106723 by:0.007721110090496148 :0.4004794303007391 +the:0.12285296094004503 of:0.09817851333752219 and:0.06592713213355123 to:0.04951419258787356 was:0.04418146059484458 a:0.038107061866298836 be:0.03381349245443766 in:0.03359448275853669 is:0.028478288952295754 at:0.023474326416834054 for:0.016699924134405294 his:0.014326395251805632 or:0.014153776705098658 been:0.014056104888894281 not:0.013109242053401433 their:0.012637453412934655 In:0.0119303395497276 are:0.010136045963321282 were:0.009961306282732157 :0.34386749971543945 +for:0.38466241329990086 of:0.14234899531297387 in:0.06431044525357651 so:0.04629814945667951 and:0.04270847806486333 as:0.035486024581912454 that:0.028188949605195825 For:0.027395825746856225 the:0.022658478314759502 In:0.01988097889942839 how:0.019344105757447768 great:0.017938790458241736 to:0.016900232832843202 than:0.01621151825369246 good:0.015678913359801764 with:0.012889578392776943 by:0.012017244262226437 are:0.01181316271174669 at:0.010932247742872318 :0.05133546769220418 +as:0.07984205494793907 is:0.05934273653720131 and:0.05093606057254106 able:0.04645085775954137 enough:0.043213913211112995 order:0.04180706313857761 was:0.03783712610460208 not:0.03643282036690066 him:0.03527030238871922 right:0.03469202824616506 them:0.028157961832970396 power:0.02655230996830763 time:0.023070254835016405 have:0.02274180209428259 made:0.022261519020468076 are:0.021800964035403464 necessary:0.021703299552926086 began:0.02060560515029052 ready:0.019166595824708258 :0.32711472441232614 +of:0.19521314239713022 for:0.14953111502962582 to:0.1059153290062185 in:0.07840490791663078 at:0.06476649971551454 on:0.04792854079555139 and:0.043516025333151506 that:0.03569219154688358 by:0.034048049318439265 from:0.03309369983158933 with:0.0304499880382546 In:0.024534675825791375 upon:0.015732115554379936 all:0.013331634504617008 as:0.012906373165436032 is:0.012386554866257591 during:0.011706939387696893 which:0.010235555090499884 or:0.009493769396295829 :0.0701128932800359 +the:0.1868369553362683 and:0.09624993208820595 in:0.06137133266915632 of:0.05746440318230268 to:0.042406732149055264 by:0.03600660484746165 that:0.0256997760533353 as:0.024779891832607957 for:0.02334409407096078 from:0.020305359906780455 on:0.01997469997820322 with:0.019526125852716916 a:0.017069006376419046 The:0.016450091112497834 In:0.015598541725708221 all:0.015474680872800036 upon:0.014668869027151494 tho:0.013146619109653061 or:0.012691114661948022 :0.27993516914676747 +other:0.25217797479121273 of:0.23419046218982675 these:0.0741885522549582 the:0.06720748106264947 for:0.03877913424698241 their:0.030931456396393824 in:0.030840967958949927 all:0.027653759464745315 different:0.025062235432130937 various:0.021639369956073413 a:0.021188501908970397 many:0.01918872325746524 to:0.01609430248972772 by:0.01385038440465201 his:0.013659336017170702 two:0.012620707923793616 and:0.011778953282366741 such:0.011440879461969365 several:0.010928510282742528 :0.06557830721721875 +for:0.2563897626534669 or:0.09652213074802957 of:0.08921940999808058 about:0.08056006962002409 past:0.05891641801286627 in:0.05487278658306767 than:0.05186927361105157 and:0.04375554605860054 within:0.026952361479244576 the:0.026539508737387953 over:0.025404113851994824 last:0.024768476651594776 twenty-:0.024142066507944072 to:0.02283170583037234 twenty:0.0196029136116299 For:0.018535405483887813 exceeding:0.015232652953865422 next:0.014107941364757843 nearly:0.013026578770925626 :0.03575087747120766 +No.:0.2504022768546786 lot:0.06318400873968336 June:0.05825570867587635 section:0.05587085500179034 March:0.05442722354405469 July:0.04659064815116423 May:0.035101349060018196 April:0.03451734735008399 and:0.03240321050040261 January:0.02769531811679044 Book:0.023861969146555626 6,:0.021153626001282323 Lot:0.015446603299173628 lots:0.014290530495932284 January,:0.014198858196022627 .:0.01368508368026738 Section:0.013096492117622847 February:0.013033235372390529 Dec.:0.012725791830461677 :0.19905986386574825 +of:0.0694998082779463 and:0.06349555140253908 to:0.05209616773513962 the:0.033419557667569884 was:0.029249846904623424 in:0.025616871800765433 for:0.025006793311852852 be:0.024823029437944524 :0.022858585077527332 is:0.02259054950709972 not:0.018637825357798985 or:0.017296404111162456 that:0.015976623321071498 said:0.01321529947989388 which:0.012594911442591816 were:0.011645881075854386 are:0.011567992877876396 re-:0.011121767298291606 I:0.01093458329653128 :0.5073519506159195 +feet:0.4432861652077945 inches:0.06291022867210831 and:0.057511206738108986 a:0.04290531054151708 so:0.04061006221844118 the:0.03388657652923178 to:0.01812497122274128 that:0.01684497316092563 of:0.016147021341975827 with:0.014242819589043937 is:0.014006015867069134 was:0.01320535779733451 as:0.012085495764974304 it:0.010286178326599345 miles:0.010198758870831643 but:0.009388534373498162 all:0.008066652168183669 rods:0.007487769865561406 be:0.007471320573731983 :0.16033458117032737 +and:0.07181562702745725 together:0.06672214896410926 connected:0.05460722541492519 connection:0.053485248068146786 accordance:0.040816432970329504 comply:0.022327715315442986 acquainted:0.01991331996883064 compared:0.01902004432375884 contact:0.016949822974841922 familiar:0.016791563233682194 up:0.016271038698657696 do:0.015355480362757417 interfere:0.014875808889703945 charged:0.014646284015101253 pleased:0.013610051164447858 him:0.01274062267734275 but:0.012200014478196207 satisfied:0.011962054640116513 it:0.011810815262474694 :0.4930786815496771 +the:0.17905433902808324 a:0.12126439852506356 to:0.11175475491516872 and:0.0845786557180725 of:0.06930750719128782 be:0.03125140202749604 was:0.02895527893087743 for:0.028895686986174753 or:0.02583556309721011 his:0.022594182058917226 are:0.018738450388369514 with:0.017686465607663085 all:0.017263521491385783 been:0.016983645690107848 were:0.016343891356666494 The:0.01569382109147767 most:0.0156737404070349 by:0.015522446804641621 their:0.014800743452379648 :0.14680150523192206 +the:0.16675701366378673 such:0.09510059731132293 and:0.08240796827248707 as:0.05998348569909799 of:0.05664734473571323 his:0.05346550646086362 a:0.03593959112945569 their:0.034298745932601286 its:0.029715344163096735 to:0.021659260777771028 same:0.020412792872071622 any:0.0181096162648674 this:0.016805805302980915 that:0.016084121918338568 or:0.016026689971969828 so:0.014553625881895264 all:0.0123004535574805 no:0.01214214103285079 my:0.01185500707915979 :0.224734887972189 +to:0.5223236644139293 will:0.14075154214683117 and:0.06769462614622711 would:0.052882084272540646 not:0.02399124865406906 shall:0.018366124780719115 can:0.017438173156499558 could:0.01696331406108987 should:0.016935557813066434 I:0.014437407069663106 you:0.013801842846532766 must:0.01187856257204892 we:0.010045831444286024 may:0.009425324104366277 they:0.008521536756641575 who:0.005140009630326447 then:0.005052516185727478 To:0.004206701627847598 but:0.004095396443601366 :0.035048535873986174 +to:0.10325342008377135 for:0.07402236533308822 let:0.06713822168742663 with:0.06268635816344827 Let:0.06081860184593363 of:0.056069104657786924 give:0.045053677229472185 told:0.041350534953289206 make:0.03859507053201791 tells:0.03607209741973325 tell:0.029891200732819784 among:0.027448279246146727 upon:0.021712459779828493 and:0.020874812340689428 given:0.02041129630809314 by:0.01887837380582356 made:0.01831653569880451 know:0.014105430522130745 gave:0.01368430752935954 :0.2286178521303365 +one:0.1028303141280697 part:0.05963429477052991 out:0.04766456937681193 some:0.031418679026461914 members:0.030764490253327767 side:0.029940657362655835 portion:0.022063658796890564 office:0.020457735219956013 member:0.019726706386316174 end:0.019666887540649894 tion:0.018667441728710307 parts:0.016814747270460957 people:0.014112771422418794 all:0.014072739582212475 any:0.013183573287639892 One:0.013083578354183906 that:0.013024335602903442 account:0.012482348155001894 many:0.012077825070275192 :0.48731264666452345 +of:0.32251156605964415 in:0.12433243852393054 to:0.06513325090728199 at:0.06055694947469096 In:0.03757992005190531 and:0.026961444022362984 as:0.020055405829079446 by:0.01950129544236358 from:0.017290344928590964 for:0.01697047363737811 the:0.01691848099947646 that:0.013936814354947303 on:0.012748733175108277 with:0.01080209912326463 all:0.00874914610655409 make:0.008249176685658178 :0.007537283634672069 when:0.007255153113553339 ot:0.007038123908486164 :0.19487190002105148 +the:0.17401469662248314 a:0.14224351624496306 of:0.07064338305593305 for:0.06350117286030621 and:0.04317546401667435 in:0.042143945937893314 to:0.018924628482820487 as:0.012187666144234619 any:0.012159777123877903 that:0.011573209572430774 In:0.011552221603756213 more:0.010351357360548012 his:0.009775300829836164 The:0.00877814997095902 during:0.008749231777430819 :0.008527919357135044 tho:0.008155202283659692 some:0.007873839618228946 or:0.007706403277700654 :0.3269629138591285 +an:0.15300814384744263 the:0.11734798175810095 more:0.10920188685466459 greater:0.07808035911354295 this:0.06328200401980753 any:0.05644325834271862 larger:0.05140059317501863 better:0.049496641979160004 other:0.04381096454245142 of:0.02952468659630618 one:0.023827990231336953 less:0.01567403128941765 that:0.014057000768862996 every:0.013459575297965353 a:0.012021095868317627 and:0.011592128399489124 lower:0.01157947845877371 no:0.01139303294777931 his:0.010732195471575024 :0.12306695103726877 +to:0.20373534601075452 and:0.14528989986215185 will:0.111095518510159 they:0.05807344890323796 we:0.04770643029671869 who:0.0338388878791654 may:0.03373536225287339 not:0.03295100272357431 shall:0.030419158897688606 can:0.027281696498335558 you:0.026479111861387412 would:0.026133854666638517 I:0.02491980618555575 should:0.024179141048318364 could:0.015583631234471765 We:0.014646062088154157 or:0.013761175778921612 They:0.011497315230956219 which:0.010429601818514512 :0.10724354825242241 +and:0.11758830446336421 the:0.03147185258567503 of:0.021824349534643257 I:0.020798760044810283 was:0.01705442800836479 that:0.016296575922224516 a:0.015619664817947305 he:0.014176050201772284 they:0.012315602452519595 ;:0.01129344881936371 to:0.01099979810697662 is:0.01092373208406377 we:0.010542102043564653 which:0.010450801418890699 as:0.010260535056382771 be:0.009663368206815183 it:0.009602191211762326 but:0.009453904030628185 then:0.007513114609866963 :0.6311514163803639 +and:0.1062364164078435 that:0.03560389535712349 it:0.03469720476733478 found:0.021099538256719994 made:0.020732308673072363 is:0.02060941982721668 him:0.020131156267548543 was:0.019550490217291615 but:0.019154666031600827 them:0.019094889919982958 or:0.01806205586180641 time:0.014407195782092782 interest:0.014345276930085568 out:0.013691345753768862 as:0.01342962685451398 place:0.013274005330756173 man:0.012667739634043563 be:0.012456485931675986 work:0.012081963221172408 :0.5576743189743495 +sum:0.03352282876311118 number:0.028116684882597106 line:0.019995206059833036 city:0.01946514558931857 out:0.019275318828420953 day:0.01666865340772654 county:0.014872697538657208 amount:0.013254184849875051 Board:0.01252325449624941 town:0.012449555905674143 side:0.011663975251122375 part:0.011517157473718155 County:0.011460540331966697 state:0.011087331502382173 City:0.010878919191854432 purpose:0.01081028255427907 and:0.010297866493795984 way:0.009848747943663767 name:0.009522170936943183 :0.711769477998811 +of:0.09129790931378902 the:0.07369883040827747 and:0.047842263382354346 in:0.04189055351593407 to:0.04045875475680249 a:0.03542341257202578 be:0.02020462051672066 for:0.01979292654746225 was:0.01760256398103379 at:0.017380150555488715 is:0.014984483003968216 with:0.014047653760730413 by:0.01374644383819499 :0.012670486581795598 In:0.01200961464556976 or:0.011563835749786333 from:0.011391516893522809 are:0.011273104484969465 that:0.010755276030689069 :0.4809655994608848 +the:0.11919516938815296 of:0.07230453158552728 and:0.05781056740443249 a:0.043018564803886335 to:0.031305092790907506 in:0.020848713353460488 at:0.014270110001066288 .:0.012526810245749479 :0.012413283442322082 for:0.011719122709941797 by:0.010808400946589808 or:0.010404172990115616 The:0.01003576004804544 with:0.009811868184449042 tho:0.009295902015355835 was:0.008924239095331684 that:0.008672304223433876 is:0.0085591147338948 be:0.008335143826716943 :0.5187411282106204 +the:0.35204024818585605 a:0.24674117724928332 of:0.083339907129037 and:0.034815644138725295 The:0.028618076894962798 in:0.019834491169597807 his:0.018645195033999588 tho:0.016965079366367198 A:0.014355657338335895 our:0.013740019728468077 this:0.013456068074230682 with:0.012413875642996352 no:0.010945927621568782 their:0.010745973030686862 very:0.010333782413538986 some:0.01029126632635265 for:0.009547901035682845 her:0.008823604999309844 most:0.008690911922325364 :0.07465519269867459 +the:0.708198909799408 of:0.042243606942523465 tho:0.029006136605749553 The:0.019730682538237992 his:0.0168776166945617 a:0.016397972681672673 this:0.013492598751331113 tbe:0.010293081275254358 their:0.009545944465642062 our:0.008792203438792645 in:0.008610823081568388 and:0.00708496754902385 my:0.006684999063689611 said:0.005350863818600069 at:0.0046190522317095225 for:0.004105657415258707 that:0.003987324523553665 your:0.0036046547687042657 good:0.0035724482103633823 :0.07680045614435495 +and:0.08709073466143846 the:0.023855733160452246 to:0.01991684212413473 a:0.016173970982667808 of:0.015010991198191586 :0.012725596318003067 lot:0.011100054294230664 that:0.01101610050358134 in:0.010652790812878397 -:0.00851046379361155 it:0.007534950695239407 will:0.007186651081798859 who:0.006816784780548523 I:0.0065315867216798554 1:0.006420482447024774 It:0.006345845089389549 he:0.005904799447191293 which:0.005533455909333241 large:0.005488577707250475 :0.7251835882713542 +and:0.06174302123025829 away:0.045931750958463816 taken:0.03772274558378757 them:0.020626014805485066 miles:0.020014740300009957 come:0.019981186841682895 out:0.019507982983791597 came:0.018932367905894663 down:0.01845006130561681 up:0.01820649894182868 received:0.016355538616791395 it:0.016168637562171892 him:0.016057797509940054 removed:0.015770574687160126 annum:0.014621871694467579 feet:0.014281010247797082 made:0.013658150433829997 derived:0.012961254651437491 letter:0.012470613368147022 :0.585538180371438 +it:0.17007556855774192 It:0.1393911789257909 he:0.09250215904361399 there:0.06251258078169598 which:0.05641588406964506 and:0.04144055586548795 I:0.03640073481399686 He:0.03356380769236776 that:0.02802568817902254 who:0.024724101895722387 There:0.024711646595220616 she:0.02188727658330467 This:0.012130240017725152 what:0.011527409428317785 as:0.00840346581191347 ho:0.008165485819846299 She:0.007847800740838963 but:0.007689957564396068 lie:0.0074341681638191714 :0.20415028944953245 +opin-:0.13939347767372096 inter-:0.021696965619956717 com-:0.018900550392669867 provis-:0.012664715740991607 Un-:0.012394787520579206 com­:0.009785134946397241 :0.009391319476120343 and:0.0090862909722221 in:0.008357896412113488 par-:0.007977993767963331 com:0.007868450236209766 com¬:0.007432377305131115 fash-:0.005559165908642157 -:0.0053339292448756626 .:0.004628955132281961 that:0.0041319085953892025 :0.003771933510482714 inter¬:0.00357124266663993 communi-:0.0034997497651514655 :0.7035531551124612 +be:0.21430096586051983 was:0.11973304906616337 been:0.1156220303512447 is:0.08467429256126549 are:0.07275740223237033 were:0.04551864410239715 and:0.037705846094719386 have:0.03396007121675271 being:0.03339356241770973 has:0.03235303943019576 had:0.02458825528639529 he:0.023632390124490938 Is:0.01714304986804535 bo:0.012519923226244244 I:0.009398085284466106 case:0.00916054023175814 ever:0.008289045365935012 not:0.007034488394072991 He:0.005364797287982996 :0.09185052159727049 +;:0.014525343569598944 it,:0.010289218107785415 them,:0.00846152851585392 in:0.008211176297314708 him:0.007866344102462152 up:0.007840953015235654 it:0.007598255195692717 him,:0.00747012930534478 time:0.006231546378617038 time,:0.006083556968190674 one:0.005631953761037212 ,:0.00558580231219058 and:0.005310946558647408 years,:0.005230264176994327 on:0.005112497566488325 country,:0.004816796580727144 up,:0.004565165814076683 :0.004555476631940347 one,:0.0043840350685433824 :0.8692290100732586 +.:0.035697632566191864 of:0.025753182289351948 -:0.01765341343407817 the:0.016361143198792102 to:0.010915445512277997 :0.010609829261288969 and:0.00893322169139365 a:0.005546646889896475 Al:0.004772820515612799 ,:0.004753922728912012 I:0.0046382617217668775 a.:0.004504552426701263 1:0.004302834344182188 m:0.003593603546360823 th.:0.003159205999709318 in:0.003022885402371617 New:0.0030026709573097374 i:0.002860014406988275 follows,:0.002795321384210083 :0.8261233917226039 +is:0.09969053960537984 and:0.09304507704029402 was:0.0913363707358572 are:0.08803811740740955 been:0.054268961822334566 be:0.04996864047478758 not:0.0462287665911914 were:0.03531791412555199 or:0.024626019573681317 of:0.02346948792241397 have:0.016469357474930117 Is:0.014853493306284092 it:0.014022987818069573 with:0.013641887271630506 that:0.013301760647771431 has:0.011181689739228316 being:0.01082696308379925 do:0.010439288064509958 by:0.0103664834789874 :0.2779061938158879 +part:0.05783550966618327 provisions:0.05413824041767699 copy:0.051540439495673974 date:0.031164498141099707 one:0.030698485647227398 out:0.028569041651808735 publication:0.025000523775382075 and:0.02409052550973694 tion:0.023053839608337772 that:0.022712927668135072 people:0.020419669967734824 payment:0.019814179615970883 members:0.019120451737239214 all:0.019021284705060464 portion:0.01806692934881089 laws:0.01617930617301755 some:0.016122639045288822 value:0.014897990722742416 member:0.014052831556982658 :0.4925006855458903 +of:0.10036425554061128 and:0.09867255827094257 in:0.04887477001133228 to:0.04309676529803197 fact:0.03312124920228808 said:0.028016465130273754 on:0.025147031828386315 all:0.020897671259005178 is:0.018989333611116044 so:0.018899457882617265 from:0.018463519784011995 for:0.017651195592365977 at:0.016946018612698295 know:0.015554635744109193 believe:0.015397314140675087 say:0.014489633297242495 with:0.013970217188878864 by:0.012605124887586036 In:0.011949884106238937 :0.4258928986115884 +and:0.2704479443709079 he:0.08398215732663102 was:0.08134269141224389 I:0.06733590678865652 be:0.04375382046324887 but:0.03997222696332574 they:0.039795511499259015 had:0.036231046277192126 who:0.033522133931602104 that:0.03168882031904514 is:0.030578882311863162 have:0.02594950962995073 has:0.02588849438509801 it:0.022264630124919825 we:0.021963667047424817 He:0.021635051085427966 which:0.018710406485401652 so:0.015030400065408478 were:0.014923017882782256 :0.07398368162961078 +the:0.31020619286799145 his:0.10498165795580236 their:0.05882352241256092 and:0.053330439431815424 my:0.042309533468673007 a:0.040204171658729276 of:0.03918865900863769 The:0.03297908931594661 her:0.028245133641566812 its:0.027606372470172325 tho:0.026260252948087464 no:0.024791724907898296 great:0.017409386859222196 full:0.015868797578650225 our:0.015082927330925748 in:0.013779958999044287 your:0.013184192136324364 other:0.012872595213063774 little:0.010543029235612589 :0.1113323625592752 +to:0.4975704532756105 will:0.13253725074533543 would:0.056650299308132694 and:0.04354607357427324 shall:0.04341253487986715 not:0.03159247085653997 should:0.023725000010714245 may:0.022800212599396595 could:0.016707148764154047 must:0.014849716831116628 that:0.013260838081179909 or:0.011911920724062566 can:0.011889219467837829 they:0.008358608058935726 the:0.00774856423801621 might:0.0067715050895097275 who:0.006146560228828904 To:0.005411534791757217 soon:0.005311709491487319 :0.03879837898324409 +the:0.21767212032066627 of:0.11127580641487451 a:0.09239705495909088 and:0.05392664955359602 to:0.04356801073461205 for:0.018993172259382046 The:0.018854292725397903 in:0.01875298296302408 an:0.018653835900092758 Mr.:0.015974481218108405 or:0.015373214468784936 tho:0.014429422631857466 their:0.014124028206624461 with:0.014098775103421914 his:0.013749814645174652 at:0.010106244360304597 by:0.009683067525505197 all:0.009531232540184419 its:0.008679763420825132 :0.2791560300484723 +the:0.12812839812524185 Mr.:0.126895453135795 and:0.039931369539127404 .:0.039763969395698255 Dr.:0.038910707098570516 John:0.036014796906643144 Mr:0.02243545855333914 Senator:0.022190549078705893 Mrs.:0.02218417860104202 H.:0.019719785814106567 A.:0.018777268270151897 F.:0.018392601114506496 section:0.01545433502854783 W.:0.015094550350886513 The:0.014954876053089856 of:0.013659685493275479 E.:0.013533132934157326 Gov.:0.011882842906912317 E:0.011233220951628499 :0.369842820648574 +of:0.17581664003403358 in:0.13603353574528826 to:0.10634036425504341 and:0.06992201540543351 that:0.06962566024239705 with:0.041705792202816554 for:0.039846540627186906 at:0.03433655263100836 as:0.03232911722058645 by:0.03200652331970179 on:0.031190549224142983 In:0.028231149767736996 from:0.022093043844584423 upon:0.01915679869860917 all:0.01857234738421709 is:0.01643124042471815 but:0.01307958090472918 which:0.01275061100930723 when:0.012604655685048953 :0.08692728137340995 +one:0.1028303141280697 part:0.05963429477052991 out:0.04766456937681193 some:0.031418679026461914 members:0.030764490253327767 side:0.029940657362655835 portion:0.022063658796890564 office:0.020457735219956013 member:0.019726706386316174 end:0.019666887540649894 tion:0.018667441728710307 parts:0.016814747270460957 people:0.014112771422418794 all:0.014072739582212475 any:0.013183573287639892 One:0.013083578354183906 that:0.013024335602903442 account:0.012482348155001894 many:0.012077825070275192 :0.48731264666452345 +to:0.17397673308405068 of:0.17362535176672786 for:0.10462221830147625 at:0.05922898741094802 in:0.055745117397344175 and:0.05284258837070044 that:0.05154147266870565 from:0.03174744853280635 on:0.025197210345967492 with:0.022805918654932037 by:0.01894709183115109 the:0.017422342604475397 upon:0.013677195092979861 In:0.012968984203160772 which:0.012919368601203466 as:0.012207640220564761 a:0.010601534189466124 before:0.008523048567570263 under:0.0065971378172801 :0.1338026103384892 +and:0.11124428744837936 for:0.10356216905450225 of:0.08512895259801491 to:0.07161938925719584 in:0.07002556793968935 is:0.06285325609989574 with:0.05049924331374196 was:0.04922775183210395 that:0.044995126533018744 have:0.029231006093064643 had:0.029159887207567854 by:0.028799331040852333 In:0.01916184991913037 but:0.018026899742985318 not:0.01690808363223911 into:0.016288933731344265 has:0.016281732292188256 be:0.01567280779925389 get:0.01453914199193028 :0.1457745824729016 +the:0.3280558724310673 and:0.12223477451464775 or:0.03309614292586185 of:0.02955921659223971 The:0.02773865039011019 on:0.0254789177262819 to:0.02451259279923193 tho:0.022933845978668623 an:0.020354305049725123 from:0.018668124918054318 Rev.:0.01592730811368378 in:0.015822073235894806 by:0.015527350635669639 :0.013993679153260366 tbe:0.010805298103851491 that:0.008727361959233132 as:0.008467392663408372 No.:0.008180266834835121 In:0.006919011806600571 :0.241997814167674 +de-:0.11536920510505536 of:0.0913385041317483 her:0.04994359812883973 the:0.04125936435425746 his:0.04093966791766333 Mr.:0.04055282185921502 com-:0.03442073930572183 in:0.03425208096740508 re-:0.02714819872891388 with:0.02351553614544378 de­:0.02337131758050933 and:0.023159807475721217 a:0.020754199038031586 old:0.01927854065912802 de¬:0.01922924905220706 July:0.018723906443780747 April:0.018326489984161424 lots:0.018256091187056227 their:0.018255721453320765 :0.3209049604818199 +;:0.016907983390780236 up:0.007769836196109004 it,:0.0073675728085317435 due:0.006426295138308555 them,:0.006295037751502061 street:0.00626309961612022 him:0.005717415170742406 .:0.00564030077931983 it:0.005389221250930542 James:0.005290041881505786 ,:0.005277925415273303 back:0.005110435558995279 hundred:0.004749329093585579 out:0.00474538078339037 them:0.004730625614292975 William:0.004682051481561266 him,:0.004557271107728287 John:0.004554900909011782 :0.004496771060095222 :0.8830285049922156 +the:0.851058460645717 The:0.04076750421626396 tho:0.026994154705153255 a:0.01648028638440371 tbe:0.011139878884985296 his:0.008059157244608936 an:0.006472466835052162 said:0.0048021237269246465 and:0.0033747820724444495 of:0.003144590203284098 our:0.002715282452593296 this:0.0026081343870576748 my:0.001934970666168235 their:0.0019334857106269646 or:0.0018097437207996022 in:0.0016814235546735484 most:0.0014810813998545655 its:0.001479528575253109 to:0.001444044266746239 :0.009618900347389213 +of:0.3716387075413922 in:0.09671903698821724 to:0.0772075233545754 that:0.03470020597158995 by:0.03467173475791107 for:0.03263341336115185 with:0.028661689284926923 and:0.02333245779896124 from:0.02206771351492586 on:0.021639399931672236 all:0.01921934823067841 In:0.018242067024192923 is:0.013988758873468544 at:0.01381994875305849 as:0.013504059774881573 upon:0.011235428945220331 was:0.008596785620363236 over:0.007942663213454808 which:0.007712703129565481 :0.14146635392979218 +of:0.2785602296048877 and:0.09306181042175224 that:0.0826111741265263 for:0.04967979942422678 with:0.048159562925876954 to:0.047798943643368064 by:0.046950846647578925 all:0.043883752021870434 any:0.03438544146884457 or:0.028615859731148007 in:0.02678333061787487 have:0.017407780718020807 on:0.015657383544990796 If:0.014027631294468924 no:0.013214717256420646 are:0.01311887437884904 some:0.012492015597271266 but:0.012397864190199524 upon:0.012179768471949763 :0.10801321391387443 +the:0.16765670262161037 and:0.10979119519585623 Mr.:0.09463985279563895 The:0.05906971427808122 of:0.03521660466713562 Mrs.:0.029914757886414334 Miss:0.02321331809792018 :0.018057908593447646 that:0.01762387148626004 to:0.017113694847107844 said:0.015831591900007044 .:0.013799268862364104 which:0.012987566556936652 it:0.012436027645104047 Dr.:0.012334248503654653 but:0.012167521836448628 for:0.011978542018239401 It:0.009418096711942929 in:0.007949179031929163 :0.317800336463901 +it:0.13005894162625659 he:0.10616474706407626 It:0.1022978689901755 I:0.0554580595268797 He:0.04586176030014704 which:0.041415408880455 and:0.036079869749150846 that:0.02728261210139764 who:0.026941460126104037 she:0.02601566401371227 there:0.020839463417784497 She:0.012727415785500285 There:0.012147903358146802 day:0.010906336239884046 this:0.010081920706121345 1:0.010047206257971534 lie:0.009043550654848985 This:0.008987962644117322 meeting:0.008589260563251187 :0.2980525879940191 +.:0.08214217987051982 Mrs.:0.045397777162202835 Mr.:0.04083853110865059 of:0.03818238469634846 was:0.025232279847519867 and:0.025039886177929245 -:0.022714306920506487 at:0.019971012132112383 the:0.01929463515202153 in:0.018827401962701842 to:0.01825252116777442 is:0.012220930303637969 for:0.01126169083209627 No.:0.009692324893374321 Dr.:0.008963344785320031 :0.008760423733633914 In:0.008054737795089795 with:0.006688922013537527 a:0.006177881536825021 :0.5712868279081976 +and:0.1601182294807382 was:0.044972569868193285 the:0.04257596713484222 be:0.036122417408927715 is:0.032883310847126875 or:0.028806415807430884 not:0.022995262528113337 to:0.021210642476129166 of:0.021131496865907557 as:0.02037701742167732 land:0.016081330607941258 now:0.015785125217665882 it:0.015666451054841286 he:0.015059693857105183 been:0.014295572283117258 are:0.013422482596351482 a:0.012975955124748022 that:0.012663109562299041 were:0.012028049198108235 :0.4398289006587358 +the:0.39749834532651884 a:0.07520030034269234 and:0.05540858759821703 The:0.03273515726769502 tho:0.030061875542463562 of:0.020144331424922633 tbe:0.014929647509541684 in:0.014268129706664795 or:0.013333166761078447 .:0.013287381914101323 an:0.009000188755386574 to:0.00880680429595084 :0.007943763822197133 Mr.:0.00773879605474787 by:0.007328417831573476 as:0.005922572098978465 for:0.0047526933692942485 that:0.004736121968310169 on:0.004594595720579333 :0.2713091226890862 +and:0.1687448311648653 that:0.1608177604127464 as:0.11407620163267404 which:0.0730449894946737 when:0.054041975695961135 but:0.05365639478487329 if:0.04270980113422677 what:0.030913065237952807 If:0.021255861459328625 When:0.017687341915797277 where:0.015334652248676377 But:0.01485308703544906 As:0.01462121987824969 because:0.012702769196795622 while:0.011226561505309112 whom:0.010673821732688686 until:0.010434538961559641 for:0.010185601591765417 And:0.00980881121559142 :0.15221071370081565 +the:0.5685933721009658 and:0.05892775527647812 The:0.03932594108663476 of:0.03175179760064594 a:0.02918986092005721 tho:0.027820902271483525 or:0.019503630913121843 other:0.0127212530265486 tbe:0.011919342545604134 in:0.009848309134010287 great:0.009690642345526211 two:0.008053324476980372 all:0.007845105956585989 as:0.006974442118454372 various:0.006877247537814057 with:0.0067049659706321894 by:0.0066799687901973465 for:0.006324639287379689 many:0.006152778116394472 :0.12409472052448509 +a:0.28120405652624547 to:0.14023291716399408 one:0.0654458828386158 the:0.058395348281067225 first:0.04862222521206995 and:0.04422497594562655 last:0.03724643394838614 no:0.0366919368159405 every:0.028854684350687637 not:0.025468810201311396 this:0.021746963200983672 will:0.020281709248628304 his:0.015322876163185846 that:0.014980781738635696 or:0.013846801591467292 some:0.012267105518161526 any:0.01188807808617769 each:0.011395098388894432 can:0.010552455835049537 :0.10033085894487126 +the:0.11919516938815296 of:0.07230453158552728 and:0.05781056740443249 a:0.043018564803886335 to:0.031305092790907506 in:0.020848713353460488 at:0.014270110001066288 .:0.012526810245749479 :0.012413283442322082 for:0.011719122709941797 by:0.010808400946589808 or:0.010404172990115616 The:0.01003576004804544 with:0.009811868184449042 tho:0.009295902015355835 was:0.008924239095331684 that:0.008672304223433876 is:0.0085591147338948 be:0.008335143826716943 :0.5187411282106204 +him.:0.04535407548649754 :0.027218484902777187 it.:0.021418666140996304 years.:0.013430006064510693 them.:0.011626830138425493 time.:0.010598941315515505 himself.:0.010291153979653507 man.:0.010104682190933877 life.:0.009414671013956167 ago.:0.008192613809176125 day.:0.007672530821686485 her.:0.007607480614204922 death.:0.007381958064252999 night.:0.007262075687629861 again.:0.006810397233530761 city.:0.0067720727488463995 there.:0.006340498587321394 work.:0.00625431567055265 home.:0.006071578448289463 :0.7691769670812427 +the:0.164622510216757 of:0.07124655442027641 The:0.06889686753552093 Mr.:0.06325252336407099 and:0.044366166073833896 that:0.04264168951999022 a:0.026935017441304315 Mrs.:0.021417054292642027 his:0.015373932368963752 in:0.015166387820743404 this:0.013228806556018961 :0.013136427543557318 tho:0.012055764911697249 .:0.010810741278177282 which:0.010410363554372798 Dr.:0.009964965976760979 to:0.00981126413214408 at:0.009089697865957478 when:0.008784665899295399 :0.3677885992279155 +hundred:0.02334136986593815 up:0.005482494641173394 men:0.005366536521246011 Hundred:0.0047587970519216575 John:0.00441808156134956 William:0.004390720675819281 him:0.004016828614280843 ;:0.003997112205305733 due:0.003721199871732 in:0.0036582900032443304 time:0.003637206863828461 James:0.0035594902370151707 out:0.0034878448964120057 .:0.003467980723571515 1:0.0032804584819785204 day:0.0032444781513863933 ,:0.003058139385740603 :0.0030314555521939613 Robert:0.003005471634785646 :0.9060760430610768 +made:0.0999812034390529 and:0.06680208263369662 caused:0.02435411478715239 shown:0.02379785223577525 up:0.023253655008919294 ed:0.02312002180398423 out:0.022293807888227747 taken:0.021988971765594088 done:0.02128782706813444 given:0.020283609421760777 paid:0.017098570970207227 owned:0.01708227903067019 that:0.01698438626809451 or:0.016145946252097726 him:0.015808363688274 followed:0.015366441255538056 appointed:0.015126279845513936 held:0.013990473525433292 approved:0.013949758860964168 :0.5102843542509091 +they:0.13305091543185063 we:0.07825135773170422 who:0.07041883013836985 which:0.05653992088574191 that:0.05616333196243973 there:0.049565291496239124 and:0.04765100876924773 They:0.03888191089411656 you:0.0359128188284674 There:0.023240400685198292 We:0.02132749924032902 men:0.013041288008907734 people:0.012192416069795332 as:0.008373986372520195 them:0.008270852093187134 it:0.008073208377740193 but:0.006869803911041492 things:0.006558297014352333 I:0.006404110852800505 :0.3182127512359506 +of:0.14693553289971645 is:0.08577908828378393 in:0.07145083002912571 was:0.06320402752944898 by:0.05547440618221568 to:0.055421010613188805 with:0.04807577891276769 as:0.04132108002128313 be:0.04000080334093529 and:0.036200883992172514 for:0.03354174945168423 such:0.029775531946091296 have:0.028355853426177382 that:0.025003577779797767 had:0.020845049963620476 In:0.01748694590427643 been:0.015358147128056155 not:0.015091728876987048 make:0.014366622828199607 :0.15531135089047143 +the:0.16807735899698817 of:0.10541662057906837 and:0.05138367848570702 a:0.04141865232648221 to:0.0385989743764065 in:0.026264864977736738 was:0.019530675665220657 his:0.018900421021236905 be:0.017373825006196972 their:0.015767721170721456 for:0.01557246589796783 with:0.014071419046630446 is:0.012922913111931644 at:0.012690452250034052 are:0.010702713108721902 .:0.010158075558988393 Mr.:0.009672788574483367 tho:0.009612591781990074 were:0.009549306361446321 :0.391314481702041 +;:0.03428147930118322 nothing:0.01805607194515132 and:0.016682748784927794 is:0.014164663922179186 it,:0.013503069746787309 them,:0.011400095832578137 are:0.011269096379565127 ,:0.009297363626038231 him,:0.00801906026736254 was:0.007976579534116183 time,:0.007921558689594412 .:0.006851524941483996 States,:0.006260071157773944 in:0.005874744575742491 anything:0.005852204114837657 men,:0.005364812196848431 years,:0.005315621023915439 to:0.00505705638102357 year,:0.004972146185854641 :0.8008800313930364 +is:0.2740906031412745 are:0.19885018315611164 was:0.12408622246004286 and:0.06546136150584171 were:0.0525524725674095 Is:0.03877515082171264 be:0.022022767857238938 a:0.021416260669115103 but:0.019198480005273518 the:0.018290741474100442 been:0.013884448947401902 he:0.007992121485114426 more:0.007695541805679377 not:0.007429340351779707 it:0.007047823351040519 have:0.006447465584409035 has:0.006008291157596535 had:0.005813187353178739 they:0.005605261949373952 :0.09633227435630495 +It:0.22801070163545095 it:0.09288502626995544 there:0.08303451766782109 that:0.05038783246303317 which:0.04715259557889802 There:0.037054705285450955 he:0.029440860900455532 This:0.027708998495857836 and:0.025087963849322305 this:0.015678159590482278 He:0.013880672215783374 what:0.01270169663600013 That:0.011936096136338201 who:0.01192318830748165 but:0.010017442907648532 I:0.008756711789938119 :0.00791006590625497 she:0.007223872126604867 What:0.006990263252449242 :0.27121862898477334 +the:0.1639865528869938 and:0.10234765038729775 of:0.08879657508152633 that:0.025880153854721248 The:0.025433382403492334 a:0.024370551082713656 or:0.01634393227514616 I:0.016181441943630876 in:0.015099075455698116 his:0.015053584421981892 to:0.014011465430673109 these:0.013075652071503832 as:0.012218349609237872 their:0.010994029209686902 tho:0.010839986628587447 which:0.010352552452324287 he:0.009660440328970435 :0.009506122633480924 would:0.009460653077096268 :0.40538784876523676 +to:0.2299549410264714 of:0.16946763174434623 with:0.08782026629988042 for:0.06565940438517921 among:0.04386391137479605 against:0.04332361952159412 by:0.0414739127748116 and:0.029320769967459415 before:0.028806971693020003 upon:0.025425360491852834 from:0.02059858827972907 about:0.01898628642241414 around:0.016889234176471726 between:0.015482395128131468 at:0.012580026958860242 see:0.012381488440769523 in:0.010192284712481941 on:0.010174378078385537 behind:0.009606186747581394 :0.10699234177576364 +able:0.06378945614335381 and:0.06187642940867796 is:0.05435803459448077 had:0.05236345712015159 have:0.04987921020092635 order:0.04807926954999479 enough:0.041430318206274505 was:0.040801546490750885 not:0.040761612839597575 him:0.03919582416383916 time:0.03260851809312688 unable:0.02752753602718607 ought:0.026556312249388626 refused:0.026153536491089265 right:0.02610707519362616 ready:0.0258993500381844 willing:0.025599536139960136 necessary:0.02425270917060625 me:0.02380217728406216 :0.26795809059472264 +of:0.1482188363588734 by:0.08884106074855182 and:0.08717473841877535 in:0.07121018390654221 the:0.060108264508852316 are:0.04932272648279973 to:0.03860329186975838 was:0.03786998451685703 with:0.03308496545142006 for:0.031274722341356746 In:0.0266028144814692 were:0.02656591009784074 is:0.0252824159778252 be:0.016387083849210154 an:0.01438009367648671 been:0.014279839201868707 a:0.014273617088841178 after:0.013337211282408149 that:0.013082583272358563 :0.1890996564679044 +to:0.31019601080253456 will:0.13793678134185958 would:0.07774183426288846 may:0.07078528459128908 should:0.05127128910568003 shall:0.04901700088221223 not:0.04594340671139167 must:0.03257846389794495 can:0.03230794200897745 could:0.02086203652199685 cannot:0.017984019065961077 and:0.017474170306863105 might:0.013535476571922157 it:0.006941357203389574 never:0.005186754057084183 that:0.004968373522249409 also:0.0034185027334872305 only:0.0032209125075107173 soon:0.003102154139878731 :0.09452822976487903 +the:0.2984769653647707 and:0.058957721325063106 this:0.05391875158170726 of:0.04636468639831031 a:0.034658603005390594 that:0.03142873559055951 said:0.02683859483504244 these:0.023425981098930352 other:0.02200598948844546 two:0.02110082198791904 to:0.019360419327896408 The:0.01891993794254596 tho:0.01712528546932208 York:0.016868713237977416 by:0.014775883216593434 one:0.014111885651793422 his:0.013408908746781705 many:0.012306497054808655 or:0.012219002622243425 :0.2427266160538987 +United:0.6772660735882742 the:0.045091106407209626 ted:0.013981848085481759 of:0.013604139749281421 and:0.008780059462625505 I'nited:0.008612002829056007 Southern:0.008597642573548165 nited:0.007698220284431107 to:0.005351870268330741 Uuited:0.004655624772585786 other:0.004512069882472845 for:0.004475844787446956 this:0.004377264161579986 Confederate:0.004096089923898147 two:0.004093633923834487 that:0.003855119830261461 three:0.003757790758166574 said:0.003386167091741474 slave:0.003381878081075315 :0.16942555353869848 +sum:0.03352282876311118 number:0.028116684882597106 line:0.019995206059833036 city:0.01946514558931857 out:0.019275318828420953 day:0.01666865340772654 county:0.014872697538657208 amount:0.013254184849875051 Board:0.01252325449624941 town:0.012449555905674143 side:0.011663975251122375 part:0.011517157473718155 County:0.011460540331966697 state:0.011087331502382173 City:0.010878919191854432 purpose:0.01081028255427907 and:0.010297866493795984 way:0.009848747943663767 name:0.009522170936943183 :0.711769477998811 +the:0.35454657832931613 a:0.24298290281465762 and:0.05519392114165222 his:0.04390368522638307 The:0.030223552035890604 very:0.02991310789234484 no:0.02669320930926193 of:0.022072655077111602 most:0.016766523011168474 with:0.01247118519780101 tho:0.011903638957377493 my:0.010920234696354995 their:0.010349434919487832 her:0.009801579963618167 A:0.009717180366471515 as:0.0095236899504004 some:0.009454617395159147 any:0.009264697776385321 its:0.008740596920585294 :0.07455700901857236 +one:0.1693785664284139 some:0.07339977533722658 any:0.04262262407121351 part:0.031736371135670176 most:0.027043974703240027 that:0.0269461964737974 out:0.02659622787527867 One:0.026486418112793123 all:0.02373646177486855 many:0.02050637440444454 each:0.01964335155381897 and:0.01746877663154189 Some:0.013671982852541538 time:0.013384711710464264 majority:0.013198657445210829 tion:0.012549525031409702 portion:0.012021894229125217 side:0.011767257388605719 number:0.01110858022735152 :0.4057322726129839 +duly:0.222583864745489 was:0.17526951992999598 be:0.1424487273857678 been:0.06777433917679769 and:0.06265036354568085 is:0.056414363777369136 were:0.044023771094191866 are:0.02736472072985953 as:0.025175038290148315 being:0.01890587315932875 bo:0.011238988740010685 Is:0.009408802002073778 he:0.005934669328250882 not:0.0046024837625487985 well:0.004133624847271904 it:0.0034751377048841095 waa:0.0034191699962557017 thereafter:0.0030292805519106522 I:0.0030183424749029696 :0.10812891875726159 +of:0.275574333881826 to:0.08636224615023709 in:0.06631904249133982 and:0.053992018225395254 for:0.04185726238848965 by:0.040432462728593715 on:0.0386621368609385 that:0.03746813623829841 In:0.02853879791593314 at:0.02784511394431448 from:0.027249043353089128 with:0.02598983508374518 all:0.014273748255081415 as:0.011953034597961125 upon:0.010404474445179767 is:0.009962155410920995 ot:0.008697425934451705 through:0.008441579399216994 which:0.00831499649011874 :0.17666215620486883 +the:0.5656891520989539 this:0.08667401345771392 a:0.036099346280467945 tho:0.0326603337714978 The:0.02998068626406411 his:0.01635453824015953 whole:0.015809464819863797 our:0.014945203561721462 tbe:0.013732252231725143 other:0.012228816470558996 great:0.012028433806680871 an:0.010846487852557145 their:0.010526352944706753 its:0.009948322394566153 of:0.00962893776295253 any:0.008332000161444293 good:0.007803562287941069 same:0.006978444216346426 that:0.006854598144141777 :0.09187905323193639 +do:0.14080041062034235 did:0.1271734471778132 is:0.11736305872302134 does:0.08020832016385714 are:0.06804251101091781 could:0.06740134047525087 was:0.0591524752822183 will:0.04488177724286314 would:0.043905746329335325 and:0.03267536127369606 shall:0.02002940036913948 were:0.01998292300468172 should:0.017388285917046803 Is:0.016643333503585475 if:0.014916177900466262 have:0.014730289726346033 had:0.014356672963113442 but:0.012644902978931852 may:0.011854178067434924 :0.07484938726993849 +so:0.3067800420990159 as:0.17518297501276614 too:0.09559583284030321 very:0.09003627880881339 how:0.049982576991165165 is:0.02860112338281676 be:0.027140715212812416 and:0.0221786314564595 not:0.018218894123187338 a:0.018119526689150692 was:0.017196675079208662 So:0.01483357222708228 are:0.014674741350862837 with:0.01239413513115388 of:0.009682766401769342 been:0.009656443477378084 by:0.008962399769225464 for:0.008880202597144737 How:0.00871229626874544 :0.06217017108093879 +the:0.4864117006004734 a:0.07513347411104254 in:0.05376423252918483 his:0.04834082120738825 and:0.03776181943446715 their:0.032515624575022606 tho:0.028035660082676803 this:0.02164805716540648 New:0.02109538234090243 The:0.020150380014675822 of:0.01793662743125143 its:0.017861044190362697 In:0.01604855469005521 our:0.014873222113170834 every:0.013248399495375396 was:0.013126463499806042 any:0.01199752695870988 is:0.011595285460251688 no:0.011220478937810962 :0.0462352451619656 +and:0.14507320772351315 fact:0.08580533594336559 said:0.056464728489513914 so:0.05141663139801109 believe:0.03728868944610554 is:0.032697255055655516 say:0.030323479159427524 know:0.029749358812227955 found:0.025535190692382553 stated:0.021273605064562356 show:0.019511948220510757 but:0.018999393120383457 says:0.018814328565908398 think:0.016893655385130203 was:0.01658797795582863 all:0.01652317309060226 see:0.015409038245983688 opinion:0.015263158537430448 order:0.014744011681695817 :0.33062583341176116 +and:0.09631219532671687 was:0.03513566928966104 held:0.02987715681559008 Beginning:0.024332169066967536 is:0.023122938489353394 look:0.022074108253454683 arrived:0.021820518428646088 that:0.021226918252779888 interest:0.02006974641058921 thereon:0.01971421054267379 made:0.019401567074562896 are:0.019271449916013022 up:0.01806602795372081 him:0.01678700722897829 be:0.016375054451444982 but:0.01586396852970274 out:0.015503094089883073 or:0.013721423267833084 not:0.012734170433403743 :0.5375906061780248 +It:0.16483324464261526 there:0.15137929784652215 it:0.1389856574030547 There:0.07635769296985051 This:0.047005115735994085 which:0.03400493914593651 he:0.03276953491232582 that:0.032534901302704186 this:0.027705240540618296 He:0.025980981107979893 and:0.02571984886254885 who:0.015928391857077187 Here:0.008658225427457844 That:0.0071330239854848695 she:0.007117899171284279 one:0.006746549293447637 She:0.006029619888080546 man:0.005607440676998042 what:0.0055587671977417805 :0.17894362803227754 +.:0.04052519622411316 -:0.022176314791528127 to:0.018265755229044122 :0.013502931369851664 the:0.012182094105650186 and:0.012141795238988272 1:0.009802852678136659 of:0.008250508856549224 No.:0.00811627007411516 a:0.007008033671924336 th.:0.00637744461962692 ,:0.005847075298317989 I:0.0050124352589087035 i:0.004916573369032635 t:0.004737055277805244 ex-:0.0046755352695327535 ex:0.004558310588078822 at:0.0043996962986128174 f.:0.00397466733630872 :0.8025294544438745 +sum:0.03352282876311118 number:0.028116684882597106 line:0.019995206059833036 city:0.01946514558931857 out:0.019275318828420953 day:0.01666865340772654 county:0.014872697538657208 amount:0.013254184849875051 Board:0.01252325449624941 town:0.012449555905674143 side:0.011663975251122375 part:0.011517157473718155 County:0.011460540331966697 state:0.011087331502382173 City:0.010878919191854432 purpose:0.01081028255427907 and:0.010297866493795984 way:0.009848747943663767 name:0.009522170936943183 :0.711769477998811 +and:0.15975768769645016 which:0.10333234100440643 I:0.09831036207169153 that:0.08850879996809509 it:0.04290908762495326 It:0.0341490800117694 he:0.028511836776581177 1:0.021317427515847347 who:0.017518314644614286 :0.0174436985873687 what:0.014299455266292954 but:0.012762033413984339 He:0.011055140098067358 then:0.010781285779478983 soon:0.010580566401861979 they:0.010436041215336813 time:0.009466989737656487 as:0.009421448996459594 immediately:0.009170073346865398 :0.2892683298422187 +the:0.17934030209797314 of:0.08205428593781179 and:0.07755544932668541 to:0.0458976712070015 a:0.04234281338593549 The:0.027164658777057808 in:0.023725434700175015 .:0.01732448914530495 his:0.015715472356861805 that:0.014458503380235329 by:0.01397444563728348 for:0.013841363502134336 with:0.013663015334621543 at:0.013209760975374045 her:0.012532000930493326 Mr.:0.012447021844941557 tho:0.01231139668398188 from:0.007793472247365017 Mrs.:0.00777834379460027 :0.3658700987341623 +of:0.09129790931378902 the:0.07369883040827747 and:0.047842263382354346 in:0.04189055351593407 to:0.04045875475680249 a:0.03542341257202578 be:0.02020462051672066 for:0.01979292654746225 was:0.01760256398103379 at:0.017380150555488715 is:0.014984483003968216 with:0.014047653760730413 by:0.01374644383819499 :0.012670486581795598 In:0.01200961464556976 or:0.011563835749786333 from:0.011391516893522809 are:0.011273104484969465 that:0.010755276030689069 :0.4809655994608848 +the:0.09212098813484267 of:0.08974056286297155 and:0.05480048574825584 to:0.04827158027709469 for:0.03280054625757568 a:0.025753080074897065 is:0.023007963915848566 was:0.02297067707913755 be:0.022599426356252554 in:0.022325412804490713 or:0.019533338273690658 at:0.019154819137491796 his:0.017705353610045816 their:0.016873182766773062 as:0.016193621138843185 that:0.013176400193290026 with:0.011527331375226817 good:0.01104055297845388 :0.010861510797330044 :0.42854316621748784 +the:0.26013388043162833 a:0.25466416927803864 and:0.04440140859980197 to:0.03995996316257064 The:0.028458488524466082 I:0.027824338481038702 not:0.024110800647934794 this:0.022829673291952023 will:0.017672004578947277 we:0.016297154678832297 that:0.016155474844060866 no:0.015157009627589757 you:0.014487008221353837 they:0.012594993028285468 tho:0.012156910552785314 can:0.011805869460275129 could:0.01162705735664388 A:0.009840966580934262 he:0.009421398065177946 :0.14940143058768285 +to:0.11815428618928227 and:0.0852146912507816 of:0.058817150574563985 the:0.05091970927846495 in:0.026621834774410824 :0.016621463305097346 not:0.016575787425455363 I:0.014445653711014275 by:0.013489864125342935 a:0.013489366047260485 he:0.01288543895410413 at:0.012744580352905713 is:0.012462468927005322 or:0.012191891717805782 In:0.011605641097873442 for:0.011533720742248682 who:0.011244031111310823 it:0.011208393094641137 was:0.010839935064315116 :0.47793409225611583 +of:0.36826485690024835 the:0.13455121879737328 and:0.023576277101156895 other:0.02258588412509052 old:0.019098796831289566 that:0.017121725594199267 his:0.014570286393033063 middle:0.013268567180206354 on:0.012912439064179904 cour-:0.01223817417427839 The:0.010786448063363594 public:0.010562932695632 with:0.010498315383549 for:0.01025744726127766 to:0.009052633658254067 or:0.008111057222431366 a:0.007091992943744672 tho:0.006495172465621525 in:0.006493370754178758 :0.2814624033908918 +be:0.3097633162377848 was:0.16088261061757514 been:0.097583093828574 is:0.08576719944730052 were:0.04426361932371694 are:0.04186735183439406 and:0.03493786115308651 he:0.021715953199387603 being:0.02158290644665323 bo:0.018916245392116098 have:0.014752789400389321 Is:0.014557265539858762 now:0.009990269152735683 had:0.008302422443314845 has:0.008009391097794487 not:0.007168192400654789 I:0.006437854659710336 it:0.005935094997098193 they:0.0051972347680029575 :0.08136932805985175 +of:0.15099603837291453 in:0.08286072793386004 and:0.06046499024594577 be:0.03838455610085058 is:0.0292581160385725 for:0.025334433441250363 by:0.02501692277815896 was:0.02475201854379388 on:0.024751371121847335 with:0.023952660701417827 to:0.023397328867487382 In:0.02048341171774173 it:0.016196380530770296 whether:0.016001929839210362 that:0.015319479196160508 I:0.011678432497914205 notice:0.010856576742895767 are:0.010531027634586972 after:0.008673672541473484 :0.38008992515314755 +a:0.26203078742660635 of:0.148249112408199 the:0.10754377685100279 in:0.07471732422899328 and:0.04123158709148064 for:0.036309593709512304 with:0.028815704064516803 as:0.026944437149929355 very:0.026510341617775865 make:0.019739957133209748 In:0.01720885940670889 is:0.016887029187624046 are:0.015720166669747217 to:0.01567499496041877 by:0.015266799481151755 all:0.01264855346961402 from:0.011408671432705682 their:0.010875175867945196 some:0.010630018350040474 :0.10058710949281777 +and:0.14507320772351315 fact:0.08580533594336559 said:0.056464728489513914 so:0.05141663139801109 believe:0.03728868944610554 is:0.032697255055655516 say:0.030323479159427524 know:0.029749358812227955 found:0.025535190692382553 stated:0.021273605064562356 show:0.019511948220510757 but:0.018999393120383457 says:0.018814328565908398 think:0.016893655385130203 was:0.01658797795582863 all:0.01652317309060226 see:0.015409038245983688 opinion:0.015263158537430448 order:0.014744011681695817 :0.33062583341176116 +to:0.13914110847359898 and:0.11390623735839629 of:0.08980770511286211 by:0.06372704860740167 not:0.056464595090349026 at:0.05357828631212139 the:0.046713588291938495 is:0.045508587475457454 are:0.0438955599586819 or:0.034189069394379865 be:0.033367117388395484 without:0.022751021625780552 in:0.02259732459543083 was:0.021879323456596912 for:0.021371919718921915 an:0.019073117488098614 with:0.018796157631995925 as:0.016523583652775137 now:0.01498030284766361 :0.12072834551915383 +of:0.18397793179867292 to:0.10153880336550807 in:0.06684132232467967 know:0.06633320172328794 and:0.06110564673872197 with:0.04099268623041211 is:0.032970940547645745 see:0.029803448365750888 for:0.029635915585186415 or:0.02513274183502324 from:0.02386774082834454 by:0.021695120630993048 do:0.02156908296049873 some-:0.01993681169385138 but:0.018623589981024924 that:0.01658032662671848 In:0.016287950423395633 matter:0.01611049284429502 not:0.014467236134432805 :0.19152900936155645 +a:0.31327164977267563 the:0.13464258279789734 On:0.08933529516243056 in:0.05389446372636874 of:0.04808166133243223 on:0.04287616744843007 his:0.029146139489271698 In:0.022899542893139415 from:0.020816051459356912 A:0.020325549156391343 by:0.01577501781386662 and:0.013329225874476977 :0.011682017036178957 for:0.010968245911712018 last:0.010587863268936893 this:0.009995438035326076 The:0.009512388965690096 tho:0.008218461700644705 one:0.007931313342758935 :0.12571092481201476 +of:0.27428583868679685 in:0.11434968905539226 to:0.09592085003609355 from:0.05639107357728981 that:0.04653387488498998 on:0.045453855831641285 and:0.04540756151111172 for:0.03968673490182519 at:0.03708290456241021 all:0.03158419248154979 with:0.025895892701101524 In:0.020022429195146088 into:0.01945132833411726 by:0.019344642323830697 over:0.01841279251065677 upon:0.012994037321914205 as:0.011609400464574702 through:0.010259112293972882 up:0.007628608569123607 :0.0666851807564616 +the:0.267026173467343 of:0.1753560334476116 their:0.05365817580702607 for:0.03561249731091243 his:0.028473317195733535 to:0.027308724960125003 other:0.02092042284981184 and:0.020510672532746074 with:0.01848413217043266 two:0.018077139434657236 good:0.017488391452056204 both:0.016250358261016146 our:0.016198506978531407 a:0.016169773856908685 many:0.015394405028494196 tho:0.015142064454862169 these:0.01462735096423706 few:0.013546620715069653 her:0.012288367887501655 :0.19646687122492337 +and:0.11743812102050909 after:0.07080430983123799 by:0.060035642419556216 After:0.056784429635380954 of:0.04770897567510448 for:0.03998596918635322 in:0.03193205823747684 to:0.028813525169987645 before:0.021222958977823406 are:0.019750939500800035 without:0.018614280717456855 is:0.017059992396221992 Before:0.016652985777138998 was:0.015662392666649746 In:0.014610282610803493 :0.014499038542263773 died,:0.012337838603937945 that:0.012242292728918965 claimed,:0.01195633238234038 :0.370887633920038 +and:0.08791715288031852 laid:0.04982970740560851 came:0.045011549388182304 break:0.04233995074946563 went:0.03993868170598312 cut:0.03985450763627558 lay:0.039209100094247995 it:0.03667329005228823 way:0.035973609212655334 put:0.03262199742807428 come:0.031785308117811044 go:0.03117640807388659 him:0.02761113815281423 them:0.027402093357517008 ran:0.020363598544004102 sat:0.020306742717959913 run:0.019838767217043588 coming:0.019643466796127156 cutting:0.019476794597067717 :0.33202613587266916 +;:0.04237795383289016 is:0.023255259646815615 was:0.015264820995623358 it,:0.014292635213740716 him,:0.01393324575551696 time,:0.012551370083596521 them,:0.011201075190150492 ,:0.009394976594137142 nothing:0.009392270790683414 be:0.00910053264333342 are:0.008762612213617248 and:0.00815739301106308 years,:0.006598992763467577 year,:0.006356437744688132 county,:0.006216568184836171 day,:0.0057934090330235485 had:0.00563398386537179 .:0.005436068067821694 here,:0.005191066497288196 :0.7800893278723348 +the:0.5732547759468878 of:0.06514165316312377 The:0.042237441058950255 a:0.040018409129037966 and:0.030020147876369644 tho:0.027068231701052856 this:0.026058448863534103 in:0.022196789908092623 said:0.014634886103137505 tbe:0.01064984369367536 an:0.009757614432420557 his:0.00892755580445089 by:0.008310231284871981 to:0.007061621709805708 their:0.00596029492272067 great:0.005803656145320993 In:0.005723285879313416 for:0.004698743234004883 same:0.003893511895545714 :0.08758285724768326 +of:0.09180327590091512 the:0.08704392345264056 and:0.05028553387910976 to:0.03971470743914892 a:0.033346211002626726 at:0.025904757386540782 his:0.017851249766701414 in:0.01742950073752589 is:0.015513218102514145 for:0.015233738043563084 was:0.01344727231219973 :0.013096887391641368 .:0.012989086604713972 I:0.011604169198481697 be:0.011583875001198117 1:0.01055199628515836 by:0.010541636001383357 Mr.:0.00920364089982067 their:0.008754647324319735 :0.5031006732697966 +his:0.46376322056140046 a:0.08511667935808234 the:0.07272587998273237 my:0.0656902573264832 and:0.04373823456938972 her:0.03522859851581384 bis:0.0250050163769324 their:0.021692165608948603 of:0.016770437610588954 His:0.0133613131809087 to:0.012372190984244373 your:0.011759573447022713 our:0.007609793322320724 its:0.0075642995204087925 The:0.006618467168540793 beloved:0.005689590669842295 My:0.005002901831110358 with:0.004091958206362516 by:0.0037753782524319107 :0.09142404350643495 +the:0.09684081064840576 and:0.06551335624548284 of:0.05146145169206151 from:0.049520598669154245 a:0.045427902131977435 to:0.0370403239153822 be:0.035669151526387034 was:0.030489628475080553 is:0.026635804908522978 in:0.023878514238638158 are:0.018513936943033917 not:0.017945708099223703 or:0.017556265685966497 been:0.014265228721347686 at:0.013857211504087178 he:0.013733215789660087 were:0.012396679125422956 I:0.012347944480187516 for:0.012197989992860347 :0.4037082772071174 +the:0.27667549494992666 a:0.20745929945221972 of:0.07587840491021292 and:0.03825485944033611 any:0.025978185490245765 this:0.01891682973603249 to:0.018368866060951457 with:0.01820138233663513 no:0.01509604112955651 little:0.014722066310641631 tho:0.014374615566685995 at:0.014159672484846014 The:0.013845745712453105 other:0.013610583146760363 his:0.012746382821235334 that:0.01259824030014398 good:0.012032798840569934 on:0.01143940463621544 in:0.010525189156539888 :0.17411593751779153 +and:0.1542124738113165 was:0.11031701585876554 is:0.05398770524008077 be:0.04586915005611782 have:0.04224344889223479 had:0.035881085812868634 has:0.030637895169104506 I:0.02756490692561641 he:0.024381305714847656 not:0.022730354390782553 to:0.022714790557373615 her:0.022311689657953295 are:0.02101018894195608 him:0.017649888118699747 been:0.017187037050448883 were:0.01657496365352643 never:0.015843620553163053 up:0.015837856685885013 it:0.014948727967313467 :0.2870958949419452 +the:0.1882757372623273 of:0.09631575289685654 and:0.06488773840630684 The:0.05038895765153287 Mr.:0.03437438790607915 a:0.029267903738761532 that:0.028473020165416824 this:0.016205283336259414 to:0.015956985836291154 tho:0.013549437909719327 :0.012839473435125173 for:0.012795757732501469 in:0.009443896478801346 .:0.008666460731834243 as:0.008383348020006032 by:0.008175748217609712 or:0.008031271955296588 his:0.007933319469542052 Mrs.:0.007295967617711322 :0.37773955123202113 +and:0.24688060633506773 was:0.054414229663430624 is:0.03885201881701313 are:0.033295346968382544 be:0.03007529901940555 that:0.028909896202276998 were:0.02850147952071258 to:0.02839983214028607 of:0.01825947622977071 or:0.017506756047943724 by:0.01564997355391595 been:0.013864699012629574 it:0.01242347151113836 for:0.0120011624144431 which:0.011480594118817192 being:0.011146400967622675 he:0.010895652310320636 not:0.010308794306633617 who:0.01003065663918752 :0.3661036542210017 +it:0.12429869106039677 that:0.09678435709713536 there:0.08529435051722721 which:0.07210712961479024 they:0.06332936993729434 It:0.049888415821910975 he:0.04168017422385555 and:0.037383975030706444 There:0.02594395923751264 what:0.025582991309687896 one:0.023942067265387425 as:0.023005743009060758 you:0.02276527986613408 I:0.018301996633386393 this:0.018229091238523065 who:0.017226422865103896 we:0.01718954736209074 man:0.016876133115589217 nothing:0.01226960605280007 :0.20690069874140696 +of:0.15052462281760146 in:0.09888260256677932 and:0.0912744297583886 with:0.07342504605684277 is:0.0726005967642979 was:0.05801869933247989 by:0.05611410562290359 for:0.055052590530080825 to:0.04245561789377467 that:0.025679024076050952 In:0.025115450120076994 as:0.02368867787720414 have:0.021323167687684583 had:0.018358275641146875 from:0.0182220961811488 on:0.016659826653531506 but:0.016564881897716672 be:0.014639101156714256 has:0.014460198446530948 :0.10594098891904521 +to:0.07417696713682526 of:0.04932758360321861 -:0.04752465237590256 a:0.0378191275015307 I:0.028641736748623595 and:0.025066384676960842 in:0.02062191105721799 .:0.020421570230135945 by:0.018932638812711608 have:0.0164598748544895 1:0.01626417586395372 t:0.01595842657798194 i:0.015606539741941245 with:0.01355834455927042 the:0.012981513066815189 was:0.00889170090685446 had:0.008708396562933991 is:0.008689387037285591 A:0.008380615318465571 :0.5509684533668813 +the:0.08198141061739792 and:0.06797732049079597 of:0.059031441219432206 be:0.050392222230042444 was:0.04598206627230703 is:0.04317415747312475 a:0.039901349092794476 to:0.030414284808566772 it:0.028340011736550756 I:0.020944947458993796 he:0.019044864789830463 are:0.0162922316058285 in:0.015278718432651231 or:0.015112640586265613 been:0.01487798198825853 were:0.014778932871604844 It:0.013523326246234032 not:0.012610034572822426 as:0.011367099306759977 :0.39797495819973827 +and:0.20523565534177066 who:0.0633379582531303 he:0.05691307923969611 that:0.044137646243675 I:0.04288471238005258 was:0.038941234306513604 it:0.03677790160216374 He:0.029122163600606554 which:0.02829927459981764 is:0.025928321909031552 but:0.023262094195943706 man:0.023228446950331896 had:0.02299276848782527 she:0.0215676882953024 It:0.02096923144091926 they:0.018902026082140803 be:0.0188198910387986 we:0.017677870305981426 reason:0.015664495700317627 :0.2443375400259813 +of:0.2216666977158274 in:0.11315600054577736 to:0.08451677747063276 with:0.05459457701357842 and:0.053201116550581094 that:0.048869351283334764 for:0.04652564665971443 by:0.041641114507012474 is:0.04019376283231503 on:0.02366070229647344 if:0.022519903961537052 from:0.022323076944866193 In:0.022136130820530876 at:0.021946950287511334 as:0.021107646490652048 make:0.018236510235099947 have:0.016692761579005615 upon:0.015762905052677117 was:0.014657954093019758 :0.0955904136598529 +to:0.23213706099404274 at:0.12975488618164407 in:0.10430672301077829 of:0.10353819870181585 for:0.06378054702375158 and:0.04928140628023317 on:0.02986453484593621 In:0.02900026455977336 with:0.028125197876106546 from:0.024658099824891297 is:0.02049616325099755 that:0.020011560303946668 take:0.018892595086293765 as:0.01852718556230874 At:0.013741009647090895 all:0.012317697269012195 by:0.010961674222347704 be:0.010743407052809297 was:0.0102924909565595 :0.06856929734966055 +part:0.18992133416239648 survey:0.08119908264450262 conviction:0.05680712038020391 one:0.051280170984314644 payment:0.03732573354193189 holder:0.028887091751831472 either:0.019406808251802722 sale:0.016731098366474906 acres:0.015885611048331402 value:0.0119346541048622 pursuance:0.011683998881850188 portion:0.010661608309702492 all:0.010125174247187915 office:0.009107996550470732 publication:0.008455613883551524 parts:0.008367224786652605 that:0.008170777570969984 cost:0.008056429838881591 any:0.007740737208070052 :0.4072517334860106 +the:0.07563700486034419 and:0.07243497440384708 of:0.06473284021202669 to:0.03364324914201952 was:0.0252182298435968 in:0.02401889374072073 for:0.019720022014661297 he:0.01854977908615749 Mr.:0.017630287925016423 be:0.01650994156290044 a:0.016091149681638876 his:0.01469817135226751 that:0.014697965820473542 or:0.01386004397304294 Mrs.:0.013194310109411182 is:0.012859513710645407 The:0.012607297901590856 an:0.011450438369468192 :0.011213791593806727 :0.5102320946963641 +of:0.09129790931378902 the:0.07369883040827747 and:0.047842263382354346 in:0.04189055351593407 to:0.04045875475680249 a:0.03542341257202578 be:0.02020462051672066 for:0.01979292654746225 was:0.01760256398103379 at:0.017380150555488715 is:0.014984483003968216 with:0.014047653760730413 by:0.01374644383819499 :0.012670486581795598 In:0.01200961464556976 or:0.011563835749786333 from:0.011391516893522809 are:0.011273104484969465 that:0.010755276030689069 :0.4809655994608848 +of:0.26662236811194107 and:0.08652825166691872 to:0.07351287657540596 that:0.07094595061964198 by:0.04438495905364046 on:0.04126283236109597 in:0.04072991141274284 as:0.034413583253955674 for:0.03418103084007092 from:0.03376969313579835 with:0.03313355845473498 all:0.03150432084426857 at:0.024129408080665323 upon:0.01581644068852645 when:0.013024205773401128 which:0.012455872561591865 In:0.011353725484291338 is:0.010988044578662204 but:0.010298360916119232 :0.10994460558652702 +a:0.503001706866272 per:0.1432132407446634 the:0.07064299132890334 one:0.04353527877072621 A:0.032156282754175126 and:0.016047258736684205 every:0.015053925426102295 each:0.00800334355708082 or:0.00792235811900141 first:0.007839661785324544 long:0.007227663828411241 other:0.0062101019695982715 that:0.006031802032893935 tho:0.005690527713959192 n:0.005477753962118093 The:0.005386884568062214 large:0.00510009508424544 this:0.004785625405630804 a.:0.0041058536219940114 :0.10156764372415353 +the:0.520159692900052 of:0.05490149707684314 our:0.042496382865696916 American:0.034010710039412174 The:0.03181653123805572 good:0.027978970171662183 and:0.022951330045903568 his:0.022369766899345715 tho:0.02175858214389525 their:0.020593237940765105 a:0.018484435245936327 to:0.017362524760526757 young:0.016730625375789128 colored:0.01620233164987119 many:0.015058971472582037 tbe:0.010586214548440248 by:0.010089893218128755 white:0.00948987434617353 for:0.008515795549963923 :0.07744263251095632 +that:0.2676352019961585 and:0.10524176929818935 as:0.10083419164329244 which:0.09806014660999113 but:0.04213361469084662 if:0.03345236488348477 what:0.03316288127709897 where:0.0329970034416335 when:0.01920523129407993 because:0.01525962777245299 or:0.014744269495268376 than:0.012976191385013294 though:0.011745200358344157 whom:0.011051744555499902 If:0.009739903184418966 whether:0.0087399321979141 until:0.007676142444272245 for:0.0072604953702512355 before:0.00673523004631285 :0.16034885805547672 +the:0.11919516938815296 of:0.07230453158552728 and:0.05781056740443249 a:0.043018564803886335 to:0.031305092790907506 in:0.020848713353460488 at:0.014270110001066288 .:0.012526810245749479 :0.012413283442322082 for:0.011719122709941797 by:0.010808400946589808 or:0.010404172990115616 The:0.01003576004804544 with:0.009811868184449042 tho:0.009295902015355835 was:0.008924239095331684 that:0.008672304223433876 is:0.0085591147338948 be:0.008335143826716943 :0.5187411282106204 +the:0.22415371744842838 a:0.08341872556798618 of:0.0789110850820653 and:0.06415764018362846 The:0.04562681882627183 to:0.026777345674974855 in:0.021962667763780825 tho:0.01865760551779766 for:0.01840643781682349 that:0.013654234953180596 .:0.012301513549270933 this:0.01193972193323911 :0.01119166002866941 an:0.010802414294784892 or:0.010669638923161173 tbe:0.010456607168156965 no:0.009758217004963 by:0.009721872736124982 A:0.009393641207444552 :0.30703843431924743 +of:0.28767355066866834 to:0.08775711267569858 in:0.08678131196995101 and:0.05160598694501188 on:0.04646139928102899 by:0.04519522654900943 for:0.044547789071328545 with:0.03396756772609607 that:0.033699232901107726 from:0.03075346596941143 at:0.027039283056790858 In:0.021061449543044047 as:0.017514234937992545 all:0.012543839382496166 upon:0.011844431150487573 is:0.00998972746569266 was:0.008814315973987914 into:0.008557199930727406 through:0.007781895704231326 :0.1254109790972375 +of:0.13107874090648175 in:0.09424005769246496 to:0.07791286402339473 for:0.04727901834888952 and:0.03635576624400947 by:0.026029995185800354 that:0.02452602264343721 on:0.01770565343315381 In:0.01708543109966222 with:0.016732457296775628 from:0.016720741532495427 those:0.015992349604371004 things:0.014545434370470924 upon:0.01171129949392975 one:0.010437715197372239 after:0.009464952468598081 at:0.00753514090314804 but:0.006019988623104912 laws:0.0048108840268746116 :0.4128154869055654 +the:0.11919516938815296 of:0.07230453158552728 and:0.05781056740443249 a:0.043018564803886335 to:0.031305092790907506 in:0.020848713353460488 at:0.014270110001066288 .:0.012526810245749479 :0.012413283442322082 for:0.011719122709941797 by:0.010808400946589808 or:0.010404172990115616 The:0.01003576004804544 with:0.009811868184449042 tho:0.009295902015355835 was:0.008924239095331684 that:0.008672304223433876 is:0.0085591147338948 be:0.008335143826716943 :0.5187411282106204 +the:0.24276789797393816 of:0.15900662022879433 in:0.11210487105746184 and:0.06207439307302271 a:0.05667317902230904 or:0.039843085419154864 with:0.032154813353290713 for:0.031630883437543084 on:0.0314911009306842 In:0.03058738888202932 any:0.018533322497153955 The:0.017390756785458757 by:0.016435148537366932 tho:0.01496296701888688 from:0.013406312101888909 to:0.013067641782208915 said:0.010226416977228498 are:0.009315227285757644 at:0.009018457214344475 :0.07830951642147677 +of:0.16562056885490126 to:0.05222938324478045 for:0.04912663166162726 in:0.04314198863923621 and:0.04162742777721928 by:0.02918965172853758 that:0.026565216714343767 on:0.022599035091737864 from:0.02211820406582267 with:0.015717650731201394 those:0.01301319564725514 upon:0.012522667353188844 things:0.01065738494719343 at:0.00853781126243071 In:0.008002145732902071 under:0.006102097700789877 laws:0.005837975126588083 law:0.00577260239931992 all:0.005750810614235215 :0.454867550706689 +well:0.12007155250186116 soon:0.07055325770617606 far:0.05375575661607968 and:0.05008205601755787 such:0.0494461512165521 long:0.04524700719120104 so:0.030433928099316825 much:0.03012977575466114 just:0.026849012568104978 known:0.02591375760924646 it:0.022762542689280817 but:0.02019103535313221 that:0.01782362926439025 him:0.012589223493767183 them:0.012430101898586584 same:0.0121554370302771 Just:0.010823658943557257 is:0.009952353521038645 good:0.009063458773876336 :0.3687263037513363 +was:0.20809776893594323 is:0.19204838298694685 are:0.07430073919892481 and:0.05583796223792432 were:0.04918563462857744 if:0.03893096192340199 Is:0.03492509748792902 do:0.02901777311522311 as:0.014334587031413555 or:0.014035648859560495 it:0.013932789849790333 be:0.013765235200496483 but:0.012330140302027765 am:0.011738007631216017 did:0.011060669522423603 will:0.007455642448631202 that:0.006701698075383714 does:0.006660970345048383 waa:0.005198197855094027 :0.19944209236404364 +of:0.14867342785213586 and:0.1480560747241572 in:0.044508763880413464 by:0.04109161710366531 for:0.039993993972399375 with:0.03772873394660079 on:0.03486091499019193 to:0.033315084335430054 after:0.026532799068557072 the:0.02535318112730155 that:0.021239683314905795 as:0.020668650921701018 without:0.017704889528151753 person:0.016934768757496842 from:0.016702743986038535 not:0.012354415907858735 one:0.011048983850893507 those:0.00947118149841792 upon:0.008478697138128972 :0.28428139409555436 +of:0.17453402650931327 in:0.12634944673226944 and:0.08450057808172202 with:0.07177620993604833 to:0.06868205758165727 for:0.062090353590349985 on:0.043670554717508386 from:0.04299100523727302 that:0.028151831124479405 by:0.023210530254937495 In:0.021293848590137682 all:0.020865306148768876 is:0.01940653452783879 made:0.017027149970302313 was:0.01603027424705809 attracted:0.015722975794723974 upon:0.015585144548721168 up:0.013800929367173401 as:0.012785549773715411 :0.12052569326600167 +of:0.09129790931378902 the:0.07369883040827747 and:0.047842263382354346 in:0.04189055351593407 to:0.04045875475680249 a:0.03542341257202578 be:0.02020462051672066 for:0.01979292654746225 was:0.01760256398103379 at:0.017380150555488715 is:0.014984483003968216 with:0.014047653760730413 by:0.01374644383819499 :0.012670486581795598 In:0.01200961464556976 or:0.011563835749786333 from:0.011391516893522809 are:0.011273104484969465 that:0.010755276030689069 :0.4809655994608848 +to:0.15082666283197307 and:0.0955383323589248 of:0.027207814932614267 be:0.022760148726970984 I:0.02066873776537216 or:0.019341998889215888 was:0.019100324879690975 :0.017983725997028317 at:0.0166091919560641 the:0.015355253536523854 it:0.012410246636885069 .:0.011465558187562648 will:0.011322842500308454 they:0.010449573188288087 1:0.009749140665561427 were:0.009623081692450089 he:0.009088435922610015 not:0.009011184407783736 that:0.008848419369883159 :0.5016393255542889 +they:0.1387776132423611 who:0.09770671340366313 and:0.05533987060182554 which:0.0468611140445501 we:0.046099295206074246 They:0.029113548865288795 men:0.022119529427826325 that:0.020969914084162915 I:0.016066215147142758 he:0.014597807116808392 We:0.014427472263559464 it:0.011456250425873815 there:0.010431241597833298 as:0.008809005720115635 you:0.008102884276177879 people:0.007777880777135971 but:0.007633725937622886 eyes:0.005971392871582718 services:0.005690752727993219 :0.43104777226240176 +of:0.26575184232088833 in:0.11719280951660335 to:0.09447943418031106 and:0.07204464978172068 that:0.06664234523514587 for:0.054432168469683274 by:0.036000803237224585 In:0.03274213434234333 on:0.029997900865989333 with:0.02881182879689758 from:0.02716292590826049 all:0.017466771979865223 under:0.016969143346466282 upon:0.015872355349629358 at:0.014843994526817287 as:0.014571921665873169 is:0.011886011397174602 over:0.011116084896548119 which:0.010361624617298169 :0.06065324956525991 +a:0.3035084916254399 the:0.09038154263306684 and:0.08330052612737894 any:0.06799738088137124 to:0.06378956201275776 no:0.058052520505022055 in:0.050712649936895185 of:0.049742736311903214 by:0.02482847790698316 with:0.01921319292185022 or:0.01647135766856308 have:0.016108809936489533 most:0.014296311553950777 A:0.010207602869337357 that:0.009752152305538596 In:0.009210565422537082 The:0.008841426462586796 for:0.008308557857095554 not:0.008083026259254953 :0.0861931088019777 +to:0.17529287149879905 a:0.11147129928964725 the:0.06725482338818209 southeast:0.048440827727194116 and:0.04054584830180376 of:0.03787576873244523 section:0.037737140532983694 said:0.03520763611961588 northwest:0.03083829041672311 northeast:0.027698589161089204 from:0.016795143139299022 for:0.014811161805501544 southwest:0.013657955796110973 east:0.010148041164334194 every:0.009824868134193457 first:0.009471526115292674 in:0.009206511613428815 range:0.009063618328330364 west:0.00882521268556756 :0.28483286604945807 +one:0.1028303141280697 part:0.05963429477052991 out:0.04766456937681193 some:0.031418679026461914 members:0.030764490253327767 side:0.029940657362655835 portion:0.022063658796890564 office:0.020457735219956013 member:0.019726706386316174 end:0.019666887540649894 tion:0.018667441728710307 parts:0.016814747270460957 people:0.014112771422418794 all:0.014072739582212475 any:0.013183573287639892 One:0.013083578354183906 that:0.013024335602903442 account:0.012482348155001894 many:0.012077825070275192 :0.48731264666452345 +of:0.09129790931378902 the:0.07369883040827747 and:0.047842263382354346 in:0.04189055351593407 to:0.04045875475680249 a:0.03542341257202578 be:0.02020462051672066 for:0.01979292654746225 was:0.01760256398103379 at:0.017380150555488715 is:0.014984483003968216 with:0.014047653760730413 by:0.01374644383819499 :0.012670486581795598 In:0.01200961464556976 or:0.011563835749786333 from:0.011391516893522809 are:0.011273104484969465 that:0.010755276030689069 :0.4809655994608848 +the:0.4703645307517706 a:0.119609211237965 The:0.07339038307319921 and:0.06700989259047348 of:0.01912349626790437 tho:0.01596843664531957 his:0.013301674637973973 to:0.012270372880394788 as:0.012199697995372103 was:0.007796143705318485 their:0.0072883620443090925 our:0.00694017024416485 tbe:0.006676912888979576 an:0.006197356072211592 its:0.005334181917535383 be:0.005254015237632446 every:0.004815303378638405 great:0.0046319784074713875 A:0.004470734105265866 :0.13635714591809983 +of:0.1500964531894971 to:0.103322156540233 as:0.08393930424652864 the:0.06941485087182281 at:0.05698205992505504 and:0.050240888299520614 in:0.0481300810325163 was:0.04207697997551166 be:0.04207353199272691 for:0.04169228068437491 with:0.03678477020068192 is:0.028233252283235224 been:0.023881592469809813 a:0.019225684020995636 too:0.018641542822671376 that:0.018021720123291448 very:0.01762325450484825 so:0.017205423854378808 by:0.015764747403890556 :0.11564942555840999 +of:0.14317236777380027 and:0.11782121984892001 to:0.10015348636279156 Mrs.:0.06151178879966351 said:0.0362111483542863 .:0.035970148926822966 W.:0.028120285697823433 by:0.020904190246747098 :0.018699531590307305 from:0.017567773106321228 Mr.:0.01471198823594295 in:0.014152619772480493 boy.:0.01388599063842104 South:0.01323693146211357 Dr.:0.013126333248641542 A.:0.012994797894002886 S.:0.010552964999738427 as:0.009258678856889956 the:0.009199229294593712 :0.30774852488969173 +the:0.42169312753401 a:0.10952250522177642 The:0.05817730945839276 tho:0.03200359329835887 A:0.031968283775305605 finance:0.029928312175803974 said:0.021634732922323464 and:0.021372192342852227 this:0.020555361045816074 State:0.017837729457802307 executive:0.016859861757086095 tbe:0.016389807237590388 of:0.015243309179410948 that:0.011408605365990521 state:0.011128845525841417 national:0.011096591151962779 senate:0.008393381285276356 House:0.007515590203331823 or:0.00728861897114905 :0.12898224208991887 +to:0.4918144820386559 the:0.07768216399363072 and:0.06960682254686054 a:0.04252041754407665 will:0.029127964895976233 who:0.02430196858728338 this:0.01994148452094868 would:0.01696592814340573 not:0.014705086714018874 The:0.014052414940538896 which:0.012994189944398679 shall:0.012068068722616935 minority:0.010666835270488633 his:0.010118253894850248 that:0.010020272458350814 following:0.009603649341745854 said:0.008430346534856102 by:0.005737265579233524 This:0.005650885134086381 :0.1129914991939772 +the:0.39749834532651884 a:0.07520030034269234 and:0.05540858759821703 The:0.03273515726769502 tho:0.030061875542463562 of:0.020144331424922633 tbe:0.014929647509541684 in:0.014268129706664795 or:0.013333166761078447 .:0.013287381914101323 an:0.009000188755386574 to:0.00880680429595084 :0.007943763822197133 Mr.:0.00773879605474787 by:0.007328417831573476 as:0.005922572098978465 for:0.0047526933692942485 that:0.004736121968310169 on:0.004594595720579333 :0.2713091226890862 +the:0.49373830855048323 of:0.10311940345892243 this:0.10084712860014436 said:0.030606937454505195 and:0.029978585887708912 tho:0.02570917864231856 in:0.02163967658595594 our:0.017774103642675503 The:0.014133674185135288 a:0.01391577081310114 tbe:0.011616887231826049 that:0.010021680988242887 for:0.008250194652455713 their:0.00809256278793902 his:0.007416011485788613 each:0.00710891585745779 any:0.006591673716614176 other:0.00576009753542131 its:0.005237363481313655 :0.07744184444199023 +it:0.10223525393085849 they:0.08547482754620833 you:0.07326090788731605 and:0.06962511509585655 which:0.06598236735477524 It:0.061885232451631744 he:0.05702255630797291 who:0.049186423208764485 that:0.038980237671443825 I:0.038403352679303546 we:0.03516130291309513 They:0.01576613425916667 there:0.013082610146034743 He:0.011946925190693135 she:0.01179798559251867 people:0.010525754672831778 We:0.010244688311220796 the:0.009912741741297313 this:0.009669528016991388 :0.2288360550220192 +the:0.5595407993954805 and:0.06714986729017043 The:0.06570525772462475 a:0.057768214368410765 his:0.03687406234358138 tho:0.025121172466235346 their:0.021114319975248055 of:0.01853733687840811 its:0.0130769584053289 our:0.01222618081735406 tbe:0.010592796091601665 your:0.009000304994707024 her:0.00858124933514483 my:0.00766554063269577 to:0.006546899883733252 or:0.005558366388937957 with:0.005362533820225415 A:0.004263452735218653 I:0.003794958263356553 :0.06051972818953656 +of:0.2895622486085241 in:0.13075325710706492 to:0.08120362298379691 that:0.05917600896853704 for:0.045416306503638045 with:0.04063536653584474 from:0.038876508560388226 by:0.03845001337574258 In:0.03810208891291041 and:0.03510333841244841 make:0.01613118196045718 under:0.014158371320121186 at:0.014107151003755421 is:0.013501080248680129 upon:0.012781562518020156 do:0.01098814236656768 but:0.01062515979733803 all:0.010417229894286251 on:0.010056311264722447 :0.0889550496571561 +three:0.529252764046923 two:0.10094430322882812 four:0.05475642721615602 five:0.0370704181269239 ten:0.02458272850491746 one:0.019694071962773747 eight:0.01281725183880111 six:0.012227605010579805 week:0.009384230529539767 hundred:0.007099431313178098 seven:0.005907040739106259 twelve:0.005465935940124592 thirty:0.005413694550353777 Three:0.005141962094976972 more:0.0048675531490930965 day:0.0043263798635648125 fifteen:0.003915809413683014 hour:0.003599462288919443 person:0.0035613644587100344 :0.1489715657228469 +and:0.14022603069727793 not:0.11858780248403294 to:0.07665285001208495 the:0.05821193674636041 I:0.047569050393930085 of:0.03850721980073504 that:0.037139571486739735 is:0.03510949169124299 we:0.028972655797410988 by:0.02852073228186784 who:0.02817287554957806 they:0.0279206872083138 be:0.025635508052055066 was:0.025585510066033587 which:0.0204846696597634 are:0.020153389005297416 but:0.01806352079299074 he:0.017475183268615878 have:0.0173011092072434 :0.18871020579842573 +be:0.18643838246094233 am:0.1547469766553929 was:0.13671714595749218 is:0.13141842736892986 are:0.08462290786265572 very:0.03882410942045448 been:0.03609932788784375 were:0.029000847665752106 not:0.027009337201431692 Is:0.024563556307104845 too:0.014062442769521193 as:0.0122045590186411 so:0.011946321270790455 and:0.011917956509540506 a:0.011388356181723297 entirely:0.010206368840846972 bo:0.010065046044303881 more:0.008312954579674752 being:0.007797583426664332 :0.05165739257029368 +the:0.13911016920252792 in:0.12109695369818607 and:0.0974309209704668 of:0.07860514788013251 for:0.031610547813279995 In:0.029258782534964587 with:0.024154761375249068 to:0.023908877970149456 make:0.021245567731080665 his:0.021096878089933647 a:0.020330957280969494 from:0.02016450124857361 their:0.018285893544080913 on:0.017236776772226608 made:0.015479257491055366 The:0.011032420318312508 by:0.008953931891797792 :0.008559259860251285 many:0.008453840515884319 :0.2829845538108774 +the:0.07898944031777821 of:0.06876241021744796 and:0.05170420618775266 to:0.0327201224304208 a:0.031841692484964865 by:0.020491685250402052 at:0.01800321002997951 in:0.0172289436661893 :0.014141814484483668 for:0.013329534291973767 that:0.011152428298638245 .:0.010591032496479228 I:0.010587679408080466 or:0.009743940429729274 with:0.009508605113898979 which:0.009278838822412663 he:0.00922768780806102 1:0.008910526503811448 as:0.00878780263457445 :0.5639983991229215 +and:0.3878799788935788 was:0.13066622776204156 He:0.059693606781327783 is:0.05694870132532638 were:0.04045222328720184 are:0.039102174332472865 he:0.02807541593855349 be:0.019784533217355692 been:0.012991527739810209 but:0.012214900306160062 not:0.011899131813145468 that:0.009654059962212047 have:0.00908314709662521 has:0.008969888011556994 I:0.008559973704165046 who:0.00819054682520316 They:0.007821989888776769 it:0.0075532588582984984 will:0.007414706744607291 :0.13204400751158085 +and:0.1907471924479306 that:0.1872692906329564 as:0.07754364348697483 but:0.03974617319606375 even:0.03734376373802813 But:0.025932639022338434 And:0.023077182024216384 or:0.021939806506401673 and,:0.019358143501844335 see:0.015330732439863704 that,:0.013869314752153474 Even:0.01063298864212959 which:0.009776380464884672 him:0.009234870269753162 which,:0.0080997000690553 ;:0.007968302420436928 doubtful:0.00750308793406508 asked:0.007452046463333457 Now,:0.007014772880011155 :0.2791599691075589 +at:0.3308213524974508 to:0.13980781231872438 of:0.12751289768591237 At:0.06285683329804463 in:0.059543816022922275 from:0.033640941189737594 and:0.026285692917293425 for:0.026131617627344384 that:0.025515860271453188 by:0.024498624163207715 on:0.022323463172072015 with:0.016100415871315197 before:0.012056958211303653 In:0.010787189750398635 under:0.009986472643284831 as:0.00836491644301229 until:0.00785967853987415 into:0.006534067749893053 after:0.006337259777974031 :0.04203412984878137 +in:0.5112283625953743 In:0.134068119389394 of:0.04734664774626412 without:0.04433057311517972 to:0.03298851128912053 and:0.032121338981548585 from:0.0313801960286873 with:0.03054324065052507 not:0.015063758904675137 iu:0.013599062307874152 With:0.012519232280895824 for:0.010657027917024638 no:0.01062622595271008 a:0.010280366029754514 the:0.008860007426384844 will:0.007853144458523772 by:0.007051177623573159 great:0.006743350523560811 that:0.005504413218982319 :0.026235243559947143 +and:0.22353623784463986 the:0.1748883421169866 a:0.09204007544218237 of:0.06679070658636471 with:0.029944427159988702 most:0.027056959901691074 two:0.024835031955218925 to:0.02391431745684078 The:0.023889414489926084 all:0.02365444580471561 was:0.023103583819862265 some:0.022932017419880574 one:0.02266447933089381 is:0.020556157382414453 are:0.019670373891319332 by:0.019583303759481214 very:0.01852433768256504 that:0.015845983478728207 from:0.015478728227658802 :0.11009107624864159 +the:0.2241593095490976 a:0.06415955274256432 mil-:0.049513266650610926 :0.021398084927415944 The:0.016080974623124043 tho:0.008633932145129579 and:0.007996818198592623 front:0.00571670569507105 of:0.0052006841332577726 A:0.004466074937013583 tbe:0.004332130967093515 .:0.003978781065561698 :0.003962090262763575 per:0.0037917473663740837 por:0.0037565680866558622 his:0.003101244328184511 -:0.002772092986100066 first:0.002524285123195249 one:0.0023026771682680596 :0.5611529790439259 +and:0.16117170500980432 was:0.07528199560097142 the:0.06010892621794478 be:0.04886124551691675 at:0.03577974269598921 years:0.03447460106984412 it:0.032593153673659794 is:0.02983409975330663 to:0.029603750163182514 not:0.02953874542944412 almost:0.026769561716904533 who:0.02595076227018288 were:0.023515058673753957 are:0.021097571207162488 year:0.020543882508561633 has:0.01790794728473825 I:0.017771026858508943 been:0.017348067659114695 days:0.01544191487516658 :0.27540624181484236 +and:0.07558940021936399 recorded:0.030196237618668006 was:0.028917161578042846 made:0.027969746247669736 that:0.027730098932509103 o'clock:0.025060522019555328 up:0.023026552239529506 is:0.020398277211376416 found:0.02003101797656537 placed:0.017482208134164214 out:0.016937164562539058 place:0.016819459500107596 interest:0.016629321966808677 him:0.016002796715253755 situated:0.01573420479581609 it:0.015128305982428461 them:0.014715943643665314 part:0.014646613000297721 interested:0.014450471929902294 :0.5615344957257364 +of:0.28767355066866834 to:0.08775711267569858 in:0.08678131196995101 and:0.05160598694501188 on:0.04646139928102899 by:0.04519522654900943 for:0.044547789071328545 with:0.03396756772609607 that:0.033699232901107726 from:0.03075346596941143 at:0.027039283056790858 In:0.021061449543044047 as:0.017514234937992545 all:0.012543839382496166 upon:0.011844431150487573 is:0.00998972746569266 was:0.008814315973987914 into:0.008557199930727406 through:0.007781895704231326 :0.1254109790972375 +of:0.19405838502548547 the:0.14412772182412964 and:0.13884427911422725 from:0.0577198348068895 to:0.057669827863214285 in:0.04105111764277064 that:0.03759750507715618 The:0.027663981075834034 for:0.024343605969243395 or:0.022621222440112932 by:0.02208609329935968 his:0.014135770212593577 with:0.012197797486833575 a:0.010675529129095545 Crown:0.01057897983903252 which:0.010309201486403982 I:0.010150559653287596 as:0.009249130933000628 In:0.008853624020583751 :0.1450658331007458 +the:0.18748552374385136 and:0.07724810581101535 of:0.07382649471934546 to:0.05210015140585937 a:0.05013727750088659 in:0.024366898339315518 on:0.01849861284991988 at:0.017591545522088692 :0.01735241309413317 The:0.015723957698705392 his:0.014824102116048567 tho:0.012540005018029918 Mr.:0.01234579312675052 by:0.010437587021142936 from:0.010331272375901712 for:0.010245390835036497 with:0.009973451893896493 .:0.009630367414669912 an:0.008950383077204787 :0.36539066643619783 +the:0.1864866730403369 of:0.10214258064812948 and:0.05549994141568971 a:0.05196624635535982 to:0.05115004090146824 be:0.04579104885513233 in:0.03110103747107456 his:0.0307454196539636 was:0.030186971900981102 is:0.028132521832588925 their:0.027641684795139836 for:0.020009172731581745 been:0.01611381130044442 its:0.014799172745324114 are:0.014002064671223119 or:0.012715474736360147 at:0.011660456421070444 not:0.011351130157368631 tho:0.011219859298471257 :0.24628469106829162 +:0.043767281139576966 in:0.02179219711929485 the:0.01739512012211022 it.:0.014765544997368311 and:0.00942790807398802 of:0.009348564975659631 .:0.00916558706092612 them.:0.007773407973670937 1.:0.007689082991756884 Provided,:0.007112006603593247 country.:0.005266432095198058 law.:0.005206813615319052 that:0.005014808181377676 time.:0.004741970604538132 2.:0.004627601388175818 4.:0.004517414328055079 In:0.004492935360385653 States.:0.0043999599694992154 people.:0.004383725579015621 :0.8081116378204904 +:0.0345792595226387 and:0.023769784555762143 that:0.009506113832998622 :0.008003037985101382 which:0.007887747788354202 .:0.005653113456966169 I:0.0046748160474938015 1:0.004382650535702749 he:0.003813036408485376 it.:0.003645195374734788 j:0.0033690483011238398 ,:0.0032837558773651547 There:0.003042455196203746 it:0.002962577703537871 they:0.002893767237247715 but:0.0027154386292176833 those:0.002679065611512302 all:0.0026659105229374213 -:0.002508688044225421 :0.866964537368391 +the:0.2583129142839788 a:0.21710237440990018 this:0.11275198718924896 such:0.046636700572618685 his:0.04100822593360511 same:0.0227826891546271 that:0.020511254805786555 any:0.019358780766739723 The:0.01924034630171651 and:0.01869559386893592 other:0.01673489295077766 my:0.016443714481732888 of:0.015476357342365115 every:0.014032557851018862 their:0.013520836423539268 This:0.013410951742360417 tho:0.01331978499186363 some:0.01314508533695911 good:0.012881908725117963 :0.09363304286710751 +the:0.5966633209770026 The:0.08322257094677049 Federal:0.03644211962315139 tho:0.027519710531267883 of:0.025718938962841893 States:0.02311001425920346 our:0.02058590462753501 this:0.017958162007886722 and:0.014837496787683585 that:0.012862823119189215 British:0.011214701683809154 said:0.010075835978160195 American:0.009796201061320243 tbe:0.0079151857183966 General:0.007663698400851106 National:0.006825783633038564 Canadian:0.0056951954765861726 their:0.005657132829472289 other:0.005516686563970762 :0.0697185168118628 +to:0.47198255910533443 and:0.11736057678279657 would:0.09615052508764857 not:0.06878124616499523 will:0.06703513824297533 they:0.014870265842529382 who:0.01355379749074766 should:0.012949694900553723 must:0.01282052595652056 we:0.01053034203668996 can:0.010486577450577217 have:0.009201082443975453 that:0.00827920363864342 I:0.008175910132600944 may:0.0077655156620277666 he:0.0072576032742402066 or:0.006427157958005938 which:0.006203678907501882 shall:0.005974526626333929 :0.0431940722953018 +one:0.03236149079152463 two:0.02203554368425542 on:0.018225264769532977 and:0.016431240815052397 three:0.011012541328878597 four:0.010611291681253401 them:0.009153630014799921 ten:0.008857394829438318 person:0.008774049350023325 man:0.008720684619369848 law:0.007774343871437493 whether:0.007556579746706166 sold,:0.0074574745818864864 any:0.007045568824116528 in:0.006733346133064382 him:0.006695541327506296 it:0.006411317148300334 them,:0.006213507675468929 ;:0.005742008540344576 :0.79118718026704 +it:0.1377627352627463 he:0.11763404756142036 It:0.09462206924684258 I:0.07394703373423658 and:0.052222054673571786 He:0.05011769118840285 which:0.042619003305196745 she:0.032385178719371195 there:0.03140310541832658 who:0.030762391231347032 that:0.023180049597426967 She:0.012653058930409541 This:0.011060949668053724 There:0.010884035843595761 this:0.009901261753412077 ho:0.00971382428081507 man:0.009625301423540698 lie:0.008586082311520317 but:0.007405265899611852 :0.232514859950152 +up:0.02687584478098081 him:0.013502229025118287 men:0.012152974969975841 down:0.011331837440384589 out:0.01091692283438358 ;:0.010724481165264147 back:0.009773192513449857 time:0.00903616522630104 it,:0.008704136206659985 house:0.00854793723094613 lying:0.008429977344349636 him,:0.008333807146412013 it:0.008170894129694692 here:0.007904969344765827 home:0.007556456229202997 night:0.007047628505808405 man:0.006925526262210122 them:0.006529647275255249 and:0.00631311054459887 :0.810222261824238 +to:0.06497741243420417 and:0.060899146189751834 west:0.05378523826009999 east:0.0479629877042643 the:0.02983640027772495 of:0.029394436058164882 north:0.028806431513227076 south:0.017007729764792173 about:0.014604289923939313 degrees:0.01322118734027486 street:0.011604859986119594 at:0.011011206107331733 .:0.009080386494537976 from:0.008802062110637417 E.:0.008100430348127368 :0.0066066794992729015 east,:0.006559731385219493 thence:0.006473789998292426 alley:0.005504377544536602 :0.5647612170594809 +be:0.14769739358789014 was:0.11017536374691203 been:0.09117797951495978 and:0.07607519896496903 is:0.06000209700855345 have:0.033954736096793184 not:0.03234449705108207 had:0.028637829474011448 were:0.02738434973093515 he:0.0262787583982874 has:0.025274661129232646 are:0.023349195663083896 an:0.022859577526153408 as:0.019855220437340816 I:0.018487184834761642 who:0.015748618364567677 that:0.014346771359601718 now:0.013946524488141371 being:0.012978846117320227 :0.1984251965054029 +the:0.11500545585881412 of:0.0897605566703555 and:0.07914879987306167 a:0.05827037833039227 to:0.0386987683614473 was:0.029282661483795363 be:0.023890810389268442 is:0.02056818843792312 been:0.017204803150083207 or:0.017094944717067368 in:0.01610392931760865 are:0.015798243080240505 his:0.01344187865263006 at:0.01321973597799718 for:0.01304287912725108 their:0.012337012043366955 were:0.012236169772424844 :0.01133284696603621 The:0.01095822742659897 :0.3916037103636372 +of:0.09634440727724378 the:0.09564056874867434 and:0.05835683350028654 to:0.05533222126141759 a:0.04771372919850062 in:0.022894939234820468 :0.02074467237379201 by:0.01815782761661735 Mrs.:0.014347228601803971 for:0.013820536815200644 said:0.01367313837697182 was:0.013352114914658585 on:0.01314291001814074 Mr.:0.013065671132143141 .:0.012861566227777326 be:0.012793360022054813 that:0.011160994888340471 with:0.010633086283221259 is:0.010512929477829737 :0.4444512640305048 +sum:0.03352282876311118 number:0.028116684882597106 line:0.019995206059833036 city:0.01946514558931857 out:0.019275318828420953 day:0.01666865340772654 county:0.014872697538657208 amount:0.013254184849875051 Board:0.01252325449624941 town:0.012449555905674143 side:0.011663975251122375 part:0.011517157473718155 County:0.011460540331966697 state:0.011087331502382173 City:0.010878919191854432 purpose:0.01081028255427907 and:0.010297866493795984 way:0.009848747943663767 name:0.009522170936943183 :0.711769477998811 +a:0.3215951308091355 the:0.11393505863561355 very:0.1020589869209338 and:0.09087942614430833 most:0.03683446543255887 as:0.028103401403756435 some:0.02738924747053241 his:0.023858715982767283 one:0.023533786419779216 best:0.0211266606174661 A:0.019421510034146383 their:0.019336253165272127 many:0.018911242450292704 of:0.01499726341131884 The:0.012394918689148661 that:0.011862358922650557 its:0.011172084806865847 are:0.010832938429157238 no:0.01083069490457186 :0.0799258553497243 +of:0.48756765937828206 and:0.07603885575652654 the:0.062235772933402767 for:0.03334698402693462 in:0.02714607670842142 with:0.021957203324673092 to:0.019638785783706553 by:0.01011879139382959 The:0.009668618042983239 that:0.009103929802946324 abolish:0.009092862159921984 from:0.008113076075147066 ot:0.007728224561207973 ol:0.006379560238990424 In:0.005653634692855322 a:0.005586452589972832 great:0.0050574178279181444 or:0.004842741773680619 as:0.004370271473128034 :0.1853530814554714 +more:0.026558679592653327 made:0.016705996414185426 highest:0.01597015390958185 it:0.01489220249837718 time:0.01269885203010445 prompt:0.00972210642365321 large:0.009690166883537962 good:0.00942005060054043 men:0.00941333743742926 best:0.008909072309416144 and:0.008839353923739425 him:0.008716630847919309 them:0.008693875730200933 long:0.00855430647896826 life:0.008373980132581345 up:0.008039032782528823 strong:0.007927240995205474 active:0.007452238634363089 due:0.007108799833589684 :0.7913139225414244 +and:0.07731618165199221 of:0.07322963748995741 to:0.07219817346365437 the:0.0526206255579449 be:0.0438682886842987 was:0.03424963157986833 in:0.02596621115208611 for:0.02208950019255751 or:0.02142023217806833 are:0.020586725287510068 were:0.0202378007602818 is:0.019918752589135967 been:0.019554326311244537 re-:0.019404948534900716 that:0.018279292804451973 which:0.017985888689130033 a:0.017790109766574146 he:0.017487262056020626 I:0.016674857606746755 :0.38812155364357553 +and:0.09028170801185494 be:0.07822087956359496 was:0.0604322494376946 to:0.03875799823221426 been:0.03781583825357645 is:0.03554424767192397 of:0.034961410324985946 he:0.030725180805022397 were:0.02766787033135484 had:0.02522919821496135 the:0.025062736946777315 have:0.024744631581598685 are:0.02273367617647766 has:0.02153903863415162 which:0.020121609097888116 who:0.018038493709098425 I:0.01645201523010846 so:0.016103804784538968 con-:0.01599519306445885 :0.35857221992771815 +of:0.11872867222751884 in:0.07290951340995491 to:0.04319428082866954 with:0.03662459873008454 on:0.03253236695373369 by:0.030174480975536686 from:0.027285063281096915 and:0.02199451331561365 upon:0.01691618721243304 for:0.016620979224610612 at:0.01599537194664067 In:0.012889918104307965 under:0.00971926658274601 through:0.008410779127205253 that:0.008162263499682968 one:0.005518904154280759 into:0.004940998371031913 during:0.004496057350773057 after:0.004391780579395326 :0.5074940041246837 +that:0.16832451653748762 and:0.16317551195275604 but:0.09202228048090219 as:0.06626898981545905 which:0.05056182452516285 if:0.034268175887251145 when:0.0327999336955599 where:0.02391654490512962 But:0.021638226096886436 because:0.020516735853829505 of:0.017875962661562897 And:0.017367123587138943 for:0.01715484095146282 If:0.016077584172624653 what:0.011042818726600803 though:0.010176208114312196 until:0.009969674033922531 while:0.008769541776912644 think:0.008148981878890557 :0.20892452434614764 +the:0.807976161204718 The:0.05109771641882213 tho:0.027243982194153093 this:0.016563721988520706 a:0.010890849658367499 and:0.01056843026994289 said:0.009900918799381094 tbe:0.009053840459685531 next:0.004346558577806352 first:0.003664942291186569 last:0.0036380745003347977 of:0.0030096091360105803 com-:0.0029518354968322796 an:0.002096875928656525 that:0.0018359011966051038 on:0.0017519219627813339 his:0.001676514907385433 o'clock:0.001578258335055419 early:0.001436886264807724 :0.027717000408946896 +and:0.11045309562644794 of:0.06692104876226734 that:0.0640806966871709 to:0.04013676456119499 which:0.03979249971196515 when:0.02963972388752449 as:0.023823591075946476 the:0.02355195623998461 but:0.018461099728288473 I:0.017492206912169822 much:0.015064399481135152 so:0.014917716155657434 if:0.014618451756566302 will:0.01425758603683502 all:0.012620485960721007 not:0.01182965223313283 it:0.011806722019707479 time:0.011502825741065432 said:0.010607622112521312 :0.4474218553096978 +due:0.08362822544324869 hundred:0.02199199738321992 more:0.016629886258300645 time:0.015850168727218783 it,:0.010399410481501609 work:0.010154910006280115 dollars:0.009969148656896298 it:0.009801261598809537 them,:0.009758792025635777 men:0.00918691844295465 him:0.008999278778214194 costs:0.008980054046110873 up:0.008843116043401943 money:0.008091063728973228 years,:0.007784833144809498 ;:0.007609056427790694 them:0.007443021061822381 man:0.00737402923515237 and:0.0073323927857255064 :0.7291724357239332 +board:0.0620660945380733 number:0.06094164149638601 out:0.04517804607046194 line:0.04075317661219963 matter:0.03715202670809399 amount:0.03387618605378994 system:0.03064066349511015 right:0.026331759328600435 state:0.026047275842751686 kind:0.025269821026413865 power:0.024190218173975257 piece:0.02397720977362706 means:0.0210161004072232 one:0.020634859953109513 cost:0.020083176780417607 tion:0.020026569454195158 Secretary:0.01954098700547056 people:0.01828453673697175 full:0.018122838605353703 :0.42486681193777526 +the:0.20846007290322993 of:0.12644271677800645 and:0.09323299706229309 a:0.06272561160723762 in:0.03647533611191475 to:0.03156090744808719 with:0.02030551640547948 The:0.020216533572923173 for:0.016158392151910856 tho:0.01332133823295365 by:0.013217603606825832 .:0.013216901508312916 or:0.011650146360650489 an:0.01119604826866576 his:0.010364645182435446 :0.010036483650849444 on:0.008193329141550215 this:0.008137986955834056 at:0.008071324504486046 :0.2760161085463536 +he:0.12976820625117658 who:0.09221886342062384 which:0.08202145445505479 they:0.06808463273766263 it:0.06300140281566258 that:0.0536651199481747 I:0.04355172570140108 there:0.03694176174144522 she:0.03568475182996337 It:0.03445956439681276 and:0.03146500019799679 He:0.03013662272772511 have:0.01649641755291053 has:0.014869129143777082 we:0.01270748492222897 She:0.010037042499654298 had:0.010034468298945191 They:0.009824977349933048 ho:0.009403905633941782 :0.21462746837490962 +to:0.14189393590180194 will:0.05739228135466825 t:0.05453314980602502 that:0.041843043017140265 would:0.03909264579669568 and:0.03883550485435748 I:0.03009182294498684 may:0.02609491598813315 which:0.020695165253699622 should:0.01977656238993678 shall:0.017907350947676072 not:0.014989936622492093 can:0.014921005933167681 1:0.01482737719229919 :0.012846870964661042 must:0.012781991865814649 when:0.012334037662333649 this:0.012312090622223729 could:0.010861447327209851 :0.40496886355467704 +and:0.10005387220568385 the:0.07567941236881662 of:0.05757696215515524 was:0.050535974743738714 is:0.03609504000540355 be:0.03591338813173948 to:0.033691049231433054 a:0.01910362374622374 he:0.01896593357606133 are:0.01881872549916086 or:0.01791533600468581 for:0.016739916366786633 were:0.016044385202937068 that:0.015688420804489282 it:0.015525440765732423 said:0.014926607017819185 not:0.01238109499999018 been:0.01215870940794286 his:0.012076889948107902 :0.41910921781809224 +the:0.5064314211384559 of:0.06757841107938177 our:0.03248467028692255 American:0.03124453765884902 to:0.02438683060836556 and:0.023703942423263527 his:0.02077144030341308 for:0.018833660119221326 by:0.01877449046949715 tho:0.018715086585584493 many:0.013435674359945053 their:0.013030768505165819 young:0.01253197923221508 The:0.010997793714775411 these:0.010892474041351137 colored:0.01051588827767327 other:0.010318242385431095 white:0.009906013113691837 tbe:0.009425756475905276 :0.13502091922089166 +and:0.1897887342607172 is:0.10151332592893744 that:0.07649489388174546 or:0.05732980423303791 as:0.055570824017998816 if:0.04121888924024033 Is:0.03992074869677223 was:0.034169590176486575 but:0.03230164843738289 not:0.025691459526180283 than:0.025277373134419277 If:0.019663355287562436 be:0.016531269902038397 And:0.016301128778827837 for:0.015196509343533822 are:0.015191123248177583 with:0.013181587471541462 to:0.012410258972934568 it:0.011933589030816264 :0.1993138864306492 +one:0.015552536992080472 more:0.014252271697624306 on:0.010631301787611593 day:0.010222750824534239 two:0.010216157614982159 person:0.007504694644314241 in:0.007364820929323563 man:0.007179188731169107 law:0.006205362369136604 action:0.006166303509128973 and:0.005659786788634644 city:0.005177234665142273 three:0.005130416479837977 State:0.0047265097104810415 to:0.004696031397422901 ten:0.004594585978494318 of:0.004463781172886088 town:0.004231879326219736 year:0.0040256313925199315 :0.8609987539884558 +the:0.4693388013909893 and:0.05777387179325134 The:0.046453899216587956 tho:0.03643230518542828 a:0.03456012456297689 of:0.02941549407953761 two:0.022833133993159265 all:0.021901876892919704 or:0.021698292989233245 other:0.02155140525513862 by:0.01615869093776753 tbe:0.01399450878367059 for:0.013185503490727361 an:0.012640687911439196 many:0.012393960066429703 three:0.01182526018508801 various:0.009672578825924788 great:0.00951059816051718 several:0.009045705913233433 :0.1286133003659799 +the:0.10456488170523487 to:0.09846492171903967 and:0.07649211810071999 of:0.07087212484339483 in:0.034846797517479274 not:0.021272872542601063 I:0.01841917191863314 a:0.017911320755875197 or:0.01777126737638835 In:0.014992706580492067 for:0.014837601873880248 Mr.:0.014712850283868123 by:0.013844809552893524 that:0.013640559191404637 have:0.013281269265977854 :0.013175023811107751 it:0.01089960705820366 their:0.009860323084727476 who:0.009769408621220397 :0.4093703641968579 +of:0.20289353620654985 to:0.14196100778820073 in:0.11950647438967812 on:0.053622965502827226 and:0.04342523968874746 from:0.042610078474643036 that:0.04238372475377897 at:0.0407386183047941 by:0.030860673686313258 with:0.026025145667466432 In:0.02543075559024374 for:0.02132542858172949 was:0.016395795771441186 is:0.015149636983955399 into:0.015126941189371424 about:0.012781156292306762 upon:0.012523754828404503 over:0.01170287702881104 all:0.01119922871127672 :0.11333696055946055 +the:0.2063387764965707 of:0.1177803249962526 and:0.07520772614900774 a:0.05836530939998425 to:0.0453974397943925 at:0.03836702667018479 in:0.03145058068817038 for:0.0165370183770595 or:0.016325737730152157 by:0.015614769071448929 The:0.0147555692758435 tho:0.012235885003038707 an:0.011969341202129682 with:0.010888238652704246 from:0.010861023332717601 on:0.010363498011094258 all:0.009014594497438697 :0.008470674142517327 In:0.007215717151436778 :0.2818407493578557 +I:0.1867097391594248 he:0.17106452887058773 they:0.08171811572383467 it:0.05610352253184143 she:0.049059417813668925 we:0.040732290273341326 and:0.040381509497099836 who:0.03019230969548144 that:0.02905852147715712 He:0.025326105707521123 It:0.018971234092733682 which:0.017949229040996093 1:0.017297499162627347 one:0.015406786783628997 you:0.013976998894554343 ho:0.01275176974658499 We:0.011495197899021698 but:0.01003721156795429 be:0.009841126046215197 :0.16092688601572497 +it:0.12429869106039677 that:0.09678435709713536 there:0.08529435051722721 which:0.07210712961479024 they:0.06332936993729434 It:0.049888415821910975 he:0.04168017422385555 and:0.037383975030706444 There:0.02594395923751264 what:0.025582991309687896 one:0.023942067265387425 as:0.023005743009060758 you:0.02276527986613408 I:0.018301996633386393 this:0.018229091238523065 who:0.017226422865103896 we:0.01718954736209074 man:0.016876133115589217 nothing:0.01226960605280007 :0.20690069874140696 +the:0.13476476805868978 of:0.10335620763565354 and:0.07298982432450123 a:0.05493260493485237 to:0.03943912225916912 be:0.027111183577981188 was:0.024964516309082224 is:0.021318618791884996 in:0.01997329939240196 or:0.017463858114689805 his:0.016747288852367714 their:0.014456994452191905 been:0.014017672545055988 at:0.013647384018866159 are:0.013377045933421108 an:0.011360803488482838 for:0.011045703440883426 :0.009853875281147081 as:0.009770129219928711 :0.3684090993687488 +of:0.09129790931378902 the:0.07369883040827747 and:0.047842263382354346 in:0.04189055351593407 to:0.04045875475680249 a:0.03542341257202578 be:0.02020462051672066 for:0.01979292654746225 was:0.01760256398103379 at:0.017380150555488715 is:0.014984483003968216 with:0.014047653760730413 by:0.01374644383819499 :0.012670486581795598 In:0.01200961464556976 or:0.011563835749786333 from:0.011391516893522809 are:0.011273104484969465 that:0.010755276030689069 :0.4809655994608848 +of:0.12932096863775697 to:0.08917738445288814 the:0.08081855138291491 and:0.05417563026264472 a:0.04182715373837509 in:0.03892153865154462 that:0.02249453515012691 by:0.02062179636976114 with:0.02038625367605544 at:0.020325350106999263 for:0.016926670606995695 from:0.016902418249165486 or:0.012953074202594703 :0.012165099279481745 in-:0.011536182380618562 as:0.011088978471954503 which:0.01018699113984831 an:0.01017610401048893 In:0.009448174933257399 :0.36954714429652746 +of:0.2397551090276105 the:0.16300291044780263 a:0.08000537375485528 Of:0.07719327763051527 this:0.07549093457124852 The:0.049437283574562875 that:0.04086314407665316 his:0.03928000005813882 This:0.02707081187516617 His:0.019970661748737618 my:0.016917959586075216 in:0.01617902632538605 our:0.012213437038084375 her:0.009115614456484017 tho:0.009102720322786499 no:0.00857756698194808 their:0.008512794912041195 whose:0.008262614332096626 its:0.00823508447959518 :0.08981367480021192 +they:0.13279671938190088 there:0.11070141418810081 which:0.054410462347239466 who:0.05087692164817567 and:0.04646237163265018 it:0.039346857755606736 that:0.031066593234678024 There:0.029665145706161158 we:0.02838663260091203 They:0.027299945334635364 men:0.019649007352134457 It:0.014272960758561196 them:0.010501046043022811 you:0.00899763341851497 but:0.007408153608369565 he:0.007277692337925474 We:0.006842854709133803 people:0.006412121392042137 others:0.005761929111122937 :0.3608635374391123 +and:0.09631219532671687 was:0.03513566928966104 held:0.02987715681559008 Beginning:0.024332169066967536 is:0.023122938489353394 look:0.022074108253454683 arrived:0.021820518428646088 that:0.021226918252779888 interest:0.02006974641058921 thereon:0.01971421054267379 made:0.019401567074562896 are:0.019271449916013022 up:0.01806602795372081 him:0.01678700722897829 be:0.016375054451444982 but:0.01586396852970274 out:0.015503094089883073 or:0.013721423267833084 not:0.012734170433403743 :0.5375906061780248 +of:0.28571508084274183 in:0.09668204067210986 to:0.07874298396781138 and:0.07234703289229406 that:0.052575431781950926 with:0.04605064583598294 for:0.04589227695351991 by:0.039032478590087974 from:0.029520424708088227 is:0.02575291204529591 on:0.022845459154702957 In:0.022203170895305383 all:0.021718924061764327 was:0.014491053033084692 at:0.011537989298047186 upon:0.011127902091260477 as:0.010143577541686419 but:0.009984944120043462 into:0.009293333603003986 :0.0933423379112181 +the:0.6241229961277651 a:0.06722923359588301 of:0.06221713478886212 The:0.038691643303803334 tho:0.032506769922429984 civil:0.028949047938270158 this:0.027045036191092758 that:0.010829156740418002 for:0.010793743695127565 tbe:0.00980112765540024 to:0.009356132693343346 by:0.007449044659131139 in:0.006708993940972618 their:0.005749465291693296 our:0.005655552864069548 and:0.005408545511477694 his:0.005012544760840391 other:0.0043225098060760405 its:0.004194877085350782 :0.03295644342799278 +and:0.051654636516201016 made:0.051015454799921624 or:0.024674408513783483 that:0.016062835335927065 him:0.01565924413931051 followed:0.01563124550437536 owned:0.015583321950137187 ed:0.014866750499448756 accompanied:0.014614648987466283 it:0.013626457525371337 taken:0.013108391888807197 them:0.012651103019890095 caused:0.011867361447385745 up:0.011657883035474385 done:0.011150870541727875 only:0.010691704012969913 given:0.010651579286736641 occupied:0.010536480438065907 secured:0.01016848645023085 :0.6631271361067688 +number:0.17597338563806297 couple:0.10928003177793719 millions:0.04753171169809403 amount:0.04491053428779571 bushels:0.042402275213584736 rate:0.04154732575467019 thousands:0.03390754804412635 sum:0.029098383203740388 period:0.025732136776970647 cost:0.022568573750099838 out:0.021512432104528863 instead:0.020960890139978157 payment:0.020814546440395324 hundreds:0.02062996666792956 pounds:0.01867036953269366 series:0.016063167713170096 day:0.01477474667154415 half:0.014417496565705906 costs:0.013719245031656646 :0.2644852329873156 +and:0.09694081435015714 filled:0.03914049425398599 together:0.03514528250513496 covered:0.024329920971007696 but:0.021171155341880406 that:0.019186106927026363 war:0.01892006088111954 charged:0.018122678595958768 do:0.017322858530125065 accordance:0.01698797055748901 supplied:0.01667867537772167 up:0.016118527725504896 loaded:0.014928180193239278 connection:0.014913583181099673 connected:0.014418015634051306 identical:0.01421507234512801 met:0.01356703340766281 it:0.01344909854484493 him:0.012522163287118486 :0.560922307389744 +and:0.07658246724421394 the:0.07226240595841342 of:0.071761403375914 in:0.05845346973045459 to:0.05021937442426528 a:0.0371188684282977 on:0.03236231771185885 for:0.02173112519721334 his:0.01802994098273866 In:0.017410511186206803 an:0.01678136004318206 that:0.015020251032851605 as:0.013534441018743647 was:0.01300000342681991 be:0.01283580998186585 with:0.012625725748197276 their:0.012375458002809264 her:0.01095461558188494 or:0.009719627011478753 :0.4262208239125901 +the:0.16807735899698817 of:0.10541662057906837 and:0.05138367848570702 a:0.04141865232648221 to:0.0385989743764065 in:0.026264864977736738 was:0.019530675665220657 his:0.018900421021236905 be:0.017373825006196972 their:0.015767721170721456 for:0.01557246589796783 with:0.014071419046630446 is:0.012922913111931644 at:0.012690452250034052 are:0.010702713108721902 .:0.010158075558988393 Mr.:0.009672788574483367 tho:0.009612591781990074 were:0.009549306361446321 :0.391314481702041 +is:0.1300949053123692 ought:0.06235942008217411 are:0.06072445398663133 seems:0.05697318922100556 was:0.04954471475520722 not:0.048536362204045544 said:0.03881623685409472 seemed:0.03220746110521765 as:0.030923473227594384 it:0.030881869856406088 claimed:0.028226689520969073 have:0.027725540143517465 and:0.027557757709861613 likely:0.02587900806524851 seem:0.02574969309575762 supposed:0.023317446089120043 had:0.02145961764731352 Is:0.017651730366473797 proved:0.01677680343414685 :0.24359362732284573 +a:0.2417793991733574 the:0.15268234528846075 is:0.10752228102284919 was:0.07294477053077342 not:0.060666906212901765 are:0.05370991837948057 be:0.03687864302825316 and:0.027545228564739784 been:0.022393536210670605 were:0.02204549536947744 of:0.021796937893926026 The:0.015225752130151418 Is:0.013214823597103976 for:0.009947308930711028 A:0.009576630434832813 some:0.00863299701253816 that:0.008612248826992857 or:0.008579991772299999 but:0.008109391954356912 :0.09713539366612271 +for:0.38944352880810273 of:0.1629980072516592 For:0.06158676436242239 at:0.05507191583826106 in:0.05462537202142586 that:0.05448192327257129 to:0.047298384400460594 and:0.028829495586152706 In:0.01765195703534156 by:0.013520877555320469 but:0.009386092684527319 At:0.00888518429817503 with:0.008644350483792187 during:0.00835348160820815 under:0.0068295751528629385 lor:0.006520614854263673 from:0.006346592945806103 until:0.006308007615805237 as:0.005658032194126023 :0.046559842030715455 +the:0.20480919480437326 and:0.10544070859725634 of:0.07766847847497584 an:0.06908212951037458 with:0.03886559218840505 impurities:0.03197366851850354 by:0.02726832172944289 or:0.0257061027708505 for:0.024705126708996803 to:0.023446173974253758 in:0.01955274631676208 a:0.016930857446009223 without:0.015650659974600464 tho:0.014249729226715597 any:0.014067921044133097 such:0.013037550765948473 no:0.013004560220534514 The:0.012629391610510755 are:0.009615414886121502 :0.24129567123123172 +the:0.2644856461832656 not:0.2484077516606077 is:0.060165708064627434 The:0.043850476908261084 was:0.04344374359164794 had:0.03805903670761637 have:0.03635289798011182 and:0.03598898870891186 has:0.03225765421160987 are:0.025816020345239214 can:0.013264917315150294 of:0.012404630415654221 tho:0.010598708557118072 with:0.010339212969678355 could:0.010057755651867837 were:0.010030546521236793 be:0.009844383754573787 that:0.009321292851542208 to:0.008670673966656156 :0.07563995363462342 +of:0.09129790931378902 the:0.07369883040827747 and:0.047842263382354346 in:0.04189055351593407 to:0.04045875475680249 a:0.03542341257202578 be:0.02020462051672066 for:0.01979292654746225 was:0.01760256398103379 at:0.017380150555488715 is:0.014984483003968216 with:0.014047653760730413 by:0.01374644383819499 :0.012670486581795598 In:0.01200961464556976 or:0.011563835749786333 from:0.011391516893522809 are:0.011273104484969465 that:0.010755276030689069 :0.4809655994608848 +of:0.14302282511514094 and:0.09854073475961779 to:0.07592459651763353 the:0.06829074773131222 by:0.06638905469050689 in:0.03587053914058529 that:0.02920803619416181 at:0.026092834033886694 :0.023773079833961937 as:0.021155435241347016 from:0.01883430581790138 before:0.016330353160906242 which:0.015447768661343557 on:0.013651921141958324 with:0.012865445241726576 for:0.012752569951185242 In:0.011087941676083709 The:0.008664288490253273 said:0.008164888802197826 :0.2929326337982897 +the:0.16273551817967483 of:0.09500700187192358 and:0.085733672396898 a:0.04848804378946327 be:0.03752554745366934 is:0.03314272572079881 are:0.030345435726857044 was:0.02589211317430826 to:0.023032496605701523 that:0.018344777577397064 The:0.018018022350797636 it:0.017709980014594853 as:0.017591451418341102 or:0.016298014063594213 been:0.014512124426925668 he:0.013508896271104473 It:0.013240992543258752 Mr.:0.01273268937847573 were:0.012399747270181881 :0.30274074976603393 +according:0.061122336575544195 went:0.05867582304384207 and:0.049746427775586466 sent:0.04709277408416701 as:0.034640087330548276 made:0.026962617222739668 go:0.026482208894155958 up:0.023800371018220027 subject:0.02234476008083272 way:0.022068200686933492 relating:0.0214118995382168 back:0.018689386261221783 conveyed:0.01860803721348795 given:0.018454805775950624 feet:0.01672239333962436 them:0.01555109617494505 came:0.01508227380058149 right:0.014830633681931054 one:0.014666976815418372 :0.47204689068605266 +the:0.151564299052826 of:0.09038750472184202 a:0.07461608498201407 and:0.0466615732099648 or:0.03708629888768566 to:0.035569645185394266 in:0.030052392055566975 any:0.021357004017533987 be:0.017082462262097576 no:0.015583554621420614 for:0.01514666947239845 with:0.014723578456062631 by:0.012787654001396713 said:0.012726164481980391 such:0.011693957670550037 tho:0.01002305994460469 their:0.010002787499567302 at:0.00923663004776501 is:0.008936804169325014 :0.37376187526000376 +away:0.05746860598250849 and:0.04985561698690421 taken:0.03950823995165392 miles:0.0355312759828073 feet:0.031845900191456514 come:0.022313957473317422 them:0.021637161013586904 out:0.020621546731341717 came:0.02000539576637417 up:0.019820502682224503 him:0.019195504147748815 received:0.019046714556510396 far:0.018152378296247898 removed:0.017489734983720518 down:0.017467467859455896 it:0.015386533775439217 years:0.01424855034507225 annum:0.014237643714946796 free:0.014107989586278378 :0.5310592799724048 +and:0.03387651930837682 of:0.02635965971349306 :0.024807402694940563 the:0.021235788686687865 -:0.021144517536137084 1:0.016583587174015615 by:0.016013402174706252 I:0.014956582729786044 in:0.013859773991366446 In-:0.013369673129062846 ex-:0.012709531205509161 to:0.011369132358900235 Miss:0.0110247857586789 .:0.010869611802070979 J:0.010195992944698817 in-:0.010029407358982228 Mrs.:0.008346110650357575 W:0.007624824380075595 H:0.007300168004937475 :0.7073235283972165 +be:0.2703905958066641 was:0.1825190633794934 been:0.11096643671888161 were:0.06509372786141827 is:0.057099238281784113 are:0.04184529008275387 being:0.03630682447256296 and:0.024627841955003112 have:0.01806308482611967 has:0.01726271955043243 had:0.016800582318467844 he:0.016524791313150794 bo:0.014018862105691263 Is:0.012229702787387838 I:0.007373479984721961 case:0.005644521748565883 hereby:0.005322764378833766 mortgage:0.004583708370913843 He:0.003876872982300784 :0.08844989107485249 +it:0.16558174341344517 It:0.07846395477223078 there:0.068926656508768 they:0.05354081626270712 that:0.04867727640265432 which:0.04505196720686623 he:0.0439264118286433 and:0.04292049757801078 I:0.03259451855648658 we:0.022714282810773655 you:0.017312799630666443 There:0.014753102337007622 she:0.012061733113950288 who:0.011822775785340672 what:0.010328641715673107 law:0.009760151038589949 States:0.009676543902658263 man:0.009568256342280966 men:0.009031003643309513 :0.29228686714993724 +to:0.10451368485178257 and:0.09797210459365063 the:0.09270426917220155 of:0.0740857286156522 in:0.02383465291433593 a:0.020600874645564173 not:0.02046243433642876 or:0.019691208933002472 for:0.017867149633044477 I:0.017807750127446235 that:0.017754060222663785 which:0.016356710549325314 have:0.015836236488889193 by:0.015335573184271376 it:0.013324166901470716 will:0.013014653214508766 who:0.012395341151347517 :0.012387941490614745 they:0.011474164729899374 :0.3815812942439002 +to:0.19592047347263217 and:0.16619251619562464 the:0.06684004143107272 was:0.0664584592084416 be:0.043826667698655966 were:0.032204679730773865 votes:0.02645191303256124 been:0.025812099400683675 I:0.02274337988059491 had:0.02127319252717112 have:0.02096565356159873 not:0.01902244856691135 in:0.01876168738870872 of:0.017057221147003754 1:0.014860103700951071 is:0.01481571969107158 are:0.012704851964981475 minutes:0.011995427087072675 a:0.011875515383169227 :0.18921794893031954 +;:0.01964483402730256 him,:0.014839433149956605 it,:0.013395892647076886 them,:0.012121749120732609 in:0.011669841253312153 him:0.008957815060177073 up:0.008546506048385152 time,:0.006878525471118046 time:0.006487302575546378 as:0.006268764847476422 them:0.006036580256236883 States,:0.00575024426765236 and:0.005650889313891675 it:0.00564344662568956 years,:0.0049983767660662605 up,:0.0047938443226878055 day,:0.004775389604831996 ,:0.004708881371576482 people,:0.0046655482821314435 :0.8431661349881517 +and:0.11617127719432518 of:0.08123893058800163 the:0.07028137300750925 to:0.03665559219825226 is:0.02965386398557278 in:0.02931687628044905 was:0.02354768737616517 with:0.02339021261008659 be:0.022509951433790133 for:0.021709051871836246 it:0.019620147134231224 a:0.015723132667015482 by:0.015399137180885567 as:0.014739563369996597 are:0.014671031844770395 It:0.014517968817227948 his:0.013905366791933138 that:0.013418444775678029 or:0.01256592517288897 :0.4099644656993844 +I:0.07246604065089804 who:0.07047659878075964 and:0.06952378957528552 it:0.0645872058209361 we:0.060349160008096606 he:0.05444731736216817 they:0.04402975051074425 which:0.03293846696208736 It:0.03281691552410805 or:0.020477174952757967 that:0.017659920756964882 person:0.01488695826292231 as:0.01440455245834067 We:0.012331827188348198 State:0.01231304913967978 you:0.012287283524014139 same:0.011599748925251646 1:0.010863598243653568 He:0.010760479138239673 :0.35978016221474346 +the:0.32976559914956766 little:0.11669987135686292 a:0.10870628372316167 young:0.059318080618372224 and:0.037126279167331584 his:0.024239373618705276 The:0.023289804049806528 her:0.020225596918724012 old:0.014937461232799614 tho:0.01225619536648578 an:0.01110033557137335 one:0.009632060346610542 poor:0.006534370540479101 their:0.006319243513875942 great:0.005759817037606718 white:0.0055905692862266475 A:0.0054348443199959354 any:0.00491269158563007 servant:0.00487285471935816 :0.19227866787702624 +of:0.23948305062293926 in:0.17431372591343464 from:0.13547460617100412 at:0.12982100816722564 to:0.05772619087516675 the:0.046542994698237514 In:0.04167909645287606 and:0.023570360057079312 for:0.011544150312068627 on:0.01073067000463013 with:0.00940441424409151 that:0.006557510210826088 From:0.006442988126159214 ot:0.004976119684135241 :0.004801399088948607 by:0.004577621866199661 ol:0.004131767598330147 which:0.003961595644267624 ap-:0.003950224981647739 :0.07931050528073212 +to:0.12022893700269083 and:0.09020394424291768 the:0.08587503820055309 of:0.06450042443224316 in:0.0310058468700829 a:0.017742048521183405 :0.015548046036689871 not:0.01491307651316237 that:0.014112408707955496 for:0.013734482372212283 I:0.013065769926808477 will:0.012848502316304782 at:0.012837991177321897 In:0.012628718855091186 by:0.012491091048660757 be:0.011425930130217754 is:0.0113962101007567 he:0.011342727513475473 or:0.01112522537451577 :0.4219735806571561 +of:0.14887566084850123 the:0.13012219852758639 to:0.07651419335018064 in:0.06004175795946199 and:0.04901370447470396 a:0.046587539365578544 at:0.038757375695153765 on:0.03626392327061768 by:0.03367652394994556 that:0.021074902091120083 for:0.020789833768946293 with:0.019595297467673082 from:0.018485735156394817 :0.016745863584592492 as:0.013692483066238666 The:0.013346029658415708 In:0.013100445072797468 upon:0.011534054602280781 or:0.011313258749617701 :0.21946921934019314 +the:0.24482305627496473 this:0.04704018632890197 a:0.04153105000872151 his:0.03133274338085872 county:0.01944304684561857 one:0.01627894864379101 of:0.014978751141073141 tho:0.014168838527400175 and:0.014007453212384545 that:0.013707878449460755 her:0.012920300327758169 our:0.012887778775303418 home:0.012728788231681836 city:0.011909819112391922 State:0.011403789993740102 York:0.011111748550441926 railroad:0.010654625675968782 said:0.010295744121009604 right:0.00973378966465903 :0.4380416627338701 +the:0.151564299052826 of:0.09038750472184202 a:0.07461608498201407 and:0.0466615732099648 or:0.03708629888768566 to:0.035569645185394266 in:0.030052392055566975 any:0.021357004017533987 be:0.017082462262097576 no:0.015583554621420614 for:0.01514666947239845 with:0.014723578456062631 by:0.012787654001396713 said:0.012726164481980391 such:0.011693957670550037 tho:0.01002305994460469 their:0.010002787499567302 at:0.00923663004776501 is:0.008936804169325014 :0.37376187526000376 +and:0.08995317707915026 to:0.06844710404109794 of:0.04605142056172993 the:0.04074574508561307 which:0.02479116931334353 that:0.023764822140213245 re-:0.020841117231308055 in:0.020803825395358622 for:0.020278423301550053 :0.018417753428486977 not:0.016860793136637672 con-:0.016444405871234195 is:0.014386481772210856 or:0.014080680914153714 be-:0.01352268143271276 I:0.01317002660943805 was:0.011429878269381662 dis-:0.011196807025842847 he:0.01113106290024311 :0.5026826244902934 +the:0.562947753883621 of:0.05334666777091498 The:0.047081009217013754 and:0.04223692294661465 this:0.030803519603915874 tho:0.026754981936375613 a:0.026134256219012046 that:0.022091241801975067 other:0.013636125652221052 said:0.012821193683241423 tbe:0.010408461594721771 our:0.007500988860493266 in:0.007291782440881058 for:0.0065928176891583215 every:0.006470850033350407 any:0.006091567851882565 County,:0.005522330786762252 by:0.005166629802717137 or:0.004881982799793561 :0.10121891542533432 +of:0.280928806110399 in:0.1416638599473174 to:0.0974891708419352 that:0.05918052949759172 as:0.04278235852282098 all:0.03463116199288306 and:0.032702048556834715 with:0.028549855428239804 for:0.027247586887200456 In:0.023930798589424176 by:0.02109750774892258 on:0.01888348024676646 which:0.01832952353940015 from:0.017579634593797515 upon:0.01732491095605637 over:0.009802068533913303 than:0.009434319055604904 make:0.008874904182979301 but:0.008391905167146156 :0.10017556960076679 +and:0.08995317707915026 to:0.06844710404109794 of:0.04605142056172993 the:0.04074574508561307 which:0.02479116931334353 that:0.023764822140213245 re-:0.020841117231308055 in:0.020803825395358622 for:0.020278423301550053 :0.018417753428486977 not:0.016860793136637672 con-:0.016444405871234195 is:0.014386481772210856 or:0.014080680914153714 be-:0.01352268143271276 I:0.01317002660943805 was:0.011429878269381662 dis-:0.011196807025842847 he:0.01113106290024311 :0.5026826244902934 +and:0.08488196060866449 be:0.07435141541281283 was:0.05724700044343967 is:0.05293860811041943 of:0.039392277832788945 been:0.032235729525893805 to:0.030428955362167463 in:0.02925209886943393 are:0.028874819416918295 the:0.02725393701428577 were:0.02404496351567767 not:0.02339298776666845 have:0.022320734992577557 as:0.02211092946875659 he:0.02043481458277785 or:0.01923072252236892 had:0.01919882511261532 it:0.018866838591802722 has:0.018232451436293172 :0.3543099294136371 +and:0.08992539879612474 that:0.0844453761959803 as:0.055650472056453786 of:0.05562031899468547 to:0.040555788419955316 make:0.037189996829352125 which:0.03536333746764052 but:0.029259896215369344 if:0.026590790296909906 for:0.02502570581741944 with:0.022268509380744997 when:0.02057623614723612 is:0.018606847607363967 on:0.017958315461135077 what:0.01736685272866561 have:0.015599623247670023 in:0.014393328574136822 Be:0.013801468720923782 by:0.013560337942586894 :0.36524139909964576 +and:0.14507320772351315 fact:0.08580533594336559 said:0.056464728489513914 so:0.05141663139801109 believe:0.03728868944610554 is:0.032697255055655516 say:0.030323479159427524 know:0.029749358812227955 found:0.025535190692382553 stated:0.021273605064562356 show:0.019511948220510757 but:0.018999393120383457 says:0.018814328565908398 think:0.016893655385130203 was:0.01658797795582863 all:0.01652317309060226 see:0.015409038245983688 opinion:0.015263158537430448 order:0.014744011681695817 :0.33062583341176116 +the:0.289117325648907 of:0.27463143024333636 and:0.07067753913545999 The:0.04008684656220585 to:0.03304566373586907 a:0.03211866278511319 for:0.026311788159116636 on:0.023913182304331208 tho:0.021650407693769236 with:0.017604720246303742 in:0.01699428853633309 their:0.014141420198917572 by:0.010673149648404082 or:0.009901838661764752 his:0.009777196343354168 its:0.007548710581332687 tbe:0.007411097099052357 from:0.005860533049490168 that:0.005727578090447599 :0.08180662127649121 +and:0.03831900212148041 the:0.035508655254552504 Mr.:0.027913209417548546 of:0.026212432501721932 Mrs.:0.024453642598273834 .:0.023020269209851122 :0.019361739978563428 said:0.013491562798455443 that:0.012460544137048012 a:0.0109843067051982 to:0.009608957493375267 Miss:0.008522349190561725 A:0.008444165272321837 at:0.008443190898795454 J.:0.007575272575348416 per:0.006894490380065676 Dr.:0.0067059616903112785 E:0.006355871613319259 H.:0.006318853811050452 :0.6984055223521572 +one:0.1028303141280697 part:0.05963429477052991 out:0.04766456937681193 some:0.031418679026461914 members:0.030764490253327767 side:0.029940657362655835 portion:0.022063658796890564 office:0.020457735219956013 member:0.019726706386316174 end:0.019666887540649894 tion:0.018667441728710307 parts:0.016814747270460957 people:0.014112771422418794 all:0.014072739582212475 any:0.013183573287639892 One:0.013083578354183906 that:0.013024335602903442 account:0.012482348155001894 many:0.012077825070275192 :0.48731264666452345 +the:0.10033176533165791 in:0.07859994026438044 his:0.06625008372406711 and:0.055210716577542264 their:0.045345995650840076 this:0.037856781875134825 an:0.03584274457018385 other:0.035152420108019194 my:0.033402432168608415 from:0.03327537292310745 public:0.03145736828411255 of:0.031262555297395536 In:0.026594624649989494 right:0.0225747339199359 its:0.021976804356274745 sufficient:0.021386742562934408 fair:0.01688619470779889 such:0.01680334463856993 all:0.01612845079723715 :0.27266092759220983 +was:0.16968468752054178 to:0.15012838881645127 and:0.14440002358052 be:0.08922158051420442 were:0.05814307587468386 been:0.04205361095868077 he:0.03589593668296408 then:0.0322747561154235 had:0.021818894267845796 I:0.020831443204549296 being:0.01836285155575532 will:0.017069572991601306 is:0.016843686463704127 are:0.014252681801213755 not:0.014148962834862132 they:0.0115016651178605 you:0.00923648201810787 has:0.009133384031000146 she:0.008643282960453573 :0.11535503268957648 +both:0.028066741044527867 them:0.017413132822188083 it:0.015922203274030558 the:0.015420692647659622 feet:0.015367511914299949 well:0.015013211997683934 men:0.014916956104452617 and:0.014271598104205436 up:0.013377844685120719 him:0.012593962832381463 all:0.011050804291529437 land:0.01071024457484357 work:0.010030457133664447 lots:0.009581854838243177 made:0.009581352283592874 of:0.009354697912613738 year:0.008671994097877667 :0.008552357739018327 tion:0.008333267816188141 :0.7507691138858783 +Mr.:0.2571071001082733 and:0.08570715487476027 the:0.057370181939080035 that:0.05307622672967247 of:0.02954949086224396 The:0.02774965949437616 Mrs.:0.018463227024842495 Miss:0.01546086802981486 Mr:0.01537156666330767 which:0.013817054154130605 .:0.013029228476911802 in:0.012859298467336489 to:0.012059793145887562 Dr.:0.011380722855596406 Senator:0.010955565047677304 but:0.009696995242151268 as:0.00958254467266559 by:0.009434595355772589 :0.009058405947883718 :0.32727032090761543 +is:0.06438245069837377 and:0.05361850071574061 ought:0.049114685144352375 as:0.04719306089004216 enough:0.03822014189879937 not:0.03653341178635819 have:0.030809390718073662 able:0.03024466133384536 order:0.029404468426605303 likely:0.029347109147875635 was:0.028036867359817447 had:0.02704533580067677 seemed:0.02625693035840693 necessary:0.0252368323955374 him:0.024095434247763847 seems:0.022565127532630708 them:0.02163350538078889 seem:0.021135782020771886 unable:0.019978340089670383 :0.3741479640538693 +the:0.4806179174196941 of:0.13677818877325845 our:0.04448815150422789 a:0.0296397043933721 federal:0.029370528142845874 tho:0.021407109033688403 in:0.018028390840121825 to:0.016359562555593368 States:0.015328138573994947 this:0.014072977779138001 national:0.013051072578583654 American:0.012872251738512261 general:0.010993933817707675 British:0.010368998980191668 The:0.010279155324752447 new:0.010195766807948902 and:0.009856737719713066 his:0.008993145276336673 their:0.008856961963164873 :0.09744130677715378 +the:0.33652425184675366 whose:0.1259856384970683 their:0.09953313686873005 his:0.06867694914470993 The:0.054444000749749595 of:0.025968715968883574 my:0.023835883324139554 its:0.02155797718284772 our:0.02052765136920227 these:0.0205116634362203 a:0.019423149142784035 all:0.016913817052317523 tho:0.01620926498309929 two:0.013648803983869466 other:0.013444088809284233 her:0.013160380750464948 and:0.012850718791142997 for:0.011677169005990857 to:0.011244920279239 :0.0728618188135027 +that:0.12877368706521958 and:0.10343811039022899 which:0.0800594611337696 when:0.0599498536653849 as:0.05365331218935483 to:0.05164919583107528 if:0.0270497931800979 will:0.026888923864509424 but:0.025383516994720454 where:0.02293792694881519 what:0.0207777038096785 t:0.019343962651763098 said:0.01729463067489876 would:0.015552874955014286 for:0.015152722422811573 whom:0.014651225618177431 before:0.011897529933941699 not:0.011235367786820124 If:0.010599156710423857 :0.2827110441732945 +the:0.10619960553275412 and:0.07715978262599572 of:0.056183325942959154 a:0.033465392601428424 was:0.028661526883684122 to:0.026955690244743764 be:0.026003543580618467 his:0.02341958648239658 Mr.:0.022469727176106662 I:0.022058350212497902 in:0.02084068517997442 is:0.01818403152893186 he:0.015042097206691828 :0.01471770665751212 at:0.013360364686712919 that:0.012691637694395613 this:0.011610318788421642 been:0.01132912411221009 for:0.011262012320608712 :0.4473854905413559 +the:0.37703629600755834 a:0.2518308454449173 of:0.06590413580303084 this:0.041914969038915985 The:0.038479362255768645 with:0.028365113917757496 A:0.02417339501528396 tho:0.018640704731515325 and:0.017875543347959332 that:0.016318774764606112 very:0.01609625410973275 our:0.013082429346346442 his:0.011687988995155042 in:0.010743740132676906 so:0.01067624221637652 two:0.009605617016026899 its:0.0075797300362583486 by:0.007211341144717052 for:0.006732262208113226 :0.025045254467283434 +the:0.39749834532651884 a:0.07520030034269234 and:0.05540858759821703 The:0.03273515726769502 tho:0.030061875542463562 of:0.020144331424922633 tbe:0.014929647509541684 in:0.014268129706664795 or:0.013333166761078447 .:0.013287381914101323 an:0.009000188755386574 to:0.00880680429595084 :0.007943763822197133 Mr.:0.00773879605474787 by:0.007328417831573476 as:0.005922572098978465 for:0.0047526933692942485 that:0.004736121968310169 on:0.004594595720579333 :0.2713091226890862 +forenoon:0.049087044927134296 one:0.042019344153293864 result:0.0336055679867043 out:0.03169101588596489 all:0.03057894228013225 part:0.025920718177052136 some:0.020557595967026145 much:0.020188718746588123 is:0.020067442692216105 and:0.0195693695424754 purpose:0.018716670926930787 end:0.017468906875066442 tion:0.016423147145874038 any:0.015344362963578974 people:0.01510289083778003 members:0.01419719265310436 that:0.013575689878939545 favor:0.013551061333859249 portion:0.012341263890554411 :0.5689930531357247 +be:0.1645249147097733 was:0.13006222407914303 been:0.07861750396106752 and:0.07150621588506632 is:0.051621171007992885 being:0.04081209755912487 were:0.038475222488054836 now:0.03091302953562437 are:0.020730862775157326 as:0.019879017026284185 he:0.01900571964045052 land:0.01730976657221393 formerly:0.01659254520577509 not:0.016479733763921263 or:0.012842853566807715 that:0.011789092167232859 property:0.010288877886681279 much:0.009675053655343784 bo:0.008894463308240513 :0.22897963520604442 +of:0.1330693742230083 in:0.11292795211673216 to:0.09348048045073995 and:0.08323767565527312 with:0.05678544442191675 for:0.04481948678423421 was:0.04069790664108211 by:0.03661315045287862 is:0.03597711475573808 at:0.03419370251868017 as:0.03408895012703352 that:0.026305627731976942 from:0.0222795136827982 In:0.02213828441850166 on:0.019196202543540805 be:0.018559871457209855 like:0.014190089623730445 but:0.014056724173537165 made:0.011339842401883427 :0.1450426058195045 +of:0.09129790931378902 the:0.07369883040827747 and:0.047842263382354346 in:0.04189055351593407 to:0.04045875475680249 a:0.03542341257202578 be:0.02020462051672066 for:0.01979292654746225 was:0.01760256398103379 at:0.017380150555488715 is:0.014984483003968216 with:0.014047653760730413 by:0.01374644383819499 :0.012670486581795598 In:0.01200961464556976 or:0.011563835749786333 from:0.011391516893522809 are:0.011273104484969465 that:0.010755276030689069 :0.4809655994608848 +of:0.28767355066866834 to:0.08775711267569858 in:0.08678131196995101 and:0.05160598694501188 on:0.04646139928102899 by:0.04519522654900943 for:0.044547789071328545 with:0.03396756772609607 that:0.033699232901107726 from:0.03075346596941143 at:0.027039283056790858 In:0.021061449543044047 as:0.017514234937992545 all:0.012543839382496166 upon:0.011844431150487573 is:0.00998972746569266 was:0.008814315973987914 into:0.008557199930727406 through:0.007781895704231326 :0.1254109790972375 +at-:0.31867581476288287 the:0.17298669833567332 at¬:0.07805236179100483 at­:0.04192600400060854 and:0.01800692979271164 to:0.014833880775328545 The:0.01024753575750605 tho:0.0095009971599608 of:0.009419449981185626 a:0.00907028032045869 or:0.00887811796712393 :0.008163033952065362 No:0.0064628574964056785 tbe:0.004924054753531611 an:0.004866780531345986 :0.004291016971756698 last:0.0035088303833194423 -:0.0027087788010793333 some:0.0026990073652522497 :0.2697775691007988 +the:0.594127691901768 The:0.060960024659309726 a:0.05180157250113618 and:0.037379723336092914 an:0.0365210439062196 tho:0.03612798672892993 in:0.025731379296480686 great:0.017890510642804128 of:0.01295045193669534 tbe:0.012850787110159767 no:0.012396619405706157 very:0.0070803837650564505 In:0.006581086508677754 with:0.00517549993342199 any:0.00500565052604264 high:0.004936177836816973 large:0.004713480563633755 full:0.003999297352042904 by:0.003966207043092696 :0.05880442504591238 +has:0.06895852181434249 and:0.060596849814956937 the:0.05094314520734195 had:0.04861674644223662 have:0.043589648195858914 of:0.033769557894709805 which:0.022880226640736908 to:0.021911334339974192 it:0.021649752022183572 a:0.020675618234569943 that:0.0194367649630637 who:0.01887003173875938 not:0.017131994955568903 as:0.01637585558200144 he:0.015786512600317156 It:0.015198198397665676 or:0.014392631884420548 I:0.012666384380324329 Mr.:0.01206342634173659 :0.46348679854923097 +the:0.06151819813649001 said:0.04722477643135453 Main:0.03490445925123939 Market:0.024111292264747706 High:0.02253590222854026 Third:0.02234336981029575 Wall:0.017270156576324077 Sixth:0.015486763330952936 Seventh:0.014494312237080594 and:0.014147635754446565 City:0.013839143722538647 Water:0.013378448056486442 West:0.012975944237374139 Franklin:0.012674495000391814 Pine:0.012531214282042203 King:0.012110887606340983 Front:0.012091760918477273 of:0.011428677516284819 .:0.011341609922962483 :0.6125909527156294 +the:0.10570324277927765 of:0.09670862750381767 to:0.055542971862515375 and:0.05006261118883713 at:0.040905631444732006 for:0.030632680879229518 in:0.02801402827281695 a:0.02168008172083021 from:0.013721966424508384 by:0.01134177308248356 :0.011279591178291573 more:0.011178908421968625 or:0.010928431625282339 be:0.010920514075248331 said:0.010593091261665346 was:0.01056606101235306 on:0.009765194163817601 about:0.009659977859315168 his:0.00951300796390242 :0.4502816072791071 +the:0.7757441708965568 The:0.03289469101473915 tho:0.03131782310790345 of:0.01747678029969514 their:0.014913951667000745 tbe:0.013730383768597015 his:0.013457022396612376 and:0.012298139365642079 our:0.012169533801507131 its:0.008545367818687304 for:0.006977776455519123 her:0.006731688020144714 a:0.006641640921169547 to:0.005181814193861657 great:0.004216280183082593 this:0.0040577858802132855 my:0.0033076989600356395 or:0.0028685622415685966 that:0.002590904807054443 :0.023877984200409173 +the:0.26274139847604017 of:0.16640812658517784 to:0.07564623056629649 in:0.05637132400455649 a:0.041299359572255626 on:0.030803069358770988 for:0.02781927307514298 his:0.024835544878838135 that:0.023783923291178254 their:0.023557980109751946 this:0.02045445686883412 tho:0.019502610812578963 said:0.019437524852227547 and:0.019432048423207622 by:0.017361553410132017 good:0.013519264310901039 In:0.01279498265044267 open:0.012386327137304648 public:0.010606005573972403 :0.12023899604239004 +one:0.015552536992080472 more:0.014252271697624306 on:0.010631301787611593 day:0.010222750824534239 two:0.010216157614982159 person:0.007504694644314241 in:0.007364820929323563 man:0.007179188731169107 law:0.006205362369136604 action:0.006166303509128973 and:0.005659786788634644 city:0.005177234665142273 three:0.005130416479837977 State:0.0047265097104810415 to:0.004696031397422901 ten:0.004594585978494318 of:0.004463781172886088 town:0.004231879326219736 year:0.0040256313925199315 :0.8609987539884558 +and:0.21000333250128073 that:0.14460006524644084 of:0.1314233023522708 to:0.041855737597833155 we:0.03118548567873227 but:0.03061212017214937 when:0.02899841082160588 for:0.027721771743303515 if:0.026292727409519837 which:0.024578376850160483 at:0.020093946757001303 where:0.018953053820347246 they:0.017424332889972773 do:0.017324572867459812 as:0.014043772004425328 We:0.013316899324972474 nearly:0.01263958772642781 in:0.012557535724915117 with:0.012260091027663941 :0.16311487748351733 +the:0.2595734068172519 of:0.09135947327144367 to:0.04765515763157753 in:0.045692978653480334 and:0.03754521682028506 a:0.027331664453886833 at:0.024028119144880074 by:0.0209173926348452 that:0.016040254757398 for:0.015856615638549156 tho:0.01479053079711643 The:0.014309425826361298 :0.01169151744187641 on:0.010188112769428954 In:0.010183969965321718 from:0.009709654251523179 or:0.008769570151371987 there:0.00845462356806795 as:0.00843963973567303 :0.31646267566966135 +the:0.25879178970598277 his:0.13141675037158682 of:0.07307512971041069 and:0.05622278004099272 their:0.04762881739596832 a:0.04718026390087472 her:0.04444371926465627 good:0.03148490876075674 our:0.028198000478941127 to:0.02748675421179738 my:0.022133236145821904 its:0.016652245516544626 tho:0.015858920321085667 one:0.013126095796196658 own:0.01271508630904528 The:0.012449223239497452 all:0.012318531604890312 or:0.012217604555904163 your:0.010672921809483498 :0.12492722085956287 +of:0.43845530874020056 in:0.11075864129417498 and:0.06475194834419003 as:0.04022658348308831 the:0.025370583805828642 to:0.021893081367670375 for:0.02095750155451368 on:0.01589734108555255 with:0.015747849683102704 In:0.015239441076549088 at:0.010907765942798407 about:0.007340797093904404 than:0.006366929331109805 from:0.006044817341004971 over:0.005198625960220945 ot:0.005044434067914836 that:0.005005222992067052 or:0.004919756986030891 by:0.004382966548800899 :0.1744904033012769 +of:0.1280990871142692 is:0.11660657108911543 was:0.0957041871977693 in:0.06844812512513018 with:0.06807837572000329 and:0.060812163850519706 to:0.05960758823398953 for:0.043519507107171264 as:0.04185255890738854 be:0.03632391651749366 by:0.03011100659491577 have:0.0241353674657678 had:0.02408387573220839 that:0.022515748478240775 been:0.016879432705642516 In:0.016834828953764258 made:0.016227822913443164 has:0.016219191698988125 Is:0.015103731557682238 :0.09783691303649689 +the:0.22052173904674707 of:0.11538277631709545 and:0.07600893695483417 a:0.07004925231740321 in:0.02032394001329095 to:0.017760541526728617 or:0.016321320631386877 The:0.016047378210588287 tho:0.014162478919836598 his:0.011851559038502319 their:0.010247726296522618 an:0.009976024422455008 all:0.009838815678283644 that:0.007981786074193685 other:0.007735324991191378 :0.007694646861427443 at:0.007393351766959102 by:0.007172496730326369 .:0.006850640354361914 :0.3456792638478653 +of:0.3016963475355822 and:0.11880312041784782 that:0.09912438804160191 all:0.05697251521619168 by:0.04812350986945087 to:0.035238498128778314 for:0.03266060880352848 with:0.028849518358643918 as:0.023499477179281157 in:0.022626103106095415 but:0.01828749453319047 when:0.018054794814683545 from:0.014603885843578886 which:0.014345656754719013 on:0.01339272586291633 among:0.012842475917022499 where:0.00894959682158892 than:0.008036679109335273 upon:0.007330899937654624 :0.11556170374830865 +the:0.5762040924108771 a:0.06961057380982788 his:0.05995118274953632 The:0.041349829824675714 tho:0.039463439148036156 our:0.01908482938750263 their:0.016142959088242075 tbe:0.012987645619427444 her:0.012922998167365349 any:0.01208154466037 old:0.011977600306714322 your:0.011551611197646736 my:0.010098909587315647 its:0.008449176006618998 this:0.007260979206251532 of:0.00724656649826921 one:0.00657279932966961 and:0.005874151135643919 every:0.005174436847308009 :0.06499467501870132 +as:0.06931392982974462 according:0.052071562389565784 up:0.0511867300210483 and:0.040371568633051955 went:0.03351644485287816 back:0.032358406609281 regard:0.03073407747799069 feet:0.02852138506231652 down:0.026379903432040268 owing:0.02466642634685871 due:0.023695193974505355 go:0.022910973192184297 reference:0.020802802907016128 came:0.019883741951819873 sent:0.019874244915639484 attention:0.019565955494145405 come:0.01885185084678811 given:0.018792390567602263 it:0.017366961307524745 :0.4281354501879983 +and:0.14507320772351315 fact:0.08580533594336559 said:0.056464728489513914 so:0.05141663139801109 believe:0.03728868944610554 is:0.032697255055655516 say:0.030323479159427524 know:0.029749358812227955 found:0.025535190692382553 stated:0.021273605064562356 show:0.019511948220510757 but:0.018999393120383457 says:0.018814328565908398 think:0.016893655385130203 was:0.01658797795582863 all:0.01652317309060226 see:0.015409038245983688 opinion:0.015263158537430448 order:0.014744011681695817 :0.33062583341176116 +chs.:0.1329293897441503 ft.:0.0417344313901515 and:0.035245019005218335 right:0.022929471130494695 went:0.022006541145975732 as:0.02116781960051895 order:0.020494192032730212 him:0.019175599722200846 made:0.01812690257401701 able:0.015250863574101619 go:0.014938374869543221 according:0.013650673549845041 came:0.013315476278381528 going:0.012772143357336199 them:0.012211867638434496 come:0.01150950609408524 time:0.011237692337449185 way:0.011132643994886513 up:0.011130066312902176 :0.5380413256475771 +together:0.05769760230548189 and:0.0457316947710137 filled:0.03433924030310766 charged:0.029861694745330538 up:0.0272276341067776 covered:0.022098844685702793 it:0.018208840331147627 him:0.01478813308934664 connected:0.014435118024459135 them:0.014430749544992546 accordance:0.014399242830129493 met:0.01389272476305645 connection:0.012646233229209089 down:0.0119278204305737 but:0.011595767359287865 supplied:0.011448596556129521 war:0.011276989099310094 compared:0.011213603384577622 one:0.010241392829170151 :0.6115380776111959 +:0.06791390242349667 .:0.018845870840834715 it.:0.01554702575607281 them.:0.015086573096238702 him.:0.007376312462509519 time.:0.006204115685297231 her.:0.005850304599460784 country.:0.005673228472264081 year.:0.004970534967780119 day.:0.004960055711553633 work.:0.004399154296260244 water.:0.004395227811707382 city.:0.004062514345741475 State.:0.003984029331519062 life.:0.0038686303363558213 night.:0.0038351252486824093 States.:0.003726550640040965 here.:0.0037135359734373147 house.:0.0036225647992597547 :0.8109647432014874 +one:0.1028303141280697 part:0.05963429477052991 out:0.04766456937681193 some:0.031418679026461914 members:0.030764490253327767 side:0.029940657362655835 portion:0.022063658796890564 office:0.020457735219956013 member:0.019726706386316174 end:0.019666887540649894 tion:0.018667441728710307 parts:0.016814747270460957 people:0.014112771422418794 all:0.014072739582212475 any:0.013183573287639892 One:0.013083578354183906 that:0.013024335602903442 account:0.012482348155001894 many:0.012077825070275192 :0.48731264666452345 +J:0.08320227827995882 and:0.07272733666898668 .:0.039025315281905996 to:0.033188093223535386 the:0.030953848482509604 :0.027746124490363417 W:0.024715933194881416 of:0.02382146800110182 as:0.02068440968055859 S:0.019640477082488936 1:0.018806119899944854 T:0.013707020705207322 A:0.013396222256600927 I:0.01250144223661065 John:0.011049328304470094 or:0.010982965867874736 C:0.010838116524802963 H:0.010367578551590612 E:0.00860571406622514 :0.5130402072003821 +the:0.07890630989222301 of:0.058084880944973105 and:0.05521960451327574 be:0.04853642257768507 to:0.04668301886664723 was:0.04146377436960755 is:0.030923848575864533 a:0.024207320225197882 are:0.02343718444419923 were:0.019152041012217777 for:0.018224597903154283 in:0.017839126071116627 been:0.014485280266630445 or:0.014390109974460464 on:0.014201150287173201 he:0.014110096034348476 re-:0.013880538140285689 will:0.012278570130174514 :0.012049840108048025 :0.44092628566271713 +the:0.2922654124459375 this:0.06717233650164159 that:0.0530954319034622 any:0.04285498621800241 in:0.033343597153614526 and:0.02966878330161776 of:0.029451685961092395 The:0.026948030378886892 tho:0.019372286800954236 In:0.019039305356301717 great:0.018473749030683096 an:0.0167821124764769 a:0.015545060184291666 little:0.01465070541142975 other:0.013906085744859787 our:0.013032984604073622 his:0.011722716356428459 their:0.010908773464639539 much:0.010683531767404829 :0.2600824249382011 +to:0.2864814456454894 will:0.23125988941443149 would:0.0808094635096246 shall:0.07439133625866448 may:0.057324239249254685 should:0.056322988727054345 not:0.040877965540366046 must:0.03703487687455494 can:0.03478875148478657 could:0.022754944834988237 cannot:0.01266774834067877 might:0.011253624282010833 and:0.004024192791574 it:0.0033872078292898947 never:0.0024335701725172578 also:0.0022675395916042893 probably:0.0021246956589234165 soon:0.0018606604815542668 they:0.0014656185181747183 :0.03546924079445776 +hundred:0.02334136986593815 up:0.005482494641173394 men:0.005366536521246011 Hundred:0.0047587970519216575 John:0.00441808156134956 William:0.004390720675819281 him:0.004016828614280843 ;:0.003997112205305733 due:0.003721199871732 in:0.0036582900032443304 time:0.003637206863828461 James:0.0035594902370151707 out:0.0034878448964120057 .:0.003467980723571515 1:0.0032804584819785204 day:0.0032444781513863933 ,:0.003058139385740603 :0.0030314555521939613 Robert:0.003005471634785646 :0.9060760430610768 +the:0.4071374189315913 and:0.06449181461132415 of:0.02892866618288876 in:0.028670005984162618 The:0.02603617389223924 tho:0.024993820467459137 a:0.023579040051412606 to:0.01755553213771617 on:0.014626070241060114 by:0.013447843485786471 or:0.012794166593089693 tbe:0.012024509152999897 :0.010353482361299817 that:0.009291482237329618 In:0.007938246807075932 from:0.007526799010378873 other:0.007469196869028889 all:0.006409533041696086 for:0.00626887758057738 :0.26945732036088327 +a:0.435706997302104 the:0.31231178212287586 feet:0.04223318975276896 tho:0.029388116763602604 inches:0.024316007267365755 The:0.022197798884734193 A:0.017668445140165155 of:0.013572303132996249 and:0.012016530198997717 tbe:0.007688239938670474 with:0.006632017466053645 on:0.006584744302265382 to:0.006569740923852521 all:0.0062992953520338 in:0.006296569017337381 very:0.005188453410424808 this:0.005028150052824904 his:0.0044881795451731515 that:0.004436921037847451 :0.03037651838790603 +be:0.1670792757071821 was:0.11959129736321852 and:0.09378390059175878 are:0.07089938855613388 been:0.06864567954442163 is:0.06520468423653533 were:0.06415002846002206 he:0.025274867581032166 well:0.023259310171061403 not:0.023074034595382646 being:0.022485877433475222 men:0.01925527256032164 now:0.016944204197026507 I:0.0161035448526891 Is:0.01476810022512361 ever:0.01415962038497479 have:0.013541072757525729 they:0.011745476715421862 bo:0.010814226085269649 :0.13822013798142338 +the:0.17027190784407714 of:0.10585557835912704 and:0.07355927771906935 to:0.05486905984958157 a:0.04543746377447453 in:0.03128555052933153 be:0.028704485173100775 was:0.02350529800142253 is:0.02215549335554494 for:0.02077556258358175 his:0.01804639098945333 or:0.016335100594594944 their:0.015847999621030492 at:0.015526727957625254 been:0.011815834631173878 are:0.01139058447814694 this:0.010362020528084328 tho:0.01035635773045807 its:0.01000473355720393 :0.30289457272291764 +and:0.07576744308645497 of:0.04877080464063709 the:0.048490441883509185 to:0.03937025223440364 be:0.0372349502780338 was:0.034269721336258746 is:0.027947988033186287 in:0.021782105642306614 been:0.018780562975069436 were:0.01776241548714406 that:0.017086394679651073 are:0.016226437135400635 he:0.012408776026644915 or:0.012092121643308083 for:0.011824000709327697 his:0.011673008143480492 it:0.011093238888569633 at:0.010806780226917626 their:0.00944751157457991 :0.5161650453751161 +the:0.42658585441769137 Federal:0.05909044626703706 The:0.04338122900000673 States:0.03901439759210611 and:0.038084381435647574 of:0.03265037619836301 our:0.02935977226495544 that:0.022518464816835403 tho:0.018486441511265383 this:0.015972624910971234 British:0.013198224946809108 American:0.011197777403103666 said:0.010495295217367882 these:0.010046346992438037 their:0.009678515413885253 such:0.0087503167647207 other:0.00782758392816788 great:0.006579684749185217 state:0.006553482740009769 :0.1895287834294332 +of:0.22347912517595808 the:0.19043022116553243 and:0.03911438568224252 in:0.031391967349736476 a:0.02971294406403654 his:0.022574772093241557 to:0.022267054611687726 their:0.02059780397431783 on:0.020589818737398846 for:0.01989792874331059 The:0.017142233534795093 with:0.014959127247311535 by:0.013480680422081323 at:0.013420590100671707 its:0.012828611378348495 tho:0.012078036018480842 that:0.011578974417647254 our:0.011322305751538423 this:0.010139693577431164 :0.26199372595423154 +the:0.47527849943349265 a:0.057499199531752435 of:0.050093319811608576 tho:0.03086429257737344 his:0.022771882645882174 our:0.021760873361745578 one:0.016616794869314385 said:0.015805538941720616 in:0.013647253833491706 county:0.012453288683799085 this:0.012149674284486812 to:0.011828650815169308 tbe:0.01157375068686806 old:0.010516148546440613 The:0.010308605748203251 school:0.00844750617889052 States:0.008422391395270658 their:0.008416690605134594 and:0.008271485182561314 :0.19227415286679425 +a:0.06163710274831627 would:0.05391215377086801 something:0.05008003421520339 and:0.043806031362493586 looked:0.03883412724724896 was:0.038786630576334254 much:0.03314659875335374 is:0.0316819803382765 not:0.02537671092074012 of:0.023674314018502868 looks:0.021643546042065438 look:0.020784240189488316 the:0.020730383957877165 anything:0.018273681725740603 are:0.0182325642910281 I:0.01712200550909347 more:0.015950387074270697 in:0.015758806674644958 do:0.015301116152642456 :0.43426758443181107 +of:0.14870698072999267 the:0.0845621995124163 and:0.06757800692451325 a:0.06370489404667218 to:0.05660993902384267 in:0.044754808810571894 was:0.02476206369313501 with:0.02372392891650905 is:0.02370118591038056 for:0.023671270390473925 at:0.02052745490553854 be:0.019885805590490524 that:0.01916544700111574 by:0.016703405181816126 which:0.01477775031565864 as:0.013781538588359489 an:0.012747545072512806 con-:0.011493668738063316 are:0.011384200297405571 :0.29675790635053173 +the:0.16807735899698817 of:0.10541662057906837 and:0.05138367848570702 a:0.04141865232648221 to:0.0385989743764065 in:0.026264864977736738 was:0.019530675665220657 his:0.018900421021236905 be:0.017373825006196972 their:0.015767721170721456 for:0.01557246589796783 with:0.014071419046630446 is:0.012922913111931644 at:0.012690452250034052 are:0.010702713108721902 .:0.010158075558988393 Mr.:0.009672788574483367 tho:0.009612591781990074 were:0.009549306361446321 :0.391314481702041 +No.:0.16602684054911995 July:0.0977200865486906 March:0.06968373167775692 block:0.06490960654810093 Block:0.047096653613410755 May:0.043791505228539196 lot:0.041413718891840194 January:0.039210899326364 April:0.028340438342359848 Section:0.026695823834191067 and:0.02549942572981674 1,:0.01963842209079784 August:0.019075597999771758 .:0.01821793168481448 December:0.017860574297813788 June:0.017619177712569548 lots:0.01701247518625934 Dec.:0.014730952374309261 of:0.01452922541806573 :0.20992691294540808 +those:0.1710314793780049 man:0.08985256931748314 men:0.08967644883743689 and:0.059076776333022336 people:0.03341955418925571 one:0.028362807277024144 Those:0.024358607195720586 persons:0.019930443735930285 all:0.01972919558788421 woman:0.012926242284105195 women:0.012687461238288381 others:0.009741072855294347 many:0.009160794699857228 person:0.008109906076143373 he:0.007753699217304839 but:0.006018055074387374 friends:0.006016689095465147 girl:0.005214941942316692 who:0.005189973671567007 :0.3807432819935082 +one:0.1028303141280697 part:0.05963429477052991 out:0.04766456937681193 some:0.031418679026461914 members:0.030764490253327767 side:0.029940657362655835 portion:0.022063658796890564 office:0.020457735219956013 member:0.019726706386316174 end:0.019666887540649894 tion:0.018667441728710307 parts:0.016814747270460957 people:0.014112771422418794 all:0.014072739582212475 any:0.013183573287639892 One:0.013083578354183906 that:0.013024335602903442 account:0.012482348155001894 many:0.012077825070275192 :0.48731264666452345 +turned:0.14176991408149778 went:0.09450661123497978 was:0.054046031776665386 go:0.04632351914099016 all:0.04105920275335817 come:0.039325794565632254 is:0.03181842998542007 came:0.02856237490077157 and:0.027313794770557284 it:0.026366591557228855 them:0.026070416468527095 not:0.0248229032100805 going:0.024046934019888996 handed:0.018292182423643333 are:0.016809827054494034 get:0.016345712433838606 sent:0.0155251091280989 him:0.014713202042130228 gone:0.01458266928737302 :0.296698779164824 +be:0.25212998866494735 was:0.14603750915526098 been:0.11108578281750786 is:0.09710819702564208 are:0.056191033543120196 were:0.04786001379757183 and:0.026802765814914555 being:0.02537221727416897 Is:0.015968205567990258 it:0.014996389189451535 bo:0.014563406078760815 as:0.014287882338702654 he:0.013092452225423126 now:0.01064456059577105 had:0.009814183049278245 not:0.00862691399803609 It:0.008558197744570976 well:0.008439926233533802 have:0.008369068723103132 :0.10905130616224451 +of:0.24212894010742042 to:0.11758528607562573 in:0.09850488084124383 for:0.06094607611599334 that:0.05983500275711132 and:0.05263779446836656 by:0.0434678524179431 with:0.03369892216854114 is:0.03185155672552797 In:0.02601113012690808 all:0.023778727683898892 at:0.019996284686680205 was:0.01824239301401065 from:0.016000483623071157 on:0.015285830362016755 have:0.014517725057436827 as:0.01442118746980299 not:0.013764254563409782 upon:0.010307883754846257 :0.08601778798014502 +ves-:0.3849447845298639 the:0.10073865669734311 coun-:0.08670114653328831 and:0.0735804395924335 of:0.04987010921951043 a:0.04299360565763915 to:0.027313923775837266 in:0.02502940460090469 for:0.014239079102629787 with:0.011908184739866323 The:0.010544947214724303 coun­:0.009754644018489052 In:0.009096243898270745 coun¬:0.007535383069960903 or:0.007398770566980172 his:0.007287725210146584 tho:0.006541743037133015 from:0.006019823774521452 :0.004591303494709566 :0.11291008126574768 +the:0.11919516938815296 of:0.07230453158552728 and:0.05781056740443249 a:0.043018564803886335 to:0.031305092790907506 in:0.020848713353460488 at:0.014270110001066288 .:0.012526810245749479 :0.012413283442322082 for:0.011719122709941797 by:0.010808400946589808 or:0.010404172990115616 The:0.01003576004804544 with:0.009811868184449042 tho:0.009295902015355835 was:0.008924239095331684 that:0.008672304223433876 is:0.0085591147338948 be:0.008335143826716943 :0.5187411282106204 +and:0.11203614284734381 made:0.029480560291083903 necessary:0.027231632327903786 provide:0.01978786821063526 him:0.018624150941585572 time:0.017844902254185023 but:0.01736032991925495 pay:0.01712283223509279 responsible:0.01655246417854943 work:0.01573375727996718 used:0.015721729148453864 that:0.015344008200088246 providing:0.015123591452644664 or:0.014918878594106077 it:0.014272018550925738 vote:0.014240496926603478 out:0.013886758983508773 demand:0.013625570335128902 ready:0.01288626098417059 :0.5772060463387679 +of:0.15764042674947235 in:0.13678145918131385 and:0.09335868256426337 to:0.07028463395860989 that:0.051872340878539216 for:0.04940238810991506 with:0.04434441844108314 by:0.026946664060868566 on:0.026680757407135457 at:0.024864402786335386 In:0.02479495273597568 from:0.023352645420381183 as:0.015078798785965608 almost:0.01493247793830199 nearly:0.012844860592185023 which:0.011025762346175567 but:0.010495254466873301 is:0.008879925448020486 upon:0.008878303600606069 :0.1865408445279788 +of:0.11891680847070721 in:0.11803697769846964 to:0.08212458811565852 for:0.06282823080105772 with:0.055645152921512994 by:0.05397496861494601 and:0.04225705175934487 is:0.040595606377191014 such:0.038614544699918846 as:0.032400234633964714 was:0.03040653963654688 In:0.026023223878613683 at:0.02540537885766083 that:0.022108214475393507 on:0.0220577884678856 make:0.020813757944415943 made:0.02017853660093976 not:0.019788953358388452 from:0.019340128560291277 :0.14748331412709254 +the:0.2086490612968112 of:0.12189174743723175 in:0.06171914500404003 to:0.05786136237553848 a:0.039898059367784657 by:0.03719696364350353 and:0.03180153812471137 that:0.02606686174887928 The:0.021821560880748967 In:0.014868496317126287 as:0.014782579871777083 for:0.014131628759911929 tho:0.013567831668852786 or:0.012825458064719715 from:0.010951165553576591 :0.010747046103801717 which:0.010652615992810012 on:0.010475633003619728 with:0.00749912679103339 :0.2715921179935215 +the:0.16807735899698817 of:0.10541662057906837 and:0.05138367848570702 a:0.04141865232648221 to:0.0385989743764065 in:0.026264864977736738 was:0.019530675665220657 his:0.018900421021236905 be:0.017373825006196972 their:0.015767721170721456 for:0.01557246589796783 with:0.014071419046630446 is:0.012922913111931644 at:0.012690452250034052 are:0.010702713108721902 .:0.010158075558988393 Mr.:0.009672788574483367 tho:0.009612591781990074 were:0.009549306361446321 :0.391314481702041 +of:0.4804950411003775 in:0.0826123666754611 to:0.06730822835323659 that:0.05524669482960682 all:0.03270650443749686 and:0.031597345530674274 by:0.024236596574953573 for:0.023667327953528664 with:0.02221960273226137 as:0.018560613877243278 from:0.016688599007601355 In:0.016254663982638348 which:0.014346710284065915 upon:0.011125447547696591 among:0.010790118579096017 on:0.009867110688361875 ot:0.008260230153292839 but:0.007787097173246763 over:0.006538110666322584 :0.058691589852837664 +to:0.09864282010030183 the:0.08375297126946753 of:0.07074571151673052 and:0.06779046829403 a:0.02766650927741597 in:0.021670314456411932 at:0.021392828982420006 for:0.01627599403114278 is:0.015107338441904122 he:0.014818877918256685 was:0.013808540905081488 by:0.013132601340090633 it:0.012796195965848819 I:0.012723560421513859 :0.0121914922721236 not:0.011777366450725432 .:0.011011346691779235 that:0.01092359583028988 with:0.01073896800850032 :0.4520324978259654 +the:0.5635739216925513 The:0.07468786951108936 tho:0.049277469732209395 his:0.041403541760752324 our:0.022953367802705 of:0.022181927868284 tbe:0.02029476606344503 this:0.018229945899763084 my:0.01767590010953745 their:0.017057780212960828 a:0.016853163755054298 said:0.012662365908197023 her:0.012546136127105567 its:0.009222131088718619 and:0.00690240841672521 Tho:0.006605556932383632 your:0.006102640183745753 His:0.005994048146723103 Democratic:0.005797253752500917 :0.06897780503554816 +it:0.14980370725759037 It:0.1417831987182438 This:0.0994395734160535 which:0.06123870759127718 that:0.053827314535707556 this:0.0485319048157116 and:0.03481463816943127 there:0.03163351300029438 he:0.025874957304685715 That:0.02452637228711398 what:0.02101535076138451 who:0.020745118014465793 He:0.01553744098124584 What:0.015466571118696077 There:0.012715435083286795 Here:0.00825702518154719 one:0.007881347531268929 Such:0.007797349307744799 as:0.006397540204786528 :0.21171293471946415 +is:0.09953512565820075 of:0.09786097866633113 with:0.09474041264833585 such:0.08459925739997001 in:0.07951141353137295 as:0.05923465209980073 by:0.05628915013748104 to:0.04262731815201869 was:0.04221686633232124 for:0.040624799262601825 and:0.037928143784841946 be:0.030232809860502797 that:0.026301246850690636 made:0.022730270522955228 on:0.02023284811384029 from:0.01958806576128542 at:0.01845028924478626 In:0.018415654202670398 have:0.018088865354961996 :0.08979183241503082 +the:0.8720164496724387 tho:0.04690213718062064 The:0.020049037744112555 tbe:0.014608353362653797 of:0.010531132155482499 and:0.002859999174544876 by:0.0026471868598776324 a:0.0025839687482875763 tlie:0.0017670966627532552 our:0.0016744398623076587 that:0.0016363278773482784 in:0.0015877691034125033 ihe:0.0014314452382605672 said:0.0012657665366587463 tne:0.0012285756312794174 tha:0.0011553282168626636 this:0.0011250832174796185 from:0.0010033143504130397 ofthe:0.0009208976082912711 :0.01200569079691473 +of:0.40058047626827037 to:0.13823120689618734 in:0.08837477208401354 on:0.055493410528152445 by:0.03565571030566863 at:0.031156816354471973 from:0.02861050829340583 for:0.027504435909704045 with:0.02360446940603385 In:0.01843041765262397 that:0.015148488488062188 and:0.014560588995462444 upon:0.009693507570458148 into:0.008745288780985799 through:0.006605620497437917 over:0.006215626121110474 ot:0.005854398913936909 along:0.005394904203049645 between:0.0050555458659743415 :0.07408380686499018 +to:0.21858987804878538 I:0.09031694075953096 and:0.07275322082345906 will:0.04997092203076206 can:0.04044895164337589 they:0.03995653212415422 we:0.03510817742376416 not:0.03149026941113205 would:0.026819864979049132 who:0.023685172073810747 could:0.021837816387399372 you:0.021033837817028257 a:0.01862298183956849 1:0.017858546926415704 We:0.011223785598945872 or:0.009486796475777583 may:0.00933373533846008 must:0.007472097951499215 all:0.00724040997439143 :0.24575006237269034 +they:0.10392390710879397 we:0.10305394081218158 he:0.09659156843080896 I:0.09429544633379403 and:0.07467302059545393 it:0.05753788664117506 who:0.044024211472954905 which:0.03498226360915649 you:0.03459829875380611 she:0.02945528259956084 We:0.027806835146122973 men:0.025401827623373088 They:0.021120462720003792 It:0.019878492491873883 people:0.017862651364499462 He:0.016782863801602346 man:0.01621150495761737 that:0.016110046563025636 one:0.010671906286123614 :0.15401758268807192 +be:0.22102824296594062 was:0.09091519358944243 been:0.08120145089572597 is:0.08100515533050741 and:0.05748650088848186 are:0.0488371801709429 were:0.038451334958370144 have:0.035727694581590766 not:0.02579133086232356 he:0.02571089046509123 had:0.022185775825454716 they:0.02019359015838882 being:0.019011723223398547 has:0.01851450608043347 Is:0.018165496684173454 or:0.01568399084144431 ever:0.013745534402533743 now:0.013138565513220783 bo:0.01274091237475634 :0.13946493018777895 +the:0.11042152668572061 and:0.10665748619745241 his:0.06664577600358612 to:0.06376493608534171 per:0.05175734663682956 a:0.03908413040660254 my:0.03798113815143083 this:0.03437957397584016 be-:0.02267942096954524 dis-:0.022058237246450573 her:0.020445923188819593 of:0.018991538518896643 w:0.018361626260427616 be¬:0.01807640425403379 their:0.01652888446834201 I:0.015993546121192484 one:0.015698905146719625 which:0.015168581894661253 your:0.015116882199155263 :0.28918813558895196 +the:0.22052173904674707 of:0.11538277631709545 and:0.07600893695483417 a:0.07004925231740321 in:0.02032394001329095 to:0.017760541526728617 or:0.016321320631386877 The:0.016047378210588287 tho:0.014162478919836598 his:0.011851559038502319 their:0.010247726296522618 an:0.009976024422455008 all:0.009838815678283644 that:0.007981786074193685 other:0.007735324991191378 :0.007694646861427443 at:0.007393351766959102 by:0.007172496730326369 .:0.006850640354361914 :0.3456792638478653 +there:0.02857164578368788 mortgage,:0.023111858169687954 ;:0.022964551423944605 it,:0.014281774319489465 cause,:0.013666658848416783 mortgage:0.009947571699450538 them,:0.009654406906161163 States:0.008080896103483936 you:0.0072751410293408255 to:0.006791881820187349 in:0.006192996714117222 here:0.0061120783670455805 him:0.0059643006119834575 and:0.005935724290155448 time,:0.005916641927246794 or:0.005688733813164402 it:0.005535867779291132 States,:0.00550408478386518 :0.00545520317734303 :0.8023479824319372 +and:0.21860247335230265 that:0.09631839789634765 as:0.06399798905020936 but:0.03505583973142223 even:0.021495882013033644 But:0.01992420325344491 And:0.01329961815788267 or:0.01285958168022394 see:0.012814945769022444 Even:0.012248345349714555 in:0.011422386793741126 and,:0.011342758354579352 on:0.010998141505141487 for:0.010351862979473424 him:0.01019907773710131 ;:0.009297434317519015 do:0.009023533625162146 that,:0.00756938186047381 time:0.00737169349737281 :0.4048064530758315 +and:0.14289380278516983 the:0.07574294660502483 of:0.053173784837542974 his:0.05040479483235247 her:0.02839663613005755 their:0.024262156592717146 that:0.022834122640904057 our:0.014567557118866932 for:0.014144987864228084 my:0.013820569086041196 a:0.013464315883363146 all:0.012043338815090952 said:0.011990656250712061 I:0.011423525481561128 two:0.011204336726283601 1:0.008628971706547583 with:0.007562758190018242 to:0.007025423490348543 your:0.006827871718783412 :0.4685874432443862 +is:0.13827339733971428 and:0.1153571992811474 was:0.10810742979879744 that:0.06729756850624348 had:0.050098062290647324 have:0.048682169468837924 be:0.03716660791193071 of:0.035873697812163756 with:0.03340467181414112 are:0.030379098638458946 by:0.0292401364610135 but:0.026945807845778776 has:0.026444845978899574 Is:0.02296283148231908 were:0.022731514140430415 in:0.020534942843257676 to:0.016643486853850465 at:0.01458087910949052 as:0.013732937194488466 :0.14054271522838915 +they:0.19070705191395154 there:0.10432576517946138 There:0.07740499293187365 who:0.06960465882971686 we:0.06405018848983343 which:0.059232779929856746 They:0.05837774093866646 and:0.03303159186932479 that:0.031535984570080444 you:0.024704404517904913 We:0.021298588343794465 men:0.011905036039327074 These:0.009742471930668975 people:0.00919531896932129 these:0.0071767049961406915 them:0.007165126782784784 as:0.006012541027574198 it:0.005266382821360524 or:0.004607350951737632 :0.20365531896662015 +the:0.5243889791461337 of:0.10728025024577001 tho:0.03699614487586817 and:0.027717086275477226 The:0.02620909869394636 surface:0.024966890975057388 on:0.022600659811856355 a:0.021409132039567107 to:0.018163750232349774 tbe:0.016971028342587662 their:0.01280197865828186 no:0.009013154656268637 for:0.008963784903365392 his:0.008895737552135187 said:0.008386090216030831 or:0.00823791624816195 this:0.008011216047909931 in:0.007592346322618412 with:0.007354127224934018 :0.09304062753167999 +of:0.21195484137848505 the:0.09648511213454111 in:0.0857661254546866 and:0.05423220738765127 to:0.042955001310027004 for:0.024135258657752817 from:0.021987572453861053 In:0.021255988045916815 by:0.019230703260397518 :0.018533887951005454 that:0.017774697081546054 a:0.014119713689542136 on:0.013240016976470984 at:0.01320966852044901 with:0.012291566651784666 or:0.010235258301799204 as:0.009823645899787563 in-:0.00960242016109584 which:0.009177294439760609 :0.2929890202434392 +plat:0.339875614005397 part:0.10304593059542198 much:0.1017343797075122 copy:0.03859747501176466 amount:0.031899765600481335 survey:0.026594547956798623 payment:0.020242598380022844 holder:0.01808274026867316 conviction:0.017174901731980642 portion:0.015970308798478175 term:0.012645556601176042 day:0.01158858623185558 and:0.009498374076057184 lieu:0.00891683598576301 value:0.0077989488286727094 cost:0.007565284396614023 that:0.0073923230806126035 date:0.00652947049450083 proof:0.006473117971924536 :0.20737324027629284 +the:0.3912720426990946 a:0.13729488269695156 town-:0.0339200104020801 wor-:0.03244930806696755 The:0.02274373702572433 tho:0.020193228719498368 of:0.018199500861520602 and:0.015701621950149493 or:0.015656669616183068 to:0.014990498594814184 tbe:0.011253314276565129 Town-:0.010005960486250224 that:0.009262824010066116 this:0.008978303683656813 said:0.008307255609592274 A:0.007857056541615323 by:0.007359011316771688 friend-:0.006963008283659982 great:0.006187590363442716 :0.22040417479539592 +and:0.03868242960999506 as:0.031124813427855922 went:0.02352509775927722 him:0.02196555539050794 them:0.018760608639018784 up:0.017985449426794205 is:0.017894175620344187 go:0.017174904667157563 able:0.016756848979943888 going:0.014481672239490295 it:0.014128375989346808 was:0.013277058274565138 time:0.013249953793837373 not:0.012469887553778763 began:0.012465717758716884 way:0.012105610030480113 back:0.012090864562211581 right:0.011941707822828511 amounted:0.011564315359310868 :0.667354953094539 +the:0.11919516938815296 of:0.07230453158552728 and:0.05781056740443249 a:0.043018564803886335 to:0.031305092790907506 in:0.020848713353460488 at:0.014270110001066288 .:0.012526810245749479 :0.012413283442322082 for:0.011719122709941797 by:0.010808400946589808 or:0.010404172990115616 The:0.01003576004804544 with:0.009811868184449042 tho:0.009295902015355835 was:0.008924239095331684 that:0.008672304223433876 is:0.0085591147338948 be:0.008335143826716943 :0.5187411282106204 +and:0.10402992543013229 that:0.05019092486459068 as:0.042727286857862486 which:0.02533234897998449 the:0.02508012675128413 of:0.022857658890955417 but:0.02193945521435193 :0.021424796317566188 when:0.019315947107283828 an:0.012160285773421877 what:0.011117510159342807 to:0.009847883387652535 for:0.00930937210305684 .:0.009110448322906767 a:0.008401418459977729 time:0.008210823708437065 on:0.008144468143099519 so:0.007721425325186425 said:0.007692928980800737 :0.5743849652221062 +the:0.6629883463091715 of:0.0773604080933411 a:0.0455220241286621 tho:0.036936861831205356 and:0.018873384249848055 in:0.01882967966372623 The:0.016321003255327763 tbe:0.011131029814066062 by:0.00889866420518871 thence:0.006384673858372207 In:0.006275251951968499 for:0.005482445720360585 his:0.004596268152979 an:0.004318893758184852 with:0.004307887660301297 from:0.004151586533745172 our:0.003571134595519975 north:0.0024530733380782065 their:0.002445719697968507 :0.05815166318198477 +that:0.09624802202812972 and:0.09500681735936567 had:0.056303166422429336 but:0.05287588054839266 is:0.049440103555322634 as:0.04697636761477422 have:0.04692393727291159 Is:0.037108548083937216 make:0.03683505059700771 Would:0.03375141218810264 for:0.03338402888814851 of:0.03319599012080882 which:0.02717746684618881 was:0.024390403840816338 if:0.02345625269595207 when:0.021660297124789177 would:0.021237754667807245 Had:0.019169423161578842 Be:0.019007709954133464 :0.2248513670294033 +and:0.08934296525867834 of:0.08068838607300491 as:0.07853645433812198 the:0.06307320057451939 to:0.042658746496865775 be:0.030835544751753347 such:0.029703590012664483 much:0.025794511891263566 in:0.023621249210533997 so:0.021449367110620385 is:0.021260609143037765 or:0.019920658237143826 a:0.01927671572579788 his:0.01906207551381598 was:0.01720359984272631 are:0.013935218166333807 their:0.012335998801341931 for:0.011516936419171063 that:0.010287085618050218 :0.36849708681455506 +and:0.1446120427223017 be:0.11471997559964214 was:0.08892389870032484 he:0.08197670622521355 I:0.06928901867778238 have:0.04977994231751275 is:0.04420495227144469 had:0.042353900560800524 has:0.034206785497992054 were:0.030520681341802927 He:0.02978205928595408 been:0.029521709635225487 they:0.02704052208921355 we:0.025677126083739985 who:0.020569693031834778 she:0.017182580890050533 are:0.01603726370217113 one:0.015529587317594035 1:0.01180096011898787 :0.10527059393041098 +of:0.12220203113992041 in:0.11393423160596279 the:0.10743308325945493 their:0.05165667479674919 his:0.04902579583205036 for:0.04759780755774261 and:0.038558750631379854 In:0.03718569814457102 a:0.03534553923504946 from:0.03521543001342249 make:0.029264077357459395 all:0.02671940779830667 by:0.024541096760457938 its:0.022932056656832876 my:0.01975857702217067 without:0.01762061546851251 our:0.016407334207220667 great:0.016154318333092166 be:0.015947008893256613 :0.17150046528638738 +and:0.04851810436737069 covered:0.04339328600791528 filled:0.036815852404213124 compared:0.03331193149435525 accordance:0.03178158508497107 connection:0.027641081180044852 together:0.024250991030772565 parallel:0.022776594242054644 charged:0.0216573440780369 him:0.02031685199603691 it:0.01743998213844462 contact:0.017172359594260934 up:0.016150345879047286 acquainted:0.01573070197633569 connected:0.015104979951079098 day:0.015020255687461573 men:0.014151581081192043 met:0.013146392847912365 do:0.012647907841143087 :0.551971871117352 +of:0.2869644393768582 the:0.18662832049059996 in:0.12729391436728738 by:0.12143505800221839 to:0.04700610661504525 In:0.023226267718559897 which:0.02262753738195415 on:0.021887066458409134 that:0.01732725004198115 and:0.015640346325273072 from:0.01518653581408848 for:0.01466586703762661 upon:0.012895684349872219 The:0.008758458256202225 against:0.007897262765148957 tho:0.006690645840753317 ot:0.006554750860949473 with:0.0065182251034553475 he:0.005657273017650345 :0.04413899017606648 +of:0.15550445237653812 the:0.14883051313090798 to:0.1061182258742142 and:0.08479405543997218 :0.02624896215360936 an:0.02576506558283664 in:0.025400977529265584 or:0.01963555980330012 last:0.01824205631674523 from:0.014972151296409606 be:0.014189072746673222 for:0.013887208960353363 tho:0.013382645916048024 by:0.01305433198705351 ex-:0.010640214791962782 have:0.010621103848459174 above:0.01042259184837702 that:0.010273645248963053 a:0.010160849903285094 :0.2668563152450257 +and:0.11184673514572326 to:0.08154537490991574 of:0.04529109471443419 which:0.030293411592478683 for:0.02817385117394911 that:0.02798714438451102 in:0.025599075852760358 or:0.025311409143068522 the:0.023558205724241076 will:0.019236931853517124 not:0.018039089528830602 con-:0.017302824858301386 :0.016141400493194614 it:0.015988678470426686 re-:0.015709676613277528 there:0.014963663184297158 he:0.013726536464494166 said:0.013284393978669214 would:0.012520003708364471 :0.4424804982055451 +of:0.3755433145619218 in:0.3024312534423137 In:0.052343736046450054 to:0.05233521224423497 for:0.05122654259962534 by:0.02474844206516977 from:0.016231629367908368 on:0.015786680499429644 with:0.012260240749364867 and:0.011921778676483837 that:0.011116988973693391 into:0.007657379562158294 as:0.006411965222300365 iu:0.0060791906564473435 ot:0.005700385960419988 at:0.005034835230501031 upon:0.004800423743997093 through:0.004489164320410206 throughout:0.003915933294069841 :0.02896490278310008 +;:0.011864931245913191 it,:0.010030187937198126 years,:0.009280800195973278 here:0.006764648433834412 them,:0.0066865644023765824 him:0.00660242724692105 it:0.0064913008516520035 time,:0.006463410406505873 :0.006401947103790347 ,:0.006142447310865259 up:0.0058606946785731895 country,:0.005521013818704755 :0.005385913755312117 man:0.005224962794489054 country:0.005166033603391283 year,:0.005081852063995821 time:0.00494890990549203 him,:0.004925011056010029 county,:0.004812233578175687 :0.8753447096108259 +contained:0.1214065477041106 described:0.11697581034939604 stipulated:0.0902606577706034 recorded:0.05041234562811227 and:0.04921281965097254 situated:0.045365543399596864 interest:0.04213794919166823 interested:0.03417650284169929 filed:0.01711158395574566 published:0.016505039893262952 thence:0.01557506244353907 situate:0.015306072383837781 due:0.01479840732452386 was:0.014696680024093448 land:0.013781594300641934 specified:0.013350493038563782 Morris,:0.013238332800187252 sale:0.011770162588043224 property:0.011386339702986716 :0.29153205500841506 +costs:0.020494407394849555 time:0.01389639492032397 one:0.01382099377881512 men:0.01123372507141541 in:0.010722966485574551 up:0.009759535931001113 good:0.009325755948761998 large:0.008512443337033607 house:0.008326048737045996 life:0.008277307036306646 water:0.008152084936029907 more:0.008068940090549637 work:0.008019213580667562 long:0.008009904565921893 each:0.007974660770863963 out:0.007896096420179343 day:0.007816464962784823 place:0.007700475655345901 hundred:0.007692787184641041 :0.8132997931918879 +is:0.1300949053123692 ought:0.06235942008217411 are:0.06072445398663133 seems:0.05697318922100556 was:0.04954471475520722 not:0.048536362204045544 said:0.03881623685409472 seemed:0.03220746110521765 as:0.030923473227594384 it:0.030881869856406088 claimed:0.028226689520969073 have:0.027725540143517465 and:0.027557757709861613 likely:0.02587900806524851 seem:0.02574969309575762 supposed:0.023317446089120043 had:0.02145961764731352 Is:0.017651730366473797 proved:0.01677680343414685 :0.24359362732284573 +the:0.39749834532651884 a:0.07520030034269234 and:0.05540858759821703 The:0.03273515726769502 tho:0.030061875542463562 of:0.020144331424922633 tbe:0.014929647509541684 in:0.014268129706664795 or:0.013333166761078447 .:0.013287381914101323 an:0.009000188755386574 to:0.00880680429595084 :0.007943763822197133 Mr.:0.00773879605474787 by:0.007328417831573476 as:0.005922572098978465 for:0.0047526933692942485 that:0.004736121968310169 on:0.004594595720579333 :0.2713091226890862 +and:0.11169052056022286 is:0.08376118166055223 fact:0.06317478419711188 know:0.03571844277582256 so:0.03393916600893385 say:0.030235927980995753 said:0.026063498457929074 but:0.02526408146519412 was:0.025085058786175563 believe:0.024459824698187086 Is:0.019641462142472522 see:0.019172393069964665 found:0.017027376003201533 find:0.015153383575172019 of:0.014710768670748296 think:0.014372000794719017 reason:0.014099659432687095 show:0.013916398210489282 says:0.013829422379480046 :0.39768464912994056 +the:0.2443227998959 and:0.09653005143502452 of:0.08821206809087413 a:0.07775028443698984 in:0.03183903412693992 as:0.023370133981178487 with:0.023044437389670692 be:0.022694036245556798 by:0.02264918214722689 was:0.01827693391654667 The:0.015148493752388602 that:0.014631098088307436 to:0.013894303726028295 is:0.01219420220488702 this:0.012158622913335014 tho:0.010546860046917747 from:0.01016116279924558 or:0.009510189598424097 at:0.00931973767297568 :0.2427463675315826 +be:0.1676497893438549 is:0.08915004049254051 was:0.08391718944051701 and:0.07776731153392961 are:0.06381022635710734 been:0.058818143463416066 were:0.0475395786466571 coupons:0.033285415065004015 being:0.028161836141925137 not:0.023192711479551844 Is:0.019779361453718555 have:0.01850104611787764 or:0.017440980614810957 has:0.017136308351230475 now:0.014975368869553808 so:0.014892041943583786 had:0.014850970217349452 if:0.013032022248532086 bo:0.012899569048868752 :0.1822000891699709 +the:0.0846861152264953 Mrs.:0.08336829679492941 and:0.08281356866504577 Mr.:0.05801571397683761 .:0.031380105674956214 Miss:0.029246160871047984 of:0.02234317977801116 :0.02222213678127569 Messrs.:0.015873519202861626 The:0.015752466936246642 to:0.01136521372486669 A.:0.010985577396715518 Senator:0.010335415857234057 John:0.009771296566912648 when:0.009019709413217461 Mrs:0.00801129715762389 that:0.007932409710468815 Mr:0.007745147329424266 W.:0.007361615334407284 :0.4707710536014219 +that:0.0673734715689853 :0.05592266978392427 as:0.026771637585921167 and:0.024246912601742766 it.:0.023439613845015406 which:0.017912627389576316 but:0.01654380836338867 of:0.011764276812155578 them.:0.01134499289527649 If:0.010307621658359457 country.:0.009748962661239122 him.:0.008793966215357727 .:0.007995452399568032 people.:0.007591597470030506 if:0.007409860506487336 time.:0.007268080161279499 years.:0.007154702561041323 law.:0.007110556493550403 day.:0.007045028044258151 :0.6632541609828425 +of:0.2813933312284629 to:0.13785243888483453 in:0.1045901435907499 on:0.07424493741916735 by:0.05067972132517331 at:0.04999037712044602 from:0.044091161390989085 with:0.03390003981547004 for:0.029510452807212456 and:0.026565322894410257 that:0.02479171726326896 In:0.020186653312496416 upon:0.019837104779665042 as:0.014872768367561028 into:0.01022106072811155 through:0.008523787409651748 under:0.008478886242649501 before:0.00738595692162579 over:0.007198181470850899 :0.044685957027203245 +of:0.24771856616623836 to:0.10055514755145552 in:0.09984480279807748 and:0.05814117240642057 with:0.05158849496637837 for:0.04613065771486411 on:0.044432355864291194 by:0.03519649785437645 from:0.03338388255327628 at:0.03070401576666744 that:0.026848878623973782 In:0.02041195271981872 upon:0.015248471773457326 as:0.011599582931726849 all:0.011326016994932605 or:0.008867228292995478 up:0.008407673252508876 over:0.007381477118522736 into:0.006992770039889695 :0.13422035461012818 +the:0.5606154068465773 a:0.13134892994442784 The:0.03557508720396173 and:0.03165763069297779 tho:0.02595120464890693 to:0.01821826471616159 this:0.011275250825574533 tbe:0.009141985816616545 his:0.0087725067878604 every:0.0076369077724081505 that:0.0074223377538388 or:0.00660978479401233 first:0.005712511972684933 great:0.005293165217224365 any:0.005168691070098175 present:0.004227158531574551 in:0.004142548579867998 of:0.004102488344815124 their:0.0035432777510203367 :0.11258486072939054 +carry:0.1412497087947734 through-:0.12826013105545556 with-:0.08091675963353849 carrying:0.046277804198627925 pointed:0.03723144396063946 and:0.033126401155713206 sent:0.030773149825916037 brought:0.02747943045078021 carried:0.027073602342564777 find:0.026641036907707145 put:0.02615503321810391 wipe:0.025838030544031883 go:0.022515062343076847 went:0.022513291814153923 get:0.02250598350754256 taken:0.022060176804249623 pointing:0.019443788737956894 cut:0.01939461821188527 bring:0.01927596027535409 :0.2202685862179288 +looked:0.05501523714422922 it:0.05461237289732161 gathered:0.046456100969805174 arms:0.0448666426168886 all:0.04337485831197118 look:0.03472247857997045 and:0.032140914487655596 him:0.02885430637575096 arm:0.02359133147236937 her:0.02316176067966042 looking:0.02264417337418194 came:0.02038470703427551 went:0.01809760025722017 passed:0.01767484549797888 ran:0.016909032619054652 go:0.016421508374750256 back:0.016398225639433474 rope:0.01633971047965986 turned:0.016216681281574098 :0.45111751190624855 +the:0.292285218638141 a:0.09220945676398662 of:0.07647711052862635 and:0.052465981484333325 in:0.03380370630226668 to:0.028730685694017204 The:0.027573433458346782 tho:0.01891290586794668 an:0.017253508592040577 Mr.:0.015562659581846912 for:0.014715900994731064 with:0.013245510968523683 his:0.013195601716192953 on:0.012931921906512765 their:0.012331524084885536 at:0.011078399825124381 by:0.009744229439260038 .:0.00914468354267775 its:0.008930408522159684 :0.23840715208837998 +and:0.08052616688966503 was:0.03386805967473211 is:0.027131659989010366 that:0.026624687792480752 it:0.02376543335216197 as:0.021724974035658717 be:0.0204493374234934 them:0.019362899857706416 up:0.01923755053633099 made:0.019051155858661004 been:0.015122377046947891 him:0.014895946421979866 found:0.014817751086571159 are:0.014800220963278276 out:0.014079301690022833 but:0.013109673893223404 were:0.011386116294665112 time:0.011231179353175257 not:0.010634397289030435 :0.5871811105512049 +of:0.27130984465590496 the:0.21958115623599728 and:0.09852863361784248 in:0.05895596309465637 by:0.027128071091292717 a:0.022027083202625194 from:0.02026730783039724 with:0.01700587081450441 &:0.014934059965111973 that:0.010799280199339631 said:0.010492018638786777 In:0.010415605254430207 tho:0.00883918777539381 The:0.008467703714585476 Mr.:0.00813683524609728 for:0.007783045081867636 to:0.007670466536448443 at:0.0075862286933617625 between:0.007136515091082755 :0.16193512326027362 +and:0.06317916895143688 was:0.03089079697380977 is:0.020044819943736053 be:0.019406329289829806 are:0.016631216139614186 that:0.015910745835586493 it:0.014132589635136123 been:0.013429954470292457 made:0.013153338042273357 were:0.012494049396038097 or:0.012369181282419555 them:0.011608721240324167 up:0.01101461536327863 him:0.010833186604515583 as:0.010718511743974049 succeeded:0.010682665877813333 engaged:0.010592681714621757 not:0.009777868089593193 now:0.00948198968071834 :0.6826475697249881 +and:0.07732105425193755 connection:0.07472708007651407 together:0.06229774693001989 connected:0.06058978751932544 accordance:0.0416575578411824 comply:0.024468256903683663 up:0.023354303788254094 do:0.023031682138135442 compared:0.0214034483234418 charged:0.01985019392621937 satisfied:0.017894895090384225 but:0.016891443675214127 familiar:0.016340199066118822 acquainted:0.01511904057345155 file:0.014207305273272079 him:0.013709074194711854 it:0.012929401641257015 filed:0.012916292873893108 complied:0.01277828259276974 :0.4375129533202137 +and:0.11175813607452544 was:0.03585925231894076 Beginning:0.024162445049947235 that:0.021901201545324392 is:0.021866308667135567 look:0.020563726187581403 sold:0.020417193579313087 looked:0.0202988385679749 held:0.017578057150406116 be:0.016513958197852067 are:0.015786755874649002 him:0.015630316041508514 it:0.015510067349988919 one:0.014505645725421077 closing:0.014369837902026329 beginning:0.01402017805033727 valued:0.013862154991314345 or:0.013142915229104846 not:0.012962473910088139 :0.5582905375865607 +Mr.:0.013499424871986158 due:0.010691672862053449 ;:0.009978921434874275 in:0.009295803995400207 thereof,:0.007819383699654545 ,:0.007628695707999603 up:0.006713879624702222 men:0.006525564957622888 one:0.005944632876957141 street:0.0059124053666027385 land:0.005821263897033776 mortgage:0.005782112891941133 here:0.0056363191101207934 .:0.0055904676404931655 city:0.005567249842317944 city,:0.005486002063368691 street,:0.005333658273896515 and:0.0051783860624539605 :0.0051168385767599925 :0.8654773162437608 +was:0.1463883440959484 is:0.12821451246240362 are:0.10178272114247412 and:0.0726492320721286 been:0.07132107712727453 be:0.056405267770346136 were:0.04875828145867883 not:0.038180861521557495 of:0.0204714774470879 has:0.020312753361991568 have:0.018480453393272953 Is:0.0160109625090645 had:0.014483523434494269 for:0.01322524497294179 as:0.010805969765529243 being:0.010781071464497508 it:0.010698996711741833 or:0.010591954125375497 that:0.010564277340075109 :0.1788730178231161 +is:0.09428978429519361 was:0.08520227063781959 be:0.04361695008259518 are:0.04339419247981463 and:0.03748839596870498 go:0.03452236465230964 him:0.03307200566287359 found:0.02797499938543065 were:0.02772752950465009 not:0.026425059777209475 far:0.024520092839335705 being:0.024155959791076393 get:0.02342233958391993 of:0.020923909787704118 been:0.020839145830741642 them:0.019861364553983414 got:0.017160124096103083 went:0.016629708688413316 out:0.016464052407960804 :0.36130974997416015 +of:0.11673582222646535 in:0.09590622603679728 by:0.07522889675118441 and:0.0668615819018533 for:0.06462069632890384 that:0.05920033898257092 to:0.052532040983085976 with:0.043223982546073667 was:0.03763234353084454 In:0.030966803639366183 is:0.0293160490300935 or:0.020960198090238115 have:0.019653198961193576 had:0.01820718040168168 from:0.017474829263181967 at:0.01668405384624774 on:0.015821591798758392 be:0.013105597479107412 are:0.012934350216818173 :0.19193421798553398 +on:0.3429790971787561 at:0.17873901903781084 of:0.03184200752714038 the:0.019304800541539328 Mortgages,:0.018058225297095123 and:0.01772434389794767 mortgages,:0.013275281557430114 from:0.009149664326155956 deeds,:0.00801597571311508 that:0.007297254110706881 lot:0.007013827126129194 said:0.006048412012107229 until:0.005411954218470505 3,:0.0052175213899834415 Deeds,:0.0050146637100976915 to:0.0047926018653690625 a:0.0047232763247738 June:0.004335900001930786 in:0.004015634865844064 :0.3060405392975967 +of:0.09129790931378902 the:0.07369883040827747 and:0.047842263382354346 in:0.04189055351593407 to:0.04045875475680249 a:0.03542341257202578 be:0.02020462051672066 for:0.01979292654746225 was:0.01760256398103379 at:0.017380150555488715 is:0.014984483003968216 with:0.014047653760730413 by:0.01374644383819499 :0.012670486581795598 In:0.01200961464556976 or:0.011563835749786333 from:0.011391516893522809 are:0.011273104484969465 that:0.010755276030689069 :0.4809655994608848 +the:0.11919516938815296 of:0.07230453158552728 and:0.05781056740443249 a:0.043018564803886335 to:0.031305092790907506 in:0.020848713353460488 at:0.014270110001066288 .:0.012526810245749479 :0.012413283442322082 for:0.011719122709941797 by:0.010808400946589808 or:0.010404172990115616 The:0.01003576004804544 with:0.009811868184449042 tho:0.009295902015355835 was:0.008924239095331684 that:0.008672304223433876 is:0.0085591147338948 be:0.008335143826716943 :0.5187411282106204 +No.:0.0643559996867421 and:0.05217728663602116 the:0.04457893615527467 of:0.04208592666726906 at:0.029559812124280428 .:0.026941588593129052 a:0.02665337501305524 said:0.02218285368793813 to:0.020968212253776656 :0.012113795208807012 W.:0.010346049690272937 1:0.008885076881085235 or:0.00887777499038276 feet:0.008858771980041424 in:0.00826327866723483 E.:0.007891826548905304 on:0.007224495184656087 C.:0.006686993849698836 street:0.006472148815453404 :0.5838757973659757 +and:0.07558940021936399 recorded:0.030196237618668006 was:0.028917161578042846 made:0.027969746247669736 that:0.027730098932509103 o'clock:0.025060522019555328 up:0.023026552239529506 is:0.020398277211376416 found:0.02003101797656537 placed:0.017482208134164214 out:0.016937164562539058 place:0.016819459500107596 interest:0.016629321966808677 him:0.016002796715253755 situated:0.01573420479581609 it:0.015128305982428461 them:0.014715943643665314 part:0.014646613000297721 interested:0.014450471929902294 :0.5615344957257364 +.:0.058192295561875655 A:0.04379579203548744 J:0.0364316492182803 E:0.03628288596151843 and:0.035480162783748874 A.:0.033712652214649044 &:0.03255630996886428 J.:0.029831411530928602 of:0.025244565110722723 M.:0.024339856221633628 John:0.023938393382650493 S:0.023083263980501204 P.:0.022934845800605168 Mr.:0.022842218491234044 H:0.022760513794514572 W.:0.020174491231286642 Mrs.:0.019679202612380365 E.:0.019651199728033933 N:0.019479903158565605 :0.44858838721251904 +the:0.5059889534578685 an:0.23912368033892967 The:0.08935661454738232 and:0.023512312345693648 tho:0.02186087471700583 An:0.012588324790437776 fair:0.009972296649144582 a:0.009737883472877868 their:0.009413896393572799 of:0.009055695664298567 to:0.008839334793000902 tbe:0.008115348843597115 his:0.007585362661537246 annual:0.005065292366648596 any:0.005010092856339454 other:0.004888630492006834 with:0.004556361532684351 our:0.004483505713893161 general:0.004197564436607637 :0.01564797392647308 +the:0.19052451932046477 a:0.1705873860964934 and:0.07179813791837322 of:0.06273095676782037 to:0.04286349619189398 with:0.030961924018514886 in:0.026350418745954132 for:0.02634974650326022 The:0.022794242511732454 is:0.02245945326674537 was:0.016968090220494513 A:0.016102590135498633 be:0.01589390654365088 or:0.015609682332664156 tho:0.015423571942854139 no:0.014848960116813333 his:0.014805125470520855 that:0.014273359386388585 are:0.014240359346356304 :0.1934140731635058 +the:0.08420913210031296 and:0.07107068750542198 of:0.06822389165938944 to:0.0599489087081745 a:0.05257718780079019 in:0.03141473158662753 at:0.021975814255332612 or:0.017694597911752274 that:0.013162839445448531 .:0.013061368692281139 was:0.012987245792900807 :0.012773694497432157 is:0.012394992910484803 two:0.011275167442196135 for:0.011036798656478955 one:0.010008200950919357 Mr.:0.008795227227627026 I:0.008735566598605277 In:0.008322108371681566 :0.4693318378861428 +the:0.09684081064840576 and:0.06551335624548284 of:0.05146145169206151 from:0.049520598669154245 a:0.045427902131977435 to:0.0370403239153822 be:0.035669151526387034 was:0.030489628475080553 is:0.026635804908522978 in:0.023878514238638158 are:0.018513936943033917 not:0.017945708099223703 or:0.017556265685966497 been:0.014265228721347686 at:0.013857211504087178 he:0.013733215789660087 were:0.012396679125422956 I:0.012347944480187516 for:0.012197989992860347 :0.4037082772071174 +of:0.2518219695958432 the:0.14431070835523446 a:0.10071932021135858 to:0.09401296792807634 in:0.05540597191259494 and:0.03856644894781686 for:0.0324307483780957 or:0.029216864206865742 with:0.025945931794161787 his:0.020101284569565586 by:0.019385917862064377 their:0.017851564011328924 any:0.0162582928055215 from:0.011343063341504485 at:0.01050896491316987 no:0.010014877908815648 that:0.008796906008693022 this:0.00855728264174353 all:0.008315858426849745 :0.09543505618069571 +of:0.3032327480763372 in:0.10346109754386333 to:0.10018993281497694 that:0.04712446187738918 for:0.04461354821379317 and:0.04389827295692792 with:0.03680722367885861 by:0.03440746924468481 In:0.03301691582529454 from:0.02876020965746375 at:0.024005236775517306 on:0.01905046361009043 all:0.01799215388438139 as:0.017294843665571463 under:0.01728323913063178 upon:0.012298191252446817 To:0.009388781918917719 about:0.009324946292813663 if:0.009134011005067036 :0.08771625257497291 +be:0.26718093605684856 been:0.1654408826378732 was:0.13483123726527618 is:0.05580516812684185 were:0.05010297273758419 are:0.040269371579189944 has:0.02996817354788122 being:0.02985375414235914 and:0.029230653135139274 have:0.02690007497072378 had:0.01836511620774674 he:0.016240373577295207 bo:0.014519825428340733 Is:0.010178143924459718 hereby:0.006837033283843721 case:0.0059777354930548934 it:0.005899127059569377 I:0.005759634499133732 ever:0.005530123108138681 :0.08010966321869976 +as:0.048763987971683714 and:0.033728405282305696 went:0.029725354919194247 up:0.027723779399156042 go:0.0232484944099174 it:0.021645292047095883 return:0.021420280894778928 back:0.019939251893335248 returned:0.019329979138391393 down:0.01895270526288862 came:0.018173638942136708 is:0.017294740224288816 him:0.017057776478964184 entitled:0.016242669669141688 sent:0.015760837172354134 according:0.015479487004001834 left:0.01482195362726726 out:0.014510635282342591 come:0.014300195256316626 :0.5908805351244389 +the:0.21196110216325734 of:0.09007947991124152 to:0.0494045857039621 and:0.044961225652543964 a:0.04093285293209737 in:0.031208697335031798 for:0.02569775907720898 that:0.01610377206487489 on:0.014193549109132085 at:0.013826307516621658 or:0.013472535660999008 tho:0.012771312256321159 as:0.01150564523639716 was:0.009760257721278526 :0.009697555077281726 his:0.009017927334865582 In:0.008697376174153996 be:0.008503300345228351 The:0.00832718587413917 :0.36887757285336364 +hundred:0.02334136986593815 up:0.005482494641173394 men:0.005366536521246011 Hundred:0.0047587970519216575 John:0.00441808156134956 William:0.004390720675819281 him:0.004016828614280843 ;:0.003997112205305733 due:0.003721199871732 in:0.0036582900032443304 time:0.003637206863828461 James:0.0035594902370151707 out:0.0034878448964120057 .:0.003467980723571515 1:0.0032804584819785204 day:0.0032444781513863933 ,:0.003058139385740603 :0.0030314555521939613 Robert:0.003005471634785646 :0.9060760430610768 +the:0.10965573489998444 to:0.06367824752868213 and:0.06140397891296249 of:0.06082725939717676 a:0.021136432557751595 was:0.019912552008674415 at:0.016798961282950248 on:0.01667444381773965 be:0.015503570353399802 :0.014883203909603846 in:0.014303146985823658 are:0.01348780939009353 is:0.012848628321405061 that:0.01200059609372675 were:0.011745430919815275 as:0.009634536081890795 with:0.009137019920460437 from:0.008730044768012637 by:0.008513764301527374 :0.4981246385483191 +and:0.08073740066922978 was:0.05573743938650362 the:0.05508291693575772 of:0.05214181355778423 be:0.051681587384328466 to:0.03780618157268683 a:0.03655711071462066 is:0.027521471208280506 been:0.025076324960786635 were:0.021334794998746385 are:0.01986001814453262 his:0.014240259151725523 by:0.011780220576577348 in:0.011531474449875153 not:0.011353568829272426 for:0.010971340595898908 as:0.01072780795923615 .:0.010568945221678859 he:0.010529774035783658 :0.44375954964669456 +of:0.3161500885055513 in:0.07987913939023154 to:0.07590120631054693 for:0.05733140349380948 or:0.055833507510564644 by:0.04266937492885559 than:0.03810087112263193 from:0.03744780018573077 at:0.035462786670787415 that:0.02891967623260697 have:0.024782066868479523 with:0.02437907483201318 as:0.019501650377678516 without:0.019491916569348722 and:0.01556329173131537 if:0.015367708313103374 In:0.014267225358009963 make:0.012936198868450316 had:0.012782849780343497 :0.07223216294994096 +Robert:0.021598386804556256 John:0.01771551746844918 William:0.017293041686279424 Mr.:0.01711525879352936 James:0.015887432951838212 Charles:0.01331124036984969 George:0.011188704083271191 Joseph:0.010081695787993214 Thomas:0.00785113010466808 land:0.00747602449594043 .:0.0061724244007657 ;:0.005893125909632348 Edward:0.0058051707693766285 Harold:0.005147605653948855 Richard:0.005017129012230956 ,:0.004668884962439436 wife:0.0045127146556521985 Mr:0.0044172805934339235 men:0.0039285259174041244 :0.8139187055787408 +sum:0.03352282876311118 number:0.028116684882597106 line:0.019995206059833036 city:0.01946514558931857 out:0.019275318828420953 day:0.01666865340772654 county:0.014872697538657208 amount:0.013254184849875051 Board:0.01252325449624941 town:0.012449555905674143 side:0.011663975251122375 part:0.011517157473718155 County:0.011460540331966697 state:0.011087331502382173 City:0.010878919191854432 purpose:0.01081028255427907 and:0.010297866493795984 way:0.009848747943663767 name:0.009522170936943183 :0.711769477998811 +one:0.06374572785582654 more:0.06056742994939011 two:0.025793416795393022 day:0.020996359338333496 piece:0.020903078118763446 law:0.01909771794511599 person:0.018192450397714093 action:0.016585729823862676 three:0.014204573757832338 five:0.013670124983069116 lot:0.01333749712856426 whether:0.012690769646972378 year:0.011879466609700975 neglect:0.01186579979365293 tract:0.011535675998084308 man:0.011489459430382386 time:0.011479760723780243 right:0.010574409774736407 made:0.010406910137393786 :0.6199836417914315 +of:0.372745895003426 in:0.1524063542444896 by:0.04850158980960386 for:0.04277776094406474 the:0.040550234557131394 and:0.03815503316679243 with:0.03424729034136294 on:0.02895988491771085 In:0.028225667787110643 to:0.017711170695508555 their:0.014017224309414275 without:0.009961564745665294 upon:0.0094690236270475 from:0.00854368641976822 its:0.008119388186759273 do:0.006948816678116571 our:0.006384718810463026 his:0.006223131634813585 that:0.005901831616199621 :0.11914973250455164 +will:0.09536151544541992 can:0.05621176671613153 and:0.05485204492667526 is:0.052037462782235575 would:0.04732238368176042 appear:0.0418898483959573 w:0.03638883240122306 are:0.03607252338924602 it:0.03432782234933928 was:0.03265018844386065 may:0.026140304063086862 come:0.023376813292071905 could:0.019240348141590546 held:0.01904089067333088 arrived:0.018393319558195436 that:0.017239809859298176 not:0.01713580683913617 should:0.015503379678029207 work:0.015316840490725892 :0.3404980988726859 +the:0.23068661276415411 of:0.08468151072555474 or:0.055561671750329514 other:0.04614151331276865 their:0.037560128628743715 for:0.032133779311399414 trunk:0.03167432291299148 these:0.030043680055299064 two:0.026771907411586273 and:0.026686957561567887 many:0.026210730673678104 a:0.025158791477550173 our:0.023911697994969453 three:0.02291162181692901 several:0.022874027898041858 his:0.022021582456386583 said:0.02058493058107561 such:0.02040133483803128 in:0.019934296906192802 :0.19304890092275026 +of:0.36461739003872234 to:0.10480159688738518 in:0.0639713124247131 that:0.05419006706250089 and:0.05132183893035458 by:0.051269785616671754 with:0.041643991298239966 on:0.03354962059944154 from:0.033385588324445714 for:0.027760524245155984 as:0.017183491064033923 upon:0.016666413056747417 at:0.014517045475687294 all:0.012476545005432608 In:0.01199453656299513 into:0.011588556607916465 which:0.010404170965155035 over:0.0097619241884578 through:0.008653563309855245 :0.059242038336088036 +to:0.27345198570654233 will:0.17498686208656744 would:0.14766402430595724 may:0.07096125626231752 should:0.059101763490427485 shall:0.054440354003384546 must:0.03512758829837504 not:0.03509081354212745 can:0.021211003660673074 could:0.01323259698596893 might:0.012660115609915073 cannot:0.008874655286208984 and:0.00834302756809641 it:0.006886624457103834 To:0.004930171573418788 only:0.0036069631530639894 soon:0.003390080089881386 also:0.003220010422279216 that:0.0032013940846316643 :0.05861870941305961 +for:0.2627970292388956 of:0.20687073942772086 in:0.0890128626482498 and:0.0770168795075892 about:0.032995792798052315 or:0.0328204901594823 the:0.029911745098945383 In:0.023031001238867633 with:0.02134850468604868 than:0.019782121892875676 to:0.01873171319922708 over:0.016562885463159104 past:0.015193834744766254 by:0.011352403656356466 a:0.010190172056136032 aged:0.009833408913515595 that:0.009521014501865667 all:0.008692084576785301 from:0.00843591147697153 :0.09489940471448952 +away:0.05506321726078766 and:0.052546668832417445 came:0.05197963716447965 miles:0.03908204407969418 come:0.030922400375444564 taken:0.028908249896211463 up:0.026957248841143838 feet:0.02624357384201346 him:0.022833330680265267 far:0.022078406604228537 them:0.021790721053674356 returned:0.02177776692670082 letter:0.020854667912074597 suffering:0.020220433793215857 down:0.019238607121041834 back:0.019158998207415272 received:0.01746121408303975 comes:0.017241796750518804 out:0.01721036051036744 :0.4674306560652652 +and:0.13552125226465123 but:0.04625432770496232 of:0.03707543616900621 so:0.03700369137408651 that:0.028759490296117293 as:0.02788713789043092 all:0.025324817266272788 is:0.021649661241695685 fact:0.020874866391908654 said:0.01834893414152385 say:0.01733312130436469 it:0.014660120591577966 know:0.014201352993387928 think:0.01404853019072342 thing:0.013927282095831564 than:0.013523105298709471 things:0.011342010033886712 thought:0.010411676850075297 believe:0.010259287619644716 :0.4805938982811428 +a:0.5617281071516241 the:0.10063101414960235 A:0.0696831537816225 certain:0.0227664934057959 one:0.022728617168487 described:0.015286508447423205 every:0.014349961981332343 large:0.01354233347607603 this:0.013263745386656452 any:0.012175252229603554 little:0.009635519103340187 The:0.009423162500324845 small:0.00934662139901988 first:0.007786400699402429 another:0.006914617863195351 tho:0.006562480468708957 no:0.006226901465112485 and:0.006157986986247515 said:0.0055168341819651166 :0.0852742881544597 +the:0.16611253445389942 and:0.11583311901983827 a:0.08516482406136427 all:0.07177338891013645 these:0.04737968787015455 or:0.03596402815033576 These:0.03212798174466024 that:0.031372888598867346 of:0.02967881141587722 some:0.029434112053280812 other:0.026469619987361193 The:0.025759106221510276 those:0.024884286827525963 All:0.02212012988349288 this:0.021459376556502985 per:0.019971882391804707 his:0.018599286497824424 many:0.01835688406291196 any:0.016054652564131865 :0.1604833987285194 +and:0.08995317707915026 to:0.06844710404109794 of:0.04605142056172993 the:0.04074574508561307 which:0.02479116931334353 that:0.023764822140213245 re-:0.020841117231308055 in:0.020803825395358622 for:0.020278423301550053 :0.018417753428486977 not:0.016860793136637672 con-:0.016444405871234195 is:0.014386481772210856 or:0.014080680914153714 be-:0.01352268143271276 I:0.01317002660943805 was:0.011429878269381662 dis-:0.011196807025842847 he:0.01113106290024311 :0.5026826244902934 +ten:0.0853534257006675 10:0.07791104683258857 50:0.07307943614791772 fifty:0.07039512611720566 20:0.0558728283546593 three:0.04402986523450323 five:0.043550923790915595 25:0.040564996330152016 5:0.03967114792963438 six:0.03888271516163278 15:0.036395369864804385 60:0.02441455490589431 30:0.023540639032575326 40:0.023354531469800127 two:0.02199676397280662 35:0.02028633403949315 4:0.01957922572162911 twenty:0.018201048047116416 75:0.01627527117850505 :0.22564475016749874 +they:0.1339461974459378 who:0.06449150759567976 there:0.05964669119660761 we:0.0585849824831157 which:0.04520706527438132 and:0.04286863407622332 you:0.03913729104764804 There:0.03396718801066769 They:0.03209640169845594 that:0.031200974702725145 men:0.019845671685432692 We:0.019418999595623168 people:0.013692363921183908 as:0.010974793792506123 them:0.008386153753557493 these:0.008192396320777473 You:0.006556364269777689 These:0.006145955695672415 but:0.0058114506320729896 :0.3588289168019537 +made:0.0999812034390529 and:0.06680208263369662 caused:0.02435411478715239 shown:0.02379785223577525 up:0.023253655008919294 ed:0.02312002180398423 out:0.022293807888227747 taken:0.021988971765594088 done:0.02128782706813444 given:0.020283609421760777 paid:0.017098570970207227 owned:0.01708227903067019 that:0.01698438626809451 or:0.016145946252097726 him:0.015808363688274 followed:0.015366441255538056 appointed:0.015126279845513936 held:0.013990473525433292 approved:0.013949758860964168 :0.5102843542509091 +of:0.4036080212535785 to:0.09984584617778906 in:0.0753202439724013 by:0.06627290067097266 and:0.05681741688055083 that:0.04847516983303608 for:0.04101263969351509 with:0.027308244806649614 from:0.020042153696902775 as:0.01568464784953515 all:0.011381407463268439 In:0.010835000459882452 when:0.008526214926962376 under:0.008188058949373397 which:0.007908111697690845 on:0.0077468772768674666 if:0.007714725399300751 upon:0.007378575730295305 against:0.006911243307579586 :0.06802249995384833 +on:0.15169185460517834 of:0.1494990791920342 and:0.1110188394199163 to:0.07487228069187934 On:0.06787949677356371 all:0.04481355413617444 with:0.043513023324253 in:0.04170248318454565 that:0.03416347844738215 for:0.03320798776839905 by:0.02773392703437829 from:0.02577258167815198 or:0.021590406825363957 as:0.01902286527860017 at:0.01802936931053029 than:0.016788812436407136 upon:0.01651524031398241 In:0.013385412630169341 but:0.009100366113357435 :0.07869894083573283 +the:0.5230687653167051 a:0.1997107939598556 The:0.07531551335229902 tho:0.03526811376158402 of:0.018258645974165353 and:0.015172833078902695 our:0.01311483710033487 that:0.011340228423809343 A:0.011190066767184283 tbe:0.010279667967784916 his:0.008810146884800434 their:0.007314641109241504 this:0.006365557800091114 in:0.005935160924762152 its:0.005783574421289133 by:0.005374352490235855 great:0.00441383041636718 with:0.0037379219112340578 Tho:0.0035132716060129812 :0.03503207673334038 +of:0.24891980849328552 in:0.08388393358134663 to:0.08316576479311252 for:0.08052296475247715 with:0.06645816695850564 and:0.04131007407304005 by:0.0367007614619715 from:0.03480493055890647 at:0.031003773941369134 on:0.029912821846472083 that:0.02287125620377485 all:0.019282842378869482 make:0.017964367177056587 or:0.01699360863263201 have:0.016268017575005327 upon:0.015741359306435436 up:0.014238492957716451 as:0.013180766627454153 In:0.012616813885302777 :0.11315947479526622 +hundred:0.013633628820093018 ;:0.011172311961148602 him:0.009807052834026905 one:0.00914669734384353 feet:0.0090219372983598 up:0.00838318558829166 mile:0.007527126877816727 feet,:0.0071805242500254255 time:0.006879602834379732 man:0.006817451499927337 it:0.006300585667639516 it,:0.005903705234588485 out:0.005451849962934835 :0.00538718305729827 ,:0.005295204710281874 and:0.005240008239108335 here:0.004938150073064577 water:0.004837308913464981 them:0.004796443021708541 :0.8612800418119979 +is:0.31796796009321787 was:0.10187448881615499 he:0.06122015829605334 and:0.05862816717310739 be:0.05469575267683096 Is:0.05350018283758896 I:0.049821590497989746 He:0.04272196204541884 are:0.03856173249330826 generally:0.03821223037817925 so:0.03589810556394794 am:0.01713258301485258 been:0.01567580959564668 have:0.015599513428178929 also:0.015590677530777208 it:0.012563393969899962 has:0.011861843424524544 not:0.01161135591581841 who:0.011502363643244062 :0.03436012860526009 +covered:0.04922029915745267 and:0.04358618354186827 filled:0.03128858373674583 up:0.0249069000307144 it:0.015597820042654963 made:0.0154915722908273 together:0.011738849359410629 loaded:0.011548084321810008 trimmed:0.01042244334997978 him:0.010012686419332733 out:0.009548395957232064 charged:0.009535870160864207 them:0.009005660613550502 down:0.008828586651279394 on:0.008674521097614123 lined:0.008348819913011176 do:0.00709469999623425 met:0.006738810412337853 that:0.006614583293289551 :0.7007966296537903 +and:0.07501387695488611 days:0.04620457268788843 was:0.0440220114884276 or:0.0351377640020898 time:0.03474732773773222 that:0.03419637151520699 never:0.032146003935385144 long:0.03184305542640406 be:0.02982699213632672 minutes:0.02742289527591825 ever:0.024863792837074947 is:0.023789952220719314 years:0.021960046209748788 day:0.021515552359675203 just:0.020028580170506665 but:0.019386548815899643 were:0.017608594624758132 night:0.016748090816846275 not:0.016479249655476372 :0.42605872112902937 +a:0.4193797151256159 the:0.12405071489974247 young:0.05477611943786542 that:0.027671156305990638 of:0.025658615840998846 any:0.023774584918672795 every:0.02057509008152109 old:0.01911477862156092 white:0.016618710150479492 this:0.016439697490957347 one:0.016025572837052367 no:0.015842468140934034 The:0.015490473112284351 same:0.014812877067829357 such:0.014763065753845022 and:0.012930734661840334 other:0.012901158958662791 as:0.012390634815006806 colored:0.012312374426705207 :0.12347145735243481 +of:0.14029581172519684 in:0.09145020569181779 for:0.07727654902898357 to:0.06980099660449174 with:0.06339071068668543 and:0.054518938734047985 by:0.050988165988573544 was:0.045416883842139745 is:0.04356591998707987 at:0.04186446125458104 on:0.0324233455931973 have:0.02630780560869355 In:0.022361746467780053 had:0.02206839784154825 as:0.019868240215496137 from:0.017620333408181504 that:0.015819494156404434 made:0.014981835503525333 not:0.014491675334626117 :0.13448848232694974 +of:0.14140911374913043 the:0.08406324275408093 in:0.051712664696044124 and:0.042016144218116745 that:0.03344666676867289 to:0.027709869064190353 The:0.023638573607111874 for:0.020483914568636966 Mr.:0.017669174058513534 which:0.016972368561751192 as:0.016259401671191127 a:0.014920071848964473 :0.014646146896987337 In:0.009940105168995288 or:0.00909223143114935 such:0.008359976573547796 when:0.008218759560201584 -:0.008178509589941811 by:0.007801238855262815 :0.44246182635750936 +the:0.19438557118904645 and:0.08646269573960662 of:0.08160916703598942 this:0.031332082943275476 or:0.02103205938820876 that:0.02069233964309882 The:0.020578610677492382 an:0.01829180169310091 a:0.018195630835756267 other:0.0173339356598457 is:0.014646977660809342 are:0.013775116367479339 their:0.013467185761410346 This:0.012018317216106501 tho:0.011250190023863375 for:0.010765331316098308 as:0.010490281266805287 said:0.010359559923909774 to:0.010240666959168305 :0.38207247869892863 +the:0.37886682915560904 on:0.13081795905692664 a:0.051688082947571795 in:0.04896279895283056 of:0.03972482200225896 said:0.036624859179343376 this:0.02614270330503656 tho:0.0240610335598793 his:0.019936872312461204 The:0.019715204997050255 our:0.018847887927727156 state:0.017738278787937222 from:0.016147305657179364 by:0.015323100748341548 school:0.014384438209231538 In:0.013682826987497433 county:0.01134820932161653 tbe:0.010999399726889738 any:0.009649843965983307 :0.09433754319862847 +of:0.09555695440361152 .:0.06107307002449883 to:0.0561539073687123 &:0.04687263882401373 :0.03373860719700135 at:0.03031924840009773 and:0.030181934210987277 the:0.021589011273615167 from:0.018915609768724362 by:0.016859275165468892 in:0.016799465875663337 Mr.:0.015594801021889806 ,:0.011846572956778158 S.:0.01184050616392254 -:0.010577586709071388 ::0.009879778010068762 for:0.00927966072238458 A.:0.00923750772322469 P.:0.009222231817234233 :0.48346163236303136 +to:0.5090617019853761 I:0.08781365711991086 and:0.0802225939431932 not:0.04272386545941632 will:0.03302880303244354 would:0.021350928237565247 you:0.020713497165900315 should:0.018623626910003577 we:0.017371397020417133 who:0.014461888983122699 can:0.014204454232352847 We:0.012642092450604162 may:0.011832593574046587 shall:0.010513016798340135 must:0.009551480948766398 they:0.009191892916391275 To:0.008465396056740966 1:0.00717610668170479 cannot:0.007020998795996618 :0.06303000768770717 +it:0.1543231983437913 they:0.0792669425479893 as:0.07812426419645344 It:0.07223094311597882 which:0.06144655867828573 that:0.05092610010943544 he:0.04570373571040352 and:0.038952162986208884 you:0.03884270553603169 we:0.030790975255356897 who:0.02612459063094389 I:0.020808418379151622 what:0.013549856546986223 one:0.012838973059299964 You:0.010890397716375837 They:0.01063102334689155 she:0.010080166872829926 He:0.009744049909400764 men:0.00903374108669224 :0.22469119597149298 +the:0.3371065641112552 of:0.08373730071228101 a:0.06200619106184076 and:0.0531158799518588 to:0.03699812798316762 in:0.029103195621127044 tho:0.01914056105665267 The:0.015277364865440561 or:0.013455741453720015 with:0.013387642112679482 for:0.013257065499520774 their:0.013257057761545501 more:0.009712143408306234 by:0.009423192795488023 .:0.009318387938858997 an:0.009197818247276566 his:0.009189866188022418 tbe:0.008389384683022635 all:0.008095400947177747 :0.24583111360075796 +they:0.14537811643011414 there:0.09294337514818114 There:0.07014490717245216 we:0.06284216942223836 who:0.058580003301012616 and:0.056233700525431855 They:0.0389470570214388 which:0.03289683666634454 you:0.03177741508671717 that:0.024079290209988218 We:0.021601934006141424 men:0.01790367798947035 people:0.009333202373563266 as:0.008924262304573771 these:0.007076974378538834 These:0.0067678375769657465 them:0.005945317813525504 You:0.0051076110490763955 it:0.004479981215008482 :0.2980363303092172 +of:0.09129790931378902 the:0.07369883040827747 and:0.047842263382354346 in:0.04189055351593407 to:0.04045875475680249 a:0.03542341257202578 be:0.02020462051672066 for:0.01979292654746225 was:0.01760256398103379 at:0.017380150555488715 is:0.014984483003968216 with:0.014047653760730413 by:0.01374644383819499 :0.012670486581795598 In:0.01200961464556976 or:0.011563835749786333 from:0.011391516893522809 are:0.011273104484969465 that:0.010755276030689069 :0.4809655994608848 +and:0.08995317707915026 to:0.06844710404109794 of:0.04605142056172993 the:0.04074574508561307 which:0.02479116931334353 that:0.023764822140213245 re-:0.020841117231308055 in:0.020803825395358622 for:0.020278423301550053 :0.018417753428486977 not:0.016860793136637672 con-:0.016444405871234195 is:0.014386481772210856 or:0.014080680914153714 be-:0.01352268143271276 I:0.01317002660943805 was:0.011429878269381662 dis-:0.011196807025842847 he:0.01113106290024311 :0.5026826244902934 +the:0.3189945597146123 a:0.08246150175531013 of:0.056274014751005484 The:0.046302782191540916 and:0.03255837833883677 tho:0.029826713752978455 his:0.019952716449164815 our:0.01959778925449785 to:0.017919211247952937 tbe:0.017639499605101024 their:0.015554805477860983 A:0.01282522795538141 or:0.012463500026881597 for:0.011975419543153728 old:0.011936810563775707 her:0.010780526658088532 other:0.009357440651930567 at:0.00902554395896626 its:0.008784690749795612 :0.2547688673531649 +the:0.1578508040885594 his:0.11970282671739704 of:0.10585600471253714 and:0.08259743067365051 their:0.06420076132805325 to:0.04780694457171703 my:0.042518586399374336 with:0.03949459838684094 her:0.03392501351530818 in:0.025756852430088722 its:0.024584082257031258 your:0.023931786347667617 our:0.02387756506371357 or:0.019986165514521436 own:0.019362110499041102 a:0.01841522319120029 for:0.01612983843291534 human:0.012644151181286737 from:0.010545404323390621 :0.10981385036570548 +and:0.08995317707915026 to:0.06844710404109794 of:0.04605142056172993 the:0.04074574508561307 which:0.02479116931334353 that:0.023764822140213245 re-:0.020841117231308055 in:0.020803825395358622 for:0.020278423301550053 :0.018417753428486977 not:0.016860793136637672 con-:0.016444405871234195 is:0.014386481772210856 or:0.014080680914153714 be-:0.01352268143271276 I:0.01317002660943805 was:0.011429878269381662 dis-:0.011196807025842847 he:0.01113106290024311 :0.5026826244902934 +is:0.0825857289181187 and:0.056256167724876446 was:0.042170262361982264 simply:0.039830680419634654 not:0.036038358367607506 it:0.03363144612289489 but:0.021488163174660815 that:0.016961058371756543 it,:0.015233390717041427 them:0.015158747594838257 you:0.01484931362901644 be:0.014213963517755028 ;:0.013708759570162212 to:0.013192200079255976 Is:0.012944744695976538 him:0.012772549419154244 me:0.012430121561862201 made:0.011755492780326187 merely:0.010555617241881034 :0.5232232337311986 +and:0.10853425492764285 of:0.08801058420005481 to:0.0735171596064402 the:0.06876809204787412 on:0.02673582249935408 in:0.02673026856072186 :0.02370899600903901 that:0.022464497412133532 from:0.019285968362235437 at:0.016716254465925326 for:0.015216316461005732 by:0.013793089370241396 was:0.013744420321882762 or:0.013076054604071569 Mrs.:0.012475042181832244 as:0.012296041515337839 be:0.011549162076508239 .:0.010852652091314773 is:0.01072215407060232 :0.41080316921578186 +and:0.08995317707915026 to:0.06844710404109794 of:0.04605142056172993 the:0.04074574508561307 which:0.02479116931334353 that:0.023764822140213245 re-:0.020841117231308055 in:0.020803825395358622 for:0.020278423301550053 :0.018417753428486977 not:0.016860793136637672 con-:0.016444405871234195 is:0.014386481772210856 or:0.014080680914153714 be-:0.01352268143271276 I:0.01317002660943805 was:0.011429878269381662 dis-:0.011196807025842847 he:0.01113106290024311 :0.5026826244902934 +be:0.2581166793908182 was:0.12331354330439841 been:0.0982819081400626 is:0.0667047699086863 and:0.04903207987196188 were:0.04694037327186499 are:0.04560140194741325 being:0.028972899102285107 he:0.01766791222572194 have:0.017546133854346627 has:0.016356143116390963 bo:0.012226376158197012 Is:0.011414555286487658 had:0.010503250452948403 hereby:0.01041290830840989 case:0.009976724790875576 I:0.008286373371784405 it:0.008044298294924448 as:0.007576198727653516 :0.1520254704747688 +the:0.27506987469597227 such:0.06873041382759325 these:0.04727979080265662 best:0.04192975586376462 his:0.04029109237645696 our:0.03780526642218449 other:0.03775645378798473 business:0.037236193451518344 their:0.03638129538948246 and:0.03589804239320257 The:0.027168100709130196 public:0.02440198809619241 American:0.02406830445374069 that:0.021823234050363727 whose:0.019425009553477507 your:0.01716979261470282 agricultural:0.017117704031208623 tho:0.016864284115608735 great:0.01621598958564575 :0.15636741377911317 +;:0.05155335567606569 it,:0.020288207561626657 him,:0.013587773267112134 and:0.01280658537451392 is:0.011950999976277302 them,:0.010155758071824242 time,:0.009815209187906057 ,:0.006535966154636323 nothing:0.006258660164199393 here,:0.005506208594046931 way,:0.005225248807617311 was:0.005204113011772451 out,:0.004853397043352867 country,:0.004804771587185571 me,:0.004636838650475264 up,:0.004499813414048177 there,:0.004338463056149863 so,:0.0043017913039706795 man,:0.004267722444851045 :0.8084091166523681 +the:0.1709142203906834 a:0.13797542441200858 of:0.0959341456617873 and:0.0589690322450568 at:0.04066631880413193 to:0.04049467194265607 in:0.03156775249496645 for:0.028440778897990005 an:0.020709558460090566 as:0.018404627099763583 his:0.016423858171661265 that:0.016359371658423747 by:0.015123392841657672 tho:0.011942027422745971 The:0.011762759825796477 with:0.011412580893469405 their:0.010926978570604899 is:0.010639666661969065 on:0.010055209821800087 :0.24027762372273673 +to:0.14125891787076003 I:0.12088985743464849 would:0.07139529606831682 we:0.06963232471803919 they:0.06598875149512418 who:0.05745433450457656 could:0.04586003223182048 must:0.0425439316804621 should:0.03752357072526081 will:0.03705309036171995 may:0.03593771798862892 you:0.032666931762560365 not:0.029287952890698833 and:0.028487853579720043 might:0.0272776721426378 We:0.02641265255001969 shall:0.02217885345974634 1:0.014041948668512536 can:0.01394542493089804 :0.07916288493584879 +to:0.6764728139811514 not:0.055471332820721544 will:0.04604613550883604 would:0.039077620182920894 and:0.028468540048656458 can:0.021606623142846428 may:0.020177193288516932 could:0.017401490162472576 To:0.015609856721563222 should:0.009683512442066264 shall:0.008309259555092817 it:0.007883575394416734 I:0.006665283850174623 they:0.005618518025549803 cannot:0.0045717820582975455 must:0.004301190119380583 might:0.004248919360097465 which:0.00403531645962041 we:0.0038642676436721336 :0.019486769233946058 +a:0.4251461441597993 the:0.2637622698825316 The:0.039866435211163016 of:0.03224435789694646 his:0.02451744289782865 this:0.02313196302997604 any:0.01993489902164346 A:0.01761537279099606 no:0.01573945706816246 their:0.015302130969000098 our:0.014281082936988812 tho:0.014198237198770735 in:0.011015295691919802 for:0.009476816252021307 with:0.009178185495789411 its:0.009115634031407447 such:0.00798646908869452 and:0.0070057582047854195 very:0.006860604853962318 :0.03262144331761311 +the:0.11919516938815296 of:0.07230453158552728 and:0.05781056740443249 a:0.043018564803886335 to:0.031305092790907506 in:0.020848713353460488 at:0.014270110001066288 .:0.012526810245749479 :0.012413283442322082 for:0.011719122709941797 by:0.010808400946589808 or:0.010404172990115616 The:0.01003576004804544 with:0.009811868184449042 tho:0.009295902015355835 was:0.008924239095331684 that:0.008672304223433876 is:0.0085591147338948 be:0.008335143826716943 :0.5187411282106204 +part:0.062325847554271264 one:0.06063111468590399 some:0.037306181508129276 out:0.030654329894436005 members:0.022088577251346518 and:0.01924141362015411 tion:0.018787037941101363 portion:0.018051689715010356 side:0.017943951891416163 that:0.016507907061938807 member:0.01593843659970584 office:0.01574566960076909 majority:0.0154104008831532 front:0.014054186394075671 parts:0.013607560627939948 payment:0.013458169751259314 all:0.013339146994107673 end:0.012284189708442875 time:0.011200658322325753 :0.5704235299945127 +to:0.45591938747856386 will:0.0984334872574704 and:0.07790464834376332 would:0.05491049321015739 not:0.03771597336068726 I:0.025401968517207656 could:0.020351393954508475 they:0.019784799443650226 we:0.01806523284876896 can:0.0180237214389489 should:0.013995342857935715 may:0.013037758869119011 you:0.012750071230894448 shall:0.011858664200192822 must:0.011150735853479797 who:0.008018753432929633 might:0.0066616272640538455 which:0.00665673706887695 that:0.006266255754920719 :0.08209294761387063 +and:0.08995317707915026 to:0.06844710404109794 of:0.04605142056172993 the:0.04074574508561307 which:0.02479116931334353 that:0.023764822140213245 re-:0.020841117231308055 in:0.020803825395358622 for:0.020278423301550053 :0.018417753428486977 not:0.016860793136637672 con-:0.016444405871234195 is:0.014386481772210856 or:0.014080680914153714 be-:0.01352268143271276 I:0.01317002660943805 was:0.011429878269381662 dis-:0.011196807025842847 he:0.01113106290024311 :0.5026826244902934 +be:0.1647632718506242 was:0.16057145500759973 been:0.10681751046522475 is:0.06104290164609036 were:0.06059767226189494 and:0.05079506284645623 Action:0.04725587510756896 are:0.04085625479419625 being:0.029129331330110107 have:0.02901638553992741 had:0.026985949583459054 he:0.025703870016925826 has:0.02417800955337024 ever:0.01801553325099947 who:0.012085035556725018 Is:0.01092709781528905 that:0.010155035928841408 action:0.009852734081560403 now:0.009817059335102771 :0.1004339540280338 +of:0.2038913915215112 in:0.09973590170780161 to:0.09271609255048997 for:0.0732586225056744 and:0.0653741898350855 at:0.05057202975516091 with:0.04054404390956402 by:0.034644101815127816 from:0.03314411711432655 that:0.03277094620016412 on:0.03256144404990264 In:0.02544610977525884 all:0.022942052639964024 was:0.02088254323894211 is:0.02075119428621406 upon:0.015312626737560061 as:0.01463761403237034 but:0.010686033758741546 under:0.010187361029986889 :0.0989415835361534 +of:0.24572386984935993 to:0.09757402142281249 for:0.08864140224820266 by:0.06648322343653373 and:0.05973072279644126 that:0.056884496697648994 with:0.04887905388488835 in:0.048639875029738495 at:0.031542844167983586 is:0.025841566692630567 from:0.01902846689638077 on:0.01800275325803532 under:0.016788699244824373 as:0.015399950281618337 upon:0.015317166735981063 all:0.014959498156071298 was:0.012190043839968209 In:0.011697939844480728 have:0.011239267790637478 :0.09443513772576238 +had:0.304544160028753 have:0.19578781208861212 has:0.11841504018540756 was:0.07538171120748571 be:0.03811616336393681 been:0.0364787726989888 and:0.03599112752053285 were:0.023005255047154564 he:0.02186171139204442 having:0.01838811216093961 is:0.011101174647406594 I:0.008313799167634498 are:0.007646001870932032 not:0.0069226609139111045 bad:0.0062171276899293006 never:0.005848443916926496 havo:0.005311450210776639 then:0.005020894958613306 all:0.004504065425656971 :0.07014451550435763 +a:0.7616183024319081 that:0.035235516042755745 of:0.025205095354678263 A:0.02469879445904235 and:0.02110685415613225 the:0.017699995942325117 as:0.011952953887425219 is:0.010114548105371145 in:0.009322438472400786 with:0.007105584946875157 make:0.006834923173808053 only:0.0067104627025468926 any:0.0061323028329421546 to:0.005499401807909391 but:0.005454367704742581 or:0.005145465492144357 no:0.004927281795840809 by:0.004189647936488835 every:0.00414477378189968 :0.02590128897276309 +more:0.0261512576815755 due:0.024404688305041253 public:0.022453025520417676 good:0.022448121851858398 in:0.021618994462890027 time:0.017844913948294624 it:0.015307548087453198 risk:0.015197449598925765 large:0.013742844783312624 labor:0.01346575176082275 men:0.013210770438843243 costs:0.012873159266356689 life:0.012346634768504332 up:0.0123224024168316 out:0.012125075286567796 strength:0.01179402167470481 right:0.011493981911584019 work:0.011298455715990542 man:0.011017203681074735 :0.6978836988389504 +the:0.16252600296301706 of:0.09943636141121946 a:0.06972061183976204 to:0.05786006055271911 and:0.051901321414837935 be:0.037439623662398995 in:0.027926045399370266 is:0.026607440308126628 not:0.024117671416066706 was:0.023783954316327426 for:0.02116560723292378 or:0.019279992189698437 their:0.01878366798909115 his:0.0183649522149638 been:0.016598750070275194 are:0.014734104368434184 at:0.014726030078833321 no:0.01294859103405944 with:0.012367286558919744 :0.2687119249789553 +the:0.26386519669441033 Supreme:0.1154143911487878 District:0.057404157857186805 said:0.04550547260404532 Circuit:0.04238440202387232 County:0.03600691364685663 this:0.026359073663120052 tho:0.022313445462390297 of:0.019230055664861054 Probate:0.018357039185008233 and:0.018342907055221375 Superior:0.0175697373041927 that:0.017329999139557416 Police:0.01727501433278535 The:0.014131534827131722 Corporation:0.011959235259325454 preme:0.011407153032140065 by:0.007644219455518559 a:0.007199027986505335 :0.22930102365708313 +and:0.07558940021936399 recorded:0.030196237618668006 was:0.028917161578042846 made:0.027969746247669736 that:0.027730098932509103 o'clock:0.025060522019555328 up:0.023026552239529506 is:0.020398277211376416 found:0.02003101797656537 placed:0.017482208134164214 out:0.016937164562539058 place:0.016819459500107596 interest:0.016629321966808677 him:0.016002796715253755 situated:0.01573420479581609 it:0.015128305982428461 them:0.014715943643665314 part:0.014646613000297721 interested:0.014450471929902294 :0.5615344957257364 +the:0.1188820336400701 of:0.09417807580289607 and:0.07538655060191521 to:0.07033736191896665 a:0.03563690792199739 be:0.024972453990847923 or:0.024899509093903295 his:0.02076876619939878 on:0.019133014026715682 for:0.018639381490253078 was:0.017867552910372453 is:0.017807661408110517 their:0.017462364443265786 in:0.01598369068848567 are:0.014679784473706273 as:0.013747477737000588 that:0.012733139584454278 re-:0.012071296257421588 much:0.011822265381379305 :0.3619907124288394 +to:0.2588590546351532 will:0.09891698262655428 be-:0.08648199044369918 had:0.05653757780622499 has:0.053101344579387116 have:0.051844003059017645 not:0.03657810958025687 would:0.03474448423240829 I:0.029550039904477392 they:0.028631067299922423 and:0.024943231789905804 be­:0.021092763289938306 must:0.020313554875657346 may:0.01897800925556711 be¬:0.01812144307047875 we:0.01738282122762118 should:0.01561013845346399 shall:0.014755615036208857 who:0.013915515048513056 :0.09864225378554427 diff --git a/filename.pickle b/filename.pickle new file mode 100644 index 0000000..03dd3ef Binary files /dev/null and b/filename.pickle differ diff --git a/gonito.yaml b/gonito.yaml new file mode 100644 index 0000000..104ea91 --- /dev/null +++ b/gonito.yaml @@ -0,0 +1,14 @@ +description: zad8, trigram with left/right context embeddings +tags: + - neural-network + - left-to-right +params: + epochs: 3 + learning-rate: 0.0003 + vocab-size: 20000 + batch_s: 3200 + top_k_words: 20 +param-files: + - config/*.yaml +links: + - repo: "https://git.wmi.amu.edu.pl/s470618/challenging-america-word-gap-prediction" diff --git a/in-header.tsv b/in-header.tsv new file mode 100644 index 0000000..2463632 --- /dev/null +++ b/in-header.tsv @@ -0,0 +1 @@ +FileId Year LeftContext RightContext diff --git a/model-tri-2following-final.bin b/model-tri-2following-final.bin new file mode 100644 index 0000000..70263ac Binary files /dev/null and b/model-tri-2following-final.bin differ diff --git a/out-header.tsv b/out-header.tsv new file mode 100644 index 0000000..c780a90 --- /dev/null +++ b/out-header.tsv @@ -0,0 +1 @@ +Word diff --git a/test-A/hate-speech-info.tsv b/test-A/hate-speech-info.tsv new file mode 100644 index 0000000..c30f683 --- /dev/null +++ b/test-A/hate-speech-info.tsv @@ -0,0 +1,7414 @@ +0 0.0613 +0 0.0743 +0 0.0897 +0 0.0804 +0 0.1736 +0 0.1630 +0 0.2104 +0 0.0634 +0 0.1389 +0 0.0910 +0 0.0840 +0 0.1970 +0 0.1859 +0 0.1984 +0 0.1488 +0 0.0788 +0 0.0719 +0 0.1578 +0 0.0949 +0 0.1745 +0 0.0455 +0 0.0989 +0 0.0562 +0 0.1853 +0 0.0444 +0 0.0658 +0 0.5545 +0 0.1724 +0 0.1525 +0 0.1282 +0 0.1119 +0 0.0869 +0 0.2010 +0 0.0389 +0 0.0921 +0 0.1179 +0 0.0925 +0 0.1264 +0 0.3047 +0 0.0701 +0 0.1129 +0 0.5972 +0 0.0911 +0 0.6214 +0 0.7317 +0 0.1920 +1 0.8267 +0 0.1034 +0 0.1497 +0 0.4806 +0 0.2404 +0 0.1853 +0 0.1457 +0 0.1229 +0 0.0294 +0 0.1147 +0 0.1768 +0 0.1102 +0 0.6183 +0 0.0408 +0 0.1243 +0 0.2272 +0 0.0602 +0 0.0771 +0 0.1226 +0 0.0626 +0 0.0892 +0 0.2284 +0 0.0360 +0 0.3450 +0 0.0537 +0 0.0328 +0 0.0697 +0 0.1156 +0 0.0945 +0 0.0965 +0 0.1180 +0 0.2258 +0 0.1643 +0 0.3279 +0 0.0904 +0 0.0930 +0 0.0571 +0 0.1365 +0 0.0727 +0 0.1554 +0 0.2444 +0 0.2172 +0 0.1275 +0 0.1269 +0 0.1433 +0 0.0689 +0 0.1596 +0 0.0431 +1 0.8373 +0 0.0707 +0 0.1533 +0 0.6984 +0 0.0673 +0 0.0539 +0 0.0559 +0 0.2035 +0 0.0658 +0 0.0810 +0 0.0894 +0 0.1693 +0 0.0788 +0 0.0789 +0 0.3179 +0 0.7155 +0 0.0589 +0 0.0919 +0 0.1140 +0 0.1638 +0 0.0728 +0 0.5147 +0 0.5202 +0 0.0838 +0 0.1152 +0 0.0579 +0 0.1977 +0 0.2391 +0 0.0934 +0 0.1088 +0 0.0978 +0 0.1026 +0 0.0770 +0 0.1444 +0 0.5835 +0 0.0577 +0 0.1534 +1 0.7930 +0 0.1270 +0 0.1095 +0 0.0997 +0 0.1624 +0 0.0772 +0 0.2960 +0 0.1205 +0 0.2609 +0 0.0911 +0 0.0496 +0 0.0987 +0 0.0728 +0 0.1127 +0 0.0922 +0 0.0785 +0 0.0527 +0 0.1637 +0 0.1151 +0 0.3323 +0 0.2331 +0 0.0623 +0 0.3214 +0 0.1425 +0 0.1671 +0 0.0754 +0 0.1590 +0 0.0652 +0 0.0654 +0 0.0501 +0 0.0610 +0 0.2684 +0 0.0506 +0 0.2260 +0 0.1320 +0 0.0796 +0 0.1380 +0 0.1117 +0 0.0596 +0 0.0896 +0 0.0727 +0 0.0831 +0 0.1314 +0 0.2153 +0 0.0666 +0 0.0598 +0 0.0499 +0 0.0418 +0 0.0750 +0 0.1166 +0 0.2350 +0 0.0695 +0 0.5681 +0 0.0303 +0 0.1183 +0 0.0858 +0 0.0942 +0 0.3044 +1 0.8359 +0 0.1976 +0 0.1767 +0 0.1175 +0 0.0826 +0 0.1118 +0 0.2118 +0 0.0942 +0 0.1498 +0 0.0346 +0 0.4065 +0 0.1087 +0 0.1042 +0 0.5890 +0 0.1669 +0 0.0867 +0 0.1469 +0 0.2441 +0 0.0749 +0 0.6077 +0 0.0743 +0 0.1577 +0 0.1554 +0 0.1256 +0 0.1454 +0 0.1752 +0 0.0772 +0 0.1727 +0 0.5707 +0 0.1528 +0 0.2374 +0 0.1736 +0 0.0735 +0 0.1113 +0 0.1218 +0 0.1162 +0 0.0880 +0 0.3255 +0 0.0710 +0 0.1199 +0 0.0901 +0 0.0743 +0 0.1273 +0 0.2120 +0 0.0513 +0 0.1411 +0 0.1783 +0 0.0423 +0 0.0836 +0 0.1350 +0 0.1625 +0 0.0896 +0 0.0675 +0 0.5730 +0 0.2182 +0 0.1662 +0 0.0441 +1 0.8790 +0 0.0781 +0 0.1059 +0 0.0903 +0 0.1573 +0 0.0958 +0 0.1279 +0 0.1315 +0 0.0559 +0 0.1156 +0 0.0496 +0 0.1109 +0 0.0700 +0 0.1637 +0 0.1055 +0 0.0828 +0 0.2106 +0 0.0893 +0 0.1092 +0 0.1105 +0 0.0951 +0 0.0884 +0 0.1835 +0 0.2933 +0 0.1149 +0 0.1734 +0 0.1664 +0 0.2119 +0 0.0617 +0 0.0355 +0 0.1041 +0 0.1251 +0 0.0862 +0 0.0564 +0 0.2632 +0 0.0514 +0 0.0891 +0 0.1344 +0 0.2985 +0 0.0425 +0 0.0765 +0 0.1021 +0 0.2947 +0 0.0827 +0 0.2152 +0 0.1348 +0 0.6885 +0 0.2112 +0 0.1193 +0 0.1760 +0 0.1000 +0 0.1124 +0 0.0549 +0 0.1215 +0 0.1119 +0 0.2452 +0 0.0985 +0 0.0741 +0 0.0520 +0 0.1825 +0 0.0782 +0 0.1169 +0 0.0941 +0 0.0815 +0 0.1878 +0 0.1021 +0 0.1941 +0 0.1810 +0 0.2469 +0 0.0375 +0 0.0867 +0 0.1257 +0 0.0852 +0 0.5521 +1 0.7543 +0 0.1360 +0 0.1830 +0 0.1058 +0 0.3024 +0 0.0552 +0 0.2527 +0 0.0804 +0 0.0646 +0 0.1235 +0 0.1076 +1 0.7550 +0 0.2333 +0 0.1126 +0 0.1189 +0 0.3353 +0 0.1811 +0 0.0486 +0 0.4120 +0 0.1129 +0 0.0753 +0 0.0893 +0 0.0471 +0 0.0857 +0 0.0565 +0 0.2186 +0 0.2967 +0 0.1175 +0 0.0543 +0 0.2645 +0 0.1427 +0 0.1727 +0 0.2261 +0 0.2922 +0 0.1321 +0 0.0593 +0 0.1616 +0 0.0760 +0 0.0902 +0 0.2412 +0 0.0732 +0 0.0765 +0 0.0814 +0 0.1585 +0 0.1334 +0 0.0753 +0 0.0887 +0 0.1518 +0 0.0785 +0 0.0830 +0 0.2140 +0 0.0537 +1 0.8442 +0 0.1161 +0 0.2418 +0 0.0791 +0 0.3127 +0 0.1079 +0 0.1579 +0 0.1269 +0 0.0468 +0 0.1048 +0 0.0489 +0 0.1087 +0 0.1639 +0 0.2841 +0 0.0882 +0 0.0788 +0 0.1371 +0 0.2118 +0 0.0631 +0 0.0976 +0 0.1345 +0 0.0682 +0 0.0788 +1 0.7695 +0 0.1098 +0 0.0483 +0 0.0522 +0 0.1122 +0 0.0883 +0 0.0586 +0 0.3012 +0 0.0431 +0 0.2440 +0 0.7141 +0 0.3153 +0 0.1418 +0 0.1204 +0 0.1603 +0 0.1214 +0 0.1116 +0 0.0532 +0 0.1481 +0 0.1016 +0 0.5094 +0 0.1492 +0 0.0369 +0 0.0948 +0 0.6911 +0 0.2335 +0 0.6754 +0 0.0613 +0 0.0579 +0 0.0831 +0 0.0559 +0 0.2895 +0 0.0704 +0 0.0872 +0 0.2618 +0 0.0581 +0 0.1209 +0 0.2060 +0 0.1029 +0 0.1053 +0 0.3179 +0 0.2468 +0 0.1943 +0 0.0659 +0 0.1118 +0 0.1254 +0 0.0537 +0 0.0559 +0 0.0580 +0 0.1585 +0 0.0544 +0 0.1632 +0 0.0766 +0 0.0896 +0 0.4751 +0 0.0782 +0 0.1703 +0 0.0749 +0 0.3568 +0 0.0818 +0 0.0775 +0 0.3879 +0 0.1878 +0 0.0711 +0 0.1076 +0 0.1132 +0 0.1456 +0 0.2003 +0 0.0935 +0 0.1000 +0 0.1058 +0 0.0604 +0 0.2475 +0 0.0627 +0 0.1423 +0 0.0571 +0 0.0775 +0 0.1207 +0 0.0459 +1 0.7947 +0 0.1764 +0 0.0719 +0 0.2371 +0 0.2407 +0 0.0681 +0 0.1958 +0 0.0598 +0 0.0520 +0 0.1523 +0 0.1703 +0 0.0729 +0 0.2019 +0 0.0598 +0 0.0853 +1 0.8564 +0 0.3015 +0 0.6850 +0 0.7080 +0 0.0478 +0 0.0547 +0 0.0840 +0 0.3081 +0 0.0503 +0 0.1147 +0 0.2790 +1 0.7539 +0 0.1360 +0 0.0727 +0 0.2655 +0 0.0952 +0 0.0776 +0 0.1090 +0 0.2095 +0 0.0527 +0 0.4972 +0 0.0899 +1 0.8251 +0 0.0540 +0 0.0628 +0 0.2291 +0 0.0730 +0 0.0454 +0 0.1203 +0 0.1549 +1 0.7972 +0 0.1424 +0 0.2689 +0 0.1385 +0 0.0692 +0 0.1846 +0 0.1557 +0 0.0799 +0 0.0562 +0 0.0583 +0 0.0851 +0 0.0824 +0 0.0925 +0 0.1162 +0 0.0641 +0 0.0925 +0 0.0789 +0 0.0831 +0 0.1056 +0 0.0698 +0 0.0913 +0 0.1726 +0 0.1461 +0 0.1526 +0 0.6099 +0 0.1500 +0 0.0897 +0 0.1790 +0 0.1798 +0 0.1566 +0 0.0860 +0 0.2093 +0 0.0806 +0 0.1777 +0 0.0941 +0 0.1234 +0 0.1016 +0 0.0853 +0 0.1109 +0 0.2025 +0 0.1491 +0 0.0783 +0 0.0640 +0 0.1195 +0 0.0796 +0 0.1595 +0 0.0547 +0 0.1289 +0 0.1744 +0 0.1009 +0 0.1366 +0 0.1026 +0 0.1012 +1 0.8585 +0 0.1129 +0 0.2305 +0 0.2212 +0 0.0762 +0 0.1147 +0 0.3258 +0 0.3514 +0 0.5855 +0 0.1394 +0 0.0985 +0 0.1546 +0 0.2058 +0 0.0801 +0 0.0706 +0 0.0872 +0 0.4666 +0 0.5470 +0 0.0610 +0 0.0723 +0 0.1192 +0 0.0904 +0 0.0464 +0 0.5338 +0 0.1023 +0 0.1056 +0 0.3569 +0 0.3002 +0 0.1820 +0 0.2569 +0 0.0633 +0 0.0845 +0 0.0695 +0 0.0437 +0 0.0824 +0 0.1180 +0 0.0753 +0 0.0719 +0 0.0581 +0 0.0945 +0 0.0421 +0 0.0722 +0 0.0592 +0 0.0767 +0 0.1491 +1 0.8119 +0 0.0847 +0 0.1007 +0 0.1249 +0 0.0524 +0 0.1016 +0 0.0453 +0 0.0461 +0 0.0973 +0 0.0502 +0 0.2358 +0 0.0988 +0 0.0963 +1 0.8442 +0 0.0883 +0 0.0617 +0 0.0666 +0 0.1627 +0 0.1297 +0 0.1965 +0 0.1079 +0 0.1247 +0 0.2036 +0 0.1639 +0 0.0918 +0 0.0641 +0 0.4403 +0 0.0501 +0 0.0861 +0 0.0758 +0 0.1167 +0 0.1071 +0 0.0800 +0 0.1065 +0 0.0456 +0 0.7298 +0 0.1479 +0 0.1075 +0 0.2200 +0 0.1015 +0 0.0558 +0 0.1403 +0 0.0583 +1 0.8676 +1 0.7771 +0 0.5577 +0 0.1272 +0 0.1305 +0 0.0882 +0 0.4481 +0 0.2721 +0 0.1353 +1 0.7566 +0 0.3549 +0 0.1643 +0 0.1083 +0 0.1022 +0 0.1046 +0 0.1835 +0 0.1931 +0 0.1896 +0 0.0619 +0 0.2113 +0 0.0400 +0 0.1226 +0 0.0775 +0 0.1232 +0 0.1003 +0 0.0469 +0 0.2786 +0 0.0856 +0 0.5896 +0 0.2289 +0 0.1094 +0 0.2713 +0 0.2425 +0 0.6428 +1 0.8104 +0 0.0344 +0 0.2807 +0 0.1218 +0 0.0841 +0 0.0941 +0 0.1840 +0 0.0614 +0 0.1192 +0 0.1167 +0 0.1769 +0 0.1242 +0 0.0450 +0 0.0769 +0 0.0375 +0 0.1168 +0 0.0664 +0 0.0377 +0 0.0952 +0 0.2445 +0 0.1533 +0 0.1925 +0 0.1251 +0 0.4210 +0 0.0516 +0 0.0915 +0 0.1745 +0 0.0786 +0 0.2294 +0 0.0948 +0 0.0445 +0 0.0431 +0 0.1617 +0 0.1961 +0 0.1036 +0 0.2022 +0 0.1029 +0 0.2098 +0 0.0463 +0 0.1480 +0 0.0873 +0 0.1047 +0 0.2074 +0 0.0692 +0 0.2826 +0 0.1838 +0 0.0570 +0 0.3861 +0 0.1144 +0 0.0652 +0 0.1499 +0 0.0559 +0 0.3675 +0 0.1265 +0 0.2044 +0 0.1211 +0 0.1139 +0 0.3184 +0 0.1650 +0 0.0719 +0 0.1167 +0 0.1492 +0 0.0618 +0 0.2100 +0 0.1496 +0 0.0983 +0 0.0976 +0 0.0693 +0 0.0388 +0 0.0552 +0 0.0790 +0 0.1206 +0 0.1131 +0 0.0859 +0 0.2002 +0 0.0475 +0 0.3041 +0 0.0676 +0 0.0880 +0 0.0557 +0 0.2263 +0 0.4068 +0 0.0850 +0 0.1061 +0 0.2720 +0 0.1199 +0 0.3501 +0 0.2977 +0 0.0665 +0 0.1529 +0 0.0524 +0 0.0696 +0 0.1483 +0 0.0512 +0 0.0831 +0 0.1859 +0 0.1042 +0 0.1085 +0 0.1057 +0 0.0712 +0 0.3668 +0 0.1059 +0 0.0884 +0 0.0526 +0 0.4708 +0 0.1212 +0 0.1252 +0 0.2760 +0 0.2872 +0 0.3799 +0 0.7193 +0 0.1143 +0 0.1260 +0 0.0795 +0 0.1040 +0 0.1054 +0 0.0862 +0 0.3240 +0 0.1976 +0 0.1024 +0 0.2342 +0 0.1559 +0 0.1323 +0 0.0737 +0 0.1294 +0 0.1274 +0 0.2410 +0 0.0984 +0 0.1279 +0 0.0705 +0 0.2278 +0 0.1751 +0 0.2317 +0 0.3977 +0 0.0419 +0 0.2371 +0 0.4851 +0 0.1716 +0 0.4097 +0 0.0716 +0 0.3368 +0 0.2261 +0 0.0936 +0 0.0938 +0 0.0784 +0 0.2796 +0 0.1480 +0 0.0752 +0 0.1771 +0 0.0791 +0 0.1154 +0 0.0515 +0 0.1212 +0 0.1807 +0 0.5986 +0 0.0797 +0 0.0961 +0 0.1441 +0 0.1583 +0 0.2148 +0 0.1539 +0 0.0623 +0 0.2009 +0 0.0560 +0 0.0530 +0 0.3605 +0 0.1968 +0 0.1311 +0 0.1017 +0 0.1622 +0 0.1135 +0 0.1252 +0 0.0980 +0 0.0926 +0 0.0950 +0 0.2835 +0 0.3855 +0 0.2802 +0 0.1476 +0 0.1112 +0 0.1385 +0 0.7454 +0 0.1387 +0 0.0991 +0 0.1316 +0 0.3629 +0 0.0943 +0 0.5272 +0 0.1592 +0 0.0618 +0 0.0532 +0 0.1163 +0 0.0921 +0 0.0637 +0 0.7024 +0 0.1344 +0 0.1466 +0 0.1225 +0 0.5072 +0 0.1070 +0 0.2052 +0 0.0576 +0 0.1106 +0 0.0844 +0 0.0600 +0 0.0543 +0 0.1431 +0 0.2277 +0 0.0890 +0 0.1714 +1 0.7651 +0 0.2419 +0 0.2885 +0 0.0980 +0 0.0525 +0 0.0759 +0 0.0794 +0 0.3644 +0 0.1475 +0 0.0549 +0 0.1296 +0 0.4498 +0 0.1969 +0 0.6120 +0 0.1214 +0 0.0646 +0 0.0497 +0 0.1597 +0 0.0615 +0 0.1207 +0 0.1480 +0 0.0486 +0 0.1236 +0 0.0434 +0 0.1423 +0 0.2074 +0 0.1362 +0 0.1210 +0 0.1381 +0 0.1605 +0 0.0613 +0 0.0585 +0 0.1154 +0 0.1383 +1 0.9017 +0 0.0754 +0 0.0993 +0 0.0483 +0 0.1505 +0 0.1248 +0 0.0656 +0 0.1260 +0 0.2193 +0 0.1886 +0 0.0479 +0 0.0859 +0 0.0980 +0 0.1848 +0 0.0974 +0 0.0702 +0 0.0854 +0 0.0561 +0 0.1077 +0 0.0719 +0 0.0791 +0 0.1264 +0 0.0706 +0 0.0554 +0 0.0869 +0 0.1066 +0 0.0828 +0 0.0987 +0 0.2095 +0 0.0820 +0 0.3714 +0 0.1125 +0 0.1816 +0 0.3201 +0 0.0591 +0 0.5748 +0 0.0636 +0 0.1373 +0 0.1558 +0 0.2130 +0 0.1091 +0 0.1241 +0 0.0905 +0 0.2689 +0 0.0665 +0 0.2396 +0 0.4407 +0 0.0840 +0 0.1705 +0 0.0897 +0 0.3047 +0 0.3275 +0 0.1238 +0 0.0678 +0 0.1611 +0 0.0489 +0 0.0530 +0 0.0849 +0 0.1010 +0 0.0668 +0 0.0609 +0 0.0513 +0 0.0885 +0 0.1301 +0 0.1487 +1 0.7622 +0 0.1732 +0 0.0765 +0 0.7149 +0 0.1540 +0 0.1293 +0 0.2192 +0 0.1366 +0 0.0574 +0 0.4559 +0 0.2173 +0 0.0385 +0 0.1231 +0 0.0767 +0 0.0463 +0 0.0585 +0 0.1901 +0 0.1496 +0 0.2979 +0 0.3012 +0 0.4739 +0 0.1212 +0 0.0532 +0 0.5838 +0 0.5229 +0 0.0765 +0 0.2243 +0 0.1269 +0 0.0992 +0 0.5110 +0 0.1154 +0 0.0623 +0 0.0824 +0 0.0543 +0 0.1252 +1 0.7833 +0 0.2324 +0 0.0537 +0 0.1594 +0 0.1580 +0 0.0528 +0 0.2884 +0 0.1775 +0 0.1605 +0 0.1236 +0 0.2697 +0 0.0805 +0 0.0735 +0 0.0769 +0 0.1075 +0 0.0642 +0 0.1830 +0 0.1235 +0 0.1585 +0 0.0770 +0 0.6770 +1 0.7507 +0 0.0418 +0 0.1492 +0 0.1651 +0 0.0708 +0 0.1427 +0 0.1265 +0 0.1123 +0 0.0671 +0 0.1154 +0 0.1130 +0 0.1795 +0 0.0519 +0 0.1043 +0 0.0993 +0 0.1639 +0 0.0990 +0 0.0728 +0 0.2122 +0 0.1006 +0 0.2212 +0 0.0488 +0 0.0776 +0 0.0811 +0 0.1526 +0 0.3451 +0 0.3077 +0 0.0526 +0 0.1514 +0 0.0946 +0 0.2002 +0 0.1088 +0 0.1078 +0 0.0931 +0 0.0807 +0 0.2154 +0 0.5529 +0 0.1784 +0 0.1105 +0 0.2980 +0 0.1015 +0 0.0780 +0 0.1063 +0 0.3361 +0 0.1586 +0 0.2186 +0 0.1921 +0 0.1478 +0 0.0849 +0 0.2390 +0 0.0437 +0 0.0963 +0 0.0968 +0 0.0932 +0 0.0811 +0 0.0837 +0 0.0896 +0 0.0875 +0 0.0940 +0 0.0792 +0 0.1000 +0 0.1237 +0 0.1413 +0 0.0781 +0 0.1247 +0 0.2106 +0 0.0835 +0 0.2919 +0 0.1128 +1 0.7797 +0 0.2073 +0 0.1585 +0 0.0420 +0 0.0593 +0 0.1001 +0 0.1859 +0 0.0618 +0 0.1930 +0 0.1262 +0 0.0580 +0 0.0854 +0 0.0756 +0 0.3582 +0 0.0462 +0 0.0652 +0 0.0663 +0 0.0943 +0 0.0651 +0 0.1076 +0 0.0668 +0 0.1623 +0 0.0835 +0 0.1304 +0 0.6637 +0 0.0623 +0 0.1588 +0 0.0815 +0 0.0981 +0 0.1937 +0 0.7049 +0 0.1320 +0 0.0419 +0 0.2814 +0 0.0651 +0 0.0791 +0 0.2123 +0 0.1460 +0 0.1456 +0 0.2426 +0 0.0390 +1 0.8334 +0 0.0485 +0 0.0521 +0 0.1060 +0 0.0988 +0 0.0506 +0 0.0738 +0 0.2272 +0 0.1366 +0 0.1625 +0 0.1717 +0 0.1974 +0 0.0492 +0 0.1274 +0 0.0741 +0 0.1185 +0 0.2662 +0 0.4514 +0 0.0856 +0 0.0841 +0 0.0451 +0 0.0706 +0 0.1131 +0 0.3852 +0 0.0365 +0 0.1273 +0 0.2040 +0 0.1468 +0 0.2006 +0 0.0670 +0 0.0940 +0 0.1371 +0 0.0964 +0 0.3210 +0 0.1614 +0 0.2190 +0 0.3850 +0 0.0998 +0 0.0989 +0 0.1161 +0 0.6525 +0 0.0567 +0 0.0682 +0 0.1394 +0 0.0805 +0 0.4510 +0 0.3080 +0 0.2175 +0 0.1959 +0 0.0438 +0 0.0383 +0 0.1693 +0 0.1249 +0 0.0819 +0 0.4248 +0 0.0329 +0 0.1149 +0 0.1036 +0 0.0657 +0 0.1580 +0 0.2073 +0 0.2149 +0 0.1344 +0 0.4233 +0 0.0534 +0 0.1515 +0 0.1175 +0 0.0662 +0 0.0905 +0 0.1499 +0 0.0615 +0 0.0652 +0 0.1724 +0 0.0840 +0 0.0976 +0 0.2775 +0 0.0828 +0 0.1155 +0 0.2482 +0 0.1782 +0 0.0976 +1 0.7587 +0 0.2223 +0 0.1210 +0 0.1235 +0 0.1095 +0 0.3009 +1 0.8480 +0 0.1762 +0 0.2191 +0 0.1118 +0 0.3436 +0 0.1327 +0 0.1470 +0 0.5932 +0 0.0997 +0 0.0647 +0 0.0944 +0 0.0703 +0 0.0462 +0 0.0794 +0 0.2286 +0 0.1867 +0 0.1390 +0 0.0645 +0 0.0491 +1 0.8384 +0 0.0873 +0 0.2915 +0 0.1035 +0 0.1055 +0 0.1500 +0 0.0620 +0 0.0650 +0 0.1522 +0 0.1130 +0 0.1408 +0 0.3429 +0 0.5311 +0 0.0428 +0 0.2054 +0 0.0732 +0 0.0834 +0 0.2654 +0 0.7390 +0 0.2318 +0 0.1965 +0 0.0771 +0 0.0763 +0 0.0649 +0 0.1801 +0 0.1909 +0 0.0953 +0 0.1020 +0 0.1543 +0 0.2149 +0 0.0392 +0 0.1725 +0 0.0665 +0 0.0497 +0 0.0986 +1 0.7887 +0 0.3052 +0 0.0554 +0 0.0454 +0 0.0989 +0 0.0913 +0 0.5809 +0 0.0752 +0 0.1499 +0 0.1088 +0 0.1304 +0 0.1119 +0 0.1047 +0 0.2467 +0 0.1398 +0 0.1099 +0 0.1224 +0 0.0573 +0 0.3865 +0 0.2081 +0 0.1519 +0 0.1427 +0 0.0859 +0 0.0562 +0 0.1165 +0 0.1904 +0 0.0394 +0 0.0909 +0 0.2637 +0 0.0336 +0 0.1050 +0 0.1474 +0 0.0434 +0 0.0804 +0 0.7057 +0 0.0860 +0 0.0392 +0 0.0681 +0 0.0656 +0 0.0652 +0 0.1665 +0 0.2767 +0 0.2297 +0 0.0540 +0 0.0982 +0 0.1135 +0 0.1805 +0 0.2253 +0 0.0882 +0 0.1008 +0 0.0724 +0 0.0984 +0 0.1415 +0 0.1061 +0 0.0483 +0 0.1815 +0 0.0985 +0 0.2608 +0 0.0541 +0 0.1428 +0 0.1342 +0 0.1094 +0 0.1036 +0 0.0496 +0 0.0563 +0 0.0722 +0 0.1271 +0 0.1499 +0 0.1335 +0 0.0602 +0 0.1372 +0 0.0885 +0 0.0579 +0 0.0668 +0 0.1074 +0 0.2050 +0 0.0400 +0 0.2982 +0 0.1317 +0 0.0534 +0 0.1489 +0 0.0841 +0 0.2311 +0 0.0765 +0 0.7020 +0 0.1471 +0 0.0914 +0 0.1554 +0 0.0508 +0 0.0873 +0 0.0461 +0 0.0828 +0 0.0648 +0 0.1406 +0 0.0842 +0 0.2073 +0 0.2323 +0 0.0680 +0 0.2029 +0 0.1009 +0 0.1365 +0 0.1509 +0 0.0700 +0 0.0749 +0 0.0670 +0 0.0540 +0 0.0444 +0 0.1469 +0 0.1329 +0 0.1798 +0 0.1636 +0 0.1447 +0 0.0550 +0 0.1490 +0 0.0584 +0 0.1288 +0 0.5520 +0 0.0638 +0 0.1943 +0 0.2688 +0 0.1303 +0 0.1282 +0 0.4418 +0 0.1114 +0 0.2675 +0 0.1183 +0 0.0986 +0 0.1444 +0 0.1427 +0 0.3080 +0 0.0765 +0 0.1962 +0 0.2200 +0 0.0808 +0 0.0700 +0 0.1466 +0 0.0834 +0 0.0633 +0 0.1757 +0 0.0465 +0 0.2186 +0 0.0786 +0 0.1227 +0 0.0560 +0 0.0936 +0 0.0529 +0 0.0978 +0 0.1482 +0 0.0568 +0 0.1599 +0 0.2427 +0 0.1026 +0 0.2235 +0 0.1193 +0 0.2879 +0 0.1385 +0 0.1692 +0 0.0749 +0 0.1185 +0 0.1683 +0 0.0502 +0 0.0638 +0 0.0934 +1 0.8351 +0 0.1030 +0 0.2401 +0 0.1201 +0 0.0847 +0 0.0587 +0 0.1878 +0 0.3310 +0 0.1528 +0 0.1020 +0 0.0651 +0 0.0819 +0 0.3786 +0 0.0459 +0 0.0629 +0 0.5385 +0 0.2310 +0 0.2279 +0 0.0453 +0 0.1660 +0 0.1699 +0 0.1240 +0 0.2045 +0 0.1217 +0 0.2694 +0 0.1535 +0 0.2699 +0 0.1463 +0 0.0789 +0 0.1316 +0 0.0889 +0 0.1731 +0 0.1081 +0 0.1093 +0 0.1494 +0 0.0737 +0 0.1456 +0 0.0804 +0 0.4704 +0 0.1257 +0 0.1256 +0 0.0764 +0 0.1094 +0 0.1646 +0 0.0975 +0 0.0618 +0 0.0460 +0 0.1659 +0 0.1233 +0 0.0867 +0 0.0638 +0 0.2794 +0 0.1797 +0 0.1051 +0 0.1605 +0 0.1358 +0 0.3093 +0 0.0623 +0 0.0766 +0 0.0602 +1 0.7518 +0 0.1348 +0 0.3243 +0 0.2160 +0 0.1005 +0 0.0855 +0 0.1235 +0 0.0809 +0 0.1726 +0 0.0714 +0 0.1697 +0 0.1719 +0 0.1269 +0 0.0867 +0 0.0767 +0 0.0992 +0 0.1029 +0 0.1068 +0 0.0670 +0 0.2989 +0 0.2679 +0 0.0661 +0 0.1226 +0 0.1447 +0 0.0890 +0 0.2133 +0 0.1185 +0 0.1205 +0 0.1746 +0 0.0650 +0 0.0719 +0 0.1862 +0 0.1101 +0 0.0554 +0 0.0891 +0 0.2037 +0 0.0896 +0 0.1405 +0 0.1878 +0 0.1144 +0 0.3878 +0 0.0710 +0 0.1484 +1 0.8660 +0 0.0603 +0 0.1728 +0 0.1002 +0 0.0825 +0 0.1339 +0 0.0725 +0 0.1597 +0 0.1555 +0 0.0747 +0 0.2113 +0 0.2647 +0 0.1532 +0 0.1207 +0 0.1860 +0 0.0921 +0 0.1760 +0 0.0952 +0 0.2350 +0 0.1433 +0 0.0804 +0 0.2083 +0 0.0460 +0 0.0967 +0 0.1173 +1 0.7962 +0 0.2088 +0 0.1799 +0 0.1391 +0 0.0774 +0 0.0487 +0 0.6645 +0 0.0584 +0 0.1533 +0 0.1056 +0 0.1018 +0 0.0804 +0 0.4749 +0 0.0484 +0 0.3160 +0 0.0376 +0 0.1122 +0 0.0548 +0 0.0991 +0 0.0601 +0 0.0772 +0 0.1072 +0 0.1271 +0 0.0529 +0 0.1815 +0 0.1136 +0 0.2032 +0 0.2248 +0 0.0808 +0 0.1007 +0 0.1597 +0 0.1286 +0 0.6745 +0 0.1321 +0 0.3362 +0 0.0765 +0 0.0764 +0 0.1221 +0 0.0542 +0 0.0656 +0 0.0914 +0 0.0377 +0 0.1849 +0 0.1953 +0 0.2652 +0 0.2241 +0 0.1196 +0 0.0648 +0 0.1415 +0 0.2293 +0 0.0778 +0 0.7214 +0 0.1357 +0 0.0912 +0 0.1336 +0 0.0764 +0 0.1056 +0 0.1206 +0 0.2438 +0 0.1051 +0 0.0464 +0 0.0479 +0 0.1874 +0 0.3782 +0 0.1896 +0 0.1337 +0 0.2365 +0 0.2462 +0 0.0875 +0 0.1197 +0 0.0853 +0 0.0788 +0 0.0908 +0 0.0501 +0 0.2523 +0 0.1395 +0 0.0664 +0 0.1079 +0 0.2895 +0 0.0636 +0 0.0971 +0 0.0654 +0 0.2607 +0 0.0957 +0 0.1188 +0 0.1159 +0 0.1106 +0 0.0659 +0 0.0377 +0 0.1306 +0 0.2419 +0 0.1012 +0 0.6657 +0 0.2085 +0 0.1038 +0 0.0559 +0 0.0334 +0 0.5431 +0 0.3985 +0 0.0427 +0 0.0607 +0 0.1024 +0 0.1051 +0 0.1184 +0 0.1172 +0 0.0741 +0 0.0637 +0 0.1188 +0 0.1315 +1 0.8423 +0 0.1158 +0 0.0697 +0 0.1187 +0 0.1216 +0 0.6929 +0 0.0949 +0 0.0879 +0 0.0969 +0 0.0659 +0 0.1209 +0 0.0504 +0 0.0965 +1 0.7781 +0 0.0757 +0 0.0806 +0 0.2763 +0 0.4084 +0 0.1759 +0 0.2483 +0 0.1573 +0 0.0430 +0 0.0686 +0 0.3532 +0 0.2550 +0 0.0553 +0 0.0532 +0 0.0576 +0 0.1244 +0 0.1692 +0 0.1243 +0 0.2283 +0 0.0944 +0 0.0628 +0 0.0433 +0 0.0976 +0 0.0591 +0 0.0610 +0 0.3832 +0 0.1358 +0 0.0554 +0 0.4328 +0 0.0446 +0 0.0694 +0 0.1773 +0 0.4644 +0 0.0966 +0 0.4493 +0 0.1827 +0 0.0495 +0 0.1015 +0 0.0855 +0 0.1425 +0 0.0434 +0 0.0669 +0 0.0579 +0 0.0623 +0 0.0754 +0 0.0946 +0 0.1090 +0 0.0654 +0 0.1229 +0 0.0848 +0 0.1313 +0 0.1106 +0 0.1716 +0 0.0568 +0 0.1770 +0 0.0660 +0 0.0657 +0 0.0968 +0 0.1277 +0 0.1320 +0 0.0955 +0 0.2922 +0 0.2345 +0 0.1026 +0 0.0421 +0 0.2573 +0 0.1242 +0 0.0693 +0 0.1018 +0 0.1505 +0 0.2566 +0 0.1164 +0 0.3717 +0 0.2119 +0 0.6412 +0 0.1848 +0 0.3209 +0 0.1890 +0 0.0530 +0 0.3798 +0 0.2592 +0 0.1287 +0 0.7118 +0 0.2895 +0 0.0968 +0 0.1671 +0 0.1057 +0 0.1035 +0 0.0334 +0 0.0639 +0 0.2208 +0 0.0944 +0 0.0733 +0 0.0643 +0 0.1031 +0 0.0809 +0 0.1773 +0 0.0659 +0 0.0689 +0 0.2398 +0 0.1341 +0 0.1208 +0 0.6671 +0 0.1704 +0 0.1114 +0 0.0681 +0 0.0671 +0 0.3090 +0 0.0906 +0 0.1349 +0 0.0797 +0 0.1018 +0 0.0853 +0 0.2451 +0 0.0636 +0 0.1511 +0 0.0359 +0 0.1150 +0 0.1383 +0 0.0961 +0 0.4368 +0 0.0787 +0 0.1632 +0 0.7043 +0 0.2998 +0 0.0694 +0 0.0493 +0 0.2283 +0 0.0910 +0 0.0554 +0 0.1944 +0 0.4330 +0 0.3201 +0 0.1723 +0 0.1613 +0 0.1429 +0 0.0409 +0 0.0754 +0 0.0995 +0 0.1407 +0 0.0720 +0 0.1397 +0 0.1038 +0 0.0537 +0 0.2099 +0 0.1033 +0 0.4674 +0 0.0964 +0 0.0577 +0 0.0657 +0 0.1826 +0 0.0986 +0 0.1730 +0 0.0807 +0 0.1303 +0 0.1783 +0 0.1071 +0 0.2476 +0 0.0956 +0 0.0414 +0 0.0400 +0 0.3061 +0 0.0363 +0 0.1344 +0 0.3544 +0 0.1750 +0 0.2649 +0 0.1039 +0 0.2022 +0 0.1774 +0 0.0769 +0 0.0782 +0 0.1249 +0 0.0796 +0 0.0622 +0 0.1261 +0 0.1483 +0 0.1135 +0 0.0796 +0 0.0333 +0 0.4169 +0 0.0858 +0 0.0573 +0 0.1973 +0 0.0735 +0 0.1806 +0 0.2589 +0 0.0628 +0 0.1784 +0 0.0713 +0 0.1538 +0 0.0863 +0 0.4057 +0 0.5120 +0 0.1040 +0 0.0402 +0 0.1398 +0 0.0888 +0 0.1085 +0 0.0886 +0 0.1452 +0 0.1497 +0 0.6095 +0 0.3862 +0 0.0896 +0 0.1022 +0 0.0524 +0 0.1577 +0 0.5814 +0 0.0724 +0 0.0969 +0 0.1577 +0 0.0718 +0 0.0324 +0 0.0545 +0 0.1670 +0 0.1099 +0 0.0850 +0 0.5933 +0 0.1253 +0 0.0790 +0 0.1099 +0 0.0612 +0 0.1034 +0 0.1201 +0 0.1143 +0 0.1089 +0 0.1152 +0 0.1001 +0 0.0918 +0 0.0937 +0 0.3296 +0 0.3491 +0 0.3820 +0 0.1469 +0 0.6233 +0 0.1967 +0 0.0475 +0 0.0313 +0 0.1542 +0 0.0518 +0 0.1098 +0 0.1030 +0 0.0957 +0 0.1404 +0 0.5603 +0 0.0550 +0 0.0384 +0 0.1176 +0 0.2504 +0 0.4000 +0 0.7175 +0 0.0834 +0 0.1335 +0 0.0639 +0 0.3114 +0 0.1254 +0 0.0578 +0 0.1041 +0 0.1052 +0 0.1030 +0 0.2173 +0 0.0931 +0 0.0727 +0 0.0835 +0 0.0869 +0 0.0778 +0 0.1059 +0 0.0670 +0 0.2352 +1 0.8260 +0 0.4805 +0 0.0790 +0 0.4224 +0 0.0680 +1 0.8738 +0 0.1192 +0 0.1037 +0 0.2004 +1 0.7732 +0 0.0594 +0 0.3036 +0 0.1077 +0 0.0610 +0 0.1154 +0 0.2047 +0 0.3202 +0 0.1384 +0 0.0906 +0 0.0638 +0 0.2058 +0 0.4868 +0 0.0609 +0 0.1281 +0 0.2502 +0 0.0631 +0 0.0486 +0 0.0831 +0 0.0874 +0 0.1737 +0 0.0515 +0 0.0674 +0 0.1526 +0 0.0624 +1 0.7994 +0 0.0811 +0 0.0393 +0 0.0625 +0 0.1119 +0 0.0650 +0 0.1182 +0 0.1179 +0 0.1000 +0 0.0890 +0 0.0504 +0 0.3685 +0 0.0461 +0 0.0349 +0 0.1720 +0 0.1133 +0 0.0680 +0 0.2203 +0 0.2231 +0 0.1166 +0 0.0498 +0 0.0458 +0 0.2889 +0 0.0952 +0 0.0626 +0 0.0704 +0 0.2222 +0 0.0844 +0 0.3588 +0 0.2237 +0 0.1973 +0 0.1710 +0 0.0891 +0 0.0990 +0 0.0766 +0 0.0528 +0 0.0616 +0 0.0390 +0 0.0849 +0 0.0819 +0 0.1442 +0 0.0953 +1 0.8566 +0 0.1092 +0 0.0586 +0 0.2175 +0 0.4387 +0 0.3427 +0 0.6474 +0 0.1635 +0 0.1457 +0 0.0878 +0 0.0519 +0 0.2293 +0 0.0990 +0 0.1093 +0 0.1191 +0 0.1144 +0 0.0428 +0 0.1146 +0 0.0847 +0 0.1543 +0 0.1036 +0 0.2188 +0 0.1781 +0 0.0410 +0 0.2270 +0 0.0419 +0 0.1164 +0 0.0866 +0 0.0414 +0 0.3200 +0 0.0801 +0 0.0674 +0 0.1371 +0 0.7305 +0 0.0468 +0 0.0769 +0 0.4256 +0 0.0800 +0 0.0754 +0 0.0668 +1 0.8449 +0 0.0531 +0 0.0475 +0 0.1456 +0 0.0777 +0 0.0373 +0 0.0516 +0 0.1127 +0 0.2063 +0 0.3090 +0 0.1982 +0 0.1371 +0 0.1352 +0 0.3454 +0 0.0569 +0 0.1392 +0 0.2319 +0 0.0923 +0 0.0778 +0 0.3876 +0 0.1095 +0 0.0597 +0 0.3764 +0 0.0810 +0 0.1014 +0 0.1531 +0 0.0552 +0 0.2468 +0 0.1246 +0 0.0517 +0 0.3542 +0 0.1815 +0 0.0940 +0 0.0368 +0 0.0899 +0 0.0587 +0 0.1399 +0 0.1975 +0 0.0545 +0 0.1617 +0 0.1151 +0 0.1010 +0 0.0346 +0 0.3141 +0 0.0944 +0 0.2186 +0 0.0590 +0 0.1570 +0 0.1962 +0 0.0547 +0 0.0980 +0 0.1638 +0 0.1741 +0 0.0681 +1 0.8098 +0 0.1176 +0 0.0749 +0 0.0440 +0 0.1180 +0 0.0660 +0 0.0608 +0 0.1016 +0 0.1327 +0 0.0756 +0 0.0625 +0 0.1248 +0 0.1202 +0 0.0955 +0 0.1996 +0 0.2328 +0 0.0607 +0 0.1459 +0 0.0747 +0 0.1640 +0 0.6446 +0 0.0791 +0 0.3564 +0 0.0661 +0 0.1335 +0 0.2323 +0 0.0993 +0 0.0675 +0 0.0718 +0 0.2059 +0 0.0463 +0 0.1298 +0 0.0692 +0 0.0856 +0 0.1112 +0 0.4870 +0 0.0807 +0 0.0748 +0 0.0785 +0 0.0998 +0 0.1161 +0 0.0619 +0 0.1183 +0 0.0503 +0 0.1279 +0 0.0356 +0 0.1150 +0 0.0447 +0 0.1325 +0 0.0771 +0 0.0957 +0 0.1792 +0 0.0948 +0 0.1002 +0 0.1569 +0 0.7486 +0 0.0756 +0 0.0910 +0 0.0815 +0 0.4243 +0 0.1120 +0 0.1424 +0 0.0641 +0 0.0803 +0 0.0400 +0 0.0619 +0 0.0571 +0 0.0472 +0 0.0714 +0 0.2395 +0 0.0354 +0 0.0871 +0 0.1875 +0 0.0746 +0 0.1230 +1 0.7674 +0 0.1155 +0 0.3569 +0 0.1207 +0 0.0802 +0 0.1626 +0 0.0890 +0 0.1255 +0 0.1274 +0 0.1983 +0 0.0675 +0 0.1211 +0 0.0861 +0 0.0631 +0 0.0917 +0 0.0668 +0 0.0878 +0 0.1067 +0 0.7367 +0 0.1147 +0 0.0492 +0 0.1493 +0 0.2524 +0 0.0418 +0 0.1258 +0 0.1965 +0 0.1880 +0 0.1105 +0 0.0474 +0 0.0672 +0 0.1556 +0 0.0924 +0 0.0555 +0 0.1704 +0 0.1036 +0 0.0354 +0 0.2713 +0 0.0637 +0 0.1627 +0 0.1536 +0 0.0415 +0 0.1102 +0 0.1617 +0 0.7358 +0 0.2274 +0 0.2391 +0 0.1330 +0 0.2495 +0 0.1801 +0 0.0779 +0 0.3348 +0 0.0519 +0 0.0753 +0 0.0506 +0 0.1154 +0 0.0921 +0 0.0736 +0 0.0481 +0 0.0778 +0 0.1295 +0 0.0428 +0 0.2066 +0 0.1702 +0 0.0653 +0 0.1156 +0 0.2456 +0 0.1132 +0 0.2369 +0 0.0831 +1 0.7976 +0 0.1431 +0 0.0419 +0 0.1328 +0 0.1900 +0 0.0842 +0 0.0557 +0 0.1474 +0 0.1204 +0 0.2365 +0 0.2975 +0 0.2400 +0 0.0724 +0 0.1237 +0 0.2401 +0 0.1291 +0 0.0626 +0 0.2901 +0 0.1349 +0 0.3070 +0 0.0981 +0 0.1084 +0 0.1982 +0 0.1047 +0 0.1789 +0 0.0503 +0 0.0625 +0 0.0555 +0 0.4548 +0 0.1074 +0 0.0760 +0 0.5183 +0 0.1564 +0 0.0914 +0 0.2270 +0 0.7248 +0 0.1015 +0 0.1360 +0 0.7004 +0 0.2075 +0 0.0539 +0 0.0421 +0 0.0676 +1 0.6003 +0 0.4279 +0 0.1202 +0 0.2737 +0 0.2237 +0 0.0696 +0 0.1419 +0 0.1792 +0 0.1018 +0 0.0753 +0 0.1240 +0 0.7419 +0 0.1859 +0 0.0644 +0 0.1177 +0 0.0700 +0 0.0447 +0 0.2128 +0 0.1066 +0 0.6942 +0 0.2485 +0 0.2273 +1 0.8402 +0 0.1500 +0 0.1506 +0 0.0371 +0 0.0752 +0 0.1203 +0 0.1415 +0 0.1420 +0 0.0885 +0 0.5253 +0 0.0884 +0 0.1173 +0 0.1625 +0 0.2862 +0 0.1118 +0 0.1244 +0 0.3293 +0 0.0853 +0 0.1598 +0 0.1190 +0 0.1602 +0 0.1390 +0 0.0616 +0 0.0932 +0 0.0542 +0 0.0665 +0 0.1372 +0 0.0636 +0 0.0914 +0 0.1770 +0 0.2342 +0 0.1577 +0 0.4295 +0 0.1056 +0 0.0696 +0 0.0782 +0 0.2482 +0 0.1060 +0 0.1825 +0 0.4007 +0 0.1051 +0 0.1068 +0 0.2540 +0 0.4026 +0 0.0619 +0 0.0597 +0 0.0705 +0 0.0644 +0 0.0677 +0 0.1023 +0 0.1552 +0 0.0824 +0 0.2085 +0 0.1520 +0 0.1031 +0 0.0796 +0 0.1025 +0 0.0652 +0 0.1084 +0 0.0428 +0 0.1599 +0 0.0750 +0 0.0681 +0 0.1098 +0 0.1043 +0 0.1092 +0 0.1151 +0 0.1300 +0 0.2586 +0 0.0426 +0 0.0836 +0 0.2498 +0 0.0637 +0 0.1075 +0 0.1142 +0 0.1813 +0 0.0588 +0 0.7026 +0 0.0753 +0 0.1595 +0 0.1288 +0 0.1347 +0 0.2282 +0 0.1006 +0 0.0832 +0 0.1135 +0 0.0896 +0 0.1257 +0 0.0900 +0 0.0684 +0 0.1064 +0 0.0767 +0 0.0467 +0 0.0709 +0 0.1163 +0 0.0698 +0 0.1198 +0 0.0756 +0 0.0474 +0 0.0481 +0 0.3028 +0 0.0917 +0 0.1426 +0 0.1741 +0 0.1079 +0 0.2076 +0 0.1785 +0 0.1168 +0 0.1768 +0 0.0735 +0 0.1245 +0 0.1200 +0 0.2093 +0 0.3525 +0 0.0433 +0 0.0801 +0 0.1459 +0 0.1607 +0 0.1371 +0 0.1139 +0 0.1539 +0 0.1154 +0 0.1226 +0 0.1467 +0 0.1114 +0 0.0972 +0 0.0792 +0 0.4613 +0 0.1696 +0 0.0586 +0 0.1993 +0 0.3599 +0 0.2111 +0 0.0937 +0 0.2677 +0 0.0477 +0 0.2002 +0 0.0329 +0 0.0753 +0 0.1083 +0 0.0833 +0 0.1260 +0 0.1442 +0 0.0822 +0 0.1005 +0 0.2946 +0 0.1212 +0 0.2215 +0 0.3051 +0 0.1990 +0 0.0563 +0 0.1148 +0 0.0492 +0 0.6372 +0 0.5812 +0 0.4957 +0 0.0873 +0 0.1407 +0 0.1952 +0 0.0407 +0 0.0685 +0 0.0999 +0 0.2222 +0 0.1572 +0 0.0843 +0 0.0425 +0 0.0880 +0 0.1132 +1 0.8189 +0 0.0843 +0 0.1367 +0 0.2079 +0 0.0853 +0 0.0875 +0 0.3291 +0 0.0889 +0 0.1864 +0 0.3051 +0 0.0595 +0 0.2778 +0 0.0978 +0 0.0919 +0 0.0798 +0 0.1116 +0 0.0531 +0 0.2421 +0 0.4565 +0 0.2544 +1 0.7612 +0 0.0641 +0 0.3958 +0 0.0586 +0 0.0781 +0 0.0589 +0 0.0856 +0 0.1903 +0 0.1344 +0 0.0615 +0 0.0595 +0 0.1013 +1 0.8275 +0 0.0631 +0 0.0638 +0 0.5030 +0 0.0632 +0 0.1123 +0 0.0843 +0 0.3775 +0 0.1523 +0 0.0825 +0 0.0873 +0 0.0804 +0 0.1520 +0 0.1791 +0 0.0526 +0 0.1031 +0 0.0526 +0 0.0837 +0 0.2294 +0 0.0991 +0 0.6544 +0 0.0480 +0 0.0713 +0 0.1281 +0 0.1938 +0 0.1091 +0 0.0659 +0 0.0946 +0 0.4274 +0 0.1830 +0 0.0844 +0 0.2348 +0 0.1870 +0 0.2395 +0 0.2342 +0 0.1188 +0 0.0887 +0 0.0398 +0 0.0683 +0 0.4291 +0 0.1401 +0 0.1021 +0 0.1103 +0 0.1186 +0 0.5061 +1 0.7693 +0 0.1134 +0 0.0416 +0 0.0421 +0 0.1022 +0 0.1775 +0 0.1088 +0 0.0758 +0 0.1966 +0 0.1384 +0 0.2783 +0 0.0914 +0 0.1125 +0 0.0764 +0 0.0691 +0 0.1695 +0 0.1984 +0 0.0628 +0 0.3127 +0 0.6860 +0 0.1522 +0 0.1536 +0 0.1587 +0 0.0717 +0 0.2587 +0 0.2787 +1 0.8229 +1 0.8364 +0 0.0618 +0 0.1126 +0 0.0582 +0 0.0979 +0 0.1669 +0 0.1924 +0 0.1476 +0 0.0486 +0 0.0902 +0 0.0541 +0 0.0888 +0 0.2257 +0 0.2326 +0 0.1834 +0 0.0719 +0 0.0929 +0 0.1449 +0 0.0805 +0 0.7230 +0 0.0637 +0 0.1123 +0 0.0715 +0 0.1289 +0 0.6786 +0 0.0784 +0 0.1293 +0 0.1756 +0 0.1127 +0 0.0768 +0 0.0965 +0 0.1041 +0 0.0932 +0 0.1948 +0 0.0463 +0 0.0634 +0 0.1374 +0 0.0851 +0 0.4031 +0 0.3273 +0 0.0735 +0 0.1015 +0 0.0900 +0 0.1940 +0 0.3138 +0 0.0635 +0 0.1086 +0 0.4254 +0 0.1850 +1 0.7789 +0 0.1383 +0 0.0411 +0 0.0683 +0 0.1618 +0 0.2469 +0 0.0772 +0 0.0963 +0 0.0642 +0 0.1211 +0 0.0615 +0 0.1474 +0 0.2412 +0 0.0666 +0 0.0671 +0 0.1427 +0 0.0811 +0 0.1083 +0 0.0677 +0 0.0547 +0 0.2197 +0 0.0523 +0 0.0652 +0 0.1267 +0 0.0682 +0 0.3876 +0 0.0312 +0 0.0766 +0 0.0385 +0 0.2313 +0 0.0639 +0 0.0960 +0 0.0867 +0 0.1128 +0 0.1736 +0 0.1614 +0 0.1588 +0 0.2179 +0 0.1513 +0 0.1080 +0 0.1051 +0 0.1100 +0 0.0626 +0 0.5590 +0 0.6633 +0 0.1415 +0 0.2626 +0 0.0634 +0 0.0866 +0 0.1549 +0 0.0971 +0 0.0813 +0 0.2281 +0 0.1671 +0 0.1165 +0 0.0698 +0 0.0727 +0 0.3601 +0 0.1642 +0 0.0937 +0 0.4482 +0 0.0836 +0 0.5505 +0 0.0548 +0 0.0386 +0 0.0721 +0 0.1682 +0 0.2366 +1 0.8448 +0 0.2090 +0 0.2215 +0 0.0863 +0 0.1040 +0 0.0856 +0 0.1508 +0 0.2326 +0 0.0705 +0 0.2683 +0 0.1009 +0 0.1086 +0 0.1443 +0 0.0816 +0 0.0910 +0 0.0553 +0 0.1397 +0 0.1156 +1 0.8636 +0 0.5419 +0 0.1619 +0 0.2463 +0 0.0978 +1 0.7791 +0 0.2341 +0 0.2673 +0 0.0889 +0 0.0901 +0 0.0816 +0 0.1080 +0 0.1835 +0 0.2254 +0 0.0810 +0 0.3023 +0 0.1129 +0 0.1068 +0 0.0988 +0 0.0403 +0 0.1822 +0 0.0635 +0 0.1163 +0 0.1011 +0 0.1568 +0 0.1354 +0 0.1360 +0 0.0898 +0 0.1335 +0 0.1711 +0 0.0493 +0 0.1327 +0 0.1174 +0 0.0367 +0 0.6978 +0 0.1262 +0 0.0980 +0 0.0946 +0 0.1072 +0 0.2491 +0 0.0758 +0 0.4215 +0 0.1002 +0 0.1983 +0 0.3786 +0 0.1442 +0 0.0800 +0 0.1135 +0 0.0558 +0 0.1605 +0 0.0625 +0 0.1499 +0 0.0572 +0 0.0837 +0 0.2202 +0 0.0934 +0 0.1853 +0 0.1000 +0 0.0572 +0 0.6361 +0 0.0791 +0 0.1627 +0 0.0633 +0 0.0552 +0 0.4240 +0 0.0582 +0 0.1597 +0 0.0850 +0 0.0499 +0 0.7198 +0 0.0865 +0 0.1137 +0 0.0449 +0 0.1636 +1 0.8444 +0 0.1809 +0 0.1094 +0 0.0988 +0 0.1298 +0 0.1225 +0 0.2224 +0 0.0604 +0 0.0957 +0 0.1138 +0 0.0908 +1 0.8408 +0 0.2293 +0 0.0572 +0 0.4114 +0 0.0425 +0 0.1288 +0 0.1201 +0 0.1047 +0 0.1375 +0 0.0546 +0 0.0577 +0 0.1594 +0 0.7480 +0 0.1285 +0 0.0491 +0 0.1450 +0 0.0893 +0 0.1229 +0 0.0436 +0 0.0702 +0 0.1412 +0 0.1448 +0 0.0604 +0 0.0451 +0 0.4837 +0 0.1295 +0 0.1418 +0 0.2764 +0 0.3408 +0 0.0525 +0 0.1147 +0 0.0440 +0 0.1498 +1 0.8548 +0 0.1294 +0 0.1033 +0 0.1527 +0 0.1961 +0 0.1258 +0 0.0799 +0 0.1130 +0 0.1176 +0 0.1551 +0 0.0957 +0 0.2352 +0 0.0416 +0 0.0939 +0 0.4739 +0 0.0599 +0 0.0473 +0 0.0602 +0 0.1134 +0 0.2343 +0 0.2205 +0 0.1115 +0 0.0420 +0 0.0501 +0 0.0760 +0 0.0518 +0 0.1270 +0 0.1118 +0 0.1829 +0 0.0894 +0 0.1284 +0 0.6872 +0 0.1406 +0 0.0688 +0 0.1544 +0 0.2010 +0 0.1324 +0 0.0410 +0 0.1202 +0 0.0674 +0 0.0633 +0 0.1449 +0 0.1039 +0 0.0719 +0 0.0882 +0 0.1508 +0 0.0539 +0 0.2672 +0 0.2425 +0 0.2445 +0 0.1319 +0 0.1969 +0 0.0625 +0 0.0870 +0 0.0918 +0 0.1123 +0 0.0946 +1 0.7843 +0 0.3157 +0 0.2471 +0 0.4636 +0 0.0740 +0 0.1792 +0 0.1196 +1 0.8439 +0 0.0539 +0 0.0382 +0 0.1295 +0 0.0500 +0 0.2176 +0 0.0368 +0 0.0955 +0 0.2298 +0 0.0886 +0 0.1283 +0 0.0808 +0 0.0575 +0 0.1797 +0 0.0705 +0 0.2586 +0 0.3443 +0 0.0888 +0 0.1160 +0 0.1259 +0 0.1605 +0 0.2962 +0 0.0411 +0 0.0711 +0 0.0755 +0 0.0446 +0 0.1429 +0 0.2181 +0 0.1161 +0 0.2854 +0 0.2166 +0 0.1364 +0 0.1685 +0 0.0716 +0 0.1343 +0 0.0748 +0 0.0953 +0 0.1470 +0 0.0724 +0 0.5361 +0 0.0830 +0 0.0412 +0 0.0789 +0 0.0520 +0 0.0559 +0 0.1149 +0 0.1763 +0 0.1112 +0 0.0788 +0 0.2434 +0 0.0688 +1 0.7920 +0 0.0945 +0 0.3420 +0 0.1536 +0 0.1776 +0 0.2218 +0 0.1141 +0 0.1325 +0 0.0830 +0 0.0511 +0 0.2290 +0 0.1008 +0 0.0950 +0 0.0554 +0 0.0867 +0 0.0687 +0 0.1014 +0 0.1037 +0 0.0626 +0 0.0505 +0 0.0832 +0 0.1048 +0 0.0973 +0 0.1483 +0 0.0599 +0 0.0608 +0 0.0529 +0 0.3778 +0 0.0892 +0 0.0797 +0 0.0381 +0 0.0833 +0 0.2125 +0 0.0980 +0 0.1531 +0 0.2681 +0 0.0522 +0 0.2092 +0 0.1114 +0 0.0624 +0 0.1589 +0 0.1147 +0 0.1185 +0 0.0828 +0 0.1083 +0 0.0978 +0 0.1945 +0 0.2208 +0 0.0748 +0 0.0860 +0 0.2509 +0 0.2620 +0 0.0714 +0 0.0581 +0 0.1611 +0 0.1078 +0 0.0814 +0 0.0468 +0 0.1340 +0 0.1214 +0 0.0466 +0 0.0873 +0 0.2118 +0 0.1328 +0 0.1470 +0 0.1436 +0 0.1939 +0 0.0854 +0 0.1373 +0 0.1559 +0 0.7254 +0 0.3936 +0 0.1414 +0 0.1696 +0 0.0569 +0 0.2310 +0 0.2304 +0 0.0758 +0 0.6423 +0 0.4099 +0 0.2358 +0 0.0938 +0 0.2656 +0 0.0728 +0 0.1165 +0 0.0682 +0 0.0996 +0 0.0379 +0 0.3777 +0 0.0391 +0 0.1044 +0 0.0626 +0 0.0706 +0 0.1775 +0 0.2293 +0 0.0855 +0 0.1653 +0 0.2471 +0 0.1006 +0 0.1080 +0 0.0468 +0 0.1497 +0 0.0848 +0 0.2357 +0 0.2217 +0 0.1694 +0 0.1071 +0 0.0962 +0 0.3087 +0 0.3665 +0 0.1905 +0 0.1588 +0 0.0662 +0 0.1816 +0 0.1425 +0 0.1539 +0 0.0414 +0 0.1185 +0 0.3165 +0 0.0966 +0 0.1630 +0 0.1196 +0 0.0541 +0 0.0791 +0 0.2003 +0 0.2851 +0 0.5444 +0 0.0906 +0 0.0811 +0 0.3458 +0 0.0986 +0 0.0925 +0 0.1090 +0 0.0889 +0 0.0706 +0 0.2493 +0 0.2504 +0 0.2325 +0 0.3236 +0 0.2102 +0 0.1231 +0 0.6862 +0 0.0724 +0 0.1024 +0 0.1467 +0 0.1119 +0 0.1271 +0 0.0699 +0 0.2230 +0 0.1147 +0 0.0889 +0 0.3585 +0 0.1787 +0 0.0876 +0 0.0464 +0 0.1495 +0 0.0731 +0 0.0709 +0 0.0510 +0 0.1705 +0 0.3809 +0 0.2829 +0 0.1039 +0 0.2346 +0 0.7096 +0 0.0972 +0 0.0555 +0 0.2385 +0 0.0465 +0 0.1225 +0 0.0558 +0 0.1342 +0 0.0938 +0 0.0831 +0 0.2408 +0 0.6817 +0 0.5659 +0 0.1396 +0 0.1125 +0 0.0954 +0 0.0827 +0 0.1329 +0 0.1735 +0 0.0653 +0 0.2100 +0 0.0867 +0 0.3660 +0 0.0606 +0 0.0719 +0 0.0761 +0 0.0929 +0 0.0582 +0 0.0811 +0 0.0563 +0 0.0481 +0 0.3591 +0 0.0457 +0 0.0989 +0 0.1149 +0 0.1556 +0 0.0466 +0 0.1126 +0 0.1450 +0 0.1771 +0 0.2340 +0 0.0914 +0 0.0581 +0 0.0744 +0 0.1793 +0 0.1410 +0 0.1877 +0 0.1080 +0 0.0750 +0 0.1505 +0 0.0982 +0 0.0776 +0 0.2552 +0 0.1686 +0 0.0809 +0 0.0767 +0 0.3281 +0 0.0859 +0 0.2376 +0 0.6892 +0 0.1458 +0 0.5779 +0 0.1291 +0 0.1932 +0 0.1341 +0 0.0829 +0 0.0925 +0 0.1732 +0 0.0905 +0 0.1651 +0 0.0480 +0 0.2453 +0 0.1159 +0 0.1126 +0 0.0906 +0 0.0996 +0 0.1230 +0 0.2001 +0 0.6746 +0 0.0908 +0 0.0610 +0 0.2110 +0 0.1254 +0 0.0405 +0 0.1046 +0 0.1583 +0 0.0902 +0 0.0995 +0 0.1074 +0 0.1262 +0 0.0397 +0 0.2869 +0 0.0584 +0 0.0402 +0 0.0457 +0 0.2305 +0 0.0791 +0 0.0876 +0 0.0574 +0 0.0879 +0 0.1191 +0 0.1014 +0 0.0572 +0 0.0998 +0 0.0736 +0 0.0887 +0 0.1341 +0 0.0799 +0 0.1160 +0 0.0960 +0 0.0687 +0 0.0594 +0 0.0794 +0 0.1084 +0 0.1017 +0 0.1546 +0 0.1210 +0 0.1833 +0 0.1665 +0 0.1005 +0 0.3204 +1 0.7973 +0 0.0833 +0 0.0585 +0 0.0607 +0 0.1612 +0 0.0290 +0 0.2061 +0 0.3381 +0 0.0522 +0 0.0602 +0 0.1234 +0 0.1948 +0 0.1050 +0 0.2271 +0 0.0842 +0 0.0929 +0 0.1415 +0 0.2028 +0 0.2775 +0 0.1623 +0 0.1384 +0 0.0527 +0 0.2048 +0 0.0958 +0 0.0633 +0 0.1628 +0 0.1031 +0 0.0943 +0 0.0755 +0 0.0890 +0 0.0558 +0 0.1542 +0 0.0993 +0 0.0945 +0 0.1308 +0 0.1297 +0 0.1045 +0 0.1295 +0 0.2140 +0 0.1029 +0 0.5561 +0 0.0452 +0 0.0643 +0 0.1928 +0 0.2215 +0 0.6402 +0 0.0622 +0 0.0997 +0 0.1571 +0 0.7414 +0 0.1087 +0 0.1089 +0 0.0730 +0 0.0892 +0 0.0595 +0 0.4876 +0 0.0503 +0 0.4976 +0 0.0902 +0 0.0622 +0 0.1171 +0 0.1386 +0 0.0529 +0 0.2165 +0 0.1183 +0 0.1527 +0 0.1300 +0 0.0442 +0 0.2726 +0 0.0538 +0 0.0995 +0 0.0592 +0 0.1102 +0 0.5807 +0 0.2583 +0 0.1022 +0 0.1681 +0 0.0699 +0 0.0603 +0 0.3395 +0 0.2418 +0 0.1112 +0 0.0858 +0 0.4540 +0 0.0640 +0 0.1535 +0 0.0539 +0 0.0769 +0 0.0585 +0 0.0816 +0 0.0516 +0 0.0796 +0 0.3809 +0 0.0765 +0 0.3308 +0 0.0318 +0 0.1061 +0 0.0750 +0 0.0804 +0 0.1774 +0 0.0732 +0 0.2034 +0 0.0514 +0 0.2041 +0 0.2483 +0 0.0812 +0 0.1731 +0 0.0482 +0 0.1630 +0 0.0951 +0 0.0452 +0 0.0825 +0 0.1461 +0 0.1487 +0 0.0428 +0 0.0412 +0 0.1523 +0 0.0801 +0 0.6785 +0 0.4154 +0 0.0976 +0 0.1419 +0 0.0862 +0 0.1495 +0 0.1319 +0 0.0471 +0 0.1823 +0 0.1224 +0 0.0932 +0 0.1240 +0 0.1741 +0 0.1187 +0 0.3093 +0 0.1017 +0 0.6821 +0 0.1467 +0 0.1158 +0 0.0618 +0 0.1470 +0 0.7406 +0 0.0561 +0 0.1221 +0 0.0544 +0 0.2584 +0 0.0558 +0 0.2269 +0 0.0804 +0 0.2040 +0 0.1174 +0 0.1940 +0 0.3988 +0 0.1163 +0 0.2453 +0 0.0855 +0 0.1307 +0 0.1490 +0 0.1769 +0 0.1778 +0 0.1472 +0 0.7211 +0 0.1535 +0 0.1012 +0 0.0770 +0 0.1964 +0 0.1057 +0 0.4652 +1 0.8041 +0 0.1793 +0 0.0626 +0 0.1669 +0 0.1927 +0 0.0547 +0 0.1897 +0 0.1122 +0 0.1078 +0 0.1058 +0 0.1613 +0 0.1220 +0 0.0895 +0 0.2024 +0 0.1035 +0 0.2128 +0 0.0726 +0 0.0953 +0 0.3387 +0 0.1538 +0 0.0956 +0 0.1180 +0 0.0685 +0 0.0588 +0 0.0323 +0 0.0658 +0 0.0561 +0 0.0887 +0 0.0619 +0 0.0466 +0 0.0861 +0 0.1206 +0 0.2747 +0 0.0805 +0 0.2261 +0 0.2507 +0 0.0846 +0 0.1203 +0 0.0970 +0 0.0551 +0 0.0665 +0 0.0590 +0 0.1403 +0 0.0513 +0 0.3880 +0 0.1161 +0 0.1083 +0 0.2624 +0 0.0434 +0 0.0458 +0 0.0541 +0 0.3516 +0 0.1807 +0 0.0802 +0 0.0551 +0 0.0602 +0 0.0831 +0 0.2292 +0 0.4155 +0 0.0730 +0 0.0402 +0 0.1205 +0 0.0684 +0 0.0424 +0 0.1995 +0 0.0532 +0 0.1297 +0 0.2509 +0 0.0424 +0 0.0538 +0 0.0933 +0 0.1187 +0 0.0381 +0 0.1042 +0 0.0724 +0 0.3345 +0 0.0592 +0 0.2103 +0 0.0437 +0 0.1948 +1 0.7730 +0 0.1653 +0 0.1126 +0 0.1418 +0 0.0458 +0 0.0663 +0 0.1362 +0 0.0855 +0 0.0599 +0 0.1941 +0 0.0675 +0 0.3841 +0 0.1109 +0 0.3318 +0 0.0837 +0 0.0771 +0 0.1563 +0 0.0382 +0 0.0715 +0 0.0805 +0 0.2043 +0 0.0487 +0 0.2183 +0 0.2010 +0 0.0933 +0 0.0701 +0 0.0653 +0 0.7393 +0 0.1122 +0 0.0646 +0 0.0547 +0 0.0927 +0 0.0993 +0 0.0455 +1 0.8022 +0 0.0747 +0 0.6979 +0 0.0532 +0 0.0955 +0 0.0447 +0 0.2517 +0 0.3056 +0 0.0985 +0 0.1259 +1 0.8062 +0 0.1410 +0 0.1867 +0 0.1006 +0 0.2111 +0 0.1117 +0 0.2165 +0 0.1509 +0 0.1607 +0 0.0675 +0 0.2237 +0 0.2104 +0 0.1109 +0 0.0948 +0 0.2019 +0 0.2467 +0 0.1081 +0 0.3281 +0 0.1504 +0 0.0741 +1 0.7945 +0 0.0717 +0 0.0332 +0 0.0827 +0 0.4594 +0 0.2278 +0 0.0806 +0 0.0888 +0 0.2662 +0 0.0488 +0 0.0567 +0 0.0965 +0 0.1029 +0 0.0732 +0 0.0949 +0 0.1340 +0 0.1300 +0 0.0610 +0 0.0864 +0 0.0887 +0 0.0687 +0 0.1435 +0 0.3462 +0 0.0677 +0 0.0426 +0 0.0829 +0 0.0758 +0 0.0759 +0 0.4177 +0 0.0949 +0 0.0748 +0 0.0804 +0 0.0334 +0 0.1407 +0 0.4205 +0 0.1505 +0 0.0709 +0 0.1144 +0 0.1872 +0 0.1584 +0 0.0944 +0 0.1431 +0 0.1109 +0 0.0502 +0 0.0638 +0 0.1102 +0 0.0798 +0 0.3165 +0 0.1753 +0 0.1630 +0 0.0989 +0 0.1960 +0 0.2703 +0 0.0543 +0 0.1323 +0 0.1005 +0 0.1597 +0 0.1453 +0 0.1308 +0 0.1521 +0 0.0602 +0 0.0788 +0 0.0478 +0 0.1818 +0 0.0823 +0 0.0996 +0 0.0754 +0 0.0530 +0 0.0674 +0 0.6950 +0 0.0913 +0 0.1018 +0 0.1516 +0 0.4690 +0 0.0523 +0 0.2727 +0 0.1860 +0 0.2533 +0 0.0651 +0 0.1832 +0 0.0569 +0 0.1214 +0 0.2405 +0 0.1444 +0 0.0479 +0 0.1624 +0 0.0585 +0 0.0598 +0 0.0710 +0 0.3210 +0 0.2490 +0 0.0538 +0 0.1140 +0 0.0887 +0 0.0302 +0 0.0704 +0 0.1269 +0 0.2488 +0 0.0936 +0 0.0471 +0 0.1459 +0 0.1224 +0 0.1787 +0 0.0745 +0 0.1145 +0 0.0948 +0 0.2183 +0 0.0667 +0 0.0633 +0 0.2498 +0 0.1837 +0 0.1100 +0 0.2038 +0 0.1827 +0 0.1282 +0 0.2162 +0 0.1212 +0 0.0690 +0 0.2255 +0 0.1396 +0 0.0595 +0 0.1872 +0 0.1401 +0 0.2293 +0 0.0707 +0 0.0386 +1 0.8969 +0 0.0800 +0 0.0862 +0 0.0545 +0 0.1561 +1 0.8801 +0 0.2496 +0 0.1615 +0 0.0732 +0 0.2336 +0 0.0694 +0 0.0697 +0 0.0967 +0 0.0987 +0 0.0938 +0 0.1141 +0 0.0442 +0 0.1240 +0 0.1287 +0 0.0673 +0 0.0787 +0 0.1423 +0 0.0743 +0 0.1672 +0 0.1617 +0 0.0833 +0 0.1595 +0 0.1837 +0 0.0547 +0 0.0544 +0 0.0735 +0 0.0815 +1 0.7838 +0 0.1343 +0 0.2498 +0 0.0507 +0 0.0324 +0 0.1038 +0 0.2329 +0 0.0603 +0 0.1238 +0 0.1140 +0 0.0758 +0 0.1067 +0 0.1760 +0 0.1168 +0 0.1661 +0 0.4757 +0 0.1010 +0 0.1039 +0 0.0710 +0 0.1293 +0 0.0326 +0 0.1001 +0 0.1496 +0 0.1291 +0 0.6463 +0 0.2266 +0 0.3598 +0 0.2165 +0 0.0883 +0 0.0553 +0 0.2057 +0 0.1070 +0 0.0732 +0 0.1089 +0 0.0556 +0 0.1587 +0 0.2242 +0 0.0545 +0 0.1820 +0 0.0763 +0 0.0879 +0 0.0459 +0 0.0622 +0 0.0643 +0 0.0799 +0 0.1035 +0 0.1124 +0 0.0658 +0 0.1618 +0 0.0896 +0 0.0753 +0 0.0438 +0 0.2114 +0 0.0839 +0 0.1429 +0 0.1287 +0 0.0940 +0 0.0838 +0 0.1902 +0 0.1566 +0 0.1353 +0 0.0486 +0 0.1660 +0 0.1824 +0 0.0396 +0 0.2803 +0 0.0619 +0 0.1054 +0 0.1530 +0 0.1687 +0 0.1027 +0 0.2674 +0 0.1093 +0 0.1036 +0 0.0513 +0 0.0456 +0 0.0954 +0 0.1710 +0 0.1054 +0 0.0748 +0 0.1899 +0 0.1263 +0 0.1823 +0 0.1662 +0 0.0684 +0 0.1131 +0 0.3257 +0 0.3124 +1 0.8006 +0 0.1458 +0 0.0865 +0 0.1730 +0 0.0691 +0 0.0332 +0 0.0974 +0 0.0978 +0 0.1896 +0 0.1040 +0 0.0399 +0 0.2125 +0 0.1145 +0 0.2143 +0 0.0846 +0 0.2900 +0 0.0706 +0 0.2333 +0 0.0612 +0 0.1511 +0 0.2273 +0 0.0341 +0 0.0661 +0 0.2563 +0 0.1324 +0 0.0890 +0 0.1075 +0 0.1401 +0 0.1068 +0 0.1154 +0 0.0955 +0 0.0674 +0 0.0565 +0 0.1738 +0 0.1126 +0 0.1656 +0 0.0720 +0 0.0980 +0 0.0861 +0 0.0398 +0 0.0677 +0 0.0764 +0 0.0922 +0 0.3745 +0 0.1470 +0 0.1278 +0 0.1485 +0 0.0628 +0 0.0876 +0 0.1310 +0 0.4214 +0 0.5961 +0 0.1151 +0 0.0516 +0 0.3739 +0 0.0895 +0 0.2388 +0 0.1193 +0 0.1653 +1 0.8622 +0 0.1845 +0 0.1320 +0 0.0680 +0 0.0863 +0 0.1276 +0 0.0670 +0 0.0542 +0 0.1340 +0 0.1294 +0 0.0578 +0 0.0742 +0 0.0519 +0 0.1639 +0 0.1225 +0 0.1147 +0 0.1905 +0 0.1826 +0 0.1556 +0 0.0737 +0 0.2588 +0 0.7188 +0 0.1002 +0 0.0916 +0 0.0442 +0 0.2195 +0 0.0710 +0 0.0564 +0 0.1129 +0 0.0793 +0 0.0573 +0 0.2418 +0 0.0457 +0 0.0849 +0 0.1453 +0 0.0805 +0 0.2376 +0 0.1591 +0 0.1280 +0 0.4797 +0 0.1823 +0 0.1947 +0 0.1342 +0 0.2378 +0 0.1619 +1 0.7583 +0 0.0804 +0 0.1416 +0 0.1136 +0 0.0958 +0 0.1263 +0 0.0964 +0 0.1006 +0 0.0759 +0 0.1221 +0 0.1066 +0 0.0717 +0 0.4049 +0 0.1275 +0 0.0472 +0 0.0989 +0 0.2231 +0 0.0590 +0 0.0813 +0 0.0931 +0 0.2054 +0 0.0674 +0 0.0970 +0 0.7230 +0 0.0929 +0 0.6460 +0 0.0789 +0 0.0762 +0 0.1514 +0 0.0861 +0 0.0621 +0 0.1434 +0 0.3441 +0 0.0539 +0 0.0598 +0 0.1706 +0 0.0816 +0 0.0937 +0 0.2192 +0 0.1022 +0 0.1323 +0 0.1122 +0 0.1400 +0 0.2135 +0 0.0938 +0 0.0470 +0 0.1054 +0 0.1867 +0 0.0988 +0 0.0543 +0 0.1015 +0 0.7430 +0 0.0556 +0 0.0608 +0 0.0921 +0 0.2696 +0 0.1327 +0 0.1601 +0 0.0903 +0 0.1708 +0 0.0695 +0 0.0536 +0 0.1886 +0 0.0397 +0 0.0935 +0 0.1113 +0 0.1202 +0 0.0784 +0 0.0982 +0 0.1313 +0 0.0564 +0 0.0981 +0 0.0454 +0 0.1237 +0 0.4901 +0 0.0534 +0 0.0701 +0 0.1460 +0 0.1458 +0 0.1914 +0 0.0797 +0 0.1172 +0 0.1158 +0 0.0355 +0 0.3537 +0 0.0646 +0 0.2217 +0 0.2649 +0 0.1920 +0 0.0456 +0 0.1693 +1 0.7502 +0 0.0617 +0 0.3757 +0 0.1116 +0 0.1187 +0 0.1087 +0 0.0572 +0 0.1032 +0 0.1483 +0 0.0581 +0 0.1696 +0 0.0798 +0 0.1996 +0 0.1077 +0 0.0607 +0 0.1126 +0 0.1660 +0 0.1939 +0 0.1050 +0 0.0428 +0 0.3263 +0 0.0581 +0 0.0931 +0 0.0818 +0 0.1506 +0 0.1059 +0 0.3946 +0 0.0651 +0 0.0820 +0 0.1256 +0 0.0859 +0 0.1232 +0 0.3138 +0 0.1793 +0 0.0500 +0 0.0810 +0 0.3901 +0 0.0967 +0 0.1119 +0 0.0843 +0 0.1426 +0 0.1045 +0 0.4326 +0 0.2062 +0 0.1159 +0 0.0584 +0 0.1577 +0 0.0823 +0 0.0764 +0 0.0845 +0 0.2089 +0 0.2401 +0 0.2163 +0 0.0488 +0 0.0802 +0 0.1792 +0 0.3049 +0 0.0367 +0 0.0561 +0 0.1100 +0 0.0634 +0 0.2228 +0 0.1601 +0 0.1350 +0 0.0515 +0 0.1392 +0 0.0763 +0 0.0499 +0 0.0784 +0 0.0868 +0 0.1540 +0 0.1688 +0 0.1735 +0 0.0352 +0 0.0577 +0 0.3996 +0 0.0822 +0 0.1178 +0 0.1935 +0 0.0866 +0 0.0819 +0 0.2434 +0 0.1679 +0 0.0939 +0 0.1079 +0 0.0688 +0 0.0824 +0 0.1909 +0 0.1930 +0 0.2141 +0 0.0871 +0 0.0590 +0 0.0514 +0 0.1573 +0 0.0580 +0 0.1050 +0 0.0652 +0 0.1192 +0 0.1897 +0 0.1050 +0 0.1719 +0 0.2421 +0 0.1289 +0 0.1520 +0 0.1171 +0 0.1165 +0 0.0593 +0 0.0954 +0 0.2282 +0 0.1381 +0 0.1486 +0 0.2147 +0 0.2372 +0 0.1483 +0 0.0881 +0 0.0424 +0 0.1376 +0 0.5075 +0 0.0885 +0 0.1471 +0 0.0983 +0 0.1974 +0 0.1112 +0 0.0908 +0 0.2084 +0 0.0838 +0 0.1838 +0 0.1219 +0 0.1194 +0 0.0702 +0 0.1704 +0 0.1876 +0 0.0613 +0 0.1065 +0 0.2036 +0 0.0829 +0 0.0832 +0 0.1408 +0 0.0699 +0 0.1757 +0 0.0419 +0 0.2762 +0 0.5366 +0 0.0791 +0 0.1086 +0 0.1945 +0 0.2542 +0 0.0980 +0 0.1611 +0 0.0784 +0 0.1398 +0 0.2049 +0 0.1948 +0 0.0948 +0 0.1510 +1 0.7598 +0 0.1656 +0 0.1637 +0 0.1068 +0 0.3704 +0 0.3559 +0 0.0886 +0 0.2239 +0 0.0533 +0 0.0754 +0 0.1001 +0 0.3292 +0 0.1310 +0 0.1039 +0 0.1286 +0 0.0681 +0 0.0770 +0 0.0956 +0 0.1069 +0 0.1010 +0 0.0942 +0 0.0855 +0 0.1573 +0 0.1192 +0 0.0607 +0 0.0822 +0 0.1399 +0 0.1981 +0 0.0773 +0 0.1080 +0 0.0929 +0 0.0935 +0 0.1453 +0 0.0800 +0 0.1379 +0 0.1257 +0 0.1019 +1 0.7651 +1 0.7761 +0 0.1499 +0 0.1291 +0 0.0822 +0 0.5967 +0 0.0473 +0 0.0857 +0 0.1041 +0 0.2360 +0 0.1596 +0 0.1154 +0 0.2745 +1 0.7643 +0 0.1543 +0 0.1320 +0 0.0546 +0 0.1756 +0 0.2471 +0 0.1126 +0 0.1442 +0 0.1003 +0 0.1009 +0 0.0906 +1 0.8122 +0 0.1133 +0 0.0652 +0 0.0821 +0 0.1189 +0 0.5947 +0 0.0510 +0 0.0823 +0 0.1030 +0 0.0583 +0 0.4887 +0 0.0934 +0 0.4554 +0 0.1581 +0 0.0582 +0 0.5550 +0 0.1676 +0 0.1948 +0 0.1131 +0 0.0938 +0 0.1087 +0 0.0768 +0 0.0652 +0 0.2323 +0 0.0909 +0 0.0786 +0 0.0296 +0 0.0805 +0 0.0938 +0 0.0877 +0 0.0377 +0 0.1331 +0 0.0707 +0 0.1664 +0 0.0831 +0 0.3060 +0 0.1677 +0 0.6861 +0 0.0888 +0 0.1031 +0 0.0957 +0 0.2976 +0 0.0698 +0 0.2563 +0 0.1227 +0 0.1072 +0 0.0842 +0 0.0834 +0 0.0878 +0 0.1899 +0 0.0843 +0 0.1438 +0 0.2167 +0 0.2148 +0 0.1372 +0 0.4929 +0 0.2140 +0 0.1159 +0 0.1372 +0 0.2535 +0 0.1140 +0 0.1891 +0 0.0321 +0 0.0920 +0 0.2055 +0 0.0475 +0 0.0646 +0 0.0816 +0 0.7397 +0 0.2228 +0 0.1208 +0 0.0688 +0 0.3836 +0 0.0969 +0 0.0470 +0 0.1018 +0 0.1015 +0 0.1691 +0 0.0654 +0 0.1667 +0 0.0924 +0 0.1508 +0 0.6206 +0 0.1653 +1 0.8223 +0 0.0792 +1 0.8542 +0 0.2301 +0 0.0653 +0 0.1128 +0 0.1032 +0 0.2547 +0 0.2818 +0 0.0697 +0 0.0647 +0 0.0957 +0 0.1502 +0 0.0433 +0 0.0459 +0 0.0578 +0 0.1076 +0 0.0926 +0 0.1493 +0 0.0743 +0 0.1216 +0 0.0950 +0 0.1846 +0 0.0629 +0 0.0508 +0 0.1822 +0 0.2010 +0 0.1261 +0 0.0652 +0 0.1901 +0 0.4320 +0 0.1079 +0 0.1103 +0 0.1036 +0 0.0861 +0 0.0735 +0 0.1434 +0 0.3190 +0 0.4015 +0 0.1238 +0 0.0572 +0 0.0916 +0 0.5475 +0 0.1071 +0 0.2214 +0 0.1561 +0 0.0833 +0 0.1242 +0 0.0659 +0 0.1441 +0 0.0633 +0 0.1754 +0 0.2185 +0 0.0878 +0 0.0991 +0 0.1614 +0 0.0493 +0 0.0460 +0 0.0525 +1 0.8780 +0 0.1653 +0 0.0800 +0 0.1072 +0 0.1785 +0 0.3130 +0 0.1172 +0 0.1456 +0 0.1701 +0 0.2612 +0 0.2136 +0 0.0440 +1 0.7591 +0 0.0759 +0 0.2634 +0 0.0725 +0 0.0957 +0 0.0558 +0 0.1939 +0 0.1878 +0 0.0574 +0 0.0607 +0 0.1662 +0 0.1244 +0 0.2256 +0 0.1428 +0 0.1008 +0 0.0889 +0 0.0736 +0 0.1210 +0 0.1399 +0 0.0529 +0 0.0892 +0 0.0741 +0 0.0739 +0 0.0894 +0 0.0517 +0 0.0806 +0 0.0863 +0 0.0537 +0 0.0940 +0 0.0860 +0 0.0449 +0 0.1836 +0 0.0404 +0 0.1848 +0 0.1370 +0 0.0549 +0 0.3358 +1 0.7677 +0 0.2939 +0 0.1258 +0 0.5398 +0 0.3239 +0 0.0554 +0 0.0536 +0 0.1177 +0 0.1006 +0 0.0809 +0 0.2153 +0 0.0992 +0 0.0704 +0 0.0804 +0 0.1582 +0 0.0851 +0 0.2221 +0 0.1755 +0 0.2383 +0 0.0424 +0 0.0465 +0 0.0698 +0 0.2067 +0 0.7342 +0 0.0958 +0 0.1202 +0 0.1973 +0 0.0946 +0 0.0975 +0 0.1285 +0 0.0554 +0 0.0838 +0 0.1139 +0 0.0926 +0 0.0992 +0 0.1896 +0 0.2641 +0 0.1516 +0 0.0993 +0 0.0683 +0 0.1895 +0 0.0457 +0 0.3364 +0 0.0615 +0 0.1737 +0 0.2448 +0 0.2109 +0 0.4272 +0 0.6951 +0 0.1233 +0 0.1723 +0 0.0764 +0 0.1408 +0 0.2090 +0 0.2276 +0 0.0517 +0 0.6426 +0 0.0885 +0 0.1037 +0 0.1291 +0 0.1093 +0 0.1021 +0 0.1351 +0 0.2452 +0 0.0884 +0 0.1558 +0 0.1473 +1 0.7814 +0 0.1870 +0 0.0454 +0 0.0862 +0 0.5201 +0 0.0708 +0 0.0657 +0 0.0959 +0 0.0503 +0 0.0638 +0 0.0583 +1 0.7934 +0 0.0344 +0 0.4418 +0 0.0704 +0 0.2049 +0 0.1547 +0 0.3312 +0 0.1977 +0 0.1310 +0 0.2873 +0 0.0286 +0 0.0675 +0 0.2016 +0 0.1825 +0 0.1100 +1 0.7644 +0 0.2746 +0 0.3800 +0 0.2878 +0 0.1153 +0 0.0946 +0 0.0843 +0 0.0363 +0 0.1629 +0 0.2171 +0 0.0571 +0 0.0849 +0 0.1244 +0 0.1537 +0 0.0879 +0 0.0578 +0 0.1126 +0 0.1131 +0 0.0902 +0 0.0553 +0 0.0356 +0 0.1229 +0 0.1072 +0 0.1948 +0 0.1199 +0 0.0880 +0 0.0766 +0 0.0754 +0 0.0759 +0 0.0946 +0 0.0472 +0 0.1320 +0 0.6863 +0 0.0983 +0 0.1288 +0 0.1083 +0 0.1377 +0 0.2030 +0 0.1136 +0 0.0502 +0 0.6663 +0 0.1921 +0 0.2326 +0 0.0977 +0 0.1113 +0 0.2119 +0 0.0955 +0 0.0460 +0 0.0995 +0 0.1359 +0 0.3260 +0 0.0567 +0 0.3957 +0 0.0748 +0 0.1063 +0 0.2738 +0 0.5265 +0 0.1851 +0 0.0703 +0 0.1087 +0 0.0559 +0 0.0819 +1 0.8107 +0 0.1513 +0 0.0951 +0 0.0485 +0 0.1135 +0 0.1216 +0 0.0929 +0 0.0961 +0 0.1675 +0 0.2843 +0 0.3093 +0 0.1927 +0 0.1066 +0 0.1580 +0 0.0677 +0 0.3177 +0 0.2459 +0 0.1391 +0 0.1437 +0 0.2472 +0 0.1270 +0 0.0708 +0 0.0623 +0 0.1841 +0 0.1444 +0 0.0602 +0 0.2303 +0 0.2887 +0 0.0785 +0 0.0897 +0 0.1086 +0 0.0915 +0 0.0795 +0 0.1308 +0 0.1346 +0 0.1458 +0 0.0511 +0 0.0877 +0 0.0512 +0 0.1410 +0 0.0759 +0 0.1322 +0 0.0689 +0 0.0306 +0 0.1420 +0 0.6642 +0 0.1309 +0 0.0703 +0 0.1791 +0 0.0919 +0 0.0764 +0 0.2028 +0 0.0515 +0 0.1341 +0 0.4458 +0 0.1451 +0 0.0817 +0 0.1643 +0 0.4164 +0 0.1142 +0 0.0501 +0 0.0606 +0 0.0918 +0 0.1708 +0 0.1035 +0 0.0490 +0 0.3146 +0 0.0831 +0 0.0734 +0 0.1088 +0 0.1346 +0 0.0570 +0 0.5262 +0 0.1141 +0 0.0422 +0 0.0409 +0 0.0795 +0 0.0705 +0 0.0752 +0 0.6924 +0 0.6427 +0 0.0944 +0 0.4203 +0 0.1352 +0 0.7179 +0 0.4744 +0 0.1144 +0 0.0843 +0 0.0393 +0 0.1908 +0 0.0975 +0 0.1351 +0 0.1348 +0 0.1316 +0 0.1841 +0 0.2695 +0 0.0868 +0 0.1899 +0 0.0883 +0 0.0995 +0 0.0734 +0 0.1596 +0 0.4410 +0 0.1902 +0 0.1806 +0 0.2178 +0 0.1060 +0 0.3439 +0 0.1182 +0 0.0858 +0 0.0664 +0 0.1149 +0 0.0854 +0 0.0586 +0 0.0625 +0 0.0854 +0 0.1173 +0 0.1129 +0 0.0887 +0 0.0632 +0 0.1828 +0 0.0903 +0 0.1677 +0 0.0797 +0 0.1310 +1 0.7921 +0 0.1094 +0 0.1043 +0 0.2152 +0 0.1041 +0 0.3243 +0 0.0886 +0 0.1873 +1 0.8348 +0 0.0595 +0 0.1362 +0 0.0872 +0 0.0827 +0 0.0959 +0 0.1025 +0 0.0822 +0 0.0629 +0 0.1624 +0 0.1605 +0 0.1483 +0 0.0928 +0 0.3459 +0 0.2102 +0 0.0535 +1 0.3233 +0 0.1020 +0 0.0701 +0 0.3915 +0 0.1516 +0 0.0890 +0 0.1433 +0 0.3944 +0 0.2943 +0 0.0764 +0 0.0784 +0 0.1408 +0 0.3290 +0 0.0800 +0 0.0669 +0 0.1388 +0 0.0783 +0 0.1857 +0 0.0286 +0 0.1982 +0 0.1942 +0 0.2412 +0 0.3032 +0 0.1572 +0 0.2005 +0 0.1691 +0 0.1203 +0 0.1444 +0 0.1223 +0 0.0937 +0 0.1678 +0 0.2610 +0 0.0960 +0 0.0955 +0 0.0394 +0 0.0713 +0 0.0540 +0 0.1384 +0 0.1530 +0 0.1317 +0 0.6405 +0 0.0681 +0 0.0679 +0 0.1263 +0 0.0517 +0 0.1482 +0 0.2076 +0 0.2620 +0 0.0950 +0 0.0940 +0 0.1053 +0 0.1533 +0 0.0577 +0 0.1294 +0 0.0541 +0 0.0626 +0 0.0827 +0 0.0407 +0 0.0732 +0 0.0968 +0 0.1119 +0 0.0672 +0 0.2293 +0 0.2308 +0 0.0506 +0 0.1866 +0 0.4489 +0 0.1205 +0 0.1701 +0 0.0502 +0 0.0897 +0 0.1566 +0 0.0528 +0 0.0885 +0 0.0792 +0 0.0704 +0 0.1209 +0 0.1758 +0 0.1461 +0 0.1335 +0 0.1401 +0 0.0745 +0 0.4893 +0 0.1090 +0 0.1643 +0 0.0448 +0 0.0632 +0 0.0381 +0 0.0838 +0 0.1644 +0 0.0360 +0 0.1099 +0 0.0841 +0 0.0675 +0 0.2621 +0 0.1534 +0 0.2145 +0 0.1086 +0 0.0766 +0 0.1539 +0 0.3197 +0 0.2102 +0 0.0456 +0 0.2152 +0 0.0846 +0 0.1647 +0 0.0469 +0 0.0525 +0 0.3692 +0 0.3932 +0 0.0533 +0 0.2749 +0 0.1482 +0 0.1875 +0 0.6316 +0 0.1543 +0 0.1211 +0 0.0874 +0 0.1749 +0 0.1708 +0 0.1872 +0 0.1119 +0 0.4211 +0 0.3076 +0 0.0386 +0 0.1030 +0 0.1232 +0 0.0834 +0 0.0435 +0 0.1255 +0 0.2878 +0 0.0870 +0 0.1758 +0 0.1501 +0 0.2570 +0 0.0530 +0 0.1378 +0 0.0832 +0 0.0751 +0 0.0411 +0 0.1913 +0 0.1146 +0 0.0880 +0 0.1238 +0 0.1388 +0 0.1029 +0 0.0698 +0 0.2277 +1 0.8046 +0 0.0961 +0 0.0505 +0 0.0474 +0 0.3612 +0 0.0826 +0 0.2809 +0 0.3214 +0 0.0739 +0 0.1644 +0 0.0508 +0 0.0572 +0 0.0936 +0 0.0775 +0 0.0340 +0 0.1403 +0 0.0555 +0 0.0552 +0 0.0925 +0 0.1539 +0 0.3716 +1 0.7986 +0 0.0532 +0 0.0743 +0 0.1071 +0 0.0420 +0 0.0839 +0 0.0956 +0 0.0773 +0 0.0503 +0 0.1261 +0 0.1764 +0 0.0646 +0 0.0731 +0 0.1593 +0 0.1222 +0 0.1463 +0 0.1419 +0 0.1649 +0 0.1291 +0 0.2509 +0 0.0589 +0 0.0697 +0 0.0727 +0 0.0653 +0 0.4046 +0 0.1293 +0 0.0827 +0 0.2214 +0 0.0861 +0 0.1179 +0 0.0642 +0 0.1071 +0 0.0705 +0 0.1037 +0 0.1056 +0 0.1942 +0 0.0485 +0 0.0868 +0 0.0663 +0 0.1090 +0 0.0875 +0 0.2359 +0 0.3600 +0 0.2010 +0 0.0780 +0 0.0487 +0 0.0777 +0 0.0828 +0 0.0836 +0 0.0661 +0 0.0319 +0 0.0614 +0 0.1298 +0 0.1499 +0 0.0854 +0 0.1816 +0 0.1451 +0 0.0609 +0 0.1778 +0 0.1208 +0 0.0900 +0 0.2747 +0 0.1746 +0 0.1252 +0 0.1160 +0 0.1192 +0 0.1586 +0 0.1337 +0 0.0795 +0 0.0554 +0 0.3718 +0 0.2445 +0 0.1238 +0 0.2471 +0 0.0945 +0 0.2753 +0 0.0824 +0 0.0728 +0 0.2514 +0 0.1332 +0 0.1221 +0 0.2857 +0 0.1833 +0 0.2000 +0 0.3467 +0 0.0591 +0 0.1880 +0 0.1475 +0 0.0943 +0 0.5610 +0 0.1168 +0 0.0397 +0 0.0703 +0 0.0618 +0 0.6212 +0 0.1108 +0 0.3760 +0 0.2845 +0 0.0841 +0 0.1433 +0 0.2280 +0 0.1940 +0 0.0878 +0 0.1196 +0 0.1026 +0 0.0661 +0 0.0706 +0 0.0806 +1 0.7898 +0 0.2875 +0 0.1092 +0 0.0982 +0 0.4243 +0 0.2824 +0 0.0736 +0 0.0951 +0 0.0762 +0 0.0524 +0 0.0978 +0 0.1773 +0 0.0771 +0 0.6619 +0 0.0522 +0 0.1031 +0 0.2316 +0 0.0988 +0 0.0766 +0 0.0419 +0 0.1878 +0 0.1425 +0 0.0834 +0 0.4321 +0 0.1178 +0 0.0860 +0 0.2247 +0 0.1671 +0 0.0658 +0 0.0416 +0 0.1124 +0 0.0682 +0 0.1356 +0 0.0602 +0 0.1372 +0 0.1293 +0 0.0695 +0 0.0656 +0 0.1462 +0 0.0399 +0 0.0755 +0 0.1307 +0 0.1045 +0 0.0295 +0 0.1972 +0 0.1010 +0 0.7149 +0 0.1557 +0 0.2312 +0 0.0704 +0 0.0693 +0 0.0764 +0 0.1229 +0 0.0700 +0 0.0686 +0 0.2668 +0 0.0834 +1 0.7644 +0 0.1024 +1 0.7691 +0 0.3722 +0 0.0647 +0 0.1670 +0 0.1270 +0 0.1364 +0 0.1541 +0 0.1803 +0 0.0985 +0 0.2511 +0 0.3748 +0 0.1966 +0 0.6283 +0 0.0876 +0 0.1295 +0 0.1351 +0 0.0898 +0 0.1239 +0 0.0500 +0 0.1769 +0 0.1501 +0 0.5601 +0 0.1587 +0 0.2054 +0 0.1421 +0 0.1060 +0 0.1147 +0 0.0649 +0 0.0940 +0 0.1617 +0 0.1369 +1 0.8504 +0 0.0315 +0 0.1167 +0 0.1112 +0 0.0727 +0 0.0774 +0 0.1244 +0 0.1331 +0 0.1957 +0 0.0615 +0 0.2408 +0 0.0735 +0 0.0870 +0 0.0737 +0 0.1644 +0 0.2858 +0 0.2762 +0 0.1402 +0 0.0963 +0 0.0753 +0 0.0447 +0 0.1846 +0 0.0606 +0 0.0830 +0 0.0716 +0 0.0713 +0 0.0914 +0 0.1110 +0 0.1488 +0 0.3221 +0 0.1821 +0 0.0906 +0 0.1225 +0 0.1293 +0 0.1040 +0 0.0699 +0 0.1082 +0 0.1045 +0 0.1214 +0 0.0641 +0 0.3669 +0 0.1064 +0 0.7250 +0 0.2176 +0 0.1345 +0 0.0862 +0 0.1388 +0 0.0874 +0 0.1366 +0 0.0376 +0 0.1074 +0 0.1068 +0 0.1428 +0 0.1260 +0 0.1181 +0 0.1152 +0 0.0839 +0 0.3484 +0 0.1465 +0 0.0543 +0 0.1236 +0 0.2782 +0 0.1198 +0 0.0656 +0 0.1434 +0 0.1232 +0 0.0526 +0 0.1575 +0 0.2018 +0 0.2065 +0 0.0596 +0 0.3279 +0 0.2008 +0 0.2395 +0 0.1728 +0 0.2195 +0 0.0963 +0 0.0979 +0 0.0845 +0 0.1640 +0 0.1985 +0 0.0615 +0 0.0573 +0 0.1136 +0 0.1687 +0 0.1481 +0 0.0780 +0 0.0721 +0 0.0903 +0 0.0795 +0 0.1230 +0 0.1166 +0 0.1676 +0 0.2345 +0 0.0578 +0 0.1512 +0 0.1067 +0 0.0621 +0 0.1299 +0 0.0862 +0 0.1230 +0 0.0697 +0 0.2335 +0 0.0777 +0 0.1939 +0 0.1618 +0 0.1145 +0 0.0795 +0 0.5013 +0 0.0507 +0 0.2231 +0 0.1886 +0 0.1519 +0 0.1063 +0 0.1013 +0 0.1466 +0 0.3325 +0 0.0985 +0 0.2271 +0 0.0876 +0 0.1104 +0 0.1572 +0 0.1861 +0 0.1549 +0 0.0594 +0 0.1248 +0 0.4663 +0 0.0788 +0 0.1134 +0 0.2357 +0 0.1398 +0 0.1479 +0 0.2786 +0 0.1491 +0 0.1782 +0 0.2542 +0 0.0870 +0 0.0482 +0 0.1619 +0 0.2140 +0 0.0742 +0 0.1506 +0 0.1465 +0 0.1708 +1 0.8025 +0 0.1264 +0 0.1072 +0 0.0818 +0 0.0469 +1 0.8156 +0 0.1086 +0 0.0478 +0 0.2710 +0 0.1153 +0 0.0909 +0 0.0601 +0 0.2476 +0 0.0291 +0 0.0830 +0 0.0991 +0 0.1313 +0 0.0661 +0 0.1555 +0 0.1203 +0 0.1677 +0 0.0848 +0 0.2288 +0 0.1915 +0 0.2818 +0 0.1821 +0 0.0831 +0 0.0696 +0 0.3791 +0 0.0762 +0 0.0588 +0 0.1590 +0 0.0607 +0 0.0825 +0 0.1316 +0 0.1039 +0 0.2255 +0 0.1262 +0 0.1905 +0 0.0713 +0 0.1364 +0 0.2648 +0 0.3224 +0 0.0871 +0 0.0548 +0 0.1425 +0 0.1123 +0 0.1743 +0 0.1460 +0 0.0549 +0 0.2082 +0 0.1419 +0 0.1758 +0 0.1335 +1 0.7886 +0 0.0855 +0 0.1033 +0 0.5974 +0 0.2012 +0 0.1557 +0 0.3579 +0 0.1427 +0 0.2828 +0 0.0573 +0 0.0464 +0 0.2125 +0 0.1453 +0 0.0560 +0 0.1547 +0 0.3522 +0 0.1178 +0 0.1032 +0 0.0780 +0 0.1176 +0 0.0986 +0 0.0571 +0 0.2575 +0 0.1423 +0 0.4143 +0 0.1714 +0 0.1721 +0 0.1768 +0 0.2049 +0 0.1209 +0 0.0420 +1 0.7510 +0 0.0740 +0 0.1437 +0 0.0546 +0 0.2425 +0 0.0705 +0 0.0480 +0 0.0776 +0 0.0857 +0 0.0935 +0 0.1013 +0 0.0670 +0 0.0603 +0 0.1612 +0 0.0516 +0 0.1226 +0 0.1154 +0 0.1332 +0 0.0889 +0 0.1362 +0 0.0905 +0 0.1476 +0 0.1537 +0 0.3033 +0 0.1101 +0 0.2730 +0 0.0690 +0 0.1691 +0 0.2639 +0 0.0694 +0 0.0881 +0 0.7194 +0 0.5878 +0 0.1331 +0 0.0664 +0 0.3827 +0 0.1448 +0 0.0946 +0 0.0655 +0 0.0875 +0 0.0418 +0 0.1399 +0 0.4928 +0 0.1683 +0 0.0798 +0 0.1035 +0 0.1109 +0 0.0743 +0 0.1424 +1 0.8759 +0 0.0843 +0 0.1545 +0 0.1370 +0 0.1003 +0 0.0949 +0 0.0537 +0 0.1624 +0 0.0356 +0 0.3042 +0 0.1901 +0 0.1097 +0 0.0644 +0 0.0542 +0 0.1327 +0 0.0649 +0 0.0811 +0 0.1603 +0 0.1559 +0 0.0738 +0 0.0772 +0 0.0685 +0 0.6921 +0 0.0925 +0 0.2136 +0 0.6610 +0 0.3164 +0 0.1223 +0 0.0688 +0 0.2086 +0 0.1959 +0 0.1568 +0 0.1013 +0 0.0612 +0 0.1508 +0 0.1264 +0 0.1765 +0 0.0497 +1 0.8216 +0 0.1174 +0 0.1617 +0 0.0416 +0 0.0765 +0 0.1027 +0 0.1103 +0 0.0481 +0 0.0801 +0 0.1623 +0 0.1095 +0 0.1672 +0 0.1159 +0 0.0516 +0 0.4995 +0 0.0326 +0 0.1154 +0 0.1048 +0 0.1279 +0 0.1563 +0 0.1797 +0 0.0675 +0 0.1107 +0 0.0405 +0 0.0990 +0 0.1501 +0 0.1833 +0 0.0484 +0 0.0699 +0 0.1042 +0 0.0410 +0 0.2077 +0 0.0560 +0 0.2986 +0 0.0636 +0 0.2727 +0 0.0525 +0 0.0505 +0 0.1019 +0 0.1283 +0 0.3953 +0 0.0932 +0 0.0715 +0 0.1451 +0 0.1027 +0 0.2874 +0 0.0691 +0 0.0607 +0 0.1248 +0 0.3441 +0 0.1477 +0 0.0362 +0 0.1605 +0 0.2026 +0 0.1911 +0 0.0840 +0 0.1243 +0 0.1271 +0 0.1096 +0 0.1714 +0 0.1166 +0 0.1897 +0 0.0585 +0 0.1018 +0 0.0911 +0 0.1323 +0 0.2410 +0 0.1327 +0 0.1033 +0 0.2407 +0 0.4817 +0 0.2192 +0 0.0762 +0 0.1064 +0 0.1622 +1 0.8137 +0 0.1165 +0 0.1974 +0 0.0462 +0 0.0637 +0 0.1091 +0 0.3694 +0 0.0885 +0 0.1716 +0 0.0610 +0 0.2365 +0 0.1022 +0 0.0964 +0 0.0961 +0 0.1473 +0 0.0728 +0 0.0850 +0 0.2249 +0 0.1857 +0 0.0776 +0 0.1365 +0 0.2802 +0 0.0990 +1 0.8405 +0 0.0693 +0 0.1071 +0 0.1664 +0 0.1443 +0 0.0900 +1 0.8812 +0 0.0946 +0 0.0705 +0 0.0787 +1 0.8085 +0 0.0696 +0 0.0657 +0 0.1241 +1 0.8025 +0 0.0433 +0 0.1103 +0 0.0745 +0 0.0596 +0 0.1735 +0 0.1925 +0 0.2132 +0 0.1226 +0 0.1169 +0 0.1427 +0 0.0702 +0 0.0697 +0 0.1965 +0 0.0963 +0 0.0819 +0 0.2197 +0 0.0740 +0 0.1618 +0 0.0464 +0 0.1379 +0 0.5581 +0 0.1202 +0 0.3358 +0 0.0781 +0 0.2309 +0 0.2340 +0 0.1262 +0 0.2312 +0 0.2397 +0 0.2668 +0 0.1170 +0 0.1015 +0 0.1252 +0 0.1409 +0 0.4099 +0 0.0530 +0 0.1230 +0 0.1307 +0 0.0747 +0 0.1317 +0 0.0369 +0 0.0618 +0 0.0727 +0 0.1137 +0 0.4828 +0 0.0816 +0 0.3299 +0 0.0528 +0 0.3486 +0 0.1393 +0 0.1860 +0 0.0627 +0 0.1300 +0 0.1466 +0 0.0531 +0 0.0985 +0 0.0642 +0 0.0432 +0 0.0616 +0 0.1083 +0 0.0972 +0 0.0588 +0 0.0966 +0 0.1204 +0 0.0864 +0 0.1151 +0 0.1549 +0 0.2820 +0 0.0839 +1 0.8644 +0 0.0588 +0 0.0800 +0 0.2084 +0 0.0990 +0 0.1004 +0 0.2182 +0 0.0783 +0 0.0589 +0 0.0493 +1 0.8429 +0 0.0708 +0 0.4524 +0 0.0475 +0 0.0705 +0 0.1639 +0 0.1728 +0 0.1150 +0 0.0979 +0 0.0872 +0 0.1066 +0 0.0609 +0 0.0895 +0 0.1104 +0 0.0812 +0 0.1051 +0 0.1696 +0 0.0633 +0 0.1088 +0 0.2784 +0 0.0648 +0 0.0662 +0 0.0910 +0 0.0826 +0 0.1242 +0 0.0834 +0 0.0833 +0 0.1418 +0 0.5439 +0 0.2271 +0 0.0529 +0 0.1740 +0 0.1182 +0 0.0813 +0 0.0678 +0 0.0777 +0 0.6590 +0 0.1051 +0 0.5309 +0 0.0667 +0 0.3478 +0 0.2455 +0 0.0928 +0 0.0959 +0 0.0693 +0 0.1788 +0 0.2652 +0 0.0867 +0 0.3624 +0 0.0846 +0 0.3336 +0 0.2148 +0 0.1475 +0 0.2080 +0 0.5415 +0 0.0611 +0 0.0851 +0 0.0763 +0 0.1452 +0 0.0891 +0 0.2110 +0 0.1320 +0 0.0753 +0 0.0790 +0 0.0823 +0 0.0709 +0 0.0909 +0 0.1255 +0 0.0792 +0 0.0331 +0 0.1258 +0 0.0729 +0 0.0729 +0 0.0426 +0 0.1458 +0 0.2805 +0 0.0756 +0 0.1880 +0 0.1305 +0 0.1054 +0 0.0801 +0 0.0442 +1 0.8470 +0 0.4999 +0 0.7435 +0 0.0952 +0 0.1475 +0 0.1994 +0 0.3256 +0 0.3536 +0 0.1711 +0 0.0767 +0 0.1235 +0 0.1371 +0 0.1432 +0 0.0515 +0 0.1445 +0 0.4878 +0 0.0675 +0 0.2165 +0 0.0914 +0 0.6958 +0 0.1119 +0 0.7156 +0 0.0612 +0 0.0709 +0 0.0799 +0 0.0775 +0 0.0763 +0 0.0538 +0 0.1186 +0 0.0831 +0 0.1177 +0 0.4635 +0 0.0611 +0 0.1689 +0 0.0687 +0 0.2484 +0 0.1597 +0 0.1017 +0 0.0469 +0 0.2243 +0 0.0912 +0 0.1018 +0 0.1460 +0 0.0974 +0 0.1101 +0 0.1021 +0 0.2740 +0 0.6207 +0 0.1078 +0 0.1018 +0 0.3794 +0 0.0756 +0 0.1988 +0 0.1424 +0 0.0743 +0 0.0888 +0 0.2252 +0 0.2567 +0 0.1441 +0 0.1242 +0 0.4086 +0 0.7420 +0 0.0942 +0 0.0843 +0 0.1730 +0 0.0624 +0 0.0488 +0 0.0543 +0 0.3554 +0 0.1226 +0 0.1090 +0 0.1096 +0 0.1173 +0 0.1679 +0 0.1202 +0 0.3667 +0 0.0897 +0 0.0554 +0 0.0784 +0 0.1622 +0 0.3993 +0 0.0965 +0 0.0726 +0 0.6872 +0 0.1195 +0 0.1083 +0 0.1860 +0 0.1258 +0 0.5652 +0 0.1871 +0 0.0574 +0 0.0766 +0 0.0991 +0 0.1101 +0 0.0735 +0 0.3857 +0 0.1538 +0 0.1388 +0 0.1080 +0 0.1834 +0 0.0528 +0 0.0622 +1 0.4315 +0 0.2149 +0 0.1089 +0 0.0947 +0 0.0805 +0 0.0928 +0 0.1542 +0 0.0712 +0 0.0497 +0 0.0915 +0 0.0485 +0 0.1394 +0 0.0326 +0 0.0667 +0 0.0950 +0 0.1371 +0 0.0924 +0 0.1572 +0 0.1673 +0 0.1032 +0 0.1706 +0 0.1541 +0 0.2383 +0 0.0719 +0 0.1754 +0 0.1707 +0 0.1709 +0 0.1125 +0 0.4572 +0 0.2022 +0 0.1426 +0 0.1495 +0 0.1538 +0 0.1719 +1 0.8355 +0 0.3378 +0 0.1878 +0 0.1331 +0 0.2183 +0 0.3037 +0 0.0737 +1 0.8180 +0 0.1551 +0 0.0804 +0 0.1435 +0 0.0463 +0 0.0750 +0 0.1006 +0 0.1745 +0 0.3098 +0 0.0781 +0 0.1808 +0 0.1512 +1 0.7920 +0 0.1351 +0 0.3906 +0 0.0892 +0 0.2550 +0 0.0542 +0 0.1765 +0 0.1116 +0 0.4037 +0 0.0793 +0 0.0427 +0 0.1597 +0 0.1506 +0 0.0800 +0 0.0592 +0 0.3402 +0 0.1781 +0 0.1020 +0 0.1585 +0 0.0383 +0 0.1298 +0 0.1058 +0 0.1001 +0 0.0927 +0 0.0681 +0 0.2794 +0 0.1177 +0 0.1436 +0 0.1875 +0 0.0850 +0 0.1300 +0 0.1173 +0 0.0902 +0 0.2018 +0 0.0536 +0 0.0484 +0 0.0576 +0 0.0490 +0 0.1284 +0 0.1284 +0 0.0741 +0 0.2446 +0 0.1551 +0 0.0900 +0 0.2581 +0 0.1616 +0 0.0970 +0 0.0885 +0 0.2045 +0 0.0534 +0 0.1517 +1 0.8655 +0 0.0377 +0 0.1535 +0 0.0423 +0 0.2037 +0 0.1765 +0 0.1974 +0 0.5766 +0 0.0993 +0 0.0812 +0 0.0374 +0 0.1018 +0 0.0546 +0 0.1368 +0 0.1833 +0 0.0867 +0 0.1738 +0 0.1553 +0 0.2163 +0 0.1219 +1 0.8689 +0 0.0761 +0 0.2082 +0 0.1152 +0 0.0514 +0 0.0952 +0 0.0928 +0 0.0649 +0 0.0699 +0 0.1612 +0 0.1241 +0 0.1009 +0 0.0982 +0 0.0937 +0 0.0652 +0 0.0552 +0 0.0641 +0 0.0857 +0 0.0575 +0 0.1206 +0 0.0807 +0 0.1876 +0 0.0581 +0 0.2294 +0 0.1933 +0 0.0981 +0 0.0783 +0 0.3994 +0 0.0637 +0 0.1394 +0 0.0573 +0 0.1373 +0 0.0642 +0 0.2481 +0 0.2002 +0 0.1749 +0 0.0879 +0 0.2190 +0 0.1156 +0 0.2274 +0 0.3037 +0 0.1166 +0 0.1211 +0 0.0450 +0 0.2343 +0 0.0563 +0 0.0443 +0 0.1138 +0 0.1152 +0 0.0866 +0 0.1719 +0 0.1101 +0 0.1171 +0 0.0418 +0 0.2841 +0 0.1088 +0 0.0487 +0 0.0699 +0 0.1430 +0 0.0933 +0 0.0944 +0 0.0722 +0 0.1089 +0 0.0599 +0 0.1334 +0 0.1502 +0 0.0969 +0 0.2046 +0 0.0438 +0 0.2283 +0 0.0700 +0 0.3215 +0 0.0457 +0 0.1669 +0 0.0363 +0 0.0994 +0 0.0737 +0 0.1050 +0 0.2745 +0 0.0855 +0 0.0681 +0 0.2709 +0 0.0889 +0 0.0838 +1 0.8124 +0 0.2058 +0 0.4808 +0 0.0719 +0 0.1637 +0 0.7218 +1 0.7792 +0 0.1536 +0 0.0578 +0 0.1241 +0 0.1632 +0 0.0928 +0 0.0836 +0 0.0625 +0 0.0677 +0 0.0526 +0 0.1561 +0 0.3374 +0 0.5524 +0 0.0438 +0 0.1152 +0 0.0403 +0 0.1930 +0 0.1903 +0 0.5324 +0 0.1086 +0 0.1143 +0 0.0762 +0 0.0696 +0 0.3716 +0 0.2479 +0 0.0615 +1 0.7538 +0 0.1270 +0 0.1058 +0 0.0639 +0 0.0611 +0 0.1470 +0 0.0379 +0 0.1012 +0 0.1622 +0 0.0965 +0 0.1178 +0 0.3619 +0 0.7061 +0 0.0688 +0 0.0661 +0 0.1254 +0 0.1083 +0 0.1262 +0 0.1858 +0 0.7166 +0 0.2102 +0 0.5598 +0 0.3438 +0 0.2278 +0 0.1070 +0 0.0692 +0 0.0793 +0 0.0759 +0 0.1645 +0 0.1664 +0 0.1169 +0 0.1508 +0 0.3372 +0 0.1984 +0 0.4585 +0 0.1263 +0 0.0506 +0 0.0722 +0 0.1821 +0 0.2606 +0 0.0352 +0 0.1735 +0 0.0724 +0 0.1761 +0 0.1545 +0 0.0731 +0 0.6138 +0 0.2314 +1 0.7562 +0 0.0717 +0 0.1906 +0 0.2697 +0 0.1584 +0 0.2215 +0 0.0982 +0 0.0988 +0 0.0853 +0 0.4721 +0 0.2750 +0 0.2446 +0 0.6739 +0 0.0908 +0 0.1294 +0 0.1863 +0 0.0861 +0 0.1286 +0 0.1404 +0 0.1363 +0 0.1927 +0 0.2713 +0 0.1071 +0 0.0485 +0 0.1455 +0 0.1399 +0 0.0984 +0 0.0987 +0 0.1996 +0 0.1052 +0 0.0772 +0 0.1354 +0 0.1580 +0 0.1545 +0 0.5685 +0 0.0799 +0 0.0917 +0 0.0786 +0 0.0866 +0 0.2069 +0 0.0743 +0 0.0951 +0 0.1076 +0 0.1364 +0 0.0779 +0 0.1509 +0 0.1215 +0 0.1090 +0 0.0398 +0 0.2468 +0 0.0437 +0 0.0629 +0 0.1472 +0 0.1761 +0 0.0822 +0 0.2085 +0 0.0526 +0 0.1602 +0 0.0829 +0 0.3199 +0 0.0953 +0 0.2143 +0 0.1820 +0 0.2768 +0 0.1089 +0 0.0480 +0 0.1202 +0 0.0889 +0 0.0926 +0 0.0829 +0 0.1404 +0 0.1956 +0 0.0771 +0 0.2440 +0 0.3462 +0 0.0450 +0 0.3196 +0 0.7236 +0 0.1006 +0 0.3706 +0 0.1659 +0 0.0725 +0 0.0669 +1 0.8018 +0 0.1024 +0 0.1880 +0 0.3088 +0 0.1648 +0 0.1350 +0 0.1003 +0 0.0682 +0 0.2024 +0 0.2137 +0 0.2343 +0 0.1080 +0 0.1854 +0 0.0649 +0 0.1192 +0 0.2792 +0 0.0579 +0 0.0690 +0 0.0988 +0 0.0678 +0 0.1143 +0 0.1064 +0 0.0437 +0 0.1240 +0 0.1069 +0 0.1532 +0 0.0977 +0 0.2441 +0 0.1642 +0 0.0553 +0 0.1619 +0 0.1220 +0 0.0604 +0 0.0409 +0 0.0867 +0 0.2935 +0 0.1731 +0 0.1221 +0 0.1744 +0 0.0728 +0 0.0597 +0 0.0495 +0 0.0644 +0 0.0672 +0 0.4124 +0 0.2620 +0 0.2054 +0 0.0483 +0 0.0614 +1 0.7783 +0 0.1249 +0 0.0420 +0 0.0761 +0 0.0971 +0 0.0499 +0 0.0527 +0 0.1229 +0 0.0698 +0 0.3841 +0 0.0655 +0 0.0712 +0 0.0772 +0 0.0832 +0 0.2711 +0 0.1474 +0 0.1244 +0 0.0435 +0 0.2472 +0 0.1932 +0 0.0628 +0 0.1890 +0 0.0533 +0 0.2225 +0 0.0699 +0 0.1046 +0 0.1662 +0 0.1244 +0 0.0803 +0 0.1237 +0 0.1360 +0 0.0545 +0 0.3186 +0 0.2964 +0 0.1559 +0 0.0864 +0 0.0661 +0 0.0597 +0 0.0833 +0 0.2002 +0 0.0728 +0 0.1303 +0 0.1439 +0 0.0613 +0 0.1223 +0 0.3234 +0 0.6409 +0 0.0868 +0 0.0540 +0 0.1170 +0 0.1140 +0 0.2117 +0 0.1020 +0 0.1382 +0 0.0438 +0 0.0510 +0 0.0659 +0 0.1509 +0 0.0845 +0 0.0942 +1 0.8543 +0 0.0915 +0 0.0946 +0 0.0763 +0 0.0460 +0 0.3102 +0 0.1089 +0 0.1163 +0 0.1265 +0 0.1367 +0 0.1504 +0 0.1602 +0 0.1217 +0 0.0680 +0 0.0545 +0 0.1019 +0 0.1106 +0 0.1186 +0 0.1028 +0 0.1068 +0 0.1631 +0 0.0420 +0 0.0395 +0 0.1135 +0 0.0661 +0 0.5973 +0 0.1188 +0 0.0544 +0 0.1133 +0 0.2628 +0 0.0625 +0 0.0590 +0 0.1954 +0 0.1541 +0 0.0546 +0 0.0650 +0 0.1065 +0 0.1660 +0 0.3081 +0 0.0973 +0 0.1010 +0 0.0594 +0 0.0621 +0 0.2147 +0 0.0961 +0 0.0607 +0 0.1203 +0 0.1598 +0 0.2094 +0 0.1403 +0 0.1317 +0 0.1314 +0 0.1737 +0 0.0768 +0 0.1365 +0 0.1465 +0 0.1161 +0 0.0965 +0 0.0485 +0 0.1885 +1 0.8009 +0 0.0730 +0 0.0568 +0 0.0438 +0 0.1642 +0 0.0903 +0 0.1322 +0 0.0772 +0 0.0758 +0 0.0573 +0 0.2866 +0 0.1042 +0 0.1108 +0 0.1844 +0 0.0608 +0 0.3427 +0 0.1826 +0 0.0703 +0 0.0912 +0 0.1347 +0 0.1084 +0 0.3411 +0 0.1594 +0 0.0903 +0 0.0521 +0 0.0873 +0 0.2108 +0 0.0602 +0 0.4441 +0 0.1003 +0 0.1221 +0 0.1180 +0 0.1128 +0 0.1066 +0 0.3704 +0 0.1017 +0 0.1349 +0 0.1221 +0 0.1472 +0 0.1294 +0 0.0946 +0 0.0335 +0 0.0452 +0 0.0839 +0 0.2034 +0 0.2133 +0 0.1647 +0 0.2682 +0 0.0857 +0 0.0937 +0 0.1196 +0 0.0892 +0 0.2241 +0 0.0532 +0 0.2296 +0 0.0857 +0 0.1314 +0 0.0605 +0 0.2695 +0 0.0857 +0 0.2316 +0 0.0668 +0 0.3603 +0 0.1210 +0 0.2843 +0 0.3950 +0 0.5063 +0 0.2159 +0 0.1331 +0 0.0770 +0 0.1694 +0 0.0733 +0 0.1191 +0 0.1599 +0 0.1581 +0 0.0822 +0 0.1128 +0 0.0469 +0 0.3296 +0 0.1283 +0 0.0500 +0 0.1123 +1 0.2889 +0 0.4772 +0 0.0602 +0 0.0492 +0 0.1768 +0 0.0985 +0 0.0495 +0 0.1631 +0 0.0815 +0 0.0586 +0 0.3256 +0 0.2273 +0 0.0625 +0 0.1768 +0 0.1411 +0 0.0676 +0 0.0690 +0 0.4821 +0 0.0574 +0 0.0708 +0 0.5565 +0 0.1418 +0 0.0952 +0 0.1264 +0 0.1119 +0 0.2219 +0 0.0418 +0 0.0802 +0 0.0437 +0 0.3157 +0 0.5908 +0 0.2273 +0 0.0863 +0 0.0720 +0 0.1448 +0 0.1987 +0 0.0678 +0 0.0633 +0 0.0590 +0 0.1193 +1 0.7911 +0 0.2296 +0 0.0959 +0 0.3066 +0 0.1889 +0 0.1372 +0 0.4263 +0 0.3803 +0 0.0798 +0 0.1223 +0 0.0551 +0 0.0500 +0 0.0698 +0 0.0923 +0 0.0884 +0 0.0585 +0 0.0841 +0 0.2609 +0 0.0838 +0 0.6889 +0 0.1311 +0 0.1143 +0 0.1282 +0 0.1789 +0 0.1011 +0 0.1348 +0 0.0911 +0 0.0812 +0 0.1197 +0 0.1339 +0 0.1831 +0 0.1581 +0 0.0407 +0 0.1207 +0 0.0516 +0 0.6489 +0 0.1382 +0 0.2911 +0 0.0893 +0 0.0934 +0 0.1685 +0 0.0705 +0 0.2686 +0 0.0472 +0 0.1151 +0 0.0504 +0 0.1949 +0 0.2094 +0 0.3113 +0 0.2492 +0 0.1417 +0 0.1386 +0 0.1304 +0 0.1393 +0 0.2242 +0 0.1105 +0 0.1309 +0 0.1316 +0 0.1048 +0 0.0875 +0 0.0764 +0 0.1546 +0 0.0980 +0 0.1202 +0 0.1986 +0 0.2291 +1 0.8657 +0 0.0638 +0 0.2659 +0 0.1005 +0 0.1771 +0 0.1796 +0 0.0462 +0 0.0479 +0 0.2072 +0 0.1811 +0 0.0547 +0 0.1975 +0 0.0685 +0 0.1111 +0 0.0869 +0 0.4373 +1 0.7969 +0 0.1267 +0 0.3703 +0 0.0823 +0 0.0930 +0 0.1442 +0 0.2420 +0 0.1262 +0 0.0661 +0 0.0931 +0 0.5015 +0 0.1707 +0 0.1265 +0 0.2398 +0 0.0435 +0 0.0899 +0 0.3189 +0 0.0495 +0 0.0450 +0 0.0804 +0 0.0579 +0 0.1658 +0 0.3363 +0 0.1056 +0 0.2192 +0 0.0683 +0 0.1859 +0 0.2769 +0 0.7002 +0 0.2100 +0 0.1358 +0 0.0820 +0 0.2685 +0 0.0736 +0 0.3127 +0 0.1176 +0 0.0782 +0 0.1644 +0 0.3696 +0 0.0772 +0 0.0893 +0 0.2112 +0 0.0972 +0 0.1139 +0 0.0891 +0 0.0726 +0 0.0565 +0 0.0582 +0 0.3561 +0 0.1370 +0 0.0533 +0 0.0652 +0 0.1349 +0 0.1244 +0 0.3718 +0 0.2431 +0 0.0691 +0 0.1612 +0 0.2919 +0 0.4661 +0 0.1790 +0 0.0549 +0 0.0889 +0 0.1421 +0 0.1878 +0 0.0984 +0 0.0473 +0 0.2059 +0 0.1128 +0 0.1094 +0 0.1102 +0 0.0527 +0 0.0546 +0 0.1984 +0 0.1080 +0 0.1301 +0 0.5484 +0 0.0536 +0 0.1014 +0 0.0593 +0 0.0768 +0 0.0579 +0 0.2352 +0 0.1508 +0 0.0854 +0 0.1211 +0 0.0669 +0 0.0662 +0 0.0322 +0 0.1451 +0 0.0616 +0 0.2826 +0 0.1003 +0 0.1350 +0 0.1402 +0 0.1669 +0 0.1739 +0 0.2413 +0 0.0470 +0 0.0784 +0 0.2556 +0 0.0687 +0 0.2443 +0 0.0728 +0 0.0362 +0 0.1067 +0 0.2261 +0 0.0896 +0 0.0364 +0 0.0511 +0 0.1918 +0 0.1649 +0 0.1056 +0 0.3229 +0 0.0907 +0 0.0704 +0 0.4213 +0 0.0909 +0 0.1188 +0 0.0671 +0 0.0608 +0 0.6168 +0 0.1234 +0 0.2546 +0 0.1225 +0 0.0736 +0 0.0876 +0 0.0850 +0 0.0952 +0 0.3669 +0 0.0785 +0 0.1726 +0 0.1069 +0 0.1390 +0 0.0728 +0 0.7333 +0 0.0443 +0 0.0725 +0 0.1188 +0 0.1555 +0 0.1552 +0 0.0591 +0 0.0794 +0 0.2829 +0 0.0812 +0 0.0585 +0 0.1300 +0 0.1100 +0 0.1756 +0 0.1496 +0 0.3322 +0 0.1358 +0 0.1410 +0 0.0644 +0 0.0693 +0 0.1798 +0 0.2342 +0 0.0981 +0 0.0880 +0 0.3376 +0 0.2044 +0 0.0409 +0 0.1102 +0 0.1208 +0 0.1138 +0 0.0703 +0 0.0612 +0 0.1419 +0 0.0750 +0 0.1100 +0 0.0724 +0 0.2597 +0 0.1913 +0 0.1232 +0 0.2872 +0 0.1129 +0 0.3183 +0 0.1040 +0 0.2155 +0 0.1044 +0 0.0871 +0 0.2424 +0 0.0699 +0 0.1693 +0 0.1278 +0 0.1269 +0 0.1140 +0 0.1758 +0 0.0664 +0 0.0688 +0 0.2317 +0 0.1811 +0 0.0536 +0 0.0705 +0 0.1512 +0 0.2404 +0 0.1876 +0 0.0662 +0 0.0707 +0 0.1323 +0 0.0848 +0 0.0995 +0 0.0894 +0 0.0885 +1 0.7580 +0 0.0432 +0 0.1078 +1 0.8770 +0 0.0323 +1 0.8097 +0 0.2920 +0 0.1413 +0 0.4586 +0 0.0690 +0 0.2130 +0 0.0959 +0 0.0845 +0 0.1109 +0 0.0579 +0 0.1343 +0 0.1540 +0 0.5820 +1 0.8618 +0 0.0500 +0 0.1153 +0 0.3209 +0 0.1722 +0 0.0744 +0 0.0636 +0 0.1123 +0 0.0777 +0 0.0465 +0 0.0938 +0 0.0977 +0 0.2647 +0 0.3124 +0 0.1260 +0 0.0510 +0 0.1770 +0 0.0459 +0 0.0976 +0 0.1285 +0 0.1781 +0 0.1210 +0 0.1973 +1 0.8839 +0 0.1203 +0 0.2924 +0 0.0790 +0 0.1487 +0 0.4765 +0 0.0338 +0 0.1917 +0 0.0912 +0 0.1287 +0 0.1759 +0 0.0947 +0 0.2929 +0 0.1123 +0 0.1955 +0 0.0932 +0 0.1800 +0 0.1563 +0 0.2961 +0 0.2666 +0 0.0700 +0 0.0587 +0 0.1146 +0 0.0612 +0 0.0392 +0 0.1109 +1 0.7506 +0 0.0795 +0 0.1945 +0 0.7443 +0 0.0535 +0 0.3357 +0 0.1371 +0 0.0687 +0 0.0589 +0 0.1314 +0 0.1658 +0 0.0490 +0 0.2344 +0 0.1151 +0 0.1531 +0 0.1399 +0 0.2565 +0 0.0831 +0 0.4510 +0 0.1910 +0 0.0739 +0 0.0880 +0 0.1616 +0 0.2342 +0 0.1322 +0 0.0494 +0 0.3218 +0 0.0837 +0 0.0895 +0 0.0640 +0 0.5659 +0 0.0941 +0 0.0925 +1 0.7776 +0 0.2132 +0 0.0707 +0 0.1055 +0 0.1675 +0 0.1428 +0 0.0676 +0 0.1497 +0 0.1386 +0 0.2935 +0 0.2419 +0 0.0653 +0 0.1637 +0 0.0554 +0 0.1396 +0 0.2557 +0 0.1744 +0 0.0989 +0 0.2114 +0 0.1490 +0 0.1153 +0 0.1655 +0 0.0498 +0 0.1006 +0 0.0807 +0 0.0693 +0 0.0995 +0 0.0853 +0 0.1374 +0 0.2186 +0 0.0731 +0 0.1449 +1 0.7630 +0 0.2692 +0 0.1279 +0 0.2407 +0 0.0673 +0 0.6348 +0 0.1234 +0 0.0919 +0 0.0556 +0 0.1760 +0 0.0970 +0 0.1233 +0 0.1367 +0 0.2983 +0 0.0654 +0 0.0533 +0 0.0659 +1 0.8157 +0 0.2636 +0 0.1188 +0 0.0908 +0 0.0539 +0 0.0611 +0 0.0632 +0 0.0477 +0 0.7115 +0 0.0891 +1 0.7965 +0 0.0511 +0 0.1117 +0 0.0780 +0 0.0859 +0 0.0776 +0 0.3018 +0 0.0890 +0 0.1028 +0 0.0912 +0 0.6187 +0 0.1038 +0 0.1558 +0 0.0881 +0 0.2213 +1 0.8366 +0 0.0631 +0 0.1056 +0 0.2956 +0 0.2303 +0 0.2328 +0 0.1210 +0 0.0974 +0 0.0562 +0 0.1008 +0 0.4464 +0 0.0773 +0 0.2026 +0 0.2518 +0 0.1304 +0 0.0610 +0 0.2011 +0 0.0685 +0 0.0905 +0 0.0880 +0 0.1555 +0 0.1826 +0 0.1244 +0 0.0981 +1 0.3223 +0 0.1743 +0 0.0975 +0 0.2705 +0 0.0608 +0 0.1098 +0 0.2968 +0 0.2028 +0 0.0637 +0 0.0836 +0 0.0899 +0 0.1433 +0 0.0932 +0 0.2320 +0 0.0857 +0 0.2153 +0 0.1427 +0 0.2237 +0 0.2318 +0 0.1533 +0 0.2477 +1 0.8620 +0 0.3144 +0 0.0993 +0 0.0855 +0 0.0587 +0 0.0903 +0 0.2556 +0 0.1667 +0 0.0765 +0 0.0528 +0 0.1554 +0 0.0532 +0 0.1044 +0 0.0955 +0 0.0823 +0 0.2016 +0 0.1269 +0 0.7128 +0 0.0703 +0 0.1360 +0 0.0985 +0 0.0892 +0 0.0620 +0 0.0729 +0 0.0856 +0 0.1316 +1 0.8479 +0 0.0752 +0 0.0838 +0 0.1838 +0 0.0761 +0 0.1824 +0 0.0921 +0 0.0998 +0 0.0722 +0 0.2254 +0 0.6528 +0 0.1512 +0 0.2869 +0 0.2072 +0 0.1109 +0 0.1465 +0 0.0847 +0 0.1926 +0 0.1532 +0 0.6961 +0 0.0853 +0 0.1188 +0 0.0834 +0 0.1694 +0 0.3450 +0 0.1617 +0 0.7332 +0 0.0777 +0 0.0826 +0 0.2058 +0 0.0580 +0 0.0931 +0 0.0469 +0 0.0875 +0 0.1112 +0 0.1640 +0 0.0856 +0 0.0910 +0 0.1887 +0 0.1120 +0 0.2064 +0 0.0827 +0 0.0723 +0 0.1017 +0 0.0610 +0 0.5908 +0 0.0512 +0 0.1137 +0 0.1279 +0 0.5621 +0 0.2412 +0 0.2288 +0 0.2116 +0 0.0803 +0 0.3419 +0 0.1324 +0 0.1247 +0 0.0750 +0 0.1474 +0 0.0767 +0 0.3054 +1 0.8194 +0 0.0703 +0 0.0785 +0 0.0608 +0 0.0749 +0 0.0475 +0 0.2222 +0 0.1215 +0 0.0803 +0 0.1267 +0 0.1080 +0 0.0747 +0 0.1399 +0 0.0417 +0 0.1262 +0 0.1192 +0 0.2004 +1 0.8281 +0 0.1190 +0 0.2703 +0 0.0858 +0 0.1257 +0 0.2240 +0 0.1540 +0 0.0669 +0 0.1156 +0 0.1116 +0 0.1222 +0 0.1333 +0 0.1264 +0 0.2494 +0 0.0860 +0 0.0510 +0 0.0547 +0 0.1410 +0 0.7264 +0 0.0816 +0 0.0920 +0 0.0630 +0 0.1265 +0 0.0830 +0 0.0864 +0 0.1179 +0 0.1320 +0 0.2298 +0 0.0863 +0 0.3285 +1 0.8912 +0 0.2458 +0 0.1421 +0 0.0808 +0 0.1848 +0 0.0449 +0 0.5505 +0 0.1383 +0 0.1355 +0 0.3004 +0 0.1638 +0 0.0556 +0 0.1049 +0 0.1421 +0 0.1381 +0 0.1092 +0 0.0713 +0 0.1382 +0 0.1620 +0 0.1931 +0 0.0726 +0 0.0919 +0 0.1631 +0 0.1665 +0 0.1190 +0 0.1089 +0 0.3118 +0 0.1115 +0 0.1084 +0 0.1739 +0 0.1501 +0 0.1711 +1 0.7940 +0 0.1848 +0 0.5015 +0 0.0615 +0 0.0397 +0 0.2637 +0 0.0475 +0 0.1723 +0 0.2117 +0 0.1463 +0 0.1214 +0 0.1308 +0 0.0414 +0 0.0715 +0 0.7124 +0 0.1160 +0 0.1187 +0 0.0838 +0 0.0651 +0 0.0896 +0 0.2482 +0 0.1798 +0 0.1018 +0 0.0758 +0 0.0457 +0 0.1022 +0 0.1174 +0 0.1048 +1 0.7934 +0 0.0939 +0 0.1191 +0 0.1032 +0 0.1970 +0 0.0569 +0 0.0690 +0 0.0658 +0 0.0584 +0 0.2588 +0 0.0598 +0 0.0500 +0 0.3176 +0 0.0488 +0 0.2361 +0 0.1488 +0 0.1756 +0 0.0753 +0 0.1489 +0 0.0686 +0 0.3127 +0 0.0905 +0 0.0521 +0 0.0559 +0 0.0925 +0 0.1073 +0 0.1365 +0 0.1247 +0 0.2412 +0 0.0862 +0 0.0607 +0 0.1905 +0 0.0805 +0 0.1357 +0 0.0415 +0 0.2368 +0 0.0721 +0 0.0537 +0 0.1760 +0 0.4203 +0 0.0784 +0 0.0943 +0 0.2604 +0 0.1191 +0 0.0701 +0 0.1051 +0 0.3186 +0 0.1201 +0 0.0802 +0 0.0377 +0 0.0652 +0 0.0940 +0 0.0455 +0 0.1039 +0 0.2037 +0 0.1259 +0 0.1570 +0 0.0769 +0 0.1002 +0 0.1291 +0 0.0465 +0 0.0740 +0 0.1495 +0 0.1419 +0 0.0504 +0 0.0518 +0 0.1078 +0 0.6206 +0 0.0764 +0 0.0745 +0 0.0845 +0 0.3941 +0 0.2278 +0 0.3673 +1 0.0712 +0 0.1148 +0 0.2108 +0 0.2115 +0 0.1602 +0 0.3477 +0 0.1302 +0 0.0882 +0 0.0718 +0 0.0850 +0 0.4736 +0 0.2159 +0 0.0830 +0 0.1392 +0 0.0958 +0 0.3932 +0 0.0610 +0 0.3397 +0 0.2429 +0 0.1526 +0 0.0997 +0 0.1161 +0 0.0798 +0 0.6388 +0 0.0619 +0 0.5818 +0 0.2753 +0 0.1231 +0 0.0809 +0 0.0700 +0 0.1211 +0 0.1018 +0 0.0997 +0 0.7421 +0 0.0572 +0 0.1790 +0 0.0950 +0 0.1127 +0 0.1544 +0 0.0560 +0 0.1924 +0 0.1794 +0 0.1800 +0 0.1030 +0 0.3086 +0 0.1639 +0 0.1696 +0 0.0840 +0 0.1886 +0 0.1802 +0 0.2812 +0 0.0917 +0 0.0881 +0 0.1186 +0 0.0647 +0 0.2343 +0 0.1022 +0 0.0361 +0 0.0684 +0 0.3173 +0 0.1357 +0 0.0932 +0 0.2892 +0 0.1332 +1 0.8544 +0 0.6480 +0 0.0550 +0 0.0631 +0 0.2869 +0 0.1038 +0 0.1485 +0 0.1016 +0 0.0812 +0 0.0826 +0 0.0880 +0 0.1918 +0 0.1904 +0 0.1117 +0 0.0775 +0 0.1353 +0 0.0884 +0 0.0568 +0 0.0964 +0 0.2104 +0 0.1040 +0 0.0968 +0 0.0903 +0 0.1122 +0 0.1640 +0 0.2385 +0 0.3765 +0 0.1728 +0 0.2205 +0 0.0454 +0 0.1135 +0 0.0960 +0 0.6940 +0 0.1285 +0 0.2174 +0 0.3176 +0 0.5527 +0 0.0838 +0 0.1297 +0 0.1059 +0 0.0842 +0 0.2785 +0 0.1162 +0 0.1005 +0 0.1788 +0 0.0791 +0 0.3629 +0 0.1936 +0 0.0918 +0 0.1662 +0 0.0626 +0 0.0888 +0 0.1772 +0 0.1187 +0 0.2784 +0 0.1661 +0 0.0829 +1 0.8129 +0 0.3664 +0 0.0432 +0 0.0779 +0 0.2769 +0 0.7255 +0 0.0574 +0 0.0480 +0 0.1153 +0 0.4483 +0 0.1057 +0 0.1156 +0 0.0562 +0 0.0981 +0 0.0381 +0 0.2490 +0 0.0682 +0 0.0799 +0 0.0881 +0 0.1601 +0 0.0831 +0 0.1007 +0 0.1226 +0 0.0952 +0 0.2305 +0 0.2328 +0 0.0762 +0 0.5292 +0 0.3665 +0 0.0899 +0 0.1529 +0 0.0688 +0 0.5248 +0 0.1139 +0 0.1372 +0 0.2725 +0 0.3164 +0 0.5925 +0 0.0591 diff --git a/test-A/out.tsv b/test-A/out.tsv new file mode 100644 index 0000000..2d46ba4 --- /dev/null +++ b/test-A/out.tsv @@ -0,0 +1,7414 @@ +and:0.07895257911471103 was:0.03596317658514438 out:0.024016824392823457 that:0.023672598027062328 placed:0.022844208461019616 work:0.021707439938587154 made:0.020781005318872947 is:0.020224993929329655 up:0.019794182040466738 put:0.018288921183371155 down:0.0171740551508179 interest:0.01663630075189571 point:0.01659978677065351 him:0.016175999448187352 held:0.015562908663841706 Dakota,:0.014616466073415059 place:0.01424333231426501 Minnesota,:0.014067166610364513 it:0.013665465625771424 :0.5740125895993994 +and:0.1198915000544509 that:0.029152324472621935 or:0.02842636232294376 as:0.026426033812276924 was:0.025219013100933742 be:0.021990268095846897 is:0.021581251606224483 made:0.019910327369080254 contained:0.01757295460555632 interest:0.016197100127859725 interested:0.01595452903810773 not:0.015673010814216383 it:0.015397309868922505 but:0.015133817875979194 found:0.01479700931718292 been:0.014429844236293763 described:0.013431015580638335 are:0.013353827521601129 situated:0.012718521164183712 :0.5417439790150793 +the:0.8346681820109008 tho:0.03732262037797885 a:0.018433391291961573 tbe:0.013978060362487414 in:0.010305224230815743 The:0.008442255919278358 of:0.008431115441057692 his:0.007345478758798 this:0.006728349085511477 its:0.006084531021546152 and:0.004960676937638471 an:0.0034849802938187683 for:0.0033179691109525345 In:0.0030940328015685078 their:0.003028734413405628 our:0.002926556649118913 that:0.0028198261952142333 from:0.00237607430906726 tlie:0.001876291048695579 :0.019375649740184023 +foreclosed:0.0826326115191591 accompanied:0.05930666942049243 made:0.05336585618201428 and:0.05113808815574321 followed:0.0477509052190524 surrounded:0.027001067213274173 up:0.0223956915218854 caused:0.01986528146981332 secured:0.01963201700061169 was:0.019527138795776604 ed:0.0163892391762384 it:0.014428341647705614 occupied:0.014047766264405974 him:0.014002524716027894 surmounted:0.013411064770142235 given:0.012603829803430331 done:0.01236267211154264 covered:0.012285928470556887 that:0.012257320636555267 :0.47459598590557217 +and:0.2932342571285714 the:0.13910101245101733 or:0.07728972665065735 of:0.06963170884121203 all:0.056826532239209755 any:0.04239222878583583 many:0.03496657018231847 in:0.03239754183948641 some:0.030058142571455955 for:0.02864459839547613 with:0.027544265382083863 to:0.024616876020073605 each:0.021902208957541146 The:0.018552095108871843 from:0.015340686949666458 that:0.014850365418201672 among:0.013740722407197765 In:0.013481039347639091 by:0.012980757846977992 :0.03144866347650595 +hundred:0.02334136986593815 up:0.005482494641173394 men:0.005366536521246011 Hundred:0.0047587970519216575 John:0.00441808156134956 William:0.004390720675819281 him:0.004016828614280843 ;:0.003997112205305733 due:0.003721199871732 in:0.0036582900032443304 time:0.003637206863828461 James:0.0035594902370151707 out:0.0034878448964120057 .:0.003467980723571515 1:0.0032804584819785204 day:0.0032444781513863933 ,:0.003058139385740603 :0.0030314555521939613 Robert:0.003005471634785646 :0.9060760430610768 +the:0.7279982534749673 The:0.07664709388408866 tho:0.0344957084390172 tbe:0.01669062760819814 a:0.013414233985252336 young:0.013402393498339106 colored:0.011152148090183951 American:0.009538469097245258 many:0.008843673872995039 and:0.00855342554023069 our:0.007853346651636027 of:0.007387999817893625 by:0.00650771709846936 white:0.005930946411860129 some:0.004021952424302376 other:0.004017214728987952 good:0.003838916595554894 Tho:0.003634158875298506 thousand:0.0033165751544390974 :0.0317551447510404 +the:0.2782472374031439 and:0.05853086307875382 of:0.057808400149107285 a:0.0505051790196421 in:0.047737229779834744 that:0.029028474107152598 tho:0.018710024088825838 no:0.017339306339466322 any:0.01703662573257265 for:0.016715378203915124 or:0.014389838101205619 to:0.01254353636706294 The:0.011965494146430906 such:0.011478107165062217 their:0.010557144796299397 this:0.009886618703130198 by:0.008203119141950934 In:0.008031362143197362 an:0.0075425481936670265 :0.31274351333957906 +and:0.04823873212479668 get:0.021173832199403074 taken:0.020172933536757164 come:0.01964523727308508 all:0.019565289347158978 secure:0.01650172848811107 go:0.014916495100759507 came:0.014831428966546828 that:0.013966939758095735 place:0.013825215186569585 is:0.013555224348663367 made:0.01354907878883892 it:0.013151740593428175 right:0.012592881333107398 :0.011498763360294113 them:0.011412348827187979 for:0.011380236243805329 out:0.01067175678732674 up:0.01025528202920748 :0.6880948557068568 +there:0.15282240558043036 It:0.1250877021251384 it:0.1172130349964821 he:0.08447653464159645 There:0.07990106646359449 He:0.053545487723974064 and:0.03475602177722308 I:0.033514699763994925 which:0.028339689006514263 that:0.02258044118480592 she:0.020389246311069347 This:0.018864857928065765 who:0.017143411225723663 She:0.014044583378045664 this:0.01264429778309141 lie:0.005676248946248602 ho:0.005008892472785812 as:0.004728079857187771 one:0.00469102709236943 :0.16357227174165848 +of:0.32133577458784157 to:0.13610766621048984 that:0.07533919300190878 in:0.06934660540270732 by:0.06454508130737907 and:0.038205255907842975 for:0.032052338651801675 with:0.027556484085940473 from:0.024515736085045727 as:0.018787745894579277 under:0.018198145382436175 on:0.014508378081511765 all:0.013786271684569381 which:0.013335535256692673 In:0.013221874391978411 when:0.010549447703080443 over:0.00962717421195016 into:0.009185967384001308 upon:0.00885224100450796 :0.07994308376373505 +of:0.09129790931378902 the:0.07369883040827747 and:0.047842263382354346 in:0.04189055351593407 to:0.04045875475680249 a:0.03542341257202578 be:0.02020462051672066 for:0.01979292654746225 was:0.01760256398103379 at:0.017380150555488715 is:0.014984483003968216 with:0.014047653760730413 by:0.01374644383819499 :0.012670486581795598 In:0.01200961464556976 or:0.011563835749786333 from:0.011391516893522809 are:0.011273104484969465 that:0.010755276030689069 :0.4809655994608848 +in:0.14048713722096412 for:0.12045306486651125 of:0.1150959154773748 within:0.061090158043955345 and:0.05346109170384797 only:0.04877263632788032 In:0.04433449219687606 with:0.037160146048207214 is:0.0315421892589043 but:0.029830979859766554 by:0.028968633883732185 to:0.025999925223267443 was:0.02505070588261269 after:0.022494641765410772 that:0.022285961534963723 as:0.01690029607373616 from:0.014222657035431458 or:0.013178995054789719 made:0.012188942064310933 :0.13548143047745698 +of:0.2094044326800705 in:0.10323064403071443 to:0.10003830707887722 for:0.06651277384544663 and:0.059888103219910734 with:0.05229638367705768 on:0.04126439815398536 from:0.0354362178188539 by:0.03150820700611748 at:0.023923279676181686 that:0.021401420699051488 upon:0.015462838440665488 In:0.01545720659661401 all:0.012395979629342193 or:0.011833585179611528 as:0.010765835272299391 up:0.010244683825641929 into:0.008022179740618366 through:0.007346693776088779 :0.16256682965285124 +who:0.1558420362361572 they:0.13859986666847338 there:0.0694228728778515 we:0.05871970366963812 which:0.0568761691803695 There:0.04059348339244789 and:0.040271575990756155 men:0.033039518502723735 They:0.03193182889175175 that:0.027386913250331976 We:0.023716900179806634 you:0.022967191764660378 people:0.01380206042703009 as:0.011358163130091498 these:0.010934707565612331 them:0.009497291737640945 These:0.009347049938468572 persons:0.008054111351950971 all:0.00794833828545344 :0.22869021695878392 +of:0.28767355066866834 to:0.08775711267569858 in:0.08678131196995101 and:0.05160598694501188 on:0.04646139928102899 by:0.04519522654900943 for:0.044547789071328545 with:0.03396756772609607 that:0.033699232901107726 from:0.03075346596941143 at:0.027039283056790858 In:0.021061449543044047 as:0.017514234937992545 all:0.012543839382496166 upon:0.011844431150487573 is:0.00998972746569266 was:0.008814315973987914 into:0.008557199930727406 through:0.007781895704231326 :0.1254109790972375 +that:0.20335541366862905 as:0.09376767366927041 and:0.08618064622798619 if:0.08330578756942747 which:0.08228018107630516 when:0.07518959552811179 but:0.04742065808228711 where:0.04725946090405742 because:0.029007375452612498 If:0.026893867049720622 until:0.024425698653267686 what:0.021288580890435112 though:0.01419221646561565 whom:0.013078362013940201 while:0.012519024981993037 for:0.01242554401047497 than:0.011407258640776054 before:0.010985850438729149 When:0.010885931187282328 :0.09313087348907807 +the:0.29210421837505385 this:0.11882695120282637 a:0.0914730946823208 of:0.04847052509865938 any:0.04345983303994099 every:0.030431114661143517 one:0.02629518608525642 or:0.02563935834331456 in:0.02472302651226548 that:0.018939643325705323 his:0.01841482621724762 and:0.017653027089472 either:0.017607186228886712 tho:0.016908153795555023 high:0.014609633695670815 such:0.014510353006075163 to:0.013103009230749689 said:0.011763691409139578 present:0.011083396994333968 :0.14298377100638274 +the:0.6289402285055707 a:0.14135336909248156 tho:0.04052406658760669 The:0.03818995072839721 tbe:0.01821184400799869 and:0.012080482998507207 A:0.008824828196301152 great:0.007717398854647123 this:0.0071979867955972 large:0.006342878865857222 any:0.005876528778717334 an:0.0056006386583793135 said:0.0046918822880904435 of:0.004626426584398362 by:0.004397804919994776 little:0.004336859221225968 every:0.004246644461044491 or:0.0035490131353142942 tha:0.003527409402282903 :0.04876375791758728 +of:0.3065478640284015 in:0.17025201174971535 to:0.08855159317150879 and:0.042870907258812575 that:0.03851723572822849 In:0.03786972194036441 by:0.03570426845230988 for:0.032678888587307636 with:0.0312436861312774 from:0.026245219770926493 at:0.018553761221686095 on:0.013960380007614303 as:0.012714940172876284 under:0.010255167958696581 into:0.010209242040305176 through:0.0076677242519060254 upon:0.0071017183769917155 which:0.006941641487328951 all:0.006594963720051054 :0.09451906394369128 +it:0.18933079373983122 It:0.09555282981329422 as:0.0866880719218501 which:0.08464636001756828 that:0.07051112314641195 they:0.052690658552864006 there:0.037417756895181786 and:0.029058424718588206 he:0.0269797830604667 what:0.022289821189138203 who:0.01796366222381316 There:0.013579855598546447 you:0.012550455952835911 we:0.012277334597652966 this:0.010978958519068683 whatever:0.009752693743122305 case:0.009057349738014284 This:0.008398456526460612 one:0.008370438307689692 :0.20090517173760122 +to:0.2506150993995266 will:0.11979198385730493 would:0.06694377595450357 t:0.04744740063750289 that:0.047409764020371996 should:0.03970413457674639 shall:0.03242047607292941 may:0.030827476372296717 can:0.03067882448940436 which:0.030232997821594772 I:0.0294333221756969 and:0.027009794605664928 must:0.02693403124410671 could:0.016763199079045332 not:0.013639068933668976 1:0.009757437019819463 did:0.008903972769380226 what:0.008041373807281848 a:0.007816128069356778 :0.15462973909379724 +is:0.1300949053123692 ought:0.06235942008217411 are:0.06072445398663133 seems:0.05697318922100556 was:0.04954471475520722 not:0.048536362204045544 said:0.03881623685409472 seemed:0.03220746110521765 as:0.030923473227594384 it:0.030881869856406088 claimed:0.028226689520969073 have:0.027725540143517465 and:0.027557757709861613 likely:0.02587900806524851 seem:0.02574969309575762 supposed:0.023317446089120043 had:0.02145961764731352 Is:0.017651730366473797 proved:0.01677680343414685 :0.24359362732284573 +the:0.1302883745637864 and:0.0579458497051449 of:0.05257733647011707 a:0.05234688623258785 Mr.:0.049513688510850834 was:0.02647885550947737 The:0.025506195746502078 I:0.01723407260421076 :0.016909908595209903 to:0.016224971937427828 in:0.015404029889242799 he:0.015001292653929889 is:0.014568355558926119 be:0.014476845563850696 an:0.011860709795179414 that:0.011691885121058902 had:0.010347502398630958 at:0.010327985948975703 have:0.010165816911659244 :0.4401294362832313 +of:0.09129790931378902 the:0.07369883040827747 and:0.047842263382354346 in:0.04189055351593407 to:0.04045875475680249 a:0.03542341257202578 be:0.02020462051672066 for:0.01979292654746225 was:0.01760256398103379 at:0.017380150555488715 is:0.014984483003968216 with:0.014047653760730413 by:0.01374644383819499 :0.012670486581795598 In:0.01200961464556976 or:0.011563835749786333 from:0.011391516893522809 are:0.011273104484969465 that:0.010755276030689069 :0.4809655994608848 +has:0.3402646077276944 have:0.2854022656643971 had:0.19565576556272904 not:0.029588190324930604 having:0.027373308994782367 lias:0.012569789630978281 bad:0.012065492691598888 havo:0.00930029558872707 never:0.007587858246413794 always:0.007314553827595199 ever:0.007024018662209251 haa:0.005385831993354543 already:0.005169077426557498 baa:0.004530978396915478 long:0.0038984046819874156 yet:0.0035643032253599525 bas:0.0032832897850782884 since:0.00305380269089758 just:0.0025393978518234066 :0.03342876702596983 +and:0.03868242960999506 as:0.031124813427855922 went:0.02352509775927722 him:0.02196555539050794 them:0.018760608639018784 up:0.017985449426794205 is:0.017894175620344187 go:0.017174904667157563 able:0.016756848979943888 going:0.014481672239490295 it:0.014128375989346808 was:0.013277058274565138 time:0.013249953793837373 not:0.012469887553778763 began:0.012465717758716884 way:0.012105610030480113 back:0.012090864562211581 right:0.011941707822828511 amounted:0.011564315359310868 :0.667354953094539 +the:0.11500545585881412 of:0.0897605566703555 and:0.07914879987306167 a:0.05827037833039227 to:0.0386987683614473 was:0.029282661483795363 be:0.023890810389268442 is:0.02056818843792312 been:0.017204803150083207 or:0.017094944717067368 in:0.01610392931760865 are:0.015798243080240505 his:0.01344187865263006 at:0.01321973597799718 for:0.01304287912725108 their:0.012337012043366955 were:0.012236169772424844 :0.01133284696603621 The:0.01095822742659897 :0.3916037103636372 +it:0.2447531965664783 It:0.20604373441319526 that:0.06380722917490081 which:0.05815894822019556 this:0.04301373093592651 This:0.03636147930726968 he:0.03425494477501515 there:0.03303913714785172 and:0.031433258560307153 what:0.015504299770063734 who:0.013722281820343116 as:0.01306376395276329 There:0.01280919215125199 He:0.011676797071373507 That:0.007998988202689026 she:0.006223482144634677 be:0.005854398538563163 but:0.004853149710058429 work:0.004508788965346075 :0.15191919857177288 +agreed:0.06046055195963632 and:0.0452123586980267 is:0.03712041918608004 made:0.032433420368617745 referred:0.03149645049116327 was:0.031108345927125063 it:0.027682455986820977 entitled:0.019464850254378305 have:0.018190909463750918 as:0.01799135581062246 one:0.01776092796396341 right:0.01678043366486907 resorted:0.016433276053890528 had:0.016347306544825076 are:0.015444388814992912 used:0.014790658715082148 taken:0.01378941379229881 up:0.01360994099055804 alluded:0.013505779849906517 :0.5393767554633917 +and:0.14507320772351315 fact:0.08580533594336559 said:0.056464728489513914 so:0.05141663139801109 believe:0.03728868944610554 is:0.032697255055655516 say:0.030323479159427524 know:0.029749358812227955 found:0.025535190692382553 stated:0.021273605064562356 show:0.019511948220510757 but:0.018999393120383457 says:0.018814328565908398 think:0.016893655385130203 was:0.01658797795582863 all:0.01652317309060226 see:0.015409038245983688 opinion:0.015263158537430448 order:0.014744011681695817 :0.33062583341176116 +and:0.06306370678895737 committee:0.05805478904318023 Committee:0.036605271232937754 that:0.029576757276597768 it:0.029065950710821548 work:0.022443223861731653 was:0.01964807398099258 out:0.016227506984102545 put:0.01504317648351405 Mortgages,:0.01503253187017019 him:0.014496298420738431 It:0.013950264074323869 interest:0.013816337964130874 them:0.01368568930985552 went:0.013678704297495148 is:0.01347293191770742 made:0.013441820813523473 due:0.0130179035454633 place:0.012477542929320434 :0.5722015184944358 +Mr.:0.7343895154668137 Dr.:0.02722936663941721 Mr:0.016803651226393917 John:0.005544002274092662 .:0.005105808280192536 James:0.004630597127667035 Mrs.:0.004485971630159722 William:0.004484684298765014 ;:0.003224370828968515 Robert:0.003185065990175269 Rev.:0.0029853005614696904 George:0.0029721366653470836 Senator:0.0029427970281204513 Charles:0.0028232954356694523 Mr,:0.0025548478992433368 wife:0.0023767164443981993 Joseph:0.002253998159621327 Thomas:0.002113531455885074 B.:0.0020438061319758404 :0.16685053645562395 +of:0.11971969343114697 the:0.0679946331604097 to:0.05598461265698062 on:0.047327274764710124 in:0.0383117907331976 a:0.03608521688890275 and:0.026301213008022323 at:0.021100507347918643 by:0.018184303615496698 for:0.015116218660212143 was:0.013004768552045323 :0.01237007287720146 his:0.011276215951818774 In:0.010805721653497151 is:0.010560039521842065 with:0.009956743579623423 that:0.009110941286732675 be:0.008958994001498096 from:0.007842239283535073 :0.45898879902520845 +of:0.1064111657394712 and:0.06189803199742663 the:0.061214738131072234 to:0.046767588658820816 a:0.030925892873176947 be:0.028436892159113936 in:0.026108484147942524 was:0.02489479277275801 on:0.017923934813552117 been:0.01686793591707648 as:0.015919110268756212 be-:0.014027980543130522 he:0.013348920322294223 is:0.01333436806722912 or:0.012789689707676487 for:0.012728006187378014 are:0.01263399408314043 by:0.012314981223230093 that:0.012293005338272336 :0.45816048704848167 +the:0.164622510216757 of:0.07124655442027641 The:0.06889686753552093 Mr.:0.06325252336407099 and:0.044366166073833896 that:0.04264168951999022 a:0.026935017441304315 Mrs.:0.021417054292642027 his:0.015373932368963752 in:0.015166387820743404 this:0.013228806556018961 :0.013136427543557318 tho:0.012055764911697249 .:0.010810741278177282 which:0.010410363554372798 Dr.:0.009964965976760979 to:0.00981126413214408 at:0.009089697865957478 when:0.008784665899295399 :0.3677885992279155 +and:0.16445154130917858 know:0.05565084040640955 say:0.045014218943686526 fact:0.043034273572179836 said:0.042510143295297564 all:0.0357284929418092 so:0.03368931950419312 believe:0.029547971999590673 but:0.029217128206847263 see:0.026738951411234606 me:0.025118794397396647 is:0.018872390434455204 order:0.018807251921146496 hope:0.017929726339391362 find:0.017026207737914252 think:0.01624227527200397 found:0.013902518001092132 show:0.013485283392489113 told:0.01346160923380426 :0.3385710616798796 +:0.047547598225954 and:0.029259332516986 him:0.020860538357077955 was:0.020065697822425992 put:0.019133306991414918 it:0.01787144765992923 them:0.01581240676218432 that:0.015399019855243645 placed:0.014561366584038166 found:0.013446219115802658 be:0.013363717079846666 out:0.013240576343294765 made:0.012030862949671362 is:0.011939970928575981 not:0.010488441649221157 up:0.01025688671840772 work:0.009586243786294166 place:0.009292479883470432 done:0.008332588889226026 :0.6865112978809348 +the:0.1986260425135012 his:0.07554060682853736 their:0.06839043749765653 whose:0.05066915126739168 of:0.04334420886772408 our:0.03980230561090361 this:0.02853762701858458 de-:0.028397917799328983 its:0.027433676529787333 a:0.027145736033197455 and:0.026256344199887444 to:0.02133376955566894 her:0.017787346772939815 The:0.017280116502758593 other:0.01593651961191151 your:0.014607788375702162 my:0.014159393243768142 or:0.014116046028831984 that:0.014050205416961156 :0.25558476032495747 +is:0.02835702712638797 was:0.02668889559324909 it:0.018080187064129265 be:0.014735329783972977 and:0.014665743783949105 are:0.011182163275803209 the:0.010989814076520343 of:0.010970137940390005 It:0.00998090694506853 on:0.009779032787817176 .:0.009391900487732092 that:0.008615418930698225 -:0.008499314615817077 :0.00842222141484629 land:0.008270731079733536 up:0.007582096080665409 were:0.007575895126959122 been:0.00716485369409845 not:0.006767423105623279 :0.7712809070865388 +will:0.26752795279726116 to:0.21626935754390766 shall:0.08000195589600095 may:0.06997591852476166 would:0.063875517750315 should:0.05888057002487676 must:0.03930186431815468 can:0.03889717003227602 could:0.024071996180801077 not:0.022265150971093578 and:0.019928366670909716 might:0.013920380302217867 cannot:0.007417249199456349 is:0.003704896746836129 soon:0.0032706543580755627 it:0.0024794092790233037 was:0.0024250577099173437 also:0.0023468014933695756 they:0.0020611409165869404 :0.06037858928415869 +and:0.2527295696139249 this:0.07381025214759858 the:0.04593935903564167 to:0.04370142149680046 he:0.03672311148770952 a:0.03431881103155568 that:0.032340581456036244 it:0.028381130074201757 which:0.023295035211325543 I:0.021016434023210375 :0.02002300177423272 who:0.019426057542918533 This:0.01753986289526269 in:0.015207371328272682 or:0.014073566953019196 any:0.013690632322630888 It:0.013407546829666479 one:0.013233360402930931 we:0.012858797973859692 :0.2672840963992014 +of:0.2877678517057199 from:0.1918503566455561 in:0.11679347361428379 County,:0.05778780949806102 the:0.02953847821527412 county,:0.026773295520594438 at:0.025889093114843432 In:0.021729626924206158 and:0.017549725607034123 by:0.017125261934561212 South:0.015237639804838613 for:0.014380526126512125 North:0.010404266548905437 to:0.00976194840770812 .:0.007934813677590385 said:0.005872778873169506 with:0.005461967365287372 :0.005257293350642901 ot:0.004850861498452492 :0.12703293156675874 +was:0.10729765895646136 and:0.09735075419759634 be:0.09693347515567072 is:0.08202764711464848 been:0.08197565468646412 of:0.05541040597335148 are:0.04733942736982783 were:0.0336079453841304 the:0.03347813655007024 not:0.01929685537624072 well:0.018141418963984603 much:0.017202047375303023 so:0.016042331845356226 to:0.015429525256912185 or:0.014503901960489021 by:0.012972514630676236 Is:0.012010580073491496 being:0.010875052275428624 in:0.010845239111321204 :0.21625942774257567 +and:0.21912857797141996 that:0.12612960372662618 as:0.09741335600300842 but:0.0412915095351797 even:0.037094035169566664 And:0.02620564510440045 or:0.023466409296357082 But:0.022118025687574577 see:0.02169483661620632 ;:0.0127932422353468 and,:0.012772737420970863 know:0.010709127131252688 Even:0.010049673725760938 that,:0.009609381980062498 asked:0.008178627448094342 or,:0.007415157645841991 which:0.00704121033615635 doubtful:0.006910235158049905 cause,:0.006626540591359064 :0.2923520672167652 +of:0.28767355066866834 to:0.08775711267569858 in:0.08678131196995101 and:0.05160598694501188 on:0.04646139928102899 by:0.04519522654900943 for:0.044547789071328545 with:0.03396756772609607 that:0.033699232901107726 from:0.03075346596941143 at:0.027039283056790858 In:0.021061449543044047 as:0.017514234937992545 all:0.012543839382496166 upon:0.011844431150487573 is:0.00998972746569266 was:0.008814315973987914 into:0.008557199930727406 through:0.007781895704231326 :0.1254109790972375 +the:0.09996264089479552 of:0.07016074142160908 and:0.0672090848149664 to:0.05955014715506253 a:0.04184106584338021 be:0.03017489121480431 in:0.024773944920723375 was:0.019451983659978956 on:0.019098911412442486 as:0.017942289076494217 at:0.016329203630771134 is:0.014831290124842154 that:0.012953372754812321 or:0.012183826069723392 for:0.011835718517952976 by:0.011335469157157723 with:0.010396531406976314 are:0.009794363949479898 :0.009692980737774819 :0.43948154323625216 +to:0.20034830914579918 the:0.12340155425110982 his:0.10502364826667633 and:0.09746731864522844 of:0.06268794501825528 a:0.05801393844183586 their:0.0498477499761315 my:0.03453420261913911 will:0.028623346629931903 or:0.024692370597436872 not:0.022161168613693796 its:0.022139613004842365 no:0.019129514136620965 her:0.018670686976098104 The:0.018177653629388217 by:0.016264045313648598 your:0.01606719346198182 would:0.014687816560438108 in:0.012553364931371585 :0.05450855978037214 +the:0.12206837496787275 of:0.10516192293487399 and:0.056650690902444886 The:0.03175128708555386 in:0.031711832524295734 that:0.028661653403449276 to:0.023061192413909453 a:0.017181263200414916 Mr.:0.016294778631247325 for:0.015792935957576366 :0.013394947173780645 which:0.012802104419835798 as:0.012277003634163633 by:0.011638742352156613 or:0.009429350093559481 he:0.008780855649832303 tho:0.008319853242690573 other:0.007196948334789192 -:0.007182151176149171 :0.459642111901404 +for:0.24370864647640433 in:0.11140991997816783 of:0.10296924426656708 half:0.04651603972837698 within:0.044046831749556564 to:0.04215149523346815 about:0.032543538174250625 as:0.03235702890152853 at:0.03233154162117123 and:0.029991004287199245 than:0.028591701356772373 is:0.025311278263436522 with:0.02456819626624998 In:0.024088781457273552 was:0.02325895440854348 over:0.020827052473604248 cents:0.01927345627016851 once:0.018595924503067667 that:0.016211033371751178 :0.08024833121244195 +and:0.040601404398697985 the:0.029734550463912976 to:0.027915928521785625 of:0.021675662980606733 :0.013647932052532228 as:0.011869972959652541 1:0.011584528338228529 it:0.00982484731923555 a:0.008881522130942579 that:0.008668388051814423 .:0.008404983970763936 or:0.007588044183047035 men:0.0061820781345456625 in:0.005869622029506073 t:0.00572011331969474 for:0.005413554157321987 :0.005343395997272374 by:0.005306194500255005 was:0.004865048228115223 :0.7599022282620689 +and:0.10876289672646561 to:0.07547721201986067 the:0.07118743771625363 of:0.04388943696238883 a:0.04088659424571837 in:0.025029411074846523 as:0.018752879582217875 that:0.01686675007123097 or:0.016464779790790193 is:0.015304914786361559 :0.01427348592750633 all:0.012526878453358571 are:0.01223996115241771 was:0.00966278321343882 for:0.008749833002110996 with:0.008349711103699442 be:0.008290474860572454 not:0.007805293061721839 In:0.00709974495689252 :0.47737952129214706 +the:0.1660024427598874 and:0.116438425941268 of:0.08807915005221588 a:0.07542235775418259 his:0.05289503336331064 her:0.05135280399675564 to:0.04265990476118911 its:0.03351254469170649 their:0.03126339027757908 all:0.02691031950732165 an:0.019406978584055528 The:0.017987303661609454 this:0.017812409288819445 for:0.015627629995894725 our:0.01556236823459099 with:0.014024534194539076 tho:0.013746576892939195 or:0.012578738835293703 that:0.012230139721831733 :0.17548694748500965 +and:0.07943789800670902 for:0.06618841726604319 as:0.05626540657761209 on:0.04908136705049546 of:0.0463633219878397 to:0.04155335219266076 in:0.039812023777758394 that:0.03867124722527949 with:0.0373730790055534 make:0.03723179092509507 take:0.033784052270641796 do:0.032685178119216826 made:0.027124000954547946 put:0.021484838191469617 but:0.021475649431100363 is:0.021365403502215677 found:0.019128335337583187 upon:0.018827486493142583 took:0.01763907397757957 :0.29350807770745585 +of:0.09129790931378902 the:0.07369883040827747 and:0.047842263382354346 in:0.04189055351593407 to:0.04045875475680249 a:0.03542341257202578 be:0.02020462051672066 for:0.01979292654746225 was:0.01760256398103379 at:0.017380150555488715 is:0.014984483003968216 with:0.014047653760730413 by:0.01374644383819499 :0.012670486581795598 In:0.01200961464556976 or:0.011563835749786333 from:0.011391516893522809 are:0.011273104484969465 that:0.010755276030689069 :0.4809655994608848 +and:0.2085112159487172 of:0.13827108365244958 to:0.05070428979482228 all:0.03519528284390546 for:0.030996578376599283 fact:0.029534560634370693 in:0.02632381636848011 said:0.025707478432721195 by:0.021361475013882362 but:0.01981708142611734 believe:0.01854847170299002 say:0.018136979656332018 from:0.018114270379511906 on:0.01696357207496108 know:0.01583448192412669 that:0.015601932862830658 with:0.01495478074301708 is:0.014188918181367013 so:0.014088867645384829 :0.26614486233741325 +in:0.16743340815421015 of:0.11148581597837537 the:0.07731375937676632 and:0.07472623304072841 In:0.06609777883683314 to:0.0515820358228411 for:0.03819547175864412 with:0.030286527865785697 on:0.023433073580588132 at:0.021953510663547466 by:0.018829744109676416 from:0.018251148703778898 his:0.014860450995369048 or:0.012401120254840565 :0.010949247948039954 under:0.010260717445538758 that:0.009815736942477435 The:0.008736715239820404 this:0.008385334423520798 :0.22400216885861782 +the:0.13742010605008512 and:0.10207877426319824 of:0.07397450603172974 The:0.03323666966533758 that:0.028170308219414686 these:0.024611712608994665 These:0.02321426573404504 in:0.02233958880195577 such:0.018503551962230223 to:0.016786282210728126 or:0.01636101860162539 which:0.016209694122772757 as:0.016160870658285174 their:0.015028655951173324 :0.014297837749869223 our:0.011954104112023089 for:0.01170272696380604 many:0.010385161604963049 other:0.010218895688899507 :0.3963452689988633 +the:0.16807735899698817 of:0.10541662057906837 and:0.05138367848570702 a:0.04141865232648221 to:0.0385989743764065 in:0.026264864977736738 was:0.019530675665220657 his:0.018900421021236905 be:0.017373825006196972 their:0.015767721170721456 for:0.01557246589796783 with:0.014071419046630446 is:0.012922913111931644 at:0.012690452250034052 are:0.010702713108721902 .:0.010158075558988393 Mr.:0.009672788574483367 tho:0.009612591781990074 were:0.009549306361446321 :0.391314481702041 +men:0.021277285210549467 city:0.01770150813237747 1:0.016257744608644504 wife:0.015488096256505011 street:0.012316776540381205 up:0.012215816672407327 gold:0.011794271314413782 ;:0.009984760599952883 day:0.009151773034706979 hundred:0.008296763307224057 feet:0.008275588878336603 State:0.008033446582933217 feet,:0.007672896733932346 house:0.007567541985436129 women:0.0072436536188273965 to:0.007212103908833608 lot:0.006929445531277263 States:0.006879983474305119 long:0.0068477288123416505 :0.797852814796614 +the:0.10665167793191854 of:0.07644913534585573 and:0.04902253174990125 to:0.039412693105540665 .:0.03765613749396466 by:0.033424884526792945 at:0.0243381011862667 in:0.01580037656610475 J.:0.015276219591567794 a:0.015184190706910553 A.:0.014928289052979674 :0.01329323226660262 Mr.:0.012470034007997104 Mrs.:0.012159795562244327 for:0.011367608586177119 with:0.011064035995915456 H.:0.01081918195560962 M.:0.010191928543049155 said:0.009237641440703107 :0.4802523043838982 +the:0.14250590530369128 of:0.07413917227492556 and:0.05267262084563457 to:0.051637724419500576 a:0.04093636942780848 in:0.03311811193934384 as:0.03069128605824282 be:0.0267581599922152 was:0.020620267684002352 is:0.01712924408511596 or:0.016599893357907198 con-:0.016066206184889752 that:0.015329125470697227 on:0.015158688312019232 for:0.014460181373462831 are:0.012797401207743845 tho:0.012141313915058918 in-:0.011787667220391793 much:0.010706724825861253 :0.38374393610148727 +of:0.1800782836948792 in:0.17678831738277995 to:0.1423819441654033 at:0.07231168875387742 and:0.05583518526369363 with:0.039397211973382064 for:0.03702097188202553 from:0.035439713160876525 In:0.031813710516923735 all:0.027360201923214315 by:0.026010540480954154 on:0.020819567410605384 that:0.020045521577774825 under:0.01350294434030335 upon:0.012101799924333521 had:0.010399797028715995 within:0.009057397094268813 has:0.009021767214348872 have:0.00891325455799129 :0.07070018165364816 +of:0.19700725035895542 and:0.13157245089571287 the:0.10439007290648333 a:0.0914002547398422 in:0.053208687435210796 to:0.03478626296281568 for:0.033623228860672295 all:0.028352115809523567 other:0.025591942430098432 this:0.020849421869548544 or:0.02082634120301749 most:0.020580320995361535 that:0.017977487124186457 with:0.015330129912333611 their:0.01488937755284171 his:0.013978710320944296 our:0.012131156821013716 In:0.011498551814009115 any:0.009671171953253547 :0.14133506403417537 +be:0.18436206106565234 is:0.1543472305965453 was:0.08158049397372676 as:0.061928277706410184 are:0.05487067776188156 and:0.05386610766214969 been:0.04307067345070861 not:0.03788499134201258 too:0.03723029826017505 so:0.031779406106110034 were:0.026267346789078612 Is:0.02526722488501038 very:0.023857852715919416 of:0.020837358715037203 it:0.01906649705381489 the:0.01617585621197444 to:0.016125431400875745 more:0.014833480212525734 in:0.013393168281019082 :0.08225556580937239 +of:0.13084814232797154 in:0.0740836656586379 as:0.0625527229231004 with:0.059577596335708534 to:0.058433603729754965 is:0.05551580107464621 and:0.04946529489577619 was:0.04264000753602388 for:0.04009673021586375 by:0.037684080471064085 be:0.023941707008899252 on:0.02316059851167503 at:0.022644769441950232 such:0.019950936521181326 that:0.017856095877642635 like:0.017386655618315594 In:0.016902219705578994 from:0.016046571451088905 not:0.01205910100844263 :0.21815369968667797 +and:0.07558940021936399 recorded:0.030196237618668006 was:0.028917161578042846 made:0.027969746247669736 that:0.027730098932509103 o'clock:0.025060522019555328 up:0.023026552239529506 is:0.020398277211376416 found:0.02003101797656537 placed:0.017482208134164214 out:0.016937164562539058 place:0.016819459500107596 interest:0.016629321966808677 him:0.016002796715253755 situated:0.01573420479581609 it:0.015128305982428461 them:0.014715943643665314 part:0.014646613000297721 interested:0.014450471929902294 :0.5615344957257364 +the:0.13942722775380154 and:0.10891593494844229 are:0.07275083870816576 is:0.06623537328956408 more:0.06254966691923886 a:0.05410901963022252 was:0.05247755369366827 as:0.03966868091011197 be:0.026396949991087982 most:0.025502224344931164 been:0.024849081232655265 some:0.0235368133922355 for:0.022527615930189874 or:0.02201192294948396 were:0.021641565376052097 of:0.018369085746744354 only:0.016640581026204578 very:0.01604510371024033 not:0.015078169705832468 :0.17026659074112716 +the:0.12911001484943158 Mr.:0.12771447481374257 of:0.05703596002515167 and:0.05551862306618354 The:0.03696771883738231 a:0.03109585542221019 to:0.023430845043160783 was:0.02118118503559666 .:0.018829572817303988 I:0.01866318632115208 Mrs.:0.016651554584513187 be:0.015445999125034353 his:0.015429620346654942 he:0.01471745602168608 that:0.012948703485707012 Dr.:0.011687068994779472 been:0.010640617730686218 my:0.009258734715926097 her:0.009060314168160442 :0.3636124945955368 +the:0.08513612570908091 of:0.08344372602137114 and:0.07722261069145084 to:0.050736015598990894 be:0.033482276725224004 was:0.03051917889884136 a:0.029275382903496842 is:0.025261105498976408 in:0.023001672690500834 for:0.01972099186145928 been:0.018391454585088837 he:0.014221540876179044 I:0.014117838062282029 :0.013733461495052399 or:0.01303096690580624 not:0.012939540010679746 are:0.012168088158268722 it:0.011240802764751518 Mr.:0.011066421885914703 :0.42029079865658425 +of:0.3555734407517428 to:0.07627933214854979 in:0.074070739267691 for:0.06771057071258052 and:0.05823603169668509 that:0.054714733157521615 by:0.04422253036006395 with:0.03636552493381151 on:0.02267509684505175 from:0.019978759640587946 In:0.018029300871880972 at:0.017525429498429463 all:0.013975719189786592 is:0.011372840340577308 as:0.01095769074924679 under:0.009978187212083036 which:0.009875469684639215 upon:0.009852438711323169 or:0.008470942304348606 :0.07913522192339888 +at:0.07015207866663638 the:0.06482135827255985 of:0.05375368084217537 and:0.05201777564442666 to:0.04585072709121329 .:0.020474705855883246 a:0.017614042237848723 on:0.015913602006719436 :0.014743744920426618 1:0.012815777758181473 2:0.010850778331668634 by:0.009804272535562339 No.:0.0089529379332058 from:0.008881064059337872 was:0.00869546611823444 for:0.008627513187002412 thence:0.007785145750770506 4:0.007496442939582833 in:0.007155519540980949 :0.5525933663075832 +one:0.1028303141280697 part:0.05963429477052991 out:0.04766456937681193 some:0.031418679026461914 members:0.030764490253327767 side:0.029940657362655835 portion:0.022063658796890564 office:0.020457735219956013 member:0.019726706386316174 end:0.019666887540649894 tion:0.018667441728710307 parts:0.016814747270460957 people:0.014112771422418794 all:0.014072739582212475 any:0.013183573287639892 One:0.013083578354183906 that:0.013024335602903442 account:0.012482348155001894 many:0.012077825070275192 :0.48731264666452345 +the:0.19437376634518885 and:0.06192208490812274 of:0.05652157389361236 a:0.03007503295624231 Mr.:0.029653953933216196 The:0.024240089452464614 was:0.022080020276934672 to:0.021001234371190843 in:0.019872834026917047 on:0.018336915367300238 I:0.01817076425128985 .:0.017282923074060055 at:0.015593990103166618 :0.014741719093419262 is:0.013087081441138392 his:0.012649762225119768 tho:0.01260116201364637 be:0.012337479725721303 for:0.012293870055636683 :0.39216374248561187 +and:0.13666364985817683 that:0.10723287617922309 as:0.08795200382331987 which:0.06583870311693829 when:0.05803042560475274 but:0.02958490718184383 where:0.024191040538844234 if:0.022833174414182793 what:0.017971872746654353 whom:0.01520325617908728 for:0.014863924742738267 said:0.011731478008542781 Then:0.011489603880492735 to:0.011284746654271115 time:0.01113012349030607 before:0.0110802195573618 If:0.010266607567844102 while:0.010041689914080864 When:0.009507428184602332 :0.3321022683567367 +the:0.2516238230758763 a:0.16462910556867275 The:0.04706050092572105 of:0.04636600903575678 and:0.03629706032167652 an:0.02808163702629338 that:0.019225736910857494 A:0.019060869569204813 tho:0.01675220683166768 by:0.0156399758864158 any:0.015477674879179183 no:0.01484653383201197 or:0.012451632226820513 every:0.01243365534681483 to:0.010838940156310203 .:0.009145501340983849 tbe:0.009003138327935355 Mr.:0.008920306749883592 in:0.008005889195797712 :0.2531398027921203 +the:0.16287760685838365 of:0.0883592780729449 to:0.0618987346693935 and:0.05423685233212741 in:0.030811253892523358 for:0.03057359609188714 be:0.025098115820027647 was:0.01826945122296575 is:0.01662970283289366 a:0.016448402520667066 or:0.01633619095301082 his:0.015510346299682681 their:0.015084175217362073 are:0.014656254371894712 been:0.013019491851438341 were:0.01267572744006931 that:0.012270302451397866 on:0.01131798809455223 :0.011150587255169986 :0.37177594175160794 +I:0.26633637276630445 he:0.13524677976464725 be:0.10712673643764854 was:0.07313054715400158 are:0.03772074921726238 she:0.03547315757094643 is:0.03378717743010478 were:0.028614347244441722 and:0.02501286584800525 been:0.02476956852783557 had:0.024765723938620744 have:0.023334640924093576 He:0.020233813190468748 they:0.01983277860540384 not:0.01853215321265761 1:0.016443428663840347 who:0.01632840825932116 has:0.013513260206881704 never:0.01194716506748023 :0.06685032597003408 +the:0.49464378545378646 of:0.0611110142577255 our:0.03970183330227987 American:0.036340336012485305 The:0.030304690093570303 and:0.023161485401804682 colored:0.02235170055991405 tho:0.021634789567853203 young:0.019648782724114956 many:0.01748808376725518 their:0.017344058641185916 good:0.016588918135207353 his:0.016191497942299255 white:0.015531747613497555 to:0.012596393068895147 a:0.011764488024045592 some:0.01065953211491912 tbe:0.01000632468871396 as:0.009290588333910527 :0.11263995029653606 +and:0.17882396971683273 not:0.10246085909786393 or:0.09243904716370993 to:0.08619784942877337 of:0.055661672862141326 that:0.030875906683554513 will:0.029833887861997515 for:0.028395317267038773 is:0.02474823546474919 in:0.021537308408559015 was:0.02044709319925363 are:0.016097841258805715 would:0.01567402096552827 but:0.015586118965446106 with:0.01503939655617361 can:0.012761169145665184 should:0.012425215459491932 without:0.011847625064484349 by:0.010695500458116751 :0.21745196497181415 +a:0.13540519080321428 of:0.0918379575473861 the:0.07455720905610455 to:0.058045091756301084 and:0.05471089484858093 in:0.05092555346791703 with:0.02045027027489862 an:0.019340472792695716 for:0.01813989226147247 that:0.017700536990482477 by:0.017302240557435237 on:0.017024664726530803 from:0.01465105860091 more:0.0137852686939259 any:0.013276973432071367 some:0.013093073237216556 his:0.012620661745932264 most:0.012591255842460075 all:0.012445543577436513 :0.33109618978702804 +and:0.08523213792953777 to:0.07425610006508139 of:0.06071417669958742 the:0.04322419464702753 in:0.03421134863353001 not:0.0287908049549799 for:0.02798387296848893 that:0.026110852472119025 I:0.02570600474601996 re-:0.024287259293019645 be-:0.021067445943208814 :0.01957634741587974 con-:0.019018427224614103 or:0.017888217200002533 which:0.016541633124877397 In:0.013970106813344116 Mr.:0.013890269036394343 dis-:0.013068499554597235 will:0.011891265061331395 :0.4215710362163587 +of:0.09129790931378902 the:0.07369883040827747 and:0.047842263382354346 in:0.04189055351593407 to:0.04045875475680249 a:0.03542341257202578 be:0.02020462051672066 for:0.01979292654746225 was:0.01760256398103379 at:0.017380150555488715 is:0.014984483003968216 with:0.014047653760730413 by:0.01374644383819499 :0.012670486581795598 In:0.01200961464556976 or:0.011563835749786333 from:0.011391516893522809 are:0.011273104484969465 that:0.010755276030689069 :0.4809655994608848 +the:0.39749834532651884 a:0.07520030034269234 and:0.05540858759821703 The:0.03273515726769502 tho:0.030061875542463562 of:0.020144331424922633 tbe:0.014929647509541684 in:0.014268129706664795 or:0.013333166761078447 .:0.013287381914101323 an:0.009000188755386574 to:0.00880680429595084 :0.007943763822197133 Mr.:0.00773879605474787 by:0.007328417831573476 as:0.005922572098978465 for:0.0047526933692942485 that:0.004736121968310169 on:0.004594595720579333 :0.2713091226890862 +be:0.3134656889821028 was:0.13831979036670042 been:0.07279017990122023 he:0.043934484543624815 is:0.04352654193457859 have:0.031647047856457874 and:0.030601042102805145 had:0.02617638565677689 were:0.025923205080242137 not:0.025733130566980334 I:0.02444397725846541 bo:0.0212443457170252 being:0.019421546235233244 has:0.01527841945479115 who:0.01362591010819807 they:0.01154361996514644 are:0.00987939282121132 ever:0.009249250860663824 it:0.009011548834590903 :0.11318449175318517 +I:0.1832019528413187 we:0.10776495562919894 who:0.08988939028238 they:0.08970807965784151 We:0.06450436787726258 and:0.050267116164395796 would:0.037842822781648904 to:0.037822826312344675 They:0.031130017804210142 you:0.03012507591266204 which:0.028661217143722544 not:0.020114696859129682 that:0.016987660710922187 1:0.01607840604150453 may:0.014276574846502015 should:0.013057038604955256 will:0.011493253306575739 shall:0.011126379493632441 must:0.01067924141578026 :0.13426892631401208 +and:0.0752833165675648 as:0.06403957159749782 way:0.026126056854823883 time:0.018350203108472282 is:0.016919128330121356 said:0.01655457302195379 referred:0.01607883410667499 subject:0.015374124736993924 him:0.014791025190438994 object:0.014004443193197854 regard:0.01365224311730245 or:0.012150583962164375 them:0.011888017523318887 reference:0.011123849328675522 addition:0.011012499427059352 according:0.010602512460143172 it:0.010403728503388327 known:0.00923299900863047 manner:0.00922113726653782 :0.6221911526950399 +and:0.0698681294247068 as:0.06974387746398159 brought:0.06565059222865911 for:0.04182794845538194 is:0.04108264012623089 put:0.03979382805673485 of:0.03777800743678702 was:0.036315270790226485 given:0.033517007092664 or:0.03208883252172787 to:0.0268432965721316 her:0.025985909531656876 called:0.02547997870789894 carried:0.025274158621218568 made:0.024831471106538064 go:0.024196883167527952 in:0.021701906925938156 taken:0.021401013745782977 on:0.020730452203836455 :0.3148887958203698 +the:0.3864700904196941 and:0.1394631927314406 of:0.07918945084124987 The:0.06495317391988563 by:0.037587955973705955 that:0.026010523988778483 with:0.022829836073410527 tho:0.022547428270294167 in:0.020860366406307444 an:0.019822728302189372 to:0.019232233896605295 for:0.018584481512945585 a:0.014966199215719778 as:0.014616024832178784 or:0.013157888137140056 their:0.010915514336767514 tbe:0.009755127695280773 such:0.007421092252766998 no:0.007319174119225924 :0.06329751707441317 +and:0.06317916895143688 was:0.03089079697380977 is:0.020044819943736053 be:0.019406329289829806 are:0.016631216139614186 that:0.015910745835586493 it:0.014132589635136123 been:0.013429954470292457 made:0.013153338042273357 were:0.012494049396038097 or:0.012369181282419555 them:0.011608721240324167 up:0.01101461536327863 him:0.010833186604515583 as:0.010718511743974049 succeeded:0.010682665877813333 engaged:0.010592681714621757 not:0.009777868089593193 now:0.00948198968071834 :0.6826475697249881 +of:0.1629034525083175 the:0.11857290810317968 in:0.0573636298199677 and:0.050950921096947085 a:0.04989121530728934 to:0.04437548247957991 for:0.028870321204300744 or:0.027198271539889785 an:0.026378058960458514 by:0.02425893988201045 as:0.02335176469174698 that:0.019088740431934932 with:0.017874043594409885 In:0.016887665669267613 from:0.016085484908016284 on:0.013317096110015851 in-:0.01331307565691657 :0.012037436359252513 which:0.010943791866007042 :0.2653376998104916 +of:0.2311876332979433 the:0.18159097844349995 a:0.07582543752702982 in:0.07139773916449062 and:0.07045569695477466 by:0.05893116618797586 to:0.050753161906683886 with:0.03209912710222265 very:0.017695440065166407 In:0.016915415292129508 his:0.016658333139880153 for:0.014531959389212899 no:0.01412719030049331 their:0.014084416957496746 The:0.013886251812860706 most:0.013023038189937225 its:0.011852498256506215 tho:0.011821337111859138 our:0.010592144560525287 :0.07157103433931167 +the:0.3166795180082877 and:0.0897939520002039 of:0.07909516843192198 a:0.04826084343035267 in:0.046315741284437335 was:0.03523999642934328 be:0.031061328644462368 The:0.03036048079910728 are:0.02977281713174759 were:0.024116380544192538 tho:0.021479544092776578 an:0.02049323623119189 is:0.019509462864997384 to:0.01783594254369022 been:0.01306649369538079 their:0.012910434303701484 with:0.011443407171450691 his:0.010990264674117914 very:0.010626393290990889 :0.1299485944276455 +the:0.11295906265856105 and:0.10898597041731992 of:0.07552616788264184 to:0.0721814285812436 a:0.04170693487011598 in:0.03491248674607343 be:0.027716216729180513 at:0.025728526844597067 was:0.023171153382036434 or:0.014689117604957528 for:0.013788785446183515 his:0.012722968254673079 In:0.012139565875174561 Mr.:0.011867829626510132 is:0.011715376924716208 that:0.010687845056801728 on:0.010323612467918694 all:0.010176628188633737 by:0.00996728224823372 :0.35803304019442733 +of:0.36671568967256035 to:0.09849209784191491 for:0.05999473912982526 with:0.05440413751639122 by:0.046390042655491195 in:0.03137173236534618 upon:0.0238852608097975 among:0.017753226652228067 let:0.014425708377623775 from:0.01419363347570575 on:0.013862841101509569 and:0.012337570691843668 ascertain:0.010615120881752708 about:0.009158296876475805 against:0.008730851094444516 see:0.008341790434453324 before:0.007459377541831241 that:0.007250847194926071 In:0.005375788963974382 :0.18824124672190448 +in:0.27410286629096214 the:0.14238774031084675 from:0.12309337912205694 of:0.0566202394277232 a:0.043106341757731696 his:0.040191763675959696 In:0.038258416258830676 their:0.033418926581906795 and:0.02366539584991937 by:0.02103027065497758 with:0.01706608885653765 for:0.01603946997459013 no:0.015917403153980672 on:0.015070489521484973 to:0.013678732995958181 without:0.013496415977894227 its:0.012233978538009978 any:0.011511038920904068 an:0.011103972382497695 :0.07700706974722754 +of:0.09129790931378902 the:0.07369883040827747 and:0.047842263382354346 in:0.04189055351593407 to:0.04045875475680249 a:0.03542341257202578 be:0.02020462051672066 for:0.01979292654746225 was:0.01760256398103379 at:0.017380150555488715 is:0.014984483003968216 with:0.014047653760730413 by:0.01374644383819499 :0.012670486581795598 In:0.01200961464556976 or:0.011563835749786333 from:0.011391516893522809 are:0.011273104484969465 that:0.010755276030689069 :0.4809655994608848 +and:0.019315330630261685 that:0.007562563934804292 it:0.007208222318737081 up:0.006989707738499087 in:0.0065825549005930645 :0.006572373994792414 on:0.006127575534841775 one:0.0057371644455987796 ;:0.005249502545138039 ,:0.004863907845391771 :0.004796923792851473 he:0.004644733314412883 out:0.00461640698528319 them:0.004608163476516834 .:0.004435151760688335 of:0.004410014498521964 day:0.0042786043185416255 down:0.0041627338747031355 it,:0.004092037646628329 :0.8827463264431943 +of:0.24661326649150853 in:0.18927642820168733 for:0.07389730968063714 to:0.06586731403496043 In:0.04421571990812636 by:0.04314116907781499 with:0.040969332002301566 at:0.038521347218679995 and:0.03315289395511342 that:0.03170497247425104 from:0.031402778660706836 on:0.028171827601979504 into:0.014407285541947685 as:0.013022626842829337 all:0.01206221432635867 upon:0.011631743293056019 is:0.009550685352296695 or:0.008757196348264343 without:0.007604156569418893 :0.055029732418061215 +and:0.04491804315792162 covered:0.04018777062174743 filled:0.03439831602262882 together:0.027274277474498326 charged:0.021185110165574027 it:0.018970003064941 up:0.017480630635068384 him:0.016212955803671315 them:0.014293565819421733 compared:0.013525193832595763 connection:0.011614636799553067 parallel:0.011283394857871554 do:0.011130056469426521 loaded:0.010955317894446719 trimmed:0.010816708291869467 thence:0.01055173438898371 lined:0.010343364261696459 but:0.009666074941737286 troubled:0.009518829589372486 :0.6546740159069743 +I:0.10474685142061331 you:0.10249513404763583 he:0.08666910601974429 it:0.08332398902752572 they:0.0793993471873514 and:0.05782201931313552 we:0.045728883537177564 who:0.04381654977326815 It:0.035592990029898824 which:0.035095744471188184 that:0.026767436739961712 she:0.01847674698420829 He:0.016355559299124137 They:0.01440145988741609 We:0.013085184678424363 You:0.012433682306310808 there:0.010747659123938689 man:0.00958794811185144 but:0.009436370271014852 :0.19301733777021085 +:0.05671698005217941 .:0.025201909126102286 it.:0.021561785960769513 me.:0.009055089013865179 him.:0.00893200298665775 them.:0.008183594859481308 girl.:0.0077371289971632255 and:0.0064704973896458195 her.:0.005800337053237286 -:0.005522988872717369 day.:0.0053938913587194895 Mr.:0.004934150642564639 boy.:0.004785938218171205 :0.004610701356231924 time.:0.004113994567788639 It.:0.0040508761543123755 out.:0.003962244526717115 ::0.0038694260453869134 all.:0.0032714798149386603 :0.8048249830033499 +and:0.10119789434721585 the:0.08750650826269914 of:0.06965652901268303 to:0.05397231607343732 be:0.036865526523342323 was:0.035053854231348616 in:0.031304212937328754 is:0.026000336185972757 are:0.0211137244270955 were:0.018396838756921496 con-:0.017174874810272 been:0.01699376096117119 for:0.016754654309511306 com-:0.014528737373553537 much:0.013539613194676265 their:0.013377304520975603 he:0.012755370579971337 or:0.012523440083369532 not:0.012362122862064477 :0.38792238054639 +to:0.32401365876754945 will:0.12222702803491407 not:0.05869327818023205 can:0.056501936536780255 would:0.05412962936731644 and:0.051240327174112164 they:0.0330635984700509 could:0.03246903098927366 I:0.032093771429101664 we:0.02450710904508783 cannot:0.021949530216210347 you:0.01903865013962283 should:0.017392463365972242 may:0.016520159724063857 must:0.01587464982176001 shall:0.01350346235490376 They:0.013259578985621266 who:0.011865147225488325 We:0.008620083811435591 :0.07203690636050329 +the:0.10584359808943804 of:0.06809572929164684 to:0.0542552156330638 and:0.047299030530580766 at:0.04143272142052563 a:0.026651696821291076 on:0.024716451792536297 in:0.016180563759143042 .:0.012563528404199246 thence:0.012007117109489577 north:0.011818921138064655 :0.010837682216443774 south:0.009836853105666439 said:0.009530949293256265 one:0.009520008206042742 for:0.008222526131222764 by:0.007931660630570509 or:0.007713436175343719 from:0.0073544364871172135 :0.5071878737643576 +is:0.17745682233108037 was:0.14877978580330267 are:0.09353188863241439 be:0.08346737031745786 been:0.07032774921456089 and:0.04956864383518128 were:0.04037000248941316 not:0.03806974349968186 Is:0.025160488843541558 have:0.0247086468981491 has:0.020512611708246465 or:0.02039724495612252 had:0.015144576514625835 of:0.013611994962560658 it:0.01180851915565973 for:0.010028153404932712 do:0.010002539492300781 being:0.009947201934054772 as:0.009246425822185695 :0.12685959018452767 +is:0.06463571237792327 was:0.05329900498705739 and:0.052780157991720165 able:0.04842495989132145 him:0.04445846139133656 order:0.04294961657179089 enough:0.041820878379322274 not:0.04134730859013989 unable:0.03781970145107485 had:0.037778715733736506 have:0.03249203465897049 ready:0.029408306737004113 necessary:0.026262941973720616 them:0.024553241816767553 time:0.024373415774131393 willing:0.02239429641574458 as:0.022360667536377384 compelled:0.02112517022984517 likely:0.020974110156694464 :0.30974129733532096 +and:0.12207591937933565 about:0.10737376223468989 of:0.10722287773963467 the:0.10452663058031975 or:0.09291598525073226 for:0.08080566048620588 to:0.035534492674616 at:0.03472002112076599 than:0.022687485971342364 nearly:0.022158539261221605 from:0.02159116404290357 was:0.021350718330250283 last:0.018701859881956485 About:0.01716528788002075 degrees:0.016833501908149355 a:0.016087450148669132 twenty:0.015064830725273096 next:0.012684879632543009 least:0.011753971542891605 :0.11774496120847865 +of:0.11877222446367232 the:0.10855896299387084 for:0.1024374102089641 as:0.09132208967652156 so:0.08569091675495599 and:0.0694974400399337 in:0.06193736310499999 that:0.05243472793656095 great:0.04935973211660087 by:0.03932183664490565 with:0.029868859406041812 good:0.028755380064670804 how:0.02728175951177268 In:0.02165986491539402 are:0.014113025732009444 at:0.012025842088054212 too:0.011871746479389335 How:0.010488520433530192 very:0.009890730346552048 :0.05371156708159951 +the:0.017378559087857556 land:0.01597849428777093 and:0.01337193773617129 ;:0.012420126487987864 dollars:0.011649833757018807 made:0.008710796949530563 1:0.008535885418801277 time:0.008509267690576207 more:0.008495912753915445 I:0.008239944660165272 that:0.00797627055132933 nothing:0.00785487945559351 :0.0064660099796091655 -:0.006332325141402811 on:0.00615686928334881 one:0.005924711848660379 as:0.005859124677659151 feet:0.005329541178607857 a:0.005176205025560905 :0.8286333040284329 +the:0.3873366441396872 this:0.2046746509703908 a:0.07364102207548652 tho:0.030832864958474045 and:0.02341755857043 of:0.022582524664409666 next:0.019208367138040864 This:0.018281932707376543 that:0.017419903917741602 their:0.016403860504322663 The:0.01450472029045809 in:0.014297294236996539 other:0.014027480201332465 every:0.013968075223343798 tbe:0.013935578160916852 last:0.0134831051237845 our:0.012867220564754226 his:0.012684676071222246 its:0.012348486568131001 :0.06308403391270036 +of:0.24771856616623836 to:0.10055514755145552 in:0.09984480279807748 and:0.05814117240642057 with:0.05158849496637837 for:0.04613065771486411 on:0.044432355864291194 by:0.03519649785437645 from:0.03338388255327628 at:0.03070401576666744 that:0.026848878623973782 In:0.02041195271981872 upon:0.015248471773457326 as:0.011599582931726849 all:0.011326016994932605 or:0.008867228292995478 up:0.008407673252508876 over:0.007381477118522736 into:0.006992770039889695 :0.13422035461012818 +in:0.3610147356168867 of:0.14588771406999068 under:0.10331282350010484 to:0.0786261251618387 In:0.07388951158915848 from:0.02938069945336926 for:0.027449803821724808 with:0.024619404143190745 at:0.022510316831776282 by:0.02184288568844749 on:0.015403577349658418 and:0.014499927394313978 that:0.01382601131093433 into:0.01299578534979319 through:0.007679869020810092 iu:0.006839818792977313 upon:0.006025749517241852 At:0.004589559624804198 over:0.00438093381521954 :0.02422474794775915 +the:0.11500545585881412 of:0.0897605566703555 and:0.07914879987306167 a:0.05827037833039227 to:0.0386987683614473 was:0.029282661483795363 be:0.023890810389268442 is:0.02056818843792312 been:0.017204803150083207 or:0.017094944717067368 in:0.01610392931760865 are:0.015798243080240505 his:0.01344187865263006 at:0.01321973597799718 for:0.01304287912725108 their:0.012337012043366955 were:0.012236169772424844 :0.01133284696603621 The:0.01095822742659897 :0.3916037103636372 +of:0.28767355066866834 to:0.08775711267569858 in:0.08678131196995101 and:0.05160598694501188 on:0.04646139928102899 by:0.04519522654900943 for:0.044547789071328545 with:0.03396756772609607 that:0.033699232901107726 from:0.03075346596941143 at:0.027039283056790858 In:0.021061449543044047 as:0.017514234937992545 all:0.012543839382496166 upon:0.011844431150487573 is:0.00998972746569266 was:0.008814315973987914 into:0.008557199930727406 through:0.007781895704231326 :0.1254109790972375 +those:0.11319937966281919 men:0.09863989075623514 man:0.06978547827844972 and:0.05971760815194128 people:0.027982086890245467 all:0.02245161619322722 one:0.01853801640783616 persons:0.013280967749275337 Those:0.012984881352639149 woman:0.01248172329158801 person:0.010943713852097272 women:0.009100162120752592 others:0.008873322193516893 he:0.0073506962506137375 but:0.006624702609254565 girl:0.006308206864983569 friends:0.005763124819201225 or:0.004734510794002009 men,:0.0046150591320742234 :0.4856248526292472 +and:0.0679303430690147 made:0.029097097315383083 voted:0.02840864627388439 up:0.024495343823956232 brought:0.023468583031494482 out:0.022169283584053685 was:0.021668190925966786 protest:0.019909663926350313 is:0.019625600332786607 it:0.01852348383084885 not:0.018099667952196103 taken:0.01791446762501331 fight:0.017912291794813996 him:0.01634574737321943 as:0.015755355325944926 charges:0.015620793040187674 or:0.014872082314666614 her:0.014841380743276985 arms:0.012540515106295006 :0.5798014626106469 +and:0.0752833165675648 as:0.06403957159749782 way:0.026126056854823883 time:0.018350203108472282 is:0.016919128330121356 said:0.01655457302195379 referred:0.01607883410667499 subject:0.015374124736993924 him:0.014791025190438994 object:0.014004443193197854 regard:0.01365224311730245 or:0.012150583962164375 them:0.011888017523318887 reference:0.011123849328675522 addition:0.011012499427059352 according:0.010602512460143172 it:0.010403728503388327 known:0.00923299900863047 manner:0.00922113726653782 :0.6221911526950399 +was:0.10284762181894237 be:0.07210297799956498 and:0.06949527551290688 is:0.06675567298383817 has:0.059112038106813196 he:0.05686909760142644 been:0.05333691970367756 had:0.04758109275893249 the:0.04328244334914462 not:0.03787303028285984 to:0.036905721958570906 have:0.03305113189023754 were:0.028828515634475353 He:0.028101495318055413 are:0.026019259842315727 a:0.02163645430147934 who:0.01655935374305462 Is:0.013267707036533464 also:0.011800785030144713 :0.17357340512702638 +the:0.14758139319324365 and:0.09650695447904364 of:0.06439644672661651 a:0.038945865087235444 to:0.03281444713457846 that:0.02346643394969413 The:0.023308288940496014 Mr.:0.022977641103377168 or:0.022701404561613747 I:0.021879765821533455 it:0.02137176581143954 be:0.018721237093173422 in:0.017897296968999554 he:0.016750243692262204 no:0.015597388814093017 as:0.01463575781894053 their:0.014026219803297291 which:0.013832985731725386 his:0.013673113510281526 :0.3579153497583553 +of:0.1804205956912304 the:0.17731993580458597 and:0.08356944756024345 to:0.05320989867747121 in:0.05042665793002547 by:0.03742085102068373 at:0.02639904862807815 The:0.023836888024939475 a:0.023763460177095228 for:0.021007347874913828 with:0.015653039079307523 or:0.015431464786926552 In:0.0136859264748909 tho:0.01266393170038184 A:0.011878280991790372 his:0.011564975493310379 from:0.008330471766940795 two:0.007999022656350614 her:0.007296544310422895 :0.2171222113504112 +the:0.11919516938815296 of:0.07230453158552728 and:0.05781056740443249 a:0.043018564803886335 to:0.031305092790907506 in:0.020848713353460488 at:0.014270110001066288 .:0.012526810245749479 :0.012413283442322082 for:0.011719122709941797 by:0.010808400946589808 or:0.010404172990115616 The:0.01003576004804544 with:0.009811868184449042 tho:0.009295902015355835 was:0.008924239095331684 that:0.008672304223433876 is:0.0085591147338948 be:0.008335143826716943 :0.5187411282106204 +and:0.22889776407555937 was:0.06935408337813903 of:0.0530527850883202 the:0.04370194222928678 is:0.041001159143905154 be:0.03582654158779363 to:0.03231532226223691 are:0.026522178983589367 that:0.022668002357400675 were:0.020768657219508636 been:0.02019896510340945 or:0.018281186418309444 by:0.015477592455001894 con-:0.013945864871126555 at:0.012061025305643768 with:0.011827278813271261 Is:0.011007032779856308 if:0.009959799897628897 in:0.008384764713976353 :0.3037480533160363 +of:0.24929968600687366 to:0.12135142855420562 in:0.11249054678200433 on:0.062324477924738005 by:0.04568728707172574 that:0.04396077756684755 and:0.04320512919500195 from:0.03667472894649839 for:0.03405012891050974 with:0.033312826043374405 at:0.027912845763757146 In:0.027363937233344248 as:0.022108395209403713 upon:0.0209760570697913 when:0.00954997486484865 into:0.009358904829820366 before:0.009049010861878 about:0.008836466306142465 is:0.007846191187362328 :0.07364119967187237 +and:0.16393446710138157 I:0.1269582490615606 who:0.06170793423219065 he:0.053953746926416496 they:0.04908171143485103 not:0.04262529293123973 we:0.03987235827844542 have:0.02627765831106325 He:0.025618547753527957 is:0.02300169416624286 It:0.02293911445255178 We:0.02268942289498288 to:0.02044415046813744 it:0.01791359115590947 They:0.016612582833447555 would:0.014541626296819701 re-:0.013850576614689504 you:0.013657322106970526 she:0.013534577925311802 :0.22978537505425978 +the:0.22123083289560305 a:0.16004192689273575 of:0.05224426356572429 and:0.04062386046783062 The:0.037419977537914165 in:0.024730133902077844 an:0.021165255859614127 his:0.016491092952867933 to:0.016256225574493726 tho:0.015013299984373705 A:0.012617773426010554 that:0.012390411738833877 :0.011635291994676406 .:0.009055328061370393 on:0.008139010762091645 tbe:0.00728919017169646 her:0.007076557582192393 In:0.0069804785700252935 most:0.0069285389922592935 :0.3116705490676085 +of:0.36358476992017874 in:0.16395832050874887 the:0.09582608952410337 to:0.053621865845681425 by:0.04863836620259279 In:0.04025432543246855 from:0.02930843844068901 for:0.0208620183673784 with:0.01855752143405026 and:0.015652749113196442 on:0.015376330276421497 that:0.011690308416295297 The:0.010437449115726926 upon:0.008280246041936628 ot:0.00744704193105234 said:0.006112575401385902 ol:0.005782710088561459 under:0.005521153934075577 :0.005432481153776306 :0.07265523885168022 +more:0.4310705316291733 less:0.15632319038130857 rather:0.06110111694270524 better:0.038642804337337834 worse:0.017117644494043807 other:0.01649005566199778 greater:0.015021029223112513 higher:0.01102119545101921 lower:0.00879039411536375 moro:0.00853831462559564 larger:0.007835085261698472 and:0.00736794233490985 More:0.006540250136523236 faster:0.005740761757319982 longer:0.0056960491360392735 mora:0.004841408566058332 it:0.004583643596866061 leas:0.004575310776690073 time:0.004148439686842577 :0.18355483188539454 +the:0.39749834532651884 a:0.07520030034269234 and:0.05540858759821703 The:0.03273515726769502 tho:0.030061875542463562 of:0.020144331424922633 tbe:0.014929647509541684 in:0.014268129706664795 or:0.013333166761078447 .:0.013287381914101323 an:0.009000188755386574 to:0.00880680429595084 :0.007943763822197133 Mr.:0.00773879605474787 by:0.007328417831573476 as:0.005922572098978465 for:0.0047526933692942485 that:0.004736121968310169 on:0.004594595720579333 :0.2713091226890862 +set:0.09764669102934546 taken:0.08017851765547114 went:0.069811192613257 came:0.06794700629335061 brought:0.03840627366694225 it:0.037500716854170606 go:0.03288082299413683 him:0.029797709392452534 put:0.028992475832832352 come:0.024736726539474153 turn:0.024045271076072943 locked:0.02352614692148549 looked:0.021397490215103246 them:0.020334007364836117 picked:0.020185871104342227 sent:0.01955127662762589 look:0.019195317456501628 to:0.01903179743501408 going:0.01878137240158438 :0.30505331652600104 +man:0.09698480037674585 men:0.07924792349322586 those:0.07762145600320901 and:0.056303466838847745 one:0.03625803099011301 people:0.03149657057018096 woman:0.02207868102439643 all:0.014614041427037493 girl:0.01131543636144576 others:0.010583084008716895 person:0.0102545766177785 Those:0.009764507035514326 women:0.00971454916379573 persons:0.00930448157984727 friends:0.009218051287830535 he:0.007114752522564351 man,:0.005985400346334283 but:0.0059284119780222 him:0.005666460490879278 :0.48954531788351446 +was:0.09290586857013645 and:0.08545550586814177 or:0.06636195997765226 is:0.06354118346571457 by:0.04960021796554544 of:0.03612180899158339 a:0.03325369104620107 about:0.026020597407617134 are:0.023297612817037537 to:0.020625491228581646 had:0.01994349234041404 with:0.019924349509931064 be:0.019816533493263924 have:0.01926349523172986 that:0.0185847530346958 only:0.017548092883139174 than:0.015334618705966392 up:0.015262126932461106 has:0.015055107761611343 :0.341083492768576 +-:0.06350459137816988 ai:0.03817775725515701 e-:0.025891393708782448 the:0.021349191560087903 to:0.014569804206690599 and:0.01286553798497391 I:0.011113910505805782 in:0.00999477261443784 at:0.009842469516960892 :0.009679965086130901 a:0.009445765529489692 it:0.007067412748699026 that:0.006877421737885565 sa:0.006734457060812861 of:0.006273024222314401 i:0.006072079683781135 one:0.005982268921974167 t:0.005744881362161239 was:0.005304572937125567 :0.7225087219785591 +the:0.452878455531259 of:0.05118029311265806 a:0.04447117065824095 in:0.0423893142185242 our:0.03523512442414506 his:0.03512246987942884 this:0.027158302465729194 tho:0.024775397312346775 public:0.022768412027172735 its:0.02179010713074041 and:0.021304590071147194 The:0.02101211271413344 their:0.020839790193094614 such:0.01780994879144265 as:0.016238752529749097 an:0.0161700059991413 tbe:0.013022073970876687 my:0.009410682313054157 In:0.008424469808828014 :0.09699852684828758 +it:0.12095170213729357 I:0.10295253072398855 he:0.09334846102451981 It:0.07560258178653198 we:0.07475312662710235 they:0.07214204772571246 We:0.030151283973907466 and:0.02932294138389299 you:0.024017617487323593 she:0.0217617484534564 which:0.02015335738562504 that:0.019474813901445006 He:0.019412464993831032 They:0.016494013645298986 who:0.016280066098497956 man:0.009946927938764435 ho:0.0091155519095246 there:0.009028002202766 people:0.008837686362582114 :0.2252530742379357 +quiet:0.01927677632185034 it:0.018283055753882584 made:0.013862971403513759 more:0.012168216780683347 power:0.012027232865248717 time:0.011066814759438158 dull:0.009588434467689371 this:0.009519551823399855 labor:0.009088429096681028 work:0.008661453814958907 prompt:0.008660246955812429 due:0.00857383664684044 right:0.008418226364170637 men:0.008383087924722568 large:0.008235665748181803 good:0.008198488845058525 peace:0.008172821932901945 business:0.007987527750724486 life:0.007929480646484665 :0.8008976800977564 +of:0.2843586260526545 in:0.12930357203400153 with:0.06906216968910689 to:0.060414650590526225 and:0.05298482324594502 that:0.05144228481553369 by:0.04794733152169331 for:0.034964926497542174 on:0.03287251198441594 In:0.025823020233035985 upon:0.02209097256285921 from:0.018661590298839716 made:0.01505923484066931 make:0.012680417145934937 or:0.012615773832125126 as:0.011459859883854397 all:0.010566740531767751 into:0.010191456872824432 but:0.007457860840125064 :0.08904217652654482 +one:0.1028303141280697 part:0.05963429477052991 out:0.04766456937681193 some:0.031418679026461914 members:0.030764490253327767 side:0.029940657362655835 portion:0.022063658796890564 office:0.020457735219956013 member:0.019726706386316174 end:0.019666887540649894 tion:0.018667441728710307 parts:0.016814747270460957 people:0.014112771422418794 all:0.014072739582212475 any:0.013183573287639892 One:0.013083578354183906 that:0.013024335602903442 account:0.012482348155001894 many:0.012077825070275192 :0.48731264666452345 +and:0.07943789800670902 for:0.06618841726604319 as:0.05626540657761209 on:0.04908136705049546 of:0.0463633219878397 to:0.04155335219266076 in:0.039812023777758394 that:0.03867124722527949 with:0.0373730790055534 make:0.03723179092509507 take:0.033784052270641796 do:0.032685178119216826 made:0.027124000954547946 put:0.021484838191469617 but:0.021475649431100363 is:0.021365403502215677 found:0.019128335337583187 upon:0.018827486493142583 took:0.01763907397757957 :0.29350807770745585 +it:0.11857892928876056 which:0.10419954526017984 It:0.10229720510101595 that:0.06796245048918885 who:0.06088908826247786 he:0.060731706658395446 there:0.047718276913133226 and:0.0298646407467943 There:0.025721626378001235 He:0.023765504777663107 default:0.02149030696489031 as:0.019132676760165265 This:0.015088553278066501 she:0.01413948392901254 what:0.014110548249504374 this:0.009613248172212615 work:0.008813388419150843 man:0.006677000754574867 country:0.0066605789516794795 :0.24154524064513283 +was:0.19557335969636613 be:0.16686240926044504 were:0.13288095420556 are:0.11032616809987776 been:0.09074551017195948 is:0.060082104414342634 and:0.04034491092876442 being:0.03769086221341293 had:0.014622316373889699 not:0.012407455829082864 have:0.01233257486480696 bo:0.009262109772462168 en-:0.008837581399671375 Is:0.0069360569170002235 he:0.0061203461287159455 has:0.005740968960942654 I:0.0046112221056244865 if:0.0045540291567357435 then:0.0041874266338130595 :0.07488163286652645 +and:0.06045212570334282 away:0.030221028997445606 him:0.026494415946988627 far:0.02506566669508235 it:0.02239979914285656 them:0.02050555847906136 years:0.019151356091945636 free:0.016417874350395475 taken:0.016334332808948013 miles:0.014736628025423654 come:0.014603985801745536 came:0.013816652431023637 received:0.013660480977131594 is:0.013378242297762716 out:0.01330671426205355 but:0.012894266223720793 up:0.012632767056727869 letter:0.012540145952083666 suffering:0.011952234963506938 :0.6284357237927536 +of:0.09129790931378902 the:0.07369883040827747 and:0.047842263382354346 in:0.04189055351593407 to:0.04045875475680249 a:0.03542341257202578 be:0.02020462051672066 for:0.01979292654746225 was:0.01760256398103379 at:0.017380150555488715 is:0.014984483003968216 with:0.014047653760730413 by:0.01374644383819499 :0.012670486581795598 In:0.01200961464556976 or:0.011563835749786333 from:0.011391516893522809 are:0.011273104484969465 that:0.010755276030689069 :0.4809655994608848 +more:0.16333924090972468 was:0.09880860340640989 is:0.09723119138354408 and:0.09301332289946715 be:0.06009657162829534 are:0.059904143105898304 were:0.03190082083521354 been:0.028531689652569983 not:0.024998114645335676 so:0.019714660969903857 Is:0.01654021271069905 that:0.014127204127861032 her:0.01255446146280628 have:0.011863239261469831 had:0.010856551538739828 has:0.009413107546059552 with:0.008183929309949035 but:0.007882901389940427 he:0.007251528405098887 :0.22278850481101362 +and:0.19512308519625862 was:0.10645447702633262 is:0.10299788274974304 are:0.07614586713368322 He:0.051433162287464196 were:0.05035507596776957 but:0.04947322577237788 has:0.04512915048149232 have:0.023490983983067117 had:0.018571578032728832 he:0.018387637948522086 I:0.015502318751448483 It:0.012596375463602975 Is:0.012226857491567438 be:0.010837367421906502 She:0.01079674836272175 They:0.009560448544747528 it:0.009003180301046671 that:0.008295536519948417 :0.17261904056357072 +the:0.4614869250355391 in:0.09516293936460084 of:0.08182631484195743 The:0.05581740914971607 tho:0.027818327664305607 a:0.027771255448013715 his:0.027473801132612028 their:0.02431400330447025 its:0.023543907625346413 In:0.018865921094756568 and:0.015575411788613078 other:0.015362714451298096 our:0.013673973134287382 any:0.011493863251966682 no:0.010300475431763302 that:0.010172736125175982 such:0.009830849176121233 tbe:0.009809271797772343 some:0.009665748155033401 :0.0490341520266505 +and:0.30128120619697485 by:0.07100232385648415 that:0.06419503922398792 of:0.059785557042264514 to:0.049922075833763006 a:0.04171916752823388 the:0.036646934810678204 or:0.03612469625451841 is:0.028784567263639888 be:0.028657819838631346 not:0.027476545757372295 have:0.02611091462324424 which:0.01893777380388558 no:0.016909331115796337 he:0.016724680324492754 are:0.015199458402707004 was:0.014164187932723463 as:0.013450931414458325 who:0.013238720295249279 :0.11866806848089453 +It:0.13526560850143066 it:0.12680536513688317 he:0.11928575908544167 which:0.06708620223367971 He:0.06207022237609404 and:0.052977468977678695 that:0.050408480015710105 who:0.03926782613294399 she:0.027139324920410334 what:0.016821471428841165 This:0.01639716814817665 She:0.011988837576634407 lie:0.00840331302380284 this:0.006920607057940816 ho:0.0068306142700668175 What:0.0067525831646038864 time:0.0064940664386009895 man:0.006110981480330308 one:0.005470106549259203 :0.2265039934814705 +lying:0.08131240920211166 and:0.06157142330309903 going:0.04742637140141729 work:0.026752357383109895 due:0.025939475059689746 that:0.02094880058418929 was:0.018527334757791575 committee:0.01838112481226483 interest:0.017340309937579613 went:0.01634141174646318 them:0.01604976178574639 place:0.015494453458617377 point:0.014977334374538203 came:0.014481686046197666 him:0.014033040131745209 up:0.01364452560200166 it:0.012789775479478543 called:0.012439185692907261 now:0.012306333427666441 :0.5382428858133851 +It:0.16483324464261526 there:0.15137929784652215 it:0.1389856574030547 There:0.07635769296985051 This:0.047005115735994085 which:0.03400493914593651 he:0.03276953491232582 that:0.032534901302704186 this:0.027705240540618296 He:0.025980981107979893 and:0.02571984886254885 who:0.015928391857077187 Here:0.008658225427457844 That:0.0071330239854848695 she:0.007117899171284279 one:0.006746549293447637 She:0.006029619888080546 man:0.005607440676998042 what:0.0055587671977417805 :0.17894362803227754 +in:0.04721882121515197 up:0.021627429870487262 to:0.011771369437413762 men:0.0106011050330277 ;:0.009280815430655754 him:0.008972954629837073 them:0.006900027564599061 In:0.0068076448914719465 out:0.00649149071024162 man:0.006477221014543612 down:0.006436539860967171 and:0.006279377582892276 here:0.006269636493371872 come:0.005770161428101522 him,:0.005732029086749077 it:0.005705673231939861 .:0.005651416000514267 it,:0.0055960945993989725 :0.005466735073518413 :0.8099434568451168 +and:0.06810128417073844 Then,:0.06514208361373758 him:0.05987070663595456 up:0.053962908884803464 her:0.03207567906601845 it:0.025761282956228208 out:0.025368121303094696 back:0.02506475516814667 down:0.023677694780789838 me:0.023444149326436927 as:0.020242672878415916 them:0.017890941442903353 was:0.017547877713582464 go:0.015836721251900755 came:0.015770597376275397 even:0.014160810477835677 come:0.011145241914665281 over:0.010950451888407849 off:0.010612311148981889 :0.4623737080010825 +the:0.11919516938815296 of:0.07230453158552728 and:0.05781056740443249 a:0.043018564803886335 to:0.031305092790907506 in:0.020848713353460488 at:0.014270110001066288 .:0.012526810245749479 :0.012413283442322082 for:0.011719122709941797 by:0.010808400946589808 or:0.010404172990115616 The:0.01003576004804544 with:0.009811868184449042 tho:0.009295902015355835 was:0.008924239095331684 that:0.008672304223433876 is:0.0085591147338948 be:0.008335143826716943 :0.5187411282106204 +of:0.20044374302937046 in:0.11599864156237556 to:0.08649761366837119 by:0.07815457908947183 with:0.05655523186567463 and:0.03377174411453626 is:0.03254370853647506 was:0.031282479639031205 for:0.030557295371703885 as:0.028376875315329 on:0.023871334678773733 In:0.023579920416041244 have:0.020690573857765144 that:0.017715893723506574 from:0.01710307946708273 had:0.015369477760444108 not:0.015159320267276536 into:0.0145670146094812 such:0.014522589235032605 :0.14223888379225705 +to:0.17767082717045796 for:0.14617946784939792 with:0.1450451650541334 of:0.07726387252453597 upon:0.05698032871861088 against:0.04824328753716881 on:0.033968394789423026 by:0.028879578254175232 before:0.027673232744146584 from:0.019654507255573918 in:0.016400091808582918 about:0.015399838930210175 between:0.013624020032547333 behind:0.012780894325839147 kill:0.011852109767200482 over:0.01128864731294841 see:0.011047074155353073 around:0.009114768845421742 marry:0.008829417327707945 :0.1271044755965651 +taken:0.09069590935468753 came:0.06419394400907406 made:0.04294759471111029 it:0.0395816287198043 got:0.038632499179963885 come:0.03847900659314852 put:0.03822749765758271 picked:0.03821823478437189 set:0.032911477576478464 went:0.031907897758131076 broken:0.027338699155334562 them:0.026551772226846626 get:0.02532057025673417 build:0.022405152013158156 kept:0.022106245606564535 looked:0.021504968186424545 go:0.019476216885302766 grew:0.019074824826858548 brought:0.019015541109346154 :0.3404103193890772 +was:0.14446120539684665 and:0.12468398720141857 is:0.07765343773842069 be:0.0761446819934648 have:0.03949498937407374 had:0.03395248404951802 are:0.033924336058641834 not:0.030776776373315686 has:0.02861608696381167 were:0.028141086217754813 never:0.027014003252377496 been:0.023906722833561236 it:0.021862529658057392 him:0.01838726442192466 all:0.017974060368838005 her:0.017876072804078207 up:0.0169767546433396 so:0.016061592383819313 them:0.015443062619838965 :0.20564886564689866 +and:0.09289493747641035 together:0.0807172977877807 connected:0.02795401660979869 connection:0.02703008603766591 it:0.02318530868109916 them:0.020235073452515545 accordance:0.020107642803662763 do:0.017069868701125836 but:0.01659305837890234 charged:0.016276846202550807 comply:0.015460145893057217 satisfied:0.014741599448693066 up:0.013528005779232329 him:0.013093791734441565 or:0.012781602233707872 interfere:0.011741831219959363 provided:0.011245864609015006 filled:0.011183245586955987 covered:0.010866444655629385 :0.5422933327077961 +it:0.14839348305539712 It:0.12877326577445497 he:0.09225659650646519 and:0.07653007237730768 which:0.046937436953921746 He:0.04544241662457276 that:0.030470458017233932 I:0.030207566044369846 she:0.02844801388569588 there:0.01966681235941222 who:0.019458707835388195 This:0.018024078805777784 She:0.01332206860951808 There:0.012170600800702553 what:0.010887687869446796 this:0.009575754317187308 but:0.009489449311004216 as:0.00722347439913751 lie:0.007177869023289121 :0.24454418742971712 +day:0.01728330822692756 time:0.013282552921788772 house:0.012781322429929735 land:0.01173019847436995 city:0.011325016929806024 men:0.010974803582759707 feet:0.010797603979366443 street:0.010672250429338597 up:0.010092952891607497 long:0.009832287011998609 gold:0.009769569014645133 one:0.009216604486647725 out:0.007848305993055126 power:0.007829220945980141 man:0.007698539856634042 and:0.007181311960546282 down:0.007019055455240796 in:0.0070159440647424 hundred:0.006933088058379717 :0.8097160632862357 +-:0.06020096163820279 of:0.028048545013367943 and:0.027004284954295153 the:0.021520717422312378 .:0.015648161213782735 :0.015318914980652278 a:0.012577482447282037 I:0.010256121226055794 w:0.01019632943590748 to:0.009907619124072816 i:0.009294393092288938 t:0.00793648375390551 that:0.007922897437514743 h:0.007908268550464783 it:0.007599739236484184 was:0.007577390972432797 he:0.0074414083120272895 by:0.007385724395413645 as:0.006876181652842852 :0.7183783751406938 +to:0.4897884337683009 not:0.12801520174002753 would:0.08067786656325383 and:0.06475218954493905 will:0.06397032138098672 never:0.021596694733110933 I:0.01821456817533089 must:0.013163317872303786 we:0.012851089871785217 may:0.0124009958276923 or:0.008123928214839735 should:0.00789367626225259 can:0.0075228841679715 they:0.007425219648915926 you:0.006343022724032972 also:0.006155970349990226 shall:0.00611106152394887 could:0.005229825441023526 but:0.005156031911130053 :0.03360770027816339 +and:0.03868242960999506 as:0.031124813427855922 went:0.02352509775927722 him:0.02196555539050794 them:0.018760608639018784 up:0.017985449426794205 is:0.017894175620344187 go:0.017174904667157563 able:0.016756848979943888 going:0.014481672239490295 it:0.014128375989346808 was:0.013277058274565138 time:0.013249953793837373 not:0.012469887553778763 began:0.012465717758716884 way:0.012105610030480113 back:0.012090864562211581 right:0.011941707822828511 amounted:0.011564315359310868 :0.667354953094539 +the:0.24218396823443503 a:0.19683696514828058 of:0.06099270591875839 an:0.035066739424718 to:0.03098493075816773 The:0.027642152912490055 in:0.026881076736571245 and:0.02510006776224975 that:0.017059977478382917 for:0.014280034382824863 any:0.01299700504296885 at:0.012101855624912377 tho:0.011850540165667646 in-:0.01034169999994817 most:0.009732923396990714 :0.009528068364677664 with:0.009310213243672018 which:0.009276182712172011 as:0.009008087052922725 :0.22782480563918925 +him.:0.04535407548649754 :0.027218484902777187 it.:0.021418666140996304 years.:0.013430006064510693 them.:0.011626830138425493 time.:0.010598941315515505 himself.:0.010291153979653507 man.:0.010104682190933877 life.:0.009414671013956167 ago.:0.008192613809176125 day.:0.007672530821686485 her.:0.007607480614204922 death.:0.007381958064252999 night.:0.007262075687629861 again.:0.006810397233530761 city.:0.0067720727488463995 there.:0.006340498587321394 work.:0.00625431567055265 home.:0.006071578448289463 :0.7691769670812427 +the:0.11859160679027878 of:0.1075027684919098 a:0.05524706183169738 to:0.05280366412998929 and:0.05184295195184202 for:0.04019645031802905 in:0.03300439859234828 by:0.024979735789670547 at:0.023326957998439177 was:0.02236895535251423 with:0.017848961886255798 on:0.017572825268319558 be:0.017281062101332435 :0.016537261275091836 is:0.016077029189914292 from:0.016023815451643286 are:0.014148528188481285 as:0.011994084061067204 or:0.01184041487645847 :0.32981146645471726 +:0.04960187017241942 and:0.024396158047325662 made:0.012413353294265085 that:0.012161067660594273 be:0.010211924330321096 .:0.008716264785115798 them:0.008341304997432497 out:0.008068852767089517 was:0.00764474983323344 him:0.0076293126104633605 place:0.0075264267032108725 put:0.006529930207017867 it.:0.0063153969285721125 it:0.006263934511096597 or:0.006007421465952292 as:0.005909531962955065 up:0.005689325826124083 is:0.005633163401255906 :0.005568358002897784 :0.7943716524926572 +the:0.22924132425264135 of:0.08035128677966182 and:0.055547515083489235 that:0.046985470849204194 The:0.03949337034195376 a:0.0326788192338605 Mr.:0.03136382172704767 or:0.02084337345122462 no:0.017943983364482677 tho:0.015462026051497562 this:0.013568919202297856 as:0.013163992702882273 in:0.010921943914589408 he:0.010164202291307874 for:0.009691030462655513 which:0.009078491314894655 their:0.009046326996308082 .:0.008674677877003106 be:0.008418409575066486 :0.3363610145279314 +the:0.08079911513931724 of:0.05179153013071802 and:0.050374456528474484 .:0.033047609620344476 a:0.026115975744960274 to:0.02351093965076128 at:0.018532715866949 :0.016663025583531946 Mrs.:0.014918036374671421 A:0.013109651134182849 The:0.01231312911917008 Miss:0.010931576979501556 Mr.:0.009329950391313716 A.:0.009187142199462884 by:0.008814784634540973 M.:0.008756928138884424 J.:0.008645250861366976 W.:0.008212890369206766 in:0.00810125269374802 :0.5858440388388936 +the:0.08945217837315504 and:0.06824604408013839 of:0.051227577148237245 was:0.03547671911721195 a:0.03248916378410964 his:0.025734094715540688 to:0.02519535542375743 in:0.02400078959785389 for:0.023833949261286208 be:0.02184525611387573 is:0.020429045609531196 con-:0.019345059730763284 I:0.01839327415607131 were:0.016043677839840533 he:0.015398069064374595 are:0.015183187633616226 that:0.01308337212321587 The:0.012922181386780064 :0.012748628654016098 :0.4579523761866246 +number:0.07093524183468829 out:0.06290110873324202 years:0.05488150477824733 kind:0.045363773148764275 sort:0.0411664021580308 full:0.03901405475153208 lack:0.03287512235053926 matter:0.03197701179640104 amount:0.028290529548625647 place:0.022915385481196853 kinds:0.02238295069428722 deal:0.02210460678334085 loss:0.020899467283137085 piece:0.020761039226939 board:0.0202277881566513 point:0.019893661393146155 set:0.018133328846380862 want:0.0164803619825656 form:0.016309887826997174 :0.39148677322528713 +the:0.6282919188719227 said:0.08177014878302245 The:0.054306423908740645 State:0.03553065161519055 tho:0.03331168467195791 and:0.018974034563680256 a:0.018144139733962283 tbe:0.012910776716836162 County:0.010879857125834709 of:0.00718272641825003 National:0.0067064760460823795 A:0.006247800034323361 this:0.005704949777532588 that:0.004687492669684485 School:0.0037205095833966334 other:0.002909599308414829 whole:0.002847897531893484 City:0.0025806003577830113 General:0.0025161518747485283 :0.05977616040674298 +the:0.1454500361787387 of:0.1080247151493501 to:0.04516715868785427 boy.:0.036249098323069925 and:0.03403580073245388 girl.:0.032660326140049385 a:0.03171979252021135 in:0.02714044436566853 for:0.02365213940166824 be:0.021942286684630472 their:0.021087116084698817 his:0.019774122064073623 was:0.014637031197642503 with:0.014008395154201525 are:0.012730720509515858 is:0.011363112041341867 as:0.011357870543086747 from:0.01063391638067422 were:0.010589399829418696 :0.3667765180116513 +and:0.11203614284734381 made:0.029480560291083903 necessary:0.027231632327903786 provide:0.01978786821063526 him:0.018624150941585572 time:0.017844902254185023 but:0.01736032991925495 pay:0.01712283223509279 responsible:0.01655246417854943 work:0.01573375727996718 used:0.015721729148453864 that:0.015344008200088246 providing:0.015123591452644664 or:0.014918878594106077 it:0.014272018550925738 vote:0.014240496926603478 out:0.013886758983508773 demand:0.013625570335128902 ready:0.01288626098417059 :0.5772060463387679 +the:0.3409445580047097 a:0.13369481638465913 of:0.0919645970788972 his:0.06873597519854031 their:0.04783976412948771 and:0.03105200671413619 her:0.02615167192439203 The:0.0241311925766073 tho:0.020485443050136318 our:0.02000719635655239 its:0.01500230680164942 my:0.013466542753508398 your:0.011796448269394693 with:0.011118923186861536 by:0.010198878976822211 every:0.008475313667916061 tbe:0.008447176520663586 in:0.007964880672373893 that:0.00783844771642385 :0.09968386001626808 +the:0.1683660273578065 and:0.08904901982954389 of:0.06535479262260639 a:0.05553599677336065 The:0.03826701981941845 Mr.:0.02567069670321387 in:0.024300205152610027 was:0.022335851135820928 are:0.021940040648005484 or:0.018126934394479162 be:0.01778398785847564 is:0.014516031351729002 he:0.013929814687621821 been:0.013570689896669912 to:0.013487639231794324 were:0.013462985760822544 that:0.012514943767258948 tho:0.01223649379170063 for:0.01155673650968301 :0.3469940927073788 +the:0.22074737659372007 of:0.13490742950798507 a:0.12830997730978083 his:0.10408877896321016 and:0.06839294162493247 in:0.037418656903129115 their:0.0353047861688305 to:0.024089068095993142 our:0.02268487615549005 my:0.02215728790985438 her:0.02084317765182532 or:0.020465633467115128 any:0.019492175967967474 The:0.01800049504880461 no:0.014144996726296386 with:0.013129796438781486 your:0.01206042817033856 for:0.011662327364702673 own:0.011441988653732955 :0.05965780127750962 +the:0.13476476805868978 of:0.10335620763565354 and:0.07298982432450123 a:0.05493260493485237 to:0.03943912225916912 be:0.027111183577981188 was:0.024964516309082224 is:0.021318618791884996 in:0.01997329939240196 or:0.017463858114689805 his:0.016747288852367714 their:0.014456994452191905 been:0.014017672545055988 at:0.013647384018866159 are:0.013377045933421108 an:0.011360803488482838 for:0.011045703440883426 :0.009853875281147081 as:0.009770129219928711 :0.3684090993687488 +the:0.6012117386917473 in:0.05588633286059913 The:0.051970404660406436 and:0.04357722542785907 a:0.03775534811362728 tho:0.0333680654112192 great:0.019153777899828927 In:0.018773269006882625 of:0.01765431118820421 tbe:0.01346001986754444 this:0.00830896293488752 that:0.00692884585861101 other:0.006856444512171203 large:0.0058774322545136455 or:0.0037657218065220454 first:0.003319943709576371 ad-:0.0033133282431214287 on:0.0032264495852220793 said:0.003115855121993462 :0.0614765228454626 +and:0.0935353777867078 that:0.05953849837588239 time:0.03893036673955211 made:0.033237569170103384 them:0.022487257590821437 him:0.01978480922998164 but:0.01841617711704199 or:0.017806766776771347 up:0.016955431330044974 times:0.015684650413019127 it:0.014996816829898807 out:0.014341889676339899 place:0.014187070583522681 days:0.014118843283785687 which:0.013006512335920503 held:0.012695408898157623 done:0.011543349343682658 day:0.011499307919487256 all:0.01119767424956836 :0.5450362223497103 +and:0.0880300887849541 to:0.07751449010087985 of:0.05337424937335295 the:0.0458336737269473 at:0.02024302010874547 that:0.018982976993226534 :0.018720095851588254 in:0.018510871265536584 be-:0.018496331880034324 a:0.015829809710390434 is:0.014180535364544396 was:0.013712898942125563 on:0.013563904750552958 for:0.012554621341895212 .:0.011060000799005612 1:0.010766626549251706 from:0.01058823790663139 which:0.009968367894920657 I:0.009647530612877975 :0.5174216680425386 +the:0.1027368742231733 of:0.08040399510767365 and:0.0701748726695226 to:0.034124028116220534 by:0.022450968367693086 a:0.019234103144933123 was:0.017473884188484543 .:0.01684295184501916 at:0.01645134566549244 :0.015365950849603531 be:0.01139805772971411 in:0.010865105724617243 for:0.010476909339608235 on:0.009436639477131864 with:0.008808902732297645 or:0.008757968990438096 were:0.008459538531548606 his:0.0078024350206788795 said:0.007146539676607308 :0.520588928599542 +and:0.09825525304716805 of:0.06286986825921945 a:0.056323825365529434 the:0.056245755381666054 to:0.024345488851356737 be:0.01848059575574625 in:0.013561655955680147 he:0.013423445903779271 A:0.011177714450323256 was:0.010059403520236014 .:0.009964538302057784 by:0.009963545820976432 it:0.009948035260406739 with:0.009938340307822075 that:0.009752321692271339 or:0.009747705048183404 more:0.009517987071811283 his:0.008867513607527884 The:0.00829691490379457 :0.5482600914944438 +on:0.5309047700177603 of:0.0673389059194797 to:0.048542850842726866 and:0.045117517243423846 On:0.03721480376036137 in:0.037144873029837676 upon:0.028236435734833334 In:0.01833279779540112 that:0.017534641083565294 for:0.017440454727397445 from:0.01555824146762023 at:0.013688811527351618 by:0.012433258903408838 ou:0.011020236919610751 is:0.009996326084042413 with:0.009974044491428462 was:0.008598733863653549 when:0.008119329956279361 or:0.007767663453615805 :0.05403530317820203 +the:0.11919516938815296 of:0.07230453158552728 and:0.05781056740443249 a:0.043018564803886335 to:0.031305092790907506 in:0.020848713353460488 at:0.014270110001066288 .:0.012526810245749479 :0.012413283442322082 for:0.011719122709941797 by:0.010808400946589808 or:0.010404172990115616 The:0.01003576004804544 with:0.009811868184449042 tho:0.009295902015355835 was:0.008924239095331684 that:0.008672304223433876 is:0.0085591147338948 be:0.008335143826716943 :0.5187411282106204 +the:0.39749834532651884 a:0.07520030034269234 and:0.05540858759821703 The:0.03273515726769502 tho:0.030061875542463562 of:0.020144331424922633 tbe:0.014929647509541684 in:0.014268129706664795 or:0.013333166761078447 .:0.013287381914101323 an:0.009000188755386574 to:0.00880680429595084 :0.007943763822197133 Mr.:0.00773879605474787 by:0.007328417831573476 as:0.005922572098978465 for:0.0047526933692942485 that:0.004736121968310169 on:0.004594595720579333 :0.2713091226890862 +it:0.26699546913764327 It:0.210051251292367 which:0.048204554996197455 that:0.03879371264277557 there:0.03726249046179278 he:0.03715124089690024 what:0.029521827362216115 This:0.025699484483067143 and:0.025096880297236515 this:0.02239339123238466 who:0.021059536931767733 He:0.013082051519491456 as:0.012819186593181774 work:0.008832482491635908 There:0.0079597652338973 notice:0.007295613925805886 That:0.006873271976363465 than:0.006804313783062447 one:0.0064842686454779745 :0.16661920609673528 +and:0.1695703258104445 to:0.0810088539059736 the:0.0807063083591236 of:0.033703932516015805 will:0.02793128197344877 that:0.018138341275625462 in:0.01723073297247617 he:0.017046514106523244 which:0.016289998247885285 a:0.015168572663731101 they:0.01399217767443493 I:0.013017228114602064 would:0.01219740907888312 an:0.011166797135654296 con-:0.011151366132898625 re-:0.010520516341944204 not:0.009570635077239124 as:0.009561101473992372 or:0.009509545437573467 :0.42151836170153023 +a:0.2814324744659879 the:0.26708614783090573 of:0.08009559950383918 with:0.04462622176646893 this:0.033774116374293 and:0.028532776821348003 in:0.026360425907929023 A:0.022444675397036366 so:0.02093199359460009 The:0.019149403994929044 very:0.016309753049326525 that:0.016268997138530094 tho:0.015173986215543563 our:0.013861980341371816 his:0.013281661277999469 two:0.010840631459609633 by:0.010649094696753065 as:0.009148804972145963 for:0.00869612027390667 :0.06033513491747596 +him:0.02346330166566789 ;:0.013993117901978207 man:0.012063973158208985 him,:0.009909121800163739 up:0.009718454247617242 and:0.009483607636828621 himself:0.008708172500287844 in:0.008383704791678692 man,:0.0074619430074121034 it:0.006727629907354967 he:0.006463016531639386 .:0.00621915130927209 time:0.0060721975060543465 one:0.005851681181497556 to:0.00584951612224459 out:0.0057405518294329876 it,:0.0055790022104404615 on:0.005073440824683246 hundred:0.004882599142558921 :0.8373558167249782 +no:0.5903434942907201 a:0.1927331276830441 any:0.03491512496904188 much:0.03319726067804986 the:0.029008829222544198 and:0.014354845481222584 some:0.01223111565017012 for:0.010483556261786264 this:0.009738248916564902 very:0.008694228921594624 of:0.0071230614392557646 or:0.006143626169514969 every:0.004929240823302645 so:0.004635858175335228 was:0.0045439625385283 that:0.004426366563330937 is:0.004395247371513749 little:0.0042874494840736965 No:0.0037446528635675836 :0.019070702496838454 +went:0.12780283653852206 came:0.07148574298164981 go:0.064709289930657 come:0.05942221526164538 sat:0.058838613884493636 and:0.03771255914318809 it:0.03572914379301778 way:0.03292366810309371 them:0.031875746771561714 put:0.030821888962797358 set:0.028273454296546076 brought:0.02824403594619258 going:0.02790727125798864 laid:0.027759287844310927 handed:0.02562316889933136 him:0.025101931914424624 was:0.02062812649128493 lay:0.01906478994799789 sent:0.0180405279562779 :0.22703570007501855 +of:0.13084814232797154 in:0.0740836656586379 as:0.0625527229231004 with:0.059577596335708534 to:0.058433603729754965 is:0.05551580107464621 and:0.04946529489577619 was:0.04264000753602388 for:0.04009673021586375 by:0.037684080471064085 be:0.023941707008899252 on:0.02316059851167503 at:0.022644769441950232 such:0.019950936521181326 that:0.017856095877642635 like:0.017386655618315594 In:0.016902219705578994 from:0.016046571451088905 not:0.01205910100844263 :0.21815369968667797 +the:0.3803531917663247 of:0.1459826141739245 The:0.06727053509019726 and:0.04823521860613534 this:0.03352290384949226 a:0.030320017990018662 tho:0.020698869074776662 his:0.015127037310474573 their:0.014301246416181749 or:0.013964104472524908 to:0.013725518593029519 new:0.01273674798748038 at:0.012457238807291503 in:0.012139549604068116 that:0.011900906884577612 our:0.011387272268720529 other:0.009875329894449744 tbe:0.00893016005252188 its:0.00843854869108786 :0.12763298846672225 +in:0.11951102313308976 of:0.11014772650251237 for:0.10485726409765272 to:0.0791495685087528 is:0.05891660324053458 with:0.0526789202727635 and:0.050740833848016184 as:0.044130743202273316 was:0.04247547916707305 by:0.03915415255278629 at:0.027770434152481527 In:0.02649590936916266 such:0.026456752215040933 that:0.02274146168476471 from:0.021244765741367775 into:0.020599174439913184 on:0.017659810794076494 be:0.016832814611790717 made:0.016703503824829196 :0.10073305864111823 +they:0.2736884723693553 we:0.08637191415927332 They:0.08025113846201493 There:0.046606212775662764 and:0.03582054525922896 You:0.03499035304620384 who:0.034749598447451145 We:0.031257039721914424 which:0.029879832916395573 you:0.02834401127685333 I:0.02489594310288324 he:0.0192967127206009 there:0.01620827370359691 it:0.015059465064740431 that:0.011974016401795564 people:0.011056237407555129 men:0.010417919522983389 wo:0.009964770782861732 thoy:0.008460126820154085 :0.18970741603847502 +to:0.45984914892606726 will:0.07432710031956848 not:0.06888609667351307 would:0.048873395018437404 and:0.03714582407566848 the:0.03026115651699997 should:0.027710661087893853 shall:0.025550925407784916 may:0.024958657616270762 must:0.02459679212034067 can:0.024478704964191716 could:0.02119077788879875 I:0.010382629937609357 cannot:0.009012902247287777 might:0.008704667749551474 which:0.008572910165839344 that:0.008416597198181424 or:0.007536754313016056 this:0.006683110233221951 :0.07186118753975727 +:0.06532752674681869 it.:0.011623255947565055 .:0.01002746775783904 them.:0.00910939216565627 him.:0.006472448282312691 time.:0.005236651278492517 day.:0.004690146370035092 country.:0.004540303982468919 year.:0.004253106987099478 work.:0.0037945597510142394 years.:0.003673180594001475 city.:0.0036521549639705934 life.:0.0031016073232979354 of:0.0029698252665483886 world.:0.002959154050672287 people.:0.0029104106833352625 place.:0.0026757641607530512 out.:0.0026650971133206514 water.:0.0026352036677940458 :0.8466827429070043 +of:0.15024263323249473 as:0.0723063884904754 to:0.07106696574089044 by:0.06884160641665096 is:0.05493036263106971 was:0.05405663704712489 in:0.052349030151685384 with:0.048625964972322924 for:0.046934332971372054 and:0.04031877813242852 that:0.03303935040869554 be:0.032795000713224755 at:0.02471914678152053 have:0.02283662111296696 made:0.021758862361960524 such:0.021734572787752017 on:0.02052539487157566 had:0.019642783810354173 from:0.013620594413369791 :0.12865497295206507 +and:0.12148587453796621 of:0.11725418913317612 to:0.10151161355536946 the:0.09342685526212698 in:0.04858082441555467 at:0.024325655755454027 by:0.019777023317395975 for:0.019533452077647635 with:0.01915631787404724 a:0.01589042472714422 or:0.013535787147315305 In:0.010153197565983207 .:0.010090293303316199 :0.009841057283562406 on:0.009192437291597357 that:0.008414010894688888 from:0.008341493130327558 as:0.007616100979424663 I:0.006856426094746286 :0.3340169656531556 +and:0.08995317707915026 to:0.06844710404109794 of:0.04605142056172993 the:0.04074574508561307 which:0.02479116931334353 that:0.023764822140213245 re-:0.020841117231308055 in:0.020803825395358622 for:0.020278423301550053 :0.018417753428486977 not:0.016860793136637672 con-:0.016444405871234195 is:0.014386481772210856 or:0.014080680914153714 be-:0.01352268143271276 I:0.01317002660943805 was:0.011429878269381662 dis-:0.011196807025842847 he:0.01113106290024311 :0.5026826244902934 +of:0.22819323805221886 in:0.1781912614549308 the:0.11010131816013781 to:0.04052170666174639 and:0.03709124630226329 In:0.029619636849215602 said:0.028616153007239308 for:0.023796505892746456 from:0.01560982074856243 a:0.014108595148115527 at:0.01256706612696725 St.:0.010458677312901838 or:0.009445935893165053 as:0.007325845643477358 The:0.006834622668368659 by:0.006774650410158218 this:0.005972398337736937 .:0.005839581556232619 on:0.005830864466823263 :0.2221008753069923 +of:0.13084814232797154 in:0.0740836656586379 as:0.0625527229231004 with:0.059577596335708534 to:0.058433603729754965 is:0.05551580107464621 and:0.04946529489577619 was:0.04264000753602388 for:0.04009673021586375 by:0.037684080471064085 be:0.023941707008899252 on:0.02316059851167503 at:0.022644769441950232 such:0.019950936521181326 that:0.017856095877642635 like:0.017386655618315594 In:0.016902219705578994 from:0.016046571451088905 not:0.01205910100844263 :0.21815369968667797 +and:0.09631219532671687 was:0.03513566928966104 held:0.02987715681559008 Beginning:0.024332169066967536 is:0.023122938489353394 look:0.022074108253454683 arrived:0.021820518428646088 that:0.021226918252779888 interest:0.02006974641058921 thereon:0.01971421054267379 made:0.019401567074562896 are:0.019271449916013022 up:0.01806602795372081 him:0.01678700722897829 be:0.016375054451444982 but:0.01586396852970274 out:0.015503094089883073 or:0.013721423267833084 not:0.012734170433403743 :0.5375906061780248 +away:0.05746860598250849 and:0.04985561698690421 taken:0.03950823995165392 miles:0.0355312759828073 feet:0.031845900191456514 come:0.022313957473317422 them:0.021637161013586904 out:0.020621546731341717 came:0.02000539576637417 up:0.019820502682224503 him:0.019195504147748815 received:0.019046714556510396 far:0.018152378296247898 removed:0.017489734983720518 down:0.017467467859455896 it:0.015386533775439217 years:0.01424855034507225 annum:0.014237643714946796 free:0.014107989586278378 :0.5310592799724048 +the:0.4942835200948446 a:0.08061649840347145 of:0.0409612623858822 tho:0.030736528627866952 The:0.028876106340354566 this:0.025804400808729307 our:0.024858101026788745 to:0.022804138093083653 his:0.019900297665699892 their:0.01603440853346787 tbe:0.014763210607294616 and:0.013311228690215747 by:0.011280259627665644 other:0.009143286919458666 its:0.008806633240060318 per:0.008588725302379804 your:0.008561068319080191 these:0.007484777526467634 that:0.007147619127229669 :0.12503792865995847 +was:0.24924813356901565 is:0.18780569393420626 are:0.08589495013026721 were:0.06141874463448432 brought:0.044310061585771034 and:0.034489897573204975 be:0.03326133589815626 Is:0.026637337973473247 been:0.023322827971735748 bring:0.01829278825485065 from:0.014564844252412742 being:0.014176480787904072 of:0.01192102445892714 all:0.011656101388232191 go:0.010546877414058145 went:0.010471007709443704 it:0.010228940854485473 only:0.008633101360028974 thing:0.008564341395531513 :0.1335555088538107 +to:0.2298933985427852 will:0.22915129993976044 may:0.08858144316689295 should:0.08365483538970553 would:0.0706847439850751 shall:0.060782999835396694 can:0.042735447739641406 must:0.04254608899167787 not:0.0341411645555034 could:0.02755168303339104 might:0.014590516367160833 cannot:0.012529680663754887 and:0.008559965477794551 it:0.0041812431109269155 also:0.003624710374146508 never:0.00281444769453033 soon:0.0028010019341199043 that:0.002332747224764159 then:0.0022895016095983156 :0.03555308036337394 +that:0.3104173760916573 and:0.17633184171112498 but:0.05374250596547241 which:0.028570188309983504 as:0.02526597692733274 if:0.023744811202940964 where:0.022688322316839912 If:0.020312753302665944 time:0.018478719449383566 But:0.018102233701882058 when:0.01509323648486278 Then:0.013525189258333119 because:0.010585883564287227 then:0.009801589505753437 That:0.00818100272863356 for:0.008159162420800115 it:0.008112728264774934 than:0.007374416385241485 while:0.006382582442070641 :0.2141294799659593 +the:0.15478826025910952 and:0.10422716674793749 of:0.07550860491351176 to:0.05250431191512076 at:0.04711611282950346 a:0.02136238913872761 in:0.017930216891095883 on:0.01667034260319239 :0.013138916540856969 for:0.012394786091474513 .:0.010738922906649425 or:0.010258151696864436 by:0.009199358977245269 his:0.009181358477662653 The:0.008974559611670012 tho:0.008870262363084155 with:0.008720374360227377 from:0.008437229032548198 that:0.007806710417426044 :0.401171964226092 +the:0.16298721714060882 of:0.10382648153966391 to:0.07825154772168183 in:0.06599271699036431 and:0.05954691561450026 a:0.02553812797063152 or:0.020945936338670014 In:0.01745812220195236 from:0.016062449641794013 for:0.01562967293442953 be:0.01549570064958291 with:0.015105091288378681 on:0.014698199701711236 by:0.013952513538587485 The:0.013844603461429999 was:0.013065090423546612 that:0.012405199105610693 at:0.01182476878523129 :0.011680577603159943 :0.31068906734846463 +he:0.2748262052392041 who:0.10501836243229073 they:0.07694876701570552 I:0.06944786245036148 she:0.06505986603111459 He:0.04457230707260751 and:0.03583578996411138 we:0.02930414923517499 which:0.02205798939546608 that:0.020841014003674375 it:0.01909739662301504 ho:0.01633019353832026 man:0.015994439887959688 be:0.013162710090528678 She:0.011738913005450062 have:0.01016156111917469 lie:0.010001414033026196 They:0.009018537488099576 It:0.00843427448990855 :0.1411482468848065 +well:0.16624679865189324 is:0.08804906911709891 have:0.08591782985882336 had:0.06068947471363585 and:0.05159160143375411 made:0.04371219699048733 was:0.04098789130019682 be:0.03776122086988546 not:0.03649158788792375 been:0.025002132629265622 has:0.01996022917416306 Is:0.017599826003019164 are:0.016446290928225568 generally:0.014648166490288895 now:0.013554478338366689 make:0.01350302490178181 only:0.01275112222658187 un-:0.012245671443995491 never:0.012147298685734137 :0.2296940883548789 +it:0.13994313208697484 he:0.10843317118987031 I:0.10480572105777942 that:0.06648034519908522 they:0.06514103391887882 It:0.056958371452905776 which:0.04483444718652314 and:0.03882559636324975 we:0.029690090124236998 you:0.028603973433955363 who:0.02681845365132848 she:0.02426791641473223 He:0.012741429170872325 1:0.011582591837840028 one:0.011490915643401486 This:0.010063249573845016 but:0.009377717797885527 what:0.009357012540825039 ho:0.009198787660140057 :0.19038604369567014 +more:0.11819347790772368 less:0.07508806887767878 better:0.061672918000996446 rather:0.04427508509886444 other:0.0413970456974767 higher:0.026798411400009915 lower:0.02579806293210229 and:0.023717520038205767 greater:0.019383319964037218 More:0.01830678967305065 worse:0.018254574511383938 larger:0.0176418382977351 that:0.012544079528651008 cheaper:0.012191696199402845 smaller:0.01191201252709796 public:0.0109448678068821 money:0.010601095194889424 later:0.010039936013990508 work:0.009883296099465875 :0.43035590423035536 +the:0.2205609448983468 this:0.1578262225616081 a:0.14510945748706988 any:0.06676586407113012 every:0.036924770475241474 same:0.036894182538826786 his:0.03404130247191818 and:0.026048484592239483 that:0.024847299918431823 some:0.024651404192146974 very:0.02281461256843405 no:0.01951483224878158 their:0.018111900127867796 its:0.017205691634614113 one:0.016268808798345694 tho:0.012384018575107647 of:0.012368590344337162 as:0.011843985300842132 each:0.010134527760279597 :0.08468309943443059 +a:0.18228894964000125 the:0.15864564673351 to:0.1286966729955331 of:0.08782384246675769 and:0.07304260123716788 his:0.031098382759852855 will:0.024383943279772856 for:0.02436331836461072 with:0.02383760065370017 in:0.02274405540472843 not:0.01496836933484488 The:0.013582462686585663 would:0.012923106271632626 per:0.012456614275844555 or:0.01223945457111802 my:0.012176310842530924 their:0.010501956305847663 at:0.009967544822482109 tho:0.008965568973812885 :0.13429359837966573 +of:0.19211248427941613 are:0.13520337076617023 is:0.08547014078170297 and:0.07668996289960539 in:0.06474853929519388 by:0.049555028155619095 was:0.04089413201222847 been:0.03278865861437964 with:0.032362059726515034 without:0.02846533562243825 were:0.025497080175323726 for:0.025092186063300617 be:0.024410297419034638 to:0.02196531980264803 the:0.018931543030639618 not:0.01700986950287572 In:0.01563950804722272 or:0.013921805846263503 so:0.013069130602640805 :0.08517354735678155 +the:0.16287760685838365 of:0.0883592780729449 to:0.0618987346693935 and:0.05423685233212741 in:0.030811253892523358 for:0.03057359609188714 be:0.025098115820027647 was:0.01826945122296575 is:0.01662970283289366 a:0.016448402520667066 or:0.01633619095301082 his:0.015510346299682681 their:0.015084175217362073 are:0.014656254371894712 been:0.013019491851438341 were:0.01267572744006931 that:0.012270302451397866 on:0.01131798809455223 :0.011150587255169986 :0.37177594175160794 +is:0.10976026867768006 of:0.10073737360298031 for:0.07057092827397772 and:0.0634483653429385 was:0.061505661324569444 with:0.05479863356797595 be:0.04753355467099741 have:0.04523524968040688 as:0.043762922192107014 to:0.0420502412722275 by:0.0387670604428765 in:0.03803859306332059 had:0.030873686804919264 such:0.026549395670679182 that:0.026019347573972777 make:0.02003438307555565 but:0.0198193111739629 has:0.017436119697223244 at:0.016884156754250725 :0.12517474713737842 +of:0.16509502297274187 the:0.05621587657013709 and:0.042420524405829545 to:0.03405780639755866 by:0.02752532540646758 on:0.01932282114025303 :0.01701021840421606 said:0.015603975539795398 from:0.013949474931218599 in:0.013712519590273194 a:0.013659792528721558 at:0.01129100928105059 for:0.01081118509607757 was:0.00846318003199039 that:0.008342995169565206 boy.:0.007283388729588151 .:0.007221284111195217 Mrs.:0.006722457021357221 with:0.006705904681991866 :0.5135852379899712 +and:0.07558940021936399 recorded:0.030196237618668006 was:0.028917161578042846 made:0.027969746247669736 that:0.027730098932509103 o'clock:0.025060522019555328 up:0.023026552239529506 is:0.020398277211376416 found:0.02003101797656537 placed:0.017482208134164214 out:0.016937164562539058 place:0.016819459500107596 interest:0.016629321966808677 him:0.016002796715253755 situated:0.01573420479581609 it:0.015128305982428461 them:0.014715943643665314 part:0.014646613000297721 interested:0.014450471929902294 :0.5615344957257364 +of:0.10693635379198409 in:0.10501391097291798 any:0.07408681209609409 the:0.07315868457231811 a:0.053791744129721215 for:0.05311906167041459 no:0.052834298571643686 this:0.03450000122111158 every:0.0342355986751893 with:0.02577175751903527 and:0.02567684713594907 to:0.025185838317174268 In:0.02358157778676154 some:0.0225447551175856 by:0.02148934509349458 such:0.020977085492277996 same:0.020686607787554216 as:0.018696925767568644 that:0.015522753336983953 :0.19119004094422024 +the:0.11392977680389905 of:0.08846259064902205 and:0.05348177218523282 a:0.04395715665752733 to:0.04261297149346951 in:0.023338177994176947 be:0.01963150953653559 :0.01669684074788262 at:0.015064914911668243 The:0.01343716963490001 by:0.01313524267330454 for:0.013102085369586368 is:0.012805659957951602 .:0.011887856513172786 Mr.:0.011849685851640595 or:0.011548612674048265 was:0.011306574297469679 as:0.010491002927136244 no:0.010187354038941955 :0.4620730450824338 +of:0.1355883265939114 :0.04172551900307098 and:0.03301276457055008 for:0.030216549941646298 the:0.030116282039621935 at:0.03010908607616636 by:0.026331118226579568 in:0.022577455015549634 to:0.019067013815114286 .:0.018770153124005935 from:0.018007811512159546 on:0.01449463025047751 that:0.013073223867308019 St.:0.011726615094778462 Mrs.:0.010432583481587689 ot:0.010241658873653265 min.:0.010239068015968505 with:0.009199004178238804 In:0.008932729440224179 :0.5051384068793875 +to:0.12022893700269083 and:0.09020394424291768 the:0.08587503820055309 of:0.06450042443224316 in:0.0310058468700829 a:0.017742048521183405 :0.015548046036689871 not:0.01491307651316237 that:0.014112408707955496 for:0.013734482372212283 I:0.013065769926808477 will:0.012848502316304782 at:0.012837991177321897 In:0.012628718855091186 by:0.012491091048660757 be:0.011425930130217754 is:0.0113962101007567 he:0.011342727513475473 or:0.01112522537451577 :0.4219735806571561 +of:0.2587101977839521 to:0.1074646170723038 and:0.07955689452181021 that:0.06729816200533369 in:0.0592843637129982 by:0.051820345455349796 for:0.03674881450102095 with:0.03029223073691283 on:0.028959835711520884 at:0.025199049323065197 from:0.024852092544429598 as:0.01980798770198669 all:0.014024711255091646 In:0.013538264400417558 which:0.012418437814347181 when:0.01102457136023744 upon:0.010365598014378414 is:0.010007136890905623 but:0.008130211565847329 :0.12949647762809088 +of:0.12918288459560018 by:0.08570279339002898 and:0.082715103489556 that:0.06549267578979238 to:0.06025657056884405 :0.025893298753060453 which:0.02115078400820272 with:0.017082237140131195 Rev.:0.015347801195652587 when:0.014804308450818659 but:0.010724516905267814 as:0.009396516544260651 if:0.009034332906673836 If:0.008294512636354966 for:0.006772799207337099 When:0.006245961951704721 from:0.006015669113268585 it.:0.004938348021416729 said:0.004693135532221724 :0.4152557497998067 +and:0.1501410472014398 of:0.11461811098032486 that:0.05963767386376711 at:0.05127157318740017 to:0.046122068126748024 was:0.042439910758537785 is:0.03984975263656119 with:0.03528545500428215 in:0.0317878359418395 for:0.02956010960993918 are:0.02827266528794556 by:0.02290231846361111 nearly:0.021795650760749123 were:0.019624641400519133 on:0.01891691223228495 it:0.01768649599890148 from:0.015586640496975196 as:0.011198787710753829 but:0.011124716247284413 :0.23117763409013545 +of:0.1606841137652724 the:0.14830119138934827 and:0.11587873363546534 in:0.05531854355644028 their:0.03515299224572304 an:0.03401865469759308 to:0.032732090520641244 a:0.031604028508342964 for:0.026817089024132983 his:0.01938416150520576 more:0.01882770769709424 great:0.01767341411203313 is:0.01695335900544608 with:0.015083952872374599 was:0.01455568573992223 by:0.01404105631133561 any:0.013808614096675907 are:0.01259583861365977 its:0.011419638064111066 :0.20414913463918197 +the:0.2025832057773946 a:0.09394602879627956 to:0.08949034231708433 of:0.08202340963811765 in:0.07148740194204788 his:0.05248082520281589 each:0.035602681354674585 and:0.02821758677880665 this:0.025868766865230302 said:0.022547674357188886 In:0.022079208450494294 any:0.018677910035533977 for:0.01739742332897881 at:0.01659743277507914 one:0.016088783905308438 their:0.015673122212019254 last:0.01440364802910109 on:0.013153635385339145 tho:0.013034708024341774 :0.14764620482416374 +let:0.10789455606578491 of:0.07344512704840749 for:0.04349894902761082 do:0.03979422237372424 Let:0.03680003778215483 in:0.025715866718008 will:0.023163490691592712 with:0.02226043884149708 if:0.021980245539210727 to:0.0211977734598569 and:0.020384490083227347 would:0.018563249623680455 make:0.018281370428275392 found:0.017168043958418214 as:0.017123788197031323 made:0.01692572669919171 that:0.016846744740622442 is:0.014682533867557725 have:0.013710851229237467 :0.4295624936249102 +the:0.1484733675966466 of:0.08420339073851978 and:0.06998774280498654 Mr.:0.054622560408444217 a:0.02867909644740287 The:0.02708494626456988 was:0.026007347125732553 as:0.025597566251017806 be:0.023097521131834192 that:0.01822604755865659 to:0.015232157868188777 he:0.014730716192413824 are:0.014648450541513827 been:0.013958613207662257 is:0.013840484017428285 were:0.013801853512372416 his:0.013641772494116756 or:0.01318805760269593 their:0.012216409148518053 :0.36776189908727885 +the:0.11919516938815296 of:0.07230453158552728 and:0.05781056740443249 a:0.043018564803886335 to:0.031305092790907506 in:0.020848713353460488 at:0.014270110001066288 .:0.012526810245749479 :0.012413283442322082 for:0.011719122709941797 by:0.010808400946589808 or:0.010404172990115616 The:0.01003576004804544 with:0.009811868184449042 tho:0.009295902015355835 was:0.008924239095331684 that:0.008672304223433876 is:0.0085591147338948 be:0.008335143826716943 :0.5187411282106204 +the:0.20569344145269766 of:0.1022968154324311 and:0.06632420513377023 a:0.046759711763092134 to:0.03464418277547291 in:0.031700507198744274 The:0.026104527144425682 at:0.020691059482747586 Mr.:0.014631276356624517 .:0.014450274752820961 by:0.013369823194714818 tho:0.013309632821382684 or:0.012701043392400982 :0.01177715415337642 with:0.010559888834606086 said:0.010069458564607338 that:0.010012300690314179 for:0.009611058838179334 his:0.009266726399281932 :0.33502691161830916 +he:0.09558569813045384 it:0.088382033768371 and:0.061249305165232686 who:0.040322485582787906 It:0.039221097818348184 she:0.03171211241204636 I:0.02819837094742803 they:0.02229568936113968 which:0.0200479529932797 He:0.019642667762746778 that:0.014870767818609463 have:0.014105007931404834 now:0.013932007320706387 be:0.01247179276497915 as:0.012081121132983604 day:0.011557688373966318 always:0.011427408515511583 this:0.011159372161866627 not:0.01091619395224714 :0.4398212260858907 +to:0.8090263947759345 will:0.016587625501541095 and:0.01595325127340357 can:0.013076744301546648 of:0.012037203327894208 would:0.008517488791102142 not:0.0078027930357066014 could:0.007683807628411751 must:0.005663351014297255 or:0.005239347135634251 in:0.005117035968549665 may:0.005107058689180454 should:0.004078088975277468 for:0.004050955474202295 shall:0.004002595925137241 at:0.0038012333941970337 on:0.0036397526682429705 the:0.00338228975106804 by:0.0031437040076829023 :0.06108927836098992 +of:0.11765737181713248 the:0.106802768912813 and:0.07323565981797077 to:0.051211999170975124 be:0.04110133823176292 is:0.04080695423269617 in:0.03700279180169096 a:0.03612176729007644 was:0.0330355104529622 or:0.018820855785419963 at:0.016751716297015766 for:0.015176707740745516 been:0.014767809686953168 are:0.014152676063881719 as:0.01343325765629355 that:0.01284555437507635 not:0.012647959280680849 this:0.011905014817972754 it:0.01188439457306453 :0.31963789199481574 +the:0.39111089719419273 a:0.0966199365694536 and:0.07391551840697178 of:0.05525427344326136 The:0.04197976765368609 for:0.040970484036566945 good:0.03250455907965337 in:0.02907524428003204 tho:0.0257234370130384 his:0.021901181174545575 their:0.016876987619805044 this:0.014418610499930717 said:0.012877520804776485 or:0.011303108623126893 large:0.010759366751397702 that:0.010725425366596054 our:0.010358629740335171 tbe:0.008984259085574101 In:0.008733794876213162 :0.08490699778084275 +spite:0.038017404187114835 out:0.0372686137516049 and:0.03570169315863753 that:0.02655890867341167 value:0.026090366280772923 part:0.024620158961039675 one:0.022785694164029972 sum:0.022119641127047777 amount:0.019859617002542403 tion:0.01811436175197411 charge:0.017458813565391796 payment:0.017448710700355818 account:0.017441337297585194 any:0.01673074464939334 names:0.016248397088161642 some:0.015729751533454937 end:0.015377415033100016 use:0.015376586282452533 people:0.015234020980039863 :0.5808177638118891 +there:0.1582168980118488 It:0.11396185331451554 it:0.11328316819711826 There:0.06790346559579204 he:0.06460396496994265 He:0.04157978287670769 which:0.04008242812973242 and:0.03776410415738553 This:0.03457875479038185 I:0.0318698174184132 that:0.03110199590994333 this:0.026125898881157506 she:0.017188619590964044 who:0.01639012046007916 She:0.012277898717888643 That:0.00688500840589777 as:0.006274254362772837 what:0.006162529938385108 one:0.005990026858995025 :0.16675940941207856 +and:0.06185932895872248 is:0.04067400014329757 was:0.03265010793566647 it:0.028573334225993712 are:0.020527109547362598 or:0.018817711067905054 as:0.015936857642550373 out:0.015792033053734538 him:0.015323309740787546 of:0.015252918691597431 :0.0146012457846855 in:0.014490547074604527 It:0.014045857065939754 on:0.013618050116257514 had:0.013229929276493314 were:0.012247516569562092 mile:0.011680845977926048 have:0.01078772300312325 that:0.010549821557646949 :0.6183417525661433 +the:0.39749834532651884 a:0.07520030034269234 and:0.05540858759821703 The:0.03273515726769502 tho:0.030061875542463562 of:0.020144331424922633 tbe:0.014929647509541684 in:0.014268129706664795 or:0.013333166761078447 .:0.013287381914101323 an:0.009000188755386574 to:0.00880680429595084 :0.007943763822197133 Mr.:0.00773879605474787 by:0.007328417831573476 as:0.005922572098978465 for:0.0047526933692942485 that:0.004736121968310169 on:0.004594595720579333 :0.2713091226890862 +of:0.15960345738363574 in:0.09698205209679273 at:0.07928423063027262 and:0.07169982705517693 to:0.06528305718011426 for:0.037849510418090766 on:0.03700187669839342 with:0.03421651771243882 by:0.029563729387437135 from:0.02915144472343935 In:0.027380192843244278 that:0.023991016820190687 as:0.019566728674166735 the:0.017546629934763757 upon:0.011938309923868516 is:0.01006405768279549 which:0.008091989672878575 are:0.007600789687998385 but:0.007547662496257125 :0.22463691897804466 +that:0.03505435050455258 case:0.025361455538050005 part:0.020184038200393016 instead:0.020156324338105602 years:0.01976036263978387 name:0.018600034289146663 favor:0.017669443818780262 out:0.017641532686166014 people:0.017572816273734068 charge:0.017347996185593247 line:0.016348310473937176 office:0.014029201384563093 sum:0.013879669603945939 capable:0.013870252128033533 matter:0.013526313058954874 purpose:0.013381236445364963 question:0.013074168596975522 and:0.012958334254267208 thought:0.012354739426810616 :0.6662294201528417 +and:0.1101051848745883 to:0.06901717849657887 as:0.04789402508947009 such:0.04148627389368303 of:0.03265391010414948 for:0.03039002034207835 in:0.027653007958022606 the:0.022278972962670077 that:0.021404503810268677 much:0.02014709849218031 be:0.017984131186543864 many:0.013455038084616044 more:0.010666469582810569 now:0.01040878964858901 or:0.010343138276376325 same:0.010076635502166245 not:0.009424583165230574 with:0.009363622004328267 by:0.009214866923513918 :0.4750325496021354 +not:0.3669437906233713 is:0.08369933996965243 was:0.08025086757797813 and:0.054163806341454686 are:0.041814526663327835 the:0.030962382807556227 be:0.0302842718799172 were:0.02752047000368375 as:0.025799752866208007 Not:0.02570163080634586 had:0.01763609476686558 that:0.016822660586580256 but:0.01530550335048108 have:0.015118205555399129 Is:0.013139862625493473 has:0.01180816980823984 been:0.01118810660489801 it:0.010263507005457449 of:0.009425132212890552 :0.11115191794419921 +Mrs.:0.09897168547074595 of:0.0831486837885996 and:0.03706777772366348 to:0.03108498776317509 Mr.:0.02748993121171143 Dr.:0.027333510366475088 by:0.027122650443124143 .:0.025705990800993665 Rev.:0.02107911007793218 J.:0.01658009236586841 George:0.012916228787918005 W.:0.012002060123522095 C.:0.011947580062767294 John:0.010978997051160335 S.:0.009157012031597668 A.:0.00906669971797087 N.:0.008865018492827554 F.:0.008648461275893223 G.:0.008301842117335916 :0.511531680326718 +the:0.11919516938815296 of:0.07230453158552728 and:0.05781056740443249 a:0.043018564803886335 to:0.031305092790907506 in:0.020848713353460488 at:0.014270110001066288 .:0.012526810245749479 :0.012413283442322082 for:0.011719122709941797 by:0.010808400946589808 or:0.010404172990115616 The:0.01003576004804544 with:0.009811868184449042 tho:0.009295902015355835 was:0.008924239095331684 that:0.008672304223433876 is:0.0085591147338948 be:0.008335143826716943 :0.5187411282106204 +typhoid:0.15596037478814012 scarlet:0.1285981207465945 yellow:0.04846284797225222 of:0.045410876233645356 the:0.04466241985204035 a:0.025876816395381422 in:0.024947011321817442 malarial:0.01867000188731196 and:0.017958130719509666 to:0.016020827226790643 with:0.012515206814223315 his:0.010677160675741072 at:0.010093197026520588 :0.007617341937826993 for:0.0071242972183373 In:0.0063269045197714485 that:0.005678820418026479 said:0.00524629851222094 old:0.005020740742789767 :0.4021326049910584 +the:0.14747317579422697 of:0.08969960687569191 and:0.08002288809402543 to:0.04018288925517698 in:0.038069034056462545 a:0.034447851134399 his:0.026243861016754164 was:0.017504724320044556 In:0.017094479622078555 Mr.:0.015549262855704193 be:0.014889239251186716 that:0.014292727471384912 or:0.013671713673569966 by:0.013608448145710786 for:0.012621338926358095 he:0.012559565867065125 their:0.012465751620385573 is:0.012137097840243853 I:0.011430039444749974 :0.3750363047347807 +an:0.42981215329056904 the:0.14169678655798493 of:0.05231981803143229 to:0.05122806497702168 and:0.040130330022213424 a:0.037435589136632336 this:0.02169665684031451 in:0.020775342963561275 such:0.01654910871783769 no:0.015520273832326154 said:0.013706479722435775 any:0.012553391901320366 so:0.010811157777792662 very:0.009841884607138598 The:0.009045256067198216 tho:0.008681017702072235 first:0.008534453002012216 their:0.00793448356630858 his:0.007484695277140037 :0.08324305600668802 +the:0.24629441634695928 of:0.06356542874956855 to:0.056309433401447846 I:0.04225181997773377 and:0.03765400871377993 The:0.024910962351343723 in:0.021564474331794283 tho:0.021425520064854923 a:0.019842305058575854 that:0.016688448349815803 by:0.016135215081173517 1:0.014612618609639454 their:0.012275605891477307 tbe:0.01128277416764709 all:0.010216332812068228 which:0.00992339853815178 its:0.009706929310067263 from:0.009388606444310285 at:0.008796547050585288 :0.3461551547490058 +the:0.09887223159513073 Mr.:0.08980775588805187 of:0.04071568495945835 and:0.031418348923874795 The:0.0304832271667895 .:0.024096524257362303 Mrs.:0.021095800614457257 at:0.01997411234021824 :0.017475312664857214 a:0.014760577595247555 Dr.:0.014347007890237214 that:0.013985309370624019 Miss:0.011954360737139336 his:0.010854787256652667 Mr:0.010828688624295906 to:0.008625036097811949 he:0.008177892510261612 said:0.008098573952842582 John:0.007905058165620307 :0.5155237093890667 +the:0.24707385173612995 a:0.15149821378906697 of:0.12635655040564836 and:0.05715725741044514 The:0.0363476508049067 for:0.019744274330602437 to:0.019360894789169837 tho:0.019337976846672173 with:0.016754564315698273 or:0.013372978252572427 his:0.0129703296063153 their:0.011795549086135173 by:0.011286311660899277 that:0.010925065756041543 our:0.010723706818765687 in:0.01018066910082234 two:0.01001861326142596 other:0.009560606462678065 tbe:0.009457854788563806 :0.1950770807774406 +have:0.29107381093690243 has:0.2795380203628823 had:0.1724168362164204 having:0.09666843497026188 not:0.029801484966142905 bad:0.011576747354553713 lias:0.011106285960776742 ever:0.01033463283838178 never:0.00945733827049804 havo:0.006732756117605086 already:0.006378795049768243 yet:0.005672351731959459 always:0.004890635659923691 haa:0.004141899846835046 baa:0.00401471945511243 long:0.003354457594713638 recently:0.0028830145186813155 just:0.0028200139487755244 bas:0.00251753300750186 :0.04362023119230359 +the:0.3052593566853202 in:0.07664075586990379 of:0.06895175292216624 this:0.06236204807395261 his:0.05302395720052471 said:0.03731779598561282 an:0.03167821041334329 or:0.03072484499913168 post:0.029490914971155323 any:0.02922134471854664 their:0.020347000304783446 to:0.018887202816817897 such:0.018043255172891483 and:0.017976694156638197 In:0.015175247848390402 for:0.014869057788531667 clerk's:0.01475649325155857 my:0.013862923305221254 tho:0.012406890895994565 :0.1280042526195152 +and:0.09145983205284636 was:0.04435417486601411 committee:0.02681310386471472 made:0.02592039333560251 held:0.02476686580275231 up:0.022119841490898365 called:0.022019842068027436 placed:0.021137428651723755 taken:0.02063033440609245 put:0.01843003245179168 one:0.01832190145631342 went:0.018073512144347336 carried:0.017454371244602373 place:0.0170318256112707 work:0.016589932017622946 out:0.016153093407654712 set:0.01603819535611564 is:0.015904296900095243 house:0.015849833461208027 :0.5299311894103059 +of:0.16583543392029756 and:0.07110200029382453 in:0.06466688388232908 at:0.04360805226510415 for:0.03846063724260797 was:0.037632000320958724 to:0.025762676222036762 In:0.023305367705118013 is:0.022231310802392927 on:0.02197690031402012 from:0.020409615446487304 only:0.018012071536582124 or:0.017887732971259854 until:0.015040967037384325 with:0.014607368144304281 brought:0.013854340549994553 up:0.013326513438595906 are:0.013213413545233279 within:0.012898046599872624 :0.3451686677615959 +of:0.12369162555335125 the:0.09887890583611332 and:0.04796841821456046 to:0.03554994387688121 by:0.03228443377902158 for:0.02982957888188196 in:0.027205217693048685 :0.025508825261934293 The:0.014277982596665779 with:0.013938244362410425 said:0.01321662094126846 a:0.012331934128564172 or:0.010219225307196569 that:0.010000775640522555 from:0.008694193890798676 as:0.008659761841685144 on:0.008046502283502961 States:0.007648388058729742 no:0.006726074387874625 :0.4643233474639881 +of:0.2256472861262339 that:0.168485879624869 and:0.0862431617701665 if:0.04898711616577818 but:0.0420026224621836 If:0.037967163264255394 as:0.034697282344558225 But:0.032394385966485036 all:0.028424417591692595 in:0.026469523034349234 for:0.02546164662197915 to:0.023102793204197832 which:0.019858600579522795 by:0.017906324352452985 than:0.014898239008869692 when:0.01405501942211652 And:0.012158273616264991 with:0.011470587407042467 do:0.010909031280005628 :0.11786064615697628 +and:0.08995317707915026 to:0.06844710404109794 of:0.04605142056172993 the:0.04074574508561307 which:0.02479116931334353 that:0.023764822140213245 re-:0.020841117231308055 in:0.020803825395358622 for:0.020278423301550053 :0.018417753428486977 not:0.016860793136637672 con-:0.016444405871234195 is:0.014386481772210856 or:0.014080680914153714 be-:0.01352268143271276 I:0.01317002660943805 was:0.011429878269381662 dis-:0.011196807025842847 he:0.01113106290024311 :0.5026826244902934 +who:0.09733203937513775 I:0.09044197164959199 would:0.08996220583542408 they:0.08617541311576471 we:0.08161638352587204 to:0.08044777595655755 will:0.03751927496048352 We:0.03527608350749505 must:0.034594840357994816 and:0.03107968803409459 not:0.03098105947078436 might:0.0284719251825434 you:0.028053357969609862 should:0.027976870171027696 may:0.023528154160905024 shall:0.023021623192145776 could:0.02165881215449607 They:0.019992111246389856 which:0.016610260653677537 :0.1142601494800043 +of:0.2765527684707987 to:0.099277347204585 in:0.08284849083920927 for:0.06092542069645239 and:0.05253123105078995 on:0.0474638838512486 by:0.04581755260638163 that:0.03332237453478865 with:0.03210256542079527 at:0.026845009482528465 from:0.024295655005789465 In:0.017738319900659626 upon:0.011846979409631767 is:0.010199560737152582 as:0.009873397215210435 before:0.009123546844860062 all:0.0070106529326364134 was:0.00658563455473705 but:0.006074493048617749 :0.13856511619312697 +and:0.08995317707915026 to:0.06844710404109794 of:0.04605142056172993 the:0.04074574508561307 which:0.02479116931334353 that:0.023764822140213245 re-:0.020841117231308055 in:0.020803825395358622 for:0.020278423301550053 :0.018417753428486977 not:0.016860793136637672 con-:0.016444405871234195 is:0.014386481772210856 or:0.014080680914153714 be-:0.01352268143271276 I:0.01317002660943805 was:0.011429878269381662 dis-:0.011196807025842847 he:0.01113106290024311 :0.5026826244902934 +the:0.1565794459449207 a:0.08234548261333856 and:0.07720907653907319 of:0.06815022532093808 to:0.06283283719836273 at:0.04202968455857854 in:0.034269846130226385 his:0.029967201473919878 her:0.020070673397264954 for:0.0189362948386193 their:0.012645309488893582 .:0.012351775581070553 was:0.011983985703093194 with:0.011824143432971546 an:0.011810132371951654 from:0.011616373971975819 tho:0.011350183711981142 by:0.010350882167150159 on:0.009546660909899685 :0.30312978464577034 +the:0.12770449798329372 and:0.07676572475370608 of:0.045123471847714265 in:0.03559805491100109 to:0.029000539712499895 that:0.02693772677493349 which:0.017521055946676356 or:0.016592138577364267 :0.016494861857150826 for:0.016241026064322595 In:0.013348767892415715 he:0.01269890896992827 this:0.011944397841347432 dis-:0.011145096867037988 re-:0.010450122709738998 a:0.009780095818039987 Mr.:0.009558468159733392 as:0.009302926958874724 be:0.009211136467832724 :0.4935809798863882 +of:0.09436177618943974 the:0.07203385744133035 and:0.07023710545249345 to:0.0580958389683864 in:0.030143065570300633 a:0.029298962338239646 be:0.028092312899123905 is:0.02591700178853245 or:0.025914628752245154 for:0.025850613219593047 that:0.02057646217407689 as:0.019131745941374338 was:0.01739084610488821 :0.014250965737921638 it:0.013575421463494832 which:0.011521286481796345 with:0.011498902946844783 he:0.010985052533162032 in-:0.00910545425749983 :0.4110186997392563 +it,:0.020066250729468618 ;:0.018463310008504038 them,:0.014025162533758715 it:0.011994110429603987 him,:0.011236128826773334 him:0.009471149609493692 time,:0.009203551806326591 country,:0.007751046760039575 up:0.007740391441548338 years,:0.007710582374234828 people,:0.007077270634756562 up,:0.00706191553698371 here:0.006838778546039603 States,:0.006822957880501987 them:0.006450399552461554 in:0.006294703052973352 time:0.005982962242141434 year,:0.005863359520135046 country:0.005761171033017349 :0.8231847974812377 +the:0.261791649207653 a:0.11241238692475156 of:0.08558971877027118 and:0.07056908753556436 in:0.037893410379194435 The:0.03444122966615215 feet:0.024232151993390558 by:0.02030421124804737 tho:0.01709533821943989 his:0.01671902620752135 from:0.01603374440312988 In:0.015585879411268495 that:0.014227691525075426 to:0.011754486672262044 was:0.011539379503068123 on:0.01103689941020092 as:0.010897766619300288 or:0.010844325499884025 their:0.0102347685028697 :0.20579684830095524 +wait:0.06412287458529604 and:0.04974098612473603 there:0.030813914887362372 waited:0.026056538432070914 not:0.02563367685332416 her:0.02469529805141026 them:0.024282252247849734 continued:0.02327962403063428 day:0.019677317902551065 it:0.019580240021670116 him:0.01921059262370782 year:0.018908853019039655 years:0.018256961855886336 morning:0.01808462646736581 time:0.01789693442167559 here:0.016703787494692975 postponed:0.016026653135645455 office:0.015018408426090573 up:0.014364476752689669 :0.5366459826663011 +the:0.08106780792573746 to:0.0626492011493388 and:0.06175504486712792 of:0.0507728096446055 for:0.035336755262527324 be-:0.02891446913380084 a:0.022604104609716097 be:0.01957812554948142 that:0.01689603035900372 was:0.016284566682199623 in:0.01603092077386054 is:0.01596959337122134 will:0.013641948698975179 re-:0.013232195621532921 :0.013229103544436814 not:0.012938073192968065 are:0.012898613365070848 at:0.012392432378899802 so:0.011502510142305068 :0.48130569372719073 +of:0.20042873720632537 a:0.06777625918273879 the:0.05792878128146836 be:0.056591450487314836 as:0.054735797343198125 and:0.05072381974354967 for:0.036684764162479906 in:0.03603426499364731 are:0.03239232335558471 with:0.03233374276685553 to:0.02872326080083615 his:0.026021158617531053 by:0.02519422658604432 is:0.024385462630653266 so:0.02398492048840595 was:0.020362338790666214 been:0.018538869676386606 their:0.015804003237868687 were:0.014079609454344161 :0.176276209194101 +the:0.09684081064840576 and:0.06551335624548284 of:0.05146145169206151 from:0.049520598669154245 a:0.045427902131977435 to:0.0370403239153822 be:0.035669151526387034 was:0.030489628475080553 is:0.026635804908522978 in:0.023878514238638158 are:0.018513936943033917 not:0.017945708099223703 or:0.017556265685966497 been:0.014265228721347686 at:0.013857211504087178 he:0.013733215789660087 were:0.012396679125422956 I:0.012347944480187516 for:0.012197989992860347 :0.4037082772071174 +that:0.20335541366862905 as:0.09376767366927041 and:0.08618064622798619 if:0.08330578756942747 which:0.08228018107630516 when:0.07518959552811179 but:0.04742065808228711 where:0.04725946090405742 because:0.029007375452612498 If:0.026893867049720622 until:0.024425698653267686 what:0.021288580890435112 though:0.01419221646561565 whom:0.013078362013940201 while:0.012519024981993037 for:0.01242554401047497 than:0.011407258640776054 before:0.010985850438729149 When:0.010885931187282328 :0.09313087348907807 +the:0.11919516938815296 of:0.07230453158552728 and:0.05781056740443249 a:0.043018564803886335 to:0.031305092790907506 in:0.020848713353460488 at:0.014270110001066288 .:0.012526810245749479 :0.012413283442322082 for:0.011719122709941797 by:0.010808400946589808 or:0.010404172990115616 The:0.01003576004804544 with:0.009811868184449042 tho:0.009295902015355835 was:0.008924239095331684 that:0.008672304223433876 is:0.0085591147338948 be:0.008335143826716943 :0.5187411282106204 +the:0.1633787884954577 and:0.10689865506639007 of:0.09120826494659069 a:0.038398769742463604 to:0.03400672039458527 The:0.023579803937126834 or:0.02294401858453354 Mr.:0.020363044693328034 that:0.019473005305830085 in:0.015920088507328158 be:0.015008506419697571 are:0.013320513550872465 his:0.013070114203755331 tho:0.01303841585938567 as:0.011965399141589311 at:0.01181724261831501 for:0.011785075649860179 :0.011508532681904656 is:0.011236630111140322 :0.3500784100898455 +the:0.1646755680101547 a:0.08892495579147862 of:0.0828731408097041 and:0.053353318379609174 his:0.052561483780004734 their:0.04204984807054518 her:0.021522603252810524 more:0.020344655499920872 or:0.01892362440759845 so:0.018827642515559018 little:0.01740229602878358 as:0.016891709877525 no:0.01586967098430748 two:0.015324839523549216 other:0.013879690561318258 our:0.013850121123213691 my:0.013540242129429092 be:0.013503014880296605 some:0.01308302309176513 :0.3015985512824266 +that:0.2256871171032036 and:0.19930488239513336 but:0.06745262964340179 as:0.05886427158600607 if:0.04859859981457123 which:0.03447126660995012 If:0.03112853201235846 where:0.02904154717202389 But:0.025141909646087177 when:0.021856609683108656 Then:0.013501190972854682 because:0.012561294822002368 while:0.012448622397862952 though:0.010702719797682465 And:0.009497483083679675 yet:0.008791147909762313 then:0.008386756588468817 for:0.008200958550189258 time:0.00793138172843354 :0.16543107848321956 +out:0.05941904963054598 one:0.054824042063606755 some:0.05247794090323687 all:0.03926190883783565 part:0.035496978464792696 because:0.025099630466577632 account:0.024761806092616793 many:0.023799186613584284 and:0.02140242809025699 that:0.01934844095643571 portion:0.019105006248878457 value:0.018257503974032613 use:0.01686640358385487 time:0.015610548615003978 amount:0.01525203957993562 tion:0.015055978834802522 cause:0.014538196289420737 any:0.014448371559742294 members:0.014218034247347602 :0.49975650494749196 +and:0.13666364985817683 that:0.10723287617922309 as:0.08795200382331987 which:0.06583870311693829 when:0.05803042560475274 but:0.02958490718184383 where:0.024191040538844234 if:0.022833174414182793 what:0.017971872746654353 whom:0.01520325617908728 for:0.014863924742738267 said:0.011731478008542781 Then:0.011489603880492735 to:0.011284746654271115 time:0.01113012349030607 before:0.0110802195573618 If:0.010266607567844102 while:0.010041689914080864 When:0.009507428184602332 :0.3321022683567367 +went:0.07347627007125598 go:0.06414110044393301 put:0.0581132777011308 came:0.0542930879814245 divided:0.049452585605213976 come:0.03285222886724928 enter:0.03119917093820533 brought:0.028831800665646223 it:0.028559965964088427 back:0.027225512485213793 get:0.02689230926480947 fell:0.0251349704387278 taken:0.02485658723189737 got:0.024097640924352542 down:0.020988829447565756 out:0.020320273338418498 entered:0.01962066389331406 them:0.019597887590346363 feet:0.017830219249233933 :0.35151561789797287 +they:0.10382520921632693 and:0.0668106224350547 there:0.06657690751130357 who:0.0571547579489435 which:0.05081128030506264 we:0.04942713534369061 They:0.045707944628039274 These:0.03755889567968884 that:0.03649004084159322 There:0.029568767743076638 you:0.025448347792220827 We:0.019636484770042702 men:0.015271550180411906 people:0.01369088954017746 as:0.0128196184286318 these:0.012491742056365612 them:0.009576457994104148 what:0.008320040529565156 Here:0.008156132407751513 :0.32965717464794897 +the:0.16933117207716372 and:0.10056404559289744 his:0.07863053845610746 of:0.07086936998156769 their:0.05367799068376705 her:0.04114084100742777 its:0.03857744944668238 on:0.03546720983080949 in:0.03362459324107144 my:0.02567439275203373 to:0.024056094495236012 for:0.02206817243795734 with:0.01751364023380588 all:0.017413013192949613 your:0.01738053800132699 our:0.013981406312325998 own:0.013775633369930873 great:0.012991712478326305 good:0.012813991739649477 :0.19944819466896335 +well:0.15549854064699364 soon:0.0719740741047895 known:0.05924995646088724 far:0.05301022791079092 and:0.04935099305764579 long:0.037229383559338323 just:0.02822257828625174 such:0.027673603492105153 designated:0.01922456279169376 is:0.014103478445821976 much:0.013593718489024485 that:0.012836503436053116 was:0.012355298185601995 Just:0.011204982020907556 large:0.010266495347778725 be:0.00995308178865017 high:0.009781205835850959 same:0.008991546094626955 but:0.008297153590866982 :0.386182616454321 +was:0.16106320075916128 and:0.09898958926841255 be:0.0961749594765891 he:0.06508857246282383 I:0.05898225698225772 been:0.054668885379659915 is:0.04432453288185835 were:0.04254587707954247 are:0.03786474202395315 He:0.02846553284303195 have:0.015637333013373708 being:0.014571209973122496 had:0.014196156527174219 Is:0.008900415285834847 she:0.008583628214902331 lie:0.008390743851737074 1:0.008216742045408277 as:0.008070861445136973 the:0.007357400160007738 :0.21690736032601204 +of:0.24445936295929127 the:0.14809167386825134 a:0.05482173332709667 to:0.04770000116475298 and:0.046051526562126514 for:0.03901678285068605 by:0.0370753505566622 in:0.02794365825007751 with:0.01979464571862959 that:0.017841356630756568 as:0.012601721186803463 or:0.011462180628348237 The:0.011159577974758183 from:0.010174448254282695 :0.00998681829419544 In:0.007813423437181267 some:0.007782182559924121 at:0.007679830796954116 on:0.007414394701420141 :0.23012933027780164 +of:0.2695218467017479 in:0.11329956999985646 to:0.09620263600253479 for:0.0649412526678995 and:0.05114250900831807 with:0.041591231383828746 all:0.040282778372434304 from:0.040102321613143414 by:0.037950841583527815 that:0.03224775280734443 on:0.0251611025767795 In:0.024310963572059176 upon:0.015675742069220212 under:0.014238048866051685 is:0.013728117967672255 as:0.013452925149045522 into:0.012418050462023053 at:0.011402587832170899 through:0.008459486516027938 :0.07287023484831434 +and:0.14811888147455723 of:0.06238648029788718 fact:0.042117582116561934 all:0.04158493525094499 than:0.026114951311864202 so:0.024960980422942227 manner:0.023346329341694217 in:0.02309064980667523 is:0.021800441798466685 to:0.019226568206894216 means:0.018040101356252013 say:0.014942780438309905 said:0.014735584468310938 for:0.014426358393284908 as:0.013408248444748335 but:0.01327790245549242 that:0.012960188493095555 from:0.012202621735893482 with:0.01204200597796681 :0.44021640820815755 +come:0.14329395143587198 go:0.10823667518136072 went:0.08683460169965389 came:0.07695738972958625 them:0.04526926589578855 it:0.034458971918767324 was:0.032303794662123415 him:0.02878207246040919 turned:0.026462039574641005 going:0.0256822775518914 blown:0.02397491061549367 set:0.023860109194677008 cut:0.021476117927952308 taken:0.020362649662416188 miles:0.020244839296502237 put:0.019272850409598075 get:0.018868098500308322 knocked:0.01836764383928565 coming:0.01734118084769447 :0.20695055959597836 +an:0.2665898020933161 the:0.24029073587839248 to:0.04074155587956936 any:0.03307829018048727 and:0.03159387490323761 a:0.02222073726981384 The:0.019813577360760344 this:0.018427879729748686 tho:0.01716296396457341 his:0.016903738966912996 no:0.013267102389015052 one:0.012665261194080315 I:0.012584822958139537 her:0.008970398071410968 their:0.008808133424022785 every:0.008750936531058462 of:0.007949928356517633 tbe:0.007826794893115 our:0.007127699287829338 :0.20422576666799877 +:0.0638888884755949 it.:0.015401813667220429 .:0.009591229134170196 them.:0.009070817631711418 time.:0.00703015382639179 him.:0.006900723952665188 year.:0.006664277168129705 country.:0.006590254752819453 years.:0.0059175365073589154 day.:0.005464174798564701 city.:0.004944420972979971 States.:0.004153994411571293 water.:0.004110178378187 again.:0.004045256423761056 people.:0.003997669917429034 feet.:0.003916554877820721 work.:0.003914045731452915 life.:0.0037392527771612093 week.:0.0037384215899586245 :0.8259203350050515 +a:0.27107181592509544 the:0.23405926651478218 of:0.08270585468150624 his:0.06867845554885608 great:0.043569743331181236 their:0.024201796948733572 The:0.022184399391387253 our:0.019149281594278828 good:0.014017469096857723 this:0.013819404097225752 and:0.013393940849374095 tho:0.013365090173954373 its:0.012436720541967393 by:0.0118225000423189 public:0.011550750491379507 national:0.01085132882748383 political:0.010805519519508795 no:0.010258176975205037 A:0.009966534781134805 :0.10109195066776898 +the:0.14935435523480675 of:0.08054461328148227 and:0.0736998461078078 a:0.04922039065345976 to:0.04388274464423922 in:0.029226996194864248 his:0.029087196370869515 was:0.029039618489968496 be:0.025367437893467577 is:0.02007611931949515 at:0.01647164142334435 their:0.014941103299751797 this:0.013861858367855173 for:0.012822423842686231 he:0.01207016099187216 as:0.010975615438839448 an:0.010432919923889523 that:0.010085686927997911 been:0.010038274021859502 :0.3578009975714431 +the:0.2840577125392358 capital:0.2353928211931751 and:0.06076876169696645 a:0.03910363201703038 of:0.033121324392633454 live:0.027552267881242837 The:0.02520557680701055 common:0.02299472398929864 large:0.01998659553171837 tho:0.017501474268652856 or:0.008933263656042927 in:0.008662178432317228 every:0.008096563401573319 great:0.008019969747055296 preferred:0.007610531955487536 as:0.007409240178661647 any:0.007392641462393917 that:0.007035641977289422 new:0.006823990842103337 :0.16333108803011095 +to:0.12022893700269083 and:0.09020394424291768 the:0.08587503820055309 of:0.06450042443224316 in:0.0310058468700829 a:0.017742048521183405 :0.015548046036689871 not:0.01491307651316237 that:0.014112408707955496 for:0.013734482372212283 I:0.013065769926808477 will:0.012848502316304782 at:0.012837991177321897 In:0.012628718855091186 by:0.012491091048660757 be:0.011425930130217754 is:0.0113962101007567 he:0.011342727513475473 or:0.01112522537451577 :0.4219735806571561 +and:0.09304636474958337 was:0.08852473776698809 not:0.06247967557458979 is:0.05886901545983386 be:0.046332696547503105 are:0.043388333681392006 been:0.03997082144306642 or:0.03425545952814821 were:0.03087596894523256 of:0.029769416122301797 do:0.027101533082797776 to:0.021570899887288688 in:0.01464085326789559 for:0.013839069876333439 that:0.013662603534609052 with:0.013324686472100443 by:0.01233840899687083 it:0.011804657478689877 being:0.01055476141507447 :0.3326500361697006 +Cor.:0.36986811482876447 corner:0.11673555597743407 lot:0.06153152204367992 Block:0.039863755753673756 Liber:0.03657571015219382 Lot:0.033597367386553015 marked:0.030854011379115743 Book:0.02763082799225948 post:0.022851286915360446 block:0.019110250808498402 Corner:0.017308648254758047 book:0.016328596747635652 of:0.013265326859930288 lots:0.011359018263156911 Post:0.011131287355833944 township:0.010360137503225543 District:0.00985096875642149 section:0.008834399069488923 cor.:0.008693433079156695 :0.13324978087285938 +6:0.04307425527632726 5:0.03484535508980178 10:0.029367186852862628 cents:0.029191495415484 20:0.025921012310269845 six:0.02484907034524791 12:0.024848811538587548 1:0.024009703683872317 4:0.022008235392845764 ten:0.021082617200552687 50:0.020885660737814157 7:0.019375571347997826 3:0.019128482963166427 the:0.016020031204144792 two:0.015405063699908515 a:0.01484258034871375 25:0.014607383287655908 cent:0.014478241826934688 00:0.014345924241872665 :0.5707133172359395 +deter-:0.3045442813386187 to:0.15548830237036432 of:0.12466922737479343 the:0.05456310119231951 and:0.025735567463363966 this:0.02224155523744589 a:0.022134688000466834 by:0.02153123499019889 in:0.020048925906216992 or:0.019214929468681596 for:0.01862540310035219 with:0.01503102063906607 his:0.01462144347806102 that:0.010024933563749188 without:0.009384139959347667 at:0.006156479051786548 In:0.005737382395906706 public:0.005572547442935585 not:0.0053342932963409235 :0.138340543729984 +their:0.303870040036491 his:0.2634967587175337 her:0.0770867316384374 our:0.07393034604441996 my:0.06915536349222245 your:0.06154255299070757 its:0.05268045966733099 bis:0.015687594264163215 Its:0.0057668026480756675 to:0.005149990367273902 one's:0.005122271724435252 or:0.004436179057110332 and:0.003079954251817976 of:0.00292672802059773 My:0.0025075626551424885 hla:0.002343591710078937 His:0.0023256996451312 own:0.0023001264949709796 not:0.002012656351738013 :0.04357859022232127 +the:0.16807735899698817 of:0.10541662057906837 and:0.05138367848570702 a:0.04141865232648221 to:0.0385989743764065 in:0.026264864977736738 was:0.019530675665220657 his:0.018900421021236905 be:0.017373825006196972 their:0.015767721170721456 for:0.01557246589796783 with:0.014071419046630446 is:0.012922913111931644 at:0.012690452250034052 are:0.010702713108721902 .:0.010158075558988393 Mr.:0.009672788574483367 tho:0.009612591781990074 were:0.009549306361446321 :0.391314481702041 +of:0.04287771630360952 and:0.025269389164843475 the:0.02123729754998021 :0.012659522545490229 it:0.0080893697327925 .:0.005494115604032233 It:0.005218660355971031 for:0.003906278364397454 as:0.003892711613411863 :0.0036617798026048493 with:0.0034727155496112588 to:0.003103346675184044 ,:0.0027658996006672816 County:0.0026698052908031033 two:0.0025736405401286097 by:0.002439192140804658 that:0.0024187682191916557 Miss:0.002366474116992161 city:0.002340119750015495 :0.8425431970794683 +the:0.37050244189312076 a:0.14204270176925204 of:0.09081729250179542 to:0.07854711749777048 for:0.03271671028137202 in:0.02257321067675187 tho:0.021525595843366985 no:0.01843387518655892 their:0.01835767782941098 his:0.016783914515794963 any:0.016187471109032556 The:0.01566556791012824 our:0.013505364241297205 this:0.012930372109309323 at:0.01174524611119252 by:0.011194470272738073 every:0.01075583059003225 and:0.010467357708294418 with:0.010181704988139752 :0.0740660769646412 +as:0.2700427896489412 is:0.11722649623956599 best:0.06276562889192396 and:0.04994437853740091 was:0.048113915130615685 be:0.04513976162108015 if:0.04461778285447121 it:0.037397241868893344 im-:0.023954359030192076 that:0.02306538199775711 only:0.023035968699122163 or:0.022467671986088286 every:0.02222243024965312 all:0.021390698226073545 no:0.020954425477861634 not:0.01979426138035079 any:0.01916968407862608 are:0.017957253260624986 the:0.016469965728494212 :0.09326990509226352 +out:0.059083184138986056 matter:0.04205030553593758 place:0.035263919292909666 point:0.03213530279049514 number:0.03163392690450261 means:0.024082723985489354 purpose:0.0238121617855406 and:0.021624384276620296 one:0.02109358142555095 time:0.019857225020719002 is:0.01876611161605487 case:0.018295830657429804 loss:0.017217624234891402 years:0.016044916463695415 that:0.015802827058976263 full:0.015509410656244456 lack:0.01536700906378516 cost:0.015321549292861931 sense:0.015315825191249587 :0.5407221806080598 +and:0.15954896509628302 fact:0.06250413334095033 said:0.05065834510086072 so:0.041377132404438896 is:0.035044982477999385 say:0.031238107057586156 was:0.03080136861091614 him:0.030163903722579304 found:0.028801317587840422 know:0.027089045931031216 show:0.02253951910492264 stated:0.020965932865206496 says:0.020478382261860294 believe:0.019460213424765792 but:0.017059185035050474 thought:0.01632135970667961 see:0.0159709956695605 me:0.01535960772741225 told:0.014380823351940667 :0.33923667952211567 +of:0.09129790931378902 the:0.07369883040827747 and:0.047842263382354346 in:0.04189055351593407 to:0.04045875475680249 a:0.03542341257202578 be:0.02020462051672066 for:0.01979292654746225 was:0.01760256398103379 at:0.017380150555488715 is:0.014984483003968216 with:0.014047653760730413 by:0.01374644383819499 :0.012670486581795598 In:0.01200961464556976 or:0.011563835749786333 from:0.011391516893522809 are:0.011273104484969465 that:0.010755276030689069 :0.4809655994608848 +the:0.4071374189315913 and:0.06449181461132415 of:0.02892866618288876 in:0.028670005984162618 The:0.02603617389223924 tho:0.024993820467459137 a:0.023579040051412606 to:0.01755553213771617 on:0.014626070241060114 by:0.013447843485786471 or:0.012794166593089693 tbe:0.012024509152999897 :0.010353482361299817 that:0.009291482237329618 In:0.007938246807075932 from:0.007526799010378873 other:0.007469196869028889 all:0.006409533041696086 for:0.00626887758057738 :0.26945732036088327 +and:0.08357522012294293 the:0.06646222596886454 an:0.044271129757368015 be:0.042417790473112386 are:0.02866777686589766 was:0.02817689849533726 a:0.026661395872759935 is:0.024396725546866223 he:0.020838833727288102 said:0.020656222046865517 or:0.01976169724813251 his:0.01793222026771738 were:0.017453682544233125 of:0.01600876783342679 not:0.015872164881240172 -:0.015591650172580516 which:0.015441648623107773 those:0.014855809483849475 their:0.014796233728443211 :0.46516190633996646 +of:0.3661820849495029 the:0.17805419020423427 said:0.047858555790071 Eng-:0.029192033294693463 on:0.020259663676993462 described:0.018399358763208556 this:0.017412309023340393 in:0.01633589449927516 our:0.014699914244328547 Mary-:0.014246367553274512 his:0.011372736480196167 tho:0.011017053620333627 Cleve-:0.009829044963055686 between:0.009765341937434406 ot:0.009757182746114862 native:0.009559361519672176 by:0.00850605519015684 agricultural:0.008293438957586484 and:0.008229281906024549 :0.19003013068050295 +and:0.06209380953455171 dollars:0.032259831381518125 paid:0.02952335456002663 time:0.023686624267932874 pay:0.022090228818936034 provided:0.02056021342835747 made:0.020423937902631657 vote:0.019353405615436588 one:0.018047398048843605 it:0.017842826308910827 used:0.017703295160801727 up:0.01643863786763723 him:0.015663007483694383 work:0.01560113960366698 cents:0.01554265447558961 sold:0.015506251200519433 was:0.013767563680866034 demand:0.01356314854981983 out:0.012905540465258011 :0.5964271316450013 +hundred:0.02334136986593815 up:0.005482494641173394 men:0.005366536521246011 Hundred:0.0047587970519216575 John:0.00441808156134956 William:0.004390720675819281 him:0.004016828614280843 ;:0.003997112205305733 due:0.003721199871732 in:0.0036582900032443304 time:0.003637206863828461 James:0.0035594902370151707 out:0.0034878448964120057 .:0.003467980723571515 1:0.0032804584819785204 day:0.0032444781513863933 ,:0.003058139385740603 :0.0030314555521939613 Robert:0.003005471634785646 :0.9060760430610768 +are:0.12088622343137409 of:0.10376295500263281 and:0.10219863334939981 is:0.08682022730266144 be:0.062331413110718895 was:0.05717688713214629 were:0.033891866253124764 or:0.025583816897952878 been:0.024326701859664297 with:0.023212791116761906 not:0.021583305722828013 in:0.02089402368796561 Is:0.015568797772923984 for:0.015306724299149024 by:0.014069910295936749 from:0.012454295694178854 as:0.01129882053878851 the:0.011236209097324857 much:0.010742366238479045 :0.22565403119598818 +for:0.7301965372593728 of:0.06964693552264381 in:0.027570529874614835 to:0.021893516333216102 For:0.019051646906235044 lor:0.015634982094620668 during:0.014231095514723346 at:0.010601321560624377 and:0.010575839031068745 all:0.007639698335862937 that:0.007483032179698967 by:0.006800589627409285 In:0.006615850095087886 with:0.005853232209453322 tor:0.005395222944993053 than:0.0046768287932574095 from:0.004365134841795605 as:0.0038365266087012407 over:0.003818163035995935 :0.023113317230624576 +the:0.11919516938815296 of:0.07230453158552728 and:0.05781056740443249 a:0.043018564803886335 to:0.031305092790907506 in:0.020848713353460488 at:0.014270110001066288 .:0.012526810245749479 :0.012413283442322082 for:0.011719122709941797 by:0.010808400946589808 or:0.010404172990115616 The:0.01003576004804544 with:0.009811868184449042 tho:0.009295902015355835 was:0.008924239095331684 that:0.008672304223433876 is:0.0085591147338948 be:0.008335143826716943 :0.5187411282106204 +of:0.21639653027823605 in:0.1243806321416291 and:0.09942423604798056 to:0.08735311545841633 with:0.05812800688391839 that:0.05589135798972271 for:0.048904446642641056 by:0.03601401708524448 from:0.027095284932846953 on:0.025835282764120747 In:0.023808404148915534 as:0.01731864251951354 all:0.016712322408654907 or:0.016642376309024834 upon:0.016577786776499442 at:0.013592520141185022 but:0.010625209986449067 made:0.010007910845409362 make:0.009007781022507395 :0.08528413561708449 +as:0.2362174906259657 is:0.2079931621050781 be:0.08317425635166276 was:0.06949564081952216 it:0.04667310627800878 im-:0.04168328886701557 not:0.03854759180053041 are:0.037196195273185864 Is:0.023915065149791248 best:0.0226121678977523 and:0.022277739571855908 no:0.014342840834340979 were:0.01331642359159524 been:0.012690916644019435 or:0.011675898914029568 all:0.011067804072711289 everything:0.010823848923073824 so:0.010575177413756014 too:0.010528812911779421 :0.07419257195432545 +the:0.11919516938815296 of:0.07230453158552728 and:0.05781056740443249 a:0.043018564803886335 to:0.031305092790907506 in:0.020848713353460488 at:0.014270110001066288 .:0.012526810245749479 :0.012413283442322082 for:0.011719122709941797 by:0.010808400946589808 or:0.010404172990115616 The:0.01003576004804544 with:0.009811868184449042 tho:0.009295902015355835 was:0.008924239095331684 that:0.008672304223433876 is:0.0085591147338948 be:0.008335143826716943 :0.5187411282106204 +and:0.1207836129228108 a:0.10171341059468247 the:0.0681689886554969 was:0.05557362177435535 be:0.04893403853447126 to:0.04884815209589761 is:0.03647887655878339 for:0.030853232827334612 he:0.029422060327363407 as:0.02907422884212697 not:0.026238041444657308 had:0.022902940295642424 been:0.020760498516579646 who:0.01956678089324692 are:0.01798851117336888 have:0.017155117111156797 or:0.016991683348748697 of:0.016064375156497206 an:0.015505596870308726 :0.25597623205647063 +the:0.11500545585881412 of:0.0897605566703555 and:0.07914879987306167 a:0.05827037833039227 to:0.0386987683614473 was:0.029282661483795363 be:0.023890810389268442 is:0.02056818843792312 been:0.017204803150083207 or:0.017094944717067368 in:0.01610392931760865 are:0.015798243080240505 his:0.01344187865263006 at:0.01321973597799718 for:0.01304287912725108 their:0.012337012043366955 were:0.012236169772424844 :0.01133284696603621 The:0.01095822742659897 :0.3916037103636372 +and:0.1622325321827282 the:0.11816686729520526 of:0.08677833237267059 that:0.060354514042889364 by:0.0521377718727042 to:0.04777251835052651 The:0.028306726697749633 which:0.02318987074238562 :0.022167329385313853 as:0.020695012367323625 in:0.019122694719851206 at:0.018814272456982355 but:0.01295820056124159 with:0.012400703247471575 for:0.009853814092799439 tho:0.00979441900579323 from:0.009705102958437484 Circuit:0.008953827201984602 a:0.008888044082877666 :0.26670744636306404 +the:0.6839544324636334 of:0.034903185824872764 American:0.033968558851205866 tho:0.027534586683056573 our:0.024767548643259144 and:0.019038279594836182 tbe:0.011922042356995125 The:0.011642842835225193 their:0.010954254500129042 in:0.010084211349089406 his:0.009459778712111752 Southern:0.009204112679312634 a:0.00897865964119319 this:0.008938697112752185 other:0.00787436177194004 State:0.007416873519932621 great:0.0073251874438558075 its:0.006315096050833612 for:0.006200967471718431 :0.058516322494047084 +the:0.4639475035801161 The:0.042722793016874504 tho:0.032338858815798684 of:0.023757344827062658 a:0.021891367642313704 tbe:0.015843705648210978 to:0.012426986221262254 said:0.010530495697642337 and:0.010343487427736948 his:0.010069409023188978 an:0.009863702870017456 per:0.008866860316149302 this:0.006199963753261007 my:0.005603522013974404 by:0.005348616413563408 :0.0052288830399919925 their:0.004589632024990431 two:0.004561064815032344 other:0.004416007888717799 :0.3004497949640947 +they:0.1004789640656131 who:0.07641701219191532 and:0.060286330921215964 which:0.036074376192708986 we:0.033500058703315176 men:0.026415138757010983 They:0.025682526289053716 that:0.025219663622247424 you:0.023522503814681107 people:0.022266094604530048 to:0.01384378995566123 there:0.012576001574064542 I:0.012100458267858955 thoy:0.011025833303985851 he:0.009928437111400169 them:0.008605820551289242 wo:0.008391287485726257 We:0.007742339681971053 then:0.0073642939691582485 :0.4775590689365926 +due:0.22100761294266907 thence:0.055373011925500454 interest:0.04398254736694816 and:0.04359923026473732 situated:0.022182634724377932 was:0.016671765109458433 feet:0.015569631680918638 line:0.014221224541491944 recorded:0.014148866203855508 located:0.012012581805197538 that:0.01182608009758606 land:0.010897619626576923 corner:0.010625541726470669 Interest:0.010575329993144894 held:0.01028745375039026 lying:0.00983270252047472 unpaid:0.009770685417067057 date:0.009701216096318589 Dakota,:0.009561676236289304 :0.4471525879705265 +the:0.2673299638334516 of:0.07422560489069235 and:0.059294726721107464 a:0.04973391474981365 in:0.040932159426526664 on:0.030082174051801167 to:0.028062452046523988 The:0.01797306335897598 at:0.0163402722586238 tho:0.016161530084531184 said:0.014259375425390283 .:0.01202390936418781 or:0.011304181978273646 :0.011117127844301309 an:0.01028781753823745 In:0.00979583958517821 by:0.009403859461847542 tbe:0.008596043567521541 from:0.008498801431605515 :0.30357718238140885 +he:0.16020752879723363 it:0.13119646472227525 I:0.0909682025311474 It:0.07923684529195249 He:0.0531034651861718 she:0.044330347742587935 and:0.042964713148509366 which:0.03762591668340912 who:0.02913683942741068 that:0.016527671900160686 She:0.015782708431760585 lie:0.012191372483318714 ho:0.011386854604653275 man:0.011362168452724225 This:0.010939444066756768 there:0.008635761117389753 1:0.00837101232706896 bill:0.008161342623322758 body:0.007465849624909501 :0.21940549083723707 +the:0.4071374189315913 and:0.06449181461132415 of:0.02892866618288876 in:0.028670005984162618 The:0.02603617389223924 tho:0.024993820467459137 a:0.023579040051412606 to:0.01755553213771617 on:0.014626070241060114 by:0.013447843485786471 or:0.012794166593089693 tbe:0.012024509152999897 :0.010353482361299817 that:0.009291482237329618 In:0.007938246807075932 from:0.007526799010378873 other:0.007469196869028889 all:0.006409533041696086 for:0.00626887758057738 :0.26945732036088327 +of:0.13084814232797154 in:0.0740836656586379 as:0.0625527229231004 with:0.059577596335708534 to:0.058433603729754965 is:0.05551580107464621 and:0.04946529489577619 was:0.04264000753602388 for:0.04009673021586375 by:0.037684080471064085 be:0.023941707008899252 on:0.02316059851167503 at:0.022644769441950232 such:0.019950936521181326 that:0.017856095877642635 like:0.017386655618315594 In:0.016902219705578994 from:0.016046571451088905 not:0.01205910100844263 :0.21815369968667797 +of:0.09129790931378902 the:0.07369883040827747 and:0.047842263382354346 in:0.04189055351593407 to:0.04045875475680249 a:0.03542341257202578 be:0.02020462051672066 for:0.01979292654746225 was:0.01760256398103379 at:0.017380150555488715 is:0.014984483003968216 with:0.014047653760730413 by:0.01374644383819499 :0.012670486581795598 In:0.01200961464556976 or:0.011563835749786333 from:0.011391516893522809 are:0.011273104484969465 that:0.010755276030689069 :0.4809655994608848 +and:0.13920483247323642 fact:0.05643080137212429 said:0.047670988252583105 so:0.03114826154231454 say:0.024996935595707117 believe:0.02457807505116447 says:0.021977445013278318 but:0.021955292500563345 is:0.02080105632147262 know:0.018314961380266052 of:0.017602492181747656 found:0.017564672063436627 think:0.0169275237413741 see:0.015699576611048843 probable:0.014207345089678882 order:0.013479199535970836 certain:0.012690708035243433 show:0.012589225873940835 find:0.01170507506644779 :0.45945553229840075 +that:0.15242890320810298 and:0.13309175128908535 to:0.06464852444793227 as:0.059172040750233794 but:0.05194292755487372 which:0.04119135080880579 will:0.025994083773307367 when:0.020108122053286766 said:0.01666986194469979 for:0.016052177588680636 not:0.015660155139742327 if:0.015425050590363318 I:0.014847600054076204 would:0.013928772678634198 time:0.013429397471141087 may:0.013084711559927938 where:0.013019632415193862 should:0.012462582002558757 than:0.01157473133959348 :0.2942676233297603 +and:0.1259886648566058 of:0.06521688073738954 the:0.05484007224005588 be:0.03651651712899517 which:0.03570903283777503 that:0.02962844534084782 to:0.026066064487141452 was:0.02300366252585163 is:0.020589687173851772 he:0.020507808408508355 or:0.020364218708378602 are:0.018310400336070218 as:0.017428122357995908 in:0.014506992653383404 who:0.014264121472697365 a:0.013394785025273933 have:0.013242055475038065 were:0.012504420708864082 been:0.012319520919843084 :0.42459852660543285 +of:0.20580461661107533 in:0.09805788019392607 for:0.06752127473827846 at:0.05691759923986695 half:0.05460634988467272 to:0.05270680830100356 with:0.040853570620057886 as:0.03970685960968733 is:0.036550630365194445 on:0.033880430873773563 about:0.03304973528016982 and:0.028853543843186853 than:0.022876602638281476 over:0.022131038476807308 was:0.02181847365852313 from:0.02022881915597573 by:0.01999004895504353 In:0.018940122913180008 be:0.014822376900199523 :0.1096832177410963 +of:0.11272463610488434 the:0.08384133743609103 to:0.06638691472682524 and:0.057007497848815085 in:0.03931769800050774 that:0.022975551300441238 :0.020913411265686833 I:0.01947272582481978 for:0.019244031787589645 as:0.01665380952936781 .:0.015980933135150435 not:0.014579607559382913 con-:0.011415457534220972 The:0.01094549931838903 a:0.010574007634535015 In:0.010468533207347147 with:0.0104371887338427 by:0.009923738134552695 which:0.009169441130130325 :0.43696797978742 +four:0.08872514301086325 six:0.06789123401513197 ten:0.06357297252853768 eight:0.04983070042306051 three:0.04524779739634256 20:0.044132960403063554 two:0.0414759896604807 seven:0.03978834704469778 18:0.030639172544850313 50:0.030138977455963126 4:0.029645612532271284 five:0.027902144969859138 10:0.027597195321306715 40:0.025772400150943967 30:0.024853771306743874 twenty:0.024443979635820567 15:0.023329807418263838 thirty:0.02133209557016487 12:0.02002063899649103 :0.27265905961514325 +he:0.14204215922224808 it:0.07174080578844616 and:0.07058537574774472 which:0.06364045909748335 who:0.05421466119267323 that:0.05253198290641257 It:0.04068031886851445 He:0.031208443174713656 she:0.024553872652622467 as:0.021345201560807353 ho:0.011939465314502913 man:0.010228909187846903 lie:0.0101822183282211 what:0.009951744078332334 one:0.007707094219399755 She:0.007558601762166279 be:0.006512769346499396 company:0.006201032302697171 time:0.006110757651672149 :0.35006412759699596 +the:0.557971918215757 this:0.048521449485598854 of:0.04402328621982492 last:0.038707956114603 a:0.02758311642077495 and:0.022122635027542647 The:0.018140696725732285 next:0.018081930868761687 to:0.01748368862218104 tho:0.017104170963839316 his:0.01608565863655545 in:0.015943129894441764 Saturday:0.014215235470529603 that:0.012422017641445736 Thursday:0.012086934147471223 on:0.011526570883975358 Sunday:0.010735299318338673 an:0.010190031078720286 Friday:0.009357928982405686 :0.07669634528150052 +to:0.6504805513243345 will:0.13591135567105467 would:0.04282099610384044 and:0.02851317624043039 not:0.02388674658088962 shall:0.015157370906621895 must:0.014431027736312258 may:0.012842751810725537 should:0.012488167622548774 can:0.008308140281597456 I:0.006481991562061626 cannot:0.004407776634578308 could:0.004172484903741613 To:0.00400302888430322 who:0.003970191429331766 re-:0.00362186950901409 we:0.0036113649791563655 might:0.0030190508206834206 which:0.002689623071374397 :0.01818233392739971 +and:0.15562740325767646 is:0.04911869570209017 be:0.03520342675219262 are:0.02947307852892665 not:0.0283328912728009 it:0.028309696442011718 was:0.028242151729787963 or:0.025775796812170723 but:0.025108815544364525 them:0.024089606038214088 done:0.020537257985603366 that:0.018616331459836627 him:0.018105546739958303 made:0.017683298830588015 were:0.013487300454108979 out:0.013225674687085675 up:0.012019849261361164 for:0.011412651380673346 been:0.011346256920410372 :0.4332842702001384 +and:0.079060203985638 Beginning:0.04987996022132729 was:0.03629162971358706 sold:0.035875917590680484 held:0.02806027040012656 payable:0.025965248269584223 be:0.02381623523515964 is:0.023060890334951893 beginning:0.021551592555047933 place:0.02100493488309824 week:0.020064236107698138 year:0.019171790978589853 made:0.018914498880899026 it:0.016320112837371187 are:0.01630898770646667 interest:0.015803743104450978 look:0.01573214507190579 extra:0.015625183834001133 died:0.015285183283777497 :0.5012072350056384 +a:0.7117766871909058 A:0.04466027225146224 that:0.038145376231226893 of:0.03133659238969193 and:0.02395462048381123 the:0.021150657415618255 in:0.01273605915643609 is:0.01257948448624573 as:0.011948292370197936 with:0.00918019199690103 only:0.008620978804351741 any:0.00856072405412207 or:0.008115571685259938 very:0.0061174285290959115 was:0.005967828383365022 at:0.0056268396335043755 some:0.005387404631366918 for:0.005293720992445606 but:0.005185401063933689 :0.02265586825005757 +and:0.09379053924927042 to:0.0742855066818078 of:0.06739630294563433 the:0.059809119354988456 in:0.027631208092333288 be-:0.027293809025147272 that:0.021435074971841002 was:0.020009129418631 for:0.018363033111366858 two:0.01705484412802581 is:0.016963649837169994 or:0.01689964597852544 be:0.015590573410395322 a:0.015001108975733878 which:0.01499881791074982 :0.013443348992596298 at:0.012448389513759608 by:0.01164637080842974 con-:0.01120718746514304 :0.44373234012845064 +the:0.14613377916116738 a:0.09915120907153838 and:0.08709291288283046 of:0.0762410490757785 to:0.04542490074619659 is:0.025033786255201033 are:0.021679247519951775 or:0.021569414767566384 in:0.019493032232240293 for:0.016675682015973237 was:0.016156162981291498 be:0.015634401684289367 The:0.01344944183486942 with:0.010795018551845321 tho:0.010167952843609511 not:0.009683658473587129 been:0.009478021872577916 have:0.009430763860470162 by:0.008867400691402117 :0.33684216347761353 +for:0.0817521270731711 in:0.07751766839157098 of:0.06667048187922153 with:0.06563647202973075 as:0.059050954433340686 that:0.0549273431088603 to:0.05376091374908626 and:0.052359607623421185 on:0.034250536926420445 at:0.03356074324360276 like:0.02671786776558796 is:0.025686482179001435 was:0.024685333211368496 by:0.02391214744869524 made:0.023484160118698354 In:0.01975706381881791 have:0.017819781839926357 than:0.01761738896680877 had:0.01758879643913998 :0.2222441297535295 +able:0.06700451574292482 enough:0.06546265372865626 order:0.04537366713556288 him:0.039073015447402444 ready:0.03725534014102292 is:0.03617849145770438 going:0.03571032703403535 as:0.0350843462919755 time:0.03396688231323028 them:0.03229229641901617 unable:0.03202455530329382 have:0.03198054540509948 and:0.031584670755572426 had:0.030461160822112015 right:0.030191326246867004 was:0.029809544287095383 power:0.02846834545634381 began:0.02586696576871125 attempt:0.02530478102491758 :0.3059065692184562 +be:0.11808147871825793 very:0.07745330585220786 of:0.0721186542935409 is:0.05657450452730661 was:0.05627725778042244 so:0.054378042329648435 as:0.05326604181813712 and:0.049632692872605404 the:0.04639440024091156 been:0.045626401361906425 are:0.03533557374084109 to:0.035153116439787406 a:0.025832295407701485 too:0.023972202345650187 with:0.023660519286331165 it:0.022876735914798284 were:0.02007082620978124 quite:0.01871801916279522 have:0.018081401332630632 :0.1454965303647386 +and:0.05294192373001915 L:0.05184905627027355 .:0.05006581940782209 of:0.03573078244491796 :0.029549373548852956 the:0.02171474886857412 to:0.018904371295273847 1:0.016989609905959956 J:0.016956367117901914 H:0.016337029151721066 I:0.013853436199477924 M:0.011762136794710764 B:0.011656209960458233 A:0.010982400985163942 Mr.:0.010381895192781295 N.:0.009896639391851814 C:0.009827811632189109 at:0.009743326698107556 G:0.0096203866261293 :0.5902366747778134 +the:0.12592140430050933 of:0.10132923181262897 a:0.05500946913735652 to:0.03235198431148629 on:0.03226322121325274 and:0.024636046011835736 in:0.021693456616034446 as:0.017565425832354712 :0.01300417743339075 that:0.01246069648944953 by:0.012279016093856319 an:0.01133417003936976 The:0.009268402633604067 at:0.008657547796486328 tho:0.008060737668218073 or:0.007932706916532183 his:0.007841072298594941 this:0.007526234639132488 from:0.007393866328245687 :0.48247113242766115 +the:0.15213699183792534 of:0.1106764485040973 a:0.08906891555865908 in:0.06590561228991042 and:0.053230180394429984 to:0.039154353823176176 with:0.021054584590095893 In:0.01781882683029231 at:0.016358919005118266 his:0.01635255748997657 by:0.015798086617065162 on:0.0157318131257094 an:0.014867916336563909 for:0.013604041747118557 her:0.011376664509216766 The:0.011139762898501512 tho:0.009515285936983149 from:0.009284187028935284 that:0.00869140906806337 :0.3072334424081616 +and:0.07181562702745725 together:0.06672214896410926 connected:0.05460722541492519 connection:0.053485248068146786 accordance:0.040816432970329504 comply:0.022327715315442986 acquainted:0.01991331996883064 compared:0.01902004432375884 contact:0.016949822974841922 familiar:0.016791563233682194 up:0.016271038698657696 do:0.015355480362757417 interfere:0.014875808889703945 charged:0.014646284015101253 pleased:0.013610051164447858 him:0.01274062267734275 but:0.012200014478196207 satisfied:0.011962054640116513 it:0.011810815262474694 :0.4930786815496771 +the:0.2825559305323828 a:0.152774007470044 and:0.06603713455558927 in:0.05861031231040497 The:0.03727250018959503 of:0.03082433309949947 be:0.026361073060442893 his:0.0244993719664796 was:0.0219049015053845 to:0.019259123075610497 with:0.017178914307788565 tho:0.01491914720157743 no:0.013779352568538602 any:0.013718225947501137 for:0.01350703871530411 their:0.01217848209037995 its:0.011522677342446535 In:0.011484408771613832 been:0.010829933558793418 :0.1597831317306234 +of:0.2545193581367446 and:0.09741368099918528 in:0.08068998775792405 to:0.07843841372309332 for:0.0641942229077943 that:0.05201205987736039 with:0.05095136948677505 by:0.04073458469178119 as:0.02678112208649982 on:0.024526138274377936 from:0.019254260182688093 upon:0.016482491361865043 all:0.014771735064578786 or:0.014577902835694049 but:0.01194666693094037 In:0.010901498516620886 at:0.008735163276742284 over:0.007103294117937838 under:0.006978387871343546 :0.11798766190005319 +the:0.678757766130037 The:0.14323097383204605 tho:0.03504350467212104 a:0.018517615016824533 and:0.012425197286034908 tbe:0.011790413148411224 this:0.010294423537332072 that:0.007185517382533663 his:0.006569789547996237 I:0.006503583334570372 our:0.006426698017133416 Tho:0.0056536128709365795 their:0.004647254096066771 some:0.0035159662011084274 Tbe:0.0034514517714457848 her:0.0033633309152567943 This:0.003283725044502303 no:0.0032164046392686436 first:0.0030104095361609996 :0.03211236302021314 +do:0.5627310189363681 doing:0.0606011133973196 did:0.04833694233752645 is:0.03401779335469516 be:0.02458949947980843 not:0.02236279474971207 was:0.021884233861429375 all:0.02151814841552672 and:0.020682663069176432 say:0.013954543566208665 know:0.012574229732767053 done:0.012274725255758904 much:0.011174596837018458 so:0.010145418932828778 if:0.009976152284431723 as:0.009566545024265145 for:0.008812790937367915 think:0.008504685740253997 that:0.008435521163876617 :0.0768565829236604 +the:0.1348277277671158 and:0.10764528167294649 of:0.0769833078309307 to:0.061611447802027146 on:0.024098812521750355 in:0.024096249017799106 that:0.019468351457856168 a:0.01920688132374365 which:0.018370355225293237 said:0.016802085646656778 by:0.01614683053389323 :0.01577505461775748 for:0.014306246811755014 from:0.013959044673571591 or:0.013686428870105816 as:0.01170511653455319 upon:0.011092252521391784 re-:0.010886925062188878 are:0.010652782413250414 :0.37767881769541317 +:0.0632239326427642 it.:0.013278921655032933 them.:0.01096091629216228 vinegar.:0.008429719442231509 day.:0.007900793729963461 .:0.006818471555191912 year.:0.006123643098606993 him.:0.006012300679042504 country.:0.005687117721164426 follows::0.005411401116684406 time.:0.005212385718589216 night.:0.005078756139363501 ::0.004659619907587139 years.:0.004545660583287708 people.:0.004077312374685346 life.:0.00395649362282264 city.:0.003930360454989705 men.:0.003828339349812433 place.:0.0036909642710605674 :0.8261728896449572 +a:0.7662580227314326 the:0.0962855088003657 A:0.03550356664655611 and:0.01764987934503503 The:0.010959189557959199 his:0.008825684895927147 very:0.007894831404500946 to:0.006642562549545116 of:0.006392667341242885 tho:0.006101874576392788 was:0.0036673100494401607 is:0.0035562367815304397 in:0.00320382392632031 but:0.003081396393985037 one:0.002719639096259214 those:0.002637344886260907 as:0.002411162991026034 with:0.002255774024500791 our:0.0022214369687312014 :0.010732087032988344 +the:0.1847564407057139 and:0.10126478200649837 of:0.08831264818219191 The:0.05781217644693712 that:0.022136138620238693 these:0.01631671668090445 a:0.014513194758497697 or:0.01417786516951797 to:0.012988822898574776 their:0.012329949427663977 as:0.012287881083578981 :0.012262416633580412 his:0.011940145330932676 in:0.011700605535597748 tho:0.011368635516343475 These:0.011209828309073805 this:0.010982581867111285 which:0.010198916461314558 other:0.008582822905284792 :0.3738574314604434 +the:0.1360668464117303 and:0.1251781167332128 of:0.10512158343361684 was:0.03711809618172032 be:0.0310619861370154 to:0.030485960383119265 is:0.028299992116741068 are:0.02515137594578596 a:0.023547739877552484 in:0.0184144332240522 were:0.016881707626797093 for:0.016637571986558564 or:0.01618506769823766 their:0.016043113276886848 his:0.014648680560069887 by:0.01457278838211695 been:0.01387621245052728 from:0.009739711627091823 with:0.008496071313149466 :0.31147294463401776 +and:0.06561241592211407 .:0.04962570217429724 W.:0.045122221349084266 of:0.03678472794386436 Mrs.:0.036134811350319984 by:0.03559689310122045 John:0.03252819807620997 M.:0.024181422827451133 J.:0.023289436491198617 the:0.02141026254668947 S.:0.020951898889812744 Mr.:0.019139248452117792 C.:0.018505400516448132 E.:0.01835179546689562 A.:0.016505827179499406 to:0.015922259943079872 H.:0.015651128970962006 D.:0.014019796826653098 George:0.012677411670037097 :0.47698914030204465 +the:0.39966744572935786 a:0.0958238487268909 of:0.09439800270351552 The:0.05433707818245829 and:0.04173023004481498 his:0.031810552597365656 no:0.030912206936027305 its:0.028954222189316578 their:0.022927057256720552 tho:0.022756874117985666 in:0.014933533873240555 will:0.014568148251994 to:0.0133682618053017 our:0.012106750801348144 her:0.011978307180847568 tbe:0.0107429607773696 for:0.010372655855759716 an:0.010116444445213495 is:0.009559995175895574 :0.06793542334857633 +on:0.3702910772191306 of:0.08578289125153347 the:0.07473220909757704 to:0.05656738499270879 from:0.050981863310613336 in:0.04862125298503218 On:0.04656022703486455 upon:0.026795262743228625 and:0.02532663970895333 at:0.02525747394560468 along:0.019225448955519638 by:0.015002141441009247 within:0.013604868437239705 In:0.013431463242914252 that:0.012035441473664334 for:0.011558080672985022 any:0.010780658868225478 about:0.009784540010987604 than:0.009630512097803039 :0.07303056251040506 +that:0.3049087255014917 and:0.07806860748484838 as:0.06616239546692676 which:0.06055319401352315 if:0.05672569841432216 but:0.04459625376196091 where:0.029024549256688764 what:0.026006571916316834 when:0.023830050573067564 because:0.017216060718765813 If:0.0149424947500639 than:0.013202460303232933 or:0.01149210600864712 think:0.010109950259266864 until:0.008779356670120805 whether:0.008632631732384832 time:0.008216827008013745 before:0.008079779694387496 thought:0.006960515104152943 :0.20149177136181734 +the:0.1639865528869938 and:0.10234765038729775 of:0.08879657508152633 that:0.025880153854721248 The:0.025433382403492334 a:0.024370551082713656 or:0.01634393227514616 I:0.016181441943630876 in:0.015099075455698116 his:0.015053584421981892 to:0.014011465430673109 these:0.013075652071503832 as:0.012218349609237872 their:0.010994029209686902 tho:0.010839986628587447 which:0.010352552452324287 he:0.009660440328970435 :0.009506122633480924 would:0.009460653077096268 :0.40538784876523676 +and:0.11203614284734381 made:0.029480560291083903 necessary:0.027231632327903786 provide:0.01978786821063526 him:0.018624150941585572 time:0.017844902254185023 but:0.01736032991925495 pay:0.01712283223509279 responsible:0.01655246417854943 work:0.01573375727996718 used:0.015721729148453864 that:0.015344008200088246 providing:0.015123591452644664 or:0.014918878594106077 it:0.014272018550925738 vote:0.014240496926603478 out:0.013886758983508773 demand:0.013625570335128902 ready:0.01288626098417059 :0.5772060463387679 +and:0.09106586122321572 was:0.029660579759334678 be:0.02914566096529311 made:0.024972782723745736 that:0.02476079037524749 is:0.02394085383457203 as:0.02297513145648756 are:0.022687981339855192 them:0.020060332159828297 interest:0.018473718360212707 it:0.017912558962991664 been:0.017477552638312664 found:0.016795270454075195 described:0.01661889301547555 were:0.01648858524802296 or:0.015238123243804183 placed:0.014243486317071686 work:0.014135120641128198 used:0.013974877965446277 :0.5483718393158791 +he:0.1358973381107014 I:0.13258152691190636 they:0.06098045885097747 and:0.0602210831614876 it:0.0563595591059021 who:0.051632137136533 she:0.04357331090137296 He:0.0389109126886977 we:0.03397689259144786 It:0.02878678806653731 which:0.02791960444765762 1:0.02545650045119315 then:0.019335436440949406 be:0.019130760197502965 She:0.015123007206866233 They:0.01409248343070052 never:0.013884879872537016 ho:0.011943818857555827 lie:0.010684745429736344 :0.19850875613973715 +by:0.34416648330698807 the:0.14054160164083693 of:0.1344295577130545 to:0.12158539226595154 at:0.022894356276652744 and:0.0204998772891259 in:0.015733548464480163 The:0.015707161845895583 this:0.014576531848580888 that:0.009713769082211282 tho:0.007299266969700236 a:0.007136179527346006 said:0.007110788503371015 :0.006542190914997223 with:0.006021548105903098 County:0.005951028960149568 or:0.005661648905321727 no:0.005319960713077889 for:0.004443391608718301 :0.10366571605763736 +to:0.28813511092039495 will:0.17687498396581883 would:0.12031011743540491 may:0.07790044304762447 should:0.05608454731683429 must:0.05564142293399775 not:0.04967420319893636 shall:0.043199122846332344 can:0.03001803367647848 could:0.026552751173109637 might:0.01486422388223124 cannot:0.014187262549318107 and:0.005515899335294948 it:0.003805389757457884 never:0.0030483587707758695 soon:0.0030401255400124287 also:0.002549451115373231 probably:0.0023721213920856613 always:0.002261832521905418 :0.022964598620613206 +the:0.13428633942421322 a:0.1138026982887911 of:0.0858940635067434 and:0.05526369194852004 to:0.03814901650233113 in:0.03396618245234486 his:0.015204046535262914 for:0.013853280731306629 that:0.013779752562541223 as:0.01303647427295544 at:0.01112612573894047 The:0.010890423417785964 an:0.010211014267304206 their:0.010135543293898118 In:0.009888722360384659 with:0.009265607664741955 or:0.00915401494955478 tho:0.008372858730976752 :0.008046212417368344 :0.3946739309340348 +and:0.0839450433429106 come:0.03915618338369266 away:0.03478901597785189 taken:0.03073135026158701 came:0.029455010358062257 received:0.02823451081336348 them:0.024614773364975622 far:0.02205647711573823 derived:0.02179337305615174 miles:0.021700193215321 suffering:0.019707394802139937 people:0.0191688390997767 him:0.017953987232258863 out:0.017324143358331504 it:0.016716197166719585 arising:0.01634621867403679 free:0.016292024985000694 removed:0.015047886407123911 but:0.014469261089144588 :0.5094981162958129 +the:0.15446594815492043 of:0.0681777575046158 and:0.06692292946718678 a:0.054579861217061924 to:0.02952338207491563 in:0.01802716815607726 The:0.01657559503342422 .:0.013620782530508562 is:0.01291264412872393 :0.012261674817572055 that:0.01191678475784404 tho:0.011465450508971534 for:0.011192470402294857 was:0.010587955492871247 or:0.01032039904176418 an:0.009509147842194057 Mr.:0.009440079370007747 by:0.009092345849978365 on:0.009041859336426998 :0.4593657643126404 +to:0.12022893700269083 and:0.09020394424291768 the:0.08587503820055309 of:0.06450042443224316 in:0.0310058468700829 a:0.017742048521183405 :0.015548046036689871 not:0.01491307651316237 that:0.014112408707955496 for:0.013734482372212283 I:0.013065769926808477 will:0.012848502316304782 at:0.012837991177321897 In:0.012628718855091186 by:0.012491091048660757 be:0.011425930130217754 is:0.0113962101007567 he:0.011342727513475473 or:0.01112522537451577 :0.4219735806571561 +and:0.08467539660018279 impossible:0.05576770104959268 necessary:0.037710102038435195 waiting:0.028795836865150456 enough:0.027502008147206564 made:0.02397705410428542 him:0.02259427876952565 care:0.02083887755946441 vote:0.018895085146843207 call:0.01784067740179611 it:0.01779537521510147 possible:0.01691625095092152 wait:0.01627716845132589 ready:0.01599702319691623 asked:0.015687345251919147 work:0.014758528173802037 out:0.014194322168808303 better:0.013480362307583284 time:0.013227472062527614 :0.522069134538612 +one:0.1028303141280697 part:0.05963429477052991 out:0.04766456937681193 some:0.031418679026461914 members:0.030764490253327767 side:0.029940657362655835 portion:0.022063658796890564 office:0.020457735219956013 member:0.019726706386316174 end:0.019666887540649894 tion:0.018667441728710307 parts:0.016814747270460957 people:0.014112771422418794 all:0.014072739582212475 any:0.013183573287639892 One:0.013083578354183906 that:0.013024335602903442 account:0.012482348155001894 many:0.012077825070275192 :0.48731264666452345 +the:0.21152257762983134 immediately:0.10294603233127667 next:0.07519262615361529 and:0.07237963837254241 es-:0.051879243006327264 or:0.04476991147532728 it:0.03090010445998637 that:0.029771184372637014 any:0.024550717880626943 this:0.021049857525727477 to:0.01858932051141412 each:0.017898899558756794 of:0.017275135434425846 I:0.0168687051928172 they:0.015376894395348013 a:0.014716606115480564 due:0.01415140483191575 he:0.014124903061120705 no:0.013912018573517319 :0.19112421911730565 +the:0.11919516938815296 of:0.07230453158552728 and:0.05781056740443249 a:0.043018564803886335 to:0.031305092790907506 in:0.020848713353460488 at:0.014270110001066288 .:0.012526810245749479 :0.012413283442322082 for:0.011719122709941797 by:0.010808400946589808 or:0.010404172990115616 The:0.01003576004804544 with:0.009811868184449042 tho:0.009295902015355835 was:0.008924239095331684 that:0.008672304223433876 is:0.0085591147338948 be:0.008335143826716943 :0.5187411282106204 +of:0.21705529675002308 the:0.15125684598919975 and:0.07762294251904704 in:0.037195070713200315 to:0.032458157322535576 a:0.028637443711082 that:0.02554270220573299 by:0.0232415400403714 as:0.021041752270714816 for:0.02095716019170065 with:0.017133654928223677 or:0.015325774272918032 all:0.014235709498362475 on:0.01318178794929262 The:0.011070428147312643 which:0.010081035399830553 other:0.009936687709513543 from:0.009836756936532184 tho:0.008788386286958643 :0.25440086715744803 +and:0.16358688192271684 in:0.07592862673302643 of:0.0753146974529526 was:0.05219768740275309 that:0.04614121788114147 for:0.04511717404260781 is:0.04458330395220275 to:0.0426874111451338 with:0.03989448473078004 In:0.02773882415177129 or:0.025409623446278777 by:0.02401053243015675 at:0.023790277468809035 be:0.021391386115715044 from:0.01862060448302719 on:0.016036022113209973 have:0.014727796529764837 as:0.014392937673725657 had:0.014268497532616562 :0.21316201279161007 +;:0.026571403980587268 it,:0.015870383953832425 him,:0.014366666283007914 them,:0.010562164083232527 it:0.008914797564345324 him:0.008658739974460379 in:0.008563308136534544 time,:0.007630343887807345 States,:0.007612689371982528 country,:0.007362247907852296 ,:0.007288132781311494 people,:0.006911544867979867 years,:0.006897249127247925 up:0.006735676101470539 and:0.006727519134349249 law,:0.006324130571078796 made,:0.005585921996128152 life,:0.005365863658446561 tion,:0.005234115725765018 :0.8258171008925798 +contained:0.1214065477041106 described:0.11697581034939604 stipulated:0.0902606577706034 recorded:0.05041234562811227 and:0.04921281965097254 situated:0.045365543399596864 interest:0.04213794919166823 interested:0.03417650284169929 filed:0.01711158395574566 published:0.016505039893262952 thence:0.01557506244353907 situate:0.015306072383837781 due:0.01479840732452386 was:0.014696680024093448 land:0.013781594300641934 specified:0.013350493038563782 Morris,:0.013238332800187252 sale:0.011770162588043224 property:0.011386339702986716 :0.29153205500841506 +made:0.0999812034390529 and:0.06680208263369662 caused:0.02435411478715239 shown:0.02379785223577525 up:0.023253655008919294 ed:0.02312002180398423 out:0.022293807888227747 taken:0.021988971765594088 done:0.02128782706813444 given:0.020283609421760777 paid:0.017098570970207227 owned:0.01708227903067019 that:0.01698438626809451 or:0.016145946252097726 him:0.015808363688274 followed:0.015366441255538056 appointed:0.015126279845513936 held:0.013990473525433292 approved:0.013949758860964168 :0.5102843542509091 +is:0.1300949053123692 ought:0.06235942008217411 are:0.06072445398663133 seems:0.05697318922100556 was:0.04954471475520722 not:0.048536362204045544 said:0.03881623685409472 seemed:0.03220746110521765 as:0.030923473227594384 it:0.030881869856406088 claimed:0.028226689520969073 have:0.027725540143517465 and:0.027557757709861613 likely:0.02587900806524851 seem:0.02574969309575762 supposed:0.023317446089120043 had:0.02145961764731352 Is:0.017651730366473797 proved:0.01677680343414685 :0.24359362732284573 +the:0.2167486099570274 of:0.13119223687285203 at:0.08220885116803053 to:0.07487579323892771 his:0.05164967395125052 their:0.050815013082062994 this:0.04821668373065791 in:0.03203773433924076 a:0.03092531575767674 for:0.028049559922123008 and:0.02197666359308838 hard:0.02158208320763835 our:0.016707989401268362 tho:0.01548137798454329 its:0.013210019436091916 my:0.012057368998312664 her:0.012013703980551892 day's:0.010527306838226828 or:0.010520759369895319 :0.1182032551705334 +the:0.16807735899698817 of:0.10541662057906837 and:0.05138367848570702 a:0.04141865232648221 to:0.0385989743764065 in:0.026264864977736738 was:0.019530675665220657 his:0.018900421021236905 be:0.017373825006196972 their:0.015767721170721456 for:0.01557246589796783 with:0.014071419046630446 is:0.012922913111931644 at:0.012690452250034052 are:0.010702713108721902 .:0.010158075558988393 Mr.:0.009672788574483367 tho:0.009612591781990074 were:0.009549306361446321 :0.391314481702041 +the:0.06533691028109212 to:0.058313309827831304 and:0.05755502259212429 of:0.057338918039787745 in:0.019074250696073925 be:0.01896218541655114 was:0.017603207143335083 is:0.01627889010616966 :0.016014103501446934 .:0.015819460491050333 that:0.014290692663289885 -:0.013486967116677392 Mr.:0.01319250898253651 on:0.01264600583801605 for:0.011502154179088299 a:0.011425809568501744 con-:0.011110007195595897 re-:0.010457601509934923 not:0.010042756979469386 :0.5485492378714274 +New:0.9338995458396319 Now:0.010692250847504841 of:0.007510056759856941 Xew:0.004105039014139046 New-:0.0032976219875464207 the:0.0024946653490119197 and:0.0017728789056583759 to:0.0014562533787025019 Mew:0.001295170354117138 a:0.001252201532511564 two:0.0008816368061040426 all:0.0008530673166178522 in:0.0007653809409237033 for:0.0006323278104204696 with:0.0005976152347957479 ew:0.0005848668217005218 or:0.000572696327546576 some:0.0005716922508714073 many:0.00034173846922195585 :0.02542329405311704 +the:0.11919516938815296 of:0.07230453158552728 and:0.05781056740443249 a:0.043018564803886335 to:0.031305092790907506 in:0.020848713353460488 at:0.014270110001066288 .:0.012526810245749479 :0.012413283442322082 for:0.011719122709941797 by:0.010808400946589808 or:0.010404172990115616 The:0.01003576004804544 with:0.009811868184449042 tho:0.009295902015355835 was:0.008924239095331684 that:0.008672304223433876 is:0.0085591147338948 be:0.008335143826716943 :0.5187411282106204 +one:0.039637606918049545 person:0.02008168384756427 year:0.017763484436325614 in:0.016874748388261803 man:0.014698007770735879 more:0.014382948106478294 and:0.013578263793867569 two:0.013148880902150254 law:0.011182374680953509 on:0.01025289577065975 day:0.009735812015537072 States,:0.009334549257334282 good:0.008289613798058797 little:0.008153141061214356 for:0.007365668081397641 whether:0.007341673554325975 time:0.007204844272113456 of:0.007085551257782673 action:0.0070845745930912425 :0.7558036774940979 +the:0.14871098228367902 of:0.09119951259926502 to:0.08736856863725484 and:0.06829052150946945 a:0.0648076116539092 be:0.03294543980457187 was:0.025119280726219835 for:0.021951957977162026 is:0.02016193536852541 their:0.01876985625171254 been:0.016547383398892414 in:0.016162428820398304 his:0.015017659894406125 at:0.01456382328475072 are:0.013852902773667061 were:0.011992640416546674 or:0.011968847916403347 all:0.008573440456078166 with:0.00851597302666464 :0.3024792332004233 +of:0.30801345078104214 to:0.1470551898540878 in:0.09235499791943652 with:0.06150254698386014 and:0.045548086175853604 from:0.043198603728722675 for:0.04052284507513907 by:0.039230215781652096 on:0.032657211853616676 that:0.027947476620080257 In:0.026089721914319613 upon:0.01771471273458111 Among:0.014476328024890886 To:0.012128068695204082 among:0.01115132110194265 all:0.010541846726055626 as:0.008626436840360855 but:0.008500461055743648 at:0.007948321140070061 :0.04379215699334051 +it,:0.013032699509385596 up:0.011395945404711234 ;:0.010474066333497479 them,:0.0098495158283353 years,:0.008905583544827126 here:0.00842564836048416 it:0.007805526703465134 him,:0.006973873020684981 him:0.0068900254800098246 out:0.006838040139981952 time,:0.006686332263106058 time:0.006381338382960565 year,:0.0062160140962868 work:0.006150096450800869 in:0.0054162262192399245 them:0.005387310725756669 :0.005384480733251685 man:0.005366481890792831 country:0.005150633225190106 :0.8562701616872317 +him.:0.04535407548649754 :0.027218484902777187 it.:0.021418666140996304 years.:0.013430006064510693 them.:0.011626830138425493 time.:0.010598941315515505 himself.:0.010291153979653507 man.:0.010104682190933877 life.:0.009414671013956167 ago.:0.008192613809176125 day.:0.007672530821686485 her.:0.007607480614204922 death.:0.007381958064252999 night.:0.007262075687629861 again.:0.006810397233530761 city.:0.0067720727488463995 there.:0.006340498587321394 work.:0.00625431567055265 home.:0.006071578448289463 :0.7691769670812427 +I:0.2114967272515272 he:0.1466101682437968 and:0.12397616421390552 they:0.044162583412549854 she:0.03782135859448933 1:0.033327879768897214 never:0.03267909064837743 we:0.026594091804762306 He:0.025380693625102202 who:0.02424232193132493 ever:0.01936933909600479 ho:0.012793282833441808 it:0.01227291120149911 be:0.008344081814574737 man:0.008096587747446088 you:0.008014674235278399 the:0.006740474416701545 We:0.006593870253754025 which:0.006549535518514894 :0.20393416338805176 +and:0.07558940021936399 recorded:0.030196237618668006 was:0.028917161578042846 made:0.027969746247669736 that:0.027730098932509103 o'clock:0.025060522019555328 up:0.023026552239529506 is:0.020398277211376416 found:0.02003101797656537 placed:0.017482208134164214 out:0.016937164562539058 place:0.016819459500107596 interest:0.016629321966808677 him:0.016002796715253755 situated:0.01573420479581609 it:0.015128305982428461 them:0.014715943643665314 part:0.014646613000297721 interested:0.014450471929902294 :0.5615344957257364 +was:0.12242319661126964 are:0.10520381028236289 is:0.09615295750869879 be:0.0799169849941808 and:0.07523550726825447 been:0.07376342562924056 were:0.05054409237603329 not:0.04239986107352745 of:0.02123579067029895 has:0.021038725593609406 or:0.02007069973668162 being:0.019153146588382217 have:0.01683564317691155 had:0.015299374795711973 as:0.01173478072961216 Is:0.011724198581659196 for:0.011050865727003256 become:0.009777457172408145 do:0.009493394887902016 :0.18594608659625161 +:0.11421909612027416 it.:0.023667955768568238 them.:0.019856594812938052 time.:0.015512404294612828 .:0.011785764502029736 country.:0.011757305124728314 him.:0.01173659170271466 day.:0.011533648958153316 year.:0.01029013744931177 work.:0.008774107269317252 years.:0.00840249900548632 city.:0.007919506344175884 of:0.007667990703457858 place.:0.007599724434653167 people.:0.006680829013342001 tion.:0.006262740024535808 men.:0.006040690257381388 world.:0.005966704935577371 way.:0.005809983980383086 :0.6975157252983588 +a:0.15904286293236977 the:0.15566317022647222 to:0.12078653371508528 any:0.04737663133771031 this:0.04601339515585695 and:0.0460100189790628 no:0.030199211764053366 that:0.02635901124798135 his:0.025689829567969304 or:0.024592678037981146 of:0.022951574392326805 their:0.02237727499993618 much:0.01781261974124323 every:0.01771389248859456 great:0.01720113732832532 your:0.017002700170770133 one:0.01394012467424774 same:0.013899808886201181 each:0.011837021209715512 :0.1625305031440968 +of:0.06369962776994645 hundred:0.04239215875864397 forty:0.03668212410482415 160:0.036051682195509575 ten:0.03425102120424238 sixty:0.027989794118277244 two:0.02492690523639303 fifty:0.02224893532446532 for:0.021156168724827413 five:0.020538874939203283 twenty:0.019326528686426203 thousand:0.01899080462170351 eight:0.016698370937444442 40:0.013011971602978296 thirty:0.01255632719092468 four:0.011745556513941813 few:0.01137058982255152 eighty:0.011043373092205308 three:0.010171464508498032 :0.5441477206469933 +and:0.0727215533140401 wait:0.04128286310665585 them:0.028395234947109844 there:0.02676852426217594 up:0.026310522278748354 retained:0.02390018491986361 continued:0.02369824179299974 him:0.022794378017548432 not:0.0220358274894264 it:0.02127116650081151 out:0.02018103459230547 time:0.01939014802238687 made:0.01728958352398934 office:0.017198214936531706 postponed:0.015274618331146551 that:0.014864895520864379 remained:0.013204258229158179 but:0.012719761565820718 down:0.012279536428529705 :0.5474194522198874 +men:0.018046446665980768 time:0.016889397163653726 in:0.012889619852271965 up:0.012563882735126918 made:0.010616696063952965 gold:0.009881321354377665 long:0.008661314627053338 city:0.008454339482680595 out:0.008419648843380851 hundred:0.008416181332707124 day:0.008205155403159003 life:0.008169005238591126 right:0.007928230702642007 power:0.007718361145590729 land:0.0076709204149119255 ;:0.00747466595228853 county:0.007115334580513052 work:0.0070988309650682705 water:0.006782477658087523 :0.8159981698179619 +be:0.0638495903659454 tak-:0.05550941803325059 it:0.04421014393230369 and:0.042673644274580515 was:0.04002390781597314 of:0.03997465994502392 giv-:0.031696877891618534 not:0.03123431998198701 the:0.02664320541760001 is:0.025284998614122502 them:0.01866419743888281 to:0.01767505415037297 he:0.016274247988400697 been:0.015725453934479928 are:0.015488818263703115 It:0.015451460905650687 were:0.014670660949659667 at:0.014089150528563348 a:0.011816285721643414 :0.45804390384623805 +of:0.1811236473879393 in:0.1404142207521088 to:0.10533781829330272 with:0.06614949616835417 and:0.06481564377411238 for:0.05790023843355257 that:0.034916347894940025 by:0.03270352286619697 from:0.027270877210910448 In:0.019950234195557595 at:0.01926486138239441 on:0.015048013226644603 upon:0.014925596655436078 but:0.013388085862164733 is:0.01060759122247079 made:0.010584664837102712 as:0.010490781043352878 up:0.01045073206073881 see:0.010356441407046361 :0.15330118532567372 +number:0.08683069308129672 out:0.05652523988365806 amount:0.0316160995429281 loss:0.03003158991922196 thousands:0.02193415724864308 plenty:0.021327800488850416 time:0.02084447319022837 kind:0.02068065360314574 all:0.02034476343485012 use:0.01987581810044361 means:0.017489403156055485 place:0.017484157051135582 deal:0.017371256224811903 purpose:0.016977074526153133 day:0.016383311738487803 kinds:0.014686781173143919 matter:0.014455532536242705 set:0.01445093555379865 way:0.014287353369565244 :0.5254029061773394 +of:0.21666322970039592 the:0.2140605452158767 and:0.054779341244399184 for:0.04226366311669007 their:0.035000947234094124 with:0.028227578602215152 to:0.02250770132728105 in:0.01774095008747193 our:0.0167713430416874 a:0.015501765196081776 many:0.011594189344153825 President:0.010921888520025697 such:0.01080393821275509 his:0.01041411685287127 three:0.00886682338222857 or:0.00868565120714919 its:0.00858460777821299 two:0.008474990942570364 by:0.007788801910496568 :0.2493479270833431 +to:0.12022893700269083 and:0.09020394424291768 the:0.08587503820055309 of:0.06450042443224316 in:0.0310058468700829 a:0.017742048521183405 :0.015548046036689871 not:0.01491307651316237 that:0.014112408707955496 for:0.013734482372212283 I:0.013065769926808477 will:0.012848502316304782 at:0.012837991177321897 In:0.012628718855091186 by:0.012491091048660757 be:0.011425930130217754 is:0.0113962101007567 he:0.011342727513475473 or:0.01112522537451577 :0.4219735806571561 +that:0.16832451653748762 and:0.16317551195275604 but:0.09202228048090219 as:0.06626898981545905 which:0.05056182452516285 if:0.034268175887251145 when:0.0327999336955599 where:0.02391654490512962 But:0.021638226096886436 because:0.020516735853829505 of:0.017875962661562897 And:0.017367123587138943 for:0.01715484095146282 If:0.016077584172624653 what:0.011042818726600803 though:0.010176208114312196 until:0.009969674033922531 while:0.008769541776912644 think:0.008148981878890557 :0.20892452434614764 +for:0.4180132846645891 of:0.11068585234967236 to:0.10305417361381519 in:0.08573951569102028 and:0.026014260742763032 with:0.024680849159550045 at:0.0232222080257794 In:0.022715512742303223 that:0.017993016380121154 during:0.01678461204963909 have:0.014404337437491952 by:0.013613597445318247 For:0.011816039980014901 from:0.00991379488069343 as:0.009747779668991976 is:0.009495342516556182 all:0.009340261828792907 make:0.0073389717331030675 after:0.007259867650467229 :0.057166721439317246 +at:0.16024875711945988 of:0.11959723573948378 in:0.07655636230941566 to:0.06418508229869567 and:0.049209669746267774 for:0.0468939220534126 In:0.043013747147153746 on:0.04046925552560495 from:0.03302351305239844 that:0.03094454647374414 by:0.027605208478623248 At:0.02593514544006128 with:0.022883476139909372 is:0.022209481516042465 as:0.022043285341721543 all:0.01716572542345301 was:0.012765033299765678 upon:0.01229253904757043 about:0.009832645839931941 :0.16212536800728441 +the:0.09846484455334809 and:0.09130055928514709 of:0.06220642624703864 a:0.06121832795486927 to:0.04880819486399424 more:0.01778986670815015 will:0.017743437033421707 an:0.017646236627717672 for:0.014710532686556433 that:0.014387708191479493 in:0.013256871120851785 would:0.01289229859548315 or:0.011612188071301679 The:0.011042304367095315 be:0.01101409327417005 as:0.010879831100756014 which:0.010413333807405866 are:0.009495396105026623 their:0.009378459479637263 :0.4547390899265495 +is:0.19488850486504697 are:0.1779716541630915 was:0.11248777518533627 and:0.07973436326191374 be:0.06423142866835607 were:0.03786216933970592 has:0.0331571507316561 had:0.02739295260862576 have:0.02603571558579354 been:0.02376759469790546 Is:0.022941486522250205 of:0.022686359184573384 not:0.01985131168102924 as:0.012554587510040356 am:0.012516769061136931 it:0.010379513668197879 that:0.009980981613235903 which:0.008929985568163386 being:0.008260004250866546 :0.09336969183307484 +of:0.34011006602467514 in:0.12294942828156634 to:0.05869886093409476 that:0.05100656810040595 In:0.04348615809526541 for:0.03600158388984608 and:0.03291229474820913 from:0.030739749004314927 by:0.02744528131391676 on:0.025987408389921293 with:0.024993204912641617 is:0.016794056651046847 at:0.01422773376967695 but:0.012453124813510309 all:0.011744018255328679 make:0.011654720417645982 upon:0.01043291594005273 as:0.008454165454219389 which:0.007888742366812987 :0.11101991863684875 +a:0.34358832601061756 the:0.23306901573428665 young:0.07298458205071318 The:0.046377425576058624 every:0.0351479579949408 A:0.031931169090197095 old:0.02632719551176634 one:0.022887377397854243 any:0.01743948046675053 no:0.011739451478969506 white:0.011420284442806792 this:0.011361603080243298 of:0.011287322412450996 that:0.009906016826914445 colored:0.00980749771870454 tho:0.009246152322475908 Every:0.009065157877865314 No:0.008189067740774702 poor:0.0069822797504213415 :0.07024263651518811 +the:0.3431771509165988 of:0.09881072216586187 and:0.05839317244822712 these:0.05358447201707265 The:0.04744676507838341 tho:0.023010266352598632 These:0.02166605092990453 their:0.02104294815089286 many:0.019418478879163908 our:0.018032804722763612 two:0.016042758872203123 for:0.015912305430278287 few:0.012646569166854263 in:0.0107406783702686 his:0.010073208903650837 to:0.009917822295460083 or:0.00983834543520916 those:0.009356308382088436 that:0.007656473667471322 :0.1922326978150485 +was:0.2043527788141306 is:0.11922229159263673 are:0.07199862082771842 be:0.05910349137734548 were:0.05862504379653409 and:0.04967946303924936 been:0.045773490440437416 as:0.03441340632994168 so:0.02510351337799103 not:0.023888646866948766 being:0.020067370468371582 it:0.016223935718430987 Is:0.01194658519359553 the:0.01152492485486272 a:0.010421731388389414 now:0.007977986707897889 It:0.007787871792546341 he:0.007490233872013452 very:0.007461455425014547 :0.20593715811594399 +hundred:0.02334136986593815 up:0.005482494641173394 men:0.005366536521246011 Hundred:0.0047587970519216575 John:0.00441808156134956 William:0.004390720675819281 him:0.004016828614280843 ;:0.003997112205305733 due:0.003721199871732 in:0.0036582900032443304 time:0.003637206863828461 James:0.0035594902370151707 out:0.0034878448964120057 .:0.003467980723571515 1:0.0032804584819785204 day:0.0032444781513863933 ,:0.003058139385740603 :0.0030314555521939613 Robert:0.003005471634785646 :0.9060760430610768 +and:0.13710704910621868 that:0.09656246129539928 when:0.06035079844937137 which:0.04581111804034503 as:0.04332141245786484 but:0.040156200117916784 what:0.029951190825858415 When:0.02813673581654789 if:0.019040301565938753 where:0.01640375011899876 Then:0.013613584418440778 :0.013247367939440726 time:0.012821612180066893 But:0.01211956780351811 I:0.012038176002508704 so:0.011681874880585806 whom:0.010964543474595417 If:0.010394635884841548 me.:0.009992134486583032 :0.3752854851349592 +was:0.1638759636175819 and:0.10459812941787436 were:0.0828238961432315 been:0.08173101241401731 be:0.07983917871230774 had:0.048701432621383864 have:0.044298000181855195 are:0.03806864518661992 is:0.03152664624706744 has:0.029500247264963895 being:0.02357715245461736 he:0.022706086282242226 I:0.01861176055174647 who:0.010741948870011774 or:0.008482757540920875 1:0.0077029687747970895 well:0.006506386185193694 not:0.006447674319985856 bo:0.005889064522013591 :0.18337104869156798 +the:0.31411389098609227 of:0.0922916016771207 a:0.08972500962431396 to:0.08396018578039742 and:0.06140048761703742 by:0.032166575398437584 his:0.02849675863930129 The:0.02455219877730962 for:0.019788737194625233 tho:0.016811468044975637 their:0.01335528957214173 this:0.012436145533586703 with:0.010720147592799238 our:0.009030687681136509 such:0.008080744693204007 my:0.007684719900570354 her:0.007107590902842099 as:0.007048326159812583 that:0.006858650518480813 :0.1533707837058148 +the:0.39749834532651884 a:0.07520030034269234 and:0.05540858759821703 The:0.03273515726769502 tho:0.030061875542463562 of:0.020144331424922633 tbe:0.014929647509541684 in:0.014268129706664795 or:0.013333166761078447 .:0.013287381914101323 an:0.009000188755386574 to:0.00880680429595084 :0.007943763822197133 Mr.:0.00773879605474787 by:0.007328417831573476 as:0.005922572098978465 for:0.0047526933692942485 that:0.004736121968310169 on:0.004594595720579333 :0.2713091226890862 +a:0.7194536952308284 in:0.032075744566868715 the:0.029235267680870373 A:0.029048756931929504 with:0.028693515375610507 of:0.02350549515590508 very:0.016774254520823293 for:0.014861912858948686 is:0.013461444731769315 and:0.013372944201507421 In:0.01007948901021512 that:0.00775646918248575 was:0.007480584564550806 at:0.007472987510011204 by:0.007408802626697965 this:0.004984678954262932 are:0.004563673447630084 from:0.004465441034816592 to:0.004200006984431605 :0.020104835429836668 +the:0.4109159313016338 The:0.1309538801357178 ap-:0.09798385855345006 a:0.050709435177748764 his:0.03249638549951353 ap­:0.028899980262793737 tho:0.02447661203194253 and:0.0240784932461706 ap¬:0.02349451921885964 their:0.017712046088855057 this:0.01705083437683583 her:0.014257650783628438 of:0.013209551257792333 His:0.01309355499311464 whose:0.01022144071323677 Her:0.009274242278630955 an-:0.0091988373335002 This:0.00917484810660884 my:0.008851953800806202 :0.05294594483916029 +in:0.1933152807008855 the:0.17880136851801468 a:0.1157223044694183 to:0.07567059862521648 his:0.07331966833776699 In:0.03889096354286236 of:0.037008194777506415 take:0.026573250125396776 and:0.02306180450894233 took:0.020660308544144978 their:0.018624496815258754 very:0.01648493993562097 her:0.016253446948324164 or:0.01464550409226591 dis-:0.013646240318608187 this:0.013359377647163998 its:0.013172637243221402 my:0.012748211988869643 on:0.01109735401338802 :0.08594404884712416 +it:0.13644582182110174 It:0.10187452711869652 he:0.10085059026502681 which:0.09435945449732171 I:0.0643125918857275 that:0.05414102499113153 and:0.03530355798908155 He:0.03364261405995771 she:0.025515044396994646 what:0.02315792905373124 who:0.023106672328916635 This:0.022294260180587267 there:0.019378636890638967 man:0.012822039246220926 She:0.009333184341885195 this:0.008945670613748643 but:0.008736432136791733 There:0.008530810381926188 time:0.008420230690264263 :0.20782890711024923 +of:0.11995858894229315 and:0.05190814595497317 in:0.04826895364987692 that:0.04493731536153755 for:0.02621329399551802 to:0.014264398237021584 on:0.01265746727886542 but:0.011455138992558378 from:0.010608200780434335 by:0.009501112514025458 after:0.008585786447328627 In:0.008138916799229592 bill:0.008011347344982048 with:0.007958936088978385 one:0.007618611554315744 bill,:0.0067307084291911914 ,:0.006169986576017955 which:0.005912943367918462 upon:0.005759226711584125 :0.5843409209733499 +and:0.10867328021620282 passed:0.06755436718429304 passing:0.04783561988560571 all:0.0453611686827897 pass:0.040052445388592185 went:0.03320973814830432 way:0.02914829050015977 or:0.028512372511486455 it:0.027289491895170447 go:0.022433674566154787 them:0.018110438552653034 come:0.016422693708539816 trip:0.01622888778339822 came:0.01554971878741428 was:0.015533465584351897 that:0.015384061977363243 gone:0.014681889964751445 going:0.014622288603463532 as:0.014574220650789962 :0.40782188540851533 +as:0.5527077844998439 so:0.07393861145956011 is:0.0446311037364441 and:0.03366400121764544 of:0.02967879205817946 very:0.02602190094740312 be:0.02336212132100251 was:0.019563698853782115 not:0.015775315577321154 the:0.01546911508031366 with:0.014950496493141511 are:0.013124426732832466 in:0.012534109628008038 a:0.012176322657358712 such:0.012101432676561996 much:0.011024748240925673 ns:0.008660794590568498 too:0.007921553975619215 aa:0.007919189185585413 :0.06377448106790284 +and:0.11227542635684666 in:0.05926094537427183 was:0.05396378394047754 is:0.05136260570530516 for:0.05106923353139905 that:0.05013521415615715 are:0.04326222731898401 or:0.04014340164908327 be:0.03531492597429185 of:0.030625235972832697 but:0.024718151168450147 to:0.021799093810604603 not:0.021501173365841574 will:0.01980662914078707 as:0.017568539194049916 were:0.016821543522803233 had:0.015820660338484865 have:0.01571034798462321 by:0.015099279464374159 :0.302741582030332 +the:0.10783242355436633 and:0.09837415659423153 of:0.05193659291028048 to:0.041579937616107863 in:0.033567356889137284 a:0.019247083589798604 for:0.018168260702126977 as:0.01768656158955107 that:0.01753591195559761 which:0.012830176945683072 is:0.01231397249421085 The:0.010979434779100211 :0.010040968003380956 are:0.009839915167676625 or:0.009436940036699142 was:0.009215331395060974 In:0.008715643204499909 on:0.00821693380674686 -:0.007854981201294006 :0.49362741756444967 +day:0.04285726374155349 out:0.038587072799751924 instead:0.0331741328395588 and:0.026116904658836457 is:0.02309184645480314 rate:0.022449577516636406 be:0.02010784590968946 purpose:0.020057617415686214 was:0.019297011190261226 part:0.017190887781658268 sum:0.01677552918448285 number:0.015394663444751011 time:0.014865542096469632 account:0.013878753857724892 are:0.013499289337431053 period:0.013495273379273889 end:0.013241266927537203 one:0.013132955027152504 Instead:0.01036877596047382 :0.6114177904762678 +the:0.14878655574973834 of:0.0926061438931051 and:0.0529851335785055 in:0.03320087060801692 that:0.03188855215678965 to:0.02204724417769331 for:0.02043863033401504 Mr.:0.015463321546344468 The:0.01531693086042846 a:0.01461284202800015 which:0.012135314479153175 as:0.011548332426887568 said:0.010995912522016357 by:0.010852944521026087 one:0.009664432803775061 tho:0.009563514674346948 :0.009125760723415068 or:0.009038058027549405 In:0.008616855065661497 :0.46011264982353184 +and:0.041654573432672405 it:0.036473647274553975 I:0.03604118785691645 It:0.025017481451895262 the:0.024346644063492552 :0.02051839406107838 he:0.01799516022500819 of:0.016099471021198658 a:0.014141571413154036 that:0.013782401802614258 be:0.01290371384648048 as:0.012452131177061454 in:0.01238073714140899 which:0.010741066704833529 by:0.010009006864278167 to:0.008415750669586558 1:0.007008538926304736 i:0.006993259409119337 .:0.006918561480350188 :0.6651067011779924 +of:0.11844963298298665 or:0.07683914961720528 if:0.0703966110429191 for:0.06976077418001503 to:0.06269674189058819 than:0.058532823643819176 in:0.05846906066818173 as:0.043522213657340054 that:0.04310247808634081 do:0.03890885543668145 and:0.02959862857878826 by:0.027776635807019803 from:0.024531346549766256 without:0.02349438018801182 with:0.02299175851155576 at:0.022079569531354155 on:0.019193252764429878 nor:0.018473103485281358 If:0.0167769990486983 :0.15340598432901695 +we:0.10665704684536749 they:0.09916846427181839 you:0.09751965341315678 I:0.0849375323967316 he:0.0751015223873394 and:0.04576710600569474 Ameri-:0.04257730916645876 one:0.0410924661004152 it:0.03762855525461867 who:0.03731375925099793 We:0.029133746862284003 that:0.028472632169280112 You:0.021017143286567206 Ameri¬:0.0171963842071196 which:0.016517553207831107 man:0.015673240564953277 It:0.013605510651837852 she:0.013308386989807491 They:0.010854400859071004 :0.1654575861086494 +them,:0.030692139238067823 ;:0.02197975381749797 it,:0.020581860083679005 him,:0.017637014139463083 him:0.012335349847697545 time,:0.010329251770718374 it:0.008633396388013382 and:0.008556539987287561 them:0.008153211596077799 in:0.007571748406698039 people,:0.007356408629425354 me,:0.007353802879947586 time:0.007235954957867208 country,:0.006940709532630356 up,:0.00677064014951059 years,:0.006728660764913155 up:0.006341279480453583 her,:0.006194918815162868 be,:0.005864526192400167 :0.7917428333224885 +the:0.11919516938815296 of:0.07230453158552728 and:0.05781056740443249 a:0.043018564803886335 to:0.031305092790907506 in:0.020848713353460488 at:0.014270110001066288 .:0.012526810245749479 :0.012413283442322082 for:0.011719122709941797 by:0.010808400946589808 or:0.010404172990115616 The:0.01003576004804544 with:0.009811868184449042 tho:0.009295902015355835 was:0.008924239095331684 that:0.008672304223433876 is:0.0085591147338948 be:0.008335143826716943 :0.5187411282106204 +be:0.12336305364930618 never:0.10832028549552696 have:0.10805172082295497 had:0.07693695059507395 ever:0.07415765298996693 I:0.07066828682938317 he:0.06091104352554563 was:0.04468269622871058 been:0.04348452309990321 and:0.04072964022179487 has:0.030474141169368304 is:0.02437233233026291 were:0.020351404720084135 are:0.01910783357699182 not:0.014995501242309773 or:0.013601247755354654 just:0.012597336923654409 1:0.009841177121879213 having:0.009668200453335149 :0.09268497124859318 +a:0.3200700582801328 the:0.16015827426045876 of:0.11171798070387332 to:0.06952610791254446 his:0.03620472161145565 their:0.03566998809986094 great:0.022696681560206405 and:0.019474027664028375 in:0.018516833310546703 this:0.01574262230721917 its:0.015706120641742264 no:0.01375095518883803 good:0.013133830054685287 with:0.012719082778087934 our:0.01218627880909402 any:0.011912417308074711 make:0.011832322869687007 The:0.010248347226340307 other:0.010076373096328896 :0.07765697631679501 +the:0.5023482791448253 Presbyterian:0.05386630734563436 a:0.044864962843960486 Episcopal:0.034559246908602834 Catholic:0.030104169103066427 The:0.02648808164949816 Baptist:0.02487483860753484 tho:0.018558607967734425 and:0.013831543827076338 Congregational:0.013487050737180165 Methodist:0.012760547388459368 .:0.009300634348282502 tbe:0.009240021926467931 A:0.00887468463771155 of:0.00854271837380088 said:0.008230692661963157 Lutheran:0.007059390235449966 No:0.006090780023830366 District:0.0057197043092101175 :0.16019773795971082 +in:0.12314179659360133 for:0.10834130742079313 as:0.06909294015386931 to:0.06529342051036928 at:0.059688578325571146 of:0.05877774212499061 was:0.05586932046173717 and:0.043423407062572306 In:0.03601318110104587 is:0.03571900201201092 with:0.029820827828295572 on:0.0266017812806369 by:0.02452957024036225 that:0.02425553352550055 not:0.020099876784690853 be:0.019367276509607696 than:0.017835582446969978 from:0.016959867827379717 after:0.016053692663627786 :0.14811529512636762 +the:0.31805006591302465 of:0.07281357222012311 and:0.04518487713959076 that:0.03673169213357304 this:0.028509999560923583 his:0.024743138113029667 in:0.02313458952809055 other:0.021507765867438536 tho:0.020529162317315008 their:0.019847757990821873 any:0.01972374680398329 these:0.019656530227366555 to:0.018701794623290125 our:0.0181329115654222 said:0.018022885884830194 for:0.015488808290817124 a:0.015388227656037616 he:0.015387120849423246 last:0.015362060616210815 :0.23208329269868813 +the:0.17041654386377597 a:0.08897201957521286 and:0.08161924696080892 of:0.0784388989742918 to:0.02636121325378415 in:0.025831674332829034 Mr.:0.022844129008572 was:0.021192521446726714 The:0.01736402312075834 his:0.01658782791233156 an:0.016055509915826924 be:0.015392529149328054 is:0.015162354142737897 are:0.014698384813255574 that:0.013540956139456684 with:0.012796730373257527 by:0.012274340016786284 their:0.012240455441898524 for:0.011898585300354652 :0.3253120562580065 +daughter:0.04490943202394756 name:0.03691564229390088 son:0.025463504584511416 city:0.024795686990947682 number:0.022268177141183478 people:0.021954833826573195 line:0.020145968593486916 and:0.01903959566491869 residence:0.015910651256807216 wife:0.014988970592399233 deed:0.014419277333432503 corner:0.014040264070541025 estate:0.013902041991977197 men:0.012918032857951922 day:0.012753166883725929 side:0.0125223053319246 case:0.01250860004834219 State:0.012064500771557737 part:0.011519587627082294 :0.6359597601147883 +on:0.36045373734928304 to:0.24534933040319995 and:0.10161764752816412 of:0.046220541814580136 in:0.038937937458041055 the:0.018873370535072924 a:0.012653001342629788 will:0.012049436911672309 all:0.01009590801339322 In:0.0091919724243895 by:0.008298274625362624 for:0.0076639175391257615 or:0.0071057381487387855 with:0.006560160693276459 shall:0.0062919843768541135 not:0.006122444024399822 said:0.005130449026077291 that:0.004759706853709865 from:0.004153836771540976 :0.08747060416048827 +the:0.14393886399133454 of:0.07537214014010107 and:0.060870093360783015 in:0.042083366133588644 to:0.03452806798549269 for:0.02761186960671188 that:0.025677834154243604 by:0.019399895372219728 a:0.019082918225906846 The:0.01467310080614897 which:0.013673483456288734 with:0.013614679500429227 :0.012583092656361549 as:0.012029992207411022 In:0.011846402898848326 in-:0.010068399327125254 or:0.009371131533665932 tho:0.00818344724290065 more:0.008046220025442113 :0.4363450013749962 +of:0.1595234296447622 the:0.11021987072369016 in:0.05806524674182771 to:0.05306023956554127 and:0.04154948937985904 a:0.03305979309748736 that:0.021934729810827877 for:0.0215862320584247 by:0.015182973000419838 In:0.01463868306037153 with:0.013256263982439835 :0.011509298034858326 at:0.011412403858030312 from:0.01137943617757608 which:0.008771260948993153 or:0.008399901043780383 on:0.00818113016235307 as:0.006674786947771282 The:0.005782295219084712 :0.3848125365419011 +the:0.19140582883402063 that:0.09325810394722454 same:0.08630476315674118 this:0.08403611835989487 some:0.07997150133365305 short:0.05796900877535768 any:0.055567407802340395 a:0.05545703451252019 long:0.03894370096389465 of:0.03742820475445086 first:0.02654820724756559 present:0.02507359619673274 one:0.022374172380702804 in:0.02191451812371367 which:0.02130485834244122 no:0.018296344189477582 to:0.016049442794593256 every:0.010844454292478094 his:0.009702598593079535 :0.046550135399117454 +of:0.29569113861075963 in:0.1838117534885069 to:0.11287698974243929 for:0.06692964145747908 that:0.04513649624075794 and:0.03357421330189679 by:0.031195763221869413 In:0.029648877956794346 with:0.026208643877081435 on:0.020329340781643772 from:0.01887641569195791 at:0.013443835958758203 or:0.010696229418549755 into:0.00952017357798034 upon:0.009360254435851631 which:0.008967487346382568 as:0.0074652923149493376 than:0.006993673771149881 pay:0.006846118444653651 :0.06142766036053814 +and:0.09120211901995434 of:0.08441065723081362 the:0.07137131230388172 a:0.06567775177909824 in:0.05554035900288656 to:0.05015360939916958 is:0.02773523659019154 be:0.027542624968640732 for:0.026473340887554948 was:0.025841411868854868 with:0.02494329678899326 it:0.018533146687450333 more:0.017886998490909942 In:0.01548034273419417 which:0.014361653358492783 are:0.012652131928836114 It:0.01239627375713804 that:0.012285139562529501 be-:0.011321178971533633 :0.3331914146688761 +it:0.24948756596542823 It:0.2101337505644298 he:0.05599846853556781 there:0.054474641161802735 which:0.04752115355738477 that:0.03846391677091141 this:0.027671526973750023 This:0.026879761317076502 and:0.026739708026211565 There:0.026416968586272432 who:0.021918431371741844 He:0.02123885683527484 she:0.01222769270167147 but:0.007372061284882893 what:0.007198874018312155 as:0.006113098930460396 country:0.005552414892164186 work:0.005317476169416592 She:0.005316457186304882 :0.1429571751509355 +have:0.17213074812103998 has:0.14043759219223462 are:0.10080386132321924 is:0.08884531628022876 had:0.0730627491244971 be:0.048658710045575246 was:0.04453014192878061 the:0.03720895371951276 not:0.03309885301638363 were:0.029412017405157614 and:0.028529673629850063 been:0.02058076397879864 a:0.016504062338862393 Is:0.014718426891224533 that:0.010885366786088879 which:0.009719657180226873 as:0.009002343690570945 or:0.008293903305687456 he:0.008034287027924573 :0.10454257201413608 +in:0.29644589718326353 on:0.12848081386132862 of:0.087861425975272 In:0.07181467656059694 to:0.051656292301403006 and:0.04686668037972898 all:0.03446740274539832 with:0.02970227007337448 that:0.02442316162125898 from:0.023013588096399255 by:0.02069860024681575 at:0.0195568623336989 for:0.01877272879960506 On:0.01777380678211815 upon:0.015720129048083363 into:0.012740146002356251 is:0.010154569834893322 under:0.009956586473874436 as:0.008426494456870487 :0.07046786722366018 +that:0.1574215159586064 and:0.09397018660301096 when:0.0654374835286228 but:0.04889022907740693 as:0.04158003707633958 which:0.03420508527982257 if:0.027103823983256572 until:0.02168896454011524 When:0.02104755341566531 time:0.019138025878878882 where:0.016092507298780364 :0.015417074666674808 But:0.013953564269364718 while:0.0138192965287086 If:0.01341652460434655 what:0.012122577570804951 thought:0.011198583387812077 because:0.010526750990031999 before:0.009637997911740514 :0.35233221743001014 +hundred:0.02334136986593815 up:0.005482494641173394 men:0.005366536521246011 Hundred:0.0047587970519216575 John:0.00441808156134956 William:0.004390720675819281 him:0.004016828614280843 ;:0.003997112205305733 due:0.003721199871732 in:0.0036582900032443304 time:0.003637206863828461 James:0.0035594902370151707 out:0.0034878448964120057 .:0.003467980723571515 1:0.0032804584819785204 day:0.0032444781513863933 ,:0.003058139385740603 :0.0030314555521939613 Robert:0.003005471634785646 :0.9060760430610768 +and:0.0881245880003323 just:0.07373323331426233 is:0.06220662979977092 be:0.03719512727929795 much:0.03706866225658913 far:0.036897795961600525 are:0.03618276485124513 not:0.03380176579677533 but:0.03364423969405558 was:0.03147819187654648 it:0.02678818607227986 well:0.025981422367949192 quite:0.023945432638108503 twice:0.02159059793439165 him:0.021280875415348448 or:0.01997206995066426 about:0.019460324198952533 times:0.018682707616508462 used:0.018298783273521867 :0.3326666017017995 +the:0.5489172941680506 a:0.2588285769444117 The:0.03864219552936622 tho:0.0344296345983474 no:0.01714829169401946 and:0.013327068346027197 tbe:0.01241591351174397 any:0.007129693927426031 by:0.005910422106110859 this:0.004769132943227687 or:0.004561777197749291 great:0.004202237267988219 every:0.004184066193886125 his:0.003971755354869724 to:0.0038254855743774015 A:0.003438320444251052 very:0.0031019414981290393 their:0.0029627402286322834 that:0.0028186209834807105 :0.024414831487905134 +of:0.12318299030702357 and:0.09244723467618976 that:0.09153813933334727 to:0.07203270829977579 by:0.0667377856168222 as:0.03242668700390363 which:0.030960169602041624 with:0.022909790759431913 when:0.02236414041195435 :0.015836707730899673 but:0.014032128571868387 if:0.009142552091229644 for:0.009012164316631231 When:0.008232829503403908 from:0.007271102251379591 Rev.:0.006931761939151653 If:0.00680883589571529 said:0.005477825146446127 against:0.005369011726986092 :0.35628543481579833 +of:0.22547645859652307 to:0.0976255956545342 in:0.08975713220785093 with:0.06434602133951098 on:0.04667326786831187 and:0.041649932604920926 for:0.0398249655813687 by:0.036685018433643767 from:0.032664781559268836 upon:0.021490740627235556 that:0.02139281221101055 at:0.021288306778277744 In:0.02025590254753344 as:0.010353932037056318 all:0.010074400759570251 over:0.008939820994499942 or:0.007693784865817322 told:0.007468153789186353 into:0.00691772114560941 :0.1884212503982698 +of:0.04697196227536516 the:0.029442921595469185 to:0.018469775562516697 two:0.0179515009259901 in:0.016233128289465805 10:0.013236215400694784 ten:0.013099143643923502 three:0.013020118452130016 that:0.011288463250214058 and:0.011190082306509495 few:0.010957501123048902 one:0.010027477754557436 :0.009739085507304164 six:0.009709190964091811 his:0.008914775706324067 at:0.008087992010672309 four:0.0077319850734493155 for:0.0072398554554108955 their:0.0069894644793094965 :0.7286993602235528 +of:0.2569775433015646 in:0.18100974320939717 to:0.08089305949061153 for:0.058553456690582525 In:0.05727674233559223 and:0.04309819287406158 from:0.03973547318827186 on:0.038973859617407805 by:0.03165950530820131 at:0.02963784258152884 with:0.029143790878767707 that:0.020006540726522352 upon:0.009848015256327744 through:0.008766368884378942 all:0.008205894785346023 over:0.008160812923390878 into:0.007838121453561725 about:0.007413178349390547 under:0.0073727039959616296 :0.07442915414913304 +the:0.11919516938815296 of:0.07230453158552728 and:0.05781056740443249 a:0.043018564803886335 to:0.031305092790907506 in:0.020848713353460488 at:0.014270110001066288 .:0.012526810245749479 :0.012413283442322082 for:0.011719122709941797 by:0.010808400946589808 or:0.010404172990115616 The:0.01003576004804544 with:0.009811868184449042 tho:0.009295902015355835 was:0.008924239095331684 that:0.008672304223433876 is:0.0085591147338948 be:0.008335143826716943 :0.5187411282106204 +of:0.10693635379198409 in:0.10501391097291798 any:0.07408681209609409 the:0.07315868457231811 a:0.053791744129721215 for:0.05311906167041459 no:0.052834298571643686 this:0.03450000122111158 every:0.0342355986751893 with:0.02577175751903527 and:0.02567684713594907 to:0.025185838317174268 In:0.02358157778676154 some:0.0225447551175856 by:0.02148934509349458 such:0.020977085492277996 same:0.020686607787554216 as:0.018696925767568644 that:0.015522753336983953 :0.19119004094422024 +bride:0.01693019396970377 city:0.012811314613898473 1:0.008456491433023874 hundred:0.007185382671922773 north:0.0071566525553791414 men:0.007061210882713791 ;:0.00676883895460513 rights:0.006367726330566769 life:0.0060909648766280695 feet:0.006076770525885186 county:0.005934185189687059 States:0.0058854452333490966 street:0.005826115496561612 York:0.005655978438286315 to:0.0054536218123390325 friends:0.005400363034530818 quarter:0.00514280164379424 land:0.005128884052139833 in:0.005006341277964447 :0.8646607170070205 +of:0.11285510963944104 in:0.07737034787472605 is:0.06768266079901816 with:0.06004271179244137 to:0.055877718749022705 was:0.0497012745642592 by:0.046605213709931995 for:0.04513930408712481 be:0.03974100755709633 as:0.039730187805321 and:0.032181706460584616 make:0.030059306546112097 have:0.02984705414159346 at:0.02863777457985876 made:0.025119054202927194 had:0.024322383281368577 on:0.02003014143466482 from:0.01998391849167806 In:0.016834755629579538 :0.1772383686532502 +he:0.164132633000641 and:0.08556066536940564 be:0.061710608824203046 is:0.05714172386507245 I:0.056784837407709496 was:0.05174536950821539 they:0.04716789156915556 who:0.04431434627625209 have:0.04173118971458476 it:0.038217614670219724 has:0.03351095806880406 are:0.031232241155966043 not:0.02833483277478152 she:0.027809747377668535 had:0.024711028996320567 we:0.024136163577548525 He:0.023382668193282604 been:0.02189217662525786 It:0.014930387507426356 :0.12055291551748477 +the:0.47325753538895177 The:0.06985744667334123 his:0.04048739086490958 a:0.036162908010198606 of:0.03534201188289878 and:0.03314016057686385 tho:0.03250932310818766 in:0.026586484685166337 their:0.02553521574109925 this:0.024405129246665838 our:0.017230712783823553 my:0.015393998670698364 tbe:0.015343669391548779 its:0.009331036171299491 that:0.008640077101776923 for:0.008240858290199762 to:0.008112704461350163 said:0.007876327745596245 other:0.007841210569091104 :0.10370579863633271 +and:0.0969083284307749 of:0.07138932802323796 to:0.04722292582495343 the:0.04545415903951818 in:0.041266402617336786 be:0.03652008080562996 for:0.034747253529759256 a:0.022289773275735503 was:0.021560260866013214 is:0.019777170504813223 with:0.016751202799189974 it:0.016616770363781376 are:0.013099985749890413 their:0.012113126242496133 or:0.011972903227063418 he:0.011880255810998209 been:0.011586013807119747 not:0.011108362731476092 her:0.010929194057091727 :0.4458065022931205 +make:0.12420607332394258 give:0.08818583686765562 and:0.07062334485136029 of:0.04632922336123501 as:0.042601516067764716 that:0.036105858155268476 in:0.03253852952172686 to:0.03176751128482822 for:0.031580146178034736 with:0.0308411499340924 is:0.030542283804975662 makes:0.030017002207676103 but:0.026639957008776454 find:0.025509509254171597 gave:0.02434323050410744 making:0.022303627839858037 found:0.02077146591271942 consider:0.020689153144716994 on:0.02038052815712997 :0.24302405261995944 +a:0.2136336179081272 the:0.1555451511818368 of:0.0681719512155527 as:0.036752711352011753 and:0.03665520854511957 to:0.03120865675314979 fel-:0.02859390841228567 fol-:0.025233258313582137 at:0.019924050029403464 is:0.01562158955956366 The:0.012177937497309829 very:0.011594736470193797 for:0.011095441916173182 that:0.010203500372628894 by:0.009885324417314685 was:0.009745627523670374 with:0.009149843394652024 his:0.008700242504438361 only:0.008656847186729402 :0.2764503954462567 +the:0.07308391748213149 and:0.0650236830030406 of:0.06160769942055397 to:0.052268247186185425 be:0.047076308054616864 a:0.0372396837426395 in:0.024252681833945605 was:0.022488248066258144 is:0.02167905136294673 for:0.02153860696418792 are:0.020623701936193742 or:0.01929925567751662 re-:0.01871171112926931 been:0.01861238611348457 pro-:0.01601091340941376 his:0.013531807626344868 not:0.013315154707748283 were:0.013106637980199716 he:0.012779513704430508 :0.42675079059889237 +to:0.17298216545601292 for:0.0798633226328875 give:0.07142101021478112 with:0.07080303282031485 gave:0.05569609791836655 upon:0.05224196993574532 on:0.04171377952467824 of:0.03332947006697337 made:0.0293858630480674 took:0.027515656029253342 by:0.027406657759150174 told:0.026991122231458005 at:0.025416451944355094 given:0.025024089537204718 make:0.02357828078452691 in:0.023320142951898527 take:0.022990314954188847 pay:0.018048295171665472 see:0.016241665662241705 :0.15503061135622995 +be:0.1095992624509685 and:0.10603502815748352 he:0.08898292837103722 was:0.07838366055936861 had:0.05897164286519283 has:0.053838909131930165 have:0.05379556375532097 been:0.04654371014538656 is:0.044307796432731895 are:0.03746163038150928 were:0.036764978535269374 I:0.03324196579147732 it:0.023279819423629267 that:0.016465172894595752 the:0.01436270575169926 she:0.014176246731092341 they:0.013968769147555503 hereby:0.013948002747460862 It:0.013749580556038392 :0.1411226261702524 +the:0.32802120701084164 railroad:0.05034468765909609 said:0.04387231001510286 this:0.04384758250836217 a:0.03797995667274219 The:0.0336454507920862 in:0.028255319507927056 and:0.027996407539199766 his:0.02498767979772733 tho:0.022574583688530887 Mining:0.021956308797767558 of:0.01763618913631101 railway:0.014424287166999786 that:0.013212530308898317 Railway:0.011643364852210215 insurance:0.010975860272100995 tbe:0.01092238304108797 our:0.010580003017199966 Railroad:0.01048021259069164 :0.23564367562511637 +the:0.17250374756456055 of:0.09942541908634174 and:0.08706243098852635 to:0.08089483630929634 a:0.07293049037434293 this:0.048031486577768304 that:0.038538177984837836 by:0.027616977546890742 only:0.01998960778820958 nor:0.01707410124388744 for:0.016410173500675692 what:0.012207175630504859 with:0.010728512871785216 other:0.010701452647532328 all:0.010265056874978739 from:0.010051731766447636 any:0.009665375502146639 one:0.0093933202244884 tho:0.009348529416831479 :0.23616139609994719 +the:0.28157999506769593 of:0.11451528962673597 and:0.04307549744623247 a:0.03730438232929904 from:0.03393266045058364 or:0.0299258965007547 by:0.029450753656224803 is:0.027039722099132482 his:0.026941556208746876 this:0.02666936293248428 with:0.025578643299198144 for:0.024782100660329046 in:0.024616406784632304 their:0.02325549146649443 tho:0.02290505919330666 are:0.022610612585324968 no:0.022076728706659297 The:0.01576587480740046 to:0.01439161055402164 :0.15258235562474282 +of:0.12649912670574465 and:0.10747477922426114 Mr.:0.05103048844189261 Mrs.:0.04601693327375137 to:0.04420229523596074 by:0.04160877195393157 that:0.025668717607642385 said:0.01765222611016786 with:0.016587976426947662 Sir:0.016576358487113765 from:0.014451851718709212 as:0.013770550923670662 :0.010585801940093054 Dr.:0.009207421037517887 St.:0.008510395949023104 for:0.008377263250793411 Rev.:0.007673289406015024 the:0.006218278874173225 or:0.005812720877300361 :0.4210747525552903 +sum:0.03352282876311118 number:0.028116684882597106 line:0.019995206059833036 city:0.01946514558931857 out:0.019275318828420953 day:0.01666865340772654 county:0.014872697538657208 amount:0.013254184849875051 Board:0.01252325449624941 town:0.012449555905674143 side:0.011663975251122375 part:0.011517157473718155 County:0.011460540331966697 state:0.011087331502382173 City:0.010878919191854432 purpose:0.01081028255427907 and:0.010297866493795984 way:0.009848747943663767 name:0.009522170936943183 :0.711769477998811 +and:0.10335296571783462 the:0.064691812635974 to:0.0637581105233198 of:0.039169999586260204 be:0.037311299393816506 in:0.03290792241473293 was:0.032051668068577316 for:0.024118368606442786 not:0.022403866054418582 he:0.021633337013570043 been:0.019156152911332373 is:0.019057591911990624 are:0.016125857552831645 more:0.015891069020746645 now:0.015848480035112543 were:0.015367927857228274 re-:0.015177368535835392 I:0.014247982898442186 that:0.013880807057178791 :0.4128474122043548 +of:0.3293426018931077 the:0.16284845865643302 for:0.05224694347627661 and:0.04749067259833895 with:0.03555457753876454 a:0.03540703082976556 in:0.028819145530647045 their:0.028063469125511793 his:0.02663195490379684 The:0.02429808764198463 by:0.022493235805797606 to:0.021304020099361602 no:0.020957749967622806 that:0.01745195841946675 our:0.0158418232035313 its:0.013203474647958046 some:0.012958842549492741 all:0.011685895230925471 other:0.011496171497070709 :0.08090388638414624 +and:0.05917734571267282 closing:0.04405297983259551 was:0.026323119710997635 valued:0.021005792503071843 held:0.01922887441606307 sold:0.018225285914023 2:0.017782437938973866 is:0.017552850459549643 arrived:0.01662711812741857 be:0.01645048243064216 are:0.016339673120917095 White:0.01533836240735085 not:0.015154252504664439 as:0.012706467917481812 that:0.012063629264509927 estimated:0.011864260728812118 Dated:0.0116063700277585 or:0.011444173640079769 made:0.010438189210536826 :0.6256183341318805 +one:0.07591276261110715 out:0.06051731193170748 part:0.05247657393880051 some:0.03764565803631056 account:0.03732080875142556 any:0.025795501308866122 all:0.022573497570587936 that:0.021706034880474935 tion:0.018820497961324994 time:0.018327338823311803 and:0.017698472540372448 use:0.017101246342976464 much:0.016743309263569286 portion:0.016424352739351607 side:0.015150320706867294 end:0.014971280442338157 cause:0.013657752568417643 because:0.013563549560043006 reason:0.012998228641295377 :0.48959550138085167 +do:0.5740459879239457 doing:0.04861157473681881 is:0.04585484550313911 did:0.040632736933239634 and:0.022037527470438918 be:0.01959994991613435 all:0.019355490079635895 was:0.019160658983185724 not:0.014925823278161315 done:0.013198203767031784 know:0.012915393259477813 much:0.012552134708308776 are:0.01169365176211506 as:0.010741035886152365 of:0.010719258674580137 for:0.01039917031982899 Is:0.010064660044351335 so:0.009376013166020561 say:0.009203541839552574 :0.08391234174788115 +hundred:0.02334136986593815 up:0.005482494641173394 men:0.005366536521246011 Hundred:0.0047587970519216575 John:0.00441808156134956 William:0.004390720675819281 him:0.004016828614280843 ;:0.003997112205305733 due:0.003721199871732 in:0.0036582900032443304 time:0.003637206863828461 James:0.0035594902370151707 out:0.0034878448964120057 .:0.003467980723571515 1:0.0032804584819785204 day:0.0032444781513863933 ,:0.003058139385740603 :0.0030314555521939613 Robert:0.003005471634785646 :0.9060760430610768 +able:0.07698418727248066 began:0.05849605448215527 unable:0.049066318676047826 right:0.04811669874944567 is:0.04395778852559764 enough:0.036765463436252976 ready:0.035526139081864465 him:0.032744464388266496 have:0.03158727117538379 not:0.029699003398255593 and:0.02959837177240242 had:0.027041842804453764 going:0.02613532746243634 them:0.025082372328678073 necessary:0.0250082411698359 me:0.024744360894184636 allowed:0.02338289373756736 was:0.023026363358519028 want:0.02136036151466532 :0.3306764757715068 +of:0.3222301720722049 in:0.13028394884370048 to:0.07483307163493944 In:0.04007050652378976 that:0.03625279610694092 for:0.035526800292580756 by:0.032351511242523286 and:0.03130478063956306 on:0.030381343395959676 with:0.027570482988076805 from:0.026624980699238167 at:0.026441504951881713 as:0.012554591280306577 upon:0.011703246759675802 all:0.009488555167831413 but:0.009184562114092546 do:0.008508308745653134 which:0.007343062797590127 is:0.00716475554226877 :0.11918101820118267 +of:0.16486836961129708 to:0.13115232665565918 or:0.06227117158797569 than:0.06104059902362809 reject:0.058660012217335876 in:0.050436298685004134 for:0.04808643881322632 if:0.04382579158830744 at:0.043086514013844744 without:0.04060278071412108 by:0.03649245999201215 as:0.031489992774881154 that:0.031368183724493855 from:0.026465606284724826 with:0.02544411126001331 and:0.015171133354455513 If:0.014002206853811813 do:0.013052233975085573 on:0.010656524323216022 :0.09082724454690612 +and:0.08791715288031852 laid:0.04982970740560851 came:0.045011549388182304 break:0.04233995074946563 went:0.03993868170598312 cut:0.03985450763627558 lay:0.039209100094247995 it:0.03667329005228823 way:0.035973609212655334 put:0.03262199742807428 come:0.031785308117811044 go:0.03117640807388659 him:0.02761113815281423 them:0.027402093357517008 ran:0.020363598544004102 sat:0.020306742717959913 run:0.019838767217043588 coming:0.019643466796127156 cutting:0.019476794597067717 :0.33202613587266916 +of:0.2656579840107034 that:0.08634884585793687 and:0.07390002894814818 to:0.07214160999668262 in:0.07025173631353761 by:0.059578170481041616 for:0.04495215980581873 with:0.037965482093892604 all:0.03766037458526971 from:0.030904590314795467 as:0.027371922678822276 In:0.01862607758457596 on:0.016668537342837582 when:0.014938706768151526 under:0.012350390684003846 but:0.012175065290240332 upon:0.011662697936500769 is:0.011144553369310351 at:0.011051825309223174 :0.08364924062850737 +the:0.10589524154373565 .:0.057029428906289856 of:0.03711683284628047 :0.03626906630218327 to:0.02686662086485127 and:0.013803113309017342 in:0.011981020168170655 City:0.010082448875335869 A:0.009385533913838463 a:0.009336108648177913 A.:0.00804916113973714 Mr.:0.007936191369762872 said:0.007397117822896771 on:0.007224792372388045 W.:0.006523698500079422 M.:0.006280978684334328 H.:0.006225336798150178 that:0.006198128079964879 tho:0.005648106651184205 :0.6197510732036214 +those:0.14690241288039052 men:0.10118863775299693 and:0.06875871900319389 man:0.04387824668664271 one:0.04240159973932453 all:0.037520424747204066 people:0.03549653339059925 Those:0.020737573905751504 women:0.014685462958766134 persons:0.013408022780534087 person:0.013192127749667056 woman:0.011139574353051226 others:0.010987596284616263 many:0.009892638542660002 men,:0.007511333783521626 friends:0.007421152602762067 thoso:0.007267619872957266 or:0.006036833513344335 girl:0.005810642458005059 :0.3947628469940115 +made:0.0999812034390529 and:0.06680208263369662 caused:0.02435411478715239 shown:0.02379785223577525 up:0.023253655008919294 ed:0.02312002180398423 out:0.022293807888227747 taken:0.021988971765594088 done:0.02128782706813444 given:0.020283609421760777 paid:0.017098570970207227 owned:0.01708227903067019 that:0.01698438626809451 or:0.016145946252097726 him:0.015808363688274 followed:0.015366441255538056 appointed:0.015126279845513936 held:0.013990473525433292 approved:0.013949758860964168 :0.5102843542509091 +the:0.11919516938815296 of:0.07230453158552728 and:0.05781056740443249 a:0.043018564803886335 to:0.031305092790907506 in:0.020848713353460488 at:0.014270110001066288 .:0.012526810245749479 :0.012413283442322082 for:0.011719122709941797 by:0.010808400946589808 or:0.010404172990115616 The:0.01003576004804544 with:0.009811868184449042 tho:0.009295902015355835 was:0.008924239095331684 that:0.008672304223433876 is:0.0085591147338948 be:0.008335143826716943 :0.5187411282106204 +of:0.10943089329876922 and:0.09142155155945801 on:0.026979087252069062 to:0.025213940439221892 that:0.02081677489652312 for:0.02039523797140296 by:0.015371821739837588 with:0.012591910830358885 from:0.009959111184399311 :0.009721156200764802 in:0.008697889474873112 under:0.006958125798916812 county,:0.006882306611187278 but:0.006575879288782639 therein,:0.0065640212275064795 upon:0.006401652440969448 :0.006173874439221273 States,:0.005991350434201391 court:0.005522907786113604 :0.5973305071254231 +of:0.09129790931378902 the:0.07369883040827747 and:0.047842263382354346 in:0.04189055351593407 to:0.04045875475680249 a:0.03542341257202578 be:0.02020462051672066 for:0.01979292654746225 was:0.01760256398103379 at:0.017380150555488715 is:0.014984483003968216 with:0.014047653760730413 by:0.01374644383819499 :0.012670486581795598 In:0.01200961464556976 or:0.011563835749786333 from:0.011391516893522809 are:0.011273104484969465 that:0.010755276030689069 :0.4809655994608848 +of:0.24701671504265144 the:0.09917977356904348 a:0.04882081213045684 no:0.046676341980769025 such:0.044970842010540774 for:0.042312415119985514 any:0.04143578866374492 all:0.04058618951136264 and:0.039531331975801415 in:0.03694237180757758 their:0.029630450917854337 to:0.024125730771113994 by:0.023124636468157482 that:0.0223157863966426 his:0.020932925544891696 some:0.019321917980519222 other:0.017674781712053847 this:0.017487682694544805 or:0.01626378777884603 :0.12064971792344238 +the:0.6577106845353785 The:0.051191475706978115 and:0.04850690432506617 tho:0.04014277741860598 an:0.02875812997965741 a:0.022362956641824378 tbe:0.016640305353086294 first:0.009014112644201395 that:0.006658606198775987 this:0.006394794988732706 said:0.006208737935752909 or:0.005807936394560497 one:0.0056132232857270346 every:0.005157646859265826 land:0.00491466938962481 any:0.004854309040338761 on:0.004093581639204494 present:0.0038256983615452757 Tho:0.00382303966700528 :0.06732040963466816 +of:0.09129790931378902 the:0.07369883040827747 and:0.047842263382354346 in:0.04189055351593407 to:0.04045875475680249 a:0.03542341257202578 be:0.02020462051672066 for:0.01979292654746225 was:0.01760256398103379 at:0.017380150555488715 is:0.014984483003968216 with:0.014047653760730413 by:0.01374644383819499 :0.012670486581795598 In:0.01200961464556976 or:0.011563835749786333 from:0.011391516893522809 are:0.011273104484969465 that:0.010755276030689069 :0.4809655994608848 +of:0.13850899103158149 the:0.07148527516030415 for:0.07065772329052675 and:0.06798344445837907 to:0.05711840158198522 in:0.05222087949710141 a:0.04207597475174612 with:0.02942992662599223 that:0.020649824807129055 by:0.018786946239966636 or:0.0161214419485255 is:0.016094507890189583 at:0.014846620775614454 be:0.01417025648815533 was:0.014067909561972815 In:0.014023317004411465 :0.012150319209216989 which:0.011278416652831875 from:0.010644241570283784 :0.3066855814540861 +the:0.34350338818752424 a:0.07914265510627373 The:0.041119905083683364 of:0.030075017038235837 two:0.02587623670153035 his:0.024522333832515578 one:0.022112837436326603 quartz:0.021970676237873712 their:0.01745701354253118 other:0.016607419489024697 tho:0.015638370080290814 three:0.015054749549362038 our:0.014836765517603847 and:0.01028608760186764 A:0.009358641045484112 this:0.008604445595596547 few:0.008303336053821338 several:0.0076494897824592656 for:0.006995987438812813 :0.2798846446791823 +the:0.7786957122049442 The:0.09308512561335769 tho:0.034192763589163684 a:0.023173664282484165 tbe:0.01346932134424789 his:0.007568427081101559 its:0.004914078853193623 this:0.004731169605066419 very:0.0046400500136904695 our:0.0037098563515912467 and:0.003418892331674977 Tho:0.0032910065125677603 their:0.0032159295784406697 an:0.0031903322490286767 my:0.0024106641970773847 her:0.0018463198669656901 your:0.0016421750772950335 tlie:0.0015805623457804928 This:0.001504547246709563 :0.008719401655618879 +number:0.07229608873797239 state:0.05172835339202355 out:0.04315736003446806 amount:0.033002884796176975 line:0.027594163900795925 sum:0.026287257434152056 State:0.023906976250431956 piece:0.023422023904713846 part:0.021876275296654587 way:0.021018104261496598 Board:0.018968004377278948 people:0.017588042898090763 loss:0.017192433346135697 right:0.017145186754310284 city:0.01655171543221547 and:0.01573494307411082 tion:0.015030993013070837 day:0.01461274370666285 time:0.014400456661779536 :0.5074859927274589 +and:0.08995317707915026 to:0.06844710404109794 of:0.04605142056172993 the:0.04074574508561307 which:0.02479116931334353 that:0.023764822140213245 re-:0.020841117231308055 in:0.020803825395358622 for:0.020278423301550053 :0.018417753428486977 not:0.016860793136637672 con-:0.016444405871234195 is:0.014386481772210856 or:0.014080680914153714 be-:0.01352268143271276 I:0.01317002660943805 was:0.011429878269381662 dis-:0.011196807025842847 he:0.01113106290024311 :0.5026826244902934 +of:0.1280990871142692 is:0.11660657108911543 was:0.0957041871977693 in:0.06844812512513018 with:0.06807837572000329 and:0.060812163850519706 to:0.05960758823398953 for:0.043519507107171264 as:0.04185255890738854 be:0.03632391651749366 by:0.03011100659491577 have:0.0241353674657678 had:0.02408387573220839 that:0.022515748478240775 been:0.016879432705642516 In:0.016834828953764258 made:0.016227822913443164 has:0.016219191698988125 Is:0.015103731557682238 :0.09783691303649689 +of:0.1693611595182513 his:0.14275625581568271 the:0.1322609607240086 a:0.07463791391951825 my:0.07066663180900624 and:0.0411421228789995 her:0.03942374549689096 their:0.02930090328823646 all:0.021436192473713683 our:0.019592807253483037 your:0.019304155244306415 for:0.018731616715293636 its:0.01824783414420152 that:0.017155303865412568 human:0.016287807167135352 on:0.01571109926196484 whose:0.01509518282352895 The:0.014429874393961066 in:0.012871546569173343 :0.11058688663723155 +taken:0.07942637463207572 came:0.07215489171125748 keep:0.054072063407349664 come:0.05203866648850985 made:0.04838255155111373 picked:0.043991897459835304 put:0.04055122705125447 it:0.0402589678517938 get:0.039430706555970876 take:0.03324585660133913 got:0.03310968949964431 kept:0.032580033537862055 brought:0.029500509515912744 them:0.026120910283163434 set:0.024194189605323168 took:0.021716179594348496 sprung:0.020450267030089474 and:0.019830952474550485 drawn:0.019716744087300047 :0.26822732106130576 +the:0.38774242047206825 a:0.11175241964120954 on:0.08591972850180644 in:0.04325804028981056 other:0.035210803725955274 right:0.03365076506531081 his:0.029857123397994453 one:0.024459458779885156 tho:0.021461649887217604 of:0.02125283532266706 and:0.019459349229426107 all:0.01884517159995442 or:0.01485520843236013 The:0.01453019668427071 my:0.012888071297801914 her:0.009068225223336389 every:0.00896568901283101 In:0.008287596753712188 by:0.007958764285127826 :0.08957648239725415 +and:0.06317916895143688 was:0.03089079697380977 is:0.020044819943736053 be:0.019406329289829806 are:0.016631216139614186 that:0.015910745835586493 it:0.014132589635136123 been:0.013429954470292457 made:0.013153338042273357 were:0.012494049396038097 or:0.012369181282419555 them:0.011608721240324167 up:0.01101461536327863 him:0.010833186604515583 as:0.010718511743974049 succeeded:0.010682665877813333 engaged:0.010592681714621757 not:0.009777868089593193 now:0.00948198968071834 :0.6826475697249881 +the:0.4800159248933578 a:0.07113357718543542 to:0.05385918300181428 their:0.0454035302050155 and:0.032545318098916635 its:0.03123287074719547 for:0.02597454395651768 will:0.02394077467588747 of:0.02369353855232681 tho:0.022239940911160737 this:0.021894067413900813 would:0.02112278551208141 his:0.01939059468321247 other:0.017833601241581436 or:0.01666081532917295 one:0.015965849275083505 our:0.012977362214230726 could:0.012058142494135489 all:0.01204844041136993 :0.0390091391976035 +;:0.027488708181287687 it,:0.01958917362811013 them,:0.011734148321642797 him,:0.009807221804048033 in:0.008313229650925371 time,:0.007688385999744575 him:0.007389625085221205 country,:0.006853233578626019 years,:0.00626528268415626 ,:0.0059988628132242065 and:0.005839985371392634 people,:0.005728202179933982 up:0.005606460628007509 up,:0.005333752120618328 year,:0.005161777230700628 one,:0.00505844778761419 here:0.004939839190866411 out,:0.004781955925715608 it:0.00465859216314566 :0.8407631156550187 +the:0.1367767909054747 a:0.1196485274254551 of:0.11116246263975771 in:0.10641485141337967 to:0.043467291451953494 an:0.04336085730084275 and:0.03638518854608528 for:0.026176902654111253 that:0.025565566340590762 In:0.022302554502270706 by:0.017800224851785805 more:0.016097580326725355 The:0.014704315095159947 with:0.014265353267700802 from:0.013273845606181502 as:0.010807147248388644 which:0.010324537808425049 in-:0.009132126799605872 be:0.008365280905878764 :0.21296859491022685 +the:0.16054863644640505 of:0.07709401650718521 and:0.051629720750063 for:0.04122089729884464 to:0.04057238541129143 in:0.038501882150964006 or:0.029566101627639837 be:0.025889982162033524 their:0.025858286712908685 his:0.021224882905231106 a:0.017142140077820438 this:0.01663685081479316 is:0.01631436859925879 was:0.013685951749950916 our:0.013342162466908707 he:0.01161483584863345 that:0.01152707328238817 tho:0.011203771188535695 :0.011096679729277754 :0.3643293742698664 +the:0.11919516938815296 of:0.07230453158552728 and:0.05781056740443249 a:0.043018564803886335 to:0.031305092790907506 in:0.020848713353460488 at:0.014270110001066288 .:0.012526810245749479 :0.012413283442322082 for:0.011719122709941797 by:0.010808400946589808 or:0.010404172990115616 The:0.01003576004804544 with:0.009811868184449042 tho:0.009295902015355835 was:0.008924239095331684 that:0.008672304223433876 is:0.0085591147338948 be:0.008335143826716943 :0.5187411282106204 +his:0.14511108160581512 of:0.14290120447112387 to:0.10668933413797675 her:0.07492026490016725 their:0.05797120290848511 in:0.05112083034384342 the:0.04570058788261683 and:0.04133808084877026 at:0.03361192596268113 all:0.032269976678441906 our:0.018590542231767652 for:0.018490186395518176 my:0.017026776053171336 from:0.014179690283210634 that:0.013768368132744886 by:0.013441400828756039 as:0.012993263046864562 with:0.012630737824761467 its:0.012521495811031215 :0.13372304965225237 +and:0.12664594101839524 I:0.08739354588141615 to:0.053406143636016944 he:0.052867187390344475 we:0.02969379273191592 that:0.02861971715427957 it:0.02664651277234707 which:0.025009348849051056 they:0.02340863689440628 day:0.0231847894417861 who:0.02265175477281097 then:0.021609272533337255 you:0.019707217261148113 1:0.01870736625095237 He:0.0183703298439288 not:0.01752297231788602 had:0.015675784396361844 be:0.014776281950368082 It:0.014530321351347455 :0.35857308355190026 +and:0.0702036685170535 :0.048383568486019 that:0.026466357360582192 be:0.0222260763210305 was:0.019851189264165733 is:0.018578349996004787 but:0.018183478994989243 as:0.01222144827648606 it:0.012104916009884606 it.:0.011666718382573342 are:0.011370838764218235 or:0.010624668610967428 used:0.010477750437537271 were:0.008840366264827397 time:0.008788182471536139 been:0.008593942339622858 made:0.008259710074209078 It:0.008185539991814691 them:0.008105957071651444 :0.6558672723648264 +of:0.030940425467313827 and:0.02164617849296709 :0.02105039257202286 the:0.015057155579554253 com-:0.01157075638240401 .:0.010883406480020253 -:0.0102109671935016 a:0.010147252286594128 ex-:0.009951793029343854 No.:0.0071599724021789565 in:0.00632225243498026 com:0.005346417399385508 A:0.003770440055121195 ::0.0035609793187879875 1:0.003180803684748158 prop-:0.003148153634000617 follows::0.0027953725061017603 to:0.002718911334103453 :0.002688211710124603 :0.8168501580367457 +and:0.07359963406644195 be:0.052667135004264946 to:0.04483536256874564 of:0.043448293679263235 the:0.03579172892628988 in:0.028005289969665195 was:0.026700397492138477 is:0.024892551934152005 re-:0.024162182625676702 he:0.024086629517294657 are:0.02098604388819216 from:0.020307931541148256 a:0.018606881911690538 or:0.018077853608073062 for:0.017195224169077532 been:0.01615904189338184 I:0.015254891559368164 :0.015184018660626356 which:0.015016145996292442 :0.464022760988217 +the:0.1616921900365711 of:0.08647200351290778 and:0.06460599492165252 a:0.05229641625886535 to:0.051471439820873696 be:0.03482406479457442 his:0.023334300431247307 is:0.021486461486155153 in:0.021024377453443033 their:0.020959403663823623 was:0.019578702450283484 or:0.015783463623905213 not:0.01410398753034685 for:0.013405696273699185 as:0.012829507086896978 been:0.01163769656313385 are:0.011143596222953396 at:0.01113326683081038 its:0.010560678660185592 :0.3406567523776711 +it:0.20661626833118804 It:0.13133310388077965 which:0.05346195225056892 he:0.04322413433168328 and:0.0399221355018402 that:0.03638459118631527 there:0.02656324547693805 who:0.022588363007738477 This:0.01601752777676921 He:0.015090910728543903 what:0.013686208311658789 she:0.01181234484166701 this:0.011752239301455133 There:0.009749183368011116 man:0.007759333367156636 as:0.007068481254995637 work:0.006691860301109499 country:0.006039779831696346 but:0.005362639996269743 :0.32787569695361507 +the:0.1454500361787387 of:0.1080247151493501 to:0.04516715868785427 boy.:0.036249098323069925 and:0.03403580073245388 girl.:0.032660326140049385 a:0.03171979252021135 in:0.02714044436566853 for:0.02365213940166824 be:0.021942286684630472 their:0.021087116084698817 his:0.019774122064073623 was:0.014637031197642503 with:0.014008395154201525 are:0.012730720509515858 is:0.011363112041341867 as:0.011357870543086747 from:0.01063391638067422 were:0.010589399829418696 :0.3667765180116513 +and:0.10413267165070786 that:0.03836445438269807 it:0.03325444276063772 them:0.02714527982449136 was:0.02309063580025664 but:0.021764114643607033 up:0.02159304175478875 made:0.02143758920384691 is:0.020304445201096324 him:0.01974172759774218 interest:0.01945226230635416 or:0.017231534176653223 found:0.016773279671575055 out:0.01667843140258246 placed:0.015945769380119688 done:0.015462726417016515 place:0.014266968498203931 time:0.013927559788757525 are:0.013471719295387976 :0.5249613462434767 +sum:0.03352282876311118 number:0.028116684882597106 line:0.019995206059833036 city:0.01946514558931857 out:0.019275318828420953 day:0.01666865340772654 county:0.014872697538657208 amount:0.013254184849875051 Board:0.01252325449624941 town:0.012449555905674143 side:0.011663975251122375 part:0.011517157473718155 County:0.011460540331966697 state:0.011087331502382173 City:0.010878919191854432 purpose:0.01081028255427907 and:0.010297866493795984 way:0.009848747943663767 name:0.009522170936943183 :0.711769477998811 +get:0.06973801171235608 and:0.049103033647525204 came:0.046872912605244475 or:0.03495839203003221 thence:0.03251868432789014 all:0.02919589578502482 was:0.029006923503150973 went:0.025890235838229227 going:0.025197019282034674 come:0.022404436044665247 getting:0.021741758513231207 is:0.021312231527422558 go:0.02119547392140186 miles:0.019533844583137307 running:0.019350951862444128 were:0.019278100807943427 got:0.018473237338293754 be:0.018322998350057858 are:0.01796799916923137 :0.45693785915068347 +the:0.3131966445588037 a:0.19494802106408154 this:0.0436972001789741 of:0.03136578572780555 one:0.02658139957235124 and:0.0201520649366192 The:0.017197492405953568 tho:0.014151476573556851 his:0.012124963134604696 an:0.011488080468063492 said:0.010540499657919393 any:0.010037009446317309 general:0.01002682242671273 other:0.009837021137014283 state:0.009831343251588385 that:0.009077893384598587 first:0.007911801174060169 last:0.00790707087880123 special:0.007740505963062225 :0.23118690405911174 +and:0.17865264609969703 to:0.10507532643009054 in:0.048848620014154326 that:0.04629806456890704 had:0.044407744075039016 of:0.03456648309217922 have:0.03369250110383176 which:0.03162113241216631 on:0.024383055272360107 for:0.02354067367142938 by:0.020574760186842202 In:0.020246653886103187 has:0.01842466558178431 the:0.018110938209078352 not:0.012519466781217367 was:0.01223654735408303 as:0.0121958878351715 with:0.011939297642109256 it:0.011650556066909868 :0.2900149797168462 +the:0.11919516938815296 of:0.07230453158552728 and:0.05781056740443249 a:0.043018564803886335 to:0.031305092790907506 in:0.020848713353460488 at:0.014270110001066288 .:0.012526810245749479 :0.012413283442322082 for:0.011719122709941797 by:0.010808400946589808 or:0.010404172990115616 The:0.01003576004804544 with:0.009811868184449042 tho:0.009295902015355835 was:0.008924239095331684 that:0.008672304223433876 is:0.0085591147338948 be:0.008335143826716943 :0.5187411282106204 +one:0.1028303141280697 part:0.05963429477052991 out:0.04766456937681193 some:0.031418679026461914 members:0.030764490253327767 side:0.029940657362655835 portion:0.022063658796890564 office:0.020457735219956013 member:0.019726706386316174 end:0.019666887540649894 tion:0.018667441728710307 parts:0.016814747270460957 people:0.014112771422418794 all:0.014072739582212475 any:0.013183573287639892 One:0.013083578354183906 that:0.013024335602903442 account:0.012482348155001894 many:0.012077825070275192 :0.48731264666452345 +to:0.12022893700269083 and:0.09020394424291768 the:0.08587503820055309 of:0.06450042443224316 in:0.0310058468700829 a:0.017742048521183405 :0.015548046036689871 not:0.01491307651316237 that:0.014112408707955496 for:0.013734482372212283 I:0.013065769926808477 will:0.012848502316304782 at:0.012837991177321897 In:0.012628718855091186 by:0.012491091048660757 be:0.011425930130217754 is:0.0113962101007567 he:0.011342727513475473 or:0.01112522537451577 :0.4219735806571561 +the:0.19077884427426206 and:0.07375609251777161 of:0.06974129894060214 a:0.038969325282324156 The:0.026858757806917367 to:0.026538438711652595 be:0.02329513026517434 Mr.:0.02276054485481867 was:0.020342373235074086 is:0.019163513513436755 his:0.019078351737926783 I:0.018968540446155403 or:0.016630628292240927 that:0.015498801147198609 tho:0.012849219592856233 in:0.012456475158510316 are:0.012409349119815193 this:0.011579542526007895 their:0.011330339187778598 :0.35599443338947623 +be:0.26516186265338204 was:0.15529690726703105 been:0.09198692006506673 is:0.07681591650878841 are:0.0552280416807747 were:0.047348756682234164 have:0.03689415706137395 had:0.030430934343900668 has:0.02951418617492875 being:0.02702251069140679 hereby:0.018948275051943467 and:0.016065756404382275 bo:0.01312147332376149 Is:0.012870414963845831 duly:0.011269539133666783 it:0.010871774829536813 not:0.009454470483677474 ever:0.007770085616413791 he:0.007230297674514291 :0.07569771938937049 +and:0.23055216946208978 and,:0.05633774519175712 that:0.02591927375723058 that,:0.022254588375570223 but:0.01584474500442237 And:0.015479305434025712 which,:0.011604553545346173 time,:0.009605847395487093 them,:0.007652981215939555 day,:0.006930283804225647 it,:0.005900510120047761 year,:0.005814714962170871 ;:0.005450565390355297 But:0.00529086276366819 is:0.005143270700716222 which:0.004663925682007652 or:0.00460170486931315 :0.004516988424831638 was:0.004392389004177362 :0.5510435748966176 +the:0.1570240084565133 of:0.10590908644411912 and:0.09674969228891185 a:0.05409977428600248 to:0.04420521420139775 in:0.04374290271699486 as:0.03291671409895969 that:0.02585331743536651 for:0.023772155107928683 an:0.023622677707681405 which:0.019148993357296272 be:0.0181068173690573 or:0.01617920951313584 The:0.015224627169880121 by:0.013986351152976003 are:0.01260159215197435 is:0.012579339405709971 con-:0.012509304043399859 with:0.012254095355555272 :0.25851412773713933 +hundred:0.02334136986593815 up:0.005482494641173394 men:0.005366536521246011 Hundred:0.0047587970519216575 John:0.00441808156134956 William:0.004390720675819281 him:0.004016828614280843 ;:0.003997112205305733 due:0.003721199871732 in:0.0036582900032443304 time:0.003637206863828461 James:0.0035594902370151707 out:0.0034878448964120057 .:0.003467980723571515 1:0.0032804584819785204 day:0.0032444781513863933 ,:0.003058139385740603 :0.0030314555521939613 Robert:0.003005471634785646 :0.9060760430610768 +the:0.1783903905248549 of:0.10071157022142184 a:0.06884733484371364 and:0.05037274136746275 in:0.048464812214712986 to:0.039530036563767704 an:0.0283769265665579 as:0.025948257208870167 on:0.022489918238169378 from:0.021574538465905898 with:0.019495774719128695 for:0.01885563813223768 at:0.018569276492933235 his:0.016056979073587267 that:0.015993581559139644 in-:0.01557483186616816 The:0.012038695467397454 their:0.011637569793886316 be:0.011624143871576596 :0.27444698280850777 +one:0.1028303141280697 part:0.05963429477052991 out:0.04766456937681193 some:0.031418679026461914 members:0.030764490253327767 side:0.029940657362655835 portion:0.022063658796890564 office:0.020457735219956013 member:0.019726706386316174 end:0.019666887540649894 tion:0.018667441728710307 parts:0.016814747270460957 people:0.014112771422418794 all:0.014072739582212475 any:0.013183573287639892 One:0.013083578354183906 that:0.013024335602903442 account:0.012482348155001894 many:0.012077825070275192 :0.48731264666452345 +it:0.12291356726271781 he:0.10766523848787593 It:0.08126222867785683 which:0.05815091424687329 I:0.054909855356083816 and:0.04607290301292405 who:0.036234513317437905 He:0.03284977251390459 that:0.0307500349566012 she:0.02807960748770171 there:0.017106531141060498 as:0.011444714915749334 She:0.009915288061780691 ho:0.009311744482256256 what:0.009144898696231517 1:0.008083327589627603 This:0.007923029238788926 lie:0.007752420127589498 man:0.007654383581502722 :0.3117750268454358 +is:0.1225602841906043 with:0.09961599990737095 of:0.0908970180506292 was:0.07366809764740122 in:0.05767352146276661 for:0.05431971823081727 to:0.05176511324700823 and:0.04459902508555252 make:0.04397593130214592 made:0.0426609238758159 as:0.04220467120691183 be:0.030123197760305403 such:0.02622368014916806 by:0.021861775373185555 have:0.019710764589926863 give:0.01833817392339509 from:0.01762153374403229 that:0.017374787366209458 on:0.017075208902223242 :0.1067305739845301 +bidder:0.726056955820417 bidder,:0.07228046273006469 more:0.009735276322579792 was:0.008451930080319444 paid:0.007280660114280757 is:0.0057314056053517064 be:0.00564638901108354 been:0.0047532967026902954 and:0.004533476482518762 day:0.0037030629420665485 it:0.003381163517966421 are:0.0029800814295344777 one:0.0027711553747558093 sold:0.0025958199110602 year:0.00252686327549704 made:0.0024269894873858726 held:0.0021556806726810364 as:0.0020695008605784667 time:0.0019657536938579275 :0.1279540759653102 +and:0.1186754243398805 was:0.05557201908661931 that:0.05114877819605404 is:0.04183713654306531 are:0.03275619315268959 but:0.0290618442170336 it:0.02831989335906253 were:0.026356530452405744 or:0.025265713450879378 be:0.025207757611916685 been:0.023342291354163037 found:0.020079636783083304 not:0.019234452604006462 him:0.016564848516594698 there:0.015653569622205543 them:0.014253348972024746 made:0.013335250327983187 as:0.012927897385688556 man:0.012862712672259725 :0.41654470135238403 +of:0.08142516472440994 and:0.06665931008788975 the:0.04827336443311073 a:0.04543399009068594 to:0.038767300606267464 in:0.03710497695497427 is:0.02602210623687323 for:0.0224815226473312 was:0.0209969023059623 that:0.01932489894072851 -:0.015353928808978594 with:0.014706766734734164 be:0.013869651317103894 on:0.012918323898796177 or:0.012609350248329544 not:0.010527232631839516 as:0.010115123333066404 are:0.0099149297273338 one:0.008859594813386192 :0.4836355614581984 +and:0.08702895176279112 there:0.058927250936514866 to:0.035400346865530785 of:0.03318835359839487 he:0.029721090938317957 the:0.028395147531536647 or:0.027446113860986294 I:0.02698318734392992 is:0.024111392845161932 con-:0.02328155154028612 dis-:0.022801970636421212 that:0.022732784862292243 was:0.021336766791126366 it:0.021264003740414997 for:0.021116168551113305 which:0.020876657506052724 be:0.02078242066191899 will:0.02041306214974865 re-:0.018881022153915777 :0.43431175572354525 +to:0.09864282010030183 the:0.08375297126946753 of:0.07074571151673052 and:0.06779046829403 a:0.02766650927741597 in:0.021670314456411932 at:0.021392828982420006 for:0.01627599403114278 is:0.015107338441904122 he:0.014818877918256685 was:0.013808540905081488 by:0.013132601340090633 it:0.012796195965848819 I:0.012723560421513859 :0.0121914922721236 not:0.011777366450725432 .:0.011011346691779235 that:0.01092359583028988 with:0.01073896800850032 :0.4520324978259654 +he:0.1507544984351815 I:0.09164904149078944 it:0.06578372146674706 and:0.05501730395860084 He:0.054220617478351926 which:0.04326301266437457 It:0.04236872144454286 she:0.04026059834481014 who:0.03190523962416281 that:0.018763394581449728 She:0.01627218748674772 man:0.013559121513187763 1:0.013393176846922537 lie:0.012387836623056508 ho:0.011353105518170668 be:0.008607481952495489 body:0.00803316112493385 bill:0.006981791529633747 there:0.006523232252475898 :0.30790275566336495 +of:0.28767355066866834 to:0.08775711267569858 in:0.08678131196995101 and:0.05160598694501188 on:0.04646139928102899 by:0.04519522654900943 for:0.044547789071328545 with:0.03396756772609607 that:0.033699232901107726 from:0.03075346596941143 at:0.027039283056790858 In:0.021061449543044047 as:0.017514234937992545 all:0.012543839382496166 upon:0.011844431150487573 is:0.00998972746569266 was:0.008814315973987914 into:0.008557199930727406 through:0.007781895704231326 :0.1254109790972375 +the:0.23421327699410194 of:0.07729813355368616 and:0.057939151945063695 a:0.057024454640586475 The:0.02934782965907043 to:0.027931546560025222 in:0.0249072108856551 by:0.02127876791997217 tho:0.01949966941424407 with:0.015372988714684748 that:0.012331344832945013 for:0.011401342814863099 or:0.010839957925655423 no:0.009932644361409105 an:0.009753592370983347 :0.009745163845855775 tbe:0.009557196555521045 .:0.009070893708205739 his:0.008291230399414496 :0.34326360289805696 +the:0.11919516938815296 of:0.07230453158552728 and:0.05781056740443249 a:0.043018564803886335 to:0.031305092790907506 in:0.020848713353460488 at:0.014270110001066288 .:0.012526810245749479 :0.012413283442322082 for:0.011719122709941797 by:0.010808400946589808 or:0.010404172990115616 The:0.01003576004804544 with:0.009811868184449042 tho:0.009295902015355835 was:0.008924239095331684 that:0.008672304223433876 is:0.0085591147338948 be:0.008335143826716943 :0.5187411282106204 +and:0.07701675128662025 is:0.03594666040217707 was:0.031475232342959 so:0.0252644231680843 wondered:0.019289920156562713 but:0.01886248801191906 arrived:0.018149680398517526 held:0.017990842975786184 it:0.017324299162031206 him:0.014915846392598388 be:0.013307277391991348 made:0.01277783644495074 looked:0.012577444721956169 look:0.012103715421717036 are:0.011918389769490874 that:0.011775066469058093 up:0.011286995913805564 out:0.010311311869951986 not:0.01023035788342364 :0.6164754598163988 +a:0.7215373904805706 A:0.06744722384880361 very:0.04501859764139452 the:0.03777345610807197 but:0.011781313365766695 is:0.00816896572046514 last:0.007538921364362335 past:0.007407223883618286 that:0.007365332197887782 are:0.007188261309456907 so:0.007153793703243572 and:0.0068536893400160705 n:0.0068524894456487824 Very:0.006465417293791574 as:0.006110042529390482 this:0.0059069032953172835 of:0.005525132456118392 one:0.003958776844912365 not:0.003763361663948157 :0.02518370750721541 +the:0.41140485035548857 this:0.1370182290295179 The:0.10785072257379437 a:0.09318975721289985 This:0.04571982323909549 no:0.030022628624061402 vegetable:0.023007047780709663 tho:0.017068212484235415 whole:0.012869759230844739 that:0.012786552979686658 No:0.009736637748578872 his:0.009657869930096553 of:0.009005480093861923 every:0.0068575838971993335 any:0.006837253217939214 tbe:0.0049073984355192946 its:0.004146663318445795 and:0.003665033315891789 their:0.0036478595581864452 :0.04960063697394677 +the:0.16807735899698817 of:0.10541662057906837 and:0.05138367848570702 a:0.04141865232648221 to:0.0385989743764065 in:0.026264864977736738 was:0.019530675665220657 his:0.018900421021236905 be:0.017373825006196972 their:0.015767721170721456 for:0.01557246589796783 with:0.014071419046630446 is:0.012922913111931644 at:0.012690452250034052 are:0.010702713108721902 .:0.010158075558988393 Mr.:0.009672788574483367 tho:0.009612591781990074 were:0.009549306361446321 :0.391314481702041 +.:0.10953760745092268 Mrs.:0.0672159316167764 Mr.:0.05356948538076053 J.:0.029499193963959214 H.:0.029485557769619787 Miss:0.027369521055009543 W.:0.02592482394934473 E.:0.024050618039370135 M.:0.02403579380498454 A.:0.022927659554303342 of:0.022569895841829196 C.:0.022273530362217183 and:0.022107156264323302 John:0.019165619621919802 F.:0.017109399107253065 B.:0.01702276108483869 L.:0.01625662072935215 the:0.014581234735437043 S.:0.013117511814985267 :0.4211800778527934 +of:0.10332965948447057 the:0.0974431639631528 to:0.08096456992530568 and:0.054666890376615596 be:0.05225021867124578 in:0.042345379677204247 was:0.04079743580008857 is:0.025950560930760733 his:0.02502637083826761 been:0.020653959940476987 on:0.018561829828001634 their:0.01852821564900014 not:0.01754334634554571 were:0.01684129939951298 a:0.016706127568429915 for:0.015909241784379104 are:0.014716370766533551 he:0.014346662555641794 at:0.013177519784993885 :0.3092411767103727 +that:0.26148270658366773 and:0.09876345218398215 which:0.09439756610291504 when:0.04910829535570802 as:0.04703966659705172 but:0.04170738046061683 if:0.03937396522108731 where:0.03609877203548356 what:0.024162455487967874 If:0.021889398027126424 said:0.021541845925337273 time:0.016388407034964594 because:0.016212775627569887 whom:0.015814673717230394 until:0.01176501655727582 then:0.00979867055384343 while:0.009743311343714443 says:0.008753115940097075 though:0.008632390248775561 :0.16632613499558485 +he:0.1752548552484544 and:0.1702065054028354 I:0.0893616136842238 He:0.05420575015106184 she:0.05132555172370465 who:0.03229313877587591 they:0.02826698853681103 then:0.026217830658643963 which:0.020331102937222362 that:0.01953156983066824 She:0.019270331061857916 we:0.015017085349622327 all:0.012343726529533161 it:0.01209829783244009 ho:0.010678776607095677 lie:0.010667662962682877 They:0.010485884985217523 man:0.010286831825654477 but:0.00984940302046239 :0.22130709287593195 +will:0.20916736470189376 to:0.17508492076666216 may:0.10870582386677985 would:0.06919867344113191 should:0.06622421513555539 shall:0.06157361358706081 can:0.05764596389550571 not:0.052225384003507645 must:0.04377394308881139 could:0.03504027058784331 might:0.020100374631977884 cannot:0.019530807161070515 it:0.008442980176823966 and:0.008146438168209104 that:0.004728750382307703 only:0.004175409922910022 never:0.003992966764091286 also:0.0036323735731567225 probably:0.0031118711152198237 :0.04449785502948107 +and:0.08995317707915026 to:0.06844710404109794 of:0.04605142056172993 the:0.04074574508561307 which:0.02479116931334353 that:0.023764822140213245 re-:0.020841117231308055 in:0.020803825395358622 for:0.020278423301550053 :0.018417753428486977 not:0.016860793136637672 con-:0.016444405871234195 is:0.014386481772210856 or:0.014080680914153714 be-:0.01352268143271276 I:0.01317002660943805 was:0.011429878269381662 dis-:0.011196807025842847 he:0.01113106290024311 :0.5026826244902934 +and:0.09512612691589199 of:0.03136850853273287 to:0.028450961154661673 with:0.01719875278565712 all:0.01560133653906688 :0.012708514299991222 it:0.012643228096259208 that:0.011583142649783024 the:0.01100453000934818 do:0.01072877310757454 but:0.010559371821858914 a:0.0099296496399911 men:0.009360359523646004 as:0.007938263483093871 for:0.007735517343330445 are:0.0076958044052895845 is:0.007428709492796025 two:0.006664623962084529 was:0.006101966672084206 :0.6791718595648586 +and:0.1016380631281271 of:0.09227839483661535 was:0.07473336009521761 is:0.07029179975398658 are:0.036610745472762704 were:0.026741641229182198 only:0.02549956797815472 or:0.024478113863635638 at:0.02419327009981587 bring:0.022782558017136387 all:0.021637670147629934 in:0.021351696495987105 brought:0.018639900140691633 for:0.01859744122427409 that:0.01700787213457539 with:0.015756150433963313 by:0.015368654926857026 Is:0.014645125042926746 be:0.014083924653324536 :0.3426640503251361 +the:0.12127815144420152 of:0.08740478470844742 and:0.07322177541123716 to:0.0645648636812882 a:0.05079131464895976 in:0.030692623960207343 was:0.0304748493314864 be-:0.026003944866024305 is:0.023005911194478534 be:0.019341503319133105 for:0.015518827888377088 The:0.014740435644538892 are:0.014439222344771397 which:0.014206123576454066 with:0.013830187341015994 an:0.013787062729965226 that:0.013333651221369426 he:0.011498129692465903 as:0.011406844996746806 :0.3494597919988315 +of:0.18396670040078922 in:0.1388812104550596 for:0.08890770153172223 with:0.08214806248548517 to:0.06569292593751727 on:0.06352329002903086 from:0.04260229038810473 and:0.036562074228713146 In:0.0355152234213551 that:0.025222899610017797 at:0.02300075617444858 by:0.02208300578797299 upon:0.01791900373545211 is:0.012444661031118737 have:0.009335136212675914 into:0.00797029472489838 take:0.007747584882464584 a:0.007299485678663757 was:0.0070247457604976525 :0.1211529475240122 +to:0.5845287391122325 will:0.06193033943549629 not:0.05152132752906749 would:0.0374935436228871 and:0.03527443550686881 they:0.022783657332208062 shall:0.02072839267732238 should:0.017993082617962994 we:0.016203179366615257 I:0.014382710563331057 could:0.014111054996122484 may:0.013099691843432076 you:0.012660083735183425 who:0.01229874457090874 must:0.011485511539873443 can:0.010932455981103269 or:0.0074117376326651935 never:0.007152348913416752 We:0.006860487726585952 :0.04014847529671669 +of:0.3279779158046699 in:0.2893860802966112 to:0.07837437675075155 In:0.0494938317512365 for:0.03353230412634753 by:0.03121524694208426 from:0.027597511193698777 that:0.02413498190071536 and:0.02111993752632848 at:0.012967400955456482 with:0.01263542804954148 on:0.010623950656536027 as:0.009620527165508708 into:0.009237059443466311 iu:0.005878744005996933 upon:0.0057365934646001916 which:0.005637910820593308 through:0.005283420178394371 ot:0.00488710323678531 :0.033659675730677324 +the:0.2637888457658903 of:0.18497552372490272 a:0.10388140541177586 and:0.06103762176726753 his:0.04756180213822802 The:0.04266261960084716 no:0.026528116207944003 her:0.020291107739840067 to:0.020252992606440565 their:0.018714261516401827 my:0.0171553622659255 tho:0.01674863538625253 in:0.012791140669429671 or:0.012307239310304188 for:0.011420080810368315 old:0.011370536682985108 with:0.011072648682874187 any:0.009552460071428324 little:0.009391434378260462 :0.09749616526263369 +and:0.08995317707915026 to:0.06844710404109794 of:0.04605142056172993 the:0.04074574508561307 which:0.02479116931334353 that:0.023764822140213245 re-:0.020841117231308055 in:0.020803825395358622 for:0.020278423301550053 :0.018417753428486977 not:0.016860793136637672 con-:0.016444405871234195 is:0.014386481772210856 or:0.014080680914153714 be-:0.01352268143271276 I:0.01317002660943805 was:0.011429878269381662 dis-:0.011196807025842847 he:0.01113106290024311 :0.5026826244902934 +the:0.11274823966931571 and:0.08329996793360815 to:0.062372082173126384 of:0.05346002906215973 so:0.0299749817344208 is:0.026294180790411077 be:0.020260006954324915 he:0.018124449911071136 was:0.016351044211737983 re-:0.01567649125103956 Mr.:0.014726716630740086 in:0.013675410003338988 for:0.013272602215284653 a:0.012159264338821467 I:0.012040910229586727 or:0.010977326121126826 :0.01035107289213954 are:0.010219913969554774 not:0.009881708091297656 :0.4531336018168938 +Mr.:0.7343895154668137 Dr.:0.02722936663941721 Mr:0.016803651226393917 John:0.005544002274092662 .:0.005105808280192536 James:0.004630597127667035 Mrs.:0.004485971630159722 William:0.004484684298765014 ;:0.003224370828968515 Robert:0.003185065990175269 Rev.:0.0029853005614696904 George:0.0029721366653470836 Senator:0.0029427970281204513 Charles:0.0028232954356694523 Mr,:0.0025548478992433368 wife:0.0023767164443981993 Joseph:0.002253998159621327 Thomas:0.002113531455885074 B.:0.0020438061319758404 :0.16685053645562395 +and:0.062368892695333904 miles:0.035229139086031244 away:0.033798254131158716 come:0.03151930360710932 free:0.02982137818504292 taken:0.023938396738278515 them:0.022818360175429576 dispatch:0.02170550074743128 far:0.02117966300767325 suffering:0.020894341867507295 received:0.020702203360987957 out:0.018686905561348593 returned:0.018640122804212844 exempt:0.017770445125254296 or:0.017278385339446842 came:0.016993940695613323 letter:0.015611952787209508 it:0.015261448097523991 coming:0.013898429671843878 :0.5408829363155627 +of:0.3716387075413922 in:0.09671903698821724 to:0.0772075233545754 that:0.03470020597158995 by:0.03467173475791107 for:0.03263341336115185 with:0.028661689284926923 and:0.02333245779896124 from:0.02206771351492586 on:0.021639399931672236 all:0.01921934823067841 In:0.018242067024192923 is:0.013988758873468544 at:0.01381994875305849 as:0.013504059774881573 upon:0.011235428945220331 was:0.008596785620363236 over:0.007942663213454808 which:0.007712703129565481 :0.14146635392979218 +of:0.09129790931378902 the:0.07369883040827747 and:0.047842263382354346 in:0.04189055351593407 to:0.04045875475680249 a:0.03542341257202578 be:0.02020462051672066 for:0.01979292654746225 was:0.01760256398103379 at:0.017380150555488715 is:0.014984483003968216 with:0.014047653760730413 by:0.01374644383819499 :0.012670486581795598 In:0.01200961464556976 or:0.011563835749786333 from:0.011391516893522809 are:0.011273104484969465 that:0.010755276030689069 :0.4809655994608848 +to:0.6625244385777254 will:0.06420186792045086 and:0.04514374425734492 not:0.037533732983268286 would:0.033041146070471435 should:0.017751560002775196 shall:0.015392054805540513 may:0.013583476008103489 could:0.010742531584399955 can:0.010719095720343347 I:0.008653738550038717 also:0.00846846022449537 must:0.007821699936417003 who:0.0063201431977527 never:0.005668347089151698 To:0.005339391853712109 they:0.005259359813994727 you:0.005155461099440854 lo:0.005023010415598409 :0.03065673988897514 +the:0.3120724507767384 and:0.07349215744272121 a:0.07057929557236314 The:0.06156559407603441 is:0.05647467165960596 in:0.05097367235227119 an:0.04573292476200068 of:0.03475992169984257 this:0.031714410618967924 for:0.027960775839099256 be:0.023916751689273083 as:0.01935549710439907 it:0.0168027448499892 with:0.016553500221168152 tho:0.014964366419749906 that:0.01422028572148782 was:0.013985117288244659 very:0.01239802776985877 In:0.011861206097456577 :0.08961662803872802 +J:0.11254793023423569 W:0.08504879178333988 S:0.07761107292094802 M:0.06856113485546284 C:0.06714376766704942 F:0.05376698719029221 H:0.05308279389905818 E:0.046818060315573444 P:0.04155761459765031 B:0.038564635727935864 D:0.037735087453410955 L:0.03651105351939534 T:0.033070988711362284 R:0.032313988822121886 A:0.03020571950648328 N:0.026254109475205942 G:0.01704202086256814 .:0.016926149077335032 II:0.014276412378767228 :0.10996168100180408 +his:0.14511108160581512 of:0.14290120447112387 to:0.10668933413797675 her:0.07492026490016725 their:0.05797120290848511 in:0.05112083034384342 the:0.04570058788261683 and:0.04133808084877026 at:0.03361192596268113 all:0.032269976678441906 our:0.018590542231767652 for:0.018490186395518176 my:0.017026776053171336 from:0.014179690283210634 that:0.013768368132744886 by:0.013441400828756039 as:0.012993263046864562 with:0.012630737824761467 its:0.012521495811031215 :0.13372304965225237 +enacted,:0.06256014089984197 Resolved,:0.06050834319749179 :0.04919939516058845 Given,:0.03974006881577333 enacted.:0.03878377175339606 2.:0.03717145041662232 .:0.0340808103078812 Provided,:0.024217120884400162 it.:0.0203039946036267 3.:0.019266991534855775 1.:0.017257380644251447 4.:0.014667310371124216 law.:0.011931768396908663 5.:0.011248550308300317 ::0.00953204745116994 further,:0.007918168759397288 6.:0.006899694068310239 thereof.:0.006395783752299257 them.:0.006290348515092897 :0.521026860158668 +:0.08674541984744848 it.:0.025811555918541892 them.:0.020920893938997237 day.:0.015176204635168899 vinegar.:0.012906744107948856 him.:0.011712994587757172 time.:0.010863672394171854 night.:0.00961512500560531 year.:0.009295205516831386 country.:0.008704557939085554 water.:0.008690134528636019 city.:0.008571314945068496 .:0.008339323003815667 years.:0.00816190509981246 life.:0.008115598114839306 tion.:0.007394958773689629 men.:0.007108366737235287 out.:0.0069597094624441165 again.:0.006644336084046744 :0.7172619793588556 +and:0.05434643519684508 was:0.02912206675038061 are:0.023559168478510688 or:0.02306464218083814 sold:0.022984036108328543 held:0.02220921214882731 that:0.02004106882781734 be:0.0195095827458073 them:0.019246005478694286 is:0.01840846815051299 not:0.017681688189034265 made:0.017159101938736054 place:0.01655670769585409 for:0.015957939961236168 arrived:0.01585980197491533 sell:0.01581105293737285 him:0.014563275648971578 it:0.014350365085544086 look:0.0142120512181898 :0.6043573292835835 +of:0.4655895846322175 in:0.2404963324687856 In:0.044665220124790024 to:0.044209561544886304 throughout:0.029024248435006787 for:0.022327274761759417 by:0.021750564621487795 from:0.020228626107104127 that:0.01604717713990559 and:0.01346034087075857 with:0.011489680753916728 into:0.00946413115106544 on:0.009025263555494002 over:0.0063359867975953995 ot:0.005569739830589496 at:0.005318612336782695 through:0.005223985183921182 as:0.004849636694365833 upon:0.0047272605451028635 :0.019196772444464685 +it:0.13135155107971372 I:0.08412841037081532 he:0.08270758555763082 It:0.06313901345543892 we:0.06218970162732115 that:0.054788880378599476 they:0.04981926699843268 and:0.048394124423374006 which:0.04833519534154734 you:0.040643059050409255 who:0.029311568300202907 one:0.02331003326182839 We:0.020821407528102815 she:0.01783623917884928 but:0.014072872908681465 He:0.013540908747049846 man:0.012486823414663686 You:0.012032356384468718 there:0.011602089740157947 :0.17848891225271227 +Miss:0.37953408412677697 and:0.1345143346007264 Mrs.:0.05170470511757579 .:0.026873779487412014 of:0.023411020942788425 by:0.021057702535491683 Misses:0.017880943688086723 to:0.017355767467402937 A:0.012254858097677158 the:0.01123192201186643 W.:0.010095090409596068 S.:0.006924721244637042 at:0.006762420690445786 E.:0.006355451302455271 John:0.006272712938728156 from:0.005880856083120271 J.:0.005844023870550588 A.:0.00567452992910959 a:0.005371338023263758 :0.24399973743228892 +It:0.16483324464261526 there:0.15137929784652215 it:0.1389856574030547 There:0.07635769296985051 This:0.047005115735994085 which:0.03400493914593651 he:0.03276953491232582 that:0.032534901302704186 this:0.027705240540618296 He:0.025980981107979893 and:0.02571984886254885 who:0.015928391857077187 Here:0.008658225427457844 That:0.0071330239854848695 she:0.007117899171284279 one:0.006746549293447637 She:0.006029619888080546 man:0.005607440676998042 what:0.0055587671977417805 :0.17894362803227754 +the:0.3740814978037227 a:0.12812500999243526 of:0.05496483771694943 on:0.04618120326601553 and:0.02814388807243245 in:0.025634539961161447 The:0.019708873356646926 for:0.018467024989323972 tho:0.01825059284376505 this:0.01602114578844693 said:0.013459256130751718 to:0.01268261390733192 an:0.012607371082923443 his:0.01008763514886468 any:0.009999445818639709 that:0.009715724943521022 which:0.009426165934906947 from:0.008563428827169593 tbe:0.00818577648031998 :0.1746939679346713 +the:0.23609788052347017 of:0.06798576232690785 his:0.0463071103829185 two:0.04367615782878089 their:0.03940485579113028 and:0.026598056487061244 a:0.026583945899707986 freight:0.026100902693892564 few:0.025884989872348826 one:0.0252033154794765 hundred:0.0224646480636447 five:0.021350971731201658 three:0.020339252005188574 The:0.020036759293856853 our:0.019868316017598697 to:0.01887835173553022 her:0.01811385462857114 sleeping:0.017791657923281586 other:0.014708883812597193 :0.2616043275028345 +it:0.15590291243815246 there:0.0887784025092866 It:0.07904016205387611 which:0.06936908824431676 they:0.05362226352982171 that:0.04647101454662571 and:0.04420120519214072 he:0.027952982163116303 There:0.027623278151575524 mortgage:0.023443129896555264 you:0.018859539766003214 who:0.017891862574647276 this:0.014117846301193209 I:0.01363040583752058 sale:0.011818751696880098 This:0.010767348085132659 work:0.010306262168963347 as:0.009927627839447666 They:0.008978002990569422 :0.26629791401417535 +the:0.10336983496615278 of:0.07543688350053557 and:0.06641644690227996 a:0.04455859280514038 to:0.03951391183407334 be:0.030966861721460015 in:0.030146059226641746 was:0.02880487163345596 is:0.016456555486564176 :0.014268559619302467 at:0.014138495910890675 for:0.013691162369318591 or:0.013653239614092283 .:0.011458704682463305 Mr.:0.011455809661350676 his:0.011360920796348824 are:0.011169575397813998 were:0.010356811134618766 been:0.009941051066127606 :0.4418356516713689 +of:0.19332921285303095 the:0.08214888057090204 and:0.057804435068592216 in:0.05584050365688004 to:0.04573609146480751 for:0.02977132720807451 a:0.029326935155911615 that:0.02548896643841846 by:0.02112999119913167 as:0.019611023195769402 on:0.019475884272398245 :0.01896782116576423 from:0.014100434512321734 with:0.013379439041169158 In:0.013048227155843889 which:0.012352673516441828 at:0.00988870984880886 The:0.008783522391128413 his:0.008430488545125923 :0.32038543273947934 +the:0.26638743201226417 of:0.07534345390059106 and:0.059116401259253167 a:0.033325142943782006 tho:0.021187103372106626 by:0.018410520653131188 The:0.017317535764414273 an:0.01668079545229709 to:0.016675317507067803 in:0.012994329443787346 :0.012618410145371373 .:0.01143036754820142 with:0.010830298751670561 tbe:0.01075105797012021 his:0.009888806352943286 at:0.00923157920827857 on:0.008252005704320296 or:0.008165787795333827 that:0.007281568935177473 :0.3731120852798882 +and:0.07558940021936399 recorded:0.030196237618668006 was:0.028917161578042846 made:0.027969746247669736 that:0.027730098932509103 o'clock:0.025060522019555328 up:0.023026552239529506 is:0.020398277211376416 found:0.02003101797656537 placed:0.017482208134164214 out:0.016937164562539058 place:0.016819459500107596 interest:0.016629321966808677 him:0.016002796715253755 situated:0.01573420479581609 it:0.015128305982428461 them:0.014715943643665314 part:0.014646613000297721 interested:0.014450471929902294 :0.5615344957257364 +it,:0.013032699509385596 up:0.011395945404711234 ;:0.010474066333497479 them,:0.0098495158283353 years,:0.008905583544827126 here:0.00842564836048416 it:0.007805526703465134 him,:0.006973873020684981 him:0.0068900254800098246 out:0.006838040139981952 time,:0.006686332263106058 time:0.006381338382960565 year,:0.0062160140962868 work:0.006150096450800869 in:0.0054162262192399245 them:0.005387310725756669 :0.005384480733251685 man:0.005366481890792831 country:0.005150633225190106 :0.8562701616872317 +a:0.16501315257997753 the:0.14764472680704332 to:0.11000347535757413 no:0.0733849020403969 more:0.0727517484041122 not:0.05382254692371234 greater:0.05250998182273045 better:0.03129428852840851 any:0.030240342201347647 that:0.022853016626020968 less:0.02164661951423421 great:0.02019534958759015 this:0.019138327623644903 and:0.0179552388772271 larger:0.01578105384270977 other:0.015652693206244284 of:0.014582321636238153 little:0.012473451363390889 for:0.012100335725657543 :0.089956427331739 +the:0.6468969745357499 The:0.13229043052142736 tho:0.034370343563516266 a:0.03139145071705714 at:0.027970591514210892 his:0.02727654623136383 tbe:0.013673014984234271 my:0.010174657913804199 their:0.009222321679446768 our:0.008062064911914522 Tho:0.006765590452555184 its:0.006216539219746526 At:0.006069696440040139 and:0.0051250924952546606 of:0.00481151305396554 your:0.003876153281387831 His:0.003673369272552652 this:0.0035155716301508806 her:0.0032263148496026956 :0.01439176273201872 +and:0.09250741093604914 of:0.06895330541934497 put:0.0674514796868645 as:0.06267112065678532 make:0.05425702335259153 that:0.052172000015098294 for:0.0431753586139634 to:0.039608103116352225 with:0.03596771598109795 found:0.025212428927664336 find:0.024833099583985673 made:0.023802655933713977 but:0.02326661010304946 get:0.020143286431190992 give:0.01956366561589181 take:0.018815588507891064 is:0.01846724682485093 upon:0.018178882012065193 by:0.01816454276129662 :0.2717884755202526 +men:0.024290799521085083 city:0.021398872638671504 State:0.017788484625793348 hundred:0.015542012007810196 gold:0.01445145792976337 good:0.01386362746194447 state:0.013402294909105668 life:0.013277519453991783 day:0.012727347276509655 women:0.01191440055228323 States:0.011860047117390842 cities:0.011857954733258059 up:0.010876772232662497 peace:0.010366437430649904 health:0.010299237219587557 out:0.009847968918826114 time:0.009563037064527637 strength:0.009326293048009833 law:0.008847164825922375 :0.7474982710322069 +and:0.07558940021936399 recorded:0.030196237618668006 was:0.028917161578042846 made:0.027969746247669736 that:0.027730098932509103 o'clock:0.025060522019555328 up:0.023026552239529506 is:0.020398277211376416 found:0.02003101797656537 placed:0.017482208134164214 out:0.016937164562539058 place:0.016819459500107596 interest:0.016629321966808677 him:0.016002796715253755 situated:0.01573420479581609 it:0.015128305982428461 them:0.014715943643665314 part:0.014646613000297721 interested:0.014450471929902294 :0.5615344957257364 +not:0.21107617373463183 and:0.1315067776408981 is:0.060961191195014114 as:0.06017709987495592 are:0.03976394885376299 was:0.03447599396712722 be:0.027038586936511576 it:0.019126759468143576 And:0.013948850391057935 have:0.012747688433911882 had:0.011702713295889622 but:0.011374166936534865 were:0.010242365978661525 that:0.009555861673917265 will:0.00948409602941858 never:0.009290163410849114 do:0.009279176269800527 now:0.009251934792319125 has:0.009182283414308871 :0.29881416770228536 +it:0.11552820197881064 and:0.09378978723300249 he:0.09095117251649118 which:0.08935814052713498 that:0.0768473714679785 It:0.06985480639522891 who:0.05579781046056837 He:0.03760905287199872 This:0.02409983418571054 what:0.022019770149928355 as:0.01778696646978138 this:0.017567368979151655 she:0.01656352696913481 one:0.012099330070113757 I:0.010996060425491555 there:0.010842692345869629 man:0.010433388096791665 never:0.010428429483272574 now:0.010081166497029052 :0.20634512287651124 +of:0.4171530685822191 in:0.15364795170040718 to:0.072729747264764 and:0.03641551018325196 that:0.03587588251840872 for:0.02973515401421885 by:0.028615577548459153 In:0.025853498822230658 throughout:0.024539330146851564 from:0.02260509632580598 with:0.017713104405098146 all:0.015463704322556377 on:0.013151408020921742 at:0.011926809002406537 over:0.011916780548291015 into:0.011243032264786412 upon:0.008985432312382 which:0.00839901931127398 as:0.006922430890316839 :0.046107461815349804 +and:0.09967423836018655 him:0.040064414093878974 put:0.03893523302958388 was:0.03691133871707391 it:0.03354565939764684 down:0.029029336129348954 out:0.02784051658731953 up:0.025066956321874726 placed:0.023709922850846187 back:0.02145155346453866 went:0.01827162453361061 work:0.015431389433479532 her:0.01497549864100605 fell:0.014915998059901004 sat:0.014085113713964172 home:0.014076509690068826 up-:0.013930380087691862 stood:0.013868053532901235 sitting:0.01386014352822562 :0.48935611982685284 +to:0.12022893700269083 and:0.09020394424291768 the:0.08587503820055309 of:0.06450042443224316 in:0.0310058468700829 a:0.017742048521183405 :0.015548046036689871 not:0.01491307651316237 that:0.014112408707955496 for:0.013734482372212283 I:0.013065769926808477 will:0.012848502316304782 at:0.012837991177321897 In:0.012628718855091186 by:0.012491091048660757 be:0.011425930130217754 is:0.0113962101007567 he:0.011342727513475473 or:0.01112522537451577 :0.4219735806571561 +of:0.28767355066866834 to:0.08775711267569858 in:0.08678131196995101 and:0.05160598694501188 on:0.04646139928102899 by:0.04519522654900943 for:0.044547789071328545 with:0.03396756772609607 that:0.033699232901107726 from:0.03075346596941143 at:0.027039283056790858 In:0.021061449543044047 as:0.017514234937992545 all:0.012543839382496166 upon:0.011844431150487573 is:0.00998972746569266 was:0.008814315973987914 into:0.008557199930727406 through:0.007781895704231326 :0.1254109790972375 +the:0.1633663660775452 of:0.09747598882918422 and:0.05264361705612702 The:0.02135138689816246 to:0.01974112731881957 Mrs.:0.015428398418772409 that:0.0143268214509199 was:0.014038455710917615 a:0.013977928519291055 as:0.013947730044222043 be:0.011959043197402978 on:0.011121305003275338 tho:0.01015212174146515 is:0.01003619019009447 Miss:0.00939339209855728 by:0.008955337321793802 are:0.008897992271500638 :0.008743797433455176 -:0.008587834636480211 :0.4848551657820135 +the:0.4872577228625216 of:0.06515855207571816 The:0.04986420565968443 a:0.04647633200561061 and:0.04603543677907898 said:0.04220422329351329 at:0.03280631836614338 tho:0.030105069913692703 to:0.02006775354108389 for:0.016245663721516024 no:0.014448302949538258 tbe:0.014428304365451207 great:0.013595902080552596 in:0.012769987291156668 or:0.012160415751961726 such:0.011278532375318099 any:0.01122663098170309 by:0.009153341500610314 that:0.008886616514731592 :0.05483068797041337 +the:0.2516238230758763 a:0.16462910556867275 The:0.04706050092572105 of:0.04636600903575678 and:0.03629706032167652 an:0.02808163702629338 that:0.019225736910857494 A:0.019060869569204813 tho:0.01675220683166768 by:0.0156399758864158 any:0.015477674879179183 no:0.01484653383201197 or:0.012451632226820513 every:0.01243365534681483 to:0.010838940156310203 .:0.009145501340983849 tbe:0.009003138327935355 Mr.:0.008920306749883592 in:0.008005889195797712 :0.2531398027921203 +and:0.10804842315128012 of:0.09131711769799457 for:0.07712672107110669 is:0.06700143769187449 was:0.06239900851042989 to:0.055876599717832584 by:0.049932457777257404 with:0.04771826167775357 have:0.04320448817560637 as:0.03560576082274519 that:0.035300419941961494 be:0.03484599947282513 had:0.031808318985884564 in:0.02530763387571242 has:0.021711355777978662 at:0.018256445158014143 such:0.016769404552543277 made:0.016098115007665524 make:0.01409078451721785 :0.14658124641631604 +is:0.10064671431432391 and:0.0962328291592398 was:0.07710848850187046 are:0.055732097888008536 be:0.04562719794117149 not:0.030065027008551046 were:0.025091010173977357 it:0.020026188568248938 or:0.019450103889318313 been:0.017095269095719054 now:0.013963000608119995 made:0.013540497844162268 that:0.013111121359206439 them:0.012158744073991049 him:0.011904926498813322 being:0.011809103285356545 out:0.011719234810629184 found:0.009603075028578911 up:0.009223353552945254 :0.4048920163977682 +to:0.2889602196493049 will:0.15491875815058648 may:0.08347527394313319 should:0.07560459235158427 shall:0.07158884919641716 must:0.05282448921763794 would:0.04369643210482529 can:0.03756051700649176 not:0.03722435626296042 could:0.026423688674761876 cannot:0.02159597546780316 might:0.01562973586589427 and:0.00857463691331293 that:0.007274066829685875 it:0.005442645541338391 never:0.004422138740574294 also:0.003955641617515465 soon:0.0038582829259533363 which:0.0033020754648527893 :0.05266762407536621 +the:0.1434900721819344 and:0.1378336571096791 of:0.058895124509660494 a:0.0581213769024686 to:0.04007253075152276 in:0.031743632191104224 or:0.02049152227053014 that:0.01744641108370987 is:0.015454444545097017 for:0.013052278663816688 The:0.012293728093537033 be:0.011982802831446884 two:0.011654862679405248 an:0.01065346338776948 this:0.010594250891501185 not:0.009610087241882143 was:0.008930474750186112 tho:0.008714533649996583 :0.008692350301772725 :0.36927239596297934 +and:0.142714704118096 that:0.06217233792180303 to:0.032919136985974824 as:0.03197995136689042 but:0.029819767235437514 :0.020704646488788486 for:0.018461906507667526 of:0.017470454994408382 which:0.017086434230727025 in:0.009218116612213993 when:0.009136650377332935 by:0.008824328826506857 so:0.007806656996639629 is:0.007632611346440229 was:0.007556447384128346 it.:0.00725756627065436 Then:0.0071637091456573 then:0.006691022230795556 think:0.006600153477303164 :0.5477833974825344 +part:0.1296043478343348 much:0.11730200534318094 plat:0.04509869980099035 payment:0.034119867553065245 portion:0.03305768510484657 amount:0.028829005614228458 one:0.023839914604643075 holder:0.022933307815693648 proof:0.02213331284493999 conviction:0.020249967984270905 copy:0.017041168520445665 side:0.01639552348983603 that:0.014150325075215745 value:0.01386163408019102 lieu:0.013769517090262366 term:0.013251415130745788 survey:0.012843687219543588 tion:0.012451694407650288 number:0.011667770349664493 :0.39639915013625104 +of:0.2181601087018729 in:0.1841821958641136 In:0.09014882547316967 for:0.07261087072448275 to:0.06993816614857531 from:0.04097230459157619 and:0.04021330723957371 that:0.03359992531118071 on:0.0334973870565122 by:0.029823763074853297 with:0.02275079296071213 at:0.015581619578381412 into:0.014585642420648479 through:0.01309595498488657 upon:0.011655634347964619 over:0.009879173182375698 all:0.008312895703696862 iu:0.007981794689195956 up:0.007209263950969328 :0.07480037399525857 +to:0.12022893700269083 and:0.09020394424291768 the:0.08587503820055309 of:0.06450042443224316 in:0.0310058468700829 a:0.017742048521183405 :0.015548046036689871 not:0.01491307651316237 that:0.014112408707955496 for:0.013734482372212283 I:0.013065769926808477 will:0.012848502316304782 at:0.012837991177321897 In:0.012628718855091186 by:0.012491091048660757 be:0.011425930130217754 is:0.0113962101007567 he:0.011342727513475473 or:0.01112522537451577 :0.4219735806571561 +the:0.6115644321317313 The:0.0755826115180125 a:0.05929622946324642 and:0.0482238783345138 tho:0.03501358130917487 tbe:0.015126115986393648 by:0.008863531262450196 in:0.008798350771422998 large:0.008113518714863436 average:0.007769154935246891 that:0.007319419151588232 any:0.006769084026300922 great:0.006719558754552558 full:0.006125450268705864 of:0.006092370734623703 high:0.0060850344284680245 or:0.005691568509290068 total:0.005647777686132491 good:0.004846535584377698 :0.06535179642890439 +to:0.09864282010030183 the:0.08375297126946753 of:0.07074571151673052 and:0.06779046829403 a:0.02766650927741597 in:0.021670314456411932 at:0.021392828982420006 for:0.01627599403114278 is:0.015107338441904122 he:0.014818877918256685 was:0.013808540905081488 by:0.013132601340090633 it:0.012796195965848819 I:0.012723560421513859 :0.0121914922721236 not:0.011777366450725432 .:0.011011346691779235 that:0.01092359583028988 with:0.01073896800850032 :0.4520324978259654 +the:0.24883209272210036 to:0.1559588477507266 bearing:0.08368411705968434 from:0.06517011764526884 of:0.05744907552314052 and:0.05154335251779586 that:0.030102459306533914 candi-:0.02492495537068262 at:0.02329905484076418 in:0.021034778741363253 after:0.019625820605601547 on:0.016975802219755948 a:0.016758378008403737 by:0.0162464024180074 for:0.014934367973893555 this:0.014793528885888363 tho:0.013602822734625743 not:0.009464967555783075 said:0.008255044741956746 :0.10634401337802339 +he:0.14519154819666272 they:0.09941957198005086 it:0.09103685564305851 I:0.07725979804995922 that:0.05880784664806277 who:0.04142544022830454 which:0.03425579668718437 we:0.03383323017367262 she:0.030557557912937856 and:0.029549027756688065 It:0.027651304113333327 you:0.02541936174001506 He:0.017858630204185568 there:0.011666468361678528 one:0.011249610155291337 1:0.010863743282666788 ho:0.010132138242856352 They:0.009176864674348717 be:0.008540426376532956 :0.22510477957250982 +of:0.08026350688139552 in:0.0456556260712789 to:0.0441331335368322 on:0.04406060396383845 and:0.03308353270890034 for:0.028866291195570187 by:0.01713457183796441 that:0.017088600598797823 with:0.01655858403161186 from:0.01651519840074921 upon:0.01537680498098256 at:0.01462332622741969 things:0.012499872694221452 one:0.009373752540777883 those:0.009324664462498324 In:0.008686600144916535 under:0.007281720187615465 after:0.006864373185751423 but:0.00679646542768377 :0.5648127709211939 +the:0.11873523924034027 a:0.09539157479753758 per:0.09456893567152203 of:0.043023373556597584 two:0.02880095597110966 three:0.027532590817341468 twenty:0.0252698902941451 many:0.022291255172573708 six:0.021742004752846922 four:0.021679928970877668 con-:0.021676579823725044 and:0.020812280337681618 hundred:0.019857985149206326 their:0.01790970815556144 half:0.017036010076754437 five:0.016761366411613812 few:0.01628376812007953 several:0.016275240810667436 fourteen:0.012881861215165944 :0.3404694506546524 +and:0.14507320772351315 fact:0.08580533594336559 said:0.056464728489513914 so:0.05141663139801109 believe:0.03728868944610554 is:0.032697255055655516 say:0.030323479159427524 know:0.029749358812227955 found:0.025535190692382553 stated:0.021273605064562356 show:0.019511948220510757 but:0.018999393120383457 says:0.018814328565908398 think:0.016893655385130203 was:0.01658797795582863 all:0.01652317309060226 see:0.015409038245983688 opinion:0.015263158537430448 order:0.014744011681695817 :0.33062583341176116 +be:0.14216058727952297 have:0.13719495628154144 has:0.12863081846371716 was:0.07973996951807556 had:0.07396097410892849 is:0.05911314104223098 and:0.05008326394126328 been:0.04677717741881847 hereby:0.041938463208457524 are:0.02537547195419569 were:0.02359937437432426 having:0.014984719259107833 being:0.013830391566214429 he:0.013234427936954908 Is:0.01184332651523252 not:0.010742400924061446 so:0.01000767535895342 it:0.009323231254285217 bo:0.009227474150186443 :0.09723215544392802 +of:0.19271993207475108 and:0.12467366995353944 in:0.07231074361529238 to:0.06242628352197255 at:0.04618611108257369 that:0.0434273544631262 with:0.03637067705535393 on:0.03635696090802566 for:0.03386919221230831 by:0.02665756984153553 from:0.026392292031087058 are:0.02083440225460235 In:0.018364192734505107 was:0.016391289218422818 nearly:0.01491791340554394 is:0.014536810350990087 were:0.012163883875832232 which:0.009397745508264523 but:0.009099192515724401 :0.1819037833765487 +and:0.07359963406644195 be:0.052667135004264946 to:0.04483536256874564 of:0.043448293679263235 the:0.03579172892628988 in:0.028005289969665195 was:0.026700397492138477 is:0.024892551934152005 re-:0.024162182625676702 he:0.024086629517294657 are:0.02098604388819216 from:0.020307931541148256 a:0.018606881911690538 or:0.018077853608073062 for:0.017195224169077532 been:0.01615904189338184 I:0.015254891559368164 :0.015184018660626356 which:0.015016145996292442 :0.464022760988217 +the:0.10487926848154741 and:0.07367762126832814 to:0.055978731956902276 of:0.053937134256367966 a:0.03437862963207337 for:0.020827054167738352 was:0.020762247879421956 in:0.02062849381876628 be:0.019089456305750787 his:0.016465875480630325 their:0.01581941195105246 at:0.01569246776961328 or:0.015601273349648127 is:0.013334521537317633 that:0.012882215925524906 are:0.012074418504842746 were:0.011692566222298905 with:0.01162234377717673 on:0.010616910746550837 :0.45903935696844755 +of:0.09129790931378902 the:0.07369883040827747 and:0.047842263382354346 in:0.04189055351593407 to:0.04045875475680249 a:0.03542341257202578 be:0.02020462051672066 for:0.01979292654746225 was:0.01760256398103379 at:0.017380150555488715 is:0.014984483003968216 with:0.014047653760730413 by:0.01374644383819499 :0.012670486581795598 In:0.01200961464556976 or:0.011563835749786333 from:0.011391516893522809 are:0.011273104484969465 that:0.010755276030689069 :0.4809655994608848 +one:0.1028303141280697 part:0.05963429477052991 out:0.04766456937681193 some:0.031418679026461914 members:0.030764490253327767 side:0.029940657362655835 portion:0.022063658796890564 office:0.020457735219956013 member:0.019726706386316174 end:0.019666887540649894 tion:0.018667441728710307 parts:0.016814747270460957 people:0.014112771422418794 all:0.014072739582212475 any:0.013183573287639892 One:0.013083578354183906 that:0.013024335602903442 account:0.012482348155001894 many:0.012077825070275192 :0.48731264666452345 +:0.11888423158285746 it.:0.019541819137129927 them.:0.016406422537139715 article.:0.0127929412074995 country.:0.010509442821991503 day.:0.010455394712470105 law.:0.010184012398268811 .:0.009912288789038345 time.:0.009706922363999884 of:0.009057330146103736 people.:0.00875161119433738 year.:0.008316869249370971 him.:0.0076410983555199406 years.:0.006945565469066808 States.:0.00690328867000887 county.:0.0067046555243699905 city.:0.006229961852731893 State.:0.006032454756153085 world.:0.005943131447736398 :0.7080805577842056 +and:0.05595676999974113 the:0.052277742933798686 of:0.051020244094884135 to:0.03243122162291694 at:0.029601862897630147 .:0.025307920437439856 a:0.02286614862837584 No.:0.01921466470066073 in:0.017768441106155795 for:0.014529311840135745 :0.013508745079844882 or:0.010442557718842994 1:0.008992273502237575 thence:0.008357543911611894 Mr.:0.008051825226404104 by:0.007659905418538419 with:0.007164795942031619 was:0.006722055413875948 THE:0.006561268538555581 :0.600564700986318 +it:0.1579040593488075 It:0.10704156993837914 he:0.056773046608990727 which:0.04930283869545799 and:0.0443363646107929 who:0.04083696496227208 that:0.02410851564102584 as:0.02236387739889075 He:0.01823544754459533 I:0.016272001203821756 man:0.01156126030396716 be:0.009936277902105372 she:0.00984617999289302 :0.009027059905590287 they:0.0073746479805712264 country:0.006491881944267463 ho:0.006303180260368638 law:0.006025642665102285 but:0.005106080169329928 :0.39015310292277067 +and:0.15552039503464468 had:0.08078959521570425 he:0.0771985023176394 have:0.07627658475678417 who:0.07423910416105735 I:0.06624835916317948 has:0.05922510536042707 we:0.038473481644998 that:0.028189639747068007 they:0.027902987690839084 He:0.02573316863552525 which:0.02571563099751342 was:0.020870967428615876 be:0.018036667104858923 then:0.013616010423435724 1:0.013140572749019423 she:0.011492616794569307 is:0.011256518564730578 having:0.009665105723308929 :0.16540898648608107 +State:0.0785612840166073 day:0.04724911031465488 line:0.041781994687555536 state:0.03517552063529755 city:0.03475482152070759 City:0.02838934224546607 County:0.02610646104838871 side:0.02503017627757281 name:0.02222106493937737 county:0.018989026126466108 part:0.018278983931916043 place:0.015421900952122109 people:0.013686946116442689 number:0.013628521464017367 Court:0.013623655157477727 case:0.013435016307437415 corner:0.013309156104252748 town:0.012819770291078642 House:0.01254566092363383 :0.5139915869395274 +and:0.05971286517636012 able:0.05478544707623921 as:0.05316936753391085 time:0.04584884537426419 necessary:0.041051394911827896 not:0.04013564895311244 have:0.03655730839954833 is:0.035384946438071066 enough:0.03526810218690267 order:0.033358517702581185 had:0.03117263945495753 unable:0.029100542359083954 required:0.029019706909261443 him:0.028338425291684066 want:0.028240316449681814 willing:0.027277954289782975 or:0.026763494482760147 refuse:0.023747051521415888 refused:0.02225156001843385 :0.31781586547012036 +is:0.12049885472066618 was:0.0945829264988792 and:0.06982413234616953 had:0.06506682527848034 have:0.061499218701497 that:0.0606246919349068 be:0.04917023499657394 of:0.038095258499355376 are:0.034618417627589305 has:0.03179382638473701 with:0.031415509732597754 in:0.027297722737230485 were:0.026111333308115638 Is:0.02226166198378705 by:0.021384329010541523 but:0.020082635959369308 been:0.016635170104817073 for:0.016201406284144123 to:0.01316955733795111 :0.17866628655259123 +and:0.06317916895143688 was:0.03089079697380977 is:0.020044819943736053 be:0.019406329289829806 are:0.016631216139614186 that:0.015910745835586493 it:0.014132589635136123 been:0.013429954470292457 made:0.013153338042273357 were:0.012494049396038097 or:0.012369181282419555 them:0.011608721240324167 up:0.01101461536327863 him:0.010833186604515583 as:0.010718511743974049 succeeded:0.010682665877813333 engaged:0.010592681714621757 not:0.009777868089593193 now:0.00948198968071834 :0.6826475697249881 +the:0.20844525817257545 a:0.18926909784194998 this:0.12171431918244312 every:0.06212049999585509 any:0.04075171211565414 said:0.032541883117655324 one:0.026347540487111413 other:0.024300839206281896 each:0.022965552644551416 same:0.02124123469412825 tho:0.015439670775784363 that:0.014843134607415782 new:0.014580797419464595 or:0.014025540097966981 large:0.013667754300696448 first:0.013237571379030089 The:0.01288596874224177 certain:0.01123399269572885 of:0.011026374407277051 :0.128361258116188 +;:0.023821527812151543 them,:0.017093134891809924 it,:0.014862284884469916 one:0.010054738474389641 dollars:0.009196293446675483 time,:0.009089661110676144 year,:0.008525284855271804 him,:0.008271788809687696 years,:0.00808425741662836 and:0.008003686615226036 property,:0.007534742711012278 sale,:0.007532813288106692 in:0.007531139266111816 up:0.007218719283493364 him:0.006715059683054311 mortgage:0.00668103815340684 it:0.0066511083591830325 dollars,:0.0063826255191332965 time:0.005929936818715758 :0.819820158600796 +the:0.224878246815485 their:0.18679714980696155 of:0.13099908995600118 our:0.06157853965828807 his:0.05970415163047939 and:0.028411884686785675 its:0.02641119798919872 a:0.02502760835020004 her:0.023554026199917418 these:0.023012955905571415 for:0.022715265139150717 in:0.022074978542122023 The:0.016405466775594606 two:0.016237239470911845 your:0.01323030290916408 large:0.01305763712204001 my:0.012612237128237658 tho:0.011714324954639511 with:0.010615194351482869 :0.06996250260776823 +the:0.6776495675270529 The:0.11840898465762469 tho:0.04630154317021698 and:0.01937047809859729 tbe:0.01705232453438964 of:0.012693198346570227 was:0.011072662653103181 are:0.008081314754791536 is:0.007919013238649159 their:0.00612216975550352 he:0.0058724980843932306 Tho:0.005857452222019355 were:0.005091290470056068 as:0.004659607196616434 had:0.004579096708679843 I:0.004429549101576715 until:0.003763375392651178 that:0.003666129467584921 which:0.003608816384403504 :0.0328009282355197 +as:0.06931392982974462 according:0.052071562389565784 up:0.0511867300210483 and:0.040371568633051955 went:0.03351644485287816 back:0.032358406609281 regard:0.03073407747799069 feet:0.02852138506231652 down:0.026379903432040268 owing:0.02466642634685871 due:0.023695193974505355 go:0.022910973192184297 reference:0.020802802907016128 came:0.019883741951819873 sent:0.019874244915639484 attention:0.019565955494145405 come:0.01885185084678811 given:0.018792390567602263 it:0.017366961307524745 :0.4281354501879983 +.:0.08253400206023939 Mr.:0.07976906704870149 and:0.05341609185531771 H.:0.05094009770712954 John:0.043212371709433234 W.:0.0426983714661274 Senator:0.03686197461906147 S.:0.036762355607532556 the:0.03161211609154674 St.:0.031482694412459065 General:0.030741398435853853 C.:0.03047495949910359 B.:0.0287320861022047 P.:0.028671688516351233 F.:0.027113022441205545 E.:0.02559148986004887 No.:0.02409162282939827 Mrs.:0.020268621917243327 J.:0.01991751444234614 :0.2741084533786959 +well:0.14652389039292402 is:0.060625598371442505 far:0.04924268526576374 and:0.04730267436952064 not:0.039375512164014866 be:0.03829015671040438 was:0.03647826171204861 just:0.03574501444322285 known:0.03329033668839668 such:0.033242093300606235 soon:0.033005459157084194 are:0.03193521974737475 much:0.027973158082850322 so:0.026042815448761157 it:0.025958998274649057 quite:0.02590905265906885 regarded:0.023197114917185593 but:0.019259765748531346 long:0.01904850344893996 :0.24655368909721023 +the:0.16459883030594186 and:0.06521086320292585 of:0.06224826159913675 in:0.031882991607480086 to:0.03179953301949017 be:0.027581340055422305 for:0.026849579094841557 their:0.025387101325676002 his:0.023738789968354827 that:0.019146596756646043 a:0.01774961193584377 he:0.016372366964157167 or:0.014184354945703734 was:0.01369376196970306 much:0.012511315013064059 re-:0.01126876140433352 our:0.011222984960224213 been:0.011005472394744592 more:0.010711117033596219 :0.4018363664427142 +of:0.13596929354298312 the:0.07156738389333289 and:0.057967797884638336 to:0.052688186346923814 for:0.04985654587254709 was:0.03113876991427341 be:0.030019571107138144 a:0.027873537717094818 were:0.0190818677044596 are:0.018736508746383412 in:0.018730704651013858 been:0.015351114535167899 is:0.01528819628287768 or:0.014717304141826761 not:0.014081258676580097 their:0.011995723841178715 with:0.011808205220903516 his:0.011419451877160444 as:0.01045764345899617 :0.38025093458452025 +or:0.11823081187417345 and:0.08799993047806828 not:0.06325507463543846 than:0.056986161759154795 that:0.03602578253292515 as:0.032482682080100155 is:0.028597936020215868 there:0.027703303841976994 be:0.021652766842393114 was:0.021542089430037104 interested:0.016704987891304073 it:0.01669673395554227 interest:0.016195597354692413 made:0.015700528744892656 but:0.015622688370614734 them:0.015563513092130669 found:0.014587576535256852 been:0.01358040171154665 now:0.01338915388739321 :0.36648227896214314 +and:0.08995317707915026 to:0.06844710404109794 of:0.04605142056172993 the:0.04074574508561307 which:0.02479116931334353 that:0.023764822140213245 re-:0.020841117231308055 in:0.020803825395358622 for:0.020278423301550053 :0.018417753428486977 not:0.016860793136637672 con-:0.016444405871234195 is:0.014386481772210856 or:0.014080680914153714 be-:0.01352268143271276 I:0.01317002660943805 was:0.011429878269381662 dis-:0.011196807025842847 he:0.01113106290024311 :0.5026826244902934 +of:0.27886845194223026 in:0.07986774993262252 for:0.07889232964810479 and:0.0733553283421296 that:0.06713983324263521 to:0.060229054999636225 on:0.041304681319708034 with:0.03711568297342268 by:0.02362559989431922 In:0.021784731649872924 as:0.018921949669807318 from:0.01839771453610646 which:0.014926715969333232 all:0.013678375049237383 upon:0.011944265624194952 but:0.01175236887165149 over:0.011536914800993435 have:0.011508258732885858 under:0.010319324279868368 :0.11383066852124 +of:0.09392632991437688 a:0.05878216430374486 the:0.04972672874838736 in:0.04657442672157469 and:0.042861819434879454 to:0.031324912913249445 on:0.026234100605273862 that:0.02454463644178081 by:0.020312345046842085 for:0.0187909997393027 an:0.018648015052839507 at:0.016068278973525803 with:0.014448386168130566 In:0.013625012559594056 in-:0.012559852236208266 or:0.011684873283037692 :0.010413195531858956 as:0.009089112345737936 is:0.008931462858763407 :0.47045334712089165 +about:0.13349927096180414 east:0.07963229471456645 west:0.06787777057126783 of:0.060625917473509656 to:0.06046346218355554 at:0.041549384325187746 and:0.04147326021763679 on:0.03799613674277779 north:0.033429977151242345 south:0.025440722003225086 street:0.02039142697242042 or:0.018275225419789785 the:0.017999728971280552 than:0.014384071982655643 fronting:0.014203970477425111 from:0.010283506320381167 point:0.009969809336935328 .:0.009345471243959113 distant:0.00897068295852104 :0.2931879099718585 +of:0.1264464350193914 the:0.11904092523923121 and:0.05757144604609001 to:0.04250059167358664 in:0.0381524841331821 on:0.02839141943752145 a:0.025642010395841176 by:0.022790907629279857 :0.017003376970902 that:0.016520267315784844 for:0.015850053649813664 from:0.015641860533436955 at:0.01533372658361973 with:0.014401299519307067 or:0.013942665291031239 be:0.013847290018292772 as:0.012906120969744658 was:0.010461812027311463 in-:0.009003243715477083 :0.3835520638311547 +the:0.631789905791763 said:0.03479139832891814 tho:0.026855528735955415 of:0.015697012233433404 this:0.01302890774675157 a:0.012945666464408848 that:0.01200373095871037 and:0.01162255808360895 The:0.011606374866044789 tbe:0.010403467796583372 in:0.00805941557223956 Monroe:0.008013083771185602 our:0.006856018928357553 New:0.004372315032588537 lowa:0.00373290329363679 States:0.0035989680567165092 Burleigh:0.003521344669247652 Stevens:0.003167220780883856 State:0.0031625303512406466 :0.17377164853772548 +to:0.15137615318697412 I:0.13282223181815322 they:0.08515672798354294 we:0.08090701620624356 who:0.06674642050134538 would:0.06360307645647664 you:0.04134308339764071 will:0.03479832661394709 We:0.03261849406500606 shall:0.028933542525245052 and:0.028432448411103532 not:0.022796691503465038 1:0.020425575812391655 They:0.020174947765135606 must:0.019142691277417453 should:0.017911513750576896 may:0.014190431444123915 which:0.013129010651941936 might:0.011304133265548697 :0.11318748336372049 +the:0.13006376496809943 and:0.07086226985252486 of:0.06372091740113041 a:0.04244586403633607 in:0.03811094666225624 to:0.03401285023421579 his:0.022539625582017806 was:0.021034975628155785 be:0.019392875990734214 this:0.018307188128890962 is:0.016008044214166857 or:0.014900188379664905 that:0.01479975056587775 In:0.014092117051366588 Mr.:0.012596862906640612 at:0.012327631709514956 I:0.012053149228521935 he:0.01196647077306869 for:0.011498127778754957 :0.4182663789080612 +the:0.39749834532651884 a:0.07520030034269234 and:0.05540858759821703 The:0.03273515726769502 tho:0.030061875542463562 of:0.020144331424922633 tbe:0.014929647509541684 in:0.014268129706664795 or:0.013333166761078447 .:0.013287381914101323 an:0.009000188755386574 to:0.00880680429595084 :0.007943763822197133 Mr.:0.00773879605474787 by:0.007328417831573476 as:0.005922572098978465 for:0.0047526933692942485 that:0.004736121968310169 on:0.004594595720579333 :0.2713091226890862 +the:0.3431407775977763 of:0.15820937511924263 this:0.06793404431361276 that:0.06001048321402222 The:0.05292536897374109 a:0.032769888362553644 civil:0.02696243798030106 tho:0.022797440228451836 these:0.018859171264457197 and:0.016473478472206572 for:0.015596389598814441 his:0.015179469139779472 in:0.014293427061609621 Civil:0.011611175805608052 their:0.01155880096190877 our:0.010398689859329336 This:0.010058083017540806 other:0.009265232907080399 its:0.009229886446910807 :0.09172637967505301 +will:0.23182708005896652 could:0.1782163357672354 would:0.13514607954118743 should:0.12616265782596803 shall:0.08217061144200861 may:0.07040381908423446 can:0.04454091221278924 must:0.03249972873665781 need:0.01576104156172084 did:0.012696211291347766 do:0.01228216163184422 does:0.011908458104831007 might:0.011860043342929148 can-:0.008591098044530905 it:0.0037251442917356913 can¬:0.003598336048022955 if:0.0034147764704130787 is:0.0029392161997355516 and:0.002833314941137123 :0.008422973402704226 +the:0.11919516938815296 of:0.07230453158552728 and:0.05781056740443249 a:0.043018564803886335 to:0.031305092790907506 in:0.020848713353460488 at:0.014270110001066288 .:0.012526810245749479 :0.012413283442322082 for:0.011719122709941797 by:0.010808400946589808 or:0.010404172990115616 The:0.01003576004804544 with:0.009811868184449042 tho:0.009295902015355835 was:0.008924239095331684 that:0.008672304223433876 is:0.0085591147338948 be:0.008335143826716943 :0.5187411282106204 +of:0.15508114135382967 in:0.07982361836686241 with:0.06856846610024105 to:0.06352777901111488 and:0.061810451724171045 on:0.06000063849014099 is:0.04267645217372587 for:0.040377630001914376 was:0.03649487271095606 that:0.035761057920239966 as:0.03260988886848953 by:0.022635243596188587 from:0.02109884104625584 In:0.019704603605099524 after:0.016695689872315546 upon:0.015588934879783824 but:0.013152521665876214 when:0.012589372253288036 at:0.011988226923732996 :0.1888145694357736 +in:0.19097217862253854 the:0.17105538143676846 an:0.13076228317600458 to:0.07798904930580891 of:0.06247253789308139 In:0.05070561720068997 this:0.05021291286759665 and:0.04839973237975772 or:0.026571684899470992 The:0.016707002289548068 by:0.013140975564500152 good:0.011352849142179653 a:0.011337939979023094 any:0.010176588684512046 tho:0.009885491624803308 their:0.009481979764955644 no:0.009342318034055795 such:0.009127857408679486 great:0.00808091653770264 :0.08122470318832291 +the:0.26938400963013603 a:0.2097533834541242 The:0.0592031904527058 this:0.029351766021669327 tariff:0.022450148915101997 A:0.020098448237368 tho:0.017683391576451542 appropriation:0.017051810749350024 and:0.015229992614552424 Senate:0.012815718180521345 which:0.010265329676635088 House:0.009452075190560433 that:0.008311269055611626 tbe:0.008304163828069451 old:0.008143470402365625 Mills:0.008097061203521973 This:0.00763125022023528 said:0.007285681718221255 of:0.007091414792331292 :0.25139642408046725 +Mrs.:0.16692605486830192 of:0.09443171760514778 and:0.08791295124473197 Miss:0.035192872033024784 by:0.03471171680667548 said:0.031473410713857154 to:0.03029819569444274 Rev.:0.019475835876010195 Mr.:0.015593920332364048 vs.:0.014294142874548672 .:0.013755189307620121 Dr.:0.012058831059998887 :0.009237215936739686 for:0.008726953542527836 from:0.006714467716460565 Mrs:0.006148235861229584 Hon.:0.005444046648824842 W.:0.004299396654135449 ;:0.0038988036348711155 :0.3984060415884872 +of:0.1790597519517043 the:0.08723988082239774 and:0.07224359760332583 to:0.0673189274331115 in:0.05632991698010858 on:0.04931477074191373 thence:0.030829634567579263 1:0.022794002979440054 In:0.01951891326127942 as:0.018133802870327592 said:0.01768502038627547 his:0.016202627403702638 from:0.014089430525638534 a:0.013145617918627608 3:0.012507682692409858 4:0.010820963959374881 by:0.010069157131633581 12:0.009876228385185221 10:0.009612120107024889 :0.2822079522789393 +they:0.1339461974459378 who:0.06449150759567976 there:0.05964669119660761 we:0.0585849824831157 which:0.04520706527438132 and:0.04286863407622332 you:0.03913729104764804 There:0.03396718801066769 They:0.03209640169845594 that:0.031200974702725145 men:0.019845671685432692 We:0.019418999595623168 people:0.013692363921183908 as:0.010974793792506123 them:0.008386153753557493 these:0.008192396320777473 You:0.006556364269777689 These:0.006145955695672415 but:0.0058114506320729896 :0.3588289168019537 +of:0.19982611582298127 the:0.16482357467092607 and:0.0666799918643914 in:0.02496349239727441 at:0.021418656954245243 to:0.021044465395158404 The:0.019654069777041656 a:0.019333907276503574 .:0.015239016707129651 :0.014247357351446327 by:0.01324537903717462 or:0.01062175795402695 as:0.010236997705915967 tho:0.008717409825409875 with:0.008611527353403212 that:0.008588540838665528 said:0.008379967433457458 on:0.007675789835170113 from:0.006859147064554805 :0.34883283473512344 +go:0.035976738739916705 divided:0.03461702040100777 enter:0.03429393658462604 went:0.030935569277778758 put:0.029318850877126452 came:0.02875591454925017 back:0.02680489094306641 taken:0.026709997460187422 out:0.025333468644850077 it:0.025245996547965877 up:0.024891302697758525 thrown:0.024099401054689832 get:0.02388511861749526 fall:0.023593467655110466 them:0.021989866323726123 brought:0.02027614556808761 down:0.020115947633719173 entered:0.020003513347800872 come:0.019845975991835456 :0.502306877084001 +of:0.27522378223762334 in:0.23018626872601672 to:0.09984668577566083 by:0.06216948411620941 In:0.04218478297505494 from:0.04107869457612353 on:0.037377545554017955 at:0.02439081276149431 with:0.02359755688791407 that:0.021176761485566704 and:0.019440232072111395 for:0.018095674145637505 upon:0.017132132638024038 into:0.012920630051680624 through:0.009944935684321837 as:0.00671852677438193 under:0.005272122223834586 iu:0.005021907571595715 over:0.005017848117264711 :0.04220361562546583 +and:0.06954454630682382 the:0.04591889931765341 to:0.04441537768223494 will:0.0397394699508654 which:0.03902395676601593 said:0.03884001254090859 of:0.03833137054480887 that:0.030175267836648433 may:0.02893916347065599 for:0.027061765505786938 it:0.023382938579402008 there:0.022841550737806325 shall:0.022684019024387738 would:0.020975563107901354 a:0.019245805635819582 or:0.01860143985334092 should:0.018461796486249123 can:0.0182102597929919 as:0.01668322510220108 :0.41592357175749767 +that:0.14765853336686047 and:0.05561176034241739 which:0.04678592294663837 to:0.02979256666261246 :0.023366877664175993 when:0.02063693458559031 but:0.01924957351474787 t:0.017331524921836036 this:0.016392149998132467 where:0.014005233156023903 I:0.013183569706075713 if:0.01284932507733165 If:0.01220288319813625 said:0.011060918353452295 as:0.01071985314392748 it.:0.009534362494645237 will:0.009252334363224259 the:0.008514664649936858 And:0.008135662464869735 :0.5127153493893652 +a:0.1205125643650357 the:0.06946228812528356 of:0.06440651408914765 was:0.06253641989335837 is:0.05825207986549934 and:0.052510073695185726 be:0.052379590916231664 as:0.042959162226513144 to:0.030788322672242786 been:0.030663339102816725 are:0.026076048761574114 so:0.024212802200058958 with:0.021268661316348463 in:0.019783602526586525 were:0.018975199734072874 A:0.01578582491449234 not:0.014225251173631322 Is:0.014202808025920258 by:0.013565526453300879 :0.2464339199426996 +as:0.13233952412015682 to:0.12082500675078707 tell:0.10969258551030593 and:0.06963822003045345 of:0.046349117435409905 that:0.04007005664685295 for:0.038898669780927944 against:0.035427461854526145 give:0.03452238565552714 with:0.024625314437271093 upon:0.022597308060185804 at:0.021145370269969353 As:0.021082344971806753 show:0.021040440977694475 by:0.02062270008296346 ask:0.017662577640753324 do:0.017048220020623808 tells:0.016109113115793616 which:0.014583575009947473 :0.1747200076280435 +and:0.0734540368385663 free:0.04093012499849966 or:0.03318590249762147 suffering:0.027065018253968218 him:0.026808656862458816 them:0.025887218923911774 away:0.02338923148489269 us:0.022832249283849883 far:0.021810909683028488 out:0.020972136372311018 derived:0.02046167988962444 but:0.01895493179782804 received:0.01869649176142793 it:0.017843645896488947 come:0.017760330088238373 miles:0.01738832322407869 not:0.01694504097388645 taken:0.016754208220999572 is:0.01620632329913894 :0.5216535396491804 +of:0.09129790931378902 the:0.07369883040827747 and:0.047842263382354346 in:0.04189055351593407 to:0.04045875475680249 a:0.03542341257202578 be:0.02020462051672066 for:0.01979292654746225 was:0.01760256398103379 at:0.017380150555488715 is:0.014984483003968216 with:0.014047653760730413 by:0.01374644383819499 :0.012670486581795598 In:0.01200961464556976 or:0.011563835749786333 from:0.011391516893522809 are:0.011273104484969465 that:0.010755276030689069 :0.4809655994608848 +they:0.1339461974459378 who:0.06449150759567976 there:0.05964669119660761 we:0.0585849824831157 which:0.04520706527438132 and:0.04286863407622332 you:0.03913729104764804 There:0.03396718801066769 They:0.03209640169845594 that:0.031200974702725145 men:0.019845671685432692 We:0.019418999595623168 people:0.013692363921183908 as:0.010974793792506123 them:0.008386153753557493 these:0.008192396320777473 You:0.006556364269777689 These:0.006145955695672415 but:0.0058114506320729896 :0.3588289168019537 +and:0.07943789800670902 for:0.06618841726604319 as:0.05626540657761209 on:0.04908136705049546 of:0.0463633219878397 to:0.04155335219266076 in:0.039812023777758394 that:0.03867124722527949 with:0.0373730790055534 make:0.03723179092509507 take:0.033784052270641796 do:0.032685178119216826 made:0.027124000954547946 put:0.021484838191469617 but:0.021475649431100363 is:0.021365403502215677 found:0.019128335337583187 upon:0.018827486493142583 took:0.01763907397757957 :0.29350807770745585 +in:0.1669979156856951 of:0.13445663767960045 to:0.09688798041594776 on:0.08377245670884646 and:0.06302135523578224 with:0.038863588001516305 that:0.03789037723307174 In:0.0376812416630963 for:0.03189248016687659 all:0.025111996527628033 from:0.022107219993652262 upon:0.017717013706039165 up:0.017209420358184194 is:0.015386313031116145 by:0.014468468271014478 was:0.012635859310036029 at:0.011460043009993167 over:0.01069465557735194 get:0.010259631269812478 :0.15048534615473913 +number:0.04390432665607374 matter:0.03978641343782784 out:0.03388174169324013 point:0.033526662372331185 sort:0.026241624155792016 kind:0.02521363708562867 full:0.02058665354634279 means:0.019406954424693215 question:0.016207105036717653 form:0.016172770970096523 line:0.01605259602884832 way:0.015255549080778244 purpose:0.014832889014771894 system:0.014647877485122562 place:0.014507904088333974 years:0.013654926574713252 board:0.013502685099340215 class:0.01275495020472649 thousands:0.011865521642446714 :0.5969972114021747 +the:0.5198065117582682 a:0.10828757599208859 The:0.06632546982130172 and:0.045168915233587986 tho:0.03301048778032967 no:0.02541330670830716 tbe:0.015197287119616834 that:0.013144687367106897 of:0.011528696981914088 in:0.010036739807422363 any:0.009596666770402242 this:0.008950557326259403 first:0.008838133493487426 good:0.006350728182796608 great:0.006060456263420748 every:0.005585433033130421 long:0.0051745611506361176 an:0.00493476694896057 some:0.004910762782995115 :0.09067825547796786 +the:0.13701968797727493 a:0.13531533323993913 of:0.08091386020374676 and:0.05349234648800634 to:0.046685483379653135 in:0.04087871600990154 an:0.03240321803735423 at:0.03218452013549093 The:0.019364669427376083 from:0.01515457260867077 with:0.01390511220118872 on:0.012580902438399714 as:0.011849021626780098 that:0.011581853936359304 for:0.010647408736855418 :0.010556089519002276 which:0.010300579923995532 In:0.00996511514555878 tho:0.009439794156964526 :0.30476171480748177 +he:0.14028459941706925 and:0.11096263185747987 it:0.08897662445686712 who:0.06914434520603607 It:0.046820115509303005 I:0.04180783634536234 she:0.03205228591414041 be:0.02964824033405716 He:0.029055293208542457 they:0.02831273578812066 which:0.019161750482195213 was:0.019049815806111224 that:0.013441587401937351 you:0.012101544689947855 then:0.010854930366501548 we:0.010350180030230714 man:0.009958822145381104 is:0.009500932425541448 lie:0.00899082248569341 :0.2685249061294818 +at:0.14864673909916598 in:0.1365868565338724 of:0.09561439783004172 to:0.05417652247734359 for:0.04735851924596503 and:0.04681756889340057 In:0.041241992270419046 a:0.03477486496349733 the:0.03287665755206561 from:0.03273549382936907 with:0.03250612265448825 on:0.03187789762632178 At:0.023366351945318064 A:0.022632071279719605 within:0.01627797423512922 by:0.015572408248637579 that:0.011748249505629357 about:0.00930105361010026 The:0.00920941537738038 :0.15567884282213515 +of:0.28767355066866834 to:0.08775711267569858 in:0.08678131196995101 and:0.05160598694501188 on:0.04646139928102899 by:0.04519522654900943 for:0.044547789071328545 with:0.03396756772609607 that:0.033699232901107726 from:0.03075346596941143 at:0.027039283056790858 In:0.021061449543044047 as:0.017514234937992545 all:0.012543839382496166 upon:0.011844431150487573 is:0.00998972746569266 was:0.008814315973987914 into:0.008557199930727406 through:0.007781895704231326 :0.1254109790972375 +in:0.33834382386893597 the:0.16490382704983514 In:0.09093890531843439 a:0.08178672799412436 take:0.06936656631649106 took:0.0324747092735516 and:0.020045011247075386 or:0.018952522672898802 have:0.018016440692057687 to:0.017420924832934687 dis-:0.01658138185751117 had:0.01604608440874804 of:0.012666960029417761 The:0.00985101039259922 tho:0.00908813259306232 his:0.009023428106177444 first:0.008425508196999536 no:0.007696541706309593 iu:0.007125252885787858 :0.05024624055704794 +the:0.11919516938815296 of:0.07230453158552728 and:0.05781056740443249 a:0.043018564803886335 to:0.031305092790907506 in:0.020848713353460488 at:0.014270110001066288 .:0.012526810245749479 :0.012413283442322082 for:0.011719122709941797 by:0.010808400946589808 or:0.010404172990115616 The:0.01003576004804544 with:0.009811868184449042 tho:0.009295902015355835 was:0.008924239095331684 that:0.008672304223433876 is:0.0085591147338948 be:0.008335143826716943 :0.5187411282106204 +in:0.29644589718326353 on:0.12848081386132862 of:0.087861425975272 In:0.07181467656059694 to:0.051656292301403006 and:0.04686668037972898 all:0.03446740274539832 with:0.02970227007337448 that:0.02442316162125898 from:0.023013588096399255 by:0.02069860024681575 at:0.0195568623336989 for:0.01877272879960506 On:0.01777380678211815 upon:0.015720129048083363 into:0.012740146002356251 is:0.010154569834893322 under:0.009956586473874436 as:0.008426494456870487 :0.07046786722366018 +of:0.28767355066866834 to:0.08775711267569858 in:0.08678131196995101 and:0.05160598694501188 on:0.04646139928102899 by:0.04519522654900943 for:0.044547789071328545 with:0.03396756772609607 that:0.033699232901107726 from:0.03075346596941143 at:0.027039283056790858 In:0.021061449543044047 as:0.017514234937992545 all:0.012543839382496166 upon:0.011844431150487573 is:0.00998972746569266 was:0.008814315973987914 into:0.008557199930727406 through:0.007781895704231326 :0.1254109790972375 +of:0.11950995439334246 the:0.08899057017661073 in:0.05939460561401651 and:0.05928433930816499 to:0.048746012850456905 at:0.032540315448484056 a:0.026600387209976782 for:0.020795030421336763 In:0.014276021225909829 by:0.014164969011538705 from:0.012222400946840312 :0.011897458542213746 .:0.011708958295876946 with:0.011141222904230265 an:0.010351928121069697 on:0.010327360128455114 or:0.00917204735277245 that:0.007577642036813468 his:0.007477854511223368 :0.4228209215006669 +to:0.2947005650276829 the:0.1349048741046481 of:0.13449331610026158 a:0.10015571712019684 in:0.04167844772721186 and:0.022347027402808924 this:0.02172640173580991 careful:0.01991840882206856 for:0.017855747180904952 with:0.014854770479396347 will:0.013544261170288164 their:0.012799847277700638 our:0.010672103032731388 or:0.009409107883039782 its:0.008998543107711698 from:0.008227427719158907 may:0.007735986022824974 no:0.0070625922404242494 his:0.006956034563827799 :0.11095882128130245 +the:0.11274823966931571 and:0.08329996793360815 to:0.062372082173126384 of:0.05346002906215973 so:0.0299749817344208 is:0.026294180790411077 be:0.020260006954324915 he:0.018124449911071136 was:0.016351044211737983 re-:0.01567649125103956 Mr.:0.014726716630740086 in:0.013675410003338988 for:0.013272602215284653 a:0.012159264338821467 I:0.012040910229586727 or:0.010977326121126826 :0.01035107289213954 are:0.010219913969554774 not:0.009881708091297656 :0.4531336018168938 +of:0.11673582222646535 in:0.09590622603679728 by:0.07522889675118441 and:0.0668615819018533 for:0.06462069632890384 that:0.05920033898257092 to:0.052532040983085976 with:0.043223982546073667 was:0.03763234353084454 In:0.030966803639366183 is:0.0293160490300935 or:0.020960198090238115 have:0.019653198961193576 had:0.01820718040168168 from:0.017474829263181967 at:0.01668405384624774 on:0.015821591798758392 be:0.013105597479107412 are:0.012934350216818173 :0.19193421798553398 +;:0.01607638387467674 up:0.015222955849718634 in:0.014346192144323571 here:0.008419327036594463 misdemeanor,:0.007676740695875136 day:0.007468876058440264 mortgage:0.007047348804902913 years,:0.006699965947609848 county,:0.006616312780263395 him,:0.006405262482834537 it,:0.006224929850560496 and:0.006219932914082968 men:0.006127684792168226 time:0.00608604652443168 ,:0.005880925488780576 dollars:0.00576459057486429 :0.005739379482916212 to:0.005718233432581862 year,:0.005665393056840522 :0.8495935182075337 +he:0.28351949749512523 I:0.055732823987542826 be:0.05372167585278774 and:0.05072504944897718 He:0.047172880056357135 she:0.04267660534340772 was:0.041069548810490256 is:0.03214986395096352 have:0.028862386614513597 been:0.019847501690250145 has:0.017327128024830482 ho:0.016850906037469922 had:0.016017954160155015 who:0.015621670757435901 are:0.014315256797732748 were:0.012032418184821099 lie:0.012004980578007208 afore-:0.010947025974337582 it:0.010668260837265226 :0.21773656539752947 +in:0.048515785429817986 ;:0.01290524869529205 up:0.011428054540364918 from:0.009857194249487205 them,:0.009551775055887987 thereof,:0.00914457015479063 In:0.008717076390408932 him,:0.008556698915169029 benefit,:0.008446942942294347 due:0.007445306556836395 it,:0.007295928249127812 out:0.00651226713017592 States,:0.0063995652962191086 him:0.006265273202773819 ,:0.006153711715668133 years,:0.005751400366265867 county,:0.005344006316058594 :0.005207190277284108 State,:0.005148579217171931 :0.8103534252989052 +the:0.11919516938815296 of:0.07230453158552728 and:0.05781056740443249 a:0.043018564803886335 to:0.031305092790907506 in:0.020848713353460488 at:0.014270110001066288 .:0.012526810245749479 :0.012413283442322082 for:0.011719122709941797 by:0.010808400946589808 or:0.010404172990115616 The:0.01003576004804544 with:0.009811868184449042 tho:0.009295902015355835 was:0.008924239095331684 that:0.008672304223433876 is:0.0085591147338948 be:0.008335143826716943 :0.5187411282106204 +a:0.40339311316280624 the:0.18010438746760551 of:0.0507071630945856 for:0.03366223992341628 his:0.02302107410346374 to:0.021943494253501193 any:0.020732816971400794 in:0.018857749324376186 and:0.01774824778673343 or:0.01763862684815273 no:0.016822053738634265 their:0.014960964573723704 two:0.012703793538885679 other:0.010628836529526555 one:0.010591521485271309 its:0.010113442470953245 some:0.008941004446793483 this:0.008416641450797395 an:0.008061406893867983 :0.1099514219355047 +I:0.15038569028647544 we:0.11396745766182234 will:0.10851155398362676 you:0.07257968498638755 could:0.06944702512421148 can:0.06425557025138123 they:0.053926470120978454 You:0.04831275859558943 to:0.046840866718368755 and:0.037227868897996 should:0.0328372180292457 would:0.032561873773608474 We:0.028897448710917435 who:0.027248855812095664 shall:0.026564551989593208 not:0.015950461652791216 must:0.014510798285656719 may:0.013496745978856186 he:0.012895208169344707 :0.028581890971053275 +the:0.16895410334573915 a:0.14303051959254162 two:0.08689872871106655 his:0.04997870037361035 three:0.04545383830376945 their:0.04341587059291772 one:0.038716627038311566 our:0.02966762919622936 other:0.027811254568173606 this:0.025008892496494687 of:0.024410079976203525 few:0.02285389278690128 her:0.02251128816711401 The:0.021419174784248225 my:0.019294416845606576 its:0.01886356122906299 four:0.018835069811972648 One:0.018827643360632706 tho:0.017612624543452936 :0.15543608427595104 +and:0.051654636516201016 made:0.051015454799921624 or:0.024674408513783483 that:0.016062835335927065 him:0.01565924413931051 followed:0.01563124550437536 owned:0.015583321950137187 ed:0.014866750499448756 accompanied:0.014614648987466283 it:0.013626457525371337 taken:0.013108391888807197 them:0.012651103019890095 caused:0.011867361447385745 up:0.011657883035474385 done:0.011150870541727875 only:0.010691704012969913 given:0.010651579286736641 occupied:0.010536480438065907 secured:0.01016848645023085 :0.6631271361067688 +of:0.28954364417277456 the:0.12634331468013915 and:0.057657111757889686 to:0.05092571268986015 for:0.03882548686225981 a:0.03805092087214584 by:0.030917260473548383 with:0.02952716962107046 in:0.021955581026718414 such:0.0201763393309755 their:0.01936378092318749 The:0.019286442231168443 as:0.015654551368237745 said:0.014244324489955277 his:0.013250804030047547 at:0.013117812052643158 that:0.012543948648406229 good:0.011574600603174412 our:0.01117784283328597 :0.16486335133251176 +of:0.09129790931378902 the:0.07369883040827747 and:0.047842263382354346 in:0.04189055351593407 to:0.04045875475680249 a:0.03542341257202578 be:0.02020462051672066 for:0.01979292654746225 was:0.01760256398103379 at:0.017380150555488715 is:0.014984483003968216 with:0.014047653760730413 by:0.01374644383819499 :0.012670486581795598 In:0.01200961464556976 or:0.011563835749786333 from:0.011391516893522809 are:0.011273104484969465 that:0.010755276030689069 :0.4809655994608848 +of:0.1781950795125582 to:0.14413542086283804 and:0.07377222516761756 in:0.07014686331915129 for:0.046964568268960234 on:0.04257617398188623 with:0.0410401049188205 that:0.04038385514363056 from:0.034494547588294136 all:0.0340780012081488 by:0.03050771666813861 at:0.029848864253591043 is:0.029372872846019995 In:0.019035059030460506 was:0.01602206813273412 upon:0.012530124898632327 as:0.010591421477899354 be:0.010474658669698093 over:0.008686729186984026 :0.12614364486393637 +and:0.14335384626163358 is:0.1288187971983914 are:0.09957980180438894 was:0.03620760430322274 Is:0.03222171034543626 be:0.03101720657524097 that:0.028554587359558115 the:0.027400599396324825 as:0.027180768399907636 but:0.026774915480286977 of:0.0253383270801785 or:0.0238438970667249 it:0.022010146900289948 he:0.01904411433763722 most:0.018404044574725175 more:0.017508243103749373 not:0.01740932544447817 I:0.01626665586225054 which:0.013283985543256634 :0.24478142296231806 +the:0.077959875728186 of:0.07561207758246812 to:0.063721265680232 and:0.05328668616179458 at:0.05210147016746541 in:0.04419683101193541 a:0.04041168001453026 be-:0.021943064283422006 was:0.021530629982060945 be:0.021283379127678897 In:0.017560566717330237 his:0.016842488323300077 for:0.016627575831581635 from:0.014304821306302607 more:0.013183758759463869 is:0.012672128007542345 or:0.012354178579711297 :0.011287254523986672 about:0.010124512482147834 :0.4019957557288598 +hundred:0.028146533859639694 ;:0.012471344437011618 one:0.012123454050850357 day:0.011894919193807583 up:0.009812471063620041 wife:0.008248678955956757 feet,:0.00820442701305037 dollars:0.007264071876541508 made:0.006906214500148791 him:0.006864222935472118 street:0.006718095151863367 ,:0.006592158250781455 time:0.006566502687924579 house:0.006336335085540318 street,:0.006194738856376167 :0.005572570198563617 quiet:0.005500225497563419 and:0.0054531147880822715 men:0.00544677907028155 :0.8326831425269244 +of:0.19448734057487616 half:0.12442991753578643 for:0.09294675578841047 in:0.07685754013153907 and:0.04561348757098979 about:0.04347620690246557 as:0.039874555336819 to:0.03219517628626989 cents:0.031137835243233745 within:0.02898023442286288 was:0.02557177022544589 is:0.024108722608980768 over:0.023212616183567635 In:0.02187319083902735 on:0.021745381494847515 than:0.021519010957154652 by:0.018366092485254074 with:0.01810130203584791 from:0.015974529674998905 :0.09852833370162228 +be:0.25767320626803114 was:0.10113397825758505 and:0.09249806599279245 newspaper:0.08332921920028809 been:0.06976993341121625 is:0.059801684827144236 were:0.03944661285737869 are:0.029041254133247124 he:0.025903992925885883 being:0.017262847586720243 as:0.010890220361171725 the:0.01019652458656057 paper:0.010140946785196453 bo:0.010127536572105486 or:0.009023683566512241 Is:0.0075109245572834845 newspapers:0.007337248681457849 He:0.005350254880780501 I:0.005153043663904433 :0.14740882088473814 +:0.05040120109426917 and:0.019102708922143705 ?:0.016277101289967535 it.:0.015074076016582234 I:0.01004937590085059 that:0.00857972828715202 .:0.007506395005284168 it:0.006412883691248923 them.:0.006338209765596632 him.:0.0051193878419156 :0.00499547998567127 him:0.00481521775144885 man:0.004121365760594229 them:0.004098542242192068 1:0.0040873061780884665 men.:0.0032898558420447707 !:0.003206886581150841 do:0.0032024261247879018 ":0.0030513992272587945 :0.8192704524917522 +the:0.3117608155142305 and:0.1544121488500679 of:0.037206706566147524 his:0.03628559359066802 The:0.0350462781778699 or:0.03305339324109459 a:0.03151725010728706 said:0.024894063349531568 an:0.01788155407648378 that:0.014351983056902719 tho:0.014179535902235446 her:0.013523435084628301 to:0.012869642580362724 other:0.010015511035954706 their:0.009755280885782187 such:0.008865977232646654 he:0.008616911861299592 as:0.008025677066897843 our:0.007662874021712541 :0.2090753677981964 +and:0.07359963406644195 be:0.052667135004264946 to:0.04483536256874564 of:0.043448293679263235 the:0.03579172892628988 in:0.028005289969665195 was:0.026700397492138477 is:0.024892551934152005 re-:0.024162182625676702 he:0.024086629517294657 are:0.02098604388819216 from:0.020307931541148256 a:0.018606881911690538 or:0.018077853608073062 for:0.017195224169077532 been:0.01615904189338184 I:0.015254891559368164 :0.015184018660626356 which:0.015016145996292442 :0.464022760988217 +and:0.0613647763407413 away:0.05552870617722476 taken:0.036659481703679414 them:0.03245257320743252 him:0.03133313750614208 returned:0.029737165986360507 it:0.027414201353757765 come:0.0267269552555555 arising:0.02655580975088971 miles:0.023952440413622954 came:0.023644810619677287 suffering:0.023354852428090548 feet:0.02206653324735653 mile:0.021033922490932704 up:0.01984314469349347 removed:0.017659369762396515 comes:0.01707930495730231 out:0.016681688267950995 received:0.01595060134037965 :0.4699605244970135 +in:0.21434591148186888 to:0.12729777403872716 of:0.12271903583639214 In:0.06892169458872731 the:0.03952973481690776 by:0.03490753121992253 and:0.03251018893686382 their:0.032415875365895644 his:0.031426469097497446 for:0.02936574284029196 with:0.027389136715179525 a:0.026334274177173305 on:0.018284722222699536 from:0.01541508515912482 at:0.010344599132514247 its:0.010157415771169421 our:0.009668750514586764 without:0.008925842545367194 or:0.008636355839292453 :0.1304038596997981 +it:0.12291356726271781 he:0.10766523848787593 It:0.08126222867785683 which:0.05815091424687329 I:0.054909855356083816 and:0.04607290301292405 who:0.036234513317437905 He:0.03284977251390459 that:0.0307500349566012 she:0.02807960748770171 there:0.017106531141060498 as:0.011444714915749334 She:0.009915288061780691 ho:0.009311744482256256 what:0.009144898696231517 1:0.008083327589627603 This:0.007923029238788926 lie:0.007752420127589498 man:0.007654383581502722 :0.3117750268454358 +and:0.08045198400859874 was:0.06929239365046844 be:0.040624884999830864 is:0.036082882274447975 Beginning:0.030737523787772537 him:0.026593783517895164 men:0.02446432246831011 are:0.02426613864286913 made:0.02345944388552986 them:0.02130934379600325 were:0.019812765005684595 her:0.01853434828753942 one:0.017358953211367614 place:0.016776523707817015 had:0.014832755103612646 that:0.01428360569370643 been:0.013247077504621734 out:0.012910126309143202 up:0.012820838816144988 :0.48114030532863633 +and:0.051276611562044785 was:0.03721254682249662 made:0.03193864060967901 up:0.02673120633497974 taken:0.02475830465572886 is:0.023613995901649146 accompanied:0.022973406966128273 him:0.019815428694740535 out:0.018559497221606987 or:0.018191850797539287 succeeded:0.017806847272744435 ed:0.01665122049864156 years:0.015305330335921208 be:0.014933988330865663 followed:0.014467782298308158 in:0.013918169347972057 that:0.013331168762758059 secured:0.013320975590252202 do:0.012557456428247942 :0.5916355715676954 +of:0.1304737336039517 to:0.1280291981664503 and:0.09083786921603246 the:0.07373604935633017 a:0.04710682391989606 or:0.03333117110134738 by:0.0299066049750566 in:0.027694639977431254 their:0.024601334420307132 with:0.02438422202215403 not:0.023664378266227838 for:0.022696651550779382 no:0.016851335488673656 his:0.012278944361273709 is:0.011040741975121811 any:0.010212311771148066 are:0.008936597390791832 that:0.008712037205453622 its:0.007322061016057624 :0.26718329421551534 +as:0.06931392982974462 according:0.052071562389565784 up:0.0511867300210483 and:0.040371568633051955 went:0.03351644485287816 back:0.032358406609281 regard:0.03073407747799069 feet:0.02852138506231652 down:0.026379903432040268 owing:0.02466642634685871 due:0.023695193974505355 go:0.022910973192184297 reference:0.020802802907016128 came:0.019883741951819873 sent:0.019874244915639484 attention:0.019565955494145405 come:0.01885185084678811 given:0.018792390567602263 it:0.017366961307524745 :0.4281354501879983 +;:0.014525343569598944 it,:0.010289218107785415 them,:0.00846152851585392 in:0.008211176297314708 him:0.007866344102462152 up:0.007840953015235654 it:0.007598255195692717 him,:0.00747012930534478 time:0.006231546378617038 time,:0.006083556968190674 one:0.005631953761037212 ,:0.00558580231219058 and:0.005310946558647408 years,:0.005230264176994327 on:0.005112497566488325 country,:0.004816796580727144 up,:0.004565165814076683 :0.004555476631940347 one,:0.0043840350685433824 :0.8692290100732586 +one:0.1028303141280697 part:0.05963429477052991 out:0.04766456937681193 some:0.031418679026461914 members:0.030764490253327767 side:0.029940657362655835 portion:0.022063658796890564 office:0.020457735219956013 member:0.019726706386316174 end:0.019666887540649894 tion:0.018667441728710307 parts:0.016814747270460957 people:0.014112771422418794 all:0.014072739582212475 any:0.013183573287639892 One:0.013083578354183906 that:0.013024335602903442 account:0.012482348155001894 many:0.012077825070275192 :0.48731264666452345 +the:0.17617944249933973 and:0.05787045104749952 of:0.045280452126046894 be:0.03847258491799765 to:0.02979731885586852 was:0.029029761128731596 in:0.023948393511198353 is:0.0228707249366249 on:0.020141398334921182 for:0.019844396260000417 are:0.01815844121581588 his:0.017856716040301465 a:0.016433402974175833 were:0.014578442669656008 he:0.013844368492887916 their:0.013549574211232962 I:0.012607765086429131 been:0.011952318575665102 or:0.011553060190145445 :0.40503098692546147 +well:0.181905660478141 and:0.05680135878600682 known:0.03734938195793556 far:0.03631086917000602 long:0.03410325566082728 soon:0.03045022083640359 such:0.0282448399113853 much:0.022862637646579396 so:0.022790299366171468 it:0.021947597341961445 just:0.020411459055131517 is:0.018426084342270953 same:0.018272274980073253 be:0.01684032030605101 was:0.016303717608682745 are:0.013227332460005393 that:0.013205480860134317 w:0.012924008359307527 him:0.012017240836927914 :0.3846059600359975 +he:0.1341995602495758 and:0.06263268614261525 who:0.06128062367840624 it:0.04909255729223533 they:0.04695634110450801 I:0.04384541411747117 He:0.041273414347043326 It:0.027643821710914167 which:0.02676908391066796 she:0.025011577956831343 we:0.022907969346490437 be-:0.021919488383968525 then:0.01699171268837486 that:0.016045329109410776 man:0.015418079535596776 be:0.014905583884015182 Then:0.013064778627207056 one:0.012588478174379098 They:0.011113169290544846 :0.3353403304497439 +the:0.2244306894141901 to:0.15999503221981065 The:0.1440297412986621 a:0.12231055892089508 and:0.041997519817079214 this:0.022165670469970394 A:0.01867992738814991 of:0.01628506169087568 that:0.015632650024693533 which:0.014715172199291554 said:0.014535010527425783 minority:0.014187039288981074 will:0.012088854522157183 tho:0.011761188951035216 annual:0.011671517893257191 This:0.011562847819253989 his:0.01055346525854684 who:0.010031901942541707 not:0.008096781047363694 :0.11426936930581912 +the:0.10693439426632005 and:0.09981344056966703 for:0.09957382064542326 of:0.0953738903353144 or:0.07144769206523675 about:0.05179967804199837 in:0.045648072644644065 with:0.04130840940122961 to:0.03658858361459036 by:0.03342695255447223 a:0.030789685360711538 than:0.028015504014897042 after:0.026160712354299984 at:0.02467604111873748 that:0.02031624492341435 past:0.017840392432695213 from:0.017566407902928224 In:0.015017703859570327 last:0.014231052229748787 :0.12247132166410092 +one:0.015552536992080472 more:0.014252271697624306 on:0.010631301787611593 day:0.010222750824534239 two:0.010216157614982159 person:0.007504694644314241 in:0.007364820929323563 man:0.007179188731169107 law:0.006205362369136604 action:0.006166303509128973 and:0.005659786788634644 city:0.005177234665142273 three:0.005130416479837977 State:0.0047265097104810415 to:0.004696031397422901 ten:0.004594585978494318 of:0.004463781172886088 town:0.004231879326219736 year:0.0040256313925199315 :0.8609987539884558 +of:0.20973960479327153 to:0.10142577208638895 in:0.09233754363160535 on:0.07077250530903807 and:0.05630669600463257 for:0.05509488163435915 with:0.047990977392158116 by:0.04764777400635196 that:0.03703516654933452 from:0.033180570769713105 is:0.03310172724874479 at:0.03207993791465322 In:0.024121675028286698 was:0.0182508919656515 upon:0.014887913263716072 as:0.01074810260437187 all:0.01039102542955076 under:0.009847158251540688 when:0.008331500577527852 :0.08570857553910323 +to:0.1230779683450328 with:0.11165555293655381 of:0.06300576045602445 by:0.05407159519149766 on:0.04735283594280843 for:0.04486786319444872 upon:0.04249101425939034 let:0.03586327361632533 give:0.027110595550291824 at:0.026241229512856627 told:0.026106525529879805 make:0.02557017804009696 gave:0.020771501979141273 made:0.020717734924689243 in:0.019766055981802297 from:0.01706635711978801 against:0.01565019051510497 saw:0.014814328003778559 about:0.011846135973657667 :0.2509533029268312 +the:0.436949692405587 this:0.09567758066463482 a:0.08885632655227846 to:0.08484580287305536 of:0.05845650066998877 and:0.028503582476875948 tho:0.019596101914594717 our:0.01791938455830667 in:0.017582114386321086 every:0.013120428773232839 that:0.010762906759448363 their:0.00978599574665362 for:0.008533017938987657 tbe:0.007976529958778582 The:0.007133253082441732 said:0.006767415351734628 by:0.0065224568269877225 with:0.006414294183986761 any:0.006215450188983057 :0.0673811646871222 +of:0.07415784946215682 and:0.07045977841433211 to:0.06297528682941993 .:0.02637938698852749 Mrs.:0.02482947958411725 A.:0.018423694591789587 Charles:0.017050466466684257 John:0.016864136084588546 Mary:0.016329464383848514 M.:0.015637844446265328 J.:0.013773876913104974 James:0.01247705903422762 W.:0.01158095285207613 William:0.011549810657225278 George:0.011240586687143218 C.:0.010955495777674478 Miss:0.009717129274758941 by:0.008384989177942588 deg.:0.008191082930184671 :0.5580216294439323 +of:0.33574641391035964 the:0.15121320122858836 and:0.08049616871135351 with:0.04504172945905025 a:0.029466489649150353 to:0.028101103242771246 for:0.025231616241636584 their:0.02257017520101686 in:0.018879210213510918 his:0.018783835096900892 by:0.01721777835248947 or:0.01548716204761881 our:0.01237696210715831 said:0.011690052399022644 many:0.01088986181578422 between:0.009777120405493833 tho:0.008787266902503714 several:0.008663981515756298 its:0.008380970010707162 :0.14019890148912692 +at:0.16302739951324058 of:0.09537731006921985 and:0.07288426828667374 the:0.07110915299068923 to:0.06960520738055793 in:0.040208514872167034 pro-:0.027026033682970428 as:0.02397178067664602 Section:0.020947507512598107 by:0.02051375425782853 No.:0.019925236810307636 about:0.017582867692887926 was:0.01561448921667741 from:0.015355360902492262 with:0.015112995313332421 Sec.:0.01430934481568353 are:0.01412759191750141 be:0.013381923714106632 is:0.012999609328598727 :0.2559196510458206 +of:0.2216666977158274 in:0.11315600054577736 to:0.08451677747063276 with:0.05459457701357842 and:0.053201116550581094 that:0.048869351283334764 for:0.04652564665971443 by:0.041641114507012474 is:0.04019376283231503 on:0.02366070229647344 if:0.022519903961537052 from:0.022323076944866193 In:0.022136130820530876 at:0.021946950287511334 as:0.021107646490652048 make:0.018236510235099947 have:0.016692761579005615 upon:0.015762905052677117 was:0.014657954093019758 :0.0955904136598529 +more:0.030369642100128463 neglect:0.029490503060396942 one:0.027229595879595135 whether:0.02509379047258402 man:0.02182965633481409 action:0.018346529181362786 person:0.01741833467459908 law:0.015816549063489643 day:0.012866387224471755 city:0.01252516002405118 lot:0.009909786336555088 at:0.00978001446393341 to:0.009631232780922728 in:0.009374673200571566 owner:0.00930926708872906 two:0.00869711145243913 and:0.007800074488556916 of:0.007639621091069988 child:0.0076370714361295436 :0.7082349996455994 +a:0.6749554875582401 the:0.14814542291044308 A:0.019450301432426542 of:0.018157866631636134 in:0.014144094547108362 is:0.010481686513234766 with:0.00901079372846722 The:0.008807403769812322 was:0.008507832408630778 this:0.008046826777664181 are:0.007142877618445537 and:0.007048759147783514 his:0.006463704428882082 some:0.004871244571001851 tho:0.004820279397305581 In:0.004620194176686783 very:0.004118733195138563 be:0.0036643815045732057 for:0.0034695055330420882 :0.03307260414947729 +of:0.1863911519048808 in:0.12081186314916452 and:0.11674911111472831 for:0.07196255788484943 all:0.06064265450989713 with:0.04458488993080944 that:0.04114356698054288 to:0.034668301501594535 but:0.02289174085202397 at:0.022701241680954894 by:0.021137910959533192 from:0.020905179089728013 In:0.019298723489180023 after:0.01600298368543414 had:0.012475460165567704 as:0.01233717135700898 on:0.01147798552773773 upon:0.011064926361007837 when:0.010783125417822764 :0.14096945443753373 +have:0.2860576470276567 has:0.2761080449907103 had:0.16467321562399803 not:0.04439980515695336 having:0.02525277815500618 always:0.01867460832155398 ever:0.015780231294510835 never:0.015579250110512241 bad:0.012707515245890874 lias:0.010348042669959508 also:0.008110907728050685 already:0.008019395512740415 and:0.007038013895182175 havo:0.006544072932241809 yet:0.006413840401043261 haa:0.005570283065098187 to:0.005266294545349566 since:0.005146627219103216 just:0.004635280627009528 :0.07267414547742918 +the:0.177795829375286 of:0.09100275565423269 a:0.0627808469358194 and:0.054742394218812364 The:0.026397053740551936 in:0.020559385278647608 to:0.019712788490262565 at:0.01968282745260824 .:0.015658622895941433 :0.012314009438095817 tho:0.011834615384378461 Mr.:0.011302165862265507 by:0.010553206970439863 or:0.010498719581207261 an:0.010390015756332126 A:0.009005349225435392 that:0.008662581912158133 his:0.008090366506377367 for:0.007939349834087782 :0.41007711548706005 +of:0.40293152237061064 in:0.12620652773998148 from:0.05984536498041462 to:0.055525883085305046 the:0.04409195168374958 at:0.032010160201779554 and:0.031674296538272854 In:0.02897452867277903 for:0.02556691810955527 :0.013012023394836118 on:0.010661894560792605 by:0.009774409227777813 between:0.009118948904341966 ot:0.007072912188043384 with:0.005191654751938017 or:0.004701182602227805 The:0.004576183033465687 ol:0.004155683253999121 iu:0.003214155133237398 :0.12069379956689204 +Mr.:0.17968881937518016 .:0.04764977716945002 Dr.:0.03843171517436117 Mrs.:0.03830437807520021 of:0.019616227004530144 John:0.018933472715525226 A.:0.016197426035629372 H.:0.015200657394092017 James:0.015192288566845702 D.:0.01491553686924725 Senator:0.014081791336962433 W.:0.01296997323105407 F.:0.012028631301962979 Miss:0.011969131068667501 M.:0.011360600711588464 C.:0.011134334737919933 R.:0.010262099575815267 William:0.010216803454846487 :0.010001550743364146 :0.4908447854577575 +:0.06555029258378453 it.:0.022411080254154996 them.:0.013960274358735864 him.:0.011794471408788188 day.:0.007023147888716279 country.:0.006623371067812442 life.:0.006379068921811153 time.:0.006149222645496106 years.:0.006133794844379331 all.:0.00608993387395626 year.:0.005494142292732457 people.:0.005342485681309108 me.:0.004858218102498538 work.:0.004832724107277705 out.:0.004791019803553707 tion.:0.004773402413170993 water.:0.004637110143423938 .:0.004589966936225885 ?:0.00446115429195995 :0.8031051183802126 +day:0.07523606745152817 out:0.06948169609879497 piece:0.03925668887856086 state:0.02785754992100536 point:0.027410544857273247 amount:0.02701786991002405 part:0.02582571463185494 kind:0.024514865916520613 number:0.023085372054156054 line:0.022679692202093052 matter:0.022379992480504252 side:0.01958791445242141 act:0.01886585806638413 time:0.018562068541824753 feet:0.01811725139267 one:0.017992127938300358 use:0.01738784190492494 form:0.016963488629126153 loss:0.016465832785734345 :0.47031156188629836 +and:0.09193215126245093 the:0.08655323584217842 a:0.05636449136238763 of:0.0557841623739083 to:0.053015895185605434 be:0.041762867818070634 was:0.038854107194809494 is:0.032444980198006616 it:0.023158258841696346 not:0.021728318487847162 been:0.01946367924584006 Mr.:0.01830739970236989 or:0.017142098284533468 are:0.01630479000344174 in:0.015742788368093952 at:0.015063167619808986 I:0.013921354225316188 he:0.013832973098681903 were:0.013434080024489786 :0.35418920086046307 +the:0.17097706239725272 and:0.09040939301295443 of:0.06472353274966405 to:0.05190835050622791 a:0.03018219325811149 in:0.027261017181931375 on:0.025029542954121707 his:0.023661414485767893 an:0.01774410604833313 their:0.014243510760841084 that:0.012647031466426558 be:0.012147739965202844 was:0.011567728385408246 for:0.010656873710442034 at:0.010476981515865513 tho:0.010393793716883927 by:0.009252452799717065 is:0.009097139562767528 her:0.00876396070569273 :0.38785617481638773 +of:0.1868804468422116 to:0.09754891586370888 in:0.07534279633214745 for:0.07503502489515641 and:0.06100119311657046 with:0.05149877950875812 on:0.05102678021648056 at:0.04288858783961267 all:0.04103035686078308 that:0.03718530732185434 is:0.029476947203540087 by:0.025827688304938295 from:0.02460599692493537 was:0.024492169194141437 In:0.01957479212959978 be:0.019499149414772373 upon:0.013737538585893438 under:0.013121022773396537 as:0.011355043897760379 :0.0978714627737387 +;:0.014821086028307612 it,:0.01240662537358537 it:0.010957667743649313 them,:0.010478172997887352 him,:0.009818470498536186 in:0.009111925031242446 men:0.007723377028514571 him:0.007590567203756721 and:0.007085297512962071 up:0.0068020565745487704 time:0.00666310546721713 them:0.006370048551360362 out:0.005610707520252441 people,:0.005200996118003074 work:0.00496211064207166 life:0.004923741926900688 whether:0.0048384785897351845 hundred:0.0048007220391138306 time,:0.004711553484863312 :0.8541232896674918 +the:0.19329778407156095 of:0.0924023178115783 a:0.08569874614163546 in:0.08022133894104691 for:0.0392043592762729 and:0.03592400995121164 to:0.03542137395469564 The:0.020792246701187733 an:0.0181472594232003 In:0.01724491987770371 that:0.017143112795328586 his:0.016230482312956224 as:0.015301474690331543 with:0.012924473783049227 :0.01211704735933168 at:0.012087413109774316 on:0.011980681455833586 in-:0.01170423396562756 tho:0.011467020397513052 :0.25968970398016067 +Miss:0.3836165863363116 Mrs.:0.14557639646099696 of:0.08132895097195979 and:0.07420232753971662 Misses:0.016161391814915285 by:0.013237347789335238 the:0.009385166238340664 Mary:0.00908173731894227 Mrs:0.008735020517541416 Rev.:0.007843208496035882 Mr.:0.007823460837253002 said:0.007813580914409705 Dr.:0.007680274468102305 .:0.007248146361346687 General:0.006693250433272866 S.:0.0058189302746722085 John:0.005807322248881854 W.:0.004889128932227733 :0.004718294439287079 :0.19133947760645081 +the:0.11644272877650007 and:0.07328547290632619 of:0.05595464982822535 to:0.02232721725138685 his:0.022135710239609883 a:0.020391710965869017 be:0.02003639558499606 as:0.017684256907971093 Mr.:0.01701179596762123 was:0.0157483578646328 is:0.015003282100242977 in:0.013825560201298208 are:0.013652894221717036 said:0.011939461998854919 Mrs.:0.011635429162567858 that:0.011405477257130698 with:0.01112818385534577 at:0.01046809549528944 or:0.010114813380533941 :0.5088085060338806 +up:0.011891526828542468 ;:0.011477640919594979 hundred:0.009915051374342822 one:0.009598986376641229 feet:0.008373726501105115 in:0.008140970301993383 down:0.00726067045024855 out:0.007058563441668727 back:0.006685954309288962 feet,:0.006596845795605812 :0.006250076507703938 ,:0.006173515518501081 him:0.006037299163345599 men:0.005717551037811626 long:0.005580514362593398 due:0.005497628786456293 it,:0.005193942689249891 city:0.005026902819611701 house:0.004907306614424627 :0.8616153262012698 +of:0.2607074620838341 in:0.10219801623349554 that:0.059374306418702276 and:0.057217626532009236 to:0.05382326659582237 with:0.053055085055811635 by:0.05238595050223318 for:0.04407226830629623 all:0.03322325933818729 from:0.026525646029013115 as:0.02560876653975624 is:0.023936183540498233 In:0.02112657483871561 if:0.01735623866057247 was:0.013721366911123363 when:0.013434749966173712 but:0.011158345814342427 be:0.01088638010059254 which:0.010283705397144974 :0.10890480113567541 +and:0.07515527589995524 just:0.06324334871898436 such:0.056871593795343796 far:0.05452847107734738 is:0.03860789650665558 well:0.037990984096056384 was:0.03129807782816098 soon:0.029636502163167554 known:0.02820029518741307 but:0.021997045032248662 it:0.021146445559910996 them:0.020923815124964606 not:0.020158999979131394 much:0.02006737355009035 about:0.019927664855809612 long:0.018953798056046137 Just:0.018564285083274734 him:0.0185134009178319 that:0.01822919824487701 :0.3849855283227302 +to:0.23675297782503588 the:0.13146335457581734 an:0.12079918580771984 a:0.05186305167710501 this:0.0494265685233717 will:0.0476490220046335 shall:0.03176370093547795 bond:0.028940172838065416 not:0.02571742167681086 or:0.024195193874706308 and:0.023993013508448142 of:0.017986370130748965 would:0.017901520284230726 no:0.011647359289284004 great:0.011327265317435766 his:0.011140297133749486 any:0.01041213533703178 should:0.010334886541828703 may:0.00995562641455306 :0.12573087630394555 +one:0.1131489054449633 some:0.07292683844455583 many:0.04177586335839287 all:0.03741238811831752 out:0.036733531510679984 part:0.03646128012114051 any:0.025949144817565935 most:0.023945150594173712 portion:0.022626717977395593 that:0.018458867259454427 Some:0.014710432673859845 much:0.01381627062899526 tion:0.01361415857188464 people:0.013613525641643035 members:0.013050762655861154 result:0.012865030630324015 and:0.012800804287906304 none:0.012231252532968825 Many:0.011996314411964118 :0.4508627603179531 +up:0.027512081273517633 him:0.020209796433688917 made:0.015032862746678982 men:0.014941336864079537 them:0.014090242869133178 time:0.013799137223656074 right:0.013482237867069966 out:0.01326829999967642 it,:0.012658550642655692 down:0.01240428160055896 it:0.011465434125065094 good:0.011312282573271023 here:0.010203536331653074 work:0.010045196261685643 him,:0.009784989027359546 them,:0.009703930446786748 life:0.00833548339647553 long:0.00833099355811042 appear:0.00819453002042771 :0.7542247967384499 +and:0.09458979133160858 of:0.0647312833292391 to:0.06286210901573618 a:0.042777190953997145 the:0.042236893284945 in:0.026940510936003494 or:0.02305915293142188 for:0.022875755206160787 that:0.021370337973748058 be:0.015323323831282555 is:0.01459470865242879 his:0.012787131241986263 as:0.012699090838103758 was:0.01226309642144302 :0.011607980586118751 which:0.011313665322428399 with:0.010657453245596001 not:0.010426867337333449 by:0.010391758958081804 :0.475491898602337 +the:0.11919516938815296 of:0.07230453158552728 and:0.05781056740443249 a:0.043018564803886335 to:0.031305092790907506 in:0.020848713353460488 at:0.014270110001066288 .:0.012526810245749479 :0.012413283442322082 for:0.011719122709941797 by:0.010808400946589808 or:0.010404172990115616 The:0.01003576004804544 with:0.009811868184449042 tho:0.009295902015355835 was:0.008924239095331684 that:0.008672304223433876 is:0.0085591147338948 be:0.008335143826716943 :0.5187411282106204 +and:0.12459012845844414 is:0.07859009022676433 was:0.07540798628898253 a:0.06411491827992945 be:0.061255531591782666 the:0.053678337620570477 are:0.04466109779440337 of:0.03143981848813838 been:0.030148357244836606 were:0.02503796594170835 or:0.021983750649546958 not:0.020268693132189253 Is:0.01659608556258642 to:0.015375409340765171 he:0.014371455762110246 I:0.013808227371377954 that:0.01361569530056801 has:0.013417841177059438 very:0.013062498847864543 :0.26757611092037176 +of:0.24771856616623836 to:0.10055514755145552 in:0.09984480279807748 and:0.05814117240642057 with:0.05158849496637837 for:0.04613065771486411 on:0.044432355864291194 by:0.03519649785437645 from:0.03338388255327628 at:0.03070401576666744 that:0.026848878623973782 In:0.02041195271981872 upon:0.015248471773457326 as:0.011599582931726849 all:0.011326016994932605 or:0.008867228292995478 up:0.008407673252508876 over:0.007381477118522736 into:0.006992770039889695 :0.13422035461012818 +it:0.14805813079455024 It:0.11249033336006438 he:0.11228937265683774 I:0.0925080474457001 and:0.04039909708222062 she:0.03872067343431091 He:0.03539225951463104 which:0.03197113170004297 that:0.0240797081251982 there:0.018719613128936857 who:0.018430988909249296 This:0.014988999650211018 this:0.014654133016489868 She:0.014353742760333313 1:0.011339640361374479 ho:0.008381186660857545 lie:0.008323496358745268 what:0.007603627449967409 but:0.007123056579946032 :0.2391727610103327 +certain:0.11283756276577808 said:0.0972342172441698 a:0.095830695188902 the:0.07937519600675756 any:0.051624631706129784 such:0.04738356658421071 con-:0.04651219965021033 acre:0.03434312506745569 of:0.031300809657888645 this:0.03127678341636916 or:0.025157354333442624 described:0.022947982280082626 either:0.021404529339563827 that:0.017001540948442338 other:0.012055985421415711 and:0.011791725713768941 each:0.010913727216442586 con¬:0.008991493541518826 no:0.008472666125592563 :0.23254420779185825 +the:0.11504721821133622 of:0.09619944343257328 and:0.09175895826686 in:0.04891782724608697 to:0.0479807842858498 a:0.044172054056893034 for:0.03649602782303582 that:0.02450799380917152 by:0.022288037235875732 is:0.020558811612398923 was:0.01793335966584825 with:0.017387323685450835 be:0.016729049044000462 or:0.01443108986320009 which:0.014182874929401306 In:0.014011376741940966 are:0.01349348079312967 it:0.013172604066724988 as:0.012681719475406378 :0.31704996575481575 +the:0.16922195959335645 of:0.10249411425406083 a:0.06390362747028036 in:0.06226604619840556 to:0.054034662500120824 and:0.038622465223217335 for:0.02352869547054465 at:0.02257433664277665 In:0.018972774004494358 on:0.016867789299771608 or:0.01615667052554117 that:0.015296703288829419 from:0.014240232317250079 :0.013753115937737396 by:0.01252517433544512 with:0.01229719715447589 tho:0.010316696660732542 The:0.009361762887990845 any:0.009321941240871162 :0.3132440349940978 +the:0.17448411271772554 a:0.14450930292670117 of:0.058765441304996086 in:0.04032069151589421 to:0.026123071779014375 and:0.025137771173455514 on:0.017962747400926488 at:0.0152955026569871 The:0.014023939606540213 that:0.014003924624786345 for:0.011716545126240464 :0.011597666471896782 In:0.011269572871768541 by:0.01123988453325623 his:0.01116820406343099 or:0.011099134886547384 one:0.010997967950906422 tho:0.010737463417933794 any:0.01057383776608152 :0.3679732172049108 +the:0.12397170260116352 of:0.0943155434282568 and:0.04047242644896243 The:0.039121251000670806 Mr.:0.038849315117364246 that:0.03749617133485052 in:0.035552871266442694 Mrs.:0.022501402823346915 which:0.02123924194599288 a:0.01931574625006573 to:0.018732434543853364 his:0.014277305910035551 when:0.012369804522166431 :0.012284549055542177 as:0.00976422368815642 he:0.00970781880966711 for:0.00927189170209692 tho:0.009034083963245747 said:0.008744635319874062 :0.42197758026824567 +on:0.06103334567679174 law:0.023425726687090725 day:0.015345162132355043 it:0.015129975569867072 made:0.014580467598947223 one:0.014278279011527045 in:0.014269281233937853 action:0.0122376729733035 be:0.011883349973496563 and:0.011149520775339452 up:0.011075111329188723 is:0.010303246783593567 years:0.009992474751255677 more:0.009871966632485726 year:0.009841112071843494 of:0.009467589699238192 them,:0.009105473718971902 point:0.008977049201500031 him:0.00893229147788142 :0.718100902701385 +going:0.07275987742135868 and:0.06998608533812448 was:0.06299952426706237 went:0.050034613799669905 go:0.04099422288908295 carried:0.03819133211659705 put:0.0362696473083268 up:0.029852300556342127 lying:0.02983453995880927 were:0.024831054231228025 work:0.022339298002054225 kept:0.02200511054532716 came:0.02179755535935704 is:0.021552309079456263 goes:0.02143470352217309 be:0.020384732398777555 are:0.019412305136562915 them:0.01801252789091818 relied:0.017864578296816404 :0.3584436818819555 +State:0.14273578453838134 day:0.06437088721391947 state:0.05780554975322247 city:0.04816287857725455 City:0.028593666863813615 out:0.024082319361396702 line:0.02295711123075943 part:0.021907072383030985 county:0.02079711434771422 side:0.02018642348421952 one:0.015389854115826706 act:0.014288425497427126 people:0.013985857289181452 County:0.01324013464699378 name:0.01220478167615391 years:0.011673822435998493 corner:0.011358699692739891 office:0.011169423980997028 Bank:0.010928180782102486 :0.43316201212886685 +of:0.2771641039335857 to:0.12804081690687738 in:0.07977391454063529 that:0.059055067717525535 for:0.055141930835548615 on:0.04634685632933759 and:0.04388830880298102 by:0.03720328183566469 with:0.029303963263542922 from:0.02926949142508365 In:0.022301940876391892 at:0.017483133373886205 upon:0.015493738820707611 as:0.014505462358341771 which:0.012808885319041074 all:0.01266735596211262 during:0.0103597530221413 before:0.009224629226867993 over:0.008834049213057957 :0.09013331623666919 +a:0.3437668258838085 the:0.11031653568935253 of:0.0918296795009358 very:0.042927834027026164 and:0.03751138193084017 so:0.031235176310722805 with:0.02918034174653596 as:0.0223394553818864 in:0.02156531120583688 The:0.02106547891599962 A:0.02038664997457675 be:0.02027433324007138 is:0.018858481791795577 are:0.01864749934076842 to:0.014845783701305695 too:0.01381780632576268 was:0.013342245232017524 by:0.012623175951958943 for:0.011814483800906042 :0.10265152004789214 +he:0.1819888624920182 I:0.14805594843748932 it:0.08526687768407837 they:0.06855721082238929 we:0.04441498331330966 she:0.04297392589927325 that:0.03788220099124003 who:0.033152083842431714 It:0.031945648003573704 you:0.031161166155963697 and:0.028445304574132094 which:0.02777829165580673 He:0.023793229553327397 one:0.02105548850884503 man:0.01649784804108025 ho:0.011738822111128458 there:0.011158576269700519 We:0.010112995294662154 1:0.009695381414388969 :0.13332515493516114 +that:0.15395477139417882 and:0.08466082895749354 which:0.07896004973628053 would:0.0780875746339959 but:0.048510165905902174 will:0.04469754210416366 should:0.03931445866910356 when:0.03694862872971653 to:0.03164632810385163 as:0.024072965695522273 if:0.021424032571863677 had:0.020954850480097903 Had:0.020826652077209257 I:0.017250622392432555 may:0.015519461955767611 did:0.014805286010752533 where:0.014048628459713209 shall:0.013993581545245666 whom:0.012303618005435418 :0.22701995257127355 +those:0.222888402910964 men:0.10463386661093563 and:0.058552754205475184 man:0.048959249234431575 people:0.04156837305327661 Those:0.035115216624731986 one:0.033465098774553184 person:0.022838593211770612 persons:0.02198543501490095 women:0.021491229182200696 all:0.018235154040016056 others:0.013755772808796928 woman:0.009623825037783718 but:0.0077847497901242756 thoso:0.006909232034922987 friends:0.00674579782066668 you:0.006387408634644243 who:0.005880595338877638 many:0.005873980830440096 :0.3063052648404869 +of:0.20203262496644486 the:0.1907440391831055 and:0.06396710318450347 to:0.04796992395575892 for:0.029780635883175297 a:0.028963113885363725 or:0.022219080955286876 that:0.019812278111851746 at:0.01850658503171246 this:0.01805696812032148 The:0.017875377692208465 in:0.016548829324301396 by:0.015748593971520793 his:0.015397636872255802 their:0.013224008937710138 on:0.012412190353587912 from:0.010876648569764029 tho:0.010090612320994672 other:0.007999240516695408 :0.23677450816343704 +and:0.08995317707915026 to:0.06844710404109794 of:0.04605142056172993 the:0.04074574508561307 which:0.02479116931334353 that:0.023764822140213245 re-:0.020841117231308055 in:0.020803825395358622 for:0.020278423301550053 :0.018417753428486977 not:0.016860793136637672 con-:0.016444405871234195 is:0.014386481772210856 or:0.014080680914153714 be-:0.01352268143271276 I:0.01317002660943805 was:0.011429878269381662 dis-:0.011196807025842847 he:0.01113106290024311 :0.5026826244902934 +the:0.22788200389729305 his:0.06370098333904947 of:0.05627675615939853 a:0.05075802217348522 one:0.03327931910998567 their:0.031292450094324166 our:0.02540069257763133 such:0.023714813054174926 and:0.02369957605206902 her:0.021861938671094434 in:0.020923223617304157 to:0.02021742840500674 other:0.019215337653134257 this:0.018034725756885594 sleeping:0.01781938045978649 tho:0.015131918573699577 two:0.012628074303111504 freight:0.012322788135642776 my:0.011916758088468747 :0.2929238098784543 +and:0.2343404630297888 be:0.08423890161172572 was:0.057269717422109706 is:0.04482676612845045 of:0.03273131587922618 as:0.03035571621898489 been:0.025961821875615146 are:0.023965555859386367 or:0.02341334029681917 in:0.01944456159557373 were:0.01598470311114689 for:0.01211131402514534 to:0.011246481889615358 nominally:0.010039422262754807 not:0.00882966275230698 well:0.008679691431266283 therein:0.00815400982914583 Is:0.008124579216592527 being:0.0075426821812083975 :0.3317392933831374 +of:0.09624821144793387 the:0.08846760701204123 and:0.04374352159096465 to:0.03321263857534947 on:0.027498136293128375 at:0.023068459630832826 :0.019878248450082046 in:0.016496278692964397 by:0.016108645520273628 was:0.015729423214577563 as:0.011223519261325443 from:0.011091923509675099 were:0.009692628577449519 a:0.009035999514091479 .:0.00865043234365098 that:0.007912891519050322 with:0.007359690444554186 be:0.007094687193148628 are:0.007053278234119795 :0.5394337789747865 +of:0.09129790931378902 the:0.07369883040827747 and:0.047842263382354346 in:0.04189055351593407 to:0.04045875475680249 a:0.03542341257202578 be:0.02020462051672066 for:0.01979292654746225 was:0.01760256398103379 at:0.017380150555488715 is:0.014984483003968216 with:0.014047653760730413 by:0.01374644383819499 :0.012670486581795598 In:0.01200961464556976 or:0.011563835749786333 from:0.011391516893522809 are:0.011273104484969465 that:0.010755276030689069 :0.4809655994608848 +of:0.24868287843776526 to:0.08342107447857224 for:0.05613992201026793 that:0.055090905218787185 and:0.04601617603094299 with:0.04037038597525672 as:0.03570187479722601 by:0.03024069701800964 before:0.024973804280149003 from:0.02425085887732969 which:0.023504578355461447 in:0.0212337356398869 when:0.01575716457359351 on:0.015391315826965226 if:0.01438875331290921 than:0.013419286366068785 have:0.013100530848180086 is:0.011886469765732098 until:0.011370356232247863 :0.2140592319546482 +the:0.4071374189315913 and:0.06449181461132415 of:0.02892866618288876 in:0.028670005984162618 The:0.02603617389223924 tho:0.024993820467459137 a:0.023579040051412606 to:0.01755553213771617 on:0.014626070241060114 by:0.013447843485786471 or:0.012794166593089693 tbe:0.012024509152999897 :0.010353482361299817 that:0.009291482237329618 In:0.007938246807075932 from:0.007526799010378873 other:0.007469196869028889 all:0.006409533041696086 for:0.00626887758057738 :0.26945732036088327 +the:0.11919516938815296 of:0.07230453158552728 and:0.05781056740443249 a:0.043018564803886335 to:0.031305092790907506 in:0.020848713353460488 at:0.014270110001066288 .:0.012526810245749479 :0.012413283442322082 for:0.011719122709941797 by:0.010808400946589808 or:0.010404172990115616 The:0.01003576004804544 with:0.009811868184449042 tho:0.009295902015355835 was:0.008924239095331684 that:0.008672304223433876 is:0.0085591147338948 be:0.008335143826716943 :0.5187411282106204 +:0.09973548899020175 it.:0.014264376421281543 .:0.012352586521264588 them.:0.009362879800052324 follows::0.0066518083168230465 ::0.006107769006502969 him.:0.0060494634344083805 time.:0.005547986521970728 country.:0.005501589136576612 years.:0.0050694805425053075 year.:0.004918732504695331 people.:0.0048624380073915615 day.:0.0047026676568567155 work.:0.004006000889607595 and:0.0037421097106692526 It.:0.0036160805986441016 life.:0.0036019555964950365 party.:0.0035759602529169955 city.:0.0034272689335889165 :0.7919033571575472 +the:0.11167491874733854 a:0.08925735436906014 of:0.08589371633656694 and:0.08322070152218906 in:0.05859974580624386 to:0.04812548841943811 an:0.03455283319878321 that:0.019853573194657782 as:0.01769001501740322 for:0.014734294410943798 In:0.013412135549657042 on:0.01274490722908497 his:0.012186590555369333 such:0.011607542253404124 or:0.011431885280333008 with:0.011203531604849779 The:0.011068461492532171 which:0.010993491679131214 their:0.010708240444295115 :0.3300405728887186 +and:0.07239803900286565 NOTICE:0.05823532109029693 Mr.:0.05327853436476169 to:0.04372317851955099 IT:0.04099639734096058 :0.03355538911763924 .:0.0313029930808809 the:0.030389737927505378 of:0.027815967426675053 on:0.021743098243521684 t:0.014889109971479937 in:0.01483113525159252 Mrs.:0.011112129741526073 as:0.009710189029808716 do:0.009646946530974435 It:0.0077211182390288895 it:0.007593067159506994 for:0.007571445944647311 On:0.007410114141176338 :0.4950760878756007 +that:0.24946686252096273 and:0.11235849886388408 as:0.08525126060697615 but:0.08007282913977136 if:0.06434670955175177 which:0.04621673749141204 when:0.04562900802564805 what:0.02699091241305368 where:0.026270454876484804 If:0.023366752352344807 because:0.020726059619616443 though:0.018168146310506533 of:0.016586647536304167 But:0.015039333503707383 whether:0.01307519972953007 until:0.012334632602075403 than:0.011704816700017375 how:0.010398421274931182 said:0.010070018914016238 :0.11092669796700574 +able:0.04795907955406747 and:0.04353567184461763 is:0.041235567977807294 have:0.03876828334361679 him:0.03662776951487707 had:0.031575658538607075 right:0.02987975483179204 enough:0.029329435508820084 willing:0.028280012905788597 not:0.02682313507330459 them:0.025942367597424534 order:0.025862676912433363 was:0.025636089024478878 necessary:0.0255781117934275 began:0.024933373581299306 ready:0.023995472098691805 ought:0.021512881147108052 want:0.02106226583126587 as:0.020369275689315257 :0.43009311723125676 +the:0.26257139964472326 a:0.17645638097727684 this:0.1121052477251948 The:0.05907922792408566 This:0.034763601899196535 his:0.028138665994696402 every:0.01746779300551774 some:0.01732215694644186 other:0.0171321821057022 that:0.017051092806378787 same:0.015621261679680252 tho:0.014999594624138362 my:0.014749882748807832 and:0.014066835103332943 any:0.013757880810538095 following:0.013687490126177617 one:0.012524340583717122 public:0.012317589849558407 of:0.0119522453280274 :0.13323513011680785 +so:0.15468709992944016 a:0.09783154589784032 as:0.08705196719798305 feet:0.04871562259747674 not:0.04421978755048004 and:0.042984077842945695 how:0.0368205318153726 Not:0.03386420286679559 too:0.03282930042534803 So:0.031897744417001675 the:0.031242452086480913 very:0.029804386037112905 was:0.02908222157134174 miles:0.0250135430518922 be:0.024356457521939528 ere:0.018381255136678955 How:0.01769962518950201 inches:0.017578508771436314 is:0.016641442225726798 :0.17829822786720473 +of:0.33447884277868256 that:0.10738350536284076 and:0.07127672924839491 to:0.06206863345781371 in:0.04578657022899279 for:0.03279745560454132 as:0.03162367583514592 at:0.02684335468712547 by:0.025593648403459575 but:0.023941308266425407 If:0.019609728399891477 which:0.01749522437827396 if:0.015097983839910538 when:0.014584328411757738 all:0.014285342877078333 In:0.013757244059484794 from:0.011706656337208604 with:0.011430074850801228 until:0.010374281106198058 :0.10886541186597286 +and:0.10227285162684101 called:0.054845741003349394 due:0.025542442396411097 conferred:0.025056553278636377 made:0.024347228015060278 based:0.021263212737048825 call:0.019736850002332842 that:0.01940909752845717 depend:0.01898026395783348 imposed:0.018620022381169846 levied:0.01793618450538746 is:0.015136341512899217 enter:0.014675080871946624 effect:0.01448748676287412 delinquent:0.013595873551338842 be:0.013555239109503727 down:0.012985118660494762 dependent:0.012639754535262006 looked:0.01205396373274932 :0.5418606938304036 +and:0.08240226589094175 of:0.06580327897653192 the:0.05118093324771611 to:0.04393792080707899 in:0.039489813301930625 for:0.02060471789057975 in-:0.019050337386816867 a:0.01869858140984614 that:0.018002081479625665 is:0.013793427922293548 :0.013032817664346982 con-:0.011830681702944733 an:0.011723272267538562 In:0.011711736850051412 or:0.011534098221801584 de-:0.011454723001580765 with:0.01085139124204177 which:0.010251038065817349 on:0.01016545653837793 :0.5234814261321376 +of:0.09129790931378902 the:0.07369883040827747 and:0.047842263382354346 in:0.04189055351593407 to:0.04045875475680249 a:0.03542341257202578 be:0.02020462051672066 for:0.01979292654746225 was:0.01760256398103379 at:0.017380150555488715 is:0.014984483003968216 with:0.014047653760730413 by:0.01374644383819499 :0.012670486581795598 In:0.01200961464556976 or:0.011563835749786333 from:0.011391516893522809 are:0.011273104484969465 that:0.010755276030689069 :0.4809655994608848 +rate:0.17186823680893967 sum:0.1493546646773255 period:0.10215367492549689 one:0.03141483595237428 out:0.030393847906966545 number:0.02698869755212515 amount:0.02185798844509945 distance:0.021248059154097006 expiration:0.020730032117680253 hour:0.01836680125523169 term:0.017073708244353957 price:0.01510143400017674 cost:0.014201812457477567 half:0.013813056653319718 depth:0.012555895746136614 end:0.012406937674058722 value:0.011896093725756146 and:0.01105727848517124 line:0.010732928217857244 :0.2857840160003556 +the:0.29814243806079244 newly:0.06221382744318372 be:0.058583069388705944 duly:0.052305211501561914 and:0.05184496841416244 was:0.04154721812188159 been:0.038672104502245015 well:0.032326364717439826 committee:0.020636789870882015 were:0.01865563956780397 is:0.01630462951535292 The:0.015076521553196874 are:0.014539879108028942 tho:0.013617494435801753 being:0.01307391004077248 hereby:0.012631929376517397 an:0.011404854821707467 above:0.010005109499605968 recently:0.009626683766229754 :0.2077913562941276 +and:0.08791715288031852 laid:0.04982970740560851 came:0.045011549388182304 break:0.04233995074946563 went:0.03993868170598312 cut:0.03985450763627558 lay:0.039209100094247995 it:0.03667329005228823 way:0.035973609212655334 put:0.03262199742807428 come:0.031785308117811044 go:0.03117640807388659 him:0.02761113815281423 them:0.027402093357517008 ran:0.020363598544004102 sat:0.020306742717959913 run:0.019838767217043588 coming:0.019643466796127156 cutting:0.019476794597067717 :0.33202613587266916 +the:0.20225471896322147 their:0.14470737420521565 and:0.09534085861942608 our:0.09286945986931669 his:0.08091505018973312 of:0.06124893864200732 her:0.0499245018102605 your:0.035944149681691996 many:0.02993532449769373 my:0.028156386945343483 The:0.02646352576735519 a:0.02029647301158433 its:0.019978203404620722 some:0.017993634040716317 tho:0.014638887562518646 whose:0.01457722761472096 these:0.013576856676970325 no:0.01334806832922856 or:0.013120224553525503 :0.023710135614849383 +has:0.19212435461510585 have:0.13403863947023803 was:0.08559156127178713 had:0.08372305772725842 be:0.05555421515408543 and:0.05315399164419987 is:0.046632769989698265 he:0.0376436962482191 been:0.03168344944567837 I:0.028978162445348902 are:0.026340773483072406 were:0.019703555008983773 having:0.011925062958706639 the:0.01119563443388937 He:0.011117491520720689 who:0.010616799372608864 lias:0.010085752294140375 Is:0.008228471951739086 being:0.0079770809509453 :0.13268548001357414 +the:0.5194720849675674 The:0.11306071499465897 a:0.08090766534450423 of:0.03180196875963508 tho:0.02559801557088802 and:0.023129034803921075 his:0.021400388541263055 to:0.015315886436225888 our:0.012501114140737892 their:0.010309617292066474 my:0.010269183649925536 other:0.00999809599471302 tbe:0.009598537480081906 all:0.009430446253779319 her:0.008099430818052691 such:0.007939971508226278 old:0.0073677302787722235 one:0.006765372599332798 its:0.006366525615195169 :0.0696682149504531 +the:0.17027190784407714 of:0.10585557835912704 and:0.07355927771906935 to:0.05486905984958157 a:0.04543746377447453 in:0.03128555052933153 be:0.028704485173100775 was:0.02350529800142253 is:0.02215549335554494 for:0.02077556258358175 his:0.01804639098945333 or:0.016335100594594944 their:0.015847999621030492 at:0.015526727957625254 been:0.011815834631173878 are:0.01139058447814694 this:0.010362020528084328 tho:0.01035635773045807 its:0.01000473355720393 :0.30289457272291764 +the:0.3861296778969821 a:0.2578654183647435 this:0.041703125886410265 in:0.026979930124121497 that:0.025983910825599105 tho:0.02171064040449666 The:0.019870906121104103 and:0.01459363812804711 first:0.012290294711021246 any:0.011334914329326188 to:0.009764930366132976 A:0.00965246780351325 highest:0.009391401628864812 In:0.00938241383260865 one:0.008927746848393463 starting:0.008295169659028113 said:0.008065149949733846 tbe:0.007682115423829967 of:0.007362339476875515 :0.10201380821916763 +of:0.30880756676920423 to:0.10672406517883717 and:0.06709139932394677 by:0.06088406821948092 that:0.05491976316313337 for:0.05475283887758656 in:0.03907385843254659 on:0.03584643109841774 with:0.03399542156234023 from:0.021208061859000035 as:0.020118492703243836 at:0.019293916518300477 all:0.018238133614027405 is:0.01746094747880012 upon:0.01673818840330059 under:0.011348074586925678 but:0.008768916224952891 In:0.008696981932791994 which:0.008532439906536658 :0.08650043414662673 +one:0.1028303141280697 part:0.05963429477052991 out:0.04766456937681193 some:0.031418679026461914 members:0.030764490253327767 side:0.029940657362655835 portion:0.022063658796890564 office:0.020457735219956013 member:0.019726706386316174 end:0.019666887540649894 tion:0.018667441728710307 parts:0.016814747270460957 people:0.014112771422418794 all:0.014072739582212475 any:0.013183573287639892 One:0.013083578354183906 that:0.013024335602903442 account:0.012482348155001894 many:0.012077825070275192 :0.48731264666452345 +and:0.21765124236289793 the:0.14925645225555648 any:0.0825913561461771 in:0.07834293371988744 of:0.07650001279159906 all:0.0657013326556132 or:0.04301957726993504 to:0.04124796393490254 with:0.03183753408711995 some:0.02938996732285683 In:0.02859498510109441 many:0.023633627964044012 no:0.018026334090949954 each:0.015511353924513657 from:0.014514961174295581 by:0.01394701182255812 every:0.011910005069742392 an-:0.011052348613981501 for:0.010878472805611137 :0.035392526886663646 +the:0.28926184310067576 their:0.062138306972349726 of:0.05933536351206745 his:0.05093987830712094 such:0.04754877411755242 our:0.04245289518226648 for:0.03926270644327698 in:0.027401796316217034 its:0.02647824466309528 these:0.02527830399548295 or:0.02508631607100724 with:0.020981157355589298 an:0.01965257684709844 a:0.01893357782751747 and:0.01854611927500741 tho:0.018348324538937904 this:0.01694250432888178 other:0.013891230616741725 her:0.013638639500152814 :0.16288144102896093 +and:0.06032833818185264 put:0.04626759383449924 work:0.03921638744840173 it:0.03854040856065956 out:0.03533262048746244 placed:0.030087437350619087 that:0.028628295437688522 him:0.02747694581134341 them:0.026518034583709153 up-:0.02472857702347445 made:0.024571538109792148 down:0.019473505936214244 interest:0.01787310640297392 was:0.017740902534535877 up:0.016579771826493003 depend:0.015853793941622004 go:0.015646066053158495 called:0.015503838313893882 carry:0.014367218932256854 :0.48426561922934935 +the:0.10785936344840133 of:0.08041832059700071 and:0.06606829444959902 a:0.05643038308012388 to:0.05535280337717975 be:0.02853289252669998 was:0.027105035006482578 in:0.0247654133565907 at:0.015793819366212335 is:0.015728651725315592 :0.013428133240815843 for:0.01204466748614453 been:0.011592220107946525 or:0.011211388204423864 are:0.011026362473945926 his:0.010811659072250212 by:0.010680387155496561 were:0.010201582804998114 from:0.00959972225656998 :0.4203489002638025 +the:0.5461706697340499 an:0.14821724322056176 The:0.04784863425918881 and:0.04535030666637002 tho:0.033436096264110926 tbe:0.015193312492965825 of:0.01237759381703385 a:0.010725126503089794 An:0.010220580281059705 other:0.009278067020058739 said:0.00777780392666321 or:0.007340538454799235 this:0.006118682013084508 great:0.006056880389188493 any:0.005992561221265527 that:0.0058596391445416745 by:0.00464222242125465 for:0.004287257341999686 general:0.003538730040994815 :0.0685680547877188 +of:0.348115312131881 the:0.1693488283103753 in:0.09265906125467006 and:0.0511385367312371 for:0.045144944614758674 by:0.025333550400041215 In:0.021604470630234577 The:0.016325256149723435 or:0.01570439397644633 their:0.0149388920615258 with:0.013753555494882374 tho:0.011549348655394556 our:0.009738093298009322 other:0.00972140309250501 from:0.00907551351515804 an:0.008628837620369853 that:0.008609687494530331 to:0.008495537980880846 good:0.007435509577409717 :0.11167926700996643 +number:0.08683069308129672 out:0.05652523988365806 amount:0.0316160995429281 loss:0.03003158991922196 thousands:0.02193415724864308 plenty:0.021327800488850416 time:0.02084447319022837 kind:0.02068065360314574 all:0.02034476343485012 use:0.01987581810044361 means:0.017489403156055485 place:0.017484157051135582 deal:0.017371256224811903 purpose:0.016977074526153133 day:0.016383311738487803 kinds:0.014686781173143919 matter:0.014455532536242705 set:0.01445093555379865 way:0.014287353369565244 :0.5254029061773394 +of:0.27311061954915317 and:0.08508606601730628 that:0.08308158500237171 to:0.07635635852416676 by:0.058703614190701706 with:0.03614022654762887 from:0.03296968842528607 all:0.031822622635800595 on:0.02946118580157874 for:0.02669553104701588 when:0.020084963922457358 in:0.019023470993723524 as:0.016376256683554507 which:0.016285829429734607 if:0.014422029216570752 upon:0.01178385594516579 at:0.011309960004800284 is:0.01089321434644151 If:0.009665575751730496 :0.13572734596481137 +said:0.16126990604449742 the:0.13876847296405154 a:0.04444043404051386 one:0.03978771937272897 of:0.039526475816071154 North:0.020994425737545265 other:0.01953952939370564 South:0.016633875466672474 and:0.016586098602260985 his:0.015453113139415657 school:0.015164986119882979 County,:0.014341703303005493 white:0.01379031562223883 this:0.013656167607166557 third:0.012183479556104555 or:0.011567253052008807 two:0.011341434498441601 county,:0.011012457414976543 County:0.010923622439720889 :0.37201852980899075 +they:0.11009896495623392 it:0.08231811945986711 I:0.08169968423142959 he:0.07416389228861268 you:0.0680133073885907 and:0.05771316041256579 we:0.05301132853821961 who:0.04663556511664488 which:0.044391493721531956 It:0.041995703943820954 that:0.03148832075639719 They:0.0209691518630286 We:0.017390972517449893 He:0.01720248070900681 she:0.017042454162454066 1:0.011983566341711813 You:0.011496787239990976 as:0.008827513624339806 people:0.008101896938735018 :0.19445563578936867 +two:0.18232116076780042 Two:0.08951055360572838 and:0.05589628856992293 three:0.0439483456580406 five:0.02444633453451685 six:0.019484378594578477 the:0.018528096567363515 north:0.01686465635599693 four:0.016743873036190713 several:0.015400418750180207 south:0.012325746338015985 street:0.010970715783907209 ten:0.010419734366210059 line:0.009299509116694549 thence:0.00712345019029986 Three:0.0068891435448042064 quarter:0.0066527989937787526 thirty:0.006502796236976699 fifteen:0.006213800236678549 :0.43945819875231507 +the:0.1454500361787387 of:0.1080247151493501 to:0.04516715868785427 boy.:0.036249098323069925 and:0.03403580073245388 girl.:0.032660326140049385 a:0.03171979252021135 in:0.02714044436566853 for:0.02365213940166824 be:0.021942286684630472 their:0.021087116084698817 his:0.019774122064073623 was:0.014637031197642503 with:0.014008395154201525 are:0.012730720509515858 is:0.011363112041341867 as:0.011357870543086747 from:0.01063391638067422 were:0.010589399829418696 :0.3667765180116513 +of:0.15985627847792888 the:0.12172103788769964 and:0.05425365404264323 for:0.05158299769763902 to:0.05129216520675392 in:0.04129104727487619 a:0.027080440634002924 with:0.019700988443863636 at:0.018339610372764714 by:0.015955541607956265 as:0.01560683399699342 their:0.015575363807924302 or:0.015535751090762141 that:0.013745029518636522 his:0.011623624760334747 be:0.009824246975618353 from:0.00974251503181452 all:0.009400954503844594 our:0.008685823454787162 :0.32818609521315584 +the:0.4063717561418838 and:0.15248222451506008 of:0.056294615190024724 his:0.05608605043205406 a:0.03950719792610373 The:0.02930443580439245 tho:0.028863610995169858 their:0.027166334265912976 in:0.025064935464171354 its:0.01923455364426701 or:0.013015109659838648 our:0.012605140278406864 to:0.012347576789677479 with:0.011423582506233557 tbe:0.011217913213230478 her:0.010693381679646133 your:0.01003585138584376 my:0.007777633020183517 this:0.007455165878735106 :0.06205293120916437 +the:0.11919516938815296 of:0.07230453158552728 and:0.05781056740443249 a:0.043018564803886335 to:0.031305092790907506 in:0.020848713353460488 at:0.014270110001066288 .:0.012526810245749479 :0.012413283442322082 for:0.011719122709941797 by:0.010808400946589808 or:0.010404172990115616 The:0.01003576004804544 with:0.009811868184449042 tho:0.009295902015355835 was:0.008924239095331684 that:0.008672304223433876 is:0.0085591147338948 be:0.008335143826716943 :0.5187411282106204 +of:0.34456071089154583 in:0.11901866608135377 to:0.06348507137055137 for:0.06285938322995642 that:0.04661472353640838 by:0.033026740156250095 with:0.028204955742202616 as:0.02609260768953812 In:0.02491835492811846 and:0.024483675894114997 all:0.024246433326793434 on:0.024010879221846217 from:0.022515455309812735 upon:0.020978976955289354 is:0.013053046491198577 was:0.009486561032539587 if:0.009201153275496613 which:0.008944493390870013 over:0.008316727881401224 :0.08498138359471216 +of:0.1200771946266771 and:0.08085011823388627 in:0.07729099615538791 to:0.050008265494257964 any:0.045446848645355864 from:0.04337180901900968 the:0.04326145692830342 by:0.03693269684748342 for:0.03691960277758554 is:0.033344024060641006 with:0.0325999916525538 only:0.030709369676050573 that:0.030505168439642644 no:0.028349735284852465 at:0.02833692974043384 but:0.025145887808515236 In:0.025076926656931214 was:0.021684989064465733 on:0.02120173560204187 :0.18788625328592445 +to:0.31059571406939357 will:0.20425757625330873 would:0.133094322816397 may:0.05360388159749485 should:0.04751723065858571 shall:0.042846075470128905 not:0.03498447710879167 must:0.033197114998686265 can:0.01733161400489818 could:0.013140053132453297 might:0.010038574927070389 cannot:0.008553309467174345 and:0.008238336102433406 it:0.006886561425115729 there:0.00574775815678757 never:0.004645075469242335 only:0.004505185745248458 also:0.00449863383901001 always:0.002953648667362942 :0.05236485609041661 +title:0.4553603377995789 principal:0.20577395792501257 dollars:0.012641994205729389 land:0.012242656667389044 due:0.010522483616723928 costs:0.008959443235232479 mortgage:0.008859633965111706 terms:0.006062470757850695 cipal:0.005508265241060487 sale,:0.005298679915932403 judgment:0.005059440991852329 labor:0.004944199736814511 redemption:0.00493368238435106 estate:0.004578617989150671 interest:0.004574718176119178 time:0.004355705905172437 property:0.004344533625998806 in:0.004074433658041648 dollars,:0.0039723406784765245 :0.22693240352440122 +of:0.24010428271572867 in:0.11078435490241184 and:0.07820347360410065 by:0.07422723321621351 to:0.07419403916547329 that:0.06410040794284588 for:0.038884636851467466 with:0.03775128686654519 all:0.030590592476311174 as:0.026887412003847533 In:0.024577662426836476 from:0.02083620020860237 is:0.015346229354364683 when:0.014015042764624223 on:0.012455198528874915 upon:0.012273220991822022 be:0.010990526641604107 under:0.010267073882138754 but:0.010011512766917455 :0.09249961268926978 +and:0.10119789434721585 the:0.08750650826269914 of:0.06965652901268303 to:0.05397231607343732 be:0.036865526523342323 was:0.035053854231348616 in:0.031304212937328754 is:0.026000336185972757 are:0.0211137244270955 were:0.018396838756921496 con-:0.017174874810272 been:0.01699376096117119 for:0.016754654309511306 com-:0.014528737373553537 much:0.013539613194676265 their:0.013377304520975603 he:0.012755370579971337 or:0.012523440083369532 not:0.012362122862064477 :0.38792238054639 +day:0.46009802539785866 side:0.035152414839266795 State:0.027831771366849202 part:0.02369328128303595 corner:0.018193117897031888 date:0.01785418815099564 state:0.016402823963137025 Monday:0.015824013097445563 city:0.015025499262893701 feet:0.014275128145837555 line:0.014243613053721349 middle:0.01321675563549189 dav:0.012345931606423678 month:0.011874540850766663 act:0.010686932725710233 county:0.01023183109195034 1st:0.008957922966727499 House:0.008188464432319796 quarter:0.007762337025030501 :0.25714140720750606 +the:0.06169722431845265 of:0.06141780062434787 and:0.05289566029537202 to:0.04470398990737692 by:0.03273273002026996 .:0.03201251939626342 Mrs.:0.02649968158989321 was:0.019619299248663548 :0.01894482790230434 said:0.018218016245143964 Mr.:0.01331723015420324 were:0.011483936327038306 be:0.010196613952027127 that:0.009336637234854159 is:0.009165777661262609 -:0.00905104059439908 from:0.008675924140863406 boy.:0.008336017990310873 Dr.:0.007958534314786762 :0.5427365380821666 +was:0.1301705613155595 and:0.10326611762782982 have:0.08307578507188494 are:0.06760925441196808 were:0.06410387773109126 is:0.06359901791429103 been:0.06172446102595248 has:0.059076953035222125 be:0.05378858354183832 had:0.047237485419387014 the:0.021552368110390168 being:0.013478190482852455 well:0.00955570031565296 of:0.009423912461758482 Is:0.008709605311434176 having:0.0065083200986951 he:0.005613069793063372 so:0.005376596498659871 not:0.005207345696826906 :0.1799227941356419 +the:0.1454500361787387 of:0.1080247151493501 to:0.04516715868785427 boy.:0.036249098323069925 and:0.03403580073245388 girl.:0.032660326140049385 a:0.03171979252021135 in:0.02714044436566853 for:0.02365213940166824 be:0.021942286684630472 their:0.021087116084698817 his:0.019774122064073623 was:0.014637031197642503 with:0.014008395154201525 are:0.012730720509515858 is:0.011363112041341867 as:0.011357870543086747 from:0.01063391638067422 were:0.010589399829418696 :0.3667765180116513 +of:0.24533784465252742 and:0.09901982345911771 to:0.08290364221225045 for:0.07712113181884554 that:0.07192390072631769 in:0.061606912462424765 with:0.042849308801594994 by:0.03351049001147295 on:0.02561695320306575 at:0.02446292220584236 from:0.022673328561774765 In:0.014514843279799813 nearly:0.014349007738503049 which:0.012387821633874882 are:0.01103544775840527 upon:0.009606811169850554 or:0.00957337702236946 but:0.0076897531803761885 was:0.007342379788583233 :0.12547430031300316 +and:0.11556519417565557 the:0.08481561130242181 of:0.07004505633234759 to:0.0341721636003462 that:0.024989712907709082 a:0.02033341508293078 in:0.0195282517879194 which:0.01857195564664746 will:0.01715996747418425 for:0.016368884390064373 or:0.014422145985509987 as:0.014111218851616864 I:0.01385069987486557 he:0.012904087368211841 they:0.012821621856491204 :0.01282033337760942 would:0.012423812591599326 such:0.011604284904520845 The:0.010395181332605091 :0.46209640115674333 +and:0.08832934385398629 him:0.026983886122743477 application:0.026114251583320973 was:0.02489894908956569 it:0.023075411912330694 up:0.02251060273927451 made:0.02033127255167498 out:0.019486588030277113 time:0.018903019749807147 them:0.018632082326077732 used:0.016786364428856393 but:0.016269712072418657 ready:0.01618805525798725 is:0.016020989807641675 not:0.01564434704203927 demand:0.015432404580140367 asked:0.014792759533761007 that:0.01442331755080464 work:0.014074418411123594 :0.5701022233561686 +and:0.10706369487481922 so:0.05957960038447563 fact:0.04286502607468182 said:0.04191078837661015 all:0.03315022743078857 say:0.0330362577229265 of:0.03207197668432945 is:0.03027064840152865 know:0.023526717164677885 to:0.02316785757579128 in:0.018384008172419693 says:0.01818615006592108 me:0.017814331559052723 but:0.017642894171901978 for:0.017520262261926295 believe:0.01687297971043687 stated:0.016713714680076947 as:0.015749258850104135 stating:0.015230830495024312 :0.41824277534250687 +provided:0.0726693184114206 and:0.052180235888741225 accounted:0.02959058869515667 paid:0.0247999613435089 demand:0.024683033386176854 cared:0.023400504800461415 them:0.021095410949656425 vote:0.018377743078794084 not:0.018368601152607945 or:0.01768339816203993 it:0.016560729309177208 was:0.016538211142371854 used:0.015592186074715932 time:0.015214910775382378 been:0.015094114382250728 land:0.014310953687134495 work:0.014122619928398824 him:0.013861197124959545 voted:0.01363582395018327 :0.5612204577568618 +conveyed:0.10376583296956954 due:0.09721270962882905 pursuant:0.08039059633066177 belonging:0.07485494070760354 prior:0.05609679915264856 thence:0.03603946149450234 title:0.035109297155389185 and:0.030223206451248895 assigned:0.025803407872968864 angles:0.024093872146577267 line:0.019615971122996297 directed:0.019480685491455325 as:0.01930287222739874 attached:0.018657521294228107 feet:0.014286561509994964 granted:0.012705364597055957 it:0.011743411294406416 answer:0.011621672019494598 parallel:0.011106585276491034 :0.2968892312564795 +the:0.1225076649597919 and:0.07161361224167645 of:0.06473629272949444 that:0.04958618514670853 in:0.028043918893866652 The:0.018977980784367614 which:0.018116365783577473 a:0.016457792131635864 Mr.:0.016204994403703713 any:0.014996833454149294 as:0.014951613809545558 or:0.014949554079500006 such:0.013882217367030407 to:0.013849308168220787 no:0.013167338522426214 he:0.012643594782225433 their:0.01149823381066073 for:0.011150101666402977 other:0.010739089653356843 :0.4609273076116591 +the:0.3184701503740088 a:0.12369763014218707 of:0.11875231977086587 and:0.07352031522881346 The:0.039397660162165456 in:0.02559263583444962 tho:0.02326483363106236 that:0.012787345076727808 to:0.010287280295699164 by:0.009597381348089852 In:0.008171481590755513 or:0.00760322471170019 A:0.0071323585247025185 tbe:0.007070401114781941 an:0.006843172791544301 other:0.0065298538465414085 for:0.00650120889345145 :0.00644505459561218 little:0.006012813670952328 :0.18132287839588876 +the:0.151564299052826 of:0.09038750472184202 a:0.07461608498201407 and:0.0466615732099648 or:0.03708629888768566 to:0.035569645185394266 in:0.030052392055566975 any:0.021357004017533987 be:0.017082462262097576 no:0.015583554621420614 for:0.01514666947239845 with:0.014723578456062631 by:0.012787654001396713 said:0.012726164481980391 such:0.011693957670550037 tho:0.01002305994460469 their:0.010002787499567302 at:0.00923663004776501 is:0.008936804169325014 :0.37376187526000376 +the:0.4617859958304264 two:0.07080559371256614 three:0.036084118323166395 The:0.03551859072223192 tho:0.03236370997719356 a:0.02812379031542516 and:0.026245510468000183 four:0.015660406471732592 other:0.01496356639930477 as:0.013578212932557928 many:0.01297665722598114 these:0.012597935329979255 few:0.011988565089402766 tbe:0.011478946097254477 of:0.01110461074749892 six:0.010114602406847485 five:0.01001542629351506 one:0.008224095917616667 some:0.007981982300553487 :0.16738768343874572 +of:0.23610572518960513 for:0.15930036823332494 during:0.13739595056426013 at:0.06849797959651874 to:0.05953439439936518 in:0.05503537374971636 and:0.03692154758074917 that:0.03526343811929228 on:0.021095730446857416 by:0.018920129574414808 from:0.018590158123849718 In:0.01719802861857211 within:0.016816103043715967 with:0.013003216664278653 all:0.012892339265472903 which:0.012549512181967308 over:0.011849378380755433 about:0.011442754627351113 During:0.010231202372736588 :0.04635666926719607 +the:0.7372700906931788 tho:0.045843423343098266 The:0.03487438071277293 of:0.024336294194339823 tbe:0.019933159839546737 and:0.009600947001970242 a:0.009172998593360118 in:0.0069344943513482025 by:0.005221970140876911 that:0.004399322246529881 to:0.004283378012268369 this:0.0039034793027026885 an:0.003390053498490503 :0.0030954765376726614 from:0.002967887990347299 tlie:0.0027760112316431163 tha:0.0025352192120963236 his:0.0025061036085164364 ihe:0.0024734566119732552 :0.07348185287726743 +of:0.09129790931378902 the:0.07369883040827747 and:0.047842263382354346 in:0.04189055351593407 to:0.04045875475680249 a:0.03542341257202578 be:0.02020462051672066 for:0.01979292654746225 was:0.01760256398103379 at:0.017380150555488715 is:0.014984483003968216 with:0.014047653760730413 by:0.01374644383819499 :0.012670486581795598 In:0.01200961464556976 or:0.011563835749786333 from:0.011391516893522809 are:0.011273104484969465 that:0.010755276030689069 :0.4809655994608848 +and:0.11344049036110067 of:0.09579912266731683 the:0.07151416804508796 to:0.05364943681286777 I:0.02178822794489641 de-:0.019551056965606536 at:0.01578604651169503 Mrs.:0.014304697670483126 was:0.01377279469601657 that:0.013431017562388823 a:0.012450605296166694 Mr.:0.011979130163842213 The:0.011539692756182333 in:0.011170051186380462 by:0.011094106873531436 :0.010728397932214077 be:0.009953835366575103 is:0.009567010450541112 are:0.009345232828273074 :0.4681348779088338 +the:0.17995812569869893 of:0.11002649282591898 to:0.10952007130534364 and:0.043525452497473895 from:0.03510404615469733 at:0.03251492405276744 for:0.018237796734767997 said:0.013458080447230842 in:0.013118809622197627 by:0.011687054347558488 Mrs.:0.011598829264522017 The:0.010386629411548257 :0.008491803522752932 .:0.007888328769096006 with:0.007330913545447494 tho:0.006901858518614015 Mr.:0.00678854355341296 Rev.:0.005730819283468125 his:0.004236479465432289 :0.3624949409790508 +time:0.026313828042510982 more:0.024990213513995645 man:0.02480749001821612 one:0.023112348045507547 men:0.021390779490196563 her:0.018692592893751022 good:0.016183248272314776 him:0.015740937172433078 long:0.014552168754524858 wife:0.01446367896526672 up:0.013167637521210711 large:0.012443588325298063 out:0.01228893130905559 made:0.012192914155201224 life:0.011827502338243086 and:0.010605619410233786 other:0.010364065919088223 father:0.010110315397408485 it:0.009711022834448212 :0.6960411176210953 +of:0.11357453913973227 and:0.0907058500024591 in:0.08858141154085468 to:0.06710809064766321 the:0.06384444761438002 from:0.05361513837743021 by:0.04240388883214246 any:0.04059752111526641 only:0.036375313006775205 with:0.03428348679305347 that:0.03324113804310219 In:0.03249887987531295 but:0.030812280000165084 is:0.028265178291053572 for:0.02560459447425747 some:0.022340760706156388 at:0.02189924195950793 no:0.020306417198180497 than:0.020037624156049188 :0.1329041982264577 +those:0.13647164236354145 men:0.06928214897786225 and:0.06604860891569983 man:0.05706244887498627 all:0.028039607288067887 people:0.027297646948638732 one:0.02332524706727028 persons:0.018058375814153368 women:0.01468807021708193 person:0.01381570166278074 Those:0.01230599735860613 woman:0.010682274139315677 many:0.009168434693883934 others:0.008365827008883057 boys:0.0063768374357177655 thoso:0.0062123527485822665 or:0.005991701427243296 girl:0.005699639107983923 parties:0.005256136850959018 :0.4748513010987422 +lot:0.06233913798121191 block:0.032863610289563146 Township:0.03016037752377125 and:0.02988702501754282 of:0.028401336598065544 .:0.02493786862096923 Block:0.02429759693983231 :0.018835142308476393 the:0.01670634152722358 No.:0.015004523359420577 8:0.01108617622713747 Co.:0.010377121493560288 Lot:0.009988583743353568 4:0.009932808550256028 to:0.009592977738775784 township:0.007825894699947761 said:0.007719024591792817 2:0.00761495704999629 as:0.0069994860976331265 :0.6344300096414701 +and:0.07368854972358442 together:0.05710997517018505 covered:0.03381009050592504 him:0.02632882208591328 up:0.02588780023207447 met:0.02251065815938046 them:0.020075226322458544 it:0.01894847829229773 filled:0.017215324537189505 but:0.017155061397887614 do:0.015476134374426737 connected:0.015475836970048416 made:0.013601890179791867 charged:0.013349046890821935 out:0.012956611900147021 connection:0.012669312060885033 along:0.01261664895528735 away:0.012245817238408655 accordance:0.01179323716895779 :0.566085477834329 +and:0.07558940021936399 recorded:0.030196237618668006 was:0.028917161578042846 made:0.027969746247669736 that:0.027730098932509103 o'clock:0.025060522019555328 up:0.023026552239529506 is:0.020398277211376416 found:0.02003101797656537 placed:0.017482208134164214 out:0.016937164562539058 place:0.016819459500107596 interest:0.016629321966808677 him:0.016002796715253755 situated:0.01573420479581609 it:0.015128305982428461 them:0.014715943643665314 part:0.014646613000297721 interested:0.014450471929902294 :0.5615344957257364 +of:0.516899315161299 in:0.13125265721855084 to:0.07177916856876627 by:0.04129644712349763 for:0.03339808127925018 that:0.02631403685795663 and:0.02085340405194267 In:0.02036013805629581 from:0.02020028354571576 with:0.011896963915412631 at:0.010600422476415213 as:0.008533753182499668 ot:0.008053900162085417 throughout:0.007324027693985797 on:0.006136320941072775 which:0.0061106779207973526 before:0.0055581025073286865 into:0.005305634893660316 when:0.004751044411970078 :0.04237562003149736 +time:0.020861993986363764 more:0.019656204988437 it:0.016265432666330314 him:0.01371032340419938 in:0.013617275132099567 large:0.01225487669605951 men:0.01172590243704819 costs:0.010150633088156552 out:0.009929684387399527 made:0.009268586352353657 great:0.009167369125713242 for:0.009117096026811943 good:0.009107211867437875 law:0.00899607231864589 up:0.008981179294724155 man:0.008842009715892553 life:0.008714084375422248 her:0.008650753776189537 them:0.008579917830713973 :0.781403392530001 +and:0.13151172851479653 that:0.03177813867281202 was:0.02775300626847016 men:0.019622178813233283 is:0.016974826876567102 secretary:0.015330763019505417 or:0.01486616509156005 office:0.014609632433319603 but:0.014437804472616639 people:0.014144001198454124 up:0.01355744658402405 out:0.012868326944285543 recorded:0.012410172969267963 now:0.012263700242791591 him:0.01190869363113799 both:0.011864511427182924 man:0.011758127872032148 time:0.01135084612603874 in:0.011016435066356382 :0.5889734937755478 +to:0.5910336769492304 and:0.10409002494460359 would:0.05003902246560675 will:0.029514722347294853 coun-:0.025771035385897742 not:0.02139274356847154 who:0.01635600458391364 I:0.016182619284222925 or:0.01178395014702847 than:0.009431669492744463 should:0.009184235884039762 we:0.007658495196495548 coun¬:0.007553853761234581 they:0.007085248159438264 must:0.00674830625609661 coun:0.006084404252246599 may:0.006022650092993676 you:0.005344483096614861 can:0.0038652073347806223 :0.0638576467970452 +the:0.09777078585636206 of:0.07081433100622911 to:0.04559270892947347 and:0.04368018182366854 .:0.03913575466544439 Mr.:0.03645808166343487 a:0.03211783440461773 in:0.02565084019744012 at:0.01775941322943709 his:0.0172171789247959 was:0.0163320836097233 Mrs.:0.016213759057880504 be:0.012438624372100597 H.:0.012297386381579827 :0.011348365562069659 A.:0.010859595947677065 by:0.01012885831062819 W.:0.009987266272602649 In:0.009898957211702395 :0.46329799257313253 +the:0.11919516938815296 of:0.07230453158552728 and:0.05781056740443249 a:0.043018564803886335 to:0.031305092790907506 in:0.020848713353460488 at:0.014270110001066288 .:0.012526810245749479 :0.012413283442322082 for:0.011719122709941797 by:0.010808400946589808 or:0.010404172990115616 The:0.01003576004804544 with:0.009811868184449042 tho:0.009295902015355835 was:0.008924239095331684 that:0.008672304223433876 is:0.0085591147338948 be:0.008335143826716943 :0.5187411282106204 +and:0.036873009288581324 the:0.03383018108429911 :0.027282900859422747 .:0.02506178627103961 of:0.0185057568491431 a:0.011081459755467834 to:0.010803002892326066 that:0.010696732900893903 -:0.00951983895454233 at:0.009440747499877913 A:0.006709301592619287 :0.006375562634434673 for:0.006118648701274317 or:0.00602076187593647 from:0.005958862872700353 Mrs.:0.005575323820217521 It:0.005192827426926874 which:0.005166097436727193 in:0.004249459095468075 :0.7545377381881013 +the:0.5229073823137018 a:0.04414403218263231 tho:0.037550364621157996 The:0.029609362980252418 two:0.024353785283449704 several:0.022602231465863574 or:0.022047868507405362 three:0.021742987837026675 various:0.01871397795182041 other:0.017890161187026275 tbe:0.017855087439349483 and:0.01692374116559584 all:0.015685057274959238 large:0.01453034166838957 by:0.013805081539844905 many:0.013718375674688107 boundary:0.013685767236797947 trunk:0.013028405809907788 of:0.012456995694255565 :0.10574899216587501 +the:0.11919516938815296 of:0.07230453158552728 and:0.05781056740443249 a:0.043018564803886335 to:0.031305092790907506 in:0.020848713353460488 at:0.014270110001066288 .:0.012526810245749479 :0.012413283442322082 for:0.011719122709941797 by:0.010808400946589808 or:0.010404172990115616 The:0.01003576004804544 with:0.009811868184449042 tho:0.009295902015355835 was:0.008924239095331684 that:0.008672304223433876 is:0.0085591147338948 be:0.008335143826716943 :0.5187411282106204 +the:0.2708340099086815 of:0.16048434036051779 and:0.06957903064554799 a:0.054833257128312454 an:0.051252143735353674 The:0.04511523367294081 his:0.026987121137967217 for:0.024031483995399568 great:0.02300358365612452 tho:0.02204007348691697 most:0.021983933518469095 more:0.02147163459532532 their:0.020111055731267643 with:0.019668421558846714 that:0.017938769201633547 as:0.016645956576990337 by:0.015920129409296727 its:0.014892518550780264 all:0.014691480194793457 :0.08751582293483438 +and:0.1955368229028413 was:0.11067785591964197 been:0.085784718116891 be:0.07484182352459082 is:0.06550031872247584 are:0.05044856044153682 were:0.048315285378174595 the:0.02432888051592346 of:0.02429356518374215 being:0.01956634641779642 in:0.01580473594334369 have:0.014407870869542387 has:0.014069999904128409 not:0.01373409676380387 for:0.013255731169342968 with:0.011702459361165112 Is:0.01143862599060232 to:0.010679227358710153 or:0.010276937904658008 :0.1843361376110887 +of:0.28211424596691453 in:0.14967669033214193 to:0.0833755326248369 for:0.058938668264714264 by:0.051538172743663443 that:0.03996681210849357 In:0.03994516545847145 with:0.03499333947354595 at:0.0320307653540716 from:0.030842442574583313 on:0.0273608344776857 and:0.021318476548996493 upon:0.02095285242884231 under:0.019642498632698197 make:0.01540530195479502 through:0.009147508716202199 into:0.008282698186790366 but:0.007816609268675275 all:0.00765715036857192 :0.05799423451530554 +and:0.08664257108612862 it:0.033556599683298584 is:0.031800600874089584 was:0.030359214439215184 him:0.024445877843850647 look:0.02329580739011993 that:0.022347266168820146 are:0.022202984220374172 out:0.019211545303945737 or:0.01777617217316137 be:0.01774690768869313 held:0.016527268476627565 but:0.01612424932725501 them:0.016054040709331634 interest:0.01569952606200862 work:0.013885657801196332 not:0.013813168884892948 made:0.012447963090768182 place:0.01207782938242936 :0.5529847493937933 +the:0.12726855910616955 and:0.0892959780159441 of:0.062229337879632314 to:0.058292991969480845 in:0.037889522208997196 was:0.035486090111862774 a:0.03277831520841599 be:0.02993909980507852 is:0.021492638467572805 been:0.016319288425974923 are:0.01622912479566914 were:0.01571120940653339 at:0.013800451447349702 by:0.013390998935139781 his:0.013046404338315144 an:0.011587498063993411 he:0.010436524486303292 not:0.009967845652912184 or:0.009888058570455908 :0.37395006310419904 +of:0.23679872674795815 and:0.09205763691998757 that:0.07747494087075713 to:0.06909340339878964 in:0.056771977561729615 all:0.03940011497907875 on:0.03841700358175835 by:0.037973641409335776 for:0.032436946964557414 with:0.02604462012425304 In:0.025695790704490313 from:0.020471294580362055 as:0.01895932408740471 which:0.016819944401033203 but:0.016706976437104826 is:0.015768158142272348 upon:0.013495119063687118 when:0.013222033680868122 or:0.009013952361435137 :0.14237839398313676 +of:0.2571132990594983 in:0.16187044403837136 to:0.07139809717038043 for:0.07062076006928557 with:0.06116007896169851 on:0.047376761358394644 by:0.04228603305175125 from:0.032625449867602 In:0.031680349079577515 and:0.028952369664310623 that:0.017392084083113633 upon:0.017150767539903532 at:0.017010812072569294 have:0.014851775130077086 make:0.014536588626061926 into:0.011011222945231857 up:0.010430474486285748 all:0.010074147518561406 under:0.008992675621870156 :0.0724658096554551 +purpose:0.07819220327704393 out:0.05761094745504805 number:0.05339297952601734 one:0.03424725662065302 amount:0.03264419060570982 means:0.029125372240548272 instead:0.027903265035911156 cost:0.026935281283226618 way:0.02485505337691317 all:0.022551285863793936 people:0.021614492410910697 be:0.019629109379924736 state:0.01938446599343972 right:0.018499337002183886 tion:0.01826201108071437 use:0.017957008610141812 time:0.01693973041219676 matter:0.01632109296807869 and:0.014901648998627249 :0.44803326785891673 +of:0.1156238092125558 the:0.08172998010405515 to:0.0654926974469262 a:0.04773592208457849 and:0.04736665631748061 in:0.028264877320296814 at:0.021669179399885375 be:0.018890025284429908 for:0.01824663139972276 by:0.01785862455531049 from:0.014925118764881107 was:0.014232135772087807 that:0.013930790972414304 :0.012900050153364574 on:0.012599271254225696 with:0.01207535980194129 is:0.011552932225651581 his:0.010983639974468466 an:0.0109064904043516 :0.4220158075513719 +the:0.4555400750046122 The:0.13206055984245677 of:0.06287242141198175 cold:0.034166240912347524 tho:0.027476722498981417 our:0.018052182701570236 this:0.015554316943722637 their:0.012648637384403276 a:0.012222508692573023 that:0.0116566660505819 :0.010849443650076224 hot:0.010359920003995916 and:0.009992597451123842 his:0.008741882200981835 warm:0.008703982085474377 tbe:0.007961305207275815 Tho:0.00653260111578841 dry:0.006225725775261158 This:0.006061319692610356 :0.14132089137418133 +the:0.15221692559957206 of:0.08069151212182069 and:0.07240635484257117 a:0.06392219701248592 to:0.049176531100385425 be:0.03126073625539749 was:0.026597884151575976 is:0.023935668013294973 in:0.01809554000060103 or:0.01736809520316659 not:0.015262215701975859 are:0.015051161940897423 an:0.01311498090898963 been:0.012584606500930769 for:0.012457103310419224 their:0.012288032821829989 his:0.011371194071019814 that:0.01120572166061323 were:0.011074588239307515 :0.34891895054314526 +;:0.014080920573048187 in:0.013117829552170526 it,:0.010998600893129928 them,:0.007831463411620701 due:0.0071682347690317765 up:0.007118877781574177 made:0.006748106038752765 States:0.006719505194081251 day:0.0066504617339748 it:0.006583364119672137 him:0.006473089077239721 city:0.006434232117197181 ,:0.006433044351843096 law:0.005986405970655555 and:0.0057292250205858 them:0.005571191818246982 time,:0.0053730852751320704 :0.005361253951253217 state:0.005052056600284882 :0.8595690517505052 +at:0.241590174484013 of:0.14149653053116704 to:0.13941776707165182 in:0.08431736218873792 on:0.03704959381732129 In:0.026768251056415893 and:0.025584101481620217 At:0.02515325077957478 with:0.022034935002025934 from:0.020424382656530526 for:0.019711950732539955 by:0.015359452470640637 upon:0.009988140212654883 about:0.00964521986930392 that:0.009279649983505646 :0.008316098691251567 under:0.007625992507888045 the:0.007194365471234508 a:0.005789710410760365 :0.14225307058116207 +one:0.1028303141280697 part:0.05963429477052991 out:0.04766456937681193 some:0.031418679026461914 members:0.030764490253327767 side:0.029940657362655835 portion:0.022063658796890564 office:0.020457735219956013 member:0.019726706386316174 end:0.019666887540649894 tion:0.018667441728710307 parts:0.016814747270460957 people:0.014112771422418794 all:0.014072739582212475 any:0.013183573287639892 One:0.013083578354183906 that:0.013024335602903442 account:0.012482348155001894 many:0.012077825070275192 :0.48731264666452345 +and:0.09528652095671128 of:0.0707049884058599 the:0.06227568616638856 to:0.045780075774981714 is:0.033858212566795914 I:0.02699680532910966 be:0.02617298604191724 there:0.025378866512316557 or:0.02497563118898234 he:0.023749603072870787 it:0.023445304997880542 was:0.023199983894036536 no:0.019585778912589148 not:0.019190083013751958 It:0.016331720824039154 will:0.014872156379405102 are:0.014707444952823594 that:0.013323480494497367 have:0.013084895760252381 :0.4060797747547903 +of:0.28767355066866834 to:0.08775711267569858 in:0.08678131196995101 and:0.05160598694501188 on:0.04646139928102899 by:0.04519522654900943 for:0.044547789071328545 with:0.03396756772609607 that:0.033699232901107726 from:0.03075346596941143 at:0.027039283056790858 In:0.021061449543044047 as:0.017514234937992545 all:0.012543839382496166 upon:0.011844431150487573 is:0.00998972746569266 was:0.008814315973987914 into:0.008557199930727406 through:0.007781895704231326 :0.1254109790972375 +one:0.015552536992080472 more:0.014252271697624306 on:0.010631301787611593 day:0.010222750824534239 two:0.010216157614982159 person:0.007504694644314241 in:0.007364820929323563 man:0.007179188731169107 law:0.006205362369136604 action:0.006166303509128973 and:0.005659786788634644 city:0.005177234665142273 three:0.005130416479837977 State:0.0047265097104810415 to:0.004696031397422901 ten:0.004594585978494318 of:0.004463781172886088 town:0.004231879326219736 year:0.0040256313925199315 :0.8609987539884558 +the:0.6097663834962611 large:0.06778870554717534 The:0.050405615598439445 total:0.028768144341664918 tho:0.02428192033354087 whole:0.021586892436117926 vast:0.01821947510225622 an:0.017844769713003833 a:0.014724238644129526 great:0.012205577143116736 this:0.011506167334097582 that:0.01099241229602845 and:0.010961713628662356 considerable:0.010707194157007136 any:0.010384063928210651 certain:0.01019437391629196 same:0.010191971817478052 small:0.009848832520163449 immense:0.009356703497386843 :0.03926484454896754 +and:0.06855519779183157 but:0.025383906977132734 him:0.020060941693789983 it:0.019470489636544994 asked:0.019121918686091536 me:0.01876740763513048 time:0.016981103965062024 them:0.014908645900790012 was:0.013056530948963783 vote:0.01268265434954703 that:0.012292996960436908 ;:0.012236127055562158 demand:0.011628111643166576 me,:0.011370637103411409 As:0.01125143985977711 reason:0.011024352797235662 not:0.010765788911923304 as:0.010122816302458202 up:0.010084004909805499 :0.669234926871339 +the:0.16807735899698817 of:0.10541662057906837 and:0.05138367848570702 a:0.04141865232648221 to:0.0385989743764065 in:0.026264864977736738 was:0.019530675665220657 his:0.018900421021236905 be:0.017373825006196972 their:0.015767721170721456 for:0.01557246589796783 with:0.014071419046630446 is:0.012922913111931644 at:0.012690452250034052 are:0.010702713108721902 .:0.010158075558988393 Mr.:0.009672788574483367 tho:0.009612591781990074 were:0.009549306361446321 :0.391314481702041 +the:0.21587358055630734 of:0.09079018746793902 and:0.07548397019250931 a:0.03695872587199303 to:0.03169255042245351 The:0.025640656381582964 as:0.019558218005533805 in:0.018619123245522246 or:0.017213881055000435 tho:0.01594208412166412 all:0.013987568897509729 his:0.0130807821902037 Mr.:0.01287801390018331 by:0.012807000428921937 for:0.012519220351810481 their:0.011725072656282845 at:0.01160708427017269 that:0.011498573983601006 .:0.010706122749439604 :0.3404175832513689 +of:0.13084814232797154 in:0.0740836656586379 as:0.0625527229231004 with:0.059577596335708534 to:0.058433603729754965 is:0.05551580107464621 and:0.04946529489577619 was:0.04264000753602388 for:0.04009673021586375 by:0.037684080471064085 be:0.023941707008899252 on:0.02316059851167503 at:0.022644769441950232 such:0.019950936521181326 that:0.017856095877642635 like:0.017386655618315594 In:0.016902219705578994 from:0.016046571451088905 not:0.01205910100844263 :0.21815369968667797 +to:0.12036914890481386 was:0.11194636343453239 and:0.1044963561827684 the:0.08264804881709643 be:0.0687491578974339 a:0.054143041574577576 of:0.049922388926535124 is:0.03877960098053097 been:0.036060544773279996 in:0.03567261738868273 were:0.025454817545974482 with:0.02104353271098586 he:0.019045442365469914 I:0.018782522026345724 are:0.016003705051966056 not:0.015059562126918592 said:0.014854450431525161 will:0.01126465647508939 his:0.010994648015928058 :0.14370939436954536 +of:0.5056477462312705 in:0.08903882034215141 to:0.06660656210114242 by:0.03726274354883969 from:0.031120599975238528 on:0.029235355077307606 and:0.02919500599838102 that:0.02479856976191797 for:0.017916200446822586 at:0.016766816002813024 with:0.016766756340568293 In:0.01348864910676859 as:0.010982316512291791 before:0.007582611408912002 ot:0.007326099802505801 which:0.007184058291879414 into:0.006818722751082841 over:0.006814543286543051 upon:0.006716130413858336 :0.06773169259970517 +of:0.09129790931378902 the:0.07369883040827747 and:0.047842263382354346 in:0.04189055351593407 to:0.04045875475680249 a:0.03542341257202578 be:0.02020462051672066 for:0.01979292654746225 was:0.01760256398103379 at:0.017380150555488715 is:0.014984483003968216 with:0.014047653760730413 by:0.01374644383819499 :0.012670486581795598 In:0.01200961464556976 or:0.011563835749786333 from:0.011391516893522809 are:0.011273104484969465 that:0.010755276030689069 :0.4809655994608848 +that:0.12877368706521958 and:0.10343811039022899 which:0.0800594611337696 when:0.0599498536653849 as:0.05365331218935483 to:0.05164919583107528 if:0.0270497931800979 will:0.026888923864509424 but:0.025383516994720454 where:0.02293792694881519 what:0.0207777038096785 t:0.019343962651763098 said:0.01729463067489876 would:0.015552874955014286 for:0.015152722422811573 whom:0.014651225618177431 before:0.011897529933941699 not:0.011235367786820124 If:0.010599156710423857 :0.2827110441732945 +:0.07938265348706151 and:0.03160049179276131 of:0.026080191511031216 in:0.024921471947908582 it.:0.02141321291950405 the:0.020893603129937887 at:0.017655632163548048 to:0.014720729593064205 for:0.013264364931437199 them.:0.011727393284025237 .:0.011074044230770238 that:0.010844090381170558 thereof.:0.009049587083642903 year.:0.00816806487175535 In:0.007219602737590465 country.:0.0071733901623044485 day.:0.007049771158945442 thereof;:0.006320971313662052 him.:0.005988932325328619 :0.6644518009745507 +that:0.18853849964046102 as:0.12228824576559956 if:0.08359305338279018 which:0.08219072901739202 and:0.06999186959487112 what:0.046097157063539694 when:0.03211491021971855 whether:0.03010948215271898 If:0.029093191833501543 for:0.02404866077394801 should:0.022550803461546642 where:0.021218068340170128 unless:0.020669978162953635 than:0.020420741826944228 will:0.019163540194470287 but:0.016359947876106153 until:0.016211805281987245 can:0.0149088699229658 because:0.014525413769513216 :0.12490503171880202 +the:0.11919516938815296 of:0.07230453158552728 and:0.05781056740443249 a:0.043018564803886335 to:0.031305092790907506 in:0.020848713353460488 at:0.014270110001066288 .:0.012526810245749479 :0.012413283442322082 for:0.011719122709941797 by:0.010808400946589808 or:0.010404172990115616 The:0.01003576004804544 with:0.009811868184449042 tho:0.009295902015355835 was:0.008924239095331684 that:0.008672304223433876 is:0.0085591147338948 be:0.008335143826716943 :0.5187411282106204 +a:0.14826637811875576 the:0.1421674609844332 of:0.11137662517533738 in:0.07524995390021368 this:0.05382192411446622 his:0.041156935259111876 and:0.026924014303436116 to:0.025734390508433323 for:0.02368141755585435 good:0.02027648324989106 that:0.020142941003159942 great:0.0189524327441449 with:0.016521991628566293 our:0.016494121162915338 their:0.016109236503242853 In:0.01458637365541189 every:0.014327338966372918 last:0.01314794757295502 my:0.01298126156400104 :0.18708077202929685 +the:0.7782253046831061 The:0.07095464282551824 tho:0.04590484225861828 a:0.02428502064196521 tbe:0.01697454496077103 and:0.008715078466210035 Tho:0.003988535224606616 or:0.0036741094536693417 be:0.003525922501936612 he:0.0031991277344533926 tlie:0.003072633277162621 that:0.002310114839844681 all:0.0021647663680843562 further:0.0021401400119301847 no:0.002112906107086327 as:0.0018440468800650055 other:0.001800382597326073 any:0.0017443940534205703 ihe:0.001723057023884996 :0.02064043009034029 +No.:0.12048065386332775 and:0.07691807923498346 lot:0.07654380075998707 the:0.04583101413449922 block:0.035013069717957236 section:0.03452561275984861 to:0.030384686231780162 of:0.029826274793541534 Section:0.029825003935152694 June:0.0245182543961313 in:0.021953114843981242 March:0.017013695441811364 July:0.015610925423038687 feet:0.014517490612709037 April:0.01430908719109753 :0.012911245753387464 Sec.:0.012815024953167524 May:0.012612772913337303 October:0.012075626994147272 :0.3613145660461135 +number:0.08138016128310346 one:0.04275341651941004 out:0.03970468173841788 amount:0.03051390265087502 loss:0.021319721846833797 hundreds:0.021298996330870797 that:0.020099368092583295 use:0.02008768755253486 part:0.019542031649533963 course:0.019060708466076423 tion:0.018277887909638992 time:0.01768488816852574 kind:0.01670432478131524 thousands:0.01664248096245311 work:0.01622141675696657 way:0.015766935174347466 majority:0.015493249132198784 some:0.01496831108363724 and:0.014954449198356746 :0.5365253807023206 +the:0.2362057666162042 of:0.09739833929678098 to:0.0771983143658125 and:0.07427523391410858 in:0.061206214628520536 a:0.03512232832060909 for:0.019856683715791308 The:0.01803572304133458 tho:0.016715124015463583 or:0.01587804561052146 In:0.011608669942442399 by:0.010942190814031671 with:0.010835708291705184 their:0.01000739330067035 as:0.00966639400035609 :0.008979180538257999 from:0.008904283746979323 at:0.008855978393437719 tbe:0.007968345395788069 :0.2593400820511844 +the:0.684606882009624 and:0.04223134284130215 a:0.04126119722115131 or:0.03704327343779428 to:0.029898499482474573 tho:0.029111779406613313 unanimous:0.02665439863135944 The:0.026649796724566948 tbe:0.012094642015529287 by:0.00486339387779093 not:0.004729651839413889 no:0.0046449516499303175 his:0.00452924915640223 great:0.004223299014135567 only:0.003879754734270975 for:0.003668452074546401 of:0.003646055523463532 may:0.0035016352940646176 their:0.0034972033839561554 :0.028264541681610085 +time:0.015324435734092612 in:0.012301727545184434 him:0.012137657893078213 it:0.011596490659274043 more:0.010584584767414942 made:0.010081145320907254 ;:0.008327790674248317 one:0.008231287014103288 due:0.00820049492146036 right:0.008046366125073095 them:0.008027480614869902 out:0.007999437964046532 up:0.0077766329126414645 work:0.007410430074640689 interest:0.007327526447049079 and:0.007192617987503457 land:0.006775080890678967 dull:0.006340048642068901 mortgage:0.006210238929932383 :0.829108524881732 +he:0.15186473379332813 it:0.09583930263759889 I:0.08179323070473271 It:0.06514777716761172 He:0.06436864534962623 which:0.051912806317652674 and:0.04112184531543819 she:0.03823674616776008 who:0.03138733021747295 that:0.015370879023879637 man:0.0153589183038988 She:0.014881253455316233 This:0.014465691585197836 action:0.014195044191436567 what:0.010191204232556404 lie:0.009070241190520183 ho:0.008988706393407058 body:0.008905336044914822 there:0.008562259167339768 :0.2573380487403111 +the:0.1566411674716159 a:0.08099275020920668 and:0.07376599759184058 of:0.05542314859598648 Mr.:0.033681507342259775 to:0.025859481614567283 The:0.023609177354274414 in:0.022921805911335358 I:0.019715303709971536 is:0.01955497372156761 he:0.019027418880271964 was:0.01861758060324043 his:0.01665024304565529 that:0.015545240765104837 an:0.014795764623753996 be:0.014627865084403738 are:0.012954334588431059 or:0.012016000648212436 this:0.012002407514143852 :0.3505978307241568 +virtue:0.062060494787377685 out:0.05417899169104244 part:0.03289673107629515 one:0.02969369892462812 quarter:0.027015883171169475 favor:0.01993830018372674 result:0.019463829004704194 guilty:0.018891084377354095 means:0.018499162894926688 end:0.018170939082736048 that:0.018121271122199262 construction:0.01726217741616459 presence:0.017003995482744873 tion:0.01673652166540914 case:0.01640819963257697 side:0.016055927605250184 erection:0.015381239457214257 account:0.015287601389485416 hands:0.015156055434805247 :0.5507778956001894 +of:0.13530591392588762 the:0.09408625591735059 in:0.0830079440639395 and:0.039211024312051194 a:0.03778407127635146 to:0.03030062401672911 for:0.02840152007951152 that:0.022607690440151516 In:0.021342291337019117 by:0.018652039692651577 feet:0.013397877613020448 from:0.01339281372983107 with:0.013207237934472347 as:0.010134102120978818 on:0.00998461693158143 :0.009551174224692571 or:0.009127414989991435 which:0.008563698802760871 some:0.008327421010792051 :0.39261426758023577 +of:0.09129790931378902 the:0.07369883040827747 and:0.047842263382354346 in:0.04189055351593407 to:0.04045875475680249 a:0.03542341257202578 be:0.02020462051672066 for:0.01979292654746225 was:0.01760256398103379 at:0.017380150555488715 is:0.014984483003968216 with:0.014047653760730413 by:0.01374644383819499 :0.012670486581795598 In:0.01200961464556976 or:0.011563835749786333 from:0.011391516893522809 are:0.011273104484969465 that:0.010755276030689069 :0.4809655994608848 +the:0.7295183656363105 tho:0.04269138300280506 The:0.033098695977087735 and:0.01996946461456276 in:0.01960508125487294 on:0.017312618440027232 tbe:0.016159547227007246 of:0.011623295407330151 or:0.010941951607374956 other:0.007944954737274273 by:0.007753478936780028 an:0.007329822607601314 a:0.006684121170927791 land:0.006288978732374415 large:0.005489003128355544 In:0.0052162635414320264 long:0.004933175039972985 said:0.004880043929916105 their:0.004558459471017267 :0.03700129553696973 +as:0.06931392982974462 according:0.052071562389565784 up:0.0511867300210483 and:0.040371568633051955 went:0.03351644485287816 back:0.032358406609281 regard:0.03073407747799069 feet:0.02852138506231652 down:0.026379903432040268 owing:0.02466642634685871 due:0.023695193974505355 go:0.022910973192184297 reference:0.020802802907016128 came:0.019883741951819873 sent:0.019874244915639484 attention:0.019565955494145405 come:0.01885185084678811 given:0.018792390567602263 it:0.017366961307524745 :0.4281354501879983 +and:0.04979953599236792 ready:0.04780837329635559 time:0.02972805670079935 was:0.02920409885333857 demand:0.029175210607263264 used:0.027677612730985936 is:0.0235959859964849 up:0.022068137557016764 made:0.02144829573511184 been:0.019333082045288247 bidder:0.01843556437911103 out:0.017905722746356652 place:0.017299110537328896 not:0.016356045178520174 be:0.015926060499928483 called:0.015829572832017462 him:0.01578482472158839 necessity:0.015554466691794402 call:0.01538577799756866 :0.5506844649007735 +and:0.09787071543084067 that:0.03991205090281645 made:0.031221506457054484 is:0.02912125731490028 was:0.028890693791197214 placed:0.023433768096613405 as:0.021235169506767154 be:0.020980966078724454 or:0.020654644189757747 it:0.020370894604110082 them:0.02026104908955177 now:0.020235367218671932 up:0.018067424186665796 are:0.01741614296069905 him:0.016338116787566907 out:0.016198840522810645 but:0.016073331244865086 not:0.015666419619017713 down:0.012831635836605852 :0.5122200061607634 +a:0.5718864061938456 of:0.05955057912282669 with:0.035212085358964786 in:0.032337968195950896 for:0.0312685891418772 A:0.02278519442861345 and:0.021157593836903424 very:0.02064234769692139 that:0.019950678753095974 make:0.01941864552925376 some:0.019033333993632613 any:0.01808540991808989 the:0.017207963237710584 but:0.0118899089673603 to:0.011269683149843415 as:0.010953771875546692 how:0.010487512538324464 or:0.009731612707528883 no:0.00949729016202018 :0.046633425191689885 +able:0.06086343672867467 enough:0.05712656579763816 and:0.05510515256592813 as:0.04187109299980571 order:0.04116670972541459 is:0.036816934067383435 him:0.03607702929406013 time:0.03384584164162582 was:0.03171652555023523 right:0.029918457161182403 me:0.028122069909968014 willing:0.024266697055490623 wish:0.02372609088405871 necessary:0.023500494895773626 not:0.02270383198195766 going:0.022332724174101207 want:0.02164060184428894 power:0.019865797860993455 fail:0.019692561709852813 :0.36864138415156666 +of:0.10776761857931194 and:0.06147097111579001 to:0.053516731241891546 that:0.05048942272674947 by:0.04461623876125976 girl.:0.021792561838412113 boy.:0.01953349696711034 with:0.018362793457600952 :0.016254900638970816 for:0.014948818917333092 parents,:0.01130785438677362 said:0.010905879659048235 as:0.010489615103666526 but:0.009103232394658411 which:0.009014882721543646 in:0.008977784589613203 from:0.008044498552032469 between:0.007130594158979391 or:0.0063223283400136955 :0.5089497758492408 +of:0.12934912362843629 in:0.10159390798097585 or:0.09843553417712671 than:0.08680261452511331 to:0.0758478848097589 as:0.06269175607446476 by:0.04817628022821908 with:0.03442859405594123 from:0.032672724411775364 and:0.02997401839680789 for:0.029412251890174705 that:0.02652333273259241 if:0.025975575923279252 on:0.018420787366446086 In:0.017410009383254457 is:0.017135565306583264 without:0.016939532855458822 upon:0.014197646927770986 do:0.013509314695125419 :0.11950354463069522 +and:0.04755190580722715 the:0.03390734886507401 I:0.025709204356842975 :0.023848765154494026 to:0.022787573751645487 that:0.022562140786577006 a:0.017715105798046415 it:0.014497011613421424 1:0.01341918422566268 of:0.007822739922063145 he:0.007666278668417095 .:0.007604229395652792 or:0.006765292537991515 be:0.006581266330338856 as:0.0062255710213415605 :0.006110347460224031 day:0.006050556894354041 The:0.005997634051596833 was:0.005927826852240443 :0.7102500165067885 +:0.03539786984051341 Mr.:0.023302365837943206 them.:0.02141045473428309 it.:0.017915400441780027 him.:0.013127749924910972 .:0.01138901123247741 said::0.011269418544233668 and:0.010016730350111172 -:0.007989019338992185 time.:0.007770468715509142 that:0.00774043229708195 her.:0.007496359021842943 of:0.007492931606980489 country.:0.006836049206994085 me.:0.006298316011858676 ?:0.006197189479329539 day.:0.00547323751632851 in:0.005334115589751755 work.:0.004891625472053449 :0.7816512548370242 +the:0.08260795611537781 of:0.07291605966280558 and:0.06849201560257476 to:0.03502395873949852 .:0.02988167175158641 a:0.028114315098983083 at:0.021155168807572407 in:0.018998997364040388 was:0.018188901608842463 by:0.01566240598943724 :0.014197171365126443 Mr.:0.013989466128973106 Mrs.:0.013359539961215762 on:0.011241217409949886 W.:0.010716147525024101 A.:0.010464673553487732 his:0.010258246856541881 Miss:0.010247218595101366 H.:0.009944729302404528 :0.5035401385614565 +an:0.20933157785077855 the:0.15232424406106385 any:0.07826934175697202 either:0.0367217664646151 to:0.028667547809219956 his:0.02711488641506376 a:0.02584470274143174 one:0.02528212710458893 this:0.024729995087341933 said:0.024334897202488336 every:0.021262994384472794 no:0.02112965945861811 An:0.019145889168413418 or:0.018527182709901835 their:0.018028282339167673 and:0.017921332620363828 The:0.01710259664175192 such:0.0155896235213965 remedial:0.015184246742808223 :0.20248710591954153 +there:0.22454519089540687 There:0.1524152519857363 they:0.10026891860188702 who:0.053185629226982604 and:0.04243633559932549 we:0.03693650100422002 which:0.036739396064534094 They:0.03087213649879916 that:0.02927780388296193 you:0.027399977377068552 We:0.015280236787685475 men:0.011307499206899533 as:0.009123601501271192 people:0.008915875152684749 These:0.007138999566939562 You:0.006661581427634316 or:0.005304306019581085 them:0.0052076864308497365 these:0.0051326763131357 :0.1908503964563966 +of:0.13084814232797154 in:0.0740836656586379 as:0.0625527229231004 with:0.059577596335708534 to:0.058433603729754965 is:0.05551580107464621 and:0.04946529489577619 was:0.04264000753602388 for:0.04009673021586375 by:0.037684080471064085 be:0.023941707008899252 on:0.02316059851167503 at:0.022644769441950232 such:0.019950936521181326 that:0.017856095877642635 like:0.017386655618315594 In:0.016902219705578994 from:0.016046571451088905 not:0.01205910100844263 :0.21815369968667797 +the:0.10597367530797616 and:0.0853527820525933 of:0.06360945035772735 to:0.06244267659896638 a:0.060444786386947884 be:0.04363603891749144 was:0.04190816975681049 is:0.031505771318292075 in:0.021161351642113184 been:0.020564667155655386 are:0.015605619303933057 were:0.01484114565833905 or:0.012862722596575497 he:0.011958272903710238 at:0.011725530623216752 not:0.0111810727073711 it:0.010571643524452942 will:0.009870006355904577 for:0.009564406893979365 :0.3542202099379438 +be:0.11780008116913351 was:0.10494181861506967 and:0.08955353015295288 been:0.06381091175204245 is:0.060117198585295205 are:0.037249101189997746 were:0.03689148086333705 the:0.03191643253885115 he:0.03170140532980151 had:0.025450444054517043 have:0.025016278419066576 of:0.021702932398338447 to:0.019246371740201933 a:0.019045527751850998 has:0.018898137255671178 I:0.013171060070013741 being:0.012971672736761591 so:0.012717183591094958 not:0.0121399293836347 :0.24465850240236767 +a:0.3884469936118696 the:0.2516295347949699 large:0.1172598166199743 A:0.04263538507407082 The:0.038751151922176284 great:0.015784669032137842 total:0.012450029176985985 and:0.009906332100247798 tho:0.008795594021867324 whole:0.008551498061751726 any:0.00830995036862049 considerable:0.008078460889881919 this:0.008064962747566476 sufficient:0.00759398209225476 largo:0.007553634725424092 goodly:0.006793601890766698 largest:0.005417677222877226 small:0.005326727807158831 greatest:0.005260218271373045 :0.04238977956802493 +number:0.07852027743595345 one:0.047095828905219586 amount:0.03992324724612138 out:0.03940935554120141 line:0.03903327810963182 part:0.028966268818555848 side:0.028944991503672697 kind:0.02431918444676348 loss:0.024033804688417766 that:0.022709588246213514 sum:0.021793411540415048 state:0.020736103628650134 matter:0.020576204191498637 piece:0.019961835089395096 sort:0.019432996991479868 place:0.019350239997914232 plenty:0.018530487188552196 thousands:0.017794488115758973 class:0.017348288210097915 :0.45052012010448694 +the:0.5188887419688243 of:0.07707714623933756 The:0.033074418452491976 tho:0.03299364967341844 and:0.028103152495143502 their:0.025239233199427162 a:0.022332509519216507 such:0.02144827925639089 or:0.016389039534981633 his:0.015400648173403126 our:0.015105815498261264 this:0.013166192434518161 said:0.012879731320880158 tbe:0.012758753283483885 at:0.012226694523693777 its:0.010975504301804693 for:0.010656466611308441 same:0.010623093259794615 that:0.008625758671566017 :0.10103517158205384 +of:0.09129790931378902 the:0.07369883040827747 and:0.047842263382354346 in:0.04189055351593407 to:0.04045875475680249 a:0.03542341257202578 be:0.02020462051672066 for:0.01979292654746225 was:0.01760256398103379 at:0.017380150555488715 is:0.014984483003968216 with:0.014047653760730413 by:0.01374644383819499 :0.012670486581795598 In:0.01200961464556976 or:0.011563835749786333 from:0.011391516893522809 are:0.011273104484969465 that:0.010755276030689069 :0.4809655994608848 +and:0.07558940021936399 recorded:0.030196237618668006 was:0.028917161578042846 made:0.027969746247669736 that:0.027730098932509103 o'clock:0.025060522019555328 up:0.023026552239529506 is:0.020398277211376416 found:0.02003101797656537 placed:0.017482208134164214 out:0.016937164562539058 place:0.016819459500107596 interest:0.016629321966808677 him:0.016002796715253755 situated:0.01573420479581609 it:0.015128305982428461 them:0.014715943643665314 part:0.014646613000297721 interested:0.014450471929902294 :0.5615344957257364 +that:0.2968679931546519 and:0.11425017044387295 which:0.07840608290093895 as:0.05491010562796762 but:0.0507899152705152 where:0.04181923077962451 when:0.035062641700354544 if:0.03380554687924101 what:0.020758442484193743 because:0.018037217089969467 than:0.013735011113380735 or:0.012918128578842886 until:0.012502776209915823 If:0.011311753456944896 then:0.009813348823122299 think:0.009286428406352595 But:0.008564209929610272 for:0.007828896643750862 before:0.007640512684116824 :0.1606915878226329 +:0.05408755002078587 that:0.049531093299571755 and:0.026307747831082865 it.:0.023066050300906284 but:0.01604063510609521 as:0.013691133477483644 them.:0.013231826614228009 country.:0.010841946065548622 of:0.010487154798430135 which:0.009468692177853443 people.:0.008334614695462483 years.:0.008004416265567844 time.:0.007956347283674411 If:0.007858697640010603 him.:0.007413514011734311 year.:0.006977232836926869 for:0.006851092903969388 life.:0.006064905382420001 .:0.005982979647669748 :0.7068023696405785 +the:0.17131437378693623 and:0.1262247308246703 of:0.11167597188650959 two:0.03752604150467289 a:0.03107196206107765 or:0.025845615471009182 for:0.025423088815004363 to:0.022129451457955734 young:0.020308250281312574 their:0.01847606505552481 The:0.016394358600279317 three:0.013952891272949894 four:0.013382288399109344 his:0.012777788720041807 our:0.010733334157443711 many:0.010610518295965144 tho:0.010382543099381967 other:0.009447141917729326 with:0.009187145187297352 :0.3021364392051288 +the:0.4661593176757601 of:0.12602455584736616 federal:0.04089340375813496 our:0.03106607128480747 tho:0.019883806372286133 his:0.016868847775587316 and:0.016661054919998232 general:0.016506832039736494 Federal:0.01582733208709467 their:0.01492666326389653 this:0.013051476992558795 to:0.012180705652814776 local:0.011813715711398016 States:0.01110395332873986 tbe:0.010276759341603365 The:0.009683197873584919 Republican:0.009347021801263067 county:0.009190450883758583 city:0.009144408936085582 :0.13839042445352495 +the:0.3934009099942105 a:0.07244760497430047 and:0.06740672249227884 this:0.06630994274370822 give:0.04493036358942899 The:0.02714366584525868 said:0.024631642678483136 days':0.021382819844340692 tho:0.020990758441948483 or:0.019516106847935255 gave:0.017935212309835455 by:0.017699640490804962 that:0.01630681506216041 in:0.015903462431009246 written:0.014618910622253636 take:0.014599021747101676 an:0.0134753363832719 to:0.011672869941466697 of:0.011659435594526233 :0.10696875796567648 +the:0.6761814334045967 tho:0.02860685358318085 and:0.02658694611120302 The:0.019998047299919473 a:0.016480415426363033 of:0.015991367093419945 next:0.012369674079219468 A:0.012011605688088577 on:0.011808680805289374 last:0.010032195405923624 tbe:0.009561762094023308 said:0.007705280757069552 per:0.007517580528838541 south:0.004595163953124688 his:0.004091293409676295 first:0.004073891802434168 in:0.003908892645248398 or:0.0036140489567668783 this:0.003352676080908327 :0.12051219087470581 +and:0.15692258927030547 the:0.06176681590193348 of:0.055611777535083756 in:0.039753016276137636 an:0.03837128033634143 for:0.02552259858360174 to:0.020523817763153148 or:0.016483014187843904 In:0.015587434416541195 I:0.01457799689077924 all:0.014051198410363688 that:0.012329525232457778 at:0.01054630239947762 :0.008773858621641551 but:0.007556336234281659 be:0.007111008666012479 even:0.007020824429007333 sale,:0.007018801752018546 not:0.006474616363389932 :0.4729971867296284 +at:0.6762380057740849 about:0.06804447554930405 At:0.06465352368430384 About:0.05111679803830727 and:0.030208182614150297 of:0.00933381468439864 No.:0.009062830404588693 or:0.007969657565361927 to:0.006742497131452648 until:0.0062322860335756675 than:0.0042871964517762545 for:0.0032566159959606425 nt:0.0028476503175263266 from:0.002357106917544509 @:0.002311188104481904 over:0.0022694196898313227 in:0.0022436677679089872 the:0.0021729685893897162 within:0.0020760510592906663 :0.04557606362676174 +according:0.07122081995037652 went:0.04289821293114105 and:0.03988548142020919 as:0.03888649719905666 regard:0.025218837021521664 sent:0.02472774690620437 go:0.02410920001713928 up:0.02154058521754675 came:0.01911264157475992 given:0.018251511777253985 made:0.018028668496228795 back:0.01696153315116846 down:0.016687450392841058 way:0.016495581535722382 reference:0.0155791454316925 feet:0.014918863330377173 them:0.014739140329476236 chains:0.01358164778392003 conveyed:0.013440383715228587 :0.5327160518181353 +it:0.16558174341344517 It:0.07846395477223078 there:0.068926656508768 they:0.05354081626270712 that:0.04867727640265432 which:0.04505196720686623 he:0.0439264118286433 and:0.04292049757801078 I:0.03259451855648658 we:0.022714282810773655 you:0.017312799630666443 There:0.014753102337007622 she:0.012061733113950288 who:0.011822775785340672 what:0.010328641715673107 law:0.009760151038589949 States:0.009676543902658263 man:0.009568256342280966 men:0.009031003643309513 :0.29228686714993724 +to:0.11072297279764762 or:0.10613980047998905 and:0.07584878414490738 not:0.04107508953982762 of:0.03719930795239555 there:0.027150188177330947 the:0.02707119059246538 nor:0.025270356513242505 that:0.024241483978626317 in:0.015763415321107248 as:0.015610491314474187 than:0.014201938942672014 for:0.01378946478582446 re-:0.012417242777279751 :0.012407866813393597 by:0.012050683302328837 is:0.011754987194787724 never:0.011366555260533555 would:0.010899589151123138 :0.3940185909600431 +the:0.18182133894219288 of:0.08574360582232941 a:0.07391190389139105 and:0.05651930903704805 to:0.02716118051984286 for:0.022901021234778197 in:0.02246738950938204 was:0.020720310166746487 by:0.02052137155520826 as:0.01898865056197269 be:0.01657595332682368 at:0.015248792809136444 are:0.014630376038398382 that:0.0143331155149267 is:0.01322732005081803 tho:0.012856772418595154 on:0.012356836533060437 from:0.012171372078532207 were:0.011777972779638381 :0.34506540720917867 +at:0.8968437901144882 the:0.029546719546366 At:0.027625238874286924 of:0.009939034866553974 to:0.00812401194605376 nt:0.003093910114165023 and:0.0024995441182681165 in:0.0017464104587147772 The:0.001380889544156215 for:0.0013502751355820735 a:0.0012928450274807821 was:0.0011004933630998862 by:0.0010853373731476638 from:0.0009449896173676713 on:0.0008268583336269294 is:0.000797091035144543 not:0.0007718056509013104 that:0.0007446637502381105 ut:0.0007057765233730419 :0.008580314606984999 +the:0.17663060356102775 to:0.11397553194942055 of:0.08164944112450204 and:0.07021979904081231 many:0.04061626445952884 these:0.03596570982306292 The:0.029391474203878373 his:0.02812275664964471 all:0.027085302666027343 their:0.026377589271504732 that:0.021500553482946202 such:0.021051638406120385 a:0.01878977316378516 two:0.01861119522997964 as:0.015155204009950445 can:0.014586685277551411 other:0.014384980986684257 which:0.014055321268617575 for:0.013649015114707019 :0.21718116031024834 +the:0.26425637818753456 a:0.1184395730189342 in:0.08576529956143981 and:0.056103507913452026 of:0.04609955438300658 an:0.04483888238811475 The:0.029408197086203843 are:0.026345294318981385 In:0.0247020898963121 is:0.024018000229043403 on:0.01946490940312087 with:0.01842574015778109 for:0.01814993471225629 to:0.01740420143757154 was:0.0163827860940249 A:0.01630308476978328 or:0.016006168035025834 most:0.015062967326932707 very:0.014882342350220207 :0.1269410887302606 +the:0.31066695811082246 of:0.13230563038858992 in:0.08637325737512586 and:0.06059828727865465 The:0.04571633484915299 a:0.04065679551154944 an:0.03595345475450935 In:0.02066929945452722 or:0.017458408255125155 by:0.017340421883215374 tho:0.01694474187187488 to:0.015457118862327104 his:0.015454807534069205 their:0.01253837504236909 that:0.011477050040798725 on:0.010061211071017723 said:0.009303369486182326 with:0.009170791496760087 tbe:0.008963158846167813 :0.12189052788716061 +is:0.1292332936208237 was:0.11083909073256587 are:0.10421143491073401 be:0.09109614532551048 the:0.09075623099283481 a:0.05675780307233106 and:0.05593021594706104 were:0.04693603110456356 not:0.03643068231213645 been:0.034614982210076216 Is:0.02153949621337643 that:0.020007887595250705 but:0.018862907343091064 being:0.015722833132726245 of:0.01550240123214773 The:0.014708492894925736 so:0.01440261389126477 it:0.012889422674481761 am:0.012290841453790991 :0.09626719334030737 +as:0.06931392982974462 according:0.052071562389565784 up:0.0511867300210483 and:0.040371568633051955 went:0.03351644485287816 back:0.032358406609281 regard:0.03073407747799069 feet:0.02852138506231652 down:0.026379903432040268 owing:0.02466642634685871 due:0.023695193974505355 go:0.022910973192184297 reference:0.020802802907016128 came:0.019883741951819873 sent:0.019874244915639484 attention:0.019565955494145405 come:0.01885185084678811 given:0.018792390567602263 it:0.017366961307524745 :0.4281354501879983 +the:0.39749834532651884 a:0.07520030034269234 and:0.05540858759821703 The:0.03273515726769502 tho:0.030061875542463562 of:0.020144331424922633 tbe:0.014929647509541684 in:0.014268129706664795 or:0.013333166761078447 .:0.013287381914101323 an:0.009000188755386574 to:0.00880680429595084 :0.007943763822197133 Mr.:0.00773879605474787 by:0.007328417831573476 as:0.005922572098978465 for:0.0047526933692942485 that:0.004736121968310169 on:0.004594595720579333 :0.2713091226890862 +the:0.39749834532651884 a:0.07520030034269234 and:0.05540858759821703 The:0.03273515726769502 tho:0.030061875542463562 of:0.020144331424922633 tbe:0.014929647509541684 in:0.014268129706664795 or:0.013333166761078447 .:0.013287381914101323 an:0.009000188755386574 to:0.00880680429595084 :0.007943763822197133 Mr.:0.00773879605474787 by:0.007328417831573476 as:0.005922572098978465 for:0.0047526933692942485 that:0.004736121968310169 on:0.004594595720579333 :0.2713091226890862 +not:0.06630678095249373 able:0.0588234326803098 is:0.05068245010947302 and:0.044814582690321764 enough:0.042248534116235165 unable:0.041953920112569994 him:0.04093639818137352 willing:0.033686982398570785 refused:0.03198264449668377 began:0.03153563199334311 ready:0.03143964721605723 ought:0.03093929837049259 order:0.03035254332375043 have:0.029633383534696314 as:0.029487784755267043 necessary:0.028430345333562836 time:0.027606808917358002 was:0.02716172392279174 reason:0.026460665394436426 :0.2945164415002127 +to:0.10029504859731943 and:0.09303092287600846 the:0.08756783109944329 of:0.08280130203420608 for:0.04718387603730538 in:0.027643441277795663 a:0.024265208868095547 at:0.01914370770527585 will:0.01745632430501795 :0.017188124355553287 that:0.01714541848631049 was:0.016826998809149476 is:0.01602410703062706 or:0.015140637777342465 as:0.01416045164411335 which:0.014072801413414727 be-:0.012893531010793827 by:0.0115394012492928 with:0.011457623453506626 :0.3531632419694282 +of:0.1393798572250151 the:0.13560101609483344 in:0.11754523649531548 a:0.09490229898001634 to:0.06679115963153281 and:0.037682881162782456 his:0.0369259553664708 their:0.03088106935846963 In:0.02736510513011489 The:0.02318216002615241 our:0.021198596501750055 from:0.020196930885225322 my:0.019357208495060996 an:0.01883643208810801 its:0.014987129017788009 for:0.014951418480114036 by:0.014355222171685736 be:0.01237156632930474 her:0.012077627828854427 :0.1404111287314053 +it:0.20661626833118804 It:0.13133310388077965 which:0.05346195225056892 he:0.04322413433168328 and:0.0399221355018402 that:0.03638459118631527 there:0.02656324547693805 who:0.022588363007738477 This:0.01601752777676921 He:0.015090910728543903 what:0.013686208311658789 she:0.01181234484166701 this:0.011752239301455133 There:0.009749183368011116 man:0.007759333367156636 as:0.007068481254995637 work:0.006691860301109499 country:0.006039779831696346 but:0.005362639996269743 :0.32787569695361507 +and:0.18385172095085178 time:0.07867719390634789 that:0.06556646019524646 day:0.055372020273663454 but:0.03558428295919714 morning:0.028404823488714027 year:0.02299982325167111 night:0.02109522425055972 days:0.02048165311427772 times:0.016599203290136817 stating:0.01625821444563169 hour:0.015482229176175668 ago,:0.014658922261674786 which:0.013440370136685495 week:0.013439732813565282 which,:0.013349876707520298 ago:0.01266721974500723 o'clock:0.011358784891614768 come:0.01087645794749962 :0.348835786193959 +I:0.20310614865499124 we:0.13095336151644477 they:0.10963388335706742 who:0.08037077981491167 We:0.07488153667062789 you:0.039983544501829914 They:0.03415185450415067 would:0.03199343594162023 to:0.030793264693848865 and:0.026871895058738 1:0.022825749939299082 which:0.01789719419924261 will:0.015887388995413882 should:0.013516297021785922 men:0.01063709377663105 must:0.010533161864037152 that:0.010202623106271102 people:0.010010163778980136 "I:0.010000933548033069 :0.11474968905607533 +the:0.18183506477226055 of:0.10871903023834968 and:0.06260272546576238 a:0.05929800081156936 to:0.05255476163845633 at:0.027754523844509882 in:0.020250849595838866 for:0.018949827187957506 an:0.01831954008496367 or:0.01688041770346529 his:0.01643279019584535 tho:0.015055834169869978 .:0.01450895205837703 with:0.013909551664106961 Mr.:0.012545388325475845 The:0.012292204115515843 by:0.01183955499249066 is:0.011605934436712225 was:0.0108072356285615 :0.3128378130699111 +a:0.18028008063496562 the:0.17535888921806522 his:0.11199430140463734 of:0.06363964639586046 her:0.05124679670424649 their:0.03854777127897442 and:0.03380844558697603 my:0.03213955009116875 our:0.02227795950191585 some:0.019963555664912203 your:0.018987961752575257 for:0.018893878994448048 no:0.01761239129715688 The:0.014245450921312679 or:0.013553453350597811 tho:0.01323823469965577 one:0.012484697418869773 by:0.011686850871330463 any:0.010324129640698456 :0.1387159545716325 +that:0.21068647974417345 as:0.1106696238347189 and:0.10796994794533338 if:0.06747708795522893 when:0.06018008820138395 which:0.051614168308586 but:0.046394100308257795 where:0.03283363277562461 If:0.025383880515796858 for:0.019507112774244644 what:0.01924880779581286 because:0.01825397597021009 whether:0.01780349423286798 of:0.015057180323314151 though:0.014679272538296838 until:0.014108013977231108 than:0.013416104325890094 before:0.010221720337424921 When:0.008103846440435613 :0.1353914616951678 +of:0.30299987660240424 the:0.09017780641956706 these:0.08564889356787293 all:0.042632014574418745 other:0.03864336108172215 to:0.03720158931147497 for:0.036041228589093185 by:0.03428710831939386 in:0.03217643091179237 many:0.030386453797621095 and:0.02714224741741646 make:0.027052469213538818 with:0.01970114995884653 some:0.01924583393156952 few:0.017103651780714837 that:0.016364318888549084 those:0.011488159072034019 such:0.010334900955920386 or:0.010068222300725774 :0.110304283305324 +the:0.2988217482526088 this:0.12814603843350023 said:0.0637695037008991 of:0.046929315959211994 and:0.025851108827257586 a:0.020504653074026626 that:0.017097690671123076 other:0.015712646332184336 our:0.01554262425006413 tho:0.013356076526595269 Custer:0.012400968744884869 The:0.012298154301968027 such:0.012251871061956134 York:0.010500706154060837 Lake:0.00989532559306651 tbe:0.006315951686642822 his:0.0060512627935892585 or:0.005929089981216368 Stevens:0.005479794685794105 :0.2721454689693499 +and:0.1007470223412382 to:0.08939081430991967 of:0.06269287069535977 the:0.05214090945137409 in:0.03722429703867608 re-:0.03570197487251953 which:0.03438679143875009 or:0.027452210150939696 that:0.02725487981475038 for:0.023954489153303712 not:0.02160109089145465 be:0.020378266235345867 who:0.02024276267717366 they:0.019168294140207005 I:0.018434667805498375 as:0.018390794996996227 he:0.01744944785501539 con-:0.01738015661817353 :0.015658949020239166 :0.33934931049306494 +and:0.05768730489555717 but:0.02267536930283464 it:0.022326754680972317 him:0.021585942020570962 them:0.017727129652239697 time:0.01701203119261716 that:0.014629401300903599 work:0.013037569680687141 was:0.012091504263618264 made:0.010516943206681123 had:0.010066855083414648 not:0.009813682255441004 money:0.009740102200951718 used:0.009672608071573545 be:0.00950603881637634 have:0.00875463038113726 men:0.008682161034336527 demand:0.008662634416660663 as:0.008541803727567038 :0.7062695338158592 +the:0.3649822817754406 not:0.09113101030466433 and:0.07320260304599154 is:0.05452554166696391 was:0.04491538494523161 The:0.03656573010848211 that:0.028634976845096662 are:0.022929467273393647 tho:0.019981787064773413 were:0.017155027172550907 had:0.016357160848141417 will:0.015408994272907288 of:0.015266233599291525 but:0.01495127608526137 have:0.01474023451437924 has:0.012899160027725306 be:0.011945317682445116 can:0.009877673351417123 for:0.009459330402272184 :0.12407080901357073 +100:0.06076354432535495 six:0.04752651114249511 fifty:0.03980396278626079 two:0.039543681970725615 three:0.037420805204274786 300:0.03628413999323554 hundred:0.03329124404856472 eight:0.02859582856351715 four:0.028518721018177352 50:0.026536570251863848 five:0.025540117777413992 600:0.025021243921732977 150:0.025014755071623485 200:0.02225738153258681 twenty:0.02188663853399543 sixty:0.021362886801384533 sixteen:0.020702252925571846 ten:0.020147259552624308 thirty:0.019147289162324097 :0.41963516541627266 +one:0.07459450644695516 out:0.04756087932156316 part:0.040443654669578444 some:0.03460783343894793 that:0.0338297209014503 all:0.027367384734588315 because:0.026656493171320666 result:0.025030534255770814 tion:0.024955714680983405 account:0.024337081552784336 and:0.02250310914692767 use:0.021276357568053864 cause:0.018243357915079243 end:0.01804823876510557 much:0.017677676184479043 any:0.016733452862654357 people:0.01636551355126638 value:0.016335523559710723 members:0.01630509795665754 :0.4761278693161231 +the:0.13987575842963337 of:0.11852346070415384 and:0.0963072448019898 in:0.06789983058743904 a:0.03969157867574745 was:0.034859941870910544 is:0.027535153340949064 are:0.023837637965263416 be:0.022833671015685297 for:0.02238714373648263 by:0.021037585439734795 to:0.01742709704260978 In:0.01710682232197593 been:0.01680336484265405 from:0.016507157063768207 were:0.01546416326081484 or:0.014614228560089978 not:0.01340921522630585 as:0.010338408172987403 :0.26254053694080476 +the:0.11919516938815296 of:0.07230453158552728 and:0.05781056740443249 a:0.043018564803886335 to:0.031305092790907506 in:0.020848713353460488 at:0.014270110001066288 .:0.012526810245749479 :0.012413283442322082 for:0.011719122709941797 by:0.010808400946589808 or:0.010404172990115616 The:0.01003576004804544 with:0.009811868184449042 tho:0.009295902015355835 was:0.008924239095331684 that:0.008672304223433876 is:0.0085591147338948 be:0.008335143826716943 :0.5187411282106204 +the:0.09683146349044763 of:0.06946074269462985 a:0.05908345270649993 and:0.04238666813284216 to:0.03617110570776654 The:0.020640496418202783 that:0.016718852702034118 was:0.013928995404216177 which:0.013491914428324888 his:0.013445512221537252 be:0.01296783297418681 :0.012768261035031625 or:0.01262185548555258 Mr.:0.012082231487828663 in:0.010782758179829112 he:0.010767271992235742 for:0.009659130938154542 it:0.009441885174243714 by:0.00872019618983086 :0.517029372636605 +and:0.12892662447278513 of:0.11462222315053168 to:0.10621576725043129 in:0.0978748917943735 with:0.083260181532499 that:0.038775054550345495 for:0.03192382276674949 at:0.02711299453106552 was:0.026824520581042278 by:0.026442472417042735 In:0.025347739777927883 nearly:0.023063460604753536 on:0.0193630355568026 had:0.01840663961509202 is:0.0167594923056879 it:0.01636613040183109 have:0.014375279185350304 from:0.014037277433351807 him:0.011108322645248223 :0.15819406942708847 +be:0.20570537225506777 was:0.14849266475929537 been:0.12048541027882465 are:0.07401868995136453 is:0.072643048788752 were:0.05116894711043945 and:0.05115764830346058 have:0.03524450271115931 not:0.0331764786459377 has:0.03015831907051881 being:0.021284435795708337 had:0.01978472317550182 it:0.012771933163856941 Is:0.012584455711796349 a:0.01248732306382127 so:0.01237221932095822 now:0.011819786836937853 he:0.010801367728604693 bo:0.010642573125497821 :0.05220010020249651 +and:0.09767649452875045 made:0.039209045236696535 that:0.03646992247578966 time:0.020870931518231724 it:0.016505920692093872 but:0.013300237665848265 them:0.012422425713738892 is:0.012334167375562779 him:0.010820258448800508 done:0.01067315922073459 more:0.009170021034136128 held:0.008867654435832347 said:0.008731423339334651 here:0.008563448638314397 up:0.008444170388667002 out:0.008423362340531109 as:0.00804879050415764 or:0.007839534583463858 was:0.007644082021434483 :0.6529849498378811 +and:0.03868242960999506 as:0.031124813427855922 went:0.02352509775927722 him:0.02196555539050794 them:0.018760608639018784 up:0.017985449426794205 is:0.017894175620344187 go:0.017174904667157563 able:0.016756848979943888 going:0.014481672239490295 it:0.014128375989346808 was:0.013277058274565138 time:0.013249953793837373 not:0.012469887553778763 began:0.012465717758716884 way:0.012105610030480113 back:0.012090864562211581 right:0.011941707822828511 amounted:0.011564315359310868 :0.667354953094539 +out:0.05662381194948541 state:0.04899353439100872 years:0.041118322780749214 piece:0.03767631585263326 board:0.03395890847542632 number:0.029165606266469673 cost:0.028051846955504087 amount:0.025044537620134474 county:0.022868039733078424 city:0.022062529724889285 lot:0.021941155971102015 line:0.020408410401337822 matter:0.020174511821734034 State:0.01744620196530198 full:0.015740034395499328 and:0.015253640650399986 Board:0.015147306923128094 kind:0.014695551271523763 form:0.01415955612726345 :0.49847017672333066 +J.:0.0955117979717418 John:0.07394585605645422 W.:0.0548230970077728 George:0.05415233749163569 C.:0.04110995869276589 .:0.03840518831179142 of:0.03605205360818702 Mrs.:0.03521629576140465 min.:0.03302692649100951 A.:0.030973345878491963 and:0.026650117711719077 F.:0.02565100928505389 Geo.:0.025002955074670704 G.:0.024824581472922384 E.:0.02272235972439914 Charles:0.02227354340575227 H.:0.02219283527386708 James:0.02209533641176557 Mr.:0.019638261789995334 :0.29473214257859964 +to:0.40655964613885215 the:0.17668480498651146 and:0.03916360661628507 his:0.03238517178724033 a:0.030934386307690513 not:0.0275196430305117 their:0.02558136602170595 may:0.021962209748833512 will:0.018126151157077837 can:0.017994064518482924 could:0.016464872185122756 of:0.015910938650424533 we:0.013945960329972034 would:0.0118371323529757 they:0.011251343013567438 its:0.010149422834830524 your:0.00909414964571006 her:0.009033149244208977 cannot:0.008730257928058583 :0.09567172350193798 +matter:0.11163949781848599 number:0.06686678770872712 sort:0.038673312553653284 kind:0.03754695530890367 point:0.036281005426638556 system:0.027903449862464798 purpose:0.026468922593659888 source:0.02587695332317694 lack:0.024634775617240735 board:0.023825044380734205 means:0.023643059214114612 out:0.022942343053237533 question:0.022754854903391467 full:0.02272498855096927 method:0.02069420993803454 right:0.020459901980171957 way:0.019068143588812432 deal:0.018602332505410293 form:0.016704758979993923 :0.3916887026921788 +it:0.11857892928876056 which:0.10419954526017984 It:0.10229720510101595 that:0.06796245048918885 who:0.06088908826247786 he:0.060731706658395446 there:0.047718276913133226 and:0.0298646407467943 There:0.025721626378001235 He:0.023765504777663107 default:0.02149030696489031 as:0.019132676760165265 This:0.015088553278066501 she:0.01413948392901254 what:0.014110548249504374 this:0.009613248172212615 work:0.008813388419150843 man:0.006677000754574867 country:0.0066605789516794795 :0.24154524064513283 +is:0.1738715461353775 was:0.10200041174883466 and:0.06314309819588981 are:0.06165713866472291 but:0.04186982495745935 has:0.039398402850754334 it:0.039060768643964704 will:0.03794363778434516 had:0.037402545107219805 would:0.03590086837796079 were:0.03192449160560687 have:0.03158952705835127 Is:0.031523214743115535 could:0.021283456806792226 do:0.01709497558445978 did:0.015879202494715836 that:0.01478429232657224 does:0.014759611493145945 shall:0.012729480728099887 :0.17518350469261137 +be:0.2015986065796126 was:0.1149754533957268 is:0.06490270931015621 been:0.060997679158640385 were:0.05872590656439394 he:0.05721863572628684 are:0.049794129807334574 and:0.04650057268795181 being:0.022895433286603446 so:0.01802176947512231 as:0.017410214465807382 had:0.016097998738878665 He:0.013744644895111546 it:0.013601898202745835 bo:0.013064348530410306 have:0.013027969847810244 has:0.012966820974821113 Is:0.01168675861723558 they:0.010268010926177478 :0.1815004388091729 +all:0.08965553645850145 it:0.055814896617162255 was:0.05065063193073827 and:0.048548435677280975 is:0.03875374666135571 them:0.03583158942180581 come:0.031559433173340715 not:0.029982430140908845 him:0.028979800079607532 turned:0.027116300528211162 went:0.024338080679433625 came:0.02336829002121052 get:0.021737401098445047 go:0.021717724520663336 be:0.020536765658315043 of:0.01808909828305131 looked:0.01678508813754034 are:0.016199964718284023 out:0.016114946799850382 :0.38321983939429366 +the:0.19379594192248137 a:0.1586032120205081 at:0.09936221106222416 and:0.04746515123521478 for:0.04403564836532673 of:0.03690678602369703 an:0.028975324883085275 to:0.02598654871092296 in:0.019136644603326175 any:0.019104256234298476 which:0.014284429894487801 that:0.013787919950912133 be-:0.012766191135000403 con-:0.010177439919331491 his:0.010159969504382447 time:0.009891615243818444 from:0.009845403726232485 :0.009677990534648425 tho:0.009592946041824542 :0.22544436898827677 +to:0.5624643910226627 will:0.06294659027647458 and:0.05263837250662227 would:0.029954916619831566 of:0.029174783437364606 the:0.021970897357709594 not:0.020663610201814037 by:0.019797885254303746 can:0.019759651156524588 could:0.01825687128582176 his:0.016144308072589274 shall:0.015279273207016629 in:0.012380761314177832 a:0.012259145492772594 should:0.011343274591126686 may:0.009802828065711288 or:0.00969014137081416 to-:0.008762274100014641 for:0.0076276097334955825 :0.05808241493315193 +the:0.5642127326812886 and:0.10226694227430297 an:0.058688300970340626 The:0.04164523620678018 or:0.03202916541676185 of:0.02578016960125053 tho:0.02316304322782829 a:0.0187512094289235 in:0.01653819273466707 great:0.0097149894514555 tbe:0.008587592562565359 most:0.007566217957642982 by:0.007495847756757564 that:0.006805230831129688 all:0.00623491935110742 no:0.005817256968121234 this:0.005608323703920023 some:0.005292625257822273 with:0.005150135585016064 :0.047651868032318356 +of:0.09377822863985166 the:0.08363948728662662 and:0.053933341427838344 to:0.04217699561473198 by:0.023370092362430817 .:0.02171273646268278 Mrs.:0.0215263569824876 :0.01826512149054832 was:0.013920928480799816 said:0.012633583400626964 be:0.010737613285773379 Mr.:0.00949666459294734 S.:0.009284330332191152 in:0.008577186085712861 1:0.008501510332546876 girl.:0.008435753963564137 boy.:0.008275692445044227 on:0.007886011250671515 -:0.0076130194092794545 :0.5352353461536442 +to:0.09864282010030183 the:0.08375297126946753 of:0.07074571151673052 and:0.06779046829403 a:0.02766650927741597 in:0.021670314456411932 at:0.021392828982420006 for:0.01627599403114278 is:0.015107338441904122 he:0.014818877918256685 was:0.013808540905081488 by:0.013132601340090633 it:0.012796195965848819 I:0.012723560421513859 :0.0121914922721236 not:0.011777366450725432 .:0.011011346691779235 that:0.01092359583028988 with:0.01073896800850032 :0.4520324978259654 +of:0.31481464962128325 to:0.09814286325746195 that:0.07030605249605976 in:0.056846197599119304 and:0.05578784846528428 by:0.05069127990203248 with:0.04527080663595365 from:0.038337819577524516 for:0.027205296068090367 all:0.022522686663270126 as:0.018055956972972194 is:0.01780893979100867 on:0.017621913194258074 when:0.017606807163524352 under:0.016748314190008176 at:0.01651720705419 In:0.011686702955653222 but:0.01037467513569423 was:0.009732651488002222 :0.0829213317686092 +and:0.2163721042993361 be:0.08473121441356625 have:0.06338249248529156 he:0.057211959143573424 has:0.04921012645838937 had:0.0474247184069288 not:0.03888415298643134 is:0.034120455323666796 was:0.032676841167726935 been:0.027125157686570107 to:0.02549198466361846 who:0.023842074319799726 as:0.02100599212202229 that:0.016358539146133395 now:0.01597247772854218 they:0.015495244179992684 it:0.014384357724167983 which:0.013034249318708196 also:0.012670927717127918 :0.1896049307084065 +the:0.1221913210950051 Fifth:0.03360765327923499 said:0.029301076367060263 Summit:0.026992471925819498 Pennsylvania:0.02295091577239292 a:0.017597135306281642 Third:0.017351051794753533 Jersey:0.015472170249286646 Sixth:0.014360070119026009 Mr.:0.011750097453929569 Grand:0.010022029804861932 Central:0.009934383182666007 and:0.009932444662768587 Second:0.009526512693008509 .:0.008407037853151549 Land:0.007885271289377698 Union:0.007726480205635234 of:0.007635486967136329 an:0.0071855632703086945 :0.6091708267082953 +as:0.06931392982974462 according:0.052071562389565784 up:0.0511867300210483 and:0.040371568633051955 went:0.03351644485287816 back:0.032358406609281 regard:0.03073407747799069 feet:0.02852138506231652 down:0.026379903432040268 owing:0.02466642634685871 due:0.023695193974505355 go:0.022910973192184297 reference:0.020802802907016128 came:0.019883741951819873 sent:0.019874244915639484 attention:0.019565955494145405 come:0.01885185084678811 given:0.018792390567602263 it:0.017366961307524745 :0.4281354501879983 +in:0.2710962571080858 of:0.19931963626136429 during:0.08531591352359089 for:0.07786354752471995 In:0.06265854792432472 to:0.044337188145354055 on:0.04104027150735656 from:0.023937030335618614 at:0.023776994170555277 within:0.02301357528660022 by:0.019182894931973886 and:0.01836742900782752 During:0.012806526366830188 that:0.010617384725651324 with:0.009808974881152932 upon:0.007873403341127207 through:0.007538457793453663 was:0.007370576212074994 until:0.007248249930071933 :0.0458271410222659 +hundred:0.014181577638569566 ;:0.013841092627064164 him:0.009625496865172601 one:0.007548375808315425 and:0.007423638999971114 up:0.007110203933984717 men:0.006739278599787901 day:0.006402357216478433 it,:0.0063776891778883175 years:0.006335109890625613 feet:0.006039976182759336 man:0.005311457593128492 time:0.005264632673640733 it:0.005241562787349268 in:0.005172642273040215 out:0.005028386635097534 him,:0.004880530440169323 them,:0.004831637508464234 you:0.004452331696186095 :0.8671920214523069 +the:0.136548335614153 and:0.08142140557909912 of:0.07423140406018602 to:0.05003354465069201 a:0.04493817991773199 at:0.03281509187315027 in:0.028928593013197928 with:0.015219229107347272 by:0.013772899044880734 from:0.01217040529509784 :0.011921463189462468 The:0.011920597667853238 for:0.011877405833859798 on:0.011642884063150354 his:0.011309597054056401 .:0.01100333187790802 an:0.010872629246864857 tho:0.00948013622474136 or:0.008967955831234534 :0.4099249108553328 +of:0.09129790931378902 the:0.07369883040827747 and:0.047842263382354346 in:0.04189055351593407 to:0.04045875475680249 a:0.03542341257202578 be:0.02020462051672066 for:0.01979292654746225 was:0.01760256398103379 at:0.017380150555488715 is:0.014984483003968216 with:0.014047653760730413 by:0.01374644383819499 :0.012670486581795598 In:0.01200961464556976 or:0.011563835749786333 from:0.011391516893522809 are:0.011273104484969465 that:0.010755276030689069 :0.4809655994608848 +it:0.15590291243815246 there:0.0887784025092866 It:0.07904016205387611 which:0.06936908824431676 they:0.05362226352982171 that:0.04647101454662571 and:0.04420120519214072 he:0.027952982163116303 There:0.027623278151575524 mortgage:0.023443129896555264 you:0.018859539766003214 who:0.017891862574647276 this:0.014117846301193209 I:0.01363040583752058 sale:0.011818751696880098 This:0.010767348085132659 work:0.010306262168963347 as:0.009927627839447666 They:0.008978002990569422 :0.26629791401417535 +the:0.12946841010653543 of:0.08527222804815561 and:0.07677710685737768 .:0.031665199305540154 by:0.024423502026706748 :0.02324533538731486 a:0.022365845773335277 The:0.022262099693479066 to:0.02135262070326009 in:0.01730371717291815 that:0.014446302781830879 Mr.:0.013707228575983806 Miss:0.012653070097577154 Mrs.:0.011439153833450283 W.:0.011247089810655735 M.:0.01108738153050891 A:0.010891657395654624 tho:0.010851343357052538 John:0.010802165620564878 :0.43773854192209816 +the:0.20631481567618984 his:0.18108733178828826 whose:0.12220136865357967 His:0.09827838754199415 The:0.06015175169142835 her:0.060067870073634 my:0.036227416867940655 a:0.03013328487519952 Her:0.022385656870146067 maiden:0.020218851742186045 their:0.014533704499370678 of:0.0121696868369324 your:0.010918411867049008 My:0.009577778568584284 tho:0.009314063117406941 that:0.009253824757265858 and:0.009094107373869868 This:0.008126786212002229 bis:0.007855661735467876 :0.0710892392514643 +the:0.6719707399743625 a:0.039238750147102576 The:0.033338372105225146 tho:0.029998470921579864 his:0.026454774590823463 and:0.024675027982668057 sur-:0.018540346243679062 tbe:0.011268591783333082 to:0.010723365949191706 of:0.009986994826633493 their:0.009344085942008135 her:0.007867525982802858 sur­:0.006840570041235849 with:0.00676680645326392 my:0.00643348576423221 by:0.004093086658018365 your:0.0038575739514054015 or:0.003575818989918564 our:0.0031829403601423474 :0.07084267133237343 +of:0.09129790931378902 the:0.07369883040827747 and:0.047842263382354346 in:0.04189055351593407 to:0.04045875475680249 a:0.03542341257202578 be:0.02020462051672066 for:0.01979292654746225 was:0.01760256398103379 at:0.017380150555488715 is:0.014984483003968216 with:0.014047653760730413 by:0.01374644383819499 :0.012670486581795598 In:0.01200961464556976 or:0.011563835749786333 from:0.011391516893522809 are:0.011273104484969465 that:0.010755276030689069 :0.4809655994608848 +and:0.31196140666339367 be:0.09283437346259305 he:0.07582826059617691 was:0.04569402149003355 He:0.03269317264978745 who:0.02938977982324234 have:0.02822537248855518 had:0.02774386051205449 been:0.02634869460438557 which:0.018503191836583777 is:0.01815311813171732 she:0.01743108651582668 has:0.013425819659131373 I:0.01218821352558994 were:0.011298282934376368 It:0.011281402389272168 it:0.011186714242535924 then:0.010949008852899882 ever:0.01026716008143356 :0.19359705954041082 +with:0.13818668069056797 of:0.13059057611664002 the:0.12732348479573655 and:0.12254313237226487 an:0.07621524468646554 their:0.037310646454459515 no:0.03704466068300214 any:0.030448421496481366 as:0.025616325594654727 or:0.02520014121871928 much:0.022840847523063285 great:0.019879766647296803 by:0.01795530927249688 for:0.017148501313079087 one-eighth:0.01714739680440184 public:0.015025352220424474 his:0.012895436797486073 bear:0.01278480697344329 such:0.01225552058505477 :0.1005877477542615 +sum:0.03352282876311118 number:0.028116684882597106 line:0.019995206059833036 city:0.01946514558931857 out:0.019275318828420953 day:0.01666865340772654 county:0.014872697538657208 amount:0.013254184849875051 Board:0.01252325449624941 town:0.012449555905674143 side:0.011663975251122375 part:0.011517157473718155 County:0.011460540331966697 state:0.011087331502382173 City:0.010878919191854432 purpose:0.01081028255427907 and:0.010297866493795984 way:0.009848747943663767 name:0.009522170936943183 :0.711769477998811 +of:0.23152074170063336 at:0.12293292934092839 on:0.11714260118430216 in:0.09164210265065559 to:0.06622114111168087 from:0.06058879492827046 and:0.04571999888289702 for:0.04134259490356975 with:0.0319713493008254 In:0.023759306118195392 that:0.021177457847203915 by:0.019966750486419604 upon:0.013127948980022707 into:0.010792674538149015 through:0.010062908825331245 over:0.009983515840286264 along:0.009809045788560074 about:0.009649695382634027 At:0.007435007504188081 :0.05415343468524671 +to:0.39564888019884414 and:0.07196797459992135 not:0.0316408796113835 the:0.030484932335371383 will:0.030160469520689175 I:0.0289920322110642 they:0.027826449858643503 would:0.024901340891661784 we:0.021557232197544757 may:0.01918617568977419 To:0.016602061129983747 a:0.015464037359364552 he:0.015441634190091064 They:0.015391126020253313 you:0.013515101470508946 who:0.013100472285164007 also:0.010229718243777454 that:0.009868993754366645 at:0.009784874364124426 :0.19723561406746787 +and:0.32002427856905596 Mrs.:0.10220443838956919 Miss:0.09141844220210275 of:0.03420845454208312 said:0.024306775218655065 the:0.021063669655395988 to:0.021007665903286066 that:0.01664444946023641 :0.016500434361997343 by:0.015446871578776151 as:0.008163780954848258 .:0.0073138132668598786 Mrs:0.006128251961266737 &:0.004952295130376947 A:0.003951174883049536 with:0.003620259805300873 when:0.003037228133627722 The:0.002674843892781004 Rev.:0.00261664161999618 :0.2937162304707348 +the:0.22067421922759659 a:0.15078245551109926 any:0.06751786216142203 that:0.06143766906828898 his:0.05103659950590132 this:0.03678212319974524 The:0.029472034761137342 no:0.02946337598621617 of:0.027867827091733147 every:0.0252037222280799 their:0.025095455633744573 one:0.022832860312765497 or:0.022462229143728946 our:0.021912977994443066 latter:0.02167975029811312 and:0.021288664536652232 greater:0.017406030229127404 some:0.017312382454747234 other:0.01706810961437994 :0.111703651041078 +and:0.1037742925122419 the:0.07706374319203188 of:0.061657147685429035 to:0.04713634730449079 in:0.029449678484649154 for:0.02706166951080549 a:0.020718213886083355 that:0.020141552039054066 as:0.019239723393351112 :0.019042126684076323 or:0.017110442872293297 is:0.014783527737658004 with:0.013147494328173873 be:0.01212121401164136 which:0.01143733431673941 it:0.010986641102320295 was:0.010047028184218071 I:0.010014809526930612 his:0.009798082200218423 :0.46426893102759353 +made:0.08077504596062263 and:0.07216324058149808 or:0.04004781517165074 followed:0.027552969123991935 done:0.02739229494504871 it:0.024600527090275517 them:0.02344290930258748 up:0.0225851762573871 was:0.02166677175360389 be:0.01957584760195552 him:0.019555500363834397 ed:0.01875329072588449 used:0.018548034385003423 that:0.018375738288504567 out:0.01715358940621844 given:0.01708871236556278 surrounded:0.016996634614888755 not:0.016762395474298166 caused:0.016630462867813507 :0.47933304371936986 +the:0.48125494985684286 a:0.2002699146246598 The:0.08613957689951134 tho:0.029863252510910328 this:0.023675348704935033 an:0.01804764551790103 and:0.015771993145448374 in:0.014760284918902113 his:0.013984853411430617 its:0.011341554534145324 to:0.010942715789866874 of:0.010395245172382172 tbe:0.008591623799006074 her:0.008206135562032906 very:0.008150308131305352 their:0.007416630888516068 our:0.00703792852218362 most:0.006952345997259073 was:0.006877878874376727 :0.02931981313838432 +the:0.15621671046020563 of:0.08293934573773447 and:0.06772045621308997 a:0.04030898697538473 to:0.03089898777290456 be:0.023680952006167415 is:0.022828286548593764 was:0.02150592323934112 Mr.:0.02071766099807059 in:0.017913704074305377 his:0.01723430504143636 that:0.01620656532772941 this:0.014298240472794764 their:0.014129945065623595 not:0.012992757867341572 it:0.012884989528146281 for:0.011758019379471147 or:0.011696930866717484 are:0.011185568831131152 :0.3918816635938106 +the:0.22745340635033218 a:0.11950242859960061 of:0.05943591791922169 and:0.04216779046015193 an:0.030492629309534246 to:0.028199634066880565 Mr.:0.027398196312638505 in:0.02504654882394428 The:0.02500823919800016 tho:0.016324012438198577 his:0.01319108196726717 with:0.01106883399874159 at:0.010599015485760881 that:0.010336279570435607 for:0.009459790811251463 or:0.00915630039860867 .:0.00899271791633619 is:0.0088734334294719 :0.008563595079553423 :0.3077301478640704 +to:0.13883772179126702 for:0.08581078407916239 of:0.06881846600108704 and:0.053879318139585665 with:0.041341719321317506 have:0.03605423140134866 that:0.032810178599866166 had:0.030640614695577977 from:0.027593870430442702 about:0.02314547051788287 made:0.02278488881378046 in:0.021476242632145374 make:0.01887011495792807 at:0.018154259079675775 on:0.01746958910375178 has:0.017399125536641406 upon:0.01678715095527644 was:0.016193908179413383 over:0.016135965330844274 :0.29479638043300505 +and:0.1417157418003202 so:0.06755684882674218 fact:0.05707173571703629 said:0.04486723127003565 know:0.04457473274659093 say:0.04048471673355019 is:0.029279944568814904 but:0.02438556998593403 believe:0.02348236877231084 stated:0.019305661733568756 all:0.019217712097723813 me:0.019031297091898075 him:0.0175758659888339 order:0.014998765855170048 see:0.01489256018742656 feel:0.014720541888046773 think:0.014424977241856658 was:0.01431732896568077 says:0.013992258106505139 :0.3631041404219543 +virtue:0.062060494787377685 out:0.05417899169104244 part:0.03289673107629515 one:0.02969369892462812 quarter:0.027015883171169475 favor:0.01993830018372674 result:0.019463829004704194 guilty:0.018891084377354095 means:0.018499162894926688 end:0.018170939082736048 that:0.018121271122199262 construction:0.01726217741616459 presence:0.017003995482744873 tion:0.01673652166540914 case:0.01640819963257697 side:0.016055927605250184 erection:0.015381239457214257 account:0.015287601389485416 hands:0.015156055434805247 :0.5507778956001894 +of:0.275574333881826 to:0.08636224615023709 in:0.06631904249133982 and:0.053992018225395254 for:0.04185726238848965 by:0.040432462728593715 on:0.0386621368609385 that:0.03746813623829841 In:0.02853879791593314 at:0.02784511394431448 from:0.027249043353089128 with:0.02598983508374518 all:0.014273748255081415 as:0.011953034597961125 upon:0.010404474445179767 is:0.009962155410920995 ot:0.008697425934451705 through:0.008441579399216994 which:0.00831499649011874 :0.17666215620486883 +and:0.10708547135707082 there:0.030725633540878906 wait:0.027184987106942914 it:0.023682319008328297 them:0.02335042669684021 but:0.02045067000712326 him:0.020331948419303733 or:0.020262212170804667 that:0.01961531737152179 not:0.017675822343222146 retained:0.017003481244371486 continued:0.01464635258363828 time:0.013022040485821939 up:0.012929551966496977 postponed:0.012888879602433718 on:0.0128275572218779 for:0.011394105952527668 here:0.011298759453845989 out:0.011086706310699811 :0.5715377571562494 +a:0.2877767349421714 the:0.22869287393928137 and:0.06185469398622105 this:0.04705295027286637 of:0.03708426613436581 The:0.03648218094534005 his:0.02946788414349204 This:0.01859302163329673 her:0.015638657495033206 that:0.01529883009387765 one:0.01332456599392086 little:0.01320511313915935 first:0.011620239798499176 other:0.009384697317658623 tho:0.008772190252365664 my:0.007794810950121175 A:0.007742248475249634 another:0.0075886997882260955 our:0.0073824110136650805 :0.1342429296851887 +of:0.15791299477451806 and:0.0775518551610532 as:0.07144230879380563 by:0.06442537183595637 that:0.06009249338895352 to:0.055602292390573085 with:0.054190716578707575 was:0.045594112154395926 is:0.03937086590750694 for:0.038742796980731284 in:0.03484573945879464 such:0.021913195586945516 be:0.019934333851909503 but:0.017412086969706548 on:0.016393995070414138 from:0.0146884900475569 made:0.012092360679218718 when:0.011417034508370406 at:0.011294683254050353 :0.17408227260683168 +number:0.08683069308129672 out:0.05652523988365806 amount:0.0316160995429281 loss:0.03003158991922196 thousands:0.02193415724864308 plenty:0.021327800488850416 time:0.02084447319022837 kind:0.02068065360314574 all:0.02034476343485012 use:0.01987581810044361 means:0.017489403156055485 place:0.017484157051135582 deal:0.017371256224811903 purpose:0.016977074526153133 day:0.016383311738487803 kinds:0.014686781173143919 matter:0.014455532536242705 set:0.01445093555379865 way:0.014287353369565244 :0.5254029061773394 +the:0.39275873795519883 this:0.06737001357267738 and:0.05942459986167063 a:0.0585186999618362 tho:0.03762483593827553 The:0.03545524113094743 great:0.02453239635488509 or:0.024452751282817237 that:0.021458527605185945 said:0.019477963774793515 any:0.01709773461465734 every:0.01681879662656896 of:0.016377214957076665 tbe:0.01574357664923692 our:0.01508433238745307 their:0.014891170366466895 his:0.014555159929232295 each:0.013573640544233732 an:0.012667571912964429 :0.12111703457382184 +shall:0.15237895510480845 may:0.14765678626804857 would:0.14063880319110367 will:0.11467352339629557 to:0.09318393745020838 not:0.07681500673217957 should:0.06868630294488906 must:0.035440520439358414 might:0.031529801554298346 and:0.02337689547667581 who:0.022258914755839233 or:0.010509034337862058 could:0.009567607870289116 they:0.009390480755060679 we:0.0074277818005268215 can:0.006931488814026408 I:0.006804427353623763 only:0.0049722253397598394 you:0.00485458001598344 :0.03190292639916283 +a:0.17183806165853147 the:0.09486232498664834 and:0.06469587233389011 was:0.04584701741083799 of:0.04284074270872582 his:0.03426899448135343 be:0.02731007884284073 to:0.02698451879096963 were:0.02661489114231304 will:0.018797710623500073 The:0.01864283108267645 do:0.018283154386356002 her:0.01798470618528127 their:0.017878479504721292 I:0.017782755784692926 are:0.01744670863459468 been:0.01690074714957829 most:0.01612701037481301 very:0.015284491475414452 :0.28860890244226095 +the:0.22431886284969893 to:0.17622621696552035 of:0.05815406181123574 at:0.050597555557790885 his:0.04807177792921615 their:0.04495321514183591 this:0.03856079892400832 for:0.035171617641653295 any:0.022251062731679795 our:0.018534876274964494 and:0.018175716418245794 its:0.017093779633226877 or:0.017008224774488385 good:0.01566961683919078 hard:0.015456355167502298 a:0.01499465776844538 own:0.013366374068051566 said:0.012751985598354915 no:0.012718298220114452 :0.1449249456847757 +of:0.1896478667441036 in:0.1483972579634044 to:0.08992405285986066 the:0.07606369730140411 In:0.04496307328013223 at:0.044382261159677805 for:0.027362567305809327 and:0.020967367600930178 with:0.018410833458729757 from:0.017604562518855258 by:0.017032646989413525 on:0.01484967316324329 :0.013205796930537 his:0.012759607292491525 left:0.010974779222913398 On:0.008324225664806714 that:0.007515210014559111 a:0.006499880226884511 made:0.006366190913288343 :0.22374844938895527 +the:0.1606143841020133 of:0.09292925342196529 and:0.05267404955108133 to:0.04290016120996486 in:0.037986214401654665 a:0.035837294327124125 that:0.022783327622854208 for:0.019326851342342417 by:0.019249985101521688 with:0.017006569126422955 or:0.01480386863542845 at:0.011609582439333074 an:0.010769961450536008 from:0.009967268893000664 any:0.00960946216790002 :0.009421109393047057 on:0.009395224829098405 their:0.00934282467385584 more:0.009247805287222337 :0.40352480202363333 +of:0.13084814232797154 in:0.0740836656586379 as:0.0625527229231004 with:0.059577596335708534 to:0.058433603729754965 is:0.05551580107464621 and:0.04946529489577619 was:0.04264000753602388 for:0.04009673021586375 by:0.037684080471064085 be:0.023941707008899252 on:0.02316059851167503 at:0.022644769441950232 such:0.019950936521181326 that:0.017856095877642635 like:0.017386655618315594 In:0.016902219705578994 from:0.016046571451088905 not:0.01205910100844263 :0.21815369968667797 +the:0.3861326342002598 a:0.12148941975355984 an:0.047134669112507195 of:0.045009608556644744 and:0.03298790738325068 in:0.030220810502569157 The:0.028287995816675706 tho:0.02562644932941938 to:0.014936207639703101 tbe:0.011768791973203381 on:0.01147468080436741 or:0.009893140503113611 this:0.009038225405861055 his:0.008815067540929523 In:0.00856263058415565 that:0.007884864801192729 with:0.00779495502268287 most:0.007543064301381901 for:0.007466727712690733 :0.17693214905583154 +not:0.12782162845276998 more:0.08761947184026933 is:0.059230566922426085 was:0.04645753715324619 much:0.04351310153110066 been:0.03330124449650305 be:0.03128552351820418 better:0.028849641141454416 and:0.02755747545290045 nothing:0.025346936535551663 out:0.022089346265225435 right:0.02036313147357727 done:0.019256966981994927 up:0.017920017587163297 him:0.01672684520996836 them:0.016674605567864487 are:0.015998382824379875 that:0.015760305852025838 work:0.01571933739050205 :0.3275079338028724 +a:0.321086894672905 the:0.3190816447116218 other:0.025223708943428222 The:0.024538831164655564 and:0.024242258785637856 tho:0.0226245058414713 this:0.01675106011560696 one:0.014213542211606789 any:0.011931309143655608 that:0.01184207810720295 every:0.011700873669757432 present:0.011568735923922841 tbe:0.01027566146246478 A:0.009327257346626388 little:0.00852141591114168 rising:0.008380194665740318 first:0.007608088398397287 great:0.007204977590678099 no:0.006978879369767176 :0.12589808196371186 +the:0.09684081064840576 and:0.06551335624548284 of:0.05146145169206151 from:0.049520598669154245 a:0.045427902131977435 to:0.0370403239153822 be:0.035669151526387034 was:0.030489628475080553 is:0.026635804908522978 in:0.023878514238638158 are:0.018513936943033917 not:0.017945708099223703 or:0.017556265685966497 been:0.014265228721347686 at:0.013857211504087178 he:0.013733215789660087 were:0.012396679125422956 I:0.012347944480187516 for:0.012197989992860347 :0.4037082772071174 +the:0.4775777917946052 a:0.29654716728652747 The:0.052909840173081514 tho:0.022388827636055993 and:0.022214628878090732 A:0.016773543750292903 of:0.011448832719986424 no:0.008959571488219778 tbe:0.006927618011587327 or:0.005537165482070271 in:0.005507420608053342 long:0.005151650808067155 by:0.00472786480564053 little:0.004662313290151673 this:0.004399451132326717 that:0.003891316886533783 every:0.003553170938362113 with:0.003510554859333653 have:0.003486712056245182 :0.038824557394768235 +the:0.11919516938815296 of:0.07230453158552728 and:0.05781056740443249 a:0.043018564803886335 to:0.031305092790907506 in:0.020848713353460488 at:0.014270110001066288 .:0.012526810245749479 :0.012413283442322082 for:0.011719122709941797 by:0.010808400946589808 or:0.010404172990115616 The:0.01003576004804544 with:0.009811868184449042 tho:0.009295902015355835 was:0.008924239095331684 that:0.008672304223433876 is:0.0085591147338948 be:0.008335143826716943 :0.5187411282106204 +man:0.09006979503418337 and:0.0676682959449336 those:0.055047190287998565 one:0.05180039197513442 men:0.03757612919440723 all:0.02747776237828006 woman:0.023300017749961446 person:0.021071399980195842 people:0.015215230930010308 man,:0.010440339852170947 girl:0.00899216067494532 persons:0.008875427048516245 but:0.008126990772274557 women:0.006747350391063707 of:0.00619349440655958 others:0.006015749269921171 Those:0.005935926958504449 or:0.005643867713255262 many:0.005536099090707113 :0.5372663803469768 +of:0.1301481341782189 a:0.10180464516020864 to:0.0747246257485091 the:0.06157104960165307 and:0.05828659646465842 in:0.037836849005719396 at:0.028937809662669126 for:0.024959142567173333 as:0.023317793996820903 was:0.021713755301660424 by:0.018595176534500737 with:0.018363887938893073 be:0.01827300167498555 is:0.017887679910577596 from:0.01662363001813661 on:0.013365225841429474 that:0.01301546972984515 an:0.0127269312820191 his:0.010545199242317425 :0.29630339614000395 +to:0.12724186474267224 at:0.12458014684598986 in:0.09688957500877597 for:0.0868200065621729 of:0.06022908056811589 as:0.057401230578143864 such:0.05525252831655456 with:0.044954981313922115 is:0.04486757787807786 and:0.04152271782016862 take:0.03130240660614084 from:0.024864892223000177 was:0.024580083781506685 In:0.02307781894533375 made:0.020619410283319366 on:0.020291648239482717 that:0.016888433485255157 make:0.014644490226407755 be:0.014502714758979064 :0.06846839181598058 +of:0.19926244802748994 in:0.15544141197249842 to:0.10890617038277077 that:0.06705112938663962 and:0.06655173275893679 In:0.044991593732353764 for:0.036020728444381325 the:0.03265497147319881 all:0.025415364646628094 as:0.020859327600656202 from:0.01768493279262084 by:0.013586180826436875 with:0.012488636087630949 if:0.011471234920913134 when:0.011017952938721869 which:0.010677479656607185 on:0.010616122076169169 make:0.010221159178649778 upon:0.009647923022821992 :0.13443350007387445 +was:0.17300207782008062 is:0.15494854402505182 are:0.0809560305663728 and:0.07784254180587735 be:0.06948771870620452 the:0.04588229147917185 were:0.044422735184510995 very:0.0368547787625104 been:0.029633426087639806 Is:0.025168648457767832 a:0.022796580474024473 so:0.020733489661443078 as:0.01819898423015689 not:0.018143049756811035 composed:0.016923103564591747 with:0.015270411513759607 but:0.014409108159849094 being:0.013153797382627449 am:0.013074966261467535 :0.10809771610008116 +whether:0.04780818151633888 law:0.025659994785995493 on:0.017394158685873115 and:0.015921391461353098 in:0.01535441621868209 more:0.015234041692275399 for:0.015146183026677943 it:0.013724713033941032 little:0.012809332986440658 is:0.012700495834900393 one:0.012152356710986089 to:0.010534373873964609 be:0.009868727278586693 him:0.009695432536782128 time:0.009573690036170182 right:0.00859923424953108 them,:0.00825626748434124 any:0.007380022016448352 man:0.006808813905725705 :0.7243781726649858 +and:0.07558940021936399 recorded:0.030196237618668006 was:0.028917161578042846 made:0.027969746247669736 that:0.027730098932509103 o'clock:0.025060522019555328 up:0.023026552239529506 is:0.020398277211376416 found:0.02003101797656537 placed:0.017482208134164214 out:0.016937164562539058 place:0.016819459500107596 interest:0.016629321966808677 him:0.016002796715253755 situated:0.01573420479581609 it:0.015128305982428461 them:0.014715943643665314 part:0.014646613000297721 interested:0.014450471929902294 :0.5615344957257364 +the:0.506032633056182 of:0.13105529090682685 these:0.051879253126844854 their:0.030999910456062433 tho:0.026673034859184323 The:0.024952003327698074 and:0.015217761183848811 on:0.014276157703080295 both:0.01378201737268272 in:0.013086145781480367 some:0.011397361327547244 such:0.011321533013088235 its:0.010972004284097127 two:0.010794355939391573 with:0.010365877260346669 all:0.0100045964914693 a:0.00990851646218572 his:0.00971524482628621 many:0.00876810083905897 :0.07779820178263819 +to:0.48335841572072125 and:0.08685003853118013 will:0.05961954671807311 can:0.04302512729551217 shall:0.029172935434974297 may:0.026881251048586848 they:0.022360725570982294 we:0.021791905796213335 not:0.021550813293985095 would:0.020318683859780626 could:0.017753371325544096 you:0.01016622824680739 I:0.009988656245820317 the:0.009885154402685713 should:0.008190791954484127 or:0.007880914239144221 must:0.0059868480052629345 if:0.005903647467142686 who:0.005856565577940697 :0.10245837926515866 +the:0.32319231135631205 of:0.07227416188947991 this:0.055906173613693655 The:0.049609265724950724 his:0.040600887737728075 their:0.03863320809588061 that:0.030626629281959115 and:0.029974623777517587 no:0.028089910919746313 its:0.025480118358920962 This:0.023123233623394846 a:0.02256456423959984 motive:0.021105014909520957 our:0.01975692342421975 political:0.018210094094436472 such:0.01692328930937101 whose:0.016636112407240406 tho:0.014742026899089222 my:0.011967888213108015 :0.1395835621238305 +of:0.13295500894897108 the:0.09777058361450694 a:0.06663443797851569 and:0.05729250001926319 in:0.05158326825464694 to:0.035335332492535884 an:0.02426986787281729 that:0.0203201965898617 as:0.018049635105476726 with:0.01742638460791279 by:0.015843206574635667 The:0.013829813709025047 In:0.012793146559623004 for:0.012053671456887093 more:0.011882029319808982 be:0.010516372347445862 on:0.009603904874791675 from:0.00911007585168491 his:0.008984656409380528 :0.372745907412209 +and:0.07558940021936399 recorded:0.030196237618668006 was:0.028917161578042846 made:0.027969746247669736 that:0.027730098932509103 o'clock:0.025060522019555328 up:0.023026552239529506 is:0.020398277211376416 found:0.02003101797656537 placed:0.017482208134164214 out:0.016937164562539058 place:0.016819459500107596 interest:0.016629321966808677 him:0.016002796715253755 situated:0.01573420479581609 it:0.015128305982428461 them:0.014715943643665314 part:0.014646613000297721 interested:0.014450471929902294 :0.5615344957257364 +hundred:0.013633628820093018 ;:0.011172311961148602 him:0.009807052834026905 one:0.00914669734384353 feet:0.0090219372983598 up:0.00838318558829166 mile:0.007527126877816727 feet,:0.0071805242500254255 time:0.006879602834379732 man:0.006817451499927337 it:0.006300585667639516 it,:0.005903705234588485 out:0.005451849962934835 :0.00538718305729827 ,:0.005295204710281874 and:0.005240008239108335 here:0.004938150073064577 water:0.004837308913464981 them:0.004796443021708541 :0.8612800418119979 +of:0.2527947516314318 to:0.16954205668808092 and:0.0653872682446158 in:0.06393397704773901 by:0.043300742240829596 that:0.041605239408820334 with:0.03452642134285592 for:0.03097286007016312 as:0.030098889317724507 on:0.028733493135365627 all:0.026405766038768468 from:0.022725968071022114 if:0.019323157289783725 is:0.017207551611057546 upon:0.01675764369483805 If:0.014384799094083573 when:0.01400465079491378 let:0.013387419955925333 over:0.012644132421406157 :0.08126321190057464 +him.:0.036051641843969036 :0.026651937155490163 it.:0.022518260267221386 them.:0.01286326903494816 himself.:0.012114212336780766 time.:0.011493978126600126 years.:0.0103889355653777 country.:0.009282692282605087 life.:0.009188038387268699 man.:0.00857551268996544 again.:0.007048890221361582 and:0.006902522861768453 home.:0.006821851697439567 them:0.006477635295071926 work.:0.006370856501574333 her.:0.006283020434622129 day.:0.006145472703370726 place.:0.006073718539330172 world.:0.005711515208666042 :0.7820360388465685 +him:0.017727922794506745 it:0.01769376030161299 it,:0.013679064213970657 in:0.013255745785276538 up:0.01251897418658792 out:0.012259993109839351 ;:0.009658891887752492 made:0.009289995357633581 work:0.009121073559095371 them:0.008788186685752802 him,:0.008691223967162405 them,:0.008687577324334414 time:0.007916106986353158 down:0.007840291282538164 can:0.006978125867184064 law:0.005840896166004057 will:0.005741777168017205 to:0.005702247191667524 again:0.005642929639541179 :0.8119652165251694 +and:0.08995317707915026 to:0.06844710404109794 of:0.04605142056172993 the:0.04074574508561307 which:0.02479116931334353 that:0.023764822140213245 re-:0.020841117231308055 in:0.020803825395358622 for:0.020278423301550053 :0.018417753428486977 not:0.016860793136637672 con-:0.016444405871234195 is:0.014386481772210856 or:0.014080680914153714 be-:0.01352268143271276 I:0.01317002660943805 was:0.011429878269381662 dis-:0.011196807025842847 he:0.01113106290024311 :0.5026826244902934 +be:0.22323310299606391 was:0.15469982003644858 been:0.14234480959953993 is:0.09259557050921051 are:0.08630214068955924 were:0.0685625612422526 being:0.02100213930157475 and:0.020599349232907332 Is:0.018033988282984647 bo:0.017518170337317993 not:0.017357656919520438 so:0.016488768628288193 he:0.01405663928995885 more:0.01284879001384288 have:0.010331830025198269 very:0.010028006519779482 most:0.009134888666870858 has:0.009134596592104523 am:0.008068199378202313 :0.04665897173837471 +the:0.11919516938815296 of:0.07230453158552728 and:0.05781056740443249 a:0.043018564803886335 to:0.031305092790907506 in:0.020848713353460488 at:0.014270110001066288 .:0.012526810245749479 :0.012413283442322082 for:0.011719122709941797 by:0.010808400946589808 or:0.010404172990115616 The:0.01003576004804544 with:0.009811868184449042 tho:0.009295902015355835 was:0.008924239095331684 that:0.008672304223433876 is:0.0085591147338948 be:0.008335143826716943 :0.5187411282106204 +of:0.37572201683671685 the:0.20997217379738464 foreign:0.045992030606081695 public:0.03905259147187571 and:0.022530349835349284 The:0.0218419103936221 American:0.021233435659927333 our:0.01692723070164987 white:0.014608551872566015 their:0.013019205377361835 with:0.012932768151827952 his:0.012633752946285317 other:0.012523040512639602 young:0.012409987110133136 for:0.011167641325475139 internal:0.010113790004953278 own:0.009521562640746141 colored:0.008365596719171656 private:0.007830748505796696 :0.12060161553043575 +be:0.2844494665970908 is:0.13804739188905601 was:0.1076613494708164 are:0.09777930417704668 been:0.05476438468848343 being:0.050521876320925786 were:0.047531608483314274 and:0.027499954783109414 Is:0.020517398041472613 had:0.013716309854077692 bo:0.01259024832588025 have:0.011782680081914515 has:0.011174677609826126 the:0.009855203595218952 he:0.009462550040083504 much:0.008989965499616752 equally:0.007254444514496063 or:0.006569280357025061 evenly:0.006561383962163229 :0.0722705217083824 +the:0.48783739749236693 of:0.08088325834414652 at:0.07008029008018725 The:0.03348707656894689 tho:0.03283152539893094 and:0.027405870569075515 to:0.025997170503304707 At:0.015704803491379656 tbe:0.012732280921748083 on:0.009666349729415552 that:0.009652776624721245 from:0.00891644497871423 their:0.008554785223037417 this:0.007874381500011437 his:0.007543886395452978 a:0.007374478183687154 will:0.006656935873656348 which:0.00655530469431335 for:0.006308483802048594 :0.1329364996248552 +of:0.13531830852723942 the:0.10714481680221101 and:0.09215150550735411 to:0.03531235405435172 for:0.025015064269505415 that:0.024681202610145146 in:0.0243855746062975 by:0.021543253013630553 or:0.020326865415632982 with:0.01700120288179117 :0.015405165359684482 other:0.014180610033674993 some:0.01406945067534146 which:0.013030816685814633 all:0.012569052749996045 The:0.012365443398984356 many:0.01179086791918667 a:0.011245528037693452 as:0.011213849977532532 :0.38024906747393233 +of:0.17357763665669998 in:0.07445811911999801 on:0.07067672673697023 and:0.05729737366388116 as:0.05398113403713122 by:0.049361998529988356 with:0.04562850493931293 to:0.04558409423749889 was:0.031407010848998586 for:0.030947196629167967 is:0.027980086800206697 that:0.026800883976595413 at:0.021574407449533414 from:0.01922514300510091 In:0.01882172729249761 upon:0.013351565543690143 or:0.012932428751052324 be:0.012401285238566801 into:0.010931261709795134 :0.20206141483331425 +the:0.28205911156848235 of:0.13841612855023824 in:0.07630807690981442 a:0.07517967737923001 and:0.046573541150435965 to:0.03376830904474539 an:0.017647849001042167 tho:0.016882025597816694 The:0.01663950488468825 In:0.012718554463053387 with:0.012603857566412835 for:0.012478235086880804 by:0.010731978202704983 his:0.009685884054053974 or:0.009025713962850042 that:0.008088029142159394 Mr.:0.0077947487849742945 .:0.007545831160441862 all:0.0075037573837488936 :0.19734918610622604 +of:0.18727275244822475 in:0.12331141129259998 to:0.09667992910041318 In:0.05945374846913275 for:0.05483940287981426 from:0.0488535538948611 that:0.04859043662643488 and:0.04308745848803733 on:0.042827538228934946 with:0.03883215405115542 at:0.029144940312930294 by:0.028329187672676785 is:0.015957268349383765 when:0.015826204571401097 as:0.01294296385705397 was:0.012325151158173661 before:0.012313355384144483 during:0.01169530801117551 upon:0.011417366312546829 :0.10529986889090501 +is:0.16585160945251926 have:0.09931029458574367 was:0.08789390653069178 had:0.08340938743248238 and:0.06713425739147212 has:0.04182928853279093 be:0.04018443428559695 that:0.036177426542175824 made:0.036168910390211514 with:0.032557905164912436 in:0.02979622422438367 Is:0.02228673049248242 make:0.021682057570944473 of:0.019196350185709088 but:0.019128164350504927 to:0.01393042841364825 will:0.013420623624783261 are:0.01268139085650755 for:0.011225183312428125 :0.1451354266600114 +he:0.20746053766850364 who:0.08574564944977531 it:0.06747673005834233 He:0.06378007021374739 which:0.060787778451593256 and:0.05191143763445344 that:0.047989119407800304 It:0.04007153895751944 she:0.03486711279195861 man:0.01241266974118952 ho:0.011996276976457873 lie:0.011573080613216614 She:0.010818356025000626 company:0.009616719347415249 as:0.009000194990734244 world:0.008672049571160296 time:0.008193783377269035 country:0.007997667086059299 government:0.007439252051517688 :0.24118997558628585 +well:0.1348910039817865 known:0.10319018469461275 and:0.08272500319084397 such:0.037554339943191926 just:0.02515440955815237 regarded:0.023453958474170186 is:0.023152808913063178 act:0.02135543454511964 much:0.02112698894645377 was:0.0209983242500757 soon:0.01998915950044782 far:0.019965914759020834 men:0.015066986679711371 or:0.01430804465030146 be:0.014165571965168967 them:0.013204253635870003 him:0.012816076084845507 designated:0.01234768397995349 not:0.01205414131833517 :0.3714797109288754 +sum:0.03352282876311118 number:0.028116684882597106 line:0.019995206059833036 city:0.01946514558931857 out:0.019275318828420953 day:0.01666865340772654 county:0.014872697538657208 amount:0.013254184849875051 Board:0.01252325449624941 town:0.012449555905674143 side:0.011663975251122375 part:0.011517157473718155 County:0.011460540331966697 state:0.011087331502382173 City:0.010878919191854432 purpose:0.01081028255427907 and:0.010297866493795984 way:0.009848747943663767 name:0.009522170936943183 :0.711769477998811 +the:0.24571714115791665 a:0.14081403029540757 of:0.06595728702066014 to:0.0617693042562025 and:0.04100080817125182 in:0.04077685464907211 an:0.028426932478502323 The:0.019078077063764277 at:0.017437037123282876 for:0.015776906638734253 his:0.01366695609964989 tho:0.0134658637611157 with:0.013177568064159576 from:0.012836125020381915 on:0.012669265120772077 In:0.010937308145372611 or:0.010185303686831432 that:0.009988867289110985 their:0.008771004503786631 :0.21654735945402467 +the:0.28700138728161567 a:0.17115822201922729 and:0.07903010380708717 The:0.036475944238780304 his:0.027606464186132783 old:0.027304920978045863 of:0.02335549433072142 my:0.01293518846408779 her:0.012782242748498932 tho:0.012238745178446768 with:0.011647386116282896 many:0.011512896528882682 our:0.011501418201593552 to:0.010841456969646866 A:0.010606585071985544 their:0.009447165021479409 these:0.008828309800252218 young:0.008215253653445909 great:0.008214886970622184 :0.21829592843316478 +of:0.28767355066866834 to:0.08775711267569858 in:0.08678131196995101 and:0.05160598694501188 on:0.04646139928102899 by:0.04519522654900943 for:0.044547789071328545 with:0.03396756772609607 that:0.033699232901107726 from:0.03075346596941143 at:0.027039283056790858 In:0.021061449543044047 as:0.017514234937992545 all:0.012543839382496166 upon:0.011844431150487573 is:0.00998972746569266 was:0.008814315973987914 into:0.008557199930727406 through:0.007781895704231326 :0.1254109790972375 +of:0.23840974211265292 and:0.10757236118456595 in:0.10678004387943432 that:0.07861347478843873 to:0.06628826751287739 by:0.044269405164304845 with:0.03797700923934748 for:0.03596464772688654 from:0.03119538281018773 In:0.026204308882844068 at:0.01941566692130706 all:0.017875239053775808 which:0.01724791844477266 as:0.015136137851006742 but:0.014463170191709406 when:0.013282306465236437 is:0.01312673020359766 on:0.01255237505337047 was:0.010674615632311084 :0.09195119688137267 +is:0.1300949053123692 ought:0.06235942008217411 are:0.06072445398663133 seems:0.05697318922100556 was:0.04954471475520722 not:0.048536362204045544 said:0.03881623685409472 seemed:0.03220746110521765 as:0.030923473227594384 it:0.030881869856406088 claimed:0.028226689520969073 have:0.027725540143517465 and:0.027557757709861613 likely:0.02587900806524851 seem:0.02574969309575762 supposed:0.023317446089120043 had:0.02145961764731352 Is:0.017651730366473797 proved:0.01677680343414685 :0.24359362732284573 +and:0.07895257911471103 was:0.03596317658514438 out:0.024016824392823457 that:0.023672598027062328 placed:0.022844208461019616 work:0.021707439938587154 made:0.020781005318872947 is:0.020224993929329655 up:0.019794182040466738 put:0.018288921183371155 down:0.0171740551508179 interest:0.01663630075189571 point:0.01659978677065351 him:0.016175999448187352 held:0.015562908663841706 Dakota,:0.014616466073415059 place:0.01424333231426501 Minnesota,:0.014067166610364513 it:0.013665465625771424 :0.5740125895993994 +the:0.60133422966351 a:0.08320135541527869 The:0.06623860861887838 tho:0.03612271778804525 an:0.0264499897511881 and:0.02147116249408061 no:0.016244538613550023 this:0.01180027570392838 any:0.011416015725993453 his:0.011157226742465163 tbe:0.010881121830530487 its:0.009553358371101658 our:0.008279661303371237 very:0.007227684349201677 their:0.006938785118205067 balance:0.006228820325857219 of:0.006024868242998758 my:0.005708102857253476 every:0.005615119898655418 :0.047106357185906875 +is:0.1582572924007758 of:0.09888379474067781 was:0.07371230940357489 with:0.0644574425296746 be:0.0605225458432951 in:0.05900632312142365 to:0.04969960374333581 for:0.04885931249605303 and:0.04786726659262738 as:0.045164307630170014 made:0.022378174324879204 Is:0.020557205964597314 make:0.01988805439427843 have:0.01717208616232807 by:0.017097550176500116 that:0.015490507605788096 such:0.01532530452183768 had:0.014960246217070625 been:0.013065320255190315 :0.1366353518759221 +the:0.15148520091634132 of:0.11581289231584115 and:0.07752512593307541 a:0.07133536139557894 to:0.05484377064878087 is:0.025737359481067833 are:0.02258686244701621 or:0.022484665319972803 be:0.0211704044864401 in:0.021053473084557336 was:0.01872988675549095 Mr.:0.016850392576844397 have:0.016509330698929393 all:0.014063939118269852 an:0.013588749019298393 The:0.012671426147671243 has:0.012646780208744645 that:0.01168351033845999 had:0.011463326286993508 :0.28675754282062565 +the:0.4149806742535891 of:0.0743293660890968 and:0.04985506426660925 his:0.04267128953457622 a:0.029743547603722675 in:0.02219808949195166 tho:0.022115795101166055 The:0.0218581809451471 this:0.02103023118754499 said:0.021002976605486973 their:0.019483840770155768 rail-:0.018430808745264347 our:0.015789834989512443 to:0.015001585423860911 by:0.01480168116983177 wagon:0.013226100697841785 rail:0.012480528915219873 that:0.010961996573110196 or:0.009262009079152849 :0.14977639855715924 +the:0.26320459457628487 The:0.06882404671057345 and:0.05666894505448773 this:0.051795484283040524 that:0.046707048558249024 of:0.035814659169130486 which:0.035461678533194846 This:0.0351641048005373 he:0.03111608759285678 a:0.028745002153241578 it:0.023661190201142313 some:0.022545141217518383 an:0.019188674088101532 It:0.01856880119423731 tho:0.01853595368663228 other:0.018057601108604042 these:0.01759818988942473 No:0.017017483006103014 any:0.016097780004630448 :0.17422753417200934 +there:0.10468378628317151 they:0.09304026768992829 There:0.09016647701315784 that:0.045156544072825565 which:0.03922276208957313 we:0.02870306351870725 who:0.02356943247759647 you:0.021351032172223942 people:0.020699768315999158 and:0.018744331323692184 They:0.01787651935254228 to:0.0161477966883656 men:0.013813267695000814 I:0.012886804576872937 it:0.011061583862819595 We:0.007791983508136106 will:0.007784396096995563 States:0.006005408116126024 :0.0059652884988266415 :0.41432948664743907 +in:0.34036406677295994 of:0.3299898109639371 In:0.06363002285763207 to:0.060437648567347214 for:0.02670428746983735 on:0.024827914226691138 by:0.01684793700773097 from:0.01665853883949201 that:0.015243260535307128 and:0.015092015403862746 throughout:0.009892663080831171 into:0.00863123308902521 with:0.007923900850581977 over:0.007517147712563717 through:0.006084626393185748 upon:0.005398566940830588 iu:0.004623806252377584 which:0.004513376380976114 as:0.004476883975746238 :0.030142292679084005 +the:0.4071374189315913 and:0.06449181461132415 of:0.02892866618288876 in:0.028670005984162618 The:0.02603617389223924 tho:0.024993820467459137 a:0.023579040051412606 to:0.01755553213771617 on:0.014626070241060114 by:0.013447843485786471 or:0.012794166593089693 tbe:0.012024509152999897 :0.010353482361299817 that:0.009291482237329618 In:0.007938246807075932 from:0.007526799010378873 other:0.007469196869028889 all:0.006409533041696086 for:0.00626887758057738 :0.26945732036088327 +of:0.1809084656355029 to:0.09789221654786591 for:0.09198921907510457 as:0.07212642377257429 at:0.058669930042224025 and:0.05093535312548504 by:0.048134420257123875 with:0.04162394574692576 in:0.03837915088672393 that:0.02836914779834628 is:0.024548367599335517 such:0.02073481753341666 was:0.017995260235388572 from:0.01497891926387542 cents:0.01476279883234 than:0.013827458240255714 be:0.012582197136696765 have:0.0109007281793792 made:0.010545395037440331 :0.14909578505399523 +it:0.15107299722204193 he:0.10613555162245888 It:0.10197348089823066 I:0.062378969118423284 which:0.058252828146999926 and:0.04069828913773346 there:0.04067066070721714 He:0.03375613069151463 that:0.027571560298980984 she:0.02451563840060431 who:0.02230043149554207 1:0.01449399144543077 bill:0.013909115434405544 There:0.012541356501523068 mortgage:0.01247167182863618 as:0.01221561962745257 what:0.011848262425195601 this:0.010550937984978644 She:0.010254046073671941 :0.2313884609389584 +the:0.19023218337641545 and:0.061306847311945085 of:0.05034178612442686 a:0.04252673361867284 The:0.022524697443713354 or:0.022224515302540333 in:0.021683838020621776 to:0.020216390629753864 that:0.018144534806919434 I:0.01795444524984795 have:0.017144605844586745 Mr.:0.016690834204782 had:0.015123027993727212 will:0.013310396144103417 he:0.013271299239460466 this:0.01288684461464895 has:0.01248918477270827 as:0.012084278038746277 his:0.012031636656603227 :0.4068119206057765 +have:0.30825979017372884 has:0.23335574802959289 had:0.21175046658197516 not:0.030988266201518243 having:0.02927012901615229 bad:0.014171973849594698 ever:0.013086879418728829 never:0.01300501411300987 havo:0.009928021099038665 lias:0.009747205787221536 haa:0.00770115724572842 baa:0.007542997033275567 always:0.006964193192067684 already:0.006843537117543435 yet:0.006280305743339498 long:0.005835741283387316 since:0.003932840742479124 hare:0.003476596932273983 and:0.0033496242557260235 :0.07350951218361794 +it:0.24326368841556942 It:0.23510303615218886 there:0.0866434783507223 There:0.05412525018266012 which:0.05228632636038423 that:0.03090082695392343 he:0.030414332820084263 This:0.028017231012340542 and:0.022656214526699508 this:0.021100152531453777 He:0.013657794479326352 who:0.01135383451827119 as:0.009752197005943358 but:0.007469290599119895 what:0.006558358447253879 she:0.00547955159505085 "It:0.005135318792492239 work:0.004276266762387579 be:0.00404285366690522 :0.12676399682722297 +the:0.21422998444122646 of:0.1248275280967018 and:0.06106186190344572 to:0.05986469951475575 in:0.046268092447260024 a:0.04194768032490948 Mr.:0.027121280142857557 for:0.022712653337994042 The:0.020974676156257924 or:0.01949806453945007 that:0.01806017831300908 with:0.017899596231436592 tho:0.01569240500701876 an:0.015309682613539072 by:0.01401745578665843 their:0.011306801741170363 from:0.011036799820904362 In:0.010289272076249871 his:0.009568859231988294 :0.23731242827316634 +to:0.2166405903484115 not:0.12419644816777128 I:0.0987150409226104 and:0.07125477092954642 will:0.06356687161141304 they:0.05823776701314874 would:0.038813362225043904 we:0.03782557342027341 could:0.03183441537821608 who:0.028146308215694648 you:0.022565036560195966 was:0.021003653335820285 may:0.020305891037310304 or:0.02003536697557996 he:0.017776948759446107 be:0.01698597406490595 a:0.016928213106034512 can:0.013143822242753832 never:0.013002698854947842 :0.06802124683087582 +the:0.11919516938815296 of:0.07230453158552728 and:0.05781056740443249 a:0.043018564803886335 to:0.031305092790907506 in:0.020848713353460488 at:0.014270110001066288 .:0.012526810245749479 :0.012413283442322082 for:0.011719122709941797 by:0.010808400946589808 or:0.010404172990115616 The:0.01003576004804544 with:0.009811868184449042 tho:0.009295902015355835 was:0.008924239095331684 that:0.008672304223433876 is:0.0085591147338948 be:0.008335143826716943 :0.5187411282106204 +thence:0.10292751896679977 the:0.09611118061560908 and:0.04049177549674145 of:0.020568117537081803 3:0.019064191430631105 two:0.017108289086025453 10:0.012130985553214308 12:0.011394680979101646 in:0.010542511056233984 7:0.009526699040395135 to:0.00949225154661058 4:0.008704962100110814 three:0.008693986008791886 9:0.008351870756540399 or:0.0076167859092775275 8:0.007140821951464878 :0.006094288337533641 tho:0.005882956520097734 four:0.005801316039596443 :0.5913548110681424 +and:0.06837306697199746 ready:0.03196615322230866 candidate:0.030017811507074457 enough:0.028314808672457756 reason:0.022576988142794564 do:0.02171903053671358 necessary:0.021064453071928443 used:0.0199986332503477 demand:0.01915242023572908 but:0.018717988983858642 place:0.018633506148460894 work:0.016792365342008703 him:0.015600281894064044 prepared:0.015333954375642193 vote:0.0150757225805808 man:0.014927649158897096 possible:0.014769887746797036 money:0.013432261080348302 care:0.013175582626140044 :0.5793574344518505 +it:0.12291356726271781 he:0.10766523848787593 It:0.08126222867785683 which:0.05815091424687329 I:0.054909855356083816 and:0.04607290301292405 who:0.036234513317437905 He:0.03284977251390459 that:0.0307500349566012 she:0.02807960748770171 there:0.017106531141060498 as:0.011444714915749334 She:0.009915288061780691 ho:0.009311744482256256 what:0.009144898696231517 1:0.008083327589627603 This:0.007923029238788926 lie:0.007752420127589498 man:0.007654383581502722 :0.3117750268454358 +the:0.4170752492449142 this:0.218801067389513 said:0.06727867574531333 a:0.06474183833190691 tho:0.02067438679955387 that:0.016566494358197327 and:0.014566379100849782 our:0.01454910461724326 in:0.012023080825738735 any:0.010972048961225061 from:0.010910182461177165 The:0.010009760976532169 tbe:0.009370816624797872 of:0.008457615460598825 York:0.008375997549117848 other:0.0075490163953814875 great:0.007424034872472799 or:0.007224197457145937 every:0.006494490130104383 :0.06593556269821607 +that:0.2679623925605681 and:0.17473875447269513 but:0.057929987358311716 which:0.037190018528838846 where:0.03706024247499286 if:0.03508139552128882 as:0.029370443353037907 But:0.026769814579767445 If:0.026708793281814542 when:0.023449076222347758 because:0.01572699350916326 for:0.011948092023196523 Then:0.011803463083392453 time:0.010422188943700068 That:0.009894177606575497 or:0.009603879748360232 And:0.00918441433442016 while:0.009067610354157665 then:0.008929273838106782 :0.18615898820526422 +he:0.14210012535953695 it:0.09818276948604898 which:0.07539120840013094 It:0.07200828967559347 who:0.0618626998002628 that:0.05926886172782046 and:0.057191395152247984 He:0.05276782787584138 she:0.023594688366297762 one:0.01995342904218675 what:0.012895672746638057 This:0.012479946339809643 man:0.011965019441061885 ho:0.010770823760163604 She:0.00962845940413008 this:0.009299253014731718 lie:0.008837759946381906 time:0.008712602532351807 company:0.008543844844604714 :0.2435453230841591 +I:0.7109596463544677 1:0.0856121902880481 "I:0.04864399025036574 and:0.02820841130425746 the:0.010716605393286735 which:0.004882806259112296 have:0.0044924752418138494 he:0.004352998203301826 “I:0.004105855456289104 that:0.003908138070521171 who:0.0035223780068589705 we:0.003463460311171445 all:0.0032124217974912076 'I:0.0031518581478166847 you:0.0027585791653258356 "1:0.0026011933260793934 to:0.002240758042310359 had:0.002067866273600566 i:0.0017638227459549685 :0.06833454536192651 +and:0.03868242960999506 as:0.031124813427855922 went:0.02352509775927722 him:0.02196555539050794 them:0.018760608639018784 up:0.017985449426794205 is:0.017894175620344187 go:0.017174904667157563 able:0.016756848979943888 going:0.014481672239490295 it:0.014128375989346808 was:0.013277058274565138 time:0.013249953793837373 not:0.012469887553778763 began:0.012465717758716884 way:0.012105610030480113 back:0.012090864562211581 right:0.011941707822828511 amounted:0.011564315359310868 :0.667354953094539 +the:0.21629847505411537 of:0.09055746839860923 a:0.08255825331310569 an:0.05625473647490037 and:0.04386725798986219 very:0.032902631280988255 his:0.03077805584818375 their:0.0290342972800971 more:0.02453685459076116 in:0.022972735958785285 by:0.021249641135667446 to:0.019002625814689558 most:0.01842962133414766 was:0.018149641988286638 her:0.015500001963267876 as:0.014541411223312494 its:0.013086583955686912 this:0.010520577227960558 with:0.010208514985862088 :0.22855061418171035 +the:0.3907315260374417 an:0.3285530712589595 The:0.034078930256212524 of:0.02981492833502598 a:0.02859246176537238 tho:0.020216600877994036 An:0.019525077742237263 any:0.017720915097553653 and:0.014731061804632037 very:0.014555984264584093 no:0.014324643121269546 every:0.012345549064603922 this:0.012129043143394294 that:0.01180837692189691 tbe:0.008242005430046072 in:0.007559989751578747 on:0.007478913925058874 such:0.00491891245513082 by:0.004385816049821469 :0.017286192697186176 +and:0.09631219532671687 was:0.03513566928966104 held:0.02987715681559008 Beginning:0.024332169066967536 is:0.023122938489353394 look:0.022074108253454683 arrived:0.021820518428646088 that:0.021226918252779888 interest:0.02006974641058921 thereon:0.01971421054267379 made:0.019401567074562896 are:0.019271449916013022 up:0.01806602795372081 him:0.01678700722897829 be:0.016375054451444982 but:0.01586396852970274 out:0.015503094089883073 or:0.013721423267833084 not:0.012734170433403743 :0.5375906061780248 +and:0.06736417549182812 make:0.05931026406389651 of:0.0561805713619792 put:0.05005322522433287 take:0.048660205109404595 to:0.04537807674907916 with:0.04131740205561583 in:0.04078263462454527 that:0.03815698744706525 do:0.03435407120539298 give:0.034110009656691864 on:0.03091945371297196 for:0.028924021952326396 as:0.028563326652159857 keep:0.023214878246169086 bring:0.022706980069868054 find:0.02263532787502731 get:0.02250884987233568 took:0.021596937616287077 :0.282262601013023 +a:0.2924789949432643 the:0.21005616593569834 of:0.05762023581063783 on:0.03915715675906062 and:0.036399084972037775 to:0.028199624141124733 The:0.021003505796391344 tho:0.0196148849050129 A:0.019104477115606578 other:0.017956407892892535 or:0.016192979615543224 all:0.015141818587824445 his:0.014547805447106339 such:0.013472951957731932 this:0.011435855789298349 most:0.011207517439817119 some:0.008969116748566455 with:0.008441767322802813 last:0.008266822718176624 :0.14973282610140573 +of:0.2311851040627628 in:0.10634929241160951 a:0.10152316591943975 and:0.0628199293453862 the:0.06199350575090367 for:0.056163170732367734 by:0.05295628168807441 with:0.05189104510520096 to:0.038599383492022285 In:0.023399595143854666 that:0.02209398574049454 after:0.020688653367149482 as:0.01965513586515645 his:0.016303595596856575 or:0.014396525715475712 from:0.013566099250528579 one:0.012401329811562868 on:0.012214014485209234 this:0.011555623129612246 :0.06924456338633234 +I:0.1584848931437745 is:0.10535217702439906 was:0.10495098585205541 he:0.10066101069807598 and:0.0607173684708617 He:0.05189298882068401 be:0.04861669393138156 the:0.04851566440917016 we:0.03833705139645697 are:0.024157155821212507 not:0.021478103016270126 We:0.02050978041307974 Is:0.018546775460311426 1:0.01839504665399748 they:0.017490382894008023 who:0.016694135938966282 had:0.016532775350359387 she:0.015871944414279943 a:0.015772002941463827 :0.09602306334919189 +the:0.07308391748213149 and:0.0650236830030406 of:0.06160769942055397 to:0.052268247186185425 be:0.047076308054616864 a:0.0372396837426395 in:0.024252681833945605 was:0.022488248066258144 is:0.02167905136294673 for:0.02153860696418792 are:0.020623701936193742 or:0.01929925567751662 re-:0.01871171112926931 been:0.01861238611348457 pro-:0.01601091340941376 his:0.013531807626344868 not:0.013315154707748283 were:0.013106637980199716 he:0.012779513704430508 :0.42675079059889237 +the:0.3828895647198562 a:0.09760334978826145 of:0.06451256267608975 and:0.05752867007540329 an:0.05274765200223376 The:0.04803152082202782 tho:0.023585997793483672 this:0.019905242139790596 no:0.015044012682286022 in:0.013628399734047808 his:0.012474832869376971 their:0.012443544233291734 our:0.010949556578715979 is:0.010736196414252648 its:0.008381666804930223 any:0.00804460025984505 or:0.007275530164043752 that:0.007214152778512084 to:0.007066898712040685 :0.13893604875151053 +and:0.07558940021936399 recorded:0.030196237618668006 was:0.028917161578042846 made:0.027969746247669736 that:0.027730098932509103 o'clock:0.025060522019555328 up:0.023026552239529506 is:0.020398277211376416 found:0.02003101797656537 placed:0.017482208134164214 out:0.016937164562539058 place:0.016819459500107596 interest:0.016629321966808677 him:0.016002796715253755 situated:0.01573420479581609 it:0.015128305982428461 them:0.014715943643665314 part:0.014646613000297721 interested:0.014450471929902294 :0.5615344957257364 +that:0.1496378325195379 and:0.08926322833705111 which:0.07513205657305747 as:0.06340075958684385 when:0.04979426928861483 but:0.0369683906214576 what:0.024843637472817592 where:0.02194909382445401 said:0.021251762740586017 time:0.019477041435805226 I:0.017157135836398826 if:0.01582199400788467 to:0.015768788570262038 before:0.01230836078333272 whom:0.011613706452414982 Then:0.011435916445684209 it:0.011173471522135048 while:0.011090504494119682 then:0.010162770905511471 :0.33074927858203074 +made:0.06284904651064475 and:0.04730902026189018 it:0.041655489248682794 given:0.03014995070369553 is:0.02892322234191617 do:0.02858328038952983 look:0.027084949656642602 looked:0.026259630898820958 him:0.024734768219539023 place:0.02395561178844518 out:0.022623503959038907 that:0.01998336228146709 was:0.019935957080121112 held:0.01978913302295346 them:0.019026778552607055 there:0.01850940374563806 ing:0.016041812333239765 feet:0.015039423766178476 done:0.013804660247776648 :0.4927409949911724 +a:0.3521966201200109 three:0.07636986623788822 hundred:0.06724568673737313 five:0.05972557703339183 two:0.05966360578586745 one:0.05632037086963461 ten:0.04453263920039074 half:0.04356713460522936 four:0.03519642665093449 six:0.03262383491558698 twenty:0.025077258797283692 fifty:0.01877048536459452 thirty:0.017429835340608973 eight:0.016521601289176752 forty:0.015397074743158804 seven:0.015271366081167664 twelve:0.010934354286618929 several:0.010488893407297945 many:0.008620061914328424 :0.033047306619456575 +part:0.5093030087168242 survey:0.045023579320487665 one:0.023796306587948853 and:0.012864738750450064 that:0.010003780242963384 holder:0.008423712202804095 portion:0.008267315780835357 plat:0.007696453661291543 the:0.005715927478306713 parts:0.0056653131532569175 land:0.005582211036168343 side:0.0054959288255690625 acres:0.00477688624673547 members:0.004666927843338693 be:0.004625071034307209 payment:0.0045785630681002025 court:0.004359929836465165 value:0.004270238219489781 amount:0.0036732380388388246 :0.32021086995581843 +part:0.030587523327708657 line:0.029893643309854764 amount:0.02143887315332292 District:0.020413105057467545 side:0.0175573261135238 piece:0.01659864038015794 county:0.015581612345541226 sale:0.013518136593135287 payment:0.012992447405641571 years:0.011889521380704518 cost:0.009276378763404427 time:0.009272956441664305 one:0.009005846800874037 survey:0.008710388023716036 the:0.008458496002215949 acres:0.008353735248581727 tion:0.008279478294230508 to:0.00814785674281503 city:0.008085220113387337 :0.7309388145020524 +day:0.03077608526248168 number:0.02806322417524781 State:0.022731601801707857 sum:0.022123424455339116 and:0.021670527190742715 out:0.0212830926319943 case:0.01895096994804893 part:0.01730135712689558 Board:0.017255236707313115 tion:0.016694039509788892 act:0.015865515175686507 state:0.0156756755997103 city:0.015310220911718162 people:0.01351496995357294 amount:0.013028612188310482 county:0.011347556797060877 name:0.01072656380723015 sale:0.01066803652111784 board:0.010248656531761406 :0.6657646337042713 +the:0.12814658278183674 of:0.09293463665150264 and:0.07638836071020537 a:0.06285459392690387 to:0.04707223882316762 in:0.02783274214003914 with:0.02084987171571582 by:0.016633152122300578 for:0.01636625900706149 at:0.015659185795313894 his:0.015416713671135023 Mr.:0.014937689065754212 .:0.012445505137290359 from:0.012358336587682763 tho:0.01215895214968578 is:0.011917256390077876 an:0.011562720584386016 their:0.011497207021739536 The:0.011187300681236507 :0.38078069503696477 +as:0.13923929012446348 and:0.12640623994661804 of:0.11098905578596555 to:0.08546048152844611 for:0.07586689212374632 that:0.04665296416045411 with:0.028417716215333778 in:0.020930089240807904 be:0.018315910732906514 by:0.01651159741829154 upon:0.015862508923200645 than:0.015044247545928454 from:0.013389227913175506 on:0.01241039819889126 such:0.012032442587696849 it:0.011712832931049754 at:0.011425297391765616 or:0.011245556931968942 is:0.010938914865087569 :0.21614833543420206 +the:0.49995483292993265 a:0.25473121266737686 The:0.03987682332091707 and:0.027432655418884868 of:0.02326903337415975 in:0.021619204694719642 tho:0.021102779664284196 for:0.016952887375827404 our:0.012462128112464055 his:0.011331524756618671 their:0.00690376261109968 tbe:0.0065147351223457045 A:0.0063898403624216655 with:0.005315405052968469 its:0.005131708349250456 In:0.004890836799493671 no:0.004482294669054331 great:0.004196903039214077 this:0.003926807181410426 :0.02251462449755636 +the:0.6490485145166329 a:0.07820426243359234 The:0.041019520023843625 high:0.03101584801801901 tho:0.028048056009734208 low:0.02649429863633093 tbe:0.013950641005592096 and:0.01221006765878618 average:0.010257071984706422 purchase:0.009825625818757552 regular:0.009747777512713073 highest:0.008914426991119502 any:0.006468659025192231 first:0.005809699313474858 in:0.005467438736922699 minimum:0.0048464883982530915 full:0.004675834369445482 on:0.004648991674688221 that:0.004614379120154599 :0.043732398752040984 +of:0.21945694894071707 the:0.13515579238569278 all:0.06361795663255367 and:0.043130298755067596 for:0.042764804320691345 their:0.04228030605926619 many:0.04188022667541599 such:0.034155126955333875 with:0.031562765389760584 our:0.030247358144052536 these:0.027628763563823978 great:0.022717814157445695 its:0.01956330538926713 in:0.016517954512335054 other:0.015841193577194566 a:0.015310997267355035 said:0.014949686622382805 both:0.014354293009143052 or:0.013521450036675731 :0.1543429576058253 +the:0.16238919360973372 of:0.0692060985766869 and:0.06020018405998538 to:0.05909310288938795 for:0.05004464169669393 a:0.04495735934526538 in:0.04386881276193706 or:0.017655306923874833 that:0.01726017252966661 :0.01280429739620749 In:0.01192237433995861 The:0.011786731721204055 their:0.010932559828252792 his:0.010297658490955371 on:0.010240629240688392 as:0.010019378540202293 which:0.009592893111764348 by:0.009113571807892198 with:0.008786035349774996 :0.36882899777986766 +the:0.16807735899698817 of:0.10541662057906837 and:0.05138367848570702 a:0.04141865232648221 to:0.0385989743764065 in:0.026264864977736738 was:0.019530675665220657 his:0.018900421021236905 be:0.017373825006196972 their:0.015767721170721456 for:0.01557246589796783 with:0.014071419046630446 is:0.012922913111931644 at:0.012690452250034052 are:0.010702713108721902 .:0.010158075558988393 Mr.:0.009672788574483367 tho:0.009612591781990074 were:0.009549306361446321 :0.391314481702041 +one:0.1028303141280697 part:0.05963429477052991 out:0.04766456937681193 some:0.031418679026461914 members:0.030764490253327767 side:0.029940657362655835 portion:0.022063658796890564 office:0.020457735219956013 member:0.019726706386316174 end:0.019666887540649894 tion:0.018667441728710307 parts:0.016814747270460957 people:0.014112771422418794 all:0.014072739582212475 any:0.013183573287639892 One:0.013083578354183906 that:0.013024335602903442 account:0.012482348155001894 many:0.012077825070275192 :0.48731264666452345 +the:0.5038064672380184 State:0.04519068706976017 The:0.037404917682815265 Navy:0.035408089098517066 War:0.03149603342707046 Treasury:0.03079324965828392 Fire:0.026072139679826762 tho:0.024999343108466583 a:0.01228215078900698 com-:0.01163952252250703 National:0.010593562912214789 and:0.010337360522780423 tbe:0.010068359737498976 Interior:0.008487899801298977 of:0.007343224736724541 County:0.005245884131882196 City:0.004852633204149496 Office:0.004531845683444032 two:0.004387127359795271 :0.17405950163593867 +of:0.3016963475355822 and:0.11880312041784782 that:0.09912438804160191 all:0.05697251521619168 by:0.04812350986945087 to:0.035238498128778314 for:0.03266060880352848 with:0.028849518358643918 as:0.023499477179281157 in:0.022626103106095415 but:0.01828749453319047 when:0.018054794814683545 from:0.014603885843578886 which:0.014345656754719013 on:0.01339272586291633 among:0.012842475917022499 where:0.00894959682158892 than:0.008036679109335273 upon:0.007330899937654624 :0.11556170374830865 +the:0.30948896221648914 of:0.16133669440723067 in:0.08704308445120532 and:0.05825566843200117 The:0.05483760089888139 for:0.04367387956065506 his:0.03173960606036018 or:0.025492145575396412 our:0.02289943296334052 their:0.021147785415555415 to:0.02011159573654849 a:0.016593230451101972 In:0.015287545047632429 tho:0.014010616302602905 with:0.009914555190796629 your:0.009658898101578552 my:0.00861298255406506 from:0.008281208704646485 her:0.00753225283430782 :0.07308225509560437 +went:0.0848152552258555 put:0.06830379225498473 go:0.06323770187112335 came:0.05508503229630986 taken:0.04528677593123531 come:0.03699464669498801 brought:0.03350657807455325 enter:0.03264089705533636 entered:0.029980668500718264 going:0.019388693826619976 them:0.01930638589535753 get:0.019095959696586326 got:0.019059650444046342 divided:0.01879409209105281 carried:0.017124483692930466 it:0.01709996513323454 back:0.01650449543384658 out:0.01582185493661327 and:0.015146542777051217 :0.3718065281675563 +of:0.1245611494378928 the:0.07689113540397219 and:0.05456235186952667 to:0.053532693252977645 on:0.03127598069766126 in:0.02212284427579852 for:0.018333820529466374 at:0.016662071308783166 :0.013355587950817501 was:0.011688595788509542 or:0.011078314856837372 his:0.010582610234380034 be:0.010002005721208164 with:0.009674863577811412 as:0.009522410896153712 are:0.009440245579309572 that:0.009159827047763865 by:0.00912215412942543 a:0.00896685987210908 :0.4884644775695957 +of:0.17196653136057072 by:0.06247861547409624 to:0.04848917274097016 for:0.04535808537817469 and:0.033759788866320896 .:0.03023196340485477 with:0.027380339054247464 :0.018329986352308484 from:0.016934877862095278 in:0.01688405705417965 A.:0.016350576274351578 against:0.014294234854561048 Mrs.:0.01360308630086742 on:0.011152966573517536 before:0.010020761860581096 at:0.009005518668813231 as:0.00893789806000463 about:0.007515648749841967 No.:0.005987197024652438 :0.43031869408499074 +as:0.060109351178490714 up:0.05110237934797358 and:0.04561455756415602 came:0.03644399696068254 come:0.03349127777991087 it:0.02768684646833888 back:0.021626708654234196 known:0.021306592657406698 given:0.02127676984627473 him:0.020333703044638878 sent:0.019965836522342857 went:0.019877815074567203 is:0.01968808171820339 was:0.01926100383136597 made:0.019012511192194295 brought:0.017758888545085394 presented:0.016981371157615877 down:0.014819143623956959 on:0.014667104810128494 :0.4979760600224325 +number:0.07059400229150727 amount:0.05772384235082274 hundreds:0.046919751226771604 thousands:0.0386647075498655 matter:0.03836545708194036 kind:0.031928553301671686 sort:0.03109685956523082 class:0.024193626453778698 plenty:0.023294992935038877 out:0.022963049598432903 line:0.022385265951746676 that:0.02072318592881219 question:0.018895094517576316 one:0.018684022446093147 piece:0.01692947923188958 course:0.014253907039849857 man:0.013680080498003958 part:0.013507376289972634 place:0.013246323220506218 :0.46095042252048896 +the:0.10854403712427113 of:0.09012879878524943 and:0.06154921693337788 to:0.041961177905294196 be-:0.03547854116398036 was:0.027352684057478288 is:0.024147722494464684 a:0.02228190306052959 in:0.020178081397773127 be:0.018664135778698396 :0.015994231264867785 for:0.014704415942631477 are:0.014643607497154194 said:0.014253106610380381 that:0.012596871663764386 were:0.012546636922684241 with:0.012086556894253569 -:0.011807208934908248 good:0.011748206927050748 :0.42833285864118786 +of:0.2530636295981358 to:0.09550725849927359 in:0.0730921241980191 and:0.06656526223520172 that:0.05948177722656821 with:0.05065774161784235 for:0.05001668585205861 by:0.04202132189764549 on:0.03864020800419357 at:0.029677079297971105 from:0.02829478898646762 In:0.017957317847341683 upon:0.01647682615189205 is:0.014852764367320918 under:0.01421697237396083 as:0.014107821333787489 which:0.013332862264647716 all:0.013002157581003555 into:0.009500226707304429 :0.09853517395936418 +the:0.198070116052144 of:0.09483427019839566 a:0.06626656302283482 and:0.055277969368470396 to:0.04084368831932102 in:0.0189316538150352 with:0.01741309282310596 The:0.01620918327432233 tho:0.012984540800639342 :0.012597932496276072 for:0.012064133046535197 or:0.011647963706080487 by:0.011069499841358648 that:0.010481523143074501 at:0.009387238981277173 his:0.009169649613238216 an:0.009087213905111271 Mr.:0.008550755349481761 their:0.007295623114253345 :0.3768173891290446 +to:0.39432376152550214 will:0.11135915295225002 would:0.08996143100326406 not:0.07584329559233914 may:0.05714423637453483 shall:0.04456457782733928 should:0.04234537175897753 can:0.03882991901257865 must:0.02349070088401136 could:0.021663699310374134 cannot:0.020506865600620375 there:0.012645572391941135 might:0.008615790322664858 and:0.007326408413914596 never:0.0063799169787463385 or:0.005278424530996984 that:0.004287538468308705 only:0.0032370149140656837 To:0.0027062500539724197 :0.02849007208359773 +of:0.18666674534938016 in:0.18442962601274843 the:0.10642881230370513 In:0.04831015075749856 for:0.03932131388775242 and:0.032644559884287744 his:0.02692540961500731 a:0.02687649076111837 to:0.021420753133493436 public:0.02134689168097607 their:0.0201324006552161 into:0.01871681904446131 by:0.01861751662755345 with:0.017794844410510834 or:0.017752663623795236 this:0.013606059921550496 such:0.01312434281733798 that:0.012962252392040675 other:0.012800690720661666 :0.15912165640090464 +that:0.13889457070998584 and:0.11187935010220398 when:0.07188004560341375 if:0.06583214884956239 which:0.055111731095098176 as:0.05490188574982697 but:0.03724208394557216 When:0.030084653529336675 If:0.02939013930397619 what:0.021654816154718058 where:0.0158458660537881 whom:0.015014925462324476 time:0.013426080569317676 :0.012883720579949355 But:0.010871692839482121 me.:0.010714285323818176 because:0.01063132356043874 while:0.009816009289874594 so:0.009020357912544092 :0.27390431336476845 +W.:0.11718942011432677 Mrs.:0.0999933685699966 J.:0.08618039011887364 William:0.06629935357076401 .:0.058005065874359024 John:0.05559075876425581 C.:0.03982815277670961 James:0.03708302477981322 George:0.034327703956994166 Mr.:0.0334207427387495 H.:0.032157774307943886 Charles:0.024803512706137856 E.:0.024667530644246895 Miss:0.022550411537857053 A.:0.020825708405705884 F.:0.02022151980826363 M.:0.02003634179196543 Joseph:0.017654237377208937 R.:0.01751250326924924 :0.17065247888657883 +the:0.3460295966228229 of:0.13784415918869714 and:0.08392624579276531 The:0.03717972030630152 said:0.027754354155595403 in:0.027536313681158883 tho:0.0246296668674889 for:0.024624001219244285 by:0.02184428216612397 that:0.0202664829784568 a:0.019227954766239168 to:0.018430946164378563 with:0.01674164419818761 this:0.014263414427466413 his:0.013928243140523692 their:0.01274063001642629 other:0.012312857117717766 In:0.012100434490067646 or:0.012042837651066325 :0.11557621504927146 +a:0.23169341183882602 the:0.2021692581508581 his:0.17104973953082198 my:0.04356967353342437 their:0.036592069468831846 in:0.028068926401360553 your:0.024185362789372708 The:0.01998803432749974 her:0.01803726751788149 our:0.016763942162356372 and:0.016135212390461732 from:0.015529979468460162 tho:0.015437451096156272 one:0.014471103006256592 of:0.013381373888327193 bis:0.010409670504586063 other:0.010232936578305858 for:0.009434905632635134 old:0.00885798390658917 :0.09299169780698861 +of:0.1386357877019956 in:0.0885551351780506 to:0.07337227612291958 for:0.06827614154484454 and:0.05396540102477977 with:0.04842082691053012 as:0.04320066244921 that:0.0348293249620635 at:0.034026062735233446 by:0.02918471569184722 on:0.028343711370930492 was:0.02615800343980557 is:0.023348448268187685 In:0.022359722918718534 from:0.021554476636812724 be:0.014579070748555474 but:0.014154250869030471 after:0.013464838736446253 like:0.013419585436816123 :0.2091515572532223 +a:0.3884469936118696 the:0.2516295347949699 large:0.1172598166199743 A:0.04263538507407082 The:0.038751151922176284 great:0.015784669032137842 total:0.012450029176985985 and:0.009906332100247798 tho:0.008795594021867324 whole:0.008551498061751726 any:0.00830995036862049 considerable:0.008078460889881919 this:0.008064962747566476 sufficient:0.00759398209225476 largo:0.007553634725424092 goodly:0.006793601890766698 largest:0.005417677222877226 small:0.005326727807158831 greatest:0.005260218271373045 :0.04238977956802493 +of:0.09958692149611086 to:0.08141938860333849 the:0.07341983184995314 at:0.06345499493104663 and:0.05449418257515674 in:0.04253599669264902 for:0.03492509633036068 that:0.026668736358188224 a:0.022360492057163513 by:0.01851528285982083 was:0.016325248177797902 from:0.016206120559061916 with:0.01337286371246242 in-:0.013071380965673425 on:0.012717020061535593 :0.012665448081262534 be:0.012475302587585932 In:0.012129585933983339 his:0.01185416668992716 :0.3608019394769217 +a:0.29323251544188267 the:0.17032322646584044 this:0.08095454879432543 no:0.07652388580640307 any:0.054956168767601586 their:0.03656419155106062 his:0.03602233292870666 same:0.024119887701798206 every:0.021477070690582904 in:0.02011644756843419 great:0.01807500141890652 its:0.017598997218063274 that:0.017159050401759534 of:0.016335730882049492 or:0.015045443286196305 one:0.013784030108096477 other:0.013154252077873109 present:0.012946265460031492 and:0.012324870197551385 :0.04828608323283662 +it:0.3008193295854075 It:0.239327190655164 there:0.051274176415980775 which:0.044499588862683355 he:0.04276462336100236 that:0.0349321843466226 and:0.03016013897494671 This:0.019688328207510153 who:0.019250361637614784 what:0.018816151157477944 He:0.016697428729390503 this:0.01451326903886063 There:0.014153277916744481 she:0.01026209169088679 work:0.007310157172476393 but:0.006421163897213597 man:0.0060497053192437745 She:0.0048027989663286365 one:0.004689721558945711 :0.11256831250549927 +man:0.12423793828039568 one:0.0570578411545404 and:0.05026030715833204 those:0.050086532259839625 men:0.03684323003131193 person:0.03618728992407981 woman:0.02495801905466428 all:0.019410807292980392 people:0.012821662518036929 persons:0.012618030755432563 man,:0.011038218736542406 girl:0.01031960025710095 gentleman:0.006638752059877602 Those:0.006465093596141084 farmer:0.00607161285980784 others:0.00603067178102228 he:0.005864737290369572 of:0.005290588156863596 but:0.005257778806612209 :0.5115412880260488 +to:0.7465987504066142 will:0.05581875528997533 would:0.02305845930574499 and:0.018207547327611612 can:0.015153310527067351 not:0.014593083390489816 should:0.0126929034229651 they:0.008775845227204442 who:0.008523360076964838 I:0.0069851494923550495 could:0.0065515354655139016 we:0.006210596440029219 To:0.006045122783501466 may:0.005842297223270755 that:0.005218470125658676 must:0.005213356853968303 you:0.0045492824877379845 shall:0.004517290348710681 or:0.004119246319830506 :0.040325637484785834 +that:0.26148270658366773 and:0.09876345218398215 which:0.09439756610291504 when:0.04910829535570802 as:0.04703966659705172 but:0.04170738046061683 if:0.03937396522108731 where:0.03609877203548356 what:0.024162455487967874 If:0.021889398027126424 said:0.021541845925337273 time:0.016388407034964594 because:0.016212775627569887 whom:0.015814673717230394 until:0.01176501655727582 then:0.00979867055384343 while:0.009743311343714443 says:0.008753115940097075 though:0.008632390248775561 :0.16632613499558485 +and:0.1077749792836058 the:0.06778127820510269 of:0.0512355041064562 to:0.04057634236092281 that:0.03309449772045534 which:0.032184713121535445 in:0.02880706726921465 a:0.02476725794496234 or:0.02254924190231092 for:0.017556418657121785 any:0.015639295771894934 he:0.015141883170409012 said:0.014645315422217572 be:0.014551715827369548 I:0.014194895173058466 as:0.013317622499239594 it:0.011573824401991058 :0.011573113142989604 no:0.011243670362708203 :0.4507913636564341 +in:0.15100824217228018 of:0.1310871033736233 to:0.08496038108110954 for:0.06466532166362847 with:0.05267929540162433 from:0.051306308400469555 by:0.047024534178240096 at:0.035195713212467665 In:0.03439182638478906 and:0.02431199995673231 upon:0.023533533774627156 on:0.020098146115786336 under:0.01584401246920626 after:0.015579405060092527 through:0.015044427902707888 that:0.00882173151047411 over:0.006921586031279294 during:0.006696120942967359 into:0.005883487407324257 :0.20394682296057032 +and:0.20573446095000725 that:0.16329856873252865 which:0.04850059731570192 but:0.041663446011551725 to:0.023694487065083935 as:0.022609578005359166 And:0.01852226401167798 for:0.018271951804340755 of:0.013201084882401497 or:0.012931183692090377 But:0.011800094212717197 ;:0.010854196529182996 and,:0.010520289449233292 when:0.009688694467451329 it:0.009307509072091243 the:0.008641836812226678 if:0.008337688727220365 than:0.008302763602401718 there:0.007559554675938644 :0.3455597499807933 +the:0.14261804753942198 of:0.11991385925001025 and:0.11598837764250913 a:0.03254691195097449 for:0.021781738371036544 to:0.020400779807327584 in:0.01801657146835825 from:0.01736373045790065 :0.01670458931036602 on:0.014767280048542624 at:0.011484035988852094 with:0.011224020160381099 Mr.:0.010872524870036801 tho:0.010802295965585584 The:0.009661142144211333 that:0.008716942893303267 his:0.008392126510429084 by:0.007859437258694233 Mrs.:0.007795937968345119 :0.39208965039371385 +the:0.4262264991671708 a:0.18074776721528168 of:0.053188063955176904 The:0.04328816270101575 his:0.029398697700653228 and:0.02492675052642307 its:0.02458634214802535 tho:0.02148113928985787 to:0.02032084370702408 their:0.01964398539021044 any:0.018185211709580172 in:0.01750907299574999 all:0.012441803386599901 by:0.012280966507641544 no:0.012153525692272613 or:0.011816827571891864 such:0.0107423293673027 our:0.008580029656521996 most:0.008568940038274285 :0.04291304127332577 +and:0.21843952052027027 be:0.18913875541907163 was:0.11268685285707096 been:0.0457370209522182 he:0.04220822690238757 were:0.04147210967450421 is:0.03807832127041199 are:0.02596134694886106 He:0.011136589707225385 who:0.009143295929186165 being:0.008379411092860665 bo:0.008010188816882341 then:0.007785928468603205 have:0.007709079862837241 had:0.007029385258161745 she:0.0069534012545921 it:0.006947405723762765 which:0.006307914795442857 now:0.00615983586932077 :0.19971540867632886 +and:0.047157840584893085 are:0.0258266500107359 is:0.02479076039912447 at:0.02348429156092984 from:0.023332810870786067 was:0.022465796843834207 of:0.02074898139721387 as:0.017116942582836955 1500:0.016752516113565166 the:0.013930781948615628 were:0.013884416017913103 a:0.012236393246055606 .:0.010392045320054116 be:0.010223304194788755 600:0.009876646218618034 :0.009022666631196484 in:0.008182512898665811 too:0.006661953571668273 Is:0.006631359998630574 :0.6762813295898741 +of:0.09129790931378902 the:0.07369883040827747 and:0.047842263382354346 in:0.04189055351593407 to:0.04045875475680249 a:0.03542341257202578 be:0.02020462051672066 for:0.01979292654746225 was:0.01760256398103379 at:0.017380150555488715 is:0.014984483003968216 with:0.014047653760730413 by:0.01374644383819499 :0.012670486581795598 In:0.01200961464556976 or:0.011563835749786333 from:0.011391516893522809 are:0.011273104484969465 that:0.010755276030689069 :0.4809655994608848 +one:0.1028303141280697 part:0.05963429477052991 out:0.04766456937681193 some:0.031418679026461914 members:0.030764490253327767 side:0.029940657362655835 portion:0.022063658796890564 office:0.020457735219956013 member:0.019726706386316174 end:0.019666887540649894 tion:0.018667441728710307 parts:0.016814747270460957 people:0.014112771422418794 all:0.014072739582212475 any:0.013183573287639892 One:0.013083578354183906 that:0.013024335602903442 account:0.012482348155001894 many:0.012077825070275192 :0.48731264666452345 +of:0.22913281845105044 to:0.10390299566960362 in:0.09104623983329192 that:0.06786365161504174 and:0.0649508030158946 for:0.04804286737896067 on:0.04687731779935742 by:0.046189378756414864 with:0.03905308836573586 all:0.029497920510665875 from:0.029186410222960216 upon:0.023763582306412335 In:0.02045820953062102 as:0.017093585032768456 is:0.013311351447134872 which:0.01230113755007768 into:0.010241585748101214 at:0.009727356721498959 when:0.009614439666274281 :0.08674526037813395 +the:0.4082008722125176 Evening:0.1372123096263105 tho:0.03556882798293778 a:0.033026358830388035 The:0.03078671006368444 .:0.023853343566525128 and:0.021736227376090926 tbe:0.016778479722491527 of:0.010731311163050943 A:0.010393751195103027 :0.00984501260950736 great:0.008790485271725984 or:0.008481011117636147 said:0.00787940897766152 th:0.0068689946797174505 by:0.005609358920747851 hon-:0.005224985909175643 in:0.0051130136199149705 this:0.004926214216629652 :0.2079733229381835 +the:0.161262697229424 and:0.1396738213170314 is:0.07029741066679486 of:0.06692897718651518 was:0.03620061824698375 a:0.033402147817031935 to:0.032483236303023626 be:0.031046526474135076 in:0.029111575551082687 by:0.025381901733335856 his:0.02457860944719161 not:0.021936246042084846 are:0.019440583428964292 their:0.018083283386509746 with:0.017758111283102864 that:0.017719786008664123 any:0.017122260190767836 for:0.01642934879457596 at:0.016220577114643454 :0.20392228177813687 +of:0.1814181052239124 the:0.12130636762134252 and:0.10230707174979678 about:0.08429379894968875 than:0.06665714928371468 or:0.05153908515908657 for:0.04528197883266849 in:0.03139595281234751 over:0.030015242332381866 nearly:0.02986812927441337 to:0.02859007823134286 only:0.02085436850573282 a:0.01615697187656737 least:0.015108243617314108 last:0.013944038736279836 with:0.013564871910718566 by:0.013018162642443766 within:0.011982990574318664 The:0.011722810287219597 :0.10997458237870948 +land:0.025198804182060858 dull:0.01168338160417024 costs:0.011510890105334971 in:0.011474435909793405 time:0.011357438095565772 day:0.011009838514919297 feet:0.010823461810688939 due:0.010268436462541358 quiet:0.00989320403410675 house:0.009077177420046758 hundred:0.008370082426003662 him:0.008080795128538166 ;:0.007717546072945917 dollars:0.00725160623632809 city:0.007040247898530799 title:0.006763367244683181 ,:0.0067629733142682375 gold:0.0066507844332379185 principal:0.0065945630114901035 :0.8114709660947456 +it:0.12291356726271781 he:0.10766523848787593 It:0.08126222867785683 which:0.05815091424687329 I:0.054909855356083816 and:0.04607290301292405 who:0.036234513317437905 He:0.03284977251390459 that:0.0307500349566012 she:0.02807960748770171 there:0.017106531141060498 as:0.011444714915749334 She:0.009915288061780691 ho:0.009311744482256256 what:0.009144898696231517 1:0.008083327589627603 This:0.007923029238788926 lie:0.007752420127589498 man:0.007654383581502722 :0.3117750268454358 +of:0.10036425554061128 and:0.09867255827094257 in:0.04887477001133228 to:0.04309676529803197 fact:0.03312124920228808 said:0.028016465130273754 on:0.025147031828386315 all:0.020897671259005178 is:0.018989333611116044 so:0.018899457882617265 from:0.018463519784011995 for:0.017651195592365977 at:0.016946018612698295 know:0.015554635744109193 believe:0.015397314140675087 say:0.014489633297242495 with:0.013970217188878864 by:0.012605124887586036 In:0.011949884106238937 :0.4258928986115884 +.:0.0514208684649542 of:0.047686270587926835 J.:0.029089788062669993 Mrs.:0.025314759084894698 to:0.022114041290188163 W.:0.01796408972851389 C.:0.01771394284956797 John:0.016868677665188205 :0.015382098560204583 the:0.015330024636790732 N.:0.014664932483900613 and:0.014632343803936236 S.:0.013797229651983907 Mr.:0.0135646397567957 A.:0.012820431280222812 D.:0.011217717786051108 Dr.:0.010612804638440084 by:0.010004370897042609 M.:0.00971560036853114 :0.6290853684021965 +so:0.3923923840193058 as:0.3595577536351855 So:0.09121566876313021 As:0.045256525948148045 and:0.010111235209369629 is:0.00921614452827184 not:0.009210340937112893 thus:0.008067324247392265 very:0.006768832574145774 how:0.0066810215303545984 was:0.0066185244895950604 ns:0.006542979810693902 too:0.006535122097401193 be:0.005814090421897108 aa:0.005155638251909755 are:0.0037219581931500537 that:0.0028812125902718294 Is:0.002532818268599276 ao:0.0024601933240397072 :0.018260231160025543 +a:0.4483561108512597 the:0.15467341041662927 feet:0.0875383778142109 inches:0.024806911883710134 and:0.024608817283999454 A:0.020469735632114128 of:0.02021565187941698 tho:0.014614752092031816 with:0.013112974324506567 The:0.010538655815460388 that:0.009548296295342512 to:0.009443457443624789 very:0.008947879817099796 this:0.00801763480626511 so:0.007830908808358367 all:0.006454034817390201 on:0.0062006513096733076 every:0.006095246449661265 his:0.006044734707014421 :0.11148175755223089 +the:0.5657572571210684 this:0.15017899382741023 a:0.03428704856496068 tho:0.02719589766455181 The:0.021231239153164036 that:0.017499019232597453 and:0.015579800168906897 his:0.013612265452161463 said:0.011730400280012583 tbe:0.01152507453263493 same:0.00990831494681363 vegetable:0.00941944550454371 any:0.007673204596779637 little:0.0070586548091404145 as:0.0069473480085866365 great:0.006868463049392675 her:0.006721077599478231 every:0.006613352738267417 other:0.006592044870733532 :0.06260109787879563 +a:0.38475476725878577 the:0.26708917453527725 of:0.06351213924570338 The:0.04027307103476916 his:0.023222503935370693 tho:0.017611005647370497 and:0.017032479263488224 in:0.015849367852947233 this:0.015774468253505095 every:0.013631785932658107 very:0.013523064028946303 some:0.013265160685332315 any:0.012716634834874129 with:0.010150995982377757 most:0.010143658255896987 an:0.008703002635435966 by:0.008302770809199337 their:0.007170986099799618 A:0.007104138817089361 :0.04916882489117282 +of:0.3135519036499384 to:0.08859967168262312 in:0.08509960179058478 and:0.08304599971433892 with:0.04878252506591918 for:0.03513738681475361 by:0.028671281638878107 In:0.02546116713571592 that:0.015918591088576014 at:0.01478894389596048 from:0.013880749395152452 is:0.012181231718220612 the:0.010159885580876769 on:0.009880208185796983 ol:0.009392478456725464 ot:0.008849030914253698 or:0.008739390774103841 are:0.007939523118954635 about:0.007099131372546952 :0.17182129800608006 +the:0.18786885372447867 and:0.08998994169535424 of:0.08299658175529616 to:0.06350506244084385 a:0.053477692843842 be:0.029015288092350277 their:0.02591677291806705 his:0.023601143149274032 for:0.022052744978454206 in:0.020094280917537254 is:0.019174921914693683 was:0.015733959340738547 or:0.01441481315273373 tho:0.0128391515529128 its:0.012786493550353488 I:0.012182568198982441 at:0.01158283062689511 this:0.010965093533664337 not:0.010776758126179453 :0.2800250474873487 +the:0.15118509240902547 and:0.11786789437565359 of:0.0970293336858477 a:0.05771514406616911 to:0.051473433574410914 is:0.03752173410360735 their:0.03287325139589367 in:0.032530766848955145 are:0.02957330474654547 was:0.023230555392132837 or:0.022974279259155 with:0.021892235045382295 this:0.019876951989152257 his:0.019020672672374818 The:0.01835575448491339 be:0.017591086532576374 by:0.01736984124345636 not:0.01653443793332951 those:0.01569810565740871 :0.19868612458401 +the:0.3101012744411885 a:0.3094546705398811 of:0.06363833095357127 this:0.04964999713845559 The:0.03553831174213668 with:0.03181926461046065 his:0.023022074699223436 our:0.02123649922234525 A:0.020080055336554513 in:0.019723388145146858 and:0.018663385553871165 tho:0.01494347100253882 that:0.011887467064435765 any:0.011587461527408648 very:0.008701649268689975 its:0.008622204893362443 their:0.008500341443803345 for:0.00720882792581597 no:0.006698152064209263 :0.017923172426900634 +of:0.16866672108585037 to:0.10738408626769874 with:0.0830481526667528 in:0.08152486103507021 by:0.04983754144224622 for:0.04917224013756603 and:0.04405216082313266 from:0.04081187223744851 on:0.03832040004614136 upon:0.03441475187333993 that:0.02892361378052455 all:0.02181244431708896 told:0.01962110299955217 at:0.019401755226240037 In:0.01785220917797482 as:0.011513309325866231 give:0.01121998565861529 over:0.011063538294868816 left:0.010932920068046824 :0.14942633353597548 +and:0.10323882638879077 that:0.0634635410586064 which:0.06198487162397899 It:0.04956516092946209 time:0.03374227341659164 years:0.03148087756586926 it:0.03142873899305998 the:0.027395777239685875 he:0.02556583964724522 :0.023884033630601355 of:0.022689493779963887 year:0.018262118543198525 This:0.015426586835754826 bill:0.014251839382653448 until:0.013676077712915763 He:0.012675661187057121 The:0.012037215671160964 be:0.011652130602607424 what:0.011581609087084697 :0.41499732670371176 +:0.027444674038408463 it.:0.018343460971537398 them.:0.012279915676404551 him.:0.007773338271448991 .:0.006909419498008694 and:0.006909135988119973 time.:0.005785933096284437 her.:0.004394419952220911 country.:0.004347065248470077 day.:0.004286446729141061 year.:0.004151370302792905 years.:0.004045149880669112 work.:0.0038385806416734434 life.:0.0037356169485277734 home.:0.003660376075285033 again.:0.0035401268312619098 one.:0.0035116210451353797 me.:0.003509028191122925 out.:0.003378888813674051 :0.8671554317998129 +the:0.24064692372421204 a:0.09096856769083955 and:0.07550527450061631 his:0.05876606323942162 of:0.040177058955889106 or:0.03622323277433358 their:0.03396885448011497 The:0.023479835435113065 her:0.023395921827788033 in:0.02149089263358572 no:0.020289742139852563 my:0.015881961248488074 to:0.01560775659164847 good:0.01464090515177196 tho:0.012533751130094355 I:0.010027126713550437 that:0.009729307937004541 was:0.009512785330719085 our:0.009294028715649633 :0.2368600097793069 +of:0.09719704728985397 in:0.0737386975646887 for:0.056911120255288175 is:0.05549759834413542 and:0.05239950347015968 by:0.051835720658365905 as:0.051096816394807315 to:0.049594453812333336 was:0.040848443966255255 at:0.03858607108115004 with:0.037423313990662406 from:0.030600957653776215 after:0.024980709194620487 In:0.024421913548571025 be:0.021967349923627675 made:0.019458373547533596 have:0.019137555323762143 had:0.01580696850796045 After:0.015326521798367602 :0.2221708636740806 +of:0.14134021128274424 any:0.12134982540026734 in:0.08228162669766739 no:0.0718666166143443 the:0.06868254752535596 that:0.05253269788130906 some:0.04668344917627884 and:0.04454569117904434 only:0.03877662867681982 to:0.033813224299874906 by:0.029071013354693018 for:0.025259145634437426 every:0.022346778756462998 but:0.020941103189437652 a:0.019380471732197504 from:0.019134859523988305 In:0.01901768677735395 than:0.01651329329071256 each:0.016029804420403245 :0.10943332458660712 +of:0.39393310209156696 in:0.1196017651830982 all:0.05128951013203115 that:0.048787458457561154 to:0.04013825778202399 for:0.038522348418309114 and:0.037551918903174004 with:0.032975269260390565 on:0.028766802567983654 In:0.027085007750780796 from:0.02390057762645922 by:0.021279367614584575 as:0.0185429749522264 upon:0.012640523537435592 through:0.00888295323534449 between:0.008461933934116891 but:0.008211586513686036 All:0.00815756934419461 which:0.008135946758566028 :0.062135125936466536 +the:0.38591241667580356 a:0.18842643244304771 of:0.10140492094502175 this:0.025653044462554817 our:0.02272620457642478 their:0.02038170368280392 public:0.016258094161481988 tho:0.015638486750388435 his:0.015174546203400092 The:0.013995138874261674 and:0.01372164300916082 all:0.01222283338304719 with:0.009719520019515916 by:0.009498839415131055 its:0.00910655037591804 every:0.00841600110571881 to:0.008403563200616151 good:0.008097268193658946 tbe:0.007025188934593899 :0.10721760358745042 +of:0.09031703029054426 the:0.07835817252503138 and:0.07042903132300204 to:0.04379322747446155 at:0.0316182503367478 in:0.020671870595660464 by:0.019161456405745327 for:0.018270881703550394 a:0.016458529031558533 was:0.015832153032173314 :0.01472102584982977 be:0.013625244224390725 or:0.0127630035375017 said:0.012421115868516098 were:0.01154948609244062 that:0.011098428673784645 are:0.010799370163502013 1:0.009489136047799981 is:0.009426424006903175 :0.48819616281685624 +and:0.1039160898205701 for:0.0904306146195608 in:0.08967882146061364 of:0.07592713398000665 or:0.0705463549409194 after:0.05075748442411699 was:0.045645682567869134 is:0.034943538394536816 the:0.0346225280857976 In:0.032226420076329795 to:0.029176210755128367 from:0.02586223890902518 about:0.025614174983684252 are:0.021365909556758617 an:0.020633489629416163 than:0.019150656893757088 at:0.018891823292111448 were:0.018344794749304293 with:0.01830355230961223 :0.17296248055088143 +the:0.12483014985879959 and:0.08350003477786822 of:0.03520199957807166 to:0.03411162318358664 be:0.026195092433866106 was:0.025846176111795596 a:0.021027967249258053 The:0.017555660352859773 he:0.01694065987818408 are:0.01650388086482808 is:0.01531726876561811 were:0.013590042215768088 or:0.013089658751953354 I:0.012453635827297572 be-:0.012292798199722474 his:0.011318080647238 Mr.:0.010247501442175353 that:0.010165074495869031 1:0.009313094002931864 :0.48949960136230836 +of:0.25629798071001136 that:0.09733060590147127 and:0.09116865919031625 to:0.07329965373917421 by:0.06194088766549284 with:0.04564190970795226 in:0.033722023360428795 for:0.026232623552777647 as:0.024041470256932873 from:0.023567841067433332 is:0.022944482390268025 on:0.021985049171203048 all:0.021486347900861676 was:0.016660318613530647 when:0.014892396609715182 upon:0.011603775588056217 which:0.011076825315568589 but:0.010666854703515426 if:0.009419323155822553 :0.12502097139946777 +the:0.10414914409184026 and:0.0504091744327683 .:0.03831758150268963 :0.0303697587307627 of:0.022316113585756806 to:0.0133435490036822 A:0.01188140351425021 The:0.010714160531650212 J:0.009117938190622434 tho:0.008662908326066586 in:0.007960000558450614 E:0.007435544631342382 1:0.007192708641428799 a:0.006792092375216361 Miss:0.006206705561700576 said:0.0061333419029620945 -:0.0060059338392245126 &:0.005916699062059607 S:0.005760804375505367 :0.6403144371420204 +the:0.14716034037664402 of:0.07064456176864096 and:0.05877203222502343 a:0.047685727004275154 to:0.04341700395164864 in:0.026095094583276263 at:0.019457277791066284 his:0.016156168007087614 .:0.012644506687076581 was:0.01238406222225457 with:0.011946547547937263 be:0.011452860995613195 is:0.011214774482954413 :0.010250674231297309 tho:0.0098854650287005 by:0.009841528559222925 The:0.009822848407293458 an:0.00954264713929158 Mr.:0.009175758765120204 :0.4514501202255756 +:0.03577387788505794 and:0.017566240265245985 .:0.015295251215245616 year:0.011738610410622937 of:0.011098631407036675 it.:0.00819246768172552 them.:0.0058412034653613784 to:0.005693824755200065 him.:0.0046453919984975065 :0.004590914870636014 I:0.004385407368802878 ;:0.004303908742486163 day.:0.004281980857316907 It.:0.0040467050734760614 that:0.004007504716766277 ::0.003925539002978335 me.:0.0035397992090682373 for:0.0034269764274947098 years:0.0034008461791315793 :0.8432449184678492 +one:0.17896815771583502 some:0.08659644581987248 many:0.04990449165862142 all:0.0478665878503545 One:0.038096175605452455 Some:0.03552640793926947 any:0.030556472203911753 part:0.02863440842448241 out:0.0277194039896207 Many:0.0269363120854098 Most:0.02547340768335081 most:0.024353222153046517 each:0.023219256850445295 none:0.017889879874876717 that:0.01660051196194893 portion:0.013050827281407395 and:0.01196719025110212 those:0.011218763533358999 number:0.01119499011182692 :0.2932270870058063 +one:0.027746619232448887 law:0.024190039172254 action:0.02202814312284032 more:0.017658671452812174 person:0.017409839573210087 State:0.01649490999189676 on:0.01615453535579406 lot:0.014262533948768245 day:0.014074894249704357 side:0.013562919718901974 man:0.01253141187688657 state:0.011903376543297595 owner:0.011764248523810656 in:0.011489029768058465 tract:0.011400180713851774 city:0.011175929476251246 year:0.01094050977197478 out:0.010606687516277732 two:0.010303827188031968 :0.7133016928029283 +of:0.1299946058322479 the:0.11138637615502614 a:0.10401901815716727 to:0.06827526872221401 and:0.04623372162149686 at:0.040858453410390065 in:0.0388791854853216 for:0.03787450130230496 by:0.030099890821364137 with:0.01803477830397818 from:0.015408783418348811 on:0.01442125833901694 that:0.014232296106146604 :0.012770894690784976 his:0.011794533633465101 their:0.011739081211868608 or:0.0106737395463871 In:0.009264381330369923 in-:0.008691520851936663 :0.2643477110601642 +right:0.06643879826244445 out:0.056502439661975386 number:0.04431835449566179 matter:0.03562121398864359 amount:0.030674041059915717 power:0.026672228890553085 purpose:0.025947665924784303 line:0.022824368620409853 want:0.02141293179415504 state:0.02123729156164182 point:0.02044194291082847 way:0.020147245789513508 loss:0.020082465265120412 deal:0.019697359495451025 kind:0.019419249633261956 lack:0.019208088933949142 full:0.01907199274277974 place:0.01854328140843324 means:0.018443792925998386 :0.4722952466344791 +in:0.024745671141431252 ;:0.021522984044907358 Under:0.020875399401828296 given,:0.011497823484486516 him,:0.008673043253468554 them,:0.008411734917607014 ,:0.008381729419098215 up:0.008183854591543931 thereof,:0.008118754678315116 mortgage:0.007035235590636141 years,:0.006852324131213381 States,:0.0067448333563323 county,:0.0061059672562892246 land:0.0060058141326634 day,:0.00599734573268566 it,:0.005992649533783088 and:0.005610048433393659 time,:0.005417556421912032 on:0.005343730308206672 :0.8174835001701982 +and:0.11556519417565557 the:0.08481561130242181 of:0.07004505633234759 to:0.0341721636003462 that:0.024989712907709082 a:0.02033341508293078 in:0.0195282517879194 which:0.01857195564664746 will:0.01715996747418425 for:0.016368884390064373 or:0.014422145985509987 as:0.014111218851616864 I:0.01385069987486557 he:0.012904087368211841 they:0.012821621856491204 :0.01282033337760942 would:0.012423812591599326 such:0.011604284904520845 The:0.010395181332605091 :0.46209640115674333 +a:0.25950516952613656 the:0.22895611081292025 of:0.1584670358931208 The:0.05023538515367034 in:0.04507164664988507 and:0.04131029591663778 no:0.02434254773929457 tho:0.020646843283540668 to:0.018113397038734425 much:0.01380057515819307 every:0.013306539097016398 very:0.01237171205097551 In:0.01200728584354525 their:0.011988763572429508 any:0.011976486550693355 his:0.011730746591693871 with:0.011295049754614483 for:0.010421121564035239 is:0.008342599041127587 :0.03511068876173525 +the:0.11885726673818418 and:0.09556620926090241 of:0.0713297144298208 to:0.06234346527958425 a:0.04213074990196513 be:0.035376503432326505 was:0.030716883983689238 at:0.023612619631659768 is:0.022017236692517053 or:0.01684584109583797 are:0.016534625112222045 in:0.014820352914694268 been:0.014329475570559327 were:0.01413635506762397 by:0.010517291996553362 for:0.010266174606716067 with:0.00989762321761863 :0.009786876194172156 their:0.008885460428901086 :0.3710292744444518 +and:0.09713204623171852 the:0.09106308394703604 of:0.06303681790599835 to:0.05851764617522509 a:0.019573996909350414 that:0.01664783280402402 will:0.014674556129722164 as:0.012936665829567177 or:0.01208567577777089 :0.012065200788628869 in:0.01129324960662223 which:0.011019428293925342 an:0.010555971044832246 The:0.010462093117203395 for:0.010013225901440902 his:0.009173977732534887 with:0.007511390934540575 Mr.:0.007440271259729987 on:0.007264791989337729 :0.5165320776207911 +and:0.33204143499474814 of:0.11495284195471954 the:0.10390092028988465 while:0.04227768717681578 for:0.03364001986202662 to:0.03334375880654781 many:0.031834091688205564 or:0.0317415315153901 with:0.030645955761922763 all:0.02815971319743661 that:0.018235521011491538 are:0.01776740211279375 by:0.016075726055225763 as:0.01570763591714897 The:0.014836193574915212 in:0.01445309806186632 a:0.012482882931673395 from:0.011275767123210706 some:0.01062564989407667 :0.08500216806990006 +of:0.27777491038333346 for:0.10141610405064473 to:0.08547729911665274 and:0.07353620003412152 with:0.06873664137416352 in:0.04866930085894751 by:0.033918252134263444 that:0.028352675686552784 on:0.02334684828000812 is:0.022977797819343664 or:0.020754642922499334 from:0.018275807681823422 at:0.01627473469737636 make:0.014910157340870252 all:0.01367357306427047 upon:0.013220625708581658 as:0.013019894710841496 have:0.012088704885180582 but:0.009318230300476748 :0.10325759895004819 +the:0.5348163824479901 a:0.18132267185965717 The:0.0725917720299178 tho:0.031940535971231705 of:0.020863161525464146 and:0.01604215743155561 tbe:0.01314632242213424 for:0.012426728570148994 this:0.012260952794781982 an:0.01159335954905176 A:0.00923389068835462 his:0.007591072859263865 that:0.007132162795288795 any:0.007127488484953366 one-:0.0070683541839263436 every:0.00704030010021407 one:0.006166377271295808 our:0.003724652223508687 to:0.0036640284245528973 :0.03324762836670801 +would:0.13516776815931453 to:0.10175318883572715 who:0.0734216616549984 they:0.06090829687960963 I:0.054414498797697934 which:0.046947310165833735 must:0.0405200574155989 might:0.036445589637541506 shall:0.03272411333844378 and:0.03228038765818951 should:0.03179090655993478 that:0.029508760759060126 not:0.02876680420731567 we:0.028503874055856488 may:0.028150033623979002 could:0.022163961267380006 will:0.019029697840863502 there:0.014322928357478427 They:0.011858887319353098 :0.17032127346582382 +the:0.32069296509009926 of:0.19368500390132548 and:0.04660756712961999 or:0.036899276426336114 his:0.032565833180928656 tho:0.02506260290695659 their:0.024837789952382144 with:0.023790298124914122 by:0.022941690333892248 for:0.022156779659212502 said:0.02032509801441487 in:0.019110882179821875 this:0.018594007201486143 The:0.017632359861733716 that:0.016653876197969732 such:0.016271406507529323 our:0.014361348929856877 its:0.014286715715355032 to:0.01339307375414041 :0.0991314249320249 +not:0.11555214062604387 is:0.09303856013688126 was:0.09205869053330322 be:0.0830891841207242 and:0.04440725101533305 so:0.04055168311853314 are:0.040106566745187366 it:0.035032476699181615 as:0.033180077141177086 them:0.027963734560562382 were:0.02599067815579458 given:0.02225498222467693 almost:0.021903109150848997 more:0.01778827412192687 made:0.017178074913915084 been:0.0170965690239937 seems:0.01662930267634539 too:0.01639429381223235 seemed:0.016029302625592465 :0.22275504859774642 +of:0.24744568106854317 with:0.110519998379709 to:0.10406627730215155 for:0.08568848650936715 on:0.06229530624496094 in:0.05920266191527884 upon:0.04071115625752023 by:0.029991240657899175 from:0.021521838041998698 among:0.013800552669467765 against:0.011420922419876528 In:0.011379815626680147 over:0.010959637778321487 before:0.010729364223675191 see:0.010564767697060013 around:0.00894540491169874 about:0.007996424495631644 behind:0.007087597066127285 between:0.006456763581423419 :0.13821610315260902 +of:0.19967234817714896 in:0.09722089377495532 the:0.06035577112613766 and:0.03383915437615039 for:0.03185689391666553 :0.027774005684261957 In:0.024095155185491948 by:0.015579579604357354 Mr.:0.014982099176013265 .:0.009766493182276386 de-:0.00955906643984778 Old:0.009314226850756106 to:0.00922344396590758 on:0.008996843777105794 as:0.008623804650283772 New:0.007065568379132429 ex-:0.007039989066588991 com-:0.0058912711034613185 with:0.0058113408901584 :0.41233205067329903 +a:0.1350012082898871 very:0.10795944123109041 the:0.08188900136769774 of:0.07976238370525482 is:0.056629799380249556 with:0.048507771535936495 so:0.043041169044384674 as:0.042489142586665966 and:0.03972608474038735 are:0.03216367578912672 in:0.030060925071535377 be:0.026398175901026454 was:0.025493474340281506 by:0.024721810325478898 too:0.021507104183038424 feet:0.019842849014842522 his:0.01701502072288001 to:0.01635578921839553 perfectly:0.012806190808893895 :0.13762898274294652 +of:0.4107459121213429 in:0.142645011798602 to:0.076419443705799 that:0.04819000662586344 from:0.045671034994699315 on:0.028701638255351648 In:0.02801416529670091 by:0.023072326049875004 for:0.021014710229349965 and:0.018464213341321273 with:0.01688374940205595 which:0.014800822261850657 at:0.012526094706747603 upon:0.012036686578953779 as:0.0094668209850143 into:0.008565056162345722 all:0.008068228916617997 ot:0.007573453002103327 over:0.006576307272382161 :0.05956431829302299 +men:0.018812586668218865 ;:0.013261667321918335 wife:0.011063673092597646 up:0.008381654764863335 city:0.007494531464692344 man:0.006190827787722082 1:0.005979955831836669 in:0.005859055134492053 him:0.005819361753673867 him,:0.00557496859433531 house:0.005467931463538231 day:0.005246937022520849 one:0.0047161626169501675 it,:0.004640002439848293 :0.00459821536735031 out:0.0045494927626422285 ,:0.0044059381356606215 William:0.004340649159832007 home:0.004225533606806578 :0.8683708550105003 +of:0.28767355066866834 to:0.08775711267569858 in:0.08678131196995101 and:0.05160598694501188 on:0.04646139928102899 by:0.04519522654900943 for:0.044547789071328545 with:0.03396756772609607 that:0.033699232901107726 from:0.03075346596941143 at:0.027039283056790858 In:0.021061449543044047 as:0.017514234937992545 all:0.012543839382496166 upon:0.011844431150487573 is:0.00998972746569266 was:0.008814315973987914 into:0.008557199930727406 through:0.007781895704231326 :0.1254109790972375 +one:0.1028303141280697 part:0.05963429477052991 out:0.04766456937681193 some:0.031418679026461914 members:0.030764490253327767 side:0.029940657362655835 portion:0.022063658796890564 office:0.020457735219956013 member:0.019726706386316174 end:0.019666887540649894 tion:0.018667441728710307 parts:0.016814747270460957 people:0.014112771422418794 all:0.014072739582212475 any:0.013183573287639892 One:0.013083578354183906 that:0.013024335602903442 account:0.012482348155001894 many:0.012077825070275192 :0.48731264666452345 +the:0.4114696299047606 a:0.0690516453304587 his:0.06668504867362476 her:0.037351128462592684 their:0.034334316174006875 of:0.033869290468998066 other:0.032143369037186495 this:0.03160241058796879 our:0.03008208534874328 tho:0.02403579343739003 and:0.01969480148414516 my:0.012793845048635817 old:0.010949773788967606 own:0.009968294113842324 its:0.009966237524820712 one:0.009594478060681137 or:0.008983743094751986 your:0.008401421267239235 same:0.008215965537410563 :0.12980672265377516 +;:0.016562409616182012 and:0.015672639467270183 up:0.009091625461783014 feet:0.00782938060882488 them,:0.007540694238264952 it,:0.007401727195174354 out:0.006695099595566461 him:0.0063920222102435385 time,:0.006177259818327805 land:0.006089722673858281 years,:0.005927777519875964 ,:0.005831021934666501 day:0.005774306143758818 day,:0.005686855202111212 time:0.005636339134344065 years:0.005455820712257522 him,:0.0054334622094425805 that:0.005404804830006496 street:0.005375748003691391 :0.85902128342435 +one:0.1028303141280697 part:0.05963429477052991 out:0.04766456937681193 some:0.031418679026461914 members:0.030764490253327767 side:0.029940657362655835 portion:0.022063658796890564 office:0.020457735219956013 member:0.019726706386316174 end:0.019666887540649894 tion:0.018667441728710307 parts:0.016814747270460957 people:0.014112771422418794 all:0.014072739582212475 any:0.013183573287639892 One:0.013083578354183906 that:0.013024335602903442 account:0.012482348155001894 many:0.012077825070275192 :0.48731264666452345 +higher:0.20592056777172915 the:0.1909146156971774 lower:0.060024982051957346 of:0.05220965002023462 greater:0.04314722139673225 in:0.03596507585598036 any:0.027320436495940778 larger:0.02243905790465462 low:0.021519421841297067 a:0.02113660373242883 high:0.020363554421363707 better:0.020190437480732428 that:0.019216169887462844 his:0.019200263847355254 and:0.019017721664109092 purchase:0.018130321909107905 no:0.01811285813009456 this:0.017756087293736487 other:0.013801437592041815 :0.15261351500586345 +that:0.2688848525691409 and:0.1103182932995788 which:0.07583270823830614 as:0.06094565054419804 but:0.04758566235013788 if:0.04323026304367251 what:0.03709102738747794 If:0.02419767435420891 where:0.024103262362341376 when:0.021174444372792936 because:0.015869646261074226 But:0.015241910390580359 whom:0.011485008106855134 than:0.009831576236436271 think:0.009065988296568548 while:0.008547905270471027 And:0.008366528876799464 That:0.00819253753949059 for:0.006570114567968243 :0.19246494593190064 +and:0.1086801372330342 of:0.07827239593293482 the:0.05896127305393329 as:0.0253190093622528 to:0.018998510680939863 be:0.0171288952786392 at:0.015346381511672254 was:0.011761250836320073 lot:0.009713407025899809 is:0.007742286717665981 are:0.007649595122495841 feet:0.007426940836195538 being:0.007267339521364994 .:0.007204829059231515 by:0.007195071641311849 were:0.006295602434680738 or:0.006082620314832973 on:0.005730243239258356 said:0.005704667799119437 :0.5865195423982165 +their:0.2392288363616056 of:0.16258398869626658 the:0.11825114434897782 his:0.08406848260386016 our:0.058660517372240976 for:0.032870218040127554 your:0.03222631247481629 its:0.03163985879338624 her:0.028721168606627333 public:0.021536780825868435 my:0.020297511154686407 own:0.017175443168518736 and:0.017045854538818503 in:0.015445589047533001 with:0.012287463242258026 to:0.011131522624143022 all:0.010649790552867855 tho:0.007691829668070492 a:0.007545445415989625 :0.0699422424633373 +it:0.1543231983437913 they:0.0792669425479893 as:0.07812426419645344 It:0.07223094311597882 which:0.06144655867828573 that:0.05092610010943544 he:0.04570373571040352 and:0.038952162986208884 you:0.03884270553603169 we:0.030790975255356897 who:0.02612459063094389 I:0.020808418379151622 what:0.013549856546986223 one:0.012838973059299964 You:0.010890397716375837 They:0.01063102334689155 she:0.010080166872829926 He:0.009744049909400764 men:0.00903374108669224 :0.22469119597149298 +and:0.06391471163871 connection:0.06093615984227697 together:0.05531053852060888 connected:0.04534209714007611 accordance:0.0313162385285868 do:0.026067535306590065 compared:0.025180589055201354 acquainted:0.02287965858055661 it:0.02198772478344715 interfere:0.02005520280732868 but:0.0193399178219938 satisfied:0.01919970361340197 contact:0.017491107053435137 familiar:0.016769549169174575 him:0.01621430848392019 comply:0.01611848680981347 them:0.015634177918976994 dealing:0.015315379363091037 up:0.014542066778944556 :0.47538484678386567 +is:0.20113434906640512 of:0.1203629839719843 was:0.09681321959689207 be:0.051389439899583375 with:0.05031306637212975 and:0.047534924820226185 as:0.045602594477018164 in:0.03976096771938369 to:0.03674063532711136 for:0.02885167820277362 Is:0.02846238223886225 by:0.026543493898185604 such:0.023803833978902303 been:0.022167272487761583 have:0.02196221320988985 made:0.02165000563213433 make:0.018418915553884287 had:0.01753394767750685 that:0.014669534482144628 :0.08528454138722064 +the:0.16287760685838365 of:0.0883592780729449 to:0.0618987346693935 and:0.05423685233212741 in:0.030811253892523358 for:0.03057359609188714 be:0.025098115820027647 was:0.01826945122296575 is:0.01662970283289366 a:0.016448402520667066 or:0.01633619095301082 his:0.015510346299682681 their:0.015084175217362073 are:0.014656254371894712 been:0.013019491851438341 were:0.01267572744006931 that:0.012270302451397866 on:0.01131798809455223 :0.011150587255169986 :0.37177594175160794 +the:0.1570879454366584 of:0.07804606027406501 and:0.06787223916973353 a:0.036913117407562514 that:0.03650642298570135 The:0.02495259369096442 in:0.024366179622801448 no:0.021237121796534534 Mr.:0.02095974543727837 which:0.020555747976365113 to:0.019670312615068093 his:0.014514871313338153 for:0.013864556278571553 as:0.012619099712826765 he:0.011995143219360524 their:0.011486225473642654 said:0.011457904953995053 Mrs.:0.010878795762489643 tho:0.010097198257076249 :0.3939187186159666 +the:0.09684081064840576 and:0.06551335624548284 of:0.05146145169206151 from:0.049520598669154245 a:0.045427902131977435 to:0.0370403239153822 be:0.035669151526387034 was:0.030489628475080553 is:0.026635804908522978 in:0.023878514238638158 are:0.018513936943033917 not:0.017945708099223703 or:0.017556265685966497 been:0.014265228721347686 at:0.013857211504087178 he:0.013733215789660087 were:0.012396679125422956 I:0.012347944480187516 for:0.012197989992860347 :0.4037082772071174 +sum:0.03352282876311118 number:0.028116684882597106 line:0.019995206059833036 city:0.01946514558931857 out:0.019275318828420953 day:0.01666865340772654 county:0.014872697538657208 amount:0.013254184849875051 Board:0.01252325449624941 town:0.012449555905674143 side:0.011663975251122375 part:0.011517157473718155 County:0.011460540331966697 state:0.011087331502382173 City:0.010878919191854432 purpose:0.01081028255427907 and:0.010297866493795984 way:0.009848747943663767 name:0.009522170936943183 :0.711769477998811 +the:0.29800619860585986 this:0.08772095877488909 an:0.06253942741898899 and:0.043062983822069655 a:0.039077702023789955 further:0.030659552784210807 that:0.027266902588475476 any:0.025491703103340008 tho:0.02311943024522499 one:0.02140895308316057 each:0.020475593378605886 every:0.019035796193849444 same:0.01875752305861505 last:0.018049950109013765 The:0.01720349996525136 other:0.016912866604112543 great:0.015793686352016473 good:0.015243159707173945 he:0.014955308126351473 :0.18421880405500066 +in:0.3890616554936623 of:0.24027269390796532 In:0.09993616732806077 to:0.059078422092615684 for:0.0478195275796251 from:0.01901724950800591 with:0.017459986553762706 that:0.016700654372454105 by:0.01396562493359515 and:0.011232966727458429 upon:0.008663469525590748 on:0.008321455841242624 at:0.006613640379059259 iu:0.00619260637389168 into:0.005064975018496522 ot:0.003947923918886444 through:0.0037931395394091593 under:0.0035051195741712363 make:0.003267225795548747 :0.035085495536498125 +and:0.08939268402247397 or:0.05687349754585604 appear:0.05429530567747306 days:0.05057368104141065 that:0.03798978317408274 time:0.036325234219019065 brought:0.025923216698042373 just:0.025188768122919702 long:0.024916162957727632 was:0.023270714274144625 day:0.022723575663473782 laid:0.022436232258905918 years:0.022142835676739015 but:0.021238383296727944 Just:0.018782325207086753 weeks:0.017852412038824067 up:0.017292151449600265 come:0.01635388708038715 made:0.015309192872048714 :0.40011995672305656 +the:0.1604916966188227 of:0.11275865359240217 and:0.07711215696098911 to:0.07357952543518372 in:0.038442084934050845 a:0.0383429392325653 be:0.031935549729258765 for:0.023687353579869633 his:0.022938330903791306 their:0.021679866906020865 was:0.016051393500300423 I:0.014372428877850276 is:0.014141382081180844 he:0.013550986364416807 that:0.013373239787386165 or:0.01186895305038503 with:0.01134461766076533 at:0.011053389841868837 are:0.010330149310961712 :0.2819453016319302 +the:0.7131088965845016 a:0.07024988863116834 tho:0.04140483361150079 The:0.032363676762366504 his:0.02391055877418753 tbe:0.013200865604570377 and:0.008348038656105224 her:0.006838725554135573 their:0.005758158018554343 my:0.004945827717103444 of:0.004868699464195672 A:0.0038322062915377712 great:0.003701310304230788 our:0.003405950741618988 its:0.0032993569559882875 large:0.0026578480390766924 or:0.0025083468595158767 in:0.002467949462417814 your:0.002445607073681002 :0.049683254893543395 +hundred:0.0400747488793647 up:0.00858364825948835 ;:0.007612614752336589 street:0.007394827852487087 wife:0.006970984318728375 one:0.006887391351218881 men:0.006364749681642143 him:0.005531053678594766 1:0.005493283152317841 city:0.0054737513101003775 gold:0.005313152072477728 ,:0.00521012724321369 day:0.005135502290715436 dull:0.005126173105969926 down:0.004962581429840802 house:0.004949272015116014 dollars:0.004798368944790754 years:0.004781397067449458 quiet:0.004742477928412473 :0.8535938946657347 +the:0.3074619073829083 a:0.20758607296285042 and:0.04923313192328643 The:0.0411434972696356 of:0.040205674661441745 this:0.02770809268579928 A:0.02410131390263679 tho:0.021681177749168234 that:0.01894604430909504 his:0.01106976278994597 its:0.010405236105881675 their:0.009716627260407345 tbe:0.008742917439278347 said:0.008219848036352681 or:0.007064239112408734 with:0.006998777479155597 very:0.006729580631042507 in:0.006338535964129385 our:0.006170830226367808 :0.17947673210820814 +the:0.18790831754177087 of:0.10584099326103001 and:0.045036540849843355 in:0.04266705393209295 to:0.031578054762280566 on:0.023982920136327 by:0.019269018021994988 for:0.01874790440170413 that:0.01789227556453649 a:0.01470750054911047 with:0.011312149594587394 tho:0.01021565121510405 :0.009699390520745569 from:0.00952223335848076 The:0.009256346861919935 two:0.008913654655090093 In:0.007489504795502463 other:0.006955441391982931 at:0.006802717772102527 :0.4112023308137935 +:0.09453043478783667 it.:0.03759438902852591 them.:0.021118851128689196 profit.:0.015080454650659112 country.:0.014515707020885473 time.:0.013020782331131254 ?:0.011247779307407444 him.:0.01089758026156843 life.:0.010716652609442283 world.:0.010532998469643734 law.:0.010012114272927787 years.:0.00981645336150186 people.:0.00938776707643367 .:0.008664312114649382 year.:0.008177071026324879 State.:0.008068666960658699 subject.:0.007937682205403829 place.:0.007797237289465482 that:0.007742334230204197 :0.6821407318666407 +the:0.12726855910616955 and:0.0892959780159441 of:0.062229337879632314 to:0.058292991969480845 in:0.037889522208997196 was:0.035486090111862774 a:0.03277831520841599 be:0.02993909980507852 is:0.021492638467572805 been:0.016319288425974923 are:0.01622912479566914 were:0.01571120940653339 at:0.013800451447349702 by:0.013390998935139781 his:0.013046404338315144 an:0.011587498063993411 he:0.010436524486303292 not:0.009967845652912184 or:0.009888058570455908 :0.37395006310419904 +of:0.1466396104273028 D.:0.053324018449026844 .:0.04735093824787434 at:0.038829421255776604 the:0.026726486566333394 and:0.02527143947351369 Mr.:0.024007280287736306 by:0.02041414766435068 to:0.018067255781494634 from:0.015776682471925974 January,:0.014518539437917664 boy.:0.014484866832528821 May,:0.014193618807267598 in:0.014107634997481614 April,:0.01404792851499885 :0.01381770619194094 October,:0.013147454625920858 for:0.011815734820541853 March:0.011596680616509493 :0.460862554529557 +the:0.1864048563217687 of:0.0763282816387499 and:0.056775622996350465 The:0.04076053203023492 that:0.03371010707602529 a:0.03277782567499776 Mr.:0.026815863495821175 in:0.02462440990641813 which:0.019739917572022633 his:0.018397552200257954 to:0.017149259773376165 he:0.0145040348287332 tho:0.01412009567036467 for:0.01260706190893237 Mrs.:0.011546548987961617 as:0.01145601468868743 their:0.01140106772004615 no:0.011343792304204419 pro-:0.008769124543790212 :0.36976803066125685 +in:0.2471997027409989 of:0.15281760524388488 and:0.06815744771122871 for:0.06734458923435481 In:0.06417958461342253 to:0.05401883308109413 with:0.04346577604889468 almost:0.03277983949880163 that:0.031144868351807013 by:0.02994702191751506 nearly:0.025412722899757417 on:0.019604231088114807 from:0.019289814803173256 at:0.0150154428280309 is:0.009064225142675913 or:0.008874700058450088 have:0.008547605176107784 over:0.008207008105492256 make:0.007200081202773102 :0.08672890025342218 +of:0.09043409053013649 the:0.08458268447909405 and:0.06941169710674647 to:0.06842685376506503 a:0.03502196399400508 be:0.027631492661475 was:0.02262770347407094 or:0.020899547147549786 is:0.018061672947865565 are:0.017763045964156114 his:0.017114589037761113 for:0.016727962397261282 re-:0.0162769353827767 their:0.01514882567544624 been:0.013878331263912594 were:0.013374436412516415 that:0.01319950985941409 at:0.012567281873590285 :0.012294075404375895 :0.41355730062278084 +in:0.14048713722096412 for:0.12045306486651125 of:0.1150959154773748 within:0.061090158043955345 and:0.05346109170384797 only:0.04877263632788032 In:0.04433449219687606 with:0.037160146048207214 is:0.0315421892589043 but:0.029830979859766554 by:0.028968633883732185 to:0.025999925223267443 was:0.02505070588261269 after:0.022494641765410772 that:0.022285961534963723 as:0.01690029607373616 from:0.014222657035431458 or:0.013178995054789719 made:0.012188942064310933 :0.13548143047745698 +that:0.1035452743355204 and:0.03491414101479104 :0.03278553418095904 as:0.03079608858362964 but:0.024278852986171703 it.:0.020151615166621593 which:0.015807416391399164 of:0.01213107727148936 if:0.010267595279452172 for:0.0099317605982171 them.:0.009862881500143306 what:0.009669067315876259 If:0.009575330642351405 where:0.00808111981988077 because:0.007604977708691779 country.:0.0075045726332860566 when:0.007229903722624671 think:0.00652002300867937 people.:0.0062310510067859395 :0.6321117168334293 +of:0.14870698072999267 the:0.0845621995124163 and:0.06757800692451325 a:0.06370489404667218 to:0.05660993902384267 in:0.044754808810571894 was:0.02476206369313501 with:0.02372392891650905 is:0.02370118591038056 for:0.023671270390473925 at:0.02052745490553854 be:0.019885805590490524 that:0.01916544700111574 by:0.016703405181816126 which:0.01477775031565864 as:0.013781538588359489 an:0.012747545072512806 con-:0.011493668738063316 are:0.011384200297405571 :0.29675790635053173 +of:0.1429004593982712 as:0.08556603531679516 and:0.05901330838871391 with:0.057451283825678545 by:0.054301313780537055 to:0.04911077807494487 for:0.047214834304920815 in:0.04467005988227653 is:0.0424265930429313 on:0.04089245040855574 such:0.03896057190784212 was:0.03130616625898673 make:0.028029385971597064 that:0.024251511265340232 made:0.021955718324578048 upon:0.019716722792437205 from:0.016747627647455184 be:0.015447269526235338 at:0.014660582979624005 :0.16437732690227894 +the:0.1306631341094912 and:0.10670690994912141 a:0.10554788749129423 to:0.08984674983987466 of:0.042526056947487366 for:0.03288426025019353 in:0.02662537940663454 will:0.02317610997629085 an:0.019901753860244294 that:0.01943368401260732 which:0.016937012852866102 or:0.014358795414008991 would:0.013729854971525814 their:0.013251878777601055 his:0.013044697963927609 The:0.012601332694153434 in-:0.01209988102247335 any:0.011996639956419666 most:0.011198587373854683 :0.2824693931299299 +have:0.30169240062867114 has:0.2851900504508669 had:0.1689824063239383 not:0.07272577729317553 never:0.02580847271150229 having:0.02415099678196924 bad:0.013057013651303653 ever:0.01133141157762687 lias:0.010492400798474083 always:0.009725686399294855 havo:0.009479159926464304 already:0.006329835336720442 yet:0.004995940416890826 haa:0.004442193576591703 just:0.003969090173063225 long:0.0035354496542968307 baa:0.0034039036320257583 also:0.00295039733407481 to:0.0029297750543026317 :0.03380763827874654 +.:0.08494094968653061 A.:0.08300797194338481 J.:0.05768647467620226 John:0.04692875477569774 C.:0.03595224816399288 W.:0.032146609749895076 Mr.:0.03099452611171269 H.:0.029526497972291545 M.:0.028261727078184203 Miss:0.02456878535812117 Mrs.:0.024432038472660563 S.:0.02391873931998515 F.:0.020774146117199604 of:0.020353442372278933 E.:0.017646892609762748 P.:0.01713546031520838 N.:0.016367458668249714 James:0.016205719668003916 D.:0.01620295807707259 :0.3719485988635654 +so:0.2667934695087189 as:0.22482300947972272 too:0.07878636274856755 very:0.04558904219635534 is:0.043769175487354026 not:0.03550374637851392 be:0.03306716495302329 was:0.030242802357787205 are:0.02621757163535555 do:0.023966182636506204 and:0.022840640343261283 been:0.020178314747219653 how:0.017168914249382643 with:0.012982199723820993 done:0.012480789301002314 of:0.011982989332386472 were:0.011230658909742362 So:0.011179977342367342 it:0.01081862905496459 :0.05937835961394762 +the:0.1225076649597919 and:0.07161361224167645 of:0.06473629272949444 that:0.04958618514670853 in:0.028043918893866652 The:0.018977980784367614 which:0.018116365783577473 a:0.016457792131635864 Mr.:0.016204994403703713 any:0.014996833454149294 as:0.014951613809545558 or:0.014949554079500006 such:0.013882217367030407 to:0.013849308168220787 no:0.013167338522426214 he:0.012643594782225433 their:0.01149823381066073 for:0.011150101666402977 other:0.010739089653356843 :0.4609273076116591 +all:0.20154215728878747 and:0.05405446887655542 it:0.03637333339621838 went:0.03342871232646321 passed:0.029408976239411026 spread:0.025020294062740422 go:0.022439883451225287 control:0.019929735159354922 turned:0.018818585856584 or:0.01876954656172825 looking:0.018125663342489832 come:0.01799181412863207 bridge:0.01668770924827385 them:0.016249817433562356 came:0.01579687124187685 ing:0.015740254251981067 presided:0.015648734665816413 out:0.01531983428044253 scattered:0.015087531529920314 :0.3925660766579363 +of:0.08767327070481179 was:0.07755957724103896 is:0.07148169263694419 with:0.07070108758619366 in:0.05835388534331675 as:0.05820824561945039 and:0.0493464034214954 by:0.04425367739453273 to:0.04087655196416821 for:0.037897580959648805 on:0.03215553411100355 be:0.031287844345951096 had:0.022958785130887074 have:0.019157235965529762 made:0.018817366510344047 such:0.017255406720414264 not:0.014578069172833002 been:0.014171017626000952 that:0.013479328077793193 :0.21878743946764215 +and:0.09525083996387682 the:0.08296368725785547 to:0.08098423046267472 of:0.0481876961555032 was:0.04730092378064048 be:0.044490474771554885 a:0.03716578594058761 in:0.024879341365105355 been:0.02404046119276065 is:0.023467879154161653 were:0.01991773750945964 he:0.019407998464238876 are:0.017798791313390794 not:0.01311753325934461 by:0.012200418004019711 or:0.0120659922496242 I:0.011473183334510657 at:0.011416483630128113 from:0.01095391531529641 :0.36191662687526616 +the:0.11919516938815296 of:0.07230453158552728 and:0.05781056740443249 a:0.043018564803886335 to:0.031305092790907506 in:0.020848713353460488 at:0.014270110001066288 .:0.012526810245749479 :0.012413283442322082 for:0.011719122709941797 by:0.010808400946589808 or:0.010404172990115616 The:0.01003576004804544 with:0.009811868184449042 tho:0.009295902015355835 was:0.008924239095331684 that:0.008672304223433876 is:0.0085591147338948 be:0.008335143826716943 :0.5187411282106204 +of:0.12683726124759198 on:0.07692408861081951 the:0.06944381182521533 in:0.04245445178762474 to:0.03608936499864837 and:0.03463270599767841 :0.02825502453270117 at:0.020571518849831074 by:0.018928603631303036 for:0.018761898857731062 from:0.013699160086197927 day:0.011834315016414795 In:0.011186351907668785 was:0.01038861085065573 that:0.010199901422541652 a:0.010070162940120315 which:0.009551188266776518 State:0.008947167869053342 or:0.008684904703347788 :0.43153950659807844 +the:0.13717805968267444 and:0.07690577015722308 of:0.061297249042934064 to:0.036177242436372305 a:0.03455555496212922 in:0.02603939378588615 is:0.02083757947140879 or:0.01717111216919622 be:0.01671542466276522 an:0.016083205172968587 was:0.01586949200843327 Mr.:0.014175157471408057 that:0.013604351951324362 not:0.013174472007802553 I:0.012988172408362647 for:0.011003046639377014 :0.010998169523015654 by:0.010932195176261419 tho:0.010719656400824779 :0.4425746948696322 +the:0.25062999656524676 a:0.10710591876665189 at:0.08024758882638856 of:0.04997602528163027 to:0.047010501718150216 and:0.046268003034418366 The:0.021520555003918116 on:0.01948131727505317 an:0.019404061972639452 in:0.019309389577896054 tho:0.016803128364433578 his:0.01636488938310101 from:0.015374841220740638 this:0.01149017790373687 :0.010492605459692753 for:0.010427192802089967 that:0.010374933120643323 tbe:0.007823124331196396 its:0.0066083012422413195 :0.23228744815013128 +and:0.1669840475084391 all:0.08133906077060103 of:0.04047708910752074 but:0.032206598759353805 said:0.03170799318187557 that:0.024821145202185955 All:0.022559239651799866 so:0.021687345219587536 than:0.02143139905624843 as:0.020753419533385997 fact:0.01900617945496714 say:0.018538041670268672 says:0.015230765099751131 for:0.014830315275818256 thing:0.014183627420446274 know:0.012889514186121104 believe:0.012444658647756743 one:0.011819105585220428 think:0.011258738424083528 :0.4048317162445687 +the:0.631928109398423 an:0.05541867131743001 The:0.05453496732188268 tho:0.039262369437396825 a:0.023642169803683735 great:0.023126919900693904 tbe:0.016956397629548425 large:0.01343970681374484 of:0.012297499126816571 and:0.012022989265494307 other:0.011446444942981488 vast:0.009349058562320952 this:0.00831487190294233 whole:0.008246392628614471 in:0.007575623494762453 Republican:0.006165546599247031 entire:0.005835540845412793 new:0.005586505576303681 his:0.005564747514231253 :0.048285467918069286 +the:0.1641320911864556 of:0.10963561514902358 to:0.05993589229439846 and:0.04208926764956589 in:0.019221005540290003 be:0.01918552126025394 for:0.017445399739083878 :0.014664063357480404 a:0.014069170585525209 was:0.013733291802570586 or:0.012468520814202116 his:0.011799879485955518 at:0.010696823819775148 by:0.010119018117454564 that:0.010046356341542622 is:0.009673674731749014 on:0.009564704884264759 their:0.009040151420537667 were:0.008959694247019914 :0.4325198575728511 +he:0.12761101919637743 and:0.09795190207314333 it:0.0892017409016598 who:0.07258085453563033 which:0.06640753693936889 It:0.0654586895683036 He:0.052267879299969254 that:0.04996322360903903 there:0.030744435830056212 she:0.02586080283848844 There:0.025609600216233434 She:0.012596648480585839 lie:0.010031554003091548 ho:0.009437928368285449 one:0.0084641040719911 man:0.008328399317006413 This:0.008093156997146972 as:0.007914596294616865 time:0.007067691465499629 :0.22340823599350645 +the:0.1562497042329088 and:0.09674074791082925 of:0.09010559638226832 a:0.0684695656149656 to:0.052071639147371326 in:0.02834941377281695 or:0.027874751773263522 all:0.024663723241170905 for:0.021284467683144497 an:0.02121383748412484 with:0.018281606713814024 their:0.015985835720560157 be:0.01565644966325288 at:0.013904151138553688 his:0.013475683816285548 is:0.012642963818653624 as:0.011423357677900321 .:0.011120197024395817 tho:0.010245535682353785 :0.2892407715013662 +a:0.44899931672139826 the:0.14513631704942762 young:0.08182103483004627 A:0.04464505590948373 The:0.03162352507718068 one:0.02957280258256945 every:0.022373320054836037 old:0.0164171146373523 of:0.016230380639505736 no:0.012808188922577325 that:0.012783135919021615 colored:0.011958750403797295 white:0.009504690112810904 No:0.008239354877394998 any:0.007910690403870999 Every:0.006909871126945797 tho:0.006845070116266539 and:0.006576502436845052 poor:0.005306102844979148 :0.07333877533369026 +of:0.22853131374263463 his:0.1204328009333849 the:0.11753287437642675 a:0.06924589711738557 my:0.04788137435062928 her:0.037270561401277554 their:0.03334885957204782 for:0.025587307807099356 and:0.0214722107397456 your:0.01824757568697999 our:0.01781258829393611 its:0.016417067825143235 in:0.0163468727049945 on:0.014220787942506969 all:0.01272365600538169 with:0.011824369102404883 that:0.011276879293341587 whose:0.010707528063912035 other:0.009358325336348406 :0.15876114970441912 +he:0.13437453525037713 and:0.1316919622797607 had:0.10580434093672297 have:0.10019946217283612 has:0.07163835800907896 they:0.04925760761025928 I:0.04667964782838022 we:0.0440580204589912 who:0.03125294468288905 which:0.025568043849097936 she:0.02257417453556665 be:0.021848805348419854 He:0.020861750259586163 it:0.019218866242037183 then:0.01708209376564072 was:0.01670183829769961 having:0.013120695445692467 is:0.011840229923789213 never:0.011427889774684022 :0.1037987333284905 +the:0.1904899928531865 of:0.1172740795430275 and:0.07225665189339416 in:0.04611503042529724 a:0.04006189953358259 to:0.03554477694188653 his:0.0260146259938622 instru-:0.025634931027636573 their:0.02425269225834832 govern-:0.023017875612621953 for:0.022364515271286814 The:0.021027061643282427 In:0.02004826779247459 tho:0.014490834747660636 on:0.012073202864123478 regi-:0.01151757230852574 by:0.010968732886962422 with:0.010470343942268872 its:0.009689668643355534 :0.2656872438172159 +and:0.1487439812669867 of:0.048804638372984877 so:0.045617562994346154 said:0.04512849336248965 fact:0.04247418273960645 to:0.03172775127963019 all:0.02782886763477251 is:0.0275569439603598 given:0.02512777439402322 stated:0.025010658258772175 say:0.025006219305015186 as:0.022529488630150113 says:0.019143737763523627 was:0.018688012443718923 found:0.017797638660303258 given,:0.017700655850563133 believe:0.016562097686993897 than:0.016551605189846105 show:0.015724619230125476 :0.36127507097578854 +one:0.1028303141280697 part:0.05963429477052991 out:0.04766456937681193 some:0.031418679026461914 members:0.030764490253327767 side:0.029940657362655835 portion:0.022063658796890564 office:0.020457735219956013 member:0.019726706386316174 end:0.019666887540649894 tion:0.018667441728710307 parts:0.016814747270460957 people:0.014112771422418794 all:0.014072739582212475 any:0.013183573287639892 One:0.013083578354183906 that:0.013024335602903442 account:0.012482348155001894 many:0.012077825070275192 :0.48731264666452345 +and:0.07948773906291683 was:0.043543228952947204 interest:0.028481515001048428 made:0.026880946886478303 is:0.02650309044416396 put:0.023703418147941403 be:0.021194688219356696 are:0.019696368762763306 placed:0.0183092044639128 committee:0.01810811702739677 were:0.017595374509633017 went:0.017171649264384102 it:0.017012928592461483 that:0.016440442419669972 called:0.016195372146356107 came:0.016120736599904886 go:0.01587320601300078 Committee:0.014880025964614688 them:0.014464478176375743 :0.5473374693446735 +and:0.05448520979081001 of:0.025244080737535403 or:0.01914828442666631 person-:0.01423820492984165 to:0.012781437635763374 :0.010733072384365239 for:0.00999339060042451 on:0.008669096662812304 a:0.008411692243463362 the:0.007298126668175831 one:0.005993870078149884 feet:0.005843751817075649 day:0.005731912179909315 et:0.005652057729229731 State:0.005024753058984042 -:0.00499053773908352 mor-:0.00497276716049841 at:0.004861421871890837 that:0.0048091809155184125 :0.7801171513698022 +of:0.22398734176807628 to:0.10728109850274938 that:0.08285414334264771 on:0.06617569116473056 and:0.06606297070886698 by:0.059739076637945185 in:0.043917106314852516 under:0.03948774230055677 for:0.035344994926929135 with:0.034714640587058546 from:0.03238744843494538 as:0.022521209037701884 upon:0.019919590545002558 when:0.0169226385948572 at:0.016303913210538583 which:0.013275869268328347 into:0.01075822822659307 all:0.010547796708827007 where:0.010407545628536342 :0.08639095409025657 +as:0.17819355779963655 and:0.13608573744602426 even:0.04643123638128818 al-:0.04435007451887921 and,:0.04401174563857155 that:0.029233428403184766 which,:0.017535559423824048 that,:0.014896754047070321 al¬:0.014039213906492036 but:0.012693374172009657 ;:0.011944574919937232 al­:0.008938099021239905 or:0.008287430297136725 it,:0.007456052423446681 who,:0.007150154957604002 time:0.0064192611556137735 him,:0.006011595821692019 of:0.005923708784181251 was:0.005705514671916052 :0.3936929262102518 +that:0.22237177970404692 and:0.07704322639108734 as:0.05345922853734138 but:0.047121072236143376 if:0.03661348329085378 which:0.029769775025724497 what:0.022109615207773835 when:0.020200699735094137 think:0.016742712634118764 thought:0.01605519427044558 If:0.015937628650265233 But:0.012994120135003485 where:0.010866850458442554 time:0.010503148274762734 because:0.010242348126466846 :0.009979873644251652 than:0.009193847581952564 it.:0.008503737686345167 me.:0.007815070982332995 :0.3614765874275472 +of:0.24741596081904385 in:0.16570170456546335 to:0.12472657767431063 on:0.04292393837511747 with:0.04143468651360029 In:0.03962486251502941 and:0.036772408510873864 for:0.03669036194048412 that:0.03482179791567607 from:0.03306658335867529 by:0.028643685432196954 at:0.02141685899869789 into:0.014626195551429041 upon:0.01386277177485078 as:0.012690658996706638 under:0.012015383480360103 all:0.010932622920040668 is:0.010057992092256258 through:0.008070116825505626 :0.06350483173968174 +six:0.07564099657493574 two:0.0715042148065022 three:0.06611648712069154 hundred:0.044796817090455285 15:0.03948442579397591 20:0.03527374934438644 10:0.034363224985621846 30:0.034358321750391815 100:0.033539488604145726 five:0.033321912001543816 3:0.03172780385258713 four:0.030642918450635236 50:0.02845938361595836 sixteen:0.026497088535967543 eight:0.025486119226679146 16:0.02341703782134374 40:0.02257766390218349 8:0.022359725088245443 ten:0.021965401843656182 :0.2974672195900934 +as:0.08507847500608172 and:0.07238399167470395 go:0.04038918892215685 went:0.039523790587195046 time:0.03387335767057021 way:0.02975958654799246 up:0.029308576258137 order:0.026071327065100996 according:0.0260008826298838 feet:0.02126495143914951 made:0.021002540879200327 sent:0.019978650477110397 right:0.018966430021655246 able:0.018325972156784012 back:0.017411748604043337 going:0.016790394738309174 power:0.016610789828817946 regard:0.01577214442176098 him:0.01471698869019133 :0.4357702123811557 +in:0.12584751051357324 of:0.09759502479664728 the:0.07371839375246729 and:0.055651754291004454 for:0.04744536705298647 a:0.032925964492396737 to:0.03198260274187316 In:0.029652859996176964 was:0.017176340234656633 by:0.01637913782528117 are:0.015624529717594675 be:0.015359740034713075 from:0.015332737536474472 that:0.014587063309917358 is:0.012292937239714764 which:0.011956538642930331 were:0.011584038466634639 been:0.010892258706962473 with:0.010501774296364555 :0.3524934263516303 +of:0.0997189844422773 the:0.054289609561946284 and:0.05351474437350224 to:0.04431914150711643 in:0.0373078797507159 on:0.02792923011916643 :0.026109150436977802 for:0.024441119694557936 that:0.019658678137909828 or:0.017553382131443057 by:0.01563425473057109 at:0.015091272479421857 said:0.011867185935300173 In:0.011218491887140762 was:0.01118988280166014 be:0.011058153072677653 with:0.010789462001820583 from:0.010687179558201731 is:0.010572309194822787 :0.48604988818277 +the:0.45978255901124715 and:0.15835770820675837 The:0.04781718310927796 of:0.04088098169732701 tho:0.03351229749448264 a:0.02486648880082751 that:0.019571464158797586 by:0.01746847810919389 with:0.014505659033666901 in:0.013933062664449082 tbe:0.013185552826525176 for:0.012776694618629143 as:0.010863686501874269 to:0.010131415372098003 this:0.007988934014717466 or:0.0076650480356485 great:0.0075950806611730275 all:0.005543817186698626 some:0.005422048903714458 :0.08713183959289321 +the:0.31741576922249537 fruit:0.07938496787773232 The:0.07756191736136826 of:0.06860417206236524 apple:0.04788049776723629 and:0.027017519642342242 peach:0.018806271540841003 these:0.017782331669898448 their:0.016086898762040735 that:0.01586409262721923 tho:0.01549511491692215 our:0.013715885912260138 his:0.013637561323156574 shade:0.011116184547834645 other:0.009880067403919857 two:0.009012296027161278 forest:0.008395134101800775 all:0.00825570373796605 tbe:0.007583326416978049 :0.21550428707846128 +the:0.08741288820481248 and:0.07392080242938477 be:0.0572668144792991 was:0.05686739458441792 of:0.05297029938296901 to:0.040095074017987696 is:0.03448309022071693 been:0.028380973754521515 a:0.02485235362607966 are:0.02226522268065813 were:0.019682022343204007 in:0.019454144698829248 or:0.019273705289081854 as:0.0158232132157123 not:0.012361914460680723 being:0.010097596398749334 for:0.009388164492904385 :0.00930537568905371 their:0.00894740846790883 :0.3961515415630284 +of:0.12594983134147145 in:0.12264248379852738 the:0.11068877857868062 for:0.10428979235285428 and:0.08006747383848387 with:0.06309138267965332 In:0.04807463722884631 that:0.04690339578461634 so:0.04363143656086015 by:0.033108839765580954 are:0.03099625304225483 great:0.030412772140946155 as:0.02992533535109605 to:0.023229697479414838 how:0.017644237547882996 too:0.015349237096580377 but:0.013557424967862773 from:0.010539345623078568 good:0.009882777050275475 :0.03901486777103328 +a:0.17318718303071431 the:0.1508425338704391 and:0.05876226826817243 an:0.04975779157158365 of:0.04173431703957771 that:0.03043159892540567 any:0.027795468506368062 as:0.019411794653158652 no:0.015694881142325496 for:0.015358333924640461 The:0.01466965074670526 to:0.012748384112026185 such:0.012586983189270923 or:0.01213004964444885 in:0.011619346646739215 which:0.010749006832696384 this:0.010178086541462473 tho:0.008012916687429632 all:0.0075203665367640955 :0.31580903813007144 +of:0.3716387075413922 in:0.09671903698821724 to:0.0772075233545754 that:0.03470020597158995 by:0.03467173475791107 for:0.03263341336115185 with:0.028661689284926923 and:0.02333245779896124 from:0.02206771351492586 on:0.021639399931672236 all:0.01921934823067841 In:0.018242067024192923 is:0.013988758873468544 at:0.01381994875305849 as:0.013504059774881573 upon:0.011235428945220331 was:0.008596785620363236 over:0.007942663213454808 which:0.007712703129565481 :0.14146635392979218 +one:0.1028303141280697 part:0.05963429477052991 out:0.04766456937681193 some:0.031418679026461914 members:0.030764490253327767 side:0.029940657362655835 portion:0.022063658796890564 office:0.020457735219956013 member:0.019726706386316174 end:0.019666887540649894 tion:0.018667441728710307 parts:0.016814747270460957 people:0.014112771422418794 all:0.014072739582212475 any:0.013183573287639892 One:0.013083578354183906 that:0.013024335602903442 account:0.012482348155001894 many:0.012077825070275192 :0.48731264666452345 +in:0.12746279106307462 of:0.11029486431301129 and:0.08177553518412513 with:0.054686079378093826 by:0.05118950811309804 the:0.044868435612692964 In:0.03655228543521423 a:0.034503699062246304 is:0.029830853529053333 be:0.027478185305260285 no:0.026701945095383102 are:0.025453817930273365 was:0.024232271482095804 to:0.019531056663942687 or:0.017977263054279 an:0.015562942334268269 without:0.01402020042299419 most:0.013432277377622788 from:0.01177245169003702 :0.23167353695323376 +:0.046237015119429764 and:0.031904411120962504 was:0.014602759876110484 that:0.010353994003640602 feet:0.009410149907305525 up:0.009395797697738953 .:0.008835445735219076 put:0.008519415673122595 were:0.008233145321807188 it:0.006579798134648378 as:0.006387474879134956 came:0.006340630507198931 it.:0.0062282735568131384 situated:0.006149055560451983 them:0.006127620860683796 thence:0.006062369065711543 are:0.005874504660565372 men:0.005697051534252181 is:0.005605975488250403 :0.7904551112969527 +is:0.0654008885567233 and:0.048700023012978724 right:0.045529788978380586 was:0.04098825417469251 able:0.03934552115343557 him:0.038449262198526415 me:0.030846020597923653 have:0.030699805155385246 had:0.030434238371277574 refused:0.026336892183691712 order:0.025877848562271457 enough:0.024628778809447683 them:0.023191210149440634 willing:0.022902175061661336 began:0.022627375953651056 necessary:0.022282892255264752 seemed:0.022256069958618403 not:0.021555763943217936 as:0.021152609485652563 :0.39579458143775886 +cut:0.08402821493815316 falling:0.04074855248541476 feet:0.028891792128303336 taken:0.028775763879439968 came:0.02845349251968041 went:0.027660723981501763 come:0.027602903093173734 it:0.022197033338905513 them:0.02068480560534857 him:0.01897402830325195 go:0.017735074433925194 set:0.01727943109304784 broken:0.016253087622623015 get:0.01587203975336707 started:0.01573737425188327 shut:0.015518076616672833 cutting:0.01522053842224633 carried:0.015200050115583764 inches:0.01417792932919458 :0.5279890880882829 +the:0.2072179691214852 and:0.08343289467666853 a:0.051872622496346936 of:0.04874496237327263 to:0.03731080767112698 The:0.03036961723789845 that:0.023109732998493032 in:0.02046349723563945 as:0.015320427595812555 tho:0.014759641150879846 :0.00987821128657443 or:0.00978117420744253 do:0.009526982602442852 which:0.009133522328343736 their:0.008495146421899037 his:0.00845641179676572 on:0.00812094753652333 for:0.007601572880278345 will:0.007305423609296452 :0.3880984347728099 +and:0.07434180745142613 asked:0.02484482253141404 him:0.023829817636205626 but:0.022305487944742127 them:0.022281761326168728 reason:0.0197583930397064 that:0.017062502465173157 it:0.016763949431296016 do:0.016635331311266658 demand:0.016472969068000817 time:0.015909598101955042 vote:0.014929668005359373 made:0.014036368935446126 paid:0.012565798529183719 care:0.012457433739457508 out:0.011919028047776052 work:0.01100431367475652 not:0.010966885159495184 cared:0.010861173601146322 :0.6300528900000244 +of:0.3283886248199915 in:0.12329411516331124 to:0.09268467358652312 by:0.057394047668252166 that:0.049644165338565756 and:0.04638747057793053 on:0.04184097479210804 from:0.03765909810944798 for:0.031218649091324494 In:0.023950502171859886 with:0.02258695179433804 upon:0.01353179667109752 which:0.01147971468644445 at:0.011458422995407315 into:0.010521993646280637 through:0.008946402190398417 as:0.00848059921343237 under:0.006333490719416409 along:0.0061545214622146785 :0.06704378530165547 +the:0.07338415047608214 .:0.06580993758549158 and:0.06404703783913043 to:0.05640696529027984 of:0.053379379684834194 :0.051670402186116855 by:0.021992389820946055 in:0.02143878468013842 8.:0.013780475450421464 with:0.013598616846738827 Mrs.:0.012555994166235252 from:0.011238056457566915 St.:0.00964907480514814 as:0.009486981359014672 said:0.008695461369369425 1:0.008429714188171141 No.:0.008243817749168781 at:0.007581893119056384 or:0.007052780677877497 :0.480558086248212 +of:0.1738959498516334 in:0.08788764385053484 as:0.07293945389171524 at:0.0534421901603252 by:0.048755419371891054 with:0.045842481122465244 to:0.04517772556746796 and:0.04390185570494942 for:0.04260837527194253 that:0.038211133772927085 such:0.03356727787982378 is:0.027507107113051054 on:0.026350577404897747 from:0.025864446286943097 In:0.01864523972885814 was:0.018435407046143115 be:0.01342980872164373 if:0.01146434462060422 than:0.0103771986312025 :0.16069636400098067 +the:0.3256459061218848 and:0.04604540454319046 a:0.02763824293565771 tho:0.02090629875302884 of:0.01987637857219143 The:0.018562027223412568 on:0.0173092906724546 in:0.015975060022572297 or:0.014199663196321427 to:0.013548085234780995 all:0.012988171248160103 tbe:0.011925010128393934 said:0.009895867760976665 by:0.009282096242097542 any:0.008931937612731145 some:0.00890384154652288 :0.008699798063494314 other:0.008639136513170817 that:0.00822675993337539 :0.39180102367558206 +and:0.09126337034356463 of:0.06827575766601397 to:0.054525739666159555 the:0.050957068511428484 that:0.048023256267941725 for:0.025638941577972977 in:0.025039445128229625 was:0.024150096586788166 but:0.02259951478848169 a:0.021652931866681678 is:0.01545535502659967 I:0.014589172433269047 this:0.011949540009063807 with:0.011717928648687563 from:0.01033816603452951 not:0.009604175276781372 In:0.009093469946647493 or:0.008879525171581514 which:0.008619587960675976 :0.46662695708890156 +of:0.09129790931378902 the:0.07369883040827747 and:0.047842263382354346 in:0.04189055351593407 to:0.04045875475680249 a:0.03542341257202578 be:0.02020462051672066 for:0.01979292654746225 was:0.01760256398103379 at:0.017380150555488715 is:0.014984483003968216 with:0.014047653760730413 by:0.01374644383819499 :0.012670486581795598 In:0.01200961464556976 or:0.011563835749786333 from:0.011391516893522809 are:0.011273104484969465 that:0.010755276030689069 :0.4809655994608848 +and:0.16049581817151415 days:0.12421407736299125 that:0.0423682206330914 soon:0.03997607409853832 day:0.03853013976753467 years:0.034858151579927776 time:0.032184224911167784 immediately:0.031027442384911633 months:0.02949846719328513 until:0.02693334717058679 shortly:0.025140972811606627 Immediately:0.022637260732891244 Soon:0.022478971419624814 year:0.021042275781545983 Shortly:0.01926602969104937 look:0.01898255565038351 but:0.017248979348461858 and,:0.017059118292236632 long:0.013923833299873161 :0.26113403969877785 +the:0.5737770958690172 an:0.03467090109161399 tho:0.034075828360040805 north:0.024501140987186705 south:0.02270008286898892 west:0.020997076523278372 lower:0.020399497483376768 a:0.020266471192755195 this:0.020233066544990682 The:0.02012875311487988 upper:0.01802774144184572 east:0.01710292189505515 and:0.016723717993392135 one:0.01643810304495542 tbe:0.014571583388934753 that:0.00906956272920847 first:0.007634184319374195 rear:0.0072666680683378644 said:0.00623487590926857 :0.09418072717349923 +the:0.1454500361787387 of:0.1080247151493501 to:0.04516715868785427 boy.:0.036249098323069925 and:0.03403580073245388 girl.:0.032660326140049385 a:0.03171979252021135 in:0.02714044436566853 for:0.02365213940166824 be:0.021942286684630472 their:0.021087116084698817 his:0.019774122064073623 was:0.014637031197642503 with:0.014008395154201525 are:0.012730720509515858 is:0.011363112041341867 as:0.011357870543086747 from:0.01063391638067422 were:0.010589399829418696 :0.3667765180116513 +and:0.07509181549710321 as:0.048377730772513304 up:0.03174734764183977 it:0.02974521973049959 addition:0.029052444965490674 according:0.025026137733327552 them:0.02439032081756059 him:0.021141882604111605 entitled:0.02066828821018786 equal:0.019499000932593165 due:0.017818130139896176 amounting:0.016990873158777453 reference:0.01634333593035152 regard:0.015948001651902542 attention:0.015905127313055694 is:0.01586790264329058 known:0.014974628250434574 subject:0.014935219297093917 go:0.014781447838247985 :0.5306951448717223 +the:0.21746647708339653 and:0.15073826438289828 of:0.08356954270143903 a:0.05690413431104925 that:0.05498304768375479 by:0.0477250662015525 in:0.02949472680633935 The:0.028788301691815458 as:0.028359920407077525 was:0.023784829918449418 to:0.02151885203695721 from:0.018943371051526693 are:0.014454918405207053 is:0.01403029357827222 with:0.01265078038119008 tho:0.011583263287130025 on:0.011146043444415955 be:0.01110549499333195 for:0.010620049845212422 :0.15113262178898423 +the:0.47410535437853646 an:0.04969736186586235 of:0.04763914243355294 The:0.04091513673651911 tho:0.03910792814124051 to:0.03486717410970443 a:0.028741726103850566 and:0.027234538608283575 his:0.02537684681397147 our:0.016609828801921737 tbe:0.014758694963289964 your:0.012625821958868631 :0.011574390892430677 her:0.011235712239251294 pro-:0.011083810511856217 their:0.010835782742893256 on:0.009795246611396368 by:0.008553748896007017 said:0.008315691137305731 :0.11592606205325773 +the:0.6183971150509611 The:0.054181305928081354 and:0.0501902189322483 of:0.030374342104895192 tho:0.026403316303315816 other:0.025577526654892577 or:0.017393728378758803 all:0.01175049862642286 tbe:0.010485785508424095 these:0.009228428548410774 two:0.008082065888978453 county:0.007912131677851049 by:0.007684562142949305 in:0.0073087969170236265 state:0.006875847425118061 naval:0.005924548044694698 State:0.005367492756303581 a:0.005070318912261793 principal:0.00458882704462797 :0.08620314315378062 +law:0.03158208243447977 action:0.03154514939620008 man:0.022299402727820883 one:0.01758998327364955 whether:0.01628201309799428 person:0.015721865763923166 him:0.013971987926352094 that:0.012284420073174271 in:0.012277252074037669 day:0.011517264333356923 for:0.011239662422459024 right:0.011011036687551313 and:0.010981490818903188 work:0.010206582625295998 out:0.009732644225829758 money:0.009622309677509929 them:0.009565086509177163 city:0.00923143221250507 them,:0.009143137411693848 :0.723195196308086 +the:0.4602385287661499 of:0.1716451739760099 The:0.04132572935960489 their:0.030975263243078453 and:0.028164802945955747 on:0.02272049716987707 our:0.02234242545166435 his:0.02146384452817528 tho:0.021448338073146264 its:0.019172674505367915 in:0.017317169715057684 a:0.01700409412340646 with:0.009709541462502646 for:0.008667176253922269 to:0.008302385576288158 this:0.008021784894081244 an:0.007840737108544655 great:0.0069613610161586206 these:0.006709385091166116 :0.06896908673984237 +the:0.6919020160064584 tho:0.03656741756295216 and:0.0251851377593399 The:0.024771682882530035 a:0.020933201624791956 bearing:0.018671923340621017 from:0.016646194011540424 tbe:0.015287990291408872 that:0.014254362088901676 on:0.014045324344508003 to:0.013907965641318493 this:0.012576911387623691 long:0.008801392148372044 said:0.007984823710907168 of:0.007298991511483628 at:0.006477318151787794 by:0.00579830674874152 in:0.00467329673012424 candi-:0.004529389444383231 :0.04868635461220572 +of:0.3221992532776215 to:0.08968360416755888 by:0.06527663593377389 in:0.0595350566493856 and:0.059085735898673546 for:0.05614749954083899 that:0.04038520981497897 with:0.0353409325357855 all:0.03187280017451989 on:0.029792764735144153 from:0.025113347570256923 at:0.022013907815447795 In:0.014438528925459547 upon:0.011627453828058907 as:0.010554361029249126 under:0.010066067793087021 than:0.009203587663419062 before:0.007976940012673793 when:0.007273452556701654 :0.09141286007736531 +of:0.09129790931378902 the:0.07369883040827747 and:0.047842263382354346 in:0.04189055351593407 to:0.04045875475680249 a:0.03542341257202578 be:0.02020462051672066 for:0.01979292654746225 was:0.01760256398103379 at:0.017380150555488715 is:0.014984483003968216 with:0.014047653760730413 by:0.01374644383819499 :0.012670486581795598 In:0.01200961464556976 or:0.011563835749786333 from:0.011391516893522809 are:0.011273104484969465 that:0.010755276030689069 :0.4809655994608848 +and:0.18919267712805116 of:0.07758163166097307 thence:0.07388869197377644 feet:0.043602416572346155 was:0.03377093145406939 in:0.025767776762329914 the:0.02544735266579359 by:0.022719481743537218 to:0.021861721419374498 were:0.014328376208797254 No.:0.01350361128063224 from:0.012645157961596161 or:0.011324997202827286 miles:0.01117637190255564 street:0.010978345854984682 1:0.010336841763575176 is:0.010319734735232091 at:0.010180194139963164 feet;:0.009947766185159503 :0.37042592138442537 +of:0.3184190360443104 to:0.09837906929557073 that:0.09130553659096319 by:0.07716162857593323 and:0.07688457445143693 with:0.03906316830091578 for:0.025965737317318032 as:0.02542658772834525 all:0.023506616441147255 which:0.01968652879663868 among:0.01841207866951537 in:0.017513619642541476 when:0.01720235800928863 from:0.015449175925616863 on:0.014523860288414415 but:0.011312790402103057 if:0.010474920730546195 where:0.009647153854551638 upon:0.009387241003742929 :0.07927831793109999 +of:0.09129790931378902 the:0.07369883040827747 and:0.047842263382354346 in:0.04189055351593407 to:0.04045875475680249 a:0.03542341257202578 be:0.02020462051672066 for:0.01979292654746225 was:0.01760256398103379 at:0.017380150555488715 is:0.014984483003968216 with:0.014047653760730413 by:0.01374644383819499 :0.012670486581795598 In:0.01200961464556976 or:0.011563835749786333 from:0.011391516893522809 are:0.011273104484969465 that:0.010755276030689069 :0.4809655994608848 +to:0.47973497673173526 will:0.05474047359466754 and:0.04590453754464027 I:0.039903864290182854 would:0.03890771154609506 we:0.03655956575478443 they:0.035248268184000765 not:0.03144163001834618 can:0.031394131483950274 you:0.028230298291356405 could:0.023459937882371187 who:0.0141051175815957 should:0.013653051496657872 We:0.013086572169777185 may:0.010435099764874254 To:0.01028865472700841 must:0.009088631537940067 Nor:0.008664902333370776 nor:0.0082257226895828 :0.06592685237706271 +the:0.09684081064840576 and:0.06551335624548284 of:0.05146145169206151 from:0.049520598669154245 a:0.045427902131977435 to:0.0370403239153822 be:0.035669151526387034 was:0.030489628475080553 is:0.026635804908522978 in:0.023878514238638158 are:0.018513936943033917 not:0.017945708099223703 or:0.017556265685966497 been:0.014265228721347686 at:0.013857211504087178 he:0.013733215789660087 were:0.012396679125422956 I:0.012347944480187516 for:0.012197989992860347 :0.4037082772071174 +of:0.29233326745200094 in:0.1501927360795137 to:0.1242159706411916 In:0.06318785429198702 at:0.05110130791071131 from:0.04062878115601739 on:0.039878626492508625 for:0.029019455944020077 and:0.02642206763253725 by:0.02594804291685056 with:0.020712923356730344 that:0.01660445537216307 into:0.013211019428630552 through:0.010213094859824511 over:0.009214190523230054 about:0.008206576270237614 ot:0.007497258519457218 within:0.007223131450751777 upon:0.007088002154492393 :0.056101237547143995 +a:0.13741040744631908 the:0.09264542586565497 of:0.07354406574075927 to:0.07200752425518711 and:0.06556604097390543 in:0.03727562263890272 for:0.02643310538793239 at:0.025377916309538777 with:0.015212605368842705 that:0.013976418719759005 :0.012384712351406413 as:0.0114717302084524 or:0.011458430834157362 his:0.011027411502142679 which:0.010135412583633112 from:0.010063483023460145 In:0.009302031471518027 by:0.009255536988491018 The:0.009102651320175539 :0.3453494670097619 +the:0.11076639060148961 a:0.07849534528798262 and:0.07662355077029165 of:0.07260297245149884 to:0.052614458906641126 in:0.02898323381454322 be:0.028619334122366183 was:0.018316043946281182 is:0.016699142604069347 or:0.015571116417843511 for:0.013777377220018703 his:0.013466243388399383 been:0.012200092708878738 .:0.011651566712874907 :0.01138899460054603 their:0.010869189054887483 no:0.010269055828557971 not:0.010112362588368682 an:0.009710495306262912 :0.3962630336681979 +the:0.27381103256288447 in:0.16773934127448373 a:0.08733464340877245 of:0.07622768630683247 for:0.06693710176886034 his:0.04442630079548381 In:0.032747159368860926 their:0.029793635344137825 and:0.02385022596575228 to:0.020489684198749792 our:0.018340662370750164 on:0.017415669755749045 tho:0.016364666014839796 all:0.01618097063863837 its:0.014430312681333612 The:0.014030873246893326 by:0.012731992331355791 any:0.012354978660805512 with:0.011654533359481306 :0.04213852994533502 +of:0.33397817103523736 in:0.10422723642436241 to:0.06651762106889687 on:0.05916087629812981 for:0.05896155553531247 and:0.052412336119627 that:0.03436288142879966 from:0.03233372735586052 by:0.03178970467673738 with:0.024618868887783283 In:0.020354048828864352 all:0.016381239457410338 as:0.014766594238246972 at:0.014239466574290744 into:0.010419567858874573 upon:0.009594347807195248 over:0.009189209783951728 through:0.007783697545062375 before:0.0066466250012393166 :0.09126222407411756 +six:0.09155649358365657 two:0.062421652395996924 12:0.06187530937093547 four:0.05995362400755877 twelve:0.05286368338881615 hundred:0.05097561661828928 twenty:0.050255806920117975 five:0.0499676931458667 ten:0.04919032452309144 30:0.04663737797072761 eight:0.04493354124859349 25:0.042107042196916314 fifteen:0.039890469074399415 20:0.039704172521782606 15:0.039490951573397 50:0.03931409391845229 three:0.038125494944477964 10:0.03711502624098404 seven:0.03456962362585518 :0.0680520027300848 +of:0.19449136774938716 to:0.10021401411726047 make:0.07884961724160452 with:0.07570180386238115 let:0.051769899720463766 give:0.045563167598445795 take:0.044987548672319674 among:0.04306132246415509 for:0.03976512578581903 keep:0.032720414747865585 in:0.026722492855336753 upon:0.026452960929957126 by:0.023034639993018947 took:0.019280307128219647 made:0.018438728751711413 gave:0.016615871827365326 have:0.015777462180132935 put:0.01482609818034232 makes:0.014563944733974134 :0.11616321146023915 +degrees:0.07878775380620066 the:0.06200731592146931 :0.049881150646085184 and:0.04257209558898926 thence:0.02155808541662286 .:0.0198587195216449 J:0.014901507449896824 of:0.013520990571364267 W:0.013057007695081332 The:0.01297690956416864 1:0.01202660281745423 street:0.011416724412874614 minutes:0.010943268225100403 grees:0.010660285821015051 State:0.007439474692519939 S:0.0063454392826334865 street,:0.005785834358072178 C:0.0056012863165759005 by:0.005492344675161031 :0.59416720321707 +of:0.2377566801654028 on:0.14164607026624884 dated:0.09150145468590365 from:0.04634594400752009 in:0.040573960977593575 to:0.035214124897423316 at:0.034688224629244806 and:0.0313476700120224 the:0.024505099291399136 On:0.023694065441448548 for:0.022841233174234938 by:0.017080648234817385 In:0.011620007517214483 Tuesday,:0.010653680780150793 with:0.010268126457137648 Monday,:0.009345325044960988 Dated:0.008803875730547297 seller:0.008048598738376041 :0.007978046871506553 :0.1850871630768467 +the:0.5239999542326839 The:0.16493535364730208 tho:0.03653801340751035 an:0.03372697721490218 his:0.02862838137697047 our:0.02326625444038777 this:0.02178093436476157 This:0.018189294945677212 a:0.01737769943296193 that:0.015517677641647952 their:0.014890085778618745 her:0.012931153148472516 tbe:0.01025577941849949 His:0.009640986727827322 and:0.0094123828505351 An:0.009073840520626148 of:0.008985376012991094 Tho:0.00875057780285079 your:0.008638644171863512 :0.022460632862909877 +in:0.27906598408595085 of:0.23851212478346795 to:0.08845521534704216 In:0.05427727704240024 from:0.04668215129647611 for:0.03840035047209396 on:0.0380120388137773 at:0.029607039587778248 into:0.026509032140316715 with:0.022437150605677757 by:0.018049015878898088 through:0.014277603575996565 and:0.013385187094639059 upon:0.011830705854116668 over:0.010233370745953648 that:0.009365164479686017 across:0.007634112140153454 as:0.006340902554319112 along:0.006329177395352153 :0.039596396105903924 +it:0.11857892928876056 which:0.10419954526017984 It:0.10229720510101595 that:0.06796245048918885 who:0.06088908826247786 he:0.060731706658395446 there:0.047718276913133226 and:0.0298646407467943 There:0.025721626378001235 He:0.023765504777663107 default:0.02149030696489031 as:0.019132676760165265 This:0.015088553278066501 she:0.01413948392901254 what:0.014110548249504374 this:0.009613248172212615 work:0.008813388419150843 man:0.006677000754574867 country:0.0066605789516794795 :0.24154524064513283 +for:0.1461231842923284 is:0.10887896135491447 was:0.07789520741180944 of:0.07692947587985094 with:0.07598235698730751 in:0.05936130601875085 to:0.052604150490983756 as:0.05157331075018476 at:0.0374842524864794 by:0.035845450298878256 and:0.03386701608125346 be:0.031337761588937085 such:0.027459395185026155 have:0.024832712568679007 that:0.024668198237542384 not:0.0182926990963877 had:0.017835568925325587 In:0.01726480293406376 Is:0.016971734928778882 :0.06379245448251819 +and:0.10679565295880987 was:0.07901755271478068 is:0.0663966674256871 placed:0.04382011640712587 be:0.03631004904039933 that:0.03607318148579851 as:0.031918049047460255 are:0.028857041431648116 up:0.02796478734591177 been:0.025959833244686842 it:0.023170331963907834 were:0.022676398915216226 put:0.020469618609213813 them:0.020222474847459135 made:0.019622060413563226 now:0.01756704876797396 him:0.017273050204178162 but:0.015996844671119767 or:0.01570104345146685 :0.34318819705359266 +of:0.2440241090079505 for:0.10916697645910643 in:0.0794465295413803 to:0.07579482599732842 and:0.06345324097066257 that:0.04216871523631753 with:0.03934390282227127 all:0.03932667869231768 by:0.029408292785375666 on:0.02440754345814949 if:0.023041126067055318 as:0.020800044408698107 get:0.018189154456991295 upon:0.01754823466311987 from:0.014783134619052903 make:0.014558246926823911 If:0.014443030981134178 or:0.013800474343900585 In:0.01350164265794489 :0.10179409590441907 +is:0.11026310181549064 in:0.10896405809240482 was:0.09726247775447405 of:0.08524463370494362 with:0.06588218343962726 to:0.06557280927660965 and:0.04272991442661676 be:0.042542651120865645 for:0.03685290005298665 at:0.033189000752212844 have:0.03317781752682651 had:0.03176396219704144 by:0.02902648758029402 In:0.02555789977106739 from:0.01640377099156104 has:0.01567214485219643 make:0.015569212964258233 made:0.015418160758761582 Is:0.014733843727024853 :0.11317296919473657 +of:0.3283757969554043 to:0.14447610099444844 that:0.07832245775498578 in:0.062251482516911566 for:0.03455992357481649 with:0.03384365793969122 and:0.03147446155976928 all:0.029648079258791104 on:0.02834945391361582 which:0.021971799966112406 by:0.020307915287602202 when:0.016670605500298252 from:0.016587908888762257 In:0.014339018545364384 if:0.01363236862653064 as:0.013251192924161324 upon:0.013242568533790872 make:0.012277324789586617 If:0.008932080228920931 :0.07648580224043607 +of:0.2347441930907886 to:0.13774663392159928 and:0.06435264687478146 in:0.05889041620337952 by:0.04328839374596854 with:0.03715234232517662 at:0.035348412387461926 from:0.0340799999594731 for:0.03104680704029891 that:0.022646274191012554 upon:0.02107287855656591 as:0.017829249479434407 In:0.013664407060673464 on:0.012162716305105846 under:0.010080470883551084 make:0.007555940927652313 which:0.007467552759341367 the:0.007307713540312284 but:0.006848182880179599 :0.19571476786724323 +time:0.024428147827655244 men:0.0202805947968364 up:0.01964735555769815 it:0.019480965914983554 him:0.013950748321360338 out:0.01375326138656072 due:0.01298466222295015 them:0.012777899588552667 good:0.012674201340513981 them,:0.011362970895195487 right:0.010230376186037693 quiet:0.009876463419224286 dollars:0.009832078825468238 more:0.008727951738993775 it,:0.008705502947036576 hundred:0.008417284328052296 work:0.007700994456812759 in:0.0076133445205552345 made:0.00739073391654418 :0.7591644618089682 +to:0.41278187486095347 not:0.0783553617421876 will:0.06575861005400348 we:0.052558472446501976 I:0.04896328174748739 and:0.04624234608812103 could:0.037982811415604195 would:0.03398462154814194 they:0.026588856064831155 you:0.024257453742133818 may:0.023114798646897104 We:0.022313573981355306 can:0.018561944129664703 must:0.012121868966997915 should:0.011255177904995096 cannot:0.009022276135369304 might:0.007429793515227231 shall:0.007322268048111895 never:0.006307959915781765 :0.05407664904563366 +as:0.06931392982974462 according:0.052071562389565784 up:0.0511867300210483 and:0.040371568633051955 went:0.03351644485287816 back:0.032358406609281 regard:0.03073407747799069 feet:0.02852138506231652 down:0.026379903432040268 owing:0.02466642634685871 due:0.023695193974505355 go:0.022910973192184297 reference:0.020802802907016128 came:0.019883741951819873 sent:0.019874244915639484 attention:0.019565955494145405 come:0.01885185084678811 given:0.018792390567602263 it:0.017366961307524745 :0.4281354501879983 +the:0.7414625531464224 this:0.06128837928103486 tho:0.03330019460632287 a:0.021013958422851947 The:0.019984527596302544 tbe:0.012972627772269546 whole:0.011840235405860322 civilized:0.010917778363945627 any:0.010910045014829957 other:0.007191486230219346 our:0.006033390558051399 Republican:0.00537272205058816 that:0.005173661645289751 every:0.005067965033314082 entire:0.004581486122235591 Democratic:0.004110222594768436 said:0.00350744324271482 present:0.0032976098173722306 great:0.0029674908976975328 :0.028006222197908617 +and:0.14507320772351315 fact:0.08580533594336559 said:0.056464728489513914 so:0.05141663139801109 believe:0.03728868944610554 is:0.032697255055655516 say:0.030323479159427524 know:0.029749358812227955 found:0.025535190692382553 stated:0.021273605064562356 show:0.019511948220510757 but:0.018999393120383457 says:0.018814328565908398 think:0.016893655385130203 was:0.01658797795582863 all:0.01652317309060226 see:0.015409038245983688 opinion:0.015263158537430448 order:0.014744011681695817 :0.33062583341176116 +to:0.49291447239110475 not:0.11143954809693939 will:0.05760970922592163 would:0.0553310228508195 and:0.05097950223290475 we:0.02068661656364623 should:0.018734012611437024 must:0.01703793034170091 I:0.015558468900602043 may:0.01399520181198475 they:0.013634337129636942 only:0.013102167048581184 or:0.012559114916479285 you:0.012004151724569126 shall:0.011850877279886244 can:0.00983224295636396 We:0.009420153915558735 don't:0.009112967720888644 a:0.008099280105755962 :0.045098222175218944 +and:0.14382847835241663 or:0.11903237751647291 to:0.07899211997455374 will:0.0592953184544233 that:0.05036573762500745 not:0.037452326497388395 of:0.03671243963983239 an:0.03619117359222941 the:0.03615585487233365 for:0.03291978632648864 is:0.03177163132994504 shall:0.02838008110107144 would:0.026706436007343064 at:0.021184485122171363 was:0.020242112157660568 on:0.019670427454339244 may:0.015929210900972022 but:0.01581490495333427 should:0.015163439867398805 :0.1731916582546177 +one:0.15396519686530746 those:0.13122889480555644 all:0.079945115722887 many:0.04631227172863698 some:0.03767294419962675 person:0.031539524010325844 man:0.03049052942343274 people:0.024779505654102987 men:0.024015821160635324 and:0.01951670946801348 both:0.016909629026201436 deed:0.01572718702663584 that:0.014846128471886851 number:0.014733158971203439 each:0.013832254267609794 two:0.013659073764594635 All:0.01114665215193261 majority:0.011081741626740155 any:0.0110225368431914 :0.29657512481147885 +to:0.13763804766323054 would:0.12161633039178603 I:0.0809773717601951 who:0.05101805002953868 we:0.047001791738504606 shall:0.044096911633122876 they:0.04395974463959902 will:0.04160614375007072 may:0.03585480202190114 should:0.03544918252893254 must:0.03131187063753791 and:0.030046736393075518 could:0.028312413535844846 not:0.025421934899475765 might:0.02410420915592504 you:0.021133522785290616 that:0.020398717124872703 which:0.018582968862291244 We:0.017270110086893862 :0.14319914036191123 +the:0.7903262807296405 tho:0.0417118807576186 The:0.028521821762531804 tbe:0.018254791809272017 and:0.012937162344046333 a:0.010819279075746757 in:0.00876308158476522 front:0.0042447707201534735 tlie:0.0036959326976214297 high:0.0035686771472371896 on:0.0032639190995008235 re-:0.0032237928300828766 large:0.003022898206220474 In:0.0029548124152618477 of:0.002766958983742255 this:0.002631744986324018 north:0.0026040823513567716 first:0.002587712609446879 an:0.0023440674983014626 :0.050756332391129304 +the:0.11919516938815296 of:0.07230453158552728 and:0.05781056740443249 a:0.043018564803886335 to:0.031305092790907506 in:0.020848713353460488 at:0.014270110001066288 .:0.012526810245749479 :0.012413283442322082 for:0.011719122709941797 by:0.010808400946589808 or:0.010404172990115616 The:0.01003576004804544 with:0.009811868184449042 tho:0.009295902015355835 was:0.008924239095331684 that:0.008672304223433876 is:0.0085591147338948 be:0.008335143826716943 :0.5187411282106204 +the:0.23082304762080147 a:0.09172939437061042 and:0.0851056566021754 to:0.055125525986716634 of:0.042910698625031905 The:0.039975985048452366 that:0.02405748334693036 as:0.01833729620905921 tho:0.017925165261838103 by:0.015460115602286694 said:0.012191185462957844 or:0.011610894711305664 with:0.011479484832743069 for:0.010030886842959306 one:0.009921954646621167 his:0.009099839011568073 A:0.00876251363488323 this:0.008100940405165995 he:0.007489312402330565 :0.28886261937556257 +he:0.2542997205448605 who:0.10319904407699773 I:0.10120269058753564 they:0.08310526269788819 she:0.059876091901205304 and:0.0373560505876707 He:0.036015077324688005 we:0.031938794964370784 which:0.0313126034360667 that:0.02516289637247574 it:0.023936273202986254 ho:0.01744700508955036 man:0.011890139457647242 She:0.011193656547437926 It:0.01016654335627011 They:0.010105678183791657 lie:0.009127208039699406 We:0.008448990723191437 be:0.008357837216216444 :0.12485843568944983 +and:0.057004225370342596 of:0.04919401955376059 to:0.034294062999448545 was:0.024597802794061083 in:0.02377887969877409 is:0.023518675313371453 -:0.02043599095531756 for:0.020247193132528738 be:0.016502048998849442 with:0.01629082526812345 In:0.01527410617977682 I:0.01363093441538225 by:0.012729222386206048 but:0.011680258395374689 not:0.011535972523954162 :0.011002320366229753 or:0.010643407999452952 made:0.009924707857323153 .:0.008473458609388194 :0.6082418871823344 +is:0.24378076770885776 was:0.13404678941716672 and:0.12584463073286387 are:0.07765574926233494 Is:0.04320801979716006 were:0.03354146203452118 be:0.02889749943902202 but:0.02828395612676554 it:0.02555153032368103 not:0.017963317445641093 he:0.016595202221603367 have:0.015312785093859124 had:0.014094273413672717 there:0.01359240645284157 been:0.013097157454161618 has:0.01220674050249824 will:0.012066040689229764 they:0.011987233853486915 as:0.01184256044712603 :0.11943187758350644 +of:0.20538404255848913 to:0.0949707517067756 in:0.09488168184396584 for:0.08779318878424669 and:0.05311268575300415 on:0.05131213832650666 with:0.03771131707744842 from:0.0374319588750368 that:0.03108898026743955 at:0.02651220640765197 In:0.024537211775074567 by:0.023114239076804124 upon:0.01626187852220028 as:0.009647458534003549 against:0.008643309677267598 which:0.007483831578193904 ot:0.006191172238617451 the:0.005717751537180034 accompany:0.005565257595596297 :0.17163893786449738 +to:0.22722243126493935 will:0.2086154470129621 would:0.07870331383553528 may:0.0641733177528158 shall:0.05910224785949944 should:0.050091431690615404 can:0.046232098730853814 must:0.03984748393542293 not:0.03786476470845553 and:0.03352467447980949 could:0.028103206455433422 might:0.01339446920599486 cannot:0.012965605075422692 that:0.0043914132474997085 soon:0.004169043091970996 but:0.003657455144479786 they:0.0035928034041715204 time:0.0034313291736725858 probably:0.003225572867351095 :0.07669189106309418 +the:0.11919516938815296 of:0.07230453158552728 and:0.05781056740443249 a:0.043018564803886335 to:0.031305092790907506 in:0.020848713353460488 at:0.014270110001066288 .:0.012526810245749479 :0.012413283442322082 for:0.011719122709941797 by:0.010808400946589808 or:0.010404172990115616 The:0.01003576004804544 with:0.009811868184449042 tho:0.009295902015355835 was:0.008924239095331684 that:0.008672304223433876 is:0.0085591147338948 be:0.008335143826716943 :0.5187411282106204 +and:0.11169052056022286 is:0.08376118166055223 fact:0.06317478419711188 know:0.03571844277582256 so:0.03393916600893385 say:0.030235927980995753 said:0.026063498457929074 but:0.02526408146519412 was:0.025085058786175563 believe:0.024459824698187086 Is:0.019641462142472522 see:0.019172393069964665 found:0.017027376003201533 find:0.015153383575172019 of:0.014710768670748296 think:0.014372000794719017 reason:0.014099659432687095 show:0.013916398210489282 says:0.013829422379480046 :0.39768464912994056 +has:0.3575453707194437 have:0.2714178367306603 had:0.1825612098880103 having:0.03958079461516492 not:0.024504375267881854 lias:0.012904351000297291 ever:0.01099613701254211 bad:0.008841783225845824 already:0.007031699869531619 havo:0.0057950827359870205 never:0.005734044456166403 baa:0.005218808693072302 yet:0.004724300212301469 haa:0.004349245955778837 long:0.003974562157783085 since:0.00329065943777546 always:0.002969247831433721 bas:0.0027521601566364786 and:0.0021294515645193996 :0.04267887846916792 +of:0.12252471815603806 thence:0.09776177556945019 to:0.0512226910869957 and:0.04872248669736711 on:0.03747243963840054 in:0.027461307905742305 :0.02112437759579257 .:0.015512457190882217 by:0.014958056209382849 the:0.013429003898714237 1:0.011776437093270265 In:0.007137599144654867 S.:0.006852695502213692 5:0.006746725270795819 said:0.006360098368286387 with:0.006211465668064214 ;:0.005971603222021165 from:0.005874566810800581 street:0.005775834082262049 :0.4861036608888652 +and:0.08995317707915026 to:0.06844710404109794 of:0.04605142056172993 the:0.04074574508561307 which:0.02479116931334353 that:0.023764822140213245 re-:0.020841117231308055 in:0.020803825395358622 for:0.020278423301550053 :0.018417753428486977 not:0.016860793136637672 con-:0.016444405871234195 is:0.014386481772210856 or:0.014080680914153714 be-:0.01352268143271276 I:0.01317002660943805 was:0.011429878269381662 dis-:0.011196807025842847 he:0.01113106290024311 :0.5026826244902934 +to:0.12445797428788373 of:0.11650516397655938 and:0.06965410429133852 with:0.05022145148721088 in:0.044411168064193526 for:0.036762837449597546 the:0.025596598112578747 they:0.018402756205401976 a:0.01836217311772814 from:0.014736947947945373 that:0.013501340878765622 we:0.01254159152545127 at:0.012452071752387418 by:0.011945116670402347 or:0.011861339822063192 you:0.011534808369048006 I:0.01099905250567216 any:0.010309379959966697 all:0.009827884035000406 :0.3749162395408051 +of:0.09129790931378902 the:0.07369883040827747 and:0.047842263382354346 in:0.04189055351593407 to:0.04045875475680249 a:0.03542341257202578 be:0.02020462051672066 for:0.01979292654746225 was:0.01760256398103379 at:0.017380150555488715 is:0.014984483003968216 with:0.014047653760730413 by:0.01374644383819499 :0.012670486581795598 In:0.01200961464556976 or:0.011563835749786333 from:0.011391516893522809 are:0.011273104484969465 that:0.010755276030689069 :0.4809655994608848 +of:0.18117371259210233 the:0.16834747981318457 a:0.0628294443597187 this:0.05352541773902632 any:0.04706228633454901 or:0.030192483890931023 in:0.02989719142957706 his:0.029537250126417638 no:0.02642727730664096 by:0.02375270253502161 other:0.023192521128325164 for:0.01916115735135573 their:0.018108189042583236 that:0.016700799880959075 some:0.015771590271603828 such:0.014850335670857522 and:0.014759850592072181 The:0.014130030756709383 either:0.013905590693549885 :0.19567468848481478 +to:0.5667167056522721 and:0.06389265407714548 in:0.05402998150903154 of:0.032953175839840414 not:0.024698130773163875 will:0.023531489720431197 for:0.01794970204579848 with:0.01727738067740799 In:0.012209682331970766 can:0.011747692553651634 at:0.010450510467535867 I:0.010406184971974994 a:0.01005405267342481 the:0.009993527239762167 from:0.008894329461957003 would:0.008640622497722877 or:0.008250992320170285 could:0.008100108991246281 that:0.007540784554143668 :0.09166229164134863 +it:0.08159421505788149 It:0.08062667436324815 he:0.06539569812568193 which:0.03770832360607955 who:0.03525790512715296 and:0.033997849737177385 that:0.026438952249248623 I:0.017406225944294577 He:0.017248828541074637 she:0.01565506632231926 there:0.015612657491205134 as:0.013656278571763292 lt:0.010889962099873767 There:0.007400284717241093 ho:0.007312701994258089 what:0.006149106697594402 .:0.0057665364210540745 She:0.005293468047178192 lie:0.005259010317644286 :0.5103302545680292 +and:0.09631219532671687 was:0.03513566928966104 held:0.02987715681559008 Beginning:0.024332169066967536 is:0.023122938489353394 look:0.022074108253454683 arrived:0.021820518428646088 that:0.021226918252779888 interest:0.02006974641058921 thereon:0.01971421054267379 made:0.019401567074562896 are:0.019271449916013022 up:0.01806602795372081 him:0.01678700722897829 be:0.016375054451444982 but:0.01586396852970274 out:0.015503094089883073 or:0.013721423267833084 not:0.012734170433403743 :0.5375906061780248 +the:0.2910360768047511 this:0.07253762218184727 that:0.06012549921271409 a:0.054710729870920474 The:0.042677197961674185 one:0.04241646333993235 next:0.035005254733892315 per:0.03261369242580144 other:0.02986488343437168 every:0.028248132509443108 same:0.018442515948040975 each:0.015102921735707242 all:0.01372753993337386 first:0.013109495271864053 One:0.01290508451555758 of:0.012767580844357942 tho:0.012729034523315311 his:0.012204994626422709 and:0.010234872544400992 :0.1885404075816114 +and:0.06317916895143688 was:0.03089079697380977 is:0.020044819943736053 be:0.019406329289829806 are:0.016631216139614186 that:0.015910745835586493 it:0.014132589635136123 been:0.013429954470292457 made:0.013153338042273357 were:0.012494049396038097 or:0.012369181282419555 them:0.011608721240324167 up:0.01101461536327863 him:0.010833186604515583 as:0.010718511743974049 succeeded:0.010682665877813333 engaged:0.010592681714621757 not:0.009777868089593193 now:0.00948198968071834 :0.6826475697249881 +the:0.28607840655546146 an:0.1358930393814908 said:0.07766628592820451 primary:0.04757338273930237 of:0.0378179376262428 day:0.037573293105360416 next:0.028553858070466773 this:0.024356820400273194 general:0.02265609220484643 The:0.022564093269533358 first:0.02061060354703957 on:0.020304054069482103 and:0.020254899537947763 last:0.017714978588371018 public:0.015619803873042548 for:0.015586282094160115 tho:0.015440385184026871 his:0.014813213962176016 Presidential:0.013263330672443313 :0.12465923919012861 +and:0.12760914952579921 to:0.09350903998305073 he:0.04427115183796026 of:0.03273712048537543 in:0.024796890005921543 the:0.023894411477150226 was:0.022918342900178634 that:0.02089892373593765 for:0.02039988287876958 will:0.01968918799115977 not:0.01900679191484481 would:0.018586066892747898 or:0.01841067604319294 is:0.01741560228311475 it:0.016623006336143973 had:0.015944658138793255 be:0.014889444862031647 I:0.013999263722461762 him:0.013315311952332166 :0.42008507703303377 +of:0.33414121129560537 the:0.23580675212297325 said:0.040499160963572006 to:0.04036969368757144 on:0.023732900401615475 described:0.02231841262660126 by:0.021524963484773733 and:0.020275074209086877 a:0.017481403035169003 The:0.01537866650147927 agricultural:0.009989572681748281 his:0.009969992994487824 tho:0.009925144410091442 Eng-:0.009702304159884883 that:0.008909059714177681 their:0.008291266017849307 with:0.0072797430253121595 at:0.007275309508686309 county:0.005913997758924303 :0.15021537140039012 +the:0.4635034421338065 The:0.07214701861520018 and:0.0676555347169684 a:0.045002850302047356 tho:0.03451895207430658 by:0.03271543860394436 all:0.017813567093233177 of:0.015068109937812916 or:0.01460733267112666 tbe:0.013333548284866407 certain:0.013282103218847412 other:0.012536596412658075 for:0.011755531341668594 with:0.009809251697970941 two:0.009059071407197682 said:0.008932255650381225 these:0.00802045217773088 an:0.006197004270680511 best:0.005394342701288312 :0.13764759668826385 +at:0.2927238786630603 of:0.17549862787890996 in:0.08873075258354125 on:0.08144937795254108 to:0.06451060271878253 for:0.04425603768643518 from:0.03767882546886614 In:0.023860800096271974 by:0.019758485396617696 and:0.018640358163831746 with:0.018043068257624167 within:0.01506515512932839 that:0.014184748668290623 At:0.010418625294978223 over:0.007481212904229608 through:0.007161983520998726 On:0.005957206729016207 upon:0.005827031304746421 about:0.0054283814146273285 :0.06232484016730243 +and:0.0711558752050424 demand:0.04215274599378134 candidate:0.03688665413261627 used:0.02720923181413431 time:0.021297008634328134 ready:0.021251451254862844 provided:0.020434575256098462 Board:0.01992200206615785 it:0.018172572658966 State:0.017636077434148818 that:0.01684966837182648 vote:0.015545795856813103 paid:0.015361971650818602 or:0.013871021320670807 but:0.01378652511700036 Court:0.011855690942039929 sold:0.01135583757388032 patent:0.011077984149386105 as:0.01036470978011297 :0.5828126007873149 +the:0.12544149775557412 a:0.07189880014894655 of:0.06952324132242865 and:0.06783388842515242 in:0.05656708418539442 to:0.03706812719305261 an:0.031204096404801387 Mr.:0.022859763152996985 or:0.019783924120562048 In:0.017527289134574433 his:0.017161030167459873 that:0.015380191473864923 was:0.012593631590656629 with:0.01241604827548534 be:0.012355222297590129 for:0.011442606785188075 by:0.009787268388726685 at:0.009759055879560332 The:0.009355260844533244 :0.36904197245345116 +of:0.19611648917857188 to:0.1271233104781272 in:0.09871917283678443 at:0.05970744628498059 and:0.05384722170589069 that:0.043192896534116 on:0.04090236877155704 with:0.03988586652533141 for:0.03756598726653983 from:0.03619462340481783 In:0.030832469077485502 all:0.030735728741873126 by:0.020747656718856235 is:0.018693569930931287 upon:0.017203898167894926 have:0.01635876657023653 was:0.014547707034017171 after:0.014101361360095037 had:0.011820689321499279 :0.09070277009039403 +north:0.09129255630007072 thence:0.08251904295582889 the:0.07427434724270157 of:0.07179398224362445 south:0.062046380266822625 and:0.031735122824263315 in:0.02884990350336898 east:0.023330643414566365 to:0.02196188596682241 said:0.020547254605521027 East:0.017659567559047934 west:0.014897432190015202 degrees:0.014274003065162704 on:0.013707454401038589 S.:0.011324784785345288 at:0.011308596474855504 .:0.00805541594340855 In:0.007874396455361235 N:0.007740421822797096 :0.38380680797937755 +the:0.14660148257658065 and:0.08399462598864098 of:0.07053898416786786 to:0.045563767294895766 a:0.03495376947817321 Mr.:0.03148641122030498 in:0.027036268035892465 The:0.01834560097253881 that:0.015433796136458459 his:0.013630287540637878 :0.013320608557036834 be:0.012729109113896242 is:0.011777894247847153 or:0.011558427380385705 for:0.011230221515748384 tho:0.011175341598397778 was:0.011112730596857474 .:0.010965870798385367 as:0.009424062922515594 :0.4081207398569384 +and:0.4051275446544472 was:0.04987180773064686 will:0.03807948076376454 He:0.037852149069527094 he:0.025781869701046203 were:0.024833298048672504 I:0.023393895888157247 are:0.01983428466563361 they:0.019810531509806415 is:0.01923347498719593 They:0.017920377711614307 would:0.015196637146348908 it:0.01495858041546758 that:0.012990787436683698 but:0.011742642322992708 we:0.011516062620099576 shall:0.011294038484259833 who:0.0101647359191228 We:0.010023005615453435 :0.2193747953090595 +New:0.8899810070663684 Now:0.012823464004473076 New-:0.011582730457560966 Xew:0.006709009873058478 of:0.005083661853346091 the:0.003432527367402249 to:0.0025073277337994003 Mew:0.0021146803161037606 and:0.0016620761863970494 a:0.0014660694450907498 I:0.0009797934169919343 be:0.000804311039501406 all:0.0007206119918506667 for:0.0007006225852927053 ew:0.0006618262590623026 in:0.000648968145186974 with:0.0005856420133543646 two:0.0005653026068963427 or:0.0005281701813833322 :0.05544219745687978 +difference:0.0947321117221257 and:0.0378774715344845 line:0.03487087794761255 lying:0.03098802781787546 street,:0.027551677113657407 place:0.02406883388506953 it:0.02295678936200758 him:0.022624405024204958 relations:0.022541488842398393 up:0.022487646821589345 out:0.02079980589584251 space:0.019836480260660306 was:0.017675381758225608 existed:0.01767222304653774 dispute:0.015672699843043307 distance:0.014993580617575551 agreement:0.014798154269009087 street:0.014687265119758064 communication:0.014635859359492449 :0.5075292197588299 +of:0.10829623151801474 in:0.10033463002187434 with:0.06570550256304582 to:0.06534675831188887 is:0.05793278261722739 for:0.05150070313571703 was:0.049722043814485854 and:0.04609295948385622 as:0.045705065558454015 by:0.027693319075598362 such:0.027423463089792217 be:0.02712915401114342 at:0.025500324256074784 on:0.023832039609095187 that:0.02018931053684904 In:0.01882572838489574 make:0.01779597835705223 from:0.0172270806299035 made:0.017021525514021654 :0.18572539951100964 +and:0.14199847163149082 be:0.13384293189413626 was:0.08915130706871059 he:0.05965801549174645 relief:0.059042367531998874 is:0.045963117940184754 were:0.036382864248779 are:0.03182747456921673 I:0.026897935695392155 been:0.02365483279832717 have:0.02256488507554085 but:0.022236408630737555 who:0.01952597616680661 they:0.01847856419009607 had:0.01669448503810933 has:0.01654264807807634 He:0.015516171022837356 then:0.014205012488538773 we:0.014156382624220505 :0.19066014781505378 +and:0.055377825149974975 was:0.05442424504626728 will:0.03753813734135241 had:0.033728596929519836 were:0.03166836608382734 to:0.029333435632019886 could:0.02863891148825115 is:0.028322453562482697 the:0.02351119567225102 are:0.02200997550414729 have:0.021636075588600798 a:0.02146726029132518 :0.01893079972905853 did:0.017011962058178183 has:0.01581014103720034 be:0.01417067338605023 or:0.013658481198753031 made:0.013179806209512722 would:0.013113951566930002 :0.5054677065242971 +and:0.13613401976395292 the:0.056434660604861554 to:0.051865055782917766 of:0.043459087419951636 that:0.027689186317852114 be:0.021999959632541 in:0.021244588104247123 or:0.021176673099039943 which:0.018890922011131298 he:0.01879096558108093 re-:0.017848853100388494 is:0.01762471153062688 was:0.016997584758117138 for:0.015561960548855665 they:0.01504571663462392 have:0.014135179562033811 not:0.01399011382103202 pro-:0.012822675311361621 I:0.012539639489019441 :0.4447484469263647 +of:0.34065417470680265 to:0.19861301290512876 in:0.09597804297810271 by:0.04553911089210847 at:0.03487572372819177 from:0.03358205410924919 that:0.030744268271584167 with:0.028822149684160348 and:0.026367815480663057 on:0.020131300086464323 for:0.019544211718601004 In:0.017237285213930576 upon:0.01355411268798692 as:0.011439129198758181 under:0.00874314251565791 into:0.008187468270281608 which:0.00808171378652698 all:0.006711125782475142 through:0.0052062530837105854 :0.04498790489961568 +and:0.06317916895143688 was:0.03089079697380977 is:0.020044819943736053 be:0.019406329289829806 are:0.016631216139614186 that:0.015910745835586493 it:0.014132589635136123 been:0.013429954470292457 made:0.013153338042273357 were:0.012494049396038097 or:0.012369181282419555 them:0.011608721240324167 up:0.01101461536327863 him:0.010833186604515583 as:0.010718511743974049 succeeded:0.010682665877813333 engaged:0.010592681714621757 not:0.009777868089593193 now:0.00948198968071834 :0.6826475697249881 +which:0.0991103200297577 it:0.09640073651447621 they:0.07846476786521855 and:0.07177249039624398 you:0.06856102149400696 that:0.06428931643902906 he:0.0586742320630181 It:0.058619857424093175 who:0.03728206243216445 I:0.03501398311933061 we:0.02877708458806541 she:0.013237356067668729 They:0.01231611465251535 as:0.011572382060738049 He:0.009951970076438558 there:0.009884224135479461 this:0.008844872279688649 This:0.008734289272778606 You:0.008547540572631528 :0.21894537851665682 +and:0.058602054483319045 in:0.05799902409757182 of:0.04531563825127306 to:0.03689357771346928 is:0.03311674621901577 with:0.031615154696005586 do:0.02535706633146083 for:0.023336946192074784 or:0.022321922998356083 In:0.021090353203996003 as:0.02003183578275243 by:0.018463530718554687 make:0.014776765294255628 .:0.013795411414729024 be:0.01346775869601612 at:0.013432176546686806 that:0.013348117689737097 was:0.013298341848252675 have:0.013103936314324612 :0.5096336415081486 +of:0.28059339816772033 and:0.10213353383090452 to:0.1018939118947376 that:0.061343251121506216 in:0.04639141443737684 by:0.04096260517400082 from:0.0389590502872024 at:0.031280512454123284 with:0.02750908824923526 on:0.026236754991014535 as:0.02076251644179018 for:0.019481907059645677 all:0.01909554461450778 when:0.013712012442592635 which:0.010008673800668324 In:0.009106328792395117 was:0.00831492388807819 upon:0.008075536153954083 over:0.00680944360442682 :0.12632959259411938 +one:0.1028303141280697 part:0.05963429477052991 out:0.04766456937681193 some:0.031418679026461914 members:0.030764490253327767 side:0.029940657362655835 portion:0.022063658796890564 office:0.020457735219956013 member:0.019726706386316174 end:0.019666887540649894 tion:0.018667441728710307 parts:0.016814747270460957 people:0.014112771422418794 all:0.014072739582212475 any:0.013183573287639892 One:0.013083578354183906 that:0.013024335602903442 account:0.012482348155001894 many:0.012077825070275192 :0.48731264666452345 +the:0.20454402276922218 of:0.12918497835499385 in:0.05195280701888762 and:0.02498626345596391 to:0.022731479829789184 a:0.021957054927670427 for:0.016382456241295914 :0.012316113007154395 by:0.012240269090286967 In:0.010067622413739416 that:0.009481172545506412 The:0.009120046145470906 as:0.008393502641245523 from:0.008100158640088733 tho:0.007922822407153751 or:0.007416612282194329 with:0.0069236511365462555 their:0.006687371355290562 our:0.006259210569133917 :0.4223323851683658 +of:0.3777178036134268 in:0.0951199843121082 to:0.09426026851636672 on:0.06345247635979469 at:0.04906818685862851 from:0.04537561627807181 by:0.040912596444009325 and:0.03589890656605185 that:0.025429694535764387 for:0.024004360816736427 In:0.02002011040303803 with:0.015082669128393346 over:0.008546343676713105 through:0.007749833726776152 into:0.007584474583763997 along:0.0068710649394462895 upon:0.005719864904652239 ot:0.005406629539234996 before:0.0053702673571368485 :0.06540884743988626 +one:0.05747761799029968 out:0.04048591343785974 all:0.032810545242302105 tion:0.027117078027594402 number:0.02439307204922975 amount:0.022399649891891655 and:0.02064174055231058 case:0.019698594061108823 part:0.018540786664779006 end:0.017631536900615648 value:0.017363065152149634 time:0.0172329363535679 that:0.01711668896468228 purpose:0.01603230404931778 people:0.015894869659906115 sum:0.015457230248392642 work:0.015138391865409983 cost:0.014797435432308055 those:0.014594004469556264 :0.574176538986718 +he:0.1854081800264523 I:0.13268410949890286 they:0.07190500784669386 and:0.06690325072577531 He:0.06109261528957893 it:0.04913599358300413 she:0.040726140837305476 who:0.03047274055508449 we:0.029121677470119282 It:0.027972706937142395 but:0.018257380893444163 that:0.017519744648681317 which:0.0166493682199236 They:0.015568689594990399 We:0.015424504150783972 ho:0.014829544728199421 be:0.012957534617897467 1:0.012425654721476989 lie:0.012372901477596314 :0.16757225417694735 +the:0.4702647858967531 a:0.16076653529754298 this:0.062476819759106815 The:0.05622045285704839 tho:0.029596550597525705 his:0.023359411367696595 our:0.015318396658291223 tbe:0.013558266452582707 and:0.012167870521145402 whole:0.010834399660616665 This:0.0105053270284194 my:0.010404956860189383 said:0.009103988979650061 that:0.009050424521621202 A:0.008851916407114557 her:0.007303799531618465 your:0.006095326278285341 their:0.005546209228823295 high:0.004893016877442705 :0.07268154521852603 +of:0.1487719939218068 to:0.11279107289289639 with:0.08051145080339765 in:0.071926665404501 by:0.053283543741656024 and:0.05320052275027971 for:0.05065160714792511 that:0.038538883092924144 make:0.026840812166424394 under:0.024950753038098156 from:0.023356903691282592 on:0.02178588981677027 upon:0.015489653091547085 at:0.014429338856534146 be:0.014040700489085494 is:0.013580572648011584 do:0.012551027266097017 was:0.01202233281929628 In:0.01088756501754246 :0.19938871134392372 +the:0.16807735899698817 of:0.10541662057906837 and:0.05138367848570702 a:0.04141865232648221 to:0.0385989743764065 in:0.026264864977736738 was:0.019530675665220657 his:0.018900421021236905 be:0.017373825006196972 their:0.015767721170721456 for:0.01557246589796783 with:0.014071419046630446 is:0.012922913111931644 at:0.012690452250034052 are:0.010702713108721902 .:0.010158075558988393 Mr.:0.009672788574483367 tho:0.009612591781990074 were:0.009549306361446321 :0.391314481702041 +of:0.20676544722385592 to:0.11032182049926799 and:0.10247304741625664 in:0.07767165761982199 that:0.06564250479160609 for:0.05206044588415629 with:0.03947672692286547 all:0.035315499584108755 by:0.03454954947705997 on:0.03119338088800149 is:0.026410690179635123 from:0.023639717955364837 as:0.021504875672100382 In:0.021415565868360187 but:0.015842660687856336 was:0.011828434545727282 upon:0.011578915160995953 when:0.010787638603884193 be:0.01059191104125126 :0.08992950997782384 +the:0.2025400802702242 Wall:0.03894398734134405 said:0.03828005293710364 a:0.03709682369658791 Main:0.03497481670695627 of:0.025252817057598815 and:0.019791761373769767 Sixth:0.015611681931733937 Fourth:0.012876777371081104 Third:0.0122335210328472 Seventh:0.011269125184149817 State:0.009956743291848072 this:0.00980347414780116 in:0.009671391240825736 Second:0.009579375798337935 tho:0.009255353541165254 A:0.009222498033644947 The:0.009148133688282415 South:0.008100665868494648 :0.4753909194862031 +the:0.18872290321856772 and:0.07990884171328741 of:0.07134501066066128 The:0.043246894817858254 these:0.022760575981405146 that:0.02263940423567282 in:0.01853667557064991 to:0.01558712617289525 a:0.014599616906527581 his:0.014552935584560694 These:0.013550115619968908 which:0.0131780081149281 their:0.01277887611983455 tho:0.011643762153399977 :0.011409164010629988 as:0.011296526840701347 con-:0.011221217959193217 -:0.010832723607073007 for:0.010425522418632843 :0.40076409829355203 +be:0.12362853956580333 have:0.11526269784855153 he:0.08916703583500947 had:0.07162373862734818 and:0.07041705140185889 was:0.05150370515434867 has:0.05097866023025263 I:0.05032093080724675 is:0.03524218306077713 been:0.03383402637353943 are:0.02292293335117518 He:0.022567014187931795 they:0.019479782142247548 were:0.01917651482537902 who:0.016740625215951883 she:0.015844017543778253 so:0.01462623426801988 we:0.011878709977019668 one:0.011836247640859231 :0.15194935194290152 +of:0.13702799060931697 and:0.09154692146252924 the:0.06132754121976307 to:0.05968940172456923 in:0.05330670577213363 that:0.03353507120962107 by:0.026746032211282265 on:0.023940769935375982 for:0.021380059376434262 with:0.01671781086446943 was:0.01660770974578959 In:0.01632305365009416 is:0.015895275442050237 a:0.014185075738256642 from:0.012502149906168228 as:0.0110612241604802 or:0.011030477286944666 not:0.010929492798069504 be:0.010571453052939698 :0.3546757838337119 +for:0.09221289358030522 is:0.08448054318804009 in:0.07287216818872672 with:0.07229104415058654 of:0.07215916317666109 was:0.054416399176743895 as:0.052007580634393334 such:0.04801986194873827 to:0.04749744743494889 have:0.04563727186000907 and:0.043115312606823435 by:0.02911932827656647 be:0.027816422697705477 not:0.025308272406564754 had:0.024961080671788136 made:0.02382156318913658 on:0.02370848183859051 has:0.022756054795693387 make:0.02241107697984357 :0.11438803319813458 +made:0.10082906966364147 and:0.0671130191771199 taken:0.02493546723792725 that:0.022297946908850397 given:0.01692530758416795 or:0.01583292172468617 side:0.014858150447045795 caused:0.014725946655735882 was:0.014688500562329693 ed:0.014347806135572478 up:0.013397259052972742 prepared:0.01292403116100635 done:0.012877226582717729 followed:0.012655644703076936 it:0.011987607642482835 him:0.010678209760913238 held:0.010572676891900971 on:0.010432698417736216 be:0.010422998105078048 :0.5864975115850379 +the:0.6490404885670079 a:0.06688329207062098 The:0.03544171008850156 tho:0.03268790001335797 in:0.01700246870718621 and:0.016605624725160927 tbe:0.013043109506496236 this:0.009107911358898739 of:0.009090274129715657 his:0.00878745231285113 general:0.007489491670239211 best:0.006473787951119145 that:0.005827917399109859 their:0.0057071507519151745 great:0.0056893424038563295 other:0.005587015979479625 high:0.005290571503440179 any:0.0052678369958392215 or:0.005013284684415731 :0.08896336918078819 +it:0.13055434154884313 he:0.11466642931032263 It:0.08924678627158826 I:0.06716854204664134 and:0.063241428104038 which:0.047578449881710845 He:0.03750482444024319 that:0.03310574898881798 she:0.02857280216697315 who:0.026928275154727777 there:0.01651260115203135 This:0.014257175475156151 man:0.013289744902985783 this:0.01217621815571184 She:0.011743163710998934 ho:0.01021996957815206 There:0.009562161362410981 what:0.009484255617866016 but:0.009021801294635354 :0.2541652808361452 +of:0.1064111657394712 and:0.06189803199742663 the:0.061214738131072234 to:0.046767588658820816 a:0.030925892873176947 be:0.028436892159113936 in:0.026108484147942524 was:0.02489479277275801 on:0.017923934813552117 been:0.01686793591707648 as:0.015919110268756212 be-:0.014027980543130522 he:0.013348920322294223 is:0.01333436806722912 or:0.012789689707676487 for:0.012728006187378014 are:0.01263399408314043 by:0.012314981223230093 that:0.012293005338272336 :0.45816048704848167 +is:0.1300949053123692 ought:0.06235942008217411 are:0.06072445398663133 seems:0.05697318922100556 was:0.04954471475520722 not:0.048536362204045544 said:0.03881623685409472 seemed:0.03220746110521765 as:0.030923473227594384 it:0.030881869856406088 claimed:0.028226689520969073 have:0.027725540143517465 and:0.027557757709861613 likely:0.02587900806524851 seem:0.02574969309575762 supposed:0.023317446089120043 had:0.02145961764731352 Is:0.017651730366473797 proved:0.01677680343414685 :0.24359362732284573 +the:0.5307720820394273 The:0.12162528829902382 a:0.08249963184788271 and:0.02509928795099859 tho:0.024088067162915363 this:0.02296440937344589 said:0.01883755532014775 that:0.011226932232082888 tbe:0.010994590084287013 of:0.00835208059080378 our:0.007860313260657436 A:0.006778824771355959 American:0.005971559266375337 young:0.005685523951150532 This:0.0048859604892578295 any:0.00483127812128316 Tho:0.004348554955997443 general:0.004043549965274825 old:0.003810891592401262 :0.09432361872523114 +to:0.10984789657041627 the:0.10503626621694477 of:0.0878783688974282 in:0.07143292360275051 and:0.06857540950441492 Mr.:0.03587148263119237 for:0.031299274739702725 by:0.030853861686965616 that:0.025457596757113832 from:0.02251761900215743 In:0.020943951302027964 which:0.020000432631301576 or:0.019050701249930607 :0.017463535141312235 on:0.01594434879659283 thence:0.014847167743747409 re-:0.01462355893268815 be-:0.014024923881615872 said:0.013944781205328233 :0.2593858995063685 +it:0.16106858223666579 he:0.14518206368308825 It:0.12159534699169593 I:0.057602719180287296 which:0.04502857365843172 He:0.044270300460712515 and:0.03715731609633992 she:0.03281325692445296 who:0.03136408482723808 that:0.02648875680936907 This:0.026053319449588445 there:0.023396508682473977 this:0.01971536724820135 what:0.013325090131762765 She:0.01212848625285549 ho:0.007890803889468296 lie:0.007759688748027316 but:0.006437444818530425 1:0.006279205283107796 :0.1734430846277026 +the:0.5457438795081377 at:0.16203914691221313 At:0.05601167408802742 The:0.03458517427120207 tho:0.02654556087922896 his:0.017422680433471876 and:0.014840057638437482 tbe:0.012789430375025182 of:0.011348648273539806 on:0.00991321833413789 their:0.007939882622355341 for:0.007466416764216116 said:0.007127079722434314 was:0.006928793548475598 day:0.005758440427827433 its:0.005726949431665195 until:0.005718774048048997 to:0.0047751711655483 her:0.004717158535543811 :0.05160186302046331 +No.:0.11792827888833814 at:0.0943490487506173 of:0.09211684058239705 and:0.07435998918704688 to:0.06061817693684432 No:0.03513659864534643 lot:0.027498485418703113 by:0.024872681131304294 or:0.02113458083801867 a:0.02019166815150494 from:0.019957901781972456 about:0.016296577480156362 with:0.015863238716293013 was:0.013036758975500445 feet:0.011813060850245225 .:0.011317093319448938 @:0.010900541762441047 containing:0.009500598075279542 lots:0.009445030940144088 :0.31266284956839774 +a:0.547324412479199 the:0.10970949788427184 his:0.06325461908485763 their:0.029746011044070708 to:0.022185291602774004 my:0.018988620880421872 no:0.014971910990016343 your:0.014853973030426737 her:0.014612244196184551 our:0.013519106812917589 The:0.011723800653228143 A:0.011617177139550955 and:0.011321054823697588 its:0.010908263041063954 tho:0.010008418464596871 I:0.009365308546102917 or:0.007767979692537878 he:0.007015500196536275 we:0.006882547489145712 :0.06322426194839943 +and:0.06454739073657131 demand:0.023313300174744492 ready:0.0192991955467307 used:0.018559068069203856 time:0.0167973135366693 not:0.012889415712033305 vote:0.012868664167591082 it:0.01277775949265748 candidate:0.012059490274945432 him:0.011492660117416436 them:0.011389360230310022 called:0.010603763162339089 made:0.01030049958521204 up:0.009942829375404135 was:0.009875709402481388 as:0.009516893763303088 patent:0.00929908628672026 or:0.009178704268878403 but:0.00882338719685127 :0.7054655088999369 +and:0.08789468091273163 are:0.08746373392643345 of:0.0836804692494191 from:0.08319168405288142 is:0.06433523801705253 in:0.04698924395178392 to:0.04276954092290977 be:0.04071219276601267 or:0.04068759788768289 was:0.037548008007334994 that:0.033866092116223545 by:0.03363276497730507 were:0.02762424067313825 not:0.027471620509509905 as:0.027295476462708156 for:0.026205368849987896 no:0.025807052559539235 at:0.02076110918805478 than:0.019021209361658048 :0.1420426756076327 +the:0.4270460127279496 a:0.10458679921052565 and:0.07370212006250246 his:0.07076546858342171 of:0.06469474421170525 The:0.03327850860505394 tho:0.01877225684813772 their:0.018735275507395507 my:0.01296202049111362 in:0.01044741778330154 her:0.00994622133296134 its:0.00986876263198537 to:0.009368911369197559 an:0.008930450575717416 that:0.00865737933776327 our:0.00824483252113365 great:0.00823496291860057 your:0.006687871217602437 human:0.006550033843686081 :0.08751995022024528 +the:0.15989887897996505 of:0.09676977398357817 and:0.05573637037497569 to:0.0514850398140592 a:0.0326915471609954 at:0.01539422638902839 in:0.01467786905218934 his:0.01284761288053458 for:0.012787707407397514 their:0.011642723267683676 :0.011598305606844979 tho:0.0110489398669721 or:0.010366944891688438 with:0.009902970512029232 be:0.008714305953850405 from:0.008137637448864811 by:0.007858159642274019 The:0.007722414055691061 .:0.007531418686329707 :0.4521871540250482 +and:0.14507320772351315 fact:0.08580533594336559 said:0.056464728489513914 so:0.05141663139801109 believe:0.03728868944610554 is:0.032697255055655516 say:0.030323479159427524 know:0.029749358812227955 found:0.025535190692382553 stated:0.021273605064562356 show:0.019511948220510757 but:0.018999393120383457 says:0.018814328565908398 think:0.016893655385130203 was:0.01658797795582863 all:0.01652317309060226 see:0.015409038245983688 opinion:0.015263158537430448 order:0.014744011681695817 :0.33062583341176116 +of:0.2190188407528073 and:0.08490176380329387 that:0.07860663638614449 to:0.0769243708745665 by:0.07129983656353935 in:0.06818903057510968 with:0.06518229413621433 for:0.05576203807769019 all:0.04185471555686054 from:0.02708903962637121 is:0.020611571780485793 In:0.01712184844290151 as:0.01526715436167097 upon:0.013510194491759152 was:0.012765015557354884 when:0.012500066361239189 be:0.012424276760703049 under:0.012094867341597718 but:0.011763211101877679 :0.08211322744781262 +he:0.2575289871109308 who:0.09124432646434893 I:0.08924880409963144 she:0.05818758827519418 they:0.05089021206311353 He:0.04974041223464457 and:0.041646486920869606 it:0.03922101207701239 which:0.03293450629419683 that:0.028900688656719836 It:0.018728984856659837 we:0.018652438577101256 have:0.014851531586564416 She:0.014649491234842308 ho:0.013141017017622986 be:0.011024208665509287 lie:0.008853132736663508 They:0.00747777832638714 but:0.006936905630862162 :0.14514148717112496 +and:0.21723260139020856 to:0.060403923095707204 of:0.05526215519176412 in:0.047621603727452964 the:0.04069313123075909 that:0.02946672512169816 at:0.022028600968964644 from:0.01835133053038966 but:0.01540214728388559 was:0.014166930300529946 w:0.013509740796274608 year:0.011527624148744994 for:0.010713073169447711 In:0.010489559894287931 about:0.010045884837300192 or:0.009661909028231474 long:0.009208866897783417 :0.007953765624039016 which:0.007931549613581609 :0.3873288771489491 +and:0.09964545960468464 to:0.07032812914238483 of:0.06101103575523076 the:0.05804719237956457 be:0.023062109360520562 is:0.020535356874731344 was:0.01876707696282108 a:0.016824214821282678 that:0.014412715646407717 or:0.013377155989669933 are:0.012976878937126603 not:0.01190617194984442 for:0.011682679980731109 as:0.011350423222539683 he:0.011086562201608998 his:0.011014428636476895 -:0.010377861991993866 :0.010359211163137967 by:0.009820393123198616 :0.5024149422560438 +the:0.19100918440502757 and:0.1467840824728198 a:0.11746527664103677 to:0.054021893943901604 that:0.05113678401440012 of:0.05069400573291952 The:0.03162621822459247 as:0.03144889691854536 by:0.028194232378387668 this:0.02623629281745657 with:0.01920165371718124 for:0.01907704785019679 from:0.012825177827440703 said:0.012450060853496817 tho:0.012375710238325179 all:0.011547576262434397 one:0.011161607060753219 his:0.010930348689496541 in:0.008419790722223864 :0.1523941592293638 +the:0.6239151555850655 of:0.0762408585921695 The:0.04809841189379198 in:0.034384339614979595 and:0.032418506133171925 tho:0.02856048873848608 North:0.02456252370676191 said:0.017052686404945033 tbe:0.012392145495640291 South:0.01197317947190205 by:0.008135001373779616 In:0.006500095320159143 or:0.005883507251594283 from:0.005428692008631373 a:0.005389399716912828 our:0.004656217305081235 for:0.004444531702381271 with:0.004291464394872865 Central:0.004253929802595506 :0.040418865487078105 +terms:0.04050077382918511 time:0.029600474561641915 good:0.019666480169180562 law:0.019450171739589458 land:0.01807079312616045 power:0.017388245606944085 right:0.017290622809753672 interest:0.0165212572565243 out:0.01570017501104438 States:0.014425414521281125 public:0.013264829824503482 rules:0.013236654203977795 rights:0.012904830080558788 state:0.012564234246972006 free:0.012364317851061932 up:0.012214362065237884 due:0.012146444028657786 in:0.012095857696479282 costs:0.011976066355861877 :0.6776179950153841 +as:0.07348237429869825 and:0.053293291927724 according:0.0479709431097652 up:0.04410375066718131 them:0.0360918361710351 regard:0.032406892412297036 come:0.031291428310290255 back:0.02891251395441225 return:0.02673975554051193 came:0.025351047659788954 returned:0.022021941716222352 it:0.01975522069512534 down:0.01933170912324385 him:0.019027828623193535 go:0.018504100610066444 went:0.017627960690307223 given:0.016230557067889343 owing:0.015689732254652238 attention:0.015375915241202635 :0.43579119992639276 +of:0.09129790931378902 the:0.07369883040827747 and:0.047842263382354346 in:0.04189055351593407 to:0.04045875475680249 a:0.03542341257202578 be:0.02020462051672066 for:0.01979292654746225 was:0.01760256398103379 at:0.017380150555488715 is:0.014984483003968216 with:0.014047653760730413 by:0.01374644383819499 :0.012670486581795598 In:0.01200961464556976 or:0.011563835749786333 from:0.011391516893522809 are:0.011273104484969465 that:0.010755276030689069 :0.4809655994608848 +and:0.15323296784311222 know:0.10784105971035736 fact:0.07271577659382972 say:0.07055980154963959 believe:0.04137001646169896 is:0.03606331823386544 so:0.029687367183976 think:0.02843260058815353 see:0.026796592713777517 show:0.022365245143887397 but:0.021098848314202227 says:0.01807546849558448 knew:0.01796909129656692 all:0.0179300232343048 thought:0.01647317531279681 said:0.015883248775103026 find:0.01557979851384475 feel:0.015105395117968335 was:0.014828456787665895 :0.256991748129665 +:0.1468129746519521 .:0.020894900063006264 it.:0.01411991751839922 of:0.011570715861869937 them.:0.008814653831521522 day.:0.008628522751816654 to-wit::0.007294750161313853 him.:0.007100499959941404 time.:0.006453823662540491 city.:0.006264510007808282 year.:0.0062041256564728765 country.:0.005704815834588894 law.:0.004754785944962092 years.:0.004580371352536272 county.:0.0045711813169969345 acres.:0.0043299119094677855 in:0.0041877728726890575 work.:0.004059998788003514 tion.:0.004049994523934417 :0.7186017733301784 +a:0.3717630949797628 the:0.13457970209587547 one:0.03880066205638758 of:0.038022249609483916 and:0.036916430303894326 no:0.033803202976742476 or:0.026331646442635154 A:0.02504250834033827 this:0.021178913340069307 every:0.01951361776186596 any:0.018676738107096875 that:0.017733544956670056 The:0.017191648320065412 some:0.014025094600805095 to:0.012898722593699287 for:0.011812380035634675 with:0.010865581449195472 first:0.00903736993435564 his:0.008275933137018153 :0.1325309589584041 +and:0.11935192277006665 he:0.11653033576085782 be:0.1157080181047045 have:0.062083664420897716 as:0.041327622537681796 was:0.04112875117353331 been:0.033993543215655876 has:0.03357542613824792 is:0.03295921534360411 who:0.03045624717986865 I:0.02995950661851998 had:0.02693570098236482 it:0.0265259977064442 she:0.022350224816260356 they:0.018136688715784353 He:0.015966147701831777 ever:0.01457746134652411 not:0.013013063980770281 are:0.012958463024282855 :0.1914619984620989 +and:0.08529990646477506 passed:0.07391398244130352 passing:0.05542736247893535 way:0.04295083303473848 went:0.032008847256932906 it:0.03150752388213557 go:0.03116060608487825 all:0.02958447872519049 pass:0.028669214712268003 out:0.023583590904430594 down:0.02180757905760855 up:0.021691451677190925 run:0.020056510074409596 running:0.018844210927994806 them:0.01859738012378954 shot:0.01682581032465277 passes:0.01666206419304904 going:0.016288357784768375 or:0.01600814422633801 :0.39811214562461017 +there:0.15282240558043036 It:0.1250877021251384 it:0.1172130349964821 he:0.08447653464159645 There:0.07990106646359449 He:0.053545487723974064 and:0.03475602177722308 I:0.033514699763994925 which:0.028339689006514263 that:0.02258044118480592 she:0.020389246311069347 This:0.018864857928065765 who:0.017143411225723663 She:0.014044583378045664 this:0.01264429778309141 lie:0.005676248946248602 ho:0.005008892472785812 as:0.004728079857187771 one:0.00469102709236943 :0.16357227174165848 +of:0.09260314008036565 the:0.06191978979785017 and:0.06059597959542922 to:0.041497236059108794 a:0.03393939876067693 in:0.03157982240306733 was:0.029270971757727905 be:0.028783182196428253 which:0.02212107710162888 Mr.:0.020102725318138732 for:0.019905084694080286 been:0.017731546689268185 is:0.01744816118032967 that:0.017391271719714926 he:0.01733630283767429 are:0.016341252146902605 with:0.014108810611594158 it:0.013192713330007603 were:0.013127507149795535 :0.43000402657021086 +of:0.2811957344364302 the:0.1378082177714543 and:0.11443038203274739 a:0.06673338918077071 by:0.04999776533745548 to:0.03939267573820646 in:0.02019780583219334 his:0.014238236730524703 that:0.013871155435348543 The:0.013188732177041624 with:0.011110195393323082 for:0.011052336188706532 from:0.010810554732293256 :0.01076707574312639 or:0.010017859480150753 tho:0.008163821550055931 this:0.00595195380549812 ot:0.004887882431461639 at:0.004871615179971737 :0.17031261082323984 +to:0.12022893700269083 and:0.09020394424291768 the:0.08587503820055309 of:0.06450042443224316 in:0.0310058468700829 a:0.017742048521183405 :0.015548046036689871 not:0.01491307651316237 that:0.014112408707955496 for:0.013734482372212283 I:0.013065769926808477 will:0.012848502316304782 at:0.012837991177321897 In:0.012628718855091186 by:0.012491091048660757 be:0.011425930130217754 is:0.0113962101007567 he:0.011342727513475473 or:0.01112522537451577 :0.4219735806571561 +the:0.11919516938815296 of:0.07230453158552728 and:0.05781056740443249 a:0.043018564803886335 to:0.031305092790907506 in:0.020848713353460488 at:0.014270110001066288 .:0.012526810245749479 :0.012413283442322082 for:0.011719122709941797 by:0.010808400946589808 or:0.010404172990115616 The:0.01003576004804544 with:0.009811868184449042 tho:0.009295902015355835 was:0.008924239095331684 that:0.008672304223433876 is:0.0085591147338948 be:0.008335143826716943 :0.5187411282106204 +min.:0.0636905690956504 J.:0.06162873187220284 John:0.04764247762572775 Mary:0.04507819365177518 W.:0.04152348170952823 .:0.04097053407626163 C.:0.037393390733231016 A.:0.03442213328047145 and:0.03385349198018083 Mrs.:0.032227325010734185 George:0.03055595325155126 William:0.029955556176920087 M.:0.029741367664096886 Charles:0.028757195623025783 James:0.02503062423397286 of:0.023992274464964523 S.:0.021401220941963523 F.:0.020555599455817065 Miss:0.019516104687745818 :0.3310637744641787 +the:0.17460891979675439 a:0.08674567208853122 of:0.07337215736730075 and:0.056115140479782714 to:0.034823158694795825 in:0.025233476200774773 an:0.02103731410497757 .:0.019669382160451006 at:0.016004115969213074 The:0.014897249959283118 tho:0.013412461069319795 by:0.013206488337048551 :0.013093405711723214 Mr.:0.011854857762109561 from:0.011239191343894507 on:0.010817317325848733 with:0.010736511449993463 his:0.008939057919686626 A:0.00820016739295119 :0.3749939548655599 +of:0.20218877425790208 to:0.09841987210348578 and:0.077520457729643 with:0.0630206009421334 in:0.05949716778305059 that:0.05271306911264258 as:0.04412229903901229 by:0.038544479652130065 is:0.034215392922469376 for:0.03245968728990713 all:0.028688576641321573 on:0.028001614666373735 was:0.019694418059237436 when:0.01893952661345918 from:0.01828047939482416 be:0.015489124254009543 upon:0.01426352406947935 but:0.013608397882181239 not:0.01296161947811024 :0.12637091810862724 +of:0.13315710002550554 and:0.11226572074669378 the:0.03737740827907588 to:0.03699631273280602 in:0.026734999845427165 :0.025446206766216842 by:0.02289518325615436 Mrs.:0.018027858501289237 with:0.016638536467795215 at:0.01289938757641637 from:0.01226467976095812 said:0.01156789952765078 as:0.010354779423554195 for:0.009949636417294558 that:0.009355212133775997 .:0.0071215449870817606 Mr.:0.0058240208829812195 In:0.004226576374127219 The:0.0030281142868912227 :0.4828688220083045 +he:0.20386189213745778 who:0.08604087772464541 I:0.0779288353311248 they:0.07745172072107559 and:0.06645080202769559 she:0.04319198539169496 we:0.0342588110688371 it:0.03413184407759939 He:0.03377619993792287 have:0.032855300684771965 which:0.029058436485681065 be:0.021905689769034228 has:0.020309829448383263 that:0.01958644844587797 ho:0.014634001094787378 She:0.013724938035331757 lie:0.012837165034559582 It:0.012601354103721487 had:0.011913377938771633 :0.1524804905410262 +the:0.14747317579422697 of:0.08969960687569191 and:0.08002288809402543 to:0.04018288925517698 in:0.038069034056462545 a:0.034447851134399 his:0.026243861016754164 was:0.017504724320044556 In:0.017094479622078555 Mr.:0.015549262855704193 be:0.014889239251186716 that:0.014292727471384912 or:0.013671713673569966 by:0.013608448145710786 for:0.012621338926358095 he:0.012559565867065125 their:0.012465751620385573 is:0.012137097840243853 I:0.011430039444749974 :0.3750363047347807 +as:0.87252140452724 so:0.028065327764941368 ns:0.011773237433853863 aa:0.01090329876322181 As:0.010278422318093861 is:0.008820531183516497 be:0.007945988383149732 and:0.005928475622869833 very:0.005709877399414792 was:0.005242134495503118 are:0.0026859600428669247 a*:0.0024308058588011624 So:0.0019344379250489977 pretty:0.0019195478326968977 a:0.001870336261733337 not:0.0016102585220664726 Is:0.0015272309073977527 been:0.001369916478948576 were:0.0013632365183097583 :0.015099571760325194 +would:0.13516776815931453 to:0.10175318883572715 who:0.0734216616549984 they:0.06090829687960963 I:0.054414498797697934 which:0.046947310165833735 must:0.0405200574155989 might:0.036445589637541506 shall:0.03272411333844378 and:0.03228038765818951 should:0.03179090655993478 that:0.029508760759060126 not:0.02876680420731567 we:0.028503874055856488 may:0.028150033623979002 could:0.022163961267380006 will:0.019029697840863502 there:0.014322928357478427 They:0.011858887319353098 :0.17032127346582382 +and:0.08995317707915026 to:0.06844710404109794 of:0.04605142056172993 the:0.04074574508561307 which:0.02479116931334353 that:0.023764822140213245 re-:0.020841117231308055 in:0.020803825395358622 for:0.020278423301550053 :0.018417753428486977 not:0.016860793136637672 con-:0.016444405871234195 is:0.014386481772210856 or:0.014080680914153714 be-:0.01352268143271276 I:0.01317002660943805 was:0.011429878269381662 dis-:0.011196807025842847 he:0.01113106290024311 :0.5026826244902934 +he:0.1837716506182943 I:0.10623342374661611 they:0.09878550347497315 and:0.09019711049145522 who:0.042134015495488425 she:0.042071936590011044 He:0.04002704823696866 it:0.038197167279538896 we:0.03162100008164465 which:0.02288390677689546 never:0.01992148335297938 nor:0.01656323965051182 that:0.015484255484723259 you:0.015201616816196613 but:0.014144737499503068 They:0.013803164523368947 ho:0.012451212373710219 It:0.012412055852990794 be:0.012355488961270165 :0.17073998269285978 +the:0.4071374189315913 and:0.06449181461132415 of:0.02892866618288876 in:0.028670005984162618 The:0.02603617389223924 tho:0.024993820467459137 a:0.023579040051412606 to:0.01755553213771617 on:0.014626070241060114 by:0.013447843485786471 or:0.012794166593089693 tbe:0.012024509152999897 :0.010353482361299817 that:0.009291482237329618 In:0.007938246807075932 from:0.007526799010378873 other:0.007469196869028889 all:0.006409533041696086 for:0.00626887758057738 :0.26945732036088327 +a:0.35776375475943795 of:0.10024290278066922 and:0.06906417468040209 for:0.05250557787011241 no:0.04738418022409286 in:0.04609470562504953 the:0.04372785877088151 so:0.036875194309456884 any:0.024047622471575582 is:0.02314783749892014 very:0.021625025233180658 have:0.021172031622821087 more:0.01996608566771905 be:0.019243356274814445 A:0.018829303830302756 that:0.016950810955482617 are:0.016915074260709703 by:0.015322691616494284 as:0.015297025912888928 :0.03282478563498831 +the:0.7855508602441817 tho:0.040750628069386945 a:0.027913467704427233 The:0.026771966114969913 tbe:0.019096616031836232 his:0.018704782296290384 and:0.01118037324271501 in:0.007355629019198629 its:0.006324647879804864 their:0.006001039316065545 our:0.005026873242887015 this:0.004935383921918341 her:0.0044821661041221615 of:0.0034215199600970488 great:0.0033335149437712366 or:0.0032587997585103367 your:0.003206328300011617 full:0.0031894340523594346 tlie:0.0031292920969350885 :0.015366677700511224 +the:0.09684081064840576 and:0.06551335624548284 of:0.05146145169206151 from:0.049520598669154245 a:0.045427902131977435 to:0.0370403239153822 be:0.035669151526387034 was:0.030489628475080553 is:0.026635804908522978 in:0.023878514238638158 are:0.018513936943033917 not:0.017945708099223703 or:0.017556265685966497 been:0.014265228721347686 at:0.013857211504087178 he:0.013733215789660087 were:0.012396679125422956 I:0.012347944480187516 for:0.012197989992860347 :0.4037082772071174 +the:0.16807735899698817 of:0.10541662057906837 and:0.05138367848570702 a:0.04141865232648221 to:0.0385989743764065 in:0.026264864977736738 was:0.019530675665220657 his:0.018900421021236905 be:0.017373825006196972 their:0.015767721170721456 for:0.01557246589796783 with:0.014071419046630446 is:0.012922913111931644 at:0.012690452250034052 are:0.010702713108721902 .:0.010158075558988393 Mr.:0.009672788574483367 tho:0.009612591781990074 were:0.009549306361446321 :0.391314481702041 +be:0.16559317519419345 was:0.16066666416140926 been:0.0872828339244904 were:0.06979843650033293 and:0.053259029744943946 he:0.04746002503574076 is:0.04009795838570132 are:0.03994919366454079 has:0.03911235855935329 have:0.03288442261270076 had:0.031051411549299877 being:0.020667340112750936 He:0.017762181653457023 a:0.01772961221621886 it:0.013535855724592814 who:0.011643840208929475 she:0.010094925837452813 that:0.009131367812559632 which:0.009074640018833773 :0.12220472708249787 +o'clock:0.25397328415734943 6:0.041642459543139956 4:0.0411817601042537 5:0.03846021983088441 of:0.03150647811463057 7:30:0.03094916716405086 8:0.029801570090897327 2:0.02546163672077689 3:0.02539019825257238 o’clock:0.023667474594974067 7:0.019104414521965866 10:0.016936001909479807 at:0.01684483820408208 2:30:0.01526731037420234 9:0.013581112309117403 o'clock,:0.0132988941957566 and:0.012752450757399478 two:0.01156985650744819 3:30:0.01115941641092288 :0.3264514562360957 +of:0.291641372440551 in:0.2029205872603986 the:0.14238764550005434 by:0.08582032806770606 to:0.04503988333653913 In:0.04016779492360584 for:0.024507661290564246 that:0.01643641777527766 and:0.01615875174949936 from:0.015501113892216561 with:0.01232318298162109 on:0.011473822940794673 upon:0.010004910989770537 which:0.009534636271853079 under:0.009042219757936381 at:0.008919800723073685 ot:0.0073536198955820265 iu:0.0073333749339820255 tho:0.007017080766129413 :0.035415794502844315 +to:0.5689321633180019 will:0.0978964859573034 and:0.04414321789428017 not:0.033038041238836455 shall:0.03251884772269428 would:0.02903299020564743 must:0.026784986590771522 should:0.020140285551845993 may:0.01838516414188589 can:0.015269699791313816 or:0.0116556076195613 the:0.010424552619473046 could:0.009086226824829222 of:0.008065904223052969 they:0.006259203059345701 I:0.00625052618337313 which:0.0056460078350415496 we:0.005574806871198071 who:0.005393192617199009 :0.04450208973434516 +said:0.5471265855219357 such:0.06112978779257067 the:0.05191848331766794 a:0.046103057697858815 certain:0.027336254792811442 to:0.02100675426023546 his:0.01978662480181169 of:0.01966701904487878 and:0.015088816012226173 this:0.01449091467343724 their:0.009216583590699158 any:0.0071777616033340454 our:0.0062963788876405 your:0.005297079622201766 her:0.004584427829806327 prior:0.004448746039135158 by:0.004322195855319772 first:0.0041843104046051715 that:0.0039585779400938765 :0.12585964031173028 +of:0.3288015402847711 on:0.07833147658835143 to:0.07787399083906361 and:0.05887636056915686 in:0.05774308740065293 by:0.0529077552937182 from:0.03851985738748925 that:0.036685252126017344 for:0.027498462927751433 with:0.027452577177386105 at:0.022111893879838983 as:0.01519685603282096 upon:0.01362539095354755 In:0.013411378850214558 when:0.012476220739101733 which:0.011303410435477583 before:0.009175414832135355 is:0.007872651350357194 was:0.007824063895758652 :0.10131235843638914 +that:0.22237177970404692 and:0.07704322639108734 as:0.05345922853734138 but:0.047121072236143376 if:0.03661348329085378 which:0.029769775025724497 what:0.022109615207773835 when:0.020200699735094137 think:0.016742712634118764 thought:0.01605519427044558 If:0.015937628650265233 But:0.012994120135003485 where:0.010866850458442554 time:0.010503148274762734 because:0.010242348126466846 :0.009979873644251652 than:0.009193847581952564 it.:0.008503737686345167 me.:0.007815070982332995 :0.3614765874275472 +the:0.0759958890593375 Main:0.05225962453654274 Third:0.03756356463895297 said:0.03733566954640929 Wall:0.02789565787488268 Sixth:0.025034306412115726 Market:0.023323654978267324 High:0.022780549276370875 Water:0.018517443293589224 Seventh:0.018362558052501216 Second:0.01819612164083284 West:0.015726589189545677 Front:0.014752119768709923 Franklin:0.014544952249333361 Fourteenth:0.013802191912553814 Fourth:0.01310728501996703 of:0.013054301329259483 Fifth:0.012998706771006348 Pine:0.012739074979936585 :0.5310097394698854 +the:0.48392975462029586 The:0.07077741426482544 and:0.039650033028846614 a:0.034377795851313425 this:0.027653946060610793 tho:0.025551684344277105 his:0.02240696345417706 of:0.022386246764972986 our:0.016197105774237865 New:0.011876361449396782 their:0.010877828128265979 her:0.010358064013059312 an:0.009983755191406764 tbe:0.009729164854329205 its:0.008438242187470447 to:0.007533051987076986 my:0.006986558450075626 your:0.006749187991385758 that:0.006694965539354801 :0.16684187604462117 +one:0.1028303141280697 part:0.05963429477052991 out:0.04766456937681193 some:0.031418679026461914 members:0.030764490253327767 side:0.029940657362655835 portion:0.022063658796890564 office:0.020457735219956013 member:0.019726706386316174 end:0.019666887540649894 tion:0.018667441728710307 parts:0.016814747270460957 people:0.014112771422418794 all:0.014072739582212475 any:0.013183573287639892 One:0.013083578354183906 that:0.013024335602903442 account:0.012482348155001894 many:0.012077825070275192 :0.48731264666452345 +the:0.4159506012122366 of:0.04408422756148331 The:0.03563411470419574 in:0.0325983121174115 and:0.029497049565973932 tho:0.025922807399325974 :0.017138247452663045 by:0.016322298404436327 at:0.014813837044445291 .:0.01207190107453986 tbe:0.009683841699692485 a:0.009668107388100745 from:0.009423957928082038 for:0.009331233652871173 A:0.007331275533315487 In:0.007160433260350197 our:0.005674450235266178 with:0.004893893421422987 his:0.004206367726374974 :0.28759304261781216 +two:0.12611921914453889 few:0.10186146432028385 some:0.06444856396933635 three:0.05798304048208624 and:0.05587806330361642 many:0.055249040515375054 the:0.05024116685679559 one:0.048204841659308634 a:0.04249778826000008 several:0.03553210072579875 short:0.03443492119796544 six:0.03303258203464074 long:0.028355835682610294 all:0.02583010836695163 seven:0.02453814563081934 four:0.023621616009331242 ten:0.019111840518183192 their:0.01846724660744272 twelve:0.01808259998614475 :0.1355098147287708 +made:0.0999812034390529 and:0.06680208263369662 caused:0.02435411478715239 shown:0.02379785223577525 up:0.023253655008919294 ed:0.02312002180398423 out:0.022293807888227747 taken:0.021988971765594088 done:0.02128782706813444 given:0.020283609421760777 paid:0.017098570970207227 owned:0.01708227903067019 that:0.01698438626809451 or:0.016145946252097726 him:0.015808363688274 followed:0.015366441255538056 appointed:0.015126279845513936 held:0.013990473525433292 approved:0.013949758860964168 :0.5102843542509091 +of:0.29525046602909816 in:0.13718400050685947 to:0.1128316285693787 by:0.06360307452445939 that:0.05534397989420536 and:0.03489924242523088 for:0.033671824390933254 with:0.032822033960016594 In:0.030789384369195108 from:0.030541463735310633 on:0.023661875367803554 under:0.020584821888714584 upon:0.01692103099938012 at:0.016037947643750456 into:0.013250239515586962 as:0.009623019374631163 all:0.00906109090507895 through:0.007574922865432944 which:0.007403441079431586 :0.04794451195550212 +the:0.1652759358306277 of:0.06900852881958826 to:0.05709221117683389 in:0.04022160940702983 and:0.03237654061009243 his:0.018894184814995905 was:0.01793391995408184 be:0.01738368940527303 a:0.01704899539853463 for:0.016518835643279037 at:0.01452884488397262 that:0.014342106045006964 their:0.013965418248363967 Mr.:0.013314140357131455 is:0.012693324268181871 In:0.012639168274877734 con-:0.011774429846490153 on:0.011178517578409937 he:0.01072601715782147 :0.43208358227940724 +and:0.0840859667809021 balance:0.0774712217995304 was:0.04651918241793684 residue:0.03883995909901652 that:0.03397505951972994 one:0.0338729070637448 is:0.029567772634800534 up:0.026871909244377226 are:0.023757549785946873 were:0.02179839245732876 be:0.021447777252458822 interest:0.019504803631586194 payable:0.017444301952496483 week:0.017020156345052932 been:0.01535053476292414 placed:0.015113547472289468 made:0.014312324354039379 work:0.014065612800398829 him:0.013693555802576723 :0.43428746482286307 +has:0.2933574065400913 have:0.2917033492490064 had:0.21663053746480276 having:0.05243481207567618 not:0.028752994783831403 bad:0.011904250323937663 lias:0.011408927057280551 ever:0.011169033006720914 never:0.010286584320287675 havo:0.007540539081344745 already:0.006032474136781318 yet:0.005689319580084277 always:0.004600335185401523 haa:0.0036670113149448367 baa:0.003536910638037315 since:0.0032224601071093525 just:0.003192845184287355 recently:0.003112414621477361 bas:0.0021472339319193396 :0.028610561396977655 +of:0.09129790931378902 the:0.07369883040827747 and:0.047842263382354346 in:0.04189055351593407 to:0.04045875475680249 a:0.03542341257202578 be:0.02020462051672066 for:0.01979292654746225 was:0.01760256398103379 at:0.017380150555488715 is:0.014984483003968216 with:0.014047653760730413 by:0.01374644383819499 :0.012670486581795598 In:0.01200961464556976 or:0.011563835749786333 from:0.011391516893522809 are:0.011273104484969465 that:0.010755276030689069 :0.4809655994608848 +of:0.16374495768360597 at:0.10637119194877842 in:0.09200753098015066 to:0.07707735370039541 for:0.07125976730470698 on:0.07047994633191061 and:0.052842719796100675 from:0.033475377595949346 In:0.029575959091747654 during:0.02699847842109559 that:0.02451368576345207 until:0.022252103815355827 within:0.021577087041070392 by:0.019781017528441507 with:0.01397805937123127 before:0.013677587643788316 after:0.012846637452722189 when:0.01133233190778724 was:0.01130595681714966 :0.12390224980456022 +and:0.14286321023718884 of:0.06917476767196588 by:0.05657984284898513 to:0.04011939934122287 that:0.016377403021364166 from:0.015424776731265353 :0.013310907268862037 at:0.012097916182382921 for:0.011340142223458477 with:0.011089788082178451 on:0.01030627380645755 .:0.00772025120184956 was:0.006837630084286694 as:0.006083809085487724 Mrs.:0.005453061619258162 in:0.005408257415240376 said:0.0050317947105467985 or:0.0050268667746874805 which:0.0048138844426227675 :0.5539400172506888 +he:0.14706215397278885 I:0.08956274047769351 which:0.06422819193124046 it:0.061674432297074484 He:0.051602200492432845 and:0.04897043336422396 she:0.038626797220669994 It:0.03707462213592559 who:0.03657366907903509 that:0.023039919541555445 man:0.012673714604412708 She:0.012161620347356622 be:0.011063875995802377 This:0.010394434268346086 ho:0.009679404763609034 lie:0.009627912260778266 bill:0.008974513580191596 but:0.00888545432107057 there:0.008388199254313495 :0.30873571009147904 +the:0.14302231086574804 and:0.10214760345968586 is:0.08686315341426999 be:0.0681084430962332 was:0.06481723730419495 are:0.05471486718970515 to:0.02983818200217703 not:0.021465869621492408 by:0.020232824342326945 a:0.019077770571315454 as:0.018597095701053876 were:0.016581511168764582 or:0.015238929548456582 of:0.015082023673577638 most:0.014561128103869662 been:0.013213221788785166 Is:0.012809705198255555 The:0.012441033158051059 he:0.010943396359458813 :0.259243693432578 +of:0.21482942616190767 to:0.10852787743707544 in:0.09885325784985624 and:0.06535064287796638 for:0.06317551335606551 that:0.05580980636473424 by:0.04308831432393796 on:0.04172292091430535 with:0.03912969019226572 all:0.032111312652680954 from:0.025054137592887306 In:0.02033188357042091 upon:0.01849151951663336 at:0.017827692521788008 is:0.014160105682651664 into:0.011430482620554166 as:0.010684270805790175 which:0.009451998966070334 or:0.008937547860000184 :0.10003159873240842 +as:0.10482602736853097 and:0.06765993784406435 in:0.03413511629827808 of:0.03201679167711651 for:0.02932219157068985 the:0.024137523785394875 by:0.02381361932024449 that:0.02310782573530153 known:0.01962797693517407 ed:0.017615655917835128 with:0.01696211565481355 or:0.01673447954371038 to:0.01544623826903377 go:0.013562407318615442 United:0.013299817091784039 same:0.012675535683094697 made:0.012548951384501877 up:0.012280487543612889 little:0.012204524339493511 :0.49702277671871004 +the:0.35699763512302907 as:0.10031224343654865 and:0.05070716217244645 The:0.03740425124765147 feet:0.02703194145900386 property:0.02509503548819383 miles:0.02490480046323985 of:0.020332509900739003 tho:0.020099875282604145 land:0.017834498723087004 far:0.017726641258091324 that:0.01506317129421177 said:0.013448901609752891 is:0.01340923532700209 was:0.012706249438129535 be:0.012282149963830565 described:0.011780202385241533 all:0.008930025236966954 just:0.00892840976280863 :0.2040050604274214 +the:0.19591809810531005 of:0.1007761230464731 a:0.08081766147171135 and:0.07089084996836605 to:0.031563868363934766 in:0.02754249462867556 an:0.020331805267780174 The:0.01796946570788994 by:0.016280772952860744 .:0.01554977804275824 with:0.014106004589941115 tho:0.013668795593840351 his:0.012979662830558344 or:0.011861182060393688 at:0.010029254658600236 on:0.009781281371593864 :0.009115691604834589 A:0.008544782028553962 as:0.008524741264515814 :0.32274768644140805 +due:0.033127682237252626 hundred:0.02667689872738576 dollars:0.012810903325725235 up:0.009037692229232789 dull:0.008889361217203389 ;:0.008676263461491725 quiet:0.008513887420298098 time:0.00764658783201134 them,:0.007391418954457066 dollars,:0.006834256820509422 men:0.006696180111382075 made:0.006590626889329335 principal:0.0065683676046026235 it:0.006362513958760795 land:0.006329708718227569 law:0.006045895032629698 them:0.005561494206378668 out:0.005500033116112251 sale,:0.00531938574387512 :0.8144208423931345 +and:0.08995317707915026 to:0.06844710404109794 of:0.04605142056172993 the:0.04074574508561307 which:0.02479116931334353 that:0.023764822140213245 re-:0.020841117231308055 in:0.020803825395358622 for:0.020278423301550053 :0.018417753428486977 not:0.016860793136637672 con-:0.016444405871234195 is:0.014386481772210856 or:0.014080680914153714 be-:0.01352268143271276 I:0.01317002660943805 was:0.011429878269381662 dis-:0.011196807025842847 he:0.01113106290024311 :0.5026826244902934 +the:0.3868916380245951 in:0.07644878214237096 of:0.052597738710080257 to:0.046161645308301164 a:0.04552676070728976 and:0.038339951843303986 this:0.02871401162621075 that:0.02484690783099882 tho:0.019584009546564262 any:0.018773727949774697 The:0.01778966845502363 his:0.01760533122347514 our:0.01584243395971936 In:0.013570538027681536 with:0.011704444468612213 or:0.010594903456424953 for:0.010316568761257824 said:0.009059608677365867 her:0.008315594441215851 :0.14631573483973392 +be:0.22129725756376978 and:0.09014696850644154 was:0.07224055444227528 he:0.06083965672063874 is:0.055530846569485606 been:0.05524362250695684 are:0.048200701470788004 were:0.038106299708323424 they:0.02551195112716223 have:0.024151224039912426 a:0.022871224627403226 has:0.021502125757189915 who:0.020793948729803724 the:0.01906541144145202 I:0.018360652431167725 bo:0.017014350645032848 not:0.015513213172238088 being:0.015461441845139822 had:0.013910862698026383 :0.14323768599679237 +highest:0.05743110403945974 up:0.022887540531175945 made:0.022779044518812092 it:0.019342144067297635 in:0.013179935815715438 time:0.011229751255812331 him:0.01053300940408613 them:0.009919869798681523 out:0.009595449534565708 right:0.009058545303285544 large:0.008744337402630219 other:0.00851950457438458 better:0.00826031648372876 long:0.007678083766957513 work:0.007561566133905146 largest:0.007183470292702689 life:0.006951453788603775 health:0.006921194035107229 good:0.006519627649328842 :0.7447040516037592 +the:0.46691644435627 of:0.07320575221448582 Federal:0.047509250858621406 our:0.02743492855118722 The:0.027325984495330444 and:0.02609957973626275 tho:0.025639683707321143 States:0.019197865996696335 said:0.016822390181777953 their:0.012643194411095134 British:0.011108910017768333 great:0.01110603893479861 tbe:0.010956971494439966 a:0.00972287643129511 this:0.0089008819913525 American:0.008695919847282593 an:0.007285106241640268 National:0.007098600962783976 to:0.0065772217754733004 :0.17475239779411714 +of:0.16761062419673634 and:0.1069230585297939 is:0.08652564911600422 are:0.05400004842610764 there:0.04461561177000055 was:0.04244617657457225 in:0.026923642397759063 the:0.025646306061773115 not:0.02158286321115976 after:0.020472071523255496 as:0.020248731788669167 from:0.019694651529414037 it:0.019657630138584643 now:0.019443184964044492 on:0.01944211379959838 by:0.01627283326066493 that:0.016225060300154137 were:0.015766495774558922 to:0.012909537574536289 :0.24259370906261268 +the:0.11772829171290487 and:0.0781674885065048 of:0.07167970430110675 to:0.05380593022319147 in:0.04338783981710163 his:0.02915440943526211 be:0.029040680129466177 a:0.026059035354864663 for:0.024832692890857867 was:0.023738743175792113 is:0.022059593269131022 their:0.019752320906839288 he:0.017656238599000715 as:0.016478255872202495 much:0.016066705385182248 that:0.015582232227554463 at:0.012400807465895353 so:0.012133545205562214 her:0.011193135755430506 :0.3580823497661493 +the:0.1738065572100552 to:0.1426009566930569 and:0.09160396851613929 will:0.06810712916790744 of:0.046256953657181035 was:0.04364462676022746 a:0.0434921615099681 be:0.0399662171525874 are:0.030678491627057186 not:0.0303578040715064 is:0.02915059628055708 The:0.02431225182591405 would:0.022681492688006892 were:0.021336070015714637 been:0.018357645075418656 most:0.01811035821548626 who:0.01697426529765406 he:0.01682715794418365 his:0.01638119842131265 :0.10435409787006568 +the:0.1165434839667137 of:0.1027543539104404 to:0.050862473251381546 a:0.04144923025016877 and:0.038101248437263154 at:0.03326056112904429 on:0.02545442158085963 in:0.024445814399496713 :0.02032047014629068 by:0.016833600475835292 with:0.014157454797035871 for:0.012652228242606296 as:0.011650849205627915 from:0.01153814899078464 that:0.010301041725276502 or:0.008776438221712398 The:0.008744648684932526 an:0.00872249338698443 In:0.006774006794798933 :0.43565703240274634 +I:0.1956824458337727 they:0.1394016595202856 we:0.11925221285793168 he:0.06331793424245885 who:0.05597751354156453 We:0.049253078122973165 and:0.04124210952753482 to:0.033104925623208915 would:0.03195669308435506 not:0.02987971039537781 will:0.023424398378392382 you:0.0227801246792101 can:0.02257650197504361 1:0.020071273924495314 she:0.019685576682596344 They:0.019389094978634478 may:0.018937193293704663 He:0.017395408357018166 should:0.016360811482115163 :0.05931133349932663 +the:0.14919063757748777 of:0.11536697244029066 to:0.0891331571201454 in:0.05321711144109847 and:0.044355641116559194 a:0.03794915991190596 for:0.029427556837194804 on:0.028134855324406422 as:0.025842720102153157 by:0.02131632528696454 from:0.016643588506686725 that:0.016571729646337307 with:0.014527889133008919 In:0.01369097598269033 or:0.013300845747768936 :0.012985045748982056 at:0.011885841919656649 their:0.010998840946188316 upon:0.010555569762362048 :0.2839055354481123 +it:0.21676130613074232 It:0.09333221239678495 he:0.0837378321356387 which:0.05864467708947579 be-:0.05459674861339175 and:0.05373904184092379 that:0.040271888916737796 who:0.02202401618913391 she:0.01935701235593829 He:0.018846676485476107 as:0.01674700138394274 time:0.016381168112453916 there:0.015870187479242095 be¬:0.012510783249200635 I:0.011396277225469827 be­:0.01114382562552319 but:0.010275050899247186 then:0.009546650775485764 what:0.00940316786738078 :0.22441447522781047 +;:0.017374224410969023 in:0.013670713784022978 it,:0.006657654997785472 them,:0.006566512435249023 men:0.006027192641032741 and:0.005987793867203476 him:0.005944690171289674 ,:0.005439657702084316 him,:0.005105679100220295 city:0.004546178852430426 up:0.004322705977259693 to:0.004054023314216605 :0.0037730107370427396 them:0.00356547254007056 .:0.003549425684893236 me,:0.0035386758019991427 time:0.0034549175048151776 out:0.003242179411791395 :0.0031953039190557135 :0.8889839871465683 +the:0.14198681521753503 a:0.0889654963191711 and:0.08271019747582573 of:0.06392974391806967 to:0.037579228088119664 that:0.019458770030664936 The:0.017985461785180585 was:0.017451418601651097 Mr.:0.0165747771924077 is:0.014593454083210822 be:0.01410258090039494 in:0.013812003189766485 are:0.013695303418631578 .:0.012938622312348293 or:0.012307912167765087 tho:0.011739100854308186 his:0.010833285958916078 :0.010298030855051276 were:0.010267217780525846 :0.38777057985045593 +:0.1083206060689474 it.:0.020116294401799188 them.:0.01396321941248989 .:0.012813284201711156 him.:0.009565544979975858 time.:0.009380897188969398 country.:0.008081063147358231 day.:0.007520217525339764 year.:0.006104175328494478 work.:0.0058948019681095 years.:0.00564018454900692 city.:0.005466440279938083 people.:0.005448292560769116 place.:0.005194613770951025 of:0.00477675037213095 feet.:0.004512625409488361 world.:0.004479822842051577 there.:0.004434307830574514 up.:0.004402168685252406 :0.7528846894766422 +and:0.10080281565605374 was:0.03947041689539155 that:0.03918920415183772 is:0.03126272903612401 it:0.026548268530002705 be:0.026192532442494913 inches:0.02402376631989624 feet:0.023739256822629864 them:0.0201310451751347 made:0.02003513122591493 are:0.019640420686254264 or:0.01919866439192485 but:0.019174163280384328 been:0.016953077293428948 succeeded:0.016772399872435326 men:0.016562121293239217 him:0.016242318776819982 up:0.016061834565785225 one:0.015381625850870469 :0.49161820773337706 +I:0.7587351498370385 "I:0.08521721588975523 1:0.06887759778305641 and:0.01450859958720153 “I:0.006480719586646149 we:0.0049143933537037525 you:0.0035780342730838545 "1:0.003559804724013446 'I:0.003421400793137873 We:0.0031927692616637564 that:0.003029011462700818 he:0.002641270223833462 the:0.002303781183979192 which:0.0021226809744116365 to:0.002095248592046071 all:0.0017916849768273655 they:0.0016826082663838101 have:0.001472741943275266 one:0.0012681707357580486 :0.02810711655148378 +sum:0.03352282876311118 number:0.028116684882597106 line:0.019995206059833036 city:0.01946514558931857 out:0.019275318828420953 day:0.01666865340772654 county:0.014872697538657208 amount:0.013254184849875051 Board:0.01252325449624941 town:0.012449555905674143 side:0.011663975251122375 part:0.011517157473718155 County:0.011460540331966697 state:0.011087331502382173 City:0.010878919191854432 purpose:0.01081028255427907 and:0.010297866493795984 way:0.009848747943663767 name:0.009522170936943183 :0.711769477998811 +hundred:0.02334136986593815 up:0.005482494641173394 men:0.005366536521246011 Hundred:0.0047587970519216575 John:0.00441808156134956 William:0.004390720675819281 him:0.004016828614280843 ;:0.003997112205305733 due:0.003721199871732 in:0.0036582900032443304 time:0.003637206863828461 James:0.0035594902370151707 out:0.0034878448964120057 .:0.003467980723571515 1:0.0032804584819785204 day:0.0032444781513863933 ,:0.003058139385740603 :0.0030314555521939613 Robert:0.003005471634785646 :0.9060760430610768 +and:0.07705437548817387 depend:0.031536193375950296 based:0.03144111872793531 placed:0.030957065963502946 depends:0.03075765919212402 called:0.030155936973754766 down:0.02681736716319054 made:0.026577710722022318 effect:0.023344764020024934 that:0.02149799173318628 look:0.02036076372291408 due:0.02026744173692952 call:0.019789339473829694 levied:0.01970103437603757 imposed:0.018928989316509288 put:0.01802119246063272 dependent:0.01689647076264392 out:0.015342186135269933 entered:0.01437601109950992 :0.505176387555858 +J:0.12616500889124346 W:0.09255592140027975 C:0.08481779831835182 M:0.07201308764933073 N:0.05960981548672413 S:0.05454278283134203 H:0.05144845864246558 F:0.05006437916862106 E:0.048846419251930305 B:0.04861222170022127 P:0.04216198225391421 L:0.04149003822292222 D:0.032376289782933027 R:0.03140938328854271 T:0.027758357211617426 A:0.0259328114475453 G:0.01731520288269444 K:0.016910576901916278 8:0.012486078863136829 :0.06248338580426743 +and:0.07400401043135386 entitled:0.040513179285096 him:0.03996197285275764 them:0.03953402793016198 is:0.03534806355710014 able:0.029585914317962904 made:0.02898742620002148 up:0.025793239009727145 it:0.025337509306353083 brought:0.024826253818918252 time:0.024072305842901008 went:0.02399194826915796 as:0.023648712801388378 going:0.022699813686100145 was:0.022508062283812014 came:0.02164695694693408 right:0.01871223897563416 go:0.018124390779115217 enough:0.01710712116445255 :0.44259685254105197 +and:0.07558940021936399 recorded:0.030196237618668006 was:0.028917161578042846 made:0.027969746247669736 that:0.027730098932509103 o'clock:0.025060522019555328 up:0.023026552239529506 is:0.020398277211376416 found:0.02003101797656537 placed:0.017482208134164214 out:0.016937164562539058 place:0.016819459500107596 interest:0.016629321966808677 him:0.016002796715253755 situated:0.01573420479581609 it:0.015128305982428461 them:0.014715943643665314 part:0.014646613000297721 interested:0.014450471929902294 :0.5615344957257364 +of:0.1846414056350744 the:0.1267537140241226 in:0.057079142261143995 and:0.04929048344216501 a:0.04400942736009825 to:0.04362838110265475 on:0.02476504965007808 from:0.021931508191835997 for:0.020793493461078394 at:0.020716121075706535 be:0.01896542685675362 by:0.018774124308419446 with:0.01744869449170777 as:0.0166112327426781 was:0.016003201935742607 that:0.014434855504631668 In:0.014033607504513934 his:0.011812662025222975 is:0.011648940010729011 :0.2656585284156429 +the:0.3404429395818548 said:0.1816339146690652 this:0.08185900328066557 of:0.039355421417652345 and:0.02846792188803105 a:0.02658151397719059 tho:0.013197941647312998 that:0.012349445519893865 The:0.011753017051712101 Lake:0.011542958349790371 other:0.009277413721774574 our:0.008740646190357564 Custer:0.008542553219090535 Redwood:0.00841279483792059 to:0.008306911524299463 or:0.006842045509047066 tbe:0.0068026130874422365 in:0.006781001094181767 Stevens:0.0067518748154201825 :0.18135806861729714 +the:0.18822966315818895 of:0.08211888749362753 a:0.07150421756953976 and:0.06945328419412237 be:0.022402563772326408 was:0.02229146678631145 or:0.02067756073578934 is:0.020315925169983033 to:0.01951927231806077 an:0.017593920451760604 in:0.017522416128077343 The:0.016975516206271253 are:0.0162447222239378 Mr.:0.016017587841872575 for:0.014480770349672975 his:0.014316689965823763 tho:0.012792546941500785 their:0.012596771205041744 this:0.01254986281781266 :0.33139635467027884 +;:0.027488708181287687 it,:0.01958917362811013 them,:0.011734148321642797 him,:0.009807221804048033 in:0.008313229650925371 time,:0.007688385999744575 him:0.007389625085221205 country,:0.006853233578626019 years,:0.00626528268415626 ,:0.0059988628132242065 and:0.005839985371392634 people,:0.005728202179933982 up:0.005606460628007509 up,:0.005333752120618328 year,:0.005161777230700628 one,:0.00505844778761419 here:0.004939839190866411 out,:0.004781955925715608 it:0.00465859216314566 :0.8407631156550187 +of:0.1769277107979233 in:0.12371928988699704 the:0.10050115533090369 and:0.08474652875439893 to:0.07227771628783497 for:0.049905550044552334 In:0.03515574056882664 at:0.029480548836964687 was:0.027347432116426627 with:0.02597304679713978 from:0.02281694801205064 by:0.021087819328641767 a:0.01895307815511008 between:0.011578983062515778 were:0.011270277625475453 are:0.011078750487561033 on:0.010792961195135321 is:0.00976447509149511 as:0.009665120173599651 :0.14595686744644715 +was:0.07496995351946553 and:0.07182497654662777 have:0.05024626094581685 be:0.04626560305929168 had:0.04393153215293335 is:0.030802565273207922 are:0.027792220154828223 were:0.0246583556955739 has:0.02409933025634732 do:0.020561362269672912 him:0.02015782386194279 been:0.018649598526187763 made:0.018178585957715418 man:0.018172432934531104 but:0.017177505813169593 them:0.015366436226281454 it:0.014821877851117932 I:0.014604417533941354 or:0.014445276438529595 :0.43227388498281755 +the:0.7408750978282658 The:0.05698935059362098 tho:0.033153000586214884 and:0.020767224598142762 tbe:0.014892713680794764 of:0.010350958639195862 a:0.010215289216498937 various:0.007577127794877405 other:0.007484709708434294 for:0.007165490567152395 two:0.0063924938361602105 savings:0.006212195588898082 national:0.005988964624417646 or:0.005889645321534463 these:0.004062278011807759 high:0.004036192874999712 said:0.003943559481144451 in:0.003890633984588938 public:0.00337417977834839 :0.0457388932849023 +and:0.11135623982625609 to:0.08435450099433275 of:0.03990909368304502 the:0.03511234380974808 not:0.02764180266933844 that:0.026995854224666663 or:0.02322925438738969 for:0.01836512993871698 which:0.017295679559101523 he:0.016988954253314315 as:0.01685106346233976 I:0.01655695485000143 is:0.013828933286440033 re-:0.013566642136786017 be:0.013001666126692424 in:0.012275331320903521 they:0.01118295603926544 you:0.011029604129062568 who:0.010214969179983784 :0.4792430261226155 +the:0.7410709820282886 of:0.034499270755611176 tho:0.028811808086144565 in:0.02263451826643958 The:0.021569602401755542 by:0.020783993012195853 and:0.01650396476657493 tbe:0.011775305998376354 said:0.010005484151048624 to:0.009136634004404676 from:0.008174956639130575 on:0.0065787932643302524 In:0.0049931210746729975 a:0.004794879380391498 :0.004419997492052078 as:0.002393234143126949 with:0.002125521404480972 States:0.0016914303829487242 that:0.0016681579793864907 :0.045368344768639615 +;:0.01458927046758731 it,:0.007973265891266864 him:0.007834970369143835 one:0.007240974664279108 in:0.006989508095588829 and:0.006417396987522371 ,:0.006059091806132192 it:0.006014614548599763 up:0.005812344146302806 out:0.005395853159197619 them,:0.005290532062834904 him,:0.004938420268273817 city:0.004793760033506698 :0.004646491011450349 man:0.004641061555670736 country:0.0046164671969483135 feet:0.0044416267197611185 time,:0.004376787347733258 time:0.004358244018157902 :0.8825693196500423 +of:0.275574333881826 to:0.08636224615023709 in:0.06631904249133982 and:0.053992018225395254 for:0.04185726238848965 by:0.040432462728593715 on:0.0386621368609385 that:0.03746813623829841 In:0.02853879791593314 at:0.02784511394431448 from:0.027249043353089128 with:0.02598983508374518 all:0.014273748255081415 as:0.011953034597961125 upon:0.010404474445179767 is:0.009962155410920995 ot:0.008697425934451705 through:0.008441579399216994 which:0.00831499649011874 :0.17666215620486883 +that:0.11958881906201743 let:0.09911151853612007 as:0.05792918869123171 if:0.05575921050806933 for:0.05331909669118986 and:0.050315857182982364 make:0.031623062985084695 does:0.0315465171202256 do:0.030409535128462936 did:0.0257205770824483 but:0.024416556677330496 would:0.023922972427026585 will:0.023151514949252078 of:0.020898997557108702 is:0.01927836293348942 Let:0.018891207164374237 which:0.016418629095442068 have:0.016329359715712817 when:0.01597494062338314 :0.2643940758690482 +the:0.20275648648001907 of:0.11023560520263648 a:0.09743618782357981 to:0.06065505427956915 and:0.046543453087323536 at:0.03166451287653445 with:0.023858846474351155 in:0.022498568792236894 The:0.021507516933588842 from:0.019156238434343036 for:0.01830444271982525 that:0.015143446919594078 an:0.014431193394371962 be:0.013454184332951912 as:0.013451988484377337 by:0.013315542813749538 was:0.012718112496726467 tho:0.01251182820777796 on:0.011852430299624975 :0.2375043599468181 +feet:0.0719208472326295 poles:0.05759396229176634 up:0.04010587224329879 chains:0.0385088170079141 entitled:0.029123404981740347 went:0.027388526271997813 came:0.025857650765910022 down:0.025633262313841977 him:0.025574415868859987 as:0.024916209858287616 and:0.023917753661251574 subject:0.02185045005331621 brought:0.02171367122116056 them:0.021644069985480026 it:0.02099405133651225 rods:0.019030517253069822 back:0.018922583019034468 go:0.01891708435510451 sent:0.018892511875840953 :0.44649433840298314 +50:0.05401428206609109 20:0.04991301979490946 120:0.03531313524188912 25:0.029371131653073278 the:0.02782742168785531 14:0.027547938142260937 30:0.026362382509850506 75:0.02616128422066324 40:0.025670192384668385 100:0.02435536532361759 ,000:0.023548689682955884 55:0.02120879469039519 60:0.02100247577005019 15:0.019979367778394236 two:0.017979665115896833 000:0.01775821130029476 300:0.016168010927228204 1,000:0.015820213255015817 12:0.015674188923217366 :0.5033242295316726 +number:0.05972967782837122 out:0.04502812180979282 purpose:0.04500458531212454 amount:0.03612136293733147 board:0.033140427689843176 state:0.029475354201864094 one:0.027920223222591852 and:0.02749767030034662 act:0.02326048262267404 means:0.022556475804504053 years:0.020327626811982726 cost:0.016985630182265673 sum:0.016852220775345806 point:0.015822964608609838 lot:0.015447969603495738 cause:0.015167091107436229 that:0.015042117509848232 system:0.014947475414697646 people:0.01480822254766214 :0.5038642997092121 +to:0.09510176257557867 and:0.0759782477397007 of:0.044882537993784916 the:0.0315600709783228 is:0.027469709441114137 in:0.024414242512733896 was:0.023644505786906175 con-:0.02072663556943141 will:0.0197525729259325 re-:0.019515757684955143 he:0.01933396268374066 I:0.019168528042120436 for:0.018758717550584603 be:0.018539065847662673 would:0.018528419960293203 that:0.017041510263127942 be-:0.016586329410835588 there:0.01648203693916975 not:0.016023551150036123 :0.45549183494396867 +and:0.19543335295258477 that:0.13459433860044104 is:0.08207088812327869 but:0.06611062163442197 was:0.05005891655897808 if:0.03369321200543216 as:0.03333550509235424 Is:0.0254355152336793 where:0.02510048286132488 which:0.023973750585341264 But:0.02228056800752289 If:0.020952906056453065 when:0.020111814657173478 not:0.017042999647803512 are:0.016396503187568974 it:0.015448041938880866 were:0.014235771093895068 Then:0.013482412423223428 be:0.011435393328904819 :0.1778070060107375 +of:0.1596727100792409 on:0.12052203898443956 the:0.0676261970849632 early:0.05114667983688382 to:0.04993213032815243 in:0.04942294763531916 On:0.0366120283053658 and:0.03412840081837918 dated:0.031578338137648716 from:0.02667457190455249 last:0.01935868216808054 at:0.019035277146799146 for:0.018935815271055947 In:0.017872387611631065 Monday:0.016575811527894998 said:0.015719375364280346 o'clock:0.014402498665759768 next:0.013583860465001728 :0.01280683613811602 :0.22339341252643521 +be:0.10948200292784897 and:0.09573537639371428 was:0.07370232571733384 he:0.06939500029135359 is:0.04497383459280534 action:0.044134868231778306 have:0.043756230742226086 been:0.04253740923995994 has:0.03979512717839049 had:0.03974068510171819 that:0.034698772156813995 were:0.027828953115212444 are:0.022737420864067263 who:0.02104505679514546 I:0.02021822128904912 it:0.018476959807386412 she:0.017162025361030984 ever:0.016686127942987992 He:0.014631724499070973 :0.20226187775210633 +of:0.09129790931378902 the:0.07369883040827747 and:0.047842263382354346 in:0.04189055351593407 to:0.04045875475680249 a:0.03542341257202578 be:0.02020462051672066 for:0.01979292654746225 was:0.01760256398103379 at:0.017380150555488715 is:0.014984483003968216 with:0.014047653760730413 by:0.01374644383819499 :0.012670486581795598 In:0.01200961464556976 or:0.011563835749786333 from:0.011391516893522809 are:0.011273104484969465 that:0.010755276030689069 :0.4809655994608848 +the:0.3677251859533507 First:0.07856710239212744 of:0.06563699020396453 a:0.05860015229998871 The:0.028336197279015846 to:0.024036012416604118 tho:0.019214949122430817 said:0.015279943652126158 A:0.013331491355115606 our:0.012976858549557024 by:0.012032311923615471 and:0.011944941565135387 tbe:0.010177407104618907 San:0.009992665893228368 Pacific:0.009401548187948645 on:0.008469117798360314 Democratic:0.007397788002446229 American:0.007233079902982203 this:0.007114972881046648 :0.2315312835163369 +of:0.4171530685822191 in:0.15364795170040718 to:0.072729747264764 and:0.03641551018325196 that:0.03587588251840872 for:0.02973515401421885 by:0.028615577548459153 In:0.025853498822230658 throughout:0.024539330146851564 from:0.02260509632580598 with:0.017713104405098146 all:0.015463704322556377 on:0.013151408020921742 at:0.011926809002406537 over:0.011916780548291015 into:0.011243032264786412 upon:0.008985432312382 which:0.00839901931127398 as:0.006922430890316839 :0.046107461815349804 +well:0.0783261505813394 known:0.07715919941364807 such:0.05477142900040686 and:0.04863188910629108 far:0.0445482759728691 soon:0.03102312685208889 is:0.028257952691436966 just:0.028005499533101993 was:0.022532512345363628 be:0.022395863339445075 much:0.020508662953047308 regarded:0.01823330307450135 it:0.017273059614160098 are:0.016747984622291417 described:0.015259584918361666 long:0.012277346915599112 not:0.011208503916372204 them:0.011089145850343493 him:0.010809593852119817 :0.42994091544721247 +of:0.25870958813815836 in:0.12798167862636256 to:0.10473680785232171 and:0.07335140486582614 for:0.04437032773814829 from:0.041220498750677584 that:0.04076620617169287 on:0.037924002408962015 by:0.03676030947532286 with:0.03500599999375999 In:0.0283093805921038 all:0.021150858363347062 upon:0.01612781851909078 as:0.013444633407234369 at:0.012431137524588121 is:0.011887533842520037 but:0.010249434210310038 under:0.0102230235714314 which:0.008739616994286905 :0.06560973895385515 +and:0.07937204038540155 to:0.07144978193605266 of:0.0672060292061216 the:0.05555592158872507 was:0.03668090227291337 be:0.0349085883197884 for:0.032924091876542425 is:0.02664876365997107 in:0.025674788931279047 a:0.023223776118971466 or:0.016939206298533106 that:0.016539581232081792 he:0.014316053657548605 have:0.01328430700369435 not:0.013187005768047653 with:0.012119957551210947 been:0.01201541922496813 it:0.011894114007232226 which:0.01106992325189301 :0.42398974770902353 +to:0.21685447297016597 in:0.08208585551318756 and:0.07143678476913337 you:0.052249171671090805 of:0.0506712613782733 I:0.04104126519118473 not:0.0384429774329994 a:0.03515933271133316 his:0.031196964322869093 In:0.025448310211487628 the:0.025334287064846882 will:0.025048000087389038 would:0.022779298956595518 do:0.02255790462144556 her:0.01772380568714562 make:0.01725610567963494 that:0.014032339608372038 we:0.013416121614973367 can:0.012792310108543137 :0.18347343039932887 +and:0.060697779640816504 it:0.030286618880550766 is:0.027499724249698376 me:0.026835679770227914 that:0.02629235407007563 him:0.025090043360473404 but:0.022814165723988845 information:0.01992517151423697 matter:0.016613452884693843 them:0.016605675155216878 thing:0.015975045976187006 was:0.015500883318901107 out:0.015153912405871259 well:0.014743346497571272 work:0.014293531553294029 know:0.012655926666059263 anything:0.012605963303534204 I:0.010899532963720383 down:0.010414301729299455 :0.6040968903355829 +of:0.22913281845105044 to:0.10390299566960362 in:0.09104623983329192 that:0.06786365161504174 and:0.0649508030158946 for:0.04804286737896067 on:0.04687731779935742 by:0.046189378756414864 with:0.03905308836573586 all:0.029497920510665875 from:0.029186410222960216 upon:0.023763582306412335 In:0.02045820953062102 as:0.017093585032768456 is:0.013311351447134872 which:0.01230113755007768 into:0.010241585748101214 at:0.009727356721498959 when:0.009614439666274281 :0.08674526037813395 +sum:0.16148068899547285 rate:0.09216318415318676 one:0.06806807695594161 distance:0.04224070681828524 period:0.04067700104429052 hour:0.03488857007529455 consisting:0.03297088652811202 number:0.028142727649955387 depth:0.022433384642874418 out:0.01931912915293275 term:0.019195895879473207 balance:0.01908244883662498 consisted:0.01618569882996341 composed:0.016149188551889074 years:0.016062644346159873 line:0.01603358029967901 quarter:0.015925435442869396 consist:0.015573022436750973 that:0.015127777550280818 :0.3072799518099632 +the:0.08420913210031296 and:0.07107068750542198 of:0.06822389165938944 to:0.0599489087081745 a:0.05257718780079019 in:0.03141473158662753 at:0.021975814255332612 or:0.017694597911752274 that:0.013162839445448531 .:0.013061368692281139 was:0.012987245792900807 :0.012773694497432157 is:0.012394992910484803 two:0.011275167442196135 for:0.011036798656478955 one:0.010008200950919357 Mr.:0.008795227227627026 I:0.008735566598605277 In:0.008322108371681566 :0.4693318378861428 +made:0.0999812034390529 and:0.06680208263369662 caused:0.02435411478715239 shown:0.02379785223577525 up:0.023253655008919294 ed:0.02312002180398423 out:0.022293807888227747 taken:0.021988971765594088 done:0.02128782706813444 given:0.020283609421760777 paid:0.017098570970207227 owned:0.01708227903067019 that:0.01698438626809451 or:0.016145946252097726 him:0.015808363688274 followed:0.015366441255538056 appointed:0.015126279845513936 held:0.013990473525433292 approved:0.013949758860964168 :0.5102843542509091 +of:0.10564494672543427 the:0.08621831371917084 a:0.08094814376625765 and:0.06589991756074508 in:0.0436328440859359 to:0.03457988733940956 for:0.027491131531918764 that:0.026258018945272722 which:0.02139907076812728 or:0.016878048241261157 his:0.016614046718690066 The:0.01616040086369062 con-:0.014040038351051507 he:0.01352402657029941 as:0.012304472169102762 In:0.011099596240223103 their:0.010445690471067522 be:0.010004580601440589 with:0.009821552500650452 :0.3760352728302508 +the:0.6431068988184552 a:0.06547514519049118 The:0.06413313728446358 his:0.0511550246919524 tho:0.028155254550260914 my:0.024934511516468593 their:0.014775545799870825 of:0.013252334778739666 this:0.011066764247068359 tbe:0.009528099917877057 your:0.009527073274255515 our:0.009072582786110527 its:0.008495939763548097 her:0.005877906698180353 and:0.005023101035127461 whose:0.004791712587575265 His:0.0038820588759674556 that:0.0034758451433475382 no:0.003171768521735526 :0.02009929451850448 +the:0.10337194278359184 and:0.09925396166399876 to:0.08873170217472334 a:0.0665812953069073 of:0.05799464588188209 in:0.024215789329205883 for:0.022242171654739646 that:0.020680872138136693 which:0.019111906291338368 or:0.013502869393486567 with:0.012871617244867373 as:0.012731107045808486 an:0.012596477988972926 all:0.011788129661124079 The:0.009993404221080176 no:0.0089762639831179 will:0.008589681379583148 any:0.008343626757831965 more:0.008129860130489311 :0.3892926749691141 +the:0.15664444074275394 of:0.11549711409145995 and:0.07183510791245683 to:0.06313268485732684 in:0.03389152370501587 for:0.0327324797795572 which:0.024161898673409437 that:0.021087634181258374 Mr.:0.019678211548106717 The:0.019477830881132085 a:0.018621830189798013 or:0.015045079367330768 be-:0.014931835439401402 with:0.014799913209128894 :0.014204567230645195 con-:0.014139857643480816 is:0.013989555298514826 was:0.012283318399208551 Mrs.:0.010931407992187137 :0.3119137088578271 +a:0.09759238797776705 and:0.0948436448541604 have:0.08228999696756883 it:0.0583256638231105 was:0.04954184235155184 is:0.04840582318058257 not:0.04739615685636364 be:0.043797075730811305 re-:0.043752483407871544 had:0.04373994806330128 un-:0.038554322533509815 very:0.0333861032386332 his:0.03314135230156728 the:0.030073307681785705 to:0.02768871536613458 It:0.026910845837781777 or:0.026391764072163065 are:0.0238872436307828 more:0.023540223032690842 :0.12574109909186199 +of:0.09129790931378902 the:0.07369883040827747 and:0.047842263382354346 in:0.04189055351593407 to:0.04045875475680249 a:0.03542341257202578 be:0.02020462051672066 for:0.01979292654746225 was:0.01760256398103379 at:0.017380150555488715 is:0.014984483003968216 with:0.014047653760730413 by:0.01374644383819499 :0.012670486581795598 In:0.01200961464556976 or:0.011563835749786333 from:0.011391516893522809 are:0.011273104484969465 that:0.010755276030689069 :0.4809655994608848 +and:0.15980408824716735 he:0.15861125048798785 I:0.0740057877830978 He:0.04682650772750017 who:0.04668520914737817 we:0.04361819586897082 she:0.042423854827730624 they:0.04044831372761382 be:0.03697682817264654 then:0.029356290752591208 was:0.024129400550368663 which:0.022628371757182995 had:0.017604409732779363 She:0.016749239256293603 that:0.015594531551232499 it:0.015441928554909713 have:0.015360786091169653 as:0.015134237511192463 They:0.012343567375425331 :0.1652572008767614 +he:0.12968124883862905 I:0.10514476878635146 it:0.09586561887458667 It:0.07338620901230732 He:0.05343684330731799 and:0.04684381802413638 which:0.04108171344420951 there:0.037128534591833136 she:0.031204835392913008 that:0.030028969774672145 who:0.022667981208114456 She:0.015615025789310845 There:0.01550420646622871 1:0.013678806685078043 This:0.013493177064743483 man:0.011499453137782003 this:0.009937126269975194 ho:0.008667951971676479 lie:0.008231047603771715 :0.23590266375636237 +and:0.07359963406644195 be:0.052667135004264946 to:0.04483536256874564 of:0.043448293679263235 the:0.03579172892628988 in:0.028005289969665195 was:0.026700397492138477 is:0.024892551934152005 re-:0.024162182625676702 he:0.024086629517294657 are:0.02098604388819216 from:0.020307931541148256 a:0.018606881911690538 or:0.018077853608073062 for:0.017195224169077532 been:0.01615904189338184 I:0.015254891559368164 :0.015184018660626356 which:0.015016145996292442 :0.464022760988217 +the:0.20456259585176584 his:0.20192525613329845 their:0.14509709824506206 her:0.06785016083150527 my:0.05883947182644909 your:0.032514173624946914 of:0.029160913821560337 our:0.027639952832703006 its:0.02414576345202319 and:0.023460147253766724 own:0.014294630563097413 bis:0.012493914103543205 tho:0.011600375603096761 shook:0.010163598919775018 in:0.009626209298345744 His:0.008240543019220201 at:0.007338857670361684 The:0.0057953190296422775 all:0.005125590694579025 :0.09912542722525779 +the:0.30234176605834556 a:0.0923277324924818 his:0.0547370891648296 of:0.045881223582341334 their:0.04433738335441524 The:0.027806827679931857 and:0.026597031297998907 tho:0.02630440616228535 its:0.021245753405758593 to:0.019125052683822003 my:0.015525917157618951 at:0.014717703736474392 these:0.013363043575949666 our:0.01297934813131441 as:0.012958670153985434 her:0.012468900396890152 same:0.012082662267585174 great:0.010790541330000895 good:0.009731136631331043 :0.22367781073663967 +he:0.24370625282293662 who:0.08498545282167981 I:0.07428312243102035 they:0.06909170224868814 and:0.056001126666765266 she:0.054910637314721976 He:0.049064029037563565 which:0.02830236535276666 have:0.02685029645550312 be:0.024624037365239257 we:0.02166964260305 it:0.01897240699692438 has:0.01576595163519278 that:0.015228998008978324 ho:0.014576885311403082 She:0.01372696813680759 They:0.012029173210225128 had:0.011935618357310537 lie:0.011650982291381765 :0.15162435093184165 +a:0.3483635369878001 the:0.10207365843128388 this:0.0820823204377737 large:0.07312523370598818 any:0.03448690656626215 his:0.03017377141718266 great:0.028317965916653656 in:0.027119937490648748 no:0.025423847834754536 their:0.02413122361909337 every:0.023268507491278158 sufficient:0.020807436409499714 small:0.020209005088580905 of:0.018892358550269082 first:0.015823135589983692 considerable:0.013971700499938346 its:0.012347420929833333 and:0.012109344930973086 good:0.01049075687961744 :0.07578193122258524 +the:0.1641320911864556 of:0.10963561514902358 to:0.05993589229439846 and:0.04208926764956589 in:0.019221005540290003 be:0.01918552126025394 for:0.017445399739083878 :0.014664063357480404 a:0.014069170585525209 was:0.013733291802570586 or:0.012468520814202116 his:0.011799879485955518 at:0.010696823819775148 by:0.010119018117454564 that:0.010046356341542622 is:0.009673674731749014 on:0.009564704884264759 their:0.009040151420537667 were:0.008959694247019914 :0.4325198575728511 +the:0.31789837196167625 The:0.14770228376868172 an:0.09283771522856823 this:0.07195070683142946 that:0.05473490501887988 presiding:0.04794314551789604 This:0.041972483159689385 An:0.021025807687188112 tho:0.019010718573023364 of:0.016775156265503917 commanding:0.015734732372414944 whole:0.015262945854771025 general:0.014199663025718616 his:0.011211642177405392 other:0.010441430031049912 and:0.009653512250862896 same:0.008847567670176294 each:0.008674417369008548 Tho:0.00864493914736259 :0.06447785608869341 +and:0.07133190629821139 :0.06325580932952798 as:0.015767378929570783 that:0.014832292319450149 or:0.013286310508577278 it.:0.012283191833133573 was:0.010411238104260595 be:0.009256886890600138 them.:0.008737735101943958 but:0.008186011325034609 men:0.008139847558034347 .:0.008136991989923214 is:0.008135890038321852 made:0.007485924336779702 year.:0.00742757343535508 time.:0.007235613091159082 are:0.0068042371885155125 now:0.0064169918833738935 while:0.006168297917458789 :0.7056998719207681 +a:0.27390791892330113 the:0.20923107441938826 his:0.04967222518029487 every:0.035223934481815704 no:0.03390813220692271 The:0.031506782557002386 this:0.0241849645070005 any:0.01880238308749969 and:0.01876052359112073 her:0.018562222405887282 good:0.016700549055596293 my:0.016614780871379436 their:0.016449170719071225 to:0.015364445299315363 of:0.015179046370392513 No:0.014808341287696265 tho:0.013999827019468723 one:0.012377672249097882 A:0.010457434992624016 :0.15328857077512506 +the:0.0868313281388565 of:0.08519518075057729 to:0.07601155192565 and:0.06632085233493244 was:0.025491183310753247 by:0.025427963374062883 for:0.025267009153265182 :0.021936942746620433 at:0.01998638519877233 .:0.017791471173900515 be:0.01750423134704765 in:0.017244336886991757 a:0.01615769564575195 is:0.01569592904013055 his:0.01352184258755037 on:0.013498212986624103 Mrs.:0.012634998299679217 with:0.011289618861655457 he:0.010903756971903392 :0.42028950926527475 +the:0.16807735899698817 of:0.10541662057906837 and:0.05138367848570702 a:0.04141865232648221 to:0.0385989743764065 in:0.026264864977736738 was:0.019530675665220657 his:0.018900421021236905 be:0.017373825006196972 their:0.015767721170721456 for:0.01557246589796783 with:0.014071419046630446 is:0.012922913111931644 at:0.012690452250034052 are:0.010702713108721902 .:0.010158075558988393 Mr.:0.009672788574483367 tho:0.009612591781990074 were:0.009549306361446321 :0.391314481702041 +and:0.08979460248792114 be:0.044945859364580606 is:0.029326306869459168 or:0.02783707079642633 that:0.027610698451126653 it:0.02012441932054793 are:0.01892902712558591 time:0.018836521588367915 was:0.017878022617448572 to:0.015866078010175443 made:0.01565917497751179 served:0.011236405128049584 them:0.010366059747073598 which:0.010147958376380323 now:0.0101063127574425 one:0.010011435046416033 here:0.009688218723157246 up:0.009562771461550702 not:0.00946673432125195 :0.5916063228295266 +the:0.14645445777774935 his:0.05691136994452577 of:0.056804914417346995 and:0.040622251923151984 this:0.040481637264463396 other:0.04000686195422923 in:0.037137183531964144 their:0.03541973872399997 for:0.028517003515342094 or:0.02822733716898341 our:0.02345711023272636 her:0.0183538274049926 my:0.01715164169675412 own:0.016922083265755408 its:0.01565153071992835 such:0.01542609489978421 agricultural:0.014480927200040112 a:0.014443507344899723 great:0.014398592060114982 :0.33813192895324784 +m:0.2989091234479993 M:0.14749141326401624 Y:0.0687107590874834 D:0.06297935898585141 C:0.04494312830701405 a.m:0.026313850995698447 J:0.017387142897792588 W:0.01571498775838637 P.M:0.015534525112596249 P:0.01520549491093803 .:0.014820509825013406 S:0.014088456218247615 E:0.014073504117908014 p.m:0.013585072245317435 T:0.012352357666358938 the:0.01176133710987753 A:0.010382817702768733 H:0.009368293915291395 No.:0.008851778472777303 :0.17652608795866354 +of:0.24316106312662106 to:0.10396029332554714 in:0.10282104521927797 on:0.07733856410974302 and:0.05647141233111029 by:0.051867452906069846 with:0.04359114028527461 from:0.039699666545941065 for:0.039262892258945165 that:0.03177850769092539 In:0.02135093421830236 at:0.015857755855219105 upon:0.015294295890138353 as:0.012729586989154986 through:0.011867198148256342 all:0.010760020495820892 was:0.010739599198380754 is:0.010664285329963405 into:0.010626734217008873 :0.08915755185829936 +sum:0.03352282876311118 number:0.028116684882597106 line:0.019995206059833036 city:0.01946514558931857 out:0.019275318828420953 day:0.01666865340772654 county:0.014872697538657208 amount:0.013254184849875051 Board:0.01252325449624941 town:0.012449555905674143 side:0.011663975251122375 part:0.011517157473718155 County:0.011460540331966697 state:0.011087331502382173 City:0.010878919191854432 purpose:0.01081028255427907 and:0.010297866493795984 way:0.009848747943663767 name:0.009522170936943183 :0.711769477998811 +and:0.09304636474958337 was:0.08852473776698809 not:0.06247967557458979 is:0.05886901545983386 be:0.046332696547503105 are:0.043388333681392006 been:0.03997082144306642 or:0.03425545952814821 were:0.03087596894523256 of:0.029769416122301797 do:0.027101533082797776 to:0.021570899887288688 in:0.01464085326789559 for:0.013839069876333439 that:0.013662603534609052 with:0.013324686472100443 by:0.01233840899687083 it:0.011804657478689877 being:0.01055476141507447 :0.3326500361697006 +the:0.5428599872906773 and:0.058943667377076334 a:0.04289821116833214 The:0.0358126360859183 tho:0.028118131283184213 their:0.019018233430440207 he:0.017645218278449906 his:0.015809675067776485 of:0.012607941128241477 or:0.011660580999683787 our:0.011058160507260217 tbe:0.009746192972108597 an:0.009467013087197267 who:0.008494261544913737 by:0.007538992694161094 I:0.006094107535665317 her:0.0055948461851515665 as:0.005048503319388166 are:0.004918274469314333 :0.1456653655750595 +and:0.2818562307292314 to:0.1670574990680787 not:0.0369695324342637 that:0.03214204257731694 will:0.0229316681051283 which:0.02278353714713897 but:0.02258052965209558 who:0.01954283582041333 have:0.019531719529378867 or:0.01840041874892623 But:0.017644311083065713 then:0.0171107969283191 I:0.016974778069743943 you:0.01402380522803258 would:0.013699649969804975 it:0.013611698496182096 he:0.00986553518661074 has:0.008965260165648603 Now:0.008730632185343676 :0.23457751887527656 +and:0.16310578145732274 or:0.10690179063274688 not:0.07771206797014929 that:0.03008751951014768 are:0.026829886006563046 but:0.025399661769291194 is:0.025245097611689266 was:0.022357577164145867 do:0.016437755623118663 be:0.015980029048873065 it:0.01580423237196812 them:0.015436637995430345 for:0.014585660232341929 were:0.01300401124630157 to:0.012131069116366784 you:0.011594152295379972 of:0.0112049652232613 so:0.010962633003732944 :0.007943263132679566 :0.37627620858848976 +to:0.2345503673016316 the:0.10473039619355987 of:0.09696209051675535 a:0.07388606472002847 and:0.05307761667027194 in:0.04818320235538023 I:0.04808404693294729 his:0.029374258556711472 1:0.022595090864734286 for:0.019910282773070997 with:0.018529656278598025 at:0.016763313824037812 their:0.014320756902516133 its:0.011878535612000085 that:0.011552489833029424 or:0.01043248840789097 this:0.010341529367980171 you:0.009825396463127762 In:0.009054380664652568 :0.15494803576107555 +the:0.11850321286924172 and:0.09939594286758131 of:0.07991753290740418 an:0.07453614822165877 been:0.0659811684668276 be:0.06083865999940846 not:0.0554638578883607 was:0.04931994463274922 is:0.04714308643811868 have:0.041203841533788574 are:0.03577010793945551 to:0.034742506433469794 or:0.02932130904467 no:0.022684715675963654 has:0.02040582200764461 had:0.020156433706951676 he:0.0189953922058831 now:0.018682814527617622 a:0.01860966779987533 :0.0873278348333295 +and:0.09611402373926158 I:0.09401368012266005 they:0.04839564796543497 he:0.04596034523715576 which:0.037026035919713866 that:0.031807979033612085 we:0.03168059078279783 it:0.027981401364869544 who:0.025194899511687265 It:0.014766221222074969 you:0.014704360678228787 men:0.01358427608440097 but:0.013455187817688487 They:0.01325287708689491 people:0.012932282176561833 would:0.012291714025487578 1:0.012237098436743213 :0.011828184214040425 she:0.008636061121001555 :0.43313713345968435 +a:0.45022848039893976 the:0.25969590368000073 no:0.10747831771668208 The:0.028631103706915177 this:0.025752855583643527 any:0.020471223951381023 every:0.013948760296884674 his:0.01339976970068589 tho:0.009553547041660112 their:0.004935809530939358 one:0.004865020268636591 some:0.0046260643036314195 and:0.004345592547326242 No:0.003973899882356082 This:0.003854237538859658 easy:0.003638654957121295 an:0.003588893834745109 tbe:0.0031572704484493946 of:0.0030719635617815267 :0.029782631049360398 +the:0.2507531689456904 to:0.14875965086755502 at:0.1239720121951051 his:0.05055608037544531 of:0.03617580609886372 their:0.036038376104960676 and:0.02927981886535849 a:0.028136820605374133 this:0.025430402260279646 will:0.022227478080507516 The:0.019077021939599634 tho:0.01533756672753904 no:0.013359059614393364 its:0.011562024264669258 her:0.010500116091468665 hard:0.010134876544240966 for:0.009835473813220438 my:0.008352207841556972 your:0.00831289779783642 :0.14119914096633526 +of:0.275574333881826 to:0.08636224615023709 in:0.06631904249133982 and:0.053992018225395254 for:0.04185726238848965 by:0.040432462728593715 on:0.0386621368609385 that:0.03746813623829841 In:0.02853879791593314 at:0.02784511394431448 from:0.027249043353089128 with:0.02598983508374518 all:0.014273748255081415 as:0.011953034597961125 upon:0.010404474445179767 is:0.009962155410920995 ot:0.008697425934451705 through:0.008441579399216994 which:0.00831499649011874 :0.17666215620486883 +the:0.10586692368455258 and:0.09469548400449646 of:0.07458368700101428 a:0.0338565264669919 I:0.02967524941958581 be:0.026076524607284254 that:0.025634237671028126 was:0.025198393583333308 he:0.02457565779048894 Mr.:0.022203513426684758 The:0.01966753949733357 to:0.016864901489002476 is:0.016748042007857913 or:0.016660437567167178 which:0.01532216954661455 his:0.015022199935272684 in:0.0145536617944351 it:0.01431012568949922 but:0.012502392266738304 :0.3949823325506186 +Mrs.:0.07834170182004245 and:0.07286575811045817 boy.:0.04437607737190181 .:0.043579429229199114 girl.:0.03927072028235727 St.:0.029307090405130385 said:0.028537052273629154 A.:0.027867830841253893 Mr.:0.02757224583234994 of:0.0248997572924643 W.:0.016637134929843166 H.:0.014808605452673332 by:0.013531844472657678 John:0.013531115360082616 W:0.013043827431561872 C.:0.012662160378611804 J.:0.010026733618076066 M.:0.009409583119757996 Messrs.:0.009323931442635639 :0.46940740033531336 +the:0.14097905379068107 of:0.07331087503882922 and:0.07181330996280533 a:0.05976433406615042 to:0.054517608548006975 be:0.027144583808848956 was:0.021670096559335054 or:0.017850176640821478 is:0.015691986615405103 in:0.01537689140487654 are:0.013527554375639277 :0.013345386361944066 at:0.012159230680710242 been:0.012083769908731407 for:0.012017580091645849 his:0.01156881653886233 were:0.010304989923631205 their:0.009881712923853423 tho:0.009488640365474152 :0.3965034023937479 +to:0.30325777699959644 would:0.10009766565156639 not:0.07923383573213229 will:0.0589196234742152 and:0.05025242193280479 the:0.045889990513630616 I:0.04486379810036654 we:0.031419290042035974 they:0.029599206463906243 a:0.028818032021620966 may:0.025158116721980407 could:0.024087396028502978 who:0.022536414708848367 you:0.016750286183593824 We:0.016425626888727216 shall:0.01598242859595813 can:0.015536372459082272 should:0.015265047432968552 might:0.011864537321089937 :0.06304213272737288 +United:0.6693102505267727 the:0.07067523466205333 Southern:0.022369002255923615 of:0.01593365824447053 ted:0.010527900220561557 Uuited:0.009575666246109713 a:0.009397224247790513 Confederate:0.009041084602572262 I'nited:0.0081108168420931 per:0.006369787277943392 other:0.0061308022685943545 nited:0.005408030874066134 said:0.004734465704555721 tho:0.0041930943765845375 this:0.004067719646022387 one:0.003911466102141298 Northern:0.003712290441636247 by:0.0034233534545852814 and:0.003365166248539551 :0.1287429857569838 +and:0.106361956968167 to:0.07875369708753932 the:0.07410809145710481 of:0.05614401462740149 will:0.037617549532409915 a:0.031469964426585666 for:0.030701491506831068 that:0.02399664014437481 would:0.021814813885722345 which:0.01714116740316138 in:0.017108179122685294 I:0.015468643681144761 do:0.01540821078467408 or:0.013056815266022237 they:0.012211168234040249 :0.01219956604112221 what:0.010624029076890472 he:0.01059264900652684 can:0.009854018962741346 :0.4043673327848547 +the:0.5961886616488082 an:0.1147396968384248 and:0.03964888725247947 The:0.03960823427923289 of:0.03729390107095646 tho:0.026707355138292397 in:0.019540640362399574 tbe:0.011666514332733477 this:0.01002259911580038 by:0.008939350652750346 a:0.008197343695163629 An:0.007087822894443833 on:0.006366706000081671 In:0.005997839808911651 said:0.005892683843006729 large:0.004925879089557073 that:0.004625895400010729 general:0.0038762279862051513 high:0.0036310698065907137 :0.04404269078415075 +is:0.1300949053123692 ought:0.06235942008217411 are:0.06072445398663133 seems:0.05697318922100556 was:0.04954471475520722 not:0.048536362204045544 said:0.03881623685409472 seemed:0.03220746110521765 as:0.030923473227594384 it:0.030881869856406088 claimed:0.028226689520969073 have:0.027725540143517465 and:0.027557757709861613 likely:0.02587900806524851 seem:0.02574969309575762 supposed:0.023317446089120043 had:0.02145961764731352 Is:0.017651730366473797 proved:0.01677680343414685 :0.24359362732284573 +of:0.1526194208013368 for:0.09421658728661024 and:0.08940725141270525 to:0.08222368634310918 in:0.061141250519702976 that:0.050439565259345544 from:0.03580453952374126 with:0.03433515834839359 by:0.0316265050616962 at:0.028068145386152862 on:0.026815151496144343 upon:0.018651368217136217 In:0.0167440981576397 as:0.01297699592424925 is:0.010183932489061676 which:0.009198858171691462 before:0.008895123650158614 after:0.008647688996278824 against:0.00835026944384917 :0.2186544035109968 +of:0.2949321458543043 to:0.11430519096462591 and:0.08700903027657572 that:0.07028345550361674 with:0.05992764697947107 by:0.04412231020683837 all:0.04155189553649224 for:0.036899086909657104 in:0.03538810039924531 from:0.02633899029221481 on:0.016588366329457784 is:0.016567052646738717 upon:0.014921606622666344 as:0.014219310390879274 under:0.01294899700927734 at:0.009924833790354042 but:0.009696768894357048 have:0.009618744318993754 when:0.009115844055775913 :0.07464062301845824 +and:0.08226003582691593 to:0.07075984651322158 of:0.045528990574952743 the:0.045448637839572086 be:0.03653126954116812 was:0.036513290115311535 is:0.031139191535835463 they:0.02959967206681041 not:0.02732817747247765 a:0.02611794767880985 he:0.023962699985743054 I:0.02363956031547058 which:0.02335191699324201 it:0.0215368795604227 who:0.02098076256105496 that:0.018639636907311064 are:0.018450882044439426 will:0.017976253016731475 we:0.017282311541065888 :0.38195203790944343 +the:0.16287760685838365 of:0.0883592780729449 to:0.0618987346693935 and:0.05423685233212741 in:0.030811253892523358 for:0.03057359609188714 be:0.025098115820027647 was:0.01826945122296575 is:0.01662970283289366 a:0.016448402520667066 or:0.01633619095301082 his:0.015510346299682681 their:0.015084175217362073 are:0.014656254371894712 been:0.013019491851438341 were:0.01267572744006931 that:0.012270302451397866 on:0.01131798809455223 :0.011150587255169986 :0.37177594175160794 +:0.10523289798289608 it.:0.03940590010119947 in:0.026575201696091635 them.:0.022737283702625517 thereof.:0.018323536740634264 of:0.01723692227016136 and:0.013410382829576416 him.:0.01232892802071859 to:0.011101157200616728 day.:0.010084779688358168 year.:0.009896622939346133 time.:0.009852382603128613 country.:0.009275165437153341 In:0.009141104642978532 for:0.00849684103981927 blood.:0.007713638703293824 thereof;:0.007242703800584713 people.:0.007160682329226469 out.:0.007052698649169537 :0.6467311696224214 +is:0.11026310181549064 in:0.10896405809240482 was:0.09726247775447405 of:0.08524463370494362 with:0.06588218343962726 to:0.06557280927660965 and:0.04272991442661676 be:0.042542651120865645 for:0.03685290005298665 at:0.033189000752212844 have:0.03317781752682651 had:0.03176396219704144 by:0.02902648758029402 In:0.02555789977106739 from:0.01640377099156104 has:0.01567214485219643 make:0.015569212964258233 made:0.015418160758761582 Is:0.014733843727024853 :0.11317296919473657 +the:0.7855508602441817 tho:0.040750628069386945 a:0.027913467704427233 The:0.026771966114969913 tbe:0.019096616031836232 his:0.018704782296290384 and:0.01118037324271501 in:0.007355629019198629 its:0.006324647879804864 their:0.006001039316065545 our:0.005026873242887015 this:0.004935383921918341 her:0.0044821661041221615 of:0.0034215199600970488 great:0.0033335149437712366 or:0.0032587997585103367 your:0.003206328300011617 full:0.0031894340523594346 tlie:0.0031292920969350885 :0.015366677700511224 +the:0.11919516938815296 of:0.07230453158552728 and:0.05781056740443249 a:0.043018564803886335 to:0.031305092790907506 in:0.020848713353460488 at:0.014270110001066288 .:0.012526810245749479 :0.012413283442322082 for:0.011719122709941797 by:0.010808400946589808 or:0.010404172990115616 The:0.01003576004804544 with:0.009811868184449042 tho:0.009295902015355835 was:0.008924239095331684 that:0.008672304223433876 is:0.0085591147338948 be:0.008335143826716943 :0.5187411282106204 +of:0.18312969014136846 by:0.10428007639219647 and:0.09440961438172175 in:0.07532516333073497 to:0.07214835700305634 for:0.0717851323921137 that:0.061400473384658545 with:0.035801174197174504 In:0.023692866206657986 or:0.020417740622827186 at:0.018682442761285483 on:0.018301734045087052 from:0.016686391916225254 upon:0.014235219936613152 was:0.013105626414580665 as:0.010209915042714826 is:0.008909331618219055 have:0.007649361604427306 when:0.007534445310343436 :0.14129524329799387 +the:0.10674415242845445 and:0.07318597408718484 in:0.06879503960628645 of:0.04387482603440603 to:0.028810209756217734 for:0.02678156165483719 that:0.025127524843429422 In:0.020961480910679137 on:0.019106952951445752 :0.014675963311046213 as:0.01365919513876408 a:0.013034108428171353 which:0.011127920436130053 by:0.010436416968866843 from:0.010071778698563157 or:0.008596161195276253 this:0.008460328458305244 in-:0.008269159052239511 con-:0.008111747376902739 :0.4791694986627935 +to:0.12724186474267224 at:0.12458014684598986 in:0.09688957500877597 for:0.0868200065621729 of:0.06022908056811589 as:0.057401230578143864 such:0.05525252831655456 with:0.044954981313922115 is:0.04486757787807786 and:0.04152271782016862 take:0.03130240660614084 from:0.024864892223000177 was:0.024580083781506685 In:0.02307781894533375 made:0.020619410283319366 on:0.020291648239482717 that:0.016888433485255157 make:0.014644490226407755 be:0.014502714758979064 :0.06846839181598058 +they:0.24485062135497063 who:0.06696986334124563 we:0.06623528058330073 and:0.056868675516380765 there:0.05675178836214351 They:0.053159157711247906 which:0.041847497012224726 men:0.03798143201544312 it:0.02433753551698461 that:0.02060397713181279 There:0.02045366521086415 them:0.02035729814481724 you:0.019103328143585827 all:0.013511827815560106 We:0.012777272546646859 I:0.011610842788604421 people:0.010551431622430905 he:0.009428140686152267 persons:0.008426618576975827 :0.203173745918608 +and:0.07126150942340327 to:0.04538776922722058 of:0.03961282288749426 the:0.02236423007786765 City:0.015261547515878625 :0.0138341265319383 .:0.009346725073143223 State:0.00907851741411851 for:0.008617166142839573 county:0.007359252826355906 by:0.0067606917153118316 County:0.006527608254612334 1:0.006438679200322949 or:0.006281279745601747 at:0.006237520714489522 on:0.006011618691641755 said:0.005864100202336929 W:0.00565768229841276 city:0.005135401757867699 :0.7019617502991425 +the:0.11274823966931571 and:0.08329996793360815 to:0.062372082173126384 of:0.05346002906215973 so:0.0299749817344208 is:0.026294180790411077 be:0.020260006954324915 he:0.018124449911071136 was:0.016351044211737983 re-:0.01567649125103956 Mr.:0.014726716630740086 in:0.013675410003338988 for:0.013272602215284653 a:0.012159264338821467 I:0.012040910229586727 or:0.010977326121126826 :0.01035107289213954 are:0.010219913969554774 not:0.009881708091297656 :0.4531336018168938 +the:0.2897590740326696 and:0.09994341054019708 of:0.08613958746870709 a:0.031480152451277804 or:0.027034096825380136 to:0.023605434118649002 in:0.02188643299045041 their:0.018406116394121704 The:0.01699809180528822 other:0.016611197696317078 his:0.016380976491426957 all:0.01625957279074466 tho:0.015952589713995376 such:0.015095642076193426 as:0.011399836914084334 these:0.011030066473387206 this:0.009870347695539981 for:0.009391215741451308 be:0.009159139682848382 :0.2525970180972702 +in:0.13690458464205266 of:0.10581151672113195 to:0.08747603060233254 with:0.07962973125723315 on:0.06524697324703999 and:0.05713355242835646 for:0.054953400281311474 was:0.035446102536497846 as:0.03123682371613899 In:0.02871073445152268 at:0.027656890047176377 by:0.02635899162881206 is:0.02629236263605992 from:0.024682209092792458 be:0.015603522330879598 over:0.015415090658879884 had:0.014906134739453876 have:0.014458905430481327 or:0.014452870466557839 :0.13662357308528894 +time:0.021480616790412032 good:0.01616448790465742 day:0.01588557174154814 in:0.012710705580313307 life:0.01003912378029869 power:0.009964376594555848 title:0.009530875511703984 hundred:0.009516810069436244 land:0.00939131310712736 and:0.009259885822185588 due:0.009087709238228138 money:0.008993380465552552 principal:0.008888947411324628 city:0.008702727702959863 health:0.008316549307548804 States:0.008299636521506863 out:0.008291092933124232 up:0.008228575934894197 public:0.007914053961067147 :0.798333559621555 +more:0.5018027624083675 less:0.255747277010413 rather:0.04008657368086618 greater:0.017248644579328638 better:0.014855507830809725 worse:0.011671364584967378 More:0.0108234897267614 larger:0.008738001245684397 moro:0.008649887662001449 other:0.00788661745431615 higher:0.006785439132527328 it:0.005242958394158951 mora:0.0051184732136529245 and:0.004728753256439742 leas:0.004276216745844305 longer:0.004237212441607461 later:0.00383658046799159 lower:0.0036037811571100194 faster:0.0035245880150161822 :0.08013587099213564 +a:0.33200104362167987 the:0.2870648840156757 to:0.07000250436074697 of:0.05074554988735246 no:0.02715106744789652 The:0.025026903245276153 any:0.02238832324907748 his:0.016507295072092212 for:0.016046116754848367 tho:0.015720082193332065 this:0.013475124020360935 in:0.010424303732315897 their:0.00974634292512485 and:0.00964091474294696 at:0.009139084274326678 by:0.00762576917873188 tbe:0.007520757029298669 every:0.006657444270271748 our:0.006534386867753789 :0.05558210311089081 +of:0.24545596707677744 in:0.11787295018362148 for:0.08000107304130605 that:0.05848585788035395 to:0.05687441790250083 by:0.05203138618138309 and:0.051318366489804625 In:0.05034828028798399 from:0.0328344378698252 with:0.03155697171889321 on:0.02408993239087628 is:0.016548401547796094 all:0.016400061871717872 upon:0.014539123749063914 but:0.012183942132750905 through:0.010611273908111927 into:0.009080301903530286 at:0.008941191993826614 was:0.008441247151040136 :0.1013848147188361 +about:0.16474612403475142 for:0.15678424541236655 and:0.08390352185333919 of:0.06849784453907626 in:0.06734641192495477 nearly:0.05980536874127954 over:0.04236068124358213 during:0.029608320202305905 past:0.02523335840520023 than:0.02507311400338917 About:0.024745746739188574 within:0.021781526248156224 at:0.019886105697236305 just:0.01948535561485598 In:0.018480390051873505 to:0.018307176050986786 or:0.016718891258330208 after:0.01623545507090138 last:0.01576391043275228 :0.10423645247547363 +the:0.1124722222371463 of:0.08489392760047228 and:0.061021405252613035 be:0.05137298186283876 a:0.04696211960941673 was:0.03596666369083132 to:0.027993387282429647 is:0.02045259122415926 been:0.01901681862900894 at:0.014885215602681103 or:0.014707754138857249 were:0.013875451099161747 :0.012761241355440876 for:0.012345815003910765 in:0.012296113845973195 are:0.012237695499779648 that:0.012112614174516537 this:0.012085920046164208 his:0.012020703903319703 :0.4095193579412787 +of:0.28767355066866834 to:0.08775711267569858 in:0.08678131196995101 and:0.05160598694501188 on:0.04646139928102899 by:0.04519522654900943 for:0.044547789071328545 with:0.03396756772609607 that:0.033699232901107726 from:0.03075346596941143 at:0.027039283056790858 In:0.021061449543044047 as:0.017514234937992545 all:0.012543839382496166 upon:0.011844431150487573 is:0.00998972746569266 was:0.008814315973987914 into:0.008557199930727406 through:0.007781895704231326 :0.1254109790972375 +of:0.12955222248214598 to:0.12662373499068905 with:0.06982864594950244 and:0.06942129753384725 for:0.051639850535968736 from:0.042471406570973584 put:0.04080255972170499 left:0.03397055110795618 on:0.031121357029675195 by:0.03004073615494409 at:0.025664973851936036 in:0.023936865667863755 that:0.02307007603324559 as:0.02153376407953383 upon:0.018776367567130657 told:0.0167155211980284 ing:0.014133474485646733 over:0.014066903626247924 struck:0.0131677367233636 :0.202461954689596 +the:0.33952801330869675 of:0.12293678667345236 and:0.08545131028272569 a:0.046844544466312345 to:0.025563523030773437 The:0.024050897490163817 in:0.0228465128629627 tho:0.020609022990645647 his:0.019517713211584478 or:0.019441424563825173 their:0.014810983945943454 that:0.014436037389178053 as:0.012896655753220581 for:0.010580199941448645 tbe:0.009660766268878341 no:0.00947275115765249 by:0.009096920138451944 our:0.008847676145254385 an:0.008786545536886585 :0.1736217148419431 +the:0.1768019524199269 of:0.14258811922060657 young:0.06249357015298963 and:0.038406753317330976 these:0.033513130483828216 two:0.03301681206424576 business:0.03272664212941488 The:0.027029190910486074 a:0.026253875752071523 American:0.026137434816543695 such:0.023815371003948413 our:0.019161138981575836 white:0.018659996433442776 colored:0.018113429935596836 old:0.0179519127453687 or:0.01774765813634475 for:0.016483298203851852 good:0.015450800535175176 other:0.015095344433289583 :0.23755356832396182 +the:0.20610396470196243 a:0.06329407207675186 of:0.06139216634006411 The:0.027050680859185956 and:0.025918265715206924 .:0.01900819274445282 to:0.01601423583204513 :0.014788581124904158 tho:0.014327795836472399 on:0.012556997570757853 A:0.010320203449210374 at:0.01019472777644706 in:0.009257624416552332 with:0.009204764483851777 that:0.008807300654918276 his:0.008736758095841745 by:0.008628955981863614 tbe:0.008481192995253517 Mr.:0.0075567430461494865 :0.45735677629810817 +of:0.11824092912021704 was:0.07470464721454063 is:0.06927533924805396 for:0.06630081142712 as:0.06323423544033151 by:0.05909881221296995 to:0.05839602246851938 and:0.05495316986940745 with:0.048326124394137485 in:0.04521925426089864 at:0.044598152744016226 that:0.04459091372762362 have:0.02414915506462994 had:0.023714125194655208 not:0.023692590833588226 be:0.022869518095150324 has:0.018944033955179122 such:0.014868434423618382 like:0.013579227261331607 :0.11024450304401132 +of:0.3299222380138174 in:0.21038896347424527 to:0.097935523714552 In:0.07169028282463517 by:0.03675999554942311 for:0.036159752810192895 that:0.030984346976316846 and:0.029308072646900465 from:0.022598687582299885 with:0.01568895783265664 iu:0.009549655448865463 ot:0.009170530308487655 at:0.008989451434876755 into:0.008366887428776906 as:0.007636007265956722 on:0.007074852162302337 upon:0.005897616381551936 through:0.005109121217029635 which:0.005033753316228938 :0.05073530361088396 +of:0.21416304001851336 and:0.08774820127368982 in:0.08698482143881138 to:0.08120972968497575 on:0.06420313262700568 that:0.052244852549335606 for:0.05088179712265062 at:0.047283184441352245 from:0.03453026226962564 all:0.027812414436141044 with:0.027078871241258427 In:0.023679380938312483 by:0.02006092403036922 as:0.014624124188017241 is:0.014480880523002754 but:0.011342639839860275 was:0.011031428153302157 when:0.009959945364520498 upon:0.009641036642285647 :0.11003933321697014 +they:0.1421048339765035 who:0.06610185082920693 we:0.04716337687953961 and:0.046272471724197836 which:0.04597071179521133 They:0.04455581375015742 men:0.03182735611077764 it:0.02235838334514086 that:0.021911265011049022 there:0.019190385034086252 We:0.01805569116299527 I:0.01745705917516454 he:0.012803714945736372 you:0.011957084440148326 people:0.010468937491460974 There:0.008167986038856438 but:0.0079651043376679 them:0.0077466611276100035 It:0.007670679310096339 :0.40925063351439345 +of:0.28767355066866834 to:0.08775711267569858 in:0.08678131196995101 and:0.05160598694501188 on:0.04646139928102899 by:0.04519522654900943 for:0.044547789071328545 with:0.03396756772609607 that:0.033699232901107726 from:0.03075346596941143 at:0.027039283056790858 In:0.021061449543044047 as:0.017514234937992545 all:0.012543839382496166 upon:0.011844431150487573 is:0.00998972746569266 was:0.008814315973987914 into:0.008557199930727406 through:0.007781895704231326 :0.1254109790972375 +and:0.07131469376796554 him:0.06047603511101013 was:0.04114126264275024 put:0.027312086617545313 out:0.02674608368474894 down:0.024297762969870237 up:0.02390239069056431 placed:0.023763031962638324 it:0.023372345259535937 man:0.016887465320545116 back:0.016198851650579126 himself:0.015857320059021175 work:0.015440966939421895 them:0.013975555395019735 made:0.013214125129392872 sat:0.013194117313576887 found:0.012813491953855116 is:0.012637112926592092 up-:0.011973387639661923 :0.5344819129657051 +of:0.08050219893206809 the:0.06963741778246466 and:0.0629927653150909 in:0.06267515948229521 a:0.059049882763970434 to:0.04684643323720168 an:0.03018177341375867 for:0.021494399433750956 that:0.018546872546251546 In:0.018268787378137967 is:0.01594644288408573 be:0.015748214073751758 was:0.01573345763679826 by:0.014234959028348712 with:0.013320048564742271 more:0.012345652399301361 on:0.011897624329502901 as:0.010091374150424295 or:0.0092752798800375 :0.4102112567680171 +a:0.2174252512087271 the:0.19575272702260485 of:0.08786931637274563 his:0.07684782945846098 in:0.05311572199450929 this:0.04016040814532167 no:0.02899774542462397 any:0.02400860423130723 my:0.023824658869414934 to:0.021193091319017456 their:0.020602950595218213 its:0.016460212969199608 great:0.014858173251669176 and:0.014644162244280966 that:0.014366806458482692 In:0.013653845058431254 good:0.012714369893119625 The:0.011967980969252218 her:0.011938080202536103 :0.098598064311077 +enter:0.06270755427820027 went:0.05416030459810745 put:0.05272619621307382 it:0.0455846185644705 go:0.04460636620864621 down:0.034777264442219555 came:0.03370286135664425 them:0.033525971399909066 entered:0.033428077424349986 fell:0.030928147452427106 him:0.03084830184513951 brought:0.029199042832362493 up:0.028892586268422994 out:0.02742708846044796 back:0.025796336998986515 thrown:0.02571650239009518 converted:0.025592550464184342 come:0.024341372905034644 divided:0.021681072567567187 :0.333357783329711 +it:0.20193921478579388 It:0.1638720282549578 which:0.06995140491770922 there:0.05880500658827758 he:0.04564771544156709 that:0.043766113078068054 There:0.03854308863449681 who:0.023166360397656745 He:0.02299605212899956 and:0.022453219856418356 This:0.021722739579842307 what:0.013704538031898637 this:0.013069382169898006 she:0.012871828664346571 as:0.007816035662985802 She:0.005944489169188435 man:0.005934070863224058 but:0.005664652825382912 work:0.0048760969388638555 :0.21625596201042432 +they:0.156986436227106 there:0.08243356417205884 who:0.06361703833070162 we:0.05857284936504738 There:0.05681567938857415 They:0.04160173929452399 and:0.03586024116834008 which:0.026822063813806203 that:0.023731643190221304 We:0.023268619351927713 men:0.02160961645376997 it:0.021410947132872157 you:0.01811747638225469 people:0.012487748931912339 I:0.009904148342296522 It:0.007193869046428229 them:0.007141042283249239 but:0.006679488206204905 These:0.005764147321064804 :0.31898164159763986 +of:0.275574333881826 to:0.08636224615023709 in:0.06631904249133982 and:0.053992018225395254 for:0.04185726238848965 by:0.040432462728593715 on:0.0386621368609385 that:0.03746813623829841 In:0.02853879791593314 at:0.02784511394431448 from:0.027249043353089128 with:0.02598983508374518 all:0.014273748255081415 as:0.011953034597961125 upon:0.010404474445179767 is:0.009962155410920995 ot:0.008697425934451705 through:0.008441579399216994 which:0.00831499649011874 :0.17666215620486883 +them:0.017218365899559485 him:0.01644383152070203 men:0.014894879015458478 time:0.014845338985931726 out:0.013392430244879513 up:0.012620016787093999 it:0.011596335054640448 money:0.010301427152770675 in:0.010108472765408653 work:0.00948386745965147 made:0.009080670020151527 home:0.00891109519476554 them,:0.008516892218128309 life:0.008309076737282052 it,:0.008040195755516375 power:0.007457149335209006 man:0.007450954085396791 right:0.006972421382961676 good:0.00652800191556672 :0.7968285784689255 +he:0.12703291627425517 it:0.09131180073632957 they:0.058320870404095726 that:0.05080988761940746 I:0.0487608304371097 and:0.044330322957134856 It:0.04224056400387813 who:0.040875510017513224 which:0.03792669584942611 she:0.03043639745618948 we:0.024505794155842597 He:0.018477133078505383 as:0.01798646680521681 you:0.014301121372935975 one:0.01122829300910504 ho:0.01046425803397653 be:0.010153756075079628 man:0.009280478585831644 1:0.008900147497544983 :0.301656755630622 +went:0.06497679573794887 made:0.05774620104570061 taken:0.05735538638763511 came:0.056344856650764726 it:0.04505332531202812 come:0.04069822942965494 put:0.03596125247119347 brought:0.0330585210733198 and:0.027972859389838487 them:0.027370888436186833 set:0.025848604137249424 given:0.024949489653652502 called:0.024085472591228813 get:0.023855445521074537 him:0.02072571477256628 give:0.02017222231284957 take:0.019964255375992522 got:0.0198039261679289 held:0.01914029588719823 :0.3539162576459883 +:0.05408755002078587 that:0.049531093299571755 and:0.026307747831082865 it.:0.023066050300906284 but:0.01604063510609521 as:0.013691133477483644 them.:0.013231826614228009 country.:0.010841946065548622 of:0.010487154798430135 which:0.009468692177853443 people.:0.008334614695462483 years.:0.008004416265567844 time.:0.007956347283674411 If:0.007858697640010603 him.:0.007413514011734311 year.:0.006977232836926869 for:0.006851092903969388 life.:0.006064905382420001 .:0.005982979647669748 :0.7068023696405785 +a:0.12245511286805558 it:0.0875246185487224 and:0.08738755743028738 the:0.08591604087149043 is:0.07283042616799439 of:0.0714222475186321 was:0.0429655038643184 for:0.040394573611939405 no:0.039524760657026134 to:0.024702118002531335 that:0.02413750475423963 any:0.022667076397064907 with:0.021612502819276243 in:0.01965823485824542 or:0.019068782509261698 are:0.018736446387412318 still:0.017154612980679426 be:0.016823719624644483 It:0.015740578303368166 :0.14827758182481018 +and:0.05877812434596632 of:0.033366417670790426 the:0.0306089881475672 that:0.02763086117384405 it:0.026646416758017256 to:0.022709588949288824 :0.021674069255662887 as:0.016635384918224867 in:0.016544356907569772 or:0.015614904868955313 his:0.013269049015856056 peo-:0.012199953223740784 It:0.011991275216268573 he:0.011505171584884915 -:0.010905661200855336 I:0.010499104948413192 was:0.010447765728722257 not:0.010364818206620587 :0.009765414576158704 :0.6278426733025926 +young:0.15532194197669763 a:0.1391056302285892 the:0.13825045478549294 one:0.046349670067247856 old:0.03755487859683403 every:0.02766329089467673 white:0.026620033144067683 of:0.024710691518587215 colored:0.023055664429690943 The:0.022855649008942058 poor:0.018139988412182145 any:0.015812890306168906 gentle-:0.014663131695312925 A:0.013067992211918105 honest:0.009826830984384324 little:0.009409667108796016 this:0.009407208923475756 in:0.008093330998715693 his:0.008003565602153527 :0.2510874891060663 +was:0.10239965493619096 in:0.10218039813506843 are:0.0922030318723476 is:0.0777619971785988 and:0.06988657515081668 the:0.06675001971686226 of:0.060608424674452266 In:0.05103451046326108 on:0.04648133175478084 were:0.04301412864859523 from:0.03767327247796919 On:0.0296910467843985 not:0.027133807904967812 to:0.026172998452304523 after:0.024147074422285163 by:0.021822406511019243 with:0.019961782407631308 am:0.0175246101264225 Is:0.016066473156095915 :0.06648645522593166 +of:0.2599892101717501 in:0.1409542988534575 to:0.07340730179485822 and:0.06543878771936293 for:0.05197434611276469 that:0.0453493358073635 with:0.04313115858126303 by:0.0397931661280847 on:0.03028609392557066 from:0.02434626850269692 In:0.024036938611459318 upon:0.022372808001723032 all:0.019537728364926815 as:0.012960925224974374 up:0.012427682675585944 at:0.011836634650502149 into:0.011268869869469074 over:0.010062739403144505 or:0.009124721736375338 :0.09070098386466724 +to:0.5989099089278265 could:0.05634602695788106 can:0.04944305670656221 will:0.03929528651053446 not:0.03800069837099128 and:0.03049163721376738 would:0.024097086674077735 I:0.02123847844334441 we:0.01694758711726487 never:0.015375702561699414 you:0.014720486287093463 they:0.014052870783541737 should:0.012330678189675459 cannot:0.011293113149423622 who:0.009689140937646218 must:0.009053391751880104 may:0.00841308000058177 or:0.005858582748123882 might:0.005100270349261366 :0.018342916318823062 +day:0.039754284254798405 hundred:0.03352869546727638 dollars:0.020220776397527705 feet:0.01595703042694657 street:0.015851864295756517 side:0.015375258007260136 one:0.013485046864358924 foreclosure:0.013137691364503396 time:0.012878981973840182 order:0.012157104512740534 up:0.0109478704170629 land:0.010799406025287131 sale:0.010685576816484637 notes:0.010591602920269831 power:0.00983497951851556 county:0.009761848619366463 acres:0.009615800343608611 city:0.009499436268284485 tract:0.009288063797165106 :0.7156286817089466 +of:0.11856305852970306 the:0.06753990173708736 and:0.04746905711924635 to:0.04102661884384482 in:0.035346873559801824 on:0.02915928973057098 a:0.025267586502040328 at:0.021915949943389038 :0.020471900486045604 by:0.01826970227365256 as:0.016750929304085446 from:0.016447267048739476 that:0.014814267341932077 for:0.011951984915449848 or:0.011167355620370084 with:0.008061727178429911 In:0.007562970720746192 was:0.007246779398819573 1:0.006358070785667514 :0.47360870896037793 +of:0.2862552256529381 by:0.10447970570862039 to:0.09452299361266797 and:0.06761695704851543 in:0.05023007017270673 on:0.047478234240127676 from:0.03516408749132356 that:0.031825403849744846 with:0.030427496050709074 for:0.02268849063373532 at:0.01261854235351825 upon:0.011024881799544434 as:0.01091659545121225 when:0.00877222832649605 In:0.008433175504697321 against:0.0075868790436063515 which:0.006654701770779207 under:0.00663538441185349 before:0.006600233626885359 :0.14906871325031817 +of:0.30205507744934784 the:0.11136220021202231 and:0.049646366612449346 by:0.031681090067087254 with:0.021373316118857507 said:0.01750382128112973 on:0.015849679676283045 or:0.01571764104806705 in:0.011359714439415332 all:0.011001322683199902 from:0.010317198712284764 The:0.010235138554819627 an:0.009924427580170371 tho:0.008494230977012133 as:0.00713722792246995 :0.0066793561937469725 that:0.005997951960926251 at:0.005980397233502511 certain:0.005368257972388415 :0.3413155833048197 +as:0.06931392982974462 according:0.052071562389565784 up:0.0511867300210483 and:0.040371568633051955 went:0.03351644485287816 back:0.032358406609281 regard:0.03073407747799069 feet:0.02852138506231652 down:0.026379903432040268 owing:0.02466642634685871 due:0.023695193974505355 go:0.022910973192184297 reference:0.020802802907016128 came:0.019883741951819873 sent:0.019874244915639484 attention:0.019565955494145405 come:0.01885185084678811 given:0.018792390567602263 it:0.017366961307524745 :0.4281354501879983 +the:0.15728672208350583 a:0.11027616622407005 of:0.08399672937586312 to:0.05404248041926861 and:0.05026431447516412 an:0.0348171952632827 in:0.03391229391076488 on:0.017239851603503643 his:0.016203965884083047 The:0.015322833273240275 with:0.013418972985970846 from:0.012697942518448161 that:0.010967563756861403 by:0.010224448862596124 was:0.009964293558354733 for:0.009747995485066361 :0.009437599056502604 their:0.008891170402519681 In:0.008515279848931129 :0.33177218101200273 +the:0.533767990991622 a:0.13338465555285983 of:0.045512570790991115 and:0.030013139866596955 The:0.029519101743342144 this:0.028643826922198707 his:0.02517461742099464 tho:0.024802221499359928 our:0.02117161757445616 most:0.017326850423778215 very:0.014595195748394674 by:0.011160005813318793 their:0.011057165338357964 for:0.009496595221870218 more:0.008865203421459663 with:0.007384746418036927 tbe:0.007346634809943812 other:0.006548215327189699 that:0.00603691613554271 :0.02719272897968591 +purpose:0.15629546290636626 instead:0.04067235169987101 cost:0.03789169719030422 means:0.03715155922526685 number:0.03691513157171963 amount:0.030542455119399896 out:0.026054467034596903 capable:0.022536321166439676 method:0.02200269228385709 tion:0.02156280510439008 one:0.018760960717187716 and:0.018276873885807725 pounds:0.01581141998843525 all:0.015703207080161808 way:0.01531371230900811 is:0.014731609287545522 people:0.014606920828488384 part:0.01414165819828799 value:0.014060614152407475 :0.4259680802504584 +of:0.15756126498601958 to:0.12407443966526657 in:0.11102765254602215 with:0.09968056617545036 and:0.06117179652948143 by:0.03583415351993824 on:0.033181417671602764 that:0.031064512531192762 for:0.022610272805376377 from:0.02181484012325847 In:0.01889792423491009 make:0.01869706472413123 upon:0.0178578026905518 made:0.017113519887276364 at:0.01458586780452743 but:0.012915050460875767 let:0.011489659191907914 all:0.010326613140466522 is:0.009242572340690189 :0.169853008971054 +as:0.17659502123404544 is:0.0995777522373544 was:0.09334184861138578 of:0.0729160565010496 and:0.06784628178669701 be:0.05245473510075144 with:0.035663288033356326 by:0.03403344394155097 in:0.0311892928235959 that:0.027217891373529764 to:0.02580819146424774 made:0.0223436055674175 such:0.0219940890747261 have:0.021869781261202655 been:0.02053650574865565 for:0.019908806173678288 had:0.019289268732881372 not:0.01827263435837645 like:0.013189701720819173 :0.12495180425467843 +a:0.3902262079474757 the:0.23512011223778065 in:0.08240117481616091 of:0.04295019859458997 and:0.03908269427427577 with:0.03597894753430278 In:0.017050931063249022 for:0.015170851294541385 tho:0.01412221021789754 by:0.012425239896061133 is:0.01073774397655915 very:0.010310495118862936 his:0.008266733194603318 The:0.007704665376082906 or:0.007366671083773624 to:0.007183166259044396 at:0.007133033935495044 are:0.005850041952708414 as:0.0057922043441336 :0.044126676882401746 +and:0.09986296065305314 the:0.06863498398116377 was:0.06795894882663764 be:0.05547876033385815 to:0.04995031749747813 is:0.048636307256410216 of:0.039522878666122224 are:0.0274591580948184 been:0.02366115114963061 were:0.022082222386625504 he:0.020514285495954757 a:0.018840629276502457 which:0.01661973738915031 it:0.013907452931009595 on:0.013672447995061064 not:0.01333537359732531 who:0.012760905932288963 an:0.01242141546262681 or:0.0122961931891097 :0.36138386988517324 +the:0.12597798178374625 of:0.10542550313352028 and:0.07571845211254795 to:0.04189623512326386 in:0.0316930494589828 be:0.0297674998183792 for:0.029066694154931003 their:0.02480561768414787 was:0.022672769634947767 his:0.02149338123484108 is:0.016817279162195664 that:0.01605062904376472 or:0.014849135036643157 are:0.014771311322097082 much:0.014352910271084283 been:0.014204774305886849 he:0.01394801101667355 a:0.01368296163945811 at:0.013396277615438297 :0.3584095264474502 +of:0.17683451456532606 in:0.11630855034367865 to:0.10908737035865114 by:0.07314660208021327 and:0.05181544056922399 that:0.04346663266756662 on:0.03298740723620755 In:0.030578086824249392 or:0.02090883503452966 for:0.019524176059650206 with:0.017714292685313077 from:0.011183058479512105 at:0.010886427331251962 upon:0.009748956469266618 have:0.00960647386730134 made:0.0075302438891385 had:0.007000601966789393 not:0.006392308776557922 let:0.00628362000940092 :0.23799640078617162 +the:0.4071374189315913 and:0.06449181461132415 of:0.02892866618288876 in:0.028670005984162618 The:0.02603617389223924 tho:0.024993820467459137 a:0.023579040051412606 to:0.01755553213771617 on:0.014626070241060114 by:0.013447843485786471 or:0.012794166593089693 tbe:0.012024509152999897 :0.010353482361299817 that:0.009291482237329618 In:0.007938246807075932 from:0.007526799010378873 other:0.007469196869028889 all:0.006409533041696086 for:0.00626887758057738 :0.26945732036088327 +the:0.11919516938815296 of:0.07230453158552728 and:0.05781056740443249 a:0.043018564803886335 to:0.031305092790907506 in:0.020848713353460488 at:0.014270110001066288 .:0.012526810245749479 :0.012413283442322082 for:0.011719122709941797 by:0.010808400946589808 or:0.010404172990115616 The:0.01003576004804544 with:0.009811868184449042 tho:0.009295902015355835 was:0.008924239095331684 that:0.008672304223433876 is:0.0085591147338948 be:0.008335143826716943 :0.5187411282106204 +and:0.10747476139341536 was:0.06438867120603924 is:0.06087513389150036 that:0.04543132859952171 be:0.0415061555727838 are:0.04143635157804944 not:0.02367852901371722 or:0.023675947709443253 were:0.02187906152658111 made:0.02154926609578797 been:0.021355108208652624 now:0.01708257188814995 only:0.016600442755416722 out:0.015160054390669237 time:0.014859942489035658 but:0.01441427207418563 it:0.014295410068326523 as:0.014290776656554576 in:0.0137534082003549 :0.4052928066818147 +of:0.2863580311110716 in:0.12023404346678315 that:0.0695037257045001 to:0.06940610112945066 and:0.06210422719807045 with:0.044864242635334464 for:0.02861635048012527 by:0.027359166684227554 In:0.021421941742077694 which:0.020545402405406525 from:0.020309502304683938 nearly:0.018275791176951023 at:0.01795068200752806 on:0.015540860333381657 as:0.014080747944004 but:0.012466435504980156 almost:0.010233232213472346 upon:0.009183970044980418 under:0.007765694240588134 :0.12277985167238274 +as:0.06931392982974462 according:0.052071562389565784 up:0.0511867300210483 and:0.040371568633051955 went:0.03351644485287816 back:0.032358406609281 regard:0.03073407747799069 feet:0.02852138506231652 down:0.026379903432040268 owing:0.02466642634685871 due:0.023695193974505355 go:0.022910973192184297 reference:0.020802802907016128 came:0.019883741951819873 sent:0.019874244915639484 attention:0.019565955494145405 come:0.01885185084678811 given:0.018792390567602263 it:0.017366961307524745 :0.4281354501879983 +it,:0.016238192679209593 them,:0.014323042603798722 him:0.013195979331671891 it:0.012159338818983713 them:0.010207191500553136 him,:0.00988897965440078 man:0.009399405819426151 up:0.00933462395919105 time:0.008813392893111264 in:0.008389571658603516 out:0.008147993733655655 work:0.008065571115371343 time,:0.007779728094302189 country:0.00765735415383354 here:0.007131934418904809 ;:0.007098582625272953 men:0.00685819037674191 country,:0.00667810818702942 years,:0.006595539769582392 :0.8210372786063559 +the:0.17432479195374492 and:0.16112857346294832 of:0.12433005195924159 to:0.1155736174456618 his:0.04765031036393304 by:0.04356630732183165 their:0.024040224600464052 a:0.019842680651534605 her:0.0182129791601985 for:0.01803529659620291 with:0.015367230988649757 The:0.015205562111319678 our:0.014440052674975168 in:0.013932065030797237 my:0.01375664213994397 which:0.013382503490706573 that:0.013285913540701104 will:0.012982390529225292 from:0.01265516565960461 :0.1272876403183152 +it:0.17061008927552007 It:0.15969811194423203 he:0.0691837025488479 and:0.051196512589364376 This:0.04908013540973054 He:0.046977108631781714 that:0.038474723722531586 which:0.036380134745298 who:0.035325136177767294 there:0.02848714247813839 this:0.02809884022538169 There:0.015142447147674315 she:0.012705098363402192 That:0.01085806295306181 one:0.009886228416612202 man:0.009482292886838634 as:0.008437860747021787 She:0.007937665919563018 what:0.007380786080303243 :0.20365791973692923 +the:0.26181049795596373 of:0.1296450470304866 and:0.11507523397029049 or:0.051719336363755294 The:0.04740690517383283 these:0.043595724824056034 by:0.042996780502871326 for:0.030130654192594877 in:0.02996413985392616 that:0.02407395241093962 with:0.02283744466704976 These:0.018811264108750742 tho:0.01756805575397605 to:0.01692692520641599 from:0.015008031824012886 a:0.00951948823456448 are:0.009472465895745321 other:0.009291086804272578 between:0.008427860410156656 :0.09471910481633856 +I:0.19842761251275623 he:0.1539780627443036 they:0.13593516714553272 we:0.060563772922826734 who:0.04369025809234834 it:0.04230821493689906 she:0.04138288930710444 you:0.03402049734938791 and:0.02798814795841527 one:0.026418169946638717 which:0.0250097454486163 that:0.0249235567138379 1:0.01437230962650955 He:0.01291639855568818 nothing:0.012677141657589038 man:0.01228464168878928 ho:0.01170404757301273 It:0.01124382799557802 We:0.00918429515924872 :0.09997124266491732 +and:0.09880259373946806 Mrs.:0.070013110905263 by:0.06340279047478597 of:0.054154896840272866 to:0.041001325807785156 .:0.022812458863464148 Mr.:0.01646147727187875 :0.01526448874489947 said:0.013762568801392216 from:0.012540009865341588 Rev.:0.012311017772630975 girl.:0.012139321022846471 boy.:0.012002236450943553 Miss:0.011129686167421726 that:0.010790811703830162 Mrs:0.009057240889245982 in:0.008813630691118138 the:0.008645789022090572 with:0.006976742381380062 :0.49891780258394114 +No.:0.13834820880156928 lots:0.10532559886719818 at:0.1018820872742428 and:0.05439869675021993 to:0.04408705558038668 of:0.03944348920686704 lot:0.022402302587815077 Lots:0.01859874805028612 a:0.01737123126061342 Sec.:0.01720320277868866 from:0.01690263612399527 Nos.:0.01608914854102071 boy.:0.014315684596638498 range:0.014312625019008197 the:0.01384029765271041 between:0.013817125778804888 @:0.013753391007935876 page:0.013203104258313945 with:0.01302096393207174 :0.3106844019316133 +it:0.24452838346578296 It:0.1489159088481376 which:0.0506292328331078 that:0.0445695500815517 and:0.03526392415054923 he:0.03133120810241381 who:0.01713135112814054 This:0.016928825303406208 what:0.01665681104016589 as:0.014131747755634855 this:0.011635832639516466 there:0.01138034062219565 He:0.010027619685193284 work:0.009615659924178899 she:0.009298180546159173 man:0.007799653245959739 country:0.007034390973001884 action:0.006338462071866565 but:0.00623053238413003 :0.2995523851989077 +that:0.2698565209037141 and:0.10971653040269538 which:0.08354613602089092 as:0.05815861986231293 but:0.05142914147254352 when:0.04283343773258909 if:0.042373073045480714 where:0.029346487821758103 because:0.023582852128964375 what:0.023373180820421963 If:0.021775851189066206 for:0.015400457860580292 whom:0.01445242580583728 while:0.012221830831458053 to:0.011258493508114859 though:0.010942345894863537 until:0.010230633892646512 will:0.009990938764081001 would:0.009584264092839138 :0.14892677794914203 +to:0.43563952079051216 the:0.06210601921276157 and:0.048802339794286845 a:0.03669529123713378 will:0.03655400152779134 of:0.03397330604996997 shall:0.03341390464591802 in:0.023921815242412037 would:0.01768592894556227 To:0.01735672519148379 by:0.017154864625431764 not:0.01672455991939628 should:0.015058148477268083 may:0.012627329017396615 that:0.010026453071244766 this:0.009700085744178572 must:0.009692799842204527 with:0.009684460474926397 or:0.009061111838985964 :0.1431213343511352 +of:0.09171466133490042 by:0.05456303996384491 to:0.05408938978714201 and:0.04891641061743743 at:0.042610594038330965 Mrs.:0.03145956485920157 :0.028512859173090925 the:0.02138900345794137 .:0.016049151432144748 Mr.:0.011691082542158145 from:0.01091210080834901 St.:0.010567103352205454 in:0.009396163304735486 Sir:0.009363874067713118 w:0.00822837934810229 Miss:0.006665445193041881 with:0.006098679831913984 Mrs:0.004889646094858309 for:0.00425313742908186 :0.5276297133638062 +to:0.31019601080253456 will:0.13793678134185958 would:0.07774183426288846 may:0.07078528459128908 should:0.05127128910568003 shall:0.04901700088221223 not:0.04594340671139167 must:0.03257846389794495 can:0.03230794200897745 could:0.02086203652199685 cannot:0.017984019065961077 and:0.017474170306863105 might:0.013535476571922157 it:0.006941357203389574 never:0.005186754057084183 that:0.004968373522249409 also:0.0034185027334872305 only:0.0032209125075107173 soon:0.003102154139878731 :0.09452822976487903 +well:0.07359546102890248 and:0.06646851366361249 soon:0.06317935965269451 far:0.061918346844987725 just:0.043953852940246195 known:0.03492408207325854 but:0.02782746673113507 long:0.027441340004512628 such:0.021632290241262606 Just:0.02136110918931788 it:0.020911559873156918 that:0.020168665542658604 them:0.015907043777576936 much:0.014979832625872084 him:0.01141270757862886 And:0.010347550143300877 inasmuch:0.009683604769546725 not:0.009466382041814483 or:0.009341460552204167 :0.43447937072531023 +of:0.28767355066866834 to:0.08775711267569858 in:0.08678131196995101 and:0.05160598694501188 on:0.04646139928102899 by:0.04519522654900943 for:0.044547789071328545 with:0.03396756772609607 that:0.033699232901107726 from:0.03075346596941143 at:0.027039283056790858 In:0.021061449543044047 as:0.017514234937992545 all:0.012543839382496166 upon:0.011844431150487573 is:0.00998972746569266 was:0.008814315973987914 into:0.008557199930727406 through:0.007781895704231326 :0.1254109790972375 +the:0.16807735899698817 of:0.10541662057906837 and:0.05138367848570702 a:0.04141865232648221 to:0.0385989743764065 in:0.026264864977736738 was:0.019530675665220657 his:0.018900421021236905 be:0.017373825006196972 their:0.015767721170721456 for:0.01557246589796783 with:0.014071419046630446 is:0.012922913111931644 at:0.012690452250034052 are:0.010702713108721902 .:0.010158075558988393 Mr.:0.009672788574483367 tho:0.009612591781990074 were:0.009549306361446321 :0.391314481702041 +the:0.11919516938815296 of:0.07230453158552728 and:0.05781056740443249 a:0.043018564803886335 to:0.031305092790907506 in:0.020848713353460488 at:0.014270110001066288 .:0.012526810245749479 :0.012413283442322082 for:0.011719122709941797 by:0.010808400946589808 or:0.010404172990115616 The:0.01003576004804544 with:0.009811868184449042 tho:0.009295902015355835 was:0.008924239095331684 that:0.008672304223433876 is:0.0085591147338948 be:0.008335143826716943 :0.5187411282106204 +as:0.06337289415049517 up:0.04809314218185479 and:0.041411564292737395 according:0.03738221587639796 back:0.03564998809838123 him:0.035577611022324374 returned:0.035110739114133455 went:0.031172920432325488 came:0.03111997420978254 it:0.024764398107483297 regard:0.022823763012400078 confined:0.01803499028792385 come:0.01739043734809638 return:0.017283054062928106 go:0.01654150200276455 down:0.016309920682264393 owing:0.01563727895997569 is:0.015449497308450856 was:0.015024338606440533 :0.46084977024283985 +the:0.5574440570665045 The:0.06889371601355372 and:0.03849888782249797 of:0.03405619905009836 a:0.03150048668202217 tho:0.027543410189910925 his:0.020595445599478537 many:0.016696510352691995 our:0.015945029583192494 American:0.015382128004136032 two:0.013252934986626684 their:0.011903908058440417 these:0.011655472140068956 tbe:0.011121883529629974 old:0.009442745330964569 few:0.008549777410735255 other:0.008139084067934772 for:0.006799625720493682 her:0.006629263321509161 :0.08494943506950986 +of:0.18697484790849322 to:0.11738842943627091 with:0.07306074243635739 in:0.0634658939092994 for:0.06251488280476565 between:0.04474496989754758 on:0.04159432210648599 and:0.036195945022253026 by:0.03201687837833154 from:0.03161694719306842 upon:0.0314882426866666 at:0.025726086345873467 that:0.016178505688256035 over:0.016011224336179856 all:0.013912883389675921 about:0.012521763126462446 left:0.011977195787173704 see:0.011022272394781853 In:0.010112475399024304 :0.1604754917530327 +the:0.12680632514348592 of:0.12265327204850796 and:0.06850366951744402 in:0.06583447922508966 for:0.06432419642622422 good:0.05489405884096097 a:0.03728825022526999 In:0.02730260081733445 or:0.022009758002135216 public:0.02108718919057979 no:0.02025247697893637 little:0.018695283252013827 to:0.018504492984229723 any:0.0180483233279259 by:0.01774375250420748 his:0.01722061528933934 last:0.0167946104135956 other:0.01579113169412954 said:0.015273638267338525 :0.22997187585125153 +and:0.08938655578847894 it:0.046342019158889775 pain:0.041251903810146234 was:0.02514461561529863 him:0.023897061420385016 not:0.02386175151769552 that:0.02320631134733673 up:0.02134785174529152 is:0.02055119962248676 but:0.020003960395700987 made:0.019592523480922424 them:0.019112205980502915 found:0.017732412514953798 out:0.016087436034656972 me:0.015967133766096424 be:0.015201457325792025 down:0.014552834115865852 as:0.01364093143384261 pains:0.013515160954300196 :0.5186046739713567 +:0.05408755002078587 that:0.049531093299571755 and:0.026307747831082865 it.:0.023066050300906284 but:0.01604063510609521 as:0.013691133477483644 them.:0.013231826614228009 country.:0.010841946065548622 of:0.010487154798430135 which:0.009468692177853443 people.:0.008334614695462483 years.:0.008004416265567844 time.:0.007956347283674411 If:0.007858697640010603 him.:0.007413514011734311 year.:0.006977232836926869 for:0.006851092903969388 life.:0.006064905382420001 .:0.005982979647669748 :0.7068023696405785 +the:0.6099908616845238 The:0.12539053970851238 a:0.10320578155669516 tho:0.02408641733587099 and:0.02011891683930876 this:0.013111992894592741 tbe:0.009173548591901205 to:0.008670494672167834 no:0.006354931328299515 his:0.005659793413634234 Tho:0.00556530393755419 very:0.004782975682042268 good:0.004524957126534815 This:0.004449337802646714 will:0.0041757619384091916 their:0.004095764928517901 that:0.0039021651309084043 its:0.003875740172476969 great:0.0037642891010663893 :0.03410042615433661 +of:0.3180729101390489 to:0.10244815269471648 in:0.07801455164000035 by:0.07289233102122206 on:0.04914315767401043 that:0.044829085394768584 and:0.04200787081310616 with:0.03731578126366227 from:0.03537081812173735 for:0.02661359593798011 as:0.017202329098555375 at:0.01561309058671292 upon:0.013983007113782132 In:0.013905846132264007 all:0.012743608144020894 when:0.01134815153978011 is:0.009717668123084703 which:0.009547932834330903 before:0.009506279536197178 :0.07872383219101908 +the:0.23835716341790553 a:0.16429696061722052 Republican:0.09406597365127041 Democratic:0.07554629745026098 of:0.026748685016126667 The:0.026375908737308506 democratic:0.025785289728874353 republican:0.022680465229631314 tho:0.021603820684181114 his:0.021003162976744757 and:0.01960777197036569 A:0.017872671685878826 our:0.013557079403853029 no:0.011833116448849141 their:0.011757967606886395 bridal:0.01174993368641649 tbe:0.011185895020827112 that:0.011119530040491295 cratic:0.010899974957572053 :0.16295233166933581 +sum:0.03352282876311118 number:0.028116684882597106 line:0.019995206059833036 city:0.01946514558931857 out:0.019275318828420953 day:0.01666865340772654 county:0.014872697538657208 amount:0.013254184849875051 Board:0.01252325449624941 town:0.012449555905674143 side:0.011663975251122375 part:0.011517157473718155 County:0.011460540331966697 state:0.011087331502382173 City:0.010878919191854432 purpose:0.01081028255427907 and:0.010297866493795984 way:0.009848747943663767 name:0.009522170936943183 :0.711769477998811 +of:0.20314307600636022 a:0.18652145932281602 the:0.0975381328803653 and:0.05676856542555589 in:0.04496844354823009 with:0.03101407210835234 their:0.025989615132571243 to:0.025925193002081907 for:0.025838912789156017 some:0.024432828928810955 two:0.018666961479710958 this:0.015352216941871546 its:0.014748885339526382 by:0.014560743216594004 his:0.013907791854957444 give:0.011828838830958449 or:0.011442397638899367 In:0.011041732544338748 our:0.01049793661885581 :0.15481219638998733 +chs.:0.4818357224360654 feet:0.18582689702604405 feot:0.03876516171387059 ft.:0.032051051020508974 went:0.02205987830962327 prior:0.010259191517594673 go:0.010095987681299216 came:0.00998237234911033 and:0.008954188672050032 according:0.00721051683158138 back:0.006604735771706579 up:0.00638132625236271 sent:0.0063105820465466575 belonging:0.005821528504895981 come:0.005488634858226659 return:0.005235341962130336 conveyed:0.0050285889411032444 right:0.004904499696575519 returned:0.0048730670741063235 :0.14131072733459815 +to:0.1296614693795769 and:0.11834060075243594 of:0.04694593778794064 the:0.04531913541320229 he:0.0407186168553034 in:0.037467800909897674 I:0.01641276333331621 was:0.015016064571468833 by:0.014547602223777245 had:0.014510066841285127 a:0.013805460654044914 or:0.013432860718589752 who:0.013290592432039193 will:0.01313012054332892 He:0.012759702770683602 not:0.012527595932333189 In:0.012328690701134546 it:0.010610498256838545 that:0.010606739481398588 :0.40756768044140446 +Mr.:0.20071116988387627 the:0.03650329698999696 and:0.036284230340881976 .:0.02986199576101994 :0.028839529534402584 Mrs.:0.025226269776482145 of:0.01892229379311959 John:0.016458304492306234 Mr:0.015474022328677032 Senator:0.015069710457464223 The:0.014058321293524483 was:0.014001816909018635 he:0.013454202527880404 A:0.010884376228322798 I:0.010702980390905262 when:0.00965428977289335 be:0.009322854085839726 Dr.:0.009072069423479314 Judge:0.008788227711916828 :0.47571003829799224 +the:0.21429022096414602 of:0.1074505641272138 and:0.06899502460504126 a:0.047802749003224364 to:0.036026491518191595 The:0.026198816763828788 or:0.018285723008144374 as:0.016697119147005227 at:0.01612527526736763 that:0.01549627153234301 on:0.015165227474147766 in:0.014814314125600274 tho:0.014021928671537872 his:0.01208910654881775 many:0.011836109633456127 all:0.011580993900249323 some:0.011371385048481397 their:0.011081137407312168 with:0.010151210166636629 :0.3195203310872546 +of:0.10241369177261693 and:0.09218564175059354 the:0.06388177271622025 to:0.05248738701000058 a:0.04158592555246706 by:0.01625523126283451 in:0.014357877894340705 :0.014074331487905965 for:0.01326063758389756 with:0.013176736832096008 that:0.012983210228389028 one:0.012583500213971524 some:0.01097099809598255 was:0.01014021759275754 his:0.009349057966839287 or:0.009187537942884816 as:0.008969216594700695 at:0.008895993726634561 from:0.008787289206537959 :0.4834537445683289 +of:0.20912807604245934 to:0.12173167234532375 in:0.08163019260996811 and:0.07449017975409523 for:0.05805970535494924 on:0.0474634642392741 all:0.047291329074951045 with:0.03867831764776207 that:0.03866504179377119 at:0.035111351106582686 from:0.03313921826612357 by:0.029949774756757464 as:0.021376761175654065 upon:0.019656563680300224 In:0.018075333788158728 over:0.012891648884335872 about:0.009195261687202428 which:0.00863120344658883 through:0.008629483261707115 :0.08520542108403492 +the:0.5105001845828802 The:0.1485343470365431 his:0.04886501092033359 of:0.029689068207248304 and:0.02775849740601621 my:0.025731106343196454 tho:0.020585771328989255 her:0.01922497037364014 a:0.013691704097436006 our:0.011277895829519241 His:0.00927241131394996 their:0.008516555470125139 My:0.007361992528341058 old:0.0068323381861876255 your:0.006752591630242374 that:0.00640354606554164 tbe:0.006287028472341982 A:0.0061748645223252425 Tho:0.005629392546406284 :0.07991072313873623 +:0.05408755002078587 that:0.049531093299571755 and:0.026307747831082865 it.:0.023066050300906284 but:0.01604063510609521 as:0.013691133477483644 them.:0.013231826614228009 country.:0.010841946065548622 of:0.010487154798430135 which:0.009468692177853443 people.:0.008334614695462483 years.:0.008004416265567844 time.:0.007956347283674411 If:0.007858697640010603 him.:0.007413514011734311 year.:0.006977232836926869 for:0.006851092903969388 life.:0.006064905382420001 .:0.005982979647669748 :0.7068023696405785 +I:0.23207704254333605 we:0.10067523489251062 to:0.09277687271704155 not:0.06478107961654903 they:0.06125366726712549 you:0.055945701321074626 and:0.050155520983844265 We:0.04417407046323708 the:0.039148035042325 who:0.03246853271156512 a:0.025417337355903197 may:0.01772783465819371 would:0.01660120163184546 he:0.014588818992367426 1:0.014464196624185605 or:0.012467406869087146 "I:0.010992986878245369 this:0.010828619404667048 that:0.01033986582134733 :0.09211597420554886 +in:0.16744356318945605 of:0.15910843142282885 for:0.09024221456191561 to:0.08926101892693837 that:0.07968205899472174 and:0.05738384377646956 by:0.05005492563046144 In:0.03956737728873083 with:0.03444762299216153 from:0.01929193473061683 or:0.016541592679011324 have:0.013596105020418098 had:0.013472330757912095 was:0.011910737254682583 take:0.011895389646619852 on:0.011288333512714153 at:0.011283012184665086 get:0.008030888374891026 as:0.007415220184272077 :0.1070833988705129 +the:0.1454500361787387 of:0.1080247151493501 to:0.04516715868785427 boy.:0.036249098323069925 and:0.03403580073245388 girl.:0.032660326140049385 a:0.03171979252021135 in:0.02714044436566853 for:0.02365213940166824 be:0.021942286684630472 their:0.021087116084698817 his:0.019774122064073623 was:0.014637031197642503 with:0.014008395154201525 are:0.012730720509515858 is:0.011363112041341867 as:0.011357870543086747 from:0.01063391638067422 were:0.010589399829418696 :0.3667765180116513 +the:0.1576755563646284 of:0.12955154026414298 and:0.05623181870829862 to:0.040341059913629566 a:0.03373290034755182 in:0.026224623515199063 be:0.02479269138655466 his:0.019314851603543546 was:0.018352769641544087 at:0.016697707195602016 is:0.015783076448762947 their:0.012367319664173383 this:0.012168205746000733 for:0.012020364342135194 or:0.010956232256362223 :0.010262988941600252 by:0.010008386031720556 .:0.00843566978631767 are:0.008242278496623274 :0.375839959345609 +as:0.13373843432024177 able:0.058084376412024824 and:0.051615373042860846 enough:0.045273688205716485 time:0.04047833883966158 order:0.0353539847221339 necessary:0.033712919138946564 is:0.03264943821510395 required:0.026397129279345604 him:0.026234766945498037 unable:0.023726186192918358 ready:0.022059550147592043 have:0.019150697799610338 them:0.01908274202586364 was:0.018648505682755657 made:0.018429451126407405 failed:0.018367905623951637 power:0.018262757794508554 willing:0.016561844946250744 :0.3411719095386081 +the:0.3901418647636822 a:0.37847485396949465 The:0.037109851606930054 tho:0.020925172167237237 this:0.019338616487083453 A:0.012081086776200909 and:0.01118261094442294 in:0.009883026951602286 tbe:0.009360714284469223 every:0.008837997927702719 best:0.006810439348269744 no:0.006708931873342403 of:0.005848055227985195 annual:0.005456240115664914 his:0.005148713320529799 any:0.005047516012754517 large:0.005015275633027906 their:0.004799721743076788 other:0.004787104395243437 :0.052042206451279695 +at:0.41771322355614837 of:0.12353606128269619 to:0.08213033829666638 and:0.062023051429286886 after:0.05431142765918429 for:0.04277534014474668 in:0.027640565229721692 with:0.02682177497492187 than:0.020290136494351557 by:0.014228799042592374 from:0.013206049166910613 that:0.011704955686900671 as:0.009789682524460023 it:0.009313760644687067 about:0.008289993668249744 Above:0.008135739472711118 After:0.007251395395734073 is:0.007126860919609406 not:0.005923795040262142 :0.04678704937015886 +the:0.4071374189315913 and:0.06449181461132415 of:0.02892866618288876 in:0.028670005984162618 The:0.02603617389223924 tho:0.024993820467459137 a:0.023579040051412606 to:0.01755553213771617 on:0.014626070241060114 by:0.013447843485786471 or:0.012794166593089693 tbe:0.012024509152999897 :0.010353482361299817 that:0.009291482237329618 In:0.007938246807075932 from:0.007526799010378873 other:0.007469196869028889 all:0.006409533041696086 for:0.00626887758057738 :0.26945732036088327 +the:0.2620719600758229 The:0.10344711360257483 an:0.053477597664544095 per:0.04490008753083359 and:0.041077488713531195 a:0.0391243146554994 is:0.020089193426311477 that:0.019611377002175124 This:0.017420462013737464 this:0.015992705873190446 her:0.015854824414091025 be:0.015578792852549324 tho:0.014896480901813678 his:0.01422707015255521 as:0.013084019066262746 I:0.012902093794477033 very:0.012342075667935016 was:0.012128946681748475 he:0.011197497001849813 :0.25957589890849714 +the:0.31823299654392495 and:0.08617802572204653 a:0.0772556312128212 The:0.041335372960474404 large:0.03712235722249394 great:0.024494045656356246 tho:0.023996524157031716 other:0.023879862921918505 of:0.020472897553457867 this:0.01693059134588957 personal:0.016816159761207126 good:0.01652331514611797 all:0.015728020261149424 re-:0.01474339948969189 on:0.01428279285520991 certain:0.013423179299807818 by:0.01313873753100402 natural:0.011715896555961355 with:0.011296115270499734 :0.20143407853293582 +know:0.09720616319002255 and:0.09497294241849184 to:0.08486915562060439 of:0.08317714811953324 do:0.06586681733384522 just:0.05369221996554799 see:0.039358437146121854 or:0.03412048937275725 for:0.03350482404434374 but:0.0326499892462257 is:0.030239853912497505 in:0.030123184446248716 Just:0.02918917140748296 not:0.02779150942802157 from:0.025677538107039807 matter:0.02477307365498339 with:0.022858687419036315 you:0.0226449673539372 say:0.020431397652252173 :0.1458524301610066 +and:0.1560850319857924 fact:0.06282556919939405 say:0.04106633478243641 know:0.03237732057433927 is:0.024769464928102048 said:0.024551945778497272 believe:0.02433970734738431 show:0.02121076067156275 so:0.020005603613608255 of:0.019802923379741013 see:0.019565432985064267 but:0.018203015678804377 all:0.01775412073556209 found:0.017093616402200064 says:0.01657887054452122 thought:0.01616982131588546 in:0.015308414192693454 to:0.014568079718514738 think:0.014005889653616377 :0.42271807651228016 +of:0.09129790931378902 the:0.07369883040827747 and:0.047842263382354346 in:0.04189055351593407 to:0.04045875475680249 a:0.03542341257202578 be:0.02020462051672066 for:0.01979292654746225 was:0.01760256398103379 at:0.017380150555488715 is:0.014984483003968216 with:0.014047653760730413 by:0.01374644383819499 :0.012670486581795598 In:0.01200961464556976 or:0.011563835749786333 from:0.011391516893522809 are:0.011273104484969465 that:0.010755276030689069 :0.4809655994608848 +who:0.10296015185592636 and:0.1012931319773509 he:0.07797162417578446 they:0.057878437333538514 I:0.05212207485666333 it:0.04639128840025635 which:0.045451926307367066 we:0.04387511554633179 be:0.03549543895614295 as:0.025285420058048128 that:0.021951683382195223 It:0.020585388849674847 you:0.020469120802131625 ever:0.017526066022125638 1:0.016922335148383434 she:0.014698334686284068 was:0.013995680097412857 He:0.013236029049908574 This:0.012214857232518007 :0.2586758952619559 +of:0.6573958578613502 and:0.06994212523375039 in:0.04429091917714205 by:0.023693869609021537 the:0.022646151944379467 to:0.02218607927343982 for:0.02085713244246028 with:0.019500824181588675 from:0.012617672254837543 In:0.007284199846038688 that:0.006605988011170984 ot:0.006084894226994951 ol:0.004491985619175466 as:0.004346299928179627 or:0.0041141563221485985 on:0.0033815093555585596 upon:0.0030984458235648756 but:0.002877314499553426 are:0.002209767926016225 :0.06137480646362863 +and:0.06543264691442106 as:0.043840532357282726 is:0.04018315503668027 right:0.038979136134756724 him:0.03773417518280486 time:0.03517890402224722 able:0.0346982001577474 began:0.028719343992016907 order:0.02777206371881657 was:0.02738483027881352 enough:0.02461035927537631 going:0.02454996882566622 made:0.022142391923377407 way:0.020516806530552604 them:0.018932926555962 go:0.01886045390111741 necessary:0.018015487601063043 went:0.017820005670067914 unable:0.01746495715048617 :0.43616365477074365 +the:0.40811158053273566 The:0.0813731884143306 our:0.058200334995871454 many:0.05362295580521992 American:0.047893095194159435 and:0.03311260201792903 these:0.023087955530687224 Many:0.022519164343747972 Some:0.020595493633345 of:0.02047534583608969 any:0.019088751165483083 some:0.018999640721977594 tho:0.018921697583804103 few:0.018034309379801338 colored:0.016616978252283025 his:0.01643661076102489 These:0.01641259019745868 young:0.015279074583938578 those:0.013699014103528176 :0.07651961694658457 +cut:0.11904876640243735 cutting:0.05332013821024619 pay:0.03833652481713075 them:0.03150774871542227 throw:0.029566190116603563 him:0.027823855233030957 carry:0.02680756530838114 get:0.025898727300714602 went:0.02583984094944145 taken:0.025177208235344056 take:0.02410804086304839 set:0.021996332479225462 and:0.021633109552264083 put:0.02150653373808319 falling:0.021489470079475628 took:0.02030382010282904 it:0.02007005008987913 shut:0.018966910634146524 of:0.018479865408661915 :0.4071193017636343 +the:0.1000870593470783 of:0.0907689976182476 and:0.0761786508338079 a:0.07002603343328014 be:0.028369073520784237 to:0.025900958092655562 in:0.024452648434373347 he:0.022591755376989507 it:0.018934840000394602 his:0.01674081500394627 was:0.016410045336768563 with:0.014505230458809975 so:0.012970505798727263 that:0.012002316434096518 not:0.011939560464404933 more:0.011483461379660552 I:0.010835143887467629 is:0.010008905848655531 are:0.009291779542866918 :0.4155022191869846 +would:0.1696192231684563 not:0.09491896377309593 you:0.09356498365598044 will:0.06563474366144792 they:0.04672468982898591 and:0.04659177845081564 we:0.04589804574427044 may:0.042254632333154435 I:0.04194688047784964 to:0.03402820593149648 could:0.032871211644634565 should:0.02365168408495295 did:0.022908194547916892 They:0.02196546478186776 We:0.018944303177849058 there:0.018020769775784828 does:0.017003525562325428 can:0.01505922818557716 do:0.014283633473441052 :0.1331098377400972 +is:0.16180211606109193 He:0.13299537646339468 he:0.09379365868672228 the:0.05688580902838177 be:0.05673400756627527 and:0.048346931837754584 of:0.04832914176115517 was:0.04674548334557047 Is:0.028056170362910752 are:0.023675731817704892 been:0.01796821408699316 I:0.01775898516690657 she:0.016270959275268355 by:0.015891674362732727 also:0.014676765250904207 have:0.01438308665441518 She:0.013945238619585647 to:0.01353847302783607 who:0.013430501016701377 :0.16377167560769493 +and:0.04075584136350471 that:0.03701207525597475 of:0.035230261086006624 in:0.02140671772196615 for:0.01480640360734368 all:0.013752794612454204 it:0.01362167606402735 to:0.013501700289526603 him:0.011248252113025851 do:0.010921790553418612 public:0.009953968936282817 deed:0.009696289481082856 them:0.009609609108846187 up:0.009179001365620625 men:0.008781213509777216 man:0.008620432380457855 out:0.00859373053494239 :0.008403319586582626 :0.00837515001009302 :0.7055297724190659 +of:0.17485945756608862 the:0.151621498246354 their:0.07653677223743065 his:0.06670694208140389 its:0.055437819243897825 in:0.04051737700743236 and:0.038077661468243956 great:0.0346092541164441 considerable:0.027394872397776063 at:0.02341725856574103 no:0.02286434162573338 any:0.021395173126886744 as:0.01988512148606076 her:0.017785699720477027 our:0.016001826891143562 an:0.013140734369302963 or:0.012675153888263901 a:0.012009198080148959 to:0.011824124897992215 :0.16223971298317802 +of:0.09129790931378902 the:0.07369883040827747 and:0.047842263382354346 in:0.04189055351593407 to:0.04045875475680249 a:0.03542341257202578 be:0.02020462051672066 for:0.01979292654746225 was:0.01760256398103379 at:0.017380150555488715 is:0.014984483003968216 with:0.014047653760730413 by:0.01374644383819499 :0.012670486581795598 In:0.01200961464556976 or:0.011563835749786333 from:0.011391516893522809 are:0.011273104484969465 that:0.010755276030689069 :0.4809655994608848 +the:0.164622510216757 of:0.07124655442027641 The:0.06889686753552093 Mr.:0.06325252336407099 and:0.044366166073833896 that:0.04264168951999022 a:0.026935017441304315 Mrs.:0.021417054292642027 his:0.015373932368963752 in:0.015166387820743404 this:0.013228806556018961 :0.013136427543557318 tho:0.012055764911697249 .:0.010810741278177282 which:0.010410363554372798 Dr.:0.009964965976760979 to:0.00981126413214408 at:0.009089697865957478 when:0.008784665899295399 :0.3677885992279155 +the:0.5821689320248022 a:0.16857138051674952 The:0.035929119553031595 tho:0.02702451812117406 and:0.017931102094593306 great:0.013569931074475825 his:0.009754358152599516 tbe:0.00969128766749625 in:0.007100261351758795 an:0.007036502780432628 first:0.006477050162390346 every:0.0055813854260590365 their:0.005458174220771063 large:0.0054097058707798 this:0.005324004994345483 A:0.005200652553378169 of:0.004874481883357307 little:0.004762132402152845 no:0.00473471517180546 :0.07240030397784682 +the:0.3401220273602384 this:0.1066049623678812 The:0.07841578240047524 of:0.060338652705259045 This:0.040536934374507914 that:0.03812315046685584 at:0.024658371813974723 to:0.024649563178130884 and:0.02263754105933599 tho:0.02106026022520552 his:0.019434872220623362 which:0.014157518228178028 their:0.013147011637173888 a:0.010469198604672544 our:0.009880040216702189 tbe:0.009424342013084895 for:0.009138580269711412 such:0.009117875529769389 all:0.008002344429014924 :0.1390809708992046 +and:0.07558940021936399 recorded:0.030196237618668006 was:0.028917161578042846 made:0.027969746247669736 that:0.027730098932509103 o'clock:0.025060522019555328 up:0.023026552239529506 is:0.020398277211376416 found:0.02003101797656537 placed:0.017482208134164214 out:0.016937164562539058 place:0.016819459500107596 interest:0.016629321966808677 him:0.016002796715253755 situated:0.01573420479581609 it:0.015128305982428461 them:0.014715943643665314 part:0.014646613000297721 interested:0.014450471929902294 :0.5615344957257364 +W:0.07892631551588039 M:0.0649850702455623 J:0.06391667000631429 C:0.05905432254903491 S:0.054856972986157694 E:0.05424348669664422 A:0.0514021035998739 H:0.049828895999379015 B:0.046817024292917286 P:0.04169510535418999 L:0.03908899165768591 F:0.03868396050835962 D:0.03284277583604958 T:0.02839631999315026 R:0.022484651061807727 K:0.02066410658290062 .:0.02003194872932241 G:0.015174321886982735 N:0.014851087760055299 :0.20105586873773182 +for:0.33233929240033905 For:0.1960027208145966 of:0.12170451796336515 by:0.05585318061338375 to:0.04082752876066887 and:0.0339991158576761 the:0.02791814572903875 in:0.027292702921262207 are:0.01512264010560889 no:0.014858626151405416 with:0.014845616340211025 some:0.01104578541362527 at:0.010353255644504258 is:0.009129682959797974 an:0.009025690497052635 In:0.008970538011780153 any:0.008519824954887302 every:0.0076718912414499765 a:0.007335304372991096 :0.046183939246355526 +the:0.09684081064840576 and:0.06551335624548284 of:0.05146145169206151 from:0.049520598669154245 a:0.045427902131977435 to:0.0370403239153822 be:0.035669151526387034 was:0.030489628475080553 is:0.026635804908522978 in:0.023878514238638158 are:0.018513936943033917 not:0.017945708099223703 or:0.017556265685966497 been:0.014265228721347686 at:0.013857211504087178 he:0.013733215789660087 were:0.012396679125422956 I:0.012347944480187516 for:0.012197989992860347 :0.4037082772071174 +his:0.23912394241037796 a:0.22985152581977408 the:0.11426267213944542 her:0.09495432592464735 my:0.05031264868639008 this:0.03257917448245912 and:0.026315386894043283 their:0.026278245848361255 first:0.016703282961906717 its:0.016356462077502725 bis:0.014896517767794713 your:0.013451864672804025 very:0.009946444717992359 other:0.007473159492926807 or:0.0070893154293468295 same:0.006624791742380346 one:0.005818095040231503 of:0.005723708851820028 second:0.005720175475894424 :0.07551825956390096 +the:0.18539778048084926 a:0.0960192536563075 of:0.08578752236994953 in:0.05672924562411616 and:0.04015747770961271 for:0.028583426137904842 to:0.022102841012642146 at:0.017916379069363768 as:0.015736070705304077 on:0.014962159539277856 In:0.01306718337465537 from:0.012809314448584337 an:0.0112715041341387 tho:0.010710378781038405 o'clock:0.010260472051961326 The:0.010003499430927683 most:0.009858656724200828 that:0.009739233677891776 which:0.008670449393498458 :0.3392171516777753 +one:0.1028303141280697 part:0.05963429477052991 out:0.04766456937681193 some:0.031418679026461914 members:0.030764490253327767 side:0.029940657362655835 portion:0.022063658796890564 office:0.020457735219956013 member:0.019726706386316174 end:0.019666887540649894 tion:0.018667441728710307 parts:0.016814747270460957 people:0.014112771422418794 all:0.014072739582212475 any:0.013183573287639892 One:0.013083578354183906 that:0.013024335602903442 account:0.012482348155001894 many:0.012077825070275192 :0.48731264666452345 +the:0.11919516938815296 of:0.07230453158552728 and:0.05781056740443249 a:0.043018564803886335 to:0.031305092790907506 in:0.020848713353460488 at:0.014270110001066288 .:0.012526810245749479 :0.012413283442322082 for:0.011719122709941797 by:0.010808400946589808 or:0.010404172990115616 The:0.01003576004804544 with:0.009811868184449042 tho:0.009295902015355835 was:0.008924239095331684 that:0.008672304223433876 is:0.0085591147338948 be:0.008335143826716943 :0.5187411282106204 +and:0.13101924459568146 was:0.09838552900845862 of:0.09318558952772948 were:0.048012718942405434 are:0.04494878282804946 is:0.04389983340504918 at:0.028322763627485023 for:0.022643542487307742 in:0.022325369967587085 or:0.018321007709032444 to:0.01814510957069943 be:0.017880119069815376 bring:0.015643182450214642 been:0.015328305139815219 brought:0.015225667934298418 by:0.01489143408651819 one:0.0148714802642741 only:0.014493678430051057 from:0.013596530645484139 :0.30786011031004346 +the:0.5768643126377856 an:0.07912773177881603 The:0.07873385465135742 a:0.05137503565092224 tho:0.03286970039835303 no:0.0180547275370497 great:0.016211362386483734 tbe:0.015626613951442058 sole:0.01388282075070178 and:0.011400920468076763 primary:0.009360408228165902 this:0.008750262922562658 to:0.00863974692866468 any:0.007864666253807787 little:0.006040852155075534 or:0.005729586033255065 Tho:0.005051117923016962 first:0.0045852449058155715 general:0.004379286802224656 :0.04445174763642276 +the:0.38183694502605753 a:0.27862853520819614 every:0.041700863980886946 this:0.031895758774882564 any:0.031118497598430436 tho:0.027311357424255944 The:0.02418699169921631 his:0.021835582204551295 and:0.018345728469532835 no:0.016254757181776484 their:0.013848183487408952 our:0.011967169141027117 whole:0.010313167529387707 tbe:0.009449662560463338 same:0.008389131666875592 new:0.008133344037178093 other:0.0069970765375812986 her:0.006926088315040391 One:0.006331244632464176 :0.04352991452478684 +A.:0.3395104003444738 P.:0.1873431623069964 D.:0.07720535872429117 .:0.05045489784267206 Mr.:0.030262772431391687 O'CLOCK:0.01976492876688279 C.:0.018404905382794164 Mrs.:0.014332818325716305 &:0.014293365621260717 S.:0.013787225673512779 H.:0.013650627703418928 N.:0.01334949207838945 J.:0.012686275086959718 W.:0.01119170692239119 M.:0.009300793354344139 B.:0.008834366778860717 at:0.008206222239211837 E.:0.007811636630522679 Dr.:0.006876767610222895 :0.1417322761756866 +the:0.318609617695177 said:0.07006953337661073 any:0.0660566479369172 a:0.06419597876928884 this:0.036893937961341 railroad:0.036345398631175606 such:0.030866268078465344 in:0.025468140049722313 of:0.02136493059762082 or:0.021357344278024017 The:0.020564620689364176 tho:0.018879873430853997 either:0.018874839020040717 his:0.016968648706610426 and:0.01565443021009251 no:0.013661323271630596 one:0.012579061339116572 state:0.011832314075434459 other:0.011763822522359751 :0.16699326936015393 +:0.08044139390531112 it.:0.010627294557747326 for:0.00839099813242971 in:0.007715323688225105 them.:0.007615713857416886 day.:0.005808301652524149 .:0.00557907809464917 of:0.005476767808913013 and:0.00487759042155024 ?:0.004295239807107525 him.:0.004264245782658616 :0.004228664885103164 at:0.003916509595645294 year.:0.0038644004310555693 ::0.0037033709868784788 years.:0.0035018100041941044 time.:0.00347213743788382 country.:0.003409987971831721 one.:0.0031797225395973 :0.8246314484392777 +in:0.22498038063501263 of:0.19207860991195114 for:0.06883513454768062 to:0.0682210485761565 with:0.05013035043415891 In:0.047201679532309825 and:0.045962020830290204 that:0.04304419220589404 by:0.03576316374955726 from:0.0198232967768019 under:0.019592095776617954 is:0.019012714385467366 on:0.01811948548275486 into:0.01759487003273356 as:0.01448509532780635 all:0.0107688964874539 was:0.010205054594870045 upon:0.009650796741983818 at:0.00900934428663158 :0.07452176968386752 +provisions:0.0679938503985306 copy:0.06201617447249093 date:0.05159752313646957 part:0.050661532655167846 one:0.04272232046411394 out:0.039198262926626565 people:0.03688333605300589 publication:0.031622932748407565 members:0.022148687792528047 tion:0.01953442712364951 laws:0.019086435714135187 result:0.017976916451795253 object:0.01720022560087386 portion:0.016216616046388216 that:0.01583665345861985 all:0.015799046403021585 member:0.014650050293503455 passage:0.014513299284273402 purpose:0.01444493434085836 :0.4288967746355404 +the:0.54451274464658 The:0.10990558915908102 his:0.044079901050501046 was:0.04072578558317996 tho:0.024876647381884918 her:0.01750599632823296 and:0.015197914133388911 are:0.012520443551250468 is:0.011870484136419663 their:0.011751557709770195 were:0.011472602341060638 my:0.011226587313576522 be:0.010366690971622423 had:0.00995352429529322 tbe:0.009751683728776696 as:0.008852392798294832 its:0.008579874255646252 a:0.00840166011854781 he:0.008330738890268103 :0.07911718160662433 +of:0.3763349248109625 to:0.08711267700225528 in:0.08159306876155129 by:0.053917275212073366 for:0.04585694769773996 that:0.042177024982195326 and:0.03711934934079061 with:0.03564867180021931 from:0.027044210617844316 as:0.0240991797352499 at:0.021295850113597883 In:0.020106809471180296 on:0.015630981338715867 under:0.013515172617580484 which:0.012645914901143645 is:0.01007311054196868 when:0.009771912391426106 upon:0.009081321193669535 if:0.008327970701261928 :0.06764762676857372 +the:0.585310287041856 of:0.07578193462867928 in:0.03371679686154973 tho:0.028201622312348282 a:0.01675287469396066 our:0.013988454420105685 The:0.013908357789964092 tbe:0.013843779519043264 said:0.013347489231108015 to:0.013157417669007833 his:0.012856552818574693 this:0.011845882696226117 their:0.011582205369450323 and:0.009052456388919397 on:0.007346846189371267 at:0.007141198900162592 for:0.006304953421330566 by:0.006159932930583022 with:0.005705681899894564 :0.11299527521786465 +the:0.11919516938815296 of:0.07230453158552728 and:0.05781056740443249 a:0.043018564803886335 to:0.031305092790907506 in:0.020848713353460488 at:0.014270110001066288 .:0.012526810245749479 :0.012413283442322082 for:0.011719122709941797 by:0.010808400946589808 or:0.010404172990115616 The:0.01003576004804544 with:0.009811868184449042 tho:0.009295902015355835 was:0.008924239095331684 that:0.008672304223433876 is:0.0085591147338948 be:0.008335143826716943 :0.5187411282106204 +the:0.30965237926133704 of:0.1346406806857789 an:0.0692350298095068 in:0.0630247177088573 this:0.06153255980107528 and:0.03570240891116861 great:0.032795244164561844 his:0.02851552390438281 on:0.02845480366092919 our:0.027243822239505895 their:0.025397380580342365 its:0.0204435771596171 tho:0.019188682554842854 for:0.018428836573849635 In:0.015378280492699833 other:0.014560204309454126 good:0.013863896023377396 said:0.010152763890988072 tbe:0.009851736721501424 :0.06093747154622348 +the:0.13423866319753766 of:0.13299550429040644 to:0.04866606583484828 and:0.04333817790174211 in:0.03743279635521594 a:0.035289588590981004 on:0.022804915300683126 his:0.017683914733370526 for:0.016626892482109627 from:0.015775442782233588 :0.015737380035314157 that:0.01447214806909791 with:0.012657393376503295 In:0.010342935744753489 as:0.009982140687453445 their:0.009971370699800372 by:0.009504858347868121 or:0.008222117499232053 The:0.008204020906073665 :0.39505367316477524 +him:0.05279027084426367 and:0.051109036742942475 order:0.043026158254798975 is:0.03986836050658203 able:0.037776026894326506 was:0.03623556503627233 as:0.0361676696837251 willing:0.03601406174716397 had:0.033706751291380586 going:0.031534527399220025 right:0.029655629226275838 time:0.027388316458315996 have:0.026445949213406674 enough:0.02542003610836513 them:0.024942945229410145 ought:0.023225446090703414 want:0.02242733851610104 way:0.021676578324881984 refused:0.02106039323134117 :0.37852893920052294 +in:0.1130906230200865 of:0.09760495674055426 is:0.07368678481923897 as:0.07210746681575463 for:0.06049400815511826 was:0.054131407111877194 to:0.050378719489963315 such:0.046136915611333484 with:0.04075132820247147 make:0.03960892769832789 by:0.033904095259832116 In:0.028157265627609836 made:0.02682885335328162 and:0.026816865380935154 on:0.024239570071109738 be:0.02346148168914435 into:0.019497968154723423 have:0.019221224983638915 at:0.01880487475863122 :0.13007666305636764 +the:0.11919516938815296 of:0.07230453158552728 and:0.05781056740443249 a:0.043018564803886335 to:0.031305092790907506 in:0.020848713353460488 at:0.014270110001066288 .:0.012526810245749479 :0.012413283442322082 for:0.011719122709941797 by:0.010808400946589808 or:0.010404172990115616 The:0.01003576004804544 with:0.009811868184449042 tho:0.009295902015355835 was:0.008924239095331684 that:0.008672304223433876 is:0.0085591147338948 be:0.008335143826716943 :0.5187411282106204 +J.:0.050197121789537044 A.:0.04721933054848474 .:0.046068498322583244 John:0.04553447672095947 and:0.032579766411422975 of:0.029583740028680763 W.:0.029187323828414657 William:0.028264825375446744 C.:0.025247823472371644 James:0.022659602768484357 by:0.020230419129005195 S.:0.01853206770384506 H.:0.018246652689139078 M.:0.01739217057498361 E.:0.01721786946064055 N.:0.017078715991913233 Mary:0.016410868457163066 to:0.015344292307520666 &:0.014220530126562641 :0.4877839042928413 +the:0.1454500361787387 of:0.1080247151493501 to:0.04516715868785427 boy.:0.036249098323069925 and:0.03403580073245388 girl.:0.032660326140049385 a:0.03171979252021135 in:0.02714044436566853 for:0.02365213940166824 be:0.021942286684630472 their:0.021087116084698817 his:0.019774122064073623 was:0.014637031197642503 with:0.014008395154201525 are:0.012730720509515858 is:0.011363112041341867 as:0.011357870543086747 from:0.01063391638067422 were:0.010589399829418696 :0.3667765180116513 +the:0.11919516938815296 of:0.07230453158552728 and:0.05781056740443249 a:0.043018564803886335 to:0.031305092790907506 in:0.020848713353460488 at:0.014270110001066288 .:0.012526810245749479 :0.012413283442322082 for:0.011719122709941797 by:0.010808400946589808 or:0.010404172990115616 The:0.01003576004804544 with:0.009811868184449042 tho:0.009295902015355835 was:0.008924239095331684 that:0.008672304223433876 is:0.0085591147338948 be:0.008335143826716943 :0.5187411282106204 +was:0.1969625068041715 be:0.19497304938941343 been:0.12121926822511137 are:0.10761650964904879 is:0.09449245648498346 were:0.0939794981227816 being:0.024795186363788097 not:0.019667207187850765 and:0.01785933661536672 bo:0.013667660858066323 have:0.011972606528672464 had:0.011885676200397632 am:0.010852970184616582 Is:0.009594453475366107 has:0.008967151047322255 he:0.007830133978025282 hereby:0.007630931896683519 now:0.007332956538821358 so:0.004718425157852335 :0.03298201529166048 +they:0.1964541206746891 who:0.08739300498281817 we:0.05965593924175313 and:0.051063062133808575 which:0.04964211373076166 They:0.04877337996681501 that:0.029693444303366737 men:0.02868062624679933 there:0.025935559082424696 it:0.023141117635697282 I:0.0197011827597762 We:0.018912936841793956 you:0.015372051235394136 There:0.011387817512164023 people:0.010754296249109577 them:0.009107699009731495 he:0.008854287690839648 It:0.00815351502371056 but:0.00707724214188023 :0.2892466035366665 +and:0.15076034913471728 is:0.11794841904631864 be:0.07851231189255597 to:0.06628518063124225 was:0.06427563381026129 the:0.062293914495592406 will:0.04572347350705013 it:0.036909350935732055 almost:0.02861018405973802 with:0.02725738037139325 he:0.02660227099771224 are:0.025964340564485686 would:0.025794839820845513 an:0.024741039658028357 more:0.02165452872236797 Is:0.020029514223115642 not:0.018409195906879967 been:0.017911640560142675 we:0.015357709407137307 :0.12395872225468334 +soon:0.1173428218968453 long:0.06845611071010137 far:0.06586458402210342 and:0.05338713523841674 well:0.04721276689687757 just:0.040410486557357676 much:0.03402299648469389 such:0.02955990020079041 but:0.022434012027975653 it:0.02114675467432816 them:0.01916767502404798 that:0.017600621980380246 so:0.0165266987454093 Just:0.01604564356235017 fast:0.01580589996931478 him:0.014587301480449493 known:0.013331641363771945 inasmuch:0.0130188312087346 same:0.00996051535709948 :0.3631176025989518 +to:0.30603908330860136 we:0.06257221358452547 they:0.06128149159541653 will:0.058154395573216916 would:0.05259068554104463 I:0.049774757535704296 who:0.04968175349325479 not:0.04030496665827003 you:0.03528960644446068 and:0.03524558726504281 We:0.028133935303058334 shall:0.02646507774200648 should:0.024794211673104884 must:0.022453904749856136 may:0.021044685738591046 They:0.020619684983487457 could:0.014304174157926421 might:0.010031179938639685 1:0.008340675332192488 :0.07187792938159951 +of:0.40875336417530117 the:0.09934020905261592 for:0.04071592963319809 in:0.04048527585594757 said:0.03729353600804561 on:0.033170331622707765 and:0.03134181141686315 from:0.019944383130681816 or:0.019620297117295342 other:0.01921624220798403 by:0.018969444965964827 such:0.017692664567340605 any:0.0132806182246643 that:0.011860210745421344 their:0.011269313314936285 all:0.011148822691789058 West:0.010353523952174782 with:0.01026620457423406 ot:0.010108465028072592 :0.1341693517147617 +came:0.11242481945717403 went:0.08778558646529966 go:0.07237356852722296 and:0.05283074139077652 come:0.04896070842527812 going:0.03746555848913072 looked:0.02766432371730015 him:0.025270983532805602 run:0.022916822282039326 was:0.022291023775033163 walked:0.021008306754276437 turned:0.020581173858694624 ran:0.020170273560966706 taken:0.020130340247220865 bridge:0.02000596031597372 them:0.017218369904042054 up:0.015774604956329576 way:0.015345818039835445 carried:0.013529812939276277 :0.32525120336132407 +he:0.18741323442553187 I:0.10536366551351936 they:0.08639008591799724 who:0.0642164033857634 she:0.05304295980657824 it:0.047092394282798 He:0.04485834896158886 and:0.044088520890280355 we:0.04121967310994961 It:0.025689537490757676 that:0.02530135994347373 which:0.022267149272615867 We:0.01846071088954531 They:0.01825727369667175 be:0.01783770739203321 She:0.014210132424649512 ho:0.012526138608809528 have:0.011895028688024735 lie:0.010142991963600648 :0.14872668333581113 +and:0.12958066607112118 was:0.07774989999227822 very:0.07719443093643981 so:0.07388321597403213 are:0.06891932345842386 is:0.0656818450174307 most:0.06214840138538713 be:0.04596379048888807 more:0.044770927627053446 been:0.0368563286816082 were:0.03663423801582753 not:0.025117973763292625 am:0.022867357352448405 an:0.022237665223141828 as:0.021448166398765647 the:0.018748867607543546 of:0.018172466197715908 or:0.016597366273233535 have:0.01649176324622359 :0.11793530628914467 +the:0.09777078585636206 of:0.07081433100622911 to:0.04559270892947347 and:0.04368018182366854 .:0.03913575466544439 Mr.:0.03645808166343487 a:0.03211783440461773 in:0.02565084019744012 at:0.01775941322943709 his:0.0172171789247959 was:0.0163320836097233 Mrs.:0.016213759057880504 be:0.012438624372100597 H.:0.012297386381579827 :0.011348365562069659 A.:0.010859595947677065 by:0.01012885831062819 W.:0.009987266272602649 In:0.009898957211702395 :0.46329799257313253 +the:0.2782472374031439 and:0.05853086307875382 of:0.057808400149107285 a:0.0505051790196421 in:0.047737229779834744 that:0.029028474107152598 tho:0.018710024088825838 no:0.017339306339466322 any:0.01703662573257265 for:0.016715378203915124 or:0.014389838101205619 to:0.01254353636706294 The:0.011965494146430906 such:0.011478107165062217 their:0.010557144796299397 this:0.009886618703130198 by:0.008203119141950934 In:0.008031362143197362 an:0.0075425481936670265 :0.31274351333957906 +Notice:0.3451390459413952 It:0.09087207626199062 notice:0.05033527783668795 that:0.0430446202312698 it:0.03509801297232905 which:0.027626990707590903 he:0.023938155498859377 there:0.019023173574692822 and:0.017336012373559695 reference:0.01618843344783609 He:0.01411070506675562 who:0.013341034919511273 There:0.011967859676835587 That:0.011210918879924384 I:0.010571630970265356 This:0.009097838295054622 she:0.00632524867152137 this:0.005925699786736568 :0.005877298611489386 :0.2419699662756943 +the:0.16093886522446074 of:0.1293203713725538 his:0.12462377166108465 their:0.1047187878832134 her:0.06398859002833981 and:0.05734123772700196 to:0.038492852010855255 my:0.03420561536720964 its:0.026320673734160475 your:0.020633034108495135 for:0.01905607567055692 our:0.013483479497285395 in:0.012595056890090932 at:0.012390922849603199 with:0.011812901080502824 tho:0.011162457942736964 on:0.009444797884820543 The:0.009025443760341666 bis:0.008914711120328739 :0.13053035418635792 +and:0.15146516242921018 which:0.11725311965657038 it:0.07366515708241675 that:0.06050906896384191 It:0.0507116124567422 he:0.04399443920665505 who:0.04271574487632815 This:0.026794695511193883 He:0.018487283050329394 what:0.014502371101808213 time:0.010914073375795169 now:0.00952043179187307 then:0.009513676041027685 this:0.009458733766128357 she:0.00922571010657431 or:0.008194703282238815 I:0.007248425373791518 to:0.006699635030210972 soon:0.006012282584405301 :0.3221136743128587 +and:0.05877812434596632 of:0.033366417670790426 the:0.0306089881475672 that:0.02763086117384405 it:0.026646416758017256 to:0.022709588949288824 :0.021674069255662887 as:0.016635384918224867 in:0.016544356907569772 or:0.015614904868955313 his:0.013269049015856056 peo-:0.012199953223740784 It:0.011991275216268573 he:0.011505171584884915 -:0.010905661200855336 I:0.010499104948413192 was:0.010447765728722257 not:0.010364818206620587 :0.009765414576158704 :0.6278426733025926 +that:0.19963727114230648 and:0.0789950972910319 as:0.06686162863307023 if:0.0556712591100137 but:0.04984586181609447 which:0.04961251513589228 what:0.03473490681588116 when:0.03324789718438718 where:0.024030653568022562 If:0.023386637854591146 than:0.01603390125854835 time:0.015712325830041028 But:0.015168907077034282 because:0.013507740811410525 whom:0.011423936244161223 think:0.011205253855061164 until:0.010911051514824606 thought:0.010105205284601603 before:0.009851546915699684 :0.26905640265732644 +one:0.07798655968170567 all:0.0701564311548887 copy:0.04690695820056385 some:0.027625227152969747 out:0.025477954525797434 those:0.02459154416493174 means:0.02404073766879842 purpose:0.02296024622361466 part:0.022077875043067605 any:0.020254061199805943 way:0.01695718583420243 many:0.01538878129643016 end:0.014892268115746548 and:0.01387430440588936 manner:0.011913042152360553 time:0.011678765868898126 most:0.011599288876158725 each:0.01152901784856222 that:0.011431730212607183 :0.5176580203730009 +to:0.47538213844042737 will:0.13250474662678538 would:0.08539002413594131 and:0.07706278432377804 not:0.045093964413675865 can:0.022868097481010874 should:0.01821741210056841 shall:0.014362483306139446 could:0.013551246066646882 must:0.013488029593898538 I:0.00924195458090247 may:0.009214181155042713 cannot:0.008860922619393342 you:0.008153650611529915 they:0.008137147230566102 might:0.008084826674858638 we:0.007559553393299319 or:0.006870060252881781 who:0.00604034599664236 :0.02891643099601129 +the:0.5549021487708852 and:0.06616650174869718 a:0.059253320175483994 The:0.032749374760881626 of:0.03205315633784551 tho:0.02381386980427666 his:0.01934007900138953 or:0.010870329523077127 this:0.010753858527636101 any:0.010733314704412243 our:0.00998335372013718 that:0.008898273083592425 tbe:0.008421586109462907 their:0.00801890843418568 its:0.007491496722531714 in:0.007343922532666217 your:0.006217970429993057 her:0.005820706632743451 land:0.005809133288837702 :0.11035869569126457 +a:0.564505308696068 for:0.09532037795025175 the:0.055722378764167954 at:0.045453224131522224 of:0.04268030653903651 in:0.03981521503006882 A:0.02136142657274692 very:0.020308406975078526 and:0.013940518370616816 some:0.012811539400271084 In:0.011773634809840151 any:0.010815558579419671 with:0.008172974503792688 For:0.007131063344705392 no:0.00672989737247222 his:0.006675751045137824 to:0.006244789525766306 make:0.005714351696601974 as:0.004910249576243804 :0.01891302711619139 +and:0.07170468143723896 the:0.049426306817537166 I:0.0431098289761275 that:0.029384055824667677 to:0.02008261528110876 let:0.017989930500720213 he:0.01732549519288733 1:0.015512172359008416 one:0.014507920968697791 will:0.01425409820265662 of:0.014193695342461173 men:0.01185197823509237 which:0.010509552868923492 as:0.010397866544700476 from:0.010268224726785655 left:0.010178143449373633 t:0.009342474621578575 :0.008949811804954239 last:0.008847664697287767 :0.6111634821481922 +in:0.33834382386893597 the:0.16490382704983514 In:0.09093890531843439 a:0.08178672799412436 take:0.06936656631649106 took:0.0324747092735516 and:0.020045011247075386 or:0.018952522672898802 have:0.018016440692057687 to:0.017420924832934687 dis-:0.01658138185751117 had:0.01604608440874804 of:0.012666960029417761 The:0.00985101039259922 tho:0.00908813259306232 his:0.009023428106177444 first:0.008425508196999536 no:0.007696541706309593 iu:0.007125252885787858 :0.05024624055704794 +feet:0.023715607513845282 hundred:0.02058318974100764 up:0.016532961046752052 men:0.014840104782678436 one:0.014692125424597982 time:0.014156665871123743 in:0.012913612758265094 house:0.011840893804404475 down:0.01163667970771666 due:0.011224672208965092 executed:0.011112754352547228 street:0.010772268397894693 him:0.010545659856084189 ;:0.010115895151516606 dollars:0.010032430507454313 wife:0.009927107181384147 land:0.009221337255434945 man:0.008551879722332123 long:0.008470965333350186 :0.7581131893826452 +the:0.5515396377954593 The:0.0679601999397596 and:0.060249909142146146 tho:0.04829320162489204 a:0.0459923031653747 tbe:0.021071972724488488 or:0.020322213007322884 of:0.018063602809775467 in:0.015262605791371158 as:0.012954643688034461 other:0.009396438415099176 all:0.007927285225667874 great:0.006361990954012625 by:0.005889507901873837 two:0.00553440366389016 these:0.005416898165695795 Tho:0.00532766257396831 first:0.00497537120579892 said:0.0049586711024967416 :0.08150148110287227 +of:0.1094825991314368 the:0.08663873506992827 a:0.07636221313955993 and:0.072225976099452 to:0.04965704858673222 in:0.03607824212956689 for:0.033779133841743976 be:0.025791634300748895 or:0.024687813402620155 which:0.016488754577219423 The:0.015622501974123428 are:0.015415873433322354 was:0.014918623510905971 with:0.014228940949756422 that:0.0140251049420886 no:0.013897641878956288 is:0.013732859730822894 as:0.0132142869583466 con-:0.012807938717182476 :0.33994407762548645 +and:0.07848052408394628 well:0.07557138849680191 regarded:0.0468433405576797 known:0.035118925800488955 such:0.034667301162641884 soon:0.031276319226963015 much:0.026145275409263303 just:0.02497722517381286 him:0.023372894411738048 far:0.02120239926781419 it:0.021117059351601263 is:0.01971055020297239 so:0.019447107522348107 but:0.01930706513557766 used:0.017731147161047164 long:0.015551075831887636 that:0.014699217427979375 them:0.014458686187059797 act:0.013370160338594655 :0.4459523372497818 +during:0.23069778003978314 for:0.1617094907909941 of:0.13501019589740695 in:0.11878484998196619 to:0.0397722709603864 During:0.03904015446238959 within:0.036519905924163494 In:0.03342208444187037 at:0.03075213789929544 and:0.017157853539181617 on:0.016768848969668935 with:0.015290523926641158 all:0.013947273755051401 from:0.013930032953450425 by:0.013923737880490566 For:0.010894259598382968 Within:0.01020569336035788 after:0.008940762520443825 that:0.008523921620665047 :0.04370822147741053 +the:0.21351995842712312 very:0.10884245646226852 was:0.09060161677054732 a:0.08948779883591552 be:0.08645657160303398 is:0.05671402642591709 too:0.04060897459636476 and:0.04016243952994426 were:0.039592988513195856 are:0.035741157242422106 been:0.029567025518799268 so:0.029451214520736846 or:0.012370485407353148 tho:0.011287235611694913 being:0.01114163724623028 of:0.009470362216406686 their:0.007900063524789983 more:0.007858964289157852 The:0.007367475143202144 :0.07085754811489632 +and:0.09506122603605144 of:0.07433777106448734 the:0.06522980926971873 at:0.05913770874733186 a:0.03770931942564761 No.:0.033018330632265926 about:0.03241648054470752 from:0.02934515539732884 or:0.028600209356058497 to:0.0244782824514863 for:0.01817134264506763 in:0.017390356182593453 that:0.012482042622141943 block:0.011533440136206113 .:0.011485584040471309 by:0.010866184241498633 No:0.01078029108375786 with:0.01024022588562376 feet:0.009877614087728399 :0.4068386261498268 +to:0.14153424607838577 and:0.1364868716761481 I:0.12917818431467748 be:0.04430758609216073 he:0.04204938320971181 was:0.04022145028270068 they:0.04013026172435742 not:0.02851454007412585 1:0.02577780915381533 will:0.02532083370590322 had:0.02464006764944499 we:0.023186058320118465 you:0.02153780930092135 have:0.01760415720048272 has:0.016563573595379848 who:0.015556415531864768 then:0.015011399656725613 were:0.014320822501535964 that:0.014127992551698181 :0.18293053737984172 +conveyed:0.10376583296956954 due:0.09721270962882905 pursuant:0.08039059633066177 belonging:0.07485494070760354 prior:0.05609679915264856 thence:0.03603946149450234 title:0.035109297155389185 and:0.030223206451248895 assigned:0.025803407872968864 angles:0.024093872146577267 line:0.019615971122996297 directed:0.019480685491455325 as:0.01930287222739874 attached:0.018657521294228107 feet:0.014286561509994964 granted:0.012705364597055957 it:0.011743411294406416 answer:0.011621672019494598 parallel:0.011106585276491034 :0.2968892312564795 +the:0.10899100364981441 of:0.09529866720349875 and:0.06071336595751628 to:0.03203317262002218 in:0.02530482785223186 on:0.02330980028798576 by:0.023022946351621058 was:0.018483382967062208 for:0.015176638818285819 :0.015147891823947194 be:0.01313344850281051 a:0.013024223767178154 were:0.011504300270080292 as:0.011424270114412698 with:0.011063934846090695 is:0.010908299633884042 or:0.01010982418041992 are:0.009605113131602425 be-:0.009253164902700122 :0.48149172311883565 +of:0.1182399636586444 the:0.06769157262383942 and:0.0632760463168293 to:0.04489736839753898 in:0.04368201726246114 a:0.030500594295576677 for:0.02731740306077158 by:0.022047286587720868 be:0.019354012101836373 was:0.015715016752944077 with:0.013206032265324887 from:0.012172159056452872 :0.012138968781254974 In:0.011551011952053054 or:0.011134464363916042 that:0.010742240465509418 is:0.010634259832761879 at:0.009488822188698533 been:0.008633419211568748 :0.44657734082429673 +of:0.07337170321282895 and:0.058513380832265746 the:0.047270907376771545 to:0.031054552131149982 .:0.023988614800794335 Miss:0.020379200248573214 at:0.01956022277583091 :0.013850979365894758 a:0.013777765129183533 on:0.01192055903222121 was:0.011270112950805572 1:0.009805869542032863 in:0.009758641782560333 said:0.009678035455655378 Mrs.:0.009610958048538946 John:0.009459906290194489 No.:0.00926608475549224 with:0.00913761322402048 by:0.009101950392238883 :0.5982229426529466 +the:0.44264498817746284 and:0.05149131925875075 to:0.043117490181622455 his:0.037492531730066 of:0.032945033713666756 tho:0.030799521941573746 our:0.028686281484239705 their:0.02863579057745861 a:0.027913908048687836 her:0.01959157271275802 its:0.01922317813528428 other:0.01831032531517211 The:0.017342337243635743 in:0.01633785322384283 for:0.014806686760501049 this:0.01278658605479294 any:0.012108036981669948 tbe:0.011865766463490206 by:0.011335174169802906 :0.12156561782552128 +good:0.014538941215515288 him:0.013376481444236553 due:0.013125346874251834 it:0.012776928337972428 time:0.012516132673601505 up:0.012259121571795255 it,:0.011527631768081725 more:0.010516291418407682 in:0.01028257619041174 them:0.009854559280459113 men:0.008771602793341923 costs:0.008604283288598157 work:0.00842526513254301 out:0.008179184041828767 and:0.007997336444526217 ;:0.007874566376002305 life:0.007396495931929024 them,:0.007384282212429404 made:0.007038629724389618 :0.8065543432796785 +the:0.11132406874492337 of:0.07973150004751273 and:0.05003193808735521 in:0.03995909971732399 to:0.029966672392113574 be:0.027002105853679334 a:0.023907187580720198 for:0.01948052255316016 that:0.01928137934196295 was:0.01845982123979732 is:0.014474817746393531 on:0.013451563679930282 his:0.013399985323871811 or:0.013135416799543609 been:0.012407373784401928 as:0.011828830185564297 are:0.011722966172363175 were:0.011353955747421386 their:0.0110466791078929 :0.46703411589406824 +is:0.0511790514279873 him:0.047792297124905854 order:0.04479911021407454 and:0.04074331869861665 able:0.03929840410950586 proceed:0.03717296694651289 enough:0.035058047218376624 was:0.034498020991357174 had:0.032377546205930814 not:0.03120095070347758 have:0.03116786584837985 as:0.030435930938719345 willing:0.028611315558700005 refused:0.026733039868329766 necessary:0.02498776115721528 them:0.023799599632702232 ready:0.022355144458051673 made:0.02218098429385744 time:0.0221184583365183 :0.3724901862667808 +the:0.39749834532651884 a:0.07520030034269234 and:0.05540858759821703 The:0.03273515726769502 tho:0.030061875542463562 of:0.020144331424922633 tbe:0.014929647509541684 in:0.014268129706664795 or:0.013333166761078447 .:0.013287381914101323 an:0.009000188755386574 to:0.00880680429595084 :0.007943763822197133 Mr.:0.00773879605474787 by:0.007328417831573476 as:0.005922572098978465 for:0.0047526933692942485 that:0.004736121968310169 on:0.004594595720579333 :0.2713091226890862 +to:0.14197802230338075 you:0.14154007451261122 I:0.0893075676319134 we:0.08676317284404851 they:0.07668039838904164 and:0.07392911594709922 the:0.04524286758333514 not:0.04336138574309029 who:0.027545529263708686 We:0.024358400853374495 of:0.022630641848049658 his:0.019366171560132827 in:0.0172910627651952 or:0.015508212524411594 don't:0.014241861491273012 he:0.014107656014223653 their:0.013329087926098725 They:0.01290488892118777 for:0.012056719701900453 :0.10685716217592377 +of:0.2148594310303266 for:0.10723796343862864 in:0.061554613257071907 to:0.05485784182747119 and:0.053226247106297996 was:0.035511696093638655 by:0.030637824122670358 is:0.02968543741259635 have:0.028954774497111826 not:0.028749744087532853 as:0.02843345535822642 with:0.02634018125287258 half:0.02536156156108162 over:0.023588353108854127 than:0.021916430588184408 about:0.019360604241917347 had:0.01744731865017519 be:0.017108641145678196 at:0.015979968289299845 :0.15818791293036388 +the:0.1777592880023942 of:0.12066932573614002 and:0.058140188657070914 a:0.03160211335845437 in:0.022629356824802802 to:0.01870411003935477 The:0.017326135039300642 said:0.015620243512591987 an:0.013733092066487027 as:0.012750058831467981 that:0.012312151004764864 Mr.:0.01191243822834648 .:0.011871899266592682 or:0.010770441888027409 tho:0.010623471013309651 for:0.009641835806327529 by:0.009578843667011061 this:0.009114229268354155 :0.008698842402391252 :0.41554193538681017 +of:0.28767355066866834 to:0.08775711267569858 in:0.08678131196995101 and:0.05160598694501188 on:0.04646139928102899 by:0.04519522654900943 for:0.044547789071328545 with:0.03396756772609607 that:0.033699232901107726 from:0.03075346596941143 at:0.027039283056790858 In:0.021061449543044047 as:0.017514234937992545 all:0.012543839382496166 upon:0.011844431150487573 is:0.00998972746569266 was:0.008814315973987914 into:0.008557199930727406 through:0.007781895704231326 :0.1254109790972375 +and:0.3452522603189844 was:0.08679523319271237 were:0.03305958236841124 is:0.02943279540778483 He:0.025121331993380847 will:0.02174834628266136 are:0.019981296892722825 I:0.01606591412502686 to:0.013301859780437493 he:0.013149074017451755 the:0.012480047644806303 or:0.011036640181189678 of:0.010844302504252145 not:0.010222377483971628 would:0.010045149845318282 be:0.009995094140902895 it:0.00966398262352056 that:0.009477920261647468 ;:0.009156961378091516 :0.3021698295567255 +real:0.8008995726887265 the:0.06058807717772278 said:0.03613896919699027 and:0.025356945209569805 personal:0.008752434778311377 an:0.00821945854870808 of:0.006702112529786948 or:0.004702140611102853 their:0.0034373308559426663 The:0.0024048559415233506 Real:0.002391058057232898 our:0.0022672628777082498 tho:0.0022368420040203463 a:0.0020151670820264212 was:0.0017055770224660347 for:0.001503159645726447 his:0.0013852661964990026 any:0.001163074192571036 be:0.0011628357288682482 :0.025967859654496724 +the:0.19379594192248137 a:0.1586032120205081 at:0.09936221106222416 and:0.04746515123521478 for:0.04403564836532673 of:0.03690678602369703 an:0.028975324883085275 to:0.02598654871092296 in:0.019136644603326175 any:0.019104256234298476 which:0.014284429894487801 that:0.013787919950912133 be-:0.012766191135000403 con-:0.010177439919331491 his:0.010159969504382447 time:0.009891615243818444 from:0.009845403726232485 :0.009677990534648425 tho:0.009592946041824542 :0.22544436898827677 +the:0.25627364343040915 a:0.25414249749532003 this:0.09177902401773222 any:0.0471759561124275 his:0.039488305180732944 every:0.029119277409757914 The:0.02200176823342711 some:0.017567737276657985 no:0.01487634495006838 one:0.012728636019845176 their:0.012459298193489258 tho:0.012118450255759498 and:0.01174063237749204 that:0.011190751703347511 other:0.01107648934556193 good:0.009671946734169289 This:0.009573714616234965 of:0.009257207276751448 my:0.009032836960355397 :0.11772548241046028 +the:0.15393633917446584 of:0.10486940716654677 and:0.09565636082297743 to:0.04190723147526656 a:0.03697103936268668 be:0.019161765801310137 was:0.01802998154322188 in:0.017412066551738655 .:0.01502259860026643 his:0.01449927319072632 for:0.013485792381465364 Mr.:0.012940805116210577 as:0.012820571650780254 is:0.012177499711387135 by:0.011965324050375165 at:0.01165506684329067 :0.011439053045533299 that:0.010780305325691832 with:0.01037343050733257 :0.3738960876787264 +and:0.11717132479065025 of:0.05975776404107632 the:0.036894797744751906 be:0.030476697286946262 a:0.029689055699173163 in:0.026487129630288927 is:0.026201236531637237 was:0.025891673231283507 he:0.024166191619701714 I:0.02129953996234262 to:0.020689032195699227 they:0.017691857447921393 that:0.017526962289634983 it:0.017418942196368217 which:0.01639384581937364 as:0.015422020984154518 are:0.015414815296460722 or:0.015342212184098876 for:0.014934605060334663 :0.4501302959881019 +the:0.11919516938815296 of:0.07230453158552728 and:0.05781056740443249 a:0.043018564803886335 to:0.031305092790907506 in:0.020848713353460488 at:0.014270110001066288 .:0.012526810245749479 :0.012413283442322082 for:0.011719122709941797 by:0.010808400946589808 or:0.010404172990115616 The:0.01003576004804544 with:0.009811868184449042 tho:0.009295902015355835 was:0.008924239095331684 that:0.008672304223433876 is:0.0085591147338948 be:0.008335143826716943 :0.5187411282106204 +there:0.1582168980118488 It:0.11396185331451554 it:0.11328316819711826 There:0.06790346559579204 he:0.06460396496994265 He:0.04157978287670769 which:0.04008242812973242 and:0.03776410415738553 This:0.03457875479038185 I:0.0318698174184132 that:0.03110199590994333 this:0.026125898881157506 she:0.017188619590964044 who:0.01639012046007916 She:0.012277898717888643 That:0.00688500840589777 as:0.006274254362772837 what:0.006162529938385108 one:0.005990026858995025 :0.16675940941207856 +and:0.11045825302800709 of:0.10762226050891505 the:0.061461750333101584 to:0.04990020198857842 from:0.018314403107944292 by:0.01820168576770889 :0.01219389207236264 said:0.010802309150123248 .:0.009661699192185983 for:0.008103273446913035 at:0.007208379776105425 or:0.0064669601735016366 in:0.00614264445032142 ;:0.005843410768401869 State:0.005779170613814709 J:0.0056643330875156585 with:0.005397244025349952 The:0.005172955248239671 St.:0.005113854178893071 :0.5394913190820163 +is:0.19277807966760951 and:0.1498883565320846 was:0.14930340483314078 are:0.07855953304644811 has:0.03274473633844886 were:0.03240293112790863 to:0.02673891370537428 be:0.025509952920722643 the:0.025224635244004572 have:0.02215331882370439 a:0.021209614177146743 been:0.02000390514622023 Is:0.016346576101096986 not:0.01565207457432557 had:0.014269545384036717 or:0.013566638911987467 will:0.012777829443802359 in:0.012711437883819602 of:0.012256839759962357 :0.12490167637815558 +the:0.11919516938815296 of:0.07230453158552728 and:0.05781056740443249 a:0.043018564803886335 to:0.031305092790907506 in:0.020848713353460488 at:0.014270110001066288 .:0.012526810245749479 :0.012413283442322082 for:0.011719122709941797 by:0.010808400946589808 or:0.010404172990115616 The:0.01003576004804544 with:0.009811868184449042 tho:0.009295902015355835 was:0.008924239095331684 that:0.008672304223433876 is:0.0085591147338948 be:0.008335143826716943 :0.5187411282106204 +of:0.09043409053013649 the:0.08458268447909405 and:0.06941169710674647 to:0.06842685376506503 a:0.03502196399400508 be:0.027631492661475 was:0.02262770347407094 or:0.020899547147549786 is:0.018061672947865565 are:0.017763045964156114 his:0.017114589037761113 for:0.016727962397261282 re-:0.0162769353827767 their:0.01514882567544624 been:0.013878331263912594 were:0.013374436412516415 that:0.01319950985941409 at:0.012567281873590285 :0.012294075404375895 :0.41355730062278084 +and:0.1547450599342393 fact:0.07524151027240085 know:0.06030123657345529 is:0.04884385991750381 say:0.04646581594921884 so:0.03824873925257297 believe:0.029735883815375366 but:0.025231236574240604 was:0.023749283218713734 think:0.023402561028828987 found:0.022165475268547064 see:0.021244819751286777 show:0.019164974248945366 said:0.019103973479452342 knew:0.018556750966891505 says:0.017821137526622392 of:0.017220185727039684 me:0.017106843205364854 thought:0.016899426744505917 :0.30375122654479436 +him:0.01850904746182164 do:0.017038936099473472 it,:0.016580748663517227 reason:0.015129674714494428 them:0.014653715248836624 up:0.014637266310967253 in:0.014625106666840944 made:0.013745958835536054 it:0.013684748263524615 men:0.01346763319574651 out:0.012684587368481383 man:0.012043021083367555 right:0.012033291479434233 you:0.011347169211248209 him,:0.010912700898177403 time:0.010771389234450491 people:0.01060928477862322 here:0.01008768651405593 them,:0.009874756865245799 :0.746563277106157 +of:0.16772940658433216 that:0.09359086518458623 by:0.06939609886490518 and:0.06119784406135222 to:0.04882261978371072 which:0.03495270742084973 :0.02597168598562913 said:0.02344332327405051 for:0.022115927606049843 with:0.01738719853829 Rev.:0.01587871715939094 if:0.013107546996454701 from:0.012043272792744199 as:0.011695612175798885 If:0.011197512764335987 but:0.010644244819236068 in:0.009775536500138732 when:0.009589753086729411 against:0.006149152890255946 :0.3343109735111594 +the:0.3052430066835297 a:0.1707312833525822 of:0.1242643671094537 in:0.04845721774216685 and:0.03828005496447008 two:0.021430125526650433 The:0.018442426329807346 at:0.01836694075262865 tho:0.01747642326969941 to:0.014129064585020838 is:0.012613300414846389 A:0.01235593569702917 with:0.011939914587151627 their:0.011505778962450152 on:0.011083986295271568 three:0.00976505334941285 have:0.009757727077358112 be:0.008901830104628567 are:0.00878435197105238 :0.12547121122479 +sum:0.03352282876311118 number:0.028116684882597106 line:0.019995206059833036 city:0.01946514558931857 out:0.019275318828420953 day:0.01666865340772654 county:0.014872697538657208 amount:0.013254184849875051 Board:0.01252325449624941 town:0.012449555905674143 side:0.011663975251122375 part:0.011517157473718155 County:0.011460540331966697 state:0.011087331502382173 City:0.010878919191854432 purpose:0.01081028255427907 and:0.010297866493795984 way:0.009848747943663767 name:0.009522170936943183 :0.711769477998811 +he:0.14310369022750694 it:0.11130990705288764 they:0.07892028322034934 I:0.06922591899986383 that:0.060100073084607714 It:0.05946011763411077 we:0.036316425751995396 which:0.036236228689137596 and:0.03553735421997305 she:0.03359563137184539 you:0.028952414365320575 who:0.02587827559873309 there:0.024204570205481602 He:0.01604217147798961 one:0.012579625274040624 what:0.01157528461570685 This:0.009914422079096447 ho:0.008797666808088172 1:0.008575266563447025 :0.1886746727598184 +the:0.13742010605008512 and:0.10207877426319824 of:0.07397450603172974 The:0.03323666966533758 that:0.028170308219414686 these:0.024611712608994665 These:0.02321426573404504 in:0.02233958880195577 such:0.018503551962230223 to:0.016786282210728126 or:0.01636101860162539 which:0.016209694122772757 as:0.016160870658285174 their:0.015028655951173324 :0.014297837749869223 our:0.011954104112023089 for:0.01170272696380604 many:0.010385161604963049 other:0.010218895688899507 :0.3963452689988633 +up:0.04663309280327304 went:0.04242907872262174 as:0.04239671945261299 and:0.03803945460378643 back:0.035494801503110636 came:0.033273436142541954 feet:0.03247823121077862 down:0.02836896249898476 according:0.026952016218158806 go:0.02568717626777944 sent:0.017710946304666835 belonging:0.01715345432642109 come:0.016382470254639975 returned:0.01621702276285279 them:0.015870950155638226 regard:0.015325212541472401 chains:0.0152446645677467 him:0.01477973967278407 due:0.01427693941849678 :0.5042856305716327 +the:0.20101212374380523 of:0.1833757169314926 to:0.12875147157893543 his:0.06676251761170841 in:0.050089251261322534 a:0.042079845296427755 and:0.03294511346198248 at:0.028484795931367955 my:0.025413901633216912 for:0.025190757003995465 her:0.01984441581654643 by:0.018988876654907227 their:0.01785190247667542 this:0.017531066010707443 tho:0.016776245057862297 that:0.01666301107157538 In:0.01626172175773198 our:0.015999564477093497 from:0.015849226661526685 :0.05912847556111885 +the:0.1063829184560003 of:0.09681729497153921 to:0.08199569816768741 a:0.06465863381995533 and:0.05567592081480144 at:0.050433760719301675 in:0.02673549105643947 for:0.01804091244053801 that:0.017381679168677316 with:0.014493930103157006 by:0.013051257131653119 his:0.01290775287320602 be-:0.012110011756279593 be:0.01196880465588778 :0.01190227695285092 from:0.011265490169812977 their:0.009768866151791549 an:0.009523603846607156 on:0.009084826789711939 :0.36480086995410177 +the:0.16287760685838365 of:0.0883592780729449 to:0.0618987346693935 and:0.05423685233212741 in:0.030811253892523358 for:0.03057359609188714 be:0.025098115820027647 was:0.01826945122296575 is:0.01662970283289366 a:0.016448402520667066 or:0.01633619095301082 his:0.015510346299682681 their:0.015084175217362073 are:0.014656254371894712 been:0.013019491851438341 were:0.01267572744006931 that:0.012270302451397866 on:0.01131798809455223 :0.011150587255169986 :0.37177594175160794 +of:0.07226252959727986 by:0.062114875308474114 and:0.0480760402432522 to:0.035814762344954405 :0.03333823881823041 with:0.016807902375717353 for:0.01382674015925088 from:0.01024085274894239 .:0.008213004947978502 ;:0.007779410901543155 said:0.006509522604060799 that:0.006271293042510683 at:0.005539397502688143 ::0.005142957951248646 Mrs.:0.0050744655808061005 Dr.:0.005057601507808886 against:0.004070661670508237 ,:0.0038869650343071912 when:0.0036533378113040083 :0.645319439849134 +made:0.0797726811823636 take:0.0771156769969643 put:0.07300827118701267 make:0.05983529017712348 it:0.055003471813875326 give:0.05485595769168397 came:0.053326776087165635 took:0.049833288819363344 taken:0.04239779747533894 got:0.03524851046692509 picked:0.03267542907735902 come:0.03225169778429926 get:0.029351241471185615 him:0.025693809090616197 gave:0.025653919104646112 brought:0.025113790786591584 build:0.023735036546189393 and:0.023606154927516963 break:0.02349608948435872 :0.17702510982942077 +and:0.17625233676693722 that:0.15349140598062025 as:0.10447484779399842 but:0.048487291104693256 even:0.03572366578462813 But:0.024031895010064214 And:0.023292183161580337 or:0.022390136393162837 and,:0.014520334441237986 him:0.01258007934983539 that,:0.011702134336347625 ;:0.011466930335663856 see:0.010756797704987603 know:0.00973057827644235 me:0.008459917080817433 Even:0.008086318300131196 than:0.007664476064969366 which,:0.007618947926123264 asked:0.007285150052771079 :0.30098457413498814 +the:0.5299633671603716 a:0.19293084839507244 The:0.05281250449891224 tho:0.026146037778208252 great:0.018979440028686474 and:0.018541929964571754 total:0.01629223786308111 A:0.012742378080566918 tbe:0.011696485000184696 any:0.00934679792979079 of:0.00929510763754811 no:0.00839690831932832 or:0.0076844420044934565 this:0.007018470324239839 in:0.006493989709409078 to:0.00620905989858805 large:0.005210871490470606 little:0.004890928051371699 very:0.0046818253090499745 :0.04966637055605454 +and:0.18801156612712794 the:0.15312772491767013 of:0.10402761739172255 to:0.044192769174715214 a:0.03266926571464864 is:0.031209869048318836 in:0.029544368615696953 was:0.025617584709178538 or:0.02174453510750411 his:0.02165758186606804 be:0.020134692407327015 by:0.017411262063389603 for:0.016484726411881045 at:0.014623268964524433 that:0.014568428017846868 are:0.014211050696530416 one:0.014026513474039517 their:0.012428801787009806 not:0.012303334368065771 :0.21100503913673455 +they:0.09227175842088035 They:0.06069817051593282 chances:0.059525299418892993 we:0.057432795798006454 probabilities:0.04613453653665756 indications:0.04250686169604566 who:0.04115983511553943 and:0.035437129734060734 We:0.03342216453394747 which:0.03294676097800801 you:0.03259866784900454 that:0.025253291692622307 people:0.020364608528762897 men:0.019610758590516995 there:0.018045313839648938 You:0.008858121951455288 These:0.007867761412644142 them:0.00744756392903182 There:0.006666358497723866 :0.35075224096061774 +the:0.28182562715846143 said:0.09625596721399556 of:0.06527110984490443 this:0.04956150505351547 a:0.04309826418031714 his:0.03705548305105732 in:0.03608062823216466 tho:0.02508452848420385 their:0.02325633907853599 our:0.01970594477848351 such:0.018712535996028682 one:0.017822013133889904 straight:0.01738997546786825 north:0.01721804708315752 West:0.016998117105211957 south:0.015068446577474985 and:0.014563500660000893 North:0.014058027295214527 its:0.013908885411957577 :0.1760650541935564 +it:0.15268931735619293 It:0.11191494320230169 he:0.09963320157819684 and:0.0549072728786716 which:0.05474063124292407 there:0.04427379550573903 He:0.037893899877841364 I:0.03196997323553628 that:0.0304804913322365 she:0.024945931786703852 who:0.02447649225993743 This:0.02131538023724236 There:0.018230128340067646 this:0.015158955366705027 what:0.013957155640598738 She:0.011364360229314197 but:0.010140615666664464 as:0.009294169920866676 ho:0.008728862098365875 :0.22288442224389343 +the:0.28585084511076086 a:0.1395312356733558 of:0.05211212024456818 and:0.0439890328602695 The:0.03568022665821411 to:0.021903058171075254 tho:0.020060196253815346 in:0.0147867053354689 an:0.012854571686293214 for:0.011791382412483929 his:0.011677209329861578 by:0.011147012404840033 A:0.01036314395179008 their:0.009889112201295881 with:0.009255302004336967 tbe:0.008360490600308138 that:0.008027429495711239 :0.007535444844675416 this:0.007108858899634068 :0.27707662186124155 +away:0.05746860598250849 and:0.04985561698690421 taken:0.03950823995165392 miles:0.0355312759828073 feet:0.031845900191456514 come:0.022313957473317422 them:0.021637161013586904 out:0.020621546731341717 came:0.02000539576637417 up:0.019820502682224503 him:0.019195504147748815 received:0.019046714556510396 far:0.018152378296247898 removed:0.017489734983720518 down:0.017467467859455896 it:0.015386533775439217 years:0.01424855034507225 annum:0.014237643714946796 free:0.014107989586278378 :0.5310592799724048 +a:0.3416914077126859 to:0.17608694017916982 in:0.08425260585609176 the:0.08321412286905087 his:0.056412950372115134 of:0.04010156270077065 and:0.031863025462559876 with:0.02953898931941402 her:0.02092544273759224 my:0.019304423548004167 In:0.017449904876085297 their:0.00988994153223447 for:0.009394513770950038 The:0.008524807884048349 not:0.008484010714868834 A:0.00785180742913426 on:0.007526536492432971 most:0.007526252396261625 no:0.007133685429774303 :0.031827068716755426 +and:0.137387948663472 that:0.08071053245356932 when:0.035323248594240235 as:0.030131329483105325 time:0.024115622849546586 When:0.023940880699668654 which:0.023694482616773423 until:0.02258247922264293 for:0.02062476020108163 :0.02008029910405526 the:0.019358556876895746 but:0.017494686043798575 to:0.017395423374400653 said:0.016659266252690076 of:0.016132021974743442 after:0.015325348747256025 at:0.014443630259189728 Then:0.01427345706760478 before:0.013308183815063875 :0.4360178417002017 +hundred:0.02334136986593815 up:0.005482494641173394 men:0.005366536521246011 Hundred:0.0047587970519216575 John:0.00441808156134956 William:0.004390720675819281 him:0.004016828614280843 ;:0.003997112205305733 due:0.003721199871732 in:0.0036582900032443304 time:0.003637206863828461 James:0.0035594902370151707 out:0.0034878448964120057 .:0.003467980723571515 1:0.0032804584819785204 day:0.0032444781513863933 ,:0.003058139385740603 :0.0030314555521939613 Robert:0.003005471634785646 :0.9060760430610768 +and:0.08995317707915026 to:0.06844710404109794 of:0.04605142056172993 the:0.04074574508561307 which:0.02479116931334353 that:0.023764822140213245 re-:0.020841117231308055 in:0.020803825395358622 for:0.020278423301550053 :0.018417753428486977 not:0.016860793136637672 con-:0.016444405871234195 is:0.014386481772210856 or:0.014080680914153714 be-:0.01352268143271276 I:0.01317002660943805 was:0.011429878269381662 dis-:0.011196807025842847 he:0.01113106290024311 :0.5026826244902934 +day:0.07735757290122575 side:0.03876555886232352 State:0.032256156740632175 part:0.024437840794148295 city:0.024332865911589625 line:0.02098972241113639 number:0.01828170016152729 state:0.017647172883541715 City:0.015147537500526309 County:0.014329133366228998 county:0.014321684303806363 parts:0.013184245324877903 out:0.012628446232995407 quarter:0.01128427256047463 middle:0.01037348362563275 one:0.010302763955346147 and:0.010005804903570571 corner:0.009777488402566176 name:0.008505355662602555 :0.6150711934952474 +the:0.08968789461877945 of:0.08745010633449699 and:0.0656044252759494 to:0.04307491778668634 be:0.0363764608931438 was:0.032982951927842535 a:0.028791536751729237 his:0.018239822131875652 is:0.01789754229241147 in:0.01740936524240416 on:0.017025487421839937 for:0.015865328883904815 been:0.014330766134946564 were:0.01242161479714421 are:0.011281794305206682 I:0.010588148956198693 their:0.01056929765621413 by:0.010400629251897246 that:0.010315800533502213 :0.4486861088038265 +and:0.07181562702745725 together:0.06672214896410926 connected:0.05460722541492519 connection:0.053485248068146786 accordance:0.040816432970329504 comply:0.022327715315442986 acquainted:0.01991331996883064 compared:0.01902004432375884 contact:0.016949822974841922 familiar:0.016791563233682194 up:0.016271038698657696 do:0.015355480362757417 interfere:0.014875808889703945 charged:0.014646284015101253 pleased:0.013610051164447858 him:0.01274062267734275 but:0.012200014478196207 satisfied:0.011962054640116513 it:0.011810815262474694 :0.4930786815496771 +of:0.09129790931378902 the:0.07369883040827747 and:0.047842263382354346 in:0.04189055351593407 to:0.04045875475680249 a:0.03542341257202578 be:0.02020462051672066 for:0.01979292654746225 was:0.01760256398103379 at:0.017380150555488715 is:0.014984483003968216 with:0.014047653760730413 by:0.01374644383819499 :0.012670486581795598 In:0.01200961464556976 or:0.011563835749786333 from:0.011391516893522809 are:0.011273104484969465 that:0.010755276030689069 :0.4809655994608848 +and:0.10776455931532161 is:0.1011938310838422 of:0.09953003755970673 are:0.08263657431847353 was:0.052574039869426624 now:0.04825008219406353 there:0.04593277401921244 it:0.038700119488927584 as:0.03414671898082902 not:0.02984755158111395 were:0.021171276253861643 after:0.019396346454119195 that:0.018894239410369704 which:0.018774110947083724 It:0.018644870894359258 the:0.017958907786181068 Is:0.015945285634645978 time:0.0157025408283098 but:0.015385471514677592 :0.19655066186547485 +:0.10132530864253071 .:0.01586153736849991 it.:0.012994963694550781 them.:0.009972326155771085 day.:0.006466314186158732 him.:0.005963072708890589 time.:0.005952754819220498 of:0.005834450921883061 country.:0.005314225508045209 year.:0.0049247550547799 city.:0.004072303040063511 years.:0.003997040955926161 work.:0.003880377182773483 people.:0.0033836246305601453 States.:0.0031455025043576447 place.:0.0030640999552846737 men.:0.0029656503323313246 way.:0.002952433427976742 out.:0.002933009065662241 :0.7939962498447336 +the:0.1277442674294538 and:0.08436402833844613 of:0.07707979202620513 to:0.047614139932566454 a:0.04756674629652367 is:0.03815817324859034 was:0.035219071247803546 be:0.03188435586823774 are:0.02588366930602256 in:0.01938019542828319 been:0.01829413687746613 or:0.017621346716869588 an:0.01692556761227729 were:0.015728930318499063 I:0.01328304802599848 he:0.013051354977301513 it:0.012614709782397078 not:0.01249495016209693 that:0.012166717118087951 :0.3319247992868734 +the:0.0708432589174181 to:0.048553951774589287 -:0.04057798584016601 I:0.027278986884541934 of:0.025006117898626137 and:0.02449685000062317 f:0.0194894626590995 .:0.014962283179400952 o:0.014875813457875704 :0.013707405654217812 i:0.01288495927125108 e:0.012680039639618076 that:0.011319559106309367 f.:0.00957356048486009 at:0.009310089439382292 an:0.008458847327437203 a:0.008426131205425656 or:0.008207436157671022 not:0.007910553341493081 :0.6104367077599936 +feet:0.04328991410609083 and:0.02097931318493706 it:0.017093200144938765 all:0.016296220564060635 that:0.0160955852473967 out:0.01493486475596184 them:0.012287702979456683 road:0.010805014167110882 him:0.01039993361250782 back:0.009695458687066892 come:0.009506055810945718 :0.00862888055105794 work:0.008624561918703385 :0.008003434849271206 down:0.0071147573904287 part:0.006870063198318784 taken:0.006833412688149613 head:0.006800363952332824 up:0.006743303803794004 :0.7579979583874696 +the:0.11500545585881412 of:0.0897605566703555 and:0.07914879987306167 a:0.05827037833039227 to:0.0386987683614473 was:0.029282661483795363 be:0.023890810389268442 is:0.02056818843792312 been:0.017204803150083207 or:0.017094944717067368 in:0.01610392931760865 are:0.015798243080240505 his:0.01344187865263006 at:0.01321973597799718 for:0.01304287912725108 their:0.012337012043366955 were:0.012236169772424844 :0.01133284696603621 The:0.01095822742659897 :0.3916037103636372 +of:0.21564384127182445 that:0.12464214964608532 and:0.09792654584382114 to:0.0727346134405686 by:0.04393073334132853 as:0.03751898679557282 in:0.03554196968466474 for:0.03390523916351908 when:0.026050338585616443 with:0.024776494229567694 which:0.018326062668490475 all:0.018153993544094162 from:0.016515374621215495 if:0.015508050098944272 is:0.015451988385153444 but:0.01446126648676729 on:0.013939196561891907 at:0.011114677512680934 was:0.010695639466863603 :0.15216283865132965 +and:0.11743812102050909 after:0.07080430983123799 by:0.060035642419556216 After:0.056784429635380954 of:0.04770897567510448 for:0.03998596918635322 in:0.03193205823747684 to:0.028813525169987645 before:0.021222958977823406 are:0.019750939500800035 without:0.018614280717456855 is:0.017059992396221992 Before:0.016652985777138998 was:0.015662392666649746 In:0.014610282610803493 :0.014499038542263773 died,:0.012337838603937945 that:0.012242292728918965 claimed,:0.01195633238234038 :0.370887633920038 +the:0.33628333103896574 a:0.12657620371795664 his:0.07934781353938292 of:0.07014521925535501 this:0.06054747504235348 The:0.02860593098377401 their:0.024210609422844188 and:0.018208181889234374 said:0.01725119030100332 that:0.015213217792505817 tho:0.014338417095052744 my:0.0126350735644102 our:0.012586714809875936 to:0.011873567092215213 public:0.011498217354727315 or:0.011338695446180082 any:0.011037835298134617 for:0.010710493185307436 its:0.009140875663508284 :0.11745093750721268 +it:0.20207354351193807 It:0.13069731527628475 which:0.05915110977053132 that:0.051971317378550465 he:0.04819105046531351 and:0.04708227332778723 This:0.03321146982316584 there:0.02535693046699757 who:0.021786790173889514 He:0.02129093016089236 this:0.01988252116554146 what:0.016832911856123626 There:0.012671833776989709 but:0.011505798191410989 she:0.010389660406123623 work:0.008124655404974474 as:0.0071986238556803524 That:0.007081928849367105 man:0.006958453460189352 :0.25754088267824865 +and:0.061111735092109945 was:0.042547515074435265 to:0.04109863691045468 the:0.040296545177696326 Mr.:0.037580566890227075 of:0.03628447793480308 .:0.0331666473408971 Mrs.:0.025718805672768984 is:0.0205576366156076 be:0.01870555347640043 were:0.01327535816654763 his:0.013266307758595115 on:0.012093248223097324 said:0.010932691734251767 been:0.00985170937401806 or:0.009652148792630478 :0.009373588267952019 are:0.00883208366149618 Dr.:0.008235906720152182 :0.5464188371158587 +of:0.36863799242953244 in:0.13838014391374348 to:0.07747349573696805 by:0.05061372650721032 for:0.049767480614293695 and:0.03270502706537396 from:0.032650521198070014 on:0.03193752274411938 that:0.027659985313079474 In:0.026337604411770157 with:0.025913798950789543 all:0.019529934136014428 at:0.015949462952000698 upon:0.012595363806350143 as:0.009422052455552275 into:0.008058380713406739 if:0.007091297555960832 before:0.006018346093999372 over:0.005996989828267464 :0.0522608735734975 +the:0.21113369245304617 and:0.09013640629781404 by:0.08139565630763985 of:0.0601169455639425 to:0.03946077882774105 The:0.03255623052113628 a:0.02512019401500956 :0.019982961592166622 as:0.013791853417773253 that:0.013782471052661222 said:0.012164117578984467 pastor,:0.008814337358440805 tho:0.008327909697271357 at:0.007728961812245881 from:0.006820280984471531 with:0.00636193810322025 than:0.006009686571875255 .:0.00498730834305305 tbe:0.004607713974734612 :0.34570055552677226 +he:0.18741323442553187 I:0.10536366551351936 they:0.08639008591799724 who:0.0642164033857634 she:0.05304295980657824 it:0.047092394282798 He:0.04485834896158886 and:0.044088520890280355 we:0.04121967310994961 It:0.025689537490757676 that:0.02530135994347373 which:0.022267149272615867 We:0.01846071088954531 They:0.01825727369667175 be:0.01783770739203321 She:0.014210132424649512 ho:0.012526138608809528 have:0.011895028688024735 lie:0.010142991963600648 :0.14872668333581113 +to:0.3535732595421836 and:0.11316466844558995 the:0.07485466420935927 of:0.04906015010184492 will:0.028945388139824405 would:0.023517026497530697 not:0.02348961416432443 by:0.021019915372004788 his:0.020836361855768638 a:0.017945942471597955 their:0.016852086258112832 all:0.016570523030571663 an:0.016438750587143187 I:0.01605958246123951 we:0.015809559659380152 they:0.013682466721129211 or:0.013257422293918898 in:0.011927692573748367 may:0.011622789297930904 :0.14037213631679668 +was:0.16765140542072896 is:0.11023834239752484 are:0.08473437015125378 be:0.07895612416188294 were:0.07837830650336504 and:0.07316395569163447 been:0.051998883662406264 not:0.03563846256021875 he:0.022490383244198244 I:0.018135821971272847 had:0.01693465056398869 being:0.016326723631957623 have:0.015942359747489 it:0.014730274531042295 in:0.014492245914801272 so:0.01409497632086507 or:0.013598256592927972 has:0.012766848163259835 now:0.012565448476800392 :0.14616216029238172 +that:0.1267222236346898 and:0.11955319789505209 as:0.10039731741840657 when:0.06019386229698037 if:0.04458985978491863 but:0.04418276592265683 which:0.043203217179227 what:0.028397300409275822 If:0.02196962640044517 When:0.020298621407742877 because:0.016777719934279237 time:0.014707478677182381 where:0.014384163869186782 for:0.013007324274725124 But:0.012975461176697959 As:0.01229162939359606 until:0.012268861964037378 so:0.01103024562268535 :0.0101923579418164 :0.27185676479639814 +and:0.13832804809268348 to:0.10672102383878827 the:0.0957375811971075 of:0.0846678662382709 in:0.027816437531582996 a:0.02467454881110651 be:0.021302498485022164 or:0.019804851325322833 is:0.016220559961595948 not:0.015504585401811306 was:0.01352206447391019 will:0.013045438836129634 that:0.013026649762091657 for:0.012260915480154008 Mr.:0.011403619668368942 it:0.011163547883727318 I:0.010956801673037688 he:0.01082634156602975 which:0.01061236994168756 :0.34140424983157136 +had:0.17155342065810317 he:0.12329734716764636 and:0.12020976020141265 have:0.0788437611617426 has:0.05825156141165528 He:0.04933399087477711 she:0.04600264848131173 I:0.03251026855467899 the:0.03016483509628657 was:0.029250493349877935 who:0.02805592017254385 having:0.015611214829233642 they:0.014978502998447897 She:0.014895696305190234 never:0.014774442671064779 then:0.013835582648424221 which:0.0129185304837909 that:0.01254689494336792 been:0.01037339158847384 :0.12159173640197032 +the:0.11919516938815296 of:0.07230453158552728 and:0.05781056740443249 a:0.043018564803886335 to:0.031305092790907506 in:0.020848713353460488 at:0.014270110001066288 .:0.012526810245749479 :0.012413283442322082 for:0.011719122709941797 by:0.010808400946589808 or:0.010404172990115616 The:0.01003576004804544 with:0.009811868184449042 tho:0.009295902015355835 was:0.008924239095331684 that:0.008672304223433876 is:0.0085591147338948 be:0.008335143826716943 :0.5187411282106204 +and:0.06800754775880856 made:0.02581974213769864 him:0.024085456211005118 demand:0.02325910085574069 it:0.023078482561227732 was:0.022288758756127226 place:0.02098492994416101 application:0.02005800912148081 up:0.019983559799572947 asked:0.01933542460133121 not:0.018959223206127147 used:0.01814438319320441 them:0.018004950768892705 necessity:0.0179543746915811 out:0.01768893834230613 ready:0.01752450426406123 is:0.017324798293961628 vote:0.01725618800860375 providing:0.01609183765662427 :0.5731497898274837 +and:0.05917734571267282 closing:0.04405297983259551 was:0.026323119710997635 valued:0.021005792503071843 held:0.01922887441606307 sold:0.018225285914023 2:0.017782437938973866 is:0.017552850459549643 arrived:0.01662711812741857 be:0.01645048243064216 are:0.016339673120917095 White:0.01533836240735085 not:0.015154252504664439 as:0.012706467917481812 that:0.012063629264509927 estimated:0.011864260728812118 Dated:0.0116063700277585 or:0.011444173640079769 made:0.010438189210536826 :0.6256183341318805 +north:0.3133840335283627 south:0.21173530063988072 N.:0.05586222126613541 S.:0.0432722770604053 N:0.033069896947487354 of:0.023967949827030578 east:0.022011495972884383 and:0.0215312213968852 .:0.02105925104929272 to:0.013502335151668418 west:0.011877981171130187 No.:0.011246187842904364 W:0.009145485993141349 S:0.008974411475643528 the:0.008895640996517067 8.:0.008654464768615847 lot:0.007386831714652592 section:0.006615054904944175 Township:0.006199125947753051 :0.1606088323446651 +and:0.09154494379491417 together:0.04055862893904498 connected:0.03536385634606988 met:0.02966582658056574 do:0.029539794144663782 covered:0.025151598132736944 him:0.023341519740251816 it:0.023150769212228663 up:0.020222977747123044 connection:0.019896807432769628 them:0.019860604747163585 filled:0.01926840481807988 but:0.01571344567875761 accordance:0.015386774176883725 charged:0.014065240939802593 acquainted:0.01398516090932927 done:0.01369114772376202 made:0.012987774306775212 contact:0.012304724224026585 :0.5233000004050509 +the:0.3122080296460828 of:0.1482388434313666 and:0.07183447218247581 a:0.06387091451899847 to:0.05403468449816845 The:0.03442715893929629 in:0.030551003517812744 tho:0.021421254905117235 by:0.017518693631069907 with:0.013908314699478301 no:0.013668077945620033 for:0.012989885872454154 our:0.012857695372126346 or:0.01265545359514414 at:0.011512863251211014 their:0.010552842281293662 on:0.008909662980248244 his:0.008837823822189846 that:0.008762952542835758 :0.13023937236701028 +the:0.21757329575204287 of:0.16343727221555893 in:0.06610052623472087 to:0.04400563688020298 a:0.030594214139398234 and:0.022807969365290056 from:0.01830266199670061 as:0.015936740977573027 In:0.015114003071781273 by:0.014733524050183792 for:0.014721298061733128 at:0.014047987391349825 tho:0.013135660007845716 that:0.013024094035168531 on:0.012080174908476807 with:0.01143663127036916 :0.010997697698508144 The:0.010875859751816087 an:0.008613946403989112 :0.2814608057872908 +and:0.09500881008555331 well:0.06206658951236029 regarded:0.036935028935535894 him:0.0314142794209011 known:0.031077052056542338 soon:0.02700320061470986 it:0.02623085774473942 is:0.02438162343435629 but:0.023839390993020203 used:0.021720637341540703 far:0.02045890976727103 just:0.020384524333195254 much:0.01971667289504282 such:0.019521581813054578 them:0.016090407278819097 was:0.015694381145043425 so:0.015081118446204548 act:0.014529263549522683 that:0.014487886332689187 :0.463357784299898 +It:0.2776008260220935 it:0.2654374422237026 which:0.04580082890873498 he:0.041784445861697446 This:0.04040547724483476 that:0.027692838657641022 He:0.022819624955444397 and:0.0202228455809345 this:0.018252990532004694 there:0.016614883420914158 who:0.015251051683766531 what:0.009302569791221418 she:0.009267883720565015 There:0.007627487672794621 man:0.006213312991584561 work:0.0051672367809010725 She:0.004645948731605816 as:0.004041639711234503 life:0.003805652589899944 :0.15704501291842446 +more:0.07097081748910707 person:0.05686688304507405 in:0.03009366651234059 one:0.02666872121403656 law:0.0179748831211187 lot:0.017262863045673718 piece:0.01705658190728655 action:0.014591462947742004 on:0.013032945092682807 man:0.012594760602764356 made:0.012589335617853041 day:0.011352936825883562 three:0.010764800210859354 out:0.010618660884545123 whether:0.010567714092617468 owner:0.01011867108016488 it:0.00922354600398475 form:0.008951784450999591 little:0.008924251562103958 :0.6287747142931618 +the:0.1305604629836938 ser-:0.09116581011042964 and:0.06078503036641525 ad-:0.05968101375993088 ser:0.047771044747762934 of:0.04269777733214618 ser¬:0.03604800990391203 ser­:0.03129719327198461 to:0.022034336356207853 a:0.01781266867733104 his:0.01740745337263678 for:0.013927366097934712 that:0.013697559376543733 The:0.012402220518059634 by:0.011883827411450394 her:0.010214451349297164 this:0.009894524553961831 tho:0.009243929872221803 in:0.008975182904393513 :0.3515001370336862 +.:0.09743278394211707 to:0.030172214821512267 D.:0.025390404583234154 S.:0.023323386931248018 of:0.020380314195279692 C.:0.020358285385297964 A.:0.01935996830393151 and:0.01746990031118721 H.:0.016688658294376223 W.:0.014683296386794366 Mrs.:0.014274960143317009 J.:0.012348274058516802 Mr.:0.011586792959274957 the:0.011459548505107412 :0.011240473551314238 M.:0.011022815936440281 Charles:0.008747429944890778 L.:0.007912542250554773 E.:0.007833574401904705 :0.6173143750937006 +he:0.2543077715090605 I:0.11351472650796841 she:0.08344800514117436 who:0.08129279205209769 He:0.07006389132892697 they:0.03948131969113208 and:0.034387321683345316 which:0.028449169339022966 that:0.02533344294864763 She:0.02443995144410142 we:0.02039360262769682 it:0.01958764285883261 man:0.016120821063787927 ho:0.014842004086330183 lie:0.01037961625789587 It:0.01018975843500347 be:0.01008216321983603 1:0.009478263743239136 wife:0.007178015546424591 :0.12602972051547603 +the:0.11919516938815296 of:0.07230453158552728 and:0.05781056740443249 a:0.043018564803886335 to:0.031305092790907506 in:0.020848713353460488 at:0.014270110001066288 .:0.012526810245749479 :0.012413283442322082 for:0.011719122709941797 by:0.010808400946589808 or:0.010404172990115616 The:0.01003576004804544 with:0.009811868184449042 tho:0.009295902015355835 was:0.008924239095331684 that:0.008672304223433876 is:0.0085591147338948 be:0.008335143826716943 :0.5187411282106204 +and:0.06317916895143688 was:0.03089079697380977 is:0.020044819943736053 be:0.019406329289829806 are:0.016631216139614186 that:0.015910745835586493 it:0.014132589635136123 been:0.013429954470292457 made:0.013153338042273357 were:0.012494049396038097 or:0.012369181282419555 them:0.011608721240324167 up:0.01101461536327863 him:0.010833186604515583 as:0.010718511743974049 succeeded:0.010682665877813333 engaged:0.010592681714621757 not:0.009777868089593193 now:0.00948198968071834 :0.6826475697249881 +hundred:0.04946056336928399 160:0.04477633644671254 thousand:0.04254487966174221 ten:0.035673459275179516 five:0.027449389525765474 100:0.02684423252408445 sixty:0.026487628217051862 40:0.024889920717846868 120:0.021081065199862133 fifty:0.020950942093883238 two:0.020496630001973774 forty:0.02010186687458502 million:0.01639809365141985 20:0.015937678685019774 50:0.01557606263826428 of:0.01538614990018551 twenty:0.014397516755352162 eighty:0.01334516117747155 80:0.013024730183267013 :0.5341776931010488 +the:0.5458615085212135 and:0.10532723833034459 The:0.027025064400236228 tho:0.023665112552991866 this:0.019335320887544263 County,:0.018944704014561914 of:0.01842519701586739 a:0.015770738980620858 county,:0.015224763745018126 that:0.012768810807897895 Angeles,:0.01155356694924286 tbe:0.011403619536003723 county.:0.00932009619754861 Elko,:0.00835156115158733 or:0.007733593938764859 every:0.007279711094454517 other:0.0071452260519393644 said:0.0070688449641858496 any:0.006280820209600275 :0.12051450065037594 +and:0.12471506473816714 do:0.04257738383181703 is:0.039238510476177026 was:0.036773554721401785 are:0.03129198937336644 And:0.030621016041513353 or:0.02643134973553783 not:0.024390443239096823 be:0.023817340759042162 been:0.0176333662283881 of:0.01655368291849998 but:0.015989876828084212 done:0.01597958219231581 that:0.014270644167356803 were:0.012747208998059882 to:0.011556890105247616 for:0.010815269197434715 ;:0.01006770985277766 doing:0.009122720925812507 :0.4844063956699031 +the:0.18956665851678706 The:0.18222250749494068 a:0.14942761390372772 young:0.12621196198565646 A:0.044504756170528785 that:0.03917450608046999 old:0.03792941716753402 and:0.022088261772548412 This:0.01990620390705591 her:0.01773554876151666 this:0.01598088356968208 poor:0.014479469039129894 No:0.01250395838286102 every:0.012495569353508176 tho:0.012400500981048987 little:0.011982395171479894 colored:0.011755530348738432 his:0.010783726721262663 white:0.010696766576878205 :0.05715376409464499 +able:0.08337932690276735 unable:0.056546144782303194 trying:0.04881887759210239 order:0.04581604246015145 enough:0.04438010567290338 and:0.043422550055921764 want:0.03871111999214787 have:0.03814668767540546 tried:0.03654100585164446 him:0.03271931271789186 had:0.028683457515902157 managed:0.025141441088474683 is:0.02506388864151297 right:0.024736078435548606 me:0.02430164671535974 going:0.024032835639090856 wanted:0.023715199364815892 began:0.02323782752596584 time:0.02259911583378778 :0.30900733553630233 +of:0.09129790931378902 the:0.07369883040827747 and:0.047842263382354346 in:0.04189055351593407 to:0.04045875475680249 a:0.03542341257202578 be:0.02020462051672066 for:0.01979292654746225 was:0.01760256398103379 at:0.017380150555488715 is:0.014984483003968216 with:0.014047653760730413 by:0.01374644383819499 :0.012670486581795598 In:0.01200961464556976 or:0.011563835749786333 from:0.011391516893522809 are:0.011273104484969465 that:0.010755276030689069 :0.4809655994608848 +the:0.16889008346404644 and:0.07014648694869381 of:0.05227419029730454 Mr.:0.03800467847958812 The:0.03566701473082823 a:0.02775516448622503 his:0.01991538316304037 I:0.016881286124750244 that:0.01628978960361243 was:0.014329928907225257 he:0.014076357288743553 when:0.011174277060095841 Mrs.:0.010918106026900444 to:0.010737773363421273 in:0.010329160416546019 .:0.010281375136314191 as:0.010207376946321024 tho:0.010106836217815694 be:0.009690860572295942 :0.44132387076623153 +sum:0.03352282876311118 number:0.028116684882597106 line:0.019995206059833036 city:0.01946514558931857 out:0.019275318828420953 day:0.01666865340772654 county:0.014872697538657208 amount:0.013254184849875051 Board:0.01252325449624941 town:0.012449555905674143 side:0.011663975251122375 part:0.011517157473718155 County:0.011460540331966697 state:0.011087331502382173 City:0.010878919191854432 purpose:0.01081028255427907 and:0.010297866493795984 way:0.009848747943663767 name:0.009522170936943183 :0.711769477998811 +is:0.11342299187196629 was:0.11129364670799524 of:0.07730564423381803 with:0.07062082301807311 in:0.06095755588583118 to:0.0555736213717051 and:0.05377304973695619 had:0.04429932628043152 for:0.04219221100432666 have:0.038788496596424187 be:0.03364964351587202 by:0.026754067826414964 has:0.02613950911169547 as:0.0251225894265981 not:0.01838684363875246 made:0.017997245052928636 been:0.015701647433045016 that:0.014607386043069125 Is:0.014383564689901832 :0.13803013655419488 +of:0.09129790931378902 the:0.07369883040827747 and:0.047842263382354346 in:0.04189055351593407 to:0.04045875475680249 a:0.03542341257202578 be:0.02020462051672066 for:0.01979292654746225 was:0.01760256398103379 at:0.017380150555488715 is:0.014984483003968216 with:0.014047653760730413 by:0.01374644383819499 :0.012670486581795598 In:0.01200961464556976 or:0.011563835749786333 from:0.011391516893522809 are:0.011273104484969465 that:0.010755276030689069 :0.4809655994608848 +and:0.13010629048163458 be:0.1110647989434849 was:0.0765756343592201 he:0.06424329269073593 been:0.059702194402067914 have:0.043874027279544314 they:0.036464929497801696 were:0.03236738864032171 I:0.03235439942242617 had:0.029342884761061706 not:0.0285974869727627 has:0.027429169580882415 ever:0.026550719014041567 the:0.02514212173511466 are:0.02501250618603818 we:0.024059305684235557 is:0.018781467709597502 or:0.017804815600151312 it:0.016802140670269305 :0.1727244263686078 +the:0.2185754754940554 and:0.08944600519454446 of:0.08789638508506613 by:0.047159630282612504 that:0.036833625704421946 as:0.035570136529962985 to:0.030956326220709204 The:0.02408996931664497 tho:0.01944466207278323 :0.014550912868108614 a:0.013676111856990216 said:0.013439792595824755 with:0.011356761820971563 for:0.009956302773740884 in:0.009217326876831855 or:0.008661292902896722 tbe:0.00822408528705865 an:0.0076885731021496114 at:0.007139279785316939 :0.30511734422930936 +of:0.06689066952901185 the:0.06248163213973434 and:0.040696327998228865 was:0.0350383275853612 be:0.03171427439077798 to:0.030628735182769738 :0.02814628848597358 in:0.024383588800327906 it:0.019102785315433954 is:0.017183223822986253 not:0.015733225387850727 are:0.014411352212113239 were:0.014319481526596919 as:0.013909086956711472 a:0.01338199284654015 been:0.01235537658341922 from:0.012316753759009421 de-:0.011314291471903262 It:0.010848473301545772 :0.5241441127037042 +the:0.38467816873868727 of:0.0702404918637161 Great:0.05907218564211664 to:0.0425763966310629 a:0.0413391819212637 and:0.03667811221131621 in:0.022878011696338116 by:0.0224231915496122 The:0.020774261954402514 tho:0.02046968390186801 from:0.01918595691091951 that:0.016908609647811507 this:0.016198460226269563 on:0.015527025702760102 for:0.015049868834783969 other:0.013211186596011936 with:0.012478730375150446 tbe:0.009623528066636872 one:0.009229915949285837 :0.15045703157998658 +and:0.13240204986176268 the:0.054499144528581595 be:0.047930696205066826 was:0.041975268229817043 he:0.03924605733609639 is:0.0360801339538902 have:0.03533975765566608 or:0.0341292627931201 has:0.025635447448373042 had:0.022335020446624446 which:0.021590233673028477 are:0.017935730056188242 who:0.017544894848202163 I:0.016716442031672257 were:0.01624505213095269 been:0.016072177177183858 it:0.015508194089972777 a:0.013264107698382837 they:0.012916969344615382 :0.3816333604908029 +the:0.18786885372447867 and:0.08998994169535424 of:0.08299658175529616 to:0.06350506244084385 a:0.053477692843842 be:0.029015288092350277 their:0.02591677291806705 his:0.023601143149274032 for:0.022052744978454206 in:0.020094280917537254 is:0.019174921914693683 was:0.015733959340738547 or:0.01441481315273373 tho:0.0128391515529128 its:0.012786493550353488 I:0.012182568198982441 at:0.01158283062689511 this:0.010965093533664337 not:0.010776758126179453 :0.2800250474873487 +one:0.1028303141280697 part:0.05963429477052991 out:0.04766456937681193 some:0.031418679026461914 members:0.030764490253327767 side:0.029940657362655835 portion:0.022063658796890564 office:0.020457735219956013 member:0.019726706386316174 end:0.019666887540649894 tion:0.018667441728710307 parts:0.016814747270460957 people:0.014112771422418794 all:0.014072739582212475 any:0.013183573287639892 One:0.013083578354183906 that:0.013024335602903442 account:0.012482348155001894 many:0.012077825070275192 :0.48731264666452345 +of:0.2289939614354677 in:0.10195426937293446 on:0.09297320435234425 to:0.08768087868830643 and:0.06684417263927293 for:0.049103676907090485 that:0.0447731685374723 from:0.04024872849812155 by:0.0278527375616631 with:0.026903224487826935 In:0.02646454108876156 at:0.018903668462667906 upon:0.015456886820747487 is:0.01475671069517472 into:0.01344834156436695 as:0.011585049611205515 over:0.011178301932119696 was:0.0103589257832657 when:0.010045654719388739 :0.09947389684180157 +to:0.4558949694749151 in:0.10896382507522388 and:0.05030500551260996 of:0.047253788992471124 the:0.03798271579688281 In:0.028590348493738846 will:0.027155377782473598 for:0.023068191681716442 not:0.020099097419317365 would:0.018301251665120716 could:0.018230254812060108 without:0.017471872640064463 can:0.01676048258593159 or:0.011339710997491684 its:0.011236049321706845 by:0.009600850915059035 their:0.009529260396504285 his:0.008125182954728374 with:0.006998456210837285 :0.07209330727114652 +of:0.13084814232797154 in:0.0740836656586379 as:0.0625527229231004 with:0.059577596335708534 to:0.058433603729754965 is:0.05551580107464621 and:0.04946529489577619 was:0.04264000753602388 for:0.04009673021586375 by:0.037684080471064085 be:0.023941707008899252 on:0.02316059851167503 at:0.022644769441950232 such:0.019950936521181326 that:0.017856095877642635 like:0.017386655618315594 In:0.016902219705578994 from:0.016046571451088905 not:0.01205910100844263 :0.21815369968667797 +and:0.06454739073657131 demand:0.023313300174744492 ready:0.0192991955467307 used:0.018559068069203856 time:0.0167973135366693 not:0.012889415712033305 vote:0.012868664167591082 it:0.01277775949265748 candidate:0.012059490274945432 him:0.011492660117416436 them:0.011389360230310022 called:0.010603763162339089 made:0.01030049958521204 up:0.009942829375404135 was:0.009875709402481388 as:0.009516893763303088 patent:0.00929908628672026 or:0.009178704268878403 but:0.00882338719685127 :0.7054655088999369 +in:0.3453203526655168 of:0.23661360047771787 In:0.10113081815899132 to:0.047484879808962294 for:0.03776716525487448 that:0.03191462438387185 by:0.01995726876425378 on:0.019613533214919408 from:0.01853293526183644 and:0.017708708588176577 with:0.01608977013009614 upon:0.010532032066265564 make:0.008234383409676692 into:0.007651182843954299 at:0.007292863510619997 iu:0.007095050468562142 take:0.0057913394077636704 but:0.005750903675780818 under:0.005534194998677711 :0.048984392909482165 +and:0.11309150618106857 the:0.10037944611747104 to:0.049196715643056124 of:0.04653691096273274 a:0.025981068097076718 for:0.022483404613663785 :0.02013226390549264 or:0.017177957641769007 by:0.01652010938485441 was:0.016103779288127815 I:0.016099011579290196 in:0.0159429698900449 that:0.014429495990857414 he:0.01421672047769797 be-:0.012949286590830373 1:0.011819243164885388 will:0.011418546253387108 be:0.011055324680104655 his:0.01089616243507497 :0.4525700771025142 +the:0.22531818554313124 and:0.09649796162888459 a:0.09344106639765783 of:0.07040073337825521 to:0.03641144405451537 in:0.026232157446174107 or:0.0211364231459844 The:0.017205603472986407 be:0.016499517276847057 is:0.01624074447951063 was:0.015882131032094543 are:0.014333095070866844 tho:0.014118351120436676 his:0.013229004896200675 with:0.012598369713765111 for:0.01192152523896021 their:0.011744904406025203 by:0.011634296440724178 an:0.011083806642812903 :0.2630706786141668 +and:0.09253469968762029 was:0.0261545677781733 made:0.02495032612376436 up:0.01937180390879733 described:0.017954188450971104 that:0.01602126447726655 is:0.01555781606638613 found:0.015502679584761333 situated:0.015458562500252095 it:0.013634089285810124 him:0.013230182063433453 held:0.012585813032853225 recorded:0.012230538011268888 or:0.011625791594575741 are:0.011500873676622636 but:0.01102936178869032 out:0.01096889423835672 part:0.010968344884248318 interested:0.010773111435694848 :0.6369470914104532 +was:0.23217515773164302 been:0.0837245912239563 and:0.08040767937818806 were:0.0711925228008049 be:0.048207036867093205 is:0.03933977964631855 are:0.037872559712756985 mortgage:0.027376538195429404 deed:0.025131187977269782 being:0.022317795749999685 the:0.014359017476793164 had:0.01307259325922524 thereafter:0.012771816715715723 trust:0.012406581000102728 have:0.010978944413931635 mortgage,:0.010492095384516495 contained,:0.010213008057757416 has:0.009708160192046945 trust,:0.007804917593147018 :0.22944801662330375 +a:0.4163250802211273 the:0.10889313656823012 each:0.054242537528313005 re-:0.04174800924912179 one:0.03650445904852876 and:0.03132700340396277 The:0.02959983289858844 his:0.026660956291178706 per:0.021444337565282176 A:0.018741501407717187 every:0.018045436448727966 no:0.016313387317987132 One:0.015839308954882447 other:0.015488820402904764 little:0.014379379552149569 this:0.01437316928450627 some:0.014300181879897712 her:0.014038773187594462 most:0.010824584872119684 :0.07991010391717976 +or:0.1253584211890979 and:0.0897929997276153 was:0.037707034823723735 that:0.03225081698227876 never:0.030973052261659417 is:0.030182556438622166 laid:0.02927887147337214 long:0.028268412319001634 time:0.0240738400678966 be:0.023636413393900442 days:0.023390478123194 ever:0.023055225480806588 just:0.022600075938257955 up:0.022006020961002848 appear:0.021600370302335716 not:0.021361252777188665 but:0.02035469818300663 them:0.019956300761385465 Just:0.01952322751593595 :0.35362993127971803 +of:0.14040915970543477 the:0.12126688128454555 a:0.09944325340784375 to:0.06740080600378826 and:0.0588559380473569 an:0.035677354162815006 The:0.021753321542729565 in:0.018855261102088492 be-:0.018676700082433998 as:0.015530153004853017 with:0.014961493421349458 that:0.012952344785972599 which:0.01292232591137495 from:0.011494656931174664 is:0.011349267198581271 on:0.010254169414273111 was:0.010253768144757428 be:0.0099977082797386 his:0.009658015039296164 :0.29728742252959245 +the:0.14963153234328655 of:0.13242927451538825 and:0.08981997006362148 to:0.04480992024034516 a:0.03441260798121647 in:0.03377447981822456 or:0.023368025069647365 with:0.020222607798751343 The:0.019551850237588642 by:0.018896721933254288 an:0.016220561756075697 :0.01488631075718484 for:0.012884377398127598 .:0.01275560616760003 at:0.012278135500474309 tho:0.011473559272363371 on:0.009744393797163705 from:0.009016316249481064 two:0.008938581621816093 :0.3238851674783892 +of:0.19275719248827813 on:0.157518139003542 in:0.11926713934158788 to:0.10259156025846124 and:0.05087216946773681 In:0.039240093541572964 from:0.037043233615705995 by:0.03451610325471297 that:0.03162487289843684 with:0.029629674309432908 for:0.02897791840166248 upon:0.022757233139310565 at:0.01772175514879235 On:0.016814611722872064 all:0.01405181556841266 is:0.010551676066548242 into:0.010046107783468735 under:0.009841418014288046 as:0.009749329301015342 :0.06342795667416178 +the:0.5084473272838815 this:0.08346264531066719 a:0.059882113494072915 said:0.029792502908449724 The:0.026012709018146563 tho:0.02160507800006118 of:0.018711542147453592 tbe:0.013355649165836944 an:0.011898002849554735 any:0.011325694760364062 his:0.010309642031055189 our:0.010049530375665836 that:0.00968934686738583 York:0.007328923745018721 new:0.007061043995350508 every:0.006398707934414365 and:0.006298855773820213 to:0.006132457368095116 one:0.005955907649277646 :0.14528231932142827 +and:0.1077749792836058 the:0.06778127820510269 of:0.0512355041064562 to:0.04057634236092281 that:0.03309449772045534 which:0.032184713121535445 in:0.02880706726921465 a:0.02476725794496234 or:0.02254924190231092 for:0.017556418657121785 any:0.015639295771894934 he:0.015141883170409012 said:0.014645315422217572 be:0.014551715827369548 I:0.014194895173058466 as:0.013317622499239594 it:0.011573824401991058 :0.011573113142989604 no:0.011243670362708203 :0.4507913636564341 +the:0.32831095723876047 The:0.11029287402751577 railroad:0.04668943327634705 that:0.03399541674772647 this:0.032931966006840764 his:0.028559601503225018 and:0.023872050896915985 a:0.022245295666073223 tho:0.017472471225188146 such:0.015145683473389663 of:0.012884738010499637 one:0.012880647158780147 our:0.01156120725630896 said:0.0111888780212605 railway:0.010871616009460683 old:0.010591294358204623 other:0.010569360900056585 This:0.009521252377281315 insurance:0.009082777545018812 :0.24033247830114612 +of:0.32887712958267074 to:0.08959608303990879 in:0.08738002167081833 on:0.05711101074759013 for:0.05006797582797912 and:0.046096327607692125 with:0.03946997535487289 by:0.0371887670884062 that:0.033671692884809826 from:0.029849187282563566 upon:0.02137856632750846 In:0.017601043106783884 all:0.016573344170060008 at:0.015699491862058372 as:0.011794418728643405 into:0.011788799097257502 through:0.010894882105113595 over:0.009601120479977831 under:0.006637330761118672 :0.07772283227416654 +the:0.09485853863930195 of:0.06396321863246268 a:0.05732872066627838 to:0.0504457614612299 and:0.04496551503914134 in:0.028959761335239677 was:0.01829254680082096 an:0.017289868318308917 is:0.016664189216135775 by:0.01564275226687819 :0.014402917535879155 as:0.0125749466938 with:0.012533383816501055 that:0.0124537477761313 for:0.012247077919690718 on:0.011732009328862265 from:0.011280502244657148 be:0.01033849387716931 In:0.008934750816717567 :0.48409129761479375 +of:0.3585238900749886 to:0.1258193968031842 on:0.12089675936723247 in:0.08822507538489337 from:0.04313018593640653 by:0.038122281322426864 at:0.0360102543004686 that:0.022632417081558772 and:0.021361918074030727 In:0.01744911242704975 with:0.015194549875003089 for:0.013737037404845156 upon:0.013215115611737304 into:0.009709871031998038 along:0.008637288139885601 which:0.006838868080563512 through:0.0053297979812564015 ot:0.0050410788004404275 On:0.005014168982763999 :0.044110933319266604 +to:0.09864282010030183 the:0.08375297126946753 of:0.07074571151673052 and:0.06779046829403 a:0.02766650927741597 in:0.021670314456411932 at:0.021392828982420006 for:0.01627599403114278 is:0.015107338441904122 he:0.014818877918256685 was:0.013808540905081488 by:0.013132601340090633 it:0.012796195965848819 I:0.012723560421513859 :0.0121914922721236 not:0.011777366450725432 .:0.011011346691779235 that:0.01092359583028988 with:0.01073896800850032 :0.4520324978259654 +the:0.5262439896207797 of:0.1336723629202416 and:0.05726540290727664 on:0.056940876622034696 The:0.03188686512975132 tho:0.02385405877623868 this:0.017800894760599706 in:0.013927017431595424 tbe:0.009799040739809948 from:0.009066548017287965 his:0.00820759092703473 with:0.007869217100829974 for:0.007316954227894793 to:0.006226446152655316 at:0.006146966867160866 by:0.005787460908146329 a:0.004825780425663085 said:0.004724933248199627 that:0.004688435645981308 :0.06274915757081825 +the:0.10827285224321626 and:0.08870080307854705 of:0.07654378796298532 as:0.07601899914727774 a:0.04239111470737973 to:0.036354557417072705 be:0.029098708624609438 such:0.02486086551323051 in:0.02412061979539941 so:0.021759133747919383 is:0.0213871206641338 was:0.01854428813517412 or:0.018041820802296556 his:0.017121500893264113 are:0.011896248230315926 Mr.:0.011670635217693667 for:0.009878887779613906 their:0.009758437766275404 at:0.0092398132181 :0.343339805055495 +a:0.3184035564118706 of:0.07825592773697737 very:0.07802569409451302 the:0.07778143305907242 so:0.07291210567188004 as:0.05064257293859774 and:0.04653641768382535 such:0.03165584164090048 too:0.022428685470493075 The:0.022174655749803 to:0.018665972675912496 that:0.015424774131702707 is:0.014259494376681569 no:0.013867687777795751 for:0.013864674851839587 or:0.013301247636657252 with:0.012356705410780228 A:0.011641903819750568 in:0.011091574691906497 :0.07570907416904023 +the:0.11919516938815296 of:0.07230453158552728 and:0.05781056740443249 a:0.043018564803886335 to:0.031305092790907506 in:0.020848713353460488 at:0.014270110001066288 .:0.012526810245749479 :0.012413283442322082 for:0.011719122709941797 by:0.010808400946589808 or:0.010404172990115616 The:0.01003576004804544 with:0.009811868184449042 tho:0.009295902015355835 was:0.008924239095331684 that:0.008672304223433876 is:0.0085591147338948 be:0.008335143826716943 :0.5187411282106204 +hundred:0.02334136986593815 up:0.005482494641173394 men:0.005366536521246011 Hundred:0.0047587970519216575 John:0.00441808156134956 William:0.004390720675819281 him:0.004016828614280843 ;:0.003997112205305733 due:0.003721199871732 in:0.0036582900032443304 time:0.003637206863828461 James:0.0035594902370151707 out:0.0034878448964120057 .:0.003467980723571515 1:0.0032804584819785204 day:0.0032444781513863933 ,:0.003058139385740603 :0.0030314555521939613 Robert:0.003005471634785646 :0.9060760430610768 +be:0.255717624995651 was:0.14607935264328473 been:0.09762365856466068 is:0.07548205717176402 have:0.04848107217337975 are:0.046751274125327605 were:0.04548503797918723 has:0.0353155408739448 had:0.034882275958928975 and:0.021580851660030397 being:0.021323320652884083 hereby:0.016245765119608926 Is:0.013024450695477906 bo:0.012603718630511481 he:0.008835232389587477 ever:0.008730725125347373 it:0.008228309799835055 duly:0.007607539257949996 not:0.007223847139126617 :0.08777834504351192 +the:0.11919516938815296 of:0.07230453158552728 and:0.05781056740443249 a:0.043018564803886335 to:0.031305092790907506 in:0.020848713353460488 at:0.014270110001066288 .:0.012526810245749479 :0.012413283442322082 for:0.011719122709941797 by:0.010808400946589808 or:0.010404172990115616 The:0.01003576004804544 with:0.009811868184449042 tho:0.009295902015355835 was:0.008924239095331684 that:0.008672304223433876 is:0.0085591147338948 be:0.008335143826716943 :0.5187411282106204 +the:0.3097446363521402 and:0.084078185369002 their:0.08109078835902535 his:0.06512270752114806 great:0.03587493612166035 its:0.03037326185313499 of:0.02788665428654182 a:0.027091691960768542 our:0.02304664618486738 too:0.01796224722853293 tho:0.017688026652911047 an:0.015530049324628077 or:0.014588031140594858 all:0.014536410641574897 in:0.014518288941913869 my:0.014232138400263149 her:0.014062895059588779 one:0.01380001201485565 other:0.013756944252046795 :0.16401544833480128 +interest:0.024204989884306638 time:0.02186769644998076 men:0.021606274226496223 day:0.01613038729709134 power:0.01589146089154735 principal:0.015498417365373558 city:0.014114592534628583 land:0.01411035822378646 rights:0.013415281292424332 labor:0.012986333938289482 dollars:0.01287446506110899 due:0.012324486668246976 terms:0.010977139983131023 out:0.010315210667707379 new:0.009998126421937158 life:0.009997725809724575 rules:0.009863638017764883 county:0.009587246358100062 one:0.009383636643258366 :0.7338525322650958 +the:0.08741288820481248 and:0.07392080242938477 be:0.0572668144792991 was:0.05686739458441792 of:0.05297029938296901 to:0.040095074017987696 is:0.03448309022071693 been:0.028380973754521515 a:0.02485235362607966 are:0.02226522268065813 were:0.019682022343204007 in:0.019454144698829248 or:0.019273705289081854 as:0.0158232132157123 not:0.012361914460680723 being:0.010097596398749334 for:0.009388164492904385 :0.00930537568905371 their:0.00894740846790883 :0.3961515415630284 +of:0.09129790931378902 the:0.07369883040827747 and:0.047842263382354346 in:0.04189055351593407 to:0.04045875475680249 a:0.03542341257202578 be:0.02020462051672066 for:0.01979292654746225 was:0.01760256398103379 at:0.017380150555488715 is:0.014984483003968216 with:0.014047653760730413 by:0.01374644383819499 :0.012670486581795598 In:0.01200961464556976 or:0.011563835749786333 from:0.011391516893522809 are:0.011273104484969465 that:0.010755276030689069 :0.4809655994608848 +the:0.16389452405787105 of:0.10705857112445052 a:0.06310767327015974 and:0.050370606869993104 to:0.0467735520792877 in:0.029980300731972144 at:0.022919241566067866 The:0.01642802792146007 by:0.016183746906877853 with:0.014686908558420045 an:0.013823382176939939 for:0.012830383787499932 .:0.012429269533881848 or:0.012412160934487234 tho:0.011340726074895714 from:0.011304485875982111 :0.010454392638808029 that:0.009835080220881158 In:0.007751844451722878 :0.365415121218341 +of:0.5555993519073427 in:0.09461222750252535 for:0.031118118315121925 by:0.029571816046069913 from:0.020261284105709283 In:0.018541079443276577 and:0.01781392736805051 the:0.015672864763198714 with:0.013420805353795992 ot:0.0090686172313817 to:0.008149594950409343 a:0.0076897513354531235 at:0.00608362444144843 ol:0.004586832486465306 after:0.0043099780557027895 or:0.0033587756924123384 on:0.0031408100419242605 :0.002784228385292592 that:0.0020682773040072273 :0.15114803527041198 +the:0.28131307651639004 of:0.12444590633655077 The:0.06061705899793692 and:0.05590696497028141 this:0.03988627375649426 any:0.03615232809654559 that:0.03533326429415261 in:0.034514174699116607 their:0.029375992805943895 no:0.023239740640829613 an:0.022971983528983404 tho:0.02046656724868502 his:0.02019695859353636 such:0.019783703340086875 for:0.017920684153821066 our:0.01685652023414265 other:0.016039501419874765 or:0.015973757815150317 said:0.015403949509066334 :0.1126015930424115 +the:0.3307904466423849 White:0.21536338417743076 county:0.03801064433693802 Opera:0.022418070975366737 States:0.02112423107573176 city:0.02050024284013547 Court:0.017750495804169444 tho:0.01517344876690249 The:0.011118830417861825 State:0.011039870280670492 &:0.010041439735117452 and:0.008290210873967637 of:0.007323763775256792 City:0.006521193889501734 late:0.0064386890869044125 School:0.006208459242719048 tbe:0.005930655348137019 street:0.005632349291510569 House:0.005133849246311615 :0.23418972419298184 +for:0.3515666383204435 of:0.168654003697635 in:0.16591689365205262 all:0.06483653709178988 and:0.03740717062295977 In:0.035121021246161746 with:0.02619871314655732 by:0.020115088124646262 the:0.01142402021514962 from:0.010701414993988446 One-third:0.010136107607299216 half:0.009296684307619148 that:0.0061888030917234904 or:0.006141246862410534 For:0.005403669342580779 their:0.005254665922085411 after:0.004603061871333994 as:0.004572195087280479 to:0.003993515300247516 :0.05146854949603529 +and:0.23230091233692393 that:0.08435801933213073 but:0.07694023833692899 But:0.031128007488991794 time:0.028309055258705685 And:0.02277653504099638 or:0.017436844950044838 even:0.0162375771578274 day:0.012700202986917349 especially:0.012283548373393313 ago,:0.012049018991424071 come:0.010659562121707577 days:0.008908031008210932 all:0.008782693924197072 ;:0.00841041840575967 which:0.008096103300441563 him:0.008041035746853841 it:0.00802821643432052 them:0.00794447867037068 :0.38360950013385364 +the:0.16807735899698817 of:0.10541662057906837 and:0.05138367848570702 a:0.04141865232648221 to:0.0385989743764065 in:0.026264864977736738 was:0.019530675665220657 his:0.018900421021236905 be:0.017373825006196972 their:0.015767721170721456 for:0.01557246589796783 with:0.014071419046630446 is:0.012922913111931644 at:0.012690452250034052 are:0.010702713108721902 .:0.010158075558988393 Mr.:0.009672788574483367 tho:0.009612591781990074 were:0.009549306361446321 :0.391314481702041 +and:0.0972746588398263 to:0.08689269813080654 the:0.06732763875338824 was:0.05851069711323966 be:0.047486337538536864 of:0.04381805158078064 in:0.034789946911404086 is:0.02988571427451747 were:0.023307908260037813 been:0.023249734422227965 are:0.023198358000757386 a:0.023184978276190857 not:0.019790621743663687 at:0.015543648716377761 he:0.013448811914402078 had:0.012150678555632444 have:0.011613111552793069 or:0.011233246760105783 will:0.01102481452835968 :0.3452683441269517 +the:0.18941070485687136 of:0.07390279899818201 and:0.06570082437222247 a:0.058469243590548274 in:0.024856988432496216 to:0.020873147706783023 for:0.018682659686982638 or:0.017866694612114674 that:0.017028564531941848 The:0.014409173905624696 tho:0.013452762362497402 any:0.012264366938919611 their:0.011649091646265465 other:0.010378896202069391 his:0.010181810078543935 by:0.009890952379887743 :0.0098587277099488 at:0.008693303303851414 with:0.008048251693860238 :0.4033810369903888 +and:0.07558940021936399 recorded:0.030196237618668006 was:0.028917161578042846 made:0.027969746247669736 that:0.027730098932509103 o'clock:0.025060522019555328 up:0.023026552239529506 is:0.020398277211376416 found:0.02003101797656537 placed:0.017482208134164214 out:0.016937164562539058 place:0.016819459500107596 interest:0.016629321966808677 him:0.016002796715253755 situated:0.01573420479581609 it:0.015128305982428461 them:0.014715943643665314 part:0.014646613000297721 interested:0.014450471929902294 :0.5615344957257364 +the:0.2547008268206831 of:0.11226121379667993 their:0.0761946433491716 a:0.06665435626257202 his:0.06554765578382403 and:0.06309502268704954 good:0.04482947453359299 its:0.025112228594639546 in:0.021041283236581755 as:0.020018900906188294 is:0.019782251410950552 this:0.018480507725297957 for:0.018359237763278514 The:0.018101993199967397 without:0.01736890986760129 an:0.01728187690670045 to:0.016391738096408367 with:0.01629711259068228 no:0.015908731865018937 :0.09157203460311142 +of:0.08566224639585089 the:0.07017973558764053 and:0.058063068514244066 W.,:0.039732061411070704 E.,:0.02772148940750282 at:0.024443150798501997 .:0.018074453191789366 to:0.01702557287676925 said:0.016750110336615217 a:0.01596023828123803 E:0.015944852625227265 W:0.015696716113653773 W.:0.014503956766687129 E.:0.011014346813129957 :0.010774741064351803 in:0.010268590399310027 on:0.0076799831071797855 south:0.007496337450003035 north:0.007032566308079541 :0.5249757825511548 +have:0.38406495154710313 has:0.240353610020901 had:0.18685075420063604 having:0.0508038059516635 not:0.028422244016429118 ever:0.010987480892474645 bad:0.009907031543789403 never:0.00804721164717339 lias:0.007739331211880268 already:0.005961166714541132 havo:0.005250481839204534 yet:0.004270732970515847 baa:0.0031278262707489465 haa:0.002890937864452284 always:0.0024947788153974796 long:0.0024483157637192727 just:0.0021181164413229384 bus:0.0018999849471985288 bas:0.0018943383809039642 :0.039466898959944555 +three:0.18336456590927588 one:0.1430913713342419 two:0.12501733749320199 four:0.09269931574497255 five:0.08277549460201811 six:0.04773734868743112 a:0.026733068126399008 eight:0.026043853677408784 several:0.02519145875918853 seven:0.019223139621134346 twelve:0.01895967037193734 few:0.015621149594467788 nine:0.013780189895971254 fifteen:0.012989863975249306 Three:0.01124140955224119 Two:0.010277947928474682 the:0.010206293023841179 sixteen:0.008821205740831941 One:0.007729955427362759 :0.11749536053435038 +a:0.2694317841338308 the:0.15892279103880924 is:0.08159030080958057 was:0.07243116804134941 be:0.044314242860785634 are:0.03989849856896115 and:0.029727036453060778 not:0.023441621483288894 were:0.022647917069409832 been:0.018283644984888058 of:0.01459913353659416 in:0.01183609203582731 Is:0.011362676593360451 A:0.010978907087470766 The:0.010805793052057156 his:0.010363836690104562 this:0.009726958533031911 so:0.009723253484427024 that:0.008959873630294213 :0.13995446991286808 +that:0.23101283089700067 and:0.1181139261411454 which:0.09685728163088873 when:0.09322339712883325 if:0.042374933469339154 as:0.039946748645569456 but:0.03656634991638624 where:0.03508813396485772 When:0.01983185881053582 If:0.017318593380310342 Then:0.015483729306252735 what:0.015260276233989315 whom:0.01505450971758085 because:0.013385682761251102 while:0.013149245401243011 before:0.01284474124952937 said:0.012771894536168872 until:0.011959902942389232 then:0.011010626032427192 :0.14774533783430155 +the:0.09105866921264213 and:0.07880712691589663 of:0.0753895094473285 to:0.046364607792383786 a:0.03986478817800094 be:0.03146888166745578 I:0.026087023242590893 is:0.021396691789977485 was:0.021301677448238392 :0.016474164854407083 in:0.015303287584304675 or:0.014294982095581705 his:0.014123055394741034 for:0.013760135979567299 it:0.013361873260697607 not:0.012938059229857236 Mr.:0.012745049691066702 at:0.012442086703023676 been:0.011507818334523919 :0.4303105111777145 +a:0.196706232145852 and:0.11456405787119339 he:0.10158835733105165 the:0.08747742241725266 I:0.03941653284573876 who:0.03848696576613837 that:0.036189765746565315 which:0.033565106670909124 be:0.029797515795819646 she:0.027345740048686396 He:0.020497371016720906 very:0.018690619742922233 of:0.01836592003144751 have:0.017948808490335838 they:0.015408871585872336 was:0.015362033604431741 had:0.014279523878774096 this:0.014174518291601736 his:0.013996978447687552 :0.1451376582709987 +and:0.10315432656047131 was:0.05665133716092892 time:0.04327916426576222 is:0.030836212253655834 that:0.028736054645900434 be:0.025516620242767834 years:0.024200225266658465 are:0.023831639109974625 were:0.023652674764624647 feet:0.022186704270949306 those:0.0221130371428978 him:0.020261837405070884 it:0.020021999480463976 year:0.019016091885862365 week:0.01834563343546143 here:0.018235027564731904 day:0.016977305065538274 held:0.016586904856373166 all:0.016573535693499793 :0.4488236689284068 +was:0.2421221727600157 be:0.2194835942992867 been:0.08311304218559973 is:0.07038267611454192 were:0.06576895173077282 are:0.03751739538372175 and:0.03547296841665548 being:0.028272927277534957 had:0.028247336245733102 have:0.02772592176384256 has:0.02342161193384958 bo:0.01455199848282885 not:0.013214622077057684 Is:0.011078084762176818 he:0.009249188739803954 then:0.006912440986204906 it:0.006026490133323182 so:0.006017646775799409 waa:0.0043189995536283485 :0.06610193037762252 +the:0.16591150108994457 and:0.10186031971592062 of:0.0646570783468065 a:0.04992197488183059 to:0.029340911755954262 in:0.016519444930088088 that:0.014992379539541951 The:0.014864379836778494 his:0.014725690146059314 as:0.011938637963885763 or:0.011776966350242868 at:0.0103648660407905 :0.010067583595856354 their:0.00994320519584599 tho:0.009243026496557099 was:0.008487297652310365 .:0.008415033296125297 be:0.008213679649977698 by:0.007748560821721681 :0.43000746269376194 +of:0.29665391879253283 in:0.13713795179425214 with:0.06964525296774121 to:0.054609179064807965 for:0.05002683768032392 and:0.04885096211381528 all:0.03650702348130779 on:0.03644693618657676 by:0.032506447052007496 from:0.028926657404529866 upon:0.02572179195676379 that:0.02143357534340364 In:0.01588388973187952 at:0.015113255510110411 through:0.010559374179013727 into:0.008840463335370656 after:0.008519609481816296 up:0.008510918491330342 is:0.008249924490150422 :0.08485603094226593 +the:0.10785936344840133 of:0.08041832059700071 and:0.06606829444959902 a:0.05643038308012388 to:0.05535280337717975 be:0.02853289252669998 was:0.027105035006482578 in:0.0247654133565907 at:0.015793819366212335 is:0.015728651725315592 :0.013428133240815843 for:0.01204466748614453 been:0.011592220107946525 or:0.011211388204423864 are:0.011026362473945926 his:0.010811659072250212 by:0.010680387155496561 were:0.010201582804998114 from:0.00959972225656998 :0.4203489002638025 +they:0.09337476713952701 it:0.08460682062402158 and:0.08013061905955558 he:0.07582569863612856 I:0.07302366042971546 you:0.0602499699916625 which:0.05254276171389082 we:0.040802059403587054 It:0.04061888147169895 that:0.03856984288837318 who:0.031245786286744393 she:0.019629333733596876 They:0.017820170365696233 He:0.01654437071886737 We:0.013104748472854446 You:0.012036725831249769 this:0.011927020590772747 as:0.0116401645168752 but:0.009854246724299137 :0.2154523514008831 +more:0.24260211720507327 rather:0.14421711528877448 less:0.0822835922755673 better:0.05644023553414351 and:0.02521155385327172 other:0.01765567337354186 worse:0.016669074191964926 it:0.015782487983872457 greater:0.013552093791415771 work:0.01084617350279047 More:0.010321892020144571 higher:0.010036726274823356 money:0.009758252588856438 men:0.008476212531984183 time:0.007945494335246552 country:0.007846020423983044 lower:0.007773819034149867 larger:0.007697704180722742 faster:0.006889698875555505 :0.29699406273411805 +and:0.08995317707915026 to:0.06844710404109794 of:0.04605142056172993 the:0.04074574508561307 which:0.02479116931334353 that:0.023764822140213245 re-:0.020841117231308055 in:0.020803825395358622 for:0.020278423301550053 :0.018417753428486977 not:0.016860793136637672 con-:0.016444405871234195 is:0.014386481772210856 or:0.014080680914153714 be-:0.01352268143271276 I:0.01317002660943805 was:0.011429878269381662 dis-:0.011196807025842847 he:0.01113106290024311 :0.5026826244902934 +the:0.35475813488416985 a:0.2859931422862819 tho:0.028863280300996465 The:0.027127702319042084 this:0.019429077969489505 present:0.01792022923432653 one:0.01679916137123207 whole:0.016258592681749798 first:0.015211054183027439 tbe:0.01385829844215045 and:0.011897460277090396 his:0.010464346666035103 nervous:0.010232674370542701 school:0.008745876307273184 or:0.007410729419921036 A:0.007266587176478692 other:0.00714641136093248 any:0.007134071052835699 great:0.006912488290199698 :0.12557068140622485 +of:0.2749023008322992 to:0.1130591428210291 in:0.11110322662734091 at:0.07340741250574558 by:0.050697722951652424 from:0.041356767907913074 and:0.036872551317667396 for:0.03525806886435383 with:0.0344879959399346 that:0.028522236171123854 on:0.024029923066106133 In:0.02155898124812269 under:0.014931069967405439 upon:0.012636845849161204 as:0.011977664287370593 over:0.010244859928294955 all:0.010226868066846233 through:0.009756986817881239 into:0.009499281299046692 :0.0744700935307048 +of:0.08644856495561615 a:0.07242974649691468 and:0.06499935212717402 the:0.055282776946159025 to:0.047658831575697974 was:0.0277851303659128 be:0.01975636010046126 is:0.019565494825773477 on:0.017827565615949482 which:0.017040188996357626 in:0.01586927403428282 :0.01412304853945702 his:0.01383151080491838 with:0.012980496728159123 as:0.012788739029218597 The:0.012664920296495897 that:0.011741284139510515 at:0.010314709554600648 he:0.010279760095468594 :0.4556122447718719 +one:0.015552536992080472 more:0.014252271697624306 on:0.010631301787611593 day:0.010222750824534239 two:0.010216157614982159 person:0.007504694644314241 in:0.007364820929323563 man:0.007179188731169107 law:0.006205362369136604 action:0.006166303509128973 and:0.005659786788634644 city:0.005177234665142273 three:0.005130416479837977 State:0.0047265097104810415 to:0.004696031397422901 ten:0.004594585978494318 of:0.004463781172886088 town:0.004231879326219736 year:0.0040256313925199315 :0.8609987539884558 +and:0.03462975788226776 :0.03348689665992665 of:0.032063726445135145 the:0.027110422949118987 which:0.017548221599781064 that:0.017119950294365822 above:0.015802716358505706 -:0.014954756206990593 .:0.01406420187580652 to:0.013143058092478104 on:0.0125096080786622 is:0.011967606071972052 or:0.01125277505591599 I:0.010413762361010584 by:0.01030624442713708 Mrs.:0.009582087562780854 in:0.009289451819199048 was:0.008972898148941496 :0.008853475387414444 :0.6859283827225899 +of:0.09129790931378902 the:0.07369883040827747 and:0.047842263382354346 in:0.04189055351593407 to:0.04045875475680249 a:0.03542341257202578 be:0.02020462051672066 for:0.01979292654746225 was:0.01760256398103379 at:0.017380150555488715 is:0.014984483003968216 with:0.014047653760730413 by:0.01374644383819499 :0.012670486581795598 In:0.01200961464556976 or:0.011563835749786333 from:0.011391516893522809 are:0.011273104484969465 that:0.010755276030689069 :0.4809655994608848 +more:0.3025581312188659 less:0.11361229550157692 better:0.055726483044737526 greater:0.04783512755252839 rather:0.04774900978695876 worse:0.025962610454381 larger:0.024338933013280092 higher:0.024145264729856467 other:0.023583406218844298 lower:0.01740816105916675 faster:0.013320113341121102 and:0.011850589620021735 longer:0.010168519541118245 More:0.009644876926096519 smaller:0.00828514368718763 stronger:0.007941849956989464 moro:0.006774069717768751 earlier:0.006379423643939423 cheaper:0.006312927131776862 :0.23540306385378426 +made:0.08138432053614224 and:0.07456428550521059 or:0.035240000730155666 that:0.029751189087814146 secured:0.02819757135481087 it:0.024373959658075303 them:0.02031091830741789 done:0.020155639465895183 used:0.01871081668950983 taken:0.018275407709442085 him:0.01697442480119229 required:0.016839643515007222 ed:0.016589746062462496 not:0.015477359681508568 only:0.015316389412916298 as:0.014319945398362257 but:0.013958864803422955 paid:0.013942000969394316 given:0.013748537656201109 :0.5108689786550586 +the:0.2483013371171908 his:0.19603667056105772 a:0.1004845322733275 my:0.06601002386384627 her:0.06464943450468269 and:0.02856918307891982 your:0.025161894520962045 of:0.024806044668116877 their:0.020653451261169145 every:0.019646148025477143 to:0.013787704952617656 our:0.01272492055808227 tho:0.012455331108353231 this:0.01074851576226119 old:0.01069726291247458 bis:0.009844039021672966 own:0.008541671745793513 said:0.00769482292510429 The:0.00676871323581168 :0.11141829790307861 +the:0.16903920960999017 of:0.09636393869183471 a:0.09528839523508904 and:0.07495767085148612 to:0.07059119887098368 in:0.043512536777606914 at:0.023817222858920538 with:0.015212851649641928 The:0.015035057126375076 for:0.01467757776594958 their:0.013286884828237963 an:0.012812023452843357 .:0.012328072670931679 tho:0.012325610159221137 by:0.012004347092984173 his:0.011933090307329 or:0.011442162245325552 In:0.01053255517454631 Mr.:0.010269882024241016 :0.27356971260646207 +and:0.11414606894605121 in:0.08701040019181122 of:0.08397931574925646 is:0.08199174793708076 are:0.07428062562736444 was:0.07176627481538096 after:0.047071423732742416 by:0.045437338713233806 to:0.03382673895669908 In:0.03223876038840792 that:0.027457534764327888 were:0.02657817211264218 with:0.02627104426344003 the:0.02055805668450656 After:0.01925753052063508 from:0.01800603958902218 without:0.017653746131663775 on:0.017638373887112018 am:0.016482266276264083 :0.1373485407123579 +the:0.10128520720375302 of:0.07161760352778292 and:0.04842252631216974 to:0.04807731645594155 by:0.023773444726287472 .:0.02169611825198636 :0.0176062857754123 Mrs.:0.017192497920762686 on:0.016872231002278103 in:0.012952035133637243 said:0.012915461457843606 for:0.01164000116944598 was:0.01121703942092654 -:0.008478853907943434 were:0.007420990841951341 The:0.007352826925451847 girl.:0.007330345230330716 that:0.007281854289390838 Mr.:0.007278295949597356 :0.538589064497107 +or:0.16372039288158802 the:0.13020807634341877 of:0.10141701959523175 and:0.09897409414585828 in:0.05592161977365505 for:0.04470924201071249 to:0.030485339762060602 about:0.024897952758074722 by:0.024027256318415322 with:0.022278798373353437 that:0.01710716671423374 than:0.017099956705936007 In:0.01572336125797143 from:0.014176784429042064 but:0.013698762116217032 on:0.01261752070760057 only:0.012334807603369205 some:0.01165181972614504 a:0.010684676389511538 :0.17726535238760494 +and:0.06454739073657131 demand:0.023313300174744492 ready:0.0192991955467307 used:0.018559068069203856 time:0.0167973135366693 not:0.012889415712033305 vote:0.012868664167591082 it:0.01277775949265748 candidate:0.012059490274945432 him:0.011492660117416436 them:0.011389360230310022 called:0.010603763162339089 made:0.01030049958521204 up:0.009942829375404135 was:0.009875709402481388 as:0.009516893763303088 patent:0.00929908628672026 or:0.009178704268878403 but:0.00882338719685127 :0.7054655088999369 +It:0.17181427730439153 it:0.15938785957608326 there:0.13521509621828226 This:0.06852729606501608 There:0.062450287991737394 this:0.0545001231682194 that:0.041442490593360505 which:0.03315628105981617 he:0.02119563308790309 and:0.02042751855880573 He:0.01640707498225634 who:0.012257767348261814 That:0.011752646243801988 Here:0.008425735354492227 what:0.00712428176606741 one:0.006172579880207903 as:0.005253337765507619 she:0.004782860265039994 "It:0.004049248421217905 :0.1546576043495314 +and:0.08759303824427918 as:0.08552826723620029 to:0.048926016442576756 that:0.04731013273501451 be:0.04031911415695006 it:0.03892946723631808 is:0.03688060237052281 not:0.030894597723029084 was:0.030670226507805324 them:0.025993675806352343 than:0.02436051412564782 so:0.02388711126159665 can:0.023318414935646885 for:0.020879837757774872 all:0.020053027316623107 of:0.016932123939296228 more:0.016529744365767037 but:0.015117057191079985 him:0.013983723857648003 :0.35089330678987096 +the:0.11919516938815296 of:0.07230453158552728 and:0.05781056740443249 a:0.043018564803886335 to:0.031305092790907506 in:0.020848713353460488 at:0.014270110001066288 .:0.012526810245749479 :0.012413283442322082 for:0.011719122709941797 by:0.010808400946589808 or:0.010404172990115616 The:0.01003576004804544 with:0.009811868184449042 tho:0.009295902015355835 was:0.008924239095331684 that:0.008672304223433876 is:0.0085591147338948 be:0.008335143826716943 :0.5187411282106204 +both:0.028066741044527867 them:0.017413132822188083 it:0.015922203274030558 the:0.015420692647659622 feet:0.015367511914299949 well:0.015013211997683934 men:0.014916956104452617 and:0.014271598104205436 up:0.013377844685120719 him:0.012593962832381463 all:0.011050804291529437 land:0.01071024457484357 work:0.010030457133664447 lots:0.009581854838243177 made:0.009581352283592874 of:0.009354697912613738 year:0.008671994097877667 :0.008552357739018327 tion:0.008333267816188141 :0.7507691138858783 +is:0.1220213013296898 are:0.10698729490250464 and:0.07728720652923586 not:0.07100455215977187 of:0.06650046897200368 now:0.058643177318535994 was:0.051607162082088084 as:0.04156460600457074 it:0.024926772948329196 the:0.01831344360020517 were:0.018078220205574768 after:0.016378674951899434 Is:0.015776775038762146 time:0.015089762587200335 by:0.01352017460453868 without:0.012962805571505105 be:0.011752666988931364 but:0.011281975501122594 that:0.010995630324194235 :0.2343073283793363 +and:0.12090203908963824 be:0.06100108816832654 was:0.05211141558718879 is:0.04212353216769586 to:0.033870616599750214 as:0.0266278310688507 been:0.025217536285727055 are:0.024477436491442392 or:0.02380417532607805 from:0.021947302554557395 for:0.02153355964192868 that:0.020902685208980462 said:0.019151341448350182 were:0.017589725973081956 not:0.017431982961754577 in:0.01538237171190666 Is:0.014452668518663359 would:0.013867476670800839 of:0.012944698213305822 :0.4136605163119722 +the:0.0815677777521797 of:0.07408530258466682 and:0.06926404923759807 to:0.05620350542164006 at:0.05384325395143937 a:0.03222598524626093 in:0.02906878171865721 or:0.018708226246404846 .:0.016914735175984838 for:0.016676382760954702 be:0.011992905892880294 No.:0.010631286019430263 from:0.01038890163065805 :0.010343182878266063 his:0.010194112617412663 was:0.009522734733246283 about:0.008680453822759029 is:0.008132309120214684 per:0.008016494131970878 :0.4625396190573753 +it:0.25598122275105517 It:0.1696849365968531 which:0.05806910113931801 he:0.05530460280072987 that:0.04577473297589012 This:0.03744734749577513 and:0.03044344694719734 He:0.022929418075144745 this:0.022901205094221538 there:0.020901495337946337 who:0.01972501444877289 what:0.011409403413073818 she:0.010003129808603791 as:0.00982465560435275 man:0.009652169338456786 but:0.007735180764912743 work:0.007697753294838829 There:0.0065884298287340794 water:0.006409781188269471 :0.19051697309585347 +of:0.1064111657394712 and:0.06189803199742663 the:0.061214738131072234 to:0.046767588658820816 a:0.030925892873176947 be:0.028436892159113936 in:0.026108484147942524 was:0.02489479277275801 on:0.017923934813552117 been:0.01686793591707648 as:0.015919110268756212 be-:0.014027980543130522 he:0.013348920322294223 is:0.01333436806722912 or:0.012789689707676487 for:0.012728006187378014 are:0.01263399408314043 by:0.012314981223230093 that:0.012293005338272336 :0.45816048704848167 +the:0.12726855910616955 and:0.0892959780159441 of:0.062229337879632314 to:0.058292991969480845 in:0.037889522208997196 was:0.035486090111862774 a:0.03277831520841599 be:0.02993909980507852 is:0.021492638467572805 been:0.016319288425974923 are:0.01622912479566914 were:0.01571120940653339 at:0.013800451447349702 by:0.013390998935139781 his:0.013046404338315144 an:0.011587498063993411 he:0.010436524486303292 not:0.009967845652912184 or:0.009888058570455908 :0.37395006310419904 +and:0.0869743300955074 that:0.03556749079984914 was:0.03234216042620933 is:0.027693965892075973 work:0.02471023929206034 put:0.024467894236185277 them:0.02388298412011947 due:0.020693316654769242 out:0.01840244487859098 up:0.017964029537353113 interest:0.017582995770353042 it:0.01756871478698917 placed:0.017207821071143894 or:0.017104637067828093 be:0.016985386675727084 him:0.0160984842726688 down:0.016014263986935885 made:0.01579353250668994 are:0.015452259040421084 :0.5364930488885228 +the:0.6740454331915042 The:0.05453496881083241 and:0.044213061003597925 very:0.033882609860790946 tho:0.02897020701608585 as:0.026427342973326936 is:0.015006703500319001 are:0.012333621582770233 a:0.011099091245308813 tbe:0.008782653655696958 be:0.008471372324321899 by:0.006358238276709936 an:0.005975829575547314 was:0.005615507706432617 most:0.005262151850386736 or:0.003722868559124549 his:0.003586908809514123 their:0.003518756389765169 of:0.0033834417612813813 :0.04380923190668299 +the:0.15888489848787077 of:0.10699397621361469 and:0.08639565097306734 a:0.05305230481606703 to:0.05231383081485678 his:0.03115916646424641 their:0.0280687209884888 be:0.027291084841198205 in:0.025540654163341062 was:0.02151296707537194 at:0.020729478990629494 is:0.019628223240764655 for:0.019201511473783586 or:0.013957385665255664 this:0.012843667100693729 its:0.012454308602223643 not:0.011853631206141073 all:0.011311377251176188 with:0.010889032585787148 :0.2749181290454218 +the:0.18730777472011154 and:0.10170231902416992 of:0.06701790923099957 with:0.05891076815389847 to:0.055150114854924645 an:0.04863991050747618 his:0.03398149320236904 a:0.03143816151053653 be:0.029141108490520484 was:0.028559304893658283 The:0.0281913972555902 had:0.0254863845495474 have:0.025305619826989565 by:0.023652497830592454 is:0.022094215421084754 for:0.021919400125754836 this:0.020405590653737954 no:0.020124264623153747 their:0.018855383332041443 :0.15111638179284298 +of:0.4288280206655963 in:0.07550068428209242 that:0.0534004266589644 to:0.0497435457863459 for:0.04200624651561214 and:0.03644760532003738 all:0.03642601623496853 by:0.02885855539979331 with:0.028292609550459494 from:0.02357085876411044 on:0.019506231888604005 In:0.015391803460841071 as:0.014675457484520909 upon:0.01089067691595807 but:0.010785954150181985 which:0.009871686962657973 at:0.008329984711955516 ot:0.008052108314384677 All:0.007587606488429654 :0.09083392044448589 +be:0.16856437073746056 was:0.14963538177932642 been:0.083634612978302 were:0.06905455852134812 and:0.06823960614939502 is:0.06111812261362296 are:0.05401082663282744 had:0.030461075109905842 have:0.029540679639922785 being:0.023386323012774757 he:0.021996198527164487 has:0.01953834615992097 then:0.011356202786832876 not:0.011152613374388488 now:0.010575375458943636 I:0.009675983260215895 that:0.009097633814743405 who:0.008822283880752813 Is:0.008581517899043283 :0.15055828766310822 +one:0.10757504863160208 out:0.06393072214258595 part:0.05345953864888265 some:0.04657778396619151 time:0.032653763285528395 account:0.0298978741893603 all:0.02673860913095395 and:0.02324876597992745 that:0.02275453097379819 because:0.021318504223257338 portion:0.02010071224985526 side:0.01926992014112468 any:0.018918137101655273 front:0.016609963575485047 many:0.016563310866764772 end:0.01592265492673931 day:0.015255366376758018 members:0.014811614297040794 result:0.014486922106154784 :0.41890625718633423 +the:0.5170079233417358 and:0.07129150949617293 The:0.0628290754947896 a:0.06055149789177789 tho:0.026778314853808764 tbe:0.012942683464461225 most:0.012074140954797481 in:0.010531675030983562 all:0.00885920870299464 qualified:0.008623534400903434 as:0.006724745187574147 A:0.006593183513187448 of:0.0065739832713963 or:0.006332915682540408 other:0.0062479441149042225 are:0.006230598938305945 some:0.005925741906775368 very:0.0057581079155096925 those:0.005484040527551545 :0.15163917530982954 +Secretary:0.03868547371854437 out:0.03325268786009892 one:0.026998546934370142 tion:0.022340744906782103 that:0.020223758673204417 line:0.019853839751350747 State:0.01829503760975266 course:0.016999164198703016 favor:0.016830436999801746 quarter:0.016485575502750944 part:0.016273898308736913 notice:0.015700704359035356 day:0.015088125138966174 and:0.015041567560420797 city:0.014374404075010795 rate:0.014342910393402013 state:0.013962375561003096 end:0.013905005480976448 lot:0.013281928677607871 :0.6370638142894814 +the:0.11919516938815296 of:0.07230453158552728 and:0.05781056740443249 a:0.043018564803886335 to:0.031305092790907506 in:0.020848713353460488 at:0.014270110001066288 .:0.012526810245749479 :0.012413283442322082 for:0.011719122709941797 by:0.010808400946589808 or:0.010404172990115616 The:0.01003576004804544 with:0.009811868184449042 tho:0.009295902015355835 was:0.008924239095331684 that:0.008672304223433876 is:0.0085591147338948 be:0.008335143826716943 :0.5187411282106204 +the:0.08207490295216716 and:0.08138218340382634 a:0.06143212141100526 of:0.060485146209990265 to:0.05487621642425282 for:0.026222177284173045 in:0.01903406915487042 at:0.016713218789872718 an:0.016344191293745217 was:0.01408622122717318 be:0.0140856724495451 his:0.01307581600718756 will:0.012692732449029508 or:0.012553001595584324 is:0.01145255629916754 as:0.011432111975229364 that:0.010974241907116853 :0.01055868806304721 with:0.009956575284186489 :0.45956815581882965 +the:0.29623575033760824 of:0.0803269380591978 his:0.0640622970792522 The:0.052736667227740716 a:0.04743571518675021 and:0.047044003670792915 this:0.04535050449690396 These:0.03438313024535047 these:0.029467979615314156 their:0.028128064377475885 tho:0.025824369870211212 whose:0.02540712325941484 your:0.02420909055590296 some:0.02255336883721666 or:0.0223947983591425 to:0.021483915929992707 my:0.020617207234209043 that:0.01948175281921683 will:0.019430310496996173 :0.07242701234131052 +last:0.135367617511838 the:0.13038186570023094 to:0.11969218966078153 at:0.09320544852132209 of:0.07898358068015338 that:0.05300437752634021 a:0.04103484199196158 all:0.036338133520698 and:0.03546605889605162 Saturday:0.02956437041565283 by:0.02570982740061128 for:0.023939699090251006 this:0.016384717031140302 after:0.01416926322631954 every:0.012217959240189287 At:0.011711005229280437 Thursday:0.011495053928941047 which:0.010373896318001868 day:0.009622196505437535 :0.11033789760479751 +and:0.3684230348394785 He:0.04013133699291293 that:0.03710118189338863 he:0.03212103872042279 I:0.020475112263527977 as:0.015187185834799014 but:0.014887000614609886 why:0.014267088680699893 it:0.012879244237854671 was:0.012612930079307543 they:0.011583132091770545 And:0.011225294733024551 who:0.010721797955495112 we:0.01072000987872017 They:0.010277139918001197 which:0.010099591122278683 if:0.009803116290469515 or:0.009644815564707877 men:0.008127610909176887 :0.3387123373793536 +two:0.062411832644105616 four:0.053206745427108966 three:0.04745105906573132 five:0.04511784760869052 six:0.041692252972366624 40:0.035823607389579154 25:0.034137673714002656 15:0.029200491581226933 ten:0.027002373972958613 20:0.02390527508284671 several:0.023690340159254177 hundred:0.020604398823005042 thirty:0.020005919493944212 the:0.018857699128105056 seven:0.018175337253240956 30:0.017449163770286012 an-:0.01738243330468426 eight:0.017006723680683435 26:0.01630355607255722 :0.4295752688556225 +the:0.40147462708222087 a:0.10911747383816277 and:0.06774892076519354 The:0.056513767852573116 of:0.034985117888056624 his:0.030796542605532166 tho:0.027871188439959536 in:0.02176416391001177 to:0.01920065913233815 large:0.0169424545594619 any:0.015576752033479923 our:0.013686268708224746 many:0.011410860379857425 some:0.011076514306799795 this:0.011057650560695407 on:0.010973151325316769 that:0.010575502636982573 tbe:0.01030601918950064 her:0.009545633986352664 :0.10837673079927963 +went:0.13350876104147463 sent:0.09834143368055667 go:0.062342507822700254 set:0.05850281953670697 turned:0.05741794622685519 come:0.0495310452083662 came:0.043763335610167806 pointed:0.035530294763281144 called:0.03373618205778559 carried:0.03273504159634591 it:0.02764938379835728 started:0.026337877557961176 them:0.024693469294377157 brought:0.02466624546018492 going:0.022420755572411636 turn:0.021696615652063163 taken:0.02120184149096737 him:0.018026644129287242 put:0.01800977818487185 :0.18888802131527782 +on:0.2033575052024114 at:0.16179410424788374 to:0.13493398236934326 of:0.13171275715194974 in:0.07173446762965231 from:0.06625116674885853 and:0.022973820997895772 by:0.019196577409246237 along:0.018163912511039704 On:0.014867903041079605 that:0.014547098231861002 In:0.014544001044312228 with:0.014274394309510989 for:0.0139922887022907 into:0.012927599510524301 At:0.012630664944737156 over:0.012615616993111298 upon:0.011908255647249765 across:0.010595931607139246 :0.03597795169990304 +of:0.25823296827464 in:0.1985332939261666 and:0.07943874645088857 In:0.07688231581028752 for:0.06505860944708503 to:0.06187753061718232 that:0.03009730473289421 with:0.024990634421774984 as:0.024404435415093458 by:0.02393636430357419 is:0.01716107533763944 or:0.015754422955897615 from:0.014010156973207831 was:0.010997898024968302 at:0.009243346065380315 are:0.007303431276602612 a:0.005088194915189928 all:0.004696508137635753 the:0.004571063398221179 :0.06672169951567015 +provisions:0.0679938503985306 copy:0.06201617447249093 date:0.05159752313646957 part:0.050661532655167846 one:0.04272232046411394 out:0.039198262926626565 people:0.03688333605300589 publication:0.031622932748407565 members:0.022148687792528047 tion:0.01953442712364951 laws:0.019086435714135187 result:0.017976916451795253 object:0.01720022560087386 portion:0.016216616046388216 that:0.01583665345861985 all:0.015799046403021585 member:0.014650050293503455 passage:0.014513299284273402 purpose:0.01444493434085836 :0.4288967746355404 +the:0.39749834532651884 a:0.07520030034269234 and:0.05540858759821703 The:0.03273515726769502 tho:0.030061875542463562 of:0.020144331424922633 tbe:0.014929647509541684 in:0.014268129706664795 or:0.013333166761078447 .:0.013287381914101323 an:0.009000188755386574 to:0.00880680429595084 :0.007943763822197133 Mr.:0.00773879605474787 by:0.007328417831573476 as:0.005922572098978465 for:0.0047526933692942485 that:0.004736121968310169 on:0.004594595720579333 :0.2713091226890862 +the:0.17027190784407714 of:0.10585557835912704 and:0.07355927771906935 to:0.05486905984958157 a:0.04543746377447453 in:0.03128555052933153 be:0.028704485173100775 was:0.02350529800142253 is:0.02215549335554494 for:0.02077556258358175 his:0.01804639098945333 or:0.016335100594594944 their:0.015847999621030492 at:0.015526727957625254 been:0.011815834631173878 are:0.01139058447814694 this:0.010362020528084328 tho:0.01035635773045807 its:0.01000473355720393 :0.30289457272291764 +has:0.11571376142678604 have:0.0925590605998014 was:0.08178697632318542 had:0.08091603075187238 is:0.050816942387492056 and:0.050373994220893684 he:0.04196247769284477 I:0.03855790092368873 than:0.033612574394262844 it:0.026501660175679388 what-:0.023908894691959757 that:0.021077403085471312 as:0.020709077992929762 be:0.019084977735158187 you:0.0157568962374832 been:0.013854443633573434 the:0.013722163750837358 were:0.013423324503073082 are:0.012327806587996511 :0.2323336328850107 +the:0.11466259543909774 other:0.10028607002405818 either:0.07043783495325033 south:0.06885231223223959 one:0.06422148991461438 east:0.056935899049851336 west:0.04901527166186438 north:0.04531627431058146 each:0.03501170112590246 out-:0.030471108605273127 and:0.026939883514081248 his:0.02594117877949874 left:0.024327950631066464 this:0.02425625476785055 of:0.020455629932248823 opposite:0.019961036072894536 any:0.014795906055470383 that:0.01383174596688252 right:0.012691134645288 :0.1805887223179858 +and:0.07241378045111592 know:0.059879314138148294 was:0.04841838969721425 all:0.045339202921041356 bring:0.04311105430533629 nothing:0.04156512495368836 is:0.037856045307177316 talk:0.03649230457870598 brought:0.03183596191686223 of:0.02927878647032346 talking:0.02714824686943081 that:0.02659508622130801 thing:0.02595213820601018 it:0.022521266129449265 had:0.021986274010555123 something:0.02184859871296393 say:0.02165726862848095 are:0.02158473893321373 anything:0.021297169694692846 :0.3422192478542817 +was:0.1426444203189124 be:0.12945672080594256 and:0.09958687508833722 were:0.05651323714115001 been:0.05539570811131729 to:0.05276968997908896 is:0.049914213418933075 are:0.04357844356134876 a:0.030281809017397243 being:0.02392498653474984 not:0.023493743443273325 the:0.02316624312155237 so:0.023084425671928553 will:0.021426294064174456 would:0.016556028045593283 I:0.014247938947346477 now:0.014009489198842538 very:0.012511517261231415 Is:0.012459356807546822 :0.1539788594613334 +of:0.12722532730017552 to:0.10215684469928865 and:0.09802568412366455 all:0.07318156375216682 in:0.06692311616657928 for:0.06567340358892722 with:0.049996035628717614 do:0.040006940072341256 from:0.03982173954249421 Besides:0.03624646491918613 by:0.03441872009267353 that:0.027196075609923275 In:0.027155130461238675 than:0.026738625541215498 on:0.024825454428045922 at:0.02231512612395452 like:0.019153342793435713 After:0.01692338382178808 after:0.016220134588634038 :0.08479688674554949 +the:0.5578214847021977 Mississippi:0.03359247229987707 Missouri:0.03139444398860179 tho:0.028985412160351644 of:0.022653052520851986 Red:0.016555278857729727 Potomac:0.012840646580259955 The:0.012576570989713395 tbe:0.011182211917874023 Ohio:0.011168597381448608 his:0.010404902410952108 this:0.008608109284870493 our:0.007925985492660282 Snake:0.00746130128500709 Republican:0.00643051367704286 their:0.006275037030210286 a:0.005735899208001968 Hudson:0.005482697423836621 her:0.004502923617208559 :0.19740245917130383 +has:0.3317808603920072 have:0.2605068085315863 had:0.1774398006401755 not:0.03923939516205166 having:0.02354769957304777 never:0.015030786352298138 always:0.014745973476063318 bad:0.013044413435335887 lias:0.012515542167512871 ever:0.009537885268406678 already:0.006504784237128392 there:0.006372565080023063 havo:0.005940849295815575 also:0.005907198139978206 haa:0.005756336966219746 baa:0.005500023710854599 yet:0.004596675519307518 just:0.004250996801778515 bas:0.00373500437137474 :0.053046400879034235 +of:0.11872867222751884 in:0.07290951340995491 to:0.04319428082866954 with:0.03662459873008454 on:0.03253236695373369 by:0.030174480975536686 from:0.027285063281096915 and:0.02199451331561365 upon:0.01691618721243304 for:0.016620979224610612 at:0.01599537194664067 In:0.012889918104307965 under:0.00971926658274601 through:0.008410779127205253 that:0.008162263499682968 one:0.005518904154280759 into:0.004940998371031913 during:0.004496057350773057 after:0.004391780579395326 :0.5074940041246837 +J:0.11870194471126486 W:0.09565879138340047 C:0.07570331120554365 A:0.06674782574553563 M:0.060907670748348325 E:0.05856245483523734 S:0.05821404493139784 N:0.04893321274479029 H:0.04580257143321362 P:0.0410437605459769 F:0.03926190986758533 B:0.03265225478081531 R:0.031975831085093845 L:0.027049365082559954 T:0.024980557120127072 D:0.02288056585684043 G:0.01869198277692433 O:0.01716061049256126 K:0.01613571082201891 :0.09793562383076464 +of:0.2216666977158274 in:0.11315600054577736 to:0.08451677747063276 with:0.05459457701357842 and:0.053201116550581094 that:0.048869351283334764 for:0.04652564665971443 by:0.041641114507012474 is:0.04019376283231503 on:0.02366070229647344 if:0.022519903961537052 from:0.022323076944866193 In:0.022136130820530876 at:0.021946950287511334 as:0.021107646490652048 make:0.018236510235099947 have:0.016692761579005615 upon:0.015762905052677117 was:0.014657954093019758 :0.0955904136598529 +the:0.1655047962982279 of:0.13285544104180064 a:0.07750963836320453 in:0.0741857721188069 and:0.051008409776832284 to:0.04052275319931267 that:0.02600060352825212 on:0.02437108263350353 for:0.020942919761478048 The:0.020325161056737352 by:0.020166518834473464 In:0.02005103340794995 with:0.01737746887391216 from:0.017245270827739502 which:0.013844346142116484 tho:0.011814528841163387 at:0.011358627840966603 an:0.009122193488199084 or:0.009025521435403078 :0.23576791252992033 +that:0.1378566515392181 and:0.10978876607235699 which:0.08971442991520423 when:0.06842558118833664 w:0.06397253711717953 as:0.05908478539693335 to:0.042706624287120735 but:0.027296364250989122 if:0.024832328002275944 of:0.019074314317599757 will:0.01731115423124769 where:0.015398402815887282 had:0.01409951849440594 can:0.014012016023866782 I:0.013143669276889244 could:0.012562044596332159 may:0.011683047371814076 should:0.011462732161747253 whom:0.01102002497634757 :0.23555500796424758 +and:0.07558940021936399 recorded:0.030196237618668006 was:0.028917161578042846 made:0.027969746247669736 that:0.027730098932509103 o'clock:0.025060522019555328 up:0.023026552239529506 is:0.020398277211376416 found:0.02003101797656537 placed:0.017482208134164214 out:0.016937164562539058 place:0.016819459500107596 interest:0.016629321966808677 him:0.016002796715253755 situated:0.01573420479581609 it:0.015128305982428461 them:0.014715943643665314 part:0.014646613000297721 interested:0.014450471929902294 :0.5615344957257364 +his:0.2468213794132493 my:0.1788722669293793 the:0.1323538285085278 their:0.08250110558411067 in:0.03316185405322623 our:0.03278152810622872 her:0.03216377501942426 your:0.03002359477585677 of:0.028716366230539508 public:0.027193269776960786 its:0.025844563201924322 bis:0.017192703686557443 a:0.013195850768816538 this:0.012521215326758357 and:0.01224724064377447 no:0.011518157249586313 In:0.009399537549911022 from:0.007891725998317355 for:0.007578489183012889 :0.05702154799383797 +and:0.1191216656925811 but:0.03420211655285565 that:0.03156773372819713 was:0.029900418204912575 arrived:0.024431581418645414 is:0.023823712058325803 men:0.017794856353336466 are:0.01723747778283843 But:0.017084390604878607 so:0.015114243954894538 w:0.01483348844189008 And:0.014599953201314238 came:0.013336105003193289 it:0.012462773850850848 man:0.012325626468753662 up:0.011392608752697115 which:0.011240363820068688 all:0.011103722391102234 while:0.011012895472572426 :0.5564142662460917 +have:0.30825979017372884 has:0.23335574802959289 had:0.21175046658197516 not:0.030988266201518243 having:0.02927012901615229 bad:0.014171973849594698 ever:0.013086879418728829 never:0.01300501411300987 havo:0.009928021099038665 lias:0.009747205787221536 haa:0.00770115724572842 baa:0.007542997033275567 always:0.006964193192067684 already:0.006843537117543435 yet:0.006280305743339498 long:0.005835741283387316 since:0.003932840742479124 hare:0.003476596932273983 and:0.0033496242557260235 :0.07350951218361794 +the:0.2932032746033928 a:0.2842359074388746 Republican:0.05605428518701721 Democratic:0.05141713173600183 The:0.03162748589693653 A:0.0226149668685281 democratic:0.020293435874801424 tho:0.019528992922632892 one:0.015462293456840373 republican:0.015423818971355474 and:0.013494212915246438 cratic:0.011042092141970408 that:0.01017702946155794 tbe:0.010105272990138907 any:0.009646907996574475 by:0.009110224620294314 large:0.008245147154459396 every:0.008224823535200767 first:0.008077845170967594 :0.10101485105720855 +the:0.11919516938815296 of:0.07230453158552728 and:0.05781056740443249 a:0.043018564803886335 to:0.031305092790907506 in:0.020848713353460488 at:0.014270110001066288 .:0.012526810245749479 :0.012413283442322082 for:0.011719122709941797 by:0.010808400946589808 or:0.010404172990115616 The:0.01003576004804544 with:0.009811868184449042 tho:0.009295902015355835 was:0.008924239095331684 that:0.008672304223433876 is:0.0085591147338948 be:0.008335143826716943 :0.5187411282106204 +it:0.14980370725759037 It:0.1417831987182438 This:0.0994395734160535 which:0.06123870759127718 that:0.053827314535707556 this:0.0485319048157116 and:0.03481463816943127 there:0.03163351300029438 he:0.025874957304685715 That:0.02452637228711398 what:0.02101535076138451 who:0.020745118014465793 He:0.01553744098124584 What:0.015466571118696077 There:0.012715435083286795 Here:0.00825702518154719 one:0.007881347531268929 Such:0.007797349307744799 as:0.006397540204786528 :0.21171293471946415 +the:0.11274823966931571 and:0.08329996793360815 to:0.062372082173126384 of:0.05346002906215973 so:0.0299749817344208 is:0.026294180790411077 be:0.020260006954324915 he:0.018124449911071136 was:0.016351044211737983 re-:0.01567649125103956 Mr.:0.014726716630740086 in:0.013675410003338988 for:0.013272602215284653 a:0.012159264338821467 I:0.012040910229586727 or:0.010977326121126826 :0.01035107289213954 are:0.010219913969554774 not:0.009881708091297656 :0.4531336018168938 +that:0.1577429470632027 as:0.10923886497479111 and:0.08672043336282 but:0.061772185104416934 when:0.046268621430091965 if:0.04053912805634182 which:0.03583043658957001 what:0.03469699835787279 If:0.017549799693531612 time:0.015093292091379796 But:0.013479564131014175 so:0.013332512411984078 When:0.012798766089383108 As:0.012371707961820872 where:0.012345074672329604 because:0.012082138412817583 whom:0.011976813409609549 me.:0.011203231351473716 though:0.010646064031920128 :0.2833114208036285 +the:0.2952423715289057 of:0.1777300366333205 and:0.15302046462817984 &:0.04922166213705077 in:0.03770886660502173 by:0.030655126152952027 from:0.025481735018729405 The:0.025042107431879984 said:0.01632257626670974 a:0.01262117131782883 that:0.012369220519257939 tho:0.01172723717286108 at:0.011114255029062834 with:0.01019512802655237 to:0.008731377270430126 In:0.007799343299955325 on:0.006487773708160756 A:0.006245871279483985 Mrs.:0.005609654838891217 :0.09567402113476584 +of:0.11635724995965452 and:0.04355258611388701 for:0.03690717315581153 that:0.023690643304705907 in:0.02258962223328669 to:0.018445412674190132 by:0.014439477275428393 after:0.01436795457372858 with:0.012800003255274403 at:0.01178436752553057 amount:0.01148503850318369 on:0.010976202206942672 from:0.010421022758592904 upon:0.010083184082562757 law:0.008379466743365602 work:0.007779176980880202 money:0.007426441222622616 but:0.007049300702274863 which:0.007043918261163529 :0.6034217584669135 +due:0.026459965829633635 executed:0.015686646675765734 up:0.015242139549258779 day:0.013512315608200863 hundred:0.013120844318739711 time:0.012555191422592666 land:0.011990289974058752 men:0.011286943472535681 interest:0.01119576532084898 dollars:0.009689751445922797 years:0.008955637914091947 boys:0.008734934270320868 ;:0.008350166758815145 made:0.007774843324392751 sale,:0.0076248072625074576 him:0.007144920496407875 directed:0.007111013186275012 principal:0.006608913102059653 it:0.006565689346300183 :0.7893892207212715 +:0.13679892745815073 it.:0.01405854772485011 them.:0.012748783077261268 country.:0.007896070294952316 time.:0.007499570725394583 day.:0.006884211661952919 .:0.0066526459259910135 him.:0.006612013877148259 year.:0.006326067527256674 work.:0.005983528654054575 years.:0.0045099631774654005 of:0.004426232643673197 out.:0.00437861141459494 made.:0.004351200328881047 State.:0.004337145713439541 people.:0.004319701100846579 days.:0.0042017076115755106 world.:0.004162673052841136 city.:0.004007351725036954 :0.7488450463046332 +and:0.07558940021936399 recorded:0.030196237618668006 was:0.028917161578042846 made:0.027969746247669736 that:0.027730098932509103 o'clock:0.025060522019555328 up:0.023026552239529506 is:0.020398277211376416 found:0.02003101797656537 placed:0.017482208134164214 out:0.016937164562539058 place:0.016819459500107596 interest:0.016629321966808677 him:0.016002796715253755 situated:0.01573420479581609 it:0.015128305982428461 them:0.014715943643665314 part:0.014646613000297721 interested:0.014450471929902294 :0.5615344957257364 +of:0.09129790931378902 the:0.07369883040827747 and:0.047842263382354346 in:0.04189055351593407 to:0.04045875475680249 a:0.03542341257202578 be:0.02020462051672066 for:0.01979292654746225 was:0.01760256398103379 at:0.017380150555488715 is:0.014984483003968216 with:0.014047653760730413 by:0.01374644383819499 :0.012670486581795598 In:0.01200961464556976 or:0.011563835749786333 from:0.011391516893522809 are:0.011273104484969465 that:0.010755276030689069 :0.4809655994608848 +the:0.6986841711628498 The:0.03121716950517603 tho:0.030551165091789446 in:0.030316570243238323 a:0.02413534613283169 and:0.023984686066824884 no:0.01842354933816535 to:0.013378323301826053 tbe:0.012441038430778232 make:0.010411494551651126 by:0.008762534472507865 of:0.00813716161504476 In:0.007860871467029832 for:0.0072570492657355835 full:0.007021170907183549 great:0.00662665132811062 or:0.006367855698424723 its:0.005805960874901406 their:0.005549625767744843 :0.04206760477818598 +up:0.020166549586995923 time:0.015871992365516615 it:0.012985577682047349 him:0.012377507906933642 them:0.011999873621185361 out:0.01190556349645791 made:0.01017884467149109 it,:0.009939703940673275 work:0.009730140976834218 will:0.009423686396771044 in:0.008974052016090835 can:0.008755802953215147 men:0.00781608079809393 try:0.007807974440791721 them,:0.007520171410255046 law:0.007344811385659611 appear:0.007061233815515874 him,:0.006967170263334273 together:0.006105663563233269 :0.8060675987089039 +the:0.7546987354630891 tho:0.042037580676109 The:0.04045010262257618 and:0.02065563531419418 of:0.014666851832474915 tbe:0.014649880909130195 a:0.014265053121965276 in:0.01027601655339155 or:0.0072399950121692985 by:0.006129685155831007 an:0.004647143275146538 their:0.0033475867043114235 on:0.0028623066026447395 his:0.0028019725735284632 two:0.0026447984547898684 with:0.0026376173669648037 all:0.0024901422580736574 con-:0.0023201492676473375 tlie:0.0022854721724920907 :0.047893274663470396 +number:0.08683069308129672 out:0.05652523988365806 amount:0.0316160995429281 loss:0.03003158991922196 thousands:0.02193415724864308 plenty:0.021327800488850416 time:0.02084447319022837 kind:0.02068065360314574 all:0.02034476343485012 use:0.01987581810044361 means:0.017489403156055485 place:0.017484157051135582 deal:0.017371256224811903 purpose:0.016977074526153133 day:0.016383311738487803 kinds:0.014686781173143919 matter:0.014455532536242705 set:0.01445093555379865 way:0.014287353369565244 :0.5254029061773394 +of:0.18666674534938016 in:0.18442962601274843 the:0.10642881230370513 In:0.04831015075749856 for:0.03932131388775242 and:0.032644559884287744 his:0.02692540961500731 a:0.02687649076111837 to:0.021420753133493436 public:0.02134689168097607 their:0.0201324006552161 into:0.01871681904446131 by:0.01861751662755345 with:0.017794844410510834 or:0.017752663623795236 this:0.013606059921550496 such:0.01312434281733798 that:0.012962252392040675 other:0.012800690720661666 :0.15912165640090464 +and:0.09756556368541265 was:0.05426276517937397 is:0.03866664491042744 up:0.02568624008661788 it:0.024967480530237875 made:0.021983496168589956 put:0.021728272405609952 placed:0.021433399872469706 that:0.020699896774439272 are:0.01933805732185307 them:0.019230578399337284 him:0.018697869349579923 be:0.017987018805625865 but:0.017054981134282398 were:0.016928399532571015 as:0.01666685808038748 engaged:0.01649642158281899 found:0.01526160066577768 out:0.014987717957962178 :0.49935673755662546 +the:0.1340797933564271 to:0.08167131733270795 of:0.08112767734504087 and:0.07177333438501765 at:0.036302220490548494 in:0.03045190703485657 a:0.022086684157182027 .:0.01902672982396007 Block:0.017274640014233716 on:0.013823325936707499 by:0.012123280847121928 from:0.01198885564272022 :0.01091782466700327 for:0.009696948007264459 tho:0.009306624634663847 In:0.008199961525414624 that:0.007725279709373103 1:0.007638217750332017 The:0.007484436355754996 :0.40630094098366953 +will:0.16897610363870458 I:0.08462287553342551 would:0.07731443721894841 could:0.0745833620198725 and:0.0604966172636406 can:0.05887816799926269 have:0.05631402424796949 had:0.055589764979134176 shall:0.04938858799211342 should:0.0359783910623571 has:0.035152390711991416 they:0.031709618055277625 you:0.03091007049265616 he:0.02801750836277964 we:0.024048490110387052 may:0.01878762968474986 was:0.017775666050086274 must:0.014534851944048806 not:0.01340456862037121 :0.06251687401222349 +he:0.2699893781071302 I:0.08465304821125587 and:0.07852728874754233 He:0.041763234771175724 she:0.03705235842669544 who:0.03041896746307158 it:0.02911192102174902 that:0.02761540661266192 they:0.021683838110790308 It:0.01998496840603047 be:0.01933454163811889 which:0.018128730827818924 ho:0.014376667462748583 we:0.014248911677801117 :0.0132537891753646 1:0.009805435715475586 lie:0.008400426304523981 She:0.00819633000720793 man:0.008052368298226802 :0.24440238901461075 +the:0.11919516938815296 of:0.07230453158552728 and:0.05781056740443249 a:0.043018564803886335 to:0.031305092790907506 in:0.020848713353460488 at:0.014270110001066288 .:0.012526810245749479 :0.012413283442322082 for:0.011719122709941797 by:0.010808400946589808 or:0.010404172990115616 The:0.01003576004804544 with:0.009811868184449042 tho:0.009295902015355835 was:0.008924239095331684 that:0.008672304223433876 is:0.0085591147338948 be:0.008335143826716943 :0.5187411282106204 +to:0.20373353551037418 will:0.08884699031047333 not:0.06905523210043692 they:0.05050727642677592 and:0.049897085916714955 would:0.04895749157359648 we:0.04539844546657393 can:0.03407145957466195 I:0.03130473395832578 should:0.029559221624569774 shall:0.02732041346719464 must:0.023043938023913694 may:0.02178433807438877 could:0.018502656899998016 which:0.01801913418304902 it:0.017929402099470797 We:0.017331905057710043 cannot:0.01688312430796094 you:0.014243736023536234 :0.1726098794002746 +the:0.2107587302770963 of:0.12672210333787437 and:0.08743974896195197 in:0.044359048893312845 to:0.04215930841842878 a:0.040170011668254776 The:0.018768737024454207 with:0.01761232873656429 from:0.017078376186582468 at:0.01684283886642262 for:0.01636591388175571 tho:0.014704184163438397 or:0.013572408373660956 by:0.013308713865007087 on:0.01259877705354864 their:0.01251548069042527 his:0.011204709297713887 an:0.010118221883387625 our:0.009312788421604776 :0.26338756999851504 +the:0.3402273414943411 The:0.06715171372640515 to:0.061034205896450415 of:0.0603490995839104 that:0.05153688726595525 this:0.04372698305157111 his:0.0407919677862149 and:0.03759850961939187 tho:0.02282145121495131 no:0.02246628168520845 their:0.01982425854671721 at:0.01686104013465406 for:0.016156261307666498 all:0.016074856208940926 which:0.013530520177406151 my:0.013301571220323993 This:0.012338356081774804 our:0.011137853284872518 a:0.010831822206864834 :0.12123901950637908 +of:0.09129790931378902 the:0.07369883040827747 and:0.047842263382354346 in:0.04189055351593407 to:0.04045875475680249 a:0.03542341257202578 be:0.02020462051672066 for:0.01979292654746225 was:0.01760256398103379 at:0.017380150555488715 is:0.014984483003968216 with:0.014047653760730413 by:0.01374644383819499 :0.012670486581795598 In:0.01200961464556976 or:0.011563835749786333 from:0.011391516893522809 are:0.011273104484969465 that:0.010755276030689069 :0.4809655994608848 +and:0.08685739624604108 be:0.08648207862854701 was:0.08549223049843517 is:0.07687311908007796 he:0.04598267055608114 been:0.041881104333815 it:0.036379723568924854 It:0.03104402473401563 which:0.027151189494158953 had:0.027035951422242566 are:0.026336221465071155 who:0.02316105916445358 were:0.021700437961207596 have:0.020815743161266068 that:0.0192921230498417 as:0.01827529496129231 He:0.018245697604347636 has:0.01671078379112772 Is:0.015016152250837645 :0.2742669980282152 +the:0.11919516938815296 of:0.07230453158552728 and:0.05781056740443249 a:0.043018564803886335 to:0.031305092790907506 in:0.020848713353460488 at:0.014270110001066288 .:0.012526810245749479 :0.012413283442322082 for:0.011719122709941797 by:0.010808400946589808 or:0.010404172990115616 The:0.01003576004804544 with:0.009811868184449042 tho:0.009295902015355835 was:0.008924239095331684 that:0.008672304223433876 is:0.0085591147338948 be:0.008335143826716943 :0.5187411282106204 +of:0.2464389598971721 in:0.20999674435889104 to:0.0988856677837786 In:0.046493826982984 from:0.04597908838083068 on:0.044435125126761066 and:0.03432315892226522 at:0.03346172902621643 by:0.030758655530460866 for:0.028116907542748745 with:0.027414020040515668 that:0.025008737382068054 into:0.013962428617194213 through:0.011259094676786069 over:0.009591252502169047 upon:0.009322432844018081 all:0.007909262789871079 up:0.0065621805663163444 as:0.006416591347835404 :0.06266413568111728 +the:0.11087702883838926 and:0.07468533321627417 to:0.06327435121526986 of:0.052198241244518065 in:0.03112712358433759 be:0.026482046707640528 that:0.022711483948969245 is:0.02221249774526874 a:0.021170774220401554 as:0.02005189777885896 for:0.01941103252098795 he:0.018116855577948437 was:0.017577633959882835 or:0.014624456453719237 their:0.014396546153656061 his:0.013919026172914023 are:0.01272448221235497 will:0.012591863970749536 much:0.01258340349149101 :0.41826392098636794 +the:0.11919516938815296 of:0.07230453158552728 and:0.05781056740443249 a:0.043018564803886335 to:0.031305092790907506 in:0.020848713353460488 at:0.014270110001066288 .:0.012526810245749479 :0.012413283442322082 for:0.011719122709941797 by:0.010808400946589808 or:0.010404172990115616 The:0.01003576004804544 with:0.009811868184449042 tho:0.009295902015355835 was:0.008924239095331684 that:0.008672304223433876 is:0.0085591147338948 be:0.008335143826716943 :0.5187411282106204 +the:0.10597367530797616 and:0.0853527820525933 of:0.06360945035772735 to:0.06244267659896638 a:0.060444786386947884 be:0.04363603891749144 was:0.04190816975681049 is:0.031505771318292075 in:0.021161351642113184 been:0.020564667155655386 are:0.015605619303933057 were:0.01484114565833905 or:0.012862722596575497 he:0.011958272903710238 at:0.011725530623216752 not:0.0111810727073711 it:0.010571643524452942 will:0.009870006355904577 for:0.009564406893979365 :0.3542202099379438 +was:0.11799116199181954 and:0.10434442286240117 has:0.09759210451885812 had:0.0842062814164926 have:0.0780824079411136 is:0.07242105660292765 are:0.05257429989628841 were:0.04377855175345121 he:0.043385043685153994 be:0.03708146625441031 I:0.0316703165187687 will:0.01800556685969983 they:0.017444944492425705 who:0.015454581679411565 been:0.014654427848182734 but:0.014388301305982024 He:0.0138659447405241 shall:0.013438380800577951 not:0.012838746690540833 :0.11578199214096996 +of:0.28767355066866834 to:0.08775711267569858 in:0.08678131196995101 and:0.05160598694501188 on:0.04646139928102899 by:0.04519522654900943 for:0.044547789071328545 with:0.03396756772609607 that:0.033699232901107726 from:0.03075346596941143 at:0.027039283056790858 In:0.021061449543044047 as:0.017514234937992545 all:0.012543839382496166 upon:0.011844431150487573 is:0.00998972746569266 was:0.008814315973987914 into:0.008557199930727406 through:0.007781895704231326 :0.1254109790972375 +of:0.09129790931378902 the:0.07369883040827747 and:0.047842263382354346 in:0.04189055351593407 to:0.04045875475680249 a:0.03542341257202578 be:0.02020462051672066 for:0.01979292654746225 was:0.01760256398103379 at:0.017380150555488715 is:0.014984483003968216 with:0.014047653760730413 by:0.01374644383819499 :0.012670486581795598 In:0.01200961464556976 or:0.011563835749786333 from:0.011391516893522809 are:0.011273104484969465 that:0.010755276030689069 :0.4809655994608848 +and:0.151109059169912 was:0.11754006842783576 he:0.060146904051119235 be:0.04095967796805868 is:0.035938591799012695 her:0.02853666129636459 him:0.018673704997324923 were:0.017241752440516053 the:0.01617794336346658 his:0.013369923107988168 been:0.013210120345659514 that:0.012704657798926999 of:0.012664082164310548 I:0.012239451746183667 little:0.011505737917513368 go:0.010394402608783165 are:0.010226150717429971 going:0.010222798311855795 it:0.009938396380032395 :0.3961999153877059 +the:0.10123532501030015 and:0.07987885402679261 of:0.07453395530642454 in:0.04143492272646161 for:0.035117323190538646 to:0.029564575439576583 a:0.02705151548255336 that:0.02264991667783192 or:0.01427362284066173 some:0.012406162905021991 In:0.011784218883779446 which:0.011483451510657017 :0.010844544477876125 any:0.009394734020515707 in-:0.009229798128568521 with:0.009204663064751217 all:0.008807487119571376 other:0.008710018852501934 more:0.008357915456389708 :0.4730369948792258 +to:0.19165816006672798 and:0.13929419960078426 not:0.039198290238607554 of:0.0367818463493325 the:0.0303579356465878 in:0.023814319167530917 or:0.018432475915680993 who:0.0171881543802312 will:0.016565198322219612 I:0.016000013280039662 have:0.014567513827523335 it:0.014526161556131156 would:0.014326601105659587 he:0.014256525207924737 a:0.012882460297455572 had:0.012880839599380208 be:0.012748581412945404 for:0.011521324265883794 that:0.011331204711111405 :0.3506681950482423 +of:0.11141727963128227 the:0.07494524180875602 and:0.06262311239073286 to:0.04659908696673503 on:0.037093801327665266 in:0.029179742320914526 be:0.021564415781524158 was:0.02066250852871292 by:0.01614028138660331 is:0.015998716775465018 are:0.01545215858412337 :0.015075975356049275 from:0.014439287461870941 thence:0.012283108623387608 for:0.012256467626618056 said:0.011508233240393326 a:0.011503694602838836 that:0.01142971122992151 be-:0.010544280037108378 :0.44828289631929735 +the:0.151564299052826 of:0.09038750472184202 a:0.07461608498201407 and:0.0466615732099648 or:0.03708629888768566 to:0.035569645185394266 in:0.030052392055566975 any:0.021357004017533987 be:0.017082462262097576 no:0.015583554621420614 for:0.01514666947239845 with:0.014723578456062631 by:0.012787654001396713 said:0.012726164481980391 such:0.011693957670550037 tho:0.01002305994460469 their:0.010002787499567302 at:0.00923663004776501 is:0.008936804169325014 :0.37376187526000376 +one:0.1028303141280697 part:0.05963429477052991 out:0.04766456937681193 some:0.031418679026461914 members:0.030764490253327767 side:0.029940657362655835 portion:0.022063658796890564 office:0.020457735219956013 member:0.019726706386316174 end:0.019666887540649894 tion:0.018667441728710307 parts:0.016814747270460957 people:0.014112771422418794 all:0.014072739582212475 any:0.013183573287639892 One:0.013083578354183906 that:0.013024335602903442 account:0.012482348155001894 many:0.012077825070275192 :0.48731264666452345 +be:0.36648634611649633 was:0.14615667079079023 is:0.06348482892603241 been:0.05820684168755231 were:0.05816857695341481 are:0.04783457896619887 and:0.04451974513272804 he:0.03369706956200416 being:0.0209014560928017 bo:0.01417800326688468 have:0.010924853826113369 ever:0.009446327434734942 Is:0.009187620955998154 has:0.007531110157004723 now:0.007239974789529642 had:0.0069453431752954 they:0.0063385421628672466 lie:0.006132201793432558 who:0.0059667623163556895 :0.07565314589376473 +the:0.19296450285073596 and:0.07985707531683213 of:0.07259619598335515 a:0.06035157040828837 to:0.04569561841389629 in:0.024346429300868434 an:0.019955885117569905 at:0.01917745925543295 or:0.018008056999002476 The:0.014619230466058774 his:0.013684582508808966 tho:0.013678420760834397 that:0.012969853975691965 this:0.011252606972449702 with:0.011227757700946193 by:0.01077033193767034 for:0.010718708107754096 .:0.00998626403054455 their:0.009894337804616855 :0.34724511208864245 +for:0.4180132846645891 of:0.11068585234967236 to:0.10305417361381519 in:0.08573951569102028 and:0.026014260742763032 with:0.024680849159550045 at:0.0232222080257794 In:0.022715512742303223 that:0.017993016380121154 during:0.01678461204963909 have:0.014404337437491952 by:0.013613597445318247 For:0.011816039980014901 from:0.00991379488069343 as:0.009747779668991976 is:0.009495342516556182 all:0.009340261828792907 make:0.0073389717331030675 after:0.007259867650467229 :0.057166721439317246 +the:0.6771393086891289 The:0.05737654176539694 tho:0.044794298004193434 at:0.03691104108425898 its:0.03180963276594461 a:0.027045656160104226 his:0.015317883485236135 tbe:0.014146111221956971 their:0.012131105518135682 our:0.011395644939799889 this:0.01073371356228521 and:0.00819383541155243 was:0.005730388586657641 to:0.005547137635479457 Its:0.005426587157825008 her:0.004835455232661381 of:0.00457956252080215 my:0.004483208109442161 Tho:0.003929452802996473 :0.017473435346142388 +number:0.11316213728543244 out:0.042890777432979615 amount:0.04130612575257171 one:0.03812754279969398 line:0.029913085457978664 part:0.02597958432498356 thousands:0.0246225407874261 hundreds:0.021954606887218724 sale:0.017665007528482077 instead:0.01651485995077352 place:0.01642682288090348 rate:0.016349081262514137 cost:0.016285664040792097 side:0.016280445661083408 tion:0.01624500407284016 payment:0.016198153259536597 majority:0.015306998651212163 case:0.015182765608995997 point:0.014579196017683437 :0.4840096003368981 +;:0.03157843048838797 in:0.01693372619018543 it,:0.015584122414932042 them,:0.012994869862752762 him,:0.012624390730815047 up:0.010122808916400211 time,:0.00917353694810093 ,:0.006949698890752756 day,:0.006874600554484291 years,:0.006622439707930505 him:0.0065497787907034845 here:0.006449509964357143 me,:0.0062734449692415945 up,:0.005701416042073056 and:0.005685710529625382 time:0.0052899770678154785 year,:0.005178972109851131 night,:0.00482792204752379 city,:0.004743546392058347 :0.8188410973820087 +matter:0.043425551974126425 number:0.038351934417766305 purpose:0.03182590597029723 man:0.028282826363677988 out:0.028155714601655234 be:0.028071668959018328 amount:0.022895012048454684 case:0.021849450221099933 line:0.021716400190202996 state:0.02137510392807974 people:0.021099202988633863 question:0.020353013026429896 and:0.017445931858669817 is:0.017345847422053404 cost:0.016201562694868315 one:0.015478242176254924 instead:0.015334154401758155 sort:0.0151427890394714 that:0.014931201848500953 :0.5597184858689804 +the:0.13542080339408433 and:0.11731429266327983 Mutual:0.07129870137054554 of:0.038367216622923056 :0.03599996849244044 that:0.028639000306269258 to:0.024112740205382264 this:0.02167262801043802 States:0.018232576419797517 who:0.014917626943856935 or:0.01390194527266433 The:0.013084845958240771 Pacific:0.011595902701359448 Mr.:0.01074832278049334 it:0.009893532519244339 National:0.00987899179008261 tho:0.009303003835847576 he:0.009008235092173156 .:0.008947226072404713 :0.3966624395484725 +of:0.17050285226632103 the:0.12049625714383615 in:0.07049527327827274 to:0.04264315466174036 on:0.03449746273493614 and:0.027078623157392713 a:0.022674979885359086 In:0.02231570748628663 or:0.017591662926536085 for:0.017500100111315014 by:0.017048647807009973 :0.014229789900056597 that:0.012423607278520174 from:0.011485286706682057 with:0.01035187766785738 acres:0.009990939311066167 The:0.009134406329792347 tract:0.008857497842586229 upon:0.008814529475929055 :0.3508673440285041 +to:0.11072297279764762 or:0.10613980047998905 and:0.07584878414490738 not:0.04107508953982762 of:0.03719930795239555 there:0.027150188177330947 the:0.02707119059246538 nor:0.025270356513242505 that:0.024241483978626317 in:0.015763415321107248 as:0.015610491314474187 than:0.014201938942672014 for:0.01378946478582446 re-:0.012417242777279751 :0.012407866813393597 by:0.012050683302328837 is:0.011754987194787724 never:0.011366555260533555 would:0.010899589151123138 :0.3940185909600431 +he:0.139393457990243 who:0.08490276437089192 which:0.08068385735386771 it:0.06967326627305608 and:0.06544401061286736 that:0.05183849291038488 It:0.04386735920136202 He:0.035419235657673694 she:0.023819058895665036 as:0.02073151294443174 ho:0.011772647988177209 one:0.01143303530447829 company:0.011174434451854499 lie:0.010011485022437806 what:0.009692263079125428 country:0.00913371245699847 man:0.00904402331037074 State:0.008361985764415481 She:0.007596173669254563 :0.2950072227424441 +the:0.282105258671712 of:0.11525590768456702 for:0.06424926400641419 in:0.06347283157537172 and:0.0582881318589949 or:0.0464874892373975 tho:0.02645192021681498 In:0.02564425633700855 that:0.024468880928779132 no:0.022392757445271673 all:0.0214231153276975 a:0.018733998393345073 this:0.017643034507170162 their:0.017331247438036324 as:0.015816365757202647 The:0.014769407706243886 same:0.01393369498640103 tbe:0.012758619482812062 an:0.012757038519987628 :0.12501677991877203 +of:0.13010692803684784 and:0.05198254228257971 for:0.03758956770980628 with:0.03484438706100909 in:0.03413004946971633 was:0.03274557304167572 to:0.0323418862517494 the:0.02727666079399567 is:0.02667584254422663 by:0.022914680144916915 or:0.02120935139478349 that:0.017949326948252842 be:0.017370758904691735 In:0.0162412431215254 as:0.015355757782455081 -:0.013823416109585011 a:0.013350217747988856 but:0.011061421952117541 :0.010947218983340837 :0.43108316971873567 +of:0.27363632486130074 in:0.0990924727388472 to:0.07935959578603774 on:0.06284315154689592 and:0.05697538749344165 that:0.052801772385645214 from:0.03818223727290062 by:0.032937872276235014 with:0.03279731594049787 at:0.026438095959483116 for:0.025950620625459615 In:0.02232316408946568 as:0.02129565589134522 when:0.016983232098078057 upon:0.01611327591124135 is:0.012328935758315982 which:0.011683248206115066 was:0.01109468306434704 into:0.010089126931519398 :0.09607383116282754 +the:0.8159759767917363 tho:0.027720051653559535 his:0.020478071728622673 The:0.01854465008713863 their:0.01511692293773347 and:0.012461187630315559 tbe:0.007905052980950336 in:0.007318027680922731 her:0.005282206499937837 my:0.004791681227006726 of:0.004789401191869348 our:0.004570501592535732 its:0.003797616265704707 a:0.002855916216075934 your:0.002586688609737828 all:0.0020613235781318396 In:0.0018827624379154637 own:0.0016569693439171863 right:0.0015282085992685509 :0.03767678294691966 +the:0.1295488342408805 of:0.10489724766844989 and:0.06294112735009087 to:0.04113279735600206 at:0.033882353277740064 a:0.027831365410874477 in:0.027654074789904306 on:0.022940837241986034 :0.0186909802186886 .:0.017770805192282215 No.:0.01545497480833716 his:0.013108343323546073 for:0.012228963904148108 Mr.:0.010957373834318477 from:0.010490451827474835 tho:0.009672213753130335 as:0.00904335579627552 or:0.00872898042980607 an:0.008642478051140516 :0.41338244152492387 +.:0.12544854827723056 J.:0.08513430977394533 W.:0.08442606602464807 A.:0.06456899561242187 Mr.:0.05043393990442559 C.:0.04206182262882367 E.:0.041467247924870464 Mrs.:0.038110116818221414 H.:0.03749351403342908 R.:0.02588726286016095 O.:0.025365920090817794 T.:0.02221698280059307 M.:0.020318427611602012 D.:0.018608785020521944 F.:0.018442395098215426 P.:0.017631385990860532 L.:0.01678178785536254 S.:0.016148177392510447 G.:0.014669132962991127 :0.23378518131834808 +it:0.26286161703143257 It:0.1713277666376344 which:0.05403049708920982 and:0.05383706932986375 that:0.044724039935340444 he:0.041330720899301204 there:0.028803176061762678 who:0.021091432162128124 This:0.018253703132349853 He:0.015770403991129806 what:0.013257274750887555 she:0.01291603515343834 this:0.012522964994913548 There:0.008372108136413987 but:0.007443867871452373 man:0.006689885453135132 country:0.0060120446402035016 She:0.005263553298236528 as:0.005065415704491727 :0.20942642372667464 +it:0.17053908688851482 he:0.1168404758551162 It:0.10713335057522655 and:0.07384731798828321 who:0.06709230047699766 I:0.05356183048784362 she:0.043705671893974216 which:0.041692968454557056 He:0.039001080981571394 that:0.021800890719432572 there:0.016783179694071667 they:0.015927818857257026 She:0.01206317970830944 never:0.011212352806388198 lie:0.008709820901155279 ho:0.008633409728032717 all:0.008446189156788637 we:0.008000376664667116 but:0.007574798983205829 :0.16643389917860676 +and:0.07895257911471103 was:0.03596317658514438 out:0.024016824392823457 that:0.023672598027062328 placed:0.022844208461019616 work:0.021707439938587154 made:0.020781005318872947 is:0.020224993929329655 up:0.019794182040466738 put:0.018288921183371155 down:0.0171740551508179 interest:0.01663630075189571 point:0.01659978677065351 him:0.016175999448187352 held:0.015562908663841706 Dakota,:0.014616466073415059 place:0.01424333231426501 Minnesota,:0.014067166610364513 it:0.013665465625771424 :0.5740125895993994 +to:0.14632923167988934 and:0.1007260758991943 the:0.050165891013227694 of:0.04621785307932204 in:0.03703027183000391 a:0.0210458195765987 at:0.020758036318051246 not:0.019624622137798354 he:0.01567507438848535 was:0.013233891478289319 by:0.012993488182381255 I:0.012899664362404091 In:0.012736032563209893 that:0.011868945278531018 be:0.011785245812622913 his:0.01162612667295233 for:0.011440368030299679 or:0.011205990171681132 :0.010974621081895944 :0.4206627504431615 +of:0.09129790931378902 the:0.07369883040827747 and:0.047842263382354346 in:0.04189055351593407 to:0.04045875475680249 a:0.03542341257202578 be:0.02020462051672066 for:0.01979292654746225 was:0.01760256398103379 at:0.017380150555488715 is:0.014984483003968216 with:0.014047653760730413 by:0.01374644383819499 :0.012670486581795598 In:0.01200961464556976 or:0.011563835749786333 from:0.011391516893522809 are:0.011273104484969465 that:0.010755276030689069 :0.4809655994608848 +the:0.09276149837052153 of:0.08181698012623746 and:0.04695179052872875 to:0.042457162147685884 in:0.02849943153409049 was:0.025771064287780785 be:0.023074577745109983 a:0.021396349704129215 on:0.02065281608577712 is:0.019414943186856177 for:0.01884717955387234 that:0.017006609357711235 at:0.013173519867629694 he:0.01282971363074657 as:0.01228128758022668 -:0.012100816035507594 his:0.01141301258931124 or:0.011378890882665929 are:0.0101247021827262 :0.47704765460268517 +the:0.36096181192576693 of:0.07653773681337563 in:0.03837487531017022 and:0.026158799686989507 said:0.019809003296170708 tho:0.01224558313360866 War:0.0121958873084051 The:0.011610161541710969 State:0.01113679680316367 that:0.009797530254182162 last:0.009437422944267387 this:0.009373853619299391 Navy:0.008370842546165881 city:0.008220225503868972 his:0.00698469221610429 In:0.006563254125582416 tbe:0.00638585948788407 our:0.006295912683628061 for:0.005722225147262314 :0.3528175256523936 +to:0.5767218095756457 could:0.051533937930352595 will:0.04592464812090963 can:0.04468242918956025 not:0.032867453220230984 and:0.02984257058567671 would:0.024168165232788353 they:0.021102657689688473 may:0.01927859039677746 we:0.01867247610545093 you:0.0151006033276862 should:0.014555860235824654 cannot:0.013390571665928958 I:0.012026580349895285 must:0.01029949890792779 or:0.009100048483118742 might:0.007522343672975719 never:0.007448821710201766 ever:0.0053467096229048135 :0.03941422397645502 +the:0.1328939528659933 to:0.09368045087831456 and:0.09107757966006363 a:0.07361791865270188 was:0.05894824193108807 in:0.05892624978793506 is:0.04591619572533781 be:0.04301782981293899 not:0.029303122520442423 of:0.026304234456824387 that:0.02525347115129569 will:0.021858105824527813 made:0.014688297563463239 were:0.014108153172158966 so:0.013645622143750629 or:0.013405986378137062 it:0.01306497057348257 kept:0.012706794314633238 are:0.012507661825097322 :0.20407516076181334 +and:0.06860859862926928 passed:0.054851893298405695 passing:0.039923657790313156 it:0.03056689499476978 go:0.02496409836503681 all:0.023934548859700384 went:0.02366797787401232 way:0.020688897290999233 pass:0.020641532146992037 them:0.01671803867976856 or:0.01664897827331013 going:0.015690615035847653 run:0.014181474554002472 running:0.01411869096679922 up:0.013561713876418649 out:0.011501853530255306 road:0.011412906033135538 come:0.011341220838602842 miles:0.011232976145875487 :0.5547434328164854 +according:0.0788612729713363 went:0.0537689601476851 sent:0.050420397079789035 subject:0.04312467174873306 feet:0.033741288624113595 and:0.030941604859337602 came:0.022234034611877795 reference:0.02202464133145002 addition:0.020756392344923658 go:0.02068457813283405 given:0.020403890549144557 regard:0.02024509450700761 down:0.019125920350680267 entitled:0.018761738658663773 them:0.018544714633043507 relating:0.017609766920444477 up:0.017313361120906607 chains:0.01646641158790386 back:0.01614116348509167 :0.45783009633503347 +;:0.01458927046758731 it,:0.007973265891266864 him:0.007834970369143835 one:0.007240974664279108 in:0.006989508095588829 and:0.006417396987522371 ,:0.006059091806132192 it:0.006014614548599763 up:0.005812344146302806 out:0.005395853159197619 them,:0.005290532062834904 him,:0.004938420268273817 city:0.004793760033506698 :0.004646491011450349 man:0.004641061555670736 country:0.0046164671969483135 feet:0.0044416267197611185 time,:0.004376787347733258 time:0.004358244018157902 :0.8825693196500423 +was:0.12242319661126964 are:0.10520381028236289 is:0.09615295750869879 be:0.0799169849941808 and:0.07523550726825447 been:0.07376342562924056 were:0.05054409237603329 not:0.04239986107352745 of:0.02123579067029895 has:0.021038725593609406 or:0.02007069973668162 being:0.019153146588382217 have:0.01683564317691155 had:0.015299374795711973 as:0.01173478072961216 Is:0.011724198581659196 for:0.011050865727003256 become:0.009777457172408145 do:0.009493394887902016 :0.18594608659625161 +sum:0.03352282876311118 number:0.028116684882597106 line:0.019995206059833036 city:0.01946514558931857 out:0.019275318828420953 day:0.01666865340772654 county:0.014872697538657208 amount:0.013254184849875051 Board:0.01252325449624941 town:0.012449555905674143 side:0.011663975251122375 part:0.011517157473718155 County:0.011460540331966697 state:0.011087331502382173 City:0.010878919191854432 purpose:0.01081028255427907 and:0.010297866493795984 way:0.009848747943663767 name:0.009522170936943183 :0.711769477998811 +of:0.09129790931378902 the:0.07369883040827747 and:0.047842263382354346 in:0.04189055351593407 to:0.04045875475680249 a:0.03542341257202578 be:0.02020462051672066 for:0.01979292654746225 was:0.01760256398103379 at:0.017380150555488715 is:0.014984483003968216 with:0.014047653760730413 by:0.01374644383819499 :0.012670486581795598 In:0.01200961464556976 or:0.011563835749786333 from:0.011391516893522809 are:0.011273104484969465 that:0.010755276030689069 :0.4809655994608848 +in:0.3980606242231368 of:0.14784305429726474 In:0.08708069789246123 to:0.051696761864817545 for:0.03462120270782345 on:0.029276911821291395 any:0.026233700107199658 by:0.023508886571823522 and:0.02233615121230859 with:0.02219653237943586 upon:0.02102007498240918 from:0.019959945590794205 that:0.018702645676610896 at:0.01754543944649262 or:0.017018886950592237 under:0.011450136333006945 all:0.010105918931014745 within:0.007493408646994169 iu:0.006225485560744455 :0.02662353480377774 +of:0.16491835178097375 Mr.:0.10827594705396186 to:0.058679966224199354 and:0.03503173677085741 the:0.0324260882163851 .:0.026837206398969107 for:0.021958342979362094 Mrs.:0.020882459155292656 in:0.02009659399275147 said:0.01890846827328228 by:0.017209609251837347 from:0.016985340329466456 :0.013927389256325935 at:0.01391088646572289 Dr.:0.01250169157289899 St.:0.012342457952160298 girl.:0.00897099235482206 that:0.008243789854434289 boy.:0.007334507399992372 :0.37955817471630426 +one:0.06754190432163522 part:0.05231163511576496 out:0.04609588594236959 some:0.02740306976054911 side:0.02387622494371665 end:0.022518288784217105 members:0.021845751933956114 portion:0.02151370006345736 all:0.02022572610903207 people:0.016238426460010967 and:0.014555909544903867 that:0.014078768366257871 day:0.013832139668816516 tion:0.013547994796857001 front:0.013380738665131557 any:0.013269620285130524 member:0.01265082101866512 time:0.012443834037564471 office:0.011845495219016932 :0.559824064962947 +the:0.27959585137794635 of:0.1407347082993757 personal:0.09419590623552787 real:0.054688452860037415 said:0.05087954733771044 described:0.03797441224757159 and:0.036835309275464946 their:0.025993131856379807 taxable:0.024119523058345065 such:0.023008547735387196 his:0.018521122959180333 for:0.015926380734415182 other:0.01488025849715992 tho:0.014796462389739213 to:0.013001612171380506 its:0.011985061442148937 same:0.010944939063125915 on:0.010268396036609525 private:0.009778144214166744 :0.11087223220832736 +the:0.2782472374031439 and:0.05853086307875382 of:0.057808400149107285 a:0.0505051790196421 in:0.047737229779834744 that:0.029028474107152598 tho:0.018710024088825838 no:0.017339306339466322 any:0.01703662573257265 for:0.016715378203915124 or:0.014389838101205619 to:0.01254353636706294 The:0.011965494146430906 such:0.011478107165062217 their:0.010557144796299397 this:0.009886618703130198 by:0.008203119141950934 In:0.008031362143197362 an:0.0075425481936670265 :0.31274351333957906 +more:0.547897157541395 less:0.15609076712762318 rather:0.04623011219210756 better:0.03543911164331784 greater:0.014197858320559108 More:0.01330065591555611 other:0.01307353699924064 moro:0.010005042274160287 worse:0.00916343813993921 larger:0.008614796006019826 and:0.005229103026897 longer:0.005115539603005122 higher:0.004991691708567503 later:0.004433723820331593 it:0.004223053777810249 lower:0.0039459712379752284 leas:0.003930557090314739 faster:0.0034919465635545087 quicker:0.0032966837286589044 :0.10632925328296643 +the:0.3530858133164517 their:0.08700370301414319 his:0.0724489832595927 our:0.06331078361682488 of:0.05968719987821748 a:0.0452662715242867 its:0.02706265032271223 other:0.021522524909313855 political:0.020602518335775276 and:0.018760739145750865 tho:0.016160874586343174 both:0.014527638953968506 her:0.014445521645399093 this:0.013585079554622454 new:0.012480399773345098 all:0.012389779786826685 two:0.011902956843670627 The:0.011654014869178865 own:0.01092814908699848 :0.11217439757657809 +the:0.5171650243777828 a:0.07381810043461239 his:0.05100014483089047 tho:0.03348199331880421 no:0.03150286050417433 at:0.028667329525712246 of:0.02337956649761763 The:0.018613134931293525 their:0.01778547926619024 and:0.016642243794872367 tbe:0.016082136794835344 all:0.015315531856696698 to:0.01270808153413333 any:0.012655027500784611 for:0.011404822268406747 its:0.01132791339136989 my:0.011095455583006718 with:0.010850451872909849 her:0.009737662463703212 :0.07576703925220338 +the:0.06647623600238486 of:0.06400552517032125 and:0.062281308223140285 be:0.05990300454652408 to:0.04886480238196076 was:0.046359477162698864 is:0.033642421755709494 or:0.024224754484440145 are:0.023949812295997554 been:0.021419866649644067 were:0.01944175848099471 for:0.018415802147964767 as:0.01668021786349543 in:0.015768024701088016 a:0.014332062457127072 on:0.013218118866175774 :0.011989868035949203 being:0.010901119313506834 by:0.010399318984640265 :0.4167265004762365 +he:0.148170546411258 it:0.09870619058123317 It:0.06818000322796405 who:0.06419566517620069 that:0.05900201422817429 He:0.057278922892499265 and:0.05322682818981061 which:0.052848356087984306 she:0.026703736749514012 She:0.011540847408786232 but:0.010004913857864279 lie:0.009840249639301905 ho:0.009795461710025483 there:0.008970143412057284 as:0.008657185848286475 company:0.007091373987496704 man:0.00677715221700777 be:0.006761947242346125 country:0.0063917601787492765 :0.2848567009534401 +and:0.14625498311756543 said:0.0821408402137806 fact:0.053042879817408975 stated:0.043080626045290886 so:0.03670560455337853 him:0.03145185140002361 know:0.030269284895004085 say:0.023631027804186345 is:0.023317250373478222 says:0.022511697585094068 believe:0.021363437164841573 but:0.01993757805139123 saying:0.018992342115662253 told:0.01877630041085035 replied:0.01865923525468731 all:0.017484377075553177 found:0.017287552137347117 me:0.01691240193856356 stating:0.014580183464830303 :0.34260054658106237 +of:0.09129790931378902 the:0.07369883040827747 and:0.047842263382354346 in:0.04189055351593407 to:0.04045875475680249 a:0.03542341257202578 be:0.02020462051672066 for:0.01979292654746225 was:0.01760256398103379 at:0.017380150555488715 is:0.014984483003968216 with:0.014047653760730413 by:0.01374644383819499 :0.012670486581795598 In:0.01200961464556976 or:0.011563835749786333 from:0.011391516893522809 are:0.011273104484969465 that:0.010755276030689069 :0.4809655994608848 +I:0.20310614865499124 we:0.13095336151644477 they:0.10963388335706742 who:0.08037077981491167 We:0.07488153667062789 you:0.039983544501829914 They:0.03415185450415067 would:0.03199343594162023 to:0.030793264693848865 and:0.026871895058738 1:0.022825749939299082 which:0.01789719419924261 will:0.015887388995413882 should:0.013516297021785922 men:0.01063709377663105 must:0.010533161864037152 that:0.010202623106271102 people:0.010010163778980136 "I:0.010000933548033069 :0.11474968905607533 +and:0.10402992543013229 that:0.05019092486459068 as:0.042727286857862486 which:0.02533234897998449 the:0.02508012675128413 of:0.022857658890955417 but:0.02193945521435193 :0.021424796317566188 when:0.019315947107283828 an:0.012160285773421877 what:0.011117510159342807 to:0.009847883387652535 for:0.00930937210305684 .:0.009110448322906767 a:0.008401418459977729 time:0.008210823708437065 on:0.008144468143099519 so:0.007721425325186425 said:0.007692928980800737 :0.5743849652221062 +as:0.29056614640672856 and:0.045789077205667834 is:0.029639112699169086 of:0.022500736460521645 so:0.017278718577768453 in:0.013784413705310514 be:0.013200836911084776 was:0.012953689465159528 with:0.012807298480411872 As:0.010940347275775574 ns:0.01077369858338969 are:0.010723401793160111 or:0.009678527413770954 by:0.008918965759503258 to:0.007753643415700452 :0.007108835881303479 it:0.0068966015295630675 such:0.006614903205145876 for:0.005944120074271217 :0.45512692515659403 +of:0.08061223135157294 in:0.0694518328589828 :0.059815956691851364 a:0.04755071737198488 to:0.04236234358677656 the:0.04007441827926507 and:0.029863418363007644 In:0.02747231081057741 for:0.025125918064024328 ex-:0.020751124414271932 .:0.015735767704974653 from:0.015470793048680148 that:0.014836060041189139 com-:0.014125497651257906 this:0.01378800779149157 -:0.012418701530309662 com:0.011132206199380218 at-:0.010656538058165072 by:0.00960040840439783 :0.4381557477778389 +the:0.28204936111068823 of:0.12139015327752845 a:0.04038286660520054 in:0.03937897879179876 and:0.023027338310844678 that:0.02256221562295391 by:0.021431941463906583 at:0.020722057276749358 tho:0.01905949637614161 The:0.017208551404942107 to:0.013532380949471973 with:0.011437712373439426 for:0.010854265269477236 from:0.009329208468780336 tbe:0.008916681036796192 :0.00878781389202035 on:0.007896591032590813 In:0.007792561253488682 as:0.007277291173921035 :0.30596253430925974 +the:0.12501213529677174 and:0.07155652309953148 of:0.052609940129058716 in:0.028320735107419746 to:0.027352226368332348 that:0.023655582888587063 was:0.022042931093136858 I:0.02117992979569259 be:0.02040334901588246 for:0.01915073747965047 a:0.018186963787182143 is:0.018082597111518887 on:0.015141432607690512 he:0.014740905412035949 his:0.014678343154957307 or:0.014471548948014279 you:0.012428922258617232 dis-:0.012004838166587189 it:0.011271760331748027 :0.456708597947585 +to:0.5248259046118134 and:0.06956821561105558 will:0.06111067661918761 who:0.03222809562724007 they:0.03216745355748503 not:0.026780792667336885 shall:0.01934989170459177 should:0.019314668265404043 would:0.018525478432197946 we:0.01849774175405646 must:0.015998565740240913 may:0.01444891388519871 could:0.00984210000813879 you:0.009692561624420473 can:0.008777083355193028 or:0.008602567487823362 They:0.00815644695879556 We:0.007375330345724775 cannot:0.007313473095685476 :0.08642403864841007 +there:0.08450773912107562 and:0.05106893110479505 it:0.03422643885065069 up:0.02873905136124368 them:0.0253660659185383 him:0.02186429311376382 wait:0.021429772580550503 not:0.017731967508718766 out:0.01574875175046263 continued:0.015488103401904678 made:0.013698831678613571 but:0.013491776844633135 is:0.013159027431095933 down:0.012778150390092976 time:0.012266747598358581 that:0.01200054506887085 her:0.011806743470159415 was:0.011354104379119982 postponed:0.010780459443444862 :0.571492498983907 +of:0.09129790931378902 the:0.07369883040827747 and:0.047842263382354346 in:0.04189055351593407 to:0.04045875475680249 a:0.03542341257202578 be:0.02020462051672066 for:0.01979292654746225 was:0.01760256398103379 at:0.017380150555488715 is:0.014984483003968216 with:0.014047653760730413 by:0.01374644383819499 :0.012670486581795598 In:0.01200961464556976 or:0.011563835749786333 from:0.011391516893522809 are:0.011273104484969465 that:0.010755276030689069 :0.4809655994608848 +and:0.06221069663990682 Committee:0.05057534586581559 was:0.02748220847391186 committee:0.02744426205407836 that:0.020734118233226323 is:0.015430238938760197 be:0.015048656326656785 going:0.014001702059179444 out:0.013278222204376178 work:0.012879402979875257 went:0.01268561986518544 put:0.012602354130226817 due:0.012424637090645018 were:0.012095015985171466 called:0.011981002673910567 it:0.0118054636333845 them:0.01156555523415657 are:0.011505242379095585 him:0.011141026526201511 :0.6321092287062358 +it:0.15857672679121698 It:0.10572148290195897 he:0.0729046309549653 as:0.06891129820966362 they:0.06387033340524964 which:0.05380570772636741 that:0.04140144816027528 who:0.03758367508656669 and:0.033907192499565524 we:0.03012218426362397 you:0.0262285854003979 one:0.025942139200027713 I:0.024914323566834148 He:0.01903598481066606 she:0.013385207107281492 This:0.011666632295178388 what:0.011350827697506123 man:0.011135115347322554 nor:0.009248178692019222 :0.179288325883313 +it,:0.011355937101754029 it:0.010225808037885637 up:0.009268608791678202 them:0.008429492035327363 in:0.008309682281915386 men:0.008300645966262508 them,:0.007777767357504172 out:0.007614300693056393 him:0.007612499836818203 work:0.007403528652097941 him,:0.0071781748703877634 of:0.007032070884305684 country:0.006987924365480123 here:0.006461359629109241 time:0.006035833750154148 appear:0.005440844268898478 there:0.005429316624483394 ;:0.0052771598566892074 life:0.00508074271786017 :0.857778302278332 +him:0.013685224500584972 it,:0.011850765898855566 him,:0.01116302635945001 up:0.010713357689980777 ;:0.010282615926617644 men:0.008369918824643737 man:0.0078106708849200995 in:0.007582077589194208 them,:0.007456239400536792 out:0.0072749592703852915 here:0.007172626886995911 it:0.007112289914622978 them:0.007044713799245517 time:0.006686525175955759 made:0.006166936278983387 work:0.006161884093288496 years,:0.006076482977602065 money:0.006036363858432815 home:0.005755957758660426 :0.8445973629110436 +the:0.37132781800506093 a:0.10594529642738308 no:0.07414828574541123 any:0.04874657347422816 at:0.038124198112034595 all:0.029959607883652827 of:0.026813354078178156 or:0.025605434028373952 either:0.022270777521678328 to:0.02056710922763222 and:0.019394527828070107 tho:0.01926927762292083 be:0.018876177240093925 his:0.0187828450208228 their:0.017459207280105436 without:0.015238897087294718 was:0.013131565753747453 such:0.011454260562671476 is:0.010347913871643456 :0.09153687322899633 +and:0.09230894006743602 away:0.036556885786181284 taken:0.03176862681690152 free:0.024554755916253456 them:0.02331243701089984 him:0.021006862826498964 come:0.01852693370337958 but:0.016010325601517588 it:0.015901933492105547 received:0.01565307350225074 made:0.015008809012369144 far:0.014400457124006368 out:0.014290383929071185 that:0.013888920928668842 excluded:0.013789544052405397 suffering:0.013331248000397991 up:0.013259014886902525 came:0.012761222389778192 derived:0.01204831687061454 :0.5806213080823613 +in:0.23403124115557428 of:0.22184200199165496 on:0.0766350764942556 In:0.0679175079017997 for:0.06396793567883967 during:0.03829018752376799 to:0.03742850797532489 by:0.03073419017758132 from:0.030387941998265038 at:0.02515419009412807 and:0.0247641568005981 that:0.020974368701348015 with:0.013206772583708285 after:0.011305910619555486 On:0.00869655977648342 into:0.008411859375807105 upon:0.008068303013424894 before:0.008050526374176458 During:0.007940124613686995 :0.061192637150019734 +;:0.01458927046758731 it,:0.007973265891266864 him:0.007834970369143835 one:0.007240974664279108 in:0.006989508095588829 and:0.006417396987522371 ,:0.006059091806132192 it:0.006014614548599763 up:0.005812344146302806 out:0.005395853159197619 them,:0.005290532062834904 him,:0.004938420268273817 city:0.004793760033506698 :0.004646491011450349 man:0.004641061555670736 country:0.0046164671969483135 feet:0.0044416267197611185 time,:0.004376787347733258 time:0.004358244018157902 :0.8825693196500423 +of:0.2432643091310259 the:0.11777894536826874 Salt:0.10357572862501416 on:0.05650252683352078 and:0.03927617956089541 from:0.0327688677854411 at:0.026639668570383062 Devils:0.02609000150758129 in:0.022067324178052624 to:0.01924211576589315 by:0.016717030706844663 :0.008381217606501864 The:0.008120394149343882 said:0.0074946258711762 South:0.007493155647681543 with:0.007237352827627634 for:0.0068434744532035454 Madison,:0.006678885435879286 West:0.0064921584000491046 :0.23633603757561605 +was:0.12836224351785425 and:0.0792271004403758 committee:0.05844598903101946 be:0.039160439320598074 going:0.034911720572337705 is:0.03284037659848113 were:0.031143742819847223 went:0.024079769790795565 go:0.02130860996862081 him:0.01972687277006483 are:0.018883609344434754 called:0.017828999893071615 work:0.01755311877634391 man:0.01588018938923093 that:0.015664203615758664 been:0.01563828814233956 put:0.014942103800673267 had:0.014557613053991123 based:0.014185037326602241 :0.38465997182755907 +and:0.09631219532671687 was:0.03513566928966104 held:0.02987715681559008 Beginning:0.024332169066967536 is:0.023122938489353394 look:0.022074108253454683 arrived:0.021820518428646088 that:0.021226918252779888 interest:0.02006974641058921 thereon:0.01971421054267379 made:0.019401567074562896 are:0.019271449916013022 up:0.01806602795372081 him:0.01678700722897829 be:0.016375054451444982 but:0.01586396852970274 out:0.015503094089883073 or:0.013721423267833084 not:0.012734170433403743 :0.5375906061780248 +;:0.027488708181287687 it,:0.01958917362811013 them,:0.011734148321642797 him,:0.009807221804048033 in:0.008313229650925371 time,:0.007688385999744575 him:0.007389625085221205 country,:0.006853233578626019 years,:0.00626528268415626 ,:0.0059988628132242065 and:0.005839985371392634 people,:0.005728202179933982 up:0.005606460628007509 up,:0.005333752120618328 year,:0.005161777230700628 one,:0.00505844778761419 here:0.004939839190866411 out,:0.004781955925715608 it:0.00465859216314566 :0.8407631156550187 +they:0.2061982990460728 who:0.07464779247087004 we:0.05919893033290316 men:0.05186998085569759 and:0.050263913541290964 They:0.04929478625002431 which:0.037740325350893666 there:0.034269999641132046 that:0.02051707465676485 people:0.01678646489399261 There:0.01644553187338898 it:0.015207302451709705 We:0.014314714959601292 you:0.013937413628602137 others:0.010943422100692737 them:0.010764001764668026 I:0.010358767434918092 all:0.010194328372601974 women:0.009589597420320789 :0.28645735295385416 +to:0.7784702458065206 not:0.05458103004163515 and:0.03717372342206368 would:0.016826249188241705 or:0.013520206356331211 will:0.01253185637774079 we:0.006582558863678242 they:0.006519857063197333 I:0.005798294913873115 could:0.0054402528014337705 of:0.005067324896653981 for:0.00454840470803007 re-:0.004290616058250458 in:0.0041197901955397935 you:0.004114900128929304 never:0.003679190614267765 by:0.0036573206959035318 can:0.0035920585669930107 at:0.003541634291219076 :0.024944485009497464 +as:0.06931392982974462 according:0.052071562389565784 up:0.0511867300210483 and:0.040371568633051955 went:0.03351644485287816 back:0.032358406609281 regard:0.03073407747799069 feet:0.02852138506231652 down:0.026379903432040268 owing:0.02466642634685871 due:0.023695193974505355 go:0.022910973192184297 reference:0.020802802907016128 came:0.019883741951819873 sent:0.019874244915639484 attention:0.019565955494145405 come:0.01885185084678811 given:0.018792390567602263 it:0.017366961307524745 :0.4281354501879983 +the:0.11919516938815296 of:0.07230453158552728 and:0.05781056740443249 a:0.043018564803886335 to:0.031305092790907506 in:0.020848713353460488 at:0.014270110001066288 .:0.012526810245749479 :0.012413283442322082 for:0.011719122709941797 by:0.010808400946589808 or:0.010404172990115616 The:0.01003576004804544 with:0.009811868184449042 tho:0.009295902015355835 was:0.008924239095331684 that:0.008672304223433876 is:0.0085591147338948 be:0.008335143826716943 :0.5187411282106204 +they:0.12289010398747592 it:0.0863710906245892 and:0.0736130369536086 you:0.07096819229372675 I:0.06911753351610939 he:0.06771964787912971 which:0.05935038815335426 we:0.052807966386860465 It:0.047700751438190775 who:0.03867893063079463 that:0.03662515321963195 They:0.023134224880833016 she:0.017612022057802518 We:0.013938868791963774 there:0.013389049858579036 You:0.012024802876160088 He:0.012022629046381598 this:0.010731698347601666 what:0.008012636877293944 :0.1622912721799127 +the:0.3679426255994609 a:0.1364084780732323 of:0.04559564992868781 in:0.04242176505287257 brick:0.03251730226675836 school:0.03013112580947414 The:0.029574044172017006 any:0.024355719773093382 this:0.02079867834740345 tho:0.02070261049696981 and:0.020094192390596944 every:0.017679829035369923 frame:0.015249059528370251 his:0.013831058134436173 one:0.01344024722482495 new:0.012425687971087406 no:0.010770372734280161 to:0.010407772290252153 large:0.010293859637300198 :0.12435992153351211 +of:0.29007726131314376 in:0.22582827553872398 In:0.07952792218662806 for:0.0693941620901663 to:0.04835937538218996 that:0.03206008815558127 at:0.029813621373997092 on:0.026154646723998295 and:0.021557698962936994 by:0.01955216986717621 during:0.015474947096199747 from:0.013629777179699829 with:0.012042081005660857 upon:0.0108452501546179 For:0.009146159141012074 all:0.009123673251900935 within:0.007724626116223887 but:0.007338244538133001 or:0.007265822118913404 :0.06408419780309646 +and:0.1340936458459993 of:0.059456927063751705 by:0.04329630423568946 :0.03166380714231895 to:0.012785650494149406 said:0.011115545126433783 .:0.010470977720754539 the:0.009241090420499561 that:0.009086868176848967 ;:0.008625596050586716 for:0.008371255434408831 late:0.006729611099570318 while:0.006510885076428781 from:0.00649165253366911 as:0.006410535650036657 on:0.006384347474980456 ::0.005721236133310749 when:0.004967274660433744 with:0.004832248935015508 :0.6127445407251134 +of:0.2839543466611623 in:0.10245363539251677 to:0.07697411932610901 on:0.07140535679241539 from:0.04996788036226996 by:0.047159855752444566 at:0.04675410895365984 that:0.04531450643037897 and:0.036793680950378986 In:0.025068895739460938 for:0.022677945515700862 with:0.02184578788946849 upon:0.01503370215980407 as:0.012922810174272943 which:0.006936086056983938 into:0.0063615219928267654 all:0.006297029867667555 ot:0.006277687884489483 when:0.005817869829257866 :0.10898317226873129 +as:0.08245194352867512 seems:0.07504477896856314 and:0.05226239243978683 up:0.038712456516838994 come:0.035284672761600626 seemed:0.030730583401014436 came:0.028358324435320093 it:0.025771163203503228 is:0.02409816625823578 known:0.020912166522470348 them:0.01997358156541705 back:0.019536691820668067 presented:0.01810643517000634 sent:0.017494707978847394 was:0.017384944780957427 down:0.017154807936619994 brought:0.016437327320737827 given:0.015626793637823353 regard:0.01411594749458947 :0.4295421142583245 +the:0.10092458788121426 and:0.08525013492851889 of:0.08178369169778861 a:0.03904439136399566 to:0.03801794633564697 I:0.021384958613369056 in:0.01896871376639219 that:0.01818706310098092 at:0.015848295809690126 his:0.013470652816935788 for:0.012895390403161677 :0.012728319479876722 or:0.011126523326675852 The:0.009983886071069283 .:0.009811539731391566 will:0.009656999247884338 he:0.009119493040338522 they:0.008767124924228126 would:0.008549950562598383 :0.47348033689824304 +in:0.14991590318206124 of:0.1209398591194837 to:0.07834451347458347 with:0.045025032336516446 from:0.040918792491704215 for:0.03873328231398388 on:0.03234496445481239 and:0.031933724423831564 In:0.030166085650422156 upon:0.024097054184417405 by:0.022092548519012798 at:0.01839849579321132 through:0.015515935853952044 under:0.014946303696290079 that:0.010036824260624957 after:0.008568029538749444 over:0.005750480427829716 into:0.005026873105518554 but:0.004961068937205892 :0.30128422823578876 +not:0.1160782064231819 for:0.08998670965957667 no:0.07586017559382294 or:0.05540028773132444 much:0.05199691626002685 is:0.04857513073790313 of:0.04599744560247067 and:0.04572419934272023 nothing:0.04497806482304755 nor:0.04267316958463097 little:0.0409202469287961 be:0.03902734706250032 any:0.029719077762285013 more:0.023403442341466137 was:0.02303655081961088 with:0.02277745737003096 something:0.021586714238914156 far:0.020034392687046876 to:0.017727221200356705 :0.1434972438302875 +the:0.21186020557051458 of:0.17651010506395257 to:0.04642742916268299 and:0.045652108263819026 a:0.04008026766701444 free:0.03299268813837249 their:0.025890002525950962 our:0.021117827519525192 foreign:0.018780049449494657 said:0.018668572328408455 in:0.018597635773971503 his:0.017435878799697675 on:0.014865666615709542 tho:0.014301418935497728 The:0.01424544075215673 with:0.013496603096216224 by:0.011779530135334292 that:0.011291789418984456 for:0.010953053051623949 :0.23405372773107255 +of:0.6091108747419308 in:0.08976259670463543 at:0.0334898556573227 In:0.0287870979210314 for:0.028117926145786978 to:0.02736187701255549 from:0.0230761373297417 the:0.021701855866750826 and:0.020210394860371968 ot:0.009287246421319183 by:0.009009864649465755 that:0.006270960706030579 ol:0.0031858242834002346 on:0.0028992574649260488 :0.0024926404974275358 .:0.0020236489564450307 with:0.001955355383812319 about:0.0017128720349015812 than:0.0016207728389983612 :0.07692294052314605 +of:0.2917268351623647 and:0.08635478758094653 by:0.07644387211221426 to:0.07498956689763257 that:0.07309514938109743 in:0.06705300118453328 from:0.03799613467551662 for:0.03692653866970655 with:0.028065992939779065 provided,:0.025812309374190462 on:0.025181658504020852 In:0.01433826908553186 which:0.014288274129409919 upon:0.011707670743741358 at:0.011067001029860983 all:0.009221910280057397 That:0.009185702809103215 as:0.008633319367177433 before:0.008021653602937029 :0.0888903524701785 +and:0.11527369734927341 the:0.09045285102329298 to:0.04449623020662356 of:0.0430143681828904 that:0.018857849014843636 or:0.01873641684130401 as:0.017019945905364733 in:0.01543292520542556 will:0.015389670826759369 I:0.014349990449123384 he:0.01381978140173579 for:0.013757260745147286 con-:0.01371378517855115 a:0.013510292283002061 men:0.012761331070312977 which:0.012712544295984389 they:0.012327526242709008 :0.011300276222123845 would:0.011223361491252816 :0.4908498960642796 +the:0.14284921875732093 of:0.12932799852732116 and:0.12770017977875903 be:0.049478143513070234 are:0.04821670935896907 to:0.04182008378291304 was:0.041266992382064736 is:0.03932154240559049 as:0.03239376225452776 were:0.027704141338331805 all:0.025721639758526437 many:0.02425616506374777 or:0.020026946837198738 their:0.019169396652441356 by:0.019037192599326618 with:0.0181019431048229 been:0.01801248232898531 some:0.017678331315959226 in:0.017177412266218925 :0.13973971797390447 +to:0.11815428618928227 and:0.0852146912507816 of:0.058817150574563985 the:0.05091970927846495 in:0.026621834774410824 :0.016621463305097346 not:0.016575787425455363 I:0.014445653711014275 by:0.013489864125342935 a:0.013489366047260485 he:0.01288543895410413 at:0.012744580352905713 is:0.012462468927005322 or:0.012191891717805782 In:0.011605641097873442 for:0.011533720742248682 who:0.011244031111310823 it:0.011208393094641137 was:0.010839935064315116 :0.47793409225611583 +of:0.5120891008147278 to:0.12607799767944217 in:0.05732293385878176 that:0.041085783188699154 for:0.035821522200377015 by:0.028066878002531652 from:0.02038312979452289 with:0.02010805238757776 as:0.019839866471892096 which:0.01619811016070232 all:0.013523055520982322 and:0.01266705137230409 on:0.011837779686653354 under:0.009365732917370796 In:0.009209076214526128 upon:0.00898950037767867 over:0.007738891009849807 ot:0.007727073400911805 at:0.007375953431209677 :0.03357251150925878 +on:0.26827337383736094 of:0.22019935673876298 to:0.10018730441311724 from:0.041654720857774996 in:0.038174186164409166 at:0.03683339619478876 by:0.029428842094041386 and:0.028858596387332718 along:0.023604326426148337 that:0.02071607214276111 On:0.020616066866100662 with:0.019404838468924025 for:0.015398643894350549 over:0.01136232570797153 In:0.010815915963938137 upon:0.009527438862664033 before:0.007307087470181971 into:0.00707549529046452 about:0.006687802445128291 :0.0828742097737787 +and:0.05594915097438258 covered:0.02458573498550726 him:0.022387463818236624 together:0.02122747370255363 it:0.018154387555862222 them:0.016599757056576424 thence:0.016115310264928774 up:0.01367091344851418 but:0.012951998576784623 filled:0.012457892849013536 man:0.012174442763433333 away:0.011510570485418491 do:0.01015613413932425 connection:0.01011899029413128 home:0.009316895634828334 was:0.009291447094181084 charged:0.008255926123684665 down:0.008053678755872758 met:0.007859103820508282 :0.6981627276562576 +the:0.3237143008846295 a:0.2879642811337781 his:0.04329555212489522 this:0.030377863528391308 their:0.027026616028133384 The:0.025025225351209816 one:0.023069620063527942 first:0.017919122872072975 tho:0.016197428202259376 difficult:0.015069274113569344 our:0.014582252412332611 to:0.014450239742896958 and:0.013544183178392268 its:0.011768955920890079 your:0.009376544413442761 last:0.008817330127355687 of:0.008591696250362935 any:0.008087394130176027 that:0.0074647345426298 :0.09265738497905394 +in:0.21193841983136863 of:0.19673194555462667 to:0.11745276539749198 with:0.08082146793925349 for:0.06267781141356575 In:0.04625822720326372 and:0.04345507625357922 by:0.028525129037489813 that:0.02796213813212197 is:0.02033270338622977 as:0.019368874223669758 on:0.017461565887828837 from:0.01541889977400427 upon:0.01233377000556739 under:0.011809205313659825 into:0.009738805377165406 all:0.009236079664265106 not:0.008927094155420002 was:0.008115528082393434 :0.05043449336703495 +more:0.4310705316291733 less:0.15632319038130857 rather:0.06110111694270524 better:0.038642804337337834 worse:0.017117644494043807 other:0.01649005566199778 greater:0.015021029223112513 higher:0.01102119545101921 lower:0.00879039411536375 moro:0.00853831462559564 larger:0.007835085261698472 and:0.00736794233490985 More:0.006540250136523236 faster:0.005740761757319982 longer:0.0056960491360392735 mora:0.004841408566058332 it:0.004583643596866061 leas:0.004575310776690073 time:0.004148439686842577 :0.18355483188539454 +a:0.23260523094369032 this:0.18819816950433227 the:0.10435863553423069 news-:0.03256578385685743 of:0.03091329835758868 that:0.0307877804209845 and:0.0275746366881195 any:0.027130633989304247 in:0.026956660191163245 his:0.02550552196827219 said:0.01757067660568516 such:0.015305101030929916 other:0.014632841196502423 one:0.014123569539091942 same:0.013837442926971895 to:0.011745758251595682 This:0.009408837546024873 or:0.008967097676379095 on:0.007532558395411342 :0.15927976537686458 +Miss:0.08954972877677535 Mrs.:0.05956433381618397 Mr.:0.059313726563879 of:0.0553830150163723 and:0.04290238750879865 .:0.04121076408301295 the:0.03341913394286467 John:0.026303181116307386 General:0.020632931806241907 W.:0.018284130817092327 in:0.017226736062643466 A.:0.015212573513332819 J.:0.01511064297314503 at:0.014972579267044907 St.:0.014300804537680322 H.:0.013513819550606682 C.:0.012633622840279173 Gen.:0.012460569660383235 :0.011800128250972144 :0.4252051898963837 +a:0.32327353744175236 and:0.11113521282207824 the:0.1106358301723975 of:0.04317441926455139 to:0.03690966730072441 his:0.021244390088199526 or:0.017522308796983913 for:0.0167327195481054 A:0.0162528696500082 by:0.014435329101796712 said:0.013806548717008739 with:0.011473440468474875 that:0.011450012653357171 The:0.00986216076457132 her:0.00962759457361999 was:0.008937567012410724 one:0.007189894383896049 were:0.006996259428063813 this:0.00682102594977704 :0.20151921186222266 +the:0.2173801581433152 was:0.07426004007812514 and:0.07045852762278228 is:0.06880889453919833 to:0.06665193087272392 are:0.0664363474904035 were:0.04381666080183576 not:0.03388094290291052 of:0.03342549998526732 a:0.0307237874162325 his:0.03063989461876354 be:0.030304062249364657 with:0.022399164111266832 been:0.021343565473575663 for:0.021145508204583906 its:0.02058635960431898 their:0.017175447897028434 by:0.016463547969037994 The:0.015294614830308402 :0.0978050451889571 +a:0.3672930336530418 the:0.28547785373311474 and:0.03355357479708081 any:0.03092179869512963 every:0.02824802244286171 The:0.024057115595239167 this:0.017698639592587204 tho:0.017137010220431053 or:0.014712858249048175 A:0.01375074553855174 no:0.013731852646166737 large:0.012933766322867133 that:0.011409256926960033 first:0.011157368779106521 great:0.010491797015560017 of:0.009470253404126402 whole:0.008680656581958565 one:0.008185281194917855 other:0.00762026114749295 :0.07246885346375781 +about:0.2454195284009034 and:0.09011556315616262 of:0.07481418517052733 the:0.07416464576331043 point:0.04115362294873953 at:0.03620388024677377 thence:0.029196722527123815 east:0.027387567545808095 than:0.025776891923191464 west:0.024745391282399633 nearly:0.02110845399486486 be:0.01974172830192018 as:0.01878673732836834 over:0.01876550847087495 street:0.018596456312912533 south:0.018595401637538183 was:0.01716849968331762 or:0.01689680300233879 to:0.016466829430138837 :0.16389558287278558 +the:0.053707502395674456 and:0.04497830247107478 I:0.033422760547055626 -:0.03127985935526965 to:0.025248897460496335 of:0.023894690866255192 t:0.022670952328704617 i:0.022205546641736185 a:0.022023509938537286 .:0.02110883186168437 that:0.02017383142125219 :0.015365817372736724 which:0.015293574944296801 it:0.013669524979460222 1:0.01225804518057104 an:0.011008596197488096 for:0.010892019149190234 not:0.010777326981145745 by:0.009774536742533197 :0.5792458731648372 +it:0.04937403539052668 and:0.030102994093268987 three:0.02390019009162369 It:0.022933954417611153 man:0.020601365744091195 .:0.019387635316091636 two:0.018675339457384546 was:0.01778681846473043 a:0.016459314007183697 other:0.015771492883889418 feet:0.014820066552991671 live:0.01380083839699199 that:0.01236965863908338 -:0.012308449253835146 of:0.012263767161493407 one:0.01179446661208841 be:0.011382484214664649 :0.01131765195706438 on:0.010691013822862765 :0.6532584635225228 +no:0.5430682343705789 No:0.1256818477132414 a:0.05827810688373408 any:0.0422688991810152 I:0.029712843652922368 the:0.025347508528490322 we:0.022589923835000855 of:0.016855312942991564 an:0.01580000675757751 little:0.012895292365030153 and:0.012287064476728124 We:0.012286733607710598 to:0.01035925669209524 that:0.008901409581677608 not:0.008625184728970952 some:0.007408696739046707 for:0.005783607898004141 had:0.0057042604845071575 or:0.005140126079681147 :0.03000568348099596 +the:0.4481842331868869 a:0.08671790773893827 of:0.04408770861664703 The:0.042730130193668135 and:0.04048074336563279 tho:0.024705178962216582 in:0.02427902770113145 an:0.01455892792071512 tbe:0.014407152975335267 on:0.009614969271779 his:0.00916232085067234 this:0.00869496697967962 said:0.008513456260142736 for:0.00795883345972383 or:0.007919552601188873 to:0.007094242147902667 that:0.006658255658501198 :0.006155223489246237 by:0.005856812981016584 :0.1812203556389754 +and:0.26406058157038126 he:0.04922179943984195 is:0.046553213693640134 He:0.04519762922655248 was:0.0402895014845095 so:0.03877713557285093 it:0.031183883987691192 I:0.028016706238029817 which:0.026172033188911373 be:0.023122126230595067 all:0.021961179694341193 as:0.021873757148983583 It:0.02169391740294603 to:0.017348179632954156 but:0.015511564842118639 who:0.013351132577421024 more:0.013028788848423354 not:0.01295838850283919 she:0.012778808671804998 :0.2558996720451641 +a:0.09390621242333383 of:0.08507358285019104 the:0.07342525043579998 are:0.06330309627059662 be:0.06213236275795112 and:0.06178708154389615 any:0.050975261311842254 is:0.049209408203832315 as:0.04841086816998662 so:0.04280106443672592 or:0.039522414217532366 was:0.029919437136290694 been:0.027985707349221636 no:0.02784661600853508 were:0.027409013155920755 very:0.026020210304849283 in:0.02324923981872225 too:0.023107207627449527 not:0.02289460752117015 :0.1200213584561524 +the:0.26583281438703404 The:0.10548431786870666 of:0.08852413989982133 his:0.060436023937969735 said:0.04627840066756979 a:0.04064080602891085 this:0.03567625302451302 This:0.02441843572509294 that:0.022364988752769707 my:0.021582954426990347 and:0.01978897074719577 tho:0.019681926845650934 school:0.019407181534829603 her:0.014913745666882673 other:0.014336254778977715 in:0.012786593543050836 old:0.011469769709000195 His:0.01117041869363543 our:0.009836771333819402 :0.15436923242757902 +of:0.15533323489764053 and:0.10962438098119039 to:0.048467138811360555 said:0.04471779895777477 in:0.03238523475595602 by:0.02665846206290426 fact:0.02310899777597775 so:0.01745610797341621 says:0.0171374659611707 given:0.012364932319797661 say:0.011740552797243353 on:0.011390375784485986 believe:0.011140671908250039 found:0.010829827792495634 with:0.010466941328964448 is:0.010332918354918706 from:0.010089399053055226 as:0.009147511512516289 all:0.008300393418243334 :0.41830765355263816 +number:0.07131648407437217 amount:0.05601988798705698 out:0.040749527190214935 kind:0.04001085471568943 plenty:0.03673121187612856 deal:0.03628179324675897 lack:0.03562675751802065 purpose:0.03174560588819919 means:0.02709427013221596 sort:0.026486227842976554 method:0.023676331279940337 want:0.023286050584018694 place:0.022176614704264134 loss:0.02180869659081074 source:0.021229374926373636 kinds:0.020760507741904268 matter:0.020632742745539126 system:0.02000466403099835 piece:0.019284224576878894 :0.40407817234763843 +the:0.21522391487348358 his:0.1560312262812668 of:0.06817394316290254 her:0.06164787592495468 their:0.058171770868611174 my:0.04291689276101683 our:0.03767417375852205 at:0.022706860764053406 and:0.022480014415224223 its:0.02203667134970269 two:0.016362433259815377 tho:0.015614281843787468 a:0.014564129330414479 your:0.014247781416803669 in:0.014234401611621428 The:0.014234267859690961 with:0.013282284651145273 old:0.013197183063662458 bis:0.012075327985220286 :0.1641245648181006 +No.:0.10177235696823399 and:0.04154366552067705 March:0.0310084526907434 .:0.02900587760152453 April:0.025937703585047562 June:0.024664925686594782 July:0.024256163585921208 Miss:0.021785266450360864 May:0.021683805054449605 E:0.021300781169114352 Sec.:0.020688946371058562 January:0.018418317370636993 Section:0.017359321878160472 the:0.016566294901822008 November:0.01615139805843324 August:0.013591771063072852 of:0.013063315065597547 Mrs.:0.013019473382002416 lot:0.0127371898278609 :0.5144449737686876 +of:0.09129790931378902 the:0.07369883040827747 and:0.047842263382354346 in:0.04189055351593407 to:0.04045875475680249 a:0.03542341257202578 be:0.02020462051672066 for:0.01979292654746225 was:0.01760256398103379 at:0.017380150555488715 is:0.014984483003968216 with:0.014047653760730413 by:0.01374644383819499 :0.012670486581795598 In:0.01200961464556976 or:0.011563835749786333 from:0.011391516893522809 are:0.011273104484969465 that:0.010755276030689069 :0.4809655994608848 +the:0.28952699607261256 a:0.07376696095203068 and:0.03701999160510601 The:0.03411033136086522 large:0.03188145213072601 tho:0.0242494334484835 great:0.02339261078113719 of:0.022202568316776687 A:0.016973811381973437 per:0.016690977566850267 Republican:0.015558927123259628 an:0.015157439545839724 by:0.012933740951029732 young:0.012790828711105706 first:0.012018257722191545 one:0.011997808371933861 tbe:0.011794824083378959 good:0.01146876611213927 every:0.01097287436578783 :0.3144913993967722 +and:0.12779248258901427 was:0.09981525254620814 I:0.0980081429712582 is:0.06301315998420916 he:0.0563705740029769 be:0.03942984234383318 had:0.03753829718705555 are:0.02899052373531906 but:0.02727585501186525 He:0.026672614580472168 it:0.026297175771845677 she:0.025894265546140376 were:0.024418510760411637 who:0.023102160906955386 have:0.022299377454725242 has:0.021465748697803957 that:0.019751148352695234 been:0.014537658109376404 time:0.01429309545324155 :0.20203411399459267 +it:0.18824444354263953 It:0.16224308142205227 which:0.08846649674768192 there:0.06534241358673389 that:0.04767420376948115 he:0.04657857421774823 and:0.045069710445806384 There:0.031176327820288886 who:0.029161504151776648 He:0.023202595323258343 what:0.01979416986175424 as:0.016356994377417434 This:0.01580177516559825 she:0.011229530727039952 this:0.008600566624229759 but:0.0077924215875666706 work:0.007493411398377075 man:0.0072183800760782305 country:0.006747276985140256 :0.17080612216933086 +of:0.2874486607680801 to:0.08538807576215737 in:0.0793845542630745 and:0.06242423999405567 for:0.05458595746382627 with:0.048870308074112245 by:0.04660208436458659 that:0.04320913553425403 from:0.035827251366334585 on:0.027606086785271513 all:0.017996717768153415 at:0.01699959601915592 In:0.015025681801330676 upon:0.01438963563781032 as:0.013659127412948207 is:0.0101515085275436 was:0.008670205457017984 under:0.008262726516261998 which:0.007929944129506953 :0.11456850235451806 +was:0.15558107635326882 has:0.0982925525663235 is:0.09256212688977922 and:0.07960641043177631 be:0.07224800618258381 have:0.061897377794424745 had:0.05616905471239299 been:0.042332510340612965 were:0.03536732774560701 but:0.027384598847583565 will:0.02306944313463251 a:0.021494566680808208 are:0.021253080053011332 it:0.021180863890854787 not:0.02015459381044744 Is:0.01860876566156811 that:0.016661711738855615 as:0.015520284812146566 which:0.015517520596805588 :0.10409812775651692 +the:0.1431784636192142 in:0.08546715018303981 of:0.061827868482277164 and:0.05515926602171052 a:0.042012188383834054 to:0.03669876513267094 that:0.029102809625610862 any:0.025586059892900793 for:0.023711907727086652 In:0.021811671153109335 by:0.02014212667595045 which:0.01882503782020094 with:0.015376830836276965 no:0.015115052028461811 in-:0.014754516730222118 or:0.014244168794809275 an:0.013864018900880586 The:0.01226227609060653 :0.01213685844607588 :0.3377229634550611 +;:0.018609647724095582 up:0.01517762339515 them,:0.007770843085139402 it,:0.007577317004817694 in:0.007515780039806332 years,:0.007392815747483961 States,:0.007242628500493253 him,:0.006980548210693209 and:0.006708826709574082 here:0.006621983723072575 men:0.006541459580253914 time:0.006136371586258216 him:0.0058963543728981615 :0.005698696591522269 mortgage,:0.005416165417450788 them:0.005367693899494284 county,:0.005336664703716902 ,:0.00523830544223361 time,:0.0051854453947516276 :0.8565848288710941 +for:0.14852819148255642 and:0.11835413006167377 the:0.08053185410050911 are:0.07334486465635309 is:0.06803165633288022 was:0.0661708559040899 of:0.06192164726548755 with:0.04103465835123843 were:0.03396590267902196 by:0.032127508931493444 in:0.02511490843617784 had:0.024213164141761966 have:0.020418589248959486 to:0.019646927191861757 has:0.018814486563838086 that:0.01800370648794885 but:0.015600769938490692 from:0.01375389671037706 been:0.013401294493642722 :0.10602098702163762 +the:0.11919516938815296 of:0.07230453158552728 and:0.05781056740443249 a:0.043018564803886335 to:0.031305092790907506 in:0.020848713353460488 at:0.014270110001066288 .:0.012526810245749479 :0.012413283442322082 for:0.011719122709941797 by:0.010808400946589808 or:0.010404172990115616 The:0.01003576004804544 with:0.009811868184449042 tho:0.009295902015355835 was:0.008924239095331684 that:0.008672304223433876 is:0.0085591147338948 be:0.008335143826716943 :0.5187411282106204 +of:0.36018266240501834 in:0.12786055144131786 to:0.10210593709436343 on:0.055674493460859335 for:0.05322642834751104 from:0.049909358466870654 with:0.028038306548437267 In:0.024841535480120275 by:0.021551008716321575 over:0.020719945831726302 at:0.02067118551915341 and:0.01999791840532774 into:0.018263242175523223 upon:0.012629207497267954 that:0.012584173425293867 through:0.010697611179439712 all:0.009843356013765106 about:0.006708954741246314 than:0.005447625321135398 :0.038046497929301155 +the:0.11919516938815296 of:0.07230453158552728 and:0.05781056740443249 a:0.043018564803886335 to:0.031305092790907506 in:0.020848713353460488 at:0.014270110001066288 .:0.012526810245749479 :0.012413283442322082 for:0.011719122709941797 by:0.010808400946589808 or:0.010404172990115616 The:0.01003576004804544 with:0.009811868184449042 tho:0.009295902015355835 was:0.008924239095331684 that:0.008672304223433876 is:0.0085591147338948 be:0.008335143826716943 :0.5187411282106204 +the:0.12154072769599582 of:0.09241076192938051 in:0.04672984189110966 good:0.03792043597135259 and:0.037104858435650916 said:0.03512465203562767 milch:0.030976981868799252 on:0.02698868102600793 their:0.022083784703874457 for:0.021331711492400617 his:0.01928984514069031 other:0.018791124216245524 by:0.015965989216034756 great:0.01464365531789476 with:0.014589629444254586 are:0.014406538688062553 State:0.014351840742488249 a:0.013891955218160184 county:0.013050226904468111 :0.38780675806150156 +of:0.25788879468628384 in:0.07786755732371478 that:0.07392871044595846 and:0.06610641060884473 to:0.060953131996635435 for:0.051940906851158965 with:0.05020155412495243 by:0.042657284128565814 In:0.03520328860272893 is:0.032275103439930196 from:0.02770374479133931 on:0.0174183533939273 all:0.016808309109312594 at:0.01667920669902295 but:0.01644026741349106 have:0.013041297559225614 upon:0.012131730560921984 which:0.011096117930982407 as:0.01089798109456092 :0.10776024923844228 +and:0.08832934385398629 him:0.026983886122743477 application:0.026114251583320973 was:0.02489894908956569 it:0.023075411912330694 up:0.02251060273927451 made:0.02033127255167498 out:0.019486588030277113 time:0.018903019749807147 them:0.018632082326077732 used:0.016786364428856393 but:0.016269712072418657 ready:0.01618805525798725 is:0.016020989807641675 not:0.01564434704203927 demand:0.015432404580140367 asked:0.014792759533761007 that:0.01442331755080464 work:0.014074418411123594 :0.5701022233561686 +have:0.3256425597567394 has:0.3036725187179764 had:0.17049858259030448 having:0.03989990655764436 not:0.035414129309831205 ever:0.015449752224445905 already:0.012521800294905962 lias:0.011679521384450265 never:0.011325692174167052 yet:0.009064050146960602 bad:0.00742319793279616 havo:0.006842014264247167 always:0.005129646481022057 just:0.004190440551912904 haa:0.0037859444224824694 baa:0.003599003880744397 long:0.003031378968808111 bas:0.002660390931485972 recently:0.0024546092796395714 :0.024714860129435592 +the:0.33194718351986563 a:0.1358300031750281 first:0.03950530923550079 of:0.02823894928555112 said:0.027704696769508735 tho:0.024479582800844776 certain:0.022763247130295452 The:0.018998129638307184 and:0.017785488918370305 other:0.01710745951172157 early:0.01709138539511185 on:0.013041886060419153 principal:0.012984466541190532 by:0.012264468962417762 new:0.010267185651373363 in:0.009991894193173827 small:0.00986761280719919 one:0.009852019649754611 tbe:0.008844786935894524 :0.23043424381847152 +sum:0.03352282876311118 number:0.028116684882597106 line:0.019995206059833036 city:0.01946514558931857 out:0.019275318828420953 day:0.01666865340772654 county:0.014872697538657208 amount:0.013254184849875051 Board:0.01252325449624941 town:0.012449555905674143 side:0.011663975251122375 part:0.011517157473718155 County:0.011460540331966697 state:0.011087331502382173 City:0.010878919191854432 purpose:0.01081028255427907 and:0.010297866493795984 way:0.009848747943663767 name:0.009522170936943183 :0.711769477998811 +It:0.2542294303873996 there:0.12782348782792471 it:0.08171619760424016 There:0.08125995832975863 This:0.03410219657576603 which:0.03172832127680203 that:0.028847145217911582 he:0.02710183567971819 and:0.016257629805421062 He:0.016193340871905267 this:0.01269340954349872 who:0.010004949206161885 I:0.007318147523309761 That:0.00711215131531512 thero:0.007060289432647929 she:0.006272120367336847 Here:0.006024515156153281 :0.005841883153821616 what:0.005699859256345203 :0.23171313146856237 +there:0.030775791324127565 ;:0.02488514845579731 it,:0.016751827157235066 them,:0.01581401549464081 it:0.013806937575926168 and:0.012035152916040986 up:0.00859255928952378 him,:0.007630422275880108 hundred:0.007405585519815486 time,:0.007157492425509497 years,:0.006815449388352401 is:0.005972187306919465 It:0.005377170884203203 year,:0.005248397672140971 them:0.0051982931834187365 in:0.005145687133930113 now:0.004845875766335035 out:0.004845547982937599 him:0.004832681245666131 :0.8058637770015995 +and:0.09915304266793208 of:0.06981104076239779 to:0.06732356171661896 the:0.05536474173838922 in:0.04925709229562873 or:0.0454037384976941 that:0.03188561140025972 con-:0.02827581767730588 for:0.028180298997483467 which:0.025602761076896387 :0.015330503282880497 re-:0.014740656597127538 in-:0.014181138214877915 I:0.013691871691755566 In:0.013300809351990706 by:0.01318174906867093 as:0.011274765016599454 not:0.010773902750532315 be:0.010247141295554523 :0.3820197558994042 +I:0.12122015568441931 they:0.10498430199722575 we:0.10084306779963605 who:0.0961675658117177 to:0.0908642183711721 would:0.06412052799001917 We:0.0526042602202838 will:0.03159040916037953 you:0.029697249021128032 must:0.02692326054507869 They:0.02620573069846208 shall:0.02518814323240324 and:0.02516468914988132 should:0.023549977250669832 could:0.019806060282691947 which:0.017893063369596653 may:0.015451708180075052 not:0.014893066441787443 1:0.014341048977707983 :0.09749149581566433 +line:0.04536417188483262 and:0.04453172186739843 street,:0.027055190225665188 difference:0.017462865391869566 street:0.016840087725981518 that:0.014844511343004616 way:0.009264679072736481 relations:0.00911774203044788 war:0.009020361792915465 said:0.008060115924748484 communication:0.007164153957364431 up:0.007051106776010943 avenue,:0.006549228991809863 connection:0.005954886411559596 as:0.005742289463783187 it:0.005714758114023493 road:0.0054233354188779085 all:0.005381454037775424 distance:0.005227534733030731 :0.7432298048361642 +the:0.38849116154454605 a:0.29211536883098627 The:0.04243508804454097 and:0.02279058341522078 tho:0.021622794358021235 A:0.017428977565530152 or:0.01378682429196601 no:0.011112061009970847 great:0.010428416062463731 any:0.01042730130368388 as:0.010062219169408575 tbe:0.009526397247063929 very:0.009152587617120634 some:0.008034278958973568 every:0.006798178139485205 all:0.006588848025419252 large:0.0064650141720388726 little:0.005650162730899952 of:0.005515162163957681 :0.10056857534870238 +of:0.09129790931378902 the:0.07369883040827747 and:0.047842263382354346 in:0.04189055351593407 to:0.04045875475680249 a:0.03542341257202578 be:0.02020462051672066 for:0.01979292654746225 was:0.01760256398103379 at:0.017380150555488715 is:0.014984483003968216 with:0.014047653760730413 by:0.01374644383819499 :0.012670486581795598 In:0.01200961464556976 or:0.011563835749786333 from:0.011391516893522809 are:0.011273104484969465 that:0.010755276030689069 :0.4809655994608848 +and:0.15954896509628302 fact:0.06250413334095033 said:0.05065834510086072 so:0.041377132404438896 is:0.035044982477999385 say:0.031238107057586156 was:0.03080136861091614 him:0.030163903722579304 found:0.028801317587840422 know:0.027089045931031216 show:0.02253951910492264 stated:0.020965932865206496 says:0.020478382261860294 believe:0.019460213424765792 but:0.017059185035050474 thought:0.01632135970667961 see:0.0159709956695605 me:0.01535960772741225 told:0.014380823351940667 :0.33923667952211567 +a:0.32509152152277376 the:0.19548465401390752 and:0.04200373874262125 little:0.03170450146184146 as:0.02639361337963084 that:0.017860525154821307 two:0.016093564734874968 was:0.016087841780739194 some:0.014824357750045418 more:0.014785150171901134 The:0.014613039171107926 any:0.013730702550277987 one:0.012654088498217936 is:0.011050724765735622 much:0.010963100795265926 A:0.010264558148695396 no:0.009850038804264168 her:0.009463556592783974 his:0.00931311118046713 :0.19676761078002708 +in:0.42391504424039606 of:0.18054440131750035 In:0.06225245760200487 Sierra:0.05067154220692683 and:0.03396044598861788 the:0.02573280050151335 by:0.022496800394309725 for:0.01997071538565568 a:0.01894901171635435 that:0.013931363088163793 to:0.012722409929250767 from:0.010917086112263231 at:0.009104137561844049 with:0.006988140872296151 or:0.006775056841967273 said:0.006334330591071708 iu:0.004082758268089108 as:0.003678674187823251 his:0.0031322017121993354 :0.08284062148175227 +.:0.04026597725894632 Charles:0.038029547118930744 the:0.028575813117602166 of:0.024560853913402396 said:0.022564321024097916 John:0.020942730515724324 Mrs.:0.02068665332125633 Mr.:0.018389932681294307 George:0.017034869909393277 P:0.016474154462628694 Franklin:0.014709435043236244 James:0.014188084248091431 Water:0.013954784034686703 J.:0.012788446589046857 :0.012221303032999167 H.:0.010940760514794704 C.:0.010739603501125246 F.:0.010628002219662647 Public:0.010445567030058237 :0.6408591604630224 +be:0.264342266629553 is:0.09356889655116059 are:0.09252357971195661 as:0.07572501466087522 and:0.057722137773803694 been:0.05520962956536525 was:0.045827403379486036 were:0.027628909124827898 amount:0.02175759622845616 it:0.020294583013065873 he:0.016826974245714704 not:0.016286184761278532 now:0.015693269671608567 being:0.015658324673579287 bo:0.011935747203915084 the:0.010918556512740662 land:0.010602861448165874 Is:0.010536216838734546 hereby:0.009718900471738543 :0.12622294753397384 +one:0.2423541637810063 two:0.0717426825340898 week:0.04273668508000933 three:0.042176344231580815 day:0.03933233612599987 hour:0.03193132107530488 four:0.031392174194954874 five:0.029614200519097397 six:0.026017053713748385 year:0.024505451071782137 ten:0.023440072027115552 eight:0.01530659538858556 hundred:0.013407104151612927 on:0.011300731927552212 seven:0.01093848264562386 more:0.010159055935323498 month:0.00929615456910481 action:0.009011196776785546 thirty:0.00841612816331673 :0.3059220660874055 +of:0.2273261084749116 and:0.06708247355839056 the:0.05139930228608668 to:0.04559015068742777 by:0.043890873118828264 with:0.030217388802536733 :0.02883288610816281 in:0.022437160301149856 from:0.014905227140956451 for:0.012692690753606751 .:0.010411322730880667 St.:0.009733913471173423 his:0.00919132149515074 Mrs.:0.00825717165469855 at:0.00803705045011316 near:0.0069517321462846575 said:0.006618400641617323 that:0.006240124207862674 between:0.005606046709705743 :0.38357865526045554 +of:0.29214725254257534 the:0.07502244650835033 to:0.05812357061781933 and:0.04777521741089315 in:0.04721294441091212 their:0.022464735027284393 on:0.021473432725254017 two:0.017684435104915394 other:0.016359622336711274 for:0.015279359508601919 by:0.014218637869434246 with:0.013601141125600003 In:0.012223815622928094 this:0.011873142134428583 from:0.011128939891113672 horses,:0.010936047953299161 some:0.010416341621824808 more:0.010324384505253047 that:0.009996302091253812 :0.2807382309915473 +of:0.20490138124969515 with:0.10701758127616066 by:0.0739805138964743 and:0.06696937981328567 to:0.06014265623632786 that:0.054317728083870934 in:0.05254814157399606 from:0.0343907265287196 on:0.021808205360527542 for:0.016713919676000274 upon:0.013548098444080779 told:0.013072001544714024 as:0.012087700336974365 but:0.011728173102814408 had:0.01126881918741642 made:0.010577222121803304 have:0.010505621999668495 In:0.010410082956214789 saw:0.010154205585948239 :0.2028578410253071 +the:0.39749834532651884 a:0.07520030034269234 and:0.05540858759821703 The:0.03273515726769502 tho:0.030061875542463562 of:0.020144331424922633 tbe:0.014929647509541684 in:0.014268129706664795 or:0.013333166761078447 .:0.013287381914101323 an:0.009000188755386574 to:0.00880680429595084 :0.007943763822197133 Mr.:0.00773879605474787 by:0.007328417831573476 as:0.005922572098978465 for:0.0047526933692942485 that:0.004736121968310169 on:0.004594595720579333 :0.2713091226890862 +at:0.15778055778949782 No.:0.0749738654823242 and:0.056532857262899285 of:0.04890580562367374 the:0.03356658043613849 lot:0.02559566579685953 block:0.01977085311069231 Range:0.019519062209269498 @:0.018432495253906344 to:0.017210266950400007 about:0.01632256953119777 June:0.015451438118257714 Mrs.:0.015101280442494999 by:0.014494164247364457 range:0.013850974457675271 Section:0.013528140186595036 from:0.013244606729599534 No:0.012383946109325285 Mr.:0.012101243421712735 :0.400233626840116 +of:0.33353818923779394 to:0.11929177093985609 by:0.06751802191935871 that:0.061783485813903916 on:0.04859057512701071 at:0.04559796382393963 and:0.04330767079384759 in:0.040819796124230326 from:0.030633845535566515 with:0.02061902141749736 as:0.01561815425702634 which:0.01449569672366731 for:0.014031457409932144 upon:0.01135734424077688 when:0.010972540678358797 before:0.00883076281140918 In:0.008394709788897513 into:0.00812900581920479 along:0.007918745718282603 :0.08755124181943966 +and:0.08995317707915026 to:0.06844710404109794 of:0.04605142056172993 the:0.04074574508561307 which:0.02479116931334353 that:0.023764822140213245 re-:0.020841117231308055 in:0.020803825395358622 for:0.020278423301550053 :0.018417753428486977 not:0.016860793136637672 con-:0.016444405871234195 is:0.014386481772210856 or:0.014080680914153714 be-:0.01352268143271276 I:0.01317002660943805 was:0.011429878269381662 dis-:0.011196807025842847 he:0.01113106290024311 :0.5026826244902934 +of:0.1349980017924175 and:0.1286106010292994 in:0.09530174102145933 by:0.0900170628179813 the:0.08118241964008166 with:0.041246240998430904 In:0.03795411658535034 for:0.036066442960487645 to:0.03210011310536404 After:0.031359124058249685 are:0.03050137522856784 was:0.025811786943893508 a:0.023939340790585444 on:0.02015944574588332 is:0.019827917274926356 his:0.01928304930455535 after:0.01604977050835674 were:0.01596042760967476 that:0.014745324740331897 :0.10388569784410298 +of:0.09129790931378902 the:0.07369883040827747 and:0.047842263382354346 in:0.04189055351593407 to:0.04045875475680249 a:0.03542341257202578 be:0.02020462051672066 for:0.01979292654746225 was:0.01760256398103379 at:0.017380150555488715 is:0.014984483003968216 with:0.014047653760730413 by:0.01374644383819499 :0.012670486581795598 In:0.01200961464556976 or:0.011563835749786333 from:0.011391516893522809 are:0.011273104484969465 that:0.010755276030689069 :0.4809655994608848 +and:0.06232717089172066 the:0.05863180421584966 of:0.054619742573041676 to:0.05094017949147857 a:0.03448319597509403 was:0.02872467329911112 at:0.022064736827726063 be:0.02161344427455236 is:0.015863903672139225 by:0.01491423247268976 in:0.014180516418422648 :0.013170594521421733 .:0.012756539136761263 his:0.012666413941137388 not:0.010389291394563646 been:0.009806109026656188 that:0.009755543391540611 were:0.009575941368441313 her:0.00902549704030403 :0.5334904700673481 +the:0.18941070485687136 of:0.07390279899818201 and:0.06570082437222247 a:0.058469243590548274 in:0.024856988432496216 to:0.020873147706783023 for:0.018682659686982638 or:0.017866694612114674 that:0.017028564531941848 The:0.014409173905624696 tho:0.013452762362497402 any:0.012264366938919611 their:0.011649091646265465 other:0.010378896202069391 his:0.010181810078543935 by:0.009890952379887743 :0.0098587277099488 at:0.008693303303851414 with:0.008048251693860238 :0.4033810369903888 +have:0.2569782513131765 had:0.20365205056377766 has:0.1025492705790763 be:0.06300226075231356 never:0.05210117047523992 not:0.0330241412468259 ever:0.032952343466248056 was:0.031963013025316664 and:0.03010928340278004 he:0.01898107397356184 been:0.01643999794412666 having:0.016134177332485955 I:0.015360117789321883 is:0.01235640403960186 who:0.010660285010627645 they:0.00924306812762489 were:0.007865600517475901 are:0.006923534047716575 it:0.006853164780077833 :0.07185079161262437 +foreclosed:0.0826326115191591 accompanied:0.05930666942049243 made:0.05336585618201428 and:0.05113808815574321 followed:0.0477509052190524 surrounded:0.027001067213274173 up:0.0223956915218854 caused:0.01986528146981332 secured:0.01963201700061169 was:0.019527138795776604 ed:0.0163892391762384 it:0.014428341647705614 occupied:0.014047766264405974 him:0.014002524716027894 surmounted:0.013411064770142235 given:0.012603829803430331 done:0.01236267211154264 covered:0.012285928470556887 that:0.012257320636555267 :0.47459598590557217 +and:0.09915304266793208 of:0.06981104076239779 to:0.06732356171661896 the:0.05536474173838922 in:0.04925709229562873 or:0.0454037384976941 that:0.03188561140025972 con-:0.02827581767730588 for:0.028180298997483467 which:0.025602761076896387 :0.015330503282880497 re-:0.014740656597127538 in-:0.014181138214877915 I:0.013691871691755566 In:0.013300809351990706 by:0.01318174906867093 as:0.011274765016599454 not:0.010773902750532315 be:0.010247141295554523 :0.3820197558994042 +to:0.09510176257557867 and:0.0759782477397007 of:0.044882537993784916 the:0.0315600709783228 is:0.027469709441114137 in:0.024414242512733896 was:0.023644505786906175 con-:0.02072663556943141 will:0.0197525729259325 re-:0.019515757684955143 he:0.01933396268374066 I:0.019168528042120436 for:0.018758717550584603 be:0.018539065847662673 would:0.018528419960293203 that:0.017041510263127942 be-:0.016586329410835588 there:0.01648203693916975 not:0.016023551150036123 :0.45549183494396867 +the:0.09197324717258726 of:0.09194531821371187 and:0.07939011872394025 to:0.06544688338200944 a:0.03315857698858228 not:0.024583989432758847 for:0.023288981537040364 is:0.02067569093426522 I:0.01781539850937077 or:0.01646573544168739 that:0.01638884525808575 be:0.015270921056473498 with:0.015234093204560883 in:0.013795225302943265 Mr.:0.013576824592297714 will:0.013412982304379407 have:0.013241862436964184 was:0.012501265354230424 it:0.011331432640589355 :0.40950260751352185 +one:0.1028303141280697 part:0.05963429477052991 out:0.04766456937681193 some:0.031418679026461914 members:0.030764490253327767 side:0.029940657362655835 portion:0.022063658796890564 office:0.020457735219956013 member:0.019726706386316174 end:0.019666887540649894 tion:0.018667441728710307 parts:0.016814747270460957 people:0.014112771422418794 all:0.014072739582212475 any:0.013183573287639892 One:0.013083578354183906 that:0.013024335602903442 account:0.012482348155001894 many:0.012077825070275192 :0.48731264666452345 +the:0.4945938444711068 a:0.23318737278464222 tho:0.031002949658061066 The:0.02841019171951111 on:0.016444888064658183 one:0.016080801484160915 tbe:0.010282784943202462 and:0.009551989418446798 of:0.008445044439892697 in:0.007054326804214859 linear:0.006588036996659836 first:0.006206285996723647 per:0.006184923696420129 two:0.0058939640544166914 square:0.0055986428742300955 every:0.005514567804279996 four:0.004996759145825659 some:0.004991965502829753 or:0.0049010482461301855 :0.09306961189458689 +with-:0.05831648684630747 and:0.05553969733695175 find:0.055402678280736174 pointed:0.04834593119944516 go:0.04308656681492487 carry:0.0426486253296774 get:0.03559272844419099 brought:0.03528331343427266 went:0.035072511760528835 taken:0.03362255282729403 come:0.032472162886387476 them:0.03130878557942161 carried:0.02879822300854223 came:0.028184375386178153 it:0.02536050940986234 laid:0.02420933491326844 carrying:0.023980571290292407 him:0.02044299719320994 made:0.019865487627193017 :0.32146646043131505 +at:0.22516548592203864 the:0.15680728856769674 be:0.0983098351890377 was:0.06803742572466902 a:0.052665483723849556 is:0.04240183320742809 of:0.03500622100366845 have:0.029459850024885815 been:0.028847164283371203 were:0.02729823587227087 not:0.02700140182760269 this:0.022495114351210405 are:0.022028044637790244 and:0.019605315894812205 had:0.018460297131404374 being:0.015921407747030242 to:0.0153533966507774 very:0.013988586166685517 so:0.011813352304433608 :0.0683342597693372 +one:0.1028303141280697 part:0.05963429477052991 out:0.04766456937681193 some:0.031418679026461914 members:0.030764490253327767 side:0.029940657362655835 portion:0.022063658796890564 office:0.020457735219956013 member:0.019726706386316174 end:0.019666887540649894 tion:0.018667441728710307 parts:0.016814747270460957 people:0.014112771422418794 all:0.014072739582212475 any:0.013183573287639892 One:0.013083578354183906 that:0.013024335602903442 account:0.012482348155001894 many:0.012077825070275192 :0.48731264666452345 +and:0.2863124371701506 is:0.10535123849251857 but:0.07243685870770103 as:0.04805184312120922 which:0.045505875084900664 was:0.04414894420900633 that:0.037758804450288265 are:0.03208948441641344 it:0.026104855456089763 It:0.019944401032632505 Is:0.017509151698116815 will:0.014756461590339835 be:0.014349529560737158 he:0.014190444284970452 have:0.012579064317677585 has:0.01255329452147107 so:0.012265857695594705 were:0.011557768369844158 the:0.011295021843211604 :0.16023866397712622 +hundred:0.07707805715637027 one:0.027657188052988474 two:0.0169430292326902 dollars:0.010296347117655093 each:0.009646825182922225 ;:0.009029506594761375 long:0.008860663612012406 up:0.007740700797526889 years:0.0074378961778371055 wife:0.007352273238623499 him:0.007315755878736539 time:0.007121889021913162 feet:0.006524844105242256 three:0.0059504643945306555 year:0.005718916059667519 dred:0.005644951343795232 gold:0.0051590279766405645 four:0.004875022100073549 day:0.004829322854623778 :0.7638173191013893 +of:0.15531728597281477 the:0.11876280123233436 to:0.05246016959594942 and:0.05123030067831248 a:0.04750407011278127 that:0.03658760728592588 as:0.031943915689806465 good:0.030808465904401224 his:0.03058644929740589 other:0.03051735855510582 for:0.028796546766702052 this:0.0267725859202828 some:0.025074877612988353 one:0.022090162427870444 any:0.021784101459405715 or:0.021587012200783125 their:0.020722445064493136 all:0.016648767785279853 The:0.016505494816540907 :0.21329958162081603 +in:0.24937595597093898 of:0.16790691834529703 and:0.09948177998518061 to:0.07221357205100394 for:0.04017703913157051 In:0.032196713848490544 by:0.029145497209912746 at:0.024955212001302483 that:0.023814609698201605 on:0.02113172040138279 with:0.02045609618556865 all:0.01977215483130809 from:0.018765953287916158 as:0.01562151527713638 within:0.01240830010127741 than:0.011677567780011324 upon:0.00941236377677678 after:0.009010649487802261 into:0.00857972094732421 :0.11289665968159751 +of:0.16029328709651885 in:0.11513400672574961 at:0.09044364244312059 to:0.0731047339746478 for:0.05636346177396305 with:0.05248475111637956 that:0.039452063024463066 on:0.03725992446144626 any:0.03495693725836041 In:0.03153080072415022 by:0.03148229661678238 and:0.030357021634616375 under:0.027614442688046227 from:0.025830127878304306 upon:0.022986736207809264 no:0.021136450057896168 make:0.018791814649010762 all:0.014608345542918412 or:0.013318924944087825 :0.10185023118172887 +the:0.35075007286201976 in:0.16406807124923367 and:0.12835465725429127 a:0.06566851956482478 In:0.04393029239110872 of:0.02541284216866686 to:0.015953772665474944 or:0.01581743917922186 tho:0.015810757639175034 is:0.015741715453301393 was:0.014039632192783567 for:0.010918917341246745 are:0.01059761979050112 as:0.010527542936661333 by:0.009372234343026326 The:0.008979536415802297 with:0.008525701923617582 that:0.008174555859411538 al-:0.007780906724280421 :0.06857521204535076 +and:0.06719225282779945 as:0.0571983731189721 right:0.052459953519978474 enough:0.050703571734741396 necessary:0.049295189713331314 order:0.047943972936544225 is:0.04151974551112813 able:0.03954003980893681 made:0.0309631576198223 ready:0.030872058864765736 attempt:0.024410553431803896 time:0.023418712625144084 not:0.02283161742054399 desire:0.02272033799756569 him:0.020424445965722418 required:0.020052455541856917 or:0.019705526570169194 want:0.019098072488338683 power:0.018044680337260147 :0.34060528196557505 +to:0.12022893700269083 and:0.09020394424291768 the:0.08587503820055309 of:0.06450042443224316 in:0.0310058468700829 a:0.017742048521183405 :0.015548046036689871 not:0.01491307651316237 that:0.014112408707955496 for:0.013734482372212283 I:0.013065769926808477 will:0.012848502316304782 at:0.012837991177321897 In:0.012628718855091186 by:0.012491091048660757 be:0.011425930130217754 is:0.0113962101007567 he:0.011342727513475473 or:0.01112522537451577 :0.4219735806571561 +the:0.6410726966427781 of:0.057585262335846855 The:0.05377662437340111 tho:0.036131526120441286 an:0.027370972101547396 tbe:0.01704653074373865 a:0.014089661313752765 and:0.013721391800992478 in:0.013160555662007523 his:0.011032762647842366 to:0.010421014388880368 or:0.009841612488065882 their:0.009491422850068371 at:0.00793207518179937 our:0.007345442238220153 by:0.006372157715978339 this:0.006367471201983258 said:0.005616370305491277 great:0.004692761924456935 :0.04593168796270747 +two:0.19560688491505138 few:0.08670687892567193 many:0.08621531947414995 four:0.08575651636647355 three:0.08149304861443006 five:0.056083707786168294 six:0.05562266989989309 ten:0.05319465948579887 several:0.04373004047460952 some:0.03392583716108582 twenty:0.033013713296428056 thirty:0.026570560870939026 seven:0.022003359665475664 eight:0.019863376752240158 fifteen:0.018689561844331935 fifty:0.018654510770635176 hundred:0.016894773139981913 for:0.016411287974150847 forty:0.014583410005170827 :0.0339798825773139 +be:0.15377387272880302 is:0.13792613792752184 are:0.09978138359554514 was:0.09357069656602642 been:0.07057408299434781 were:0.04470357998330388 a:0.04084120794318842 and:0.03874895676747068 very:0.03308080027193496 not:0.031195146437771215 so:0.024063980776712426 being:0.02147959738598545 the:0.020143051545185163 as:0.018804757489138676 Is:0.015291200902789391 of:0.013209518409975186 become:0.012002000477547846 much:0.010624390022934579 have:0.010029836452505844 :0.10915580132131204 +the:0.19552753843458429 is:0.1347102884553264 of:0.06700166041503283 and:0.06486644372249263 are:0.057680907709976616 was:0.05682723515178414 not:0.03438012803775372 a:0.032630111984197296 Is:0.021645408138034953 The:0.020010740875193545 something:0.017903639177141724 so:0.01676811868346753 no:0.016073738266643777 in:0.01603379416833905 very:0.014476775854758463 been:0.014257865631295616 great:0.014007003969807108 to:0.013724689315731843 were:0.012727206481787988 :0.17774670552665048 +Mr.:0.023358826963498645 1:0.01609071620420921 wife:0.015100287017582195 ;:0.013602945289297329 .:0.008092488431785047 street:0.006258676339917281 men:0.006084280773956922 3:0.005665216232842126 2:0.005410034186404103 Smith:0.004526332909530007 4:0.004421915347287726 5:0.0043277694322026395 21:0.0042852174805055885 and:0.004275575706181515 ,:0.004212147891654395 Dr.:0.004205458544511933 :0.004057703724004174 up:0.004022440068293482 6:0.004015267330372114 :0.8569867001259636 +person:0.4245997598249319 more:0.04510193000863286 one:0.02648180199012886 two:0.021253704224702623 three:0.012409897848375153 man:0.010640132048309648 five:0.010398833949767613 four:0.008830042002652605 six:0.008581376186017743 year:0.007681201238517816 day:0.007219052031103455 ten:0.0065313686346338325 of:0.005749304085933309 men:0.005706839784785904 persons:0.0056397506287407875 and:0.005595930886172074 action:0.005163607404490226 law:0.005154181099486861 week:0.005053622546216052 :0.3712076635764006 +of:0.09129790931378902 the:0.07369883040827747 and:0.047842263382354346 in:0.04189055351593407 to:0.04045875475680249 a:0.03542341257202578 be:0.02020462051672066 for:0.01979292654746225 was:0.01760256398103379 at:0.017380150555488715 is:0.014984483003968216 with:0.014047653760730413 by:0.01374644383819499 :0.012670486581795598 In:0.01200961464556976 or:0.011563835749786333 from:0.011391516893522809 are:0.011273104484969465 that:0.010755276030689069 :0.4809655994608848 +was:0.1942925595594909 be:0.182884319380779 been:0.12955986749779877 is:0.11296051710945415 were:0.07536353957361365 are:0.05538215471562835 and:0.03880806067494938 being:0.022237608424371207 not:0.017534809189562617 Is:0.014723404372798688 have:0.010426148560005394 had:0.009198103415259649 or:0.009069468100239784 he:0.007957345654895278 bo:0.007830503299297428 has:0.007605241185284918 instantly:0.006880748440251692 of:0.0062745173685965815 it:0.005357885911111015 :0.08465319756661153 +the:0.17332964511562854 of:0.12413416730424082 and:0.08387172892373272 to:0.0536748156761191 a:0.03412066256867152 or:0.01678764597206527 in:0.015588045976768081 that:0.013991041122316463 for:0.012891032154218147 Mr.:0.012679389909514404 The:0.012528522263138244 tho:0.01223545943176337 by:0.011683544995205639 all:0.010644008974604392 I:0.010433719131124144 as:0.009815859801003714 with:0.009724891965546637 be:0.008634648440335015 their:0.008629818005035624 :0.3636013522689682 +and:0.12760914952579921 to:0.09350903998305073 he:0.04427115183796026 of:0.03273712048537543 in:0.024796890005921543 the:0.023894411477150226 was:0.022918342900178634 that:0.02089892373593765 for:0.02039988287876958 will:0.01968918799115977 not:0.01900679191484481 would:0.018586066892747898 or:0.01841067604319294 is:0.01741560228311475 it:0.016623006336143973 had:0.015944658138793255 be:0.014889444862031647 I:0.013999263722461762 him:0.013315311952332166 :0.42008507703303377 +that:0.0378205772819682 and:0.033830059834777215 the:0.01612969673273331 in:0.014645351599186517 it:0.013008230726299171 of:0.012724679062901253 .:0.010536477099552416 as:0.010313780132890159 but:0.008894108842248555 him:0.008748717898415347 :0.007642944315067853 which:0.0075059039278423355 for:0.0074304305016211014 there:0.007195791979330166 them:0.006831228293080504 this:0.006366279243186462 ;:0.006359430500735451 to:0.006311756402679099 here:0.0060632658242472885 :0.7706412898012377 +to:0.6636312609238453 and:0.09246474068218748 not:0.05135138263100772 will:0.0478446355889014 would:0.01720646625947539 they:0.012253220689627177 have:0.012164574152247615 should:0.00846199541439296 or:0.007772002392811527 we:0.006260883310582434 must:0.006049995914802034 never:0.005878958662003563 who:0.005556295555769595 I:0.004935899236211903 can:0.004794423937267302 shall:0.0046624831139615245 had:0.004615253132815432 you:0.0038926570873018245 could:0.0037994609605270973 :0.03540341035426084 +spite:0.038017404187114835 out:0.0372686137516049 and:0.03570169315863753 that:0.02655890867341167 value:0.026090366280772923 part:0.024620158961039675 one:0.022785694164029972 sum:0.022119641127047777 amount:0.019859617002542403 tion:0.01811436175197411 charge:0.017458813565391796 payment:0.017448710700355818 account:0.017441337297585194 any:0.01673074464939334 names:0.016248397088161642 some:0.015729751533454937 end:0.015377415033100016 use:0.015376586282452533 people:0.015234020980039863 :0.5808177638118891 +he:0.14169080959168878 and:0.10296511473573254 I:0.05947758436767604 she:0.03907088506790499 which:0.03859176285700432 who:0.03519889748825235 He:0.031177202640668953 it:0.02552603070462278 be:0.024058915084245475 that:0.0204335560970027 they:0.016765584116747802 It:0.014483910280560057 then:0.014482700866390707 was:0.012105113117383205 but:0.01091507384972227 is:0.010274118151545547 subscriber:0.009949563406305668 one:0.009654034601130193 man:0.00942240274442028 :0.37275674023099536 +the:0.11919516938815296 of:0.07230453158552728 and:0.05781056740443249 a:0.043018564803886335 to:0.031305092790907506 in:0.020848713353460488 at:0.014270110001066288 .:0.012526810245749479 :0.012413283442322082 for:0.011719122709941797 by:0.010808400946589808 or:0.010404172990115616 The:0.01003576004804544 with:0.009811868184449042 tho:0.009295902015355835 was:0.008924239095331684 that:0.008672304223433876 is:0.0085591147338948 be:0.008335143826716943 :0.5187411282106204 +the:0.17027190784407714 of:0.10585557835912704 and:0.07355927771906935 to:0.05486905984958157 a:0.04543746377447453 in:0.03128555052933153 be:0.028704485173100775 was:0.02350529800142253 is:0.02215549335554494 for:0.02077556258358175 his:0.01804639098945333 or:0.016335100594594944 their:0.015847999621030492 at:0.015526727957625254 been:0.011815834631173878 are:0.01139058447814694 this:0.010362020528084328 tho:0.01035635773045807 its:0.01000473355720393 :0.30289457272291764 +of:0.11002906607602565 and:0.08444804143966421 the:0.08381099590274356 to:0.07562344734977308 in:0.05859798056053976 on:0.031634211768989555 at:0.028355075624663006 for:0.024900559463373356 by:0.020797410492737197 :0.019164968028908366 or:0.018926392351256434 a:0.015106057348301347 In:0.014407993327714403 that:0.013187308361984451 from:0.01295056469914417 with:0.01290885981123983 be:0.009834486723367585 his:0.00925829151416432 which:0.009140969551135641 :0.3459173196042741 +of:0.13084814232797154 in:0.0740836656586379 as:0.0625527229231004 with:0.059577596335708534 to:0.058433603729754965 is:0.05551580107464621 and:0.04946529489577619 was:0.04264000753602388 for:0.04009673021586375 by:0.037684080471064085 be:0.023941707008899252 on:0.02316059851167503 at:0.022644769441950232 such:0.019950936521181326 that:0.017856095877642635 like:0.017386655618315594 In:0.016902219705578994 from:0.016046571451088905 not:0.01205910100844263 :0.21815369968667797 +the:0.13785898502807098 this:0.07290686495663756 of:0.06528490943098311 a:0.062178035670291995 our:0.05691766789375572 his:0.0550307265929246 other:0.05336826492173519 their:0.04546161888540517 both:0.0445924568173974 own:0.03441096267370352 and:0.028360746838118314 her:0.027838865114548916 its:0.023190242969579188 such:0.021204507749755762 American:0.01979815752879962 to:0.019721003828937406 those:0.019591660306577628 all:0.019367360817287065 one:0.017626612349675535 :0.17429034962581533 +.:0.08042210363043198 Mrs.:0.035055668241862355 No.:0.03305564705137424 Mr.:0.025940454944811224 and:0.02483488912694774 D.:0.022822034237444593 J.:0.01995098903402159 lot:0.019842418062288748 C.:0.01899327599662157 of:0.01897012889605835 A.:0.018622395907678505 W.:0.018109069967150414 block:0.017895132945245022 H.:0.016378689577329474 :0.012198495973094898 E.:0.011583976786262115 Co.:0.011556063340767558 the:0.01149277965226932 M.:0.011046533861038405 :0.5702292527673019 +the:0.3128492444157596 of:0.07783697671878002 a:0.05099722858608227 and:0.04485994718405711 The:0.03785952599306576 in:0.021176910302275656 tho:0.020767893037127085 to:0.019057009816171998 an:0.015635720459085636 his:0.014631249476768549 for:0.013656416524846933 at:0.012080210373948254 :0.010949830483780577 tbe:0.010684140908256489 that:0.00931279601784535 Mr.:0.009090103712067685 by:0.008627863831972388 this:0.008610253179128046 with:0.008547752474355838 :0.2917689265046247 +the:0.28648522077284727 a:0.07079065227592385 The:0.04786884967056998 of:0.0459352611657233 and:0.04301411224885409 Mr.:0.02396583214084836 tho:0.020380443782931742 that:0.018580427384885568 .:0.014678734842342594 in:0.013897630628657022 :0.012570461677347046 an:0.012103268002944697 his:0.01107252152494119 A:0.010056402335146783 tbe:0.009042511824349786 to:0.008649726955184197 this:0.008241713732312226 Mrs.:0.007374869485434932 by:0.006877733602618847 :0.32741362594613654 +to:0.6101964754660315 will:0.09600581519213595 and:0.051407807223889254 would:0.027284564897208 could:0.0208773050516583 I:0.020555543838184313 can:0.019248599465484042 shall:0.014102419576350491 not:0.013613788083365242 may:0.01321941711735134 To:0.012465067930926242 should:0.012066817037473991 we:0.01097474605227902 you:0.00927555938537607 they:0.009029417790677166 must:0.007883158080028336 who:0.007565089755883757 that:0.007504366943159982 or:0.006147321963672598 :0.0295767191488644 +10:0.09720167882592397 9:0.07874330397355404 12:0.0706339373399142 11:0.06344312328185048 ten:0.054322314751023545 4:0.05164581585733794 2:0.05106814083946563 3:0.04174612290606774 6:0.04127123139559132 two:0.03949556857675322 four:0.03759104608511906 8:0.036573230845886234 5:0.03589235794644977 7:0.030993802972697722 eleven:0.027732496478682596 three:0.027043894832663 six:0.026631287769745823 nine:0.02625665074754818 seven:0.025726128836639967 :0.13498786573708554 +and:0.09207962017899338 is:0.07733392110644598 was:0.06823047800032707 be:0.06095467897025899 are:0.060182381897575694 that:0.02704614563751842 been:0.026284528952255342 were:0.02420558957450454 now:0.020981591590951046 not:0.019004620136075807 up:0.018280417112005832 out:0.017546412964393212 them:0.015985112805352735 Is:0.015499725435135718 it:0.015228881260196059 more:0.014939513551682247 as:0.014229311330058982 in:0.01359610228529353 which,:0.012687569876282386 :0.384703397334693 +that:0.14098846792475478 and:0.12285198264312815 but:0.04314670789470215 which:0.036171350985323564 as:0.03283850084257408 when:0.024712026877159288 if:0.02110363917842736 :0.017448775518967997 But:0.012595428375609083 If:0.01255714493404141 where:0.01237694052382009 what:0.012167854631629199 it.:0.01106071491211813 think:0.0105901285043437 And:0.009491993135348898 of:0.008773417167950083 the:0.00808697166926616 until:0.007743235295379069 time:0.007555986891395948 :0.4467387320940609 +of:0.09400072958678013 and:0.08547102696003656 the:0.08213974620699488 a:0.0679133350845908 to:0.05796009029938819 for:0.02572745727823574 by:0.022505710586072942 in:0.020581281470930364 or:0.019727963489077675 is:0.019148285382347384 with:0.019047834855076395 that:0.018483069617599438 :0.014762819608917621 as:0.014161386376203844 was:0.013937159160115401 an:0.011955246773415688 from:0.011065064259399293 be:0.010912338689133579 which:0.010718370600672624 :0.37878108371501146 +and:0.08485891389631289 it:0.08465897080656394 they:0.08222355367892549 you:0.07583419998149708 which:0.05646592934863052 I:0.05412656774605764 he:0.052672097432017964 that:0.0409606023263032 we:0.04093825679058942 who:0.03841779340182244 It:0.03258539057530018 as:0.014732461150982487 You:0.012915301799212337 They:0.012631655804614651 1:0.011534217494535108 she:0.010379751641346463 there:0.010099905598960268 He:0.00959391445902631 We:0.008528416942475851 :0.26484209912482576 +in:0.15671345617835775 the:0.12269774114153174 of:0.08876516465935569 no:0.04255872631140581 manual:0.042528682410416435 their:0.04116340040346106 a:0.039644833674189126 from:0.0391857309029371 his:0.035953930299766464 In:0.028255489777142265 and:0.0239446094150411 for:0.023473812302812466 to:0.023424470652001417 an:0.02108033672333829 be:0.018339110046670687 give:0.017357228688340744 not:0.016427841662241007 or:0.01640526798620321 any:0.015952773720233647 :0.18512739304455397 +of:0.21485691354853648 to:0.06723827963820828 the:0.0655184736996259 and:0.05719739822157361 in:0.03455956945073464 by:0.028827750629226385 for:0.023999681639102724 Mr.:0.02070168034790707 a:0.018264809871481904 was:0.01826102077366795 be:0.0175861349503839 that:0.016681639244539595 with:0.01551834454669214 from:0.014959081765352595 Mrs.:0.013013396705474 be-:0.012512653817498613 on:0.01158237891245088 been:0.010950397538185915 is:0.010321883716227597 :0.32644851098312977 +a:0.3244234672260155 the:0.12549155759281713 that:0.058666642794054175 The:0.0407890985207478 every:0.04038480114784733 young:0.040124785476194594 No:0.03925125756948732 this:0.03434366315236907 A:0.02918018690565244 no:0.029019018772576385 any:0.028738200540908223 one:0.0277915098891127 old:0.018380125850152033 This:0.016408992121008836 of:0.012876761517448192 Every:0.011104610098698458 business:0.009787257505780408 each:0.008613187171388259 poor:0.00802576998439075 :0.09559910616335039 +of:0.09129790931378902 the:0.07369883040827747 and:0.047842263382354346 in:0.04189055351593407 to:0.04045875475680249 a:0.03542341257202578 be:0.02020462051672066 for:0.01979292654746225 was:0.01760256398103379 at:0.017380150555488715 is:0.014984483003968216 with:0.014047653760730413 by:0.01374644383819499 :0.012670486581795598 In:0.01200961464556976 or:0.011563835749786333 from:0.011391516893522809 are:0.011273104484969465 that:0.010755276030689069 :0.4809655994608848 +and:0.04491804315792162 covered:0.04018777062174743 filled:0.03439831602262882 together:0.027274277474498326 charged:0.021185110165574027 it:0.018970003064941 up:0.017480630635068384 him:0.016212955803671315 them:0.014293565819421733 compared:0.013525193832595763 connection:0.011614636799553067 parallel:0.011283394857871554 do:0.011130056469426521 loaded:0.010955317894446719 trimmed:0.010816708291869467 thence:0.01055173438898371 lined:0.010343364261696459 but:0.009666074941737286 troubled:0.009518829589372486 :0.6546740159069743 +of:0.23275604301705766 to:0.09765487899987803 and:0.06530066334300383 in:0.055483772062305765 for:0.05047378861973486 with:0.036643673111970095 at:0.031427415812824856 that:0.030533611589109378 from:0.029813635241371775 In:0.028409820879850944 all:0.027458157019387745 by:0.027160072260334744 as:0.02565629241096281 on:0.025313991337424457 but:0.022113446806976928 To:0.02010635399806347 do:0.01898380197241306 Of:0.016706294073178595 From:0.015942477732239273 :0.14106180971191176 +and:0.07895257911471103 was:0.03596317658514438 out:0.024016824392823457 that:0.023672598027062328 placed:0.022844208461019616 work:0.021707439938587154 made:0.020781005318872947 is:0.020224993929329655 up:0.019794182040466738 put:0.018288921183371155 down:0.0171740551508179 interest:0.01663630075189571 point:0.01659978677065351 him:0.016175999448187352 held:0.015562908663841706 Dakota,:0.014616466073415059 place:0.01424333231426501 Minnesota,:0.014067166610364513 it:0.013665465625771424 :0.5740125895993994 +and:0.20686035960806368 time:0.06371234726797517 that:0.05522531356994493 but:0.038620106597743835 which,:0.025874810314338133 or:0.020862676185102277 days:0.01898146744928418 day:0.018555116409379985 was:0.016498795008346123 and,:0.016016934669801815 ago,:0.014243237063966465 it:0.014083247797319048 them:0.01395596435972239 year:0.01393003390341824 which:0.013812168064836887 as:0.013756509392338379 him:0.011680655950132644 than:0.011189304030237504 hour:0.00991099918900422 :0.4012299531690441 +any:0.13025000359439448 of:0.0936034204334495 no:0.08140135236698219 every:0.07615905211540011 No:0.05480413667560519 some:0.05323155757690057 by:0.051482917659381386 the:0.04751096658055868 and:0.034678343176313416 to:0.03328372872204656 only:0.03300671731038675 that:0.03139633914114274 for:0.02590855540423914 with:0.025599980987376973 from:0.02338118702707058 Any:0.02063079839354189 is:0.019881504289842776 but:0.017918513378872545 at:0.01785826702430998 :0.12701265814218454 +him:0.014845688486597928 up:0.013976831394428041 Mr.:0.011224532549143155 him,:0.010811995515466919 man:0.010467150744090215 it,:0.008830656163366644 time:0.008686025200964398 men:0.007702304913379216 ;:0.00726558276640376 house:0.007088485818258969 home:0.0069529702526467795 in:0.006823704040613651 them:0.006377204011726238 out:0.0060515119189517965 night:0.005754144226215666 them,:0.00564551352530172 city:0.005489462070393191 down:0.005394656962685451 here:0.005296804576681312 :0.8443147748626849 +of:0.1285076915309946 the:0.11026988660697959 to:0.0462969243387793 at:0.04462915940411233 and:0.043526438996912435 in:0.03712745371724292 a:0.03668523286182708 on:0.025514914015185852 by:0.02470000842752322 from:0.01604056685782855 :0.01517563163888932 with:0.015152819082825677 as:0.013846288022220335 that:0.013403813059930492 The:0.010031800576314817 In:0.009390398270615634 an:0.008201748726263022 for:0.007199095160242404 tho:0.006683948752599584 :0.38661617995271286 +;:0.023475622578022666 them,:0.02099262949571687 it,:0.017222915040278126 him,:0.014426181888351193 up:0.010212213338102469 time,:0.009526375670709148 on:0.008694572946232763 him:0.008092235173622897 and:0.007985401067407347 in:0.007925279906996902 day,:0.0075220392977560415 men,:0.007080370152515457 city,:0.006915261802238335 States,:0.006912611377755834 water,:0.0068804689572135175 up,:0.006734701896267681 years,:0.0066749767281316956 year,:0.006293760832060827 men:0.006282502289802556 :0.8091498795608176 +to:0.20672778826948524 of:0.16889089683191955 the:0.08213356288473254 in:0.07247903738539509 for:0.05039317339585417 and:0.04486732003310167 on:0.04188730644321121 that:0.021946069763144418 In:0.0215510069761526 by:0.020154537688569833 their:0.016925466588496082 this:0.015481051919669557 said:0.015353239654725707 from:0.014821140964967566 his:0.014050157069780538 all:0.012444811840243207 public:0.010714687975692232 with:0.009707351868390878 such:0.00960927093030636 :0.14886212151616154 +was:0.2421221727600157 be:0.2194835942992867 been:0.08311304218559973 is:0.07038267611454192 were:0.06576895173077282 are:0.03751739538372175 and:0.03547296841665548 being:0.028272927277534957 had:0.028247336245733102 have:0.02772592176384256 has:0.02342161193384958 bo:0.01455199848282885 not:0.013214622077057684 Is:0.011078084762176818 he:0.009249188739803954 then:0.006912440986204906 it:0.006026490133323182 so:0.006017646775799409 waa:0.0043189995536283485 :0.06610193037762252 +of:0.17357910176281155 for:0.16565286087598588 in:0.10546014404702991 to:0.09504910666290695 with:0.05693438863859661 and:0.05118807933888042 by:0.04156062397794476 all:0.033363497169013163 that:0.028964757637428833 from:0.028857867485053704 on:0.028350435982506177 In:0.026420164466828915 is:0.02099075785212892 upon:0.0156420917293409 as:0.014897228889399759 at:0.011560782223976334 under:0.010988202049030702 make:0.009142514446600209 into:0.00850637570191074 :0.07189101906262556 +the:0.39749834532651884 a:0.07520030034269234 and:0.05540858759821703 The:0.03273515726769502 tho:0.030061875542463562 of:0.020144331424922633 tbe:0.014929647509541684 in:0.014268129706664795 or:0.013333166761078447 .:0.013287381914101323 an:0.009000188755386574 to:0.00880680429595084 :0.007943763822197133 Mr.:0.00773879605474787 by:0.007328417831573476 as:0.005922572098978465 for:0.0047526933692942485 that:0.004736121968310169 on:0.004594595720579333 :0.2713091226890862 +of:0.28767355066866834 to:0.08775711267569858 in:0.08678131196995101 and:0.05160598694501188 on:0.04646139928102899 by:0.04519522654900943 for:0.044547789071328545 with:0.03396756772609607 that:0.033699232901107726 from:0.03075346596941143 at:0.027039283056790858 In:0.021061449543044047 as:0.017514234937992545 all:0.012543839382496166 upon:0.011844431150487573 is:0.00998972746569266 was:0.008814315973987914 into:0.008557199930727406 through:0.007781895704231326 :0.1254109790972375 +a:0.08724027639170749 and:0.08602402931983749 no:0.0837280641062988 be:0.07681465417428636 the:0.07663445524714868 of:0.05100253451000561 any:0.050196250800666836 is:0.04166491810330702 was:0.03950429345774035 an:0.03704157170020348 are:0.03608973368103077 in:0.027975809358402534 some:0.019395985308775964 one:0.014634478678229012 were:0.014267654407949859 he:0.014084109546639214 his:0.014049653215299066 this:0.013965341230119792 their:0.013725071363953496 :0.2009611153983982 +as:0.3006227549250597 be:0.11964329442582888 and:0.10091564382845526 is:0.037771233654789564 was:0.03424166892192353 been:0.025410259186305247 so:0.02404875315907419 not:0.01985970518302613 are:0.017416605816376243 he:0.01673540357273243 the:0.016557269457252798 that:0.01629293064215696 or:0.014569490999987299 were:0.01312801948491022 more:0.01032706686814467 a:0.009998689888715048 have:0.008643505290825387 which:0.008343414546308768 who:0.008052599978074296 :0.19642169017005334 +of:0.35504652617340293 to:0.07273835474857483 by:0.06692588426816233 and:0.06058002565570273 in:0.0552941988184628 that:0.04927813194770502 all:0.037274409939084416 for:0.037238817848986305 on:0.022273948359639497 with:0.01970190799152064 In:0.018842967797534048 from:0.016857163162530855 upon:0.013241547916152776 ot:0.011493840656994004 which:0.010760372473667273 when:0.010547036433465549 as:0.009697914747092227 among:0.009696955550013769 over:0.008712674535999118 :0.11279732097530885 +the:0.3740814978037227 a:0.12812500999243526 of:0.05496483771694943 on:0.04618120326601553 and:0.02814388807243245 in:0.025634539961161447 The:0.019708873356646926 for:0.018467024989323972 tho:0.01825059284376505 this:0.01602114578844693 said:0.013459256130751718 to:0.01268261390733192 an:0.012607371082923443 his:0.01008763514886468 any:0.009999445818639709 that:0.009715724943521022 which:0.009426165934906947 from:0.008563428827169593 tbe:0.00818577648031998 :0.1746939679346713 +of:0.30274107108458664 to:0.10544238574588065 for:0.0828885965880772 in:0.06840978920314587 and:0.06439318471253787 that:0.05101079235211478 with:0.03616609288095382 by:0.03603177889482022 from:0.02712366696887569 on:0.02621636253043364 all:0.020965841654859693 as:0.016046821126374955 at:0.015328800209182267 is:0.014625228324706597 In:0.012686581687701932 over:0.011904893788337046 upon:0.01144371217995617 about:0.00891433237466633 than:0.008245852914986973 :0.07841421477780162 +and:0.08431273243034522 of:0.06749471455515324 the:0.05955607750576761 be:0.05380497964316464 is:0.03903174461984568 was:0.033806978354327034 to:0.028030837418752546 in:0.025243446026274423 as:0.020517165317003573 it:0.019329079912069762 are:0.018543373427273392 he:0.0182014725603489 I:0.01760283606544912 a:0.017252002428919336 that:0.015791492463130566 which:0.015098664005446183 been:0.014771728908539292 has:0.013314288114267495 de-:0.013085407068422367 :0.4242109791754996 +and:0.08995317707915026 to:0.06844710404109794 of:0.04605142056172993 the:0.04074574508561307 which:0.02479116931334353 that:0.023764822140213245 re-:0.020841117231308055 in:0.020803825395358622 for:0.020278423301550053 :0.018417753428486977 not:0.016860793136637672 con-:0.016444405871234195 is:0.014386481772210856 or:0.014080680914153714 be-:0.01352268143271276 I:0.01317002660943805 was:0.011429878269381662 dis-:0.011196807025842847 he:0.01113106290024311 :0.5026826244902934 +it:0.15119412029869111 It:0.11440405857268615 he:0.10594798594997615 which:0.057472696970645415 and:0.05268664729519971 He:0.05012085412427422 I:0.049383601645403286 she:0.031396738737928774 that:0.03085669489434923 there:0.02678886689014585 who:0.021879418467136195 This:0.016983687837942022 She:0.015182291098835345 man:0.012901211220953423 what:0.011502270344521545 time:0.010739590829671656 day:0.01042773139093825 this:0.010253933565376868 ho:0.009296251313665627 :0.2095813485516592 +of:0.09129790931378902 the:0.07369883040827747 and:0.047842263382354346 in:0.04189055351593407 to:0.04045875475680249 a:0.03542341257202578 be:0.02020462051672066 for:0.01979292654746225 was:0.01760256398103379 at:0.017380150555488715 is:0.014984483003968216 with:0.014047653760730413 by:0.01374644383819499 :0.012670486581795598 In:0.01200961464556976 or:0.011563835749786333 from:0.011391516893522809 are:0.011273104484969465 that:0.010755276030689069 :0.4809655994608848 +of:0.5194694586760311 in:0.1330051001477447 to:0.06851432888974311 by:0.0550349750629288 In:0.02878169727629539 from:0.024254562818901995 that:0.023947275467146364 for:0.0208712368580367 and:0.02014793498328324 with:0.012527167863237659 on:0.009063621849989515 at:0.007949625624273258 into:0.007715055802641988 which:0.006610948246463611 ot:0.006473742536331837 throughout:0.006333274786906171 between:0.0060025462560295145 upon:0.005525803780418543 as:0.004602943667776204 :0.03216869940582036 +the:0.3299588539888494 his:0.17394638504529888 her:0.071865925761119 my:0.046019974279408335 or:0.04374239738639087 of:0.039716773512158444 their:0.03020258858405845 and:0.029753643434564617 in:0.01801001766699364 a:0.017537009617309834 to:0.016966155599471375 tho:0.015584190239181242 your:0.014782956541031256 its:0.01375823072718337 for:0.01295934115923032 our:0.011706481108540036 own:0.008543925857305299 bis:0.008377321513606466 all:0.006738463706838097 :0.08882936427146107 +and:0.051654636516201016 made:0.051015454799921624 or:0.024674408513783483 that:0.016062835335927065 him:0.01565924413931051 followed:0.01563124550437536 owned:0.015583321950137187 ed:0.014866750499448756 accompanied:0.014614648987466283 it:0.013626457525371337 taken:0.013108391888807197 them:0.012651103019890095 caused:0.011867361447385745 up:0.011657883035474385 done:0.011150870541727875 only:0.010691704012969913 given:0.010651579286736641 occupied:0.010536480438065907 secured:0.01016848645023085 :0.6631271361067688 +and:0.13494966609550382 of:0.07316641737364253 to:0.07075541455588646 the:0.058493680665523205 in:0.04957317167084668 or:0.034218196852765226 that:0.032957151083144585 for:0.023740081132267728 on:0.02372525113826427 in-:0.022059642840300344 which:0.021050432068915235 :0.019992650391152826 by:0.017069113882183004 In:0.0167310746783188 with:0.014170506894792975 from:0.013586836184279336 at:0.01266636453547691 In-:0.009826052731618101 as:0.009471218486562726 :0.3407970767385552 +and:0.08039877364952776 due:0.03950509979446632 committee:0.031824787028280524 interest:0.029653913784004237 put:0.02605347050230891 that:0.025364753925432207 work:0.01854320900756215 Committee:0.018083308869494722 out:0.01732592933743378 placed:0.016771499935524525 tax:0.015494826800739572 was:0.015220833597265254 made:0.015116027545905849 go:0.014122913567113215 going:0.013663125444513728 carry:0.01228578240846762 is:0.01168039944418941 or:0.011158860478777162 be:0.010807419106989947 :0.5759250657720031 +the:0.1840676197400729 that:0.14021823366386352 a:0.12901439896510813 this:0.09267084941540078 every:0.050614641747453 next:0.049593669454210176 said:0.03547369782719346 one:0.033915622333025974 other:0.026112605230224743 per:0.02427070873761876 same:0.02373178080109369 to:0.020706229113412356 each:0.01672266112868743 One:0.01613779671696495 first:0.014576467067343649 following:0.014363075103513792 all:0.013839516048397912 of:0.013124340120350896 to-:0.012301540134678273 :0.0875445466513856 +the:0.28845375064704015 said:0.09362064831101093 of:0.07697028581491935 an:0.07415097884686417 this:0.06396358865123472 such:0.03850396598067899 to:0.03020745114951926 and:0.024277800804633435 his:0.019530865345999415 in:0.017928695560814275 same:0.017116118254951677 their:0.015930586562807818 tho:0.015516152388222737 that:0.00949269312095823 The:0.009427504184599258 any:0.008685593109629687 special:0.008155541434740139 good:0.007763653315008081 a:0.007090755532089386 :0.1722133709842783 +as:0.06931392982974462 according:0.052071562389565784 up:0.0511867300210483 and:0.040371568633051955 went:0.03351644485287816 back:0.032358406609281 regard:0.03073407747799069 feet:0.02852138506231652 down:0.026379903432040268 owing:0.02466642634685871 due:0.023695193974505355 go:0.022910973192184297 reference:0.020802802907016128 came:0.019883741951819873 sent:0.019874244915639484 attention:0.019565955494145405 come:0.01885185084678811 given:0.018792390567602263 it:0.017366961307524745 :0.4281354501879983 +the:0.280586274469613 of:0.07743254550781031 a:0.06391670257781332 or:0.05362546338022309 and:0.05206082668873997 per:0.033072991316206744 The:0.026942220939528156 in:0.022641565685122628 his:0.018107189916788138 tho:0.014111989759927512 be:0.012683106917725813 such:0.011949799459014993 by:0.011768366608080293 an:0.0114260336312314 that:0.011238485869515685 their:0.010597169427649844 for:0.0104051920606089 was:0.010226635325303999 with:0.009980718502294457 :0.25622672195680174 +the:0.1862386422920063 a:0.1489717303894796 very:0.09664928267489957 of:0.07437895353575652 is:0.04883923040735411 are:0.040899674352379504 with:0.03767099160591708 and:0.03194022990601243 was:0.03088017577260383 in:0.029279809609852606 be:0.0279047450106643 all:0.023759041357849186 his:0.022241542608355334 too:0.01966960221414123 were:0.01841080883346421 extremely:0.018290139514907586 as:0.017988316855206982 their:0.014247056572969497 most:0.013556302409388642 :0.0971837240767915 +of:0.2044791576008779 in:0.12862916020514242 to:0.08680803105080555 by:0.07538528853913161 on:0.06268935388902837 and:0.0549113768101583 with:0.04623653332266938 at:0.03207684678705425 for:0.030650784122564712 from:0.029813958546530444 In:0.02678213101171685 that:0.024851178974021625 as:0.02230904330026006 into:0.016259507602645763 upon:0.012460545287761027 along:0.009911852450939979 such:0.009820235665122705 or:0.009705703071525445 through:0.009572249727576566 :0.10564706203446704 +and:0.15563598083930374 fact:0.08711133430257853 so:0.058396464404789995 is:0.0579273243303576 know:0.03891059414000834 believe:0.03502353458944794 say:0.02956643029162141 was:0.0244460879735422 found:0.02198426212440242 but:0.021647450971207037 said:0.020296919668606115 think:0.019452871708646135 stated:0.01753336395586828 show:0.01665691069363014 of:0.016641414712527034 given:0.01606702283810136 see:0.013748934150150846 to:0.013612160583704404 ordered:0.013591989952554125 :0.32074894776895235 +be:0.2476352559436284 was:0.15772213887228984 been:0.09390411835999397 were:0.05544668835268614 and:0.042712151184236484 he:0.039103488391900185 is:0.03565638793453884 have:0.020863053741642323 being:0.020592165956919383 are:0.01874306791787749 had:0.017791016029763747 I:0.015628715924342673 has:0.015403673326359857 bo:0.013981865193451862 ever:0.012778636351799523 she:0.011476937339198653 entirely:0.010331155103268867 years:0.010190476736946034 a:0.00927408928871563 :0.1497649180504401 +the:0.6282919188719227 said:0.08177014878302245 The:0.054306423908740645 State:0.03553065161519055 tho:0.03331168467195791 and:0.018974034563680256 a:0.018144139733962283 tbe:0.012910776716836162 County:0.010879857125834709 of:0.00718272641825003 National:0.0067064760460823795 A:0.006247800034323361 this:0.005704949777532588 that:0.004687492669684485 School:0.0037205095833966334 other:0.002909599308414829 whole:0.002847897531893484 City:0.0025806003577830113 General:0.0025161518747485283 :0.05977616040674298 +the:0.22099212588763578 of:0.1498063952221159 and:0.1471566545621738 The:0.0842979929630157 a:0.05807722197971485 that:0.04620112542751515 which:0.02406149349045908 for:0.022735581177671084 as:0.02086127670945353 this:0.018862583610001933 by:0.01620200107247043 to:0.01598254155798548 with:0.015462165445002144 when:0.012737673339723941 young:0.012235875904044295 tho:0.010975771608408362 but:0.01009207587555251 :0.007565274501309015 in:0.007552603742899939 :0.0971415659228471 +more:0.17130559780375462 of:0.06217763459325419 the:0.045367400568475914 to:0.04532566323127346 less:0.0413046301132575 and:0.03645638499158725 for:0.03555367745146998 greater:0.03478623091254069 better:0.02659607820196558 in:0.02538114335092192 not:0.02293305735298125 be:0.021178733978138454 a:0.01535580492803192 rather:0.014070223878624697 nor:0.013912994224816646 larger:0.013669217147797659 no:0.012926483716610955 other:0.011511322748173083 or:0.011247519756459932 :0.33794020104986433 +to:0.16315498181425878 with:0.10669631463341812 for:0.08323535633099802 by:0.0383062283536803 of:0.038055203241891516 told:0.03196930622924948 gave:0.031562253079548054 put:0.031306119211148384 upon:0.029215466048779837 took:0.0280156177200987 give:0.02783939920958339 brought:0.026363153979969103 threw:0.025890694771143023 sent:0.025824060568004077 take:0.023854098757237475 on:0.0228100124133893 saw:0.02127331669918507 asked:0.02025992858088464 given:0.019833324560933733 :0.203535163796599 +will:0.2785095611978238 the:0.17947931119125304 would:0.13995092052289804 and:0.05763478039005681 to:0.0391438720863543 a:0.026100045645981722 The:0.02522150730945846 it:0.024486914355102446 is:0.022722347517018168 he:0.020277771276641928 could:0.019088987432438902 can:0.01904633217332719 of:0.017007851230590558 was:0.01674452768010348 they:0.015336290205482892 not:0.015261538006755171 It:0.01462534724210387 should:0.014317799190182029 for:0.014075708030454355 :0.039968587315972866 +to:0.1529209316057251 would:0.14101913372880834 will:0.10573773145317099 at-:0.08197871060352312 and:0.06525436175193515 I:0.048470317299252906 not:0.042283001246780146 who:0.03219506396500293 may:0.022936849277236587 re-:0.021655011130322078 must:0.019191115393899904 can:0.018010788868632457 in-:0.017247458557421016 he:0.01653689026348823 1:0.016336504654715304 at¬:0.015618724836695571 his:0.015169471695512426 they:0.014541612084065705 should:0.01440815598492538 :0.13748816559888666 +the:0.10302646711644912 of:0.08166534104926164 and:0.0641651983997861 to:0.050117940885781635 was:0.029704651827650568 a:0.024236495313118004 is:0.024075071876382657 be:0.023871972558650256 for:0.020302603959841195 are:0.016202972656191424 :0.01593154951710768 in:0.015846367917183395 were:0.01582700865496602 with:0.01419700171928026 by:0.013682091671986687 as:0.012985684971634685 at:0.01257319296294181 or:0.012504714715961677 on:0.01105562269295192 :0.4370280495328733 +as:0.553701298085397 so:0.17478146386970644 and:0.046908954494854244 As:0.02794074558113164 of:0.02741739679955118 great:0.013108714777541431 that:0.011418225571252695 with:0.010795403079628924 are:0.010470362357192505 by:0.010103199309041282 to:0.00987822742136317 good:0.00957501403324578 Ger-:0.008828255197728844 how:0.008761106373716673 for:0.00853235907146899 So:0.008021389355813563 too:0.007061600054798722 is:0.005867574620418496 in:0.0057694580778372365 :0.040059251868311094 +the:0.11919516938815296 of:0.07230453158552728 and:0.05781056740443249 a:0.043018564803886335 to:0.031305092790907506 in:0.020848713353460488 at:0.014270110001066288 .:0.012526810245749479 :0.012413283442322082 for:0.011719122709941797 by:0.010808400946589808 or:0.010404172990115616 The:0.01003576004804544 with:0.009811868184449042 tho:0.009295902015355835 was:0.008924239095331684 that:0.008672304223433876 is:0.0085591147338948 be:0.008335143826716943 :0.5187411282106204 +;:0.01458927046758731 it,:0.007973265891266864 him:0.007834970369143835 one:0.007240974664279108 in:0.006989508095588829 and:0.006417396987522371 ,:0.006059091806132192 it:0.006014614548599763 up:0.005812344146302806 out:0.005395853159197619 them,:0.005290532062834904 him,:0.004938420268273817 city:0.004793760033506698 :0.004646491011450349 man:0.004641061555670736 country:0.0046164671969483135 feet:0.0044416267197611185 time,:0.004376787347733258 time:0.004358244018157902 :0.8825693196500423 +a:0.5749418327161635 the:0.06179568480733834 most:0.054185595306206126 very:0.03807156799282323 A:0.03066351902812213 as:0.026117504968636397 of:0.02406679757887612 with:0.019893566016007128 more:0.018061678325593924 and:0.015185291122842249 is:0.013635795945589354 by:0.01329532700790347 his:0.011907982072995964 no:0.010686714601574781 their:0.008785575846756275 are:0.008638013215729575 The:0.008498487502685432 some:0.00832982035880033 our:0.007533052806830499 :0.04470619277852514 +the:0.19749125756169547 Mr.:0.07112699624208033 of:0.06603367254516487 The:0.05768776091110846 and:0.05327374818694666 that:0.0420321405581567 a:0.02582588575453538 his:0.0169326573605278 Mrs.:0.014795070048324819 tho:0.014769024234222154 which:0.011478554728659614 he:0.01110833274239838 as:0.010988112958762878 I:0.010409931249854676 in:0.010294293477152827 :0.008879223773482728 to:0.008465710829358392 for:0.008281932125153052 if:0.008197991279302505 :0.3509277034331123 +OF:0.20060616530750558 IN:0.08693235012571486 ON:0.05951339890858993 :0.049783182470012066 TO:0.04264074789616315 FOR:0.020831166730128695 of:0.019832810820986084 BY:0.019700946163205033 OP:0.013773628187392844 AT:0.013595246447019751 at:0.009834317455007478 MONDAY,:0.009349233880028045 WITH:0.009180525868274319 FROM:0.008834323693243343 in:0.008563089324490233 to:0.00824444455121366 SATURDAY,:0.007990024167212118 AND:0.007368442150079413 .:0.00697857233090001 :0.39544738352283343 +one:0.1028303141280697 part:0.05963429477052991 out:0.04766456937681193 some:0.031418679026461914 members:0.030764490253327767 side:0.029940657362655835 portion:0.022063658796890564 office:0.020457735219956013 member:0.019726706386316174 end:0.019666887540649894 tion:0.018667441728710307 parts:0.016814747270460957 people:0.014112771422418794 all:0.014072739582212475 any:0.013183573287639892 One:0.013083578354183906 that:0.013024335602903442 account:0.012482348155001894 many:0.012077825070275192 :0.48731264666452345 +of:0.13084814232797154 in:0.0740836656586379 as:0.0625527229231004 with:0.059577596335708534 to:0.058433603729754965 is:0.05551580107464621 and:0.04946529489577619 was:0.04264000753602388 for:0.04009673021586375 by:0.037684080471064085 be:0.023941707008899252 on:0.02316059851167503 at:0.022644769441950232 such:0.019950936521181326 that:0.017856095877642635 like:0.017386655618315594 In:0.016902219705578994 from:0.016046571451088905 not:0.01205910100844263 :0.21815369968667797 +the:0.42102199269443363 a:0.16070741413290687 this:0.03095677463997824 and:0.025480881056084797 other:0.023755232260743865 every:0.021111643669192288 one:0.019410213454449207 any:0.01646825291674176 The:0.01444161453824023 tho:0.011888739274874058 great:0.011819531417833297 large:0.008036700915810217 another:0.005453185643302951 tbe:0.0048172660215525945 no:0.004745576182979755 general:0.004705088311630743 Republican:0.004519506488855711 said:0.004446148601586754 first:0.00431692543407796 :0.20089731234472508 +the:0.1612957036534611 Pacific:0.15927219107421692 Central:0.12343527907121554 Pennsylvania:0.04543949744189361 Ohio:0.041934377761829525 Valley:0.03144080585247789 First:0.027228077091122377 Western:0.01556695715333397 of:0.015535809871447967 said:0.014032425124824818 and:0.01392037521668495 Erie:0.013499163677124395 The:0.012340399583712722 tho:0.010558695385519469 Grand:0.007725185908245658 City:0.007000435783585717 Second:0.0067477630826463545 County:0.006129294777775194 Southern:0.005529823421918096 :0.2803677390669638 +the:0.2968625990660033 of:0.15917919901305208 and:0.06098306417012476 The:0.034238729902212106 a:0.02716605325868136 bituminous:0.02010917993891073 tho:0.01988635462628247 for:0.019621512343036208 in:0.01880692241311316 anthracite:0.018500038321019013 an:0.017574483599114333 no:0.013498570438196737 all:0.012942215822372307 with:0.012082597286458505 their:0.011024303183110375 that:0.01081699943557205 by:0.010491320565406812 or:0.010449552753282274 his:0.010127411002290653 :0.21463889286176077 +and:0.09631219532671687 was:0.03513566928966104 held:0.02987715681559008 Beginning:0.024332169066967536 is:0.023122938489353394 look:0.022074108253454683 arrived:0.021820518428646088 that:0.021226918252779888 interest:0.02006974641058921 thereon:0.01971421054267379 made:0.019401567074562896 are:0.019271449916013022 up:0.01806602795372081 him:0.01678700722897829 be:0.016375054451444982 but:0.01586396852970274 out:0.015503094089883073 or:0.013721423267833084 not:0.012734170433403743 :0.5375906061780248 +Mr.:0.09707284622229663 of:0.06470839429650968 .:0.052111208279864464 and:0.04483099305628706 from:0.03528252390207698 :0.03188557875066654 A.:0.028810726231815974 to:0.02737038417322988 W.:0.027144384995525312 said:0.02646697968360647 the:0.022884201755155136 Mrs.:0.02276876315006611 a:0.02161893898349268 C.:0.018267475751929132 for:0.016125250276435747 M.:0.015759093937943006 J.:0.01478243101859632 Judge:0.013877952293158918 Dr.:0.013362915776428844 :0.40386895746491513 +it:0.13135155107971372 I:0.08412841037081532 he:0.08270758555763082 It:0.06313901345543892 we:0.06218970162732115 that:0.054788880378599476 they:0.04981926699843268 and:0.048394124423374006 which:0.04833519534154734 you:0.040643059050409255 who:0.029311568300202907 one:0.02331003326182839 We:0.020821407528102815 she:0.01783623917884928 but:0.014072872908681465 He:0.013540908747049846 man:0.012486823414663686 You:0.012032356384468718 there:0.011602089740157947 :0.17848891225271227 +the:0.16807735899698817 of:0.10541662057906837 and:0.05138367848570702 a:0.04141865232648221 to:0.0385989743764065 in:0.026264864977736738 was:0.019530675665220657 his:0.018900421021236905 be:0.017373825006196972 their:0.015767721170721456 for:0.01557246589796783 with:0.014071419046630446 is:0.012922913111931644 at:0.012690452250034052 are:0.010702713108721902 .:0.010158075558988393 Mr.:0.009672788574483367 tho:0.009612591781990074 were:0.009549306361446321 :0.391314481702041 +are:0.16255730114328543 of:0.1286186695619631 is:0.0890605517083867 was:0.05992579251028234 be:0.05684079976041619 were:0.050485284775561516 and:0.04540554766338042 at:0.028854745537596573 in:0.02810218095902375 for:0.025247414691129625 from:0.024817182874819998 been:0.024739432723331328 after:0.020994848616103304 Is:0.019900123097944963 to:0.019818333414599144 by:0.018398779582815685 the:0.01729431646039771 or:0.01386045945990562 all:0.011932498446444166 :0.15214573701261244 +of:0.30972901405207304 to:0.10567526198940909 in:0.08945474939384705 and:0.05178447775071589 from:0.051216266846381364 on:0.04878050605010506 by:0.039517933643910784 that:0.03578705309178652 for:0.03169565507770349 with:0.027742264034121215 at:0.024246782161554688 In:0.018293300574767205 which:0.009557975645990742 upon:0.008915482970786315 through:0.00795682450502049 all:0.0073948017263916 into:0.006984150256008235 as:0.006887413631813243 before:0.006058691854984408 :0.11132139474262959 +the:0.08741288820481248 and:0.07392080242938477 be:0.0572668144792991 was:0.05686739458441792 of:0.05297029938296901 to:0.040095074017987696 is:0.03448309022071693 been:0.028380973754521515 a:0.02485235362607966 are:0.02226522268065813 were:0.019682022343204007 in:0.019454144698829248 or:0.019273705289081854 as:0.0158232132157123 not:0.012361914460680723 being:0.010097596398749334 for:0.009388164492904385 :0.00930537568905371 their:0.00894740846790883 :0.3961515415630284 +and:0.11725525271198821 was:0.06341834856189152 ad-:0.06082716486687396 be:0.052642675195522154 the:0.052583351610455305 is:0.03214288415900637 were:0.028988311361400707 are:0.023433855116392358 been:0.018795527214803945 a:0.017346841133170896 an:0.016689581650593175 or:0.01640583808196433 of:0.016081507650499212 to:0.01543495383017344 most:0.011747262081199705 ad¬:0.011299787521202363 as:0.011265374003070828 not:0.00974362232055514 un-:0.009540926453966293 :0.4133569344752701 +and:0.0898983534307284 recorded:0.03839146221566241 is:0.03668562203905007 that:0.03431669392481337 was:0.03241998013206866 are:0.027724572492448484 distributed:0.02179882077106108 but:0.01800596869166509 divided:0.01768723397643896 known:0.017021756068469524 be:0.016884730073410792 it:0.015315420617176249 were:0.014487761080509552 out:0.014292757089545834 up:0.014183216524911337 work:0.013587985847310425 them:0.013360650140025847 all:0.013336002124362483 him:0.011966071585439919 :0.5376349411749015 +of:0.1793658802687462 and:0.10874275333975585 the:0.09229216579887582 or:0.0616685084362982 by:0.043297190507457124 about:0.03889583533062379 to:0.03758742463437844 at:0.031110509496717075 for:0.029706269349736074 from:0.02506810627711246 in:0.02123627339139995 are:0.0199241836147344 thousand:0.01823987587854057 section:0.014026800692059652 were:0.013932377382008154 per:0.013038173836029255 with:0.01198577705530705 than:0.011269540998738333 was:0.010689919696071389 :0.21692243401541025 +was:0.13496153006482384 and:0.07721105180499782 been:0.07692175903099897 is:0.07308580933085675 be:0.06706436677741555 have:0.052715863030725084 are:0.040035860154747624 were:0.03616187815476651 has:0.03525618924588972 had:0.032221629562397894 a:0.031445327219766804 not:0.022604840637969137 or:0.018956630649318705 that:0.016456414119286666 but:0.014635335293662198 Is:0.014256817976773329 being:0.012072416633424891 only:0.011054441836170019 in:0.010581248822204589 :0.22130058965380392 +of:0.34084701514834254 at:0.10648153922825834 to:0.09832124438329763 in:0.0862270404039351 on:0.0626650408105397 and:0.03807635350795165 from:0.033271768059149394 that:0.03192011156938553 for:0.03028640332372375 with:0.01782239345080245 by:0.01770069308647461 In:0.016905541544001382 as:0.013376481537685711 about:0.011122745747562715 over:0.010019932184029422 than:0.008367594927370313 into:0.008282726764234508 all:0.008223304639640331 within:0.0074988594730305775 :0.05158321021058433 +that:0.2182528121582997 and:0.10909674213661594 which:0.07827131913855019 as:0.06789120824400124 if:0.05873503078318953 but:0.03949542361376279 what:0.029247592883415673 If:0.026123856888845127 where:0.025698125024710222 when:0.025277282630221047 than:0.015259796380906252 But:0.013852891510919485 because:0.012208567219124769 think:0.01131032118448667 all:0.011088017357985626 whom:0.010858695141514465 until:0.010211166668103334 before:0.0089359059832595 whether:0.008717699915127025 :0.2184675451369614 +the:0.2968625990660033 of:0.15917919901305208 and:0.06098306417012476 The:0.034238729902212106 a:0.02716605325868136 bituminous:0.02010917993891073 tho:0.01988635462628247 for:0.019621512343036208 in:0.01880692241311316 anthracite:0.018500038321019013 an:0.017574483599114333 no:0.013498570438196737 all:0.012942215822372307 with:0.012082597286458505 their:0.011024303183110375 that:0.01081699943557205 by:0.010491320565406812 or:0.010449552753282274 his:0.010127411002290653 :0.21463889286176077 +the:0.14915443269455675 and:0.08137784134902497 of:0.07323154327149642 a:0.027596890243102003 The:0.02302663500325444 .:0.022450628322779508 Mr.:0.021501315307911117 to:0.02063718845298769 :0.015087401029589264 as:0.013597864148057585 in:0.011817941676725572 was:0.011776395431283903 tho:0.011700384261930988 that:0.010326146389894717 his:0.010117368328155553 Mrs.:0.009894863414962674 at:0.009826249019509962 or:0.009547119237600099 on:0.009432000736960731 :0.45689979168021605 +of:0.1782216535119856 with:0.10008691424576172 to:0.09677446625731455 in:0.0944247913070767 and:0.0882480142330181 for:0.0861915679235301 are:0.02840111213149218 that:0.02483068940640474 by:0.02315465354350171 is:0.02275101512230129 was:0.02134670807324145 at:0.019890315456028172 from:0.01782961988173562 In:0.01728407549250464 have:0.01624596881678565 on:0.014859223025435658 were:0.014337327054627619 nearly:0.013595566795981024 had:0.009871950268655985 :0.11065436745261749 +1:0.011644005849484357 day:0.011296007108300721 ;:0.010359893499526892 north:0.010029348572414989 street:0.009915500634295697 feet:0.008879347693516134 up:0.007752922047523877 men:0.0074175649783083586 east:0.007088596821965759 hundred:0.006961975871618021 North:0.006121598310299418 3:0.005938915010505613 Mr.:0.005683814748273267 in:0.005557104747853735 2:0.005162424858802853 ,:0.0049487844533556225 4:0.004874137800895507 .:0.004837194054894257 :0.004674658075976965 :0.859856204862188 +get:0.053610422214488855 was:0.05051841536969282 and:0.04903958730444051 him:0.038801969319659166 it:0.037410018187455464 them:0.035569152369498175 are:0.03479460583298655 go:0.03206022460430166 come:0.03018624754922308 came:0.02989007710531499 issued:0.028538548420871033 taken:0.028387580006254076 went:0.026471193886938953 got:0.02591677196361888 growing:0.02512307536827857 be:0.024827416016109424 is:0.024256616056951556 served:0.023420563816567756 paid:0.022272217198545566 :0.3779052974088029 +of:0.5294836588379771 in:0.18001762934231022 In:0.05111774017918084 at:0.023118524458543087 to:0.020249899712878914 on:0.017461234053110293 and:0.015252476271068014 from:0.014453552219119481 by:0.014312933647297842 the:0.013458733919698174 for:0.012001702854590164 ot:0.010579976857797794 ol:0.007944830122733164 thence:0.00628575338425211 with:0.003993608760767178 said:0.0038679264033786172 iu:0.003385204859346879 during:0.0030469226387820733 that:0.002708265798690139 :0.06625942567847794 +out:0.0630019795636008 matter:0.05303413058857293 place:0.05009896451773843 amount:0.0499267807310781 want:0.04395652884873056 right:0.03509989252535699 lack:0.034781454483158225 purpose:0.03259527243533817 question:0.03046515568606245 deal:0.029743792340106608 number:0.029669489031667662 kind:0.029062614823723163 means:0.027654345487754223 sort:0.023637330084787408 loss:0.022916005876191855 plenty:0.02271689764551385 use:0.02227284721553744 time:0.02140671477387308 source:0.020919475236887374 :0.3560403281043207 +is:0.3041490684759792 was:0.10222200844825462 be:0.06427286499865426 had:0.06338994845678966 and:0.05738248381707375 Is:0.0548614642235358 have:0.05279594444614841 are:0.0460517224715651 has:0.03504353243063377 that:0.029423710497802385 but:0.023060450901397665 with:0.022577837059198903 were:0.019273347271912555 been:0.0138498880144397 make:0.013197723220045641 not:0.012122715796860757 of:0.011680158499552225 made:0.011659241682646117 will:0.00984713436174521 :0.05213875492576427 +made:0.0999812034390529 and:0.06680208263369662 caused:0.02435411478715239 shown:0.02379785223577525 up:0.023253655008919294 ed:0.02312002180398423 out:0.022293807888227747 taken:0.021988971765594088 done:0.02128782706813444 given:0.020283609421760777 paid:0.017098570970207227 owned:0.01708227903067019 that:0.01698438626809451 or:0.016145946252097726 him:0.015808363688274 followed:0.015366441255538056 appointed:0.015126279845513936 held:0.013990473525433292 approved:0.013949758860964168 :0.5102843542509091 +the:0.42102199269443363 a:0.16070741413290687 this:0.03095677463997824 and:0.025480881056084797 other:0.023755232260743865 every:0.021111643669192288 one:0.019410213454449207 any:0.01646825291674176 The:0.01444161453824023 tho:0.011888739274874058 great:0.011819531417833297 large:0.008036700915810217 another:0.005453185643302951 tbe:0.0048172660215525945 no:0.004745576182979755 general:0.004705088311630743 Republican:0.004519506488855711 said:0.004446148601586754 first:0.00431692543407796 :0.20089731234472508 +the:0.16287760685838365 of:0.0883592780729449 to:0.0618987346693935 and:0.05423685233212741 in:0.030811253892523358 for:0.03057359609188714 be:0.025098115820027647 was:0.01826945122296575 is:0.01662970283289366 a:0.016448402520667066 or:0.01633619095301082 his:0.015510346299682681 their:0.015084175217362073 are:0.014656254371894712 been:0.013019491851438341 were:0.01267572744006931 that:0.012270302451397866 on:0.01131798809455223 :0.011150587255169986 :0.37177594175160794 +and:0.08180379429732622 to:0.060030830249766264 of:0.05922315654764797 in:0.04626902233696285 be:0.03679003680088665 the:0.03317484783475683 was:0.033169790487265746 is:0.02130818919190867 he:0.018472127786304804 are:0.01806168114670575 been:0.01732440884098687 were:0.01699312947422097 I:0.013594262698291249 that:0.013398802427524713 for:0.013391610654107912 then:0.01163594857342084 now:0.011449961803380052 so:0.010985382627507484 in-:0.010645052890459836 :0.4712779633305683 +of:0.12619085591792503 and:0.10294144488802834 a:0.0985227563673408 the:0.07561563861979627 with:0.025684059991644175 to:0.024664405276191435 our:0.018142295588872065 The:0.017187375947383295 by:0.01695743485945762 his:0.015577617283943909 :0.015328781975243386 in:0.01465545826080596 that:0.012037061850738726 A:0.01008608306642486 all:0.009422083932826831 their:0.009066907778666745 or:0.008122564328568352 other:0.007974409658085343 National:0.0076289412979819735 :0.3831938231100749 +and:0.1936109276545491 that:0.08492389320297819 time:0.0482800317989068 but:0.03956797028605752 day:0.025213341833446527 up:0.011583438403364954 But:0.01138143806453852 come:0.010875894025247282 out:0.01012334573321731 him:0.010005012329103294 And:0.009881625923120602 me:0.00961638530559704 them:0.009411199553224439 for:0.009402808547520538 date:0.00928097140753486 or:0.008946350394898108 morning:0.008868927250386661 ago,:0.008289563095658087 year:0.007996505779507657 :0.4717403694111425 +of:0.2626474425377283 with:0.09155258454738287 in:0.09108335025893105 and:0.0803077520580235 to:0.05874482463515602 by:0.05486145034095229 for:0.04784018192585086 under:0.03582026973436816 that:0.03453522812908354 all:0.028838477188154403 from:0.022503614407942164 upon:0.021438272216899947 on:0.015443646730653992 In:0.01279554977247034 but:0.012217606929992722 have:0.011549050141939346 after:0.010762655575097053 as:0.01012236628791191 has:0.010052497899398318 :0.08588317868206324 +that:0.07106627282778241 :0.047612981573209895 and:0.03579282737900815 it.:0.020513040802067818 but:0.019384935078924758 as:0.017609169770204183 when:0.014984718094708459 which:0.013617060274538012 him.:0.01316459214113621 of:0.011558280901040606 them.:0.01138181107887566 If:0.007797443528776149 day.:0.0077760343684583075 time.:0.0077256082603808455 if:0.0072730156480560965 where:0.007146682292767419 .:0.007005486154079236 until:0.006961138260726988 country.:0.006539982952195297 :0.6640889186130635 +of:0.2625169597626681 to:0.10479022051783006 in:0.09093686912292859 with:0.07320144735434117 and:0.06731763125157543 on:0.05140321954056376 by:0.03117999545028017 from:0.028947175604746165 for:0.027900020070490337 that:0.027029748572190416 upon:0.02366582224751694 In:0.01642744476273598 at:0.015225944615513621 all:0.014914289360023618 made:0.012199182751444226 over:0.01050614351010918 as:0.009576804343737443 but:0.00927798812357906 up:0.008849995762415675 :0.11313309727531007 +the:0.11919516938815296 of:0.07230453158552728 and:0.05781056740443249 a:0.043018564803886335 to:0.031305092790907506 in:0.020848713353460488 at:0.014270110001066288 .:0.012526810245749479 :0.012413283442322082 for:0.011719122709941797 by:0.010808400946589808 or:0.010404172990115616 The:0.01003576004804544 with:0.009811868184449042 tho:0.009295902015355835 was:0.008924239095331684 that:0.008672304223433876 is:0.0085591147338948 be:0.008335143826716943 :0.5187411282106204 +and:0.16023925213893903 not:0.1211201567525568 will:0.06659555632619751 can:0.05426162112068342 or:0.04651281146117733 would:0.04468266550519063 that:0.042136633564146576 to:0.04057076731471898 could:0.03867913152049745 may:0.026214534711531366 but:0.02536386982434318 should:0.025270250522521125 had:0.019413067095465367 was:0.017844051198604393 might:0.016831352536656068 is:0.016468060689317943 I:0.016441002789175357 of:0.016265987953833702 it:0.013669292011907785 :0.190419934962536 +to:0.14401522014784593 I:0.08717805441967116 would:0.08361228383208522 they:0.07250612364846672 we:0.06597598184142542 who:0.05136360986841521 will:0.048581532657812176 you:0.036303803346831635 and:0.03262750567837507 must:0.02681132061405771 We:0.026497479392441514 shall:0.02444461513167911 not:0.023426718145168758 should:0.022766551002372307 may:0.021516097053646 might:0.01661740567775864 They:0.016135791002525445 which:0.015447058681747887 could:0.01476846332748608 :0.16840438453018802 +the:0.21834224786150008 their:0.09966795139733589 his:0.08868889432728419 of:0.06347069753560167 our:0.04812594301195514 other:0.03338085491843471 its:0.03225925872122499 public:0.03204264355458185 and:0.028060393760467487 her:0.02708320049976501 my:0.025442931798510093 your:0.022392775803733646 or:0.021176076852766706 a:0.020271612392549834 The:0.017972718289067553 many:0.01592679299058893 own:0.013847204524321168 such:0.012699777119155608 this:0.0126190540337789 :0.16552897060737656 +the:0.15473635562159893 and:0.11878433622711196 of:0.06808684776009191 to:0.04325385373322828 that:0.034926307556054664 The:0.03327680392699933 I:0.0318446022168628 but:0.031073699899761255 as:0.02139882157685889 was:0.02084467382363832 in:0.020228133502814955 is:0.01655885434393805 for:0.014665436118378542 with:0.013411361063896171 so:0.013319633810291482 will:0.012838575674747423 have:0.01245145193308647 we:0.011863442985835389 which:0.011342026276315436 :0.3140947819484898 +and:0.07160492587458607 made:0.06354513386154206 that:0.030890976066914596 or:0.026358909282256208 ed:0.025352652790188328 accompanied:0.0215688058180834 delivered:0.020944115904066356 done:0.020263328662654505 owned:0.019127036636047666 given:0.017544220909879858 secured:0.01716690504823408 him:0.016979640132125856 followed:0.016763847818371456 was:0.016328528882287183 occupied:0.015916977570615595 held:0.015685092077631173 but:0.0153272572878625 caused:0.015262494967882385 required:0.015222852856523387 :0.5371462975522473 +the:0.6273452628553144 a:0.08106748412032473 The:0.07131127623872019 tho:0.03605249034251733 and:0.03278614878099861 tbe:0.015301666261626675 no:0.013852772147528678 to:0.01165875419046518 any:0.009513115309919317 an:0.006988471635233307 with:0.006544025824627131 of:0.005577042888823044 very:0.004827126631391472 not:0.004803236057854396 by:0.004794245500287932 A:0.0044790748288035314 all:0.004073270624172961 great:0.003962911737889936 Tho:0.003299970935807934 :0.05076165308769314 +and:0.06405243503302017 demand:0.027992143350349764 is:0.024087243217968585 was:0.023207183747124233 used:0.02188478989112691 it:0.021040255934483595 him:0.01901028058135051 them:0.018450114690762007 work:0.01838427474182397 be:0.018262396591913675 made:0.017974361952964608 time:0.01768044924618964 ready:0.017222176074903367 up:0.016129077167707725 vote:0.015691860707219653 but:0.015311600022475391 out:0.014892059685124638 not:0.01401617820702183 enough:0.013640812806972512 :0.6000703063494972 +West:0.32601923317844317 of:0.2846394128003679 in:0.0492857168804817 by:0.026685049027762923 and:0.025503406403774843 In:0.017590374332307215 Alexandria,:0.016774671380399227 from:0.012021441522991984 South:0.010824986556693717 said:0.009301102462024166 the:0.008849655501915207 Roanoke,:0.008074940738382538 county,:0.007037345853650994 for:0.007018641004297518 ot:0.006014127374229981 Mr.:0.005942652737642887 to:0.005819874322968349 at:0.004467016996319008 with:0.004404339604068711 :0.16272601132127792 +that:0.21488806932375457 and:0.13704574472682768 but:0.07364295408934517 as:0.06153783271550263 when:0.056237149067654445 which:0.05511792399565147 if:0.03254514212126367 where:0.026252377085483634 until:0.018569156542656885 because:0.018405251161535782 of:0.01685808952523818 But:0.01451924119369239 time:0.014332649376990287 for:0.013714485166924044 what:0.013251216067409047 though:0.012499089054312695 before:0.012092095141291899 If:0.011363662217684147 said:0.011229030518646942 :0.1848988409081344 +the:0.7418478361499882 The:0.05931102392002437 a:0.05570906906593074 tho:0.030542534647364793 and:0.014196732542941548 tbe:0.010369715657852102 this:0.00952034273779178 of:0.008353652180202745 in:0.006521011772055823 his:0.006011881877469899 our:0.004673593575680986 to:0.00410312283217535 by:0.003905766034429235 A:0.003876992124404695 its:0.0026755695716332963 an:0.0026560548648657946 In:0.0024442427287733816 Tho:0.002238899556250306 that:0.002163528393866959 :0.027878429766298035 +a:0.37031060888150075 the:0.29949602692987937 The:0.044523980047564866 his:0.02295269603282429 this:0.022594748819193537 and:0.022381352711922358 tho:0.01845449597750987 of:0.015230851131093239 every:0.012470320098025038 as:0.01088808230876488 in:0.008637822649399758 that:0.00827799304852929 with:0.006723404388519011 tbe:0.006653298295585371 A:0.006168827682938959 other:0.005734949360693023 all:0.005683217133822082 by:0.005655200956965223 their:0.005543447792384689 :0.10061867575288437 +to:0.2245967612767584 not:0.07667502845062994 we:0.07424772919352736 would:0.07331069890777385 will:0.059555894557247746 and:0.054412520533870766 can:0.05262242875267322 I:0.04532362659521066 could:0.04012839177614418 they:0.03944597411396496 We:0.034474805124042024 should:0.0316681161275799 must:0.031558886394473705 may:0.02779699101998891 you:0.022309656679427255 who:0.022274728702346303 shall:0.015796995067907185 They:0.014110421973759415 cannot:0.012195781828791106 :0.04649456292388312 +the:0.08741288820481248 and:0.07392080242938477 be:0.0572668144792991 was:0.05686739458441792 of:0.05297029938296901 to:0.040095074017987696 is:0.03448309022071693 been:0.028380973754521515 a:0.02485235362607966 are:0.02226522268065813 were:0.019682022343204007 in:0.019454144698829248 or:0.019273705289081854 as:0.0158232132157123 not:0.012361914460680723 being:0.010097596398749334 for:0.009388164492904385 :0.00930537568905371 their:0.00894740846790883 :0.3961515415630284 +have:0.2789180338736969 has:0.26755645793514293 had:0.23035574646854443 having:0.05521869844530239 not:0.032186504937893795 bad:0.013048759120186536 lias:0.011357687648967541 never:0.00797156240406376 already:0.007576375369972941 ever:0.007522851396515949 yet:0.006800335928561991 havo:0.006627231727782176 haa:0.0052331157780760446 baa:0.004515152922762318 recently:0.003507992426414276 just:0.0034554493552928327 bas:0.002816908944076243 since:0.0026022624775844275 always:0.0025084745019302804 :0.049220398337232185 +of:0.14811175333662133 the:0.12913380926840695 and:0.11450816233965705 in:0.07340257218240318 from:0.036793767038072175 on:0.03166832227653794 or:0.02424801682964509 by:0.01837986441245473 to:0.01582262948309288 Miss:0.011953996260443312 at:0.011904496596193899 In:0.011638258866112349 a:0.009590802041767993 for:0.007724103318022615 North:0.007637573991383408 with:0.0075905027683509626 The:0.007429157809505242 West:0.0072919014611545685 A:0.006795317761636373 :0.317374991958538 +was:0.15781676458283792 be:0.13770015072938002 is:0.10297036065040499 are:0.07775932164378536 been:0.07006819639729345 so:0.06403034912308007 were:0.05586980207650049 very:0.05023356574635028 and:0.03650636416296506 most:0.03522863597178329 he:0.023739450256137103 more:0.023294563959599862 not:0.01899976174267618 has:0.015461473713375883 being:0.014411229208523151 Is:0.01381230530296207 have:0.013697757436496379 had:0.013452007488140263 bo:0.012139018669960448 :0.061808921137747684 +the:0.19817689444449102 a:0.09187149745866095 of:0.08096784419162363 and:0.07279879063000315 to:0.05225033035057043 in:0.0453183102466777 The:0.034936735739192495 some:0.018134414187190792 his:0.018093662367387655 In:0.014761703416591106 with:0.014553606545461784 an:0.012441203703785908 by:0.011556257913294798 our:0.011199198074772923 those:0.009966986515510765 this:0.009899199531009484 their:0.009476875587231696 tho:0.009312247840293832 or:0.009208282287160629 :0.27407595896908926 +the:0.2895360999148227 a:0.11552582884221434 and:0.08445802954685593 his:0.061946146996790345 of:0.057267009322008094 The:0.04657698257911954 their:0.036075994595340846 this:0.030138954889601378 its:0.027425363363627695 such:0.027403714984476933 her:0.026930083172025006 our:0.022884569180765594 tho:0.02012337864872682 with:0.018206138414915904 that:0.01779819540811332 for:0.011701520820313883 my:0.011600580586924493 your:0.010459059801170605 other:0.010442882897157868 :0.0724994660350287 +hundred:0.01370343787561487 up:0.011992998489844333 due:0.011263393292252252 street:0.009525764908271932 in:0.008943705582567884 wife:0.008517499068484822 men:0.00828830741839638 him:0.00705982731644353 .:0.006366293964698657 Hundred:0.006279789997588607 ;:0.006213927326097238 day:0.006151442500215223 years:0.005986902224213046 house:0.005896557558013642 year:0.0055844367453521645 long:0.0054043016553757895 city:0.0052758828588705935 one:0.005241357140605508 down:0.005235689056585332 :0.8560684850205083 +the:0.2892881497967245 a:0.13335354902049618 his:0.08929456384185988 their:0.04468009152921635 its:0.03649273256632513 her:0.02906317121191593 and:0.02801540096399005 of:0.024841643435508997 an:0.024739457862156762 our:0.02447763565713103 this:0.020224895645925604 your:0.019474579304951917 my:0.017297089319051284 tho:0.0171648074565655 very:0.01622225134572335 most:0.016022785122654527 every:0.012487192284025918 any:0.011625709424307991 great:0.011323803820750138 :0.13291049039071892 +the:0.21018288238841307 his:0.18464069896947552 her:0.07134701892369665 my:0.07063600318948335 of:0.053328287934707654 a:0.05227205600236864 their:0.035590989036652934 your:0.028645477319527515 at:0.02629034243467256 in:0.020403922764243253 and:0.014385671714963216 to:0.01253193687778521 our:0.012176580513742161 with:0.01166507191817856 tho:0.010274348228489421 bis:0.009942140215145757 own:0.009727399114097094 its:0.008732151775817903 for:0.00799830979959261 :0.14822871087894693 +to:0.16820287409390067 and:0.13211465827242655 of:0.029932185772674622 I:0.02801189662565193 the:0.023136484902272852 had:0.02159773518167427 who:0.02101222318379878 would:0.020936132923728618 not:0.02054076211858964 he:0.019376995570204676 will:0.018181966020541014 have:0.015230816872065931 or:0.013317407078060686 it:0.012745920907422189 that:0.012430437018850944 in:0.011578040496112161 has:0.011381112264303052 which:0.010963520314163977 was:0.010502414123789373 :0.3978064162597681 +of:0.2876055461866618 in:0.11154875866286008 to:0.09734387840019723 with:0.06775329693024275 by:0.05009370801973526 on:0.04976965186579063 and:0.0474520716933831 for:0.046400338627901286 that:0.03595477153105243 from:0.033260244611002875 upon:0.0315580211724885 In:0.02310977390491938 at:0.014835315527800768 but:0.011156172504238717 all:0.009710844168427012 into:0.008623338858247325 as:0.007058267502404795 told:0.006754637081802981 after:0.006397897687825204 :0.052613465063017936 +of:0.08691949873066311 Mrs.:0.07352436634154932 and:0.05505157577628114 the:0.05178246599906247 by:0.04595544113951083 to:0.029229487871645716 boy.:0.027867617233567857 Mr.:0.02632532111349624 Rev.:0.0250772527104155 girl.:0.0240406164830322 :0.023503152197804165 Hon.:0.014991758797277316 Dr.:0.014152650994826604 said:0.009577055369504353 at:0.009229404222045684 vs.:0.008920451264436007 .:0.00868913959406169 Mrs:0.006500713014691646 that:0.006338114002475714 :0.45132391714365244 +and:0.15307785143864486 look:0.08332999530808154 looked:0.03983996221278673 or:0.030478747350510347 held:0.024635098487757846 was:0.023614968403075212 him:0.01911039123375687 that:0.01826848316825455 it:0.018061142921954685 all:0.017593056608338327 made:0.016026701137795658 them:0.016006038710572778 laughed:0.013328165640445575 up:0.012786411439600884 one:0.012716026804898528 interest:0.01246350713354164 be:0.012213805331564524 not:0.012132735879729906 are:0.012114376258907088 :0.45120253452978243 +sum:0.03352282876311118 number:0.028116684882597106 line:0.019995206059833036 city:0.01946514558931857 out:0.019275318828420953 day:0.01666865340772654 county:0.014872697538657208 amount:0.013254184849875051 Board:0.01252325449624941 town:0.012449555905674143 side:0.011663975251122375 part:0.011517157473718155 County:0.011460540331966697 state:0.011087331502382173 City:0.010878919191854432 purpose:0.01081028255427907 and:0.010297866493795984 way:0.009848747943663767 name:0.009522170936943183 :0.711769477998811 +of:0.18066643063382862 and:0.113201248861322 to:0.0930166852221448 in:0.08761708872734864 the:0.06156995687328148 from:0.04598697769396797 by:0.03608653690032081 with:0.03499018933137141 that:0.03031166724592375 for:0.028927850443937805 a:0.026484722247113412 In:0.0218300162927166 some:0.020480514840964605 about:0.01985438205979408 or:0.0197669894007989 on:0.01718864934307347 was:0.016493588457201138 are:0.015687441141881874 is:0.013326376120181149 :0.11551268816282752 +to:0.6550009131010128 will:0.06745259067431772 and:0.04002195620385817 would:0.03338660481294347 not:0.023366767428593303 must:0.02284358985982568 I:0.020907141014968714 should:0.01839953154563527 shall:0.01587003682806672 can:0.012578649508239163 could:0.011620248818532568 may:0.010818244405512484 cannot:0.007447416911026466 had:0.006283467290797262 1:0.00591739756460871 they:0.005477932909155898 we:0.005127308676292247 To:0.004531238230624653 was:0.004491142021934829 :0.027457822194053787 +of:0.19254789409064738 to:0.11337911230023523 the:0.11227726825254408 on:0.0960098574883764 a:0.05268874017519964 and:0.05000260029620762 in:0.04899713526485852 with:0.02558685639820847 his:0.022925477473552964 for:0.020350356642839604 some:0.01832529412934842 In:0.017671636044676642 last:0.017152423515419884 or:0.016769954983611526 that:0.013282662740415315 these:0.011114070401727114 this:0.010872318508495207 by:0.010515293504859628 tho:0.009515772084966406 :0.13901527570380995 +the:0.13883172233803606 Mr.:0.08564243314688438 and:0.07696920210623576 of:0.052667092851926535 The:0.03537940398431345 I:0.024203912192665208 a:0.023145724851175945 that:0.020887702341498438 Mrs.:0.01748375727011537 his:0.014904108750289342 he:0.01471356596825944 .:0.012897963409885227 was:0.010273302410165455 to:0.010246566162335905 :0.009898480185381456 tho:0.009658741931819505 in:0.009355795427088955 Miss:0.008338966870131956 Mr:0.008189563786629623 :0.41531199401516194 +would:0.13516776815931453 to:0.10175318883572715 who:0.0734216616549984 they:0.06090829687960963 I:0.054414498797697934 which:0.046947310165833735 must:0.0405200574155989 might:0.036445589637541506 shall:0.03272411333844378 and:0.03228038765818951 should:0.03179090655993478 that:0.029508760759060126 not:0.02876680420731567 we:0.028503874055856488 may:0.028150033623979002 could:0.022163961267380006 will:0.019029697840863502 there:0.014322928357478427 They:0.011858887319353098 :0.17032127346582382 +the:0.06230469699146943 of:0.051714833980035214 to:0.051605236699707166 at:0.04232397071933364 and:0.03487895415717596 was:0.033646483548389595 is:0.02612732809920802 be:0.025841165067162237 on:0.017287325521893455 for:0.016684771722171202 by:0.01260894273958979 in:0.01211492174218166 were:0.011780849555142785 :0.011771660071246968 that:0.011067089335976278 there:0.010989870724860022 are:0.00979124745917002 or:0.0083874981335412 said:0.008053833009010346 :0.5400193207227351 +and:0.03738010269101826 was:0.017156328429914852 not:0.009282375525503659 be:0.00913793412689212 is:0.009081623978734769 been:0.008065205487975112 as:0.00794569172303963 called:0.007813658681129444 him:0.007705838516235924 made:0.007620665894297412 land:0.00722865836844603 time:0.007193915422418049 place:0.0064927736606608406 reason:0.00648855529475498 demand:0.006224650498066775 out:0.005667382517399832 it:0.005637308975328016 one:0.005614849317733989 but:0.005574802571696655 :0.8216876783187537 +and:0.08589760824960757 I:0.06695104423622467 has:0.053989851718046544 was:0.052488367208374374 have:0.044340964253452464 you:0.04206010729226849 had:0.03750286335496349 he:0.03686058838169343 than:0.03538442481922217 is:0.03498985927615122 that:0.033258287762344935 the:0.03021023262109101 will:0.02857273065536341 in:0.028401846931467502 what-:0.02322192408180681 to:0.022647596340639266 it:0.02169369460991582 as:0.019146206691047905 not:0.017144806431447304 :0.2842369950848716 +hundred:0.038447873128027735 up:0.02592206108779795 in:0.012435652403405035 one:0.012191358439276032 down:0.011773687066756165 dollars:0.01013897914623435 out:0.009054920321987922 ;:0.008783162010683803 street:0.008726515981062654 feet,:0.008060213140873533 time:0.007210604053803826 back:0.006665417980476079 water:0.006305024434716826 on:0.00623956997212921 :0.0061147172804608225 and:0.006025506501591666 them,:0.006010469822652131 year:0.00596972192899732 it,:0.005724413556216138 :0.7972001317428509 +;:0.05087126314662501 is:0.01806756774292099 it,:0.016976863372841395 him,:0.013506209856854025 nothing:0.012657841396099557 and:0.011995751863348168 them,:0.01080529830585904 was:0.010513071683157285 time,:0.01040039583480838 are:0.0094335589709684 ,:0.007926840741333839 years,:0.006363991182502941 States,:0.005910146755905073 be:0.005661628129989765 country,:0.005660699768479842 year,:0.005281899980762396 man,:0.005256934227754588 here,:0.005242470276476497 life,:0.005215029660378984 :0.7812525371029339 +of:0.3500203529394601 to:0.09449029274317931 the:0.09356364898931634 by:0.05881197513165473 at:0.05519742801898673 and:0.04690009774756781 in:0.044086180129274274 from:0.043717501545417994 with:0.01796966998194919 for:0.009355968360954342 .:0.00884055415069301 In:0.00876726549648422 The:0.008416795195822726 :0.007739172490719864 &:0.006014288300921559 or:0.005821870790816666 Bay:0.005520263593776603 between:0.00551859010977904 ot:0.004553611970006743 :0.12369447231321877 +he:0.1752548552484544 and:0.1702065054028354 I:0.0893616136842238 He:0.05420575015106184 she:0.05132555172370465 who:0.03229313877587591 they:0.02826698853681103 then:0.026217830658643963 which:0.020331102937222362 that:0.01953156983066824 She:0.019270331061857916 we:0.015017085349622327 all:0.012343726529533161 it:0.01209829783244009 ho:0.010678776607095677 lie:0.010667662962682877 They:0.010485884985217523 man:0.010286831825654477 but:0.00984940302046239 :0.22130709287593195 +the:0.21143312530431274 a:0.1189862897088771 his:0.08226698130339728 any:0.07859089916452422 said:0.04085106580569923 an:0.035302588292029514 and:0.03108895006882076 of:0.030357374829988595 to:0.029281775822230533 no:0.025183121948963112 their:0.02328742719033063 The:0.02262201154624616 by:0.021632509571680753 this:0.020523424301839704 our:0.01989514315110708 its:0.018982309147046586 my:0.018842056623755474 your:0.01843635279205531 such:0.01797142758806254 :0.13346516583903265 +in:0.38557181730418466 In:0.10360040884920332 the:0.08944976914707505 of:0.08075138869901241 his:0.05551377911398234 their:0.034251171877575814 and:0.02764440394713659 a:0.026220680561149654 its:0.02429188997079474 from:0.018663997914716922 with:0.014579455844469316 for:0.013546781651710655 our:0.011906301942823877 my:0.010026961941940048 great:0.009494002582340675 into:0.00902718840477309 to:0.008737817714576159 or:0.008128650200185819 her:0.007833344213331326 :0.059760188119017524 +the:0.2077483873731374 his:0.11128589538981068 of:0.08398588707841433 a:0.0731054712896005 and:0.03913860908273025 that:0.036880661031406047 their:0.03564724364961585 no:0.030628679412660224 some:0.02774675045999493 any:0.027525318573951466 my:0.025062466017435003 in:0.024122082884898057 to:0.02267940011471983 its:0.022094219265640674 as:0.02143562003663342 by:0.021337532739019432 an:0.019536445225408178 with:0.01802776694184331 for:0.017069124901303887 :0.13394243853177656 +get:0.053610422214488855 was:0.05051841536969282 and:0.04903958730444051 him:0.038801969319659166 it:0.037410018187455464 them:0.035569152369498175 are:0.03479460583298655 go:0.03206022460430166 come:0.03018624754922308 came:0.02989007710531499 issued:0.028538548420871033 taken:0.028387580006254076 went:0.026471193886938953 got:0.02591677196361888 growing:0.02512307536827857 be:0.024827416016109424 is:0.024256616056951556 served:0.023420563816567756 paid:0.022272217198545566 :0.3779052974088029 +and:0.099920351428017 that:0.05239871354598774 soon:0.046763856038450936 far:0.04286798249206902 it:0.03716479370696594 well:0.033248943587394976 just:0.029684942038181537 as:0.027699335491640577 them:0.026155385831144497 but:0.024093990121234005 or:0.020211595925761452 long:0.019374106457257664 such:0.018403100443282767 to:0.017544793984384976 him:0.01682623466009675 is:0.014729418567209092 not:0.012947704031121634 said:0.01206647757827965 Just:0.011871059012211426 :0.43502721505930836 +the:0.32965522695574223 a:0.09894654113643635 and:0.09880485477966991 this:0.03444943113059454 of:0.03323615329181828 that:0.03283805661654569 his:0.031750991227050024 The:0.028818416321640117 tho:0.0248525773249024 any:0.021847001875289294 in:0.016253762485709946 our:0.015594313009872678 to:0.015334716226499727 or:0.014833350397423133 her:0.014315680832811118 their:0.013416997637103743 your:0.013090856502729523 little:0.012217504112287376 new:0.011430635334650972 :0.13731293280122292 +to:0.26290096315491085 will:0.11419439490363406 may:0.0839662147948173 can:0.057592388325459994 should:0.04913660188833538 not:0.04854346312114345 must:0.03990347400128828 would:0.038275791185281356 could:0.03513460401329237 shall:0.03111607112430525 and:0.02755373327791344 that:0.019291063163538277 cannot:0.01804406078450823 it:0.016666075476038943 might:0.014008976104683863 which:0.010941616774407428 never:0.008115333639258926 then:0.007651674498375789 when:0.007240122921834086 :0.10872337684697272 +of:0.28874020324009014 dry:0.09824816520485041 the:0.0785299300656094 in:0.054849819981704184 his:0.04969088703370488 for:0.032207425975182856 by:0.028400030066118402 a:0.027679993226339437 their:0.02677117595360538 or:0.025928133930314977 such:0.021822217840368502 no:0.018904368716959847 with:0.018328334718278487 other:0.0169456128497395 canned:0.015784454572919285 all:0.014984872129314488 to:0.014953025681975459 any:0.012668496206493624 these:0.012245218425652366 :0.14131763418077836 +it:0.2692182658441704 It:0.16297723172638282 which:0.06510855890502279 he:0.0597915429047104 that:0.04208607110776467 there:0.037966082267166704 what:0.03537038994607484 This:0.0318327285917009 who:0.02764936442221932 and:0.01867327769305729 He:0.016870922715620948 work:0.014893596047780285 this:0.014743396609474326 she:0.011839767457364269 as:0.011162122674395326 There:0.008504658320889095 time:0.006726526427772414 action:0.006430995319661899 life:0.0058641721386918635 :0.15129032888007948 +of:0.213546540036904 in:0.09735043116330731 and:0.06998689916215682 to:0.06523625505563686 for:0.04642120833828251 by:0.04577542954113006 that:0.04244324522955501 with:0.041327550925237086 all:0.03716485180315971 on:0.03648737236989639 is:0.03467307151865432 from:0.028790509079024074 was:0.02678002503932598 In:0.024959940806812925 be:0.018312066945122385 as:0.01633463886580774 have:0.015266081942440592 when:0.015162941100922568 but:0.013735672528674194 :0.10924526854794948 +of:0.09129790931378902 the:0.07369883040827747 and:0.047842263382354346 in:0.04189055351593407 to:0.04045875475680249 a:0.03542341257202578 be:0.02020462051672066 for:0.01979292654746225 was:0.01760256398103379 at:0.017380150555488715 is:0.014984483003968216 with:0.014047653760730413 by:0.01374644383819499 :0.012670486581795598 In:0.01200961464556976 or:0.011563835749786333 from:0.011391516893522809 are:0.011273104484969465 that:0.010755276030689069 :0.4809655994608848 +the:0.44023966270707104 The:0.09228306776148115 this:0.05979332254037486 that:0.03652600564591691 railroad:0.032911078808578104 a:0.03239660033269752 tho:0.026591035045873315 his:0.02177372130164061 and:0.017025944478480944 other:0.014773125730646002 our:0.011932645377678637 said:0.011797636511897816 This:0.01099717218125736 of:0.010760596692074461 tbe:0.00977231447310814 such:0.009659641575214258 old:0.00962871978939895 one:0.008330209532122785 any:0.008016705542344134 :0.13379079397214297 +the:0.11638446048440172 and:0.08557210207492717 he:0.08514379112256991 I:0.07965498738545129 was:0.07502081745910283 be:0.04041746827649861 had:0.03843908362816724 been:0.036243592185902666 is:0.034402401431311624 have:0.030588919382212816 we:0.02906628215324963 He:0.02820190244396743 they:0.027916828651535955 are:0.027846546062997867 who:0.026148305427637162 were:0.025650295600370823 she:0.025142248981001772 that:0.01439539910853646 The:0.014394484045916731 :0.15837008409424028 +the:0.60886208970606 his:0.04353842353387242 The:0.04207835435870039 tho:0.029773845232547478 at:0.02887008929818066 and:0.025040870349044862 their:0.022663970943002425 was:0.020667588736436173 her:0.01550920010946781 of:0.014982492002865135 its:0.011323610993259904 tbe:0.0108134940277846 are:0.009910650343154193 my:0.009537175172761415 to:0.009390367117782303 our:0.008637333187509824 were:0.007972465435700602 he:0.007556144679410613 for:0.007517396519017248 :0.06435443825344188 +an:0.23368728109534978 most:0.13396713529468338 the:0.12393908826054707 and:0.06089408111756492 of:0.0526158673718155 a:0.02864752297117895 other:0.02424010760704274 to:0.02359954352513956 this:0.019761001500837948 every:0.01746228529313645 in:0.01567629018304297 any:0.015393086898916825 such:0.015106623401034839 by:0.013189116022509054 some:0.012528176376462767 one:0.010823649562381766 his:0.010750922251403594 An:0.010584128820330828 more:0.009953822371196385 :0.16618027007542466 +he:0.08976036800066889 and:0.08483960886528578 it:0.06501369812486148 have:0.058968056622231195 they:0.048836573218348465 which:0.04059961915538723 has:0.03951889790416118 she:0.03622427417916085 had:0.035873222776642864 who:0.031583394939325424 It:0.029668153023555667 He:0.02832549937928088 be:0.0271913431049042 I:0.023174302388733123 ever:0.02216505461948394 never:0.01660643331389642 that:0.01653415032060676 men:0.014629535742116425 They:0.013334974346327832 :0.27615283997502144 +is:0.15162995526276676 was:0.141669303549462 are:0.10953321645984171 he:0.07225297145963212 be:0.06263548641956979 were:0.0465911653364805 I:0.04584086180343197 been:0.04010919203244303 and:0.039314128525962465 not:0.03904570131188004 who:0.027408040432667355 they:0.02532221152390667 had:0.024284615392569594 Is:0.020025282610298352 she:0.018467159847781585 have:0.017502514191350006 has:0.014784059778064825 we:0.01356437481690192 He:0.01283774806310975 :0.07618201118187955 +and:0.10165067814522845 dis-:0.08362501556963191 was:0.04688586311255148 be:0.043520867812871886 a:0.038624039019947445 the:0.034504177707551945 it:0.03356748114829633 were:0.026916739976185884 are:0.02432435741867377 re-:0.023030035953041147 is:0.02157662180495267 he:0.020454672206838075 now:0.015634951655047198 has:0.015533965783264497 had:0.015202057458633546 been:0.013995811959831777 have:0.012534630158932853 that:0.011673142229868672 then:0.011623979021636815 :0.40412091185701365 +State:0.059565432760467885 day:0.03957338806803078 city:0.029693721321963577 state:0.02730854006579608 quarter:0.01941923468279016 part:0.01723993898643575 City:0.016573262734927114 line:0.015010547200985807 place:0.013170133916878527 out:0.012635715951029237 side:0.011731652028685374 county:0.011606856624572217 act:0.010488630718376342 and:0.010212655171644106 corner:0.009863028850906208 County:0.009289452857990656 years:0.009069721409233057 number:0.008923510925775266 Bank:0.008592687284176637 :0.6590318884393352 +the:0.4635215956368425 of:0.06591457824014108 and:0.035096521203110076 a:0.03479171214669796 tho:0.031081789067163523 The:0.03029238270572119 to:0.026971252942635693 by:0.026070018880382795 our:0.02219733455355076 Western:0.0187028092570653 his:0.01390851282326871 tbe:0.012038099330401278 or:0.011493991369117124 from:0.011021132835586527 with:0.010805852151120239 great:0.010165364827971946 their:0.009774444220604073 for:0.00968756357772248 American:0.009369163134579616 :0.14609588109631716 +of:0.2527541258242644 and:0.10338243556442997 that:0.08743538471227494 to:0.05562922658935264 in:0.044875864289224014 by:0.03815161546321858 from:0.02927742044828238 for:0.028340063580269786 when:0.028277234278941164 at:0.023355416217354555 which:0.019604728982620154 all:0.019398823964146317 on:0.01876225295527511 In:0.018577813732350373 but:0.01830093689205997 with:0.01654956622456207 When:0.01228800317746176 as:0.011975350011256195 before:0.01109140458955003 :0.1609723325031056 +the:0.6986841711628498 The:0.03121716950517603 tho:0.030551165091789446 in:0.030316570243238323 a:0.02413534613283169 and:0.023984686066824884 no:0.01842354933816535 to:0.013378323301826053 tbe:0.012441038430778232 make:0.010411494551651126 by:0.008762534472507865 of:0.00813716161504476 In:0.007860871467029832 for:0.0072570492657355835 full:0.007021170907183549 great:0.00662665132811062 or:0.006367855698424723 its:0.005805960874901406 their:0.005549625767744843 :0.04206760477818598 +one:0.1028303141280697 part:0.05963429477052991 out:0.04766456937681193 some:0.031418679026461914 members:0.030764490253327767 side:0.029940657362655835 portion:0.022063658796890564 office:0.020457735219956013 member:0.019726706386316174 end:0.019666887540649894 tion:0.018667441728710307 parts:0.016814747270460957 people:0.014112771422418794 all:0.014072739582212475 any:0.013183573287639892 One:0.013083578354183906 that:0.013024335602903442 account:0.012482348155001894 many:0.012077825070275192 :0.48731264666452345 +the:0.09676386389857664 and:0.08712783775062416 is:0.056537368779855005 of:0.051350281951996986 was:0.04345500856505347 be:0.041589802366950306 to:0.029842726079772265 a:0.029120872911252402 are:0.02153215420636103 I:0.020489089969373295 it:0.013974361057641185 were:0.013450451390597975 been:0.012934880568507548 :0.012362596113777383 this:0.011716774159860659 he:0.011690008345593252 or:0.010973568553086385 in:0.010344793118878683 not:0.00996229047514492 :0.41378126973709645 +the:0.2785206171651402 a:0.21477447014617124 and:0.06919765548986559 to:0.056337203180160625 The:0.052538264289366955 or:0.0266954939088724 no:0.021318905902384073 of:0.017941643100111662 fair:0.017759280214169306 an:0.017715015422580412 in:0.01555610988958656 his:0.01524757055983163 tho:0.01369824903578917 good:0.012398812563891465 their:0.01212653123203174 only:0.010191694396971457 its:0.010068229707657913 great:0.01002841274899253 would:0.00910148922875253 :0.11778435181767255 +-:0.026124595731291424 .:0.022752517616147962 re-:0.014938715816600018 the:0.013484226355980853 a:0.010944318742170736 :0.009786912757068191 and:0.00914657860441011 ex:0.00756782628533579 re:0.007505507341203939 of:0.0073866050005627635 ex-:0.007378318562113996 I:0.005904405309924213 in-:0.005711892531337381 to:0.005068425675553736 th.:0.0047904652796328 i:0.004579921480727661 ac:0.004326787025940707 or:0.004242583544191669 is:0.0035298937551583778 :0.8238295025846477 +more:0.26566802408636514 less:0.13551613124775952 better:0.07423974559961498 rather:0.07293037129559224 greater:0.03753528659900292 other:0.025232012184753787 higher:0.022786048161237193 worse:0.019376474392071016 larger:0.016831585966743882 lower:0.014968113750347197 More:0.012742779514605299 and:0.012663347714912853 cheaper:0.010276192853857636 longer:0.008956948367921233 faster:0.008100091689798009 moro:0.007893975601662807 work:0.006984305393010052 smaller:0.006897863749836057 stronger:0.00681622223798865 :0.2325844795929195 +be:0.17355779311577588 was:0.16691183803590115 is:0.08247669306571924 are:0.07086386924917518 been:0.07078449493199679 were:0.06945869485397309 and:0.05204057872708273 have:0.0478985403921939 he:0.037657812436515406 had:0.034450613852879626 has:0.020502961181003653 being:0.020237390373751222 He:0.016221629609290057 Is:0.015305007160052593 I:0.014748550646462725 bo:0.012089156890255838 so:0.011197732204553968 who:0.00842234497054511 but:0.007565402402710746 :0.06660889590016107 +of:0.11862270727401475 the:0.08828212098559225 and:0.07872153176820422 to:0.05276822635585334 in:0.05231916933560058 a:0.043015538689931396 an:0.024703074772979262 Mr.:0.023794302742430117 on:0.02228929325679094 as:0.021214790740211483 is:0.020169072351639082 was:0.018301498135124623 con-:0.016904550147645105 from:0.016820094880255494 be:0.01649703102768055 with:0.016139831667219724 that:0.015311734661332715 In:0.015172675732429189 Mrs.:0.01413869680230469 :0.32381405867276053 +which:0.1267725512928564 and:0.102080789348389 it:0.09352259538738365 that:0.07822303051341285 It:0.06792824342841813 he:0.05325603155162981 who:0.03523272117227079 This:0.03209225261027765 He:0.023233835407639312 what:0.015665422715723912 she:0.014657292012685869 there:0.01446000190845282 as:0.01424265769213625 this:0.01220411194289825 I:0.009954846414972792 or:0.007918792550308279 now:0.007850755342236357 time:0.00752383165285146 they:0.007244033666993557 :0.27493620338846286 +Mr.:0.03862398759188049 years:0.012466375685786664 John:0.01185805380790825 ;:0.010029182924224883 up:0.009891677494664184 time:0.009468551528781283 him,:0.00921092525092507 Mr:0.008979579398870414 executed:0.008588483116503226 it,:0.008461050081334165 hundred:0.008014941179976968 him:0.007873684720433741 James:0.007652722190322321 man:0.007436995680179883 years,:0.007424154786868781 day:0.006901794012756657 home:0.0067376238509406225 William:0.0064230978311412045 them,:0.006311433797679199 :0.806645685068822 +the:0.2833052330831591 of:0.1077496400904246 and:0.09179571311878963 in:0.053592616766435064 a:0.04286021680407171 to:0.032014801501554765 The:0.02881751505454871 tho:0.018399802070343627 for:0.017667060182115345 or:0.016145589589465752 that:0.015496472948676317 all:0.012933619707494631 with:0.011986960309297204 an:0.011656071291936361 In:0.01032330490023321 no:0.01025967778789816 his:0.00960784656946296 by:0.00914905308946248 Mr.:0.00893990122665269 :0.20629890390797773 +and:0.07558940021936399 recorded:0.030196237618668006 was:0.028917161578042846 made:0.027969746247669736 that:0.027730098932509103 o'clock:0.025060522019555328 up:0.023026552239529506 is:0.020398277211376416 found:0.02003101797656537 placed:0.017482208134164214 out:0.016937164562539058 place:0.016819459500107596 interest:0.016629321966808677 him:0.016002796715253755 situated:0.01573420479581609 it:0.015128305982428461 them:0.014715943643665314 part:0.014646613000297721 interested:0.014450471929902294 :0.5615344957257364 +it:0.20689377318318858 he:0.14388147885194477 It:0.1194672333449709 and:0.058199778714183886 who:0.03808407088268705 He:0.03782662104051745 that:0.03337570575133796 she:0.02695180976088169 which:0.025852499386020196 I:0.019599496436312074 this:0.015966041279796107 there:0.012973899120340625 but:0.01264604634084177 This:0.01225994167515711 as:0.011030054030787053 man:0.010482606513944 ho:0.010143992548908925 be:0.009809648895594573 lie:0.008442555329918515 :0.18511274691266674 +a:0.3031401862744066 and:0.09958378609109239 the:0.0820287650585969 said:0.06744581904171938 of:0.06005445584854541 in:0.050028050022560736 such:0.027600633564329836 at:0.02017910371913763 to:0.019940908661774795 this:0.01579441313597264 by:0.015047448393065675 for:0.01451017876366542 with:0.012355983988007833 In:0.012229146986394499 other:0.011976735138123671 that:0.010932887046697152 his:0.01044854369669871 any:0.010376931398223755 following:0.01036831518064608 :0.14495770799034088 +be:0.13585795052009203 and:0.1020035108131389 to:0.07919353809582629 was:0.07574641126202754 not:0.0675500543084365 will:0.05133312782017197 is:0.050718910936075716 the:0.0459054718603081 been:0.03690607293148782 are:0.03638525759414329 were:0.033130817305283916 or:0.03013049929142375 would:0.029168821773002486 a:0.023624030367127728 he:0.023536087511893237 of:0.019287036769262824 should:0.01825654463359895 who:0.017888219862275446 had:0.017749425170823212 :0.10462821117360027 +the:0.16883506074108198 of:0.10345999980581193 and:0.07765091647747123 Mr.:0.042646070294986925 a:0.03676854853394007 to:0.02730423700154303 The:0.023555615107356022 .:0.020409359832543682 by:0.018024363299732695 in:0.013897353732280127 for:0.01331089079449869 with:0.011100144844755954 that:0.010788179786794411 Mrs.:0.010587736569899649 or:0.010484845999064638 tho:0.010440233278329509 :0.009960897908832863 their:0.009790656798233792 his:0.00974718170240166 :0.37023770749044116 +of:0.09129790931378902 the:0.07369883040827747 and:0.047842263382354346 in:0.04189055351593407 to:0.04045875475680249 a:0.03542341257202578 be:0.02020462051672066 for:0.01979292654746225 was:0.01760256398103379 at:0.017380150555488715 is:0.014984483003968216 with:0.014047653760730413 by:0.01374644383819499 :0.012670486581795598 In:0.01200961464556976 or:0.011563835749786333 from:0.011391516893522809 are:0.011273104484969465 that:0.010755276030689069 :0.4809655994608848 +together:0.16609686069549726 and:0.08235855174617822 connection:0.027565930962423844 connected:0.024599884063808773 it:0.021531885107265766 do:0.019342835882029542 Together:0.01912773751935442 him:0.017267309877033208 them:0.015431151006397734 comply:0.015128305857139252 acquainted:0.015017005435109154 but:0.014544549747275305 gether:0.01434219198813663 familiar:0.014113831359418055 up:0.01144181365700697 charged:0.011098435044326515 satisfied:0.011017783727721666 that:0.01077467825091707 complied:0.01052814900562557 :0.47767110906733506 +of:0.18282767761356322 and:0.14381344804074672 to:0.10558491526249252 that:0.09253732767460206 in:0.09039897176118313 for:0.032324644576532516 with:0.029998709925744684 almost:0.024456683369722024 by:0.02418513986901968 nearly:0.023346234490068014 which:0.016696094786799984 In:0.015947545455196475 at:0.015931012133637276 but:0.013769655809941522 from:0.01185350322158131 on:0.011108772551887261 or:0.010862931583267819 as:0.009199125744228464 where:0.007117750488801378 :0.13703985564098392 +and:0.1562526024589372 to:0.0812265209623723 with:0.0614614787330177 of:0.051431962886746035 by:0.03695594811366994 was:0.02772455355546139 at:0.026128382703075336 from:0.025509515435683246 is:0.023644618270644437 are:0.0209074784552059 a:0.01610736304613869 be:0.013393103103812906 were:0.012378239845344046 on:0.012250449657491396 for:0.012222140297248123 in:0.01145350156489242 or:0.011128532569076557 not:0.01094613090083713 will:0.0101026853321138 :0.37777479210823145 +of:0.28767355066866834 to:0.08775711267569858 in:0.08678131196995101 and:0.05160598694501188 on:0.04646139928102899 by:0.04519522654900943 for:0.044547789071328545 with:0.03396756772609607 that:0.033699232901107726 from:0.03075346596941143 at:0.027039283056790858 In:0.021061449543044047 as:0.017514234937992545 all:0.012543839382496166 upon:0.011844431150487573 is:0.00998972746569266 was:0.008814315973987914 into:0.008557199930727406 through:0.007781895704231326 :0.1254109790972375 +miles:0.04203763148557041 annum:0.03746894434803376 and:0.03495647647450204 street:0.026748046029677737 feet:0.025137451073518238 came:0.019827070949797753 day:0.019382332707016718 returned:0.018713949946161552 received:0.018184694945419105 due:0.016778703294131513 away:0.01641412920899552 road:0.015546374742739621 down:0.014070495592735783 or:0.013951953653664834 it:0.012570147197771544 taken:0.012499201225796544 come:0.011815491800418248 running:0.011714774324915623 up:0.011308037957169541 :0.619874093041964 +the:0.06861474268055351 and:0.060703065434291326 of:0.051481627921356694 to:0.028230387100610536 a:0.026827044713376897 at:0.0184461973849827 .:0.017574279844894784 in:0.01596631416677313 1:0.013015502331578745 was:0.011019303028291362 :0.010012563313388298 on:0.008597492682737308 for:0.008293592425004154 is:0.007478488278245751 or:0.007413661930095649 I:0.007307802078792768 from:0.007013315902776644 No.:0.006962903839433785 2:0.006896059342307965 :0.617145655600508 +the:0.32474599754429134 and:0.06130052122370417 of:0.040371411382914044 in:0.03115652934157804 a:0.029905575920059546 The:0.02713629763214079 tho:0.022469631522724076 on:0.016598141742921423 that:0.01587550051498691 to:0.01474563335268959 or:0.012994002381152196 tbe:0.011652431551588877 :0.011637204961487785 any:0.010685262681667765 by:0.010082137257473145 no:0.008898799612007475 In:0.008462174370454328 other:0.008219204311363092 for:0.007937685894563895 :0.32412585680023154 +in:0.014607916119009662 time:0.014290832101786747 power:0.008982116880977296 to:0.008875829386288095 ;:0.008455349129587513 good:0.008408540547082668 land:0.008187604270356396 costs:0.007964007772896551 and:0.007778935028046818 life:0.006995713188711885 work:0.006516627878652736 :0.006348982446762427 them:0.005988568661152368 it:0.005828571467753503 men:0.005655540771772728 out:0.005527136296645321 city:0.0054403774482878805 of:0.005429686286267541 for:0.0053479038208381425 :0.8523697604971238 +the:0.16807735899698817 of:0.10541662057906837 and:0.05138367848570702 a:0.04141865232648221 to:0.0385989743764065 in:0.026264864977736738 was:0.019530675665220657 his:0.018900421021236905 be:0.017373825006196972 their:0.015767721170721456 for:0.01557246589796783 with:0.014071419046630446 is:0.012922913111931644 at:0.012690452250034052 are:0.010702713108721902 .:0.010158075558988393 Mr.:0.009672788574483367 tho:0.009612591781990074 were:0.009549306361446321 :0.391314481702041 +of:0.28733788115238706 on:0.19557818615716904 in:0.10006186338152831 to:0.07023959412650015 from:0.039104831714686004 and:0.03491353424712803 by:0.027865257534050995 for:0.025729575600664984 In:0.02465909525196473 that:0.02403894080764747 upon:0.02034785253541067 at:0.019610290610469785 along:0.01919636039481833 with:0.015935228995060627 through:0.012594822238941922 as:0.008640096748138948 which:0.007199646943315866 all:0.006980712649686796 into:0.0069169880381930665 :0.052049240872237175 +that:0.2114682232088847 and:0.18083041321983212 but:0.06180767167506326 if:0.052701303038864514 which:0.03238937539383482 where:0.0308448650453812 If:0.02969549595434378 as:0.02892513979737233 when:0.027130834957466973 But:0.020911061371545112 Then:0.014437791187567049 time:0.01351035308409899 for:0.013358827850394482 than:0.010513348566605182 then:0.01041379494077972 because:0.009527393552098714 while:0.00943533562628165 though:0.009197520576234484 yet:0.009177657282089708 :0.2227235936712612 +and:0.19849802182304507 to:0.1739184743673781 of:0.05557364392119837 the:0.03612650725658663 who:0.02281440579785854 or:0.020954480265663926 not:0.019186335385522696 by:0.01653584378400481 he:0.01623248203567499 in:0.015356880315755139 will:0.015117338402974209 have:0.014539325167425383 would:0.013745421982772798 that:0.011852143443643519 had:0.011808917003045554 for:0.010754294197917208 which:0.01034666982483541 I:0.01012542579265435 it:0.009929313559686657 :0.31558407567235663 +be:0.20094175426997948 was:0.09451633415866693 is:0.08943845518345382 been:0.08717904867326623 are:0.06502036375983633 were:0.04508221277356801 has:0.04141770438245846 and:0.037617760440077655 had:0.03340078230541005 not:0.0319265668893359 have:0.02957490112876242 being:0.029375847372873326 well:0.02023816216019155 he:0.02009527600530365 I:0.01676665419306986 specially:0.015173694876367936 bo:0.014692880674188915 it:0.013865304159176174 Is:0.012492797723952764 :0.10018349887006052 +a:0.21211538322092624 the:0.19546933793587096 any:0.0837433263674313 that:0.06392555342730763 this:0.03900466156601476 every:0.03320437776626297 greater:0.0317962037514499 latter:0.02445227455811817 no:0.02194048191245243 first:0.02122680174566319 in:0.019145450321797694 and:0.01833696914000321 or:0.018018366847473998 large:0.01717044034959002 other:0.015696659241908387 early:0.015427668332717937 upper:0.014960184655747284 take:0.014893052348053108 as:0.0127088152040228 :0.12576399130718802 +sum:0.03352282876311118 number:0.028116684882597106 line:0.019995206059833036 city:0.01946514558931857 out:0.019275318828420953 day:0.01666865340772654 county:0.014872697538657208 amount:0.013254184849875051 Board:0.01252325449624941 town:0.012449555905674143 side:0.011663975251122375 part:0.011517157473718155 County:0.011460540331966697 state:0.011087331502382173 City:0.010878919191854432 purpose:0.01081028255427907 and:0.010297866493795984 way:0.009848747943663767 name:0.009522170936943183 :0.711769477998811 +away:0.0594906994988549 and:0.056908381977562685 taken:0.039949330304050686 came:0.038730563910635306 come:0.038440839207033714 miles:0.027742918942786913 them:0.026086532738417278 him:0.025521052559189916 free:0.023642004925516498 derived:0.02138144535170431 out:0.02109542356312111 received:0.020733503375295902 it:0.01885457311418442 comes:0.017599144833117624 suffering:0.017342856164820137 far:0.017289627707983677 made:0.01717625527868591 coming:0.016861469640005858 feet:0.016764031482543372 :0.47738934542448974 +a:0.15870566594556065 no:0.1496917736733323 the:0.12607708498221926 by:0.07931909796377054 and:0.051816821852147935 of:0.05027078997906803 any:0.03178147901967485 This:0.03172443226223327 some:0.025914912925017193 other:0.024702218688269353 this:0.023432158521621286 It:0.0214700184744699 The:0.019286038369872652 which:0.01821501414843479 one:0.018141370423143736 it:0.016788869530296856 that:0.014355418152548293 only:0.01414511693941682 all:0.013785243912820658 :0.10937647423608163 +and:0.1033366960942769 was:0.041246468125173734 arrived:0.03319463710266379 that:0.02994810703920176 but:0.029496995836373198 is:0.024247053759927938 made:0.023963073229111467 held:0.023808662486176437 look:0.023307794027366744 appear:0.022159007079112388 be:0.01861049461679925 not:0.015973717459714237 required:0.014868588615543034 do:0.014046271475169523 are:0.014013336634504086 sold:0.01399397177892937 done:0.013923992849550667 him:0.01370182491454535 them:0.013114960732308752 :0.5120443461435513 +and:0.007961939686702838 it:0.0065912659471561085 .:0.005755486059284684 :0.00477726879132813 of:0.004582640358475609 he:0.0045083153406908424 ,:0.004420960911774894 I:0.0043946170116378235 them:0.0043382394812718885 up:0.003727408942123253 the:0.0034912264764478526 in:0.0031050499972263275 :0.002877493276034782 that:0.002777249077231215 -:0.0027358090203640512 who:0.002727891417048151 ;:0.0025628015227427687 1:0.0025003479424567853 them,:0.0023679525891914187 :0.9227960361508105 +and:0.10665931893280754 when-:0.10097015387769608 you:0.0937370541805837 than:0.0640603628575828 I:0.06227794986060831 what-:0.050125643633175024 it:0.03476112045898815 as:0.030799149452662572 has:0.02916271133387382 that:0.02814228875440379 have:0.026931035830587903 he:0.023537672419987235 will:0.02152579064260459 not:0.020363504332903924 there:0.019215111902788726 had:0.018771365642660073 is:0.01760145543943512 was:0.017150930815997077 to:0.016862781532595694 :0.21634459809805787 +it:0.12291356726271781 he:0.10766523848787593 It:0.08126222867785683 which:0.05815091424687329 I:0.054909855356083816 and:0.04607290301292405 who:0.036234513317437905 He:0.03284977251390459 that:0.0307500349566012 she:0.02807960748770171 there:0.017106531141060498 as:0.011444714915749334 She:0.009915288061780691 ho:0.009311744482256256 what:0.009144898696231517 1:0.008083327589627603 This:0.007923029238788926 lie:0.007752420127589498 man:0.007654383581502722 :0.3117750268454358 +;:0.03330873976812056 it,:0.019927152768868535 nothing:0.017615253365376456 him,:0.016136500096595112 time,:0.015806789465192154 and:0.012870653616841147 ago,:0.010733331298833906 years,:0.01033124919650784 them,:0.009702001495738221 anything:0.007874260097600208 ,:0.007726955847177419 day,:0.007276692336392142 out,:0.006438026818424883 war,:0.006233550239590276 made,:0.006155912115415987 all,:0.005832403038233842 that:0.0058191190423593445 man,:0.005813780371059147 year,:0.00575686143948646 :0.7876407675821863 +the:0.08420913210031296 and:0.07107068750542198 of:0.06822389165938944 to:0.0599489087081745 a:0.05257718780079019 in:0.03141473158662753 at:0.021975814255332612 or:0.017694597911752274 that:0.013162839445448531 .:0.013061368692281139 was:0.012987245792900807 :0.012773694497432157 is:0.012394992910484803 two:0.011275167442196135 for:0.011036798656478955 one:0.010008200950919357 Mr.:0.008795227227627026 I:0.008735566598605277 In:0.008322108371681566 :0.4693318378861428 +most:0.15587884470931837 very:0.10567480679217499 more:0.09438022094273915 be:0.0900235783037554 was:0.06254953356671805 is:0.05806899783116465 so:0.05275949502800404 the:0.046524465867101183 as:0.043076291605905724 and:0.04223009106472364 are:0.03859642004620998 an:0.03671582230466721 been:0.028774668460243815 too:0.023856046648823268 were:0.021411807945248627 of:0.015050922859123612 a:0.01068067946451814 in:0.010326058829738605 Is:0.00948153425263636 :0.05293971347718518 +of:0.1437169743586257 that:0.10209455928894892 to:0.07834745836124028 for:0.07455940819408986 and:0.07339129443675331 is:0.062385411643007316 in:0.04457951988412905 as:0.034784671216794544 by:0.030053066663307693 on:0.028526248987167935 all:0.02721360220086036 with:0.02474465964945214 be:0.02376409389015872 was:0.023752091953483927 at:0.01928764655119293 from:0.018216086105757028 but:0.01609753143266228 when:0.014164165889163331 In:0.013079233558945833 :0.14624227573425885 +of:0.057516561027845796 the:0.03952112229660144 at:0.03557263879644962 and:0.03225039321543559 .:0.03221963631496154 0-:0.020572849695617287 said:0.02036426569491286 -:0.02000971304363897 :0.016065459698261817 in:0.013247882185562871 by:0.01298596364399425 to:0.01228484920573484 about:0.009213236949292622 E:0.008859151684309237 with:0.008596654057303588 No.:0.008394677807492607 A:0.008075636219445102 W:0.007991411974513309 or:0.007932429162981997 :0.6273254673256446 +as:0.06766272693983134 and:0.053385146534662 it:0.04378733627035619 come:0.03924394398720815 came:0.029139849032704175 brought:0.02848940274062227 him:0.027467282664507212 up:0.026953684584734936 go:0.02667091614385115 them:0.02647517579017026 back:0.026176854429455134 is:0.022274890533714946 according:0.01989939587432101 went:0.018624237513857788 me:0.01812173439134777 time:0.01764527351236105 but:0.01695131629850022 look:0.015357627979494711 seems:0.015027444257457773 :0.45964576052084194 +he:0.138461585698189 it:0.08344511427528438 they:0.07733554183023712 that:0.06544044601825916 which:0.05474135230930402 and:0.048501284971526816 who:0.04355575034990324 I:0.04065566734392743 we:0.030089357846051216 she:0.029205512355613594 It:0.02904266163865688 He:0.01936956660099179 you:0.016538886285323677 one:0.014007409761402165 This:0.013391800442164078 what:0.01150797620068918 ho:0.01086868592515798 this:0.008939168050957545 They:0.008891142011239807 :0.2550110900851209 +the:0.14538285862993044 1st:0.08134507703834688 first:0.06736886768797135 a:0.055874525947905124 25th:0.04330570615268372 7th:0.03688213350850801 10th:0.035117537855034915 12th:0.03482687129394641 21st:0.032870317578004654 15th:0.03272520813383107 13th:0.02925249040911833 28th:0.028551498372195953 14th:0.027199406423118976 6th:0.026808826990102827 26th:0.025722141500643267 4th:0.024208282672405948 29th:0.02309675301622377 18th:0.02303604825841656 24th:0.022877400054659373 :0.2025480484769524 +the:0.2014954853133326 of:0.0861414391416471 and:0.07280385406465283 The:0.04559186983907473 Mr.:0.03492086363563214 a:0.02742399264974953 that:0.027378585421016878 to:0.018065273637566843 or:0.015887011513874543 tho:0.01278835454433166 :0.012776359790067669 in:0.012534070531893962 this:0.012110080689405844 his:0.010243683215264043 their:0.008705606823750465 said:0.008477115479989892 .:0.008231419848711858 which:0.007797785800011309 as:0.007794443306140376 :0.36783270475388574 +a:0.3784966760028914 the:0.17487015070281578 of:0.04070216284255875 is:0.03821935404017004 to:0.03361347595612502 was:0.028964275958960704 with:0.026657386633105483 are:0.02420462342713032 and:0.024040347160603596 for:0.01846210562834254 The:0.017406290682583373 A:0.01673756533620495 by:0.016476430046388792 at:0.014041338023040983 in:0.011636929807070996 were:0.01138651034685845 not:0.010797267106077727 as:0.008603341120897692 from:0.00827599430975578 :0.09540777486841762 +the:0.5044984177029026 an:0.15158349929972761 The:0.06737925823535595 and:0.043300282174811286 a:0.04261294804579023 tho:0.025737631846715715 their:0.01633543072586906 of:0.014124563765444938 its:0.011262701228092772 very:0.010876275674760122 An:0.010682705864767656 his:0.009254302702987233 no:0.008778211255971604 our:0.008690041237530644 all:0.007312337918585456 tbe:0.007308043523959709 this:0.007110009409236058 most:0.006242131911639657 to:0.004690083056135238 :0.04122112441971642 +the:0.11835284219610852 of:0.11342508167310636 and:0.07455061938560477 to:0.06390442886317879 in:0.041397192339660785 be:0.02864600919550633 his:0.020402329946483867 their:0.019961986662749388 for:0.019950422016818944 was:0.018959401054854982 as:0.018244274039790682 or:0.017860214741732147 were:0.013194863049924458 been:0.012938899205348036 he:0.012854002968678327 are:0.011930693205822867 that:0.011492152080408435 a:0.011329440368372926 our:0.011060653474211543 :0.3585444935316378 +and:0.14507320772351315 fact:0.08580533594336559 said:0.056464728489513914 so:0.05141663139801109 believe:0.03728868944610554 is:0.032697255055655516 say:0.030323479159427524 know:0.029749358812227955 found:0.025535190692382553 stated:0.021273605064562356 show:0.019511948220510757 but:0.018999393120383457 says:0.018814328565908398 think:0.016893655385130203 was:0.01658797795582863 all:0.01652317309060226 see:0.015409038245983688 opinion:0.015263158537430448 order:0.014744011681695817 :0.33062583341176116 +and:0.10466167783245578 of:0.06670140396212135 that:0.05186635302440564 with:0.045646876683768704 as:0.04499581650088545 in:0.04377368939995029 but:0.037773307112317835 for:0.031712587404896804 to:0.030505034076898106 make:0.029081038972582 on:0.027861389163067088 do:0.02317381384142469 give:0.02199790284924584 made:0.021392531319528913 is:0.019901129390644777 by:0.01981354301512827 upon:0.01819411936525014 which:0.01801619934552808 when:0.014781791671969961 :0.3271497950679303 +of:0.2917213544537258 in:0.2111655059204274 to:0.08952905544041415 that:0.04731536664598448 and:0.0470127226755163 In:0.034068619301118375 by:0.02989304583751216 for:0.02201183566647375 from:0.021379066213834026 into:0.02103990707899116 all:0.017629232692827016 as:0.016681861580881363 with:0.015842571868229155 on:0.015753331336141582 when:0.010691729247662934 at:0.01015813208648915 throughout:0.009547768943167372 over:0.008743500548679877 upon:0.008431387018587037 :0.07038400544333692 +and:0.12906831745374028 was:0.12129673739270187 is:0.044616011395446256 be:0.043063943142277405 him:0.03585953714142346 to:0.03134143274006336 up:0.025881414004792512 back:0.02541676336951287 it:0.02492311416592923 been:0.023916254335199717 not:0.023575523422904844 over:0.02274216570212797 all:0.022461124843588733 were:0.022253598270356792 them:0.020601367011107166 are:0.020598289254508708 down:0.018033898832231245 then:0.016962513336054117 come:0.01517500878458165 :0.3112129854014518 +of:0.14116483996249282 the:0.13726692806046334 in:0.08517403544897786 to:0.057460565419062005 a:0.04861209821494264 and:0.04088405872822433 that:0.03339285485825055 for:0.028202621441532814 by:0.026398253882850758 In:0.02592172708252257 from:0.0204328135721241 at:0.020340496646614744 which:0.01904228538918586 with:0.016451337677722562 on:0.015981625248756855 or:0.01577158752585046 be-:0.012191965685657806 in-:0.012133538740659505 be:0.011824276060031474 :0.23035209035407692 +the:0.39479503303677715 in:0.09698820675031312 a:0.04726337265542163 railroad:0.031099993977127195 his:0.030815414521239756 this:0.02984154617611631 tho:0.027004673890619457 and:0.026303859691231238 In:0.020152150734110537 The:0.01907558800661048 of:0.017175898895421298 said:0.015066529572279993 our:0.011483701440851294 their:0.01093444201555389 tbe:0.009798303853501557 any:0.00862136385360911 other:0.007931117915650219 that:0.007810446628716397 your:0.007763395126964241 :0.17907496125788513 +the:0.3841452408258117 of:0.15624272031264827 in:0.13422307533437114 and:0.049757736741040046 to:0.035170674985907736 In:0.030807940763146403 The:0.028976455508067926 with:0.019815858950709166 for:0.01872511837141515 by:0.018107401832578487 at:0.01632941623767448 tho:0.01521018459239491 from:0.013122742844227894 their:0.009660300156391735 his:0.008804319417504139 all:0.00864530189868449 on:0.0069272867029829665 these:0.006665624393550161 that:0.006575815097729621 :0.031086785033163655 +to:0.09510176257557867 and:0.0759782477397007 of:0.044882537993784916 the:0.0315600709783228 is:0.027469709441114137 in:0.024414242512733896 was:0.023644505786906175 con-:0.02072663556943141 will:0.0197525729259325 re-:0.019515757684955143 he:0.01933396268374066 I:0.019168528042120436 for:0.018758717550584603 be:0.018539065847662673 would:0.018528419960293203 that:0.017041510263127942 be-:0.016586329410835588 there:0.01648203693916975 not:0.016023551150036123 :0.45549183494396867 +and:0.20863439755070673 which:0.051224479444434104 of:0.04946611501696699 the:0.04348610576268447 he:0.0390132866981524 it:0.028721555972632404 who:0.02795497318351268 It:0.02716140889992218 that:0.018102272606488317 He:0.017644697053606596 I:0.015987793709590446 have:0.015130254838086174 in:0.014954117528634599 as:0.014799692324051346 This:0.014473186805720052 to:0.013078107463937581 was:0.011466914385815737 is:0.011367214591013945 by:0.011038608796286618 :0.36529481736775665 +would:0.13516776815931453 to:0.10175318883572715 who:0.0734216616549984 they:0.06090829687960963 I:0.054414498797697934 which:0.046947310165833735 must:0.0405200574155989 might:0.036445589637541506 shall:0.03272411333844378 and:0.03228038765818951 should:0.03179090655993478 that:0.029508760759060126 not:0.02876680420731567 we:0.028503874055856488 may:0.028150033623979002 could:0.022163961267380006 will:0.019029697840863502 there:0.014322928357478427 They:0.011858887319353098 :0.17032127346582382 +the:0.07727671398976102 of:0.07486901057497489 to:0.06576801374968645 and:0.06364469398547178 be:0.04404465700448548 in:0.03934237410689576 for:0.032905587969673966 was:0.030208731654395856 is:0.025925500796666442 con-:0.02285238347713757 or:0.02127332210315157 re-:0.020949441608298442 a:0.019985098955781763 he:0.01977017367980431 are:0.019487690401696182 not:0.01776257114712816 that:0.017683217455063793 been:0.017349511731917486 which:0.014329289440064251 :0.35357201616794487 +and:0.07558940021936399 recorded:0.030196237618668006 was:0.028917161578042846 made:0.027969746247669736 that:0.027730098932509103 o'clock:0.025060522019555328 up:0.023026552239529506 is:0.020398277211376416 found:0.02003101797656537 placed:0.017482208134164214 out:0.016937164562539058 place:0.016819459500107596 interest:0.016629321966808677 him:0.016002796715253755 situated:0.01573420479581609 it:0.015128305982428461 them:0.014715943643665314 part:0.014646613000297721 interested:0.014450471929902294 :0.5615344957257364 +the:0.22006340769827681 their:0.0946140999511347 who:0.07606441099171422 his:0.06823471161612746 and:0.06805120372584375 our:0.0519515573405707 he:0.044353141641378296 a:0.033003467070648405 to:0.030061257065315206 I:0.025219205389873375 of:0.023492965030618967 my:0.02103570507565387 her:0.01981917964086901 its:0.013372759631083626 not:0.012877515681111272 tho:0.01270841657367069 your:0.011253230272739912 are:0.010718970113048502 or:0.01040760562881207 :0.15169718986150915 +and:0.16127608936130647 he:0.12081120625488051 I:0.09174443151690909 who:0.05951871752446335 she:0.05194851291915411 He:0.05078277328403221 which:0.04655176641936326 they:0.04325148544618522 that:0.03670838494794315 it:0.02073388413106284 It:0.020685609181743364 She:0.020562231622148965 They:0.016830658061520044 we:0.014699160460473424 1:0.013559730527236528 then:0.011653038074826918 ho:0.00930719998979007 one:0.007539201990554149 what:0.007094410458564817 :0.19374150782784147 +the:0.10537653695870493 a:0.06451128159451233 of:0.06322486310436998 :0.04076039324589844 in:0.0361600414065857 and:0.03387846493797176 gold:0.022403395383600914 said:0.018124819656807525 on:0.015168117573621425 this:0.014704759651051533 Public:0.01442931308021967 City:0.014369681044464788 :0.014200954132966124 for:0.0140814624766181 to:0.013884975022981924 his:0.013492945714685449 ac-:0.013398506020357599 in-:0.013271436750521545 A:0.013193492148837263 :0.460364560095223 +of:0.06695954584706283 and:0.06649137032642373 to:0.06601061952379313 the:0.06171729943033423 in:0.05467960970092213 a:0.028607847520134077 was:0.025593805541454278 is:0.025575134465780882 for:0.02227513014141085 that:0.02203423644291701 In:0.016378139785638783 or:0.015262626560564149 at:0.014440266861137486 be:0.014337880734617895 which:0.013575436189030142 be-:0.013320788275858104 on:0.013254535972039225 are:0.0128330814609448 :0.011498114248276568 :0.4341545309716597 +at:0.15759636317629921 of:0.1421714067936483 in:0.11676904876960983 to:0.06398364411645996 on:0.051157018190029144 for:0.05108566601725402 and:0.04555513108461132 that:0.031721944739604234 from:0.030113826054908015 In:0.029702699076370135 At:0.029399515452081842 with:0.028043139425789426 by:0.026185917658690036 is:0.020303271491863204 as:0.01797707611473321 was:0.017223050385135958 upon:0.016504659720422372 about:0.014081527374087893 be:0.01236778699448754 :0.09705730736391437 +the:0.13164268207004517 of:0.10575072941141166 in:0.06347740506408298 to:0.060405000754162594 and:0.04452284949554167 for:0.024558225750815645 at:0.021756421737679284 that:0.020543184239000836 or:0.017173110693591138 :0.014239540100754837 on:0.014149129016732445 as:0.013259825807961007 In:0.012923716193270096 a:0.012663291869884552 by:0.011786100793962037 be:0.011400979100127414 from:0.009961902949231246 their:0.009587677202480523 this:0.008943600138765296 :0.39025462761049956 +good:0.014387394962523375 hundred:0.013933853909232559 time:0.013241408851851882 up:0.012891035959995155 long:0.012024294566958577 out:0.010232632022875403 men:0.010126513753234041 made:0.008943796156911979 life:0.008879088923570588 it:0.007838035762317452 him:0.007561969156527834 one:0.007389086144732957 right:0.0071404188058201154 them:0.006988374231326648 ;:0.006903187492175148 her:0.006827344919586332 work:0.006587771839318517 :0.0061497753572008415 interest:0.005872660332935942 :0.8250813568509047 +the:0.18266535932257208 and:0.08983977880593641 of:0.07865017358100997 a:0.051513104683537606 to:0.034602073894094185 in:0.02847823569910362 for:0.024594754778883697 his:0.02256181388378309 was:0.01971962090885216 be:0.01931566059876904 with:0.017092141167750305 The:0.015484063361459162 at:0.01545985810756601 their:0.015190987467400538 her:0.014157363950177854 tho:0.013705814768101135 as:0.013434459874562425 an:0.012946242065736994 is:0.012852729215329753 :0.316735763865374 +the:0.7326911012207167 The:0.1076626832733652 tho:0.05008675353077708 tbe:0.023535103791251587 and:0.013523517412987254 Tho:0.00605060513829114 thence:0.004776060067875413 tlie:0.003528754700921781 of:0.00336899359298083 Tbe:0.00285042717289552 tha:0.002600934679867433 ihe:0.002536859459206349 a:0.0024036607691772386 an:0.0022268293936319496 in:0.002100414780404464 "The:0.001883240296596462 our:0.001879839040699996 was:0.001840980617172106 its:0.0017801369970526905 :0.03167310406412882 +of:0.09129790931378902 the:0.07369883040827747 and:0.047842263382354346 in:0.04189055351593407 to:0.04045875475680249 a:0.03542341257202578 be:0.02020462051672066 for:0.01979292654746225 was:0.01760256398103379 at:0.017380150555488715 is:0.014984483003968216 with:0.014047653760730413 by:0.01374644383819499 :0.012670486581795598 In:0.01200961464556976 or:0.011563835749786333 from:0.011391516893522809 are:0.011273104484969465 that:0.010755276030689069 :0.4809655994608848 +Cor.:0.2729278745891013 corner:0.07559226628162394 survey:0.04368036911083021 lot:0.034822383132016216 District:0.03149822510493952 post:0.029750281624422573 book:0.022189993137038833 Corner:0.021408530771035075 marked:0.019922824253761618 Book:0.01865381685045013 cor.:0.01822983143547292 of:0.017893566807445024 Liber:0.017308323263345405 Lot:0.015996979610225687 and:0.012744766412728165 Post:0.01239398547302454 block:0.010893560299673782 lots:0.01002365892768442 poat:0.008088187075602401 :0.30498057583957827 +the:0.11919516938815296 of:0.07230453158552728 and:0.05781056740443249 a:0.043018564803886335 to:0.031305092790907506 in:0.020848713353460488 at:0.014270110001066288 .:0.012526810245749479 :0.012413283442322082 for:0.011719122709941797 by:0.010808400946589808 or:0.010404172990115616 The:0.01003576004804544 with:0.009811868184449042 tho:0.009295902015355835 was:0.008924239095331684 that:0.008672304223433876 is:0.0085591147338948 be:0.008335143826716943 :0.5187411282106204 +is:0.20005452685284963 be:0.1412685968882905 are:0.1262670803388857 was:0.10676698633334018 not:0.07468260154771611 been:0.039181903633064535 were:0.03215313882022682 am:0.025434060176660365 and:0.024682665093830145 being:0.022928452630354566 Is:0.022928163782865222 as:0.019024553829797265 more:0.018052930589311098 so:0.011659559429845482 bo:0.011481913363485056 very:0.010855682285760476 most:0.010335030520150173 only:0.006396733871943713 now:0.006386976242694345 :0.08845844376892861 +the:0.1491209795748434 a:0.12352376737134522 of:0.06442060274122476 and:0.059582318844340246 so:0.0498357055457776 are:0.04952243333201532 as:0.04746010090973178 is:0.0467773179900603 very:0.04673097899879262 be:0.044471772990857916 was:0.039975622486423217 were:0.03363479432457517 too:0.03205730073354021 been:0.02283476036946094 much:0.022509401720114126 with:0.022295885879326755 most:0.019518862135447825 not:0.018359820305257686 that:0.01646782501212855 :0.08989974873473638 +It:0.5071231875326531 it:0.19859139866841138 there:0.03588932978640537 he:0.017661968262728242 which:0.017078883121794876 There:0.0159067197617055 that:0.013160043933470337 This:0.01154644340159595 and:0.009570420409100265 who:0.0091852320780142 this:0.006198663167908905 He:0.0057002962254552435 "It:0.004405534163694965 she:0.00424125002502845 as:0.003415079873110013 but:0.0029385130322191074 what:0.0026838443849678895 :0.0022279324198245277 I:0.002018124087481828 :0.12945713566442987 +of:0.28767355066866834 to:0.08775711267569858 in:0.08678131196995101 and:0.05160598694501188 on:0.04646139928102899 by:0.04519522654900943 for:0.044547789071328545 with:0.03396756772609607 that:0.033699232901107726 from:0.03075346596941143 at:0.027039283056790858 In:0.021061449543044047 as:0.017514234937992545 all:0.012543839382496166 upon:0.011844431150487573 is:0.00998972746569266 was:0.008814315973987914 into:0.008557199930727406 through:0.007781895704231326 :0.1254109790972375 +he:0.13082378402203984 and:0.11090113899569715 have:0.0863190261072117 had:0.08598865937375079 has:0.056532726159255864 I:0.050575645207936566 He:0.05005727247291256 having:0.02857005437586866 who:0.028365150451190396 be:0.02792748728342277 was:0.026546738436980598 she:0.02635680445261356 they:0.021621945978234705 is:0.01878063549106351 we:0.013469776733305709 also:0.012548058608102335 never:0.010811983638019504 lie:0.010220859998142312 She:0.010074127695719378 :0.1925081245185321 +virtue:0.062060494787377685 out:0.05417899169104244 part:0.03289673107629515 one:0.02969369892462812 quarter:0.027015883171169475 favor:0.01993830018372674 result:0.019463829004704194 guilty:0.018891084377354095 means:0.018499162894926688 end:0.018170939082736048 that:0.018121271122199262 construction:0.01726217741616459 presence:0.017003995482744873 tion:0.01673652166540914 case:0.01640819963257697 side:0.016055927605250184 erection:0.015381239457214257 account:0.015287601389485416 hands:0.015156055434805247 :0.5507778956001894 +of:0.28767355066866834 to:0.08775711267569858 in:0.08678131196995101 and:0.05160598694501188 on:0.04646139928102899 by:0.04519522654900943 for:0.044547789071328545 with:0.03396756772609607 that:0.033699232901107726 from:0.03075346596941143 at:0.027039283056790858 In:0.021061449543044047 as:0.017514234937992545 all:0.012543839382496166 upon:0.011844431150487573 is:0.00998972746569266 was:0.008814315973987914 into:0.008557199930727406 through:0.007781895704231326 :0.1254109790972375 +of:0.1343138587507163 in:0.06765056899607808 as:0.06523902155079696 is:0.06408242877157266 to:0.05920677986120668 with:0.052352944016705046 by:0.0489161125839358 and:0.04476446561312716 was:0.043874711196451026 for:0.0353857632723415 at:0.028122627130863165 such:0.027654959488952243 be:0.026520497424890634 on:0.01775924540667342 In:0.017304992039102633 that:0.017053231434412737 have:0.01675624464989442 from:0.015365315280442398 had:0.013575095776826075 :0.20310113675501107 +the:0.3028839651206642 of:0.07547635731591354 in:0.05700901992688577 to:0.038839764301584076 a:0.033500597708828295 that:0.032103912057679505 and:0.027603380641898892 on:0.02499663803802643 The:0.023353587487879232 by:0.02206276862149071 tho:0.02177112506864949 :0.01604615496077586 In:0.01548113742912663 from:0.013226471284416235 at:0.012547610048184594 for:0.01133326185733961 upon:0.00976397728438693 as:0.009751656783265547 tbe:0.009396491174137286 :0.24185212288886718 +this:0.21738956747542013 that:0.17865240594299328 the:0.15242440648396383 any:0.0782334747666638 no:0.0340696432938558 same:0.02651371452999267 his:0.025082589895145134 their:0.02469846448167149 a:0.0234811921624438 other:0.021254777303226592 such:0.020088305043808194 and:0.019930437764332804 of:0.019094328559599038 every:0.01357532537397088 our:0.013417278907813317 for:0.012599713618442964 some:0.011964787849651284 own:0.010577306609360224 each:0.010500982613961807 :0.08545129732368295 +those:0.09881671380904562 men:0.0806453584705841 and:0.07546487181019118 man:0.06626028797027028 one:0.031957984684241436 persons:0.02269246387937935 all:0.02097132287776066 people:0.020476329055123074 Those:0.016531996642708168 woman:0.011957372454467027 he:0.01123358762571697 others:0.010385714565513838 person:0.010189629379089675 but:0.00848422076457329 women:0.007829075445239815 or:0.0074483715456095815 man,:0.007219047360250249 many:0.006526989816099073 him:0.0056211197154068405 :0.47828754212872976 +to:0.502316078713747 will:0.09433451573762648 and:0.044558985867528926 not:0.03175860016749721 I:0.028573927365595154 would:0.027771075879987107 we:0.019766270053517082 shall:0.018046122891622114 they:0.01706864477837154 that:0.0170544064752631 which:0.01420752423342962 should:0.014145280141717231 who:0.013096414603130102 1:0.012182632154833369 must:0.011528363127695082 the:0.009221356343308146 may:0.009130475236017054 can:0.00794069533238785 he:0.007044186474181346 :0.0992544444225445 +to:0.12022893700269083 and:0.09020394424291768 the:0.08587503820055309 of:0.06450042443224316 in:0.0310058468700829 a:0.017742048521183405 :0.015548046036689871 not:0.01491307651316237 that:0.014112408707955496 for:0.013734482372212283 I:0.013065769926808477 will:0.012848502316304782 at:0.012837991177321897 In:0.012628718855091186 by:0.012491091048660757 be:0.011425930130217754 is:0.0113962101007567 he:0.011342727513475473 or:0.01112522537451577 :0.4219735806571561 +few:0.1931988006226839 ten:0.11918124457365334 three:0.10882575806461452 two:0.057789536028575623 sixty:0.05575007740799052 twenty:0.05542056793709696 four:0.04367924133309519 thirty:0.04291775552969941 five:0.03487773745948367 several:0.03384353470837941 the:0.03044715846272927 fifteen:0.023142681956523258 many:0.02079660257012136 of:0.01932829559777484 forty:0.017105155017233187 these:0.016888929514761866 six:0.016413875980188578 early:0.01611452719615893 some:0.014311096056052243 :0.07896742398318393 +the:0.36116607446830284 a:0.20337584161052358 of:0.07274358285910497 The:0.03805377663532962 and:0.030458863410818812 tho:0.024402983710131426 in:0.021860611409106764 his:0.021529621670037642 on:0.01692424447498934 every:0.016673093149980313 some:0.01646994104950653 for:0.01587589895888689 A:0.015513348757204587 one:0.014281109332464568 this:0.014041097895122867 that:0.013448424935596793 any:0.011978331909880657 no:0.0106190879643472 or:0.008755526724552307 :0.07082853907411228 +of:0.09043409053013649 the:0.08458268447909405 and:0.06941169710674647 to:0.06842685376506503 a:0.03502196399400508 be:0.027631492661475 was:0.02262770347407094 or:0.020899547147549786 is:0.018061672947865565 are:0.017763045964156114 his:0.017114589037761113 for:0.016727962397261282 re-:0.0162769353827767 their:0.01514882567544624 been:0.013878331263912594 were:0.013374436412516415 that:0.01319950985941409 at:0.012567281873590285 :0.012294075404375895 :0.41355730062278084 +the:0.8151161050386104 tho:0.036715100082194696 The:0.027966983855300925 a:0.02019266835233838 tbe:0.013752578005928193 and:0.013745786323401682 by:0.007285792756486251 or:0.006187530399769036 his:0.005038646800029821 of:0.004757105614290404 any:0.004200596527423183 great:0.0036108912311727673 for:0.003319943882604783 long:0.003151513932753309 in:0.0030835691919652223 other:0.002772137049497054 general:0.0027314425117022927 full:0.0027071458805104716 their:0.0027058992608333166 :0.019958563303187873 +re-:0.19244384544730533 pre-:0.16823558316880607 lot:0.056001447566939574 the:0.04965225003810565 of:0.0345879983378128 feet:0.03332806760755745 re¬:0.031321163925213856 pre­:0.029710362472758135 be:0.026276541212145024 was:0.02437495023228772 per-:0.023746458605741302 re­:0.02300635503770828 pre¬:0.022801982223504286 No.:0.020949793448796557 in:0.014738531285862028 and:0.01469408934268994 per:0.014282689948208305 an:0.014011085801903581 in-:0.013935875030602903 :0.19090092926605118 +of:0.3908238183301222 in:0.09233472929434215 by:0.08682811585416027 to:0.07321579679688858 at:0.04803893338563417 that:0.0460493239451964 and:0.04188112336013102 on:0.026022538351826784 from:0.023138015346367287 with:0.019355523341236115 for:0.017690080221918283 as:0.015813551972265413 In:0.014249733067057329 before:0.012730762932416461 upon:0.00856653489413579 when:0.008366762218537398 against:0.006896742266643639 which:0.006270432359133285 ot:0.0052725980977784475 :0.055454883964208994 +make:0.09413724388983206 and:0.08966687385762266 that:0.08112281747634788 of:0.061748728462691686 with:0.0377983810707388 have:0.03729624868050701 but:0.03449919424756586 as:0.03210417459402252 give:0.03120399003650611 is:0.03032236083088069 to:0.030291392142533017 for:0.029350002204278445 which:0.025760360548764114 makes:0.02452211946174394 find:0.024280539986607615 had:0.023993360895831185 made:0.022869852657123695 found:0.02046352954008811 Is:0.016200335076210437 :0.2513684943401041 +and:0.11135623982625609 to:0.08435450099433275 of:0.03990909368304502 the:0.03511234380974808 not:0.02764180266933844 that:0.026995854224666663 or:0.02322925438738969 for:0.01836512993871698 which:0.017295679559101523 he:0.016988954253314315 as:0.01685106346233976 I:0.01655695485000143 is:0.013828933286440033 re-:0.013566642136786017 be:0.013001666126692424 in:0.012275331320903521 they:0.01118295603926544 you:0.011029604129062568 who:0.010214969179983784 :0.4792430261226155 +of:0.1660946897294075 all:0.10401214508235591 other:0.09743148276640848 these:0.0697087178441511 the:0.06305750020474608 many:0.053188549754282145 and:0.040263655013453366 some:0.037912965333914916 those:0.032613202248815316 few:0.02569836539012423 or:0.02477355313008059 two:0.022756733906906704 make:0.016158026704630575 certain:0.015593281851467248 for:0.01418173473019716 are:0.013468189668568074 to:0.013428072117044958 a:0.013170139495135739 such:0.01299094430533376 :0.16249805072297616 +the:0.308494322314226 The:0.10795712701765234 a:0.09281069833452175 his:0.05740410633820108 of:0.044774944007879326 this:0.030677991906972086 and:0.025263259881605403 His:0.02437017503115144 tho:0.02120454579820224 that:0.02056956817951485 my:0.020482594488193062 her:0.01932332413888338 This:0.014455493491518466 their:0.010082848697265558 your:0.008975056902776451 our:0.008589387405681779 every:0.008262493580657978 tbe:0.008246076663200071 My:0.007913380618937291 :0.15914260520295936 +of:0.34530672108100685 to:0.1419157689071929 in:0.07946584517637514 by:0.04261929740934002 and:0.042157902359953946 for:0.03493220809653859 that:0.029881259056894142 at:0.026035887096809984 on:0.024520273435480962 all:0.024421856354315423 from:0.023747774283430216 with:0.022570314382907648 upon:0.01546162840740098 up:0.014532708756644079 as:0.01363127863827435 when:0.013012156507196294 In:0.012347583891588526 about:0.011527434883781086 over:0.011181052171182307 :0.06973104910368653 +to:0.510617730590694 will:0.0816334409437647 and:0.068914397430614 would:0.04588480555006489 not:0.04009091198604646 shall:0.030225624893069073 should:0.022805861388603178 may:0.02134348269130074 they:0.016270407278433575 must:0.016145104676780025 can:0.011116464078363468 we:0.009707876930724576 or:0.009127998446378285 cannot:0.007943145206383262 might:0.007525397948120443 could:0.007183616950522273 you:0.005418686546417674 I:0.004796800101004365 that:0.00468118925760298 :0.07756705710511203 +and:0.19233699363143186 of:0.15128397940181698 the:0.11090849769688821 on:0.03200396956522896 with:0.02809308307880086 a:0.0259879499617386 from:0.024138501531350245 in:0.02402329853414016 as:0.018564141676948604 to:0.011406301766961049 The:0.011339490995405073 by:0.011184549876555056 for:0.010764776846373135 are:0.008923507360703083 all:0.008407350471700645 that:0.008272843379706237 is:0.007361225505685728 two:0.007217418245434074 upon:0.006878415219867976 :0.29990370525326343 +was:0.14388568196667928 be:0.10507183152703825 above:0.09221452696986851 is:0.07628720038463968 been:0.06847500635876244 as:0.047517097237498876 and:0.0355316700800435 last:0.03455153359641943 were:0.028171163000243558 being:0.02501856466663058 are:0.024349484350644476 now:0.022056028956776014 it:0.01586852450645183 he:0.013350104435893179 Is:0.012107181785698076 hereinafter:0.010410357227259012 It:0.00978073558617104 that:0.009653897777004717 first:0.008338799708508825 :0.21636060987776876 +:0.042121809243109674 and:0.025115839546517717 was:0.01991321458715972 be:0.019361617353387452 is:0.011984115090027172 are:0.011708641305616186 that:0.010720595268890114 were:0.010118875880028138 .:0.008538828059217652 been:0.008214792900146319 put:0.007814765668374815 recorded:0.007169050565739314 situated:0.006726720926511513 it.:0.006648720798510434 them:0.0065998360318737246 made:0.006580774631752311 held:0.006505024562847372 it:0.006354607680120908 succeeded:0.006148044476402017 :0.7706541254237674 +and:0.19533243094797628 the:0.19259911663734383 any:0.14541236330647125 or:0.0776098998787429 all:0.05001185776265024 no:0.04573826695940316 some:0.03277819930786995 of:0.03239156783012583 in:0.02933726955783884 such:0.02780401769769581 The:0.021731863372103602 many:0.017056314511843685 each:0.016367697781319846 with:0.015108144207409547 every:0.01487314460953657 In:0.01416744335267048 as:0.010143725524470145 that:0.010111880921477858 from:0.00966179578357482 :0.040763000049475334 +as:0.09291494689101659 and:0.061160332052835484 according:0.042447563620985666 went:0.03820830945668655 go:0.03690731396116616 feet:0.030996522538446765 entitled:0.030642360505982635 up:0.0288977364756813 regard:0.024587119259256277 him:0.02047324154695382 is:0.019658686443333778 came:0.019433095279293267 brought:0.019414708935238376 back:0.018721492456910266 down:0.01848468569328046 them:0.018382931757479716 subject:0.016604212866700437 come:0.016077900253919575 restored:0.01590351990768105 :0.42908332009715183 +on:0.049904640244834216 one:0.04472416254032247 two:0.042470155014322455 more:0.04201531363075684 any:0.022815493616891794 law:0.019677545712760158 day:0.019551470472229222 whether:0.01853828116439924 real:0.01630744288438602 sold,:0.015695231011133997 year:0.015475013585545079 and:0.014922394959266665 little:0.012005208040747098 other:0.010747562475489398 ten:0.010374378930643594 for:0.009689974395929729 of:0.009365737554458927 this:0.009247089141099141 it:0.008731638623177941 :0.606741266001606 +I:0.12168558764217921 to:0.09684897290709937 they:0.09217280436794521 we:0.07850477612944269 who:0.07215445766570583 would:0.06657024207055694 and:0.055270680611575265 you:0.03317096229169665 We:0.03276607019283309 which:0.029927281354090767 will:0.026341469310805065 They:0.02159416905760467 must:0.02139716735608311 not:0.021176556224030647 should:0.020589728570781125 shall:0.019798875920924587 men:0.018139280207963474 might:0.016544342238025932 may:0.015568680867612114 :0.13877789501304427 +the:0.3143239536940819 and:0.06487915648401014 no:0.06369646720255139 The:0.0629928010044802 of:0.05004538271512231 this:0.04285193303907159 that:0.04215113252490494 his:0.038749509410375874 to:0.03781477964050299 their:0.02683758529412739 or:0.026401873792851364 any:0.02603311659413192 tho:0.02460902077538008 an:0.021718209958003096 such:0.02126095944643159 in:0.02021760700485786 its:0.016865006962673228 great:0.016811541252044353 good:0.014732369970283024 :0.06600759323411477 +as:0.15966684170900636 of:0.105372851495231 a:0.10034224652072989 so:0.09634904464981481 and:0.0680944456939758 the:0.04597451423321844 no:0.04000473773246863 very:0.038795271039310825 be:0.03534406479125004 that:0.030309202727829103 is:0.029385037814766528 some:0.02455370657301219 how:0.021909968162743158 their:0.020112144424573 are:0.01970009306830253 than:0.018808826908432823 too:0.018170915624572556 more:0.018039238168177634 much:0.017770222751150654 :0.09029662591143404 +:0.043962493868551895 and:0.04234148656045611 was:0.01827552816115547 that:0.016115343405744078 put:0.010211986726582408 up:0.009629603911075908 were:0.00959718594257715 them:0.009593612716017382 be:0.00956845340340453 is:0.009343008169291945 out:0.00873757864000447 are:0.007948799831643814 it.:0.007855875359517336 men:0.007425801492101337 as:0.007163671928681178 been:0.0071254552681027095 or:0.007077114465604899 came:0.006578483380093746 feet:0.006460288720431434 :0.7539882280489623 +the:0.34890167761943663 this:0.035955424122462616 and:0.02909805164700639 a:0.024418658630188265 The:0.02296786120593901 tho:0.020177808490172783 of:0.01792667936532576 our:0.015665052742705982 tbe:0.013810470499118519 said:0.013083791980924523 his:0.012734247950453957 other:0.01189811341773191 old:0.009556919227421294 per:0.009194156824612266 her:0.009029017237162497 large:0.008890303243264385 that:0.008327584008799344 great:0.008279321938633784 in:0.0073372783069981925 :0.37174758154164184 +and:0.06317916895143688 was:0.03089079697380977 is:0.020044819943736053 be:0.019406329289829806 are:0.016631216139614186 that:0.015910745835586493 it:0.014132589635136123 been:0.013429954470292457 made:0.013153338042273357 were:0.012494049396038097 or:0.012369181282419555 them:0.011608721240324167 up:0.01101461536327863 him:0.010833186604515583 as:0.010718511743974049 succeeded:0.010682665877813333 engaged:0.010592681714621757 not:0.009777868089593193 now:0.00948198968071834 :0.6826475697249881 +his:0.5815436528504302 and:0.0511442651152869 the:0.03943288757130383 her:0.038717555061960875 my:0.03857440727560601 a:0.03456232530121879 their:0.03052835664947004 of:0.026038790525766044 your:0.018948510675207128 bis:0.017202007734937057 to:0.01315235345828056 our:0.007652226771765563 His:0.00726850489943551 its:0.007261591052539 or:0.0026671474649073343 own:0.0024202694248806307 by:0.0020318792673466486 said:0.0019572526699694866 both:0.001900213821870245 :0.07599580240781822 +of:0.2238644465937993 in:0.16709834167413107 to:0.09203805133601259 and:0.08161567155589244 with:0.05012770652500406 on:0.043275921831191735 that:0.04069240682438847 In:0.03506920327005033 from:0.03253443162326974 for:0.0287824790831372 by:0.022039685126963596 upon:0.018588460848545797 up:0.016750630094318566 at:0.014433692304243826 as:0.01304602219170371 over:0.011210742607938837 into:0.011114593955242827 but:0.01109666487586057 made:0.010252008217318238 :0.07536883946098709 +the:0.34399189722631635 and:0.08830882901339106 of:0.05354555280577433 a:0.040672346227081047 said:0.031708498873987793 tho:0.029043657748016906 or:0.02654617661539284 The:0.021989130440795906 their:0.0214240900886288 on:0.02132350245176216 his:0.018697414243104563 to:0.017809846498958923 this:0.015384852313924046 for:0.015274490965841941 first:0.014020034962065579 tbe:0.013472615727625006 our:0.012656773211282108 above:0.012642811733951802 following:0.012431443803120515 :0.1880560350489784 +of:0.22575891087527644 to:0.10019459501940342 and:0.06762554288421886 for:0.06364993881198472 on:0.05961834080561525 in:0.05899854348303958 that:0.05402104620902398 with:0.03745366286002728 from:0.032323758117277904 by:0.03209657855752239 as:0.0317246952991695 all:0.023838098747807387 is:0.02337868544080723 at:0.020731842722603665 upon:0.017977025602303322 In:0.016757150801772692 which:0.013182875972616706 was:0.012188424188853788 but:0.012130828343111372 :0.09534945525756451 +the:0.10145115073724262 and:0.07037766010668917 of:0.059672800397955375 to:0.03808636035687919 in:0.03420431611173551 a:0.023805075696144436 his:0.01974249500091645 said:0.01701927707638035 that:0.01646466294930901 or:0.01623634421336646 will:0.014602827543637264 this:0.013941248711357778 was:0.01367924014327157 for:0.013607797685872136 In:0.012876580660220965 their:0.01250743591786298 be:0.012020664677474724 is:0.011544747172890267 he:0.011209395911886041 :0.4859499189289077 +follows,:0.48176395239790565 lows,:0.035834152893663804 estate,:0.02864101235018323 property,:0.02805744077078615 be:0.008456869721264587 :0.006528169726269137 and:0.00637647383867107 was:0.005893231274881483 the:0.005803614592727561 Minnesota,:0.005674304202671505 are:0.005390730111775149 sold:0.004312734268927815 .:0.0042389690824272365 is:0.004221154380849281 land:0.004177263778876881 :0.004122830557785683 lot:0.0037992330535347473 he:0.003432932947654806 be-:0.0031661225669611845 :0.34910880748218304 +and:0.09008284685447926 of:0.07015359881460537 the:0.06981015036210435 to:0.059394438564694736 a:0.04486095212568655 for:0.03984742422075678 in:0.03663407017587126 which:0.020046505467282028 that:0.01984825631790588 their:0.01723859768475163 is:0.01606943851177445 his:0.015958476095607025 not:0.015232797014167026 as:0.01514909099989791 :0.01507166466188476 or:0.015026236303055262 with:0.014557665109466763 was:0.014216411093283761 be:0.014005251420244854 :0.39579612820248034 +a:0.21479965067240062 and:0.10615474440455945 is:0.0791634437917207 the:0.07335201747655677 very:0.07195532529158075 are:0.04933148763954609 was:0.04633446657955841 most:0.037498600273532495 of:0.03446126385301592 in:0.02585168414494297 so:0.023067828967520555 A:0.019203120184280664 his:0.01653918704700558 be:0.013914009599075773 by:0.012710974864575366 more:0.011548524043257999 this:0.010583679281770463 for:0.010245983172580615 their:0.010033076251503273 :0.13225093246101555 +the:0.6375152038343884 said:0.06805048345866441 of:0.058514951837982866 The:0.02719028869641353 tho:0.018656691388228404 a:0.01671620117200039 this:0.015141995748920993 Lake:0.009747733786756004 Southern:0.007457111745700005 in:0.0074244734620317766 civil:0.007299462453842438 tbe:0.007178913585363148 Central:0.006392012313362713 County:0.006363507207916046 our:0.006255011984920578 new:0.006152930100309583 by:0.005671248663984209 and:0.004643411878743788 York:0.00460283648224913 :0.07802553019822163 +the:0.21083442233045138 to:0.1802483899443052 of:0.09117351409581656 a:0.09103701457303259 at:0.052916995119290926 and:0.04020310492827956 in:0.03843137329089508 or:0.03280902461434239 for:0.031510693464134897 this:0.028233275528553963 on:0.023035172563491142 with:0.021633898425762084 In:0.02051078391013793 great:0.015404998714715817 their:0.015325687530322691 our:0.012771068583357121 tho:0.01235965895348476 its:0.011025322409627903 by:0.01027258582529848 :0.05926301519469952 +went:0.04793000444345072 due:0.045042179019655806 up:0.042980465026865075 feet:0.04118076423001284 and:0.04097969858474177 entitled:0.03381348485641827 go:0.029298163399198923 amounting:0.023822339539849635 one:0.02379234152304271 sent:0.023318392320342142 them:0.022730318738911015 going:0.022295199721728814 him:0.021277386438276407 two:0.020120484068246132 down:0.019969378474635428 reduced:0.018377771574018268 subject:0.017604591883351287 amounted:0.01622603109272539 came:0.015902778403387097 :0.4723382266611423 +the:0.6563945336725895 The:0.04513164493213823 tho:0.040848705279172864 and:0.02604505126528706 a:0.024256263670492828 of:0.023445741648024813 an:0.023162093934357045 on:0.017578662716379503 general:0.016123175084049368 tbe:0.013209539978279035 in:0.008435199971689606 other:0.007736596584534927 by:0.007196790650348356 said:0.006804660223437818 special:0.005985983001131269 great:0.005140514053012055 or:0.005081635965415771 annual:0.004697685784592951 any:0.0045506551300422745 :0.05717486645502477 +the:0.4083426538621684 an:0.28304381413160484 a:0.06012600196845391 The:0.03559907631743573 and:0.019911272049033084 tho:0.018311030715728347 no:0.016110286877950405 very:0.014376024438934319 any:0.014060804132608339 of:0.013706077026715254 most:0.010454627840199012 his:0.00945052118018699 in:0.008479636991206886 tbe:0.00843681080973197 their:0.00784398915124622 An:0.007817354507223153 its:0.0063467966921783 to:0.005915298267832339 A:0.005691057996089234 :0.04497686504347327 +and:0.07626693331343437 time:0.0489792340375955 that:0.03556990528166155 increase:0.031832811381981414 was:0.02620727552786085 out:0.02577036618052016 it:0.02431168786583604 them:0.022563360207325297 is:0.022366744667091605 men:0.019518312834052202 all:0.019014947630593627 are:0.018802477874816842 be:0.018301788433785843 now:0.01773198159323678 years:0.01764330010466493 difference:0.01705722669677838 up:0.016401533052859598 work:0.016233408565604728 or:0.016227166412579243 :0.508199538337721 +the:0.18277099764185534 and:0.07758500392081627 by:0.044490886082965975 of:0.036438809244978304 Miss:0.020193849599395196 The:0.01923351108624018 assistant:0.014757560502871983 late:0.01446449036354629 or:0.011210485095165253 said:0.011019475663699083 that:0.009949424583115948 .:0.00961301173746862 Mrs.:0.009419541595747326 :0.009300651468117845 tho:0.007003231112619005 for:0.006525463798568543 a:0.005606165879002606 his:0.005473422012911375 Deputy:0.005201947883505373 :0.4987420707274095 +that:0.14463452548565398 and:0.11682634874950754 but:0.0832682979483771 as:0.04437360222101289 which:0.0442616849980281 But:0.025528367260673295 what:0.02238547034739165 if:0.021395592886368636 when:0.01920187680642824 :0.01795818179720117 because:0.01588173870506259 time:0.015311597731843565 And:0.013586465668642045 for:0.013193179693645985 If:0.013089618940677554 it.:0.011950143302786575 whom:0.01018344044570621 me.:0.010080990362803246 where:0.009702106176113381 :0.3461867704720762 +it:0.181956157012391 It:0.18083156382203788 that:0.039407815193391024 and:0.0381097870015602 which:0.03337054722205764 there:0.0294889450136683 he:0.029238093917512736 but:0.01337041535173882 He:0.011961726209544053 as:0.011662548834816273 who:0.010289998641858485 was:0.009815052289956843 be:0.009190346582690193 man:0.00917042744821915 There:0.00830713513785608 year:0.006909051922560647 is:0.006598619991748429 I:0.006527618018144544 This:0.006038853458907611 :0.35675529692934005 +the:0.5568128238453397 his:0.09486005652056917 a:0.07448688473248105 tho:0.03242985604943638 their:0.024887217929571274 The:0.023617060198799136 and:0.020847688674856733 her:0.014694373950094266 to:0.014633921561716877 our:0.014216490082342175 tbe:0.01351836684652205 its:0.011217330758577929 my:0.008824297848266374 your:0.008552614990829061 or:0.00789015159398595 this:0.007135510912505363 other:0.0064924663683571665 for:0.006219187779477244 per:0.006069833002246425 :0.05159386635402575 +the:0.1454500361787387 of:0.1080247151493501 to:0.04516715868785427 boy.:0.036249098323069925 and:0.03403580073245388 girl.:0.032660326140049385 a:0.03171979252021135 in:0.02714044436566853 for:0.02365213940166824 be:0.021942286684630472 their:0.021087116084698817 his:0.019774122064073623 was:0.014637031197642503 with:0.014008395154201525 are:0.012730720509515858 is:0.011363112041341867 as:0.011357870543086747 from:0.01063391638067422 were:0.010589399829418696 :0.3667765180116513 +the:0.09257056349821859 and:0.09224795152250533 a:0.07278659441959898 to:0.06492929000087447 of:0.06111822002401408 be:0.025099538893597242 is:0.02149308700099527 in:0.02141247688820789 or:0.01984159061175152 was:0.019387256347312948 not:0.016853958608045113 are:0.01454887644489244 more:0.013855090673385114 that:0.01174821157580692 with:0.011685758410120104 will:0.011297780567221988 one:0.011083597844477934 would:0.010130372594083352 two:0.010057140181593906 :0.39685264389329683 +and:0.14507320772351315 fact:0.08580533594336559 said:0.056464728489513914 so:0.05141663139801109 believe:0.03728868944610554 is:0.032697255055655516 say:0.030323479159427524 know:0.029749358812227955 found:0.025535190692382553 stated:0.021273605064562356 show:0.019511948220510757 but:0.018999393120383457 says:0.018814328565908398 think:0.016893655385130203 was:0.01658797795582863 all:0.01652317309060226 see:0.015409038245983688 opinion:0.015263158537430448 order:0.014744011681695817 :0.33062583341176116 +and:0.07558940021936399 recorded:0.030196237618668006 was:0.028917161578042846 made:0.027969746247669736 that:0.027730098932509103 o'clock:0.025060522019555328 up:0.023026552239529506 is:0.020398277211376416 found:0.02003101797656537 placed:0.017482208134164214 out:0.016937164562539058 place:0.016819459500107596 interest:0.016629321966808677 him:0.016002796715253755 situated:0.01573420479581609 it:0.015128305982428461 them:0.014715943643665314 part:0.014646613000297721 interested:0.014450471929902294 :0.5615344957257364 +virtue:0.062060494787377685 out:0.05417899169104244 part:0.03289673107629515 one:0.02969369892462812 quarter:0.027015883171169475 favor:0.01993830018372674 result:0.019463829004704194 guilty:0.018891084377354095 means:0.018499162894926688 end:0.018170939082736048 that:0.018121271122199262 construction:0.01726217741616459 presence:0.017003995482744873 tion:0.01673652166540914 case:0.01640819963257697 side:0.016055927605250184 erection:0.015381239457214257 account:0.015287601389485416 hands:0.015156055434805247 :0.5507778956001894 +;:0.013164928890676691 day:0.011941329915469657 up:0.011844685910211735 mortgage:0.010029868880520784 hundred:0.00989739292855537 Columbia,:0.009561883206350496 mortgage,:0.009233579134030258 dull:0.008029697150465965 years,:0.006552197956547766 dollars:0.006325059158860545 ,:0.0063011756617866975 them,:0.005998316836258188 quiet:0.005992313047779367 made:0.005878056589430892 interest:0.005433361956547986 time:0.005399692493170205 feet,:0.005341988560951302 sale:0.00507547884912419 on:0.004909204536214679 :0.8520897883370473 +and:0.17008335631757598 that:0.11942857186358544 but:0.06860806430892266 as:0.0544870222393081 But:0.03594861723967928 even:0.035678126749425144 And:0.034200006169766685 or:0.0246617749702619 and,:0.020389194274529968 see:0.019965649535156206 know:0.018134507489766995 Now,:0.016111746676097494 appeal,:0.01604965592762821 asked:0.013773653752356996 that,:0.012765042148825376 ;:0.011981441196060075 me:0.009986576696691769 Even:0.009805903204685003 you,:0.009604373878549842 :0.2973367153611268 +a:0.2052453910562594 north:0.08611033791979184 south:0.0839834658957865 west:0.07531028383622877 the:0.07194794737667279 east:0.06905596920522795 and:0.0370652234783431 one:0.03482387031276224 than:0.029967284636617277 one-:0.02923758535547479 or:0.027333821086099896 about:0.02611828652084685 first:0.019333584025096513 A:0.015929746204977425 as:0.014313095388032687 any:0.011525356111606634 South:0.01035188944856098 that:0.010203428521744799 The:0.009758952366844846 :0.1313844812530247 +and:0.0749621682243255 as:0.04085757223473017 made:0.038174157620573544 them:0.03784161003685172 up:0.03303482251342898 able:0.03038147334226856 him:0.028231387123284296 brought:0.026536177408861498 or:0.0249443670388445 enough:0.024013190306503465 is:0.023119719087588197 necessary:0.022718201361670524 time:0.022250690507158697 not:0.02194595166242268 go:0.02032764547228711 come:0.019820609374855726 order:0.018961335901328834 entitled:0.01789539742525797 was:0.01754903226835133 :0.4554344910894067 +was:0.23225628451345226 were:0.1301950121311894 been:0.12282817841515833 be:0.10372716109845866 and:0.0696001933129682 are:0.05198087536304843 being:0.039025884733599144 is:0.038721293561073705 have:0.017094138240698994 had:0.01689249151315974 has:0.011157667861266379 he:0.009531798180632134 or:0.009306469630182801 well:0.006501227313749519 bo:0.005432069120660966 I:0.0050060263364422415 Is:0.00488959363950471 who:0.004600129588134803 now:0.004229479279742149 :0.11602402616687746 +J:0.07410968260235404 .:0.06593588615390711 of:0.057176840119124085 Mrs:0.04869205195524118 W:0.03860147195593116 Mrs.:0.03601953082438443 C:0.0330283196657914 the:0.03141785631741776 E:0.02549241729169307 and:0.021599721261745187 D.:0.02102326980462486 M:0.01900999710444999 A.:0.016942674388384833 H:0.01605490020382832 M.:0.013619363133727216 Mr.:0.012516038178379171 :0.012490735281583823 A:0.011522475953551216 S.:0.011463971704386336 :0.4322827960994948 +of:0.09129790931378902 the:0.07369883040827747 and:0.047842263382354346 in:0.04189055351593407 to:0.04045875475680249 a:0.03542341257202578 be:0.02020462051672066 for:0.01979292654746225 was:0.01760256398103379 at:0.017380150555488715 is:0.014984483003968216 with:0.014047653760730413 by:0.01374644383819499 :0.012670486581795598 In:0.01200961464556976 or:0.011563835749786333 from:0.011391516893522809 are:0.011273104484969465 that:0.010755276030689069 :0.4809655994608848 +is:0.11349202634402596 and:0.09454766562344626 of:0.09018634480983535 was:0.08755929941328196 with:0.08528994193024801 in:0.06815877172867972 to:0.04731292370685553 for:0.04055237523731059 as:0.038372407776413174 by:0.027210848839039327 have:0.02699936410257757 be:0.026806420714878387 had:0.023968115957474105 that:0.02387299231252085 make:0.021960249685993416 such:0.019276204442781504 made:0.017895768734783282 In:0.01781755330636759 but:0.01745274083249272 :0.1102679845009947 +and:0.1480948208136434 the:0.08202404255414732 of:0.07205240667719062 for:0.06260417295699106 her:0.0480610581601289 his:0.045606180140242904 to:0.039286152073327314 or:0.0356138103744762 a:0.02613345714564385 which:0.025230250027991112 that:0.024295413519123576 as:0.023917818891681646 in:0.022588163972188064 with:0.020403073968077445 it:0.019773894141612045 their:0.019154635589056366 after:0.01773743945211551 by:0.011484475785228007 It:0.011460086437342172 :0.2434786473197925 +to:0.7182148674162047 will:0.054967470081131495 and:0.040571804649757966 not:0.03136458933846921 shall:0.020430863259148162 must:0.016943661440231173 would:0.016613761628809533 should:0.010581134420873538 may:0.009967275585671554 can:0.008372397611669868 I:0.005929879608560148 who:0.005683277704623067 could:0.005642439829483803 To:0.005076823031896268 which:0.00450887475445088 we:0.004281265855218296 they:0.004107339293208274 that:0.003907305716929801 only:0.003850087023016152 :0.02798488175064608 +he:0.16219750567910327 it:0.10512176155813945 He:0.0800541965503872 It:0.07349704951140015 there:0.062447192716385824 and:0.050194644366425276 I:0.0490437782895273 she:0.04558694933931019 which:0.04326596992001555 There:0.031155172412956157 who:0.030706418488134678 that:0.02630536651807729 She:0.02076133299386965 This:0.01690636323654163 this:0.011861222680168475 lie:0.010073425123499851 man:0.00887218505651653 ho:0.008506333167695281 what:0.006503760542490237 :0.15593937184935602 +of:0.3434950861284588 to:0.09134455152887697 in:0.05638167520673417 and:0.053333100759943936 by:0.05233264967046329 that:0.04809798725952343 with:0.044140186968175954 for:0.042495155117999533 on:0.02441068364307233 as:0.02423341064447467 is:0.021874370487742243 from:0.021146344546124747 In:0.014274573826032007 at:0.012145625528550079 all:0.010930698784507947 was:0.010388160691846922 which:0.009328612457443519 have:0.008785863885167914 but:0.008581114846956086 :0.10128014801790543 +was:0.17384252015283866 be:0.13647171197157515 is:0.10362022226509164 are:0.052423312612733544 were:0.04525319131267554 been:0.03813854911489092 and:0.031054429708192055 the:0.023014547029383402 being:0.022453818133335014 Is:0.0192720907336874 bo:0.014563231186632256 one:0.01215794151644975 it:0.010017726159972274 made:0.009784809431588392 as:0.009614062413663657 he:0.009300358774478136 now:0.008309057242152732 a:0.007948826629505447 land:0.007917059228339195 :0.26384253438281485 +and:0.0955819547917729 to:0.0805496057263939 the:0.03777690005341109 not:0.028045910342999972 be:0.02477474640620949 of:0.024217155506722265 was:0.02289097346188465 would:0.022696847343657612 is:0.021190524575418434 that:0.020910029710621912 there:0.020143173441633726 or:0.019097737218550688 it:0.018091184321104438 will:0.017861467323418558 in:0.015118640069847339 for:0.014937205008656682 I:0.012168181394795525 him:0.01194653593666272 he:0.011520419205265696 :0.4794808081609724 +and:0.14507320772351315 fact:0.08580533594336559 said:0.056464728489513914 so:0.05141663139801109 believe:0.03728868944610554 is:0.032697255055655516 say:0.030323479159427524 know:0.029749358812227955 found:0.025535190692382553 stated:0.021273605064562356 show:0.019511948220510757 but:0.018999393120383457 says:0.018814328565908398 think:0.016893655385130203 was:0.01658797795582863 all:0.01652317309060226 see:0.015409038245983688 opinion:0.015263158537430448 order:0.014744011681695817 :0.33062583341176116 +of:0.516899315161299 in:0.13125265721855084 to:0.07177916856876627 by:0.04129644712349763 for:0.03339808127925018 that:0.02631403685795663 and:0.02085340405194267 In:0.02036013805629581 from:0.02020028354571576 with:0.011896963915412631 at:0.010600422476415213 as:0.008533753182499668 ot:0.008053900162085417 throughout:0.007324027693985797 on:0.006136320941072775 which:0.0061106779207973526 before:0.0055581025073286865 into:0.005305634893660316 when:0.004751044411970078 :0.04237562003149736 +the:0.5881355598994659 best:0.0709149879224188 tho:0.02870316151668032 and:0.02567570982077659 business:0.0208916810911081 The:0.020730361720807274 great:0.018937099719465438 other:0.013478576016632517 financial:0.013138305694721129 a:0.013064902764093271 public:0.010993973353008273 agricultural:0.010768144832035928 commercial:0.010677006834294457 true:0.010498721791334925 their:0.010421366902834395 tbe:0.00932617739030684 general:0.007742638369286224 our:0.007566054093016489 his:0.007501177492751495 :0.0998343927749617 +to:0.49952862766367395 will:0.08235064290724319 and:0.060811021481079405 would:0.056727560091218945 not:0.04126950729620952 who:0.023872235885316256 should:0.022171178731014273 I:0.021006705848834042 we:0.018367432237853584 can:0.01573916228165001 you:0.015179999744162474 they:0.014627253778162189 must:0.014436578832944712 could:0.013246578151969886 shall:0.013030662100663414 may:0.012976411580126192 or:0.010919712124524649 We:0.0073574629326474345 They:0.0055770046542894325 :0.04980426167641648 +of:0.1343138587507163 in:0.06765056899607808 as:0.06523902155079696 is:0.06408242877157266 to:0.05920677986120668 with:0.052352944016705046 by:0.0489161125839358 and:0.04476446561312716 was:0.043874711196451026 for:0.0353857632723415 at:0.028122627130863165 such:0.027654959488952243 be:0.026520497424890634 on:0.01775924540667342 In:0.017304992039102633 that:0.017053231434412737 have:0.01675624464989442 from:0.015365315280442398 had:0.013575095776826075 :0.20310113675501107 +the:0.11011381506286894 of:0.0938233295054652 a:0.06414472643450296 and:0.04073836878031271 to:0.037489271758186185 for:0.03207607581682293 on:0.025933472643931386 in:0.02524876711805392 by:0.014593228930777517 that:0.012497416302429901 :0.012416813211611182 or:0.012373683887658457 was:0.011948576413694824 as:0.011393144836347171 his:0.010523650824060546 with:0.009772810627500149 is:0.008910943065530983 not:0.008618577559629274 In:0.00850947205742004 :0.4478738551631957 +a:0.2358539002526758 to:0.18646562414337564 and:0.05888562106263626 one:0.057817639489020446 will:0.04564235111504093 first:0.04375089703815438 the:0.03957311152009803 last:0.024430791126548265 no:0.023492541685491773 this:0.02189494714886251 his:0.019744383449059995 not:0.018895460349224912 every:0.018542586339032247 next:0.01623897445468449 that:0.01487107765791649 can:0.014363288573092757 in:0.012689762966176021 each:0.010080762324302571 I:0.00934362763255939 :0.1264226516720471 +and:0.04463128512418433 :0.04379506349124557 it.:0.024900978692779727 that:0.021452783918560404 them.:0.019184651781899185 time.:0.009924705407769942 as:0.009875633569175236 ?:0.009511175436091656 country.:0.00791983665330339 but:0.006986460341093266 to:0.006907021124834831 him.:0.006577018832367974 day.:0.006193599159383891 even:0.006068517840430064 year.:0.006006904177472674 law.:0.005939568843991189 years.:0.005887086626031343 people.:0.005757964630568269 .:0.00571669287035481 :0.7457630514784622 +and:0.06689917041583478 Mr.:0.04511620629603945 .:0.030846006711105736 of:0.030381813985660817 the:0.030009125693196005 to:0.01692032922540019 at:0.01092206669229272 W.:0.010882536642486517 said:0.0098552181798285 an:0.009766911059778886 Mrs.:0.009652792816930142 that:0.009639618540068529 :0.008637134198917788 was:0.008316927239394077 1:0.008277394783180752 as:0.006423109699958931 June:0.006397055530040396 E.:0.006267273582161504 is:0.00613800540220333 :0.6676513033055209 +the:0.18389279529458857 of:0.039171740566084745 and:0.03769603666523475 a:0.032270292108676046 :0.02978191345472988 an:0.0256941759285639 The:0.018545468789124726 to:0.018434247191141256 I:0.0177636210093585 that:0.01522001512793394 in:0.013969741685067224 tho:0.013748787701081804 t:0.011159854095683286 as:0.009350754961508619 not:0.009114573011682513 with:0.008818212756917798 on:0.008565468295202286 be:0.008127182161474922 his:0.00798689574139994 :0.4896882234545453 +the:0.05640231503436841 .:0.05458151391183317 of:0.05331504940585431 and:0.04806933393112209 to:0.03656191263244283 at:0.03351302421759423 by:0.018860419743911776 a:0.018397398187955685 :0.016554796224620746 Mrs.:0.01508572417822562 H.:0.01403501477133758 W.:0.01282395122266784 A.:0.011154732689353651 J.:0.010725050026510294 C.:0.010163065940749907 Mr.:0.00942758426828754 Miss:0.009236117802896425 E.:0.009014968543507725 M.:0.008879246533907998 :0.5521987807328522 +very:0.19070820018342827 so:0.17538312951982318 is:0.15791151203122608 a:0.05702285838864301 was:0.044575459547177336 most:0.04121786783716514 be:0.04017058125138221 and:0.03952442825443546 the:0.030241098934318308 are:0.026121011696480022 as:0.024702498341481107 more:0.02345916446694444 further:0.021131534350430546 Is:0.017196646264323844 not:0.016376184602354717 quite:0.014119353898586264 been:0.013194516139183494 it:0.012749647234479161 equally:0.009428957321302068 :0.04376534973683531 +the:0.6327978941203499 The:0.08385511277671587 his:0.04607658016053586 tho:0.031614460713084526 their:0.031118076590719 our:0.01757083560041809 at:0.017546722087091685 its:0.01389237560726973 and:0.013028481814275532 my:0.012453994697011788 to:0.012241455116618758 of:0.01179307895624456 her:0.010259956680034429 tbe:0.009884865263474523 a:0.008773007259974885 His:0.007507765920699407 I:0.005949650943844978 that:0.005581045949908873 your:0.005492039509359396 :0.02156260023236816 +to:0.10066136870841297 of:0.09533173612047798 and:0.061080366696513136 with:0.03631448526097531 in:0.029175101803882407 for:0.028124565164082245 the:0.02356050381184757 by:0.02314572356951653 -:0.021229791850317502 st.:0.019142376712293453 was:0.01821415571993925 at:0.01574818335394626 or:0.013353290817945935 a:0.01296049858757108 be:0.012675024584506435 that:0.012145596136589986 is:0.011654991383942553 In:0.01156867665943928 .:0.01012549681164525 :0.44278806624615485 +the:0.22052173904674707 of:0.11538277631709545 and:0.07600893695483417 a:0.07004925231740321 in:0.02032394001329095 to:0.017760541526728617 or:0.016321320631386877 The:0.016047378210588287 tho:0.014162478919836598 his:0.011851559038502319 their:0.010247726296522618 an:0.009976024422455008 all:0.009838815678283644 that:0.007981786074193685 other:0.007735324991191378 :0.007694646861427443 at:0.007393351766959102 by:0.007172496730326369 .:0.006850640354361914 :0.3456792638478653 +it:0.14980370725759037 It:0.1417831987182438 This:0.0994395734160535 which:0.06123870759127718 that:0.053827314535707556 this:0.0485319048157116 and:0.03481463816943127 there:0.03163351300029438 he:0.025874957304685715 That:0.02452637228711398 what:0.02101535076138451 who:0.020745118014465793 He:0.01553744098124584 What:0.015466571118696077 There:0.012715435083286795 Here:0.00825702518154719 one:0.007881347531268929 Such:0.007797349307744799 as:0.006397540204786528 :0.21171293471946415 +neither:0.3865617992697378 the:0.07746424140819994 and:0.047975611105884025 of:0.02665633379111814 to:0.026636192025379053 for:0.023006967259198 in:0.020727309405945075 not:0.01704487258121643 a:0.014904377530555528 no:0.014292274093123756 nor:0.013387527722910682 more:0.01315208341306639 that:0.011200244855664801 or:0.010525415660261196 their:0.010319689186861426 I:0.009194729573670754 be:0.008863726223914648 he:0.008374708871587398 con-:0.007319158099148111 :0.25139273792255684 +:0.11066034194137359 it.:0.017400011545205773 them.:0.013768684792401372 .:0.008533959361660444 him.:0.008520292595928458 time.:0.00789787710850956 year.:0.007251809893108129 day.:0.007162622264954031 country.:0.006806029154733665 city.:0.006049237930139646 years.:0.0055506905609713315 night.:0.0054100091425527954 people.:0.0053249795610270855 work.:0.005309730699417083 and:0.005223359666061127 men.:0.004339598688823013 county.:0.00432678552839256 :0.004285099622683144 one.:0.004253271546519794 :0.7609256083955374 +the:0.3328366008236991 of:0.12501139235912362 a:0.057277566506371426 to:0.03244258290729887 and:0.031695207516618765 by:0.025000314680691145 tho:0.021879915591488084 in:0.021324325568430898 The:0.020402281553763533 for:0.01631985301151421 that:0.013894513129425452 from:0.012851925881784187 on:0.010703772992479224 tbe:0.009689152262553326 with:0.00872697744769918 :0.007465235392253082 at:0.007339623252365615 as:0.007001105299382052 one:0.005788553367117191 :0.23134910045594106 +of:0.17550780869406551 the:0.1094406957122453 and:0.06862053403264154 to:0.05689811891869103 in:0.03683453832543205 about:0.02483826975617441 for:0.022729196242677035 on:0.022533954379119165 feet:0.020920428882767243 at:0.020109297887465127 from:0.0159570032695306 by:0.015863763829287513 :0.015198972724823153 east:0.014677934035156279 west:0.014037029825602529 or:0.010930322355571958 with:0.009977761533318653 street:0.009207333017095783 over:0.00858661509397904 :0.32613042148435606 +;:0.016467371822176696 it,:0.014600666987422075 him,:0.01435845380087453 up:0.013907863376986263 him:0.010803589970894707 them,:0.010672093941676402 in:0.007908066839429132 time,:0.007552845753134016 here:0.007414526926031824 years,:0.007170147342827695 it:0.006590065868587609 up,:0.0062904972340151605 man,:0.005989399764440318 man:0.005958989888519999 Mr.:0.005903488814246419 out:0.005593395971459712 :0.005534460714393433 down:0.005299140994283814 one:0.005295902211973867 :0.8356890317766263 +the:0.11274823966931571 and:0.08329996793360815 to:0.062372082173126384 of:0.05346002906215973 so:0.0299749817344208 is:0.026294180790411077 be:0.020260006954324915 he:0.018124449911071136 was:0.016351044211737983 re-:0.01567649125103956 Mr.:0.014726716630740086 in:0.013675410003338988 for:0.013272602215284653 a:0.012159264338821467 I:0.012040910229586727 or:0.010977326121126826 :0.01035107289213954 are:0.010219913969554774 not:0.009881708091297656 :0.4531336018168938 +the:0.662985222248271 clerk's:0.04049756732049179 this:0.02808502455991605 The:0.02663285328875923 tho:0.024244388343976176 in:0.02252854867403744 an:0.020675064538103534 tbe:0.015164916268778108 Clerk's:0.014396478402420483 post:0.0099349525980049 a:0.00982493927862965 his:0.009818682505420938 of:0.009589349669221273 surveyor's:0.008335400630961495 and:0.007703425635513313 In:0.00601318170104442 said:0.005726446634735744 any:0.004942330478584473 or:0.004840993361970857 :0.06706023386115925 +of:0.3452630041144288 in:0.2024592828442199 In:0.061084203977296345 to:0.05978905979363142 by:0.05532575905619854 on:0.03961058664105586 that:0.03737981186078323 from:0.028662370044983544 and:0.0213988340085482 with:0.015600344163521634 for:0.012487690328514664 upon:0.011826814086624587 at:0.009849540454830085 into:0.006915145198255141 make:0.006810695319168369 On:0.005694441802999378 which:0.005490635345326792 through:0.005447234419581696 iu:0.005252741497776852 :0.06265180504225501 +to:0.1866844594944267 of:0.17523957071074328 with:0.11534328328625267 for:0.11425311012089842 upon:0.05136387151369301 in:0.047579584932183165 by:0.03683987207166462 on:0.030660751600735017 from:0.025850496498368847 against:0.021904371400965943 before:0.0187515501337335 at:0.01692243237759323 around:0.015857455783491146 among:0.014691075739427711 about:0.014672333414285903 over:0.012558623033165206 see:0.010560122731644557 behind:0.009787682325111163 know:0.009741220360943546 :0.06973813247067236 +and:0.13091598171730126 of:0.12356844344599463 that:0.07425123129122596 to:0.07275751285114605 for:0.06623468885291266 at:0.04381424971185308 is:0.038584932733549904 with:0.03353381718625049 in:0.03165577840826761 by:0.024518830612913003 not:0.021351770540987736 have:0.02129533290824806 was:0.020568683724184876 all:0.019059000306220396 but:0.018654411282181205 or:0.018273171088858692 be:0.01759541591357908 are:0.01704448462963009 than:0.01658844424761363 :0.18873381854708157 +and:0.11606046623582099 to:0.07595515155907223 the:0.03972251737886805 of:0.03858987488572155 con-:0.02977731884512904 re-:0.027712069413149194 that:0.027223040308247976 or:0.025927234820816922 which:0.021318959668027552 I:0.01960060298860228 in-:0.0192917949435189 not:0.019147714045509034 he:0.018648025423870014 is:0.017693083178061154 there:0.01680239468234597 for:0.01636405150856417 in:0.01556380425745829 dis-:0.014951307857953738 be:0.01491545441017786 :0.42373513358908504 +and:0.1396416866154204 the:0.10866180874250915 with:0.10667619266914465 of:0.07195427439133883 in:0.06541787445793584 his:0.05593422707774786 her:0.05346382247396719 a:0.04011493449332746 their:0.030908181006560856 was:0.02890798908113425 for:0.027566527223669028 to:0.02596741909475794 from:0.022398157102090813 In:0.021253885274968336 as:0.018407020447852886 by:0.014992105535193848 my:0.013233433779292227 or:0.012922118208074164 were:0.011437196929354843 :0.1291411453956594 +the:0.13875198046997067 of:0.1341129123101877 and:0.05372791385811425 to:0.028687029371831627 a:0.02854532077721072 in:0.019211358804128668 that:0.01859222540097668 at:0.017774754473389904 by:0.01764722206608408 for:0.01735866349870211 on:0.015950540640569933 :0.013961699223966643 with:0.013131736530280883 The:0.013059097402217114 as:0.011164772097744644 from:0.010996237763294043 tho:0.00979184585616695 which:0.007726750055866663 -:0.007642537191758427 :0.42116540220753823 +and:0.15873033696565086 the:0.07117511044649538 Mr.:0.045301164487893 of:0.03367927834891346 his:0.026546773894074345 her:0.025699304833261927 President:0.025335461340789935 .:0.019757695668450377 con-:0.01593372262989424 Miss:0.015215346419795177 their:0.013640843814253437 to:0.012646791652585039 Mrs.:0.011900694613104659 The:0.010327627580797876 our:0.009708281981063204 a:0.00947012147876455 he:0.008897791650688665 St.:0.00856249800869476 un-:0.008382610406882719 :0.4680885437779464 +one:0.1028303141280697 part:0.05963429477052991 out:0.04766456937681193 some:0.031418679026461914 members:0.030764490253327767 side:0.029940657362655835 portion:0.022063658796890564 office:0.020457735219956013 member:0.019726706386316174 end:0.019666887540649894 tion:0.018667441728710307 parts:0.016814747270460957 people:0.014112771422418794 all:0.014072739582212475 any:0.013183573287639892 One:0.013083578354183906 that:0.013024335602903442 account:0.012482348155001894 many:0.012077825070275192 :0.48731264666452345 +in:0.16508166495297835 of:0.07718595443974874 on:0.03587467564503552 In:0.026323851893278558 for:0.023123341251606838 and:0.02235804551144684 to:0.02196475376158309 upon:0.019666669918389747 from:0.018084398466383843 with:0.017244732156917526 by:0.01610432894115986 those:0.012951007621987908 one:0.010225099597243641 things:0.010205722966611755 under:0.01016688349742294 at:0.009590044998899523 principles:0.008209284011881281 that:0.00819713429236795 after:0.0060267506963687136 :0.4804156553786874 +and:0.19821644541596017 years:0.1753848560397313 days:0.08780123605403 minutes:0.059327348321400956 time:0.051100394540194556 weeks:0.04547502691745525 months:0.04522570928101898 that:0.037596375552036744 the:0.029416071168966874 moment:0.023259780407381345 when:0.023088610468825273 as:0.02293246441308736 while:0.022652055013635312 or:0.01801792764184406 but:0.017877097235079357 hour:0.0172859084832682 year:0.015226989397082637 her:0.014046652873767692 which:0.013673854545957374 :0.08139519622927656 +the:0.10793881108537426 other:0.09572507689879571 of:0.08376236402699028 some:0.06505449109209326 public:0.059547956483225056 many:0.05689865500804724 their:0.05108494390502729 and:0.04501839779392783 two:0.04430056031747907 different:0.031177443772723527 all:0.030709104647772528 those:0.028984854146618375 such:0.028620251732554804 for:0.024024501147178967 good:0.0227194544703606 several:0.02195103381923461 in:0.018767638172608507 few:0.018631876874921197 his:0.018410496545766094 :0.14567208805930082 +to:0.12022893700269083 and:0.09020394424291768 the:0.08587503820055309 of:0.06450042443224316 in:0.0310058468700829 a:0.017742048521183405 :0.015548046036689871 not:0.01491307651316237 that:0.014112408707955496 for:0.013734482372212283 I:0.013065769926808477 will:0.012848502316304782 at:0.012837991177321897 In:0.012628718855091186 by:0.012491091048660757 be:0.011425930130217754 is:0.0113962101007567 he:0.011342727513475473 or:0.01112522537451577 :0.4219735806571561 +far:0.08736872815842171 well:0.08519286524176253 such:0.07148950007645237 and:0.06765939376402087 so:0.033947087907639444 long:0.031658329688245286 but:0.026735598346256974 soon:0.02354500328881531 just:0.022052458291933294 it:0.021330709094390374 that:0.020476072780999412 much:0.019436742004761205 same:0.018072522958692223 them:0.014780702606352893 known:0.014254885656982038 thereof:0.014100311319996587 year:0.01353202546495278 him:0.01286467694948403 time:0.01061128411964641 :0.38989110228019425 +the:0.3899190529251942 and:0.10399573447721544 of:0.0490703001465416 The:0.04852597850386173 tho:0.028175842392939666 or:0.02437513551772528 to:0.01677713068635251 a:0.01633040662362411 in:0.014078917907172339 an:0.012397247763897622 tbe:0.011170745273265567 :0.011069388962143566 their:0.010297091266308955 for:0.009586928072785921 no:0.009413272593834638 our:0.008391913045112224 that:0.007880773705085565 with:0.0075900667199639915 his:0.007485848945745205 :0.2124682244712299 +the:0.16807735899698817 of:0.10541662057906837 and:0.05138367848570702 a:0.04141865232648221 to:0.0385989743764065 in:0.026264864977736738 was:0.019530675665220657 his:0.018900421021236905 be:0.017373825006196972 their:0.015767721170721456 for:0.01557246589796783 with:0.014071419046630446 is:0.012922913111931644 at:0.012690452250034052 are:0.010702713108721902 .:0.010158075558988393 Mr.:0.009672788574483367 tho:0.009612591781990074 were:0.009549306361446321 :0.391314481702041 +Ameri-:0.10437812726782772 they:0.0917693791656496 he:0.0816904900749951 I:0.06580883072541632 we:0.06442119042384367 you:0.062231728406900264 who:0.057761127663843954 and:0.04248339292790004 it:0.039028992208093194 Republi-:0.03713059086682067 Ameri¬:0.03181781152638762 one:0.030214854812568748 which:0.02926667961876559 that:0.022735659859057393 man:0.020226304252794806 she:0.017758882831469855 We:0.017404075511466582 It:0.01366723180022761 They:0.0121982546310067 :0.15700639542496453 +he:0.2011066915770423 I:0.15518846223927552 they:0.09573666628778993 she:0.06269848637070295 and:0.05468731716524793 He:0.054006102746164304 who:0.048421781708951304 it:0.029040179078633595 we:0.026672028101360032 which:0.022951236601144794 you:0.02026493812871949 that:0.016105889256949463 They:0.01554500135431912 ho:0.014185424262221911 It:0.012771582243831731 She:0.012653945334039818 but:0.012496129188768124 1:0.011152210812251347 We:0.008412436310319769 :0.12490349123226657 +thence:0.31541135605576903 the:0.20975657103364734 and:0.06337424112564091 an:0.03842653390058546 of:0.02670657289505346 a:0.025893047392585123 feet:0.023936650365464614 The:0.021558574709792274 minutes:0.018990717162505596 north-:0.01595808789134354 south-:0.01592623562603883 tho:0.014948962484100575 as:0.009376744029283669 per:0.00918178214389053 tbe:0.007916232781350058 A:0.007637156007053189 by:0.006694579430563062 for:0.006467470274175193 on:0.005971407074113396 :0.1548670776170441 +a:0.2151572520102193 the:0.16288406831545305 in:0.1134822556691706 his:0.0725129017581381 of:0.06914644340138655 their:0.06337458667849072 its:0.050293061876376846 great:0.02854884593416891 and:0.027764531524663065 with:0.024361265269710074 In:0.020347688730100996 our:0.01870393679908421 no:0.01846747129062287 this:0.016243986642883994 The:0.016136692673499695 any:0.011987570050357875 to:0.011179444353029318 her:0.011066808911980162 for:0.010578650818122948 :0.036762537292540726 +of:0.22609783283507867 and:0.08566394934141061 that:0.07978356844661547 to:0.07859317410238478 in:0.054683440217012456 by:0.052891245928042105 on:0.04819494294088866 with:0.04152665390467339 for:0.041504094715603825 all:0.03696606738074386 from:0.0319121170504083 as:0.017983941458878057 when:0.017183011845374865 In:0.015327404350864899 under:0.01499870421735018 where:0.01449355291082289 upon:0.013383395718588889 but:0.012199138850925106 which:0.011924892843368244 :0.10368887094096477 +a:0.3479296129304508 the:0.15228480475485393 young:0.0860600006203446 A:0.04044170346475837 every:0.032445667795022615 The:0.03182563651130595 of:0.030102039345865205 one:0.028727689196128885 old:0.027546053935831614 any:0.024927124669569766 no:0.019278344120381447 that:0.016098260613574458 white:0.015112168182907268 colored:0.011292028745492311 No:0.009482575171936233 Every:0.008844895046891644 by:0.008304197799479905 and:0.008201676572482254 poor:0.007099817888748807 :0.09299570263397391 +so:0.1265564045265689 and:0.11609296050103951 in:0.11396494926323884 as:0.08161501114267333 of:0.06186926823468864 for:0.05827871903087869 the:0.057513407472943374 are:0.04181210890500534 that:0.04164138596335479 In:0.03140763331461807 great:0.028956172177973298 with:0.027755600517714512 too:0.021061245267806016 but:0.018739991923572417 very:0.017401935221934447 is:0.01671904052391269 good:0.015883934798533592 to:0.014965030048935441 by:0.01375993081122204 :0.09300527035338604 +W:0.10242058212512038 J:0.09361237108718733 S:0.06566575245866656 C:0.06208093272992328 A:0.05993150014572867 E:0.05904378636127019 H:0.05572780838641891 M:0.05484738633255885 D:0.05092401808203862 F:0.05072953565548057 P:0.04758991961249125 B:0.044366806905628275 L:0.03889620416279184 T:0.030633036383116204 R:0.028453421113061435 N:0.021462419985919683 K:0.017577479563772404 G:0.016697916827666328 8:0.012103062039613876 :0.08623606004154537 +the:0.2782472374031439 and:0.05853086307875382 of:0.057808400149107285 a:0.0505051790196421 in:0.047737229779834744 that:0.029028474107152598 tho:0.018710024088825838 no:0.017339306339466322 any:0.01703662573257265 for:0.016715378203915124 or:0.014389838101205619 to:0.01254353636706294 The:0.011965494146430906 such:0.011478107165062217 their:0.010557144796299397 this:0.009886618703130198 by:0.008203119141950934 In:0.008031362143197362 an:0.0075425481936670265 :0.31274351333957906 +and:0.05736418086358072 as:0.052545158880682896 go:0.03486021035102965 able:0.028902307619249026 brought:0.02767498097919344 up:0.02743952013875738 time:0.024777971061369936 them:0.02447749122624388 went:0.023364253971773823 began:0.0224680688936198 is:0.02238821322786742 him:0.022066101577205146 going:0.02114649868698609 come:0.02085712546099601 or:0.020580739318615274 enough:0.01845494922843503 made:0.018325525345694652 unable:0.01772247989312811 me:0.017529490522537054 :0.49605473275303463 +the:0.22209508854492113 and:0.09787117449056498 of:0.0975305007929562 or:0.06408075720931924 in:0.04424270833019101 with:0.04216930715371863 by:0.035277112281032225 for:0.03339150924817686 about:0.02640409611703469 these:0.023073760227542848 The:0.020954441015724155 a:0.020505622364712827 to:0.019010468560027634 from:0.01639603908687154 that:0.015131451090003448 tho:0.014222865039132195 are:0.014204059541490635 In:0.013839567103431615 than:0.011583691226803717 :0.16701578057634442 +an:0.1961088154355709 the:0.17423636486162714 any:0.0880530882113393 no:0.07903524217005435 of:0.0398460199632149 every:0.039283460525239206 this:0.03906164122497279 in:0.028605557822484706 a:0.02855702336090969 from:0.028438071515277063 and:0.024047057136169107 good:0.024037351572776523 their:0.02098701393042703 his:0.016382844825217843 to:0.0156583694798365 one:0.015558785571010455 tho:0.015357811526305276 great:0.01333554487802876 An:0.013326667676276712 :0.09908326831326177 +the:0.11919516938815296 of:0.07230453158552728 and:0.05781056740443249 a:0.043018564803886335 to:0.031305092790907506 in:0.020848713353460488 at:0.014270110001066288 .:0.012526810245749479 :0.012413283442322082 for:0.011719122709941797 by:0.010808400946589808 or:0.010404172990115616 The:0.01003576004804544 with:0.009811868184449042 tho:0.009295902015355835 was:0.008924239095331684 that:0.008672304223433876 is:0.0085591147338948 be:0.008335143826716943 :0.5187411282106204 +the:0.5373170518022233 a:0.045419830826601414 this:0.037862127883746335 tho:0.02853194400515831 his:0.023461410451938544 of:0.0184908261421549 said:0.017650951165731513 next:0.016759553058184717 public:0.014848496129907884 same:0.013148725890842579 tbe:0.012685634831679183 The:0.011747341619644521 and:0.011704265664397659 their:0.011302120435112676 our:0.01117642104018909 to:0.009536927766251679 present:0.00871615310166301 last:0.007757687415753269 one:0.007656942230873414 :0.153225588537946 +the:0.16252600296301706 of:0.09943636141121946 a:0.06972061183976204 to:0.05786006055271911 and:0.051901321414837935 be:0.037439623662398995 in:0.027926045399370266 is:0.026607440308126628 not:0.024117671416066706 was:0.023783954316327426 for:0.02116560723292378 or:0.019279992189698437 their:0.01878366798909115 his:0.0183649522149638 been:0.016598750070275194 are:0.014734104368434184 at:0.014726030078833321 no:0.01294859103405944 with:0.012367286558919744 :0.2687119249789553 +and:0.08558284522612049 time:0.07613045117753112 that:0.045028616377769726 times:0.0341507658880301 more:0.028390771276398157 or:0.02792106110616873 for:0.027626834707849747 all:0.023312088186045583 them:0.023053646963074985 day:0.02204996733890973 place:0.02117537663620324 it:0.020727675956339602 hours:0.020679030568744802 dollars:0.02050968990952043 which:0.020294611941769975 there:0.020133870187174767 be:0.01870046330125015 him:0.01816394178542079 will:0.018097664465583627 :0.42727062700009427 +of:0.08502579948158144 the:0.07546169616244759 and:0.06761847965437473 in:0.06526519815221417 for:0.04231611534724506 to:0.040538656345603746 at:0.025321236470941116 three:0.02437474268383203 was:0.019108589414638683 that:0.01590636158540275 there:0.014610129672064681 In:0.01353616722538342 is:0.012495206901270005 :0.01237322248605768 by:0.012050975053421729 I:0.01200854288997371 a:0.01196632518293264 be:0.009677206419953259 he:0.00965296881861774 :0.42969238005204385 +of:0.09129790931378902 the:0.07369883040827747 and:0.047842263382354346 in:0.04189055351593407 to:0.04045875475680249 a:0.03542341257202578 be:0.02020462051672066 for:0.01979292654746225 was:0.01760256398103379 at:0.017380150555488715 is:0.014984483003968216 with:0.014047653760730413 by:0.01374644383819499 :0.012670486581795598 In:0.01200961464556976 or:0.011563835749786333 from:0.011391516893522809 are:0.011273104484969465 that:0.010755276030689069 :0.4809655994608848 +and:0.051654636516201016 made:0.051015454799921624 or:0.024674408513783483 that:0.016062835335927065 him:0.01565924413931051 followed:0.01563124550437536 owned:0.015583321950137187 ed:0.014866750499448756 accompanied:0.014614648987466283 it:0.013626457525371337 taken:0.013108391888807197 them:0.012651103019890095 caused:0.011867361447385745 up:0.011657883035474385 done:0.011150870541727875 only:0.010691704012969913 given:0.010651579286736641 occupied:0.010536480438065907 secured:0.01016848645023085 :0.6631271361067688 +of:0.15621589312444406 and:0.10110672139842626 to:0.09157382992549754 the:0.09057869849402604 in:0.02585256303088076 by:0.02134782401521112 for:0.01724478119137249 .:0.016475976729370134 at:0.015933048194622167 or:0.01509325770654523 :0.013696432087874778 A.:0.011776475680736115 a:0.010993996621098342 from:0.009644549478982056 with:0.009019354853526439 that:0.0076637960894001865 New:0.007339275726304271 as:0.0065559777744677045 John:0.006496115451725081 :0.36439143242548927 +min.:0.0636905690956504 J.:0.06162873187220284 John:0.04764247762572775 Mary:0.04507819365177518 W.:0.04152348170952823 .:0.04097053407626163 C.:0.037393390733231016 A.:0.03442213328047145 and:0.03385349198018083 Mrs.:0.032227325010734185 George:0.03055595325155126 William:0.029955556176920087 M.:0.029741367664096886 Charles:0.028757195623025783 James:0.02503062423397286 of:0.023992274464964523 S.:0.021401220941963523 F.:0.020555599455817065 Miss:0.019516104687745818 :0.3310637744641787 +his:0.14511108160581512 of:0.14290120447112387 to:0.10668933413797675 her:0.07492026490016725 their:0.05797120290848511 in:0.05112083034384342 the:0.04570058788261683 and:0.04133808084877026 at:0.03361192596268113 all:0.032269976678441906 our:0.018590542231767652 for:0.018490186395518176 my:0.017026776053171336 from:0.014179690283210634 that:0.013768368132744886 by:0.013441400828756039 as:0.012993263046864562 with:0.012630737824761467 its:0.012521495811031215 :0.13372304965225237 +the:0.5737770958690172 an:0.03467090109161399 tho:0.034075828360040805 north:0.024501140987186705 south:0.02270008286898892 west:0.020997076523278372 lower:0.020399497483376768 a:0.020266471192755195 this:0.020233066544990682 The:0.02012875311487988 upper:0.01802774144184572 east:0.01710292189505515 and:0.016723717993392135 one:0.01643810304495542 tbe:0.014571583388934753 that:0.00906956272920847 first:0.007634184319374195 rear:0.0072666680683378644 said:0.00623487590926857 :0.09418072717349923 +said:0.25931522519641426 a:0.16222296816042012 by:0.10167038800424903 certain:0.05433471265634261 of:0.05277009411734678 in:0.046790767410104454 the:0.038454285038833025 any:0.03831031267701414 mortgage:0.026610325982096387 for:0.017422709538935308 such:0.014549412207242388 no:0.014491024502705178 either:0.013575391485935088 and:0.012004767464942119 In:0.008450919724866567 this:0.00818627936452501 trust:0.00773327144932779 his:0.007380090883946451 with:0.006381381274758288 :0.10834567285999502 +and:0.04969003311528653 able:0.0477409894457259 order:0.043590495306135214 is:0.03848043767950027 right:0.0368305240346134 necessary:0.035972605466446136 enough:0.035533121118923504 him:0.031289334965666736 unable:0.03106043917612664 required:0.028737602998377045 as:0.02733011664803535 not:0.026758892750481857 have:0.024331636864403147 time:0.021817863949672677 attempt:0.021378337636187364 had:0.020799816697043862 was:0.020547755696106906 power:0.02040202637275856 ready:0.019789358569105284 :0.4169186115094036 +Mr.:0.460558457530404 Dr.:0.09461409101995934 and:0.051944256099184946 Mrs.:0.04849308747842185 .:0.026045061567926707 Mr:0.02313002527812713 to:0.02166749108059786 A.:0.020757057735579468 of:0.020004238434359875 Senator:0.016143595639065877 Judge:0.012923996735467133 M.:0.012703540656893643 W.:0.011369677116055747 John:0.010655682740797518 thence:0.010040715819437902 by:0.009193009287015707 C.:0.00887596309240528 H.:0.008606772980519787 William:0.00856976333403313 :0.12270351637374718 +or:0.19522385751110363 and:0.14519138367540377 the:0.12475031522229275 of:0.11839448333110456 for:0.05518240743965281 by:0.04036354567958904 with:0.027707039115275372 that:0.0245545759629017 about:0.022000345107759355 to:0.02152852799075203 than:0.01690759903001323 these:0.01650540084036801 all:0.016265807534458717 some:0.014899929283880165 but:0.013362163420524577 have:0.012437495930837627 The:0.012329926569911496 is:0.010077021633515822 other:0.009759172888400917 :0.10155900183225441 +and:0.06174302123025829 away:0.045931750958463816 taken:0.03772274558378757 them:0.020626014805485066 miles:0.020014740300009957 come:0.019981186841682895 out:0.019507982983791597 came:0.018932367905894663 down:0.01845006130561681 up:0.01820649894182868 received:0.016355538616791395 it:0.016168637562171892 him:0.016057797509940054 removed:0.015770574687160126 annum:0.014621871694467579 feet:0.014281010247797082 made:0.013658150433829997 derived:0.012961254651437491 letter:0.012470613368147022 :0.585538180371438 +and:0.13511248769433834 be:0.13397830912297232 have:0.07749919293905352 he:0.061060320994962544 has:0.054642169254337 not:0.035485298712245886 had:0.03147222657356897 I:0.028523559755414474 who:0.02751138628605344 been:0.024923078065942184 was:0.017582101463787577 she:0.017108750986311705 they:0.01645601991800916 or:0.015560646473900914 one:0.015096827678702896 the:0.013763984186799336 is:0.013518542559735518 also:0.013255537975413378 taxes:0.012077421830294985 :0.25437213752815585 +was:0.15693246776947567 is:0.15446772469685974 are:0.10719379951463255 and:0.07356675348776684 were:0.06073765149590643 did:0.03687867871064955 had:0.03415884406066445 does:0.026544749659963632 Is:0.02611063049733362 if:0.025033053716035585 have:0.024739675365311024 has:0.02462608588052565 do:0.023227642261002376 but:0.02216338407754433 will:0.02030174159396745 could:0.01913297742303666 or:0.01564106075760354 would:0.015248752533393082 that:0.01162837928856397 :0.12066594720976385 +the:0.21243819738470204 he:0.08320008864427693 a:0.08184338183356611 I:0.0801755149165979 and:0.07819486078325805 was:0.049744735036128696 be:0.03502889754466876 never:0.03355887272511197 is:0.02914447357903271 first:0.027834439137387923 have:0.02569478274968721 had:0.025185806895979743 are:0.021038443198981252 or:0.017867307692450353 1:0.015693819601230823 ever:0.015475515111947648 The:0.015072378818676535 He:0.014339617683722175 they:0.014086779923198864 :0.12338208673939431 +and:0.12457402533043423 made:0.07725663893102334 that:0.04939444490934707 or:0.047766457213826344 provided:0.04692254065210737 required:0.0345919437501435 but:0.026093037792375838 prescribed:0.025361463220138554 done:0.02455305893172196 allowed:0.021381666165913943 only:0.021033692995668207 used:0.019105635649995716 ed:0.018923383402076655 given:0.017625409812874457 it:0.017505191708492487 them:0.01521580241752026 secured:0.01472357875549037 time:0.013070528635456623 caused:0.012676487349854437 :0.3712250123755387 +a:0.2207913756308324 the:0.16274955269906344 in:0.09144211904465648 of:0.07622429367936479 by:0.04891318943484398 for:0.03492011316938786 to:0.0335766893906092 that:0.030153869547236346 and:0.028013111046432553 this:0.027563766809160273 very:0.018646217900612397 In:0.018616610050613644 which:0.017152975727445008 with:0.017090993063587568 The:0.010874492118667532 have:0.00935075920679149 some:0.009238247371749952 more:0.007928580552062416 any:0.007720626509269816 :0.12803241704761287 +of:0.09129790931378902 the:0.07369883040827747 and:0.047842263382354346 in:0.04189055351593407 to:0.04045875475680249 a:0.03542341257202578 be:0.02020462051672066 for:0.01979292654746225 was:0.01760256398103379 at:0.017380150555488715 is:0.014984483003968216 with:0.014047653760730413 by:0.01374644383819499 :0.012670486581795598 In:0.01200961464556976 or:0.011563835749786333 from:0.011391516893522809 are:0.011273104484969465 that:0.010755276030689069 :0.4809655994608848 +of:0.24054033504017258 in:0.1046981660362071 to:0.09471545279001042 for:0.0774909891877184 with:0.0599054531319293 by:0.051176325120137506 and:0.04644910954063808 that:0.0404301825689489 on:0.038007537824416036 from:0.025557884776794226 In:0.02271660053391198 is:0.02009067580565827 as:0.019920639989710966 under:0.016866756002853502 upon:0.01619624389590039 at:0.01356110123850198 was:0.011270336635867894 when:0.009639591108451594 have:0.007687426751968078 :0.08207919202020278 +of:0.09129790931378902 the:0.07369883040827747 and:0.047842263382354346 in:0.04189055351593407 to:0.04045875475680249 a:0.03542341257202578 be:0.02020462051672066 for:0.01979292654746225 was:0.01760256398103379 at:0.017380150555488715 is:0.014984483003968216 with:0.014047653760730413 by:0.01374644383819499 :0.012670486581795598 In:0.01200961464556976 or:0.011563835749786333 from:0.011391516893522809 are:0.011273104484969465 that:0.010755276030689069 :0.4809655994608848 +it:0.22976499184999888 It:0.1851624730857909 there:0.06618540295000529 which:0.05036285730168802 and:0.049260836028449016 that:0.041121091153613086 he:0.04103054870361009 This:0.02896130315362673 this:0.02529542875415676 who:0.02205071203373745 There:0.021280080108693613 He:0.01831105486380762 she:0.010144405662314782 what:0.00828594004055051 but:0.00682209547777506 That:0.006726143409443775 work:0.006472586672891378 as:0.005945608288734557 country:0.005735739979998168 :0.17008070048111432 +he:0.12656157396114828 I:0.08885608919928258 they:0.08310829150311391 who:0.07997723462393581 and:0.05519657869132775 it:0.04842059196021943 have:0.0474371895746214 we:0.040468936644894045 she:0.033111782733026084 which:0.026911826114535263 that:0.02367663802557432 He:0.021959865507324733 has:0.02194455295953043 be:0.02014981920127871 It:0.019768338236363623 1:0.01887168791593414 They:0.01605607263679131 never:0.014292478892515087 had:0.013249966472329375 :0.19898048514625372 +it:0.08972919826818926 he:0.08153824812618861 they:0.0730100651245145 I:0.0680249875379437 and:0.0634458772777585 It:0.05704393729870935 which:0.05438211121809574 that:0.042419380429968366 we:0.030038843765316143 you:0.027807020281044283 He:0.027387694552236472 she:0.0250693531924952 They:0.018539427248630218 who:0.01731844008304367 there:0.01594197316595643 We:0.01299538703098482 This:0.012875382185732209 but:0.010538405579825686 1:0.010240616866558234 :0.26065365076680863 +be:0.2118485534263253 was:0.11964026262900408 been:0.10033644962481136 were:0.07390518840405583 are:0.06671655043177493 and:0.06579643151351251 is:0.053552046632206265 have:0.033920635510954554 being:0.0313325102918351 has:0.02896801726223511 had:0.02496742694147933 bo:0.022884512233492013 he:0.018162255788372553 it:0.01435282364943338 so:0.013774035919433544 Is:0.009981780349267702 as:0.00887395697652724 I:0.008399016351367422 or:0.008318178357345265 :0.08326936770656651 +of:0.15732971049367675 the:0.10014149035959019 and:0.09790655306477564 at:0.08831320658149301 with:0.04877752150311901 on:0.03680191150226681 to:0.022921779306843727 by:0.020563496780146892 from:0.018383908760345447 in:0.018138934476447738 as:0.01688391015279372 Mr.:0.016297059775077987 for:0.015328363335884458 his:0.015131204554712474 was:0.015087050037758036 a:0.013287377129653414 Mrs.:0.012702819940375653 .:0.011134513613176193 their:0.010061851710250593 :0.26380733692161223 +the:0.25443656161305356 of:0.09791711055998592 and:0.06893645575884888 a:0.06671477492138826 to:0.05859843073067567 in:0.039303108128267816 The:0.022660041797687998 at:0.02004267740822081 tho:0.01688741052997844 with:0.015321610945610306 for:0.014582051738139614 his:0.013511709085038674 from:0.013478726889437811 by:0.013151684834759144 or:0.012846447769600746 an:0.012498961875686424 on:0.011283261487439201 that:0.010799990218648364 their:0.010619065342992225 :0.2254099183645401 +and:0.13828844677316413 years:0.06864557646209042 will:0.05777931177497883 was:0.05580511565987547 not:0.042307909973205694 has:0.037570440975037644 it:0.03712630973112881 to:0.036471272087507084 he:0.0331338648861246 the:0.03242821501062097 who:0.03046925560557409 shall:0.02955625055704193 I:0.028783728223857753 He:0.0241769626003433 is:0.021193155225149012 be:0.020113482862180787 almost:0.019862951485607676 have:0.019392096950114887 had:0.017829515771111512 :0.24806613738528535 +the:0.2650271473898392 a:0.2390168183007423 to:0.06625717013507974 The:0.031254299622629086 would:0.028557955060373334 and:0.025813451007556443 not:0.023543563330676587 will:0.019038652178160635 this:0.018438907366479126 of:0.017659194045053474 I:0.01759423577677375 we:0.0175811950143915 they:0.01694044142180874 tho:0.015759511303668507 or:0.015364665166418498 that:0.014294253637946267 all:0.013833691640480207 his:0.010310754386999644 first:0.00923531744877586 :0.13347877576614717 +and:0.41331458107349367 was:0.05564105298718968 Since:0.05400968689366924 And:0.04331444622261826 is:0.021284175057342692 were:0.015566765439833955 but:0.014848974993861373 ;:0.014650199523523201 are:0.0142773167695849 He:0.014252603103474037 I:0.01353473306859902 it:0.009580682928979872 that:0.00921325857438325 even:0.009102464699971329 he:0.00862316633585832 or:0.007945010288694734 be:0.007492115324313499 aud:0.007395301984027002 Why:0.007289924090695575 :0.25766354063988645 +at:0.2799838956641741 of:0.11992013827119428 for:0.11834580419929842 in:0.10455560110142527 At:0.054564404066967574 from:0.03716895817124109 to:0.03149719636800487 In:0.029766684188518397 and:0.026639088475468524 Since:0.019280236471244244 during:0.015131751996252218 all:0.014594894573856609 on:0.012856997731298914 since:0.009662445167764858 From:0.009028385172086328 upon:0.007648618547043571 For:0.006834959980187907 with:0.0063470726784882504 a:0.005957069744311111 :0.08921579743117349 +of:0.2804967013747399 to:0.13568038753120268 by:0.08261824619776217 in:0.07624735009852061 for:0.048000000193114165 from:0.04715522571531367 on:0.04352142914844335 with:0.03847885073835008 at:0.03554449211311097 and:0.03080565449694873 that:0.028941951423524355 upon:0.01948193784526524 In:0.014089380556832377 as:0.01163029767216527 against:0.009487110277363958 through:0.008184952816396465 under:0.008099574534497203 into:0.007612397306866897 is:0.007231420437103689 :0.06569263952247824 +of:0.09129790931378902 the:0.07369883040827747 and:0.047842263382354346 in:0.04189055351593407 to:0.04045875475680249 a:0.03542341257202578 be:0.02020462051672066 for:0.01979292654746225 was:0.01760256398103379 at:0.017380150555488715 is:0.014984483003968216 with:0.014047653760730413 by:0.01374644383819499 :0.012670486581795598 In:0.01200961464556976 or:0.011563835749786333 from:0.011391516893522809 are:0.011273104484969465 that:0.010755276030689069 :0.4809655994608848 +the:0.16807735899698817 of:0.10541662057906837 and:0.05138367848570702 a:0.04141865232648221 to:0.0385989743764065 in:0.026264864977736738 was:0.019530675665220657 his:0.018900421021236905 be:0.017373825006196972 their:0.015767721170721456 for:0.01557246589796783 with:0.014071419046630446 is:0.012922913111931644 at:0.012690452250034052 are:0.010702713108721902 .:0.010158075558988393 Mr.:0.009672788574483367 tho:0.009612591781990074 were:0.009549306361446321 :0.391314481702041 +of:0.25075837699509584 on:0.17984485974567785 in:0.10248267002746275 to:0.06282200232957146 for:0.04441808646506652 and:0.034135429567084 In:0.033494461704101176 during:0.03163567808878896 from:0.02890451418385749 by:0.02888919936617389 On:0.024265621824902266 that:0.022693226976466453 at:0.021676786270303942 with:0.018260639068238983 upon:0.011811786408682856 before:0.011153951852565276 over:0.009147801529807114 through:0.008617254982960279 when:0.007788875460802008 :0.0661987771523909 +and:0.06829155943869254 has:0.06056886441758647 of:0.049800761845366304 which:0.04944565261120418 the:0.04842121122798511 have:0.044883502305719254 had:0.037030895168991114 to:0.03669674756092904 as:0.03186533048726014 that:0.022700713064229588 it:0.017080850871969373 It:0.014842944096852818 not:0.014186995367151324 in:0.013879042404238774 a:0.0136143008006281 he:0.012206402424766718 or:0.010614495464541766 who:0.009863433658626153 is:0.00972959812189437 :0.43327669866136687 +that:0.1577429470632027 as:0.10923886497479111 and:0.08672043336282 but:0.061772185104416934 when:0.046268621430091965 if:0.04053912805634182 which:0.03583043658957001 what:0.03469699835787279 If:0.017549799693531612 time:0.015093292091379796 But:0.013479564131014175 so:0.013332512411984078 When:0.012798766089383108 As:0.012371707961820872 where:0.012345074672329604 because:0.012082138412817583 whom:0.011976813409609549 me.:0.011203231351473716 though:0.010646064031920128 :0.2833114208036285 +the:0.18100661528199574 of:0.07314192435145221 to:0.05843088568332533 and:0.05751917196167816 be:0.031389541939103725 their:0.023667240301933658 in:0.021392144552911645 for:0.020602330202012284 was:0.02055805595960707 his:0.018902957159087942 is:0.018627258905384393 he:0.01572381179624487 or:0.014716318090138106 that:0.013987891373631284 at:0.013098011012815566 a:0.012937132844198842 are:0.012927015954826294 much:0.012823139254363649 its:0.01272988548802374 :0.3648186678872655 +the:0.12397170260116352 of:0.0943155434282568 and:0.04047242644896243 The:0.039121251000670806 Mr.:0.038849315117364246 that:0.03749617133485052 in:0.035552871266442694 Mrs.:0.022501402823346915 which:0.02123924194599288 a:0.01931574625006573 to:0.018732434543853364 his:0.014277305910035551 when:0.012369804522166431 :0.012284549055542177 as:0.00976422368815642 he:0.00970781880966711 for:0.00927189170209692 tho:0.009034083963245747 said:0.008744635319874062 :0.42197758026824567 +W:0.07892631551588039 M:0.0649850702455623 J:0.06391667000631429 C:0.05905432254903491 S:0.054856972986157694 E:0.05424348669664422 A:0.0514021035998739 H:0.049828895999379015 B:0.046817024292917286 P:0.04169510535418999 L:0.03908899165768591 F:0.03868396050835962 D:0.03284277583604958 T:0.02839631999315026 R:0.022484651061807727 K:0.02066410658290062 .:0.02003194872932241 G:0.015174321886982735 N:0.014851087760055299 :0.20105586873773182 +is:0.1375071261575087 was:0.09030838929987198 of:0.0682186998555935 and:0.05387447173668332 such:0.045058479381060654 have:0.04468085376720581 with:0.043500136289455725 be:0.04279418754761215 as:0.04176981243789085 had:0.04024093298325769 in:0.034596176090525545 for:0.0319288594771968 to:0.03136710501921518 has:0.023583286193637934 make:0.023448669480486472 by:0.023190749335302834 made:0.02112743350250599 Is:0.018873191413437407 on:0.018168470323134314 :0.16476296970841714 +was:0.15183439557267692 have:0.1034950610398143 be:0.06139729003918488 not:0.057587156914720314 is:0.05546032592408295 had:0.049812244927119845 to:0.04084023878637171 and:0.038124280886140685 has:0.03719192466548559 been:0.028619912151941856 in-:0.024911951492266885 in:0.023505872917224703 were:0.022633376510822607 a:0.021719641340904147 un-:0.01709320689096275 or:0.01590624933012203 of:0.01555818527455977 with:0.015116464753375261 are:0.01417774180953315 :0.20401447877268963 +and:0.21781821173919472 he:0.09533990155823001 be:0.07877116214145086 had:0.06911883074753833 who:0.05890305452907894 have:0.04561974312042729 has:0.042998899432629134 He:0.028570301953748548 was:0.027092102912175724 she:0.025803681595956356 I:0.018936530262815617 been:0.018884776721552508 which:0.016977920317128536 not:0.014902596168897232 they:0.013674822151902875 is:0.011613959502442097 it:0.011354791245352026 that:0.010990705048549015 also:0.010974010330385874 :0.1806539985205443 +ten:0.14865194439701881 10:0.0989453084601726 two:0.05697582643155263 11:0.052999281188560884 9:0.05068154553602185 one:0.041427750052115596 4:0.04092311031563571 8:0.04013091591869079 2:0.033487056730452214 3:0.03185210801840974 nine:0.030374139640232355 12:0.02998015038506404 7:0.028144552410549677 6:0.027526053014499223 5:0.027423257694110272 three:0.02452622519201456 eleven:0.022919114565311562 four:0.022831467133464716 six:0.019968681620565924 :0.1692315112955568 +the:0.28217233050857543 of:0.10856571748327098 The:0.04854639269787486 .:0.04568951333676941 by:0.020448619967569345 A.:0.018118703430953377 :0.01791636827307923 S.:0.015939710437431653 to:0.014911179245614916 for:0.014191607111776727 tho:0.013026279618728098 said:0.011525625000061875 and:0.01070915481464472 a:0.009956480657183313 A:0.008894426203199966 in:0.008795764810448907 P.:0.006919980053052407 D.:0.006515695078997728 young:0.006498349574663836 :0.3296581016961032 +be:0.1778885103768192 was:0.12270093162253669 been:0.10879142852688181 have:0.06014536704868337 and:0.05695173503454797 were:0.05137287661315967 he:0.045090488754297206 had:0.040966591825259836 has:0.03178993173798767 being:0.025615934127967296 are:0.02305343141159741 is:0.022280455492375333 I:0.015288023099083116 they:0.011450942776013575 moneys:0.010920021573583774 who:0.010676344002497735 recently:0.010625647960316108 bo:0.010204708287981423 He:0.009702223344689296 :0.15348440638372152 +and:0.17282724199169902 to:0.07757770602473987 it:0.04669472225475961 not:0.046667098650359576 that:0.044837287014680274 or:0.022108716276937147 would:0.01834533418488382 do:0.017032323169470124 you:0.01692725076215822 which:0.016810760052683442 have:0.01602521413260434 will:0.01576422625486381 but:0.015497853332086586 in:0.015257331001823084 had:0.015111739398074267 as:0.014882735704227813 It:0.014525784713304615 for:0.0139428598589736 time:0.012738755075531426 :0.3854250601461394 +the:0.07308391748213149 and:0.0650236830030406 of:0.06160769942055397 to:0.052268247186185425 be:0.047076308054616864 a:0.0372396837426395 in:0.024252681833945605 was:0.022488248066258144 is:0.02167905136294673 for:0.02153860696418792 are:0.020623701936193742 or:0.01929925567751662 re-:0.01871171112926931 been:0.01861238611348457 pro-:0.01601091340941376 his:0.013531807626344868 not:0.013315154707748283 were:0.013106637980199716 he:0.012779513704430508 :0.42675079059889237 +the:0.13094040752753414 and:0.07061363111384451 of:0.06840271406879402 a:0.043045599632740385 to:0.030276599129506393 Mr.:0.021629168270130852 at:0.019819275506350452 The:0.019013203719147595 :0.01484635958621654 be:0.01392120862061907 .:0.013617010558943926 in:0.013504324654463625 was:0.013152748584481901 is:0.012560672829366418 that:0.012383020233088416 this:0.011790790533911024 or:0.011609083694390688 his:0.011538838099873086 for:0.010852674950861087 :0.4554826686857359 +state:0.04832094800301814 number:0.04416837023434506 cost:0.03663583839022843 out:0.030804609992751683 amount:0.029851947864448992 point:0.029574715638524682 day:0.02814202747088605 matter:0.027972647869098328 line:0.022782247325286685 place:0.022535110080187097 piece:0.022298005116941223 case:0.022016463485187186 acres:0.019824238344402573 part:0.019602560345427282 State:0.01898801968084986 plenty:0.018231643435908718 board:0.017629135915346535 city:0.017566937632589947 tion:0.016220407745763353 :0.5058341254288081 +property:0.07429438748016665 and:0.058937132558623526 land:0.03585838771896306 premises:0.025439169145153973 be:0.0241777771438733 one:0.02294435570114539 thereunto:0.022881356117242048 as:0.02106051853525447 lands:0.017666266719298843 estate:0.016966142514189198 he:0.015520413520957291 or:0.013559135189984707 man:0.01269241740458599 it:0.012589302151179342 are:0.011967012578037292 person:0.011776561140600116 was:0.011702999289720814 is:0.011372299348526172 now:0.011204271035371666 :0.5663900947071261 +and:0.09447425784727605 to:0.09387588892964488 the:0.07032439722640595 of:0.06956620611527514 in:0.028591293294483986 a:0.026352616721318015 not:0.02369407096325094 I:0.018758815771504945 be:0.016605031894369356 is:0.01614170759253885 was:0.013895189100790985 for:0.012841553188376717 he:0.0115345828957296 as:0.011396002154616522 with:0.011277649156873364 will:0.011081074577408112 or:0.010805296323859624 no:0.010770716594938423 by:0.0107317530191295 :0.43628189663220907 +the:0.17731637495087174 and:0.06413326653201802 a:0.05784183895911703 of:0.04635263079336813 to:0.04300358477039049 said:0.01875529346573368 The:0.01818001304065829 that:0.013385271539266299 tho:0.01193090819214057 crepe:0.010707940531759184 or:0.01063318121435005 Havre:0.010476473429618346 by:0.00956011167059966 in:0.007741427579331301 :0.007458633811641756 an:0.0061443195577897645 his:0.00568872363557302 on:0.005195866730237055 tbe:0.005106806479680583 :0.469387333115855 +virtue:0.062060494787377685 out:0.05417899169104244 part:0.03289673107629515 one:0.02969369892462812 quarter:0.027015883171169475 favor:0.01993830018372674 result:0.019463829004704194 guilty:0.018891084377354095 means:0.018499162894926688 end:0.018170939082736048 that:0.018121271122199262 construction:0.01726217741616459 presence:0.017003995482744873 tion:0.01673652166540914 case:0.01640819963257697 side:0.016055927605250184 erection:0.015381239457214257 account:0.015287601389485416 hands:0.015156055434805247 :0.5507778956001894 +.:0.05330955824125287 the:0.05314175894802315 and:0.03951906020525599 of:0.036500871693550534 to:0.027542076256083264 Mr.:0.021815508722818858 Mrs.:0.021663185362536114 Miss:0.021613700742073503 a:0.01937377035218912 M.:0.016051079504205295 H.:0.016044043864157028 J.:0.014174511767877901 :0.013963502382777422 A.:0.01365692400671348 W.:0.013212729872643002 C.:0.011896476301988921 by:0.011742599779303258 at:0.01166086589699525 S.:0.011301641915897028 :0.570816134183658 +of:0.3908238183301222 in:0.09233472929434215 by:0.08682811585416027 to:0.07321579679688858 at:0.04803893338563417 that:0.0460493239451964 and:0.04188112336013102 on:0.026022538351826784 from:0.023138015346367287 with:0.019355523341236115 for:0.017690080221918283 as:0.015813551972265413 In:0.014249733067057329 before:0.012730762932416461 upon:0.00856653489413579 when:0.008366762218537398 against:0.006896742266643639 which:0.006270432359133285 ot:0.0052725980977784475 :0.055454883964208994 +the:0.22363867941439908 and:0.1340764142175177 was:0.06297948735242193 of:0.05696609593653122 be:0.048425651276051924 that:0.04587647076391333 he:0.03436490527478769 were:0.032806317925042766 had:0.032288784299873495 been:0.02849624126463596 has:0.027838453622942166 I:0.024618923387168472 have:0.02377498054751355 are:0.023223039332337235 a:0.022288909672826023 so:0.01943858316021951 to:0.01873047400647883 in:0.018626094924807976 this:0.018117288525222753 :0.10242420509530836 +free:0.05344024162067432 away:0.05034259729323098 and:0.04600913667529762 come:0.036132828922569284 them:0.03552021518378204 suffering:0.034371383315011224 taken:0.027614778910474983 him:0.025909132845549868 far:0.02544856375470222 received:0.024953738988776484 came:0.022724445739189584 miles:0.022395538535730165 returned:0.02229540563366319 out:0.022098574854927718 up:0.016971842712516515 refrain:0.016791119526518086 men:0.01538975392760272 made:0.015200104102666005 letter:0.014915030197825432 :0.47047556725929157 +the:0.33952801330869675 of:0.12293678667345236 and:0.08545131028272569 a:0.046844544466312345 to:0.025563523030773437 The:0.024050897490163817 in:0.0228465128629627 tho:0.020609022990645647 his:0.019517713211584478 or:0.019441424563825173 their:0.014810983945943454 that:0.014436037389178053 as:0.012896655753220581 for:0.010580199941448645 tbe:0.009660766268878341 no:0.00947275115765249 by:0.009096920138451944 our:0.008847676145254385 an:0.008786545536886585 :0.1736217148419431 +and:0.15196751925304744 that:0.05467440542644085 as:0.0416357081371698 of:0.03459897325493537 when:0.032893520113786094 which:0.032155584344230395 to:0.0315651041355118 for:0.02410307056056011 but:0.02388023655443354 :0.02346104589688317 the:0.02336660486048526 said:0.016516778154936223 on:0.0159231795124441 in:0.014994646589031586 an:0.014313349904896421 When:0.013166615189597847 if:0.01146700091596405 .:0.011443960625117903 what:0.010337255970800149 :0.4165354405997279 +of:0.13166480315402687 the:0.10186435266714591 to:0.056724161234320294 and:0.05648990937432709 in:0.04378990558583567 by:0.03225826510720292 on:0.024306548723225737 Mrs.:0.0174446161440709 that:0.016566935498202373 be:0.016537606569263355 from:0.015902779061449553 :0.014919055036723354 for:0.014502980218546726 a:0.013943156745782358 was:0.013243061680986315 In:0.012898844203106568 at:0.012768259885426667 with:0.012491206650606743 as:0.012320364321580313 :0.37836318813817027 +of:0.09461944094869396 and:0.07741733740754686 an:0.07601139538277336 to:0.057212921051276074 in:0.05420807900129513 for:0.03576077762013894 with:0.03486598779114826 the:0.03167617642156295 by:0.02770559847670148 is:0.027562225817200466 are:0.02375660127966662 that:0.022886809749992586 a:0.021704104573842344 no:0.020216490882353486 not:0.01919585002818582 was:0.01900090359677062 In:0.016748300203535817 or:0.015575939186693992 be:0.013839014908378779 :0.3090360456722424 +the:0.32598738872503585 of:0.1288641981094428 by:0.12383710258973378 at:0.07545802267899034 a:0.060914823847390984 in:0.018171620097880432 tho:0.01809940610277869 this:0.016620326007812894 The:0.01457349357947614 and:0.01443617900471176 any:0.0141447629841864 that:0.013324545020417387 general:0.010540172223511798 said:0.010328720099272576 tariff:0.009992050858570726 every:0.009976959168324334 organic:0.009783327235239626 to:0.00810425880801851 his:0.007759305384631785 :0.10808333747457319 +and:0.1230983332042235 of:0.10969764660498318 the:0.07534628166968593 to:0.048349097981609704 be:0.044402319357219826 or:0.03779215532742173 was:0.02538438276985411 a:0.025158705146953505 is:0.024478469713514726 for:0.023125168803929237 with:0.02309007656121261 in:0.02009274547817624 as:0.016417032758650807 are:0.015115946522809249 not:0.014400312915526584 he:0.01438573991055978 that:0.014228479171023815 con-:0.013489704059186234 been:0.012206501440152905 :0.31874090060330634 +turned:0.14176991408149778 went:0.09450661123497978 was:0.054046031776665386 go:0.04632351914099016 all:0.04105920275335817 come:0.039325794565632254 is:0.03181842998542007 came:0.02856237490077157 and:0.027313794770557284 it:0.026366591557228855 them:0.026070416468527095 not:0.0248229032100805 going:0.024046934019888996 handed:0.018292182423643333 are:0.016809827054494034 get:0.016345712433838606 sent:0.0155251091280989 him:0.014713202042130228 gone:0.01458266928737302 :0.296698779164824 +and:0.09631219532671687 was:0.03513566928966104 held:0.02987715681559008 Beginning:0.024332169066967536 is:0.023122938489353394 look:0.022074108253454683 arrived:0.021820518428646088 that:0.021226918252779888 interest:0.02006974641058921 thereon:0.01971421054267379 made:0.019401567074562896 are:0.019271449916013022 up:0.01806602795372081 him:0.01678700722897829 be:0.016375054451444982 but:0.01586396852970274 out:0.015503094089883073 or:0.013721423267833084 not:0.012734170433403743 :0.5375906061780248 +the:0.12726803543029683 in:0.12219498920578946 of:0.1019222966962079 that:0.08199239278884571 and:0.06283450916876414 a:0.05379945995985297 The:0.04671366595390155 his:0.0402565358275415 In:0.039986361116158387 to:0.028948434642075 their:0.027758741348549307 this:0.026954029270136407 any:0.0238656814829377 its:0.019913696238283443 which:0.016722965973056815 no:0.016490320161956763 This:0.015131372215197345 whose:0.014721807950940887 our:0.013757281515847902 :0.11776742305366002 +the:0.17235159001350722 of:0.1216686372369097 and:0.08112762285788216 a:0.03632519791142213 to:0.03189744912194439 or:0.01784101446975093 be:0.015508352630995004 at:0.012599598230448027 in:0.012238400784019877 for:0.011767212715497537 their:0.0111549421819416 tho:0.010792355926064746 is:0.010589029079035684 was:0.010323671829541034 with:0.010312705378634967 by:0.01011928125734904 The:0.009827247550214123 his:0.009753542918397496 that:0.00911177818714203 :0.39369036971930227 +up:0.01710048448485276 ;:0.016555302960908135 him:0.00979200684954973 time:0.009764561775668559 it,:0.009124420518292415 house:0.008538553736902503 years:0.008495938140129116 and:0.008141971308332913 him,:0.007917988990362192 in:0.007825212345724752 made:0.007811657382605937 down:0.0076320687029815615 to:0.007542346808758068 ,:0.007518496239644932 day:0.007201138270060619 men:0.006910630996492422 one:0.006757090325019672 out:0.006440782700743624 street:0.006144771876990343 :0.8317845755859797 +they:0.10592030910679438 and:0.054232460713584896 who:0.05341966553911829 there:0.04429891840131059 we:0.03892739729606521 you:0.03782098961051713 which:0.036736565154468846 There:0.025560904130211934 They:0.0251980432571889 that:0.022042721126282118 people:0.016174323320392415 men:0.015382361425930064 We:0.013552245679900122 I:0.012468291734945288 wo:0.01032935934499098 thoy:0.00969789523916959 he:0.009520428476436296 them:0.008138316577489965 it:0.007499678451440453 :0.45207912541376255 +of:0.11045251321570167 in:0.07856012006097943 the:0.07115352452375671 and:0.05276093466702163 to:0.05157965401446174 a:0.029942047343876173 be:0.02394633581097772 In:0.023170162314741026 as:0.02188211533425545 or:0.021430889745444767 his:0.02135528608857692 for:0.0208597960872907 on:0.020447889596352284 was:0.019948738220852007 is:0.016215561721572035 that:0.013454650973886843 their:0.011758932740013935 are:0.011379795737477034 :0.0108778090987204 :0.3678232427040415 +and:0.08218579817562771 was:0.0404881991114401 held:0.03863105439311026 arrived:0.037533621363582216 sold:0.025838694619274953 Dated:0.022700947593987875 be:0.02214453060437046 Beginning:0.019754162250809584 2:0.019284215176733423 is:0.018718942280525477 morning:0.016889992980654626 closing:0.016886755608735923 day:0.01646953479634906 made:0.016284242120189224 arrive:0.015584353315150182 beginning:0.014795368285613565 1:0.01392046401822008 not:0.013696037175556348 evening:0.013467867346929818 :0.5337252187831392 +and:0.05711485214181518 order:0.049447066906991924 able:0.047089837805388 right:0.04476569757444315 enough:0.03898644283514736 ready:0.035547215967294245 is:0.034278628073915324 made:0.03211747865235431 began:0.0316211984380294 him:0.030069864144286744 as:0.028970491512461043 time:0.028722132473688024 necessary:0.028212397402020622 not:0.0236016561619772 power:0.02227023867104862 them:0.02103691952772709 desire:0.019162519557788527 was:0.018424144391030853 way:0.016965935300120732 :0.39059528246247166 +and:0.24694635210471305 was:0.09087497049048471 is:0.06222529258430868 be:0.060306577574868146 which:0.0559901657955198 that:0.044679049609422115 been:0.03617641520460506 he:0.028253904537126926 are:0.027693417788769045 have:0.026888275721392546 not:0.023363846100707037 has:0.02208073984912787 were:0.02024201781770512 most:0.02021700745186597 who:0.018780621996904355 they:0.0177091125953209 an:0.017594622505975075 had:0.017187813697780444 as:0.015944144108769914 :0.1458456524646332 +the:0.11382878208774423 of:0.10050221138592406 and:0.0473771618430296 to:0.040171518146061784 by:0.029552194552342932 a:0.021660751696196582 Mrs.:0.0145857737226699 was:0.014042594210396256 be-:0.013343333566876637 :0.013116458714100174 in:0.011967007796704003 at:0.011003594906323785 that:0.010140158480361082 The:0.009249287162757188 Miss:0.008621871772315532 .:0.008305379581856828 on:0.008215573146101962 for:0.007881254022150511 be:0.00782893601810779 :0.5076061571879791 +the:0.164622510216757 of:0.07124655442027641 The:0.06889686753552093 Mr.:0.06325252336407099 and:0.044366166073833896 that:0.04264168951999022 a:0.026935017441304315 Mrs.:0.021417054292642027 his:0.015373932368963752 in:0.015166387820743404 this:0.013228806556018961 :0.013136427543557318 tho:0.012055764911697249 .:0.010810741278177282 which:0.010410363554372798 Dr.:0.009964965976760979 to:0.00981126413214408 at:0.009089697865957478 when:0.008784665899295399 :0.3677885992279155 +of:0.18800376879052066 in:0.1775350028652765 to:0.10589992354871915 such:0.052692100453987104 as:0.0525357036487727 at:0.052452470103603634 for:0.03836136386242274 In:0.03639207363461924 with:0.03011123789104009 by:0.02981817953684376 and:0.028184124802848542 from:0.02478656783129708 that:0.022064941345537027 on:0.015818351915994937 into:0.015625909365730682 is:0.010936749239584381 or:0.00845553857012609 be:0.007925803353410435 make:0.007440250764612366 :0.09395993847505289 +the:0.755754675656303 The:0.07220070073884609 tho:0.0399040009102317 their:0.017951564237818577 tbe:0.01599455767314076 a:0.01537151842191875 and:0.010076761625903303 his:0.009721570300861036 our:0.008479651776289239 of:0.008467954460697414 this:0.006133729235339474 any:0.005970546115756817 its:0.00480285205284771 no:0.0034866827104048244 some:0.0031350666857138205 such:0.0028796769089376767 your:0.0027385157461748367 to:0.0027063980168346344 Tho:0.002626012119106996 :0.010597564606873335 +to:0.12022893700269083 and:0.09020394424291768 the:0.08587503820055309 of:0.06450042443224316 in:0.0310058468700829 a:0.017742048521183405 :0.015548046036689871 not:0.01491307651316237 that:0.014112408707955496 for:0.013734482372212283 I:0.013065769926808477 will:0.012848502316304782 at:0.012837991177321897 In:0.012628718855091186 by:0.012491091048660757 be:0.011425930130217754 is:0.0113962101007567 he:0.011342727513475473 or:0.01112522537451577 :0.4219735806571561 +day:0.03770732061125846 hundred:0.010716405517133798 city:0.00931645734731972 gold:0.008006282369437118 1:0.007735364547762766 up:0.006457643285828323 night:0.005575289212044171 morning:0.0054358480497670595 men:0.005362008021053949 house:0.005349960893804485 north:0.005025420170786955 ,:0.004820719974398402 .:0.004787670554021572 o'clock:0.004672314737403476 Monday:0.004565894190254152 wife:0.004552211103035814 home:0.004524174686876548 in:0.004420837192258872 county:0.0038041640270884275 :0.8561640135084659 +be:0.3130345486854048 been:0.1437627071432368 was:0.10472728291306875 are:0.0913086915656603 were:0.07078340949778832 is:0.06156814027336434 being:0.03523223449273686 and:0.028743743358934124 so:0.02620797783186069 bo:0.018585644061637076 not:0.01386743522203222 have:0.010074039369647765 Is:0.009817144737321567 well:0.008762119423607393 more:0.007019095879054951 fully:0.006345724516006473 am:0.0057133031401644645 had:0.005537803095134739 he:0.005404541320099372 :0.03250441347323903 +of:0.10919298526950846 the:0.1054610514851135 to:0.05273377701316058 in:0.049188686800715836 a:0.04881404225725048 and:0.043811274757942505 for:0.022970766264514872 on:0.02044302972734333 that:0.018959896303824136 at:0.017003529266156683 :0.015528189901278577 from:0.013291218527921074 by:0.01293313165104351 In:0.012325585083714487 or:0.010503339033325185 was:0.00964467069102077 with:0.0094560016205346 as:0.00935899869849643 which:0.009223809141526177 :0.4081560165056088 +he:0.18760779222213117 I:0.17587776616545156 they:0.12567279065517095 we:0.06247459224307074 she:0.044441257819870114 who:0.0394408529375155 you:0.038036548608863005 it:0.03764633713031662 that:0.03444758934181846 which:0.027542067636027557 and:0.02371043424496666 one:0.021213543202435767 nothing:0.020863397085208846 1:0.018169021884167594 man:0.01601814260907431 ho:0.013841697588036377 He:0.013533936469141588 never:0.01135287628986273 It:0.008824485511186487 :0.07828487035568393 +the:0.2085314740684717 this:0.16135818275463024 a:0.09385292844440975 The:0.07678525501789818 This:0.07530907539515773 that:0.030103671188111056 Another:0.01942699419063978 each:0.017828971382259313 whole:0.016133206482521652 one:0.016039448453098213 said:0.015887835138719195 any:0.01571330277677107 first:0.015008539498072985 tho:0.014036502798728803 A:0.013254358226082934 new:0.010862935741796342 interesting:0.010692925435546749 Republican:0.010279726551929852 every:0.009779733621771574 :0.1681149328333829 +of:0.06924990184761576 and:0.05943027547713553 for:0.04597038722887246 be:0.03474603205688557 to:0.03264143875614166 is:0.02924386115038143 was:0.02836818639659386 I:0.02056549378462119 in:0.018603364034503914 or:0.018189787816376268 -:0.018158181132010037 but:0.017489398007437176 with:0.01634067013395859 as:0.014486739865802912 know:0.014073073342862789 In:0.012836829093313963 that:0.010786194019302033 it:0.010546171536691027 :0.01045102660652306 :0.5168229877129709 +the:0.5369134845823369 The:0.10247471039366313 Vice:0.04619802151560184 of:0.038615908355600734 and:0.027537354783187914 tho:0.025060793877805083 a:0.024595378520087655 by:0.015744356336487138 tbe:0.014198264852547734 that:0.01277779681602577 said:0.008585131432654903 as:0.006636442039435524 to:0.006339806314764259 with:0.006205141612427268 :0.005520061416158239 this:0.005475057415309215 in:0.004829523645159383 for:0.004762526826703007 Tbe:0.004616827073643361 :0.10191341219040094 +the:0.4071374189315913 and:0.06449181461132415 of:0.02892866618288876 in:0.028670005984162618 The:0.02603617389223924 tho:0.024993820467459137 a:0.023579040051412606 to:0.01755553213771617 on:0.014626070241060114 by:0.013447843485786471 or:0.012794166593089693 tbe:0.012024509152999897 :0.010353482361299817 that:0.009291482237329618 In:0.007938246807075932 from:0.007526799010378873 other:0.007469196869028889 all:0.006409533041696086 for:0.00626887758057738 :0.26945732036088327 +the:0.07578663447154553 of:0.07298331843827949 at:0.05279855637128228 to:0.05015937658957218 and:0.047634286199028715 on:0.03721926442147233 in:0.02424821062880406 was:0.024193666733896186 a:0.022687968799119156 from:0.02043933696571085 :0.017681666603980222 be:0.01356195333199897 by:0.012542325117930969 is:0.012395588710369674 said:0.009282587622888661 1:0.009152927717913099 that:0.008743269576256036 were:0.008465969339950813 are:0.0079714486756377 :0.4710516436843631 +may:0.21912914728768654 will:0.20628139407440815 to:0.19313751392327824 would:0.09705117774758987 should:0.053225559888544244 shall:0.04998012245322501 can:0.04283741327764925 must:0.03752432572692034 could:0.02457968893457984 not:0.018433901881256747 might:0.015378709915681714 cannot:0.012936667176864484 and:0.0044158089017230775 it:0.004166149923839416 never:0.0015336775819931373 only:0.001517865275464078 also:0.0014225753718397622 hardly:0.0013844289485285212 probably:0.0013241486394516412 :0.012739723069475928 +the:0.22508686546039308 of:0.1397696839691576 and:0.046077217410675456 a:0.04107856161728489 to:0.04000334974064508 in:0.030975483869872734 by:0.020628848506425594 :0.016754768015458922 The:0.015855413439953815 as:0.014424671550237116 that:0.013810689263431552 for:0.012667965984277224 on:0.01229604704750452 from:0.011905650311557391 tho:0.011542405859907887 with:0.00924412564706494 In:0.008656694841231797 or:0.007542909223266745 at:0.005980071509153657 :0.3146985767325 +the:0.15981748494273867 and:0.08529430470069889 of:0.07160133856815863 a:0.04143793307067762 to:0.04065807306637051 be:0.03452436201914488 in:0.031044328390235413 was:0.030088344709402293 his:0.024957479344476837 their:0.017184475388275115 is:0.016660970775213012 for:0.015885718641089796 been:0.015457517078745105 as:0.013152070927123671 were:0.012140099516882412 are:0.01180870153155982 by:0.01119423074310509 he:0.011091579231084435 an:0.010418188606300722 :0.344582798748717 +of:0.1280990871142692 is:0.11660657108911543 was:0.0957041871977693 in:0.06844812512513018 with:0.06807837572000329 and:0.060812163850519706 to:0.05960758823398953 for:0.043519507107171264 as:0.04185255890738854 be:0.03632391651749366 by:0.03011100659491577 have:0.0241353674657678 had:0.02408387573220839 that:0.022515748478240775 been:0.016879432705642516 In:0.016834828953764258 made:0.016227822913443164 has:0.016219191698988125 Is:0.015103731557682238 :0.09783691303649689 +of:0.28767355066866834 to:0.08775711267569858 in:0.08678131196995101 and:0.05160598694501188 on:0.04646139928102899 by:0.04519522654900943 for:0.044547789071328545 with:0.03396756772609607 that:0.033699232901107726 from:0.03075346596941143 at:0.027039283056790858 In:0.021061449543044047 as:0.017514234937992545 all:0.012543839382496166 upon:0.011844431150487573 is:0.00998972746569266 was:0.008814315973987914 into:0.008557199930727406 through:0.007781895704231326 :0.1254109790972375 +that:0.3049087255014917 and:0.07806860748484838 as:0.06616239546692676 which:0.06055319401352315 if:0.05672569841432216 but:0.04459625376196091 where:0.029024549256688764 what:0.026006571916316834 when:0.023830050573067564 because:0.017216060718765813 If:0.0149424947500639 than:0.013202460303232933 or:0.01149210600864712 think:0.010109950259266864 until:0.008779356670120805 whether:0.008632631732384832 time:0.008216827008013745 before:0.008079779694387496 thought:0.006960515104152943 :0.20149177136181734 +the:0.4071374189315913 and:0.06449181461132415 of:0.02892866618288876 in:0.028670005984162618 The:0.02603617389223924 tho:0.024993820467459137 a:0.023579040051412606 to:0.01755553213771617 on:0.014626070241060114 by:0.013447843485786471 or:0.012794166593089693 tbe:0.012024509152999897 :0.010353482361299817 that:0.009291482237329618 In:0.007938246807075932 from:0.007526799010378873 other:0.007469196869028889 all:0.006409533041696086 for:0.00626887758057738 :0.26945732036088327 +the:0.16287760685838365 of:0.0883592780729449 to:0.0618987346693935 and:0.05423685233212741 in:0.030811253892523358 for:0.03057359609188714 be:0.025098115820027647 was:0.01826945122296575 is:0.01662970283289366 a:0.016448402520667066 or:0.01633619095301082 his:0.015510346299682681 their:0.015084175217362073 are:0.014656254371894712 been:0.013019491851438341 were:0.01267572744006931 that:0.012270302451397866 on:0.01131798809455223 :0.011150587255169986 :0.37177594175160794 +and:0.14552672195574162 so:0.06496359587318441 fact:0.04198852806736786 said:0.033701618560480394 him:0.032434115880692296 say:0.03195538349887805 know:0.03188283579748818 me:0.03074681574459109 but:0.02658746896399616 stated:0.02615720427776993 is:0.023801860973638917 believe:0.018339581553100465 says:0.016351931065510965 was:0.015992269398404788 told:0.015608137892875854 her:0.015069943340674711 order:0.014822381703059065 saying:0.0143462019034254 see:0.013933502089313658 :0.3847899014598062 +the:0.5756860871665714 The:0.06801135413078371 of:0.04092397369683699 tho:0.035444115875385054 at:0.03481508508379857 and:0.025937667171057204 on:0.015952180724057796 At:0.013879315314216418 a:0.013464985894137837 tbe:0.012550229355127389 that:0.011017072732258753 to:0.010531285248749757 which:0.008662402385966873 from:0.007870422322532067 it:0.007730643150942947 this:0.007026634224475576 his:0.006535012647796385 here:0.00591952194819972 he:0.005447373400654667 :0.09159463752645076 +of:0.2489109735748581 about:0.1687157012784945 than:0.10155190947135571 at:0.0941759632642485 or:0.08870530927981012 for:0.05114244066504656 and:0.048108188479110026 to:0.03889005150480106 nearly:0.016756517429459505 over:0.014839109948670175 exceed:0.014450753928583863 About:0.014211852960042883 with:0.012106135836661015 by:0.011071104964065485 in:0.010928584055480127 as:0.009681597157058864 from:0.00946241838003788 the:0.009363654629842755 least:0.00932785023171347 :0.026599882960659377 +the:0.47915129116946276 a:0.1956260180369802 of:0.04647286518517258 in:0.03212046588204778 and:0.025173914853795318 The:0.02136911400617764 tho:0.019874727713457364 this:0.019103896313748606 an:0.009018369195120463 for:0.00847987370322697 In:0.008460809066508389 tbe:0.00802226147326028 very:0.007755942036305425 or:0.00770376870006514 to:0.0075382873824646505 that:0.007196975161967192 any:0.005868014163275817 with:0.0054759267332532184 first:0.004471501357943026 :0.08011597786576716 +of:0.09129790931378902 the:0.07369883040827747 and:0.047842263382354346 in:0.04189055351593407 to:0.04045875475680249 a:0.03542341257202578 be:0.02020462051672066 for:0.01979292654746225 was:0.01760256398103379 at:0.017380150555488715 is:0.014984483003968216 with:0.014047653760730413 by:0.01374644383819499 :0.012670486581795598 In:0.01200961464556976 or:0.011563835749786333 from:0.011391516893522809 are:0.011273104484969465 that:0.010755276030689069 :0.4809655994608848 +the:0.303878299543484 a:0.08697093707103591 from:0.05868306329113508 his:0.05340462841711201 my:0.040132879097555516 of:0.03569909480677179 in:0.03517673482213518 their:0.03412576349180061 your:0.024296379742225593 tho:0.02189303009744973 at:0.020787759754921076 our:0.020183022911959694 her:0.01918276800854153 The:0.016750610761643317 sent:0.012428474294071342 special:0.010773425645825377 this:0.010748815755159511 for:0.01068938988422309 and:0.010523418023998957 :0.17267150457895064 +of:0.26300996590330455 in:0.15261730329355064 on:0.074734195802554 to:0.06810867266133194 from:0.052211511589374024 In:0.04437889253286603 for:0.041586233079144434 and:0.03805298093025207 that:0.035437460717981956 with:0.031536777436986164 at:0.02609276264058296 by:0.021187950922927766 as:0.017818664005336004 into:0.01381484008730663 through:0.010656264704897507 over:0.010377087763485398 upon:0.010238248706122973 under:0.00909962602941499 about:0.007894156394487106 :0.07014640479809284 +the:0.7234387558445852 The:0.04865436933510221 tho:0.040779637870542104 tbe:0.0191059233773772 and:0.011264521688797536 a:0.011122243608650908 in:0.011027952060432304 his:0.009849017726974956 by:0.008509631532101972 no:0.008080912727422939 any:0.007219238418953271 of:0.006593973535364913 or:0.005654423568228671 an:0.005180708386182946 their:0.005108557828763479 other:0.004920595676062395 general:0.004244486987944222 all:0.004028874521145199 take:0.003234508029896929 :0.06098166727547071 +.:0.025169065719097695 C.:0.01411721067397531 B.:0.013925656048431361 and:0.013055053231111932 :0.01288090839086001 A.:0.01268555072815781 M.:0.011666043098923233 I:0.010621657635366953 W.:0.008257136657747443 Coal:0.007879304181898045 White:0.007810903842151771 Smith:0.007739449325845971 E.:0.00745308845905154 1:0.0069266433737559105 S.:0.006572938403275372 Loan:0.00640027806903387 J.:0.006313796906164945 H.:0.006205388811294406 Milwaukee:0.0061670946254225294 :0.8071528318184339 +of:0.20455002875286 the:0.05886411765425604 and:0.052739560264771015 for:0.03293508950092376 that:0.031004761963025044 with:0.027490295603871236 to:0.02732898655344973 in:0.026404846998079066 a:0.021659125668351053 as:0.020917632232567814 it:0.016902917497644714 much:0.013673566945222744 from:0.01315654678151497 her:0.01139506307276309 :0.011075903573919322 all:0.009676923382804566 do:0.009254043447406737 or:0.008998062852528415 on:0.008624869694485568 :0.39234765755955514 +of:0.13084814232797154 in:0.0740836656586379 as:0.0625527229231004 with:0.059577596335708534 to:0.058433603729754965 is:0.05551580107464621 and:0.04946529489577619 was:0.04264000753602388 for:0.04009673021586375 by:0.037684080471064085 be:0.023941707008899252 on:0.02316059851167503 at:0.022644769441950232 such:0.019950936521181326 that:0.017856095877642635 like:0.017386655618315594 In:0.016902219705578994 from:0.016046571451088905 not:0.01205910100844263 :0.21815369968667797 +and:0.23997782393060674 that:0.05705354054517794 but:0.04947656291619242 time:0.04301877184083679 was:0.03539438410156474 is:0.030174033736020907 be:0.01758733748470516 are:0.01704106743104962 it:0.016696714929533753 or:0.01516893333338309 were:0.013915386588586695 But:0.013007778138809496 which:0.012851155453041446 all:0.011528053759003992 them:0.01005094210188179 ago,:0.009982114187807376 which,:0.00978638506692786 as:0.009297215089183625 and,:0.009019411563014005 :0.37797238780267256 +of:0.09129790931378902 the:0.07369883040827747 and:0.047842263382354346 in:0.04189055351593407 to:0.04045875475680249 a:0.03542341257202578 be:0.02020462051672066 for:0.01979292654746225 was:0.01760256398103379 at:0.017380150555488715 is:0.014984483003968216 with:0.014047653760730413 by:0.01374644383819499 :0.012670486581795598 In:0.01200961464556976 or:0.011563835749786333 from:0.011391516893522809 are:0.011273104484969465 that:0.010755276030689069 :0.4809655994608848 +of:0.11562115433578089 in:0.0986783523311644 to:0.08585099602007784 for:0.0554785661077921 and:0.05327318538791428 with:0.052601472958759915 as:0.04903013678271561 on:0.04590275064161401 was:0.04343670924114564 by:0.037306441480938216 is:0.035259532244781316 that:0.03071654145170502 In:0.025616655478547152 such:0.020847414966614443 not:0.019852120712741256 at:0.018932366044809704 from:0.01849749782823228 made:0.01493897134075844 be:0.013813384227110216 :0.16334575041679725 +of:0.09129790931378902 the:0.07369883040827747 and:0.047842263382354346 in:0.04189055351593407 to:0.04045875475680249 a:0.03542341257202578 be:0.02020462051672066 for:0.01979292654746225 was:0.01760256398103379 at:0.017380150555488715 is:0.014984483003968216 with:0.014047653760730413 by:0.01374644383819499 :0.012670486581795598 In:0.01200961464556976 or:0.011563835749786333 from:0.011391516893522809 are:0.011273104484969465 that:0.010755276030689069 :0.4809655994608848 +the:0.10905065993808531 a:0.07986739564789663 of:0.07671532766862343 and:0.04439130028249379 to:0.03920531809062766 was:0.026657036036636623 in:0.024591900358078463 for:0.02241383698539926 be:0.018209333256214568 is:0.01636671082185939 that:0.01609713607950588 with:0.015943864704912894 more:0.01582218145868943 on:0.014985942408907025 will:0.01488352029570888 he:0.012510083186344181 his:0.011621930580754484 I:0.011532095046903579 which:0.011393526942882596 :0.4167409002094759 +the:0.30392126886219145 a:0.23486249449514804 his:0.050309810240958985 such:0.0364168089933461 this:0.028483237463732592 their:0.02729323453856548 large:0.025909958728786386 to:0.024550809534783172 our:0.02100820780254904 small:0.020126492556161713 tho:0.020049760616081432 same:0.01986016782290313 The:0.018056413714140677 of:0.017166912094575812 an:0.015350384655479185 new:0.01458838379143121 great:0.014427122927545971 my:0.014360605407514175 its:0.011613155425447975 :0.08064477032865748 +a:0.08761639102006066 fel-:0.08396138739466939 as:0.06776157897834609 is:0.05950672940363292 and:0.04767781700592595 the:0.046151748041170164 of:0.04433394769310009 be:0.04336105531440215 fol-:0.03877716734749776 to:0.031408346898446786 was:0.027860182969473304 very:0.02252098075418246 are:0.0215397444207379 one:0.012780099101022017 too:0.011969554669417421 Is:0.011586061990666382 or:0.011579025339174437 only:0.011542970224374253 so:0.010970562570202158 :0.3060946488634977 +and:0.08995317707915026 to:0.06844710404109794 of:0.04605142056172993 the:0.04074574508561307 which:0.02479116931334353 that:0.023764822140213245 re-:0.020841117231308055 in:0.020803825395358622 for:0.020278423301550053 :0.018417753428486977 not:0.016860793136637672 con-:0.016444405871234195 is:0.014386481772210856 or:0.014080680914153714 be-:0.01352268143271276 I:0.01317002660943805 was:0.011429878269381662 dis-:0.011196807025842847 he:0.01113106290024311 :0.5026826244902934 +one:0.0665401393206399 out:0.05865323787747235 some:0.02770200076188548 part:0.02705627357476407 time:0.026113120455694024 any:0.025587816965887085 duty:0.02504892150309726 each:0.0241549332808926 all:0.020020427576456768 and:0.018662171550536195 that:0.018333879056541227 amount:0.01722415837936522 tion:0.01555512828287874 value:0.015082190015985783 people:0.013540893269082758 end:0.013076517891382023 members:0.01277415162418021 purpose:0.01263959539460911 use:0.012599088410622543 :0.5486353548080266 +of:0.22426841553979243 in:0.17203293047309107 to:0.09020448847904987 on:0.05914039219987902 from:0.054996328169106615 In:0.04569283531911779 for:0.04256307584756426 that:0.03694987822024926 and:0.03456413615747229 at:0.032788401009484026 by:0.03142785100603894 with:0.029203589294454112 under:0.016414106153439523 into:0.016357737299636865 when:0.011338278113671484 upon:0.011172521194596113 within:0.010897226631124895 through:0.009674062339705277 as:0.009575037860103922 :0.05973870869242223 +of:0.297672720606738 in:0.1258760757938002 the:0.09642313898723283 his:0.05027973435129665 their:0.042170116465681105 to:0.03943435510839983 with:0.036501318958860586 an:0.03383867981749723 and:0.03208517428866314 In:0.02444273372324481 for:0.018722837389507866 my:0.014860145429720405 her:0.01375754579065341 its:0.012948729539159695 by:0.012790902858703889 a:0.011444481354435753 our:0.010549795440102922 or:0.009168571402461032 on:0.008277787444354577 :0.10775515524948605 +and:0.03868242960999506 as:0.031124813427855922 went:0.02352509775927722 him:0.02196555539050794 them:0.018760608639018784 up:0.017985449426794205 is:0.017894175620344187 go:0.017174904667157563 able:0.016756848979943888 going:0.014481672239490295 it:0.014128375989346808 was:0.013277058274565138 time:0.013249953793837373 not:0.012469887553778763 began:0.012465717758716884 way:0.012105610030480113 back:0.012090864562211581 right:0.011941707822828511 amounted:0.011564315359310868 :0.667354953094539 +feet:0.0719208472326295 poles:0.05759396229176634 up:0.04010587224329879 chains:0.0385088170079141 entitled:0.029123404981740347 went:0.027388526271997813 came:0.025857650765910022 down:0.025633262313841977 him:0.025574415868859987 as:0.024916209858287616 and:0.023917753661251574 subject:0.02185045005331621 brought:0.02171367122116056 them:0.021644069985480026 it:0.02099405133651225 rods:0.019030517253069822 back:0.018922583019034468 go:0.01891708435510451 sent:0.018892511875840953 :0.44649433840298314 +a:0.16936965898314932 of:0.14219359477482607 and:0.09082775189074858 the:0.0906930579113299 in:0.031187415618120554 that:0.02501806944478451 other:0.020572866798798498 more:0.016085965635748805 this:0.016072865320419592 his:0.015470070020174309 every:0.015186912315496673 one:0.015065263272727447 with:0.013078891924074193 very:0.012114166004782668 an:0.01199929107757408 most:0.011307808450501044 for:0.01120231043680113 our:0.01119475694776231 or:0.01033581163631587 :0.2700234715358644 +J.:0.08489355591036458 W.:0.08079949097998357 John:0.07785118679524555 .:0.053692127874250296 C.:0.04719423919901614 Mrs.:0.045342760666472845 A.:0.0451933261854769 H.:0.0329972557890312 George:0.029391866419594095 William:0.027040773177233243 E.:0.026098336013628733 James:0.024413176300560252 to:0.024077256916948522 of:0.023539018450533994 and:0.02153230483440071 F.:0.02127716773591463 R.:0.020808148398651145 M.:0.020030616526240917 Charles:0.018954084422052316 :0.27387330740440036 +the:0.15969095723346965 and:0.07973034196323944 of:0.07365882218356877 a:0.06821005366972813 to:0.03892094608285224 in:0.0341266663537387 that:0.03187954302300864 The:0.020408758804037988 for:0.019335828616893876 as:0.018616509699360954 with:0.015512689996765151 by:0.015494821753730759 his:0.01406852788366603 or:0.013719469335387188 any:0.013313399530414428 an:0.012714391165031102 which:0.012324906352433142 on:0.011520107024684291 :0.011184448000734652 :0.33456881132725486 +de-:0.09306308226733168 the:0.08650433871430911 and:0.04014798838803134 of:0.02976135130989499 or:0.026889167393402476 in:0.024076212942956646 to:0.021862180341672796 :0.020640610564120827 this:0.019306665729384196 their:0.01802267064385557 de¬:0.01604127756891944 those:0.012034134909674593 com¬:0.011555898959380716 com-:0.010704708049275936 :0.010340400661746128 de­:0.010189139418026993 for:0.01004589153619949 his:0.009538900238947474 its:0.009225070420672938 :0.5190503099421966 +a:0.33756464758789057 of:0.1378152725095846 the:0.07616606415886061 in:0.046762596279231995 and:0.04561616877036115 with:0.03300214013893368 for:0.02476551954782337 to:0.02275993427796098 A:0.022479503486422782 as:0.02127175168095025 very:0.018268713973171515 some:0.015972435097056675 is:0.01460233400199506 make:0.014040932193930147 are:0.013646313900562751 their:0.012120614868200954 be:0.011649708776083774 by:0.01087372595241181 or:0.010652449067082247 :0.10896917373148503 +the:0.13126958206883932 and:0.127088104655301 to:0.12355415805951521 of:0.07759695690551162 by:0.06159788552723821 in:0.04602215252073049 for:0.043616603840565676 that:0.0299885378166702 this:0.022253526645839662 In:0.019732742774491295 with:0.018702569288412598 is:0.01462362606697578 so:0.013961602184665384 as:0.013037469566580603 not:0.012130683620499254 be:0.010320872782949823 are:0.009681283962376525 have:0.009509510654532033 will:0.009404083719797122 :0.2049080473385082 +they:0.22921484825554306 we:0.0658950149576278 and:0.06421458460255308 who:0.06029127653099968 They:0.050220737862635416 which:0.034895520771156804 men:0.02994074813004246 it:0.027889685632190957 there:0.026724393247495343 that:0.022637926717177233 We:0.019697050803564806 you:0.014468947566401385 I:0.013491104890911985 them:0.012719096377557186 people:0.010905588713467878 There:0.009654889911112652 It:0.008789543584269028 he:0.00862707570901535 but:0.008589418769739012 :0.2801325469665389 +of:0.09129790931378902 the:0.07369883040827747 and:0.047842263382354346 in:0.04189055351593407 to:0.04045875475680249 a:0.03542341257202578 be:0.02020462051672066 for:0.01979292654746225 was:0.01760256398103379 at:0.017380150555488715 is:0.014984483003968216 with:0.014047653760730413 by:0.01374644383819499 :0.012670486581795598 In:0.01200961464556976 or:0.011563835749786333 from:0.011391516893522809 are:0.011273104484969465 that:0.010755276030689069 :0.4809655994608848 +and:0.062447772395410175 able:0.05121848383042665 is:0.04229824343222284 him:0.03981818145391423 not:0.039527417141146444 was:0.03359226785219757 order:0.031432305763869864 willing:0.030859130254248357 right:0.0296909479582323 them:0.028133287968080886 have:0.02789932677265469 unable:0.026556063424297078 refused:0.025786597728720852 as:0.024730309567994487 enough:0.024709986224771746 began:0.024163611099176998 had:0.02307927666049905 me:0.022763737546085523 going:0.021175770985262136 :0.38911728194078815 +to:0.5988882019455808 the:0.08336222364045844 a:0.05489101911789015 and:0.034755324406986955 not:0.02838492218972957 will:0.021484857715862105 this:0.016115344669481828 of:0.012819700461468748 any:0.012706053647967891 in:0.012102998244176053 who:0.011336738613513479 or:0.009702617017181581 no:0.009700244152243173 his:0.009490279935201783 would:0.00937434088503757 shall:0.007358537002874904 that:0.006845241026283335 may:0.006681077448921176 can:0.006201046934872037 :0.04679923094426838 +I:0.2270757494202284 we:0.12198451299124506 they:0.12132007300932493 We:0.08226272443949183 who:0.052078621192277526 to:0.04674868558565357 and:0.039139007277529315 you:0.03728717086809822 They:0.028424842485011023 1:0.02184088342547565 would:0.016222940085224225 "I:0.015062482890720322 will:0.012269401432579468 could:0.01087993986707566 but:0.010327133678487822 can:0.010152250372158306 people:0.009656710944150326 he:0.009398595408284695 not:0.009244240665470645 :0.11762403396151297 +of:0.10036425554061128 and:0.09867255827094257 in:0.04887477001133228 to:0.04309676529803197 fact:0.03312124920228808 said:0.028016465130273754 on:0.025147031828386315 all:0.020897671259005178 is:0.018989333611116044 so:0.018899457882617265 from:0.018463519784011995 for:0.017651195592365977 at:0.016946018612698295 know:0.015554635744109193 believe:0.015397314140675087 say:0.014489633297242495 with:0.013970217188878864 by:0.012605124887586036 In:0.011949884106238937 :0.4258928986115884 +to:0.2958365818790029 will:0.1669530433166079 may:0.08966770892902569 would:0.08255923475821095 not:0.05102582038693815 should:0.047309051856108245 can:0.041342534196418125 shall:0.04103172899015634 must:0.035332040312125446 could:0.027529431141301724 might:0.01641569468411585 cannot:0.016162151172201017 it:0.011604309026240567 and:0.009156911590064352 that:0.006814202115767136 never:0.004767514463269453 only:0.004492013083293235 also:0.003669734063678361 soon:0.0036214329127703475 :0.04370886112270424 +and:0.1369036012582532 not:0.09421424192184125 be:0.09251112192322014 to:0.07893964644222179 was:0.06952436874695912 is:0.06321223503973487 a:0.04824945387449626 been:0.04312895647319838 are:0.03624640700114786 the:0.03427094183225697 of:0.0304787286990816 in:0.024979443880749103 were:0.023892126225989678 with:0.01514945843340602 or:0.014119803649087626 they:0.014049534109360573 have:0.0139513246958319 an:0.013450789359006897 that:0.013285682095563855 :0.13844213433859287 +the:0.3366461383310119 a:0.306875434703426 of:0.047437792551426494 his:0.04103317233527364 other:0.032102441009346026 their:0.027433186145190105 our:0.022059208255841973 tho:0.01797792398219577 and:0.016885799858555667 any:0.013149908087550146 this:0.012924720685032264 The:0.01231919426343893 its:0.011147077325757813 new:0.009813399577605908 great:0.00908297679745608 or:0.009047508952332002 large:0.008700399213981852 little:0.008391676761415891 old:0.007737014586027994 :0.048235026577133515 +number:0.18274308463139988 board:0.04204654478493413 line:0.03871959709312807 thousands:0.02934434002602608 amount:0.025947076166828637 city:0.025647803620095916 county:0.023150439857469843 hundreds:0.02259391260968695 kind:0.021858736575670848 class:0.020889531882124945 out:0.019995047133997513 system:0.019337221769732776 point:0.018304382724163855 cost:0.018059500924028523 state:0.016008356743190493 full:0.015678632880977417 couple:0.015296886084378817 power:0.015293413720634124 matter:0.015119290549752381 :0.41296620022177877 +the:0.31059137639819623 a:0.28185786235501953 no:0.05607327998780184 and:0.038310416523303824 very:0.0273789184818889 of:0.023255733461758243 to:0.022061459731757053 The:0.021142006092038892 any:0.018350786792143543 his:0.017346993739131296 its:0.015726481842206236 their:0.014694782649092214 tho:0.014616311976434428 this:0.014610541738134275 that:0.009894348385700706 not:0.00968337279872756 some:0.009454025098492708 other:0.009376952016952154 or:0.009254141731111888 :0.07532020820010848 +is:0.16445689164741586 was:0.12184548861463623 are:0.11156675309380945 be:0.09275162472493144 and:0.07350383232188819 not:0.04834524840432943 were:0.04684477208090991 been:0.03738205643565324 Is:0.02403765781993756 of:0.019884667418756902 for:0.017685860631536567 have:0.017021619643754607 has:0.015765848898657446 it:0.013780978763184714 with:0.013704876751686629 or:0.013380030377390046 had:0.012891748544667939 to:0.012777371254552266 that:0.01139847891851908 :0.1299741936537825 +to:0.1330226578655475 and:0.12091461796180668 was:0.11594999389898379 be:0.08529422058216851 been:0.05235595257321414 were:0.050335484617215216 not:0.04399821254772073 are:0.03354992105075228 I:0.028263776267882682 is:0.026123731715106062 will:0.025822054545924726 then:0.023890523601648186 would:0.019520785339821968 being:0.019470057102660265 had:0.0170434544604027 he:0.014226974870895437 now:0.013786089846484476 have:0.012912521039580706 they:0.01253319116541789 :0.14998577894676604 +the:0.5423064790864605 a:0.13335487250678113 tho:0.04610648747126546 The:0.021891058503969486 tbe:0.020349886871831743 said:0.01627104736626719 and:0.013384315069401357 one:0.010088394328644052 any:0.009419219045124253 every:0.008816663746286672 this:0.00878848520038311 first:0.008253097842191559 of:0.007910176972087938 A:0.007138212312580724 his:0.006657308967967071 other:0.006441227368544762 their:0.0057123778898604555 by:0.005588833159643896 old:0.005517208152351073 :0.11500464813835758 +the:0.5240343963532096 a:0.19223503157335445 The:0.03698658982007871 tho:0.028284866379614 and:0.021674518496731583 of:0.01633858850567342 tbe:0.011579789967047904 great:0.01023129845067471 by:0.009854224165056456 in:0.009377122245822746 any:0.009163064515577449 his:0.009102696385825759 A:0.007953988496246052 for:0.00563274244234907 no:0.004786661945685153 with:0.004581525609246549 one:0.0044936002219725085 that:0.0042663986404450965 large:0.003488952311039487 :0.08493394347434922 +the:0.09639294061178147 is:0.09324377860316845 was:0.08171047256662818 and:0.06955278775180036 a:0.06045596818520873 his:0.054936395879475214 of:0.048006475052944635 be:0.04775224314301158 are:0.04375167809483933 or:0.02631264623209472 were:0.023774112779984077 been:0.022961295017342696 their:0.021256254785766603 her:0.020810009884058196 with:0.020097501429445115 at:0.01866779661912196 for:0.013136035134025581 have:0.013076658236016982 my:0.012829906917752966 :0.21027504307553316 +it:0.11691934006836255 he:0.07628168899924648 It:0.06501649407062117 and:0.06001752883331119 I:0.058428470931476566 they:0.05267690541724827 you:0.04775419294184157 which:0.04555685013205601 that:0.03459277026699731 we:0.029554726123578054 He:0.02515849655441738 This:0.019921521045235167 who:0.018587710607213804 she:0.017604046855628313 You:0.015125489536056521 We:0.01146892112645748 They:0.011332542165873302 there:0.01007326389359441 but:0.009960314514423889 :0.27296872591636057 +hundred:0.02334136986593815 up:0.005482494641173394 men:0.005366536521246011 Hundred:0.0047587970519216575 John:0.00441808156134956 William:0.004390720675819281 him:0.004016828614280843 ;:0.003997112205305733 due:0.003721199871732 in:0.0036582900032443304 time:0.003637206863828461 James:0.0035594902370151707 out:0.0034878448964120057 .:0.003467980723571515 1:0.0032804584819785204 day:0.0032444781513863933 ,:0.003058139385740603 :0.0030314555521939613 Robert:0.003005471634785646 :0.9060760430610768 +of:0.26148056668051844 and:0.0926768768199847 to:0.0847959560479846 in:0.06596395931835004 for:0.06330675735139007 that:0.05808602416653754 with:0.046791712922791134 by:0.04533489374011844 all:0.030555416851706794 from:0.026333774580993785 as:0.0222802029872048 on:0.01610991920996188 when:0.015045269566589475 at:0.015012984463992723 In:0.014251222595901664 which:0.013436706546314084 upon:0.013263511274408979 is:0.009087097448355988 under:0.009045890183778176 :0.09614125724311667 +munitions:0.04603316938076316 out:0.042764521160693916 number:0.037484120149958076 amount:0.03026803515887723 means:0.028525118723460495 years:0.02783220775196305 state:0.024530506426062464 kind:0.024481455484174106 system:0.02265379753412955 time:0.02160201628069492 Board:0.021299658402694314 sort:0.020455515183554623 plenty:0.01974780887913653 way:0.019424711317682135 kinds:0.01594452566724637 cause:0.01589641855049412 one:0.015207539809717043 course:0.015083835795211255 piece:0.01502380676873051 :0.5347412315747562 +of:0.25621002620474564 at:0.11513176553690976 to:0.10897858391643762 in:0.0971225505752508 that:0.046395392708966664 for:0.03950847818816217 by:0.03895053646041428 and:0.036112595911660335 In:0.028926176651922833 from:0.024899433849011478 with:0.021546753627642138 on:0.02076038064571015 is:0.017909756911874065 under:0.01635328326160385 during:0.014525823360142276 At:0.014329079627829498 was:0.014190249712293903 as:0.013642119584876301 all:0.009948904231842139 :0.06355810903270409 +.:0.0822934031348536 Mr.:0.07729401513133663 of:0.04635170498321503 the:0.04173474419684121 Mrs.:0.039083831256236094 and:0.032643875112053945 H.:0.028012384557650316 A.:0.026438944848683754 W.:0.025691757247368833 to:0.025013443538464207 E.:0.02346472808916085 M.:0.023384040762455705 J.:0.022490865249001454 C.:0.021206293382174276 B.:0.019309673940913076 Miss:0.016752353335821004 L.:0.016259949501774916 S.:0.01577842360521631 F.:0.015603179363388463 :0.4001923887633903 +he:0.15912391152265976 I:0.07707055833367342 it:0.06496686680161558 and:0.058839310631504826 who:0.05485612625751808 they:0.048535852026580034 be:0.03777084238142256 she:0.034237919415818344 He:0.032867174238982604 It:0.032566715580778706 which:0.030567441295760903 that:0.02448227089004918 we:0.016573168523830336 lie:0.013155372222563974 one:0.012437017912433996 They:0.011823798758584251 have:0.01173646591754397 had:0.01071778165836799 was:0.010520117488472784 :0.25615128814183874 +the:0.11919516938815296 of:0.07230453158552728 and:0.05781056740443249 a:0.043018564803886335 to:0.031305092790907506 in:0.020848713353460488 at:0.014270110001066288 .:0.012526810245749479 :0.012413283442322082 for:0.011719122709941797 by:0.010808400946589808 or:0.010404172990115616 The:0.01003576004804544 with:0.009811868184449042 tho:0.009295902015355835 was:0.008924239095331684 that:0.008672304223433876 is:0.0085591147338948 be:0.008335143826716943 :0.5187411282106204 +the:0.5911506079782038 and:0.07721492077351697 The:0.04844536277842029 tho:0.022165737908675376 a:0.020535108583807637 of:0.016546739794273197 as:0.014722712255593807 or:0.010503030712013693 tbe:0.008964098742706181 in:0.008202000671072397 thousand:0.006155440811734539 two:0.004647618045029537 are:0.004390670403053251 long:0.0041397423177334655 by:0.00398963078297341 for:0.003939271466957081 first:0.0035448048560780625 very:0.0029515852259736864 hundred:0.002684815625904532 :0.14410610026627899 +and:0.06174302123025829 away:0.045931750958463816 taken:0.03772274558378757 them:0.020626014805485066 miles:0.020014740300009957 come:0.019981186841682895 out:0.019507982983791597 came:0.018932367905894663 down:0.01845006130561681 up:0.01820649894182868 received:0.016355538616791395 it:0.016168637562171892 him:0.016057797509940054 removed:0.015770574687160126 annum:0.014621871694467579 feet:0.014281010247797082 made:0.013658150433829997 derived:0.012961254651437491 letter:0.012470613368147022 :0.585538180371438 +and:0.0597256397569634 of:0.04405621184530504 the:0.043489324560183465 to:0.034006863603500366 .:0.032922815025439395 :0.031120894656158204 lot:0.02095460739275887 No.:0.019422932026062774 at:0.017522891354832468 N.:0.013624966176978026 San:0.013262226228192965 deg.:0.013198096539523103 8.:0.011006878548694764 about:0.010064092773015119 May:0.009644007118323524 June:0.009612438225442749 W.:0.008966119566466835 March:0.008469673743681148 July:0.008450826533207386 :0.5894784943252704 +to:0.11815428618928227 and:0.0852146912507816 of:0.058817150574563985 the:0.05091970927846495 in:0.026621834774410824 :0.016621463305097346 not:0.016575787425455363 I:0.014445653711014275 by:0.013489864125342935 a:0.013489366047260485 he:0.01288543895410413 at:0.012744580352905713 is:0.012462468927005322 or:0.012191891717805782 In:0.011605641097873442 for:0.011533720742248682 who:0.011244031111310823 it:0.011208393094641137 was:0.010839935064315116 :0.47793409225611583 +up:0.04513197013602099 as:0.04192655870753443 came:0.04021260146561013 and:0.040182819723656914 back:0.03936311367410057 went:0.03664828389648485 returned:0.03515487859480293 it:0.02771287323950979 come:0.027699581886765787 him:0.02407486888617037 sent:0.022196554130415026 go:0.020737116719538633 her:0.01914542275568721 regard:0.018580604640961923 down:0.016917536509040713 given:0.016084606785014402 return:0.01524800592729427 them:0.014374541869191742 over:0.013928008870577943 :0.48368005158162136 +be:0.22913766915732503 was:0.10956376356598026 been:0.0848898238027029 and:0.07963409679734182 is:0.04854487442283474 were:0.040861023895043376 not:0.03202838645994786 are:0.02743867162531547 he:0.023146938652872505 it:0.02259398224536661 as:0.021648838625504426 or:0.021396855577588008 have:0.020866877814946318 being:0.015346596205793284 has:0.014856376464410124 who:0.012790751835141405 they:0.01167784213436568 the:0.011636737160691909 had:0.01123088923825917 :0.1597090043185691 +of:0.24445936295929127 the:0.14809167386825134 a:0.05482173332709667 to:0.04770000116475298 and:0.046051526562126514 for:0.03901678285068605 by:0.0370753505566622 in:0.02794365825007751 with:0.01979464571862959 that:0.017841356630756568 as:0.012601721186803463 or:0.011462180628348237 The:0.011159577974758183 from:0.010174448254282695 :0.00998681829419544 In:0.007813423437181267 some:0.007782182559924121 at:0.007679830796954116 on:0.007414394701420141 :0.23012933027780164 +and:0.09611791009421634 place:0.06796853296236978 point:0.062584824939161 spot:0.029813296910930664 to:0.025585980876919504 places:0.024349085854969907 cases:0.02043952814293513 in:0.016934447440067255 street,:0.016902451573971976 that:0.016230632705461847 from:0.015889396914823623 case:0.013919254087478369 on:0.013845702401192555 room,:0.012979226967731676 or:0.0126613635468942 house:0.012556763231684207 out:0.012453891657997007 room:0.012347307938639276 know:0.011252735638503037 :0.5041676661140526 +and:0.08118807606483287 able:0.05135503065675564 order:0.04459410390490098 him:0.04311296337974362 is:0.039889603390564625 necessary:0.03712364079511839 was:0.03568304878300502 enough:0.03048764162501214 them:0.028897425673437473 right:0.02798602527684861 have:0.026861061888344112 time:0.02616210652639356 had:0.025948858477961325 as:0.024906198478010438 not:0.024043669574591184 going:0.023514400604526888 unable:0.023275139329430716 power:0.021532442845747086 me:0.02002196469048992 :0.36241659803428544 +of:0.34286030588322686 in:0.1076808585676391 to:0.09467126335194079 that:0.052324601120032975 on:0.032720943830365744 by:0.029241579737850545 and:0.028106949758801153 with:0.026773370243831127 upon:0.026341411607526278 for:0.02488594297611413 all:0.024134816358272207 In:0.0191181687883964 from:0.01771292215192692 as:0.015632408704349097 which:0.01297954205958238 is:0.010467259163162546 but:0.008144212481734782 over:0.006723966190038581 into:0.00596914568698474 :0.11251033133822369 +of:0.28767355066866834 to:0.08775711267569858 in:0.08678131196995101 and:0.05160598694501188 on:0.04646139928102899 by:0.04519522654900943 for:0.044547789071328545 with:0.03396756772609607 that:0.033699232901107726 from:0.03075346596941143 at:0.027039283056790858 In:0.021061449543044047 as:0.017514234937992545 all:0.012543839382496166 upon:0.011844431150487573 is:0.00998972746569266 was:0.008814315973987914 into:0.008557199930727406 through:0.007781895704231326 :0.1254109790972375 +and:0.07523760064388232 made:0.06146242207249529 done:0.026836326860487293 that:0.02622448889789114 but:0.022496849997751197 or:0.022073296952027973 him:0.019225703715549762 it:0.01783742224958704 required:0.017731779654055133 ed:0.01638284072118864 owned:0.01585683560711734 used:0.014404953274104973 taken:0.013906173261785308 caused:0.013564683579552182 them:0.012662283883841262 only:0.012256337415789702 for:0.0120638863495166 shown:0.01200234469471508 followed:0.01183810530566659 :0.5749356648629952 +one:0.1028303141280697 part:0.05963429477052991 out:0.04766456937681193 some:0.031418679026461914 members:0.030764490253327767 side:0.029940657362655835 portion:0.022063658796890564 office:0.020457735219956013 member:0.019726706386316174 end:0.019666887540649894 tion:0.018667441728710307 parts:0.016814747270460957 people:0.014112771422418794 all:0.014072739582212475 any:0.013183573287639892 One:0.013083578354183906 that:0.013024335602903442 account:0.012482348155001894 many:0.012077825070275192 :0.48731264666452345 +the:0.2402667075626806 and:0.10808665633095199 of:0.0954324849176631 their:0.037700144057776504 a:0.030951331374545848 all:0.01953591099977375 is:0.018492176762974967 his:0.018279071911392795 with:0.01818702714370264 as:0.01591368266066411 tho:0.014944111909522405 by:0.014934398783888895 for:0.01450719659513529 The:0.014135907736195013 or:0.013075435229933444 was:0.013016847151457076 its:0.012882466256814603 our:0.012862905192921712 are:0.011531963822161682 :0.27426357359984355 +the:0.818914738036614 a:0.034979048834945445 The:0.0327649171504731 tho:0.03206931561175512 tbe:0.012684433286097203 and:0.00477446227383804 final:0.0046501988056554516 great:0.00453172650339781 his:0.004275665858321901 this:0.00403953235224617 with:0.00352538798695532 an:0.003451834107460698 of:0.0034402234750893707 in:0.003175723779379178 by:0.0028128643849937357 full:0.0028128135539600917 no:0.002791453804098185 personal:0.002686645707971089 their:0.002574596525029643 :0.018044417961718406 +the:0.1972922914779867 of:0.10707931134205359 and:0.07751345641690036 to:0.05965814400216777 a:0.03916990992603793 his:0.03332219732032006 their:0.03331774153636291 be:0.032850203570027194 in:0.031999481129964404 for:0.024419230255829164 was:0.015886632700938704 or:0.015687069681538747 with:0.014077907000147974 is:0.013616501400885488 tho:0.01238352879917961 at:0.012265965151178969 her:0.012068523214408489 by:0.011646939161358685 not:0.011571641806894432 :0.24317332410581885 +I:0.15653571342864203 to:0.08139633906587203 we:0.07743929755192235 they:0.07273776398424237 who:0.07141502386339013 would:0.05286827861131765 We:0.044203259287666545 and:0.03802705679937977 you:0.03638128587879581 should:0.02788051195384917 must:0.026689717763634078 will:0.02636898955388199 which:0.023820312903850914 They:0.023648017469982335 1:0.021650790050623897 might:0.018583841030116996 could:0.017293690834760886 may:0.017091758208428898 shall:0.016316646222851717 :0.14865170553679047 +and:0.1062364164078435 that:0.03560389535712349 it:0.03469720476733478 found:0.021099538256719994 made:0.020732308673072363 is:0.02060941982721668 him:0.020131156267548543 was:0.019550490217291615 but:0.019154666031600827 them:0.019094889919982958 or:0.01806205586180641 time:0.014407195782092782 interest:0.014345276930085568 out:0.013691345753768862 as:0.01342962685451398 place:0.013274005330756173 man:0.012667739634043563 be:0.012456485931675986 work:0.012081963221172408 :0.5576743189743495 +of:0.20169644618975724 to:0.09402386538300508 and:0.07953777059108995 that:0.06483407800322026 for:0.04957081179113616 in:0.043681072821712415 by:0.040850085120630146 with:0.03763908436431096 as:0.03279511948265556 from:0.03227264194333984 which:0.025891605256128457 at:0.025253439084078448 when:0.02165112977150908 on:0.020530502559201295 under:0.018348464650471717 upon:0.01818195973372279 When:0.015025159062326014 but:0.014425362390696774 if:0.014290216902742799 :0.14850118489826503 +in:0.08863128655718966 of:0.07730149840990276 to:0.04892806011181778 and:0.04657788454892744 In:0.029459146357753638 for:0.025064091965928396 from:0.022360942587808852 by:0.02178951422910552 is:0.0208879940027227 as:0.018443247218111677 was:0.016458829488874532 that:0.015481757480241649 on:0.015136850966839834 the:0.013656850895460614 with:0.013450039083589797 :0.010781705478007634 .:0.009895471669383845 I:0.009491284490146289 upon:0.008862866069410884 :0.4863406783887765 +up:0.017287370854421998 day:0.016525388906662754 here:0.014661872324865542 in:0.011986145884811403 ;:0.011676997211515442 night:0.009118360918307675 o'clock:0.007324555525160363 dollars:0.007236985723081673 time:0.006666165188055775 street:0.0062770725527553466 him:0.006168462408792959 on:0.005792852623266233 hundred:0.005631496151741781 ,:0.005516122547210087 morning:0.00546470956517966 street,:0.005452442412802451 :0.005438898311301245 made:0.005311533560652253 house:0.005050238546440921 :0.8404123287829744 +to:0.4994806899562168 will:0.08828360295893468 and:0.07303639004107802 would:0.052247319516868486 not:0.03732114319020758 can:0.026995733367534216 should:0.021000933648362908 may:0.020848117077048357 could:0.016960451159396706 I:0.015324842637849551 shall:0.012718118726507773 must:0.012174855005888292 they:0.01120643827024535 you:0.01037280405621637 we:0.010366645258111071 who:0.010324959264762817 To:0.01012101141056912 or:0.008716722722945023 might:0.0069605618004585194 :0.054538659930798344 +and:0.13236664957106375 is:0.05788431210577619 fact:0.0494375571487469 so:0.04344805453031262 know:0.027867686559288844 was:0.026713224963124484 of:0.023596180512341768 but:0.02079732262071499 say:0.018995713150863867 to:0.018309160078160948 found:0.01812045248633632 me:0.01802583114720675 show:0.01790443291446714 him:0.015415744579783895 said:0.015402647575838369 see:0.015084406578608453 believe:0.014606365934596693 be:0.01298191256282262 stated:0.01265411436421396 :0.4393882306157314 +and:0.15074028208198528 all:0.059673770009586916 but:0.03482016727045704 of:0.033035068820981374 that:0.023956737913655022 thing:0.02304805774795721 things:0.021548072504224653 know:0.02110780100313736 All:0.019153882338933035 men:0.017060915572264034 so:0.016957083878377743 fact:0.016011697591924057 time:0.015396988679123157 you:0.014964345555620697 it:0.014952526065781645 one:0.014462215727430741 me:0.013751064203800331 said:0.013118630897459625 something:0.012556815757794522 :0.4626838763795056 +the:0.5022633730398415 a:0.14609814466690907 this:0.04062150634047131 tho:0.025951984570828025 The:0.0227280711905165 good:0.01961077191882436 present:0.017033338328441616 or:0.014183806079994478 financial:0.013718661099319702 in:0.01328792770704012 any:0.012455945504090004 and:0.012008607764803735 tbe:0.011997955618658627 every:0.01137630830744554 great:0.011218064665785055 physical:0.011011255682264444 no:0.010288213639380383 mental:0.009273930666536307 his:0.008921478056243617 :0.08495065515260569 +the:0.28482450523190644 at:0.0883950669933271 of:0.07578847380297236 on:0.06461136601485776 said:0.0571520208492738 to:0.04728062503692036 in:0.0460559588251127 and:0.026431787502899623 from:0.0239592232729621 In:0.01712085156948635 tho:0.01434053391458037 tbe:0.008727783784636524 an:0.007312098339614551 with:0.0069864728495226255 The:0.006789619756613207 all:0.006775306818726846 :0.006559342605115329 for:0.006355182128495441 by:0.005931409575734577 :0.19760237112724194 +few:0.08630758107235387 three:0.08519844228434481 thirty:0.07607062745014088 two:0.07079224625523095 five:0.06118134781803819 several:0.058378135805393916 ten:0.05531671250601275 four:0.04738987816749005 sixty:0.03085526984713766 twenty:0.026701268820536545 many:0.026642344776902048 six:0.02337057494017658 the:0.022726140261392424 of:0.01767944508516721 seven:0.016552812786070178 forty:0.015560789445809594 fifteen:0.013551571253982387 for:0.013099370033149711 ninety:0.012751302755157767 :0.23887413863551246 +he:0.24558207652697783 I:0.10282932039440254 she:0.07885415879120102 who:0.07639904277655135 He:0.06345557525727295 they:0.06150676692497034 and:0.03892977285319931 we:0.02949866176065283 which:0.02930284045855573 that:0.024843469661946532 it:0.02355999153607414 She:0.022485042203987112 We:0.013920305856979455 ho:0.01266925330026972 They:0.012358620955588213 It:0.010531027497548502 have:0.010451112686784387 lie:0.009705743886028002 but:0.008477363755507799 :0.12363985291550222 +and:0.08934296525867834 of:0.08068838607300491 as:0.07853645433812198 the:0.06307320057451939 to:0.042658746496865775 be:0.030835544751753347 such:0.029703590012664483 much:0.025794511891263566 in:0.023621249210533997 so:0.021449367110620385 is:0.021260609143037765 or:0.019920658237143826 a:0.01927671572579788 his:0.01906207551381598 was:0.01720359984272631 are:0.013935218166333807 their:0.012335998801341931 for:0.011516936419171063 that:0.010287085618050218 :0.36849708681455506 +and:0.179917597017832 of:0.08979372781109111 by:0.059047190070327424 to:0.04366001511632747 :0.02802977604623874 Mr.:0.019719554424666386 that:0.01669556442523866 St.:0.014480710178492187 Mrs.:0.01003960541740475 with:0.00948814511444483 as:0.008560329196138706 but:0.008360422462878188 ;:0.007983895055861799 from:0.007776474697447409 told:0.007429172218112844 said:0.0071221059097411575 was:0.006987525972957343 know:0.006885801193096362 or:0.006348063126528571 :0.46067432454517404 +hundred:0.02334136986593815 up:0.005482494641173394 men:0.005366536521246011 Hundred:0.0047587970519216575 John:0.00441808156134956 William:0.004390720675819281 him:0.004016828614280843 ;:0.003997112205305733 due:0.003721199871732 in:0.0036582900032443304 time:0.003637206863828461 James:0.0035594902370151707 out:0.0034878448964120057 .:0.003467980723571515 1:0.0032804584819785204 day:0.0032444781513863933 ,:0.003058139385740603 :0.0030314555521939613 Robert:0.003005471634785646 :0.9060760430610768 +of:0.31411282999091 to:0.1211272714192812 in:0.09309296936828391 for:0.07311910408663726 on:0.0589471868583616 at:0.04320057926674921 by:0.039561274336083044 from:0.030367124914962303 and:0.02747244523400452 with:0.024970435890368896 that:0.020830639171750927 In:0.020320455474751104 all:0.015047160527129552 upon:0.011647850007139221 through:0.009323736857614146 over:0.009145265872151974 into:0.007199146859108292 before:0.007010346921475552 during:0.006329946823839351 :0.06617423011939791 +turned:0.06950524313516251 step:0.03996200080683715 up:0.03533325995655287 was:0.0340576738946438 it:0.03363418029725387 him:0.03343928734198895 attitude:0.032932790089399644 down:0.031142188431572234 taken:0.028439347850109736 and:0.0279356237198121 came:0.027125201585475336 made:0.024344634706296765 out:0.02233818661778923 way:0.02205948155344416 more:0.021774532930636338 much:0.021180909087313814 is:0.02008858571730293 looking:0.01945261394830595 ran:0.01759706709291735 :0.43665719123718527 +up:0.017218301971897387 ;:0.011016681815460342 him,:0.009913987570230149 hundred:0.009754595488695807 him:0.009453283387123038 made:0.009373216220157887 time:0.007912823659997048 them:0.007579593948769693 them,:0.007246849236304633 it,:0.006891252834886703 out:0.005803013973983525 men:0.005757047289417448 down:0.005495915178909945 to:0.004713719994868151 :0.004584885105243303 and:0.004577632444344763 here:0.004509980035088992 Mr.:0.00442319627840016 dull:0.00433397428690401 :0.858440049279317 +of:0.24298869886842006 dated:0.1199078493398547 on:0.0943231836700621 in:0.08356273886754993 approved:0.07188449266322877 On:0.03246785181807553 for:0.029719116506895474 from:0.02730162204134524 In:0.02043370194859337 Dated:0.019805607892118684 to:0.01910775932693859 at:0.01504065851800396 and:0.01349599540207019 the:0.012332224364769509 Monday,:0.011191168726636485 until:0.011113398463702942 since:0.009466447246757385 :0.007512910017446705 Saturday,:0.006916143627040679 :0.15042843069048967 +the:0.6751138836618722 and:0.04393935983133767 a:0.02787701423363931 The:0.027149256962790462 tho:0.022503600790885477 of:0.01523561305195836 tbe:0.008111602303965295 that:0.005396142777255117 said:0.0049994960398345775 :0.004484374914001159 by:0.0038104413382565945 first:0.0035416864795034335 long:0.00342889192698681 last:0.0029308844519575932 late:0.002628947394021046 A:0.0026288445927510635 on:0.0023487205971268253 in:0.0023178152751763036 old:0.002177197072538997 :0.13837622630414168 +Why:0.19121110456583137 I:0.08993169522154315 why:0.07788807239998669 and:0.06545653264421496 it:0.03699984547404222 he:0.03696041791868938 Nor:0.03138320912713618 that:0.031124182846862716 we:0.030385248862569325 they:0.02738560449834245 you:0.024950028657620846 nor:0.024360153537016368 which:0.02412866584022461 It:0.017449707928842918 who:0.015499937120031743 How:0.011307855285634619 What:0.011244630923321461 "Why:0.00983106595015139 or:0.009067246236766118 :0.2324347949611715 +and:0.04252468525647695 p.:0.03405326145388964 made:0.028531229407276384 set:0.01664308583047203 was:0.013640711164290917 in:0.013478978080671453 of:0.012774918279402074 a.:0.012618092766968405 or:0.012052589480803247 the:0.011943113142926507 him:0.010888073128013041 came:0.01016136133076683 to:0.009340760803593104 held:0.008591430067110602 1:0.008509061882218292 sets:0.008381844371033191 called:0.008229608326396838 come:0.00819044367564943 be:0.008136759529011897 :0.7203099920230291 +the:0.39600446684120205 The:0.16432119025404332 of:0.05112509247291078 and:0.030701276457747704 his:0.03005845209503096 a:0.02979322123426732 this:0.017680124635320756 tho:0.016752147670782275 that:0.015425894052523773 my:0.010340447867599184 our:0.009915017297191376 Tho:0.007950002625538298 said:0.007848220650551508 A:0.007625672929233612 His:0.007145388296028676 to:0.006864208271818224 Mr.:0.006790976746204179 their:0.006252057970950386 tbe:0.0061608082310503215 :0.17024533340000525 +the:0.18068194822676648 of:0.11631159669821006 to:0.050192226270908566 on:0.037593586228715864 and:0.03341070572830738 a:0.030466606361445492 in:0.025730653388295104 :0.014559373744106378 The:0.013873060011247867 by:0.013705962177784234 from:0.012128828596377886 at:0.012073526292203682 that:0.011498946757579218 tho:0.011199479114218694 an:0.011022693720171825 as:0.00970984572567168 with:0.008018288533483468 was:0.007578163149249899 for:0.007444620726189713 :0.39179988854906656 +feet:0.028608621746242523 them:0.01719853142712268 and:0.0154596503683405 him:0.014870623021605182 years:0.012563244354088576 up:0.012365999103179773 day:0.012092242155088195 work:0.012078969833369023 year:0.01178345196006054 made:0.011717135645977641 both:0.011522966304267386 it:0.011191087231256383 well:0.010765391898268894 the:0.009679155359100584 way:0.00964481800059095 of:0.009162479820300605 men:0.008867826660421432 all:0.008692811750591162 :0.008271143511574465 :0.7624638498485535 +there:0.4523150717509021 There:0.2903338813421345 It:0.06547980059628881 it:0.05907757562310728 which:0.01202308235975841 he:0.009431902232400775 This:0.00877735609685368 "There:0.008359454949505307 that:0.008009340729630993 and:0.007545952700445771 thero:0.006222245354520518 this:0.005801551911703653 who:0.00545151925466502 He:0.00501528562834394 what:0.00340172394456862 Thero:0.002725433375989789 That:0.002319909252105507 she:0.0021111282360712666 "It:0.001984708577774704 :0.04261307608322941 +made:0.07453790729121423 and:0.05807830969714977 up:0.020024303027593966 shown:0.017711899585202487 taken:0.017297559853777483 out:0.01664412323021441 given:0.015978878939984755 ed:0.015236680247841096 done:0.01508808385923035 owned:0.015069938546480484 or:0.014321012174771906 down:0.013659830600644868 him:0.013404264743741286 paid:0.013205791828682627 caused:0.012019364900619986 held:0.011919470162092055 that:0.011804625997403602 it:0.011702589258673447 approved:0.011588061100703791 :0.6197073049539774 +out:0.03100786559854954 part:0.020888720772582272 one:0.01691164611953584 favor:0.01578488271744608 purpose:0.014113905824969688 that:0.01406638395693153 tion:0.01401670977291975 means:0.013975685379423331 case:0.013430162702979887 charge:0.01333627133255789 day:0.012784091718129716 use:0.01212670851997569 and:0.011701764874810972 virtue:0.011674122195323296 sum:0.0116737142860741 name:0.011434950818201998 number:0.011159610312967267 people:0.011061393166274091 end:0.011009241572308226 :0.7268421683580388 +or:0.13128977026626548 and:0.09842548382185584 that:0.04049625537339935 not:0.03892306861745329 be:0.03870335293755112 is:0.03567334225787469 if:0.03117775387754709 than:0.022326060634283374 shall,:0.01931100702166241 served:0.0190925349432226 now:0.018489631067403926 property:0.0183628455303878 there:0.017373322884677782 to:0.01696094463976214 made:0.014728494578410738 are:0.014629627526294965 was:0.01436084036289082 said:0.014106268520817856 but:0.013867342509687205 :0.38070205262855156 +and:0.05917734571267282 closing:0.04405297983259551 was:0.026323119710997635 valued:0.021005792503071843 held:0.01922887441606307 sold:0.018225285914023 2:0.017782437938973866 is:0.017552850459549643 arrived:0.01662711812741857 be:0.01645048243064216 are:0.016339673120917095 White:0.01533836240735085 not:0.015154252504664439 as:0.012706467917481812 that:0.012063629264509927 estimated:0.011864260728812118 Dated:0.0116063700277585 or:0.011444173640079769 made:0.010438189210536826 :0.6256183341318805 +number:0.04820891111632115 out:0.03439241063338213 line:0.03233854404536941 state:0.030292493293831105 part:0.02224687535403542 one:0.019715804647893645 side:0.01951331035652204 amount:0.019454259838950733 point:0.01935584442605745 years:0.019202780062315756 day:0.018071894873364372 county:0.016032063140369274 cost:0.015959430146617718 place:0.015678779077796152 city:0.015065753372452933 tion:0.014728991454855879 case:0.014049450187477674 matter:0.013398997672989413 Secretary:0.013198424801206005 :0.5980949814981917 +they:0.11738810657816937 you:0.09527424161870048 it:0.07036618066458546 and:0.06910579720593689 which:0.0658908015574853 I:0.06038176065864655 he:0.05414607502580343 who:0.0511949497462036 we:0.048859034292020244 that:0.04875704238714106 It:0.029938796919251002 They:0.01565668303726217 she:0.015561550373515674 We:0.011448464420661707 1:0.011233923482053508 You:0.00997470546921841 He:0.009816314011654864 as:0.009806669457669363 men:0.009793897141981133 :0.1944050059520398 +of:0.28767355066866834 to:0.08775711267569858 in:0.08678131196995101 and:0.05160598694501188 on:0.04646139928102899 by:0.04519522654900943 for:0.044547789071328545 with:0.03396756772609607 that:0.033699232901107726 from:0.03075346596941143 at:0.027039283056790858 In:0.021061449543044047 as:0.017514234937992545 all:0.012543839382496166 upon:0.011844431150487573 is:0.00998972746569266 was:0.008814315973987914 into:0.008557199930727406 through:0.007781895704231326 :0.1254109790972375 +the:0.4071374189315913 and:0.06449181461132415 of:0.02892866618288876 in:0.028670005984162618 The:0.02603617389223924 tho:0.024993820467459137 a:0.023579040051412606 to:0.01755553213771617 on:0.014626070241060114 by:0.013447843485786471 or:0.012794166593089693 tbe:0.012024509152999897 :0.010353482361299817 that:0.009291482237329618 In:0.007938246807075932 from:0.007526799010378873 other:0.007469196869028889 all:0.006409533041696086 for:0.00626887758057738 :0.26945732036088327 +and:0.09213493450741679 was:0.07986156362061321 is:0.07934329162775802 the:0.07922828701108017 are:0.05410355996569403 of:0.04084004132919878 be:0.03291135569018231 to:0.02921181501276081 were:0.027326081188711084 a:0.025372112458763193 it:0.02494411251684431 has:0.023873157633729797 not:0.021073765825174534 I:0.020472650727913898 he:0.020354225082425664 had:0.0202504545865575 have:0.02012276036457298 for:0.018958112401711757 with:0.01868810508852798 :0.2699296133603632 +it:0.08159421505788149 It:0.08062667436324815 he:0.06539569812568193 which:0.03770832360607955 who:0.03525790512715296 and:0.033997849737177385 that:0.026438952249248623 I:0.017406225944294577 He:0.017248828541074637 she:0.01565506632231926 there:0.015612657491205134 as:0.013656278571763292 lt:0.010889962099873767 There:0.007400284717241093 ho:0.007312701994258089 what:0.006149106697594402 .:0.0057665364210540745 She:0.005293468047178192 lie:0.005259010317644286 :0.5103302545680292 +a:0.3983611738257038 the:0.18975063183637242 and:0.05915992772016445 to:0.045493935541304736 our:0.040050925111415475 their:0.03308683425635701 his:0.028578198294913447 this:0.026492657960046285 of:0.018736898877000432 its:0.017157882557802973 other:0.01356402353748518 re-:0.012324893409804746 tho:0.011628078378230312 The:0.010997199212771478 for:0.0108595268047971 some:0.007681646086334174 her:0.007505407536425943 A:0.007438759240021639 your:0.007311625865190156 :0.052819773947858216 +of:0.16395767791498234 to:0.09730198913732495 the:0.09115450126012513 and:0.04107024271966347 in:0.03172645687235218 by:0.024368743557582045 on:0.01971768852046213 at:0.018758382996897093 from:0.018140569983269853 for:0.017348351424247864 :0.015785304868758142 a:0.015481007955026667 be:0.012531668637321608 was:0.01217464368054632 that:0.011707542416216285 or:0.00987944457110272 with:0.009632285854979208 is:0.00950843891169581 .:0.00814862645803795 :0.37060643225940826 +a:0.18467990574049717 the:0.1682891449822853 ar-:0.13530215037162008 and:0.057885045523850556 to:0.05297209236498633 The:0.03747927909220317 an:0.03373608555647301 ar­:0.026235032847729073 his:0.025237997558927788 or:0.021505634625238874 ar¬:0.01855471954274431 one:0.018215713990239708 of:0.012987971567153797 her:0.012646236683663268 tho:0.012521563510121587 little:0.012068798093116125 every:0.010459449161287307 very:0.010403143360150423 will:0.009172243992797601 :0.1386477914349145 +and:0.03868242960999506 as:0.031124813427855922 went:0.02352509775927722 him:0.02196555539050794 them:0.018760608639018784 up:0.017985449426794205 is:0.017894175620344187 go:0.017174904667157563 able:0.016756848979943888 going:0.014481672239490295 it:0.014128375989346808 was:0.013277058274565138 time:0.013249953793837373 not:0.012469887553778763 began:0.012465717758716884 way:0.012105610030480113 back:0.012090864562211581 right:0.011941707822828511 amounted:0.011564315359310868 :0.667354953094539 +it:0.1764389183471107 It:0.14829591922752788 he:0.07230319021248288 He:0.05832331196764469 and:0.03781306137221308 I:0.035083198767022226 which:0.02985941034204096 result:0.022187071115844094 there:0.01932983051935934 she:0.018923734389033168 This:0.01734664895811947 that:0.01564492441382211 She:0.014846274270790024 who:0.014430624337326284 this:0.012084036232864158 but:0.008811402850878518 man:0.008573867714414861 what:0.008472526206465776 one:0.0073014048024149835 :0.2729306439526248 +and:0.11801574937030403 with:0.09024337441540739 in:0.0734583962816698 from:0.065276121014415 the:0.060113625660696744 a:0.055682482657984395 her:0.05383293803569512 his:0.053430323399665344 of:0.048406137198015536 their:0.0481078620807271 are:0.03637915084395868 was:0.03234191738980283 too:0.02143873456405239 In:0.020236566150767632 is:0.020192950433275868 to:0.018737374388855838 for:0.017087946081389055 our:0.016781507557379567 were:0.01673768870960572 :0.13249915376633195 +made:0.0999812034390529 and:0.06680208263369662 caused:0.02435411478715239 shown:0.02379785223577525 up:0.023253655008919294 ed:0.02312002180398423 out:0.022293807888227747 taken:0.021988971765594088 done:0.02128782706813444 given:0.020283609421760777 paid:0.017098570970207227 owned:0.01708227903067019 that:0.01698438626809451 or:0.016145946252097726 him:0.015808363688274 followed:0.015366441255538056 appointed:0.015126279845513936 held:0.013990473525433292 approved:0.013949758860964168 :0.5102843542509091 +of:0.20846662931850912 by:0.12041137050377246 with:0.06748255294929119 in:0.05726058364301487 to:0.05723788179660945 and:0.055748576313073527 as:0.0440633002679278 was:0.023732348726720073 that:0.023624773000817494 for:0.020439771952457487 is:0.020240302018117853 from:0.015277644392730801 have:0.013674515470013034 had:0.013537247926944327 on:0.013025941811684786 like:0.00996659782075862 be:0.009779033605346571 In:0.009670698166009517 such:0.009489832482837851 :0.2058703978333632 +the:0.2889765241817396 of:0.16206700071985142 a:0.09525596272271904 in:0.031182192314535746 and:0.03102645070752663 The:0.030569718953278223 to:0.024477614695717284 by:0.02242125847979173 from:0.022383183028126082 on:0.02086345547024617 that:0.017336523670834245 as:0.01627422100677655 tho:0.015824400844278448 with:0.013074793847531838 an:0.00975421655447045 In:0.009641422180131492 his:0.009267475665135161 such:0.007830209627475597 for:0.007766775931094164 :0.16300659939874013 +:0.04788991573104308 it.:0.027336031560165047 them.:0.016505637113224753 him.:0.013090540849014473 country.:0.009411424916198358 time.:0.007875577494500368 day.:0.006314965612800909 people.:0.006156898384353791 it:0.006031738584347217 life.:0.006010497972834515 years.:0.005927893322744719 .:0.005893362124214947 world.:0.0052672107917636195 again.:0.004955848551644381 all.:0.004876737864704285 and:0.004818288433142376 work.:0.00456771926433282 so.:0.004550100021888991 It:0.004442209753428759 :0.8070774016536525 +to:0.4690973298768346 and:0.06527505436210697 will:0.06339016927951809 not:0.05955282793537054 would:0.0415121457212056 had:0.030088280065668785 he:0.026341255271898553 can:0.02504293193142282 could:0.020816162084927998 I:0.020326164991688694 who:0.017395406975835914 have:0.017054004281955176 must:0.015982435327099257 may:0.01520946815837276 should:0.014940183711473144 never:0.014748943173775557 the:0.013214893120916987 or:0.012516633720727399 they:0.011547623146846637 :0.0449480868623545 +the:0.11919516938815296 of:0.07230453158552728 and:0.05781056740443249 a:0.043018564803886335 to:0.031305092790907506 in:0.020848713353460488 at:0.014270110001066288 .:0.012526810245749479 :0.012413283442322082 for:0.011719122709941797 by:0.010808400946589808 or:0.010404172990115616 The:0.01003576004804544 with:0.009811868184449042 tho:0.009295902015355835 was:0.008924239095331684 that:0.008672304223433876 is:0.0085591147338948 be:0.008335143826716943 :0.5187411282106204 +the:0.2361827564981678 an:0.10978986733880208 of:0.09857266253619892 no:0.07197531444864386 said:0.051264656409885166 this:0.041881852375264164 any:0.04164577989781793 The:0.026856076273009576 in:0.024492845011414823 such:0.02374463387255195 his:0.023082259148537333 that:0.020871527924868984 public:0.01935630140949637 by:0.01915484908754814 their:0.01739346351824843 and:0.015576180573591683 tho:0.013666803771353691 to:0.012719304568846337 This:0.012332142451070834 :0.11844072288468194 +in:0.15674647008585985 the:0.14398431953363855 a:0.12583168326677785 of:0.10954240541821054 In:0.03517413194865306 and:0.032239949335587374 an:0.02609495650481435 to:0.025636716290456413 from:0.019708034674029047 for:0.01881197572174768 at:0.015086135302931316 on:0.014632149013106159 The:0.014368191770747019 with:0.014288942871841471 that:0.013940509322649591 by:0.012930590508610342 in-:0.012464373950157268 upon:0.010381323041217036 as:0.010270608859585523 :0.18686653257937952 +for:0.2051223321982418 of:0.10637851837421566 in:0.07511030797508438 at:0.06571561011883738 to:0.05501688479354739 as:0.05388397381800874 on:0.045163283446480997 and:0.03822002824031891 that:0.03369599720541827 was:0.03122067783530951 such:0.030186485648318485 with:0.030104527684049098 by:0.02621678583701842 from:0.02411662289602958 is:0.02081601423278643 In:0.018630232304083283 within:0.013252751177558817 after:0.012740966236979494 once:0.012718723080709964 :0.10068927689700342 +and:0.07191861843600596 go:0.03549697485095276 that:0.029559104991976313 was:0.02783864511018773 but:0.023573327626045932 it:0.02309808345654008 him:0.02160385609296425 went:0.020853931824838568 out:0.020720908426758333 is:0.0201793218232159 service:0.01874045907409856 work:0.017455795955922285 put:0.016504606938523854 them:0.01580966151810443 going:0.014508646613307611 you:0.013815198597710155 up:0.013747204452150708 came:0.013537520540330047 found:0.013189482563736438 :0.5668486511066301 +to:0.23213706099404274 at:0.12975488618164407 in:0.10430672301077829 of:0.10353819870181585 for:0.06378054702375158 and:0.04928140628023317 on:0.02986453484593621 In:0.02900026455977336 with:0.028125197876106546 from:0.024658099824891297 is:0.02049616325099755 that:0.020011560303946668 take:0.018892595086293765 as:0.01852718556230874 At:0.013741009647090895 all:0.012317697269012195 by:0.010961674222347704 be:0.010743407052809297 was:0.0102924909565595 :0.06856929734966055 +the:0.11919516938815296 of:0.07230453158552728 and:0.05781056740443249 a:0.043018564803886335 to:0.031305092790907506 in:0.020848713353460488 at:0.014270110001066288 .:0.012526810245749479 :0.012413283442322082 for:0.011719122709941797 by:0.010808400946589808 or:0.010404172990115616 The:0.01003576004804544 with:0.009811868184449042 tho:0.009295902015355835 was:0.008924239095331684 that:0.008672304223433876 is:0.0085591147338948 be:0.008335143826716943 :0.5187411282106204 +and:0.09543660874745345 the:0.08841282714587446 of:0.0678433045599914 to:0.06209950716506755 in:0.026499889527261244 at:0.020375595238970912 be:0.019985563546454428 was:0.016562239424165535 that:0.015025322595440706 is:0.014375929701012716 are:0.014161544634683278 for:0.014000145845465254 :0.013677910847992046 a:0.013650369665350508 with:0.013151563891838938 which:0.011147371108059271 con-:0.010577525897550072 were:0.009916974936654593 from:0.00981212564801712 :0.4622876798726965 +of:0.28767355066866834 to:0.08775711267569858 in:0.08678131196995101 and:0.05160598694501188 on:0.04646139928102899 by:0.04519522654900943 for:0.044547789071328545 with:0.03396756772609607 that:0.033699232901107726 from:0.03075346596941143 at:0.027039283056790858 In:0.021061449543044047 as:0.017514234937992545 all:0.012543839382496166 upon:0.011844431150487573 is:0.00998972746569266 was:0.008814315973987914 into:0.008557199930727406 through:0.007781895704231326 :0.1254109790972375 +be:0.1645249147097733 was:0.13006222407914303 been:0.07861750396106752 and:0.07150621588506632 is:0.051621171007992885 being:0.04081209755912487 were:0.038475222488054836 now:0.03091302953562437 are:0.020730862775157326 as:0.019879017026284185 he:0.01900571964045052 land:0.01730976657221393 formerly:0.01659254520577509 not:0.016479733763921263 or:0.012842853566807715 that:0.011789092167232859 property:0.010288877886681279 much:0.009675053655343784 bo:0.008894463308240513 :0.22897963520604442 +of:0.3279779158046699 in:0.2893860802966112 to:0.07837437675075155 In:0.0494938317512365 for:0.03353230412634753 by:0.03121524694208426 from:0.027597511193698777 that:0.02413498190071536 and:0.02111993752632848 at:0.012967400955456482 with:0.01263542804954148 on:0.010623950656536027 as:0.009620527165508708 into:0.009237059443466311 iu:0.005878744005996933 upon:0.0057365934646001916 which:0.005637910820593308 through:0.005283420178394371 ot:0.00488710323678531 :0.033659675730677324 +the:0.2085145448263892 his:0.1976314216357296 her:0.08683077531243198 my:0.07074169955819516 their:0.06998258115690979 The:0.03409302313373425 His:0.02831563075433927 our:0.02602218356005847 your:0.024381586327439277 Her:0.02387986732416122 of:0.02293210342473683 My:0.018563160069084247 whose:0.014900235726053253 and:0.014248962918777858 tho:0.012225780355368586 blue:0.012040739184435508 bis:0.011976615040773405 a:0.011897705771363508 its:0.011642932641923351 :0.09817845127809519 +of:0.11619101381683422 the:0.08851624871148385 Mr.:0.06946721356876012 and:0.05243394575251539 in:0.04906446815834277 that:0.03743769278973447 The:0.028388611034687917 which:0.023233482066739745 Mrs.:0.02024551652171408 to:0.01968568266101125 for:0.01624178425957255 :0.013938271411685061 such:0.012202281344778966 General:0.0119313560502063 as:0.01191049327668683 by:0.011355639250219023 any:0.011059642611687657 he:0.011010638372379991 said:0.010692699366701556 :0.38399331897425826 +be:0.08487132800374955 was:0.07585597665235623 of:0.06896207644361906 to:0.06755891562986616 and:0.06308789958003516 the:0.04202720911586623 is:0.03539315799074426 been:0.03179055091296871 were:0.026176354420916325 he:0.02338853025091344 his:0.022353640121703686 a:0.022014630483987854 are:0.02098599571903738 in:0.01394472987376259 it:0.013423277497988708 not:0.012163913309263537 for:0.011120044096484323 will:0.010237485316770356 at:0.009925797704348443 :0.343718486875618 +It:0.16483324464261526 there:0.15137929784652215 it:0.1389856574030547 There:0.07635769296985051 This:0.047005115735994085 which:0.03400493914593651 he:0.03276953491232582 that:0.032534901302704186 this:0.027705240540618296 He:0.025980981107979893 and:0.02571984886254885 who:0.015928391857077187 Here:0.008658225427457844 That:0.0071330239854848695 she:0.007117899171284279 one:0.006746549293447637 She:0.006029619888080546 man:0.005607440676998042 what:0.0055587671977417805 :0.17894362803227754 +up:0.025936030115300372 it:0.017639723737215375 due:0.014561434807285601 made:0.012128021705864215 long:0.011992071748595642 good:0.011267168084440077 time:0.011007089424769897 him:0.01064065664821418 in:0.010179136370227515 out:0.010096001750045817 large:0.009989805383862713 life:0.009575188308357125 more:0.008922810780840087 them:0.008803450771647032 work:0.008424644110375065 one:0.007331427723394672 highest:0.007176820982414262 on:0.006793196393638082 it,:0.006744488603503707 :0.7897908325500086 +to:0.08749111309457502 of:0.07970540427219265 and:0.07955552369394131 the:0.07528789476979189 or:0.04470746358967731 that:0.026491697870920768 not:0.02554441160124446 as:0.022974251222880323 in:0.02107260820157081 for:0.01798213049581563 be:0.017332168587189747 re-:0.017162582967852537 is:0.016702322114486023 this:0.016126616097662392 no:0.015222753742147141 he:0.013477659910731398 I:0.012486046127580905 any:0.012342906010513074 which:0.011852451300853184 :0.38548199432837343 +the:0.39749834532651884 a:0.07520030034269234 and:0.05540858759821703 The:0.03273515726769502 tho:0.030061875542463562 of:0.020144331424922633 tbe:0.014929647509541684 in:0.014268129706664795 or:0.013333166761078447 .:0.013287381914101323 an:0.009000188755386574 to:0.00880680429595084 :0.007943763822197133 Mr.:0.00773879605474787 by:0.007328417831573476 as:0.005922572098978465 for:0.0047526933692942485 that:0.004736121968310169 on:0.004594595720579333 :0.2713091226890862 +of:0.1376991618851117 the:0.10798312322445228 and:0.06951160137172437 a:0.060804581026801835 to:0.05364738199416968 at:0.031968673489055764 in:0.03189805639665446 for:0.028216362384667067 be:0.0205561005038733 their:0.016262468365442047 was:0.016100673832840307 with:0.016064461458490272 that:0.01581698215855476 by:0.014091634631495976 is:0.013914092810250474 his:0.013714877701145286 as:0.012161545632212981 from:0.011690424628482228 more:0.011689713647984257 :0.31520808285659097 +the:0.19722612068942516 and:0.1776859783864834 two:0.08470591263102305 a:0.05226267151248266 three:0.04302241992423076 or:0.03871444583814345 of:0.03345587030061348 four:0.027820561995509755 six:0.024265627635386193 The:0.023534435430803635 five:0.020651012836835108 his:0.019629499657419395 one:0.016890650727816727 as:0.016779140612399664 thence:0.01425621509390198 several:0.012205432597895614 twelve:0.012020301753426109 their:0.011944729780497597 her:0.011745247335098435 :0.16018372526060784 +of:0.09129790931378902 the:0.07369883040827747 and:0.047842263382354346 in:0.04189055351593407 to:0.04045875475680249 a:0.03542341257202578 be:0.02020462051672066 for:0.01979292654746225 was:0.01760256398103379 at:0.017380150555488715 is:0.014984483003968216 with:0.014047653760730413 by:0.01374644383819499 :0.012670486581795598 In:0.01200961464556976 or:0.011563835749786333 from:0.011391516893522809 are:0.011273104484969465 that:0.010755276030689069 :0.4809655994608848 +of:0.1343138587507163 in:0.06765056899607808 as:0.06523902155079696 is:0.06408242877157266 to:0.05920677986120668 with:0.052352944016705046 by:0.0489161125839358 and:0.04476446561312716 was:0.043874711196451026 for:0.0353857632723415 at:0.028122627130863165 such:0.027654959488952243 be:0.026520497424890634 on:0.01775924540667342 In:0.017304992039102633 that:0.017053231434412737 have:0.01675624464989442 from:0.015365315280442398 had:0.013575095776826075 :0.20310113675501107 +J:0.04660298652240873 .:0.03753900021477507 of:0.03347520998211259 W:0.03295544001516389 J.:0.01967493480904119 G:0.01741031263907218 Mrs.:0.017387041690139 deg:0.016773848936353013 E:0.016126948523047312 and:0.016050301404808485 :0.015004369819981354 C:0.014329276939219504 A:0.014240046752208892 to:0.01399549804246162 H:0.013885382139263788 Mr.:0.013683683310275361 W.:0.012557428397977221 min.:0.01242963753371707 S:0.012033525549842026 :0.6228451267781316 +and:0.06317916895143688 was:0.03089079697380977 is:0.020044819943736053 be:0.019406329289829806 are:0.016631216139614186 that:0.015910745835586493 it:0.014132589635136123 been:0.013429954470292457 made:0.013153338042273357 were:0.012494049396038097 or:0.012369181282419555 them:0.011608721240324167 up:0.01101461536327863 him:0.010833186604515583 as:0.010718511743974049 succeeded:0.010682665877813333 engaged:0.010592681714621757 not:0.009777868089593193 now:0.00948198968071834 :0.6826475697249881 +has:0.356264118960899 have:0.311145949663067 had:0.2292382867627914 having:0.01984600205345737 lias:0.012633582996518674 not:0.009283154687081034 haa:0.006731868287527573 havo:0.005879363988424564 and:0.005572169544688808 be:0.004688575871043638 he:0.004118966130595063 bad:0.0035930719691349288 never:0.0033836631185325317 ever:0.0033125672425900585 who:0.0030739078897295117 baa:0.0028441421012959964 was:0.002704002035567623 Having:0.002661939586720002 also:0.002489608978790844 :0.009535058131544361 +and:0.14507320772351315 fact:0.08580533594336559 said:0.056464728489513914 so:0.05141663139801109 believe:0.03728868944610554 is:0.032697255055655516 say:0.030323479159427524 know:0.029749358812227955 found:0.025535190692382553 stated:0.021273605064562356 show:0.019511948220510757 but:0.018999393120383457 says:0.018814328565908398 think:0.016893655385130203 was:0.01658797795582863 all:0.01652317309060226 see:0.015409038245983688 opinion:0.015263158537430448 order:0.014744011681695817 :0.33062583341176116 +the:0.10856336470253264 and:0.1048288462955661 of:0.06596372160564307 to:0.04210657934714726 a:0.0351526032478851 for:0.03330267695601735 that:0.02669506791070959 in:0.022577922945018616 which:0.02025988454871082 will:0.018094775884878823 or:0.017201986647404233 they:0.016307988499789965 I:0.013339036486985908 as:0.012944693899133624 no:0.011674575209191781 these:0.011636159164720971 men:0.011507230848179556 con-:0.010541115361168404 he:0.010447019905441867 :0.4058547505338743 +and:0.057426382095932635 :0.053544016559157546 them.:0.029767647728045 it.:0.02481539836958224 .:0.022923399347948317 in-:0.01603931591489833 country.:0.015294913122577964 the:0.013900302088037546 time.:0.012832286122707745 year.:0.012558438529857044 State.:0.011625814342258702 him.:0.010940497587864494 years.:0.010373567674300081 home.:0.010237987656349323 States.:0.00879168329067707 day.:0.008774354067215794 to:0.008446876835886546 system.:0.008357206040510955 of:0.00832546617262491 :0.6540244464535677 +at:0.3308213524974508 to:0.13980781231872438 of:0.12751289768591237 At:0.06285683329804463 in:0.059543816022922275 from:0.033640941189737594 and:0.026285692917293425 for:0.026131617627344384 that:0.025515860271453188 by:0.024498624163207715 on:0.022323463172072015 with:0.016100415871315197 before:0.012056958211303653 In:0.010787189750398635 under:0.009986472643284831 as:0.00836491644301229 until:0.00785967853987415 into:0.006534067749893053 after:0.006337259777974031 :0.04203412984878137 +able:0.05212528597694475 enough:0.050189720690719405 unable:0.04825994057074669 necessary:0.04281580620721917 and:0.04052382028043899 order:0.04027437116487837 is:0.032881504072226245 want:0.03022912216460912 him:0.030125055427733295 have:0.028723101113715215 as:0.028068475901324268 required:0.02691470487082961 had:0.025192808894055767 time:0.024038068438474777 was:0.02225525211544819 brought:0.021813066995447824 them:0.020846888437010387 allowed:0.02045731555078726 made:0.020110284036293405 :0.39315540709109725 +and:0.15274191882813376 was:0.10947497715072119 be:0.06698824113563819 were:0.06396016954340258 been:0.06371781540569728 the:0.049636951776341844 are:0.04499850078597431 had:0.04282534394117915 then:0.03462648544705235 being:0.033225583117348814 is:0.03300883642858858 of:0.028347274279687886 have:0.02675444552017687 by:0.02645225437674596 to:0.023184150593124703 he:0.022995755951974083 has:0.021946237536279098 for:0.018091490977183555 in:0.01570404939353705 :0.12031951781121276 +and:0.12496188797244241 about:0.12412038407371555 at:0.11875346415397957 of:0.07172553056227692 west:0.05945761103352395 east:0.04088744765163554 to:0.03291780207335008 or:0.019894505526718297 south:0.01783459300122922 street:0.015560163745510483 north:0.015016465990169765 from:0.014307058730725542 than:0.012480573823081154 No.:0.010821125352960741 nearly:0.010351596777612933 deg.:0.010297131307090047 was:0.00962925469915018 range:0.009618900028449234 over:0.00876574582120051 :0.27159875767517794 +of:0.1736121815969135 for:0.15842454661242233 to:0.1237176065298171 with:0.10210041346793622 upon:0.07349794377015353 on:0.038110966690334536 by:0.03700019422473995 in:0.03326431574458265 from:0.03324845951478201 before:0.027491366496548462 against:0.02673979519666012 among:0.023303116394891885 about:0.015169190112280254 behind:0.014197528554885422 at:0.013618086074529584 after:0.010833764241057206 over:0.009410781306826484 give:0.008563485095351413 see:0.008409849645323144 :0.0682864087299642 +to:0.28024829049865796 will:0.16829300210734263 would:0.10781149376717758 may:0.10642325262641103 shall:0.06117884300548909 should:0.05092920991374368 not:0.049859172434568166 must:0.03494229341590208 can:0.03309867946917643 could:0.018662543124118896 might:0.015979960543655844 cannot:0.013066127343747748 it:0.008584661681560567 and:0.008196079462273896 that:0.002932694576942818 never:0.002568947489555079 only:0.0023407090513101535 also:0.0021470399495967926 probably:0.0020207666593744025 :0.029716232879395146 +to:0.5642431788052528 and:0.07361919086525608 will:0.06694154567066017 not:0.0398869309600534 would:0.036818196280933614 To:0.026373064835702946 can:0.01914111885276897 I:0.015628985426551698 who:0.014221786802377042 should:0.013912826400543485 shall:0.013510553926121686 could:0.012568022980186081 may:0.011569703115075413 they:0.0095787040833414 you:0.009295058905393314 must:0.009027760772770425 we:0.008778515592079277 that:0.006916898879160552 cannot:0.005889540114131087 :0.04107841673164061 +to:0.08572686585911256 and:0.07945133613948627 of:0.07564609081977251 the:0.065110702153279 in:0.03552126303097142 was:0.023516003127769972 is:0.021906165755152526 for:0.021435596805862777 that:0.02022652156604834 an:0.018827111593509183 which:0.018231111987942916 be:0.017406592172239242 a:0.01727060749379442 :0.01563433240097493 as:0.015102774826175787 Mr.:0.014641321799426883 with:0.013691778601755251 on:0.01357472094350501 not:0.012477695292339731 :0.4136014076308813 +and:0.14062873602646742 them:0.02824947205271327 or:0.02823718691935732 not:0.02709449432270817 be:0.0225738111348027 it:0.021444545509648527 is:0.019980507695353446 but:0.01931359123526511 him:0.016273031487228484 do:0.015964721358539914 was:0.015056165515369833 done:0.015028979624818585 are:0.014388062650108764 that:0.012960214803964693 made:0.012393944537098045 well:0.011657399002442382 now:0.011468533134427339 out:0.011147201747929799 thereunder:0.010167172677074166 :0.5449722285646821 +of:0.2938197875884436 and:0.09788150504417807 to:0.07058252175645276 for:0.0699349223750756 that:0.0568580119278332 in:0.05215849864663846 by:0.04240570252556134 all:0.03564348905571073 as:0.030067823097015445 with:0.02785275189451272 at:0.025776325996459577 from:0.019233201484172287 which:0.016024560150057054 on:0.014489699182716156 when:0.014403356038155861 In:0.013286291605407051 is:0.011346011104318427 but:0.011240524843621211 before:0.009700124739121348 :0.08629489094454909 +of:0.053084757511933894 and:0.04328736461145373 to:0.03337470260989404 at:0.02392641175079397 .:0.017549197386870875 that:0.016305639033673613 in:0.013473786565016658 :0.013311289545774528 as:0.013128665248290853 for:0.01098521943945041 by:0.008967665508235497 from:0.00839291980350085 President:0.0075683156122315865 the:0.0073490436119243155 It:0.0073257284158254506 with:0.006331315857578997 it:0.0056230018190904126 which:0.005467599586147751 is:0.005412886737288216 :0.6981344893450243 +as:0.06931392982974462 according:0.052071562389565784 up:0.0511867300210483 and:0.040371568633051955 went:0.03351644485287816 back:0.032358406609281 regard:0.03073407747799069 feet:0.02852138506231652 down:0.026379903432040268 owing:0.02466642634685871 due:0.023695193974505355 go:0.022910973192184297 reference:0.020802802907016128 came:0.019883741951819873 sent:0.019874244915639484 attention:0.019565955494145405 come:0.01885185084678811 given:0.018792390567602263 it:0.017366961307524745 :0.4281354501879983 +the:0.35475813488416985 a:0.2859931422862819 tho:0.028863280300996465 The:0.027127702319042084 this:0.019429077969489505 present:0.01792022923432653 one:0.01679916137123207 whole:0.016258592681749798 first:0.015211054183027439 tbe:0.01385829844215045 and:0.011897460277090396 his:0.010464346666035103 nervous:0.010232674370542701 school:0.008745876307273184 or:0.007410729419921036 A:0.007266587176478692 other:0.00714641136093248 any:0.007134071052835699 great:0.006912488290199698 :0.12557068140622485 +of:0.13084814232797154 in:0.0740836656586379 as:0.0625527229231004 with:0.059577596335708534 to:0.058433603729754965 is:0.05551580107464621 and:0.04946529489577619 was:0.04264000753602388 for:0.04009673021586375 by:0.037684080471064085 be:0.023941707008899252 on:0.02316059851167503 at:0.022644769441950232 such:0.019950936521181326 that:0.017856095877642635 like:0.017386655618315594 In:0.016902219705578994 from:0.016046571451088905 not:0.01205910100844263 :0.21815369968667797 +the:0.14889320980737997 of:0.06819180914657531 and:0.06291272041474513 a:0.04260982136796722 in:0.04025922938900067 to:0.03760675504876298 .:0.020051173313467466 Mr.:0.01938307137317812 was:0.01609486750552612 The:0.0148165972283291 :0.013979599669658175 or:0.013533238798958205 In:0.012601945992296614 at:0.012303112585207046 tho:0.011580271900855038 is:0.011425464234077323 by:0.011358434719151319 for:0.010488202054530816 an:0.010338536964859202 :0.42057193848547414 +of:0.2748488287385706 on:0.11918190592540294 in:0.11342613264678066 to:0.07640019073376486 from:0.04459393737086282 and:0.0379096624835221 with:0.03247144282882459 at:0.03157525510147479 that:0.02799399342779597 In:0.02790621366624705 by:0.022252677708415974 for:0.021360104370876754 into:0.017300770659211803 was:0.01268223188571935 upon:0.012580345901109133 over:0.012525433413110933 through:0.01111621268200402 all:0.011018379880460477 when:0.010515699984938402 :0.08134058059090679 +and:0.0819832759351263 was:0.06811497085684572 are:0.06196380077929845 is:0.03498152200789779 were:0.028045583893868815 look:0.02625806124845012 be:0.02487167099347821 died:0.019311630126433325 sold:0.01920889816167381 held:0.018307354472220795 in:0.017796265939246166 it:0.016694862254161974 them:0.016623281800511563 looked:0.0164631043960132 not:0.01618692918157264 sell:0.01618423349884828 been:0.015547968923104172 or:0.015284464362216733 up:0.014571671999224114 :0.47060044916980787 +and:0.09001490254062033 to:0.08533241089887655 the:0.08522786683449601 of:0.06743681420990877 was:0.03610255023275051 is:0.026032107137329147 be:0.024418712777045652 are:0.020633237373282806 a:0.01950432301594871 or:0.016962663793686338 will:0.015580108581580895 were:0.01430419328554287 which:0.014290274786955702 be-:0.014126607823408431 :0.012757342906650678 been:0.012406436861077938 for:0.01207544969052921 that:0.012057012270617194 he:0.011960437413046 :0.4077765475666463 +to:0.1454211874467092 and:0.13015982502815476 the:0.1160256608005523 of:0.09387930159165679 in:0.05970800719308155 with:0.031239515707580375 not:0.028943034787955044 an:0.026414123460574347 a:0.025853301783679596 for:0.023729855091067443 due:0.016256753908183902 by:0.015994782820430428 In:0.015670945958082935 was:0.015586038802891226 is:0.015460906301383562 from:0.01453092319424251 or:0.013647341167051116 their:0.013616845530790194 much:0.011908406914060239 :0.18495324251187248 +the:0.5085560429151662 a:0.07609391568702543 and:0.035970465238994546 The:0.029095901768174233 every:0.027648485555396892 tho:0.027007562244716777 this:0.024211595698828824 any:0.0219280755316872 to:0.019973914699252384 some:0.014374050354417498 or:0.012709837710829685 tbe:0.01162613814669931 that:0.011584065815634955 plat-:0.01028879695361566 of:0.009788028095982452 uni-:0.009237959006490293 in:0.008741119866169975 first:0.008162481872327465 an:0.008069163966626306 :0.12393239887196393 +be:0.20990346299083693 was:0.19900548468573231 been:0.10254848248171908 were:0.0769330169806084 is:0.04266404715471955 are:0.03951268391002865 had:0.039468396309993097 and:0.03844698800607684 have:0.03722740630698612 has:0.029373682648660335 being:0.02663912757123426 not:0.013214944784896331 bo:0.012542597943425467 then:0.009874381878656953 he:0.0061194542086461575 so:0.005036835304255317 Is:0.004779962179211025 now:0.004445921570131895 having:0.004349153370710218 :0.09691396971347105 +to:0.05617927601811059 and:0.055857379594185866 a:0.04610299447961908 of:0.04311917197173289 the:0.04167861348375637 his:0.034614079705889804 in:0.03276318429539643 be:0.029014547475027838 was:0.028808694084546355 for:0.024962989139820306 her:0.024614875836869717 at:0.021717397289690223 is:0.013904713177539323 that:0.011446009092052447 I:0.010950127104858447 were:0.01025522070849761 their:0.01021386542674251 he:0.010101323769541735 In:0.009561998989780987 :0.48313353835634143 +to:0.12625860892872884 of:0.12522559918817291 in:0.11244620075048402 and:0.08459293074361164 for:0.08044847654592656 with:0.0530818645321859 by:0.03729179739100451 was:0.035956856226902874 that:0.03573372233474222 In:0.032044359025244794 at:0.03189737018418738 or:0.03159039645851595 is:0.025316522211978318 from:0.020876706751110898 have:0.018235842631179208 on:0.0177783674702696 had:0.017145486414906597 are:0.015260727151882758 take:0.014632735797792442 :0.0831854292611726 +the:0.11919516938815296 of:0.07230453158552728 and:0.05781056740443249 a:0.043018564803886335 to:0.031305092790907506 in:0.020848713353460488 at:0.014270110001066288 .:0.012526810245749479 :0.012413283442322082 for:0.011719122709941797 by:0.010808400946589808 or:0.010404172990115616 The:0.01003576004804544 with:0.009811868184449042 tho:0.009295902015355835 was:0.008924239095331684 that:0.008672304223433876 is:0.0085591147338948 be:0.008335143826716943 :0.5187411282106204 +of:0.20162237497118352 the:0.18807907248447053 in:0.08507094463942914 a:0.047106666111228886 to:0.038469266375074945 and:0.029077267263867522 for:0.024189607179395653 that:0.016910729393836123 The:0.016844704386776252 by:0.014835335786241842 In:0.014779095318214253 as:0.013027646326309757 from:0.012763102160123102 with:0.011837570444280191 :0.01121038989492087 or:0.008976397027134599 said:0.00893764224007813 an:0.007635606833941509 which:0.007310284040196038 :0.2403162971232971 +in:0.15354715731855717 of:0.14049187806431457 for:0.07191429803558147 as:0.06702973735045259 with:0.051600521455261644 to:0.05155218921596872 and:0.05020935131599502 such:0.04031564616993886 at:0.03459395411963729 by:0.03328789768889333 In:0.03318918961252707 on:0.032549958150286135 is:0.031573332314398676 was:0.023630611466734633 that:0.02213572791740771 made:0.016938029475765035 into:0.01683591869391577 from:0.015834646279000306 be:0.013527417803280177 :0.09824253755208387 +:0.10132530864253071 .:0.01586153736849991 it.:0.012994963694550781 them.:0.009972326155771085 day.:0.006466314186158732 him.:0.005963072708890589 time.:0.005952754819220498 of:0.005834450921883061 country.:0.005314225508045209 year.:0.0049247550547799 city.:0.004072303040063511 years.:0.003997040955926161 work.:0.003880377182773483 people.:0.0033836246305601453 States.:0.0031455025043576447 place.:0.0030640999552846737 men.:0.0029656503323313246 way.:0.002952433427976742 out.:0.002933009065662241 :0.7939962498447336 +the:0.1629949683266545 and:0.09954479296471382 a:0.07045441765475301 in:0.06750564326219624 of:0.04057339212616216 by:0.03523818878377199 to:0.02750448735667249 for:0.02691442232162243 The:0.01878894080183348 that:0.016724957954564454 tho:0.015718188792597967 or:0.01532959584360479 In:0.014807441086808964 first:0.011951695502890613 from:0.009725637062850255 with:0.00865300696380609 some:0.008135941523124132 tbe:0.008006951671657155 as:0.007759069560885436 :0.33266826043883 +in:0.12292859698084133 and:0.11370060465961765 to:0.10539541493047917 a:0.08377150053123317 is:0.08000054144506166 of:0.07924681218271065 with:0.053149902463120985 so:0.051585486968469076 was:0.03541311506501305 are:0.023815511756098782 not:0.023128754952907674 In:0.02181208771769875 very:0.020307469761574732 the:0.020095171909984243 by:0.018249086531125686 that:0.01641903797487002 too:0.01386150706592364 for:0.01258164542357633 as:0.012168607992539335 :0.09136914368715408 +the:0.11828164249655597 of:0.05261069095666205 and:0.04847755232327664 a:0.0464281958687471 to:0.04122901032817301 in:0.03963881561511718 for:0.035876776541493204 be:0.023886703134073716 his:0.022443503543386274 is:0.02170918680386125 was:0.020324289620107277 their:0.015992748237407338 or:0.014384361563756113 much:0.013527002898674388 as:0.013053374304822849 are:0.012146365005640078 at:0.011932660832346283 In:0.011474531324169077 that:0.011163124887855208 :0.42441946371387496 +and:0.03868242960999506 as:0.031124813427855922 went:0.02352509775927722 him:0.02196555539050794 them:0.018760608639018784 up:0.017985449426794205 is:0.017894175620344187 go:0.017174904667157563 able:0.016756848979943888 going:0.014481672239490295 it:0.014128375989346808 was:0.013277058274565138 time:0.013249953793837373 not:0.012469887553778763 began:0.012465717758716884 way:0.012105610030480113 back:0.012090864562211581 right:0.011941707822828511 amounted:0.011564315359310868 :0.667354953094539 +one:0.1028303141280697 part:0.05963429477052991 out:0.04766456937681193 some:0.031418679026461914 members:0.030764490253327767 side:0.029940657362655835 portion:0.022063658796890564 office:0.020457735219956013 member:0.019726706386316174 end:0.019666887540649894 tion:0.018667441728710307 parts:0.016814747270460957 people:0.014112771422418794 all:0.014072739582212475 any:0.013183573287639892 One:0.013083578354183906 that:0.013024335602903442 account:0.012482348155001894 many:0.012077825070275192 :0.48731264666452345 +any:0.2732175660042478 no:0.15846728274694705 the:0.10562560721717708 and:0.10147676959074894 or:0.057996786706950056 some:0.05033360805828514 of:0.03585478665583451 in:0.029287920997613574 with:0.027735017475713643 every:0.025521184623964348 all:0.02112551569897016 many:0.01708556973708439 for:0.012203913689190675 each:0.011957763419574198 In:0.010702273810720232 by:0.009907569778994523 The:0.00961817938303714 an-:0.008557193032032916 from:0.00848741883644035 :0.023838072536473274 +and:0.19849802182304507 to:0.1739184743673781 of:0.05557364392119837 the:0.03612650725658663 who:0.02281440579785854 or:0.020954480265663926 not:0.019186335385522696 by:0.01653584378400481 he:0.01623248203567499 in:0.015356880315755139 will:0.015117338402974209 have:0.014539325167425383 would:0.013745421982772798 that:0.011852143443643519 had:0.011808917003045554 for:0.010754294197917208 which:0.01034666982483541 I:0.01012542579265435 it:0.009929313559686657 :0.31558407567235663 +the:0.1624290697487703 her:0.0898354319648753 his:0.06792466252176675 and:0.0666628390099805 all:0.06627388528702 of:0.05856055128167504 their:0.038514779622316024 or:0.028190179107771347 other:0.026973127453221866 a:0.026257400088020442 its:0.02609362732157137 as:0.02584068249170594 for:0.023106705160078223 at:0.022937982177477088 that:0.01670824070779544 my:0.016195804271749735 go:0.01585536420646259 is:0.015321205975640318 to:0.014878126444131274 :0.19044033515797043 +of:0.28767355066866834 to:0.08775711267569858 in:0.08678131196995101 and:0.05160598694501188 on:0.04646139928102899 by:0.04519522654900943 for:0.044547789071328545 with:0.03396756772609607 that:0.033699232901107726 from:0.03075346596941143 at:0.027039283056790858 In:0.021061449543044047 as:0.017514234937992545 all:0.012543839382496166 upon:0.011844431150487573 is:0.00998972746569266 was:0.008814315973987914 into:0.008557199930727406 through:0.007781895704231326 :0.1254109790972375 +out:0.0435166427343214 that:0.03742991350586186 one:0.030823655787195915 part:0.03038279733585268 payment:0.027134634425057067 or:0.024703587114967288 value:0.02470200790976024 tion:0.024569714947320305 use:0.02317919173730975 violation:0.022920508317063076 absence:0.020385249475528167 all:0.019517102929373756 people:0.01800580554775542 any:0.017739982678873074 charge:0.017734226285748268 none:0.016667864467015313 some:0.01629379598798719 control:0.01606350523626344 cost:0.016052433786830245 :0.5511773797899155 +the:0.2624645367235509 of:0.12242022561393896 a:0.09488882862764696 in:0.0451271301905298 and:0.04287735252683271 The:0.038996006642744246 an:0.02957541802071681 to:0.0246088960868617 that:0.012268449818065384 tho:0.012257590724818952 Mr.:0.011102060187880064 his:0.010380535024698604 at:0.01003390605285981 for:0.009567254137259736 In:0.009395890659392761 this:0.009312468220156482 by:0.008834479905076041 from:0.008358823163191954 .:0.00749482660627541 :0.22903532106750277 +of:0.32363614391617945 to:0.0702294044386309 that:0.06285067856663976 in:0.06277588525288813 with:0.04239475782804232 all:0.038184103971007494 on:0.037551614299780905 for:0.0360212508562348 and:0.03185130446720562 by:0.02951670723944574 upon:0.026276938631738547 make:0.020066772313915064 at:0.016183961245942218 as:0.015904472482566576 from:0.015466150758160657 which:0.014100152061145111 is:0.013023837537746141 under:0.012889424337421905 over:0.011063298752067486 :0.1190131410432412 +as:0.30134691314879364 so:0.2782051423679617 how:0.08534983549772905 very:0.047721331262570596 is:0.033560883486361354 was:0.026250964465762812 too:0.024283905620072307 and:0.02250364719534472 be:0.021102759723119906 a:0.020969363352978908 not:0.015426632923214835 How:0.013484164851738452 of:0.013091565962513216 are:0.011977444888011895 but:0.010972475179039855 been:0.010629585490368467 it:0.008394326403598069 So:0.0075827376638399144 that:0.007536277926315354 :0.03861004259066496 +of:0.14134021128274424 any:0.12134982540026734 in:0.08228162669766739 no:0.0718666166143443 the:0.06868254752535596 that:0.05253269788130906 some:0.04668344917627884 and:0.04454569117904434 only:0.03877662867681982 to:0.033813224299874906 by:0.029071013354693018 for:0.025259145634437426 every:0.022346778756462998 but:0.020941103189437652 a:0.019380471732197504 from:0.019134859523988305 In:0.01901768677735395 than:0.01651329329071256 each:0.016029804420403245 :0.10943332458660712 +it:0.09937207286538377 they:0.09227258641429736 and:0.07560819287494493 which:0.07538754992361744 he:0.07161377340802166 I:0.05642708060351296 you:0.05597066998242024 that:0.05320159069169627 It:0.05208084209903893 who:0.034156212791274586 we:0.03154850410455563 she:0.019153292089139688 He:0.015464250243397343 They:0.014752420070134458 This:0.010771287362642499 there:0.009151810241150166 this:0.008623301833691782 as:0.00804741563931392 We:0.007240351638436743 :0.2081567951233296 +southeast:0.1856686086863225 the:0.16106861292084962 northwest:0.13554349191440995 northeast:0.11505504095118142 southwest:0.06063469984620893 a:0.042715638553519876 east:0.030054945905154076 west:0.029848296470532106 and:0.0178913094107456 section:0.01535544164135761 to:0.01403924786921692 north:0.011334101589937395 south:0.010521808763989426 Northeast:0.008501291731093409 The:0.007695194379761247 Southwest:0.007379027097319414 of:0.007336861887890539 tho:0.006407082422614403 Northwest:0.006349517016682611 :0.1255997809412129 +to:0.15897643407266607 have:0.11129893370180567 had:0.10080984132484723 has:0.08512036276312981 will:0.08435347495393021 not:0.06035859573371976 would:0.055845031769540907 they:0.03385345224435983 may:0.029844544800553593 should:0.02805415169400634 and:0.026464257965833144 I:0.024998791642581047 shall:0.02308773450939061 you:0.02051354397326968 we:0.019943477437087936 must:0.019533156928782113 who:0.015620890708359429 be-:0.014977412713881921 never:0.014750090737985581 :0.07059582032426912 +number:0.07272207875357481 day:0.06535820578514934 state:0.047111026615916256 amount:0.0433092944254614 city:0.03514905063576789 State:0.027809808167364284 board:0.02627238856949337 out:0.02436247694565165 county:0.024342844605609835 rate:0.023228565188285387 place:0.022936918450033685 pounds:0.02081491229942904 sum:0.018634521555192688 line:0.018586233364820667 County:0.018290761442859755 way:0.018125083548767063 case:0.016791893931979603 tion:0.016371907376202293 matter:0.014532726621826076 :0.4442493017166149 +is:0.13471811563485037 of:0.10121582241821445 in:0.09185674700949485 was:0.07830244623043033 with:0.07514837013643844 and:0.06163263754840727 as:0.046813410600753766 to:0.044870060754807074 for:0.040044696382703325 be:0.03720633821688905 by:0.027796384423377736 such:0.021218719714667614 In:0.02077941022013008 Is:0.017238825140169202 have:0.01666282816365968 had:0.015473055049763526 at:0.014758503054497121 that:0.014643860446513017 made:0.01332183297605101 :0.12529793587818208 +time:0.01823034815657986 large:0.016801423783792416 good:0.01464920526460344 hundred:0.013338886160997628 life:0.012958277587190134 men:0.012813710662021359 up:0.012095641992562396 more:0.011469366948818309 water:0.01118753018449475 strength:0.010694816171907285 long:0.010692042726792883 peace:0.010676784384341399 one:0.010145933304269768 man:0.009221679267213501 it:0.009052635966985753 food:0.00901369285524471 character:0.008958371476632967 out:0.008800840045239062 in:0.008578263855564563 :0.7796205492047479 +the:0.4071374189315913 and:0.06449181461132415 of:0.02892866618288876 in:0.028670005984162618 The:0.02603617389223924 tho:0.024993820467459137 a:0.023579040051412606 to:0.01755553213771617 on:0.014626070241060114 by:0.013447843485786471 or:0.012794166593089693 tbe:0.012024509152999897 :0.010353482361299817 that:0.009291482237329618 In:0.007938246807075932 from:0.007526799010378873 other:0.007469196869028889 all:0.006409533041696086 for:0.00626887758057738 :0.26945732036088327 +the:0.1209274926804341 of:0.11642704741038282 to:0.07665036299464342 and:0.05951473605415944 a:0.04570850511844254 for:0.03904899188513177 in:0.03863191529831529 his:0.024532963227264587 be:0.021268595340355974 that:0.019899855076303746 their:0.018138204786949795 was:0.015575488577714586 at:0.013722215043739626 or:0.013113996348126693 is:0.011073401633171798 other:0.011049297399637741 by:0.01069348476584563 no:0.010147599615925767 with:0.009923236693418982 :0.3229526100500357 +the:0.35682443057266494 a:0.17947901472398708 of:0.07605821764456255 his:0.04102313609251497 this:0.03416104748752743 in:0.02642363942475791 and:0.022966154762464358 their:0.0186669145438881 tho:0.0169878509946348 very:0.016074600890180656 its:0.015536871628181055 to:0.015384365233824762 your:0.014043756506160689 any:0.013164920817909001 our:0.011932525013000283 that:0.011496361061098597 such:0.01017599214599777 or:0.008140448123040997 my:0.007816302601989669 :0.10264344973161436 +the:0.3749038995196521 a:0.17684791985663276 no:0.06830013816010197 his:0.04100324021727633 their:0.022958413430276135 is:0.021340650980815043 and:0.019785215399965007 all:0.01678443744225583 was:0.016622518083619454 from:0.016116906292398585 tho:0.01589552856806152 be:0.014038909525280764 it:0.01380697658230827 not:0.012965437716680177 any:0.012836276443261503 her:0.012434277250786416 very:0.011898063423359468 or:0.010516399630923651 my:0.010126826724536114 :0.10981796475180897 +to:0.09864282010030183 the:0.08375297126946753 of:0.07074571151673052 and:0.06779046829403 a:0.02766650927741597 in:0.021670314456411932 at:0.021392828982420006 for:0.01627599403114278 is:0.015107338441904122 he:0.014818877918256685 was:0.013808540905081488 by:0.013132601340090633 it:0.012796195965848819 I:0.012723560421513859 :0.0121914922721236 not:0.011777366450725432 .:0.011011346691779235 that:0.01092359583028988 with:0.01073896800850032 :0.4520324978259654 +the:0.21945513285776722 and:0.19185518191984613 of:0.08288043276741974 an:0.037892909478506556 The:0.02823717843603387 than:0.02547794576448935 to:0.024539696110471132 with:0.02311706488526584 their:0.022334853593854464 for:0.022148692728659682 or:0.021594938847741062 his:0.019560200960016566 is:0.01886090447123475 some:0.017498254520239186 by:0.01719861372442918 a:0.013945180574957966 in:0.013782553548878676 from:0.01361579443028434 at:0.012656630726223434 :0.17234783965368086 +the:0.2076327671034883 of:0.11099113721223451 and:0.09270967614790306 a:0.0463474137990781 or:0.042080309863872734 in:0.036805108845025615 one:0.02962035075945609 for:0.029385399002860926 his:0.027219003791943298 two:0.022623018532100313 some:0.022100897228626456 other:0.02050731878381079 few:0.019387955162173724 tho:0.018549228740411844 said:0.0169900802727366 many:0.015939909370592233 The:0.015512981362285053 three:0.015266367209657777 per:0.014565553914967689 :0.1947655228967749 +of:0.09129790931378902 the:0.07369883040827747 and:0.047842263382354346 in:0.04189055351593407 to:0.04045875475680249 a:0.03542341257202578 be:0.02020462051672066 for:0.01979292654746225 was:0.01760256398103379 at:0.017380150555488715 is:0.014984483003968216 with:0.014047653760730413 by:0.01374644383819499 :0.012670486581795598 In:0.01200961464556976 or:0.011563835749786333 from:0.011391516893522809 are:0.011273104484969465 that:0.010755276030689069 :0.4809655994608848 +at:0.6291083489508381 the:0.24678916305439313 of:0.017485176165436316 The:0.012996063676718376 At:0.010001254127015174 a:0.00995216819800076 to:0.0062190259321659854 tho:0.005976092612516112 nt:0.005502114307636961 and:0.00455757768325543 our:0.0032814356505216262 in:0.0030227869165018154 by:0.0027688209918389946 as:0.002731109275408028 tbe:0.0025529890281578023 its:0.002474220382391611 his:0.0023001698590946664 for:0.002242436957907646 very:0.002196260313395649 :0.02684278591680579 +of:0.3092865416292319 the:0.2551396800253614 by:0.06625038891452256 in:0.05547938492966534 to:0.04828587563069433 and:0.027846449765577368 with:0.025599816144808527 which:0.024773050752594672 for:0.02360038512467391 that:0.02256860274305116 The:0.019205757447966907 on:0.012970283742862033 tho:0.012522506526332508 from:0.012172485723036456 upon:0.011689974033209247 under:0.008813928552385475 In:0.008217803643866511 is:0.007736454568676169 against:0.007130783154330448 :0.03970984694715309 +of:0.08471158294608466 the:0.0784438437743542 and:0.06720291665013167 to:0.046122408044339536 be:0.04046161143939536 in:0.027015564105553006 or:0.02435480735182264 for:0.020708581282078056 re-:0.019876814990101653 a:0.019001442367514877 was:0.017086966244810257 he:0.01604154291250958 that:0.015254506438979668 been:0.0144517087438338 are:0.013598540775756165 :0.013261930010872289 is:0.012996389654437859 their:0.012513526857303347 by:0.011245002537989195 :0.4446503128721322 +of:0.14524053022063907 the:0.12523590256116648 and:0.0999906265649439 to:0.050285759995912574 a:0.026814742863083718 or:0.01875680263299972 with:0.018502213470091657 on:0.01809307499503965 in:0.017572755394134543 by:0.01673125720291451 at:0.015512951623698153 .:0.015168865428082408 his:0.014541123898091516 The:0.013797789284013243 for:0.013301954333515057 from:0.01171196149869181 :0.011394322670898937 an:0.010938575475550303 that:0.01030651175588001 :0.34510227813065275 +hundred:0.02334136986593815 up:0.005482494641173394 men:0.005366536521246011 Hundred:0.0047587970519216575 John:0.00441808156134956 William:0.004390720675819281 him:0.004016828614280843 ;:0.003997112205305733 due:0.003721199871732 in:0.0036582900032443304 time:0.003637206863828461 James:0.0035594902370151707 out:0.0034878448964120057 .:0.003467980723571515 1:0.0032804584819785204 day:0.0032444781513863933 ,:0.003058139385740603 :0.0030314555521939613 Robert:0.003005471634785646 :0.9060760430610768 +and:0.07558940021936399 recorded:0.030196237618668006 was:0.028917161578042846 made:0.027969746247669736 that:0.027730098932509103 o'clock:0.025060522019555328 up:0.023026552239529506 is:0.020398277211376416 found:0.02003101797656537 placed:0.017482208134164214 out:0.016937164562539058 place:0.016819459500107596 interest:0.016629321966808677 him:0.016002796715253755 situated:0.01573420479581609 it:0.015128305982428461 them:0.014715943643665314 part:0.014646613000297721 interested:0.014450471929902294 :0.5615344957257364 +the:0.5427632024506083 a:0.09011926012433953 The:0.04049570901572984 and:0.03910508600772679 tho:0.03136005115726523 of:0.019504949879777373 in:0.01810295318305019 this:0.017412055059117682 large:0.01568849265801613 said:0.014646601666819843 tbe:0.01318758932122115 or:0.011217910156103874 great:0.010572896325491203 certain:0.009477809383938144 first:0.007977033103315642 any:0.007053483329637146 whole:0.00567803391948781 :0.005657839025540774 In:0.005414164688270298 :0.093564879544543 +the:0.3728639307801489 said:0.04541051917676681 of:0.03812668051218234 and:0.030928426590310525 The:0.025948912073157974 tho:0.01977739116598694 by:0.014654215370981619 this:0.013985363987379675 that:0.01367467514432924 National:0.013386214008820854 tbe:0.010849716704558721 a:0.010611055734731227 our:0.008688688503271178 to:0.008390946149330591 in:0.007671873982968359 Pacific:0.0070509916239077 Mining:0.006307088854968581 :0.006248152408179469 State:0.005836506874428631 :0.33858865035359065 +and:0.13699508757089135 that:0.12121894498395541 which:0.08878232954860249 when:0.08470366025246065 as:0.06167665285520732 to:0.04264295360965711 will:0.039160562226951974 if:0.029213173381436284 where:0.025550172743637717 but:0.02524517877392115 would:0.019606137610517122 said:0.019093412864492662 When:0.01580740622270019 shall:0.014559528910961 what:0.013884481785835321 whom:0.013641309808683411 should:0.013243731182600365 before:0.012687216635933177 may:0.01242779152371666 :0.20886026750783862 +the:0.2645245107959927 a:0.1374937910003766 at:0.11920639752465512 of:0.07106809074020634 and:0.02977013824621451 in:0.022245264760226497 to:0.02097371673534522 tho:0.016790444675107166 The:0.01578280446701471 an:0.014539954680202792 from:0.01077225983152562 tbe:0.00968213461990985 :0.009417964305671893 or:0.008776970746495423 for:0.008706869097211124 his:0.007910086268043907 this:0.006855507215239845 A:0.006505538794080977 In:0.006368022016015845 :0.21160953348046385 +and:0.044173368511180755 protest:0.02613509655988135 as:0.022624752035000577 voted:0.021849023444774 be:0.021065007776768507 war:0.019510223632321664 judgment:0.0192042339415177 charges:0.017192436055994572 is:0.017185271269812376 fight:0.016867016193037414 up:0.016687171758418565 made:0.01649912326047745 vote:0.016112285471049356 claims:0.015557024120520117 not:0.015259262439516296 was:0.01393268024712257 guard:0.013057130763846214 out:0.0113726852220453 assessed:0.011280706800501767 :0.6434355004962135 +of:0.08977642989244587 man-:0.06313761531391948 and:0.048355918447653856 encour-:0.04773232004333097 dam-:0.036608159998630437 the:0.027240285194334652 Mr.:0.02213882219423566 .:0.019724168595555286 in:0.016522529978690758 an:0.016001899550255952 to:0.010643921272633876 his:0.010024601796090028 :0.009989757194176028 her:0.006642173370730643 with:0.006069261376432446 :0.0057149083930251015 on:0.005497082087420608 was:0.005087078604565174 at:0.004802822722774112 :0.547290243973099 +the:0.19379594192248137 a:0.1586032120205081 at:0.09936221106222416 and:0.04746515123521478 for:0.04403564836532673 of:0.03690678602369703 an:0.028975324883085275 to:0.02598654871092296 in:0.019136644603326175 any:0.019104256234298476 which:0.014284429894487801 that:0.013787919950912133 be-:0.012766191135000403 con-:0.010177439919331491 his:0.010159969504382447 time:0.009891615243818444 from:0.009845403726232485 :0.009677990534648425 tho:0.009592946041824542 :0.22544436898827677 +the:0.5988143561124475 The:0.060267388126309496 an:0.045444614485668396 of:0.04398742772580055 and:0.03628093551144086 tho:0.03257506480212775 on:0.025839930722033902 in:0.019073260308950284 tbe:0.015769653636763848 at:0.012235002046083692 said:0.006767444739996054 to:0.00660055015274087 a:0.006569589137410329 In:0.006199173817495108 by:0.006036366759688899 with:0.005385721685881761 from:0.005361088561744508 our:0.005308217230695439 his:0.005020200485949302 :0.055464013950771406 +a:0.16371715261604847 to:0.1194898695350305 the:0.11799828653708272 and:0.08535725177196772 of:0.0713565392125032 his:0.05789750467251995 in:0.032745919711984 I:0.03115433546391579 their:0.029216094264839176 for:0.027525858731605447 with:0.02626230680491904 no:0.025628944174620926 or:0.02172737136446663 that:0.02088036761739807 her:0.017996329364887376 any:0.017734344537056794 its:0.015637143437431434 The:0.015497672510586745 who:0.014175815536413967 :0.08700089213472204 +be:0.2646518319944028 been:0.1565393378036164 was:0.13777056878469557 is:0.06318755556083114 and:0.04534163151470778 were:0.041026634624147525 being:0.03366779079898917 are:0.0240106172295775 as:0.0176140801534367 bo:0.015520455394628128 if:0.013335886552134238 not:0.013119534861902324 ever:0.012927100618240388 Is:0.012830307863238036 well:0.012398582240023926 have:0.010209210993490874 or:0.010121758687219052 now:0.009571489119736057 once:0.008545488150733761 :0.09661013705424872 +hundred:0.014976798473926125 due:0.014270968040269928 made:0.008844278242278979 title:0.008392253639098105 ;:0.007783567039035302 dollars:0.00742967415305443 men:0.0068799410029038565 and:0.006819602035289303 interest:0.006787491440451463 day:0.006412003010251983 up:0.0056827847605310676 land:0.0053702352412490564 mortgage:0.005360301320092651 costs:0.005179412827525771 time:0.005009886455642577 1:0.004471073286245405 William:0.004438018219229756 dull:0.004357054810114758 it:0.004283691684256805 :0.8662509643185528 +sum:0.03352282876311118 number:0.028116684882597106 line:0.019995206059833036 city:0.01946514558931857 out:0.019275318828420953 day:0.01666865340772654 county:0.014872697538657208 amount:0.013254184849875051 Board:0.01252325449624941 town:0.012449555905674143 side:0.011663975251122375 part:0.011517157473718155 County:0.011460540331966697 state:0.011087331502382173 City:0.010878919191854432 purpose:0.01081028255427907 and:0.010297866493795984 way:0.009848747943663767 name:0.009522170936943183 :0.711769477998811 +the:0.3429343577394249 and:0.10862917977015948 of:0.060890216800252396 to:0.03953218079930358 a:0.037708993461633554 his:0.030201007050687463 The:0.02920165500864169 tho:0.025870096037138947 that:0.01880064015463003 in:0.01788222617477756 their:0.012552500062849588 or:0.011804252917979699 her:0.010449210617112122 tbe:0.009976013804025324 its:0.009567069247087246 my:0.009521154180370842 this:0.009354904405756795 our:0.009136377345208124 for:0.007707922454147459 :0.1972800419688132 +to:0.4994806899562168 will:0.08828360295893468 and:0.07303639004107802 would:0.052247319516868486 not:0.03732114319020758 can:0.026995733367534216 should:0.021000933648362908 may:0.020848117077048357 could:0.016960451159396706 I:0.015324842637849551 shall:0.012718118726507773 must:0.012174855005888292 they:0.01120643827024535 you:0.01037280405621637 we:0.010366645258111071 who:0.010324959264762817 To:0.01012101141056912 or:0.008716722722945023 might:0.0069605618004585194 :0.054538659930798344 +of:0.34028080724173443 to:0.12434982953963776 in:0.11112986970962602 for:0.0460879240112667 and:0.04321091813590075 by:0.04044733021653193 that:0.03370015103290851 at:0.029517172195186403 with:0.027053996689529316 on:0.02579571627596382 from:0.025113068778660395 In:0.024993830777931204 upon:0.009758617486295806 into:0.009299998624285022 over:0.008386906522103346 as:0.008013253021552787 through:0.00769493502147405 before:0.0072689070842122715 which:0.006885967364225337 :0.07001080027097412 +the:0.4843020751350846 American:0.08297468703944191 our:0.059310167817105554 of:0.040399876275109194 tho:0.02390221976146265 their:0.021609256711702683 his:0.01868585235768685 other:0.017545570495328157 its:0.014348876285846641 and:0.014338822516012277 own:0.013381863798474536 these:0.012704792244916384 a:0.012661305623548754 city:0.01184017499101426 great:0.011325758028069802 this:0.009861682488441605 county:0.00916910135080071 Southern:0.00837605759482879 that:0.00809362257671817 :0.12416823690840645 +to:0.15360214717636073 the:0.1346464162182798 a:0.12914389599982873 this:0.11436106678048173 last:0.11347514425566348 next:0.07450535197708184 and:0.038934774852015214 or:0.029420912356421955 that:0.021418420183820952 of:0.019524815888958682 on:0.01725242076441065 can:0.017026489704294788 his:0.014964713715432773 could:0.0129341811077879 first:0.010134534792583708 present:0.010102853365546768 will:0.009892221110352003 one:0.008642611954722688 their:0.008582383934377522 :0.06043464386157808 +of:0.12990676972171378 and:0.10380825532292418 know:0.09457604455321356 to:0.07866983822842714 see:0.04719258218655984 for:0.042498503865104446 just:0.03645901054901103 in:0.036083589483638795 with:0.03242665213336893 but:0.03201522527611575 from:0.0290194935188653 do:0.025536684167952142 him:0.024709538669033193 or:0.023602192053327933 is:0.02080470255211109 Just:0.020290631329387552 knew:0.01961696144373453 tell:0.01832106269258953 matter:0.01816750720498819 :0.1652947550479331 +the:0.34982033801383794 a:0.29192320839667635 The:0.0741216023683105 of:0.072003332335493 with:0.02168016539300539 A:0.018939467127735022 his:0.016229894558068746 tho:0.01550724058046307 any:0.014466452428599633 our:0.014193394878328736 for:0.01172378924383873 their:0.011659376441190967 this:0.0111356237238045 and:0.010820337540412953 by:0.008255346488608147 no:0.008166171130799468 to:0.008024984811034428 some:0.0071752662301068585 other:0.0068790614712794735 :0.026274946838406085 +the:0.16287760685838365 of:0.0883592780729449 to:0.0618987346693935 and:0.05423685233212741 in:0.030811253892523358 for:0.03057359609188714 be:0.025098115820027647 was:0.01826945122296575 is:0.01662970283289366 a:0.016448402520667066 or:0.01633619095301082 his:0.015510346299682681 their:0.015084175217362073 are:0.014656254371894712 been:0.013019491851438341 were:0.01267572744006931 that:0.012270302451397866 on:0.01131798809455223 :0.011150587255169986 :0.37177594175160794 +and:0.1270277263041503 was:0.09669799562611073 be:0.09057853390789415 the:0.07516257336717092 he:0.06869955174051835 were:0.041279023284951845 been:0.040179608083668786 is:0.038113267109826036 had:0.035693384826181326 are:0.028541194974432332 has:0.02262604729267201 have:0.02262366482504181 then:0.021864250514679367 being:0.018815620706593757 He:0.01597780624493833 I:0.014977848972014205 who:0.01234650983775075 lie:0.011085547545915599 or:0.01098563716896587 :0.20572420766652355 +the:0.07420799995790092 of:0.05120718407580604 and:0.03077362759236798 1:0.02287111249465892 to:0.017259949985202517 said:0.016315768964782706 2:0.014143267916523991 .:0.014020919549126968 at:0.01122233689941361 State:0.011152379560475432 11:0.009428159508775185 :0.009010854937977713 J:0.008713386998699113 8:0.008514293566238321 States:0.008179176814935104 D:0.0077544974232640175 :0.0077474082294305465 21:0.007620236378707405 City:0.007208525048683927 :0.6616489140970296 +of:0.07803494641360152 the:0.07313055978803586 to:0.06390641429986992 and:0.05842380358718814 in:0.03177671627511653 be:0.028771826958844535 for:0.025130064237298185 was:0.020323404820387102 he:0.01880446837676694 or:0.017730336826047747 is:0.01750209991937908 that:0.01711596445279722 re-:0.014316436690021386 Mr.:0.013501454476368626 a:0.013233946331502863 been:0.012708331380373174 their:0.01179492126599829 are:0.011706277532325506 not:0.010485172340176957 :0.4606028540279004 +of:0.09671162261905393 and:0.08836599868067532 the:0.042958040737784586 in:0.026674934043666783 or:0.017676309835399733 be:0.01625547790461187 for:0.01536543524353033 was:0.015004182933255292 two:0.014968177901121104 is:0.014526916082988046 are:0.014439104009038048 to:0.01431832955519062 all:0.012569915134220138 with:0.010775129939563357 :0.010084041880854823 In:0.008234252504539645 were:0.007845557920282789 a:0.007797844329022655 this:0.007487254533483658 :0.5569414742117172 +:0.06298096151118532 it.:0.018035655099927786 them.:0.0170887654994186 .:0.014019041718612308 follows::0.009201547954604103 No.:0.00878172782555995 ::0.008596111028911956 him.:0.00810105438344272 day.:0.00724322605112363 year.:0.007226959762183922 time.:0.0071884041136199535 and:0.007079570662547553 country.:0.006975038941721871 years.:0.006833583225854588 work.:0.006002826834941214 one.:0.00560418902642618 me.:0.00536021252165714 life.:0.004970248410376572 city.:0.004835648880998971 :0.7828752265468857 +the:0.13476476805868978 of:0.10335620763565354 and:0.07298982432450123 a:0.05493260493485237 to:0.03943912225916912 be:0.027111183577981188 was:0.024964516309082224 is:0.021318618791884996 in:0.01997329939240196 or:0.017463858114689805 his:0.016747288852367714 their:0.014456994452191905 been:0.014017672545055988 at:0.013647384018866159 are:0.013377045933421108 an:0.011360803488482838 for:0.011045703440883426 :0.009853875281147081 as:0.009770129219928711 :0.3684090993687488 +:0.061995726648804476 it.:0.03220582519348936 them.:0.015740982688812587 .:0.015543187012800903 him.:0.013262725072597376 ?:0.011292695221546347 and:0.00960775656106083 ::0.00866023108341873 her.:0.008238551918723564 year.:0.00803069695198428 again.:0.007524536883842422 life.:0.007298754320487367 time.:0.00722895406589919 country.:0.006831941310388015 all.:0.0062482149609005945 work.:0.006025668840959631 world.:0.005839404169438499 tion.:0.005798731905577137 follows::0.005593507447509571 :0.7560319077417591 +and:0.027556902906744438 ;:0.027125720427666727 it,:0.012364579603348039 that:0.012241955023945279 :0.011802635944415654 them,:0.009955026582595505 is:0.009519799166018274 it:0.00889864798664785 is,:0.007912303941927521 but:0.007421036778228363 ::0.006757211455140847 ,:0.005934530742689944 know:0.00571861879663367 It:0.0057148627073882454 as:0.005305087919319443 was:0.005238319371053464 and,:0.005185317840310152 see:0.004717660304586363 which,:0.004644229662489126 :0.8149855528388511 +linear:0.11422641895900727 the:0.07319697130914875 140:0.0684318343807226 hundred:0.03446866583553263 two:0.03166814427075433 three:0.025026421620498635 100:0.02470135117454522 six:0.021487749120990638 four:0.020410885331867485 ten:0.014289844670573988 fifty:0.013971065502156241 five:0.01393039457139186 300:0.013824498183809068 few:0.013732045199481865 square:0.012734046260387093 50:0.012590632118882922 120:0.010823437436284306 twenty:0.010754355500209667 thousand:0.010456358805031606 :0.45827487974872383 +of:0.09129790931378902 the:0.07369883040827747 and:0.047842263382354346 in:0.04189055351593407 to:0.04045875475680249 a:0.03542341257202578 be:0.02020462051672066 for:0.01979292654746225 was:0.01760256398103379 at:0.017380150555488715 is:0.014984483003968216 with:0.014047653760730413 by:0.01374644383819499 :0.012670486581795598 In:0.01200961464556976 or:0.011563835749786333 from:0.011391516893522809 are:0.011273104484969465 that:0.010755276030689069 :0.4809655994608848 +to:0.0998355652742838 and:0.08081752258110021 the:0.05758047417523592 of:0.044657746561579045 a:0.018071670448681507 :0.015425260369009704 will:0.015203614545293875 or:0.013205883443709305 .:0.013060994810104186 be:0.012866945128921668 not:0.012106276840726373 he:0.011239687098139856 was:0.011005191507551882 who:0.01047224228382273 have:0.010303424715479088 I:0.010030232274357535 in:0.009813058182437292 would:0.00972974525257713 by:0.009597991792618197 :0.5339764727143707 +the:0.2302002734640664 of:0.1439649136291198 their:0.07723349272286746 his:0.062252034257451 a:0.041740086148817385 its:0.03421868700781485 and:0.03219669198308766 with:0.025336715570947584 such:0.024192500260030274 in:0.022867872107445376 have:0.02015686895420162 to:0.017996874799041926 this:0.017008207343103602 by:0.016355753046378717 motive:0.016119752069322986 our:0.01580460321883558 political:0.014892414746336244 for:0.014831744728394457 purchasing:0.014758930745756231 :0.15687158319698083 +and:0.11940382400914949 as:0.05452670054162396 day:0.025423357150570584 was:0.020114377635347656 that:0.01902962179682987 is:0.016206403115214957 or:0.014901710032861625 of:0.013786892726700618 hundred:0.013717292113355387 ten:0.013123169934136071 four:0.012136132037517752 one:0.01204092672180695 about:0.011918718268861324 have:0.011527056694758559 south:0.011405411304417388 five:0.010680055397095498 1:0.01056770108217735 :0.010254466860051497 had:0.010247631996066788 :0.5879885505814566 +of:0.10857383854225484 cents:0.10753757882279824 to:0.08343653860393405 as:0.0726341739035568 and:0.06324380197917805 in:0.052887117182496474 for:0.04981596672645273 that:0.03779815800982792 at:0.03424894111430783 on:0.03402858888337441 was:0.0313684646351546 with:0.0229803364799972 is:0.020213753164604796 by:0.018881352069903195 from:0.018834157183029908 half:0.016991253529630386 be:0.011661329423118821 had:0.0115887956881688 such:0.011437082327413549 :0.19083877173079744 +to:0.26327250966474347 of:0.15585757962397512 at:0.07895572655945961 with:0.052149355247623055 by:0.04068303224662595 for:0.04037926048881812 in:0.03946682367900567 that:0.028942105803608432 and:0.02880763024270273 from:0.02481751065886222 as:0.013498740835246518 In:0.012070005306756258 upon:0.012002130036092273 on:0.010580994869561254 all:0.00846904978273622 is:0.007130581891680747 At:0.0061727479671391935 or:0.0059930677940189135 about:0.0057082156855188144 :0.16404293161582548 +10:0.050439347047456826 50:0.04886250450268208 6:0.04774154507137862 5:0.041867917831083616 six:0.03563534599386545 cents:0.03431586490221135 20:0.034228252635754734 ten:0.03161786449528014 five:0.02929904190580962 25:0.026572881133924812 1:0.025271272271980897 40:0.02341815175997092 30:0.022594266858268708 4:0.02166697930273891 2:0.021393107730000784 8:0.021055464180663154 3:0.020701379458021377 12:0.019787484303452434 7:0.019106686544562625 :0.423424642070893 +the:0.17070603098176837 a:0.08254512569864031 of:0.07122109665750516 and:0.05138751003380913 in:0.03389450763637271 Mr.:0.032120929973392984 to:0.03103190366096287 The:0.02834692122646083 his:0.018190278061007453 .:0.014925281745808436 for:0.013220116767224321 by:0.012320909303742994 her:0.012137727452112265 tho:0.012039611098019445 Mrs.:0.012023414538758647 that:0.011946022814257605 Miss:0.011659915347938136 with:0.011423686499292955 an:0.01038901789333808 :0.3574699926095873 +of:0.2637072447327858 the:0.23293402811432004 in:0.09129874857522094 and:0.04913652974469891 for:0.03236622848722774 to:0.02157082943148957 from:0.020512827235228483 at:0.01790176203121852 with:0.017768950901302163 said:0.014254355401383806 In:0.014146074551281298 on:0.012715034698314089 his:0.010685891188474489 Mr.:0.009697161191289194 tho:0.008872108957832778 .:0.008795144000901754 by:0.008198005712539886 D.:0.007071712499642968 their:0.006718384749532858 :0.15064897779531472 +one:0.1028303141280697 part:0.05963429477052991 out:0.04766456937681193 some:0.031418679026461914 members:0.030764490253327767 side:0.029940657362655835 portion:0.022063658796890564 office:0.020457735219956013 member:0.019726706386316174 end:0.019666887540649894 tion:0.018667441728710307 parts:0.016814747270460957 people:0.014112771422418794 all:0.014072739582212475 any:0.013183573287639892 One:0.013083578354183906 that:0.013024335602903442 account:0.012482348155001894 many:0.012077825070275192 :0.48731264666452345 +the:0.16287760685838365 of:0.0883592780729449 to:0.0618987346693935 and:0.05423685233212741 in:0.030811253892523358 for:0.03057359609188714 be:0.025098115820027647 was:0.01826945122296575 is:0.01662970283289366 a:0.016448402520667066 or:0.01633619095301082 his:0.015510346299682681 their:0.015084175217362073 are:0.014656254371894712 been:0.013019491851438341 were:0.01267572744006931 that:0.012270302451397866 on:0.01131798809455223 :0.011150587255169986 :0.37177594175160794 +of:0.06922659626105922 and:0.058757745176799964 the:0.05266837791499116 be:0.05078292074396109 was:0.049598479620158904 to:0.045199752118281686 at:0.030183257524331424 is:0.02834236454985444 a:0.02776920404448483 were:0.01993161288278036 are:0.01745742830539849 for:0.01697100801536157 been:0.015647614046017295 1:0.015084283846353968 in:0.014342118988425438 with:0.012269981060827731 :0.012265028643328192 on:0.010814793378588454 by:0.010157237630272528 :0.4415301952487232 +the:0.662985222248271 clerk's:0.04049756732049179 this:0.02808502455991605 The:0.02663285328875923 tho:0.024244388343976176 in:0.02252854867403744 an:0.020675064538103534 tbe:0.015164916268778108 Clerk's:0.014396478402420483 post:0.0099349525980049 a:0.00982493927862965 his:0.009818682505420938 of:0.009589349669221273 surveyor's:0.008335400630961495 and:0.007703425635513313 In:0.00601318170104442 said:0.005726446634735744 any:0.004942330478584473 or:0.004840993361970857 :0.06706023386115925 +out:0.03221832275495845 instead:0.030552329320369154 part:0.025151416516735164 number:0.022725496094771126 side:0.02173533120225544 purpose:0.021007267143569226 Instead:0.01616877212297706 one:0.015576041538506316 matter:0.014340018918544292 question:0.01431224954724238 is:0.013689260047574224 line:0.013280581479222042 charge:0.012808133046403743 tion:0.012246983386009987 that:0.012142016599454936 account:0.012044447494381574 case:0.011767974304506035 be:0.011627612346787348 way:0.011438983593406352 :0.6741667625423252 +one:0.1028303141280697 part:0.05963429477052991 out:0.04766456937681193 some:0.031418679026461914 members:0.030764490253327767 side:0.029940657362655835 portion:0.022063658796890564 office:0.020457735219956013 member:0.019726706386316174 end:0.019666887540649894 tion:0.018667441728710307 parts:0.016814747270460957 people:0.014112771422418794 all:0.014072739582212475 any:0.013183573287639892 One:0.013083578354183906 that:0.013024335602903442 account:0.012482348155001894 many:0.012077825070275192 :0.48731264666452345 +the:0.2999701819271307 and:0.07494787599200174 of:0.052878816600420875 in:0.04718061633198418 an:0.041519248328783905 to:0.038479741299853425 for:0.03826510984895475 tho:0.030409072378694165 The:0.02782554789668292 im-:0.02384341061529138 this:0.022566633479396702 by:0.02105423296736454 our:0.020429898049494324 that:0.018966220145657426 their:0.018356211252802023 its:0.017411744991501728 a:0.017224933894320886 In:0.015045497247849834 with:0.01337359038547673 :0.15925141636633777 +the:0.33970600469337764 of:0.10701178306472237 The:0.092771560347571 these:0.07408405085599104 and:0.041423375590085146 that:0.023386197464338024 two:0.01987162337962812 These:0.019710734653364512 tho:0.019100837478878595 their:0.016336858111551326 other:0.015618240750917282 his:0.015114431700409235 young:0.01449444600123257 all:0.014407595801828424 our:0.013860987473083008 few:0.012508975187233706 those:0.01235488883405509 last:0.010854329932082993 three:0.010030111284746 :0.12635296739490393 +to:0.2453265048341004 the:0.10983882020617104 will:0.08154273638861977 and:0.05526730998591187 not:0.05027013680985831 a:0.036255857193571966 would:0.035439968340914424 of:0.025223891790451234 an:0.02223894241056726 or:0.02098870139702029 may:0.020709134986365046 shall:0.01707472281497012 you:0.015878490963086734 I:0.015236801642101207 can:0.014091301723265294 his:0.013143853483446499 one:0.013063690699043772 could:0.012296656426617177 this:0.011960136412694023 :0.18315234149122359 +one:0.015552536992080472 more:0.014252271697624306 on:0.010631301787611593 day:0.010222750824534239 two:0.010216157614982159 person:0.007504694644314241 in:0.007364820929323563 man:0.007179188731169107 law:0.006205362369136604 action:0.006166303509128973 and:0.005659786788634644 city:0.005177234665142273 three:0.005130416479837977 State:0.0047265097104810415 to:0.004696031397422901 ten:0.004594585978494318 of:0.004463781172886088 town:0.004231879326219736 year:0.0040256313925199315 :0.8609987539884558 +the:0.1319074527407419 of:0.08514367489406585 and:0.08037972463059519 that:0.041946819284674926 which:0.027222761245830618 no:0.02507196626372832 in:0.023368217493007083 to:0.021399566290590474 any:0.020247812745756245 a:0.019175628142231484 as:0.017639129143285064 The:0.01592420914235486 such:0.015921209191918813 or:0.013501494944437344 their:0.013061291690979932 he:0.01298420991282773 Mr.:0.012865877729766193 for:0.010785507706777548 said:0.010266791506152574 :0.4001866553002778 +few:0.1108910302269141 two:0.10905938147601618 ten:0.07981055316311138 three:0.06631888926902979 thirty:0.052956102401517324 five:0.0510363826817215 the:0.048775212273471126 twenty:0.03993562529735774 several:0.0389777883693436 fifteen:0.03833811551498449 of:0.030684291934214913 four:0.02921654983694509 six:0.026089880418797843 sixty:0.022738523435189485 forty:0.021703459779687177 those:0.015149094150614113 eight:0.014213215745507015 ninety:0.014073287604712548 seven:0.012899673644534891 :0.17613294277632968 +hundred:0.0702810800500243 twenty:0.04807014737064923 100:0.04368107550846463 six:0.04361952329617712 fifty:0.039874990746572185 ten:0.037245141079108146 two:0.03404194383097736 four:0.029125157584715636 five:0.0282876634949138 300:0.028275663410796216 eight:0.0267977100370147 three:0.0263215845077132 few:0.0248691732307836 sixty:0.021495209854118194 200:0.02101671554108882 50:0.01968555607300814 thousand:0.019450137436481104 fifteen:0.01896288963743446 600:0.0177958699500695 :0.4001027673598897 +of:0.13696077198679266 to:0.08618189391211502 as:0.0713164594769938 in:0.05690403194296803 for:0.05583487282254058 and:0.04889147010252045 is:0.04430495994504057 with:0.041913723343623956 such:0.041400242917985754 at:0.04096615499527876 that:0.039301313237101176 by:0.03924986398022969 be:0.027548151961187897 was:0.027346122130233196 have:0.024908225732983732 on:0.021923055477053397 made:0.02112308795357381 not:0.020004117223772877 from:0.018908676796217543 :0.13401280406178712 +in:0.048515785429817986 ;:0.01290524869529205 up:0.011428054540364918 from:0.009857194249487205 them,:0.009551775055887987 thereof,:0.00914457015479063 In:0.008717076390408932 him,:0.008556698915169029 benefit,:0.008446942942294347 due:0.007445306556836395 it,:0.007295928249127812 out:0.00651226713017592 States,:0.0063995652962191086 him:0.006265273202773819 ,:0.006153711715668133 years,:0.005751400366265867 county,:0.005344006316058594 :0.005207190277284108 State,:0.005148579217171931 :0.8103534252989052 +was:0.07717079449011699 and:0.07407233466902616 is:0.04775258913319732 be:0.03576570548769272 it:0.03156419897580133 him:0.02403156631584676 found:0.02376806168392346 made:0.023193084841017494 not:0.022392696009911877 are:0.02076953946313247 them:0.019491382770408378 were:0.018808631789514637 up:0.016831875679401902 been:0.01648321007651405 put:0.015622353925783464 succeeded:0.01281319365578312 interest:0.012218403812202856 held:0.011487512696908604 engaged:0.011201453117853607 :0.4835614114059628 +was:0.20809776893594323 is:0.19204838298694685 are:0.07430073919892481 and:0.05583796223792432 were:0.04918563462857744 if:0.03893096192340199 Is:0.03492509748792902 do:0.02901777311522311 as:0.014334587031413555 or:0.014035648859560495 it:0.013932789849790333 be:0.013765235200496483 but:0.012330140302027765 am:0.011738007631216017 did:0.011060669522423603 will:0.007455642448631202 that:0.006701698075383714 does:0.006660970345048383 waa:0.005198197855094027 :0.19944209236404364 +and:0.09636505565437027 the:0.08409014553729188 to:0.08146247147269703 of:0.07832268958179635 or:0.0266348805338052 Mr.:0.02098496958671108 in:0.019474290609286644 at:0.016863777712200434 for:0.016605845038627384 a:0.015433412325853171 be:0.011906704615196878 it:0.011888031608021665 not:0.011049857393656166 that:0.010534600777502373 by:0.010390042411386868 is:0.009841255125910452 was:0.009450745257877136 I:0.00882506441917845 with:0.008762658978977857 :0.45011350135965267 +the:0.1225076649597919 and:0.07161361224167645 of:0.06473629272949444 that:0.04958618514670853 in:0.028043918893866652 The:0.018977980784367614 which:0.018116365783577473 a:0.016457792131635864 Mr.:0.016204994403703713 any:0.014996833454149294 as:0.014951613809545558 or:0.014949554079500006 such:0.013882217367030407 to:0.013849308168220787 no:0.013167338522426214 he:0.012643594782225433 their:0.01149823381066073 for:0.011150101666402977 other:0.010739089653356843 :0.4609273076116591 +:0.09448422879250834 it.:0.017950337751381783 them.:0.015608940548838261 and:0.010795591583801101 time.:0.01039728239148872 country.:0.009885080015347035 year.:0.008198915383143473 ?:0.008096701271664042 him.:0.0076654187055395055 years.:0.00717807711515718 people.:0.007018453537646226 city.:0.006636753419294553 day.:0.006298273713961426 work.:0.006090171787277278 .:0.005852424996249611 days.:0.005814101111459435 men.:0.0056626706673278265 State.:0.005524027578318567 life.:0.00541751422927908 :0.7544250354003166 +he:0.16427988328258758 it:0.07413910369258855 which:0.07317615015314333 who:0.06376913034962643 that:0.060518345968647885 and:0.057426153069258766 He:0.05512537805136375 It:0.05079227281235787 she:0.031048406493855082 one:0.013132521048865899 She:0.012109466051009968 lie:0.01031597597189151 be:0.010228181606175966 as:0.009430867270843652 what:0.009423362079385116 ho:0.009310516647262762 man:0.008543281316429757 there:0.007905473400556987 This:0.007903306753405157 :0.270422223980744 +the:0.31469912918649295 this:0.08112967566952468 a:0.07108420687423954 any:0.06215341246786362 his:0.048091912733991916 of:0.045414427955060954 that:0.03296104960518076 no:0.03055022861255557 every:0.029602728104647473 their:0.028385677423017508 some:0.022282934511175256 rail-:0.021170285046899818 The:0.020623676473752198 her:0.020174239232411073 its:0.01969117850024406 tho:0.0180965538304094 our:0.01799141222824033 one:0.017474183850242766 my:0.016762237049421827 :0.08066085064462827 +the:0.23065497628458512 of:0.0881921314583087 on:0.06212036270826521 in:0.062099719492037055 at:0.047704188675568686 from:0.032200735070972396 to:0.02279842979470487 In:0.017271176609148182 :0.013369917703689164 and:0.012454504349913282 by:0.011765167398606778 tho:0.009616501530683648 said:0.008727946099750946 State:0.007949096089162442 On:0.007352574081862235 a:0.006775631089510126 for:0.006527029093279597 The:0.005492409748054516 tbe:0.004783771561220056 :0.341143731160677 +as:0.0425889238886649 and:0.039177625669026224 right:0.03841614025400459 order:0.027155358550947608 went:0.022969141248642844 go:0.022445644337587726 able:0.022254307297622858 power:0.020097760374887086 made:0.02009534352087653 chs.:0.018972800018407607 enough:0.018938985170155104 him:0.01837091893819789 up:0.015353488013819179 necessary:0.01525763253819276 going:0.014970013341575283 is:0.014815496009527947 came:0.014510168796470053 way:0.01418846487208174 time:0.013458371420474829 :0.5849634157388373 +the:0.1325991597126636 of:0.08419782264846494 and:0.06690447498469357 a:0.04253362270480154 to:0.033717192179666955 .:0.029595000465942836 was:0.021409522932598915 Mr.:0.018373795659603495 by:0.01803408884251821 :0.017324741196912307 be:0.015403488118548228 his:0.01536107155400597 The:0.015094256667334688 Miss:0.01463339698825686 Mrs.:0.012907444745075231 is:0.012685495706359217 W.:0.012430654675470621 are:0.012367700555499565 were:0.011220519006983697 :0.41220655065459955 +the:0.1570879454366584 of:0.07804606027406501 and:0.06787223916973353 a:0.036913117407562514 that:0.03650642298570135 The:0.02495259369096442 in:0.024366179622801448 no:0.021237121796534534 Mr.:0.02095974543727837 which:0.020555747976365113 to:0.019670312615068093 his:0.014514871313338153 for:0.013864556278571553 as:0.012619099712826765 he:0.011995143219360524 their:0.011486225473642654 said:0.011457904953995053 Mrs.:0.010878795762489643 tho:0.010097198257076249 :0.3939187186159666 +day:0.5801725139771959 city:0.021325488540021555 place:0.015941931942313636 lot:0.012436449700519422 dav:0.011430999737752925 corner:0.009230230537475686 line:0.008555137923054828 Monday:0.008393743425327525 point:0.007870849885406152 month:0.006148596980043908 City:0.006122953709913948 out:0.006104744191485563 1st:0.0059356676621424576 quarter:0.005645851773611468 part:0.005031807424055741 State:0.004643991757076689 act:0.004576451600128422 made:0.004418442357186696 side:0.004346615187225052 :0.2706675316880623 +as:0.060857136319576344 up:0.054737892704652256 and:0.04445313741424363 back:0.029448150390291906 down:0.025899914827033334 went:0.02554096426246566 came:0.022769173233221078 according:0.0225438798889887 regard:0.022297325399916895 feet:0.02107326719988104 go:0.02025051116908718 due:0.01936414394046143 come:0.01733440441681411 given:0.017164582147378475 sent:0.01641667769780703 prior:0.015130812905941924 addition:0.013475540765457693 it:0.013262535189871026 known:0.012800566139125615 :0.5241793839877847 +:0.09720814357098953 .:0.026482536197161854 OF:0.021256511132367144 it.:0.010493877368127456 J:0.009508297651996542 at:0.007487401581968786 Mr.:0.005843207215528929 W:0.0057845047684062945 them.:0.005364437429030263 M:0.004990615386266733 I:0.004949363042347908 Mrs.:0.004811400124028769 BY:0.004491200327536236 Mould:0.004461263362287421 J.:0.004428633494433439 W.:0.004314051196001115 him.:0.004230409924051653 C:0.004139478950601655 C.:0.003989131509968739 :0.7647655357668995 +be:0.09219781012473957 He:0.0902910398626374 is:0.0893779833078494 and:0.08331036946294472 was:0.08300844521315898 he:0.08056866353037301 also:0.034504922106119634 so:0.03136551593625389 been:0.02897810691745119 have:0.020896477856335843 who:0.01867527406180522 had:0.018197539587103878 Is:0.017546653826958504 hereby:0.017308317899562158 has:0.015165528125876494 I:0.014615771281115039 as:0.013032671538293397 further:0.012634416094045616 it:0.011157198379797471 :0.22616729488757856 +the:0.1510640141738255 and:0.10910120703795245 to:0.08187300371419666 a:0.08181274747262796 of:0.055397756634131566 in:0.050803736801592225 for:0.04306609219524636 with:0.022444153516656226 or:0.01624697717915165 In:0.013929071780251098 his:0.012362675051811472 not:0.011455206683454842 their:0.011231303137672061 by:0.010703246484593032 that:0.010649267828970048 from:0.010210462693721466 have:0.010001564196698271 tho:0.009912841995329847 this:0.009071678560882437 :0.2776629928612348 +make:0.08181110346295471 and:0.06782876242633874 of:0.054588051105804045 as:0.048664406051422436 is:0.04249605519776267 that:0.04120558461641292 with:0.0395925806187485 find:0.03749313125000519 for:0.03512631619839936 to:0.02956924495693908 made:0.028242121091925337 found:0.02739943476020453 Is:0.025721512950587673 on:0.024943489467290934 put:0.02377901867462006 but:0.023665714703778217 was:0.023525056788677844 makes:0.022702949656033033 had:0.021419249266945675 :0.29922621675514904 +Twin:0.22244325360131098 of:0.07970923964479615 Sioux:0.07017816910182165 Great:0.0683689686227391 the:0.0642375212106065 said:0.061930543328760364 Niagara:0.04612963512870847 Redwood:0.03399750308876286 in:0.028651437751592512 :0.015354357065426042 and:0.008527408837119234 In:0.0072105752229103676 to:0.007124753443753337 on:0.005979696655588537 .:0.005575719942510003 at:0.005421150487426039 county.:0.004929932232047076 by:0.004611950810071071 2,:0.0045506298412562405 :0.25406755398279346 +lot:0.1940462162350001 lots:0.13194707559020147 block:0.08140020016474465 square:0.06221724208107503 Lots:0.04999060567613192 and:0.04232625008922708 Lot:0.03896341791717965 township:0.028286083873263305 range:0.02337457307701818 section:0.021177792393191685 No.:0.02079374074035207 was:0.011682114153188775 be:0.010543359322463303 Township:0.008764527255832044 were:0.007914431156420612 thence:0.0068688228413266005 feet:0.006275629369780257 per:0.006019012053848976 or:0.005599162265008886 :0.2408097437447454 +will:0.19176447665412133 and:0.10869966311447816 may:0.07037753909054302 shall:0.06331972349008448 would:0.059021453053810895 must:0.043276645201961346 I:0.038516777482568494 but:0.03499120355839046 is:0.03206829846769513 He:0.030662159354802647 They:0.029022858054459956 they:0.025106182640436014 was:0.02323971028783483 he:0.022314627345308972 should:0.020579220301620415 that:0.020176476387612198 It:0.018404412085017148 it:0.017284646466309537 We:0.015005613103431193 :0.1351683138595138 +the:0.24917526730380615 of:0.08683403970102777 and:0.06487286737617488 a:0.04546013508736932 The:0.03977783400479261 to:0.026639813808152425 in:0.023964749891460232 with:0.014971870969398011 tho:0.014626050207434606 his:0.014381287849258604 their:0.01437487852895229 that:0.011447178749060942 as:0.011346261612562317 by:0.010694726730449989 for:0.010313054515945113 Mr.:0.010294134065035997 an:0.009942159200464786 at:0.008456458148729553 two:0.008253780174410924 :0.32317345207551346 +and:0.07600935703686248 committee:0.04152594616084733 due:0.04084077099886676 that:0.02998603340889284 Committee:0.028076560480280278 was:0.02382101923532837 made:0.022275376917610668 interest:0.021158886855070853 or:0.020444919584556697 is:0.01814005420327846 shown:0.014234822831378413 out:0.013982470199493927 placed:0.013094203128671898 up:0.012467905398609378 but:0.012068851920286464 point:0.011812221084785983 go:0.011626600189060315 land:0.010918871124644245 duty:0.010398795270839825 :0.5661163339706349 +of:0.3207079170078491 to:0.10395345505183902 in:0.0633792241111346 by:0.05667065388024362 and:0.05666718044451707 at:0.04767237844875513 for:0.037506389173577646 from:0.03735017408742204 on:0.037244551459787244 that:0.036907490075365056 with:0.021513419882662838 before:0.012317874787075505 as:0.012118418239658398 In:0.011665862559570013 which:0.007489526725909559 upon:0.007274820823704735 against:0.005877110798890927 through:0.005630792283385406 when:0.0054899947246235745 :0.11156276543402849 +and:0.1235231749376743 was:0.05434676111146513 is:0.03708299614573913 made:0.026059213310825877 be:0.024455267981571455 it:0.022137730316467517 are:0.020243753847706197 up:0.01983583818119569 feet:0.017874683353078822 out:0.016956400634373713 put:0.016435143265811667 been:0.016141992431565846 that:0.015431710558580336 inches:0.014965660213630893 were:0.014582394332456595 him:0.013484652223119878 them:0.013139616274212966 or:0.011595504731498256 as:0.011338583307781418 :0.5093689228412444 +and:0.14318560311529974 he:0.07285052592679589 as:0.05605077241441524 it:0.05224657268918396 who:0.03212918628318805 which:0.02902980173879798 that:0.026375508088223195 It:0.02211752755484978 be:0.019491304629363822 she:0.01682676107328551 not:0.016152310454084395 to:0.015866672537146784 all:0.0158531431176867 now:0.015060742807683464 will:0.01489881481193378 He:0.01486575986375741 was:0.013686550112621884 is:0.012863714591268586 or:0.012717952844477057 :0.39673077534593676 +of:0.24971676090144224 in:0.08443402289204416 to:0.08161623395589158 that:0.06971726246457564 and:0.06704771578845306 by:0.04792429173613795 for:0.0467641005418285 with:0.040965818451232136 as:0.03277505981627111 is:0.02512375306922608 from:0.023292281187054946 on:0.022063719144345323 In:0.020858539184251953 at:0.01959786181872358 all:0.018032557893761278 was:0.017068756786227865 upon:0.01567266388259657 when:0.014868413323281265 but:0.013102042715323378 :0.0883581444473314 +of:0.22599250518221775 to:0.11527450631858156 in:0.10955713218138736 and:0.06925379058860713 for:0.06119540283303647 that:0.042421467414411634 with:0.03274380136979624 on:0.02956671682723986 by:0.027410052702253825 In:0.02046982914601 is:0.01814964838168735 all:0.017930827406742896 from:0.017911992948953973 have:0.016130502956253293 as:0.01609709045391658 up:0.015003021447845233 upon:0.013611263989621245 when:0.012666045614742449 make:0.011083179130462775 :0.12653122310623235 +of:0.24438647783288206 and:0.0818613456821997 that:0.07308870387011691 in:0.07109620157118386 to:0.06751365866772063 for:0.05461890051767524 by:0.05018729502974304 when:0.03114175814220727 In:0.025239090652822833 from:0.02227141745881392 with:0.021423247696474582 at:0.02001291207803463 as:0.019484475594172185 but:0.018708695206628736 on:0.018699750898447103 during:0.016931872995200613 which:0.012342040925978022 until:0.011542199384212875 was:0.010148758212629661 :0.1283011975828561 +the:0.16287760685838365 of:0.0883592780729449 to:0.0618987346693935 and:0.05423685233212741 in:0.030811253892523358 for:0.03057359609188714 be:0.025098115820027647 was:0.01826945122296575 is:0.01662970283289366 a:0.016448402520667066 or:0.01633619095301082 his:0.015510346299682681 their:0.015084175217362073 are:0.014656254371894712 been:0.013019491851438341 were:0.01267572744006931 that:0.012270302451397866 on:0.01131798809455223 :0.011150587255169986 :0.37177594175160794 +the:0.6713145949759376 a:0.053574073869903475 The:0.05337717713327156 his:0.03440260485223684 tho:0.031551337082042503 their:0.014451334351126976 tbe:0.012900128072155608 of:0.012757044456363447 my:0.01044392372940689 and:0.0069477673140328515 its:0.006913744576439775 her:0.00668333973452036 our:0.006560950671348694 this:0.006396412430607796 to:0.00361508530205417 in:0.002993553046127836 your:0.002924646683464345 that:0.002845919552926319 A:0.002608332819246996 :0.05573802934678591 +the:0.1808177907886806 a:0.0848451995388239 of:0.08024449789867699 and:0.059055801807291815 to:0.03519434034876953 in:0.0257352161572855 on:0.022143427247643985 for:0.01870188857895253 his:0.016725970571119214 with:0.01338236187833952 The:0.01330950188803138 an:0.013120288014757439 is:0.012984695795913551 their:0.012454591709610172 was:0.012112162565448621 tho:0.011343209410862294 as:0.010698053679348233 be:0.009980760763107374 that:0.00988158284469543 :0.35626865851264194 +of:0.44840232907251293 in:0.0764658303242865 that:0.07254503417773268 to:0.043724587710096026 for:0.03978784602341239 and:0.03953691623489537 all:0.03752985531840964 with:0.03606211678634086 by:0.026562093228922414 from:0.01962781881009321 In:0.018019359252005485 which:0.01577640180967823 on:0.01490803253668225 but:0.013111666109914112 as:0.011851677966950996 upon:0.01122072964433746 under:0.008837610577394434 at:0.008596389709113925 through:0.00802998947377488 :0.048403715233446186 +and:0.1709533035425141 is:0.04835608048609906 was:0.039052655069042125 be:0.033051487267439214 not:0.029934098249925413 but:0.025825183103138052 him:0.024890192546473754 or:0.023720829528547146 it:0.01902542888108574 made:0.018095276266399094 only:0.01689333588266856 them:0.01675817430381706 done:0.01642316099552294 that:0.015406056137863638 are:0.014591420411849711 day:0.01433963009958714 out:0.01387437504666619 up:0.013714395392415674 now:0.01154188227069173 :0.43255303451825367 +a:0.43954363644556876 the:0.1076771882729619 this:0.07559438687795152 to:0.039805600829505294 that:0.034966197553554346 any:0.033851880367571786 one:0.031063862714348574 every:0.016063694761865352 starting:0.015514511304576054 first:0.014717789814904727 said:0.013578307630089147 of:0.013033084575434216 in:0.012621109767824393 and:0.011292616294972543 highest:0.009965556144734754 A:0.00994075358708145 his:0.009640186907223864 some:0.009497667457694084 no:0.008899464367003871 :0.09173250432513334 +a:0.1801131847779304 in:0.15290326381174296 the:0.09463485815072868 of:0.088981073661075 In:0.05015883570079648 to:0.046045763081838734 and:0.028737249151811632 an:0.017797946003215364 any:0.01542668286472768 that:0.014639178994102055 from:0.014448006220625552 at:0.014400782636438528 or:0.012980049493815166 for:0.011216324264551911 by:0.010663992990894594 with:0.010440206895681231 in-:0.010322799931758771 this:0.008701114777718299 as:0.008271503032424996 :0.20811718355812195 +the:0.12561394777511106 and:0.1014559396932125 of:0.07558056555918286 a:0.028889887351848522 Mr.:0.026106006897188252 that:0.025908429411024732 to:0.025719031831691892 in:0.023644169871710596 I:0.02137410483621116 The:0.01880268855225808 for:0.01572760817982221 or:0.014595730147419432 his:0.014096588005911804 which:0.013773422636620573 their:0.011495776476730698 but:0.011222451975921078 all:0.01038891263256672 an:0.01004585587636365 it:0.009956285067803088 :0.4146025972214011 +of:0.16893584468236128 the:0.09602182179556491 on:0.06698992905961185 at:0.060004698849652725 in:0.05803628266453093 to:0.041141204040315495 a:0.038779386855188655 by:0.03641056475126942 and:0.035227559783737296 from:0.028444921346502946 with:0.020543007400740155 for:0.020052188723053647 In:0.015926774417670077 that:0.01222422087634878 :0.010451333737577097 his:0.007776564154396684 tho:0.006577479752823468 upon:0.00630134398378214 some:0.0062197919370985495 :0.2629350811877739 +of:0.3555734407517428 to:0.07627933214854979 in:0.074070739267691 for:0.06771057071258052 and:0.05823603169668509 that:0.054714733157521615 by:0.04422253036006395 with:0.03636552493381151 on:0.02267509684505175 from:0.019978759640587946 In:0.018029300871880972 at:0.017525429498429463 all:0.013975719189786592 is:0.011372840340577308 as:0.01095769074924679 under:0.009978187212083036 which:0.009875469684639215 upon:0.009852438711323169 or:0.008470942304348606 :0.07913522192339888 +is:0.12045128626866053 of:0.10930565898015684 the:0.08715728451818676 and:0.07284204131216981 be:0.06226311196341898 was:0.05766676086787426 he:0.05688243950173784 He:0.034397277019293765 are:0.02224161657023059 by:0.022150811618757506 in:0.021423366356090663 for:0.018899094881154835 Is:0.018517917229323486 I:0.01833816612600504 to:0.017993727102109815 been:0.01743706696808653 that:0.015295607507503022 were:0.010831604528021366 or:0.010545230692651682 :0.20435992998856667 +:0.08833361447836198 it.:0.015821952575096426 them.:0.011746389892605376 day.:0.009176207495828667 him.:0.008361774813976099 .:0.007325072781228175 time.:0.006865125201547035 year.:0.0065427969783097934 country.:0.006200636417985791 night.:0.005919371906954532 years.:0.005762517313843286 city.:0.005518074336738039 ::0.005287126033948798 life.:0.004637878673872198 her.:0.004629429651728156 place.:0.00451259461322839 out.:0.0043692664441981645 follows::0.004337990365196564 feet.:0.004216649420530035 :0.7894355306048224 +part:0.016599355640906463 amount:0.013988300140664477 line:0.011918567358083923 sum:0.010747112846955854 day:0.009400122483404806 and:0.009162366866697887 side:0.008746736503001964 Board:0.007981117426945267 to:0.00786561320171683 an:0.00783552324005452 county:0.007669365118014638 State:0.0069511866508389026 payment:0.006694901401912411 District:0.006254341289611442 County:0.006219174185338176 men:0.00603538912992859 that:0.005847563774145288 cost:0.005823055531138168 time:0.005770382714813143 :0.8374898244958272 +was:0.11090964909252246 and:0.09976872431147964 are:0.06287497903182272 is:0.05913333014894902 were:0.04292709424380284 not:0.04196939771130625 been:0.03923887796238201 be:0.03283321428946205 of:0.03141828171800346 do:0.028365684005781763 or:0.01956081688247472 had:0.016288813105125102 in:0.016182867464552154 for:0.016117385079087988 to:0.014526551036965075 has:0.012630603197859159 have:0.012511615349445802 by:0.010964812263285724 with:0.010695222214454425 :0.32008208089123763 +a:0.09010970978556482 the:0.07197081271077697 all:0.06315392262908451 many:0.05091176996086126 their:0.04488958104285968 two:0.0421387062735935 other:0.03760412826940408 of:0.03607279687684509 and:0.033106386224899455 for:0.032372256921708066 are:0.03213251174122797 some:0.030443318074395823 his:0.02977849040796062 be:0.021535229550446865 no:0.020370039830004908 few:0.020343501648191886 is:0.020261502739099636 for-:0.020249062690552707 three:0.01789459878105994 :0.2836616738414622 +and:0.07181562702745725 together:0.06672214896410926 connected:0.05460722541492519 connection:0.053485248068146786 accordance:0.040816432970329504 comply:0.022327715315442986 acquainted:0.01991331996883064 compared:0.01902004432375884 contact:0.016949822974841922 familiar:0.016791563233682194 up:0.016271038698657696 do:0.015355480362757417 interfere:0.014875808889703945 charged:0.014646284015101253 pleased:0.013610051164447858 him:0.01274062267734275 but:0.012200014478196207 satisfied:0.011962054640116513 it:0.011810815262474694 :0.4930786815496771 +and:0.16394207874908742 that:0.07606405857775292 but:0.06627535716951867 as:0.050917283234312084 which:0.04863175453456443 the:0.022005995842851133 so:0.018743955919516032 when:0.01845905682614832 :0.015414006877700004 what:0.01440542755043388 of:0.012529610307193148 for:0.012113240193101643 is:0.01202260718863343 But:0.01127979001440567 think:0.010363752572416882 was:0.010277357392736358 where:0.010075991798707249 it.:0.009592761630143947 than:0.0095762774324863 :0.40630963618829047 +the:0.1188820336400701 of:0.09417807580289607 and:0.07538655060191521 to:0.07033736191896665 a:0.03563690792199739 be:0.024972453990847923 or:0.024899509093903295 his:0.02076876619939878 on:0.019133014026715682 for:0.018639381490253078 was:0.017867552910372453 is:0.017807661408110517 their:0.017462364443265786 in:0.01598369068848567 are:0.014679784473706273 as:0.013747477737000588 that:0.012733139584454278 re-:0.012071296257421588 much:0.011822265381379305 :0.3619907124288394 +and:0.1128693198671003 he:0.0453205318253145 I:0.03402680645656283 it:0.03290595505299115 was:0.0317724025430052 is:0.025963490208004147 He:0.02539260477152421 be:0.019810515333836928 they:0.013950350952295933 :0.012722700037731658 which:0.012470878984396055 It:0.01182733955984412 of:0.011218249517644234 the:0.011068763746593277 .:0.010003719013727586 she:0.009011000993811484 has:0.008957263616724687 there:0.00880413806710775 then:0.008697066280638948 :0.552206903171145 +the:0.42299108308462396 a:0.31150671444767514 and:0.03236466472428614 his:0.025536094029458604 The:0.025428051541968467 tho:0.019683053729066372 of:0.015536860131090258 this:0.012945664741987705 very:0.012641048834514125 A:0.011999750644293341 its:0.011800520811505939 their:0.008901023685788826 our:0.008234019966149066 her:0.007986549067986504 one:0.007641896983072579 more:0.0074827551931707596 most:0.007417687737099541 for:0.007362363655920271 tbe:0.00716601461036297 :0.03437418237997939 +is:0.11852008984255555 of:0.08939186844734127 was:0.08514032189887781 and:0.0796191565504778 in:0.05841897057277058 as:0.04141517031113783 to:0.03527418704711287 by:0.03208349761601984 any:0.0316178936538981 no:0.03129759887347578 the:0.027925111379291493 with:0.027276745378366836 that:0.02553986982270336 only:0.025049036289369744 but:0.024821881507018136 not:0.024674263954361692 for:0.024307050149215317 be:0.022936841776455594 from:0.02241706127132092 :0.17127338365822947 +the:0.5834221213696885 of:0.04447903722196613 The:0.03724010773030767 tho:0.03419558126158062 to:0.02689344944619155 a:0.026392582482900134 their:0.01822823104069163 an:0.016960101581586187 at:0.016270623496979435 tbe:0.015769597197707784 his:0.0151606165039003 in:0.01241820812540701 said:0.011992823737465571 and:0.011553382928517961 its:0.01121021021580598 our:0.011122541994574886 this:0.010216113035132882 notary:0.008102138566462297 her:0.005864444688390242 :0.08150808737474315 +in:0.27853266603363835 In:0.08338790924085276 is:0.06941095087941002 of:0.0667176708593643 was:0.05444234320600197 on:0.05288137063716846 with:0.05118453818065072 such:0.04197021691109836 to:0.03451099440801247 and:0.029049193563769858 as:0.023483825927969753 for:0.022768419726456983 made:0.021071990054547438 be:0.020983677930849445 make:0.01868722066745506 have:0.018033929606591524 by:0.017104283550662062 into:0.01592379538822215 find:0.014078562377211116 :0.06477644085006719 +one:0.10757504863160208 out:0.06393072214258595 part:0.05345953864888265 some:0.04657778396619151 time:0.032653763285528395 account:0.0298978741893603 all:0.02673860913095395 and:0.02324876597992745 that:0.02275453097379819 because:0.021318504223257338 portion:0.02010071224985526 side:0.01926992014112468 any:0.018918137101655273 front:0.016609963575485047 many:0.016563310866764772 end:0.01592265492673931 day:0.015255366376758018 members:0.014811614297040794 result:0.014486922106154784 :0.41890625718633423 +it:0.17919824768026574 It:0.11899386451103285 there:0.07346360470486527 which:0.05225230718544703 they:0.04641619335773507 that:0.04192124155395412 he:0.03957048582491494 and:0.035253100689259534 There:0.02796624983890546 I:0.018721002707963057 we:0.017651434188838702 you:0.015294756461088244 man:0.013919793670076737 one:0.010205906425646862 work:0.009927234298320483 who:0.009840907332144214 this:0.009589326281629148 service:0.009412730711036632 she:0.009226688142499937 :0.26017492443437595 +the:0.5839137864672042 The:0.12917629245146117 this:0.05348552912998289 a:0.04360701178935024 tho:0.030244082496416465 This:0.01988138649382585 tbe:0.012066996466666617 whole:0.010576135594596907 that:0.01024126375320805 our:0.009769318870171646 said:0.006789304807178346 and:0.006295851747540385 Tho:0.005886646003715862 new:0.00531321900560417 present:0.0052737047153156085 his:0.005238003967955087 general:0.004909423059498465 whose:0.0047802195443360515 your:0.004157595080877274 :0.04739422855509479 +was:0.14864596990718093 he:0.11285218120431822 be:0.11135233120353666 and:0.08635885555583761 is:0.0562556465690097 I:0.04467668515872999 been:0.0423991984221385 were:0.033256553507489246 He:0.029693071985840185 had:0.027712567379268558 are:0.02704125293812926 have:0.023496898207732982 then:0.022069622218212136 has:0.02052929915322327 being:0.01925644021721611 who:0.016622694881644192 she:0.01615738316866399 they:0.012234172862135965 lie:0.009887414387961388 :0.13850176107173112 +for:0.10322825565172632 the:0.09479144150390913 of:0.08186213654115304 and:0.07478172191706353 a:0.07467572600575888 in:0.04846174386253597 at:0.04690004284211781 to:0.04029854574299487 about:0.020739876135100224 all:0.019696474053552522 by:0.01816718145993319 or:0.017257701808183472 In:0.01589410560864221 that:0.012395710800056334 some:0.012176486714793463 from:0.011777998498513208 one:0.01122950870135896 be:0.011048528267887025 during:0.010773105444906108 :0.27284370843981376 +has:0.4802936642562215 had:0.19917465159170653 have:0.19704836548455018 lias:0.014832338646454635 having:0.010955593888397513 he:0.006827569814658402 not:0.00659368253094705 it:0.006100094234536322 I:0.005882141532401105 which:0.00566248951849126 bad:0.005273459676639796 and:0.004851983240678758 haa:0.004343347449507086 baa:0.004188344406643602 that:0.004030072308827354 was:0.003431107836048376 there:0.0033854892198927717 as:0.0033801499466982457 than:0.0033524031589524197 :0.02939305125774709 +he:0.14797444613753316 it:0.10652196177244272 It:0.095378365875468 which:0.05320810762478197 He:0.048323551437545034 I:0.04514707742543785 and:0.04282757448608823 who:0.02874417527547111 she:0.023606719018663014 there:0.019101140011235196 that:0.018541819953765238 what:0.016731857844288975 This:0.012897611694135674 She:0.011892566685456914 ho:0.011430394903303222 lie:0.010147014654116255 as:0.009895370701243907 man:0.00962986082235226 There:0.009628665747011622 :0.27737171792965964 +and:0.07523413660769708 depend:0.06345620502838636 depends:0.062477737968133155 look:0.05708421951296673 called:0.04260132648431456 looked:0.038014375768208895 conferred:0.03749351238059491 put:0.0365344546959165 call:0.03454628266558246 rely:0.032725379875549375 placed:0.03243420100313108 imposed:0.030013219972846627 dependent:0.023038471535034463 insist:0.022889713058600533 bestowed:0.02272617210091697 it:0.02233613797422686 made:0.021666447599002644 based:0.020392947514343326 depended:0.017779928063599806 :0.30555513019094765 +to:0.13707873154223774 and:0.08586014556983357 the:0.07595305840273534 a:0.07570089821021275 not:0.07279831567956478 is:0.053296077885925934 be:0.046557907346846256 so:0.04476203828485865 would:0.040543201676023106 was:0.0391066630159552 will:0.037384471877246854 they:0.02900518570111641 in:0.023793254512932713 may:0.020294323339328978 are:0.0181077442713083 of:0.017596507139841514 we:0.016539241706234414 I:0.01608061737767761 for:0.015247151561446909 :0.13329446489867297 +the:0.7519206766418076 The:0.068082150557559 tho:0.03734609084277785 and:0.0179303335932342 his:0.017759904160948536 very:0.014613002123702585 a:0.013858110790908535 our:0.01053381092826234 tbe:0.010287289709696515 their:0.00784017453753265 its:0.007616907680129943 an:0.005586347397099747 of:0.005335842177241169 this:0.00410859405091385 Tho:0.0035347938217395827 my:0.0031427447968616195 her:0.003064220445003925 as:0.0027771279255061772 by:0.0020344582870440143 :0.011627419532030146 +of:0.28767355066866834 to:0.08775711267569858 in:0.08678131196995101 and:0.05160598694501188 on:0.04646139928102899 by:0.04519522654900943 for:0.044547789071328545 with:0.03396756772609607 that:0.033699232901107726 from:0.03075346596941143 at:0.027039283056790858 In:0.021061449543044047 as:0.017514234937992545 all:0.012543839382496166 upon:0.011844431150487573 is:0.00998972746569266 was:0.008814315973987914 into:0.008557199930727406 through:0.007781895704231326 :0.1254109790972375 +to:0.3190771545421261 will:0.21605638877977743 would:0.10147253698987338 shall:0.07612350178826038 may:0.06505175011977053 should:0.04620456837505543 not:0.03056517855220481 must:0.0304999993348572 can:0.01567394057796055 could:0.012730871138441026 might:0.009711913768001802 and:0.00914283552318429 cannot:0.00718060748824185 it:0.004615457111819607 also:0.0034036467109704034 only:0.0033169867952911607 that:0.0032439221132836934 To:0.003002673501863115 soon:0.002926110938652395 :0.03899995585036482 +It:0.18044159673601723 it:0.12326935311938345 he:0.06004957160368529 and:0.048058813703307855 which:0.044974452956175866 I:0.037034962649201794 that:0.03047800362384109 who:0.029294257558596104 He:0.024021432853435814 there:0.02009339456373842 she:0.01751013386545573 This:0.011259319309492201 this:0.00983232732571527 as:0.008820025898846437 :0.00849288754812068 1:0.007017214025793984 be:0.006531328842043452 She:0.006262790995375035 There:0.005669137711029371 :0.31988899511074487 +and:0.1559284722886799 fact:0.07402264193628033 so:0.06758269419969826 know:0.042443677732844756 is:0.04160077557123819 said:0.03641642846015232 say:0.035063647503628434 believe:0.03120303690475855 but:0.024444405736333785 stated:0.018612437040712963 think:0.017150857410206284 was:0.016819152447065687 found:0.014426962198508583 me:0.014280827127352328 all:0.013678965309287291 reason:0.01315042679426266 see:0.01300150230337965 however,:0.012867487218543763 says:0.012207894021078162 :0.34409770779598814 +of:0.23958949170826743 to:0.12016011888466693 on:0.10798297073497722 in:0.09735621314597433 at:0.06437098297234335 from:0.060857702342236364 and:0.043797329132983294 by:0.0349216193003837 with:0.029758609481427604 that:0.02305195825869355 In:0.020180340419416166 for:0.015489408921914399 upon:0.01548786585740951 over:0.012432186467163328 as:0.011918988697205772 through:0.009992978149500434 into:0.009796855631097102 along:0.009152110911977778 all:0.0076761473092114155 :0.06502612167315033 +purpose:0.05879120097047385 number:0.04745283020906267 cost:0.0304865673935764 amount:0.0291819993713254 matter:0.028585333071574716 out:0.02585156329130443 acres:0.02488816251124862 part:0.022696292821648194 instead:0.02225362449062038 point:0.020733363379591224 means:0.020501889786761294 piece:0.019823952883448948 tion:0.018762239361611584 question:0.018237576901995987 work:0.016697103444206263 way:0.016008854797729052 kind:0.01565126817283785 system:0.015297065387832083 sort:0.01450620517260749 :0.5325929065805436 +the:0.3395366599547059 of:0.14348429635467552 on:0.08744034877043523 and:0.046279873985827266 from:0.03807061052841676 said:0.035715750765738526 in:0.03457618660054263 tho:0.026178410291895517 to:0.01613499645574661 between:0.0141011845096481 street:0.009683768254402172 for:0.009576792399513647 tbe:0.008334629177191272 2:0.007751954725714611 feet:0.006944308158369521 The:0.006305177292763655 ;:0.0062030858970685675 south:0.00577538455031867 In:0.005550262429485163 :0.15135631889754064 +a:0.16325160101634595 the:0.09471759625954211 of:0.08440882429183759 to:0.0422996567521776 and:0.03888629723325725 by:0.037255862666196425 in:0.02430493067895792 at:0.01953708889351344 for:0.01874834854420991 that:0.016311687997712116 an:0.0134662706187739 his:0.013249026468980336 The:0.012747195739020311 from:0.012187006266258944 as:0.010252751497124015 :0.009973744971308643 A:0.008581479043809034 with:0.008129678389961507 one:0.00808860534359394 :0.3626023473274191 +he:0.24376688758170348 and:0.10357748868105864 He:0.0658648131345135 which:0.04468042264679472 who:0.0382100409959625 I:0.0371351823325217 she:0.031648102351265944 it:0.029740175418895128 It:0.027138975825356668 be:0.021140774984739732 they:0.016828157614093654 that:0.016323148559710305 ho:0.015397764324660517 then:0.015223002110736567 lie:0.012098672807779116 She:0.011831928698687587 one:0.009662439605727855 now:0.009612733850735626 have:0.008792894483612777 :0.24032639399144398 +and:0.2935933424310777 Miss:0.16701776754836717 Mrs.:0.07635011221116975 of:0.04868977830007928 to:0.03656784305998623 the:0.023008365737857597 .:0.009971936670947189 :0.009560445731881972 that:0.008770945536944578 by:0.00874469974826477 said:0.007174458007755413 with:0.006591477669721097 Misses:0.005649350721065378 a:0.005296047349548684 as:0.004990984260388699 in:0.0047600781498088225 was:0.004055939156677665 S.:0.0038846126776937236 when:0.003604761382316818 :0.2707170536484475 +of:0.14423750236932179 in:0.12200872152691448 the:0.08244734097524913 and:0.06786507495133828 a:0.049043619658149885 by:0.040147504509819666 for:0.031938859111572876 with:0.030328207402837617 or:0.025028038635205637 to:0.02284968820409334 In:0.021296400256174935 are:0.01657586569252401 from:0.014536453885619326 be:0.013923062816963925 :0.012835578679900242 is:0.011185760229224406 without:0.011101888332121288 at:0.00975953838029608 The:0.009159343669762867 :0.2627315507129102 +in:0.048515785429817986 ;:0.01290524869529205 up:0.011428054540364918 from:0.009857194249487205 them,:0.009551775055887987 thereof,:0.00914457015479063 In:0.008717076390408932 him,:0.008556698915169029 benefit,:0.008446942942294347 due:0.007445306556836395 it,:0.007295928249127812 out:0.00651226713017592 States,:0.0063995652962191086 him:0.006265273202773819 ,:0.006153711715668133 years,:0.005751400366265867 county,:0.005344006316058594 :0.005207190277284108 State,:0.005148579217171931 :0.8103534252989052 +of:0.10319476582362985 and:0.07952149094513501 the:0.07598680594356277 to:0.07554754618690515 in:0.043423415604482124 be:0.03334096112262776 or:0.030302451562183884 as:0.02488939074209448 is:0.023177007135959937 that:0.022720908965561903 was:0.019795005802535248 a:0.01958670130679191 for:0.018539254396365293 their:0.013081147852689348 he:0.012993201753923128 are:0.012630085383315169 which:0.012440746189437798 not:0.012025151194831808 :0.011507069992742638 :0.3542968920952248 +and:0.17189381847532026 that:0.1545636063538366 which:0.0913186589789426 as:0.06139240686802703 when:0.04812859432505551 but:0.04227616543706961 where:0.033634378961452716 if:0.028443647417382666 because:0.02732474691972418 until:0.019711322207990656 what:0.017904487363553354 for:0.015238621171112014 or:0.011094481135792322 after:0.010675142672708816 whom:0.010004332514357317 than:0.009681594823486515 while:0.009092362876314639 If:0.008941958631771345 But:0.008306362462861018 :0.21937331040324087 +the:0.283157306269593 his:0.10677237772614533 a:0.07890020473605544 their:0.07609176649643953 this:0.06172643455473325 my:0.04714960826392423 our:0.04124663424218328 other:0.041151313898305356 its:0.036973996604315565 own:0.03572871189632219 her:0.028993323808719017 tho:0.019273162808460188 of:0.019158152395935206 in:0.017409664224273307 your:0.01613559197286511 no:0.014241146048199023 every:0.013919326534830589 such:0.01232731395409659 any:0.0121280584550253 :0.03651590510957851 +made:0.06164121196036861 taken:0.060362292369203395 it:0.04667688746322662 put:0.038646673653976456 came:0.03563136312317714 picked:0.03269941930959464 make:0.028931789241481064 went:0.02524451467292244 set:0.023851079294639272 take:0.023519009869476342 keep:0.022503612851876353 got:0.021957416260954207 come:0.021717980942129317 them:0.021511064784808933 and:0.021325304234315307 build:0.021157583637691935 pick:0.019828879492920472 kept:0.019669834485415406 get:0.019388342824787 :0.4327357395270351 +a:0.12436725830636565 the:0.11878126089296143 his:0.08789162379370058 in:0.059626737181866334 and:0.049914820801774874 their:0.04770361845370984 of:0.040328405752264325 this:0.028501189014041504 her:0.026879758025553455 all:0.020840604143030447 great:0.018346596963454722 that:0.017606619759106983 one:0.016165118614737788 its:0.015387204138407929 my:0.01438707842694512 as:0.012058895722789793 our:0.011861291168435862 any:0.011559472729124306 little:0.011311197568778613 :0.2654812485429504 +sale:0.030521080467863337 amount:0.029014442627397635 men:0.018560956247044284 years:0.017858137418305036 bushels:0.017441581190136612 that:0.014653113330873133 out:0.014633728621474823 board:0.013223794555943674 to:0.013068102332968151 and:0.013018182873822677 number:0.012832722390064236 value:0.012590659748686244 time:0.012561006800402367 sum:0.01230594369222026 line:0.01216061467136481 the:0.011553034470513427 cost:0.011302341027736312 part:0.011237284429010298 piece:0.011171261918527573 :0.7092920111856451 +amount:0.06899588391354874 kind:0.06427418204105967 sort:0.0515683315010151 matter:0.05109690605845959 right:0.03662275190961735 number:0.036446341792644 piece:0.03107663681016703 lack:0.03057716205301144 kinds:0.0300419887898916 out:0.028233770558477006 purpose:0.02677393931263912 plenty:0.024109830594047397 deal:0.02351280556606794 means:0.02348694295592803 point:0.0226625827296222 line:0.022660021601177062 form:0.02203547897485016 question:0.019952746413304422 full:0.019738240792983593 :0.3651334556314885 +as:0.5505193251067446 a:0.0791482260967324 so:0.04344438836916551 be:0.042840695781529464 very:0.03357220222821191 the:0.03246438197098996 and:0.03038880959318585 was:0.02139451713321322 is:0.019910238210202397 too:0.014444869765955465 to:0.011202708168626292 of:0.010851409074744238 not:0.010205375749469708 been:0.009152015152612119 much:0.007555184726439803 with:0.007242007394812798 ns:0.006279976175840575 it:0.0059253237910067875 than:0.0054539394977265185 :0.0570044060127903 +father:0.05254427425672774 wife:0.015478753108344278 up:0.013685032944301213 men:0.010318992866272352 him:0.008750748371234565 man:0.008378148660279767 her:0.00835748350259998 in:0.008184786038839367 good:0.008084711033252643 home:0.006944536275719111 friends:0.006394831588770236 house:0.006361767784248802 life:0.006331342815361897 old:0.006219831860322823 quiet:0.006185254979090697 gold:0.006126036402939365 husband:0.006021069924454872 out:0.005897065918527838 it:0.005571007402406059 :0.8031643242663064 +the:0.4414147538553919 this:0.0488789951710466 his:0.03136712196580082 of:0.028758844213897742 and:0.02852588586138599 tho:0.02153717215790883 said:0.0197731405195809 a:0.01619297175217204 Public:0.015703975096727957 :0.015429727618118333 to:0.013901999533199842 our:0.013222543970652615 in:0.012909122889797472 Railroad:0.012591718724599837 railroad:0.011893592166135652 that:0.010249784964809614 White:0.009995929476902284 tbe:0.009869116957559314 their:0.009480039397322074 :0.22730356370699015 +a:0.3816238617722119 the:0.15425577664729095 and:0.04814254468717722 this:0.034957025654221964 of:0.02947846926458164 that:0.02679739380990475 A:0.025355281647917016 one:0.01772490664015928 old:0.01731898191093066 The:0.01061215757813285 his:0.009489869563768648 in:0.007820206597594309 to:0.007464478789310997 young:0.007120345657354058 little:0.006534915903477207 One:0.006309525294322986 by:0.0059246333441649165 white:0.005608592404829448 tho:0.005477107205993288 :0.19098392562665586 +of:0.09129790931378902 the:0.07369883040827747 and:0.047842263382354346 in:0.04189055351593407 to:0.04045875475680249 a:0.03542341257202578 be:0.02020462051672066 for:0.01979292654746225 was:0.01760256398103379 at:0.017380150555488715 is:0.014984483003968216 with:0.014047653760730413 by:0.01374644383819499 :0.012670486581795598 In:0.01200961464556976 or:0.011563835749786333 from:0.011391516893522809 are:0.011273104484969465 that:0.010755276030689069 :0.4809655994608848 +of:0.09129790931378902 the:0.07369883040827747 and:0.047842263382354346 in:0.04189055351593407 to:0.04045875475680249 a:0.03542341257202578 be:0.02020462051672066 for:0.01979292654746225 was:0.01760256398103379 at:0.017380150555488715 is:0.014984483003968216 with:0.014047653760730413 by:0.01374644383819499 :0.012670486581795598 In:0.01200961464556976 or:0.011563835749786333 from:0.011391516893522809 are:0.011273104484969465 that:0.010755276030689069 :0.4809655994608848 +of:0.09129790931378902 the:0.07369883040827747 and:0.047842263382354346 in:0.04189055351593407 to:0.04045875475680249 a:0.03542341257202578 be:0.02020462051672066 for:0.01979292654746225 was:0.01760256398103379 at:0.017380150555488715 is:0.014984483003968216 with:0.014047653760730413 by:0.01374644383819499 :0.012670486581795598 In:0.01200961464556976 or:0.011563835749786333 from:0.011391516893522809 are:0.011273104484969465 that:0.010755276030689069 :0.4809655994608848 +the:0.27816351854737076 described:0.1354316121438194 said:0.12925897969096772 of:0.0883095785027303 and:0.06028343322728872 a:0.05008475183751692 any:0.03077123789527064 on:0.024789553616346115 The:0.022003836715573186 upon:0.01934346241609015 in:0.017447240630144693 tho:0.017115813275954933 by:0.016221814986480308 scribed:0.01575424322708512 certain:0.012379631748645464 following:0.012234375592963509 as:0.01049343640159692 our:0.008084912169483364 no:0.00771688152887594 :0.04311168584579587 +of:0.173929230524896 and:0.11667666310358503 in:0.08603970904036806 with:0.06996330511428155 to:0.06811637073339848 for:0.051552939463677554 that:0.04492467118135372 by:0.03711197654552394 at:0.034015021797196274 from:0.030644909325300094 In:0.02475651362512929 nearly:0.021576888354087147 on:0.01918022912803143 is:0.016661279886395947 was:0.016324660867573417 are:0.012805604008820587 upon:0.010397080151397385 or:0.010136273193602406 through:0.009477563840768241 :0.14470911011461343 +that:0.1616946271226544 and:0.1139500058877757 as:0.1036735123980877 which:0.07615071504676658 if:0.05448984670517955 but:0.05107845687469744 when:0.050529399868955445 where:0.031657081642127355 what:0.02009399278973574 because:0.018221449066299543 If:0.014620793644758419 until:0.014546483355248939 though:0.013652036430056538 while:0.012082291273338359 than:0.011848198354823035 before:0.011102491426988777 for:0.010746396633730598 then:0.010637305307343827 time:0.010267396307550981 :0.2079575198638811 +the:0.1699800281911206 a:0.10100618257662448 of:0.07872539771313505 and:0.04445343205519203 that:0.03352808201875394 any:0.030024034727096926 to:0.027958413912257354 by:0.02793398781404255 The:0.020714154637776625 an:0.018336529298736377 in:0.015975273271174265 no:0.015675787434184293 one:0.014710883783722671 for:0.013850340991342818 some:0.013787947155683303 or:0.013725125010845015 as:0.012396726172045031 tho:0.010703586721615008 said:0.010488863479021693 :0.32502522303563 +and:0.05231099296644374 of:0.046518443199724174 that:0.04114047475434918 the:0.040549524938250515 :0.03138845851090147 as:0.0161738938252047 it:0.015925765061662066 which:0.014604895045744226 The:0.013870157535732081 It:0.012720060835749267 it.:0.012622985852060781 Mr.:0.011558491517546772 ::0.01032016431343609 says::0.010026833264185155 said::0.009207960388516054 .:0.00824314557596652 but:0.007626161233284184 he:0.007091429417697203 if:0.007000595319308668 :0.6300995664442371 +they:0.11853329615536012 and:0.07628720745769095 who:0.06956666024171924 which:0.06295860178305215 we:0.052080975297013686 that:0.049506716426377335 They:0.030708293135724582 as:0.021799959529725577 you:0.019907099034879566 men:0.017302275569588833 We:0.0167717993069712 people:0.011040877839500886 these:0.008962986968382812 there:0.008009237682671533 These:0.0072750531851780076 but:0.006664030701755479 what:0.006558525242869807 them:0.00623376665686295 it:0.005890276602909128 :0.40294236118176613 +a:0.16148180742745666 the:0.13095751644583048 of:0.10708764992580733 to:0.09251545324581532 very:0.05654879169297975 and:0.05094818785398762 good:0.042460743519525564 for:0.036187797365652516 in:0.03321281972206788 with:0.031474927578669626 some:0.029033597086126857 no:0.02550019600920232 or:0.019995856979259253 many:0.0180180664168949 their:0.01455228747894422 not:0.014360130543835278 as:0.013125298586319674 any:0.012222661972398205 by:0.012051557661465572 :0.09726465248776099 +the:0.8122954973621246 tho:0.037284105764412954 The:0.027615818699365833 tbe:0.016511985018475794 of:0.015377382545155967 this:0.008879114225651595 and:0.0075063029772148935 that:0.005850605283968802 at:0.0037023452986014813 to:0.003672440389294172 in:0.0031455306411445868 his:0.0029324266054944455 a:0.0027521931281378636 tlie:0.0026610189044524 its:0.002534421076747735 on:0.0022515860812446806 their:0.0022488443880624774 from:0.002147495055239308 tne:0.0018206218494369395 :0.03781026470577352 +that:0.16546178301902575 and:0.10205070552248247 as:0.08899961959609995 if:0.048524683109543644 when:0.04704952475941196 make:0.03722424713142396 but:0.03478861149662547 which:0.03429250759660264 of:0.030156149390117928 where:0.022115866568561036 what:0.02095826027130841 let:0.018690330843764848 If:0.018573055766876106 have:0.017384654781442674 is:0.016933317270555307 because:0.016909168946602326 made:0.01613017941802295 to:0.015330642509081373 for:0.014511822582055803 :0.2329148694203954 +and:0.08995317707915026 to:0.06844710404109794 of:0.04605142056172993 the:0.04074574508561307 which:0.02479116931334353 that:0.023764822140213245 re-:0.020841117231308055 in:0.020803825395358622 for:0.020278423301550053 :0.018417753428486977 not:0.016860793136637672 con-:0.016444405871234195 is:0.014386481772210856 or:0.014080680914153714 be-:0.01352268143271276 I:0.01317002660943805 was:0.011429878269381662 dis-:0.011196807025842847 he:0.01113106290024311 :0.5026826244902934 +and:0.05544100665139722 to:0.027912624539502617 etc.:0.02669253663786125 -:0.018077365804177632 .:0.017343032790166905 of:0.015802879306997395 it:0.01570406789059066 or:0.012534033026702456 1:0.010941483527484882 :0.009589646033845189 It:0.00888686708164315 t:0.008838006931996014 &c:0.008721273574876637 I:0.008252200213179708 him:0.00778242017586148 years:0.007761407773452881 the:0.007425509796469078 m:0.007422288077241352 that:0.007233155305061216 :0.7166381948614923 +the:0.5142188953997119 a:0.1454720495431971 The:0.04711512560043714 tho:0.030121181232992317 and:0.027675342040810808 by:0.02550406142225636 of:0.020771932803664305 in:0.015209982047043462 tbe:0.010772470857944184 other:0.010524110946700162 or:0.008795905620284906 one:0.008448987087422607 good:0.008197028055238895 certain:0.007247396322729146 first:0.007021886422365296 some:0.00687789293871305 said:0.0066642226772118274 two:0.005711018266283577 on:0.0056052860090209135 :0.08704522470597206 +the:0.14016469701142228 of:0.056222387604837616 and:0.043045259947585374 to:0.029204783376527474 both:0.027988889997716798 his:0.027659827525541754 boy.:0.022722309177993675 girl.:0.01946578927743524 said:0.014369690134443355 their:0.014103181798892745 by:0.010020244004550618 tho:0.009919667069642478 her:0.009909238793056966 that:0.00984910622705971 :0.009818490951232996 between:0.007944889158917286 for:0.007914809422748506 :0.007258847851644617 a:0.007256650845473034 :0.5241612398232774 +of:0.16369758254056874 the:0.12531683834186835 this:0.10091239084329934 a:0.09306608232874247 in:0.08112662458655376 to:0.07481964772973894 at:0.04678310184420907 that:0.04289420486754613 for:0.03148993681035444 by:0.028426833075612463 and:0.021551763073963417 such:0.015478368652144768 In:0.014385256634865555 with:0.011241631757842796 tho:0.010337458843604862 said:0.010090942585101879 after:0.009944706545526791 from:0.009890676930802651 into:0.009777494862245759 :0.0977684571454078 +in:0.2335238147211542 of:0.16941642605423946 to:0.10719131608158354 for:0.08673256106012149 on:0.060502152971249716 In:0.042890696200961864 with:0.0421496798524546 from:0.03221041443810044 and:0.027574564690251123 by:0.024863841740607368 have:0.014952169050890965 all:0.013145411823060598 into:0.012970247643000823 that:0.012802076241187298 upon:0.012215245738001057 up:0.010628023100321559 make:0.009935403429372415 at:0.00976380566047867 take:0.009218942599391914 :0.06631320690357091 +is:0.22777289759174213 was:0.1281481316411046 are:0.10111187754188053 were:0.0408775470676917 and:0.0370869608632873 do:0.037003703143478464 had:0.03584889178795363 will:0.03393234256015383 Is:0.03249257768714115 did:0.032400669351752856 have:0.030269527322587905 has:0.028098329735586836 would:0.026075119283263105 does:0.025511561464077626 but:0.020344921483038226 could:0.01846018070619707 if:0.014046524877105988 it:0.012663279226129627 or:0.011991695635642525 :0.10486326103018488 +of:0.4004724504658346 the:0.138080426683683 and:0.0479274071776035 for:0.028670938315235248 in:0.026160821256175776 by:0.02018934196189981 with:0.019512832173860628 said:0.018414429262641332 bituminous:0.017336882162710038 on:0.016535239081917265 a:0.015482337181731832 that:0.01332477499695093 no:0.012479064131847758 all:0.010729047840755354 The:0.010498543246800515 or:0.010317536948961016 some:0.009026922584381265 tho:0.008793679109907636 their:0.008614297398183798 :0.1664330280189187 +:0.09720814357098953 .:0.026482536197161854 OF:0.021256511132367144 it.:0.010493877368127456 J:0.009508297651996542 at:0.007487401581968786 Mr.:0.005843207215528929 W:0.0057845047684062945 them.:0.005364437429030263 M:0.004990615386266733 I:0.004949363042347908 Mrs.:0.004811400124028769 BY:0.004491200327536236 Mould:0.004461263362287421 J.:0.004428633494433439 W.:0.004314051196001115 him.:0.004230409924051653 C:0.004139478950601655 C.:0.003989131509968739 :0.7647655357668995 +of:0.25627690327506003 in:0.09997265897163696 on:0.0728438603245255 to:0.06963217099786706 and:0.052862649646008404 that:0.04977581398704319 for:0.04817392144169157 with:0.037107860671484943 by:0.030449226652151835 from:0.026637705597690717 In:0.021675831259288614 all:0.016253119421511256 into:0.015011988074551862 upon:0.014647512798291249 up:0.013049707695088897 over:0.012633352718313793 at:0.01237525039304836 when:0.010973922128618783 about:0.009650795746506211 :0.12899574819962073 +a:0.361984550219627 the:0.11747860864504851 young:0.09283735530783022 any:0.035949844131965294 every:0.031548946192515546 old:0.02632776610740802 no:0.02606871605066265 one:0.02393901058414693 white:0.022667264303678318 The:0.019477718085153847 A:0.01843642797047897 of:0.016752718348351296 colored:0.014825025033837166 that:0.014680549387822792 gentle-:0.010941733800397674 business:0.010549154324043283 poor:0.009835279767856843 and:0.008498184077988262 Ger-:0.007998801544212007 :0.12820234611697537 +to:0.5924656979366292 and:0.04857385137337583 will:0.04657662737714265 not:0.03380867044659691 the:0.02924015414823682 shall:0.022750525494694383 they:0.014663791928302179 should:0.01317142700949721 To:0.013078381670842482 would:0.01248984089380399 we:0.011677488080202561 per:0.010767058966600233 that:0.010319115112754441 I:0.009532288587678262 must:0.009097655526513643 :0.007291748484106338 which:0.006986213005914604 could:0.006880870470952428 can:0.005903129111518539 :0.09372546437463727 +and:0.16176485577375002 is:0.1272381382722705 to:0.08377605877143098 of:0.07406518791745974 was:0.05944719607243377 in:0.046268754248680426 with:0.04141699907615462 on:0.04090984592449394 for:0.03520583890698965 be:0.0320266554940982 that:0.03163068476664451 from:0.023539689358927543 but:0.02218271790853884 by:0.020433892685206994 made:0.020278170377599755 are:0.019669028394332412 have:0.019443957062136263 at:0.017278257618196447 Is:0.015320305897182135 :0.10710376547347328 +time:0.023915260367479662 it:0.01587223877660601 large:0.01433965295215872 him:0.013949376653267221 made:0.013706183725632842 men:0.013176457828404297 work:0.01248070488641019 up:0.011964143352686682 out:0.01181686592561956 place:0.010822262936457229 in:0.010487960806028587 water:0.010452374113632359 life:0.01010762303444845 long:0.010090050734217006 interest:0.008956159404362559 down:0.008846558869419782 it,:0.008786990568701318 them:0.008677992016746598 hundred:0.00823665717438213 :0.7723144858733388 +away:0.05746860598250849 and:0.04985561698690421 taken:0.03950823995165392 miles:0.0355312759828073 feet:0.031845900191456514 come:0.022313957473317422 them:0.021637161013586904 out:0.020621546731341717 came:0.02000539576637417 up:0.019820502682224503 him:0.019195504147748815 received:0.019046714556510396 far:0.018152378296247898 removed:0.017489734983720518 down:0.017467467859455896 it:0.015386533775439217 years:0.01424855034507225 annum:0.014237643714946796 free:0.014107989586278378 :0.5310592799724048 +of:0.09129790931378902 the:0.07369883040827747 and:0.047842263382354346 in:0.04189055351593407 to:0.04045875475680249 a:0.03542341257202578 be:0.02020462051672066 for:0.01979292654746225 was:0.01760256398103379 at:0.017380150555488715 is:0.014984483003968216 with:0.014047653760730413 by:0.01374644383819499 :0.012670486581795598 In:0.01200961464556976 or:0.011563835749786333 from:0.011391516893522809 are:0.011273104484969465 that:0.010755276030689069 :0.4809655994608848 +as:0.06345821111221826 and:0.0497025220576989 up:0.04943929748593646 according:0.03353596826352663 regard:0.029451977060172423 came:0.0282149584321223 come:0.026133607678649237 addition:0.02605466589208104 referred:0.024422339318225014 it:0.021927082789299255 them:0.021508742287353645 due:0.021312509701147137 go:0.020222836079155468 attention:0.020208301384908096 reference:0.020176527300585254 went:0.019938696817431035 attached:0.019499539092039764 back:0.019222346350156107 is:0.019124207720976193 :0.4654456631763178 +his:0.2890483646316112 the:0.10581702175610579 His:0.07574173718059916 The:0.0728081675150355 and:0.05701194433253257 a:0.05478493796670413 my:0.05463309270450081 My:0.04296763216756914 her:0.02561564785401181 of:0.023065654988130423 that:0.016751968893134517 bis:0.015080787872517426 their:0.014083108580187964 whose:0.013764078334046416 your:0.012786722263864542 our:0.012754420657754208 this:0.008742162720525562 which:0.008143863688591397 its:0.007730434538995166 :0.08766825135358226 +a:0.29863315251276507 the:0.20809674456406993 his:0.06057181121679188 her:0.04007007274263269 and:0.035788674108347206 The:0.02496320883780218 our:0.01710948347102875 A:0.016957943754032482 their:0.012867507779577294 tho:0.011308457868623806 great:0.01095542481049334 my:0.0098724963358644 one:0.008002580601545878 old:0.007130244193681764 two:0.00643444100596407 by:0.005752880874190365 he:0.005605825842069824 its:0.005228476312769747 this:0.005199732880046841 :0.2084508402877025 +the:0.6108981567463311 of:0.05285675395806891 tho:0.03660994262286784 and:0.03589350242837799 The:0.03173830217585465 in:0.024494336323712566 a:0.017484769199168713 for:0.016600245492766293 to:0.016120553316995162 their:0.015125430413281495 tbe:0.014887038202769291 no:0.012146877922293825 by:0.01010782270592318 its:0.009699932884958755 our:0.009029616638148 with:0.008970035745016848 New:0.008284636300434581 any:0.008158400121588362 his:0.007676626966830037 :0.052217019834612334 +to:0.31678985980456925 the:0.1895901300070226 a:0.12121839678513828 and:0.04930938070906945 of:0.0313213057053965 The:0.024262947280235085 by:0.011834276022361055 will:0.011494576306953457 tho:0.00976968614036796 not:0.009590778896943257 with:0.00953258840891194 this:0.009097195305957765 that:0.008309726734493017 an:0.006994495770014427 would:0.006752755380279424 for:0.0066561209821820585 who:0.00610490972679644 at:0.005677021151150875 Mr.:0.005400733959320977 :0.15929311492283613 +the:0.568254225966265 a:0.19173825800299124 and:0.0425538355103649 The:0.037859738358796316 of:0.024884801567183305 tho:0.021047489775379905 A:0.016088903516974465 is:0.01242540255170997 in:0.011169534317406714 most:0.007918414352440428 this:0.007794680150102885 its:0.006877906097583147 very:0.00654206582635938 are:0.006217896190609207 with:0.006217268092780015 that:0.00612575145703202 an:0.0059598293038248375 to:0.0057326627972113875 tbe:0.005433044617493271 :0.008158291547491656 +hundred:0.02334136986593815 up:0.005482494641173394 men:0.005366536521246011 Hundred:0.0047587970519216575 John:0.00441808156134956 William:0.004390720675819281 him:0.004016828614280843 ;:0.003997112205305733 due:0.003721199871732 in:0.0036582900032443304 time:0.003637206863828461 James:0.0035594902370151707 out:0.0034878448964120057 .:0.003467980723571515 1:0.0032804584819785204 day:0.0032444781513863933 ,:0.003058139385740603 :0.0030314555521939613 Robert:0.003005471634785646 :0.9060760430610768 +is:0.15469128011840827 was:0.14025786121053743 are:0.12108561235995434 and:0.0923903725826121 were:0.06289275610833397 be:0.05283810221505209 been:0.04090959582408105 of:0.036585267705370406 an:0.02864730295249185 the:0.01980331526435449 to:0.017482065723396462 Is:0.01741271831043088 by:0.015792012086065517 with:0.015762004010988245 had:0.014839393585078886 have:0.01451362588367267 being:0.012109671491610009 for:0.010785464264663208 or:0.010248212452023063 :0.11995336585087504 +to:0.49572559017477497 and:0.09735376951154207 will:0.08565337627898417 not:0.04249466014487971 I:0.032176326595553056 shall:0.03139017705408273 can:0.02138892345478416 would:0.019480836154835715 should:0.018283739180627277 could:0.016124908490985402 who:0.014891693622460898 we:0.014890536630954613 may:0.013572378112356516 they:0.01339839849040006 must:0.010357714112077625 you:0.007810774073581733 To:0.006627397328382757 They:0.006250538293542786 cannot:0.00560079888388784 :0.04552746341130593 +and:0.05520460348847066 is:0.04317458889700333 able:0.042031237639280704 order:0.04130777664556277 was:0.03917685688652239 ought:0.03393096292387655 him:0.031228957265222283 enough:0.0292172266508319 right:0.027922564243523768 ready:0.022542926375214285 have:0.02189641136899801 them:0.021838953805234543 attempt:0.02180573289760345 had:0.0205724874475885 unable:0.020474008742952292 began:0.0202028381636701 going:0.01948501607590043 refused:0.0192400458903477 as:0.0191058414486996 :0.4486409631434967 +the:0.135394831072184 a:0.05159190809904849 and:0.051018829278063546 of:0.04293090271179737 for:0.03359527138973595 to:0.02576465762836661 in:0.024685087619469363 be:0.024583876909076208 their:0.023592254593772993 his:0.022641379144194947 or:0.019194846552722144 so:0.01754186910652424 was:0.016580812780852265 are:0.015056906790411488 is:0.014246000087401223 much:0.013463304549996807 that:0.012754144310993941 one:0.010814277812773335 were:0.010740755752469812 :0.4328080838101453 +feet:0.0719208472326295 poles:0.05759396229176634 up:0.04010587224329879 chains:0.0385088170079141 entitled:0.029123404981740347 went:0.027388526271997813 came:0.025857650765910022 down:0.025633262313841977 him:0.025574415868859987 as:0.024916209858287616 and:0.023917753661251574 subject:0.02185045005331621 brought:0.02171367122116056 them:0.021644069985480026 it:0.02099405133651225 rods:0.019030517253069822 back:0.018922583019034468 go:0.01891708435510451 sent:0.018892511875840953 :0.44649433840298314 +the:0.4023784248964856 The:0.24747648011207618 a:0.058427228385710996 and:0.030025286510955446 that:0.029963955718042848 of:0.023077996150966337 tho:0.02196454256031189 his:0.020464163040192333 His:0.012660143800588896 Tho:0.01190513144574719 whose:0.010644299181743309 this:0.009940249704084586 our:0.008914304917400825 its:0.008536530572473004 tbe:0.008289867300011678 This:0.00825812849680358 in:0.008251878131064217 no:0.008244828419871387 to:0.007921974633026109 :0.06165458602244355 +J.:0.08584761212948191 W.:0.07530524976469283 John:0.0698937297592944 .:0.05340045989911683 A.:0.04593118044605572 C.:0.04116891882951949 H.:0.039306272438975436 James:0.039170936605723156 Mr.:0.038538579251645076 Mrs.:0.037637024199714465 E.:0.03131950243407223 and:0.029533736264229494 Charles:0.026626246289849963 F.:0.026316742990071553 R.:0.02504597119198594 William:0.02447559669996144 the:0.023783766836690257 Miss:0.022170981163425512 George:0.019501381225818355 :0.24402611157967594 +of:0.1983305577053164 the:0.12178245954108725 in:0.11061040835789508 to:0.04504828077419206 and:0.04476129291807927 his:0.033328024395672194 In:0.027335076647543893 for:0.024726680835414003 The:0.01922560956554635 :0.015530957219558994 by:0.014606871216745199 with:0.011424378583071246 my:0.009465371580873405 from:0.007880125973088115 our:0.007853007792922808 ot:0.007703059640068899 at:0.007406223921446917 their:0.0071363814084807395 her:0.006644387686092617 :0.27820084423690455 +the:0.6481680132134985 The:0.06199399210203997 a:0.05078140672641743 of:0.04415521237071989 tho:0.039696218508904035 and:0.018555324304925225 our:0.018324424177661565 their:0.017011428161861453 his:0.01649099459413301 tbe:0.014286109588907362 its:0.00861497338752474 this:0.007885635656720747 your:0.006011270081146276 great:0.00495274506672276 an:0.004244636121762552 my:0.0038442509657797648 any:0.003736009934280002 her:0.0032390803000486384 for:0.0027720120134870764 :0.024236262723458985 +it:0.30784014020292677 It:0.3066542608745074 which:0.03725285899622647 This:0.0372042020243546 he:0.03115819032224168 that:0.024735733631584194 and:0.02057100085390027 what:0.0189570658206395 He:0.017968574820084994 this:0.01161309358866304 who:0.01063560188130451 she:0.008641093646542258 there:0.008505121089906234 What:0.005917357241326139 man:0.005461316016207982 She:0.005049981111487925 work:0.004672324677690223 as:0.004104939955021818 but:0.0038911705735435965 :0.12816597267184035 +the:0.13898054982616972 Mr.:0.10134544807074626 of:0.06615392240767116 The:0.043278330440478296 and:0.04162034131663931 that:0.038474065211129 a:0.028836085729107952 Mrs.:0.019741515838392454 .:0.016321296438550317 Dr.:0.015742377033130618 :0.01499245666898834 this:0.014601172820615167 which:0.012022811139796676 in:0.010986353410193092 This:0.009519698186461954 his:0.009450116155350293 to:0.009398710140252132 tho:0.009372386328052828 or:0.009138862077782499 :0.3890235007604919 +is:0.1300949053123692 ought:0.06235942008217411 are:0.06072445398663133 seems:0.05697318922100556 was:0.04954471475520722 not:0.048536362204045544 said:0.03881623685409472 seemed:0.03220746110521765 as:0.030923473227594384 it:0.030881869856406088 claimed:0.028226689520969073 have:0.027725540143517465 and:0.027557757709861613 likely:0.02587900806524851 seem:0.02574969309575762 supposed:0.023317446089120043 had:0.02145961764731352 Is:0.017651730366473797 proved:0.01677680343414685 :0.24359362732284573 +of:0.10636360140592324 to:0.09568948690582824 for:0.061111111771219535 with:0.044155230239451254 before:0.0433589840210395 told:0.03467054822250266 by:0.028852284838191217 at:0.02293452519344252 on:0.02175299240776064 saw:0.021080042294107728 and:0.019070457398970647 that:0.018272378988090726 upon:0.018251435647505133 asked:0.01682161092996494 let:0.016052627436955114 from:0.015267168205055219 against:0.014831729566966314 in:0.014230495235385464 knew:0.012294672879079677 :0.3739386164125602 +and:0.06927930470873764 as:0.0380720740409481 able:0.03626401487887059 him:0.03250286932789319 them:0.03047189198767293 is:0.028047537398064273 time:0.02665388045318754 going:0.025018405892773335 order:0.021761236306190243 was:0.021311523185660958 enough:0.020081025681671322 necessary:0.015983062314211424 made:0.015819369373657754 not:0.015805093600040027 me:0.01564777047614032 began:0.015205353598670136 way:0.014338951833797598 about:0.013748580255937786 right:0.013355112396288546 :0.5296329422895862 +to:0.09864282010030183 the:0.08375297126946753 of:0.07074571151673052 and:0.06779046829403 a:0.02766650927741597 in:0.021670314456411932 at:0.021392828982420006 for:0.01627599403114278 is:0.015107338441904122 he:0.014818877918256685 was:0.013808540905081488 by:0.013132601340090633 it:0.012796195965848819 I:0.012723560421513859 :0.0121914922721236 not:0.011777366450725432 .:0.011011346691779235 that:0.01092359583028988 with:0.01073896800850032 :0.4520324978259654 +one:0.1028303141280697 part:0.05963429477052991 out:0.04766456937681193 some:0.031418679026461914 members:0.030764490253327767 side:0.029940657362655835 portion:0.022063658796890564 office:0.020457735219956013 member:0.019726706386316174 end:0.019666887540649894 tion:0.018667441728710307 parts:0.016814747270460957 people:0.014112771422418794 all:0.014072739582212475 any:0.013183573287639892 One:0.013083578354183906 that:0.013024335602903442 account:0.012482348155001894 many:0.012077825070275192 :0.48731264666452345 +and:0.14625498311756543 said:0.0821408402137806 fact:0.053042879817408975 stated:0.043080626045290886 so:0.03670560455337853 him:0.03145185140002361 know:0.030269284895004085 say:0.023631027804186345 is:0.023317250373478222 says:0.022511697585094068 believe:0.021363437164841573 but:0.01993757805139123 saying:0.018992342115662253 told:0.01877630041085035 replied:0.01865923525468731 all:0.017484377075553177 found:0.017287552137347117 me:0.01691240193856356 stating:0.014580183464830303 :0.34260054658106237 +this:0.5886476504655743 the:0.1043872525820926 to:0.04626916930662127 one:0.021803833464709186 an:0.019582949308394288 that:0.017948826345139578 each:0.0166042824189043 This:0.01587610393260874 last:0.012948439548523266 next:0.010432655012528465 a:0.010037303631834766 whole:0.009472770543333958 and:0.009099489344256766 said:0.008341219031501411 any:0.007863672061615578 tho:0.007336597934882758 One:0.0067011754590577816 every:0.006487526133250117 first:0.005610979942830557 :0.07354810353234037 +of:0.08521957227906049 the:0.05178706069252318 :0.03650667541504882 to:0.030781439391163463 and:0.02962034572259396 in:0.01784671389798486 .:0.016834623107487966 that:0.015526393687324226 I:0.013840999886420312 by:0.013767497727290136 or:0.01254935909255127 for:0.010096498028886706 at:0.009218074938947465 a:0.008528969002984322 from:0.008168826205403395 1:0.007824696530070648 -:0.00597446358399374 :0.005001636569150849 A:0.004848869479052729 :0.6150572847620615 +.:0.05021218144855212 and:0.04479768637941363 -:0.029109927587081766 the:0.027864096532691604 25:0.026154634760589386 of:0.023175701145906506 26:0.021877819610527493 3:0.017175607982702883 6:0.0170186925340535 5:0.016142027139170203 at:0.016022419691481844 Miss:0.014534688403222378 :0.014355500774093335 4:0.013803447245588643 8:0.012614725144381143 1:0.011457098074464588 2:0.009847906860540137 W.:0.008027990617473177 W:0.007589290537051946 :0.6172185575310136 +we:0.12048271887885963 I:0.11225524996347304 they:0.10253935980265745 it:0.06676674303353965 you:0.06512394108133913 he:0.06179351538884857 which:0.039458514851838086 and:0.036856387135993304 It:0.03281459606446882 We:0.03007076868887383 that:0.029835503371237214 who:0.029620927998478045 there:0.026261484509334854 she:0.018584684277616895 They:0.017999459916064692 You:0.01251509371997911 There:0.01150765147941163 man:0.010772663356690144 people:0.010047304312583697 :0.1636934321687122 +the:0.4187263940816949 a:0.0902242220467203 of:0.07392020052197035 The:0.03469351409628083 tho:0.02329720070940371 and:0.022498456764440938 by:0.017838451120811546 for:0.01641048950268491 in:0.016375691143473432 tbe:0.013073798863400135 I:0.011409245526946374 with:0.011213085213786248 his:0.009417629284049621 most:0.009052657152666385 1:0.007710356472652696 no:0.006993316317312524 A:0.0069406884395440275 very:0.006606352198713272 per:0.006364949472744233 :0.19623330107070364 +:0.04742997492373822 and:0.03730829075268579 was:0.02618967248078772 it:0.018800387931658908 be:0.018767504424745635 is:0.01828163475477836 them:0.01636259673056273 that:0.014128670240555953 made:0.013344073240744709 It:0.013341042919156504 him:0.012534422223169526 it.:0.011492665773878183 are:0.009912042040650647 work:0.009740276323746836 Is:0.00955150935593719 up:0.009476676572106945 place:0.009419578293603535 but:0.008960871182252994 used:0.00883420321859518 :0.6851239066166444 +it:0.15637721625000514 It:0.13930874819390424 he:0.09656798397249908 I:0.07171965410090544 there:0.06614202396891268 and:0.04112199471137442 He:0.039502843683696526 which:0.034211618191631814 There:0.03326608261523427 she:0.030916673921454876 that:0.022362490796087178 This:0.02142515127121293 who:0.017348414852061848 She:0.014420275132532415 this:0.011144237364033523 man:0.008968361643166752 lie:0.008777846201538013 ho:0.007859034127403589 what:0.007668606665059863 :0.1698907423372854 +one:0.07591276261110715 out:0.06051731193170748 part:0.05247657393880051 some:0.03764565803631056 account:0.03732080875142556 any:0.025795501308866122 all:0.022573497570587936 that:0.021706034880474935 tion:0.018820497961324994 time:0.018327338823311803 and:0.017698472540372448 use:0.017101246342976464 much:0.016743309263569286 portion:0.016424352739351607 side:0.015150320706867294 end:0.014971280442338157 cause:0.013657752568417643 because:0.013563549560043006 reason:0.012998228641295377 :0.48959550138085167 +the:0.25380090772485314 of:0.09230385326217767 Western:0.06704393312365377 a:0.05338056648690228 and:0.0486581578393546 in:0.02306180189001009 to:0.021113551466080363 tho:0.0175058779025396 The:0.015814635899946618 with:0.013653143909808122 his:0.01342532855239269 our:0.010568668389351497 for:0.010229636342450426 great:0.008972144659224851 said:0.007960243264757945 their:0.007883298407584583 other:0.00725324004545404 her:0.007231249736346301 old:0.006931937448388229 :0.3122078236487232 +the:0.12693455116781527 of:0.12021504717656556 and:0.0562193325109137 in:0.04678340828872505 to:0.04128884279045509 a:0.03164686253647981 on:0.022747258136207534 that:0.019858138271151515 by:0.01734611486217889 be:0.015335766406823412 for:0.0139786320427759 his:0.013629512214303651 as:0.013361574139090667 In:0.011460756829693441 was:0.010696518506178669 their:0.009447358386078535 from:0.009154136100655123 with:0.00906345592829633 tho:0.008720870631295875 :0.40111186307431596 +and:0.2115710965988478 to:0.05736664812821342 of:0.03365966191707751 which:0.03311268408575121 as:0.029985338535749664 her:0.02944386897331861 was:0.025522126474343838 but:0.024357319149942713 a:0.024216715927141405 that:0.023501179372981497 had:0.018659640093846963 not:0.01861002296399798 have:0.017057349901718248 for:0.017047644425109813 the:0.016680015363087913 in:0.01623024760617946 or:0.01595914267343573 place:0.015333182789101521 good:0.014578477473229696 :0.35610763754692504 +of:0.2613648749274342 in:0.20272006938966475 to:0.10794409451144368 In:0.10043428603497363 the:0.06135186938001338 and:0.034443897522568774 by:0.033472095270243016 for:0.02752806147002325 that:0.02268625597444197 on:0.021463447402882554 from:0.013883138256312537 or:0.01166676477407973 with:0.010412959216780034 this:0.008570836753617401 On:0.007280314985962305 his:0.007102326994841459 iu:0.00650609985858096 Of:0.005152047354984726 which:0.004691865251516361 :0.05032469466963529 +the:0.11919516938815296 of:0.07230453158552728 and:0.05781056740443249 a:0.043018564803886335 to:0.031305092790907506 in:0.020848713353460488 at:0.014270110001066288 .:0.012526810245749479 :0.012413283442322082 for:0.011719122709941797 by:0.010808400946589808 or:0.010404172990115616 The:0.01003576004804544 with:0.009811868184449042 tho:0.009295902015355835 was:0.008924239095331684 that:0.008672304223433876 is:0.0085591147338948 be:0.008335143826716943 :0.5187411282106204 +to:0.26939349106299515 will:0.1017809554795313 would:0.04660430077530015 and:0.046186061658730744 shall:0.03946600530174459 may:0.03909224100065753 should:0.03797508834495187 that:0.0371052017838977 t:0.0255829181028739 which:0.023680753961001975 must:0.021111391789034734 I:0.01737986145447781 not:0.014089846074914125 can:0.012329810500418087 could:0.010272928608814751 1:0.009258017159932418 :0.008831249941909172 but:0.007754241517281788 when:0.007625219242106631 :0.22348041623942552 +day:0.12098474034937058 rate:0.04528560322823298 sum:0.04117951590923793 line:0.03124797058258763 corner:0.0266767330051374 city:0.024636604367207673 Court:0.018482089582954355 quarter:0.018257568885372135 side:0.018219654158797255 part:0.018022018504349428 one:0.01682198105249906 County:0.01569875215451675 and:0.0133790227111548 out:0.013293810588951134 consisting:0.013052994315848183 number:0.01287863393475475 age:0.01229493127715603 half:0.011655400144801696 hour:0.011568234375118272 :0.5153637408719519 +the:0.16883506074108198 of:0.10345999980581193 and:0.07765091647747123 Mr.:0.042646070294986925 a:0.03676854853394007 to:0.02730423700154303 The:0.023555615107356022 .:0.020409359832543682 by:0.018024363299732695 in:0.013897353732280127 for:0.01331089079449869 with:0.011100144844755954 that:0.010788179786794411 Mrs.:0.010587736569899649 or:0.010484845999064638 tho:0.010440233278329509 :0.009960897908832863 their:0.009790656798233792 his:0.00974718170240166 :0.37023770749044116 +him:0.05746982063483186 able:0.05262029155602887 time:0.042735768979616916 me:0.04047013382086168 and:0.03810000078769122 is:0.03799386207369167 began:0.03562543982708602 was:0.03321709242690028 refused:0.0319984440735294 order:0.030597435198612404 right:0.030231090802680986 them:0.02928581565032181 ready:0.02903302726278088 willing:0.02847487950293533 enough:0.027055576578159057 want:0.026634539472388665 as:0.025616076462762292 had:0.022804455575396624 have:0.022103919078905392 :0.35693233023481863 +the:0.11392977680389905 of:0.08846259064902205 and:0.05348177218523282 a:0.04395715665752733 to:0.04261297149346951 in:0.023338177994176947 be:0.01963150953653559 :0.01669684074788262 at:0.015064914911668243 The:0.01343716963490001 by:0.01313524267330454 for:0.013102085369586368 is:0.012805659957951602 .:0.011887856513172786 Mr.:0.011849685851640595 or:0.011548612674048265 was:0.011306574297469679 as:0.010491002927136244 no:0.010187354038941955 :0.4620730450824338 +of:0.09129790931378902 the:0.07369883040827747 and:0.047842263382354346 in:0.04189055351593407 to:0.04045875475680249 a:0.03542341257202578 be:0.02020462051672066 for:0.01979292654746225 was:0.01760256398103379 at:0.017380150555488715 is:0.014984483003968216 with:0.014047653760730413 by:0.01374644383819499 :0.012670486581795598 In:0.01200961464556976 or:0.011563835749786333 from:0.011391516893522809 are:0.011273104484969465 that:0.010755276030689069 :0.4809655994608848 +not:0.1839124400192037 to:0.17035297837162056 I:0.14440188584471336 we:0.05694936201425641 you:0.05104893165179496 they:0.03528911810937416 and:0.03300188573836876 We:0.030225402147139823 who:0.028579237608194048 will:0.0260242874862594 1:0.0242146868592345 They:0.016987215147187096 never:0.016553748357072687 may:0.01173242246363297 should:0.011403313411506043 don't:0.010952520175195098 would:0.010229793023763346 men:0.009845932561813544 wo:0.009301019699421886 :0.11799381931024765 +and:0.051654636516201016 made:0.051015454799921624 or:0.024674408513783483 that:0.016062835335927065 him:0.01565924413931051 followed:0.01563124550437536 owned:0.015583321950137187 ed:0.014866750499448756 accompanied:0.014614648987466283 it:0.013626457525371337 taken:0.013108391888807197 them:0.012651103019890095 caused:0.011867361447385745 up:0.011657883035474385 done:0.011150870541727875 only:0.010691704012969913 given:0.010651579286736641 occupied:0.010536480438065907 secured:0.01016848645023085 :0.6631271361067688 +at:0.35311018205477 to:0.10350758405080729 At:0.09737785758898235 of:0.09282681404696315 on:0.08446879090799989 from:0.045131929596302044 in:0.042095081920137604 that:0.03700254237589233 On:0.018825887006642974 From:0.016487124385741257 In:0.012648825745544903 for:0.01097859674953238 and:0.01094641978538495 upon:0.00897431665394401 under:0.00788625601339877 with:0.007885799934761987 which:0.007053195718225472 by:0.006944026516964474 To:0.006649927289648217 :0.028198841658355945 +of:0.3068345513371397 in:0.11746968960157382 to:0.09340199647453845 on:0.06063911000864895 by:0.056109284907393434 from:0.046924089222828015 and:0.032337123526748536 for:0.030323269287193352 with:0.02812480566525275 at:0.028031798933781535 In:0.027352115100726927 that:0.02551991514378015 as:0.010194530965763494 through:0.009896697180320232 upon:0.00832146845508637 between:0.008316786826019777 into:0.007967327910057064 which:0.007301328420260755 under:0.006671565637398391 :0.0872625453954883 +of:0.2776005390649279 to:0.12104778733633868 in:0.06161410447002203 and:0.0591073764568045 for:0.04590775960451874 with:0.04244384463668739 by:0.04024201018204739 from:0.03561164879255953 all:0.035005165257298444 that:0.031814333922734646 as:0.023237799356800194 In:0.018335112603930708 than:0.017191578306873245 on:0.015533994580840328 upon:0.012054340836638295 among:0.011415123639318157 Among:0.009827722323582148 at:0.008862730368975384 but:0.008534383681098406 :0.12361264457800394 +and:0.22912390664137416 a:0.10102488350072591 the:0.08277899478610329 are:0.05419327014960823 of:0.043159707837142534 was:0.039995230397899796 is:0.033248123352809834 most:0.033198494582561494 not:0.032896439917250275 be:0.030403237548181472 were:0.020357558332360862 with:0.019886684971690792 to:0.01980476000348794 in:0.017069864788068646 his:0.015122105396501436 more:0.01377553789910709 or:0.013636268541174617 that:0.013366474782247952 all:0.013011000443882459 :0.1729474561278212 +virtue:0.062060494787377685 out:0.05417899169104244 part:0.03289673107629515 one:0.02969369892462812 quarter:0.027015883171169475 favor:0.01993830018372674 result:0.019463829004704194 guilty:0.018891084377354095 means:0.018499162894926688 end:0.018170939082736048 that:0.018121271122199262 construction:0.01726217741616459 presence:0.017003995482744873 tion:0.01673652166540914 case:0.01640819963257697 side:0.016055927605250184 erection:0.015381239457214257 account:0.015287601389485416 hands:0.015156055434805247 :0.5507778956001894 +the:0.5036702146564812 said:0.03917438634962814 a:0.03424724866463108 this:0.0330933284652335 school:0.03179990846570017 tho:0.030428336410084317 and:0.02594635822872431 States:0.023991518309185215 County:0.02310982131120759 county:0.021092158316381844 of:0.016311236081438932 The:0.014373531700255064 our:0.012952596797252771 that:0.012934483490354611 any:0.011675194266424244 State:0.011419452829126668 tbe:0.010673142060669254 new:0.010523905074392931 such:0.009775967102369247 :0.1218072114204589 +and:0.1431816129065807 is:0.04604053697790655 was:0.03937266484723455 are:0.03180754852140232 be:0.031367260221452684 or:0.023968645284586726 that:0.022371712832083255 made:0.020462031833242942 as:0.01836639852986516 not:0.017143358772372524 been:0.01676847365072377 it:0.016008832479938045 were:0.015593691042582443 but:0.015375345867930103 them:0.014327668220623722 succeeded:0.013898796059670206 engaged:0.012442410776689389 out:0.011362083262793497 up:0.011207499883297414 :0.477933428029024 +on:0.27373579228469636 of:0.2346984789826734 to:0.06701075402631981 in:0.06275279319846046 from:0.05642761129272856 along:0.05338587827220453 across:0.03770204024846213 at:0.02999414685918961 by:0.020014354299295524 and:0.019252895836442938 with:0.017121444409030476 In:0.014786247519304652 for:0.014765153613274027 that:0.010893536086326351 through:0.010776852132355906 over:0.010503663419256093 upon:0.010025403445674548 into:0.00859159272910817 between:0.007088441053941609 :0.039472920291254876 +able:0.049855932887808 not:0.04920093819580491 and:0.04410751202370891 right:0.03956872784330408 is:0.0381972622510624 one:0.030574077827621702 began:0.03035436995571283 made:0.025888380349431053 him:0.02520825878420587 ready:0.02374560017410982 enough:0.023297886202172928 have:0.02323154748800388 necessary:0.02266485018315909 had:0.02160113410572788 allowed:0.020675343261481405 time:0.020312687810293783 entitled:0.020128827880052914 them:0.020092608099695878 unable:0.019882680763078288 :0.4504113739135644 +and:0.06429179285320122 that:0.026079982696218425 or:0.016836412092001943 up:0.01632556724560681 men:0.01567748746055668 him:0.015565163868282765 found:0.012696652210512489 it:0.012279157975661143 them:0.01215401432257612 city:0.011938216171704338 out:0.01187263083294212 as:0.011610766462175157 was:0.010839109624832066 put:0.010559112758649559 now:0.010377608713741429 held:0.009911198765533844 situated:0.009809008872780741 man:0.009200735110572733 people:0.009113941703023345 :0.7018614402594271 +the:0.3763748056160493 a:0.13647254898886463 this:0.09367096477414175 The:0.05100580372896321 one:0.03176139382929247 each:0.02747963849606246 tho:0.02471375990487973 said:0.02287757165828464 any:0.022177253367394 Each:0.019532925900398887 and:0.018904867446747194 every:0.018121717404553817 that:0.0173600498275765 no:0.017122891919498166 such:0.012020585337046705 school:0.010811844737949921 his:0.009978471457151163 our:0.009881746489596619 or:0.008903698908707252 :0.06982746020684164 +of:0.34621411243649913 to:0.10893445931589563 in:0.09161098137840082 for:0.06273453826902876 at:0.04684294605306788 by:0.04281756622369934 and:0.03349828388088869 that:0.0317953138027531 with:0.031377340868081985 from:0.0264135314723558 In:0.023082521379559157 on:0.02141693750160333 all:0.01403467746729489 as:0.013905404402008019 upon:0.01307836516253598 about:0.009000978551326307 through:0.007195242853147627 which:0.0070640424230861126 or:0.006878561789232643 :0.061104194769534784 +of:0.35303430459065266 to:0.11526806570605731 at:0.10622621719751045 in:0.09817407896928837 from:0.048368888892928424 by:0.045355860469184606 on:0.03629090103850913 for:0.03130463006129086 with:0.020934759533211406 In:0.020191677424881625 and:0.018442633689005977 that:0.01610622989887744 upon:0.008651409544999647 into:0.008323368107360542 before:0.006707559888788073 as:0.006556127090627583 through:0.006423351920343712 ot:0.005413068691294137 At:0.005392059654740481 :0.04183480763044754 +the:0.2201908935433716 his:0.0976579349949835 their:0.08666111733803726 good:0.08485566374036664 and:0.0716375517702081 a:0.060188963374643495 of:0.04418617841785295 my:0.038449201090271404 her:0.03821460978498246 our:0.028070856612511845 The:0.02501744497017855 or:0.024543695951881984 abiding:0.02058591312294371 its:0.02025547385155988 to:0.015074749016030632 your:0.014177442383829125 more:0.011822081616747523 all:0.011756197883000117 great:0.011752935411652727 :0.0739010951249465 +to:0.23303586758230033 will:0.11441976020327546 we:0.08964847682877192 and:0.06001908933465047 they:0.04721631422533932 I:0.047036056668216704 not:0.04424493413349764 you:0.040675996132794434 may:0.03443766972859198 would:0.030482090793957674 could:0.02187753220783898 We:0.02170531244726982 should:0.020631465742373588 can:0.020416172825129645 who:0.016666333395682756 must:0.013365320180309703 They:0.0103291475257116 shall:0.009965556135943516 might:0.009786120641250668 :0.11304078326709378 +Secretary:0.1511604966761033 State:0.11912442176857684 county:0.049764303877705224 state:0.04449063657236486 city:0.04215202521745635 County:0.03516781404026815 line:0.03307353890234723 City:0.030823423436800182 Board:0.028430085613161134 day:0.015777498170313854 Bank:0.01339879929736687 side:0.012888208937978003 out:0.011146696263677024 acres:0.010659366425400954 number:0.010218281212588899 corner:0.009852651700594716 town:0.00984396735420615 part:0.009283347586002393 one:0.00852718371555029 :0.3532172532315376 +and:0.1531008102953297 the:0.07930106428082714 a:0.03335289749923896 to:0.032759142386420866 will:0.03121252791364417 of:0.02398239157438738 I:0.019711632734300908 he:0.017927068689496013 one:0.01392367589397067 would:0.013021290831476141 his:0.012954183450859753 more:0.01274359317125524 that:0.011905141898074066 or:0.011661822003234361 for:0.011608591565635611 all:0.010185440381204943 which:0.010095416495383262 an:0.009979259805512973 they:0.009935428034349015 :0.47963862109539884 +and:0.1650411091120186 do:0.06850075982064975 And:0.059094825756522855 or:0.035444830360682765 not:0.023104218102649465 is:0.022834122013723618 was:0.020889859831892874 are:0.017695581522576418 for:0.016671179394965853 be:0.01592724269830357 but:0.015505994149206037 done:0.014927008302281872 of:0.012994716128981792 ;:0.01208297270916525 doing:0.011942101837612705 it,:0.011590038515995115 that:0.010553412006064581 to:0.010387919084670658 in:0.010310336189736022 :0.4435017724623002 +the:0.7984061299133167 tho:0.034447767980214775 The:0.01789639798996553 this:0.014828049367264591 of:0.01366747751642261 tbe:0.013245077719656556 and:0.0073520920401633156 in:0.0062059904133822145 that:0.006041635640974919 his:0.0059531440663901465 a:0.005768054254454383 to:0.0056050708345225875 their:0.004855641756159905 on:0.0043391511795822955 at:0.00424486264409031 its:0.003922650521892116 from:0.0029445311245188655 tlie:0.002449571890716954 same:0.002065264088824594 :0.044761439057486585 +the:0.2660575043292539 an:0.08033398535253918 a:0.06646137132549589 to:0.05699715385748634 and:0.050634082948628215 his:0.043940398056204914 per:0.023007062088886178 from:0.022755912746087088 my:0.02226371180661833 in:0.020763067747295805 of:0.01974621957731466 tho:0.017097307917717307 The:0.016230743177199226 by:0.016220847279756232 will:0.01101104149676478 their:0.01093038612580897 her:0.010696737418244546 first:0.01067187992956997 for:0.0101471795809822 :0.22303340723814633 +the:0.2614084473613599 of:0.14955849247512026 are:0.04954560137105239 and:0.04884003445539199 was:0.045788158048291866 The:0.03837428202263657 is:0.033945084450631394 be:0.03294496037659767 in:0.03181945843191553 as:0.02840279218808155 to:0.02232434586539773 were:0.02212096131856941 been:0.021794027687283293 his:0.018042387116357687 all:0.017959863139505837 a:0.017074472207804458 tho:0.013363599157299429 by:0.013152065413310992 with:0.01242391779207317 :0.12011704912131886 +mortgage,:0.061775792622098605 person:0.037430946809143495 mortgage:0.021886447561881635 one:0.02117739107767436 there:0.01993226338927051 on:0.017387329843599593 law:0.016739548771831057 or:0.015671133203875597 more:0.015625638317778502 whether:0.01454520251850112 and:0.012223788235355656 State:0.012210919094014823 little:0.012205506142643024 two:0.011936986285469912 state:0.01152265630526578 them,:0.009357420556485727 States,:0.009177354614189236 any:0.009060721904872154 cause,:0.009025393029888196 :0.6601075597161611 +to:0.2580372526992197 not:0.09923650256655957 and:0.09708330278807466 we:0.06338117209258672 I:0.046830712493168815 would:0.04447548492256247 you:0.037788734987445845 will:0.03603485512339256 they:0.032810196587507105 a:0.024740192344919226 who:0.022422180170150605 may:0.02234420316954291 can:0.01810425503819201 must:0.018026867224597624 should:0.017330505192968783 We:0.015174779195972522 or:0.012823770964622748 shall:0.012785271869660598 could:0.01181220734348204 :0.10775755322537353 +the:0.40885879631986227 a:0.2827928274685919 no:0.06987284782533687 The:0.04086332059902567 any:0.0359237895044975 tho:0.020420580513281755 great:0.017579305194365673 this:0.017526963593721346 every:0.011761940474373626 tbe:0.009815675965957215 in:0.008501390828148431 large:0.008424714615644474 and:0.008045363961226295 present:0.005984763475265211 an:0.005834339233808271 general:0.005582801234024489 good:0.005527044911033932 vast:0.005153968752984583 that:0.004872327683679893 :0.02565723784517059 +the:0.10827285224321626 and:0.08870080307854705 of:0.07654378796298532 as:0.07601899914727774 a:0.04239111470737973 to:0.036354557417072705 be:0.029098708624609438 such:0.02486086551323051 in:0.02412061979539941 so:0.021759133747919383 is:0.0213871206641338 was:0.01854428813517412 or:0.018041820802296556 his:0.017121500893264113 are:0.011896248230315926 Mr.:0.011670635217693667 for:0.009878887779613906 their:0.009758437766275404 at:0.0092398132181 :0.343339805055495 +is:0.1787324086498083 was:0.1078029858711744 are:0.09188232104893594 and:0.08010827398169973 were:0.03633947319273664 will:0.03403302725312887 for:0.025505081287713092 do:0.02531058912105152 have:0.024852162331002903 had:0.023659852737687125 or:0.02245518317236856 did:0.021470711542577365 but:0.020930332276488915 if:0.020749852004568872 has:0.02003594793072351 Is:0.019884781574703896 would:0.01975488126990079 could:0.01653053282132603 of:0.014541525291331124 :0.1944200766410724 +and:0.03256052575511031 .:0.022017303816361484 -:0.020641605843325122 1:0.01723770423025336 of:0.014089789693921084 to:0.013117937979527029 :0.011156261798272601 was:0.010985687923568596 it:0.010557526540282452 I:0.008577308336300755 etc.:0.008564805974266275 t:0.007648622955874518 is:0.007179798408990774 Co.:0.006799674262654118 i:0.006671660759355793 him:0.006634780679928402 It:0.006368068119798354 2:0.006018802198754227 Jr.:0.005648665373043216 :0.7765234693504116 +it:0.20551275024453827 It:0.1403502321761757 he:0.057886339866640615 that:0.048229340036489446 which:0.04616444554704558 and:0.037634466868762165 there:0.03691183844456655 This:0.03132639786902124 who:0.029804667452452138 He:0.025940922051691816 this:0.024133722897169863 she:0.014990894984864906 what:0.014764547157594907 man:0.013481155548913949 There:0.012762430874717508 as:0.008205403287601698 She:0.008116054831640174 matter:0.007291546227657741 work:0.007137869087972377 :0.22835497454448334 +and:0.37966639409275105 of:0.07369907816275165 by:0.04871710230893981 that:0.01995221347418887 :0.013887405258393562 to:0.009572509995976601 as:0.006106900510194879 said:0.0057175942482541485 sister,:0.005700050052985805 from:0.004836291737594641 for:0.004501108674260543 Mrs.:0.004341883199456479 or:0.003997099188300416 president;:0.0037500883575338328 when:0.003724263745270174 with:0.003472150155814943 daughter,:0.0032903675590829117 Smith,:0.003056127549002445 ;:0.0029869329314463964 :0.39802443879780086 +of:0.2314993111549106 to:0.1186992496030503 in:0.08486864130977781 and:0.07104305844499986 on:0.062036245307282176 by:0.04823546613361541 for:0.0472356217297554 with:0.038592432879490005 that:0.03682710631633497 from:0.02970017091128019 upon:0.02104697083437222 as:0.019138436951337275 is:0.01774112019667803 In:0.01727352574413323 all:0.015529901050848989 under:0.011233162671109694 was:0.01044862627278781 but:0.007708546605473314 over:0.00750386175974662 :0.10263854412301611 +the:0.35341523956460297 of:0.07956603330050463 and:0.0715716236968506 a:0.0647697753079623 an:0.06325574618792214 to:0.042637192453947356 The:0.038858753376957 with:0.036689244166754065 or:0.026409127193069346 their:0.02503348273388609 his:0.02329558032919143 in:0.02299754020442379 for:0.020122715020061577 our:0.020052642993458554 tho:0.018042009729915577 other:0.015338200925540692 very:0.015028651181606456 is:0.014837478489092497 this:0.013673155208471406 :0.0334058079357815 +the:0.45924252507487706 of:0.060233940208714955 and:0.05219553099431086 The:0.048477746915832565 other:0.038971120496587415 all:0.03149212213838967 tho:0.025759378464661278 many:0.02225346355555162 two:0.02213562537858491 as:0.01890486160398083 several:0.01622558831311095 by:0.01591844274981247 three:0.014983303466065306 for:0.010763424800805776 tbe:0.009928344951805465 great:0.009779722005820723 or:0.009705031273115615 different:0.009591172344653258 leading:0.009396062086151267 :0.113042593177168 +of:0.09129790931378902 the:0.07369883040827747 and:0.047842263382354346 in:0.04189055351593407 to:0.04045875475680249 a:0.03542341257202578 be:0.02020462051672066 for:0.01979292654746225 was:0.01760256398103379 at:0.017380150555488715 is:0.014984483003968216 with:0.014047653760730413 by:0.01374644383819499 :0.012670486581795598 In:0.01200961464556976 or:0.011563835749786333 from:0.011391516893522809 are:0.011273104484969465 that:0.010755276030689069 :0.4809655994608848 +to:0.751131398128498 will:0.042297061395704987 and:0.030413809129968074 not:0.015311632147625919 would:0.013160789820159315 may:0.012576653896859493 the:0.01251830104150475 should:0.012423762667277261 shall:0.009587917891129132 in:0.00903882853012631 of:0.008002922355702572 must:0.007811710962553181 who:0.007342186485953242 which:0.007117204117618878 only:0.005449375074959868 or:0.004594028920036048 a:0.004398198087176092 that:0.0035876274737888124 :0.0034507206340516692 :0.038785871239306303 +and:0.04792812888602366 is:0.03674355754592876 was:0.032279999748146465 be:0.02595425262739727 it:0.023971412102897896 been:0.023432178362494543 have:0.023252630271840338 that:0.020008304447600513 but:0.01964537315321637 as:0.016590045469379328 are:0.016521562938494813 found:0.016234640245426275 has:0.013950475728664419 were:0.012577161272021596 had:0.012121680577872034 them:0.011744537813113846 much:0.011247906369934524 time:0.01074836540758703 or:0.010301170812790339 :0.61374661621917 +of:0.2816013393825965 to:0.09216309977263644 in:0.08275549669280713 that:0.0732470748403837 for:0.0671012991235716 and:0.05303382516887362 with:0.033533256979052115 all:0.028314836817571857 as:0.023815564205278833 by:0.02357880300674533 from:0.017759620640501742 upon:0.01525481192601633 but:0.013615793516067627 at:0.013597625890996771 In:0.01359476772466358 which:0.01350929637206444 is:0.012758750908767064 on:0.011917633839776263 make:0.00845224239776126 :0.11939486079386778 +the:0.16807735899698817 of:0.10541662057906837 and:0.05138367848570702 a:0.04141865232648221 to:0.0385989743764065 in:0.026264864977736738 was:0.019530675665220657 his:0.018900421021236905 be:0.017373825006196972 their:0.015767721170721456 for:0.01557246589796783 with:0.014071419046630446 is:0.012922913111931644 at:0.012690452250034052 are:0.010702713108721902 .:0.010158075558988393 Mr.:0.009672788574483367 tho:0.009612591781990074 were:0.009549306361446321 :0.391314481702041 +of:0.20187564065037453 to:0.09650344337888028 and:0.06487933376563704 that:0.0642736445529648 by:0.060598614120256064 in:0.05809995411062714 for:0.044953999368527155 from:0.03849470802649485 with:0.033173269949919405 as:0.02905959188391426 at:0.026727264874213827 is:0.02189908646457598 which:0.01999804332489038 on:0.019174653119247518 upon:0.01524256580925244 In:0.01511760999283414 when:0.014341464844038657 if:0.013120503725215806 all:0.012212165930453642 :0.14925444210768207 +the:0.4618823729036858 his:0.07298947806257651 of:0.04524697101528338 my:0.044189038258169284 a:0.039891069275259726 and:0.030295085699949417 their:0.02856422541506718 her:0.02792325425603101 tho:0.023500571184363085 said:0.019348992280526167 your:0.018507596635940156 our:0.01794320783006642 The:0.01782684582854415 its:0.010420464418664899 old:0.008221549221421518 to:0.008081910722296136 in:0.00800464783343449 by:0.007006898631801329 own:0.0064444201914275545 :0.10271140033549184 +his:0.2686542489270406 the:0.17441405723552567 their:0.0973289488540624 her:0.09621182864743252 a:0.044863944615872495 my:0.029894928007172975 your:0.017701832631656558 per:0.016974636491635674 our:0.015603929304623725 bis:0.011696452323301318 of:0.011609216984501123 its:0.011376371852926889 and:0.009113626216804864 two:0.008593165285963641 own:0.007471170343310092 tho:0.007349931043719249 or:0.006812712570409622 water:0.0062109089438825964 The:0.006122866035712373 :0.15099522368444562 +of:0.2452376472951898 the:0.13066170292668536 in:0.12306196683180362 to:0.04730118085751483 and:0.039241227114052535 a:0.034536945604713785 In:0.02739617972456636 on:0.018713131066103998 for:0.01837653582049728 from:0.016352364220947345 The:0.014974459047294367 with:0.014288517389833685 as:0.012077111950813431 by:0.011692205984681518 which:0.011099313493674616 that:0.01056474964226614 :0.007957159213686617 an:0.007660636498779579 their:0.007617305260758336 :0.20018966005613678 +the:0.10442087431339736 and:0.06939931179057497 of:0.059572203373200204 to:0.053395145484619676 a:0.0486301317746673 be:0.02495829126582574 is:0.02176810608490287 in:0.021387948844742682 was:0.021133420387223628 at:0.016201961358633225 it:0.014708045421280487 I:0.014013289124653647 or:0.013113755083441998 .:0.012431333144635159 for:0.012232343553272098 he:0.011657353848976844 :0.010801417707194536 not:0.01066798961461849 that:0.010348695280748398 :0.4481583825433907 +the:0.10891593177798514 of:0.10275460426607427 and:0.07596231829145485 to:0.044704122290811665 at:0.03658862703988362 in:0.02748348734084637 a:0.020423802274078192 on:0.018628242473079686 by:0.01728628916043959 .:0.016815259683059112 for:0.01392750525319928 from:0.013895667162241849 :0.013738043376092478 or:0.012784831996788936 1:0.008903090986313544 The:0.008561918986611912 with:0.008442122808577089 tho:0.008321298716979173 said:0.008303271816582768 :0.43255956429890047 +a:0.4214164141495728 the:0.12210348799008705 no:0.06157938330080742 his:0.036825492881957377 of:0.03407056680037781 any:0.03391925869317621 in:0.03293353774947713 this:0.02409496184955727 and:0.021158611393680478 from:0.018939250829729762 that:0.014499728583936925 said:0.014447461710597704 their:0.011666257293184453 to:0.011180678193988039 at:0.011003512034392001 or:0.010900541833143656 by:0.0105696346259315 The:0.0092030731609935 which:0.009142308824111073 :0.08934583810129781 +was:0.1394773464820789 be:0.13102126924920757 is:0.10250918621827153 been:0.08800732479052355 were:0.041107380273164844 are:0.03462585394449842 he:0.030313239312888884 being:0.02755731113152399 and:0.027539420749323525 so:0.02167957204609619 it:0.02161999429699327 had:0.021578622674740672 the:0.02032346147735717 have:0.01948094043021599 well:0.018443730143202042 Is:0.018124495970582872 im-:0.017247938013112644 has:0.017168083650691134 as:0.011545807391734724 :0.1896290217537921 +it,:0.029756134553415792 ;:0.02845133002124629 him,:0.02739893784187205 nothing:0.01977496789235653 time,:0.01814777025358076 them,:0.01584083652124602 and:0.014185211647901642 anything:0.010692111427851014 years,:0.009400672110053698 her,:0.008488524239272172 there,:0.0075069551421372 out,:0.007406830099653816 man,:0.007368377266949441 ,:0.007122210158502519 right,:0.007022947017784274 me,:0.006920506922008466 ago,:0.006816867453142093 one,:0.006782693081901472 all,:0.006560896127748885 :0.7533552202213759 +and:0.1472671800619858 that:0.09629589464983267 but:0.024496568566770488 ;:0.016602938089651634 and,:0.015026803633476882 that,:0.014274680888350393 one:0.011111179805348148 a:0.009129788726599117 for:0.008258990491009473 But:0.00814594231686113 worth:0.007629315666253822 it:0.007094497769891422 to:0.006960878562647294 which,:0.006837354831804505 him:0.0068337668265491544 And:0.0067913674807565695 time,:0.006542090963417294 year,:0.006190147842983999 it,:0.006150553879883652 :0.5873600589459266 +to:0.09749257770986998 the:0.09551206399013314 and:0.09354319224337997 of:0.07480932460768112 in:0.02967229660085893 a:0.025579896041081792 not:0.017538510939051802 I:0.014890048771587954 be:0.014454354650863947 or:0.013502879084097318 he:0.013420350455248153 by:0.013217729847265764 for:0.013182212294170192 is:0.0128700234264903 :0.012502131012163752 at:0.012352874503725284 that:0.011267247520049631 this:0.010977319699742834 In:0.010892947902981794 :0.4113220186995563 +of:0.09129790931378902 the:0.07369883040827747 and:0.047842263382354346 in:0.04189055351593407 to:0.04045875475680249 a:0.03542341257202578 be:0.02020462051672066 for:0.01979292654746225 was:0.01760256398103379 at:0.017380150555488715 is:0.014984483003968216 with:0.014047653760730413 by:0.01374644383819499 :0.012670486581795598 In:0.01200961464556976 or:0.011563835749786333 from:0.011391516893522809 are:0.011273104484969465 that:0.010755276030689069 :0.4809655994608848 +the:0.16554528352266087 a:0.11055508680151613 of:0.10172887091239655 to:0.05184954163892145 at:0.04717684110603688 on:0.03902611431520871 in:0.03874312365889179 and:0.03764654476571672 for:0.017007862902454776 from:0.01586376941231017 as:0.01537256649959803 that:0.014600789486350086 or:0.014238327805014907 with:0.011253870101006532 some:0.010749533118052193 all:0.010279630404969747 :0.010231617033904157 In:0.009553024976160687 his:0.009124582741955512 :0.26845301879687405 +an:0.23428538862457546 of:0.1436023320520123 the:0.12596008143319706 and:0.08861759476161203 with:0.03824992470738596 for:0.02759211530089464 their:0.023245551068831243 to:0.016781591938773734 in:0.016248226972729818 such:0.016213252954913396 by:0.014543312575779151 this:0.01411056236870928 no:0.013267762638664981 a:0.013133257185434677 The:0.012544660050999214 his:0.012520161049793897 as:0.01161895212446394 or:0.011474878035334535 be:0.011354775729944498 :0.1536356184259502 +a:0.2811768293437868 the:0.26042434553974425 of:0.05736276967317798 The:0.03280172744472473 and:0.029331842330475737 with:0.021336025474638434 his:0.020978794880034537 for:0.020523669445633174 in:0.017924852016261872 this:0.01778940794020324 A:0.015500634590504077 their:0.013227536522739045 tho:0.013146302497838897 our:0.011598124892694467 to:0.010256380579692807 any:0.009536950841113834 these:0.009450055381222101 or:0.00936757473602354 other:0.009332795607698197 :0.13793338026179228 +the:0.13019246613947535 of:0.11107446398179821 on:0.0648750507221831 to:0.04821166399918852 and:0.041539957608091274 in:0.032509125364570554 by:0.026321367049648534 a:0.023788967617769028 for:0.023085893288489093 that:0.01903806584002458 :0.015481689150491508 or:0.013475173677241761 was:0.012881266769612891 as:0.011117453902780178 In:0.011065692166858631 from:0.010945023773721694 which:0.009931178721716782 upon:0.009445776454576772 with:0.009057001789498819 :0.3749627219822627 +a:0.41530690144709376 the:0.11413809872245488 very:0.05109147704426034 but:0.04036752043917508 of:0.0341369072805336 and:0.02983917514203853 A:0.02562664574049349 is:0.024060939450024542 with:0.01878750321882679 The:0.017887249953961355 his:0.017351533870941377 her:0.015008060925763197 as:0.013867746946525232 that:0.012393113545193396 was:0.01040093229151475 this:0.010055532683032388 no:0.009859743004332294 their:0.009534249279293798 by:0.008969129070318525 :0.12031753994422266 +parcel:0.30835224722812793 tract:0.21579412428589742 acres:0.10066785065875924 parcels:0.09525509868534142 tracts:0.035539151327723985 piece:0.03095026478932791 strip:0.02321223789408179 lot:0.019486991571431477 line:0.010657292606098231 board:0.010356073550305054 number:0.01031265904111475 state:0.008410311969286278 corner:0.008189061616900322 sale:0.007774933598597961 Board:0.006167829406354523 pieces:0.005965982818993021 side:0.005679944583425015 cel:0.0056617283872849875 part:0.00531337198192535 :0.08525284399902337 +is:0.1948949889843478 was:0.19006078475311575 be:0.1049330609273383 are:0.08235353500087284 been:0.06498103784923907 were:0.05418526556946048 have:0.049720471854279115 and:0.04417184929575045 has:0.04257058220815009 had:0.036802812878381594 Is:0.02333653877824662 not:0.018797306282335835 he:0.015666047891752993 so:0.01148352494570286 never:0.008905693523422622 being:0.00889717437361699 very:0.008565995945485894 an:0.007570454246408608 most:0.007087020353305834 :0.024015854338786263 +the:0.6181814440821163 The:0.09001048274426754 a:0.060712969849265025 tho:0.029974310174242392 this:0.02342380231534043 his:0.016491290686837117 no:0.015043547317121092 their:0.012864579460024386 of:0.012116107285577188 tbe:0.012050274653056517 every:0.01073020238686785 our:0.009632279424903504 some:0.009631113361068372 any:0.009324580008742542 its:0.009128495217111196 very:0.006911748777573692 such:0.006877068593323391 my:0.006188892919754804 other:0.005767461105985754 :0.03393934963682087 +and:0.12899062919814724 it:0.035465495212388724 or:0.02750770718462162 be:0.022616731504610074 he:0.019938773188127135 county:0.013816263286781472 bill:0.01365152677824979 but:0.01308654400792022 them:0.012992706939133949 was:0.012655581302478775 States:0.01250206362674747 is:0.012037791218354668 that:0.012027975943805206 man:0.011848649943365422 one:0.011825886675370148 time:0.01146385919877939 land:0.011058174028344124 I:0.010624226955393183 not:0.010210741777299949 :0.5946786720300815 +;:0.017303610411968415 men:0.015044529767897418 it,:0.014018076202068505 up:0.014007172272536252 here:0.012595436009949798 them,:0.012521855963841021 time:0.011973054650579724 in:0.010021612449301604 and:0.009521829725829328 him,:0.009296192550168447 it:0.008026072365459462 years,:0.007034904907978988 of:0.0064220305162735304 time,:0.0063243141952104235 them:0.0059338499841016705 hundred:0.00581438629369409 city,:0.00581304456157083 out:0.005781811702795662 :0.005542879938667455 :0.8160033355301073 +of:0.15849889432157768 to:0.1114957454622113 and:0.11135876753292127 for:0.05378640354280426 by:0.05235165239438911 in:0.037379744812646006 that:0.02382973782375403 with:0.021159849674557845 from:0.017081432136734586 or:0.017059118882796626 on:0.015638388839205677 after:0.013932885823964642 not:0.012776718117674488 before:0.011952088009271286 upon:0.010046276344774433 at:0.00994097788395372 In:0.009498814278729822 the:0.007371306864905626 over:0.00684665731117317 :0.2969945399419544 +the:0.40064280470153946 a:0.14866119051724208 and:0.09983699963739695 The:0.06554925571176849 was:0.032224097393117004 no:0.029643983471091248 of:0.021360913854637485 tho:0.020266058227683726 his:0.013926976518688055 is:0.013898017594998396 are:0.012546336448560392 an:0.012005273276404407 be:0.010989557877069919 their:0.010663266047952107 were:0.009223233238496456 or:0.009187459497858179 who:0.008558958616369036 been:0.0074298287546448885 to:0.007334806719520324 :0.06505098189496142 +the:0.10297372367044996 of:0.06646960279149658 to:0.05508267827328108 and:0.04612044403690845 in:0.024480890432093238 be:0.02226292881191711 for:0.019240531770213922 that:0.018184986855507256 was:0.01764107802933129 a:0.016203805129290767 is:0.015967333207422496 their:0.01464370064033053 or:0.01402395676637703 his:0.01371349352298486 so:0.013488942174199662 been:0.012309425489452807 much:0.012293148137850568 as:0.011496076671219237 are:0.011411270738611477 :0.49099198285106166 +and:0.07359963406644195 be:0.052667135004264946 to:0.04483536256874564 of:0.043448293679263235 the:0.03579172892628988 in:0.028005289969665195 was:0.026700397492138477 is:0.024892551934152005 re-:0.024162182625676702 he:0.024086629517294657 are:0.02098604388819216 from:0.020307931541148256 a:0.018606881911690538 or:0.018077853608073062 for:0.017195224169077532 been:0.01615904189338184 I:0.015254891559368164 :0.015184018660626356 which:0.015016145996292442 :0.464022760988217 +of:0.35217536272967687 to:0.07652372472838313 with:0.07463149301248358 make:0.04305701689042179 for:0.03426708964549938 by:0.034016345816502334 upon:0.030783334623173116 give:0.027697861392694485 in:0.021894694047384495 let:0.020623698043114234 among:0.018741343006504502 on:0.018094666265910022 keep:0.01639359063274902 from:0.013995931452004036 see:0.010716568676821695 put:0.010519956017642936 against:0.010475393689284346 about:0.010271298932480487 have:0.01011739640093441 :0.16400323399633515 +of:0.39719662204600203 in:0.10134521640391601 to:0.0833163895289673 by:0.04828747029489093 on:0.03742211010107563 and:0.035275351459768026 that:0.032250407077747636 for:0.030213664950870227 with:0.028437125319874305 from:0.026874520076921996 all:0.020222740747269857 In:0.018408367298927343 upon:0.014531899861849249 into:0.012176015834548947 as:0.011029536240153702 over:0.009136641798246935 through:0.00846697568404494 when:0.007760098062783782 at:0.00747913820865555 :0.06916970900348558 +above:0.27282497832832286 man:0.09985142699725341 be:0.04048655670748141 and:0.03858658492694915 was:0.03560925995420583 he:0.028437775567468387 the:0.02736762609474953 been:0.022741138841794364 last:0.02220073520011826 were:0.016205859869697886 is:0.015869139857407687 hereinafter:0.012799306350557104 a:0.012620503260032754 are:0.01175301150237468 following:0.011076649199705402 I:0.011073369044526367 first:0.010414414191373624 it:0.00915709269161778 herein:0.008302121244718175 :0.29162245016964533 +the:0.1454500361787387 of:0.1080247151493501 to:0.04516715868785427 boy.:0.036249098323069925 and:0.03403580073245388 girl.:0.032660326140049385 a:0.03171979252021135 in:0.02714044436566853 for:0.02365213940166824 be:0.021942286684630472 their:0.021087116084698817 his:0.019774122064073623 was:0.014637031197642503 with:0.014008395154201525 are:0.012730720509515858 is:0.011363112041341867 as:0.011357870543086747 from:0.01063391638067422 were:0.010589399829418696 :0.3667765180116513 +was:0.11663246079571617 and:0.1014737877450778 is:0.044413108163743276 be:0.033379792008816786 are:0.03024107938792156 were:0.02676631275527705 held:0.017691790272591344 or:0.016476295618138372 had:0.015290317472758577 not:0.014602813304414895 him:0.013938259485476936 but:0.012804210787409197 arrived:0.01265468031686489 for:0.012325893535157943 that:0.011823252718564718 made:0.011740558384964715 I:0.011310701004815191 as:0.010970264732318684 sold:0.01045956350942837 :0.4740048580005435 +of:0.11514917390641632 as:0.0899820607749747 in:0.07864357585789215 is:0.062193060423876345 and:0.06061505408320883 to:0.05477102409374337 with:0.05105568848465878 was:0.051020335654771064 by:0.043602195985823954 for:0.03163618949825887 be:0.030871397252734193 on:0.029431626912429804 at:0.026946941416006596 that:0.02354711513931066 In:0.019205804955450267 than:0.014712822008516863 made:0.013861568614941866 from:0.013714605790797686 such:0.01347058268801822 :0.17456917645816947 +provisions:0.0679938503985306 copy:0.06201617447249093 date:0.05159752313646957 part:0.050661532655167846 one:0.04272232046411394 out:0.039198262926626565 people:0.03688333605300589 publication:0.031622932748407565 members:0.022148687792528047 tion:0.01953442712364951 laws:0.019086435714135187 result:0.017976916451795253 object:0.01720022560087386 portion:0.016216616046388216 that:0.01583665345861985 all:0.015799046403021585 member:0.014650050293503455 passage:0.014513299284273402 purpose:0.01444493434085836 :0.4288967746355404 +and:0.06675575941461008 able:0.052442773674246906 enough:0.0507239170015439 is:0.044986668303263276 as:0.04408481454983911 time:0.043216123654708144 not:0.042916449309274796 him:0.039280172289644574 necessary:0.033125408718459745 order:0.031205723091037443 them:0.03102043657565889 was:0.02642744608066136 right:0.02473504654122902 made:0.021971384900333197 going:0.019423697080867604 began:0.018767824163981036 only:0.01875733354752288 ready:0.018369758544126334 or:0.016241978101301582 :0.3545472844576901 +Mr.:0.14134048242455957 .:0.0870549569403187 A.:0.07150272898416317 W.:0.04624876308797362 John:0.03827040683703993 and:0.03190068106901179 C.:0.02891449786677928 B.:0.02754080147588382 H.:0.026894536624452837 L.:0.024196188135356452 Mrs.:0.022799014088771875 J.:0.02190708962931877 E.:0.02118839636598098 S.:0.018233672598795374 M.:0.01810281342669269 Miss:0.01713593999343032 James:0.017089348982014547 D.:0.01582094020324389 Dr.:0.015138146896117111 :0.3077205943700953 +the:0.10108370371951322 and:0.08453909138546126 of:0.06572555227086364 to:0.053728297199666444 was:0.037472780609194206 a:0.024799917322432034 he:0.02290167781106794 in:0.021822268259794542 be:0.020128276320862473 is:0.01872626707049616 I:0.017498071339649646 Mrs.:0.016464717898050756 were:0.014605246474403413 be-:0.014036774452815396 The:0.013539103242877909 that:0.012907915874442911 are:0.012847375830548695 Mr.:0.012796287755575102 for:0.012743057183841772 :0.4206336179784425 +the:0.37360132062741735 a:0.25047461789694886 next:0.07516425599230753 tho:0.024649479593757476 The:0.02413958957189975 and:0.021221763362963192 or:0.01951441725295376 last:0.01611555876911187 this:0.015550535286254835 regular:0.01537002371126748 first:0.013069415695037943 tbe:0.010311387874720909 his:0.010186289822503034 third:0.009859230044217678 A:0.009559218616515916 one:0.009316714723572523 to:0.008863566430711371 their:0.008138526733413571 second:0.007560980163272477 :0.07633310783115246 +one:0.0604011318383829 out:0.045978638789226124 part:0.03786232523891472 value:0.022799534959084065 cost:0.01792919123878055 side:0.017759260033096264 that:0.017695013222307616 all:0.017612406196041833 tion:0.016484609742456212 use:0.01623213908227709 some:0.01605128591875873 and:0.015961402592586604 members:0.015839157750970154 number:0.015499247074050896 charge:0.015265616067152286 favor:0.01419804107742894 sale:0.014132848261847042 people:0.01409103420644478 work:0.013740220877911727 :0.5934668958322815 +the:0.4258281569555503 an:0.255420667081395 of:0.06013014881214358 in:0.037839290269455025 tho:0.02282636096306159 The:0.022130356861166427 his:0.015557402845776893 and:0.015096148523755414 for:0.00920034845176201 its:0.0086076276996003 a:0.008605439816042015 In:0.008398891320494475 from:0.007516478515463087 tbe:0.0074198060328203325 their:0.007252777108462069 this:0.006732032946839054 our:0.006715777984594022 to:0.0066451883051616934 with:0.005501696026389852 :0.06157540348006686 +one:0.1028303141280697 part:0.05963429477052991 out:0.04766456937681193 some:0.031418679026461914 members:0.030764490253327767 side:0.029940657362655835 portion:0.022063658796890564 office:0.020457735219956013 member:0.019726706386316174 end:0.019666887540649894 tion:0.018667441728710307 parts:0.016814747270460957 people:0.014112771422418794 all:0.014072739582212475 any:0.013183573287639892 One:0.013083578354183906 that:0.013024335602903442 account:0.012482348155001894 many:0.012077825070275192 :0.48731264666452345 +in:0.40828081504304115 on:0.25671329451770325 In:0.13333885794179598 of:0.04666845016165391 the:0.04127743352673811 On:0.028567467306207194 and:0.009832354136820659 iu:0.009520977468424391 from:0.00617252443417745 upon:0.005773735407228956 by:0.004100601322442055 with:0.0035093173546713427 into:0.0032050545638352356 for:0.0030894070109418257 or:0.002848711760111513 to:0.0024772539266783174 tho:0.0023269206017089744 other:0.0022526271010512135 under:0.002216140645052081 :0.026828055769716436 +the:0.1116086653128523 of:0.10792374760743212 and:0.07771658186435439 for:0.06270900645056254 to:0.03722311129122521 in:0.024247872212355796 a:0.01999064487113768 or:0.01863950204601463 :0.01772462878489317 as:0.017635239813737043 on:0.016047355741945032 their:0.015395283141340834 with:0.015363254027468456 that:0.014498959130764339 by:0.01312166837182879 all:0.012751780144876075 some:0.010645121584409802 few:0.010455072459827868 be:0.01033876694248725 :0.3849637382004867 +in:0.2829955069547344 of:0.20542236320261628 In:0.11160947698478343 to:0.06909492067551443 and:0.0546512764706195 at:0.035441821282392164 from:0.033710755620158316 for:0.020395281642819438 that:0.019502205536758382 by:0.01659247404466739 on:0.015614256290520656 the:0.01218114231001762 or:0.011269888028186062 with:0.00795749523824697 as:0.007938583643834622 upon:0.007230211519796002 :0.005795210752132782 At:0.005300422551081788 iu:0.0051520182719953095 :0.07114468897912446 +of:0.1499685465292579 as:0.10698245563611558 for:0.07897626979048795 by:0.06790520818310032 to:0.06389128494054117 with:0.05472103564695462 is:0.05062942236534645 and:0.04866790166579384 in:0.043618034221613734 was:0.03415135688475236 be:0.024832945740506276 such:0.021003113383117947 at:0.02100301463090983 have:0.020753756604628606 that:0.020560492943598272 make:0.014819537051282193 from:0.013332704241773368 had:0.013190669686140034 than:0.01281868036603831 :0.13717356948804119 +of:0.13269598987756875 to:0.10750610406169675 is:0.07728938411169335 in:0.06674946372120663 with:0.06320307101264801 as:0.05843491196932075 and:0.0536823218563209 was:0.04255920339888508 by:0.038296039559434995 for:0.03229423350208203 such:0.03209165166856318 be:0.02601472237144655 at:0.021654617562430152 on:0.021360217514541133 not:0.01769816728894333 make:0.016890669161849087 made:0.01589172360667042 from:0.015249355975900311 In:0.014057510246262393 :0.14538064153253616 +the:0.14584055935117013 of:0.10172771666478374 a:0.07060082129784516 and:0.06718169616285707 to:0.05866096376205938 in:0.04337395090727511 by:0.027656349516759545 for:0.02657204140852516 at:0.022062164414392647 with:0.017559752995748155 The:0.014747328905182598 from:0.014716116335038186 that:0.01445185164561241 his:0.01222559618152102 In:0.010790316355029427 was:0.0103832391686947 all:0.010292743047499654 more:0.010266949275652904 be:0.00927999498274551 :0.3106098476216075 +the:0.097505021457163 and:0.07030197488418653 to:0.06900555706496254 a:0.052721302429589965 I:0.04501566809834704 you:0.025862293050913056 be:0.021840174186662356 we:0.02028646343244004 not:0.017346973837209203 1:0.017127241362981677 they:0.016684214972446505 he:0.016649199478509628 or:0.016321724406902063 his:0.014011449993308944 it:0.013351925711485864 this:0.01253694967860298 any:0.011574209697219466 will:0.011348508737299038 no:0.01093437442755395 :0.43857477309221615 +of:0.29667795884239817 in:0.13735385236549044 to:0.08496664874398369 for:0.06941448095742334 that:0.05630744707379679 by:0.04835005295853528 and:0.04129217858548629 from:0.029053027440197044 In:0.02820723221737904 with:0.025303844628645093 on:0.021449816681098355 upon:0.013667099891965037 which:0.012326426163545408 under:0.011020553001030248 at:0.010642247570868364 as:0.01025921028759473 all:0.010243409080441883 through:0.00791971016284099 into:0.007650446967040706 :0.07689435638023909 +to:0.29369385619199356 will:0.12353149064189192 may:0.09036646125892138 can:0.0864065344579654 not:0.04588910592706954 should:0.04481538195911661 shall:0.03958714887997015 must:0.036621794944129565 could:0.03435915248370527 would:0.029828585670387087 cannot:0.02117228845217057 and:0.01807055566634427 might:0.01541259483052374 it:0.014457296832962254 that:0.013084991372065303 which:0.00793525972539776 only:0.004839191932266463 then:0.004692869986122867 soon:0.004275046208359085 :0.06996039257863723 +of:0.4372956834750788 in:0.09660020470092122 to:0.09234295389917048 for:0.05826742910202378 by:0.036566362273732875 that:0.0313917444688796 and:0.026180914575336004 with:0.021690468662434702 on:0.01794836369875957 from:0.01786164440928296 at:0.017768446914936075 In:0.017526994150656616 as:0.01164829109800086 upon:0.010224122032714293 into:0.009076593846079305 which:0.007883372467790372 over:0.007515102668933031 make:0.007376620432799389 throughout:0.0071728824727681426 :0.06666180464970192 +the:0.46527929709506843 of:0.1714158025212588 a:0.07679225501135747 The:0.06265550259297387 and:0.033474328802769494 tho:0.016854936030259695 in:0.01232539295240402 any:0.012177257144022555 his:0.011345467371239489 for:0.011027374023224394 no:0.010979256378119123 with:0.010953308393078185 to:0.008619545185848284 or:0.007937146494023923 by:0.007575487569529445 said:0.007331670200779027 their:0.0073258549004200655 tbe:0.005431918055640988 some:0.004858603574098819 :0.054639595703883964 +and:0.1557396684056135 of:0.07088180991799607 by:0.038134732554471494 in:0.03606634333062441 as:0.031782686237907025 that:0.030915378191078646 to:0.024562800446074073 which:0.021409974980831224 he:0.020795165178006978 it:0.019751867749974738 for:0.01901792900438442 with:0.017041165498037723 have:0.01648375116907174 are:0.01474390134690869 is:0.014659201031704702 was:0.013376864205728391 had:0.013042447830706707 thus:0.01252964583719353 after:0.011466976519959952 :0.416597690563726 +the:0.17930737919362322 of:0.07573254476277087 and:0.06179558460677472 The:0.04411851215504094 a:0.022935650533334156 that:0.0209934455564268 Mr.:0.017066269456935703 to:0.016385251318332954 in:0.01629448064760637 which:0.01590871799154529 be-:0.014257601947591207 his:0.01403483701702863 :0.012518720747929833 tho:0.011614025045208424 as:0.009851771506032845 on:0.009495888335359939 said:0.009457609876493186 Mrs.:0.009235612107070237 their:0.0090190427918294 :0.42897705440306527 +and:0.0859418744517804 of:0.07551247486671721 to:0.07539659672374623 the:0.07045309393508928 Mr.:0.02274758551277789 that:0.017652724646195696 in:0.01737598277825107 he:0.01709959254149381 which:0.01654103510411567 I:0.015273998849156756 be:0.014979944657604782 was:0.01272916967430284 will:0.012671915297208573 for:0.012637617910702897 they:0.01214058432612297 at:0.011967166323311537 a:0.01138651066458126 is:0.010295563881058534 on:0.00997892754008469 :0.4762176403156979 +the:0.30282554556991326 a:0.21664105053148897 and:0.06638263436396505 her:0.04144096349897592 his:0.03216409192947518 The:0.027615960179438348 their:0.02596626547197399 this:0.02237086441940888 of:0.020438123520604833 tho:0.01993627454022747 our:0.019205250413775077 to:0.015613374528636257 A:0.01401678352369655 or:0.012392148232810526 great:0.011977574033104111 your:0.011763889992021765 its:0.011749497407725844 an:0.01121303350245602 any:0.01054171700598039 :0.10474495733432157 +the:0.5254465278114844 and:0.049477656736381194 The:0.04633024904084249 of:0.03779784606099274 tho:0.028743038763450968 A:0.020060326259394592 a:0.01368899789454968 tbe:0.012615119389363718 from:0.010769751357761688 do:0.010618847256560662 at:0.01039531620802171 :0.00971999634780716 &:0.00846601104058759 with:0.007652127714449518 .:0.0075944140691908074 said:0.006926943890359847 on:0.006094946091806141 in:0.005878585618818676 to:0.005791156349440141 :0.17493214209873623 +or:0.11823081187417345 and:0.08799993047806828 not:0.06325507463543846 than:0.056986161759154795 that:0.03602578253292515 as:0.032482682080100155 is:0.028597936020215868 there:0.027703303841976994 be:0.021652766842393114 was:0.021542089430037104 interested:0.016704987891304073 it:0.01669673395554227 interest:0.016195597354692413 made:0.015700528744892656 but:0.015622688370614734 them:0.015563513092130669 found:0.014587576535256852 been:0.01358040171154665 now:0.01338915388739321 :0.36648227896214314 +be:0.1661263217388037 was:0.1501055677626463 are:0.13339834957446278 is:0.09107244389542472 were:0.08324729704615781 been:0.08130760561734819 and:0.04389851542021973 not:0.031538841453646105 being:0.026693184879273968 or:0.017058580970746886 Is:0.013799127069399257 bo:0.011108160976243658 now:0.009195270862303151 so:0.00847186352143178 of:0.008021503216805328 he:0.0077524104605329195 as:0.006414733603832078 an:0.0056253413879780315 almost:0.005012565870743449 :0.09915231467200011 +and:0.05917734571267282 closing:0.04405297983259551 was:0.026323119710997635 valued:0.021005792503071843 held:0.01922887441606307 sold:0.018225285914023 2:0.017782437938973866 is:0.017552850459549643 arrived:0.01662711812741857 be:0.01645048243064216 are:0.016339673120917095 White:0.01533836240735085 not:0.015154252504664439 as:0.012706467917481812 that:0.012063629264509927 estimated:0.011864260728812118 Dated:0.0116063700277585 or:0.011444173640079769 made:0.010438189210536826 :0.6256183341318805 +the:0.7228191677182948 The:0.06258247774659058 tho:0.031979073918201324 their:0.020023093447090703 a:0.014452252899264639 and:0.01341460148135161 tbe:0.013406186837655803 whose:0.012037056356496932 his:0.00948888615609727 of:0.008478752209823984 other:0.0063647525509848615 all:0.006257106401583694 an:0.005814562399267561 its:0.005639890409038808 great:0.004909255387885296 real:0.0039801485736646915 first:0.003821403479931713 our:0.003785443505548372 for:0.0037469474493688473 :0.04599894107185846 +the:0.14864277934289818 Mr.:0.08298160614896188 of:0.06730428836542379 and:0.04792449789075421 The:0.03943052647926069 that:0.023349285159601326 :0.014705726926907825 .:0.013245464168086163 which:0.01247010321814986 an:0.009695522393888977 to:0.009235895170410206 said:0.00836869573894185 as:0.008345774837525953 in:0.008212535055174821 by:0.007629601191312455 at:0.006937807042722079 if:0.006490345936760386 tho:0.005849285996076729 he:0.005521515215325838 :0.47265874372181677 +of:0.163429473941056 the:0.09008315511794011 in:0.07257739650234195 and:0.05260358481742269 for:0.046861397843245944 a:0.046853653375381596 to:0.03832747362004388 as:0.027323580838893666 that:0.01511638497835854 with:0.014862265451776768 by:0.014066603892071414 or:0.014042738868382386 In:0.013541887707508004 from:0.011444398191858383 on:0.011042173084634935 their:0.01055131193367689 :0.010214875511225987 his:0.008335147583413458 more:0.008172387532473171 :0.32955010920829425 +it:0.14980370725759037 It:0.1417831987182438 This:0.0994395734160535 which:0.06123870759127718 that:0.053827314535707556 this:0.0485319048157116 and:0.03481463816943127 there:0.03163351300029438 he:0.025874957304685715 That:0.02452637228711398 what:0.02101535076138451 who:0.020745118014465793 He:0.01553744098124584 What:0.015466571118696077 There:0.012715435083286795 Here:0.00825702518154719 one:0.007881347531268929 Such:0.007797349307744799 as:0.006397540204786528 :0.21171293471946415 +and:0.12674259067684676 was:0.06744556250391642 is:0.040468347258470296 be:0.04045564024598723 are:0.02957706835313891 were:0.02184519287305768 it:0.02121515718804946 up:0.020159477743396208 that:0.018884751190120844 been:0.018713095393548224 made:0.017691374486249835 them:0.016576657235380748 succeeded:0.0150830632990971 him:0.013063873466757185 not:0.012755878642704896 all:0.011672805447430908 put:0.011166932722553272 come:0.010950396970695383 came:0.010700430882714114 :0.4738317034198845 +the:0.176211967845379 of:0.09034985525318431 and:0.08572622071544148 to:0.038303372028404004 in:0.035807539084535794 for:0.02683680871138257 a:0.025242667777321686 that:0.022012269140001723 The:0.02036228289443921 as:0.018331873294149363 which:0.017371812809497962 an:0.015626857440589535 with:0.015051910860761901 by:0.014723573409727641 or:0.01238149401650002 all:0.011337014187281405 be:0.010369154066322881 :0.010087335723875105 from:0.010078064418237703 :0.34278792632296673 +to:0.4238224131279696 will:0.0728306966190059 and:0.06588365522759566 not:0.06112404443758518 the:0.033665556285107784 I:0.030679731767874394 who:0.028680705192621232 would:0.028584316294186243 they:0.021843479227523773 had:0.021156257910761256 we:0.01995075365305634 have:0.018611938286067328 he:0.01819555294259431 can:0.01664993615410905 which:0.014626680489208392 may:0.013071573862822308 be:0.01262839472877965 should:0.011373875199031786 must:0.011360722031824201 :0.07425971656227565 +the:0.2936149089634087 of:0.08099346233422529 and:0.07891343974107792 a:0.05966293859344003 in:0.03241960402618357 The:0.030379716161416017 to:0.03028384745772518 an:0.021607973457543606 tho:0.017118673110793403 his:0.0156726671314809 that:0.012443658698996425 their:0.01044104749929012 this:0.009429189518883467 for:0.009215088027123777 .:0.009098604540903388 or:0.009033114509014648 our:0.008440200396522532 In:0.008059112813087682 as:0.007990484481464846 :0.25418226853741854 +well:0.13738824688806764 far:0.10215713598009707 is:0.05380327494308998 such:0.0537257759072621 and:0.04959633007957043 much:0.04633353629301366 just:0.03868107195616458 soon:0.03725034869663769 are:0.032786480993678625 regarded:0.031042594478420383 known:0.027356869597166312 be:0.025046225238086837 was:0.02453903020230964 so:0.022416495035156924 not:0.021892748101492627 long:0.016904135868404 it:0.015539135318736807 almost:0.014787176108221662 quite:0.014235374886882713 :0.23351801342754028 +and:0.0450914625105252 :0.04483799242170731 that:0.021103007851303392 as:0.014266093371734708 up:0.012048553616527001 recorded:0.01135464047922888 was:0.01027229178358891 put:0.00966160199388644 the:0.009026248334623836 out:0.008516187239676115 it.:0.008234370879612183 place:0.007766747308395657 to:0.007716712366337708 them:0.007121535587767321 it:0.007001040372680937 there:0.006674803914298693 be:0.006590308537222502 used:0.006414322623577824 in:0.006173691142344128 :0.7491283876649613 +number:0.0496411090873096 day:0.04334409816996569 amount:0.0312099376837506 line:0.03025856749160674 out:0.029256445191741663 part:0.02559762664484727 and:0.021283927300280187 one:0.020452347483776542 case:0.02033191000666753 side:0.01844794766032957 act:0.017754021042254424 time:0.017298685372278452 tion:0.016330653829232312 place:0.015992704583178346 those:0.015507966114220496 power:0.014662881834353948 use:0.014397615589725493 man:0.014359920417248567 lot:0.013630640085749485 :0.5692409944114831 +and:0.10706369487481922 so:0.05957960038447563 fact:0.04286502607468182 said:0.04191078837661015 all:0.03315022743078857 say:0.0330362577229265 of:0.03207197668432945 is:0.03027064840152865 know:0.023526717164677885 to:0.02316785757579128 in:0.018384008172419693 says:0.01818615006592108 me:0.017814331559052723 but:0.017642894171901978 for:0.017520262261926295 believe:0.01687297971043687 stated:0.016713714680076947 as:0.015749258850104135 stating:0.015230830495024312 :0.41824277534250687 +was:0.1892355630441756 are:0.08542202153655443 is:0.08482979004976286 were:0.07618648090949622 and:0.05863437830113091 been:0.03746905903476744 be:0.03415322035959903 of:0.03250623507061503 brought:0.027902268993443672 had:0.023223458951616868 bring:0.020215934317813843 in:0.01868023915217416 all:0.01662614345695452 for:0.015176936816735952 have:0.013335086280355265 only:0.013096488858428587 being:0.012449075600075596 or:0.011950781459314044 that:0.011674272635788657 :0.2162325651711973 +the:0.22483128250059006 Fourteen:0.08419238735830725 fourteen:0.06415851834216023 and:0.061968634801040645 per:0.05369277701703362 be:0.0431575360156952 their:0.033126338579113644 two:0.033082043683863846 are:0.029746808810260428 all:0.0244985022581585 of:0.02177970872546347 thence:0.02096004668055727 were:0.020410153526640242 was:0.018518340899246415 tho:0.01601039231724802 in:0.015095897414108418 his:0.01248954243357707 a:0.011381296404582315 six:0.01132130708252531 :0.19857848514982804 +of:0.18596775307538857 the:0.09850408962854437 in:0.04589988311265723 and:0.03979371193903119 to:0.0355363370421825 a:0.031232241583791138 by:0.02607635872890118 for:0.0180922565289564 with:0.015161251331082535 on:0.015126734177745103 from:0.013636240523843959 that:0.01291805235434823 or:0.012684461123356508 In:0.011787860237265347 at:0.011210268265351077 :0.01118763114379352 his:0.006926854234336136 as:0.006398184716426572 be:0.0060191597617573565 :0.3948406704912411 +or:0.17544484830691706 about:0.1744830479124455 and:0.11050460069458147 of:0.05535230399831178 the:0.039575102331336987 was:0.03945310998454369 than:0.03753524070733164 west:0.027442917551592932 is:0.026772783081179207 nearly:0.02579615431223484 for:0.02270555947587328 were:0.020874461901390088 least:0.019848254416830167 east:0.019791622784734668 be:0.018115743075219896 are:0.018024509190444897 to:0.01745998294981477 only:0.017049803944176878 number:0.01646697657324371 :0.11630297680779651 +is:0.11487091448437313 and:0.07274565777700374 was:0.06466846584532787 so:0.05709700603131186 in:0.05608078246248591 are:0.047625347793667325 of:0.04374171324125928 as:0.035589361583449206 be:0.03384810372587737 to:0.027990834786180568 Is:0.024002948276085193 not:0.023449206266610595 with:0.022199391019087415 In:0.022174827979188152 a:0.02155145194945382 have:0.02031295047539123 or:0.019810843091905565 it:0.018311598954117013 by:0.017768223684380652 :0.25516037057284413 +the:0.3513655039464603 this:0.29749718447899354 said:0.10927478244233071 a:0.023414122140010152 of:0.021953086319026083 York:0.017299945518474302 tho:0.016958482976343597 that:0.016399633805974867 our:0.014298176446093663 such:0.012377329751052941 his:0.010411643260108894 every:0.008082327251611515 tbe:0.007495721118276677 other:0.007147496466814453 own:0.005026113607467693 same:0.004813369791884501 and:0.004704323927739126 any:0.004439253695206997 The:0.004295611683049728 :0.06174589137308021 +No.:0.0643559996867421 and:0.05217728663602116 the:0.04457893615527467 of:0.04208592666726906 at:0.029559812124280428 .:0.026941588593129052 a:0.02665337501305524 said:0.02218285368793813 to:0.020968212253776656 :0.012113795208807012 W.:0.010346049690272937 1:0.008885076881085235 or:0.00887777499038276 feet:0.008858771980041424 in:0.00826327866723483 E.:0.007891826548905304 on:0.007224495184656087 C.:0.006686993849698836 street:0.006472148815453404 :0.5838757973659757 +and:0.08529990646477506 passed:0.07391398244130352 passing:0.05542736247893535 way:0.04295083303473848 went:0.032008847256932906 it:0.03150752388213557 go:0.03116060608487825 all:0.02958447872519049 pass:0.028669214712268003 out:0.023583590904430594 down:0.02180757905760855 up:0.021691451677190925 run:0.020056510074409596 running:0.018844210927994806 them:0.01859738012378954 shot:0.01682581032465277 passes:0.01666206419304904 going:0.016288357784768375 or:0.01600814422633801 :0.39811214562461017 +and:0.1294581213894054 to:0.07528760763781872 :0.045835166344722324 that:0.019231713278471525 which:0.019100596093560858 de-:0.01425111478274749 of:0.012532734534662764 who:0.012199806773009733 it:0.010888454635824768 not:0.010512774236357854 or:0.009245076177378336 in:0.009205556056082089 he:0.00858593224323626 It:0.007351701498772454 ex-:0.007340597214943636 have:0.007322725306467028 :0.0071815499958468336 I:0.0070824855949347424 for:0.006825875725891686 :0.5795604104798654 +it:0.015636955410360417 up:0.014487356227744927 him:0.01448596874903649 it,:0.01417820828972198 in:0.014121046512477075 time:0.01081525850609757 ;:0.009318771603736939 him,:0.008891270288473476 them:0.008608802898436234 them,:0.00818815958911655 life:0.0073057948500289994 out:0.007255421163513373 good:0.0072434539341201575 and:0.006998268944982497 work:0.006607759093113107 country:0.0058896103077156845 time,:0.005825084879653085 man:0.005773247484291919 for:0.005694465216327643 :0.8216750960510518 +:0.06786845772162974 it.:0.023198551080209576 them.:0.013046705367264544 country.:0.011084445260642525 year.:0.010398116756056138 time.:0.00908826873258481 .:0.007090276994567929 tion.:0.006828791521449283 years.:0.006602457742252596 States.:0.006546121607055138 people.:0.0064672540790322195 him.:0.006391456874912754 work.:0.006188453248951417 all.:0.00610338158045594 again.:0.005904975503766575 day.:0.005634199126206703 ment.:0.005413658485852221 world.:0.00526153402723483 water.:0.0052466999863224175 :0.7846361943035527 +the:0.2465570509530218 of:0.1323612516376516 a:0.11131608368868509 and:0.05157735233571937 to:0.034740611619878806 The:0.02666719672196224 thence:0.02108684058326252 tho:0.019242656148219378 by:0.018400495792875705 from:0.016670822511075028 per:0.01651078463333076 in:0.011348258818636216 on:0.010033090288309498 or:0.009739347282346945 his:0.009693373816544275 that:0.008886242522320622 at:0.008885508049334447 tbe:0.008443622599249079 their:0.00820805515411209 :0.2286313548434645 +the:0.6534245392901373 dele-:0.05998173888741762 a:0.04582843294807295 tho:0.033200807769012304 The:0.027718947302706486 tbe:0.01508183065033079 of:0.011801023869656396 and:0.011069880442480187 or:0.004269443209076556 at:0.0038533614720161684 for:0.0037425201420917963 to:0.003694532409759353 no:0.003650113212318077 any:0.0030917056795589336 great:0.003040094870168542 little:0.0023725961860763724 by:0.002347210074288306 said:0.0022645387792481183 new:0.002175568716166071 :0.10639111408941765 +to:0.09544307545339198 of:0.0906554718131729 as:0.08297560792494232 in:0.08163701058853465 is:0.06182051954429618 such:0.06161501877041926 at:0.051532860061191364 with:0.050435546709270015 and:0.04704215192405117 was:0.03944992807173868 for:0.031123853317637718 by:0.02601280337124497 that:0.024527432123528745 on:0.024113752770582846 be:0.022910790761252346 from:0.022884592702603353 made:0.019954410730779654 In:0.016255071190737314 make:0.015897072887741084 :0.13271302928288345 +miles:0.06309259132743558 and:0.05316641293814459 years:0.03684790929562272 returned:0.03528926522962305 feet:0.033191011759503224 away:0.032796392720194974 Senator:0.03187953070572271 letter:0.02881353777200208 came:0.028646635993119257 deed:0.02641770242230839 year:0.023201013549856722 street:0.018397430717748013 down:0.016062503508243006 free:0.015987239559853178 him:0.01592959960004591 far:0.015368014391948234 days:0.015330657252720523 ranging:0.014086132278892688 running:0.013835025777515551 :0.48066139319949963 +and:0.1998846272304418 faint:0.12895907574946225 the:0.10433824683311807 we:0.05438335888460649 I:0.04194137289270807 The:0.0413690590099604 was:0.04064869642633248 or:0.038906357860018614 to:0.03045464597962639 his:0.029336265029066482 their:0.028343098050392992 a:0.026463084524340024 no:0.02578825183230288 not:0.02554219835768595 he:0.02238817693315036 as:0.02219430046016063 per:0.02138008259925248 which:0.021179077824619173 be:0.021134731122781043 :0.0743652923999734 +and:0.0643963086467589 as:0.049004076938184135 went:0.04679795744291643 go:0.0412844124157456 up:0.02833178439069389 came:0.0281606527852285 way:0.028044022847036783 right:0.026250060102783093 come:0.024952228317585087 sent:0.023973720795618474 time:0.0230328344529661 him:0.021813615822071503 them:0.021532675398518802 it:0.02139869187823785 back:0.020927155696335895 made:0.020845928289125508 brought:0.019307318101437952 subject:0.018726046512606752 feet:0.01868596402029818 :0.45153454514585056 +of:0.24403712236193975 to:0.08663895337618344 in:0.06724697640204738 and:0.044493944599458705 for:0.04345179647019836 on:0.04142895402458299 by:0.03623031307783021 that:0.029378933741439447 from:0.027699607664802124 with:0.025419425759077085 at:0.02458685708680787 as:0.0232089372595174 In:0.021054054144959783 all:0.011855138867839937 is:0.011619931355192984 upon:0.011483448614626785 ot:0.00852727045076018 which:0.008375689702219344 or:0.008366696935033767 :0.22389594810548247 +of:0.09129790931378902 the:0.07369883040827747 and:0.047842263382354346 in:0.04189055351593407 to:0.04045875475680249 a:0.03542341257202578 be:0.02020462051672066 for:0.01979292654746225 was:0.01760256398103379 at:0.017380150555488715 is:0.014984483003968216 with:0.014047653760730413 by:0.01374644383819499 :0.012670486581795598 In:0.01200961464556976 or:0.011563835749786333 from:0.011391516893522809 are:0.011273104484969465 that:0.010755276030689069 :0.4809655994608848 +the:0.09684081064840576 and:0.06551335624548284 of:0.05146145169206151 from:0.049520598669154245 a:0.045427902131977435 to:0.0370403239153822 be:0.035669151526387034 was:0.030489628475080553 is:0.026635804908522978 in:0.023878514238638158 are:0.018513936943033917 not:0.017945708099223703 or:0.017556265685966497 been:0.014265228721347686 at:0.013857211504087178 he:0.013733215789660087 were:0.012396679125422956 I:0.012347944480187516 for:0.012197989992860347 :0.4037082772071174 +It:0.15105730578461654 it:0.13705549353667484 This:0.07139188489440311 there:0.06063666502465158 which:0.05231605734217595 that:0.05045420251840253 and:0.042117262647667 this:0.04148079401425524 That:0.02476802148837317 who:0.02272905226182327 he:0.022086060633660608 There:0.019915965489627145 what:0.019869471998288996 He:0.011959522972590819 What:0.010892837676541188 Nor:0.0092146605044002 Here:0.0068386797934354504 as:0.006731356860163542 one:0.005741660742062064 :0.23174304381618677 +of:0.11528591527624948 the:0.10453879936593224 and:0.06451630990459173 in:0.03726184141051495 to:0.02821799885176132 Mr.:0.02560361835578469 Mrs.:0.020825096533194785 a:0.019922003630550397 said:0.018946240331655886 his:0.017531819174831598 for:0.01713276753560821 or:0.015585246572305696 The:0.015395823427671963 which:0.0137999097019372 :0.013688154390801809 that:0.013490958348761078 he:0.012681922975213535 be:0.010762323018543745 -:0.01044715222116834 :0.4233660989729214 +.:0.13098384515457648 W.:0.0986687522317156 Mrs.:0.07645099130199243 J.:0.07106020167352993 C.:0.061842868420520475 A.:0.05897258683421844 E.:0.03799143134346473 P.:0.030970376393205767 H.:0.02920235800871639 Mr.:0.026264495487108387 L.:0.02093819806998409 F.:0.019545850770911664 R.:0.018707206133478517 T.:0.018619529798987455 M.:0.016765250026182194 G.:0.016608600817464864 S.:0.0153002558818697 D.:0.014673335507478617 Rev.:0.014655765154516711 :0.22077810099007758 +man:0.12423793828039568 one:0.0570578411545404 and:0.05026030715833204 those:0.050086532259839625 men:0.03684323003131193 person:0.03618728992407981 woman:0.02495801905466428 all:0.019410807292980392 people:0.012821662518036929 persons:0.012618030755432563 man,:0.011038218736542406 girl:0.01031960025710095 gentleman:0.006638752059877602 Those:0.006465093596141084 farmer:0.00607161285980784 others:0.00603067178102228 he:0.005864737290369572 of:0.005290588156863596 but:0.005257778806612209 :0.5115412880260488 +of:0.279343092464705 in:0.11375570903353342 and:0.06678672346624978 to:0.06612371146571895 at:0.04636760556634905 for:0.04466176188532764 on:0.04237908864018331 from:0.03334928721791063 In:0.032786179306268114 that:0.029270156760181635 with:0.02919547903787445 by:0.02616927748311806 during:0.02542275338600926 all:0.013483534661679036 after:0.00932014941910687 upon:0.008889726103968416 or:0.007269193521905205 is:0.007265144897298429 between:0.006885970549464262 :0.11027545513314843 +the:0.21887362097987695 and:0.0927367553133691 The:0.050127445372066794 of:0.04957743035059913 a:0.03495030944631051 that:0.02035160868655897 tho:0.014786340065774296 or:0.014150891777438359 all:0.013518043934314154 to:0.01325618863712064 his:0.012574872984941242 other:0.010678212742093244 I:0.010410498993463978 for:0.0101712461144496 these:0.010016077608263181 which:0.009854491425792191 their:0.009839656571232518 in:0.009831887021023895 :0.00948574571220258 :0.38380867626310866 +and:0.10728972121647988 to:0.1018911962667651 of:0.0677950654963202 that:0.06591079136748158 by:0.04650772627014109 in:0.03901955391532 is:0.03134013842419174 was:0.0299915923866643 it:0.02781029228247946 for:0.02616340965726214 not:0.024426656701350098 are:0.023774451560697022 all:0.023637358933409052 but:0.022322840514150274 which:0.02173803530386271 from:0.021446570575488183 after:0.021209782855194745 at:0.020453182772112225 In:0.020171257820317708 :0.2561003756803125 +and:0.13583901136948118 the:0.08843793862440655 to:0.04444264869969467 do:0.04379092732237097 I:0.03887277499299367 of:0.02570004525454302 will:0.019427417919516108 he:0.018864092546921358 :0.016511014620251892 let:0.016389368288835613 for:0.016312822907182698 or:0.015980048606347223 did:0.015667968721851257 that:0.015421552430040097 which:0.013857803267375653 they:0.013454335522590219 we:0.012850453885730683 but:0.012530225013266583 The:0.012399696704244092 :0.4222498533023565 +the:0.151564299052826 of:0.09038750472184202 a:0.07461608498201407 and:0.0466615732099648 or:0.03708629888768566 to:0.035569645185394266 in:0.030052392055566975 any:0.021357004017533987 be:0.017082462262097576 no:0.015583554621420614 for:0.01514666947239845 with:0.014723578456062631 by:0.012787654001396713 said:0.012726164481980391 such:0.011693957670550037 tho:0.01002305994460469 their:0.010002787499567302 at:0.00923663004776501 is:0.008936804169325014 :0.37376187526000376 +hundred:0.02334136986593815 up:0.005482494641173394 men:0.005366536521246011 Hundred:0.0047587970519216575 John:0.00441808156134956 William:0.004390720675819281 him:0.004016828614280843 ;:0.003997112205305733 due:0.003721199871732 in:0.0036582900032443304 time:0.003637206863828461 James:0.0035594902370151707 out:0.0034878448964120057 .:0.003467980723571515 1:0.0032804584819785204 day:0.0032444781513863933 ,:0.003058139385740603 :0.0030314555521939613 Robert:0.003005471634785646 :0.9060760430610768 +the:0.5353484742022246 of:0.06537395439319231 tho:0.03241653214277022 The:0.02786888033793091 and:0.02600584179408838 said:0.020288080403952562 to:0.01954255083977221 New:0.01776260272901261 our:0.015072910312588386 these:0.014467599831846534 other:0.012805957722072141 their:0.010159085388847593 for:0.009289277652257684 all:0.009219427416927226 tbe:0.009132706017361044 in:0.0090528802720242 or:0.008810218239008774 that:0.008247596495671748 large:0.00621258229876607 :0.14192284150968473 +nothing:0.04282284411321727 is:0.027654821036778042 ;:0.01775285079066385 and:0.013746719728876757 it,:0.01216321995715829 was:0.011515893867161342 none:0.011491779787227194 anything:0.009884008080173942 are:0.009753073695290862 be:0.008736651108013093 them,:0.008410749740133032 time,:0.007989366420535106 to:0.007327892818170375 ,:0.006725032482383547 of:0.006385064753151522 as:0.005525649927477072 have:0.005279837386437122 him,:0.0052504835076937545 it:0.005236467170940587 :0.7753475936285172 +a:0.6726225227657224 the:0.12155768626809814 this:0.03198140569942119 and:0.019769934932968133 his:0.01952393190075356 every:0.015265610883848413 one:0.013587968655076289 of:0.009586112956984704 other:0.007263317639684269 very:0.006809646147701415 that:0.006538866440658034 A:0.005727727953707958 all:0.005549471548922852 tho:0.005046099909528992 same:0.004337011577577015 first:0.00424278161749607 as:0.004239848876977693 was:0.004216972804448653 their:0.004079982641111765 :0.03705309877931243 +of:0.28767355066866834 to:0.08775711267569858 in:0.08678131196995101 and:0.05160598694501188 on:0.04646139928102899 by:0.04519522654900943 for:0.044547789071328545 with:0.03396756772609607 that:0.033699232901107726 from:0.03075346596941143 at:0.027039283056790858 In:0.021061449543044047 as:0.017514234937992545 all:0.012543839382496166 upon:0.011844431150487573 is:0.00998972746569266 was:0.008814315973987914 into:0.008557199930727406 through:0.007781895704231326 :0.1254109790972375 +:0.042121809243109674 and:0.025115839546517717 was:0.01991321458715972 be:0.019361617353387452 is:0.011984115090027172 are:0.011708641305616186 that:0.010720595268890114 were:0.010118875880028138 .:0.008538828059217652 been:0.008214792900146319 put:0.007814765668374815 recorded:0.007169050565739314 situated:0.006726720926511513 it.:0.006648720798510434 them:0.0065998360318737246 made:0.006580774631752311 held:0.006505024562847372 it:0.006354607680120908 succeeded:0.006148044476402017 :0.7706541254237674 +of:0.27180894773455655 and:0.15283399132809336 to:0.0874076871969259 that:0.07075150670996712 with:0.05116063765647298 in:0.04458030074519907 by:0.04300961322089094 for:0.03636661339974463 from:0.023006509603810135 on:0.02118121624695309 all:0.01624337195324971 but:0.013841432596665319 upon:0.013233187236279819 as:0.01321130641405146 at:0.010795071862534996 which:0.009055080641513847 or:0.008993596675812517 over:0.007772552352740836 In:0.007051580691266869 :0.09669579573327088 +as:0.2599598752328905 of:0.12526828389026604 such:0.070272409914833 for:0.052014954334158675 that:0.046485107790308906 to:0.04005687703268154 in:0.039117684003553276 and:0.038846836629927516 with:0.03283031544921771 is:0.029882515081073917 As:0.02906461580609391 be:0.02408189614461173 was:0.01750263448200981 by:0.016805355727398625 at:0.01640721930923806 make:0.013870037304966474 made:0.013800180525976022 not:0.011577124298099293 on:0.009932840928575453 :0.11122323611411952 +they:0.13996622294520125 who:0.11619302424401204 there:0.07540506377430241 we:0.07043857481969086 you:0.0553292126958083 which:0.052821361864205246 and:0.043057930522691676 There:0.03686815313422968 They:0.03632360448838972 that:0.033306475279997645 men:0.033019072132825525 We:0.025884615114919195 people:0.021405745758510772 persons:0.011220592392922451 women:0.010218744697062345 These:0.009781302591755905 these:0.008878160942420553 as:0.008684386386173136 You:0.008511535166114796 :0.2016862210487665 +that:0.21488806932375457 and:0.13704574472682768 but:0.07364295408934517 as:0.06153783271550263 when:0.056237149067654445 which:0.05511792399565147 if:0.03254514212126367 where:0.026252377085483634 until:0.018569156542656885 because:0.018405251161535782 of:0.01685808952523818 But:0.01451924119369239 time:0.014332649376990287 for:0.013714485166924044 what:0.013251216067409047 though:0.012499089054312695 before:0.012092095141291899 If:0.011363662217684147 said:0.011229030518646942 :0.1848988409081344 +the:0.24511702902300805 a:0.12784839013170798 and:0.059471860360119796 of:0.05200256601197277 The:0.030889636389347257 to:0.026007589303344254 his:0.022714922672473926 an:0.021132491217301475 Mr.:0.02024039337391563 in:0.017563229887196913 that:0.01593743198515978 tho:0.01593119315382094 or:0.012846987644649472 at:0.012515130286431638 their:0.011896404752160507 for:0.010904986276231312 her:0.010626214910172547 this:0.010242848134135113 I:0.010017019838800361 :0.2650936746480503 +that:0.2604591165948226 as:0.09293075277684142 and:0.07603242207389153 if:0.07281671121158445 which:0.06068909128292853 where:0.052118049870758944 when:0.04793129197936202 but:0.03980425573798562 what:0.03387630663067231 If:0.021714257655359823 before:0.019699790067498404 because:0.017875842885993656 until:0.01661026726850103 said:0.01618516166501906 time:0.015576221681707166 whom:0.013999154462219608 than:0.012397596036867785 while:0.009927800352641687 But:0.009498620006437378 :0.10885728975890692 +as:0.05110605377922601 and:0.04612307563559411 right:0.034204792852532674 able:0.026572826173109916 necessary:0.021300196321598082 him:0.020823169270590153 is:0.01874344811119903 made:0.018617584565676533 time:0.018284130937250405 order:0.01801561131290911 enough:0.01777400486254779 going:0.016435008103064586 them:0.01635129260515571 power:0.01604877320185154 up:0.015616840315135506 go:0.015380455922940421 out:0.01386840052077512 went:0.013787726523389682 allowed:0.013542786614996267 :0.5864038223704573 +per:0.8875031030479259 and:0.010184579256754329 the:0.007414163687005284 por:0.0031380552352216775 of:0.0016109278533670704 to:0.0015564381189040039 :0.0013010469015758903 re-:0.0012330829886277753 one:0.0011711549250411188 thence:0.0010118282413011897 or:0.001007506653649153 he:0.0009013309464679997 was:0.0005892959084147847 that:0.00054007053367718 last:0.0005179418608738365 for:0.0005034265726362519 be:0.0004864105907566964 :0.0004508410077878818 St.:0.0004452895403683532 :0.07743350612964368 +go:0.05447425589597667 them:0.049947786305159614 put:0.04891957435337219 come:0.04678672109137259 went:0.041158722149022574 came:0.039148373726504815 brought:0.038541894299343446 back:0.036567028562601495 it:0.03545976072459045 out:0.030228358811462266 get:0.02919869056703388 enter:0.028793601386875957 thrown:0.026327650077951684 way:0.021223686773520493 taken:0.02087698221459921 got:0.020027665989557516 entered:0.019003752123689602 down:0.018051651688679095 fall:0.017976825985841122 :0.37628701727284536 +of:0.18778572678878766 the:0.098410555783915 in:0.08500142399868292 and:0.0596191289453448 to:0.044148584091143486 for:0.03653781409241001 by:0.03454364025427331 with:0.031893767130055345 a:0.03143892424367557 In:0.024558183829241267 at:0.01917131197520039 from:0.018643919768926983 that:0.015969027183844246 or:0.011352339953564262 :0.011019888233337357 The:0.010894638560478584 was:0.00997713911027589 which:0.009886925988969451 be:0.00977722429337698 :0.24836983577449648 +to:0.28158309297654144 and:0.10972116923054015 not:0.057688464941267385 will:0.05505464186497697 be:0.03742940299694191 shall:0.03372989800994785 would:0.03322108626864979 they:0.03271989377429297 the:0.027918654647811993 or:0.025223326424376264 you:0.023066931938115653 we:0.021903825306346793 take:0.020746359308838745 was:0.018649029867588762 should:0.01682140831573444 I:0.016605130442223677 he:0.014728890882943798 may:0.014652808647854499 took:0.014555684735704823 :0.14298029941930213 +it:0.13109955454668695 It:0.08521359104671744 there:0.039755471119241464 and:0.031580685277379124 he:0.02985987034776336 which:0.02382496541466466 that:0.02229513630851234 man:0.017940303923169167 was:0.01581639828609517 year:0.01481206185964182 who:0.012362072126308748 I:0.012291259558923752 be:0.011019148259873603 There:0.01092272941434988 He:0.010894530521593561 as:0.009169411618610377 here:0.008966490961822376 but:0.00829790201338459 is:0.008067106864420541 :0.4948113105308411 +his:0.18202103056849073 their:0.1363061665461147 of:0.09888357729861194 her:0.05892486550869185 my:0.05558945119095723 the:0.05217233538412194 our:0.04475419740173217 many:0.04082351168091648 with:0.04081269689283172 and:0.03580846340019336 your:0.02582648601972201 by:0.015564274836331875 own:0.01428056467623763 two:0.013725520309230512 visiting:0.012974838903318731 its:0.01248075663824599 a:0.010993729038332331 old:0.01078755809622257 bis:0.010364374055647963 :0.12590560155404829 +at:0.5139999124613347 about:0.0773555069146232 and:0.06158709021726872 to:0.030980369359324564 No.:0.029776145774879043 At:0.024973571258192606 township:0.024872304871834394 of:0.01918269995025235 @:0.01755091270804809 for:0.014867307179524501 range:0.012121475119553155 or:0.01125949803669568 from:0.010543178322692635 About:0.010509825198092836 a:0.00907854438249715 lot:0.00782958032582121 lots:0.007666219913229036 over:0.006571924158570722 Range:0.006525353494238903 :0.10174858035332647 +and:0.15972064780984221 was:0.12420656872046841 had:0.06603590996292519 have:0.04475613490240427 has:0.041730386769281466 he:0.03392992726827553 be:0.028089397714302446 is:0.027339685610460726 up:0.024989371502908996 to:0.02497384817189653 I:0.02220768346173899 never:0.022053915914865198 been:0.01794501460419433 not:0.017860426496277962 him:0.0171880023496118 down:0.015185865300678022 were:0.014231569338876409 will:0.012144156209705142 who:0.01188311657866016 :0.2725283713126262 +of:0.10110717462686608 and:0.07032993207476335 the:0.06965903074625608 to:0.0366850162622388 in:0.026508175882647818 at:0.018050179516753213 .:0.017611393745968706 :0.016725550230342095 a:0.01599892823380682 as:0.011240137312877162 1:0.010849689968982609 by:0.010328826082161869 for:0.01003341848347529 was:0.008391195218296144 from:0.007434463376248148 on:0.00742477443896385 or:0.007061732902666127 I:0.006857177203439989 S.:0.006219581374414272 :0.5404836223188315 +the:0.26269124785210723 of:0.06273773099267456 and:0.056099506727551735 a:0.047855694079783184 to:0.037797732944978055 in:0.03089334310442096 or:0.019173481976362775 tho:0.016380706532895598 by:0.011411847453320568 as:0.010761224474708338 The:0.008118129721954657 at:0.007924879237108697 .:0.007612651752120618 for:0.007513543158109309 an:0.007379923386442688 with:0.0073640377440558815 tbe:0.007363711888810574 his:0.007344001231673828 In:0.007230497643598382 :0.37534610809732233 +of:0.2574751638954372 and:0.10370424391999293 to:0.08154200584234976 in:0.06878135764038666 with:0.06204286832216829 that:0.05157352223720316 by:0.0472146057563795 on:0.043928882527986816 for:0.04227501685833979 from:0.025595024116983965 upon:0.01684045997565744 all:0.01659992497026712 In:0.010626017813674228 made:0.00948917419645655 but:0.008313282293149257 or:0.007938933207942766 at:0.0074633151326074865 which:0.007298173070122902 as:0.006113623325451539 :0.12418440489744266 +to:0.3201405126537017 and:0.10784195402687492 not:0.07709375672252793 will:0.07494942114128733 they:0.03811641455221951 would:0.034053128961930086 took:0.029889136301895353 take:0.02703053919500712 we:0.0236890101482262 I:0.02360315935511103 shall:0.022887889376087683 you:0.018045054297268485 should:0.017708675731481483 be:0.01733569677067437 may:0.016694487246863975 he:0.01514158777826161 who:0.015101541207994873 was:0.014274759731032583 could:0.013148084359145534 :0.09225519044240825 +and:0.07705437548817387 depend:0.031536193375950296 based:0.03144111872793531 placed:0.030957065963502946 depends:0.03075765919212402 called:0.030155936973754766 down:0.02681736716319054 made:0.026577710722022318 effect:0.023344764020024934 that:0.02149799173318628 look:0.02036076372291408 due:0.02026744173692952 call:0.019789339473829694 levied:0.01970103437603757 imposed:0.018928989316509288 put:0.01802119246063272 dependent:0.01689647076264392 out:0.015342186135269933 entered:0.01437601109950992 :0.505176387555858 +of:0.13846502221549875 in:0.09877095140236213 and:0.0900780431444722 with:0.06577788039367516 for:0.05989051073462867 is:0.05607502391728022 to:0.055986086479626794 was:0.043299227610771894 by:0.04325330993744552 that:0.0377851567497737 on:0.0251849173504693 In:0.024025642430814384 as:0.023241646726572227 from:0.018614359360642357 but:0.01803177371830134 make:0.01778595957494894 be:0.017193428754201927 or:0.014329243407775137 made:0.014068125468043709 :0.13714369062269563 +of:0.07421339075076222 .:0.04615343103655246 and:0.038130975130867883 :0.027738385370282195 Mrs.:0.019408293257837463 to:0.018472729565341985 J.:0.013570958868391962 the:0.01210458670309529 J:0.011228872363152653 W.:0.011182838468749845 H.:0.011166607697101648 W:0.011023695645817191 in:0.010442690070491235 C.:0.008922158495507504 C:0.008819242054880447 said:0.008389081023632545 A.:0.008074238831470704 deg.:0.007934767420150783 F:0.00777023122243565 :0.6442528260234783 +a:0.16142747308306452 of:0.1497368993486202 the:0.14270010706539854 and:0.10273668515200508 that:0.02230993403015754 this:0.021942412220388768 his:0.021197536046754166 to:0.016234413417125455 with:0.012748639610738546 other:0.012545143663817286 The:0.012379399014566533 our:0.011825410509069684 their:0.01179249185622339 in:0.011707988703223798 or:0.010650149931676643 by:0.010050971186349624 for:0.009817526251512838 tho:0.008767557560661058 some:0.008691503425220015 :0.23973775792342633 +to:0.31059571406939357 will:0.20425757625330873 would:0.133094322816397 may:0.05360388159749485 should:0.04751723065858571 shall:0.042846075470128905 not:0.03498447710879167 must:0.033197114998686265 can:0.01733161400489818 could:0.013140053132453297 might:0.010038574927070389 cannot:0.008553309467174345 and:0.008238336102433406 it:0.006886561425115729 there:0.00574775815678757 never:0.004645075469242335 only:0.004505185745248458 also:0.00449863383901001 always:0.002953648667362942 :0.05236485609041661 +the:0.12501213529677174 and:0.07155652309953148 of:0.052609940129058716 in:0.028320735107419746 to:0.027352226368332348 that:0.023655582888587063 was:0.022042931093136858 I:0.02117992979569259 be:0.02040334901588246 for:0.01915073747965047 a:0.018186963787182143 is:0.018082597111518887 on:0.015141432607690512 he:0.014740905412035949 his:0.014678343154957307 or:0.014471548948014279 you:0.012428922258617232 dis-:0.012004838166587189 it:0.011271760331748027 :0.456708597947585 +of:0.2662261349228254 to:0.10479345119875313 in:0.10433615245989038 and:0.06082928223496244 for:0.05621098749261306 that:0.052321804498042926 by:0.04257855484289261 with:0.0419149648340247 from:0.0357401282073235 at:0.030562454725544273 on:0.022858787376826305 In:0.02052935872662158 as:0.018630558396648716 under:0.012315894975303205 upon:0.012077652562446289 when:0.011302489850346471 is:0.010437393036738178 into:0.010295111393715453 all:0.007868983807925228 :0.0771698544565562 +the:0.24869359093708882 his:0.17416591280611224 my:0.07962617454387275 of:0.07591699096781948 their:0.045054969034143806 her:0.04326189655456505 a:0.0385459048859805 The:0.03733126264481164 and:0.0362665273860244 whose:0.036064013516996854 your:0.024556367902359526 to:0.013899702441531644 its:0.011644225677977833 tho:0.010965687418482502 His:0.010079371025838316 first:0.00933092007322805 no:0.009320855162541036 our:0.008762945662107339 in:0.00870597373870698 :0.07680670761981122 +the:0.38844387554167137 of:0.07925408870665167 The:0.07440124516528117 and:0.035279097641830744 his:0.031037185770490906 tho:0.0308006749272016 a:0.021172001675171654 their:0.0197603411906401 to:0.017492273308736338 in:0.016745804280368703 all:0.016527247096838768 for:0.015688091312135336 our:0.014337969298298083 tbe:0.0131134135525097 my:0.012772573365662206 other:0.011256027597140766 an:0.010984230617360528 her:0.009366949361526107 Mr.:0.009114498189858983 :0.1714524114006253 +to:0.0994176677028933 and:0.09011927427514894 be:0.08313182325625337 are:0.05323747341905957 of:0.05211083760550876 is:0.04901762277535258 not:0.04420857778224367 was:0.037418645171562265 the:0.03540846281798079 will:0.03171879024346947 in:0.025265525080075794 with:0.021475407122022946 were:0.018945064251073236 for:0.018394056793926063 been:0.015095276402965263 I:0.014187160640005868 would:0.012521540728226496 he:0.011630859027092903 do:0.0107171765752741 :0.2749787583298646 +the:0.39749834532651884 a:0.07520030034269234 and:0.05540858759821703 The:0.03273515726769502 tho:0.030061875542463562 of:0.020144331424922633 tbe:0.014929647509541684 in:0.014268129706664795 or:0.013333166761078447 .:0.013287381914101323 an:0.009000188755386574 to:0.00880680429595084 :0.007943763822197133 Mr.:0.00773879605474787 by:0.007328417831573476 as:0.005922572098978465 for:0.0047526933692942485 that:0.004736121968310169 on:0.004594595720579333 :0.2713091226890862 +the:0.3405938795103718 a:0.11246527046239031 of:0.10098633265691878 and:0.0987283725804201 most:0.03416932614400101 The:0.033830257523638885 that:0.030313962155538613 an:0.028014684922349535 by:0.023006467091281048 tho:0.015585800578743364 to:0.012931891929505446 any:0.01252332159141483 for:0.01188968543251622 at:0.011035793771476414 all:0.010737943397035625 in:0.009404263766139018 with:0.009189229876178952 other:0.009051391459337145 this:0.008094133036503352 :0.08644799211423958 +and:0.1511590258486039 so:0.07036640903401015 fact:0.06797436444861386 said:0.050210517779830995 is:0.042821991567032695 say:0.030989586579259112 know:0.029672498911657644 believe:0.02489907068938908 found:0.02021911821478833 was:0.01795495369219151 but:0.01763136270764056 see:0.01622211064035922 stated:0.01573455794090389 says:0.014884272342649885 think:0.014601546526757174 order:0.013360057868083669 show:0.012926396033830053 hope:0.01245987487115766 given:0.012212759378381398 :0.3626995249248592 +the:0.151564299052826 of:0.09038750472184202 a:0.07461608498201407 and:0.0466615732099648 or:0.03708629888768566 to:0.035569645185394266 in:0.030052392055566975 any:0.021357004017533987 be:0.017082462262097576 no:0.015583554621420614 for:0.01514666947239845 with:0.014723578456062631 by:0.012787654001396713 said:0.012726164481980391 such:0.011693957670550037 tho:0.01002305994460469 their:0.010002787499567302 at:0.00923663004776501 is:0.008936804169325014 :0.37376187526000376 +the:0.4618492952159561 a:0.10991619756254371 of:0.03860730346822578 The:0.028722034154159845 tho:0.027533292156144043 to:0.023456543170429212 this:0.020887018921896774 our:0.018369799333371295 and:0.017925918749427634 his:0.013685310653682337 said:0.013645340629232255 tbe:0.013455623986836938 that:0.012007275629328832 new:0.009278498672842382 your:0.0086756858788903 old:0.00777096628786788 American:0.007099480006051004 any:0.007076578008986279 A:0.00695507980784433 :0.15208275770628313 +and:0.20672345609064569 the:0.14732316531022452 be:0.10968825808352196 was:0.042040194569487474 to:0.03706307668240256 is:0.033202148067598615 of:0.02798242418345967 are:0.026036352859101018 not:0.02522119347887483 well:0.0249214812413309 or:0.022156665886208304 a:0.020492818825698682 that:0.017283981474652675 were:0.016520579918138767 been:0.01549834591212288 now:0.014757404554733847 The:0.013948189391718066 all:0.01391466503083724 above:0.013880105651353345 :0.17034549278788896 +of:0.25690902112161806 in:0.11110158107402558 to:0.10579239082141619 and:0.06505567336070152 by:0.04581829347584065 that:0.04129829459279509 for:0.040803620576925076 with:0.039224098798707335 on:0.03586527451910568 all:0.03509419555438332 from:0.03456859634666581 In:0.030562567811661813 at:0.01778929648440375 as:0.015671479140334964 upon:0.0143835569802108 or:0.008317762116143967 is:0.008312024136589753 which:0.008154626328532023 into:0.007398231429320848 :0.07687941533061778 +of:0.14842329130424534 to:0.1449029223687603 in:0.08921192669837766 for:0.07819497308300936 and:0.07714492189574676 that:0.06881161073904653 with:0.05324796634975068 by:0.04283821745682227 as:0.028693652190387442 under:0.023329203211726088 at:0.023252862589864035 is:0.020777495803076845 In:0.01969642400880403 from:0.01674673717652223 if:0.014835492463659205 was:0.013495222669116453 all:0.013296875209241926 but:0.011806468103414363 when:0.011412090629273765 :0.09888164604915475 +the:0.2572308428460212 a:0.09472902688971124 and:0.05718006243264987 of:0.05420054700615135 to:0.034585477300347514 an:0.03049022363716287 The:0.025259280464413295 tho:0.019627601621678776 in:0.013837020363522717 for:0.013178843490949802 with:0.012911163611853209 Mr.:0.01242981384395459 is:0.011596298619264077 or:0.011580478250565053 no:0.010501274562049264 his:0.009774380957167551 tbe:0.009598976619053207 that:0.009423964581248279 :0.009327996536201607 :0.30153672636603446 +and:0.09379053924927042 to:0.0742855066818078 of:0.06739630294563433 the:0.059809119354988456 in:0.027631208092333288 be-:0.027293809025147272 that:0.021435074971841002 was:0.020009129418631 for:0.018363033111366858 two:0.01705484412802581 is:0.016963649837169994 or:0.01689964597852544 be:0.015590573410395322 a:0.015001108975733878 which:0.01499881791074982 :0.013443348992596298 at:0.012448389513759608 by:0.01164637080842974 con-:0.01120718746514304 :0.44373234012845064 +of:0.09129790931378902 the:0.07369883040827747 and:0.047842263382354346 in:0.04189055351593407 to:0.04045875475680249 a:0.03542341257202578 be:0.02020462051672066 for:0.01979292654746225 was:0.01760256398103379 at:0.017380150555488715 is:0.014984483003968216 with:0.014047653760730413 by:0.01374644383819499 :0.012670486581795598 In:0.01200961464556976 or:0.011563835749786333 from:0.011391516893522809 are:0.011273104484969465 that:0.010755276030689069 :0.4809655994608848 +the:0.08806113873736761 and:0.06200644123741047 of:0.04093912337466367 to:0.032521430621364596 -:0.021649277992083844 that:0.02015225930043332 a:0.018640015922077268 t:0.01713242504146798 in:0.015867215009480802 :0.014224703734784539 i:0.012287600587958454 an:0.012173050175782473 which:0.009913330999894466 it:0.009808412074281965 by:0.009528223559759833 for:0.009143511990047513 with:0.00907189413328515 or:0.009029514572121259 all:0.008889278495301684 :0.5779611524404331 +the:0.7596243074991949 tho:0.03023269273264761 its:0.024840255806455595 a:0.019917793054809865 this:0.01587235238522324 The:0.015504696946616246 and:0.014565513394360756 their:0.012826040565435558 an:0.012098806768454184 tbe:0.011936870815432798 very:0.011925712820668954 our:0.011122339370390586 of:0.009468090329921106 his:0.00820826570371589 to:0.007357582942272768 most:0.004836207465183171 every:0.0043278514073243875 her:0.0041369074924507854 more:0.002691254344989362 :0.01750645815445222 +to:0.12022893700269083 and:0.09020394424291768 the:0.08587503820055309 of:0.06450042443224316 in:0.0310058468700829 a:0.017742048521183405 :0.015548046036689871 not:0.01491307651316237 that:0.014112408707955496 for:0.013734482372212283 I:0.013065769926808477 will:0.012848502316304782 at:0.012837991177321897 In:0.012628718855091186 by:0.012491091048660757 be:0.011425930130217754 is:0.0113962101007567 he:0.011342727513475473 or:0.01112522537451577 :0.4219735806571561 +the:0.11991222630156956 of:0.11682632291679969 to:0.05221153467916378 and:0.04525652848759622 in:0.033868980213598486 be:0.032895095775362135 was:0.03125149844658738 on:0.027150868466254193 for:0.017883716964161914 were:0.01620070102556719 from:0.015473179277763552 a:0.01509131990089101 is:0.015090807796228239 by:0.014859871353525974 with:0.013713036238736095 been:0.012925247531285922 are:0.012657757161210587 at:0.011040115779676738 his:0.010778968265535635 :0.3839122234184857 +up:0.03106649538018006 it,:0.01850661687765227 ;:0.016975388074441582 in:0.01575427046952791 him,:0.014976557037657958 them,:0.01230763089204928 him:0.010018465961330747 time,:0.008363244077700087 and:0.008250010950969881 on:0.007911706254349917 time:0.007606556853260358 up,:0.007571950515717596 down:0.007521523236420218 out:0.007374208281378024 lying:0.007239044206366805 it:0.007228913212886433 one:0.0072145297871181666 years,:0.006334582142000592 them:0.005964009983168504 :0.7908142958058235 +and:0.17297149572867973 ever:0.15451706074463673 be:0.06386785592263836 not:0.06091041608463958 been:0.05851827582774764 was:0.055623650093769704 have:0.05330859645424553 had:0.0500836649597774 were:0.03654087916456845 has:0.03355372487017658 never:0.029747668880425862 are:0.029729347815137693 who:0.02322380697885406 or:0.022695084560006927 he:0.021290871332328282 now:0.02113104756373896 the:0.01891622464953382 is:0.018555812913058252 I:0.01599132538970131 :0.05782319006633514 +of:0.34813761425743855 to:0.0890020188313929 on:0.08055620371026823 in:0.07304072216000486 by:0.06012433770913404 and:0.04366226343842905 that:0.03920070050420825 from:0.03565587407943382 with:0.027540363999716124 for:0.01910505069693268 as:0.018384001549159413 at:0.017425791039767363 In:0.015115269677938616 upon:0.01282060544106359 when:0.011826651504818564 before:0.008255025269173724 which:0.00785332577990459 all:0.006380931064573256 into:0.0063567813968723845 :0.07855646788976998 +not:0.22977478750135755 take:0.09805957961259046 to:0.0888637894382617 and:0.06263996373409704 the:0.05679601801812804 taking:0.037999345456021565 don't:0.035976778803473705 or:0.034219926902724594 you:0.02547398523208747 would:0.023424411411618638 didn't:0.022196399006486178 we:0.021714417737989627 took:0.021537062562466798 taken:0.020321304653401245 I:0.018143431054793147 of:0.017991321229549696 no:0.01760935712413709 a:0.0168853793187523 will:0.014849488495140858 :0.13452325270692228 +.:0.13005149921630196 Mrs.:0.1113150839025109 J.:0.09458231889675063 W.:0.059325555825117414 Mr.:0.05755407284320447 C.:0.04787407153815823 A.:0.0438657959896835 Geo.:0.02969939945272808 G.:0.02934719742166665 H.:0.028667613086291628 Dr.:0.026017508185649338 R.:0.024890486316124266 E.:0.024731849418845826 min.:0.024027606990254614 F.:0.02265826310384591 Rev.:0.019312747892591468 T.:0.01889224030074125 S.:0.017056179591713756 L.:0.01614550163868105 :0.17298500838913908 +is:0.24418402860585753 was:0.11794037707676397 are:0.08301563644724222 and:0.06955345567795165 do:0.050706174714513136 did:0.047389735729498825 will:0.04072263884175077 Is:0.03433729144576563 were:0.03394664598009165 would:0.029775525017134388 does:0.027564658802730048 but:0.02025113190614358 could:0.019324953325850186 or:0.01632529445745069 am:0.01348368893409325 if:0.013451075454160645 had:0.012019113447917324 have:0.01135470281242791 it:0.010729351607123627 :0.10292451971553294 +the:0.11500545585881412 of:0.0897605566703555 and:0.07914879987306167 a:0.05827037833039227 to:0.0386987683614473 was:0.029282661483795363 be:0.023890810389268442 is:0.02056818843792312 been:0.017204803150083207 or:0.017094944717067368 in:0.01610392931760865 are:0.015798243080240505 his:0.01344187865263006 at:0.01321973597799718 for:0.01304287912725108 their:0.012337012043366955 were:0.012236169772424844 :0.01133284696603621 The:0.01095822742659897 :0.3916037103636372 +and:0.14507320772351315 fact:0.08580533594336559 said:0.056464728489513914 so:0.05141663139801109 believe:0.03728868944610554 is:0.032697255055655516 say:0.030323479159427524 know:0.029749358812227955 found:0.025535190692382553 stated:0.021273605064562356 show:0.019511948220510757 but:0.018999393120383457 says:0.018814328565908398 think:0.016893655385130203 was:0.01658797795582863 all:0.01652317309060226 see:0.015409038245983688 opinion:0.015263158537430448 order:0.014744011681695817 :0.33062583341176116 +the:0.13742010605008512 and:0.10207877426319824 of:0.07397450603172974 The:0.03323666966533758 that:0.028170308219414686 these:0.024611712608994665 These:0.02321426573404504 in:0.02233958880195577 such:0.018503551962230223 to:0.016786282210728126 or:0.01636101860162539 which:0.016209694122772757 as:0.016160870658285174 their:0.015028655951173324 :0.014297837749869223 our:0.011954104112023089 for:0.01170272696380604 many:0.010385161604963049 other:0.010218895688899507 :0.3963452689988633 +the:0.11919516938815296 of:0.07230453158552728 and:0.05781056740443249 a:0.043018564803886335 to:0.031305092790907506 in:0.020848713353460488 at:0.014270110001066288 .:0.012526810245749479 :0.012413283442322082 for:0.011719122709941797 by:0.010808400946589808 or:0.010404172990115616 The:0.01003576004804544 with:0.009811868184449042 tho:0.009295902015355835 was:0.008924239095331684 that:0.008672304223433876 is:0.0085591147338948 be:0.008335143826716943 :0.5187411282106204 +the:0.10591996075466194 and:0.0856721267293688 of:0.06439561639965326 to:0.05701673332989599 be:0.03365177039737536 was:0.030077392177055073 his:0.028253406127067296 is:0.02444931772104168 at:0.022532502270227985 in:0.021654302239921132 a:0.016448289016885432 their:0.0159393091032337 were:0.014151405098550729 for:0.01403001045599503 are:0.013980739647852505 been:0.013883676405677777 much:0.013775022155220239 will:0.013574444962428843 as:0.012806648244907234 :0.39678732676298 +the:0.2523021019477806 his:0.1843402309273942 her:0.07707721795059509 of:0.058309312009453954 my:0.046426007171776744 their:0.04292821967083906 our:0.02834706065702998 a:0.025708649875060257 tho:0.018551140210687878 The:0.01831845953682887 its:0.01805538163842678 with:0.01715973498861294 and:0.016650295096187356 this:0.015371985563478336 good:0.015048113215990082 bis:0.014899359650861312 your:0.01483180539341375 two:0.014742575318544419 at:0.014718405943376998 :0.10521394323366136 +of:0.09129790931378902 the:0.07369883040827747 and:0.047842263382354346 in:0.04189055351593407 to:0.04045875475680249 a:0.03542341257202578 be:0.02020462051672066 for:0.01979292654746225 was:0.01760256398103379 at:0.017380150555488715 is:0.014984483003968216 with:0.014047653760730413 by:0.01374644383819499 :0.012670486581795598 In:0.01200961464556976 or:0.011563835749786333 from:0.011391516893522809 are:0.011273104484969465 that:0.010755276030689069 :0.4809655994608848 +the:0.1972922914779867 of:0.10707931134205359 and:0.07751345641690036 to:0.05965814400216777 a:0.03916990992603793 his:0.03332219732032006 their:0.03331774153636291 be:0.032850203570027194 in:0.031999481129964404 for:0.024419230255829164 was:0.015886632700938704 or:0.015687069681538747 with:0.014077907000147974 is:0.013616501400885488 tho:0.01238352879917961 at:0.012265965151178969 her:0.012068523214408489 by:0.011646939161358685 not:0.011571641806894432 :0.24317332410581885 +and:0.11656987380520652 was:0.05588226048105234 is:0.04043801780007258 are:0.028817519926784187 that:0.02488952930800125 men:0.022281870858139083 them:0.02225889087106998 it:0.019921946847308167 were:0.019833228421840873 him:0.01953279268894502 made:0.01869131621298145 not:0.018442236228279008 up:0.017254652484364648 but:0.016404790132854338 out:0.015536349888137473 now:0.015360397516882777 will:0.014923154069682894 be:0.014540408997547077 succeeded:0.01293477584176492 :0.4844859876190854 +to:0.14506571490709955 at:0.0879885400305634 in:0.07715813288823362 of:0.07660722566137507 and:0.04104192107880609 for:0.029478207892020544 that:0.021369956330028392 or:0.018726826350843603 on:0.017656106023689368 In:0.01571359101804851 from:0.014235065492852503 by:0.01330290033907701 have:0.012629358201072267 as:0.012452521687221944 with:0.011407541479972671 was:0.009940659376316174 will:0.009733702717661727 the:0.009715870172431598 had:0.009494162993993457 :0.3652819953586925 +as:0.649556240939271 so:0.1816345691857347 very:0.01733426676160163 too:0.016917135986767168 how:0.012301856060738407 So:0.011048411587173434 be:0.010965091905387131 ns:0.01069726988544639 is:0.010259819742320207 As:0.009920634183538094 not:0.00935535216307608 and:0.007402810750019709 aa:0.006201995947530708 was:0.005883094965492717 it:0.004709281717421703 of:0.004090283480329714 are:0.003681325129577032 with:0.0035305128828049 do:0.0032952850204970804 :0.020214761705272196 +to:0.11834216918135279 of:0.11025792447736772 and:0.08768901515245786 the:0.06967932940381548 for:0.03492929229757447 their:0.029387548990992114 not:0.027128065383601883 or:0.026476774963829414 in:0.025455869506031112 his:0.023423308498278162 with:0.017434658416209507 a:0.016973459758638444 no:0.016624325382816465 by:0.014106252439973384 is:0.013646422999117266 that:0.012663992630299398 her:0.010329510897204696 this:0.009305084596425112 was:0.009096171317147237 :0.3260508237068675 +of:0.3453880520516338 to:0.07610040448689046 in:0.07527997185111003 for:0.06312220267212663 from:0.055881895867419304 on:0.04806750820427784 at:0.0463883449059004 by:0.04592214100303602 and:0.04322679396580916 that:0.02855487698989393 with:0.02588441273085374 In:0.015566523022974819 as:0.012355130485423135 upon:0.00849450781754035 before:0.00820120133593519 into:0.007874850332794333 through:0.007637275297764677 when:0.007005694703966368 which:0.006924854357024124 :0.0711233579176257 +it:0.12291356726271781 he:0.10766523848787593 It:0.08126222867785683 which:0.05815091424687329 I:0.054909855356083816 and:0.04607290301292405 who:0.036234513317437905 He:0.03284977251390459 that:0.0307500349566012 she:0.02807960748770171 there:0.017106531141060498 as:0.011444714915749334 She:0.009915288061780691 ho:0.009311744482256256 what:0.009144898696231517 1:0.008083327589627603 This:0.007923029238788926 lie:0.007752420127589498 man:0.007654383581502722 :0.3117750268454358 +and:0.06642789406289233 was:0.02284786419564384 up:0.02125614496693863 out:0.02071604945427886 made:0.01947263295225617 that:0.01739606948596638 down:0.01653481669393844 placed:0.016514785901768574 work:0.015430188529799322 it:0.01520393786357185 point:0.015198227252568077 held:0.014762471997342137 is:0.014704883915299257 due:0.014334720506431002 him:0.013646221269840273 o'clock:0.013080439589245907 put:0.012189351750118847 interest:0.012038778706719216 place:0.011867948584847859 :0.645376572320533 +Mrs.:0.10503251058067242 of:0.05227705535990548 deg.:0.040698349006195615 J.:0.03849295141512182 .:0.03788939781771668 and:0.03495052402936317 John:0.029543790047820855 Rev.:0.028503295992859813 W.:0.02605585591609773 C.:0.024939815248166564 George:0.020421603373942752 Dr.:0.020272339515247463 G.:0.020205389364766933 F.:0.018884495527319713 Mr.:0.017082362400876957 to:0.015679233033302372 by:0.015522776790567044 Miss:0.014873795470140307 Geo.:0.014491693813766223 :0.42318276529615007 +the:0.4231678231265333 The:0.04215165349310299 a:0.03663158535090386 be:0.035763699967314266 are:0.033981009679744885 and:0.03007076577146172 more:0.029718577871941383 this:0.021486495435784618 been:0.02071907349596384 have:0.020296737798447557 one:0.018701359792791573 an:0.01856748140858164 was:0.018157304262624626 is:0.01701628228377057 other:0.016912786703862516 that:0.0165222169905646 tho:0.016148315452603243 by:0.015228563679955207 of:0.015065824275132506 :0.15269244315891511 +the:0.1044568801927328 of:0.05869712204070381 a:0.0506221554586936 and:0.04954431584054858 at:0.038633468559495364 to:0.03449495673463172 in:0.018460651905800866 by:0.01788537502169237 was:0.015992432713998424 on:0.014393104526490568 be:0.013865510470932686 is:0.012948751841886395 that:0.012080499962014116 from:0.010903603269970471 with:0.01013026181753332 for:0.009875209706567929 :0.009022689842800179 an:0.008180170608568514 his:0.007060367378935401 :0.5017524721060028 +at:0.3462767819949931 the:0.18088631356963727 a:0.09754405613326533 At:0.059763531851020596 last:0.043659796287174146 this:0.03100301568767324 Saturday:0.02434321016829291 for:0.01958336120763971 every:0.017914507751922864 that:0.017638745110446677 day:0.017522063033330034 next:0.015787958862196597 Monday:0.01574720202907106 Tuesday:0.011776334051524874 of:0.011645909415861301 mid-:0.011300974469570058 on:0.010698337594968098 any:0.010638144030310309 and:0.009916256846690301 :0.04535349990441151 +the:0.29065997923479525 a:0.1449274306946143 at:0.0826339589168197 and:0.044217132114779074 for:0.02931093448927262 an:0.02719712412808401 of:0.02318370014242291 in:0.017807546267372326 The:0.01719389511447912 tho:0.017096472063401764 to:0.012641168564414844 or:0.011588128613037922 his:0.01121227397672378 any:0.010710955406125771 tbe:0.009959211375662714 this:0.009783693789447294 :0.009203128935458828 A:0.007838664314133643 that:0.0076537905507568305 :0.2141808113081973 +that:0.12877368706521958 and:0.10343811039022899 which:0.0800594611337696 when:0.0599498536653849 as:0.05365331218935483 to:0.05164919583107528 if:0.0270497931800979 will:0.026888923864509424 but:0.025383516994720454 where:0.02293792694881519 what:0.0207777038096785 t:0.019343962651763098 said:0.01729463067489876 would:0.015552874955014286 for:0.015152722422811573 whom:0.014651225618177431 before:0.011897529933941699 not:0.011235367786820124 If:0.010599156710423857 :0.2827110441732945 +and:0.10267575440481883 of:0.08739915764569485 the:0.052176659691624126 to:0.04899420743688628 was:0.02854230459817726 is:0.02517615946762568 which:0.02325974239847401 be:0.021406852796151444 that:0.021235012591371255 be-:0.017860475011544138 for:0.016967126142617212 :0.01592733353722877 in:0.01522413420499503 are:0.014798200264468398 been:0.014546936274953733 with:0.01361234839170266 a:0.013106572589919898 or:0.012965308431715412 re-:0.012703612693621833 :0.4404221014264092 +the:0.16287760685838365 of:0.0883592780729449 to:0.0618987346693935 and:0.05423685233212741 in:0.030811253892523358 for:0.03057359609188714 be:0.025098115820027647 was:0.01826945122296575 is:0.01662970283289366 a:0.016448402520667066 or:0.01633619095301082 his:0.015510346299682681 their:0.015084175217362073 are:0.014656254371894712 been:0.013019491851438341 were:0.01267572744006931 that:0.012270302451397866 on:0.01131798809455223 :0.011150587255169986 :0.37177594175160794 +of:0.20238392900660168 to:0.12319694958093448 in:0.05535867026465975 and:0.041706842167645544 for:0.04007232161465383 on:0.038756338327833886 at:0.03029574331416971 from:0.02981612682215459 with:0.021684892925225414 by:0.02146850962007729 In:0.020608933884952517 or:0.019395771619645813 that:0.018582313587940616 upon:0.0165795915270879 as:0.01257585714494686 than:0.01069585356706829 all:0.010170788814482077 about:0.008930117451056464 is:0.008841179228923003 :0.2678792695299403 +the:0.1389668767913534 of:0.10420551487371552 and:0.07254961335155334 to:0.04004874847237343 in:0.03335734265949004 that:0.024842735791342906 be:0.02096816817846974 was:0.019180778863775377 for:0.01739070930766011 on:0.015736205566502744 is:0.013100802461609119 he:0.012372676400907674 his:0.012053114666109243 their:0.011513942971876997 a:0.010726996890230359 :0.010026275634631543 at:0.009891578907857152 are:0.009856386143833742 so:0.009787785895406634 :0.41242374617130095 +and:0.08995317707915026 to:0.06844710404109794 of:0.04605142056172993 the:0.04074574508561307 which:0.02479116931334353 that:0.023764822140213245 re-:0.020841117231308055 in:0.020803825395358622 for:0.020278423301550053 :0.018417753428486977 not:0.016860793136637672 con-:0.016444405871234195 is:0.014386481772210856 or:0.014080680914153714 be-:0.01352268143271276 I:0.01317002660943805 was:0.011429878269381662 dis-:0.011196807025842847 he:0.01113106290024311 :0.5026826244902934 +and:0.13189367061115087 to:0.061124519874222544 was:0.053400817297974947 is:0.04926124281950158 of:0.02917937061853605 are:0.027062676839151537 be:0.02694091313288723 that:0.026657823097836576 for:0.026066944607362655 but:0.023775635253440047 :0.021564722749894877 by:0.0190640976342854 or:0.01863127563031199 were:0.016557472516811632 on:0.016091161966277575 not:0.01592279330726074 with:0.015351003006139346 in:0.014332103218651042 have:0.014208152562853595 :0.39191360325544977 +of:0.44645730064260547 in:0.08488275432219464 to:0.08392988466189095 by:0.06624291225505509 that:0.044304737339143724 and:0.0341125439380057 from:0.0328999644114839 on:0.02654232380864749 with:0.01907691814001846 for:0.017665437889046183 In:0.014853966389476555 into:0.012580270103488705 upon:0.011351034588378998 between:0.0100021272736074 at:0.009431210152296003 all:0.008651472991061773 through:0.007577139491914183 as:0.007528612609302225 when:0.007436141704843619 :0.053473247287538904 +of:0.3532968979241417 in:0.13215468724690907 to:0.061057040024321704 for:0.04806333312185085 that:0.0475127611991828 by:0.04214616270580768 and:0.036247668502421865 In:0.03203534843209444 on:0.030531954788563374 with:0.029853558798808334 from:0.020151029760000955 at:0.015175004975627814 as:0.014676329513596062 upon:0.01391601810056696 all:0.012061304128535611 when:0.010361991514899955 into:0.009728918905179067 before:0.00948415652367791 which:0.00929950810565977 :0.07124632572815406 +to:0.5402044158250361 not:0.05337115046595236 can:0.049054874646638484 could:0.04557397539924348 will:0.03751056945313895 and:0.03570616305968777 you:0.024692041706321867 I:0.02205449980753819 would:0.018391113709538734 they:0.01740033425617177 we:0.015095072513211351 cannot:0.014768620742790778 never:0.013735123980642607 should:0.011566069796488136 may:0.010841285138935024 must:0.008914009909050257 who:0.007637099457781738 or:0.005995282675497173 ever:0.005902216224292468 :0.06058608123204277 +of:0.34754122455996256 in:0.0944498014375968 to:0.06994816491421918 by:0.06943553582937076 that:0.06222094582530626 and:0.0421986741654756 for:0.033656645365942005 on:0.025361115262973244 with:0.023505189562355314 from:0.022523104103667042 In:0.01909222341479804 as:0.015602636659358017 when:0.014280953175309034 all:0.014212497415883468 which:0.013131652608807592 at:0.012446807563995242 upon:0.012296756010792083 into:0.010422543729553587 within:0.009195573235096842 :0.08747795515953734 +the:0.08917992054279085 of:0.07737480667177972 to:0.07130010813045945 and:0.05879614621847318 in:0.050249334919407286 a:0.042799310363763214 was:0.03167670631549284 for:0.022609727828740406 be:0.022487078574359526 is:0.018853253157177067 on:0.018746244139279 or:0.017507606217970425 are:0.01745929325768775 In:0.012969853593150685 from:0.01215858346303394 were:0.011988513526460597 feet:0.01183937314198389 that:0.011621495168097086 his:0.011543312549027483 :0.38783933222086564 +and:0.12708913510952952 the:0.10838288310423409 of:0.1037653310460176 to:0.05000849566372284 no:0.03530641050754641 in:0.033335150111025114 for:0.030522751544044862 a:0.028558463348904446 that:0.021177044300691245 or:0.02115842999748797 their:0.017157401692192993 any:0.0170460202485321 with:0.01651378114212234 he:0.015840699355008276 his:0.014880871567870014 such:0.013639585911090248 as:0.012836373567175943 all:0.012364535631339229 is:0.011219283096358789 :0.308197353055106 +in:0.12584751051357324 of:0.09759502479664728 the:0.07371839375246729 and:0.055651754291004454 for:0.04744536705298647 a:0.032925964492396737 to:0.03198260274187316 In:0.029652859996176964 was:0.017176340234656633 by:0.01637913782528117 are:0.015624529717594675 be:0.015359740034713075 from:0.015332737536474472 that:0.014587063309917358 is:0.012292937239714764 which:0.011956538642930331 were:0.011584038466634639 been:0.010892258706962473 with:0.010501774296364555 :0.3524934263516303 +of:0.26844255576207765 the:0.11956979874260341 dry:0.08671085837067782 his:0.060591925807984046 in:0.04326057035422544 their:0.03549221452894013 for:0.025686638526638328 a:0.023147199217680183 or:0.020991975502192794 and:0.02025830088959095 with:0.01762227257125048 by:0.016777454602235006 her:0.015358760545705643 its:0.015277166414653397 on:0.012647466950544193 our:0.012410073545144978 your:0.011014861320115815 my:0.010557953018095558 these:0.00961821736836563 :0.17356373596127853 +that:0.15633470434922514 and:0.13220278843066763 but:0.06082453342364732 as:0.056642838222853605 when:0.0467050264329236 which:0.04613994114594792 if:0.03788900618417451 of:0.037500340433330746 where:0.0326725777057623 have:0.01724340490061851 because:0.01688604838761001 make:0.01680379025820557 for:0.016449939143522097 is:0.016165966071362916 had:0.014829883499780564 what:0.014501651004522463 If:0.01385628173047861 to:0.013191492361251859 found:0.012961189575920632 :0.23919859673819396 +of:0.24947966122729795 in:0.104144915857779 to:0.09745214699183602 for:0.06226732679425122 with:0.06166637383295456 on:0.05642772670997322 by:0.046690211566368336 and:0.04574554134324954 that:0.034430766942588675 from:0.03279523435271891 In:0.024378687755927712 all:0.022441407163273905 upon:0.01747683550807569 at:0.015042100846452461 under:0.014328546700048758 is:0.013788584667988484 into:0.012097014818551882 as:0.011956747869863584 through:0.010293450954637545 :0.06609671809616256 +the:0.1423309718397181 of:0.12549808883400856 and:0.12450030161518558 to:0.05372279294249373 as:0.02448789224471226 a:0.023936654431725147 be:0.02165416881146706 in:0.019340937736922654 was:0.017907216856947527 is:0.01733084493468812 or:0.014918811276474325 their:0.011533929281067216 at:0.010108198237335803 his:0.010089308513205721 for:0.010081944951775838 on:0.009645254541890353 are:0.009614608634372279 from:0.00921162495351011 by:0.008973846383105838 :0.3341126029793937 +the:0.348094493155978 this:0.11078750020111956 his:0.05367150242025134 that:0.03699600962037637 tho:0.032701192826313875 whole:0.03200033277820798 a:0.03155267985440071 her:0.029385617422768105 and:0.026507365978193694 to:0.025521902916993487 present:0.02124038711292607 great:0.01870564253454843 same:0.018364671432937 tbe:0.018225458452952256 our:0.018087157654167314 good:0.016406390670294296 their:0.015773151011130908 The:0.015572767358187092 its:0.013908139536792251 :0.11549763706146124 +;:0.018609647724095582 up:0.01517762339515 them,:0.007770843085139402 it,:0.007577317004817694 in:0.007515780039806332 years,:0.007392815747483961 States,:0.007242628500493253 him,:0.006980548210693209 and:0.006708826709574082 here:0.006621983723072575 men:0.006541459580253914 time:0.006136371586258216 him:0.0058963543728981615 :0.005698696591522269 mortgage,:0.005416165417450788 them:0.005367693899494284 county,:0.005336664703716902 ,:0.00523830544223361 time,:0.0051854453947516276 :0.8565848288710941 +he:0.18184327512012816 I:0.12098877729988883 He:0.06532667354580445 it:0.0645839831307654 and:0.057002204989515956 which:0.04557214232637586 It:0.0449255649211636 who:0.03984226297169304 she:0.03821319535197789 that:0.0215493876765946 She:0.015952535714817036 ho:0.01282745228629331 1:0.011913212263798741 lie:0.011739966544405093 man:0.011073595531658053 as:0.008624362935318455 This:0.007854954061484544 what:0.00737118649756162 bill:0.007241331096943738 :0.22455393573381163 +of:0.3101700605376416 to:0.14081402134260226 in:0.08161871287010308 on:0.04851522215012273 by:0.04752284235430884 for:0.04604072886053496 that:0.04079936009000915 at:0.04015130641589117 and:0.03287189328321719 with:0.026253255454611536 from:0.024470158770317895 In:0.019299741429728318 all:0.01275472717291114 upon:0.009840941802403524 as:0.009521156189982543 when:0.008048990667443927 before:0.007814299350989018 up:0.007380301817324119 into:0.007323131471846209 :0.07778914796801076 +protest:0.0730074424705892 and:0.04681802825243419 up:0.030899702949304907 made:0.030264171118175198 voted:0.027440688555916647 claims:0.026193205449708597 vote:0.02440140127865307 guard:0.024204312136449427 fight:0.024036803642483322 assessed:0.023813752314525777 protested:0.022589786792465094 as:0.022585128486233366 protesting:0.02234573029786333 brought:0.022334978248921528 war:0.019874149267129777 charges:0.019147529384197427 is:0.01839132239437071 out:0.0182004416360357 taken:0.017339799780086936 :0.4851116255444558 +follows:0.07149382574010123 viz:0.06496130946645405 says:0.037621466067724416 wit:0.03648931940614207 as:0.02590895330284645 of:0.01912409636737354 the:0.018780020343449545 and:0.015646872039233768 said:0.014789149407246708 to:0.012130953147539104 -:0.009424011282626417 that:0.008564647777763423 to-wit:0.008463611169485057 .:0.008019240545559471 :0.007298803350478396 a:0.007245761995706934 at:0.006832374389047469 it:0.006113783315008838 is:0.005777973396782875 :0.6143138274894302 +was:0.113728128055444 are:0.11298641402030893 is:0.11057222573948015 be:0.08949530400760274 and:0.08946241887114394 been:0.06702587282280985 were:0.06165433726570921 or:0.037492554463127825 not:0.03178766195349281 most:0.02896796887230722 Is:0.023755769002749446 so:0.02221692031555567 persons:0.01995963018033895 very:0.018867498284337002 more:0.01709515834162608 one:0.016492414359479624 being:0.013937343507264081 all:0.01150513287464982 but:0.010667079377750114 :0.10133016768482256 +him.:0.032992085397482 it.:0.019226379017323002 :0.017949475515576012 them.:0.010199584699571248 man.:0.00930346292186804 years.:0.008818443114660932 time.:0.00872835295251358 himself.:0.007748867679511448 life.:0.007573564045494813 day.:0.007471789820797836 .:0.007352734221946577 her.:0.005962665575877021 work.:0.005951473035388307 country.:0.005399206345542635 again.:0.005057717228283386 city.:0.005000442932543798 home.:0.004813999867413673 one.:0.004639852664008568 ago.:0.004614870951126726 :0.8201950320130703 +and:0.14776154006626188 that:0.12664407759101792 as:0.10899752766831847 when:0.07787080350564653 which:0.07159179454066712 but:0.049343887811884535 had:0.03090810461432637 time:0.023956331576308613 if:0.023552668359533832 where:0.022726341906458062 what:0.018367317040239358 day:0.017685504552104894 until:0.016626252545643184 have:0.01600322813724857 Then:0.014078970410907487 before:0.013211802176728413 When:0.012541982647778949 or:0.011636672103869839 has:0.011266347955173858 :0.1842288447898821 +;:0.018609647724095582 up:0.01517762339515 them,:0.007770843085139402 it,:0.007577317004817694 in:0.007515780039806332 years,:0.007392815747483961 States,:0.007242628500493253 him,:0.006980548210693209 and:0.006708826709574082 here:0.006621983723072575 men:0.006541459580253914 time:0.006136371586258216 him:0.0058963543728981615 :0.005698696591522269 mortgage,:0.005416165417450788 them:0.005367693899494284 county,:0.005336664703716902 ,:0.00523830544223361 time,:0.0051854453947516276 :0.8565848288710941 +the:0.240711211508163 of:0.1175450373878201 and:0.06759298088495072 a:0.04043283690223056 The:0.03738593272823673 that:0.02981452964458545 to:0.028229537030618652 tho:0.017945917176807873 with:0.01565228885189944 as:0.014913622450043722 by:0.013629679206744027 :0.013623448693028645 or:0.013375883515831754 an:0.013034326176163492 Mr.:0.012017332037506883 .:0.01196123141347026 in:0.011466329286549514 for:0.01025075124575307 tbe:0.00844968306795769 :0.28096744079163843 +and:0.10474756008915599 I:0.054266422165069675 would:0.040455411803346435 look:0.03983565237059363 looks:0.038643653249276086 not:0.036490745446149914 just:0.03138694950823148 much:0.030702700165056 you:0.027499095626216614 something:0.025377917744275818 is:0.024818077124198062 in:0.023392342720203827 anything:0.022472752882201782 looked:0.02122009586755125 was:0.021017785857285958 but:0.018774107747033284 feel:0.018482065694521408 me:0.018149818200672848 it:0.01725039392568714 :0.38401645181327276 +and:0.06341133254117746 as:0.06259082891459346 order:0.056456003165205215 able:0.05207201748069918 is:0.044713020507936144 enough:0.04243037913116934 necessary:0.039359843632736737 him:0.03361619156125576 was:0.030665654521335114 time:0.0264640239000838 them:0.023856718676681873 not:0.023203136750960876 me:0.021572324247991714 required:0.02117145742556287 desire:0.02116683340872205 unable:0.019897817268225666 have:0.01838624653534061 right:0.018280289611863242 power:0.017701366469714402 :0.36198451424874445 +to:0.20135629563101615 would:0.1765087885901235 will:0.15704616990169157 not:0.08348945805646621 may:0.08345104162928568 shall:0.05879645496185142 should:0.05872239248261218 must:0.03820930287167637 can:0.03298980926693675 could:0.02951265319406873 might:0.016746854743400343 cannot:0.013603586501539902 it:0.005313533904425007 and:0.004905413851073136 never:0.004005471009340431 soon:0.0026828715033435477 hardly:0.0025360096640818955 there:0.0024909158889220347 probably:0.001970218960136074 :0.024662757388009045 +of:0.13465236971092115 and:0.1115146944694397 to:0.036896444525688535 .:0.03185245318247197 the:0.02966522721121529 that:0.02390355368298458 said:0.021973917452677502 by:0.01898063226291947 :0.014449401676747981 from:0.012292934684715809 as:0.012276973239565697 in:0.011321693669774615 John:0.008427013849963189 Mrs.:0.008344228223894844 Mr.:0.007718337270936862 C.:0.007144657443837018 J.:0.007122220963525649 State:0.006675593259497421 with:0.006412848354981611 :0.4873748048642411 +at:0.20640304605636176 about:0.09868151804258449 aged:0.09055617891873864 for:0.08150620800863462 and:0.07922602359080055 of:0.05525281369953777 to:0.05295513262680567 than:0.02852287156558135 nearly:0.024374216827245106 or:0.020815408527383658 over:0.018078869516126483 containing:0.01613505192885698 from:0.012366858983348534 the:0.01189953294146229 No.:0.010568164700727715 in:0.010526082277767768 lots:0.010416834888810475 degrees:0.008800425222945699 lot:0.008709958472002349 :0.15320480320427807 +of:0.14094447365954763 in:0.08822563637667463 as:0.08613225248167891 and:0.06515809411402831 for:0.06059225452736968 with:0.055202308318227804 that:0.050029005124772305 such:0.04434111831712304 by:0.04298761984560006 to:0.03993220323520462 is:0.03674734275400809 on:0.03265378433033679 was:0.025097531903925684 have:0.02204897611410036 In:0.021507512888110952 made:0.019421573857802195 had:0.017485664555610222 or:0.016172488897386022 from:0.015049956104833145 :0.11927020259365954 +of:0.14866218384943597 for:0.11657434255627387 to:0.09633540083547754 and:0.09119343909850086 in:0.06850684433342763 is:0.04544974746458524 that:0.04296242578761234 with:0.03814661321870273 In:0.0319187043766008 was:0.028557236571019357 by:0.026195749435409504 from:0.02352696504102714 at:0.019656194811943174 but:0.016200484082681703 all:0.015943090110121343 on:0.015497595938993485 are:0.012440993477600484 have:0.010948653996809504 Is:0.010685932419162374 :0.13959740259461498 +as:0.06931392982974462 according:0.052071562389565784 up:0.0511867300210483 and:0.040371568633051955 went:0.03351644485287816 back:0.032358406609281 regard:0.03073407747799069 feet:0.02852138506231652 down:0.026379903432040268 owing:0.02466642634685871 due:0.023695193974505355 go:0.022910973192184297 reference:0.020802802907016128 came:0.019883741951819873 sent:0.019874244915639484 attention:0.019565955494145405 come:0.01885185084678811 given:0.018792390567602263 it:0.017366961307524745 :0.4281354501879983 +the:0.22209508854492113 and:0.09787117449056498 of:0.0975305007929562 or:0.06408075720931924 in:0.04424270833019101 with:0.04216930715371863 by:0.035277112281032225 for:0.03339150924817686 about:0.02640409611703469 these:0.023073760227542848 The:0.020954441015724155 a:0.020505622364712827 to:0.019010468560027634 from:0.01639603908687154 that:0.015131451090003448 tho:0.014222865039132195 are:0.014204059541490635 In:0.013839567103431615 than:0.011583691226803717 :0.16701578057634442 +the:0.292285218638141 a:0.09220945676398662 of:0.07647711052862635 and:0.052465981484333325 in:0.03380370630226668 to:0.028730685694017204 The:0.027573433458346782 tho:0.01891290586794668 an:0.017253508592040577 Mr.:0.015562659581846912 for:0.014715900994731064 with:0.013245510968523683 his:0.013195601716192953 on:0.012931921906512765 their:0.012331524084885536 at:0.011078399825124381 by:0.009744229439260038 .:0.00914468354267775 its:0.008930408522159684 :0.23840715208837998 +it:0.15594672717501806 he:0.1545734572060672 I:0.0659329075437001 It:0.06541543598545635 that:0.058973287019317464 they:0.050236231752736143 which:0.049964156081052535 she:0.03605686805232225 who:0.03494211322368216 and:0.031846599735131764 He:0.0225479293881764 we:0.021101475626913595 one:0.016612514224808902 This:0.013868441589167505 you:0.013600377691421802 what:0.012985264703768514 ho:0.011880610229591025 there:0.01088869430791587 lie:0.00925817699626704 :0.16236873146748534 +the:0.11443631847704988 of:0.08497591303025025 and:0.06063978598893163 to:0.0557504743439933 a:0.04747043448952811 in:0.043686010453633004 for:0.04115151897276111 at:0.027800525071721784 that:0.024417870324794238 with:0.01788603561895567 by:0.0151066189862714 from:0.015074727548182254 :0.014783678380929057 In:0.013504269912350259 on:0.011219147980322886 as:0.010556112237641975 their:0.008811408496369888 or:0.008205996515114902 which:0.00785865953225762 :0.3756644936389408 +and:0.0985479185233421 that:0.04020348575023225 them:0.03067766240863395 it:0.02898369569437071 is:0.024645107096843758 was:0.023919109152090393 now:0.0213673004442266 placed:0.021144329319524223 or:0.018354852448760568 come:0.018274314000345838 be:0.01683447822967551 him:0.016453763557013203 made:0.016405542664042764 up:0.015085424817325653 done:0.015034830175917821 out:0.014283693225106732 but:0.013923721656117676 are:0.013520524361184987 directly:0.012896835556836616 :0.5384434109184086 +the:0.16210608157644615 of:0.1132241579615967 and:0.05446729902897889 a:0.03576526362027929 to:0.03568863064307866 in:0.028775317618449738 at:0.020240104504641643 for:0.015480230729428793 their:0.015445403853455202 his:0.015347931555983806 or:0.015159431252866215 with:0.014745139865279642 from:0.012356905989584296 was:0.01150530401532956 by:0.011366659909176437 be:0.011206460896384177 tho:0.01118349890406696 Mr.:0.01107585082792935 as:0.00994590081078631 :0.3939144264362582 +made:0.07874463306296052 and:0.06775056288245115 was:0.03454160221696048 followed:0.0212507421554558 caused:0.01926642247510808 up:0.019049275102062162 accompanied:0.01871584188023978 secured:0.018607811350884757 given:0.018047800409378104 taken:0.01790350974526505 done:0.017439735541417666 it:0.01726681572414479 is:0.016716774101874568 or:0.016420822909209577 ed:0.015982494237771903 shown:0.0155102387477306 used:0.014703828616022908 be:0.01414400514324602 that:0.01339689036646623 :0.5435401933313498 +the:0.09868373883938258 and:0.07480453094193343 of:0.0589114817501612 to:0.04097910657897817 in:0.021158790794043262 that:0.019069334359151844 said:0.018742946492478332 for:0.017316364536936867 his:0.017177121694088426 was:0.016182606169468622 will:0.01591288197902934 he:0.015114551865358882 or:0.014845495585184915 a:0.014513966096661732 be-:0.013853328473103959 be:0.012881045636009362 :0.01244603010237448 is:0.011856827412481646 dis-:0.010720055582638647 :0.49382979511053426 +the:0.23012286739468385 this:0.065680644577731 of:0.06303729666449408 that:0.05415570278929149 his:0.04487179325022247 their:0.042962331739320785 no:0.038782783699022924 This:0.03435203969207487 such:0.03420948277042805 The:0.03320387145590382 and:0.03155835834435436 its:0.02720147623292271 motive:0.02561092663049407 political:0.02194484746775643 what:0.020921796097000265 our:0.02045389301685152 a:0.018434727262149116 whose:0.017803154233927653 which:0.016203326731253683 :0.15748867995011684 +in:0.03508506474049635 on:0.019384910434383035 one:0.016409373551801602 and:0.015082833516596427 law:0.013640719463515414 day:0.011899713293747363 more:0.01039876221614826 of:0.010217904865402907 person:0.010036751068024746 action:0.009538950491127235 man:0.008557492010839 sold,:0.008470204143355144 for:0.008135705492216032 year:0.007982303598588064 ;:0.007128214337972225 States,:0.006723571914590953 to:0.00635425966348916 sale,:0.006262135056295715 In:0.006028155513342572 :0.7816629746280678 +to:0.46434014571851856 not:0.09393238869332181 would:0.08035506092109376 will:0.07121567694236278 can:0.02887631187108743 and:0.026561228389199627 could:0.02105515377759972 may:0.02103402040772972 should:0.01873102606513027 shall:0.018267449361067487 cannot:0.014360363042864178 we:0.01403639833080092 I:0.013825937647883929 must:0.012781311715086133 the:0.012528865094761792 they:0.011598811836954444 you:0.011266379137959017 of:0.01097167110116164 a:0.010345720115536581 :0.042916079829880216 +the:0.5113533757743923 a:0.10786386092050369 tho:0.03385013536584754 The:0.02020055436670908 of:0.019248260074016386 A:0.019028988005725972 and:0.018862243672293666 this:0.01793273852965069 tbe:0.013471100372716083 one:0.009932250881292983 old:0.009230001517429547 de-:0.008643419123873558 block:0.008249865981566934 to:0.007904137917439033 his:0.007868350152798792 said:0.007516400295657441 at:0.006008384881577202 re-:0.006007124665015551 in:0.005574987915702375 :0.16025381958579116 +the:0.1454500361787387 of:0.1080247151493501 to:0.04516715868785427 boy.:0.036249098323069925 and:0.03403580073245388 girl.:0.032660326140049385 a:0.03171979252021135 in:0.02714044436566853 for:0.02365213940166824 be:0.021942286684630472 their:0.021087116084698817 his:0.019774122064073623 was:0.014637031197642503 with:0.014008395154201525 are:0.012730720509515858 is:0.011363112041341867 as:0.011357870543086747 from:0.01063391638067422 were:0.010589399829418696 :0.3667765180116513 +the:0.5175241279554196 a:0.28392670318388624 The:0.045791595108134055 this:0.018405195707763052 and:0.017086774972504607 of:0.016984674289522918 tho:0.014946132560945168 in:0.013652082708905671 A:0.008851569041755639 his:0.006567585106453723 its:0.006037472017661124 our:0.005567801621164035 tbe:0.005384623056844485 or:0.0051732824678722275 their:0.004787155541961471 that:0.0043976188688344565 In:0.003272470689692753 very:0.0029673371787374467 to:0.0029628464691058205 :0.014712951452835576 +and:0.07232591776840801 of:0.05083054973174026 a:0.04875464767045896 the:0.03870970731394206 for:0.023979507464640133 that:0.02133737786176687 far:0.021010877421323234 be:0.018173172691404747 he:0.0178295007740898 to:0.016854081076521178 was:0.016847982744955088 I:0.015424203104853682 which:0.015254728676217463 one:0.014028964031433878 had:0.013384903085007562 or:0.012608469241427247 it:0.011772946930487773 The:0.011694983631458872 :0.011566210276520428 :0.5466112685033427 +would:0.11732440686966092 to:0.10634982962262644 I:0.08388024143664224 we:0.068638243312246 they:0.06678791368838762 who:0.06243597137728477 will:0.050972549364694135 you:0.03917189983805448 and:0.038282489788790425 shall:0.038077934699336596 not:0.036885447398716645 should:0.036274074273172335 must:0.03223916729706886 may:0.030496488427145963 We:0.025223997573136366 might:0.024143470788004585 could:0.017921810256620894 which:0.01545084831634988 that:0.014705779297789693 :0.09373743637427114 +the:0.3333332631117497 a:0.09533150175109886 his:0.04886601626748918 was:0.039124457895743044 no:0.03500168737554998 be:0.0327229733801123 is:0.032466496377021016 and:0.031616565566663195 all:0.02818223877255346 at:0.02742983892947311 to:0.021220871461494834 their:0.020132016842321774 any:0.01928928311030805 tho:0.016930658514600145 that:0.016406807172194175 of:0.015497829611880455 it:0.01448492240183613 not:0.014047705650094666 her:0.013594758004313891 :0.14332010780350202 +of:0.1142240231714103 in:0.08623694153685615 as:0.08580763908424595 and:0.06428965698258741 for:0.06395581487886133 to:0.059012261373367576 with:0.051206122487877793 at:0.046596105818647565 is:0.044909318320857115 by:0.03766902481063875 such:0.03675103333391908 was:0.03280819677916009 from:0.031117280137270806 that:0.03011636636935623 be:0.020153458635741157 on:0.019872512153257808 made:0.019315646059730494 In:0.018462905503132947 not:0.015295062702270126 :0.12120062986081134 +the:0.15236402553324369 of:0.0903537870834873 and:0.04768969376744203 to:0.04155782400561518 a:0.030499338381782502 by:0.030217991239336196 .:0.022477223734382202 :0.018647633891295357 at:0.017012759847632727 in:0.01405205403494514 or:0.013043566131746863 The:0.012296998916194879 that:0.011693314153398278 with:0.01089942421098029 on:0.010725009425789021 from:0.010319110987342802 tho:0.010270267825879077 St.:0.009737547039394015 an:0.009125335774457687 :0.43601709401565475 +the:0.24412435465679044 to:0.07659708636674757 and:0.07164873301755399 a:0.03263215510703314 is:0.031260949857633814 of:0.030336875476270314 an:0.028786366208553044 or:0.026004274521339438 The:0.02363186028736712 will:0.02297773937383434 was:0.022210338406535062 be:0.019290823433594884 tho:0.017581090692040932 are:0.01579262367878555 I:0.015041524039155311 no:0.01502587198869771 his:0.014846730289682628 not:0.013566265059262157 their:0.013252728858613713 :0.2643916086805088 +so:0.13524075917071618 and:0.12136103507898946 of:0.11923299787172063 in:0.06157134747648478 for:0.054563308928475884 as:0.048316974894587424 with:0.041514271178861396 to:0.037517197696952234 by:0.03561231424655691 that:0.029352028015065194 great:0.028636552693295122 are:0.02590176496812561 too:0.024327630587168962 the:0.023666853462045643 how:0.020925972007729134 In:0.019011995934286464 is:0.015606222052552944 but:0.01382232936178615 good:0.012017385540618061 :0.13080105883398183 +up:0.020397733313521092 one:0.013276203213985729 him:0.012441214323308337 in:0.011871637396442435 out:0.011628032986120234 hundred:0.011350553419267235 man:0.0102465458833813 right:0.009792372645879224 down:0.008922211025073994 made:0.008855947667290776 time:0.008764112724856304 life:0.00834878914430989 men:0.008093730233065869 it:0.007977585875880083 them:0.007701610685172289 work:0.007669277556337585 it,:0.007446707437802839 ;:0.0070022157065501404 long:0.006417406198514301 :0.8107961125632404 +to:0.10984789657041627 the:0.10503626621694477 of:0.0878783688974282 in:0.07143292360275051 and:0.06857540950441492 Mr.:0.03587148263119237 for:0.031299274739702725 by:0.030853861686965616 that:0.025457596757113832 from:0.02251761900215743 In:0.020943951302027964 which:0.020000432631301576 or:0.019050701249930607 :0.017463535141312235 on:0.01594434879659283 thence:0.014847167743747409 re-:0.01462355893268815 be-:0.014024923881615872 said:0.013944781205328233 :0.2593858995063685 +of:0.24771856616623836 to:0.10055514755145552 in:0.09984480279807748 and:0.05814117240642057 with:0.05158849496637837 for:0.04613065771486411 on:0.044432355864291194 by:0.03519649785437645 from:0.03338388255327628 at:0.03070401576666744 that:0.026848878623973782 In:0.02041195271981872 upon:0.015248471773457326 as:0.011599582931726849 all:0.011326016994932605 or:0.008867228292995478 up:0.008407673252508876 over:0.007381477118522736 into:0.006992770039889695 :0.13422035461012818 +will:0.12968654623317347 that:0.10294104942032417 can:0.09768095251388093 may:0.07717560172839542 if:0.054844824503576 shall:0.05474026825143612 could:0.054217664141032976 should:0.046962398602276266 and:0.03503939990687761 which:0.031741510941258474 as:0.03044929615734122 would:0.02912777373577147 w:0.02624306367936333 If:0.015850095988349605 said:0.015120713194615401 must:0.01399947797165627 to:0.012927911934040073 whether:0.01059265096815976 when:0.010500129528761372 :0.14915867059971008 +and:0.4604788789424663 the:0.06643967177547348 of:0.06594729479100363 many:0.053338648348790055 for:0.0500952288079045 or:0.027745413490562275 while:0.02753683578504214 to:0.026062732385220243 all:0.025315449213116535 that:0.01684004381275406 as:0.014341925018472363 with:0.01392785245880216 two:0.0096340259655733 few:0.008076633045866349 For:0.007983656045723124 his:0.007912776039436005 aud:0.0073151307402349285 And:0.007270994123971981 by:0.006724862165209041 :0.09601194704437757 +the:0.34414326892720193 a:0.10245934933342886 and:0.09113046409312205 his:0.05985339664081059 The:0.04800392756834498 of:0.04548795085467426 to:0.03044569505170386 this:0.028064264960958023 other:0.024454054479207683 my:0.023344588377872056 tho:0.022539065366274955 their:0.021968673707120107 in:0.018484950443926406 its:0.017980960370761516 her:0.015839949510323987 that:0.015746446259644803 these:0.013728748416043482 your:0.012522209562093989 our:0.01186749136973378 :0.05093454470675267 +and:0.0660646831504907 want:0.0650098192112887 wanted:0.061487374456468034 him:0.056736758601036906 ought:0.05622907215842067 glad:0.04708881145631895 enough:0.04344963220339733 able:0.04044333335486504 is:0.028688956031323636 right:0.028519190592486247 time:0.02744297464161176 them:0.026845852078357463 reason:0.026559060669513756 as:0.02638993918023474 wish:0.025031336096575024 order:0.024062629219075676 necessary:0.023791421389544695 have:0.023592961219465202 had:0.023553132939279586 :0.2780130613502459 +it:0.12446268169980054 It:0.12280480786537545 he:0.08020652832724516 which:0.06073294414750625 and:0.050980027219622276 This:0.05045282889882609 there:0.03713440751770763 that:0.03479346912854159 He:0.034050592549068955 I:0.025956325276684452 who:0.0218090018189395 this:0.021274788707593795 what:0.018497831674433016 she:0.016797366883068703 That:0.015547740538263702 There:0.012197964745074768 What:0.01018044384120964 one:0.008601337446420436 as:0.007989411724092167 :0.24452949999052587 +that:0.16832451653748762 and:0.16317551195275604 but:0.09202228048090219 as:0.06626898981545905 which:0.05056182452516285 if:0.034268175887251145 when:0.0327999336955599 where:0.02391654490512962 But:0.021638226096886436 because:0.020516735853829505 of:0.017875962661562897 And:0.017367123587138943 for:0.01715484095146282 If:0.016077584172624653 what:0.011042818726600803 though:0.010176208114312196 until:0.009969674033922531 while:0.008769541776912644 think:0.008148981878890557 :0.20892452434614764 +the:0.3123664958811441 of:0.07042133016443346 and:0.0491350977464714 The:0.04141314180167921 a:0.03228139829855885 his:0.021816345828841812 by:0.02025142605833641 for:0.018381045671765336 said:0.017380388155577457 or:0.015502517160541232 to:0.014374196467866416 tho:0.013431950820629342 A:0.012483909064041676 no:0.011149073709304937 was:0.009754149838995698 Mrs.:0.009451664638407742 with:0.008553050483735915 my:0.006722343543290855 tbe:0.006657109046649643 :0.3074733656197285 +:0.04886162056411152 and:0.040019830359908116 made:0.019534249586484108 was:0.01884742032062261 recorded:0.0156557013153549 that:0.014962923641391521 be:0.013346741481126276 is:0.012414190474703378 o'clock:0.011973468167413116 placed:0.011531292464673245 out:0.010920644875481857 found:0.010814196298763954 place:0.010167028437165111 situated:0.009811016372775217 up:0.009511290277384947 them:0.00920663098385622 been:0.009160737073209432 him:0.00901249715764949 are:0.008449437635810648 :0.7047990825121143 +the:0.4124556841832033 this:0.24839598337055505 a:0.07956709268899806 our:0.04109734474076477 tho:0.02648171186467388 his:0.025935956365825307 whole:0.024112328813662563 same:0.01837186995338928 of:0.014872985500187846 The:0.012652735361920032 their:0.010586211953686664 that:0.009146085368470478 such:0.008440520530071027 own:0.007769841666615977 other:0.007436957848785164 good:0.00665780439274766 and:0.006557514584304019 her:0.006394065445520278 tbe:0.00633662129077536 :0.025730684075843304 +of:0.057516561027845796 the:0.03952112229660144 at:0.03557263879644962 and:0.03225039321543559 .:0.03221963631496154 0-:0.020572849695617287 said:0.02036426569491286 -:0.02000971304363897 :0.016065459698261817 in:0.013247882185562871 by:0.01298596364399425 to:0.01228484920573484 about:0.009213236949292622 E:0.008859151684309237 with:0.008596654057303588 No.:0.008394677807492607 A:0.008075636219445102 W:0.007991411974513309 or:0.007932429162981997 :0.6273254673256446 +the:0.23361964595007254 of:0.10512792532449067 The:0.05952138465012314 these:0.057961547913085276 and:0.04857768038452982 their:0.03676035439369752 our:0.03640042389796543 his:0.03599909563204657 that:0.034718977780541053 all:0.029965375904958055 many:0.02903901793815678 two:0.026979513703756362 other:0.026106846174954096 those:0.023766409198934774 These:0.02224400989466043 good:0.020134676340143293 such:0.014549471159402768 some:0.013361366765839437 tho:0.013317480062911693 :0.1308487969297303 +they:0.16427306474429845 who:0.06498440691563605 we:0.04874790318641342 which:0.04724748489669497 and:0.045768355700538214 men:0.04524769619537977 They:0.040197683194409584 that:0.01933221329126345 it:0.01897577214201853 We:0.013983893669315977 them:0.012537513257405366 there:0.01184979111389666 people:0.011511209872233901 I:0.01112267926341236 he:0.00957773620897478 you:0.008951921396009272 but:0.0075114807202748225 others:0.007323204572319675 eyes:0.007254066764183803 :0.402601922895321 +the:0.31757004609209555 of:0.09556705953359505 and:0.08604321406254832 personal:0.07441164058062173 said:0.04501779781391426 real:0.029819964914088247 or:0.024073062887798292 The:0.023746655518898742 tho:0.021813236001859613 other:0.017088214436244684 taxable:0.015775994058064007 to:0.014974936575848627 any:0.013060333399434272 for:0.0119885853288013 their:0.011032819768400225 that:0.010516464017974467 on:0.010419089053713087 his:0.010065279941622327 this:0.009653278445299368 :0.15636232756917784 +the:0.46743041225539067 The:0.07820259374544605 and:0.06470381400671094 of:0.05616496774156517 a:0.05031542297971516 to:0.032341895802894094 tho:0.025675471306882115 his:0.018764209330485945 their:0.013598674108556268 or:0.013554648749740052 tbe:0.012801708788587884 by:0.01238608282001409 our:0.0116765884120092 any:0.01115826457199153 that:0.00923621542479895 an:0.008617654149428234 great:0.008596208815681853 every:0.008522274455553624 first:0.008162672002074184 :0.08709022053247395 +the:0.11076639060148961 a:0.07849534528798262 and:0.07662355077029165 of:0.07260297245149884 to:0.052614458906641126 in:0.02898323381454322 be:0.028619334122366183 was:0.018316043946281182 is:0.016699142604069347 or:0.015571116417843511 for:0.013777377220018703 his:0.013466243388399383 been:0.012200092708878738 .:0.011651566712874907 :0.01138899460054603 their:0.010869189054887483 no:0.010269055828557971 not:0.010112362588368682 an:0.009710495306262912 :0.3962630336681979 +of:0.11233616416669644 and:0.11056348199029147 the:0.1041089780815741 to:0.05623584537060965 be:0.029246957343404587 for:0.025649650873132004 in:0.025561505262771896 a:0.025115153552355246 or:0.022430310561944968 not:0.020508371787139542 their:0.019766978012827723 are:0.018381473196975102 is:0.01768004401505678 with:0.017445948907006698 was:0.016959051612743737 his:0.016631819024237156 at:0.01503746524259002 from:0.010926837478809874 about:0.009837265792067843 :0.32457669772776515 +one:0.1028303141280697 part:0.05963429477052991 out:0.04766456937681193 some:0.031418679026461914 members:0.030764490253327767 side:0.029940657362655835 portion:0.022063658796890564 office:0.020457735219956013 member:0.019726706386316174 end:0.019666887540649894 tion:0.018667441728710307 parts:0.016814747270460957 people:0.014112771422418794 all:0.014072739582212475 any:0.013183573287639892 One:0.013083578354183906 that:0.013024335602903442 account:0.012482348155001894 many:0.012077825070275192 :0.48731264666452345 +to:0.20248282117720492 of:0.1623234417384847 with:0.10136975924755642 for:0.06488879788134935 upon:0.06352400061924934 by:0.042017510336893035 from:0.03372869133254462 on:0.03118585744054247 in:0.026838191546953896 against:0.02566869700146768 among:0.025373558854403327 and:0.020986592705791552 before:0.014721578138455866 about:0.013788301067836933 at:0.012092840065824687 around:0.011125154800913122 see:0.009550285885782547 told:0.008982869160281664 between:0.007662638854047662 :0.12068841214441618 +number:0.09833392979433904 out:0.041232925662977045 one:0.03120903036031075 amount:0.029527599838250543 all:0.027777508141529034 part:0.026650150068123418 line:0.020707577935709848 tion:0.018417545094847786 some:0.017345842769056857 side:0.01627414429901068 thousands:0.016103363724607436 state:0.015598276585147541 millions:0.015490346578065178 use:0.014167112815541555 way:0.01404873952379991 and:0.013650882573749993 means:0.013308049993111717 those:0.012879192855260204 kind:0.012783475919678032 :0.5434943054668835 +:0.04463215785406216 them.:0.034520654716802865 it.:0.020907717722016498 him.:0.009620022017288071 day.:0.008453484968639959 men.:0.00810730825692456 time.:0.007401363827923059 country.:0.007313286456763383 people.:0.007076068968109311 city.:0.006886494423161814 her.:0.006882020246898597 years.:0.005977626526783818 work.:0.0058931765861236765 themselves.:0.005873538954333245 night.:0.005410983498402504 up.:0.005205806585925368 .:0.004863232224023651 house.:0.004802202191627001 there.:0.0046876325281868655 :0.7944852214460035 +of:0.24445936295929127 the:0.14809167386825134 a:0.05482173332709667 to:0.04770000116475298 and:0.046051526562126514 for:0.03901678285068605 by:0.0370753505566622 in:0.02794365825007751 with:0.01979464571862959 that:0.017841356630756568 as:0.012601721186803463 or:0.011462180628348237 The:0.011159577974758183 from:0.010174448254282695 :0.00998681829419544 In:0.007813423437181267 some:0.007782182559924121 at:0.007679830796954116 on:0.007414394701420141 :0.23012933027780164 +I:0.12909581744274104 he:0.11369462476404646 they:0.09874351514671123 you:0.09237448006420454 we:0.07846669921959804 it:0.03927479371085944 and:0.03848682016920504 who:0.03134750563122055 man:0.028732022470820177 one:0.025917625582582565 Ameri-:0.025224234129923747 that:0.024374911801289482 she:0.023462036278088703 Ameri¬:0.018082037143255025 We:0.014490074179799178 which:0.014237677251321846 It:0.010979190534851113 Republi-:0.010409979677548087 ho:0.009194246571446841 :0.17241170823048688 +the:0.3110379548750614 a:0.14875704181867597 more:0.05114477672559371 no:0.042889519646130296 his:0.0425207820755836 any:0.03365548010210535 greater:0.032345534935815386 their:0.03229187519011711 The:0.02816332715954791 this:0.026722963400957565 of:0.021585629857671994 tho:0.01743265474534418 other:0.017143434493912035 better:0.01702732547776999 its:0.013610888930564275 little:0.013556642077540704 every:0.012802182760251565 and:0.011586276500213063 less:0.010974217890200266 :0.11375149133694357 +and:0.11529905849039156 the:0.06916806506125349 of:0.06853733343599558 to:0.06051246346326871 a:0.041869144287800066 be:0.03563706795299114 is:0.022985457786483914 for:0.02273166370894858 with:0.021624322257662594 in:0.02145949549949589 that:0.021082512398756553 it:0.020476750659631563 was:0.01826617094504358 which:0.017037404511127334 or:0.015384123819966684 are:0.014874490334443831 he:0.013073255722521637 as:0.012676897784932008 his:0.012248968190256584 :0.3740553536890287 +and:0.05917734571267282 closing:0.04405297983259551 was:0.026323119710997635 valued:0.021005792503071843 held:0.01922887441606307 sold:0.018225285914023 2:0.017782437938973866 is:0.017552850459549643 arrived:0.01662711812741857 be:0.01645048243064216 are:0.016339673120917095 White:0.01533836240735085 not:0.015154252504664439 as:0.012706467917481812 that:0.012063629264509927 estimated:0.011864260728812118 Dated:0.0116063700277585 or:0.011444173640079769 made:0.010438189210536826 :0.6256183341318805 +of:0.09129790931378902 the:0.07369883040827747 and:0.047842263382354346 in:0.04189055351593407 to:0.04045875475680249 a:0.03542341257202578 be:0.02020462051672066 for:0.01979292654746225 was:0.01760256398103379 at:0.017380150555488715 is:0.014984483003968216 with:0.014047653760730413 by:0.01374644383819499 :0.012670486581795598 In:0.01200961464556976 or:0.011563835749786333 from:0.011391516893522809 are:0.011273104484969465 that:0.010755276030689069 :0.4809655994608848 +is:0.1163597572140991 and:0.10677665477729516 the:0.08887171622435082 as:0.08309650438422833 of:0.0644684397160249 was:0.06147654526406259 such:0.039576700858006006 in:0.039263396484664766 be:0.03415650469044484 by:0.031581853492794486 or:0.02735960426197644 a:0.02528056611833965 it:0.024769631840471387 to:0.02275445126895171 its:0.02058345664460915 this:0.01767545442027774 that:0.017569978103598602 their:0.01745958439221769 his:0.016313778293474794 :0.14360542155011186 +of:0.2019480558208815 in:0.090066679537031 and:0.08212617345783983 on:0.06739711650753612 the:0.03909639159210293 at:0.036738564155941206 from:0.031567435305816065 for:0.02603384058304126 to:0.020793683663922775 In:0.02006190364326197 by:0.019557625323140763 said:0.017753252858650204 dated:0.017029653952714895 ending:0.01224802422389759 last:0.01205376461665474 with:0.011298911804075228 until:0.011223429221713186 upon:0.010066061689301287 after:0.007403099849830871 :0.26453633219264655 +the:0.11274823966931571 and:0.08329996793360815 to:0.062372082173126384 of:0.05346002906215973 so:0.0299749817344208 is:0.026294180790411077 be:0.020260006954324915 he:0.018124449911071136 was:0.016351044211737983 re-:0.01567649125103956 Mr.:0.014726716630740086 in:0.013675410003338988 for:0.013272602215284653 a:0.012159264338821467 I:0.012040910229586727 or:0.010977326121126826 :0.01035107289213954 are:0.010219913969554774 not:0.009881708091297656 :0.4531336018168938 +the:0.23832085796293834 a:0.23285836048124586 of:0.05486898624037602 and:0.051964333554837254 as:0.04038745534918055 to:0.03231494338271316 next:0.029329763584460974 The:0.027798723049765755 last:0.02383221469367607 A:0.02126134354735986 in:0.01975259808107356 by:0.019225517077274226 or:0.019189223303138547 for:0.01828701395144538 tho:0.01640782673036504 on:0.016316393163339143 with:0.015776595998838298 was:0.015705310281983548 one:0.01115941462153454 :0.09424312494445389 +of:0.06919280806034124 Mrs.:0.05976627925663282 and:0.04790334186827647 Mr.:0.03846153342654119 Miss:0.02752557422474108 .:0.02740590342780886 Sir:0.027370967431335002 to:0.023025461084429023 by:0.02055568428375625 at:0.01768214958064241 Dr.:0.013269094915382784 the:0.012122296956693984 was:0.01117300511714993 W.:0.011057068686148336 that:0.010101220320331663 as:0.009010675039608684 :0.008869229514217997 A.:0.008646663793293055 J.:0.007468961273570706 :0.5483920817390986 +of:0.26107410705082723 to:0.1014141901031081 in:0.09854642330583996 that:0.06757171695312635 by:0.06035546962512944 and:0.054450941423487074 with:0.03539755236120574 for:0.033673961163983496 In:0.027265418869572892 from:0.026037304197721968 on:0.02368273577290343 under:0.021456993400389045 as:0.01614223462742228 when:0.014550461733372533 upon:0.012696929629087129 which:0.012643098875092003 but:0.011888501468207647 all:0.010399451259478365 is:0.009365316489484144 :0.10038719169056118 +;:0.027253807067969798 me,:0.025386189039712893 it,:0.019486949244540273 him,:0.01442890751640384 up:0.01351291627347926 them,:0.012586087652007584 me:0.012071058911561171 him:0.011677555222907513 in:0.010553917042809413 time,:0.007719577661678972 up,:0.006630640963613527 her,:0.005860055962437541 you:0.005849453238082238 it:0.005735069951165533 them:0.0056398269282520695 down:0.005504147064783286 and:0.005302487226794495 ,:0.005224139305689998 time:0.005184399213422602 :0.793392814512688 +is:0.15183353189172663 was:0.09703180773672922 have:0.07838503173033622 had:0.06378597786821855 are:0.058961785952913744 and:0.04873074577548441 in:0.04692984230559056 of:0.04682141649072587 be:0.044990405584031244 has:0.03823240609059108 with:0.03354721145526127 not:0.02638536492383692 by:0.026071712188445537 Is:0.02276506085557255 as:0.02170504578595248 been:0.02063335000371306 were:0.016451379669196173 In:0.01625973117706506 for:0.01624206609935032 :0.12323612641525912 +of:0.09129790931378902 the:0.07369883040827747 and:0.047842263382354346 in:0.04189055351593407 to:0.04045875475680249 a:0.03542341257202578 be:0.02020462051672066 for:0.01979292654746225 was:0.01760256398103379 at:0.017380150555488715 is:0.014984483003968216 with:0.014047653760730413 by:0.01374644383819499 :0.012670486581795598 In:0.01200961464556976 or:0.011563835749786333 from:0.011391516893522809 are:0.011273104484969465 that:0.010755276030689069 :0.4809655994608848 +the:0.1623656113811536 of:0.1292479663180612 and:0.11650852086334887 to:0.10363087642179925 in:0.08137402637679636 that:0.022046624132743754 In:0.020922660572602867 from:0.020417943596865613 for:0.018055927813357877 :0.014378439656685676 Mr.:0.012201421975547218 a:0.011961677392623512 tho:0.011569488260602067 .:0.010432955367618542 at:0.01042374167733318 The:0.010164811988100009 or:0.007395752623555995 with:0.007111981946606329 by:0.005582798679935812 :0.22320677295466226 +able:0.06566599664182031 enough:0.048948368115287355 him:0.047602519969134886 and:0.04649240668428177 order:0.04333569780866835 is:0.04260666524684196 necessary:0.04254109005896852 as:0.03221366777390973 began:0.030809183400760394 not:0.03079915640153477 right:0.029386455510272257 me:0.027617699417166443 attempt:0.027037834438286674 them:0.025875883356017204 unable:0.025006648012881664 trying:0.02470609719772378 made:0.02459579290591485 time:0.024054716389820336 going:0.022954254137348924 :0.3367498665333598 +of:0.12077482359587764 the:0.11644303055339557 in:0.061595015725429025 and:0.05653298857371402 to:0.043112868821044426 as:0.0316197558581808 be:0.02816881027023976 a:0.024268539296473084 by:0.023665593124938995 is:0.020838355795395537 was:0.02042652505930804 or:0.0176335944521195 that:0.01689616114300717 In:0.016688626461976455 for:0.01646234141416124 with:0.015645661137925638 :0.012105079427655072 from:0.010712270506422091 in-:0.009602513845011193 :0.3358074449377248 +of:0.08389223328836794 the:0.07879409437514272 and:0.06856877120977958 in:0.06750295881258168 to:0.05811804358604556 for:0.029213681908528872 In:0.021895767175858796 a:0.020812934841478455 :0.020740967121567068 on:0.016268254861234992 is:0.014045754462716041 that:0.013923511471118186 was:0.01256298359701792 Mr.:0.011670533198628732 Mrs.:0.011616096866432812 his:0.011221725884590309 from:0.010853490972116164 -:0.01049864769728691 which:0.010356387889380217 :0.426443160780127 +of:0.28767355066866834 to:0.08775711267569858 in:0.08678131196995101 and:0.05160598694501188 on:0.04646139928102899 by:0.04519522654900943 for:0.044547789071328545 with:0.03396756772609607 that:0.033699232901107726 from:0.03075346596941143 at:0.027039283056790858 In:0.021061449543044047 as:0.017514234937992545 all:0.012543839382496166 upon:0.011844431150487573 is:0.00998972746569266 was:0.008814315973987914 into:0.008557199930727406 through:0.007781895704231326 :0.1254109790972375 +the:0.23433748308036206 a:0.1549747559345366 and:0.062282813655932454 in:0.06207671883916104 of:0.05098220290342415 his:0.0391020707203 with:0.03174837031773627 my:0.025418813658220518 very:0.024464537004117003 The:0.0243550386165317 more:0.020970582539635546 her:0.018477304476546844 this:0.017167682681055237 on:0.012573806103444695 its:0.011455659656607296 is:0.011121055587982874 their:0.010283067992974472 all:0.009821642816291025 tho:0.009480217916559154 :0.16790617549858106 +and:0.09119746016991705 is:0.037701860890248774 be:0.03653362463720508 or:0.03139110127630011 was:0.025225862957493177 not:0.024452262687896843 it:0.019647893509769615 are:0.018845827171773837 that:0.01563668527268197 them:0.015514007277697169 him:0.012802310687848671 but:0.012415811313251118 up:0.011679474750008065 were:0.010916915757295293 made:0.01082300619925387 out:0.010642648991998597 for:0.009219928596479443 been:0.009013205013027421 only:0.008884407271714584 :0.5864557055681393 +the:0.10827285224321626 and:0.08870080307854705 of:0.07654378796298532 as:0.07601899914727774 a:0.04239111470737973 to:0.036354557417072705 be:0.029098708624609438 such:0.02486086551323051 in:0.02412061979539941 so:0.021759133747919383 is:0.0213871206641338 was:0.01854428813517412 or:0.018041820802296556 his:0.017121500893264113 are:0.011896248230315926 Mr.:0.011670635217693667 for:0.009878887779613906 their:0.009758437766275404 at:0.0092398132181 :0.343339805055495 +the:0.17411126465045787 of:0.09087428496725047 a:0.073230880416196 and:0.07235851700830562 to:0.05285439240855183 for:0.030103391519364902 in:0.03006816572348911 or:0.02738891849378504 at:0.019442768676078453 is:0.018309938905728747 this:0.015081339081091 his:0.012441303413979116 was:0.012096272658725033 be:0.011874867246643538 by:0.011857818598813083 an:0.011468816716714295 tho:0.011436988426804589 with:0.011025949140122704 The:0.01081046671708006 :0.3021636552308185 +to:0.12022893700269083 and:0.09020394424291768 the:0.08587503820055309 of:0.06450042443224316 in:0.0310058468700829 a:0.017742048521183405 :0.015548046036689871 not:0.01491307651316237 that:0.014112408707955496 for:0.013734482372212283 I:0.013065769926808477 will:0.012848502316304782 at:0.012837991177321897 In:0.012628718855091186 by:0.012491091048660757 be:0.011425930130217754 is:0.0113962101007567 he:0.011342727513475473 or:0.01112522537451577 :0.4219735806571561 +feet:0.0719208472326295 poles:0.05759396229176634 up:0.04010587224329879 chains:0.0385088170079141 entitled:0.029123404981740347 went:0.027388526271997813 came:0.025857650765910022 down:0.025633262313841977 him:0.025574415868859987 as:0.024916209858287616 and:0.023917753661251574 subject:0.02185045005331621 brought:0.02171367122116056 them:0.021644069985480026 it:0.02099405133651225 rods:0.019030517253069822 back:0.018922583019034468 go:0.01891708435510451 sent:0.018892511875840953 :0.44649433840298314 +of:0.214565526951181 in:0.12352687949340034 to:0.10175373573059766 from:0.04879174941813456 In:0.0417721964270938 by:0.04052805483503466 on:0.04027375353585386 for:0.03497213343975553 that:0.03408243599159257 and:0.03386976599280598 with:0.030906330431861962 under:0.015243963760417052 upon:0.014386563279739827 as:0.012735618639091279 all:0.012211679079030981 into:0.011462477390935975 is:0.01069590298431009 through:0.009209799033294547 at:0.009093107432015586 :0.15891832615385273 +able:0.04795907955406747 and:0.04353567184461763 is:0.041235567977807294 have:0.03876828334361679 him:0.03662776951487707 had:0.031575658538607075 right:0.02987975483179204 enough:0.029329435508820084 willing:0.028280012905788597 not:0.02682313507330459 them:0.025942367597424534 order:0.025862676912433363 was:0.025636089024478878 necessary:0.0255781117934275 began:0.024933373581299306 ready:0.023995472098691805 ought:0.021512881147108052 want:0.02106226583126587 as:0.020369275689315257 :0.43009311723125676 +the:0.31587781496045997 a:0.07754340565752178 his:0.07722649109420292 our:0.0599882298613936 their:0.05037389566367442 of:0.04573897545130044 and:0.03291733225850325 my:0.03160144851357277 The:0.022293298091410053 her:0.019195974538653557 other:0.01756696089331959 that:0.017121995390926913 tho:0.015971613298305067 political:0.01595625029428935 this:0.015811516631469565 its:0.01564338727054243 many:0.014713892534598538 new:0.01372928776907342 own:0.013057436050651034 :0.1266707937761313 +the:0.28065552536784477 of:0.11597560177045835 The:0.08512753372935805 a:0.05218497996011341 and:0.0401551410653929 that:0.02928867705078899 to:0.02907675844262382 by:0.02879034531697805 for:0.02259832820228202 this:0.02080593839060461 other:0.018289984595081025 tho:0.017274181296010927 Mr.:0.014377850463673994 in:0.012980159353956217 which:0.011862862655426784 our:0.009321078578720077 said:0.008865610953948368 from:0.008704167492953883 This:0.008031030735238571 :0.18463424457854516 +the:0.3561930201848185 a:0.08777770273983525 and:0.08657849945550168 would:0.08573466728383226 will:0.07066694594569649 to:0.06319003203694286 may:0.029381113098121584 not:0.028720210408551765 The:0.02224821752400382 can:0.015932703433783224 tho:0.014872937420641828 that:0.009694216608026504 this:0.00908011509100536 which:0.008628310234587811 might:0.008352925052799028 must:0.008049793646912065 they:0.007703233046190744 shall:0.007616592123754618 his:0.0072753168417115715 :0.07130344782328302 +:0.10132530864253071 .:0.01586153736849991 it.:0.012994963694550781 them.:0.009972326155771085 day.:0.006466314186158732 him.:0.005963072708890589 time.:0.005952754819220498 of:0.005834450921883061 country.:0.005314225508045209 year.:0.0049247550547799 city.:0.004072303040063511 years.:0.003997040955926161 work.:0.003880377182773483 people.:0.0033836246305601453 States.:0.0031455025043576447 place.:0.0030640999552846737 men.:0.0029656503323313246 way.:0.002952433427976742 out.:0.002933009065662241 :0.7939962498447336 +Mrs.:0.15614631685034092 by:0.06404960771849506 and:0.05801215924356037 of:0.04906038728514567 Mr.:0.046129758453693076 to:0.025599605426907014 Rev.:0.024957488904479658 :0.01875004842045178 Mrs:0.016520610977866827 Dr.:0.016145769638762165 .:0.013896422315525209 from:0.012829029749098823 Hon.:0.012634520905874696 the:0.011574401444727843 girl.:0.010454106022585813 St.:0.009627055278547602 Sir:0.00903256093225243 said:0.007205776451476262 with:0.006141702851960456 :0.4302326711282483 +one:0.1693785664284139 some:0.07339977533722658 any:0.04262262407121351 part:0.031736371135670176 most:0.027043974703240027 that:0.0269461964737974 out:0.02659622787527867 One:0.026486418112793123 all:0.02373646177486855 many:0.02050637440444454 each:0.01964335155381897 and:0.01746877663154189 Some:0.013671982852541538 time:0.013384711710464264 majority:0.013198657445210829 tion:0.012549525031409702 portion:0.012021894229125217 side:0.011767257388605719 number:0.01110858022735152 :0.4057322726129839 +the:0.4198823340111425 of:0.06157799230808704 in:0.060457037585357455 a:0.046268290559549834 and:0.044948834932896864 In:0.022629709973952 The:0.02029325749558476 tho:0.02027398084626862 said:0.017760193658446173 .:0.01535954149170897 T.:0.013801876109966704 by:0.013740968176679653 Mrs.:0.012691286977493653 from:0.012366743396143798 Mr.:0.011973999044462398 South:0.011666579466052927 scribed:0.011553111083758104 tbe:0.01123103258148714 to:0.010580408668458077 :0.1599428216325033 +of:0.3723274521489533 in:0.17151076481271382 to:0.08271687782955149 by:0.04670174536921529 from:0.03591181987398093 on:0.03563027651238613 In:0.03552861122765815 that:0.026983154620705663 and:0.026794999193513264 with:0.023569879847648956 for:0.021848265857276325 at:0.016272979172227902 upon:0.009980881436719463 through:0.007308764764103855 into:0.00682301499499782 under:0.006228416821154711 as:0.005710996770659757 ot:0.005201913632016155 over:0.004919716228143024 :0.057029468886374 +a:0.41530690144709376 the:0.11413809872245488 very:0.05109147704426034 but:0.04036752043917508 of:0.0341369072805336 and:0.02983917514203853 A:0.02562664574049349 is:0.024060939450024542 with:0.01878750321882679 The:0.017887249953961355 his:0.017351533870941377 her:0.015008060925763197 as:0.013867746946525232 that:0.012393113545193396 was:0.01040093229151475 this:0.010055532683032388 no:0.009859743004332294 their:0.009534249279293798 by:0.008969129070318525 :0.12031753994422266 +on:0.26696110959002867 of:0.258365266013543 to:0.10217874381414387 in:0.051623668702593 from:0.04512792032921264 along:0.042210040317827754 and:0.027755226711855072 at:0.021803208461810927 by:0.018662659318038458 that:0.013423673341575628 In:0.011511413116534858 with:0.010948310211532601 On:0.010485709818346844 for:0.009386260486856075 upon:0.008973411804377806 over:0.007938584477618709 between:0.007255002637088913 across:0.006933559957711432 into:0.006553199661014596 :0.07090303122828913 +and:0.07558940021936399 recorded:0.030196237618668006 was:0.028917161578042846 made:0.027969746247669736 that:0.027730098932509103 o'clock:0.025060522019555328 up:0.023026552239529506 is:0.020398277211376416 found:0.02003101797656537 placed:0.017482208134164214 out:0.016937164562539058 place:0.016819459500107596 interest:0.016629321966808677 him:0.016002796715253755 situated:0.01573420479581609 it:0.015128305982428461 them:0.014715943643665314 part:0.014646613000297721 interested:0.014450471929902294 :0.5615344957257364 +of:0.39406525045666196 in:0.17353512377058125 to:0.1369165472190086 from:0.038694852677282524 In:0.0328223244698369 for:0.02976767471052582 by:0.026969782084912155 that:0.02040676162609932 on:0.018785867494771118 with:0.01670873483381034 and:0.01663250204056267 upon:0.013575395955464609 at:0.009902342771941599 all:0.009225501334400902 into:0.00909775043103564 ot:0.008846636489099174 as:0.006299667078949107 than:0.005393658536909347 ol:0.004950086556911468 :0.026403539461235498 +have:0.30825979017372884 has:0.23335574802959289 had:0.21175046658197516 not:0.030988266201518243 having:0.02927012901615229 bad:0.014171973849594698 ever:0.013086879418728829 never:0.01300501411300987 havo:0.009928021099038665 lias:0.009747205787221536 haa:0.00770115724572842 baa:0.007542997033275567 always:0.006964193192067684 already:0.006843537117543435 yet:0.006280305743339498 long:0.005835741283387316 since:0.003932840742479124 hare:0.003476596932273983 and:0.0033496242557260235 :0.07350951218361794 +of:0.2871681646348822 to:0.11717540887219195 by:0.08599868938166826 at:0.06889559928902671 in:0.06747590052807553 and:0.0457533763189308 for:0.03383713154614305 from:0.02981034457297818 on:0.028237597213520458 with:0.027288279409456113 that:0.025385824252797527 under:0.01406926510655993 In:0.01379400365306407 upon:0.010945650254904637 against:0.010800281386952867 before:0.008103885197020249 into:0.006058095386753274 At:0.006012674758124888 through:0.005880628597345862 :0.10630919963960347 +a:0.21211538322092624 the:0.19546933793587096 any:0.0837433263674313 that:0.06392555342730763 this:0.03900466156601476 every:0.03320437776626297 greater:0.0317962037514499 latter:0.02445227455811817 no:0.02194048191245243 first:0.02122680174566319 in:0.019145450321797694 and:0.01833696914000321 or:0.018018366847473998 large:0.01717044034959002 other:0.015696659241908387 early:0.015427668332717937 upper:0.014960184655747284 take:0.014893052348053108 as:0.0127088152040228 :0.12576399130718802 +the:0.11919516938815296 of:0.07230453158552728 and:0.05781056740443249 a:0.043018564803886335 to:0.031305092790907506 in:0.020848713353460488 at:0.014270110001066288 .:0.012526810245749479 :0.012413283442322082 for:0.011719122709941797 by:0.010808400946589808 or:0.010404172990115616 The:0.01003576004804544 with:0.009811868184449042 tho:0.009295902015355835 was:0.008924239095331684 that:0.008672304223433876 is:0.0085591147338948 be:0.008335143826716943 :0.5187411282106204 +contestant:0.12353646181712351 to:0.05340992600093974 is:0.0523350117313568 of:0.042889971808504644 be:0.03999923346046312 and:0.03691798818312142 therein,:0.03598708323700575 by:0.032450001045266165 for:0.03111615537058168 are:0.030840768789426556 have:0.02439268175576149 was:0.024005073562598192 on:0.023666411086596967 not:0.02130837516001396 that:0.01829582912241377 or:0.01712779582050531 had:0.015053411798924315 in:0.014919538080887782 been:0.014324095141530869 :0.34642418702697797 +the:0.11919516938815296 of:0.07230453158552728 and:0.05781056740443249 a:0.043018564803886335 to:0.031305092790907506 in:0.020848713353460488 at:0.014270110001066288 .:0.012526810245749479 :0.012413283442322082 for:0.011719122709941797 by:0.010808400946589808 or:0.010404172990115616 The:0.01003576004804544 with:0.009811868184449042 tho:0.009295902015355835 was:0.008924239095331684 that:0.008672304223433876 is:0.0085591147338948 be:0.008335143826716943 :0.5187411282106204 +and:0.08995317707915026 to:0.06844710404109794 of:0.04605142056172993 the:0.04074574508561307 which:0.02479116931334353 that:0.023764822140213245 re-:0.020841117231308055 in:0.020803825395358622 for:0.020278423301550053 :0.018417753428486977 not:0.016860793136637672 con-:0.016444405871234195 is:0.014386481772210856 or:0.014080680914153714 be-:0.01352268143271276 I:0.01317002660943805 was:0.011429878269381662 dis-:0.011196807025842847 he:0.01113106290024311 :0.5026826244902934 +and:0.05050916545382383 the:0.04659789732468503 of:0.041663554559326486 giv-:0.03807794155250714 be:0.03497071926628061 tak-:0.024306849551741314 at:0.022720059263391535 in:0.02105429084880288 to:0.02067440471628814 giv­:0.019148463474427644 it:0.01870822085091173 I:0.017196841458745976 was:0.014194489009603583 a:0.013386139273252244 -:0.012347225831810226 not:0.010733689997440878 he:0.00963466091812183 his:0.008411867508099318 all:0.008401697973148218 :0.5662618211675914 +the:0.12597798178374625 of:0.10542550313352028 and:0.07571845211254795 to:0.04189623512326386 in:0.0316930494589828 be:0.0297674998183792 for:0.029066694154931003 their:0.02480561768414787 was:0.022672769634947767 his:0.02149338123484108 is:0.016817279162195664 that:0.01605062904376472 or:0.014849135036643157 are:0.014771311322097082 much:0.014352910271084283 been:0.014204774305886849 he:0.01394801101667355 a:0.01368296163945811 at:0.013396277615438297 :0.3584095264474502 +Resolved,:0.07249148873698201 enacted.:0.04427930317961591 enacted,:0.04336493362802516 :0.04246451869676017 .:0.019960839572588845 it.:0.017642604229702985 Provided,:0.017304726471355895 1.:0.01638123192301307 2.:0.016129087106437682 4.:0.01286455184666742 5.:0.0123732293610284 3.:0.011814077554782181 them.:0.00821492613532826 further,:0.007849771332630763 ?:0.0066640435394142526 ::0.006640310801228134 him.:0.006535022068944392 country.:0.004882565561828768 Given,:0.004682806222557855 :0.6264599620311078 +the:0.1686254608388007 of:0.08510631124515454 Mr.:0.053063968456177904 The:0.05290176461656073 and:0.04281351925879434 that:0.03659363717531167 a:0.027376597759942865 this:0.016009104250207996 in:0.014329796242200724 :0.013577096541793277 .:0.012332809689052695 Mrs.:0.011483371514010961 tho:0.011366564416127033 to:0.010938551223696477 for:0.010273564804762044 which:0.009103350770352783 as:0.009022855831525262 his:0.008831867202298479 or:0.008219518012985871 :0.39703029015024366 +of:0.21564384127182445 that:0.12464214964608532 and:0.09792654584382114 to:0.0727346134405686 by:0.04393073334132853 as:0.03751898679557282 in:0.03554196968466474 for:0.03390523916351908 when:0.026050338585616443 with:0.024776494229567694 which:0.018326062668490475 all:0.018153993544094162 from:0.016515374621215495 if:0.015508050098944272 is:0.015451988385153444 but:0.01446126648676729 on:0.013939196561891907 at:0.011114677512680934 was:0.010695639466863603 :0.15216283865132965 +of:0.09129790931378902 the:0.07369883040827747 and:0.047842263382354346 in:0.04189055351593407 to:0.04045875475680249 a:0.03542341257202578 be:0.02020462051672066 for:0.01979292654746225 was:0.01760256398103379 at:0.017380150555488715 is:0.014984483003968216 with:0.014047653760730413 by:0.01374644383819499 :0.012670486581795598 In:0.01200961464556976 or:0.011563835749786333 from:0.011391516893522809 are:0.011273104484969465 that:0.010755276030689069 :0.4809655994608848 +they:0.1422193600349239 there:0.05849232705230136 and:0.05364794518597344 who:0.05060073302875137 we:0.039796496029532724 which:0.03941212764794604 They:0.031471712802734836 There:0.027277972023637694 that:0.026476974477609803 men:0.021156313901298206 it:0.018650113321758758 We:0.01150603832299857 you:0.011134597598392589 I:0.010540813851838039 people:0.010280567277705255 them:0.009160186773977539 as:0.008841656067636882 but:0.007526879745621775 whom:0.007466233559027055 :0.41334095129633414 +the:0.1604916966188227 of:0.11275865359240217 and:0.07711215696098911 to:0.07357952543518372 in:0.038442084934050845 a:0.0383429392325653 be:0.031935549729258765 for:0.023687353579869633 his:0.022938330903791306 their:0.021679866906020865 was:0.016051393500300423 I:0.014372428877850276 is:0.014141382081180844 he:0.013550986364416807 that:0.013373239787386165 or:0.01186895305038503 with:0.01134461766076533 at:0.011053389841868837 are:0.010330149310961712 :0.2819453016319302 +and:0.14507320772351315 fact:0.08580533594336559 said:0.056464728489513914 so:0.05141663139801109 believe:0.03728868944610554 is:0.032697255055655516 say:0.030323479159427524 know:0.029749358812227955 found:0.025535190692382553 stated:0.021273605064562356 show:0.019511948220510757 but:0.018999393120383457 says:0.018814328565908398 think:0.016893655385130203 was:0.01658797795582863 all:0.01652317309060226 see:0.015409038245983688 opinion:0.015263158537430448 order:0.014744011681695817 :0.33062583341176116 +There:0.22226649797853332 there:0.2170176667857213 they:0.09643135703184627 who:0.05983929436295436 we:0.03599145410433484 which:0.0350885817408418 They:0.026854340337150874 you:0.02143991783474527 and:0.018367667617828976 that:0.016961014154748478 men:0.015440208972839512 We:0.01125256313988615 these:0.009192635684318705 people:0.008274997831160175 These:0.008113010361310584 them:0.006100806250382364 as:0.00477809453149247 all:0.004561875539392232 women:0.0040430859093135525 :0.17698492983119876 +and:0.07895257911471103 was:0.03596317658514438 out:0.024016824392823457 that:0.023672598027062328 placed:0.022844208461019616 work:0.021707439938587154 made:0.020781005318872947 is:0.020224993929329655 up:0.019794182040466738 put:0.018288921183371155 down:0.0171740551508179 interest:0.01663630075189571 point:0.01659978677065351 him:0.016175999448187352 held:0.015562908663841706 Dakota,:0.014616466073415059 place:0.01424333231426501 Minnesota,:0.014067166610364513 it:0.013665465625771424 :0.5740125895993994 +of:0.16630148874724948 with:0.131046649471372 in:0.12452082335979259 for:0.06055422894716807 is:0.0596958125478631 to:0.05564733938504433 by:0.049910004784766315 and:0.03887635727278305 was:0.0328896002384794 In:0.024100965525120636 from:0.023230677641487132 that:0.021425336820115725 on:0.02109751162385993 have:0.016495535556853395 at:0.01633803233005728 not:0.015471384097651664 make:0.015078194561406043 be:0.015014805580170517 as:0.01388665956676348 :0.09741859194199586 +of:0.28767355066866834 to:0.08775711267569858 in:0.08678131196995101 and:0.05160598694501188 on:0.04646139928102899 by:0.04519522654900943 for:0.044547789071328545 with:0.03396756772609607 that:0.033699232901107726 from:0.03075346596941143 at:0.027039283056790858 In:0.021061449543044047 as:0.017514234937992545 all:0.012543839382496166 upon:0.011844431150487573 is:0.00998972746569266 was:0.008814315973987914 into:0.008557199930727406 through:0.007781895704231326 :0.1254109790972375 +was:0.23696152985390373 been:0.10765435519176984 be:0.09831288488580717 were:0.09408770443397041 and:0.057793381592552484 are:0.05128448560613075 is:0.04949309286784001 he:0.04898437378631987 had:0.04166860836835478 have:0.03283095323212094 has:0.022030605354871027 a:0.019807586023174777 He:0.01687649298921678 being:0.015909492744374053 the:0.013367524487148875 I:0.013240546862751074 who:0.009422285649250175 she:0.009387276959882009 lie:0.006686274094575939 :0.05320054501598531 +the:0.5884350830168428 of:0.048852637852530016 a:0.03377771107225137 tho:0.030504081367413893 The:0.029924478666529912 and:0.026322368455405806 or:0.019663740911817815 that:0.019373021215982236 other:0.017397939658336234 at:0.01683120414051614 no:0.01637502835397391 any:0.015265501557666126 for:0.013631974640445264 tbe:0.01046467898463096 their:0.009126567612473 such:0.008956328365054413 his:0.008897450137605699 all:0.008434298159682779 our:0.008331298609849271 :0.06843460722099247 +did:0.15850566244399936 would:0.13695584340688646 could:0.12195957314762189 do:0.1182112768460545 will:0.11253343501052401 does:0.11096665034493143 should:0.04776034741652477 shall:0.0358648936527731 may:0.0313820746707405 can:0.015870228933073036 must:0.014568014491382628 is:0.014237220114869309 was:0.009520665281134695 need:0.009350447697573379 and:0.008777691559024196 docs:0.008346762222171046 might:0.008209361028097176 Do:0.007071517757562272 are:0.0064641813418583 :0.022444152633197916 +far:0.10053096016419726 get:0.06451907118064504 taken:0.05370909992646963 went:0.04866689516952884 passed:0.04340867012627855 it:0.036983468304860496 carried:0.03500189721924807 go:0.03471006852528443 them:0.03408196941209499 and:0.03328454339891891 put:0.03008898403334592 miles:0.029948655346666454 stowed:0.02847786338303861 got:0.027560112678632964 swept:0.025534417983228325 turned:0.023879342721972216 take:0.02359255416998551 ran:0.022850256573640048 him:0.020472982152018517 :0.28169818752994524 +I:0.2406988454999132 to:0.13241245986758957 will:0.06866842829545278 and:0.04917907644176872 would:0.044836261394603484 not:0.044402183184032946 they:0.03727199830950391 1:0.03580370706927617 who:0.029345857061033282 we:0.028890198170603777 he:0.02812949305991067 may:0.028070683592685847 should:0.026892090885545353 shall:0.02650526908463491 must:0.02089662130803944 might:0.017699782945238243 They:0.01635380944676557 have:0.016160579381849102 could:0.01607847129714713 :0.09070418370440592 +that:0.1574215159586064 and:0.09397018660301096 when:0.0654374835286228 but:0.04889022907740693 as:0.04158003707633958 which:0.03420508527982257 if:0.027103823983256572 until:0.02168896454011524 When:0.02104755341566531 time:0.019138025878878882 where:0.016092507298780364 :0.015417074666674808 But:0.013953564269364718 while:0.0138192965287086 If:0.01341652460434655 what:0.012122577570804951 thought:0.011198583387812077 because:0.010526750990031999 before:0.009637997911740514 :0.35233221743001014 +of:0.15470335127444745 to:0.10552552493530594 in:0.09116047049582639 the:0.08321229284087507 and:0.07057161562119588 at:0.061805720351820075 In:0.04855801255534783 for:0.03526579483209945 on:0.02796651951259392 a:0.025634264387697003 their:0.023440387135070507 or:0.01842579289133412 from:0.015420596498012959 some:0.015306550688512471 his:0.014078420449973233 At:0.013655999809751723 by:0.013620509349255062 with:0.013292981463759793 left:0.012766384098697282 :0.15458881080842382 +at:0.15759636317629921 of:0.1421714067936483 in:0.11676904876960983 to:0.06398364411645996 on:0.051157018190029144 for:0.05108566601725402 and:0.04555513108461132 that:0.031721944739604234 from:0.030113826054908015 In:0.029702699076370135 At:0.029399515452081842 with:0.028043139425789426 by:0.026185917658690036 is:0.020303271491863204 as:0.01797707611473321 was:0.017223050385135958 upon:0.016504659720422372 about:0.014081527374087893 be:0.01236778699448754 :0.09705730736391437 +day:0.029356357683468972 o'clock:0.010883675694626983 1:0.009869539955826793 in:0.008579904899293523 .:0.007749491628733289 up:0.006972766379617938 on:0.006914417481618463 city:0.006832197110288538 State:0.006117211663258715 deed:0.006011840806023195 night:0.005992570073076474 and:0.005706941366993271 Monday:0.005534792201829632 ,:0.00539635130031092 side:0.005139304410962986 street:0.004880039272860817 county:0.0048400383732293455 land:0.004736301861927751 house:0.00466855199919618 :0.8528177058368562 +principal:0.0322794579477925 land:0.021651676027133644 State:0.01919785037243945 city:0.01570188034869495 state:0.014696162096795513 dull:0.014061119987575617 in:0.013631566238572038 States:0.011681005536372559 rights:0.01102652742939231 time:0.010400295213913788 costs:0.01020023910588049 men:0.00974148040443701 dollars:0.00940464255224024 health:0.009181418844067599 power:0.009135329323535887 good:0.009094313544741614 cities:0.00886268303959763 life:0.008569261348315536 title:0.008357788411448009 :0.7521253022270536 +I:0.23918237629880953 he:0.20264719908989812 who:0.10004167043340245 they:0.06761964212662226 she:0.051067486543915006 He:0.04096920097947288 and:0.037938631612092814 we:0.031272686157527915 1:0.019321367054963907 never:0.019270692010816114 that:0.014037573645630455 be:0.013553486048828672 She:0.01165562805330629 They:0.011513076945488107 ho:0.011287338617537722 you:0.01106669532472262 which:0.010628819832399607 We:0.010369484148943632 lie:0.007033012057209773 :0.08852393301841212 +the:0.14408159137045592 at:0.1312714344220951 for:0.13086239450850795 a:0.1274605904831502 of:0.04827540142370459 in:0.04093715328424122 and:0.03244770693902936 an:0.022619578073196395 to:0.01862777841902425 any:0.016199977871568606 In:0.01314668212584158 that:0.012604864366476771 during:0.012259847726247606 all:0.010670206197684034 by:0.01046494821095326 tho:0.009126437018710432 which:0.008954551823202424 his:0.00863831093727693 :0.008266853715592269 :0.1920836910830411 +has:0.3202916644616113 have:0.2898143479260446 had:0.1861167339743323 having:0.0433135847945308 not:0.023243553882612122 ever:0.011825808043402154 lias:0.010884738727449461 always:0.009056562163957737 bad:0.008565077964651087 already:0.007843747916302045 never:0.007476279638452004 havo:0.006946758086839177 also:0.006846050884501733 since:0.00577094313197995 yet:0.00506080986698426 and:0.005047090029712375 long:0.004899406245021249 recently:0.004864157979311646 baa:0.0039756064403635325 :0.037157077841940514 +to:0.6667272497225548 will:0.04773551685090544 not:0.04428766492554367 and:0.03988196646173348 would:0.037335123263397184 can:0.017567668964162036 could:0.01585067569936093 or:0.014874377389366356 you:0.01294110162704399 we:0.01087704629033019 may:0.009495152011253718 should:0.009192196586043163 I:0.0075522968366007305 they:0.006280659704818237 must:0.006140375421624713 of:0.005163643094651022 shall:0.004947247489674598 by:0.004693974119583991 that:0.0046047344417842525 :0.03285132909956746 +of:0.1114599206514227 for:0.08519657464986181 to:0.07160752030543928 in:0.07007642060532807 and:0.06336048803901789 with:0.03735499018263369 is:0.03670883828293025 at:0.03568860170008603 by:0.03215314833503808 from:0.02927519954528529 that:0.028933967327283195 on:0.02836577083086091 In:0.02399241570666865 are:0.02058603574359604 was:0.019989168004870897 or:0.015004912732301267 make:0.012567859868193455 upon:0.012354857887457207 do:0.01159921658855568 :0.25272409301316956 +a:0.4659388235807397 the:0.1377455973345343 of:0.05797929587899103 and:0.04507852424126345 in:0.0329814473751737 for:0.025940735827928208 with:0.025834141090955387 no:0.023334986409140654 A:0.02092989970919796 The:0.018533001369814256 any:0.012536055593934742 In:0.011902794843411465 his:0.011869915702658131 that:0.011034451528605865 to:0.01099880462621329 by:0.00923814369795666 or:0.008951512171707867 tho:0.008765948837618944 their:0.0062452159103252745 :0.053160704269829204 +and:0.08995317707915026 to:0.06844710404109794 of:0.04605142056172993 the:0.04074574508561307 which:0.02479116931334353 that:0.023764822140213245 re-:0.020841117231308055 in:0.020803825395358622 for:0.020278423301550053 :0.018417753428486977 not:0.016860793136637672 con-:0.016444405871234195 is:0.014386481772210856 or:0.014080680914153714 be-:0.01352268143271276 I:0.01317002660943805 was:0.011429878269381662 dis-:0.011196807025842847 he:0.01113106290024311 :0.5026826244902934 +of:0.34501596068665885 to:0.12001930686498075 in:0.07382311360211462 that:0.05964605384333947 and:0.05827864095839864 for:0.044580263314145344 by:0.037439355826159024 as:0.026088958655899608 from:0.02469761192989973 with:0.023330524585426688 on:0.02291582308284351 at:0.02010934135666055 In:0.014309155081926412 which:0.010996229652995512 into:0.01006240689611371 if:0.009397389917166288 before:0.008851426792629848 upon:0.008551658940203677 when:0.007997917912823905 :0.07288886009961383 +and:0.16353911923164585 of:0.0981463893364374 fact:0.049156470859018225 is:0.03799728071369588 to:0.03495617426812302 all:0.030906659938944647 on:0.030111000110130758 said:0.02484286871794309 in:0.02277286054664057 was:0.02167647470141381 given:0.018877799860615427 but:0.018201853935770666 believe:0.017741998109752456 say:0.017458184453274433 so:0.014614448617137283 found:0.014466350248044034 from:0.014064637902643281 by:0.013042456215779279 with:0.012112087755586302 :0.3443148844774036 +one:0.07591276261110715 out:0.06051731193170748 part:0.05247657393880051 some:0.03764565803631056 account:0.03732080875142556 any:0.025795501308866122 all:0.022573497570587936 that:0.021706034880474935 tion:0.018820497961324994 time:0.018327338823311803 and:0.017698472540372448 use:0.017101246342976464 much:0.016743309263569286 portion:0.016424352739351607 side:0.015150320706867294 end:0.014971280442338157 cause:0.013657752568417643 because:0.013563549560043006 reason:0.012998228641295377 :0.48959550138085167 +.:0.12395222801352851 Mrs.:0.08773816956584489 A.:0.04997526088329025 W.:0.044572055714561326 J.:0.037273723185032956 and:0.03727137358179129 to:0.026387854831624213 C.:0.02127860779712574 of:0.020084074885009434 Mr.:0.01988764900270258 T.:0.01636441894183584 Sec.:0.016347203275553758 S.:0.016293760079343765 Dr.:0.016275029662115845 R.:0.015937295541782744 E.:0.015872705170031906 a:0.015834751013764903 M.:0.011852636798931745 D.:0.010270902396215243 :0.39553029965991304 +the:0.18106159941923258 of:0.10171722028117262 on:0.09604176032654542 a:0.07511902647483377 in:0.054321843844209815 and:0.03696227774218537 to:0.033702293609432644 at:0.01454032949597944 In:0.013900130014373487 from:0.012972829310217936 The:0.01270257291529828 by:0.011882631978706766 :0.010647143098177063 tho:0.009126228456704041 as:0.008753658321880416 upon:0.008447252551470389 that:0.008022617247165714 No.:0.007922932010424353 feet:0.0070666423598795425 :0.29408901054211034 +of:0.34661288617849495 the:0.11696884417701472 to:0.07058535769328353 for:0.057774956979597336 in:0.038501154854208346 at:0.03195924342094824 between:0.028751455973245226 with:0.027579507564425964 by:0.021310988115139876 all:0.01977572499851454 their:0.019447253549371574 and:0.017767202975042893 from:0.017081285548683593 such:0.01592625122249233 manual:0.01547345212664363 a:0.015022390402203264 hard:0.01393940108833483 both:0.013486194712876109 on:0.011361913886258616 :0.09967453453322048 +that:0.26566641607977726 and:0.23569464726673756 but:0.05746283681174096 as:0.028016138834805082 which:0.023071386953602717 where:0.02167947432770952 But:0.019760218577383103 if:0.01873453972328814 or:0.013902221099203324 If:0.013233806251692534 then:0.011593771874760064 Then:0.011416470755244011 it:0.011149158834463546 when:0.010874195310561897 time:0.009016864799461533 than:0.008357217148825364 That:0.007565693105553903 And:0.007351420328316932 is:0.0065261260878196215 :0.2179273958290529 +the:0.1488507420787041 of:0.08011262974692511 and:0.06617732298897859 a:0.060425576027479035 to:0.043437639907100214 in:0.019707604429148828 Mr.:0.01901573551148048 The:0.016986198993927643 or:0.014034525412731216 an:0.013734377576867423 with:0.013374673918627816 for:0.01302634741241404 his:0.012737152242789138 that:0.012730227060379318 :0.010311271013629364 tho:0.009633451176105092 .:0.009550582221136118 their:0.009061153840535543 is:0.008794428429544686 :0.4172983600114962 +it:0.15590291243815246 there:0.0887784025092866 It:0.07904016205387611 which:0.06936908824431676 they:0.05362226352982171 that:0.04647101454662571 and:0.04420120519214072 he:0.027952982163116303 There:0.027623278151575524 mortgage:0.023443129896555264 you:0.018859539766003214 who:0.017891862574647276 this:0.014117846301193209 I:0.01363040583752058 sale:0.011818751696880098 This:0.010767348085132659 work:0.010306262168963347 as:0.009927627839447666 They:0.008978002990569422 :0.26629791401417535 +day:0.145323689173151 State:0.07652491925168792 city:0.0602376775948108 side:0.05704509791513555 County:0.04688736149245118 line:0.045848627477734334 county:0.025641369614914627 state:0.025455812505782445 part:0.024509315376482745 City:0.02440877518297231 corner:0.020655547364427256 number:0.013329635539936819 quarter:0.012757875184180277 north:0.012724739659617554 1st:0.01190936417550517 parts:0.011814432657486319 Fourth:0.011298962468266909 town:0.01109078667249967 east:0.010922941230328366 :0.35061306946262877 +and:0.24402441900619257 that:0.04235560741482968 but:0.04210372287032031 time:0.03648756268064868 the:0.015170630208961497 or:0.014604409493945156 ago,:0.012461133843978131 which,:0.011305260996215146 and,:0.010676252775050203 only:0.00997080450748182 as:0.009945921483147423 And:0.009585375642040926 But:0.00911449491465764 stating:0.008560594260335218 long:0.008252691531266964 than:0.008167902713013632 day:0.007962736889298015 it:0.007832456649349352 except:0.007758589165970859 :0.4826594329532968 +.:0.13005149921630196 Mrs.:0.1113150839025109 J.:0.09458231889675063 W.:0.059325555825117414 Mr.:0.05755407284320447 C.:0.04787407153815823 A.:0.0438657959896835 Geo.:0.02969939945272808 G.:0.02934719742166665 H.:0.028667613086291628 Dr.:0.026017508185649338 R.:0.024890486316124266 E.:0.024731849418845826 min.:0.024027606990254614 F.:0.02265826310384591 Rev.:0.019312747892591468 T.:0.01889224030074125 S.:0.017056179591713756 L.:0.01614550163868105 :0.17298500838913908 +and:0.09535234085997082 together:0.048396010825858926 connected:0.031238626947020197 do:0.030184690345427714 him:0.02590149637281477 but:0.02258338434861316 connection:0.02218620498037267 it:0.0205200104499614 them:0.020421544624440534 met:0.020393464758820725 charged:0.018272400115749585 up:0.016663483091687054 covered:0.016125775681850085 away:0.013689298613368648 compared:0.013530165543800732 acquainted:0.013517519442679914 was:0.012677267569976636 satisfied:0.012570863000783103 accordance:0.011880599611736152 :0.5328948528150672 +the:0.4561253967305757 of:0.11575480313234583 a:0.0681267448086972 and:0.0679031415336631 an:0.02918665042966812 tho:0.027374120161619837 The:0.0226058889014413 our:0.01908469551221819 any:0.018525484693085858 in:0.017658565762744705 this:0.017092261565051142 with:0.015919459481837442 their:0.01380002525670756 no:0.013354379861640736 said:0.010958201919643085 tbe:0.009790854320842259 or:0.009747342063527098 his:0.009081459116167872 its:0.007553058421159053 :0.04935746632736387 +be:0.257610422977169 was:0.11853582805835504 is:0.10443435479846656 been:0.1041299890742448 and:0.04661511067808471 are:0.033371235292532206 not:0.026047124804255146 have:0.025712710732264377 were:0.02471469392396909 he:0.020358263430575813 has:0.01990331341634447 being:0.018335814311461515 Is:0.018110529828898204 had:0.01790099969507018 bo:0.014209163533457794 I:0.012946897047629743 an:0.010895292016675181 it:0.008363148549737888 as:0.008106339594321423 :0.10869876823648682 +Mrs.:0.05682651123778714 of:0.04553995305027705 Mr.:0.045495035536560924 .:0.03844146614377586 and:0.03430358103808728 the:0.03262999328775954 Dr.:0.02837855200559431 :0.025842882543234722 Mrs:0.017475126368978338 Rev.:0.016356799909103114 A:0.01483898544254197 to:0.014266897472768034 said:0.014161301670160699 N.:0.013138619676140046 by:0.012504959657717614 A.:0.010128220329006619 S.:0.009630523078952532 that:0.009582822564280129 Mr:0.008540526542901243 :0.5509172424443728 +the:0.7081155823641543 The:0.05844461151895625 tho:0.038293875549514994 a:0.02638585924325555 tbe:0.016835306415984356 to:0.015537643153363416 and:0.011359779940237607 at:0.010620336040174943 of:0.009908148056968411 his:0.009880745015621894 their:0.008472051383299848 this:0.007877196759764487 no:0.006695427815125499 in:0.004626932936861147 great:0.004502928144558366 for:0.004432452987921519 good:0.004340427250621141 all:0.004121799626473113 or:0.003943730688285038 :0.04460516510885815 +the:0.2706012373403097 The:0.24140673068896593 a:0.08645978088088269 This:0.04182832397267038 that:0.03919924874858986 and:0.03678131686469591 this:0.028180854753554745 to:0.022149920628725075 A:0.021649005144279285 which:0.019130778461382232 said:0.01308560758599273 tho:0.011419658811771637 Tho:0.00991650137895845 what:0.008906647748215963 annual:0.008598218189548014 his:0.007292618722485895 of:0.006614707418499157 official:0.006445007801895931 minority:0.00644238846635853 :0.11289144639221788 +of:0.28571508084274183 in:0.09668204067210986 to:0.07874298396781138 and:0.07234703289229406 that:0.052575431781950926 with:0.04605064583598294 for:0.04589227695351991 by:0.039032478590087974 from:0.029520424708088227 is:0.02575291204529591 on:0.022845459154702957 In:0.022203170895305383 all:0.021718924061764327 was:0.014491053033084692 at:0.011537989298047186 upon:0.011127902091260477 as:0.010143577541686419 but:0.009984944120043462 into:0.009293333603003986 :0.0933423379112181 +of:0.09129790931378902 the:0.07369883040827747 and:0.047842263382354346 in:0.04189055351593407 to:0.04045875475680249 a:0.03542341257202578 be:0.02020462051672066 for:0.01979292654746225 was:0.01760256398103379 at:0.017380150555488715 is:0.014984483003968216 with:0.014047653760730413 by:0.01374644383819499 :0.012670486581795598 In:0.01200961464556976 or:0.011563835749786333 from:0.011391516893522809 are:0.011273104484969465 that:0.010755276030689069 :0.4809655994608848 +they:0.14929706182068497 who:0.0795015576258123 men:0.05612654373742729 we:0.05237851787131512 which:0.048218519352352135 and:0.04197587919402045 They:0.04021123339238327 there:0.023433457763933966 We:0.019670280191077198 I:0.018197291488187033 that:0.017910103899901417 it:0.012554994074992151 people:0.011729292337843788 you:0.010042931459060867 There:0.009665983595802084 he:0.00950179812846209 officers:0.00818518540101699 them:0.007620555104953728 others:0.0071298169961170055 :0.3756489965646561 +the:0.07311252157954314 and:0.06620654646927669 a:0.0627210898214672 of:0.0533818785492526 to:0.04629920455002066 at:0.024221523512907527 be:0.01912755054315459 was:0.01876966049366009 in:0.014794889704450247 be-:0.014443999608502085 his:0.014326430279917974 or:0.014266145317637337 is:0.013786550060620854 for:0.01362891530299302 as:0.013317846334691972 that:0.013101465713582134 :0.01309051238861186 their:0.012038123765906994 more:0.011932806870896295 :0.4864323391329068 +and:0.06538800739984293 able:0.05035490091772741 order:0.04387633848821471 is:0.0391221587135491 him:0.03592554274117478 enough:0.03281211348990041 was:0.030361232142998802 refused:0.02750208693965233 unable:0.02712935270683937 began:0.02663438773294997 time:0.02538873430133707 right:0.025072275675317335 willing:0.02321274537907327 them:0.022872536965906826 made:0.022387075890220754 ready:0.022300764054184817 not:0.02195292391479871 necessary:0.02167469815493662 you:0.019178214754282108 :0.4158539096370926 +the:0.1972922914779867 of:0.10707931134205359 and:0.07751345641690036 to:0.05965814400216777 a:0.03916990992603793 his:0.03332219732032006 their:0.03331774153636291 be:0.032850203570027194 in:0.031999481129964404 for:0.024419230255829164 was:0.015886632700938704 or:0.015687069681538747 with:0.014077907000147974 is:0.013616501400885488 tho:0.01238352879917961 at:0.012265965151178969 her:0.012068523214408489 by:0.011646939161358685 not:0.011571641806894432 :0.24317332410581885 +was:0.27162318651792655 been:0.1856446824531415 be:0.1275154176064013 were:0.10171522718758971 being:0.041488378704797955 is:0.0383340285802057 and:0.03815351648945151 are:0.03523769786296903 had:0.024478335634656737 has:0.015094617697431378 have:0.011157108459325427 he:0.011151486534648486 bo:0.010193745912417703 when:0.009377557054553091 or:0.00806327084866892 now:0.00708962449262908 not:0.00691187396540848 kept:0.005786650272381388 who:0.005712978938869413 :0.044270614786526614 +of:0.251428500918128 and:0.13954397272121283 nearly:0.1248280382568724 in:0.08105969235607675 to:0.05562615747437959 that:0.04799701112612422 for:0.03404479467420838 over:0.019371297404009447 as:0.014610327919421759 about:0.013982949040367868 on:0.013274753143317431 at:0.013010158276020195 by:0.012587908390194531 with:0.012416916415523475 Nearly:0.012240898107337002 In:0.012144577677676377 from:0.011778048401039952 almost:0.01014154851301233 which:0.01004747158581455 :0.1088649775992629 +and:0.0527067395392058 I:0.024719035866011048 :0.024510302708410987 the:0.023076708252142374 which:0.021376869691312167 1:0.017242845829349495 that:0.014304625337478448 they:0.013448914931545637 he:0.012552410449730962 it:0.010321393132429173 who:0.009750361469169085 of:0.007545203173015399 to:0.006143462131028697 It:0.005630889700414002 as:0.0052378853306898595 we:0.005036182919714866 :0.004614480454020842 a:0.004349657888411206 be:0.004150923985247669 :0.7322811072106723 +and:0.1758453384942267 that:0.04397093570643158 was:0.024587711461217368 or:0.022429806809023924 it:0.02086228471790104 is:0.0193167817404393 but:0.01805607587337638 them:0.016287321457905412 as:0.01549248170110538 be:0.015473585915644239 are:0.015055765486879551 him:0.014925781460977365 been:0.01459671414960911 were:0.013305009600310023 made:0.013016154264144604 interest:0.012543296555694089 not:0.01246832529905463 found:0.010780444775327563 up:0.010628947600926674 :0.5093572369298051 +as:0.08317524925545634 and:0.042957177617378384 up:0.04102919618661189 it:0.032998469542027786 came:0.02947390933876662 come:0.028220086783100902 back:0.02768792844049644 given:0.026248252151356975 returned:0.024525858637655665 sent:0.0220260008614625 regard:0.01960452543399453 is:0.01938877864321753 went:0.019194177936303715 according:0.01715638113939608 go:0.016872748043819847 them:0.01671428776923486 made:0.01638220914952409 was:0.015062001344916347 brought:0.015032784249052036 :0.48524997747622745 +the:0.17205958528230664 in:0.05788262736673464 inter-:0.03565596527454178 of:0.033490986099742166 to:0.027849082046073496 a:0.022262475629984166 their:0.022161839765028703 and:0.021472155503958704 his:0.018566312527178525 ma-:0.016722170876154952 treas-:0.01164422478939638 this:0.009998619261509474 our:0.009364312924259146 In:0.009142471272114705 inter­:0.00901678414197448 tho:0.008706457261978572 con-:0.0082384599551753 :0.00707640033945267 ac-:0.006900896086736299 :0.4907881735956992 +of:0.36085157601372203 in:0.17549450769142752 and:0.08360074877062616 In:0.062377325037081946 that:0.03625492110792641 the:0.03371109429913295 South:0.024171571886682345 when:0.017599169154972345 to:0.016139297611646418 Mr.:0.015402339241275492 for:0.015363315989676985 from:0.014572883270300414 The:0.012067577296178219 or:0.010702522404220585 which:0.009345978190580402 North:0.009297976880707132 if:0.008984530198076655 but:0.007372627292568477 where:0.0070793414112932385 :0.07861069625190428 +the:0.08420913210031296 and:0.07107068750542198 of:0.06822389165938944 to:0.0599489087081745 a:0.05257718780079019 in:0.03141473158662753 at:0.021975814255332612 or:0.017694597911752274 that:0.013162839445448531 .:0.013061368692281139 was:0.012987245792900807 :0.012773694497432157 is:0.012394992910484803 two:0.011275167442196135 for:0.011036798656478955 one:0.010008200950919357 Mr.:0.008795227227627026 I:0.008735566598605277 In:0.008322108371681566 :0.4693318378861428 +is:0.12846633342670088 and:0.10144199699113192 have:0.09347990895388517 had:0.07953273433946513 that:0.077325210332279 was:0.07115154782971392 has:0.06222211327995976 be:0.056676475692701005 will:0.03134257269092994 with:0.028827771292403444 made:0.02778712495647604 but:0.02219785475665593 of:0.02126464325659244 make:0.02050686377443583 to:0.019312428975841848 are:0.015688168496493383 Is:0.014978809722257885 would:0.014203577195076728 which:0.014185743059774245 :0.09840812097722548 +the:0.3311446391781469 The:0.07550299727058825 and:0.051207283183249776 these:0.04727566373798656 of:0.04656221781893427 American:0.034985569955402515 our:0.031216647294021956 their:0.031130322675059607 that:0.026651111539845455 other:0.023084360395892213 his:0.02231860157770434 tho:0.020548276723729088 These:0.019590193816259018 all:0.01510589809397146 colored:0.01132739140272696 white:0.009972553164685743 this:0.009937250293157871 which:0.009923795308807225 those:0.009736456615473564 :0.17177876995435723 +in:0.21361866819538164 of:0.10015439075163463 to:0.09174658439678078 on:0.05652562204267865 by:0.054930212699003556 from:0.053800904758746104 with:0.05373167810334797 upon:0.046095939790645926 In:0.04150275646746811 for:0.03527557867873188 at:0.02737751360816521 through:0.020451686420470176 and:0.019877920035511497 under:0.013975199609340678 after:0.010310748620116106 into:0.007773820479550836 during:0.00617879543604524 over:0.00592093902393609 that:0.005432617107744836 :0.1343184237747001 +hundred:0.02334136986593815 up:0.005482494641173394 men:0.005366536521246011 Hundred:0.0047587970519216575 John:0.00441808156134956 William:0.004390720675819281 him:0.004016828614280843 ;:0.003997112205305733 due:0.003721199871732 in:0.0036582900032443304 time:0.003637206863828461 James:0.0035594902370151707 out:0.0034878448964120057 .:0.003467980723571515 1:0.0032804584819785204 day:0.0032444781513863933 ,:0.003058139385740603 :0.0030314555521939613 Robert:0.003005471634785646 :0.9060760430610768 +of:0.16011036641488796 to:0.10446354416928756 and:0.066081269122433 for:0.05190398557109535 the:0.04971579317371988 by:0.03361920126087303 in:0.03331978899478453 that:0.023271668743449686 from:0.02041970750118809 with:0.016901524587825126 Mr.:0.016083113640012515 a:0.015924033639625364 more:0.01485895124226062 his:0.010015283563715222 under:0.009031687258208649 year:0.008478895445446681 against:0.00657702683713358 less:0.006088844401423307 other:0.005570460009019149 :0.34656485442361074 +of:0.11358619922057615 in:0.057400766265059064 with:0.03779400798270108 at:0.0367713803485193 and:0.03594105551496045 or:0.03502732327788202 by:0.0325690659057436 a:0.031470274391380094 for:0.030713352923859176 said:0.022360894261303742 the:0.021089477088460665 as:0.019440208632671454 that:0.01917926913190744 to:0.017685097172558888 acres,:0.017568855477950018 from:0.01737706654816548 all:0.016857399246725843 about:0.014668188201697768 such:0.014003404803240537 :0.40749671360463724 +is:0.13715703876900262 was:0.1239613127953968 are:0.11503187411311065 and:0.09921495698181951 be:0.09725658005998292 were:0.053934502513910305 been:0.038240265606738134 Is:0.02543226047317749 of:0.024440968807024465 a:0.022520095802467423 the:0.018203076502499874 with:0.017378894502976003 being:0.011408240080092674 it:0.011274913485074957 but:0.01111044694488309 an:0.00907478660791494 in:0.00898582181984875 that:0.008419698844702096 bo:0.008173179692551257 :0.15778108559682605 +virtue:0.062060494787377685 out:0.05417899169104244 part:0.03289673107629515 one:0.02969369892462812 quarter:0.027015883171169475 favor:0.01993830018372674 result:0.019463829004704194 guilty:0.018891084377354095 means:0.018499162894926688 end:0.018170939082736048 that:0.018121271122199262 construction:0.01726217741616459 presence:0.017003995482744873 tion:0.01673652166540914 case:0.01640819963257697 side:0.016055927605250184 erection:0.015381239457214257 account:0.015287601389485416 hands:0.015156055434805247 :0.5507778956001894 +the:0.45038497634186686 The:0.1512518672434777 of:0.08801319861340877 no:0.039778346352485845 and:0.030759907576631322 a:0.023293700495147292 tho:0.023280919802292337 in:0.018463923680139105 that:0.017863254754722304 this:0.01753760448681816 any:0.01660768169493639 such:0.015758944931855815 great:0.013917960456886237 for:0.013058336728765843 to:0.012759481002201572 his:0.010695728735586585 or:0.00906499729552574 by:0.008763778348986902 its:0.008750136154435189 :0.028995255303829987 +a:0.5690361263678345 the:0.1686755813391258 per:0.04059332644825786 every:0.03917309970935498 one:0.021589140679350173 this:0.01591833691629235 The:0.01584343547138941 A:0.01345392159552372 last:0.011042664388938956 tho:0.010278787988525344 first:0.00989128888338242 and:0.008176598758792262 two:0.006847335027481402 half:0.005763568292188404 some:0.0057014747273827025 each:0.005600548030907523 another:0.004989705653806954 recent:0.0048204380934523516 tbe:0.0043469530146875894 :0.03725766861332526 +the:0.30315998487402646 of:0.08063171464723946 and:0.07379541922030214 in:0.04505236577749609 a:0.04394931115438186 to:0.03023479215455872 for:0.02311731138151785 by:0.021757572532788 tho:0.017651585960901967 his:0.01158470226418858 The:0.011362830836672083 or:0.011188695799649763 with:0.011085740979061178 In:0.010899223219976347 from:0.009113885882411715 our:0.008507916304966215 on:0.008351121204113606 tbe:0.007834917003342247 her:0.007486241276548197 :0.2622346675258575 +of:0.28767355066866834 to:0.08775711267569858 in:0.08678131196995101 and:0.05160598694501188 on:0.04646139928102899 by:0.04519522654900943 for:0.044547789071328545 with:0.03396756772609607 that:0.033699232901107726 from:0.03075346596941143 at:0.027039283056790858 In:0.021061449543044047 as:0.017514234937992545 all:0.012543839382496166 upon:0.011844431150487573 is:0.00998972746569266 was:0.008814315973987914 into:0.008557199930727406 through:0.007781895704231326 :0.1254109790972375 +of:0.26969667799939395 to:0.1126330533155499 and:0.06864845038321882 for:0.06802301493693716 in:0.05384617518373482 with:0.04489748626197984 that:0.04042400578632438 on:0.03724203806807622 by:0.03329207043003079 at:0.022921892542037792 or:0.02020038747583731 upon:0.017460515811787064 from:0.01576237532151634 as:0.011142120172358359 all:0.010533529845950476 make:0.010504652003889572 up:0.008287336745808586 do:0.008223483053989743 over:0.00795562257959113 :0.13730511208198776 +the:0.12954522819384148 of:0.10104093608604095 and:0.08328930787087935 in:0.06522837417804922 to:0.04115868142003785 for:0.0385289602711611 a:0.03593228019122017 that:0.02631307473356233 or:0.02608487912855309 In:0.021736687209981814 con-:0.01601821309817524 by:0.014968940062905505 be:0.014629646152668105 The:0.014055300877225115 any:0.013277477849090634 which:0.01299180945639195 with:0.011887365782337246 said:0.011736552955933493 from:0.011266830374400356 :0.309309454107545 +said:0.3817084926972458 the:0.13196081158278533 Supreme:0.0725245192491051 of:0.0468765093901738 Circuit:0.03399949324580252 Probate:0.033619680675058716 County:0.032452838494260006 District:0.03071074565468405 this:0.01899046035584395 and:0.01814918317071584 Superior:0.016186567086213806 preme:0.007417942824237901 a:0.006918234567151743 The:0.006763586137404213 State:0.005951519665775712 States:0.005639368268834931 Lake:0.00544253188927006 Police:0.005280158481196089 Hustings:0.005250657427601982 :0.13315669913663844 +and:0.08995317707915026 to:0.06844710404109794 of:0.04605142056172993 the:0.04074574508561307 which:0.02479116931334353 that:0.023764822140213245 re-:0.020841117231308055 in:0.020803825395358622 for:0.020278423301550053 :0.018417753428486977 not:0.016860793136637672 con-:0.016444405871234195 is:0.014386481772210856 or:0.014080680914153714 be-:0.01352268143271276 I:0.01317002660943805 was:0.011429878269381662 dis-:0.011196807025842847 he:0.01113106290024311 :0.5026826244902934 +will:0.11454044630988251 be:0.1082297282004714 and:0.08483612430771527 was:0.06939517125490845 can:0.06371765269391454 not:0.048735610334940775 could:0.045859916419257116 I:0.04137480737646626 we:0.039004129716435965 is:0.036502254182435814 are:0.03341580426049786 had:0.03210192465032387 so:0.03205780245607012 they:0.03184085916797906 have:0.031462310953069214 were:0.02828713369090262 been:0.02810884544608676 would:0.027496203141572223 may:0.024026095341140905 :0.07800718009592929 +person:0.03397085885424711 one:0.022922756226066928 man:0.017471630546286022 and:0.013120472993856984 action:0.009407516207139883 in:0.009253653481182221 druggists,:0.008208316253572314 city:0.008017685594326779 them,:0.007932979167050597 for:0.00790935713358076 States,:0.00741852746024544 ;:0.007032803098691554 more:0.006806410525861756 little:0.006484171908436789 law:0.006437720135984726 two:0.006394680051239983 men:0.006294392551987659 year:0.0060962995005200355 money:0.006034349771453609 :0.8017854185382688 +of:0.11488555317490587 in:0.08719162227769693 as:0.07129685610420425 is:0.060466294736017015 for:0.057616474558796 to:0.05524182212307084 and:0.0518349921404553 with:0.048896283516363916 was:0.04492229451445782 by:0.04055300984011969 such:0.03871200869960434 that:0.026010495500894446 make:0.025724180085221735 on:0.02495775769145548 In:0.02297801975375487 be:0.022271390087485236 at:0.019434392688578984 made:0.018626242384327956 upon:0.01564221675427961 :0.1517380933683097 +of:0.12649912670574465 and:0.10747477922426114 Mr.:0.05103048844189261 Mrs.:0.04601693327375137 to:0.04420229523596074 by:0.04160877195393157 that:0.025668717607642385 said:0.01765222611016786 with:0.016587976426947662 Sir:0.016576358487113765 from:0.014451851718709212 as:0.013770550923670662 :0.010585801940093054 Dr.:0.009207421037517887 St.:0.008510395949023104 for:0.008377263250793411 Rev.:0.007673289406015024 the:0.006218278874173225 or:0.005812720877300361 :0.4210747525552903 +the:0.13855038754961027 of:0.07617586674805975 to:0.05855615099745327 and:0.054556292163643584 be:0.031946424562382086 a:0.02702893326963555 in:0.023333451873780157 his:0.018825649312559978 at:0.018785788690639363 was:0.01776471103924473 for:0.017761600870720897 their:0.01690757272942293 is:0.014899232144238647 that:0.014620288973323703 or:0.012774177411289443 been:0.011043626985690808 it:0.010680917706261835 are:0.010625244044093414 were:0.010124357711432058 :0.41403932521651754 +;:0.015483592239273933 in:0.015335789308222303 him:0.013778617116296358 it,:0.010719526780200758 it:0.009380630827821793 him,:0.008756230788335333 and:0.008648590594508128 up:0.008437119186098479 out:0.007963854082763271 men:0.0076104722667490144 them:0.0067376300228918305 them,:0.00666771242713066 man:0.006591119464642982 her:0.006465361067216816 me:0.006342783254526732 you:0.005567779007263216 made:0.005439310185329745 to:0.004859084765599612 down:0.004774219330101026 :0.8394405772850281 +to:0.6255043640520441 will:0.1051433054118167 would:0.0326389555666196 must:0.026193487660554154 and:0.026011890018146563 can:0.021996431016248954 not:0.021957468095793284 should:0.017299913881105917 I:0.016298460738235626 may:0.015616498185164448 shall:0.014816843180122807 could:0.01210547505473381 we:0.007598099002002431 who:0.005482296154019093 you:0.00537221304468218 they:0.005298006148089916 might:0.004565367687708265 cannot:0.003465018540804334 We:0.0027839818393083373 :0.028851924722799377 +and:0.047860331779858004 to:0.01462248035321226 et:0.012575305814235995 :0.010249898457547452 .:0.010178865927901836 is:0.008652076025849017 of:0.00835100389691737 at:0.007824912814893968 or:0.007575252815140076 a:0.006609837387407859 was:0.006331585341688879 be:0.005989323973809095 on:0.005779520071205373 in:0.005450814448050127 that:0.005399503800018853 -:0.005298730172970637 person-:0.00497438645874304 not:0.004292649291435799 for:0.004103960944858076 :0.8168795602242563 +the:0.5867578756745382 said:0.07172167680230825 of:0.046161650914515504 tho:0.022761415640097007 and:0.014800518733844137 The:0.011524680647764135 in:0.010712760006584431 Monroe:0.010481583654314371 tbe:0.00936971265268293 a:0.006898710501398451 or:0.00645119168726298 this:0.006113504152499845 that:0.005987684166417029 our:0.0049214707979564655 State:0.0044848076007911256 for:0.004314441549514348 on:0.0036316377918620066 Stevens:0.0034183250043227542 their:0.0031428145323116868 :0.1653435374890144 +to:0.1923203215899875 will:0.1878749183296922 may:0.10402310525240986 should:0.08114144939149921 can:0.07282536963117382 shall:0.07124202478149032 would:0.0489079247852564 must:0.04286334549291048 could:0.04263942014873325 not:0.029045981981003773 might:0.02129702611566428 cannot:0.017170274688828594 it:0.00714329416798675 and:0.0070811070356481 that:0.00428033950306257 also:0.003940436471429013 never:0.0037745064861029612 default:0.003693689217901488 which:0.003486322200471841 :0.05424914272874763 +and:0.11410302342303076 was:0.08811381106147947 had:0.0787105836138074 have:0.06960362741864205 be:0.06499512467263635 is:0.03566768038226371 has:0.03368272912244452 I:0.03225832813537529 were:0.03140482387536663 been:0.030936968588985037 he:0.030268477420559527 not:0.028306606575914682 are:0.02575478872854045 if:0.018644198670020488 ever:0.015699839546035984 or:0.015179391561316743 the:0.012920624588101547 then:0.01254726602888623 having:0.012003168751779692 :0.24819893783481345 +up:0.020166549586995923 time:0.015871992365516615 it:0.012985577682047349 him:0.012377507906933642 them:0.011999873621185361 out:0.01190556349645791 made:0.01017884467149109 it,:0.009939703940673275 work:0.009730140976834218 will:0.009423686396771044 in:0.008974052016090835 can:0.008755802953215147 men:0.00781608079809393 try:0.007807974440791721 them,:0.007520171410255046 law:0.007344811385659611 appear:0.007061233815515874 him,:0.006967170263334273 together:0.006105663563233269 :0.8060675987089039 +No.:0.11941200937260384 and:0.0638229148426898 at:0.04306119061917679 to:0.029912695887519256 lots:0.02845169103966552 No:0.022825477572814716 post:0.022025637107507476 3,:0.021598678946132308 of:0.02029079831981078 March:0.018275700062428988 July:0.015956618733387072 lot:0.015099440027724611 Miss:0.015044317540782616 June:0.014748859460211296 Range:0.013546679109905205 @:0.013256756536461394 range:0.012279051078830205 south:0.011633288430820836 :0.010921352438923318 :0.4868368428726039 +the:0.09684081064840576 and:0.06551335624548284 of:0.05146145169206151 from:0.049520598669154245 a:0.045427902131977435 to:0.0370403239153822 be:0.035669151526387034 was:0.030489628475080553 is:0.026635804908522978 in:0.023878514238638158 are:0.018513936943033917 not:0.017945708099223703 or:0.017556265685966497 been:0.014265228721347686 at:0.013857211504087178 he:0.013733215789660087 were:0.012396679125422956 I:0.012347944480187516 for:0.012197989992860347 :0.4037082772071174 +Silver:0.07248124874913937 Hill:0.06974545007587547 Eureka:0.05398193748564401 Lode:0.041161003786934464 and:0.03177322539510446 the:0.031016116102261303 City:0.0194950214845369 Consolidated:0.018978460972326444 County:0.018936050333821508 Gold:0.01766588388546352 Pine:0.017015166917563187 of:0.01445469695340513 Harris:0.011076674087738906 :0.010491539447938191 Copper:0.009894362381174155 a:0.008509756419533504 .:0.0060282242458434675 State:0.005029670368574265 A:0.004466916067148989 :0.5367985948399727 +of:0.3084999244718759 that:0.10178820980623995 in:0.09450935201179717 to:0.08540958873209707 by:0.0726181380541398 and:0.05665125919744753 for:0.03584181205399861 with:0.028889097437062757 from:0.02126046103598227 In:0.01944715300657878 all:0.017352722136190275 on:0.01688786845440471 as:0.01634655785838449 upon:0.01151878770687539 which:0.010505456698463882 into:0.009020306848589994 but:0.007734547425260396 at:0.0075797034667384865 when:0.007294101507533199 :0.06984495209033927 +the:0.3510935588291743 a:0.1490899077638592 no:0.06862805737014901 any:0.06062392817155054 of:0.04798815051148737 every:0.039009293970389596 this:0.027529771372259888 their:0.024376115208013905 good:0.02093435093343887 tho:0.016637276757000455 our:0.015330345271157288 his:0.01425673100012925 and:0.013580904533967804 its:0.012286624519571177 such:0.012162262221072577 as:0.011996633593238559 that:0.011827539619535345 some:0.011195857407520358 The:0.01086380085006423 :0.07958889009642028 +made:0.0938799819228413 taken:0.05967255160288132 it:0.05718454115453433 put:0.05301003041668412 set:0.04367244611925889 make:0.04168187273541547 kept:0.03642352688849192 came:0.03611087403748962 get:0.035919778516706004 fitted:0.029995395756394646 come:0.029679918336723368 got:0.02652749018743069 held:0.02638577805953004 and:0.025815882531542777 looked:0.02388172809624133 picked:0.02347962798411993 them:0.023133429500271457 went:0.02304963913629435 be:0.02055471340925091 :0.28894079360789754 +the:0.5607753016434703 of:0.04121528437483031 The:0.029606902447271443 tho:0.023658577576071066 and:0.014895276815712125 a:0.014441496775091909 this:0.013293984777307326 said:0.013206908303166115 tbe:0.012847879845697976 our:0.008124098029573512 American:0.006894776098662298 York:0.005363865745135465 to:0.004721809292460334 that:0.004412095141203677 North:0.00400662340758015 for:0.0035278446053070636 an:0.003517021231925854 :0.003434981130551471 or:0.0033020741500754116 :0.22775319860890622 +it:0.24948756596542823 It:0.2101337505644298 he:0.05599846853556781 there:0.054474641161802735 which:0.04752115355738477 that:0.03846391677091141 this:0.027671526973750023 This:0.026879761317076502 and:0.026739708026211565 There:0.026416968586272432 who:0.021918431371741844 He:0.02123885683527484 she:0.01222769270167147 but:0.007372061284882893 what:0.007198874018312155 as:0.006113098930460396 country:0.005552414892164186 work:0.005317476169416592 She:0.005316457186304882 :0.1429571751509355 +on:0.36246365133327335 On:0.10365325707484586 the:0.039064148689118804 of:0.03657125808600197 last:0.01943496594613972 and:0.0187620014930496 to:0.016304254215992263 from:0.007974975932174163 in:0.007928603184341926 made:0.0074732178009950575 as:0.007199038008151757 day:0.007146098111501475 :0.006893247305638541 o'clock:0.006752861677642408 at:0.006528715459081113 until:0.006273498184978701 ou:0.0062581710386223925 dated:0.006199830321215585 for:0.005993731414782737 :0.32012447472245253 +;:0.017133133096078276 it,:0.0145417343101323 in:0.014194265949948007 up:0.01382302776590254 them,:0.013795301019562837 him,:0.013580284362727563 him:0.013345422095364932 them:0.010282816254810655 it:0.009603478260343232 here:0.008926562510645952 time:0.008914996733883986 out:0.007657480405185466 time,:0.007230233557031522 up,:0.006865505818829017 and:0.006526108219093274 made:0.006141388563243173 men:0.006010261138239291 years,:0.005934741911328966 to:0.0059138089427478585 :0.8085794490849012 +sum:0.03352282876311118 number:0.028116684882597106 line:0.019995206059833036 city:0.01946514558931857 out:0.019275318828420953 day:0.01666865340772654 county:0.014872697538657208 amount:0.013254184849875051 Board:0.01252325449624941 town:0.012449555905674143 side:0.011663975251122375 part:0.011517157473718155 County:0.011460540331966697 state:0.011087331502382173 City:0.010878919191854432 purpose:0.01081028255427907 and:0.010297866493795984 way:0.009848747943663767 name:0.009522170936943183 :0.711769477998811 +to:0.21975225741775314 with:0.12110402284463341 of:0.09967243243725478 by:0.06936638257850143 for:0.056704004000520676 upon:0.03935266118426694 before:0.035296287100463744 from:0.027703320665223533 against:0.02163150374168569 on:0.018671728202976613 told:0.015769498219032736 and:0.013594951102490505 at:0.011072775732986364 tell:0.00933941254069854 in:0.009117351359395962 that:0.008879877222166188 around:0.008611266554223314 know:0.008113571668766698 knew:0.007796262063786557 :0.19745043336317317 +the:0.4071374189315913 and:0.06449181461132415 of:0.02892866618288876 in:0.028670005984162618 The:0.02603617389223924 tho:0.024993820467459137 a:0.023579040051412606 to:0.01755553213771617 on:0.014626070241060114 by:0.013447843485786471 or:0.012794166593089693 tbe:0.012024509152999897 :0.010353482361299817 that:0.009291482237329618 In:0.007938246807075932 from:0.007526799010378873 other:0.007469196869028889 all:0.006409533041696086 for:0.00626887758057738 :0.26945732036088327 +of:0.24895001972699826 to:0.10029419961807648 in:0.0881642301259816 for:0.07264992649328747 that:0.05374232728060894 and:0.051978637723038866 with:0.043226952955148154 on:0.041243995776459756 from:0.03898838784236709 by:0.035765611669717715 all:0.027632651721430136 upon:0.021345883212200063 In:0.019058042860702597 into:0.014311592174056281 is:0.013588888562063264 under:0.013097468372773206 at:0.010332194141999 or:0.009723667333661803 through:0.009060414806100982 :0.08584490760332832 +the:0.1564778618896357 of:0.08598442006903481 and:0.06737759100831929 a:0.043498759569023875 to:0.03446916394374604 in:0.025038094813388274 be:0.019299367728634383 for:0.017739553206371585 or:0.015724483899859237 this:0.015224717826128427 is:0.014547980322866718 his:0.014516863391444878 The:0.013714587461531366 was:0.013158776600371505 their:0.012762683846980939 that:0.012165804893032263 at:0.011983381062642849 as:0.010691611127911869 tho:0.010631421789247227 :0.40399287554982877 +the:0.4420337331270083 a:0.06738175807342078 in:0.060306795387908056 of:0.05491827630477637 and:0.041261824131767655 an:0.038651154283319326 this:0.03545766556456542 their:0.030312811197238405 our:0.02644519365413856 tho:0.02597798607133639 his:0.019144630041264116 its:0.01531769340687812 The:0.013428788116168598 In:0.01067474090719982 for:0.010660632295109503 that:0.010649830012754538 to:0.010042061596007928 or:0.007735747700372908 any:0.0076776847990756856 :0.0709209933296895 +of:0.28767355066866834 to:0.08775711267569858 in:0.08678131196995101 and:0.05160598694501188 on:0.04646139928102899 by:0.04519522654900943 for:0.044547789071328545 with:0.03396756772609607 that:0.033699232901107726 from:0.03075346596941143 at:0.027039283056790858 In:0.021061449543044047 as:0.017514234937992545 all:0.012543839382496166 upon:0.011844431150487573 is:0.00998972746569266 was:0.008814315973987914 into:0.008557199930727406 through:0.007781895704231326 :0.1254109790972375 +and:0.043015776808721616 :0.04028952622357906 him:0.029849066119168963 was:0.02681302709661934 out:0.014119963913348797 is:0.013074138148868823 be:0.012766846983914327 it:0.011772514041273297 made:0.011223532608227454 up:0.010963937419784348 man:0.010937823438994515 them:0.010623785233086304 found:0.009069041086430609 put:0.008043119849930488 day:0.007916602851218564 that:0.007895868193531492 been:0.0075237704681003536 placed:0.007502762542176327 time:0.0071425151592323455 :0.708456381813793 +the:0.22814137206950258 that:0.07172216962715112 The:0.06754717717911445 a:0.06372167415808153 and:0.05636721667792121 of:0.04380132250314505 our:0.036241882282877266 his:0.03578811733548573 this:0.034523795334539066 such:0.03131991448979886 their:0.020831153282845415 your:0.01951209440376478 whose:0.018869743342540487 tho:0.01776631041952281 or:0.017443450385270808 no:0.016257819615978983 these:0.015090797866826895 A:0.014193028602993638 I:0.013926882959247192 :0.17593407746339215 +be:0.1885017223687616 been:0.09437484382158873 is:0.0818805600613504 was:0.07207321515972959 are:0.06169767288561115 and:0.0551962343592703 no:0.04141746633607937 not:0.0387601699838339 much:0.038270343999924836 were:0.03386657314049347 an:0.03324978143223543 very:0.03160370164641014 more:0.017661113702451017 being:0.016774048917354997 the:0.015845089248966434 well:0.014254715540152813 now:0.013417451203691595 a:0.013082737101702446 or:0.012230600576611123 :0.12484195851378065 +and:0.046670537928149625 that:0.04419004769000284 it.:0.03519632521275246 :0.024369372360363437 them.:0.023134585636215173 you.:0.01267336420349951 but:0.012091095163723283 ?:0.01203126037825702 us.:0.011555259402311955 him.:0.01069029739509169 time.:0.007624758526846202 I:0.0070085546358416755 country.:0.006802697308404924 not.:0.006288650222165467 But:0.005884016512518416 day.:0.005447002147273028 even:0.005409292820943398 people.:0.005162262531201675 tion.:0.004946746239655641 :0.7118238736847826 +of:0.19158479951222834 to:0.09830110733982621 with:0.0941849183831206 in:0.08096162596113099 and:0.06636900947345084 by:0.06486690321568524 that:0.052638080063315634 on:0.04709125778545194 for:0.032034995081504834 upon:0.02846996190385233 from:0.025191885111525033 In:0.015459585193194781 as:0.009771137784322235 gave:0.009202719837591558 or:0.009048351220361826 make:0.008899304456752745 give:0.008891750079504383 made:0.008859196130618264 but:0.006808866543753792 :0.1403645449228084 +and:0.11866798457969785 was:0.08430390519064332 not:0.06481164632763764 is:0.06475439367626498 been:0.049019467686866935 be:0.040642362974308024 for:0.036722182421337846 are:0.03621761034256293 or:0.031375509422453554 that:0.030739301624109157 have:0.03071849837784999 of:0.03008866485298446 had:0.02567717127730775 were:0.02403083848214998 has:0.020295826201324845 to:0.01525259650895817 done:0.01492012626891045 in:0.014452041410738687 but:0.013728683089494893 :0.2525811892843985 +the:0.15543131418041217 took:0.15227437235328187 a:0.10284069412382596 take:0.09214510266752597 to:0.05266173679318996 taken:0.03863130833731034 first:0.035425299969911415 this:0.03029292733285265 no:0.029262201206948443 and:0.028725544142267134 his:0.028464079289331 any:0.0281311845757307 takes:0.022151837970767273 resting:0.022106543009806485 taking:0.01584080061421588 their:0.015290121854108739 one:0.015205413967662248 that:0.014643066639443366 in:0.013661836033770552 :0.10581461493763784 +the:0.28451338853324043 this:0.1080322896587166 The:0.08728976556626387 This:0.051742789921544886 that:0.04605046358942705 a:0.04069707130823544 wheat:0.03032853358114146 new:0.026243893885642383 corn:0.025801095606069482 cotton:0.021508774787007166 and:0.0200680394757518 of:0.01757794517091504 tho:0.01690654776527726 any:0.016664142967933435 potato:0.015102047478905825 every:0.014397180743335089 an:0.012652358648562675 which:0.012176233040247116 one:0.012064841871964108 :0.13918259639981892 +and:0.13426004772949915 the:0.07594512678117137 of:0.054748657596466646 to:0.051067270637339957 for:0.04646006479783835 that:0.030896893102631252 which:0.029652055829550328 in:0.02409149675206144 I:0.020156653433024044 a:0.019161969043097166 will:0.018627286387655068 as:0.018246070016112566 or:0.014735059803402664 they:0.012536800638172032 have:0.01252992041416906 he:0.01181320461245853 would:0.011672287232522092 can:0.01118443277357371 but:0.011029846484514556 :0.39018485593474 +as:0.22145508278864734 so:0.10796145442906695 and:0.10585446434192448 of:0.06505026426045955 in:0.060358602520053865 a:0.05651004756220551 is:0.05221137104059336 was:0.036781372483279354 very:0.03527794192230214 to:0.030683446663477484 are:0.026701876102208304 with:0.022516961900122666 be:0.01958247532549987 the:0.01867763132182619 such:0.0145006467172076 most:0.01207954626749704 not:0.010978280050345767 more:0.010882390751869753 In:0.009702923468005128 :0.08123322008340761 +the:0.3284268129447361 of:0.11977873638279428 in:0.04309321014767619 their:0.036556402806351605 to:0.03574561249139185 and:0.034419473011791164 this:0.03179317008228622 with:0.030707009508240922 an:0.027400291522753466 for:0.02622681549883637 his:0.025418035233793598 a:0.02258077575612713 its:0.022340885674381493 our:0.015290596113306132 any:0.014458757845205835 great:0.014220032342299176 tho:0.013618247741457137 no:0.011744222442237669 public:0.009743906956846881 :0.1354370054974868 +the:0.11919516938815296 of:0.07230453158552728 and:0.05781056740443249 a:0.043018564803886335 to:0.031305092790907506 in:0.020848713353460488 at:0.014270110001066288 .:0.012526810245749479 :0.012413283442322082 for:0.011719122709941797 by:0.010808400946589808 or:0.010404172990115616 The:0.01003576004804544 with:0.009811868184449042 tho:0.009295902015355835 was:0.008924239095331684 that:0.008672304223433876 is:0.0085591147338948 be:0.008335143826716943 :0.5187411282106204 +and:0.09918929642619147 be:0.046888679173986834 was:0.04263141289875291 it:0.03492781605591878 is:0.02040170772832986 he:0.01878790731388844 not:0.015302754670681899 been:0.014257493989210434 them:0.013184429155896333 were:0.012369494288827563 work:0.011475035450869519 one:0.011165714261620193 men:0.01113007697717075 I:0.01087014482879256 are:0.01080042466263155 matter:0.01078269852471429 him:0.010215675201641645 well:0.01007201518622302 himself:0.009183930060235318 :0.5853632931444167 +the:0.12158723090280438 to:0.08139746937217707 and:0.06782532357140508 his:0.060789543530991016 of:0.05760847398130979 their:0.04303634647284015 as:0.042625158543020666 her:0.038718788730058934 in:0.03775887995694716 my:0.0316011753389334 this:0.03106246111333206 that:0.025283493669371358 on:0.024519085651809894 further:0.022771420790521767 a:0.02225694167213941 human:0.01980259164430525 or:0.019384486940965742 your:0.018766608922432877 its:0.015090263540851969 :0.217114255653782 +number:0.16444967472387417 thousands:0.059154059444795216 hundreds:0.04839352774244728 sum:0.0422893516111362 rate:0.03560987433290626 millions:0.03222927909131628 couple:0.02443231301572951 bushels:0.024063118269359883 amount:0.02384804238142126 pounds:0.02380660195906405 cost:0.018605772609220934 line:0.01787649526211745 out:0.017701055589302534 price:0.013335985379985565 Board:0.012270146060667326 place:0.011825787201783967 and:0.011703030380187232 class:0.011102440361779566 quarter:0.010778982568481343 :0.395524462014424 +the:0.3066251757297923 The:0.13324789718323776 this:0.10348299864110491 that:0.05595177513084561 This:0.042807211874823885 an:0.04182208461267238 An:0.03419390288065088 to:0.03235800873984545 and:0.029688919379960172 said:0.026668118247092584 tho:0.016145650805511336 which:0.012311873951459967 a:0.012186390068143574 No:0.007867594279654541 his:0.007785622987085698 I:0.007617857790693076 one:0.006828965571666322 "An:0.0066679021000589055 of:0.006412248382331209 :0.10832980164336949 +of:0.12968297043885474 to:0.07986005646423763 with:0.06953176160052653 is:0.06241528093341596 for:0.05869601906582756 and:0.05518641048451812 in:0.054897568547699054 was:0.04839317445022367 be:0.041961866319163925 by:0.040255592991606616 such:0.03882693250397871 that:0.03836777666889295 on:0.03319814314535038 have:0.03206305970825987 as:0.029685518794619312 had:0.024237559002077084 made:0.024201019971384893 make:0.022680364682592977 not:0.01750301782480887 :0.09735590640196118 +to:0.2717509286019167 and:0.16457923871470026 I:0.05723725902115577 they:0.043397973168891185 will:0.04277633356947292 we:0.041132472401093786 would:0.02921725647603703 who:0.02282151117823436 that:0.022742415152355186 We:0.021363217699352923 not:0.021024060484888692 They:0.020266567118269352 but:0.019692856073469062 which:0.01763223776232656 he:0.017060219960969698 or:0.01320625048494903 you:0.013048597359966744 have:0.012882262447056888 can:0.012619201693372916 :0.13454914063152093 +a:0.253678551600219 the:0.08778308404187382 be:0.05183114843960861 and:0.0451405788295586 are:0.034232285875426996 been:0.03312341083060509 was:0.03001751275445571 I:0.029113874461242178 of:0.024660530665348752 is:0.02436722877266953 The:0.023445051826917848 he:0.022461649574733282 very:0.021298386741673808 have:0.019708003885974015 that:0.017488180136183924 were:0.01638655636035939 so:0.015248357340708495 A:0.01451659407435225 his:0.014341721398403357 :0.22015729238968532 +of:0.2808368946169085 and:0.10152705007781519 the:0.0718874532730037 in:0.05970230115539783 for:0.051430616752027467 to:0.042523861176309075 at:0.029269686535669578 from:0.02399133389058012 In:0.019384392296925394 as:0.018545238522574017 with:0.01760611508442477 by:0.016795239771242688 all:0.015585319941708397 a:0.013721869649353189 about:0.013426978479316324 that:0.011603633957572251 :0.010326883443767034 or:0.009837140760110046 than:0.008802833854461364 :0.18219515676083314 +quarter:0.5055231479218378 line:0.04487746572620702 corner:0.019606841932500504 side:0.018227267329735813 county:0.012673385760700625 city:0.01212296191464136 feet:0.011989580229270188 out:0.011370389509271104 south:0.010741439758869068 number:0.010263949026168062 term:0.009433673863290365 lot:0.00912859473517423 House:0.009086252735367992 City:0.0085574185510845 one:0.008322111085402553 cost:0.008285847435747416 County:0.00799176250131567 rate:0.00772395535557653 center:0.00771146106760558 :0.26536249356023356 +the:0.4042700399752961 a:0.23804532127695432 The:0.058348510069783116 of:0.05663105177731768 tho:0.031085117879483058 and:0.02114695044643913 tbe:0.013061661238919813 some:0.009586489520465032 our:0.00834540568930848 two:0.008071343883850857 great:0.007946052040671786 A:0.007403094262698071 other:0.007344157907444058 this:0.007163175166155635 for:0.006861554902362309 old:0.006225908308802686 that:0.00603266286932875 or:0.005885786457850291 his:0.005799948305483121 :0.08974576802138574 +and:0.03868242960999506 as:0.031124813427855922 went:0.02352509775927722 him:0.02196555539050794 them:0.018760608639018784 up:0.017985449426794205 is:0.017894175620344187 go:0.017174904667157563 able:0.016756848979943888 going:0.014481672239490295 it:0.014128375989346808 was:0.013277058274565138 time:0.013249953793837373 not:0.012469887553778763 began:0.012465717758716884 way:0.012105610030480113 back:0.012090864562211581 right:0.011941707822828511 amounted:0.011564315359310868 :0.667354953094539 +him:0.02346330166566789 ;:0.013993117901978207 man:0.012063973158208985 him,:0.009909121800163739 up:0.009718454247617242 and:0.009483607636828621 himself:0.008708172500287844 in:0.008383704791678692 man,:0.0074619430074121034 it:0.006727629907354967 he:0.006463016531639386 .:0.00621915130927209 time:0.0060721975060543465 one:0.005851681181497556 to:0.00584951612224459 out:0.0057405518294329876 it,:0.0055790022104404615 on:0.005073440824683246 hundred:0.004882599142558921 :0.8373558167249782 +the:0.24036221886813486 a:0.18060004287215226 of:0.08512506900460665 and:0.07567037005789548 very:0.0479618550218653 as:0.02946111253285135 his:0.025681339406581394 in:0.025646073296609503 with:0.02303543428530125 so:0.01866679681136506 tho:0.01865144231250068 her:0.018009174305735332 their:0.01621903062782329 for:0.01482396040243809 on:0.014206277773824815 feet:0.013433350329461061 its:0.011999274222969614 too:0.011467577545495596 is:0.011343148534792081 :0.11663645178759634 +to:0.07646395487188469 and:0.06904283712170951 .:0.03993810992821537 he:0.014336110858333416 of:0.014309842589954122 who:0.01331766549117342 the:0.012874067919106908 A.:0.011724332464414539 It:0.011148375785221671 He:0.010354139786330064 in:0.010126307629437637 by:0.009791330258308199 John:0.009240693234978203 at:0.009158608964099584 :0.009044375189952115 J:0.008759732858609192 or:0.008121712025865433 J.:0.007520943353082634 it:0.0074376924352498545 :0.6462891672340734 +of:0.2543377493135862 that:0.09753107036167163 and:0.08756585507627783 to:0.08523872447634134 by:0.06193557472843872 in:0.05534392976363698 with:0.035550255984616315 from:0.030130009585395676 for:0.028711125952933316 as:0.025462997707111846 all:0.01729407542720728 on:0.013974814924510505 which:0.013368627794540427 In:0.013280512479674109 under:0.011858909306521411 upon:0.010055881285067108 but:0.009753919603625321 at:0.00824209659471873 if:0.008240285855611935 :0.1311235837785133 +and:0.11509162892166731 the:0.07909432731300246 of:0.061419446796318104 to:0.05201491611662019 is:0.04466000212716438 be:0.03684604715151446 was:0.03325704235146166 a:0.028724869121630327 are:0.027007404767175353 in:0.018455917096261154 been:0.01649480930336968 not:0.015475587663962958 his:0.014955139669748931 were:0.01456166488256328 their:0.014232825176767029 it:0.014126861803194253 or:0.011727080227241716 he:0.010679245621940895 as:0.01034846409820405 :0.3798267197901918 +it:0.1496983854216909 he:0.10964337238428326 It:0.10638682511248473 I:0.050969923320639536 He:0.04860408290558634 which:0.04656491803935457 and:0.039028603386181866 who:0.0331862277940019 there:0.03053864313057572 she:0.02473831015765317 that:0.020673460236108037 There:0.013695532075392687 She:0.013377251164555395 lie:0.010305604736014575 bill:0.010179505281152806 man:0.009520310547670104 ho:0.009465156303370794 as:0.008752836029768285 This:0.006926077595687868 :0.25674497437782745 +Cor.:0.12628062591824543 corner:0.06925249847385259 lot:0.06677440499980322 post:0.031216248945143736 marked:0.030933998888318825 Lot:0.029233463119462944 of:0.0274048665800872 and:0.022946284782480255 block:0.02157549666116641 survey:0.018239151674909783 book:0.017765257668403967 Corner:0.015650277105172247 section:0.01549323399850412 District:0.015359762187866641 Book:0.014596329126161068 to:0.014438479204366063 Block:0.014049422192649385 Liber:0.012986845133757384 .:0.011016617193427645 :0.42378673614622103 +and:0.08517996328337958 that:0.025974204168782645 was:0.02555650668469195 up:0.02266331431463286 on:0.02073592079733094 is:0.017605574076345824 men:0.015932653351505493 now:0.01564665377557511 out:0.014570680570030489 held:0.01435507569197402 them:0.014027816386944357 made:0.013725861814929076 time:0.013347875489510672 place:0.012892623552721914 in:0.012704938297970475 are:0.012135698433881893 not:0.01163380518493197 him:0.011631841934558004 or:0.011076235599351157 :0.6276027565909515 +and:0.06317916895143688 was:0.03089079697380977 is:0.020044819943736053 be:0.019406329289829806 are:0.016631216139614186 that:0.015910745835586493 it:0.014132589635136123 been:0.013429954470292457 made:0.013153338042273357 were:0.012494049396038097 or:0.012369181282419555 them:0.011608721240324167 up:0.01101461536327863 him:0.010833186604515583 as:0.010718511743974049 succeeded:0.010682665877813333 engaged:0.010592681714621757 not:0.009777868089593193 now:0.00948198968071834 :0.6826475697249881 +4;:0.10264563968945728 feet;:0.08544634378276741 3;:0.08332275366558262 and:0.06693921103055073 of:0.059712594196625 in:0.056180664197005285 thence:0.051084246142707006 2;:0.04584698488030731 the:0.029016045347046483 In:0.019799187176673408 to:0.01690455680592169 by:0.014008459489919254 :0.013927690241759914 ;:0.013366376236555205 as:0.013260370920154469 a:0.01320315840897307 &:0.011775983673936263 street;:0.011242716970436037 on:0.010954572537683316 :0.28036244460593823 +of:0.24523896544860985 to:0.11339723592050477 and:0.07763440849983388 in:0.07243453886149231 that:0.059683582757053925 for:0.0540923299926176 if:0.02868721845172535 by:0.02865734628386013 If:0.0260136848023205 with:0.024546978170765843 on:0.01929779154346142 do:0.01852485316471957 at:0.015187750127467377 but:0.014229501541106346 when:0.014083520272268729 In:0.013458467838177094 or:0.013148396607107881 make:0.012998720964993455 all:0.012817307333953424 :0.13486740141796058 +that:0.04952793745033972 and:0.04238809441726126 :0.032457190378508444 it.:0.025590713197123433 them.:0.01655015416096072 as:0.012212548426850232 but:0.01178443267922211 us.:0.009591911278216857 ?:0.009517257325141281 I:0.009089510190076791 it:0.008799921422007542 him.:0.007422492075100914 me.:0.00723903548487932 time.:0.007170558764926563 you.:0.006346242478691218 even:0.0055778264859096234 It:0.0052930202676747164 not.:0.005250913218537556 country.:0.004942990929897505 :0.7222472493686742 +a:0.24469235259949493 of:0.14764700779584355 the:0.11100021923400738 in:0.061115752538457274 with:0.04606055712947828 and:0.04332932219334897 very:0.03820736691480049 is:0.03007950833198045 by:0.024588022547087807 their:0.02453861837192036 no:0.024028017533896287 his:0.023979593159688093 for:0.022923910892455223 are:0.01927604440041898 was:0.017459861034882534 In:0.01729660038714384 some:0.015984768440036858 on:0.015403440377179278 have:0.014899570606694569 :0.05648946551118481 +of:0.24019487553058907 in:0.18474659399592522 to:0.07576272994606098 for:0.0609166708411455 and:0.04444246164693382 with:0.041900864939888864 on:0.04124432488778804 In:0.029169429379194155 by:0.028935889707974494 all:0.027653264445667708 from:0.026711923223276233 at:0.023742639198557822 that:0.020913381548823554 upon:0.01972050016940874 had:0.010080961769150111 as:0.010061572386167146 have:0.00923715234345952 under:0.00901298260457251 into:0.008596910944580045 :0.08595487049083646 +:0.07686070135978709 it.:0.03518228731428579 them.:0.021112800166765228 him.:0.01347537996608379 years.:0.012411308916787994 profit.:0.011798474506997126 country.:0.01160115943946021 that:0.011165724998132986 ?:0.010482043164560119 time.:0.010463357200507777 life.:0.01027934682619685 .:0.009865637025044156 year.:0.00963280827590915 work.:0.009557517160353635 way.:0.008753837384368812 world.:0.008458524335427448 party.:0.008053333921425867 city.:0.007925946286681154 people.:0.00783083545347116 :0.7040889762977537 +the:0.6629731314895763 The:0.05136125934317541 their:0.04670716188241437 and:0.04430396473567842 our:0.0234047587872859 its:0.023368645311895357 his:0.021649141249350835 tho:0.021351948984001938 very:0.011838554064391438 a:0.00966599622043291 of:0.009369314540783125 as:0.008552722695318472 most:0.006276130922601322 are:0.004939768589991533 tbe:0.00480532185424732 her:0.004590944915243085 more:0.004220413762736599 an:0.004128268215138165 to:0.0037794385242672385 :0.03171311391147027 +the:0.0918077948285407 of:0.05853527740852321 and:0.03986938946669635 to:0.024442751131125096 in:0.0236543460225219 an:0.01972503972800485 all:0.0151272247557564 is:0.012738911501440646 be:0.01256208823344758 was:0.01255187051814197 at:0.012300622841310392 not:0.011943119226624726 a:0.011053536160943518 are:0.010786997849813327 I:0.009834565660818658 that:0.009485644805506909 In:0.007429408817158337 from:0.00709249501746753 The:0.007034100263255889 :0.601024815762902 +of:0.09129790931378902 the:0.07369883040827747 and:0.047842263382354346 in:0.04189055351593407 to:0.04045875475680249 a:0.03542341257202578 be:0.02020462051672066 for:0.01979292654746225 was:0.01760256398103379 at:0.017380150555488715 is:0.014984483003968216 with:0.014047653760730413 by:0.01374644383819499 :0.012670486581795598 In:0.01200961464556976 or:0.011563835749786333 from:0.011391516893522809 are:0.011273104484969465 that:0.010755276030689069 :0.4809655994608848 +that:0.21281066468738563 and:0.14534464639096256 which:0.07054744439880485 as:0.06333227751365207 but:0.05376074486591491 if:0.045792035245608806 If:0.030618107865804642 when:0.03059992578069204 what:0.024650163107683642 where:0.019802066488941526 because:0.01738020148753133 But:0.01689315318955825 whom:0.013208396933649046 while:0.011469286953099669 And:0.010883188035846064 As:0.007751108526159862 When:0.0073276908999565845 That:0.007088179697506605 though:0.006909049466984076 :0.20283166846425782 +and:0.024909758612170325 him:0.010596480191477412 up:0.007080763573257796 time:0.0062360423089276844 ;:0.006069832154356455 down:0.006063367232599113 feet:0.005844397348867886 it:0.005699149454444002 them:0.005648519502584987 out:0.005358866474306818 street:0.005221291613172776 that:0.005088952012524385 hundred:0.00476993033660763 is:0.004686146608304718 made:0.004634294620466342 :0.004410899083374153 :0.004202726282046585 ,:0.004188579707103724 there:0.0038222636474202934 :0.874467739235987 +and:0.16138427395381813 to:0.04440835943503076 the:0.04005610716046461 a:0.02306454888313113 he:0.020633033502457872 which:0.01905550265493521 who:0.016890133942880733 that:0.01645129844935547 all:0.014463116601854311 it:0.014322389400914994 will:0.0134791376380947 :0.01265437507661158 of:0.012381354622345252 I:0.012152973340754712 is:0.011124049483580327 be:0.010176481859834037 not:0.009631208211736643 are:0.009565603499737887 her:0.0095145816669888 :0.5275914706154728 +of:0.19004922915949274 and:0.10348656955778492 the:0.08980459434059317 to:0.06459100848618428 his:0.037178595041657325 for:0.02996907668472085 a:0.02379743807804852 by:0.022402531579127936 that:0.021664344727961596 with:0.020331774406205753 her:0.020161087745401995 or:0.018963292584406124 their:0.015766769706586452 from:0.01453342180517213 in:0.013543878145372647 as:0.013432282748612948 at:0.011144830531331073 was:0.01085886864921433 not:0.010048411194559936 :0.2672719948275653 +of:0.20401249632042265 and:0.10337242466655945 in:0.08059927137786196 that:0.06971403102076448 to:0.06393766953003262 for:0.06005491648270918 all:0.05070188133026198 with:0.03791671028384018 In:0.02839917573765848 on:0.027466943603763005 is:0.024337438597624227 by:0.020400003668958257 but:0.020387280191066427 at:0.019918055938626555 from:0.01988982094297728 was:0.01782614542887544 as:0.01382191350169321 upon:0.011714858675336332 when:0.011094587867693732 :0.11343437483327458 +well:0.1557525615334013 and:0.0796292113290335 soon:0.05890298393226881 known:0.05401146043682629 far:0.04668807692623701 such:0.02524515165276127 long:0.024719056679142027 much:0.022703533563172857 it:0.020415133840846995 just:0.01983514658646731 them:0.019255118324026932 regarded:0.015513905531541363 but:0.014349737948576254 him:0.012790715282726609 men:0.012393119067285206 that:0.010670325585055162 same:0.009551500742947196 inasmuch:0.00936514601864267 not:0.009120151689801678 :0.3780879633292396 +and:0.19654749255464984 was:0.1422290142861299 be:0.0861698990248562 had:0.06726427135697366 is:0.06288478158862634 not:0.051977167244658194 have:0.04322810218477023 has:0.03364721089281027 were:0.028954768791868764 I:0.028004294436698298 are:0.026161496005020293 been:0.02614461209057663 so:0.02554964743059526 but:0.02516542482449662 he:0.02216082716230454 will:0.017303602875251886 as:0.01652548575719116 it:0.013554634759978609 would:0.013223230755770839 :0.07230403597677244 +of:0.16759417798678536 and:0.14556466636775084 by:0.10075988053724313 in:0.06240117690869688 to:0.05748415012955141 is:0.03808981509694432 are:0.0351167560063029 for:0.027338990116673092 In:0.021146862984608526 was:0.019394255709369392 or:0.01794310432806039 with:0.016459347647222566 without:0.01495940902589508 I:0.013296817243466102 from:0.013055279709104837 be:0.012515553191113705 the:0.012392027941423191 that:0.012221154478711064 :0.011872883216986443 :0.19939369137409083 +the:0.34886657294089046 of:0.2010068111904641 in:0.10871175696819581 to:0.03951268758278235 for:0.02264465446133161 from:0.020242825620279837 and:0.019817388056387424 between:0.01884758727183856 In:0.01758146936743665 tho:0.01589367200941977 said:0.013942994972776518 at:0.012453116639169747 boy.:0.010761794530854853 The:0.01029563734156604 with:0.010212754640929453 a:0.009602757742347935 tbe:0.008147267876434735 by:0.007220777351256828 girl.:0.006862718592092184 :0.09637475484354514 +for:0.109027601943582 to:0.09256489439969325 and:0.09041596212028108 in:0.08412957623536203 the:0.06962617284114048 of:0.06663642603223463 a:0.04419351980843705 that:0.0279934907963366 In:0.024723448229432173 which:0.017719046130271296 or:0.017012943227178737 with:0.015107725547434189 by:0.014106358306106152 as:0.013085577608939412 in-:0.011635709735732086 not:0.011561758421009082 from:0.010385006983017558 For:0.009089572889872995 any:0.008497925999837924 :0.26148728274410127 +so:0.2637996975758226 too:0.24373208186018397 as:0.12628279532121747 very:0.04872233525220039 is:0.036557315594176625 do:0.0365396812712947 be:0.025405230702631176 are:0.023097800507849965 was:0.02223820083039168 not:0.02075917512752901 done:0.01574558227829077 and:0.015709817267800585 how:0.013649951209456536 it:0.011188884985963429 been:0.01006974748763686 with:0.010035555537214984 for:0.00968905060376545 of:0.008943547937874682 were:0.008380929666500565 :0.04845261898219858 +most:0.15439699108800442 very:0.0966274821061227 more:0.08458066013451243 an:0.08111485016645266 as:0.07616818291151528 is:0.06284673396546209 so:0.048294980558329655 and:0.04619431469963299 this:0.04200829767181654 the:0.03708620993061 other:0.029792313129988337 was:0.02750746279232697 be:0.02628186534613239 one:0.02257897187806113 that:0.02211364742214864 not:0.02116570051214256 are:0.020393799337063166 or:0.017870794315680023 less:0.017551378875591165 :0.06442536315840686 +the:0.06751883002411387 of:0.03958630383937766 and:0.029489133957027045 to:0.027619332203831816 in:0.018501382460856797 that:0.01111021778296945 or:0.008508155754603132 :0.006805758765270637 on:0.006346635607931263 this:0.005566932127852766 with:0.005491906016536875 for:0.005201000720488024 In:0.005171349929190532 all:0.0050846199408160426 a:0.0049169937260517774 be:0.004884224748530645 -:0.0045654875274124904 which:0.003993014226268355 from:0.003966093249025194 :0.7346726273918457 +out:0.06434401093544695 part:0.05345799079666306 one:0.023718809367311706 account:0.022158010834860582 tion:0.020756889138632696 side:0.019022934958572962 that:0.018866031601834848 and:0.017841784987452005 place:0.017747337228788455 use:0.01763263922672485 time:0.017278359782594257 case:0.016949172961749973 point:0.016394354297157455 because:0.016157544199487454 cause:0.01600958899711589 people:0.015636005153628292 portion:0.014964740917335082 favor:0.014869169034769357 cost:0.014565162375824857 :0.5806294632040493 +the:0.23994451428599947 of:0.15835164959127257 public:0.08365806986339873 civil:0.07062735428410197 this:0.04352042573822973 for:0.032730350824243824 in:0.026845789511537755 a:0.02507396199078599 their:0.017919174245643033 military:0.016925273738649767 such:0.016122225310089902 great:0.014738491523447889 other:0.014052574100742244 tho:0.012976337514246074 and:0.010929928432275384 his:0.010305950395603645 that:0.010251109736725408 secret:0.009035611527167007 any:0.008866638691170745 :0.17612456869466886 +of:0.2471402946845474 in:0.1628170637590124 to:0.08978364994030537 that:0.06046643808695226 by:0.057493073485632505 and:0.04489411598746496 In:0.03815951249394023 from:0.03674824284647643 with:0.03659759652581178 at:0.0241407387798197 for:0.018756270866975754 on:0.018226092768838575 as:0.01492056794593055 is:0.013665649789196191 under:0.01343801424938552 all:0.011779205849210576 into:0.011615344415663852 when:0.011461616557390353 was:0.009976672655609036 :0.07691983831183659 +to:0.567874552597022 will:0.06282370626609939 and:0.05114592478097184 I:0.03345159488024987 can:0.027234443364853936 not:0.026288094425522938 we:0.023383645742831992 who:0.018127055884446713 they:0.017225986457102462 could:0.014748347633279292 the:0.014136780232366466 shall:0.012857903022004685 would:0.012678154327222262 he:0.011570203542960835 in:0.011270078970274587 which:0.011099997519444503 that:0.009973002342474878 should:0.008917194709569152 you:0.00861982636574069 :0.05557350693556144 +the:0.17027190784407714 of:0.10585557835912704 and:0.07355927771906935 to:0.05486905984958157 a:0.04543746377447453 in:0.03128555052933153 be:0.028704485173100775 was:0.02350529800142253 is:0.02215549335554494 for:0.02077556258358175 his:0.01804639098945333 or:0.016335100594594944 their:0.015847999621030492 at:0.015526727957625254 been:0.011815834631173878 are:0.01139058447814694 this:0.010362020528084328 tho:0.01035635773045807 its:0.01000473355720393 :0.30289457272291764 +the:0.16792976215563654 and:0.1515282081682278 of:0.12244589126863395 a:0.07311660878741078 in:0.06984032097050437 to:0.04158047062008425 or:0.02573752356435841 this:0.02198533289604717 his:0.021519835323112486 their:0.020352140600716474 any:0.02030276064705577 first:0.016771523819308066 every:0.013597342924557367 with:0.012964647194407632 an:0.012607935807055333 one:0.01252906930898189 all:0.011016235010815093 In:0.00998859973368604 its:0.009630223042384324 :0.1635555681570163 +the:0.16210608157644615 of:0.1132241579615967 and:0.05446729902897889 a:0.03576526362027929 to:0.03568863064307866 in:0.028775317618449738 at:0.020240104504641643 for:0.015480230729428793 their:0.015445403853455202 his:0.015347931555983806 or:0.015159431252866215 with:0.014745139865279642 from:0.012356905989584296 was:0.01150530401532956 by:0.011366659909176437 be:0.011206460896384177 tho:0.01118349890406696 Mr.:0.01107585082792935 as:0.00994590081078631 :0.3939144264362582 +the:0.18101830514727132 of:0.11340247800071311 in:0.05000175695537274 and:0.04066044479833527 The:0.022751040878503662 I:0.01746206068809106 that:0.016132784571630095 :0.015523402928735235 to:0.013260066674936628 tho:0.012209812893215537 In:0.00996278803332318 for:0.009917248778827688 by:0.009242477377218682 which:0.00824505539683148 a:0.007921354229922666 .:0.0065509609932786 tbe:0.005593520983510521 he:0.005529174019246494 this:0.005421226868193925 :0.44819403978284206 +as:0.07348237429869825 and:0.053293291927724 according:0.0479709431097652 up:0.04410375066718131 them:0.0360918361710351 regard:0.032406892412297036 come:0.031291428310290255 back:0.02891251395441225 return:0.02673975554051193 came:0.025351047659788954 returned:0.022021941716222352 it:0.01975522069512534 down:0.01933170912324385 him:0.019027828623193535 go:0.018504100610066444 went:0.017627960690307223 given:0.016230557067889343 owing:0.015689732254652238 attention:0.015375915241202635 :0.43579119992639276 +have:0.1662953391148679 has:0.08875609907728331 he:0.07998073693990819 had:0.07663484002172305 and:0.06241675977236352 be:0.05623603139950187 I:0.04677433586165994 who:0.02732514097510154 was:0.026854496834615882 been:0.026208118393527505 they:0.018007140398457445 ever:0.016779627319077835 she:0.014996172659700081 we:0.014034719254408166 is:0.013408688086403914 it:0.013308418332579246 never:0.01231142236468051 He:0.012126806741607973 were:0.012089684509551958 :0.21445542194298012 +and:0.14170289746296316 the:0.13699233632758415 was:0.1282600998840823 is:0.11031350858125004 not:0.07562718606516768 or:0.04174414287695259 are:0.037392623386284594 a:0.02627149326459332 were:0.022558805811416192 be:0.01983440944117832 in:0.019144227686770432 that:0.017171734394491576 to:0.015781800854672227 of:0.012661079797590976 but:0.01257653172272154 only:0.012072358805267504 been:0.011690731999105957 no:0.011318809983614092 The:0.01129713183152246 :0.1345880898227709 +the:0.3301170204700875 of:0.1298352632962362 their:0.06977775999973462 and:0.050836476388573096 his:0.04844148627829252 to:0.03944595313516305 its:0.03262631834020779 these:0.03194179767148439 our:0.027492568333310156 for:0.018276610053747634 my:0.017062762351391012 a:0.016317421152150336 her:0.015156175518462264 tho:0.011911035870077863 The:0.011792423495084418 or:0.010872721781041884 other:0.010649624628675398 that:0.01024202970477512 your:0.009891131031096128 :0.1063134205004086 +the:0.24557121364219872 and:0.07958577642394891 The:0.032976499632165784 of:0.029810237626536853 a:0.026859494147276595 two:0.021588667993949307 tho:0.017364632913527047 1:0.01403390390851815 I:0.013983054544272044 that:0.013329016769896925 our:0.012492393432060477 :0.012468377367756828 his:0.012121536749726325 few:0.010604351016168528 three:0.009787664620200373 these:0.00948360098636605 my:0.009323708734209749 to:0.009051287373729879 .:0.008738392162664413 :0.409826189954827 +and:0.11407116966175274 of:0.07107079484512498 the:0.06656730291979027 to:0.05335924540680701 be:0.02740068005735919 a:0.02260417818487592 more:0.02213765112741375 in:0.02051572430464391 was:0.01921309187923535 or:0.019187461572761966 is:0.01905977581138103 for:0.01903629630887901 that:0.01789181571214341 be-:0.017434743418629745 are:0.014819956712198552 with:0.014357000995703835 were:0.011289330063959966 will:0.01101235889555647 other:0.010533063132933779 :0.42743835898884913 +and:0.15223193322275694 that:0.09189711304481966 but:0.051847305268898566 which:0.04518218882637472 when:0.04068516215662585 will:0.021499830266927894 if:0.018297024164994624 as:0.01735746633307397 what:0.017169234546507185 to:0.014980739034430162 :0.014735518813284281 I:0.014633372237292958 When:0.014313590383195414 But:0.012748497645792209 time:0.012312016249861233 where:0.011763893829635524 while:0.011692298639548186 for:0.011646899016868838 the:0.011367597892151698 :0.4126383184269601 +the:0.1733076785976655 his:0.12747129434385102 a:0.10341536005755804 their:0.09480433954289548 no:0.04443737307532851 my:0.03627923507647961 any:0.035009055565462334 her:0.03486824215228746 this:0.032071530432892126 of:0.030432721225999302 its:0.027627232813486988 only:0.025176217494029974 every:0.023356641890280253 gave:0.020734316509931475 some:0.019327610343577353 give:0.018784565692114275 best:0.018495272494437363 in:0.0171891391613393 your:0.016465934783687994 :0.09974623874669565 +the:0.4133379473165581 a:0.14686524657798009 and:0.1007003573117384 The:0.03674278501785537 he:0.020127324432723845 one:0.018335549392456726 tho:0.018293814445150665 or:0.014914347707075523 that:0.0144372881163869 this:0.013698233132510928 I:0.010708529699674788 good:0.010086124993254371 most:0.008740225867385877 first:0.008540922935969503 his:0.007937995225626354 every:0.0073775172904087406 best:0.007045351236723648 no:0.006686078087322868 This:0.0065085842777447885 :0.12791577693545253 +to:0.30892268285870883 will:0.10615917009061414 would:0.08674535532103617 not:0.07730017719383048 and:0.04994709488636584 shall:0.034974657123625005 should:0.03420620106518674 may:0.032298701181752563 they:0.03185233702168507 can:0.022458349546265206 must:0.021566667917955473 we:0.01873304538277841 cannot:0.016550213086755812 you:0.01596863886337523 could:0.012684854391434675 might:0.011898540593249289 I:0.008804543229947386 or:0.008456820177601654 it:0.006502274183728824 :0.0929696758841032 +hundred:0.05383598902344098 thousand:0.04608323557064114 160:0.03981157651922028 sixty:0.026664877395435122 ten:0.02544029538685584 two:0.02193979222347453 100:0.02067383869578226 of:0.019169146374770397 five:0.01783857938886547 fifty:0.017210474173744966 40:0.016344653235408745 twenty:0.01621410709700738 120:0.015933452343759272 forty:0.015923905185172935 eighty:0.012394646871576607 million:0.010775699008707808 20:0.010110603228179376 000:0.00978345263099973 80:0.009774322777324181 :0.593077352869633 +the:0.15494558890452953 an:0.14460986216830346 a:0.11432482814907816 this:0.05457770848338088 in:0.048114713147222404 of:0.047275384263021414 and:0.04594833097695208 any:0.037551053536802784 to:0.03713836052507166 some:0.030763145680251743 no:0.028390092715107663 more:0.021186889701692125 The:0.020841706768367142 for:0.020454405429316192 great:0.02013773329628159 good:0.017720655356701538 that:0.01717553023376942 In:0.016397050187091297 most:0.014113427357370936 :0.10733353311968802 +one:0.1028303141280697 part:0.05963429477052991 out:0.04766456937681193 some:0.031418679026461914 members:0.030764490253327767 side:0.029940657362655835 portion:0.022063658796890564 office:0.020457735219956013 member:0.019726706386316174 end:0.019666887540649894 tion:0.018667441728710307 parts:0.016814747270460957 people:0.014112771422418794 all:0.014072739582212475 any:0.013183573287639892 One:0.013083578354183906 that:0.013024335602903442 account:0.012482348155001894 many:0.012077825070275192 :0.48731264666452345 +of:0.29339831636404334 to:0.12340369122257082 in:0.08972428295956388 on:0.07180645057738598 by:0.04821235462388589 that:0.04632581856175341 and:0.04002027009110891 from:0.030185486997750467 for:0.02843789747726271 with:0.02721580027636959 In:0.018934738254822874 at:0.016107414935853423 upon:0.015010735942373468 as:0.012011233560629648 all:0.011247238418412176 which:0.010452443710632187 into:0.009904186085237977 under:0.007971511534877162 is:0.007331121838063039 :0.09129900656740306 +the:0.46214600901760294 a:0.06833103614232712 of:0.03659253234460118 this:0.031653935251392866 on:0.03141859966709087 one:0.02877508499639963 tho:0.028326307126394314 other:0.022751941829540864 every:0.020182347560361608 his:0.01602011873534403 very:0.01564739624216377 an:0.014138062256919574 such:0.012956405993558911 tbe:0.012520225903593812 their:0.012233781006266861 and:0.01172761899178637 its:0.011552163405820956 each:0.01147410314817184 our:0.01047063356398803 :0.14008169681667443 +and:0.07552504194953026 to:0.061968499393707334 the:0.057643973804479255 of:0.05099347821091035 in:0.045432634061476754 be:0.043176745264505725 was:0.04286344660289687 is:0.0354590811431954 not:0.021327702286003523 as:0.01940744495854301 it:0.019306237087434234 for:0.01929825631926325 been:0.01851743502930562 are:0.01760668094037614 he:0.016473460506366926 a:0.016340305934385613 his:0.016072979388420006 or:0.01494424414056331 that:0.014707567524884455 :0.39193478545375193 +A.:0.06356377005640661 the:0.059880962202442184 of:0.0578626794045803 a:0.05169794446642317 .:0.04820029869040785 and:0.03953432919764327 John:0.034417116657132374 Mr.:0.03158039668908215 P.:0.02468202549170151 boy.:0.024087259755797733 to:0.02378542267139749 C.:0.023268145602677197 that:0.020155854245825246 Mrs.:0.01852168576689314 James:0.018057795116742954 Charles:0.017662704151004363 in:0.016963233791872475 H.:0.016474499731366637 by:0.016149872958533474 :0.39245400335206987 +of:0.3048105821659286 in:0.11391505917713594 on:0.0896306949584956 to:0.08054375678742935 and:0.0434012031413273 from:0.04050937226818673 for:0.03693938789205841 at:0.03540961011037333 by:0.03535295717003135 that:0.029590301199651163 In:0.024812861186363017 with:0.02242234673026011 upon:0.009840939452787967 when:0.009681041777368674 over:0.008490203346759494 into:0.008478448053999119 before:0.00796865197016575 through:0.007692956657482395 as:0.006450688563420781 :0.08305893739077493 +the:0.31693433028668017 a:0.1921776941718421 of:0.09211565997905585 and:0.07761408026538102 The:0.042949594399141415 in:0.026628744940734736 tho:0.021207240508631632 with:0.019052846274051054 by:0.018314907220457494 for:0.015117586150765392 his:0.01208105532966393 attorney:0.01178578161651514 A:0.010981790294538616 their:0.010649605159503417 its:0.009385175827799415 any:0.008967169955597248 this:0.00862340062420544 tbe:0.008541881928645606 In:0.00734319102619264 :0.08852826404059762 +the:0.14097905379068107 of:0.07331087503882922 and:0.07181330996280533 a:0.05976433406615042 to:0.054517608548006975 be:0.027144583808848956 was:0.021670096559335054 or:0.017850176640821478 is:0.015691986615405103 in:0.01537689140487654 are:0.013527554375639277 :0.013345386361944066 at:0.012159230680710242 been:0.012083769908731407 for:0.012017580091645849 his:0.01156881653886233 were:0.010304989923631205 their:0.009881712923853423 tho:0.009488640365474152 :0.3965034023937479 +time:0.020760877589382998 men:0.01742809587637547 life:0.015126853942108786 in:0.01467743184641503 up:0.013459798561348655 good:0.012782962239991298 right:0.012750436170819975 strength:0.01266841584526787 city:0.012055537479097362 peace:0.011108772963152354 out:0.01109265073647026 health:0.010599457975226937 work:0.010060764781776772 rules:0.009820558742454605 man:0.009382673990005802 house:0.009224650789705472 love:0.008907140098218297 energy:0.008470130803604724 it:0.008444510443791017 :0.7701782791247863 +the:0.6724307507537927 our:0.04025683728141997 tho:0.03617278213999092 a:0.034688542181728906 The:0.031265769546742206 his:0.027040337182138167 their:0.02304500026189488 of:0.020164141683596527 and:0.017591577253812007 its:0.015389006100301755 in:0.01112624954538614 your:0.009795727282344116 tbe:0.00966666143903344 an:0.0077914069489866625 to:0.007728993985311637 with:0.00540070851545272 my:0.005262260443875934 her:0.005073377844642996 this:0.004861254364263246 :0.014248615245285139 +and:0.09379053924927042 to:0.0742855066818078 of:0.06739630294563433 the:0.059809119354988456 in:0.027631208092333288 be-:0.027293809025147272 that:0.021435074971841002 was:0.020009129418631 for:0.018363033111366858 two:0.01705484412802581 is:0.016963649837169994 or:0.01689964597852544 be:0.015590573410395322 a:0.015001108975733878 which:0.01499881791074982 :0.013443348992596298 at:0.012448389513759608 by:0.01164637080842974 con-:0.01120718746514304 :0.44373234012845064 +last:0.2654569352990628 Saturday:0.09054866641493968 the:0.06800689209825632 Sunday:0.06036552178831165 Monday:0.058328242311788216 Friday:0.05123331219304291 Wednesday:0.05020031467939479 at:0.05015813501208025 Thursday:0.038857020551548396 a:0.03543990606498426 Tuesday:0.03145962425697238 every:0.02988255333160114 that:0.020011190007125992 this:0.0186585536456693 day:0.017531156656164504 next:0.016809979119280446 of:0.012899562375068093 and:0.010518058774810978 Last:0.009393466380354754 :0.06324090903954317 +the:0.2680769571534694 a:0.19494799965671147 their:0.059785151167299676 his:0.057181446687649226 of:0.043402217835410296 have:0.03954096186786988 no:0.03940983788779289 and:0.02864927459023396 its:0.024165328918998752 in:0.017712549226824043 water:0.016405955496689873 The:0.015764105522606486 tho:0.01420494632679849 any:0.014068930787290079 had:0.013952674059757017 this:0.013352132129675126 to:0.012894835080527696 by:0.012486711258812287 my:0.011687405812092792 :0.10131057853349054 +and:0.09296157453578059 the:0.07260608673281492 a:0.05593708968259476 of:0.05441583507203394 is:0.03558625104453609 be:0.033980012009619004 I:0.03141664522878395 was:0.028093255492853828 it:0.024476425896454684 he:0.023232658776624244 to:0.021597151041604843 are:0.018656659431974417 It:0.01628353404523284 that:0.015706202232171736 in:0.014541516293590247 or:0.014526210557923637 but:0.01178396643537098 this:0.011436664122462099 they:0.011268144270354346 :0.4104941170972189 +the:0.39438357448820477 The:0.11433963549593325 of:0.07129900287905315 and:0.03651983535461557 these:0.03215942213372488 tho:0.02299702794920538 this:0.022192301703247284 a:0.01895135411965788 that:0.01513541858852712 This:0.014617005029520035 their:0.010776603668416825 our:0.008338520932106266 or:0.008053945297853495 tbe:0.007780647237513274 its:0.007700927057744062 said:0.007615645428153109 These:0.007598099755307183 new:0.007339941576363076 his:0.00726675714266931 :0.1839343341621841 +of:0.30075079953105854 in:0.13187199651676185 to:0.09409795135531313 by:0.047695305117764986 for:0.042460618835951945 and:0.03967136436631216 that:0.0391712818618777 on:0.033816642496329756 with:0.03143519770243082 from:0.028920907869512923 In:0.02277557784887722 upon:0.016304289054425696 all:0.015444924966745792 into:0.015042379373282034 as:0.012328167291481852 through:0.010984271919222657 under:0.010512107376874805 at:0.007748460861470719 over:0.006481299049800844 :0.09148645660450457 +of:0.18972025158694034 the:0.11309844254836002 a:0.07443257053523689 in:0.06532410289870279 to:0.05441378939673386 and:0.045457414997453024 by:0.030307332490166056 for:0.025184966686818803 that:0.024515328178802618 from:0.023296680867472733 with:0.017279754629105176 which:0.014687340171269202 In:0.013971350996405302 or:0.01395089345472913 on:0.012856197868946683 :0.011661022800990838 in-:0.010924875472781169 at:0.009390384377748657 upon:0.009126509253173211 :0.2394007907881635 +a:0.22074657339622847 to:0.09334305572061982 of:0.06708182288896461 fel-:0.05776773518227275 the:0.05547228395865616 and:0.055185488645738114 fol-:0.036524915556375374 only:0.028805829441685516 as:0.025804706028300074 is:0.019475369691506293 that:0.01776936976860045 one:0.016055024639850524 not:0.014844280269619311 at:0.014321377820335301 for:0.013459024761998421 have:0.013087404118478 had:0.011840240405565293 was:0.011645888166002726 very:0.011379315007352836 :0.2143902945318499 +was:0.21772310937077832 is:0.08016038724288388 and:0.07134822102404997 were:0.0607840599211826 be:0.05093484068338517 in:0.047166823756830505 or:0.046861646895133814 of:0.04225124378097541 are:0.03781035184300413 been:0.03708433159235125 to:0.024233283898921522 not:0.019354728098827118 that:0.018797211148603294 on:0.01662550611725975 Is:0.016544460369722472 for:0.01612018426480468 at:0.014785504379798576 being:0.01472632673197435 when:0.01259748858659619 :0.15309029029291701 +and:0.13512517065343518 the:0.13200384167655865 a:0.04689952365373066 hundred:0.039613903971384375 two:0.0378628455994003 one:0.030652969907074154 or:0.02833844081373729 few:0.02784525287110001 of:0.026078076398829815 thousand:0.024805802338289464 five:0.02446725741698599 four:0.02037031398461472 fifty:0.01822923480223075 twenty:0.017461612628272265 50:0.015987820497836088 ten:0.013822641525213706 The:0.013685603174318241 three:0.013303744909451753 sixty:0.013105216706388088 :0.31934072647114853 +one:0.17896815771583502 some:0.08659644581987248 many:0.04990449165862142 all:0.0478665878503545 One:0.038096175605452455 Some:0.03552640793926947 any:0.030556472203911753 part:0.02863440842448241 out:0.0277194039896207 Many:0.0269363120854098 Most:0.02547340768335081 most:0.024353222153046517 each:0.023219256850445295 none:0.017889879874876717 that:0.01660051196194893 portion:0.013050827281407395 and:0.01196719025110212 those:0.011218763533358999 number:0.01119499011182692 :0.2932270870058063 +the:0.11953755234431115 of:0.071608790148201 and:0.06670409918562406 to:0.04279079923318095 Mr.:0.03353291547133514 The:0.02471441701018261 in:0.02414733050167966 or:0.020996321748643396 that:0.01929609901702448 for:0.01835323103491263 he:0.016693332298242637 Mrs.:0.014980184423625349 a:0.01374371164911298 re-:0.013620244568427278 be-:0.013611116310401197 I:0.013487521700754592 which:0.012766112727908882 :0.012315472582360975 on:0.011543289692763645 :0.4345574583513074 +and:0.05701303114903682 know:0.05318464334081501 point:0.045529353323055216 place:0.03973159709460463 from:0.03455024980504364 cases:0.02917199569493317 places:0.019337253485569295 is:0.0178687685890804 spot:0.01569867721668306 case:0.01446176930002745 street,:0.014370541160851449 just:0.012999638432909171 room:0.01274069858231815 was:0.012640995566900506 are:0.011719658986912983 out:0.011485941042726495 country:0.0113331897743072 matter:0.011077324803491976 line:0.010693012030225685 :0.5633916606205076 +and:0.07359963406644195 be:0.052667135004264946 to:0.04483536256874564 of:0.043448293679263235 the:0.03579172892628988 in:0.028005289969665195 was:0.026700397492138477 is:0.024892551934152005 re-:0.024162182625676702 he:0.024086629517294657 are:0.02098604388819216 from:0.020307931541148256 a:0.018606881911690538 or:0.018077853608073062 for:0.017195224169077532 been:0.01615904189338184 I:0.015254891559368164 :0.015184018660626356 which:0.015016145996292442 :0.464022760988217 +to:0.19863563127801812 and:0.10592218678316494 in:0.08771976054162228 of:0.07868722479873236 the:0.05261552241595311 for:0.04045429664152242 with:0.03185249775492082 by:0.028797619501485874 In:0.02341827131082947 that:0.02211048452211518 not:0.021600592516283983 which:0.015969826116301628 from:0.014799758097720524 on:0.014700663049888188 as:0.013745538776019122 upon:0.013685795479228434 a:0.013669692337342979 only:0.013456306888716558 any:0.012623694797007501 :0.19453463639312651 +of:0.21258590544083697 in:0.17817937137262813 and:0.10341941796764959 In:0.07421840304975934 for:0.07254548109374859 as:0.0490890538100562 to:0.038908796887834544 that:0.03563717549856824 or:0.02365497699089016 by:0.023639985282229273 with:0.019753574469067083 is:0.016455911014839758 are:0.012268582093760277 from:0.011046476492159209 was:0.008815175560914757 on:0.006055653028833584 so:0.005914580120888911 but:0.005631975862166019 be:0.005421341476275153 :0.09575816248689421 +nothing:0.038372714240358576 is:0.025801092779461663 ;:0.02235888137639035 anything:0.013052100561386271 it,:0.01062835286652844 was:0.008912418214507882 and:0.008444401719230972 of:0.00832042379345796 are:0.00793932872062729 him,:0.007234886793974415 none:0.007174549291397742 them,:0.006751516094145618 to:0.006714725392429433 be:0.006510869518404319 ,:0.006223662018109123 time,:0.005923500582351599 have:0.004724622554275163 in:0.0044964238169901685 .:0.0043529309517568865 :0.7950625987142161 +and:0.1372468639047609 I:0.12081843377370534 who:0.08003173022055314 had:0.07172456933663707 have:0.05472015799678384 he:0.03216895666889499 has:0.031525788823530305 be:0.029204461628694365 it:0.0290818887542032 not:0.023334126109238983 was:0.02241758594903972 they:0.02099553183811893 They:0.016405018423013295 been:0.014987943662171231 we:0.014504251839997864 1:0.013413294531749269 He:0.012733025224575407 men:0.012444436606227637 she:0.012130587663453015 :0.24911134704465152 +sal-:0.15898466815449155 bound-:0.08179523493661199 the:0.03903560960896798 a:0.02460614493333566 Janu-:0.021125879310409254 :0.012850821875701832 .:0.006471424048503657 of:0.006056225331140365 and:0.005956120415070652 -:0.0033050988252820985 The:0.003178699225720473 :0.003146826559999804 in:0.0030980059291162536 said:0.0029657907724531733 A:0.0028516183788246234 be-:0.002679856916780035 that:0.002210115518833266 i:0.0017966194692698326 j:0.0017152097134969198 :0.6151700300759907 +the:0.09434607989696107 and:0.06742133609020257 said:0.0657645584057021 of:0.042046011423311554 or:0.036329471359094305 a:0.02917028128472886 other:0.019905606445908584 certain:0.01724551123532535 one:0.016605642405064094 The:0.015593867258097398 for:0.015269077416833811 these:0.013915155608777395 thousand:0.012060806045220572 first:0.0117641293628303 hundred:0.011068596574625274 that:0.010670487383119131 this:0.01012118360372153 school:0.009909602974799384 old:0.009066562823802074 :0.4907260324018747 +if:0.47972200415750715 as:0.14065409384857783 If:0.050468972543590694 be:0.045101356100794084 and:0.03538595703491119 was:0.034515411987271205 is:0.028997637217241853 that:0.02608383506095995 of:0.02001834724643865 have:0.01367854769867906 had:0.012408095821121297 for:0.011011503955920668 when:0.01092546794318238 so:0.01081017809684777 by:0.010174714903461916 than:0.009913306869350104 but:0.009568292128045068 which:0.008298157535954519 were:0.007732583419758867 :0.03353153643038575 +of:0.29306808912609894 in:0.10943128496319592 to:0.09387601804445848 with:0.04659534110631119 that:0.04643908580003067 by:0.044851475738082416 and:0.038767494216120156 from:0.0375780968395488 on:0.03403452888499627 for:0.025103241121363147 In:0.024829424387847535 into:0.014295920215134993 at:0.012789675212728883 as:0.012303707465110557 upon:0.011911573324635478 under:0.011218886796330424 is:0.010987879425292089 through:0.00935209283727211 which:0.008663241772829807 :0.11290294272261216 +U.:0.11818778859279665 thence:0.1051055627985165 J.:0.05657986536272919 W.:0.053110936172301344 .:0.044280064143662166 John:0.037090140588428376 and:0.03276379073398633 S.:0.03143622205793482 C.:0.03136336433661465 of:0.029344353854601563 A.:0.026132423746959236 Mrs.:0.02428257583891382 bears:0.021047079423412593 H.:0.019462732992419945 marked:0.017983973563362954 Charles:0.01794348589054165 E.:0.017224846297551742 James:0.016916832849162698 F.:0.01664390326914877 :0.282100057486955 +State:0.04706470352303936 corner:0.03518734714879942 city:0.033634873789279124 lot:0.03193276202052907 line:0.026106755567313317 side:0.023813888216608653 state:0.0235911123494169 part:0.016598452101400398 county:0.01636592125692751 day:0.015465984649353035 north:0.013525394008320606 acres:0.013021118728917693 feet:0.011972410515454373 number:0.011941809923273674 parcel:0.011003048146275179 County:0.010781018428479455 south:0.010774903178535827 section:0.009300584999369827 place:0.009134082555421865 :0.6277838288932848 +of:0.2094044326800705 in:0.10323064403071443 to:0.10003830707887722 for:0.06651277384544663 and:0.059888103219910734 with:0.05229638367705768 on:0.04126439815398536 from:0.0354362178188539 by:0.03150820700611748 at:0.023923279676181686 that:0.021401420699051488 upon:0.015462838440665488 In:0.01545720659661401 all:0.012395979629342193 or:0.011833585179611528 as:0.010765835272299391 up:0.010244683825641929 into:0.008022179740618366 through:0.007346693776088779 :0.16256682965285124 +to:0.09369554102260642 the:0.08319363564100533 of:0.08169805476578292 and:0.04539706166554114 at:0.03035666444251638 in:0.022787225361252522 :0.019031448463750666 on:0.017477007573889123 from:0.01628274550667146 Mrs.:0.01620236666563515 was:0.012611882756630388 .:0.012500896063533223 a:0.012120427469874377 that:0.011423089295383068 by:0.01090945692410381 Mr.:0.009159363191282504 be:0.008554393477209241 said:0.00768251735503255 The:0.00726313557907548 :0.48065308677922425 +the:0.7082182271025629 The:0.07331660296915182 of:0.034300560471634545 tho:0.02923155892771232 a:0.01660167517777645 and:0.013992540486283631 this:0.01234925263270069 tbe:0.010945836084978067 that:0.009702580625945105 our:0.006284673042619302 in:0.005098711095611616 by:0.004669136446297419 his:0.004515428741748914 under:0.004430306008846966 its:0.004196089772188742 to:0.0040875687505642555 for:0.003502148082119105 th:0.003122441181149828 their:0.002708048321734714 :0.04772661407837359 +and:0.07253874162144246 that:0.048996868707769356 the:0.04394361315067566 :0.032440110694051144 which:0.02099071870739603 all:0.017482862449557 :0.01121565271362851 as:0.011151468758635843 but:0.010848752294740357 The:0.01063681876628429 or:0.009419533856087375 to:0.009216990529373826 it:0.008036300455463908 than:0.007538588272026794 time:0.007534046964820013 ;:0.0074175175052455175 now:0.007400747404660436 are:0.006762792243287986 then:0.006651369465724922 :0.6487765054391286 +they:0.17380171062494446 we:0.08727814594267844 you:0.07545849371016515 who:0.07045486866269554 there:0.05024875064795899 They:0.048630829790656936 There:0.04594834226623555 We:0.04105586228739443 and:0.03340861356683934 which:0.03086192362381559 You:0.030652804135127276 that:0.0252286873591774 men:0.018526735688699926 people:0.015568222279395569 I:0.007993804721596122 them:0.006241328723425591 wo:0.005255112926641586 women:0.005229636664117204 but:0.004947948132571721 :0.2222081782458632 +of:0.2995784447753113 to:0.06253091283384041 in:0.05973690486385824 by:0.05175040811169475 on:0.050923360965477414 with:0.048135487817295076 for:0.03699375715813308 at:0.03175715831931042 and:0.025057529554046453 from:0.02029458773657076 all:0.015952423715738708 upon:0.014927684907501126 In:0.013170002179079321 that:0.011923159839557081 or:0.009421894965941629 was:0.00900841516831981 into:0.008757653545546393 is:0.008666810029873288 over:0.008088309154112764 :0.21232509435879196 +he:0.14538954828913772 and:0.10138750042759881 have:0.05666619879515531 who:0.05377442195200136 He:0.050318614724731744 had:0.046678263183789225 I:0.044941745968434255 be:0.04362742400358797 was:0.04136273865501045 has:0.030482336386484257 they:0.0289262910384637 she:0.026965768671896203 is:0.01947025091318731 are:0.016815654580943026 then:0.01672741709902034 been:0.016469749023963434 were:0.014761914055038013 we:0.014235098825573785 ho:0.012090178938824917 :0.21790888446715817 +not:0.24516721951078438 to:0.16147177095639495 I:0.1243789898395584 don't:0.07705843293625829 we:0.06307871444885146 you:0.05206859416770037 We:0.03368693575443119 they:0.028210607468099707 didn't:0.02620370060002809 would:0.021039711240906523 will:0.02096273927554257 and:0.02093265186945521 who:0.01961177562679387 don’t:0.015522178000160945 can:0.014147605718811426 should:0.011677426082218523 You:0.011663263600273638 They:0.010534057442625772 may:0.010253162597353014 :0.031330462863751664 +of:0.09129790931378902 the:0.07369883040827747 and:0.047842263382354346 in:0.04189055351593407 to:0.04045875475680249 a:0.03542341257202578 be:0.02020462051672066 for:0.01979292654746225 was:0.01760256398103379 at:0.017380150555488715 is:0.014984483003968216 with:0.014047653760730413 by:0.01374644383819499 :0.012670486581795598 In:0.01200961464556976 or:0.011563835749786333 from:0.011391516893522809 are:0.011273104484969465 that:0.010755276030689069 :0.4809655994608848 +be:0.16637034519717622 was:0.16334824987682373 is:0.08338072549818869 he:0.08052951864882504 and:0.05979176370922622 I:0.05917132045360175 been:0.05323237642189697 were:0.029894860575957326 have:0.027044334579030865 He:0.023206089362580402 are:0.020876593929330688 we:0.020134939722277544 they:0.017808210252053907 had:0.01650781641418288 also:0.015281253885155855 bo:0.014441731258315951 Is:0.01413278211076435 not:0.01242849590019942 has:0.011073145191007262 :0.11034544701340492 +of:0.09129790931378902 the:0.07369883040827747 and:0.047842263382354346 in:0.04189055351593407 to:0.04045875475680249 a:0.03542341257202578 be:0.02020462051672066 for:0.01979292654746225 was:0.01760256398103379 at:0.017380150555488715 is:0.014984483003968216 with:0.014047653760730413 by:0.01374644383819499 :0.012670486581795598 In:0.01200961464556976 or:0.011563835749786333 from:0.011391516893522809 are:0.011273104484969465 that:0.010755276030689069 :0.4809655994608848 +is:0.18782378248836992 be:0.14484576532067728 are:0.09447177558031762 was:0.08964939640633394 been:0.05212671964712777 not:0.04555488294460193 and:0.03569468526091229 the:0.03437281848723056 more:0.030746050711632694 a:0.02960985177946164 or:0.024894830229594253 Is:0.022551796542947068 were:0.021439080731445112 being:0.016413368156572274 un-:0.01305254870369264 one:0.012048219155616378 most:0.011654560290361675 some:0.008095540533207081 now:0.007661264399753458 :0.11629306263014444 +I:0.16698007531254286 have:0.14135285407302575 had:0.10420047730854438 and:0.0895035967111435 has:0.08901139159690075 he:0.08507627798507394 who:0.03137395451129063 be:0.030665274246293665 was:0.026164285966302523 not:0.025358964078480963 He:0.022924942534956978 never:0.018417232152432936 they:0.014785715592429305 she:0.014556032356974415 been:0.014499340671514059 having:0.01421227530208284 but:0.012984657840677427 then:0.011646170468927743 is:0.010433876405011326 :0.07485260488539401 +:0.10132530864253071 .:0.01586153736849991 it.:0.012994963694550781 them.:0.009972326155771085 day.:0.006466314186158732 him.:0.005963072708890589 time.:0.005952754819220498 of:0.005834450921883061 country.:0.005314225508045209 year.:0.0049247550547799 city.:0.004072303040063511 years.:0.003997040955926161 work.:0.003880377182773483 people.:0.0033836246305601453 States.:0.0031455025043576447 place.:0.0030640999552846737 men.:0.0029656503323313246 way.:0.002952433427976742 out.:0.002933009065662241 :0.7939962498447336 +of:0.16374495768360597 at:0.10637119194877842 in:0.09200753098015066 to:0.07707735370039541 for:0.07125976730470698 on:0.07047994633191061 and:0.052842719796100675 from:0.033475377595949346 In:0.029575959091747654 during:0.02699847842109559 that:0.02451368576345207 until:0.022252103815355827 within:0.021577087041070392 by:0.019781017528441507 with:0.01397805937123127 before:0.013677587643788316 after:0.012846637452722189 when:0.01133233190778724 was:0.01130595681714966 :0.12390224980456022 +the:0.30872615191329905 this:0.08304971596143981 said:0.07225080909968232 of:0.06875014445869812 a:0.053558802765146095 in:0.036571274284351064 his:0.03426285430626768 tho:0.02740960405456113 their:0.02420049359435127 such:0.02331959013972733 other:0.019709836809466624 our:0.017350541546297414 and:0.016305913989594002 any:0.015671788803281777 its:0.015628636756889 one:0.012478896156841186 for:0.011559412716576557 In:0.011379803254389406 or:0.011366427206242381 :0.13544930218289777 +and:0.04568343402661725 time:0.04476507676761965 it:0.027125805281841393 demand:0.024615895223629346 day:0.02347594385446038 him:0.021334018783129113 them:0.0196263547817107 used:0.01876347913734015 made:0.016152732195333776 work:0.016099044233844326 but:0.014947395573726386 ready:0.01476351786038172 here:0.014359831124324516 paid:0.013725837269635714 was:0.013397066816801152 week:0.013292305995555354 provided:0.011906427135922229 asked:0.011572816218006186 that:0.01095608648890882 :0.6224369312312118 +to:0.3776895445794645 and:0.09884506644279242 will:0.051884690072963306 in:0.05069549687455769 not:0.048533944920021437 of:0.029713177457423464 the:0.02930060971068623 for:0.02374651867244595 would:0.023559672678544523 at:0.019881531221688776 by:0.01842576186485842 thrown:0.01723626987752846 with:0.01572139675158549 I:0.015671723092912936 In:0.014138291854891129 is:0.013828107452958063 was:0.012354301204728009 or:0.011375439639646667 who:0.011327271545165123 :0.11507118408513738 +be:0.18993352857334028 is:0.11361302158536545 was:0.08881887390829177 have:0.08078727743236644 been:0.06450982144349643 had:0.046323100931961216 has:0.04033127074621164 and:0.03924020586897781 are:0.032440199402606285 Is:0.028977696182790266 not:0.028835916892212952 he:0.023589078164038216 I:0.021972463219685226 were:0.020956573578522087 bo:0.017910520208893138 being:0.015303083936649973 an:0.014558203043026765 ever:0.012852145987321572 well:0.012020948476740147 :0.10602607041750238 +as:0.06931392982974462 according:0.052071562389565784 up:0.0511867300210483 and:0.040371568633051955 went:0.03351644485287816 back:0.032358406609281 regard:0.03073407747799069 feet:0.02852138506231652 down:0.026379903432040268 owing:0.02466642634685871 due:0.023695193974505355 go:0.022910973192184297 reference:0.020802802907016128 came:0.019883741951819873 sent:0.019874244915639484 attention:0.019565955494145405 come:0.01885185084678811 given:0.018792390567602263 it:0.017366961307524745 :0.4281354501879983 +of:0.38227895347083063 to:0.08106432160676844 that:0.07020967564370062 and:0.053570666876671204 in:0.05284168694492039 by:0.051412193020597075 for:0.03884958130799526 with:0.03008943446206023 as:0.024753277049990294 all:0.020052451141215472 from:0.019722501895067218 on:0.016181680239006645 which:0.01503800489615343 when:0.01494715888708965 among:0.013941976948853086 upon:0.01101870811588158 In:0.009712664760277413 if:0.00932903093336865 where:0.009045966210641418 :0.07494006558891128 +of:0.3345021542057381 for:0.1560497706001807 and:0.0583080101236975 all:0.04832874859476539 with:0.03759193725185337 in:0.034182409366623215 to:0.027202419394829248 about:0.02312446935945655 than:0.020489933541304985 or:0.017551398401206907 that:0.01673560680460003 from:0.016308160570821063 on:0.01492343226767155 among:0.012761870482330434 by:0.011735376727848763 at:0.010597997915690488 after:0.009689434037628283 upon:0.00857772977213189 In:0.008142608572073344 :0.13219653200954817 +feet;:0.18338977497070705 running:0.07648471090484811 feet,:0.0738069581357597 ;:0.052105044484059074 feet::0.0287478330523574 street,:0.0274256385810816 and:0.021974156089513662 rods,:0.01788317888001862 point,:0.0163273216247336 rods;:0.015544659586082298 stake;:0.015480941064124275 chains;:0.014204660065525345 3;:0.013841933532706754 2;:0.01276353190451997 4;:0.01212728695312052 street;:0.011107645262806293 corner;:0.011086184221571111 point;:0.010260121778247174 1:0.009375643980092257 :0.3750627749281252 +it:0.12742760681839546 they:0.09976758641516786 and:0.06908621099971488 I:0.06425854820364425 you:0.06237454415202705 It:0.0620506128959705 he:0.0546597225685064 we:0.04755984115026005 which:0.04617550981934879 that:0.036780291167163 who:0.03038657290406733 They:0.019884395262312466 there:0.01635799293272132 He:0.013856316302272471 We:0.01246648679820885 she:0.012337337594311482 1:0.011488510282348792 as:0.01044699975706853 time:0.00835129936606675 :0.19328361461042376 +of:0.28281245822575457 in:0.08164906359127318 and:0.0642954265890675 with:0.06237824142943612 for:0.05751503342349584 to:0.05497828245185617 that:0.04644716485662771 by:0.03699779237062071 almost:0.03476631864110727 nearly:0.026825185293465826 on:0.021950110299034487 In:0.018600655759736382 from:0.017447767163536666 at:0.014019602734647517 is:0.013225489103653005 have:0.00974827559121721 but:0.009203304288430202 or:0.008060948162919449 which:0.007866224834231422 :0.1302126551898888 +in:0.020541712168268004 city:0.016732453955400926 time:0.011725233120473352 day:0.011116325265014708 house:0.009203733493633454 life:0.009134608217894477 street:0.009027343427699305 county:0.008870566093782088 wife:0.008530102078057314 north:0.007871708706955005 State:0.007805272725014589 friends:0.007707990948625851 :0.00762534342874576 place:0.0075571250415652005 up:0.007524447129518287 rights:0.007505290013679718 state:0.0070727847729058985 feet:0.007040855442101189 rules:0.006954070213008056 :0.8194530337576569 +is:0.19339595277457883 was:0.12676804586826754 are:0.09321649079216043 ought:0.0872470487198269 and:0.04515758946155385 were:0.03965513466032724 do:0.03700975458160706 it:0.03295950705025728 Is:0.030954985853123843 but:0.020259741094306515 if:0.01991762828922547 am:0.019462899136886713 had:0.01767896144602895 did:0.015593062592359475 have:0.013797509157619861 or:0.012586336201493261 does:0.012058431716948148 has:0.009981273176575642 would:0.009717747712118184 :0.16158189971473477 +of:0.3189247819859152 to:0.10905624179226808 on:0.07420039061234449 by:0.06197176226533651 in:0.05554228904916855 that:0.04467342847249739 and:0.044647702977198014 from:0.03616704690525089 for:0.033986389989169655 at:0.03348830717291242 with:0.0244366667667005 In:0.017204398031181248 all:0.0149422265880146 upon:0.011068134350409733 before:0.010055886428853925 over:0.009711909196906808 when:0.009118984465961788 which:0.008875488602245943 along:0.008743923311749544 :0.07218404103591479 +for:0.16918090493983026 of:0.1408989949197765 about:0.1369838536849733 past:0.0575453207595573 or:0.048031602442884826 aged:0.0465861664071047 than:0.041759933865400625 last:0.03267778618283307 in:0.032666515924131924 and:0.03106351071733124 a:0.028298567630497085 thousand:0.023615198441408077 to:0.023388503664628055 over:0.022083841535198264 the:0.021601679350238285 twenty-:0.01550052378807619 nearly:0.014188996335205142 For:0.013307084826417433 within:0.012523041125960028 :0.08709797345854774 +of:0.09129790931378902 the:0.07369883040827747 and:0.047842263382354346 in:0.04189055351593407 to:0.04045875475680249 a:0.03542341257202578 be:0.02020462051672066 for:0.01979292654746225 was:0.01760256398103379 at:0.017380150555488715 is:0.014984483003968216 with:0.014047653760730413 by:0.01374644383819499 :0.012670486581795598 In:0.01200961464556976 or:0.011563835749786333 from:0.011391516893522809 are:0.011273104484969465 that:0.010755276030689069 :0.4809655994608848 +of:0.11107651827580924 the:0.09407485339393402 and:0.07801158052944969 to:0.06491051990229836 a:0.051767951381536434 in:0.030566042345804904 with:0.028150894846433325 that:0.026807490459912892 in-:0.020291076409626317 be:0.01988996081599333 for:0.019655732578663532 as:0.018802624417760944 which:0.017604860005821524 by:0.01532529704416564 or:0.014884616379614904 an:0.014594618866565212 at:0.013706532477117707 from:0.013369259199649434 is:0.012124619707284099 :0.33338495096255855 +and:0.06775867581394844 made:0.056680403495043205 or:0.025111126335228114 them:0.02436046011950043 paid:0.02188214480141234 done:0.02175055151452122 ed:0.019557619814723863 given:0.01901729528227681 accompanied:0.01802661309185908 caused:0.017727775296919598 him:0.017580726831012142 out:0.01739207629155455 taken:0.017244534094393933 shown:0.017129300001489725 followed:0.014585900820990571 that:0.01432008304209683 it:0.014237324817765688 up:0.014007598967327348 held:0.01242728518177852 :0.5682025043861576 +those:0.24218772939034963 men:0.0930899253359357 and:0.06111767038036306 people:0.04652561583360222 Those:0.03197207201437177 man:0.03178431657137418 one:0.025645384369756143 women:0.02187103298401813 persons:0.020296010343616874 all:0.01955052174057912 person:0.016334527761610554 others:0.01533829096207583 many:0.008988493350497732 but:0.008515497270902398 boys:0.008446320623389418 thoso:0.007962167537662112 you:0.007896341602670321 or:0.007563540265714962 woman:0.006700944019349591 :0.3172135976421603 +as:0.1206038360743764 and:0.07365972737773813 is:0.051802042986265354 order:0.03790241637678072 necessary:0.036281675102070504 time:0.03514219705705519 not:0.03370666488763692 right:0.03349640145330493 enough:0.03213824665203337 made:0.029356692367806414 them:0.02882261217269804 him:0.02807528841070846 it:0.025810223583689517 able:0.025655122435993005 have:0.024403531406683047 are:0.021042646316265276 was:0.019507453740885115 or:0.018453640418157825 way:0.016118038605100422 :0.30702154257475134 +of:0.22592315978842256 and:0.10941199964998656 in:0.0864449555611691 to:0.08592369122266576 at:0.08407680639064768 for:0.042303619977232435 from:0.0417347112248049 with:0.03882692720492406 on:0.036817395005252 that:0.03403727190017472 nearly:0.024717742406592785 In:0.020230560783684317 are:0.017627931846562583 by:0.015875008257481754 or:0.0111340429672864 were:0.009463127985093193 upon:0.008743039954427972 was:0.008499755283290741 about:0.007605562725178549 :0.08960268986512193 +be:0.15998102471166467 and:0.11684568970698012 was:0.0837022639488234 to:0.06432446248349792 been:0.046291884166188506 is:0.03840039144359624 being:0.03525443198461049 were:0.030141766211071376 are:0.02351493083398551 a:0.020946570418709277 not:0.016757947480422725 I:0.015531662591455003 the:0.01431878504945246 or:0.014105148071333253 he:0.013926921361952418 then:0.013128820481783267 will:0.011742046825341333 had:0.01064203006494515 have:0.01023682179272546 :0.2592064003714614 +a:0.4413229620841873 of:0.12445351559455238 the:0.09708183424828193 in:0.04029546629843761 with:0.030225172413976216 very:0.028631080040246396 and:0.025584507293450905 A:0.02525969097449295 for:0.019169973490784944 make:0.018844896486664785 is:0.013924929373076544 by:0.013852563172048681 some:0.013145139240523736 no:0.011397954291586304 any:0.011164667139929836 as:0.010345795739572292 be:0.009972343389901913 The:0.009885070559586312 In:0.009798743364696607 :0.04464369480400234 +of:0.12620292965957858 and:0.08839981415433368 the:0.0839729106723155 to:0.07412434585434617 which:0.029577149833414966 a:0.02682924964057502 in:0.026680611185056786 was:0.0245999439168005 or:0.024003312153704468 be:0.02336172176226493 are:0.02080558993047384 for:0.020039188365101917 :0.017483800820127855 is:0.017308221539302768 as:0.014726932139533404 that:0.014071330801349338 con-:0.013345828806917199 The:0.013335503090261054 were:0.012853520123403368 :0.3272780955511386 +the:0.18641401450377768 of:0.11016942961002799 and:0.05951607127121511 a:0.045184007464537004 to:0.034994113492261315 by:0.023592573570558308 in:0.020719953244886232 with:0.014880407526881674 as:0.014753045125134312 The:0.012668070509223712 that:0.012197631810147477 on:0.011196205230995288 be:0.010466148178373444 or:0.009905145539042776 tho:0.008877192518262782 was:0.008769606859425 from:0.008263421590354694 :0.007427949190518843 for:0.006850400142677746 :0.3921546126216986 +the:0.1699800281911206 a:0.10100618257662448 of:0.07872539771313505 and:0.04445343205519203 that:0.03352808201875394 any:0.030024034727096926 to:0.027958413912257354 by:0.02793398781404255 The:0.020714154637776625 an:0.018336529298736377 in:0.015975273271174265 no:0.015675787434184293 one:0.014710883783722671 for:0.013850340991342818 some:0.013787947155683303 or:0.013725125010845015 as:0.012396726172045031 tho:0.010703586721615008 said:0.010488863479021693 :0.32502522303563 +Mr.:0.14695949628455465 the:0.10590239725079326 of:0.08492846598286158 and:0.05674449603432567 to:0.043290657120741254 in:0.024736899675485122 .:0.02091881589932814 :0.016519077943367086 that:0.016493009956320765 for:0.015845782801776915 or:0.01535074485663871 a:0.014864533053336286 thence:0.014089075319996966 Dr.:0.013777194680625259 by:0.012847647602163833 Mrs.:0.012185406860238186 at:0.01197835723425354 The:0.01028062141335848 It:0.00969070701661613 :0.3515966130132182 +sum:0.03352282876311118 number:0.028116684882597106 line:0.019995206059833036 city:0.01946514558931857 out:0.019275318828420953 day:0.01666865340772654 county:0.014872697538657208 amount:0.013254184849875051 Board:0.01252325449624941 town:0.012449555905674143 side:0.011663975251122375 part:0.011517157473718155 County:0.011460540331966697 state:0.011087331502382173 City:0.010878919191854432 purpose:0.01081028255427907 and:0.010297866493795984 way:0.009848747943663767 name:0.009522170936943183 :0.711769477998811 +the:0.15127209454750842 of:0.1303642362630502 in:0.09595620349383972 and:0.06051665727403445 to:0.05461839276470948 a:0.042512879955395065 at:0.029198486579688925 In:0.026415364103608275 or:0.022718843448188985 from:0.018402022978186827 on:0.01774758727880515 for:0.015126486824965427 with:0.014230635636677536 .:0.011450933826912696 by:0.011183941455778345 an:0.011078223618358677 his:0.010577285464676177 tho:0.009332554796149481 their:0.008905762152735575 :0.25739140753673057 +that:0.16063443501363994 which:0.1183256232173373 and:0.09479713415045919 when:0.09315853730529455 as:0.08494936499363887 if:0.04565415470197622 where:0.03678334203130333 to:0.028576734315663235 but:0.026717927406510064 would:0.020881038175543796 what:0.019052468509917247 will:0.018814295685066342 before:0.018531065597764646 time:0.017106702524304483 until:0.017016979783269867 When:0.01651117304564814 while:0.015937834416991346 whom:0.015165183687584611 Then:0.014813226239015976 :0.13557277919907085 +the:0.1642753737846247 of:0.11003937109728067 and:0.07186843392445678 a:0.07043609442665971 to:0.04494731571662324 for:0.03005702864455994 his:0.02754126987142542 in:0.0262714410463965 be:0.02444461689497975 their:0.020965250164334415 at:0.01973962295766249 was:0.01750099903491881 or:0.01663624994072043 by:0.01598152192035976 is:0.013386919672569395 as:0.013315675199845715 other:0.012283262098884314 with:0.011920126365511416 tho:0.010946573043870277 :0.27644285419431625 +the:0.09634276551203087 and:0.08801011869502046 of:0.05280589157401784 to:0.04520657428476919 a:0.03310922401710618 be:0.01853923424674618 was:0.015965498819992097 in:0.015927835772060275 :0.015572209704397894 .:0.01502350399661907 at:0.012355938635927412 for:0.01166530175350925 by:0.011263424727344467 is:0.011197295174142247 The:0.009719505975174542 his:0.009218483899100263 Mr.:0.008786357146764541 that:0.008738823894942205 I:0.008452573756993287 :0.5110994384133417 +in:0.2944603908081736 of:0.19917201094768597 to:0.07521391478957451 In:0.07047054640595465 at:0.045121631709729 on:0.03814711719727018 from:0.037753685385569745 by:0.02863113726911069 for:0.027116265312394517 that:0.025219865624757407 and:0.02363437751511377 under:0.021945990958438574 with:0.014782020961339053 into:0.01133654207670342 through:0.010328722304657872 over:0.0091658308832533 upon:0.007985215028359399 about:0.006813453804514314 before:0.006678066732451603 :0.04502321428494845 +the:0.08448067500728661 and:0.061450066002022824 was:0.05247243283229913 of:0.04829089863251504 a:0.04121205726926033 be:0.03674824857455001 is:0.027363238792244816 Mr.:0.025126640124557467 to:0.021179292121248156 at:0.02069220321487059 an:0.01845618374123717 in:0.01705973928122226 been:0.014959887380169542 his:0.013420866233042731 .:0.012678447698726556 were:0.012538856234738523 not:0.012403705574996777 are:0.010788017175600054 her:0.010299732850675107 :0.4573788112587363 +an:0.20901592761272536 the:0.1522935493596876 a:0.08269384148789821 no:0.06579947595302262 and:0.05729339012575293 any:0.031778442539481914 of:0.030995858967225485 their:0.03099146290272124 due:0.02947496780713239 his:0.028433852662437087 great:0.027720379802448 equal:0.020703562435346615 this:0.019415978033355864 or:0.01662394800375987 her:0.015678137762272722 its:0.014360967519149783 good:0.014183347359230877 as:0.011934387797674313 special:0.01186384871482018 :0.1277446731538569 +of:0.21224044705796113 to:0.0995426874795096 on:0.08647273955487508 and:0.07908801008693425 with:0.053507914200259084 that:0.05027391296614105 by:0.04712637079577179 in:0.04575238513668195 from:0.036794656458403525 all:0.03277340947343123 at:0.03067265975493285 upon:0.02372670784097085 for:0.022679906308219415 as:0.017341323224009473 is:0.01192604680634589 On:0.0118450090282875 In:0.011514605729792926 but:0.010295897074245578 when:0.00952362191172361 :0.10590168911150322 +of:0.17302375232803982 the:0.15446647157028942 a:0.06708049845193627 his:0.05629608351316697 this:0.04188760360450751 and:0.02966058310065174 at:0.028908988699213108 said:0.026894804322619533 that:0.021014896234886893 our:0.019765335327755363 The:0.01894625205105135 her:0.01626488527997769 for:0.015913998361354997 other:0.01584984350811432 or:0.014947840126024127 their:0.01489177733456945 one:0.012509571542080477 my:0.011193880979213304 tho:0.010723456797067352 :0.2487594768674803 +the:0.4148444056578701 of:0.10082677616594699 to:0.06876419517325406 on:0.05328725182453099 at:0.03667652766913667 tho:0.023196849565633663 and:0.021073559376262395 The:0.013964149963329843 said:0.010568552738164792 in:0.00941921097950981 tbe:0.009417098052495954 from:0.008666245694673672 :0.006211164207179299 or:0.00618528205042356 First:0.005842900335204607 White:0.005135812068094169 for:0.004899427758836753 Great:0.004636964330132323 about:0.004498605384391421 :0.19088502100492888 +and:0.08934296525867834 of:0.08068838607300491 as:0.07853645433812198 the:0.06307320057451939 to:0.042658746496865775 be:0.030835544751753347 such:0.029703590012664483 much:0.025794511891263566 in:0.023621249210533997 so:0.021449367110620385 is:0.021260609143037765 or:0.019920658237143826 a:0.01927671572579788 his:0.01906207551381598 was:0.01720359984272631 are:0.013935218166333807 their:0.012335998801341931 for:0.011516936419171063 that:0.010287085618050218 :0.36849708681455506 +protest:0.051220008110801594 and:0.036038989580035666 voted:0.03168875410589515 made:0.028738841093245707 is:0.02779406039743586 claims:0.027271842822994937 fight:0.02620171074878233 up:0.025937817249197304 taken:0.020650223999946583 vote:0.02061104141685548 charges:0.020596690675151325 guard:0.01942825896941507 brought:0.019163614777151537 protested:0.018953197406729117 war:0.018854018392353504 assessed:0.018197866519885534 out:0.017950695593396047 as:0.017661169513566995 it:0.017155306315336433 :0.5348858923118238 +was:0.20077858522501413 be:0.1451477337245599 and:0.10830805785035678 is:0.09974339917072865 were:0.06155802796982263 been:0.05573036633144403 are:0.049405686162051037 he:0.025682248174380407 being:0.023404585762927615 had:0.023339912106048067 as:0.021466739073449165 not:0.021399180694629934 when:0.02014427658010597 have:0.01445927138694391 has:0.01399132620134626 which:0.013208137116208983 Is:0.013199526560408056 if:0.012932273063036341 or:0.01145728533889347 :0.06364338150764465 +and:0.03868242960999506 as:0.031124813427855922 went:0.02352509775927722 him:0.02196555539050794 them:0.018760608639018784 up:0.017985449426794205 is:0.017894175620344187 go:0.017174904667157563 able:0.016756848979943888 going:0.014481672239490295 it:0.014128375989346808 was:0.013277058274565138 time:0.013249953793837373 not:0.012469887553778763 began:0.012465717758716884 way:0.012105610030480113 back:0.012090864562211581 right:0.011941707822828511 amounted:0.011564315359310868 :0.667354953094539 +and:0.17016813661234315 or:0.13294176641097527 of:0.08469571948866783 the:0.07986882282486836 with:0.04954851708444387 are:0.04469420226620634 about:0.03379922953152775 but:0.031151149217468737 by:0.030408904931901046 were:0.028987924176468345 for:0.02650863368344185 be:0.026453973301733012 in:0.025311046380051373 was:0.02320699340134039 only:0.020076744013981417 to:0.01824605158620372 than:0.018077006387025137 from:0.01673498855435729 is:0.014668805317173532 :0.1234513848298216 +the:0.07308391748213149 and:0.0650236830030406 of:0.06160769942055397 to:0.052268247186185425 be:0.047076308054616864 a:0.0372396837426395 in:0.024252681833945605 was:0.022488248066258144 is:0.02167905136294673 for:0.02153860696418792 are:0.020623701936193742 or:0.01929925567751662 re-:0.01871171112926931 been:0.01861238611348457 pro-:0.01601091340941376 his:0.013531807626344868 not:0.013315154707748283 were:0.013106637980199716 he:0.012779513704430508 :0.42675079059889237 +it:0.06358544743005541 looked:0.060735245267129624 made:0.05151133691831895 set:0.046403382905945485 taken:0.03952918921663308 and:0.03935389070422924 put:0.03253702142353907 them:0.029981018837205102 make:0.029706540465872535 kept:0.028122676570471742 came:0.028008226387600057 come:0.025607112018796424 keep:0.02310289414913236 fitted:0.022347772093441895 him:0.021805625321804484 picked:0.021723476521135578 be:0.02136167259406046 get:0.019166472179970914 held:0.01809308881354245 :0.37631791018111516 +the:0.1654928142320727 of:0.119493587472933 and:0.06168261930044444 a:0.048574029023140584 to:0.038468109911174254 in:0.02349522245685091 his:0.021901975093605582 be:0.02022688537938825 was:0.01805385314937685 at:0.017428649124626994 their:0.014916561647233 is:0.013805526813073898 by:0.01285572926444329 for:0.012835587296745915 this:0.010971819598891671 tho:0.010734883371335959 that:0.010247627838145455 :0.009342445385204621 he:0.008991339565039455 :0.3594807340762731 +the:0.11274823966931571 and:0.08329996793360815 to:0.062372082173126384 of:0.05346002906215973 so:0.0299749817344208 is:0.026294180790411077 be:0.020260006954324915 he:0.018124449911071136 was:0.016351044211737983 re-:0.01567649125103956 Mr.:0.014726716630740086 in:0.013675410003338988 for:0.013272602215284653 a:0.012159264338821467 I:0.012040910229586727 or:0.010977326121126826 :0.01035107289213954 are:0.010219913969554774 not:0.009881708091297656 :0.4531336018168938 +him:0.00995682585475344 ;:0.009578047575377457 in:0.008696671909336595 and:0.0067477953102752924 up:0.006684620084876721 it,:0.006531038186150485 time:0.005950815460353075 them:0.005897963550802938 here:0.0057609556670419025 man:0.0056244285507194335 him,:0.005449379356419225 :0.004722910860127968 them,:0.004524703195838028 work:0.004339392090997091 men:0.004328732490787043 out:0.004281758514015127 :0.00424077083232915 made:0.004089303804641843 name:0.004063703931859264 :0.8875301827732979 +one:0.1028303141280697 part:0.05963429477052991 out:0.04766456937681193 some:0.031418679026461914 members:0.030764490253327767 side:0.029940657362655835 portion:0.022063658796890564 office:0.020457735219956013 member:0.019726706386316174 end:0.019666887540649894 tion:0.018667441728710307 parts:0.016814747270460957 people:0.014112771422418794 all:0.014072739582212475 any:0.013183573287639892 One:0.013083578354183906 that:0.013024335602903442 account:0.012482348155001894 many:0.012077825070275192 :0.48731264666452345 +matter:0.05268901635351829 number:0.051436431390812276 state:0.039076488160342704 out:0.03191638884626762 amount:0.02709504348001874 years:0.024545386939960258 State:0.02335369012469611 system:0.0208598084839936 place:0.020525405159288947 kind:0.020304834091138292 point:0.02001044740634189 that:0.019225396225324796 sort:0.019145624517502076 question:0.018360945349987254 tion:0.018288387216481992 lack:0.016901431751784154 case:0.015426619098300193 power:0.014773864250242743 means:0.014706655748402936 :0.5303581354055952 +It:0.21015888141231315 it:0.09197000896225663 which:0.05127475089380884 This:0.05071941842358521 there:0.045358976632273576 that:0.04396962511570828 he:0.03161806240056986 and:0.0228156936596822 this:0.022323758075659315 There:0.01737687112743756 That:0.01569048499581738 who:0.015517013450377082 He:0.013920420720900377 what:0.011847837780819626 one:0.010863123869925028 What:0.01078923059326221 she:0.00727983896784199 :0.0068461007163223625 I:0.006690390683420085 :0.3119695115180192 +the:0.41851056645473694 an:0.22151669316972591 no:0.07216367519699889 any:0.054014828556012875 The:0.021936813676246968 tho:0.02076082098702446 a:0.01953124333014009 his:0.018396253869983968 this:0.01458437464133331 and:0.013622588943062564 to:0.01177529787406287 same:0.009633346695014113 of:0.0091284616785981 their:0.008657080801013836 some:0.008270301226731317 general:0.008238862875020809 erroneous:0.006853632649392517 good:0.00656020598281519 tbe:0.005984142357915285 :0.04886080903416995 +the:0.13173280904209572 of:0.0944879538491148 to:0.05706774040253535 and:0.04265832929118357 a:0.032056927629037044 in:0.024943012585684304 on:0.0235243081780458 by:0.02012601461093651 :0.017990277850825017 at:0.014678549172080795 or:0.013602282235891824 that:0.013497831700134846 The:0.012678576003607849 from:0.011379003861682859 was:0.00968232780868156 an:0.00955246955222774 as:0.009433557049804015 tho:0.009275770220647944 con-:0.009085522682874728 :0.44154673627290775 +to:0.4033356182536038 not:0.09895952699847682 will:0.080211675757289 would:0.07235780284294077 and:0.05704053918258836 may:0.025188298013410635 who:0.022018701275200947 they:0.020725872688232668 should:0.02026588342091768 we:0.018891285186691552 must:0.016897754533368545 I:0.016260254980500988 can:0.015010723390300662 shall:0.01480993881030314 that:0.011599408523924003 might:0.01145167941765829 you:0.011207940762975483 could:0.010670314182852003 which:0.0100912883959756 :0.062005493382789 +the:0.2635153510458369 of:0.15465891901026127 and:0.12205744366706907 a:0.07114451196921 The:0.04311369010453114 in:0.04191306256404645 that:0.02681354804507268 for:0.019163479517565012 or:0.016770337723175228 to:0.015508517979212546 tho:0.014179932583478699 with:0.013315893794373772 his:0.012015791311719587 other:0.011671167197109835 no:0.011502757865191312 this:0.011363920830210423 much:0.011189622499008702 on:0.011037817784222758 In:0.010866998229094397 :0.11719723627961025 +of:0.4350051600876088 at:0.11093966563462418 in:0.08896197519671334 to:0.05938492061010762 from:0.036911208881905445 by:0.018649305651166726 :0.016216270005465595 In:0.016112132889199576 for:0.013786396823904142 and:0.010085656952339268 on:0.00904659820779331 .:0.00867798636739866 ot:0.0066686566982255835 ol:0.005917776512602256 Mr.:0.005501799814745474 County,:0.004893512174130464 county,:0.004186975774508441 with:0.0041268061481900525 the:0.003999872138217472 :0.13992732343115358 +the:0.25779511833550556 to:0.14701169090333582 a:0.11800884525419739 and:0.06630989405717981 of:0.044106730327918085 in:0.04336020392900965 his:0.042877834589075715 their:0.04026394656313628 its:0.03054590956292558 The:0.026862366496995974 most:0.0195682118306705 an:0.016311489023679872 our:0.015050112200200826 with:0.012774030359009944 for:0.012346273390077716 In:0.01141480727848424 will:0.0107989918608817 tho:0.009976542333515349 your:0.008944186262506969 :0.06467281544169307 +up:0.01843194889457155 time:0.017320970697701728 him:0.01324048313104908 it:0.012800243806626099 out:0.011682329497572527 due:0.011223632032149426 in:0.010701931114108505 hundred:0.010158891114247956 long:0.009140984130126342 good:0.008769910800603969 down:0.008737960282340182 them:0.00847816394239441 men:0.007369185579820129 it,:0.007063267302606485 ;:0.006382649370151993 them,:0.006290248960451315 more:0.006160753185583862 made:0.0060915802528366085 work:0.005888137005883612 :0.8130667288991742 +of:0.09129790931378902 the:0.07369883040827747 and:0.047842263382354346 in:0.04189055351593407 to:0.04045875475680249 a:0.03542341257202578 be:0.02020462051672066 for:0.01979292654746225 was:0.01760256398103379 at:0.017380150555488715 is:0.014984483003968216 with:0.014047653760730413 by:0.01374644383819499 :0.012670486581795598 In:0.01200961464556976 or:0.011563835749786333 from:0.011391516893522809 are:0.011273104484969465 that:0.010755276030689069 :0.4809655994608848 +of:0.15918500544824787 in:0.09884119920939718 for:0.07009690206434203 to:0.06839378517453572 and:0.057317707314369866 with:0.051438189683882383 is:0.0490731633534343 as:0.04839425614530456 was:0.04222527291047141 by:0.03498945153487588 that:0.032275916630235865 not:0.03053209494173079 be:0.02953494692312648 In:0.02699270654939367 have:0.0215837738507122 had:0.01915715778346473 on:0.01825670902075816 such:0.015423494182884554 made:0.014924719113033471 :0.11036354816579885 +his:0.17016841774246597 the:0.13584730563922096 their:0.11050040700932219 of:0.09363342698233726 my:0.047803836080283685 a:0.04145823047232243 in:0.04123049158179871 and:0.03801780904394743 her:0.03545418767682119 its:0.030629620429655603 from:0.02942266179933674 our:0.029220538233781172 to:0.021109686335973717 at:0.01548408284798159 your:0.014771166758804908 In:0.009590278037027717 by:0.008806104286327585 or:0.008521399457178253 tho:0.007429112783317824 :0.10990123680209511 +that:0.16832451653748762 and:0.16317551195275604 but:0.09202228048090219 as:0.06626898981545905 which:0.05056182452516285 if:0.034268175887251145 when:0.0327999336955599 where:0.02391654490512962 But:0.021638226096886436 because:0.020516735853829505 of:0.017875962661562897 And:0.017367123587138943 for:0.01715484095146282 If:0.016077584172624653 what:0.011042818726600803 though:0.010176208114312196 until:0.009969674033922531 while:0.008769541776912644 think:0.008148981878890557 :0.20892452434614764 +mortgage,:0.061775792622098605 person:0.037430946809143495 mortgage:0.021886447561881635 one:0.02117739107767436 there:0.01993226338927051 on:0.017387329843599593 law:0.016739548771831057 or:0.015671133203875597 more:0.015625638317778502 whether:0.01454520251850112 and:0.012223788235355656 State:0.012210919094014823 little:0.012205506142643024 two:0.011936986285469912 state:0.01152265630526578 them,:0.009357420556485727 States,:0.009177354614189236 any:0.009060721904872154 cause,:0.009025393029888196 :0.6601075597161611 +he:0.22622259042208995 I:0.1004582855189542 who:0.0651637977762813 they:0.06362449205921387 and:0.05981351091183429 she:0.053044172363501695 we:0.041892130442560946 He:0.040532384247853756 have:0.03349601886351233 be:0.02607065855895905 which:0.025989712753041908 it:0.02149700077450965 that:0.020188485096862368 has:0.019055480468009537 She:0.013184156746030622 lie:0.012719033618925648 ho:0.012441148590870942 had:0.012005834569025245 1:0.010737945619428183 :0.14086316059853451 +in:0.17312309315603053 of:0.15632570449203967 to:0.07651541093564415 from:0.04986921191570722 for:0.048870513603984075 with:0.04692521418371988 by:0.037567204038360315 In:0.037167483339101186 and:0.02533685384255713 at:0.022818872773087525 on:0.021739674781869354 upon:0.020973717014937183 through:0.012021245294680518 after:0.011707367759601345 that:0.010101536778144774 during:0.008834534561374622 under:0.008549395095189215 into:0.005900008654259652 over:0.005611245418422071 :0.21904171236128958 +it:0.11509957170562406 It:0.10357538892429134 he:0.09188592252152498 and:0.06951760933743552 which:0.04884460154946575 He:0.04645326398193094 I:0.04459016146321532 who:0.034255187054832874 that:0.030698592208036883 she:0.021623665995126894 there:0.01391539017988009 This:0.011991774578312573 ever:0.011234570730954366 as:0.009458411798064326 She:0.008903953121983629 :0.00857743661403504 1:0.00802750131026791 this:0.00763954581506271 ho:0.007107710973888451 :0.30559974013606633 +of:0.1799630211300845 the:0.10816493500376 a:0.08486599196128079 in:0.07781774010091175 to:0.04983590368634399 and:0.04188418519432874 for:0.02578832288793225 that:0.024173375539848566 from:0.02130780189584976 by:0.021203636140182617 with:0.019379200116896263 In:0.016124157676448723 at:0.015915390259209402 be-:0.014436384281580842 his:0.013084981442175842 on:0.01263794593155816 an:0.011504752511395622 be:0.009916735920300032 years:0.008757844183941132 :0.24223769413597104 +and:0.07306328777271014 days:0.05688013125390353 years:0.051905896527411004 time:0.04038298402385797 weeks:0.036877349838679754 that:0.03608061344335821 was:0.035230041818096455 months:0.034915244307802365 ever:0.033869105782425996 minutes:0.03044224912417628 day:0.027779094756762306 night:0.025246498934600674 but:0.025124472810351964 long:0.024253777354045537 appear:0.024060097946923355 or:0.023750931655864563 brought:0.0235694093112575 hour:0.022428521019355822 shortly:0.022347897679090886 :0.3507923946393257 +up:0.02153959933109552 in:0.01661445369218013 ;:0.016226381234499335 him,:0.011766358360935739 it,:0.011179168910900799 mortgage,:0.01069537272259638 years,:0.009996764480306786 them,:0.009866847757769975 States,:0.009030182941479824 time,:0.008388891608179004 and:0.0077312162791636765 country,:0.006904855389667905 here:0.00688231260403537 out:0.006699963685640239 year,:0.006665212125627344 him:0.006486260745332394 thereof,:0.00626374857437489 people,:0.006189286031481788 day,:0.005978439109033835 :0.8138946844156991 +in:0.323871604193026 of:0.3184015431372187 to:0.07189016480819974 In:0.048817954152910965 from:0.027152487426091505 by:0.0260529662333233 with:0.015504793628104571 on:0.015319564894389943 under:0.014389448123454317 for:0.014329173961398904 at:0.014288296442655701 into:0.014067890291536121 that:0.012266982011184143 and:0.01018008180736195 throughout:0.008934036417394564 over:0.007582917596530386 iu:0.006095206218019665 through:0.006071548453123416 upon:0.005328764184208711 :0.03845457601986739 +of:0.27305484652557455 West:0.2685555938650791 the:0.09643334095332276 and:0.08654171812888822 in:0.0447194962829433 by:0.0405778180359568 from:0.018545214041427102 said:0.01772613316686273 for:0.01735800307593522 to:0.00993189227406376 In:0.008710221742365656 The:0.007553634463278758 or:0.007262441177525674 that:0.007079883124886491 as:0.00671600995230607 with:0.0062512938432146975 all:0.005017218091937237 tho:0.004016477866183751 ot:0.0037426250893830525 :0.06920613829886506 +of:0.062073346096913146 Mrs.:0.04098003413620128 and:0.03935448896052269 .:0.035713188629253226 Mr.:0.02463205933481361 Miss:0.023334263655718276 :0.013167775966257926 to:0.012914069545314745 H.:0.01143046774299818 the:0.011249740893598937 W.:0.010600337572547316 C.:0.00988618641906722 M.:0.00973372758101363 J.:0.009508195865690463 B.:0.008009625288514883 S.:0.006948086500846768 John:0.006933689789732817 in:0.006801678040866488 by:0.006558252914419941 :0.6491707850657085 +a:0.197711482257656 this:0.12304340085481828 the:0.1037676230339126 and:0.0882859860887488 no:0.04454488304114696 as:0.04106410552023558 every:0.04045626397671615 his:0.04021190172522134 that:0.03107253113542321 other:0.030328311602665626 any:0.0292817198351994 or:0.023548007195154853 each:0.01963341031827508 good:0.01731182338987787 our:0.0172558664795964 of:0.016875401793075534 my:0.01640446217990176 one:0.015607499242322069 her:0.015412435967998182 :0.0871828843620543 +and:0.07715595865270657 the:0.0712763214959337 to:0.056550982802711904 of:0.050485898381221535 in:0.03829127195780908 or:0.031039806855240187 for:0.022251578513476464 that:0.021166781684166545 con-:0.017866085718547305 re-:0.0166654029960356 I:0.015099680186038179 In:0.013694641097202611 :0.013562125033985463 will:0.012295053352388683 he:0.012282748550097044 dis-:0.011972244120823731 which:0.011402155735138333 in-:0.011220291915777699 is:0.010950845549635636 :0.48377012540106373 +the:0.11443649299388542 and:0.08822373245387777 of:0.06930583120548785 Mr.:0.03570692869609666 a:0.0349293389050599 be:0.02998128815505529 was:0.02883381026988142 to:0.019484046475667975 is:0.01854115270415319 are:0.017104912899390482 The:0.015324750909638191 were:0.014446753709373539 or:0.01391793116120021 he:0.013765279905928662 Mrs.:0.012397441784125567 been:0.011598209748444634 .:0.011520458674043922 in:0.01064422755083645 that:0.010299566900175137 :0.4285378448976777 +of:0.156181881317199 and:0.11149093170644095 in:0.08134799634970136 on:0.058201668116023876 to:0.04456710829352993 from:0.027197659453966096 said:0.025059497034517677 fact:0.023567966304418264 for:0.019857521812911325 In:0.018689844736517785 is:0.018503072395372057 all:0.015433151092983032 by:0.014020121537114594 with:0.013703786685209359 but:0.013370172481685578 know:0.011216974563563598 upon:0.011043787425895285 was:0.010943315016167368 believe:0.010862046914454044 :0.3137414967623288 +and:0.13512517065343518 the:0.13200384167655865 a:0.04689952365373066 hundred:0.039613903971384375 two:0.0378628455994003 one:0.030652969907074154 or:0.02833844081373729 few:0.02784525287110001 of:0.026078076398829815 thousand:0.024805802338289464 five:0.02446725741698599 four:0.02037031398461472 fifty:0.01822923480223075 twenty:0.017461612628272265 50:0.015987820497836088 ten:0.013822641525213706 The:0.013685603174318241 three:0.013303744909451753 sixty:0.013105216706388088 :0.31934072647114853 +it:0.2213689231572647 It:0.1341771841527435 which:0.0759000042312425 he:0.04747414040376358 that:0.04176651982644409 what:0.03548377411178176 who:0.03359667548631392 and:0.0214668813124735 This:0.018981436351769736 He:0.018569682156049226 there:0.01666497507027669 work:0.01238842472797184 man:0.011743188756442932 action:0.011055168084149924 she:0.010540387722207016 land:0.010539373584742011 effort:0.009626813985195645 as:0.009360606496864047 life:0.008590030719441075 :0.24970580966286232 +it:0.1559622243675163 It:0.08728451051768386 there:0.07607925895626716 and:0.05728253228372171 which:0.05565787144648829 that:0.04281233060676907 they:0.041188625254281554 he:0.038054063563270325 I:0.024138554066638385 who:0.018310559195373936 There:0.01651866699004309 you:0.014407216044184887 as:0.011883094565108014 mortgage:0.010176283577293714 this:0.009692637953303978 He:0.008555730541283425 she:0.008555479922333683 This:0.008523935219995369 They:0.007827669765537419 :0.3060887551629058 +seems:0.10533731715594809 ought:0.08540800787654407 seemed:0.05993859310596644 seem:0.059597636456045204 and:0.04862942117800906 is:0.04405378225685827 said:0.04319155343924715 supposed:0.037444323532873816 not:0.036232755509214475 as:0.033034600924368766 was:0.024426522341206073 going:0.02331430968190462 enough:0.02273536852789549 appears:0.022480920310009915 likely:0.021445431245536477 him:0.021437276507021992 able:0.019225153339494032 like:0.017388351905968998 glad:0.017109834262067216 :0.2565688404438199 +of:0.09129790931378902 the:0.07369883040827747 and:0.047842263382354346 in:0.04189055351593407 to:0.04045875475680249 a:0.03542341257202578 be:0.02020462051672066 for:0.01979292654746225 was:0.01760256398103379 at:0.017380150555488715 is:0.014984483003968216 with:0.014047653760730413 by:0.01374644383819499 :0.012670486581795598 In:0.01200961464556976 or:0.011563835749786333 from:0.011391516893522809 are:0.011273104484969465 that:0.010755276030689069 :0.4809655994608848 +the:0.15888489848787077 of:0.10699397621361469 and:0.08639565097306734 a:0.05305230481606703 to:0.05231383081485678 his:0.03115916646424641 their:0.0280687209884888 be:0.027291084841198205 in:0.025540654163341062 was:0.02151296707537194 at:0.020729478990629494 is:0.019628223240764655 for:0.019201511473783586 or:0.013957385665255664 this:0.012843667100693729 its:0.012454308602223643 not:0.011853631206141073 all:0.011311377251176188 with:0.010889032585787148 :0.2749181290454218 +the:0.7851508141809233 The:0.07485636791487303 tho:0.03302362936737988 a:0.027833931803067837 its:0.007895140038675919 his:0.007793951158288139 tbe:0.007759271883071887 very:0.006179910368624303 and:0.005719299251337866 their:0.005590262947812766 this:0.004602908772463942 our:0.004427144246948372 an:0.004356018905003747 my:0.004025382199917317 of:0.0035580738340160126 your:0.002345573334597113 no:0.001986956055464664 Tho:0.001985321688583556 her:0.0013268904450799597 :0.00858315160387038 +the:0.22720529696510744 a:0.13178321863114228 and:0.09600591979525419 of:0.06169657824385947 he:0.028551383881932117 The:0.02131278635979303 that:0.0190681152200096 from:0.018669285829020728 our:0.018416132119249935 or:0.01838805053150789 their:0.017590805736719808 which:0.017118584349041243 all:0.015533387196331272 his:0.015341598123138865 as:0.015111867830290964 tho:0.013419211120897636 it:0.012875582919194776 said:0.012513801578649049 :0.01197246171558513 :0.2264259318532746 +of:0.12481486260112419 in:0.11861260365474448 to:0.0683177044377168 and:0.06576558010228967 with:0.06306601772907076 for:0.05700650348729665 as:0.05102852155400488 that:0.036478836485435415 is:0.0364096500166965 by:0.03601076263387916 In:0.034678529766458514 such:0.03252981005133624 on:0.027241679189401083 at:0.026707058390502213 made:0.025106991621745338 was:0.024497315773541136 make:0.023682831057370003 from:0.021769878599673623 be:0.018159700485565096 :0.10711516236214826 +the:0.11919516938815296 of:0.07230453158552728 and:0.05781056740443249 a:0.043018564803886335 to:0.031305092790907506 in:0.020848713353460488 at:0.014270110001066288 .:0.012526810245749479 :0.012413283442322082 for:0.011719122709941797 by:0.010808400946589808 or:0.010404172990115616 The:0.01003576004804544 with:0.009811868184449042 tho:0.009295902015355835 was:0.008924239095331684 that:0.008672304223433876 is:0.0085591147338948 be:0.008335143826716943 :0.5187411282106204 +enter:0.06270755427820027 went:0.05416030459810745 put:0.05272619621307382 it:0.0455846185644705 go:0.04460636620864621 down:0.034777264442219555 came:0.03370286135664425 them:0.033525971399909066 entered:0.033428077424349986 fell:0.030928147452427106 him:0.03084830184513951 brought:0.029199042832362493 up:0.028892586268422994 out:0.02742708846044796 back:0.025796336998986515 thrown:0.02571650239009518 converted:0.025592550464184342 come:0.024341372905034644 divided:0.021681072567567187 :0.333357783329711 +the:0.3181661920423634 of:0.060290785057072555 and:0.05232795113056339 a:0.04792451466926244 by:0.030686522901707935 tho:0.021878135980350537 to:0.020643395145861772 at:0.01877714161474226 one:0.016523040728273604 with:0.015784758798058202 all:0.014555158754849355 or:0.01418421289909043 The:0.0129468463824903 his:0.010648084233856525 tbe:0.01060968140025488 other:0.010490987300067898 that:0.010255730605807017 in:0.010172948045763889 as:0.009930873253736656 :0.29220303905582695 +Mr.:0.08378894818641144 :0.06237775712231248 .:0.03965921976683944 them.:0.02333902369400403 Dr.:0.02093286133598311 it.:0.020471343522246707 Mrs.:0.018944666055566415 and:0.016543542863308072 said::0.01648855097828399 Gen.:0.016166860909842342 March:0.012229796542980339 time.:0.012129784724198749 the:0.010720122666821087 me.:0.010026297202992382 April:0.009722534604074266 him.:0.00948446421078486 day.:0.009151362703253254 May:0.008923068751565986 called:0.00889379309607922 :0.5890060010624518 +the:0.13476476805868978 of:0.10335620763565354 and:0.07298982432450123 a:0.05493260493485237 to:0.03943912225916912 be:0.027111183577981188 was:0.024964516309082224 is:0.021318618791884996 in:0.01997329939240196 or:0.017463858114689805 his:0.016747288852367714 their:0.014456994452191905 been:0.014017672545055988 at:0.013647384018866159 are:0.013377045933421108 an:0.011360803488482838 for:0.011045703440883426 :0.009853875281147081 as:0.009770129219928711 :0.3684090993687488 +State:0.04288947042886689 state:0.03864812398099199 line:0.035611683105495694 city:0.03192190559607851 County:0.02824834726750477 day:0.021668429981441382 county:0.019335932211867548 corner:0.018061881249617807 side:0.01731703690249909 out:0.016122362114940534 City:0.01578186734777594 District:0.015298163491214578 piece:0.015204915610279082 part:0.01452355526839506 sum:0.013014393338039667 Bank:0.011405199500341986 name:0.0110365642354332 that:0.010976157640929192 and:0.010925333647960406 :0.6110086770803267 +one:0.015552536992080472 more:0.014252271697624306 on:0.010631301787611593 day:0.010222750824534239 two:0.010216157614982159 person:0.007504694644314241 in:0.007364820929323563 man:0.007179188731169107 law:0.006205362369136604 action:0.006166303509128973 and:0.005659786788634644 city:0.005177234665142273 three:0.005130416479837977 State:0.0047265097104810415 to:0.004696031397422901 ten:0.004594585978494318 of:0.004463781172886088 town:0.004231879326219736 year:0.0040256313925199315 :0.8609987539884558 +street:0.014820597692709225 ;:0.014651068253704075 east:0.011341746009139174 hundred:0.011150852134308421 due:0.011094975917533768 feet:0.010933996006179246 Mr.:0.01047807839159929 up:0.010255081116400487 each:0.009877524788650314 costs:0.008748927264370874 .:0.007940523714923644 line:0.007559852131253113 thence:0.007549945152729557 mortgage:0.007373271893923101 one:0.007172084537933809 land:0.007154035981939673 in:0.00693198642013833 and:0.0065185349447825615 house:0.006189933085461907 :0.8212569845623194 +and:0.1255113805931311 the:0.09000585840923671 to:0.07345627983697275 of:0.07199335880855791 as:0.05395186257775681 years:0.03732480652885222 not:0.03144244135894387 it:0.02662012842684666 that:0.025315590924529077 in:0.023622595662769648 a:0.02099130154622731 with:0.02089513000217366 which:0.020171661324289016 by:0.02000522624130629 is:0.019507387974384786 all:0.01690508895666825 for:0.016613753676393377 from:0.016421006326015678 have:0.01592662725783975 :0.2723185135671052 +the:0.43816278591458474 a:0.23605039271959105 The:0.09284776969411537 of:0.03090258833327142 very:0.028788966848285233 and:0.02200142460749542 tho:0.01767260817938564 as:0.013637789456950334 that:0.01093177269220982 most:0.009626719062953861 all:0.00924790981319436 with:0.007451921178595915 his:0.00719939518137614 is:0.006784623887781689 tbe:0.006765724588427591 be:0.0066756017490944616 was:0.006529981950597665 by:0.00635225967330769 this:0.006000743785412486 :0.035369020683369085 +said:0.10710754077682492 Main:0.06793684770494665 the:0.046021591399958976 Third:0.044729356404530886 Sixth:0.03887053796277136 .:0.03482620243186208 Water:0.03199225533639289 Fifth:0.027714310848963208 Second:0.024930294300819087 Seventh:0.023379185888117247 Franklin:0.01973212588467926 Elm:0.018817589574043492 Mining:0.016715686917214454 Lake:0.016211337129190435 Grand:0.01614914705895677 2:0.016093690229940765 &:0.01505081184739626 Summit:0.01358977304465602 of:0.01356544188424738 :0.40556627337448786 +the:0.12854233978837476 and:0.1017959260980973 of:0.08138995496147663 to:0.03680474833595874 in:0.02177918269949433 that:0.020361812214433558 for:0.01802365477432974 as:0.016565308361318407 a:0.015982300162683056 will:0.015314420086609853 which:0.013853547541906508 these:0.01248108277596386 The:0.012370180016475732 he:0.011521783412114692 they:0.011317762133468594 their:0.010361316763378724 I:0.009686222583415352 his:0.009516673496642094 or:0.00886935595039628 :0.4424624278434618 +of:0.28767355066866834 to:0.08775711267569858 in:0.08678131196995101 and:0.05160598694501188 on:0.04646139928102899 by:0.04519522654900943 for:0.044547789071328545 with:0.03396756772609607 that:0.033699232901107726 from:0.03075346596941143 at:0.027039283056790858 In:0.021061449543044047 as:0.017514234937992545 all:0.012543839382496166 upon:0.011844431150487573 is:0.00998972746569266 was:0.008814315973987914 into:0.008557199930727406 through:0.007781895704231326 :0.1254109790972375 +the:0.550498456511256 a:0.08852468911202031 The:0.04502327985530788 this:0.04091299611795332 tho:0.033835364743482844 of:0.023101655670848095 and:0.0221478485639871 his:0.02080914485652506 our:0.014929654028995614 tbe:0.01367693742112841 that:0.012084815492791213 in:0.011089555550054543 great:0.010214713984875525 good:0.009638728982294878 to:0.009539699096528988 an:0.008187908602141325 their:0.007667191984859545 my:0.007589716281226842 her:0.0073216093709549965 :0.06220603377276761 +the:0.5773414511026138 a:0.09697655081994355 The:0.04315288404369161 tho:0.04078828668826151 of:0.03244104527731403 and:0.020593954928262586 tbe:0.015648058262737047 to:0.014251541285666879 per:0.013364741556182112 great:0.011498302607389054 by:0.009832101553075283 in:0.007466235867570606 first:0.007397991380226208 same:0.007033464230247236 large:0.006898326878951352 or:0.006433008756096204 present:0.006334523493713823 A:0.006075103424924533 that:0.006048458649602487 :0.06942396919353001 +that:0.06566609653209658 and:0.0649849163152772 was:0.06172919620479904 is:0.0445257752916367 a:0.026510701529827825 it:0.023089560032319524 but:0.021456634244204284 had:0.02079930858750697 be:0.01944306184522797 which:0.0175717933252891 up:0.01570894208471698 to:0.015570381086036854 have:0.015567218004015837 has:0.015267111744243275 in:0.01460423778959486 feet:0.014447670631402296 of:0.014315176508067228 been:0.013919887288290642 :0.013080926298127543 :0.5007414046573192 +of:0.12841620552545482 is:0.08384876970073918 for:0.07816145178299325 to:0.07672513089003194 with:0.06942138228494081 and:0.06220758468352846 in:0.060643073047817686 was:0.05063636500558541 by:0.044398778558597154 as:0.03767066581554064 be:0.030898290972768302 that:0.021643851617381374 such:0.020754670327358244 made:0.019324782174419002 have:0.01593222781223575 on:0.014649565425212242 from:0.014594427406228948 but:0.014154073884995044 not:0.013343733053199398 :0.14157497003097236 +spite:0.038017404187114835 out:0.0372686137516049 and:0.03570169315863753 that:0.02655890867341167 value:0.026090366280772923 part:0.024620158961039675 one:0.022785694164029972 sum:0.022119641127047777 amount:0.019859617002542403 tion:0.01811436175197411 charge:0.017458813565391796 payment:0.017448710700355818 account:0.017441337297585194 any:0.01673074464939334 names:0.016248397088161642 some:0.015729751533454937 end:0.015377415033100016 use:0.015376586282452533 people:0.015234020980039863 :0.5808177638118891 +the:0.45313071596079724 a:0.21567600022816383 said:0.09743533006825159 The:0.03575736272211492 A:0.02801086580664381 tho:0.027530434439212 of:0.011742107095257977 and:0.011338556779844236 tbe:0.010895732778329129 by:0.008846652501596669 no:0.008287087377073447 this:0.008087235890835055 verified:0.007034908276977487 any:0.005446544966705004 for:0.004264954444713962 old:0.004014132421501054 in:0.003660729471489643 first:0.003660586400627525 or:0.0030145471318242297 :0.05116551523804123 +and:0.009364003170532521 it:0.008844142014257966 I:0.0078598628809275 :0.00782598807832193 .:0.007245853841055583 at:0.007199620220302689 person:0.0061169203775604634 to:0.00568239621797066 the:0.005582691491451921 of:0.00548965980634061 in:0.005488000039248227 men:0.005200598780805607 1:0.005150270385701985 man:0.005072255601968068 ,:0.0036268104890043703 :0.0035205125372515756 was:0.0034501981723361525 do:0.003375649252438178 from:0.0031584647375912434 :0.8897461019049328 +it:0.14688083019726977 he:0.10413041869759126 It:0.0935025632785368 which:0.061082484133531616 and:0.0553902019437302 I:0.04765374317553339 He:0.03437367018500146 that:0.03328866174519715 who:0.028016935979261758 there:0.024774014532816913 she:0.021026309272415892 this:0.012440642181365886 This:0.011986842636257733 man:0.011646477560511823 bill:0.009262540887371827 There:0.009017467230362059 She:0.008874464181656648 what:0.008519677911163486 lie:0.008385909594420862 :0.26874614467600344 +one:0.17896815771583502 some:0.08659644581987248 many:0.04990449165862142 all:0.0478665878503545 One:0.038096175605452455 Some:0.03552640793926947 any:0.030556472203911753 part:0.02863440842448241 out:0.0277194039896207 Many:0.0269363120854098 Most:0.02547340768335081 most:0.024353222153046517 each:0.023219256850445295 none:0.017889879874876717 that:0.01660051196194893 portion:0.013050827281407395 and:0.01196719025110212 those:0.011218763533358999 number:0.01119499011182692 :0.2932270870058063 +as:0.1812411705841412 be:0.15724013315924423 is:0.08148676944762637 are:0.06333194619332999 and:0.061725695345917035 herein:0.04963061443441253 was:0.036498166148455045 otherwise:0.029317098522533946 been:0.024915569343616478 Is:0.017568283751044113 manner:0.015961290700324614 have:0.015296126156598677 were:0.013963840498338693 not:0.013884515296575837 has:0.01316895611853593 that:0.012338594744080472 bo:0.01100754447433073 he:0.010508009309012956 aa:0.00796437023844037 :0.1819513055334408 +to:0.6808018602182337 will:0.053282230617907364 and:0.043380496374962024 would:0.042167059785414344 may:0.017654009191734127 the:0.01708954551953684 can:0.010979660125079413 should:0.010243351621480885 could:0.009286212032861563 for:0.007740132658162159 shall:0.007317700034844473 not:0.007107834604468226 To:0.005601698838296626 that:0.005532710870589937 must:0.0045758555624924035 a:0.004571809504293769 in:0.0045697630138193425 or:0.003772264774317922 might:0.0037269442576583966 :0.05959886039384642 +in:0.1826599000461458 of:0.17734846120521955 the:0.1337115489247606 In:0.04843116263800972 for:0.04486464239918588 a:0.037824130792497294 to:0.0372052598822369 from:0.026240824427944464 on:0.01776624577213554 and:0.017462487281978575 that:0.014207668883526188 by:0.01057931892057042 with:0.009968396075611695 The:0.009607797209414588 as:0.009315194615542232 :0.009235515143015781 said:0.00845737958944622 tho:0.007620384816672584 which:0.007378349175337976 :0.189115332200748 +and:0.14507320772351315 fact:0.08580533594336559 said:0.056464728489513914 so:0.05141663139801109 believe:0.03728868944610554 is:0.032697255055655516 say:0.030323479159427524 know:0.029749358812227955 found:0.025535190692382553 stated:0.021273605064562356 show:0.019511948220510757 but:0.018999393120383457 says:0.018814328565908398 think:0.016893655385130203 was:0.01658797795582863 all:0.01652317309060226 see:0.015409038245983688 opinion:0.015263158537430448 order:0.014744011681695817 :0.33062583341176116 +the:0.22052173904674707 of:0.11538277631709545 and:0.07600893695483417 a:0.07004925231740321 in:0.02032394001329095 to:0.017760541526728617 or:0.016321320631386877 The:0.016047378210588287 tho:0.014162478919836598 his:0.011851559038502319 their:0.010247726296522618 an:0.009976024422455008 all:0.009838815678283644 that:0.007981786074193685 other:0.007735324991191378 :0.007694646861427443 at:0.007393351766959102 by:0.007172496730326369 .:0.006850640354361914 :0.3456792638478653 +the:0.09684081064840576 and:0.06551335624548284 of:0.05146145169206151 from:0.049520598669154245 a:0.045427902131977435 to:0.0370403239153822 be:0.035669151526387034 was:0.030489628475080553 is:0.026635804908522978 in:0.023878514238638158 are:0.018513936943033917 not:0.017945708099223703 or:0.017556265685966497 been:0.014265228721347686 at:0.013857211504087178 he:0.013733215789660087 were:0.012396679125422956 I:0.012347944480187516 for:0.012197989992860347 :0.4037082772071174 +and:0.11556519417565557 the:0.08481561130242181 of:0.07004505633234759 to:0.0341721636003462 that:0.024989712907709082 a:0.02033341508293078 in:0.0195282517879194 which:0.01857195564664746 will:0.01715996747418425 for:0.016368884390064373 or:0.014422145985509987 as:0.014111218851616864 I:0.01385069987486557 he:0.012904087368211841 they:0.012821621856491204 :0.01282033337760942 would:0.012423812591599326 such:0.011604284904520845 The:0.010395181332605091 :0.46209640115674333 +the:0.5301896035415266 a:0.03957759744565538 their:0.029412969471102793 tho:0.028247860584475468 The:0.027030977739422254 and:0.02490227553987148 of:0.024578131665295756 his:0.02426599022027045 to:0.023732073448356674 great:0.020877185992389694 our:0.01888981674950144 no:0.014030348740619166 its:0.013911242891897982 other:0.01368580421477282 any:0.013207606547693675 or:0.013160799681670863 tbe:0.010648197163726177 in:0.010023777724295897 this:0.009977824074460689 :0.10864991656299479 +:0.060013885040330374 it.:0.032198383478649256 him.:0.023482944034500304 them.:0.021569177024040733 time.:0.013332857005546327 me.:0.012858477851204685 her.:0.01098934323566131 again.:0.008344862370327902 day.:0.008264435996383244 water.:0.007740703668945624 life.:0.007725102855847476 years.:0.00694378597404818 work.:0.00685084042202072 country.:0.006810935685213647 out.:0.0061584517868437634 all.:0.0060785276477406764 up.:0.005915798972452251 tion.:0.005773344302263848 people.:0.005579329721644756 :0.7423688129263349 +the:0.14459406813266204 of:0.13139232836938194 and:0.059595311043096 a:0.043542942488990675 by:0.04022483221319287 to:0.03124525036522702 as:0.026088108258247374 for:0.023430300017378513 The:0.021561428089592646 that:0.020600925958342207 an:0.015669593565407317 in:0.0151164470697967 with:0.011075319859869849 all:0.011055680336786881 con-:0.010229977393415602 more:0.010136781030066919 tho:0.010013461613844555 which:0.009611542865027705 :0.009571240460353186 :0.35424446086932 +of:0.26662236811194107 and:0.08652825166691872 to:0.07351287657540596 that:0.07094595061964198 by:0.04438495905364046 on:0.04126283236109597 in:0.04072991141274284 as:0.034413583253955674 for:0.03418103084007092 from:0.03376969313579835 with:0.03313355845473498 all:0.03150432084426857 at:0.024129408080665323 upon:0.01581644068852645 when:0.013024205773401128 which:0.012455872561591865 In:0.011353725484291338 is:0.010988044578662204 but:0.010298360916119232 :0.10994460558652702 +at:0.33775561654101055 the:0.17102855004829673 to:0.06555059099121774 be:0.040829783129221024 not:0.030955057427209113 of:0.02820484941396953 was:0.027561011929817837 At:0.026692778945307857 such:0.02212842532685896 were:0.021533130310213873 or:0.01914514187949264 its:0.018277379344178658 a:0.017488566073474286 are:0.017464438750422244 those:0.016420341044881794 and:0.016154830914633263 their:0.015126592606678488 is:0.01399238634783571 been:0.01388141731745109 :0.07880911165782857 +a:0.18196016244330965 the:0.12354943247088919 This:0.09543753384644603 that:0.087876851579043 this:0.0764539556253027 The:0.059239272443154974 said:0.03544975597744581 any:0.03524955838817648 which:0.03465900206220572 no:0.0335282624868072 of:0.030717269853964762 such:0.026219192702871562 what:0.023799420890958073 his:0.0233917043587305 A:0.020536513208332746 and:0.018960340120470976 every:0.01400808932254118 No:0.010955924650640193 tho:0.010263045130049128 :0.05674471243866013 +the:0.10597367530797616 and:0.0853527820525933 of:0.06360945035772735 to:0.06244267659896638 a:0.060444786386947884 be:0.04363603891749144 was:0.04190816975681049 is:0.031505771318292075 in:0.021161351642113184 been:0.020564667155655386 are:0.015605619303933057 were:0.01484114565833905 or:0.012862722596575497 he:0.011958272903710238 at:0.011725530623216752 not:0.0111810727073711 it:0.010571643524452942 will:0.009870006355904577 for:0.009564406893979365 :0.3542202099379438 +:0.10781170457490377 and:0.02512874132780298 the:0.019656561959458717 it.:0.019548614899094003 of:0.01900613233999542 that:0.015423556227965733 them.:0.01221650444859836 country.:0.011004129039574281 time.:0.009651378160782318 to:0.007324501625199633 people.:0.007293149075263094 .:0.006274536105812456 world.:0.006199818488834882 ?:0.006117583322538298 which:0.005955908129699892 life.:0.005889352480414478 work.:0.005838682342558275 year.:0.005716179507128766 :0.005698789687794425 :0.6972441762565802 +of:0.3870173519632621 in:0.26960734579008055 to:0.06594535338050878 In:0.04584950130838418 for:0.027873460662494326 by:0.025574368102389278 from:0.023230492665348778 and:0.01940303173300745 that:0.01558692228739943 with:0.015350988681475143 into:0.013321274516851323 on:0.012630998938531458 as:0.011433011757685692 at:0.009056720489874867 throughout:0.007857186800163705 upon:0.006638299417377097 all:0.005334173714010448 over:0.005093300212620086 through:0.004792632090477379 :0.02740358548805793 +the:0.2587963834568792 a:0.0911037472992204 this:0.08422219897081969 his:0.07550157944160327 their:0.057913161952039355 our:0.04174436790068065 own:0.026516307359595866 its:0.02426800298198056 whole:0.022259697928710975 tho:0.02028855296442874 every:0.019251889609711463 her:0.01909164073963599 of:0.015613660211050283 your:0.014992305331812485 political:0.014811595180655383 new:0.01454303260299507 any:0.013996162226614657 said:0.013896055319205179 great:0.011534127840381797 :0.158655530681979 +at:0.15759636317629921 of:0.1421714067936483 in:0.11676904876960983 to:0.06398364411645996 on:0.051157018190029144 for:0.05108566601725402 and:0.04555513108461132 that:0.031721944739604234 from:0.030113826054908015 In:0.029702699076370135 At:0.029399515452081842 with:0.028043139425789426 by:0.026185917658690036 is:0.020303271491863204 as:0.01797707611473321 was:0.017223050385135958 upon:0.016504659720422372 about:0.014081527374087893 be:0.01236778699448754 :0.09705730736391437 +has:0.19917306219728548 had:0.18681578945843122 have:0.17472776642726515 was:0.07361026298261285 be:0.06701907047386679 and:0.045441268859887654 having:0.028750147763143337 been:0.025412136250328267 is:0.020506507782543138 were:0.015968562253466625 he:0.01585209623519253 bad:0.010947291020473376 then:0.009694383886274706 not:0.00887921695109492 so:0.008663426829064751 are:0.007803489764033318 lias:0.007795327479049879 havo:0.006311989579580012 never:0.006047247412203581 :0.07958095639420243 +and:0.16049581817151415 days:0.12421407736299125 that:0.0423682206330914 soon:0.03997607409853832 day:0.03853013976753467 years:0.034858151579927776 time:0.032184224911167784 immediately:0.031027442384911633 months:0.02949846719328513 until:0.02693334717058679 shortly:0.025140972811606627 Immediately:0.022637260732891244 Soon:0.022478971419624814 year:0.021042275781545983 Shortly:0.01926602969104937 look:0.01898255565038351 but:0.017248979348461858 and,:0.017059118292236632 long:0.013923833299873161 :0.26113403969877785 +and:0.08729827098732444 of:0.06518509068758652 to:0.06023577807753039 W.:0.045559605061122284 .:0.03441568890283311 min.:0.03316381539517483 deg.:0.032938559677367384 J.:0.0328445718677677 N.:0.031573977494473285 the:0.022543164386999135 E.:0.021069275737987274 A.:0.020746213242729874 A:0.01762179838151039 S.:0.016994868062186592 by:0.016451745863885668 John:0.016079406006288075 Mrs.:0.014286657311288075 C.:0.014068925435535852 George:0.011862858248661085 :0.4040597291717481 +the:0.13064331674761873 of:0.12144506057853878 and:0.09904709072521453 at:0.07979610312954662 that:0.07933972385731031 high:0.07065294920509414 for:0.0430763892994303 in:0.03838892639170293 low:0.033923534628751646 all:0.03001038327873559 higher:0.02375062392418391 from:0.022159624524609633 The:0.02116400663353999 this:0.01815854851959041 lower:0.01646031252893269 present:0.01474922340775077 or:0.011703146105670205 his:0.01145933067374754 our:0.010610345221849395 :0.12246136061818187 +at:0.2504992869804582 No.:0.1076184668998905 and:0.04775467684996073 to:0.037771540316500866 post:0.03729777962417919 of:0.02479717510848109 about:0.01430198123483777 a:0.012865665704069417 from:0.012470551621070618 :0.012163677268096708 Sec.:0.012062717874422334 @:0.01169834579491052 the:0.011426269790755658 July:0.010899452662009717 on:0.009705995249470507 with:0.00947178561228669 was:0.0094350509994593 March:0.00931780852395407 At:0.007248783077793968 :0.3501929888073922 +he:0.21101685299337275 I:0.0869703648784397 have:0.0842787937816495 and:0.05772586023417959 who:0.055536108021424925 has:0.049454337352958296 He:0.045914088280097465 had:0.04153164088943891 she:0.03295998049376396 they:0.02838920579893886 it:0.018897180390619807 we:0.015895768338668605 never:0.015107831943728294 that:0.013674954524827107 which:0.013239338716952063 1:0.012992952037896702 ho:0.012449359576845481 man:0.012427592225564664 She:0.011208885324422175 :0.17932890419621111 +to:0.5302300492815264 will:0.12832300248196724 shall:0.03723988884115092 should:0.025891915995105794 and:0.02362980487499626 not:0.02316759114713333 would:0.020342810131247245 must:0.020288068292139923 they:0.017792098796711026 could:0.014563572488034124 can:0.013275632320120556 I:0.012434461722292572 the:0.012215939949966918 we:0.012108142872590136 may:0.011044196769839833 you:0.009162409410984059 that:0.005690080637184499 To:0.005507919473251142 a:0.005203330826565108 :0.07088908368719297 +the:0.6951576636912846 and:0.06501793570730853 The:0.046726971084508816 tho:0.02877239657795027 of:0.01224339347599398 tbe:0.010821783549532336 great:0.008953965372925185 an:0.005785444244166109 a:0.005050843115084606 as:0.004900653276517566 con-:0.0038329413685043814 or:0.003724716413039733 in:0.003594741429873976 their:0.003240539732222663 its:0.0024106211511731395 no:0.0023444739633085724 large:0.00227690164420364 vast:0.0020617403794797157 our:0.001995517556158257 :0.09008675626676388 +the:0.13228444989670374 of:0.10394365886784349 and:0.07971231622958204 to:0.04943454610043815 be:0.038543050178601504 or:0.03391881190782924 in:0.025490041073121295 is:0.021327950914246687 was:0.020358435695107393 a:0.01973399092402715 are:0.01588577147113975 for:0.014549177634039243 as:0.013179634446940845 their:0.013024789347657792 all:0.011044595677929599 not:0.010933201840936671 been:0.010788500416125528 with:0.010363298778000745 that:0.010245781846358649 :0.3642379967533705 +the:0.5578953286688714 civil:0.14233719653889088 of:0.04769911419465663 tho:0.030333456362022785 The:0.023314420807149284 public:0.02093729170040963 such:0.016050132180191818 this:0.015419836039555566 their:0.01380556699157094 tbe:0.011129673487185859 our:0.010543832023378963 military:0.009643777421573685 great:0.009527471163510597 said:0.009433442716657707 naval:0.009070201863309493 postal:0.008670238494411066 good:0.00866946073911899 other:0.008312418216055792 new:0.0069959434040630635 :0.03921119698741589 +and:0.07732105425193755 connection:0.07472708007651407 together:0.06229774693001989 connected:0.06058978751932544 accordance:0.0416575578411824 comply:0.024468256903683663 up:0.023354303788254094 do:0.023031682138135442 compared:0.0214034483234418 charged:0.01985019392621937 satisfied:0.017894895090384225 but:0.016891443675214127 familiar:0.016340199066118822 acquainted:0.01511904057345155 file:0.014207305273272079 him:0.013709074194711854 it:0.012929401641257015 filed:0.012916292873893108 complied:0.01277828259276974 :0.4375129533202137 +and:0.13969535595052085 of:0.08350354389090686 from:0.07344130129711814 at:0.047048368227940646 are:0.04665848034653878 was:0.04179046196427393 with:0.040145325392843094 is:0.03936944133352509 that:0.030151507864820425 in:0.02516290950929422 were:0.024899704684068037 to:0.02477177303969069 for:0.02377962377458516 it:0.021337393359839158 by:0.018992917672025007 as:0.01898394648471887 them:0.018002087937632603 nearly:0.016050305400816266 do:0.01536351804163884 :0.24985203382720333 +of:0.1129470273893592 the:0.08201984613752658 to:0.055028633500386205 and:0.04579011417791879 in:0.02635777820641855 be:0.019724375635548585 a:0.019263898628938174 as:0.018476007182230685 by:0.017354045905120838 was:0.015473256387948333 :0.014277325792329975 were:0.014047349678660032 are:0.012928756812335882 that:0.01275641206156001 been:0.012475740460773457 for:0.010407250582643154 from:0.009998038435732277 on:0.009696486824265686 his:0.00891991303098858 :0.481057743169315 +the:0.6714312468787831 The:0.060249447169791186 tho:0.03059744401852008 and:0.027477008271442952 their:0.01915043017495509 an:0.018663714655708107 in:0.016871277930615287 a:0.01683864239893399 of:0.012689660667471807 its:0.012287503246582322 his:0.011471387542091364 great:0.01014107936171076 tbe:0.009597540229992513 personal:0.0065176158612004 no:0.005697406732456224 first:0.005137389416919837 or:0.005116169376027584 by:0.005001754480380505 full:0.0048612415466060864 :0.04920204003981075 +it:0.2172869361059192 It:0.20272172498189145 he:0.0925653473214613 which:0.04803374401359657 He:0.043499999352087565 I:0.03659450146710807 there:0.03621466211784582 and:0.02819837112024912 This:0.025192503217802944 she:0.02084963659803127 that:0.017751105353597148 who:0.016221774745114707 There:0.013370459022365923 what:0.0120353069545835 this:0.011750353283277401 She:0.011518271160539486 lie:0.008830579507476401 ho:0.007011052731434293 but:0.006479429139444214 :0.1428742418061736 +the:0.5735682335595379 The:0.041491917431950805 a:0.039284955743385114 tho:0.03227910409203121 his:0.025537532986007284 their:0.01674576263818013 good:0.01666875406094706 and:0.015915649729791276 great:0.014095754416876716 tbe:0.013704949316308397 strenuous:0.012568135068871014 of:0.010519038369415819 full:0.01017528016239727 in:0.009560984005345512 untiring:0.007908253950524226 this:0.006997010711432376 large:0.006846892512951309 best:0.006650595720707365 all:0.006177151446880185 :0.132304044076459 +and:0.14105362281446046 the:0.11649613966048694 to:0.09481295228863315 of:0.07491421143127949 or:0.0381821932633116 in:0.027049146327549307 a:0.024264965216195925 :0.018509393210907547 on:0.018055413593746204 for:0.015653042125906885 with:0.014872133192400059 that:0.013308101992307307 at:0.01304981737003626 .:0.012796797140657824 The:0.012611137337056154 by:0.012278190780884947 from:0.010782414012302035 all:0.009758227574433589 In:0.009403305453188944 :0.3211487952142554 +the:0.1552741801345222 of:0.13877929605757924 a:0.11668319653891411 and:0.0401970662839662 that:0.03634201742794196 to:0.03341827174239768 at:0.026910521216112048 in:0.025520824575659427 on:0.022155509454478306 for:0.020864633096757196 by:0.019689345272126135 from:0.017293050521328908 The:0.01625977424036397 an:0.015556779393380177 be-:0.012132801221859578 which:0.011027056389212657 his:0.010680314549784681 tho:0.010639845340334473 with:0.010292829746203129 :0.25928268679707794 +twenty:0.06478870803425853 six:0.054761741104339325 two:0.05165073662144446 fifty:0.049197886923901035 hundred:0.04827455770027378 five:0.041615736177257834 three:0.03696866768833045 thirty:0.032921100201608884 four:0.029779810282825222 eight:0.02972166185467614 ten:0.028661795492050994 50:0.028328786111466796 sixty:0.025232495609857995 forty:0.023489146395490827 20:0.02244292135741717 fifteen:0.020798910263771075 100:0.01953460498256594 the:0.017252739702832233 300:0.017137173166012924 :0.3564408203296184 +.:0.02628193999966791 and:0.026192770605828305 of:0.020109210071803104 in:0.01320058814219416 at:0.011219659236874034 to:0.010690666479570942 :0.010666438885299796 Mr.:0.009642603827329713 D.:0.009516437306439668 his:0.009158419494785873 by:0.008387608371471523 the:0.008036357261590441 -:0.0073949647031181474 was:0.006534138814342269 S.:0.0060543560606969495 :0.0058204960135461396 with:0.005819269771911819 ;:0.005384902171618928 ,:0.005232006566138547 :0.7936571662157716 +of:0.15275673528270903 the:0.12841914357261483 in:0.0770408183088226 to:0.060218153220375874 and:0.05922835311813054 for:0.05667176642567673 from:0.03906749816473695 no:0.029127872741522315 by:0.02782160974200846 with:0.024609694397045308 In:0.024121298728080016 such:0.02222480152327005 these:0.02125426143929956 other:0.020410512256835225 many:0.01875174900486209 their:0.017440627968985982 his:0.017432651393233207 at:0.01704351640303759 some:0.016451504225283776 :0.16890743208346984 +a:0.1396195541637567 of:0.10663389001421052 the:0.1044982562041142 in:0.05098200127899027 and:0.050300548719271816 to:0.036723650638326645 at:0.025143792041479717 by:0.023213237685309397 that:0.023033985677972615 from:0.022104450347527622 with:0.015933021624455205 for:0.01514086234422578 In:0.014707809852433945 as:0.012326397085665474 :0.011473407659125457 on:0.010972746316370494 an:0.010301794566568458 most:0.010237287773045571 very:0.008335581096411856 :0.3073177249107382 +he:0.148170546411258 it:0.09870619058123317 It:0.06818000322796405 who:0.06419566517620069 that:0.05900201422817429 He:0.057278922892499265 and:0.05322682818981061 which:0.052848356087984306 she:0.026703736749514012 She:0.011540847408786232 but:0.010004913857864279 lie:0.009840249639301905 ho:0.009795461710025483 there:0.008970143412057284 as:0.008657185848286475 company:0.007091373987496704 man:0.00677715221700777 be:0.006761947242346125 country:0.0063917601787492765 :0.2848567009534401 +a:0.3281564701562462 the:0.2966868573069538 this:0.056803567300614574 joint:0.05549965352403794 The:0.04906412585051194 A:0.03572750004398343 and:0.035675347222261636 tho:0.020523358722652946 This:0.013373838584766295 that:0.012704104329842847 of:0.009992815904637103 our:0.009512588882009185 his:0.008643566063403116 one:0.0066012005094133065 tbe:0.006360523817171928 in:0.005901081572529819 Joint:0.005609906953752695 old:0.005400106309381184 he:0.0044562824803479175 :0.03230710446548208 +the:0.1864866730403369 of:0.10214258064812948 and:0.05549994141568971 a:0.05196624635535982 to:0.05115004090146824 be:0.04579104885513233 in:0.03110103747107456 his:0.0307454196539636 was:0.030186971900981102 is:0.028132521832588925 their:0.027641684795139836 for:0.020009172731581745 been:0.01611381130044442 its:0.014799172745324114 are:0.014002064671223119 or:0.012715474736360147 at:0.011660456421070444 not:0.011351130157368631 tho:0.011219859298471257 :0.24628469106829162 +the:0.1388765250488723 a:0.10942482950327792 to:0.08370744391476603 of:0.0821964343309511 and:0.05493468352680965 at:0.026368312118307483 in:0.025360194975421167 that:0.017691677720795402 con-:0.016643400278979068 for:0.016403615363660196 by:0.016353432790953113 with:0.016034385930821977 in-:0.01525383217181351 an:0.013991111657876275 most:0.013684490536373037 any:0.013544687877992937 The:0.013181228641652372 or:0.0123900708870779 his:0.012026432969448815 :0.3009332097541498 +as:0.06931392982974462 according:0.052071562389565784 up:0.0511867300210483 and:0.040371568633051955 went:0.03351644485287816 back:0.032358406609281 regard:0.03073407747799069 feet:0.02852138506231652 down:0.026379903432040268 owing:0.02466642634685871 due:0.023695193974505355 go:0.022910973192184297 reference:0.020802802907016128 came:0.019883741951819873 sent:0.019874244915639484 attention:0.019565955494145405 come:0.01885185084678811 given:0.018792390567602263 it:0.017366961307524745 :0.4281354501879983 +the:0.13529762855582456 of:0.11463579192495987 and:0.05322716799722979 to:0.04576830479778037 in:0.03272751133877974 a:0.026295494066735134 for:0.02271344996174407 by:0.020161320491402006 be-:0.019218665976549507 which:0.019140959834188884 that:0.014659436650948135 are:0.0143816979806541 said:0.014053550369391814 Mr.:0.01403617910994977 The:0.013825231317781074 from:0.013807000751428341 on:0.012416079056987352 be:0.012368752599726786 more:0.012281963462776121 :0.38798381375516255 +of:0.2363460953012322 in:0.1312561309369335 and:0.071857577222654 to:0.06964041985601513 with:0.05634642791957651 for:0.052123862228656066 by:0.03709245470771219 all:0.036888120189764284 from:0.03368195824647899 on:0.0312942936394529 at:0.02772015612120838 In:0.018595624238642226 that:0.01661143134815104 upon:0.014529454946839522 as:0.010527822265558807 within:0.010065272762893757 through:0.007584197962800866 but:0.006891160458981784 after:0.006609930051429546 :0.12333760959501827 +more:0.547897157541395 less:0.15609076712762318 rather:0.04623011219210756 better:0.03543911164331784 greater:0.014197858320559108 More:0.01330065591555611 other:0.01307353699924064 moro:0.010005042274160287 worse:0.00916343813993921 larger:0.008614796006019826 and:0.005229103026897 longer:0.005115539603005122 higher:0.004991691708567503 later:0.004433723820331593 it:0.004223053777810249 lower:0.0039459712379752284 leas:0.003930557090314739 faster:0.0034919465635545087 quicker:0.0032966837286589044 :0.10632925328296643 +be:0.2228350914510536 was:0.13220891282962202 been:0.07528913863899483 is:0.07206226481412659 and:0.05792563019368278 were:0.047753288199142985 are:0.04435425813867563 he:0.02743737638877394 it:0.02402079801107419 well:0.020754079204960477 then:0.020702686404503276 Is:0.018883128654085583 now:0.018638456845803678 being:0.013772926544936772 bo:0.01222235745268089 still:0.012142721179814343 soon:0.010831693351733533 they:0.009000233794580594 had:0.008289501466846885 :0.14987545643490738 +is:0.10064671431432391 and:0.0962328291592398 was:0.07710848850187046 are:0.055732097888008536 be:0.04562719794117149 not:0.030065027008551046 were:0.025091010173977357 it:0.020026188568248938 or:0.019450103889318313 been:0.017095269095719054 now:0.013963000608119995 made:0.013540497844162268 that:0.013111121359206439 them:0.012158744073991049 him:0.011904926498813322 being:0.011809103285356545 out:0.011719234810629184 found:0.009603075028578911 up:0.009223353552945254 :0.4048920163977682 +and:0.07810500776407393 was:0.035399515249276606 him:0.029871417157383433 it:0.023221314832398122 found:0.020930206856901282 up:0.020887412500946213 them:0.019369539901060107 that:0.01859632681417643 made:0.018116693982056307 man:0.017753608903732565 out:0.016127138767540607 placed:0.015849920152956515 is:0.015512343665494128 place:0.014751541970547904 put:0.01474242245214546 time:0.013348562615103343 men:0.013234823240916514 down:0.011792344832086823 were:0.011750622906806832 :0.5896392354343969 +to:0.402612501404225 of:0.14316288424509718 in:0.07222266885712704 at:0.05511735879455418 for:0.043821532707464486 with:0.0390984415541322 by:0.036593122852062746 and:0.02523089180409042 from:0.023374158017072603 that:0.0194030340867384 In:0.017148746569100988 on:0.010760356914827716 as:0.009154169683729348 upon:0.007638690990687428 under:0.007396807089616968 is:0.0068348557466568465 all:0.005900901897304447 into:0.005591411360963064 over:0.005331476165189593 :0.06260598925935934 +of:0.09129790931378902 the:0.07369883040827747 and:0.047842263382354346 in:0.04189055351593407 to:0.04045875475680249 a:0.03542341257202578 be:0.02020462051672066 for:0.01979292654746225 was:0.01760256398103379 at:0.017380150555488715 is:0.014984483003968216 with:0.014047653760730413 by:0.01374644383819499 :0.012670486581795598 In:0.01200961464556976 or:0.011563835749786333 from:0.011391516893522809 are:0.011273104484969465 that:0.010755276030689069 :0.4809655994608848 +said:0.15372560988422887 the:0.08350039554175791 of:0.0763310487805975 a:0.06737506626317234 on:0.054569793520925246 one:0.04610276848103403 and:0.03639275861147518 each:0.020349226682212528 street:0.01921931641778562 2:0.017085824310326785 this:0.016073616769278133 North:0.01604064703194277 South:0.01514879878429181 at:0.014664127880005477 Western:0.013789770228417009 in:0.013652446760232846 county:0.01235430548447612 every:0.011955297184527338 south:0.011384163624291187 :0.2992850177590213 +of:0.2521310496698317 in:0.12187686142674727 to:0.07575126516534533 for:0.07225368476170255 and:0.053445952007905265 that:0.04423613700914031 on:0.037141677514769635 at:0.030623383348938292 from:0.0284145887320551 is:0.02659078550603394 with:0.02608935347325888 In:0.025930207623526595 by:0.025892951394763733 as:0.025123807798346186 all:0.02035828873766297 upon:0.013630297213456342 was:0.0132832491036549 be:0.0113083434473011 into:0.0097358345066847 :0.08518228155887526 +the:0.2669371273308659 of:0.09090794999105034 in:0.07253855710598751 and:0.04622106859456955 a:0.03414723432580263 to:0.02460191129560417 for:0.02207922099533295 In:0.01743896764942898 tho:0.016595841518904506 that:0.015995554583904784 The:0.015629603184937186 by:0.012841743697333848 or:0.011511571618801364 at:0.011087896271465987 feet:0.010742096824020771 from:0.009546514162686181 other:0.009452116378415277 his:0.00941238772606924 all:0.009236412335738995 :0.2920762244090798 +provided:0.20757620751761321 cared:0.04297088668612024 accounted:0.037228274740653884 paid:0.03582620481212788 and:0.03307365517698695 prayed:0.030600325719266557 voted:0.026415130354789002 vote:0.01862251191422337 called:0.017694153176870304 demand:0.014874184295038137 them:0.01269420791017542 asked:0.011309029550370097 work:0.010774934487256183 pay:0.010677297157828442 used:0.010623849378714627 was:0.010366437877779489 him:0.0102922318400844 made:0.010033118904665326 reason:0.010006964559881105 :0.4373403939395554 +the:0.14819972330484057 a:0.09627632580884377 and:0.06995468898730986 an:0.05805281256059716 of:0.05286750675658564 in:0.030886469778322607 as:0.02615317132748687 that:0.019307044613510602 to:0.01687808896662518 is:0.016383160298981264 The:0.016093509485537554 his:0.014944854135254305 any:0.011772357179524656 for:0.01131186340497519 con-:0.011300166430797681 tho:0.010715844797055707 all:0.010363198782406805 was:0.00990002255363394 be:0.00971205118585789 :0.35792713964185274 +the:0.13227850889666004 and:0.11343683632157991 a:0.04662818843609551 or:0.027169243586095924 of:0.025725137672491398 at:0.02023436833244848 as:0.02011107002662891 in:0.016559887629852395 by:0.01601663822348393 :0.01569208609767382 with:0.015610002326184653 was:0.012200357750358748 that:0.011251832373236492 is:0.010674428313872256 about:0.010253752599554281 are:0.00978050241415288 but:0.009006108869819415 The:0.008344063628633134 than:0.007949718099381914 :0.4700772684017959 +that:0.3841665963342896 and:0.06830787010694951 which:0.05446264230936919 as:0.05324672695743062 if:0.04908695984677197 but:0.03655167528102853 what:0.027541590051677733 where:0.02643247633806891 said:0.025115448145186108 when:0.02456827891427707 If:0.01469760198456039 because:0.011600161646198504 whom:0.009185659318568028 time:0.008839818351996508 thought:0.007822979177558628 than:0.007768401057218577 whether:0.006912275290612574 though:0.006828029506104137 But:0.006735157773386144 :0.16912965160874727 +State:0.04284672836658973 Burleigh:0.0372147315553027 street:0.017952910031886735 James:0.013571799817450351 North:0.013457960755559484 state:0.013272612349007349 Robert:0.012603426414681398 hundred:0.011853019171509117 north:0.011232931279249755 city:0.011122304614576986 John:0.010771003513793488 Williams:0.0099064545916011 Ward:0.009678905556245123 feet:0.009160736855830206 wife:0.009084741159322847 east:0.008833982307175685 day:0.008813180730196222 Joseph:0.008541429137335275 county:0.00837936673090756 :0.7307017750617789 +commit-:0.3276294526606818 commit¬:0.11163833278937596 to:0.0700330014771571 commit:0.05608856249358714 Commit-:0.052050494624422135 commit­:0.04293790178452881 trus-:0.016206337900876507 of:0.0157108636036501 for:0.013020232441473671 in:0.010881924503659518 on:0.010852543370359949 said:0.009451128073169274 the:0.009338843428860811 and:0.009130531954121033 that:0.006098510953200171 as:0.003055429748979063 this:0.0030410675766667566 by:0.003037919644918783 -:0.003021196769599641 :0.22577572420071182 +and:0.09036698217685754 was:0.027314883843986577 is:0.024497224263115052 be:0.020670998346057068 as:0.017612463552301942 or:0.01688656076950651 not:0.015961998122853524 in:0.015941275048478847 .:0.015671215558176903 of:0.015538354489851674 :0.014797053077942888 that:0.013449348387061643 are:0.01199529005906345 to:0.010857416184347156 by:0.010825597469099016 it:0.01068976050236489 for:0.009623754208633949 county,:0.009531865485085354 day:0.009293281787094503 :0.6374746766681215 +of:0.25366245575820623 to:0.0829104094013908 in:0.06493945475429522 for:0.05139673294298274 that:0.05039722694767037 and:0.049519183302420486 with:0.04551226625004931 from:0.04358683134491059 by:0.041044096332004745 all:0.03948001437043553 at:0.03038619851575259 on:0.029373797567313793 In:0.028445125537387796 is:0.021402560292390807 upon:0.01533122303824615 as:0.013181824147211248 but:0.012258747886117874 through:0.010527333963713576 into:0.009786891794380723 :0.10585762585311942 +a:0.39790479775680865 the:0.23304742026960937 of:0.04534959417977369 to:0.02138264602926198 any:0.020875388890774938 oak:0.018374539507128924 this:0.014858037784812674 A:0.013478498946265379 tho:0.013109659434319312 or:0.01221045664046755 said:0.011696616897274184 The:0.011550924054246162 no:0.00892807236218076 one:0.007695510351605795 per:0.007617542652459108 such:0.006852765192646122 their:0.006598131917402134 either:0.00626605249643908 apple:0.005962527252891644 :0.1352408173836326 +of:0.2815213335143326 to:0.14455685077288102 on:0.10594591055247858 in:0.08633410788650812 from:0.05215909804108799 and:0.04405487093083377 at:0.03648653706932453 for:0.028588391405237903 that:0.024581851535600673 by:0.021581839705407984 In:0.019851798163140894 upon:0.015076822264969108 along:0.014050098273795983 over:0.013329113170648351 with:0.012399475727546029 through:0.011117897048033388 which:0.010779798893580229 between:0.010751536559497774 as:0.01022991258365861 :0.05560275590143644 +of:0.1329174155651934 in:0.10330956558513384 at:0.09591656253063587 to:0.09117050577423415 for:0.07670084694662878 In:0.05766557601029847 during:0.053142476779344874 and:0.05313055560421894 on:0.05146935500707803 that:0.029160614134721496 by:0.022975836407935515 from:0.020946081577204925 At:0.020744142314595586 until:0.0196159596046142 after:0.016965383441699518 before:0.016834047911014657 within:0.013842442313902636 with:0.012455954587878527 was:0.012297289129112411 :0.0977393887745542 +the:0.11773714622414908 and:0.06466395237841176 of:0.0636456519817741 to:0.05556340434692119 his:0.044324590988971735 be:0.03146481369703239 in:0.027253584061423385 was:0.027183829613166968 for:0.022427114573683318 their:0.02228962006525194 a:0.022196385473974678 her:0.018334474686575807 is:0.015805718597238626 he:0.014038536221137009 as:0.013611433682663602 at:0.013116946051860942 or:0.010331875956463756 that:0.009683910464447165 were:0.009527009232353176 :0.3958000017024994 +the:0.46611527392689317 his:0.09483256809680841 of:0.07024263101960904 a:0.047483628098614415 her:0.035817576081423594 their:0.026587046485220565 at:0.0224988031897319 tho:0.01864501931621445 our:0.018023627499859668 to:0.01772153437584938 and:0.016483121739057242 each:0.011567541679895 its:0.011095099571034274 my:0.010529206043888698 your:0.009603662952489673 tbe:0.00907808658777297 this:0.008353473222155954 on:0.008191077177606573 said:0.008008748842334058 :0.08812227409354095 +virtue:0.062060494787377685 out:0.05417899169104244 part:0.03289673107629515 one:0.02969369892462812 quarter:0.027015883171169475 favor:0.01993830018372674 result:0.019463829004704194 guilty:0.018891084377354095 means:0.018499162894926688 end:0.018170939082736048 that:0.018121271122199262 construction:0.01726217741616459 presence:0.017003995482744873 tion:0.01673652166540914 case:0.01640819963257697 side:0.016055927605250184 erection:0.015381239457214257 account:0.015287601389485416 hands:0.015156055434805247 :0.5507778956001894 +a:0.28714516910013266 the:0.20206227351926298 and:0.055477719068207546 of:0.043652194953691055 by:0.0304996227348426 A:0.027767019541762136 said:0.026166696772396338 to:0.02417971756813176 this:0.013066350331326469 The:0.01275438703703755 any:0.012625612955472357 one:0.011352839785433196 all:0.011177346728559604 high:0.011088627380592294 tho:0.010843779260281313 with:0.010693413231197593 his:0.010069014700845008 that:0.009986015711038701 other:0.009681233430628164 :0.17871096618916066 +the:0.11919516938815296 of:0.07230453158552728 and:0.05781056740443249 a:0.043018564803886335 to:0.031305092790907506 in:0.020848713353460488 at:0.014270110001066288 .:0.012526810245749479 :0.012413283442322082 for:0.011719122709941797 by:0.010808400946589808 or:0.010404172990115616 The:0.01003576004804544 with:0.009811868184449042 tho:0.009295902015355835 was:0.008924239095331684 that:0.008672304223433876 is:0.0085591147338948 be:0.008335143826716943 :0.5187411282106204 +be:0.11780008116913351 was:0.10494181861506967 and:0.08955353015295288 been:0.06381091175204245 is:0.060117198585295205 are:0.037249101189997746 were:0.03689148086333705 the:0.03191643253885115 he:0.03170140532980151 had:0.025450444054517043 have:0.025016278419066576 of:0.021702932398338447 to:0.019246371740201933 a:0.019045527751850998 has:0.018898137255671178 I:0.013171060070013741 being:0.012971672736761591 so:0.012717183591094958 not:0.0121399293836347 :0.24465850240236767 +the:0.11859918925697767 and:0.10597690420661583 to:0.05119562841962798 of:0.04753943332187237 was:0.021797000539757506 The:0.016625417359516444 as:0.016406584606726546 that:0.015357466878799698 is:0.015111325611066033 be:0.014592026267246712 on:0.0138428181216417 :0.01267536684857451 an:0.012327584693944136 Mrs.:0.011800782706878373 or:0.0108295908743498 a:0.010610567003448044 by:0.010494978266453668 which:0.010453328977662522 he:0.010420179415425078 :0.47234382662341534 +the:0.32491708751743736 a:0.10761839850342236 of:0.09171880050617488 and:0.07286944419829043 The:0.03333337700601301 tho:0.021749351509695772 for:0.020981859213469373 to:0.018591299583006652 this:0.018054900246120137 in:0.014784050932432576 or:0.014310299188156274 his:0.012232638415632113 an:0.011574806217679586 by:0.011556243044939785 with:0.010710189383663275 their:0.010300398603468543 its:0.010224828009566547 that:0.010174121599436868 tbe:0.009814304641489574 :0.17348360167990493 +the:0.11076639060148961 a:0.07849534528798262 and:0.07662355077029165 of:0.07260297245149884 to:0.052614458906641126 in:0.02898323381454322 be:0.028619334122366183 was:0.018316043946281182 is:0.016699142604069347 or:0.015571116417843511 for:0.013777377220018703 his:0.013466243388399383 been:0.012200092708878738 .:0.011651566712874907 :0.01138899460054603 their:0.010869189054887483 no:0.010269055828557971 not:0.010112362588368682 an:0.009710495306262912 :0.3962630336681979 +a:0.36719210838785654 the:0.16111177768433863 and:0.07244144598956061 of:0.06780337994546759 very:0.03768634836031926 with:0.02946222672265955 for:0.027668552073068772 too:0.01707903865538689 A:0.014702164142909492 in:0.014365050158567491 his:0.01399084069889172 or:0.012876158534261826 The:0.0125380764609552 so:0.01246263560960332 by:0.011904371703418626 to:0.01164586785715206 all:0.011567362850909887 is:0.010798280415747055 was:0.010753830092577972 :0.08095048365634752 +the:0.12397170260116352 of:0.0943155434282568 and:0.04047242644896243 The:0.039121251000670806 Mr.:0.038849315117364246 that:0.03749617133485052 in:0.035552871266442694 Mrs.:0.022501402823346915 which:0.02123924194599288 a:0.01931574625006573 to:0.018732434543853364 his:0.014277305910035551 when:0.012369804522166431 :0.012284549055542177 as:0.00976422368815642 he:0.00970781880966711 for:0.00927189170209692 tho:0.009034083963245747 said:0.008744635319874062 :0.42197758026824567 +of:0.09971273677108587 as:0.08059411159159538 is:0.08052974317381995 was:0.060812930365484415 with:0.055166590120991 and:0.05266345644584731 to:0.05239489987006239 for:0.04538642283770519 by:0.03679398622679661 that:0.03388557334310434 on:0.0322113798798494 such:0.031320640122075326 in:0.026090332596763594 be:0.02607579306305552 had:0.02022549362958741 made:0.018677180914449622 have:0.0174358975984395 not:0.017120064942474908 at:0.01670574848680386 :0.1951970180200084 +the:0.41193014728767025 Baptist:0.06515062287294328 Presbyterian:0.056549449816752556 a:0.043946955834441026 Episcopal:0.039098461736226525 Methodist:0.03315608637657426 of:0.024058117852742616 Congregational:0.02318154943722681 Catholic:0.021512354943613452 this:0.021440547195773662 tho:0.017157855473802195 per:0.013150267294965944 in:0.012991539264878432 The:0.012108008028718201 Christian:0.010542781658831912 and:0.010015150536564777 tbe:0.008792577782096364 for:0.008584945756344229 Lutheran:0.007781154884610279 :0.15785142596522325 +and:0.1076391669811081 the:0.05556622934013083 to:0.05142632038917368 of:0.033975863965045726 that:0.033560729000472196 or:0.029278777173560862 I:0.023886865475237527 which:0.021822238125004785 as:0.018994941940819257 he:0.018343661212369463 not:0.018279612913732562 for:0.01824961903242739 in:0.017193015956536512 have:0.01631436452677547 re-:0.015713547306708615 :0.015441233384014838 con-:0.014974337967849067 dis-:0.01492060174745288 it:0.014538158030114495 :0.45888071553146575 +the:0.05716412740174206 :0.05452886500715944 and:0.03723513441756651 I:0.03143297197685634 do:0.02944940172843979 .:0.019365591142524653 Mr.:0.013516564319735969 that:0.012983203493249544 The:0.01126872494093023 A:0.00994272771269721 a:0.009720392492733211 to:0.008312234847722345 it.:0.00825075419033352 of:0.008246320916074199 J:0.008135109728691223 at:0.006666687028267338 he:0.006381997112757789 him.:0.006283589795827382 but:0.0060623008485096806 :0.6540533008981816 +;:0.021381982511931026 in:0.02068160189418102 Columbia,:0.014902207318129494 up:0.013594162370950411 day:0.009009977052929453 them,:0.007909741241357652 mortgage:0.007451693663579814 ,:0.007232060574169194 him,:0.006574700090376908 mortgage,:0.006548243284008476 here:0.006284083779936049 day,:0.00626024743295148 years,:0.006169415949849184 year,:0.006083382676408468 sale,:0.006054801606921983 it,:0.00603756968983689 time,:0.005988405526992496 feet,:0.0058115617538736595 county,:0.005702940030027313 :0.829321221551589 +and:0.013573944579213541 it:0.011541296734830672 him:0.00955584253230661 them:0.008326133938339126 men:0.007611141610975634 that:0.007488941216879449 said:0.007205926668334642 time:0.006318035427714377 dollars:0.005761275826134723 man:0.00545012152532938 him,:0.005303993705122951 wife:0.0048327716711563965 ,:0.004530382205804747 :0.004377934244998352 up:0.0043601720605571884 made:0.0043259853050438965 one:0.0043127455748896955 them,:0.004092578047370468 here:0.003989113157863237 :0.8760416639671349 +and:0.07895257911471103 was:0.03596317658514438 out:0.024016824392823457 that:0.023672598027062328 placed:0.022844208461019616 work:0.021707439938587154 made:0.020781005318872947 is:0.020224993929329655 up:0.019794182040466738 put:0.018288921183371155 down:0.0171740551508179 interest:0.01663630075189571 point:0.01659978677065351 him:0.016175999448187352 held:0.015562908663841706 Dakota,:0.014616466073415059 place:0.01424333231426501 Minnesota,:0.014067166610364513 it:0.013665465625771424 :0.5740125895993994 +as:0.06931392982974462 according:0.052071562389565784 up:0.0511867300210483 and:0.040371568633051955 went:0.03351644485287816 back:0.032358406609281 regard:0.03073407747799069 feet:0.02852138506231652 down:0.026379903432040268 owing:0.02466642634685871 due:0.023695193974505355 go:0.022910973192184297 reference:0.020802802907016128 came:0.019883741951819873 sent:0.019874244915639484 attention:0.019565955494145405 come:0.01885185084678811 given:0.018792390567602263 it:0.017366961307524745 :0.4281354501879983 +one:0.1028303141280697 part:0.05963429477052991 out:0.04766456937681193 some:0.031418679026461914 members:0.030764490253327767 side:0.029940657362655835 portion:0.022063658796890564 office:0.020457735219956013 member:0.019726706386316174 end:0.019666887540649894 tion:0.018667441728710307 parts:0.016814747270460957 people:0.014112771422418794 all:0.014072739582212475 any:0.013183573287639892 One:0.013083578354183906 that:0.013024335602903442 account:0.012482348155001894 many:0.012077825070275192 :0.48731264666452345 +the:0.08741288820481248 and:0.07392080242938477 be:0.0572668144792991 was:0.05686739458441792 of:0.05297029938296901 to:0.040095074017987696 is:0.03448309022071693 been:0.028380973754521515 a:0.02485235362607966 are:0.02226522268065813 were:0.019682022343204007 in:0.019454144698829248 or:0.019273705289081854 as:0.0158232132157123 not:0.012361914460680723 being:0.010097596398749334 for:0.009388164492904385 :0.00930537568905371 their:0.00894740846790883 :0.3961515415630284 +of:0.22557359588742584 to:0.10458930267385574 and:0.0684222189514812 for:0.05460278611987144 in:0.04941752151071073 do:0.045029326088421924 with:0.04161872973043928 as:0.03931157213236232 that:0.03712359489597912 by:0.036088961210425784 is:0.028190870558092246 all:0.02262442141354895 on:0.016073963193681522 make:0.016066944955457473 from:0.015714006290457758 In:0.015011795414376547 but:0.01498007410357819 upon:0.014271631160636806 was:0.011349604113269733 :0.1429390795959274 +and:0.04491804315792162 covered:0.04018777062174743 filled:0.03439831602262882 together:0.027274277474498326 charged:0.021185110165574027 it:0.018970003064941 up:0.017480630635068384 him:0.016212955803671315 them:0.014293565819421733 compared:0.013525193832595763 connection:0.011614636799553067 parallel:0.011283394857871554 do:0.011130056469426521 loaded:0.010955317894446719 trimmed:0.010816708291869467 thence:0.01055173438898371 lined:0.010343364261696459 but:0.009666074941737286 troubled:0.009518829589372486 :0.6546740159069743 +and:0.17555945997563457 days:0.07253367968632662 that:0.06622549404816999 soon:0.03513159070519422 day:0.03508985799259537 but:0.03503472788107331 Soon:0.029329526970281603 look:0.0271776900487565 and,:0.026132466250236866 even:0.025804456659127676 time:0.02546237887391438 years:0.024773453718442966 Shortly:0.021139751597373715 shortly:0.02104145003324414 until:0.019578140416255583 months:0.018586804601629935 year:0.01711643428709077 And:0.01663109084284662 or:0.014541654064752352 :0.2921098913470528 +of:0.1462667786212818 the:0.11311178347038299 and:0.06329984292166121 to:0.05226433769762739 in:0.02221452860331263 a:0.01994487186008941 on:0.017961640544266386 The:0.016720237204012434 be:0.01653811657161028 was:0.016314651473296783 Mr.:0.014733175486113213 for:0.01453090968204903 is:0.012674033373706468 or:0.012643998500132186 his:0.012449266497499042 with:0.011977649511894216 :0.011620379426465322 are:0.011197681349073707 which:0.01095696674114518 :0.4015791504643803 +neither:0.3865617992697378 the:0.07746424140819994 and:0.047975611105884025 of:0.02665633379111814 to:0.026636192025379053 for:0.023006967259198 in:0.020727309405945075 not:0.01704487258121643 a:0.014904377530555528 no:0.014292274093123756 nor:0.013387527722910682 more:0.01315208341306639 that:0.011200244855664801 or:0.010525415660261196 their:0.010319689186861426 I:0.009194729573670754 be:0.008863726223914648 he:0.008374708871587398 con-:0.007319158099148111 :0.25139273792255684 +of:0.14134021128274424 any:0.12134982540026734 in:0.08228162669766739 no:0.0718666166143443 the:0.06868254752535596 that:0.05253269788130906 some:0.04668344917627884 and:0.04454569117904434 only:0.03877662867681982 to:0.033813224299874906 by:0.029071013354693018 for:0.025259145634437426 every:0.022346778756462998 but:0.020941103189437652 a:0.019380471732197504 from:0.019134859523988305 In:0.01901768677735395 than:0.01651329329071256 each:0.016029804420403245 :0.10943332458660712 +the:0.2383662814864643 a:0.21076806396457998 of:0.07335856650989792 and:0.04548523812123981 one:0.028986900755112132 or:0.02121412309264814 each:0.01996958443943798 his:0.0193193729820306 its:0.019228899816773014 as:0.018825453711797776 be:0.017883118481035933 The:0.017340834347664952 for:0.01642286677560761 their:0.016076498618220813 any:0.015546342334445601 this:0.014514067392576184 are:0.012502020757796708 is:0.012178467644103717 our:0.01125840165440996 :0.16975489711415687 +the:0.12945038615764137 and:0.09765563321630716 of:0.0807586788033844 to:0.05307900979782404 a:0.03352215360728198 for:0.030975420118385895 or:0.02329321631359551 in:0.022441376417710712 that:0.01576925488183137 as:0.013099948798466389 be:0.012863944841490567 will:0.01164479224926424 their:0.011408931469613179 more:0.011108470943500648 his:0.010454084218889801 :0.010323456444849163 at:0.009972594008292004 other:0.00953813929494209 with:0.008935615937127363 :0.4027048924796021 +the:0.08827196952465309 of:0.08188988471867381 to:0.07652438159563933 in:0.06891520740953173 and:0.061651877471652086 for:0.04091713250336908 as:0.019123792253903694 In:0.01786205744748698 :0.017660977108781815 on:0.01712065585308703 that:0.01653400599700668 or:0.016217538444421403 a:0.014640426060845384 is:0.014324871981983579 was:0.01401999315960202 his:0.013495344945437259 which:0.011983264923800047 their:0.011575141120888099 by:0.011555113596566092 :0.3847163638826708 +on:0.4979086144762583 of:0.1063706700416037 On:0.059005873788665626 to:0.04547051048907011 in:0.04311235851178776 from:0.04285059743237513 along:0.019097151130198296 dated:0.017711796605341484 and:0.01615176562639643 with:0.013136481975554946 by:0.012933763786961138 at:0.012661225737075982 upon:0.012554599445321816 In:0.010160447049998937 through:0.009224469810738383 for:0.008020196286009272 across:0.007891517670799956 ou:0.006033945717636296 that:0.005909380412059452 :0.05279463400614696 +is:0.1200805714874908 of:0.11259550427672191 in:0.10254028173848917 with:0.09023157478603847 was:0.0651188714403134 and:0.056016345919198594 to:0.04751250820359603 be:0.041934391907943555 as:0.04155596919356418 for:0.03790835163634668 by:0.026559600993654193 such:0.02205836645277188 have:0.021360992867046742 that:0.01957970639748846 made:0.01942543929877002 had:0.019262262076822387 In:0.018728256967808228 Is:0.01637041288206479 on:0.014871220477747566 :0.10528937099612294 +the:0.3677011094065249 to:0.11514947286354266 and:0.082820757071127 The:0.04750320138301933 their:0.045877683154430596 his:0.037064980782597255 an:0.032164405744283524 a:0.03162584575770133 at:0.02860868126684336 its:0.02544643883878915 all:0.020745543825343868 tho:0.01948930465246405 of:0.018578872106134108 will:0.014761639015462905 our:0.010469376894099958 which:0.00876098677501188 these:0.008458755277940903 who:0.00815031322146236 some:0.008020240014058919 :0.06760239194916194 +in:0.2335238147211542 of:0.16941642605423946 to:0.10719131608158354 for:0.08673256106012149 on:0.060502152971249716 In:0.042890696200961864 with:0.0421496798524546 from:0.03221041443810044 and:0.027574564690251123 by:0.024863841740607368 have:0.014952169050890965 all:0.013145411823060598 into:0.012970247643000823 that:0.012802076241187298 upon:0.012215245738001057 up:0.010628023100321559 make:0.009935403429372415 at:0.00976380566047867 take:0.009218942599391914 :0.06631320690357091 +and:0.14469271391048635 had:0.09891455771011519 he:0.09186522533052525 has:0.08135285291148453 have:0.07648248491946262 be:0.03672228525396225 who:0.03312977400567061 I:0.03264692422933699 was:0.03220036870020126 He:0.03012491846843731 she:0.02912386091201011 been:0.019388564620852436 which:0.017118843875719877 it:0.013801358581511058 is:0.013529453932687247 having:0.011719538339014415 She:0.011118361169127542 then:0.01029220188645235 that:0.009545532190032987 :0.20523017905290963 +and:0.14361019776066067 he:0.10246156073786411 I:0.06681745184376152 which:0.05129909905323246 they:0.04930283147606204 nor:0.04319188352901803 who:0.04052062776140533 it:0.036020504689328256 How:0.03231642734216047 He:0.029718559263060315 that:0.02534057969632566 we:0.02176087423253282 What:0.02144223498597524 she:0.019496527476459205 Nor:0.01912530500705732 Why:0.017741116268121554 It:0.014697574292706184 but:0.014569231347326992 what:0.012380483555894892 :0.23718692968104693 +the:0.11919516938815296 of:0.07230453158552728 and:0.05781056740443249 a:0.043018564803886335 to:0.031305092790907506 in:0.020848713353460488 at:0.014270110001066288 .:0.012526810245749479 :0.012413283442322082 for:0.011719122709941797 by:0.010808400946589808 or:0.010404172990115616 The:0.01003576004804544 with:0.009811868184449042 tho:0.009295902015355835 was:0.008924239095331684 that:0.008672304223433876 is:0.0085591147338948 be:0.008335143826716943 :0.5187411282106204 +the:0.6149980269005138 a:0.06065440729998043 The:0.04730988599257633 in:0.03538844403338502 and:0.03071106882538313 tho:0.027746924477093454 of:0.02447334887244667 tbe:0.012292829187912356 by:0.010370320622907768 all:0.009465680798916328 any:0.00828454628200513 In:0.007792147718893667 or:0.006619425637238697 other:0.00629083837765756 on:0.005842171172326475 general:0.005814795664350317 great:0.005595389772870452 his:0.0055720075936903 large:0.005549802623223941 :0.06822793814662823 +of:0.28849048021329415 by:0.09309595301982393 in:0.08019306047087148 to:0.07702563124359894 and:0.05821013762045831 from:0.03879073562735361 for:0.03790454692249424 that:0.0362437134624827 with:0.03115538000656823 on:0.025861863012427842 at:0.022871645893344086 In:0.01709012205207475 as:0.013082623836039977 before:0.012061660438204135 when:0.009190635071507344 upon:0.007889892602288909 against:0.007222955148017838 was:0.0067274031671522155 but:0.006544931515053667 :0.12934662867694366 +it:0.24005304928743582 It:0.20895669536664402 which:0.058849600165360096 he:0.049131156524696074 there:0.0394523317214717 that:0.03274514210565454 There:0.026365787427170453 who:0.025843580510771694 and:0.019060990147756703 as:0.014587811963866697 He:0.01069561152127396 I:0.010236208263146375 she:0.008521990224800857 This:0.00771746026348956 what:0.007136939194242696 law:0.005935997596643559 "It:0.00575034650943901 :0.005637127580490134 opinion:0.005531834448682745 :0.2167903391769633 +of:0.15592124286912593 and:0.1240518822523586 there:0.07008884184251586 is:0.0587359033316903 it:0.05605538520779074 as:0.04256914174726191 by:0.028916836418372154 without:0.02790136791962819 are:0.025560959881876615 It:0.025292418882422042 that:0.022898649615528986 which:0.019068171293514846 or:0.01885711556471953 for:0.018797873436160115 not:0.01863672660071171 after:0.018557193168745142 in:0.018322931165326656 was:0.017948262977833467 to:0.016734974827381125 :0.2140841209970361 +;:0.04811775476565084 nothing:0.022027577256073703 and:0.01814276469258472 it,:0.0180860222619182 him,:0.013229064794934683 is:0.012181009550815186 time,:0.01129966437005354 them,:0.010841937494028876 ,:0.008092192466699778 anything:0.006264568147617317 year,:0.005980147289149057 country,:0.005901968829119629 out,:0.0057821365205836545 day,:0.005759241005690916 way,:0.005711123345594597 States,:0.005707104500980248 all,:0.005680232216731678 here,:0.005377443535642727 law,:0.00536428975794865 :0.779453757198182 +be:0.39822218734466736 been:0.13333482892948123 was:0.12434728673764249 is:0.06516979501975112 being:0.04066744643873799 were:0.021685427684574186 work:0.020647957311367978 are:0.02003685233000354 not:0.018011599431615934 damage:0.017548603744240922 bo:0.016988883055496836 have:0.01567512270840569 and:0.014971373643004273 has:0.00986938451797036 had:0.009492777851424208 Is:0.008459753730425632 now:0.0067430687760383565 it:0.0054126949119179014 ever:0.004905803720633047 :0.04680915211260089 +to:0.550827489748637 not:0.08302713267695144 the:0.06268878961679841 and:0.028866206555888535 a:0.027649325554535174 will:0.023926286347980826 of:0.019316380017351923 without:0.0173769367424191 no:0.01720175690056264 or:0.016559704667464557 as:0.013602214408602776 that:0.012766434521852589 this:0.012609805441741955 would:0.011951607393787334 can:0.011106320555074616 they:0.010671126203907356 for:0.010277942830829116 such:0.009563884526148876 we:0.00911084371384274 :0.04989981157562299 +it:0.20661626833118804 It:0.13133310388077965 which:0.05346195225056892 he:0.04322413433168328 and:0.0399221355018402 that:0.03638459118631527 there:0.02656324547693805 who:0.022588363007738477 This:0.01601752777676921 He:0.015090910728543903 what:0.013686208311658789 she:0.01181234484166701 this:0.011752239301455133 There:0.009749183368011116 man:0.007759333367156636 as:0.007068481254995637 work:0.006691860301109499 country:0.006039779831696346 but:0.005362639996269743 :0.32787569695361507 +and:0.06954454630682382 the:0.04591889931765341 to:0.04441537768223494 will:0.0397394699508654 which:0.03902395676601593 said:0.03884001254090859 of:0.03833137054480887 that:0.030175267836648433 may:0.02893916347065599 for:0.027061765505786938 it:0.023382938579402008 there:0.022841550737806325 shall:0.022684019024387738 would:0.020975563107901354 a:0.019245805635819582 or:0.01860143985334092 should:0.018461796486249123 can:0.0182102597929919 as:0.01668322510220108 :0.41592357175749767 +of:0.19605739668105643 to:0.12327334187328325 in:0.11072927591132886 on:0.08387664906502203 for:0.06933839755763084 from:0.048032393673062244 that:0.041755789718973965 upon:0.035638179911742035 by:0.035259763539691194 and:0.032797678539629775 with:0.030226203605326164 In:0.0292213466949812 at:0.013556733557513604 against:0.011802456606406457 accompany:0.01019298221846234 into:0.007555557886127505 ot:0.007407374416511981 which:0.007162298264155692 the:0.005357810818104741 :0.0997583694609897 +and:0.16256008751398546 to:0.13383340751483425 of:0.06975952137409445 the:0.04024995917293904 for:0.03960384907112731 in:0.030171718775190263 will:0.02691479311019697 would:0.02170204497670009 that:0.02144926952922871 not:0.020522825353174547 I:0.020062035181689742 or:0.019008371371517823 a:0.018327278103834846 do:0.016517992530189637 which:0.014517077502287692 can:0.014173772337158387 have:0.013950097509341966 with:0.013536399034756643 he:0.013532714031446402 :0.2886067860063058 +will:0.1499070066766686 as:0.11156851872115787 would:0.10252501097168547 and:0.08711604230839165 so:0.055086502414159605 was:0.053872329627404195 As:0.0336099561171461 very:0.033236024401184006 may:0.03169746694573203 I:0.03101252273338845 not:0.029602086225114232 be:0.028616746055776816 is:0.025079995089039454 but:0.024715875919795304 it:0.022154240189775277 It:0.015412304513595236 should:0.013461164553422918 are:0.013245550662402955 were:0.012932512999595087 :0.12414814287456474 +a:0.342227780571944 the:0.27075862437281095 and:0.04708608010933312 The:0.030475481150761072 of:0.022531396721634244 no:0.021530422938519127 any:0.02121122480301086 great:0.018911200329940786 in:0.016224764466656823 A:0.013859455358991276 all:0.012379270110537594 tho:0.012190191693152436 little:0.011307070867794018 general:0.01053164283919838 best:0.010195097095674748 total:0.009433667289493486 some:0.009296189816606511 good:0.00853287665228269 or:0.007580506550829511 :0.10273705626082844 +the:0.5737770958690172 an:0.03467090109161399 tho:0.034075828360040805 north:0.024501140987186705 south:0.02270008286898892 west:0.020997076523278372 lower:0.020399497483376768 a:0.020266471192755195 this:0.020233066544990682 The:0.02012875311487988 upper:0.01802774144184572 east:0.01710292189505515 and:0.016723717993392135 one:0.01643810304495542 tbe:0.014571583388934753 that:0.00906956272920847 first:0.007634184319374195 rear:0.0072666680683378644 said:0.00623487590926857 :0.09418072717349923 +the:0.2854818811691376 most:0.08011371144682979 a:0.07813546255426645 of:0.06925445157960261 an:0.06900424898903607 and:0.0668436936076898 The:0.0660243652106915 in:0.02911823081829201 his:0.026473869216050574 no:0.020840516880249058 to:0.01928579100060574 tho:0.018815426682805197 or:0.018426426717438816 more:0.017968561990144228 by:0.017932534032189935 for:0.014716377771086316 her:0.012476014092962171 with:0.011931434134594628 any:0.011192422387218078 :0.06496457971910945 +sum:0.03352282876311118 number:0.028116684882597106 line:0.019995206059833036 city:0.01946514558931857 out:0.019275318828420953 day:0.01666865340772654 county:0.014872697538657208 amount:0.013254184849875051 Board:0.01252325449624941 town:0.012449555905674143 side:0.011663975251122375 part:0.011517157473718155 County:0.011460540331966697 state:0.011087331502382173 City:0.010878919191854432 purpose:0.01081028255427907 and:0.010297866493795984 way:0.009848747943663767 name:0.009522170936943183 :0.711769477998811 +the:0.1356679687240643 of:0.08050639126548446 and:0.0719462407215778 a:0.04498596015738318 to:0.04210208725891541 Mr.:0.02324717395057061 in:0.022483604121147017 his:0.021208053371588594 her:0.018950663933813748 was:0.01627180482189387 their:0.012942011811711746 that:0.012707498087347122 be:0.012407984518178912 In:0.011594270480116181 for:0.010874253797185972 by:0.009789670062082916 he:0.009544982243742004 at:0.009381656067054774 :0.009279090171759668 :0.42310863443438174 +the:0.5022633730398415 a:0.14609814466690907 this:0.04062150634047131 tho:0.025951984570828025 The:0.0227280711905165 good:0.01961077191882436 present:0.017033338328441616 or:0.014183806079994478 financial:0.013718661099319702 in:0.01328792770704012 any:0.012455945504090004 and:0.012008607764803735 tbe:0.011997955618658627 every:0.01137630830744554 great:0.011218064665785055 physical:0.011011255682264444 no:0.010288213639380383 mental:0.009273930666536307 his:0.008921478056243617 :0.08495065515260569 +the:0.14048602411779254 of:0.10252225631561868 and:0.07633183975731359 to:0.03245895674061561 that:0.030733737144535016 The:0.02900268575179401 in:0.027931447478085947 which:0.018752304155935415 or:0.01571308762550976 :0.015055749982663399 Mr.:0.0149342694058751 their:0.010852954179470109 on:0.010754035534755927 as:0.01048165637565865 for:0.010288939626440372 said:0.01005519865138013 tho:0.009754500854680081 he:0.009279558727176576 a:0.008993895187521092 :0.41461690238717797 +of:0.33746291930892747 for:0.06662714331046866 by:0.04939172791332388 and:0.04920724754967564 in:0.046427397706048305 to:0.04430435733414962 with:0.033028755290689965 on:0.029552578080875542 as:0.02858548961480595 was:0.01898059181391765 over:0.016074164348953895 is:0.015120987385324363 her:0.014408296200657845 between:0.014163519286539387 from:0.013775022777788228 left:0.012924990193341214 the:0.011623107930805763 In:0.011591082388418505 his:0.010478930318107725 :0.17527169124718034 +the:0.21641525464450773 and:0.13800585047754582 any:0.1365506646010098 or:0.09743235075440465 of:0.07352639938287518 in:0.03975676550612069 to:0.03470109510902913 no:0.03234297847530475 each:0.02554318676135974 all:0.024325783328928895 The:0.02010962672270834 some:0.015951206624335586 for:0.013952134460029344 that:0.012772184637995673 In:0.012565748070023511 with:0.012504905151668869 every:0.011942572097565423 by:0.010724239051581411 such:0.009929206980529372 :0.0599478471624761 +is:0.2134471317925318 be:0.14127274103398949 are:0.08277306675134112 and:0.07411367494544362 was:0.06799905260150027 he:0.03968651742120061 been:0.03741342559689855 not:0.035034561912271216 the:0.02880039011886109 have:0.026546551000130307 Is:0.025750850328176107 they:0.022130990185487327 had:0.021736327680889796 were:0.018205619059148553 most:0.01618054821315426 I:0.015695234559889793 has:0.013034850086634332 a:0.013001969882976477 bo:0.011445765532855316 :0.09473073129661995 +and:0.10038275173527456 Beginning:0.08454506876778513 was:0.04270128988250076 Commencing:0.0405695833232284 is:0.027566222665360032 that:0.019405408689992725 look:0.019015184862769922 it:0.01872728329699828 him:0.018662942658140315 be:0.01834873858796612 are:0.016965247200661948 but:0.016697303740895116 up:0.01624550082114781 them:0.015047790297139343 held:0.014226250042085734 beginning:0.013901322846056665 commencing:0.013833032028030028 out:0.013753735524837454 sold:0.013174941032054379 :0.4752304019970753 +and:0.11307325099288908 of:0.08285209567205797 the:0.0774104846742385 to:0.06293447839288457 in:0.035981311548378254 that:0.032583594252424096 which:0.030999072307980033 for:0.027592842608915816 a:0.023122720441200086 will:0.015106959507029004 as:0.014868246711315968 any:0.013481634318533007 he:0.013264007677561624 or:0.013025050360394802 what:0.012705040549042859 I:0.01210296377880126 with:0.01160146683321852 no:0.011225810561440064 The:0.010981801074444157 :0.3840871677372503 +and:0.1153091083652883 was:0.03881756487103745 is:0.03001419764306303 are:0.025967406590331966 that:0.025385179102836282 or:0.02342222836560876 be:0.017501956928660158 made:0.017200249136370437 were:0.01661461181047379 it:0.01567665623840517 up:0.014695605083367312 been:0.01344749454601661 engaged:0.013347357560392816 them:0.013087912247224607 but:0.012982085476851805 now:0.012601780425526031 used:0.012328347355208737 as:0.012297099912246253 out:0.012190813442751277 :0.5561123448983392 +the:0.267446216289887 of:0.1152030894957269 The:0.10517966561283203 his:0.04354769892239285 and:0.040296235962316934 that:0.034672185394530736 their:0.029569666608113845 His:0.029379880247018667 this:0.025931738621469413 her:0.0225934568742079 This:0.0222818611572184 our:0.019598464054873057 these:0.019456995466181563 tho:0.01814157198848249 for:0.017942863473238937 whose:0.01745269424854559 a:0.016874100726531647 which:0.013028931507736275 all:0.012457839245031552 :0.1279448441036642 +of:0.24942263892138478 in:0.11113235507716533 for:0.10712893692856215 to:0.06173540604080026 with:0.05574816167093078 on:0.04654018820287685 about:0.04350616832706712 upon:0.02731460324230332 and:0.02242385076130915 In:0.021930544379638747 from:0.021898730657731888 by:0.01815848605782791 do:0.01708990744708662 over:0.013325738130263921 at:0.011193532111490444 against:0.009011582965163722 before:0.008272694934010038 made:0.008180980471067306 that:0.007439925249607609 :0.13754556842371207 +deg.:0.47380115467165734 of:0.060425991981374105 N.:0.025941129837102204 south:0.021110300354175947 Township:0.020795347182740394 W.:0.019921314311657206 and:0.018725844197338692 .:0.018320034398917835 north:0.01724292513554135 North:0.017057779978329104 in:0.016133536382484066 S.:0.01524905570364416 degrees:0.014843658305255903 E.:0.01318724540795957 to:0.01316349974073565 from:0.010922824201206608 dog.:0.010699652494453244 deg:0.010597782540854625 8:0.010521305813026023 :0.190339617361546 +to:0.5542949672023509 not:0.08131018243133073 would:0.0603412527086794 and:0.037041640991105955 will:0.02250453292383823 or:0.02159494271955799 I:0.021180954977223457 they:0.01609408138883341 we:0.01572604671254612 may:0.014413160897636423 you:0.013779181838318543 must:0.010647214616067857 a:0.010421243153992852 could:0.009906204631206287 should:0.00907086416295863 who:0.007386227000979905 cannot:0.006495981517129686 shall:0.00640263986735257 might:0.0063202060305087 :0.07406847422838228 +of:0.10289354736197967 the:0.09002329561671231 to:0.05386129141061802 and:0.04055192391088578 in:0.02869916972690513 for:0.028326441636429084 was:0.022202090649551223 a:0.02005381731030378 be:0.01924343574871064 by:0.01805660010798709 at:0.017997383300167265 his:0.01522467643062003 :0.014536667581281663 with:0.011681309963101828 on:0.011536149435234459 were:0.011212260475020995 more:0.009604719113825723 been:0.009591191292529364 or:0.009061785775881018 :0.46464224315225494 +of:0.13701258164124566 the:0.11145977586842178 and:0.0683763109695548 a:0.05160649632744299 to:0.04756148493268349 in:0.043135220657858644 with:0.018194186850830886 on:0.01682233098538749 The:0.01654937129660699 as:0.016086422657516107 that:0.015746123238071407 from:0.014541472820556072 for:0.014439583548789138 his:0.013851140504368479 by:0.013696462680213666 :0.01061949894373512 their:0.010338902388281534 In:0.00978391204236451 at:0.00920721402051957 :0.35997150762555163 +the:0.15221692559957206 of:0.08069151212182069 and:0.07240635484257117 a:0.06392219701248592 to:0.049176531100385425 be:0.03126073625539749 was:0.026597884151575976 is:0.023935668013294973 in:0.01809554000060103 or:0.01736809520316659 not:0.015262215701975859 are:0.015051161940897423 an:0.01311498090898963 been:0.012584606500930769 for:0.012457103310419224 their:0.012288032821829989 his:0.011371194071019814 that:0.01120572166061323 were:0.011074588239307515 :0.34891895054314526 +and:0.0361483457444538 :0.029840326829800628 that:0.023927619385054628 it.:0.021807231072443863 law.:0.011075576519266972 as:0.009907567245657748 .:0.0098295749064446 them.:0.009763708515590615 but:0.00878404583567918 asked:0.008346238526733976 you.:0.00700897400921405 it:0.0061898235700774155 us.:0.0060057510363729005 do:0.005955204826394707 I:0.0055504849739445895 sale.:0.0050403431075603 day.:0.004991979177492049 to:0.004974829460348686 him.:0.004834540845600765 :0.7790178344118684 +the:0.17795178618139024 one:0.09963399045909319 other:0.08961307849530455 each:0.07023511094598535 either:0.06756056683402067 his:0.037981156517596884 a:0.03389051243854791 this:0.03305634142819201 left:0.03022339219810531 any:0.025098833631854518 and:0.024737999784774808 out-:0.02398352316207814 in:0.021507898961622075 of:0.02099536735018942 right:0.01725151854756077 to:0.016728679991175395 their:0.014755026290742473 that:0.013240071251062418 tho:0.011632421374500943 :0.16892272415620294 +of:0.12649912670574465 and:0.10747477922426114 Mr.:0.05103048844189261 Mrs.:0.04601693327375137 to:0.04420229523596074 by:0.04160877195393157 that:0.025668717607642385 said:0.01765222611016786 with:0.016587976426947662 Sir:0.016576358487113765 from:0.014451851718709212 as:0.013770550923670662 :0.010585801940093054 Dr.:0.009207421037517887 St.:0.008510395949023104 for:0.008377263250793411 Rev.:0.007673289406015024 the:0.006218278874173225 or:0.005812720877300361 :0.4210747525552903 +the:0.5205205741332163 a:0.07316406886266087 on:0.042222150900903324 The:0.03806290620835937 of:0.031186319809951266 this:0.030956733361306034 and:0.02910332082844441 tho:0.028540789346590486 tbe:0.015218302524399138 an:0.01263250248358697 his:0.009837005970490729 in:0.009142628293982009 that:0.007245986993460477 said:0.0065963256739130244 or:0.006534222257709935 its:0.006184689641395046 their:0.005485874975447495 for:0.004792428073390737 last:0.004378981705186468 :0.1171941879556059 +in:0.2886208160235366 on:0.12952889349592234 of:0.08783440121292385 and:0.07826614916758709 In:0.05443710924211772 to:0.053303151271943294 with:0.047809862019971054 that:0.024751402571963073 made:0.021229960063994344 for:0.020847210626513804 all:0.01830587665157625 from:0.01738136386867225 upon:0.012987674798041516 as:0.011829139718045766 up:0.011733740547984583 by:0.011119749340814186 do:0.011035977629007574 into:0.009781622378394047 On:0.009699950490101689 :0.0784959488808889 +know:0.11302501055626778 of:0.10507278208357866 and:0.09859958322637234 to:0.0818600984704853 for:0.060344640922515166 see:0.05040805459399678 just:0.03910208463577126 or:0.03590247783059832 do:0.030949396288215174 but:0.024347068413440778 is:0.02234488581583495 with:0.02136205446614308 tell:0.0211588145168378 in:0.020235951736406434 from:0.02015071300334124 matter:0.019637192735280803 as:0.019419763526156753 Just:0.01919507273258552 him:0.018470403747451968 :0.1774139506987199 +the:0.19823193478539852 of:0.08698694377256569 to:0.06222583266450553 at:0.03656614154312146 and:0.034932742655731645 by:0.025583580339448714 :0.020808761724035504 in:0.01871157273731872 said:0.016892466510926525 The:0.0159320965527923 from:0.013869751762096224 for:0.013728928329788262 tho:0.011100443427945934 a:0.010461809855644105 with:0.00745633724906721 that:0.007260638514360891 Mr.:0.0063722690646472605 tbe:0.005925932573093535 this:0.005070686536238343 :0.40088112940127363 +of:0.10181801070015574 and:0.08578674986707184 the:0.08183924949590472 to:0.07747070321503387 in:0.03295734961223122 this:0.02458727056183893 that:0.023235909950979395 was:0.018854385144933317 for:0.016127788284737234 not:0.015448865982712235 an:0.015434356697665564 is:0.013400813345295788 as:0.013211561629380595 a:0.012256109269130877 are:0.01144621346629689 were:0.011291828033959896 so:0.011202328640752537 will:0.010577367600220348 or:0.010533666513649096 :0.4115194719880499 +away:0.05746860598250849 and:0.04985561698690421 taken:0.03950823995165392 miles:0.0355312759828073 feet:0.031845900191456514 come:0.022313957473317422 them:0.021637161013586904 out:0.020621546731341717 came:0.02000539576637417 up:0.019820502682224503 him:0.019195504147748815 received:0.019046714556510396 far:0.018152378296247898 removed:0.017489734983720518 down:0.017467467859455896 it:0.015386533775439217 years:0.01424855034507225 annum:0.014237643714946796 free:0.014107989586278378 :0.5310592799724048 +the:0.40717564181492866 this:0.1892765327841817 next:0.050461045089948475 a:0.041903246274198544 Sunday:0.03153512496208237 early:0.022793046456788642 day:0.019313589709168293 tho:0.01918092458547786 yesterday:0.0176414014692512 one:0.01692422113392088 Monday:0.01438059137229474 every:0.014023177613527825 The:0.012968438041488069 that:0.012877877928685482 Saturday:0.012748549659169998 and:0.01169235620634209 last:0.01143501451250865 of:0.01124405632028423 This:0.010334986493988856 :0.07109017757176339 +the:0.11919516938815296 of:0.07230453158552728 and:0.05781056740443249 a:0.043018564803886335 to:0.031305092790907506 in:0.020848713353460488 at:0.014270110001066288 .:0.012526810245749479 :0.012413283442322082 for:0.011719122709941797 by:0.010808400946589808 or:0.010404172990115616 The:0.01003576004804544 with:0.009811868184449042 tho:0.009295902015355835 was:0.008924239095331684 that:0.008672304223433876 is:0.0085591147338948 be:0.008335143826716943 :0.5187411282106204 +was:0.11770796250610314 and:0.08883310164568237 be:0.06804855561000418 is:0.048723029819758026 were:0.032624186162514675 are:0.029691876524996077 not:0.028718551277036403 will:0.02702168813878345 been:0.024759869352500245 it:0.022802838052389675 them:0.020538580133850202 that:0.018288085996354637 I:0.016808680194009332 him:0.016314117516438957 would:0.01554652512221907 but:0.015138329427514497 so:0.01383686434306028 up:0.011947416775161965 me:0.01104330729306316 :0.37060643410855965 +the:0.2756253861479788 and:0.1251809243310623 in:0.09238546623570551 a:0.07895605441996141 of:0.04012223586235322 to:0.03147134356954661 or:0.028400815963758395 In:0.022093764742029655 that:0.02107013995726951 tho:0.01906921169663788 good:0.014425449540694 for:0.014168791311369416 no:0.01383991555908636 this:0.013465637202682694 at:0.010161313532332782 his:0.009914365154472068 only:0.009582304320677991 due:0.009333961799394948 with:0.009208485316658351 :0.16052443333632804 +the:0.12501213529677174 and:0.07155652309953148 of:0.052609940129058716 in:0.028320735107419746 to:0.027352226368332348 that:0.023655582888587063 was:0.022042931093136858 I:0.02117992979569259 be:0.02040334901588246 for:0.01915073747965047 a:0.018186963787182143 is:0.018082597111518887 on:0.015141432607690512 he:0.014740905412035949 his:0.014678343154957307 or:0.014471548948014279 you:0.012428922258617232 dis-:0.012004838166587189 it:0.011271760331748027 :0.456708597947585 +seems:0.10533731715594809 ought:0.08540800787654407 seemed:0.05993859310596644 seem:0.059597636456045204 and:0.04862942117800906 is:0.04405378225685827 said:0.04319155343924715 supposed:0.037444323532873816 not:0.036232755509214475 as:0.033034600924368766 was:0.024426522341206073 going:0.02331430968190462 enough:0.02273536852789549 appears:0.022480920310009915 likely:0.021445431245536477 him:0.021437276507021992 able:0.019225153339494032 like:0.017388351905968998 glad:0.017109834262067216 :0.2565688404438199 +the:0.3654976058509561 thence:0.2335317716021867 tho:0.035556107532226336 and:0.03236634566106578 The:0.026920727776737877 bears:0.0212642685682733 of:0.017861035841223515 running:0.012186530258397698 tbe:0.01162318930419625 a:0.009897044083863108 theuce:0.008837171433332484 in:0.008439072673580659 street:0.006802713300022366 said:0.005707374729732803 thenco:0.005583508916686228 miles:0.005178109646940504 on:0.005032829907548191 street,:0.004710383103906495 bear*:0.004191477708441689 :0.17781273210068194 +as:0.10120657631280781 of:0.10084354256391748 is:0.07846704442658871 for:0.0739251635756616 with:0.0717947357003433 in:0.06656605435328472 was:0.059856984581698434 and:0.056914367141521566 to:0.05414944797570098 at:0.03814540018484469 by:0.029640486312271244 be:0.027749163170091327 such:0.022991613893097014 on:0.021372106286287378 that:0.020681144990150984 In:0.0163258017006425 have:0.014090458840805228 or:0.014023242880371376 from:0.013308499567505013 :0.11694816554240865 +is:0.3108583502383185 was:0.13788718991636828 be:0.07066615035159518 not:0.04589044092060789 Is:0.04100308718158417 so:0.0391783442639794 are:0.037897430073640666 and:0.033523813314777745 I:0.029119359950077174 generally:0.027950371015858788 he:0.02750410514043691 the:0.02681367020705916 been:0.021332679064617454 He:0.019124653124993417 further:0.016954089759821152 were:0.014056721619135588 am:0.012362762798524442 also:0.011125446035603852 have:0.010354162552926744 :0.06539717247007347 +and:0.14511651796982256 all:0.0461029888982398 of:0.03521838636831002 so:0.03488026357989483 fact:0.026328470768075464 said:0.026005324954546216 thing:0.02512083808254852 but:0.023039777322788682 one:0.02137797834725467 All:0.020949389618254096 him:0.019287237165165956 things:0.01858375698440338 say:0.018441097932161928 time:0.017700912193318506 know:0.01737703511141009 me:0.017234389150929893 something:0.014293758881360839 it:0.014032158372659143 as:0.013509957004740827 :0.4443997612941146 +did:0.17541971322466798 could:0.17343021200611303 will:0.15405371044585428 do:0.1304610091503433 does:0.09581398500289795 would:0.07042289274528139 can:0.027602338901231878 should:0.02600326930447017 shall:0.021947899872529514 must:0.017211965751362333 may:0.014798106584406492 is:0.012719565409231874 and:0.012491170523790058 docs:0.008072551034569945 are:0.007708455174593751 was:0.007281290157575818 need:0.007134675512521187 have:0.006407016074291522 might:0.0052932384997245235 :0.024726934624543038 +the:0.11076639060148961 a:0.07849534528798262 and:0.07662355077029165 of:0.07260297245149884 to:0.052614458906641126 in:0.02898323381454322 be:0.028619334122366183 was:0.018316043946281182 is:0.016699142604069347 or:0.015571116417843511 for:0.013777377220018703 his:0.013466243388399383 been:0.012200092708878738 .:0.011651566712874907 :0.01138899460054603 their:0.010869189054887483 no:0.010269055828557971 not:0.010112362588368682 an:0.009710495306262912 :0.3962630336681979 +it:0.1432559018871836 he:0.1286390292402265 It:0.12841812492596144 I:0.07419050939271307 there:0.04938617973803716 He:0.045081758608067436 and:0.033952574130207525 she:0.03358554252629715 which:0.03324991740427255 who:0.024471633063763265 that:0.02436355036947876 There:0.0217910372166226 this:0.013765403459391496 She:0.012638622749569388 This:0.011133268964823485 ho:0.01096849263777988 lie:0.008862998803520506 but:0.00823064244529776 1:0.00737740561542708 :0.18563740682135935 +and:0.07558940021936399 recorded:0.030196237618668006 was:0.028917161578042846 made:0.027969746247669736 that:0.027730098932509103 o'clock:0.025060522019555328 up:0.023026552239529506 is:0.020398277211376416 found:0.02003101797656537 placed:0.017482208134164214 out:0.016937164562539058 place:0.016819459500107596 interest:0.016629321966808677 him:0.016002796715253755 situated:0.01573420479581609 it:0.015128305982428461 them:0.014715943643665314 part:0.014646613000297721 interested:0.014450471929902294 :0.5615344957257364 +to:0.2732784824730236 of:0.185250987885513 the:0.08884880550232153 on:0.07934167074133426 under:0.05439860684687507 by:0.04634778698626499 in:0.039917775291208484 at:0.028977709659066736 an:0.020601728548412957 and:0.015919602843428006 that:0.01419894728330566 from:0.01264177120832325 this:0.011856991161393828 said:0.01117927796466028 with:0.009379745099717897 In:0.009226329493481308 for:0.008813922904995759 without:0.00782468106647806 into:0.006425155241426092 :0.07457002179876922 +the:0.49554037961489256 The:0.05444704865403699 of:0.04664318785831672 his:0.04067061319795003 this:0.030707167666774317 to:0.030454954440639868 tho:0.02799902773638585 at:0.025468188074161017 their:0.02285412208440463 and:0.022740596822244212 a:0.017260876536444234 for:0.013743737769389593 my:0.013285490405212812 tbe:0.013069230808785125 our:0.01011661656563593 her:0.009160509937850397 its:0.008995302283500659 good:0.00840941573180828 your:0.007024930005155331 :0.10040860380641148 +the:0.16827807288964555 a:0.14991073017227863 of:0.12636584449048777 to:0.04883296005169575 in:0.047137138646333156 and:0.03845226027155695 The:0.020997276011732492 for:0.01710029533125953 by:0.01645196079125401 In:0.013137368669046235 on:0.012539678997367628 with:0.011314812526250953 from:0.01130079364819864 that:0.010743265542238865 tho:0.010539363549437757 A:0.009751910758298158 his:0.009095627387584812 :0.008575635521868555 as:0.00722982151462814 :0.2612451832288364 +the:0.2492975853782417 his:0.17997730624677816 a:0.10485917246379425 their:0.04681729091015735 of:0.04411576839639725 her:0.033892503914875874 my:0.0299033910764918 this:0.024656135855217445 and:0.022528592100170143 tho:0.018780201473920406 its:0.018637153932133152 that:0.01798428651622654 The:0.017787665767071366 in:0.012990843875556601 one:0.012115712877134312 your:0.011898244841786412 each:0.011044291828367761 every:0.010315359541855761 any:0.010067456441255881 :0.12133103656256781 +of:0.052783100759081984 and:0.04756377451718214 the:0.044327972745751884 .:0.039965490931368135 Mrs.:0.028249836561974207 :0.024823575881995352 Mr.:0.02142958237921232 by:0.017251879301486795 at:0.017210176493029965 to:0.015751644549012934 Miss:0.015410726544599481 said:0.013310239099713713 A:0.012687499050221323 H.:0.011748381872787554 J.:0.010729459336088114 M.:0.01053771341461491 C.:0.010094474187416446 J:0.009886647467046917 W.:0.009848313697345137 :0.5853895112100707 +he:0.23602803444939624 I:0.12690854086775075 they:0.1179100562064972 and:0.06568649611031575 we:0.0600001304857521 she:0.046203501043898566 ever:0.04040117869591995 never:0.037739682100756115 it:0.03458623220824768 who:0.03310816751457318 be:0.030660291113823943 you:0.020750189626645696 He:0.01959872998942757 ho:0.013236386704469773 have:0.010626970956684662 lie:0.00820489799645442 not:0.00810375833220929 has:0.008019571876268514 They:0.00769035274361538 :0.07353683097729323 +of:0.09129790931378902 the:0.07369883040827747 and:0.047842263382354346 in:0.04189055351593407 to:0.04045875475680249 a:0.03542341257202578 be:0.02020462051672066 for:0.01979292654746225 was:0.01760256398103379 at:0.017380150555488715 is:0.014984483003968216 with:0.014047653760730413 by:0.01374644383819499 :0.012670486581795598 In:0.01200961464556976 or:0.011563835749786333 from:0.011391516893522809 are:0.011273104484969465 that:0.010755276030689069 :0.4809655994608848 +the:0.16668689451309104 of:0.15425757635662218 his:0.11866363335091597 her:0.07030194069384683 their:0.057080788967795726 The:0.04023419617311016 our:0.03453300783943866 and:0.030545966222409546 that:0.02911506140275778 other:0.028419216817903107 a:0.027628205629123687 my:0.024058949442579768 His:0.023858452712264635 these:0.020726557815845575 your:0.019376352381649618 or:0.017839597272484853 Her:0.017616136357384984 its:0.016313769947803865 whose:0.015943097057125377 :0.08580059904584664 +the:0.2660962181337197 in:0.07472342420227202 of:0.06886012486974988 and:0.05176299464800132 an:0.029735064960974417 that:0.02645752014714383 a:0.0219285708219158 The:0.02109557507083809 such:0.019900679172745794 tho:0.018256082436641688 In:0.017018420818095122 any:0.015137555382305354 or:0.013528852324938867 for:0.011743657329929257 :0.010592959422940076 said:0.010193729754791775 to:0.009688076305464014 by:0.009558893946073427 tbe:0.009447357208699901 :0.2932742430427597 +one:0.020307279633542067 action:0.013429062161380397 sold,:0.012523273891964472 law:0.011706676960327959 and:0.010568367513657707 property,:0.010388280536115112 person:0.010105813803555228 ;:0.008829503432103388 two:0.008251401822410848 day:0.007990846345543957 at:0.007966010932673712 on:0.007515760633118599 that:0.006458490116625292 more:0.006391006608830395 little:0.006229553705807722 them,:0.005827174159143133 man:0.0058271521388344825 mortgage,:0.005371199627925115 part:0.005354909492925949 :0.8279582364835145 +the:0.053894691225315844 of:0.04642571846425676 and:0.041055338716707655 .:0.03571624115493206 a:0.021400620253838015 to:0.01989772758320596 :0.018363929337853732 at:0.015370217901101517 Mrs.:0.01530578388477026 Miss:0.012962974807488876 by:0.012230604883688784 W.:0.011717475117335011 A:0.011548078371137813 E.:0.01075764999794838 H.:0.010343596877133982 J.:0.01034114722897681 in:0.009736250647647557 A.:0.009594440381723995 W:0.009477670839458177 :0.6228598423254789 +the:0.28489264487973776 not:0.18733854561778754 is:0.0595813538479789 The:0.04934482234622293 was:0.04557800092664069 and:0.03711367319603718 are:0.026318324631014023 of:0.024221091221717696 tho:0.018388810733659895 were:0.014460922629137772 that:0.013401138206944378 had:0.012997125055275253 be:0.01242203844910214 have:0.011958321493267915 can:0.010821588267360623 but:0.010672190452002671 with:0.01059742361218885 I:0.01017822295042033 Is:0.009927123813951113 :0.14878663766955233 +all:0.10191794902342324 and:0.041657130035652315 it:0.033093939074839186 gathered:0.022667898905457153 arms:0.018972591489109764 look:0.018709456246099973 go:0.01761002236615637 miles:0.016959991020131106 way:0.016835307342517015 passed:0.016678645968761903 looked:0.015582797304093959 went:0.015052547683640496 came:0.012586463623170773 them:0.012411657176022805 one:0.01215126008436454 turn:0.011800249190258846 come:0.011723608499210423 up:0.011443150454617065 out:0.011404537424403617 :0.5797407970880695 +about:0.20267331292375246 and:0.16161119735113977 the:0.052320293751971926 for:0.05109118655718343 of:0.04912879339509791 in:0.03110618008892632 range:0.027158982780475717 nearly:0.026201173450416396 at:0.025098989916696162 north:0.020892476035071862 over:0.019669744239421385 from:0.01721293401981811 than:0.01691183395088372 to:0.015562622578650907 within:0.014849107360542024 degrees:0.014387177690143372 south:0.01373428360018902 was:0.012626620027954217 just:0.012426586935738579 :0.21433650334592672 +;:0.026091211071328592 it,:0.020694725543600336 him,:0.014437232602704108 him:0.014224042469641748 them,:0.012018018667397287 in:0.010379879480545395 us,:0.009984107799288718 time,:0.008210047470528824 time:0.00706833730928623 be,:0.0068426525340385975 people,:0.006617580139026455 country,:0.006598752755322771 them:0.0065276428575912334 years,:0.006413694014780963 here:0.006250117508734548 up:0.0060439607250959045 me,:0.005910115339637736 up,:0.005889149237010761 and:0.005878658967069742 :0.8129200735073701 +of:0.3401738489923184 to:0.11969724246437441 that:0.05814335085914791 and:0.054322575137888685 in:0.05320954406858492 for:0.05112291286418042 with:0.04033058728640903 by:0.03363285568355563 on:0.030696247966656126 as:0.026436347394601854 from:0.021456515652994695 all:0.020810242339363294 at:0.019826256070587647 upon:0.015145964073942657 which:0.013774679792873433 In:0.012743679042898895 over:0.010070695373930582 is:0.009958430896765617 when:0.009940741275422436 :0.057507282763503365 +the:0.09676386389857664 and:0.08712783775062416 is:0.056537368779855005 of:0.051350281951996986 was:0.04345500856505347 be:0.041589802366950306 to:0.029842726079772265 a:0.029120872911252402 are:0.02153215420636103 I:0.020489089969373295 it:0.013974361057641185 were:0.013450451390597975 been:0.012934880568507548 :0.012362596113777383 this:0.011716774159860659 he:0.011690008345593252 or:0.010973568553086385 in:0.010344793118878683 not:0.00996229047514492 :0.41378126973709645 +the:0.0852659450700244 .:0.03424122916146809 of:0.026695175554106748 :0.025482109085105245 Mr.:0.024539406394793226 Central:0.020812665609468657 State:0.019662466965903243 York:0.019219773428670133 City:0.01894584241583644 and:0.015930261996507062 in:0.014082211345050792 to:0.01187985467997971 Public:0.010068965101550127 Pacific:0.009150453474247854 National:0.009095172898361871 Union:0.00801598168991231 River:0.0075685848391846165 by:0.007156490072561141 St.:0.00701669619619744 :0.6241707140210708 +the:0.4248797507280767 a:0.07933440813138855 this:0.07303632526788559 The:0.05410743419844585 tho:0.039589288719915884 said:0.0358590708558488 every:0.026223097952433945 that:0.02611974332899862 one:0.016545952497815007 his:0.01645959133731289 our:0.016194474221776316 other:0.016180433929929634 any:0.015351253181126762 tbe:0.015120780135669276 of:0.013441942151688308 their:0.012342208925047383 Every:0.01079947298590888 old:0.009749563383315469 present:0.00965674454778391 :0.0880084635196322 +the:0.06532007869908724 four:0.04644391918987113 ten:0.039166050284106836 hundred:0.036155589483061745 three:0.035142714102424706 twenty:0.031230463833230762 six:0.024729566466867033 few:0.02456152334836622 two:0.024063602732153105 300:0.02358999192277198 five:0.02105866598073268 linear:0.019216598178819117 100:0.018556637111747872 fifty:0.01781834555279675 of:0.016532569822877447 150:0.0164939812451745 eight:0.014204757912452298 his:0.013540399542340485 fifteen:0.013431695086865572 :0.49774284950425246 +the:0.16287760685838365 of:0.0883592780729449 to:0.0618987346693935 and:0.05423685233212741 in:0.030811253892523358 for:0.03057359609188714 be:0.025098115820027647 was:0.01826945122296575 is:0.01662970283289366 a:0.016448402520667066 or:0.01633619095301082 his:0.015510346299682681 their:0.015084175217362073 are:0.014656254371894712 been:0.013019491851438341 were:0.01267572744006931 that:0.012270302451397866 on:0.01131798809455223 :0.011150587255169986 :0.37177594175160794 +a:0.6006424547321783 the:0.08100259804638803 Republican:0.03228602991029748 Democratic:0.02712783269719741 each:0.02452831515657075 per:0.021356916230262143 every:0.016915211209934645 any:0.01641925608551214 this:0.01544562343925508 A:0.011797238908849199 democratic:0.011100853818755212 one:0.010290632870059288 republican:0.009716840346023709 no:0.007596786331526363 his:0.007119314912847597 The:0.006754118857448402 of:0.006081484479394191 and:0.006032820044649856 tho:0.005741660525471347 :0.08104401139737885 +and:0.0806673242284004 was:0.07335407158271917 to:0.07246522168810518 be:0.06120508107081115 of:0.04857457826796639 is:0.047187937095171245 has:0.03806037007102867 had:0.03594966733783011 have:0.03377155412547761 not:0.03365697803851696 a:0.027083244589411113 been:0.025846468947911094 it:0.02412643564444536 as:0.023506540023688773 by:0.02066919468209454 were:0.019336181287680616 that:0.019313228822972407 for:0.018936715760997307 said:0.01814841213095496 :0.27714079460381696 +the:0.08741288820481248 and:0.07392080242938477 be:0.0572668144792991 was:0.05686739458441792 of:0.05297029938296901 to:0.040095074017987696 is:0.03448309022071693 been:0.028380973754521515 a:0.02485235362607966 are:0.02226522268065813 were:0.019682022343204007 in:0.019454144698829248 or:0.019273705289081854 as:0.0158232132157123 not:0.012361914460680723 being:0.010097596398749334 for:0.009388164492904385 :0.00930537568905371 their:0.00894740846790883 :0.3961515415630284 +is:0.04055574012775246 that:0.03851522104244811 out:0.03240222868985101 and:0.028671832633381446 one:0.025354778451824603 purpose:0.024099291111687345 need:0.022356888120249236 means:0.021472724352614474 be:0.01924240198221228 there:0.018542749933622506 result:0.017695260830605873 know:0.01668480334397085 was:0.016047174123544568 are:0.015823402108691733 instead:0.015486318398103702 part:0.015458551592049617 tion:0.015295518567651484 cost:0.014943944548937712 some:0.014370492849333021 :0.585980677191468 +he:0.10305592296304626 it:0.09817166087587303 It:0.09561401184503149 I:0.06047711041262233 which:0.05401689637899422 and:0.045338130860311354 He:0.03817431091055537 who:0.03640472163289608 that:0.03608738866232602 she:0.030761886694026703 there:0.030265867471578955 There:0.012374672692505672 She:0.012092393437158115 1:0.01164033956729985 what:0.010757569307160868 as:0.010384988920304256 This:0.009839241741418848 land:0.009794010582990401 this:0.008524084045161374 :0.2852247909987388 +at:0.12576967597502725 and:0.09513689009962198 was:0.06587243562537463 to:0.06340231375588905 of:0.03491489203875847 be:0.032124761108934786 is:0.03046882269915002 that:0.029696150596012216 not:0.028427359797965946 which:0.027986233196142744 as:0.02720398188080398 been:0.023864992700509055 but:0.022767590908158247 from:0.020990970375624782 were:0.01930963110252406 have:0.019240358568207612 being:0.018320120468655412 or:0.016581299455734024 had:0.015806975132490002 :0.2811145445144157 +and:0.11093554048802266 or:0.032299336743631224 that:0.026034252129075775 was:0.02181197838939104 interest:0.018257066808585114 all:0.01769118028157844 it:0.016354596924506904 are:0.016315646270769216 them:0.014365636157145237 were:0.013813227180534784 men:0.013789600516136489 situated:0.012635854354069753 as:0.012296511831130575 him:0.012099998387575564 been:0.012043271518500464 land:0.011818947118201925 be:0.011743506760058153 is:0.011080691396498196 work:0.011060915599250149 :0.6025522411453383 +the:0.13428633942421322 a:0.1138026982887911 of:0.0858940635067434 and:0.05526369194852004 to:0.03814901650233113 in:0.03396618245234486 his:0.015204046535262914 for:0.013853280731306629 that:0.013779752562541223 as:0.01303647427295544 at:0.01112612573894047 The:0.010890423417785964 an:0.010211014267304206 their:0.010135543293898118 In:0.009888722360384659 with:0.009265607664741955 or:0.00915401494955478 tho:0.008372858730976752 :0.008046212417368344 :0.3946739309340348 +and:0.03868242960999506 as:0.031124813427855922 went:0.02352509775927722 him:0.02196555539050794 them:0.018760608639018784 up:0.017985449426794205 is:0.017894175620344187 go:0.017174904667157563 able:0.016756848979943888 going:0.014481672239490295 it:0.014128375989346808 was:0.013277058274565138 time:0.013249953793837373 not:0.012469887553778763 began:0.012465717758716884 way:0.012105610030480113 back:0.012090864562211581 right:0.011941707822828511 amounted:0.011564315359310868 :0.667354953094539 +in:0.31947844521792473 of:0.24171776288402913 for:0.06822925052411971 to:0.06307457949583946 In:0.05964975763251277 from:0.03920669820172738 at:0.025392058150101295 on:0.02419024150033072 by:0.018962454353881084 with:0.0157932923612624 into:0.014287512705370695 throughout:0.011776659888884213 over:0.010513688134833887 and:0.009650734761905451 that:0.009584630663440508 through:0.009329671881349887 during:0.00843173322291256 under:0.007796189306679198 within:0.007234776585182529 :0.034699862527712365 +of:0.28767355066866834 to:0.08775711267569858 in:0.08678131196995101 and:0.05160598694501188 on:0.04646139928102899 by:0.04519522654900943 for:0.044547789071328545 with:0.03396756772609607 that:0.033699232901107726 from:0.03075346596941143 at:0.027039283056790858 In:0.021061449543044047 as:0.017514234937992545 all:0.012543839382496166 upon:0.011844431150487573 is:0.00998972746569266 was:0.008814315973987914 into:0.008557199930727406 through:0.007781895704231326 :0.1254109790972375 +and:0.08665945060699565 to:0.06537793232230302 well:0.04433336540153283 that:0.04414720781715139 far:0.022703953634255182 such:0.021705773443854187 of:0.021300587905655873 for:0.019216750376048388 in:0.01917841085534299 known:0.018692032300178667 them:0.018673953288867975 or:0.018610133685668533 the:0.015496658331918855 just:0.015450996310935678 it:0.015205548504969921 made:0.012009622229462145 not:0.01154115938137341 but:0.011474424951637984 is:0.011328393220609136 :0.5058936454312382 +of:0.09129790931378902 the:0.07369883040827747 and:0.047842263382354346 in:0.04189055351593407 to:0.04045875475680249 a:0.03542341257202578 be:0.02020462051672066 for:0.01979292654746225 was:0.01760256398103379 at:0.017380150555488715 is:0.014984483003968216 with:0.014047653760730413 by:0.01374644383819499 :0.012670486581795598 In:0.01200961464556976 or:0.011563835749786333 from:0.011391516893522809 are:0.011273104484969465 that:0.010755276030689069 :0.4809655994608848 +the:0.13898054982616972 Mr.:0.10134544807074626 of:0.06615392240767116 The:0.043278330440478296 and:0.04162034131663931 that:0.038474065211129 a:0.028836085729107952 Mrs.:0.019741515838392454 .:0.016321296438550317 Dr.:0.015742377033130618 :0.01499245666898834 this:0.014601172820615167 which:0.012022811139796676 in:0.010986353410193092 This:0.009519698186461954 his:0.009450116155350293 to:0.009398710140252132 tho:0.009372386328052828 or:0.009138862077782499 :0.3890235007604919 +of:0.09023174518656013 in:0.09022962325023932 and:0.07720842015350343 with:0.06379678773090633 for:0.060833827167215936 to:0.05276224925382325 as:0.04564751852058344 that:0.04015726570570681 is:0.03961232810843323 but:0.028165069538367983 by:0.02723687719500639 In:0.02515417234603996 was:0.023201083020433846 from:0.02157604331073329 on:0.021414390027512834 after:0.01632377087211198 than:0.014009781051699213 be:0.013824906480102388 or:0.013434215390785178 :0.23417992569023505 +and:0.11228701762682687 to:0.07739266705761799 of:0.07690676329658853 the:0.04714652350083046 for:0.04675946569914276 or:0.03782764596165022 is:0.03044841804322295 in:0.02918912950769762 not:0.025294753537084564 be:0.024475405039614203 was:0.02234014094893712 that:0.020964339342601092 with:0.01963257152964289 it:0.01642743486175682 which:0.015591074292035432 will:0.015547799748660218 I:0.015117708306450182 are:0.013783335223875174 a:0.01342452531176769 :0.3384432811639972 +the:0.3997188104914218 same:0.08205033440540106 that:0.07859365665171479 this:0.06307264689433235 a:0.04252367797402605 some:0.04152420472209897 any:0.03667694553970927 The:0.026805143918844733 of:0.02624343594474555 and:0.021998847296758176 no:0.018751714660481866 present:0.01788008639056216 which:0.016750619992818613 tho:0.013702461982688052 first:0.013680768070421755 short:0.012472418301181506 long:0.012155515837429963 much:0.009821889225425349 such:0.009295582736679693 :0.05528123896325828 +.:0.06828442424941909 A:0.061056195975642644 of:0.05973534913531607 to:0.04018604374540076 at:0.03435403785771733 Mrs.:0.026155464844804074 W.:0.025049466692863998 N.:0.02309208769680102 J:0.02203817739138643 W:0.020055939374819448 and:0.019561393791797374 S.:0.017267476765007263 :0.017255126761217425 E:0.014587845678277846 A.:0.01458470816520096 C.:0.013951693101780174 John:0.013893568748487415 J.:0.013760711740391092 the:0.013586966183128194 :0.4805433221005414 +the:0.3279048200061776 a:0.18685143921463887 his:0.07261299407433254 of:0.04705984910389365 any:0.03125018925791463 this:0.025720429885483266 and:0.024297668590860636 in:0.020741066355414745 tho:0.020279748916190922 that:0.017990165668672082 dead:0.015460867526685036 great:0.015265431912231705 my:0.014587063543062505 your:0.013953179104787406 to:0.013907637562050297 her:0.013901060351676318 The:0.013235235438221474 their:0.011885034830701007 or:0.011664234457639875 :0.10043188419936547 +feet:0.022508356252852815 north:0.019323159548024493 street:0.017767688114673545 hundred:0.014465768199959235 east:0.014047043142479676 up:0.011757401806303983 Mr.:0.011559802865774755 wife:0.010738238034718206 line:0.009083215836627497 west:0.009065250401320968 down:0.00822886198204872 dollars:0.008085839604820993 ;:0.007914486553813587 south:0.007383622495388381 and:0.007349862116830452 house:0.007327658392341927 land:0.007261978422511529 .:0.0071129232973554096 side:0.007034621889199465 :0.7909842210429544 +the:0.36750554265762864 a:0.32243465927473103 The:0.08482949579027194 A:0.03585254052494131 and:0.027879082517399262 tho:0.017950566753889438 our:0.016531842943367316 of:0.016241801706667496 his:0.01336263694880774 their:0.009122279125158204 two:0.008516748001252695 her:0.007041771893691749 old:0.006255122558344786 tbe:0.006085627088364172 one:0.005011173500518937 that:0.004968054620024484 this:0.004896123682276178 very:0.00455535991363134 every:0.004496937367839386 :0.03546263313119392 +of:0.14515050041430883 the:0.1060912655434867 and:0.05374368372903213 to:0.048973681224623554 in:0.03497191133695794 for:0.03268853378811962 a:0.02934301530935464 by:0.02795831713455539 that:0.025469073189003516 with:0.022377925437603693 at:0.020842237718924503 which:0.017938429925997767 or:0.01623988370833466 from:0.015991176414264795 :0.015340155943063065 on:0.01393346408417723 The:0.01194902250518492 be:0.011802015787668737 in-:0.010888225530643574 :0.33730748127469473 +and:0.15072515388430363 at:0.14061497778807056 of:0.12742732682163924 to:0.11890637884252189 about:0.09922401142012136 for:0.041246867357215805 from:0.03294134590978608 or:0.026815851431294207 in:0.016349383828908177 by:0.014780433686567975 than:0.013084502230723733 with:0.010925376639605171 At:0.008690145522633719 over:0.007682063084611069 No.:0.006784649225837713 .:0.006498710065229198 as:0.005432571711665523 Township:0.004532292255624383 West:0.004491021768454916 :0.16184693652518564 +and:0.08995317707915026 to:0.06844710404109794 of:0.04605142056172993 the:0.04074574508561307 which:0.02479116931334353 that:0.023764822140213245 re-:0.020841117231308055 in:0.020803825395358622 for:0.020278423301550053 :0.018417753428486977 not:0.016860793136637672 con-:0.016444405871234195 is:0.014386481772210856 or:0.014080680914153714 be-:0.01352268143271276 I:0.01317002660943805 was:0.011429878269381662 dis-:0.011196807025842847 he:0.01113106290024311 :0.5026826244902934 +the:0.16168474266207555 and:0.08673404003160058 of:0.06916479234025076 a:0.051498124751942174 his:0.032720360435722136 to:0.027111712552285373 in:0.023658443693669352 be:0.023597857132264245 was:0.021036958511283538 is:0.019566296761492727 Mr.:0.017677494534872877 their:0.01685632628838628 The:0.01541394105731264 that:0.015353209714340439 or:0.014478597840794066 he:0.013079979625010715 I:0.012169595393332054 for:0.012088604810920552 it:0.01207582896873045 :0.3530330928937135 +the:0.3841330824260085 a:0.34721226561990104 The:0.040262192802770345 tho:0.026996933164039623 A:0.017021589278555932 this:0.011854115864079886 tbe:0.011008801442752387 moving:0.010746070602796186 every:0.010010444360633178 and:0.009568236898174758 full:0.009221871560909669 great:0.008657693524515583 first:0.008296645517598556 good:0.00738158712634009 an:0.007201737958488493 no:0.007036973010033928 vivid:0.005726430015099706 fair:0.005479934546779267 his:0.005017195194866827 :0.06616619908565603 +that:0.12877368706521958 and:0.10343811039022899 which:0.0800594611337696 when:0.0599498536653849 as:0.05365331218935483 to:0.05164919583107528 if:0.0270497931800979 will:0.026888923864509424 but:0.025383516994720454 where:0.02293792694881519 what:0.0207777038096785 t:0.019343962651763098 said:0.01729463067489876 would:0.015552874955014286 for:0.015152722422811573 whom:0.014651225618177431 before:0.011897529933941699 not:0.011235367786820124 If:0.010599156710423857 :0.2827110441732945 +due:0.3472399909378533 interest:0.060226718041191035 and:0.05139170772440732 any,:0.03841167529411578 situated:0.02130691188217001 thence:0.020644988305195806 taxes:0.020579091149364112 land:0.01575943153015238 fronting:0.0154762444869313 plat:0.015145832605168802 abutting:0.014472287452939166 payable:0.013813249820558426 secured:0.012502440571394526 Interest:0.012217548391042887 unpaid:0.011469408817905022 mortgage:0.011395633928530166 lien:0.01038927584831607 that:0.010244357309300949 Minnesota,:0.010158456763506437 :0.28615474913995653 +of:0.14134021128274424 any:0.12134982540026734 in:0.08228162669766739 no:0.0718666166143443 the:0.06868254752535596 that:0.05253269788130906 some:0.04668344917627884 and:0.04454569117904434 only:0.03877662867681982 to:0.033813224299874906 by:0.029071013354693018 for:0.025259145634437426 every:0.022346778756462998 but:0.020941103189437652 a:0.019380471732197504 from:0.019134859523988305 In:0.01901768677735395 than:0.01651329329071256 each:0.016029804420403245 :0.10943332458660712 +of:0.15205244123514652 in:0.1184163193760352 for:0.10817709218054096 with:0.09623015578029825 to:0.06111981771028618 about:0.04541989333028426 upon:0.03873428783892038 on:0.02816154853213011 do:0.027627037981847305 by:0.02702614299658717 from:0.023059785917879994 get:0.020277608336207214 against:0.019193973039546147 In:0.015983092788894242 into:0.015962877096280286 at:0.01502980198455668 over:0.013313897997864471 and:0.011974817201989646 know:0.011937271018918017 :0.14930213765578695 +the:0.16351676733681442 and:0.1320889879483174 of:0.09513381235640546 to:0.03229699506297686 in:0.031784817003177236 or:0.028080402190604994 all:0.026057951304671385 their:0.019548694514661572 a:0.01869116802129208 many:0.017510697528295774 such:0.01628642884770151 other:0.016144586505040064 his:0.014933392352173338 as:0.01330432681928269 that:0.01249304456398631 for:0.012122501606344599 these:0.010667374151043657 tho:0.009749366099097554 be:0.009744707781769469 :0.3188439780063437 +the:0.10336983496615278 of:0.07543688350053557 and:0.06641644690227996 a:0.04455859280514038 to:0.03951391183407334 be:0.030966861721460015 in:0.030146059226641746 was:0.02880487163345596 is:0.016456555486564176 :0.014268559619302467 at:0.014138495910890675 for:0.013691162369318591 or:0.013653239614092283 .:0.011458704682463305 Mr.:0.011455809661350676 his:0.011360920796348824 are:0.011169575397813998 were:0.010356811134618766 been:0.009941051066127606 :0.4418356516713689 +at:0.2491649833577775 of:0.11721266593401901 and:0.06118605065606966 in:0.03938083327275139 to:0.028175323777416474 from:0.026478674669876676 the:0.025176443749283038 for:0.021380275412148684 by:0.015719910783263145 on:0.01506898094499319 with:0.011393336090410556 a:0.010310150609569 .:0.009756945453273895 In:0.008649963555675858 that:0.008169078212939045 :0.007929988047440375 or:0.006951438602631115 it:0.006738303629884152 pres-:0.005417920183412469 :0.3247387330571648 +the:0.4974798661213054 The:0.08460084272666175 a:0.04092093955773927 and:0.03186451218884782 two:0.021037339443972267 tho:0.02038674243842359 young:0.015284276964900983 our:0.015014819906431375 of:0.013934215934656288 his:0.012018890279346064 their:0.010241927630511308 these:0.008800486502275624 three:0.008280042955073647 tbe:0.007762137622119975 or:0.006938377106824427 he:0.006522451273313855 for:0.0063501399253330405 white:0.006336700471888728 public:0.006119293249454278 :0.1791059977009203 +they:0.1269720593228888 we:0.10186441067336503 and:0.04632900513657219 you:0.04548385194181658 who:0.04463172317997354 We:0.04243051519907586 people:0.04007614769847976 there:0.03570180063095808 They:0.0297913310643604 which:0.026489178267260424 men:0.02555300944852025 that:0.025238175445716174 There:0.021006111769404794 I:0.01842872115008059 You:0.014541110181286995 it:0.009033764582188495 States:0.008401306539093009 to:0.0077360454373344885 but:0.007598331004696939 :0.32169340132692764 +the:0.1454500361787387 of:0.1080247151493501 to:0.04516715868785427 boy.:0.036249098323069925 and:0.03403580073245388 girl.:0.032660326140049385 a:0.03171979252021135 in:0.02714044436566853 for:0.02365213940166824 be:0.021942286684630472 their:0.021087116084698817 his:0.019774122064073623 was:0.014637031197642503 with:0.014008395154201525 are:0.012730720509515858 is:0.011363112041341867 as:0.011357870543086747 from:0.01063391638067422 were:0.010589399829418696 :0.3667765180116513 +of:0.17278869559265847 is:0.1198978099137271 was:0.1037527171744108 and:0.07504910305067573 been:0.06969266641746938 be:0.06926772768919197 are:0.05322307737891867 were:0.0329759072016019 in:0.02813573672759128 by:0.024089307506564874 has:0.02084716596399725 as:0.020127767250876834 Is:0.01879861154039764 the:0.018184702220726393 with:0.01754888378161722 or:0.01724092135552235 have:0.017185623601649446 if:0.015195855296714456 from:0.015101350037929498 :0.08989637029775874 +of:0.2216666977158274 in:0.11315600054577736 to:0.08451677747063276 with:0.05459457701357842 and:0.053201116550581094 that:0.048869351283334764 for:0.04652564665971443 by:0.041641114507012474 is:0.04019376283231503 on:0.02366070229647344 if:0.022519903961537052 from:0.022323076944866193 In:0.022136130820530876 at:0.021946950287511334 as:0.021107646490652048 make:0.018236510235099947 have:0.016692761579005615 upon:0.015762905052677117 was:0.014657954093019758 :0.0955904136598529 +time:0.01512892766456336 day:0.012005610990232413 it,:0.009946961755297173 man:0.009945126437598827 here:0.009927874987354467 up:0.009486286290611592 ;:0.00819091923782742 him:0.007829560015678784 years,:0.0076930754623833215 it:0.007340136005897536 out:0.007007157639831488 them,:0.006641478183470832 year:0.006506390222951666 night:0.006463617670419044 years:0.006301646415872997 time,:0.005894161210168427 :0.005490122809732289 :0.005386155278841534 country:0.00536012173512192 :0.8464546699861448 +it:0.10041481284591618 which:0.07410606827009703 they:0.07278507174832628 and:0.06983658991555444 that:0.06526021952599988 It:0.04984285024117923 you:0.044750823809614516 he:0.044132545382061274 who:0.04003056066170684 I:0.03596628675367226 we:0.027701636154576065 They:0.010801424904141781 the:0.010009315468355666 she:0.009124257879913809 as:0.008938868381232363 this:0.008249574705670955 1:0.008056644510873836 He:0.007862376273255998 but:0.007498257704796925 :0.3036318148630547 +and:0.11101960798674682 to:0.062334791247409815 of:0.04678917569723103 the:0.03147852576058688 which:0.022220284625160364 :0.02113317386480409 re-:0.020643554768386807 in:0.020043216833881133 that:0.01961125296176328 for:0.018057155070897727 I:0.017027774068931002 not:0.014397456711628813 or:0.014367473821082147 is:0.013233884844358232 by:0.012753669465645162 con-:0.011884491726436214 was:0.011662969423011264 be-:0.011625025359963036 he:0.01156604482637356 :0.5071504709357026 +the:0.6400132701343786 The:0.08506599123993652 tho:0.04407669781949094 and:0.02962130161344653 tbe:0.014632986851967756 of:0.013588664417163259 his:0.010762320833434333 on:0.009828498267531042 until:0.009047906555710488 to:0.008319780508894854 their:0.007887673327102577 was:0.007873502729844793 it:0.007514270391932587 day:0.007207521313145022 in:0.006968976572540201 for:0.00678120699527054 as:0.006683285455792462 which:0.006543851323923459 I:0.006442496731835024 :0.07013979691665899 +the:0.3590557657169742 of:0.13777287272428773 a:0.0905367649070427 said:0.04911468933019059 for:0.0321297808225742 in:0.029277357132993374 and:0.021984314448907416 tho:0.020570902863830207 this:0.018182287372360995 our:0.018084000913640777 to:0.015715211903132312 The:0.01550188438448401 between:0.014808048840003644 his:0.01301750201471596 with:0.012667033855450845 on:0.011950065641449556 such:0.011908909451595505 their:0.010044742494756322 or:0.009548506870605543 :0.1071293583110041 +of:0.33625485993884435 in:0.1082718232748755 and:0.061717539068300874 to:0.05666818573950878 for:0.03626712217388985 the:0.030395475733499856 by:0.024253458865694112 from:0.02308530219987667 on:0.020324158246350123 that:0.018900514399403413 In:0.0180618574747447 with:0.015559518171238726 an:0.014986457306360258 at:0.01327080519288743 a:0.009083904363278881 most:0.0076799095834654925 ot:0.006148722152233512 :0.006066120727044295 this:0.005430025323449719 :0.18657424006505346 +of:0.2821764357880228 in:0.13455042687551616 for:0.07084864142385978 that:0.06693932383418663 to:0.05153548533255679 In:0.049790193465067765 at:0.04631489412063747 and:0.03406288859949356 within:0.02802209342789008 on:0.021043839778497494 by:0.01769664829663847 about:0.017551604595363327 from:0.017392481109242783 during:0.014442386452996423 as:0.014141622404136434 all:0.013754547252339456 until:0.01160825675811583 but:0.01131374425605669 with:0.010763458623756926 :0.08505102760562515 +to:0.1958824256052673 would:0.10471985402886938 will:0.07159891357790157 they:0.054298073308257984 I:0.04983584487048555 we:0.04576679840592395 should:0.044964233630365245 you:0.04146967933688815 and:0.041034505637178455 shall:0.03170712518413125 who:0.030396689986837314 may:0.02949229297441784 must:0.028428758737892683 might:0.026968860270754798 not:0.022348213052193193 We:0.01672548082517702 They:0.013416807165587045 could:0.011745689069399302 which:0.011007166547553519 :0.12719258778491843 +the:0.08144539839230684 of:0.07916537917017892 and:0.07677581911323833 to:0.06393459111894256 in:0.03568778147117724 a:0.03021355571880761 that:0.02341307710007135 on:0.023362763482988345 from:0.01793477287651032 at:0.01622464205095071 was:0.015396030575164718 by:0.015056311802011235 :0.014486377673350054 which:0.013964386022047614 with:0.013336083884674322 as:0.012895137816863541 or:0.012628604250512059 for:0.011907579601934294 is:0.011373317198622229 :0.42979839067964776 +of:0.28767355066866834 to:0.08775711267569858 in:0.08678131196995101 and:0.05160598694501188 on:0.04646139928102899 by:0.04519522654900943 for:0.044547789071328545 with:0.03396756772609607 that:0.033699232901107726 from:0.03075346596941143 at:0.027039283056790858 In:0.021061449543044047 as:0.017514234937992545 all:0.012543839382496166 upon:0.011844431150487573 is:0.00998972746569266 was:0.008814315973987914 into:0.008557199930727406 through:0.007781895704231326 :0.1254109790972375 +is:0.22630989610400173 are:0.13771302547852793 was:0.0740959924012201 and:0.07358377234645423 be:0.057124480099501086 Is:0.03785116553900879 the:0.03202268479893968 not:0.030221521869573824 were:0.021956164334084073 been:0.020249223977520103 a:0.018189126300848853 or:0.017057296728366686 as:0.014887495322644408 very:0.012628903919381337 more:0.012263458911030388 most:0.01129321146032168 so:0.010283453161406964 too:0.009035533706767454 have:0.008810696805022847 :0.1734228967353779 +on:0.27646344401022993 last:0.18366961931117562 On:0.1558366913214156 Last:0.03588980518919692 next:0.034904583757354314 of:0.033558336348432645 the:0.030801976325748378 for:0.024309740729819774 day:0.018711457881165232 in:0.014905204265313122 during:0.010328445088514103 until:0.007908031216616727 o'clock:0.007047511883744145 and:0.0048689921135931565 to:0.0045492543509617804 held:0.004363997474932775 spent:0.003960148159889492 early:0.0037929890303671963 In:0.003532084431728535 :0.13959768710980056 +of:0.13362963580118692 and:0.11813861929073342 on:0.09698345292494212 in:0.09562575965602921 that:0.06709364593558459 for:0.05165821632570872 nearly:0.036214568521425274 from:0.02590016889191286 almost:0.022826594862693474 by:0.022534657216138038 until:0.021259425839127172 which:0.020650748319076966 In:0.020495319751956557 but:0.018873927135377697 On:0.01841013795504276 to:0.016961365770040284 upon:0.016294041097831866 with:0.016061639341910593 as:0.015661149049532464 :0.16372692631374902 +the:0.15154569298099166 this:0.10926643851393154 long:0.07372099527142857 a:0.07093868817057933 that:0.07063928079484105 some:0.06448182224497513 any:0.06216895376095801 same:0.06179425354558618 of:0.05479959727925158 short:0.04723338971151635 in:0.04667044434985065 present:0.03359106772956005 one:0.029533116638112148 to:0.026012804539758315 first:0.018124957150395922 every:0.014730746336969337 no:0.010828863362442572 In:0.01045713334443378 good:0.010353366273633636 :0.0321083880007842 +as:0.06931392982974462 according:0.052071562389565784 up:0.0511867300210483 and:0.040371568633051955 went:0.03351644485287816 back:0.032358406609281 regard:0.03073407747799069 feet:0.02852138506231652 down:0.026379903432040268 owing:0.02466642634685871 due:0.023695193974505355 go:0.022910973192184297 reference:0.020802802907016128 came:0.019883741951819873 sent:0.019874244915639484 attention:0.019565955494145405 come:0.01885185084678811 given:0.018792390567602263 it:0.017366961307524745 :0.4281354501879983 +that:0.269523688481748 and:0.09030784973897373 which:0.0702111079115922 as:0.06998691529589458 when:0.04998845052310268 if:0.03690050438392667 where:0.03492929804517096 but:0.03258996641006112 what:0.029707598383206656 because:0.017632075114701707 If:0.016272022612771418 until:0.016018196397574465 before:0.0150513355265932 said:0.014789394457948786 to:0.013192395725462833 time:0.012847245490898853 whom:0.012630038254081391 for:0.010469361067148079 while:0.00996487320829997 :0.17598768297084272 +thence:0.3788587290941868 and:0.12148308510374309 was:0.049658471520866346 of:0.04142133078210123 are:0.024496639665316997 were:0.02394541171233486 is:0.019192838408527063 feet:0.017890796645442627 in:0.01513714631831965 be:0.014835668978884445 from:0.01378089152489818 the:0.01366461958351877 by:0.013551784914956354 to:0.01145529759703241 at:0.00931570728531735 been:0.008844898826230296 or:0.008592460591207723 a:0.008190475921934153 two:0.0076046347570183906 :0.1970791107681633 +be:0.2214442748755873 been:0.18605965540635797 was:0.1423001593554672 were:0.06720977738236575 is:0.05982280697707509 are:0.057943810225511885 being:0.03906256565885897 and:0.0341800256949397 have:0.017541708596892046 has:0.01527585965311478 he:0.012702685228710755 bo:0.012220474302965578 had:0.011660193533280338 Is:0.010129031087363956 case:0.00888346648793038 ever:0.006028822235849423 now:0.005061004887873484 I:0.004434049595887436 who:0.003939663808470992 :0.083099965005497 +of:0.0830407673173907 and:0.08075875864978614 the:0.06445083601716743 to:0.044530157701003346 a:0.02490004950917073 by:0.022282080469327958 for:0.018105054269167406 was:0.01733317865484534 be:0.016209552759236596 with:0.01536091550712337 an:0.014308874693248135 that:0.014084318611817442 in:0.013756783685118911 are:0.013453328693548417 his:0.01212604606066529 were:0.011741757427016254 been:0.011648687753546667 is:0.010938400909681182 or:0.009541293648045934 :0.5004291576630927 +is:0.1300949053123692 ought:0.06235942008217411 are:0.06072445398663133 seems:0.05697318922100556 was:0.04954471475520722 not:0.048536362204045544 said:0.03881623685409472 seemed:0.03220746110521765 as:0.030923473227594384 it:0.030881869856406088 claimed:0.028226689520969073 have:0.027725540143517465 and:0.027557757709861613 likely:0.02587900806524851 seem:0.02574969309575762 supposed:0.023317446089120043 had:0.02145961764731352 Is:0.017651730366473797 proved:0.01677680343414685 :0.24359362732284573 +they:0.1422193600349239 there:0.05849232705230136 and:0.05364794518597344 who:0.05060073302875137 we:0.039796496029532724 which:0.03941212764794604 They:0.031471712802734836 There:0.027277972023637694 that:0.026476974477609803 men:0.021156313901298206 it:0.018650113321758758 We:0.01150603832299857 you:0.011134597598392589 I:0.010540813851838039 people:0.010280567277705255 them:0.009160186773977539 as:0.008841656067636882 but:0.007526879745621775 whom:0.007466233559027055 :0.41334095129633414 +the:0.4071374189315913 and:0.06449181461132415 of:0.02892866618288876 in:0.028670005984162618 The:0.02603617389223924 tho:0.024993820467459137 a:0.023579040051412606 to:0.01755553213771617 on:0.014626070241060114 by:0.013447843485786471 or:0.012794166593089693 tbe:0.012024509152999897 :0.010353482361299817 that:0.009291482237329618 In:0.007938246807075932 from:0.007526799010378873 other:0.007469196869028889 all:0.006409533041696086 for:0.00626887758057738 :0.26945732036088327 +and:0.14070479436340927 was:0.1023646055169324 be:0.07290293570432209 he:0.06679056391351058 is:0.04663609363512058 I:0.0372336183238719 which:0.03707804142214201 who:0.036519141716316345 were:0.03161850443869361 are:0.028665367115775334 had:0.027950408489520715 been:0.02710773442293955 have:0.02710489109806285 not:0.0237036325044259 it:0.02334683718949302 has:0.021446963414346487 or:0.017184622323406392 He:0.016303004268328685 It:0.015775496274216566 :0.19856274386516573 +the:0.29841068829385325 a:0.2688532904671992 of:0.05657218584092201 and:0.03409430309804965 this:0.02670548062275306 his:0.026438242516234195 with:0.02161147936932917 to:0.021350364284407022 The:0.020256296595566357 tho:0.01919858365039088 in:0.017914879346638338 their:0.015527326133753109 dark:0.01300914288361559 is:0.012640545905929269 our:0.01216387452997363 its:0.01108272346114516 her:0.010723693007638403 tbe:0.009548767835173649 A:0.007939937637049432 :0.0949581945203786 +and:0.15377603754387675 have:0.0744146064901052 had:0.05983829465145278 was:0.0510581064190493 are:0.044752813062162916 he:0.04460020089782901 be:0.04376879209435166 is:0.040310582444672186 I:0.039358030457004464 the:0.03857288353221057 has:0.03285443709755217 were:0.031495625531976254 been:0.026312003087410885 or:0.020703039382161312 but:0.017978901511353788 they:0.016635118242200753 we:0.01601657829886169 not:0.015715993786360703 only:0.013857784579630902 :0.21698017088977667 +the:0.061202354079005525 Fifth:0.0389833678954172 Third:0.025894937743405667 Pennsylvania:0.024506635857696493 Summit:0.0168738290544705 Sixth:0.015255921805929341 .:0.01482658715530047 Union:0.014589502308845152 Central:0.014499173160471028 said:0.012590559990096301 Lake:0.0118817252836673 Second:0.010905463857946617 and:0.010606497372811498 St.:0.009780547027242072 York:0.009635370410425956 of:0.009029362127222548 a:0.008654776976090852 Grand:0.008649393137259815 Fourth:0.00863229844701615 :0.6720016963096794 +the:0.43685359982459104 an:0.10322590673533448 The:0.0775689113368261 of:0.04909177084925837 and:0.037869251889733266 his:0.03301862992183689 their:0.02909955742179992 tho:0.02742557532321248 years:0.020089247484672914 our:0.019818282571578003 these:0.018657609157871916 good:0.014586070250523312 two:0.014318349423321202 my:0.014184397527905382 her:0.012612534468020783 dear:0.011803536854045008 as:0.01060484219071025 some:0.0096936249080354 An:0.009444139221340929 :0.049034162639382345 +as:0.06931392982974462 according:0.052071562389565784 up:0.0511867300210483 and:0.040371568633051955 went:0.03351644485287816 back:0.032358406609281 regard:0.03073407747799069 feet:0.02852138506231652 down:0.026379903432040268 owing:0.02466642634685871 due:0.023695193974505355 go:0.022910973192184297 reference:0.020802802907016128 came:0.019883741951819873 sent:0.019874244915639484 attention:0.019565955494145405 come:0.01885185084678811 given:0.018792390567602263 it:0.017366961307524745 :0.4281354501879983 +of:0.09129790931378902 the:0.07369883040827747 and:0.047842263382354346 in:0.04189055351593407 to:0.04045875475680249 a:0.03542341257202578 be:0.02020462051672066 for:0.01979292654746225 was:0.01760256398103379 at:0.017380150555488715 is:0.014984483003968216 with:0.014047653760730413 by:0.01374644383819499 :0.012670486581795598 In:0.01200961464556976 or:0.011563835749786333 from:0.011391516893522809 are:0.011273104484969465 that:0.010755276030689069 :0.4809655994608848 +of:0.2570084887134523 in:0.11730407568350641 to:0.11284462867312164 at:0.07039801584350865 for:0.06978938842431312 from:0.04557358873303073 and:0.04426088358895344 on:0.028245136018489214 by:0.027447655217953195 that:0.023617905155480536 In:0.02329927806340087 with:0.021536074638891317 as:0.017262846600934884 upon:0.0133773174161383 or:0.010249643789161279 is:0.009201317012605601 above:0.008762579537518545 ot:0.006686580611665684 iu:0.00604167659214479 :0.0860929196857295 +and:0.09596185874766484 that:0.07439539589018304 make:0.06603722761780041 have:0.06579836424606783 as:0.0648041642246834 is:0.047205492326484653 had:0.04680149944816681 made:0.043972244921050715 but:0.04006620941579307 when:0.03001156474226933 has:0.029736895764886983 of:0.0289672129728651 Be:0.02577315972259174 for:0.024737436298026747 deem:0.024184734098947978 Is:0.02296412509372215 found:0.022683979345343257 be:0.022217627433947857 which:0.022067172189888472 :0.2006136354996156 +the:0.16807735899698817 of:0.10541662057906837 and:0.05138367848570702 a:0.04141865232648221 to:0.0385989743764065 in:0.026264864977736738 was:0.019530675665220657 his:0.018900421021236905 be:0.017373825006196972 their:0.015767721170721456 for:0.01557246589796783 with:0.014071419046630446 is:0.012922913111931644 at:0.012690452250034052 are:0.010702713108721902 .:0.010158075558988393 Mr.:0.009672788574483367 tho:0.009612591781990074 were:0.009549306361446321 :0.391314481702041 +and:0.07558940021936399 recorded:0.030196237618668006 was:0.028917161578042846 made:0.027969746247669736 that:0.027730098932509103 o'clock:0.025060522019555328 up:0.023026552239529506 is:0.020398277211376416 found:0.02003101797656537 placed:0.017482208134164214 out:0.016937164562539058 place:0.016819459500107596 interest:0.016629321966808677 him:0.016002796715253755 situated:0.01573420479581609 it:0.015128305982428461 them:0.014715943643665314 part:0.014646613000297721 interested:0.014450471929902294 :0.5615344957257364 +the:0.2803178414866596 a:0.08985466202152038 and:0.06745250104354357 in:0.05917186540367336 of:0.05089820322139587 an:0.04162447505965694 The:0.021032224922852265 to:0.01862919694146908 his:0.01859577753241251 for:0.015191750459490368 tho:0.015174579642077106 or:0.014746281198492951 In:0.014130413230645029 their:0.013343774866302388 this:0.01276402999975567 is:0.009919802522723144 very:0.00854185958838004 any:0.008204335065290953 its:0.008091524925491726 :0.23131490086816706 +:0.05408755002078587 that:0.049531093299571755 and:0.026307747831082865 it.:0.023066050300906284 but:0.01604063510609521 as:0.013691133477483644 them.:0.013231826614228009 country.:0.010841946065548622 of:0.010487154798430135 which:0.009468692177853443 people.:0.008334614695462483 years.:0.008004416265567844 time.:0.007956347283674411 If:0.007858697640010603 him.:0.007413514011734311 year.:0.006977232836926869 for:0.006851092903969388 life.:0.006064905382420001 .:0.005982979647669748 :0.7068023696405785 +one:0.19012287826504748 two:0.13601361929440556 three:0.11002220574839697 five:0.10340769980425235 four:0.06763686058718872 eight:0.0619327653454048 six:0.060066841234095975 a:0.0411478325321161 seven:0.030032382615352394 nine:0.020364520227803655 eighteen:0.020223303819909142 fifteen:0.020088845372420956 several:0.019824492181102004 twelve:0.017142080096806154 nineteen:0.009876326633141802 ten:0.009875669670043326 live:0.009195004437912322 One:0.008727340876507858 sixteen:0.007972001386319278 :0.055327329871773134 +the:0.5375451632862828 The:0.10960828403299024 this:0.09723875076946309 and:0.035156960415279236 tho:0.021046897873528706 that:0.020183886164260388 a:0.019672572366082056 his:0.011423286132978444 This:0.010524999200006243 of:0.009646118721897759 tbe:0.006633294768645373 next:0.006487009798447098 as:0.00622434426455149 their:0.0060716574173953946 said:0.005939480944781191 whole:0.0054880947396477595 only:0.005176062015707296 our:0.004271129523008604 so:0.004089069105935582 :0.07657293845911134 +of:0.6660718924367526 in:0.07270539553927775 and:0.020370226105775303 In:0.018640521118030835 for:0.018109949437853285 to:0.017637967405308885 on:0.015948778275453674 by:0.013591834140451483 from:0.012782463930930733 ot:0.00929996376279127 the:0.008868000894590139 ol:0.006728376843367357 with:0.005762879295888058 said:0.0037051945366589505 at:0.0017103129915012202 public:0.0016507091350191903 upon:0.0016317975534938284 seller:0.0016164844763276295 or:0.0014791598157963244 :0.10068809230473154 +have:0.11018723187788444 be:0.10444493220937587 and:0.08859804939127304 has:0.08654779646554746 he:0.07591535177864217 had:0.07054834156124141 are:0.05242583797708833 is:0.048377606052657875 was:0.04635246116992845 been:0.04447237770035796 who:0.040614554143267735 were:0.021215367176327098 He:0.021075578422416735 not:0.020570149139152498 I:0.015990419463379653 being:0.01373120782043564 which:0.013714349009926654 she:0.01297816606072291 they:0.011941483227222402 :0.09929873935315164 +they:0.20241256764874677 we:0.07815795831721854 who:0.06519980116130479 They:0.06267551318648586 and:0.05525962839519369 you:0.04038542456941974 which:0.03303682075011425 We:0.027815310097828325 there:0.026429845841005543 that:0.025163452915949718 There:0.01681984787487055 people:0.013348820508524917 men:0.013323397637015013 You:0.012711716015761286 them:0.00869000556358109 I:0.008579362271626504 as:0.006515648938017133 it:0.0064592894081575815 children:0.004730800622974906 :0.29128478827620385 +the:0.15930234103476537 south:0.14916617612565322 north:0.12747015941821727 east:0.11497653682237818 west:0.10139947809509035 one:0.048792612627628046 other:0.04050218611816578 either:0.025502936103615932 a:0.022473503672407975 each:0.022108776560771096 opposite:0.020547929304717542 out-:0.013104247432932122 this:0.012527971499664897 cast:0.012459434028953368 and:0.012228690772812151 tho:0.011236060547429408 northerly:0.011218669246376186 right:0.010764144905735063 left:0.00911543234938189 :0.07410271333330416 +day:0.0174190936368831 two:0.01690014419392432 on:0.015876177587527025 lot:0.015863647398916873 more:0.01532615693823382 one:0.014577075703303572 ten:0.014220941706247506 year:0.01249906655077914 whether:0.011780134629248123 five:0.010764608900718483 three:0.00970650973508769 side:0.009034313208597737 six:0.008710041545855947 eight:0.007650554818754525 in:0.007283636345242191 vein:0.007032596689854666 week:0.00665887480630441 city:0.0065611330874862485 of:0.006344426497597087 :0.7847908660194375 +and:0.07558940021936399 recorded:0.030196237618668006 was:0.028917161578042846 made:0.027969746247669736 that:0.027730098932509103 o'clock:0.025060522019555328 up:0.023026552239529506 is:0.020398277211376416 found:0.02003101797656537 placed:0.017482208134164214 out:0.016937164562539058 place:0.016819459500107596 interest:0.016629321966808677 him:0.016002796715253755 situated:0.01573420479581609 it:0.015128305982428461 them:0.014715943643665314 part:0.014646613000297721 interested:0.014450471929902294 :0.5615344957257364 +the:0.39749834532651884 a:0.07520030034269234 and:0.05540858759821703 The:0.03273515726769502 tho:0.030061875542463562 of:0.020144331424922633 tbe:0.014929647509541684 in:0.014268129706664795 or:0.013333166761078447 .:0.013287381914101323 an:0.009000188755386574 to:0.00880680429595084 :0.007943763822197133 Mr.:0.00773879605474787 by:0.007328417831573476 as:0.005922572098978465 for:0.0047526933692942485 that:0.004736121968310169 on:0.004594595720579333 :0.2713091226890862 +and:0.09499785559459475 a:0.0855470411313956 the:0.07527203807309497 to:0.061339761187037656 be:0.04416348052173222 of:0.03093473239202042 was:0.029087537852568648 he:0.027170758095971376 as:0.02660128632611458 is:0.026100871754336754 for:0.025989577306392623 I:0.025409964150091842 or:0.023352423488816894 not:0.01799334420960211 by:0.016271998846088542 his:0.01510982353631171 who:0.014744897160597709 are:0.013046764327586263 will:0.013024959491640078 :0.3328408845540053 +and:0.09515394935297375 which:0.041784438362346715 that:0.03219899476569043 as:0.03189517524745623 he:0.030361497214056562 who:0.02942769672252598 I:0.028181126983592975 have:0.021788523278075553 :0.01860879305385778 they:0.017101094250510544 has:0.016484645080100523 it:0.015395645965913982 had:0.015128754410545418 was:0.013577516414400439 1:0.012979142033931461 It:0.012618910409482742 to:0.012577154685300126 be:0.011727675294449092 the:0.011656901631321277 :0.5303523648434684 +the:0.1591048058303431 of:0.10099213145174464 to:0.0684076939832961 and:0.06445448914460963 that:0.02786386427904251 in:0.02766502683628033 a:0.02015129011257544 The:0.019915560226930886 on:0.019309105813476776 by:0.016485374681134313 or:0.016281283931746198 with:0.015364777912629031 from:0.015244326792092283 for:0.014607248327786131 as:0.013795318473416392 :0.013510089061105074 which:0.013304548646202384 tho:0.009507278181018968 an:0.00903371367860803 :0.3540020726359618 +that:0.21551719069437078 if:0.13602407638681194 which:0.08876634198997592 when:0.07998392814323081 and:0.06803562421296915 as:0.062088565839447565 where:0.03860568030603923 but:0.03337013652573196 what:0.025680826875948946 If:0.025457720668741454 before:0.017761817804551643 whom:0.017296698135340405 until:0.01580163459046232 time:0.015232568564216413 When:0.014801668743862125 while:0.014703232998732023 because:0.01251441494718109 than:0.011505731973220691 though:0.010080684731642281 :0.09577145586752328 +this:0.1447237771674605 the:0.13830512504564302 any:0.12249027214106765 no:0.0830707621940496 a:0.07961338172711369 of:0.05297404051816392 that:0.04950008796186093 every:0.028863009980014422 in:0.025555302617188944 and:0.021199195876095252 one:0.01927709302474459 his:0.016903100385487847 some:0.014134839560948671 to:0.01363966869226711 or:0.010421400553248368 with:0.009709512072010566 all:0.008171773672408013 such:0.00812469602871076 The:0.007889998753060193 :0.14443296202845593 +are:0.15629399860615736 was:0.11743652046290771 is:0.10608003342320567 and:0.06993939318058107 were:0.06557088798895915 of:0.06156915451639176 in:0.046445336357004575 be:0.04259684202926346 been:0.04236843574480188 not:0.029944751677231884 with:0.02844391778329867 by:0.02626022586314191 from:0.02394207493698588 Is:0.018890250867044798 now:0.017271500394500407 In:0.015594444645096349 so:0.015129476491434537 very:0.014286591318399067 for:0.012787236476859297 :0.08814892723673456 +the:0.13719350867666488 and:0.0802390087002319 of:0.05262863071935662 in:0.040598665900038744 to:0.02864674616871877 for:0.027714307852499304 that:0.027264234510365297 or:0.022252847987919575 be-:0.021388571591443972 In:0.01605785670858949 as:0.015639519903610108 which:0.014706396246887302 any:0.014623615797131041 re-:0.013191711555669271 be:0.01309650349474952 he:0.013009134984926788 their:0.012745332384913556 a:0.01139011960642838 was:0.011007382519291562 :0.4256059046905639 +went:0.06497679573794887 made:0.05774620104570061 taken:0.05735538638763511 came:0.056344856650764726 it:0.04505332531202812 come:0.04069822942965494 put:0.03596125247119347 brought:0.0330585210733198 and:0.027972859389838487 them:0.027370888436186833 set:0.025848604137249424 given:0.024949489653652502 called:0.024085472591228813 get:0.023855445521074537 him:0.02072571477256628 give:0.02017222231284957 take:0.019964255375992522 got:0.0198039261679289 held:0.01914029588719823 :0.3539162576459883 +the:0.14117344734319692 of:0.07921767072475763 and:0.07699184487070236 to:0.042809214222713644 a:0.03791407805822653 in:0.02396483489085983 be:0.017184590766676496 his:0.01586114000519643 or:0.015250977317522615 The:0.013723614785415523 is:0.013570396888354291 for:0.013424748629642828 was:0.0133622346024403 :0.013200792545264167 .:0.013123607706178776 their:0.012333362934545374 Mr.:0.01126373039767266 with:0.010721976863014952 at:0.010525120859165741 :0.4233826155884529 +the:0.11919516938815296 of:0.07230453158552728 and:0.05781056740443249 a:0.043018564803886335 to:0.031305092790907506 in:0.020848713353460488 at:0.014270110001066288 .:0.012526810245749479 :0.012413283442322082 for:0.011719122709941797 by:0.010808400946589808 or:0.010404172990115616 The:0.01003576004804544 with:0.009811868184449042 tho:0.009295902015355835 was:0.008924239095331684 that:0.008672304223433876 is:0.0085591147338948 be:0.008335143826716943 :0.5187411282106204 +that:0.298271107806373 and:0.15231099468294887 but:0.05425708956536086 if:0.0365746785442632 when:0.036237276966220575 where:0.034875323325062386 which:0.03211973898294982 as:0.02981166807768261 Then:0.02053986173605224 But:0.01983693269486051 If:0.01908825092960859 time:0.018703219266474815 because:0.01148572386555154 until:0.010322078977824858 while:0.010268000802764871 then:0.010120350810279377 though:0.009627610782983168 said:0.00873978076280895 ago:0.008570928221952125 :0.1772393831979776 +of:0.2249186980046938 in:0.20780098841631545 the:0.08110429554916676 for:0.0546688950014669 In:0.04751850943223118 a:0.03583390128776894 from:0.01904624082422412 said:0.019027644231000236 and:0.014820838321189647 to:0.013698072399308436 on:0.011046694442284179 :0.008940739191263753 by:0.008581431107495336 as:0.00838674483019646 at:0.008308049679791462 iu:0.0074814425536547675 ot:0.007353393960995102 with:0.0071628994486431655 that:0.006738743778498661 :0.20656177753981167 +of:0.167645944820698 in:0.10146760359375147 and:0.06684843925869453 to:0.05872547706202964 that:0.05386509154415789 with:0.0468186131947809 In:0.03827623213618034 from:0.03755887519943123 by:0.0368007194336135 on:0.033211780345904086 for:0.024128328728469723 as:0.02163948098883442 under:0.02021996554155305 is:0.015341167239294176 all:0.013740659907332123 when:0.013548961857975021 into:0.009997360284377695 but:0.009650661964100714 upon:0.009496141494936983 :0.22001849540388455 +the:0.1360832820314718 is:0.08934519977291891 and:0.08554658388459485 be:0.07521782546828364 was:0.06245758644603797 been:0.05185005467470908 he:0.0466269206255751 are:0.038170607997626484 not:0.03758966533349267 have:0.03047820629972227 it:0.021995276509288175 a:0.021509282365045283 were:0.020672590273108197 has:0.020362744506821958 had:0.01826737657995857 of:0.015341283509426467 his:0.013229118115053324 or:0.01285779263770813 their:0.012225189957491086 :0.18917341301166601 +the:0.15981748494273867 and:0.08529430470069889 of:0.07160133856815863 a:0.04143793307067762 to:0.04065807306637051 be:0.03452436201914488 in:0.031044328390235413 was:0.030088344709402293 his:0.024957479344476837 their:0.017184475388275115 is:0.016660970775213012 for:0.015885718641089796 been:0.015457517078745105 as:0.013152070927123671 were:0.012140099516882412 are:0.01180870153155982 by:0.01119423074310509 he:0.011091579231084435 an:0.010418188606300722 :0.344582798748717 +of:0.1730258002501624 to:0.1364422464304172 and:0.0893133539068432 on:0.08242784532554989 in:0.06236255807785029 at:0.050964718512890195 with:0.04779905543013874 from:0.03125020381736633 that:0.030331213609840937 by:0.025158783827491326 for:0.02158351096780074 was:0.019133242127955218 upon:0.01493616185034221 had:0.014717909332572648 In:0.012592709125806074 after:0.012323272970266032 as:0.012318563296018433 when:0.009847950832159415 made:0.008776025163464457 :0.14369487514506427 +the:0.4729826897210193 of:0.052438450346913565 a:0.04386375724101114 in:0.024618546167100255 and:0.02340125538990554 this:0.020047257719717607 to:0.019553156014477584 tho:0.018160743442559902 said:0.016535310247311585 his:0.011992750216859778 for:0.011277258806211592 tbe:0.01111587609536246 The:0.009996212770024897 our:0.009188391015900882 In:0.006469079177575244 :0.0057340307409754375 their:0.0055765322451904 .:0.005519121969764044 or:0.005277298077482804 :0.22525228259463592 +of:0.16325389561664952 in:0.1384783342365679 from:0.13123461097351288 and:0.08018819544735155 the:0.05055139794896384 In:0.04357088302546466 for:0.03045060496389772 to:0.018411064583701123 Mr.:0.015350734874717711 with:0.013638541021526531 by:0.009662461138922463 :0.009408436486137034 at:0.008848499981139787 .:0.008839483176650505 said:0.008434663465234561 From:0.008237717713907043 his:0.008071021813320516 or:0.006771567984895241 are:0.006449938230410174 :0.23914794731702924 +the:0.5284420955205683 and:0.06687964028798672 a:0.04598123728594045 The:0.036880402284999836 tho:0.03242926900045732 or:0.025531210034144304 tbe:0.018208597263047445 of:0.017617609685273747 re-:0.016276222665994027 every:0.014226161326706253 any:0.01319885910287076 other:0.01026089014809811 an:0.010189001659015632 re¬:0.00958345704161103 some:0.009015686803823733 as:0.008156770877827412 re­:0.007808336984553367 many:0.007653207946953134 for:0.007392422265897653 :0.11326892181423079 +be:0.28704333030458634 was:0.08529634978394839 is:0.07524179061348761 been:0.058260417455966995 are:0.044738094736261856 he:0.03982855784303401 and:0.03836322073858253 have:0.03361798170855574 I:0.03249023048356348 were:0.03177082339653135 not:0.031617808129750756 had:0.022912768963275883 bo:0.02092339087473182 has:0.016273256277942707 now:0.01584695923358984 they:0.014424231740444562 being:0.01396806443306434 it:0.01203035993591089 Is:0.011962590530360808 :0.11238977281641009 +the:0.15613104094194785 of:0.1505308160231653 young:0.07119888340757885 both:0.04436419781529243 two:0.04353154777591433 business:0.04054301121369715 and:0.026165700006685482 white:0.026032858074264777 all:0.0254303148715715 many:0.025405590268027453 these:0.024052343150734838 good:0.021842145830521062 their:0.020290667710012644 his:0.01868005614129257 such:0.01768339314006308 for:0.017542821726890357 three:0.016498744104816054 other:0.016464964132260007 our:0.016325390542484115 :0.22028551312278016 +the:0.20820923130650804 of:0.1267420793409941 their:0.06139508537477663 his:0.04227160247735839 for:0.03759635566182102 and:0.033443548248493486 a:0.03118010526612086 St.:0.025579405185986816 said:0.02442745904846144 other:0.02387597295995155 our:0.021788460677783304 by:0.021654246721522757 two:0.02104443559972447 or:0.020430726341344508 her:0.020020994318997443 in:0.016058994008823282 tho:0.015388048967891163 with:0.013750854992405116 three:0.01350287336313159 :0.22063952013790403 +the:0.12595209821100026 and:0.12100582569943086 of:0.09381388136993458 to:0.08804141846561409 on:0.03398356912460982 in:0.02966313820749149 that:0.021676437462342196 from:0.01682695326248791 The:0.015160928206850149 :0.014583582556323483 with:0.014525009593780728 along:0.014149601195698273 or:0.01359699938377141 by:0.01243072572131289 A:0.01211812149431362 tho:0.011080753547086186 at:0.011066015755608583 In:0.009770681361230006 a:0.009660367376484765 :0.3298938920046287 +one:0.015552536992080472 more:0.014252271697624306 on:0.010631301787611593 day:0.010222750824534239 two:0.010216157614982159 person:0.007504694644314241 in:0.007364820929323563 man:0.007179188731169107 law:0.006205362369136604 action:0.006166303509128973 and:0.005659786788634644 city:0.005177234665142273 three:0.005130416479837977 State:0.0047265097104810415 to:0.004696031397422901 ten:0.004594585978494318 of:0.004463781172886088 town:0.004231879326219736 year:0.0040256313925199315 :0.8609987539884558 +the:0.47387044082746876 The:0.14560630795281718 this:0.08572986419905983 a:0.05443300160289189 no:0.04146777886777016 This:0.029381096078581435 tho:0.023293354668426462 that:0.02120940225831254 in:0.013389068252336163 and:0.01307908507549459 of:0.012842239202164714 his:0.00796904664468409 tbe:0.007499734966914207 first:0.007090493934187289 any:0.006165246625829116 great:0.005915533464360221 Tho:0.005561466346870992 every:0.005064400252562036 whole:0.004787005614918596 :0.03464543316434971 +out:0.039944851684271025 one:0.03751915237180989 matter:0.026590781773787608 years:0.022753651667461152 number:0.021683203092035804 purpose:0.020379161161322046 day:0.017215314276342285 lot:0.0165532225262558 state:0.01626435633656738 piece:0.016263333145659867 means:0.016033892077645072 tion:0.015795542988489647 favor:0.014982685033137428 part:0.013671955928949896 cost:0.013426626153181732 line:0.013259467341731751 use:0.013166893708209929 people:0.012926177014818166 amount:0.012842708446222574 :0.637727023272101 +property:0.07429438748016665 and:0.058937132558623526 land:0.03585838771896306 premises:0.025439169145153973 be:0.0241777771438733 one:0.02294435570114539 thereunto:0.022881356117242048 as:0.02106051853525447 lands:0.017666266719298843 estate:0.016966142514189198 he:0.015520413520957291 or:0.013559135189984707 man:0.01269241740458599 it:0.012589302151179342 are:0.011967012578037292 person:0.011776561140600116 was:0.011702999289720814 is:0.011372299348526172 now:0.011204271035371666 :0.5663900947071261 +that:0.21488806932375457 and:0.13704574472682768 but:0.07364295408934517 as:0.06153783271550263 when:0.056237149067654445 which:0.05511792399565147 if:0.03254514212126367 where:0.026252377085483634 until:0.018569156542656885 because:0.018405251161535782 of:0.01685808952523818 But:0.01451924119369239 time:0.014332649376990287 for:0.013714485166924044 what:0.013251216067409047 though:0.012499089054312695 before:0.012092095141291899 If:0.011363662217684147 said:0.011229030518646942 :0.1848988409081344 +the:0.14688952434354277 of:0.09894372060128218 to:0.08540015859321705 and:0.051439477374809466 be:0.030620671338852722 in:0.030465651181793726 for:0.020805380950234563 was:0.01984830275190478 a:0.019019972030769935 that:0.016071087127507516 their:0.0156051585067363 is:0.01506558759872616 his:0.014000272435420987 on:0.013739802060835912 he:0.013082180655432827 or:0.012704790545114242 will:0.012160774354233225 too:0.012053526646357867 from:0.01169415860771856 :0.3593898022955092 +of:0.3716387075413922 in:0.09671903698821724 to:0.0772075233545754 that:0.03470020597158995 by:0.03467173475791107 for:0.03263341336115185 with:0.028661689284926923 and:0.02333245779896124 from:0.02206771351492586 on:0.021639399931672236 all:0.01921934823067841 In:0.018242067024192923 is:0.013988758873468544 at:0.01381994875305849 as:0.013504059774881573 upon:0.011235428945220331 was:0.008596785620363236 over:0.007942663213454808 which:0.007712703129565481 :0.14146635392979218 +as:0.87252140452724 so:0.028065327764941368 ns:0.011773237433853863 aa:0.01090329876322181 As:0.010278422318093861 is:0.008820531183516497 be:0.007945988383149732 and:0.005928475622869833 very:0.005709877399414792 was:0.005242134495503118 are:0.0026859600428669247 a*:0.0024308058588011624 So:0.0019344379250489977 pretty:0.0019195478326968977 a:0.001870336261733337 not:0.0016102585220664726 Is:0.0015272309073977527 been:0.001369916478948576 were:0.0013632365183097583 :0.015099571760325194 +the:0.26522521439801894 of:0.103292652073722 and:0.07908524639274012 a:0.04035374456281605 for:0.03899171505869925 in:0.02607655645358379 at:0.021063117484809116 or:0.019485417232371658 The:0.01782951764434668 an:0.017190027750718213 tho:0.01388057257728512 to:0.0115567479966712 this:0.009974767286780118 all:0.008725733017179493 .:0.008381527968983784 that:0.007991741876759842 his:0.007933416725225548 tbe:0.007112210359866292 :0.006795109248651112 :0.2880549638907717 +and:0.15494317776400357 that:0.0998027433189679 but:0.07962521670867516 as:0.033159494416125174 when:0.02993619621610197 which:0.02918448221134621 if:0.016754996024116557 what:0.016297641300677283 because:0.016087682786958695 :0.015542288653582405 I:0.015353614230713944 But:0.015323235500849727 do:0.014786348906629027 If:0.012416103850756494 the:0.010259544458458019 it.:0.009878495015120536 me.:0.009629991478028538 When:0.009083163522887265 And:0.009020796209777983 :0.40191478742622355 +the:0.16807735899698817 of:0.10541662057906837 and:0.05138367848570702 a:0.04141865232648221 to:0.0385989743764065 in:0.026264864977736738 was:0.019530675665220657 his:0.018900421021236905 be:0.017373825006196972 their:0.015767721170721456 for:0.01557246589796783 with:0.014071419046630446 is:0.012922913111931644 at:0.012690452250034052 are:0.010702713108721902 .:0.010158075558988393 Mr.:0.009672788574483367 tho:0.009612591781990074 were:0.009549306361446321 :0.391314481702041 +of:0.4002574860364299 to:0.10088651248025168 in:0.07797080428331203 for:0.05981829483607937 and:0.046643440065898344 by:0.030982677594020257 that:0.028421231671925944 on:0.026728866880368775 In:0.024948807702409637 from:0.022701272812334347 with:0.01853173611898465 all:0.013269061204953924 at:0.012133151717044863 over:0.011336491446210064 upon:0.011310240393175386 into:0.010446051002443685 ot:0.009386387817478524 as:0.008376157524933137 about:0.007759337381733113 :0.07709199103001235 +the:0.11919516938815296 of:0.07230453158552728 and:0.05781056740443249 a:0.043018564803886335 to:0.031305092790907506 in:0.020848713353460488 at:0.014270110001066288 .:0.012526810245749479 :0.012413283442322082 for:0.011719122709941797 by:0.010808400946589808 or:0.010404172990115616 The:0.01003576004804544 with:0.009811868184449042 tho:0.009295902015355835 was:0.008924239095331684 that:0.008672304223433876 is:0.0085591147338948 be:0.008335143826716943 :0.5187411282106204 +the:0.4227777170705879 his:0.07815749855778198 their:0.06059819986351628 of:0.045433481406432226 this:0.03384560827067563 a:0.026675436589908577 its:0.02660986365918259 in:0.02458004614364847 same:0.021891155294312056 any:0.020280841621310657 other:0.020273754527583187 our:0.019129792398345575 tho:0.018090731788129415 own:0.016949826771914308 for:0.015943888183965173 new:0.015483240283105833 good:0.013816836665890004 such:0.01208669372619038 my:0.011919188996266856 :0.0944561981812529 +of:0.12062133395795026 and:0.11941219010637619 to:0.05724874690095746 :0.0492415144585992 I:0.035143550044703424 as:0.03492172520856808 Admiral:0.027662531775148113 w:0.024459441075921032 which:0.022540067453164104 Miss:0.02110813976088817 the:0.020165693148381368 that:0.01977572327400117 at:0.019612942225056558 Mrs.:0.015247598492167603 when:0.014880324201025386 Mr.:0.014481916373714269 in:0.013273994126614863 was:0.012984872914998917 by:0.012491241726877489 :0.34372645277488634 +in:0.3312560644617142 of:0.2458338011824109 In:0.058948872083054736 to:0.05615075800663656 for:0.03784720059865193 by:0.026536489933551864 that:0.02621368090255243 into:0.024325748731306857 on:0.023977201101741234 and:0.022588611231967398 with:0.020886823448679284 from:0.017519169595834688 upon:0.010778098462271643 over:0.01029447701767964 as:0.009837678502857279 at:0.008709996101062755 all:0.008388048309200992 through:0.008326059195515519 is:0.006352529063018367 :0.04422869207029173 +of:0.13083726694446254 to:0.06434991895213771 that:0.0624478432074602 in:0.061981682192567236 with:0.05954417791065978 such:0.05521639033526354 as:0.05429898216430199 and:0.05231545154392144 by:0.04702831214502773 is:0.04215566879318976 at:0.031862591853807624 for:0.031009040205136347 was:0.02816187532730184 on:0.02505934107498066 be:0.024632201856620142 from:0.02256393111050821 have:0.020792013443041026 made:0.020502787508479524 had:0.0159565875208721 :0.1482839359102606 +that:0.13213727787698637 and:0.1233414749832515 which:0.10345765406829699 when:0.06335527825825203 as:0.05937061477274724 but:0.044831538196383816 to:0.04058004737905893 where:0.02420952621817455 will:0.019798706552033352 time:0.018050343482645996 said:0.016723234757563304 I:0.015205255923547862 whom:0.014727309785388278 Then:0.014069367512572336 what:0.01370212869003531 then:0.013619953771137233 if:0.012120481933646324 would:0.011664981046058403 until:0.010565326437314403 :0.24746949835490573 +of:0.09129790931378902 the:0.07369883040827747 and:0.047842263382354346 in:0.04189055351593407 to:0.04045875475680249 a:0.03542341257202578 be:0.02020462051672066 for:0.01979292654746225 was:0.01760256398103379 at:0.017380150555488715 is:0.014984483003968216 with:0.014047653760730413 by:0.01374644383819499 :0.012670486581795598 In:0.01200961464556976 or:0.011563835749786333 from:0.011391516893522809 are:0.011273104484969465 that:0.010755276030689069 :0.4809655994608848 +New:0.8225657965612126 Now:0.05405425772999517 Xew:0.010459142634334555 New-:0.008819020141973393 to:0.006165843875552571 and:0.004985772482160972 the:0.004799695076184929 Mew:0.004177518977987385 of:0.004174191745314088 a:0.0018249078382678208 for:0.0017325020721495022 or:0.0013863057570354552 all:0.0013743844604823434 I:0.0012817535160610952 ew:0.001218174916993699 in:0.001200976531915877 :0.0009974260257459252 two:0.0008707597911296045 three:0.0008266373335487439 :0.06608493253195416 +the:0.25360536541813006 of:0.1486131576608904 and:0.051530073316863684 a:0.02875512013558347 to:0.024611607059785948 at:0.0236941013751738 in:0.021690128940895545 The:0.021617744200983793 or:0.019825554014908566 for:0.016864816703585323 tho:0.016140644023217923 this:0.012552985073717457 :0.009962582880807503 that:0.008985384866240769 said:0.008793246706983114 from:0.008673946587992828 by:0.008437607215729063 tbe:0.008104841276522275 on:0.008047558765332068 :0.29849353377665644 +and:0.16760486569007918 all:0.05833384634746502 of:0.057179300573458665 fact:0.04973424056055459 so:0.03904836519664368 is:0.03422002975745155 say:0.02789651475341873 said:0.026706355693001935 to:0.025716085948431326 given:0.02315997595528404 was:0.01835955771094756 given,:0.017683777681488377 says:0.017421264878826087 believe:0.017326550765153114 than:0.016810995942430185 but:0.01590842014305139 stated:0.01578549645849557 know:0.015711083615743807 as:0.015432853243748096 :0.3389604190843271 +time:0.028848706440870446 men:0.025885929354616873 good:0.020738950524160322 in:0.018859955320732962 full:0.017951119070407796 ways:0.01788191430493069 out:0.01612229277304734 life:0.014843738990022648 strength:0.014587222526905565 man:0.01380120088977366 up:0.013685090839544663 all:0.013579015034111621 love:0.013507973322688382 more:0.012269664301795763 labor:0.012055421933524744 character:0.01170726446734625 health:0.011372552054745706 free:0.010737229522582376 right:0.010589340886963559 :0.6999754174412286 +came:0.08644020219106302 the:0.07204493307200921 go:0.07125631138665468 come:0.07050184914251298 get:0.05311870329459512 her:0.05238775744195392 and:0.04784272915637135 went:0.047804142705296204 brought:0.03417821403687695 them:0.03357858202606735 his:0.031356508456642354 far:0.02846220087393112 him:0.02749261137101405 fell:0.02734547204809824 it:0.022328768164606334 got:0.02214204475459007 my:0.021064770515027437 running:0.02068877924349766 way:0.020326594199366242 :0.20863882591982572 +in:0.02846692209013229 it,:0.010784040102568896 ;:0.010690495230683963 time:0.010280061371593761 good:0.008787205561005009 him:0.008369239997511187 up:0.008358921281841675 it:0.007986308036570635 made:0.007981381897386947 them,:0.007784041661660847 each:0.007665513846600262 law:0.007580395812945667 you:0.007052326369484864 man:0.007019257222789151 this:0.0069134814358383844 out:0.006775080682112405 them:0.006625868647184158 years,:0.006292003084063084 health:0.006247058656551613 :0.8273403970114751 +up:0.013251871628193525 it:0.009325305784031391 made:0.006544864267227918 hereditaments:0.005678640607521954 it,:0.0056037974256661635 ;:0.005418777999799323 out:0.005317888175943386 time:0.0053108787543426576 him:0.0051765252049754875 work:0.005112197927963878 hundred:0.005044545547718208 them:0.0049611042444400125 interest:0.0046227383598837985 them,:0.004553081937319375 due:0.0043968853901436645 lying:0.004262692837690368 quiet:0.004251317297948255 him,:0.004233077086124309 men:0.004100568650012287 :0.891833240873054 +him:0.05559419858210337 is:0.04731175581414882 had:0.04629365927286812 right:0.04028619547710485 have:0.039026549124363194 was:0.038380568027054716 and:0.03623467268266282 not:0.03505833737740873 able:0.03269086028504228 willing:0.030264998311394942 them:0.029919881127173954 going:0.029337907711632156 began:0.023805004207293045 reason:0.02148400169747034 enough:0.021005629567839874 want:0.020923256218985792 refused:0.019858201832755298 me:0.019538027771316656 went:0.019458525170720255 :0.3925277697406608 +at:0.06289356646967835 the:0.06158225723368139 and:0.05704356275885298 an:0.0338841375134758 that:0.03204556980044189 as:0.03192517004284583 of:0.029004259133257482 a:0.022554304548262443 :0.02242944526917411 to:0.019682544790578425 1:0.018022719190208113 No.:0.01760718917897668 after:0.017097212263059217 No:0.01651541557120964 which:0.014881524517010882 but:0.01440128628751988 for:0.013746226028297196 in:0.013247425986442752 by:0.011840132079727953 :0.488596051337299 +of:0.10899036294270543 said:0.048191735418970774 Mr.:0.037336576360078026 the:0.03649973639895456 .:0.03356321978069741 and:0.032673656391207895 by:0.029617036032060146 at:0.029341649443635813 Mrs.:0.027110258371159747 to:0.026202354953048186 First:0.02258528923968607 No.:0.01384244676202212 Miss:0.013731521343287208 on:0.012557900744835464 :0.012018327465675107 W.:0.010900290040338314 A.:0.010760272395810549 A:0.010420649552516535 Fourth:0.010208244734419034 :0.47244847162889164 +on:0.43999725739349865 of:0.1811563257523439 in:0.05703355307194852 to:0.046589767090549225 On:0.04619041948203262 from:0.031651686514179676 dated:0.022537172241558132 at:0.020495546099144668 In:0.017357190659599144 and:0.01666563958000239 by:0.01631993156544246 with:0.011228481709741563 upon:0.010866579915271157 along:0.009499242946044947 as:0.0071357563594387115 ou:0.006350312272875344 before:0.006268639101827799 within:0.0062502951174237325 that:0.005794826780982493 :0.03961137634609483 +that:0.17355634793873995 and:0.07181278738620422 which:0.06087404052945047 as:0.058529782045597716 if:0.05758975011873287 when:0.045955781678148046 but:0.03546530931852298 what:0.02949482374092239 If:0.024721151370514484 time:0.02095510285378353 where:0.020103817411857395 whom:0.019625873214235708 When:0.019204331887195142 before:0.01690080682035397 after:0.01389311429639891 until:0.012707689097361651 because:0.011621928864876827 the:0.011409537737931914 But:0.011033173419135477 :0.2835448502700363 +men:0.044778913271147525 wife:0.0325362408545204 man:0.03160812718424699 father:0.02166550313546143 woman:0.019395377468990352 women:0.017000968178046534 up:0.013557226362430853 gold:0.01330263450745648 time:0.013210687069107125 him:0.011999330193062964 right:0.011954266625612386 life:0.011099605104674639 friends:0.01106034933722053 good:0.010881176495907932 husband:0.01016364999382066 in:0.009844805503078272 one:0.009297064141099806 out:0.008995555460709728 wives:0.008742750954666624 :0.6879057681587388 +be:0.15173161387786316 and:0.11376033542468995 he:0.0839391742479483 have:0.07414190151037899 has:0.061793002718691405 had:0.03471581071849172 who:0.03313085898129119 been:0.030219670077241856 not:0.02656494147824225 was:0.024504385040710425 I:0.024273718366066857 He:0.019737418600541606 she:0.01572874027775169 they:0.014949867150857495 one:0.01465039223987599 is:0.013505389880890773 which:0.011626058496974914 also:0.01142591286319061 lie:0.010848759350949576 :0.22775204869735127 +of:0.26210945197285557 to:0.10878071383055059 in:0.10567272273299931 and:0.06598105841563306 by:0.04419442375780262 from:0.035788989863391504 for:0.03030783804753172 In:0.029667032642197222 at:0.02238041191012912 the:0.015227051141460344 with:0.014192601253192301 :0.010836581189895673 was:0.009143239404985223 on:0.008473162638112756 that:0.00777437492816995 upon:0.006765345393723307 as:0.006427125371515322 is:0.005785789099640013 ot:0.0054283952176361 :0.20406369118857828 +the:0.5680593702370907 an:0.08475845497881418 of:0.06942161565829265 The:0.04634299036023791 tho:0.029487477414858444 and:0.019901561804548547 said:0.016936294719124754 to:0.016168027730190354 in:0.014192978596390193 tbe:0.01355974037342907 this:0.011793432262196939 our:0.010496261114406833 by:0.010033984251275602 great:0.0070995508611973734 for:0.0069878192553340344 their:0.006941984148376833 that:0.0068949018066130135 his:0.006048892367979167 its:0.005753948826035302 :0.048120713233608066 +of:0.09129790931378902 the:0.07369883040827747 and:0.047842263382354346 in:0.04189055351593407 to:0.04045875475680249 a:0.03542341257202578 be:0.02020462051672066 for:0.01979292654746225 was:0.01760256398103379 at:0.017380150555488715 is:0.014984483003968216 with:0.014047653760730413 by:0.01374644383819499 :0.012670486581795598 In:0.01200961464556976 or:0.011563835749786333 from:0.011391516893522809 are:0.011273104484969465 that:0.010755276030689069 :0.4809655994608848 +the:0.17048419093474823 a:0.07820151689334678 of:0.07204086736101406 to:0.05563078350348164 and:0.04810512064086117 an:0.03144217145699868 in:0.0283232371011058 on:0.022565067686967973 that:0.0215193454879103 at:0.016540975162201158 from:0.01588244246738823 his:0.015146228588034652 for:0.013635187730701574 as:0.013553038547592145 which:0.013417686262153415 their:0.013310987649211512 with:0.013179194557397071 be:0.011593602453787752 tho:0.011346557221928408 :0.3330817982931695 +I:0.185448873987424 they:0.10690968494505426 he:0.08433852128757398 we:0.0754678169279205 you:0.06678050684054364 who:0.05164484943581191 it:0.046547925531902096 which:0.03664982769055226 that:0.03315748933348164 and:0.02917129073526157 she:0.02435554262943059 there:0.02099546593597208 We:0.02019241767934493 They:0.016667115940022886 You:0.016398285490144122 It:0.015611028569297854 1:0.01539025524567738 one:0.013442189692709576 what:0.012113760756662246 :0.1277171513452125 +virtue:0.062060494787377685 out:0.05417899169104244 part:0.03289673107629515 one:0.02969369892462812 quarter:0.027015883171169475 favor:0.01993830018372674 result:0.019463829004704194 guilty:0.018891084377354095 means:0.018499162894926688 end:0.018170939082736048 that:0.018121271122199262 construction:0.01726217741616459 presence:0.017003995482744873 tion:0.01673652166540914 case:0.01640819963257697 side:0.016055927605250184 erection:0.015381239457214257 account:0.015287601389485416 hands:0.015156055434805247 :0.5507778956001894 +the:0.28443491791349723 said:0.1449908760043933 this:0.0349439309488707 of:0.028789434681136556 a:0.027109108878894457 that:0.022923745746978533 to:0.021727612084232677 tho:0.02141231125136638 United:0.01991574371401803 The:0.016831954561973745 and:0.01567554214278346 at:0.014621304228597183 tbe:0.011244581199911226 his:0.009420649164937298 each:0.00890296954642435 or:0.008156282229644275 old:0.007073334313761283 York:0.006830196907584224 any:0.0065487406964946735 :0.2874467637845004 +to:0.23142405945072794 a:0.16862457005023795 the:0.12501320955163392 not:0.06423919975373468 and:0.04050734452011114 they:0.028385996179659177 his:0.024632856762188637 will:0.02381514324890894 would:0.020534911042202446 be:0.01813820404130871 was:0.016453774776443726 all:0.015330237373385161 The:0.014722515215345325 one:0.014646483804662975 of:0.013704508496519208 we:0.013312764392516751 or:0.01276140186356059 been:0.011748858595306557 only:0.011176168871826644 :0.12982779200971944 +the:0.2625556961397961 of:0.13556415713184328 and:0.13495241597082083 that:0.050581684911932406 to:0.03193476334049381 this:0.02809126250634412 The:0.02561932557785195 a:0.020333747871134025 or:0.01897158847554524 for:0.01557712805754135 in:0.014419114547633552 tho:0.013251370952043266 which:0.012585813683789509 with:0.012507535874525041 from:0.010455694873909273 at:0.010006588254365683 one:0.008677964053889873 by:0.007466418295154969 high:0.007127597013912568 :0.17832013246747316 +and:0.06336605693372681 was:0.021585029498167464 or:0.02059908868015044 made:0.020170451796842702 that:0.01860705838979724 them:0.01814705954593045 not:0.01635969252090957 it:0.016356171000223622 is:0.015995284579857647 up:0.015702593102074537 interest:0.014258001586160984 be:0.014054978973621563 interested:0.012625665628312785 situated:0.01236445948687146 him:0.012027375604933119 are:0.011800951629524485 been:0.011429123166228988 engaged:0.010701757562365872 found:0.010490293104878135 :0.6623589072094221 +the:0.12501213529677174 and:0.07155652309953148 of:0.052609940129058716 in:0.028320735107419746 to:0.027352226368332348 that:0.023655582888587063 was:0.022042931093136858 I:0.02117992979569259 be:0.02040334901588246 for:0.01915073747965047 a:0.018186963787182143 is:0.018082597111518887 on:0.015141432607690512 he:0.014740905412035949 his:0.014678343154957307 or:0.014471548948014279 you:0.012428922258617232 dis-:0.012004838166587189 it:0.011271760331748027 :0.456708597947585 +sum:0.03352282876311118 number:0.028116684882597106 line:0.019995206059833036 city:0.01946514558931857 out:0.019275318828420953 day:0.01666865340772654 county:0.014872697538657208 amount:0.013254184849875051 Board:0.01252325449624941 town:0.012449555905674143 side:0.011663975251122375 part:0.011517157473718155 County:0.011460540331966697 state:0.011087331502382173 City:0.010878919191854432 purpose:0.01081028255427907 and:0.010297866493795984 way:0.009848747943663767 name:0.009522170936943183 :0.711769477998811 +the:0.46786769370942516 of:0.13860567669601448 American:0.043109596586333926 The:0.02868642910846175 our:0.02476463715773162 white:0.02319390428697283 tho:0.021651603607020113 State:0.01912600049295709 and:0.017458712436585772 said:0.015652003467365463 colored:0.013827188624363822 other:0.011743146415396775 by:0.011545806603012118 his:0.010183000648777238 young:0.010130210088765898 these:0.010030741477623405 tbe:0.009019006852707035 two:0.007572661619062629 for:0.006733819613376561 :0.10809816050804627 +the:0.24083555202320892 The:0.10815507381798023 a:0.10474572205186969 and:0.050251169381090255 this:0.04419150764519519 that:0.04195578158832113 This:0.037168779712194955 any:0.02995375043404259 tidal:0.02822430250308267 said:0.027917362643758947 no:0.021762337691115245 one:0.020161843372052575 tho:0.01961599752084875 his:0.015541338222419763 of:0.015189496010583252 first:0.013539143964407464 every:0.013180508016020555 her:0.011170067667266331 which:0.010090387561285215 :0.1453498781732563 +sum:0.015264990909639524 out:0.010469624548822214 amount:0.010268768642269844 number:0.010252144109883224 Board:0.009915489778488978 day:0.00934391924304638 line:0.009159513299813713 county:0.009058268073362647 purpose:0.007929238102727576 and:0.00784672009005394 city:0.007535183166758685 part:0.007294147380644756 case:0.006189609631311928 time:0.006139795834628276 that:0.006097569449880835 tion:0.005913104914262385 town:0.005848644229223571 use:0.0056842696333859015 state:0.0055904354376684826 :0.8431985635241271 +to:0.0713417321456775 of:0.04620286486122824 was:0.04577588760303728 .:0.0419424475828401 the:0.039654518342238466 and:0.03377568306497962 is:0.03259984669503788 be:0.026260067906880787 Mrs.:0.02500554021721236 a:0.022566550593586854 in:0.0211301799989531 -:0.02001227504373083 con-:0.013528787083209304 are:0.013487927052423875 were:0.012835379563431386 on:0.011948489901196017 his:0.0119211967826159 Mr.:0.010694494985945806 for:0.010197602655717331 :0.4881185279200574 +is:0.11852008984255555 of:0.08939186844734127 was:0.08514032189887781 and:0.0796191565504778 in:0.05841897057277058 as:0.04141517031113783 to:0.03527418704711287 by:0.03208349761601984 any:0.0316178936538981 no:0.03129759887347578 the:0.027925111379291493 with:0.027276745378366836 that:0.02553986982270336 only:0.025049036289369744 but:0.024821881507018136 not:0.024674263954361692 for:0.024307050149215317 be:0.022936841776455594 from:0.02241706127132092 :0.17127338365822947 +the:0.05798157203586141 was:0.05590830779029486 and:0.05550522180225106 of:0.04914516728042593 be:0.0486558209961897 to:0.03757773026520792 is:0.03700276979647081 a:0.03439215696864455 been:0.027643976429479446 were:0.023376604586954473 are:0.02160417988514306 his:0.017112836786869694 for:0.015617803036859132 not:0.014902295733720879 he:0.014151606041008671 on:0.01397625103556984 in:0.013777644779982955 as:0.012528839517881873 with:0.012245394558003055 :0.43589382067318067 +the:0.581374138340301 a:0.07871659411162132 The:0.04397629698509821 tho:0.03524344669507214 and:0.025017755474310774 that:0.015530637938853117 first:0.014605850302369949 tbe:0.013776277721337047 by:0.011399582361525324 large:0.010944530571831776 whole:0.010237591894327195 an:0.008213848347602687 every:0.008026494389921514 A:0.007339749225525865 this:0.007327674547333494 great:0.007042641849648362 of:0.0062660329625634035 some:0.005817879213422366 or:0.005445579052555176 :0.10269739801477924 +of:0.11995858894229315 and:0.05190814595497317 in:0.04826895364987692 that:0.04493731536153755 for:0.02621329399551802 to:0.014264398237021584 on:0.01265746727886542 but:0.011455138992558378 from:0.010608200780434335 by:0.009501112514025458 after:0.008585786447328627 In:0.008138916799229592 bill:0.008011347344982048 with:0.007958936088978385 one:0.007618611554315744 bill,:0.0067307084291911914 ,:0.006169986576017955 which:0.005912943367918462 upon:0.005759226711584125 :0.5843409209733499 +one:0.1028303141280697 part:0.05963429477052991 out:0.04766456937681193 some:0.031418679026461914 members:0.030764490253327767 side:0.029940657362655835 portion:0.022063658796890564 office:0.020457735219956013 member:0.019726706386316174 end:0.019666887540649894 tion:0.018667441728710307 parts:0.016814747270460957 people:0.014112771422418794 all:0.014072739582212475 any:0.013183573287639892 One:0.013083578354183906 that:0.013024335602903442 account:0.012482348155001894 many:0.012077825070275192 :0.48731264666452345 +the:0.17234101881375233 and:0.0723308580507978 a:0.06418362524859451 of:0.059381903314211774 to:0.05765128534513001 so:0.0292258426364823 is:0.027247612130850953 in:0.024298181821023074 be:0.020836055953937775 was:0.01790457325883464 Mr.:0.01622639783612973 tho:0.012553953887538211 I:0.01099826163396415 he:0.010910273396485398 not:0.010754844629789139 at:0.01064958641021041 :0.009679095332540733 for:0.009454446178783427 or:0.008882500654999364 :0.3534896834659443 +the:0.16807735899698817 of:0.10541662057906837 and:0.05138367848570702 a:0.04141865232648221 to:0.0385989743764065 in:0.026264864977736738 was:0.019530675665220657 his:0.018900421021236905 be:0.017373825006196972 their:0.015767721170721456 for:0.01557246589796783 with:0.014071419046630446 is:0.012922913111931644 at:0.012690452250034052 are:0.010702713108721902 .:0.010158075558988393 Mr.:0.009672788574483367 tho:0.009612591781990074 were:0.009549306361446321 :0.391314481702041 +in:0.4323613455722007 of:0.292516143237752 In:0.059814806575651795 the:0.05391536070956747 on:0.02530332151917829 to:0.0196328366758835 from:0.01738816652549146 by:0.013802311099991162 for:0.01343206447453799 iu:0.008017480192455666 at:0.007605666575109785 and:0.005475080044144805 that:0.005280262645107023 ot:0.00475529860057315 which:0.004445290749633372 upon:0.00425687819472443 within:0.0038871815127040094 with:0.0034140386601634646 along:0.0025311465246240636 :0.02116531991050592 +of:0.17792068577252038 by:0.12757349803672502 in:0.1060692296530178 and:0.09010522390900837 the:0.04612608814933113 with:0.045730377550432744 for:0.04090756486379409 to:0.03483740468879865 In:0.025263523208177725 was:0.025027840137769604 a:0.02308858832969132 are:0.021838447003049447 from:0.018110823059094044 is:0.015953431334871267 an:0.013739804483844905 on:0.013574575206125308 were:0.010810897831895464 been:0.010524866404943028 as:0.006808506715247485 :0.1449886236616622 +the:0.47964159021744923 this:0.10629895586648308 that:0.06037051493733968 of:0.04425382205575582 a:0.043831376620497804 and:0.03959534796156482 tho:0.015663780560959375 or:0.014778883212976456 other:0.014732993887365391 The:0.012999632658007009 his:0.010672113335583131 any:0.0094054367269932 to:0.008719603452889487 same:0.008331154253028316 said:0.00707841501840177 every:0.006488590711189543 our:0.006437362204469989 each:0.0061856790563706975 tbe:0.005640364871046427 :0.09787438239162878 +and:0.08995317707915026 to:0.06844710404109794 of:0.04605142056172993 the:0.04074574508561307 which:0.02479116931334353 that:0.023764822140213245 re-:0.020841117231308055 in:0.020803825395358622 for:0.020278423301550053 :0.018417753428486977 not:0.016860793136637672 con-:0.016444405871234195 is:0.014386481772210856 or:0.014080680914153714 be-:0.01352268143271276 I:0.01317002660943805 was:0.011429878269381662 dis-:0.011196807025842847 he:0.01113106290024311 :0.5026826244902934 +be:0.3134656889821028 was:0.13831979036670042 been:0.07279017990122023 he:0.043934484543624815 is:0.04352654193457859 have:0.031647047856457874 and:0.030601042102805145 had:0.02617638565677689 were:0.025923205080242137 not:0.025733130566980334 I:0.02444397725846541 bo:0.0212443457170252 being:0.019421546235233244 has:0.01527841945479115 who:0.01362591010819807 they:0.01154361996514644 are:0.00987939282121132 ever:0.009249250860663824 it:0.009011548834590903 :0.11318449175318517 +able:0.07328578526038662 enough:0.06281256670109912 ready:0.05303950771858643 order:0.04672662780674119 unable:0.04437896601756033 right:0.04144797293871761 is:0.03812921516722896 him:0.037265435637546154 began:0.03433134301263752 and:0.03253082490280612 necessary:0.03174800420438778 them:0.029621190812303327 not:0.028416904007665243 refused:0.027937507549470737 willing:0.02775096735538962 compelled:0.02720305616939527 want:0.026865461483759078 time:0.025891239715841965 trying:0.025062852410311778 :0.2845545711281652 +as:0.06931392982974462 according:0.052071562389565784 up:0.0511867300210483 and:0.040371568633051955 went:0.03351644485287816 back:0.032358406609281 regard:0.03073407747799069 feet:0.02852138506231652 down:0.026379903432040268 owing:0.02466642634685871 due:0.023695193974505355 go:0.022910973192184297 reference:0.020802802907016128 came:0.019883741951819873 sent:0.019874244915639484 attention:0.019565955494145405 come:0.01885185084678811 given:0.018792390567602263 it:0.017366961307524745 :0.4281354501879983 +the:0.18258942834222666 of:0.07329472901369037 and:0.06637432647102547 a:0.0464570041879333 to:0.04420278752996659 The:0.020567412224275192 .:0.019366672068412447 :0.01924429842281997 at:0.01905436172784945 by:0.01612597718712636 in:0.01571900149237479 tho:0.013570829146411674 for:0.01328223582893626 Mr.:0.011878030104616601 that:0.010855376486775162 with:0.010761993284367805 A:0.010109164150109179 his:0.008444058918420743 tbe:0.007538271040453092 :0.3895640423722089 +he:0.13543246640945308 and:0.09561163231356354 it:0.09498018662059617 It:0.04837102702730714 soon:0.046830912033367394 He:0.04507437353395581 who:0.04282922264030175 she:0.03359895583473677 they:0.03118433688669723 that:0.027005101739673472 which:0.026553935689572136 I:0.017663986813290247 then:0.01072594122869249 She:0.010361576977866022 one:0.010232688330756511 we:0.008825342155759053 This:0.007627183110393675 this:0.006968545636032958 you:0.006884657478035282 :0.2922379275399493 +of:0.1935810003519112 the:0.18554519541593154 a:0.09116719811670343 and:0.06090483954927012 with:0.05135731340042938 in:0.03925269787055109 his:0.0196120594881532 The:0.01925755053112529 as:0.01684731771120959 for:0.014495185909407628 good:0.013937597074457585 very:0.012398513444555347 so:0.011915996754609024 by:0.011835527969916172 this:0.011771658099865995 her:0.011566282767119903 on:0.011524267448644323 tho:0.011324671477356947 both:0.01070418139999324 :0.200000945218789 +of:0.172987631960894 and:0.14919588302667208 or:0.0966844675741651 to:0.064982114704925 than:0.060885579380739054 in:0.05576112229133187 for:0.05264638370464178 by:0.026104793772558393 within:0.024580262865877615 about:0.023637158201432678 some:0.023507938254893848 the:0.021802237559011714 section:0.021456457200471228 with:0.02061050929432 only:0.018626925227692673 as:0.01508031450719026 that:0.013815830189751965 over:0.012208169718518324 least:0.011510813057949702 :0.11291540750696269 +the:0.1289315837654151 of:0.06640720501275486 and:0.04181298910430103 .:0.02797553439158915 :0.024545046101747434 a:0.024252525160444047 to:0.018810440055914653 The:0.015215646198664917 by:0.014705138103819565 at:0.012539668895876013 with:0.009841984527989147 in:0.009805330488357663 A.:0.009224309293397511 tho:0.009015149666189028 Mr.:0.008756385727200493 Mrs.:0.008453919672095123 for:0.008242427864165753 his:0.007836128737896667 Miss:0.00769704416906013 :0.5449315430631217 +of:0.19359414979654657 with:0.0717718963662436 by:0.06819254763805936 and:0.06626166849214278 to:0.05726221320076384 in:0.05439804755206358 as:0.05370222222884038 such:0.04964022614731547 for:0.04435530517213693 that:0.04250275522218073 on:0.03391566540986803 is:0.022970368096989466 from:0.021439209414987677 at:0.018664040552718537 was:0.016106210944138055 made:0.015247597574649588 be:0.013169637508548765 like:0.011475993188634901 In:0.011399414158383227 :0.1329308313347885 +:0.035696653511768595 and:0.03316244989855835 of:0.031327418278103085 that:0.008931404229526246 I:0.008290263149429771 :0.00827409867535838 is:0.008175515452283014 had:0.007220452279679951 the:0.0070691569019793975 was:0.006462155251220666 it:0.006432797982051701 are:0.006331954608770896 which:0.006256719831977383 .:0.00598109258267153 who:0.005902357578007625 he:0.005822776895109205 but:0.005507534235257982 men:0.0054445843299752395 by:0.005430456244799774 :0.7912801580834713 +of:0.28361777649851494 in:0.12283607781843359 and:0.11927472425589392 to:0.06972121325805249 all:0.058224663046571756 by:0.04874058680394395 with:0.04503013068654847 for:0.04152665800062117 that:0.02243757467680828 as:0.021870196122735785 from:0.01992085395185302 In:0.0149381280308359 upon:0.014867306329640671 on:0.014034321576963648 than:0.01180122305033541 but:0.007787429631185846 or:0.00746628024898529 when:0.0071197234640932045 into:0.006910715597180748 :0.0608744169508019 +of:0.09129790931378902 the:0.07369883040827747 and:0.047842263382354346 in:0.04189055351593407 to:0.04045875475680249 a:0.03542341257202578 be:0.02020462051672066 for:0.01979292654746225 was:0.01760256398103379 at:0.017380150555488715 is:0.014984483003968216 with:0.014047653760730413 by:0.01374644383819499 :0.012670486581795598 In:0.01200961464556976 or:0.011563835749786333 from:0.011391516893522809 are:0.011273104484969465 that:0.010755276030689069 :0.4809655994608848 +the:0.3183702680796386 an:0.12499515494091365 of:0.08534670729593423 his:0.030031949446176435 good:0.028542596478477678 years:0.02668807768339731 and:0.026585752928093384 any:0.023989880964597782 by:0.023783420219882622 to:0.02096727934454342 tho:0.02075269433552908 as:0.020425653263711645 some:0.019882540484213205 The:0.019684711657000472 for:0.018509955005450874 their:0.0167660048910858 no:0.016741385523775267 too:0.014921175926522494 such:0.014889190148623352 :0.12712560138243265 +boy.:0.26141313645986997 girl.:0.2223914897439944 of:0.07314196259871054 to:0.035159692610698554 and:0.03454727922177397 by:0.03454005084584682 Mrs.:0.03146572696833892 Mr.:0.025457965459207168 said:0.013868557438005684 .:0.011815178768305833 the:0.007766061857014309 between:0.007120622532794572 Dr.:0.006473774429971865 John:0.0060171945956205945 for:0.005958334763414111 with:0.005582549709661172 in:0.005568424188490308 from:0.005291531060112709 Mrs:0.0047228257960241085 :0.20069764095214443 +it:0.09225517569870188 and:0.07911113815409918 which:0.0763004487988545 they:0.0669977201464583 that:0.055120249889048456 he:0.05383769039506518 It:0.051067704451752884 you:0.05088805767861025 who:0.04150242846532207 I:0.036515629814639225 we:0.02958166934003888 as:0.011286697263136749 she:0.010179677687531087 They:0.01010041096467882 He:0.009658895493583087 the:0.009641520196952656 this:0.009541058083331784 This:0.009535724888908604 We:0.008280215866016755 :0.28759788672326964 +of:0.10404577835601155 in:0.06812172764569767 on:0.03492441961075192 and:0.027851044928701937 to:0.025972957791602535 for:0.024080296742592888 with:0.023820110833252858 from:0.02367529057290366 upon:0.022038028645326682 by:0.017431353596050372 that:0.01591893464620825 In:0.014252906875372675 law:0.008652800391362604 things:0.007927458404720731 bill:0.007424302780814004 through:0.007054385435770904 tion:0.006995643893497673 ,:0.006829459039241466 after:0.006661730472202692 :0.545321369337917 +thence:0.6456232151015348 the:0.06277941406502291 and:0.04073271219413722 his:0.014070184777135189 of:0.011926011914501423 in:0.00993821056122388 my:0.009927908940332138 I:0.007912943614721125 their:0.007772087914633555 her:0.007193098347884136 by:0.007080809215146647 to:0.006475023204367382 at:0.005285818178271261 a:0.005083237150580605 came:0.004806281006125944 tho:0.004735396134318119 was:0.004665941565466604 thenco:0.004426189540461354 that:0.004357439135456734 :0.13420807743867896 +of:0.10431867523139557 to:0.10359543321360802 make:0.06000816276487085 for:0.04346202213854753 in:0.03204632236393711 upon:0.030041708109695506 have:0.029854844126551906 with:0.02806785773245295 give:0.026876462789775398 found:0.025769682084566366 finds:0.024357408866230668 expressed:0.02416934246207298 and:0.02415604342707205 on:0.021816563970888762 had:0.021659269201285056 made:0.02098205663567213 proved:0.020283831439606624 get:0.01979785811811758 take:0.01718381810616349 :0.32055263721748944 +the:0.1449641844563986 of:0.08710595808597107 and:0.060639991043772136 a:0.038971050768985306 to:0.035497607287402144 his:0.022269846080904755 be:0.02150484315278025 my:0.020367185734705945 I:0.01891633058414471 in:0.01859493769918256 for:0.017350580101599025 was:0.01676359899750709 is:0.015084084537449449 their:0.013269247511876204 at:0.012718929570411921 that:0.01170468572340591 or:0.011400632554895979 it:0.011330438956791117 :0.01130401752938815 :0.4092418496224277 +of:0.10137199865063444 is:0.08876916196198903 as:0.07400756507847682 was:0.06234821931937598 such:0.061127885185965736 and:0.05264143458562034 with:0.052043185883737346 in:0.050396723113207885 to:0.050321577405463495 for:0.04652058034227564 on:0.03788631638306733 be:0.03314508715132099 that:0.027385405777097183 at:0.025327490446189732 made:0.01932521198921371 by:0.017865349213073884 make:0.016677870692513683 have:0.01612587483987073 from:0.015462786893028255 :0.1502502750878778 +one:0.1028303141280697 part:0.05963429477052991 out:0.04766456937681193 some:0.031418679026461914 members:0.030764490253327767 side:0.029940657362655835 portion:0.022063658796890564 office:0.020457735219956013 member:0.019726706386316174 end:0.019666887540649894 tion:0.018667441728710307 parts:0.016814747270460957 people:0.014112771422418794 all:0.014072739582212475 any:0.013183573287639892 One:0.013083578354183906 that:0.013024335602903442 account:0.012482348155001894 many:0.012077825070275192 :0.48731264666452345 +will:0.2408680645323919 should:0.1164535198019319 would:0.0938365012167813 may:0.09084286716038964 can:0.07586918724311109 shall:0.06980278877470232 could:0.058437905247405046 must:0.03326677012460849 they:0.02143056457351877 have:0.017748274022652024 it:0.016550107735401838 has:0.016224851255475483 might:0.016064541018864592 that:0.015875785631124368 had:0.01581985865493418 and:0.015686167673358536 there:0.01565323887832117 I:0.012940946411948205 than:0.011291862428320433 :0.044336197614758675 +and:0.10830161378594737 not:0.059554068429201 is:0.049014197208943906 that:0.04571304017251051 was:0.045675552950200725 of:0.04342799518535369 it:0.03583667371252478 the:0.033032335510324626 be:0.03246361286995493 difference:0.031522695932375264 are:0.02865801089469987 just:0.02672638854269848 had:0.025636540028507463 day:0.02540494432064891 have:0.023755179278522436 but:0.02295752763582216 which:0.020843073259936565 by:0.02079328852321448 as:0.020287048326814376 :0.29939621343179845 +one:0.1028303141280697 part:0.05963429477052991 out:0.04766456937681193 some:0.031418679026461914 members:0.030764490253327767 side:0.029940657362655835 portion:0.022063658796890564 office:0.020457735219956013 member:0.019726706386316174 end:0.019666887540649894 tion:0.018667441728710307 parts:0.016814747270460957 people:0.014112771422418794 all:0.014072739582212475 any:0.013183573287639892 One:0.013083578354183906 that:0.013024335602903442 account:0.012482348155001894 many:0.012077825070275192 :0.48731264666452345 +the:0.42832863193107246 a:0.13629633349411457 this:0.06030691815454599 of:0.034584284922634524 tho:0.02398906809497524 his:0.023856568225694628 said:0.022457664218115417 The:0.01843558158409842 and:0.018352869636052392 commerce:0.014980962500847555 our:0.010792648431626414 tbe:0.009504295697535636 one:0.009444385964736105 on:0.009097351130368738 A:0.009049831721719383 such:0.00880685763132586 her:0.008178056612566691 same:0.007942633654974359 to:0.007503119350840338 :0.13709193704215528 +and:0.19953533076199725 than:0.06164897071433523 of:0.05328824456363404 is:0.03838571673596855 to:0.03473172369907627 all:0.030073155861966964 know:0.026484110428150444 in:0.025996751670186558 fact:0.019745544874144115 as:0.019708564000863543 so:0.017957408340977327 like:0.01722882271218147 or:0.01690696312005383 with:0.016896484337175617 say:0.016491590371136806 but:0.016163142444518153 by:0.014491668507432965 was:0.014116879746413942 from:0.014046606297490468 :0.34510232081229647 +the:0.4812613586346316 a:0.07798768854269052 of:0.06084476450134288 The:0.05989765634067511 and:0.031055897103208097 to:0.029494899240037044 other:0.0268236020246757 tho:0.02411265952347924 this:0.021559395341009847 in:0.01970440110647189 that:0.018946166676250424 or:0.016913222889088073 these:0.011186092884910898 first:0.010620879535703464 every:0.009362271491476852 by:0.009322392740839373 any:0.008906651175689713 which:0.008700769781257101 tbe:0.007674390092875794 :0.06462484037368636 +made:0.07612731290511988 and:0.06749271744919065 secured:0.027594532289943387 him:0.025436877183820397 taken:0.025360195074475542 followed:0.02475649962084736 or:0.023799920559899747 was:0.023314794396599937 that:0.02307978885304392 ed:0.022861905048944604 accompanied:0.022449263851969173 given:0.020255569226716917 owned:0.01801828711801664 up:0.01735206342420753 it:0.01689837753846072 them:0.01679051555824662 done:0.016472530276060018 held:0.015014502722579919 caused:0.014041656860295432 :0.5018826900415616 +W.:0.09137529405952428 J.:0.0816975707601157 .:0.06194371772597373 John:0.06066488060213631 A.:0.060606899793799324 C.:0.05111458991660886 M.:0.03763128461374898 H.:0.03697257951079904 E.:0.035160436879781674 S.:0.030228582738842373 D.:0.029871909245580208 Mrs.:0.02954685786587418 and:0.027720768079469795 R.:0.02491277938122807 George:0.022926656341765293 F.:0.02212426714118989 Mr.:0.02024174120611659 of:0.020229738440826962 William:0.019328472934145066 :0.23470097276247365 +and:0.1417157418003202 so:0.06755684882674218 fact:0.05707173571703629 said:0.04486723127003565 know:0.04457473274659093 say:0.04048471673355019 is:0.029279944568814904 but:0.02438556998593403 believe:0.02348236877231084 stated:0.019305661733568756 all:0.019217712097723813 me:0.019031297091898075 him:0.0175758659888339 order:0.014998765855170048 see:0.01489256018742656 feel:0.014720541888046773 think:0.014424977241856658 was:0.01431732896568077 says:0.013992258106505139 :0.3631041404219543 +be:0.17988610939189564 was:0.15388833830330978 is:0.15280141663824448 are:0.13634222019457515 been:0.07647723642625674 were:0.06743605206466688 am:0.02307672711980255 have:0.02244766677772485 Is:0.021980968571530916 has:0.018932057996409908 not:0.017986692372508124 being:0.017386596399595777 had:0.01527844090061673 bo:0.014009430042775405 and:0.012348493934170621 he:0.009035990010704618 so:0.008658598089669437 who:0.006150915424870569 arc:0.004839868870834348 :0.0400361804698375 +north,:0.32821970653555366 of:0.12408602505416774 south,:0.08862825722579536 and:0.04223924610735124 the:0.04036528315868126 a:0.023813878500256316 per:0.012307453340384251 to:0.010439233720100251 No.:0.010167742957184702 for:0.009759222569553378 north:0.009181901408537228 township:0.008446225900554539 from:0.008101701741116175 at:0.008080451894057964 3,:0.007275566304072242 his:0.007035779836975249 degrees:0.006143520245507116 5,:0.006022086053754719 one:0.0058451392605371275 :0.2428415781858595 +of:0.09129790931378902 the:0.07369883040827747 and:0.047842263382354346 in:0.04189055351593407 to:0.04045875475680249 a:0.03542341257202578 be:0.02020462051672066 for:0.01979292654746225 was:0.01760256398103379 at:0.017380150555488715 is:0.014984483003968216 with:0.014047653760730413 by:0.01374644383819499 :0.012670486581795598 In:0.01200961464556976 or:0.011563835749786333 from:0.011391516893522809 are:0.011273104484969465 that:0.010755276030689069 :0.4809655994608848 +the:0.2276415160069224 and:0.12468246338466503 of:0.07311535475807107 lode:0.06158307730641998 mining:0.03988575762792765 adjoining:0.027438101763299524 a:0.023917083365369865 lot:0.021534956387256204 or:0.018888521771590623 his:0.018836550756092835 The:0.018618404690723574 their:0.018567964988665992 said:0.017541043060709607 for:0.016681394174755688 township:0.01599524273435616 city:0.015286714654992789 he:0.014752379905828707 tho:0.0107947957971814 had:0.010267453862450222 :0.22297122300272065 +of:0.09129790931378902 the:0.07369883040827747 and:0.047842263382354346 in:0.04189055351593407 to:0.04045875475680249 a:0.03542341257202578 be:0.02020462051672066 for:0.01979292654746225 was:0.01760256398103379 at:0.017380150555488715 is:0.014984483003968216 with:0.014047653760730413 by:0.01374644383819499 :0.012670486581795598 In:0.01200961464556976 or:0.011563835749786333 from:0.011391516893522809 are:0.011273104484969465 that:0.010755276030689069 :0.4809655994608848 +of:0.13799619249065867 and:0.11883064531158104 to:0.062226457017048147 is:0.05293196053706902 with:0.04994748953914694 in:0.044662809735252995 for:0.03900712016990596 was:0.038284881648753225 that:0.03668617971811331 at:0.03377253930836139 by:0.030133232354949874 it:0.022189726579692953 are:0.01965988969925253 from:0.01827713227237573 but:0.017562905779422624 nearly:0.016493111787246474 on:0.013866210344953275 do:0.012472792395505203 were:0.012203849484987293 :0.22179487382572335 +and:0.14212274645892597 as:0.11093174088228454 so:0.0833189065547599 in:0.08304225802696437 of:0.045450171124176535 the:0.04285572062809076 that:0.04116405181662131 for:0.04080396356561084 In:0.033574404431721445 how:0.03327058091371714 are:0.03242774850178854 by:0.02923294756630944 with:0.02816122369706445 great:0.027606102492319554 too:0.023668093661695234 but:0.016558215624937804 good:0.016241342192208876 How:0.014923670769047803 than:0.01451801352050842 :0.13912809757124706 +to:0.2855461776334979 will:0.15687955707954834 would:0.09516688201556493 not:0.08156787220587816 may:0.0554234460511164 should:0.054900480591974075 can:0.04196621775149515 shall:0.04180985654992359 must:0.034746417521852 could:0.02552028580048492 cannot:0.019762574393862455 might:0.013274841283852637 it:0.008603928633616038 and:0.008073717697836668 never:0.007256734191000151 also:0.0038550497408851676 soon:0.0038453617444142536 that:0.0037245435324142016 which:0.0032804458407411654 :0.0537956097400418 +the:0.18872290321856772 and:0.07990884171328741 of:0.07134501066066128 The:0.043246894817858254 these:0.022760575981405146 that:0.02263940423567282 in:0.01853667557064991 to:0.01558712617289525 a:0.014599616906527581 his:0.014552935584560694 These:0.013550115619968908 which:0.0131780081149281 their:0.01277887611983455 tho:0.011643762153399977 :0.011409164010629988 as:0.011296526840701347 con-:0.011221217959193217 -:0.010832723607073007 for:0.010425522418632843 :0.40076409829355203 +the:0.5548132789114747 The:0.08834697520231251 a:0.04816889308135325 this:0.04490050495286772 tho:0.03146336097036501 and:0.022524573539508572 of:0.022194678701819456 A:0.015293718034416362 that:0.013569637878588234 tbe:0.01232804316809583 last:0.011994914544758697 for:0.010360122668485365 our:0.010047304434940191 steel:0.009165347232582178 next:0.008786896299811792 his:0.006983981660955187 This:0.00633746803930663 said:0.0054832409141423195 their:0.0052121593353867905 :0.07102490042882921 +of:0.2363460953012322 in:0.1312561309369335 and:0.071857577222654 to:0.06964041985601513 with:0.05634642791957651 for:0.052123862228656066 by:0.03709245470771219 all:0.036888120189764284 from:0.03368195824647899 on:0.0312942936394529 at:0.02772015612120838 In:0.018595624238642226 that:0.01661143134815104 upon:0.014529454946839522 as:0.010527822265558807 within:0.010065272762893757 through:0.007584197962800866 but:0.006891160458981784 after:0.006609930051429546 :0.12333760959501827 +of:0.10811762025936666 as:0.10725916454732734 is:0.09459182117576549 with:0.07686730354176283 in:0.05386200009048428 by:0.0484321654186303 to:0.047770620647250954 for:0.04537600977996405 was:0.0362260948153311 and:0.03554598417514301 such:0.034134163975270276 at:0.027984235589499657 on:0.02634828193068368 make:0.02626779735847909 be:0.025748680218225226 that:0.020350977442632253 have:0.019792787081478445 made:0.019199202923387438 from:0.018627182103366547 :0.1264979069259514 +and:0.13908679942270383 was:0.06125665872998403 is:0.03890199060008742 are:0.03697053819753934 that:0.025851961826961877 arrived:0.02164262016553893 were:0.020839870168927608 of:0.020397349856725165 w:0.015857645288624954 but:0.015576734235332554 be:0.013973797882248958 as:0.01351773888530833 to:0.013451689991119493 had:0.013267766699873064 not:0.01236650531485786 brought:0.011311821540982063 came:0.010761084278790602 it:0.010744215822764976 have:0.01050955885806416 :0.4927136522335648 +to:0.2571789648772664 the:0.14475334225534622 a:0.12613570753034703 and:0.05328438706409226 not:0.04033915601698669 of:0.026306444507611448 in:0.021076682965581007 that:0.02001148396528099 with:0.019879527077956507 this:0.019044493937955403 they:0.01834435535683552 be:0.018307374944516487 will:0.017529892979442015 you:0.016420538868982492 would:0.01583808192746609 so:0.015759945866510923 is:0.013485446602000612 I:0.012636827613763436 we:0.011989729540005606 :0.13067761610205283 +of:0.08422621706524731 the:0.07455811936744233 to:0.060286788792881595 a:0.03993266348519939 and:0.03077651211640412 by:0.027850029629067154 was:0.026051611244633437 in:0.025924066185358034 on:0.020887560253977595 be:0.019977543803307306 for:0.01705717968783808 at:0.01641273449918107 from:0.015002107931224017 that:0.013927291499349752 is:0.013833326666809998 feet:0.012184600309039742 :0.010190323206301517 were:0.009784812766750894 or:0.008573884855544058 :0.4715626266344426 +to:0.30745666219403195 will:0.18329126191795925 may:0.08005687889316115 shall:0.07023981069581714 should:0.05891078697818311 must:0.05129136517097245 would:0.048160805605954704 not:0.04378845869615101 can:0.03953775501468762 could:0.02523487161609716 cannot:0.01738242960066585 might:0.012609022461632924 and:0.0049291748209652955 it:0.0043105026442795125 that:0.003978553204012066 never:0.00267146413286135 also:0.0024445685919652314 only:0.002309630111780723 soon:0.0022827395048831073 :0.038113258143938414 +it:0.20661626833118804 It:0.13133310388077965 which:0.05346195225056892 he:0.04322413433168328 and:0.0399221355018402 that:0.03638459118631527 there:0.02656324547693805 who:0.022588363007738477 This:0.01601752777676921 He:0.015090910728543903 what:0.013686208311658789 she:0.01181234484166701 this:0.011752239301455133 There:0.009749183368011116 man:0.007759333367156636 as:0.007068481254995637 work:0.006691860301109499 country:0.006039779831696346 but:0.005362639996269743 :0.32787569695361507 +of:0.28767355066866834 to:0.08775711267569858 in:0.08678131196995101 and:0.05160598694501188 on:0.04646139928102899 by:0.04519522654900943 for:0.044547789071328545 with:0.03396756772609607 that:0.033699232901107726 from:0.03075346596941143 at:0.027039283056790858 In:0.021061449543044047 as:0.017514234937992545 all:0.012543839382496166 upon:0.011844431150487573 is:0.00998972746569266 was:0.008814315973987914 into:0.008557199930727406 through:0.007781895704231326 :0.1254109790972375 +the:0.11919516938815296 of:0.07230453158552728 and:0.05781056740443249 a:0.043018564803886335 to:0.031305092790907506 in:0.020848713353460488 at:0.014270110001066288 .:0.012526810245749479 :0.012413283442322082 for:0.011719122709941797 by:0.010808400946589808 or:0.010404172990115616 The:0.01003576004804544 with:0.009811868184449042 tho:0.009295902015355835 was:0.008924239095331684 that:0.008672304223433876 is:0.0085591147338948 be:0.008335143826716943 :0.5187411282106204 +is:0.18083672703916373 was:0.11505741860497824 and:0.10492943879523599 be:0.07605221588327955 had:0.05877027631788627 have:0.0556593636535614 that:0.03989804688975635 has:0.033059849568591086 are:0.0306324924621939 Is:0.029075582849041437 were:0.024664553707744667 but:0.024098500762130392 with:0.024053492649869352 of:0.021932847266903376 by:0.01962385666763031 to:0.017975546983501945 been:0.016522534043082945 not:0.014792600024771565 for:0.012735687472244753 :0.09862896835843278 +in:0.6057441816491448 In:0.14774015100132998 of:0.07352753471661753 to:0.031325192319827076 on:0.027870555843218493 from:0.014130659145644648 into:0.011104574679528844 for:0.010128296939121303 with:0.0077717256829547615 iu:0.007382624451560227 by:0.007279318817459633 and:0.006682021903159466 through:0.0063615866217165305 at:0.0062732643541190385 that:0.005208426958201093 throughout:0.005174804650821715 under:0.004624241237662293 upon:0.0036908494190927587 over:0.003308189329692325 :0.013671800279127587 +and:0.1417157418003202 so:0.06755684882674218 fact:0.05707173571703629 said:0.04486723127003565 know:0.04457473274659093 say:0.04048471673355019 is:0.029279944568814904 but:0.02438556998593403 believe:0.02348236877231084 stated:0.019305661733568756 all:0.019217712097723813 me:0.019031297091898075 him:0.0175758659888339 order:0.014998765855170048 see:0.01489256018742656 feel:0.014720541888046773 think:0.014424977241856658 was:0.01431732896568077 says:0.013992258106505139 :0.3631041404219543 +have:0.1023021162987436 had:0.08920380158616015 be:0.08339848138170025 he:0.08238719093142605 and:0.07856937389280941 I:0.05874478491466758 has:0.05699730451523721 was:0.056666041162099515 they:0.0376779471399494 is:0.030149681712107003 we:0.027332484310135803 been:0.024351622342221126 never:0.02242130806816953 were:0.02000363612472953 are:0.017626152876608923 she:0.014813965434461921 it:0.01325693004061771 1:0.01298053175950682 not:0.01109971909489263 :0.15901692641375584 +the:0.4071374189315913 and:0.06449181461132415 of:0.02892866618288876 in:0.028670005984162618 The:0.02603617389223924 tho:0.024993820467459137 a:0.023579040051412606 to:0.01755553213771617 on:0.014626070241060114 by:0.013447843485786471 or:0.012794166593089693 tbe:0.012024509152999897 :0.010353482361299817 that:0.009291482237329618 In:0.007938246807075932 from:0.007526799010378873 other:0.007469196869028889 all:0.006409533041696086 for:0.00626887758057738 :0.26945732036088327 +sum:0.03352282876311118 number:0.028116684882597106 line:0.019995206059833036 city:0.01946514558931857 out:0.019275318828420953 day:0.01666865340772654 county:0.014872697538657208 amount:0.013254184849875051 Board:0.01252325449624941 town:0.012449555905674143 side:0.011663975251122375 part:0.011517157473718155 County:0.011460540331966697 state:0.011087331502382173 City:0.010878919191854432 purpose:0.01081028255427907 and:0.010297866493795984 way:0.009848747943663767 name:0.009522170936943183 :0.711769477998811 +and:0.4096241735694733 is:0.06860797293980885 are:0.05628381484731741 that:0.04321836867108656 was:0.038982687259918235 or:0.031177628932232065 but:0.03048495796532219 of:0.02102453481782216 not:0.0206128452013122 were:0.01947618590892447 to:0.01871656541344704 be:0.01742905196152315 But:0.01058875637807764 as:0.010260784775171288 which:0.009922245506576437 if:0.009671259055477697 when:0.008993249626961415 for:0.008822120771425647 have:0.008185642122698615 :0.1569171542754237 +the:0.11919516938815296 of:0.07230453158552728 and:0.05781056740443249 a:0.043018564803886335 to:0.031305092790907506 in:0.020848713353460488 at:0.014270110001066288 .:0.012526810245749479 :0.012413283442322082 for:0.011719122709941797 by:0.010808400946589808 or:0.010404172990115616 The:0.01003576004804544 with:0.009811868184449042 tho:0.009295902015355835 was:0.008924239095331684 that:0.008672304223433876 is:0.0085591147338948 be:0.008335143826716943 :0.5187411282106204 +and:0.08952307840244308 to:0.06361716496541442 in:0.039693217386609254 the:0.03897804143111933 of:0.03511726134423916 that:0.024123922275723412 not:0.023898606090794985 for:0.022657531457723243 I:0.01935055655627128 which:0.019076155425379746 or:0.017050923206013355 have:0.01564436923128384 in-:0.015324785919123955 re-:0.015206557420749943 :0.01481725702077034 In:0.014759641681405028 will:0.012255546741123027 you:0.012198419436505311 who:0.011910494824925679 :0.49379646918238157 +the:0.11024655748973393 of:0.09016504197418349 and:0.07995174218480734 to:0.06819849971648807 be:0.03795043427981227 was:0.030707300135940384 his:0.02503906172259371 is:0.02282899877637719 will:0.02115778092484464 a:0.020905835550332784 in:0.02043561412733877 not:0.020367985601767533 their:0.020142478244427893 for:0.019983841082847315 are:0.017974783417752178 were:0.01759953439222608 been:0.01746151189601767 at:0.016351609512648215 or:0.014378942619990679 :0.32715244634986984 +that:0.12877368706521958 and:0.10343811039022899 which:0.0800594611337696 when:0.0599498536653849 as:0.05365331218935483 to:0.05164919583107528 if:0.0270497931800979 will:0.026888923864509424 but:0.025383516994720454 where:0.02293792694881519 what:0.0207777038096785 t:0.019343962651763098 said:0.01729463067489876 would:0.015552874955014286 for:0.015152722422811573 whom:0.014651225618177431 before:0.011897529933941699 not:0.011235367786820124 If:0.010599156710423857 :0.2827110441732945 +of:0.1863764832014716 the:0.10661601640513267 and:0.09733556200444818 in:0.09160815639832086 with:0.04700728769220051 that:0.04245227965970879 by:0.03648375229211728 In:0.03070368608861362 to:0.030553875018303655 for:0.027869005043003943 as:0.025698091806852393 a:0.01365852543664451 from:0.013401846981355534 or:0.01277033782808649 such:0.010976651496275793 on:0.010914489210317718 his:0.010606502102875406 The:0.0096279221935388 is:0.00941586181550928 :0.18492366732522297 +was:0.11869638923720464 is:0.08574216985862529 and:0.08549172521479682 are:0.08366776450942913 not:0.06811578892589085 been:0.044525898309209215 were:0.041733973541177735 be:0.03882532735550471 do:0.02960497963625329 or:0.022352098705025497 in:0.019846469264542536 of:0.0194577826779518 have:0.018347738512047754 had:0.015799751875753987 has:0.01567465159217062 to:0.015477357390045987 being:0.014724383087482631 with:0.012912981335750048 Is:0.01138593439216075 :0.2366168345789767 +the:0.17027190784407714 of:0.10585557835912704 and:0.07355927771906935 to:0.05486905984958157 a:0.04543746377447453 in:0.03128555052933153 be:0.028704485173100775 was:0.02350529800142253 is:0.02215549335554494 for:0.02077556258358175 his:0.01804639098945333 or:0.016335100594594944 their:0.015847999621030492 at:0.015526727957625254 been:0.011815834631173878 are:0.01139058447814694 this:0.010362020528084328 tho:0.01035635773045807 its:0.01000473355720393 :0.30289457272291764 +to:0.22017719163417931 will:0.19399643820403115 may:0.08922296693519306 would:0.08180188403090392 should:0.07307636499361336 not:0.06519687882402675 can:0.05351355729798756 shall:0.04669198415942357 could:0.03657653854133567 must:0.03527535985338017 cannot:0.023095285375572518 might:0.016607883287796086 it:0.00776483713798912 and:0.007128035242772743 never:0.004380318885311976 that:0.0030708622707665383 also:0.002663095109176538 which:0.0024090467157229204 only:0.0023655130926336287 :0.03398595840818341 +that:0.21316027606046106 and:0.11551342955168128 if:0.0699923536273525 but:0.055347395246919326 as:0.052487822292241346 which:0.03908431330747219 of:0.031216122470511677 when:0.029218537433764624 If:0.027741762454334844 for:0.02141995101756106 where:0.02062072874969186 because:0.01847530112864602 whether:0.015651676868044022 though:0.015105876749606643 But:0.013009320162355375 until:0.009770304883609906 what:0.009489402696531176 while:0.00948157340770111 think:0.009154509062389933 :0.22305934282912407 +A.:0.09599669479223369 P.:0.07447549035372603 .:0.04429051736384894 and:0.04155897237621287 J.:0.03543598283416546 the:0.03326659281868535 of:0.02521508706772917 John:0.024675639330116766 W.:0.02305329764061549 Mrs.:0.02289668041094929 H.:0.021938865310161412 by:0.020549844933358312 C.:0.018844092466661 M.:0.018407638257156866 L.:0.018077466244041725 Mr.:0.0177385891276459 E.:0.016364026950576274 in:0.015297228069622628 T.:0.013755848484237948 :0.4171614451682549 +of:0.09129790931378902 the:0.07369883040827747 and:0.047842263382354346 in:0.04189055351593407 to:0.04045875475680249 a:0.03542341257202578 be:0.02020462051672066 for:0.01979292654746225 was:0.01760256398103379 at:0.017380150555488715 is:0.014984483003968216 with:0.014047653760730413 by:0.01374644383819499 :0.012670486581795598 In:0.01200961464556976 or:0.011563835749786333 from:0.011391516893522809 are:0.011273104484969465 that:0.010755276030689069 :0.4809655994608848 +of:0.09129790931378902 the:0.07369883040827747 and:0.047842263382354346 in:0.04189055351593407 to:0.04045875475680249 a:0.03542341257202578 be:0.02020462051672066 for:0.01979292654746225 was:0.01760256398103379 at:0.017380150555488715 is:0.014984483003968216 with:0.014047653760730413 by:0.01374644383819499 :0.012670486581795598 In:0.01200961464556976 or:0.011563835749786333 from:0.011391516893522809 are:0.011273104484969465 that:0.010755276030689069 :0.4809655994608848 +the:0.4245208721682231 of:0.09716441505623814 a:0.09359994368219698 and:0.042912078018119804 in:0.03391069670276621 his:0.028909690327378636 to:0.025562691165646086 tho:0.02056608085458522 The:0.01899279846116808 on:0.018751503213319764 this:0.015542466355980954 by:0.012734193614841505 so:0.012471415054946372 their:0.012192129091848922 no:0.010858021662692447 from:0.010378233748831862 In:0.010376075680889663 for:0.010223930437720241 such:0.009777798937669321 :0.08955496576493671 +a:0.38566235418201666 the:0.3204634411649656 this:0.05300046933282045 of:0.04284297731812969 The:0.022013276259031468 tho:0.019755941532234682 our:0.015213167711434272 his:0.014127702364126707 its:0.012344216581555089 in:0.012331799844720277 that:0.012190737757438366 any:0.009133189776993995 their:0.008917686040805475 and:0.0073432786213197074 some:0.007252713637321439 A:0.0071175112416579575 with:0.006918819152297163 no:0.0066071636916976255 tbe:0.006122124313155925 :0.029641429476277417 +amount:0.04716463574950479 number:0.045757987592384475 line:0.032492326658621014 sale:0.02716942617762581 board:0.02705684397529676 out:0.02444496423001787 sum:0.020245864418809722 purpose:0.019842338796381594 day:0.019709096012059207 and:0.018174073499653037 rate:0.01489886723017783 tion:0.01474148391008555 instead:0.014709331591565589 one:0.014667573899372191 part:0.014595884221887049 state:0.01445515120959975 order:0.014325551419709452 means:0.014249568338295444 be:0.013787670654938166 :0.5865113604140147 +and:0.03341230128401967 is:0.027086782544852674 according:0.02673905923575515 feet:0.02504765778605404 him:0.020789365132921286 down:0.01800801335888275 them:0.01753492487910471 was:0.01733162536089078 up:0.016112180227827136 given:0.015579536398432372 as:0.014495673478488322 it:0.013505231859754196 said:0.012789685290788376 made:0.012160214749705701 right:0.011649628637429382 brought:0.010595747765582678 not:0.010492873388752027 so:0.010263666312138636 out:0.010239532421925731 :0.6751662998866943 +and:0.1562346598754038 of:0.142524234809053 the:0.096957071132283 are:0.06735998535360505 not:0.04660795303887583 to:0.04584370922786733 was:0.04369101587866768 in:0.041380150907834326 were:0.03839987011886855 a:0.029637880779029343 is:0.02816115672745289 be:0.027558438623804703 an:0.024795230696050306 by:0.01989016877589912 been:0.019636109976423045 or:0.018990573137573765 for:0.014844425435348935 most:0.014002593595701019 I:0.013606111726319509 :0.10887866018393881 +of:0.28767355066866834 to:0.08775711267569858 in:0.08678131196995101 and:0.05160598694501188 on:0.04646139928102899 by:0.04519522654900943 for:0.044547789071328545 with:0.03396756772609607 that:0.033699232901107726 from:0.03075346596941143 at:0.027039283056790858 In:0.021061449543044047 as:0.017514234937992545 all:0.012543839382496166 upon:0.011844431150487573 is:0.00998972746569266 was:0.008814315973987914 into:0.008557199930727406 through:0.007781895704231326 :0.1254109790972375 +a:0.14300015961801332 no:0.12447800389098006 any:0.07720576251422556 and:0.05511357332180365 the:0.05403129503540164 of:0.05349937130474996 some:0.033333430443078335 very:0.03181986124805687 much:0.029461557596586262 is:0.029386076517640948 that:0.027364509321443662 as:0.025465801983197003 not:0.02240039313514773 so:0.021972556852230495 by:0.018907677922714913 this:0.018821919747746853 was:0.017730656849550618 be:0.01586931707675639 same:0.015488415512191664 :0.18364966010848408 +of:0.09129790931378902 the:0.07369883040827747 and:0.047842263382354346 in:0.04189055351593407 to:0.04045875475680249 a:0.03542341257202578 be:0.02020462051672066 for:0.01979292654746225 was:0.01760256398103379 at:0.017380150555488715 is:0.014984483003968216 with:0.014047653760730413 by:0.01374644383819499 :0.012670486581795598 In:0.01200961464556976 or:0.011563835749786333 from:0.011391516893522809 are:0.011273104484969465 that:0.010755276030689069 :0.4809655994608848 +of:0.27637652740764634 in:0.1714533089722269 to:0.0964581143889383 In:0.043589367411943206 that:0.03998601394307984 by:0.03887091649791953 and:0.037594193737509246 for:0.03522908564204875 on:0.03367240847012067 from:0.032271021681115564 with:0.025882718676487625 into:0.017391660570072527 at:0.01672448342006775 upon:0.011564936071488974 as:0.01027851928652139 when:0.009929979651260629 up:0.008710586196689811 over:0.007977052884984182 all:0.007887238029263758 :0.077151867060615 +the:0.22042566768436045 a:0.10692794759652334 of:0.0473480849946708 The:0.03376367367721586 and:0.03319749240059684 to:0.027268090456631484 that:0.021612969535732156 in:0.019628413275959745 tho:0.014246248088846381 an:0.013215398078069937 one:0.01011162059504713 A:0.009781125378642579 from:0.009771884900120827 as:0.009118428804191349 :0.00907502606114304 on:0.008729527569869699 by:0.008566008223522503 be-:0.008075976260849708 tbe:0.006851960047885982 :0.38128445637012015 +of:0.10036425554061128 and:0.09867255827094257 in:0.04887477001133228 to:0.04309676529803197 fact:0.03312124920228808 said:0.028016465130273754 on:0.025147031828386315 all:0.020897671259005178 is:0.018989333611116044 so:0.018899457882617265 from:0.018463519784011995 for:0.017651195592365977 at:0.016946018612698295 know:0.015554635744109193 believe:0.015397314140675087 say:0.014489633297242495 with:0.013970217188878864 by:0.012605124887586036 In:0.011949884106238937 :0.4258928986115884 +of:0.17009573144550263 to:0.08206844915440967 or:0.0786621507021922 by:0.06770984585477278 at:0.06480165066113977 for:0.04559039048304787 in:0.04508261162019424 that:0.04134108367528708 with:0.03889435704049209 without:0.03582288766586227 from:0.03579733330533316 if:0.033786241891112054 than:0.03230009795776766 as:0.02906310945189675 make:0.02845535153298898 under:0.02208326047217252 and:0.02196666747147437 have:0.02089337940611559 If:0.018793943948436753 :0.08579145625980157 +and:0.09369158818857476 is:0.03749333056196542 it:0.033189717247231555 was:0.032808236118197526 but:0.018934425760693815 up:0.018331699351434264 them:0.01740800550981538 him:0.017075121522467082 result:0.01692655246915905 found:0.014574056494316702 made:0.014393755687207063 as:0.014015853498116135 now:0.014001865074643053 be:0.013950298254796767 that:0.013112471536110875 are:0.012694109255942358 not:0.012209533275621166 only:0.011193115277839692 all:0.0108506732597631 :0.5821455916561042 +of:0.12197199919988055 the:0.12086338523779606 or:0.11814177102496992 a:0.08276284853795074 and:0.08266254060465365 much:0.0480892392385342 no:0.03526551062553001 with:0.03154009697222402 is:0.029006227972063436 for:0.02741235283014084 are:0.026625202635886483 any:0.025337876922470116 many:0.02029413067303006 far:0.018496571600830545 have:0.017452758862590755 that:0.016994021642667778 still:0.01586861024321941 be:0.015698855885526573 some:0.013616749542889502 :0.13089924974714534 +the:0.6406933567586276 of:0.049342954135955165 a:0.038454039188899176 tho:0.025410358193840712 in:0.022186090790648358 The:0.019862068553879723 from:0.01697206122293099 no:0.01635407621038084 their:0.013640711876728225 and:0.013283382000354062 tbe:0.009165656002856038 by:0.008425048105705088 for:0.008410004353150372 our:0.007700666386087133 this:0.0070186208368262365 said:0.006830575676457978 any:0.006219769048931035 its:0.005983658982712744 with:0.00582701241610536 :0.07721988925892317 +and:0.12303732559166128 of:0.084226723732382 was:0.07891013694465555 at:0.07045470377148547 are:0.06008227534041713 were:0.04797266688351448 have:0.042941554630535526 that:0.041493963181443896 to:0.03998204952404194 is:0.03741940760656681 had:0.031098701172468112 in:0.027414212234473212 be:0.025487860432789684 with:0.022780425839028617 has:0.021393239230673527 from:0.016218767445348194 for:0.015252283545221897 when:0.015141705769917885 by:0.01444823337214694 :0.18324376375122783 +:0.05626446293839262 bank.:0.026835707535648064 to:0.01623062210872795 and:0.012978484773698808 ex-:0.011430044927310567 .:0.009814105212492683 it.:0.008339180846073494 him.:0.008019792047362466 said:0.007341506737524028 them.:0.007016670460035473 that:0.006359697623922821 me.:0.00549942320091806 ex:0.005484393915771253 :0.004538326948629042 ::0.0044871440330044084 al-:0.00393946742336893 ;:0.003909487177446841 on:0.0038573145265820134 recog-:0.0034609636007970276 :0.7931932039622934 +as:0.060857136319576344 up:0.054737892704652256 and:0.04445313741424363 back:0.029448150390291906 down:0.025899914827033334 went:0.02554096426246566 came:0.022769173233221078 according:0.0225438798889887 regard:0.022297325399916895 feet:0.02107326719988104 go:0.02025051116908718 due:0.01936414394046143 come:0.01733440441681411 given:0.017164582147378475 sent:0.01641667769780703 prior:0.015130812905941924 addition:0.013475540765457693 it:0.013262535189871026 known:0.012800566139125615 :0.5241793839877847 +a:0.3061932730999028 the:0.27991759168892383 of:0.09584947410312494 very:0.040228610286340165 The:0.03205738930588156 our:0.02004610739261987 in:0.01989297124188759 his:0.019501501492141037 their:0.01802856734904342 and:0.017339032048461434 tho:0.01658797816534858 no:0.015137788178363231 this:0.013681121988880116 with:0.012977081330002608 to:0.011587407115635584 its:0.011125646533397532 her:0.011000114361249808 A:0.009483164073608857 by:0.008131559915182579 :0.04023362033000442 +the:0.07890630989222301 of:0.058084880944973105 and:0.05521960451327574 be:0.04853642257768507 to:0.04668301886664723 was:0.04146377436960755 is:0.030923848575864533 a:0.024207320225197882 are:0.02343718444419923 were:0.019152041012217777 for:0.018224597903154283 in:0.017839126071116627 been:0.014485280266630445 or:0.014390109974460464 on:0.014201150287173201 he:0.014110096034348476 re-:0.013880538140285689 will:0.012278570130174514 :0.012049840108048025 :0.44092628566271713 +the:0.17918498114128606 and:0.10950343178607164 their:0.1092859757622239 our:0.06720632977465549 these:0.06694662682159037 whose:0.04823590929906536 his:0.04730028591579105 The:0.04651240807942892 of:0.04613624909186912 two:0.045626385269535476 These:0.03393863229011037 many:0.023219151230432916 or:0.018992397705591142 her:0.0189142652363541 all:0.01704621742676568 other:0.015162917501737183 your:0.014565662192970582 three:0.014089414812260953 those:0.01405276681865563 :0.06307999184360409 +would:0.13516776815931453 to:0.10175318883572715 who:0.0734216616549984 they:0.06090829687960963 I:0.054414498797697934 which:0.046947310165833735 must:0.0405200574155989 might:0.036445589637541506 shall:0.03272411333844378 and:0.03228038765818951 should:0.03179090655993478 that:0.029508760759060126 not:0.02876680420731567 we:0.028503874055856488 may:0.028150033623979002 could:0.022163961267380006 will:0.019029697840863502 there:0.014322928357478427 They:0.011858887319353098 :0.17032127346582382 +was:0.16839117848145677 is:0.16424666841151672 be:0.131618640223679 are:0.07314939039619563 been:0.055533962821381774 it:0.03918834623201051 were:0.03778215246492572 and:0.037723528004176526 not:0.028360948085706397 he:0.02803517435037342 as:0.024531224276865226 Is:0.019914968357975738 who:0.014680133979917425 had:0.013798648112266953 It:0.013265058517421524 I:0.013233341376939321 has:0.01256109981951728 have:0.010183717696647715 being:0.010114386444323558 :0.1026874319467028 +of:0.11612482305206981 and:0.06356839079129821 in:0.03777915221542686 to:0.03624551483870151 that:0.027443230194629607 on:0.02312822586607452 for:0.022477089050882942 things:0.015359723357775905 those:0.012573795546543136 by:0.011831423162610986 but:0.0096323414493642 upon:0.009457852428527692 with:0.008901882196844254 from:0.008887439883860891 In:0.0070271962038077965 laws:0.006597068072522801 party:0.006220269646256386 law:0.0061105026759166806 ,:0.005817865707339337 :0.5638162136595465 +of:0.11642345704427365 the:0.06785737848518052 and:0.06112042168767045 a:0.04118785384120649 to:0.040117471315803295 for:0.02859094565798764 be:0.027602999617696546 by:0.02637979688341341 was:0.025604361377448356 in:0.02286475443514327 is:0.022351672130690885 with:0.01917669828582111 that:0.017434757601783233 at:0.015873793705593862 or:0.013477443304686471 as:0.012337297844168453 on:0.012190137142417625 are:0.01186591457970478 not:0.010629137524330643 :0.40591370753497935 +more:0.05726389849112935 one:0.020055139282479095 person:0.01786253549920096 man:0.01434263982473744 two:0.011447325595544632 action:0.010532082356151634 and:0.010474365498445413 in:0.010383055909428129 sooner:0.009012175431091188 it:0.008978940819563968 law:0.007898733775954143 to:0.007056024514731301 year:0.00634450486992719 little:0.005762167864321064 of:0.005642279220966556 on:0.005599465418777562 good:0.005444063686685996 be:0.005341986880572953 him:0.005238246837452336 :0.7743203682228391 +the:0.06647623600238486 of:0.06400552517032125 and:0.062281308223140285 be:0.05990300454652408 to:0.04886480238196076 was:0.046359477162698864 is:0.033642421755709494 or:0.024224754484440145 are:0.023949812295997554 been:0.021419866649644067 were:0.01944175848099471 for:0.018415802147964767 as:0.01668021786349543 in:0.015768024701088016 a:0.014332062457127072 on:0.013218118866175774 :0.011989868035949203 being:0.010901119313506834 by:0.010399318984640265 :0.4167265004762365 +to:0.2808416183899736 will:0.1651167058236878 may:0.09483875742701085 would:0.08036112674591245 shall:0.07487332774116873 should:0.052106265416297 not:0.032582429324580546 and:0.02816251803320695 must:0.02762142690569244 can:0.023756018904377493 could:0.01830647567835862 might:0.012742879146633032 cannot:0.010385691579499918 or:0.005013664778198922 lo:0.004091928362115829 soon:0.003977340984839671 that:0.003896300848788559 probably:0.002915201216735763 they:0.0028308179087623985 :0.07457950478415944 +on:0.2033575052024114 at:0.16179410424788374 to:0.13493398236934326 of:0.13171275715194974 in:0.07173446762965231 from:0.06625116674885853 and:0.022973820997895772 by:0.019196577409246237 along:0.018163912511039704 On:0.014867903041079605 that:0.014547098231861002 In:0.014544001044312228 with:0.014274394309510989 for:0.0139922887022907 into:0.012927599510524301 At:0.012630664944737156 over:0.012615616993111298 upon:0.011908255647249765 across:0.010595931607139246 :0.03597795169990304 +and:0.08705884340915196 together:0.04529915890881643 up:0.025495581101318145 charged:0.022877184207372205 filled:0.0202658933850603 covered:0.01891807540426551 sale,:0.01891390852481372 years,:0.01871563884509915 in:0.017361981185351313 that:0.01632923130150841 title:0.01368641734065586 made:0.013294832273892762 date,:0.012348982086483466 it:0.011989037484039481 parallel:0.011513588676553657 along:0.01104258010548801 connection:0.01072350962708301 down:0.01070266071529477 dollars,:0.010497835306515265 :0.6019650601112365 +of:0.20130139598183355 the:0.11837158718644436 in:0.08899936683455018 for:0.05526737749326222 and:0.052253080104676386 to:0.04204633063633088 by:0.03593829513996794 a:0.026619345599737387 In:0.022277999574838326 that:0.021030463430953196 with:0.018777587304978235 from:0.014234418439277885 on:0.01303633930726124 :0.010834240120485535 which:0.009555290056241486 or:0.008707607866374792 at:0.008425256329146053 as:0.008424918469762979 The:0.007863862701132629 :0.23503523742274476 +and:0.07558940021936399 recorded:0.030196237618668006 was:0.028917161578042846 made:0.027969746247669736 that:0.027730098932509103 o'clock:0.025060522019555328 up:0.023026552239529506 is:0.020398277211376416 found:0.02003101797656537 placed:0.017482208134164214 out:0.016937164562539058 place:0.016819459500107596 interest:0.016629321966808677 him:0.016002796715253755 situated:0.01573420479581609 it:0.015128305982428461 them:0.014715943643665314 part:0.014646613000297721 interested:0.014450471929902294 :0.5615344957257364 +of:0.30167343418460796 to:0.10729422937931779 in:0.0865362044709308 and:0.06045705215543808 that:0.04212032219341394 from:0.03784335746432324 by:0.03638081517972827 with:0.033272076847780906 for:0.026423733916886676 on:0.025851784368856493 at:0.024227741514046892 all:0.021099651993623028 In:0.018967461564091664 as:0.015613811527564227 is:0.012671845979041385 upon:0.011684450248491409 was:0.011160869748072628 into:0.010068067070113224 over:0.00938918707622644 :0.10626390311744495 +of:0.09129790931378902 the:0.07369883040827747 and:0.047842263382354346 in:0.04189055351593407 to:0.04045875475680249 a:0.03542341257202578 be:0.02020462051672066 for:0.01979292654746225 was:0.01760256398103379 at:0.017380150555488715 is:0.014984483003968216 with:0.014047653760730413 by:0.01374644383819499 :0.012670486581795598 In:0.01200961464556976 or:0.011563835749786333 from:0.011391516893522809 are:0.011273104484969465 that:0.010755276030689069 :0.4809655994608848 +of:0.09129790931378902 the:0.07369883040827747 and:0.047842263382354346 in:0.04189055351593407 to:0.04045875475680249 a:0.03542341257202578 be:0.02020462051672066 for:0.01979292654746225 was:0.01760256398103379 at:0.017380150555488715 is:0.014984483003968216 with:0.014047653760730413 by:0.01374644383819499 :0.012670486581795598 In:0.01200961464556976 or:0.011563835749786333 from:0.011391516893522809 are:0.011273104484969465 that:0.010755276030689069 :0.4809655994608848 +;:0.021381982511931026 in:0.02068160189418102 Columbia,:0.014902207318129494 up:0.013594162370950411 day:0.009009977052929453 them,:0.007909741241357652 mortgage:0.007451693663579814 ,:0.007232060574169194 him,:0.006574700090376908 mortgage,:0.006548243284008476 here:0.006284083779936049 day,:0.00626024743295148 years,:0.006169415949849184 year,:0.006083382676408468 sale,:0.006054801606921983 it,:0.00603756968983689 time,:0.005988405526992496 feet,:0.0058115617538736595 county,:0.005702940030027313 :0.829321221551589 +It:0.134983485798143 it:0.11927994179590913 and:0.07869752573023077 he:0.07495866102709385 which:0.05828525901363446 the:0.056702926546088175 there:0.05069203199644211 I:0.03335714554994913 that:0.03277660063233671 This:0.02731979272828813 have:0.027175408625351248 this:0.026486999619164064 There:0.0262403833091825 they:0.022484312094029586 she:0.021442914852929755 who:0.019540012441854136 but:0.01864223422441557 He:0.016791077423399456 is:0.01583882314367843 :0.1373044634478798 +;:0.026571403980587268 it,:0.015870383953832425 him,:0.014366666283007914 them,:0.010562164083232527 it:0.008914797564345324 him:0.008658739974460379 in:0.008563308136534544 time,:0.007630343887807345 States,:0.007612689371982528 country,:0.007362247907852296 ,:0.007288132781311494 people,:0.006911544867979867 years,:0.006897249127247925 up:0.006735676101470539 and:0.006727519134349249 law,:0.006324130571078796 made,:0.005585921996128152 life,:0.005365863658446561 tion,:0.005234115725765018 :0.8258171008925798 +a:0.15011171810338242 the:0.12260945679332391 of:0.07987967970188216 to:0.06157748840564494 be:0.04999661392863232 and:0.04808896783195501 in:0.04432660095047235 was:0.04339055957195048 is:0.03425442831335214 this:0.03136994816317444 were:0.030113366377215876 are:0.02874904774046554 been:0.025511879313166095 with:0.01878108914773891 much:0.018757317139209417 most:0.017280166185377577 will:0.01641192646823867 may:0.015754362875192024 that:0.0150293304843591 :0.1470060525052666 +of:0.11541420464525552 to:0.08434808876484297 by:0.08050760347466604 and:0.058329824140044305 that:0.03300031602774656 Rev.:0.03294725941777471 with:0.031088015388914998 in:0.024510279015118912 :0.022524384714319893 as:0.019443602263192368 which:0.012495081351251566 from:0.011725290192492027 for:0.00985810173307557 the:0.00956074034780997 upon:0.00896249911011937 said:0.008938197928581153 at:0.008455309725602392 under:0.0069167819785112 when:0.006835120246695457 :0.41313929953398504 +the:0.35287204218781804 The:0.13976563757147176 this:0.10943025333418946 This:0.05884109716897802 that:0.03414949635816066 a:0.032926951640976525 tho:0.02311702026996084 his:0.021667687028421565 of:0.021170543928475668 His:0.01646559480910101 tbe:0.011802641561533857 Tho:0.011358322453867215 my:0.010772018696660985 our:0.01053409173969416 A:0.010449192111418284 and:0.010288752755613292 first:0.008617671345477645 in:0.008474752213093776 her:0.00815152488188749 :0.09814470794319975 +of:0.2312871908994755 the:0.07342350179526945 and:0.0470321099531558 to:0.04601402749931438 at:0.04394653007444982 in:0.04282031222594464 by:0.024287594549782448 said:0.022043619473740762 for:0.01999005131236038 from:0.019504986226776034 .:0.017836072213869365 or:0.011567153460412781 :0.010225524556283215 a:0.009922971909113449 with:0.00935648714976956 on:0.009089095069542365 his:0.008295600298854134 as:0.008232192089994983 W.:0.007887289013190794 :0.33623769022870015 +the:0.1622944884319589 of:0.0994959569633945 a:0.061219981464022175 and:0.06013281817937913 to:0.05408526681593981 his:0.04627150197433111 in:0.03711681143525799 was:0.027410208965143606 be:0.026707683073376207 is:0.022563583873416875 their:0.020955169386735903 at:0.018926087859028662 for:0.014195271753532687 her:0.011679796245452496 not:0.010175742345201286 tho:0.009392240655170093 are:0.009299334738201671 been:0.009279596802473221 its:0.009251201510743384 :0.2885472575272403 +and:0.19330951835044066 that:0.054497836865355184 but:0.03562320856488374 for:0.024177421393841044 to:0.023982615954403468 as:0.023278100885972045 :0.02119949079086268 And:0.018994240921333064 which:0.016083456146249744 of:0.014728321194915218 the:0.010669873160875622 But:0.009918112534562104 by:0.009485049974645164 it.:0.0084076535968461 and,:0.007946757551167803 ;:0.007889432051424419 then:0.007509108309994498 how:0.007444162992725885 what:0.00728526854209884 :0.49657037021740275 +the:0.568272721049893 a:0.11039156486007061 The:0.027686396075803456 tho:0.024387947604212524 and:0.023254348021966246 of:0.02254835619407834 by:0.017118848520609874 in:0.016667011952312374 purchasing:0.015102390206931882 no:0.013132593716671413 his:0.012289249295321294 their:0.010329373368436619 tbe:0.010171365056508676 have:0.009177155208204535 any:0.008936020853343501 or:0.008827344268519527 with:0.007820996210241193 full:0.00743459939123915 political:0.007385887203450237 :0.07806583094218558 +no:0.7875393769570428 a:0.0508069917939658 any:0.0337649381748101 much:0.021652168842350265 the:0.01462341225656049 and:0.011462421871930868 some:0.009790093951549167 of:0.008795825390217506 little:0.00710783236476023 for:0.005261364359806312 or:0.005003474975642596 No:0.004704296318870875 very:0.0037457362935961803 be:0.0036840603832824685 not:0.0035549555632362296 in:0.0034138276919467793 one:0.003260282121251493 his:0.0029425766326206648 was:0.00280637131127413 :0.015079992745285029 +the:0.20265677811096136 to:0.18951992827828093 and:0.1403931252613021 a:0.04508921929491204 this:0.03425135683475885 of:0.03248981968661766 his:0.030468799010252644 their:0.026038330746798177 her:0.017527571681432978 tho:0.01662096817541971 or:0.015293804482916647 its:0.014513266066967902 will:0.013735655050260682 that:0.012693143707869453 in:0.011345941270558315 The:0.010827043914092584 our:0.010773137314423115 an:0.009546137248240955 would:0.008914359978976312 :0.15630161388495759 +of:0.29430843701804477 in:0.1325940884881504 to:0.07926396199342702 and:0.07015738829332956 by:0.04598876357117211 that:0.045972152239657574 all:0.04369632888207559 for:0.03990441080619699 In:0.03278509887769305 from:0.030921976588692297 with:0.025926466242136598 on:0.02484759232518806 as:0.01264550238880315 upon:0.012507697007239764 at:0.009683274778537873 into:0.009325975792177815 which:0.007791020941508228 but:0.007104503894081563 after:0.006915374776080961 :0.0666599850958066 +to:0.49995941128903176 not:0.15566792217736122 will:0.06547818092141043 and:0.05005183008456989 would:0.038404645075814134 can:0.021358929460278023 they:0.015359732620629759 we:0.013115605365360517 be:0.010736308917674 was:0.010184435793356898 or:0.009682565161761624 who:0.009084995979502563 I:0.008899803626482758 could:0.008538060599775993 in:0.008120674001513443 is:0.008092821213914492 the:0.007366311386923705 you:0.007303952006737241 well:0.007232926521540734 :0.04436088779636079 +to:0.4887929439938614 will:0.06379614020690397 not:0.05177630968918838 they:0.0420497519170025 would:0.03923041300090455 can:0.03694155855763233 I:0.03053257890430977 we:0.030196237729062738 could:0.0276188955394682 and:0.0230981696519579 you:0.020945298881184307 who:0.01513208024606156 should:0.012671458645673197 must:0.010268286883802788 may:0.009649969301207257 We:0.009568257505077222 cannot:0.00952561017003893 They:0.007226282206765754 To:0.004860612720546047 :0.06511914424935121 +of:0.11418308792204626 to:0.057680100053166795 in:0.056844782447872305 and:0.05359961249012127 the:0.05126010433590274 from:0.0456110779485907 any:0.045600434800108995 is:0.04330268616801073 every:0.042415385914990646 was:0.04197920179144341 by:0.03831995863917772 for:0.03171469622594068 no:0.03151498498178391 with:0.030344635551148056 at:0.027326854033053363 as:0.02430996843531421 only:0.021717737525837257 that:0.021433466813801257 some:0.020386293908433963 :0.19945493001325573 +out:0.0689445889011402 one:0.051080977351361 part:0.03380877994308228 some:0.031336939368798 and:0.022701410410094686 that:0.022515662676927516 time:0.022436419050957074 account:0.019068191243217566 all:0.018900990868196934 end:0.01667014342391746 much:0.01608804278240783 many:0.015331515800911808 because:0.015079210467168728 portion:0.012510598171099948 tion:0.012308461832990825 cause:0.011876002839212719 any:0.010691339730855901 spite:0.010464048059643733 nothing:0.009917611644542058 :0.5772690654334737 +the:0.08420913210031296 and:0.07107068750542198 of:0.06822389165938944 to:0.0599489087081745 a:0.05257718780079019 in:0.03141473158662753 at:0.021975814255332612 or:0.017694597911752274 that:0.013162839445448531 .:0.013061368692281139 was:0.012987245792900807 :0.012773694497432157 is:0.012394992910484803 two:0.011275167442196135 for:0.011036798656478955 one:0.010008200950919357 Mr.:0.008795227227627026 I:0.008735566598605277 In:0.008322108371681566 :0.4693318378861428 +in:0.018518547376437718 ;:0.010717574853625636 up:0.0071740684665837105 it:0.006326361352522664 of:0.006229340057218508 city:0.006207593097735464 county,:0.006137879830249316 him:0.006038757620102728 ,:0.005803460740721151 out:0.005590644766747742 down:0.00537436391522962 :0.005270662810142312 it,:0.0052680375255078505 for:0.005024615705835192 them,:0.004901019469719575 :0.004622304685666086 day:0.004603508970417954 them:0.004511395965329283 house:0.004500401807527516 :0.8761794609826801 +one:0.1678001327051895 many:0.1178830679155386 some:0.11629649396959849 most:0.05250905917664251 all:0.05247722732702672 Many:0.04393717940457599 Some:0.04145252072400844 none:0.03942274921152021 any:0.03229849807875444 One:0.026981283335526234 Most:0.024449316002334315 each:0.02437347877142535 out:0.01729697182841551 and:0.017064556310207257 that:0.014172725973974322 few:0.01321762799495761 two:0.01173136022198473 part:0.011007786075073578 several:0.009924913510291958 :0.16470305146295422 +they:0.13631766687944438 who:0.07324179631017307 and:0.06439467466126016 which:0.05381282883940661 we:0.041575808404290794 They:0.03861143080894163 there:0.0297683328979058 men:0.02926329706050059 that:0.021450509527534377 it:0.021438663067157648 We:0.015002413936712167 There:0.014625427447447931 people:0.013490157299516288 them:0.012002346397372993 all:0.009414143561087265 It:0.009041525576828408 you:0.008526450578881989 others:0.008447190143535871 persons:0.007519232506679358 :0.39105610409532265 +them:0.056733800481840374 it:0.05083523823737577 and:0.04898842380877038 is:0.048272316368157306 not:0.04287225017875685 time:0.0376104774126702 him:0.0358699658968136 have:0.03550265426271545 able:0.03380047126118552 as:0.03259690688372575 right:0.02754064477922506 was:0.0269117511171366 made:0.02673018885778672 had:0.02474384345429087 used:0.023850641592288422 enough:0.023439582707646903 seemed:0.018450994509811698 necessary:0.017762368226494636 want:0.01675264870893723 :0.3697348312543707 +of:0.2796604450945287 and:0.08641058360139621 the:0.08212154873908474 his:0.06967328939833517 to:0.06496545063801851 their:0.048975105393623035 her:0.04220675688945307 by:0.025194813309886793 good:0.024871378988266184 for:0.022712175569727825 my:0.017056810784658916 with:0.015740928594527435 or:0.015400516414994509 that:0.014523756323008733 in:0.01302607061707666 its:0.012988768652141007 perfect:0.012792688200592277 our:0.010616141435767822 The:0.010320051551388447 :0.12974271980352395 +a:0.42404937584523333 the:0.24745709161127816 of:0.0407970945800814 and:0.03353928952637408 The:0.029589862202652754 A:0.02722049682290499 his:0.02418374624106516 with:0.0201583990103856 by:0.018397825110484177 no:0.016752875354121538 tho:0.014469734439688572 very:0.014264179605037943 most:0.011158151942749587 more:0.010938326575479355 that:0.01024330221254386 any:0.009606994832121518 in:0.008425679251991875 my:0.008054711543537919 her:0.007447069089891801 :0.022245794202376417 +the:0.28528504009168076 a:0.0847310197739444 and:0.06323754843774687 of:0.05551841883516254 The:0.02951910691522104 to:0.025612749817919032 tho:0.017603067247601745 in:0.014660950268561972 Mr.:0.014515417803714325 that:0.010764024229750237 his:0.010381489333531895 with:0.010276157868459831 an:0.009667119185593587 for:0.009417149048798769 is:0.009282241934978971 was:0.00849171701708012 their:0.008209090898526674 tbe:0.007922390487366548 or:0.007474508526559963 :0.3164307922778007 +and:0.15871639193423304 is:0.11533735267000322 was:0.10770168979356716 are:0.1003201366496116 were:0.05813830510278354 but:0.052852403709077324 has:0.0486560028848861 have:0.03464717830735397 He:0.03324124216737819 had:0.024336115846426195 be:0.02263093014686395 he:0.019063893144124346 Is:0.016350017784991143 It:0.015708370344458548 being:0.014594197797253667 been:0.013971720599763367 it:0.013071544000557942 They:0.011935765288928589 I:0.010668558835767958 :0.12705818299197016 +Mr.:0.2219130104273546 President:0.1623118511131612 Theodore:0.055158239317646 the:0.046176559206324096 of:0.04449447171106104 Mrs.:0.03884346543037044 and:0.03128677278904944 Colonel:0.017985501617806286 Dr.:0.012971054385922541 our:0.010903329615112856 A:0.008708733080253488 .:0.008638464237844763 The:0.008581761131782785 two:0.008346043142058824 Senator:0.007940692507795428 their:0.007814855770057161 Miss:0.007560082320585025 with:0.006722748587117844 in:0.006128927446576821 :0.2865134361621194 +:0.10132530864253071 .:0.01586153736849991 it.:0.012994963694550781 them.:0.009972326155771085 day.:0.006466314186158732 him.:0.005963072708890589 time.:0.005952754819220498 of:0.005834450921883061 country.:0.005314225508045209 year.:0.0049247550547799 city.:0.004072303040063511 years.:0.003997040955926161 work.:0.003880377182773483 people.:0.0033836246305601453 States.:0.0031455025043576447 place.:0.0030640999552846737 men.:0.0029656503323313246 way.:0.002952433427976742 out.:0.002933009065662241 :0.7939962498447336 +the:0.09999502029444866 of:0.09399674190841777 in:0.0591499976622462 to:0.05871083787093859 and:0.049877855065900666 at:0.041999617931476635 a:0.03723857672484494 for:0.02716461643622583 as:0.021096602060411744 :0.01891756408480262 by:0.018620891040531717 that:0.01696156584036017 with:0.01674044065979968 In:0.01672237804435225 from:0.01631988601213728 on:0.014826845163143493 which:0.012807072241749887 an:0.012553564300257747 in-:0.01121981882641668 :0.3540801078315374 +be:0.2602380144707538 he:0.07412325681942933 are:0.07048378784071449 was:0.07013787614574367 been:0.05708912142665003 have:0.05169433767274615 and:0.047702648258966175 is:0.04661272651768092 were:0.04110929604319624 had:0.03652815281632219 I:0.03343382112126598 has:0.031569051285258685 not:0.02690393546277204 they:0.02201685915329027 being:0.017911084495279762 He:0.017827704331437287 she:0.016328059410963495 bo:0.012672027356471 never:0.011791077364749625 :0.05282716200630884 +of:0.09129790931378902 the:0.07369883040827747 and:0.047842263382354346 in:0.04189055351593407 to:0.04045875475680249 a:0.03542341257202578 be:0.02020462051672066 for:0.01979292654746225 was:0.01760256398103379 at:0.017380150555488715 is:0.014984483003968216 with:0.014047653760730413 by:0.01374644383819499 :0.012670486581795598 In:0.01200961464556976 or:0.011563835749786333 from:0.011391516893522809 are:0.011273104484969465 that:0.010755276030689069 :0.4809655994608848 +the:0.2181662334234563 a:0.19732189418655263 to:0.06112494882421058 his:0.048852295849007875 and:0.03408473408946236 her:0.027707873168046526 of:0.02227749766028572 this:0.015454976521168123 tho:0.014884245016661945 old:0.014296583802550307 their:0.010160007778370521 little:0.009348922765468018 had:0.008643386368495215 my:0.008479362475582836 one:0.008469971628124868 The:0.008133950395479862 that:0.0077119814066540495 iron:0.007703777939076042 our:0.006253361594651577 :0.2699239951066947 +of:0.09129790931378902 the:0.07369883040827747 and:0.047842263382354346 in:0.04189055351593407 to:0.04045875475680249 a:0.03542341257202578 be:0.02020462051672066 for:0.01979292654746225 was:0.01760256398103379 at:0.017380150555488715 is:0.014984483003968216 with:0.014047653760730413 by:0.01374644383819499 :0.012670486581795598 In:0.01200961464556976 or:0.011563835749786333 from:0.011391516893522809 are:0.011273104484969465 that:0.010755276030689069 :0.4809655994608848 +of:0.28767355066866834 to:0.08775711267569858 in:0.08678131196995101 and:0.05160598694501188 on:0.04646139928102899 by:0.04519522654900943 for:0.044547789071328545 with:0.03396756772609607 that:0.033699232901107726 from:0.03075346596941143 at:0.027039283056790858 In:0.021061449543044047 as:0.017514234937992545 all:0.012543839382496166 upon:0.011844431150487573 is:0.00998972746569266 was:0.008814315973987914 into:0.008557199930727406 through:0.007781895704231326 :0.1254109790972375 +the:0.09684081064840576 and:0.06551335624548284 of:0.05146145169206151 from:0.049520598669154245 a:0.045427902131977435 to:0.0370403239153822 be:0.035669151526387034 was:0.030489628475080553 is:0.026635804908522978 in:0.023878514238638158 are:0.018513936943033917 not:0.017945708099223703 or:0.017556265685966497 been:0.014265228721347686 at:0.013857211504087178 he:0.013733215789660087 were:0.012396679125422956 I:0.012347944480187516 for:0.012197989992860347 :0.4037082772071174 +I:0.15254833884195787 who:0.09862272658347002 they:0.08628583667508939 we:0.07884928638434863 to:0.07513413231212229 We:0.04669786697252346 which:0.040067627688510195 would:0.03878836987167136 and:0.037165556598970494 you:0.033871622905694454 that:0.026502879231868032 They:0.026174460112181407 could:0.015268504068756964 must:0.013794115485044708 1:0.013793429312192074 men:0.013162882784526724 might:0.013048818852563697 not:0.012891035287009084 may:0.012377361078087585 :0.16395514895341157 +and:0.07558940021936399 recorded:0.030196237618668006 was:0.028917161578042846 made:0.027969746247669736 that:0.027730098932509103 o'clock:0.025060522019555328 up:0.023026552239529506 is:0.020398277211376416 found:0.02003101797656537 placed:0.017482208134164214 out:0.016937164562539058 place:0.016819459500107596 interest:0.016629321966808677 him:0.016002796715253755 situated:0.01573420479581609 it:0.015128305982428461 them:0.014715943643665314 part:0.014646613000297721 interested:0.014450471929902294 :0.5615344957257364 +the:0.11919516938815296 of:0.07230453158552728 and:0.05781056740443249 a:0.043018564803886335 to:0.031305092790907506 in:0.020848713353460488 at:0.014270110001066288 .:0.012526810245749479 :0.012413283442322082 for:0.011719122709941797 by:0.010808400946589808 or:0.010404172990115616 The:0.01003576004804544 with:0.009811868184449042 tho:0.009295902015355835 was:0.008924239095331684 that:0.008672304223433876 is:0.0085591147338948 be:0.008335143826716943 :0.5187411282106204 +the:0.1698125332306635 Mr.:0.11823625869364912 of:0.05517943365898707 The:0.04682449435778366 and:0.04355971378022836 Mrs.:0.02980437638095612 .:0.02152490872588147 that:0.018127972165267937 a:0.015615467091931106 Miss:0.013105507460169048 tho:0.012136768917951065 Dr.:0.011745017697886776 to:0.011737475906762761 Mr:0.011379264212999434 as:0.011262441579912167 his:0.010857822844209318 :0.01026939397114601 in:0.009564861915448355 he:0.007827453254991101 :0.3704288341531756 +most:0.18744038388259987 and:0.16822643965329065 an:0.15391679103035832 was:0.05796720989900847 is:0.046936441428053116 of:0.04234685443647328 the:0.04051592324058126 be:0.0400180693912103 are:0.03807259904341514 more:0.03391469484626677 were:0.025597119334674297 been:0.013180150676663125 with:0.01277795927282876 or:0.012561721771778521 a:0.01228784554696875 in:0.010521573622194165 An:0.00759716746561759 as:0.007458424796991229 he:0.007408477526139161 :0.08025415313488725 +of:0.2941606534463804 a:0.13131162230507543 the:0.11080981366961137 Of:0.05045612138343646 his:0.04242490305861033 this:0.03686902655784307 in:0.03526896739344025 any:0.0337093326878276 no:0.03315339145746058 their:0.019767882657805932 our:0.016957374697749713 such:0.014860507794896068 that:0.014211168152549265 some:0.013809488324705287 my:0.013538446676265616 and:0.012908540234590515 The:0.011348260224375132 or:0.011095983841768632 her:0.01107902007985827 :0.09125949535575008 +the:0.09257056349821859 and:0.09224795152250533 a:0.07278659441959898 to:0.06492929000087447 of:0.06111822002401408 be:0.025099538893597242 is:0.02149308700099527 in:0.02141247688820789 or:0.01984159061175152 was:0.019387256347312948 not:0.016853958608045113 are:0.01454887644489244 more:0.013855090673385114 that:0.01174821157580692 with:0.011685758410120104 will:0.011297780567221988 one:0.011083597844477934 would:0.010130372594083352 two:0.010057140181593906 :0.39685264389329683 +is:0.11852008984255555 of:0.08939186844734127 was:0.08514032189887781 and:0.0796191565504778 in:0.05841897057277058 as:0.04141517031113783 to:0.03527418704711287 by:0.03208349761601984 any:0.0316178936538981 no:0.03129759887347578 the:0.027925111379291493 with:0.027276745378366836 that:0.02553986982270336 only:0.025049036289369744 but:0.024821881507018136 not:0.024674263954361692 for:0.024307050149215317 be:0.022936841776455594 from:0.02241706127132092 :0.17127338365822947 +the:0.1188820336400701 of:0.09417807580289607 and:0.07538655060191521 to:0.07033736191896665 a:0.03563690792199739 be:0.024972453990847923 or:0.024899509093903295 his:0.02076876619939878 on:0.019133014026715682 for:0.018639381490253078 was:0.017867552910372453 is:0.017807661408110517 their:0.017462364443265786 in:0.01598369068848567 are:0.014679784473706273 as:0.013747477737000588 that:0.012733139584454278 re-:0.012071296257421588 much:0.011822265381379305 :0.3619907124288394 +of:0.12354601947811347 to:0.07696717689301177 the:0.0659902547941605 in:0.060832226513419116 and:0.04997210954197315 for:0.03531196167776283 a:0.03260625602942973 that:0.023004782984749006 be:0.019592591155318858 more:0.018455621355988872 at:0.018181467190175753 which:0.015154519885099983 by:0.014865615638003291 with:0.014813676104814913 or:0.014474295992148773 was:0.014360168072857444 In:0.013208742833516921 is:0.012308468543478876 not:0.011471547426446899 :0.36388249788952987 +and:0.12520569613689633 the:0.0770401913883276 of:0.049529722422557994 to:0.03496812449635961 a:0.02754744045518406 that:0.02375129609922671 in:0.02221102412974833 which:0.02096829897498682 I:0.019449890737591277 con-:0.01881848228784068 have:0.01820488980943835 will:0.01680081770853302 he:0.016452755422260348 not:0.013390330308692433 be:0.01280646848728261 for:0.012091192036743683 they:0.011874583692384229 was:0.011871023701378465 more:0.011804084222237787 :0.45421368748232965 +the:0.1824005180102362 and:0.11148271989100693 a:0.04498434563391436 of:0.043422085294890514 in:0.0407258789266488 to:0.026599584226657147 his:0.02073481388725689 that:0.018697090373415368 or:0.014363409027246449 on:0.014355003310446694 their:0.014327145431176474 said:0.01352515805857854 an:0.013086007533617907 any:0.012173387519900058 tho:0.0121433023651071 as:0.010822341108554605 In:0.01052228026095483 be:0.01022908927944039 The:0.010036904717305754 :0.374368935143645 +the:0.11138115692169166 of:0.09316998177548724 and:0.057220839505382176 to:0.03147886170354268 a:0.02427839847096342 .:0.021273215018265044 in:0.01963872839798778 was:0.017547272690206884 is:0.01595876168661803 :0.015606555443169638 Mr.:0.015426830237559776 be:0.014891361772098953 as:0.01433809405510851 for:0.01274973863546901 his:0.011328766920535992 The:0.010946488202502873 by:0.00970670015279128 are:0.009688375945346215 at:0.009425473769517663 :0.4829443986957552 +of:0.14245895245832682 to:0.07571024319144838 and:0.07005403104732577 the:0.058085105520118564 in:0.04695135186337763 or:0.029838890795431727 for:0.02423246489371673 on:0.022673358710364466 by:0.021499117598675486 at:0.0206294895114016 be:0.019817580893679354 with:0.018459020569265155 a:0.017299952542408945 that:0.016675902023073213 from:0.016175556847515236 as:0.016149511112152022 :0.01580705220763687 was:0.01563614242571257 is:0.01500342800418534 :0.3358428477841841 +the:0.2392590530372908 a:0.04396647361326953 of:0.04011359798292071 and:0.03920437299893203 in:0.03763620825083645 to:0.03449956293474543 for:0.02483816872124811 at:0.020972520841961 was:0.016051759692723162 In:0.014069090554529602 be:0.013280280110487081 tho:0.013124194328082263 is:0.0112999775707641 said:0.01086528429102691 are:0.010742735915977939 from:0.010098416152301531 as:0.009637070954259601 that:0.009318116439327392 on:0.009027907687620604 :0.39099520792169573 +that:0.29053768033244964 which:0.08909377600012884 and:0.061507087898127706 if:0.05380610770709671 as:0.04912026940271576 w:0.04382276537688743 when:0.042638898684538094 where:0.023976510678025895 whom:0.020906012316663357 but:0.02034727175646034 what:0.017795203602172918 If:0.01692841809807722 I:0.01126548188876726 time:0.010831378698682276 though:0.010233120640794192 because:0.010221628357743375 before:0.010081728108263742 said:0.010079372618808834 until:0.009912929843823496 :0.19589435798977295 +and:0.07359963406644195 be:0.052667135004264946 to:0.04483536256874564 of:0.043448293679263235 the:0.03579172892628988 in:0.028005289969665195 was:0.026700397492138477 is:0.024892551934152005 re-:0.024162182625676702 he:0.024086629517294657 are:0.02098604388819216 from:0.020307931541148256 a:0.018606881911690538 or:0.018077853608073062 for:0.017195224169077532 been:0.01615904189338184 I:0.015254891559368164 :0.015184018660626356 which:0.015016145996292442 :0.464022760988217 +on:0.3558758000175483 of:0.15497685688084045 in:0.08483586781870882 to:0.07817505220874191 upon:0.03126924353371444 by:0.03106344387548202 and:0.0266573994328518 that:0.02476891474361598 from:0.024183019030647075 for:0.022866205926400044 In:0.02268086186858751 with:0.015089616131092711 along:0.01326254313084176 at:0.012387977097554693 over:0.010488901545625678 On:0.01002170020002156 into:0.010001628785720309 as:0.00901684292354111 all:0.008219778188269324 :0.053158346660194464 +of:0.3051113329751435 to:0.11315495485452404 in:0.10477913102469442 by:0.05052649047938418 on:0.044785382781948886 that:0.04415467235248207 and:0.0437295571183318 from:0.03586458738939088 at:0.02729473807905205 with:0.02674462409858652 In:0.02653197511875971 for:0.022070282391730773 as:0.01874493491659261 into:0.014798432395650893 upon:0.013134716687651996 is:0.012265646639875142 when:0.010147765243098192 which:0.009741779628905746 over:0.009645233853826365 :0.06577376197037024 +of:0.22830512215381535 to:0.1447482920652694 in:0.10470280696238636 for:0.0707918598804767 and:0.06447054293626268 that:0.0471551970446201 with:0.04245187189838482 by:0.035514730248106585 from:0.03335584490130561 on:0.03299650860354417 upon:0.022931756466989573 as:0.01750545092641392 In:0.016117684172583108 all:0.014819940403410664 up:0.014486623662599623 at:0.014364837927439965 under:0.013444768471422334 have:0.008530281259576816 or:0.007596832277734208 :0.064709047737658 +to:0.11078903998175776 and:0.09543217081514564 the:0.06292395712797988 his:0.060299424232471054 more:0.04324806511890946 will:0.041054640712184995 an:0.03912001109522202 a:0.033466572820609324 not:0.032232770102964034 my:0.03053002987107494 it:0.029701475750054857 her:0.027943548337867045 would:0.026198953195567226 their:0.024881194498454547 who:0.02167436803224805 I:0.021013270609011123 your:0.01959257789488948 he:0.017867844843762876 of:0.016872004747891495 :0.2441580802119342 +the:0.24888389536694364 a:0.09827642525090313 of:0.08461437909775658 to:0.07737899948241624 and:0.06219961002928514 at:0.034715043651536444 for:0.029396398358890612 or:0.027469422546516686 from:0.01949415215889194 tho:0.0166148188855387 no:0.01149797281524913 with:0.010621113399663925 in:0.010510055328155195 their:0.009899591065822 his:0.009015638958362401 our:0.008158681316694243 little:0.008086374486272505 by:0.007928391295281773 not:0.00792419019072963 :0.2163148463150901 +to:0.33663752939820446 will:0.18758119867153134 shall:0.0946639339640853 would:0.08339799037388407 may:0.07213378964415174 must:0.04103330750541262 should:0.040528451838127554 not:0.03345696339536333 can:0.018048763328768137 and:0.013182292003404034 could:0.010512325409857278 cannot:0.008542174150076198 might:0.008471681820428673 also:0.005527054763703248 it:0.004185150769924696 all:0.0029300810794889416 only:0.0028047199953056506 probably:0.0026313202567289765 To:0.0023377872183358113 :0.03039348441321797 +the:0.3494632734539091 in:0.2274204358554977 of:0.0895074357310673 In:0.03548590218064175 The:0.03222960649867363 and:0.0303233914692187 a:0.0274729934161222 their:0.025369051154946483 his:0.019658451393703334 tho:0.01853730894487408 or:0.01692519314720239 this:0.014135262037868732 that:0.013364942479795595 other:0.013176473170234564 its:0.010793054453314922 great:0.00985676371714198 an:0.008848632911671742 on:0.008522381676867327 large:0.008041066758212798 :0.039868379549035646 +and:0.08995317707915026 to:0.06844710404109794 of:0.04605142056172993 the:0.04074574508561307 which:0.02479116931334353 that:0.023764822140213245 re-:0.020841117231308055 in:0.020803825395358622 for:0.020278423301550053 :0.018417753428486977 not:0.016860793136637672 con-:0.016444405871234195 is:0.014386481772210856 or:0.014080680914153714 be-:0.01352268143271276 I:0.01317002660943805 was:0.011429878269381662 dis-:0.011196807025842847 he:0.01113106290024311 :0.5026826244902934 +it:0.11857892928876056 which:0.10419954526017984 It:0.10229720510101595 that:0.06796245048918885 who:0.06088908826247786 he:0.060731706658395446 there:0.047718276913133226 and:0.0298646407467943 There:0.025721626378001235 He:0.023765504777663107 default:0.02149030696489031 as:0.019132676760165265 This:0.015088553278066501 she:0.01413948392901254 what:0.014110548249504374 this:0.009613248172212615 work:0.008813388419150843 man:0.006677000754574867 country:0.0066605789516794795 :0.24154524064513283 +and:0.1907830328831606 or:0.05601640371574259 than:0.042428904166938536 that:0.031652330521160114 as:0.0284984887296506 was:0.022889731514405647 is:0.021278431043600464 but:0.018489163623294034 be:0.016940913533407292 are:0.016824771746720285 made:0.01581223657238868 men:0.01568811402381905 them:0.014735943879709524 now:0.014277160792350354 all:0.014130722817103371 not:0.013398817862630072 while:0.012552764097522588 engaged:0.01217031494554354 him:0.011390955016834762 :0.4290407985140179 +the:0.310025454788972 an:0.1466455189401869 years:0.08369480676635828 his:0.051208996177979714 of:0.04099509940278399 her:0.03169054408354407 their:0.024705287452563895 The:0.023453149835163493 a:0.0233894730243582 tho:0.02245758469701997 my:0.021341743652473405 good:0.02022517433153686 and:0.017165806832287966 dear:0.01564059667947852 to:0.014336870225217702 our:0.013289243931156953 grand:0.01005951985712989 with:0.009943397247343149 its:0.0092912434167212 :0.1094404886577239 +and:0.056274562629447994 is:0.04796757623468263 it:0.04764540423860467 but:0.03885707102182865 not:0.03753791767107621 simply:0.037339973353844556 them:0.02763702269129312 that:0.027547112561852615 them,:0.02460100122366365 you:0.023925334000928878 as:0.02340421062971781 was:0.02209507564016266 And:0.02065157674749102 me:0.016733099533614022 it,:0.016723589923149172 him:0.016427838650592084 only:0.01598042445807822 be:0.01366636652983473 partly:0.009917243632351944 :0.47406759862778536 +the:0.15469416103688596 of:0.09927736834730398 a:0.08860758784930761 and:0.046300323533314515 in:0.04398700847955545 to:0.04158501427824251 that:0.02170779999832122 as:0.01893688721122858 by:0.016342233265762025 for:0.015148222456126785 with:0.013475414805179983 The:0.012820537675219184 on:0.011331014113932827 his:0.010804171371900758 be:0.010769551572899641 tho:0.01029997239375023 which:0.010080963640910748 from:0.009753218289451953 In:0.00938235618157279 :0.3536961934991333 +and:0.07895257911471103 was:0.03596317658514438 out:0.024016824392823457 that:0.023672598027062328 placed:0.022844208461019616 work:0.021707439938587154 made:0.020781005318872947 is:0.020224993929329655 up:0.019794182040466738 put:0.018288921183371155 down:0.0171740551508179 interest:0.01663630075189571 point:0.01659978677065351 him:0.016175999448187352 held:0.015562908663841706 Dakota,:0.014616466073415059 place:0.01424333231426501 Minnesota,:0.014067166610364513 it:0.013665465625771424 :0.5740125895993994 +of:0.13673982106754226 and:0.10026515160004856 in:0.07838382160632859 with:0.07096409479475488 the:0.06974941950125639 as:0.06128828872521325 that:0.05776533639001366 how:0.05481686928338266 great:0.04218850316405849 are:0.041501123471936616 by:0.038442602805768576 so:0.03795900949431849 for:0.033096490961873996 In:0.02692880668788308 to:0.02481615565765261 good:0.022065568573163812 have:0.015972924992564832 but:0.015683581470220625 How:0.014617970281708585 :0.05575445947031002 +to:0.12022893700269083 and:0.09020394424291768 the:0.08587503820055309 of:0.06450042443224316 in:0.0310058468700829 a:0.017742048521183405 :0.015548046036689871 not:0.01491307651316237 that:0.014112408707955496 for:0.013734482372212283 I:0.013065769926808477 will:0.012848502316304782 at:0.012837991177321897 In:0.012628718855091186 by:0.012491091048660757 be:0.011425930130217754 is:0.0113962101007567 he:0.011342727513475473 or:0.01112522537451577 :0.4219735806571561 +was:0.18318293200819796 are:0.17642159632309456 is:0.1594412311892338 were:0.06767589596753763 am:0.061012980148988254 not:0.05454424704687395 and:0.0335853329504595 from:0.02780414701233555 Is:0.0272893886193285 been:0.023952674557776492 of:0.02129660189748236 be:0.018264526924947275 now:0.012576525372910248 in:0.012044605243062752 I'm:0.010205671324996446 with:0.010079078537360819 without:0.00878332675134711 by:0.008600526622676715 as:0.0069491673323801165 :0.07528954416900993 +it:0.12646345559141328 which:0.06874049228939834 and:0.0656467730514304 It:0.055899354080079296 there:0.04819894680944666 they:0.03712179471058455 who:0.02815526182575708 we:0.02681863422926571 that:0.025159511562839045 thereof:0.024851973400234234 as:0.02428947294515817 same:0.020568888037149836 he:0.02001322537743491 election:0.019553934975150428 person:0.019134845881448644 act:0.018245867186635015 I:0.01822575051588607 bonds:0.0165852660779681 or:0.016416112573120735 :0.31891043887959947 +:0.052329411914711306 it.:0.01149385966331769 .:0.010338176635599258 them.:0.006521216465777402 him.:0.0058781778725096765 day.:0.004032956639753892 I:0.00347940849457355 time.:0.003259291725215675 city.:0.0030508266222669385 year.:0.003021582224651221 It.:0.0029641709775684233 work.:0.0029344495105377948 years.:0.0029339656440519686 country.:0.002841173306358714 and:0.00280040638668126 of:0.0026858160549691375 men.:0.002620225807489835 out.:0.0025226502435479726 :0.002475923142311127 :0.8708163106681072 +of:0.14833494196103938 and:0.07429632750415743 to:0.07177051042804497 the:0.06532417397446712 at:0.0577724551279268 about:0.05481435205749825 in:0.04847934960090585 for:0.03629831400149156 or:0.029977500394637972 than:0.018166582220071968 a:0.015330909785781978 beans.:0.014057093817262308 In:0.012084369780848212 with:0.012061616084423004 from:0.0116624172839702 two:0.011102874029941099 over:0.01094411712737063 other:0.010043454932671803 beans:0.009482170958697604 :0.2869964689287918 +the:0.17186949188796918 of:0.09613600487758009 to:0.06810989472881987 and:0.0671159178156827 a:0.04842755304971689 in:0.029606656037987913 be:0.02592226045891956 is:0.02133049953187464 for:0.021086273175484706 their:0.018418729535074327 at:0.018178161049898205 his:0.017948069219767125 was:0.017687920992466927 this:0.013169019954401257 its:0.013019007776548993 tho:0.011547047340633677 not:0.011018992573181827 or:0.010498610803800934 by:0.010366588313851233 :0.30754330087633996 +of:0.25939854416483954 and:0.0805986171874258 to:0.07065705424231569 that:0.06297464202649541 in:0.053945683151943986 with:0.0506685737746222 on:0.04535831402056804 for:0.044595148493075915 all:0.04239306352975281 by:0.04143898679317252 from:0.027483140555552198 upon:0.02382578985681496 as:0.020224110570995442 In:0.017934772720674216 is:0.01764991541871328 but:0.013832584494371757 or:0.012189768936683953 at:0.00994901479731439 was:0.0084731138817334 :0.09540916138293444 +is:0.16267857715636685 was:0.11217814522563765 do:0.08383370939307058 are:0.08289795706912571 and:0.061798546874055255 did:0.05250644841320993 would:0.04748112963770649 will:0.03624081826835339 were:0.03605174713055034 does:0.03289331605236084 Is:0.02879586680493014 but:0.027063542181728777 could:0.025664924381658346 am:0.02553935519199104 had:0.023868517994682353 it:0.02221730553413774 have:0.016552385385321174 if:0.016281159765119825 may:0.012092013348601294 :0.09236453419139228 +of:0.46787352196068976 in:0.16440395208037387 on:0.13101379435470928 In:0.044649496653344445 to:0.02215718953719662 from:0.021947588515277058 the:0.014532988270044326 at:0.01373939581786128 for:0.01171409650132253 ot:0.009032197077812542 by:0.007102644721235738 and:0.005617342351653117 ol:0.005249766002068529 with:0.004598229762443326 upon:0.003529467253920509 between:0.0022287325727930337 At:0.002218368359210233 iu:0.0018081128937188883 On:0.0014954440949106345 :0.06408767121941433 +be:0.24774632602357735 is:0.22559473013685127 was:0.0880720829749381 are:0.07347108811839062 not:0.05444462513924253 been:0.03844950708420902 Is:0.034075021752343004 he:0.03338468770756799 and:0.02570911697619073 were:0.020098933218516912 bo:0.01603436289365318 they:0.015626793120420063 had:0.015173182730360266 have:0.012880067228481052 I:0.012541727205333668 being:0.0125033103022587 never:0.00858882237439266 who:0.007100370027869329 well:0.005957039028518403 :0.05154820595688515 +the:0.10737993120967197 and:0.06551242214335147 be:0.05775059090533913 of:0.05326020209972693 was:0.04731792640854805 to:0.04156327896330817 is:0.02633227783257942 on:0.026158062488492135 been:0.025704139829415225 in:0.025576509470935538 are:0.02393807658364074 were:0.023755620599234292 for:0.02052544370569653 he:0.019297938079469626 his:0.016508932410818748 re-:0.015090692064870008 their:0.015056758081189673 have:0.014810638431732902 that:0.01382473300313822 :0.3596358256888412 +a:0.5809531055299566 the:0.09717522295648705 of:0.059240345099321134 with:0.044516231151453006 A:0.03297627521998679 so:0.022518674457008316 this:0.019812039355148525 that:0.014974642918309817 and:0.012747043713597408 very:0.012314163096572744 too:0.012037262839321314 no:0.010685199900121014 The:0.009702710894242841 by:0.00964043012912995 is:0.008352638109084848 in:0.008049597003912789 his:0.0073173553209451726 our:0.006692825197311799 as:0.005941155071943442 :0.023353082036145497 +the:0.11919516938815296 of:0.07230453158552728 and:0.05781056740443249 a:0.043018564803886335 to:0.031305092790907506 in:0.020848713353460488 at:0.014270110001066288 .:0.012526810245749479 :0.012413283442322082 for:0.011719122709941797 by:0.010808400946589808 or:0.010404172990115616 The:0.01003576004804544 with:0.009811868184449042 tho:0.009295902015355835 was:0.008924239095331684 that:0.008672304223433876 is:0.0085591147338948 be:0.008335143826716943 :0.5187411282106204 +out:0.04403511891450633 day:0.03903513164829892 matter:0.03223334585523219 years:0.0292827567573238 state:0.022134296926825493 purpose:0.02201298682234364 amount:0.021490971520639002 piece:0.02012990169874181 part:0.018725588527989778 side:0.017427781484242896 means:0.016936583017052313 line:0.016743663108882405 tion:0.01588116496006747 time:0.015628480349047326 point:0.01533772466672107 and:0.014399927712701691 full:0.014040538373034293 rate:0.013750742118930766 account:0.013659632896043973 :0.5961136626413749 +to:0.12022893700269083 and:0.09020394424291768 the:0.08587503820055309 of:0.06450042443224316 in:0.0310058468700829 a:0.017742048521183405 :0.015548046036689871 not:0.01491307651316237 that:0.014112408707955496 for:0.013734482372212283 I:0.013065769926808477 will:0.012848502316304782 at:0.012837991177321897 In:0.012628718855091186 by:0.012491091048660757 be:0.011425930130217754 is:0.0113962101007567 he:0.011342727513475473 or:0.01112522537451577 :0.4219735806571561 +the:0.803783062349177 tho:0.028507340139067323 The:0.025596004532883767 a:0.024555365626513285 this:0.022300705404672636 sole:0.011230403294232392 tbe:0.01090512496007543 that:0.008753886904781993 and:0.005535278397996568 avowed:0.005121023995866453 great:0.004773360471679199 of:0.004472583096469409 their:0.0036595555727384982 present:0.0031088497323683807 any:0.003099471250020988 or:0.0030096739777087348 no:0.0027987241448154364 by:0.0025507204344073164 other:0.002541253751530335 :0.022697611962994888 +he:0.1507544984351815 I:0.09164904149078944 it:0.06578372146674706 and:0.05501730395860084 He:0.054220617478351926 which:0.04326301266437457 It:0.04236872144454286 she:0.04026059834481014 who:0.03190523962416281 that:0.018763394581449728 She:0.01627218748674772 man:0.013559121513187763 1:0.013393176846922537 lie:0.012387836623056508 ho:0.011353105518170668 be:0.008607481952495489 body:0.00803316112493385 bill:0.006981791529633747 there:0.006523232252475898 :0.30790275566336495 +the:0.43082532873271523 this:0.20155593080182396 The:0.06522780553280512 said:0.0595722373038568 that:0.0448212034965737 tho:0.027658110817965313 a:0.018070301150847366 York:0.017123997050597327 our:0.015554350045699245 other:0.010928275525034913 tbe:0.00978185245777994 of:0.00946703910087161 and:0.00946337403155514 This:0.008123754452374359 any:0.0062320992632146745 every:0.0055451536415026224 or:0.004179184231940856 Tho:0.003865224152628006 present:0.0034387247488357423 :0.04756605346137812 +to:0.08034344102784367 and:0.07559770811618696 of:0.07556417531451855 in:0.06430708336571542 was:0.0433904303290245 the:0.03714196666882291 is:0.035489587378076955 be:0.0327312593685656 for:0.026390414838272 are:0.026389447141360618 a:0.022518133573586962 were:0.020827030628718577 In:0.01908623855113952 will:0.018588649062266573 or:0.015820867600591017 with:0.015642320946412592 have:0.015541197933978465 been:0.014201070507074713 not:0.014037796634584664 :0.3453911810132597 +the:0.5209247177458067 a:0.14587218910421518 The:0.03499032955967788 tho:0.03385002229655841 this:0.02080520724210795 his:0.01754345779471146 any:0.015071716769465055 same:0.014395474371769336 their:0.013690686079556624 such:0.013397240856245936 some:0.013111411087289153 and:0.012069136971131622 tbe:0.011463880195165841 of:0.011165746161331043 one:0.011083509203239757 our:0.009844935144024366 other:0.008738868784635872 so:0.007408264853787997 every:0.0072117847747849104 :0.07636142100449493 +of:0.28767355066866834 to:0.08775711267569858 in:0.08678131196995101 and:0.05160598694501188 on:0.04646139928102899 by:0.04519522654900943 for:0.044547789071328545 with:0.03396756772609607 that:0.033699232901107726 from:0.03075346596941143 at:0.027039283056790858 In:0.021061449543044047 as:0.017514234937992545 all:0.012543839382496166 upon:0.011844431150487573 is:0.00998972746569266 was:0.008814315973987914 into:0.008557199930727406 through:0.007781895704231326 :0.1254109790972375 +the:0.1993886924626887 of:0.07087486474233075 and:0.053460963139365894 a:0.044300718433505734 in:0.02916742911561322 Mr.:0.026752847158830112 The:0.024457354191228815 at:0.020099923874445643 to:0.018464292480550124 .:0.01616331901084456 or:0.014326631541832535 tho:0.0142228523062597 for:0.014201069175921656 his:0.013154126413030195 was:0.011765109322598303 that:0.011723427243621451 be:0.011266428196463302 no:0.010246278538791136 I:0.009735415525036314 :0.38522825712704184 +the:0.1786629942192816 of:0.167678989511506 a:0.1390039091813993 in:0.07665373220372963 and:0.057984434624141705 to:0.054363919324035725 his:0.030595267790492518 with:0.02941719913878542 for:0.023325086079387485 their:0.020686097132648913 In:0.01871586363984572 no:0.016996230664857857 all:0.016110644277102855 The:0.014086429379345476 or:0.013705009616424551 any:0.013287255213166394 by:0.01223734336038366 our:0.011971635072223114 its:0.011714093813718952 :0.09180386575752311 +in:0.1918913214311854 of:0.18729730450881954 on:0.110920795191858 In:0.07129223383524524 to:0.06017912245527328 along:0.05799878869911173 that:0.03579877587361184 and:0.031617266514189585 at:0.027607394483510902 by:0.02490245156125284 from:0.023282193304594613 upon:0.02125022226805846 On:0.015836734417100713 for:0.01572901582905194 with:0.011665006261403859 over:0.009992543016547784 At:0.00977331925700549 all:0.008946432189720837 which:0.008024533421356412 :0.07499454548110152 +and:0.1495591747212345 he:0.11024964378447713 I:0.09607796452378754 He:0.0659762854681852 have:0.06531394135771106 was:0.0648387111310785 had:0.057871800284895004 has:0.03254238460145248 is:0.030900138634227935 be:0.028650727019289845 she:0.01974642727148448 been:0.019036554307150736 then:0.017958085283191327 who:0.01683864443221963 are:0.0167435099982326 we:0.013631929915452852 were:0.012481849196692605 they:0.011898768691708327 it:0.010262560314498008 :0.15842089906303028 +of:0.24700994379626415 to:0.15358675872978766 with:0.10187682031623607 in:0.07803660497205243 and:0.04368275080065945 at:0.036448347822616294 for:0.03605017468496608 by:0.02871049437510135 from:0.025873225727411586 In:0.016521239317953386 on:0.01370520629419856 that:0.013349356348657424 upon:0.013077430496613508 the:0.0124831983228918 as:0.012452397189850051 a:0.011905003217092551 about:0.011526874338797361 was:0.00885970446403611 or:0.008156297079257482 :0.12568817170555668 +hundred:0.01261216074494773 ;:0.011559812951247191 up:0.011188945584514266 and:0.008276341804937755 in:0.00791451980659433 men:0.007439659350949102 dollars:0.006817227611747109 :0.006607634345765869 time:0.006474515557986762 him:0.005639527748802992 ,:0.005447840019132789 :0.005354241155177302 out:0.0050744448072325785 years,:0.004739330814500987 made:0.004730288270519497 long:0.004559809020582422 life:0.004438858185989242 house:0.004325471116041864 States,:0.004318680432216576 :0.8714806906711137 +the:0.28983895878545857 a:0.11459335333214245 his:0.07058047289362036 this:0.056330819914685464 for:0.04689335433257748 at:0.04445950867650617 of:0.041693144484324283 their:0.031088640209482946 and:0.025211451256480118 in:0.024013349195371975 The:0.02230137390022701 tho:0.01966039675575236 her:0.018281900099721485 during:0.01755789484070326 last:0.016488092769509792 my:0.016023399480736913 our:0.015089047504652422 that:0.01390086679417001 early:0.013128571273887517 :0.10186540349998938 +of:0.3557882561262724 to:0.11228402972914929 on:0.06382124940999591 by:0.0601406160288848 in:0.05851697313099205 from:0.04180145454005672 and:0.036573129094762305 for:0.033795086112826514 that:0.029464654977044268 at:0.027312354270076562 with:0.025906970187260396 In:0.021659866997259164 upon:0.01568122757356973 ot:0.009439492245336785 into:0.007812783742077856 through:0.007362209174773672 as:0.00656259301276315 which:0.0056258103626339005 over:0.005371768130691878 :0.07407947515357265 +went:0.0927774039628488 all:0.06463498121337967 go:0.05842403382303225 turned:0.053781602991305084 was:0.04713101927150155 came:0.04223901068603393 come:0.039343483179708594 and:0.03516518158629227 going:0.025942102445140478 them:0.02304459078550818 get:0.022763784301918756 looked:0.02252150617229802 presided:0.021802430852890946 it:0.020153327040319233 him:0.019511163412180243 passed:0.019166058976959242 is:0.017803026972838653 gone:0.0177705012247419 carried:0.01749732776808197 :0.3375274633330202 +of:0.19760850783328718 in:0.11728572009091695 by:0.080972350947564 with:0.042412415879572084 to:0.03726820784349727 from:0.03643359133670385 for:0.034612869889253044 on:0.03294868526255704 and:0.029851519853053204 upon:0.019912065468797122 one:0.019003225398995377 that:0.01789749056812994 In:0.01669037215967623 during:0.01654762710225729 after:0.014653061104431013 at:0.012993582679131435 through:0.008967188775321683 over:0.00541841293468511 under:0.004860701216086915 :0.25266240365608333 +any:0.1868275186127042 this:0.16678678732988186 the:0.13444655643051445 a:0.10035185855976307 no:0.07717763642092348 that:0.06956344667001924 every:0.057833929364835175 some:0.02539996981938542 same:0.02147412296654047 what:0.020533410048352244 one:0.017578003116555777 and:0.016125015318058482 The:0.014040040549127216 This:0.013773733212379529 No:0.009368995844675218 other:0.009232453469109423 his:0.00886107355930746 tho:0.008217632557230441 all:0.0077546468194051215 :0.033653169331231726 +of:0.09129790931378902 the:0.07369883040827747 and:0.047842263382354346 in:0.04189055351593407 to:0.04045875475680249 a:0.03542341257202578 be:0.02020462051672066 for:0.01979292654746225 was:0.01760256398103379 at:0.017380150555488715 is:0.014984483003968216 with:0.014047653760730413 by:0.01374644383819499 :0.012670486581795598 In:0.01200961464556976 or:0.011563835749786333 from:0.011391516893522809 are:0.011273104484969465 that:0.010755276030689069 :0.4809655994608848 +to:0.08785166685429117 and:0.03990491453203234 of:0.029773183506866578 com:0.017822269214704818 ex:0.016988547720093637 for:0.01545642226844891 1:0.015409369626172655 in:0.013854797557750181 con:0.013710228264427865 I:0.01223807321277684 -:0.011790578818751602 or:0.011599793185952402 en:0.009341443602957139 the:0.009177286725039107 t:0.008469877534354719 one:0.008117790311180114 three:0.007802564070047639 ¬:0.007645871506667276 de:0.007634057169359744 :0.6544112643181252 +a:0.09194977573142271 the:0.07861925793517778 and:0.07266389899357031 to:0.056863078723627725 of:0.04820886437648552 in:0.02400988336171847 will:0.019999997459468 an:0.017717282752887246 :0.015895379469729017 that:0.015809638695334367 for:0.015540173617672398 would:0.014167153659076493 at:0.013682592075724191 I:0.013206734811880267 as:0.012959202268106668 be-:0.011864393199729616 his:0.011341842425302603 with:0.010665146128268172 or:0.010396433688402677 :0.44343927062641575 +the:0.15666062565508787 of:0.1163496162694897 and:0.06157584245586571 a:0.046124566598187165 to:0.04484072438673125 be:0.04048717601082985 in:0.026919655374899962 for:0.023694329500172195 their:0.023001443844177693 is:0.022914456813349183 or:0.02041402634909368 his:0.019825369056388546 was:0.019005124328248062 this:0.01710163498825682 not:0.0159851943780859 at:0.015151009715691477 been:0.013788110733168352 as:0.012519563117144434 its:0.011212674928534935 :0.2914288554965972 +and:0.1340613210132163 the:0.07467890817964233 of:0.06026235804140643 be:0.03713764894376893 to:0.032857318620217436 a:0.02840020289588199 was:0.025494713259325733 are:0.02128243569108021 be-:0.020388749849605214 he:0.02023788313875733 which:0.018469762091472396 is:0.017575698164445954 been:0.01739026703112187 were:0.015862347965000512 that:0.015158899966867328 who:0.01477906147331587 have:0.013612551213078998 or:0.011603891080380065 they:0.01158880599566822 :0.4081571753857469 +the:0.1113960299581214 as:0.06921874295044513 of:0.06061119703299122 de-:0.04828592133606105 and:0.047056534516792356 a:0.027464773917652053 de¬:0.017182649201800893 com-:0.012663500369427632 be:0.010154546925260364 to:0.010038927451658701 The:0.009032523413878456 or:0.00898708733491867 real:0.00877037426633449 :0.008570787791592966 other:0.008133851057246124 in:0.007798798999460058 tho:0.007551772955684828 de­:0.007423831856965254 is:0.0073661998602629125 :0.5112919488034454 +ten:0.06717728987773862 six:0.06558739581937045 50:0.05622449146725482 10:0.0557483652059977 6:0.05544709220965052 20:0.04998460983964593 5:0.04547850557779688 five:0.04252102548529871 25:0.03609587489229599 7:0.029635947997879757 15:0.025053609859518426 30:0.02368345936696682 1:0.02217720313791365 3:0.021978331316801988 4:0.021524837892079644 seven:0.02132463472764241 three:0.021078715092724982 two:0.02061824395555318 60:0.020127115086307067 :0.2975332511915625 +degrees:0.15858474668778533 about:0.13215592182833857 of:0.11627770898251939 and:0.11268905559228967 the:0.05655217298646857 over:0.03815610015397543 or:0.03699080226018258 for:0.03475187501785688 than:0.03320834849291738 to:0.03302416872160422 nearly:0.029046072563518384 at:0.024403117464999787 in:0.015964980608068738 degrees,:0.015276663000875353 grees:0.012141370526935778 within:0.011644726338045062 About:0.011219573621127212 was:0.009181513660629958 last:0.00887317689344408 :0.1088579045984176 +of:0.17707557110387126 the:0.09435534190163343 and:0.077077452078529 a:0.056829483582957384 to:0.04592056660192242 for:0.04228168664246485 in:0.03597390072599397 all:0.023553441566706117 some:0.017612099827852334 or:0.016969491087898924 that:0.015064721002068114 are:0.013192962854634095 as:0.01254644703439677 which:0.012231558469495677 many:0.012209222300948105 by:0.010850035973050077 from:0.009726972972302544 about:0.009563471853481425 :0.009160074179963361 :0.3068054982398301 +the:0.13491241580352198 of:0.0795657432297625 and:0.07765805313408203 a:0.03905379715882466 to:0.0296712687576616 Mr.:0.027669337130575015 at:0.01964945308702087 or:0.018659102920091337 in:0.018130176357994753 The:0.01570632248609827 that:0.015591861330461025 :0.013996730685508682 his:0.013464575286145428 be:0.013276213523571317 for:0.012146985838637507 their:0.011504048307354492 tho:0.010738547514837509 was:0.01043437716356851 from:0.010410001443033837 :0.4267609888412487 +of:0.09129790931378902 the:0.07369883040827747 and:0.047842263382354346 in:0.04189055351593407 to:0.04045875475680249 a:0.03542341257202578 be:0.02020462051672066 for:0.01979292654746225 was:0.01760256398103379 at:0.017380150555488715 is:0.014984483003968216 with:0.014047653760730413 by:0.01374644383819499 :0.012670486581795598 In:0.01200961464556976 or:0.011563835749786333 from:0.011391516893522809 are:0.011273104484969465 that:0.010755276030689069 :0.4809655994608848 +the:0.11387631160356984 of:0.10580532718355573 and:0.07215535832276418 to:0.06738524499176411 at:0.04265320979288989 in:0.03389174436409162 a:0.02703533355831331 .:0.021052568710573514 for:0.020500484915162657 or:0.01511084095405802 on:0.01396640634974137 :0.013150674159599349 about:0.012184873846153407 from:0.009386230729366143 In:0.008597594229947094 with:0.00844022585235082 1:0.008116478878041922 The:0.007551689316234367 tho:0.007442708349529915 :0.3906966938922927 +sum:0.053502565800651755 one:0.04863328862163793 out:0.035683973520256165 day:0.03460963316312048 rate:0.03304434052294193 period:0.02998744163265456 instead:0.025384623207080986 quarter:0.01925151134218871 feet:0.01852443528600512 is:0.01711989554978958 and:0.017080138014479843 hour:0.016700540009438183 number:0.01617097391411627 pounds:0.01600754594247895 be:0.015441564152501846 amount:0.015209675504391113 end:0.015188833265731307 side:0.01517530957834742 distance:0.014996767554107797 :0.54128694341808 +Mr.:0.1168460677070591 boy.:0.10070043814008843 girl.:0.08649879473080174 of:0.05842307791729133 to:0.04747329291610041 .:0.04637626261838821 St.:0.033045476512426696 and:0.020270528008305436 Mrs.:0.01782288518496187 A.:0.017586819876055516 W.:0.012479881031340321 C.:0.01141187616299407 for:0.011273091050448898 :0.011128978943845836 the:0.010518904359226203 No.:0.010224048549872383 with:0.009813729947600552 John:0.009046933151980258 D.:0.008626175372431315 :0.35943273781878143 +.:0.15178589420417823 1.:0.05565529866140742 :0.03781912567597016 Given,:0.0338466165967966 2.:0.025026697410171155 3.:0.020200264895303587 enacted,:0.018677372023714264 A.:0.01842129439153787 4.:0.01420121196920737 Resolved,:0.013406947566939055 8.:0.011945536323805555 it.:0.011723889719642546 I.:0.009107169687623595 D.:0.008781103540449317 J.:0.008017872606622779 5.:0.007425743950365945 6.:0.007381276960835105 C.:0.0073641203240075335 enacted.:0.007008190459406065 :0.5312043730320158 +six:0.1471008558438935 eight:0.06755573153729412 6:0.06385534325505668 4:0.060561081835297285 5:0.05767894646362663 four:0.05562667907630916 12:0.054433770345688526 two:0.04990934484613866 three:0.04845406611752568 half:0.03693338222825956 18:0.035414081212935995 3:0.034637898099623504 five:0.03177470110576156 15:0.03170813221412331 8:0.03161678256256179 ten:0.03118214650147503 10:0.02935278980272909 seven:0.024915721273126665 eighteen:0.0216311511805578 :0.08465739449801542 +the:0.10146975887052734 of:0.08434216512577306 and:0.08261225289814826 to:0.0622000440787081 a:0.059076551780019554 in:0.040075608474225435 that:0.02132095883607911 by:0.017559273399929052 with:0.017504252425021304 for:0.014336804613488066 as:0.01232475868158029 or:0.012196791286245111 in-:0.011734703620716564 an:0.011298444613012796 at:0.010874974505550621 is:0.010682676674635795 :0.01066969480720836 In:0.010543569042453049 which:0.009818731226459232 :0.3983579850402189 +of:0.10628044137914659 and:0.09858851412360106 by:0.054970518446665166 Mrs.:0.05063933952696303 Mr.:0.030642477908657637 said:0.030071854229301087 to:0.026215702918951596 Sir:0.02100116435581407 :0.015507127797552684 that:0.010961938452516879 .:0.01086273654797447 the:0.010296615434496876 from:0.008699758009057897 girl.:0.007876715002865544 Dr.:0.00716136339427086 boy.:0.0068190789325185755 at:0.006727141060927073 Rev.:0.006287172519699314 I:0.006142347135473656 :0.48324799282354597 +of:0.20624062274996796 in:0.11460371522166311 and:0.06056774708195829 In:0.038687655376861974 by:0.02626929595245045 for:0.025238775123247417 or:0.02274429117307567 to:0.02163249090162595 on:0.020709106182948262 an:0.019198889460378007 with:0.016113867383860427 is:0.015453607414492705 the:0.014012202579118376 that:0.013994532198315897 at:0.013988701188123315 was:0.013885391367259593 from:0.013412264890861756 as:0.01260141220473384 than:0.011800705774687191 :0.3178447257743698 +it:0.09606523003956101 and:0.07834452498273939 he:0.07573835710880551 they:0.06505364027730551 which:0.056140363761799345 It:0.04263804195366965 I:0.04058537575590958 who:0.03734027966286201 that:0.03654104383065465 you:0.02999648409498698 we:0.02508294337979338 He:0.016379180046647034 she:0.015753592335943395 as:0.013170225282446893 They:0.012039542527671471 the:0.011600591267415169 man:0.00963698976337265 there:0.0095343493601173 This:0.009246936693130866 :0.31811230787516825 +the:0.4071374189315913 and:0.06449181461132415 of:0.02892866618288876 in:0.028670005984162618 The:0.02603617389223924 tho:0.024993820467459137 a:0.023579040051412606 to:0.01755553213771617 on:0.014626070241060114 by:0.013447843485786471 or:0.012794166593089693 tbe:0.012024509152999897 :0.010353482361299817 that:0.009291482237329618 In:0.007938246807075932 from:0.007526799010378873 other:0.007469196869028889 all:0.006409533041696086 for:0.00626887758057738 :0.26945732036088327 +and:0.11167699966286179 was:0.043208044484294286 is:0.03493321219044447 feet:0.026757069544515146 are:0.026399519281537137 be:0.02389442772179564 that:0.020972433348347364 made:0.020613047225957713 it:0.01993240049991877 were:0.01783567301051259 up:0.016683535870211257 been:0.016432560130789538 put:0.014398814010111125 as:0.013472317453483125 them:0.013091661398280777 inches:0.01294017710839204 out:0.012767450993127207 but:0.012614916372712871 or:0.012422645233639347 :0.5279530944590678 +and:0.07131469376796554 him:0.06047603511101013 was:0.04114126264275024 put:0.027312086617545313 out:0.02674608368474894 down:0.024297762969870237 up:0.02390239069056431 placed:0.023763031962638324 it:0.023372345259535937 man:0.016887465320545116 back:0.016198851650579126 himself:0.015857320059021175 work:0.015440966939421895 them:0.013975555395019735 made:0.013214125129392872 sat:0.013194117313576887 found:0.012813491953855116 is:0.012637112926592092 up-:0.011973387639661923 :0.5344819129657051 +to:0.2958488172291813 will:0.2221259672882793 shall:0.09888093022532546 should:0.0596297389600682 may:0.05108388235534139 can:0.04336496149113113 would:0.04016585904157254 not:0.03339712166451829 must:0.03309835075894306 could:0.025159295795382702 cannot:0.014710206480436465 and:0.010056062498345647 might:0.008044665667283651 that:0.004442124895577211 which:0.003145123528196562 it:0.003076896381039365 also:0.002988528365005657 never:0.0022691658719487086 probably:0.001738150864282841 :0.045774150638140484 +to:0.6975899137034464 and:0.08883693936351833 will:0.04032721425580487 not:0.016414174768263123 at:0.01621272061379879 would:0.009345134896623437 To:0.007307106724292041 who:0.0073066542368497465 of:0.007151220584699761 the:0.007017579402286165 shall:0.006883589720227571 can:0.006574997781351714 they:0.006512573063489601 we:0.0063042439103833834 that:0.005666808268583893 may:0.005134569493011766 I:0.005130632009119494 or:0.005091909201790636 by:0.004838928250620986 :0.04935308975183831 +of:0.10011889988448786 in:0.0522634632253594 the:0.040908277560786604 to:0.04013096259863325 on:0.0303105002351776 and:0.02909065574737109 be:0.023257581603675623 was:0.022983149059219755 a:0.022071197747629143 for:0.015982316371900715 with:0.014460964907291112 is:0.013966464439930493 his:0.012503531179702468 were:0.012214481108208178 :0.011524330898422716 her:0.010590381546942413 In:0.010344865509883524 been:0.010242754506587114 at:0.01002822502148387 :0.5160069968473071 +his:0.2380523209776054 their:0.16200021179159518 the:0.15723080713098173 our:0.05133700552619619 and:0.05106680175383505 its:0.040830345156700816 my:0.030428364292531613 your:0.02915707496273472 such:0.0222273556619704 her:0.018367668670199604 a:0.017140948507977146 in:0.013389461292229385 of:0.012881631217348892 bis:0.012688254323265596 prob-:0.008204385812693882 said:0.007907433969394828 any:0.0077939888294238455 The:0.0071511795157035265 public:0.006925416423226508 :0.10421934418438566 +a:0.4107939482637245 the:0.1601360269742267 of:0.06332570066237955 and:0.0442518309066181 to:0.04163624188778298 in:0.03429397995336433 with:0.022556753769286265 his:0.01399407876700999 this:0.0135187666046923 In:0.01327267171620338 or:0.010381451651952688 A:0.009815542727986107 tho:0.009067190062504596 by:0.00882091363729522 for:0.008277816723627915 very:0.007866420062851593 all:0.00768214637819105 from:0.007026910124533218 The:0.006798301064972252 :0.10548330806079723 +the:0.39868971418449306 a:0.29748846418283653 of:0.055732637131813846 and:0.025577039979665765 for:0.021779887194140764 tho:0.021524962854388745 The:0.021095742267424764 A:0.016767144339249144 his:0.012138801264812548 our:0.010794923535901118 other:0.010422326190946381 with:0.009122908800669391 two:0.00856101354463209 by:0.008170666956054938 that:0.006617063790052137 old:0.006043025690403708 tbe:0.005806969685938506 to:0.005605841377260841 their:0.0052667760548391765 :0.05179409097447652 +the:0.04180876516729005 and:0.035470148547388426 -:0.03367995738016101 of:0.032941071147231486 to:0.025241038864814744 at:0.02272132391778725 I:0.020035462279473275 i:0.019632009199160777 :0.019585407515005468 a:0.019143483301939546 was:0.018789542142000282 .:0.017805263190756142 it:0.0161467096728317 t:0.014785011831117453 be:0.013834206913824188 It:0.01152110820919463 he:0.011092450630117792 that:0.010505822186177117 in:0.01018303971668539 :0.6040781781870432 +the:0.11919516938815296 of:0.07230453158552728 and:0.05781056740443249 a:0.043018564803886335 to:0.031305092790907506 in:0.020848713353460488 at:0.014270110001066288 .:0.012526810245749479 :0.012413283442322082 for:0.011719122709941797 by:0.010808400946589808 or:0.010404172990115616 The:0.01003576004804544 with:0.009811868184449042 tho:0.009295902015355835 was:0.008924239095331684 that:0.008672304223433876 is:0.0085591147338948 be:0.008335143826716943 :0.5187411282106204 +the:0.4071374189315913 and:0.06449181461132415 of:0.02892866618288876 in:0.028670005984162618 The:0.02603617389223924 tho:0.024993820467459137 a:0.023579040051412606 to:0.01755553213771617 on:0.014626070241060114 by:0.013447843485786471 or:0.012794166593089693 tbe:0.012024509152999897 :0.010353482361299817 that:0.009291482237329618 In:0.007938246807075932 from:0.007526799010378873 other:0.007469196869028889 all:0.006409533041696086 for:0.00626887758057738 :0.26945732036088327 +the:0.13041876475116024 of:0.11490937738478903 in:0.1095679669064316 to:0.09782004035913724 his:0.08641452109911571 their:0.060388544089860156 her:0.042526673359407206 and:0.037682998518978744 a:0.0372207960539026 In:0.025303336565786615 with:0.02415485675714196 my:0.022818748343422103 for:0.018731833169530608 its:0.018692851911972393 this:0.017942543617343574 own:0.014665328957462292 your:0.014592490654225817 from:0.013531469606566867 that:0.013489314194472567 :0.09812754369929268 +and:0.08793106950392836 of:0.05870922196792238 in:0.03219222023125805 not:0.03216719375181745 was:0.03075344755995001 the:0.02998372154203253 one:0.026699386743182445 be:0.025158953534672346 is:0.024801204298767407 or:0.023608145674605202 you:0.02056823072194606 a:0.018956715104282783 that:0.017207782702304143 some:0.016828805414151406 by:0.016783766168725532 an:0.01603965191421706 are:0.01588388088770108 much:0.015761377664998962 any:0.01437714688332314 :0.47458807773021366 +be:0.2322946061538031 was:0.2021816955983338 been:0.10080970414619517 is:0.09944497135746387 were:0.06736258807269811 are:0.0584235379767992 and:0.025760349851695098 being:0.021655185781479392 not:0.0214543631209669 have:0.015961267115083125 I:0.015388360715377063 had:0.01506407951641531 Is:0.012443499415237475 he:0.012113594108713995 bo:0.010555341215341818 has:0.009040965975824745 they:0.007447936915454695 ever:0.007163001322507041 we:0.0062785552119286265 :0.058156396428681444 +the:0.346090468178859 of:0.10787556767068046 their:0.0908763149782465 our:0.060303867485241476 his:0.05232561459369161 a:0.02769122271433044 its:0.026509795162241646 and:0.023584505914902708 fundamental:0.02182240684474973 to:0.01816144870155332 tho:0.018148462622955636 The:0.015462222441158134 great:0.014327061420659442 good:0.013234156411349854 in:0.012939244384524776 or:0.01236591984584 public:0.011579365598658844 her:0.011439942231123008 no:0.009257120519241014 :0.1050052922799924 +to:0.19499796842029593 with:0.12574780107982636 of:0.09093978700669719 upon:0.058527009883763484 for:0.05211025274463614 on:0.04426169356978116 by:0.03857254303060432 against:0.02827619608077792 about:0.027214032156344825 from:0.02450383734434056 over:0.014399531045414322 before:0.014140202449830483 behind:0.011192432163167057 at:0.010974062942433886 in:0.010924706254722583 see:0.00902279228277472 among:0.008650797264174765 kill:0.008438312885297379 around:0.008099904772958567 :0.21800613662215834 +his:0.4006667765290473 His:0.10547443084383183 my:0.09006964366250428 the:0.07327843167517194 The:0.05394952815645021 My:0.045386299115114624 a:0.0422757355077568 her:0.03514179377704805 and:0.03169513411578169 bis:0.016908339082666916 their:0.008563577977372764 Her:0.008493723895025031 whose:0.0075940001432210184 that:0.007538849373363992 of:0.0070810226414109645 your:0.0067519700259035175 A:0.005235119724556985 our:0.004714835059891172 its:0.0034881550053718247 :0.044692633688509106 +one:0.1028303141280697 part:0.05963429477052991 out:0.04766456937681193 some:0.031418679026461914 members:0.030764490253327767 side:0.029940657362655835 portion:0.022063658796890564 office:0.020457735219956013 member:0.019726706386316174 end:0.019666887540649894 tion:0.018667441728710307 parts:0.016814747270460957 people:0.014112771422418794 all:0.014072739582212475 any:0.013183573287639892 One:0.013083578354183906 that:0.013024335602903442 account:0.012482348155001894 many:0.012077825070275192 :0.48731264666452345 +one:0.1028303141280697 part:0.05963429477052991 out:0.04766456937681193 some:0.031418679026461914 members:0.030764490253327767 side:0.029940657362655835 portion:0.022063658796890564 office:0.020457735219956013 member:0.019726706386316174 end:0.019666887540649894 tion:0.018667441728710307 parts:0.016814747270460957 people:0.014112771422418794 all:0.014072739582212475 any:0.013183573287639892 One:0.013083578354183906 that:0.013024335602903442 account:0.012482348155001894 many:0.012077825070275192 :0.48731264666452345 +and:0.08995317707915026 to:0.06844710404109794 of:0.04605142056172993 the:0.04074574508561307 which:0.02479116931334353 that:0.023764822140213245 re-:0.020841117231308055 in:0.020803825395358622 for:0.020278423301550053 :0.018417753428486977 not:0.016860793136637672 con-:0.016444405871234195 is:0.014386481772210856 or:0.014080680914153714 be-:0.01352268143271276 I:0.01317002660943805 was:0.011429878269381662 dis-:0.011196807025842847 he:0.01113106290024311 :0.5026826244902934 +and:0.16141415057647165 that:0.07068407833902839 but:0.03473897618510296 worth:0.022227897053065465 ;:0.021279288431963566 and,:0.021095042777978325 that,:0.019845684563128085 a:0.016816846327535148 them,:0.01466101643799347 the:0.011593518618349325 for:0.011290992371608456 little:0.010249930408297383 And:0.009914969815564627 long:0.009603633038601313 it,:0.009422773828550057 But:0.009267401727171913 which,:0.008251527911359106 even:0.008100241790975224 him:0.007896490925885041 :0.5206455388713704 +of:0.16214494337869884 and:0.11174482382917668 or:0.10167572335090624 about:0.08788948768708091 for:0.07312621363866925 the:0.06939085572962779 than:0.05911144858502895 thousand:0.05038456646919646 to:0.03941513308594898 nearly:0.02311984803426984 numbered:0.021381728959517714 over:0.02038894619851932 a:0.014893616116622299 least:0.014434995794124373 from:0.013854376746797521 in:0.013341323477175707 with:0.012569857535032205 only:0.012199906491085781 township:0.011572989539833827 :0.0863592153526873 +the:0.11919516938815296 of:0.07230453158552728 and:0.05781056740443249 a:0.043018564803886335 to:0.031305092790907506 in:0.020848713353460488 at:0.014270110001066288 .:0.012526810245749479 :0.012413283442322082 for:0.011719122709941797 by:0.010808400946589808 or:0.010404172990115616 The:0.01003576004804544 with:0.009811868184449042 tho:0.009295902015355835 was:0.008924239095331684 that:0.008672304223433876 is:0.0085591147338948 be:0.008335143826716943 :0.5187411282106204 +of:0.3291126956436847 in:0.08903015501455883 to:0.08299844886941167 that:0.06312973984608437 and:0.05955612986167232 by:0.03887826480867045 from:0.03727275893160271 on:0.034308327562425266 for:0.026443747283374015 In:0.02146499707547602 with:0.020916637834629617 all:0.01534268990265243 which:0.014089606679235747 at:0.012554957300252492 as:0.010928752710260775 into:0.01048582037931962 upon:0.010304225089100703 was:0.009621909784498214 when:0.009193416523993839 :0.10336671889909617 +to:0.3724136609284949 will:0.09793016352155753 had:0.09061449903189463 have:0.06591753056796709 has:0.04430986844597608 would:0.036144872549186906 not:0.03401327148733618 and:0.032782040339135676 they:0.025176525258055485 should:0.019044051130787266 must:0.017711644692036205 may:0.017248674779296463 shall:0.015456311346094011 I:0.013119488628842168 who:0.012551195755356681 that:0.01051266777945385 we:0.009126909004118782 never:0.009084689520924324 you:0.009047408614806551 :0.06679452661867918 +virtue:0.062060494787377685 out:0.05417899169104244 part:0.03289673107629515 one:0.02969369892462812 quarter:0.027015883171169475 favor:0.01993830018372674 result:0.019463829004704194 guilty:0.018891084377354095 means:0.018499162894926688 end:0.018170939082736048 that:0.018121271122199262 construction:0.01726217741616459 presence:0.017003995482744873 tion:0.01673652166540914 case:0.01640819963257697 side:0.016055927605250184 erection:0.015381239457214257 account:0.015287601389485416 hands:0.015156055434805247 :0.5507778956001894 +of:0.09105697965602007 to:0.06835403222619532 the:0.06671652993872725 by:0.048730448724857316 and:0.04351836712257745 :0.029624099012636913 on:0.026530987510784313 in:0.018532340694666527 that:0.01824403900699882 from:0.016553515320769454 was:0.014919362151572033 a:0.013630867211222997 at:0.011265555060570394 for:0.011016653342112465 as:0.010172446376645177 which:0.008951424711386664 is:0.008126138792470733 with:0.007756651997094048 .:0.007444490206944457 :0.4778550709357476 +the:0.3349755008978361 a:0.07348763185549995 and:0.06987293040148565 of:0.03948057270038513 The:0.03571619605907615 tho:0.02610978851177369 on:0.01858446987937591 an:0.015221435550944299 in:0.012307759086805514 A:0.011833182303271074 :0.011644528987952775 tbe:0.011549228606956204 as:0.011211974291199588 this:0.010378852653856241 .:0.009905361219791376 that:0.009838395844448672 by:0.009478425610798391 or:0.009394955882485206 to:0.0065249063454430505 :0.271483903310615 +of:0.19670171914364745 in:0.12594456525419465 to:0.11195078060073796 for:0.09854097971370278 and:0.06931473831609072 with:0.05663515752999775 by:0.03284844312447738 that:0.028051233095088435 all:0.027870457622776276 on:0.02628392730337427 In:0.02101919661484217 from:0.02030169313778227 upon:0.01733515744060804 or:0.01391263510409966 as:0.013490602754021412 at:0.013367967679645648 make:0.013139107170770664 up:0.010130871369666724 have:0.0082774081117558 :0.09388335891271996 +was:0.13010314238119808 and:0.11571680265317073 is:0.10246153481377429 not:0.07215427567922694 are:0.06358133101207637 been:0.05624386995276622 be:0.055107717905328854 were:0.037735086903105654 do:0.02850299507265691 of:0.024270986447044823 or:0.0218012215815061 done:0.017430575559738974 Is:0.017098288659305485 to:0.015758347441028765 have:0.015408561068536747 being:0.015263908479829237 for:0.01437782116905307 has:0.013664027880165176 that:0.01332150149975251 :0.16899800384073507 +purpose:0.05343987672295106 instead:0.05203517114779003 out:0.04495349021221376 sum:0.028097323986010666 is:0.0276662538969157 question:0.021242506844329097 are:0.02118568110965169 amount:0.02104616163694197 disposed:0.019589300691554175 means:0.01943459313826336 Instead:0.01921002990932253 number:0.019176195977275243 rate:0.019117522669367473 be:0.018911239337880394 matter:0.018078308224272442 cost:0.01696131371556076 account:0.016153325829627637 necessity:0.015592084909243405 use:0.015326296466268931 :0.5317833235745597 +;:0.01458927046758731 it,:0.007973265891266864 him:0.007834970369143835 one:0.007240974664279108 in:0.006989508095588829 and:0.006417396987522371 ,:0.006059091806132192 it:0.006014614548599763 up:0.005812344146302806 out:0.005395853159197619 them,:0.005290532062834904 him,:0.004938420268273817 city:0.004793760033506698 :0.004646491011450349 man:0.004641061555670736 country:0.0046164671969483135 feet:0.0044416267197611185 time,:0.004376787347733258 time:0.004358244018157902 :0.8825693196500423 +the:0.45482968356044434 a:0.15355328912040003 elective:0.05559283500584429 of:0.042012226340477694 this:0.032873351732963914 tho:0.02648978159377402 his:0.023858384985363728 The:0.022475562448794516 in:0.02045961823243809 our:0.015668261570355495 to:0.01209897294619527 tbe:0.011764100209825084 and:0.011350019113317613 your:0.010802112818909618 their:0.010419043025252322 for:0.009456474693608254 by:0.008515043073973926 with:0.008354694322832347 said:0.007415014635431436 :0.061011530569798036 +of:0.26096241923706714 to:0.13156229062452235 for:0.10964044109262804 in:0.0938845801302892 with:0.05061435715766498 and:0.040839411799153534 by:0.03791184726962883 all:0.0342529585463036 from:0.026939465619864253 on:0.026889840777226188 that:0.02588592542711391 In:0.022556172601508124 during:0.01562780223403057 upon:0.01258365210044311 at:0.010589788906578707 into:0.010185433989749937 is:0.010030260390339997 through:0.009580838285556722 over:0.009554990906047483 :0.05890752290428333 +it:0.06390656778305297 taken:0.06161990358500397 made:0.038592520716625216 him:0.03532930656977818 put:0.0325047976687201 them:0.030432328702820893 came:0.027956385612826595 get:0.025722744871637008 come:0.02294890611932218 went:0.02217576154020332 broken:0.021136394837296294 got:0.0195467937613264 set:0.019062721596351726 let:0.01698845063724244 brought:0.016454201081937573 go:0.015576339815847256 and:0.013843226719013571 make:0.012800986328590058 well:0.011487464754348396 :0.49091419729805585 +of:0.20896151656510636 in:0.16352886997037175 to:0.11616059907152265 for:0.0714683071226213 and:0.049528388299097115 at:0.04943157077393233 from:0.03830469272566611 on:0.03608677745775044 In:0.035748604383076775 by:0.03481809935910431 that:0.03001467655266553 with:0.028617566877186612 upon:0.012041859209891387 as:0.00999011213409558 through:0.00936628265016159 into:0.008967647396831804 all:0.008057994857183592 before:0.007796653249425781 which:0.007778760433219669 :0.07233102091108935 +went:0.08613620196956707 go:0.0694268667957187 brought:0.04095472427563564 came:0.034372939086667546 going:0.03126152253195722 come:0.030718826676868757 put:0.026441065884963543 get:0.02529670690745761 up:0.024551916768380273 down:0.023916386707757142 and:0.022894529119855945 out:0.022453999082278974 them:0.021935370235512144 back:0.0194645309999023 enter:0.018821302397165864 goes:0.018230975589508643 thrown:0.017355165207024188 him:0.017061615989272517 gone:0.016728348880880952 :0.430977004893625 +be:0.22853409350062595 been:0.08950320741843579 was:0.0850863275111729 were:0.04907062058937869 and:0.036978879146546656 are:0.03572250536811029 is:0.027300139956462532 being:0.021909612276180154 have:0.021676143799615653 had:0.01804142073446926 well:0.01763189169272572 he:0.015976790436114205 bo:0.015891526670161863 has:0.013963143087215694 the:0.012671405875433852 all:0.011787939009526991 of:0.01086214705334497 or:0.009275012298019336 pure:0.008767552565620607 :0.2683496410108389 +the:0.18126768217432415 of:0.07977618088041735 and:0.07265163760880113 at:0.044721163862373625 a:0.043611741685391975 in:0.03904242085937153 to:0.035338760522854444 for:0.019812725227722008 The:0.016962404908320017 on:0.01688425988366816 or:0.01555035455932878 In:0.014691295422458785 an:0.014684902153633083 was:0.014054155543173347 tho:0.013596142911084286 his:0.012717125776762555 that:0.011938085480465597 by:0.011733364986576886 be:0.01125521387618249 :0.32871038167708977 +that:0.14445474774767025 and:0.12270859661844348 as:0.07585896247118307 which:0.06651171766054059 to:0.05978911538470299 but:0.038577173790588115 will:0.03525031795620481 may:0.0279739029858181 when:0.0261231980473173 what:0.021662918440937765 shall:0.020371759556814407 would:0.019680780308746957 not:0.01955293784434979 should:0.017727173542001016 can:0.0165488708628326 where:0.014392979111217225 if:0.012082400373815912 I:0.010867489792787913 because:0.010477203737230656 :0.23838775376679705 +and:0.012046110096263076 it:0.009809738505838566 he:0.007677307791807034 .:0.006678728728456545 well:0.006077963917652803 ,:0.006029799756759148 them:0.005771243617951329 I:0.005709892845390209 County:0.005678007158821931 that:0.005626767363584445 lying:0.005579871224141095 ;:0.005215443777215197 of:0.005094970674676652 day:0.004654280847500333 house:0.004652104040461445 county:0.004638077244714924 it,:0.004484703079502025 :0.004464863596711642 :0.004426097473797979 :0.8846840282587537 +the:0.4071374189315913 and:0.06449181461132415 of:0.02892866618288876 in:0.028670005984162618 The:0.02603617389223924 tho:0.024993820467459137 a:0.023579040051412606 to:0.01755553213771617 on:0.014626070241060114 by:0.013447843485786471 or:0.012794166593089693 tbe:0.012024509152999897 :0.010353482361299817 that:0.009291482237329618 In:0.007938246807075932 from:0.007526799010378873 other:0.007469196869028889 all:0.006409533041696086 for:0.00626887758057738 :0.26945732036088327 +the:0.11919516938815296 of:0.07230453158552728 and:0.05781056740443249 a:0.043018564803886335 to:0.031305092790907506 in:0.020848713353460488 at:0.014270110001066288 .:0.012526810245749479 :0.012413283442322082 for:0.011719122709941797 by:0.010808400946589808 or:0.010404172990115616 The:0.01003576004804544 with:0.009811868184449042 tho:0.009295902015355835 was:0.008924239095331684 that:0.008672304223433876 is:0.0085591147338948 be:0.008335143826716943 :0.5187411282106204 +of:0.09129790931378902 the:0.07369883040827747 and:0.047842263382354346 in:0.04189055351593407 to:0.04045875475680249 a:0.03542341257202578 be:0.02020462051672066 for:0.01979292654746225 was:0.01760256398103379 at:0.017380150555488715 is:0.014984483003968216 with:0.014047653760730413 by:0.01374644383819499 :0.012670486581795598 In:0.01200961464556976 or:0.011563835749786333 from:0.011391516893522809 are:0.011273104484969465 that:0.010755276030689069 :0.4809655994608848 +the:0.3973683479643508 an:0.2800141417386146 his:0.043962959879328176 The:0.03064213543269534 a:0.028161206618827987 her:0.023658003250065972 tho:0.02038801815406721 years:0.017334400671846106 my:0.016364754021028185 of:0.013412031363875827 An:0.013315103471840199 their:0.009988742801145185 and:0.009290894521007391 very:0.008503837976651904 grand:0.008410510371938377 tbe:0.007232274854069755 our:0.005676626390485864 good:0.005360550126447149 dear:0.004982807958917399 :0.05493265243279664 +a:0.46129919648407147 the:0.24444753194199825 The:0.03199060251049669 and:0.031111122496954993 any:0.028734386987761366 of:0.02827171333577008 no:0.02539115741302474 to:0.02028426715358709 in:0.015661124020368747 its:0.01361912876516815 tho:0.012571106220123144 most:0.011351114454696222 A:0.010805574324839244 by:0.009496390396213372 their:0.00801502694300733 or:0.007682269399460816 our:0.006438321170757387 his:0.006093290914497114 with:0.005097942119390754 :0.020638732947813043 +the:0.10727238322563422 and:0.06000055590015782 a:0.05513850707830498 be:0.0505352392019535 of:0.047822498252997385 in:0.04580463250131516 his:0.03209721343268347 to:0.030675621265536548 was:0.026907998523880938 is:0.022365919708545002 for:0.019298081045217925 at:0.01780235393880387 their:0.017241120908284325 her:0.017189250241439687 with:0.015766342522436225 or:0.014586761253444932 been:0.013365784266769263 In:0.012666207473245343 that:0.012082608883410149 :0.3803809203759393 +the:0.7079275674007492 The:0.06561181422242734 at:0.033949945373246526 tho:0.031652781454961317 his:0.022868791183412857 and:0.011843688605031351 tbe:0.011527469215880723 At:0.010306120971283843 their:0.009417265958354544 its:0.008721199756453838 our:0.008492514507510405 my:0.007456884987254967 to:0.006976596846447876 of:0.006413916294088565 her:0.006071765608197191 on:0.005299088712255873 was:0.004893136060349605 a:0.00434959335658375 had:0.004097167821701144 :0.031122691663808953 +some-:0.1234743379392988 any:0.10206808897158887 one:0.09706060058462522 a:0.09425856619296182 the:0.08136029719558459 any-:0.07215791622309824 every:0.05452226259905358 every-:0.03410097417731004 good:0.03125869842234706 some:0.030043184878145647 only:0.023763206887849764 no:0.02102911949904078 some­:0.01941120689148999 this:0.0190625596245277 other:0.019055121820051073 first:0.018123334655510512 any­:0.017157633725092894 some¬:0.017035988833542997 same:0.01666020268627002 :0.10739669819261043 +therein,:0.051141756322981166 dollars:0.026257803112770463 ;:0.023608894530896467 and:0.019150508571395733 offense,:0.016172539240172746 dollars,:0.014273425001210703 law:0.013970282135191534 recover:0.01348409739723071 I:0.011100859835788304 States,:0.011039363117285431 land:0.010951846097677947 thereof,:0.010369884243467872 same,:0.010192152973727624 them,:0.009947444603481938 that:0.009868658527333199 it,:0.009227464143547436 act,:0.008314183537369728 of:0.008145048487035483 the:0.007548918611523911 :0.7142348695099116 +one:0.015552536992080472 more:0.014252271697624306 on:0.010631301787611593 day:0.010222750824534239 two:0.010216157614982159 person:0.007504694644314241 in:0.007364820929323563 man:0.007179188731169107 law:0.006205362369136604 action:0.006166303509128973 and:0.005659786788634644 city:0.005177234665142273 three:0.005130416479837977 State:0.0047265097104810415 to:0.004696031397422901 ten:0.004594585978494318 of:0.004463781172886088 town:0.004231879326219736 year:0.0040256313925199315 :0.8609987539884558 +of:0.09129790931378902 the:0.07369883040827747 and:0.047842263382354346 in:0.04189055351593407 to:0.04045875475680249 a:0.03542341257202578 be:0.02020462051672066 for:0.01979292654746225 was:0.01760256398103379 at:0.017380150555488715 is:0.014984483003968216 with:0.014047653760730413 by:0.01374644383819499 :0.012670486581795598 In:0.01200961464556976 or:0.011563835749786333 from:0.011391516893522809 are:0.011273104484969465 that:0.010755276030689069 :0.4809655994608848 +and:0.10119789434721585 the:0.08750650826269914 of:0.06965652901268303 to:0.05397231607343732 be:0.036865526523342323 was:0.035053854231348616 in:0.031304212937328754 is:0.026000336185972757 are:0.0211137244270955 were:0.018396838756921496 con-:0.017174874810272 been:0.01699376096117119 for:0.016754654309511306 com-:0.014528737373553537 much:0.013539613194676265 their:0.013377304520975603 he:0.012755370579971337 or:0.012523440083369532 not:0.012362122862064477 :0.38792238054639 +the:0.1894558144825044 have:0.1288067568521451 of:0.08436577692881012 and:0.052735887773312506 in:0.04062524717144298 has:0.038105273011069744 their:0.037492267607489145 to:0.03026092185628775 had:0.029603316810732718 his:0.028395078862807985 this:0.024790484643396966 a:0.021793127005090236 by:0.021726551425328262 its:0.019379917702654532 which:0.017628888527314264 that:0.017244962934714926 for:0.01716683860543347 no:0.016461537594515224 motive:0.015485026971383873 :0.16747632323356584 +and:0.03868242960999506 as:0.031124813427855922 went:0.02352509775927722 him:0.02196555539050794 them:0.018760608639018784 up:0.017985449426794205 is:0.017894175620344187 go:0.017174904667157563 able:0.016756848979943888 going:0.014481672239490295 it:0.014128375989346808 was:0.013277058274565138 time:0.013249953793837373 not:0.012469887553778763 began:0.012465717758716884 way:0.012105610030480113 back:0.012090864562211581 right:0.011941707822828511 amounted:0.011564315359310868 :0.667354953094539 +the:0.24130119169437084 a:0.21669375429182128 of:0.05252516924452773 his:0.051420343012483355 and:0.05139992581901446 good:0.02713776536272692 her:0.024073884367468025 The:0.02334383208127768 to:0.020866648510855908 this:0.01785073493142545 A:0.014453698345524232 in:0.01389103642926637 with:0.013554115626105359 tho:0.011748176670455242 old:0.011358710664335785 by:0.01084752933139813 our:0.010279348711452712 my:0.009897107738390162 your:0.008900228680282507 :0.16745679848681785 +at:0.15778055778949782 No.:0.0749738654823242 and:0.056532857262899285 of:0.04890580562367374 the:0.03356658043613849 lot:0.02559566579685953 block:0.01977085311069231 Range:0.019519062209269498 @:0.018432495253906344 to:0.017210266950400007 about:0.01632256953119777 June:0.015451438118257714 Mrs.:0.015101280442494999 by:0.014494164247364457 range:0.013850974457675271 Section:0.013528140186595036 from:0.013244606729599534 No:0.012383946109325285 Mr.:0.012101243421712735 :0.400233626840116 +the:0.20365443553319879 of:0.050279823225293445 :0.04502807092778685 The:0.035413234261277016 and:0.032624764384768266 .:0.020764948091692874 said:0.020092172494135616 to:0.017938160157696795 by:0.01712720370180094 Mrs.:0.012952641127922907 that:0.009485689851280035 Dr.:0.008478354216589021 tho:0.00827191672086892 follows::0.007890175151137171 Mr.:0.00721862772974915 ::0.006452689969601979 a:0.005934410881939964 I:0.005207167814199839 A:0.00469822277884129 :0.47948729098021914 +the:0.15812949844933372 and:0.09640349194698747 to:0.05573027463176477 of:0.049363673480981 will:0.032531760237946204 a:0.02458618886095609 in:0.022473615767002054 would:0.013985148730827407 that:0.013887926468470724 his:0.012567449349705467 The:0.012012582799053623 their:0.01197998761947862 re-:0.011346357525296868 for:0.010850321639122956 :0.010827259024033479 which:0.010051912274639235 he:0.009801121083486622 con-:0.00970019121935872 I:0.009450028639558593 :0.4233212102519964 +the:0.03158797080961411 and:0.025011925166701317 a:0.018860934278510724 well:0.01838219801674568 all:0.016423657088601485 out:0.015831212240483422 to:0.015640469502218153 time:0.014717094062321362 made:0.013619078458420926 it:0.013145429608601902 be:0.0126492222884944 men:0.011525000488299277 tion:0.010649571284826388 of:0.010377358753565817 them:0.009932475454774707 both:0.009714231585306926 up:0.009048293899713357 is:0.008917115819893897 that:0.008911645795760611 :0.7240551153971456 +the:0.4071374189315913 and:0.06449181461132415 of:0.02892866618288876 in:0.028670005984162618 The:0.02603617389223924 tho:0.024993820467459137 a:0.023579040051412606 to:0.01755553213771617 on:0.014626070241060114 by:0.013447843485786471 or:0.012794166593089693 tbe:0.012024509152999897 :0.010353482361299817 that:0.009291482237329618 In:0.007938246807075932 from:0.007526799010378873 other:0.007469196869028889 all:0.006409533041696086 for:0.00626887758057738 :0.26945732036088327 +and:0.09803112916904792 the:0.09608336244814306 of:0.08347551071875302 an:0.05712856716063461 to:0.057007470957291015 in:0.047568148415519436 by:0.03186100307575981 a:0.027304580938897212 are:0.024022022962782507 is:0.023488563921010067 was:0.022349629200446315 not:0.02036092191683342 at:0.019935597258085025 with:0.017981104749636614 on:0.01661790237998191 be:0.015930775106619274 no:0.015840875080935513 The:0.01485666416695143 all:0.014468137839852502 :0.29468803253281933 +the:0.11919516938815296 of:0.07230453158552728 and:0.05781056740443249 a:0.043018564803886335 to:0.031305092790907506 in:0.020848713353460488 at:0.014270110001066288 .:0.012526810245749479 :0.012413283442322082 for:0.011719122709941797 by:0.010808400946589808 or:0.010404172990115616 The:0.01003576004804544 with:0.009811868184449042 tho:0.009295902015355835 was:0.008924239095331684 that:0.008672304223433876 is:0.0085591147338948 be:0.008335143826716943 :0.5187411282106204 +in:0.14048713722096412 for:0.12045306486651125 of:0.1150959154773748 within:0.061090158043955345 and:0.05346109170384797 only:0.04877263632788032 In:0.04433449219687606 with:0.037160146048207214 is:0.0315421892589043 but:0.029830979859766554 by:0.028968633883732185 to:0.025999925223267443 was:0.02505070588261269 after:0.022494641765410772 that:0.022285961534963723 as:0.01690029607373616 from:0.014222657035431458 or:0.013178995054789719 made:0.012188942064310933 :0.13548143047745698 +;:0.01458927046758731 it,:0.007973265891266864 him:0.007834970369143835 one:0.007240974664279108 in:0.006989508095588829 and:0.006417396987522371 ,:0.006059091806132192 it:0.006014614548599763 up:0.005812344146302806 out:0.005395853159197619 them,:0.005290532062834904 him,:0.004938420268273817 city:0.004793760033506698 :0.004646491011450349 man:0.004641061555670736 country:0.0046164671969483135 feet:0.0044416267197611185 time,:0.004376787347733258 time:0.004358244018157902 :0.8825693196500423 +of:0.18786635150919578 to:0.13513575144185466 and:0.07960882545045116 for:0.0706700381534983 that:0.06964516212138895 in:0.0690952690537573 with:0.04773161426766397 by:0.036345365612085054 as:0.027812025767500102 is:0.025813878827782192 from:0.024554900020934932 under:0.022530318726042727 at:0.017016266790985578 upon:0.015834049954154605 on:0.015832354730165945 have:0.01577176526662053 all:0.015234521981277989 In:0.0144781527203992 but:0.014116172795243603 :0.09390721480899741 +virtue:0.062060494787377685 out:0.05417899169104244 part:0.03289673107629515 one:0.02969369892462812 quarter:0.027015883171169475 favor:0.01993830018372674 result:0.019463829004704194 guilty:0.018891084377354095 means:0.018499162894926688 end:0.018170939082736048 that:0.018121271122199262 construction:0.01726217741616459 presence:0.017003995482744873 tion:0.01673652166540914 case:0.01640819963257697 side:0.016055927605250184 erection:0.015381239457214257 account:0.015287601389485416 hands:0.015156055434805247 :0.5507778956001894 +and:0.09964545960468464 to:0.07032812914238483 of:0.06101103575523076 the:0.05804719237956457 be:0.023062109360520562 is:0.020535356874731344 was:0.01876707696282108 a:0.016824214821282678 that:0.014412715646407717 or:0.013377155989669933 are:0.012976878937126603 not:0.01190617194984442 for:0.011682679980731109 as:0.011350423222539683 he:0.011086562201608998 his:0.011014428636476895 -:0.010377861991993866 :0.010359211163137967 by:0.009820393123198616 :0.5024149422560438 +most:0.17638040931776858 more:0.13388689252926686 an:0.1275048120280219 very:0.10615942495802132 as:0.07085733057815452 be:0.04825187776139377 is:0.036344664062246866 the:0.030067342586270834 and:0.02900105727635756 so:0.02836446312855231 was:0.022727385380150632 some:0.021443874071808665 are:0.019684069729159336 less:0.018258410756870565 one:0.01778533490165607 or:0.016707999024289863 no:0.015611495843227255 such:0.01465335497548154 vitally:0.012680800645499238 :0.052629000445802265 +tell:0.13323488777669035 to:0.12236274765576392 with:0.08806731647349006 tells:0.07368863532578977 of:0.070607952125167 told:0.052901570008471 give:0.042885184770058496 for:0.04005404137762173 show:0.02592174831469756 gave:0.019428292403705152 see:0.016255358077076832 make:0.01598570144804918 and:0.015524994518688488 upon:0.015347337803312792 let:0.014870493785659467 by:0.01474642132639026 in:0.014723238723207058 Let:0.014477255553079823 know:0.013681546207569572 :0.19423527632551152 +the:0.13972238454176134 of:0.08042414454779719 and:0.07607082213811144 a:0.039260930532422356 to:0.03572402957538609 in:0.031042497843208696 for:0.014423810373152489 was:0.0139662191620701 .:0.013424892040616442 an:0.013375687882438692 be:0.013200401177251577 :0.012735561361317727 his:0.012306981524120028 The:0.012162285219946483 with:0.011983670915713257 at:0.011707578530863306 is:0.011576434506772256 by:0.011218246274803716 tho:0.010950002683356004 :0.4337234191688908 +:0.055480247103152684 of:0.03257790470633828 to:0.028434467678091924 that:0.02404556074360182 him.:0.02192522377106126 it.:0.019835752500748708 and:0.015383098672132015 in:0.013076618171833157 years.:0.012207717058392823 time.:0.01166827997655905 them.:0.011326230315645865 country.:0.011129694103677064 man.:0.010290114253171704 for:0.009608185514172387 day.:0.009465360587061315 city.:0.008031776111368035 world.:0.007804600705316032 himself.:0.007319633061397893 year.:0.007118517633813888 :0.6822710173324641 +feet:0.07598199028993101 inches:0.07597514215178985 miles:0.06752368758903061 be:0.06554195664546772 not:0.0604635708206851 and:0.05619485448281406 was:0.0485500478620461 far:0.048531035130428266 is:0.04787032571705266 or:0.043115642495305466 it:0.03586797038327427 get:0.03266984543687224 are:0.027337341411189216 set:0.02655786123554875 cut:0.02472434804825767 been:0.02276893800205409 were:0.019675478483001375 the:0.019208311306598596 them:0.018776794962324154 :0.1816648575463288 +the:0.1354649972411748 and:0.060352738635683134 a:0.05348359738005044 of:0.046667722533487395 to:0.03097581922166899 in:0.02409083485772226 .:0.021198044720579266 :0.018228189308293858 The:0.015015110944098421 for:0.013090535842121146 an:0.012835062300197134 by:0.012228747593929407 tho:0.011663473789358596 with:0.010303871500257043 his:0.010086743616214868 that:0.009443873240555015 was:0.009088066853362449 is:0.008611076535236295 I:0.00840285013854025 :0.4877686437474692 +and:0.17260684708568444 by:0.1546637038192711 of:0.12155494903480805 in:0.07309725210341994 to:0.06530021549455767 was:0.053862856763439826 for:0.03845204946531252 with:0.030883572189282633 In:0.02665223866091103 after:0.018623875627231532 been:0.017443330343514744 is:0.016381549695461285 are:0.012872226884510266 were:0.011879459451837045 After:0.011733711817578787 be:0.01106137471523794 not:0.010994631717029007 had:0.008998425983594039 without:0.008998150198813813 :0.13293957894850433 +the:0.15622466492048784 of:0.09475197978896271 and:0.08045734638317222 a:0.04340790298270667 at:0.033939099661524565 to:0.027749824504845835 :0.01749167529936266 for:0.016865443173963695 The:0.014342886781972548 .:0.013129307011768242 on:0.01309037346967218 with:0.012161704952397151 in:0.011731125470282188 Mr.:0.010812041534068591 from:0.010515583239980312 tho:0.00984278619463417 that:0.009239422283504236 by:0.009222273899868641 an:0.008564187899744464 :0.40546037054708106 +and:0.1304300279629769 it:0.07415791535309427 It:0.05187195253920169 the:0.039851326736746046 a:0.03433820960372009 that:0.03408036167394567 which:0.033943646401943486 he:0.03138536311476304 to:0.028019989702014213 who:0.02306622517166716 is:0.02154754191460187 was:0.019522557012296667 of:0.015691666176131956 I:0.01366734475958982 be:0.013370571298248191 He:0.013263694283179724 or:0.012373057658277111 in-:0.012316118798282554 what:0.011512076366663251 :0.38459035347265635 +the:0.16210608157644615 of:0.1132241579615967 and:0.05446729902897889 a:0.03576526362027929 to:0.03568863064307866 in:0.028775317618449738 at:0.020240104504641643 for:0.015480230729428793 their:0.015445403853455202 his:0.015347931555983806 or:0.015159431252866215 with:0.014745139865279642 from:0.012356905989584296 was:0.01150530401532956 by:0.011366659909176437 be:0.011206460896384177 tho:0.01118349890406696 Mr.:0.01107585082792935 as:0.00994590081078631 :0.3939144264362582 +and:0.10422976742888213 or:0.03192885067960038 is:0.028961785836254937 was:0.0268253074888179 due:0.02676402971756665 that:0.02311328816346239 look:0.023112050706614148 be:0.022631766406969227 it:0.022268088758007832 but:0.020571377097383204 interest:0.020110600940992922 made:0.020028402869848454 them:0.019133020949618725 sell:0.018548348065877185 not:0.018138001915631728 as:0.01728368354507932 sold:0.0170343232516322 are:0.016028352724538265 held:0.015686348768315928 :0.5066026046849065 +the:0.25288632536082534 that:0.10165381733260644 same:0.08952670331229824 this:0.08423569932475564 some:0.06968039696483155 a:0.05518148552332678 short:0.0421262148698855 any:0.03771132558345677 first:0.037039615802881024 in:0.03274081040888605 of:0.028580604318964243 long:0.022747840517046185 which:0.020776320066905427 present:0.01805631960333496 one:0.01671800670955733 In:0.014416893755960867 and:0.013622754504796055 no:0.01305026637538818 every:0.012785121550030622 :0.03546347811426283 +the:0.45643272705509436 a:0.2749082044107589 The:0.053620572624887716 of:0.028257959297214405 its:0.01961001659615552 tho:0.01827159127258607 in:0.01481440756740225 his:0.01294053727387431 their:0.011557895200558315 and:0.010925322832646663 to:0.0088966617749006 next:0.0073884190400651285 this:0.006930224534777018 any:0.006917906265523752 no:0.0066813637001141 tbe:0.006321976487206974 an:0.006166441909125352 our:0.005677277542812433 for:0.005538913815940763 :0.037141580798355354 +other:0.08866411874294682 the:0.07903687970378664 two:0.075770822408084 all:0.06852732188145168 and:0.0655100581949412 of:0.05574761523507401 many:0.04062419708723076 different:0.037974313441934936 several:0.032085089602222186 for:0.03182353439847351 a:0.02863831158970456 three:0.027827645224476408 some:0.027749990081439514 various:0.026274529098047675 to:0.024807976026032883 few:0.020150164255931857 their:0.01645817879263696 his:0.01329689945030078 in:0.01111279079135935 :0.2269195639939243 +the:0.21155096484897265 an:0.05532327426075568 and:0.04361916558608342 this:0.042095874551885445 a:0.04059029282514699 of:0.027538179462477195 said:0.022564662600193155 im-:0.01567626843445067 on:0.01536718521706465 tho:0.014873626186444493 The:0.01220372593092394 .:0.010767195763069285 that:0.0106897780830753 A:0.010196678104658017 to:0.009567473359576483 street:0.0077228931626073345 tbe:0.0075489155363338955 as:0.006383822620177448 one:0.006166406652770976 :0.4285536168133329 +the:0.09797770545371141 of:0.08516946411589117 and:0.07439285988542803 to:0.03209441626225393 on:0.027702720457609402 a:0.020395895638785147 in:0.01887233503282035 his:0.0183213895882359 was:0.01708900780619316 with:0.015289153219575751 be:0.014134437952158192 that:0.013357569349366853 from:0.012707686427012983 as:0.012547976759599948 at:0.01145878843328356 is:0.009996477535963787 by:0.009969966870158234 her:0.008994243190142297 were:0.00857031129675415 :0.48995759472505573 +Mr.:0.22474164783842004 the:0.06424816045913657 .:0.049913944829863235 Dr.:0.04103341096162359 Mrs.:0.036254419374352455 of:0.03371307162051371 and:0.02130760987418245 J.:0.019499601263368433 W.:0.01948719624143795 S.:0.017980293789774098 from:0.017458376341775706 General:0.016876814801597865 D.:0.015677152199943065 H.:0.015439408000787242 A.:0.01342629807023221 C.:0.013381085633460212 said:0.013375513577952096 at:0.013220196881359706 M.:0.01160166347096424 :0.34036413476925514 +feet:0.0719208472326295 poles:0.05759396229176634 up:0.04010587224329879 chains:0.0385088170079141 entitled:0.029123404981740347 went:0.027388526271997813 came:0.025857650765910022 down:0.025633262313841977 him:0.025574415868859987 as:0.024916209858287616 and:0.023917753661251574 subject:0.02185045005331621 brought:0.02171367122116056 them:0.021644069985480026 it:0.02099405133651225 rods:0.019030517253069822 back:0.018922583019034468 go:0.01891708435510451 sent:0.018892511875840953 :0.44649433840298314 +the:0.11919516938815296 of:0.07230453158552728 and:0.05781056740443249 a:0.043018564803886335 to:0.031305092790907506 in:0.020848713353460488 at:0.014270110001066288 .:0.012526810245749479 :0.012413283442322082 for:0.011719122709941797 by:0.010808400946589808 or:0.010404172990115616 The:0.01003576004804544 with:0.009811868184449042 tho:0.009295902015355835 was:0.008924239095331684 that:0.008672304223433876 is:0.0085591147338948 be:0.008335143826716943 :0.5187411282106204 +to:0.4621424582700853 we:0.06131640963192732 could:0.049920760157033575 will:0.049331494197408975 not:0.043337002285236494 and:0.034159539828560855 I:0.029383886594638132 they:0.028244468731462306 We:0.02673579852767417 you:0.02656533393678762 would:0.023421027238359645 can:0.02249591169144417 who:0.016288180524315975 may:0.011796919760586973 should:0.011675124991913473 They:0.009501080356882094 must:0.008840937554387486 shall:0.008099420473279672 never:0.006166628290709384 :0.06957761695730638 +the:0.2648366274309694 an:0.09362620691369247 said:0.060975439637270694 general:0.051854621107705334 of:0.051023178384156063 special:0.04114276699244592 primary:0.032191975676323016 from:0.02927812176754123 his:0.029210649240304042 for:0.02422088983619249 public:0.021978148867453064 and:0.021813465556889986 in:0.02121956701396113 such:0.017997177706296035 any:0.015538279278438856 to:0.015216397613053441 their:0.015156549709942324 this:0.014511365888207126 Presidential:0.014005428272357965 :0.16320314310679945 +of:0.5291324541411736 that:0.06680249666405713 to:0.043293579558331886 in:0.03755318363780566 by:0.03568435019336887 for:0.03114825774594906 and:0.029892389977588408 with:0.027897674408447332 all:0.024257980500208623 on:0.01951698739551442 from:0.019409909449376723 which:0.017738336141275502 upon:0.015709752559419348 but:0.011560638221948832 All:0.010936843579399948 as:0.010222097640039821 If:0.00979152293345522 ot:0.00976511785045386 if:0.009139989907630293 :0.03954643749455544 +the:0.6175911819397337 a:0.17215716831606034 The:0.04526918240704244 tho:0.021591419988700174 this:0.020325614655322535 and:0.012686462684532685 our:0.007828571238603928 most:0.007298599647353734 that:0.006947407461696915 tbe:0.005977860959303944 some:0.00568345559339886 these:0.005620346998729907 for:0.005132839211079999 of:0.005034206769667058 their:0.004827544872924564 other:0.004790751159435087 any:0.004622673218108793 its:0.004284579843023889 great:0.0037741320477089496 :0.03755600098757244 +he:0.24281718062225963 and:0.11063673086376112 I:0.08148362359663733 He:0.05230494573267656 who:0.05214582467716281 she:0.04433739151315535 they:0.03218037721324944 be:0.030105144605235765 we:0.029103081311187877 was:0.024494458979054754 had:0.02261219356071843 then:0.01935874925985372 She:0.015813627396734784 have:0.014126754884110783 ho:0.01288267316814905 that:0.010471115771433757 which:0.010254802544014922 it:0.010192932733719217 man:0.01008246133611057 :0.17359593023077413 +the:0.17234101881375233 and:0.0723308580507978 a:0.06418362524859451 of:0.059381903314211774 to:0.05765128534513001 so:0.0292258426364823 is:0.027247612130850953 in:0.024298181821023074 be:0.020836055953937775 was:0.01790457325883464 Mr.:0.01622639783612973 tho:0.012553953887538211 I:0.01099826163396415 he:0.010910273396485398 not:0.010754844629789139 at:0.01064958641021041 :0.009679095332540733 for:0.009454446178783427 or:0.008882500654999364 :0.3534896834659443 +it:0.18878534512195796 It:0.12883006275919925 which:0.09602518774049326 and:0.054150886294001235 there:0.05214614284073522 that:0.039030045487888736 he:0.03571949422192732 This:0.02668853998583594 There:0.02381272027783609 this:0.0218664612890471 who:0.021756926825916408 as:0.019717533618572453 what:0.01535967652751112 land:0.015233391137454548 than:0.011154865396646918 He:0.011110913208760446 she:0.007257598595577215 country:0.007040881578944228 but:0.006966032522597083 :0.21634729456909746 +the:0.32586491247400007 of:0.0958102082862807 capital:0.08325871757663628 The:0.07258484577071314 that:0.041773282828593425 and:0.03924129462438301 live:0.035462951682414465 this:0.03037586701292712 tho:0.02011975104662822 our:0.01717169377141017 preferred:0.015641600790629807 a:0.014932698370194512 their:0.013537245167581868 common:0.011811227524410372 any:0.01156361098578086 other:0.010127531515505082 in:0.009032275446906341 new:0.008867885853948588 no:0.008816351086371903 :0.1330060481846841 +be:0.24562719174445033 was:0.15366846641946558 been:0.10730738714991325 is:0.08060623824446878 are:0.05052158359525032 were:0.047615740338438774 and:0.030383426356651276 being:0.028185367703616106 have:0.024189556675611096 has:0.021568505874240314 he:0.01846051907171106 had:0.017784866931243204 Is:0.013884038561758134 bo:0.011923854201794155 I:0.009202581971441305 hereby:0.00902909426185448 it:0.007045794470001053 not:0.006592877240691934 they:0.005774750485346911 :0.10962815870205195 +the:0.1638173591459505 and:0.15076234445704992 to:0.057718855365984555 or:0.039567991578601296 road:0.030944781242877126 of:0.0268817537015596 on:0.02680615425868578 he:0.022130080578724887 in:0.021684883400063845 a:0.020480176501283705 be:0.019567187091656307 that:0.01602149360986346 was:0.015145515048930733 other:0.014256083261101475 had:0.01410737299486966 it:0.013060122200495156 as:0.01250564185016672 not:0.012484484965599884 with:0.012401702955307512 :0.3086560157912279 +and:0.10421152186635457 to:0.08382428163810642 of:0.0626325795177378 more:0.049559818867378924 be:0.04538820222241051 was:0.03797503530309213 the:0.035848108082620914 is:0.030154893586106127 or:0.02638737662706702 for:0.025442969457311643 not:0.024422506726667237 a:0.024092678277819298 will:0.01957732605169126 are:0.019572896691293015 in:0.017547402817071782 were:0.014543136160020285 other:0.014416570000509091 with:0.012929168102306363 been:0.012343040904525033 :0.33813048709991056 +the:0.11919516938815296 of:0.07230453158552728 and:0.05781056740443249 a:0.043018564803886335 to:0.031305092790907506 in:0.020848713353460488 at:0.014270110001066288 .:0.012526810245749479 :0.012413283442322082 for:0.011719122709941797 by:0.010808400946589808 or:0.010404172990115616 The:0.01003576004804544 with:0.009811868184449042 tho:0.009295902015355835 was:0.008924239095331684 that:0.008672304223433876 is:0.0085591147338948 be:0.008335143826716943 :0.5187411282106204 +will:0.12609899224075286 and:0.10950496378200178 I:0.10469813681820934 he:0.05531260101185106 they:0.05182160480898775 would:0.05108607402526804 who:0.048784778231088476 to:0.046396615953930305 we:0.037368249436410365 He:0.030920873339383696 not:0.02966614167205221 shall:0.02924684150143044 must:0.021989416595699265 We:0.021471822942736345 you:0.021143228666056644 could:0.019990295369094347 was:0.01764124490532323 may:0.01760240831307851 They:0.01711174983865296 :0.1411439605479924 +of:0.22903316929834297 the:0.181845220337846 and:0.07101500521272903 in:0.05492289540773792 with:0.04676586743333957 for:0.04533490378971297 a:0.042586200529856046 to:0.030859659501999166 or:0.029654641553999165 The:0.022769936384955634 by:0.02022417978762905 his:0.019638448321670422 tho:0.011843301695983743 In:0.01143281468278082 from:0.010017040963421238 that:0.009151065538527082 their:0.008189753775832212 said:0.0069600856110031036 bearing:0.00667425773672329 :0.14008155243591058 +and:0.1294504820086008 was:0.07235937911646051 is:0.06970439790743592 be:0.03865363345752486 that:0.037763725749076583 are:0.029148382733975086 succeeded:0.024010271193621594 it:0.023195321414798863 not:0.021655713997255903 them:0.02077340376173023 made:0.01985754585093633 were:0.019499670982961608 now:0.019428085606466458 been:0.018831868549626204 or:0.016950176859884727 but:0.016514518500358295 up:0.01648590213536381 as:0.016202530489602525 put:0.015917950765107963 :0.3725970389192117 +to:0.4652749871580239 and:0.0588470539719446 of:0.03233687452372308 in:0.02971339161515653 will:0.024207281280271546 as:0.017896324476717726 with:0.016100140158204473 by:0.01561571190173076 not:0.014206354116184199 for:0.012274761740165795 that:0.012088621675528462 after:0.009560662537139754 would:0.009473223429668632 on:0.008420021001639912 In:0.008327370577120054 shall:0.008214395650916221 a:0.0081541956265587 over:0.008131690917251673 can:0.007745665619716297 :0.2324112720223377 +of:0.17918829989143928 and:0.12550302236819053 for:0.06059340492109373 with:0.05626149354375922 as:0.05017815030057707 than:0.049963729303869525 to:0.049857442455359974 that:0.04540616931078688 by:0.03847558987088095 all:0.034906351191210966 in:0.032086860503426934 from:0.027111270653340912 but:0.025079934532453035 Among:0.022993003639799947 like:0.01711483211080228 how:0.015758113536426928 is:0.015429222281430887 In:0.014866810612879427 are:0.014451863317380373 :0.12377443565489119 +a:0.19803345454818108 the:0.16392088286663492 this:0.06555066084121285 other:0.0447464788720411 of:0.04195892080236153 and:0.035109323488119085 that:0.029844254424224493 for:0.026605743320360416 any:0.023267267776574885 our:0.018567508993829772 or:0.015456414976842664 great:0.013952467827571667 tho:0.013897598960900063 their:0.013834509680531787 same:0.013696334415611607 such:0.01331575476052315 best:0.013137962848993883 to:0.01255313026582719 The:0.012284502310744707 :0.22926682801891313 +be:0.12869004856664354 was:0.10928726717426311 had:0.07665830323980825 were:0.07315376885439198 have:0.05354475421437854 has:0.05042399766855009 he:0.04982131939299137 been:0.04100827607333981 and:0.03236188613664607 I:0.03031162153407035 is:0.029838718399077847 are:0.02863033389731735 they:0.026787030505638073 so:0.017572948458846903 then:0.016924764634893362 bo:0.015920835832538654 that:0.013986874343497036 being:0.013523582206245149 we:0.009425476930494505 :0.181128191936368 +in:0.13006336710148375 as:0.11514340381655347 of:0.09319298054159553 such:0.08808651631985784 is:0.0703905409286569 with:0.05406709051652437 was:0.04833792081795771 by:0.04815955546678965 and:0.039516967236772636 be:0.03419561306660054 In:0.029532190952461075 for:0.02304218049095787 to:0.022771883520193468 on:0.02122527630976857 that:0.02026734747439338 from:0.016197179079076918 made:0.015759167640959835 been:0.013464446700723437 have:0.01295765644556127 :0.10262871557311173 +an:0.449855429617464 the:0.21203142095615468 no:0.03465161393617485 his:0.031034973796291346 and:0.025315494392398472 The:0.024643425510844932 this:0.02436483129112214 a:0.017681307525066137 was:0.015311904166196457 any:0.014423611509501163 of:0.013900324794011844 very:0.012950275599073545 their:0.011773848103185833 some:0.0117563172149104 tho:0.010922435903627804 every:0.010838299565680058 is:0.010699232162494814 first:0.010584863309001883 its:0.010429569399109315 :0.045830821247690307 +had:0.12954287352694832 and:0.10919843843158682 he:0.07995454993122236 I:0.06841420466359364 was:0.06356018348659118 have:0.05729662886549265 be:0.05473974992959783 has:0.0458478465184775 she:0.03275883781152553 who:0.03196520696715709 then:0.030290928655602435 He:0.028353695619081132 been:0.026555338999423944 they:0.020097689763498742 not:0.01797457171165649 is:0.017270861566121436 to:0.017171630918813803 which:0.0136755203668789 She:0.011739781631425935 :0.14259146063530428 +divided:0.11978704821307103 and:0.10594032036642297 was:0.04692324080153728 is:0.04488517984657036 are:0.041385987990148664 be:0.029759876631318526 were:0.02824835910179733 one:0.017993706799305204 that:0.01794798095692173 but:0.017885857099487052 two:0.015554688401519193 been:0.009546260310960005 them:0.008759690330935332 up:0.008756383059098042 all:0.008624846019976071 :0.008534918379376585 being:0.0080575780338035 it:0.008057435736978674 sum:0.008017955708799101 :0.44433268621197336 +of:0.07237606163527689 for:0.03972248760676546 to:0.038713901028952155 with:0.038530280638621274 and:0.03818649906187923 in:0.035110477915160684 by:0.03332037503649328 not:0.0208278560702286 is:0.01654746976296508 as:0.016496583832186818 or:0.013016483025729367 was:0.01235682876334986 ing:0.01219985521834304 on:0.012008337283798153 from:0.011004918282158214 made:0.01043533230093784 upon:0.010386563300801692 be:0.010242729879509409 it:0.00945201036427664 :0.5480649489925663 +the:0.11919516938815296 of:0.07230453158552728 and:0.05781056740443249 a:0.043018564803886335 to:0.031305092790907506 in:0.020848713353460488 at:0.014270110001066288 .:0.012526810245749479 :0.012413283442322082 for:0.011719122709941797 by:0.010808400946589808 or:0.010404172990115616 The:0.01003576004804544 with:0.009811868184449042 tho:0.009295902015355835 was:0.008924239095331684 that:0.008672304223433876 is:0.0085591147338948 be:0.008335143826716943 :0.5187411282106204 +that:0.1195790689090574 if:0.1187268489514505 If:0.08929368121489116 Did:0.06240112509276954 which:0.0617270982406868 and:0.06127798664575595 as:0.03718960406627645 Have:0.034696060749831205 what:0.03180921147930266 when:0.03172245616926035 to:0.026110198771196396 for:0.02130579373515307 do:0.01886485896043928 Do:0.0170329706163919 of:0.01675532699761307 but:0.015898634714859534 where:0.014128873937574008 than:0.014125476187680541 before:0.0133346411036738 :0.19302008345613642 +and:0.04491804315792162 covered:0.04018777062174743 filled:0.03439831602262882 together:0.027274277474498326 charged:0.021185110165574027 it:0.018970003064941 up:0.017480630635068384 him:0.016212955803671315 them:0.014293565819421733 compared:0.013525193832595763 connection:0.011614636799553067 parallel:0.011283394857871554 do:0.011130056469426521 loaded:0.010955317894446719 trimmed:0.010816708291869467 thence:0.01055173438898371 lined:0.010343364261696459 but:0.009666074941737286 troubled:0.009518829589372486 :0.6546740159069743 +is:0.2277893826148202 was:0.1401431913078356 are:0.13247131865718242 had:0.07345090584062913 has:0.07155416092521485 have:0.05910840219144865 were:0.041373285182541346 Is:0.03177552920210057 and:0.026491531943750122 if:0.013720476034634716 it:0.013088160665671023 do:0.012866264868407301 but:0.012529493644993351 does:0.011597948891477833 did:0.010876309413918985 am:0.01024714502244426 will:0.009958714958443485 could:0.009545087977498857 be:0.008483688847029025 :0.08192900180995824 +the:0.09777078585636206 of:0.07081433100622911 to:0.04559270892947347 and:0.04368018182366854 .:0.03913575466544439 Mr.:0.03645808166343487 a:0.03211783440461773 in:0.02565084019744012 at:0.01775941322943709 his:0.0172171789247959 was:0.0163320836097233 Mrs.:0.016213759057880504 be:0.012438624372100597 H.:0.012297386381579827 :0.011348365562069659 A.:0.010859595947677065 by:0.01012885831062819 W.:0.009987266272602649 In:0.009898957211702395 :0.46329799257313253 +the:0.22422553972598855 of:0.17272466496885427 in:0.05683025298004839 to:0.04990384736459748 The:0.029453087721922143 and:0.023366197721806467 :0.02196543313895484 In:0.021191059450891687 for:0.018489130378336365 tho:0.018414913388686022 by:0.01776783794832596 with:0.016622852279431447 from:0.014426329346697827 on:0.014369437900446142 a:0.013923589871871212 at:0.01161424009426519 tbe:0.011090555475041624 ot:0.007309308525956245 Mr.:0.006995910044850307 :0.24831581167302783 +of:0.30137696146831655 to:0.13792519752375543 in:0.0875979547946502 that:0.07309149294064031 by:0.06069040050610234 and:0.04888611147651825 with:0.0321707630768393 under:0.02794112008566548 for:0.02381222590690287 as:0.020480970143547727 from:0.01681926230878869 In:0.016003754257655895 on:0.014813097784058333 which:0.014024350972532946 at:0.012847220474855568 upon:0.008177716780062195 when:0.00801524858202971 into:0.00782241012225447 if:0.007362510572036151 :0.0791412302227876 +in:0.022566754093662784 it:0.019825080566099683 up:0.01955483388239876 him:0.016837445518886884 it,:0.01574306386370231 them:0.013046417850034821 time:0.01117681948619762 him,:0.010739205998015216 them,:0.0104789938878867 out:0.010335099644197876 made:0.009081276049644208 ;:0.008846889309743214 work:0.008429411268971496 country:0.007380184061524882 here:0.007331531566426266 time,:0.007031178895332359 people,:0.006534298636154301 law:0.006456554491063573 country,:0.006440313759270868 :0.7811646471707863 +out:0.05941904963054598 one:0.054824042063606755 some:0.05247794090323687 all:0.03926190883783565 part:0.035496978464792696 because:0.025099630466577632 account:0.024761806092616793 many:0.023799186613584284 and:0.02140242809025699 that:0.01934844095643571 portion:0.019105006248878457 value:0.018257503974032613 use:0.01686640358385487 time:0.015610548615003978 amount:0.01525203957993562 tion:0.015055978834802522 cause:0.014538196289420737 any:0.014448371559742294 members:0.014218034247347602 :0.49975650494749196 +is:0.12315381259743248 be:0.09310320600620198 are:0.08811065480798702 was:0.08354309061496416 been:0.05920723244839926 to:0.05172602680377535 and:0.05129805616702901 not:0.04156877623365552 were:0.0397081909634036 of:0.03307159247586188 a:0.028378115347753023 Is:0.026625675670856178 have:0.02490999543975668 will:0.02428421187271004 so:0.021012298890868735 has:0.016890605282169954 with:0.015423913708644058 the:0.01541264405340913 had:0.01529540759255288 :0.14627649302256907 +virtue:0.062060494787377685 out:0.05417899169104244 part:0.03289673107629515 one:0.02969369892462812 quarter:0.027015883171169475 favor:0.01993830018372674 result:0.019463829004704194 guilty:0.018891084377354095 means:0.018499162894926688 end:0.018170939082736048 that:0.018121271122199262 construction:0.01726217741616459 presence:0.017003995482744873 tion:0.01673652166540914 case:0.01640819963257697 side:0.016055927605250184 erection:0.015381239457214257 account:0.015287601389485416 hands:0.015156055434805247 :0.5507778956001894 +the:0.1572265354555061 of:0.06986759085407332 a:0.0686486040734811 and:0.06672249510908031 to:0.035195036427527755 with:0.01945036057779968 at:0.018503737792573215 by:0.016472144228018112 Mr.:0.01644229331184881 The:0.016428259340354058 in:0.013982540091709125 that:0.013596142417483746 .:0.01332730893882795 tho:0.010902452008479693 for:0.009719613046113918 his:0.009545445676213165 an:0.009348661741578893 :0.009093359516416022 Mrs.:0.008882795363183158 :0.41564462402973185 +the:0.23666553085257097 a:0.08193090413701488 of:0.05625166832666181 to:0.0458391063606935 and:0.03787911732281155 in:0.01852194688888104 The:0.015456262236090732 for:0.014063393629844842 at:0.013956633053210465 by:0.013156924162769515 on:0.0127963869115559 that:0.012202657110222311 tho:0.011970368426277293 :0.011466823398685523 with:0.010768807329756406 be-:0.009743355400611288 will:0.009671050045029602 an:0.009084448774313303 was:0.008414811937149682 :0.3691598036958494 +of:0.09928604556557717 the:0.09427707075685138 and:0.054919662678837154 to:0.04843816564368553 was:0.03576016892826427 for:0.027405686282071812 be:0.026228437405943897 in:0.025139415860186476 is:0.024206631984447485 are:0.022839943205247053 has:0.022824413557323536 had:0.02135347726395478 were:0.021023991362812855 a:0.017400171549629348 been:0.01711082318142312 have:0.016997494771435105 which:0.015318459600652586 on:0.014886066185779492 at:0.014459890213410962 :0.379123984002466 +of:0.1250857961480753 for:0.10348725059923523 enable:0.08256674657657519 to:0.07548974259215627 from:0.06320337666955904 with:0.05480635686718066 upon:0.037787490674476454 give:0.03263562274610229 by:0.02973137672307879 allow:0.025568254956304742 want:0.02548542349187038 permit:0.02226883362656532 enables:0.021018903268830234 send:0.020107202171443475 bring:0.01950339915315756 compel:0.019165567985904162 enabled:0.018510144001826347 induce:0.018276009060629785 told:0.018201436857053166 :0.1861010658299756 +of:0.28767355066866834 to:0.08775711267569858 in:0.08678131196995101 and:0.05160598694501188 on:0.04646139928102899 by:0.04519522654900943 for:0.044547789071328545 with:0.03396756772609607 that:0.033699232901107726 from:0.03075346596941143 at:0.027039283056790858 In:0.021061449543044047 as:0.017514234937992545 all:0.012543839382496166 upon:0.011844431150487573 is:0.00998972746569266 was:0.008814315973987914 into:0.008557199930727406 through:0.007781895704231326 :0.1254109790972375 +is:0.13010065603051615 that:0.1113003036563962 of:0.0964145515840031 and:0.07799725995017225 have:0.06865961418598941 be:0.061717690571082326 was:0.05211450997389882 in:0.047792010083198604 had:0.04210154745994745 by:0.04204486941646126 with:0.040954391062715485 has:0.02814622523317736 are:0.026352355590450124 but:0.023606706171898653 Is:0.019757455564274783 made:0.013793518004830044 been:0.013521900073635513 for:0.012496948673560796 make:0.012253835769101698 :0.07787365094468997 +of:0.2852788975719098 in:0.18511027326071852 the:0.07534244097976982 for:0.03169228790027522 In:0.029916562076867124 said:0.029269065257536225 and:0.026678019530486784 a:0.017197078616902887 at:0.015341225454121003 to:0.01440254225488531 from:0.013892924438095117 :0.008124080030905638 on:0.007352087350272575 with:0.006694087500010416 by:0.006671082756750053 ot:0.0054757310117537015 New:0.005002483622392274 as:0.0049859082874348214 or:0.004827476188061842 :0.22574574591085095 +and:0.08995317707915026 to:0.06844710404109794 of:0.04605142056172993 the:0.04074574508561307 which:0.02479116931334353 that:0.023764822140213245 re-:0.020841117231308055 in:0.020803825395358622 for:0.020278423301550053 :0.018417753428486977 not:0.016860793136637672 con-:0.016444405871234195 is:0.014386481772210856 or:0.014080680914153714 be-:0.01352268143271276 I:0.01317002660943805 was:0.011429878269381662 dis-:0.011196807025842847 he:0.01113106290024311 :0.5026826244902934 +the:0.3305025763180968 of:0.07139016613260471 The:0.04731402544091652 and:0.029340806918360048 this:0.02895194690766232 our:0.02669868271204597 their:0.02614917408605819 his:0.025832273511012215 tho:0.020528167978261992 its:0.02033235070093506 foreign:0.0188690399515315 little:0.017845926294927338 these:0.014961038656923666 or:0.013970552812441146 said:0.013598532519396255 such:0.012356631981474877 tbe:0.011863839982765472 good:0.011797295604620176 in:0.011782097473048732 :0.24491487401691697 +and:0.14332058745059367 of:0.10569809770043889 that:0.0627996912077004 was:0.053528628687025945 are:0.047219910921118664 at:0.04451199420436321 for:0.03948079213255678 to:0.03936050820587014 were:0.03931049541530043 in:0.03704782401906965 nearly:0.03131072087062913 is:0.030923517882774844 with:0.023028930901521822 by:0.02024101657042951 but:0.01588157831509224 from:0.015878115141930552 have:0.015474563691695633 be:0.014602106274659663 not:0.014144161091710532 :0.2052367593155183 +the:0.6767137026918186 The:0.16416170650651038 tho:0.045289872201207323 and:0.026367398560476478 tbe:0.01914428809375129 Tho:0.008636945516195567 Tbe:0.004819295108552396 that:0.0036924697362328836 tlie:0.0031139457544571403 of:0.0029297007718423443 a:0.0027324657717163843 was:0.0024011244082094278 our:0.0023021532229867115 were:0.0022207671861730837 have:0.0022096401233435608 "The:0.002015635623501174 thence:0.001998112106258068 his:0.001904406637885665 had:0.001875148074689157 :0.024471221904192368 +and:0.07895257911471103 was:0.03596317658514438 out:0.024016824392823457 that:0.023672598027062328 placed:0.022844208461019616 work:0.021707439938587154 made:0.020781005318872947 is:0.020224993929329655 up:0.019794182040466738 put:0.018288921183371155 down:0.0171740551508179 interest:0.01663630075189571 point:0.01659978677065351 him:0.016175999448187352 held:0.015562908663841706 Dakota,:0.014616466073415059 place:0.01424333231426501 Minnesota,:0.014067166610364513 it:0.013665465625771424 :0.5740125895993994 +be:0.18681484528799208 was:0.0968448531400935 been:0.08089675443896885 and:0.06994589115531621 is:0.05722091134295267 have:0.041854272614594096 he:0.03889113320505586 has:0.037505489579818106 were:0.03525819070970084 I:0.03207243882203575 are:0.030158862431028617 had:0.027894360022551173 being:0.019539234308820173 case:0.0176342956639745 who:0.014722627867543372 they:0.012318074429553249 which:0.012153972788000346 it:0.01110903771752621 Is:0.010097808172635885 :0.16606694630183852 +to:0.16244918305668388 I:0.08246470819217122 the:0.0790535508747673 we:0.07290470033732414 who:0.060517376558581776 and:0.05517705944246953 they:0.05143728887027151 will:0.05099206898093094 a:0.04798182908068758 We:0.0349301777579648 would:0.025865153575398023 not:0.023293927227176322 may:0.022273224211037963 his:0.0221790099484098 he:0.01897695398027383 They:0.01729926392736987 should:0.016205638110740016 can:0.013135055216717078 shall:0.01240498240490016 :0.12945884824612425 +and:0.08503425215113287 together:0.05335287900593926 covered:0.03253077787715905 him:0.028699283380466227 up:0.02694908563101517 it:0.020075958598700875 met:0.019295061035032795 them:0.018700319853085637 but:0.01578533889291739 thence:0.01248413508838869 filled:0.012418217423982135 out:0.012348631427551895 away:0.012156361159124838 do:0.012018718033405752 down:0.011784916836511368 man:0.011218165866290394 along:0.010245892575704265 connected:0.010128653854803403 ed:0.009471429225277377 :0.5843019220835106 +of:0.32030642185856134 and:0.14720395446130943 the:0.10428062850872463 a:0.04562071716580625 for:0.036616700934597984 or:0.03263633434236921 by:0.027511208912335227 in:0.021003156150933313 with:0.019854629871767136 The:0.018406160302151427 that:0.013716840248082241 said:0.013053526223516175 from:0.010133965261707466 about:0.008863758277001836 if:0.008280854847119712 first:0.008194283322634542 same:0.007982485357288432 to:0.006376140400206127 tho:0.006267826851405957 :0.14269040670248154 +the:0.1413962075267173 of:0.10841309615362991 in:0.05339582630804398 and:0.04770296356680063 a:0.044638269825680005 to:0.04118820057757362 for:0.018579534079575386 at:0.015596676976314715 that:0.015294648654743071 on:0.01506279883421487 said:0.014049310092592103 :0.013957909146208536 by:0.01249344718008715 In:0.01130332799776258 The:0.011059090405354579 his:0.010756850564394163 as:0.010732866615922843 tho:0.010217295583749194 or:0.009553000782555011 :0.39360867912808034 +and:0.12463765016201356 was:0.06684386292503497 be:0.05877407898763428 as:0.04307770865264358 of:0.03761532620265787 but:0.03626789429713226 is:0.03482341806563263 so:0.027966794412122943 or:0.027553712012670553 the:0.02515670132628374 not:0.02354817047797505 if:0.022874133966488328 that:0.022598644640508713 he:0.022504444790440285 a:0.019724953476275182 been:0.01774496072355366 I:0.01710741962967714 day:0.01707449670386962 now:0.017068197531837005 :0.3360374310155486 +and:0.03359277656123189 made:0.030966234552019297 shown:0.02521930899558225 paid:0.01907486018616232 that:0.016557153830202113 out:0.014506558022422395 ed:0.01445801708654162 given:0.01355106967201123 required:0.011525496328748722 told:0.010548749587347665 provided:0.010498784425855848 called:0.010370178693968236 done:0.009872661713031956 up:0.009135992094546047 brought:0.009017004146619644 sold:0.008776137529564913 taken:0.008698550299795762 sent:0.008505102418834455 down:0.008413056810638614 :0.725712307044875 +the:0.13495043060413897 of:0.08116512228138067 and:0.0666484668031579 to:0.061479885922863124 for:0.0225472057129304 in:0.022258265482069606 be:0.02060705238488401 is:0.018128702512605167 was:0.016565762763359006 a:0.015576597161064762 that:0.014241236932705084 their:0.013967877427544685 he:0.012125594536493497 or:0.011887633530224664 will:0.011130101470498135 so:0.0108874112080436 at:0.010863400836486839 :0.010492776840493524 his:0.010323787803221298 :0.43315268778583504 +of:0.20241904219982157 on:0.1513826588191612 in:0.12928366262030533 along:0.10486073112437516 to:0.08608265334267558 at:0.0371452565957504 In:0.032093091757332194 from:0.03144625977334554 by:0.029651415485374897 and:0.025152338901668826 that:0.020154412928574256 upon:0.020014470154632813 for:0.016059161883091057 over:0.014408117114247594 into:0.014067012508839507 with:0.013540140293682954 through:0.011737286424155393 across:0.009852223781960774 before:0.008069777524904105 :0.04158028676610089 +in:0.14048713722096412 for:0.12045306486651125 of:0.1150959154773748 within:0.061090158043955345 and:0.05346109170384797 only:0.04877263632788032 In:0.04433449219687606 with:0.037160146048207214 is:0.0315421892589043 but:0.029830979859766554 by:0.028968633883732185 to:0.025999925223267443 was:0.02505070588261269 after:0.022494641765410772 that:0.022285961534963723 as:0.01690029607373616 from:0.014222657035431458 or:0.013178995054789719 made:0.012188942064310933 :0.13548143047745698 +one:0.1028303141280697 part:0.05963429477052991 out:0.04766456937681193 some:0.031418679026461914 members:0.030764490253327767 side:0.029940657362655835 portion:0.022063658796890564 office:0.020457735219956013 member:0.019726706386316174 end:0.019666887540649894 tion:0.018667441728710307 parts:0.016814747270460957 people:0.014112771422418794 all:0.014072739582212475 any:0.013183573287639892 One:0.013083578354183906 that:0.013024335602903442 account:0.012482348155001894 many:0.012077825070275192 :0.48731264666452345 +are:0.1786245882999404 is:0.09546625426121542 was:0.09229551392421825 be:0.08249231814846512 not:0.07342481925144129 were:0.06624579169160977 and:0.05614765322410642 am:0.04664188173140493 been:0.031462750551547895 more:0.02465044849464778 Is:0.020102555940037955 very:0.019728932399016654 so:0.017557708614415708 too:0.01707212536452024 being:0.016286835946167984 or:0.015185300782505537 much:0.011693543857290498 a:0.011112728722735518 most:0.010844414847935286 :0.11196383394677732 +the:0.3365825266569845 this:0.0836176772273787 a:0.051065556001729205 of:0.0454014895165009 that:0.044918459755844575 their:0.044268937662149746 his:0.03949369643524024 no:0.03670154279190214 any:0.02730430794586416 and:0.02641821217484504 great:0.02007707622936929 or:0.019229993908846114 its:0.0170441891572777 our:0.016443281661442086 tho:0.016339358190373333 same:0.013835926133939806 for:0.01368402888726428 good:0.0136586181275733 much:0.013168614430982668 :0.1197465071044922 +two:0.07357218530495584 ten:0.06480811328886316 five:0.06233471438774437 of:0.05030071271101878 three:0.04600462834962749 a:0.035760474207739194 50:0.0312916910327442 the:0.024669354649281276 40:0.02271245671651842 20:0.021978102848143142 four:0.021407072176763405 fifty:0.020858515507662094 many:0.020083838288916037 thousand:0.019917842675558066 seven:0.019347370419537643 few:0.018942189109874153 half:0.018935465966222732 several:0.01840238537993669 30:0.018268477598366598 :0.38940440938052673 +the:0.12452737135355267 a:0.03637968420537972 his:0.024320065868091694 in:0.02177056357761788 of:0.018000612501442213 their:0.017732428192125445 :0.01670400924183571 and:0.015231949289317493 from:0.014316700307826384 an-:0.011656768805873362 .:0.01135052253068611 de-:0.011158458134404565 Mr.:0.01111174952124895 The:0.009621586103081886 its:0.009381508621759268 this:0.00930451263087121 our:0.008556327677209886 In:0.0065008637721252925 pro:0.006467431757145864 :0.6149068859084044 +the:0.4758044714246624 and:0.2005075679580135 a:0.07009005897994368 The:0.02502570041750814 tho:0.02316180535028965 great:0.014319696366940082 large:0.014199137815522858 or:0.01385480542266548 as:0.01158271405946072 special:0.011454462619621249 that:0.009941230739908798 best:0.008148033963751976 tbe:0.007664822955191822 in:0.007414834465145738 this:0.0063006501623479915 highest:0.005361687231666626 other:0.005315854424661541 long:0.004651742235776783 of:0.004578671432067246 :0.07962205197485375 +J.:0.05481878228719598 Mrs.:0.052387818750025975 John:0.05071983024302935 and:0.04725604680229476 W.:0.043691385423861376 .:0.042759471633239156 A.:0.036738150895499457 of:0.03227628762652273 Mr.:0.028820939149332075 William:0.024463046051036018 H.:0.02241944985009533 C.:0.022015355223948745 by:0.02120700572495778 E.:0.020451074505677038 T.:0.019489062511110614 Thomas:0.016970843766508162 Dr.:0.016446574682722415 James:0.015410229351806066 Charles:0.0151177280606787 :0.4155409174604583 +Mrs.:0.10998241415020134 .:0.06379932519823846 C.:0.047734375143465936 W.:0.038735702968639436 J.:0.035707664921382755 Dr.:0.027472396505354275 and:0.027255484633100645 M.:0.02602086125324547 John:0.024827112316401886 o'clock:0.021806862002052528 G.:0.02146992328377177 by:0.02019939189965197 Mr.:0.019731232112833185 Rev.:0.019595569736942986 H.:0.016901532417941203 F.:0.01591001913214732 James:0.015365763344320042 L.:0.015348948842992153 S.:0.014346169257829259 :0.41678925087948737 +a:0.44016158666004956 the:0.23366969708215385 The:0.06059949690724873 A:0.05416295327661232 and:0.02528351422468836 of:0.02457959553642971 every:0.01664811926276763 that:0.016612069479479075 tho:0.015063167733571779 by:0.012356910312182025 most:0.010581321353270595 any:0.008459403559628157 some:0.008358149908028589 for:0.007994535186011833 no:0.006860077473998151 this:0.006818715014629496 very:0.006480476127082599 his:0.005526172931106101 in:0.004851578695465792 :0.03393245927559564 +and:0.07558940021936399 recorded:0.030196237618668006 was:0.028917161578042846 made:0.027969746247669736 that:0.027730098932509103 o'clock:0.025060522019555328 up:0.023026552239529506 is:0.020398277211376416 found:0.02003101797656537 placed:0.017482208134164214 out:0.016937164562539058 place:0.016819459500107596 interest:0.016629321966808677 him:0.016002796715253755 situated:0.01573420479581609 it:0.015128305982428461 them:0.014715943643665314 part:0.014646613000297721 interested:0.014450471929902294 :0.5615344957257364 +the:0.07308391748213149 and:0.0650236830030406 of:0.06160769942055397 to:0.052268247186185425 be:0.047076308054616864 a:0.0372396837426395 in:0.024252681833945605 was:0.022488248066258144 is:0.02167905136294673 for:0.02153860696418792 are:0.020623701936193742 or:0.01929925567751662 re-:0.01871171112926931 been:0.01861238611348457 pro-:0.01601091340941376 his:0.013531807626344868 not:0.013315154707748283 were:0.013106637980199716 he:0.012779513704430508 :0.42675079059889237 +the:0.13164268207004517 of:0.10575072941141166 in:0.06347740506408298 to:0.060405000754162594 and:0.04452284949554167 for:0.024558225750815645 at:0.021756421737679284 that:0.020543184239000836 or:0.017173110693591138 :0.014239540100754837 on:0.014149129016732445 as:0.013259825807961007 In:0.012923716193270096 a:0.012663291869884552 by:0.011786100793962037 be:0.011400979100127414 from:0.009961902949231246 their:0.009587677202480523 this:0.008943600138765296 :0.39025462761049956 +most:0.26872057729925164 an:0.19561988244236722 the:0.11755938265627382 and:0.05309531023542932 of:0.05229151573264365 every:0.036855116270542644 other:0.03629444982842109 some:0.022702849252513344 a:0.02212489620067633 by:0.018319798722454993 many:0.01760667009434384 more:0.017575507806047354 to:0.016122664325978944 The:0.014949325468134413 this:0.01334423566682194 An:0.011020011236605605 any:0.01017493159565517 such:0.009168315404753746 his:0.007854530384829484 :0.05760002937625545 +of:0.10299925150833242 the:0.09961651893856889 and:0.09744391269286772 to:0.08962647261491859 a:0.07199680486567392 for:0.06589158837309987 at:0.05492762437368579 in:0.05260931173509089 from:0.034412829777840846 with:0.02662787874120748 on:0.023278336549281423 or:0.01876736988590267 by:0.018071461261232644 as:0.016782296549484304 was:0.015908449896030283 is:0.015409104820988135 about:0.014732659217423259 In:0.012419172930556707 than:0.01111576884911009 :0.1563631864187041 +of:0.21609380807944553 township:0.11830400848593665 about:0.07556947296869643 than:0.06782698796746478 and:0.06598697304772413 in:0.04372048374933373 containing:0.035639392994009735 for:0.03262206457716147 to:0.027857405842695016 only:0.027316189825210797 over:0.026763553950736766 at:0.020508216010906136 numbered:0.019592751695701297 from:0.019068946827104798 some:0.01874100426909926 exceeding:0.018203172560569844 Township:0.014767893909981488 within:0.014564773377367215 thousand:0.014394429296767545 :0.12145847056408739 +and:0.07359963406644195 be:0.052667135004264946 to:0.04483536256874564 of:0.043448293679263235 the:0.03579172892628988 in:0.028005289969665195 was:0.026700397492138477 is:0.024892551934152005 re-:0.024162182625676702 he:0.024086629517294657 are:0.02098604388819216 from:0.020307931541148256 a:0.018606881911690538 or:0.018077853608073062 for:0.017195224169077532 been:0.01615904189338184 I:0.015254891559368164 :0.015184018660626356 which:0.015016145996292442 :0.464022760988217 +the:0.17234101881375233 and:0.0723308580507978 a:0.06418362524859451 of:0.059381903314211774 to:0.05765128534513001 so:0.0292258426364823 is:0.027247612130850953 in:0.024298181821023074 be:0.020836055953937775 was:0.01790457325883464 Mr.:0.01622639783612973 tho:0.012553953887538211 I:0.01099826163396415 he:0.010910273396485398 not:0.010754844629789139 at:0.01064958641021041 :0.009679095332540733 for:0.009454446178783427 or:0.008882500654999364 :0.3534896834659443 +of:0.18465048323424885 to:0.09290417919015713 with:0.07260269421273606 for:0.07085463914667992 in:0.06418392258509492 and:0.05791171042216263 is:0.05025717304761438 by:0.04858437243369219 as:0.04113316423281641 was:0.04002843046298459 on:0.025273755674064226 that:0.02492224291467792 have:0.024770951087017906 from:0.01877553481468096 had:0.018657495583535116 at:0.01764473727256917 has:0.017190001295446167 be:0.016261908753058277 made:0.015432116391685605 :0.09696048724507758 +the:0.13428633942421322 a:0.1138026982887911 of:0.0858940635067434 and:0.05526369194852004 to:0.03814901650233113 in:0.03396618245234486 his:0.015204046535262914 for:0.013853280731306629 that:0.013779752562541223 as:0.01303647427295544 at:0.01112612573894047 The:0.010890423417785964 an:0.010211014267304206 their:0.010135543293898118 In:0.009888722360384659 with:0.009265607664741955 or:0.00915401494955478 tho:0.008372858730976752 :0.008046212417368344 :0.3946739309340348 +one:0.1028303141280697 part:0.05963429477052991 out:0.04766456937681193 some:0.031418679026461914 members:0.030764490253327767 side:0.029940657362655835 portion:0.022063658796890564 office:0.020457735219956013 member:0.019726706386316174 end:0.019666887540649894 tion:0.018667441728710307 parts:0.016814747270460957 people:0.014112771422418794 all:0.014072739582212475 any:0.013183573287639892 One:0.013083578354183906 that:0.013024335602903442 account:0.012482348155001894 many:0.012077825070275192 :0.48731264666452345 +the:0.1454500361787387 of:0.1080247151493501 to:0.04516715868785427 boy.:0.036249098323069925 and:0.03403580073245388 girl.:0.032660326140049385 a:0.03171979252021135 in:0.02714044436566853 for:0.02365213940166824 be:0.021942286684630472 their:0.021087116084698817 his:0.019774122064073623 was:0.014637031197642503 with:0.014008395154201525 are:0.012730720509515858 is:0.011363112041341867 as:0.011357870543086747 from:0.01063391638067422 were:0.010589399829418696 :0.3667765180116513 +provided:0.06349673085203074 cared:0.04146077165219201 and:0.03782492248747927 accounted:0.03699661515673085 Deeds:0.03591508315491136 voted:0.03242334399580574 vote:0.026024143804536378 paid:0.02094443827238185 demand:0.020753144940262685 called:0.019043235493004518 stipulated:0.01677579594948711 them:0.015795818302220342 him:0.013862196843118225 looked:0.013106637335744208 used:0.012529715748957407 asked:0.01251539690268151 it:0.012046466331189122 ready:0.011827089230287899 was:0.011198802442042757 :0.544459651104936 +one:0.038628448629483426 number:0.036074627376333206 out:0.029329632782441745 all:0.020174156756154065 part:0.019765939226999957 people:0.01862643247171532 amount:0.017645018288297596 use:0.0174080798123529 means:0.01727381235271635 be:0.016804945915246932 favor:0.016681059590973553 case:0.016532246538277787 instead:0.01609404336486691 that:0.01517095094975954 and:0.014865699685541484 tion:0.014359153714980312 result:0.01434436417879246 way:0.01380861860294458 is:0.01356314211749754 :0.6318496276446243 +of:0.13009242338100677 in:0.10949001025579945 to:0.09487901487541038 with:0.051287854772062956 from:0.04500018946568047 and:0.04016128968928598 by:0.036864033306072255 upon:0.02818737264215293 for:0.02413355138737214 In:0.020787682670607405 on:0.02031922134868264 at:0.01961139564048887 through:0.015270072316889661 after:0.010166579588743134 under:0.009496726921508164 that:0.009150861996134513 but:0.006464284000987493 over:0.006089400508358026 into:0.005798966460731229 :0.3157490687720256 +boy.:0.3722102146085659 girl.:0.36237587494165113 of:0.04699019638089315 Mr.:0.022793627630524345 and:0.01461536572100264 the:0.012577227938527566 Mrs.:0.009576176836277232 to:0.008492633745477048 by:0.006045239242359379 in:0.004768943181400858 boy:0.0041703060763946176 Dr.:0.003990651506400468 .:0.003916453766249409 Messrs.:0.0029799086330518235 with:0.002928070403425151 from:0.0026922179127960074 for:0.002426398977021793 :0.0024066005966672985 between:0.002313890867810723 :0.1107300010335035 +of:0.17394088104796965 to:0.07896438317620492 in:0.07691929156864756 for:0.06514005201391128 and:0.054308237641768974 at:0.051034203037596135 the:0.048738479740232266 writ-:0.045512798720145665 than:0.037051255390101435 about:0.03326100287075177 or:0.03294107773249023 between:0.031385310478150984 within:0.0287661878807383 from:0.027087164325054067 all:0.025518108445810764 of-:0.01951040582804944 over:0.018908555184550084 In:0.0180455326274708 on:0.01652641540764612 :0.11544065688270956 +the:0.18941070485687136 of:0.07390279899818201 and:0.06570082437222247 a:0.058469243590548274 in:0.024856988432496216 to:0.020873147706783023 for:0.018682659686982638 or:0.017866694612114674 that:0.017028564531941848 The:0.014409173905624696 tho:0.013452762362497402 any:0.012264366938919611 their:0.011649091646265465 other:0.010378896202069391 his:0.010181810078543935 by:0.009890952379887743 :0.0098587277099488 at:0.008693303303851414 with:0.008048251693860238 :0.4033810369903888 +the:0.15930234103476537 south:0.14916617612565322 north:0.12747015941821727 east:0.11497653682237818 west:0.10139947809509035 one:0.048792612627628046 other:0.04050218611816578 either:0.025502936103615932 a:0.022473503672407975 each:0.022108776560771096 opposite:0.020547929304717542 out-:0.013104247432932122 this:0.012527971499664897 cast:0.012459434028953368 and:0.012228690772812151 tho:0.011236060547429408 northerly:0.011218669246376186 right:0.010764144905735063 left:0.00911543234938189 :0.07410271333330416 +the:0.13243968836739925 their:0.08791390638869383 his:0.0764144322702737 and:0.06329004232735956 other:0.060503474451676836 or:0.04491362324578246 in:0.04292509178653781 of:0.04202951576924354 good:0.029274055088836088 her:0.029123579352366966 all:0.026532448678781257 my:0.02465194876867287 from:0.023222642099216536 a:0.02295869010697415 our:0.021888529705262012 for:0.021423209543920664 this:0.01805227510340667 its:0.01789833634746897 little:0.016271888450462832 :0.19727262214766403 +the:0.11919516938815296 of:0.07230453158552728 and:0.05781056740443249 a:0.043018564803886335 to:0.031305092790907506 in:0.020848713353460488 at:0.014270110001066288 .:0.012526810245749479 :0.012413283442322082 for:0.011719122709941797 by:0.010808400946589808 or:0.010404172990115616 The:0.01003576004804544 with:0.009811868184449042 tho:0.009295902015355835 was:0.008924239095331684 that:0.008672304223433876 is:0.0085591147338948 be:0.008335143826716943 :0.5187411282106204 +the:0.1839614630154079 of:0.11186523360865497 and:0.06792281136569393 to:0.06464951577379804 a:0.05348622078055955 in:0.027317747967812896 The:0.020957224655927975 with:0.014938121299717881 his:0.014256012302306938 tho:0.0141995936741406 :0.013006017979939577 Mr.:0.012558245212094723 for:0.012478372561125073 on:0.012109384774698207 her:0.009995485949011968 their:0.009774252995386902 or:0.009726494150486537 by:0.009019968180162546 from:0.007924725064561952 :0.3288531086885118 +to:0.39568426412307767 would:0.08729768102341232 and:0.07172688053328131 the:0.05411558373209925 of:0.035574993236820104 will:0.0336656169368452 en-:0.03190088193439403 not:0.02908698149255752 could:0.026951494515168293 they:0.017886266801187812 it:0.017690560430494787 can:0.0170855085308124 or:0.016003727723331966 we:0.015158654401419194 may:0.014839409180845583 in:0.013850500917258363 should:0.013846397442266808 better:0.012073491780271412 for:0.012070685909753028 :0.08249041935470297 +the:0.44538191081771217 a:0.3292067486395 The:0.058483104173672265 tho:0.024236131795603345 A:0.019766662793490878 by:0.015958507654290792 to:0.014231411898879763 and:0.011900596840408948 in:0.010602638757063229 of:0.010173767772019534 tbe:0.007804128985291317 or:0.006296911214304327 with:0.005522121477204736 no:0.0036021596351246145 Tho:0.0029978244380620385 every:0.0024234975423189946 some:0.0023827083635016744 other:0.002352955546162891 for:0.002299087500245541 :0.023377124155142873 +a:0.17831118998121798 the:0.1228895674539868 to:0.09683718145866038 any:0.07902838470341976 no:0.07041666336599864 this:0.056757967840282524 of:0.0464392329722862 in:0.028091697048930626 last:0.022726065205911576 that:0.021374342380247432 or:0.020543156396100257 by:0.019301628723497503 either:0.017591887219261314 such:0.0162711551245175 every:0.015758270495788356 without:0.01568317173795825 shall:0.014591069599185998 not:0.013776726522746127 and:0.012852793088477145 :0.12975784868152562 +of:0.09129790931378902 the:0.07369883040827747 and:0.047842263382354346 in:0.04189055351593407 to:0.04045875475680249 a:0.03542341257202578 be:0.02020462051672066 for:0.01979292654746225 was:0.01760256398103379 at:0.017380150555488715 is:0.014984483003968216 with:0.014047653760730413 by:0.01374644383819499 :0.012670486581795598 In:0.01200961464556976 or:0.011563835749786333 from:0.011391516893522809 are:0.011273104484969465 that:0.010755276030689069 :0.4809655994608848 +the:0.17027190784407714 of:0.10585557835912704 and:0.07355927771906935 to:0.05486905984958157 a:0.04543746377447453 in:0.03128555052933153 be:0.028704485173100775 was:0.02350529800142253 is:0.02215549335554494 for:0.02077556258358175 his:0.01804639098945333 or:0.016335100594594944 their:0.015847999621030492 at:0.015526727957625254 been:0.011815834631173878 are:0.01139058447814694 this:0.010362020528084328 tho:0.01035635773045807 its:0.01000473355720393 :0.30289457272291764 +as:0.06931392982974462 according:0.052071562389565784 up:0.0511867300210483 and:0.040371568633051955 went:0.03351644485287816 back:0.032358406609281 regard:0.03073407747799069 feet:0.02852138506231652 down:0.026379903432040268 owing:0.02466642634685871 due:0.023695193974505355 go:0.022910973192184297 reference:0.020802802907016128 came:0.019883741951819873 sent:0.019874244915639484 attention:0.019565955494145405 come:0.01885185084678811 given:0.018792390567602263 it:0.017366961307524745 :0.4281354501879983 +of:0.09129790931378902 the:0.07369883040827747 and:0.047842263382354346 in:0.04189055351593407 to:0.04045875475680249 a:0.03542341257202578 be:0.02020462051672066 for:0.01979292654746225 was:0.01760256398103379 at:0.017380150555488715 is:0.014984483003968216 with:0.014047653760730413 by:0.01374644383819499 :0.012670486581795598 In:0.01200961464556976 or:0.011563835749786333 from:0.011391516893522809 are:0.011273104484969465 that:0.010755276030689069 :0.4809655994608848 +the:0.49430510211941225 and:0.0806285567189877 The:0.05017178343859239 of:0.04840969081164832 tho:0.0300809421352374 Mr.:0.02178523290032507 a:0.015467753186980798 by:0.014337730759336616 tbe:0.012731752909502868 to:0.012408076576060224 in:0.011261559934880082 an:0.00909917441818788 on:0.008936413877683298 as:0.008934151650479581 said:0.008729609235454653 from:0.00863807117319953 .:0.007233261236918943 at:0.007046662156986521 that:0.006036562262273278 :0.14275791249785258 +to:0.4810619128834901 will:0.08912315267374751 can:0.07405552708751842 would:0.05692346246503041 not:0.053478548757913504 could:0.039801752722052296 may:0.034363467814340076 cannot:0.024067538727925775 a:0.022818326741750376 should:0.015098611540264 shall:0.013079923300848279 the:0.011492842515252127 in:0.010120180609458058 and:0.01008227284094601 must:0.009743659565151797 might:0.0089428614356105 To:0.0077040249079666934 they:0.007533981662145603 I:0.007077929356866729 :0.022430022391721736 +;:0.014821086028307612 it,:0.01240662537358537 it:0.010957667743649313 them,:0.010478172997887352 him,:0.009818470498536186 in:0.009111925031242446 men:0.007723377028514571 him:0.007590567203756721 and:0.007085297512962071 up:0.0068020565745487704 time:0.00666310546721713 them:0.006370048551360362 out:0.005610707520252441 people,:0.005200996118003074 work:0.00496211064207166 life:0.004923741926900688 whether:0.0048384785897351845 hundred:0.0048007220391138306 time,:0.004711553484863312 :0.8541232896674918 +the:0.19090059268926676 a:0.18955121838214675 very:0.18364394619049154 and:0.09297864377380927 so:0.05160477784793279 The:0.027673089903465002 is:0.02620544639695205 be:0.024692919819816105 are:0.023613728997836952 A:0.021723163873653924 was:0.020384207529934483 he:0.018692440715063402 no:0.013654641877961083 most:0.01202426440134593 as:0.011467560778945105 but:0.010624792303031889 or:0.00993775254897026 of:0.00828710601845539 that:0.008129365503573517 :0.05321034044734779 +to:0.12022893700269083 and:0.09020394424291768 the:0.08587503820055309 of:0.06450042443224316 in:0.0310058468700829 a:0.017742048521183405 :0.015548046036689871 not:0.01491307651316237 that:0.014112408707955496 for:0.013734482372212283 I:0.013065769926808477 will:0.012848502316304782 at:0.012837991177321897 In:0.012628718855091186 by:0.012491091048660757 be:0.011425930130217754 is:0.0113962101007567 he:0.011342727513475473 or:0.01112522537451577 :0.4219735806571561 +was:0.15737514985661186 been:0.12955024627728787 and:0.12816233998990645 be:0.10644315287080444 were:0.04291971290271382 is:0.040532000726798474 he:0.039354844375366446 are:0.027497250209093264 not:0.026881202189668642 they:0.026489545772749458 have:0.025933269120912674 had:0.02381341255463125 I:0.021861258926712042 ever:0.02079326406027117 who:0.0165925052493753 being:0.01628387244092335 then:0.015520660522696503 has:0.014114562414017146 never:0.013606807549589432 :0.1052749419898704 +ten:0.0989738507799227 few:0.09296120772419957 many:0.07923775755330106 two:0.07693790442831318 four:0.07162438874723208 five:0.07070798945734325 twenty:0.05944643927578114 three:0.05656109926942468 of:0.038589930607826915 six:0.037970512974751014 for:0.034875182652518585 several:0.03236072565535234 some:0.03175409148302753 the:0.03019612948981134 eight:0.02881884687273576 thirty:0.025144815506692723 seven:0.024621467755006433 fifteen:0.022083925773236958 forty:0.01971360565846164 :0.06642012833506107 +the:0.5166002063932249 tho:0.03664494858046784 The:0.028749332693767005 his:0.02080136288222462 and:0.019000009881205558 tbe:0.016730165778174506 a:0.014380803103049336 an:0.013960358706716894 of:0.012716615293373972 our:0.011015670288161864 this:0.01090533756967913 her:0.010721359358034874 dwelling:0.009806157777310939 one:0.009393581715846429 said:0.008009253408942098 their:0.007753630115771754 that:0.007333026629265067 old:0.006907311634382133 white:0.005962985135578064 :0.231607883054823 +men:0.01722891692179408 one:0.016005764265623963 up:0.013929298249104317 time:0.013713017886590524 man:0.010962632550680071 out:0.010482738136462937 him:0.010432055375245669 long:0.009291018573729895 her:0.008044751737058497 wife:0.008030253222710648 it:0.008012376167809981 them:0.007934094323368293 life:0.007397537105305822 :0.00726649005720666 and:0.007028051948778074 made:0.006981004672972804 it,:0.006812828834226105 him,:0.0066518019562696665 ;:0.006603597653110577 :0.8161917703619513 +the:0.3503002159273427 said:0.11855523495074667 a:0.06625769150363613 district:0.06035668025996419 this:0.06000885785009695 county:0.04371527742280667 supreme:0.04267240867940849 of:0.04122762378185784 circuit:0.03633345972986491 The:0.02057968772341843 his:0.017553512798984993 tho:0.01584872615487836 federal:0.012138860453920436 preme:0.01067695009580041 in:0.008791381416065119 that:0.008534897409378102 no:0.00840712713860989 to:0.008009044955027831 tbe:0.007910805666168544 :0.06112155608202333 +and:0.10214269553251397 of:0.09040688128822227 to:0.08266334484250851 the:0.07952638880880775 in:0.030159081630398647 or:0.02141868930653503 be:0.020558547501083067 a:0.019092232084906114 was:0.01730227941062289 I:0.01685050869379049 is:0.01541184109028007 that:0.015236427571031103 will:0.014324589118144174 not:0.012733753133334462 it:0.012305399851639243 he:0.011611656462904685 for:0.010710394488925572 :0.010474259588190279 In:0.010168478097621888 :0.40590255149853977 +is:0.1594228600438263 be:0.14377448232747397 was:0.1423990331464068 are:0.08385962012403454 been:0.05448972332695435 and:0.052828071278470466 were:0.0423171459054629 as:0.024649823189035306 Is:0.021884772423441907 had:0.019662645562143734 not:0.018831778027398695 have:0.017970803326472027 has:0.013918614966577376 being:0.013859924471392313 so:0.013566946018631395 or:0.012247399433799365 bo:0.009958929415212942 he:0.009317330358386689 for:0.0056625796237235685 :0.1383775170311553 +soon:0.1173428218968453 long:0.06845611071010137 far:0.06586458402210342 and:0.05338713523841674 well:0.04721276689687757 just:0.040410486557357676 much:0.03402299648469389 such:0.02955990020079041 but:0.022434012027975653 it:0.02114675467432816 them:0.01916767502404798 that:0.017600621980380246 so:0.0165266987454093 Just:0.01604564356235017 fast:0.01580589996931478 him:0.014587301480449493 known:0.013331641363771945 inasmuch:0.0130188312087346 same:0.00996051535709948 :0.3631176025989518 +or:0.15414110817386378 of:0.10799114937457294 and:0.0785199788167944 for:0.06462517025513839 the:0.06164333426828653 by:0.05962602964954246 in:0.05340838699667867 with:0.0463478074732357 about:0.03811353954313945 are:0.027149587731023994 than:0.022755484705079838 have:0.019086473788338876 only:0.018254795667530858 to:0.018196647087356792 within:0.016050874408935694 that:0.015885593099900966 had:0.014595976781726807 from:0.014104914006750024 were:0.013942466467784818 :0.15456068170431903 +it:0.03386896554073968 and:0.03321164931816447 :0.031725163925619186 that:0.027595876506321892 as:0.021378018466962592 It:0.01931158806396731 which:0.018653385015497424 city:0.017372910582442412 State:0.015535598604835351 the:0.015074821910779652 on:0.013768792546244805 of:0.011814817318036646 land:0.011634174361038595 work:0.011555715265677377 :0.011532732781369983 state:0.010720250283932913 was:0.010144136230932377 power:0.00954899345907157 life:0.0095301571031811 :0.6650222527151847 +the:0.25453592999372787 this:0.15524896669599492 of:0.04818795631577044 to:0.04303922378076752 his:0.03906106900295457 a:0.037002514136708346 and:0.023823336556049544 their:0.01792875473847894 our:0.016766395903647036 tho:0.015064136152616587 its:0.014128742063926466 her:0.012260990399669979 same:0.010938472444996438 that:0.010425360166517881 in:0.009812028929490528 your:0.009478709863153441 or:0.009392687791726763 my:0.008559152861771604 said:0.008557632657228507 :0.2547879395448026 +an:0.6162011461412308 the:0.11076290827985646 one:0.04408474259641112 this:0.02413629351351927 An:0.02231057704064324 half:0.017134901525725398 first:0.017034148242586533 last:0.015458115863708157 a:0.01454176453524195 that:0.012205176272650746 per:0.011817317967063557 same:0.010591538869931015 some:0.008133583950889308 every:0.0071942826537682745 next:0.007079740507857985 late:0.007017273755535568 early:0.006959027036014779 and:0.006145075228315587 au:0.0060661891733126755 :0.034126196845737686 +of:0.08981217173438302 the:0.07662295784555734 to:0.07050497141526627 and:0.0524124135366029 in:0.024936771803567154 a:0.024259361545487457 be:0.021164767549210234 by:0.02055915693982505 that:0.017738299714132252 was:0.017111916405856787 on:0.01690943278074774 for:0.016224360324473348 is:0.014954162764685834 or:0.013827451576877252 with:0.013162107607985163 at:0.012071351313088006 as:0.011745887733985062 :0.010865287021377703 are:0.010429710711395482 :0.46368745967549596 +and:0.09976846790187298 him:0.022481820467964042 reason:0.022111953260397145 made:0.021945432011148347 but:0.021216150289988026 enough:0.019022789835021536 asked:0.018139266498890465 time:0.01661680982408657 them:0.01649308480354857 provided:0.015948281471856066 necessary:0.015914351276976317 vote:0.015881883039876366 that:0.015503492476515578 it:0.015111110916371674 pay:0.0150371684983729 demand:0.015030100003476385 work:0.014582613178973585 responsible:0.014279697960215635 out:0.014127060240673216 :0.5897884660437746 +of:0.13020805014600764 for:0.10648412920421992 to:0.09967126717037021 in:0.07013648600027585 with:0.060690596308580244 make:0.053724654691480064 about:0.04197035847483023 upon:0.034411732747123835 at:0.03237358238430067 and:0.030434193524207568 give:0.029556256900105105 on:0.028736323503127728 do:0.024120887321181474 from:0.02206865709805155 made:0.02101030601203765 by:0.020681483939899117 take:0.015690607195871883 gave:0.015087841683623069 In:0.013356144616989384 :0.14858644107771682 +to:0.5226413846436977 will:0.09831561061007887 would:0.05699111866915081 not:0.032708105395628455 they:0.03186290192211498 should:0.030405003037808537 and:0.027656257888078448 we:0.02698843558072667 can:0.025359969518660333 may:0.022731350728634143 shall:0.02183618112465752 could:0.021731050683835133 you:0.019652524663046334 must:0.008944410286724765 cannot:0.00853036871058638 might:0.00743955708288912 or:0.006738855060054267 We:0.0063164088244055325 who:0.006265338986829943 :0.015885166582392085 +the:0.3582572843425679 a:0.12423838853374584 of:0.08777578149270626 by:0.06865583297840494 at:0.04712023816272245 any:0.036630793289958836 The:0.021580008060812176 tho:0.020851820339385495 this:0.014324709885004967 no:0.013859497412361949 general:0.01197759757960244 new:0.010243008375972043 organic:0.009808781538545563 tariff:0.009649354477377933 said:0.009598636230403785 that:0.009452333936710062 and:0.009122435977792638 every:0.008225392062547274 tbe:0.008165149660125113 :0.11946295566325225 +:0.05408755002078587 that:0.049531093299571755 and:0.026307747831082865 it.:0.023066050300906284 but:0.01604063510609521 as:0.013691133477483644 them.:0.013231826614228009 country.:0.010841946065548622 of:0.010487154798430135 which:0.009468692177853443 people.:0.008334614695462483 years.:0.008004416265567844 time.:0.007956347283674411 If:0.007858697640010603 him.:0.007413514011734311 year.:0.006977232836926869 for:0.006851092903969388 life.:0.006064905382420001 .:0.005982979647669748 :0.7068023696405785 +the:0.21344056864010486 of:0.18222556820758207 by:0.10576930070481023 and:0.04535784187491152 He:0.036548507529589845 he:0.033461730352735385 that:0.03050935012594575 which:0.021327127179321854 in:0.018276205430474618 to:0.017960133038304033 from:0.013983749560290864 on:0.013941174284780398 who:0.009297974857573988 for:0.00919482350659473 with:0.008132860222556812 The:0.007134014781079552 tho:0.006730382708269553 I:0.006729857572150468 was:0.006532403007765448 :0.21244642641515804 +and:0.08995317707915026 to:0.06844710404109794 of:0.04605142056172993 the:0.04074574508561307 which:0.02479116931334353 that:0.023764822140213245 re-:0.020841117231308055 in:0.020803825395358622 for:0.020278423301550053 :0.018417753428486977 not:0.016860793136637672 con-:0.016444405871234195 is:0.014386481772210856 or:0.014080680914153714 be-:0.01352268143271276 I:0.01317002660943805 was:0.011429878269381662 dis-:0.011196807025842847 he:0.01113106290024311 :0.5026826244902934 +the:0.3740814978037227 a:0.12812500999243526 of:0.05496483771694943 on:0.04618120326601553 and:0.02814388807243245 in:0.025634539961161447 The:0.019708873356646926 for:0.018467024989323972 tho:0.01825059284376505 this:0.01602114578844693 said:0.013459256130751718 to:0.01268261390733192 an:0.012607371082923443 his:0.01008763514886468 any:0.009999445818639709 that:0.009715724943521022 which:0.009426165934906947 from:0.008563428827169593 tbe:0.00818577648031998 :0.1746939679346713 +one:0.1028303141280697 part:0.05963429477052991 out:0.04766456937681193 some:0.031418679026461914 members:0.030764490253327767 side:0.029940657362655835 portion:0.022063658796890564 office:0.020457735219956013 member:0.019726706386316174 end:0.019666887540649894 tion:0.018667441728710307 parts:0.016814747270460957 people:0.014112771422418794 all:0.014072739582212475 any:0.013183573287639892 One:0.013083578354183906 that:0.013024335602903442 account:0.012482348155001894 many:0.012077825070275192 :0.48731264666452345 +;:0.027253807067969798 me,:0.025386189039712893 it,:0.019486949244540273 him,:0.01442890751640384 up:0.01351291627347926 them,:0.012586087652007584 me:0.012071058911561171 him:0.011677555222907513 in:0.010553917042809413 time,:0.007719577661678972 up,:0.006630640963613527 her,:0.005860055962437541 you:0.005849453238082238 it:0.005735069951165533 them:0.0056398269282520695 down:0.005504147064783286 and:0.005302487226794495 ,:0.005224139305689998 time:0.005184399213422602 :0.793392814512688 +he:0.15528912255866 had:0.08107646835357059 and:0.07880893878282369 have:0.06752683656762894 I:0.06628292292149848 He:0.05854824019191412 has:0.055651201817640106 was:0.03572727475076198 be:0.035006503362574326 she:0.028689293843496142 having:0.027809750604768542 is:0.02118539400762909 they:0.01890788842249065 who:0.017703355444995753 never:0.01604295229012145 lie:0.013713499958305005 we:0.013409744630262744 She:0.013087120419713829 ho:0.010755907382234838 :0.1837775836889097 +a:0.3558878806399469 per:0.22632990872354417 the:0.10734624045745754 this:0.06380720636063174 last:0.029306704621022472 every:0.029015189296943834 one:0.025406836162921012 each:0.023540987880118498 next:0.021668066534743433 same:0.020328969234819153 that:0.01259243041986568 his:0.009583805398080684 long:0.007795941385358048 any:0.006949076336095996 other:0.006684818368548905 first:0.006073500440242201 present:0.005713462337421566 past:0.005684449968955636 their:0.0052210406691717065 :0.03006348476411082 +the:0.2648952543005153 a:0.16888514815439792 his:0.08023232360200137 this:0.0633023539510022 her:0.041689516355325494 their:0.03307383806472109 my:0.023124146214175606 that:0.02074823035119751 and:0.020476004992936614 all:0.018482067975773973 other:0.017518589388526698 its:0.01662592435038799 tho:0.016460540079268636 our:0.016030995008280192 great:0.014151100471295081 of:0.01352110514841597 very:0.011606800278541227 your:0.011409649733383856 an:0.010404661390004292 :0.13636175018984897 +of:0.06695954584706283 and:0.06649137032642373 to:0.06601061952379313 the:0.06171729943033423 in:0.05467960970092213 a:0.028607847520134077 was:0.025593805541454278 is:0.025575134465780882 for:0.02227513014141085 that:0.02203423644291701 In:0.016378139785638783 or:0.015262626560564149 at:0.014440266861137486 be:0.014337880734617895 which:0.013575436189030142 be-:0.013320788275858104 on:0.013254535972039225 are:0.0128330814609448 :0.011498114248276568 :0.4341545309716597 +the:0.3391818262720187 of:0.13998352943244935 and:0.0713880495841493 this:0.05509573251850695 for:0.04131416339751126 that:0.03296932221541854 in:0.026910921191532954 or:0.018894802022192465 by:0.01851839790154069 to:0.01798149972809026 tho:0.01571326614632457 his:0.01305521686110296 first:0.011747874805336126 last:0.011301031796171044 next:0.010675516956526456 a:0.010510996117029095 any:0.010453649865046457 public:0.009511596328314848 no:0.008918426816620592 :0.1348741800441174 +the:0.11764738923085612 of:0.07709943054534214 and:0.06121093375519015 to:0.054900239350121484 in:0.05473458336013094 at:0.0467906333837814 as:0.028416012159849444 that:0.019738942234191818 a:0.01831808372110872 on:0.015389832181262084 from:0.013311955434823284 In:0.012528397780037597 is:0.012495464012706856 :0.011894380515872622 which:0.011857243194693131 be:0.009752441569253218 for:0.009471371642737028 was:0.009424828202825461 by:0.009233096147363676 :0.4047847415778528 +is:0.1746613908211583 are:0.16767566382402457 be:0.14871134806476122 was:0.12140833393399462 not:0.07136131298073962 were:0.049150368363483424 and:0.04096536537515257 been:0.0353555736108757 am:0.029365913069026153 Is:0.026561022036699435 being:0.014537300926717067 very:0.013552951616544876 so:0.012953125690742225 perfectly:0.011541146657193134 quite:0.008702177816599588 bo:0.008098316847447105 much:0.006300589852069543 entirely:0.005231277902853082 it:0.00504540250336194 :0.04782141810655584 +the:0.1686254608388007 of:0.08510631124515454 Mr.:0.053063968456177904 The:0.05290176461656073 and:0.04281351925879434 that:0.03659363717531167 a:0.027376597759942865 this:0.016009104250207996 in:0.014329796242200724 :0.013577096541793277 .:0.012332809689052695 Mrs.:0.011483371514010961 tho:0.011366564416127033 to:0.010938551223696477 for:0.010273564804762044 which:0.009103350770352783 as:0.009022855831525262 his:0.008831867202298479 or:0.008219518012985871 :0.39703029015024366 +of:0.2817759679710761 in:0.23582473738606205 In:0.07159019916406327 on:0.05125874226274609 at:0.04471259779797867 to:0.04113036784923639 from:0.03375623610405404 that:0.03002580775314473 for:0.025836572693458713 upon:0.023093629641441637 with:0.023041328101428487 by:0.02249798570322105 and:0.019384899926068948 iu:0.006868419049798821 into:0.006839818066923448 At:0.006659829122966361 ot:0.006371936470888549 under:0.006051234919842557 after:0.005376856315012774 :0.056902833700587296 +and:0.03868242960999506 as:0.031124813427855922 went:0.02352509775927722 him:0.02196555539050794 them:0.018760608639018784 up:0.017985449426794205 is:0.017894175620344187 go:0.017174904667157563 able:0.016756848979943888 going:0.014481672239490295 it:0.014128375989346808 was:0.013277058274565138 time:0.013249953793837373 not:0.012469887553778763 began:0.012465717758716884 way:0.012105610030480113 back:0.012090864562211581 right:0.011941707822828511 amounted:0.011564315359310868 :0.667354953094539 +one:0.1028303141280697 part:0.05963429477052991 out:0.04766456937681193 some:0.031418679026461914 members:0.030764490253327767 side:0.029940657362655835 portion:0.022063658796890564 office:0.020457735219956013 member:0.019726706386316174 end:0.019666887540649894 tion:0.018667441728710307 parts:0.016814747270460957 people:0.014112771422418794 all:0.014072739582212475 any:0.013183573287639892 One:0.013083578354183906 that:0.013024335602903442 account:0.012482348155001894 many:0.012077825070275192 :0.48731264666452345 +the:0.3176200460415672 The:0.06398227276241884 appropriation:0.06256484688579904 of:0.06143109700221282 and:0.04522261882056178 these:0.03132258638950731 other:0.02495211054621963 or:0.019438904169665625 a:0.019380246729709342 tho:0.018698776630538004 our:0.018601030068734172 all:0.015929000558343787 new:0.014704311021588775 said:0.014157383562576375 in:0.013274000198133495 two:0.012574522152761666 that:0.012043464493303265 their:0.011451877327713644 some:0.010398458088779986 :0.21125244654986533 +as:0.062484676329274694 up:0.05764084372569128 came:0.04803855230936549 and:0.04507298757476335 come:0.042563115017869246 sent:0.031180349492975247 back:0.030799901366219386 it:0.028096687047703114 presented:0.024905050278724198 went:0.02426565213931646 brought:0.020614433613923372 occurred:0.01962404268736124 given:0.018761278859887563 seems:0.018471993627436914 made:0.01772642698342769 returned:0.017719892999435435 known:0.01765452298311619 down:0.016713179818743876 seemed:0.015772816593147266 :0.440893596551618 +and:0.0714616191757158 time:0.02764999781817853 reason:0.020299434386064002 provided:0.015560415110533767 that:0.01122507607248051 day:0.010882311534776663 it:0.009195721405726031 money:0.008901462793860258 way:0.008885963233398294 reasons:0.008705358882422146 purposes:0.008593909165606295 but:0.00826662110803132 demand:0.008167920669405051 him:0.008164263553400192 basis:0.007723793264973678 one:0.0074638193711265895 thing:0.007401354310928763 land:0.0072330011496635205 cause:0.007143333311072054 :0.7360746236826365 +to:0.3059401529982004 and:0.11161290849294662 not:0.059150081844185146 would:0.05142301421516538 you:0.042671132563910065 we:0.041942131502606804 will:0.03755359124783453 they:0.030723211628006418 a:0.028504098989822 I:0.026524777987149695 or:0.025985139028039797 may:0.02392305791142929 can:0.022921724643508713 should:0.01893939984754845 could:0.017722649748832156 must:0.015442248523876826 who:0.014763277695801987 didn't:0.014448773990801503 don't:0.013948454159310094 :0.09486017298102416 +the:0.1861202707535806 of:0.09987824228899186 a:0.07252467683363649 and:0.06441684440960391 in:0.048000549811982485 to:0.04238032238327996 The:0.016401232425517442 as:0.0152457024475034 on:0.015202447700025918 such:0.01396146375679766 In:0.012273177773192903 an:0.011950144365366362 that:0.011717455866140588 :0.011122732970099716 at:0.011025587321170992 for:0.010626093483381718 tho:0.010058551576759656 with:0.00983306810069343 upon:0.009042786568005645 :0.3272186491642693 +be:0.34457193372574774 is:0.17551595957413085 was:0.08987565414018053 are:0.072933918783466 been:0.05478150445010151 and:0.03169288717652169 he:0.02716459267783732 were:0.026336735563495854 Is:0.022064149484492954 not:0.021731850157404815 bo:0.015825175829868452 being:0.01517420618680171 I:0.012200699147989212 they:0.011702580738546405 have:0.008578141274318022 had:0.00844052331035152 well:0.005037835096313483 never:0.004901816968404052 who:0.00439916550586243 :0.046070670208165444 +the:0.45204571756232 a:0.055539770179733085 of:0.04581218508180583 and:0.04094675800258484 tho:0.03633049694074174 his:0.035027709761037765 The:0.03408987029063019 that:0.029257496223717712 their:0.02793552735069932 no:0.023778850341628494 in:0.023160409917214107 its:0.02221800522598589 some:0.019147464327856346 this:0.015952623320505475 to:0.01586744839255783 for:0.013392685452666829 any:0.013036920881971364 tbe:0.012930571021323048 these:0.012502722556867922 :0.07002676716815223 +the:0.14058082128745786 and:0.09856422533331133 of:0.06779080719647793 a:0.04068981523850756 Mr.:0.034585956693619316 to:0.03218966359509513 in:0.022303842833479807 I:0.02053959467172556 was:0.019396403040965876 his:0.01837138134891312 for:0.01722150752144487 have:0.017206616781536368 is:0.017201674684276105 be:0.016485825698767696 not:0.015497095821566605 at:0.014999444565520334 or:0.01469664577880698 an:0.014314422193633373 The:0.013258657670525198 :0.363105598044369 +the:0.1641320911864556 of:0.10963561514902358 to:0.05993589229439846 and:0.04208926764956589 in:0.019221005540290003 be:0.01918552126025394 for:0.017445399739083878 :0.014664063357480404 a:0.014069170585525209 was:0.013733291802570586 or:0.012468520814202116 his:0.011799879485955518 at:0.010696823819775148 by:0.010119018117454564 that:0.010046356341542622 is:0.009673674731749014 on:0.009564704884264759 their:0.009040151420537667 were:0.008959694247019914 :0.4325198575728511 +of:0.09129790931378902 the:0.07369883040827747 and:0.047842263382354346 in:0.04189055351593407 to:0.04045875475680249 a:0.03542341257202578 be:0.02020462051672066 for:0.01979292654746225 was:0.01760256398103379 at:0.017380150555488715 is:0.014984483003968216 with:0.014047653760730413 by:0.01374644383819499 :0.012670486581795598 In:0.01200961464556976 or:0.011563835749786333 from:0.011391516893522809 are:0.011273104484969465 that:0.010755276030689069 :0.4809655994608848 +of:0.3502903259246124 the:0.20061039152170998 by:0.06254174106624459 on:0.04009555705421377 in:0.033829532466422396 to:0.0232292185571376 and:0.022851663975386585 along:0.0224422528138917 that:0.016005586477228394 from:0.010918232215265288 which:0.01045555563145476 with:0.010243348399670069 The:0.009149224270997408 he:0.00710994298596047 tho:0.006768015465462644 upon:0.006096902131376744 ot:0.005958849436960784 at:0.005943179565554759 for:0.005881197867600353 :0.1485792821728493 +the:0.11919516938815296 of:0.07230453158552728 and:0.05781056740443249 a:0.043018564803886335 to:0.031305092790907506 in:0.020848713353460488 at:0.014270110001066288 .:0.012526810245749479 :0.012413283442322082 for:0.011719122709941797 by:0.010808400946589808 or:0.010404172990115616 The:0.01003576004804544 with:0.009811868184449042 tho:0.009295902015355835 was:0.008924239095331684 that:0.008672304223433876 is:0.0085591147338948 be:0.008335143826716943 :0.5187411282106204 +that:0.13437908883539007 and:0.10391070654690894 as:0.10305605962538442 of:0.047297978685833034 if:0.040844012074441334 but:0.03954265737551012 which:0.03599736597937281 for:0.031000224247600877 make:0.028660830345542756 when:0.024981165949682093 to:0.01837527671673384 on:0.018063245912155322 with:0.017617048375317437 where:0.017062454270550687 than:0.015219205993918615 think:0.014164109315890119 If:0.01412344808815107 have:0.013994904858330794 by:0.012794189381943233 :0.2679160274213424 +of:0.21702417588105982 in:0.08163082158389914 for:0.06698070530855908 until:0.05357224932117309 at:0.04842427249488438 on:0.042456002768790295 to:0.03805399749988674 and:0.0356579055884275 that:0.035056660352079896 In:0.033688845585002146 from:0.027026369488696692 the:0.026346920520890837 with:0.014057770883076044 before:0.011799962441792506 when:0.011770793561859972 after:0.011232189298207382 by:0.010087570976668033 as:0.009085093033268793 :0.009043056983302485 :0.21600463642847514 +all:0.05851430090727237 disposed:0.051308234550638696 that:0.04670164724143857 and:0.04491065744386285 part:0.04451084256298915 heard:0.04106697430228743 one:0.040203847977515805 each:0.035585013099769 time:0.02888949453069112 notice:0.021603577278321375 thought:0.021376122433883007 care:0.021172589490706616 day:0.020198263970404962 amount:0.01969165824865977 rid:0.01880762592755994 those:0.01742032142218959 or:0.016782593351364252 out:0.0164950118433507 dispose:0.016173054366441234 :0.4175881690506536 +the:0.8007853276877253 The:0.05981816131568173 tho:0.03090688763095102 of:0.016017481811944304 a:0.015596509830630533 tbe:0.012358309854554524 in:0.008452926205609258 his:0.006967558949407523 and:0.006836808858467752 an:0.005265665363587592 our:0.005240728752829378 said:0.003344606609382989 most:0.0028405455871381964 this:0.002427694892183715 its:0.0021430277360042255 her:0.0018524864748603593 their:0.001806497713673794 on:0.0017294084606836186 In:0.0017069413063237932 :0.0129024249583605 +the:0.5435459149586802 of:0.06637740303302091 a:0.05409232042266672 and:0.051536064296335476 The:0.02634020694698008 tho:0.026048318328456017 said:0.02028848165301852 with:0.01887663579874884 their:0.016135723834173114 this:0.01502050539577311 in:0.013924477414980187 that:0.013786371252359835 on:0.012863056151776799 his:0.012812633218222933 our:0.01278297456287355 by:0.012438093634131875 its:0.011512524911607626 tbe:0.011486046092052216 other:0.00921900457513403 :0.04991324351900789 +to:0.14401522014784593 I:0.08717805441967116 would:0.08361228383208522 they:0.07250612364846672 we:0.06597598184142542 who:0.05136360986841521 will:0.048581532657812176 you:0.036303803346831635 and:0.03262750567837507 must:0.02681132061405771 We:0.026497479392441514 shall:0.02444461513167911 not:0.023426718145168758 should:0.022766551002372307 may:0.021516097053646 might:0.01661740567775864 They:0.016135791002525445 which:0.015447058681747887 could:0.01476846332748608 :0.16840438453018802 +of:0.28767355066866834 to:0.08775711267569858 in:0.08678131196995101 and:0.05160598694501188 on:0.04646139928102899 by:0.04519522654900943 for:0.044547789071328545 with:0.03396756772609607 that:0.033699232901107726 from:0.03075346596941143 at:0.027039283056790858 In:0.021061449543044047 as:0.017514234937992545 all:0.012543839382496166 upon:0.011844431150487573 is:0.00998972746569266 was:0.008814315973987914 into:0.008557199930727406 through:0.007781895704231326 :0.1254109790972375 +the:0.14520171115252964 and:0.0817802905784528 of:0.07049916529208658 to:0.04022761989158424 a:0.036853161132443156 in:0.02439719737629545 his:0.020284233431560293 was:0.015980270232853346 .:0.015301057876956245 be:0.014963844694647706 The:0.013343337543606842 Mr.:0.013059677688505826 for:0.012788982922986173 :0.010595440115384668 or:0.010568755115855283 tho:0.010480739169221 as:0.010472463798037063 their:0.01016735864625035 at:0.009710752751021507 :0.43232394058972184 +of:0.1250857961480753 for:0.10348725059923523 enable:0.08256674657657519 to:0.07548974259215627 from:0.06320337666955904 with:0.05480635686718066 upon:0.037787490674476454 give:0.03263562274610229 by:0.02973137672307879 allow:0.025568254956304742 want:0.02548542349187038 permit:0.02226883362656532 enables:0.021018903268830234 send:0.020107202171443475 bring:0.01950339915315756 compel:0.019165567985904162 enabled:0.018510144001826347 induce:0.018276009060629785 told:0.018201436857053166 :0.1861010658299756 +and:0.08524135159410522 right:0.03284297340570454 as:0.032493675978417576 order:0.03243785185522204 is:0.02650085445061943 able:0.025583503916709185 power:0.024012950066142656 time:0.02353635219523972 necessary:0.02249033034347877 made:0.021208783667989544 him:0.020187256650163743 according:0.02015353579943575 way:0.019737193328007694 them:0.018897405065872327 not:0.01671109135338297 enough:0.01669484831932081 only:0.01652620921294606 or:0.015966514124054157 used:0.013409691775855296 :0.5143676268973325 +hundred:0.02334136986593815 up:0.005482494641173394 men:0.005366536521246011 Hundred:0.0047587970519216575 John:0.00441808156134956 William:0.004390720675819281 him:0.004016828614280843 ;:0.003997112205305733 due:0.003721199871732 in:0.0036582900032443304 time:0.003637206863828461 James:0.0035594902370151707 out:0.0034878448964120057 .:0.003467980723571515 1:0.0032804584819785204 day:0.0032444781513863933 ,:0.003058139385740603 :0.0030314555521939613 Robert:0.003005471634785646 :0.9060760430610768 +and:0.09028170801185494 be:0.07822087956359496 was:0.0604322494376946 to:0.03875799823221426 been:0.03781583825357645 is:0.03554424767192397 of:0.034961410324985946 he:0.030725180805022397 were:0.02766787033135484 had:0.02522919821496135 the:0.025062736946777315 have:0.024744631581598685 are:0.02273367617647766 has:0.02153903863415162 which:0.020121609097888116 who:0.018038493709098425 I:0.01645201523010846 so:0.016103804784538968 con-:0.01599519306445885 :0.35857221992771815 +the:0.5094089552288474 a:0.08080262026926575 by:0.05557967123183077 any:0.043658880804610924 no:0.027047486683943044 tho:0.025499793678129656 of:0.024827234990673228 The:0.02317816951920672 this:0.022953569444618408 his:0.017692449035516897 every:0.01710784703914019 their:0.015722248911159902 only:0.014835775313357117 some:0.013860533152074517 that:0.013442118742580974 same:0.012561755350329589 other:0.011675603679813415 one:0.011260793316835287 in:0.010837757775813263 :0.047046735832252926 +to:0.12022893700269083 and:0.09020394424291768 the:0.08587503820055309 of:0.06450042443224316 in:0.0310058468700829 a:0.017742048521183405 :0.015548046036689871 not:0.01491307651316237 that:0.014112408707955496 for:0.013734482372212283 I:0.013065769926808477 will:0.012848502316304782 at:0.012837991177321897 In:0.012628718855091186 by:0.012491091048660757 be:0.011425930130217754 is:0.0113962101007567 he:0.011342727513475473 or:0.01112522537451577 :0.4219735806571561 +much:0.19383904017781434 plat:0.13578633670359594 part:0.12587289414244987 copy:0.046513263093036446 survey:0.03549275135896365 holder:0.028711691263015232 conviction:0.02616661944499361 portion:0.024048627150204966 payment:0.02383964895485508 amount:0.02212863467842539 proceeds:0.018426073949563665 proof:0.017673248617759867 default:0.016218369929444615 notice:0.012826184734624125 value:0.012421543285684924 lieu:0.009747601457585886 all:0.00943940666019727 and:0.009375325275668613 one:0.008877703301638533 :0.22159503582047796 +and:0.09604334981207682 of:0.07301114630343641 the:0.0666389505193539 to:0.0563505731469426 a:0.04014011662670427 in:0.026729585656007346 be:0.026426514138342863 is:0.02545237588270473 was:0.02241672074936954 that:0.022182265911681348 or:0.0200975839943587 which:0.016751068770866403 for:0.016235282516175755 it:0.01454294220765402 be-:0.01284003286557967 with:0.012693867448014012 are:0.012092650486001959 con-:0.01193207917531837 in-:0.011215843512961992 :0.4152070502764493 +of:0.1696292924896579 the:0.12878874653204758 his:0.08093964507246851 in:0.059016676532066874 their:0.050963999766337836 and:0.04599072858297304 my:0.03908946516108731 her:0.03242562316942535 our:0.030959004430115906 to:0.026982794732771043 your:0.025109840155499875 for:0.01977106093849825 its:0.019526022297234227 with:0.01787580052449765 that:0.016200662029370243 own:0.015684080108049725 this:0.014096644071065407 other:0.012137415362464689 In:0.010214111866042283 :0.1835983861783263 +and:0.08523213792953777 to:0.07425610006508139 of:0.06071417669958742 the:0.04322419464702753 in:0.03421134863353001 not:0.0287908049549799 for:0.02798387296848893 that:0.026110852472119025 I:0.02570600474601996 re-:0.024287259293019645 be-:0.021067445943208814 :0.01957634741587974 con-:0.019018427224614103 or:0.017888217200002533 which:0.016541633124877397 In:0.013970106813344116 Mr.:0.013890269036394343 dis-:0.013068499554597235 will:0.011891265061331395 :0.4215710362163587 +that:0.15945032881199842 and:0.11762053571430549 as:0.07198066084388971 when:0.0680112768343032 which:0.0660920796833723 but:0.04370932225663487 where:0.0433481179782463 if:0.03544385895219336 of:0.03375121868775915 what:0.023856667823892275 because:0.017597704536621083 before:0.014168378656565582 to:0.014062333257201508 until:0.013518578494301166 for:0.01218841012774423 though:0.012084930949677485 than:0.011841183301678836 If:0.011839549205606096 had:0.011812842445847386 :0.21662202143816153 +the:0.11960956755405615 of:0.07155350034241778 and:0.0676039559239734 a:0.05326052432572046 to:0.03436890162349175 in:0.024594072534771624 his:0.02040305645214021 for:0.018293763562719525 .:0.01753213953405396 was:0.016673957894719843 is:0.014860840398149151 be:0.014536184883545807 Mr.:0.013708742114981923 that:0.01253514661812489 at:0.012453454078261277 The:0.011906029162596784 are:0.011561308539268837 or:0.011528259533500137 as:0.010814161952373167 :0.4412024329711333 +and:0.08251653551003324 arrived:0.042569127643938116 Dated:0.028229890460022382 held:0.027915834324328013 2:0.02063640191246951 arrive:0.01700780747878897 closing:0.01647075466625402 State:0.0156111367187608 city:0.014466870527033064 that:0.013929562609104324 land:0.013715144879780787 sold:0.013573287353657983 arriving:0.013178623673969676 County:0.012962413623524592 or:0.011816469496642204 extra:0.01139005836215678 made:0.011322159181376816 interest:0.010160507145601837 Milwaukee:0.009955241939471058 :0.6115721724930858 +said:0.1793201039453156 a:0.1562318316637668 of:0.14643348468328352 and:0.055235274986846404 the:0.03901648529404035 his:0.03137244728923476 certain:0.022727522722872217 vacant:0.01630621063105309 to:0.014810855089485216 in:0.013346425576884998 each:0.013002767106795385 for:0.012350109965859163 her:0.012175525683289952 at:0.010763069099116415 one:0.01006824839424082 first:0.008608854708707977 their:0.008144021775587908 A:0.007531304438536661 or:0.007460559352836306 :0.23409489759224644 +the:0.2841846367672222 and:0.1532851926102125 to:0.07393349976979666 in:0.05430221615940262 of:0.051076925160371975 an:0.04198438888325386 a:0.03827056087757283 I:0.02914975679149591 The:0.027454518616419923 he:0.023240627889363652 this:0.022187511837627245 his:0.02009107020426708 that:0.019791124833936656 with:0.015877058826256178 tho:0.01529679515706798 their:0.015148579007859911 which:0.014884559233549945 In:0.011328689941663526 who:0.010832708061400843 :0.0766795793712585 +be:0.18511297199362178 was:0.1112921594948259 been:0.0769544738672542 and:0.06345271520193492 were:0.05469260579072484 is:0.049471730240675464 he:0.04365709075532124 so:0.04248166837086412 as:0.035249893520552605 are:0.03360092987062264 the:0.031002791114702635 herein:0.02642978163671205 being:0.023613777998311925 bo:0.017780075517177828 hereinbefore:0.015335643050961556 I:0.01388075303579634 now:0.012796643126873355 He:0.012490621565558952 that:0.011352278885139384 :0.13835139496236826 +and:0.11438807215349694 was:0.05579408658171733 is:0.052470544492980824 are:0.0321262392769878 be:0.02732774456177614 it:0.021489420874190656 that:0.02070676141461369 been:0.01971271733715759 succeeded:0.019407763044044346 were:0.017992067051647045 not:0.017127278568819307 but:0.016505260721077986 them:0.015285229593574924 made:0.015030572566817512 as:0.014620884305093174 up:0.014179970492449116 him:0.013795983581115395 out:0.012970185434566458 or:0.012757117406466914 :0.4853121005414069 +the:0.3336886021977855 that:0.12207778636999417 same:0.08285300478205745 a:0.05995279690397532 this:0.0581787898963984 first:0.04213947672118559 The:0.03238542564085028 of:0.02906955494494167 present:0.021563447545634305 and:0.0212005461253307 some:0.021193234103590988 short:0.019994973039069462 which:0.01746654035691746 his:0.015249236619302817 any:0.0145671569180953 no:0.01343743555160522 tho:0.012512813720715948 in:0.01167511224299414 last:0.01139338419673725 :0.058400682122818015 +and:0.17890294418087146 was:0.044272173895996116 is:0.03850653849198873 that:0.030381700108300894 be:0.0231021517165521 secured:0.02090679172943649 are:0.020485805256301445 it:0.01992531794930656 or:0.018903441027850448 of:0.018334973747769247 were:0.016903077573714537 which:0.014181315783374546 the:0.013406384333404731 as:0.010565819883544285 he:0.009178840129908406 to:0.009118109598945495 for:0.0090942821542236 It:0.008414050451753976 but:0.008273820439751396 :0.4861424615470056 +the:0.16196883714572577 of:0.14350786905373628 and:0.0611249688267046 to:0.04511578923806638 in:0.0409495343784623 a:0.02938118594798082 on:0.01731130816888207 :0.014208482947924171 or:0.01274727106411486 at:0.012447885935346866 .:0.011316547948680068 tho:0.011228212043130976 with:0.011165437697465887 said:0.0111427455173445 for:0.011088589420889548 The:0.010739341236304392 by:0.010644380574403943 In:0.009546000015318063 as:0.009146449452838061 :0.3642191633866804 +and:0.0662225346145953 not:0.0658743573668824 is:0.06230257773384382 as:0.04411475992763333 able:0.04343152634721483 him:0.04122249669271286 right:0.03856349104305289 enough:0.029869395516058533 order:0.028466176781304565 necessary:0.027221355026675418 them:0.02705956088656746 was:0.02272267822755399 time:0.02220881206263029 nothing:0.02166800072193971 entitled:0.01992210314489067 made:0.01948036508685536 power:0.019088355331865165 are:0.017815313587293262 going:0.016971733000651964 :0.3647744068997782 +:0.07811478383406885 and:0.020883855791523673 of:0.02018912094691209 .:0.0182362919275639 it.:0.010526479185002999 that:0.009058216133514183 the:0.007407653298577985 in:0.007151860837151385 Mr.:0.004534693770699877 to:0.004192218618060042 by:0.00413677453539856 them.:0.003981988800850091 I:0.003689406093023336 follows::0.0035501128611771958 county.:0.003207405302071217 :0.003203429410344238 city.:0.0027958454348095967 him.:0.002783966966209438 work.:0.0026288030980132866 :0.7887270931550281 +of:0.09129790931378902 the:0.07369883040827747 and:0.047842263382354346 in:0.04189055351593407 to:0.04045875475680249 a:0.03542341257202578 be:0.02020462051672066 for:0.01979292654746225 was:0.01760256398103379 at:0.017380150555488715 is:0.014984483003968216 with:0.014047653760730413 by:0.01374644383819499 :0.012670486581795598 In:0.01200961464556976 or:0.011563835749786333 from:0.011391516893522809 are:0.011273104484969465 that:0.010755276030689069 :0.4809655994608848 +the:0.20002908559148078 of:0.1698323950952839 by:0.06845157040472945 and:0.044279426709560796 in:0.042883400369802274 to:0.039720344999101334 at:0.026015550573010564 The:0.020288271398730476 a:0.017285481110938847 from:0.015987521275851825 that:0.015501024689910065 :0.014120783360057005 with:0.013389591243128513 or:0.013257805765334722 tho:0.011822295395349475 for:0.011798465749252418 said:0.010922494872332754 on:0.009917402805546122 In:0.008868552696868986 :0.2446285358937297 +the:0.2711828407045965 of:0.14861156198764455 in:0.13362957520159616 for:0.061026003265650074 In:0.03889837587145228 a:0.03725276730735482 this:0.031231642179469443 on:0.021066100089457578 great:0.019128153773074016 and:0.018327287497860736 with:0.018238930321722045 his:0.017214440667521362 do:0.017185724267255145 to:0.017169837748388723 no:0.0166267248808554 tho:0.015572641088043446 or:0.015427361762459202 such:0.015394323909222917 its:0.014495436249757056 :0.0713202712266186 +virtue:0.062060494787377685 out:0.05417899169104244 part:0.03289673107629515 one:0.02969369892462812 quarter:0.027015883171169475 favor:0.01993830018372674 result:0.019463829004704194 guilty:0.018891084377354095 means:0.018499162894926688 end:0.018170939082736048 that:0.018121271122199262 construction:0.01726217741616459 presence:0.017003995482744873 tion:0.01673652166540914 case:0.01640819963257697 side:0.016055927605250184 erection:0.015381239457214257 account:0.015287601389485416 hands:0.015156055434805247 :0.5507778956001894 +a:0.09954325315361234 or:0.08071330533864628 the:0.07603424623321707 of:0.07367790955754065 and:0.07041873037641194 for:0.028775728802327972 to:0.022271576876645962 on:0.01748078060342977 in:0.017052502214924516 that:0.014000073857726534 all:0.011697072467784082 his:0.011572187108170122 other:0.011073761319248573 such:0.011056850618086145 said:0.010915901901866563 their:0.010300956252943062 :0.010092738487147061 which:0.008803380198882925 this:0.00874298412448561 :0.40477606050690285 +the:0.12164512761234773 a:0.12118642634986018 to:0.1100291953717217 and:0.08262380743755524 was:0.043526078334388436 be:0.039799680659864035 is:0.028810853572785945 not:0.022778257422536412 or:0.02213865825949445 at:0.01633321137569018 will:0.015948882804939595 that:0.015494783457893471 have:0.014218547118200408 his:0.01407681968157594 would:0.014007597956416274 were:0.013891752294952145 The:0.012801879597948011 had:0.012175467982676953 are:0.012050265746780905 :0.26546270696237195 +six:0.1433341687704581 two:0.1021321912749055 three:0.08449668834185986 eight:0.05750507780494233 four:0.053995217710206794 ten:0.049149630145002225 6:0.04416940894040305 five:0.039140447860459816 few:0.03793555339529406 4:0.036397588010919205 5:0.03293986910415342 18:0.03065422950069334 10:0.02834598716945168 nine:0.026812414321198776 12:0.023034472167768834 eighteen:0.022803926326843756 8:0.02260051876921237 seven:0.022097876414433087 7:0.02171460710530689 :0.11974012686648693 +the:0.13495043060413897 of:0.08116512228138067 and:0.0666484668031579 to:0.061479885922863124 for:0.0225472057129304 in:0.022258265482069606 be:0.02060705238488401 is:0.018128702512605167 was:0.016565762763359006 a:0.015576597161064762 that:0.014241236932705084 their:0.013967877427544685 he:0.012125594536493497 or:0.011887633530224664 will:0.011130101470498135 so:0.0108874112080436 at:0.010863400836486839 :0.010492776840493524 his:0.010323787803221298 :0.43315268778583504 +hundred:0.02334136986593815 up:0.005482494641173394 men:0.005366536521246011 Hundred:0.0047587970519216575 John:0.00441808156134956 William:0.004390720675819281 him:0.004016828614280843 ;:0.003997112205305733 due:0.003721199871732 in:0.0036582900032443304 time:0.003637206863828461 James:0.0035594902370151707 out:0.0034878448964120057 .:0.003467980723571515 1:0.0032804584819785204 day:0.0032444781513863933 ,:0.003058139385740603 :0.0030314555521939613 Robert:0.003005471634785646 :0.9060760430610768 +of:0.340203296361229 that:0.12612952685090537 and:0.07244117456197963 to:0.04099873573469903 the:0.03844361411187866 if:0.03700619058800451 this:0.03225491813651822 which:0.031156245801225814 for:0.027726538883099238 in:0.023055310620465324 by:0.0223751293785082 If:0.02121471212153244 let:0.014761106992083477 as:0.014019039605679427 what:0.011741211062998948 before:0.01061201568401186 other:0.010327463462643174 but:0.01013940060255964 until:0.010051327826802698 :0.10434304161317537 +of:0.09129790931378902 the:0.07369883040827747 and:0.047842263382354346 in:0.04189055351593407 to:0.04045875475680249 a:0.03542341257202578 be:0.02020462051672066 for:0.01979292654746225 was:0.01760256398103379 at:0.017380150555488715 is:0.014984483003968216 with:0.014047653760730413 by:0.01374644383819499 :0.012670486581795598 In:0.01200961464556976 or:0.011563835749786333 from:0.011391516893522809 are:0.011273104484969465 that:0.010755276030689069 :0.4809655994608848 +it:0.17755578050405837 he:0.13927007050670545 It:0.10523299090008673 I:0.06027825142833835 which:0.05786617976526637 He:0.042481722846321145 and:0.03209030305882261 who:0.0318954414170328 she:0.03179404870333046 that:0.028771532045021368 what:0.015364680764590424 This:0.012131463710530654 She:0.01168297626909364 there:0.011669682766743484 man:0.011584063167333838 ho:0.009798598553318013 1:0.009094397578907225 bill:0.008534448102730591 lie:0.007988849711318954 :0.19391451820044953 +of:0.11765737181713248 the:0.106802768912813 and:0.07323565981797077 to:0.051211999170975124 be:0.04110133823176292 is:0.04080695423269617 in:0.03700279180169096 a:0.03612176729007644 was:0.0330355104529622 or:0.018820855785419963 at:0.016751716297015766 for:0.015176707740745516 been:0.014767809686953168 are:0.014152676063881719 as:0.01343325765629355 that:0.01284555437507635 not:0.012647959280680849 this:0.011905014817972754 it:0.01188439457306453 :0.31963789199481574 +to:0.23089472748174847 will:0.1733304551525007 shall:0.08781941786295196 may:0.08385313843171009 would:0.06902128707118832 should:0.06700011657486385 not:0.05175796510422962 must:0.043415615010049036 can:0.043289426673033767 could:0.02345840779812457 and:0.01680996533887033 might:0.013170358830332433 cannot:0.012880257603317458 it:0.006891958231581781 that:0.005590837746162973 also:0.004965714387749622 soon:0.004430679396450442 only:0.004270735926967772 there:0.003961751595472331 :0.05218718378269443 +to:0.1803622837702957 of:0.07843616933230473 with:0.057752648827361946 for:0.04647448164117232 at:0.03883831150271105 told:0.03839607248800595 let:0.03488640906879387 on:0.02823483843398782 upon:0.027512999856325795 from:0.021865382453187674 in:0.018905729048551367 by:0.017407967196591576 made:0.01681929626727554 make:0.015738203647964816 give:0.015026883400744479 gave:0.013453033063360369 tell:0.013370393426639706 Let:0.012343087639739824 have:0.0117781229794228 :0.31139768595556266 +one:0.05046040490855256 on:0.017326825982101626 receipt,:0.016380893207002867 two:0.016306410615081902 person:0.01053903038033433 law:0.009829622188943836 and:0.00977163609753832 day:0.009073236824790552 man:0.008810498348589236 more:0.008387404018088752 part:0.008093055687957146 year:0.008051327401722003 mortgage:0.007135261281215227 in:0.0069644189054931995 action:0.006614323960653262 sold,:0.006134203142255761 right:0.006039722381070165 side:0.005958090984117297 any:0.005830955172717658 :0.7812926785117743 +the:0.1973187545466576 a:0.13932613853528927 of:0.09145921966882832 to:0.0723206651567717 and:0.06981009746611652 in:0.03163121524692428 an:0.0298935456268029 The:0.01679657363549159 that:0.016131400641107196 as:0.015724241014437854 his:0.013781569540374653 on:0.013604751491237027 with:0.012119638082998593 or:0.011891039555240632 from:0.011787109587462664 tho:0.011400506547798088 no:0.010398585937398435 by:0.01024828264540443 for:0.010223970951170494 :0.21313269412248773 +the:0.08629560222565955 and:0.0722292722898218 of:0.058707873905993205 to:0.04101113151991369 in:0.035015920239032244 a:0.02556364503436161 as:0.018469685849522507 for:0.01648005702909681 that:0.014931304140933863 be:0.011194623937083231 :0.010886773618702985 is:0.010463015592109782 with:0.010249615070156093 which:0.009658038851766455 was:0.00945881027900781 are:0.00921892814686261 on:0.00917403804181468 their:0.00869268240639468 at:0.008473386771684084 :0.5328255950500823 +one:0.1028303141280697 part:0.05963429477052991 out:0.04766456937681193 some:0.031418679026461914 members:0.030764490253327767 side:0.029940657362655835 portion:0.022063658796890564 office:0.020457735219956013 member:0.019726706386316174 end:0.019666887540649894 tion:0.018667441728710307 parts:0.016814747270460957 people:0.014112771422418794 all:0.014072739582212475 any:0.013183573287639892 One:0.013083578354183906 that:0.013024335602903442 account:0.012482348155001894 many:0.012077825070275192 :0.48731264666452345 +one:0.04146787919752447 part:0.020150342963686337 that:0.01256890588960809 portion:0.011639901869960131 any:0.010470363646877057 and:0.010341844470026588 side:0.009772891390045406 all:0.009082905281165671 out:0.00853138713533884 tion:0.006043304540715218 some:0.006038954560630128 favor:0.005703924881481857 either:0.005451241857198703 payment:0.005372545878744851 District:0.005192259264215464 office:0.004930934149815805 use:0.00490742091481366 virtue:0.004694581179334476 or:0.004608556615091658 :0.8120298543137255 +that:0.24087121215280272 and:0.12157520004556935 is:0.08115435684263181 was:0.052209367101571424 of:0.04667768524470752 be:0.046489075555368 but:0.04513104135701227 by:0.026977022891129472 which:0.026794037020544066 if:0.022108765922372996 have:0.020524152579354787 with:0.018779012190090535 for:0.01705915642051494 are:0.016604061038063576 to:0.01646844021876286 as:0.015645493281649717 had:0.0147279898166201 or:0.013478710552788462 were:0.011723633014645407 :0.14400158675379998 +the:0.16645560329997164 of:0.12139721579075123 and:0.07411327924204575 to:0.04315510503061944 a:0.03378915774488091 be:0.032524872260910956 in:0.026622747048011753 for:0.025055413705249073 was:0.024565872695568567 his:0.02132131539897319 is:0.02119470620255564 at:0.0201588713170233 their:0.01792094162163172 or:0.01597972521957516 not:0.013383975228775045 been:0.011756160453340176 tho:0.01130112732122299 are:0.011172362665469239 an:0.010791971091367711 :0.2963395766620565 +be:0.11005051454887232 is:0.10613383964375814 and:0.09212072283615048 was:0.07738303738961927 are:0.06524895314525893 been:0.05464313905342223 well:0.04942589222317443 not:0.04032073686353427 dollars:0.039973755703052324 were:0.027181469751305608 more:0.018627094496429724 millions:0.015052857722465651 of:0.014904484350369621 now:0.014422276650476048 most:0.014278831804791729 Is:0.012913746712963213 dollars':0.012008901362932322 hundreds:0.011601066954246944 as:0.010963653676042788 :0.21174502511113394 +the:0.15080883691762698 of:0.09398109677680212 in:0.09358312166194505 a:0.07880007211162417 to:0.05822860350972244 and:0.057321428883432515 In:0.02460272837157113 an:0.02120385243525451 with:0.021010590719892294 for:0.018904298816924403 is:0.01317835236436183 or:0.012570633631015897 his:0.011687186339803849 The:0.011355726651783853 are:0.010134838854254797 tho:0.010056766501418055 their:0.009679604463109589 that:0.008315752006408782 by:0.0082292620154596 :0.2853472469675881 +up:0.04043648901674502 time:0.022241142406349217 hundred:0.014905360694793916 made:0.011928190101811944 in:0.011859079718160208 out:0.01145790075497174 dollars:0.009502743933727825 day:0.009493146667534869 down:0.009172542421419579 them:0.008901162382095052 him:0.008648629188648092 it:0.0076357452171943105 work:0.007169056243379581 men:0.006733805866643619 lying:0.006457290693339198 water:0.006394586876368134 right:0.006197925879464092 back:0.006130802342441172 ;:0.006055875899891714 :0.7876785236950208 +and:0.06341133254117746 as:0.06259082891459346 order:0.056456003165205215 able:0.05207201748069918 is:0.044713020507936144 enough:0.04243037913116934 necessary:0.039359843632736737 him:0.03361619156125576 was:0.030665654521335114 time:0.0264640239000838 them:0.023856718676681873 not:0.023203136750960876 me:0.021572324247991714 required:0.02117145742556287 desire:0.02116683340872205 unable:0.019897817268225666 have:0.01838624653534061 right:0.018280289611863242 power:0.017701366469714402 :0.36198451424874445 +:0.04886162056411152 and:0.040019830359908116 made:0.019534249586484108 was:0.01884742032062261 recorded:0.0156557013153549 that:0.014962923641391521 be:0.013346741481126276 is:0.012414190474703378 o'clock:0.011973468167413116 placed:0.011531292464673245 out:0.010920644875481857 found:0.010814196298763954 place:0.010167028437165111 situated:0.009811016372775217 up:0.009511290277384947 them:0.00920663098385622 been:0.009160737073209432 him:0.00901249715764949 are:0.008449437635810648 :0.7047990825121143 +the:0.20082536363093867 of:0.16119772658301124 and:0.06309467763858445 their:0.04797173407308675 his:0.04047317563432735 a:0.03255130134207845 our:0.03070459849066223 with:0.030499284917937318 two:0.027587358971878532 or:0.026672919424424773 The:0.0236018200670916 its:0.01969439510069454 your:0.01802787877635588 her:0.015056744314138669 for:0.014466274287302338 such:0.013300850654784233 my:0.0132364162695099 no:0.012790378072006293 tho:0.012680645457224487 :0.19456645629396235 +foreclosed:0.0826326115191591 accompanied:0.05930666942049243 made:0.05336585618201428 and:0.05113808815574321 followed:0.0477509052190524 surrounded:0.027001067213274173 up:0.0223956915218854 caused:0.01986528146981332 secured:0.01963201700061169 was:0.019527138795776604 ed:0.0163892391762384 it:0.014428341647705614 occupied:0.014047766264405974 him:0.014002524716027894 surmounted:0.013411064770142235 given:0.012603829803430331 done:0.01236267211154264 covered:0.012285928470556887 that:0.012257320636555267 :0.47459598590557217 +and:0.0860212814855856 is:0.08505663339548285 it:0.05394204991847728 not:0.05286202648791953 was:0.044148133521534426 be:0.03235523604121802 but:0.032066572381731565 so:0.02767624707793537 Is:0.025543848520422813 I:0.02406237102291999 he:0.021238663573905962 are:0.02018477067210396 have:0.01998792278470231 only:0.01725302524987664 It:0.015151399621055174 or:0.014104693007640681 as:0.013689421775199537 to:0.013460604554307799 also:0.013212492904489875 :0.3869826060034906 +the:0.6254166301422369 a:0.14749268027553425 The:0.054117128722534456 tho:0.03443081086098049 of:0.01619409152930464 tbe:0.014049340453722473 by:0.010849776656284735 and:0.009351384079412745 no:0.009183710489514383 in:0.008419999226788707 for:0.006847904557214454 any:0.006565720835803352 to:0.00632908382672935 or:0.0042940293278025485 with:0.003922904877073244 every:0.003633523116291338 this:0.0028397229915112635 tlie:0.0027401519712914285 Tho:0.00271291631658421 :0.029608489743384928 +the:0.18813655891388756 of:0.16334123991866045 and:0.0832785975007419 in:0.03486914345353906 for:0.02262820592179497 to:0.020654563659743063 The:0.019273982761411658 by:0.018568710075332808 .:0.015997160044077453 a:0.014807877567540057 :0.01428591800838385 that:0.014242162287637031 Mr.:0.014239859773205906 his:0.013544027594958557 tho:0.01321968098919199 or:0.012804092034165042 their:0.010895929388722223 at:0.009797919061028011 with:0.008061150702706675 :0.3063532203432717 +the:0.43651997457856057 a:0.3277899031003401 The:0.04527385395604479 tho:0.026810783160701856 and:0.015133815315031864 other:0.0137116003485404 tbe:0.011135875943874596 or:0.010521089230613647 A:0.010027648436569834 any:0.009007381250802624 no:0.008457996591328057 this:0.0066648777243724314 great:0.006078753581238689 of:0.005468288221066831 every:0.0045889979158455245 one:0.004570457669911491 large:0.004536274151338629 first:0.0044634206850326565 in:0.0038254144418476744 :0.0444135936969377 +put:0.09224994023671064 going:0.0721813305258867 carried:0.06955815362259357 was:0.05091712809691227 and:0.049225001416805254 went:0.03627983178375956 go:0.03438674610105086 came:0.028888926521061172 placed:0.026679758004789673 is:0.0213229813750767 were:0.021214142508221834 work:0.020995113325582893 goes:0.01976376352118057 called:0.018951657151936915 them:0.0185089159434608 set:0.018455150436934596 up:0.018354705448442428 be:0.017903096264600224 interest:0.016929882287993858 :0.3462337754269995 +those:0.131603950208728 man:0.07618029265851242 one:0.07488106516145178 and:0.07133778990922185 men:0.05191890680442398 all:0.03684148011170676 people:0.024875935051606415 persons:0.01655178335435497 Those:0.01616875509081486 person:0.01525484193316413 woman:0.012491156511451135 but:0.011787078357609547 others:0.010421270917408831 many:0.0083015044574704 or:0.008174807077073694 man,:0.0067849910953753645 women:0.006336698639709476 men,:0.005867562467380241 girl:0.005848994387884083 :0.40737113580465206 +:0.038486643472416045 it.:0.03396664328220038 them.:0.01653838713049368 ?:0.013929523692572996 him.:0.01145522399403619 me.:0.009194950785017107 .:0.009162400759888353 her.:0.008716308864669247 you.:0.008230169194493578 thereof.:0.0077153860587386115 country.:0.007348020021402233 life.:0.007040193847337656 same.:0.006841495747261721 all.:0.00664326297145345 tion.:0.006146208535703703 ;:0.005929053603628962 time.:0.005886597788469969 man.:0.00563237459961766 world.:0.005572481749498296 :0.7845646739011002 +the:0.19179025621944498 Republican:0.13995620372679105 a:0.1397682605976522 Democratic:0.11630681533296294 democratic:0.04720156461737329 republican:0.0369979234174139 his:0.025008582445767973 any:0.02354979827907488 publican:0.020376445636106286 cratic:0.019494946871942764 The:0.018780054248743433 no:0.017559936192007346 one:0.016071736027062255 their:0.013887908339828422 bridal:0.013599248385338776 lican:0.013536196100005123 dominant:0.01311425723386581 tho:0.011843875282120957 of:0.011708544736992961 :0.10844744630950467 +it:0.14980370725759037 It:0.1417831987182438 This:0.0994395734160535 which:0.06123870759127718 that:0.053827314535707556 this:0.0485319048157116 and:0.03481463816943127 there:0.03163351300029438 he:0.025874957304685715 That:0.02452637228711398 what:0.02101535076138451 who:0.020745118014465793 He:0.01553744098124584 What:0.015466571118696077 There:0.012715435083286795 Here:0.00825702518154719 one:0.007881347531268929 Such:0.007797349307744799 as:0.006397540204786528 :0.21171293471946415 +of:0.2648920037498258 on:0.1378542675119806 to:0.07240325471188616 and:0.05957361055973986 in:0.058297983140681846 from:0.039247962177879535 for:0.03363798224388621 by:0.030679151906434537 that:0.030263784366384005 On:0.02331826723794178 In:0.02230827539836219 with:0.018767826964946114 at:0.01853529362044337 upon:0.016945267314298504 all:0.013989638748942965 or:0.010372673670397738 over:0.008727847548100822 as:0.0081191484602072 ot:0.007296677987515143 :0.12376908268014557 +a:0.16029420157799865 so:0.08858346753657502 and:0.08052381238246534 be:0.07662553315933598 is:0.0741653764141357 was:0.06574119654733615 are:0.06537873531518291 no:0.05288868162941874 were:0.029800271509559353 of:0.029414944443938273 not:0.0269847405002597 as:0.026450822259984675 too:0.025762463377437633 been:0.02254987844268659 from:0.019625917703992173 very:0.01949400339091167 it:0.01898177521171895 or:0.018718851930294815 with:0.017395071847144318 :0.07962025481962334 +of:0.09129790931378902 the:0.07369883040827747 and:0.047842263382354346 in:0.04189055351593407 to:0.04045875475680249 a:0.03542341257202578 be:0.02020462051672066 for:0.01979292654746225 was:0.01760256398103379 at:0.017380150555488715 is:0.014984483003968216 with:0.014047653760730413 by:0.01374644383819499 :0.012670486581795598 In:0.01200961464556976 or:0.011563835749786333 from:0.011391516893522809 are:0.011273104484969465 that:0.010755276030689069 :0.4809655994608848 +it,:0.020066250729468618 ;:0.018463310008504038 them,:0.014025162533758715 it:0.011994110429603987 him,:0.011236128826773334 him:0.009471149609493692 time,:0.009203551806326591 country,:0.007751046760039575 up:0.007740391441548338 years,:0.007710582374234828 people,:0.007077270634756562 up,:0.00706191553698371 here:0.006838778546039603 States,:0.006822957880501987 them:0.006450399552461554 in:0.006294703052973352 time:0.005982962242141434 year,:0.005863359520135046 country:0.005761171033017349 :0.8231847974812377 +he:0.18241827291311735 I:0.17174265690921273 they:0.0856774297640675 and:0.0595269034081149 she:0.057296627332918175 who:0.05191164235006708 He:0.041103545416323245 which:0.035677104662854474 it:0.035467482116245064 we:0.030073022224598272 you:0.024447776179720437 that:0.01811787134367948 It:0.01673084320689491 They:0.014289281536972545 what:0.014070014935095085 ho:0.012839831586028375 1:0.011624290908780895 but:0.010851358512100425 We:0.010433911107589854 :0.11470013358561917 +to:0.31019601080253456 will:0.13793678134185958 would:0.07774183426288846 may:0.07078528459128908 should:0.05127128910568003 shall:0.04901700088221223 not:0.04594340671139167 must:0.03257846389794495 can:0.03230794200897745 could:0.02086203652199685 cannot:0.017984019065961077 and:0.017474170306863105 might:0.013535476571922157 it:0.006941357203389574 never:0.005186754057084183 that:0.004968373522249409 also:0.0034185027334872305 only:0.0032209125075107173 soon:0.003102154139878731 :0.09452822976487903 +the:0.2062828028969416 a:0.10246512516495251 of:0.07903660600021628 for:0.056258177038579035 to:0.0401246129127163 in:0.038766127197426566 and:0.02877299602741241 at:0.018260492825070643 on:0.014739987943349209 by:0.014339218238563696 In:0.01359406239509677 tho:0.013477792279918337 as:0.01275803772741033 that:0.011611264419963699 his:0.010892687634699343 an:0.010883194364273024 :0.010482092319225688 from:0.010313369581882123 The:0.009791914883913752 :0.2961494381483887 +of:0.09129790931378902 the:0.07369883040827747 and:0.047842263382354346 in:0.04189055351593407 to:0.04045875475680249 a:0.03542341257202578 be:0.02020462051672066 for:0.01979292654746225 was:0.01760256398103379 at:0.017380150555488715 is:0.014984483003968216 with:0.014047653760730413 by:0.01374644383819499 :0.012670486581795598 In:0.01200961464556976 or:0.011563835749786333 from:0.011391516893522809 are:0.011273104484969465 that:0.010755276030689069 :0.4809655994608848 +&:0.22231134268649963 Syrup:0.11002457269063098 the:0.06657222088497375 of:0.04271426186253442 and:0.03986913481272822 A:0.023830072551646528 a:0.022006676147583466 Lumber:0.017525479869600357 Supply:0.01749132242123441 Printing:0.012755284802204739 :0.011830001138457688 Drug:0.010183386814984294 that:0.009669256807274722 The:0.009059188083353799 one:0.008330062358568511 .:0.007249173408771317 Trust:0.006877359950393599 Republican:0.005990923125758275 other:0.005717228034558439 :0.34899305154824284 +hundred:0.02334136986593815 up:0.005482494641173394 men:0.005366536521246011 Hundred:0.0047587970519216575 John:0.00441808156134956 William:0.004390720675819281 him:0.004016828614280843 ;:0.003997112205305733 due:0.003721199871732 in:0.0036582900032443304 time:0.003637206863828461 James:0.0035594902370151707 out:0.0034878448964120057 .:0.003467980723571515 1:0.0032804584819785204 day:0.0032444781513863933 ,:0.003058139385740603 :0.0030314555521939613 Robert:0.003005471634785646 :0.9060760430610768 +as:0.07601498838372205 and:0.05689624583686341 him:0.04162841880174646 was:0.03464846685579442 is:0.032118884411713615 said:0.028336512731498315 ought:0.027201845398054654 up:0.023993722847400572 them:0.022801676842119572 it:0.02161300574834403 seemed:0.019610615193799804 referred:0.018968132807390608 going:0.01869236319793586 seems:0.018061744764242146 came:0.015040243087018417 not:0.014359346063718935 went:0.013808902483258289 her:0.013447291758104265 time:0.013278229569201133 :0.4884793632180735 +of:0.18418874433237387 to:0.10355576976427615 in:0.09151949344125215 that:0.06397343097690916 and:0.05965096285957982 by:0.055896268169213864 for:0.05261620457075111 as:0.05094179416874219 with:0.046500082908762515 at:0.02699215509141189 is:0.026496526279501623 such:0.02596463618937407 from:0.01922396199985886 In:0.018603338304832528 make:0.017460622869726303 was:0.01690024830450505 into:0.013892293711357627 be:0.013269717905149393 or:0.011931278933654295 :0.09942246921876756 +:0.0638888884755949 it.:0.015401813667220429 .:0.009591229134170196 them.:0.009070817631711418 time.:0.00703015382639179 him.:0.006900723952665188 year.:0.006664277168129705 country.:0.006590254752819453 years.:0.0059175365073589154 day.:0.005464174798564701 city.:0.004944420972979971 States.:0.004153994411571293 water.:0.004110178378187 again.:0.004045256423761056 people.:0.003997669917429034 feet.:0.003916554877820721 work.:0.003914045731452915 life.:0.0037392527771612093 week.:0.0037384215899586245 :0.8259203350050515 +is:0.1327791054941627 or:0.09403466354356624 and:0.0925318183749997 if:0.06822142943931922 are:0.061663067613824105 was:0.05268288415492811 will:0.049204924252610166 not:0.04151469442125817 could:0.0402673724595592 would:0.034852954889581754 do:0.03271202312092481 does:0.03222926442365175 did:0.029204858077407286 have:0.02626852722829463 were:0.024757787306793833 had:0.022118066408914377 If:0.02128026978287307 but:0.017817594394468717 can:0.017721594198788066 :0.10713710041407408 +and:0.07558940021936399 recorded:0.030196237618668006 was:0.028917161578042846 made:0.027969746247669736 that:0.027730098932509103 o'clock:0.025060522019555328 up:0.023026552239529506 is:0.020398277211376416 found:0.02003101797656537 placed:0.017482208134164214 out:0.016937164562539058 place:0.016819459500107596 interest:0.016629321966808677 him:0.016002796715253755 situated:0.01573420479581609 it:0.015128305982428461 them:0.014715943643665314 part:0.014646613000297721 interested:0.014450471929902294 :0.5615344957257364 +and:0.14805701561725884 the:0.06225603014548013 to:0.04964801902463185 of:0.04329777059726624 was:0.04132718747241792 had:0.0328696073295099 be:0.031065446752623283 has:0.030867633724993074 have:0.028508469374701938 is:0.024149419290498277 which:0.021110686187081375 are:0.021092986283294216 he:0.020272201974985894 been:0.018279914241036328 were:0.017590359148879957 it:0.017183732866133113 that:0.01432015592734595 not:0.01431720979554121 It:0.014177650669066864 :0.3486085035772536 +the:0.11778873518507689 and:0.07933174453443854 of:0.06479209319024071 a:0.040012067147687194 at:0.02053694703977331 to:0.020065859041134473 was:0.01803899611080691 .:0.01439522447776824 The:0.01414502904617192 :0.013522713692298564 his:0.013503811113706417 be:0.012327477896643069 for:0.011847073699196289 is:0.011368930725936704 in:0.010880400919710143 Mr.:0.010350507639209463 that:0.01030778989680538 by:0.00987070097894254 or:0.009226787402670331 :0.49668711026178286 +is:0.06288979656595596 and:0.061988219785684806 able:0.048535779971223304 order:0.03558164489239125 time:0.03475953132440775 as:0.03288374733567348 enough:0.032332652923469894 him:0.028994709504034558 necessary:0.025978951269586815 was:0.022029503422190996 not:0.02106322813037055 right:0.017457442392673654 ready:0.017175582220148002 or:0.016524787717921555 me:0.015435418975131097 made:0.015383513928028565 going:0.014885705524332733 began:0.01486923262757047 used:0.014810859608172062 :0.46541969188103255 +of:0.09129790931378902 the:0.07369883040827747 and:0.047842263382354346 in:0.04189055351593407 to:0.04045875475680249 a:0.03542341257202578 be:0.02020462051672066 for:0.01979292654746225 was:0.01760256398103379 at:0.017380150555488715 is:0.014984483003968216 with:0.014047653760730413 by:0.01374644383819499 :0.012670486581795598 In:0.01200961464556976 or:0.011563835749786333 from:0.011391516893522809 are:0.011273104484969465 that:0.010755276030689069 :0.4809655994608848 +hundred:0.02354633043149077 one:0.018138272552371746 men:0.016322878963479167 up:0.014181055984776116 two:0.013678811623205011 in:0.010906689009980854 dollars:0.010589337838453757 ;:0.010455558070120677 it:0.008911765697832367 and:0.008672835674620927 street:0.008095896282946824 three:0.007435881884097031 here:0.007430247239908506 all:0.007191015186778028 work:0.007086410534334062 :0.006932822366507875 him:0.00689046943626585 women:0.006870252376219204 them:0.0066149510323424325 :0.7990485178142688 +to:0.5783475504126327 will:0.042462598552853364 not:0.0333711343920132 and:0.02806081323730451 shall:0.02315756487672769 a:0.017644729121639866 would:0.014485992868697088 of:0.013700835289743758 may:0.00886309572801368 can:0.008481415894751338 by:0.008312406095279145 could:0.006874885110578331 must:0.006769335513902729 the:0.0067003804962426795 an:0.006583227816627336 said:0.006259030613010358 in:0.005479691146892996 for:0.005359177919300387 that:0.004911542172974007 :0.17317459274081484 +it:0.20661626833118804 It:0.13133310388077965 which:0.05346195225056892 he:0.04322413433168328 and:0.0399221355018402 that:0.03638459118631527 there:0.02656324547693805 who:0.022588363007738477 This:0.01601752777676921 He:0.015090910728543903 what:0.013686208311658789 she:0.01181234484166701 this:0.011752239301455133 There:0.009749183368011116 man:0.007759333367156636 as:0.007068481254995637 work:0.006691860301109499 country:0.006039779831696346 but:0.005362639996269743 :0.32787569695361507 +and:0.09631219532671687 was:0.03513566928966104 held:0.02987715681559008 Beginning:0.024332169066967536 is:0.023122938489353394 look:0.022074108253454683 arrived:0.021820518428646088 that:0.021226918252779888 interest:0.02006974641058921 thereon:0.01971421054267379 made:0.019401567074562896 are:0.019271449916013022 up:0.01806602795372081 him:0.01678700722897829 be:0.016375054451444982 but:0.01586396852970274 out:0.015503094089883073 or:0.013721423267833084 not:0.012734170433403743 :0.5375906061780248 +the:0.13855038754961027 of:0.07617586674805975 to:0.05855615099745327 and:0.054556292163643584 be:0.031946424562382086 a:0.02702893326963555 in:0.023333451873780157 his:0.018825649312559978 at:0.018785788690639363 was:0.01776471103924473 for:0.017761600870720897 their:0.01690757272942293 is:0.014899232144238647 that:0.014620288973323703 or:0.012774177411289443 been:0.011043626985690808 it:0.010680917706261835 are:0.010625244044093414 were:0.010124357711432058 :0.41403932521651754 +he:0.1165978704919779 I:0.1112758825091553 they:0.10159111967320485 and:0.07228187666604859 it:0.062091470679123725 who:0.05815118179607236 we:0.04537043380053095 she:0.03816677445951854 you:0.02749894852754821 He:0.02355860594851262 which:0.022838826195572464 It:0.022526452790473203 that:0.01841481107243982 They:0.01791739384793714 will:0.013557925772504278 1:0.013361971227418041 We:0.011350714306417532 ho:0.010707047865334019 there:0.008776124611394463 :0.20296456775881602 +soon:0.0735837963616487 and:0.06781165908001993 just:0.06681706095913195 well:0.05772476681108732 far:0.05390898469860273 long:0.03644642474840924 but:0.02725557724453722 Just:0.02130258455149008 such:0.019969516589915113 so:0.019888932396446124 it:0.019623403306021373 much:0.017672595834661187 him:0.014235342670200954 known:0.013965707866121613 them:0.01395503671990361 And:0.013203647073366739 is:0.011986701722803424 me:0.011496924394687108 that:0.011250590848621483 :0.4269007461223241 +of:0.275574333881826 to:0.08636224615023709 in:0.06631904249133982 and:0.053992018225395254 for:0.04185726238848965 by:0.040432462728593715 on:0.0386621368609385 that:0.03746813623829841 In:0.02853879791593314 at:0.02784511394431448 from:0.027249043353089128 with:0.02598983508374518 all:0.014273748255081415 as:0.011953034597961125 upon:0.010404474445179767 is:0.009962155410920995 ot:0.008697425934451705 through:0.008441579399216994 which:0.00831499649011874 :0.17666215620486883 +for:0.08829912262410083 in:0.08576004326899617 such:0.06849974017126192 is:0.05893409910262471 as:0.05665971085025957 of:0.054691419584611864 at:0.050808971257206834 with:0.049473077180797 to:0.04857202467436979 was:0.04745633347201165 and:0.04207575223233445 by:0.033338944837496644 have:0.027974186860580993 that:0.025349549343187693 be:0.02425094541688494 from:0.024218603894019232 made:0.0233434405635275 not:0.020725349879107992 In:0.018955905541977527 :0.1496127792446427 +to:0.21637357127034249 will:0.16856463309288922 may:0.0867949017675453 shall:0.07822772851706691 would:0.07442443597729452 should:0.07388129106904859 can:0.0654489041774145 could:0.04688617320010991 must:0.03325659959188858 might:0.02296238706974407 not:0.021106920280404104 and:0.015853214094422138 cannot:0.008951186784044444 that:0.00366711547075316 probably:0.00344522375392319 has:0.0026272745723769204 it:0.0025753776323344936 had:0.002464578375445052 which:0.002426515809051382 :0.06906196749390107 +the:0.2924377883825087 and:0.11047655860664168 be:0.06594843200805205 of:0.06321235210011195 to:0.04997985916101113 is:0.03888381066249986 was:0.03644948970520051 The:0.0359523358429325 been:0.029309822771854753 by:0.027932678457992768 well:0.023254427545341256 a:0.022481031357953415 have:0.02237137265690243 are:0.021582710097458227 most:0.020076315267475102 an:0.019600837455923 that:0.018628582514236346 not:0.017812423741440327 in:0.016610229644444436 :0.0659989420200196 +for:0.13337084666418558 of:0.09298009729544394 to:0.0870166421020072 as:0.06919317370086728 and:0.061290630084657335 with:0.056249053436091836 in:0.05214433735906753 was:0.04852019144697021 is:0.04358057287835181 that:0.038565566611076574 by:0.034343963255455925 have:0.029452361131410327 at:0.02744017563295774 on:0.022111878071735234 had:0.020949277028389127 make:0.019696111852600062 be:0.019120195562796545 made:0.0177003600948262 has:0.014746715873910878 :0.11052784991719866 +for:0.1485087635067907 about:0.1276478422546779 or:0.08933897539104849 than:0.08902868214019165 and:0.07154855457265143 past:0.05853883210423464 within:0.05280114263807726 of:0.051745833978789256 nearly:0.03790966418520581 last:0.036883001948074486 For:0.0298889239163801 least:0.027779794283756935 in:0.024943691668663046 to:0.024934241866647378 only:0.018294210945790576 number:0.01816889229344634 over:0.017102355643591333 About:0.01319071079808905 was:0.012976779734287734 :0.047769106129605866 +and:0.049225748908862034 them:0.044409305538954426 him:0.04074700422953202 miles:0.040323112852567004 away:0.039964177246655526 far:0.02957648234373976 free:0.02837253650972008 or:0.025804137661680927 it:0.024962398822172188 come:0.023668742111110527 people:0.022902650055720557 us:0.022619157851410807 men:0.022195450669932913 out:0.021517759017442146 taken:0.02101614290101923 suffering:0.019694317711348334 up:0.017865720850317998 derived:0.017382044606859888 me:0.01722002548890329 :0.4695330846220503 +those:0.2853893353511454 men:0.09452519534684801 and:0.07294040957717926 people:0.04317764870325665 Those:0.03851271846666279 persons:0.03780051709415746 all:0.025916309764962495 man:0.02371572053605417 others:0.014882803312883768 women:0.01484877698184214 person:0.01290728834628543 many:0.010501831397209121 one:0.010444907840095458 thoso:0.009229834851903042 men,:0.008154664647749246 boys:0.008082800041428202 thousands:0.007663475951013553 parties:0.006698829125174786 ones:0.006572648999583592 :0.26703428366456544 +of:0.2728857579680616 and:0.07511923176365096 for:0.07503870937661812 in:0.0691576488323794 to:0.06485627910690833 with:0.06000516181412151 that:0.05460068539253658 by:0.04058594697699032 from:0.02843418161983362 as:0.023911008000264668 all:0.021394385528836542 on:0.017123834461348145 is:0.015102171860868163 upon:0.012908693853072717 In:0.012900534656587073 under:0.011033985534969057 at:0.00950785849451111 which:0.009365559885302095 but:0.00856882472785964 :0.11649954014528037 +the:0.1286197414595015 of:0.10615890854417441 and:0.09906237709138437 as:0.05761128098876861 in:0.054532945969390664 with:0.05266079501493663 their:0.046900310046611396 for:0.03794608454814269 from:0.03503930096108579 sufficient:0.03037968066553765 its:0.02936471034465391 his:0.025725707014606202 so:0.021148526065398982 an:0.02034819692379522 is:0.019683691126974618 no:0.018478123135329934 such:0.017565599973061483 by:0.016876392967869695 given:0.01624803048365187 :0.16464959667512438 +as:0.08245194352867512 seems:0.07504477896856314 and:0.05226239243978683 up:0.038712456516838994 come:0.035284672761600626 seemed:0.030730583401014436 came:0.028358324435320093 it:0.025771163203503228 is:0.02409816625823578 known:0.020912166522470348 them:0.01997358156541705 back:0.019536691820668067 presented:0.01810643517000634 sent:0.017494707978847394 was:0.017384944780957427 down:0.017154807936619994 brought:0.016437327320737827 given:0.015626793637823353 regard:0.01411594749458947 :0.4295421142583245 +of:0.10036425554061128 and:0.09867255827094257 in:0.04887477001133228 to:0.04309676529803197 fact:0.03312124920228808 said:0.028016465130273754 on:0.025147031828386315 all:0.020897671259005178 is:0.018989333611116044 so:0.018899457882617265 from:0.018463519784011995 for:0.017651195592365977 at:0.016946018612698295 know:0.015554635744109193 believe:0.015397314140675087 say:0.014489633297242495 with:0.013970217188878864 by:0.012605124887586036 In:0.011949884106238937 :0.4258928986115884 +and:0.09560128817820747 well:0.06788886904475627 known:0.05034042578959939 such:0.050303008501919017 far:0.042251547370039826 just:0.03083329599055616 much:0.02429457888800924 act:0.01685549205435747 described:0.016098934536528338 that:0.0146063524560712 be:0.014362088507708917 was:0.014215214901469332 soon:0.014142108932016033 is:0.01406495615789224 men:0.013326297922969186 designated:0.012836573117301206 same:0.01159170983392358 but:0.010791244780806777 it:0.010686238175061886 :0.47390977486080643 +of:0.3325528255892967 in:0.10420752256652185 for:0.07692203776404329 to:0.058213935165102 that:0.04787652384559781 with:0.04339614818281139 by:0.03611004324364425 any:0.036052680117120255 at:0.028531615510424775 and:0.026606971226614175 from:0.02476094522105256 In:0.019771994353365883 on:0.019709768643746566 all:0.01940724268159073 upon:0.018215085632059168 have:0.017226060565112965 under:0.014608251222563621 had:0.012076774819438627 or:0.01087017993940285 :0.05188339371049051 +the:0.3849718134091282 of:0.1112549492041552 in:0.10408278958310174 and:0.06537176873104387 with:0.03985474597615228 The:0.0389400720318066 for:0.036020563686421286 to:0.02737567937772053 In:0.02114801269336672 a:0.017821714052538812 all:0.017074428449287336 his:0.015550824794803013 tho:0.015494637897983112 by:0.015438580432515664 at:0.014058247328940754 from:0.013993580189470601 their:0.013931062357170537 its:0.008477570017274543 under:0.0075294530027061575 :0.030609506784413005 +was:0.12192185640364539 and:0.07315338413794804 up:0.04483336331142435 is:0.04438756091690539 him:0.044238416820386275 be:0.04151738535837636 to:0.038997121002997966 back:0.031716466871626665 over:0.0316473906438257 go:0.02848362226604339 were:0.02681938632526197 it:0.025309793201627375 down:0.024061179045548366 them:0.02329766022514045 been:0.022180681844678952 went:0.021186589429637824 are:0.020651978056710887 so:0.01974456154569921 all:0.01893904247627737 :0.29591256011623807 +of:0.27174431101536234 to:0.10426481204631576 in:0.06153048463816708 that:0.05794550998469254 on:0.05634637532187118 by:0.05255406481940496 and:0.038450505103895034 from:0.032571167525629004 In:0.030250779757133157 with:0.0293314430149191 at:0.02716164339339322 as:0.022123939552893993 under:0.021594569483477457 for:0.01921673290618729 upon:0.016516962480595695 all:0.012744807299750386 through:0.01071627470053822 ot:0.009420797920051708 into:0.008707152871523927 :0.11580766616419796 +pro-:0.14995870178100654 and:0.09590972609440077 re-:0.07773999589007168 be:0.053358797909567 pro¬:0.03823832213544871 he:0.03641865849553671 not:0.03037601139088503 re­:0.029656578498333752 who:0.028124069900156524 they:0.026483002739028177 pro­:0.02624885232258146 as:0.025055567541746444 re:0.02094706762204176 re¬:0.01951548204505064 are:0.017254686135489666 was:0.016805100230315156 or:0.015929732675915066 I:0.014669172078635977 is:0.014628079394315726 :0.2616823951194732 +of:0.18666674534938016 in:0.18442962601274843 the:0.10642881230370513 In:0.04831015075749856 for:0.03932131388775242 and:0.032644559884287744 his:0.02692540961500731 a:0.02687649076111837 to:0.021420753133493436 public:0.02134689168097607 their:0.0201324006552161 into:0.01871681904446131 by:0.01861751662755345 with:0.017794844410510834 or:0.017752663623795236 this:0.013606059921550496 such:0.01312434281733798 that:0.012962252392040675 other:0.012800690720661666 :0.15912165640090464 +virtue:0.062060494787377685 out:0.05417899169104244 part:0.03289673107629515 one:0.02969369892462812 quarter:0.027015883171169475 favor:0.01993830018372674 result:0.019463829004704194 guilty:0.018891084377354095 means:0.018499162894926688 end:0.018170939082736048 that:0.018121271122199262 construction:0.01726217741616459 presence:0.017003995482744873 tion:0.01673652166540914 case:0.01640819963257697 side:0.016055927605250184 erection:0.015381239457214257 account:0.015287601389485416 hands:0.015156055434805247 :0.5507778956001894 +is:0.18070855085858545 was:0.11270355390211906 are:0.10105023909973795 be:0.06589578534543299 and:0.055966711641662385 not:0.05211268798860656 a:0.0509065158652628 the:0.04449572653075148 were:0.03970069544631999 of:0.030011552884372177 been:0.027831980852452153 Is:0.024787207369563805 that:0.021753483000673965 but:0.02088138945857787 with:0.017720967178105475 or:0.014492144491964025 am:0.012620013091527866 for:0.01245206269665153 in:0.011241505335499015 :0.10166722696213341 +a:0.8518374838208466 the:0.05237905551925918 A:0.03861532279415596 this:0.00730875234484389 of:0.006971399788372922 The:0.0058452428368873325 no:0.005368988328100928 very:0.005091406856044953 his:0.0037587751890785573 with:0.0034569914709178897 any:0.0029697205574171766 our:0.002519901728714881 tho:0.002029639001205683 in:0.0017915752647352692 for:0.0016901312696299797 their:0.001544075880912025 some:0.001322569109700154 an:0.0012091041679393965 and:0.0011639779196167305 :0.0021258861516206206 +the:0.39749834532651884 a:0.07520030034269234 and:0.05540858759821703 The:0.03273515726769502 tho:0.030061875542463562 of:0.020144331424922633 tbe:0.014929647509541684 in:0.014268129706664795 or:0.013333166761078447 .:0.013287381914101323 an:0.009000188755386574 to:0.00880680429595084 :0.007943763822197133 Mr.:0.00773879605474787 by:0.007328417831573476 as:0.005922572098978465 for:0.0047526933692942485 that:0.004736121968310169 on:0.004594595720579333 :0.2713091226890862 +of:0.28767355066866834 to:0.08775711267569858 in:0.08678131196995101 and:0.05160598694501188 on:0.04646139928102899 by:0.04519522654900943 for:0.044547789071328545 with:0.03396756772609607 that:0.033699232901107726 from:0.03075346596941143 at:0.027039283056790858 In:0.021061449543044047 as:0.017514234937992545 all:0.012543839382496166 upon:0.011844431150487573 is:0.00998972746569266 was:0.008814315973987914 into:0.008557199930727406 through:0.007781895704231326 :0.1254109790972375 +and:0.20669877793145844 was:0.08393913965091765 is:0.048856624984566124 are:0.03260142746595039 not:0.03258870509791156 then:0.030807021925080905 were:0.030770427546469324 to:0.030279108629167443 be:0.02813793435344766 that:0.022280621881714122 so:0.021336778384923146 been:0.016155809488373682 as:0.01531030509612966 ;:0.014480516024255468 by:0.014173492423328436 or:0.012711983541839764 of:0.012585198792431343 being:0.011265647615854558 Is:0.010833736879513643 :0.3231867422866667 +of:0.12284642676470525 with:0.0786576454944316 is:0.07344375607389894 was:0.06817236390742996 in:0.06167390393482267 to:0.05895913566972754 for:0.04743023673097805 by:0.0470039509677592 as:0.04637384230373286 and:0.04271273964661655 be:0.023739715712370983 have:0.02277187685260596 had:0.020284908684386472 at:0.018320416592440533 that:0.01696463894581066 not:0.016495570651369484 from:0.01614515492620598 has:0.015177111318235766 on:0.014662821232704586 :0.18716378358976699 +for:0.12610947644780482 to:0.08420036418427425 asked:0.06662859640873921 with:0.06406877777348201 enable:0.05388803915469084 from:0.04612393039110584 told:0.04529942037069644 by:0.04387202624612277 led:0.03409230617586639 upon:0.031116792982695568 of:0.02452840068563362 enabled:0.023423674302867552 sent:0.02277807301536732 enables:0.022236648676176102 permit:0.022080487757804135 give:0.021853107301039388 on:0.021285416085619346 entitle:0.020010918262470683 advised:0.01968887527338432 :0.20571466850415943 +the:0.10866579953131801 of:0.09195429641409876 and:0.061630549333026606 in:0.04271028755009881 said:0.031978013542250314 Grand:0.022547166526344156 .:0.022212683062332983 :0.01983070433264201 a:0.01383332742627934 that:0.013750503416049643 by:0.011402748149143877 In:0.011285905057004494 to:0.010586279466711172 State:0.01023326546998613 The:0.009432640515499212 A.:0.007905482883994534 or:0.007116082037289482 1:0.0070307289094091495 for:0.006737332125149168 :0.48815620425137213 +the:0.1266056094603107 of:0.08405867485432514 and:0.043642260904760935 in:0.038635353610889225 to:0.03612573497530347 a:0.02108627845215396 that:0.018944011472865847 on:0.016445875073160067 Mr.:0.016394555648203666 by:0.016255073334804325 from:0.015351946881961861 Mrs.:0.014712400324523034 :0.01396992752839165 for:0.013017733047635736 .:0.012093916821869225 at:0.01176495320504816 as:0.010919175793491026 with:0.01088331877257284 In:0.010584418907098127 :0.46750878093063103 +and:0.15666592086322884 that:0.05899477731062779 but:0.03742872404767239 time:0.03560523599676499 it:0.014720487835915608 day:0.013160045919474768 or:0.012076880768675068 was:0.011870324119224968 which:0.011644620766230556 as:0.010933906467942307 them:0.010279085318944092 which,:0.010243663227619193 do:0.009862213411900685 ago,:0.009681487944274264 But:0.00944983753762117 of:0.00882547842148727 him:0.008184253852463878 days:0.006330154527995118 morning:0.006286189347357072 :0.5567567123145799 +is:0.19086286386500098 was:0.1181767385350153 be:0.117557760057353 are:0.08381909244561575 been:0.05854971528796965 and:0.0361355443330077 dollars:0.03507067243047379 were:0.031952840378696216 not:0.031080511810107177 well:0.030376466900257793 Is:0.022192333171306974 now:0.016553465996798168 being:0.015008402661671466 as:0.01171032434476857 it:0.007380303810073399 made:0.007289686044733504 much:0.0068052945072208364 so:0.006716495474271479 bo:0.006081153979468243 :0.16568033396619 +will:0.1974237009683096 to:0.17503592538558155 may:0.12105584777807539 would:0.07339199752974496 should:0.06594437943233598 can:0.0592755956279739 shall:0.055366150306130256 must:0.04616025137942097 not:0.03835773346269695 could:0.03432569348622365 might:0.01981217351918227 cannot:0.014739608129271378 it:0.008968559479467737 and:0.006617200888159884 that:0.004192963251120973 never:0.0038080568791385794 which:0.003528900229489675 only:0.0034427031729530005 also:0.003232199717454897 :0.0643203593772684 +of:0.35664722388906317 to:0.09550680936944195 and:0.06614210863911946 that:0.06124159487388181 in:0.051155610428687256 by:0.031893374795511534 on:0.029025055852106123 from:0.028918060146364385 with:0.028069603305075002 for:0.02702494958638573 as:0.025624717788415952 which:0.01720797298670461 all:0.014826425157574201 when:0.013805900535128458 over:0.012694055550702766 at:0.01122642778796886 In:0.01044568586109144 into:0.009753842817773108 but:0.008712220707552416 :0.09907835992145174 +there:0.15282240558043036 It:0.1250877021251384 it:0.1172130349964821 he:0.08447653464159645 There:0.07990106646359449 He:0.053545487723974064 and:0.03475602177722308 I:0.033514699763994925 which:0.028339689006514263 that:0.02258044118480592 she:0.020389246311069347 This:0.018864857928065765 who:0.017143411225723663 She:0.014044583378045664 this:0.01264429778309141 lie:0.005676248946248602 ho:0.005008892472785812 as:0.004728079857187771 one:0.00469102709236943 :0.16357227174165848 +that:0.1574215159586064 and:0.09397018660301096 when:0.0654374835286228 but:0.04889022907740693 as:0.04158003707633958 which:0.03420508527982257 if:0.027103823983256572 until:0.02168896454011524 When:0.02104755341566531 time:0.019138025878878882 where:0.016092507298780364 :0.015417074666674808 But:0.013953564269364718 while:0.0138192965287086 If:0.01341652460434655 what:0.012122577570804951 thought:0.011198583387812077 because:0.010526750990031999 before:0.009637997911740514 :0.35233221743001014 +and:0.20517685125369556 the:0.15368301224259398 any:0.10552723144649506 or:0.09141200483682692 of:0.058500745521287555 all:0.05417056642673625 no:0.040157936598832725 some:0.03638613783639421 in:0.03303836217615063 many:0.022126075746087593 to:0.02121359644216558 with:0.01799430657824639 each:0.01683745222858976 In:0.01634198592954959 The:0.015677891803255278 for:0.014974751053252001 an-:0.014285711921872756 by:0.013279853287190368 from:0.009660303405942677 :0.0585552232648351 +the:0.39760815310808156 of:0.1503464819238928 in:0.09584921337246673 and:0.062003724487167955 The:0.056388902675245364 to:0.04300254124356687 for:0.030743816240379657 with:0.022183749087686954 by:0.020785873971447478 In:0.020783773445014867 tho:0.014635495886347697 from:0.009274770124812653 their:0.008676063909316216 all:0.008666480257467434 our:0.007134792320208641 that:0.005647638524417643 which:0.005636828610003535 at:0.005187939117243865 these:0.0051592907802104635 :0.029284470915021683 +of:0.12093938082722827 is:0.11693703610286134 be:0.0804243782088959 and:0.06898999956934142 the:0.06306599314813817 was:0.05364663645784372 he:0.05088692778970071 are:0.03901912125420085 by:0.030488831278683456 been:0.03044717755089955 to:0.029426815670980898 He:0.02675987944255762 for:0.02251418325778536 Is:0.020154359673405505 that:0.016542522020937624 were:0.0156236852918437 in:0.015422524388171337 which:0.013549003352173631 I:0.01303932175310825 :0.1711222229612427 +and:0.07187795804026641 N.:0.04070012528884562 of:0.03240046645774865 .:0.029735566563920676 to:0.025174949124719157 S.:0.01822456938226941 the:0.01362057724331396 said:0.012977577192164913 D.:0.011391321321781379 No.:0.01123183130938358 ;:0.010552793387316675 by:0.01027641253436002 Mrs.:0.008669467550570435 M.:0.006787240378370434 :0.006717688821816783 First:0.006558971082720425 from:0.006394210921092156 W.:0.006197738734901591 lot:0.006033154322405135 :0.6634773803420326 +to:0.6478610529677497 and:0.0691404896322776 will:0.05231643100566816 not:0.02905845389064902 would:0.02579477516164462 I:0.015006422370368857 Trains:0.012043222736520738 we:0.010252194693332736 must:0.009996233914051798 shall:0.00995786087344091 could:0.009510756576129369 they:0.00928218075374946 or:0.00834961747145703 should:0.007868108513120116 may:0.007568551209253503 can:0.006861445525370088 you:0.006502469093187755 cannot:0.005411416320079207 beg:0.005052921208589553 :0.05116539608335984 +the:0.2392757156829666 and:0.1440997031105478 of:0.06571810655048411 their:0.06323778247536238 his:0.048519532734059685 to:0.0454669534475853 great:0.03177823870660888 or:0.028701310559984934 The:0.026634248538172305 her:0.024885178994375225 a:0.02344969614977377 our:0.01899460803815266 no:0.01635701922590904 any:0.014059980171142565 other:0.013432182877498844 tho:0.011593682955826731 for:0.00987343737269386 with:0.009277551165852509 its:0.009123587681881342 :0.15452148356112147 +the:0.3443977752471567 thence:0.16458850719581303 and:0.03747514503174269 bears:0.03198163150541304 tho:0.024687108091700563 The:0.02222208079563517 of:0.02211445758537026 street:0.0185474774407463 running:0.014434964705501105 a:0.010489434205901982 thenco:0.008652834832512522 tbe:0.007945646572064754 street,:0.007821925745014717 line:0.0075701008797069745 road:0.007360289823491302 or:0.006821986795113152 :0.006389645682621263 on:0.006082289935371159 miles:0.005935475813481899 :0.24348122211564144 +told:0.30691390924715545 to:0.1246821446570151 with:0.058784461293283345 tell:0.04528732839455121 for:0.037142766186314284 informed:0.03596208458758191 of:0.03265998962092846 tells:0.027993157492195563 by:0.024322525274838525 upon:0.021073625288842976 telling:0.018320414056834024 asked:0.016196197873245194 on:0.01417865673393623 given:0.01305477266426555 give:0.012596666847562653 gave:0.01244770574731033 informing:0.012240473689203089 assured:0.011602596055797365 remind:0.010852175170361985 :0.16268834911877678 +on:0.21441023752187868 last:0.20550729695597228 On:0.12565365562739944 next:0.05514689109720294 the:0.051227926372201915 day:0.030543294777393766 in:0.02605841086584332 o'clock:0.023795695862886174 of:0.021675275775656824 until:0.020139239789274493 at:0.014326549811141962 and:0.01144828925348234 from:0.01144327415162754 one:0.009909941330856289 an:0.00975691644592523 after:0.00961155910067352 during:0.00938161768823764 early:0.00914163703837675 In:0.008774255984795245 :0.13104803454917366 +and:0.10038275173527456 Beginning:0.08454506876778513 was:0.04270128988250076 Commencing:0.0405695833232284 is:0.027566222665360032 that:0.019405408689992725 look:0.019015184862769922 it:0.01872728329699828 him:0.018662942658140315 be:0.01834873858796612 are:0.016965247200661948 but:0.016697303740895116 up:0.01624550082114781 them:0.015047790297139343 held:0.014226250042085734 beginning:0.013901322846056665 commencing:0.013833032028030028 out:0.013753735524837454 sold:0.013174941032054379 :0.4752304019970753 +the:0.42817282808270596 a:0.21952833358051516 at:0.06293245171495566 his:0.04264830977456566 The:0.026684426823439123 of:0.022946532134267665 tho:0.020702903515367948 their:0.017835485210629297 her:0.015837040290710674 and:0.015101394375377497 our:0.014424957419214733 in:0.013971578162618344 my:0.01106907577228933 or:0.009372721601908099 tbe:0.00892079473240556 old:0.008778759987668375 to:0.008522310838904205 your:0.007756825320005476 high:0.007685128522620111 :0.03610814213983108 +the:0.11919516938815296 of:0.07230453158552728 and:0.05781056740443249 a:0.043018564803886335 to:0.031305092790907506 in:0.020848713353460488 at:0.014270110001066288 .:0.012526810245749479 :0.012413283442322082 for:0.011719122709941797 by:0.010808400946589808 or:0.010404172990115616 The:0.01003576004804544 with:0.009811868184449042 tho:0.009295902015355835 was:0.008924239095331684 that:0.008672304223433876 is:0.0085591147338948 be:0.008335143826716943 :0.5187411282106204 +the:0.14033381604513753 a:0.10552101258428406 of:0.08496767554278879 and:0.07321564561781209 to:0.053166731886285325 in:0.034004235996801004 at:0.026047705740658934 Mr.:0.023216131299906687 .:0.0175873853904561 on:0.014156001578433794 his:0.013699791503573602 that:0.013452781893164708 an:0.013329588858848166 for:0.012323558290767506 The:0.011707719762366346 :0.01147817459847942 by:0.010931221166174532 with:0.010811929445422874 from:0.009832370820151724 :0.3192165219784868 +;:0.01458927046758731 it,:0.007973265891266864 him:0.007834970369143835 one:0.007240974664279108 in:0.006989508095588829 and:0.006417396987522371 ,:0.006059091806132192 it:0.006014614548599763 up:0.005812344146302806 out:0.005395853159197619 them,:0.005290532062834904 him,:0.004938420268273817 city:0.004793760033506698 :0.004646491011450349 man:0.004641061555670736 country:0.0046164671969483135 feet:0.0044416267197611185 time,:0.004376787347733258 time:0.004358244018157902 :0.8825693196500423 +as:0.06931392982974462 according:0.052071562389565784 up:0.0511867300210483 and:0.040371568633051955 went:0.03351644485287816 back:0.032358406609281 regard:0.03073407747799069 feet:0.02852138506231652 down:0.026379903432040268 owing:0.02466642634685871 due:0.023695193974505355 go:0.022910973192184297 reference:0.020802802907016128 came:0.019883741951819873 sent:0.019874244915639484 attention:0.019565955494145405 come:0.01885185084678811 given:0.018792390567602263 it:0.017366961307524745 :0.4281354501879983 +sum:0.03352282876311118 number:0.028116684882597106 line:0.019995206059833036 city:0.01946514558931857 out:0.019275318828420953 day:0.01666865340772654 county:0.014872697538657208 amount:0.013254184849875051 Board:0.01252325449624941 town:0.012449555905674143 side:0.011663975251122375 part:0.011517157473718155 County:0.011460540331966697 state:0.011087331502382173 City:0.010878919191854432 purpose:0.01081028255427907 and:0.010297866493795984 way:0.009848747943663767 name:0.009522170936943183 :0.711769477998811 +the:0.25106446003045996 and:0.0941953733229124 of:0.06669956376247665 a:0.05381843721371883 be:0.034960907993766326 to:0.033181016188838515 in:0.031520922862623355 an:0.022870026970202295 The:0.02219583770157077 most:0.021791590548713043 I:0.021203669448326808 was:0.01896342368542999 tho:0.017152519753952714 his:0.01638557832507662 is:0.01468336178841842 he:0.013954427125619949 with:0.013451587103769026 are:0.013444629412763365 their:0.011793521209301158 :0.2256691455520598 +he:0.14281462281487028 and:0.1296892458424863 be:0.09452396624458288 they:0.0800102600663913 have:0.05658665288251887 I:0.050077753375947956 who:0.049278724735137294 we:0.04166410778946129 was:0.033835012621264475 had:0.03307834311565355 it:0.026111768228847296 has:0.024133057595730607 been:0.02386668700104213 she:0.021915760333688066 is:0.017896899339653147 He:0.01692991975544505 you:0.014332599775650929 which:0.014236335574021569 were:0.012653107597823674 :0.11536517530978332 +:0.10132530864253071 .:0.01586153736849991 it.:0.012994963694550781 them.:0.009972326155771085 day.:0.006466314186158732 him.:0.005963072708890589 time.:0.005952754819220498 of:0.005834450921883061 country.:0.005314225508045209 year.:0.0049247550547799 city.:0.004072303040063511 years.:0.003997040955926161 work.:0.003880377182773483 people.:0.0033836246305601453 States.:0.0031455025043576447 place.:0.0030640999552846737 men.:0.0029656503323313246 way.:0.002952433427976742 out.:0.002933009065662241 :0.7939962498447336 +would:0.292530573666838 not:0.09513186678612269 is:0.05099919985427913 was:0.048081056024427665 and:0.0456471677294907 will:0.03163150829468995 are:0.030191026439540077 I:0.028071244787838106 something:0.02348721679731251 you:0.022449368526002315 anything:0.021951831346887413 be:0.020685433899650066 should:0.02058114561181917 don't:0.017704101991917152 so:0.014790722816946527 to:0.014428402725455576 do:0.013607854339673986 looked:0.013488966462838535 much:0.012877877781790129 :0.18066343411648034 +the:0.11919516938815296 of:0.07230453158552728 and:0.05781056740443249 a:0.043018564803886335 to:0.031305092790907506 in:0.020848713353460488 at:0.014270110001066288 .:0.012526810245749479 :0.012413283442322082 for:0.011719122709941797 by:0.010808400946589808 or:0.010404172990115616 The:0.01003576004804544 with:0.009811868184449042 tho:0.009295902015355835 was:0.008924239095331684 that:0.008672304223433876 is:0.0085591147338948 be:0.008335143826716943 :0.5187411282106204 +and:0.13494966609550382 of:0.07316641737364253 to:0.07075541455588646 the:0.058493680665523205 in:0.04957317167084668 or:0.034218196852765226 that:0.032957151083144585 for:0.023740081132267728 on:0.02372525113826427 in-:0.022059642840300344 which:0.021050432068915235 :0.019992650391152826 by:0.017069113882183004 In:0.0167310746783188 with:0.014170506894792975 from:0.013586836184279336 at:0.01266636453547691 In-:0.009826052731618101 as:0.009471218486562726 :0.3407970767385552 +the:0.21153736047466043 of:0.17241986676123475 and:0.07942290522658994 to:0.04986594637347507 in:0.03160543971888956 on:0.018572395108714303 from:0.01759755283407107 The:0.01756572470771458 or:0.016145894266864243 by:0.014429822879224608 with:0.013734139324219153 tho:0.012499318268477997 a:0.012427556603942694 at:0.010842577830875907 :0.010317453767125352 for:0.009877732532859807 that:0.009394592901503582 all:0.00731494086002318 these:0.007257043874681983 :0.27617173568485176 +the:0.11919516938815296 of:0.07230453158552728 and:0.05781056740443249 a:0.043018564803886335 to:0.031305092790907506 in:0.020848713353460488 at:0.014270110001066288 .:0.012526810245749479 :0.012413283442322082 for:0.011719122709941797 by:0.010808400946589808 or:0.010404172990115616 The:0.01003576004804544 with:0.009811868184449042 tho:0.009295902015355835 was:0.008924239095331684 that:0.008672304223433876 is:0.0085591147338948 be:0.008335143826716943 :0.5187411282106204 +the:0.11919516938815296 of:0.07230453158552728 and:0.05781056740443249 a:0.043018564803886335 to:0.031305092790907506 in:0.020848713353460488 at:0.014270110001066288 .:0.012526810245749479 :0.012413283442322082 for:0.011719122709941797 by:0.010808400946589808 or:0.010404172990115616 The:0.01003576004804544 with:0.009811868184449042 tho:0.009295902015355835 was:0.008924239095331684 that:0.008672304223433876 is:0.0085591147338948 be:0.008335143826716943 :0.5187411282106204 +him,:0.03727453387362959 him:0.023249798076418204 it,:0.01957361604451949 ;:0.019118660374378656 them,:0.011808014629291659 up:0.009759205739433622 her,:0.009596186208486459 time,:0.008091139913740981 in:0.00794039309774032 here:0.007817501074283287 man,:0.007162896367968276 time:0.006657847968603445 up,:0.006653232982178176 them:0.006178165655713515 and:0.0058287969239484184 years,:0.005824609718691634 me,:0.005812820856924415 out,:0.005578602497747828 years:0.005524549450674982 :0.789549428545627 +I:0.11821699148376562 it:0.09889289265323699 we:0.09536620972475324 he:0.05802796011415088 and:0.05623443220467779 they:0.05230579292653627 who:0.050661433643296415 It:0.05048673462766277 which:0.0338393053722845 We:0.032898956934109734 act:0.015259069423870735 you:0.015143862448953573 He:0.014746855771708575 that:0.013684519620982235 They:0.011219844068670253 1:0.010802371650510185 she:0.010794022107125436 court:0.00999618698599228 same:0.00991053931409239 :0.24051201892362012 +:0.17734697311269074 .:0.030166650044768414 it.:0.014579536564497925 OF:0.013994929945920165 in:0.011762044074467466 purchaser.:0.010404975778302579 of:0.008326554250832473 them.:0.008272635841328263 year.:0.007534663489616719 city.:0.007471081742325325 standard:0.007311560716196577 day.:0.006766490433768762 time.:0.006393530540940687 him.:0.0059568916131696684 the:0.005492743037354868 water.:0.005383286464288153 ::0.005309293800413443 2.:0.005153949885031439 —:0.005139139404650167 :0.6562330692594361 +his:0.3668057856782506 my:0.10716625279414209 and:0.06463718885444067 the:0.06437329714777713 His:0.057278466104519775 a:0.045506112240170773 My:0.039308056878836276 her:0.02908898455314527 The:0.027697407218952683 bis:0.020188761816081792 their:0.014407667812306022 that:0.0138749105669632 your:0.013667397969172953 of:0.011367335111244988 our:0.008221429269553939 which:0.007379814219339569 whose:0.0071351765679040615 its:0.005490911286449024 first:0.005117035704642809 :0.09028800820610636 +and:0.14212274645892597 as:0.11093174088228454 so:0.0833189065547599 in:0.08304225802696437 of:0.045450171124176535 the:0.04285572062809076 that:0.04116405181662131 for:0.04080396356561084 In:0.033574404431721445 how:0.03327058091371714 are:0.03242774850178854 by:0.02923294756630944 with:0.02816122369706445 great:0.027606102492319554 too:0.023668093661695234 but:0.016558215624937804 good:0.016241342192208876 How:0.014923670769047803 than:0.01451801352050842 :0.13912809757124706 +the:0.7260689432173191 a:0.07365768843013473 The:0.0675776562105085 tho:0.04047804785891643 his:0.017655420698809595 tbe:0.013264882168859325 their:0.007256760048177813 our:0.006885563751292031 its:0.005229443442982042 my:0.004715904834255688 of:0.004375476211818802 this:0.004308462518126484 your:0.003682757065890935 A:0.0031567353030967187 Tho:0.0028158421807241048 in:0.0027619008423658315 no:0.002459281763484325 for:0.002184515152447003 and:0.002136935084367554 :0.008327783216423064 +and:0.06775867581394844 made:0.056680403495043205 or:0.025111126335228114 them:0.02436046011950043 paid:0.02188214480141234 done:0.02175055151452122 ed:0.019557619814723863 given:0.01901729528227681 accompanied:0.01802661309185908 caused:0.017727775296919598 him:0.017580726831012142 out:0.01739207629155455 taken:0.017244534094393933 shown:0.017129300001489725 followed:0.014585900820990571 that:0.01432008304209683 it:0.014237324817765688 up:0.014007598967327348 held:0.01242728518177852 :0.5682025043861576 +the:0.1489582701278335 an:0.1410284108259951 of:0.05095373526247999 and:0.04938864912259804 as:0.03700027210517948 was:0.03634448099329267 very:0.036117168158825735 her:0.026863042699382816 is:0.026261540020022053 so:0.02514015471774137 in:0.025014777848960393 be:0.02435634463410554 to:0.02382211325355241 his:0.022561144892641712 are:0.01904001380724036 for:0.019019471399176847 with:0.01813887733566872 were:0.016510476152990023 not:0.014582518210693516 :0.23789853843161973 +and:0.11958536754157074 fact:0.0738760970146536 said:0.05292429274118783 know:0.04424221141323232 say:0.04391701852852371 so:0.031359577023766634 is:0.030018667977326715 believe:0.026483048554913142 stated:0.022711093857713357 says:0.02158540440435955 thought:0.01759481890036582 think:0.016930985958877313 found:0.01685119645252505 knew:0.015627941859033087 saying:0.015318968449423067 him:0.015148063005297318 me:0.015002473606157736 but:0.014803358041438333 told:0.01452834020416077 :0.3904910744654739 +:0.04886162056411152 and:0.040019830359908116 made:0.019534249586484108 was:0.01884742032062261 recorded:0.0156557013153549 that:0.014962923641391521 be:0.013346741481126276 is:0.012414190474703378 o'clock:0.011973468167413116 placed:0.011531292464673245 out:0.010920644875481857 found:0.010814196298763954 place:0.010167028437165111 situated:0.009811016372775217 up:0.009511290277384947 them:0.00920663098385622 been:0.009160737073209432 him:0.00901249715764949 are:0.008449437635810648 :0.7047990825121143 +feet:0.0719208472326295 poles:0.05759396229176634 up:0.04010587224329879 chains:0.0385088170079141 entitled:0.029123404981740347 went:0.027388526271997813 came:0.025857650765910022 down:0.025633262313841977 him:0.025574415868859987 as:0.024916209858287616 and:0.023917753661251574 subject:0.02185045005331621 brought:0.02171367122116056 them:0.021644069985480026 it:0.02099405133651225 rods:0.019030517253069822 back:0.018922583019034468 go:0.01891708435510451 sent:0.018892511875840953 :0.44649433840298314 +of:0.26142799628964825 in:0.1037814652713821 to:0.08749582106438256 on:0.06614772383660718 and:0.05561221629217046 that:0.05412403921901688 at:0.04528427460887665 by:0.03831902259497942 from:0.036514868824038975 In:0.029091704431061835 for:0.02624317940011042 with:0.02527398566575518 upon:0.023207425651983707 as:0.013109783349965935 is:0.012358079068881008 all:0.010813763449753475 was:0.010123240789069775 which:0.009753832534563432 At:0.00969377583724117 :0.08062380182051158 +the:0.18682009267383368 of:0.13089901446850688 for:0.06303096903948546 and:0.05811723233599759 in:0.043262144226151204 whose:0.042870138318220924 his:0.03588469145755717 to:0.034378369907525824 The:0.030674022568616004 their:0.025985674103510454 :0.024577292644081372 In:0.02233669727963605 a:0.020332538449244746 that:0.020066907053830824 our:0.01929134776670333 public:0.019154109117656203 next:0.018699278634224856 per:0.018661075008359316 in-:0.016909838087092195 :0.16704856685976596 +part:0.03259739424123909 out:0.027607477590520388 name:0.021169399677704235 one:0.020959210183013673 city:0.018947301868056265 side:0.01879978166576921 favor:0.017273697792016072 portion:0.016942150718211816 son:0.016305609861291516 people:0.016178272994859903 and:0.015480525255790786 line:0.014595129191914202 that:0.014336064771052278 tion:0.013644100121234994 case:0.013519542007149016 daughter:0.013494623124139068 charge:0.01290228301215057 sum:0.012224047041107172 all:0.011282916897524246 :0.6707404719852555 +per:0.9442086616481288 and:0.0044041440845793865 por:0.0025282855959780277 thence:0.0020318775447013605 the:0.0013151643346792044 to:0.0008214342810674721 of:0.0006553781317233979 one:0.0005987647985695584 :0.00046100661410932613 was:0.00042322787439310385 be:0.00033030216954435835 St.:0.0003288064812419593 for:0.0003269628137082385 re-:0.0003165217554244994 .:0.0002552416010325587 or:0.0002421446680323875 a:0.00020455774902831972 first:0.00020435438013704667 :0.00019401246215986623 :0.03914915101176116 +of:0.10737523265524133 for:0.09364845799153684 is:0.07239882249114508 was:0.06570663084522475 with:0.06540544758629946 in:0.055990443879292404 and:0.04622945267039401 have:0.04597792990379574 to:0.04524145647548171 had:0.03821298245727303 by:0.03403827711228097 as:0.03218146179801041 be:0.02835222443202661 after:0.0199613034952287 not:0.01970873799830482 has:0.019517689906032365 that:0.017631932377247136 make:0.015637137680526502 In:0.014814464904915588 :0.16096991333974253 +and:0.05917734571267282 closing:0.04405297983259551 was:0.026323119710997635 valued:0.021005792503071843 held:0.01922887441606307 sold:0.018225285914023 2:0.017782437938973866 is:0.017552850459549643 arrived:0.01662711812741857 be:0.01645048243064216 are:0.016339673120917095 White:0.01533836240735085 not:0.015154252504664439 as:0.012706467917481812 that:0.012063629264509927 estimated:0.011864260728812118 Dated:0.0116063700277585 or:0.011444173640079769 made:0.010438189210536826 :0.6256183341318805 +the:0.1686254608388007 of:0.08510631124515454 Mr.:0.053063968456177904 The:0.05290176461656073 and:0.04281351925879434 that:0.03659363717531167 a:0.027376597759942865 this:0.016009104250207996 in:0.014329796242200724 :0.013577096541793277 .:0.012332809689052695 Mrs.:0.011483371514010961 tho:0.011366564416127033 to:0.010938551223696477 for:0.010273564804762044 which:0.009103350770352783 as:0.009022855831525262 his:0.008831867202298479 or:0.008219518012985871 :0.39703029015024366 +of:0.1604942671586838 that:0.11060480896437576 by:0.09019986436152799 and:0.07550885040316123 to:0.05506358182528098 which:0.03682644944370351 :0.024055297065016308 as:0.021094262443304795 with:0.01957795769317733 for:0.016040161271139646 from:0.01430878380678881 if:0.011498238706289375 in:0.011244038592553398 when:0.010863782657728804 Rev.:0.010813603541460463 but:0.010669656657824489 said:0.010533699639299395 before:0.010493140954783002 If:0.009839968374848632 :0.28926958643905226 +the:0.1454500361787387 of:0.1080247151493501 to:0.04516715868785427 boy.:0.036249098323069925 and:0.03403580073245388 girl.:0.032660326140049385 a:0.03171979252021135 in:0.02714044436566853 for:0.02365213940166824 be:0.021942286684630472 their:0.021087116084698817 his:0.019774122064073623 was:0.014637031197642503 with:0.014008395154201525 are:0.012730720509515858 is:0.011363112041341867 as:0.011357870543086747 from:0.01063391638067422 were:0.010589399829418696 :0.3667765180116513 +is:0.18585351957829188 was:0.09896198110900599 have:0.07437932570905284 and:0.07291787041477238 had:0.07222973712287674 with:0.03874195970568492 Is:0.03737070813936569 do:0.036584279103196504 that:0.03644336797635142 has:0.032946039879914665 be:0.025217987321658475 are:0.022553749652118593 for:0.021611042017675365 say:0.021130434424328742 but:0.020830591751462357 as:0.020825249058145718 it:0.01718268171007146 know:0.017014158198417076 knew:0.016429870112826414 :0.12977544701478277 +foreclosed:0.0826326115191591 accompanied:0.05930666942049243 made:0.05336585618201428 and:0.05113808815574321 followed:0.0477509052190524 surrounded:0.027001067213274173 up:0.0223956915218854 caused:0.01986528146981332 secured:0.01963201700061169 was:0.019527138795776604 ed:0.0163892391762384 it:0.014428341647705614 occupied:0.014047766264405974 him:0.014002524716027894 surmounted:0.013411064770142235 given:0.012603829803430331 done:0.01236267211154264 covered:0.012285928470556887 that:0.012257320636555267 :0.47459598590557217 +the:0.14733512101647409 to:0.0926372631725565 and:0.05686402954183104 his:0.048259890493806114 of:0.04812656428387755 their:0.041462764441853914 in:0.03590681482899194 one:0.027337927373839943 all:0.020660388672992754 good:0.020299586712974237 her:0.020001973914239045 its:0.017659586750017282 a:0.015975757094430717 my:0.015861277137940718 such:0.015088653756441223 for:0.015055352715384135 by:0.014469236957679366 both:0.014269912355975169 our:0.01414563387326837 :0.3175822649054259 +;:0.01458927046758731 it,:0.007973265891266864 him:0.007834970369143835 one:0.007240974664279108 in:0.006989508095588829 and:0.006417396987522371 ,:0.006059091806132192 it:0.006014614548599763 up:0.005812344146302806 out:0.005395853159197619 them,:0.005290532062834904 him,:0.004938420268273817 city:0.004793760033506698 :0.004646491011450349 man:0.004641061555670736 country:0.0046164671969483135 feet:0.0044416267197611185 time,:0.004376787347733258 time:0.004358244018157902 :0.8825693196500423 +the:0.6572269186610676 a:0.04492802104016091 his:0.04042394118844535 The:0.032629661604939415 tho:0.03175995152702834 and:0.015939140010032448 tbe:0.015017755916093797 my:0.011845505291351501 her:0.011225472303792889 their:0.0057300462930692025 of:0.005521665308833612 first:0.004574047789633155 its:0.0037844694942364573 our:0.0037043585603329047 A:0.0036151946310542422 that:0.0033576796376024506 good:0.002611482015762386 in:0.002489660646307182 or:0.0023985865731778852 :0.10021644150707822 +one:0.1028303141280697 part:0.05963429477052991 out:0.04766456937681193 some:0.031418679026461914 members:0.030764490253327767 side:0.029940657362655835 portion:0.022063658796890564 office:0.020457735219956013 member:0.019726706386316174 end:0.019666887540649894 tion:0.018667441728710307 parts:0.016814747270460957 people:0.014112771422418794 all:0.014072739582212475 any:0.013183573287639892 One:0.013083578354183906 that:0.013024335602903442 account:0.012482348155001894 many:0.012077825070275192 :0.48731264666452345 +the:0.5255737101246198 a:0.10596621888752722 The:0.040949718988921746 and:0.031181202290021175 tho:0.02678224914039983 this:0.02039552209945897 other:0.019739774214134653 large:0.01579688286840545 first:0.013301338689123345 any:0.01234515748574045 every:0.012074339920908856 of:0.010515107819493387 tbe:0.009602984211709109 or:0.009332088662614856 in:0.008889261701425422 all:0.00885084356237074 an:0.008707775460752007 whole:0.007393636655904009 certain:0.007372822585943803 :0.10422936463052514 +the:0.12165436932489672 of:0.11812788081875042 to:0.08943229072220153 and:0.0863168590358385 be:0.03476966099811824 a:0.0343064369503574 in:0.03035988840460923 was:0.02580231761246292 is:0.024237502087367285 or:0.02235009392649001 for:0.019233586327398338 not:0.01916132122859584 are:0.017677175671487418 been:0.016850080623092067 Mr.:0.013319692212907568 their:0.013236911800721883 by:0.012602848022062482 were:0.012550505203338122 with:0.012531525744913036 :0.274479053284391 +one:0.015552536992080472 more:0.014252271697624306 on:0.010631301787611593 day:0.010222750824534239 two:0.010216157614982159 person:0.007504694644314241 in:0.007364820929323563 man:0.007179188731169107 law:0.006205362369136604 action:0.006166303509128973 and:0.005659786788634644 city:0.005177234665142273 three:0.005130416479837977 State:0.0047265097104810415 to:0.004696031397422901 ten:0.004594585978494318 of:0.004463781172886088 town:0.004231879326219736 year:0.0040256313925199315 :0.8609987539884558 +the:0.17375060105156717 of:0.10818380035962537 and:0.06868373099621064 or:0.041151014099567236 in:0.038114912865292415 a:0.03095341384262132 that:0.0276821034984579 to:0.022569065255337986 The:0.01686502155443711 any:0.015496173251460072 for:0.015395000591593265 their:0.014080204110017999 such:0.014030557520896178 by:0.013547755423211068 other:0.013067452569054415 as:0.013054187644690508 his:0.013004669804477727 no:0.012888634219081848 tho:0.012011161176439045 :0.33447054016596073 +:0.04464794349237404 and:0.0441045999813152 was:0.03132582825606273 is:0.017265548275416282 were:0.014212685581811187 be:0.013546841576380862 are:0.012860974754755393 recorded:0.011834533317627325 situated:0.010823728970060313 been:0.0093071756455088 not:0.009215688961087 that:0.00833101160228707 held:0.008309250501739874 made:0.008294045582321594 published:0.007525763380925514 .:0.007110989953798891 Is:0.0068787731981312964 or:0.006816043968679172 day:0.006262113356209103 :0.7203264596435084 +the:0.06647623600238486 of:0.06400552517032125 and:0.062281308223140285 be:0.05990300454652408 to:0.04886480238196076 was:0.046359477162698864 is:0.033642421755709494 or:0.024224754484440145 are:0.023949812295997554 been:0.021419866649644067 were:0.01944175848099471 for:0.018415802147964767 as:0.01668021786349543 in:0.015768024701088016 a:0.014332062457127072 on:0.013218118866175774 :0.011989868035949203 being:0.010901119313506834 by:0.010399318984640265 :0.4167265004762365 +that:0.2979828498745313 which:0.10368699799112614 and:0.07026791244455519 as:0.05216623376645152 where:0.04083166982462218 if:0.03990843334666882 but:0.03530143924720131 when:0.03092732451151384 what:0.0263590482551419 because:0.021249339866295285 said:0.018810510083520596 whom:0.018628986387871773 If:0.01826210210892352 says:0.012894899125496014 though:0.009966332248386077 until:0.009688111655643374 time:0.009562679977160609 while:0.008550908058223304 years:0.007894979987761647 :0.16605924123890559 +the:0.014211569285598368 and:0.013337915491940812 in:0.011269192558610771 a:0.009069479069045863 it:0.007749665182747852 of:0.007700580523480939 :0.007378618054380151 he:0.006803228308520236 made:0.006654669022083952 that:0.006428145037438013 up:0.0062511189573360715 man:0.00586599143534557 who:0.005649238823115028 .:0.005356412195198746 :0.005300871346908709 I:0.005001959426143607 out:0.004837392178858192 them:0.004666366351874496 men:0.00435345532044192 :0.8611141314309307 +of:0.3468331907516126 in:0.13340121984794379 to:0.10216792101645092 by:0.06779572163918879 that:0.042913505126549206 and:0.03494884986130601 with:0.030388383515374817 on:0.02849597470635316 from:0.02815535175824429 In:0.027220741222274344 for:0.01790511004174031 at:0.01209596692141962 as:0.010616472692072635 under:0.010251201266387072 upon:0.010138297213419975 all:0.009985987048598157 into:0.009927810581202113 which:0.006613803369057845 through:0.0063645115423004595 :0.0627799798785039 +of:0.15403399661408193 and:0.12221914467745819 in:0.10095268831661385 to:0.07849854738375123 by:0.04845369561667698 on:0.045542294703240366 as:0.04232166036714118 from:0.039073287214024574 for:0.03554175270903816 with:0.03524940317266839 In:0.02676009407790632 at:0.02276369758624328 that:0.021133213632085673 is:0.017580809665517085 about:0.015777570135338564 than:0.014124462841615327 upon:0.01272122835184967 or:0.012193659605860182 was:0.010895512341279615 :0.14316328098760947 +hundred:0.04503126658228579 dollars:0.03383251802068254 time:0.025638877909357302 interest:0.018839963810378838 due:0.012275341284522621 up:0.012139776519075038 costs:0.011945578356621116 one:0.01189702852230023 out:0.010636535018604442 work:0.010352209801342856 made:0.010239675221066289 ;:0.010074859547574628 mortgage:0.008197109383212699 day:0.008047724509452138 labor:0.007573993847198508 law:0.007434954523130136 principal:0.007323963081568162 building:0.007278286880514036 :0.0072591330456961145 :0.7329812041354165 +and:0.14186288735856983 of:0.11286137087322588 in:0.06434803058432999 for:0.05811553458882973 to:0.05312382598389064 by:0.04261887847139536 was:0.02798703731726308 In:0.027895034772466736 or:0.027793948220791113 are:0.02713713909945728 that:0.02455531654093863 at:0.024367239731543484 is:0.022919655799795387 the:0.022626164200574613 have:0.018907008508235536 be:0.017374574007524107 not:0.014541503942735137 were:0.013324734609358693 been:0.013243031479802655 :0.24339708390927212 +of:0.1465854908606811 in:0.049953091842976007 and:0.04155452824136847 to:0.036629424260937606 that:0.03049772783050118 on:0.028289263239459288 with:0.02469253011447856 for:0.023638053105922457 from:0.022405673814758467 by:0.019016699269368175 upon:0.01750330638638927 at:0.01221192013375069 but:0.008712480774882875 In:0.008678807410062928 after:0.008293808765867878 through:0.006755656621390801 things:0.0062846123023580875 bill:0.0060141124729617915 work:0.0057772565631203235 :0.49550555598876406 +the:0.23367183236122196 gross:0.12721758761257468 of:0.07067287462664952 a:0.05227133364465924 net:0.04526255483772774 in:0.03769837346523161 his:0.03519596338242775 their:0.03185017952000237 and:0.02478595582262111 The:0.024291482559346805 no:0.018104353339498228 our:0.01669140118404619 such:0.015131750479613177 tho:0.01407925724706942 its:0.012939531569446916 for:0.012880512171405527 or:0.012621561345614239 other:0.01122694564807989 your:0.009121305907947335 :0.1932852432748163 +to:0.2634654953216828 the:0.19806091783780505 at:0.09596661136665223 of:0.04575679022804701 his:0.045755596405828484 their:0.04390335192808458 and:0.027726209459073087 will:0.023844871320212103 not:0.01632330394326368 this:0.015496773315279948 hard:0.01376632800953824 a:0.013070877210260609 its:0.012464215781680775 tho:0.012316535037551016 our:0.012268541533479435 all:0.010877231968545887 in:0.010829464426948482 would:0.010198004195229978 her:0.010037868522916068 :0.11687101218792056 +and:0.03868242960999506 as:0.031124813427855922 went:0.02352509775927722 him:0.02196555539050794 them:0.018760608639018784 up:0.017985449426794205 is:0.017894175620344187 go:0.017174904667157563 able:0.016756848979943888 going:0.014481672239490295 it:0.014128375989346808 was:0.013277058274565138 time:0.013249953793837373 not:0.012469887553778763 began:0.012465717758716884 way:0.012105610030480113 back:0.012090864562211581 right:0.011941707822828511 amounted:0.011564315359310868 :0.667354953094539 +and:0.09633482275021144 was:0.06797072408469729 is:0.065862492536603 be:0.04361565612294014 are:0.04235809460622038 that:0.033591071971449546 had:0.026936951201357192 or:0.026917445596008848 not:0.021075495693352347 has:0.019778420766230907 were:0.018802347107683217 it:0.017540424753189048 but:0.017117996024870154 have:0.016559782062031275 in:0.015759053470226707 as:0.015075274107200436 for:0.014489651575588507 of:0.012267799102643112 time:0.010854374913617825 :0.41609212155387865 +of:0.28619084826794355 to:0.09638021858904648 and:0.08054590427478912 in:0.068690218911171 that:0.061571379267416314 with:0.04026354831036241 all:0.036693036379618425 by:0.03187781355278518 for:0.02813944233737821 is:0.024424107581782227 as:0.022983923785573627 from:0.021972576537187063 on:0.018798626131094825 was:0.015439173733145782 when:0.014242436288916402 upon:0.013873927462616557 In:0.013757615861797063 into:0.013631223176933122 be:0.013208926695929706 :0.09631505285451292 +the:0.43996638697126905 a:0.24212053375539275 this:0.05500390148203108 no:0.045962727166474385 The:0.025334399970203016 tho:0.01989661093780261 his:0.017143841973924375 any:0.012571447034743657 of:0.008563928058062035 tbe:0.0073021756332629865 vegetable:0.006698124755155927 No:0.0056065756856979385 their:0.005471907334042503 every:0.005254062968015344 in:0.0047543994840671695 and:0.004735256388589908 her:0.004613495518087488 This:0.00429767555112175 its:0.004120776838432449 :0.07958177249362354 +and:0.014098838083762279 ;:0.010747814480391079 land:0.00797593921925951 hundred:0.007254062921007648 years,:0.006703356117034259 up:0.006673202091155921 ,:0.006533037635749111 time:0.005981634731313097 them,:0.005813630281103413 men:0.00566265212631335 gold:0.005582926492981341 now:0.005448446321525683 property:0.005258625358550976 quiet:0.005164759631312873 of:0.005105223325618227 it:0.0050048086208485205 out:0.00492882422572546 high:0.004723357097150091 :0.004588868475920032 :0.875749992763277 +and:0.08529990646477506 passed:0.07391398244130352 passing:0.05542736247893535 way:0.04295083303473848 went:0.032008847256932906 it:0.03150752388213557 go:0.03116060608487825 all:0.02958447872519049 pass:0.028669214712268003 out:0.023583590904430594 down:0.02180757905760855 up:0.021691451677190925 run:0.020056510074409596 running:0.018844210927994806 them:0.01859738012378954 shot:0.01682581032465277 passes:0.01666206419304904 going:0.016288357784768375 or:0.01600814422633801 :0.39811214562461017 +the:0.3902218625474489 The:0.17298095162182622 of:0.09425107415248314 no:0.03908727474503457 and:0.03257968351351212 a:0.02998280755221885 tho:0.022979388404955333 for:0.0203496283255906 that:0.020077831083847204 or:0.017200412769023923 this:0.015960492104733867 such:0.015218681530036028 any:0.01480249776480451 in:0.014634340951067425 as:0.01411929817223043 by:0.01402607248547968 his:0.013543472257526012 its:0.01158027791989064 all:0.010696851395627557 :0.034707100702662995 +:0.07039743157762435 and:0.042486232739400186 .:0.023912408926678147 the:0.022706080591664717 that:0.010985368648364864 them.:0.009951995497834406 do:0.008973216414106505 it.:0.008916948794333157 :0.007287940937700145 but:0.0053381662167252784 was:0.004823764998162859 of:0.004767878101510603 The:0.004522096386427436 day.:0.004521036164153058 time.:0.004458701405872471 work.:0.004238831258501262 as:0.004196527219080901 ?:0.0038132166568311757 him.:0.003781486082325256 :0.7489206713827032 +that:0.04457294586003215 and:0.0311799622222836 it.:0.025754984017804038 :0.019113632263374425 it:0.013524245860270536 but:0.013426326973815024 I:0.01092928251709232 him.:0.010057710471697895 them.:0.010056411885125445 as:0.008479709955357144 be:0.00844130769552944 It:0.007999664386024632 which:0.006176146499633456 .:0.006126008145556174 ?:0.005757877223539264 time.:0.005724216326892223 tion.:0.005345742378032075 us.:0.005242037065394384 to:0.004614774610057167 :0.7564770136424885 +of:0.18676426834901824 to:0.11088084554299338 and:0.0946569387298205 for:0.07631468876870448 that:0.04774612603848455 with:0.04265311235113605 at:0.03830114039071362 in:0.03373073832301418 by:0.032015537307873064 from:0.02451965512702252 is:0.023876663683175967 as:0.020635384661260324 but:0.017722625537825987 on:0.016301494000987026 was:0.012909043883988941 upon:0.012615545697469106 which:0.011792326105736222 are:0.01164343170164387 or:0.011502051394955519 :0.17241838240417645 +the:0.151564299052826 of:0.09038750472184202 a:0.07461608498201407 and:0.0466615732099648 or:0.03708629888768566 to:0.035569645185394266 in:0.030052392055566975 any:0.021357004017533987 be:0.017082462262097576 no:0.015583554621420614 for:0.01514666947239845 with:0.014723578456062631 by:0.012787654001396713 said:0.012726164481980391 such:0.011693957670550037 tho:0.01002305994460469 their:0.010002787499567302 at:0.00923663004776501 is:0.008936804169325014 :0.37376187526000376 +of:0.19751874193178792 in:0.17840108097552151 to:0.13953351571047728 and:0.048947536496221626 that:0.04274424739979119 for:0.0427042677004715 In:0.04068356643784496 with:0.03633823089606716 by:0.036114732960494576 from:0.027828002902519192 at:0.026408326242032428 on:0.024966286916584656 is:0.02291459075408659 was:0.013633560145655841 all:0.012548295146349416 under:0.011860101760401073 upon:0.01058259674973121 as:0.010389549477501751 be:0.008601358231675665 :0.06628141116478443 +of:0.22268267168714428 at:0.1595346631038745 to:0.1351743727337152 in:0.09431669676677121 on:0.06704043338838005 from:0.055565662193570814 for:0.04082873400428767 by:0.03355377984265319 with:0.029416265445962035 and:0.020205215467402133 In:0.019140676484676027 that:0.016777298443680137 upon:0.010457162259595334 into:0.00787602334323794 before:0.0059488197359089095 after:0.005732667342875281 under:0.005698302037545908 At:0.005611847154571532 all:0.005335548479926291 :0.05810316008422158 +this:0.5027781454140134 the:0.09489388958340854 that:0.05436815255540361 in:0.0319299751302046 to:0.030660229828397747 every:0.025351638884571488 of:0.024839466056922447 any:0.023779102722155825 without:0.021411487439521388 what:0.019822436683987237 This:0.018222300519372354 and:0.01501754941031276 by:0.014554813441545782 In:0.014234053341378032 other:0.012437987389282543 a:0.012295577238760532 no:0.010378881892577498 not:0.010041815100211744 his:0.009965518102406215 :0.05201697926556621 +as:0.10271796970960502 up:0.04216596630039034 came:0.035406070933531986 sent:0.030635660682005426 given:0.029938249214145413 went:0.028291343119836755 regard:0.026907007264646246 and:0.026285732572242308 brought:0.026216155375278917 back:0.02577943046772407 go:0.02569389273967357 it:0.024029226471640817 according:0.02297862522634649 returned:0.022961275719973036 come:0.02109637344276726 made:0.01817459416206699 feet:0.017826917474895926 taken:0.015384813515627687 As:0.014608474637033103 :0.44190222097056864 +and:0.21880673329190875 that:0.11891785466545658 or:0.041160108459270366 but:0.0351830985190908 it:0.019699510627729084 only:0.018694555281163296 made:0.013835251197469343 which:0.012612887409551377 time:0.012075713388482717 than:0.011844502130319736 him:0.010719231809873669 if:0.010631660907466981 day:0.00992637366462828 That:0.009600194017485372 as:0.00946751300896337 was:0.009271928123801008 is:0.00816290314985318 of:0.00738058448137713 done:0.007380281592163107 :0.41362911427394583 +of:0.2363460953012322 in:0.1312561309369335 and:0.071857577222654 to:0.06964041985601513 with:0.05634642791957651 for:0.052123862228656066 by:0.03709245470771219 all:0.036888120189764284 from:0.03368195824647899 on:0.0312942936394529 at:0.02772015612120838 In:0.018595624238642226 that:0.01661143134815104 upon:0.014529454946839522 as:0.010527822265558807 within:0.010065272762893757 through:0.007584197962800866 but:0.006891160458981784 after:0.006609930051429546 :0.12333760959501827 +of:0.28767355066866834 to:0.08775711267569858 in:0.08678131196995101 and:0.05160598694501188 on:0.04646139928102899 by:0.04519522654900943 for:0.044547789071328545 with:0.03396756772609607 that:0.033699232901107726 from:0.03075346596941143 at:0.027039283056790858 In:0.021061449543044047 as:0.017514234937992545 all:0.012543839382496166 upon:0.011844431150487573 is:0.00998972746569266 was:0.008814315973987914 into:0.008557199930727406 through:0.007781895704231326 :0.1254109790972375 +the:0.14048602411779254 of:0.10252225631561868 and:0.07633183975731359 to:0.03245895674061561 that:0.030733737144535016 The:0.02900268575179401 in:0.027931447478085947 which:0.018752304155935415 or:0.01571308762550976 :0.015055749982663399 Mr.:0.0149342694058751 their:0.010852954179470109 on:0.010754035534755927 as:0.01048165637565865 for:0.010288939626440372 said:0.01005519865138013 tho:0.009754500854680081 he:0.009279558727176576 a:0.008993895187521092 :0.41461690238717797 +that:0.2605900606401796 and:0.16528985607428195 when:0.03774174242330005 but:0.036221650481192885 where:0.03369189583051691 if:0.028976975750301108 as:0.02808003323644878 which:0.026569939593461277 Then:0.01880118653909369 If:0.015484727031525765 time:0.013980646646658592 But:0.010618386751351181 then:0.010408654497876917 until:0.009552930223644316 it:0.008001065854693325 or:0.007715090485780273 whether:0.00734571645142556 though:0.006908382540354207 while:0.006591264708835109 :0.2664297942390785 +of:0.1534989931210022 the:0.11853433097397402 and:0.059646269853866965 a:0.03936461711378504 to:0.03879655609971942 in:0.019417361483656106 by:0.016279717422588453 on:0.012295233944712273 are:0.011946163872399258 one:0.010698183495723858 from:0.010212444859354143 was:0.01003762256453379 north:0.009807711414611966 some:0.00964183004570384 were:0.009425397282478968 The:0.009154093735516339 for:0.008986034280336912 :0.008874337952685466 with:0.007563500475944208 :0.43481960000740677 +out:0.06624165173837694 part:0.06189278215837157 one:0.057900999334450046 some:0.025422448590810526 that:0.020603193559331327 all:0.01934923889325685 much:0.018074193270225965 account:0.017496503493090742 more:0.01710449523837865 nothing:0.01607193448489478 any:0.01601976659796643 end:0.015966688644061464 portion:0.015315060568274927 and:0.014736366312452927 side:0.014007933536585323 use:0.01352159714929342 tion:0.013216800551041269 reason:0.012272999186970767 none:0.012263808748693292 :0.5515215379434727 +the:0.1178071006683423 and:0.07843707791468897 of:0.0674173812496921 to:0.06372177623293325 a:0.05705459911033085 in:0.017877367064798498 or:0.017733759301623016 an:0.01724372421089335 is:0.017085649557791256 with:0.016021559190959895 be:0.014890578552557397 for:0.01485101711796152 was:0.014757729813179932 will:0.013574870618285011 as:0.013002799116755823 his:0.012263867529251325 that:0.01149754294779104 The:0.011412049188596412 all:0.011404888047531795 :0.41094466256603623 +the:0.5129684752574107 of:0.0888633268646092 a:0.08579002473121806 The:0.0460618792815368 our:0.03278802053026889 in:0.025711639563627656 tho:0.022964565298896813 their:0.021759886425369832 to:0.020404783287313627 and:0.0195284544048288 for:0.01538964467188399 his:0.011502144949351732 that:0.009671392123740742 with:0.009479546398864466 this:0.0092255287086259 its:0.007945798596554917 all:0.006699161152788291 tbe:0.006671596888422937 by:0.0064052759125600815 :0.03916885495212646 +Cor.:0.19608789537709237 survey:0.051222645779951066 of:0.031256420527807964 lot:0.029860918915968242 and:0.029150733813646936 post:0.027306279417606032 corner:0.02471975129030595 District:0.024096351013308526 Corner:0.023784833195871425 book:0.021506538405846796 marked:0.01593709725594845 cor.:0.014242884868354575 Survey:0.013949943541305425 to:0.01387330387016506 Lot:0.012338584596736682 the:0.008820401246741607 vey:0.008232143016736913 district:0.007783038298317724 Ordinance:0.007755557787491543 :0.43707467778079667 +that:0.037953624256373504 and:0.03702895690881814 it.:0.034281593686560384 :0.02996149522842844 them.:0.022646544507082964 him.:0.018790902311665327 ?:0.010938320884910892 us.:0.009058324437774882 time.:0.008617212263313924 as:0.00835560207936277 but:0.008109954115418979 her.:0.007637875080492 I:0.007390495242017708 country.:0.006061921938329199 to:0.00579063553650848 it:0.005605850670173219 day.:0.005524753834387038 life.:0.005343437655918476 not.:0.005164679230043916 :0.7247378201324198 +to:0.38387022359232237 the:0.08438140567180309 not:0.06784280410785412 of:0.060532039667206154 will:0.043684964114717235 narrow:0.03138071414562085 and:0.029651635966863314 may:0.023593199305306234 by:0.0229045868313986 can:0.0199138624528399 a:0.019209368222115927 his:0.016451701252668757 an:0.015140365234414623 could:0.012918956807018088 shall:0.012735125822924567 should:0.012648371550787484 no:0.011480717688155215 cannot:0.01119012226086954 without:0.010931757953319098 :0.10853807735179487 +to:0.1360258721912599 and:0.10207688347256706 the:0.09700747817197779 of:0.07064519392217287 or:0.021432334924125437 I:0.020647269122384508 in:0.017141601450662396 not:0.016397940344252956 that:0.014849280713022436 Mr.:0.013905644562311354 will:0.012910900909622757 be:0.012820284535753368 have:0.012613486963290786 is:0.012551981224106456 for:0.012532454907102437 at:0.012099284720739057 :0.011715956308437605 by:0.010904429816807766 he:0.010856004373458036 :0.37986571736594504 +I:0.19102238026103113 we:0.09751265919418856 they:0.08264191290018959 who:0.0785574719839784 to:0.05274161681165298 We:0.05193792577709112 would:0.05155795513560793 you:0.03810740150333092 and:0.03651093225056002 1:0.023843157753070242 They:0.0196715634031764 will:0.019365342499281436 could:0.01817373763890938 may:0.017979469537019538 shall:0.017715582645822438 not:0.01752862030378976 should:0.01741779325358438 which:0.015604293279604598 must:0.014834380270489797 :0.1362758035976214 +a:0.3884469936118696 the:0.2516295347949699 large:0.1172598166199743 A:0.04263538507407082 The:0.038751151922176284 great:0.015784669032137842 total:0.012450029176985985 and:0.009906332100247798 tho:0.008795594021867324 whole:0.008551498061751726 any:0.00830995036862049 considerable:0.008078460889881919 this:0.008064962747566476 sufficient:0.00759398209225476 largo:0.007553634725424092 goodly:0.006793601890766698 largest:0.005417677222877226 small:0.005326727807158831 greatest:0.005260218271373045 :0.04238977956802493 +of:0.2809239239885796 to:0.12317917152256047 in:0.12081127345171468 for:0.0864863757050571 at:0.06790859383844376 from:0.0452458254289506 by:0.03462661513458676 with:0.029165153313947284 In:0.028946252987605735 and:0.02716340198394519 that:0.026589540921000385 on:0.02464341488563776 under:0.01213863280270302 upon:0.00952747469105995 into:0.00890201580287984 as:0.006861386442248652 through:0.006353326001750684 during:0.005866868135162689 At:0.0047267813142106395 :0.04893397164795514 +the:0.5688161278166451 a:0.08295842464624607 and:0.0628512484254159 The:0.0483658787538918 tho:0.035763336756606645 al-:0.01980171151732975 of:0.019391799895057557 is:0.017976713847624733 are:0.016689635963177345 was:0.011617829696122652 tbe:0.009867225781419846 in:0.009713002729302058 our:0.009070906780077569 that:0.008097690095964095 were:0.007276454837231133 this:0.00641177489446896 to:0.006334724396667011 or:0.005444192636433091 with:0.004718435930794163 :0.047832884599524526 +of:0.13084814232797154 in:0.0740836656586379 as:0.0625527229231004 with:0.059577596335708534 to:0.058433603729754965 is:0.05551580107464621 and:0.04946529489577619 was:0.04264000753602388 for:0.04009673021586375 by:0.037684080471064085 be:0.023941707008899252 on:0.02316059851167503 at:0.022644769441950232 such:0.019950936521181326 that:0.017856095877642635 like:0.017386655618315594 In:0.016902219705578994 from:0.016046571451088905 not:0.01205910100844263 :0.21815369968667797 +and:0.18410513829762087 the:0.16602444957537701 are:0.04814362051517408 is:0.046889430960576566 be:0.04469907633196704 was:0.04295786583956742 been:0.03046198790812981 were:0.028897685592334115 more:0.027459173399080546 of:0.027342591416835486 or:0.01954171956910725 that:0.01787187260798958 with:0.017260439660831566 most:0.016932260475092994 The:0.016501418960657734 by:0.01619801029388992 not:0.013445705150735099 a:0.012385025952021563 to:0.01228250836072781 :0.20960001913228352 +.:0.0822934031348536 Mr.:0.07729401513133663 of:0.04635170498321503 the:0.04173474419684121 Mrs.:0.039083831256236094 and:0.032643875112053945 H.:0.028012384557650316 A.:0.026438944848683754 W.:0.025691757247368833 to:0.025013443538464207 E.:0.02346472808916085 M.:0.023384040762455705 J.:0.022490865249001454 C.:0.021206293382174276 B.:0.019309673940913076 Miss:0.016752353335821004 L.:0.016259949501774916 S.:0.01577842360521631 F.:0.015603179363388463 :0.4001923887633903 +;:0.021381982511931026 in:0.02068160189418102 Columbia,:0.014902207318129494 up:0.013594162370950411 day:0.009009977052929453 them,:0.007909741241357652 mortgage:0.007451693663579814 ,:0.007232060574169194 him,:0.006574700090376908 mortgage,:0.006548243284008476 here:0.006284083779936049 day,:0.00626024743295148 years,:0.006169415949849184 year,:0.006083382676408468 sale,:0.006054801606921983 it,:0.00603756968983689 time,:0.005988405526992496 feet,:0.0058115617538736595 county,:0.005702940030027313 :0.829321221551589 +and:0.08979460248792114 be:0.044945859364580606 is:0.029326306869459168 or:0.02783707079642633 that:0.027610698451126653 it:0.02012441932054793 are:0.01892902712558591 time:0.018836521588367915 was:0.017878022617448572 to:0.015866078010175443 made:0.01565917497751179 served:0.011236405128049584 them:0.010366059747073598 which:0.010147958376380323 now:0.0101063127574425 one:0.010011435046416033 here:0.009688218723157246 up:0.009562771461550702 not:0.00946673432125195 :0.5916063228295266 +:0.06989014730289356 vinegar.:0.02854023848210161 it.:0.008796443122005356 them.:0.008734167112260625 follows::0.008598379319940069 .:0.008583280060701243 ::0.005839839643752673 day.:0.0053601721481258855 time.:0.004106252806448284 years.:0.0038508128573819735 him.:0.0038399542632507866 year.:0.0038340409490232753 night.:0.0036589802896639565 city.:0.0035427530193239834 girl.:0.0033870517488082566 country.:0.0032348084543434292 men.:0.003202883651242708 life.:0.0030253551099197386 Section:0.0029483085746654556 :0.8160261310841471 +of:0.3360710278452683 to:0.09758204809718929 that:0.07291181761593109 in:0.07034359398951423 by:0.06069559971503826 and:0.056427394268163455 for:0.04574080631476158 with:0.03538144909284627 from:0.030535961206620537 on:0.026005330422086977 In:0.016616327296340962 at:0.015432899406161129 upon:0.012518668058104141 as:0.01127839837227132 which:0.010922140138042382 under:0.009861603879693658 against:0.009122721613130021 when:0.007151099473928503 all:0.00696317063357632 :0.0674379425613315 +of:0.1739191253132948 and:0.11282967490939323 in:0.08455244069345993 to:0.07157357288902229 from:0.03420348919433157 is:0.029626785431782484 for:0.029301510892637654 with:0.02517023949101565 fact:0.023140456171460832 at:0.022740292371998174 on:0.022482383108447957 all:0.02099035142289707 In:0.019329981535005227 by:0.017994890081668376 was:0.017377331232020156 but:0.015187868233056583 upon:0.009283287316786182 a:0.008806933190012394 show:0.008682734854042126 :0.25180665166766736 +the:0.07786544620776277 of:0.0726073204849768 and:0.06971496082323507 to:0.053706242518422605 for:0.023877101333463716 :0.018477401301317684 in:0.016322958594167346 or:0.01575901748629973 that:0.014726428075095855 a:0.014594533735214077 by:0.013378980128311298 he:0.011070742218273715 .:0.010315605407815088 Mr.:0.00951094231892947 which:0.009278813281058666 was:0.009121331020734686 with:0.009119039433350474 The:0.008773475121482572 more:0.008433342544312791 :0.5323463179657756 +the:0.09802589146383765 and:0.0763089890169126 of:0.0634468969956322 Mr.:0.02785936960047113 Mrs.:0.023824600029237395 in:0.023061477568660012 to:0.021868414694247808 a:0.021272881788900362 The:0.01793284627072584 that:0.016166485936992207 Miss:0.015143844416361782 was:0.013509241463857674 his:0.01332010945001151 he:0.013160015971092719 be-:0.013047392129744699 which:0.012844014499713145 :0.011901892603700727 for:0.011521707898403302 .:0.010689650515236833 :0.4940942776862604 +as:0.0919238059263776 up:0.05845946622726463 and:0.044089638733546044 according:0.026402304690219924 come:0.024094843046330316 came:0.023188390257087466 down:0.02171718794699018 it:0.021548687482073874 went:0.021236693682459867 them:0.021209683704337873 go:0.018998725502027785 reference:0.018875344377463698 is:0.018551043780824547 back:0.018498445578652455 equal:0.01759940299172778 due:0.017516284803736768 attention:0.017035480734137787 regard:0.01691332878211642 sent:0.0167621087415439 :0.4843791330110811 +of:0.18835571842084986 to:0.10587400766637468 in:0.0711904762399959 by:0.06917754323971963 or:0.058413075519585994 than:0.05669603230365173 that:0.05180065666697323 for:0.05070835381141301 from:0.03287119167974518 with:0.029700570964709034 on:0.028954586916940625 make:0.027582703447991488 without:0.02624497605218925 as:0.02564185448081028 at:0.022980644283096995 have:0.021249595200284268 and:0.020946895933702993 under:0.016713933426402067 if:0.016118698078409467 :0.07777848566715433 +they:0.1339461974459378 who:0.06449150759567976 there:0.05964669119660761 we:0.0585849824831157 which:0.04520706527438132 and:0.04286863407622332 you:0.03913729104764804 There:0.03396718801066769 They:0.03209640169845594 that:0.031200974702725145 men:0.019845671685432692 We:0.019418999595623168 people:0.013692363921183908 as:0.010974793792506123 them:0.008386153753557493 these:0.008192396320777473 You:0.006556364269777689 These:0.006145955695672415 but:0.0058114506320729896 :0.3588289168019537 +the:0.26196171976530597 of:0.20734346920699342 by:0.06769080266114945 an:0.03927683221007349 and:0.03340174170213329 County:0.023650704034041806 on:0.016856965850744338 tho:0.016818157915719174 The:0.016761615188342058 for:0.015031249337193268 in:0.014961257118596166 said:0.013260336633163958 to:0.01285473249356339 :0.011255861843822055 with:0.010829241130622894 York:0.010729427710676483 Fourth:0.009157855901491586 or:0.008526521006278192 our:0.008442573274464873 :0.20018893501562415 +to:0.24486125232443814 and:0.10615303457886333 in:0.08599332925811315 of:0.056464796443326776 a:0.04289516073390503 the:0.033909162576756254 In:0.0237083466642077 his:0.022906417870175975 would:0.01980497494186375 will:0.01799903171016607 it:0.017996182777805708 that:0.016878941692287198 not:0.015885260895007976 or:0.015426112873188819 for:0.014898711267096134 no:0.014179778619417823 her:0.013671951270411223 my:0.011529505523853543 with:0.009903862589007571 :0.21393418539010783 +any:0.15346724821168614 and:0.14261949899901344 no:0.1241300977777141 the:0.11644835170509503 or:0.05975476056157248 in:0.05348760075204183 all:0.041155710620259106 of:0.036319954431140666 each:0.032850395602164115 some:0.02562737295644982 more:0.02326787917226542 other:0.018249325926459763 many:0.0162425946935266 In:0.015524327976324345 for:0.015201794786486903 such:0.014746760609371115 to:0.014150017077503685 as:0.013827107232830642 that:0.012449173139360078 :0.06948002776873469 +the:0.16807735899698817 of:0.10541662057906837 and:0.05138367848570702 a:0.04141865232648221 to:0.0385989743764065 in:0.026264864977736738 was:0.019530675665220657 his:0.018900421021236905 be:0.017373825006196972 their:0.015767721170721456 for:0.01557246589796783 with:0.014071419046630446 is:0.012922913111931644 at:0.012690452250034052 are:0.010702713108721902 .:0.010158075558988393 Mr.:0.009672788574483367 tho:0.009612591781990074 were:0.009549306361446321 :0.391314481702041 +the:0.33624173462987494 a:0.11790785352119491 and:0.07662412600171202 The:0.059018903281564984 his:0.03892615339011271 of:0.031420712034623086 so:0.029435175899571283 tho:0.026378898650928368 is:0.022439653318205854 no:0.017503653665778576 to:0.015935968937337643 not:0.01436921718318155 very:0.013684144441764932 their:0.012690754730522521 with:0.011644430683302127 my:0.011198161714259474 in:0.01118745234967686 an:0.010735378998633081 her:0.010690916720310374 :0.1309667098474447 +and:0.29197172578353214 of:0.1025222215849578 to:0.10068123991520682 on:0.027763886754556016 or:0.025779133847783173 the:0.025043419060730165 about:0.021067111170489285 from:0.01892676521905626 by:0.017801461295384083 in:0.01623373541179475 with:0.014381629981044614 at:0.013916566490581716 are:0.013479752171999369 for:0.009474615731167415 :0.009412151415463392 hundred:0.009031790455414284 as:0.00857290700453033 over:0.006928976920555629 were:0.0067085609381583484 :0.2593023488475944 +the:0.3581387817513563 The:0.08831524827748918 of:0.08287036013258069 our:0.06593961345930031 a:0.0357920060641799 and:0.025986373274552183 these:0.024721079809715305 These:0.023882623703792925 their:0.021597100816057247 this:0.020920343248703656 other:0.01696640683403052 tho:0.016554054546150845 to:0.0163009672041623 new:0.015150513812933922 many:0.014931562881558409 some:0.012337310585876903 any:0.012156599014218126 his:0.011580172837607573 in:0.009827312385457657 :0.125031569360276 +and:0.05954826800200673 able:0.04668638322633569 order:0.044604147860743466 him:0.0386265639301963 is:0.037952755253664684 was:0.03608034278118964 time:0.035788742053291994 had:0.03422850577743171 as:0.03375615948603487 have:0.03325378431854452 enough:0.03265489613643173 refused:0.03217993653985935 willing:0.031954089052473225 necessary:0.029379811072967266 unable:0.029231642185726107 ready:0.02728452641965818 want:0.022311327375082984 desire:0.02150886685695491 going:0.021449676184255563 :0.35051957548715107 +neither:0.14204192074032407 the:0.12910539138251617 of:0.05878909447155409 and:0.05407855526898891 a:0.04978816521042344 in:0.033933285798151004 to:0.03349302756911482 not:0.025626129282264654 no:0.02158573958511346 for:0.020947232371221484 or:0.01550877147987488 be:0.015393320227999422 by:0.014506047355728836 more:0.012850561063864951 their:0.01247902066991891 all:0.011449808161718755 with:0.011172402234885253 his:0.010364547026198705 that:0.010241313234374421 :0.3156456668657638 +is:0.14160594147975558 as:0.08148142152365939 was:0.07236302715947186 of:0.0612972485583238 with:0.05722821173894109 to:0.05649146800833697 for:0.05415242872160539 in:0.051062314785716344 be:0.04292796467371104 and:0.04009337624234137 such:0.034633170670330636 that:0.027278852819838106 made:0.02683561335119179 have:0.022452382183452455 not:0.022109011430090846 Is:0.020529656688452788 make:0.019842530268734792 by:0.019164192020445177 at:0.01742040649914915 :0.13003078117645145 +that:0.3841665963342896 and:0.06830787010694951 which:0.05446264230936919 as:0.05324672695743062 if:0.04908695984677197 but:0.03655167528102853 what:0.027541590051677733 where:0.02643247633806891 said:0.025115448145186108 when:0.02456827891427707 If:0.01469760198456039 because:0.011600161646198504 whom:0.009185659318568028 time:0.008839818351996508 thought:0.007822979177558628 than:0.007768401057218577 whether:0.006912275290612574 though:0.006828029506104137 But:0.006735157773386144 :0.16912965160874727 +those:0.24231997795333876 men:0.14856163455134624 people:0.050787069067406196 and:0.04941370206396304 Those:0.04407467890196491 women:0.03170798189840266 man:0.03153862431795978 one:0.020278367687255036 all:0.013120391075806655 others:0.012739265740411882 persons:0.012438108510928931 woman:0.008216276481680296 friends:0.007758480239075985 boys:0.007724241230745223 thoso:0.007533425579257927 you:0.006930612160573422 farmers:0.006735668878829705 but:0.0057140243274759455 girls:0.0055915020355071215 :0.2858159672980703 +and:0.047948510412075214 for:0.04066652802172978 :0.04015571770601336 that:0.035253888551539374 of:0.022713481510721084 to:0.021177959198139137 as:0.02053526981390191 do:0.017484217982157716 but:0.017030044319493842 it.:0.013497175939815797 with:0.013318053470678838 make:0.01260287029515408 made:0.00972153496119681 see:0.009311993974768968 know:0.00863579895548711 in:0.008444935590221168 think:0.008304761112336644 is:0.00801235127934792 or:0.0074671142114722325 :0.6367177926937491 +the:0.2982166739840809 a:0.2258820615727806 and:0.05475885844165148 very:0.035082272514171495 of:0.0319913069356925 his:0.03090407611650629 in:0.02540916332923365 our:0.025358315516572822 their:0.0234934294769299 her:0.021077009530678467 to:0.020748653213416752 The:0.017327222562650187 my:0.01670702612967983 those:0.015250459971252019 tho:0.014740919848796236 with:0.01430695817688027 In:0.011682540173034205 was:0.011227432289683108 its:0.011015164917361294 :0.09382045529894799 +to:0.09510176257557867 and:0.0759782477397007 of:0.044882537993784916 the:0.0315600709783228 is:0.027469709441114137 in:0.024414242512733896 was:0.023644505786906175 con-:0.02072663556943141 will:0.0197525729259325 re-:0.019515757684955143 he:0.01933396268374066 I:0.019168528042120436 for:0.018758717550584603 be:0.018539065847662673 would:0.018528419960293203 that:0.017041510263127942 be-:0.016586329410835588 there:0.01648203693916975 not:0.016023551150036123 :0.45549183494396867 +has:0.18346940404635506 have:0.1352432111973035 had:0.10427866414630996 was:0.08296483545889075 is:0.058909183098389446 and:0.036216456025500915 than:0.03103611449346055 I:0.027500051490388956 he:0.02597859786296177 be:0.02394834294394039 that:0.021480297012044684 not:0.02051706526114599 are:0.019043877749678546 were:0.018523498049495334 been:0.01831311494537888 as:0.017603814987786928 you:0.017264155443408785 it:0.0159643116893193 what-:0.009753411509896283 :0.13099159258834392 +and:0.21641858585018187 but:0.09349535329624244 He:0.04990766576267063 It:0.03947578209499572 which:0.033590015771394935 it:0.029820170363776478 that:0.028883979846953452 he:0.028566630346237593 is:0.025359779004057805 was:0.019430224441433046 This:0.018404551031356884 I:0.017391651450451108 who:0.012809780771971131 as:0.012512477438961703 And:0.011383184007766407 are:0.011247571797617331 They:0.010575865464222569 But:0.010408366976999399 they:0.008654649698680506 :0.320663714584029 +the:0.4685096140362514 a:0.07115701645037203 said:0.061630576246317494 of:0.05828954208014273 The:0.02615716076637782 an:0.02468496592276091 and:0.024268608930344746 United:0.02234251850015169 tho:0.020441548830223408 our:0.019258110112007825 this:0.019183764802875744 his:0.01818705881861861 any:0.018142275187846776 to:0.018102519680565355 their:0.013394265691266938 or:0.011914359167137374 tbe:0.01163997539020665 its:0.008565281421748484 such:0.008382337155446708 :0.07474850080933727 +the:0.11274823966931571 and:0.08329996793360815 to:0.062372082173126384 of:0.05346002906215973 so:0.0299749817344208 is:0.026294180790411077 be:0.020260006954324915 he:0.018124449911071136 was:0.016351044211737983 re-:0.01567649125103956 Mr.:0.014726716630740086 in:0.013675410003338988 for:0.013272602215284653 a:0.012159264338821467 I:0.012040910229586727 or:0.010977326121126826 :0.01035107289213954 are:0.010219913969554774 not:0.009881708091297656 :0.4531336018168938 +of:0.14061422670442228 by:0.07397890083971677 to:0.0645957650592629 that:0.06278196009235353 and:0.06171779412995163 with:0.024784207916322815 :0.021296554997849743 which:0.018150544625629747 as:0.015593235006414066 from:0.013045232743111014 Rev.:0.012950377448433107 for:0.01208267405942049 in:0.011345035541060299 but:0.010763995429851557 when:0.010542089526816392 if:0.007472747609427384 said:0.007100416424489038 or:0.00707214494317395 at:0.006990048717905581 :0.41612204818438775 +Cor.:0.20949627889543956 District:0.07445373483942257 survey:0.04270562376989357 corner:0.03734293106061363 post:0.037121347742983014 lot:0.03658394894602022 of:0.03316848424930846 Lot:0.018341016557111105 and:0.01661329353426948 Post:0.013713838929525412 lots:0.013665722411329507 marked:0.01363777729178492 cor.:0.012390484936257991 Corner:0.012047192929324798 Survey:0.009811691154813715 on:0.009011558147720191 Poat:0.00856192675087918 township:0.008170879674081219 to:0.007309971711880565 :0.3848522964673409 +and:0.07558940021936399 recorded:0.030196237618668006 was:0.028917161578042846 made:0.027969746247669736 that:0.027730098932509103 o'clock:0.025060522019555328 up:0.023026552239529506 is:0.020398277211376416 found:0.02003101797656537 placed:0.017482208134164214 out:0.016937164562539058 place:0.016819459500107596 interest:0.016629321966808677 him:0.016002796715253755 situated:0.01573420479581609 it:0.015128305982428461 them:0.014715943643665314 part:0.014646613000297721 interested:0.014450471929902294 :0.5615344957257364 +that:0.20184958311962262 and:0.14500034705322853 which:0.11410491456204534 when:0.057566798789661006 as:0.05466165330724512 if:0.0448637366072515 but:0.036625895736871784 what:0.029621323067311713 where:0.023910999516474327 If:0.020576087059457616 When:0.01808683025255217 whom:0.014901064242558285 until:0.012142147735194515 while:0.012078479493921684 But:0.011483063063795436 than:0.01064964928853114 because:0.010227995898247943 As:0.010204524125490477 Then:0.009915757014346896 :0.1605291500661919 +was:0.27215641211538344 be:0.13682415120221603 been:0.12020045830605969 were:0.07154090134313755 is:0.05864449631109267 are:0.039985750337920595 and:0.029029888097344737 being:0.017968525428141594 he:0.01100091317355026 bo:0.009122307070324206 Is:0.008934730423541041 person:0.005443244794691205 recently:0.004815190877905162 waa:0.004554804842272305 I:0.004436918559480302 now:0.0034704390103559002 it:0.0032431343561966654 as:0.002593647496989502 lie:0.0025419057426553844 :0.19249218051074177 +of:0.2046802610007374 in:0.12347962266708262 to:0.10534165186494412 and:0.0723758247799535 with:0.06423787104627414 on:0.048601559924376245 that:0.046710563399723966 from:0.029874970604397692 by:0.02824628556921551 for:0.025243648945509265 In:0.022836184178552828 at:0.021413987306147346 as:0.020759379445690635 upon:0.013547465721012222 into:0.012631222357923248 made:0.01256384450180185 over:0.012151950867270743 up:0.011733869292120629 all:0.009082185811493726 :0.1134876507157723 +of:0.15982512163674134 in:0.08479520538226767 to:0.06896424886072015 as:0.05387178981092001 at:0.05220139593488767 for:0.04858110200101883 with:0.042932325912691166 and:0.04013981669526056 on:0.036856057339152426 such:0.028678512679822778 by:0.028656647074307037 is:0.02623036254975086 that:0.02408251225814671 from:0.022172017972244336 was:0.020377781737770783 about:0.018020300913535205 In:0.017641202079095437 or:0.014143364857409106 be:0.013258789258765022 :0.1975714450454929 +in:0.12584751051357324 of:0.09759502479664728 the:0.07371839375246729 and:0.055651754291004454 for:0.04744536705298647 a:0.032925964492396737 to:0.03198260274187316 In:0.029652859996176964 was:0.017176340234656633 by:0.01637913782528117 are:0.015624529717594675 be:0.015359740034713075 from:0.015332737536474472 that:0.014587063309917358 is:0.012292937239714764 which:0.011956538642930331 were:0.011584038466634639 been:0.010892258706962473 with:0.010501774296364555 :0.3524934263516303 +the:0.25982046829092525 Attorney:0.1311945353936658 Postmaster:0.10887213063652754 The:0.09947831269139754 of:0.05818382339138922 that:0.036597130683563454 and:0.03463748503510178 Major:0.023904848000427893 tho:0.015547996108654807 by:0.010958903307656332 which:0.010314274465394563 :0.009259727927972 Adjutant:0.008074264025109502 for:0.008070513048532816 No:0.007084497267311995 Mr.:0.0067863012853781116 Tho:0.006367300488025902 tbe:0.005967002435574347 as:0.005763334095510969 :0.15211715142188018 +of:0.14604204426413778 in:0.1333287517212463 to:0.09123475366289222 and:0.09050781570111785 on:0.07954759612883174 for:0.045877244374896105 In:0.0447651430577709 that:0.042714445956451685 with:0.03473339259024759 all:0.03306490756518741 from:0.02423780492132675 but:0.01853993030843106 is:0.017948357131414322 as:0.01672544435256788 upon:0.015582282059570894 when:0.0144395319563912 over:0.013527027787631709 was:0.012584431289071073 up:0.0115819947215954 :0.11201710044922014 +that:0.20638108177460726 and:0.0626016757428635 which:0.05392831351165676 to:0.04176081702826796 as:0.029330574004846222 if:0.026927745323982108 when:0.02545635833318052 but:0.02314517710455873 this:0.02018966988888229 said:0.01984079425555024 where:0.018893876068485433 I:0.01836625766184994 what:0.017917529130436007 may:0.01356825802964269 t:0.013376679969139958 If:0.012200925904167164 will:0.010971387032975786 before:0.00986601030173969 time:0.009184937699177142 :0.3650919312339906 +it:0.12792814770140024 and:0.09359578911504852 they:0.08207814381680827 which:0.06059374839938419 he:0.060462965545369646 It:0.05606261654014705 that:0.044145310593665534 you:0.042808074233995824 I:0.03987941914749322 there:0.03697499404128633 who:0.031034967377642733 we:0.02147631479873283 she:0.014421286603096032 They:0.013900185945083932 He:0.012928964457908063 There:0.012011552121064015 but:0.011192891120031656 as:0.010007998937691021 this:0.006895121692501243 :0.22060150781164964 +the:0.39397782430007144 of:0.1548723574475473 and:0.07386575366461699 a:0.05559011761795586 or:0.028103690701652605 The:0.02606762511708868 tho:0.024384875660609644 in:0.02214695639871378 for:0.020914658249745047 their:0.018135320704557988 as:0.016799478301908827 such:0.013359183590064416 these:0.011762750664284371 with:0.011576167636223707 other:0.011378312274167447 two:0.010473132152936283 all:0.01023037700364509 our:0.009731099444232411 by:0.009430315690852068 :0.076200003379126 +of:0.16639108483531379 the:0.09981718077475399 in:0.08610387457604184 at:0.08395158187844377 for:0.07898135739931633 high:0.054629579005119416 from:0.05172917489064855 to:0.0442095447726363 and:0.04345524986918993 on:0.03751112625472574 low:0.034295483859487406 In:0.02346657707697786 that:0.022025850550630763 with:0.02013449517124607 by:0.016193095923056473 his:0.011962230190478191 or:0.0101323728803426 this:0.00995164239352436 higher:0.009795050603574483 :0.09426344709449212 +there:0.15282240558043036 It:0.1250877021251384 it:0.1172130349964821 he:0.08447653464159645 There:0.07990106646359449 He:0.053545487723974064 and:0.03475602177722308 I:0.033514699763994925 which:0.028339689006514263 that:0.02258044118480592 she:0.020389246311069347 This:0.018864857928065765 who:0.017143411225723663 She:0.014044583378045664 this:0.01264429778309141 lie:0.005676248946248602 ho:0.005008892472785812 as:0.004728079857187771 one:0.00469102709236943 :0.16357227174165848 +the:0.19072783119756595 and:0.1010753853985622 of:0.05386424151196188 The:0.042544909312565445 that:0.041011405176737896 a:0.036088522873236634 last:0.02837690349956866 he:0.0182775095784174 tho:0.015795352638054667 which:0.014087195494973755 first:0.010249117526211899 .:0.009825537495512715 this:0.009239583206217424 He:0.008514247996337434 to:0.008378678364794912 had:0.008120293770857715 but:0.007936495730589785 :0.0076586121344494155 Mr.:0.007638672537812685 :0.3795895045555715 +of:0.8260929046598041 in:0.01868179656363468 to:0.01761812078139055 from:0.01696100407034007 at:0.013694449784127248 by:0.013246831593729594 and:0.011363869541349358 ot:0.0070318906532249835 for:0.0061644238015190235 on:0.004662488532974005 In:0.003823285869637811 ol:0.0034728432789739544 the:0.0029049626703029543 said:0.002564931434037738 before:0.0024017092246502426 with:0.002132178930492041 between:0.0017385409738287926 until:0.0013651613777779681 after:0.0013612130995205942 :0.04171739315868427 +be:0.3134656889821028 was:0.13831979036670042 been:0.07279017990122023 he:0.043934484543624815 is:0.04352654193457859 have:0.031647047856457874 and:0.030601042102805145 had:0.02617638565677689 were:0.025923205080242137 not:0.025733130566980334 I:0.02444397725846541 bo:0.0212443457170252 being:0.019421546235233244 has:0.01527841945479115 who:0.01362591010819807 they:0.01154361996514644 are:0.00987939282121132 ever:0.009249250860663824 it:0.009011548834590903 :0.11318449175318517 +and:0.09636505565437027 the:0.08409014553729188 to:0.08146247147269703 of:0.07832268958179635 or:0.0266348805338052 Mr.:0.02098496958671108 in:0.019474290609286644 at:0.016863777712200434 for:0.016605845038627384 a:0.015433412325853171 be:0.011906704615196878 it:0.011888031608021665 not:0.011049857393656166 that:0.010534600777502373 by:0.010390042411386868 is:0.009841255125910452 was:0.009450745257877136 I:0.00882506441917845 with:0.008762658978977857 :0.45011350135965267 +about:0.1512378034256682 of:0.1352560095453283 or:0.09133782469819111 and:0.08432047458462869 for:0.06011830989091635 at:0.05480061186010466 to:0.04811684312048305 than:0.04272856215150083 from:0.04133445424473008 in:0.038851381320301054 the:0.021919296587164194 south:0.021337845914508758 least:0.020184413694970964 over:0.016509360125715068 range:0.01643890006220552 east:0.01566994887838972 section:0.015613070353357593 nearly:0.015373684072377247 twenty:0.014438005971984724 :0.09341319949747393 +the:0.2330872159319421 and:0.11535406341735535 to:0.06160405259016137 a:0.06147742845307012 of:0.044297088623726916 his:0.027561988908902803 their:0.02154310531024351 Miss:0.018364975648113444 May:0.017567045236967973 block:0.016894806433761057 tho:0.015358969774649985 The:0.015111227863083405 her:0.014279130619926608 at:0.014187757565012317 for:0.013338998764276078 St.:0.013061564865451741 per:0.012104261706623418 or:0.011994753365022297 July:0.011933866982427436 :0.2598776979392821 +and:0.09959439218478015 committee:0.027602541122405726 was:0.026399716071522614 Committee:0.02253678251437001 made:0.019995023246694655 up:0.017927811931323787 out:0.016054212818290545 go:0.014689901000874238 him:0.014447217627335656 went:0.01402521580562514 that:0.01318487309708929 feet:0.013071867359053552 is:0.01294307566979292 it:0.012797984034049512 down:0.012322976268323451 held:0.0120695692843192 work:0.011697333479250845 going:0.011495900787811493 put:0.011133536327567537 :0.6150100693695197 +a:0.32612966877466937 the:0.30059518724008827 his:0.04438229057318577 this:0.04019110266932584 their:0.027389981610545816 and:0.022833860807549372 our:0.01926179154630975 tho:0.017677833680220127 of:0.016264079128597727 The:0.01568716132672675 other:0.015329808688376495 said:0.015179175376132545 any:0.014609169376544917 my:0.01157913933568576 her:0.011070432153548944 best:0.011058627850709775 an:0.009209168088914442 its:0.00869536391069296 that:0.007865616339275001 :0.06399054152290036 +and:0.06454739073657131 demand:0.023313300174744492 ready:0.0192991955467307 used:0.018559068069203856 time:0.0167973135366693 not:0.012889415712033305 vote:0.012868664167591082 it:0.01277775949265748 candidate:0.012059490274945432 him:0.011492660117416436 them:0.011389360230310022 called:0.010603763162339089 made:0.01030049958521204 up:0.009942829375404135 was:0.009875709402481388 as:0.009516893763303088 patent:0.00929908628672026 or:0.009178704268878403 but:0.00882338719685127 :0.7054655088999369 +hundred:0.05258898406087687 100:0.03218399520102245 six:0.026858770044577276 ten:0.022285539793526918 50:0.022234385208954027 two:0.021039856390951444 300:0.020781948275034233 twenty:0.018816955910998048 fifty:0.018672625172818893 20:0.018628151508600848 30:0.018085694717217694 three:0.018082207062060963 four:0.017518051999022486 linear:0.01661047200050135 2:0.016530468931690145 200:0.015370104934237282 3:0.015228972656373163 4:0.01508033689797572 five:0.015064999181132048 :0.5973374800524281 +the:0.17989304745526827 and:0.08246673138151284 a:0.07757145761355809 of:0.06203165885467098 to:0.047295115767608926 in:0.032035895139538625 for:0.02896627913394 The:0.018854848190218924 his:0.01836366040766355 with:0.017405173118926167 Mr.:0.01711434536607261 that:0.014190529271153527 their:0.011557823348446326 an:0.010871261888366256 tho:0.010347417992085982 her:0.010244783312877192 or:0.010022430334119058 .:0.009871819207942384 :0.009170858028371783 :0.33072486418765845 +of:0.08084157221293299 the:0.06871385987202633 and:0.04574882456127286 to:0.041905172195736175 for:0.02005648491494799 a:0.0199098829120184 in:0.019698414819358544 :0.019338710950204112 that:0.017224635742376277 or:0.014545330451592531 be:0.011251233806556859 -:0.010959895581222992 on:0.010452367157491699 which:0.010259328336282807 by:0.009516530267508894 are:0.008667205577729185 The:0.008598505816100471 was:0.008514815209528744 at:0.008342466685686641 :0.5644547629294254 +the:0.08420913210031296 and:0.07107068750542198 of:0.06822389165938944 to:0.0599489087081745 a:0.05257718780079019 in:0.03141473158662753 at:0.021975814255332612 or:0.017694597911752274 that:0.013162839445448531 .:0.013061368692281139 was:0.012987245792900807 :0.012773694497432157 is:0.012394992910484803 two:0.011275167442196135 for:0.011036798656478955 one:0.010008200950919357 Mr.:0.008795227227627026 I:0.008735566598605277 In:0.008322108371681566 :0.4693318378861428 +the:0.20245154915022068 a:0.1471157474411337 of:0.11372286282773536 in:0.05590258037932707 their:0.03264256779392298 this:0.03155289226907045 and:0.029492859197370023 to:0.023284547566036526 his:0.02043968188659896 with:0.017006615818537157 The:0.013156284515687415 our:0.0126335900887227 tho:0.012627150827762978 for:0.011611720328527097 an:0.010433633591379552 its:0.010189997859905311 In:0.009959620202189934 other:0.009597324382566077 be:0.00948923551601822 :0.22568953835728778 +and:0.1465467308737133 he:0.09516679005056378 had:0.08634225081147388 was:0.07491954449896024 have:0.06127163437808312 who:0.04698795408710893 He:0.04330567444635958 be:0.03825727656888115 has:0.03732894206602091 which:0.03157444096808185 were:0.023325189549436146 she:0.020991094186709965 that:0.02082579558508948 been:0.02004286609767211 it:0.01781801216412124 is:0.01724336988734543 I:0.016371350445876755 they:0.015405710746444819 are:0.014685599392640726 :0.1705897731954166 +the:0.18535206180227828 a:0.16939348880801092 his:0.15338692051346886 hus-:0.07330067054241793 her:0.04545819635393262 and:0.03803996716541372 this:0.02684356473439693 their:0.02398077265136738 my:0.02246451358724882 of:0.020051046012181137 on:0.018680114843991888 to:0.017177500204234728 our:0.01473519507610496 tho:0.012561866301457723 one:0.012491034475571183 an:0.012106727288831021 bis:0.011931161707762303 little:0.011031333803238293 or:0.009600980997388979 :0.12041288313070234 +his:0.14511108160581512 of:0.14290120447112387 to:0.10668933413797675 her:0.07492026490016725 their:0.05797120290848511 in:0.05112083034384342 the:0.04570058788261683 and:0.04133808084877026 at:0.03361192596268113 all:0.032269976678441906 our:0.018590542231767652 for:0.018490186395518176 my:0.017026776053171336 from:0.014179690283210634 that:0.013768368132744886 by:0.013441400828756039 as:0.012993263046864562 with:0.012630737824761467 its:0.012521495811031215 :0.13372304965225237 +the:0.2911353276197283 said:0.12707841135805967 of:0.0908711966453089 this:0.07320887764019135 supreme:0.04358361417985325 and:0.04047216064473658 to:0.022599917235001207 district:0.020283348942275847 that:0.020202919549246065 circuit:0.01652450627330944 county:0.014835253469160129 tho:0.013656537907388444 in:0.012831546641436108 which:0.0115756245807522 The:0.010358662428572347 public:0.010294733423812548 for:0.00974667698289608 a:0.009452024758550203 States:0.008111833386862386 :0.15217682633285892 +one:0.1028303141280697 part:0.05963429477052991 out:0.04766456937681193 some:0.031418679026461914 members:0.030764490253327767 side:0.029940657362655835 portion:0.022063658796890564 office:0.020457735219956013 member:0.019726706386316174 end:0.019666887540649894 tion:0.018667441728710307 parts:0.016814747270460957 people:0.014112771422418794 all:0.014072739582212475 any:0.013183573287639892 One:0.013083578354183906 that:0.013024335602903442 account:0.012482348155001894 many:0.012077825070275192 :0.48731264666452345 +to:0.5907412739816047 will:0.08680272833848156 and:0.07752616177687167 would:0.05793003767356069 not:0.034874847580458376 can:0.020584010101509894 could:0.02032239780397178 I:0.014859666680209506 should:0.01454394115678168 must:0.010169729081603908 may:0.0070846839252736915 you:0.007007943570585524 shall:0.0064594017085537825 we:0.005895666575760466 they:0.005352060316835143 who:0.005247360527841058 then:0.00435773275559978 To:0.00399414287759537 might:0.0030117317498292947 :0.022234481817072174 +of:0.2773416744474862 the:0.23454153232823574 The:0.06243637703386486 a:0.04918708954971922 for:0.04627444680033489 his:0.03451841870780212 this:0.03386122971270372 that:0.02699037858297498 and:0.023403213791634216 to:0.017738522705399672 my:0.016598403882216152 in:0.01383643879986935 This:0.013621223899110394 their:0.013539164955902227 no:0.01189310344976402 whose:0.011625962481984276 tho:0.010392415134994108 its:0.010083086811941967 His:0.009995410505395161 :0.08112190641866675 +hundred:0.02334136986593815 up:0.005482494641173394 men:0.005366536521246011 Hundred:0.0047587970519216575 John:0.00441808156134956 William:0.004390720675819281 him:0.004016828614280843 ;:0.003997112205305733 due:0.003721199871732 in:0.0036582900032443304 time:0.003637206863828461 James:0.0035594902370151707 out:0.0034878448964120057 .:0.003467980723571515 1:0.0032804584819785204 day:0.0032444781513863933 ,:0.003058139385740603 :0.0030314555521939613 Robert:0.003005471634785646 :0.9060760430610768 +and:0.09452880428976006 of:0.08701294895355896 the:0.07681063237882531 to:0.040166147050341994 a:0.02918124681906247 .:0.022184726424295323 or:0.01570144826004133 Mr.:0.014998716414507512 all:0.012713964781138941 :0.01262634986678912 that:0.011313304937745216 in:0.011151586798954638 for:0.010926756040724078 be:0.010784283216485615 as:0.010238771312888209 was:0.009565493091802211 by:0.008905015334679339 are:0.00871383448741308 two:0.008281597205095545 :0.503194372335891 +of:0.19633712845499693 the:0.19284236269790242 their:0.03433844438802961 and:0.033511641054510675 his:0.031174508316867026 said:0.030571885464445163 in:0.028600072403510153 this:0.025970427980676624 a:0.021555475066296303 our:0.01985835794935551 public:0.019425266666982306 such:0.01903246424196696 real:0.017666811096825965 its:0.01727240010501389 same:0.01601282876311417 tho:0.015636326035743855 good:0.014660408671641902 with:0.013102243634543329 own:0.012195957258931264 :0.23923498974864596 +ought:0.1328501041672276 is:0.08967878104321554 and:0.04364677103015359 have:0.03737217924039194 not:0.03296671394144767 was:0.032944762611156725 as:0.032289579037177496 seemed:0.03122865063316662 seems:0.027739571718074698 had:0.027158573841783495 seem:0.027135673614839376 likely:0.02695132298672118 are:0.024801576501104258 him:0.02435231476372951 enough:0.023575555565887054 it:0.02327699945334079 necessary:0.022011361378924805 able:0.021212798675937655 order:0.019452180066053766 :0.2983545297296663 +:0.12227599492375255 it.:0.017025302109010113 them.:0.01179381354969996 day.:0.008342617297391627 .:0.008273587176953059 him.:0.008269642299424042 time.:0.008266768386969622 country.:0.0068761778371191126 year.:0.006387040583095937 years.:0.00631066638717929 of:0.005660269242258541 city.:0.005488434191339771 work.:0.004802710632319241 life.:0.004473822935183486 people.:0.004351696538040981 water.:0.00415554980826081 place.:0.0041224874132263405 out.:0.003996463541023383 ago.:0.003954262391003434 :0.7541726927567487 +of:0.22002796793805393 dated:0.08933893503653696 on:0.0761282794839664 to:0.03936231221167007 in:0.03686849392721508 and:0.029731833140721527 at:0.024760103245777054 for:0.018307937952369353 the:0.017305288940069267 from:0.0169426706308984 :0.012854066749578428 by:0.010021450713339411 seller:0.007822579112778201 Monday,:0.007280644366996629 On:0.006981551301672708 Tuesday,:0.006846920093964934 said:0.0067462083028710755 In:0.006635666938762946 1st:0.004822457032224363 :0.36021463288053324 +is:0.10835829998333177 was:0.08022980112702914 of:0.07884588842062354 in:0.0747291773995702 and:0.06746894863624474 to:0.05465216986489973 with:0.05171529557000227 as:0.051258943693343655 for:0.046533640264990156 made:0.029890195522053603 make:0.028943488234133428 be:0.027999255984521715 by:0.026055527611255933 that:0.02387965913041991 had:0.0232190019131151 have:0.022156958867007547 not:0.020772298171846212 on:0.018335422694731665 at:0.017914977701637972 :0.1460410492092417 +it:0.18933079373983122 It:0.09555282981329422 as:0.0866880719218501 which:0.08464636001756828 that:0.07051112314641195 they:0.052690658552864006 there:0.037417756895181786 and:0.029058424718588206 he:0.0269797830604667 what:0.022289821189138203 who:0.01796366222381316 There:0.013579855598546447 you:0.012550455952835911 we:0.012277334597652966 this:0.010978958519068683 whatever:0.009752693743122305 case:0.009057349738014284 This:0.008398456526460612 one:0.008370438307689692 :0.20090517173760122 +they:0.10803825806606807 There:0.0846295756397731 there:0.06662374887395578 who:0.05526214492519579 which:0.03999959264184759 They:0.03783487545407278 we:0.03694407160853133 and:0.0357263569075601 that:0.02830487692134406 men:0.022702861992016207 it:0.020603438728026377 We:0.014056895323162144 I:0.013734721858848765 It:0.009205082320511412 you:0.008129661852900668 people:0.007320227557016707 he:0.006834905987121989 but:0.006657329175462162 These:0.00558993766882075 :0.3908014364977642 +to:0.12022893700269083 and:0.09020394424291768 the:0.08587503820055309 of:0.06450042443224316 in:0.0310058468700829 a:0.017742048521183405 :0.015548046036689871 not:0.01491307651316237 that:0.014112408707955496 for:0.013734482372212283 I:0.013065769926808477 will:0.012848502316304782 at:0.012837991177321897 In:0.012628718855091186 by:0.012491091048660757 be:0.011425930130217754 is:0.0113962101007567 he:0.011342727513475473 or:0.01112522537451577 :0.4219735806571561 +the:0.8064385409756575 The:0.0495183619413697 tho:0.030221248935781545 a:0.022553860584358338 tbe:0.0173997243351297 of:0.009298082242259278 and:0.007569065782114283 general:0.005263240012399845 said:0.00369350722827222 tlie:0.0033385532091135548 high:0.0032105942108138705 this:0.0029356665997119077 annual:0.0025631017534511083 great:0.0025011573052650424 Tho:0.0024759628670869786 by:0.0024462922540919503 an:0.0024019241733262953 his:0.0022704533199429558 our:0.0019971987953079605 :0.020903463474545973 +the:0.16252600296301706 of:0.09943636141121946 a:0.06972061183976204 to:0.05786006055271911 and:0.051901321414837935 be:0.037439623662398995 in:0.027926045399370266 is:0.026607440308126628 not:0.024117671416066706 was:0.023783954316327426 for:0.02116560723292378 or:0.019279992189698437 their:0.01878366798909115 his:0.0183649522149638 been:0.016598750070275194 are:0.014734104368434184 at:0.014726030078833321 no:0.01294859103405944 with:0.012367286558919744 :0.2687119249789553 +a:0.2921451509360369 and:0.10235956475989721 most:0.09120752245021194 the:0.08884971987193141 of:0.08166327467862686 to:0.05583681386309781 very:0.04050556376591486 for:0.03456140479615888 in:0.02863168478557418 with:0.023155988386658378 more:0.0172503285631925 some:0.01484924922280718 or:0.014029611184859467 his:0.013605354500759777 no:0.013129839382197467 A:0.012428484862981674 is:0.010792914933265363 not:0.010487260750101906 an:0.00969661191840578 :0.043813656387320536 +it:0.15824363503940161 It:0.1414269381831634 he:0.10727398066683817 which:0.06603104061482228 He:0.050935890493931636 there:0.049101845106844864 and:0.04651341113599452 that:0.0372507167397142 she:0.031285550020832505 I:0.031191992166464417 There:0.028315311100509662 what:0.02223876050920799 This:0.02059518039434319 who:0.019939529905096853 She:0.015300248613520466 as:0.012723820293385642 this:0.012187664567028163 lie:0.0076290410428849105 but:0.007266079347593118 :0.13354936405842238 +of:0.19423735731804226 and:0.12727683064174247 to:0.08931909337862551 in:0.06670138326899555 with:0.04996681514871177 that:0.04608646145234189 at:0.04185114377825535 for:0.0399518279279544 on:0.034099025612130705 by:0.029662613546694527 from:0.028884587116401354 was:0.014881635369016566 In:0.01438168116503802 upon:0.014189906116448584 all:0.013395189039781912 but:0.010909796366113224 made:0.009996531861343236 as:0.009830212041148447 had:0.009471402200549655 :0.15390650665066452 +and:0.135494436738122 the:0.0869783883109371 of:0.07609079535591606 was:0.06076184214796973 in:0.03346036336345284 is:0.031236053453800094 by:0.027025155295277922 were:0.02452611408912728 are:0.020848771165274144 The:0.019339849063915733 or:0.019243012525793326 with:0.01715111061326637 In:0.01676624640828487 been:0.016264148947713695 be:0.016124373156727285 to:0.015799981056440836 a:0.014855694208316637 his:0.013249420447654883 he:0.011551167897704256 :0.34223307575430495 +of:0.28767355066866834 to:0.08775711267569858 in:0.08678131196995101 and:0.05160598694501188 on:0.04646139928102899 by:0.04519522654900943 for:0.044547789071328545 with:0.03396756772609607 that:0.033699232901107726 from:0.03075346596941143 at:0.027039283056790858 In:0.021061449543044047 as:0.017514234937992545 all:0.012543839382496166 upon:0.011844431150487573 is:0.00998972746569266 was:0.008814315973987914 into:0.008557199930727406 through:0.007781895704231326 :0.1254109790972375 +have:0.30825979017372884 has:0.23335574802959289 had:0.21175046658197516 not:0.030988266201518243 having:0.02927012901615229 bad:0.014171973849594698 ever:0.013086879418728829 never:0.01300501411300987 havo:0.009928021099038665 lias:0.009747205787221536 haa:0.00770115724572842 baa:0.007542997033275567 always:0.006964193192067684 already:0.006843537117543435 yet:0.006280305743339498 long:0.005835741283387316 since:0.003932840742479124 hare:0.003476596932273983 and:0.0033496242557260235 :0.07350951218361794 +and:0.21836428931140237 that:0.08575691441572711 but:0.07914595358080531 time:0.047487653995230104 But:0.02204533003321122 or:0.01725642986469812 And:0.01710196210300124 even:0.017095031397895165 especially:0.015138772482568398 them:0.014437073499874897 come:0.014195855099181226 him:0.013623746338252682 only:0.012897760162940305 ago,:0.012579800759189996 days:0.012407250673120014 day:0.011510705969827676 except:0.011377231483950305 me:0.010337197128654841 as:0.010258813660474323 :0.3559822280399947 +and:0.08626260353677523 to:0.07577109443698432 the:0.06837576325886587 of:0.04434030395352066 for:0.04103314054636101 or:0.020744518956265633 in:0.01878770152069299 is:0.01771072708020642 be:0.01739292145890212 that:0.016563406522187976 :0.014392040072252688 was:0.012924923517740093 not:0.012699968256063964 are:0.012528615955800066 by:0.012507909195389936 it:0.012035462995444484 which:0.01173918286031039 will:0.011289597398232857 with:0.011181936389623783 :0.4807181820883795 +of:0.14215132302235206 and:0.07757049291522751 to:0.07418066448907017 the:0.07092487488822435 in:0.05977570795545036 by:0.03969742892364148 for:0.037578183413974134 without:0.03270591888194366 that:0.02823651467964281 or:0.024658414640509926 are:0.022458933714175167 with:0.020359647273409474 at:0.019839316504117525 on:0.01868623426514902 be:0.01846876084709222 from:0.017708685394898952 any:0.015448983557056884 such:0.014836593321138661 all:0.0144034446356624 :0.24930987667726326 +of:0.23262501395836183 to:0.11445376949427712 and:0.10114049552671955 as:0.0790498379579712 with:0.05367711978369856 than:0.04300533738214849 by:0.034997499541318366 for:0.03368753729369473 that:0.032675185090128955 all:0.029843274525535708 is:0.02368465911625186 in:0.02018571253406765 from:0.019825055194198526 but:0.01493415093859371 are:0.013602401577410038 on:0.013352852907762983 or:0.01306575458150896 like:0.009778295017353458 was:0.008330208452622249 :0.10708583912637606 +the:0.23357359653174023 The:0.08516082622044621 this:0.08508186791532645 a:0.07252340942852567 that:0.07205081844921479 This:0.04492738581067538 of:0.04152678612124442 his:0.029151669657854856 and:0.02628233757583936 His:0.020502063181276252 said:0.017634595570314035 which:0.01596715591705034 first:0.015220174874123304 their:0.014533391007428684 following:0.013341706957603935 tho:0.012851384840802643 our:0.012499664551651829 last:0.012227831248388499 her:0.012037018899107976 :0.16190631524138516 +of:0.2956409448021145 the:0.16971642745154641 in:0.05973245098600342 to:0.057273755268135884 by:0.05588276623046556 and:0.04325382913573888 on:0.03788657628011893 that:0.023994612306951626 which:0.021203544959955994 with:0.01913401596727551 from:0.017103459705374136 for:0.016627626664798865 upon:0.01230276369771017 pay:0.01172236853769776 at:0.011679576990925719 under:0.0115360556044838 The:0.00853640134560776 is:0.008332655272590183 have:0.007996789794022392 :0.10944337899848254 +of:0.1423162662080867 the:0.10642105045568793 in:0.07102492296944794 to:0.04623341226606472 and:0.045559922673972034 a:0.03645436964388756 In:0.020140681455134722 that:0.019556584089924927 for:0.017675282661083102 :0.01711663928365127 The:0.015802839866639145 with:0.015206894928778964 as:0.01234279194930161 from:0.011932073666402147 which:0.011797355084319401 or:0.0113421515789044 on:0.011051004196711966 by:0.010523291893583451 at:0.010496170226552762 :0.3660062949018652 +that:0.1673125444736472 and:0.13015265193228553 as:0.07452405571053654 when:0.06600212723928815 which:0.0651834292005147 but:0.05856088267531474 if:0.041027104878445866 where:0.038991855681207235 what:0.026821665653660873 time:0.019982506702422638 whom:0.01673724992653617 If:0.016343948711639238 before:0.015344788275195908 until:0.01532942169636657 Then:0.01473111142584124 because:0.014510159436339994 while:0.013593561643205264 though:0.012836711267447126 then:0.012105436321732695 :0.17890878714837227 +sum:0.03352282876311118 number:0.028116684882597106 line:0.019995206059833036 city:0.01946514558931857 out:0.019275318828420953 day:0.01666865340772654 county:0.014872697538657208 amount:0.013254184849875051 Board:0.01252325449624941 town:0.012449555905674143 side:0.011663975251122375 part:0.011517157473718155 County:0.011460540331966697 state:0.011087331502382173 City:0.010878919191854432 purpose:0.01081028255427907 and:0.010297866493795984 way:0.009848747943663767 name:0.009522170936943183 :0.711769477998811 +to:0.49689683583720273 will:0.10554350797970356 the:0.06191039570116191 would:0.045695416965822126 not:0.02949567237031894 and:0.028762816192577693 a:0.024127420619321396 may:0.017114598944107825 can:0.014627978656084478 must:0.01377751219990886 we:0.013341086415158188 they:0.011912739456747147 should:0.011829851975093859 I:0.010278801663725582 statistics:0.010192675782923823 that:0.010000146745863967 could:0.009192714445860346 only:0.008862524660761475 you:0.008293460455715222 :0.06714384293194083 +of:0.13027569241199288 is:0.10426117363619068 with:0.0790800252414258 was:0.07847592351459676 to:0.05654584116198982 in:0.05474383305963929 and:0.05161461901350574 have:0.04851784400157729 for:0.04140635479489283 be:0.03971552599374338 had:0.035113029969582356 has:0.03494187180727315 at:0.0330309413419169 as:0.03085172018190461 by:0.026155724745418517 that:0.019191457851488045 been:0.017009393661726095 made:0.016510148894883777 such:0.01638023085431906 :0.08517864786193304 +the:0.23027730978315816 and:0.08482463237028816 of:0.07397500868586093 to:0.03389168504568519 or:0.03359938151696448 their:0.03224728639851034 his:0.029130578866713785 an:0.026779309592224 for:0.025906678509719956 in:0.023890672494278016 this:0.016238294117417226 tho:0.016135734253995428 from:0.01562670769055539 our:0.015375868979693936 its:0.014560637468456827 any:0.013559416042465171 other:0.012852468135776902 are:0.011660716315128243 that:0.011502839622894768 :0.2769647741102131 +Mr.:0.08132031774223056 of:0.06473279908420095 .:0.06414177938167709 Mrs.:0.05187963429623654 A:0.04505021300128658 the:0.03982440454661165 :0.035427620330371876 Dr.:0.03238173949689793 and:0.03125026434664748 that:0.023288336236215887 John:0.01953762129484627 A.:0.018490786998194956 H.:0.01680706609112898 C.:0.01658472219123219 W.:0.01611006230124056 The:0.01590371870627899 George:0.014471440354940348 M.:0.014345545550562843 J:0.013767890026785322 :0.38368403802241297 +this:0.3689066792196617 the:0.30485864197874274 that:0.05113029186679867 to:0.028020263471731612 said:0.027791178153426778 and:0.023967333799332725 a:0.019794650476362825 tho:0.01514132205062273 York:0.013980900240663561 our:0.013541343260504698 of:0.01032328859379166 The:0.007987145566721506 or:0.007570783435257774 tbe:0.00702657023526814 any:0.0059303206156139324 other:0.005667740263673457 every:0.0051400719920403366 :0.005014614037966712 same:0.0046786296435880415 :0.07252823109823041 +the:0.1879541936458157 a:0.10864713995439798 of:0.06272705788173567 and:0.048694536964152345 in:0.041940959847898446 to:0.024151506104479827 an:0.01769171624764424 by:0.017595370699943814 The:0.017452608557044832 that:0.01710447534652374 at:0.014463661214683265 was:0.01382048874118005 on:0.012716327805773874 or:0.012711053647048422 In:0.011920980671561008 tho:0.011519578582863302 his:0.011374017549761755 be:0.010664184008264485 one:0.0104242285288247 :0.3454259140004025 +to:0.4701153044981688 and:0.07102605018664897 or:0.06656541177959134 not:0.048584272263026404 can:0.031523105509351626 will:0.02760701640953421 would:0.022499165974542386 should:0.02123222718283606 could:0.020627284319356 may:0.020436349228070104 you:0.016637454923968346 I:0.0155692004141938 the:0.014381289077455459 that:0.01127178577715682 than:0.008824309444013113 shall:0.008729453892341216 never:0.008359406027753735 cannot:0.007095391923024855 we:0.006666264093084665 :0.10124925707588207 +was:0.09694047492367401 be:0.07157365133220715 been:0.06574419242341549 is:0.06538885033168516 have:0.0623198060014206 are:0.0598536355721135 were:0.04928483242143658 and:0.046412394731259986 had:0.038174406568021145 has:0.030712147716671304 the:0.028574390648245636 as:0.025890944492278925 a:0.02388073874447019 of:0.02239131292302522 or:0.020789312269379648 being:0.017118410634358223 by:0.017034094451989258 im-:0.014929185190448318 he:0.014423756377566457 :0.22756346224633317 +as:0.06337289415049517 up:0.04809314218185479 and:0.041411564292737395 according:0.03738221587639796 back:0.03564998809838123 him:0.035577611022324374 returned:0.035110739114133455 went:0.031172920432325488 came:0.03111997420978254 it:0.024764398107483297 regard:0.022823763012400078 confined:0.01803499028792385 come:0.01739043734809638 return:0.017283054062928106 go:0.01654150200276455 down:0.016309920682264393 owing:0.01563727895997569 is:0.015449497308450856 was:0.015024338606440533 :0.46084977024283985 +let:0.13520954575253893 with:0.12210397267820322 to:0.1035234038160901 for:0.05618654916060689 saw:0.04099062532313823 make:0.039708551868992394 see:0.038804641834042086 made:0.03741939350061493 told:0.027395962498548553 of:0.02400858733294363 by:0.022263877231119868 give:0.020948208596010282 upon:0.019987847247496568 do:0.019277751289955385 Let:0.018126717193115937 against:0.018031586413014545 tell:0.01763482321395144 gave:0.017353322343225206 keep:0.016056016406542938 :0.20396861629984886 +a:0.15637498264687494 the:0.11914701790608073 of:0.09746544314418777 to:0.05701648896366948 and:0.04403489651073064 at:0.03828592446314778 in:0.03229533214614443 an:0.02805826777296174 with:0.02373637409761559 by:0.016363652216788052 that:0.014486161419342693 on:0.014021065353622332 from:0.01341381216500398 or:0.013188420772956993 for:0.013095848169056972 The:0.01281588564016338 :0.010896167705273602 be-:0.009781206171372342 In:0.009459861483499556 :0.27506319125150697 +and:0.18773862128898167 the:0.09054586748594916 an:0.03849220430176951 a:0.03329206311288871 of:0.029077399909713274 is:0.022466581207156434 was:0.022378502294296006 not:0.02024033644642326 that:0.015390804064379756 so:0.015275648470795756 be:0.014808110957931263 are:0.013442424829234481 to:0.013050949362626709 which:0.013034014347771454 but:0.011858430051792046 this:0.0106809051827498 were:0.010662657348277507 The:0.010492544224067571 as:0.009279095022312436 :0.41679284009088324 +it:0.12291356726271781 he:0.10766523848787593 It:0.08126222867785683 which:0.05815091424687329 I:0.054909855356083816 and:0.04607290301292405 who:0.036234513317437905 He:0.03284977251390459 that:0.0307500349566012 she:0.02807960748770171 there:0.017106531141060498 as:0.011444714915749334 She:0.009915288061780691 ho:0.009311744482256256 what:0.009144898696231517 1:0.008083327589627603 This:0.007923029238788926 lie:0.007752420127589498 man:0.007654383581502722 :0.3117750268454358 +may:0.24428282832866052 to:0.22136471673401945 will:0.08660722979117 shall:0.07672607051911455 would:0.06566917201760067 should:0.04943088067522663 can:0.03291713453309561 could:0.028960361540320275 must:0.02719003140428065 might:0.016378975259870938 they:0.012151940870589175 and:0.011234226930547358 not:0.010520533976086653 you:0.008538647397690302 the:0.0081836632193275 it:0.006939278897347615 we:0.006143325744050822 did:0.005070116938538827 I:0.004987050255580211 :0.07570381496688226 +and:0.15563598083930374 fact:0.08711133430257853 so:0.058396464404789995 is:0.0579273243303576 know:0.03891059414000834 believe:0.03502353458944794 say:0.02956643029162141 was:0.0244460879735422 found:0.02198426212440242 but:0.021647450971207037 said:0.020296919668606115 think:0.019452871708646135 stated:0.01753336395586828 show:0.01665691069363014 of:0.016641414712527034 given:0.01606702283810136 see:0.013748934150150846 to:0.013612160583704404 ordered:0.013591989952554125 :0.32074894776895235 +and:0.11203614284734381 made:0.029480560291083903 necessary:0.027231632327903786 provide:0.01978786821063526 him:0.018624150941585572 time:0.017844902254185023 but:0.01736032991925495 pay:0.01712283223509279 responsible:0.01655246417854943 work:0.01573375727996718 used:0.015721729148453864 that:0.015344008200088246 providing:0.015123591452644664 or:0.014918878594106077 it:0.014272018550925738 vote:0.014240496926603478 out:0.013886758983508773 demand:0.013625570335128902 ready:0.01288626098417059 :0.5772060463387679 +at:0.22093617275917252 of:0.14977770375612312 the:0.07424787411621481 to:0.06420167053871736 within:0.05595433185289319 in:0.04663233858453565 for:0.041681130388071023 about:0.024302034036395234 from:0.023786719666245168 and:0.02332650019564141 At:0.023268464061565228 a:0.021828504573464257 on:0.01521102929674112 that:0.01434002878469327 :0.012937586702217958 The:0.012486852672325795 with:0.011638035799816687 In:0.011384539266572468 ot:0.007221455104714451 :0.14383702784387925 +the:0.18423993242741638 of:0.09062596301580393 that:0.08231469272103484 and:0.06794026126252482 this:0.0637487181483057 in:0.05706430877283803 an:0.05180840435669938 The:0.04460316265250432 to:0.019576414224109637 An:0.017696921004355406 This:0.013239485980316655 or:0.012930826716257102 In:0.011476033437834498 which:0.011471130990724367 for:0.011167120447554524 stock:0.010186228926535527 by:0.009711627446648616 such:0.009711591450887241 tho:0.009700344092375801 :0.21978683192527326 +to:0.15715657501811023 and:0.08112951111732991 of:0.051805427656852414 the:0.044853516656767296 or:0.019830896813686435 not:0.018300624868624715 in:0.018295429158735454 a:0.017351094495290705 :0.016114378026961564 I:0.015878469985475478 at:0.013965832595157556 be:0.0128355961993989 it:0.011608392762471434 have:0.01060287792217719 that:0.01050973890608272 for:0.010508899959902408 with:0.009872058792640805 had:0.009679250411912348 he:0.009619981582586748 :0.45908144706983567 +and:0.10321612297805516 I:0.09063767499432879 be:0.0870558629837494 he:0.0815885641377162 was:0.07673978469983644 had:0.04055964034952741 it:0.03273306980345141 been:0.029254048832499734 He:0.029234573315366864 have:0.02867121007481853 were:0.025922429989260053 then:0.025816836322706975 who:0.023259030210698 they:0.02271410520217748 has:0.0224619529359884 is:0.022111507141815798 she:0.020660728879615953 we:0.015190470835320775 soon:0.014055814016024694 :0.20711657229704195 +the:0.13495043060413897 of:0.08116512228138067 and:0.0666484668031579 to:0.061479885922863124 for:0.0225472057129304 in:0.022258265482069606 be:0.02060705238488401 is:0.018128702512605167 was:0.016565762763359006 a:0.015576597161064762 that:0.014241236932705084 their:0.013967877427544685 he:0.012125594536493497 or:0.011887633530224664 will:0.011130101470498135 so:0.0108874112080436 at:0.010863400836486839 :0.010492776840493524 his:0.010323787803221298 :0.43315268778583504 +of:0.2537433752778152 in:0.20778767668933462 at:0.06818392661091034 In:0.06729937252920108 for:0.06010183878223725 to:0.05698674327723168 on:0.04294260245623096 from:0.0411023356152064 and:0.026720129764776522 that:0.024885462643537536 with:0.020791827686932624 by:0.019524882229442916 upon:0.017048256964659923 At:0.010344522449195799 is:0.009321402552038378 after:0.008603249389236923 but:0.006908661778989102 about:0.006476116124647469 under:0.006334206826874791 :0.043893410351500496 +the:0.5965528758472791 a:0.13507336125154593 tho:0.038156348750944306 The:0.03201859255648212 and:0.02461320546958586 in:0.015565594885642341 tbe:0.015190530728484052 dim:0.012085328951552834 of:0.010364739075001142 electric:0.010072582720973042 no:0.009297097214619606 very:0.008334293562926151 any:0.0069123403544657964 or:0.006799495389143425 A:0.005939160619453689 as:0.004314771959197289 this:0.0041926205767518895 to:0.004157875377437743 for:0.003680650068070155 :0.05567853464044362 +of:0.18393418344521567 in:0.13595766313948576 to:0.08129494298544794 and:0.07389422060584412 at:0.04611673390637699 In:0.04411292710092779 on:0.04246892133315722 that:0.04225933681208014 from:0.04168186864548404 for:0.03789250544448127 by:0.03418765132463035 with:0.03331453302885215 was:0.01931723942256354 all:0.018934187138577863 is:0.01632344814454943 during:0.013719032749582928 after:0.013363031370847824 as:0.0127729851665867 under:0.011417068540004021 :0.09603751969530423 +and:0.08348144643650744 of:0.06652615093088474 was:0.04717342720703642 is:0.03731232266392797 not:0.02658132701703411 are:0.02614071765425206 made:0.024733513836696464 on:0.023368936416030512 in:0.021855992029853288 to:0.021776733801811138 by:0.021116042212225968 said:0.02085752363777769 do:0.018901190669986665 provided:0.018259537973388428 be:0.01767141926607214 were:0.016027851594802852 been:0.015827901508204838 for:0.014274913832688273 as:0.01307109497618994 :0.4640419563346291 +of:0.14134021128274424 any:0.12134982540026734 in:0.08228162669766739 no:0.0718666166143443 the:0.06868254752535596 that:0.05253269788130906 some:0.04668344917627884 and:0.04454569117904434 only:0.03877662867681982 to:0.033813224299874906 by:0.029071013354693018 for:0.025259145634437426 every:0.022346778756462998 but:0.020941103189437652 a:0.019380471732197504 from:0.019134859523988305 In:0.01901768677735395 than:0.01651329329071256 each:0.016029804420403245 :0.10943332458660712 +one:0.1028303141280697 part:0.05963429477052991 out:0.04766456937681193 some:0.031418679026461914 members:0.030764490253327767 side:0.029940657362655835 portion:0.022063658796890564 office:0.020457735219956013 member:0.019726706386316174 end:0.019666887540649894 tion:0.018667441728710307 parts:0.016814747270460957 people:0.014112771422418794 all:0.014072739582212475 any:0.013183573287639892 One:0.013083578354183906 that:0.013024335602903442 account:0.012482348155001894 many:0.012077825070275192 :0.48731264666452345 +and:0.10497221288025987 was:0.07658647608765011 do:0.06272959871749333 is:0.049979603346822686 are:0.03622368398848353 be:0.03507137433720323 were:0.025875706500349156 been:0.022300026980179192 not:0.019388950483163445 or:0.01738201802333909 And:0.015076963576782289 to:0.01466081626371445 it:0.013308304687768065 of:0.013177129494055325 in:0.012288079658129078 but:0.012206623695093689 did:0.009865916220213013 that:0.009329121205086622 done:0.009318970723111686 :0.4392584231311022 +of:0.22557984578577944 in:0.1673312734332462 to:0.08380559065261683 for:0.06946211449731804 In:0.050138245127591706 with:0.04558408444340564 and:0.04468652862248713 that:0.03730790118644111 by:0.03672717099162622 from:0.03259193884438901 at:0.021741120901069805 on:0.02119579227743161 is:0.015964496030740363 was:0.015246056340266939 during:0.014522980893681956 as:0.014431358157544382 when:0.012801253424086174 under:0.010425327440046104 all:0.009940132069942145 :0.06951678888028921 +:0.08175366844586267 it.:0.014732523296849738 them.:0.010025881485104539 to:0.009957664633732079 of:0.008236917287008365 him.:0.006432220886278562 .:0.006369593112585473 country.:0.006094548812809899 time.:0.005857882385073525 in:0.00581691499066423 years.:0.005385549958069464 acres.:0.005034685031530367 year.:0.004928874474488674 work.:0.00489661292712553 day.:0.004544851377925132 and:0.003829218467044302 :0.003552800902941844 city.:0.003518411985313572 to.:0.0035007399116544083 :0.8045304396279377 +of:0.09129790931378902 the:0.07369883040827747 and:0.047842263382354346 in:0.04189055351593407 to:0.04045875475680249 a:0.03542341257202578 be:0.02020462051672066 for:0.01979292654746225 was:0.01760256398103379 at:0.017380150555488715 is:0.014984483003968216 with:0.014047653760730413 by:0.01374644383819499 :0.012670486581795598 In:0.01200961464556976 or:0.011563835749786333 from:0.011391516893522809 are:0.011273104484969465 that:0.010755276030689069 :0.4809655994608848 +at:0.15759636317629921 of:0.1421714067936483 in:0.11676904876960983 to:0.06398364411645996 on:0.051157018190029144 for:0.05108566601725402 and:0.04555513108461132 that:0.031721944739604234 from:0.030113826054908015 In:0.029702699076370135 At:0.029399515452081842 with:0.028043139425789426 by:0.026185917658690036 is:0.020303271491863204 as:0.01797707611473321 was:0.017223050385135958 upon:0.016504659720422372 about:0.014081527374087893 be:0.01236778699448754 :0.09705730736391437 +and:0.12843468310680328 the:0.11698052216194871 of:0.11174762657352458 an:0.10825151769585846 have:0.041373982638562 that:0.0353866506023753 to:0.03369127822632497 with:0.03018771596039266 by:0.029299898570352867 for:0.024565498280265507 be:0.023443684465095423 no:0.02078395197745507 or:0.018498803084682804 not:0.01797861372868319 had:0.017924650286120933 The:0.017345966206122533 as:0.016426201967270095 good:0.014830191740909514 this:0.014284257344113673 :0.17756430538313844 +at:0.12985459804813718 the:0.0938628462947698 of:0.09031551696358905 and:0.08215872259683592 to:0.04415750477169426 No.:0.03225710845127719 in:0.03074516594303153 by:0.01956809209140792 No:0.01820126092404105 from:0.01802038734077344 a:0.014821769722994933 :0.014477192702276815 about:0.013378164069463721 Section:0.01330168265711904 Miss:0.012331539568342093 with:0.011733071069466838 an:0.01156073371347117 for:0.01154741151836032 as:0.011159588018266208 :0.3255476435346815 +of:0.10076052624903933 in:0.09762670301765418 to:0.08444029354170758 is:0.07544964677443373 for:0.06737690258973636 with:0.06456815748613687 and:0.05666447284056493 was:0.05385455852302547 such:0.03965302211035949 as:0.03838328142828669 that:0.03134671736172303 by:0.028629572290037972 be:0.0283214386012632 In:0.027132685227082343 at:0.019196253428072654 make:0.018661594617859642 not:0.017579668546168752 on:0.017279723020221217 from:0.01703716427376608 :0.11503761807286048 +and:0.22197480103679196 I:0.1204564579251787 he:0.06094709535148243 they:0.051055382441779706 but:0.04383483527310855 we:0.03898717881019093 that:0.03812290821073507 who:0.0281109922784123 was:0.027727577455136182 have:0.025482394611142295 which:0.024863080650632318 He:0.02355486323042575 will:0.023103258670586914 has:0.022785556240660067 is:0.022142164178733947 had:0.02110540969569082 it:0.020727544776498293 she:0.02058348936190992 you:0.0174844221935343 :0.14595058760736954 +it:0.07411982833483331 and:0.054339927098646545 It:0.03458460823476594 which:0.026280404431167102 time:0.022907624216257826 that:0.020420526357640332 mortgage,:0.01985281408020906 as:0.01716112252576892 have:0.016182524329217796 :0.01535709472574896 not:0.014525640107708106 is:0.013513201716806162 all:0.012871068386382483 the:0.012307524866329252 will:0.012212970461959786 there:0.01180928536077499 power:0.010321413747842078 are:0.010289687913862483 was:0.010190509160900583 :0.5897522239431783 +in:0.404803763876121 of:0.26205635623015877 In:0.1094946094547038 to:0.04093187183588617 for:0.024486617353831366 that:0.02168028460565855 by:0.018685016592814283 from:0.01690156280209661 on:0.013992424160443235 with:0.011005164536289577 at:0.009334440029878306 and:0.008476612700458595 upon:0.007094627839472312 iu:0.006518302013524146 under:0.006308778026350996 into:0.003997056906988575 through:0.0036881885097282572 ot:0.00338331505296552 make:0.003198973507173895 :0.02296203396545608 +at-:0.3556756123943571 at¬:0.10784692611327587 be:0.07644214248645508 was:0.06691893511360497 at­:0.06275946674754812 and:0.05193593835947601 is:0.029132996565133826 are:0.02398590733002557 been:0.02191668208858555 were:0.02166683566299229 he:0.012761325685989573 I:0.012002553070659854 to:0.011554144107855798 then:0.01115254597509734 not:0.009062195142276937 of:0.008370633853930807 it:0.007933024574467295 now:0.007469200666998098 bo:0.007383801437088604 :0.09302913262418128 +and:0.09499785559459475 a:0.0855470411313956 the:0.07527203807309497 to:0.061339761187037656 be:0.04416348052173222 of:0.03093473239202042 was:0.029087537852568648 he:0.027170758095971376 as:0.02660128632611458 is:0.026100871754336754 for:0.025989577306392623 I:0.025409964150091842 or:0.023352423488816894 not:0.01799334420960211 by:0.016271998846088542 his:0.01510982353631171 who:0.014744897160597709 are:0.013046764327586263 will:0.013024959491640078 :0.3328408845540053 +and:0.10119789434721585 the:0.08750650826269914 of:0.06965652901268303 to:0.05397231607343732 be:0.036865526523342323 was:0.035053854231348616 in:0.031304212937328754 is:0.026000336185972757 are:0.0211137244270955 were:0.018396838756921496 con-:0.017174874810272 been:0.01699376096117119 for:0.016754654309511306 com-:0.014528737373553537 much:0.013539613194676265 their:0.013377304520975603 he:0.012755370579971337 or:0.012523440083369532 not:0.012362122862064477 :0.38792238054639 +of:0.2094044326800705 in:0.10323064403071443 to:0.10003830707887722 for:0.06651277384544663 and:0.059888103219910734 with:0.05229638367705768 on:0.04126439815398536 from:0.0354362178188539 by:0.03150820700611748 at:0.023923279676181686 that:0.021401420699051488 upon:0.015462838440665488 In:0.01545720659661401 all:0.012395979629342193 or:0.011833585179611528 as:0.010765835272299391 up:0.010244683825641929 into:0.008022179740618366 through:0.007346693776088779 :0.16256682965285124 +and:0.08961749022226104 was:0.03454060585589438 went:0.029960670652297638 put:0.027424512731788843 that:0.025837750713297882 going:0.025547261581232546 made:0.023824578079769062 out:0.022305721139545917 came:0.02192440380379894 up:0.02136880189492771 go:0.02032027081291933 called:0.019649229461345997 committee:0.017765448509236944 held:0.017525029960249915 Committee:0.01651763804490584 work:0.01619823642512209 set:0.015012567365803546 is:0.014335645954245475 were:0.014217364651227164 :0.5251067721401297 +one:0.07591276261110715 out:0.06051731193170748 part:0.05247657393880051 some:0.03764565803631056 account:0.03732080875142556 any:0.025795501308866122 all:0.022573497570587936 that:0.021706034880474935 tion:0.018820497961324994 time:0.018327338823311803 and:0.017698472540372448 use:0.017101246342976464 much:0.016743309263569286 portion:0.016424352739351607 side:0.015150320706867294 end:0.014971280442338157 cause:0.013657752568417643 because:0.013563549560043006 reason:0.012998228641295377 :0.48959550138085167 +one:0.015552536992080472 more:0.014252271697624306 on:0.010631301787611593 day:0.010222750824534239 two:0.010216157614982159 person:0.007504694644314241 in:0.007364820929323563 man:0.007179188731169107 law:0.006205362369136604 action:0.006166303509128973 and:0.005659786788634644 city:0.005177234665142273 three:0.005130416479837977 State:0.0047265097104810415 to:0.004696031397422901 ten:0.004594585978494318 of:0.004463781172886088 town:0.004231879326219736 year:0.0040256313925199315 :0.8609987539884558 +of:0.3184190360443104 to:0.09837906929557073 that:0.09130553659096319 by:0.07716162857593323 and:0.07688457445143693 with:0.03906316830091578 for:0.025965737317318032 as:0.02542658772834525 all:0.023506616441147255 which:0.01968652879663868 among:0.01841207866951537 in:0.017513619642541476 when:0.01720235800928863 from:0.015449175925616863 on:0.014523860288414415 but:0.011312790402103057 if:0.010474920730546195 where:0.009647153854551638 upon:0.009387241003742929 :0.07927831793109999 +a:0.255042114840263 the:0.22735248237996056 of:0.08861437414942784 and:0.05030843738081417 most:0.034335468786701406 in:0.02816581607216944 The:0.025691583128495326 his:0.024002823141295617 tho:0.022007620290882022 by:0.021324506434844914 very:0.018480964141387616 with:0.018341293597477687 A:0.01428065513610614 an:0.01375885990156202 to:0.011887340063717246 my:0.010167694055388001 no:0.009478247395708241 or:0.009088403708214806 tbe:0.008375590894058807 :0.10829572450152516 +went:0.0927774039628488 all:0.06463498121337967 go:0.05842403382303225 turned:0.053781602991305084 was:0.04713101927150155 came:0.04223901068603393 come:0.039343483179708594 and:0.03516518158629227 going:0.025942102445140478 them:0.02304459078550818 get:0.022763784301918756 looked:0.02252150617229802 presided:0.021802430852890946 it:0.020153327040319233 him:0.019511163412180243 passed:0.019166058976959242 is:0.017803026972838653 gone:0.0177705012247419 carried:0.01749732776808197 :0.3375274633330202 +the:0.13448639735926646 and:0.06273497515085641 of:0.05722738542646615 The:0.030264119550248655 that:0.025166473164476923 to:0.02438378675961096 Mr.:0.022143224660517925 Mrs.:0.016603123499822736 he:0.015930698466348345 in:0.014693365691954676 which:0.01409115679341299 a:0.013413617653736047 when:0.012389127926377346 Miss:0.012016493505785191 his:0.011970216664955093 :0.010837468526464123 I:0.01039676372263122 one:0.010074007746342005 for:0.009493489176838439 :0.4906841085538883 +for:0.12085923305628431 to:0.11595020632289377 at:0.10346118363356852 in:0.10259096756690268 of:0.10150068122531906 as:0.06382738374396367 and:0.05078048959468541 with:0.030139634688524528 is:0.025401246581701478 on:0.025186424996675602 such:0.02259408956506252 by:0.02140422078997001 In:0.020400455685714584 than:0.01919651834644729 was:0.01883385866279997 from:0.015046173740097993 that:0.013303349287924857 about:0.01323385242558098 into:0.011554242837059043 :0.10373578724882372 +provisions:0.0679938503985306 copy:0.06201617447249093 date:0.05159752313646957 part:0.050661532655167846 one:0.04272232046411394 out:0.039198262926626565 people:0.03688333605300589 publication:0.031622932748407565 members:0.022148687792528047 tion:0.01953442712364951 laws:0.019086435714135187 result:0.017976916451795253 object:0.01720022560087386 portion:0.016216616046388216 that:0.01583665345861985 all:0.015799046403021585 member:0.014650050293503455 passage:0.014513299284273402 purpose:0.01444493434085836 :0.4288967746355404 +the:0.11919516938815296 of:0.07230453158552728 and:0.05781056740443249 a:0.043018564803886335 to:0.031305092790907506 in:0.020848713353460488 at:0.014270110001066288 .:0.012526810245749479 :0.012413283442322082 for:0.011719122709941797 by:0.010808400946589808 or:0.010404172990115616 The:0.01003576004804544 with:0.009811868184449042 tho:0.009295902015355835 was:0.008924239095331684 that:0.008672304223433876 is:0.0085591147338948 be:0.008335143826716943 :0.5187411282106204 +he:0.13480017819743895 it:0.09999872252342147 I:0.06762184647915855 It:0.06001098796619657 He:0.0594414254631818 which:0.056798819704955546 and:0.0511975852651175 she:0.03411152096564239 who:0.032655566279045194 that:0.017626525054037348 She:0.014029258311030005 man:0.012395858390668911 lie:0.011194800652659898 there:0.010381855642938946 ho:0.009284998662574357 This:0.008756049324554687 bill:0.007975225856263639 body:0.007548750815518629 but:0.007200115741491816 :0.2959699087041038 +to:0.7558163627086162 and:0.05245732171005099 will:0.02704072654986218 not:0.01586021630862835 would:0.014739667266863434 shall:0.009197868298439946 To:0.006549684949337621 who:0.0061833797120818285 or:0.006086287216993641 should:0.00569611898567079 may:0.005629830221548196 must:0.005216813809296508 that:0.005002680402753015 which:0.004768956349785625 the:0.003211021800862571 can:0.0031985672285032916 lo:0.003144158776809212 a:0.002765703985656685 they:0.0027135275483456214 :0.06372110616989438 +of:0.10479709460463454 was:0.08966266535273369 and:0.08045844684051491 in:0.057625575442197166 is:0.04510747578845597 at:0.04441244316892499 were:0.0347849060046357 are:0.031436753775514505 for:0.029472422599049756 only:0.025636548723297924 had:0.01565679716854635 from:0.014180465428642722 that:0.014164603734285493 to:0.014063596659403623 In:0.013798482139574473 him:0.013645978787938353 or:0.013321635249345884 bring:0.013148243423016884 by:0.01299385309197251 :0.33063201201731457 +to:0.5645021119817174 and:0.05190710926116388 they:0.043756251110226775 we:0.036765042231261987 I:0.033170098941900206 would:0.032445236485872324 will:0.03240310273103442 you:0.025287229487329338 not:0.025280136960783357 may:0.02037354671722166 should:0.019961406487925305 could:0.01240575200530724 who:0.011866167033841229 can:0.010339398688189172 might:0.009572915297538903 shall:0.009047274019215588 must:0.0084533713534868 They:0.00830419028055162 We:0.006180558847252692 :0.0369791000781802 +and:0.03868242960999506 as:0.031124813427855922 went:0.02352509775927722 him:0.02196555539050794 them:0.018760608639018784 up:0.017985449426794205 is:0.017894175620344187 go:0.017174904667157563 able:0.016756848979943888 going:0.014481672239490295 it:0.014128375989346808 was:0.013277058274565138 time:0.013249953793837373 not:0.012469887553778763 began:0.012465717758716884 way:0.012105610030480113 back:0.012090864562211581 right:0.011941707822828511 amounted:0.011564315359310868 :0.667354953094539 +able:0.06905653453289548 and:0.05267165836588715 time:0.04688522783374364 him:0.03679953733802517 right:0.032748871814652775 me:0.03144199967562463 go:0.028933110482706727 began:0.028405495891390492 as:0.0281927801417684 or:0.02589723919126888 them:0.024262149530645486 unable:0.023896236759524788 failed:0.023410994231308702 is:0.021985185372484173 enough:0.01944187569039344 necessary:0.018607095844236993 went:0.017755066945189395 want:0.01743788254205903 willing:0.016907699996961494 :0.4342633578192332 +the:0.18941070485687136 of:0.07390279899818201 and:0.06570082437222247 a:0.058469243590548274 in:0.024856988432496216 to:0.020873147706783023 for:0.018682659686982638 or:0.017866694612114674 that:0.017028564531941848 The:0.014409173905624696 tho:0.013452762362497402 any:0.012264366938919611 their:0.011649091646265465 other:0.010378896202069391 his:0.010181810078543935 by:0.009890952379887743 :0.0098587277099488 at:0.008693303303851414 with:0.008048251693860238 :0.4033810369903888 +and:0.14095302386499892 to:0.1328318433979635 was:0.11384943473734911 be:0.11173461190717619 been:0.05866387778882719 were:0.05163831229117065 not:0.03213789421335228 he:0.03141471984441046 is:0.026132141583576518 then:0.02528987480023141 had:0.024746378725266846 are:0.024531571840200123 I:0.01897493271139457 has:0.018750786396542336 they:0.01850547217597341 being:0.017397122688497045 will:0.01551779739837163 have:0.014133131482522616 she:0.01250865074304599 :0.10928842140912919 +one:0.1028303141280697 part:0.05963429477052991 out:0.04766456937681193 some:0.031418679026461914 members:0.030764490253327767 side:0.029940657362655835 portion:0.022063658796890564 office:0.020457735219956013 member:0.019726706386316174 end:0.019666887540649894 tion:0.018667441728710307 parts:0.016814747270460957 people:0.014112771422418794 all:0.014072739582212475 any:0.013183573287639892 One:0.013083578354183906 that:0.013024335602903442 account:0.012482348155001894 many:0.012077825070275192 :0.48731264666452345 +the:0.10827285224321626 and:0.08870080307854705 of:0.07654378796298532 as:0.07601899914727774 a:0.04239111470737973 to:0.036354557417072705 be:0.029098708624609438 such:0.02486086551323051 in:0.02412061979539941 so:0.021759133747919383 is:0.0213871206641338 was:0.01854428813517412 or:0.018041820802296556 his:0.017121500893264113 are:0.011896248230315926 Mr.:0.011670635217693667 for:0.009878887779613906 their:0.009758437766275404 at:0.0092398132181 :0.343339805055495 +and:0.08936323182347833 was:0.02607488688551742 as:0.024392181249236883 be:0.02359308994480267 made:0.02264371965625727 or:0.02072319212567529 is:0.017399066877302184 but:0.01499663374235677 it:0.014852656389904836 been:0.012697638483775904 not:0.012634196443343447 that:0.01226002576964246 are:0.01212018391082256 up:0.01194055448384837 held:0.011742520923391578 interest:0.010078985876643572 him:0.009871412579996908 now:0.009783039661456883 engaged:0.009734246043293341 :0.6320985371292533 +of:0.14323527676539966 and:0.08547884124284658 for:0.05906305122458998 or:0.055971959392136145 in:0.05400424910298482 by:0.053419447446347815 the:0.05130831623614711 with:0.03837348795667027 to:0.03236079104063882 are:0.030116251086811877 more:0.027446679542085076 be:0.026744340416847014 not:0.01905755064535559 after:0.01854141101016389 his:0.018290275496910858 been:0.01827926371772975 as:0.018127805583007608 other:0.01701355781419778 is:0.0166205792732015 :0.21554686500592787 +of:0.28767355066866834 to:0.08775711267569858 in:0.08678131196995101 and:0.05160598694501188 on:0.04646139928102899 by:0.04519522654900943 for:0.044547789071328545 with:0.03396756772609607 that:0.033699232901107726 from:0.03075346596941143 at:0.027039283056790858 In:0.021061449543044047 as:0.017514234937992545 all:0.012543839382496166 upon:0.011844431150487573 is:0.00998972746569266 was:0.008814315973987914 into:0.008557199930727406 through:0.007781895704231326 :0.1254109790972375 +and:0.06513542891999144 look:0.05173501897603958 imposed:0.05164502711371903 depend:0.04694223820565586 bestowed:0.04405303112471316 put:0.037158720125111275 conferred:0.03502011673644064 called:0.03261856602603302 placed:0.030578083985073827 call:0.030394907473636806 down:0.030066649903338828 it:0.02675213129867752 made:0.02477518740625074 rests:0.02324035522233095 entered:0.023149252743767675 depends:0.02301093498077398 effect:0.022849132664167278 looked:0.022834134646852283 rely:0.02258583768759965 :0.3544552447598265 +had:0.1756907349498042 have:0.17373912320107676 has:0.1339075913507664 is:0.10273320827686132 was:0.07181866802726251 that:0.03552010671542808 are:0.033745021611161094 and:0.03355415896734258 be:0.03311660722607734 of:0.027330119430324932 by:0.022134954425748345 were:0.018762143998264934 with:0.01750447200815979 for:0.013420062099264765 Is:0.013000446112427622 having:0.0118451037143642 but:0.010725603835532805 been:0.010454902506349641 which:0.008845298999736845 :0.051151672544045804 +p:0.06285310296124384 p.:0.06283249463096437 a.:0.05802728568115405 a:0.050960225498105326 No.:0.03457670274483505 .:0.0327544968415489 1:0.02738307786746812 2:0.024286840231210093 to:0.021749414610816094 the:0.02061418965045258 and:0.018481414270515348 A:0.01827603112618757 feet:0.017826063093294996 4:0.017318148747834092 of:0.015643033162035466 12:0.015076740430654817 N.:0.012791267761554245 3:0.011641062832356932 with:0.009550187159629934 :0.4663582206981382 +and:0.036163001301143326 miles:0.03426311212625663 free:0.03330978850321795 far:0.027878204138329216 away:0.027612474438655048 suffering:0.022457202217289057 him:0.01978041441012929 them:0.019452101850619567 or:0.018413834246186648 it:0.017667545223036624 taken:0.016172371544295145 come:0.015434205859242982 out:0.014632990848161971 made:0.013646733411622508 received:0.013193041403157992 feet:0.012967307522593894 came:0.012865443983456806 years:0.01262667261658779 up:0.012462096192195415 :0.6180014581638221 +the:0.24740081442143705 that:0.19765830042191043 this:0.1937445252880376 of:0.038091964629548544 a:0.029335699740551207 same:0.02917421688141768 to:0.021283926990282653 This:0.019568102179602663 tho:0.018934564748475113 and:0.018736739550765737 The:0.013996747571452518 for:0.013627777381598972 present:0.012591145364999069 other:0.01250463910066625 said:0.011691157582456688 in:0.01066459780417722 That:0.010509681172305938 every:0.009692924651725339 his:0.009385208102413986 :0.08040726641617532 +was:0.20405612435434128 be:0.20158086772323516 were:0.10611840402238647 been:0.09418304974747572 are:0.06288391952347416 is:0.06276290188778813 and:0.05956562760472748 being:0.0296718232130608 he:0.01697290797494117 had:0.012773629666127743 have:0.012351272040585674 has:0.011949056398273965 bo:0.010519778531087187 not:0.008275052309593989 Is:0.007285193490410681 then:0.007010618658048828 or:0.0057798665157385585 I:0.005335939942501512 now:0.0049187515318303695 :0.07500521486437113 +hundred:0.01261216074494773 ;:0.011559812951247191 up:0.011188945584514266 and:0.008276341804937755 in:0.00791451980659433 men:0.007439659350949102 dollars:0.006817227611747109 :0.006607634345765869 time:0.006474515557986762 him:0.005639527748802992 ,:0.005447840019132789 :0.005354241155177302 out:0.0050744448072325785 years,:0.004739330814500987 made:0.004730288270519497 long:0.004559809020582422 life:0.004438858185989242 house:0.004325471116041864 States,:0.004318680432216576 :0.8714806906711137 +the:0.17027190784407714 of:0.10585557835912704 and:0.07355927771906935 to:0.05486905984958157 a:0.04543746377447453 in:0.03128555052933153 be:0.028704485173100775 was:0.02350529800142253 is:0.02215549335554494 for:0.02077556258358175 his:0.01804639098945333 or:0.016335100594594944 their:0.015847999621030492 at:0.015526727957625254 been:0.011815834631173878 are:0.01139058447814694 this:0.010362020528084328 tho:0.01035635773045807 its:0.01000473355720393 :0.30289457272291764 +the:0.2108228134560488 of:0.06217020871031993 and:0.060545318828681145 his:0.05806920058590434 her:0.04384981773507632 their:0.03439745896024887 an:0.03265995190605837 a:0.02568455693256541 my:0.024280075396876058 two:0.02314604804641828 our:0.021898110625780103 tho:0.020542922347171116 The:0.020104687941987855 three:0.018054289136032055 its:0.01435351089274589 some:0.014206256519068752 that:0.012740455322373126 great:0.012722510885678759 this:0.012621010527608632 :0.27613079524335615 +the:0.12320152609641531 of:0.08923507009977379 and:0.07523384065380043 to:0.06993079707603023 in:0.04016195842777072 a:0.027071300563807604 for:0.02405282743434225 on:0.02349097849469173 as:0.023146400690640855 that:0.02096398439976477 or:0.019660802136182425 by:0.01885215921521626 which:0.015556617604103654 :0.01331849618966573 an:0.013197562478562446 with:0.011782604878471702 is:0.011512611614341828 from:0.011305486742260427 be:0.010629175837746908 :0.35669579936641094 +the:0.07890630989222301 of:0.058084880944973105 and:0.05521960451327574 be:0.04853642257768507 to:0.04668301886664723 was:0.04146377436960755 is:0.030923848575864533 a:0.024207320225197882 are:0.02343718444419923 were:0.019152041012217777 for:0.018224597903154283 in:0.017839126071116627 been:0.014485280266630445 or:0.014390109974460464 on:0.014201150287173201 he:0.014110096034348476 re-:0.013880538140285689 will:0.012278570130174514 :0.012049840108048025 :0.44092628566271713 +to:0.672904633228074 will:0.04198396472482342 not:0.03817655985358568 can:0.020985207072482113 could:0.0203115177825467 may:0.019514011464388813 and:0.018286211728908056 you:0.017244557224231113 we:0.01723666127679092 they:0.014208581060175116 would:0.014014762004286297 cannot:0.01205026166633213 should:0.009899998951683845 or:0.009815099099521562 I:0.009395445231392914 We:0.008379729371696029 who:0.00801945416683423 To:0.008000006182635161 never:0.006460093284718838 :0.032113244624893 +the:0.11919516938815296 of:0.07230453158552728 and:0.05781056740443249 a:0.043018564803886335 to:0.031305092790907506 in:0.020848713353460488 at:0.014270110001066288 .:0.012526810245749479 :0.012413283442322082 for:0.011719122709941797 by:0.010808400946589808 or:0.010404172990115616 The:0.01003576004804544 with:0.009811868184449042 tho:0.009295902015355835 was:0.008924239095331684 that:0.008672304223433876 is:0.0085591147338948 be:0.008335143826716943 :0.5187411282106204 +and:0.13402059245338824 fact:0.04386513062299853 said:0.03927725435202004 of:0.038298859280856114 on:0.034444387426459847 know:0.02907093198252042 say:0.026235573439729456 is:0.02457936742996138 so:0.024509108902515307 was:0.02256870836477333 in:0.022313456480620834 to:0.021864426391444786 me:0.020476617883475275 believe:0.018682784271663096 says:0.015774420828407916 found:0.013489855054873618 known:0.012709676195846458 him:0.012292604822658352 see:0.011474722529163166 :0.43305152128662383 +the:0.1449641844563986 of:0.08710595808597107 and:0.060639991043772136 a:0.038971050768985306 to:0.035497607287402144 his:0.022269846080904755 be:0.02150484315278025 my:0.020367185734705945 I:0.01891633058414471 in:0.01859493769918256 for:0.017350580101599025 was:0.01676359899750709 is:0.015084084537449449 their:0.013269247511876204 at:0.012718929570411921 that:0.01170468572340591 or:0.011400632554895979 it:0.011330438956791117 :0.01130401752938815 :0.4092418496224277 +was:0.23142488303384975 be:0.21380248565406273 were:0.09010204361678623 been:0.08142756137021805 is:0.06569910881460904 are:0.04670847395471276 and:0.03597758873148595 not:0.025516055392238817 being:0.02509579202487414 I:0.020482615190224426 bo:0.016380192962933984 so:0.015148733283882488 he:0.012350783583429514 a:0.010232179562214956 Is:0.009239859505061895 had:0.00890230279375074 they:0.008618495456079399 very:0.007651952781181917 the:0.00706499472394847 :0.06717389756445476 +be:0.19236210273022208 the:0.13453260149987745 been:0.11214468157017879 was:0.05985920733995811 duly:0.04574547813120847 hereby:0.040555365728745144 and:0.035808183402750986 were:0.03549204981032714 is:0.03078718862596409 are:0.029774365048132457 an:0.024488374588669707 of:0.02284365698788581 day:0.021040289934597143 being:0.02079537134390012 he:0.018236300715452233 as:0.016815781400119415 bo:0.013066091099082378 so:0.012021358087504493 have:0.011943453176797195 :0.1206880987786268 +the:0.11919516938815296 of:0.07230453158552728 and:0.05781056740443249 a:0.043018564803886335 to:0.031305092790907506 in:0.020848713353460488 at:0.014270110001066288 .:0.012526810245749479 :0.012413283442322082 for:0.011719122709941797 by:0.010808400946589808 or:0.010404172990115616 The:0.01003576004804544 with:0.009811868184449042 tho:0.009295902015355835 was:0.008924239095331684 that:0.008672304223433876 is:0.0085591147338948 be:0.008335143826716943 :0.5187411282106204 +be:0.18950074903680325 was:0.1725236218192916 is:0.11767597389480318 been:0.10338873718682914 were:0.0479004987769066 are:0.043827744555309286 have:0.04093022194196379 has:0.0366097935265688 had:0.03165782495103052 and:0.02044128508406822 not:0.019245754533573817 he:0.018726530486423407 it:0.017046759142801494 so:0.015706312781784047 being:0.015412337588343126 Is:0.015099990759939695 bo:0.013558616393393485 never:0.009170542119357005 as:0.00745742517987091 :0.0631192802409386 +:0.042121809243109674 and:0.025115839546517717 was:0.01991321458715972 be:0.019361617353387452 is:0.011984115090027172 are:0.011708641305616186 that:0.010720595268890114 were:0.010118875880028138 .:0.008538828059217652 been:0.008214792900146319 put:0.007814765668374815 recorded:0.007169050565739314 situated:0.006726720926511513 it.:0.006648720798510434 them:0.0065998360318737246 made:0.006580774631752311 held:0.006505024562847372 it:0.006354607680120908 succeeded:0.006148044476402017 :0.7706541254237674 +of:0.1643832426663773 the:0.11423361193215681 to:0.0576343437419719 in:0.04645139725823686 and:0.046005036152154045 a:0.03393707829691125 by:0.02650286639406888 :0.018659041370415762 from:0.016800533758725814 at:0.015991056088712315 with:0.014863194950523989 or:0.0145606002472342 The:0.014513352837598697 that:0.013716809649148549 on:0.012078829577430814 said:0.011488958609913082 for:0.011399887658949016 In:0.01098069177984707 Mr.:0.009797709706601708 :0.3450017573230219 +hundred:0.02334136986593815 up:0.005482494641173394 men:0.005366536521246011 Hundred:0.0047587970519216575 John:0.00441808156134956 William:0.004390720675819281 him:0.004016828614280843 ;:0.003997112205305733 due:0.003721199871732 in:0.0036582900032443304 time:0.003637206863828461 James:0.0035594902370151707 out:0.0034878448964120057 .:0.003467980723571515 1:0.0032804584819785204 day:0.0032444781513863933 ,:0.003058139385740603 :0.0030314555521939613 Robert:0.003005471634785646 :0.9060760430610768 +him:0.0478689650855018 able:0.04509587162308282 have:0.04259180339627287 and:0.04176798504364067 want:0.04103078465127416 allowed:0.039126596174939805 them:0.0378666918575206 is:0.03743583862891464 had:0.037341695093764914 not:0.03195572203160995 was:0.03138394010511727 enough:0.028193811987226355 me:0.027966249504266932 unable:0.02774648865115808 began:0.02709296104664355 going:0.025035293042160265 wanted:0.024689030440212232 willing:0.024459350949738702 necessary:0.02171144882175045 :0.35863947186520395 +and:0.05833676590368856 of:0.03885977991655447 the:0.03028727621802224 is:0.027823590402101098 are:0.026235953888861185 be:0.024733832427400723 was:0.023326829734536814 all:0.021992740072142157 been:0.017764407653052743 not:0.014381019465084193 that:0.01257523084658987 in:0.012184840381322828 day:0.0118975485795974 were:0.011056188600209444 for:0.009937861541913928 sum:0.009506570089263451 it:0.009301986194916805 time:0.008500526729167705 work:0.007861904494755564 :0.6224351468608188 +not:0.14818910283772074 is:0.1019871046958209 and:0.07691291693466269 was:0.07142419026987039 be:0.06453342874932635 are:0.049526450978889726 to:0.04686513010348297 or:0.04559825240948296 of:0.04196489291698549 the:0.03828989808314304 no:0.03785398065547311 been:0.035241687098268325 were:0.0224728823204949 his:0.020135673637895486 that:0.01940908859195426 Is:0.01831104402974396 in:0.016502694521565615 their:0.012689306158745474 without:0.01261847536163666 :0.11847379964483692 +the:0.11919516938815296 of:0.07230453158552728 and:0.05781056740443249 a:0.043018564803886335 to:0.031305092790907506 in:0.020848713353460488 at:0.014270110001066288 .:0.012526810245749479 :0.012413283442322082 for:0.011719122709941797 by:0.010808400946589808 or:0.010404172990115616 The:0.01003576004804544 with:0.009811868184449042 tho:0.009295902015355835 was:0.008924239095331684 that:0.008672304223433876 is:0.0085591147338948 be:0.008335143826716943 :0.5187411282106204 +of:0.06461174414818323 and:0.04019429097319048 that:0.03615330690314207 which:0.024665887108982952 to:0.02062541127644757 as:0.018814655227409414 :0.016237215452346434 it:0.014966782818256275 I:0.01402388446923883 but:0.013680573747999513 by:0.011943246863160681 before:0.011822586319153082 in:0.01178269959120991 on:0.011409617308140368 was:0.009408971947999905 when:0.009016355989978426 It:0.008966535697862939 day:0.00896652764043895 -:0.008843616595931589 :0.6428660899209274 +of:0.2306123183769058 in:0.21053640042962155 that:0.06404845424957324 any:0.055610240610612725 to:0.0507742803364484 In:0.04262542469932952 with:0.036287732400998265 for:0.0338194307360127 by:0.03054207994435498 under:0.028405497914193962 and:0.026963380618291097 no:0.02386838545870239 on:0.01761260849736847 upon:0.015158573815019259 as:0.014141361608466586 if:0.013799642182840723 or:0.011462086630532758 at:0.0113818340851702 If:0.011031922818631367 :0.07031834458692598 +the:0.22383933520626317 a:0.10893406848887886 to:0.07932251808331066 of:0.0774157410079591 and:0.07435315977298554 electric:0.03959428029157822 is:0.024816419424129224 in:0.023648206936406273 was:0.01999418619632564 or:0.019238959108495258 are:0.019078639047833894 as:0.01891892952153107 no:0.013869529569749276 tho:0.013692830750815581 The:0.01356679454259523 very:0.012639211844192614 their:0.012362238627391643 will:0.012285378809226588 his:0.011742673448133059 :0.1796868993221991 +most:0.12419701617969556 more:0.10699774619961405 very:0.08650258153125771 is:0.06663272948832978 not:0.057436654535035825 are:0.05395258075423793 be:0.04631852039355427 a:0.045708211559446564 and:0.04288516114050786 as:0.04210946798437315 was:0.03755147035901708 the:0.036520616389258694 some:0.031535849410349155 of:0.03132111746163532 been:0.023488968867942894 so:0.02203076202420265 too:0.020075907917260077 much:0.0185257689468238 or:0.01689379079018983 :0.08831507806726777 +to:0.14401522014784593 I:0.08717805441967116 would:0.08361228383208522 they:0.07250612364846672 we:0.06597598184142542 who:0.05136360986841521 will:0.048581532657812176 you:0.036303803346831635 and:0.03262750567837507 must:0.02681132061405771 We:0.026497479392441514 shall:0.02444461513167911 not:0.023426718145168758 should:0.022766551002372307 may:0.021516097053646 might:0.01661740567775864 They:0.016135791002525445 which:0.015447058681747887 could:0.01476846332748608 :0.16840438453018802 +the:0.11919516938815296 of:0.07230453158552728 and:0.05781056740443249 a:0.043018564803886335 to:0.031305092790907506 in:0.020848713353460488 at:0.014270110001066288 .:0.012526810245749479 :0.012413283442322082 for:0.011719122709941797 by:0.010808400946589808 or:0.010404172990115616 The:0.01003576004804544 with:0.009811868184449042 tho:0.009295902015355835 was:0.008924239095331684 that:0.008672304223433876 is:0.0085591147338948 be:0.008335143826716943 :0.5187411282106204 +and:0.10865410910077054 arrived:0.030076726920567728 that:0.02621531652695486 held:0.017676349336915042 made:0.017660300288016777 State:0.0175709860797004 was:0.016078630402965165 2:0.014145820354672132 Dated:0.012200805362303753 but:0.011477149079893114 closing:0.01143662980140188 home:0.01121905719539624 or:0.011132455689860023 sold:0.010809926244000985 cash,:0.010630556869951992 one:0.01029310356561839 up:0.009981272302525991 morning:0.009812633944087231 in:0.00975595380755469 :0.632172217126843 +hundred:0.053012345556464315 the:0.04037625084929414 two:0.02976489500621575 of:0.023668859371518414 three:0.016887591828908734 thousand:0.015900192702587836 four:0.015611165151890757 and:0.015547403556625749 six:0.014552440834140723 his:0.012114406875958517 many:0.01138018650643034 few:0.01066213152519775 linear:0.010619697380921844 five:0.010462998908880698 twenty:0.010222923849694594 half:0.009987425457378038 fifty:0.009916962843169036 their:0.00954571680164381 thirty:0.008932342583771553 :0.6698340624093074 +and:0.11048289072818682 the:0.08877018929193663 of:0.07494285114919717 to:0.04681718176920317 in:0.04353902283859158 as:0.03261865102417501 is:0.02696344834022029 be:0.024657950227780542 for:0.020856231598101894 was:0.01979385050345378 a:0.019787923801260203 or:0.016549338320391592 much:0.014544597330084614 that:0.014278346151973091 not:0.014018731828241064 I:0.012687400319626625 their:0.012218610011984526 In:0.011961531632941095 he:0.011097948217881091 :0.3824133049147692 +the:0.17742973373523924 a:0.05865928253490279 other:0.055887144645313205 or:0.04201259775327354 all:0.03695434243584756 his:0.034790052956961096 one:0.029337759196949614 and:0.024936307240522 of:0.024076728122538336 few:0.0225271976205619 any:0.02127250886549367 The:0.019487238411407072 her:0.017889011679840673 their:0.017640470726518687 no:0.017096214276538197 some:0.015927914407495816 our:0.014814946727185916 this:0.014143540397958225 first:0.01354255489438471 :0.3405744533710678 +to:0.12022893700269083 and:0.09020394424291768 the:0.08587503820055309 of:0.06450042443224316 in:0.0310058468700829 a:0.017742048521183405 :0.015548046036689871 not:0.01491307651316237 that:0.014112408707955496 for:0.013734482372212283 I:0.013065769926808477 will:0.012848502316304782 at:0.012837991177321897 In:0.012628718855091186 by:0.012491091048660757 be:0.011425930130217754 is:0.0113962101007567 he:0.011342727513475473 or:0.01112522537451577 :0.4219735806571561 +his:0.31524446861210276 the:0.1298629295480383 their:0.09266956123198376 my:0.06540988444275243 her:0.055411049357571754 a:0.04687374553651028 of:0.0317465683512215 to:0.02341546868300162 and:0.017644993442303983 your:0.016702605169566044 its:0.016430459765943723 our:0.0153233539607372 bis:0.014307028992764134 re-:0.012405499583527399 own:0.012181173393362688 for:0.009071602968484124 in:0.008618860926253512 this:0.008306074218109652 great:0.007645477077524684 :0.09972919473824043 +of:0.1486757317475994 and:0.12824825478484148 the:0.0953303823101165 to:0.07605930967356418 at:0.029232486224770177 or:0.016890828087439906 a:0.015461072132712922 for:0.014628206512054789 .:0.014611121463091918 with:0.014324762778063733 in:0.013801124744004594 two:0.013262605953736961 :0.013201102422215052 by:0.01254696761235229 about:0.012314872979596863 hundred:0.01032547181272145 on:0.009811508457198026 W.:0.009341997152143606 three:0.008894379244852217 :0.3420378139069239 +to:0.12022893700269083 and:0.09020394424291768 the:0.08587503820055309 of:0.06450042443224316 in:0.0310058468700829 a:0.017742048521183405 :0.015548046036689871 not:0.01491307651316237 that:0.014112408707955496 for:0.013734482372212283 I:0.013065769926808477 will:0.012848502316304782 at:0.012837991177321897 In:0.012628718855091186 by:0.012491091048660757 be:0.011425930130217754 is:0.0113962101007567 he:0.011342727513475473 or:0.01112522537451577 :0.4219735806571561 +of:0.28767355066866834 to:0.08775711267569858 in:0.08678131196995101 and:0.05160598694501188 on:0.04646139928102899 by:0.04519522654900943 for:0.044547789071328545 with:0.03396756772609607 that:0.033699232901107726 from:0.03075346596941143 at:0.027039283056790858 In:0.021061449543044047 as:0.017514234937992545 all:0.012543839382496166 upon:0.011844431150487573 is:0.00998972746569266 was:0.008814315973987914 into:0.008557199930727406 through:0.007781895704231326 :0.1254109790972375 +the:0.11919516938815296 of:0.07230453158552728 and:0.05781056740443249 a:0.043018564803886335 to:0.031305092790907506 in:0.020848713353460488 at:0.014270110001066288 .:0.012526810245749479 :0.012413283442322082 for:0.011719122709941797 by:0.010808400946589808 or:0.010404172990115616 The:0.01003576004804544 with:0.009811868184449042 tho:0.009295902015355835 was:0.008924239095331684 that:0.008672304223433876 is:0.0085591147338948 be:0.008335143826716943 :0.5187411282106204 +the:0.2727256044412039 a:0.13557520318256383 and:0.09817860631121812 of:0.0671150556377649 The:0.04711926398819983 their:0.038010295925133636 or:0.026172813025241798 his:0.024478110982210036 tho:0.019544483012357623 to:0.018615110107127627 be:0.015843694300616905 he:0.01472750533364153 our:0.013374118600252366 was:0.012051153328861284 its:0.011062731211064224 great:0.010387994664474301 with:0.010285163598573762 by:0.009343802931693453 all:0.009204330978035524 :0.14518495843976528 +it:0.18824444354263953 It:0.16224308142205227 which:0.08846649674768192 there:0.06534241358673389 that:0.04767420376948115 he:0.04657857421774823 and:0.045069710445806384 There:0.031176327820288886 who:0.029161504151776648 He:0.023202595323258343 what:0.01979416986175424 as:0.016356994377417434 This:0.01580177516559825 she:0.011229530727039952 this:0.008600566624229759 but:0.0077924215875666706 work:0.007493411398377075 man:0.0072183800760782305 country:0.006747276985140256 :0.17080612216933086 +he:0.11385567996954524 a:0.11346469576932507 the:0.0823605999782374 and:0.0654675277558926 He:0.05834409767209382 be:0.05013890143771046 so:0.047998268103741054 I:0.044180830127296546 who:0.03958674619381399 she:0.031811542863569985 it:0.029367065654421744 was:0.023518565474839326 they:0.01973851632823503 which:0.01951908925354717 that:0.018839286845291608 been:0.018198615966572202 very:0.01801103454822796 The:0.01508831888860826 is:0.014935555862554758 :0.1745750613064758 +of:0.11304313110486897 was:0.08951113568085453 is:0.0853233932499796 by:0.07410002141070261 to:0.06605064949284997 with:0.06571970595968418 and:0.06194130436046045 had:0.04284005340354618 have:0.04173840380306152 as:0.037320805832824024 for:0.02866213111579517 has:0.028354139762836367 in:0.0254414630228332 on:0.022467750204750014 be:0.0221246631068952 that:0.02158597671045593 from:0.01625306464800084 make:0.014477971037200922 made:0.01385985688537742 :0.12818437920702289 +and:0.15494317776400357 that:0.0998027433189679 but:0.07962521670867516 as:0.033159494416125174 when:0.02993619621610197 which:0.02918448221134621 if:0.016754996024116557 what:0.016297641300677283 because:0.016087682786958695 :0.015542288653582405 I:0.015353614230713944 But:0.015323235500849727 do:0.014786348906629027 If:0.012416103850756494 the:0.010259544458458019 it.:0.009878495015120536 me.:0.009629991478028538 When:0.009083163522887265 And:0.009020796209777983 :0.40191478742622355 +and:0.0894489690471533 was:0.042561507167563795 is:0.02364647638781841 are:0.023551658029559566 them:0.02251845097981523 it:0.02053059579266963 were:0.019950701215276083 that:0.019642402252333838 came:0.019015613534059356 up:0.01845383877205564 be:0.01835480479823979 men:0.017790293551876675 succeeded:0.016013679194540276 held:0.015949077635443565 put:0.015919179756762707 come:0.015758379683531314 been:0.014749915547792142 him:0.014615843393630373 placed:0.013377611714147095 :0.5571510015457313 +they:0.18645158277726728 we:0.06514642901056025 and:0.05053922552292909 who:0.039107098588227744 They:0.03607119277959212 which:0.035930221880383216 that:0.027785414570159324 it:0.02458610631108504 men:0.023846355684045945 you:0.019281704573144175 there:0.01841599002554529 We:0.01559855989015937 people:0.015357720917998943 I:0.01295484257115722 them:0.010435690000174526 he:0.009677850375704646 but:0.008566332566177596 as:0.007458247635009801 services:0.007117896781687841 :0.3846715375389906 +the:0.07563700486034419 and:0.07243497440384708 of:0.06473284021202669 to:0.03364324914201952 was:0.0252182298435968 in:0.02401889374072073 for:0.019720022014661297 he:0.01854977908615749 Mr.:0.017630287925016423 be:0.01650994156290044 a:0.016091149681638876 his:0.01469817135226751 that:0.014697965820473542 or:0.01386004397304294 Mrs.:0.013194310109411182 is:0.012859513710645407 The:0.012607297901590856 an:0.011450438369468192 :0.011213791593806727 :0.5102320946963641 +the:0.11274823966931571 and:0.08329996793360815 to:0.062372082173126384 of:0.05346002906215973 so:0.0299749817344208 is:0.026294180790411077 be:0.020260006954324915 he:0.018124449911071136 was:0.016351044211737983 re-:0.01567649125103956 Mr.:0.014726716630740086 in:0.013675410003338988 for:0.013272602215284653 a:0.012159264338821467 I:0.012040910229586727 or:0.010977326121126826 :0.01035107289213954 are:0.010219913969554774 not:0.009881708091297656 :0.4531336018168938 +and:0.06454739073657131 demand:0.023313300174744492 ready:0.0192991955467307 used:0.018559068069203856 time:0.0167973135366693 not:0.012889415712033305 vote:0.012868664167591082 it:0.01277775949265748 candidate:0.012059490274945432 him:0.011492660117416436 them:0.011389360230310022 called:0.010603763162339089 made:0.01030049958521204 up:0.009942829375404135 was:0.009875709402481388 as:0.009516893763303088 patent:0.00929908628672026 or:0.009178704268878403 but:0.00882338719685127 :0.7054655088999369 +he:0.19927836348873149 who:0.13614943662705392 and:0.07105960601051789 it:0.06146428196390918 He:0.06127933038869252 which:0.058479434627327465 she:0.04025575130812741 that:0.029328520304033722 It:0.026533583827950666 man:0.017062339451047452 one:0.014479310258483915 be:0.013697915078449276 lie:0.01235660162309219 She:0.011438990902806942 ho:0.011052354999387568 company:0.008268893492148766 there:0.006302090811231309 world:0.006200091228311597 time:0.006011067455973757 :0.2083020361527229 +the:0.2784097518344485 miles:0.1628748039490425 and:0.08360740471816686 feet:0.03256112546340774 tho:0.027194041854612404 thence:0.025164725008713036 mile:0.02081698658267029 running:0.019595321243632214 The:0.019277391002291026 lying:0.01696709781969027 bears:0.013543619662294165 street:0.013254102275398609 rods:0.010705576693253402 tbe:0.009103586742419439 of:0.009051010782710511 a:0.008895899236020325 as:0.008633746594491886 or:0.007111849944245737 is:0.006435855409145336 :0.22579610318334575 +that:0.1100736554859282 and:0.07384481742672554 but:0.047743048481800124 as:0.032775385731445894 which:0.021983982058724857 for:0.01895370096900006 what:0.018645475926394726 I:0.018432151410998063 No.:0.01796361452715303 :0.017487471772274877 because:0.014326268248009373 the:0.013859598877141222 an:0.01383007468024941 when:0.01380409001208513 But:0.013294052153909771 after:0.012504688887829721 than:0.011521986067537566 time:0.011234001161443656 one:0.011160017808508827 :0.5055619183128399 +of:0.35568860645147266 to:0.11030246379052999 in:0.0862374654310354 by:0.0743046983603191 that:0.04869001485947424 and:0.04696608601096477 with:0.03202525918686028 from:0.025719738610216984 for:0.025206745509402568 on:0.024221483122211635 as:0.017704003846011594 is:0.014926379795319362 In:0.014461183126942544 upon:0.014145435026550312 was:0.011054820637128416 when:0.011032755942165934 at:0.010299888585324624 into:0.010032881971071802 all:0.008548194150113894 :0.05743189558688392 +:0.09637187464919757 of:0.026419062917390837 it.:0.019020117666730372 them.:0.013672349336615203 him.:0.009180973847333566 .:0.00847613002289355 and:0.007872080172934547 ::0.007337655585448435 time.:0.007195120780259028 country.:0.00690642731861285 day.:0.006452251866515039 years.:0.006335826006648731 ;:0.005996935181163253 follows::0.005967818154111957 city.:0.005837538007718692 year.:0.005825800362969583 work.:0.005790773321413325 her.:0.0056747308652223445 in:0.0053447982718919625 :0.7433217356649292 +the:0.11919516938815296 of:0.07230453158552728 and:0.05781056740443249 a:0.043018564803886335 to:0.031305092790907506 in:0.020848713353460488 at:0.014270110001066288 .:0.012526810245749479 :0.012413283442322082 for:0.011719122709941797 by:0.010808400946589808 or:0.010404172990115616 The:0.01003576004804544 with:0.009811868184449042 tho:0.009295902015355835 was:0.008924239095331684 that:0.008672304223433876 is:0.0085591147338948 be:0.008335143826716943 :0.5187411282106204 +of:0.09546801865179957 Mrs.:0.09518580142953502 and:0.08346366597746617 Mr.:0.06113488757354303 said:0.044245095168346696 by:0.03734272263701361 boy.:0.03516169074445147 girl.:0.029016061480581945 Dr.:0.021577829972773976 Rev.:0.020638738225704768 to:0.01950262654071504 St.:0.015032445439667965 that:0.011860196752744018 Hon.:0.01127271636710423 from:0.011241197014279823 vs.:0.010783324003600464 :0.009943167919623254 as:0.00946604573978986 late:0.009184520270489374 :0.3674792480907697 +o'clock:0.4081309912092998 10:0.0587036780495616 and:0.04415741365255756 o’clock:0.04079130629903274 of:0.03741758267090353 9:0.03716389415694582 11:0.02133171709134314 4:0.015427920953446571 8:0.015360535021025449 6:0.013503932036104368 9:30:0.012045862199936102 for:0.01101602366803185 at:0.010769331293325218 7:0.010369100998636135 to:0.010259778096552648 3:0.009738423344332114 5:0.00952065269036271 clock:0.009482404893261295 o'clock,:0.00942095517487006 :0.2143884965004713 +of:0.21869363196983516 to:0.14744435012419727 in:0.12125931049015388 with:0.05523933255217976 for:0.051782173898845006 and:0.04969346940586666 at:0.032816333313351646 In:0.03275498887997101 on:0.032477011084546925 from:0.02895833009007934 that:0.028852517920775964 by:0.017372713473119465 is:0.015795252978751045 as:0.012633660449307024 was:0.010583936925152589 have:0.009527266867355435 upon:0.00947781388015253 under:0.009464595027427202 make:0.008842314352980794 :0.10533099631595132 +of:0.16363070732084278 and:0.12726529200168904 the:0.10590431801461321 to:0.05234153323723973 a:0.049554391194146945 thousand:0.026778079828481304 or:0.02638228942897352 for:0.024126090905277432 in:0.02348192484109247 than:0.023215148460161487 about:0.020868507256124408 at:0.01681964802131475 all:0.011300224377630046 over:0.010118741806412295 two:0.00975619892842558 other:0.009678113242200944 as:0.009366609834039481 The:0.008144796800851391 an:0.007855146005682597 :0.2724122384948006 +go:0.07986504445292136 went:0.07232641888309962 carried:0.05618058330498188 came:0.045466094377440334 taken:0.04374870873825089 get:0.042079645197348 come:0.03696909205655473 turned:0.03565474113098557 laid:0.03439079260785791 it:0.03324054585284438 thrown:0.029868709540962417 them:0.025584074050865904 going:0.02450961771175027 broke:0.020602315261767676 set:0.019909368715343136 worn:0.019533749273884567 got:0.018714344681872486 called:0.01670814847953952 looked:0.01653924600211652 :0.32710875967961284 +and:0.07895257911471103 was:0.03596317658514438 out:0.024016824392823457 that:0.023672598027062328 placed:0.022844208461019616 work:0.021707439938587154 made:0.020781005318872947 is:0.020224993929329655 up:0.019794182040466738 put:0.018288921183371155 down:0.0171740551508179 interest:0.01663630075189571 point:0.01659978677065351 him:0.016175999448187352 held:0.015562908663841706 Dakota,:0.014616466073415059 place:0.01424333231426501 Minnesota,:0.014067166610364513 it:0.013665465625771424 :0.5740125895993994 +the:0.18382342242452626 not:0.15700352190708397 is:0.1302815310574615 was:0.0792899393278292 and:0.06767732994768301 are:0.031094447847673005 The:0.02812370133610767 that:0.02368142929520094 but:0.020266735616483646 of:0.019913983087201065 Is:0.018846751062951812 were:0.0184649745621231 had:0.0173658935376614 be:0.01676377404808975 have:0.015965722714917426 has:0.014594520380341518 to:0.012657891563552194 with:0.012602943754209141 Not:0.01228679407179544 :0.11829469245710796 +the:0.11076639060148961 a:0.07849534528798262 and:0.07662355077029165 of:0.07260297245149884 to:0.052614458906641126 in:0.02898323381454322 be:0.028619334122366183 was:0.018316043946281182 is:0.016699142604069347 or:0.015571116417843511 for:0.013777377220018703 his:0.013466243388399383 been:0.012200092708878738 .:0.011651566712874907 :0.01138899460054603 their:0.010869189054887483 no:0.010269055828557971 not:0.010112362588368682 an:0.009710495306262912 :0.3962630336681979 +of:0.24771856616623836 to:0.10055514755145552 in:0.09984480279807748 and:0.05814117240642057 with:0.05158849496637837 for:0.04613065771486411 on:0.044432355864291194 by:0.03519649785437645 from:0.03338388255327628 at:0.03070401576666744 that:0.026848878623973782 In:0.02041195271981872 upon:0.015248471773457326 as:0.011599582931726849 all:0.011326016994932605 or:0.008867228292995478 up:0.008407673252508876 over:0.007381477118522736 into:0.006992770039889695 :0.13422035461012818 +of:0.20780576610667692 the:0.12325202013750498 and:0.10424712105894057 all:0.05009537495843532 many:0.04325220295338039 to:0.02907564622645004 these:0.028544707074746097 for:0.026691695714092956 or:0.02460273533246318 in:0.021662322774971488 their:0.02004128970110357 our:0.018346293676527795 a:0.017795736985164557 with:0.01766776417841022 that:0.01738600775699379 great:0.016924027229546765 its:0.016416807880969043 other:0.01513624921122918 two:0.015083383763446012 :0.18497284727894714 +they:0.1422193600349239 there:0.05849232705230136 and:0.05364794518597344 who:0.05060073302875137 we:0.039796496029532724 which:0.03941212764794604 They:0.031471712802734836 There:0.027277972023637694 that:0.026476974477609803 men:0.021156313901298206 it:0.018650113321758758 We:0.01150603832299857 you:0.011134597598392589 I:0.010540813851838039 people:0.010280567277705255 them:0.009160186773977539 as:0.008841656067636882 but:0.007526879745621775 whom:0.007466233559027055 :0.41334095129633414 +that:0.17262354022639093 and:0.12672682608584324 which:0.10321189294043204 as:0.051099540781748165 but:0.047022900651984716 when:0.045505642204383384 if:0.030898841742962202 where:0.025768161893271538 what:0.023915846855159083 until:0.016584129991834753 because:0.015367576487621696 or:0.012795650101859263 than:0.01169144561115748 before:0.011019331681452955 for:0.010874922940694455 had:0.010403571080683904 If:0.010014173144820936 then:0.009650679146506549 while:0.009458321719264995 :0.25436700471192775 +up:0.01678260662963228 him:0.014958587843012195 ;:0.012976121754097106 him,:0.01250406066175801 home:0.01105830457882747 me:0.009946794706853017 it,:0.009649755314083982 Mr.:0.009184510510836751 wife:0.009170602602198433 here:0.007720952205630983 one:0.007718070744266942 man:0.00771651467244854 her:0.007304695552845187 out:0.00724087428419985 me,:0.007119053373728177 them:0.007051360115536842 back:0.007009685998712801 men:0.00696594318279756 man,:0.0068369835241430645 :0.8200845217443907 +the:0.3200430719056405 a:0.12233839942124987 of:0.0979596496918607 and:0.036533530530544873 The:0.031301334451971315 his:0.018096752054561398 any:0.01720986797498029 by:0.015581879739208871 tho:0.015578613294306064 that:0.014436284229359407 no:0.01384796983910475 as:0.01155344696384163 pur-:0.011013814458321192 this:0.00942686459895698 their:0.008973432443362303 with:0.00871355384160489 our:0.008657642034704692 or:0.008308993670479077 to:0.0072461842103033955 :0.22217871464563776 +of:0.4036080212535785 to:0.09984584617778906 in:0.0753202439724013 by:0.06627290067097266 and:0.05681741688055083 that:0.04847516983303608 for:0.04101263969351509 with:0.027308244806649614 from:0.020042153696902775 as:0.01568464784953515 all:0.011381407463268439 In:0.010835000459882452 when:0.008526214926962376 under:0.008188058949373397 which:0.007908111697690845 on:0.0077468772768674666 if:0.007714725399300751 upon:0.007378575730295305 against:0.006911243307579586 :0.06802249995384833 +according:0.04496373672302456 and:0.04017578974028131 is:0.018736889457703715 was:0.016952143229221533 as:0.014956890245403724 up:0.014537223151245917 given:0.013486515049461996 him:0.01296622466289923 made:0.011989132146082136 out:0.01130563256447599 down:0.010476937163371978 them:0.010105360652358328 that:0.009922463672801668 go:0.009768862859451263 known:0.009111914192139095 back:0.008887003475938042 it:0.00849663254798649 are:0.008446211570965902 not:0.008052897697020008 :0.7156615391981671 +and:0.044173368511180755 protest:0.02613509655988135 as:0.022624752035000577 voted:0.021849023444774 be:0.021065007776768507 war:0.019510223632321664 judgment:0.0192042339415177 charges:0.017192436055994572 is:0.017185271269812376 fight:0.016867016193037414 up:0.016687171758418565 made:0.01649912326047745 vote:0.016112285471049356 claims:0.015557024120520117 not:0.015259262439516296 was:0.01393268024712257 guard:0.013057130763846214 out:0.0113726852220453 assessed:0.011280706800501767 :0.6434355004962135 +the:0.39749834532651884 a:0.07520030034269234 and:0.05540858759821703 The:0.03273515726769502 tho:0.030061875542463562 of:0.020144331424922633 tbe:0.014929647509541684 in:0.014268129706664795 or:0.013333166761078447 .:0.013287381914101323 an:0.009000188755386574 to:0.00880680429595084 :0.007943763822197133 Mr.:0.00773879605474787 by:0.007328417831573476 as:0.005922572098978465 for:0.0047526933692942485 that:0.004736121968310169 on:0.004594595720579333 :0.2713091226890862 +the:0.8064385409756575 The:0.0495183619413697 tho:0.030221248935781545 a:0.022553860584358338 tbe:0.0173997243351297 of:0.009298082242259278 and:0.007569065782114283 general:0.005263240012399845 said:0.00369350722827222 tlie:0.0033385532091135548 high:0.0032105942108138705 this:0.0029356665997119077 annual:0.0025631017534511083 great:0.0025011573052650424 Tho:0.0024759628670869786 by:0.0024462922540919503 an:0.0024019241733262953 his:0.0022704533199429558 our:0.0019971987953079605 :0.020903463474545973 +of:0.16957451549723174 On:0.07626097655266223 and:0.07609890697902456 in:0.07017974837807872 before:0.04931265693995024 after:0.04483710401713138 by:0.043934618765263 for:0.04103514055224921 on:0.030464667911632267 from:0.03040685513104606 Upon:0.025807130443227272 In:0.025790218036280257 After:0.02570304407637808 that:0.023197602732376473 with:0.023020575865864822 it:0.021131652265958308 to:0.01982868841761287 is:0.015227643405451923 without:0.01460768075418997 :0.17258057327839058 +.:0.05625870253727342 No.:0.03871282566900317 S.:0.03377995329651411 of:0.02808806341986985 and:0.02696323409500861 lot:0.026647522058728106 street:0.018860037609323074 at:0.015794967897849278 1:0.015627156809328156 the:0.014057518522257567 N.:0.01369483997939014 D.:0.011054136715193324 C.:0.010630228610504966 W.:0.01028243477042049 A.:0.010276518776058103 :0.008864347296972348 8.:0.008711389883291709 2,:0.007903894212966917 in:0.007540496039574364 :0.6352517318004722 +and:0.17956868705395387 the:0.1522250276972514 of:0.1418825531639301 in:0.04016625617087186 to:0.03716738795423158 or:0.03321274088886683 that:0.0317682972263348 for:0.025609214573824368 their:0.019878949658450804 his:0.013659224374811194 as:0.012558900361834081 this:0.01209950028951973 good:0.01165554480323681 no:0.010694038101251593 any:0.010654308278203904 In:0.010649573826714585 public:0.009850987792049803 The:0.009411934753921955 such:0.008664441920080325 :0.22762243111066044 +is:0.1678505792470089 be:0.09164284660221654 was:0.07952574196661563 are:0.0608588584847659 and:0.060062346876683666 been:0.04173633419378638 not:0.038106699016471283 one:0.037615767560322436 dollars:0.028029061986163843 more:0.026374288334168793 were:0.02453639773098164 Is:0.024122378508985527 most:0.022707785512322914 of:0.016617521118779996 have:0.015300634756931428 an:0.011859584384447038 two:0.01181582680172316 has:0.01147232412178832 well:0.011373706041426963 :0.21739131675440962 +years,:0.011244219846488938 time:0.008882161274617746 in:0.008543577446961203 ;:0.008176865856642837 porous:0.00709468490060814 hundred:0.006522156100992782 it,:0.006442646144711248 States,:0.005873955746906458 manner:0.005636242513613943 country,:0.005479624196664403 them,:0.005380555783124355 ,:0.0053213282340232775 him,:0.005116465794074653 time,:0.005012953480321698 city,:0.004996484782641075 and:0.0046864187845840274 dollars:0.004669833782541253 year,:0.00454859238968153 of:0.0044772931635083 :0.8808939397772921 +is:0.1300949053123692 ought:0.06235942008217411 are:0.06072445398663133 seems:0.05697318922100556 was:0.04954471475520722 not:0.048536362204045544 said:0.03881623685409472 seemed:0.03220746110521765 as:0.030923473227594384 it:0.030881869856406088 claimed:0.028226689520969073 have:0.027725540143517465 and:0.027557757709861613 likely:0.02587900806524851 seem:0.02574969309575762 supposed:0.023317446089120043 had:0.02145961764731352 Is:0.017651730366473797 proved:0.01677680343414685 :0.24359362732284573 +they:0.1339461974459378 who:0.06449150759567976 there:0.05964669119660761 we:0.0585849824831157 which:0.04520706527438132 and:0.04286863407622332 you:0.03913729104764804 There:0.03396718801066769 They:0.03209640169845594 that:0.031200974702725145 men:0.019845671685432692 We:0.019418999595623168 people:0.013692363921183908 as:0.010974793792506123 them:0.008386153753557493 these:0.008192396320777473 You:0.006556364269777689 These:0.006145955695672415 but:0.0058114506320729896 :0.3588289168019537 +to:0.15094125400862915 the:0.14476750624045956 a:0.11205837770271336 of:0.09803582666646679 and:0.04886697823802133 this:0.042330290119013424 at:0.034698234654255034 his:0.029610886941730755 that:0.02808081006173417 or:0.023853547205975028 in:0.017441674163543936 for:0.01651525022045766 their:0.015740418059411416 can:0.013243089490251195 no:0.012600289959834872 our:0.01254776701570638 any:0.011640633033868353 tho:0.009913887021829776 old:0.008737749768119482 :0.16737552942797834 +and:0.05751910187395475 that:0.05042486792977466 :0.038478135602546315 but:0.027828327823175368 as:0.025819832602166075 it.:0.025318235432647926 which:0.02073486116284639 of:0.019777265805550892 for:0.01739896906459816 to:0.015638656687946423 them.:0.014514881599115566 when:0.01232256748836462 him.:0.012132811216676913 what:0.011328010672899517 where:0.009040090204176935 time.:0.00883944826723427 it:0.007806490290082564 do:0.0075723850118005875 if:0.007542124731774282 :0.6089629365326678 +of:0.1626704849713745 at:0.13396407238927724 in:0.12586983202876886 to:0.09020002511365385 for:0.07921538303769 on:0.05443502437439595 and:0.04642412651647412 from:0.03886476400984905 In:0.03271557315629189 with:0.027764568600620897 that:0.023746690524475512 by:0.021603442404944117 during:0.018886273402417116 all:0.017116039732691816 after:0.01601293523153083 upon:0.013701958482987815 into:0.010032141486379051 At:0.009159596044040446 as:0.0091590631767839 :0.06745800531535304 +a:0.1658736222362931 the:0.10375913898193058 that:0.05711862833376989 this:0.04843657317722454 and:0.040522340680231896 one:0.0367678895412078 his:0.03350120130441516 I:0.03204774834851551 This:0.027861062723139058 The:0.027687626905475136 1:0.022865304799205746 her:0.019558231207074603 A:0.017638208395143684 One:0.01641358793105579 of:0.013722823873525324 my:0.011981711399663133 every:0.011850697143327234 last:0.009853593836906495 he:0.009786450433004698 :0.2917535587488907 +of:0.13340031416477308 and:0.07583092658286682 the:0.06890389861342465 to:0.05724948256410577 in:0.029930216425456013 be:0.022982530637710143 by:0.020877419543678406 was:0.02006545334985727 at:0.01821726336944076 a:0.016259184153329005 :0.015010223967220598 for:0.013709306203231547 with:0.013474082128528846 is:0.013244250952799469 his:0.01293842547534035 on:0.012362090758321051 that:0.012356051079744012 said:0.011504618670708995 from:0.010952195234519567 :0.4197320661249436 +of:0.20043381336498914 on:0.11650565261615493 to:0.09584245390073172 in:0.06960856137000433 at:0.06716480393078636 for:0.046519352746697405 and:0.04152453920742955 In:0.036023290982455713 from:0.03402525816706823 that:0.025612689057908873 by:0.025371528924218047 with:0.019999181582907515 On:0.01847233030567902 during:0.0158910494366799 upon:0.015272911108203568 all:0.011522211212463187 is:0.00851783076491566 before:0.00836981858665048 through:0.007306373668990501 :0.13501634906506585 +the:0.14530718655183472 and:0.1138737442823792 to:0.08893681060027553 of:0.05780451296578933 I:0.02393455540304838 w:0.02021715532448241 not:0.01864317235856588 .:0.01821063142255219 The:0.017951791488276095 than:0.016112413960092213 as:0.01542989400067927 her:0.013820755004622218 un-:0.013177424382424184 for:0.01311364275835587 tho:0.012901702618704125 or:0.01270127238967718 -:0.011055011109480994 will:0.01039824464229042 his:0.009827921447696888 :0.3655821572887729 +made:0.0999812034390529 and:0.06680208263369662 caused:0.02435411478715239 shown:0.02379785223577525 up:0.023253655008919294 ed:0.02312002180398423 out:0.022293807888227747 taken:0.021988971765594088 done:0.02128782706813444 given:0.020283609421760777 paid:0.017098570970207227 owned:0.01708227903067019 that:0.01698438626809451 or:0.016145946252097726 him:0.015808363688274 followed:0.015366441255538056 appointed:0.015126279845513936 held:0.013990473525433292 approved:0.013949758860964168 :0.5102843542509091 +St.:0.08105910590361766 and:0.04561823559013204 of:0.037832411926257886 the:0.021887251772771718 :0.019254089239374314 to:0.014084275539182593 in:0.013390125956112988 that:0.012671564175444266 Mr.:0.011521128874112264 by:0.00945749824060616 .:0.009358531425044147 Mrs.:0.009352919100584898 a:0.00848715534393582 at:0.007203195884180535 which:0.007159597071109239 1:0.007009209943656156 No.:0.006639459190441005 Miss:0.006302104036389994 for:0.0052251411129801105 :0.6654869996740662 +the:0.09804089619651123 and:0.06530180135029408 of:0.06418405323498293 be:0.03974765257897012 was:0.037185049171706515 to:0.029572899917916763 in:0.02616362838488027 for:0.024251894002260545 is:0.02394312645121289 a:0.018888265772708593 are:0.01738322911794913 their:0.01618298488429148 his:0.015891474831404573 or:0.015641446853637938 he:0.0153287135961054 were:0.01477053059225313 been:0.014710399487904544 that:0.013704025687033956 dis-:0.012904205512106333 :0.4352037223758696 +and:0.15439166931953335 of:0.0819608321029696 be:0.06386128211239975 or:0.05087573560605854 was:0.04289378446242813 to:0.03541356336965484 been:0.03496317551287791 has:0.03334767727634973 is:0.033229214047053514 have:0.031654716621734566 thus:0.027939288259414972 had:0.027156079605339806 are:0.024811169997293468 day:0.023249883782377374 were:0.019478326011859372 the:0.018842691517338674 so:0.016008826446566506 not:0.015781945426393676 well:0.014081991521028119 :0.2490581470013281 +carried:0.16826947115196642 put:0.05741067393840758 going:0.04600001895109405 called:0.04400986876227731 relied:0.040942376675057277 brought:0.03311190949188885 went:0.0328806085264124 was:0.03097696494518386 go:0.02969548804572967 and:0.02966424668842598 taken:0.021152664108894024 came:0.020976535393701597 goes:0.020612322481112343 placed:0.020275420015092253 work:0.01950833442185758 made:0.018782588989550007 set:0.01777006310933752 agreed:0.01728371296397664 held:0.017053403444933866 :0.31262332789510083 +north:0.13136692319814 east:0.06418706041446576 south:0.06087362328130672 hundred:0.037163834897206045 2:0.01950625013470462 3:0.0190006264306592 quarter:0.017848791508192064 degrees:0.01662433956121034 street:0.01578219910321444 feet:0.015102820829289317 1:0.011379015037600993 chains:0.011061083337130208 west:0.010883803173815841 4:0.01046035976142558 5:0.009899893492840896 North:0.009748054246139568 7:0.009160258931493918 6:0.008581749632796915 side:0.008570392642680813 :0.5117989203856868 +the:0.12663913471710941 of:0.08763435295785911 Mr.:0.07881748043492631 and:0.04733322442026294 a:0.031461224588867666 to:0.022908520920839677 be:0.022601514153867464 as:0.01904647829266081 was:0.01897997767236673 The:0.017722539903590264 his:0.017533481198449292 I:0.015050498921475515 is:0.014791682469418825 he:0.014709016658059312 or:0.01376619530911128 .:0.013347841950202744 it:0.01279507423329066 at:0.01262339552257735 been:0.011881590904687208 :0.3993567747703774 +of:0.23317153433495663 to:0.17133149511036638 with:0.0907749404896063 for:0.059799222007629084 by:0.05116688950914463 on:0.041146467936827025 upon:0.03608742761136156 in:0.031125030436027407 from:0.01809685513447502 among:0.017715565952712318 against:0.01667514886904106 about:0.012039848917147825 at:0.012013365374524597 before:0.008714819098678267 under:0.007992053909181717 around:0.0077995576114450816 over:0.007552543756214745 give:0.007193567346730174 and:0.006943621622312303 :0.16166004497161787 +the:0.23693260214658407 and:0.12125870879261244 of:0.06703131232547516 a:0.04910842274350587 to:0.041367011772554765 in:0.025262378031741205 or:0.018780881140405745 The:0.01867662447391642 an:0.016399255200939884 that:0.015882581261122252 all:0.014957349168044955 are:0.01281057566027264 tho:0.012431299285487958 be:0.012331758761817399 with:0.011626584128375047 other:0.011413766547177873 for:0.010975166272110296 which:0.010904247891307988 as:0.010871296323289648 :0.2799781780732584 +of:0.2170586878699252 that:0.11208550671232723 and:0.08439038111576724 to:0.056899583878808876 for:0.05054426719272115 with:0.05005352129781212 by:0.04827784431296681 as:0.03524609927247113 in:0.030517439571654245 all:0.030462378723786796 under:0.02820112531228202 is:0.01950821185697657 when:0.019026219052800643 from:0.018832890840753336 but:0.01555330522240437 which:0.01507468035154425 where:0.01448831874140226 on:0.01444476102115649 upon:0.011788457871427547 :0.12654631978101175 +the:0.11919516938815296 of:0.07230453158552728 and:0.05781056740443249 a:0.043018564803886335 to:0.031305092790907506 in:0.020848713353460488 at:0.014270110001066288 .:0.012526810245749479 :0.012413283442322082 for:0.011719122709941797 by:0.010808400946589808 or:0.010404172990115616 The:0.01003576004804544 with:0.009811868184449042 tho:0.009295902015355835 was:0.008924239095331684 that:0.008672304223433876 is:0.0085591147338948 be:0.008335143826716943 :0.5187411282106204 +the:0.12121563079640006 and:0.11208314826035669 of:0.05459264538620661 to:0.04511926657045845 a:0.036635899060841935 or:0.029301836091598664 be:0.029254454609095676 in:0.02656668655009123 for:0.024893050399957824 as:0.0200638762929636 are:0.015805540778768095 by:0.014140695296062098 that:0.013923076574499206 was:0.013653059080879331 all:0.013605369978749072 he:0.0133888877034948 their:0.013013949080583185 is:0.012778491107272742 any:0.012120645862690214 :0.37684379051903055 +and:0.06317916895143688 was:0.03089079697380977 is:0.020044819943736053 be:0.019406329289829806 are:0.016631216139614186 that:0.015910745835586493 it:0.014132589635136123 been:0.013429954470292457 made:0.013153338042273357 were:0.012494049396038097 or:0.012369181282419555 them:0.011608721240324167 up:0.01101461536327863 him:0.010833186604515583 as:0.010718511743974049 succeeded:0.010682665877813333 engaged:0.010592681714621757 not:0.009777868089593193 now:0.00948198968071834 :0.6826475697249881 +the:0.1783755388143877 :0.04277635355395741 a:0.0359188938050648 of:0.025894298127640665 and:0.02155459938834402 The:0.01547044432160336 .:0.014345648376068247 tho:0.013769050459284674 to:0.011844988405410454 in:0.011150104848953405 :0.008853463173922967 our:0.008413060579817392 tbe:0.008188661369497672 said:0.00814636610422551 that:0.008117889110680601 at:0.007266384499273825 from:0.007209803028193114 A:0.006611772188375801 for:0.006143528721206589 :0.5589491511240918 +Board:0.06316852107798475 matter:0.055076625357115154 number:0.043218184472509164 out:0.036001107693590044 kind:0.03203678806200994 want:0.028394555105887148 means:0.027737841358559938 sort:0.02763990709854283 line:0.027107298310135367 amount:0.026041314653327114 place:0.025014364067483447 system:0.02242934555781046 deal:0.022240784404669155 cost:0.022095619647671847 state:0.021760367128850874 purpose:0.021233426222133207 way:0.0210307129438977 kinds:0.01883616762734763 plenty:0.018215857483181812 :0.43972121172729245 +a:0.2990134339271007 one:0.20615258525000474 every:0.10280411072361673 the:0.07957171445213453 silver:0.0358268491420416 of:0.02809131845107519 some:0.023636656100285335 One:0.018143260663270523 other:0.01645718408995802 this:0.016219663593545753 any:0.014791288638459915 last:0.014107237716425384 such:0.013349102662355996 first:0.0117373396823838 Every:0.010603656782748327 ono:0.01050889946187738 each:0.010091246104153585 same:0.009855123409527027 many:0.009233184475915457 :0.06880614467311998 +a:0.1936970070190579 his:0.10240664599141347 per:0.07565079845446479 the:0.057990680164505426 their:0.0512676138342245 in:0.04743055100345012 to:0.033675500410419425 her:0.02983879651415721 of:0.027797564280347138 one:0.02675373360158486 our:0.023805547531537335 your:0.022671705522766362 half:0.0208126760038529 my:0.020017760741897685 its:0.019093848194524417 and:0.01674815259445452 In:0.015633559865745748 for:0.013614412494644065 by:0.012705661152152213 :0.1873877846247999 +it:0.272467754997977 It:0.1844036183710179 there:0.08056674888619612 which:0.05414537302691154 he:0.05091726117552267 who:0.04466408655772627 There:0.034099395923640335 and:0.031228408493381047 that:0.022773093979914668 He:0.01919383325975431 this:0.017871116969868754 what:0.015133944162408 This:0.014639184079606841 she:0.01049304078427817 man:0.00741784184456112 work:0.005353003461480561 but:0.004761157532951907 country:0.004425989123443132 She:0.004258614193458347 :0.12018653317590128 +of:0.3655797990425763 that:0.15168766298919076 and:0.051205935965176926 to:0.04545784600932298 all:0.04199872663867943 which:0.03659616207018458 by:0.03296047307694613 for:0.02805613700251289 with:0.024811494150146548 but:0.023925533939338425 if:0.023488272213871553 If:0.021351528203702234 as:0.019341845104911878 All:0.018266351746786265 when:0.014304076171995563 among:0.013292890628470813 from:0.01302463658043517 in:0.012354671666188321 on:0.010898639157887562 :0.05039731764167567 +of:0.09129790931378902 the:0.07369883040827747 and:0.047842263382354346 in:0.04189055351593407 to:0.04045875475680249 a:0.03542341257202578 be:0.02020462051672066 for:0.01979292654746225 was:0.01760256398103379 at:0.017380150555488715 is:0.014984483003968216 with:0.014047653760730413 by:0.01374644383819499 :0.012670486581795598 In:0.01200961464556976 or:0.011563835749786333 from:0.011391516893522809 are:0.011273104484969465 that:0.010755276030689069 :0.4809655994608848 +and:0.1531008102953297 the:0.07930106428082714 a:0.03335289749923896 to:0.032759142386420866 will:0.03121252791364417 of:0.02398239157438738 I:0.019711632734300908 he:0.017927068689496013 one:0.01392367589397067 would:0.013021290831476141 his:0.012954183450859753 more:0.01274359317125524 that:0.011905141898074066 or:0.011661822003234361 for:0.011608591565635611 all:0.010185440381204943 which:0.010095416495383262 an:0.009979259805512973 they:0.009935428034349015 :0.47963862109539884 +of:0.2160542681996873 to:0.1030132333889131 on:0.08143619786812314 in:0.07628832550137725 and:0.07317015748697073 for:0.06324671514414508 that:0.04536475942728262 from:0.03881105579953019 by:0.03814234388697495 at:0.03768377457801978 with:0.03490064920478747 In:0.02520084764759928 after:0.016015649738189773 upon:0.015964119995537023 as:0.013894451717232812 all:0.01142093823428871 through:0.011352112261110638 into:0.010757994332987733 over:0.009268997585890365 :0.07701340800135206 +of:0.09129790931378902 the:0.07369883040827747 and:0.047842263382354346 in:0.04189055351593407 to:0.04045875475680249 a:0.03542341257202578 be:0.02020462051672066 for:0.01979292654746225 was:0.01760256398103379 at:0.017380150555488715 is:0.014984483003968216 with:0.014047653760730413 by:0.01374644383819499 :0.012670486581795598 In:0.01200961464556976 or:0.011563835749786333 from:0.011391516893522809 are:0.011273104484969465 that:0.010755276030689069 :0.4809655994608848 +the:0.5757406307175965 a:0.14415317478424503 The:0.08041373572251585 tho:0.030335000752753357 this:0.012786416564405033 first:0.012656435641810806 and:0.011551878398797445 tbe:0.011121205749663202 A:0.010170997240400768 one:0.008619320520454277 two:0.007596830469639542 any:0.0069951921016443794 great:0.006379860885878028 his:0.0060865912286175985 old:0.005983844465243406 whole:0.005748504061920663 second:0.004378215998769247 every:0.004289203498813665 or:0.003997527541350098 :0.04999543365548106 +to:0.1715402587018787 of:0.16392573497121843 in:0.11324168022946027 at:0.06212422532029334 and:0.0513369552470076 with:0.04549572895203476 for:0.043563485457407174 from:0.03781949579708289 by:0.03708949907134926 on:0.03588563315203351 that:0.03522357909299679 In:0.022027780585030354 is:0.021109712561506986 as:0.01771773357625088 under:0.013414503872153113 was:0.013039512365976696 upon:0.013031569119017719 not:0.01038699029293661 into:0.010300039643933459 :0.08072588199043142 +and:0.17232202883979883 that:0.1485611569292833 to:0.06153267409847019 which:0.05161069155067142 of:0.032117074699384976 said:0.03180400692552456 was:0.025354987862620894 it:0.023755628215030467 but:0.023531799031425417 when:0.021283538391794254 I:0.020834420029424983 as:0.01817531530646132 for:0.016235614163559196 is:0.014927434107452071 will:0.012120141682756526 in:0.010627532436170439 if:0.010503590953551713 or:0.010299328957544119 than:0.010137666114847418 :0.2832653697042279 +of:0.13257652946245715 the:0.1043947608270189 to:0.09040409365381141 no:0.05601482808750312 a:0.05264660157421552 his:0.05169624266162998 with:0.050697292698661925 in:0.04485293875206853 without:0.04032964396126627 their:0.03950421178506619 good:0.03749656503292681 by:0.03498475415671495 not:0.029696806108625993 for:0.02828212452480684 an:0.026898532628394475 and:0.02151074031259705 own:0.021293786714038927 its:0.020496279108195643 her:0.01982887732410249 :0.09539439062589783 +one:0.1028303141280697 part:0.05963429477052991 out:0.04766456937681193 some:0.031418679026461914 members:0.030764490253327767 side:0.029940657362655835 portion:0.022063658796890564 office:0.020457735219956013 member:0.019726706386316174 end:0.019666887540649894 tion:0.018667441728710307 parts:0.016814747270460957 people:0.014112771422418794 all:0.014072739582212475 any:0.013183573287639892 One:0.013083578354183906 that:0.013024335602903442 account:0.012482348155001894 many:0.012077825070275192 :0.48731264666452345 +of:0.13373932980365047 the:0.11753331617308674 a:0.0683738990265806 and:0.047440218000073454 to:0.04742796656178821 in:0.04032552877058028 for:0.024658393386945907 by:0.021931966296783064 as:0.016486712049805428 at:0.015569328392617954 that:0.014536359524549434 or:0.014439010258174834 :0.013457456284380666 be:0.012059268194194424 The:0.011440728816650073 their:0.009905414458303643 with:0.009523295945021805 from:0.009377443692200586 tho:0.008634197479463654 :0.36214016688514883 +out:0.05941904963054598 one:0.054824042063606755 some:0.05247794090323687 all:0.03926190883783565 part:0.035496978464792696 because:0.025099630466577632 account:0.024761806092616793 many:0.023799186613584284 and:0.02140242809025699 that:0.01934844095643571 portion:0.019105006248878457 value:0.018257503974032613 use:0.01686640358385487 time:0.015610548615003978 amount:0.01525203957993562 tion:0.015055978834802522 cause:0.014538196289420737 any:0.014448371559742294 members:0.014218034247347602 :0.49975650494749196 +able:0.05173860365664176 and:0.04718074010311596 unable:0.038815377384788165 enough:0.03726629187712713 necessary:0.037187521003356205 required:0.03252773315001022 as:0.03228224354434079 him:0.029902433503330928 right:0.02774728904889 order:0.027299671967657823 attempt:0.025133866740584952 them:0.024542529645721272 began:0.02135735835743795 time:0.02135304587800752 made:0.020798639992028935 is:0.020469806842797082 have:0.01885659847547616 ready:0.018641544109879987 sufficient:0.01816189372750555 :0.4477368109913016 +the:0.30596846841325626 of:0.06686347645115347 and:0.049379173609591966 a:0.03639868188093658 or:0.023183250494670512 these:0.023165878908511107 The:0.022085671802193778 two:0.019229315612347326 any:0.017773358387152414 tho:0.014434803312566873 that:0.013164395158623346 other:0.01283545346364003 his:0.010324864792344844 for:0.009255413293017 with:0.009251658854781544 those:0.009177337684737613 their:0.009121459206347209 These:0.00881456334992225 many:0.0077587285344345195 :0.33081404678977133 +in:0.1658522923682008 to:0.12286827664772897 the:0.10793145629082987 take:0.07983014309706904 his:0.0798176354928345 a:0.07483291833688832 In:0.053311353032961264 took:0.036402272000010207 and:0.03133569586582364 of:0.02358069248828796 have:0.02236958386328017 or:0.01979404522877253 not:0.019090682498441796 their:0.018585942318705796 my:0.018242898830699312 had:0.017514848543254403 no:0.01748130243055735 her:0.01597202508804684 dis-:0.014319885770279168 :0.05986604980732809 +as:0.06747522533468144 able:0.06718515921986937 right:0.06362118366438392 enough:0.06240392767029611 and:0.05243838409250239 him:0.03692947865387776 willing:0.03568709957026791 time:0.03537810612943413 necessary:0.03131234490064801 unable:0.030457724927744234 order:0.030373222146934505 ready:0.030164683502125544 is:0.029845542373337985 began:0.02807136355086848 power:0.026896610019924695 trying:0.026410887071078432 going:0.025705196725414478 them:0.025330619921989882 made:0.024038289224990562 :0.2692749512996302 +Mrs.:0.0788330208470811 No.:0.07299391759496555 .:0.0533554170155836 Mr.:0.05329212307171717 and:0.051061112101391914 the:0.03899552317569099 of:0.033449231271880146 at:0.03121661148609469 said:0.030813582409667896 deg.:0.022849012029055333 A:0.020963891759638854 W.:0.01857990578536545 by:0.016433153057493155 E.:0.016019412413763864 Range:0.015562385156937841 :0.015044249495063805 D.:0.014056678355975355 E:0.013602842147630365 was:0.012566262236434107 :0.3893116685885688 +of:0.3118732348388374 in:0.18486894380918947 to:0.11292338563278198 on:0.07109612814391669 from:0.036311262882372256 by:0.033608254126583914 at:0.030856141609490066 with:0.02419260092788588 In:0.02418239459263629 for:0.02401920936809717 into:0.017846561125230087 and:0.01566285484150561 that:0.01174605406583635 upon:0.010185641521614117 over:0.00908266744629916 through:0.008136725527231067 across:0.006713152553022535 before:0.006224430179990241 under:0.00593133658807392 :0.05353902021940584 +and:0.09172698244494827 to:0.04518590444892743 that:0.024134825716435656 of:0.02108507417303315 as:0.020704217284604913 at:0.015620146192896948 will:0.014579071980845107 which:0.012312694341004703 is:0.011368710821976562 was:0.01024432741185027 :0.01003892080873735 the:0.009558057440998118 it:0.009147887887211525 also:0.00861651307955226 are:0.007168535442468059 by:0.006540625499388908 not:0.006287866139964076 from:0.006177899852061874 shall:0.005814460280114724 :0.6626872787529801 +of:0.28767355066866834 to:0.08775711267569858 in:0.08678131196995101 and:0.05160598694501188 on:0.04646139928102899 by:0.04519522654900943 for:0.044547789071328545 with:0.03396756772609607 that:0.033699232901107726 from:0.03075346596941143 at:0.027039283056790858 In:0.021061449543044047 as:0.017514234937992545 all:0.012543839382496166 upon:0.011844431150487573 is:0.00998972746569266 was:0.008814315973987914 into:0.008557199930727406 through:0.007781895704231326 :0.1254109790972375 +in:0.6161734228945358 In:0.20073757229665057 the:0.03428766967909733 an:0.027474207271031913 to:0.015176400799810667 iu:0.013498413700898302 of:0.013300890744015404 and:0.011198430308314147 this:0.01086855764279594 from:0.009370725156625615 or:0.0067758742086250386 "In:0.0035407285600324665 lu:0.0032048032245355408 by:0.002906028759942487 such:0.0028588992137417546 into:0.0026821665757659477 for:0.002631672612183247 good:0.002421621510632343 By:0.00237078005106615 :0.01752113478969928 +many:0.10166437817025568 two:0.09208985681791591 three:0.07522968542813475 four:0.07416837537553371 of:0.07354401097200819 five:0.058521007373421044 for:0.0547164523074433 few:0.04434534340532633 ten:0.041054947063415635 several:0.039092556204660914 the:0.03806455455003052 twenty:0.03673846571457529 six:0.02959488836045203 thirty:0.02535370500223667 seven:0.022457503373003028 eight:0.020470680727733465 hundred:0.020447555888590423 forty:0.019379579779059568 fifteen:0.016240887822330186 :0.11582556566387334 +to:0.14374809859259696 and:0.11355455020774387 not:0.03532870884657481 of:0.03399747446069192 the:0.03176920539931161 in:0.022405820665031505 or:0.020616671188955618 would:0.01923768178336098 will:0.016985851751742952 that:0.016128229153886953 I:0.016033641711643218 who:0.015196630861241015 had:0.015181801752177664 it:0.013149217868773119 he:0.013107614140299796 by:0.012735170537371191 have:0.011828528691450383 was:0.010247861086450618 as:0.010239610790122193 :0.4275076305105736 +the:0.18872290321856772 and:0.07990884171328741 of:0.07134501066066128 The:0.043246894817858254 these:0.022760575981405146 that:0.02263940423567282 in:0.01853667557064991 to:0.01558712617289525 a:0.014599616906527581 his:0.014552935584560694 These:0.013550115619968908 which:0.0131780081149281 their:0.01277887611983455 tho:0.011643762153399977 :0.011409164010629988 as:0.011296526840701347 con-:0.011221217959193217 -:0.010832723607073007 for:0.010425522418632843 :0.40076409829355203 +a:0.3243834845449991 of:0.1869148241843331 the:0.13004149829959888 in:0.08202004350216138 with:0.041696744209932 and:0.028077761471405362 for:0.02526235896151284 to:0.021119166683851453 make:0.01622168088785665 In:0.014653400730987807 very:0.013312747016748502 their:0.011722052589208953 A:0.010681206217462963 by:0.010207718825850118 The:0.00982098101104527 no:0.009213447655340665 any:0.008743581168757335 or:0.008139782526511624 some:0.007919766872848994 :0.038847752639587035 +one:0.1028303141280697 part:0.05963429477052991 out:0.04766456937681193 some:0.031418679026461914 members:0.030764490253327767 side:0.029940657362655835 portion:0.022063658796890564 office:0.020457735219956013 member:0.019726706386316174 end:0.019666887540649894 tion:0.018667441728710307 parts:0.016814747270460957 people:0.014112771422418794 all:0.014072739582212475 any:0.013183573287639892 One:0.013083578354183906 that:0.013024335602903442 account:0.012482348155001894 many:0.012077825070275192 :0.48731264666452345 +and:0.10470755611842937 that:0.07651067141387433 he:0.07354113494750798 it:0.04563727490439049 who:0.0393121869694576 which:0.03741019661014519 It:0.03292739495178352 as:0.026175533947048916 He:0.019166627105540297 one:0.012533810983487203 man:0.012350163356904762 be:0.012247047607971292 now:0.010939923407401136 lie:0.0098300133719216 she:0.009778778555170555 company:0.008594458397199316 this:0.007957573365840624 land:0.007890859433482474 party:0.007838847769773075 :0.4436499467826702 +a:0.25567570818614155 of:0.10733915954048244 in:0.09035113273448914 is:0.07408607147746611 and:0.06468411170105515 with:0.049670567933840136 are:0.04165813793224899 that:0.04094815646780151 was:0.0318470286492809 the:0.028712451131411774 as:0.027979992461117452 by:0.024388581465294774 be:0.022959062204219505 for:0.017875797423373297 to:0.016226963786624686 In:0.013771474863809552 those:0.013520589538648153 Is:0.013288077023506905 all:0.012534192746156478 :0.05148274273303156 +a:0.32989481294930467 the:0.21997648107735362 and:0.04520884124551925 no:0.036911422079001374 of:0.03320758540606415 to:0.03257952825420363 The:0.027646564581292936 is:0.020598196198474736 be:0.01954853694181345 his:0.01771480988613833 this:0.016869162164336007 their:0.01675110823466017 any:0.016659207958127198 or:0.01581775177567821 that:0.01358905907158182 would:0.013377155023362714 its:0.013366371900270752 great:0.012672339918988654 tho:0.01230211987697191 :0.08430894545685642 +to:0.22853837332549462 will:0.14651787603526975 may:0.103799032492861 can:0.10308453052596096 could:0.07142877751543802 should:0.07008521863182254 would:0.060218908966719296 must:0.04897573273286858 not:0.042271224987002254 shall:0.036985040543662945 cannot:0.024899587742062416 might:0.02071082161574004 never:0.005547175823783435 it:0.004316832614098622 and:0.0037083548891121134 probably:0.0024419679098461634 also:0.0023307266738761875 hardly:0.002262226836112453 only:0.0022588485487178636 :0.01861874158955069 +in:0.34066052960361504 of:0.16248166722907567 In:0.07752665355760313 for:0.05560761204516588 on:0.04762412819490469 to:0.029637255084167865 with:0.024349722105933374 into:0.02408183397577112 from:0.022242277932082225 at:0.021428061832871433 by:0.01897859454031912 and:0.016870566837167655 that:0.01327367884633587 upon:0.012956621680772428 through:0.009931775091746685 or:0.007176863669729136 iu:0.005702942267484825 over:0.005458250765379983 after:0.004811602599625953 :0.09819936214024792 +the:0.39749834532651884 a:0.07520030034269234 and:0.05540858759821703 The:0.03273515726769502 tho:0.030061875542463562 of:0.020144331424922633 tbe:0.014929647509541684 in:0.014268129706664795 or:0.013333166761078447 .:0.013287381914101323 an:0.009000188755386574 to:0.00880680429595084 :0.007943763822197133 Mr.:0.00773879605474787 by:0.007328417831573476 as:0.005922572098978465 for:0.0047526933692942485 that:0.004736121968310169 on:0.004594595720579333 :0.2713091226890862 +the:0.17518442120096295 this:0.10173592664237109 of:0.09901447335742455 to:0.08598172755809969 at:0.06845323045751239 his:0.06568891987866977 their:0.06283137124565767 a:0.04815885759462508 or:0.026081256852314723 for:0.025808122887409184 our:0.023685180255959584 and:0.023120803077933766 in:0.02292500392030515 day's:0.02096754919438362 hard:0.01953368425100468 its:0.019244675393979376 my:0.014784763580350253 tho:0.013147076023805389 her:0.012288470820244776 :0.07036448580698632 +of:0.09138380317216992 the:0.07958988722129345 a:0.06634405706409473 at:0.03781446768432878 and:0.03035779479960828 for:0.02460729221386139 that:0.022065287920564183 to:0.02107046981463791 in:0.01733523362613934 said:0.015403182999826149 .:0.015269789697636092 :0.010613879484573863 from:0.01051192611511161 by:0.009104062000120927 this:0.00683121805655168 :0.00661676705577572 all:0.005233837334660376 his:0.005012219457496774 do:0.0049783247901830545 :0.5188564994913657 +the:0.16351676733681442 and:0.1320889879483174 of:0.09513381235640546 to:0.03229699506297686 in:0.031784817003177236 or:0.028080402190604994 all:0.026057951304671385 their:0.019548694514661572 a:0.01869116802129208 many:0.017510697528295774 such:0.01628642884770151 other:0.016144586505040064 his:0.014933392352173338 as:0.01330432681928269 that:0.01249304456398631 for:0.012122501606344599 these:0.010667374151043657 tho:0.009749366099097554 be:0.009744707781769469 :0.3188439780063437 +the:0.18246182347385148 of:0.11412749476548241 in:0.054539960131784596 at:0.03587885482656694 and:0.028750095344137274 a:0.028006841268250728 by:0.025706689522827286 to:0.01845607873959443 on:0.01818161526793113 :0.01669827242798459 as:0.014326168315662479 from:0.012387083765747852 In:0.012247591227637225 tho:0.011841120293743955 that:0.009025998911814895 said:0.008522501172730705 The:0.008026842201998853 with:0.007775610195055372 for:0.007702502904339181 :0.3843368552428586 +feet:0.0900437054152876 went:0.08176501964638591 go:0.052831708380405074 back:0.036920008080377716 up:0.03204982023824228 and:0.03168752921590009 according:0.028772647472059563 came:0.02742741738818408 down:0.025756239197864437 them:0.024879157908891846 going:0.023500864955679525 right:0.0223618936840439 sent:0.021612408577419744 him:0.021329553169435685 come:0.019721185894831246 brought:0.019436253387482654 as:0.018730162901676763 return:0.015808009729315037 subject:0.014371477375883887 :0.38999493738063296 +the:0.09868373883938258 and:0.07480453094193343 of:0.0589114817501612 to:0.04097910657897817 in:0.021158790794043262 that:0.019069334359151844 said:0.018742946492478332 for:0.017316364536936867 his:0.017177121694088426 was:0.016182606169468622 will:0.01591288197902934 he:0.015114551865358882 or:0.014845495585184915 a:0.014513966096661732 be-:0.013853328473103959 be:0.012881045636009362 :0.01244603010237448 is:0.011856827412481646 dis-:0.010720055582638647 :0.49382979511053426 +the:0.3128584694701043 this:0.04372701083462978 a:0.039133310404243074 The:0.023054466711945977 said:0.02254043316944548 tho:0.02202757291256947 of:0.01598689048690971 every:0.012848354496854281 tbe:0.012446317025301563 for:0.011884513341926202 in:0.011279060530660398 A:0.010245325620572397 and:0.009822890089569068 that:0.00900454857380189 our:0.007735441567890266 any:0.00753504957746214 York:0.006934936132417121 new:0.006901548670593916 his:0.006749760953789311 :0.40628409942931365 +the:0.17471479766459344 of:0.12715531738491267 in:0.10035301667951796 his:0.0720120402917959 this:0.05800890225605656 to:0.04555723390386209 for:0.041246745857703486 our:0.01962316084686516 In:0.017764164025670322 said:0.01725770468752308 an:0.016937838360880426 that:0.01415664827267361 their:0.013385317850264271 and:0.012964348395658118 my:0.010993009251243057 Clerk's:0.010874322519707151 from:0.009922839049120308 good:0.009659010181145448 by:0.009433152948789792 :0.21698042957201713 +and:0.13494966609550382 of:0.07316641737364253 to:0.07075541455588646 the:0.058493680665523205 in:0.04957317167084668 or:0.034218196852765226 that:0.032957151083144585 for:0.023740081132267728 on:0.02372525113826427 in-:0.022059642840300344 which:0.021050432068915235 :0.019992650391152826 by:0.017069113882183004 In:0.0167310746783188 with:0.014170506894792975 from:0.013586836184279336 at:0.01266636453547691 In-:0.009826052731618101 as:0.009471218486562726 :0.3407970767385552 +of:0.28767355066866834 to:0.08775711267569858 in:0.08678131196995101 and:0.05160598694501188 on:0.04646139928102899 by:0.04519522654900943 for:0.044547789071328545 with:0.03396756772609607 that:0.033699232901107726 from:0.03075346596941143 at:0.027039283056790858 In:0.021061449543044047 as:0.017514234937992545 all:0.012543839382496166 upon:0.011844431150487573 is:0.00998972746569266 was:0.008814315973987914 into:0.008557199930727406 through:0.007781895704231326 :0.1254109790972375 +it:0.19618503130345033 that:0.11896492365648059 It:0.07117948185877797 and:0.051127465366588895 which:0.05080519039290721 he:0.040091851020526356 but:0.01691581232865272 That:0.015429467356386152 there:0.01384209672898341 land:0.012792560021018537 who:0.012272826742353379 There:0.011780822723520238 fact:0.011326800112315181 as:0.011315793053216068 man:0.010233224398891046 she:0.009963991367178607 (that:0.009614626815995874 be:0.009541365958598991 truth:0.009369234335534406 :0.316247434458624 +out:0.0531004011864842 part:0.03125287383711066 sum:0.028493471353818467 that:0.024591556316240524 amount:0.024487239162849943 time:0.021140738814112013 and:0.020812922828256218 account:0.019420777261999252 matter:0.018457806700563552 side:0.018329594926928074 one:0.01691044490679982 people:0.01610253288554323 work:0.014782962412828504 rate:0.014548577166628798 question:0.01447779451891229 use:0.014463014825018437 way:0.013220290975987474 charge:0.012280456538790232 tion:0.012133004915138837 :0.6099935384659895 +the:0.16287760685838365 of:0.0883592780729449 to:0.0618987346693935 and:0.05423685233212741 in:0.030811253892523358 for:0.03057359609188714 be:0.025098115820027647 was:0.01826945122296575 is:0.01662970283289366 a:0.016448402520667066 or:0.01633619095301082 his:0.015510346299682681 their:0.015084175217362073 are:0.014656254371894712 been:0.013019491851438341 were:0.01267572744006931 that:0.012270302451397866 on:0.01131798809455223 :0.011150587255169986 :0.37177594175160794 +on:0.25410429420635355 of:0.13575508593122035 in:0.10216748209431553 to:0.06633706492435144 and:0.04424530035228859 at:0.0437427124086169 from:0.04112104309885048 In:0.029183634470963397 by:0.02473292693501895 for:0.02135723215301122 with:0.021150759938470265 that:0.019797376740202665 upon:0.018269672460740256 was:0.018130772261410313 On:0.014774902246210087 is:0.013553557792900009 be:0.00880247660722605 as:0.008205291047894749 all:0.007843066745984655 :0.10572534758397054 +him.:0.04568335154155118 it.:0.028344954874401307 :0.01927591468307642 them.:0.01784519313492743 time.:0.01426982407900329 years.:0.01337761552602473 life.:0.013323352407168428 man.:0.010172448142519929 himself.:0.010166658298319746 country.:0.00870905409885804 work.:0.008018000668112061 me.:0.007911710004674133 again.:0.007858191885627546 her.:0.007045092425097463 day.:0.006804747208708049 home.:0.006778130710876737 there.:0.006683161055349694 city.:0.006273731348968398 year.:0.005913715939379407 :0.754545151967356 +of:0.16526984654901158 the:0.08220465333578827 and:0.06298993953041872 to:0.0431142345288457 at:0.03806179744588643 in:0.034075768958877144 .:0.02590597195139604 by:0.01815399713033974 :0.01683602281596393 a:0.013513662692132972 John:0.013212489079893006 or:0.011379009231711847 W.:0.010985546502683007 A.:0.010601449254607468 for:0.009902689237344912 said:0.009332578499571746 H.:0.009086642299626099 on:0.008544964057197072 that:0.00845385649480482 :0.40737488040389946 +and:0.08995317707915026 to:0.06844710404109794 of:0.04605142056172993 the:0.04074574508561307 which:0.02479116931334353 that:0.023764822140213245 re-:0.020841117231308055 in:0.020803825395358622 for:0.020278423301550053 :0.018417753428486977 not:0.016860793136637672 con-:0.016444405871234195 is:0.014386481772210856 or:0.014080680914153714 be-:0.01352268143271276 I:0.01317002660943805 was:0.011429878269381662 dis-:0.011196807025842847 he:0.01113106290024311 :0.5026826244902934 +a:0.4756762391758817 the:0.14166967072794806 and:0.058632271566612326 of:0.029048235474453336 his:0.019496234264510793 to:0.016802668763480116 A:0.0167072133158526 The:0.014588656026306601 in:0.010569271888542084 with:0.010209058071339809 one:0.007968941650395278 my:0.007668701979420137 no:0.00707504385905025 very:0.007015210743052074 their:0.006805376209353512 any:0.0062948390446877014 that:0.006008880320821336 our:0.005987871577220548 by:0.005862406444037688 :0.14491320889703407 +of:0.2813933312284629 to:0.13785243888483453 in:0.1045901435907499 on:0.07424493741916735 by:0.05067972132517331 at:0.04999037712044602 from:0.044091161390989085 with:0.03390003981547004 for:0.029510452807212456 and:0.026565322894410257 that:0.02479171726326896 In:0.020186653312496416 upon:0.019837104779665042 as:0.014872768367561028 into:0.01022106072811155 through:0.008523787409651748 under:0.008478886242649501 before:0.00738595692162579 over:0.007198181470850899 :0.044685957027203245 +to:0.05847899465420806 of:0.05695465913104411 and:0.053615967947836615 the:0.04637723874482898 at:0.030637759209619427 .:0.026833293492450123 a:0.02311320085654611 :0.016417394507914698 was:0.01638587910506227 in:0.014924590025613676 1:0.013885281833184427 thence:0.012662415876433627 No.:0.012622998466583315 by:0.011513087062595706 for:0.011227303623637637 S.:0.010833398980084669 A.:0.010155816014371669 W.:0.009802674852495868 Mr.:0.009409683829633248 :0.5531483617858557 +is:0.11693435819955907 are:0.10915279825987384 and:0.08497468559233151 was:0.08174303035260728 he:0.06971856767515473 be:0.06500551258749984 I:0.04602526839644789 they:0.04227324135005748 who:0.02952534712557578 Is:0.026042072489777964 were:0.02546326279386074 we:0.024767511249690205 had:0.024179269693917853 have:0.021611982866520916 He:0.01962800008958348 has:0.018883885487498704 it:0.015666981528333828 not:0.015543700206875314 but:0.015006611141685786 :0.14685391291314778 +and:0.051654636516201016 made:0.051015454799921624 or:0.024674408513783483 that:0.016062835335927065 him:0.01565924413931051 followed:0.01563124550437536 owned:0.015583321950137187 ed:0.014866750499448756 accompanied:0.014614648987466283 it:0.013626457525371337 taken:0.013108391888807197 them:0.012651103019890095 caused:0.011867361447385745 up:0.011657883035474385 done:0.011150870541727875 only:0.010691704012969913 given:0.010651579286736641 occupied:0.010536480438065907 secured:0.01016848645023085 :0.6631271361067688 +as:0.060857136319576344 up:0.054737892704652256 and:0.04445313741424363 back:0.029448150390291906 down:0.025899914827033334 went:0.02554096426246566 came:0.022769173233221078 according:0.0225438798889887 regard:0.022297325399916895 feet:0.02107326719988104 go:0.02025051116908718 due:0.01936414394046143 come:0.01733440441681411 given:0.017164582147378475 sent:0.01641667769780703 prior:0.015130812905941924 addition:0.013475540765457693 it:0.013262535189871026 known:0.012800566139125615 :0.5241793839877847 +it:0.1559622243675163 It:0.08728451051768386 there:0.07607925895626716 and:0.05728253228372171 which:0.05565787144648829 that:0.04281233060676907 they:0.041188625254281554 he:0.038054063563270325 I:0.024138554066638385 who:0.018310559195373936 There:0.01651866699004309 you:0.014407216044184887 as:0.011883094565108014 mortgage:0.010176283577293714 this:0.009692637953303978 He:0.008555730541283425 she:0.008555479922333683 This:0.008523935219995369 They:0.007827669765537419 :0.3060887551629058 +that:0.09624802202812972 and:0.09500681735936567 had:0.056303166422429336 but:0.05287588054839266 is:0.049440103555322634 as:0.04697636761477422 have:0.04692393727291159 Is:0.037108548083937216 make:0.03683505059700771 Would:0.03375141218810264 for:0.03338402888814851 of:0.03319599012080882 which:0.02717746684618881 was:0.024390403840816338 if:0.02345625269595207 when:0.021660297124789177 would:0.021237754667807245 Had:0.019169423161578842 Be:0.019007709954133464 :0.2248513670294033 +the:0.18722701762894853 of:0.13613782860590043 in:0.06473199474195411 a:0.059907631983735665 and:0.04098985591669884 to:0.036476920121872244 that:0.02632087709714708 The:0.022795368293747995 for:0.021281214558538552 as:0.013033858819604564 with:0.012933032644227493 In:0.01207808196142145 tho:0.011579296810221965 his:0.01102951651135444 or:0.010484813295105325 by:0.009361225876491457 no:0.009031749174341306 :0.009030593195081316 such:0.008642021349744176 :0.295927101413863 +of:0.13084814232797154 in:0.0740836656586379 as:0.0625527229231004 with:0.059577596335708534 to:0.058433603729754965 is:0.05551580107464621 and:0.04946529489577619 was:0.04264000753602388 for:0.04009673021586375 by:0.037684080471064085 be:0.023941707008899252 on:0.02316059851167503 at:0.022644769441950232 such:0.019950936521181326 that:0.017856095877642635 like:0.017386655618315594 In:0.016902219705578994 from:0.016046571451088905 not:0.01205910100844263 :0.21815369968667797 +that:0.1820388631965077 and:0.11579128881672353 which:0.06717299160031309 as:0.0597667351733449 but:0.038474049086549326 it:0.035389889680282546 if:0.03189501453402074 If:0.02203886925666996 when:0.021112437432096235 It:0.02021238754749803 this:0.01700864118739558 That:0.01430879770266295 w:0.013721325199642583 what:0.0134968675202422 a:0.012792270824746007 where:0.012695807456926994 the:0.012533940119999669 of:0.012074977052420423 now:0.01150375050557558 :0.284971096106382 +of:0.23404883258036932 to:0.13762281364583392 and:0.06892744571484294 for:0.050697020909806795 by:0.04782975187159013 in:0.04446789397742663 on:0.04348416527870206 at:0.041097266357464336 with:0.035013760285037325 that:0.03268294137827768 from:0.028367500541639147 was:0.018230087941573273 is:0.016901621067993273 when:0.016464905073071606 as:0.014024058666306884 all:0.013559590196139587 before:0.012403449421135346 under:0.011684380532368133 In:0.00978726910562858 :0.12170524545479307 +it:0.15700466946673797 they:0.0635880760524189 that:0.062345237809934485 which:0.056722792816219975 and:0.05648461051139374 It:0.052983893433962106 you:0.044684522090375635 he:0.039969458267820814 I:0.02612135231365314 we:0.023353366490680715 there:0.022975707766621677 who:0.022461689741936214 They:0.011135393877179104 this:0.009864092553055585 but:0.008966856655768896 He:0.007571568925288274 or:0.0071265089694851295 she:0.006844636630844152 There:0.006651868677514761 :0.3121436969491087 +and:0.07359963406644195 be:0.052667135004264946 to:0.04483536256874564 of:0.043448293679263235 the:0.03579172892628988 in:0.028005289969665195 was:0.026700397492138477 is:0.024892551934152005 re-:0.024162182625676702 he:0.024086629517294657 are:0.02098604388819216 from:0.020307931541148256 a:0.018606881911690538 or:0.018077853608073062 for:0.017195224169077532 been:0.01615904189338184 I:0.015254891559368164 :0.015184018660626356 which:0.015016145996292442 :0.464022760988217 +;:0.05087126314662501 is:0.01806756774292099 it,:0.016976863372841395 him,:0.013506209856854025 nothing:0.012657841396099557 and:0.011995751863348168 them,:0.01080529830585904 was:0.010513071683157285 time,:0.01040039583480838 are:0.0094335589709684 ,:0.007926840741333839 years,:0.006363991182502941 States,:0.005910146755905073 be:0.005661628129989765 country,:0.005660699768479842 year,:0.005281899980762396 man,:0.005256934227754588 here,:0.005242470276476497 life,:0.005215029660378984 :0.7812525371029339 +of:0.28767355066866834 to:0.08775711267569858 in:0.08678131196995101 and:0.05160598694501188 on:0.04646139928102899 by:0.04519522654900943 for:0.044547789071328545 with:0.03396756772609607 that:0.033699232901107726 from:0.03075346596941143 at:0.027039283056790858 In:0.021061449543044047 as:0.017514234937992545 all:0.012543839382496166 upon:0.011844431150487573 is:0.00998972746569266 was:0.008814315973987914 into:0.008557199930727406 through:0.007781895704231326 :0.1254109790972375 +the:0.16272263272752582 of:0.10313720014389405 and:0.06099177353711771 to:0.03689824271478635 a:0.031674836374684066 in:0.017242834769490678 for:0.0149824097144338 tho:0.013718194855660549 be:0.013211650367257693 his:0.012170592154686428 by:0.011943230819382124 their:0.011478929300770968 with:0.011391196056684566 was:0.010938021007784567 or:0.01069715424709808 as:0.010695068409177944 .:0.009867859103715642 Mr.:0.009486107747049772 :0.008891034695065785 :0.4368610312537334 +of:0.14140911374913043 the:0.08406324275408093 in:0.051712664696044124 and:0.042016144218116745 that:0.03344666676867289 to:0.027709869064190353 The:0.023638573607111874 for:0.020483914568636966 Mr.:0.017669174058513534 which:0.016972368561751192 as:0.016259401671191127 a:0.014920071848964473 :0.014646146896987337 In:0.009940105168995288 or:0.00909223143114935 such:0.008359976573547796 when:0.008218759560201584 -:0.008178509589941811 by:0.007801238855262815 :0.44246182635750936 +is:0.11033049077094907 was:0.10309126302249239 are:0.08558870049670235 and:0.07324057090916987 were:0.04023408749451353 be:0.039296754511415295 not:0.035278036029435425 an:0.02962720776958845 on:0.02647627991883928 been:0.024260573432527528 have:0.023962620350122196 the:0.0238546803939733 Is:0.02353437193250832 had:0.019203565761403817 it:0.014204899965366072 I:0.013786987194075034 and,:0.012051121633520548 before:0.01146388981587049 more:0.011389961460597512 :0.2781239371369295 +that:0.2592799075790374 as:0.10288857495482158 and:0.08429407323529227 which:0.07305071529393269 if:0.06288202247963039 where:0.042648097624468695 but:0.03503927648431523 what:0.032575821804727775 than:0.0260414611940632 when:0.021820026116116914 because:0.01740670975528238 If:0.016249410637794403 until:0.012517878971032178 or:0.011942855162326647 for:0.01166687256522519 before:0.011616058182121034 whether:0.009937167238456385 all:0.009866157044993704 think:0.008715052079843664 :0.1485618615965183 +;:0.016467371822176696 it,:0.014600666987422075 him,:0.01435845380087453 up:0.013907863376986263 him:0.010803589970894707 them,:0.010672093941676402 in:0.007908066839429132 time,:0.007552845753134016 here:0.007414526926031824 years,:0.007170147342827695 it:0.006590065868587609 up,:0.0062904972340151605 man,:0.005989399764440318 man:0.005958989888519999 Mr.:0.005903488814246419 out:0.005593395971459712 :0.005534460714393433 down:0.005299140994283814 one:0.005295902211973867 :0.8356890317766263 +the:0.6036082732365542 and:0.0660116179782387 of:0.03681384299442903 any:0.03669875356045848 The:0.03483739285459286 in:0.028182450990689088 on:0.027094549761936648 tho:0.025312005649428274 or:0.019172858404123375 all:0.01866119741260826 from:0.016473028783697864 to:0.012736352962165052 In:0.010957325062211637 with:0.008333711426246535 tbe:0.008081785788134888 some:0.007101632860978698 by:0.006003348129282031 each:0.005196296884185683 that:0.0045110188219921405 :0.023212556438046508 +the:0.09062494433264588 a:0.08186812718359615 of:0.07665255579335865 and:0.06636276054271308 to:0.04071739999489238 in:0.02754983299885049 for:0.0272759788597289 be:0.023802753696347153 was:0.02002974420319422 is:0.016089217281208188 that:0.014618037779939199 are:0.013874434177032574 or:0.013695608767148506 which:0.013301608632123188 he:0.013300569399631604 one:0.012207463572123657 his:0.01217164206190697 I:0.012036821745892864 -:0.011791839808027407 :0.41102865916963893 +:0.061607746381155785 it.:0.013023187723977522 him.:0.00793335402054038 them.:0.007840378710818247 I:0.006253198581840426 .:0.005096117411078766 time.:0.0050899320254289716 :0.005011082449800248 day.:0.004915087129242867 country.:0.004481657089751791 work.:0.004388415208767327 of:0.0041167159460004 way.:0.004076215761400402 years.:0.0040125374386316545 man.:0.0037135711990012713 in:0.0035474843766175536 world.:0.003432247823680649 year.:0.0034052109711342777 city.:0.0032679176592975067 :0.8437879420918339 +to:0.4555469830691464 and:0.05473960927277259 shall:0.042609646563980294 the:0.04058901275933836 will:0.03986831532462115 not:0.03387228721692358 or:0.033148766023700364 can:0.021483334616737907 a:0.01825129258155086 may:0.01689401606757024 must:0.016175212652319845 of:0.015825200445455694 by:0.013941098674795413 any:0.013723748427181699 either:0.012439699656720678 should:0.011044699628876222 could:0.010467636081528973 would:0.010366717658266512 be:0.009549373418658812 :0.12846334985985436 +and:0.2210242177482376 of:0.0435614529828688 all:0.03817835593890948 is:0.0381034896926163 fact:0.034054903178717164 so:0.03377352775100325 to:0.02288557616699142 was:0.022724984912725288 but:0.020963167587531042 said:0.0205822423395204 know:0.01833582484545267 than:0.015108356775518838 say:0.014028218602879153 found:0.01290274901027436 be:0.012858554297100321 believe:0.01209434520430986 as:0.012040762186766852 think:0.010532426286643332 time:0.010161908748354825 :0.38508493574357905 +one:0.1028303141280697 part:0.05963429477052991 out:0.04766456937681193 some:0.031418679026461914 members:0.030764490253327767 side:0.029940657362655835 portion:0.022063658796890564 office:0.020457735219956013 member:0.019726706386316174 end:0.019666887540649894 tion:0.018667441728710307 parts:0.016814747270460957 people:0.014112771422418794 all:0.014072739582212475 any:0.013183573287639892 One:0.013083578354183906 that:0.013024335602903442 account:0.012482348155001894 many:0.012077825070275192 :0.48731264666452345 +they:0.20465291601047186 we:0.0932398471557799 who:0.06726026996548422 which:0.05764036356553189 They:0.04970329466983208 and:0.04640982782614767 you:0.04634000880268458 that:0.04395419602255319 We:0.04261885186333397 there:0.027839320981165743 men:0.02052725416801498 people:0.01614445038107812 You:0.0136276631482998 There:0.012493746077643988 but:0.009186976751704969 as:0.008622504089235832 it:0.008088492134258893 These:0.007147575951353116 these:0.006303065170454346 :0.21719937526497082 +to:0.24588258680531241 will:0.09238037076715472 would:0.08400346470216176 we:0.05618485301514755 shall:0.047360337613866085 I:0.04531924590891624 and:0.040018489763754286 should:0.0377532811849433 not:0.03710667712814514 they:0.03624140678895967 who:0.03606869718809687 you:0.03226959070169079 must:0.029649167466787137 We:0.02276868681822096 may:0.021837593107060304 might:0.01495639958877392 could:0.014045790475211947 They:0.011296694255811188 that:0.011294598574936641 :0.08256206814504911 +.:0.06145350361758748 of:0.057217752951528256 and:0.05111443697091423 the:0.04221382288129386 Mrs.:0.03025197231450168 to:0.02523021580879916 S.:0.021984391074277576 :0.018402468741943793 by:0.01769683303453687 H.:0.016559324575159545 M.:0.01530915933726461 Mr.:0.0150563980292169 W.:0.013836087577009737 A.:0.01381618690512263 C.:0.01353470740668449 E.:0.013043543885784284 J.:0.012511724146014426 F.:0.011749065463333657 Miss:0.011271346796207156 :0.5367470584828197 +to:0.1699762983704124 and:0.15162964785071395 No.:0.05955489074331806 of:0.058736568182863644 about:0.04874285914509733 with:0.039351679350774854 or:0.034479149701218854 than:0.025222381666903725 for:0.022946987943088096 in:0.02136033311398144 at:0.01875221812880838 from:0.01817346018339717 was:0.017661632199420702 will:0.016947916425196736 the:0.016256183765945436 do:0.016070330978524363 is:0.012156213611339884 by:0.011555094725180437 are:0.010761610604262176 :0.22866454330955235 +a:0.29852544446381507 the:0.1912915317556594 of:0.07890811903095213 in:0.043411460057103016 this:0.023080967425994744 for:0.020573435451695023 A:0.019811675977168916 at:0.01842684945590811 and:0.016715898557596816 or:0.015502100050108407 with:0.014130341046121278 to:0.013459568868975823 In:0.012262745095400462 The:0.01128878551096456 other:0.010840249499816861 tho:0.01014513508775001 every:0.009761382524904506 next:0.008484970762115672 two:0.008145814361602284 :0.17423352501634687 +not:0.1893565335212786 have:0.13244858980853846 be:0.10240045075374138 and:0.08101375322181954 is:0.050146534790094344 was:0.04852011628650044 has:0.04196855027149878 had:0.040565193397156925 he:0.036608850962308766 more:0.031552466457420124 been:0.031231019280442546 are:0.028279552872108003 most:0.01969544665324377 the:0.017319518195003086 a:0.016614540547461584 who:0.016280682650657977 that:0.015828423579783042 to:0.015110805471096469 having:0.012261295759562193 :0.07179767552028392 +one:0.1678001327051895 many:0.1178830679155386 some:0.11629649396959849 most:0.05250905917664251 all:0.05247722732702672 Many:0.04393717940457599 Some:0.04145252072400844 none:0.03942274921152021 any:0.03229849807875444 One:0.026981283335526234 Most:0.024449316002334315 each:0.02437347877142535 out:0.01729697182841551 and:0.017064556310207257 that:0.014172725973974322 few:0.01321762799495761 two:0.01173136022198473 part:0.011007786075073578 several:0.009924913510291958 :0.16470305146295422 +the:0.24175779980080914 his:0.16525355049486476 her:0.0913428409624927 their:0.0698768619202613 my:0.06670595223758966 a:0.04252900641812884 sur-:0.037787229338924415 your:0.03587656312081417 whose:0.02462255179104117 The:0.023703904082308054 our:0.02226756828744199 and:0.021773784726115047 of:0.01693129983981523 His:0.014230930398023575 to:0.013916957086594017 its:0.013240254771816477 tho:0.012691343146505983 Her:0.012260436627024444 with:0.01176739616786424 :0.060463768781564786 +sum:0.11521816279450764 rate:0.10357735536931731 depth:0.01698047644546742 distance:0.016652595823706727 number:0.016397876135293334 line:0.01415937089886229 consisting:0.013738844019712669 out:0.013310519509765157 piece:0.013145244998746683 day:0.012802032954405336 part:0.011857205434472395 age:0.011405325477287766 side:0.011093517778278203 amount:0.010802467082354753 price:0.010240459344790518 lot:0.010179864526052481 and:0.010149760619468259 one:0.010037574019475321 north:0.009957950905890123 :0.5672933958621457 +the:0.2963524403195963 a:0.1241652201866759 to:0.1123525532826426 and:0.07540461173456592 The:0.06266132423048966 annual:0.017388405152836576 tho:0.014653980854794739 this:0.012061769370995363 of:0.0115050256259471 his:0.011444226341865092 minority:0.009309157976998052 will:0.009201400501022219 their:0.008581483355412416 A:0.008252732620992837 an:0.007979762948238711 said:0.007960475920743402 tbe:0.007448228091286576 that:0.007197869346848829 with:0.006857272824981768 :0.1882220593130659 +he:0.19338593212904778 who:0.0986988414357971 and:0.07451315487578315 He:0.06265942836358246 which:0.05155764038979351 that:0.04341497516740106 it:0.034486470872616096 she:0.029661533220271537 It:0.0210139645573926 man:0.017969033521477343 company:0.014092480499770237 as:0.013873989878085538 ho:0.013297294945441124 lie:0.011410680019422378 She:0.010812761109662927 one:0.01026042485945698 President:0.008978594131141927 government:0.007919922381239734 Company:0.007767733854216864 :0.2732251437883996 +the:0.10184093353203097 of:0.0826683734720849 and:0.08116011440424369 to:0.07228618044391917 in:0.04456864017863855 a:0.023849763262408993 at:0.023821894498674057 for:0.020712458834411786 by:0.016077402216765367 with:0.01345867033667198 :0.013450818469940303 In:0.013075947187244303 or:0.011899230953396768 be:0.011722802588064204 was:0.01155454787921407 from:0.01147711365319801 on:0.010073373274094473 .:0.008959819349580516 his:0.008947945602997687 :0.41739396986242017 +;:0.01458927046758731 it,:0.007973265891266864 him:0.007834970369143835 one:0.007240974664279108 in:0.006989508095588829 and:0.006417396987522371 ,:0.006059091806132192 it:0.006014614548599763 up:0.005812344146302806 out:0.005395853159197619 them,:0.005290532062834904 him,:0.004938420268273817 city:0.004793760033506698 :0.004646491011450349 man:0.004641061555670736 country:0.0046164671969483135 feet:0.0044416267197611185 time,:0.004376787347733258 time:0.004358244018157902 :0.8825693196500423 +as:0.05729471634571925 up:0.04430965073015733 come:0.03915500656730188 and:0.034294293517799064 back:0.03411766687236335 came:0.03356402097212845 go:0.03245958305552573 it:0.026175332672653342 regard:0.025675490431796306 went:0.023774114907783788 return:0.023245457523849457 them:0.023151599188047635 him:0.02042951252271379 sent:0.01971150145819369 given:0.01952167086863279 brought:0.018577046663596164 out:0.018524484481550398 is:0.018218484921632427 down:0.016545073780232664 :0.4702552925183225 +and:0.08995317707915026 to:0.06844710404109794 of:0.04605142056172993 the:0.04074574508561307 which:0.02479116931334353 that:0.023764822140213245 re-:0.020841117231308055 in:0.020803825395358622 for:0.020278423301550053 :0.018417753428486977 not:0.016860793136637672 con-:0.016444405871234195 is:0.014386481772210856 or:0.014080680914153714 be-:0.01352268143271276 I:0.01317002660943805 was:0.011429878269381662 dis-:0.011196807025842847 he:0.01113106290024311 :0.5026826244902934 +the:0.11919516938815296 of:0.07230453158552728 and:0.05781056740443249 a:0.043018564803886335 to:0.031305092790907506 in:0.020848713353460488 at:0.014270110001066288 .:0.012526810245749479 :0.012413283442322082 for:0.011719122709941797 by:0.010808400946589808 or:0.010404172990115616 The:0.01003576004804544 with:0.009811868184449042 tho:0.009295902015355835 was:0.008924239095331684 that:0.008672304223433876 is:0.0085591147338948 be:0.008335143826716943 :0.5187411282106204 +and:0.17118943869278608 is:0.03458501917911043 or:0.030155483734553817 but:0.029281764193574804 be:0.023905233543239854 was:0.02301286722878162 not:0.022917442400473182 that:0.019756277484094135 done:0.019634687022032603 it:0.019426229243797596 him:0.017373428263251545 them:0.016231292404783746 are:0.01572134581528784 made:0.014446942713169606 now:0.012569455325628011 out:0.012402167678822875 only:0.012229170943926063 do:0.011791129138658615 and,:0.011028885444100611 :0.48134173954992693 +the:0.3552386901179777 and:0.1178200999716381 of:0.07122047583312996 The:0.0626127581632708 an:0.026990040914018527 tho:0.0249656220823617 that:0.012314751528575139 tbe:0.01084207404515187 these:0.010806962448151257 his:0.010732290785400302 to:0.010296225558913586 a:0.008543119267465 our:0.00851225180584129 re-:0.00799305757704845 their:0.007952369928511355 this:0.007320567859145768 Miss:0.00705418931377499 its:0.0066228059459913745 by:0.006371001619033906 :0.2247906452345989 +of:0.09129790931378902 the:0.07369883040827747 and:0.047842263382354346 in:0.04189055351593407 to:0.04045875475680249 a:0.03542341257202578 be:0.02020462051672066 for:0.01979292654746225 was:0.01760256398103379 at:0.017380150555488715 is:0.014984483003968216 with:0.014047653760730413 by:0.01374644383819499 :0.012670486581795598 In:0.01200961464556976 or:0.011563835749786333 from:0.011391516893522809 are:0.011273104484969465 that:0.010755276030689069 :0.4809655994608848 +is:0.18529674091797435 are:0.1199875247841983 and:0.11869023240247552 Is:0.036033183389339564 but:0.031193360635124828 as:0.027049710322007935 was:0.022930898402669625 that:0.022837794501356607 it:0.021157623203080823 It:0.017991994793949483 which:0.01790155147995094 not:0.017661016066559173 And:0.015793974941583796 of:0.011493816308335646 be:0.011442338732024947 question:0.011312167728102956 he:0.009938826892308036 the:0.009113700280844773 property:0.008846774464407651 :0.2823267697537051 +will:0.21594006355822004 may:0.12242287749997885 to:0.10862927318925873 would:0.0851490734966877 and:0.07381727634435319 should:0.06571501170464206 shall:0.06361488168907445 can:0.03976113453690286 could:0.03617133461871336 might:0.02564105811714959 not:0.02423455174167206 must:0.016524007555785456 which:0.014100660991725597 they:0.009682852310032738 that:0.008391070845797387 as:0.0073569298350652425 cannot:0.00687245676096995 who:0.0063411140372680985 was:0.005630964381980869 :0.06300340678472176 +and:0.10402992543013229 that:0.05019092486459068 as:0.042727286857862486 which:0.02533234897998449 the:0.02508012675128413 of:0.022857658890955417 but:0.02193945521435193 :0.021424796317566188 when:0.019315947107283828 an:0.012160285773421877 what:0.011117510159342807 to:0.009847883387652535 for:0.00930937210305684 .:0.009110448322906767 a:0.008401418459977729 time:0.008210823708437065 on:0.008144468143099519 so:0.007721425325186425 said:0.007692928980800737 :0.5743849652221062 +the:0.395013499833212 a:0.3090675519008259 tho:0.029693757136427495 The:0.028400518002168685 this:0.019631297191817804 any:0.01782033015731111 every:0.017318256119618614 tbe:0.016503171476761384 whole:0.01607230228189177 an:0.014910566700755351 first:0.0134262504744064 large:0.01083226580986057 each:0.009926153916573574 A:0.009203127949453866 no:0.008509525372748069 one:0.007415920193613342 general:0.007099953364835769 little:0.006676525506859567 great:0.006192287986354479 :0.055286738624504235 +the:0.1165216458878206 of:0.09672603490828778 in:0.08408267380748247 to:0.06189341855966702 and:0.05995687345862066 on:0.03383091923740891 a:0.029589680974384684 In:0.026638090384772373 from:0.022171265476938443 was:0.01738452826612317 by:0.015453357716943719 :0.01361821459252141 with:0.013318092902454445 for:0.01327033970023468 feet:0.013132234348261025 thence:0.012726781465707219 at:0.012258515912245634 as:0.012004664789400663 that:0.011734815895058552 :0.33268785171566656 +of:0.2385183548801853 and:0.1048610162486932 to:0.09297382245459962 for:0.07942595621629198 in:0.050874995124542265 that:0.045660156974141955 the:0.03970421303012737 from:0.03220969879943803 at:0.02788769506536986 was:0.026598558768439477 on:0.024473278086750986 with:0.02336031914160104 by:0.023103703304113574 or:0.02171623658657506 about:0.021605249278685037 is:0.01893604303009618 some:0.017775073164136037 half:0.016717328479353068 as:0.014538357665085473 :0.07805994370177452 +hundred:0.013633628820093018 ;:0.011172311961148602 him:0.009807052834026905 one:0.00914669734384353 feet:0.0090219372983598 up:0.00838318558829166 mile:0.007527126877816727 feet,:0.0071805242500254255 time:0.006879602834379732 man:0.006817451499927337 it:0.006300585667639516 it,:0.005903705234588485 out:0.005451849962934835 :0.00538718305729827 ,:0.005295204710281874 and:0.005240008239108335 here:0.004938150073064577 water:0.004837308913464981 them:0.004796443021708541 :0.8612800418119979 +the:0.13524258454133983 of:0.08547481147806 and:0.060802392733599955 a:0.03372999473529486 to:0.02605452804349807 in:0.018881462099893404 for:0.017488868478312658 was:0.017315114297079343 men:0.01448232922808079 his:0.012146099647830061 by:0.012072196157479845 be:0.01182870525522687 that:0.011813823508257652 with:0.009221504864085227 an:0.008944308362617752 were:0.008903295689844428 :0.008536342403835226 The:0.008283520454519225 is:0.007765789130502367 :0.49001232889064245 +virtue:0.062060494787377685 out:0.05417899169104244 part:0.03289673107629515 one:0.02969369892462812 quarter:0.027015883171169475 favor:0.01993830018372674 result:0.019463829004704194 guilty:0.018891084377354095 means:0.018499162894926688 end:0.018170939082736048 that:0.018121271122199262 construction:0.01726217741616459 presence:0.017003995482744873 tion:0.01673652166540914 case:0.01640819963257697 side:0.016055927605250184 erection:0.015381239457214257 account:0.015287601389485416 hands:0.015156055434805247 :0.5507778956001894 +and:0.06221069663990682 Committee:0.05057534586581559 was:0.02748220847391186 committee:0.02744426205407836 that:0.020734118233226323 is:0.015430238938760197 be:0.015048656326656785 going:0.014001702059179444 out:0.013278222204376178 work:0.012879402979875257 went:0.01268561986518544 put:0.012602354130226817 due:0.012424637090645018 were:0.012095015985171466 called:0.011981002673910567 it:0.0118054636333845 them:0.01156555523415657 are:0.011505242379095585 him:0.011141026526201511 :0.6321092287062358 +the:0.11919516938815296 of:0.07230453158552728 and:0.05781056740443249 a:0.043018564803886335 to:0.031305092790907506 in:0.020848713353460488 at:0.014270110001066288 .:0.012526810245749479 :0.012413283442322082 for:0.011719122709941797 by:0.010808400946589808 or:0.010404172990115616 The:0.01003576004804544 with:0.009811868184449042 tho:0.009295902015355835 was:0.008924239095331684 that:0.008672304223433876 is:0.0085591147338948 be:0.008335143826716943 :0.5187411282106204 +it:0.21407569137435278 It:0.13389907182405736 which:0.09653647753274325 that:0.04974256322267489 and:0.04295449432868849 there:0.029258073180577902 he:0.028101058381975796 This:0.027689504244386317 what:0.019427128460635316 who:0.01693113762941895 as:0.015242480321668644 this:0.014567898009151337 There:0.012369002141277978 He:0.009999824152617772 but:0.008994074818380684 she:0.007092780269327085 work:0.00481334709167852 country:0.004661934946715723 man:0.004390690462495113 :0.25825276760717614 +at:0.15759636317629921 of:0.1421714067936483 in:0.11676904876960983 to:0.06398364411645996 on:0.051157018190029144 for:0.05108566601725402 and:0.04555513108461132 that:0.031721944739604234 from:0.030113826054908015 In:0.029702699076370135 At:0.029399515452081842 with:0.028043139425789426 by:0.026185917658690036 is:0.020303271491863204 as:0.01797707611473321 was:0.017223050385135958 upon:0.016504659720422372 about:0.014081527374087893 be:0.01236778699448754 :0.09705730736391437 +of:0.10829623151801474 in:0.10033463002187434 with:0.06570550256304582 to:0.06534675831188887 is:0.05793278261722739 for:0.05150070313571703 was:0.049722043814485854 and:0.04609295948385622 as:0.045705065558454015 by:0.027693319075598362 such:0.027423463089792217 be:0.02712915401114342 at:0.025500324256074784 on:0.023832039609095187 that:0.02018931053684904 In:0.01882572838489574 make:0.01779597835705223 from:0.0172270806299035 made:0.017021525514021654 :0.18572539951100964 +line:0.15752563636361985 corner:0.06905613321055662 sheriff:0.04286280179780869 part:0.037001196156271406 prayer:0.03186416352602805 sale:0.03142394633391665 portion:0.030977207181492977 payment:0.030430446299472058 side:0.02841338084626688 Clerk:0.02587108715774029 estate:0.023280323008369054 date:0.02006128172523745 terms:0.018782735440552378 office:0.018339074345315308 one:0.01814520625554345 amount:0.017961503456507155 virtue:0.017809997850830296 Sheriff:0.01769919054283388 holder:0.01674874067282088 :0.3447459478288167 +they:0.09964870397852106 you:0.06636843572334628 I:0.05063325087479657 we:0.048309814329262055 and:0.042072345260129346 who:0.027470061739201235 there:0.026827282347238923 They:0.024714369189386392 one:0.024440140474136923 people:0.01721228167416285 he:0.01700022718072179 men:0.016793231913828307 it:0.016701946584550584 which:0.01631725534903626 that:0.014664785706320946 We:0.009528747163918258 will:0.009248922969686504 man:0.009216506647040386 1:0.0089496091511922 :0.4528820817435231 +to:0.11000714347575334 would:0.10850050587795915 I:0.09311493251809032 we:0.0796623092680008 they:0.058851107605668536 and:0.0578301771854273 who:0.05014238294653822 will:0.04271968872559904 you:0.03512820245027013 We:0.03460032942330574 should:0.03273990535764209 must:0.02869650637838612 might:0.024142253421891715 shall:0.02302981729090534 which:0.022470354837954124 that:0.02137614461289038 not:0.020553643446779405 may:0.018290274849485692 They:0.017204283273168 :0.11994003705428456 +and:0.07732061173555271 situated:0.04532321193706905 State:0.028318527827177996 that:0.018601013568606453 recorded:0.017011680133105136 or:0.016508811221990872 interest:0.013736241745987907 was:0.01344170058027873 land:0.012251934542661587 up:0.012218193408363852 published:0.012110997550152852 state:0.010098081589385076 men:0.009817992864467315 as:0.009686731897222972 home:0.009028635465199306 office:0.009016984812734724 residing:0.008927678865767378 contained:0.008604222258971629 house:0.0085063687457067 :0.6584703792495977 +the:0.07308391748213149 and:0.0650236830030406 of:0.06160769942055397 to:0.052268247186185425 be:0.047076308054616864 a:0.0372396837426395 in:0.024252681833945605 was:0.022488248066258144 is:0.02167905136294673 for:0.02153860696418792 are:0.020623701936193742 or:0.01929925567751662 re-:0.01871171112926931 been:0.01861238611348457 pro-:0.01601091340941376 his:0.013531807626344868 not:0.013315154707748283 were:0.013106637980199716 he:0.012779513704430508 :0.42675079059889237 +the:0.12285296094004503 of:0.09817851333752219 and:0.06592713213355123 to:0.04951419258787356 was:0.04418146059484458 a:0.038107061866298836 be:0.03381349245443766 in:0.03359448275853669 is:0.028478288952295754 at:0.023474326416834054 for:0.016699924134405294 his:0.014326395251805632 or:0.014153776705098658 been:0.014056104888894281 not:0.013109242053401433 their:0.012637453412934655 In:0.0119303395497276 are:0.010136045963321282 were:0.009961306282732157 :0.34386749971543945 +it:0.17919824768026574 It:0.11899386451103285 there:0.07346360470486527 which:0.05225230718544703 they:0.04641619335773507 that:0.04192124155395412 he:0.03957048582491494 and:0.035253100689259534 There:0.02796624983890546 I:0.018721002707963057 we:0.017651434188838702 you:0.015294756461088244 man:0.013919793670076737 one:0.010205906425646862 work:0.009927234298320483 who:0.009840907332144214 this:0.009589326281629148 service:0.009412730711036632 she:0.009226688142499937 :0.26017492443437595 +and:0.1223752209854971 fact:0.06358599383547173 said:0.0506569949616548 all:0.042108832983917314 of:0.03554686298987605 say:0.035129464395898403 so:0.03312802644806447 to:0.030263743596323636 stated:0.028043801037000073 is:0.02689601752701394 believe:0.025134372369123317 given:0.023700777320085176 show:0.023293489567148815 says:0.023137133987960627 found:0.022459126947999536 know:0.022390151959386997 on:0.017330226345532367 than:0.017184159989340773 as:0.016548659092113123 :0.3400869436605917 +of:0.13220788596108762 the:0.11806197626600107 and:0.11447979005928369 to:0.05491991479430628 that:0.030667439658182066 which:0.029041581423870477 in:0.028061623828932562 The:0.022979411344374583 for:0.01692544607079418 or:0.015535126062040185 he:0.01462659836254589 Mr.:0.013612259959489906 their:0.011546934765876161 they:0.01150728685397923 a:0.011293271170004048 be:0.01116358333637164 :0.010796326301503397 Mrs.:0.010549189151713458 these:0.010283148129094227 :0.33074120650054933 +:0.09453532015241406 it.:0.024307858499823965 them.:0.01705342684321184 .:0.012844656524548444 country.:0.012168960897174497 day.:0.010446233288066731 time.:0.00993307214336212 year.:0.00964682853792709 people.:0.007748491829390779 States.:0.007137884143811933 him.:0.0070258746984261985 years.:0.006366217865837738 work.:0.006328088535787307 world.:0.0062616339195984945 city.:0.00615995216399402 law.:0.005724156006739654 state.:0.00557557872321337 life.:0.005465776619321413 tion.:0.005442547877477167 :0.7388274407298732 +the:0.631928109398423 an:0.05541867131743001 The:0.05453496732188268 tho:0.039262369437396825 a:0.023642169803683735 great:0.023126919900693904 tbe:0.016956397629548425 large:0.01343970681374484 of:0.012297499126816571 and:0.012022989265494307 other:0.011446444942981488 vast:0.009349058562320952 this:0.00831487190294233 whole:0.008246392628614471 in:0.007575623494762453 Republican:0.006165546599247031 entire:0.005835540845412793 new:0.005586505576303681 his:0.005564747514231253 :0.048285467918069286 +the:0.6758110854792116 The:0.050902069753088655 of:0.02841963891237181 to:0.02511471850998141 and:0.024269542570009288 tho:0.02355965492331946 our:0.017632690826401246 this:0.017329675974655664 a:0.01633246374983025 tbe:0.013808103629192821 his:0.012394073451868211 will:0.012336682766223562 their:0.011626324363894132 may:0.009882484208405788 said:0.008454304088896471 its:0.00750477395576303 shall:0.007383427499842398 would:0.006552259801050118 general:0.006254010609041431 :0.023432014926952554 +of:0.2326381444566893 to:0.11234995023782918 in:0.09150493283887222 on:0.08913503712216661 at:0.05927007056343556 for:0.05639999163463338 with:0.03777906718355815 by:0.03582881144008542 and:0.03457040915045662 from:0.034244762624796386 that:0.030956427702105885 In:0.021786433931304215 upon:0.016338980894153723 into:0.011014001855891015 through:0.010329013811394151 after:0.009470428306600777 as:0.009125075059308796 over:0.00894639256466852 On:0.008856832346207004 :0.08845523627584308 +and:0.06216494136319493 all:0.05771152334440861 was:0.046631667772924414 for:0.04590025148134892 it:0.039128851447583594 of:0.038643244483172606 is:0.03478968544614432 came:0.02838449602777182 in:0.023906199781752714 turned:0.02177709997948336 went:0.020726605020561197 or:0.019071021507830445 passed:0.018773149749619876 him:0.018193687145670694 ing:0.016877974971087572 them:0.015092995066930284 get:0.01467668254921837 up:0.014488998188156554 come:0.01369801233036376 :0.4483629123427759 +and:0.011468337578322729 men:0.009444264538827128 in:0.008739790615117619 ;:0.008352583544620297 there:0.007183646050090892 to:0.0068518365607355206 :0.006503380372124513 right:0.006439031418278083 man:0.006429842214349308 hundred:0.006161453393843034 one:0.00600198049733743 time:0.005983845494873496 it:0.004802967014827943 women:0.004797730268557954 work:0.0047574550371684106 him:0.004479716848268249 them:0.004415414345832814 due:0.004401427268565136 wheat:0.0043428598431368495 :0.8774424370951226 +of:0.14238195436724344 as:0.07507851537177604 in:0.0627901937540513 to:0.05943335808281464 with:0.058198752571802966 such:0.05664509332071871 by:0.050461108567081525 for:0.046372468941263165 is:0.041957978013659435 and:0.03953554764565578 at:0.034676426854753195 was:0.0344134846103074 made:0.02506928115085792 be:0.02417754482704861 make:0.021889012036106326 on:0.0207736276475535 upon:0.01773331243649515 In:0.016350434838109905 from:0.015258215135887888 :0.1558036898268131 +a:0.23148836658267236 the:0.18673878485788833 for:0.04782533000486633 of:0.045511922391155944 in:0.0401234470960791 and:0.032691980954335266 to:0.01897892312234774 that:0.012683519367606083 any:0.011946836980720273 all:0.011282315583864704 In:0.00997324894666949 more:0.009614283511717095 an:0.009437168649751878 some:0.00932534525837456 The:0.009321464677284244 tho:0.008193868149630957 one:0.007632910947289425 :0.006307577854733503 his:0.006304636383030116 :0.28361806867998257 +that:0.3006282797824588 which:0.08825833989594935 if:0.07590645430925741 as:0.057415901162760165 when:0.046979310514990436 and:0.04469798510716899 where:0.03859947268255101 what:0.029567497471003793 whom:0.02794588647609859 but:0.027263368649816086 said:0.025667511709866035 If:0.0221645656642884 after:0.017088573952120545 because:0.01688933254693009 before:0.01683775684107503 until:0.01581127311986328 though:0.013677231415689368 time:0.013460006345194214 When:0.01100496486132436 :0.10913628749159403 +the:0.2668731486289058 of:0.15921261503655057 and:0.1412839038523909 to:0.04089818114847064 in:0.03603368351495212 their:0.03576564476716539 The:0.03437782932312331 our:0.03272932096376231 or:0.027899316382347036 his:0.019279933379943624 an:0.017128999204230638 a:0.01675403814341803 its:0.01670186008054979 for:0.015984049278562475 great:0.015416949394023119 tho:0.014411295221031913 In:0.014164782674820452 from:0.013775883948616285 public:0.011839024967485172 :0.06846954008965038 +the:0.20617799332481987 to:0.1460515246095663 plat-:0.06636124951180462 this:0.047232185660068905 of:0.044830180756117645 a:0.04430945646590207 uni-:0.04215751152511512 and:0.029766300969426333 such:0.028580080831373728 their:0.02396080132729219 every:0.020039975106024236 in:0.0188398000817386 his:0.01641893053365881 any:0.015955885732669962 its:0.015266348513618338 or:0.013707142360201931 for:0.013533681338637313 that:0.012804413446403273 some:0.012623327006832434 :0.18038321089872833 +he:0.16259015703605337 it:0.09393299095628936 and:0.06622215507385362 which:0.06106871836134066 It:0.056305190517637306 He:0.05241100026945262 I:0.05050215119144903 who:0.042038699667935685 she:0.03939082886641226 that:0.03654989352503143 there:0.021285173576864568 This:0.020792008373978297 this:0.014288182079628649 She:0.013887153578516505 what:0.012278533704163564 ho:0.01017750510585394 but:0.009888926198829563 man:0.009108460546995099 lie:0.008869511347747307 :0.21741276002196716 +is:0.10219970689853788 of:0.09398425679436594 was:0.09079192599389285 to:0.06563808237410138 with:0.061440902106471525 and:0.059677704680122526 for:0.05608980936673811 in:0.05027209366342521 as:0.036887724215900385 by:0.031701874927916505 be:0.028287622741437847 that:0.023317941118757655 at:0.021881943025888265 on:0.020885525409299544 have:0.019822786698265298 made:0.01980942633167499 but:0.019363887726193827 had:0.01931738479275795 not:0.017803410535679173 :0.15982599059857314 +so:0.19819132659346625 is:0.0900420597876723 as:0.06772327122185752 was:0.06019791078173114 very:0.05668842793681288 how:0.05265714229034457 too:0.04748269394819703 are:0.047360654121666436 not:0.045150817148958126 a:0.04422207438271712 be:0.04085251648459506 and:0.03455464759373506 been:0.02607534586812366 of:0.025549875516344068 with:0.023201127366006994 were:0.020926829245244895 Is:0.016162177712705058 have:0.015552350605434613 for:0.015113063033731845 :0.07129568836065539 +amount:0.047234125729124055 matter:0.036041940169452946 out:0.03520133056738229 line:0.03157343418995463 purpose:0.031399521003502975 number:0.0308561946879738 right:0.03065961431250596 kind:0.023274863137692264 point:0.0227437792942984 cost:0.0223127796681717 years:0.021340685769363398 system:0.019003720482461142 board:0.018670779262022867 sort:0.018152465331796975 power:0.017991732695995463 form:0.017595407298863802 way:0.0158548464159092 question:0.015211553599191083 means:0.015118386342179256 :0.5287628400421578 +time:0.027779181052815117 men:0.016912826024883497 principal:0.015095434477673229 life:0.014588732938690245 up:0.013734146686508486 rules:0.013177677883752419 good:0.012782625272049838 strength:0.011976635371405807 rights:0.01168371964717912 land:0.011563512978557119 costs:0.011445472447659517 in:0.011020804640561804 labor:0.010959412104927733 large:0.01048868642013245 all:0.009670512244343718 highest:0.00939292419051248 power:0.009240564850875337 law:0.00920999236235684 out:0.009064049581840634 :0.7592130888232747 +up:0.01628024812291784 it:0.01561152386076234 him:0.014783223436514857 it,:0.013818043239615415 him,:0.01344158858078714 men:0.012947851910676763 them,:0.012239160652286 man:0.011749628353550293 time:0.010129242190038487 them:0.009693119839727418 work:0.009201418501342588 out:0.008763921400118876 one:0.00839623150791581 right:0.008353334079688836 made:0.008346828021915467 time,:0.0076575997557969885 life:0.007524865459362885 country:0.0073708806230591666 in:0.007223852843477387 :0.7954674376204454 +of:0.14037368154565769 and:0.05353658250122557 said:0.03972290550665013 Mrs.:0.036857457041519465 .:0.03601246313445545 Mr.:0.03410642787222286 &:0.029682952096986088 :0.02371115699442747 to:0.021657470324008644 No.:0.020157317996911735 John:0.019817071947897183 H.:0.01522957120408972 lots:0.014323725117784817 the:0.013472979577343693 Miss:0.013400726020336647 boy.:0.012279282835254488 girl.:0.012028907968175889 1:0.011598595110368268 J.:0.011583650033596696 :0.4394470751710875 +of:0.13835654833182806 and:0.10989133414327014 the:0.08029352557027737 an:0.053527137843105116 Mr.:0.04938564581306658 No:0.03017371540771188 The:0.024435297167829644 his:0.022106046971548162 such:0.01940008268174013 that:0.01847180800896235 in:0.01467100933510589 all:0.013837312016717646 An:0.01375713884472275 her:0.013732414749352656 when:0.013726368454137395 or:0.013569993284630068 Miss:0.013026665502703974 Mrs.:0.012735518866941806 said:0.011774987290584701 :0.3321274497157637 +of:0.32822574664677806 to:0.08431629688795507 in:0.08114165892854779 from:0.05096641457600244 by:0.04941868805343188 and:0.046194076854512926 on:0.03900235778492673 for:0.038988654386481233 with:0.03691037034261617 that:0.0308693046656294 all:0.03038454728745306 at:0.021359995257453062 In:0.018283917302710305 into:0.014855007602959719 as:0.012213448524528976 over:0.010748997972715163 upon:0.010562729791540427 through:0.010295661877344391 up:0.008807040319142612 :0.07545508493727059 +that:0.16832451653748762 and:0.16317551195275604 but:0.09202228048090219 as:0.06626898981545905 which:0.05056182452516285 if:0.034268175887251145 when:0.0327999336955599 where:0.02391654490512962 But:0.021638226096886436 because:0.020516735853829505 of:0.017875962661562897 And:0.017367123587138943 for:0.01715484095146282 If:0.016077584172624653 what:0.011042818726600803 though:0.010176208114312196 until:0.009969674033922531 while:0.008769541776912644 think:0.008148981878890557 :0.20892452434614764 +it:0.171807292498004 It:0.12462071078248387 they:0.08287065090024576 he:0.07655961858699317 we:0.04862910034832227 which:0.044714216823447485 that:0.03982826398521146 who:0.03473031139961547 as:0.026687803642152782 I:0.024747928667035513 and:0.02290300120243566 you:0.02178975967815383 He:0.01926442143872756 she:0.015729506991797263 We:0.013415466537291115 They:0.012171746858188687 there:0.010572367982202133 one:0.009274746982672197 You:0.008625577081683301 :0.19005750761333648 +that:0.08442906486304995 :0.04887968681549701 and:0.041137482172011325 but:0.02888995933138761 as:0.02746836505261559 it.:0.015100270482549118 of:0.015095209152059337 which:0.013942032616213134 If:0.011859028533821177 them.:0.009519339743462009 when:0.009095223377862654 for:0.00891349815806853 because:0.008229491538995458 if:0.007119454131312199 where:0.006996858304029283 country.:0.0067133086923252885 time.:0.006111557109353984 what:0.005714998444928118 people.:0.005668677117880749 :0.6381164943625774 +to:0.12022893700269083 and:0.09020394424291768 the:0.08587503820055309 of:0.06450042443224316 in:0.0310058468700829 a:0.017742048521183405 :0.015548046036689871 not:0.01491307651316237 that:0.014112408707955496 for:0.013734482372212283 I:0.013065769926808477 will:0.012848502316304782 at:0.012837991177321897 In:0.012628718855091186 by:0.012491091048660757 be:0.011425930130217754 is:0.0113962101007567 he:0.011342727513475473 or:0.01112522537451577 :0.4219735806571561 +to:0.09864282010030183 the:0.08375297126946753 of:0.07074571151673052 and:0.06779046829403 a:0.02766650927741597 in:0.021670314456411932 at:0.021392828982420006 for:0.01627599403114278 is:0.015107338441904122 he:0.014818877918256685 was:0.013808540905081488 by:0.013132601340090633 it:0.012796195965848819 I:0.012723560421513859 :0.0121914922721236 not:0.011777366450725432 .:0.011011346691779235 that:0.01092359583028988 with:0.01073896800850032 :0.4520324978259654 +and:0.07037758541517271 was:0.030298974036846654 are:0.025215943363714882 is:0.024503725974015938 men:0.01999657354692285 held:0.01873379098321236 out:0.018632250329740762 place:0.018297306751398984 him:0.01803813838133836 that:0.01803337494599712 not:0.017365771282532392 arrived:0.01710283974448368 closing:0.01646917127740193 them:0.01613739971805394 made:0.016051063128350296 Beginning:0.015595946889515457 one:0.015503507767815809 be:0.014742127688280189 were:0.014658463885035512 :0.5932460448901702 +and:0.10517437992463241 it:0.10298884252306649 they:0.06677725895603868 which:0.0651717226029006 he:0.05301976208296744 It:0.047678466074866734 that:0.04657417062942799 you:0.04656365103755603 who:0.0407792315955846 I:0.03827956165467745 we:0.029924638502782406 He:0.012004418584856012 They:0.011841351032751092 she:0.011695334696231319 as:0.011164963678585752 This:0.009335009695943234 this:0.009088262220367573 but:0.00871147407191787 there:0.008168793188849574 :0.27405870724599674 +the:0.5827899604330147 and:0.0763464153260038 The:0.048426342576913604 tho:0.036146757252297296 in:0.028199563590885386 a:0.02183945593679264 great:0.02086010210379052 of:0.018582731894020012 his:0.013634544258435905 tbe:0.013026873367843967 their:0.01299399108631307 good:0.010764524084139467 full:0.00992616272458086 or:0.009778630707586524 no:0.008327620936274113 our:0.008001059917982696 its:0.007930792426327934 that:0.007720005628595651 an:0.007085367048547765 :0.05661909869965414 +be:0.10874510096742165 I:0.09480540161819374 was:0.08580282294723585 he:0.07545809020388594 have:0.05959917156688141 had:0.056569101739489376 and:0.05625266431229194 they:0.043364544375654276 we:0.04197574570381434 is:0.03574390914631105 who:0.03313970557645559 were:0.03286852234671687 has:0.03125871105241495 been:0.02300700107148423 He:0.02153141034600662 she:0.02069126720250254 are:0.01727339942076126 They:0.016334218362944186 We:0.016140108889876763 :0.12843910314965742 +and:0.09500881008555331 well:0.06206658951236029 regarded:0.036935028935535894 him:0.0314142794209011 known:0.031077052056542338 soon:0.02700320061470986 it:0.02623085774473942 is:0.02438162343435629 but:0.023839390993020203 used:0.021720637341540703 far:0.02045890976727103 just:0.020384524333195254 much:0.01971667289504282 such:0.019521581813054578 them:0.016090407278819097 was:0.015694381145043425 so:0.015081118446204548 act:0.014529263549522683 that:0.014487886332689187 :0.463357784299898 +the:0.11919516938815296 of:0.07230453158552728 and:0.05781056740443249 a:0.043018564803886335 to:0.031305092790907506 in:0.020848713353460488 at:0.014270110001066288 .:0.012526810245749479 :0.012413283442322082 for:0.011719122709941797 by:0.010808400946589808 or:0.010404172990115616 The:0.01003576004804544 with:0.009811868184449042 tho:0.009295902015355835 was:0.008924239095331684 that:0.008672304223433876 is:0.0085591147338948 be:0.008335143826716943 :0.5187411282106204 +the:0.08741288820481248 and:0.07392080242938477 be:0.0572668144792991 was:0.05686739458441792 of:0.05297029938296901 to:0.040095074017987696 is:0.03448309022071693 been:0.028380973754521515 a:0.02485235362607966 are:0.02226522268065813 were:0.019682022343204007 in:0.019454144698829248 or:0.019273705289081854 as:0.0158232132157123 not:0.012361914460680723 being:0.010097596398749334 for:0.009388164492904385 :0.00930537568905371 their:0.00894740846790883 :0.3961515415630284 +is:0.11886601180493106 of:0.11648903540002638 and:0.08598198200002052 to:0.04230979797264338 for:0.03507743360007849 are:0.032272078307093895 with:0.030370606657724824 any:0.029250429676364282 all:0.0259308368095801 be:0.024589667644362375 that:0.02370519433485448 not:0.02361167017774473 in:0.02319043641903576 by:0.020517304312982095 was:0.0202897211302159 have:0.018559209991167454 but:0.0182417900966825 as:0.01798926766428504 do:0.015391724809902465 :0.27636580119030424 +the:0.3791130625444055 court:0.1466762086700949 a:0.058785074746389505 his:0.04270056180778978 opera:0.038295085902030346 dwelling:0.03557514374715021 school:0.03355638788283367 The:0.021549133179293366 boarding:0.01824510814335742 tho:0.016362445319034268 brick:0.014637020543992822 her:0.01389323730670895 said:0.012594138475952083 clearing:0.009837618193958363 custom:0.00924780621694716 their:0.008674446551888558 this:0.008452200295960667 frame:0.007896038241463635 one:0.0076189124076308625 :0.11529036982311787 +:0.07052944546203901 it.:0.024924403742803965 them.:0.01618997742614126 years.:0.009831482898845846 him.:0.009624141071999893 day.:0.00898071365747182 time.:0.008711041937575935 year.:0.008282278064153624 country.:0.007890267302339106 .:0.0074874291007593335 that:0.006984195817408907 city.:0.006960453825661726 of:0.006709100097823956 law.:0.0066787161050791705 work.:0.006531876234792486 tion.:0.005965143029513645 States.:0.005829167357087969 way.:0.005386391172959616 out.:0.005086625163954993 :0.7704171505315878 +day:0.038129731595168 one:0.028986373082692876 lot:0.028729355459598357 two:0.024675933586493105 five:0.019074340789070724 piece:0.01808102185879822 on:0.017342650844207996 ten:0.017317404053551914 three:0.016931894163333894 more:0.016279023076287296 law:0.01525122225801649 four:0.015246700667003182 year:0.014768229314126278 in:0.013787629736839618 person:0.013315130920939677 dollars:0.012643270144302608 pieces:0.01248035224022159 hundred:0.011006048031882015 feet:0.010347805797662086 :0.6546058823798041 +the:0.11476329399156436 and:0.07762616507837174 of:0.07740542992058452 to:0.041596244333082386 in:0.032352043047762305 a:0.024406615586729317 for:0.02436271634892033 be:0.021660562021938272 their:0.015103427425422146 was:0.014084885619588034 his:0.013889642598533048 or:0.013865607416041944 are:0.010599227534941325 on:0.00998964578877267 :0.00970835628717879 were:0.009673377218759693 all:0.009471939353993385 is:0.008888063674511622 he:0.008874800017321518 :0.46067795673598255 +to:0.36733110701814325 and:0.13964044404480724 will:0.03804923673170016 he:0.036959203271599184 I:0.03487022174102751 be:0.03161228088462473 had:0.02599132916399288 they:0.025566617694139895 was:0.023555465341686163 then:0.02149297704210592 have:0.019499089294387057 has:0.019028551361799286 we:0.018945804910600193 who:0.018544934058576656 not:0.016557731992713598 would:0.015269902696597443 He:0.012451841870583723 you:0.011840607142509332 is:0.011526625479139928 :0.11026602825926579 +of:0.11425476181234873 the:0.09474335322712171 and:0.07643686663840256 said:0.05951564700291749 as:0.03293313362443418 that:0.029591398899060508 The:0.023347194653465114 which:0.02144395249695834 it:0.02043008358146027 Mr.:0.01992727839362318 Mrs.:0.01773640901412595 It:0.01686941258208799 when:0.016380835500941205 by:0.014877672451654169 No:0.014798289957630594 for:0.012315503473728742 where:0.01210521742437879 to:0.011916518597130589 Miss:0.011808248829178504 :0.3775682218393514 +of:0.3538394518127074 in:0.2713999686901072 to:0.06544788390635355 In:0.05547419112616224 for:0.05507526685983094 by:0.032966871856618805 that:0.026110285560345125 from:0.022310124502708927 and:0.013985535290710676 into:0.011664756948038282 with:0.010329110715594326 on:0.010293610677731355 which:0.007534091441318814 as:0.00644472438036678 ot:0.0061718780214554654 through:0.005792440655990071 iu:0.0057262077785706625 at:0.005722601806752479 throughout:0.004555497297889614 :0.028155500670747322 +is:0.15292544512079398 was:0.08088080874564545 of:0.06863709159590324 and:0.06661179254039132 be:0.06487479455543221 as:0.05976773717131091 with:0.058530342271147055 for:0.05457916695555991 to:0.038834806596394135 have:0.03744430255061361 in:0.033278820875153554 Is:0.02829157991523256 by:0.025256515939182378 made:0.024923893513706035 had:0.022669982986427147 make:0.021403195934355145 not:0.020316337618150902 been:0.019305164864152936 that:0.017423432165600387 :0.10304478808484714 +:0.0636106318365141 and:0.03565347786685574 it.:0.01672906738597928 .:0.013254736450806482 them.:0.011935988551295613 No.:0.011575119041637381 him.:0.010677516685943023 years.:0.007937362143108147 time.:0.007752073438396999 country.:0.0065331789352766996 county.:0.005825021890696993 to:0.005143868561334099 year.:0.00506133494065896 other.:0.005048292571004731 again.:0.0049492832747016265 day.:0.004914538897121521 place.:0.004712709125232166 life.:0.004556183218356534 law.:0.004098340535551186 :0.7690312746495288 +it,:0.012147253556189105 up:0.011985874490122032 it:0.0109173582938849 ;:0.010354007884821128 him,:0.00975793992086167 him:0.00939583742920421 them:0.007601042061162496 them,:0.007539107186909519 in:0.007128193666087438 one:0.007053232100022888 and:0.006806477044256154 men:0.006096633761066655 made:0.005946563879932064 man:0.005676469278053468 out:0.005611256669647735 all:0.005131364322309071 time:0.004740764668450901 :0.0045512644845096895 right:0.004359569859421541 :0.8561997894430874 +W.:0.11792637104998699 J.:0.08894026437589606 .:0.059758652510860266 John:0.05644699004390346 William:0.050699571663634486 C.:0.047268929840650925 George:0.03365569366162635 Charles:0.03169644332731939 H.:0.030197095710077802 James:0.030023446104870972 A.:0.027348198522589795 Mrs.:0.02726840967938014 E.:0.02547417902854249 F.:0.022046082226887 of:0.01998199641046133 R.:0.016874753748185506 and:0.016382297596050414 Joseph:0.01565487825481403 Mr.:0.015343472135607402 :0.2660122741086552 +:0.12613457111171342 it.:0.02352242242622822 them.:0.013797531350141322 .:0.011713656435217542 him.:0.010022604028322541 time.:0.009865241438060862 country.:0.007908195427584223 day.:0.007832739510784505 year.:0.007103329012855997 purchaser.:0.006810512524879572 water.:0.0066219973474003395 ?:0.006618600428579252 in:0.006434727793722117 city.:0.006291814230992284 work.:0.006244155694562273 and:0.006124611786242258 out.:0.005698118852010964 tion.:0.005657540401639517 people.:0.00545851797810003 :0.7191391122209627 +the:0.08166060906997497 of:0.07108276819829999 a:0.057172431198362995 and:0.05164750103816911 to:0.03894282939475747 feet:0.03879601646768266 in:0.03401856979153912 for:0.024267060369080478 on:0.020529914926076635 that:0.018447569066071572 at:0.016195707027141164 one:0.01574031243228926 or:0.013256474345955813 all:0.010574934237130108 some:0.010466515105436761 :0.010234523404666936 his:0.009966235459664812 an:0.009619551540462623 about:0.009543854793697513 :0.45683662213354 +the:0.09221318568413615 and:0.0760198662593901 of:0.07223612562080817 to:0.034757401767148664 a:0.032423124672392806 was:0.030742683597357757 be:0.029514819674713193 is:0.026118100923895073 as:0.020804899171962207 not:0.01723131821331984 are:0.015940220977164042 for:0.015315894530201546 .:0.015135445427743732 or:0.014526133109461594 been:0.014424362338631225 Mr.:0.01385161786241855 :0.013697915095371703 at:0.013094309462915602 in:0.012152776768793 :0.438799798842175 +or:0.09281608464010954 not:0.07489449038795472 and:0.06381966989279982 redemption:0.05712072525321487 than:0.04070956744699515 is:0.031290210208922024 was:0.03120549101847239 look:0.029189843522936663 there:0.028131497012039344 be:0.025115877200795157 that:0.020269696419443466 looked:0.018915865781502096 held:0.018441712244567282 made:0.0184125815247321 seen:0.017010353896818653 interest:0.016524808736177798 them:0.016376147217729283 it:0.015575334311057946 demption:0.014446495703073124 :0.36873354758065857 +of:0.11872867222751884 in:0.07290951340995491 to:0.04319428082866954 with:0.03662459873008454 on:0.03253236695373369 by:0.030174480975536686 from:0.027285063281096915 and:0.02199451331561365 upon:0.01691618721243304 for:0.016620979224610612 at:0.01599537194664067 In:0.012889918104307965 under:0.00971926658274601 through:0.008410779127205253 that:0.008162263499682968 one:0.005518904154280759 into:0.004940998371031913 during:0.004496057350773057 after:0.004391780579395326 :0.5074940041246837 +and:0.06538198234164944 is:0.043452550471217405 able:0.04338712452432955 him:0.039010401133874766 as:0.03602728465129733 time:0.03516245795362244 was:0.030806919136550332 enough:0.030541541923576554 not:0.02886098348564398 order:0.02639935317815918 ought:0.025520118712256092 them:0.025290159002598428 seems:0.024516164441519817 seemed:0.024341200481727776 me:0.023265152732883394 have:0.023019213531576863 right:0.021271741200018672 necessary:0.02111274580448208 it:0.01931545548630852 :0.41231744980670737 +the:0.20471943841755702 this:0.0643006829915912 and:0.02906274160164819 same:0.019127464022554226 other:0.01884545947466078 tho:0.017240890131375454 a:0.017232129635065152 that:0.015657550335683282 or:0.015056701028173209 one:0.014988211295271933 to:0.01475096393374081 each:0.01441152364608778 any:0.014075343505372965 good:0.013476565328414961 all:0.012789770535076532 said:0.0108786067926538 his:0.010155358631408701 The:0.009669513120542686 present:0.00962028012365724 :0.4729408054494641 +to:0.06032142388585187 -:0.04529801023677811 ti:0.025315103992515027 and:0.023499145026434593 t:0.018468816929781907 I:0.016459371170359213 :0.013088652305464327 .:0.013038350674449703 of:0.011690707923854769 tl:0.010445558579305002 i:0.009689843374460315 1:0.008330256724251459 w:0.00710233185547133 W:0.0067000794221413204 in:0.006266294655790229 r:0.006195443092848178 not:0.00588931240395695 is:0.005084462945572129 will:0.0049077647778730076 :0.7012090700228406 +that:0.2509585090048969 which:0.08881182984551328 if:0.07027316497290699 as:0.06508561456668735 and:0.06190291589470667 when:0.051836060131931753 where:0.04375732552357888 but:0.037022140598042375 whom:0.03430965416588371 what:0.02794002417347712 If:0.02203686351252106 because:0.018183318005097784 after:0.017855748076847498 time:0.01595589337890137 before:0.014861264015734078 though:0.014569815726977688 until:0.013683724452392987 When:0.012489711680144636 said:0.011723784677230006 :0.12574263759652785 +and:0.1077749792836058 the:0.06778127820510269 of:0.0512355041064562 to:0.04057634236092281 that:0.03309449772045534 which:0.032184713121535445 in:0.02880706726921465 a:0.02476725794496234 or:0.02254924190231092 for:0.017556418657121785 any:0.015639295771894934 he:0.015141883170409012 said:0.014645315422217572 be:0.014551715827369548 I:0.014194895173058466 as:0.013317622499239594 it:0.011573824401991058 :0.011573113142989604 no:0.011243670362708203 :0.4507913636564341 +the:0.32394080616249693 of:0.11484910151923733 their:0.0649266446956534 our:0.052594169036573414 a:0.051147977356330795 for:0.047461868886949206 its:0.03558682732896405 and:0.031375910104874276 his:0.03099022310240329 by:0.030833183114457256 in:0.029867965878390468 most:0.02928240430733044 to:0.025156115316977087 very:0.021250198104454825 some:0.02039865482587351 tho:0.01711429632670403 this:0.013974792920826646 with:0.012889829192149883 or:0.012664019323162527 :0.03269501249619061 +the:0.39749834532651884 a:0.07520030034269234 and:0.05540858759821703 The:0.03273515726769502 tho:0.030061875542463562 of:0.020144331424922633 tbe:0.014929647509541684 in:0.014268129706664795 or:0.013333166761078447 .:0.013287381914101323 an:0.009000188755386574 to:0.00880680429595084 :0.007943763822197133 Mr.:0.00773879605474787 by:0.007328417831573476 as:0.005922572098978465 for:0.0047526933692942485 that:0.004736121968310169 on:0.004594595720579333 :0.2713091226890862 +for:0.7301965372593728 of:0.06964693552264381 in:0.027570529874614835 to:0.021893516333216102 For:0.019051646906235044 lor:0.015634982094620668 during:0.014231095514723346 at:0.010601321560624377 and:0.010575839031068745 all:0.007639698335862937 that:0.007483032179698967 by:0.006800589627409285 In:0.006615850095087886 with:0.005853232209453322 tor:0.005395222944993053 than:0.0046768287932574095 from:0.004365134841795605 as:0.0038365266087012407 over:0.003818163035995935 :0.023113317230624576 +of:0.12105416942352887 and:0.10881632876121317 was:0.08099441851939787 is:0.06311574424947787 are:0.05574940472105266 were:0.04206107955143143 in:0.03690560075603582 for:0.03246211103807695 all:0.024941622304492417 containing:0.02441390594738128 or:0.021600271042345923 only:0.0210956554575692 to:0.016556440352702213 with:0.016472085281632274 bring:0.01586118318515029 be:0.015824873128742548 being:0.01483811135993239 by:0.01396963441393815 that:0.0136335173886647 :0.2586338431172339 +the:0.08741288820481248 and:0.07392080242938477 be:0.0572668144792991 was:0.05686739458441792 of:0.05297029938296901 to:0.040095074017987696 is:0.03448309022071693 been:0.028380973754521515 a:0.02485235362607966 are:0.02226522268065813 were:0.019682022343204007 in:0.019454144698829248 or:0.019273705289081854 as:0.0158232132157123 not:0.012361914460680723 being:0.010097596398749334 for:0.009388164492904385 :0.00930537568905371 their:0.00894740846790883 :0.3961515415630284 +of:0.20874202785050122 and:0.08646594798095836 to:0.07276169213871125 on:0.04802567138668827 in:0.044027913237986445 was:0.04170416249492844 that:0.04038961188376548 with:0.03911109705699355 from:0.031912445961547325 by:0.03142227507202721 is:0.030117865137430727 at:0.02391764338199056 for:0.022946757977372913 as:0.021145685572058873 be:0.014527002218275032 when:0.013501103256235566 In:0.010849163062809117 up:0.008488936848009741 upon:0.008463611475906794 :0.20047938600580312 +men:0.025794627070652783 hundred:0.014946902101011223 up:0.013480523952141405 him:0.012966787490586587 him,:0.010345194823779094 ;:0.00952180006941226 man:0.00913997739521822 them:0.008813644150173768 John:0.007233842187785894 wife:0.0068190605743730865 them,:0.006666272412858896 time:0.006570837877566932 out:0.006142765884239303 and:0.006093463622352364 it,:0.005891903562408786 it:0.005752243217297523 in:0.005670872457828211 made:0.005656467298630584 :0.005562959547363333 :0.8259298543043198 +and:0.21442560325641252 the:0.16159054312228122 very:0.05456036068949739 a:0.04435151464532481 to:0.03774687808001197 is:0.035969501364396465 was:0.03521332397005424 their:0.02450619582797767 more:0.02361786579237347 this:0.022956638094318214 his:0.02281864992002697 or:0.022393128084175228 in:0.02209158762663677 be:0.021484174615077765 are:0.01898264768493266 her:0.01786305384491817 that:0.016169156723306648 no:0.015359882234817615 of:0.014728167773496096 :0.17217112664996412 +of:0.162313773619202 Mrs.:0.06532777254433052 and:0.06489323481242325 the:0.041177211420089524 to:0.03783592200357859 at:0.030600879128260608 :0.028199301654028713 by:0.026404784085014954 Miss:0.020950083131974693 from:0.019847508236137464 Mr.:0.01913073698834552 in:0.01661589091622377 .:0.015633220327994364 said:0.01279180769993819 Sir:0.012546963825928983 a:0.011490141889573684 with:0.011332654064966138 A:0.009141960136300404 as:0.007597273035078469 :0.3851688804806102 +and:0.11203614284734381 made:0.029480560291083903 necessary:0.027231632327903786 provide:0.01978786821063526 him:0.018624150941585572 time:0.017844902254185023 but:0.01736032991925495 pay:0.01712283223509279 responsible:0.01655246417854943 work:0.01573375727996718 used:0.015721729148453864 that:0.015344008200088246 providing:0.015123591452644664 or:0.014918878594106077 it:0.014272018550925738 vote:0.014240496926603478 out:0.013886758983508773 demand:0.013625570335128902 ready:0.01288626098417059 :0.5772060463387679 +to:0.2832835980617998 will:0.0948020805688397 and:0.06604081754917004 that:0.04832032291709548 would:0.04369007569752728 should:0.03734796727895955 t:0.03478166006152758 may:0.03251922421817959 shall:0.031035972859913646 which:0.027248019682243566 must:0.02328652695605636 can:0.017855264557207314 I:0.015137409614909012 not:0.012995303056195794 could:0.011159114059170432 this:0.009711296318887295 but:0.009609834823771106 might:0.007560100807591127 said:0.007050386558593862 :0.1855650243523614 +he:0.20238085632171343 and:0.1757759599041008 He:0.06469779007656061 she:0.03260185846005962 I:0.027770780214975824 it:0.02743823888616296 they:0.02394631400747886 who:0.021967772757250374 be:0.018886336345541252 ho:0.01562774091327675 that:0.014593839471943903 It:0.014146898878616596 lie:0.012069876806278386 man:0.01151097707859005 which:0.010193579343450198 but:0.010014876889752423 we:0.00976133524521537 was:0.009273820429704207 She:0.008943019039424066 :0.28739812892990435 +the:0.4225065245498293 all:0.08104558236286519 of:0.051545239075772256 and:0.04825395967554644 The:0.03348034574518383 tho:0.020009183139681214 with:0.017387323677307498 other:0.016194012021509982 a:0.014785516958062085 both:0.012818913843933426 by:0.012368020087173177 or:0.011089107187969075 his:0.010374956706164435 from:0.00957734277096407 tbe:0.008939533023786061 to:0.008364433082766784 for:0.007538819360076872 any:0.0073905135072056 in:0.00714316776013933 :0.19818750546406336 +the:0.19329778407156095 of:0.0924023178115783 a:0.08569874614163546 in:0.08022133894104691 for:0.0392043592762729 and:0.03592400995121164 to:0.03542137395469564 The:0.020792246701187733 an:0.0181472594232003 In:0.01724491987770371 that:0.017143112795328586 his:0.016230482312956224 as:0.015301474690331543 with:0.012924473783049227 :0.01211704735933168 at:0.012087413109774316 on:0.011980681455833586 in-:0.01170423396562756 tho:0.011467020397513052 :0.25968970398016067 +of:0.13535307120327214 in:0.1327172950400712 with:0.07287320659047684 is:0.0708229854137195 for:0.05675493840264664 was:0.053275077333494784 to:0.04858916470830357 and:0.04814530494454972 as:0.04789667687800761 by:0.04188162865675851 be:0.03178997225588117 have:0.02710342589906714 In:0.02446543248975143 had:0.02223995112211687 make:0.01866992258733993 such:0.016197772996716604 been:0.015643604831469007 made:0.015212240495856596 at:0.014587187249271022 :0.10478114090122967 +it:0.014199313406320219 it,:0.013449659332737297 them:0.012637461274739912 him:0.01234853016089279 them,:0.010827417918851208 men:0.010211501475974757 out:0.00933372014541612 work:0.009213364334803367 time:0.00883061903478412 in:0.008514502629875596 him,:0.008107025849932012 made:0.007729031507849438 up:0.007587348757171618 can:0.006914476322991819 life:0.006014242754812737 law:0.0059965947410037 ;:0.005495759444303813 city:0.005315751225333772 of:0.005121206346296716 :0.8311524733359089 +half:0.22878738789499609 at:0.1282181625446983 for:0.08853115576129429 of:0.08619452315812663 in:0.07813149088213818 to:0.04513233365781034 miles:0.04005511802272906 about:0.03688508955328035 within:0.026517004663650794 Half:0.026403866441960723 In:0.02104698818770322 as:0.01861692834378342 and:0.0184229570430747 with:0.016712229055343548 over:0.016243347324842793 from:0.013694102972438022 on:0.01358973537771757 is:0.012578426196870685 by:0.012480686731191813 :0.07075846618634946 +to:0.12022893700269083 and:0.09020394424291768 the:0.08587503820055309 of:0.06450042443224316 in:0.0310058468700829 a:0.017742048521183405 :0.015548046036689871 not:0.01491307651316237 that:0.014112408707955496 for:0.013734482372212283 I:0.013065769926808477 will:0.012848502316304782 at:0.012837991177321897 In:0.012628718855091186 by:0.012491091048660757 be:0.011425930130217754 is:0.0113962101007567 he:0.011342727513475473 or:0.01112522537451577 :0.4219735806571561 +of:0.7152227748016708 Of:0.04935257261915539 the:0.029466015724788883 at:0.023668090775551667 in:0.02034239583482706 by:0.017430349741851488 with:0.013842992718234142 a:0.0086291584618896 from:0.007691756081065028 to:0.0076662706898919545 and:0.007148934012400309 his:0.005754709517152811 that:0.004822668314012159 was:0.0039141705792052044 ot:0.0037065301003734274 ol:0.0034643499797778927 In:0.003063633314856571 my:0.0030286342243818426 their:0.0027480951499903893 :0.0680358973589233 +and:0.09895858434884586 the:0.08531822172154292 of:0.08097129818486058 to:0.038424246671365 in:0.02511448395496922 for:0.021706420488923246 Mr.:0.018065422509702722 a:0.01804990308889873 Mrs.:0.012245087041404104 or:0.012117151389296234 by:0.011371987607652012 that:0.010368824642728522 :0.009715028766046895 their:0.009498327441732344 be:0.008970449535827851 from:0.00870217231629381 as:0.008546905948317203 his:0.008428878023331601 boy.:0.008378372780196123 :0.5040482335380649 +some:0.038161690527282945 out:0.03770089184827631 know:0.037195961419404205 one:0.03393296247672856 and:0.032682506991772484 that:0.0310572502939356 much:0.027580521148761392 think:0.0271713511383648 any:0.021320597724078204 is:0.020405490986991445 thought:0.02024410876969139 purpose:0.020218300957687042 question:0.019989832219182827 part:0.018670736041948018 account:0.018251348381669138 idea:0.01716650529187793 reason:0.016804927577732262 be:0.01633562940919196 all:0.015163712673663938 :0.5289456741217595 +one:0.1028303141280697 part:0.05963429477052991 out:0.04766456937681193 some:0.031418679026461914 members:0.030764490253327767 side:0.029940657362655835 portion:0.022063658796890564 office:0.020457735219956013 member:0.019726706386316174 end:0.019666887540649894 tion:0.018667441728710307 parts:0.016814747270460957 people:0.014112771422418794 all:0.014072739582212475 any:0.013183573287639892 One:0.013083578354183906 that:0.013024335602903442 account:0.012482348155001894 many:0.012077825070275192 :0.48731264666452345 +that:0.2968679931546519 and:0.11425017044387295 which:0.07840608290093895 as:0.05491010562796762 but:0.0507899152705152 where:0.04181923077962451 when:0.035062641700354544 if:0.03380554687924101 what:0.020758442484193743 because:0.018037217089969467 than:0.013735011113380735 or:0.012918128578842886 until:0.012502776209915823 If:0.011311753456944896 then:0.009813348823122299 think:0.009286428406352595 But:0.008564209929610272 for:0.007828896643750862 before:0.007640512684116824 :0.1606915878226329 +the:0.16807735899698817 of:0.10541662057906837 and:0.05138367848570702 a:0.04141865232648221 to:0.0385989743764065 in:0.026264864977736738 was:0.019530675665220657 his:0.018900421021236905 be:0.017373825006196972 their:0.015767721170721456 for:0.01557246589796783 with:0.014071419046630446 is:0.012922913111931644 at:0.012690452250034052 are:0.010702713108721902 .:0.010158075558988393 Mr.:0.009672788574483367 tho:0.009612591781990074 were:0.009549306361446321 :0.391314481702041 +he:0.2305287500863483 I:0.1023547714734208 who:0.08595444052428183 they:0.07067293026562314 and:0.05756386961810735 she:0.048169124985832534 He:0.04661237440732988 have:0.03407881485736339 we:0.031809820732365435 which:0.027388983274934508 that:0.02627454709355722 it:0.023388482824663766 has:0.016957427163271584 be:0.014795490928542803 She:0.013992292431743113 had:0.012770396167461767 ho:0.012426017200387112 lie:0.011922949625268783 They:0.010206784511485626 :0.12113173182801105 +and:0.08027985467187002 it:0.03404957655511084 but:0.02904397309225793 do:0.020097509455011688 together:0.019416689183373335 him:0.016030683373440567 them:0.015248003291374768 was:0.014556314630683603 is:0.011394134469793545 be:0.010683009531257597 met:0.009511756275860435 up:0.009319184004292977 there:0.009143202493287194 that:0.008994108693529826 or:0.008793866858859857 me:0.00822489612340769 man:0.0074993819981440885 made:0.007401898914040883 connection:0.006672892870245673 :0.6726390635141575 +and:0.06829155943869254 has:0.06056886441758647 of:0.049800761845366304 which:0.04944565261120418 the:0.04842121122798511 have:0.044883502305719254 had:0.037030895168991114 to:0.03669674756092904 as:0.03186533048726014 that:0.022700713064229588 it:0.017080850871969373 It:0.014842944096852818 not:0.014186995367151324 in:0.013879042404238774 a:0.0136143008006281 he:0.012206402424766718 or:0.010614495464541766 who:0.009863433658626153 is:0.00972959812189437 :0.43327669866136687 +that:0.17933253091287135 which:0.14095572285355895 and:0.08392106073978622 as:0.07748497108176201 when:0.05498721502577788 if:0.04467677526751226 but:0.04450881927939592 where:0.029962130400838623 whom:0.021179975431135496 what:0.01984048720750139 to:0.016644325405845248 If:0.01547318788461108 would:0.014817901448541192 for:0.014750739295052794 time:0.01387700802223442 until:0.013201283314295379 than:0.012569272369859748 though:0.01177317920377067 will:0.011548943537382703 :0.17749447131826665 +of:0.17653114265095746 the:0.10985811393405323 and:0.07401301929214592 to:0.047618861376001534 a:0.0342777678398369 in:0.023776074727385625 that:0.014561598029417618 for:0.01445747692339597 by:0.011123902535029005 as:0.011051549520118857 with:0.011009934003982952 The:0.010906317493091284 on:0.010816548126207016 or:0.010273442427611176 :0.00983106807525679 their:0.009074091418290069 which:0.007655918162332445 from:0.007436775707693378 his:0.006421016656317028 :0.3983053811008758 +as:0.06931392982974462 according:0.052071562389565784 up:0.0511867300210483 and:0.040371568633051955 went:0.03351644485287816 back:0.032358406609281 regard:0.03073407747799069 feet:0.02852138506231652 down:0.026379903432040268 owing:0.02466642634685871 due:0.023695193974505355 go:0.022910973192184297 reference:0.020802802907016128 came:0.019883741951819873 sent:0.019874244915639484 attention:0.019565955494145405 come:0.01885185084678811 given:0.018792390567602263 it:0.017366961307524745 :0.4281354501879983 +;:0.017303610411968415 men:0.015044529767897418 it,:0.014018076202068505 up:0.014007172272536252 here:0.012595436009949798 them,:0.012521855963841021 time:0.011973054650579724 in:0.010021612449301604 and:0.009521829725829328 him,:0.009296192550168447 it:0.008026072365459462 years,:0.007034904907978988 of:0.0064220305162735304 time,:0.0063243141952104235 them:0.0059338499841016705 hundred:0.00581438629369409 city,:0.00581304456157083 out:0.005781811702795662 :0.005542879938667455 :0.8160033355301073 +and:0.08995317707915026 to:0.06844710404109794 of:0.04605142056172993 the:0.04074574508561307 which:0.02479116931334353 that:0.023764822140213245 re-:0.020841117231308055 in:0.020803825395358622 for:0.020278423301550053 :0.018417753428486977 not:0.016860793136637672 con-:0.016444405871234195 is:0.014386481772210856 or:0.014080680914153714 be-:0.01352268143271276 I:0.01317002660943805 was:0.011429878269381662 dis-:0.011196807025842847 he:0.01113106290024311 :0.5026826244902934 +of:0.11672548664270241 the:0.10607459031829838 to:0.08031556035774215 and:0.07953828371219197 in:0.02987657555494804 a:0.02614105063999502 for:0.021645918087386147 that:0.01925686100698841 by:0.01461704061987806 with:0.01312317101835804 his:0.012724588264125992 or:0.012255347444769152 on:0.01148371426157546 their:0.009670574810370374 be:0.009471217057193736 from:0.009013466782344829 :0.008801565450916699 at:0.008601417173830204 said:0.008395646395248469 :0.40126792440113646 +of:0.28767355066866834 to:0.08775711267569858 in:0.08678131196995101 and:0.05160598694501188 on:0.04646139928102899 by:0.04519522654900943 for:0.044547789071328545 with:0.03396756772609607 that:0.033699232901107726 from:0.03075346596941143 at:0.027039283056790858 In:0.021061449543044047 as:0.017514234937992545 all:0.012543839382496166 upon:0.011844431150487573 is:0.00998972746569266 was:0.008814315973987914 into:0.008557199930727406 through:0.007781895704231326 :0.1254109790972375 +to:0.261906842965684 not:0.15301644369177192 I:0.1446251984428604 and:0.05010354465111739 you:0.048896541217396686 we:0.04411816029858719 who:0.0394265880082547 We:0.03280444914233043 don't:0.031787171611432706 will:0.025964718582458284 they:0.023237075165907853 1:0.021310793437746868 didn't:0.018815651793968068 would:0.016187044294132553 They:0.012979367039439974 should:0.011068728575107562 don’t:0.01040828004565662 must:0.009643572251449089 never:0.009377013083015065 :0.033322815701682586 +a:0.20910692086428306 two:0.09371931249529035 three:0.09107944239964051 hundred:0.07427495642957971 one:0.05501727678105437 few:0.05073971183477984 five:0.043150643814078585 many:0.0402430777547089 four:0.03843418434062618 other:0.03262703154842399 the:0.025351476269623703 several:0.0241834203933123 six:0.023990452303863503 fifty:0.023039902281656414 ten:0.023037782393626305 half:0.01717169161480003 twenty:0.01655565531001328 thousand:0.016526775781557264 some:0.014710756581192337 :0.08603952880788934 +and:0.01650102227912057 :0.008264044679722948 up:0.0077557700826188505 it:0.0077205387246600775 ;:0.007550275262727472 in:0.006660889627264885 District:0.006011371857927528 that:0.00593344912015083 ,:0.005696203643935155 on:0.005125597940432429 them,:0.004962502206702652 :0.004640247075106551 day:0.004514442509925404 it,:0.004325635250685861 them:0.004308948033908915 side:0.0039823215647137745 down:0.0039256475441271175 .:0.003915596424973381 out:0.0038757891238561416 :0.8833297070474395 +came:0.08012364103398496 was:0.07865307116720667 come:0.06819523450785084 and:0.06138918963230746 are:0.055317702294404573 arrived:0.04946540240908187 is:0.0462870228920053 were:0.03949530499347403 brought:0.028640650159906807 them:0.021951631023758376 up:0.020186584845368324 it:0.018829682460977167 men:0.01732132030620147 him:0.016910294121572383 stay:0.016610211084318514 be:0.016433809117655258 to:0.016004858066294654 both:0.015914375473634584 go:0.015672115299830633 :0.3155978991101661 +of:0.28767355066866834 to:0.08775711267569858 in:0.08678131196995101 and:0.05160598694501188 on:0.04646139928102899 by:0.04519522654900943 for:0.044547789071328545 with:0.03396756772609607 that:0.033699232901107726 from:0.03075346596941143 at:0.027039283056790858 In:0.021061449543044047 as:0.017514234937992545 all:0.012543839382496166 upon:0.011844431150487573 is:0.00998972746569266 was:0.008814315973987914 into:0.008557199930727406 through:0.007781895704231326 :0.1254109790972375 +they:0.15514514277810806 we:0.09097538661284217 who:0.07298907457352763 which:0.06413626349706346 and:0.04737835026414417 you:0.04504130013875555 that:0.04361189775396381 They:0.039692569785240876 We:0.03162477309826576 people:0.01974149593089753 men:0.015313076630628891 I:0.009119413547816113 as:0.008765074675451389 You:0.008495803374786249 but:0.007683227599471131 these:0.007448455848026685 there:0.006621723781465931 things:0.006502004042753513 These:0.005962055672993682 :0.31275291039379743 +of:0.29286647884390826 to:0.10053346496278995 in:0.08678912501792266 by:0.0684605869598467 for:0.057086772244616335 that:0.05082921546000236 and:0.04402747482306111 with:0.03362984593912106 from:0.028885733061700464 on:0.028439954912489473 In:0.019563003524452557 upon:0.01676256818301747 at:0.01481963033879972 into:0.012908609173554715 which:0.012116311343917597 all:0.01075050818605098 through:0.009250999851896266 when:0.008479817002763436 as:0.008315411477171656 :0.09448448869291724 +and:0.08802847857673357 him:0.052172970075824145 was:0.03542681819451724 man:0.030431362773220866 it:0.029288088378781416 up:0.020708279568259668 that:0.020571036336634863 found:0.01804151815880068 made:0.017726654982860655 out:0.017249066649085414 time:0.017248369497211622 is:0.0164635781145802 them:0.015112757506419695 confidence:0.014637843296866227 but:0.014176928512072494 himself:0.011931876492387125 or:0.011775222365452837 down:0.010882539895529912 put:0.010458276845277415 :0.546668333779484 +of:0.2511258663017755 to:0.11562852657990699 and:0.06180783491079861 on:0.05669468207160007 in:0.05284526773430644 at:0.050881480261801025 by:0.05020751616734943 that:0.04823013682313137 with:0.03861462799968089 for:0.03318086741093372 from:0.02950435131894969 In:0.023668989998459605 upon:0.017319110519135275 is:0.010983485463851996 all:0.010924757765669478 when:0.010473046923235007 as:0.009598692334529743 but:0.009137312047692699 which:0.008451103222293747 :0.10972234414489862 +and:0.0743969453433319 demand:0.05028788476601065 time:0.026437047916933607 candidate:0.022172312300783165 provided:0.021182016046011096 vote:0.02098383103218158 necessity:0.01694326271841763 them:0.015544230088100314 reason:0.014700555063871003 out:0.014090537818417504 it:0.013937710812775967 money:0.013317334202059652 necessary:0.0128324871791796 application:0.012673232404865826 tion:0.012514701872029264 up:0.012289264886942087 used:0.012070254666031337 city:0.011708897344238774 ready:0.011632123729671012 :0.609285369808148 +one:0.1028303141280697 part:0.05963429477052991 out:0.04766456937681193 some:0.031418679026461914 members:0.030764490253327767 side:0.029940657362655835 portion:0.022063658796890564 office:0.020457735219956013 member:0.019726706386316174 end:0.019666887540649894 tion:0.018667441728710307 parts:0.016814747270460957 people:0.014112771422418794 all:0.014072739582212475 any:0.013183573287639892 One:0.013083578354183906 that:0.013024335602903442 account:0.012482348155001894 many:0.012077825070275192 :0.48731264666452345 +a:0.5462100418944947 no:0.07843065832541764 any:0.05942554936250515 very:0.04626103658320529 the:0.043974983024186697 some:0.02676023977034703 in:0.01907633262962392 of:0.01731689588046724 and:0.01433298683703339 this:0.012150404300455343 his:0.011832889544598683 one:0.010800369622128238 more:0.010286248596757423 A:0.010025603325027097 most:0.00950165162398392 do:0.008738189155119385 is:0.00852458005768557 their:0.008253776816217428 you:0.00772676619981398 :0.04937079645093188 +as:0.0915817059358689 of:0.08315755206000268 for:0.05911612460300507 and:0.05645207132251132 with:0.056259938156387294 to:0.054631659218359656 is:0.051643393818892595 make:0.05053139583135302 in:0.04898171662996821 such:0.04708342533679764 on:0.03587750085686637 by:0.03417793488278392 made:0.03387821066058908 was:0.03272390837847477 put:0.023785581582817846 be:0.019321675394810948 that:0.01889206174096927 As:0.018752603608435715 have:0.017609411913343843 :0.1645421280677619 +benefits:0.09976820824888909 and:0.07568746035719404 that:0.030795762211101224 all:0.02545678506707733 of:0.024388185868877123 per:0.019654161600261483 not:0.01644453217055636 as:0.015290533428234221 one:0.014729898550070508 the:0.014335989527067706 it:0.013079614188329194 to:0.012522097446898929 more:0.012418004348651627 but:0.012114074752365785 :0.011561496651000489 was:0.01061914382481661 be:0.010450043109701735 on:0.010166047452410747 diseases:0.010130307193609807 :0.559387654002886 +of:0.16007977169668403 the:0.159541118032882 at:0.04533626987737763 in:0.04104451971818018 and:0.03918934756251206 a:0.03525527420506294 to:0.030769859548797664 on:0.02702173518863878 for:0.016126265255238453 by:0.013292949880360103 be:0.013070805510659134 with:0.01283206463746129 that:0.011263849264765076 from:0.010561943259379014 :0.00919192234314965 tho:0.008747426573442282 was:0.008585873925106517 In:0.008565575583432336 their:0.008005788640921892 :0.34051763929594897 +of:0.2315323678704089 in:0.09477764029191592 to:0.09167715411204495 and:0.07421744601193113 on:0.037476958918551274 with:0.026657212975482587 for:0.024558606179418352 In:0.022572283469633678 is:0.021960441322422482 by:0.01698823747152721 from:0.016361400564652226 that:0.0156311460788536 or:0.014803925793148645 at:0.013899460770434772 was:0.011498933222566012 all:0.011437304510278874 as:0.010798543221617888 are:0.01078222231503157 do:0.010334501985366248 :0.2410342129147137 +the:0.22459695248125655 and:0.09155105647652029 of:0.07539845240522593 to:0.06888819828976452 The:0.05097004909185198 in:0.04389460654054741 its:0.038929271203942475 that:0.03607008056330225 a:0.03214014718751835 their:0.02924633681576961 no:0.0262119197983165 for:0.02587899096994921 whose:0.02361312554521903 his:0.020956750841162105 or:0.017033899139802994 this:0.0144586788151828 such:0.011519693798489694 Its:0.010972982899745146 tho:0.010619830257744942 :0.14604897687868823 +in:0.2849818651213148 of:0.2525750690687397 In:0.06936840715732447 from:0.06460905389613679 and:0.04719998578062349 to:0.04662907397595476 with:0.03640018042207556 on:0.03271057205119454 by:0.02690123646748398 that:0.023818601688740018 for:0.020469168703659214 at:0.018550561207649734 upon:0.00733649916415819 through:0.006504429193104294 iu:0.005669167370223413 are:0.0053259565380574135 nearly:0.004726598416357411 or:0.004254595949826126 ot:0.004086872635331881 :0.036882105192044226 +the:0.3187295395576868 and:0.0676907366797492 this:0.06582454344423132 a:0.06305200872974515 The:0.060832370724913244 that:0.055454712735272436 of:0.03230172851961287 as:0.023123377622167884 tho:0.02186133947411541 to:0.02162215988204545 these:0.019410448136150997 This:0.018278572292959334 other:0.016380920267466865 which:0.014159841367972213 very:0.014050191514623188 no:0.013848299421402003 what:0.011597711177652969 any:0.010630479185406572 but:0.010075558977860546 :0.14007546028896553 +of:0.28767355066866834 to:0.08775711267569858 in:0.08678131196995101 and:0.05160598694501188 on:0.04646139928102899 by:0.04519522654900943 for:0.044547789071328545 with:0.03396756772609607 that:0.033699232901107726 from:0.03075346596941143 at:0.027039283056790858 In:0.021061449543044047 as:0.017514234937992545 all:0.012543839382496166 upon:0.011844431150487573 is:0.00998972746569266 was:0.008814315973987914 into:0.008557199930727406 through:0.007781895704231326 :0.1254109790972375 +in:0.6149860377995263 In:0.24843096241689133 of:0.028765247316358503 the:0.019342791578712538 by:0.01354690533786286 iu:0.01151806753129041 and:0.009348721268653807 for:0.008958174669584047 to:0.005150203639454516 a:0.004704702786005128 "In:0.003781112317257898 with:0.003589803117459493 from:0.0034711037286330663 lu:0.0020068392054317097 no:0.0018725610153356273 that:0.001481360825636033 The:0.0013034335065521209 an:0.001282109405037657 By:0.0012202436203883576 :0.014239618913928574 +of:0.16964071003649675 in:0.10700364384930357 on:0.09319563016226827 to:0.08801148979074362 as:0.05023093825744616 with:0.04738161173585767 by:0.043396896750409204 at:0.042003330869410785 for:0.040121444519894675 and:0.03700495417694651 In:0.025637690413612517 was:0.023783367841039668 from:0.02287165308836016 is:0.015454758025686405 that:0.015360549829066537 into:0.012670894427654867 up:0.012511793540545019 be:0.010874656917327611 such:0.01075630969155286 :0.13108767607637714 +the:0.28515597221924205 his:0.15704715478289866 The:0.12414462936636125 an:0.07182296045997963 His:0.053255022630013596 my:0.0405099576555388 her:0.029427981728990686 tho:0.01993536371915011 this:0.018503878809776966 a:0.018213297501940645 An:0.017796656846089408 My:0.01671903744779768 Her:0.013986188215637385 their:0.011492575256082594 its:0.010940332901189866 Tho:0.008471038713060128 bis:0.008439473968362745 our:0.007974974953528566 new:0.00697606872197494 :0.07818743410238431 +;:0.026571403980587268 it,:0.015870383953832425 him,:0.014366666283007914 them,:0.010562164083232527 it:0.008914797564345324 him:0.008658739974460379 in:0.008563308136534544 time,:0.007630343887807345 States,:0.007612689371982528 country,:0.007362247907852296 ,:0.007288132781311494 people,:0.006911544867979867 years,:0.006897249127247925 up:0.006735676101470539 and:0.006727519134349249 law,:0.006324130571078796 made,:0.005585921996128152 life,:0.005365863658446561 tion,:0.005234115725765018 :0.8258171008925798 +the:0.16510389916669976 of:0.06997181212062833 to:0.056524227303251795 and:0.04567214604451285 be:0.039578335898411865 was:0.03420138811667146 his:0.0260867319631653 is:0.024207574371491857 their:0.021510052245658568 at:0.021138346391571628 in:0.019455081394770212 con-:0.017764971625682684 been:0.01721545335255729 for:0.01570685726831318 he:0.014397086715610106 much:0.014373946597326609 were:0.014350490624324915 are:0.013033355141764088 a:0.012946495094258608 :0.3557617485633289 +the:0.18267822908411782 and:0.09920264394704686 of:0.08142096997327704 to:0.05510846483834567 their:0.04619493185343371 a:0.04151151248285152 as:0.030923655323952245 or:0.028141605505015325 his:0.02696413154369771 all:0.024258116602666243 more:0.02243713883795434 other:0.020805611893242298 many:0.02053787466036628 great:0.01960605449592834 some:0.018332652992153795 her:0.018015088025837973 its:0.017982618953696704 our:0.01627627732836821 this:0.016128702431211416 :0.2124737192268365 +the:0.30746532158451007 a:0.114164371658955 his:0.04100208122476839 navy:0.028384278666854574 this:0.026695133350190223 same:0.026642951187728667 their:0.01783450720264512 of:0.01725183856126425 tho:0.015166499553411684 that:0.014751129851567098 brick:0.011416975333364563 its:0.01111778566685727 freight:0.010014986028200711 in:0.008296228268387681 said:0.0075440329823845305 The:0.0069116488443064315 and:0.006873830008872068 her:0.006519273464543559 front:0.006297255253975557 :0.31464987130721256 +to:0.33174248783574084 not:0.10403323570014639 will:0.10041313254408071 would:0.0766193796659188 and:0.040115729681957396 they:0.03651235360570839 may:0.031881074607163044 should:0.03052741780324396 we:0.02968805625229539 I:0.027592496695756315 can:0.024685355946172095 who:0.020160118174901633 must:0.018829361863666648 you:0.016649687083486398 could:0.013435414097102706 shall:0.013350554403400196 might:0.013190410483910344 cannot:0.0104170937928269 They:0.007999501468310534 :0.05115713829421129 +of:0.09129790931378902 the:0.07369883040827747 and:0.047842263382354346 in:0.04189055351593407 to:0.04045875475680249 a:0.03542341257202578 be:0.02020462051672066 for:0.01979292654746225 was:0.01760256398103379 at:0.017380150555488715 is:0.014984483003968216 with:0.014047653760730413 by:0.01374644383819499 :0.012670486581795598 In:0.01200961464556976 or:0.011563835749786333 from:0.011391516893522809 are:0.011273104484969465 that:0.010755276030689069 :0.4809655994608848 +No.:0.08734594915253256 June:0.07640357425665056 March:0.07564961116529603 lot:0.049968765199415136 July:0.04773845723686827 April:0.0384153453578662 May:0.038144832380948145 and:0.034573970357481436 January:0.03182969961260834 section:0.02935257759619809 block:0.026830992697941692 .:0.024246647059725263 Section:0.0214689591283866 Lot:0.01655079019053972 February:0.015938232094210112 Dec.:0.015353712953670837 6,:0.015289538011532119 of:0.014327498436649001 December:0.014127663600693502 :0.3254431835107864 +be:0.12814542052146674 was:0.1251499913451303 is:0.078058626316401 been:0.06782169138322205 were:0.06674915216008294 and:0.05802100131047499 are:0.053200951626379285 the:0.04560896192473783 he:0.02592672306871771 a:0.018092325254624883 Is:0.017201815976601885 as:0.01658775548608938 it:0.014921331904504934 ever:0.01444578934704541 being:0.014163302742801387 more:0.013256148699414279 bo:0.010314856274032006 his:0.010205602331102289 or:0.010003308290964501 :0.21112524403620622 +of:0.2722791454327395 to:0.08458125465329668 in:0.053307198354668295 on:0.0483373792170679 by:0.042179143997261526 for:0.041416207912568115 with:0.04023293625794689 from:0.03700273921929351 that:0.031286453865623044 and:0.031173566702802052 as:0.016568310221663416 all:0.0163137099238382 In:0.016205405951395677 at:0.015139272942495785 before:0.01462368549705462 which:0.01253884180193008 upon:0.012412446444397516 ot:0.009759836532854267 is:0.009311781175949259 :0.19433068389515368 +of:0.09129790931378902 the:0.07369883040827747 and:0.047842263382354346 in:0.04189055351593407 to:0.04045875475680249 a:0.03542341257202578 be:0.02020462051672066 for:0.01979292654746225 was:0.01760256398103379 at:0.017380150555488715 is:0.014984483003968216 with:0.014047653760730413 by:0.01374644383819499 :0.012670486581795598 In:0.01200961464556976 or:0.011563835749786333 from:0.011391516893522809 are:0.011273104484969465 that:0.010755276030689069 :0.4809655994608848 +:0.1415836646266604 .:0.040497406921441687 it.:0.022558514670986202 at:0.01586756781199543 Mrs.:0.012441132380340277 Mr.:0.010788150381078354 in:0.010153868334546564 them.:0.009058743633797951 I:0.008197421193722665 C.:0.007513887932716949 J.:0.007313117425575865 A.:0.007256973931877035 day.:0.007065827293969027 him.:0.0070307964316959765 city.:0.006111835649282019 time.:0.006028163249079539 and:0.005698590692850268 W.:0.00562622502129111 year.:0.00550621872463225 :0.6627018936924605 +the:0.11919516938815296 of:0.07230453158552728 and:0.05781056740443249 a:0.043018564803886335 to:0.031305092790907506 in:0.020848713353460488 at:0.014270110001066288 .:0.012526810245749479 :0.012413283442322082 for:0.011719122709941797 by:0.010808400946589808 or:0.010404172990115616 The:0.01003576004804544 with:0.009811868184449042 tho:0.009295902015355835 was:0.008924239095331684 that:0.008672304223433876 is:0.0085591147338948 be:0.008335143826716943 :0.5187411282106204 +is:0.17788622271105864 that:0.0968789521192966 was:0.08706103307112552 have:0.08065797511037681 and:0.0725298541094201 had:0.06598390746119642 of:0.04598437139630287 be:0.045034453786242344 has:0.04405702428766193 with:0.03238892126832692 in:0.031832905189779874 are:0.030640785573528347 by:0.027398256575218157 Is:0.020853363602567586 been:0.017639132353506393 for:0.017553533048443412 but:0.016698923707840936 to:0.01619271713247702 were:0.013856856352121985 :0.057870811143508095 +of:0.10036425554061128 and:0.09867255827094257 in:0.04887477001133228 to:0.04309676529803197 fact:0.03312124920228808 said:0.028016465130273754 on:0.025147031828386315 all:0.020897671259005178 is:0.018989333611116044 so:0.018899457882617265 from:0.018463519784011995 for:0.017651195592365977 at:0.016946018612698295 know:0.015554635744109193 believe:0.015397314140675087 say:0.014489633297242495 with:0.013970217188878864 by:0.012605124887586036 In:0.011949884106238937 :0.4258928986115884 +the:0.13046417745393102 a:0.10204574542370264 of:0.09537004156769607 and:0.0855810564241809 to:0.0389708246489372 in:0.031161188146441535 for:0.027924885988312605 is:0.02272972518157566 was:0.02041711527983545 not:0.018540566563227775 are:0.014618227942320943 be:0.014431156880691763 have:0.014233189447838916 that:0.01389808329886871 by:0.013544990500917672 this:0.012921281726577983 with:0.012473464436114275 or:0.01128793358284856 had:0.010760778006040791 :0.3076255674999395 +the:0.13006376496809943 and:0.07086226985252486 of:0.06372091740113041 a:0.04244586403633607 in:0.03811094666225624 to:0.03401285023421579 his:0.022539625582017806 was:0.021034975628155785 be:0.019392875990734214 this:0.018307188128890962 is:0.016008044214166857 or:0.014900188379664905 that:0.01479975056587775 In:0.014092117051366588 Mr.:0.012596862906640612 at:0.012327631709514956 I:0.012053149228521935 he:0.01196647077306869 for:0.011498127778754957 :0.4182663789080612 +to:0.10894528412955108 the:0.08561462660580901 of:0.07977062600169442 and:0.07857502322500812 in:0.028422775158279557 a:0.02235258730919201 be:0.01919834694741614 not:0.01682305194261986 or:0.016104268240740613 Mr.:0.01606973373434509 by:0.015061438144017577 at:0.015017677590926315 was:0.014370340549450675 is:0.014270381466671674 .:0.01288181477378722 that:0.012419644011461553 he:0.011638468969621743 :0.011452864493089847 have:0.011071282212912193 :0.4089397644934053 +the:0.1431562852602598 and:0.0806155823052312 of:0.08002649740986059 a:0.049021311648861886 to:0.03080636107308745 or:0.017856864279203917 was:0.016980079356805244 .:0.015309688985783249 at:0.014994688484696572 his:0.014760034519904765 Mr.:0.013223416241074756 with:0.013049452425116568 for:0.012997285311724015 in:0.012937633291445946 be:0.012646046049715436 are:0.01197341718209886 The:0.011667306521876211 is:0.011143321514747957 tho:0.011066260078593317 :0.42476846805991225 +the:0.16883506074108198 of:0.10345999980581193 and:0.07765091647747123 Mr.:0.042646070294986925 a:0.03676854853394007 to:0.02730423700154303 The:0.023555615107356022 .:0.020409359832543682 by:0.018024363299732695 in:0.013897353732280127 for:0.01331089079449869 with:0.011100144844755954 that:0.010788179786794411 Mrs.:0.010587736569899649 or:0.010484845999064638 tho:0.010440233278329509 :0.009960897908832863 their:0.009790656798233792 his:0.00974718170240166 :0.37023770749044116 +the:0.7041962205505028 The:0.0816370535023198 his:0.0391547184160886 tho:0.03220254800654674 at:0.02899456928438982 a:0.01590116122000197 tbe:0.013865437091797717 their:0.013752286842768564 my:0.010019499943979023 its:0.008684805745128196 our:0.008086733954078974 her:0.006097518447561665 of:0.004188096379017198 At:0.00380699206183481 and:0.0036141390065473427 your:0.0034347594406519237 Tho:0.003234686994875999 this:0.002510794130505502 His:0.002316063849874601 :0.013301915131528714 +part:0.0398003368145092 line:0.025481732774819185 city:0.022177979426322908 that:0.021294941159830966 people:0.020818977349877827 out:0.020102342802782558 favor:0.01977379697880503 power:0.019336462110408476 place:0.01908093649638457 side:0.018117045415007416 name:0.01721427001542074 number:0.01720119418776631 office:0.015951894622010198 day:0.015749431084941153 one:0.015602970765216289 tion:0.015283157199946296 state:0.014873688577780621 and:0.014767240290678328 case:0.014325548961673807 :0.6320460529658182 +and:0.065452241168788 on:0.06271979710053632 is:0.048570779504928 was:0.03221970887938961 after:0.02974290217299234 On:0.01881305021633293 are:0.01861122668370135 After:0.018521946118743523 him:0.01799235595107442 to:0.017127589030732457 know:0.016468740816667896 found:0.01608503983406474 do:0.015899120877037456 in:0.015562334126661104 made:0.014178882364975012 for:0.014096190406003808 but:0.013395007508735728 all:0.013195711810105282 of:0.012599511771636582 :0.5377478636568934 +in:0.2944603908081736 of:0.19917201094768597 to:0.07521391478957451 In:0.07047054640595465 at:0.045121631709729 on:0.03814711719727018 from:0.037753685385569745 by:0.02863113726911069 for:0.027116265312394517 that:0.025219865624757407 and:0.02363437751511377 under:0.021945990958438574 with:0.014782020961339053 into:0.01133654207670342 through:0.010328722304657872 over:0.0091658308832533 upon:0.007985215028359399 about:0.006813453804514314 before:0.006678066732451603 :0.04502321428494845 +it:0.15057703058901067 It:0.07335307521029856 which:0.07084596843557647 they:0.06940218358176399 that:0.06813062255185925 and:0.062439431025527854 he:0.04876720776048678 I:0.03430723284642803 there:0.03271150724264902 we:0.02726369909956845 who:0.023017447022803176 this:0.01664679952752845 you:0.014634875914670126 as:0.01359354279724717 They:0.011163923070439131 she:0.008940321881407053 We:0.008913964519718029 man:0.00811513195867579 but:0.007979054240280725 :0.24819698072406127 +it:0.17737156742575033 he:0.10225575878913576 and:0.0727792682615488 which:0.06847885412691539 that:0.06765366040558043 It:0.04031478389183416 who:0.03125892283605292 be-:0.02606870015591747 she:0.023945716652866905 time:0.019910593174184817 He:0.01794101061595056 there:0.0174779945231333 man:0.014079796853135451 then:0.013213651219333808 I:0.012359549113261448 never:0.010507940231247738 lie:0.010241723903583992 them:0.009766793583213156 but:0.009558707479995652 :0.2538150067573579 +:0.09124418627965171 .:0.049693695466004044 of:0.04148604187007391 and:0.026607533582059882 to:0.012858521609915645 it.:0.010852239080117792 in:0.010179828433815439 the:0.009958223521069998 for:0.008419445225729884 at:0.0075484129936630165 A.:0.007487531627511418 -:0.007133214573353571 follows::0.006441790249879338 them.:0.005100618579197346 ,:0.004824844192456226 :0.004798346535477368 from:0.004737551017213782 It.:0.004736863690768608 thereof.:0.004517936634454032 :0.6803731748375871 +p.:0.31743969817655315 a.:0.2666313761129433 p:0.04494902983461961 and:0.027844449577952315 the:0.02255422976247773 a:0.01636661970824709 Miss:0.010403778190806253 of:0.007620747199080268 .:0.0075644138159871544 Mr.:0.0036732190754623167 p,:0.0032961143740314024 A:0.0030166748213257388 as:0.0029940168367099686 Mrs.:0.0027710048330278595 2:0.0026082159423760263 at:0.0025651287206974846 J.:0.0023767617783908195 1:0.0023510830984377726 for:0.002181027890686157 :0.2497924102501876 +feet:0.06698733248880996 and:0.05530985688321783 inches:0.03791083290946848 up:0.03616214802852857 was:0.03394201280739591 recorded:0.0261473942782379 is:0.026114171578567373 that:0.022900505203196694 out:0.021790766323129932 time:0.02083963692064826 are:0.01969485387509743 miles:0.018033328897660333 it:0.016461666884970264 be:0.014589736457051654 increase:0.014534856394377415 made:0.014437810668214712 one:0.013636002612475636 as:0.013135228017491375 held:0.012238887529681788 :0.5141329712417785 +of:0.1643832426663773 the:0.11423361193215681 to:0.0576343437419719 in:0.04645139725823686 and:0.046005036152154045 a:0.03393707829691125 by:0.02650286639406888 :0.018659041370415762 from:0.016800533758725814 at:0.015991056088712315 with:0.014863194950523989 or:0.0145606002472342 The:0.014513352837598697 that:0.013716809649148549 on:0.012078829577430814 said:0.011488958609913082 for:0.011399887658949016 In:0.01098069177984707 Mr.:0.009797709706601708 :0.3450017573230219 +he:0.13939055292267472 and:0.1106862071893836 it:0.09859206110847742 who:0.05424008508960413 I:0.03778993470304419 It:0.03566507170495965 which:0.028515001576422217 they:0.02692573499741329 she:0.024678577340859792 He:0.022380666740684077 that:0.021608947859983834 be:0.019036846074778707 man:0.018128279681852235 then:0.015090995230243274 was:0.013039952180733838 you:0.01259237696818607 have:0.01215559681768771 we:0.011169827482036399 one:0.010606516568287027 :0.28670676776268783 +the:0.1264619924409416 a:0.09706849485685796 of:0.06800839346183137 and:0.053753126388964755 to:0.04491418430538209 for:0.02974735828842833 in:0.02813240837326179 be:0.020007498808708068 on:0.018636478607014423 at:0.017953619757210663 as:0.017895045563766462 was:0.016388387651059832 his:0.016141353543705366 is:0.013818995582739826 with:0.013757282278825618 that:0.011416819616991565 her:0.010741147100993715 by:0.010536797952713707 their:0.009677643698868189 :0.37394297172173463 +the:0.06575623237106752 that:0.05310451996976436 of:0.04975174344002195 and:0.04631869629334695 :0.031297784715628545 which:0.029349483031410807 The:0.02360522696968523 as:0.022300974716107588 in-:0.015699448211715532 a:0.014828394455628103 in:0.012385145783054342 but:0.012138926601335101 for:0.01179499614280077 -:0.01138692424770181 .:0.011028824429981742 this:0.010312025549286506 by:0.010115345992983162 he:0.009624921927568284 re-:0.008620232444271516 :0.5495801527066402 +of:0.25033745903130883 to:0.14036094410887084 in:0.1261661723572239 for:0.050438025492539375 that:0.046143166963629925 and:0.038904785214984874 by:0.03717901002261289 with:0.0364859259476241 on:0.03308621631299258 In:0.03171520323217919 from:0.02772437389140918 at:0.01851696174986316 is:0.018266455823626605 all:0.016423645665025494 upon:0.015124235577749461 into:0.013190413301944579 as:0.012532317163496582 over:0.011427991894950284 was:0.009453638394788064 :0.06552305785318008 +out:0.05674604157049269 one:0.05208531334856933 part:0.03537050354181936 that:0.0263126960963894 and:0.021676249283415876 all:0.020699600317602873 some:0.019896622671098433 end:0.017531377191803234 use:0.01669412897234073 side:0.01633390460422861 account:0.016200699854209317 portion:0.01563415871305776 any:0.015342072879495657 tion:0.015072106826204789 time:0.013333517225704455 purpose:0.013202214562184707 people:0.013196763259314265 members:0.013077230787759402 favor:0.01186342079955657 :0.5887313774947526 +of:0.09129790931378902 the:0.07369883040827747 and:0.047842263382354346 in:0.04189055351593407 to:0.04045875475680249 a:0.03542341257202578 be:0.02020462051672066 for:0.01979292654746225 was:0.01760256398103379 at:0.017380150555488715 is:0.014984483003968216 with:0.014047653760730413 by:0.01374644383819499 :0.012670486581795598 In:0.01200961464556976 or:0.011563835749786333 from:0.011391516893522809 are:0.011273104484969465 that:0.010755276030689069 :0.4809655994608848 +the:0.3298843039515431 in:0.1346333699883121 a:0.11385979650452334 of:0.05986705460471467 for:0.03705976493836539 In:0.0353639723651176 its:0.02899076608908624 his:0.02075131295945884 such:0.019807767780807173 this:0.019505884837709653 tho:0.01786287372485601 great:0.017544508325274277 our:0.01734383492913883 any:0.01581053676588255 The:0.013396790487565646 some:0.012606082748940229 and:0.011833659436164802 their:0.01094212326262202 other:0.009971180859883376 :0.0719644154400341 +to:0.24536204366918243 will:0.18192639689704457 should:0.07639920171519642 shall:0.07016001602849542 may:0.06669272516232545 can:0.0589951487060163 would:0.058276054950103726 must:0.05160212621771229 not:0.040828942957050085 could:0.02821927658373262 cannot:0.01670239988678126 might:0.015367804786462573 and:0.008077842470958588 it:0.006565831923635787 that:0.00540671472511222 which:0.0038060880691466654 never:0.0033010551586338146 soon:0.002907267499675415 then:0.002371397191118338 :0.056031665401615985 +of:0.16623072537883532 in:0.12239663236741828 to:0.09196449434916062 with:0.04778756630626573 for:0.040682583004866546 by:0.040153886183858074 on:0.03716114369330604 from:0.03543188633887125 and:0.030622426664259014 upon:0.026754701652783982 In:0.01882394048720549 at:0.017918163002519607 that:0.013968278255773424 through:0.013564436068157368 over:0.010566197694125588 interest:0.008114171454650777 under:0.007382467048067586 into:0.006867238772415681 after:0.006626159393914775 :0.25598290188354483 +have:0.34121918666498385 had:0.18290680833016196 has:0.18119062579376133 not:0.12151740368542635 never:0.029394664793163217 having:0.028386214352251735 ever:0.017444240044844895 bad:0.00840897170693877 already:0.008406662659324233 always:0.008046249594863735 yet:0.006814629624850413 long:0.0062074406329423555 lias:0.006041929910546661 havo:0.005560019996988102 just:0.005520820197342609 also:0.003987000984584086 and:0.003104126161552013 only:0.0030458724754593206 to:0.0027784663469255003 :0.029018666043088892 +and:0.19352956852359096 but:0.088681841439962 time:0.06813871099922693 that:0.0522882790660039 her:0.02416337733938239 But:0.02373511652240508 him:0.02133558493927679 day:0.019539447977261575 days:0.015562113113605404 ago,:0.014527453684995778 even:0.01409013976351398 me:0.013135622740079164 year:0.012597650070813407 was:0.012315435637578268 And:0.012298918188638505 as:0.011245706515628291 hour:0.010011693689659314 morning:0.00988291093221952 only:0.009832039117591933 :0.3720883897385668 +during:0.23069778003978314 for:0.1617094907909941 of:0.13501019589740695 in:0.11878484998196619 to:0.0397722709603864 During:0.03904015446238959 within:0.036519905924163494 In:0.03342208444187037 at:0.03075213789929544 and:0.017157853539181617 on:0.016768848969668935 with:0.015290523926641158 all:0.013947273755051401 from:0.013930032953450425 by:0.013923737880490566 For:0.010894259598382968 Within:0.01020569336035788 after:0.008940762520443825 that:0.008523921620665047 :0.04370822147741053 +the:0.11919516938815296 of:0.07230453158552728 and:0.05781056740443249 a:0.043018564803886335 to:0.031305092790907506 in:0.020848713353460488 at:0.014270110001066288 .:0.012526810245749479 :0.012413283442322082 for:0.011719122709941797 by:0.010808400946589808 or:0.010404172990115616 The:0.01003576004804544 with:0.009811868184449042 tho:0.009295902015355835 was:0.008924239095331684 that:0.008672304223433876 is:0.0085591147338948 be:0.008335143826716943 :0.5187411282106204 +and:0.11556519417565557 the:0.08481561130242181 of:0.07004505633234759 to:0.0341721636003462 that:0.024989712907709082 a:0.02033341508293078 in:0.0195282517879194 which:0.01857195564664746 will:0.01715996747418425 for:0.016368884390064373 or:0.014422145985509987 as:0.014111218851616864 I:0.01385069987486557 he:0.012904087368211841 they:0.012821621856491204 :0.01282033337760942 would:0.012423812591599326 such:0.011604284904520845 The:0.010395181332605091 :0.46209640115674333 +to:0.1399829406814797 the:0.12706516514617333 and:0.08364208981554408 of:0.057975312711943144 in:0.04904503099857478 will:0.048675112498728454 this:0.036229780696654605 a:0.03578110728235167 its:0.02939913487811492 their:0.029174864560775424 would:0.028070066167197323 not:0.023178047118233513 that:0.020410071901847158 I:0.020074938897234128 who:0.019660153332581722 great:0.01959341497409278 his:0.018610340917651718 In:0.01834775399695445 by:0.01679849240964956 :0.17728618101421756 +a:0.6224228701519335 the:0.06712867617242486 of:0.04996065243218967 A:0.032116031162501314 very:0.0262660987316217 in:0.020441942082095817 and:0.020077871254033784 no:0.01812623760648945 with:0.014356144768615237 to:0.012727888239124774 some:0.012450892159698747 any:0.012442591064232487 his:0.011815717071835444 make:0.01177692822652296 The:0.009990474357164783 their:0.00960168180592968 for:0.008224989491201852 our:0.007452367943127347 pretty:0.006038571665034839 :0.025581373614221734 +the:0.16962189674037337 of:0.10741271271120952 and:0.05530334927139466 a:0.04770567218999478 to:0.04102485386610737 be:0.03147063462061338 was:0.024682996579743675 his:0.023543515001817648 in:0.02104808073792434 is:0.0203294559336485 at:0.019426986104734326 their:0.01691773092384508 for:0.015378596592103477 are:0.011567728152541208 or:0.010148852985731245 this:0.009850270665409964 with:0.009837835193687652 tho:0.009629367599681745 from:0.009331059853234663 :0.3447684042762034 +:0.12268591425896391 .:0.04262530418757169 it.:0.034522380154301924 them.:0.01834089188221563 law.:0.010269063229614132 country.:0.009791958054667154 year.:0.008191042771696258 States.:0.008172514728384756 time.:0.007860611607029576 people.:0.007576621445778843 and:0.0075151502983541755 work.:0.007402866349076215 him.:0.007332176083903897 ?:0.007303165856506644 water.:0.007244822438988495 life.:0.007148310123894038 years.:0.006900663919339129 State.:0.006428183846926474 ::0.005952725724300968 :0.6657356330384862 +and:0.05972422423418725 it:0.045202270776425295 came:0.03985548917676607 went:0.03963218582098733 laid:0.03675831237948291 sat:0.03338193831311477 way:0.029412021456959914 go:0.02514702655565586 come:0.023170032827882537 them:0.020964564524078095 put:0.019891672470430662 broken:0.019585499519958572 him:0.019040927724028815 cut:0.01827042806255895 lay:0.016590498692556466 It:0.016108668361339108 sit:0.015524941651368583 was:0.013466033801191126 run:0.013246418617073359 :0.49402684503395433 +the:0.43542409475095023 The:0.09447107494005091 our:0.05260950990147169 American:0.04915157802316635 of:0.0364836977363371 these:0.03338153958036262 and:0.026189456419538678 many:0.025551718790055567 tho:0.020979674078730075 young:0.020097527553672074 Many:0.018357501217022947 These:0.017539149741504022 colored:0.015119284350727258 that:0.013987716513283557 Some:0.013410191169989231 other:0.0132659500667737 their:0.011079182912805612 Our:0.01015695934665007 tbe:0.00960035527019365 :0.0821438376367147 +to:0.17311456842324854 and:0.1252138154103732 of:0.0632891143692484 the:0.04814192299940821 in:0.027080521081306895 not:0.02377283378580304 who:0.018398955715013373 or:0.017874734156380193 have:0.014223537096137887 they:0.01364606786439292 which:0.013396832542520063 a:0.01299063482168619 that:0.01266827489005555 I:0.012638471555656453 for:0.012072387065972997 all:0.01174290220612979 will:0.011444115000182558 by:0.01029283501669581 he:0.010197349127542416 :0.36680012687224545 +of:0.33251044307741384 in:0.10241058054303517 to:0.08421614338599731 on:0.06630208599135187 by:0.05111272369229955 and:0.039926821687137924 from:0.03577224487908128 that:0.032544595195948774 with:0.028039721943427798 at:0.025811222363809287 for:0.02429248430821039 In:0.01975319732518513 upon:0.012947816654056341 into:0.011364047429371764 through:0.007966996210080122 which:0.007799791556584904 up:0.006686972137777031 when:0.006299021960424104 over:0.006098870828500368 :0.09714421883030702 +the:0.7477488296592738 The:0.054597725776482274 and:0.04084980766701417 a:0.03459784952666905 tho:0.024077312936444936 tbe:0.009657555927632937 or:0.008791455354970213 their:0.007510195095999033 great:0.006310647151169404 by:0.005998042153447439 of:0.004621589183770383 his:0.0038011804139195006 an:0.00324585387935772 other:0.0029203730750827143 two:0.002821430885675146 large:0.0026573315660955786 its:0.002610481077673486 in:0.00251925996736603 per:0.002408805857712526 :0.0312542728442437 +and:0.10107554997058603 made:0.07845868718194748 that:0.025778739191458205 required:0.024968858310042034 or:0.022450300252012254 secured:0.01856296464143732 ed:0.01743540695550729 owned:0.016446432654893567 executed:0.01610147210497624 him:0.013655124634244733 taken:0.013640000687132711 only:0.013191080725374262 but:0.013155535075090234 caused:0.012778572277219435 out:0.01214275707555095 delivered:0.011321538513455149 held:0.01125944751514561 given:0.011118485268409426 provided:0.010874737201578888 :0.5545843097639381 +and:0.12705109110464421 it:0.10102151337410827 It:0.09093414692054978 he:0.06911257518679313 the:0.05950827149126375 which:0.04186515139552793 that:0.03909967315585296 to:0.03588456571910626 I:0.030736675641600167 there:0.02473424971009751 they:0.02121078036866864 of:0.020470925596559556 who:0.019261625722601153 she:0.01850141958483498 also:0.018324478655938243 He:0.017287886102915734 only:0.017002899569576964 not:0.016409990286521934 this:0.016375909549825304 :0.21420617086301352 +is:0.130697406715243 most:0.11671942481410093 be:0.0801303786686837 a:0.07926709364129435 was:0.06626142540520791 and:0.06515323833638055 very:0.062146066311962934 are:0.052584271096199994 the:0.041472579510625475 more:0.028853337919342463 not:0.028611913780429103 been:0.023880286980991938 some:0.02387921444477604 as:0.017023415557437006 being:0.016954381230768787 an:0.014753271917765782 were:0.013998305208004982 of:0.013963952688388223 un-:0.01325533083300906 :0.1093947049393878 +of:0.29119941261109067 his:0.14628565814292016 in:0.08058314141950941 my:0.05069470262421369 the:0.04267128992541884 their:0.04231425962607456 her:0.031073193730786843 for:0.029263520452620984 its:0.024225878185136777 your:0.022110972919443896 own:0.01967779093008071 on:0.01771735321070976 our:0.017321946742746095 human:0.016986781859808175 In:0.014749324136666207 a:0.012889272661689778 public:0.012574002291650909 political:0.01217878694649053 private:0.011752504871904814 :0.10273020671103722 +to:0.12022893700269083 and:0.09020394424291768 the:0.08587503820055309 of:0.06450042443224316 in:0.0310058468700829 a:0.017742048521183405 :0.015548046036689871 not:0.01491307651316237 that:0.014112408707955496 for:0.013734482372212283 I:0.013065769926808477 will:0.012848502316304782 at:0.012837991177321897 In:0.012628718855091186 by:0.012491091048660757 be:0.011425930130217754 is:0.0113962101007567 he:0.011342727513475473 or:0.01112522537451577 :0.4219735806571561 +the:0.2097079808828789 or:0.10846881142322926 and:0.1004150753572414 of:0.09861344736369257 a:0.04429395003180054 in:0.036764897549828285 for:0.032239628469171645 to:0.02940779292027702 that:0.028192472489943287 by:0.025553641363911167 with:0.022967098741609633 The:0.021680279292594556 some:0.01991718261718889 any:0.017705782903697988 about:0.017050752192006403 but:0.016802961660925805 from:0.014337551159526047 make:0.011291829381771817 this:0.010489376377485765 :0.13309948782121903 +the:0.053921039936904384 Fifth:0.04654773974519006 Mr.:0.03851660422107646 Pennsylvania:0.0338197636393401 of:0.03251069223719005 General:0.03091549344078397 said:0.0308396524447161 Central:0.0202893358505894 and:0.018995808471385628 Sixth:0.016937279641837746 Summit:0.016835589590484062 State:0.016394818697532693 York:0.012703638895776323 Seventh:0.012548675733151179 Washington:0.01244124047566665 :0.010888586130613742 in:0.01074717127752496 County:0.010233718134511368 States:0.009780922436710453 :0.5631322289990147 +the:0.4071374189315913 and:0.06449181461132415 of:0.02892866618288876 in:0.028670005984162618 The:0.02603617389223924 tho:0.024993820467459137 a:0.023579040051412606 to:0.01755553213771617 on:0.014626070241060114 by:0.013447843485786471 or:0.012794166593089693 tbe:0.012024509152999897 :0.010353482361299817 that:0.009291482237329618 In:0.007938246807075932 from:0.007526799010378873 other:0.007469196869028889 all:0.006409533041696086 for:0.00626887758057738 :0.26945732036088327 +of:0.24624174174130234 in:0.15233419635174397 with:0.07209962206044111 for:0.06526619114844444 and:0.06127135419470152 to:0.05364130779861319 on:0.03977101205970976 by:0.030948282869011204 that:0.02972081874105684 upon:0.022279521870557446 from:0.020436843441914255 In:0.01992031331941794 all:0.015426595105923131 pay:0.011603110180513148 made:0.011063197603126084 under:0.010221572669321553 up:0.009549103731118199 or:0.009262698713275796 as:0.007005254250620412 :0.11093726214918767 +the:0.044617464870099856 Cedar:0.02945130741726004 City:0.026549926381901897 ex-:0.02566364245300925 School:0.024166774175806236 said:0.02245726089484697 Spring:0.020720822183051817 Grand:0.01764342733099367 an­:0.012743375171368415 and:0.012639972522519994 of:0.01251854648808104 due:0.011241831567163968 ex­:0.010914863686491652 ap-:0.010526676851427918 a:0.010065707419855881 .:0.009868256115681196 per:0.008668790954904993 Summit:0.008666145499043347 ap­:0.008527531515422088 :0.6713476765010699 +and:0.09500881008555331 well:0.06206658951236029 regarded:0.036935028935535894 him:0.0314142794209011 known:0.031077052056542338 soon:0.02700320061470986 it:0.02623085774473942 is:0.02438162343435629 but:0.023839390993020203 used:0.021720637341540703 far:0.02045890976727103 just:0.020384524333195254 much:0.01971667289504282 such:0.019521581813054578 them:0.016090407278819097 was:0.015694381145043425 so:0.015081118446204548 act:0.014529263549522683 that:0.014487886332689187 :0.463357784299898 +and:0.09851825011289815 are:0.09721820555672848 is:0.08437862815785532 not:0.0776918129233226 was:0.07469310225214983 been:0.0559374627028332 be:0.05546093751187031 were:0.034149586944617207 or:0.03254080619740063 do:0.02499100475159653 for:0.021028941154991394 of:0.016576046194483923 as:0.013847890499783685 person:0.012227295158721308 become:0.01212459234622134 that:0.011989410575824666 Is:0.011919722158070306 have:0.011082025863301394 but:0.010373462165817615 :0.24225081677151214 +of:0.09129790931378902 the:0.07369883040827747 and:0.047842263382354346 in:0.04189055351593407 to:0.04045875475680249 a:0.03542341257202578 be:0.02020462051672066 for:0.01979292654746225 was:0.01760256398103379 at:0.017380150555488715 is:0.014984483003968216 with:0.014047653760730413 by:0.01374644383819499 :0.012670486581795598 In:0.01200961464556976 or:0.011563835749786333 from:0.011391516893522809 are:0.011273104484969465 that:0.010755276030689069 :0.4809655994608848 +and:0.23514502798347278 of:0.09252932309147176 to:0.044160591967285966 but:0.04020231179082585 fact:0.03846091775640808 so:0.034241407796420424 all:0.030846231661984847 than:0.02631675990523605 in:0.026308288668423593 as:0.026165970970935856 that:0.02549743254158099 for:0.025007405841041948 is:0.01725015735514656 said:0.016450642162642526 believe:0.016233335523715947 by:0.016011202784186013 says:0.01555412820688111 with:0.01285212188076649 them:0.01187152624700933 :0.2478952158645639 +the:0.11919516938815296 of:0.07230453158552728 and:0.05781056740443249 a:0.043018564803886335 to:0.031305092790907506 in:0.020848713353460488 at:0.014270110001066288 .:0.012526810245749479 :0.012413283442322082 for:0.011719122709941797 by:0.010808400946589808 or:0.010404172990115616 The:0.01003576004804544 with:0.009811868184449042 tho:0.009295902015355835 was:0.008924239095331684 that:0.008672304223433876 is:0.0085591147338948 be:0.008335143826716943 :0.5187411282106204 +the:0.1449641844563986 of:0.08710595808597107 and:0.060639991043772136 a:0.038971050768985306 to:0.035497607287402144 his:0.022269846080904755 be:0.02150484315278025 my:0.020367185734705945 I:0.01891633058414471 in:0.01859493769918256 for:0.017350580101599025 was:0.01676359899750709 is:0.015084084537449449 their:0.013269247511876204 at:0.012718929570411921 that:0.01170468572340591 or:0.011400632554895979 it:0.011330438956791117 :0.01130401752938815 :0.4092418496224277 +;:0.01458927046758731 it,:0.007973265891266864 him:0.007834970369143835 one:0.007240974664279108 in:0.006989508095588829 and:0.006417396987522371 ,:0.006059091806132192 it:0.006014614548599763 up:0.005812344146302806 out:0.005395853159197619 them,:0.005290532062834904 him,:0.004938420268273817 city:0.004793760033506698 :0.004646491011450349 man:0.004641061555670736 country:0.0046164671969483135 feet:0.0044416267197611185 time,:0.004376787347733258 time:0.004358244018157902 :0.8825693196500423 +and:0.12755870104695938 was:0.07132744553797687 is:0.05914713534704807 are:0.047909521667920556 be:0.02795697918878427 but:0.025596247586605128 up:0.021110189391686723 were:0.021064227794650583 out:0.019547400580600192 made:0.016212253325991275 or:0.015878855538930762 not:0.015726415921715056 him:0.014890061268942203 them:0.01466980859277868 that:0.01414787406639134 been:0.013934472698973237 as:0.01314623899890377 well:0.012300768757537087 just:0.011635213050839243 :0.4352401896367656 +the:0.3395309697284479 and:0.13272756146937076 a:0.055783567177868275 in:0.036671144716881585 The:0.0347881564284085 is:0.029517896717910334 was:0.02934516947911284 that:0.02741668490280657 of:0.02388044497549941 by:0.02308050783959251 tho:0.02252959213830035 as:0.02064830285610014 or:0.01746781326282693 are:0.015382108299251317 were:0.01297644307027557 In:0.010707726409090552 tbe:0.009313666687412604 with:0.009234029947501252 than:0.0091709828336882 :0.1388272310596544 +of:0.09765535626679565 the:0.07641781695148463 and:0.0752139170659539 to:0.0643193272483591 at:0.029617084205805156 in:0.026573874333900863 a:0.025840962792600022 was:0.01872968508500593 or:0.018592776008804764 by:0.015824781332406286 :0.01564656477959402 is:0.015094956602038282 I:0.014399397883698995 for:0.013782831219621688 from:0.01356212366395371 that:0.012683815177341474 Mr.:0.012208507134509782 be:0.012186760557227639 he:0.0109028216960624 :0.42974663999483576 +well:0.08020868841895376 and:0.07022151432464034 soon:0.05564978532093317 known:0.05420103439012692 far:0.05024477232500595 such:0.026649154106244705 but:0.02363510430821325 it:0.022935968513919828 just:0.021795531301951422 long:0.021077267129921 him:0.017576289050958732 much:0.016435962390607056 is:0.015615463031470017 that:0.014915152441996168 described:0.013297269329769068 them:0.011215978898586127 And:0.010871800761260276 so:0.010665762765121847 Just:0.010588323568636464 :0.45119917762168393 +be:0.38031985921273803 and:0.07535324780041275 was:0.07183072232194172 is:0.060048424944499926 been:0.04953731641273241 are:0.04255054572882466 as:0.03967455661633145 were:0.02770520592172324 he:0.023364318455674632 bo:0.015494757271502157 being:0.015338220299596512 so:0.01331969457015528 it:0.010707146487316244 not:0.009698940160804309 have:0.00918449003441812 who:0.00780523493896577 they:0.007245932056548675 Is:0.0067672890936836694 had:0.006395441148405915 :0.12665865652372452 +in:0.18455906210925888 at:0.164711823563037 of:0.09257966199757778 and:0.07858520830516827 for:0.06307409246819302 to:0.06012989665592156 In:0.044133557693968054 nearly:0.0436336824720742 that:0.026334073791113514 on:0.026132441527849028 from:0.02232484287787996 almost:0.014613025121949 over:0.012706351989223407 with:0.011308386749491013 about:0.010669033548688662 At:0.010080314302520507 by:0.009396459610182057 but:0.007590376023082924 or:0.007462506916735416 :0.10897520227608576 +and:0.1667760010401051 that:0.1141938924867346 as:0.1103109237810446 when:0.06163630832387742 which:0.0548045973620563 but:0.05300980373532296 did:0.05148119804412322 if:0.03324282210341691 what:0.03304541797995353 time:0.021094864729597814 whom:0.019135966480972877 until:0.01748821874633436 before:0.01727005893806775 do:0.016159636079281843 where:0.015960886630124706 will:0.015930962999160452 If:0.015768610888205914 When:0.015130888840247481 could:0.014281202657284078 :0.1522777381540881 +the:0.24455209225391034 and:0.04976837798711011 of:0.04754310582954642 The:0.03187844214939807 to:0.026733754572503484 or:0.025291223083385665 at:0.02400597805616577 a:0.020729399333408845 tho:0.018228524212006353 his:0.01676622681417034 these:0.013228679140865424 other:0.012144193308820751 with:0.011461555265965637 their:0.011447500915496813 on:0.010289975589510912 same:0.01015067054532289 by:0.009927974178811298 all:0.009562811330604763 said:0.00914400197416514 :0.3961455134588309 +of:0.1101519159456249 by:0.03789001556652842 and:0.026691396304904934 :0.026304651736789232 the:0.02214782397478236 an:0.01959459586581856 with:0.019278077650153005 Mr.:0.012994830399045513 Mrs.:0.011629196394821519 -:0.010497861013352346 .:0.009724386071144802 in:0.007879431236384868 to:0.007285076358877262 that:0.0069896816895202865 a:0.006283480033098802 said:0.005716576042886003 A:0.005488943643437067 Baltimore:0.004958809626884412 The:0.004834224776107896 :0.6426590256698378 +person:0.026280808147078533 men:0.021255139822015566 man:0.018235525664315192 two:0.01172725383005003 more:0.01145994709277678 child:0.011430668344559284 one:0.010729699357591804 and:0.00967132799707763 three:0.00908704437858163 city:0.0063863308303459786 home:0.005911800482472645 him:0.005851279077096536 in:0.005385487104039572 of:0.005314124327870487 son:0.005155414893413834 at:0.00496592086176878 wife:0.0047740444237469384 owner:0.0046158357026180475 them:0.00444902862095518 :0.8163133190416255 +and:0.1171680700138982 they:0.09599516244308642 to:0.0794568327438803 I:0.07934069736876241 who:0.0725252962612234 not:0.071439751080992 he:0.057400121015398535 we:0.040076086325534374 it:0.03527543110104996 They:0.027571136834550505 you:0.02574434159377317 is:0.02527824428844959 be:0.020753435190263275 We:0.02065954975056038 was:0.01942287535622813 had:0.01941983008758376 have:0.019347154526682245 the:0.01811489502287237 never:0.01781119849169877 :0.1361998905035122 +the:0.48125494985684286 a:0.2002699146246598 The:0.08613957689951134 tho:0.029863252510910328 this:0.023675348704935033 an:0.01804764551790103 and:0.015771993145448374 in:0.014760284918902113 his:0.013984853411430617 its:0.011341554534145324 to:0.010942715789866874 of:0.010395245172382172 tbe:0.008591623799006074 her:0.008206135562032906 very:0.008150308131305352 their:0.007416630888516068 our:0.00703792852218362 most:0.006952345997259073 was:0.006877878874376727 :0.02931981313838432 +of:0.21705529675002308 the:0.15125684598919975 and:0.07762294251904704 in:0.037195070713200315 to:0.032458157322535576 a:0.028637443711082 that:0.02554270220573299 by:0.0232415400403714 as:0.021041752270714816 for:0.02095716019170065 with:0.017133654928223677 or:0.015325774272918032 all:0.014235709498362475 on:0.01318178794929262 The:0.011070428147312643 which:0.010081035399830553 other:0.009936687709513543 from:0.009836756936532184 tho:0.008788386286958643 :0.25440086715744803 +it:0.25795091556569183 It:0.1841668582633794 there:0.07780684915766627 which:0.06427553076936927 that:0.045025795459752646 and:0.03989175046273278 There:0.039047733848291535 he:0.03382492325125824 who:0.028891410242579896 He:0.013695083550543479 This:0.011438488824504506 this:0.010836719878876612 she:0.00814621497554778 what:0.007890117594615739 as:0.007415727542466598 time:0.0063906444872032665 but:0.005702160365131986 man:0.004781011297390706 work:0.004506504757460885 :0.14731555970553656 +the:0.17234101881375233 and:0.0723308580507978 a:0.06418362524859451 of:0.059381903314211774 to:0.05765128534513001 so:0.0292258426364823 is:0.027247612130850953 in:0.024298181821023074 be:0.020836055953937775 was:0.01790457325883464 Mr.:0.01622639783612973 tho:0.012553953887538211 I:0.01099826163396415 he:0.010910273396485398 not:0.010754844629789139 at:0.01064958641021041 :0.009679095332540733 for:0.009454446178783427 or:0.008882500654999364 :0.3534896834659443 +and:0.06317916895143688 was:0.03089079697380977 is:0.020044819943736053 be:0.019406329289829806 are:0.016631216139614186 that:0.015910745835586493 it:0.014132589635136123 been:0.013429954470292457 made:0.013153338042273357 were:0.012494049396038097 or:0.012369181282419555 them:0.011608721240324167 up:0.01101461536327863 him:0.010833186604515583 as:0.010718511743974049 succeeded:0.010682665877813333 engaged:0.010592681714621757 not:0.009777868089593193 now:0.00948198968071834 :0.6826475697249881 +be:0.18438137551872985 is:0.11398992414790231 are:0.09998916619437352 and:0.06921203337309446 was:0.0582105281875664 as:0.05507731187357956 the:0.052766893781297085 been:0.0375912914483557 were:0.024385524178369377 being:0.019309752261168846 not:0.017223274624421202 amount:0.016789907451274767 he:0.013770050440900664 or:0.012398785379642499 it:0.011221672559014729 well:0.01114272636580685 Is:0.010850496951855375 a:0.009971378018604397 land:0.009142332399585793 :0.17157557484445662 +the:0.44567888584791493 a:0.13683273590607342 very:0.06471884184852243 The:0.04492457955366232 of:0.03199424003180295 are:0.03192951705888395 tho:0.02548579013564245 is:0.02155392188639399 and:0.015463143296924237 was:0.014518163794395755 an:0.014241572847650229 this:0.013602559358628679 no:0.013321460094346598 most:0.01328738593491903 tbe:0.011908386557731977 our:0.01160979909510256 in:0.010974256852800218 his:0.010343840437006584 their:0.009910330491359863 :0.05670058897023782 +and:0.14552672195574162 so:0.06496359587318441 fact:0.04198852806736786 said:0.033701618560480394 him:0.032434115880692296 say:0.03195538349887805 know:0.03188283579748818 me:0.03074681574459109 but:0.02658746896399616 stated:0.02615720427776993 is:0.023801860973638917 believe:0.018339581553100465 says:0.016351931065510965 was:0.015992269398404788 told:0.015608137892875854 her:0.015069943340674711 order:0.014822381703059065 saying:0.0143462019034254 see:0.013933502089313658 :0.3847899014598062 +as:0.06931392982974462 according:0.052071562389565784 up:0.0511867300210483 and:0.040371568633051955 went:0.03351644485287816 back:0.032358406609281 regard:0.03073407747799069 feet:0.02852138506231652 down:0.026379903432040268 owing:0.02466642634685871 due:0.023695193974505355 go:0.022910973192184297 reference:0.020802802907016128 came:0.019883741951819873 sent:0.019874244915639484 attention:0.019565955494145405 come:0.01885185084678811 given:0.018792390567602263 it:0.017366961307524745 :0.4281354501879983 +and:0.07107254211066852 him:0.037576070097954765 together:0.02864242487956097 up:0.028293591106789195 it:0.025008659165645007 away:0.022861804357216454 do:0.020906332219331726 home:0.019882153769239706 acquainted:0.01955213549078429 them:0.018170683333591113 connected:0.017812759364084534 back:0.016191040301942298 out:0.016129614089277124 go:0.01610674877417677 covered:0.015591990272495047 her:0.01417529591446937 man:0.01398201636447347 went:0.013274059174442118 was:0.012842436552831326 :0.5709276426610261 +the:0.1738136803481181 to:0.06258106985383055 of:0.05974432738991578 and:0.04586649055320511 be:0.04271499083322845 in:0.026904000669720683 a:0.02406286983354681 was:0.01783731877091655 for:0.01698142521252238 will:0.015121245127966199 their:0.015060087612281385 his:0.014914080622146626 they:0.013851607065372175 he:0.013172253019503427 or:0.012891868682366968 is:0.012859194488187 been:0.012311729066238567 were:0.011713599863726465 are:0.011194002432209086 :0.3954041585549977 +the:0.2632449516326034 to:0.1766805998102677 of:0.09006731196312918 at:0.06669542992726434 their:0.04811365418051138 his:0.04396528042343723 this:0.025036736762626972 and:0.021346665879582744 for:0.019794685119015273 tho:0.01649850917584803 hard:0.014778118022587845 our:0.014656669054238586 its:0.01462764463550563 all:0.013846745354319522 a:0.013168371524220955 her:0.012043295597791227 good:0.01180148826510042 my:0.011064745434681904 your:0.010461937923919976 :0.11110715931334765 +it:0.0336270771310972 It:0.03128496143673688 is:0.024546254027453213 and:0.02451941122801344 was:0.020322888737443177 :0.01694268634694297 further:0.013267544513870178 -:0.007385413036360042 been:0.006752749116422034 be:0.0062508908498637465 the:0.0059002414418453854 He:0.005554632589432547 Is:0.005410174594542249 .:0.00510853449305714 are:0.004953716471749646 :0.0048892351809009015 ;:0.004874100683984849 but:0.004815501714833786 so:0.0046797497791882196 :0.7679142366262625 +he:0.27837652433965515 I:0.10836206820773632 and:0.07971583761185937 who:0.057086861370197375 He:0.055307891971792686 she:0.03566321455191449 be:0.03353656805880861 they:0.029345834467109155 we:0.024123289395227978 it:0.01875653281920742 which:0.01835873550284993 ho:0.014205798323788309 It:0.01203044280387619 1:0.011983318017676325 that:0.00997903834949344 She:0.009454021549115949 :0.008887061945148612 lie:0.00880610470142678 one:0.008125327940195002 :0.1768955280729209 +a:0.3453026116604703 the:0.06234164613677059 about:0.051541835353681446 and:0.04705508760986685 than:0.03853352473326114 in:0.037218112977297976 of:0.029990995973642923 one:0.025229286329450505 at:0.02461899834610831 or:0.021932972094076193 for:0.02054538245817684 to:0.019279114158840135 A:0.01889843567283751 west:0.01622154026559563 over:0.01582006205051741 within:0.015496830144942977 east:0.01314765584826839 south:0.013023540381739048 with:0.013004482982479023 :0.1697978848219768 +.:0.06697540854548728 the:0.04400840463777622 to:0.039288169270747145 of:0.03858773395192355 and:0.03778027064917381 a:0.028326396249789335 at:0.02642121247544544 in:0.020013456925078953 was:0.017927249539586854 Mrs.:0.01478870250678956 No.:0.0147526381725335 W.:0.013917241872850135 be:0.01305668281349538 J.:0.01150001996255925 Mr.:0.011321038108706077 A.:0.01099828487619875 is:0.010443333230022594 C.:0.010145848917583885 :0.00956615732297359 :0.5591817499712787 +on:0.19709967973890377 of:0.17475769710479727 in:0.10653753795420527 at:0.05605389314504545 to:0.05505855680138576 from:0.04421545690731338 In:0.0407252720016951 On:0.04018740774415644 and:0.03315941548242292 that:0.02698256662678146 by:0.023950031065887497 for:0.023241138459622723 upon:0.020181836849632442 with:0.017194904532537126 is:0.013177942509670986 do:0.011655527709137846 From:0.01138882441463245 At:0.011299570854429624 was:0.008692608537960842 :0.08344013155978164 +the:0.06362297947929751 of:0.0609755042161037 and:0.05056791184722039 .:0.03461390233329734 to:0.03363215279863524 at:0.024377587483063953 by:0.017414497336706726 :0.01714497652410474 A.:0.016117385026554982 H.:0.012112900643132972 a:0.01180627600082756 Miss:0.010137517800575946 M.:0.010130980406831932 W:0.009954908066955316 S.:0.00940269606548084 from:0.008954664300327476 W.:0.00893668427008816 J.:0.00891092803745838 Mrs.:0.008647724874272879 :0.5815378224890639 +any:0.07302075181689303 good:0.0652810295866043 to:0.061164626620395506 in:0.060808337690144765 of:0.052887515102159166 and:0.052533092284111384 every:0.05025958446083982 some:0.04710432039791655 the:0.04476482436871797 no:0.0409369070411355 other:0.03759644227631941 that:0.03578722827179543 one:0.03172858002036817 a:0.030424586736793074 first:0.028439085267470694 this:0.02611562614001631 or:0.025987649841722336 long:0.025855800996132175 their:0.02582125787425019 :0.18248275320621424 +of:0.09180327590091512 the:0.08704392345264056 and:0.05028553387910976 to:0.03971470743914892 a:0.033346211002626726 at:0.025904757386540782 his:0.017851249766701414 in:0.01742950073752589 is:0.015513218102514145 for:0.015233738043563084 was:0.01344727231219973 :0.013096887391641368 .:0.012989086604713972 I:0.011604169198481697 be:0.011583875001198117 1:0.01055199628515836 by:0.010541636001383357 Mr.:0.00920364089982067 their:0.008754647324319735 :0.5031006732697966 +the:0.12770449798329372 and:0.07676572475370608 of:0.045123471847714265 in:0.03559805491100109 to:0.029000539712499895 that:0.02693772677493349 which:0.017521055946676356 or:0.016592138577364267 :0.016494861857150826 for:0.016241026064322595 In:0.013348767892415715 he:0.01269890896992827 this:0.011944397841347432 dis-:0.011145096867037988 re-:0.010450122709738998 a:0.009780095818039987 Mr.:0.009558468159733392 as:0.009302926958874724 be:0.009211136467832724 :0.4935809798863882 +contained:0.1214065477041106 described:0.11697581034939604 stipulated:0.0902606577706034 recorded:0.05041234562811227 and:0.04921281965097254 situated:0.045365543399596864 interest:0.04213794919166823 interested:0.03417650284169929 filed:0.01711158395574566 published:0.016505039893262952 thence:0.01557506244353907 situate:0.015306072383837781 due:0.01479840732452386 was:0.014696680024093448 land:0.013781594300641934 specified:0.013350493038563782 Morris,:0.013238332800187252 sale:0.011770162588043224 property:0.011386339702986716 :0.29153205500841506 +the:0.11919516938815296 of:0.07230453158552728 and:0.05781056740443249 a:0.043018564803886335 to:0.031305092790907506 in:0.020848713353460488 at:0.014270110001066288 .:0.012526810245749479 :0.012413283442322082 for:0.011719122709941797 by:0.010808400946589808 or:0.010404172990115616 The:0.01003576004804544 with:0.009811868184449042 tho:0.009295902015355835 was:0.008924239095331684 that:0.008672304223433876 is:0.0085591147338948 be:0.008335143826716943 :0.5187411282106204 +the:0.13090686708169955 and:0.0860448300863519 to:0.06878568445903038 a:0.06222653283777785 he:0.04925106178676917 I:0.04589212290917906 be:0.04567434580869153 who:0.03713875026211653 had:0.03373577834631703 have:0.03291737171321939 was:0.0254599000265372 of:0.0233087312840418 for:0.02312134425464438 or:0.0218166507790226 will:0.019387170458677782 has:0.01901266491724249 they:0.01737029657914786 by:0.017244523809685844 is:0.017168834288726065 :0.2225365383111216 +east:0.09517880928604408 west:0.09212541821053043 north:0.045771148026272294 and:0.04294314052026225 the:0.040364792637485374 E.:0.03948492585370003 south:0.03890454654399203 of:0.03693690037685393 W.:0.036104608749672334 at:0.02402414812653016 .:0.018011938846967623 S.:0.011939525390594292 East:0.011728187587899017 W:0.01167494040906099 THE:0.009970908147734815 :0.009271935900814335 east,:0.008885582891788547 a:0.00880708186906071 about:0.008645341108373495 :0.4082261195163633 +and:0.1758527804072715 by:0.11565686836286597 of:0.11535408618884994 is:0.08963950324405805 in:0.0533574893073481 was:0.052314838270503296 so:0.03006566200923763 as:0.02790818598404634 to:0.027363632906045262 with:0.024521937713168386 are:0.021786025520882497 but:0.020377404735281813 that:0.018692017781260752 be:0.018220282826719347 without:0.01779778609891065 not:0.016384102691154034 the:0.015328829798790074 Is:0.013113878331414471 for:0.011824943627917693 :0.13343974419427415 +the:0.4155074880130723 a:0.09874599059639384 The:0.07072770745504253 this:0.04666226463021921 these:0.03043420466606309 tho:0.026182844552120308 of:0.01846234108684294 two:0.015757193478413086 and:0.015285199823250765 These:0.014029377832674177 such:0.013427272185757639 that:0.012456955533013016 new:0.011373109165349784 said:0.011349321388135542 our:0.011314091133483131 county:0.010530762727205241 other:0.008816456036173188 old:0.00807663699050959 This:0.008057642012189736 :0.1518031406940909 +the:0.22376978466271005 Mississippi:0.04330733113411467 said:0.029724525818848272 Potomac:0.023313028032405477 Missouri:0.021939124579652313 Ohio:0.020537760588279986 of:0.01591667162717759 tho:0.014862096497315189 and:0.013947597172257221 The:0.012304844159767727 North:0.012020525895827971 Snake:0.009492854898547662 James:0.008241263710709905 South:0.007452650064784661 an:0.006740958193157699 .:0.00668136614397588 tbe:0.005575057173374005 City:0.0048436476898993325 a:0.004632546625351622 :0.5136963653318428 +a:0.1774169146104415 of:0.12962270192451267 the:0.07241639300944931 their:0.054135579869898955 and:0.053979673326781656 his:0.04476607346546143 our:0.032861885253979074 with:0.029000794832316042 for:0.028797721367047762 its:0.028291156810915857 in:0.028159686062270914 her:0.026131419485231386 great:0.02446640800613495 to:0.0224238077987619 other:0.020131549408081234 good:0.01967050583106424 no:0.01809575276748829 as:0.016557316153469757 more:0.01484678537308006 :0.15722787464361299 +and:0.07558940021936399 recorded:0.030196237618668006 was:0.028917161578042846 made:0.027969746247669736 that:0.027730098932509103 o'clock:0.025060522019555328 up:0.023026552239529506 is:0.020398277211376416 found:0.02003101797656537 placed:0.017482208134164214 out:0.016937164562539058 place:0.016819459500107596 interest:0.016629321966808677 him:0.016002796715253755 situated:0.01573420479581609 it:0.015128305982428461 them:0.014715943643665314 part:0.014646613000297721 interested:0.014450471929902294 :0.5615344957257364 +he:0.14310369022750694 it:0.11130990705288764 they:0.07892028322034934 I:0.06922591899986383 that:0.060100073084607714 It:0.05946011763411077 we:0.036316425751995396 which:0.036236228689137596 and:0.03553735421997305 she:0.03359563137184539 you:0.028952414365320575 who:0.02587827559873309 there:0.024204570205481602 He:0.01604217147798961 one:0.012579625274040624 what:0.01157528461570685 This:0.009914422079096447 ho:0.008797666808088172 1:0.008575266563447025 :0.1886746727598184 +of:0.15001978805121516 the:0.10326636891820187 to:0.05565117757264274 in:0.04700681240562653 on:0.034996146966053354 a:0.033391981188149726 and:0.03190554782585787 by:0.02967366225681499 for:0.022470497000783875 at:0.02136791365408333 from:0.020744796043924717 :0.018323042466618207 with:0.017673169643652495 In:0.012901540561780656 that:0.012044439254854182 his:0.009262639664989396 our:0.008764803121566982 their:0.007992395057661276 as:0.007965268573817286 :0.3535780097717054 +a:0.19673378380989273 the:0.19319190587153054 his:0.07403817877329627 and:0.05876091307563569 of:0.058524557905089016 their:0.057895514106466206 your:0.03067897805815598 no:0.029169935055457594 from:0.0219858280808817 its:0.02163941938687569 with:0.020562025598571235 my:0.019419912977705834 or:0.016896678784129315 for:0.016708335753840703 our:0.015671046015033628 in:0.015120392312497814 her:0.014721212718791704 any:0.013315992622589685 by:0.012521982441319706 :0.11144340665223894 +the:0.16229464371185442 of:0.09689915013145636 to:0.07387305762159362 a:0.060254623052539355 and:0.05399876218575258 The:0.03015129648593793 in:0.02743616186550803 an:0.02529927412534343 or:0.021484274685703766 that:0.021352423811071216 which:0.019942065684310697 said:0.01616225408568237 at:0.015456070517799745 for:0.013641404158185863 on:0.012946978846731766 from:0.012491624399503408 any:0.01241300381213621 :0.012187289718715353 with:0.012105950208103773 :0.2986096908920701 +the:0.6001101535553895 our:0.03850530100425252 a:0.03485816730093835 The:0.03459437466842512 of:0.028347817335825302 tho:0.027435360910968196 American:0.020663154302957284 and:0.019437709910525472 his:0.018840715075858494 this:0.018254918587456197 tbe:0.013284587063551704 their:0.009540805208472239 other:0.009207947168060813 my:0.00861463722655688 said:0.008398276339620394 in:0.007553090445745635 your:0.007076169109486226 Southern:0.006996047106541905 own:0.006469705676532171 :0.0808110620028355 +of:0.2852517240182517 for:0.10762654262762414 in:0.09554280583642616 with:0.0800693429674358 to:0.056219357426014804 by:0.04697854027535928 from:0.03839860638147223 on:0.026752139283026447 upon:0.02207932158840823 and:0.021881920018657845 In:0.02182155337704653 that:0.013492790707782427 at:0.010362617150311889 before:0.008911676580888058 after:0.0078416444644896 through:0.007734429180295219 have:0.00543648953852544 into:0.004986370652829176 :0.004584460325746361 :0.1330276675994086 +one:0.06754190432163522 part:0.05231163511576496 out:0.04609588594236959 some:0.02740306976054911 side:0.02387622494371665 end:0.022518288784217105 members:0.021845751933956114 portion:0.02151370006345736 all:0.02022572610903207 people:0.016238426460010967 and:0.014555909544903867 that:0.014078768366257871 day:0.013832139668816516 tion:0.013547994796857001 front:0.013380738665131557 any:0.013269620285130524 member:0.01265082101866512 time:0.012443834037564471 office:0.011845495219016932 :0.559824064962947 +the:0.09684081064840576 and:0.06551335624548284 of:0.05146145169206151 from:0.049520598669154245 a:0.045427902131977435 to:0.0370403239153822 be:0.035669151526387034 was:0.030489628475080553 is:0.026635804908522978 in:0.023878514238638158 are:0.018513936943033917 not:0.017945708099223703 or:0.017556265685966497 been:0.014265228721347686 at:0.013857211504087178 he:0.013733215789660087 were:0.012396679125422956 I:0.012347944480187516 for:0.012197989992860347 :0.4037082772071174 +:0.04791193238271715 it.:0.027217885933380606 ?:0.01714937459568808 them.:0.00963539933506636 I:0.007574820838174484 him.:0.007017640676697567 country.:0.006836750561723919 .:0.005728923425116316 her.:0.00555212061291945 world.:0.005030884023111052 life.:0.004966717484976751 and:0.004845100841379188 time.:0.004580222394327996 :0.004464246098600461 that:0.004286893980635608 people.:0.004106567900448962 year.:0.003686645301144676 day.:0.0035719655922969414 1:0.0035153099874476288 :0.8213205980341468 +the:0.21196110216325734 of:0.09007947991124152 to:0.0494045857039621 and:0.044961225652543964 a:0.04093285293209737 in:0.031208697335031798 for:0.02569775907720898 that:0.01610377206487489 on:0.014193549109132085 at:0.013826307516621658 or:0.013472535660999008 tho:0.012771312256321159 as:0.01150564523639716 was:0.009760257721278526 :0.009697555077281726 his:0.009017927334865582 In:0.008697376174153996 be:0.008503300345228351 The:0.00832718587413917 :0.36887757285336364 +of:0.3239840137787172 to:0.11558561350358398 in:0.07944515113628788 and:0.040970145038286006 that:0.03986867130737126 for:0.03867022543075874 by:0.034210295754256194 with:0.03233242383761381 all:0.029699214418435288 from:0.020910547821216822 is:0.01801065825115043 as:0.015771939128917282 upon:0.015323570084189013 In:0.01517519727109526 was:0.01237662548769572 on:0.011962226544930015 when:0.010584810612673997 but:0.010073484525670322 which:0.008950080083341081 :0.12509510598380966 +well:0.24836000466109087 be:0.18641580769784327 is:0.11796398401380709 not:0.05786381283020681 was:0.05654040707949133 been:0.03935260530814872 un-:0.03820263317843092 are:0.02679678117168663 became:0.026654395783186145 and:0.023691840031846306 most:0.022844473154223367 as:0.016745831705690613 ever:0.014672362995839058 generally:0.014579970207293411 Is:0.014013600185097766 were:0.013852010208261597 have:0.01343501415847868 being:0.01207184924543177 it:0.010988400211003717 :0.04395421617294193 +the:0.17234101881375233 and:0.0723308580507978 a:0.06418362524859451 of:0.059381903314211774 to:0.05765128534513001 so:0.0292258426364823 is:0.027247612130850953 in:0.024298181821023074 be:0.020836055953937775 was:0.01790457325883464 Mr.:0.01622639783612973 tho:0.012553953887538211 I:0.01099826163396415 he:0.010910273396485398 not:0.010754844629789139 at:0.01064958641021041 :0.009679095332540733 for:0.009454446178783427 or:0.008882500654999364 :0.3534896834659443 +and:0.05609491235603539 :0.05564658451988679 was:0.02332045021301609 resale:0.0230299747778794 be:0.01978716757049391 that:0.019622455960191614 but:0.01549525574475466 it.:0.015194931718336108 is:0.014692098914202563 them:0.012678268599751536 as:0.012068673061208951 made:0.010811068981771315 him:0.010275319601450924 are:0.009858649654334865 or:0.009675418496798824 them.:0.00963505150977942 out:0.009617691321483888 put:0.009446904002859736 place:0.009104322574813133 :0.6529448004209509 +as:0.06337289415049517 up:0.04809314218185479 and:0.041411564292737395 according:0.03738221587639796 back:0.03564998809838123 him:0.035577611022324374 returned:0.035110739114133455 went:0.031172920432325488 came:0.03111997420978254 it:0.024764398107483297 regard:0.022823763012400078 confined:0.01803499028792385 come:0.01739043734809638 return:0.017283054062928106 go:0.01654150200276455 down:0.016309920682264393 owing:0.01563727895997569 is:0.015449497308450856 was:0.015024338606440533 :0.46084977024283985 +they:0.09695674170687164 it:0.0790137083287403 and:0.06385202825807575 you:0.06210010780630273 which:0.05925987237201889 I:0.05916215764821261 that:0.054243694720651464 he:0.0478622409598232 we:0.03872852479059017 who:0.034005839378195624 It:0.023779117701642653 there:0.0154751138546518 They:0.015052048226718502 1:0.01270880293653711 she:0.012408260232803092 men:0.012159129832626183 He:0.00959039547763795 We:0.009331804349728025 one:0.007919876704067746 :0.2853905347141046 +the:0.3513356656080368 and:0.07045249670250313 or:0.05074977419279342 The:0.04917584196177063 of:0.04000448635915476 a:0.038970442005427125 tho:0.029067183931180088 :0.016940783238937038 other:0.015495322234507537 tbe:0.0120388674354765 several:0.011229689217552663 con-:0.011224956031203681 with:0.011202823497245712 all:0.011180646632291676 in:0.011006108680634721 his:0.010863504959834696 to:0.009543491580728479 for:0.00932042880711072 their:0.009211080153511887 :0.22998640677009874 +of:0.09129790931378902 the:0.07369883040827747 and:0.047842263382354346 in:0.04189055351593407 to:0.04045875475680249 a:0.03542341257202578 be:0.02020462051672066 for:0.01979292654746225 was:0.01760256398103379 at:0.017380150555488715 is:0.014984483003968216 with:0.014047653760730413 by:0.01374644383819499 :0.012670486581795598 In:0.01200961464556976 or:0.011563835749786333 from:0.011391516893522809 are:0.011273104484969465 that:0.010755276030689069 :0.4809655994608848 +one:0.1028303141280697 part:0.05963429477052991 out:0.04766456937681193 some:0.031418679026461914 members:0.030764490253327767 side:0.029940657362655835 portion:0.022063658796890564 office:0.020457735219956013 member:0.019726706386316174 end:0.019666887540649894 tion:0.018667441728710307 parts:0.016814747270460957 people:0.014112771422418794 all:0.014072739582212475 any:0.013183573287639892 One:0.013083578354183906 that:0.013024335602903442 account:0.012482348155001894 many:0.012077825070275192 :0.48731264666452345 +of:0.12298737360804919 the:0.054063929766492214 :0.043166298351570355 in:0.02638626761356183 and:0.02519945115982533 State:0.022723932800309238 Western:0.01699876562220384 on:0.015031516656504977 Central:0.014297011713173387 that:0.012631482867175085 City:0.011474883840256378 county.:0.010888781886181363 North:0.01007350727281337 South:0.009828098168799098 In:0.009593182865675957 said:0.008974601231153088 or:0.00808691073310459 for:0.007649928219341975 :0.006948512873618914 :0.5619955627501898 +to:0.15851422482413827 and:0.13373085094682388 I:0.11723809083588003 the:0.03143752312436474 1:0.02530061251719734 one:0.022864602902483218 he:0.022759849432582354 this:0.02260258712480032 that:0.01588464794808477 will:0.01520706626037448 of:0.01323386223138787 have:0.012571808869310482 could:0.0124449991949914 not:0.011727493342934527 :0.011657272742300962 would:0.009691662554742105 who:0.009265879023064992 This:0.009020266441367662 some:0.00891818660185132 :0.3349285130813193 +of:0.23433202585380924 to:0.1087948964075893 in:0.09794043207189398 by:0.05600214663966744 on:0.05295062983578718 for:0.05051340940919493 and:0.04993329064152147 In:0.046952546593650515 at:0.04250987949802891 that:0.034293054735292816 from:0.0314214572664791 with:0.029555169530667856 upon:0.01841555827964554 under:0.015142175485354546 all:0.014631958428715442 through:0.009954627736019744 into:0.009700805371039607 about:0.008836213024098134 over:0.007989860555937282 :0.07912986263560697 +of:0.09129790931378902 the:0.07369883040827747 and:0.047842263382354346 in:0.04189055351593407 to:0.04045875475680249 a:0.03542341257202578 be:0.02020462051672066 for:0.01979292654746225 was:0.01760256398103379 at:0.017380150555488715 is:0.014984483003968216 with:0.014047653760730413 by:0.01374644383819499 :0.012670486581795598 In:0.01200961464556976 or:0.011563835749786333 from:0.011391516893522809 are:0.011273104484969465 that:0.010755276030689069 :0.4809655994608848 +and:0.07558940021936399 recorded:0.030196237618668006 was:0.028917161578042846 made:0.027969746247669736 that:0.027730098932509103 o'clock:0.025060522019555328 up:0.023026552239529506 is:0.020398277211376416 found:0.02003101797656537 placed:0.017482208134164214 out:0.016937164562539058 place:0.016819459500107596 interest:0.016629321966808677 him:0.016002796715253755 situated:0.01573420479581609 it:0.015128305982428461 them:0.014715943643665314 part:0.014646613000297721 interested:0.014450471929902294 :0.5615344957257364 +away:0.05746860598250849 and:0.04985561698690421 taken:0.03950823995165392 miles:0.0355312759828073 feet:0.031845900191456514 come:0.022313957473317422 them:0.021637161013586904 out:0.020621546731341717 came:0.02000539576637417 up:0.019820502682224503 him:0.019195504147748815 received:0.019046714556510396 far:0.018152378296247898 removed:0.017489734983720518 down:0.017467467859455896 it:0.015386533775439217 years:0.01424855034507225 annum:0.014237643714946796 free:0.014107989586278378 :0.5310592799724048 +of:0.09129790931378902 the:0.07369883040827747 and:0.047842263382354346 in:0.04189055351593407 to:0.04045875475680249 a:0.03542341257202578 be:0.02020462051672066 for:0.01979292654746225 was:0.01760256398103379 at:0.017380150555488715 is:0.014984483003968216 with:0.014047653760730413 by:0.01374644383819499 :0.012670486581795598 In:0.01200961464556976 or:0.011563835749786333 from:0.011391516893522809 are:0.011273104484969465 that:0.010755276030689069 :0.4809655994608848 +was:0.170853548182611 been:0.07951957282827327 be:0.07499934955892455 and:0.06351059920548076 is:0.06138575578321122 were:0.05283503588285884 he:0.038517518772921186 ever:0.034386850876491994 have:0.029670491748943147 are:0.029350652470043582 who:0.026792385540917233 had:0.026404131410383676 as:0.02509694194006409 has:0.021599846928176084 which:0.018237200752627965 I:0.01744413214900806 being:0.01460542105421761 they:0.01397696266221069 He:0.013888706913977386 :0.18592489533865766 +and:0.08673122844727821 the:0.07546736143901007 of:0.05712635559803235 a:0.03611777170556251 to:0.026703243849351146 be:0.01911033746998757 that:0.019098267222376827 is:0.017469333499190814 he:0.017378492818407216 no:0.017329504869992712 as:0.01629235787046579 was:0.016089172406267293 their:0.01508900874387418 for:0.014968427968462057 which:0.014351371257735274 in:0.01421638741014869 or:0.014185461759308706 they:0.012507229682564012 an:0.012295135453985322 :0.4964735505279993 +the:0.12173516624399242 and:0.07689718839581315 of:0.07142828997900813 a:0.057798172796393335 to:0.036189405806384425 .:0.01903650845547464 at:0.01759599200012107 Mr.:0.01732325836044277 with:0.016679564760420373 or:0.015527850875420576 in:0.014929924062801863 for:0.014526348430456823 was:0.013778164887693059 by:0.013091106008297045 :0.012490826374515452 The:0.010709608280644961 are:0.010497937030434522 tho:0.01006566105601213 be:0.009621455666877457 :0.43907757052879576 +and:0.06221069663990682 Committee:0.05057534586581559 was:0.02748220847391186 committee:0.02744426205407836 that:0.020734118233226323 is:0.015430238938760197 be:0.015048656326656785 going:0.014001702059179444 out:0.013278222204376178 work:0.012879402979875257 went:0.01268561986518544 put:0.012602354130226817 due:0.012424637090645018 were:0.012095015985171466 called:0.011981002673910567 it:0.0118054636333845 them:0.01156555523415657 are:0.011505242379095585 him:0.011141026526201511 :0.6321092287062358 +the:0.09797770545371141 of:0.08516946411589117 and:0.07439285988542803 to:0.03209441626225393 on:0.027702720457609402 a:0.020395895638785147 in:0.01887233503282035 his:0.0183213895882359 was:0.01708900780619316 with:0.015289153219575751 be:0.014134437952158192 that:0.013357569349366853 from:0.012707686427012983 as:0.012547976759599948 at:0.01145878843328356 is:0.009996477535963787 by:0.009969966870158234 her:0.008994243190142297 were:0.00857031129675415 :0.48995759472505573 +the:0.25979823704544214 a:0.13014923795070732 and:0.06320433921513403 this:0.032303085587876965 their:0.027513387895500976 his:0.026671937967212688 these:0.01972359149217834 tho:0.01936644766102583 of:0.01664347431611585 The:0.016543053454614803 in:0.016491001086426507 that:0.01471887699656105 to:0.014487148530087791 its:0.013918767786457245 one:0.013831734283014565 two:0.013226806757307526 same:0.013163843849062294 other:0.012847788939327509 said:0.012312428843284864 :0.2620848103426617 +the:0.24968875791939268 of:0.08624509376286756 a:0.07983842271246869 this:0.06410695321796278 to:0.05161958872000287 his:0.04843769144522177 no:0.03680658267593949 their:0.033092869608576776 by:0.030092242714613786 and:0.028476856021032726 every:0.026367452249564275 any:0.024632815045955256 in:0.024454852391579286 our:0.017342419419188293 her:0.015982848957676727 tho:0.015597310976192474 at:0.014727223024966265 each:0.0143822869982377 own:0.014353371504380784 :0.1227543606341798 +one:0.1028303141280697 part:0.05963429477052991 out:0.04766456937681193 some:0.031418679026461914 members:0.030764490253327767 side:0.029940657362655835 portion:0.022063658796890564 office:0.020457735219956013 member:0.019726706386316174 end:0.019666887540649894 tion:0.018667441728710307 parts:0.016814747270460957 people:0.014112771422418794 all:0.014072739582212475 any:0.013183573287639892 One:0.013083578354183906 that:0.013024335602903442 account:0.012482348155001894 many:0.012077825070275192 :0.48731264666452345 +they:0.10803825806606807 There:0.0846295756397731 there:0.06662374887395578 who:0.05526214492519579 which:0.03999959264184759 They:0.03783487545407278 we:0.03694407160853133 and:0.0357263569075601 that:0.02830487692134406 men:0.022702861992016207 it:0.020603438728026377 We:0.014056895323162144 I:0.013734721858848765 It:0.009205082320511412 you:0.008129661852900668 people:0.007320227557016707 he:0.006834905987121989 but:0.006657329175462162 These:0.00558993766882075 :0.3908014364977642 +the:0.657224252989062 The:0.1651308467429779 tho:0.024046826556403264 his:0.02178794476345485 our:0.016771852503989416 their:0.014209100530960656 of:0.009488356887599757 its:0.008968522503866172 a:0.008494843428133326 no:0.008445085686404948 tbe:0.007433716903030007 whose:0.006381390166470755 His:0.006352082180262284 and:0.006203876897854429 my:0.006104673105835011 this:0.005853782478013167 Tho:0.005119194192473555 your:0.004735479055863028 This:0.004297187447883175 :0.011950984979462353 +and:0.17980937695604496 days:0.040374911445391945 shortly:0.03846639733119241 that:0.03447931842907347 soon:0.032985189790313625 minutes:0.025270095719249343 until:0.019900124428569168 but:0.018712395130316 Shortly:0.01721642089038744 immediately:0.01644406687540484 year:0.01498987561081983 time:0.013453962941484196 years:0.012658596422049325 months:0.011927803783642159 look:0.011383538214980084 or:0.011346026819699945 Soon:0.011214445692124226 day:0.010561056448186192 and,:0.010303570287195099 :0.46750282678387567 +and:0.21788804167950673 that:0.09288600055623075 which:0.050149695404878396 of:0.04049458710333402 was:0.035211189231960066 is:0.03502940973486468 but:0.02290165651966915 in:0.018493257944128504 for:0.017703780121509295 it:0.015367350358676719 to:0.014200711938785377 had:0.013774772629442144 be:0.013758087510855471 by:0.012921790317013923 :0.012708602199251153 It:0.012312304462759898 have:0.011504218591220446 the:0.01115214939022991 Is:0.010762670660536927 :0.3397797236451464 +a:0.16985375879524525 the:0.09994544255653066 and:0.0878961932507023 of:0.07838994041603478 was:0.0751676073335231 be:0.0314846925031736 were:0.03127844077507731 are:0.028266053068061056 is:0.027952247306324667 to:0.022348123461019734 been:0.0206752447843144 that:0.01835315367134453 at:0.01819496493837986 as:0.01672774020440627 his:0.016612560463036573 in:0.015325866909157266 or:0.013718911160997169 their:0.011514572370108077 with:0.01098805318862222 :0.20430643284394118 +and:0.11203614284734381 made:0.029480560291083903 necessary:0.027231632327903786 provide:0.01978786821063526 him:0.018624150941585572 time:0.017844902254185023 but:0.01736032991925495 pay:0.01712283223509279 responsible:0.01655246417854943 work:0.01573375727996718 used:0.015721729148453864 that:0.015344008200088246 providing:0.015123591452644664 or:0.014918878594106077 it:0.014272018550925738 vote:0.014240496926603478 out:0.013886758983508773 demand:0.013625570335128902 ready:0.01288626098417059 :0.5772060463387679 +Mrs.:0.09477723352450693 Mr.:0.058206686358768085 .:0.046600707867626184 and:0.04343066299536265 John:0.036132338754778934 Dr.:0.027902927860564544 J.:0.0252754466655449 of:0.023194113664921974 H.:0.021241133646700872 W.:0.020769573848149578 C.:0.01845253308249711 George:0.01744434998077166 Senator:0.016596235149215585 the:0.015516556704703173 William:0.014921939053024911 A.:0.013035133882427169 B.:0.013030993693774084 L.:0.012941461618723619 said:0.0126997571990587 :0.46683021444887934 +to:0.11072297279764762 or:0.10613980047998905 and:0.07584878414490738 not:0.04107508953982762 of:0.03719930795239555 there:0.027150188177330947 the:0.02707119059246538 nor:0.025270356513242505 that:0.024241483978626317 in:0.015763415321107248 as:0.015610491314474187 than:0.014201938942672014 for:0.01378946478582446 re-:0.012417242777279751 :0.012407866813393597 by:0.012050683302328837 is:0.011754987194787724 never:0.011366555260533555 would:0.010899589151123138 :0.3940185909600431 +of:0.09129790931378902 the:0.07369883040827747 and:0.047842263382354346 in:0.04189055351593407 to:0.04045875475680249 a:0.03542341257202578 be:0.02020462051672066 for:0.01979292654746225 was:0.01760256398103379 at:0.017380150555488715 is:0.014984483003968216 with:0.014047653760730413 by:0.01374644383819499 :0.012670486581795598 In:0.01200961464556976 or:0.011563835749786333 from:0.011391516893522809 are:0.011273104484969465 that:0.010755276030689069 :0.4809655994608848 +to:0.5045508315462855 and:0.06536540191518422 will:0.054270528998626326 not:0.040721439274182966 they:0.027234600685205588 would:0.024052617014246602 may:0.02010016330855774 shall:0.01835354148297549 can:0.018079914452688337 I:0.017866613738186155 we:0.017612893244674552 you:0.01686368084965578 To:0.01654483776836717 who:0.01605894271371966 They:0.010915340452547483 or:0.010700315002079264 could:0.0097824306010416 should:0.009315104606006788 he:0.008849140471096507 :0.09176166187467218 +and:0.05917734571267282 closing:0.04405297983259551 was:0.026323119710997635 valued:0.021005792503071843 held:0.01922887441606307 sold:0.018225285914023 2:0.017782437938973866 is:0.017552850459549643 arrived:0.01662711812741857 be:0.01645048243064216 are:0.016339673120917095 White:0.01533836240735085 not:0.015154252504664439 as:0.012706467917481812 that:0.012063629264509927 estimated:0.011864260728812118 Dated:0.0116063700277585 or:0.011444173640079769 made:0.010438189210536826 :0.6256183341318805 +and:0.284313226097142 is:0.07154560110472277 are:0.06358923180738538 of:0.05442994899506715 was:0.0343981249688691 not:0.0315078242239119 that:0.03131750699851348 or:0.027395983240913746 but:0.024787939482767418 as:0.020811571638993775 to:0.020770390185871283 for:0.020544132103027957 were:0.0184582449030361 be:0.015669303003777155 it:0.009383291440219885 with:0.008401725592703529 Is:0.007631018088776829 had:0.007588724920214975 have:0.007438204993090623 :0.23901800621099498 +one:0.15396519686530746 those:0.13122889480555644 all:0.079945115722887 many:0.04631227172863698 some:0.03767294419962675 person:0.031539524010325844 man:0.03049052942343274 people:0.024779505654102987 men:0.024015821160635324 and:0.01951670946801348 both:0.016909629026201436 deed:0.01572718702663584 that:0.014846128471886851 number:0.014733158971203439 each:0.013832254267609794 two:0.013659073764594635 All:0.01114665215193261 majority:0.011081741626740155 any:0.0110225368431914 :0.29657512481147885 +be:0.2364284372064115 is:0.14799269479677934 was:0.11316081568743859 been:0.07980926806465823 are:0.07914801287658953 were:0.0406801929134555 hereby:0.03784096066092471 and:0.03368311928202888 Is:0.03168804886930043 not:0.028732781694262848 being:0.024440606483737113 he:0.01643679899362001 bo:0.01642778782466729 have:0.011844121177077185 I:0.01064650929910525 now:0.010072088165700516 has:0.008683771125458163 had:0.007825048741813887 as:0.007382919732804747 :0.05607601640416628 +and:0.13021317826257536 the:0.07836353357728891 a:0.0703981718799235 had:0.041529652617632896 be:0.03798347471686896 he:0.034385729312654635 was:0.03283318329251579 have:0.031140722120140057 has:0.02938285382732548 or:0.024871651507919233 will:0.024434067745634336 they:0.019215216014185587 not:0.015301056524333011 never:0.015020392077840934 to:0.014150248879513667 were:0.013561716245959934 her:0.013449401619746856 that:0.01278533450531614 I:0.012421829532487185 :0.3475585857401375 +the:0.09684081064840576 and:0.06551335624548284 of:0.05146145169206151 from:0.049520598669154245 a:0.045427902131977435 to:0.0370403239153822 be:0.035669151526387034 was:0.030489628475080553 is:0.026635804908522978 in:0.023878514238638158 are:0.018513936943033917 not:0.017945708099223703 or:0.017556265685966497 been:0.014265228721347686 at:0.013857211504087178 he:0.013733215789660087 were:0.012396679125422956 I:0.012347944480187516 for:0.012197989992860347 :0.4037082772071174 +and:0.0600825469574632 of:0.05641380844045091 the:0.05306770823034305 to:0.03493080605443992 at:0.02250052352947368 .:0.02239501974022103 :0.01880444987896516 a:0.017217872774020933 in:0.012699066852870566 by:0.012576938125618754 or:0.00853790881742617 No.:0.008170286733593296 with:0.007637345780729669 on:0.007018643451187626 for:0.00667107156064742 that:0.006426084321738439 1:0.00640475951481834 A:0.006312259460919543 thence:0.0062891940680110305 :0.6248437057070613 +val-:0.2644724067391473 and:0.08501044544377104 the:0.06698540731740354 a:0.04000806274237939 to:0.015247856911977943 contin-:0.013985335383426176 made:0.013635867246493705 con-:0.012758828269344968 or:0.012015113758689605 of:0.011102349750822638 in-:0.010975343207449032 The:0.009223669564267487 :0.007325137132451338 for:0.006672288253609673 be:0.006088025490116649 by:0.0060246547804481305 as:0.00551523410650647 high:0.005392956474870069 with:0.005137940508801528 :0.4014230769180233 +the:0.35057331478571346 an:0.27027621881416225 and:0.07275736181769338 The:0.030872953981785082 a:0.024477998981815078 tho:0.021284252587523613 of:0.01779018629278447 further:0.017031631447378973 An:0.013298092230614827 every:0.012216806381902529 no:0.011253792579706557 tbe:0.00895921077410231 or:0.00892491604029122 this:0.008840695523558262 great:0.008699502238905157 other:0.008631312426682185 any:0.008445356254366371 in:0.008000309196106727 first:0.007075566661870182 :0.08959052098303738 +he:0.12976820625117658 who:0.09221886342062384 which:0.08202145445505479 they:0.06808463273766263 it:0.06300140281566258 that:0.0536651199481747 I:0.04355172570140108 there:0.03694176174144522 she:0.03568475182996337 It:0.03445956439681276 and:0.03146500019799679 He:0.03013662272772511 have:0.01649641755291053 has:0.014869129143777082 we:0.01270748492222897 She:0.010037042499654298 had:0.010034468298945191 They:0.009824977349933048 ho:0.009403905633941782 :0.21462746837490962 +the:0.33745383161893167 of:0.18082760263710926 in:0.05865428184008779 and:0.05423487719367294 by:0.040319133240826345 a:0.03762609015906577 with:0.027110636705230066 from:0.027072850261858877 The:0.021267921032693843 no:0.02023701693983878 his:0.018575675652448893 this:0.017417455909202493 an:0.016154410997811293 their:0.01598217106535692 any:0.01414815435855006 tho:0.013842112093708971 In:0.013530991912634079 for:0.012433976751360671 all:0.012347531898034399 :0.059763277731576865 +and:0.08503425215113287 together:0.05335287900593926 covered:0.03253077787715905 him:0.028699283380466227 up:0.02694908563101517 it:0.020075958598700875 met:0.019295061035032795 them:0.018700319853085637 but:0.01578533889291739 thence:0.01248413508838869 filled:0.012418217423982135 out:0.012348631427551895 away:0.012156361159124838 do:0.012018718033405752 down:0.011784916836511368 man:0.011218165866290394 along:0.010245892575704265 connected:0.010128653854803403 ed:0.009471429225277377 :0.5843019220835106 +the:0.6341564589259524 a:0.08495959974430758 The:0.028619757629310877 first:0.027540563890795993 tho:0.024292795204885333 some:0.021313859807163296 in:0.020720253902622998 any:0.01762316220042532 this:0.014637393006402185 long:0.013747516798525638 that:0.013544303397170582 same:0.012510924181033207 short:0.010108810651381821 tbe:0.009512097255056988 present:0.009394668307318816 of:0.009338802833839872 no:0.00789433893434668 In:0.006896812250809434 and:0.005984532336408529 :0.026203348742242345 +the:0.11231147719692504 of:0.08803847683942491 and:0.07990804051120236 a:0.048334470107647264 to:0.040139510923386766 .:0.019064670353377236 at:0.016222362372723335 in:0.016155194015730918 was:0.015670745775859744 with:0.01506377663273231 by:0.013753814643944939 is:0.013452388317735887 Mr.:0.012718843356958172 are:0.012140919989827454 or:0.011815695558049483 :0.010704384463994075 for:0.010693410196241546 The:0.010336171782008019 his:0.010169562236982864 :0.4423060847252477 +to:0.2462757437441669 will:0.1577324815546351 would:0.09175972953643148 may:0.08017749624023693 not:0.07124355661441147 should:0.06802329794466445 can:0.048517409797801996 shall:0.042349084950385626 could:0.03238154413253768 must:0.026408852855919342 cannot:0.022386519503737726 might:0.019086824530434834 and:0.010060639221064425 it:0.008270801401874117 which:0.005674122415931344 that:0.004720536939549265 never:0.0037189151949779007 they:0.0028785646049021146 then:0.0028275126607975095 :0.054506366155539825 +of:0.1139509320796627 the:0.0512125195427348 and:0.04032547795189024 .:0.03905082232670862 :0.023473839841277787 by:0.02279699857657647 Mrs.:0.020550699363520105 Miss:0.020041939171024557 at:0.01952882531313552 to:0.016021621217713597 A.:0.014445129390715324 H.:0.011830733148279274 Mr.:0.011745640700524609 M.:0.011744573418474265 in:0.011667165209352097 for:0.00996338919053873 W.:0.008736723792276127 C.:0.008712619164726846 J.:0.008547553572589512 :0.5346527970282788 +of:0.30786543246362447 in:0.17599722059791423 to:0.07058300415332802 from:0.05637167282304673 by:0.04520403712534145 and:0.04380296647506665 for:0.042736887161711395 In:0.04269479617487872 that:0.024110690636613946 on:0.023397502236184572 with:0.023367208793749844 at:0.02119033026408196 as:0.010180552056080799 into:0.009473707190599943 all:0.008918350075699957 when:0.008844131354201153 upon:0.007878592501754836 is:0.007305485245466584 through:0.007028258532975523 :0.062049174137679186 +number:0.05779127780135511 amount:0.04748459254415246 out:0.045622499180704996 one:0.04012703102756885 line:0.02688976346415135 hundreds:0.023605321530240187 and:0.019356483909961742 part:0.01887906503553934 time:0.018438909328812567 that:0.017863607027106425 place:0.017213394730748968 case:0.016952509578656447 some:0.0167265950729433 thousands:0.016666549253995938 side:0.016616051938326937 rate:0.016181993898036685 tion:0.01597230629217524 sum:0.015746243983304528 work:0.014932779430544975 :0.5359330249716739 +the:0.3238426769328811 to:0.251194444012193 of:0.0742470664195856 and:0.057838939517202106 tho:0.026543783993188744 for:0.021142585162457983 in:0.01813494327940544 his:0.0174507522623354 that:0.016619126708500527 their:0.013348237699654588 a:0.011602976480228845 by:0.010750647927912877 our:0.010673747971350015 can:0.00999279708610075 her:0.008932437166595076 The:0.008776032883019258 will:0.00874583926363715 tbe:0.008401331898473679 I:0.00790747883110629 :0.09285415450417157 +the:0.29318989473617696 a:0.12575297857933396 in:0.09781718929130269 of:0.08049035930881956 this:0.04212059573940942 our:0.03779640055989726 his:0.037178558142545615 its:0.03394306197090974 In:0.029970540632416668 their:0.027703518831541114 and:0.02521449836026396 great:0.0241538567728611 tho:0.021969076676951214 The:0.016596285969437796 other:0.014665311227612759 some:0.014372433555949669 same:0.010402090222218668 for:0.00904755205835724 one:0.009022922907778383 :0.04759287445621621 +to:0.16820287409390067 and:0.13211465827242655 of:0.029932185772674622 I:0.02801189662565193 the:0.023136484902272852 had:0.02159773518167427 who:0.02101222318379878 would:0.020936132923728618 not:0.02054076211858964 he:0.019376995570204676 will:0.018181966020541014 have:0.015230816872065931 or:0.013317407078060686 it:0.012745920907422189 that:0.012430437018850944 in:0.011578040496112161 has:0.011381112264303052 which:0.010963520314163977 was:0.010502414123789373 :0.3978064162597681 +few:0.17490794349780417 two:0.12975920659048962 many:0.07602486672461685 three:0.06136746684698207 ten:0.048404781431362794 some:0.0453465993171768 four:0.04522194126439576 several:0.044038438221605185 five:0.04120601561164953 twenty:0.037434793404654734 Some:0.036662905752110286 six:0.028673523803694475 Two:0.02863120470535782 eight:0.027701573726528695 seven:0.025198574976044188 thirty:0.02449199317398442 hundred:0.020205187868952135 fifteen:0.020161608581748956 Four:0.017544136769491264 :0.06601723773135025 +the:0.39749834532651884 a:0.07520030034269234 and:0.05540858759821703 The:0.03273515726769502 tho:0.030061875542463562 of:0.020144331424922633 tbe:0.014929647509541684 in:0.014268129706664795 or:0.013333166761078447 .:0.013287381914101323 an:0.009000188755386574 to:0.00880680429595084 :0.007943763822197133 Mr.:0.00773879605474787 by:0.007328417831573476 as:0.005922572098978465 for:0.0047526933692942485 that:0.004736121968310169 on:0.004594595720579333 :0.2713091226890862 +and:0.06801980411563592 called:0.05975987546856643 based:0.04056929756857015 down:0.038884916072364016 placed:0.03423965746291783 depend:0.027374652480390206 put:0.026731207328758652 insist:0.025119524967866104 depends:0.02444468632237949 agreed:0.023899560091221253 it:0.022854342891824673 enter:0.02263394002356096 call:0.021876282335471182 look:0.021080936370134484 is:0.020801787775151123 fell:0.02075468496825849 looked:0.01994147837184452 made:0.018538654812787693 one:0.01668400922739733 :0.44479070134489945 +to:0.16398224590694319 with:0.12640186167775636 for:0.06632224355077507 of:0.044256084672690925 by:0.03583522178994037 told:0.034692862933691886 let:0.03392629464246001 give:0.03047103006894226 see:0.028899590294372383 upon:0.027821700471040496 against:0.027139499655511486 gave:0.02577233556504558 asked:0.022742437330044635 made:0.01968465681700429 take:0.01951115907985264 make:0.019424917936029646 on:0.01699539930778733 get:0.01692110225228956 in:0.016893679656230683 :0.22130567639159118 +the:0.3140520748931576 a:0.08191638879267599 of:0.06289560652450457 and:0.06062820788569062 The:0.03878622442648245 tho:0.02482135935208877 an:0.01968516966298478 to:0.01790629771602974 that:0.01767112369134909 or:0.012617016647863442 with:0.012479503080346363 in:0.01133145316993118 by:0.010733597783359975 as:0.01064040703870944 tbe:0.010436874265817464 A:0.009305694254855768 this:0.008953855386409752 :0.008831615455061939 for:0.008419976759605409 :0.2568875532130757 +to:0.31059571406939357 will:0.20425757625330873 would:0.133094322816397 may:0.05360388159749485 should:0.04751723065858571 shall:0.042846075470128905 not:0.03498447710879167 must:0.033197114998686265 can:0.01733161400489818 could:0.013140053132453297 might:0.010038574927070389 cannot:0.008553309467174345 and:0.008238336102433406 it:0.006886561425115729 there:0.00574775815678757 never:0.004645075469242335 only:0.004505185745248458 also:0.00449863383901001 always:0.002953648667362942 :0.05236485609041661 +the:0.24835004654527398 and:0.07892924411887983 of:0.06391611665143883 to:0.0627107635295905 a:0.06017538737460511 in:0.05238796159337543 with:0.016180549936817827 or:0.013642012654755953 The:0.013082704287017313 tho:0.012224016647145678 his:0.011445344587577663 for:0.01066516090318094 In:0.010114461974906154 an:0.009257444662517458 their:0.009070984124144952 by:0.008906144488548139 at:0.008886041673605178 from:0.008590297482176665 on:0.008573971934026587 :0.2918913448304158 +the:0.3425747530253189 this:0.19143900256737456 show:0.07301128828626419 a:0.03531137432199847 such:0.030817469088349324 any:0.02971947171916214 said:0.029381256301020658 other:0.021106388353650044 shew:0.02027950434378727 of:0.019447394866593953 every:0.018957930552227237 tho:0.017998312347525112 and:0.017763495926612655 in:0.016039379699202706 their:0.015729645491815672 The:0.013881596294726154 his:0.01335906537624341 our:0.012889502451471028 take:0.012530534153916929 :0.06676263483273956 +and:0.1053676533220708 that:0.056720364763419344 for:0.047984684598576646 of:0.047023334084464595 make:0.0437941046017265 as:0.04377860748955702 in:0.04119079708483224 with:0.03835811532195541 but:0.03519519819201608 to:0.03125026890518727 give:0.026432580429230804 on:0.02417507533340294 made:0.02379858843040713 by:0.020181515239309174 have:0.019430805800206917 upon:0.01920979210136027 is:0.01718491979162219 which:0.016657604571659542 found:0.013954811040108527 :0.3273111788988866 +the:0.6950474155929113 The:0.057648889946373266 very:0.04781116312257821 tho:0.02587293201021764 a:0.023211364569376985 and:0.01686217055047387 an:0.01613526095136271 of:0.013902989458920946 his:0.01338329923806507 our:0.01092515463454117 their:0.010060069655542537 tbe:0.006823300561588204 its:0.006479245849779961 most:0.006205502706059867 as:0.005778213486042235 this:0.004471414898748563 are:0.004314313870226433 is:0.0042128779655056445 with:0.003915988566916634 :0.025938432364768747 +:0.07865849292042412 of:0.05098177605108604 it.:0.022323486918032983 Township:0.018834346796246678 them.:0.01713659094884655 him.:0.012238539654676861 .:0.012189936325841831 and:0.011956835900395426 to:0.011288970733945407 to-wit::0.01065229173220832 country.:0.010162239247720542 time.:0.009233229289026288 follows::0.00806290891812438 day.:0.007700446323329007 wit::0.007608720328798564 ::0.0073112143411452925 city.:0.00703625781157024 work.:0.0070163826373727655 years.:0.006968576413491051 :0.6816387567077177 +was:0.05151235792264468 looked:0.049476430378334206 and:0.04459989659084409 laughed:0.03211795920289644 them:0.027919054503116235 him:0.026405748448589554 look:0.024487113570285483 is:0.02384984949916084 held:0.022657994243563902 be:0.022264940351826336 are:0.021542135856117525 arrived:0.02109423903126294 were:0.02044902064159461 sold:0.018532718813287507 interest:0.01738821553062567 called:0.01703730895934737 died:0.016283065192337874 up:0.0160960624963043 it:0.015748582338174867 :0.5095373064296856 +the:0.15101923570650047 and:0.064385667959159 of:0.06341693242347088 a:0.043512539970345536 to:0.028387753135696882 in:0.02617760652587609 Mr.:0.024114839319092064 that:0.01793380624110565 I:0.01584357865045141 this:0.015472255045006407 or:0.015048819613141034 his:0.014813328384387377 be:0.01415468261790035 :0.012235698501636763 he:0.011229910969323775 In:0.010942562779481878 on:0.009968591116885186 an:0.00982708446182066 their:0.009790261301728031 :0.4407248452769905 +of:0.41114614420900286 in:0.14523618081473597 to:0.09980689068887942 by:0.05849904236082886 that:0.033056681490014825 In:0.02654724280295538 and:0.026467926963172038 with:0.022459562624531214 for:0.016994325518818652 at:0.014221233728373561 as:0.013777794837292114 from:0.01258143714987559 on:0.009952586139703365 into:0.008991661372890017 before:0.006192560707044368 when:0.00585445616562478 ot:0.005478704901587103 under:0.005453418009878466 against:0.005049338068794576 :0.07123281144599682 +one:0.06754190432163522 part:0.05231163511576496 out:0.04609588594236959 some:0.02740306976054911 side:0.02387622494371665 end:0.022518288784217105 members:0.021845751933956114 portion:0.02151370006345736 all:0.02022572610903207 people:0.016238426460010967 and:0.014555909544903867 that:0.014078768366257871 day:0.013832139668816516 tion:0.013547994796857001 front:0.013380738665131557 any:0.013269620285130524 member:0.01265082101866512 time:0.012443834037564471 office:0.011845495219016932 :0.559824064962947 +of:0.28406218197732386 and:0.20066599803926602 that:0.07052134857076314 by:0.04242076567599643 to:0.040557741489486245 with:0.04004750438776504 for:0.024033821644172088 but:0.02397910567245144 when:0.019411207964797467 all:0.01841821163594745 which:0.014583920864827373 in:0.012260161945467994 from:0.011080465385355991 on:0.010801063138264637 as:0.010581384942201866 is:0.009516782343377671 where:0.009403577018869135 are:0.009375006132719401 said:0.0076518407156525815 :0.13962791045529413 +made:0.0792125246016055 and:0.05389740326858523 followed:0.023907010884367415 it:0.023528152703519004 that:0.021127925165461074 caused:0.021034246064151305 ed:0.020490834132614533 them:0.02024499734986838 or:0.02015776771547877 done:0.019524240621114616 accompanied:0.01934398835227782 him:0.01785034338004766 up:0.017726208970670076 surrounded:0.01505017117750373 out:0.014890699102055266 given:0.014356907427242886 not:0.014107107157241438 used:0.013588283475475535 owned:0.012831310439070187 :0.5561298780116496 +and:0.04390653950222288 brought:0.03963186021377816 as:0.0376829745649923 right:0.033212646441440216 went:0.0331757062526776 go:0.03244299537248227 able:0.02765547714287377 them:0.024943442971674865 enough:0.024674976348491435 up:0.02376035337456929 him:0.0234745865787213 time:0.02265976651381876 come:0.021828327836150865 down:0.02126749169379146 power:0.0210860894283357 way:0.019600512456962562 necessary:0.019219828159141486 made:0.018546209058868453 feet:0.018380357450115518 :0.49184985863889114 +of:0.19481587078056797 in:0.12041616618799973 to:0.11029028955353892 at:0.0732044508647921 and:0.056670319645867814 that:0.0507227205402729 from:0.046768381811801124 with:0.03548098719949355 for:0.035257361675456546 by:0.03364402640930048 In:0.028079428218905956 on:0.02503297070211561 as:0.017608461855064948 is:0.013447049036756094 when:0.013367036989390547 into:0.011389683298409193 which:0.011115024581139986 was:0.011073747256684852 upon:0.009462517903818166 :0.1011535054886235 +of:0.12760807215695158 in:0.09766376772967367 was:0.06949750469101797 as:0.06732952897243291 and:0.06370677539242818 is:0.0616301872155168 with:0.054414300516169044 for:0.0543096877855377 to:0.04830596855242387 had:0.03434718848207802 by:0.03369320324192583 have:0.031461981542118975 that:0.02723816824406413 on:0.026025328550462114 In:0.022114675909875026 has:0.02148378344883643 such:0.01963521479518428 be:0.017531634920424338 not:0.016845671116763914 :0.10415735673611523 +the:0.46196425693721105 a:0.2496834694002929 The:0.055445344562073506 tho:0.0353037623923534 said:0.02910575398032517 A:0.018841732871544503 this:0.01622975326208459 and:0.015705688728477548 tbe:0.010211842567755869 old:0.006806176587015787 our:0.006593963949256736 new:0.006373413400575396 Senate:0.006192160678237393 grand:0.0059042582379016445 his:0.0058552500076589215 No:0.005172880666992244 senate:0.005040455363585869 every:0.004907964749332247 This:0.00465842873187788 :0.04900344292544729 +:0.08301229756178083 it.:0.029450090895783532 them.:0.023594283724031377 him.:0.013103404146618584 time.:0.010549023458638932 country.:0.010204951319049561 out.:0.00949599925753125 and:0.008982554204512981 ago.:0.008932103474139065 ?:0.008789251507129487 .:0.00823476622266715 year.:0.008005353485621989 people.:0.007579934417569869 men.:0.00745154117419187 life.:0.007249304435369656 again.:0.007152565025468459 day.:0.006906819869443983 work.:0.006877498267577454 that:0.0065997037751004 :0.7268285537777737 +and:0.22662537977811734 or:0.1275990047567049 that:0.05108630356157393 not:0.04752999337978649 the:0.03874274037472407 but:0.029611163121888398 by:0.02315061143721022 to:0.02148303221614583 of:0.021217792242488768 for:0.019453368377958268 is:0.018351427781524637 in:0.01543598560963908 than:0.012452752768174384 are:0.012293054655809653 was:0.011475082480947828 But:0.010967118104893975 with:0.00986787941573472 an:0.009806441277697843 nor:0.009002196456884975 :0.2828486722020947 +and:0.05316486779006352 is:0.0530632552367478 order:0.04615845508121009 him:0.04087654090741451 able:0.040811022550026596 enough:0.040251433505683165 not:0.039458985991958045 as:0.033019955075506265 have:0.030197777371013004 necessary:0.028589861484925448 time:0.024428133052697632 was:0.024121914664235446 had:0.023891625884034474 right:0.023540732560060004 ought:0.023277376029262102 them:0.022742467507124532 want:0.02091542895969795 me:0.02040262081052101 desire:0.019955869712054125 :0.3901316758257643 +and:0.13391688584419523 that:0.1251864599127995 but:0.06782082317381462 as:0.06331111936114547 which:0.05642898382556539 when:0.039369018826456104 time:0.01991577456177444 if:0.018603136803767868 But:0.015383503800603616 what:0.015216574606156406 When:0.012481744180094559 me.:0.0124678603323468 :0.011550158349610661 it.:0.011337996022722903 because:0.011222933545910287 where:0.010911718051005187 As:0.009523735281010614 until:0.00867248154953665 it:0.008654177674408032 :0.34702491429707566 +of:0.07274934375108927 the:0.07055846514711997 and:0.0698232818871346 be:0.03619793736133846 to:0.033572185964803984 in:0.03034248391435736 was:0.025355100561683774 for:0.02035650120128115 been:0.015877467717777927 that:0.015420396798067507 he:0.013425880190265855 their:0.012351006049751397 is:0.012009146386685123 are:0.011006792506950622 were:0.010827864758247293 as:0.010731562308566998 his:0.010495709333906198 re-:0.009955890855372851 or:0.009474281862260165 :0.5084687014433394 +the:0.5618407930915289 of:0.07294344169426534 The:0.04162467858916462 said:0.03660600699501163 by:0.035838011724406184 tho:0.02456683090345827 and:0.022047270868628968 to:0.018548668369821823 a:0.017460327364232964 an:0.015866872226245214 at:0.011722700295300379 their:0.010402901134310881 tbe:0.010235345372449436 in:0.008519727595391642 our:0.008379830157364761 his:0.007484850555734476 for:0.0072167205559759235 that:0.0063825025017388475 great:0.006034800970964209 :0.07527771903400549 +of:0.17357910176281155 for:0.16565286087598588 in:0.10546014404702991 to:0.09504910666290695 with:0.05693438863859661 and:0.05118807933888042 by:0.04156062397794476 all:0.033363497169013163 that:0.028964757637428833 from:0.028857867485053704 on:0.028350435982506177 In:0.026420164466828915 is:0.02099075785212892 upon:0.0156420917293409 as:0.014897228889399759 at:0.011560782223976334 under:0.010988202049030702 make:0.009142514446600209 into:0.00850637570191074 :0.07189101906262556 +by:0.5311055904236065 the:0.11447406358877037 of:0.10202071289032515 to:0.023335372857721158 at:0.02292916044324364 that:0.019147782796095268 said:0.01827541277334104 a:0.014961218473368548 and:0.014161528434973866 in:0.011407284119593322 The:0.008539851937961928 this:0.00643270579278656 bv:0.006082347722871979 tho:0.005610534243133019 with:0.004573565594120133 from:0.003938604600502937 for:0.003902009274176589 or:0.0038231429396537236 which:0.003803044455381365 :0.08047606663837291 +and:0.16470303018406396 Mrs.:0.08940110364085542 of:0.08859430867224498 by:0.0412881024168872 Mr.:0.038295232243567595 .:0.03144165850747178 to:0.02893866386110213 Miss:0.028119190760268316 :0.025327594727590653 the:0.02429013694199881 said:0.015207591526488949 that:0.012814731478709526 as:0.0124209357193633 from:0.010848086036599132 with:0.00929024849190839 Dr.:0.009169737205479278 or:0.007905316236620883 St.:0.007785637872480333 Gen.:0.007719054885281681 :0.3454396385910177 +the:0.12456789211017344 of:0.10149765310812105 and:0.06052387043723187 for:0.045347354785983195 in:0.03832613561124773 be:0.03617906658832134 to:0.03474889381936991 a:0.024194488671594384 are:0.02074917533540435 was:0.020360196385013084 their:0.019808161674837496 is:0.018517310045228233 or:0.017880421871024166 his:0.017463616687767504 much:0.017135085540183212 by:0.016365417086836292 as:0.015262945090806123 with:0.015030455505723645 that:0.014774725643786837 :0.3402671340013461 +the:0.11835284219610852 of:0.11342508167310636 and:0.07455061938560477 to:0.06390442886317879 in:0.041397192339660785 be:0.02864600919550633 his:0.020402329946483867 their:0.019961986662749388 for:0.019950422016818944 was:0.018959401054854982 as:0.018244274039790682 or:0.017860214741732147 were:0.013194863049924458 been:0.012938899205348036 he:0.012854002968678327 are:0.011930693205822867 that:0.011492152080408435 a:0.011329440368372926 our:0.011060653474211543 :0.3585444935316378 +the:0.16161408815139897 and:0.13193115999564467 of:0.1107972928115939 a:0.060264114529405166 be:0.04723005827177016 to:0.04136869006399884 in:0.03645569040205251 was:0.033572656994368774 his:0.0326254409007193 with:0.028530465309375346 is:0.027693525372509253 her:0.025484256767271153 are:0.024773622387586607 been:0.018046301970820564 for:0.014899565985822094 their:0.013636879447689371 that:0.013043703598416077 The:0.012831848919670928 or:0.012557423913087298 :0.15164321420679902 +the:0.16695960988236086 of:0.11059866679474482 and:0.06906582604689397 to:0.03812319795367839 a:0.03170573323297749 in:0.021534950417216845 his:0.018072821936806194 their:0.016253755749289278 at:0.013558369443775196 or:0.012702216481271898 for:0.01259725941174267 was:0.012536144961811407 with:0.011845109307865292 be:0.010851473352354637 by:0.010762857399954306 .:0.01058734389209086 tho:0.010535351657529644 said:0.010273640416974782 is:0.009945893491026956 :0.4004897781696345 +and:0.03868242960999506 as:0.031124813427855922 went:0.02352509775927722 him:0.02196555539050794 them:0.018760608639018784 up:0.017985449426794205 is:0.017894175620344187 go:0.017174904667157563 able:0.016756848979943888 going:0.014481672239490295 it:0.014128375989346808 was:0.013277058274565138 time:0.013249953793837373 not:0.012469887553778763 began:0.012465717758716884 way:0.012105610030480113 back:0.012090864562211581 right:0.011941707822828511 amounted:0.011564315359310868 :0.667354953094539 +go:0.06373856472509806 went:0.0492498701873527 came:0.03782339574705122 it:0.03467729250612501 brought:0.030897439907891497 out:0.02842566561547069 back:0.02809923850055374 come:0.027580737460471082 down:0.02739676855770065 enter:0.024840913015536717 taken:0.0242044966526933 put:0.024076435813050946 thrown:0.02405748447287647 them:0.023333284749541085 up:0.02306046518879859 way:0.0224933067747334 entered:0.0210126184838793 get:0.018895456874631806 fell:0.017426003685093738 :0.44771056108144996 +was:0.21161879370691494 be:0.15163482833412875 is:0.09646514233735423 and:0.06905067535019525 been:0.06272436388696205 were:0.046934775460045694 are:0.03606694847149951 he:0.03441462821687213 being:0.03305801163650788 I:0.026911649066361575 then:0.018056441385749796 Is:0.012115064476628325 bo:0.008742650092400057 He:0.007229092758602327 had:0.007214411271521082 she:0.00709856444340391 not:0.006828190217586244 which:0.006698442144035708 just:0.0064673784340534765 :0.14966994830917707 +well:0.11482583804944232 known:0.09871763831710513 soon:0.0916505083085803 far:0.07244252345830873 and:0.05646760229569708 long:0.033191133685989645 such:0.026114132691679413 just:0.021539382495143138 much:0.018216698075154383 but:0.015820973354116454 it:0.015060478378985437 that:0.012982875435048865 regarded:0.011853385324054824 inasmuch:0.011638912473280656 him:0.010904627694769634 same:0.010576795833003501 Just:0.009621947202407478 them:0.008618852072826538 designated:0.00803461652825095 :0.3507210783261555 +of:0.30082035483901975 to:0.11587514602848267 by:0.057926362460741225 with:0.055358503747509176 in:0.05150824330875841 and:0.05003188593069002 that:0.04764266495040542 for:0.046129406662406655 from:0.03348411927355998 on:0.025144873246731116 all:0.01782591687236723 at:0.017416780708354573 as:0.015498200876019021 is:0.015005241156620048 upon:0.014681130740170478 under:0.013375652571743061 In:0.010960889837275006 which:0.009660660300205277 into:0.009014717539749887 :0.09163924894919097 +the:0.08552691449898345 of:0.07629559940830544 and:0.06975153661083608 for:0.058217730916988446 to:0.0551824138205901 be:0.0296641158454737 in:0.02289878309567031 a:0.02256567162779972 or:0.019084889535972597 I:0.018397745175259644 was:0.01817889314720438 at:0.01816194991027441 is:0.015896773192667798 he:0.015633117689950918 :0.015533695292503433 that:0.015073734057661263 will:0.014978840624594295 their:0.013591247666505652 they:0.012574175357463479 :0.40179217252529487 +of:0.10744648103652968 the:0.09772369471160414 and:0.05131357973446444 a:0.04787483295898863 in:0.04093762343801909 to:0.030269455705613645 one:0.02503694873549368 that:0.01973607974070657 for:0.01671155099021452 by:0.014595826708999863 In:0.01005998763662582 :0.00966248151835172 or:0.009281585425975552 north:0.007630975542374729 at:0.007285101410727219 other:0.0069528775810573755 his:0.006358400454454692 more:0.0061747507939574455 tho:0.006149276274042769 :0.4777984896017984 +a:0.5965785303136235 in:0.07538351970989249 of:0.06791748779600154 the:0.05397790561005005 very:0.041897811618137576 with:0.020107305708710378 for:0.018880808107357747 A:0.015838836257920107 and:0.012874825335329399 In:0.012555045526584149 make:0.008719867062325174 to:0.007594629879885902 as:0.007292245295028444 is:0.006907926610376773 any:0.00666794776115838 some:0.006235047205316361 no:0.005440055764486906 their:0.00531782193255532 his:0.004947125636457317 :0.02386525686880242 +:0.05408755002078587 that:0.049531093299571755 and:0.026307747831082865 it.:0.023066050300906284 but:0.01604063510609521 as:0.013691133477483644 them.:0.013231826614228009 country.:0.010841946065548622 of:0.010487154798430135 which:0.009468692177853443 people.:0.008334614695462483 years.:0.008004416265567844 time.:0.007956347283674411 If:0.007858697640010603 him.:0.007413514011734311 year.:0.006977232836926869 for:0.006851092903969388 life.:0.006064905382420001 .:0.005982979647669748 :0.7068023696405785 +of:0.3921410183973008 in:0.3354809218370536 In:0.07359399231594284 from:0.029849515617771806 for:0.027584055785962337 to:0.02633379300243112 on:0.020276708844159014 by:0.012870931800305345 with:0.010320758369291607 throughout:0.009011434676407516 iu:0.008547649433506981 at:0.007048418007380166 within:0.006500239329818409 into:0.005598802912418024 ot:0.0051642668720809455 upon:0.004044052675203908 through:0.003997130362922535 that:0.003615868965592227 and:0.0034927319080327447 :0.013527708886418082 +the:0.27924339621322924 a:0.18624824694676576 his:0.08264453756287221 and:0.04407890071641356 The:0.04360056346841995 my:0.030463351568162312 no:0.02801291983569043 her:0.02775304050816191 to:0.025907270487673703 tho:0.024312081633231536 this:0.023715453364340118 your:0.01725719221397481 that:0.016167210985881232 of:0.013778048167386195 No:0.013662910671416206 their:0.013407799978864383 our:0.011103968056037979 old:0.010911927110129225 tbe:0.01029252037577201 :0.09643866013557721 +one:0.015552536992080472 more:0.014252271697624306 on:0.010631301787611593 day:0.010222750824534239 two:0.010216157614982159 person:0.007504694644314241 in:0.007364820929323563 man:0.007179188731169107 law:0.006205362369136604 action:0.006166303509128973 and:0.005659786788634644 city:0.005177234665142273 three:0.005130416479837977 State:0.0047265097104810415 to:0.004696031397422901 ten:0.004594585978494318 of:0.004463781172886088 town:0.004231879326219736 year:0.0040256313925199315 :0.8609987539884558 +No.:0.16544496094758235 to:0.09627325092418909 at:0.07489659362835034 of:0.05954112506969055 and:0.0379049892002686 from:0.0375515047202723 by:0.03686390116259982 @:0.027866691443300538 .:0.023210531570908396 N.:0.021741220181666833 No:0.018290808090381912 the:0.017702052717697685 Mrs.:0.01622951004942226 with:0.015342204724302805 lots:0.014024277180206044 Sec.:0.013475159263401612 lot:0.011345638732650598 S.:0.010423074232662775 block:0.010251871195580516 :0.29062063496486495 +the:0.2589916058111857 of:0.09068210159268475 a:0.05280701881307296 and:0.043551637954089235 The:0.021520570754674867 to:0.01955291246980689 in:0.019122516102001788 tho:0.018325504391725592 for:0.01574211030197297 by:0.01486536801353194 that:0.014562773345467624 :0.013103933961829796 .:0.01267471674384487 with:0.011755442951039766 at:0.01146866894088666 on:0.011368335225904325 this:0.010609996765398406 an:0.010279703056497514 Mr.:0.010024724081293181 :0.3379903587230912 +the:0.28489264487973776 not:0.18733854561778754 is:0.0595813538479789 The:0.04934482234622293 was:0.04557800092664069 and:0.03711367319603718 are:0.026318324631014023 of:0.024221091221717696 tho:0.018388810733659895 were:0.014460922629137772 that:0.013401138206944378 had:0.012997125055275253 be:0.01242203844910214 have:0.011958321493267915 can:0.010821588267360623 but:0.010672190452002671 with:0.01059742361218885 I:0.01017822295042033 Is:0.009927123813951113 :0.14878663766955233 +that:0.16805207748951084 and:0.12746288592334823 as:0.07938501090438992 if:0.07858548130301864 when:0.037886847837899244 but:0.03754093147353823 of:0.036642236239243335 which:0.029954198937218752 for:0.027382083647337685 If:0.02643731403548852 let:0.01977506434445277 where:0.015322166720552553 to:0.013517773581737337 than:0.013409245982962762 until:0.012570815165338657 do:0.012203369288186506 what:0.01136747995763192 because:0.011253863534534324 will:0.010574321206616099 :0.22967683242699374 +one:0.03598103259749711 lot:0.03136864327239169 two:0.024812213350408507 person:0.024286815539623797 day:0.020646873774626893 year:0.019280410901722375 owner:0.017111286250887172 vein:0.01650058876611674 man:0.014677508833560313 city:0.013417040365446562 mortgage:0.013387764097969532 ten:0.012673037239747368 action:0.0123987901681816 tract:0.012169598258563724 sale:0.012045966045240488 on:0.011725155829363381 law:0.011421696719199027 five:0.011137584464245719 whether:0.009734238390608559 :0.6742237551345995 +the:0.1378854459619626 of:0.09550816209198172 and:0.0793082284712746 to:0.06325432732593851 a:0.04981744998475612 in:0.04049507588462003 be:0.036034788213397076 is:0.023342186109428096 or:0.020042185465407026 his:0.018536136774378487 was:0.018362645804285444 for:0.015918042951775277 their:0.015879187622248634 as:0.015274637443141725 at:0.013719580768808836 an:0.01347101662130876 that:0.012412869685016129 are:0.01241085713967708 it:0.012346328197267564 :0.30498084748332627 +J.:0.0955117979717418 John:0.07394585605645422 W.:0.0548230970077728 George:0.05415233749163569 C.:0.04110995869276589 .:0.03840518831179142 of:0.03605205360818702 Mrs.:0.03521629576140465 min.:0.03302692649100951 A.:0.030973345878491963 and:0.026650117711719077 F.:0.02565100928505389 Geo.:0.025002955074670704 G.:0.024824581472922384 E.:0.02272235972439914 Charles:0.02227354340575227 H.:0.02219283527386708 James:0.02209533641176557 Mr.:0.019638261789995334 :0.29473214257859964 +the:0.3628649543368223 and:0.10021751925379799 a:0.08722281395303216 of:0.08043659769945531 as:0.040044130581374224 The:0.038857881999807505 their:0.03568658804304476 his:0.03181561063015459 its:0.030666630635893307 our:0.022935990016724812 tho:0.016146645036150712 to:0.014942272520654235 very:0.01403790276404406 her:0.012987565195656234 that:0.012870834585688684 great:0.012604033562112558 with:0.01258707704523024 most:0.011690144487191568 by:0.00895221435300866 :0.051432593300156135 +in:0.15582617326508538 of:0.15041916567845054 without:0.06449092612173966 have:0.054598154561049106 for:0.0504420708542381 by:0.045706724127170396 to:0.041346122766796105 or:0.03717404492501222 be:0.034290543693565746 is:0.030396008951386718 In:0.030081670060414855 if:0.029119973970291105 at:0.028164087741962142 with:0.026317232292706726 that:0.02551822006694495 from:0.024144664173518557 had:0.023384085823160185 make:0.023299938730072686 as:0.01560029873444355 :0.10867989346199124 +the:0.2014954853133326 of:0.0861414391416471 and:0.07280385406465283 The:0.04559186983907473 Mr.:0.03492086363563214 a:0.02742399264974953 that:0.027378585421016878 to:0.018065273637566843 or:0.015887011513874543 tho:0.01278835454433166 :0.012776359790067669 in:0.012534070531893962 this:0.012110080689405844 his:0.010243683215264043 their:0.008705606823750465 said:0.008477115479989892 .:0.008231419848711858 which:0.007797785800011309 as:0.007794443306140376 :0.36783270475388574 +of:0.11938339479832172 and:0.07899705614904591 the:0.06847993840740836 to:0.05557517815973153 be:0.03688218828214241 was:0.03362022803273548 is:0.023064286042892602 are:0.020774999362797256 as:0.016873338835601163 or:0.016239131434504707 been:0.015570764652400617 were:0.015046267622871127 by:0.014010585545157791 a:0.01311904449507844 with:0.01238452649187479 for:0.01212176379562493 which:0.011741467190556151 on:0.010377370306141874 from:0.009699856412721565 :0.4150386139823916 +to:0.12022893700269083 and:0.09020394424291768 the:0.08587503820055309 of:0.06450042443224316 in:0.0310058468700829 a:0.017742048521183405 :0.015548046036689871 not:0.01491307651316237 that:0.014112408707955496 for:0.013734482372212283 I:0.013065769926808477 will:0.012848502316304782 at:0.012837991177321897 In:0.012628718855091186 by:0.012491091048660757 be:0.011425930130217754 is:0.0113962101007567 he:0.011342727513475473 or:0.01112522537451577 :0.4219735806571561 +Mrs.:0.08932020649407242 of:0.07788607824161042 Mr.:0.05270164635614909 and:0.049760036283267695 .:0.02810589498384833 to:0.025649771122178484 by:0.02321586932815993 :0.020383661073254865 that:0.01988767182243835 at:0.017046741716840407 the:0.015247156336849057 said:0.013163950938349007 A.:0.013104535450005568 as:0.010853501846009559 Dr.:0.010692531944511497 in:0.010484525252408604 from:0.010035966010238706 J.:0.009066195849959815 John:0.007778045034792022 :0.49461601391505616 +I:0.1684671892997448 we:0.09736817371552067 they:0.08523891326676356 he:0.07077437426264624 it:0.05301265882595542 and:0.046746763145494 you:0.0442843966945408 which:0.02793910442685348 that:0.025799675323621974 It:0.024602582700234212 We:0.023703045816170776 who:0.018942298611530826 she:0.01708661174900721 They:0.013052870830711369 1:0.01258662631502788 man:0.011911518919022495 States:0.011896054290135192 people:0.011851927115158997 men:0.009159603922540277 :0.2245756107693198 +the:0.36593261399649285 this:0.11552038084722582 a:0.073952551568861 and:0.04306153746640331 of:0.02215288381196927 The:0.020856470236824506 one:0.01985021380161429 that:0.015778765341978883 is:0.014899659088298838 in:0.014704306458554717 not:0.014402452365713494 to:0.01395396456279879 next:0.013720378168805345 his:0.01371190801510005 tho:0.01370432651288401 was:0.012041839015727267 law;:0.010544241423836758 be:0.009913336152540793 he:0.009592692984330556 :0.18070547818003946 +law:0.02756944349413027 for:0.026061288152341336 whether:0.026041327893736952 more:0.02490797928178342 can:0.02142608154028686 to:0.02044860725924284 of:0.019026385332552402 action:0.017020929777838156 day:0.015481786197224885 in:0.014725847072676159 person:0.010668942345043637 debt:0.009891560354060252 year:0.009804209882062861 office:0.00962845723121319 it:0.009609674961405022 and:0.00936200715492874 time:0.009340251957585756 at:0.009269320065929808 public:0.00923699574488652 :0.6994789043010708 +and:0.09851364490916904 of:0.09298583253224255 to:0.04640044551248765 the:0.04218486461574095 in:0.03866390972306623 a:0.027655654817557707 be:0.02615314507838688 for:0.023571013759786857 is:0.022458692222457565 with:0.018900425364220225 was:0.018162508256080276 or:0.017719909940377327 by:0.014999192938848422 that:0.014490748948568971 as:0.014443509842405965 not:0.012452517458620053 In:0.012395682699907406 his:0.012134866460329666 are:0.010917646455861846 :0.43379578846388445 +of:0.2198005385401261 in:0.2001048618595644 to:0.08985171839286309 In:0.06696165314002987 and:0.0570891996176551 by:0.03768092923735567 for:0.03200625267201345 with:0.029255067526671032 from:0.028523215723049875 on:0.02076683886668799 that:0.01899566617111123 at:0.01680133303135863 upon:0.014113243388117971 into:0.013117751666945907 after:0.011310572194228607 through:0.00849132111906679 was:0.007320408736836202 which:0.005857988938659992 about:0.0055829100347636025 :0.11536852914289453 +the:0.5090280035802717 and:0.07414878530486473 a:0.0682276608716747 The:0.04605271336925957 tho:0.03789743382034066 is:0.023599630003398535 of:0.023160110158161783 al-:0.020267580277597348 was:0.019337076168639448 in:0.016096059099512512 tbe:0.012331401050817705 are:0.011849705727702 that:0.009963874848055061 our:0.009838095009448702 as:0.008897599511343626 were:0.008798914580213377 by:0.007856216951374888 to:0.007103940657308776 with:0.006614197039764384 :0.07793100197025053 +to:0.5335143524888473 and:0.12550790826293567 will:0.05926481575739806 not:0.043005756545416995 would:0.02887248514803878 we:0.017251188874620713 shall:0.016308123783744053 I:0.011731971338462188 or:0.01125461916643272 they:0.010732386331324572 can:0.010053732892408318 may:0.009975432039761378 could:0.009831024501176714 should:0.00951082604570067 must:0.009279234974863618 you:0.008703449501684609 that:0.008338897434889789 soon:0.007344557985851524 cannot:0.00653388678788261 :0.061985350138559735 +and:0.15374135458845534 that:0.062072322327304724 to:0.025578866962706746 :0.022958198817041527 but:0.022213304707207632 for:0.021838166345680442 which:0.018880809298160914 as:0.017273681443716618 of:0.013048947888288295 by:0.010882969438392254 time:0.009762981414704334 in:0.008763719938488224 then:0.007959723202048616 than:0.0076086915916593134 And:0.0070090002517183185 the:0.006972219802172851 when:0.006704050322080537 after:0.006560953260703911 is:0.006540937362285104 :0.5626291010371843 +are:0.1136225800337677 is:0.09462899288632373 have:0.09200452967188791 be:0.08923952266502433 was:0.07714763113305301 has:0.07337669164860548 had:0.06180520081732722 were:0.048941019365803314 been:0.03183039489905469 and:0.029547852598247683 he:0.020624896109881913 Is:0.02017359721973379 it:0.015437968459613899 as:0.014921779881895575 being:0.014211696426517022 which:0.013807184274108306 amount:0.012506949290084286 not:0.01142061746322619 who:0.009208353548807138 :0.15454254160703682 +the:0.20475843602148142 of:0.08528150644433835 hundred:0.02491005089678842 a:0.019645446836749694 and:0.018989327028932277 tho:0.0174319756907435 by:0.016229065302202687 these:0.015944430983916822 at:0.011713322817376767 The:0.011138031011614691 said:0.011106136312475666 other:0.01003672994392739 or:0.009643542049770434 to:0.008998046882875341 with:0.008727791792745276 their:0.008338555366680671 .:0.008061371851149817 two:0.007966967973991 in:0.007966238327591874 :0.4921130264646479 +of:0.13068302668807036 and:0.09222574733654576 to:0.08215593284072648 in:0.07909791886957938 with:0.05718615529954117 for:0.056999132636660794 is:0.044678882493440195 by:0.040194752969538734 at:0.040007614433718426 as:0.037349601326875925 was:0.028021310103369987 that:0.02745130681592571 made:0.02733129422177298 on:0.02517730971443292 have:0.023374145484071608 make:0.021644330693603036 In:0.019518004309456403 from:0.01884903244888501 had:0.018383432549234142 :0.12867106876455095 +was:0.213795803838657 and:0.11528488500511837 are:0.102006708973595 is:0.10085314805137575 be:0.0970103944066569 were:0.07755641836638485 been:0.03688808012864672 an:0.03686042129277952 not:0.018192891268307212 being:0.013437536389264747 had:0.012848729748025667 as:0.010851241002283582 have:0.010333850848671704 so:0.010270466851888503 he:0.010213533910154426 Is:0.0098229487171105 more:0.009260963201890068 has:0.008193985889440057 or:0.004980948512203014 :0.1003370435975464 +min.:0.0636905690956504 J.:0.06162873187220284 John:0.04764247762572775 Mary:0.04507819365177518 W.:0.04152348170952823 .:0.04097053407626163 C.:0.037393390733231016 A.:0.03442213328047145 and:0.03385349198018083 Mrs.:0.032227325010734185 George:0.03055595325155126 William:0.029955556176920087 M.:0.029741367664096886 Charles:0.028757195623025783 James:0.02503062423397286 of:0.023992274464964523 S.:0.021401220941963523 F.:0.020555599455817065 Miss:0.019516104687745818 :0.3310637744641787 +of:0.09129790931378902 the:0.07369883040827747 and:0.047842263382354346 in:0.04189055351593407 to:0.04045875475680249 a:0.03542341257202578 be:0.02020462051672066 for:0.01979292654746225 was:0.01760256398103379 at:0.017380150555488715 is:0.014984483003968216 with:0.014047653760730413 by:0.01374644383819499 :0.012670486581795598 In:0.01200961464556976 or:0.011563835749786333 from:0.011391516893522809 are:0.011273104484969465 that:0.010755276030689069 :0.4809655994608848 +and:0.1436049237841356 to:0.07920939404896601 of:0.03578992576961711 which:0.035151490729948456 re-:0.029478985693585574 that:0.028219155808867784 for:0.024388756402958144 or:0.023852116063025307 not:0.02278311757804375 have:0.022207041004794648 who:0.02214591918381536 the:0.01995998182851126 in:0.019527814996202028 ex-:0.017409940975967396 they:0.01726837696362767 con-:0.01721546164935223 be:0.01596297722594579 in-:0.015705995925345655 I:0.015478889002129006 :0.3936397353651612 +away:0.05746860598250849 and:0.04985561698690421 taken:0.03950823995165392 miles:0.0355312759828073 feet:0.031845900191456514 come:0.022313957473317422 them:0.021637161013586904 out:0.020621546731341717 came:0.02000539576637417 up:0.019820502682224503 him:0.019195504147748815 received:0.019046714556510396 far:0.018152378296247898 removed:0.017489734983720518 down:0.017467467859455896 it:0.015386533775439217 years:0.01424855034507225 annum:0.014237643714946796 free:0.014107989586278378 :0.5310592799724048 +Mrs.:0.08330498159847018 and:0.07193602529911738 by:0.0475011038325292 of:0.044764962911666574 Mr.:0.03704674806084676 .:0.03026589232694751 Rev.:0.029376486038501657 Dr.:0.026819466229760978 to:0.020543244591776862 said:0.015298160800201095 :0.015029123868423203 W.:0.01280448495585545 J.:0.009290433890385948 Hon.:0.009178292376872255 A:0.0075333971102229695 John:0.006958419271133177 vs.:0.006566382791338379 Prof.:0.0065603177126285165 Mrs:0.006443527132834283 :0.5117785492004876 +to:0.3646826245340916 and:0.12366460654202595 will:0.07145584568981554 would:0.05978457448545453 who:0.04189266654559424 not:0.03474409057644504 I:0.029427278516081682 can:0.028315472211865728 they:0.02424206128058632 could:0.023020026927665374 which:0.022420590610841524 should:0.022223744324672057 shall:0.018785575863738312 may:0.01771047189697869 must:0.016387571784703202 that:0.015238320185947262 we:0.013484394229784664 They:0.009756974034450146 We:0.009001696996943578 :0.052761412762314566 +the:0.11076639060148961 a:0.07849534528798262 and:0.07662355077029165 of:0.07260297245149884 to:0.052614458906641126 in:0.02898323381454322 be:0.028619334122366183 was:0.018316043946281182 is:0.016699142604069347 or:0.015571116417843511 for:0.013777377220018703 his:0.013466243388399383 been:0.012200092708878738 .:0.011651566712874907 :0.01138899460054603 their:0.010869189054887483 no:0.010269055828557971 not:0.010112362588368682 an:0.009710495306262912 :0.3962630336681979 +that:0.22194188842659876 and:0.11243726516438793 which:0.09574133613516098 as:0.07668809885132453 but:0.04838370372444014 if:0.03938102513840542 what:0.03862406779068803 when:0.02573178969774014 If:0.023299388507438068 But:0.017210939631420643 whom:0.015269809375158792 because:0.014684605689775065 where:0.013549764214894976 than:0.012594256403837179 As:0.009718566260958069 while:0.009389243657621543 think:0.009109944562810031 time:0.00877627257843871 When:0.008549148238399262 :0.19791888595050172 +there:0.15282240558043036 It:0.1250877021251384 it:0.1172130349964821 he:0.08447653464159645 There:0.07990106646359449 He:0.053545487723974064 and:0.03475602177722308 I:0.033514699763994925 which:0.028339689006514263 that:0.02258044118480592 she:0.020389246311069347 This:0.018864857928065765 who:0.017143411225723663 She:0.014044583378045664 this:0.01264429778309141 lie:0.005676248946248602 ho:0.005008892472785812 as:0.004728079857187771 one:0.00469102709236943 :0.16357227174165848 +of:0.15776664674113342 the:0.05809449131085208 to:0.04773602989083368 and:0.04278431406541614 by:0.0375275757989034 :0.025814069216265133 at:0.0228441170019929 in:0.01927827291060194 for:0.018792248691344857 Mr.:0.016403116183651884 Mrs.:0.013456649123332652 on:0.012969418797056334 that:0.012967406634309538 with:0.01182001785778795 .:0.011803406204152857 said:0.01074941392606144 from:0.009835461031374025 or:0.009272413246238592 St.:0.007312417902252873 :0.45177251346643826 +the:0.2932032746033928 a:0.2842359074388746 Republican:0.05605428518701721 Democratic:0.05141713173600183 The:0.03162748589693653 A:0.0226149668685281 democratic:0.020293435874801424 tho:0.019528992922632892 one:0.015462293456840373 republican:0.015423818971355474 and:0.013494212915246438 cratic:0.011042092141970408 that:0.01017702946155794 tbe:0.010105272990138907 any:0.009646907996574475 by:0.009110224620294314 large:0.008245147154459396 every:0.008224823535200767 first:0.008077845170967594 :0.10101485105720855 +in:0.6288574260735977 In:0.1147749479375376 of:0.0970879295121544 to:0.02841431318725186 into:0.01741565693028638 for:0.01650107439599798 from:0.013263856147564725 on:0.011173834609952943 iu:0.008462278151306924 by:0.007772606478035623 and:0.006793376580874443 that:0.005372537725012807 with:0.005298978307203114 upon:0.004669054916352896 throughout:0.004484372256406477 at:0.004375586718329459 through:0.004235723348657808 under:0.0027568857016422345 over:0.00258381405927877 :0.01470574696255585 +a:0.3243834845449991 of:0.1869148241843331 the:0.13004149829959888 in:0.08202004350216138 with:0.041696744209932 and:0.028077761471405362 for:0.02526235896151284 to:0.021119166683851453 make:0.01622168088785665 In:0.014653400730987807 very:0.013312747016748502 their:0.011722052589208953 A:0.010681206217462963 by:0.010207718825850118 The:0.00982098101104527 no:0.009213447655340665 any:0.008743581168757335 or:0.008139782526511624 some:0.007919766872848994 :0.038847752639587035 +far:0.09198358105353047 soon:0.07059021050095278 and:0.053124254421070286 well:0.05256983038129906 such:0.04149842602168927 just:0.03558441809210886 long:0.0350707106706282 but:0.03049848228153382 so:0.023927121139488656 it:0.023196727195847873 much:0.02105746179371048 Just:0.017105781510548066 me:0.016024446357692793 that:0.015025053766770552 them:0.01385582189156902 him:0.013543372845564795 known:0.01351925408441179 and,:0.01093903725102498 is:0.010556072711613159 :0.40932993602894513 +of:0.28658372383791414 in:0.1331178545324512 on:0.08874916473911713 to:0.0759825228925447 for:0.05207460987954867 and:0.045245192255386764 by:0.037308233641813945 from:0.03352264191042732 that:0.03075889068706964 In:0.025281965317169735 at:0.02243966292393788 with:0.019006791418945467 over:0.01539832766079936 into:0.012806846946298902 upon:0.010543668117711888 before:0.010242536613962825 through:0.009393784014192158 after:0.007969069242994441 all:0.007968949957435915 :0.07460556341027794 +one:0.1028303141280697 part:0.05963429477052991 out:0.04766456937681193 some:0.031418679026461914 members:0.030764490253327767 side:0.029940657362655835 portion:0.022063658796890564 office:0.020457735219956013 member:0.019726706386316174 end:0.019666887540649894 tion:0.018667441728710307 parts:0.016814747270460957 people:0.014112771422418794 all:0.014072739582212475 any:0.013183573287639892 One:0.013083578354183906 that:0.013024335602903442 account:0.012482348155001894 many:0.012077825070275192 :0.48731264666452345 +the:0.11919516938815296 of:0.07230453158552728 and:0.05781056740443249 a:0.043018564803886335 to:0.031305092790907506 in:0.020848713353460488 at:0.014270110001066288 .:0.012526810245749479 :0.012413283442322082 for:0.011719122709941797 by:0.010808400946589808 or:0.010404172990115616 The:0.01003576004804544 with:0.009811868184449042 tho:0.009295902015355835 was:0.008924239095331684 that:0.008672304223433876 is:0.0085591147338948 be:0.008335143826716943 :0.5187411282106204 +told:0.23222203417514634 to:0.10543955574702303 with:0.07300440392641461 for:0.055314215784967376 of:0.042027257329477964 asked:0.041271149352691924 saw:0.030469688716497193 upon:0.027780702760886167 by:0.025792046212886634 see:0.023572775691290584 tell:0.023506387337081738 let:0.020237850190856062 made:0.0135764738816027 on:0.013491127296779015 knew:0.012923237657153589 from:0.012340483399904126 gave:0.012166652845680768 give:0.01194251921755021 tells:0.011429103889074125 :0.21049233458703584 +the:0.4840485738864426 a:0.09041443740914284 very:0.05867329144361104 and:0.041188744042515935 is:0.0393844266298635 The:0.030623882464221614 be:0.024763863515988607 was:0.02466783647411619 are:0.023663771211605414 tho:0.021958501001595996 as:0.013896740880871662 all:0.012157664719873904 of:0.010685151667156138 were:0.010681579987842159 tbe:0.00850366152692006 been:0.008043115904453108 with:0.007417905563898623 most:0.00676926322308924 Is:0.006608406369933352 :0.074849182076858 +the:0.12009396669050754 said:0.054863067865865506 Wall:0.039398991211114634 Main:0.030839515496794232 and:0.023650111155306925 King:0.02235479230543275 Third:0.02228882091776536 Mr.:0.02160283633306894 High:0.017688380312327032 Water:0.0167129989701827 Market:0.016306648586639487 Franklin:0.016004203521292684 .:0.015996334935354975 of:0.015174898947409901 General:0.012793966810962067 Seventh:0.012508367559735006 Sixth:0.012457462801912603 District:0.011985793398269407 Union:0.011086897848925862 :0.5051919443311325 +it:0.12987676010658775 he:0.11984529921232186 It:0.08444785703705787 I:0.07334558731249716 and:0.05860268836786575 which:0.053418721645120106 He:0.04161051888501088 who:0.038623579071168535 she:0.031671748770331416 that:0.02078285632050208 This:0.012826525991356214 She:0.011051477003945901 lie:0.008675708148810404 there:0.008598708105436257 ho:0.008447376053316668 this:0.008378115402585228 bill:0.008227511988630521 time:0.007906754734454409 man:0.0073806561475551055 :0.26528154969544593 +and:0.0549959741482081 not:0.04733677948265761 is:0.04403788230957047 began:0.04222213299627996 right:0.03794170820498105 able:0.03490099699077452 him:0.033725417011084356 them:0.03189935417478823 want:0.031686245515095364 as:0.02677511453072563 have:0.02675931568935144 enough:0.02382438221603589 time:0.02273925903675818 ought:0.021706283278742255 seemed:0.021443098687331665 desire:0.02051855723695025 are:0.02040599049215915 me:0.01984655478413087 allowed:0.01973735091549526 :0.4164976022988798 +the:0.18179470057646016 of:0.08674409487437103 and:0.05891648439314675 that:0.051941563313423325 Mr.:0.03611963772989963 The:0.035221556342727924 a:0.033511640089725174 this:0.017206977935928718 or:0.015340377669888175 in:0.015328798889933605 no:0.013728208994337746 to:0.013049490199744891 tho:0.01283137533392388 his:0.012339015515583624 as:0.011873037242155523 an:0.010118708549008397 other:0.009951283100883423 their:0.009878834116132332 :0.009664375379880793 :0.3634398397528449 +the:0.6341564589259524 a:0.08495959974430758 The:0.028619757629310877 first:0.027540563890795993 tho:0.024292795204885333 some:0.021313859807163296 in:0.020720253902622998 any:0.01762316220042532 this:0.014637393006402185 long:0.013747516798525638 that:0.013544303397170582 same:0.012510924181033207 short:0.010108810651381821 tbe:0.009512097255056988 present:0.009394668307318816 of:0.009338802833839872 no:0.00789433893434668 In:0.006896812250809434 and:0.005984532336408529 :0.026203348742242345 +day:0.019951155943844442 due:0.018345409445074203 State:0.01623447235167998 city:0.013390240220942614 county:0.011822049164566199 land:0.010164706185375738 state:0.009914508125160976 dollars:0.00976590886584299 States:0.009658499341047582 power:0.009533220395488283 in:0.009018833395279561 ;:0.008902194752999068 up:0.008306910132830993 feet:0.007855945510216938 time:0.007702510341630715 North:0.0074643791562563 street:0.007082170586588788 costs:0.0070090660316892055 one:0.00682212951555906 :0.8000556905379264 +the:0.09947213863636196 and:0.09455727929354123 of:0.07728657022686916 to:0.07404475075843259 was:0.03447464483853123 a:0.033367302983752366 is:0.03275633774100832 be:0.023446601808673518 in:0.021622293220434508 that:0.021341045274814553 be-:0.018840306180234193 are:0.018071844211370276 or:0.017491531703386503 which:0.016941122360326796 with:0.01598677768922335 not:0.013312039653276715 for:0.013059156449503428 were:0.011532603330699017 more:0.011528662249633934 :0.3498669913899264 +lots:0.13236987183985882 at:0.08315707094822693 of:0.08191219633641972 to:0.07851145488500905 No.:0.06753922164719464 boy.:0.02298307323617616 from:0.022730670422325978 girl.:0.021178392857222308 and:0.021138359201846528 about:0.02049375375530221 the:0.017440253102363468 for:0.017154138010223204 between:0.015528474940848904 in:0.015510477730757885 was:0.014524205145115567 with:0.014081753802791214 feet:0.013289341113194336 lot:0.012507353150721238 by:0.011878585803563779 :0.31507135207083803 +away:0.05746860598250849 and:0.04985561698690421 taken:0.03950823995165392 miles:0.0355312759828073 feet:0.031845900191456514 come:0.022313957473317422 them:0.021637161013586904 out:0.020621546731341717 came:0.02000539576637417 up:0.019820502682224503 him:0.019195504147748815 received:0.019046714556510396 far:0.018152378296247898 removed:0.017489734983720518 down:0.017467467859455896 it:0.015386533775439217 years:0.01424855034507225 annum:0.014237643714946796 free:0.014107989586278378 :0.5310592799724048 +one:0.1028303141280697 part:0.05963429477052991 out:0.04766456937681193 some:0.031418679026461914 members:0.030764490253327767 side:0.029940657362655835 portion:0.022063658796890564 office:0.020457735219956013 member:0.019726706386316174 end:0.019666887540649894 tion:0.018667441728710307 parts:0.016814747270460957 people:0.014112771422418794 all:0.014072739582212475 any:0.013183573287639892 One:0.013083578354183906 that:0.013024335602903442 account:0.012482348155001894 many:0.012077825070275192 :0.48731264666452345 +is:0.1740503153529292 be:0.12840339214240684 an:0.11711383254294697 and:0.09349517958778521 very:0.07038080353266635 the:0.049937054904320634 was:0.04424659141182772 as:0.03907003117193745 so:0.03273775978748738 are:0.028185779050950262 most:0.022300514023006146 not:0.016580574133534358 Is:0.014222187956528834 or:0.014155818199600427 a:0.013898012684428454 no:0.011277159703528052 been:0.010672333878959153 in:0.009636837906636912 were:0.006826884279135485 :0.10180893774938415 +one:0.1028303141280697 part:0.05963429477052991 out:0.04766456937681193 some:0.031418679026461914 members:0.030764490253327767 side:0.029940657362655835 portion:0.022063658796890564 office:0.020457735219956013 member:0.019726706386316174 end:0.019666887540649894 tion:0.018667441728710307 parts:0.016814747270460957 people:0.014112771422418794 all:0.014072739582212475 any:0.013183573287639892 One:0.013083578354183906 that:0.013024335602903442 account:0.012482348155001894 many:0.012077825070275192 :0.48731264666452345 +of:0.18631356668384974 on:0.10069544066616685 in:0.09199876366879223 for:0.07440003622559689 to:0.058993274809837626 and:0.05232588438233757 at:0.04718024108684188 In:0.042365491451149345 was:0.035779775822278585 from:0.029087511027657848 is:0.027739579856545023 with:0.026032161383189433 that:0.02551856327323951 by:0.02435871137725318 during:0.021546585889759082 after:0.01880976735072703 until:0.013888946785341085 as:0.012720851409557999 when:0.011194325724599849 :0.09805052112527923 +the:0.16287760685838365 of:0.0883592780729449 to:0.0618987346693935 and:0.05423685233212741 in:0.030811253892523358 for:0.03057359609188714 be:0.025098115820027647 was:0.01826945122296575 is:0.01662970283289366 a:0.016448402520667066 or:0.01633619095301082 his:0.015510346299682681 their:0.015084175217362073 are:0.014656254371894712 been:0.013019491851438341 were:0.01267572744006931 that:0.012270302451397866 on:0.01131798809455223 :0.011150587255169986 :0.37177594175160794 +of:0.22411353966312308 from:0.13333575526159808 in:0.13031523694900235 the:0.12321917977988374 at:0.09636118339130413 to:0.08167924089029657 In:0.028006116473960403 and:0.02576692289019763 by:0.020832084513200247 on:0.010892528579864239 between:0.009658245401014948 for:0.008184466116226887 George:0.006619990129654244 with:0.006305074736845699 East:0.005906503229647111 :0.0052466170471790596 tho:0.00420617602055471 The:0.004201151430363865 .:0.003656366011570898 :0.07049362148451209 +of:0.25205349648943465 and:0.08741871283381768 to:0.07370839602254478 in:0.0670664299373962 that:0.0666250084046552 for:0.056047520959243646 on:0.045667931148620354 with:0.04192283466226404 by:0.03915080259198129 all:0.03189740476921359 from:0.03028542908740562 as:0.01798562526146546 In:0.017848385886785396 which:0.015202945322730005 upon:0.01400712247327581 when:0.013805374245544186 under:0.011468974765729955 but:0.010748301216825523 at:0.010090425780845059 :0.09599887814022157 +:0.05408755002078587 that:0.049531093299571755 and:0.026307747831082865 it.:0.023066050300906284 but:0.01604063510609521 as:0.013691133477483644 them.:0.013231826614228009 country.:0.010841946065548622 of:0.010487154798430135 which:0.009468692177853443 people.:0.008334614695462483 years.:0.008004416265567844 time.:0.007956347283674411 If:0.007858697640010603 him.:0.007413514011734311 year.:0.006977232836926869 for:0.006851092903969388 life.:0.006064905382420001 .:0.005982979647669748 :0.7068023696405785 +of:0.2774711511833713 in:0.04130069164523696 and:0.03954119014748374 to:0.0375924724277674 by:0.03337613961850823 the:0.029761418637289896 with:0.029417818674437008 on:0.02852395974214224 for:0.02756599185737478 from:0.02274524681866251 between:0.018223004994231195 was:0.016316411085094636 girl.:0.014922562711315835 at:0.014431102217497929 :0.01298359994438628 boy.:0.012186490069768874 .:0.01001046701907045 were:0.009860981492143758 are:0.00961936226105209 :0.31314993745316483 +the:0.1367767909054747 a:0.1196485274254551 of:0.11116246263975771 in:0.10641485141337967 to:0.043467291451953494 an:0.04336085730084275 and:0.03638518854608528 for:0.026176902654111253 that:0.025565566340590762 In:0.022302554502270706 by:0.017800224851785805 more:0.016097580326725355 The:0.014704315095159947 with:0.014265353267700802 from:0.013273845606181502 as:0.010807147248388644 which:0.010324537808425049 in-:0.009132126799605872 be:0.008365280905878764 :0.21296859491022685 +a:0.5023120173297948 the:0.1730570832172204 of:0.06086741599573348 and:0.028743410782493775 The:0.027991530639170575 no:0.018969788195556312 A:0.018542063349878225 that:0.016839956780771326 any:0.013381361988272614 tho:0.011770208864360617 for:0.01112081968059421 his:0.011095983333174143 or:0.009526136013936913 in:0.008710856540201326 this:0.008660267483607036 one:0.008595917341750492 with:0.008174473614097434 some:0.00727047616686931 their:0.0072067561411608685 :0.04616347654135615 +and:0.07632777559768969 as:0.05607389877048315 them:0.04050955792789004 is:0.029554065043149412 went:0.028913747705990107 him:0.02749883710028237 go:0.025090999762598872 began:0.022764141886049184 able:0.0212538569259143 made:0.021207360045268547 not:0.020794256733550114 was:0.020007989717369577 or:0.019467148100390352 regard:0.019392825786223186 going:0.01933088452108743 it:0.018357544471148544 right:0.018315225908028337 about:0.016219282291091833 way:0.016045693827529562 :0.48187490787826537 +and:0.14507320772351315 fact:0.08580533594336559 said:0.056464728489513914 so:0.05141663139801109 believe:0.03728868944610554 is:0.032697255055655516 say:0.030323479159427524 know:0.029749358812227955 found:0.025535190692382553 stated:0.021273605064562356 show:0.019511948220510757 but:0.018999393120383457 says:0.018814328565908398 think:0.016893655385130203 was:0.01658797795582863 all:0.01652317309060226 see:0.015409038245983688 opinion:0.015263158537430448 order:0.014744011681695817 :0.33062583341176116 +to:0.27691428568766585 will:0.1971018911156197 would:0.09231099873727586 may:0.09002126695674945 shall:0.057553758474349334 should:0.05022018974191922 not:0.04450996028532665 can:0.036521466928472475 must:0.027503184764480368 could:0.02198848071829157 cannot:0.016410810476753048 and:0.015784422432070584 might:0.01282241376926003 it:0.006581910654798501 that:0.004957227182350066 only:0.0036115381019646967 soon:0.003410296879683955 also:0.002969763226994895 which:0.0028786828131977817 :0.03492745105277596 +the:0.21365054262368366 of:0.14225319126233205 a:0.13553065248296856 in:0.032338580351064634 his:0.03138191707024518 to:0.03095271832396909 this:0.029882402988682714 and:0.027333788343367575 for:0.026239258494069512 every:0.025144251801603634 at:0.021645676276648488 by:0.021163882298894782 that:0.02014976986510863 with:0.019351112652456936 tho:0.018116970342763054 their:0.018038889648750778 an:0.01502056358563128 per:0.014014984934752747 one:0.013759918484652281 :0.14303092816835444 +the:0.8244337148448406 tho:0.031662001738710636 The:0.026984950285841632 of:0.02027246141597988 tbe:0.012462248640957912 and:0.010950266373571514 that:0.00810065934752073 this:0.006090133395362366 in:0.005095676877875056 to:0.0050648971724302164 on:0.004728097564473794 from:0.004190456537091978 tlie:0.002847452305144462 his:0.0027320033900958044 its:0.002542212560202409 these:0.002487031386027924 our:0.002290085952702912 their:0.0021912745864961338 for:0.002020244941355457 :0.021854130683318505 +the:0.428447008450072 of:0.1117461993486381 our:0.04498158347702334 The:0.033125989912422896 American:0.03089218521314023 to:0.025393431486095967 and:0.02410858974486972 tho:0.023567231696721907 a:0.022298312171032758 for:0.01885999213835731 many:0.017390221234560074 good:0.017372641248204757 colored:0.015579233770348123 by:0.014979717749237894 his:0.014599541534680136 young:0.01284211543525539 tbe:0.012428729406603342 white:0.012297222894608354 with:0.012103061077332774 :0.10598699201079491 +of:0.2262815535494126 to:0.10987101032990657 and:0.08925783986027991 in:0.07105628270850733 on:0.06286806211703097 for:0.05734566199323541 from:0.041535455991135395 with:0.039845065307719835 by:0.03686717001416736 that:0.03362124261856614 at:0.023913249738057623 all:0.018925017164770387 upon:0.018861741759371026 as:0.01405952454703642 In:0.01395459587962191 over:0.00970049912467378 before:0.008294962559161161 is:0.008270556853628168 through:0.008024318719787643 :0.10644618916393037 +:0.10656757071192428 it.:0.01911814014442302 them.:0.01477463140108681 .:0.011418699055552553 time.:0.010249199235797278 country.:0.009128201278640403 day.:0.008679451417105523 year.:0.008217515662218245 of:0.00788314813510444 him.:0.007238575925529787 work.:0.00627006533502238 city.:0.006202075474694797 people.:0.005219835355497548 tion.:0.005071353064526785 week.:0.004655692508612263 States.:0.004590833633396857 place.:0.004577792118748649 years.:0.0045383918479646075 life.:0.004493595357958596 :0.7501052323361952 +to:0.2826553173668937 and:0.07939606974534638 will:0.0751205734081554 may:0.037006356951356144 would:0.035683306260318175 I:0.03519228881000438 shall:0.02405099153503189 they:0.02288601542080585 not:0.021847619243907018 should:0.01754167386552776 must:0.016713757267176284 can:0.01615966554293948 could:0.01604560872999418 we:0.014881078438354668 the:0.012950681071809014 that:0.011291084041974498 1:0.011037548104742603 might:0.010547899393916569 of:0.00908380037930814 :0.24890866442243784 +a:0.2651752423665771 the:0.2571993197322888 and:0.11621140759326695 an:0.045126059420296016 in:0.027796845626945565 to:0.02650381927666987 he:0.023047789304025224 The:0.022721410687996074 is:0.0210649897061643 this:0.019141684728743932 who:0.017852499624764637 be:0.016120437514347233 of:0.01472995647004037 I:0.014603525830304371 was:0.013254628037953015 not:0.012564485023005686 will:0.01142310934280414 that:0.011246401854725656 which:0.010934972404907149 :0.05228141545417395 +the:0.11567574587945205 of:0.08595934776067521 and:0.06268942603593645 in:0.049277878962822354 to:0.04743771914145108 a:0.03147878632579207 for:0.02118414401869597 be:0.018071774133915884 that:0.016445345906391233 their:0.015142077413736342 or:0.014940036551856163 was:0.01452959841451421 :0.014426604854260365 is:0.012520083459234582 as:0.012290751589685199 his:0.011926663041595268 more:0.011770726608242051 at:0.0116430547193503 In:0.01069420928359112 :0.4208960258988021 +of:0.26659368119935295 to:0.10006092626236097 with:0.08277499727200899 upon:0.057077852223761556 for:0.04147004843228987 put:0.033628250436102965 by:0.03245143168205004 on:0.032294125986837466 among:0.028966626273093106 keep:0.026471827129964664 against:0.02371446862304455 from:0.021333811034618178 see:0.018820916781657086 make:0.0177485296594278 give:0.017659160460484328 get:0.016893534174653394 about:0.014577539357171735 in:0.012318783226804447 before:0.011954370624671496 :0.14218911915964444 +and:0.07558940021936399 recorded:0.030196237618668006 was:0.028917161578042846 made:0.027969746247669736 that:0.027730098932509103 o'clock:0.025060522019555328 up:0.023026552239529506 is:0.020398277211376416 found:0.02003101797656537 placed:0.017482208134164214 out:0.016937164562539058 place:0.016819459500107596 interest:0.016629321966808677 him:0.016002796715253755 situated:0.01573420479581609 it:0.015128305982428461 them:0.014715943643665314 part:0.014646613000297721 interested:0.014450471929902294 :0.5615344957257364 +a:0.14427474379039143 of:0.12259896444909875 in:0.10723983431213541 to:0.06144141189172998 the:0.05671349352475934 and:0.04373334731474996 with:0.031917294392701 In:0.02677178685319995 for:0.025819272120703535 or:0.02442300759541287 as:0.019555293316918448 any:0.019207902377764176 that:0.017801715500713695 an:0.014205988058944907 this:0.012189588187332958 such:0.010714466260255177 from:0.010235635196729261 :0.008939252937601354 no:0.008927006731953468 :0.23228999518690432 +the:0.2803178414866596 a:0.08985466202152038 and:0.06745250104354357 in:0.05917186540367336 of:0.05089820322139587 an:0.04162447505965694 The:0.021032224922852265 to:0.01862919694146908 his:0.01859577753241251 for:0.015191750459490368 tho:0.015174579642077106 or:0.014746281198492951 In:0.014130413230645029 their:0.013343774866302388 this:0.01276402999975567 is:0.009919802522723144 very:0.00854185958838004 any:0.008204335065290953 its:0.008091524925491726 :0.23131490086816706 +at:0.10725270218563916 to:0.07002526119735115 of:0.05626004470108598 .:0.04978085880652524 and:0.036688770473701 W:0.027405897330021647 A:0.02472367015703442 the:0.02320309178231034 Mrs.:0.02266584877740736 :0.020505823703826642 in:0.020222155120002427 J:0.019614664169449524 Mrs:0.018960554175816303 Block:0.018357799240086556 from:0.016762443355610092 E:0.01639051444189054 W.:0.015958720112781658 1:0.01407381179894156 about:0.0139552296811472 :0.40619213878937116 +be:0.17675470524883796 is:0.12330226251422576 and:0.11254744469190223 are:0.0963225029070762 was:0.09109482832333024 were:0.0403729095189708 have:0.03968572580347943 been:0.03690216006537968 hereby:0.02982545393286029 has:0.024488906166777222 had:0.022766638399041982 Is:0.019134690700380354 bo:0.014892724839293894 being:0.014204705588530443 he:0.01374418817736709 am:0.011152192258005634 that:0.008611466971880859 which:0.007792734500989647 now:0.006996949886221057 :0.10840680950544924 +go:0.1171592295183562 came:0.08153778089624818 went:0.08114777891016273 come:0.05712768367634324 the:0.05330064191209551 and:0.04619433397182652 get:0.03660471674065608 her:0.0305057555278199 them:0.02945826142160317 him:0.026985481367436344 fell:0.026906048664125586 brought:0.024569414272264795 started:0.02451300961057786 look:0.022815208478823658 running:0.0209163955383526 way:0.017901147715223338 fall:0.01765966452099723 it:0.017405018799014283 thence:0.0155053320222234 :0.25078709643584934 +it:0.20447436155207596 It:0.15864402370130454 there:0.06251265636741359 he:0.05532344822658098 which:0.05436710252298899 There:0.05171404108582399 that:0.0386775159134442 This:0.03042912042419199 He:0.02918820854744457 and:0.026458006354098704 who:0.024804017846713548 what:0.017561750000747264 she:0.015453382011059408 this:0.01407928059148635 man:0.01336844252645504 She:0.009038930366082523 work:0.008234554197486265 one:0.007657751679571459 here:0.006331855965394484 :0.17068155011963615 +:0.05957478846009257 it.:0.017679147685240537 them.:0.013197695859138556 year.:0.011005776235295374 country.:0.009846940404442924 States.:0.009012629300346162 time.:0.008982284646810458 years.:0.006882777229880395 people.:0.0065655529840367745 .:0.006412392326915742 world.:0.0059090768423845415 ment.:0.005907454102576745 him.:0.0058158287106046015 city.:0.0057814845024628915 tion.:0.005755002635030028 day.:0.005738757810849342 work.:0.005499747722712131 water.:0.005491047872945307 week.:0.005429107582924118 :0.7985125070853107 +soon:0.10105504240780254 and:0.05843585483009953 long:0.052216543738740205 far:0.05217786849066382 well:0.034278139349035175 just:0.03197601023058806 but:0.024580432135107588 him:0.02355662983062949 it:0.018706014713137726 much:0.018679059932246157 such:0.01588546937649493 known:0.015520132551720281 them:0.014306408218911233 so:0.013378883474227596 Just:0.013179410756002792 that:0.012002324924722156 time:0.01107170033436332 same:0.010730564783463537 her:0.01014379943378569 :0.4671197104882581 +;:0.04647071285374654 it,:0.030851159158709115 them,:0.01796362667695841 him,:0.015499949318332573 in:0.014081846754392 time,:0.011320307998190894 me,:0.011285093036146965 one,:0.009451087012805727 years,:0.008138908214120789 year,:0.00801008973034274 country,:0.007836107623150554 you,:0.007708156105773419 States,:0.0072661215984953925 people,:0.007188777395440522 him:0.006742024135029876 and:0.006319773771431399 up,:0.005987203018923995 us,:0.005704424765473832 work,:0.005543855116727177 :0.7656307757158081 +;:0.050937898560163224 is:0.030466372804117767 it,:0.021283516642938694 and:0.013076258801371915 time,:0.0115167202285905 nothing:0.011373148571242601 him,:0.011010988318778498 them,:0.010209273707464085 was:0.009965630939918327 there:0.009788688801264501 are:0.008181271582078412 ,:0.006948023980463143 years,:0.00682968736707007 true,:0.006573672861152672 all,:0.0065614845151638025 be:0.006288664712755237 here,:0.006029034036761101 way,:0.005858645497380195 had:0.00562292641515595 :0.7604780916561693 +to:0.14401522014784593 I:0.08717805441967116 would:0.08361228383208522 they:0.07250612364846672 we:0.06597598184142542 who:0.05136360986841521 will:0.048581532657812176 you:0.036303803346831635 and:0.03262750567837507 must:0.02681132061405771 We:0.026497479392441514 shall:0.02444461513167911 not:0.023426718145168758 should:0.022766551002372307 may:0.021516097053646 might:0.01661740567775864 They:0.016135791002525445 which:0.015447058681747887 could:0.01476846332748608 :0.16840438453018802 +to:0.09749257770986998 the:0.09551206399013314 and:0.09354319224337997 of:0.07480932460768112 in:0.02967229660085893 a:0.025579896041081792 not:0.017538510939051802 I:0.014890048771587954 be:0.014454354650863947 or:0.013502879084097318 he:0.013420350455248153 by:0.013217729847265764 for:0.013182212294170192 is:0.0128700234264903 :0.012502131012163752 at:0.012352874503725284 that:0.011267247520049631 this:0.010977319699742834 In:0.010892947902981794 :0.4113220186995563 +of:0.29342421073337493 the:0.0747236953551301 and:0.06979776030177416 from:0.0656152619377178 their:0.04292531284630728 in:0.038431780230004715 to:0.031161020115249915 with:0.029970433170836988 a:0.02630361697496321 his:0.02551243417593798 by:0.023023192832160744 said:0.02201727930585682 our:0.01806470414497012 on:0.016375010238099556 are:0.01408452314374492 In:0.013618497358732835 for:0.013208056727970674 its:0.012211399105463748 or:0.011685095855932972 :0.1568467154457705 +it:0.24132209938680438 It:0.13950488507340178 and:0.0639321939254187 which:0.059113591747190615 that:0.04889573380180939 he:0.043093353166604745 who:0.0255146487636089 This:0.02194320407431601 there:0.018593653020516535 this:0.017905158503180123 He:0.01631085313502388 she:0.011060201415208842 what:0.008677732984608506 as:0.008509850937312997 but:0.007788584875168908 man:0.006916632342664152 There:0.00672116130771938 work:0.00655325240282616 country:0.005770153436350582 :0.24087305570026543 +the:0.1435215329959729 and:0.08357744002059309 his:0.06325759398205971 a:0.04350301375113797 of:0.036059109795272604 or:0.035106128076243436 her:0.02991030730821783 an:0.028143039071872537 two:0.02803984530606437 con-:0.02721535338800902 their:0.02639055662826492 little:0.02544817641000367 The:0.01707048022816579 five:0.01624665236015854 three:0.014903563567038657 re-:0.014385749183697474 A:0.01321806183244945 other:0.012225356523042904 no:0.01164498066433675 :0.32913305890739836 +the:0.12847017333154723 of:0.11232997309795836 and:0.10915801467010375 to:0.07130517102679135 that:0.050010447339116124 all:0.046897228348175876 in:0.04289131192594353 a:0.025191721471868943 at:0.024629346419246106 with:0.0221149546681554 from:0.016794741092270322 for:0.015137785809636022 as:0.01507621698952365 this:0.013500926356327126 by:0.01232200707900156 I:0.01215835429332089 In:0.011694939170741686 only:0.010058722185655776 it:0.009522777536843037 :0.24973518718777327 +and:0.08802847857673357 him:0.052172970075824145 was:0.03542681819451724 man:0.030431362773220866 it:0.029288088378781416 up:0.020708279568259668 that:0.020571036336634863 found:0.01804151815880068 made:0.017726654982860655 out:0.017249066649085414 time:0.017248369497211622 is:0.0164635781145802 them:0.015112757506419695 confidence:0.014637843296866227 but:0.014176928512072494 himself:0.011931876492387125 or:0.011775222365452837 down:0.010882539895529912 put:0.010458276845277415 :0.546668333779484 +W.:0.11792637104998699 J.:0.08894026437589606 .:0.059758652510860266 John:0.05644699004390346 William:0.050699571663634486 C.:0.047268929840650925 George:0.03365569366162635 Charles:0.03169644332731939 H.:0.030197095710077802 James:0.030023446104870972 A.:0.027348198522589795 Mrs.:0.02726840967938014 E.:0.02547417902854249 F.:0.022046082226887 of:0.01998199641046133 R.:0.016874753748185506 and:0.016382297596050414 Joseph:0.01565487825481403 Mr.:0.015343472135607402 :0.2660122741086552 +the:0.6282919188719227 said:0.08177014878302245 The:0.054306423908740645 State:0.03553065161519055 tho:0.03331168467195791 and:0.018974034563680256 a:0.018144139733962283 tbe:0.012910776716836162 County:0.010879857125834709 of:0.00718272641825003 National:0.0067064760460823795 A:0.006247800034323361 this:0.005704949777532588 that:0.004687492669684485 School:0.0037205095833966334 other:0.002909599308414829 whole:0.002847897531893484 City:0.0025806003577830113 General:0.0025161518747485283 :0.05977616040674298 +a:0.3281130435722139 the:0.2887825716978788 his:0.04224415551743239 of:0.028003488118346447 The:0.027829899395762074 tho:0.02463189304665441 no:0.022718833371846613 this:0.019054051816738672 every:0.018827588352509 their:0.01694247679470387 at:0.015108096890923796 to:0.014745161771995691 good:0.014585509304891772 our:0.014558101427423906 an:0.012526318272558443 A:0.012201257656589241 any:0.012096537790121965 her:0.011979084491565971 tbe:0.010752226626482663 :0.06329970408336033 +the:0.18872290321856772 and:0.07990884171328741 of:0.07134501066066128 The:0.043246894817858254 these:0.022760575981405146 that:0.02263940423567282 in:0.01853667557064991 to:0.01558712617289525 a:0.014599616906527581 his:0.014552935584560694 These:0.013550115619968908 which:0.0131780081149281 their:0.01277887611983455 tho:0.011643762153399977 :0.011409164010629988 as:0.011296526840701347 con-:0.011221217959193217 -:0.010832723607073007 for:0.010425522418632843 :0.40076409829355203 +.:0.1397540984201597 Mr.:0.06781694871336752 A.:0.04372000426960882 Mrs.:0.04310087828091236 D.:0.036064818164665266 M.:0.03290762046423769 C.:0.03223901766534527 H.:0.031440620740092226 J.:0.0313840322974575 Dr.:0.029909680762182995 and:0.029495973944526244 W.:0.028979199225986508 R.:0.02498192285784624 S.:0.022928600086613037 B.:0.022244289991911304 of:0.019536704846999948 F.:0.0186838010277612 P.:0.017928384372033115 T.:0.017900246364498038 :0.307983157503795 +he:0.10500395821050722 and:0.08595198367071025 I:0.06096937065343709 He:0.05011491090837465 who:0.03650194806284192 she:0.031108795139629865 it:0.022071969695949437 have:0.019574889779718354 which:0.019373083638511566 1:0.017747993070087013 had:0.01755695650056767 She:0.014454794509623782 that:0.013908659983451229 they:0.012615182209625608 It:0.012362401590648959 lie:0.011685403314517675 has:0.011101698615371842 ho:0.010536119919019996 be:0.010002564841989796 :0.4363573156854161 +the:0.3057380332599913 to:0.09641711088681348 and:0.06408559487879115 a:0.06385040611267806 his:0.0394336160720874 of:0.035609359732670036 their:0.030560486065828816 The:0.028046499646315184 our:0.0186218092799366 tho:0.017821813452617255 an:0.016245887047323427 your:0.0157657217430232 in:0.012817683448430733 her:0.01126573102584042 for:0.011184677044969683 its:0.010630758324159538 any:0.010136523385107848 will:0.007542320490373443 by:0.007198720759383905 :0.1960272473436585 +give:0.19668212837263696 of:0.15938134851879152 to:0.09178634494105553 with:0.06249819310265045 make:0.062197776156419485 gave:0.05306505865585968 giving:0.035989422481208455 for:0.030595937183736207 by:0.0282966099772199 upon:0.026437878164170557 bring:0.020294081916235898 gives:0.01825647280350881 keep:0.017778427822176385 take:0.01752973534330358 among:0.017172629000755456 from:0.016838417652272543 in:0.016761515117311877 send:0.01664532028198669 put:0.01541229331025194 :0.0953804091984481 +and:0.22471870004241448 to:0.10176490895759763 of:0.06342520851403041 the:0.06191725119784646 at:0.04039085583722299 that:0.034045541410710325 or:0.03402085039010247 for:0.026972457784312273 in:0.025726490028573603 not:0.018501577957953975 all:0.0164076262538782 was:0.01497296090121411 her:0.01479165748276846 :0.01406234687180481 but:0.013228665555431682 with:0.012572874454832673 is:0.011328020365863114 a:0.011059232843430352 as:0.010675629340233053 :0.24841714380977892 +it:0.20889397480304972 It:0.12112389759934025 there:0.06506038454020238 which:0.054426588532933626 and:0.04494805258687104 he:0.040366336571141324 This:0.03994590589092793 that:0.0323678972363296 what:0.027879370434694833 There:0.02187308826128346 who:0.020110351534899075 this:0.014982130751117978 He:0.010460555609914518 she:0.00933352207434126 man:0.00852532905962667 place:0.00792608045962037 but:0.00744344204640452 time:0.0072092134909250835 work:0.007044546918918485 :0.24907933159745785 +number:0.0627404960510969 state:0.045312668712257385 one:0.0373507182848267 out:0.03325192120586864 line:0.03248794598840854 amount:0.03168865280641914 right:0.03113693921408333 class:0.024132955659352088 State:0.020755899535750993 kind:0.02052886311908141 and:0.020443884409926203 matter:0.01940767409227641 way:0.018761759374954494 that:0.018205343029420062 people:0.017938347610943792 tion:0.01627068673071378 all:0.015523828424010096 purpose:0.014810814099916723 members:0.013889397452974045 :0.5043612041977192 +and:0.1128102284411748 but:0.06266334651609785 that:0.059927410993811416 as:0.02128243386560907 time:0.018255743525828233 But:0.018236429477965898 and,:0.018111096269178374 that,:0.01491739305555469 which,:0.014799155956401152 them,:0.012373100034001503 And:0.01195169822267702 only:0.011399689782196135 which:0.01120740234367666 years,:0.010897616928028476 it:0.010282326546128307 who,:0.009613209423371596 now:0.008955793571020058 or:0.008287844332821991 used:0.0082463611091786 :0.5547817196052782 +you:0.14047588000638747 they:0.10160787050698275 he:0.07483052599781842 it:0.07118403236690128 I:0.06856429533183848 we:0.054204841187340064 and:0.0520691570116575 which:0.0413018795404171 who:0.029081412217397292 It:0.026086135762380093 You:0.025722590922269584 that:0.025201527868754764 she:0.018087299523321394 They:0.017250735809226043 We:0.013340522056266901 He:0.013114537393231497 men:0.009950436463897828 people:0.009061113143845329 This:0.007206716081656838 :0.20065849080840936 +a:0.5377790363755353 for:0.13534798022417846 at:0.0739297869069363 A:0.036972399593888275 in:0.02969519761529007 the:0.029572925623673335 For:0.01697734970123604 of:0.016572305479281662 and:0.015978158197323466 very:0.011951517093921999 that:0.011816350948153493 In:0.007979490751644669 with:0.00784964309684998 about:0.0077064661913107835 is:0.007648222342228044 some:0.007385835922554418 any:0.006532467244472696 from:0.006507117508899791 more:0.006464056271413979 :0.02433369291120734 +to:0.06586120840188278 and:0.061946068920498816 a:0.04230188392939111 of:0.03789255463312684 the:0.03629366473260725 at:0.03484236996513883 was:0.03037172414268177 be:0.028414888074589934 his:0.02278607227951709 in:0.019942882255269415 for:0.01955707158961924 is:0.017620578261804354 her:0.01641288538867829 that:0.013424062429066661 he:0.012303014999099053 it:0.010699319650625098 on:0.009832865219040546 I:0.009423337134305975 :0.008927292698366054 :0.5001462552946909 +of:0.19291586282802647 to:0.11378978670867859 or:0.09083956040652807 in:0.06311971051013564 by:0.05571064447826293 that:0.045635006890912586 than:0.04314480026758693 as:0.041428383073898345 if:0.039300152544492865 for:0.039185687943435625 at:0.038330937859959224 and:0.027839758928975947 without:0.027431368815674213 with:0.026752597068003946 If:0.022080886617987218 from:0.01923229876551756 against:0.01739530201114353 on:0.014093796487827619 upon:0.01350968470019418 :0.06726377309275848 +of:0.23688297991167712 to:0.08544137439647968 with:0.06831021025426992 and:0.06663029439293067 is:0.06132895290239589 in:0.05833124983479274 that:0.04356047760260393 by:0.04086631639624703 for:0.040657496436844624 was:0.026292763717021318 be:0.02198853247523512 as:0.01960183577437275 from:0.019081800932843593 on:0.018371348738530472 all:0.01753741543311244 make:0.015144175723713453 have:0.01455190543576532 under:0.013789973672113265 are:0.01309719629325165 :0.117533699675799 +he:0.19377853686223764 and:0.1399117814669391 had:0.11746024696674649 He:0.0651185001049973 have:0.045557143887151146 has:0.03790389903602083 she:0.03719718047994798 who:0.034505197658392724 I:0.030867350664567743 was:0.029027821044579016 the:0.01773386448680974 then:0.01588006615895398 to:0.013594016190705152 never:0.010265922365024362 ho:0.00979943969217946 be:0.009655884818856195 She:0.00960886848168861 having:0.009584094049089708 man:0.008598116278507336 :0.16295206930660544 +of:0.28767355066866834 to:0.08775711267569858 in:0.08678131196995101 and:0.05160598694501188 on:0.04646139928102899 by:0.04519522654900943 for:0.044547789071328545 with:0.03396756772609607 that:0.033699232901107726 from:0.03075346596941143 at:0.027039283056790858 In:0.021061449543044047 as:0.017514234937992545 all:0.012543839382496166 upon:0.011844431150487573 is:0.00998972746569266 was:0.008814315973987914 into:0.008557199930727406 through:0.007781895704231326 :0.1254109790972375 +and:0.1672361900783986 I:0.09367659218413124 he:0.07678297128378261 it:0.046959556469413584 He:0.041700134174261765 who:0.04162226643211529 they:0.03439213587205379 It:0.030969176004547197 have:0.027107393124833314 we:0.024325815939025303 which:0.022950546055230423 then:0.02217209372052761 is:0.019422315155441627 she:0.019392073725863063 had:0.017703231381623788 was:0.017411840198439797 has:0.015893501076315264 They:0.014607943613949317 also:0.012965623634023149 :0.25170859987602323 +of:0.15638422867656515 at:0.11318837173781496 the:0.11006874234726813 or:0.05973183448929066 and:0.04985780265369405 in:0.044572141296513594 a:0.03895769853730168 with:0.03663408716943824 as:0.03545242517509827 by:0.033653310935048995 for:0.02927964707526734 to:0.027496548855219488 any:0.026725925428958595 an:0.021871164745472287 no:0.016126613797241427 than:0.014883998783107111 from:0.013984265875141316 about:0.012633442758679189 that:0.012233502977588205 :0.1452642466852913 +one:0.1028303141280697 part:0.05963429477052991 out:0.04766456937681193 some:0.031418679026461914 members:0.030764490253327767 side:0.029940657362655835 portion:0.022063658796890564 office:0.020457735219956013 member:0.019726706386316174 end:0.019666887540649894 tion:0.018667441728710307 parts:0.016814747270460957 people:0.014112771422418794 all:0.014072739582212475 any:0.013183573287639892 One:0.013083578354183906 that:0.013024335602903442 account:0.012482348155001894 many:0.012077825070275192 :0.48731264666452345 +and:0.09072930723902148 put:0.041305885509605456 was:0.038387754930328255 that:0.030471279756378273 is:0.029495137375624158 work:0.025097789662008842 interest:0.022787577430296753 due:0.02138811936692563 placed:0.020641084580014544 it:0.018547692575984334 committee:0.018449256627853083 be:0.01790433067794783 out:0.017758520465170013 or:0.017465685004882478 carried:0.01719128865376855 going:0.016878700315409886 point:0.01628183817941024 down:0.01549936084951924 them:0.01497137586894817 :0.5077480149309028 +of:0.23650990704393243 in:0.19120705537042873 to:0.1024281540479851 for:0.06434582938805249 In:0.04774120396812123 with:0.04027503819838342 and:0.036198517300835266 is:0.032389171323676635 that:0.03187431639820416 from:0.025255187052884945 by:0.02505855521053301 under:0.016478890980290473 was:0.015047988194875026 on:0.012773504709347312 at:0.012756464657018173 into:0.01144645434458881 as:0.01094782000740959 upon:0.010107896897851937 all:0.007895953834686725 :0.06826209107089451 +of:0.09129790931378902 the:0.07369883040827747 and:0.047842263382354346 in:0.04189055351593407 to:0.04045875475680249 a:0.03542341257202578 be:0.02020462051672066 for:0.01979292654746225 was:0.01760256398103379 at:0.017380150555488715 is:0.014984483003968216 with:0.014047653760730413 by:0.01374644383819499 :0.012670486581795598 In:0.01200961464556976 or:0.011563835749786333 from:0.011391516893522809 are:0.011273104484969465 that:0.010755276030689069 :0.4809655994608848 +and:0.08033783310967303 the:0.06342935740121121 to:0.05401016989781469 it:0.041878060993634746 who:0.03852028969567256 which:0.03464419737057897 It:0.02766654785524479 this:0.017916165594580393 we:0.015670466422755686 This:0.013866198017425719 that:0.013589114402585725 a:0.013525535024887894 he:0.013016513048945284 they:0.010993623238726234 ap-:0.010816903958880403 I:0.01022258023683041 :0.009939481477197372 one:0.009312113067460565 They:0.008203655407385081 :0.5114411937785093 +the:0.47001603001536524 each:0.2724609350248918 any:0.030386052667842035 of:0.027644983007180938 an-:0.015758108343951197 a:0.014864309851713185 tho:0.014421742300247953 every:0.010414522924541389 an:0.010151977629627272 and:0.00963335064783749 his:0.009474386826275672 their:0.0085801245701609 its:0.007933055462600902 to:0.007905900767963334 The:0.007601287080130912 tbe:0.00754801186814193 this:0.007214468686631381 said:0.005549437330950608 our:0.005467887065597392 :0.055973427928348404 +those:0.2853893353511454 men:0.09452519534684801 and:0.07294040957717926 people:0.04317764870325665 Those:0.03851271846666279 persons:0.03780051709415746 all:0.025916309764962495 man:0.02371572053605417 others:0.014882803312883768 women:0.01484877698184214 person:0.01290728834628543 many:0.010501831397209121 one:0.010444907840095458 thoso:0.009229834851903042 men,:0.008154664647749246 boys:0.008082800041428202 thousands:0.007663475951013553 parties:0.006698829125174786 ones:0.006572648999583592 :0.26703428366456544 +Mr.:0.7343895154668137 Dr.:0.02722936663941721 Mr:0.016803651226393917 John:0.005544002274092662 .:0.005105808280192536 James:0.004630597127667035 Mrs.:0.004485971630159722 William:0.004484684298765014 ;:0.003224370828968515 Robert:0.003185065990175269 Rev.:0.0029853005614696904 George:0.0029721366653470836 Senator:0.0029427970281204513 Charles:0.0028232954356694523 Mr,:0.0025548478992433368 wife:0.0023767164443981993 Joseph:0.002253998159621327 Thomas:0.002113531455885074 B.:0.0020438061319758404 :0.16685053645562395 +be:0.11780008116913351 was:0.10494181861506967 and:0.08955353015295288 been:0.06381091175204245 is:0.060117198585295205 are:0.037249101189997746 were:0.03689148086333705 the:0.03191643253885115 he:0.03170140532980151 had:0.025450444054517043 have:0.025016278419066576 of:0.021702932398338447 to:0.019246371740201933 a:0.019045527751850998 has:0.018898137255671178 I:0.013171060070013741 being:0.012971672736761591 so:0.012717183591094958 not:0.0121399293836347 :0.24465850240236767 +and:0.14425303196077977 the:0.1414021078470376 a:0.10003641016458285 to:0.06705530630434565 of:0.04774931705321849 his:0.03757639310840264 in:0.03687853388194389 most:0.03371615397394864 that:0.02915103760545533 on:0.02095171690690249 an:0.018546210254356117 by:0.018417604777628976 with:0.017647137791092626 one:0.017207048877357793 The:0.014673652207615196 are:0.014317446045747495 this:0.014196526880844567 or:0.01277274127573798 is:0.012125933338899103 :0.2003256897441028 +and:0.052347549731114995 known:0.03820484143419263 men:0.0330614388739425 out:0.02658521161946419 land:0.024839583568375772 him:0.02462976219453002 them:0.023016169667370107 people:0.016802447074470785 friends:0.016676857750788164 made:0.016318199925567916 up:0.015895413778547803 not:0.014612900476413426 it:0.014028958260569017 ed:0.011933658383152402 held:0.011191897967750478 distributed:0.010796507640436737 down:0.010726381568193787 but:0.010299589127911728 office:0.009840561435691229 :0.6171920695215163 +of:0.3476830075511379 to:0.06466595460682875 in:0.06119794881220004 by:0.0568593237927079 and:0.05530884433051552 that:0.05065287129620506 on:0.04601028127219648 with:0.0406972289440115 all:0.03692305710086911 from:0.034493634766877716 for:0.032087106604451035 upon:0.015425436905760011 In:0.01239731955787595 into:0.010528283854078814 at:0.010314391811283574 when:0.009811395263029758 over:0.009756708157014406 between:0.009212106491973468 as:0.008329181995101667 :0.08664591688588136 +the:0.11274823966931571 and:0.08329996793360815 to:0.062372082173126384 of:0.05346002906215973 so:0.0299749817344208 is:0.026294180790411077 be:0.020260006954324915 he:0.018124449911071136 was:0.016351044211737983 re-:0.01567649125103956 Mr.:0.014726716630740086 in:0.013675410003338988 for:0.013272602215284653 a:0.012159264338821467 I:0.012040910229586727 or:0.010977326121126826 :0.01035107289213954 are:0.010219913969554774 not:0.009881708091297656 :0.4531336018168938 +and:0.10388016753227461 has:0.08287499970304624 have:0.08277643591814411 he:0.07071747929660238 I:0.07068392438529256 had:0.060389863966866665 which:0.040572950716320166 was:0.0405147268748326 who:0.031164110963332558 be:0.026937965890341906 He:0.025862079795447846 that:0.02505499893502283 when:0.023950003071996694 been:0.020957547753016146 were:0.020508715296154008 the:0.019683606312671527 but:0.01951714269665277 if:0.01813897395000134 she:0.016395256217178144 :0.1984190507248049 +as:0.06931392982974462 according:0.052071562389565784 up:0.0511867300210483 and:0.040371568633051955 went:0.03351644485287816 back:0.032358406609281 regard:0.03073407747799069 feet:0.02852138506231652 down:0.026379903432040268 owing:0.02466642634685871 due:0.023695193974505355 go:0.022910973192184297 reference:0.020802802907016128 came:0.019883741951819873 sent:0.019874244915639484 attention:0.019565955494145405 come:0.01885185084678811 given:0.018792390567602263 it:0.017366961307524745 :0.4281354501879983 +the:0.2603177041296186 a:0.08581102032101535 this:0.08424193955867575 of:0.06816798871346998 in:0.05039794925175704 quarter:0.04973109732880778 every:0.039832729467940954 that:0.03513198233807197 first:0.03036253278706489 said:0.028442379011395413 and:0.02148861610401634 any:0.02097303858179684 tho:0.01571776815036237 or:0.01432947419605746 second:0.014261661380536287 third:0.011276806583561928 The:0.010861336337008826 In:0.01071715583797476 each:0.010554991539534968 :0.13638182838133248 +Railroad:0.13342759484105263 Mining:0.09336576084926948 Trust:0.05965593867968731 the:0.05497037799173588 Railway:0.05319546313079301 Improvement:0.048205355310998343 Investment:0.03462183077145556 Manufacturing:0.03318504347377738 Insurance:0.025210956352178276 Oil:0.022977306483666606 Lumber:0.020759160746570148 Land:0.017966935427897714 Coal:0.014834994202222325 Telephone:0.014326771619226554 Power:0.013633561812289634 of:0.010944398073603733 Construction:0.009660053992367723 Light:0.009652373787360963 Water:0.009591254409212735 :0.318814868044634 +is:0.10076004156078233 not:0.05788515742067123 as:0.05535835751330564 ought:0.05249553854531973 and:0.0460383856046576 was:0.045961329097224085 seems:0.04443620805857949 are:0.03366319156962064 seemed:0.030469353854810383 it:0.02767186320131199 him:0.02346634345710175 likely:0.02337002282280986 seem:0.02101233813824275 said:0.02079893695490975 supposed:0.016136962527267675 them:0.015434103069597143 have:0.014943026152647846 order:0.01352826538315544 time:0.013289601722878509 :0.34228097334510615 +well:0.2387218850010171 is:0.09098305036064254 be:0.06975559027329471 was:0.05628634433984009 been:0.05624612044385759 not:0.047702470662417805 and:0.04043913552445895 have:0.038970084027698346 are:0.03492789975227099 had:0.02588647019316733 made:0.02271906198492856 were:0.018379939422084098 generally:0.016745784726072296 never:0.014598228441832497 Is:0.01436200219092594 ever:0.014031551040652618 best:0.01324078526342809 became:0.012053194526200248 now:0.011953871387012534 :0.16099653043819764 +a:0.3957853486675202 the:0.21905925233943604 this:0.04769786275224468 said:0.04053655180661772 any:0.033177143735457174 and:0.024042306212978856 The:0.02206683467953449 that:0.016366177893908585 every:0.015862497319939876 each:0.015303478884940968 no:0.014699348720151186 tho:0.013512892233055572 A:0.011252719436969424 of:0.010419358418810445 No:0.00975155908351671 by:0.007816639070902234 to:0.00744144925219392 certain:0.00732426424390879 his:0.007055165214275398 :0.07982915003363773 +to:0.16398224590694319 with:0.12640186167775636 for:0.06632224355077507 of:0.044256084672690925 by:0.03583522178994037 told:0.034692862933691886 let:0.03392629464246001 give:0.03047103006894226 see:0.028899590294372383 upon:0.027821700471040496 against:0.027139499655511486 gave:0.02577233556504558 asked:0.022742437330044635 made:0.01968465681700429 take:0.01951115907985264 make:0.019424917936029646 on:0.01699539930778733 get:0.01692110225228956 in:0.016893679656230683 :0.22130567639159118 +the:0.1686254608388007 of:0.08510631124515454 Mr.:0.053063968456177904 The:0.05290176461656073 and:0.04281351925879434 that:0.03659363717531167 a:0.027376597759942865 this:0.016009104250207996 in:0.014329796242200724 :0.013577096541793277 .:0.012332809689052695 Mrs.:0.011483371514010961 tho:0.011366564416127033 to:0.010938551223696477 for:0.010273564804762044 which:0.009103350770352783 as:0.009022855831525262 his:0.008831867202298479 or:0.008219518012985871 :0.39703029015024366 +and:0.03868242960999506 as:0.031124813427855922 went:0.02352509775927722 him:0.02196555539050794 them:0.018760608639018784 up:0.017985449426794205 is:0.017894175620344187 go:0.017174904667157563 able:0.016756848979943888 going:0.014481672239490295 it:0.014128375989346808 was:0.013277058274565138 time:0.013249953793837373 not:0.012469887553778763 began:0.012465717758716884 way:0.012105610030480113 back:0.012090864562211581 right:0.011941707822828511 amounted:0.011564315359310868 :0.667354953094539 +of:0.19502545772790794 the:0.1858428792711157 in:0.07068101188447914 a:0.0696352335267643 The:0.045069550202546514 no:0.039762307427548604 and:0.0387505418124432 that:0.035531975903074574 any:0.03497341854476882 this:0.021993166898713272 to:0.019744223530914064 No:0.019654038459714543 some:0.018017862285139255 for:0.017580434079497533 In:0.01731821898720832 an:0.014616991393886478 or:0.014600567667690384 such:0.01404681927711423 be:0.012421480682996387 :0.1137338204364767 +the:0.1570879454366584 of:0.07804606027406501 and:0.06787223916973353 a:0.036913117407562514 that:0.03650642298570135 The:0.02495259369096442 in:0.024366179622801448 no:0.021237121796534534 Mr.:0.02095974543727837 which:0.020555747976365113 to:0.019670312615068093 his:0.014514871313338153 for:0.013864556278571553 as:0.012619099712826765 he:0.011995143219360524 their:0.011486225473642654 said:0.011457904953995053 Mrs.:0.010878795762489643 tho:0.010097198257076249 :0.3939187186159666 +of:0.14061422670442228 by:0.07397890083971677 to:0.0645957650592629 that:0.06278196009235353 and:0.06171779412995163 with:0.024784207916322815 :0.021296554997849743 which:0.018150544625629747 as:0.015593235006414066 from:0.013045232743111014 Rev.:0.012950377448433107 for:0.01208267405942049 in:0.011345035541060299 but:0.010763995429851557 when:0.010542089526816392 if:0.007472747609427384 said:0.007100416424489038 or:0.00707214494317395 at:0.006990048717905581 :0.41612204818438775 +of:0.26932787939825886 that:0.11547966691857996 in:0.10897403966328512 to:0.05798328111739909 and:0.05747312547395093 by:0.036006650721592606 In:0.03554903459496295 on:0.031635407917038984 at:0.029420238334846104 from:0.028457728993721062 but:0.022351995801260648 which:0.02218073210510045 for:0.018562601898536944 when:0.01574469835338836 with:0.01543459163163299 as:0.014964355783032002 before:0.01272927765611442 When:0.01087603048397774 If:0.008641170809810986 :0.0872074923435098 +able:0.055970102368640404 ought:0.04741572253165623 began:0.04226764226065628 enough:0.041317347193915124 and:0.04066828500441553 going:0.03615925794138635 order:0.03479033664873146 him:0.03335456774643894 ready:0.032375522664000046 not:0.02901571057353135 right:0.027140670487244258 attempt:0.024952134800929643 necessary:0.024820936092326003 them:0.024603668935797435 wish:0.02354882627207883 want:0.02288531070035246 is:0.0222133421652341 time:0.022012503042941334 unable:0.021685987738331542 :0.39180212483139265 +the:0.17453629873810153 of:0.14660073949050217 in:0.11102954300593877 and:0.05019641183156832 to:0.045091985498063966 for:0.033609679305483996 In:0.031148509128071707 a:0.026273033239556307 by:0.023341039069827024 from:0.015678832147764988 that:0.01413712114825387 at:0.013423971211147306 with:0.011724411715816575 :0.01171934024250524 The:0.010734660282434572 tho:0.008481308522417422 on:0.008263141846388588 or:0.008082354399518805 all:0.007978716273779518 :0.24694890290285929 +of:0.275574333881826 to:0.08636224615023709 in:0.06631904249133982 and:0.053992018225395254 for:0.04185726238848965 by:0.040432462728593715 on:0.0386621368609385 that:0.03746813623829841 In:0.02853879791593314 at:0.02784511394431448 from:0.027249043353089128 with:0.02598983508374518 all:0.014273748255081415 as:0.011953034597961125 upon:0.010404474445179767 is:0.009962155410920995 ot:0.008697425934451705 through:0.008441579399216994 which:0.00831499649011874 :0.17666215620486883 +the:0.18170529140589103 to:0.17797831301813902 and:0.09274211602354387 of:0.06639849562114337 all:0.0457301968121433 in:0.03313925348072477 their:0.026273879194319148 or:0.025402020145104898 for:0.025149653530818602 his:0.023627403967987567 these:0.02136989207905628 many:0.020676042118311738 few:0.016140120305663214 I:0.01571358461185449 other:0.014906108756692151 The:0.01464936811212674 who:0.01447209874209447 as:0.013072169732106278 our:0.012997006229649971 :0.15685698611262905 +the:0.11204389422250452 of:0.1115413847114411 and:0.07943588991486633 to:0.06487514710875122 in:0.041863112405012184 for:0.029097925239805637 a:0.024388154603999443 is:0.020265645111612638 was:0.02016600498957805 :0.019793865756915482 be:0.01907449698409297 on:0.018403491466291683 as:0.01768857761296527 are:0.017092197066814106 by:0.016458051782767647 with:0.01615794704352925 or:0.015403812322323527 The:0.013812127047392871 that:0.012714288864948542 :0.32872398574438755 +the:0.3535406574450633 a:0.09936703813412395 his:0.09166823337114764 and:0.024486873979799758 this:0.02374479940584552 her:0.023576945985890625 tho:0.02254180679353275 their:0.021686990417811417 The:0.021616134092406585 other:0.01974157645124547 of:0.015929536708152798 my:0.014980284416106257 one:0.01459908617248837 some:0.014486724947405287 its:0.010636716435097998 that:0.009863178896054519 tbe:0.009774734491038453 any:0.009096599004110683 good:0.007546402168629175 :0.19011568068404944 +and:0.07558940021936399 recorded:0.030196237618668006 was:0.028917161578042846 made:0.027969746247669736 that:0.027730098932509103 o'clock:0.025060522019555328 up:0.023026552239529506 is:0.020398277211376416 found:0.02003101797656537 placed:0.017482208134164214 out:0.016937164562539058 place:0.016819459500107596 interest:0.016629321966808677 him:0.016002796715253755 situated:0.01573420479581609 it:0.015128305982428461 them:0.014715943643665314 part:0.014646613000297721 interested:0.014450471929902294 :0.5615344957257364 +the:0.22468894861385888 a:0.10659826914342964 of:0.10630429734480751 no:0.07506484046356947 his:0.055212388921848043 and:0.03600328162887188 doing:0.03527253532264126 The:0.03281369027585176 all:0.03039566556083129 their:0.027570378745943515 any:0.026528482940457173 that:0.02391512035032188 in:0.022212153076364045 for:0.017622683701466055 had:0.01674853382800247 to:0.015448130170597185 my:0.015265415072287314 some:0.013508896307097073 other:0.0132839585575343 :0.10454232997421925 +of:0.09690547478169062 the:0.0890862683925591 in:0.08503272557743739 a:0.07447943205350879 for:0.045121174992102026 from:0.03165615853227335 and:0.0276559936469908 that:0.021112831355287357 one:0.019896169540809618 this:0.01752164571027446 by:0.01595932328833583 with:0.015945429750096576 on:0.014844580697053774 In:0.014620913964381595 to:0.013763590153545691 some:0.010326408472642537 any:0.008175121838231495 said:0.008085441201159149 through:0.007913032191271159 :0.3808982838603487 +was:0.12014944241447373 and:0.0953048732273446 is:0.08789413768886188 to:0.06734664139334852 be:0.05016496351245102 he:0.047881300392931744 it:0.04146436476852642 are:0.03616861454983997 were:0.03184377210374455 not:0.030402550597598714 had:0.028757192787446467 they:0.02570367469452553 I:0.01610880011694143 been:0.015232679498559859 them:0.014860884824577184 or:0.014736644075582027 him:0.014692362821096372 have:0.014159111908467737 will:0.012909882704442257 :0.23321810591924 +he:0.15581466542975142 it:0.14499820109016215 they:0.08943011190542358 It:0.07992681673966813 I:0.057997524707114216 that:0.03654466707155206 we:0.03511539685820547 who:0.03429913789100766 she:0.033032424302688164 and:0.029941817005246976 which:0.02789553865715621 He:0.023325696741163113 you:0.016200537098616644 We:0.01394571482231166 be:0.01319251237890309 ho:0.011933529571185705 They:0.0115513567791168 there:0.01078661793675704 lie:0.008497770992066746 :0.16456996202190316 +that:0.30103060374455654 and:0.11091477879403241 which:0.08544641617801958 as:0.03895465044676986 when:0.028742892325440684 but:0.02530072375145198 w:0.024586538864641943 if:0.022867636759884475 where:0.019004936079741023 to:0.016437145537601578 said:0.013993216050172239 what:0.012298886596857442 of:0.011364957025006246 If:0.01101109342942241 I:0.008782594019158702 then:0.008502802893665305 whom:0.008101065453983173 it:0.007779277982557996 says:0.007674621197745272 :0.2362051628692912 +the:0.39749834532651884 a:0.07520030034269234 and:0.05540858759821703 The:0.03273515726769502 tho:0.030061875542463562 of:0.020144331424922633 tbe:0.014929647509541684 in:0.014268129706664795 or:0.013333166761078447 .:0.013287381914101323 an:0.009000188755386574 to:0.00880680429595084 :0.007943763822197133 Mr.:0.00773879605474787 by:0.007328417831573476 as:0.005922572098978465 for:0.0047526933692942485 that:0.004736121968310169 on:0.004594595720579333 :0.2713091226890862 +was:0.3213611855128138 and:0.11485896691945285 been:0.07789920777188927 were:0.07703382795475713 be:0.06134937778734334 had:0.046524168132015854 is:0.029029696488722393 have:0.027419185112112842 has:0.026640784554703645 are:0.025239368211712587 being:0.012737565193918431 I:0.010478974974363155 he:0.009700670266297442 1:0.006237280389613737 then:0.0057349531502837985 not:0.00562217619435789 bo:0.0051135992686413756 to:0.004732866506454995 a:0.003725505675203138 :0.12756063993534233 +in:0.43640157770635807 In:0.1783256521391932 of:0.11334092462388587 the:0.043602303922089525 to:0.035086539710139385 for:0.02608795721569914 a:0.01602740646922611 his:0.012718323957062213 their:0.012503050370093244 and:0.010990647958473206 this:0.009197468442730559 by:0.008015912143233198 into:0.007636333261191396 from:0.007042549658862325 iu:0.006369200784308272 its:0.006230758101874798 or:0.005856242565706177 per:0.005831628305178566 last:0.005443054108514982 :0.05229246855617978 +the:0.05235506013783385 feet:0.036592440707363436 a:0.026584803297309997 and:0.024491732266315194 it:0.02376970785473522 all:0.017441300754630566 there:0.013138801844226779 be:0.011755059189378017 made:0.011517618911310694 that:0.010857447762596449 well:0.010751185764841647 time:0.010574277811042141 of:0.010086905464126439 men:0.008738568345962398 is:0.008691517733877507 them:0.008443740798262917 or:0.0076758615057459225 tion:0.007644102636043581 lot:0.007557589765892712 :0.6903322774485046 +came:0.08110928252913857 go:0.07578810098599939 come:0.06965820698269667 the:0.052310906129831365 her:0.047420606789676883 went:0.045833236602614895 get:0.04557020332520047 brought:0.04551141743924823 and:0.03884906587775485 them:0.03480574229414861 way:0.03410715173806543 fall:0.03228371150079 running:0.030457822639445475 his:0.02948588669512406 look:0.029128995009980087 him:0.027923045292414447 fell:0.027741981832896015 far:0.02580894912377139 it:0.021643078523409874 :0.20356260868779325 +it:0.24329921109058647 It:0.21714503629965676 which:0.057568176276466994 he:0.05385209162549992 who:0.03821543463678541 that:0.03181920789351129 there:0.028788757693906014 He:0.02744094759394559 and:0.02256960670603854 This:0.01570588070249194 she:0.015425849408065127 There:0.013018655906510983 what:0.012375400121944938 man:0.01150943347154402 this:0.00908534221948892 She:0.008593964549527431 but:0.004914621219779795 as:0.004858032246062432 country:0.004335912654293623 :0.1784784376838938 +the:0.3727759520482492 dining:0.05264623220388299 a:0.050798008715911475 his:0.03622587773694657 other:0.03328634612378162 and:0.031929894272886485 this:0.02939025526076681 her:0.02807870452025473 on:0.021599430751730563 of:0.021028849440650414 court:0.019851854468097598 their:0.01796356119788584 to:0.01571909228795725 tho:0.014662078941153118 one:0.01387863772866786 in:0.012489622689654827 school:0.012005420497689066 my:0.011814351671540458 each:0.011370474309303623 :0.1914853551329895 +of:0.2776005390649279 to:0.12104778733633868 in:0.06161410447002203 and:0.0591073764568045 for:0.04590775960451874 with:0.04244384463668739 by:0.04024201018204739 from:0.03561164879255953 all:0.035005165257298444 that:0.031814333922734646 as:0.023237799356800194 In:0.018335112603930708 than:0.017191578306873245 on:0.015533994580840328 upon:0.012054340836638295 among:0.011415123639318157 Among:0.009827722323582148 at:0.008862730368975384 but:0.008534383681098406 :0.12361264457800394 +the:0.2243162342990754 Democratic:0.1450425722244096 Republican:0.14130843327775214 his:0.03444060424421743 democratic:0.029975799037787333 this:0.029036150777580323 republican:0.022147678778796594 publican:0.0196605676087405 that:0.017637322735078297 of:0.015951633458715836 a:0.015301690065145276 cratic:0.014689073694415113 same:0.013986984997163159 The:0.013092610107215184 political:0.013033913498678466 tho:0.012216017000128058 our:0.012017857755314679 old:0.009278613066596551 one:0.008952815134657753 :0.2069134282385323 +of:0.09478575201439045 the:0.06076923121508421 and:0.06061110141974197 to:0.04591174556154767 by:0.03624158814133087 .:0.0241102756341773 said:0.02152735060840795 Mrs.:0.01943493490038988 boy.:0.01733398552614223 was:0.01700718310194743 in:0.016825695854514513 :0.01613326169524142 for:0.014570725382596367 that:0.01434560969596852 a:0.01380245115915122 on:0.011279575949989632 from:0.010673581165342845 -:0.010155970680079352 be:0.009256828788094395 :0.4842231515058618 +of:0.24487162852558567 on:0.10589147632078343 in:0.10535250570381623 at:0.09239803417972466 to:0.08666563515683223 for:0.05160776085960546 from:0.04384316758751915 by:0.03040947344005081 and:0.029821520330151757 with:0.021302817648613227 In:0.021260139554861765 that:0.016361573235873637 over:0.015371074941557896 upon:0.014865663579128755 through:0.013717611487090768 during:0.010243743740067522 into:0.010154894249263179 as:0.007888104250597527 before:0.007792216653218246 :0.06918095855565806 +the:0.14150183005146552 and:0.099661885975815 of:0.08473406529790567 to:0.06871685340589347 by:0.02081469167427387 as:0.02065314166281186 in:0.018587538517673953 be:0.018287704492652445 is:0.01587786574577231 that:0.015339982310662815 or:0.014345503666716797 are:0.014191323354548074 for:0.014171729898845166 a:0.013628038579472984 was:0.012556845156577614 with:0.012037333047679007 on:0.011658236602168888 which:0.01052465303794516 all:0.010460410625835838 :0.3812503668952835 +of:0.2403377348772081 and:0.1742260102677045 for:0.057780700411194014 the:0.05584987201332104 or:0.04743446110103247 with:0.04443681760031531 by:0.031681074140053125 a:0.02854735768026775 in:0.02642183249291606 from:0.025436351495969737 that:0.024929606210046435 if:0.02130337938775242 said:0.01943689559476432 about:0.012344174826240634 to:0.010872763944575783 If:0.008697790385996758 any:0.008423774282493478 after:0.008166172780965382 first:0.008104886074643568 :0.14456834443253908 +the:0.16287760685838365 of:0.0883592780729449 to:0.0618987346693935 and:0.05423685233212741 in:0.030811253892523358 for:0.03057359609188714 be:0.025098115820027647 was:0.01826945122296575 is:0.01662970283289366 a:0.016448402520667066 or:0.01633619095301082 his:0.015510346299682681 their:0.015084175217362073 are:0.014656254371894712 been:0.013019491851438341 were:0.01267572744006931 that:0.012270302451397866 on:0.01131798809455223 :0.011150587255169986 :0.37177594175160794 +the:0.6789094857102775 a:0.04836655308490373 tho:0.02943540801325755 our:0.024462571424009746 of:0.022171451984881862 and:0.014561936739387913 The:0.014510402160639441 his:0.014158522396452126 to:0.01181697379232476 tbe:0.011704696016429587 their:0.011138330402950763 its:0.009184944515795396 this:0.008772220738829764 great:0.0074496014906281225 an:0.005578440832616979 her:0.004013810102527625 in:0.0035607102581337886 at:0.0033747780643643838 American:0.00336963735670177 :0.07245952491488722 +of:0.13084814232797154 in:0.0740836656586379 as:0.0625527229231004 with:0.059577596335708534 to:0.058433603729754965 is:0.05551580107464621 and:0.04946529489577619 was:0.04264000753602388 for:0.04009673021586375 by:0.037684080471064085 be:0.023941707008899252 on:0.02316059851167503 at:0.022644769441950232 such:0.019950936521181326 that:0.017856095877642635 like:0.017386655618315594 In:0.016902219705578994 from:0.016046571451088905 not:0.01205910100844263 :0.21815369968667797 +as:0.06931392982974462 according:0.052071562389565784 up:0.0511867300210483 and:0.040371568633051955 went:0.03351644485287816 back:0.032358406609281 regard:0.03073407747799069 feet:0.02852138506231652 down:0.026379903432040268 owing:0.02466642634685871 due:0.023695193974505355 go:0.022910973192184297 reference:0.020802802907016128 came:0.019883741951819873 sent:0.019874244915639484 attention:0.019565955494145405 come:0.01885185084678811 given:0.018792390567602263 it:0.017366961307524745 :0.4281354501879983 +the:0.1441751198887597 of:0.08166951187672962 and:0.05219246365763782 to:0.04725262513504181 a:0.03612763040739922 on:0.026605122478820558 that:0.01898127976285899 in:0.01594751852587946 The:0.014414851907770513 by:0.013859124061562565 or:0.01328259794335176 from:0.012456095011054989 was:0.012321876555168535 :0.012306497772471557 be:0.011686602447866687 said:0.010484203253970476 for:0.0103219859158752 an:0.010253532388745172 as:0.009915056583070932 :0.44474630442596447 +had:0.33699281674567966 have:0.29602641222731363 has:0.16073064181384636 was:0.035079186228295776 be:0.0183283241573752 having:0.016307624272638876 been:0.01603998866035706 and:0.014516672494202723 were:0.010799240010986687 never:0.00873157580960109 is:0.008713591304164027 he:0.008487937466035496 bad:0.007396928666355218 not:0.007326361315099973 are:0.004856240089469517 ever:0.004787043963185625 havo:0.004779704333203496 lias:0.004228638515464985 I:0.00393238405737992 :0.03093868786934468 +and:0.12796260835759168 to:0.12196185150730088 not:0.059728708828343136 that:0.02722586070430331 of:0.026207637033451418 it:0.025574366819891104 in:0.025181143436216996 would:0.023115974322420702 or:0.02272408876022469 for:0.021578396871473764 I:0.019968583736465793 the:0.018019958633648626 which:0.017443042480913922 he:0.01694861196781641 have:0.015565725132090655 be:0.015088652919428932 never:0.014892241500268239 will:0.014403984726207346 was:0.014225085149867651 :0.3711834771120748 +is:0.09035253883525579 as:0.07417488160527712 and:0.06554284786578156 order:0.04302928325051033 not:0.042318941441495735 was:0.03524291049222851 necessary:0.034739146070236954 him:0.03435099723819336 able:0.028375402134700193 them:0.027512546214558505 have:0.024014451036016057 enough:0.02336064760820828 time:0.023080695757782526 it:0.02306380098406504 are:0.022561279145430765 used:0.020344820662646534 likely:0.019151348693734034 about:0.01898662171541246 attempt:0.01895099763870236 :0.3298458416097639 +and:0.10982422779093846 Mr.:0.05933695445316318 of:0.036411769472361535 President:0.03408034201598147 the:0.025908877825145282 Mrs.:0.024164899056908194 Miss:0.019063173181442995 .:0.016191839837671758 or:0.0153284955406846 that:0.012559108532462537 General:0.012523309023951329 John:0.00944863710545872 in:0.009205058853394841 Senator:0.008805741790540339 A.:0.008427954589981296 Dr.:0.006458893587860967 J.:0.0062207275775781265 said:0.005760351165368573 Mr:0.0056727247811801905 :0.5736069138179256 +and:0.09419137504413302 of:0.08698679025932575 to:0.05716157131446947 the:0.05079863183552494 in:0.04338691468087114 for:0.022883126069916757 I:0.022557562802535507 be:0.02139091315166449 that:0.020835308253418897 a:0.019244843010457993 was:0.01900387370962114 he:0.018016738123656353 not:0.01691232554441071 his:0.015507537264075649 they:0.01527174250262731 which:0.015001625645900062 is:0.014638267096998451 con-:0.013527943217054464 :0.013526969610340249 :0.4181559408629977 +of:0.15089593038779872 girl.:0.05500075130719946 A.:0.05434337191882318 Mr.:0.04698758177328893 boy.:0.04139183689964975 .:0.03352625081021501 Dr.:0.029455956249818446 the:0.02909447480782786 Mrs.:0.02471369251139517 between:0.020680821035843507 Miss:0.019432539487108613 and:0.01813672940545821 :0.0157217478097757 in:0.015215088749047631 Senator:0.015018138348403771 M.:0.015006303253722935 John:0.013817781240363723 Grand:0.012970091726375248 D.:0.012616196230225876 :0.37497471604765825 +they:0.1716170277175541 we:0.060288841904714764 who:0.05563172124289718 and:0.05450884985672488 They:0.0438587264977262 which:0.03849880481108137 men:0.027350175547468842 I:0.024508054833027103 We:0.02402217200038548 that:0.018524935921067163 there:0.016407828915819427 people:0.012763494685663257 it:0.011914209300158645 you:0.010734085977382606 he:0.008200973256834995 but:0.007670348740592514 There:0.007370863405779338 women:0.007284683947366878 children:0.0065853165204244985 :0.3912588849173308 +:0.05538830217083643 it.:0.03659619457768344 them.:0.021579519536313048 him.:0.01859065251628555 her.:0.010040149619415623 time.:0.009780766854750595 country.:0.00946331482305477 again.:0.009092156855356645 life.:0.00887740550253908 day.:0.007311190040035003 people.:0.007144238014486405 years.:0.007072529734447739 all.:0.006700230804693861 .:0.006428398036327798 men.:0.005894414981634234 world.:0.005879899586766579 year.:0.005841183752472649 us.:0.0057976734431504934 way.:0.005618132397187726 :0.7559036467525623 +;:0.02279690368192333 hundred:0.01413146867729001 him:0.010845806538890857 him,:0.009560233395880014 up:0.00893889850896329 it,:0.008012097076930794 one:0.006440142395170403 them,:0.006078706234328722 ,:0.005863942143663025 feet:0.005644099766506856 on:0.005472171339023292 me,:0.005333800832296344 me:0.005238985154422605 in:0.005174809976285719 and:0.005106459931953362 1:0.0049594574160990055 time:0.004913202768578966 down:0.00485305222343413 feet,:0.004731214442844012 :0.8549045474955153 +the:0.17237205129006428 Mr.:0.07589082677662283 of:0.06508434480015776 and:0.05089316512712999 that:0.04482650843278354 The:0.035186538402538915 as:0.025527836940904124 his:0.01821646055548411 a:0.017093881738649053 in:0.014093334353265565 tho:0.012517013977111942 this:0.011887917858741754 Mrs.:0.011675970219865122 he:0.011103964970615013 which:0.010224069951172894 I:0.010197539178892788 :0.01006659330712403 it:0.00981025994553101 .:0.009550520173243824 :0.38278120200010146 +and:0.1436049237841356 to:0.07920939404896601 of:0.03578992576961711 which:0.035151490729948456 re-:0.029478985693585574 that:0.028219155808867784 for:0.024388756402958144 or:0.023852116063025307 not:0.02278311757804375 have:0.022207041004794648 who:0.02214591918381536 the:0.01995998182851126 in:0.019527814996202028 ex-:0.017409940975967396 they:0.01726837696362767 con-:0.01721546164935223 be:0.01596297722594579 in-:0.015705995925345655 I:0.015478889002129006 :0.3936397353651612 +to:0.12022893700269083 and:0.09020394424291768 the:0.08587503820055309 of:0.06450042443224316 in:0.0310058468700829 a:0.017742048521183405 :0.015548046036689871 not:0.01491307651316237 that:0.014112408707955496 for:0.013734482372212283 I:0.013065769926808477 will:0.012848502316304782 at:0.012837991177321897 In:0.012628718855091186 by:0.012491091048660757 be:0.011425930130217754 is:0.0113962101007567 he:0.011342727513475473 or:0.01112522537451577 :0.4219735806571561 +.:0.06700203182037183 of:0.061562419065591574 Mrs.:0.03510078863664512 :0.03321447696266075 the:0.024886951762942238 S.:0.02273462516850522 H.:0.02011479274126404 said:0.019834070037319924 J.:0.019727321495431476 A.:0.01839931914226458 and:0.017064207848280513 W.:0.01687591746662648 C.:0.01674362608557452 M.:0.014963511366898595 Miss:0.014921018638663956 by:0.014180817161724204 F.:0.013113186023856688 John:0.012632364336742693 Dr.:0.012362289846338989 :0.5435662643922966 +that:0.178284159575114 as:0.09929744136956559 and:0.08541777628408648 if:0.0728365978041363 which:0.049513304279758086 to:0.04380370015188243 but:0.04110136039696938 when:0.03941375810559748 what:0.035459436506106785 will:0.02244443855751659 If:0.02220252953119867 I:0.01865615558477226 would:0.01693541976984254 said:0.016332190899608495 not:0.016016149063408182 where:0.0159005303675136 should:0.014230994720865826 whom:0.0142031895571059 did:0.014126318924843098 :0.18282454855010832 +of:0.08471158294608466 the:0.0784438437743542 and:0.06720291665013167 to:0.046122408044339536 be:0.04046161143939536 in:0.027015564105553006 or:0.02435480735182264 for:0.020708581282078056 re-:0.019876814990101653 a:0.019001442367514877 was:0.017086966244810257 he:0.01604154291250958 that:0.015254506438979668 been:0.0144517087438338 are:0.013598540775756165 :0.013261930010872289 is:0.012996389654437859 their:0.012513526857303347 by:0.011245002537989195 :0.4446503128721322 +to:0.14401522014784593 I:0.08717805441967116 would:0.08361228383208522 they:0.07250612364846672 we:0.06597598184142542 who:0.05136360986841521 will:0.048581532657812176 you:0.036303803346831635 and:0.03262750567837507 must:0.02681132061405771 We:0.026497479392441514 shall:0.02444461513167911 not:0.023426718145168758 should:0.022766551002372307 may:0.021516097053646 might:0.01661740567775864 They:0.016135791002525445 which:0.015447058681747887 could:0.01476846332748608 :0.16840438453018802 +of:0.20490138124969515 with:0.10701758127616066 by:0.0739805138964743 and:0.06696937981328567 to:0.06014265623632786 that:0.054317728083870934 in:0.05254814157399606 from:0.0343907265287196 on:0.021808205360527542 for:0.016713919676000274 upon:0.013548098444080779 told:0.013072001544714024 as:0.012087700336974365 but:0.011728173102814408 had:0.01126881918741642 made:0.010577222121803304 have:0.010505621999668495 In:0.010410082956214789 saw:0.010154205585948239 :0.2028578410253071 +nothing:0.06252510084897628 able:0.05430356112944802 and:0.04989526780458106 right:0.038087733783625684 order:0.037373126557544004 enough:0.0349428389105576 time:0.03486873760780056 want:0.0346953867900447 going:0.033433660360312756 him:0.032420561468315984 desire:0.03120220043142262 have:0.028863686431539602 ought:0.027155397920157285 not:0.026419929717902888 unable:0.026284860345547043 as:0.0260270384727921 willing:0.024717243194984143 had:0.024169625600140854 is:0.024045670887294056 :0.34756837173701277 +the:0.11919516938815296 of:0.07230453158552728 and:0.05781056740443249 a:0.043018564803886335 to:0.031305092790907506 in:0.020848713353460488 at:0.014270110001066288 .:0.012526810245749479 :0.012413283442322082 for:0.011719122709941797 by:0.010808400946589808 or:0.010404172990115616 The:0.01003576004804544 with:0.009811868184449042 tho:0.009295902015355835 was:0.008924239095331684 that:0.008672304223433876 is:0.0085591147338948 be:0.008335143826716943 :0.5187411282106204 +the:0.11919516938815296 of:0.07230453158552728 and:0.05781056740443249 a:0.043018564803886335 to:0.031305092790907506 in:0.020848713353460488 at:0.014270110001066288 .:0.012526810245749479 :0.012413283442322082 for:0.011719122709941797 by:0.010808400946589808 or:0.010404172990115616 The:0.01003576004804544 with:0.009811868184449042 tho:0.009295902015355835 was:0.008924239095331684 that:0.008672304223433876 is:0.0085591147338948 be:0.008335143826716943 :0.5187411282106204 +the:0.11919516938815296 of:0.07230453158552728 and:0.05781056740443249 a:0.043018564803886335 to:0.031305092790907506 in:0.020848713353460488 at:0.014270110001066288 .:0.012526810245749479 :0.012413283442322082 for:0.011719122709941797 by:0.010808400946589808 or:0.010404172990115616 The:0.01003576004804544 with:0.009811868184449042 tho:0.009295902015355835 was:0.008924239095331684 that:0.008672304223433876 is:0.0085591147338948 be:0.008335143826716943 :0.5187411282106204 +and:0.1804053463882558 said:0.05721561976402812 all:0.05249239090731336 but:0.03318608469859842 so:0.031661213020212756 of:0.027201895068649208 thing:0.02615631196679423 that:0.024017821591963903 as:0.02223282916374748 time:0.01774288576386977 say:0.01677406029156968 than:0.01654545898246282 fact:0.01639044752772287 All:0.015816535442073933 thought:0.015316627613523497 everything:0.015215058590458063 it:0.01200110000292291 one:0.011456552308586552 know:0.011405269582533826 :0.3957664913247128 +and:0.05954826800200673 able:0.04668638322633569 order:0.044604147860743466 him:0.0386265639301963 is:0.037952755253664684 was:0.03608034278118964 time:0.035788742053291994 had:0.03422850577743171 as:0.03375615948603487 have:0.03325378431854452 enough:0.03265489613643173 refused:0.03217993653985935 willing:0.031954089052473225 necessary:0.029379811072967266 unable:0.029231642185726107 ready:0.02728452641965818 want:0.022311327375082984 desire:0.02150886685695491 going:0.021449676184255563 :0.35051957548715107 +the:0.11274823966931571 and:0.08329996793360815 to:0.062372082173126384 of:0.05346002906215973 so:0.0299749817344208 is:0.026294180790411077 be:0.020260006954324915 he:0.018124449911071136 was:0.016351044211737983 re-:0.01567649125103956 Mr.:0.014726716630740086 in:0.013675410003338988 for:0.013272602215284653 a:0.012159264338821467 I:0.012040910229586727 or:0.010977326121126826 :0.01035107289213954 are:0.010219913969554774 not:0.009881708091297656 :0.4531336018168938 +hundred:0.02334136986593815 up:0.005482494641173394 men:0.005366536521246011 Hundred:0.0047587970519216575 John:0.00441808156134956 William:0.004390720675819281 him:0.004016828614280843 ;:0.003997112205305733 due:0.003721199871732 in:0.0036582900032443304 time:0.003637206863828461 James:0.0035594902370151707 out:0.0034878448964120057 .:0.003467980723571515 1:0.0032804584819785204 day:0.0032444781513863933 ,:0.003058139385740603 :0.0030314555521939613 Robert:0.003005471634785646 :0.9060760430610768 +at:0.15759636317629921 of:0.1421714067936483 in:0.11676904876960983 to:0.06398364411645996 on:0.051157018190029144 for:0.05108566601725402 and:0.04555513108461132 that:0.031721944739604234 from:0.030113826054908015 In:0.029702699076370135 At:0.029399515452081842 with:0.028043139425789426 by:0.026185917658690036 is:0.020303271491863204 as:0.01797707611473321 was:0.017223050385135958 upon:0.016504659720422372 about:0.014081527374087893 be:0.01236778699448754 :0.09705730736391437 +of:0.28195066534121943 the:0.2610755576112591 make:0.03415328961307915 and:0.031782189838317675 no:0.02896429959361219 a:0.026098938419421826 more:0.024719087529630614 their:0.02468907413158785 for:0.02390875223328121 The:0.02059035158641472 purchase:0.018581603045473297 his:0.017535915097019236 with:0.016882750485259293 have:0.016114972881326017 much:0.01485832984222779 that:0.014288653890779365 to:0.012724416917595113 any:0.01224065731442438 or:0.011890643728061943 :0.10594985090000979 +the:0.19438423699114485 of:0.08363487469578873 a:0.047643094778043044 and:0.043125571544424195 to:0.03690078402364153 his:0.03166841495778591 their:0.031354667722435725 gold:0.017352524958222273 both:0.014959081762836597 for:0.014695331717403243 tho:0.012335801117963447 with:0.01081591015773939 on:0.01050782899840216 that:0.01043604582897223 one:0.010062183016745377 all:0.01002010067848208 her:0.00954129132495201 more:0.00944243678085766 in:0.00925035735572993 :0.3908694615884296 +as:0.08524588597261817 is:0.07196027481495108 of:0.0690581494257102 in:0.06573010215341722 for:0.061579250436018855 was:0.05978718125837286 and:0.05348853629363806 with:0.048207378995405864 such:0.03589607714998453 to:0.03544848996435574 by:0.03513239426551799 make:0.03314126719071439 made:0.03312482155637384 that:0.030753386967119545 be:0.030196097935508575 not:0.027279145846460285 have:0.026220715376364917 on:0.02188689360654263 had:0.020556601398082342 :0.1543073493928429 +and:0.05707713395452511 together:0.03734075518884047 complied:0.02839972292902058 filled:0.025099870381409733 do:0.023965041519427945 up:0.02365839982906842 covered:0.023514951936898527 charged:0.022561336524315648 connected:0.02074382316369395 it:0.019955937172716078 dealt:0.019548694847346493 them:0.01846731865918885 him:0.018047056251040312 parallel:0.016076905229992992 met:0.013423351433001406 mixed:0.012077667116440956 compared:0.01192935853274159 go:0.011164638851454203 out:0.00997744742465488 :0.585970589054222 +the:0.14250180257512562 of:0.11917378980102954 and:0.08957039210501483 to:0.06794230479228394 be:0.03531808334298532 was:0.03174234241559366 in:0.02759826992138265 a:0.02571634943423718 his:0.018945919601214264 is:0.018124199193778816 as:0.014221911735072984 were:0.013991690901248325 been:0.013897215394789893 or:0.013614913003554769 by:0.012482770753818583 their:0.012418617258440255 for:0.012299972489231734 with:0.011828999355510357 are:0.010510719967361757 :0.30709973595832557 +than:0.10899324063850581 a:0.1009658691566175 and:0.08382641471764783 to:0.08339079096959717 about:0.06256820729966232 nearly:0.04648224742731738 the:0.04037742715012028 in:0.0368745570584599 only:0.033417086205082165 of:0.0313356188768817 that:0.02671601433105093 one:0.025960001082306446 or:0.02428139609504233 as:0.0221815319477861 over:0.02000473786869451 for:0.019766060232682233 this:0.01921313351112006 not:0.017311758095496208 at:0.016699099489776884 :0.1786348078461522 +to:0.27602908269760557 will:0.137308613515825 would:0.09738077016932331 a:0.08139912122606328 and:0.04699637433162384 the:0.04437991173367374 that:0.03382175818689478 I:0.0328402952137054 this:0.025180824392017725 must:0.016082954490747228 should:0.016016121588423058 may:0.015555879750337264 in:0.014667555555492652 can:0.013665081815430611 not:0.011854338295703197 shall:0.011817618940677413 what:0.011811698174440582 every:0.011699688588554363 re-:0.011346715481622352 :0.08914559585183862 +of:0.13084814232797154 in:0.0740836656586379 as:0.0625527229231004 with:0.059577596335708534 to:0.058433603729754965 is:0.05551580107464621 and:0.04946529489577619 was:0.04264000753602388 for:0.04009673021586375 by:0.037684080471064085 be:0.023941707008899252 on:0.02316059851167503 at:0.022644769441950232 such:0.019950936521181326 that:0.017856095877642635 like:0.017386655618315594 In:0.016902219705578994 from:0.016046571451088905 not:0.01205910100844263 :0.21815369968667797 +those:0.11999919925524949 men:0.07247191871737804 and:0.0613979338769373 man:0.05926365276765005 people:0.026258218536808476 one:0.020308933816621473 all:0.018795482585020194 Those:0.01292776883001645 persons:0.012582236727208517 woman:0.010976916577004985 person:0.010688696627121526 women:0.00972673656670808 others:0.007910529737203813 girl:0.006847435986203385 or:0.00672094681269142 thoso:0.00617455298030445 friends:0.006024193125371561 man,:0.005544672924237675 gentleman:0.005255714382956099 :0.519124259167307 +the:0.11100167162663248 of:0.07412573591112596 and:0.06774816232750307 a:0.05730382173991848 to:0.049292749651549866 in:0.023158790351528062 by:0.0189521029168617 .:0.017503451411512966 be:0.016310180268674555 at:0.01578772087408171 for:0.015715212791976137 was:0.015182177549704669 is:0.015140114763681625 with:0.01274486865219401 his:0.011140066658212272 I:0.009369739395240577 that:0.008911266177562903 Mr.:0.008764136408724588 :0.008558330393337085 :0.44228970012997726 +premises:0.199050924925039 property:0.04546726237697763 sale:0.03972281046154555 mortgage:0.037704595753460045 land:0.03287728209652855 herein:0.03224705398256692 indebtedness:0.029742316137299798 complaint:0.02890478870213455 taxes:0.02659593081264104 interest:0.025770260428771685 and:0.02559082899021611 that:0.0212280906421268 described:0.01855011108358169 well:0.01658254086584909 terms:0.01616441814627651 purposes:0.01553955239011695 said:0.015175654713658207 amount:0.014274329621925185 place:0.014239047905464952 :0.3435721999638197 +and:0.10619539575602702 as:0.09949813573594793 according:0.04502360840610343 right:0.029237545239300732 regard:0.028174079306767956 it:0.02768734661977436 them:0.024528477954238636 is:0.02254980104991422 go:0.021769297639876874 way:0.02150791241500286 up:0.020934512740725414 went:0.020747471042922502 subject:0.02024153854960032 entitled:0.019281438743440238 time:0.016659714965140102 him:0.016232487013961933 sent:0.016144276416994126 necessary:0.01586235404693931 power:0.015467194855781657 :0.41125741150154044 +the:0.024145126462895423 no-:0.02175824621924385 two:0.021479223437465084 :0.021257384992966536 five:0.01954522738043768 no¬:0.017668605211660804 three:0.017276422377350106 10:0.013451076416501305 de-:0.011529161887903223 par-:0.011161739852867435 Hundred:0.011099955620258244 ten:0.010800146040983064 hundred:0.01079806661053651 thousand:0.010026180339707853 few:0.009932495241818416 and:0.009305829411895759 20:0.008855168226502588 four:0.007897562354730561 many:0.007708636808786901 :0.7333037451054887 +in:0.21361866819538164 of:0.10015439075163463 to:0.09174658439678078 on:0.05652562204267865 by:0.054930212699003556 from:0.053800904758746104 with:0.05373167810334797 upon:0.046095939790645926 In:0.04150275646746811 for:0.03527557867873188 at:0.02737751360816521 through:0.020451686420470176 and:0.019877920035511497 under:0.013975199609340678 after:0.010310748620116106 into:0.007773820479550836 during:0.00617879543604524 over:0.00592093902393609 that:0.005432617107744836 :0.1343184237747001 +of:0.09129790931378902 the:0.07369883040827747 and:0.047842263382354346 in:0.04189055351593407 to:0.04045875475680249 a:0.03542341257202578 be:0.02020462051672066 for:0.01979292654746225 was:0.01760256398103379 at:0.017380150555488715 is:0.014984483003968216 with:0.014047653760730413 by:0.01374644383819499 :0.012670486581795598 In:0.01200961464556976 or:0.011563835749786333 from:0.011391516893522809 are:0.011273104484969465 that:0.010755276030689069 :0.4809655994608848 +virtue:0.062060494787377685 out:0.05417899169104244 part:0.03289673107629515 one:0.02969369892462812 quarter:0.027015883171169475 favor:0.01993830018372674 result:0.019463829004704194 guilty:0.018891084377354095 means:0.018499162894926688 end:0.018170939082736048 that:0.018121271122199262 construction:0.01726217741616459 presence:0.017003995482744873 tion:0.01673652166540914 case:0.01640819963257697 side:0.016055927605250184 erection:0.015381239457214257 account:0.015287601389485416 hands:0.015156055434805247 :0.5507778956001894 +the:0.1562497042329088 and:0.09674074791082925 of:0.09010559638226832 a:0.0684695656149656 to:0.052071639147371326 in:0.02834941377281695 or:0.027874751773263522 all:0.024663723241170905 for:0.021284467683144497 an:0.02121383748412484 with:0.018281606713814024 their:0.015985835720560157 be:0.01565644966325288 at:0.013904151138553688 his:0.013475683816285548 is:0.012642963818653624 as:0.011423357677900321 .:0.011120197024395817 tho:0.010245535682353785 :0.2892407715013662 +a:0.6686706499032519 the:0.08267864474199418 and:0.040027917618364224 of:0.029372784356236727 his:0.016177803551934454 any:0.01515890472983565 no:0.013569055770496337 very:0.013195117668804204 to:0.011885035203859366 this:0.011443025776137369 A:0.010439991095056955 most:0.009342956991052287 by:0.0075540220574619186 their:0.00745397796965996 or:0.007199991118325114 that:0.007115145612713599 The:0.006810466467729399 is:0.0065254235156616165 be:0.0064126968346382126 :0.027966389016786577 +and:0.049488587180846304 away:0.03861472427535417 him:0.037687645507583224 Senator:0.03302394692020478 them:0.0327664376698186 it:0.028936956620726238 received:0.024629882067105847 taken:0.01933449554893546 made:0.01805885725035502 came:0.016308852404350906 here:0.016019744019382234 far:0.01569106447087714 returned:0.015664675667929714 men:0.015325791228808634 miles:0.015301928121839602 years:0.015049428842766784 out:0.014810465444658272 letter:0.01410342565730264 come:0.013962691796721553 :0.5642203993044329 +the:0.3006658718366265 of:0.12902816214107268 and:0.08101567186222884 a:0.06382910538922046 The:0.03966519105237289 to:0.036578059633147995 by:0.023151095812279122 tho:0.023143193394965473 his:0.022448207586995766 said:0.01777443228262865 per:0.01637923318927472 in:0.013949659317399509 an:0.011271074961916568 their:0.01112596917501612 was:0.010431262504189904 with:0.010294424849042439 or:0.009793429653172387 tbe:0.009482767178652637 for:0.00882481107719967 :0.16014837710259766 +and:0.06221069663990682 Committee:0.05057534586581559 was:0.02748220847391186 committee:0.02744426205407836 that:0.020734118233226323 is:0.015430238938760197 be:0.015048656326656785 going:0.014001702059179444 out:0.013278222204376178 work:0.012879402979875257 went:0.01268561986518544 put:0.012602354130226817 due:0.012424637090645018 were:0.012095015985171466 called:0.011981002673910567 it:0.0118054636333845 them:0.01156555523415657 are:0.011505242379095585 him:0.011141026526201511 :0.6321092287062358 +and:0.10420087527061636 the:0.09407625435543836 of:0.06365154536518211 to:0.036781812374408855 in:0.026444866779142664 be:0.022947153116782894 a:0.022883854177303518 was:0.01854652421202076 that:0.017028580296518304 is:0.017028443409037843 which:0.016544254771469178 he:0.015342606321090056 are:0.013321468093380372 or:0.013168567488349419 for:0.011882883678183572 no:0.011660171813439462 have:0.01122101915694223 I:0.01080924806250182 much:0.010676596639667071 :0.46078327461852514 +of:0.1456483014964055 is:0.09269788728253725 and:0.07430946390094535 as:0.07193950290709741 with:0.06450880924544797 was:0.06053518096397406 by:0.05085986206665573 in:0.04961730862589295 that:0.03997160107805786 be:0.03532441638924149 to:0.03378697799469873 such:0.02791991873294927 for:0.02424000653619679 have:0.015537198981002058 from:0.015066341316975066 but:0.014920452066987205 had:0.014758012613963124 not:0.012389546052552661 been:0.012294751824939497 :0.14267445992348002 +which:0.07466288690628128 and:0.06989062825186912 that:0.06549118566101968 he:0.030906231669920785 who:0.02901025411133172 have:0.024079090030122978 had:0.023022134623799397 was:0.021145870031054576 has:0.019093729009351974 were:0.01654284232407263 it:0.016131827454588795 be:0.015721529858181642 I:0.015501824832568468 He:0.014255176123188823 of:0.013929487309516585 man:0.013841103475756851 but:0.01328675978136545 what:0.013196269627040999 as:0.013080284161789626 :0.4962108847571786 +of:0.11291176315903897 a:0.06784653871866204 the:0.0647194845266094 and:0.05849411181288017 to:0.037306267239300875 for:0.036532930930980166 was:0.029760493984710097 is:0.027803449798766224 are:0.019346897313670987 in:0.019287093646197382 that:0.01914451809969 be:0.017532772438366657 which:0.014353518791997472 with:0.0134710060063748 were:0.013297418920382813 or:0.013289208728846797 his:0.01237659399861477 as:0.011620228848745726 their:0.010109322129905804 :0.39979638090625885 +of:0.2424019997328907 and:0.08894858189924974 to:0.08362287292132392 in:0.07022477751227092 with:0.061099166484806886 for:0.056006885004759324 all:0.050156590851680484 by:0.04590042338281411 that:0.04186917520536697 from:0.0240238431352828 on:0.01880649815804462 upon:0.01759161335633198 is:0.01710892253268116 In:0.013676956158401915 as:0.013130817811920305 but:0.010187238191454884 was:0.010009067640139178 under:0.00976278075907586 at:0.008410145810709284 :0.11606164345079495 +out:0.08488537213016922 amount:0.0630152955341223 number:0.04426921143330982 board:0.0418937924487754 cost:0.03371736776252193 piece:0.03083041631339499 state:0.027930456897469532 line:0.024167336253964236 sum:0.023378426893606225 costs:0.02288752467908512 rate:0.021844314130236298 kind:0.021726015644963445 half:0.02079016796721064 day:0.019760510847836685 means:0.019095277545307984 time:0.018891114312711184 payment:0.018889404925959637 years:0.01807685614596997 course:0.017286859915743837 :0.4256642782176416 +hundred:0.058876227898704586 men:0.017532803349159725 to:0.01489347597912984 1:0.010713485342115197 one:0.010414664281688942 up:0.00947166424070849 Mr.:0.009122299356761723 north:0.008417848585221674 due:0.007977789587736091 gold:0.006699523657961447 wife:0.00629634214445554 women:0.005998271447551039 street:0.005907109628773403 east:0.005847891210988606 ;:0.005777171239232507 North:0.005743966805420088 2:0.005422765615906811 William:0.005246764478824129 dred:0.005235772840395235 :0.7934041623092649 +to:0.09864282010030183 the:0.08375297126946753 of:0.07074571151673052 and:0.06779046829403 a:0.02766650927741597 in:0.021670314456411932 at:0.021392828982420006 for:0.01627599403114278 is:0.015107338441904122 he:0.014818877918256685 was:0.013808540905081488 by:0.013132601340090633 it:0.012796195965848819 I:0.012723560421513859 :0.0121914922721236 not:0.011777366450725432 .:0.011011346691779235 that:0.01092359583028988 with:0.01073896800850032 :0.4520324978259654 +the:0.15621010762249324 by:0.13955644093326466 and:0.11438091094248172 of:0.06541015489948335 to:0.04504562573080987 :0.03351711480023998 The:0.018738306814559732 said:0.0175941870841191 that:0.016920764361927215 pastor,:0.01639880123573177 a:0.01563522410044944 from:0.014643090262355288 .:0.01205465561018622 with:0.008695396251816558 Mr.:0.008294550296169113 Mrs.:0.007280605493632116 in:0.00665859980145272 as:0.006486067117596407 church.:0.006185862446907483 :0.289293534194324 +the:0.46753054228345453 to:0.06414255684312237 of:0.06062863295340583 The:0.0473785115401264 a:0.042324519070243434 and:0.04171858798598288 tho:0.03864625592114831 stock:0.019320385754005718 tbe:0.015066368055425227 our:0.013497833562356372 in:0.013264263167220392 for:0.012528538648363884 all:0.00989973512054053 by:0.00954748266890507 with:0.008278752286414004 their:0.007407195040686729 his:0.0073808758356094075 American:0.007105971543142829 sur-:0.0067320029307704685 :0.1066009887890756 +the:0.11919516938815296 of:0.07230453158552728 and:0.05781056740443249 a:0.043018564803886335 to:0.031305092790907506 in:0.020848713353460488 at:0.014270110001066288 .:0.012526810245749479 :0.012413283442322082 for:0.011719122709941797 by:0.010808400946589808 or:0.010404172990115616 The:0.01003576004804544 with:0.009811868184449042 tho:0.009295902015355835 was:0.008924239095331684 that:0.008672304223433876 is:0.0085591147338948 be:0.008335143826716943 :0.5187411282106204 +the:0.4071374189315913 and:0.06449181461132415 of:0.02892866618288876 in:0.028670005984162618 The:0.02603617389223924 tho:0.024993820467459137 a:0.023579040051412606 to:0.01755553213771617 on:0.014626070241060114 by:0.013447843485786471 or:0.012794166593089693 tbe:0.012024509152999897 :0.010353482361299817 that:0.009291482237329618 In:0.007938246807075932 from:0.007526799010378873 other:0.007469196869028889 all:0.006409533041696086 for:0.00626887758057738 :0.26945732036088327 +It:0.17809625487041514 it:0.17461784925315238 he:0.12525619703113597 He:0.06830218496312661 I:0.04616448106162731 which:0.041399715899192294 and:0.03580219131485519 who:0.02651541461880604 she:0.026012112000043167 This:0.021591998822195115 that:0.018525906320326215 there:0.013831346009071006 She:0.011349575222065486 lie:0.007746058846929453 this:0.007636899367351452 ho:0.006065712951575524 man:0.005904031826301479 what:0.0055691305154894856 case:0.005470111965526513 :0.17314282714081422 +of:0.22203992860304686 to:0.16138438676426867 at:0.08482921534037073 for:0.07462233098628196 on:0.06532159001905333 in:0.04711856441443065 and:0.04260743408559872 with:0.04246866782291715 from:0.038873548492204396 by:0.03557618201785476 all:0.0277301271626119 that:0.027640014756979418 upon:0.019877035430286186 as:0.01384373423062623 In:0.010500998896837622 after:0.009489030356493327 is:0.009268469335777218 over:0.008994713926744278 through:0.008288889497861909 :0.04852513785975468 +the:0.3307169522500406 said:0.2011276467675742 of:0.03801285627048214 tho:0.023572631931285486 and:0.022555661460909582 on:0.015973176031834162 his:0.01533470052042687 described:0.010659127113438426 tbe:0.010039503250094783 Rock:0.009302540263924276 this:0.008883363594634076 in:0.008517916965098578 street:0.008018106249571109 The:0.007492342638284146 a:0.006792139553616817 their:0.0066796798480989765 that:0.006552962010054923 School:0.0063336984995488056 York:0.005830045572855239 :0.2566049492082268 +the:0.31678678240836433 his:0.13517731061626467 a:0.058748731132063865 my:0.057590872461197234 of:0.03601102349854209 her:0.03381704494546964 their:0.02441118863764259 and:0.022572645675491467 for:0.0194945019987789 our:0.017625488938518723 The:0.015721724794581126 good:0.01371940442293409 tho:0.01306739995345482 this:0.010474251736278853 your:0.010380578942343116 old:0.010245285385141766 that:0.010015652105508725 to:0.008311386187742367 own:0.006999913339066535 :0.17782881282061508 +of:0.16046635114824703 as:0.07670549078136393 by:0.0757534468515068 with:0.06757533168909952 and:0.06369696139950132 to:0.059068095945879646 on:0.05196459122241952 in:0.04721940753875472 for:0.04434615145500398 that:0.037617900996206974 is:0.03738343014831498 at:0.033803894663443225 was:0.0280291115392488 such:0.020932702120898875 from:0.01734883794859115 upon:0.016284533828745687 be:0.015219631611601076 made:0.013957821730011128 make:0.011814226809253299 :0.11981208057190833 +of:0.23646773441256055 to:0.11553030764771231 the:0.11518986662116824 and:0.08700075146163837 our:0.04502274210384928 their:0.04079689905839631 many:0.03439884154097747 his:0.026437242231167113 for:0.02629025401364213 her:0.023346859940706052 white:0.02177495873522463 these:0.02112683225059388 other:0.020861375556628984 young:0.019223524608381722 two:0.018670230234486582 old:0.015780083602583376 or:0.014404049265096405 three:0.013219289385128237 thousand:0.013185765393034184 :0.09027239193702415 +and:0.11958536754157074 fact:0.0738760970146536 said:0.05292429274118783 know:0.04424221141323232 say:0.04391701852852371 so:0.031359577023766634 is:0.030018667977326715 believe:0.026483048554913142 stated:0.022711093857713357 says:0.02158540440435955 thought:0.01759481890036582 think:0.016930985958877313 found:0.01685119645252505 knew:0.015627941859033087 saying:0.015318968449423067 him:0.015148063005297318 me:0.015002473606157736 but:0.014803358041438333 told:0.01452834020416077 :0.3904910744654739 +they:0.15434188783743902 who:0.12062604923240407 we:0.09552030883235822 and:0.06326687540240493 We:0.05190713872873999 which:0.05046821274978421 you:0.043746894602213565 They:0.037612301617123055 that:0.036536894157892595 men:0.033805309985504274 people:0.021374582553469353 women:0.012738197623172139 but:0.011655651146446044 as:0.010570422716922868 there:0.010521788776903553 I:0.009547098960406567 You:0.0078398350828481 them:0.007730259820090827 children:0.007682730952260813 :0.21150755922161582 +a:0.17318718303071431 the:0.1508425338704391 and:0.05876226826817243 an:0.04975779157158365 of:0.04173431703957771 that:0.03043159892540567 any:0.027795468506368062 as:0.019411794653158652 no:0.015694881142325496 for:0.015358333924640461 The:0.01466965074670526 to:0.012748384112026185 such:0.012586983189270923 or:0.01213004964444885 in:0.011619346646739215 which:0.010749006832696384 this:0.010178086541462473 tho:0.008012916687429632 all:0.0075203665367640955 :0.31580903813007144 +to:0.2201019707530998 not:0.08000724432603808 will:0.06500663609550025 they:0.05929225828821462 you:0.05464135409979364 I:0.04813420687418296 we:0.04651333327283046 would:0.04637934523194858 and:0.04147800764749321 cannot:0.04053221114309459 shall:0.03886496256393328 should:0.03488363665558016 who:0.033830646677095025 may:0.02756620469834428 can:0.026264344593669563 or:0.02138002961878895 never:0.021048803456621166 could:0.02047840309095888 We:0.014931354463998257 :0.05766504644881426 +it:0.2456244232316181 It:0.17483809138014325 he:0.12114507680962044 He:0.06250247669104843 and:0.031024391619099607 I:0.03071837045074262 she:0.01853575187453151 which:0.01407775580759458 result:0.012973555216551516 who:0.01055043306896034 that:0.009008297522370898 be:0.008710835937118121 She:0.008565900873731679 there:0.007923699185928152 as:0.007059792421071977 man:0.006812992494870735 ho:0.00670174363032633 lie:0.00575758803210899 so:0.005421479743835596 :0.21104734400872713 +the:0.16222785197084277 of:0.1526908087698024 and:0.07507052349717797 a:0.05732414985627743 to:0.03750450206601762 his:0.02879320282041287 in:0.020678208319680664 their:0.01988476778002031 be:0.019321437176384116 Mr.:0.015861640418635633 for:0.015844087639784944 was:0.015377162642413544 is:0.014941786228512907 an:0.013601524513349898 or:0.013274052921118086 by:0.013007679095167791 that:0.011563403830653494 at:0.011392843669132546 this:0.009974474377067683 :0.2906658924075473 +of:0.1871094139537298 and:0.08180353430003881 are:0.05273898925022509 is:0.04431911499211212 in:0.040191378588168444 the:0.030250809160831258 by:0.025626268703481562 now:0.025184776003638852 for:0.023951436710418716 without:0.022803110074675864 not:0.02246215146965972 was:0.02207836563217326 it:0.02196234873723601 from:0.02118283171599719 after:0.021051988854005388 as:0.02018835641783001 with:0.01547629402900755 to:0.015186546937237033 on:0.013880181116557365 :0.291552103352976 +to:0.16409863809058287 of:0.1018920343126089 told:0.07087396394837626 for:0.06099888034756452 and:0.0500044025885749 with:0.04255425584602345 let:0.039162117117385487 gave:0.036769109479060536 make:0.02600017015733426 give:0.025550230343735346 Let:0.024958610908257906 from:0.02297315153035172 made:0.019324592979333807 found:0.01676087634773812 in:0.015813025103772988 but:0.01546462917793638 will:0.015020275147546992 or:0.014398348577039196 brought:0.013266076117126154 :0.22311661187965015 +and:0.04848438861706425 was:0.0367304135001247 that:0.033807474723788374 is:0.027882040191359935 but:0.017569083187789287 it:0.016088314686035502 :0.014547129627327474 up:0.013860967207223917 be:0.013648600918448063 out:0.01217370149616201 as:0.010933444581468065 feet:0.010815176142054489 recorded:0.010609020283235052 appear:0.010376460592184089 Is:0.010092737174011471 been:0.008686534330945215 are:0.008288132025834496 file:0.008242348081596304 were:0.007877251004795912 :0.6782867816285514 +the:0.2907966835191181 a:0.07695097302232178 that:0.04787078848423115 to-:0.04766946472576492 The:0.04458201638860735 next:0.039532330330177785 this:0.038233896328691966 one:0.03712555652781908 per:0.03224742433273755 first:0.026704811132548842 every:0.022611242908708064 his:0.020185619391839063 of:0.019078972804268696 all:0.018762031145859268 One:0.01798214267307941 other:0.017169844843457082 yester-:0.015012479270174031 same:0.014098128757305478 to¬:0.013368108551865276 :0.1590174848614251 +the:0.14387697311521017 of:0.07734878618280835 and:0.07416576092418023 a:0.058996175777655056 to:0.03609289776909711 in:0.024975310724660513 at:0.01967898645211106 The:0.019172409846238924 :0.017673812399891034 for:0.015156830221539498 an:0.011278197398172204 his:0.011096628988413314 .:0.010697779204096565 on:0.01062006039100052 tho:0.010228168776177009 is:0.008947210617937844 was:0.008621524758415607 be:0.00848332474392986 A:0.008207677674301694 :0.42368148403416345 +the:0.1694456538785162 and:0.16777361964973073 of:0.05268470297578686 not:0.04176775910698643 are:0.039182881724778934 be:0.032418774607368694 was:0.027576238170866286 to:0.026217120854507683 or:0.02529323357476472 been:0.02437856633941045 years:0.0200047474268739 much:0.0198024173976427 as:0.019449889294235884 in:0.01880446319439825 were:0.01855573914851463 two:0.018442649900819445 The:0.01661227820705138 is:0.016226293273133543 land:0.014584300192025152 :0.22977867108258812 +to:0.5067319872362178 will:0.11138210121554737 and:0.06187788115802993 not:0.04455957251639624 would:0.043703372058636634 you:0.03775406785614516 can:0.031153925449173076 could:0.02491945590115347 I:0.01900857060593207 should:0.014332004519646935 we:0.013452631959609536 shall:0.011215729100190034 must:0.010613460176675608 they:0.009261561892308617 may:0.008880646700879263 To:0.005902325459813771 cannot:0.005752096462912149 who:0.004769664848684106 might:0.004285597798369598 :0.029443347083678625 +of:0.08567226239344902 the:0.0695662553570269 and:0.06906374323308995 an:0.06602679751579948 in:0.0237386714280043 to:0.020805577220687158 .:0.013927883561855781 his:0.013562047965275374 a:0.012783095523734436 1:0.011849821941227417 her:0.009570134595932436 on:0.009561517639947325 with:0.008649636323508418 dam-:0.007891650667360032 man-:0.006230063844299865 In:0.005981159982629178 A:0.00563285854580833 at:0.005433532905890581 The:0.0050496614401617 :0.5480036279143123 +to:0.2093024025856518 with:0.14528396442612093 for:0.08257333673781368 of:0.061627849331023644 upon:0.04594361214069402 on:0.03726747453763027 against:0.03592661845431777 from:0.025711767202839738 by:0.023313374082028993 before:0.021499797176776154 in:0.01937913906153834 about:0.018070959560731223 see:0.014291618253706001 over:0.01346648025405596 around:0.012672998310655603 behind:0.011439863937007733 marry:0.010783004186767309 kill:0.009878864242756838 between:0.008924971365821249 :0.19164190415206273 +the:0.1812810727731068 and:0.060116936389733325 a:0.05945114259469153 of:0.05391297288315979 to:0.03425954468849193 as:0.019815570273324475 that:0.018612350742479786 his:0.01675662056554238 an:0.01592510152893315 The:0.015740337918885728 will:0.014481634760107208 be-:0.013502325776813104 was:0.012011211342164806 which:0.01161393439421962 for:0.011317070016693936 in:0.01035882535603667 on:0.010126132224164901 more:0.009988521966605893 is:0.009971758535230522 :0.41975693526961444 +to:0.12022893700269083 and:0.09020394424291768 the:0.08587503820055309 of:0.06450042443224316 in:0.0310058468700829 a:0.017742048521183405 :0.015548046036689871 not:0.01491307651316237 that:0.014112408707955496 for:0.013734482372212283 I:0.013065769926808477 will:0.012848502316304782 at:0.012837991177321897 In:0.012628718855091186 by:0.012491091048660757 be:0.011425930130217754 is:0.0113962101007567 he:0.011342727513475473 or:0.01112522537451577 :0.4219735806571561 +the:0.19613502861034052 other:0.1597816856267048 of:0.1419558999074381 all:0.09824728180462854 such:0.03607032815506389 their:0.027840860961992113 to:0.02744054193771376 any:0.024345883970647738 these:0.019593255876542218 and:0.019161429759253744 his:0.01737422152777254 on:0.017371090492838262 some:0.017204990120136793 our:0.01654011457078011 many:0.01618675919676674 tho:0.013991013676960658 toilet:0.013886569958974889 by:0.013563356651670253 those:0.012629237393579884 :0.10968044980019447 +he:0.16545396771538806 I:0.16032908555495123 who:0.06539256060456758 have:0.04800678860213816 they:0.047797925385518594 and:0.04444342596719417 He:0.04412641817759772 she:0.04046033118176323 has:0.03393409735992592 we:0.02917774783558733 it:0.021760350261424612 had:0.019702539582073762 which:0.01786854993480003 never:0.017592959310961696 She:0.017560782771095348 1:0.015455470618531484 be:0.012652638953704245 that:0.011849968520844299 ho:0.010856822105152337 :0.1745775695567802 +the:0.2599833953421022 The:0.1437082310374712 of:0.054280572254793734 and:0.05290589754055401 that:0.03079608139313681 tho:0.023055717876898345 two:0.021806927384306788 his:0.02079390635924094 said:0.017546465903646325 other:0.016029537916642703 or:0.015554849542730462 all:0.01547331901398485 a:0.014051274655569579 an:0.013450467642781766 their:0.012692418763120158 one:0.01149581432051544 A:0.011050874143920282 her:0.010436192018852767 little:0.010402077800675202 :0.24348597908905645 +the:0.2883040242702666 a:0.22668466029019424 of:0.10141842599319109 this:0.04268097805133556 and:0.04113048049658392 The:0.022587087979842005 that:0.019618838510446362 tho:0.019049309678868462 all:0.01696261957091269 with:0.013456926991246383 as:0.008705471147128099 those:0.008444601634695749 in:0.008347100530411556 our:0.008294270780219076 its:0.007770600339440495 to:0.007475113554729169 other:0.007316959771047362 A:0.007262457979739991 these:0.007243317178247462 :0.1362467552514538 +one:0.1028303141280697 part:0.05963429477052991 out:0.04766456937681193 some:0.031418679026461914 members:0.030764490253327767 side:0.029940657362655835 portion:0.022063658796890564 office:0.020457735219956013 member:0.019726706386316174 end:0.019666887540649894 tion:0.018667441728710307 parts:0.016814747270460957 people:0.014112771422418794 all:0.014072739582212475 any:0.013183573287639892 One:0.013083578354183906 that:0.013024335602903442 account:0.012482348155001894 many:0.012077825070275192 :0.48731264666452345 +that:0.21253885800323094 as:0.11895903649110978 and:0.1038789054072914 which:0.07341677668436307 but:0.05604068374096368 if:0.036017256454716054 what:0.02473924111029268 where:0.02259369802485439 when:0.020583497758639813 than:0.017099502207928295 because:0.014287870860082244 or:0.012709762496040075 for:0.010725319979063593 time:0.009316885849812528 If:0.00923540219274938 all:0.008893056072075517 so:0.008654115967952868 until:0.008183756197274931 then:0.007054619793516717 :0.22407175470804203 +was:0.1768258671542053 and:0.10044571679309658 is:0.060956904862781394 be:0.0460417391282675 not:0.040695235213532965 him:0.033300139067969775 were:0.03167830024506076 are:0.029479914766931913 went:0.02706621106753877 it:0.02427066822122758 been:0.023384348280868383 had:0.022842212920265136 them:0.020991371390256214 back:0.01803511858452382 have:0.01734110148694999 up:0.016985175173724807 never:0.016676145395848354 so:0.01655228350816951 then:0.0163727092133103 :0.25905883752547093 +the:0.2944483627393242 an:0.10671680939694178 a:0.09101856030782249 any:0.06365376081382232 of:0.03220847029870169 every:0.027613512003223557 The:0.027604802663678065 no:0.027115883594832708 and:0.026490984687855382 one:0.020284323493980523 this:0.020032537368064977 that:0.01854889727833538 other:0.017316978047598977 some:0.016219164128271176 first:0.01576126354373248 tho:0.015444319779613946 his:0.014678785833322005 general:0.01337570288969082 such:0.012615709801539489 :0.1378511713296481 +was:0.16899631594423556 be:0.14481117513142497 been:0.09699439454651158 have:0.06677037135830452 were:0.061484085436007224 had:0.05380926293647888 he:0.050144251876116694 has:0.03987851861574068 and:0.02909126768963129 is:0.02608205182236378 are:0.023740687432749152 I:0.018062883760200484 being:0.013102379296197769 they:0.012906135625059096 bo:0.009000528273703604 having:0.008508552453702667 who:0.008154004238323857 she:0.00798920064889004 He:0.007726422198243764 :0.1517475107161144 +the:0.08297795581365841 of:0.07102963946124989 Mrs.:0.07053097979113836 and:0.04633599024224418 Mr.:0.03567743368586163 by:0.0352052853451829 .:0.031510902360094385 :0.021673265554348124 to:0.015891646952029125 on:0.014186765153877186 Miss:0.012545192243390034 girl.:0.011884251856523599 as:0.010563788350068683 Rev.:0.010268105443688783 J.:0.009251581128119095 The:0.009011394072228639 boy.:0.008815658620855411 that:0.008251676981455396 &:0.008192332427247411 :0.48519615451673875 +of:0.45828567953706023 in:0.1488854912008865 to:0.07097880784437291 on:0.042003946989017285 by:0.04106548716694851 from:0.03119733782703426 for:0.028410869299865575 In:0.023230796551567373 and:0.021825478768571 that:0.020934211802872527 with:0.01492473970826543 at:0.012005704903547297 upon:0.007832368896795585 ot:0.004746046157150854 into:0.004740775840651747 as:0.004597775500032228 all:0.00425899669122799 which:0.003997320246449803 before:0.0037192379066699104 :0.051358927161012966 +the:0.17969624102645182 of:0.048262271942257504 and:0.028824885557815705 .:0.025628205335175007 in:0.0236922263534121 D.:0.01421791467535572 :0.012616716592980644 to:0.012109225665544811 June:0.011054871933937001 May:0.010322322513745387 April:0.009579549138451627 tho:0.009018764778208397 West:0.008613959359074556 March:0.008074324138414662 said:0.007502707629605665 for:0.0074223738077607215 State:0.006788627760854875 on:0.006765760916849624 D:0.006625436614070663 :0.5621836142600335 +follows::0.26944109522879767 :0.07037546602758919 wit::0.06892148385670502 to-wit::0.060174867736028086 viz::0.017323876660980227 of:0.01624386491994933 ::0.013740162018710134 .:0.012441938448770994 to-wlt::0.010031452140637888 follows;:0.006846105320992919 lows::0.0044977760233530515 -:0.0037296565222769834 towit::0.003481408924835586 to:0.0025697280964459943 wit;:0.002512166582725153 it.:0.0022377428649376467 them.:0.0019755017664111352 D.:0.0019239437072354362 acres.:0.0017596376245691886 :0.42877212552804833 +a:0.09582695672446265 the:0.08240781230306109 and:0.07764824910514474 of:0.056505972410824494 to:0.05641990787993177 in:0.02803651740816835 that:0.023501712113494857 for:0.022675496848219248 with:0.016203520288388094 an:0.013365966569477913 as:0.012880590541786897 or:0.012666379140178756 in-:0.012330994041252995 his:0.011772660975322794 is:0.011680105638609547 :0.011315127923512155 which:0.010446650488396008 their:0.010421509194077824 at:0.009718177069112982 :0.42317569333657684 +and:0.06317916895143688 was:0.03089079697380977 is:0.020044819943736053 be:0.019406329289829806 are:0.016631216139614186 that:0.015910745835586493 it:0.014132589635136123 been:0.013429954470292457 made:0.013153338042273357 were:0.012494049396038097 or:0.012369181282419555 them:0.011608721240324167 up:0.01101461536327863 him:0.010833186604515583 as:0.010718511743974049 succeeded:0.010682665877813333 engaged:0.010592681714621757 not:0.009777868089593193 now:0.00948198968071834 :0.6826475697249881 +of:0.21878744649295606 in:0.1200446077343016 as:0.06785356116750453 to:0.06047271266334773 is:0.052612758135800936 for:0.04744235568818222 and:0.04434502229996901 was:0.042656719206485456 with:0.036041857019357054 such:0.033864365894832354 In:0.03233898306036156 be:0.030195779069567535 that:0.02968595526359588 by:0.028203188048870134 at:0.015518918684199697 into:0.01429933251764041 made:0.012864451872216002 from:0.01203557465607699 have:0.012016458006490042 :0.08771995251824477 +to:0.5032650640204178 not:0.10112502573259796 and:0.08818297787094817 shall:0.0412593657033924 will:0.02834678583093441 would:0.014782907747999766 or:0.0086866297886764 I:0.007704685328881906 should:0.007645856963000208 that:0.006801011425158782 we:0.00637395210322152 may:0.0061718504737727446 must:0.005711413439923061 in:0.005544200259222644 you:0.005496793682146602 now:0.004977136180509159 as:0.004883683343508049 who:0.004877844919372317 even:0.004841678497845977 :0.1423211366884701 +he:0.15392524271795166 which:0.09652748915391478 who:0.08919742137142596 it:0.059201636628767894 that:0.04592825299681931 He:0.04449298558703779 and:0.04349022059339762 It:0.034927254599625715 she:0.028819011621299864 man:0.015812389318591046 as:0.015606338301671118 company:0.013309859685450903 lie:0.011503413994597185 ho:0.010224231982713865 country:0.008491373465024338 She:0.008453107374688486 one:0.008265885845784512 city:0.008013593515084887 State:0.0075933289803685675 :0.29521696226578453 +of:0.08746639851891724 that:0.04352789649289575 and:0.04109713348912623 in:0.03165278628632379 for:0.018239130409948158 to:0.012215607511088081 one:0.011713729029594696 from:0.011180580811369394 by:0.01095842300640384 on:0.010375393965173074 after:0.009585921670375128 but:0.008426501071220767 with:0.008122330166015235 work:0.007781175004425757 land:0.007769967264917898 ,:0.007716249571725768 tion:0.007713269199726441 law:0.0076579714410952345 upon:0.0072448719423481535 :0.6485546631473094 +he:0.14056916869073627 it:0.0869537916178697 and:0.0835168622484119 who:0.07831602463085596 which:0.06258261814477262 It:0.05105937464451677 that:0.048637698043184824 He:0.040091028569777004 she:0.026707585639853978 man:0.01974223749022643 one:0.018987596297613568 ho:0.010946449339594171 as:0.010555506193620343 lie:0.010291600619800313 company:0.010156715823752258 She:0.009879437276842887 world:0.009298253868593617 be:0.008728934629575458 country:0.008710808357113185 :0.26326830787328875 +the:0.45660788727166973 a:0.1351406423588936 The:0.08789484967902908 ap-:0.03550001190833012 his:0.029774183017552757 tho:0.028210302335536636 and:0.02690326616272774 of:0.015765355622515406 that:0.015143693949926632 this:0.014519405581400588 A:0.014475031158809357 their:0.014063366100828976 ap­:0.01379538774859746 her:0.013230417642392033 Every:0.009471417466368374 tbe:0.009115301877077044 our:0.009061384436378425 little:0.008922589951812722 every:0.008641194848764373 :0.052764310881388936 +the:0.1446654336824501 of:0.10746629917640006 and:0.0852791304128691 to:0.04144968361085762 be:0.03678649830659911 a:0.03567265475622282 are:0.024010192142772595 was:0.023640698192814787 in:0.02253196769747116 as:0.019857634217770974 that:0.0189001298974032 been:0.018865173734913077 or:0.017220553480540208 is:0.015848726692350868 were:0.01539973287412323 by:0.01429486429501449 for:0.013126727876013272 which:0.013108770022031395 from:0.011369822717917977 :0.31950530621346396 +hundred:0.02334136986593815 up:0.005482494641173394 men:0.005366536521246011 Hundred:0.0047587970519216575 John:0.00441808156134956 William:0.004390720675819281 him:0.004016828614280843 ;:0.003997112205305733 due:0.003721199871732 in:0.0036582900032443304 time:0.003637206863828461 James:0.0035594902370151707 out:0.0034878448964120057 .:0.003467980723571515 1:0.0032804584819785204 day:0.0032444781513863933 ,:0.003058139385740603 :0.0030314555521939613 Robert:0.003005471634785646 :0.9060760430610768 +of:0.13084814232797154 in:0.0740836656586379 as:0.0625527229231004 with:0.059577596335708534 to:0.058433603729754965 is:0.05551580107464621 and:0.04946529489577619 was:0.04264000753602388 for:0.04009673021586375 by:0.037684080471064085 be:0.023941707008899252 on:0.02316059851167503 at:0.022644769441950232 such:0.019950936521181326 that:0.017856095877642635 like:0.017386655618315594 In:0.016902219705578994 from:0.016046571451088905 not:0.01205910100844263 :0.21815369968667797 +be:0.274453347194484 was:0.2147160156879637 been:0.1034197305965114 were:0.0640375613282238 is:0.052292600995765784 are:0.029784204886517982 being:0.029157092824872066 and:0.02641461724427923 had:0.024168073085398346 have:0.02368003361430703 has:0.01694564328866806 bo:0.015874491116056117 Is:0.00959231590422124 not:0.009591117869254415 well:0.007252706210871935 he:0.00631930950845396 so:0.006190098864079824 then:0.005636111816840105 ever:0.00402456718208278 :0.07545036078114825 +of:0.05338489750048598 the:0.050098316936184904 and:0.04699025766839654 a:0.04283318055525085 Notice:0.027509905467671805 to:0.026813709131698737 was:0.026466944727280128 Mr.:0.023039087618276322 .:0.021139532894357545 :0.016094774778932248 is:0.014457587502280458 be:0.013830527078901905 in:0.013209637629119206 I:0.012446000169466521 by:0.00987840114231572 for:0.009366616377037187 A:0.008702801984471925 he:0.00856463873169776 Mrs.:0.0079612100212513 :0.5662119720849229 +and:0.11717132479065025 of:0.05975776404107632 the:0.036894797744751906 be:0.030476697286946262 a:0.029689055699173163 in:0.026487129630288927 is:0.026201236531637237 was:0.025891673231283507 he:0.024166191619701714 I:0.02129953996234262 to:0.020689032195699227 they:0.017691857447921393 that:0.017526962289634983 it:0.017418942196368217 which:0.01639384581937364 as:0.015422020984154518 are:0.015414815296460722 or:0.015342212184098876 for:0.014934605060334663 :0.4501302959881019 +is:0.2023586879145295 are:0.14382488802915436 was:0.10625285315961623 be:0.07231871620641075 not:0.05009490827483406 were:0.043707383073789685 Is:0.04174066085455144 been:0.03694150055232121 and:0.03487822176404621 so:0.030720076306690745 much:0.02986799726849955 well:0.027492478441647945 very:0.023173483187226906 as:0.015624997534108183 being:0.015174418888255612 now:0.011333865013039502 more:0.010612652498179314 quite:0.01032405512304948 most:0.009937395400666528 :0.08262076050938282 +a:0.34224006187987266 the:0.15152804779285198 and:0.07596901037975919 his:0.057105844733310374 of:0.05162950345475875 or:0.047200398905312704 with:0.03440712873849893 in:0.022023246070338568 their:0.0215445526179823 her:0.020037644090376863 very:0.019198586327654605 The:0.014833635613397136 by:0.014453131203384404 have:0.01411183026988266 my:0.01252167088263746 is:0.011924928236214353 as:0.011639534787290675 such:0.010998347043261004 some:0.01099073932385087 :0.05464215764936451 +Mrs.:0.03667774611919542 and:0.034522865899230475 Mr.:0.031064385770478105 said:0.029410579669123672 .:0.028042394149210476 of:0.02497523219384531 :0.02057162193524686 the:0.020179532642806565 Dr.:0.017798722522884797 by:0.01428978119348843 S.:0.011087868179245303 ;:0.010846558206000794 Mr:0.009169248140464974 W.:0.008733426978247718 A:0.008604934276902091 boy.:0.008121481745348503 1:0.0078048272141898484 girl.:0.007532041853509122 Miss:0.007232614569022063 :0.6623341367415595 +to:0.24588258680531241 will:0.09238037076715472 would:0.08400346470216176 we:0.05618485301514755 shall:0.047360337613866085 I:0.04531924590891624 and:0.040018489763754286 should:0.0377532811849433 not:0.03710667712814514 they:0.03624140678895967 who:0.03606869718809687 you:0.03226959070169079 must:0.029649167466787137 We:0.02276868681822096 may:0.021837593107060304 might:0.01495639958877392 could:0.014045790475211947 They:0.011296694255811188 that:0.011294598574936641 :0.08256206814504911 +of:0.337062062658079 and:0.0776019417643837 that:0.06320442787234178 to:0.05610460528636926 for:0.0432059798892398 in:0.0340742794748776 with:0.029751734738653425 but:0.023381797522451595 was:0.02172253864775762 as:0.020635259240278182 is:0.02040649056325578 if:0.01985318696999036 when:0.019302511692534195 all:0.01901780334911477 by:0.017720681207979594 which:0.017302920412874886 are:0.011463942656326451 If:0.01029645477663118 be:0.009431385328967704 :0.14745999594789314 +of:0.28754322582219305 to:0.08418304408209556 in:0.08248156957977681 and:0.07901264739750914 for:0.055112517346715656 by:0.04725239186848717 with:0.04697724686744218 that:0.045775507169261036 at:0.031374984742676325 on:0.030016702020216425 from:0.02641168936145204 all:0.020656694280748372 In:0.014468749451563881 upon:0.014275608752902015 under:0.011213125497443922 as:0.01049894166271862 up:0.008267994049836337 or:0.008211647095828941 over:0.007276923604750929 :0.08798878934638156 +the:0.18598106690327648 of:0.1278721125868488 to:0.06128463098082007 and:0.04541042529401242 in:0.03371947029008229 a:0.030246744091988274 from:0.020926557271033066 that:0.020634870012514402 by:0.017972180154619374 The:0.016360587278243178 for:0.015802073457780157 :0.015328581628918527 be-:0.015081302673949727 con-:0.014905834671958227 which:0.014304620438870127 on:0.01401529304189276 or:0.011122038955653142 an:0.01071259617597644 In:0.010123249273211314 :0.3171957648183512 +mortgage,:0.061775792622098605 person:0.037430946809143495 mortgage:0.021886447561881635 one:0.02117739107767436 there:0.01993226338927051 on:0.017387329843599593 law:0.016739548771831057 or:0.015671133203875597 more:0.015625638317778502 whether:0.01454520251850112 and:0.012223788235355656 State:0.012210919094014823 little:0.012205506142643024 two:0.011936986285469912 state:0.01152265630526578 them,:0.009357420556485727 States,:0.009177354614189236 any:0.009060721904872154 cause,:0.009025393029888196 :0.6601075597161611 +It:0.16483324464261526 there:0.15137929784652215 it:0.1389856574030547 There:0.07635769296985051 This:0.047005115735994085 which:0.03400493914593651 he:0.03276953491232582 that:0.032534901302704186 this:0.027705240540618296 He:0.025980981107979893 and:0.02571984886254885 who:0.015928391857077187 Here:0.008658225427457844 That:0.0071330239854848695 she:0.007117899171284279 one:0.006746549293447637 She:0.006029619888080546 man:0.005607440676998042 what:0.0055587671977417805 :0.17894362803227754 +the:0.5986699249885943 a:0.08373984948384579 The:0.04262143741045824 tho:0.041744020836314996 in:0.026302602433747376 and:0.01684396626492886 tbe:0.016658902350496177 his:0.01326726935101302 of:0.011310362784817826 In:0.00963544459758539 this:0.00959208263329505 that:0.007325238245466425 full:0.006844014594676104 first:0.006002597594954931 by:0.0053748038792935686 long:0.00477179760805799 present:0.004294852809584756 said:0.004133962860902756 their:0.0038308840537404913 :0.086035985218226 +did:0.23046522789970827 do:0.2282339303304895 could:0.1438006212472433 does:0.11306010888110492 would:0.06390666973371635 will:0.059379860245372326 can:0.019636706026621882 should:0.017894577105094223 and:0.014948395426482877 Do:0.011009932690545343 shall:0.010731860728878703 if:0.010721817046281107 docs:0.01055062117203071 may:0.009951557897250884 is:0.007436850214283558 but:0.007331402416795155 must:0.007018598770258417 was:0.0054389182624071135 need:0.005237660906996637 :0.022244682998438705 +the:0.5808154600182612 The:0.049278699184881945 Assistant:0.044716149714983305 and:0.036899424765566714 tho:0.03175470751659593 by:0.028740524832252812 of:0.020726742511904667 tbe:0.01491737485076764 in:0.009475884189036235 a:0.007941403162685967 that:0.007857675221996076 as:0.0071910473849970255 for:0.00699773495148897 said:0.006973937599821558 on:0.006760029942192008 or:0.0056411101210412425 to:0.00551433729266894 an:0.004099596068726709 upon:0.003610088125026388 :0.1190880725451047 +of:0.11890760156622374 to:0.10515546484507035 and:0.09966775669044321 know:0.09916047230941494 is:0.04081773155107851 see:0.03988506816319032 for:0.03459159676013183 matter:0.03409923486508217 or:0.03385769816064252 with:0.03227529154095568 do:0.032024566528151645 in:0.02293036719825814 but:0.02066086905714758 by:0.017652423355126377 from:0.0171602538014642 knew:0.015398299501899403 some-:0.014824861704914889 as:0.01420278758312761 that:0.013816182396071837 :0.19191147242160506 +Golden:0.15590866684408547 Hell:0.13124549051273143 the:0.12481380107580572 at:0.09689044788068805 of:0.06540208334769369 and:0.024750337962584447 in:0.019788586269993923 to:0.019669223106478357 from:0.016176147338062826 :0.013955178371487888 said:0.012476127153208713 for:0.01100350471656544 that:0.009094145489144119 his:0.00904467741073227 Pacific:0.008479905767304867 a:0.008471287269653245 tho:0.0084320445149167 de-:0.006499563984477822 Block:0.00583640361323065 :0.25106237737115433 +and:0.17405374284764352 I:0.17355798643625975 he:0.10096671969867779 He:0.04108558214776158 that:0.0350596346361302 which:0.03470271157338172 it:0.033236179060501164 who:0.02866739034528769 she:0.02634950680977645 It:0.022764622821358493 then:0.02130172321666592 they:0.0207921027871879 but:0.016243347595065148 1:0.014753253707019536 we:0.012374725682680008 She:0.011580511630244626 This:0.011088751587312977 what:0.010569775233133492 They:0.00782661607732014 :0.20202511610659185 +of:0.11118349195747337 was:0.09180924246402736 is:0.07301500574146387 and:0.06433677888091949 are:0.03970406718288584 at:0.03314909568369672 were:0.029617918539133727 in:0.028923184066207017 for:0.02486674700998227 or:0.021984035224640396 to:0.019294646444796757 be:0.01786232813607653 by:0.01699086969067915 all:0.016419988921110535 only:0.015729545832485554 with:0.015697851535654478 that:0.014851577194750644 Is:0.013204674702337528 talk:0.012610190743393769 :0.337748760048285 +the:0.2310912079560191 and:0.11218497215725766 of:0.06821495781910282 his:0.06521627853566714 a:0.05028908615488077 to:0.04155471885787759 their:0.037887389697081705 no:0.02805083577156191 The:0.022157187507302556 our:0.021029907345822208 in-:0.01966252760329023 her:0.018408921126639406 for:0.01835337692022443 said:0.01827316222321416 my:0.018174922151623783 or:0.016572804157065985 this:0.014843060353329704 tho:0.01459989476224145 any:0.013955275576250996 :0.1684795133235464 +and:0.12127095085930678 the:0.08235450242689674 of:0.07362183101719282 to:0.04898584738684918 he:0.029955849614217756 be:0.029319836570587048 which:0.02813345043437027 that:0.023216276073486464 was:0.02092810142374602 a:0.02082910691870105 who:0.020718050761963758 in:0.02030431905802679 I:0.018804079403853317 is:0.016866803185103682 they:0.016360818749968694 not:0.016005285442125986 for:0.015057307822672074 or:0.01448630611791696 no:0.014177836233309345 :0.3676034404997053 +to:0.4342335737897143 and:0.1432336539479587 not:0.06946846913959057 will:0.0481997045783533 I:0.04467531223019812 would:0.020897596916346853 you:0.017092555818310564 or:0.01693741678220065 beg:0.016046117025339663 can:0.015583184571239927 that:0.013023466999906906 we:0.012745909121625688 could:0.009894299680235967 but:0.009302839578160716 only:0.007394585671571379 they:0.007129717106579896 may:0.00706949234033468 soon:0.007063302227269808 must:0.007052519449672934 :0.09195628302538941 +as:0.12542216479208007 that:0.12380467682790337 which:0.09264927194723747 and:0.08194597189022691 when:0.05410444667780598 what:0.0410067967653098 if:0.03975200346521199 where:0.03548899540584826 but:0.026939539419165357 for:0.01588589114658411 than:0.014292039793664578 If:0.013679681104997475 because:0.012576176147000653 whom:0.011534182498492952 before:0.011428790175794228 until:0.010714124163905436 or:0.010191815852027594 while:0.007898233239000168 so:0.0071752169253381905 :0.2625099817624054 +as:0.043520907913991436 and:0.03187145913399041 up:0.025828477299434542 came:0.02303082706124565 it:0.019429161979765 him:0.018392445103217702 went:0.018027593979141596 come:0.017888083226860828 according:0.0172463994313635 reference:0.016129533641311106 subject:0.015041548478529626 them:0.014924587837671765 go:0.014142780245611788 sent:0.014035482961063236 made:0.013970580638401143 back:0.013924015778379794 down:0.013539147946238108 feet:0.013437663894705569 entitled:0.013049108391730218 :0.641570195057347 +and:0.060190267410848354 as:0.03968030930628063 is:0.034394019539854555 him:0.027812565605090794 them:0.023263763179120586 up:0.02200956853419713 was:0.0220081661315126 right:0.019353583389433743 not:0.01917948243611876 made:0.018978243897671162 come:0.018876496303347614 able:0.018701233448476625 going:0.016517843953139336 order:0.015825714500845512 came:0.015609585194472518 way:0.014553763376497653 seemed:0.014433113018150097 down:0.014249128093130886 time:0.01396412488565191 :0.5693990277961595 +at:0.2054757396663485 of:0.19318684079467788 about:0.12180807819153765 to:0.09545784249924368 for:0.03254291933027965 and:0.029392794136074863 No.:0.020553146995706737 from:0.020437208111002907 than:0.020137764819101827 @:0.019246818378585162 or:0.01917694412442867 in:0.01690758150501205 with:0.014085086804206772 by:0.013978620080924292 was:0.011257447157181029 containing:0.008988946004802866 exceed:0.007950132723136159 About:0.007644583617933257 nearly:0.0068532466230729235 :0.13391825843674315 +:0.12176032848098163 it.:0.014001230403504558 them.:0.0138810780577926 .:0.011285565526133856 time.:0.009243260934455495 country.:0.009052843337211347 day.:0.0083777751793502 year.:0.0074344564281908715 him.:0.00687183187468483 work.:0.006868221916807948 years.:0.005905988193350548 city.:0.005099497269615618 world.:0.00483196921651863 night.:0.004472595166745821 water.:0.004388650204775767 people.:0.004248337231847888 States.:0.003953838733579534 made.:0.0038462735099905753 place.:0.0038125234212837123 :0.7496637349131785 +of:0.19649385586801793 in:0.14570707898509058 to:0.13981118327504774 and:0.05318983602378627 with:0.05153828678096707 for:0.04883367686209307 at:0.0290254321455478 by:0.028624280984144355 In:0.02131490178309888 from:0.017972317650678773 on:0.016204213362253476 that:0.015001977806294975 or:0.014039076849439149 all:0.013848537823246661 give:0.0117746193198298 without:0.01127736880269072 make:0.010412610843891413 the:0.00901434732746645 not:0.00885992847512926 :0.1560564690312856 +and:0.16333559602978695 is:0.09881062835510808 was:0.09501625299549463 not:0.08722366278365942 be:0.08525769055185958 been:0.06012019042156125 are:0.05334089678344363 to:0.03759549760165295 have:0.03375947586525759 were:0.03258723610160064 had:0.02847476916200977 a:0.027372308523797146 no:0.021178448918529567 as:0.018881744041214545 the:0.018380246091967367 that:0.017871967296216464 they:0.017454891625400534 or:0.017363755051848912 of:0.017335176778647942 :0.06763956502094304 +is:0.13221726999667383 was:0.10287312361404381 and:0.09076131746961617 are:0.059188740013176616 not:0.056595274789366684 or:0.055936678125332866 be:0.05128599379059598 been:0.036842540780511926 were:0.026678348537493162 have:0.0266569283250598 of:0.02519034517105881 do:0.021885355341087584 Is:0.021270862011796305 to:0.017828788338862547 had:0.0172740911323962 with:0.01667502855216472 has:0.01664411976880797 that:0.014919320800659566 for:0.014745924850885666 :0.19352994859040978 +the:0.057198700483915586 of:0.05361166922520397 and:0.04512038687547455 in:0.03474588415437971 to:0.022362903500670155 or:0.017327934177349295 land:0.017039981655166868 lot:0.015830240829264826 United:0.012112906439349687 from:0.01030171737118944 that:0.009567909799257845 section:0.00905430638865623 :0.008845460659092929 .:0.00873341339536841 In:0.008582567050187716 by:0.008468715115662174 as:0.007373063271683609 sys-:0.00726192558349506 :0.0068741712800248975 :0.6385861427446071 +the:0.21622991214647183 and:0.17365676222606571 of:0.16812448638958383 in:0.05528902476939856 from:0.0355771116144751 with:0.03280877870201157 a:0.031438409151056855 for:0.02481006196333635 to:0.02412548017728599 The:0.01914292641442364 gold,:0.017138806522572842 tho:0.013662999358640108 all:0.013305838013741217 or:0.012872808482783483 In:0.012410855183283137 free:0.010693522980097818 two:0.010574682639815765 on:0.007348420818735572 through:0.007284325719468072 :0.11250478672675257 +the:0.35130942610188165 of:0.04862722115914258 and:0.04029641158824555 our:0.03729251994714664 The:0.03359886337125718 other:0.030045955546475104 tho:0.028854813511718147 a:0.028590848356606448 rural:0.02489649805475247 to:0.021554679398017848 that:0.019015686028982258 their:0.015774241757343543 all:0.015458691042486195 or:0.0138463348537004 such:0.013279218728943174 each:0.013155933194903949 these:0.013141628128904985 tbe:0.013106907872065787 several:0.012491734244959349 :0.22466238711246672 +up:0.010917334766201568 street:0.010541235689205551 ;:0.009046680897346941 in:0.008745561169623106 ,:0.007698314429218751 feet,:0.006500850929060549 .:0.006261679716321377 street,:0.006107494008680052 land:0.005228003392733468 house:0.005199095929034979 :0.00507619930518295 1:0.004834958156670924 city:0.004514529082733289 him:0.004439141695120133 Mr.:0.004394720814784414 life:0.004378378334618652 right:0.004373170609139528 States:0.004125110947241757 work:0.004010238518854865 :0.8826073016082272 +of:0.12793751141949922 the:0.11731959672071635 and:0.06268777529289547 to:0.05176411156330282 in:0.05153021034813626 for:0.0513631817128435 by:0.02627105358378756 a:0.022123540724777728 that:0.021514284775954556 or:0.02009720059689719 which:0.01729343353469384 be:0.015092536783863356 :0.014866768551035912 is:0.014516330078689884 from:0.014155823392568743 on:0.013613989904914123 In:0.01360686649962188 at:0.012984245554409008 with:0.012887471456839349 :0.3173740675045532 +and:0.05917734571267282 closing:0.04405297983259551 was:0.026323119710997635 valued:0.021005792503071843 held:0.01922887441606307 sold:0.018225285914023 2:0.017782437938973866 is:0.017552850459549643 arrived:0.01662711812741857 be:0.01645048243064216 are:0.016339673120917095 White:0.01533836240735085 not:0.015154252504664439 as:0.012706467917481812 that:0.012063629264509927 estimated:0.011864260728812118 Dated:0.0116063700277585 or:0.011444173640079769 made:0.010438189210536826 :0.6256183341318805 +is:0.13273442315113998 be:0.12796468107158693 of:0.09802561036970772 was:0.08624087036913532 and:0.0663948213781231 to:0.05064898666731743 with:0.04404078726845341 in:0.04315642441020296 on:0.0340254073886531 that:0.029646996922955884 for:0.025401644492671897 are:0.025183422640132586 all:0.02042105220604342 by:0.01964958191827302 been:0.018904882169071956 Is:0.0168972652462894 from:0.01604674389088111 have:0.015936223728040263 as:0.013462148674144876 :0.11421802603717567 +of:0.3842275836014963 in:0.11139101426739272 to:0.07351764998204911 on:0.07164891108886218 by:0.04063177816777669 from:0.03287419968971937 and:0.026960232649771997 across:0.02238147537295169 that:0.022277975761436097 In:0.02175206716971335 for:0.020015570018470253 along:0.018113110243141457 between:0.01500183495354541 with:0.01328196200668478 into:0.0130726131176663 at:0.012770835989246368 over:0.011332489860264442 down:0.010148966277693298 within:0.007516244919548141 :0.07008348486257009 +mortgages,:0.17939142004897013 Mortgages,:0.11971330832046755 Mortgages:0.08885959572107194 mortgages:0.07826516292309804 gages,:0.029385200756920863 closing:0.02615572863930632 Book:0.02542567982303208 and:0.023498542316706186 2:0.021962096998107868 gages:0.020669732064530166 book:0.01600983572230319 held:0.015012241324779263 feet:0.014169302427803752 sold:0.01232507511074435 3:0.011450579511687367 place:0.009534229541545368 Dated:0.008314948543556045 was:0.007697430394186511 day:0.007417678403285244 :0.28374221140789774 +to:0.39416150131126054 not:0.08952615886173207 and:0.06601776694642104 I:0.058904690410203554 will:0.049903470852879134 would:0.04096003260841706 you:0.027336704458913407 should:0.025284921132253873 can:0.02116125668731072 may:0.021056637531311286 who:0.018836097791375087 cannot:0.017337393045689715 we:0.016884897997630537 shall:0.015402081817437189 they:0.012806121600401633 must:0.010068661944109847 could:0.00937803727984805 or:0.00733603078452295 never:0.007135879426076023 :0.08950165751220622 +the:0.3760620545385879 a:0.21090486617020995 The:0.041574063537521216 of:0.040470096168496124 an:0.03956072226214782 and:0.028175999226453065 in:0.023578358532400513 tho:0.02108346793995372 at:0.019464677767593665 for:0.015471645754021709 to:0.013319331053027458 his:0.011860695769760565 this:0.010155606812784622 tbe:0.009662231293815857 A:0.00728554113534032 on:0.007001438927939153 or:0.006634567132470504 with:0.006305901277627458 In:0.006151805596710884 :0.10427692910313753 +It:0.15521460383102267 it:0.1548083463021578 there:0.10564460817313052 There:0.0696691828642104 which:0.05080882387865135 that:0.0432721880535362 This:0.027275821013412613 and:0.02716494852242842 he:0.026712848780563302 this:0.025169322068786783 who:0.016503275064162003 He:0.01561947147273502 one:0.01205704001884392 what:0.010877606439305519 she:0.008267448846792992 That:0.0064404951220362735 man:0.005478754602285829 She:0.005291482579699081 but:0.0045006629865876596 :0.22822306937965162 +of:0.2692678579332286 to:0.1374391782033177 in:0.12010300760063237 on:0.08544627701227758 from:0.0607529089745546 at:0.039882967362660914 by:0.03384175376423598 for:0.029072740447054855 with:0.026365675119366206 and:0.024666868992122407 In:0.02383188671190229 that:0.01954415586792805 into:0.016719201825763384 upon:0.013989944069750222 through:0.012523037094283427 over:0.009715069813280325 along:0.006724887930188033 all:0.005918917856323951 On:0.005752963346281816 :0.057440700074847355 +I:0.12877740740234123 we:0.09182446445073043 who:0.07378644322326011 it:0.06969229899383983 he:0.056336251168843526 and:0.05096829208623482 which:0.05002238966822454 they:0.04971401870845408 you:0.03185662549212231 that:0.02365133487003755 It:0.02254453593285285 person:0.0202559225449875 We:0.019284557908412856 act:0.017262694296978638 or:0.016079529217251844 as:0.013781445231470678 corporation:0.010623975741038065 law:0.010217923315577781 but:0.009785660481362113 :0.23253422926597925 +the:0.32861969256062273 a:0.2601791227145693 The:0.062240054501890886 his:0.05555174482417765 of:0.03197689345883748 tho:0.02331636378301116 and:0.017785318911860182 old:0.015082643935478441 young:0.012501361924643612 to:0.011786698476966739 my:0.01115469271576187 your:0.01074836584811254 A:0.010694109357419847 other:0.010691386421457595 for:0.010690621766022335 our:0.009784165304034084 her:0.009359250432175325 in:0.009031200313268286 per:0.00865327396049405 :0.08915303878919592 +Notice:0.42028419492633484 notice:0.1368693676737673 it:0.049286638954616574 It:0.0459681783147667 that:0.0257351498677468 which:0.024379250325281484 reference:0.0199515821436504 there:0.01923250401326035 he:0.01709251352682523 and:0.014526065991369326 He:0.010674425457070397 There:0.009358478756815126 This:0.007952069781526476 this:0.006931859442703124 what:0.005977676641625522 who:0.005647142416117256 man:0.005473358731125218 That:0.004074524953603554 she:0.003766461679441719 :0.16581855640235257 +time:0.06897584231144914 as:0.054868593356789105 and:0.05463827674285808 able:0.05216837947151473 is:0.05036325829096879 him:0.047162420633526325 enough:0.03878119788195351 was:0.03683822552509025 order:0.036764297245508726 not:0.031484849909383224 right:0.027820567807597788 began:0.02669464031615159 unable:0.0254977111023912 necessary:0.025296079914192922 me:0.02526789888921272 them:0.024161811734534803 going:0.024121246207800935 ready:0.020058702699537554 want:0.018586764899365324 :0.3094492350601733 +House:0.023804960035361557 Mayor:0.01934594438328006 hundred:0.017707613602466126 city:0.007528672344116412 John:0.006243390122671821 William:0.006005177801005604 land:0.005887055427724147 .:0.0057907605912336235 Senators:0.005635680313772645 1:0.005401037572561957 and:0.005372492905461834 ;:0.005098888185024376 James:0.004642285292500755 time:0.00450244459710439 north:0.004197636416775042 in:0.004155404555851232 feet:0.004123576034419278 two:0.00403805181810656 States:0.004036526804823594 :0.855482401195739 +the:0.5186807053281464 in:0.06183731865626211 a:0.05713147109108582 The:0.0525531603463748 of:0.03690683027726225 tho:0.03360299798600558 and:0.030311936241360634 In:0.019725830590532418 or:0.018983638522286527 tbe:0.015218102412698973 to:0.013852434638305735 his:0.013096961724966709 great:0.012372035482262808 that:0.011713071497109062 their:0.010229473889045895 this:0.006690922469362946 any:0.0059166906349252075 first:0.005095666537812718 our:0.005040717859025897 :0.07004003381516757 +at:0.209648122800989 the:0.14572223712281016 a:0.1374041590997121 any:0.09500196028125968 of:0.07789665581889886 in:0.0396077995856901 no:0.03610280439158706 At:0.028737717921501375 and:0.01855514991994619 by:0.0184883609221468 that:0.01555000053640945 this:0.014975604328877788 every:0.014113816896997844 his:0.013631808405683482 one:0.01211302109471479 an:0.01170055064343033 each:0.011265520928349508 tho:0.010333038195979664 In:0.009796833778179975 :0.07835483732683585 +and:0.05852508406912081 right:0.0551024526030134 time:0.04710688750894935 him:0.0436100253466439 order:0.042792375631249255 able:0.03984786913096979 is:0.03505669164328382 necessary:0.034327048802913776 them:0.03315419678685088 enough:0.03136503354059629 made:0.030924785173390756 as:0.02774180554544123 began:0.02441372700724619 not:0.023650299728325323 want:0.023342975525091427 wish:0.021797342284983715 was:0.020853916091983383 me:0.020513149486724155 required:0.02040995092786755 :0.36446438316535495 +;:0.021258909754392104 it,:0.017849239057097514 here:0.013380394615109129 him,:0.0131085679066358 them,:0.010439039545757263 him:0.008901070126744166 up:0.008897793963204228 time,:0.008541972451766883 in:0.007558355642369932 years,:0.006711388312844546 up,:0.006387420965244681 it:0.00581613746602584 and:0.005801081453851895 country,:0.0057087804180745 ,:0.005599624973279854 man,:0.005444530802986974 out,:0.005210256429661834 day,:0.0049432424826446495 them:0.004891578008701529 :0.8325506156236068 +the:0.1433247326751786 of:0.13359291417471114 and:0.05424000068778343 as:0.03744560337754987 that:0.03315571995082284 in:0.03181119869395388 to:0.029004773540863376 a:0.02266918288505355 for:0.021278978734327894 or:0.01960915659462316 The:0.016997400942895976 by:0.016773608525459005 an:0.01350704699760554 :0.012291946042039635 with:0.010456077687108687 which:0.009290808643579836 tho:0.008647053517799317 from:0.008263759467384908 In:0.008215946022296857 :0.36842409083896244 +and:0.13404445228738157 is:0.12851216551274383 was:0.07693787663427355 be:0.06034365225640336 have:0.05781239005184685 had:0.05086185396408828 with:0.05044253624970017 that:0.039330518736702194 has:0.03466813093693334 of:0.03455857672830672 are:0.02973374109099734 by:0.027934189922526446 for:0.025950490337462443 in:0.023394183580442846 but:0.023230434627675222 or:0.01995155222664151 Is:0.019493063128031368 were:0.017100460880503085 to:0.016271363898338692 :0.1284283669490012 +as:0.21666209373405598 is:0.08641272228534326 was:0.06980784182302735 are:0.055529230173263215 be:0.05301391380849942 of:0.04753962175869263 and:0.04648199309658634 in:0.029754655881469937 for:0.029668312395484116 were:0.026381586101650853 that:0.024447140805906497 been:0.023861159674397534 not:0.022853885030963618 to:0.02197706458811012 by:0.0189484583497483 have:0.018698495729104522 Is:0.01717995390546203 As:0.015924246993680394 all:0.015500341312279346 :0.15835728255227452 +to:0.23649071716067452 will:0.15297502748488018 not:0.11234757522477075 would:0.06762582501451017 shall:0.06277627008970982 must:0.04658503664141211 and:0.046572992791894446 may:0.04235717084939996 should:0.031227909084260503 they:0.030934728517217493 we:0.027459556328839424 I:0.021935139357003093 can:0.01896061044472668 could:0.015789162478231745 who:0.013581104995100821 might:0.0117645994975859 which:0.009738148392460285 We:0.009168354012753703 you:0.008111673036408178 :0.0325983985981602 +an:0.2854673317667075 to:0.1216769015479382 no:0.08034476581629658 the:0.06699704713657542 any:0.06374908825968838 will:0.05521206881277844 not:0.054225591523739396 would:0.02933678960806768 a:0.020193620180022256 An:0.019618348649108976 this:0.017430600635086946 and:0.016387060948770068 we:0.016110610192751926 sufficient:0.012645965852887138 only:0.011784583558757987 may:0.011628176227727174 or:0.011246353791693902 you:0.010897486056601492 good:0.009835955753831328 :0.08421165368096917 +of:0.2289599558727295 that:0.09570496545900727 in:0.09387171667160475 to:0.08615486642418724 for:0.05046682158600607 under:0.05042885966766542 any:0.04712970967093613 and:0.047010727674751986 by:0.042270551263630045 with:0.03640600843117355 all:0.02120925925241494 upon:0.020901496770670783 In:0.019107073215615878 or:0.015784285143671806 If:0.014880667217743226 which:0.014065994532497125 no:0.01400521155064031 make:0.013487866897912376 if:0.013333188809250135 :0.07382077388789149 +more:0.3025581312188659 less:0.11361229550157692 better:0.055726483044737526 greater:0.04783512755252839 rather:0.04774900978695876 worse:0.025962610454381 larger:0.024338933013280092 higher:0.024145264729856467 other:0.023583406218844298 lower:0.01740816105916675 faster:0.013320113341121102 and:0.011850589620021735 longer:0.010168519541118245 More:0.009644876926096519 smaller:0.00828514368718763 stronger:0.007941849956989464 moro:0.006774069717768751 earlier:0.006379423643939423 cheaper:0.006312927131776862 :0.23540306385378426 +it:0.10042645326670457 and:0.07448793043621132 they:0.06745538804156191 which:0.05610372715754102 he:0.05330802339860615 It:0.04965253849879704 that:0.04316270821032778 you:0.04059136714561362 I:0.034792155959010064 who:0.026123558815079908 we:0.02442900487769299 as:0.013553445253339248 she:0.011719227724809902 He:0.011384828705757256 They:0.010300763918344088 this:0.008245251916723852 the:0.008165201012513676 1:0.0074978238808858086 there:0.007243600680898497 :0.3503570010995813 +and:0.10360099485186022 It:0.052116027750212165 it:0.04403482446415419 the:0.032280135028030794 that:0.02954938094723143 he:0.02725814491752782 :0.024787493929350524 which:0.01970242133083346 to:0.017206148570132227 or:0.016946081564513712 who:0.016555949780682862 I:0.01576500205416869 there:0.01280259346854965 this:0.011454051015308296 of:0.010806016243172104 1:0.010587675436863928 time:0.009423592905193233 they:0.009214365270182772 she:0.008532518780065876 :0.526376581691966 +the:0.17954399495868845 of:0.07619612130677138 and:0.05342825829032738 a:0.05338377332215593 in:0.03912378531625406 to:0.03801109562508443 by:0.028205602024485632 that:0.021413321194773276 The:0.019488007268002084 an:0.01718655765985149 on:0.015494931799700056 from:0.014427908234369862 at:0.013488677360733144 tho:0.013162499140720615 be-:0.012404921748437738 In:0.012309161073502094 with:0.012256934320615585 be:0.011671234340987853 which:0.011029030960917178 :0.35677418405362177 +and:0.08885550734986039 of:0.05929345637638865 the:0.05839150176961073 to:0.03699529538983437 a:0.03295663747474055 as:0.02478950243915437 is:0.020616382703940166 that:0.017707999850356867 in:0.01721374206535299 be:0.01681665059934807 he:0.014831640721396705 was:0.014796610909916862 an:0.014720542821410127 I:0.01337766004205944 or:0.01284858751922419 :0.011129264052287556 so:0.010496205892530475 will:0.01015242858826353 for:0.010101995053753985 :0.51290838838057 +the:0.13885095826198593 of:0.07049844879028173 and:0.04498742146077478 to:0.04406295242403697 be:0.03219986589363634 was:0.026575380209838708 a:0.025081551554322713 in:0.023853901458457658 Mr.:0.02216273152516685 for:0.02089086498481045 is:0.01983159021645527 his:0.01857796933096173 or:0.017672597932004458 are:0.015517067929858751 been:0.01546034643264642 re-:0.014857077893744717 The:0.014602145508607113 he:0.014542907723915505 that:0.013989121765298018 :0.4047850987031959 +the:0.3876400990589088 a:0.14085439068286587 an:0.04069034427153935 and:0.03467533813563589 of:0.030843617126912234 The:0.030186388032466472 tho:0.02056604014765288 per:0.01387301814151893 A:0.013278473102902706 tbe:0.00981684844805936 by:0.009799272744195975 first:0.0095477796253535 in:0.008263059894378469 great:0.007410579933453065 on:0.007087407825476471 his:0.006944892589757386 .:0.00524884306482792 old:0.0050838201809025796 young:0.0050556495780007425 :0.21213413741519144 +of:0.15636961300297686 a:0.13496219798689368 the:0.11618590437162363 in:0.054761646521910665 with:0.05466778314305835 and:0.053771111977881966 to:0.032262678127792106 one:0.029881789777186644 by:0.02348849271333697 his:0.019801914324595764 as:0.019127432441834142 for:0.01620405336811012 be:0.01591575088944736 some:0.01537642578053573 more:0.013583975146811533 her:0.012344914358391856 was:0.011836588927773917 from:0.010543291466913702 are:0.00972676723469992 :0.19818766843822505 +in:0.2766851336620594 of:0.09047077628763846 to:0.06537783298195751 with:0.06056737650910379 In:0.05363051566824738 by:0.04647162483143063 on:0.04111469314150149 from:0.030291232399736124 for:0.026385274719700626 and:0.026077490176723134 upon:0.024961349095544417 at:0.022277893890092625 through:0.014043416588452866 after:0.013034112209459972 during:0.008533245485752846 over:0.007006141240798215 that:0.005194750185290859 iu:0.005106468487808138 into:0.005058273697313936 :0.17671239874138758 +and:0.12529205779943467 as:0.08085792614961007 that:0.054261544088217775 which:0.04032738664608163 when:0.0387239108676567 but:0.0234158516917307 :0.018934891489008187 so:0.016730299933290643 time:0.014853664198848968 of:0.01412033162214028 if:0.013422174624246335 As:0.012513563071086116 was:0.011550253773213387 When:0.01107777530682466 to:0.010793451271471735 while:0.009594303505494384 what:0.009526500933491236 Then:0.00916968046855785 it:0.0090912827889596 :0.4747431497706351 +well:0.0783261505813394 known:0.07715919941364807 such:0.05477142900040686 and:0.04863188910629108 far:0.0445482759728691 soon:0.03102312685208889 is:0.028257952691436966 just:0.028005499533101993 was:0.022532512345363628 be:0.022395863339445075 much:0.020508662953047308 regarded:0.01823330307450135 it:0.017273059614160098 are:0.016747984622291417 described:0.015259584918361666 long:0.012277346915599112 not:0.011208503916372204 them:0.011089145850343493 him:0.010809593852119817 :0.42994091544721247 +the:0.3852114784872452 of:0.1223403024162181 a:0.09599143570022389 civil:0.04352821231906221 this:0.04072355875498555 to:0.03493959507664671 tho:0.03046374403131633 The:0.02494175143399643 for:0.021252746866933136 in:0.02043840499782544 and:0.018454687798495233 by:0.015166082369401349 his:0.014054650087769616 their:0.013629461803626685 Civil:0.01322097004574878 or:0.01202456662950374 with:0.01188775214860161 that:0.011203196633374626 tbe:0.009943663085058056 :0.059583739313967335 +and:0.1560850319857924 fact:0.06282556919939405 say:0.04106633478243641 know:0.03237732057433927 is:0.024769464928102048 said:0.024551945778497272 believe:0.02433970734738431 show:0.02121076067156275 so:0.020005603613608255 of:0.019802923379741013 see:0.019565432985064267 but:0.018203015678804377 all:0.01775412073556209 found:0.017093616402200064 says:0.01657887054452122 thought:0.01616982131588546 in:0.015308414192693454 to:0.014568079718514738 think:0.014005889653616377 :0.42271807651228016 +there-:0.05063533034237896 disposed:0.03235537135864229 that:0.0219767128456331 complained:0.019897655728459893 and:0.019377524020250766 made:0.019291078138060757 time:0.01660164478077406 there­:0.016447353897435783 out:0.016033568420515464 heard:0.014221073832702338 place:0.011488218025407067 care:0.01018572674329088 interest:0.008851685786612608 know:0.008095966637934408 sum:0.00739923961487971 thought:0.00720669555748343 think:0.007183848461731223 dispose:0.00712335336895884 day:0.0070024636029005684 :0.6976254888359479 +the:0.7583477290649377 The:0.1292930031940998 tho:0.04571443193320953 tbe:0.017190455711643064 and:0.009501248596785552 Tho:0.005073671985653695 of:0.003845531299253643 tlie:0.003087368906325161 Tbe:0.002617382275304511 our:0.0023262216708260825 an:0.001904716498113404 ihe:0.0016489813817163648 in:0.0015495600250603706 tha:0.0014682787749986654 a:0.0014136474899587772 from:0.0013768073977168352 tne:0.0012357062542310328 "The:0.0011994775822549485 Ihe:0.0011857938956438534 :0.009019986062266875 +at:0.6725570152688358 about:0.10458382295987635 At:0.047334692766199254 About:0.02651178716471967 of:0.024592737374011516 and:0.017628039054543684 to:0.012667552819971058 for:0.010302169033994318 within:0.006685480092829351 than:0.006616940077121949 until:0.0063920910075545 in:0.004918528461882985 or:0.004718201902407121 No.:0.0037882343044133575 nt:0.0032368048391754178 from:0.0030983266309205612 over:0.0029134426138649936 containing:0.002805777023176279 after:0.0026861039427720206 :0.034962252661729795 +to:0.11844596485236958 that:0.11186799166588013 the:0.08838144021752026 a:0.06159294907991403 one:0.05990229232665806 to-:0.059297246102660704 this:0.04628949936708298 next:0.041767730189837246 said:0.034505020355535924 per:0.02750431632672218 of:0.02546085156519704 and:0.023865476719664918 first:0.02384542219431591 same:0.020235920072167145 which:0.016699935934754065 following:0.016299164811573192 other:0.016244348831227516 every:0.016216495786673408 last:0.014100076822249709 :0.17647785677799602 +talking:0.07562500562756042 was:0.06019849018322721 came:0.055059864269908776 and:0.0487240782773912 him:0.048094029073797395 her:0.04507203028637642 go:0.043411074264620146 come:0.042896892940572855 for:0.04270005841382069 went:0.04013982933955156 in:0.03959519196621269 them:0.03519198203139189 is:0.03442046103538702 are:0.023996563701368778 get:0.0229492848357783 it:0.022472943061292362 or:0.020797688177672365 looked:0.019421165531600126 of:0.01878225015144419 :0.2594511168310256 +the:0.6948667057083803 The:0.06603484663225705 a:0.05724521825944571 tho:0.04958556527309892 tbe:0.016084693729326725 of:0.014624616718737054 our:0.013076099754949388 and:0.008867128221308387 in:0.00801659903000271 that:0.007457116718653441 their:0.006446910638442509 great:0.006042918255585236 this:0.005758609730809874 his:0.005681682275514266 its:0.004884943256037892 National:0.004787463324469879 said:0.0037660391591276383 A:0.0031518259244433396 Tho:0.0029903209376339447 :0.019630696451775745 +was:0.18827982417147426 be:0.15469578411057422 is:0.08742544108025352 been:0.08408245342385126 were:0.06293593862106829 are:0.046841764114796035 and:0.03910759834324445 have:0.036448547944640024 had:0.03508060667400957 he:0.029072357498374116 has:0.028805581160189952 being:0.023219746235167257 Is:0.016803829866823137 not:0.012132730476420633 bo:0.010989676034042157 I:0.010496083501980804 now:0.010349624406836542 so:0.010186011444544526 ever:0.00992721886340223 :0.10211918202830698 +the:0.6625204465688336 a:0.07441545296790393 tho:0.04275391937827022 The:0.03738579355791119 and:0.03426055851998841 tbe:0.016506030630037645 his:0.015204117406153567 great:0.009624398888784807 its:0.007814956957865132 our:0.007637160779501189 full:0.0070531013150371075 her:0.006802815187582442 their:0.006740002265117786 this:0.005974757064085131 A:0.0047319892765873605 or:0.003998064926440892 my:0.0037773635943532105 special:0.0037436419847602957 in:0.0037135401640528798 :0.044341888566733254 +is:0.18388484087233603 do:0.09529723083071798 are:0.09312228340204506 was:0.09218253271317854 and:0.07227807836075065 did:0.056653653740020626 does:0.055087637881632005 were:0.0299325704249986 Is:0.02889407766209068 will:0.027150697580515318 had:0.02543864376026913 have:0.024412989324537032 has:0.020426621068536033 could:0.018595205037555664 would:0.016439968872682245 but:0.016005600604887274 if:0.015745282159567473 am:0.009578024967132772 shall:0.00876488093571188 :0.10910917980083502 +of:0.17685517175572846 and:0.15807760870931165 in:0.14365516337166773 for:0.046434576560194854 In:0.03659484239281351 those:0.030455797656214378 that:0.028310585179604622 are:0.026240184799511578 by:0.023244530107939625 persons:0.020189683320701673 or:0.016162037319957523 the:0.015808091612985405 is:0.014896466020549821 while:0.014295554538728088 but:0.014149168495777333 to:0.011119111752362973 thus:0.010929180932524712 with:0.009529329334735622 now:0.008560361460601117 :0.19349255467808937 +the:0.2860019063692453 of:0.13903306439033425 in:0.054494268657673046 all:0.03871444779061554 their:0.0359902065875244 our:0.03062532564501143 for:0.028460861440379504 and:0.024440093403323863 on:0.023899805853101877 to:0.0208888623995748 his:0.02021439232790657 great:0.019558387490525544 at:0.0192073864315396 this:0.018430322863346327 a:0.0180553409260965 such:0.016029702835870633 from:0.014845657990286603 tho:0.014706295632716146 said:0.014642528869732389 :0.16076114209519565 +of:0.3222301720722049 in:0.13028394884370048 to:0.07483307163493944 In:0.04007050652378976 that:0.03625279610694092 for:0.035526800292580756 by:0.032351511242523286 and:0.03130478063956306 on:0.030381343395959676 with:0.027570482988076805 from:0.026624980699238167 at:0.026441504951881713 as:0.012554591280306577 upon:0.011703246759675802 all:0.009488555167831413 but:0.009184562114092546 do:0.008508308745653134 which:0.007343062797590127 is:0.00716475554226877 :0.11918101820118267 +per:0.6827101787666148 the:0.03900292232824883 and:0.021692282467832093 thence:0.006797586951453745 of:0.006104895274230707 to:0.005820337280541066 por:0.003573737456069524 a:0.0033898221052543628 :0.002898232465992883 The:0.0023197846289095226 or:0.0016329429680895162 for:0.0014148990329465316 by:0.0013582809816217953 .:0.0013370430393561895 was:0.0012016294421741231 tho:0.0011921578378305423 line:0.0011765192310002558 on:0.0010777316272868528 last:0.0010193439563407894 :0.21327967215820587 +is:0.1997120505125294 was:0.140551133098552 and:0.11995931750690038 are:0.07963300867032883 were:0.03138877785505268 be:0.029712075002460484 it:0.02577358562691496 Is:0.02510043753464547 of:0.021947377763612625 has:0.019900154776537747 had:0.019645244825034314 been:0.017760639628435715 in:0.017381523476118158 that:0.01710022865912155 have:0.016144572873878757 am:0.014726024897327656 on:0.013001689709850425 to:0.012089809121366748 now:0.01178349440565075 :0.1656888540556813 +:0.07161200850325572 the:0.03338529093580313 .:0.02396438594909131 A:0.010327289546122782 it.:0.01009365918665032 of:0.009870875601603329 follows::0.009455588514848155 and:0.008783953462839921 ::0.006189508431730515 him.:0.0053089502223508936 by:0.004809976197533909 them.:0.00459956815761452 &:0.004385340476781162 a:0.003921823508817025 to:0.003761397447509684 :0.0035751116628871308 I:0.0035671407054777365 The:0.0035021252054036967 Mrs.:0.003498369339463696 :0.7743876369442153 +a:0.44857946693415696 last:0.1474929934887333 the:0.10117609568405632 this:0.06044617320139499 past:0.04014944083468043 one:0.034935637846186675 next:0.03484614420474812 every:0.016519684916140375 A:0.013681787730155427 per:0.009077940848343496 each:0.0077964954051687645 that:0.005960741706852754 first:0.005746944314199334 One:0.005561005171482258 to:0.005303891762323563 The:0.004687420010006815 any:0.004423779063376133 tho:0.004384830324032578 same:0.003936576174517445 :0.04429295037944421 +and:0.09206802129366949 of:0.08258380130440457 the:0.07021461555283712 to:0.036171563001282214 a:0.026533195376098138 at:0.022217210178227007 for:0.017999844874735563 was:0.017399999547841855 in:0.015171624612865864 be:0.014558640905911586 is:0.013886459668752753 .:0.012413883694948431 as:0.01096625733047128 or:0.010092110780847366 by:0.008927976622748163 with:0.008923793930549163 :0.008560066893084197 this:0.008108516735428029 that:0.008058305337057373 :0.5141441123582399 +of:0.13084814232797154 in:0.0740836656586379 as:0.0625527229231004 with:0.059577596335708534 to:0.058433603729754965 is:0.05551580107464621 and:0.04946529489577619 was:0.04264000753602388 for:0.04009673021586375 by:0.037684080471064085 be:0.023941707008899252 on:0.02316059851167503 at:0.022644769441950232 such:0.019950936521181326 that:0.017856095877642635 like:0.017386655618315594 In:0.016902219705578994 from:0.016046571451088905 not:0.01205910100844263 :0.21815369968667797 +the:0.7298432643207058 at:0.08929575645117684 The:0.06050057750624765 tho:0.024434616424159245 At:0.021681036988911058 a:0.011533730429787363 tbe:0.01020099334140681 his:0.009696739764407374 its:0.004126317085926641 their:0.0036244849629331537 for:0.0035862935986021574 and:0.0033921545358225245 our:0.00337588566338538 Tho:0.002363099174986209 this:0.002144642494558352 my:0.0020754896031314803 an:0.0018790494263259856 tlie:0.0018179713599820386 of:0.0015785244809838849 :0.011849372386560085 +in:0.018988754314629253 highest:0.01752690657739548 largest:0.01666851046940789 it:0.015595252166385016 time:0.013121824841993033 ;:0.010437190910811316 made:0.009534884345121083 law:0.009202961575083136 him:0.008533177470336679 quiet:0.008423032941290006 any:0.00832119422766761 this:0.008126132462780102 best:0.00808633479417205 land:0.007904877530045405 dull:0.007834353037488834 of:0.007777301335514759 health:0.00690896136137884 other:0.006908229638165692 up:0.006868066107951065 :0.8022320538923827 +a:0.21211538322092624 the:0.19546933793587096 any:0.0837433263674313 that:0.06392555342730763 this:0.03900466156601476 every:0.03320437776626297 greater:0.0317962037514499 latter:0.02445227455811817 no:0.02194048191245243 first:0.02122680174566319 in:0.019145450321797694 and:0.01833696914000321 or:0.018018366847473998 large:0.01717044034959002 other:0.015696659241908387 early:0.015427668332717937 upper:0.014960184655747284 take:0.014893052348053108 as:0.0127088152040228 :0.12576399130718802 +and:0.0663961103993701 connected:0.046982469800287044 together:0.04599011672699183 connection:0.03609708764577173 do:0.02560939464473275 accordance:0.021574085265073314 acquainted:0.021344406982610663 it:0.021230170270124065 them:0.020252556000507866 him:0.019513691086290447 compared:0.01885350184527724 but:0.018561816493083166 charged:0.016648117515787843 familiar:0.015878220339387298 agree:0.015667681209695614 satisfied:0.015159663948744092 up:0.015158643284054557 deal:0.014714072838389885 contact:0.014632358828907894 :0.5287358348749126 +and:0.11596636508381766 to:0.05800194905274589 not:0.03897504975007816 would:0.030312265704601105 be:0.027106826799064013 that:0.026837849526988356 which:0.024858852148681505 it:0.02409940273262408 I:0.02288374725749744 was:0.022444635925924872 of:0.021474413571152907 will:0.021064563921603018 he:0.01998462472509813 there:0.018947132248354846 It:0.01843982028864863 who:0.018153365139480064 have:0.01764828170293575 the:0.01735028045797469 is:0.016750484005111674 :0.4377000899576172 +of:0.09129790931378902 the:0.07369883040827747 and:0.047842263382354346 in:0.04189055351593407 to:0.04045875475680249 a:0.03542341257202578 be:0.02020462051672066 for:0.01979292654746225 was:0.01760256398103379 at:0.017380150555488715 is:0.014984483003968216 with:0.014047653760730413 by:0.01374644383819499 :0.012670486581795598 In:0.01200961464556976 or:0.011563835749786333 from:0.011391516893522809 are:0.011273104484969465 that:0.010755276030689069 :0.4809655994608848 +the:0.11919516938815296 of:0.07230453158552728 and:0.05781056740443249 a:0.043018564803886335 to:0.031305092790907506 in:0.020848713353460488 at:0.014270110001066288 .:0.012526810245749479 :0.012413283442322082 for:0.011719122709941797 by:0.010808400946589808 or:0.010404172990115616 The:0.01003576004804544 with:0.009811868184449042 tho:0.009295902015355835 was:0.008924239095331684 that:0.008672304223433876 is:0.0085591147338948 be:0.008335143826716943 :0.5187411282106204 +there:0.5027272218136901 There:0.23980651904777775 It:0.05288726268108594 it:0.04843059614898324 he:0.023942530425776397 I:0.013539186011798668 He:0.011656678214715251 and:0.009709856952723675 thero:0.009574898850415707 which:0.009293150690546481 she:0.006977895610628698 that:0.006355627798710496 who:0.004822514169315582 This:0.004264190211003768 She:0.004070253842882888 Thero:0.003286773443840362 "There:0.0032026690237006907 this:0.0031406534097384886 what:0.002421888215079978 :0.038889633437585884 +of:0.3165787363319191 in:0.1603420459448621 the:0.06968840306871125 West:0.054713006794632695 said:0.04675471207207352 and:0.03880041099062158 by:0.036957334869588784 to:0.0329452198128432 In:0.03278977956091836 from:0.02547323555168145 at:0.02052389812116117 with:0.017548468870598268 for:0.016975088433028404 a:0.013303077872999326 between:0.010340128079018823 on:0.008159780097694165 South:0.0074917206688880356 East:0.007259258371941283 good:0.006074284452054916 :0.07628141003476355 +the:0.09684081064840576 and:0.06551335624548284 of:0.05146145169206151 from:0.049520598669154245 a:0.045427902131977435 to:0.0370403239153822 be:0.035669151526387034 was:0.030489628475080553 is:0.026635804908522978 in:0.023878514238638158 are:0.018513936943033917 not:0.017945708099223703 or:0.017556265685966497 been:0.014265228721347686 at:0.013857211504087178 he:0.013733215789660087 were:0.012396679125422956 I:0.012347944480187516 for:0.012197989992860347 :0.4037082772071174 +the:0.2080638343482261 of:0.16807339414872155 his:0.06969395044415261 and:0.06637881170512616 in:0.06107730469165688 their:0.04014195429949765 by:0.03352434346396368 to:0.02901265184070014 our:0.02843510372702914 other:0.021427455199789794 The:0.02122011631108909 with:0.02061593377350865 for:0.0204883091021703 its:0.02041960637488769 or:0.017679361574512175 all:0.01740010418083346 her:0.015723295749373124 from:0.015266634928410636 In:0.015159795116482197 :0.10919803901986898 +the:0.12866356134038048 and:0.05846894390785866 of:0.05777373530520542 Mr.:0.04990902630707039 The:0.03303982798165466 .:0.0290792706016376 a:0.024408332533639686 that:0.015680730752775856 :0.015439416555811863 was:0.01474981528998078 to:0.014090129455133842 Mrs.:0.013748346860464928 as:0.013614748688567468 for:0.01168000552374052 at:0.011355564003578076 W.:0.011301636742361974 tho:0.010701505979076905 by:0.010373323825716523 his:0.009446797525088181 :0.4654752808202562 +was:0.10746932387786848 had:0.10135302362432355 have:0.09506681388582493 be:0.07656356751945455 has:0.07351835686411413 he:0.05493183309415625 and:0.047668826384672194 I:0.04605266282117439 they:0.044160928833163166 were:0.03589299834750848 been:0.03204821812002084 is:0.027630516360626994 we:0.024427540762450045 who:0.02342239067865149 it:0.01926157279963654 which:0.018162489836290208 are:0.017324301533047953 never:0.014696179639466065 then:0.014311330205963231 :0.12503712481158652 +of:0.18631356668384974 on:0.10069544066616685 in:0.09199876366879223 for:0.07440003622559689 to:0.058993274809837626 and:0.05232588438233757 at:0.04718024108684188 In:0.042365491451149345 was:0.035779775822278585 from:0.029087511027657848 is:0.027739579856545023 with:0.026032161383189433 that:0.02551856327323951 by:0.02435871137725318 during:0.021546585889759082 after:0.01880976735072703 until:0.013888946785341085 as:0.012720851409557999 when:0.011194325724599849 :0.09805052112527923 +of:0.09129790931378902 the:0.07369883040827747 and:0.047842263382354346 in:0.04189055351593407 to:0.04045875475680249 a:0.03542341257202578 be:0.02020462051672066 for:0.01979292654746225 was:0.01760256398103379 at:0.017380150555488715 is:0.014984483003968216 with:0.014047653760730413 by:0.01374644383819499 :0.012670486581795598 In:0.01200961464556976 or:0.011563835749786333 from:0.011391516893522809 are:0.011273104484969465 that:0.010755276030689069 :0.4809655994608848 +New:0.38115723740614277 in:0.20714507999510642 of:0.14055432438756452 In:0.03271848398644835 and:0.02282638933959888 that:0.018859628708188813 for:0.016128634181987483 the:0.010074790013159233 to:0.006104409731016605 Now:0.004657400147202417 with:0.004629091100741668 if:0.004553379407262168 by:0.004501961994735899 but:0.00449198627383297 from:0.0037460646380368815 without:0.003422567482819427 at:0.0033056448903901886 :0.0032235500250048597 iu:0.002941483720716558 :0.12395789257004394 +of:0.2521310496698317 in:0.12187686142674727 to:0.07575126516534533 for:0.07225368476170255 and:0.053445952007905265 that:0.04423613700914031 on:0.037141677514769635 at:0.030623383348938292 from:0.0284145887320551 is:0.02659078550603394 with:0.02608935347325888 In:0.025930207623526595 by:0.025892951394763733 as:0.025123807798346186 all:0.02035828873766297 upon:0.013630297213456342 was:0.0132832491036549 be:0.0113083434473011 into:0.0097358345066847 :0.08518228155887526 +;:0.014408236769056539 dollars:0.014341085847622335 offense,:0.012744354818663681 and:0.01151295068357244 I:0.011193768909373479 it:0.011184475182276454 land:0.0099507282311988 law:0.008574011352313567 it,:0.00803487491751987 them,:0.0066111419662613965 nothing:0.006356339171158367 as:0.00619096577304649 made:0.006144050632260681 one:0.006078342163579308 1:0.005838804101338384 that:0.005828815216288189 men:0.0055093904710161725 States,:0.005456445169197149 time:0.005178930761658657 :0.8378622878625981 +the:0.11919516938815296 of:0.07230453158552728 and:0.05781056740443249 a:0.043018564803886335 to:0.031305092790907506 in:0.020848713353460488 at:0.014270110001066288 .:0.012526810245749479 :0.012413283442322082 for:0.011719122709941797 by:0.010808400946589808 or:0.010404172990115616 The:0.01003576004804544 with:0.009811868184449042 tho:0.009295902015355835 was:0.008924239095331684 that:0.008672304223433876 is:0.0085591147338948 be:0.008335143826716943 :0.5187411282106204 +out:0.05358459339471217 matter:0.05063960529351061 number:0.04598390162601733 kind:0.04069401787335154 place:0.040552993485876675 point:0.03836167244083627 purpose:0.033817399124151305 amount:0.02953554023854268 means:0.028857038262903638 full:0.024372269499688917 lack:0.023327180826370343 sort:0.022926171150063946 day:0.022859701937681314 board:0.02281006276173157 power:0.022278780639033838 right:0.021420044273231718 deal:0.019915491413505477 piece:0.01880102232972142 way:0.018434098192955252 :0.419828415236114 +let:0.3150245512888664 with:0.07036589610500628 for:0.05232613147552385 Let:0.04857746431590606 to:0.045473783886978425 make:0.03642729540905435 saw:0.033181796147635875 of:0.030386922656160834 made:0.028739558157699827 have:0.02820281719397678 see:0.019121341567606108 told:0.01858905514053465 asked:0.018279663972792574 by:0.017202617012468967 give:0.015972780673107697 upon:0.0127995645586153 gave:0.012505531805149704 heard:0.01212166092494875 had:0.011954480708225142 :0.17174708699974245 +and:0.1038359916841068 be:0.0918672266288584 he:0.08957747378450534 was:0.057017047165501815 had:0.05509412988234425 who:0.044946872934789175 have:0.044560973650331064 He:0.036871622996620335 were:0.028892480685915153 she:0.028795150091168016 is:0.02819738613947356 has:0.027447324827757285 are:0.02395533748523492 been:0.02390405024311463 I:0.021783277792631856 they:0.019895999536216732 it:0.017989947366403945 which:0.016387104595133775 They:0.01308052425170624 :0.2249000782581867 +the:0.33317051934973274 of:0.08493462129481273 other:0.04651966263024055 and:0.044584861954301336 The:0.04204172703656343 all:0.02899110996360513 his:0.021011610902623275 their:0.019188641880490312 these:0.018360636483242796 by:0.018155950123317784 that:0.016445633211090913 or:0.016137486786333692 those:0.015150960827423619 tho:0.015014956003964205 county:0.013938766307457919 our:0.01311542759842932 two:0.012733248317834919 naval:0.012119878457893201 for:0.010533943241044596 :0.21685035762959753 +of:0.09129790931378902 the:0.07369883040827747 and:0.047842263382354346 in:0.04189055351593407 to:0.04045875475680249 a:0.03542341257202578 be:0.02020462051672066 for:0.01979292654746225 was:0.01760256398103379 at:0.017380150555488715 is:0.014984483003968216 with:0.014047653760730413 by:0.01374644383819499 :0.012670486581795598 In:0.01200961464556976 or:0.011563835749786333 from:0.011391516893522809 are:0.011273104484969465 that:0.010755276030689069 :0.4809655994608848 +the:0.09766584762676846 and:0.08866153613723667 of:0.07573975963838823 to:0.06335451220335712 a:0.05098562544008078 in:0.03632725209467938 for:0.033358786465513594 that:0.020982067845987627 with:0.017126828788664464 at:0.014326386186174891 as:0.01321321715984714 their:0.01279848507669882 his:0.011589209389952664 or:0.011167652914093973 which:0.011112084933450176 :0.010956785880874861 will:0.010789565921033134 do:0.010483193131369133 any:0.01040447359391674 :0.39795672957191214 +of:0.21696848817661654 in:0.1485277791674681 to:0.07456602514206714 for:0.052391621719000386 at:0.04356706476423392 and:0.038986717990079925 on:0.037699773231576736 that:0.03509222896989833 with:0.030607261761194767 In:0.030135212001452003 from:0.026672083602987555 by:0.023837598718686823 as:0.01725149607245468 upon:0.012325155163134335 which:0.011784733565113847 or:0.011384321192753604 is:0.010905407983926281 make:0.009635536375999974 was:0.009040501385525673 :0.15762099301582938 +the:0.16915407395747029 of:0.08789466462957449 and:0.056789293297902436 The:0.035941521835332516 that:0.028592610377902953 in:0.021121215756637734 a:0.020282411764937072 :0.01662656190854881 Mr.:0.01621197983431674 tho:0.012529682055854217 his:0.01130660424580818 this:0.011295751537107938 for:0.0110552887729237 I:0.009780401823246297 to:0.009001086540917773 which:0.008937532964077372 as:0.008924674105173532 he:0.007979016570542119 .:0.007696560370676452 :0.4478790676510494 +in:0.14264769053473597 of:0.12188261348641104 to:0.09814266881860749 from:0.07600509814698202 on:0.06982431379940973 In:0.038630607765444885 and:0.03608834643586297 with:0.03506468002178728 at:0.030106561105976773 for:0.029929945242667497 by:0.02374553812514296 that:0.02217327772424366 into:0.017050890824690856 upon:0.016087871227035925 is:0.015694310346624583 before:0.013463472020158209 all:0.011877043806781548 about:0.011377809477743675 was:0.011137888390461809 :0.17806937269923112 +;:0.018609647724095582 up:0.01517762339515 them,:0.007770843085139402 it,:0.007577317004817694 in:0.007515780039806332 years,:0.007392815747483961 States,:0.007242628500493253 him,:0.006980548210693209 and:0.006708826709574082 here:0.006621983723072575 men:0.006541459580253914 time:0.006136371586258216 him:0.0058963543728981615 :0.005698696591522269 mortgage,:0.005416165417450788 them:0.005367693899494284 county,:0.005336664703716902 ,:0.00523830544223361 time,:0.0051854453947516276 :0.8565848288710941 +a:0.29376931970985265 the:0.1363473452139727 of:0.10238231449939078 this:0.055320738563934845 his:0.05306244124008641 any:0.04738631712692994 other:0.03213493601740512 and:0.02819578926848424 no:0.021990620714816028 their:0.02096339403527869 to:0.0186330911451563 our:0.018326740035822315 The:0.015003702714386943 your:0.011865980639779677 an:0.010238503448286519 some:0.009913097145156155 every:0.009708412860284617 my:0.009589621536987307 that:0.00940267498049568 :0.09476495910349306 +made:0.0999812034390529 and:0.06680208263369662 caused:0.02435411478715239 shown:0.02379785223577525 up:0.023253655008919294 ed:0.02312002180398423 out:0.022293807888227747 taken:0.021988971765594088 done:0.02128782706813444 given:0.020283609421760777 paid:0.017098570970207227 owned:0.01708227903067019 that:0.01698438626809451 or:0.016145946252097726 him:0.015808363688274 followed:0.015366441255538056 appointed:0.015126279845513936 held:0.013990473525433292 approved:0.013949758860964168 :0.5102843542509091 +of:0.13084814232797154 in:0.0740836656586379 as:0.0625527229231004 with:0.059577596335708534 to:0.058433603729754965 is:0.05551580107464621 and:0.04946529489577619 was:0.04264000753602388 for:0.04009673021586375 by:0.037684080471064085 be:0.023941707008899252 on:0.02316059851167503 at:0.022644769441950232 such:0.019950936521181326 that:0.017856095877642635 like:0.017386655618315594 In:0.016902219705578994 from:0.016046571451088905 not:0.01205910100844263 :0.21815369968667797 +the:0.31853537253998687 a:0.23494862962337587 to:0.14536147484725925 The:0.03518336652381513 his:0.031048811394967103 tho:0.029159233481458276 con-:0.02362001110969028 their:0.018829539414836543 its:0.016753928118319578 and:0.01664131422631218 our:0.0153705233928649 tbe:0.014367026652738672 her:0.012607656643213934 this:0.00838061502131715 no:0.007545364025825702 con¬:0.006634628624271024 my:0.005504482027637789 will:0.005435926912538641 A:0.00537420005181068 :0.04769789536776046 +and:0.10216199098081925 he:0.09284169121308153 He:0.07839895779241512 who:0.04075391935180249 which:0.029065353066926248 she:0.025661975529807275 that:0.02314130659403179 it:0.022817638746726394 as:0.01944340924241345 She:0.015638462748097548 It:0.015190543406440394 lie:0.008362390633068912 ho:0.007144122907221492 West:0.006593331932984378 I:0.006344253689365002 but:0.006137016545160041 letter:0.0059240103522369535 land:0.005291614339944686 father:0.005158309046711877 :0.4829297018807452 +was:0.18933857217443112 be:0.15847587532975158 been:0.08086187987520481 were:0.07469307160174699 is:0.06168850000527477 had:0.04019919822452038 the:0.03850956485662053 are:0.03644116560480369 a:0.029566619288717927 have:0.02863967851580837 being:0.027345481575694275 has:0.027301303040699797 and:0.02518791968962713 to:0.01603406841519359 not:0.015375579034664072 I:0.013594114238684065 bo:0.011898084168960764 he:0.011695905650070492 waa:0.008297790738954538 :0.10385562797057116 +a:0.5813887442768378 the:0.14146087931568163 this:0.06902080079873997 one:0.034612466895599284 same:0.03237778519054612 any:0.021307159730953065 that:0.020340588138562207 every:0.016050961689497448 tho:0.008570300680637166 last:0.007921852706297666 no:0.006748167497486596 of:0.006311275216709974 another:0.005349321576788713 his:0.005321615495488111 A:0.005148156684661663 some:0.0050284008331818435 and:0.004930228641405156 next:0.004701110462409625 The:0.004187246045324709 :0.01822293812319127 +of:0.28379428553980784 in:0.12218909763685937 to:0.08823555970456019 on:0.051015675212383226 from:0.04258859667620487 and:0.04028076942250501 for:0.03986782065503799 In:0.03496677397972987 at:0.034399443934116584 by:0.03198232047302878 with:0.029482002687623632 that:0.027528406870997238 is:0.012223647436162131 into:0.011721012492006253 was:0.011601840880751836 upon:0.010847601657575943 over:0.010242187572200733 through:0.00980601759798245 as:0.009525315196335744 :0.09670162437413027 +is:0.17774249187344854 are:0.11543786074990615 was:0.10322389339607418 be:0.09625375498658735 not:0.07385950679881388 and:0.060460212554595 were:0.03827740978232135 been:0.03242033488286881 Is:0.032061967019690094 for:0.031093734071245396 of:0.02874621038780134 have:0.020300949424356785 am:0.016218516540737932 do:0.014585527112243013 with:0.014092793542937023 to:0.013501369171350407 get:0.012830931614763053 has:0.012568059219563615 had:0.012052935525081854 :0.0932715413456142 +of:0.23396529967620694 that:0.11097815512324871 and:0.10663590650764393 in:0.06409424310023151 to:0.05721184805812771 by:0.04754199745201372 with:0.04552680873017287 for:0.03704199999623045 but:0.015546103230269446 nearly:0.015528352455125618 which:0.014974406863491796 as:0.014759550196026911 almost:0.013810997396984112 from:0.012917568230724583 when:0.012903390934374285 on:0.012510641905045536 at:0.01154915677351999 In:0.011526508780085744 where:0.009146534832710421 :0.15083052975776573 +one:0.1028303141280697 part:0.05963429477052991 out:0.04766456937681193 some:0.031418679026461914 members:0.030764490253327767 side:0.029940657362655835 portion:0.022063658796890564 office:0.020457735219956013 member:0.019726706386316174 end:0.019666887540649894 tion:0.018667441728710307 parts:0.016814747270460957 people:0.014112771422418794 all:0.014072739582212475 any:0.013183573287639892 One:0.013083578354183906 that:0.013024335602903442 account:0.012482348155001894 many:0.012077825070275192 :0.48731264666452345 +the:0.11500545585881412 of:0.0897605566703555 and:0.07914879987306167 a:0.05827037833039227 to:0.0386987683614473 was:0.029282661483795363 be:0.023890810389268442 is:0.02056818843792312 been:0.017204803150083207 or:0.017094944717067368 in:0.01610392931760865 are:0.015798243080240505 his:0.01344187865263006 at:0.01321973597799718 for:0.01304287912725108 their:0.012337012043366955 were:0.012236169772424844 :0.01133284696603621 The:0.01095822742659897 :0.3916037103636372 +is:0.12130016897790234 was:0.07840384259065758 for:0.0616713138408447 do:0.059602886610115764 that:0.05825155125851351 and:0.05816799258025219 have:0.05705788789710859 know:0.043423850511876805 had:0.04207114861431104 be:0.04032640170971772 are:0.0394796125731118 of:0.029088166539814136 but:0.0275628395655202 it:0.02284056761274508 with:0.021447160090734267 Is:0.02097225629296774 at:0.018486613026217683 to:0.01835275174950312 were:0.018131128315758013 :0.16236185964232772 +the:0.12586043952098674 of:0.1017241190952802 and:0.07346787158217669 in:0.04963859366652508 to:0.036353545214157186 a:0.028191512147962165 be:0.02113887114987804 on:0.02049583918898127 at:0.017773270291937038 that:0.014887126533743814 his:0.01454899464522275 or:0.012400047841484404 for:0.01191890338031861 their:0.011871831109972393 such:0.011209621519577408 by:0.011174160341073708 In:0.009400232169097529 was:0.009388083166887816 from:0.008965589343325676 :0.4085913480914115 +of:0.13844057376854338 the:0.09355351874169587 and:0.08681918733341343 a:0.05957109632068724 to:0.05016663218907361 for:0.03261253642889877 that:0.024605183583167236 in:0.022537458215972323 will:0.01915339143652655 which:0.016310127048229973 at:0.013212136938952759 by:0.012362388298821641 as:0.012098534906172532 with:0.011556170719052523 The:0.0114701426803988 or:0.011239394144485704 an:0.010991947317710745 they:0.010894898952590201 his:0.010674970330449113 :0.3507297106451576 +of:0.12448174271247883 those:0.08882522088288504 and:0.05763788558303699 to:0.043497254762253766 in:0.03578936008400909 for:0.03005972165247018 all:0.028211862281137284 by:0.028144532743258836 or:0.021060197397601264 man:0.01970294822108925 persons:0.016234507277358853 that:0.0134216534467371 tract:0.013235640789584564 men:0.011892728635815723 lot:0.011703691003036911 upon:0.011584959250714172 one:0.011434005185675283 acres:0.011076109717326124 person:0.010611429691386553 :0.41039454868214414 +and:0.1331497063787204 of:0.11661387228946073 to:0.0780947040517451 in:0.07165824179464834 or:0.04546989382334201 for:0.04376880619283322 In:0.02605642331513517 that:0.022756328936699953 with:0.02029300968297803 the:0.020260875688998346 by:0.012642790331146889 than:0.011993943899419875 as:0.01186321846783144 is:0.010679025244682635 from:0.010644451749243692 it:0.01049397145627175 was:0.00941714490953518 not:0.00834444100830396 on:0.008342910877352968 :0.32645623990165035 +Mrs.:0.08854689341228018 .:0.07017235987206107 W.:0.06429567225788732 Mr.:0.05614660481251227 J.:0.03172374339774756 and:0.028370763171193022 John:0.02596401172825961 C.:0.023201643789152408 A:0.021814549624768538 William:0.019580963228531208 E.:0.018899251915688954 to:0.018245947621071786 H.:0.01738838347776306 of:0.01720279896589577 Miss:0.015054452665853582 Rev.:0.014322146569906725 Dr.:0.012658540241939745 George:0.012224535667269939 M.:0.01059288760098925 :0.43259384997922795 +and:0.04471791400268467 in:0.03547657910862779 of:0.032453390651088425 be:0.032226445086792545 to:0.029200523880456537 was:0.025035704415542294 it:0.024902594636822276 that:0.02289224237454846 them:0.017294312009213348 the:0.016582913029679378 not:0.015816647985057174 made:0.015100009810718242 for:0.01488111606159631 on:0.014730372731577174 you:0.013073986555780057 as:0.012234020017777125 I:0.011973747089068525 him:0.011521000786347033 then:0.011115643999031121 :0.5977708357675915 +the:0.11068135768972318 of:0.08316148585499217 to:0.05981084310338559 for:0.0506217023956374 in:0.04865479308017183 and:0.046604979920084284 be:0.029748557941151953 a:0.025343009618416158 or:0.025163751300202954 was:0.023868041887078514 is:0.02087409925645633 not:0.020302003197237024 their:0.020149917910414903 his:0.018357075896423273 no:0.01590326215240806 dis-:0.01557050072396417 are:0.014706276962344746 that:0.01458161347308985 been:0.013610838700566705 :0.34128588893625084 +they:0.1797586971402133 there:0.07546670111293123 They:0.05295562803005664 we:0.0504407660410122 and:0.04679052222392068 who:0.04593736990618886 which:0.04562050927761041 There:0.04313198712039859 men:0.0255190977694623 it:0.0252908808057052 that:0.02085185238662127 We:0.018073010060341996 I:0.017898267325312984 you:0.01319665601029847 people:0.013065340228778128 them:0.010439512262678604 It:0.00953361870248915 but:0.007744529822939318 others:0.006270609644987286 :0.29101444412805333 +he:0.10607733934235739 it:0.08358053058876919 which:0.07392789806849036 and:0.07327180630126819 who:0.06802875560402637 that:0.06693670554610673 It:0.05839893748930252 He:0.02798553384830172 she:0.017116527928470644 man:0.012498856338624806 one:0.010031599918998518 This:0.009860058899011651 States:0.009685561913921954 this:0.009302543143739449 what:0.009034409555746256 world:0.008757477195369994 as:0.007404672421746991 ho:0.007303886876284792 country:0.007009797149771697 :0.3327871018696908 +the:0.21395773530845655 and:0.12586804808347643 a:0.08259690040635602 his:0.06432978751463501 The:0.0471712909924608 our:0.033760698066988656 their:0.029933517277993604 of:0.02973184741023498 her:0.024989920569184778 that:0.024283560230108123 which:0.02268578302150505 this:0.020179030837564078 to:0.015920818523025678 tho:0.01562227862302647 best:0.013863961105604452 good:0.012300465621003901 its:0.012084214362899765 my:0.011887608732188247 your:0.01158609472178329 :0.18624643859150414 +the:0.12688327514575468 of:0.12288448259191237 a:0.06580812516526356 and:0.06562608153230536 in:0.06492542126283347 to:0.05373166016216113 for:0.0474552494463949 by:0.02619750648046163 be:0.020384006969887774 or:0.01847935660179858 with:0.017533242478225446 was:0.017532681707562277 is:0.017058254241729028 that:0.01542119213111656 In:0.014524039812171716 on:0.013532265462726822 his:0.012806711178825047 as:0.012187231034785174 their:0.011405835274608329 :0.25462338131947615 +a:0.23679942454130823 the:0.1637013736202177 of:0.07510382794769394 and:0.06873189703318884 in:0.045394143786282856 for:0.028055235086331697 most:0.02743482683413552 his:0.023983726197151774 is:0.022880459766044466 are:0.02275161201132903 The:0.018603406408398068 this:0.01789786632330753 very:0.017191651690645744 from:0.014687787427634384 was:0.013723553764667749 their:0.01308058287856428 on:0.013069018644571046 an:0.012747892087023234 with:0.01070488854819434 :0.1524568254033096 +and:0.08017978798629559 to:0.03833410887859183 :0.03601679803175108 a:0.031093577634409675 of:0.026568279172516262 the:0.021519125306873627 be:0.017735782709919844 for:0.017077495636801936 or:0.01684298313668573 that:0.016596539141811705 in:0.01453151080715976 by:0.012738566841712979 I:0.01228705355734257 as:0.01066328977375443 1:0.00803467892733876 but:0.007707188742266449 which:0.007536244601880489 when:0.007281725653690029 ;:0.006143001235391308 :0.610112262223806 +and:0.06020225475311851 as:0.060040109205999004 referred:0.04040429561324723 equal:0.03905112941838878 similar:0.03435955154465724 up:0.0337068588356241 is:0.02841441336689054 him:0.026546809621722376 it:0.025879767654250076 addition:0.0252205675153738 them:0.021673281290694523 seems:0.02051654896694214 regard:0.019877906797056293 known:0.019754362221903504 came:0.018741861231450115 come:0.01745301627620942 said:0.016241709547697797 according:0.016047497289528832 resorted:0.015457621491224474 :0.45941043735802123 +of:0.17502932987891684 the:0.10300589428904174 in:0.09055125731838337 and:0.0737875714149059 their:0.05190848334442122 to:0.030523291589816093 his:0.030344924465368385 with:0.02376335844249314 for:0.022449122826501685 from:0.02188489168109321 was:0.01579048801369677 all:0.015394471045003652 been:0.015275740690569499 much:0.015074179348683131 a:0.01470123813674084 its:0.01342860437336244 at:0.012024133495382025 In:0.011743937371058605 were:0.011274834973450897 :0.2510442473011106 +to:0.1420713019137274 of:0.13251838277354827 in:0.0932038041536986 for:0.0773295704309706 and:0.07637745003046348 with:0.04552640261320607 by:0.03857564816613965 on:0.037697555952219 that:0.03727248629201572 from:0.02593989398282023 as:0.019536983679971396 at:0.01933203322944114 upon:0.0188614778811914 or:0.016629601990207986 In:0.015047878881890442 up:0.01435659038603593 all:0.011792539446383823 but:0.009337009523214904 over:0.0077476252930845065 :0.15984576337976944 +and:0.0890011427899889 to:0.08205551475019994 be:0.056653943316752435 was:0.05288335786695332 is:0.03711657311198781 are:0.028398583437278975 he:0.02691685976000978 for:0.023838977920174066 the:0.023633212533878647 re-:0.022137182540934133 were:0.021780933261928762 will:0.021738676333791455 been:0.020421777861500765 not:0.01925518538257109 of:0.018143085515687763 I:0.01673043198973779 it:0.016443971750404296 or:0.014149351580096184 much:0.012812559002743992 :0.39488867929337995 +all:0.15871878317893115 of:0.1470763888120976 the:0.1251248502727095 other:0.06166473739956991 many:0.05495602547494998 or:0.04678890442624318 and:0.04622894601360979 some:0.038243062532854935 for:0.027958698082038092 by:0.024376266384618827 All:0.02072729764443112 these:0.020490036542061187 with:0.01807614858878917 that:0.017081276247129996 are:0.0166263243426404 The:0.015181224887772902 several:0.013595072610417164 two:0.01152837274781349 such:0.011099375404759698 :0.12345820840656185 +the:0.1449641844563986 of:0.08710595808597107 and:0.060639991043772136 a:0.038971050768985306 to:0.035497607287402144 his:0.022269846080904755 be:0.02150484315278025 my:0.020367185734705945 I:0.01891633058414471 in:0.01859493769918256 for:0.017350580101599025 was:0.01676359899750709 is:0.015084084537449449 their:0.013269247511876204 at:0.012718929570411921 that:0.01170468572340591 or:0.011400632554895979 it:0.011330438956791117 :0.01130401752938815 :0.4092418496224277 +the:0.34687415671657157 and:0.06484206205532594 many:0.04241829938637729 two:0.04165908960914714 The:0.03932170234280571 tho:0.0285794765428863 all:0.027607226048591182 to:0.02400461390045646 a:0.023015846913472346 of:0.021883600173156388 three:0.021510712906378945 other:0.020737321483047123 or:0.016307382539590173 few:0.015381886152714987 several:0.014960071063373308 half:0.012608451212603055 by:0.012480627198187155 fifty:0.011511544236194618 four:0.011154750362123524 :0.2021411791569968 +of:0.10879904908765405 the:0.07012964595486117 and:0.05570652341089056 in:0.034482041620716344 an:0.0301040778139131 .:0.02264645739855437 1:0.018594279142971373 man-:0.018046415703174442 encour-:0.017329681503841073 to:0.015494301012564405 :0.00824890493446674 In:0.007387592378588562 a:0.007377362298571304 with:0.005950090475284239 3:0.0052539022971328335 The:0.005162928472829062 his:0.005142351336827613 7,:0.004659416254272728 A:0.0045584376369991264 :0.5539265412658869 +one:0.0368320923434156 on:0.022407507816737608 two:0.01904322897063215 more:0.018299439624759706 man:0.013432558325948259 and:0.012548648983837942 person:0.01009257135893361 it:0.008781507382187958 in:0.007443040439200823 law:0.007070962180538072 three:0.007055781812398056 little:0.006827197184453192 year:0.006734940421771306 whether:0.006680789870591655 him:0.006670845314731227 be:0.006459571044162152 ten:0.005850586920645192 me:0.005041631550994576 sooner:0.004984177772764083 :0.7867429206812968 +and:0.10119789434721585 the:0.08750650826269914 of:0.06965652901268303 to:0.05397231607343732 be:0.036865526523342323 was:0.035053854231348616 in:0.031304212937328754 is:0.026000336185972757 are:0.0211137244270955 were:0.018396838756921496 con-:0.017174874810272 been:0.01699376096117119 for:0.016754654309511306 com-:0.014528737373553537 much:0.013539613194676265 their:0.013377304520975603 he:0.012755370579971337 or:0.012523440083369532 not:0.012362122862064477 :0.38792238054639 +hundred:0.02496601928284023 up:0.017589227738326933 one:0.012455804851362464 ;:0.009899825889926337 men:0.008640560263484476 time:0.008466328052611874 city:0.008391563111442164 in:0.00782333706854833 out:0.0076544443344044024 him,:0.007293765357811833 it,:0.007058342721325035 down:0.006876148690464049 State:0.006819082754131601 large:0.006789631993703952 state:0.006603409936538879 long:0.0065038640467212465 house:0.006420402382646655 States:0.006091337056021264 man:0.005924837495866421 :0.8267320669718219 +an:0.3642080689930829 the:0.1455046624806633 of:0.08986740817880942 public:0.03500432486920745 their:0.030129936369200205 his:0.030077943830184164 no:0.0286001282286339 our:0.017626914012168544 and:0.017602614810023745 its:0.016409417645539024 any:0.01518872176199994 a:0.013557689002516221 or:0.013330641629569867 An:0.012855718884914297 other:0.012828607844551167 your:0.01168408148218392 tho:0.010487860735296098 this:0.010263015657565598 good:0.009205175184723304 :0.11456706839916696 +for:0.3853401768664681 the:0.08289592397154702 of:0.056840258030171294 and:0.05664852610477632 in:0.0491594164580537 spent:0.03874645023919438 about:0.028700293055131162 at:0.02861549225396996 For:0.02828648918775616 to:0.019117404791642055 after:0.015624646601131777 from:0.014468630615024894 by:0.014196484536566476 past:0.014048100970062314 In:0.013708950380224934 than:0.013704891014064944 that:0.013512485797490096 was:0.013456152282479863 are:0.012437165765788169 :0.09949206107845637 +to:0.2028032924651073 of:0.06562469641675907 let:0.06500761166523306 with:0.06351850406534545 for:0.059264954741432715 take:0.02586120463514861 give:0.024465273027574386 by:0.023349353138922748 from:0.02307551267232043 and:0.021618099280397107 took:0.020717642928396614 make:0.020129131338236666 bring:0.0198143347251271 brought:0.019671185554792282 help:0.018385909419701266 Let:0.017100074653701627 upon:0.016987767576792923 gave:0.016239131318361102 send:0.015747155602066392 :0.25961916477458313 +and:0.0769301463936799 passed:0.0704158669792546 went:0.05625044664395127 go:0.052131773157640816 passing:0.05105322412857315 running:0.03281125335454107 pass:0.029604084059522372 way:0.026887256324629117 came:0.02359557379613436 come:0.023469765785188758 it:0.023025846927391146 run:0.02117913249306477 up:0.019289029991104812 going:0.019082379424978892 out:0.017824293661801955 all:0.015278293103968157 that:0.014846596177330841 gone:0.014463679554637558 down:0.01434311536982873 :0.3965182426727777 +time:0.021683701594936867 men:0.020344233917861238 in:0.015429479238670494 life:0.014769802052584775 it:0.013663857131648284 law:0.011959784061471242 work:0.011750683393811873 rules:0.011160743143697385 good:0.010704708025853662 costs:0.010149081911455794 power:0.010005523167443794 water:0.00974436367979771 out:0.009724394404456854 labor:0.009512310267271139 interest:0.009130550226976349 them:0.009102920152297963 of:0.009028963392187339 large:0.008638367924897685 country:0.008633192543277135 :0.7738633397694025 +the:0.32197585107490573 to:0.27216068212150357 a:0.0525945043677876 and:0.04589727924025785 not:0.038628903439471354 his:0.030850567213312433 will:0.026595342074546273 for:0.017507751968237534 an:0.017251403870220464 tho:0.014462819262318674 their:0.014439287110493457 no:0.013466131172154465 would:0.013442673535483457 The:0.010739586417957785 her:0.010462187788876254 may:0.008742701372242704 of:0.008725117126476787 its:0.008558223140461634 in:0.007030100954234853 :0.06546888674905713 +of:0.18065754275916107 the:0.10908211301750727 for:0.09217649020132139 and:0.06551895340021327 any:0.0521010246141037 no:0.05083474243641571 in:0.049033417253419656 such:0.03254262126393241 public:0.0311846942372446 an:0.028500709267093177 said:0.028486450145701232 by:0.027199205042267693 to:0.026187996568335797 this:0.0254847936103621 or:0.024916008618617994 their:0.022878052095125567 his:0.01727103217854594 on:0.01722352583993378 that:0.01640267929092568 :0.10131794815977196 +he:0.12537221268363224 who:0.09661724738179048 and:0.08836218370742285 they:0.053404240408774506 had:0.04780590587488035 which:0.044811280265470814 have:0.0440103706309662 has:0.04367987472401989 I:0.040035430757556764 she:0.03096253842061961 He:0.029504836473465974 it:0.02930091861697105 we:0.022801875782491907 under-:0.021078567483990753 that:0.019712135100607944 It:0.01823095618666787 then:0.016927492117320676 They:0.011634277973852707 She:0.00832302343449589 :0.2064246319750015 +as:0.06931392982974462 according:0.052071562389565784 up:0.0511867300210483 and:0.040371568633051955 went:0.03351644485287816 back:0.032358406609281 regard:0.03073407747799069 feet:0.02852138506231652 down:0.026379903432040268 owing:0.02466642634685871 due:0.023695193974505355 go:0.022910973192184297 reference:0.020802802907016128 came:0.019883741951819873 sent:0.019874244915639484 attention:0.019565955494145405 come:0.01885185084678811 given:0.018792390567602263 it:0.017366961307524745 :0.4281354501879983 +and:0.06221069663990682 Committee:0.05057534586581559 was:0.02748220847391186 committee:0.02744426205407836 that:0.020734118233226323 is:0.015430238938760197 be:0.015048656326656785 going:0.014001702059179444 out:0.013278222204376178 work:0.012879402979875257 went:0.01268561986518544 put:0.012602354130226817 due:0.012424637090645018 were:0.012095015985171466 called:0.011981002673910567 it:0.0118054636333845 them:0.01156555523415657 are:0.011505242379095585 him:0.011141026526201511 :0.6321092287062358 +and:0.11549548249096885 to:0.04488975088470746 of:0.03041383360872326 the:0.029199107776950863 not:0.023847330679559325 con-:0.022860402909390586 or:0.0215243211418385 in:0.020310054746749854 re-:0.01798800672472346 you:0.017907581920565463 I:0.017132406317042492 that:0.01596153467962522 be:0.015615803072868124 is:0.012871556122977976 he:0.012509199510952035 in-:0.012339441782983462 it:0.012250455500024099 for:0.011874197489417409 be-:0.011243584876439202 :0.5327659477634924 +up:0.0182392463535217 ;:0.014022239030061188 in:0.00923621074178884 it,:0.006938036565738586 them,:0.005996656949657577 him:0.005591025813755158 them:0.005296822601264583 here:0.005181168192146323 made:0.0051435498783499655 out:0.004987144389697174 years,:0.0049765919156317395 back:0.004927430263017675 him,:0.00489009224931368 States,:0.004889973691011309 ,:0.004850683783666938 men:0.004515474316487718 :0.00423818529094317 and:0.004231691279559599 time,:0.00418149675643712 :0.87666627993795 +of:0.09129790931378902 the:0.07369883040827747 and:0.047842263382354346 in:0.04189055351593407 to:0.04045875475680249 a:0.03542341257202578 be:0.02020462051672066 for:0.01979292654746225 was:0.01760256398103379 at:0.017380150555488715 is:0.014984483003968216 with:0.014047653760730413 by:0.01374644383819499 :0.012670486581795598 In:0.01200961464556976 or:0.011563835749786333 from:0.011391516893522809 are:0.011273104484969465 that:0.010755276030689069 :0.4809655994608848 +and:0.09296157453578059 the:0.07260608673281492 a:0.05593708968259476 of:0.05441583507203394 is:0.03558625104453609 be:0.033980012009619004 I:0.03141664522878395 was:0.028093255492853828 it:0.024476425896454684 he:0.023232658776624244 to:0.021597151041604843 are:0.018656659431974417 It:0.01628353404523284 that:0.015706202232171736 in:0.014541516293590247 or:0.014526210557923637 but:0.01178396643537098 this:0.011436664122462099 they:0.011268144270354346 :0.4104941170972189 +the:0.18812471472087042 and:0.07182609858187836 of:0.06511524838972266 in:0.03269282269330124 a:0.027990949004676125 on:0.023462722038914512 to:0.01795135671113631 for:0.017230807858236045 that:0.016078333091051254 his:0.0157905360054943 be:0.015725595367852067 at:0.014799348752512414 The:0.014545230589964533 :0.014072370951185251 their:0.013944414548799355 said:0.013239511640915778 was:0.011812545551494321 ex-:0.011678752591433316 or:0.011413125690057499 :0.40150551522050426 +is:0.11493333357250914 of:0.10729938986723592 and:0.08371908941142513 with:0.07475383738249902 was:0.07143455379717621 in:0.06431415218787417 on:0.042507905321535595 for:0.041679752803541165 to:0.03898896173466627 as:0.03819706976837028 by:0.03622864078690401 made:0.029836759867681372 have:0.02457295169019163 that:0.024222024821561224 be:0.021784168377391045 had:0.021551278005713197 at:0.01776391182306617 has:0.017356217746374622 make:0.016918387844953135 :0.11093761318933071 +:0.14927751114276797 it.:0.01213735095027808 .:0.009219245622920053 them.:0.008746796634655175 day.:0.007381595396393783 time.:0.006801749538297518 of:0.006488263047349192 him.:0.005449989309069074 country.:0.005405426995356426 year.:0.0046048600315297715 sale.:0.004499816907003882 city.:0.004361819154180401 years.:0.00393710634983598 work.:0.0036619941568847626 State.:0.003509226915551749 county.:0.003460070542093404 days.:0.003451534485525941 law.:0.0034156183682151485 States.:0.003311666110734276 :0.7498783583413574 +and:0.037556108503009014 I:0.03290400071763861 who:0.01830356024603619 that:0.016276705485793633 he:0.012848409117847888 as:0.012780900140664485 which:0.012319876572327785 :0.011544648630417438 the:0.01149418513191497 of:0.010729863452688039 1:0.009627326871584973 State:0.007556226224600129 man:0.007405177067164924 men:0.005891892948099529 it:0.005870968583422698 city:0.005711607040494656 States:0.005578262665235042 in:0.005438262927962889 by:0.005414253860451008 :0.7637477638126461 +of:0.1926891964094043 and:0.15250332513040202 to:0.08820607022907115 in:0.07565562230265382 with:0.06279246265734437 on:0.04838796835439189 all:0.03245771466484053 for:0.028074583156319107 from:0.024544349226051025 by:0.020518814943753523 as:0.018343166712530345 or:0.016670966955589412 that:0.016360120790595758 at:0.015131349168601845 but:0.014191713152774042 upon:0.01359823136414476 In:0.012154662952158795 do:0.009934554223251381 is:0.008584067132094707 :0.14820106047402723 +the:0.14543793125232313 and:0.08222974144326327 a:0.05798341421373679 of:0.04421601466297595 was:0.03537812393271957 is:0.031493747059733866 be:0.028267282266828373 are:0.022754561053982273 to:0.02081226583147491 The:0.017696989392640947 or:0.01737662101499319 were:0.015758603916148556 not:0.015054238771521606 in:0.012709097328119713 been:0.012394371385690033 his:0.012067379978669485 Mr.:0.011731012070633302 an:0.011559375942931214 for:0.011529429929400993 :0.3925497985522128 +it:0.10619505401475912 and:0.07380609085368142 It:0.05781493706321618 which:0.0498789976913006 there:0.04504915679312103 I:0.04371671273734428 who:0.03657191268367388 we:0.034434176171148696 they:0.03426301191642593 he:0.03026548329508364 as:0.024282203857062645 that:0.022100474320288364 person:0.014314035395346262 same:0.013876841778367323 bonds:0.013581438316490677 act:0.013118188137804607 or:0.012975539288552823 you:0.0099361887059252 thereof:0.008838257402227904 :0.35398129957817936 +thence:0.30881674946471604 bears:0.11094345064854302 and:0.03186096909826815 thenco:0.031774186724792895 of:0.023831169750763468 thonco:0.023650197009526912 Buffalo,:0.022148366500903717 .:0.019567921746334285 the:0.01778094143559801 Brooklyn,:0.009197263406099922 :0.006841689886121561 to:0.006491845313560541 C.:0.006121863962508039 S.:0.0056342013119734715 2:0.005310529148965326 W.:0.005142703225763331 Albany,:0.00511024779081836 York,:0.00490678720139896 A.:0.004771230920329 :0.349097685453015 +the:0.11040027877116372 to:0.09734601991313398 of:0.07139199225945304 and:0.06930565842685313 a:0.04179645848953239 in:0.041451710716125266 is:0.02425773360676877 for:0.02294464378303098 was:0.02113204260332117 in-:0.020652070845659155 have:0.019795506971112535 as:0.019446006784468155 be:0.01780280740158023 which:0.016946166599481206 with:0.016931264633615984 that:0.01574166795292797 has:0.014529569352626356 his:0.014279833211796511 their:0.01422480925360094 :0.3286237584237485 +it:0.1496983854216909 he:0.10964337238428326 It:0.10638682511248473 I:0.050969923320639536 He:0.04860408290558634 which:0.04656491803935457 and:0.039028603386181866 who:0.0331862277940019 there:0.03053864313057572 she:0.02473831015765317 that:0.020673460236108037 There:0.013695532075392687 She:0.013377251164555395 lie:0.010305604736014575 bill:0.010179505281152806 man:0.009520310547670104 ho:0.009465156303370794 as:0.008752836029768285 This:0.006926077595687868 :0.25674497437782745 +and:0.07832214678695178 that:0.07527056316629611 for:0.06319319773736581 in:0.06268593274074033 of:0.048673254554412175 as:0.046385584098206645 to:0.0450467314246162 make:0.033381571411569985 but:0.02763116030599607 with:0.026061229154546475 do:0.021587146007364957 on:0.019843351921165583 upon:0.016709183531015324 made:0.016431192840026553 In:0.013881497807675825 get:0.012806980644423026 see:0.010838301284391005 is:0.010767597406094823 think:0.01062864626219733 :0.35885473091494396 +of:0.09129790931378902 the:0.07369883040827747 and:0.047842263382354346 in:0.04189055351593407 to:0.04045875475680249 a:0.03542341257202578 be:0.02020462051672066 for:0.01979292654746225 was:0.01760256398103379 at:0.017380150555488715 is:0.014984483003968216 with:0.014047653760730413 by:0.01374644383819499 :0.012670486581795598 In:0.01200961464556976 or:0.011563835749786333 from:0.011391516893522809 are:0.011273104484969465 that:0.010755276030689069 :0.4809655994608848 +the:0.4549847530848313 a:0.3006480127669851 of:0.0368106802197031 in:0.024212048573082973 A:0.021773996435666194 tho:0.0185447311323222 The:0.016632978581870867 very:0.013862203109267064 this:0.011584524996075226 In:0.010925685892468723 on:0.010089710969260975 tbe:0.01006713281816184 our:0.009798111517516169 his:0.008612624418327343 their:0.00582434631802185 an:0.005170404025934735 and:0.005087357093470949 its:0.005046428891580674 for:0.0035077379168881127 :0.025816531238564686 +of:0.0963462012495754 and:0.07642973306381547 to:0.0700513656896304 that:0.06459895926386676 for:0.06279012879433081 with:0.056895443827695284 in:0.04349906242038581 as:0.043112830266213535 on:0.028065800431917205 make:0.028004992167188176 upon:0.025297846663165 but:0.01956620758451761 between:0.017186103427972835 about:0.01644661283071532 by:0.01587781822635295 made:0.015129903846467906 from:0.014278361262775015 when:0.014082910132008498 if:0.01397714826015428 :0.27736257059125174 +the:0.6097663834962611 large:0.06778870554717534 The:0.050405615598439445 total:0.028768144341664918 tho:0.02428192033354087 whole:0.021586892436117926 vast:0.01821947510225622 an:0.017844769713003833 a:0.014724238644129526 great:0.012205577143116736 this:0.011506167334097582 that:0.01099241229602845 and:0.010961713628662356 considerable:0.010707194157007136 any:0.010384063928210651 certain:0.01019437391629196 same:0.010191971817478052 small:0.009848832520163449 immense:0.009356703497386843 :0.03926484454896754 +of:0.13084814232797154 in:0.0740836656586379 as:0.0625527229231004 with:0.059577596335708534 to:0.058433603729754965 is:0.05551580107464621 and:0.04946529489577619 was:0.04264000753602388 for:0.04009673021586375 by:0.037684080471064085 be:0.023941707008899252 on:0.02316059851167503 at:0.022644769441950232 such:0.019950936521181326 that:0.017856095877642635 like:0.017386655618315594 In:0.016902219705578994 from:0.016046571451088905 not:0.01205910100844263 :0.21815369968667797 +and:0.09803937038328785 they:0.08010782892424755 he:0.0675328450811269 it:0.06232531367077635 which:0.062048929637282486 you:0.0593657030123935 who:0.05909338605040977 I:0.053007765059558766 that:0.034678840789036255 we:0.030262259571688255 It:0.025169973189330074 she:0.017282695628748266 He:0.015514927354280313 They:0.011784049802785052 1:0.008801721693546394 as:0.008516744441234675 there:0.007908645838677028 man:0.006873069030616496 We:0.006764403238915315 :0.28392152760205874 +:0.05555889959706849 it.:0.02750675219428026 them.:0.020758934206066282 him.:0.016959196908013934 .:0.012946393423487029 said::0.008383167908163828 me.:0.007945806286273182 country.:0.007211541618032801 time.:0.006699052679642289 years.:0.006382744898477555 us.:0.0063377315496354215 work.:0.0060357227586285474 day.:0.0056270390077950575 out.:0.005164205796603497 life.:0.005054682852891315 again.:0.005028371200339558 It.:0.004824407716525426 ago.:0.0047886471681003575 way.:0.00450379358230421 :0.7812829086476709 +to:0.212796044745543 and:0.08637895670271357 the:0.06210413958500866 of:0.05932821803434683 or:0.050606864679837736 a:0.035093530150420243 we:0.029834275941253173 you:0.02894352675844077 I:0.027433826874421738 in:0.027146277648113084 this:0.024600665759968797 that:0.023217897987174916 for:0.017525265226911117 not:0.017095269283175618 his:0.016048488774527973 only:0.014544433725156479 their:0.01371310762058776 they:0.012526014841225343 nor:0.011431110123830442 :0.22863208553734274 +men:0.032249581804289225 costs:0.02229533898247693 good:0.012122254340879457 boys:0.011241373837372986 time:0.010126885254178397 known:0.009662532433417999 land:0.00952104315443225 it:0.008693696922100598 and:0.00829226956761269 officers:0.008018523577095356 made:0.007792659742823659 life:0.007658810906833231 due:0.0068965232074273755 women:0.006763055954984934 them:0.00676143020438968 rights:0.006273197709755563 ;:0.006051547742078442 up:0.005862754895694244 quiet:0.0057565215242326795 :0.8069599982379243 +and:0.08700639748405287 it:0.03541980417521399 is:0.028238349450272596 was:0.025823487109377465 not:0.023530739838883596 be:0.022126160508891147 made:0.022006607304739356 them:0.019873124658968996 him:0.01984913521706127 that:0.018179885677780127 out:0.01704681762107155 up:0.0162069128467533 are:0.015615740181961484 or:0.015479833260550763 found:0.014727449218681042 but:0.014630267873139941 as:0.013072595007014525 me:0.01132217703310394 been:0.011071966987759349 :0.5677725485447227 +to:0.11072297279764762 or:0.10613980047998905 and:0.07584878414490738 not:0.04107508953982762 of:0.03719930795239555 there:0.027150188177330947 the:0.02707119059246538 nor:0.025270356513242505 that:0.024241483978626317 in:0.015763415321107248 as:0.015610491314474187 than:0.014201938942672014 for:0.01378946478582446 re-:0.012417242777279751 :0.012407866813393597 by:0.012050683302328837 is:0.011754987194787724 never:0.011366555260533555 would:0.010899589151123138 :0.3940185909600431 +the:0.19068837335917166 of:0.12340362536640839 and:0.05211532855665419 to:0.04163233684202746 a:0.03925045531782893 on:0.022803912340993673 .:0.01851982869866852 in:0.01735184871071853 an:0.01734609569764574 by:0.01706932192679555 with:0.01320139787839442 The:0.013047413562771806 tho:0.01276715879498179 at:0.012312265467686814 or:0.011611921425291412 from:0.011447731773314615 said:0.01096239106315446 :0.009795400151672072 as:0.00876395117485801 :0.354909241890962 +the:0.11500545585881412 of:0.0897605566703555 and:0.07914879987306167 a:0.05827037833039227 to:0.0386987683614473 was:0.029282661483795363 be:0.023890810389268442 is:0.02056818843792312 been:0.017204803150083207 or:0.017094944717067368 in:0.01610392931760865 are:0.015798243080240505 his:0.01344187865263006 at:0.01321973597799718 for:0.01304287912725108 their:0.012337012043366955 were:0.012236169772424844 :0.01133284696603621 The:0.01095822742659897 :0.3916037103636372 +of:0.13084814232797154 in:0.0740836656586379 as:0.0625527229231004 with:0.059577596335708534 to:0.058433603729754965 is:0.05551580107464621 and:0.04946529489577619 was:0.04264000753602388 for:0.04009673021586375 by:0.037684080471064085 be:0.023941707008899252 on:0.02316059851167503 at:0.022644769441950232 such:0.019950936521181326 that:0.017856095877642635 like:0.017386655618315594 In:0.016902219705578994 from:0.016046571451088905 not:0.01205910100844263 :0.21815369968667797 +of:0.2023271480360273 in:0.09829497648823021 to:0.07063752173851463 for:0.07013060660375067 on:0.05794275353711239 with:0.0529469218621378 and:0.05165630566871149 all:0.04892125864708031 that:0.0471785368245717 by:0.037076897431948454 In:0.026506087700119543 from:0.02321116705474106 as:0.02292061116111584 upon:0.020229926146423313 after:0.011561758800559667 when:0.011001598338550595 is:0.010482041522328185 but:0.01007831276926853 have:0.009954636083335744 :0.11594093358547256 +let:0.12471867423942126 of:0.11401344581126531 to:0.10924088195842989 Let:0.08292132736521164 with:0.06923332940294291 for:0.06887753584049035 and:0.025765718836460692 told:0.02227486523339371 among:0.022050365102699577 by:0.021909331341676646 tell:0.020142172179863506 tells:0.015243183296627215 from:0.014565071941288737 upon:0.014470540141440258 have:0.014355034189419247 in:0.013989500297702186 give:0.011276409517819887 see:0.010058136600772016 make:0.009471418416373474 :0.21442305828670152 +and:0.19477474391614072 he:0.11761891905333284 who:0.046905799448169895 He:0.046312172326367536 which:0.0370867219505474 I:0.035529918694303074 that:0.027179029868013013 be:0.026265528620339148 she:0.022910696885078283 they:0.021434631193279294 have:0.017904770774422176 then:0.014011688925415244 but:0.01317759945397296 it:0.0116745536403401 This:0.011121428922017125 if:0.010406347659211928 was:0.009906529293300452 has:0.009846311594610963 She:0.009819431925636744 :0.3151131758555011 +that:0.24087121215280272 and:0.12157520004556935 is:0.08115435684263181 was:0.052209367101571424 of:0.04667768524470752 be:0.046489075555368 but:0.04513104135701227 by:0.026977022891129472 which:0.026794037020544066 if:0.022108765922372996 have:0.020524152579354787 with:0.018779012190090535 for:0.01705915642051494 are:0.016604061038063576 to:0.01646844021876286 as:0.015645493281649717 had:0.0147279898166201 or:0.013478710552788462 were:0.011723633014645407 :0.14400158675379998 +law:0.03220281071475255 State:0.026334103404857197 owner:0.025343856121285573 state:0.023600240056636804 day:0.022020216609710007 action:0.0215024167448042 whether:0.013698486172489897 sale:0.011713433527877532 one:0.01150824644829965 person:0.011367079081102604 in:0.009842191294093559 tion:0.009194891457143483 form:0.009079447837435145 debt:0.008989912892390827 part:0.008819564771733882 public:0.008723662104719154 year:0.008584442133898895 that:0.008519892171148022 city:0.008481453736850416 :0.7194736527187706 +of:0.05208390066176631 the:0.04881480559340891 be:0.03668942883088883 and:0.0332437311107191 was:0.033197499495649235 :0.026405863208167363 to:0.02305652332042357 as:0.022448022704734154 is:0.02105044028386269 not:0.018782443952240768 been:0.015478673235610332 are:0.015356876522203548 in:0.014208059239735924 con-:0.014107349679954381 were:0.013385553069309802 it:0.012383144940426374 do:0.012080754124389404 I:0.01043576115324349 Is:0.008408648426519486 :0.5673825204467464 +J:0.10777791528495727 W:0.0936928885407508 C:0.07750089197143045 M:0.06308930057658163 S:0.05654621114538183 H:0.05462318849301471 P:0.0494876407551382 E:0.04639807714255947 F:0.03658053846793133 L:0.03602498065560375 B:0.03495084028020231 R:0.03397728853655873 D:0.030264248552601285 T:0.026288034416706223 N:0.022643708335042107 G:0.021794617251148538 K:0.019424428697337192 A:0.018028217712533618 8:0.016390393650706235 :0.1535165895338143 +sum:0.03352282876311118 number:0.028116684882597106 line:0.019995206059833036 city:0.01946514558931857 out:0.019275318828420953 day:0.01666865340772654 county:0.014872697538657208 amount:0.013254184849875051 Board:0.01252325449624941 town:0.012449555905674143 side:0.011663975251122375 part:0.011517157473718155 County:0.011460540331966697 state:0.011087331502382173 City:0.010878919191854432 purpose:0.01081028255427907 and:0.010297866493795984 way:0.009848747943663767 name:0.009522170936943183 :0.711769477998811 +that:0.14627848602561702 and:0.12947443046428322 which:0.09858633240952289 as:0.08748210993404731 but:0.04882775724356759 when:0.040954459396322904 if:0.03868139421399859 what:0.03284007792681997 where:0.031507722375664064 because:0.030203811951214715 or:0.020220337071578557 for:0.01615546530306702 than:0.015305023978484562 until:0.01465029018600213 If:0.013986758941171516 whether:0.011764352752845451 would:0.011142589783926776 though:0.010931477706841719 whom:0.009891685695122486 :0.19011543663990152 +of:0.2883966800943954 to:0.0851704657474455 that:0.0732447751319007 in:0.06568965968175229 and:0.0651229805620099 by:0.060437931600503855 on:0.04510147639998507 for:0.03816443276481424 from:0.03375275099585278 with:0.02989435115522377 all:0.0267303394809865 upon:0.019622038664946422 as:0.01687019251398969 In:0.015728998428054707 at:0.011551760972843453 which:0.01066291817950659 over:0.00980553060888928 into:0.009787808814549683 when:0.008829603166532748 :0.08443530503581742 +of:0.28197522777690887 in:0.11248504633188419 to:0.09612744916270893 and:0.060336380525656944 that:0.05976903045287053 from:0.03769157752642831 for:0.03611567804773506 on:0.03590518037673721 as:0.03157537517804745 by:0.03091966221667694 In:0.025980093941583862 with:0.02427870023464582 all:0.021015467335285382 at:0.01815078862062411 is:0.016587933609854038 upon:0.015836934817390222 into:0.011133186479835265 which:0.01096577384948346 was:0.00986553611763602 :0.06228497739800735 +and:0.07607965573275648 that:0.029003717174563036 was:0.026339483175456965 made:0.021571751969520377 is:0.020537305565204233 as:0.017914075610509415 it:0.01717890841761646 up:0.016709861007033578 but:0.01551316720650669 o'clock:0.014755698743758164 found:0.01405782829206355 them:0.01305334410514391 interest:0.012818695923599957 be:0.011930172246686143 him:0.01191484948114096 out:0.011834932245175319 man:0.01117775421202903 recorded:0.010949129636550672 interested:0.010594433249324011 :0.635065236005361 +and:0.09365568883747434 as:0.06240250123987671 is:0.03815621340269663 able:0.030613014225098625 time:0.03059237934288754 order:0.026250554113697762 was:0.02604765113282558 made:0.025908997443353694 on:0.021896642500134227 him:0.021361474403341 necessary:0.0209166211527281 enough:0.020697568405972953 me:0.018784527387308167 fail:0.018204638664201515 have:0.017095638424895466 it:0.016663433871748207 or:0.01635563439597671 not:0.016028542225790827 known:0.015402314552680709 :0.46196596427731124 +they:0.14171610742991628 you:0.11661928750462476 we:0.10777597553896419 I:0.09560866255564399 he:0.07289579751780104 it:0.04321281551973872 one:0.03730021156171177 who:0.03677808234343113 that:0.029105314777047305 and:0.02890929973235322 We:0.021100592791760287 which:0.020790335288404068 man:0.019885955989345953 she:0.01791794126848166 Ameri-:0.015755296444878754 You:0.01570838992510257 It:0.015531149385397425 They:0.010867923986823215 1:0.009109707381116302 :0.14241115305745736 +of:0.19015315057313553 for:0.05004618635625215 and:0.04239921412909121 or:0.033546167229322486 in:0.02618402482614409 all:0.025034873005938253 from:0.02381431764079926 the:0.02246270784192888 at:0.019190643746540635 by:0.01741947064485613 to:0.013655777618518184 with:0.013394065457543318 about:0.008354750944943468 said:0.007019450945344788 some:0.006693792506259122 other:0.00621822792376326 :0.005924085913124484 :0.005587941018063934 than:0.0053021941499740615 :0.47659895752845677 +:0.0599141652865237 it.:0.025367262649460508 .:0.02181464561720457 them.:0.012659396538869444 ?:0.012125652051367078 2.:0.009769367244845154 same.:0.008521427559658859 him.:0.008073498422869056 to:0.006476105403422975 country.:0.006317658456345324 and:0.006170918355461818 !:0.005082273213255852 ::0.005052646869376259 tion.:0.004982416875045813 world.:0.004746617044136092 time.:0.004531829303580022 life.:0.004358645559747664 law.:0.004356149994551555 people.:0.004313847779258782 :0.7843654757750195 +I:0.13205112265699806 we:0.10951743807365415 they:0.09650540932083249 who:0.08923807911224164 to:0.07193731287095581 We:0.07038718699600204 and:0.04707911827415647 would:0.0433982966057576 which:0.03399498281674646 you:0.03159790976325717 They:0.03149342891090433 not:0.019323588613550165 that:0.018746438358803845 should:0.016663774723098327 will:0.01585827135930741 may:0.015522228789308517 shall:0.01503142575714791 1:0.014482388617943365 must:0.014277211645339119 :0.11189438673399514 +of:0.09129790931378902 the:0.07369883040827747 and:0.047842263382354346 in:0.04189055351593407 to:0.04045875475680249 a:0.03542341257202578 be:0.02020462051672066 for:0.01979292654746225 was:0.01760256398103379 at:0.017380150555488715 is:0.014984483003968216 with:0.014047653760730413 by:0.01374644383819499 :0.012670486581795598 In:0.01200961464556976 or:0.011563835749786333 from:0.011391516893522809 are:0.011273104484969465 that:0.010755276030689069 :0.4809655994608848 +the:0.42730023439512677 of:0.10458905048822444 a:0.07532386404291666 to:0.02914871234721453 with:0.02609092262205279 tho:0.02394070590332324 by:0.023106076494615727 between:0.019108198813736182 and:0.016758132102314745 The:0.015804667594259022 our:0.014599823467867888 their:0.00970905060838302 his:0.009539375183820064 her:0.009343177894255024 tbe:0.009051226759656635 for:0.00904534340375333 boy.:0.007784171796704275 as:0.007627859668701764 old:0.005733246742730124 :0.1553961596703438 +had:0.26317506970298915 has:0.1680474520404469 have:0.14631535177045493 and:0.06422899075754036 he:0.04477863352804604 be:0.036636025197113155 not:0.03646819478536624 was:0.027958924852919197 I:0.02767214152068545 having:0.022104423232784026 who:0.018785775872721303 He:0.015107195138799507 to:0.014519433522321058 she:0.013878967902639257 also:0.01146620134040742 been:0.01122570472970122 then:0.011114383388550647 it:0.008762113242985639 is:0.00871316136594173 :0.04804185610758673 +the:0.11919516938815296 of:0.07230453158552728 and:0.05781056740443249 a:0.043018564803886335 to:0.031305092790907506 in:0.020848713353460488 at:0.014270110001066288 .:0.012526810245749479 :0.012413283442322082 for:0.011719122709941797 by:0.010808400946589808 or:0.010404172990115616 The:0.01003576004804544 with:0.009811868184449042 tho:0.009295902015355835 was:0.008924239095331684 that:0.008672304223433876 is:0.0085591147338948 be:0.008335143826716943 :0.5187411282106204 +the:0.11919516938815296 of:0.07230453158552728 and:0.05781056740443249 a:0.043018564803886335 to:0.031305092790907506 in:0.020848713353460488 at:0.014270110001066288 .:0.012526810245749479 :0.012413283442322082 for:0.011719122709941797 by:0.010808400946589808 or:0.010404172990115616 The:0.01003576004804544 with:0.009811868184449042 tho:0.009295902015355835 was:0.008924239095331684 that:0.008672304223433876 is:0.0085591147338948 be:0.008335143826716943 :0.5187411282106204 +the:0.573549264176944 a:0.05255203807608709 tho:0.03674086762849966 and:0.03491473196765394 The:0.02878581778629876 of:0.025771287229399326 or:0.0226168827471117 an:0.013558107379740487 tbe:0.013498249665486364 in:0.013248693510184635 by:0.012707847287505403 for:0.010091112297032816 other:0.00981243917879902 some:0.00916657522130211 with:0.00914963596283583 great:0.00875665650176464 their:0.007683392595008156 any:0.007048010999212088 two:0.0066506830158294785 :0.10269770677330456 +foreclosed:0.0826326115191591 accompanied:0.05930666942049243 made:0.05336585618201428 and:0.05113808815574321 followed:0.0477509052190524 surrounded:0.027001067213274173 up:0.0223956915218854 caused:0.01986528146981332 secured:0.01963201700061169 was:0.019527138795776604 ed:0.0163892391762384 it:0.014428341647705614 occupied:0.014047766264405974 him:0.014002524716027894 surmounted:0.013411064770142235 given:0.012603829803430331 done:0.01236267211154264 covered:0.012285928470556887 that:0.012257320636555267 :0.47459598590557217 +the:0.15149950161005576 of:0.08142821580972036 and:0.057254200335830785 to:0.04786399102041981 a:0.0443228542565595 be:0.027331653574580332 is:0.0236704696887258 was:0.02265918079732369 in:0.0205702666452336 his:0.01829312928518752 as:0.015279678978969747 at:0.01365001345025288 .:0.011693583204026954 their:0.009998528274008295 :0.009823462592583392 or:0.009523872958289862 this:0.009097603686851986 for:0.00870413708724187 are:0.008489465147623795 :0.4078461915965141 +of:0.26183380105512 and:0.0905652446498032 to:0.07350136919190164 in:0.06328616200015628 by:0.06136860125976368 that:0.0594576510603648 with:0.05326552909581083 on:0.03876709442189405 for:0.036296592830311156 from:0.034370873043133084 is:0.020124623118294827 upon:0.019927197027386954 as:0.01913340642233328 all:0.018551717443554154 In:0.014859538834714213 but:0.01251173365377594 under:0.012412067487891634 was:0.011384693517594826 when:0.01051193667494642 :0.08687016721124903 +the:0.36100938592122755 a:0.21117839174184483 this:0.04522190055241702 his:0.028729310062332 an:0.025771338037112783 The:0.025717196166504315 and:0.02429119916349509 tho:0.022427229026834514 said:0.01818339925442418 of:0.01741761098628244 no:0.014231544242637928 to:0.01410252549234832 in:0.01370118145987991 tbe:0.009031119460711641 its:0.0075722205740217765 their:0.007346913882992674 my:0.006119424705409863 A:0.005931599050992789 In:0.005510079263838219 :0.13550643095469214 +the:0.11919516938815296 of:0.07230453158552728 and:0.05781056740443249 a:0.043018564803886335 to:0.031305092790907506 in:0.020848713353460488 at:0.014270110001066288 .:0.012526810245749479 :0.012413283442322082 for:0.011719122709941797 by:0.010808400946589808 or:0.010404172990115616 The:0.01003576004804544 with:0.009811868184449042 tho:0.009295902015355835 was:0.008924239095331684 that:0.008672304223433876 is:0.0085591147338948 be:0.008335143826716943 :0.5187411282106204 +the:0.24291935899161157 of:0.08139039566898973 and:0.06309742373370364 a:0.06120070859392262 to:0.046622291797845605 in:0.02989261147376824 Mr.:0.018406441944183536 at:0.017880702264574274 or:0.01766096001759681 for:0.014493573202023276 tho:0.01423117354753535 The:0.012281173155045589 by:0.01197003061084245 .:0.011082884126763653 his:0.010930229246406223 be:0.01079403188778394 their:0.010437772266186696 with:0.009234648821476614 all:0.009056451693396968 :0.3054171369563432 +the:0.6737155072963467 on:0.05996603591373417 tho:0.05033649558117062 at:0.034737465505947425 The:0.025461034065675105 of:0.018051854778943815 tbe:0.016483735591718816 and:0.012105207884206855 a:0.010641966886586477 this:0.008397416414294567 our:0.005835942645370903 from:0.005591229337974362 in:0.005383030296210153 other:0.0048037577285258235 his:0.004586040643587606 degrees:0.004137180276839155 their:0.004063785765578723 for:0.003581862452722242 said:0.003409450843166861 :0.047711000091399565 +of:0.11310951047998803 and:0.09899511668600887 the:0.06627885319246411 a:0.05519449271899911 in:0.05291290485886413 to:0.05241917880847375 for:0.03443915247553557 be:0.02087127228061016 with:0.01968909438382052 that:0.019616714044986258 is:0.017094140120856215 was:0.016444057123603636 which:0.015316521390282318 an:0.01305155718492801 In:0.012777752978433912 or:0.012675413056283467 by:0.011132097645448768 it:0.010633228159194348 are:0.010555517171313259 :0.3457934252399055 +the:0.404065537815308 his:0.06890249051795322 and:0.061048169260811545 The:0.060095654805858954 a:0.0553999600148603 to:0.04867542326131678 of:0.04507917422205192 their:0.040249798534082615 tho:0.027299861826815548 our:0.021189371370331042 in:0.01976914112057506 that:0.01883335700997954 her:0.016991234578926488 my:0.01668369087897585 its:0.01577323889919826 other:0.014547911605910261 or:0.0138118203478633 these:0.012016350023223975 some:0.01000783082709661 :0.028559983078860728 +of:0.09129790931378902 the:0.07369883040827747 and:0.047842263382354346 in:0.04189055351593407 to:0.04045875475680249 a:0.03542341257202578 be:0.02020462051672066 for:0.01979292654746225 was:0.01760256398103379 at:0.017380150555488715 is:0.014984483003968216 with:0.014047653760730413 by:0.01374644383819499 :0.012670486581795598 In:0.01200961464556976 or:0.011563835749786333 from:0.011391516893522809 are:0.011273104484969465 that:0.010755276030689069 :0.4809655994608848 +a:0.6489339727158501 the:0.04968497783438966 about:0.036424001026844066 A:0.02748224947882681 for:0.027216229941564918 and:0.018161918629940616 in:0.015882536081628998 of:0.014530236400952856 one:0.014187084919269198 at:0.012947884974899473 one-:0.012146185638095263 than:0.010682498472204892 last:0.010607304351886091 this:0.010577151201082423 some:0.009290942075020606 or:0.0092677998035183 within:0.009048908078314277 that:0.008091972434298815 only:0.007336025264818335 :0.04650012067659436 +of:0.1200771946266771 and:0.08085011823388627 in:0.07729099615538791 to:0.050008265494257964 any:0.045446848645355864 from:0.04337180901900968 the:0.04326145692830342 by:0.03693269684748342 for:0.03691960277758554 is:0.033344024060641006 with:0.0325999916525538 only:0.030709369676050573 that:0.030505168439642644 no:0.028349735284852465 at:0.02833692974043384 but:0.025145887808515236 In:0.025076926656931214 was:0.021684989064465733 on:0.02120173560204187 :0.18788625328592445 +a:0.46598371063772187 last:0.13619359662942387 the:0.07456763328467639 this:0.04881206510712867 next:0.04488513091112299 one:0.031992902346958785 past:0.029790721052419988 each:0.023957515419343215 every:0.023721748118867594 per:0.02093304973765636 A:0.01233019681523454 first:0.009488740963638125 One:0.007096967842925603 corresponding:0.006429838871838222 Last:0.005939999383965658 previous:0.005422389137326209 coming:0.005157285609264366 that:0.004598977634936297 The:0.004345065229091457 :0.03735246526645976 +in:0.20311678695953872 and:0.09755458869420526 to:0.0879174888634893 of:0.05922681747327251 In:0.050921097832805316 for:0.04889026336516123 is:0.04119762239966631 with:0.04077893509858381 that:0.03591806722864747 from:0.02944049601287957 into:0.02528478269189196 by:0.022332353287623202 on:0.02166728571330011 was:0.02161697762011278 as:0.019089504469644365 at:0.01636296430932191 made:0.014338572090726831 all:0.01240320118796027 but:0.011521426551509879 :0.13942076814965917 +time:0.025904355513884807 made:0.023911617821958435 out:0.016764365561784105 up:0.01658534987442212 life:0.01520757049093674 him:0.015060467516370796 city:0.014892728590067574 rules:0.014586512137852182 in:0.01457814284765675 men:0.012899365697836099 work:0.011639283889844223 it:0.011543035605373807 long:0.011211680167279152 large:0.01119766091877091 man:0.011170264988734675 house:0.010904687279962627 day:0.010376152783142028 home:0.010113532474424343 health:0.0097212395440914 :0.7307319862956072 +and:0.12773150936835406 was:0.0808029763808094 are:0.058710759863957906 do:0.05869400579854476 been:0.050449319948153465 be:0.049572167180807446 is:0.04856941999775863 not:0.04176613588995578 were:0.03698219793461576 or:0.0301083088042837 being:0.018424775294973557 of:0.014152933239862862 And:0.012329694913288352 to:0.012054773598876628 done:0.011425482302613563 doing:0.011308638697979573 person:0.011096286171308993 as:0.01067181564556767 become:0.010470384531762281 :0.3036784144365256 +and:0.09526466950274798 was:0.07869592685152363 of:0.06728714857392823 is:0.058810661237413735 at:0.04583228708106696 in:0.04131256530902744 or:0.03376904339189409 are:0.02506393675352689 one:0.024903304500836873 were:0.024526436061508314 for:0.021971443462320595 that:0.021145334048003284 only:0.020216672457649257 be:0.019892875369842276 to:0.01764940361846595 but:0.017168648864136077 with:0.016774389785306775 In:0.015114929860401641 from:0.014725856030941502 :0.3388744672394585 +the:0.5740798917828762 a:0.04865621364845166 this:0.04301073232470185 tho:0.03193910403169184 The:0.029053261492311345 to:0.025034933014835323 our:0.02469328331503211 his:0.024122699350895727 and:0.020002110797926707 their:0.017808299368978465 an:0.017401694103899072 of:0.014832374488344778 its:0.01466340460110219 in:0.01336418238028545 no:0.012937743675971478 any:0.011965348027235354 my:0.010656098808952526 for:0.010015782910054042 tbe:0.00981593140048201 :0.044946910475971824 +one:0.1028303141280697 part:0.05963429477052991 out:0.04766456937681193 some:0.031418679026461914 members:0.030764490253327767 side:0.029940657362655835 portion:0.022063658796890564 office:0.020457735219956013 member:0.019726706386316174 end:0.019666887540649894 tion:0.018667441728710307 parts:0.016814747270460957 people:0.014112771422418794 all:0.014072739582212475 any:0.013183573287639892 One:0.013083578354183906 that:0.013024335602903442 account:0.012482348155001894 many:0.012077825070275192 :0.48731264666452345 +to:0.17619375720251917 the:0.17188868918970876 and:0.06020862468276461 of:0.05743126477208326 an:0.02483848178160008 in:0.02419604261095259 for:0.01582178915333312 a:0.01531443672281475 by:0.012284122963321395 The:0.011493941731847078 tho:0.01096388743957624 will:0.01094335183426397 their:0.010704064787755995 his:0.010546482696702369 with:0.010325182321858745 or:0.009231044967376516 its:0.008936996306702487 this:0.007384297022785313 that:0.0072157310843884125 :0.34307781072764515 +of:0.13768765193239565 a:0.08811758046565901 the:0.07205610187286211 in:0.06466286395852586 to:0.04517617698899802 and:0.04073607126593836 at:0.02412788961907092 that:0.02017819640312859 on:0.019555368205874914 with:0.017574927833146577 for:0.016962795995507894 by:0.016908491797412377 from:0.01685004154751935 In:0.01512926701616415 or:0.014427164409902056 his:0.01274120825231578 as:0.010866075325131324 their:0.010474362171046357 an:0.010264796691277174 :0.3445029682481235 +United:0.7702858526957745 the:0.036719287042394626 I'nited:0.0166088454640172 Uuited:0.01009141294051329 nited:0.009732451399543308 of:0.009280050029291494 Southern:0.009180550545600697 ted:0.006431167942267937 Confederate:0.004016325023407906 and:0.003825285608103333 at:0.003278882441307743 several:0.003060200544511201 per:0.002861627223019568 The:0.0027040193860937154 two:0.0026943199771180416 tho:0.0026532809884855326 said:0.0024751308501305214 Northern:0.0022662004928534324 I'nlted:0.002195896459553806 :0.0986392129460122 +and:0.024982501697457738 delivered:0.01910596194876955 owned:0.018702645706902696 assisted:0.01659708524976369 made:0.014129195174853844 conveyed:0.013958613775514118 called:0.012682092789976963 that:0.012053722166215074 accompanied:0.011546664852196072 told:0.008322887137969689 .:0.007856765410331657 led:0.007549582282159509 sent:0.0074982082905821305 north:0.007284297302134294 occupied:0.0071641931569487475 provided:0.006907468680399129 headed:0.006209474504521813 ed:0.005923159123970654 paid:0.00517777332925334 :0.7853477074200793 +is:0.12963377171242313 that:0.12800154154091503 and:0.10925362695054108 was:0.08098918970159649 had:0.07667094004907254 have:0.07273522380318662 be:0.04739307608296393 has:0.038709624848801125 with:0.028244885010363787 of:0.027362788588421023 but:0.024185280934264787 are:0.02338362255462607 Is:0.022694890801160727 for:0.021519970560275537 by:0.017577769543919732 been:0.01590959014190041 to:0.015898590762861785 were:0.015838421985205346 make:0.015471024135750555 :0.08752617029175029 +of:0.28715227772293556 in:0.08708059440321025 on:0.07450680912727799 to:0.06910778396518073 for:0.05287679991587152 and:0.04945432970928922 that:0.04559720572411612 from:0.044209894671195085 with:0.036762572190251246 by:0.030795082876618512 all:0.022659846191280784 In:0.019133884094749684 at:0.017812103304037402 upon:0.016259067111223505 as:0.01517116062597205 which:0.01311181714688541 into:0.012348254827751268 over:0.0115088534321736 through:0.011145666096739094 :0.08230599686324093 +was:0.11387655889958978 be:0.11131833487507702 is:0.09645165000366662 been:0.06045257285984912 are:0.05304778235364241 and:0.046961528248509375 a:0.046860328522653344 were:0.04606735684885097 not:0.04084086753522012 more:0.034324790555098704 most:0.029693153547493696 or:0.02117786613510553 the:0.019432071662817737 in:0.0192171043118798 have:0.01848178480955498 very:0.017362821525795137 Is:0.015306956345740839 had:0.014673546309275701 I:0.012578720280889324 :0.1808742043692898 +that:0.1961722987032994 which:0.08412191461131324 and:0.07841047109871702 when:0.07232168718578792 as:0.06507901644476699 if:0.0374477928261816 w:0.022842281319013814 where:0.021638895840544303 but:0.017533124272418245 to:0.015237065688737284 of:0.013356602946882994 If:0.013108908251555973 what:0.01300085305050346 When:0.012545042200659724 I:0.0123182521610029 whom:0.011688675573968686 before:0.011356746168245967 Then:0.009981588223653443 the:0.009024397980207348 :0.2818143854525397 +to:0.13622358970326373 of:0.1181351529372682 and:0.08536077253478457 in:0.054761693634770556 with:0.050814003105502416 told:0.04741846832476793 for:0.04634371396675075 is:0.03577481025371119 on:0.026110555254095325 made:0.024706092615421584 was:0.022911550521354712 that:0.022030930714212842 from:0.021810004196887202 upon:0.018963274848610517 at:0.018803127205266494 but:0.01852680217653505 or:0.017356532123885837 by:0.017042810723470237 had:0.014632087199946972 :0.20127402795949392 +the:0.42853116791000984 The:0.26387887667309284 his:0.042321822199733065 at:0.03617217264824504 His:0.026941083919823042 tho:0.02292904993275266 her:0.014583320175441642 Tho:0.014071210004010667 and:0.014000701066900679 that:0.012958210825461605 my:0.011293742286801465 tbe:0.009704661379666817 was:0.00860344508428905 At:0.008602279293060695 This:0.007536662192696436 when:0.00735907433511743 their:0.007176364482312453 My:0.006793171743055946 until:0.005730389731044016 :0.04981259411648461 +and:0.07392474034543257 him:0.06198178384813106 died:0.04158102333948382 look:0.03814300185144082 was:0.03586732294146521 looked:0.030411393153738017 held:0.02551257319274883 up:0.022540366265227974 laughed:0.018171792656822706 out:0.017190295689073685 it:0.01710454471376369 made:0.016429681605736022 them:0.01551808650746227 down:0.014630875066646218 is:0.014529989969147533 arrived:0.013482180530834874 or:0.012618212393813217 man:0.012519500303572937 that:0.011837906393804014 :0.5050047292316545 +of:0.3555018989266852 in:0.08826447750029644 to:0.061879991203947125 on:0.06100578240805513 that:0.05741440502211928 by:0.04945090334125481 and:0.04727459031095253 with:0.03917272065694982 from:0.03115917701171278 for:0.028553041493677784 In:0.017879734886585737 upon:0.013876233208088652 under:0.011740913770165803 as:0.011697967580571013 which:0.011274041571457253 into:0.010191561822116921 at:0.009275890810513826 all:0.009267948301990315 when:0.008815388823356116 :0.07530333134950347 +:0.08587771552681153 it.:0.019993700576966825 them.:0.01816068697347018 country.:0.010562162256791404 time.:0.01031598418312106 him.:0.010243512735646946 day.:0.010153042282386641 .:0.010047876183444967 people.:0.007078779094063255 law.:0.00704014890967453 of:0.006851984349961603 year.:0.006650309908776964 city.:0.006536800392516686 years.:0.00652804978824307 life.:0.006142905183105712 county.:0.006126929806994301 night.:0.006064416541590335 us.:0.005747887412954747 world.:0.005601430431348247 :0.753275677462131 +the:0.17290149481251532 his:0.1305064848254041 said:0.12154759530072631 this:0.09985519928396593 of:0.08518907579589574 my:0.04043270051948038 their:0.034185212034539406 your:0.029445872916931397 her:0.024709192375256633 such:0.023791439316308303 and:0.02360884161291415 our:0.020442852956273842 that:0.018335312936020972 own:0.017044280145018877 its:0.01682632915524877 a:0.01420599052715704 good:0.013733981952238069 any:0.01336516983744544 great:0.012869163971902586 :0.08600380972475671 +the:0.10785936344840133 of:0.08041832059700071 and:0.06606829444959902 a:0.05643038308012388 to:0.05535280337717975 be:0.02853289252669998 was:0.027105035006482578 in:0.0247654133565907 at:0.015793819366212335 is:0.015728651725315592 :0.013428133240815843 for:0.01204466748614453 been:0.011592220107946525 or:0.011211388204423864 are:0.011026362473945926 his:0.010811659072250212 by:0.010680387155496561 were:0.010201582804998114 from:0.00959972225656998 :0.4203489002638025 +a:0.34694753086413854 the:0.29949922726750544 The:0.05382482725857128 this:0.02579980598990071 A:0.02403546939901246 appropriation:0.023539336086391444 tariff:0.02195734533094892 tho:0.016173727558042996 Senate:0.013002798285937285 said:0.009169244709504944 senate:0.008767333829119841 House:0.007918687823633483 tax:0.007200452480536459 tbe:0.006691909255780583 no:0.006263737022258854 This:0.005529104041576356 which:0.00504722350843671 and:0.004820117576638373 that:0.00446289080146753 :0.10834923091059773 +day:0.04715990940503583 side:0.04481230733837921 out:0.040599925605443093 state:0.03791742259418964 State:0.03011586482395089 line:0.02377160454007714 part:0.018400757132910416 one:0.015347333093222455 tion:0.014537957211081661 place:0.014125300401250753 that:0.012550286981749998 people:0.0123935275768885 parts:0.012157643543607103 time:0.012113235378543842 point:0.010946852949716564 city:0.010189052462937961 members:0.01016401313997745 and:0.01008186742282376 power:0.010070557116498735 :0.611544581281715 +the:0.3614397917371863 his:0.1530904768897001 her:0.06655015536347202 their:0.056312551179686525 a:0.05554607557500928 and:0.0379670073076393 of:0.027053812829736856 at:0.02584410697320273 The:0.02144860701965839 our:0.02009391593478739 my:0.018899235788876825 to:0.015133568240893342 tho:0.014990443747496543 for:0.0122846518026521 its:0.00980059212294953 your:0.00971825122873239 go:0.009276922802534436 came:0.008254386396942114 whose:0.007984281769595649 :0.06731116528924816 +was:0.1366211888929936 is:0.08109760599499606 and:0.060585359861018415 are:0.05703429847279192 be:0.053573021916708215 were:0.051287253758687715 have:0.03988337501237089 had:0.02911490939441872 who:0.028697051123889816 been:0.027994788645597526 has:0.022544321099629134 he:0.020131590822353974 I:0.01950620630456285 Is:0.015812628710512287 He:0.012209722380528424 they:0.012110916178175378 not:0.011816572456062494 we:0.01169012150751694 being:0.011104345546680085 :0.29618472192050554 +the:0.18179470057646016 of:0.08674409487437103 and:0.05891648439314675 that:0.051941563313423325 Mr.:0.03611963772989963 The:0.035221556342727924 a:0.033511640089725174 this:0.017206977935928718 or:0.015340377669888175 in:0.015328798889933605 no:0.013728208994337746 to:0.013049490199744891 tho:0.01283137533392388 his:0.012339015515583624 as:0.011873037242155523 an:0.010118708549008397 other:0.009951283100883423 their:0.009878834116132332 :0.009664375379880793 :0.3634398397528449 +they:0.1339461974459378 who:0.06449150759567976 there:0.05964669119660761 we:0.0585849824831157 which:0.04520706527438132 and:0.04286863407622332 you:0.03913729104764804 There:0.03396718801066769 They:0.03209640169845594 that:0.031200974702725145 men:0.019845671685432692 We:0.019418999595623168 people:0.013692363921183908 as:0.010974793792506123 them:0.008386153753557493 these:0.008192396320777473 You:0.006556364269777689 These:0.006145955695672415 but:0.0058114506320729896 :0.3588289168019537 +to:0.07273335827565468 the:0.06271740311031372 and:0.05722665776778148 of:0.046660742665512046 at:0.02883366493847227 from:0.018253302423304026 by:0.018028124187343522 No.:0.0170145733499165 :0.015264675990110452 Mrs.:0.01377810354298473 in:0.013145794002926809 that:0.012970109646434082 .:0.012273780766761028 a:0.010148869629626666 Mr.:0.007919620161072624 degrees:0.006866273356805314 thence:0.006676831004776 which:0.006502568300595458 when:0.006109174396232923 :0.5658763724833756 +of:0.24771856616623836 to:0.10055514755145552 in:0.09984480279807748 and:0.05814117240642057 with:0.05158849496637837 for:0.04613065771486411 on:0.044432355864291194 by:0.03519649785437645 from:0.03338388255327628 at:0.03070401576666744 that:0.026848878623973782 In:0.02041195271981872 upon:0.015248471773457326 as:0.011599582931726849 all:0.011326016994932605 or:0.008867228292995478 up:0.008407673252508876 over:0.007381477118522736 into:0.006992770039889695 :0.13422035461012818 +a:0.3941254481609621 in:0.17220266431846226 of:0.08223369137065804 the:0.050218762903337356 for:0.03923348458467668 In:0.03693372356118089 with:0.0346559625610637 very:0.032196637656843684 and:0.02102727556564513 no:0.020290247392587557 any:0.01505202801211807 make:0.012278052995464628 to:0.011968335442132329 his:0.010903867276210118 from:0.009722789102209271 by:0.008120258168989775 some:0.007512410765447701 their:0.00717654124105305 as:0.006477864846327618 :0.026669954074629968 +of:0.28767355066866834 to:0.08775711267569858 in:0.08678131196995101 and:0.05160598694501188 on:0.04646139928102899 by:0.04519522654900943 for:0.044547789071328545 with:0.03396756772609607 that:0.033699232901107726 from:0.03075346596941143 at:0.027039283056790858 In:0.021061449543044047 as:0.017514234937992545 all:0.012543839382496166 upon:0.011844431150487573 is:0.00998972746569266 was:0.008814315973987914 into:0.008557199930727406 through:0.007781895704231326 :0.1254109790972375 +as:0.07139267848462054 and:0.04285216149044423 is:0.03723616991569202 him:0.032019334929216596 according:0.03195463490888989 subject:0.031108705360828822 go:0.027676052260423214 able:0.025340944484452545 up:0.02493966677199351 them:0.02473104216985622 began:0.024537212695528537 enough:0.024151629008910932 allowed:0.024098183558839886 time:0.023442797462454434 went:0.02267626445891904 or:0.022133378202945718 necessary:0.02210441396559868 right:0.02204763433762386 it:0.020880692709267346 :0.44367640282349396 +be:0.209573729605681 was:0.15427487337336476 is:0.10665864128619879 hereby:0.08802773888094628 been:0.08236652018461833 are:0.04729950478463548 were:0.0430793507592517 and:0.040520957998742856 he:0.024871893721190138 not:0.016568025888291194 being:0.016015381330848063 Is:0.014731227022124491 had:0.013782458034437582 bo:0.01364614191429602 it:0.011698440796852165 now:0.011687528420214017 I:0.011501831123198242 well:0.010648195004531508 have:0.010506930674417492 :0.07154062919615992 +made:0.07453790729121423 and:0.05807830969714977 up:0.020024303027593966 shown:0.017711899585202487 taken:0.017297559853777483 out:0.01664412323021441 given:0.015978878939984755 ed:0.015236680247841096 done:0.01508808385923035 owned:0.015069938546480484 or:0.014321012174771906 down:0.013659830600644868 him:0.013404264743741286 paid:0.013205791828682627 caused:0.012019364900619986 held:0.011919470162092055 that:0.011804625997403602 it:0.011702589258673447 approved:0.011588061100703791 :0.6197073049539774 +the:0.23036004989434594 and:0.10735507852482493 of:0.09095340405452146 a:0.08731264345009751 to:0.05737422043041277 in:0.05100566195029075 his:0.04395031236277199 my:0.04280459381732813 very:0.027971615623692648 for:0.023514835097225288 their:0.020621303102200082 In:0.020402229784666836 this:0.01740406319963368 with:0.017292959863142342 that:0.017157758371527894 The:0.017104287489414012 as:0.016734789659749515 whose:0.016212213797017618 her:0.01429902971177238 :0.07916894981536424 +way:0.02888451314585226 it:0.024586435136818956 out:0.02139317394256661 them:0.01864954981377768 go:0.018360589525007194 come:0.015473742588838648 went:0.014512403913963835 enter:0.014477789959117743 came:0.013466153119017384 him:0.013287891192997505 and:0.012692008323590404 entered:0.012324248669133342 back:0.011336016920214572 coming:0.010204166481375053 down:0.009953761404110122 up:0.009846220731687571 taken:0.00983507628677976 fall:0.009750772045521276 put:0.00820360685478413 :0.721761879944846 +a:0.16473288420521479 the:0.1149673277857237 that:0.09382095462414451 old:0.06822650539925115 young:0.06664080557337328 this:0.04559047000690066 of:0.043469555820004745 and:0.03769945067788109 one:0.03310536172076245 A:0.030486254392111622 any:0.023679118287011344 good:0.02270874392889878 The:0.02125121250135595 every:0.020926227451950084 poor:0.01609721442326322 his:0.015507758620332926 other:0.014613055165771183 by:0.014612835917139922 our:0.013647249882187932 :0.13721701361672065 +him:0.013685224500584972 it,:0.011850765898855566 him,:0.01116302635945001 up:0.010713357689980777 ;:0.010282615926617644 men:0.008369918824643737 man:0.0078106708849200995 in:0.007582077589194208 them,:0.007456239400536792 out:0.0072749592703852915 here:0.007172626886995911 it:0.007112289914622978 them:0.007044713799245517 time:0.006686525175955759 made:0.006166936278983387 work:0.006161884093288496 years,:0.006076482977602065 money:0.006036363858432815 home:0.005755957758660426 :0.8445973629110436 +the:0.1225076649597919 and:0.07161361224167645 of:0.06473629272949444 that:0.04958618514670853 in:0.028043918893866652 The:0.018977980784367614 which:0.018116365783577473 a:0.016457792131635864 Mr.:0.016204994403703713 any:0.014996833454149294 as:0.014951613809545558 or:0.014949554079500006 such:0.013882217367030407 to:0.013849308168220787 no:0.013167338522426214 he:0.012643594782225433 their:0.01149823381066073 for:0.011150101666402977 other:0.010739089653356843 :0.4609273076116591 +the:0.125244177620508 and:0.08175993685002995 of:0.06522069416930851 be:0.0548702739616459 to:0.05397973838865912 a:0.04481454131132746 in:0.02280340110740976 or:0.02038336764964828 is:0.019319010380680113 was:0.018270747950086045 I:0.014286571876306 for:0.013255035370608584 not:0.013226175954496275 been:0.01178939555333445 his:0.011478124918380829 their:0.011092690956782222 Mr.:0.010724349632519042 no:0.010703905414057096 he:0.01028438958216717 :0.3854934713520452 +.:0.02272537360763987 :0.020717713741445525 B.:0.019352510701787035 Smith:0.01671268010638753 and:0.015307061189352064 M.:0.015196932104648132 I:0.015008189872257346 1:0.012419309758234444 C.:0.011864666495489515 Miller:0.011460110866963285 Morgan:0.008555433580482379 A:0.008445717413703624 Baltimore:0.008254282238322532 Mrs.:0.0081274984823389 Y.:0.007562011635819671 S.:0.007030573982512968 J:0.00696373844461653 Myers:0.006399049087179343 by:0.006125687499341047 :0.7707714591914783 +it:0.11903519060819717 It:0.0979489614070233 he:0.0924155844789016 I:0.07350172811086161 which:0.07162775946917335 and:0.04406644166417592 that:0.035819651786465 He:0.03230400228058327 who:0.02837719995982551 she:0.02739021135726536 there:0.025385659621580608 what:0.014828049345635374 She:0.011748916809223603 There:0.010997281504373157 This:0.010801215268364995 as:0.010239633141285382 ho:0.009305193000540661 1:0.00898424715156743 but:0.008173608145541121 :0.2660494648894156 +of:0.33243295824047175 in:0.08661687345065307 to:0.07005364688287932 for:0.05505356412022764 and:0.0515419164869115 that:0.048887187303688455 by:0.044449844155528676 with:0.044343672260638616 from:0.039149260249050404 is:0.02319869304377923 as:0.023060005782728585 on:0.01984381066118976 all:0.01979453656232151 In:0.018098564724332245 upon:0.016425840695651277 at:0.012189935132232313 was:0.011720436741346365 which:0.010996562974107928 have:0.008105179787906034 :0.06303751074435529 +Mrs.:0.09527573031570291 Mr.:0.05625354551456112 .:0.04440443251000948 of:0.027934490978331308 and:0.026048538506636645 Dr.:0.022899468498269362 J.:0.021382314333018643 W.:0.019684893144466066 by:0.019189087273989776 C.:0.017802333722543202 B.:0.017208097157914604 John:0.016863769123290257 S.:0.014264000950316236 Rev.:0.013994148006564244 A.:0.013354773801605045 M.:0.012399540929334511 to:0.01203600218598238 H.:0.011730377763052042 :0.008632161844017036 :0.5276422934403951 +the:0.5273321122906109 The:0.08598582852494423 a:0.04574274576555373 tho:0.03728438354681643 that:0.029662275028528265 this:0.028714985807552437 A:0.024737298557984056 and:0.023220613528363326 of:0.01572154394748988 said:0.014935612647213811 tbe:0.012879471316931441 his:0.01246305537707085 our:0.01184753758130121 old:0.00904416682494953 an:0.007584556740232902 their:0.007524536097326928 to:0.007397511678199116 every:0.0065269586374498605 her:0.0063988602733390035 :0.08399594582814197 +number:0.08683069308129672 out:0.05652523988365806 amount:0.0316160995429281 loss:0.03003158991922196 thousands:0.02193415724864308 plenty:0.021327800488850416 time:0.02084447319022837 kind:0.02068065360314574 all:0.02034476343485012 use:0.01987581810044361 means:0.017489403156055485 place:0.017484157051135582 deal:0.017371256224811903 purpose:0.016977074526153133 day:0.016383311738487803 kinds:0.014686781173143919 matter:0.014455532536242705 set:0.01445093555379865 way:0.014287353369565244 :0.5254029061773394 +more:0.24660455763949624 less:0.08756790931670996 better:0.060370254636939395 greater:0.0518816215117367 rather:0.04805256200241945 other:0.02767855686465698 worse:0.02120354034231053 larger:0.017608033222321604 and:0.017225653644236304 higher:0.015601437448654313 lower:0.012185688549145913 faster:0.011305211624286503 longer:0.00912712338791226 More:0.008590014807536538 it:0.007382283552975717 cheaper:0.007298923513635563 smaller:0.007042172377157706 moro:0.006860368781614781 time:0.006719737293813688 :0.32869434948243986 +his:0.2092265773554288 the:0.17493818164072877 and:0.11848992115763733 to:0.059342357942106155 their:0.054414544200593086 my:0.03876653816932517 a:0.030230093577837007 her:0.02836597829272289 our:0.027732110809131252 your:0.027492194174874283 of:0.021312848221575347 The:0.02096889098704538 its:0.015901437476822516 bis:0.014823438568327432 who:0.014416293192938488 whose:0.013362275833598256 His:0.013249538492865559 for:0.012629946689582693 tho:0.011082919925257603 :0.09225391329160199 +went:0.06527228071368989 go:0.05619934446464802 came:0.040550395705713206 back:0.03555337887687652 it:0.035376220595961315 out:0.03490526632483226 put:0.03355619440406013 down:0.03042882513856963 come:0.028160683632563837 them:0.027165266356164442 enter:0.02685927818294859 up:0.02683395703545789 brought:0.02610450155923051 way:0.025650479473236742 taken:0.024297963337896748 get:0.02381342012574062 entered:0.02315017182132224 thrown:0.022312163284405207 going:0.021115908751936613 :0.3916943002147456 +the:0.12501213529677174 and:0.07155652309953148 of:0.052609940129058716 in:0.028320735107419746 to:0.027352226368332348 that:0.023655582888587063 was:0.022042931093136858 I:0.02117992979569259 be:0.02040334901588246 for:0.01915073747965047 a:0.018186963787182143 is:0.018082597111518887 on:0.015141432607690512 he:0.014740905412035949 his:0.014678343154957307 or:0.014471548948014279 you:0.012428922258617232 dis-:0.012004838166587189 it:0.011271760331748027 :0.456708597947585 +it:0.11374322064888397 that:0.08849285012647748 he:0.07063955931144668 they:0.06949213004085569 which:0.06736589041601566 I:0.052851628784311155 there:0.052636319515748785 and:0.03940645560462026 It:0.03496997626600035 as:0.029539693226368003 one:0.021375715078995033 who:0.02131540234433632 she:0.01825176246873039 what:0.016375602637648534 nothing:0.01601436614232326 we:0.014986875889322562 you:0.011323834703834875 man:0.011087536301107122 Nothing:0.011076268021484523 :0.23805491247148938 +it:0.14451336976349813 he:0.11975742237649803 that:0.06710891800133913 I:0.05993046175951413 It:0.05858046485854265 and:0.05103660713477182 which:0.03865149030276486 they:0.037599435035442545 she:0.031014211019922484 He:0.022977002405834775 who:0.02175054321120206 What:0.020862064609756058 what:0.020055605478256733 you:0.01913663086089471 nor:0.016157866732744403 This:0.01531945140240129 we:0.014932258725269168 man:0.01432398952914445 but:0.013372676834402818 :0.21191952995779975 +the:0.49035434956700047 on:0.08517377185410101 a:0.03870091249898104 of:0.034378433297259765 The:0.029934342992891844 tho:0.029237540799849377 and:0.02100484619986415 to:0.01613172359350281 in:0.015712035997165783 tbe:0.012389385526640383 at:0.011776997769140915 an:0.0074154143625951045 from:0.006613987387779495 .:0.005769622662382416 his:0.005461441632484375 or:0.004924263724503763 said:0.004759149615941001 this:0.0044304130359915424 :0.004145651410355931 :0.17068571607156882 +be:0.25038948727661975 was:0.1340189859798464 is:0.11132954408430094 and:0.04791907813884322 been:0.047568674779643494 as:0.03382952824267217 not:0.0330697134101521 more:0.029583517568897988 are:0.02660399668268342 so:0.024195784933946515 being:0.022315980982965892 were:0.021194646603438127 Is:0.019192311658519493 it:0.017081683988090946 bo:0.014937265130150547 he:0.011645766188368578 very:0.010133187683129 the:0.009030363684877907 un-:0.008089458691588369 :0.12687102429126518 +the:0.09710638342296822 of:0.07519624546914411 and:0.07438757006621839 in:0.030686646755997322 that:0.02840375295097505 Mr.:0.026625623872367995 The:0.02550321863357504 as:0.025264413546255526 to:0.023971518867204583 which:0.023191428908125183 :0.014120165788792117 a:0.01246976947550971 such:0.01166252496465412 or:0.01083812932248055 he:0.010267060972240151 for:0.009149238637766156 much:0.007965652638738736 con-:0.007892449685318803 Mrs.:0.0074075163130566946 :0.47689068970861154 +of:0.07579084119335612 the:0.04614134127430338 on:0.03002483668462034 and:0.02950999047077763 to:0.028566379757487822 in:0.018867489175451353 from:0.015429162988647202 a:0.012323522923153264 by:0.011714589156909948 :0.011512526355065882 was:0.009663531926518672 one:0.00930432334603806 be:0.008871569797716675 that:0.008772366017355614 said:0.008354373059479336 1:0.007723912391910622 at:0.007204684142227571 were:0.006711371302436765 feet:0.005834579007141651 :0.646678609029402 +one:0.1028303141280697 part:0.05963429477052991 out:0.04766456937681193 some:0.031418679026461914 members:0.030764490253327767 side:0.029940657362655835 portion:0.022063658796890564 office:0.020457735219956013 member:0.019726706386316174 end:0.019666887540649894 tion:0.018667441728710307 parts:0.016814747270460957 people:0.014112771422418794 all:0.014072739582212475 any:0.013183573287639892 One:0.013083578354183906 that:0.013024335602903442 account:0.012482348155001894 many:0.012077825070275192 :0.48731264666452345 +in:0.21027436043476025 of:0.21015465374089126 with:0.05139428535306126 by:0.047696282632699497 for:0.045209427064811916 to:0.039656657808395585 and:0.03560928045474837 is:0.035396015591240025 In:0.035071595400449865 as:0.033541933164512434 such:0.028056408745349773 was:0.02063281659601603 on:0.019816170415704763 that:0.019388588093200893 into:0.01717623916673112 have:0.016798613927829508 from:0.016406163728853587 at:0.015359247903876905 make:0.012926944613036737 :0.08843431516383021 +he:0.07715981935363515 and:0.06412837858422768 one:0.047601215757415744 it:0.04717069236149591 be:0.03093192162827954 man:0.030828465077092967 they:0.028622058614967517 It:0.02065296801498406 He:0.020194252779616697 I:0.018140809568835303 she:0.018106594477091554 men:0.016100897450477384 you:0.014763930005444572 who:0.01433596660966865 we:0.012949606844954612 that:0.01236697510331225 which:0.01205240520999546 was:0.011123626309327532 but:0.00969164583269841 :0.49207777041647904 +of:0.3527823447521028 in:0.1147055776881556 to:0.06751182907308442 and:0.05310771418764667 that:0.05083045865274162 by:0.04232091237794862 with:0.03565549205303523 for:0.034883559767164334 on:0.029605820720611364 from:0.026581140825110924 In:0.023006611368122615 all:0.015953949264447202 as:0.014369712011632835 which:0.011064449069543819 when:0.010713400826099048 at:0.01006452038561197 upon:0.009858084197695913 into:0.009813603239525091 through:0.007483326020772016 :0.07868749351894792 +women:0.10361687677721036 men:0.060059622751598644 hundred:0.04347077448161026 wife:0.026176245433134338 wives:0.025983607493337297 boys:0.02130499363861579 up:0.013585466632350558 officers:0.01078695792012304 gold:0.010662052368952303 man:0.010568350560175178 street:0.01047575756718836 relatives:0.00982482608478021 one:0.008912693673061295 in:0.008789004503326462 rights:0.008754217126529603 three:0.0082688534356199 husband:0.00825614289662612 1:0.007565937013347716 and:0.0071553589441111995 :0.5947822606983014 +of:0.14099302775852257 in:0.12945665500027304 at:0.10499182636892174 for:0.08949666925435888 during:0.08267893998853247 to:0.05955747458837054 In:0.046310445714339295 on:0.04620701923095333 and:0.03924863122768072 At:0.024216256282471014 that:0.021058717364206343 within:0.019693509019190494 until:0.019500150890029728 from:0.019372741179938584 by:0.018824136323233955 after:0.017748335374084108 was:0.017079504575661 During:0.016534870500016785 before:0.015096969226122832 :0.0709341201330926 +and:0.16158690122644542 that:0.1447913206276728 as:0.07893668582335285 when:0.07760067788430207 which:0.06862297440878774 if:0.056062617968460286 but:0.04551880164020843 what:0.03304325593238753 If:0.029666100471089297 do:0.02439815778336439 When:0.02405365404095852 until:0.01776081252090497 so:0.016328883164591777 But:0.016024240804204958 will:0.015934322236113733 because:0.015198261473204936 did:0.01391636361193878 yet:0.012877373034062839 before:0.012622463032397698 :0.13405613231555097 +of:0.28767355066866834 to:0.08775711267569858 in:0.08678131196995101 and:0.05160598694501188 on:0.04646139928102899 by:0.04519522654900943 for:0.044547789071328545 with:0.03396756772609607 that:0.033699232901107726 from:0.03075346596941143 at:0.027039283056790858 In:0.021061449543044047 as:0.017514234937992545 all:0.012543839382496166 upon:0.011844431150487573 is:0.00998972746569266 was:0.008814315973987914 into:0.008557199930727406 through:0.007781895704231326 :0.1254109790972375 +was:0.21972469627355634 were:0.1088580632473147 been:0.08326426563000651 be:0.0763937335376508 are:0.06266225844432081 is:0.06160252040705338 and:0.03119867951596647 being:0.03078762428363742 had:0.025222247793440785 of:0.023449327951472247 not:0.022784218257813193 to:0.02230796361309505 have:0.022221194848911545 has:0.02103571367079411 in:0.014954790760898487 the:0.013103148507205733 or:0.011339672791042333 Is:0.00813476925317291 as:0.007854604202627895 :0.13210050701001927 +the:0.21110058411517116 a:0.1281402762686686 and:0.12253852323769344 of:0.08739492928285292 to:0.03881060123754206 or:0.021488520862342455 The:0.020153742936739095 at:0.016285137779495182 on:0.015582799350039075 for:0.014154754788494072 tho:0.013975478419656802 in:0.013737461496240097 about:0.012769249765262636 an:0.010915451327988747 from:0.008889467236304228 two:0.008560934494283717 one:0.008208271164730052 all:0.007783231900064477 that:0.007381859477546566 :0.23112872485888464 +of:0.3083555209216359 the:0.17312153904922936 and:0.07176317865425368 his:0.058033101729614775 to:0.054023699497489724 in:0.04430461773611165 for:0.02498422782152727 their:0.022138433241805703 by:0.020952962201816812 with:0.019766159188693917 a:0.018774146373170094 at:0.01242336099139225 In:0.0110466383171251 its:0.010886706400105603 on:0.010278170688598015 my:0.009788297473455722 from:0.009032158751355797 tho:0.008569973587947699 her:0.008238440717845385 :0.10251866665682559 +and:0.089953197834792 the:0.06358784070899033 to:0.05984428876459673 be:0.05376135932107193 was:0.047495799157840475 is:0.033868360704745124 are:0.031120490598852604 were:0.02859634958392604 of:0.026150059282459566 been:0.026124931288312597 not:0.017125339818952846 he:0.014630181674761034 they:0.014614271015939194 will:0.01382523639984435 I:0.011442018363054085 much:0.011201101373094305 or:0.011103058565006848 in:0.010840902582225299 it:0.010791664242350832 :0.4229235487191838 +and:0.07926989180297876 any:0.07521134084163213 no:0.06213062964082225 is:0.060532097473361544 of:0.060089038402325705 was:0.05857170495082533 every:0.03919832125449284 to:0.03673545679013285 only:0.03646923460653891 some:0.03025037854978982 but:0.02852880491082984 at:0.028069499341301114 the:0.02704665179942614 that:0.026909141317964517 each:0.025860634188098232 as:0.025341413322282434 be:0.024439869872974862 by:0.023747094773713586 from:0.022981400424070094 :0.22761739573643905 +hundreds:0.43828039580293154 tens:0.24959350226070584 number:0.03693242540195931 thousands:0.020922541114251833 dreds:0.014786497398607733 some:0.010705913494963627 out:0.010378524071798253 one:0.010243186749591668 and:0.007494693634988743 time:0.007434753305899953 part:0.006623916568048215 that:0.006387577601928149 amount:0.00583917549673895 day:0.005802531847636069 tion:0.005737173617341288 work:0.005456921705867115 millions:0.005344123384037175 use:0.005073979115350494 point:0.004861410624972 :0.14110075680238207 +the:0.3201644818750837 and:0.10093179690440814 of:0.07399731248592784 an:0.06707764736603107 their:0.03529355660878121 The:0.03503588924087485 his:0.02647261150806115 tho:0.02639432023241519 a:0.02173397502972471 for:0.016928540879962158 to:0.014232876946266041 tbe:0.011395184331654148 said:0.011217644078975993 its:0.010293177206932949 is:0.009527323193514068 by:0.009359054971088738 or:0.009339815468300183 on:0.008484067737097808 with:0.008287734537205159 :0.18283298939769488 +in:0.12314179659360133 for:0.10834130742079313 as:0.06909294015386931 to:0.06529342051036928 at:0.059688578325571146 of:0.05877774212499061 was:0.05586932046173717 and:0.043423407062572306 In:0.03601318110104587 is:0.03571900201201092 with:0.029820827828295572 on:0.0266017812806369 by:0.02452957024036225 that:0.02425553352550055 not:0.020099876784690853 be:0.019367276509607696 than:0.017835582446969978 from:0.016959867827379717 after:0.016053692663627786 :0.14811529512636762 +the:0.18093847180427372 of:0.15386014884106572 to:0.1098907744846781 for:0.04246542428416682 and:0.0353866689320234 their:0.029278396292706885 in:0.027109062842459362 said:0.02526744309677972 his:0.024973615658155916 The:0.01788671772134782 our:0.01785313311693543 good:0.01727176532134629 on:0.016951387114552657 no:0.016547288156780686 tho:0.015047808366955849 or:0.014456883023366628 a:0.0143691097627551 this:0.01420361710812765 from:0.013985922210028569 :0.21125636186149369 +the:0.24718805411625672 a:0.17594498460499622 of:0.10496521535221016 and:0.091426641608219 very:0.04609168711993366 most:0.032373215487097574 are:0.027541638800703726 is:0.024798927774928706 was:0.023821031339430705 The:0.019709602711093063 to:0.016003268594058557 were:0.014951487299272679 be:0.013473908425107864 their:0.013204016312095147 in:0.01282004991421916 its:0.012252287917807247 tho:0.01212576024234046 his:0.011878740243268689 with:0.011775734665183918 :0.08665374747177672 +the:0.2405701231956507 a:0.11689033565102241 and:0.07100015518739707 of:0.05342201567884064 to:0.02711228534482289 The:0.018861523508649718 tho:0.017997245792722903 in:0.017965545697121693 an:0.013758584503083288 his:0.012652503755604725 for:0.01186286626588626 that:0.010589568260636548 or:0.010452733701020997 their:0.009106399181386723 tbe:0.00818011332422502 A:0.008126258116648525 with:0.007964375440267128 at:0.007900750413233995 her:0.007826465006070996 :0.3267601519757078 +of:0.09129790931378902 the:0.07369883040827747 and:0.047842263382354346 in:0.04189055351593407 to:0.04045875475680249 a:0.03542341257202578 be:0.02020462051672066 for:0.01979292654746225 was:0.01760256398103379 at:0.017380150555488715 is:0.014984483003968216 with:0.014047653760730413 by:0.01374644383819499 :0.012670486581795598 In:0.01200961464556976 or:0.011563835749786333 from:0.011391516893522809 are:0.011273104484969465 that:0.010755276030689069 :0.4809655994608848 +of:0.3723274521489533 in:0.17151076481271382 to:0.08271687782955149 by:0.04670174536921529 from:0.03591181987398093 on:0.03563027651238613 In:0.03552861122765815 that:0.026983154620705663 and:0.026794999193513264 with:0.023569879847648956 for:0.021848265857276325 at:0.016272979172227902 upon:0.009980881436719463 through:0.007308764764103855 into:0.00682301499499782 under:0.006228416821154711 as:0.005710996770659757 ot:0.005201913632016155 over:0.004919716228143024 :0.057029468886374 +the:0.4535188280693141 said:0.09188595127107675 rail-:0.04132147491540542 tho:0.03200649253166336 The:0.021252903815589974 an:0.02111276592696767 tbe:0.016309435114197267 York:0.014493435097212147 of:0.014039647109002311 and:0.013782043769885285 this:0.013385761383802784 County:0.013366632825848018 our:0.012914032984072723 their:0.010937753983318301 county:0.009184108953439555 a:0.008998695575628575 City:0.00844532344094317 new:0.008004780672755573 Pacific:0.007810597112394619 :0.1862293354474824 +the:0.393567538406748 and:0.09272186648194623 a:0.07652907608304689 is:0.048886725661568764 was:0.03845144197737562 The:0.03624275288114728 that:0.026374777191376802 of:0.025361401714708097 are:0.0251750421646174 al-:0.02512787127655488 be:0.023737830593778993 tho:0.021011719411549123 in:0.018299868649228255 were:0.01583226332907129 been:0.015260198176839629 by:0.011295945137871632 as:0.009549250952481625 this:0.00948946523700227 or:0.009329822039916166 :0.076755142633171 +and:0.09575421702771832 to:0.08797644546547974 of:0.06748802503099297 wi:0.034235463986076076 for:0.02915640640024392 I:0.02644163483006836 the:0.024915946479841092 :0.016603001853952117 is:0.01564693388312799 that:0.014534653030096831 or:0.014160903334448282 with:0.013881289103164772 -:0.01385217624015511 which:0.01357334358174082 in:0.01226733047481287 by:0.010177311647303516 whit:0.009759661187604237 not:0.009470370754912558 on:0.009461421890833741 :0.4796434637974267 +:0.04886162056411152 and:0.040019830359908116 made:0.019534249586484108 was:0.01884742032062261 recorded:0.0156557013153549 that:0.014962923641391521 be:0.013346741481126276 is:0.012414190474703378 o'clock:0.011973468167413116 placed:0.011531292464673245 out:0.010920644875481857 found:0.010814196298763954 place:0.010167028437165111 situated:0.009811016372775217 up:0.009511290277384947 them:0.00920663098385622 been:0.009160737073209432 him:0.00901249715764949 are:0.008449437635810648 :0.7047990825121143 +the:0.3534444002772792 other:0.06454191255508819 these:0.0556539742215715 two:0.05260968864994218 The:0.04130159502172773 several:0.03977808278671306 of:0.029848925598247443 various:0.02434210027917997 respective:0.0210882490376803 tho:0.019952363202754918 our:0.019324932933653872 United:0.01794386433758113 southern:0.01789481333005455 their:0.016655062381359276 three:0.01641901118355811 or:0.01573163042270733 said:0.015242496453686229 and:0.014827639887663622 many:0.014574550459398962 :0.1478247069801524 +have:0.18963703355301692 has:0.1683377015255493 had:0.1672258266483638 and:0.056627442886308034 he:0.0484668808959286 who:0.04321824624919636 they:0.03408938898556706 I:0.03114787949753307 never:0.02429033684608743 having:0.02344148196994749 which:0.02018316060378764 was:0.01792051929048178 ever:0.015615787862707866 we:0.014774086522137903 to:0.012572064266486271 be:0.012302233679188595 she:0.011755811701306643 not:0.010513484711615168 it:0.01033416923561317 :0.08654646306917688 +was:0.17083093414905484 is:0.11542620593795687 are:0.06649415904166245 of:0.06351829812784435 and:0.052418719636734674 were:0.04339430997960192 be:0.03277850138533348 in:0.020547738200495914 been:0.02044876283481145 brought:0.020174040691095466 being:0.018308962123807615 had:0.017436273226748185 Is:0.016085144927581157 only:0.015165012744525657 at:0.012315229576103894 for:0.012217173842156337 have:0.011469295223907584 just:0.011114543317466362 with:0.010261883167211456 :0.26859481186590034 +and:0.09129194457534512 that:0.03512443288060795 was:0.02307643447051431 up:0.020899036579109936 it:0.019233527445383966 is:0.018586838739645187 them:0.018473140882718512 engaged:0.01669886909384003 feet:0.016232499091860066 men:0.015871800404675174 placed:0.015839508208587455 or:0.015600589728729238 are:0.01537779983843852 time:0.014385396418440268 all:0.014238351479725145 out:0.014150793778004957 for:0.014145328944820882 made:0.014035985227109152 been:0.013508396837534086 :0.59222932537491 +the:0.39792601459739557 of:0.10775836494241084 their:0.029260888932179412 The:0.02854616105712752 and:0.027708181303073322 his:0.023891299326634863 tho:0.021027711122084753 other:0.020031096024527417 American:0.01940364283494468 a:0.019253852486996324 our:0.01896201290335089 for:0.014029093589668286 said:0.01241129166847342 in:0.012294656995299053 or:0.010225497388540996 white:0.010015299029121122 different:0.009263436972436445 to:0.009216883218765988 that:0.008915143508206292 :0.19885947209876284 +to:0.5458313477864646 can:0.07539385611277542 could:0.06945109076777126 will:0.043572791391279696 not:0.03779375909550452 you:0.026151817323824458 and:0.022977331813086855 cannot:0.01809291472338736 would:0.016562002501809864 they:0.01622757567374538 we:0.016017516544436533 may:0.01312700505549092 I:0.012241293546906463 should:0.011545388140884887 never:0.009050766067745322 or:0.008237265054915876 must:0.006984634991187054 shall:0.006320653180002651 might:0.005863693986638472 :0.03755729624214241 +and:0.07035963868917815 covered:0.04424415680200117 filled:0.03851086019900012 it:0.02265320976175213 charged:0.02258339318495858 together:0.02196174843319092 up:0.019637837990945962 them:0.014870805163202532 him:0.012902180422158622 but:0.012491476429342474 made:0.01013213647293583 down:0.009790720912222243 out:0.009233296479201441 loaded:0.008521883850703103 met:0.00836521284163693 that:0.008089591078776878 supplied:0.00766629809995295 in:0.006505344393380965 do:0.00616597395190204 :0.644314234843557 +:0.04886162056411152 and:0.040019830359908116 made:0.019534249586484108 was:0.01884742032062261 recorded:0.0156557013153549 that:0.014962923641391521 be:0.013346741481126276 is:0.012414190474703378 o'clock:0.011973468167413116 placed:0.011531292464673245 out:0.010920644875481857 found:0.010814196298763954 place:0.010167028437165111 situated:0.009811016372775217 up:0.009511290277384947 them:0.00920663098385622 been:0.009160737073209432 him:0.00901249715764949 are:0.008449437635810648 :0.7047990825121143 +the:0.08741288820481248 and:0.07392080242938477 be:0.0572668144792991 was:0.05686739458441792 of:0.05297029938296901 to:0.040095074017987696 is:0.03448309022071693 been:0.028380973754521515 a:0.02485235362607966 are:0.02226522268065813 were:0.019682022343204007 in:0.019454144698829248 or:0.019273705289081854 as:0.0158232132157123 not:0.012361914460680723 being:0.010097596398749334 for:0.009388164492904385 :0.00930537568905371 their:0.00894740846790883 :0.3961515415630284 +the:0.08939361301359379 of:0.07839653060670976 and:0.07689072932994429 in:0.04312024395980378 to:0.03450997499415051 In:0.0188909793868104 Miss:0.01757578156424931 .:0.01486860524038587 Mrs.:0.013967428644968003 :0.013407319021775223 with:0.010445534101912074 from:0.010255539006609879 The:0.009942536091557598 by:0.009569262255549415 for:0.007961829788036707 tho:0.006981751845252726 2:0.0069007275693847 w:0.006819798208352825 on:0.006695185423920966 :0.5224066299470322 +the:0.11354772533237696 of:0.10659883919736435 in:0.0859796620430668 a:0.06309211045626287 for:0.045668808525636186 to:0.043024244250758396 and:0.03953150658086128 at:0.036108841574445674 In:0.025158236772527116 with:0.024395987065802607 by:0.020993552381505475 that:0.01991531742720879 from:0.019134153922176555 an:0.01625805530025687 :0.012512144632315786 which:0.011004750261909297 or:0.010820053105068976 their:0.010026571117228964 his:0.009362788211040632 :0.2858666518421864 +to:0.6190388643698196 will:0.07124794019684812 and:0.0535761922466546 would:0.03912691950850106 shall:0.019331270825446407 could:0.016548439284319316 can:0.01585878973159857 of:0.013530725018880016 they:0.012388831871332181 should:0.012294773737119144 not:0.01073435749374131 we:0.01025361922783621 may:0.009837194991270174 the:0.008558049578420076 must:0.00855530772776599 or:0.008386073747552129 his:0.008082278590211923 in:0.00754119524392741 which:0.006880167606896616 :0.04722900900185913 +that:0.1814665944588173 and:0.10489868143163755 is:0.08123540977265935 have:0.07428412385317783 of:0.05485061209255339 was:0.04923616898342567 had:0.045506774105219285 in:0.04011078004155318 but:0.033655530784651264 has:0.03189276882650349 be:0.03176128127300016 by:0.030888298809857682 for:0.023051863767765326 with:0.01914724865024696 which:0.017913432016880667 as:0.0176304222164755 to:0.017180501496601046 are:0.013976360476978603 Is:0.011730045396561048 :0.11858310154543467 +according:0.06267158873192263 and:0.05384079532863156 as:0.04366646882252022 regard:0.0393841938398166 go:0.03279958400326965 up:0.03215085784229747 subject:0.02973715143674402 sent:0.029581454838608304 went:0.027804561372013658 relating:0.0226627142392755 back:0.018173678168946217 return:0.01758675708215641 given:0.016863782683122316 down:0.0168000430795135 returned:0.016728560525902214 addition:0.016475224152376552 opposed:0.01583762838136008 made:0.015326099176173233 way:0.014299927155989937 :0.4766089291393599 +and:0.15328215154056088 the:0.15113692313988591 an:0.1296727214357405 of:0.09166709155652057 to:0.03667197309302664 with:0.0352516736464789 be:0.030491650279357733 their:0.029997530256091885 as:0.02429127529677902 was:0.024025411687950873 most:0.023942914857281047 its:0.020610809189014784 by:0.020444006081113072 such:0.01950601613397303 his:0.018798636846649557 are:0.01800639397969799 is:0.017846862596331448 or:0.01776693257189032 The:0.017001913569748516 :0.11858711224190736 +the:0.40670020628552855 a:0.06988076952166271 their:0.05310219578499175 his:0.04378040557482127 tho:0.03835970526378803 this:0.034788403922033556 of:0.03244824384288665 The:0.027757789108977395 and:0.02758031075060155 its:0.0241790294682795 no:0.02325549084339362 in:0.021080246640328863 my:0.016930847940026618 an:0.015773661542738557 tbe:0.013948859301864777 our:0.01245462762389764 her:0.012003623710858672 per:0.010294039050248003 great:0.010096733387260633 :0.10458481043581165 +of:0.33246484605697313 in:0.08068873733051858 for:0.07859804782377242 to:0.06746501438223035 by:0.05188739548843374 and:0.04930632673243247 with:0.043936650959889634 that:0.04103842933957676 on:0.03728908980632523 from:0.03380667668303145 all:0.02335729401848779 In:0.02105309212527472 upon:0.01201575605457171 at:0.011769136198193116 over:0.011032641437440045 through:0.01047640241117437 under:0.010020020249666537 as:0.008861267698935535 which:0.007571538767236803 :0.06636163643583555 +virtue:0.062060494787377685 out:0.05417899169104244 part:0.03289673107629515 one:0.02969369892462812 quarter:0.027015883171169475 favor:0.01993830018372674 result:0.019463829004704194 guilty:0.018891084377354095 means:0.018499162894926688 end:0.018170939082736048 that:0.018121271122199262 construction:0.01726217741616459 presence:0.017003995482744873 tion:0.01673652166540914 case:0.01640819963257697 side:0.016055927605250184 erection:0.015381239457214257 account:0.015287601389485416 hands:0.015156055434805247 :0.5507778956001894 +the:0.1660512582853001 a:0.11058037744530753 of:0.09866810593618755 in:0.047730858373050314 and:0.03792754351629989 that:0.027917115003788455 an:0.02486282912998633 as:0.022103213154982673 to:0.022044737918964972 The:0.018145916099933535 for:0.01707499848358841 his:0.012222538306050463 on:0.011404912214252862 In:0.01131615852942917 which:0.010923195293818697 tho:0.010909680057280952 no:0.01082976176136415 any:0.009859075178044014 with:0.009533324320712798 :0.31889440099165717 +the:0.34720448708837826 days':0.22034171615644096 an:0.15696128164821732 and:0.03980422144497748 The:0.03127568417133051 a:0.029895536158783882 or:0.026896683326736552 tho:0.01980198088545545 in:0.018461349235263765 of:0.0116782401353811 this:0.00855022672417319 tbe:0.0075890827138011575 any:0.006855076340467162 no:0.006742780123555743 every:0.006119537292033396 some:0.005994073890488686 other:0.00540238417460726 great:0.005355366095721316 An:0.004727529558032387 :0.03934276283615443 +of:0.1759923192208269 to:0.1292711542193745 in:0.0860281618426866 and:0.085536895192357 with:0.06899914370629465 for:0.049025101302019654 that:0.04322570560552478 by:0.034785392180835484 from:0.029308507746800886 upon:0.02560697589632379 on:0.02469286873979196 at:0.022408694110326963 told:0.01705155493472045 In:0.016651195921820152 but:0.015997668273884477 made:0.015180727111092557 over:0.01252193302064818 make:0.012090879717999884 see:0.010401190670244875 :0.12422393058642626 +:0.062230069122185136 and:0.04297228489492468 recorded:0.031738754706071085 was:0.01699573147008678 be:0.01429366375342706 put:0.011295376797012226 up:0.011035051519407077 time:0.010628332758934546 in:0.010179250970760391 that:0.01016319823658911 on:0.00942567336525378 to:0.008790861150032301 :0.007716961288958812 .:0.007711667962864622 of:0.007686256428275967 made:0.007441374956027757 been:0.007330529209665605 were:0.007157805444983238 is:0.007075602196649028 :0.7071315537678907 +and:0.07558940021936399 recorded:0.030196237618668006 was:0.028917161578042846 made:0.027969746247669736 that:0.027730098932509103 o'clock:0.025060522019555328 up:0.023026552239529506 is:0.020398277211376416 found:0.02003101797656537 placed:0.017482208134164214 out:0.016937164562539058 place:0.016819459500107596 interest:0.016629321966808677 him:0.016002796715253755 situated:0.01573420479581609 it:0.015128305982428461 them:0.014715943643665314 part:0.014646613000297721 interested:0.014450471929902294 :0.5615344957257364 +and:0.09438262493118799 the:0.08987025739039634 a:0.08219116167286014 of:0.059909248969310505 to:0.04604209421026591 in:0.03758779020007979 that:0.021777624650769732 for:0.01402691533181023 an:0.013315392588038433 with:0.013174346225634752 :0.012745502851557096 as:0.01272051321022127 his:0.01208038347985641 or:0.012072943105682559 by:0.01172574352975104 In:0.010652241812950788 her:0.009812842407536557 which:0.009491728258816789 I:0.009384591044000138 :0.42603605412927353 +and:0.10599527827158123 had:0.06686720080127992 is:0.06153858598500377 have:0.0592233613432131 was:0.05370566144245161 of:0.05235615527415048 has:0.037464279606474214 he:0.03292389346255978 to:0.031925083272023175 be:0.03108392925745676 the:0.03057756620906162 are:0.029022759310120987 been:0.025684756019489212 by:0.02437167501642233 it:0.022014117931991272 It:0.021714033199471423 which:0.021296565148171732 in:0.019735052197239783 He:0.019352658442390577 :0.252147387809447 +the:0.12285296094004503 of:0.09817851333752219 and:0.06592713213355123 to:0.04951419258787356 was:0.04418146059484458 a:0.038107061866298836 be:0.03381349245443766 in:0.03359448275853669 is:0.028478288952295754 at:0.023474326416834054 for:0.016699924134405294 his:0.014326395251805632 or:0.014153776705098658 been:0.014056104888894281 not:0.013109242053401433 their:0.012637453412934655 In:0.0119303395497276 are:0.010136045963321282 were:0.009961306282732157 :0.34386749971543945 +of:0.2503710637682309 in:0.10332414017746257 for:0.09571799558057882 and:0.07623094648324913 to:0.06675775775040434 with:0.043976056690651515 that:0.03585700430712262 by:0.035560465629467894 from:0.035384236946791235 on:0.03312211970289931 In:0.028314983334471574 all:0.02288120696895144 upon:0.01760127767495752 at:0.01718031299952163 is:0.013801134851656488 through:0.01004902985646702 was:0.008837547517346094 over:0.007573221085970832 into:0.007498803695136988 :0.08896069497866213 +.:0.0687842185968151 -:0.03620859350561611 st.:0.03193417846908525 was:0.024990375385495298 of:0.02426491065790757 and:0.01906800934837116 in:0.018611632057828495 Mrs.:0.01838260368746175 is:0.016159677335429553 to:0.012825540104875986 be:0.010898855087725286 ow:0.009967491286606976 D.:0.009844942338135106 In:0.009247603701530768 for:0.008657867426785705 with:0.00856614892819697 as:0.008562567367676901 e-:0.007365221972468231 by:0.007111329380022951 :0.6475482333619649 +the:0.11919516938815296 of:0.07230453158552728 and:0.05781056740443249 a:0.043018564803886335 to:0.031305092790907506 in:0.020848713353460488 at:0.014270110001066288 .:0.012526810245749479 :0.012413283442322082 for:0.011719122709941797 by:0.010808400946589808 or:0.010404172990115616 The:0.01003576004804544 with:0.009811868184449042 tho:0.009295902015355835 was:0.008924239095331684 that:0.008672304223433876 is:0.0085591147338948 be:0.008335143826716943 :0.5187411282106204 +and:0.07558940021936399 recorded:0.030196237618668006 was:0.028917161578042846 made:0.027969746247669736 that:0.027730098932509103 o'clock:0.025060522019555328 up:0.023026552239529506 is:0.020398277211376416 found:0.02003101797656537 placed:0.017482208134164214 out:0.016937164562539058 place:0.016819459500107596 interest:0.016629321966808677 him:0.016002796715253755 situated:0.01573420479581609 it:0.015128305982428461 them:0.014715943643665314 part:0.014646613000297721 interested:0.014450471929902294 :0.5615344957257364 +out:0.05941904963054598 one:0.054824042063606755 some:0.05247794090323687 all:0.03926190883783565 part:0.035496978464792696 because:0.025099630466577632 account:0.024761806092616793 many:0.023799186613584284 and:0.02140242809025699 that:0.01934844095643571 portion:0.019105006248878457 value:0.018257503974032613 use:0.01686640358385487 time:0.015610548615003978 amount:0.01525203957993562 tion:0.015055978834802522 cause:0.014538196289420737 any:0.014448371559742294 members:0.014218034247347602 :0.49975650494749196 +in:0.4323613455722007 of:0.292516143237752 In:0.059814806575651795 the:0.05391536070956747 on:0.02530332151917829 to:0.0196328366758835 from:0.01738816652549146 by:0.013802311099991162 for:0.01343206447453799 iu:0.008017480192455666 at:0.007605666575109785 and:0.005475080044144805 that:0.005280262645107023 ot:0.00475529860057315 which:0.004445290749633372 upon:0.00425687819472443 within:0.0038871815127040094 with:0.0034140386601634646 along:0.0025311465246240636 :0.02116531991050592 +of:0.28767355066866834 to:0.08775711267569858 in:0.08678131196995101 and:0.05160598694501188 on:0.04646139928102899 by:0.04519522654900943 for:0.044547789071328545 with:0.03396756772609607 that:0.033699232901107726 from:0.03075346596941143 at:0.027039283056790858 In:0.021061449543044047 as:0.017514234937992545 all:0.012543839382496166 upon:0.011844431150487573 is:0.00998972746569266 was:0.008814315973987914 into:0.008557199930727406 through:0.007781895704231326 :0.1254109790972375 +the:0.3534760856335232 and:0.07963644713650105 a:0.038537781287838586 The:0.03305961282577007 was:0.02957069146567114 in:0.026469254067917832 be:0.024240062648223943 of:0.023783344841387426 is:0.02137907377634373 tho:0.021082119818457666 are:0.019973479830428395 or:0.01774675637693648 on:0.016643939424369935 very:0.015741058062473088 first:0.014978591087937015 were:0.012408455444894434 as:0.010685786603125316 tbe:0.010636678435400527 full:0.010097649596033613 :0.21885313163676662 +the:0.414317176671607 of:0.10757905635037468 The:0.08538281875828065 and:0.04894395629027542 whose:0.03469987771979064 his:0.03254758355036569 these:0.027214749454649925 their:0.026336087823582963 tho:0.021798099147076554 our:0.021451650525296226 said:0.0193705220260125 its:0.01919213069371756 such:0.017879690262273623 His:0.015603111743203259 that:0.01501286860610941 These:0.010147177692881364 in:0.008553597698566603 tbe:0.00851160723404235 all:0.008241552092295143 :0.056216685659598406 +10:0.05933476663365796 4:0.0555155578087984 6:0.040449414976301876 5:0.039379548467026355 8:0.03759577307804476 2:0.03114560644958139 the:0.030367792062594285 30:0.02654040274800739 3:0.022667080415552612 20:0.021821682291338032 33:0.020829748071384137 and:0.02016224901713159 7:0.01825874674498786 11:0.017694676725760732 40:0.01691492686547299 9:0.016333595414835006 0:0.01618355719229934 S:0.0160167509594432 50:0.015726258845248604 :0.4760618652325335 +of:0.12358468887239155 in:0.040115113011239587 and:0.02899400200520316 on:0.026999375653483638 to:0.02029655951962159 from:0.01970547953961655 for:0.018384849086998504 with:0.017490197545763527 upon:0.017021652455883902 that:0.01443538081184977 by:0.014011613742328326 at:0.010954286424275528 after:0.010278843923146111 but:0.007736428219940827 In:0.007287874733464041 one:0.006973377822446423 bill:0.006766530393077656 law:0.006765336572976757 things:0.006218841005353956 :0.5949795686609386 +made:0.0924586035340614 and:0.07246660649987931 that:0.02845941292043153 secured:0.02646808510544868 given:0.02310104689551343 followed:0.02264843524453452 owned:0.019641622448176407 ed:0.019009179171255018 up:0.01898418247289009 delivered:0.01685083409237091 or:0.01633793466176711 taken:0.015096566288543913 it:0.01490964752589245 provided:0.014725238993918513 done:0.01418770030880031 caused:0.013909046831401883 accompanied:0.013575543595140828 only:0.013446634719939558 out:0.012443898298442122 :0.5302797803915921 +said::0.06891971100878111 :0.04614445102190863 says::0.021332318175618432 him.:0.010789208144470633 it.:0.00949847006439854 -:0.009486492737779417 .:0.009173551639203446 w:0.0074300766043784655 them.:0.006288555587316147 ::0.004492946925403041 t:0.003923374256674442 and:0.0036142694278185864 said.:0.003508446835015231 :0.0034639989842918215 say::0.003417020442610759 time.:0.003262618336943771 day.:0.003242812066171411 life.:0.0031362711960446314 Mr.:0.0030829810797645715 :0.7747924254654068 +;:0.03302383422486674 it,:0.015119097458072179 him,:0.014656093913693775 is:0.012405805403229393 nothing:0.011005492844289361 and:0.010270468103942283 was:0.008185329752691345 ,:0.008077059147618207 time,:0.008014507774263302 them,:0.007985219474597275 here,:0.006032752515979247 up,:0.0059696610739087275 life,:0.005206934760172901 out,:0.0051146329551819 me,:0.005068120634750187 years,:0.004601076454310444 one,:0.004561808683687433 year,:0.004561544961108314 way,:0.004446182112190482 :0.8246943777514465 +and:0.18126822642013604 as:0.1436644363731284 that:0.12276880000604813 but:0.04372560924011097 even:0.041822684063998125 him:0.02767645951420187 asked:0.02378321288267796 or:0.023385666112408075 But:0.01847306053725373 and,:0.01810547328047897 see:0.01202505287937413 ;:0.011164433197935595 And:0.01026672420572629 that,:0.010067776526017248 me:0.008819150308084505 know:0.00845138396842317 than:0.007852140069420956 Even:0.007679639197175196 which,:0.00753555839596377 :0.27046451282143685 +a:0.3284601533625464 the:0.11308862149874212 is:0.1039528097273866 was:0.09540494140254605 be:0.04983431085311233 are:0.04400837515614097 and:0.03460882459947656 were:0.025197144092796088 in:0.0191413685399899 been:0.016313140832604094 Is:0.01603599790665098 not:0.015620957962478832 very:0.013350785527752701 one:0.011965022056407253 of:0.00974578420691553 A:0.00772793024690761 with:0.0076673602235238945 it:0.0074772766954566425 so:0.007406171974246925 :0.07199302313431846 +the:0.218370674223616 and:0.16076502359929548 a:0.07946087095505326 so:0.04574009646361841 is:0.04044292311777754 of:0.039493863879946606 was:0.036852073664984254 that:0.035492972892982436 very:0.031486038291067164 The:0.03090213921796517 as:0.025236057890921003 or:0.0242830615077803 little:0.01961964034988592 in:0.017477796031910374 are:0.017438615398426234 be:0.013483419745818492 tho:0.012866890518782214 it:0.012639515532113227 his:0.012035827868764353 :0.12491249884929156 +the:0.5378349436598857 at:0.07829032386628491 his:0.05011006481833148 was:0.02969475786514624 The:0.02875493109236111 tho:0.026583950821706313 their:0.02279094476261732 its:0.01721877695861906 her:0.01476042682330044 and:0.013526346629491804 tbe:0.012359584503374564 my:0.012113109867349103 of:0.012004019374456701 be:0.010433020570329314 were:0.01042497418704476 our:0.010148253190837862 to:0.01004921458540836 is:0.009534474153377102 a:0.00943066376109059 :0.08293721850898732 +and:0.18969319156312892 he:0.12115048425626283 who:0.08387939566587739 be:0.048479456108801 she:0.04728889454434478 it:0.038729350207630624 they:0.0385183559192453 He:0.03421942552140043 which:0.03365653876568797 was:0.027773567564830202 I:0.02539661532424166 It:0.020410276357014253 we:0.015525177785648941 She:0.014939766134187245 had:0.014844784932811226 that:0.014030400861568067 lie:0.012359569901815248 were:0.01227130676896094 then:0.011926943270218477 :0.1939064985463245 +the:0.22469078032025558 in:0.1655186279781627 no:0.07760282022894646 a:0.07679565117518967 of:0.07265767105597602 In:0.04113916915281835 his:0.030780572239743283 any:0.027376913776010526 that:0.026966717635954717 to:0.026608171847565625 for:0.02382629341770175 this:0.020601699221854456 and:0.016360197500862456 into:0.0162275065662376 general:0.015875271723698132 on:0.013961702128286863 without:0.012945745693668843 public:0.011960326935042185 their:0.01127544511276195 :0.08582871628926286 +the:0.631789905791763 said:0.03479139832891814 tho:0.026855528735955415 of:0.015697012233433404 this:0.01302890774675157 a:0.012945666464408848 that:0.01200373095871037 and:0.01162255808360895 The:0.011606374866044789 tbe:0.010403467796583372 in:0.00805941557223956 Monroe:0.008013083771185602 our:0.006856018928357553 New:0.004372315032588537 lowa:0.00373290329363679 States:0.0035989680567165092 Burleigh:0.003521344669247652 Stevens:0.003167220780883856 State:0.0031625303512406466 :0.17377164853772548 +of:0.23876668287696837 and:0.12545017160577132 that:0.07658794305357362 in:0.06969176931344344 to:0.06929387119930998 with:0.049261354175464254 by:0.04458737999302482 from:0.035238934452659076 on:0.02408428465645812 for:0.02261630545554432 as:0.021204736814009764 In:0.014997548863584448 all:0.013502182150937013 at:0.01335827899225798 or:0.013329196797873415 upon:0.01231249435720152 but:0.011578704484138481 was:0.011464856440839872 up:0.01059166627605044 :0.12108163804088977 +and:0.11958536754157074 fact:0.0738760970146536 said:0.05292429274118783 know:0.04424221141323232 say:0.04391701852852371 so:0.031359577023766634 is:0.030018667977326715 believe:0.026483048554913142 stated:0.022711093857713357 says:0.02158540440435955 thought:0.01759481890036582 think:0.016930985958877313 found:0.01685119645252505 knew:0.015627941859033087 saying:0.015318968449423067 him:0.015148063005297318 me:0.015002473606157736 but:0.014803358041438333 told:0.01452834020416077 :0.3904910744654739 +and:0.07359963406644195 be:0.052667135004264946 to:0.04483536256874564 of:0.043448293679263235 the:0.03579172892628988 in:0.028005289969665195 was:0.026700397492138477 is:0.024892551934152005 re-:0.024162182625676702 he:0.024086629517294657 are:0.02098604388819216 from:0.020307931541148256 a:0.018606881911690538 or:0.018077853608073062 for:0.017195224169077532 been:0.01615904189338184 I:0.015254891559368164 :0.015184018660626356 which:0.015016145996292442 :0.464022760988217 +and:0.06147045564902104 of:0.04615037616681727 to:0.043171975683820994 is:0.019664675988763293 :0.019184986891660816 was:0.01784876755851446 that:0.014011134479836346 told:0.013550710142420935 -:0.012710280094023231 in:0.01255308102261896 not:0.012459855946786292 the:0.012450605367050933 said:0.012307767804856611 do:0.010570703946200233 by:0.009939295843922745 w:0.009683986808071275 at:0.00859171684951478 when:0.008486326089969918 for:0.008341318662152526 :0.6458519790039774 +and:0.13442300133549956 of:0.05770028932758376 all:0.04592413174147143 to:0.03223857579114843 for:0.027045269506801292 said:0.023928244100002126 but:0.021561743441536375 in:0.021471808403253943 so:0.01928128959195684 fact:0.01838264376799304 know:0.017552457092729293 that:0.01751740602028879 things:0.01598394973951896 you:0.01587798671802997 say:0.015340218281207268 time:0.014485522605084022 from:0.012045101735879027 is:0.011508729991984174 him:0.011341373874765538 :0.46539025693326613 +of:0.2289939614354677 in:0.10195426937293446 on:0.09297320435234425 to:0.08768087868830643 and:0.06684417263927293 for:0.049103676907090485 that:0.0447731685374723 from:0.04024872849812155 by:0.0278527375616631 with:0.026903224487826935 In:0.02646454108876156 at:0.018903668462667906 upon:0.015456886820747487 is:0.01475671069517472 into:0.01344834156436695 as:0.011585049611205515 over:0.011178301932119696 was:0.0103589257832657 when:0.010045654719388739 :0.09947389684180157 +I:0.20651807226884447 we:0.1633945623554551 to:0.09500359745961559 We:0.07521035566345394 the:0.07078667954837721 they:0.06463848352441977 and:0.046429749658553045 not:0.045862608856975635 no:0.03700344910851186 of:0.01870411864060081 a:0.01831864370282654 who:0.016706504624096508 was:0.01612188139611789 be:0.015472219593124137 or:0.013622405970184312 you:0.012953083916282162 They:0.0119767207656746 only:0.011760162593360678 will:0.011451040896456424 :0.047065659457069337 +difference:0.10258852854553178 line:0.06502642433960315 relations:0.041675230989731395 existing:0.03521405982807506 and:0.03282113161194299 street,:0.02903789071786256 lying:0.026859373101423594 connection:0.02104536610860297 midway:0.02035709649291136 communication:0.01945968707433874 war:0.019183514242081246 street:0.019025082381050874 contest:0.0184059625738086 dispute:0.017816279701442703 up:0.017089124634213804 out:0.01658952585542058 space:0.016360280881521517 that:0.016205629103983342 distance:0.015669588222158984 :0.44857022359429477 +and:0.10487575706312441 time:0.027444676086375828 the:0.026294251100186298 of:0.020222495021706453 that:0.0174612837292621 or:0.01563893058705047 to:0.015313273838332229 all:0.014547282400291373 days:0.013451207162668882 it:0.01273019841100954 long:0.012418670691362054 :0.011694037532408899 I:0.010045486557484613 :0.009268335101658563 for:0.00923710322021969 which:0.00873820538479092 but:0.008565332898184888 ;:0.008516209956843738 is:0.00831454624118787 :0.6442227170158512 +it:0.1377627352627463 he:0.11763404756142036 It:0.09462206924684258 I:0.07394703373423658 and:0.052222054673571786 He:0.05011769118840285 which:0.042619003305196745 she:0.032385178719371195 there:0.03140310541832658 who:0.030762391231347032 that:0.023180049597426967 She:0.012653058930409541 This:0.011060949668053724 There:0.010884035843595761 this:0.009901261753412077 ho:0.00971382428081507 man:0.009625301423540698 lie:0.008586082311520317 but:0.007405265899611852 :0.232514859950152 +to:0.14649880572301266 not:0.1128117279309787 would:0.06999293769371676 the:0.06885595513580048 a:0.05334548772333633 will:0.053312484880768576 and:0.04543376850254901 you:0.03622418207826156 this:0.0328702845820564 they:0.028899608323964283 we:0.027338394161326912 may:0.027271723926610484 should:0.02564954716776996 only:0.020661396830058118 shall:0.020650434569928974 I:0.019767832231734193 or:0.018823292000627368 that:0.0187844542255421 must:0.01744279601261557 :0.15436488629934156 +it,:0.021215804608184466 ;:0.021209760323610022 in:0.01852960387643753 him:0.017226440804373612 him,:0.015517504135995331 it:0.013827341168683411 me:0.012616590628048749 me,:0.01187130783221111 them,:0.01130205876781514 time:0.009681809901065009 you:0.00957886090149086 and:0.009096715495351895 up:0.00894080593352386 time,:0.007653330335504777 to:0.006975295871586127 down:0.006933413371634118 out:0.006751951194284245 up,:0.0066731605765002555 country,:0.0060495418672168715 :0.7773487024064826 +up:0.03106649538018006 it,:0.01850661687765227 ;:0.016975388074441582 in:0.01575427046952791 him,:0.014976557037657958 them,:0.01230763089204928 him:0.010018465961330747 time,:0.008363244077700087 and:0.008250010950969881 on:0.007911706254349917 time:0.007606556853260358 up,:0.007571950515717596 down:0.007521523236420218 out:0.007374208281378024 lying:0.007239044206366805 it:0.007228913212886433 one:0.0072145297871181666 years,:0.006334582142000592 them:0.005964009983168504 :0.7908142958058235 +Mr.:0.10540409310129578 the:0.10449400038258391 of:0.06238731629653591 and:0.05726867054790561 The:0.03140456914196117 Mrs.:0.022402932460872108 :0.020070006552975576 .:0.017437355522633386 that:0.015520754557366068 Dr.:0.014679696982141778 at:0.014243550902311893 Miss:0.013910972128768084 a:0.012719970263264983 to:0.011438903761580393 John:0.011296455077375287 his:0.00985537874653567 in:0.009060255432746583 Mr:0.00901025783278115 or:0.008758422173100971 :0.44763643813526366 +we:0.09782115584568561 they:0.09305452119730342 you:0.07226700778557044 he:0.07183709964368201 I:0.06570008915048764 who:0.06414721764858416 and:0.0556412511372921 it:0.04537283969376594 which:0.04110495978350114 that:0.040807814196565324 Ameri-:0.03937402670685774 one:0.02925718096540324 man:0.027656909782650965 We:0.020186179301283132 Ameri¬:0.014920147884486834 she:0.014800445118017062 You:0.014556812077428871 It:0.013942350290096219 Republi-:0.013116899114376745 :0.16343509267696138 +one:0.1028303141280697 part:0.05963429477052991 out:0.04766456937681193 some:0.031418679026461914 members:0.030764490253327767 side:0.029940657362655835 portion:0.022063658796890564 office:0.020457735219956013 member:0.019726706386316174 end:0.019666887540649894 tion:0.018667441728710307 parts:0.016814747270460957 people:0.014112771422418794 all:0.014072739582212475 any:0.013183573287639892 One:0.013083578354183906 that:0.013024335602903442 account:0.012482348155001894 many:0.012077825070275192 :0.48731264666452345 +went:0.10232049304926817 go:0.07407701096815793 came:0.06644589771516199 him:0.06634290945172573 put:0.05517552794491533 brought:0.03900081726641298 come:0.03867049831117764 back:0.03727360525990492 up:0.030580428118975947 thrown:0.029902147527236647 them:0.028219260092008248 fell:0.02701773138202799 get:0.026668323472125242 down:0.026087650883165562 out:0.024598401841167173 and:0.02178534754494339 was:0.020551846303800938 got:0.01974551798069631 it:0.01850834697532081 :0.24602823791180706 +and:0.12796016323493173 is:0.11313330370118206 are:0.09952519253096509 be:0.0747382204785466 of:0.05532063671563237 from:0.05257034522082941 was:0.05058167481527676 to:0.028396605434792884 with:0.02553650348538135 by:0.024901299712071546 I:0.024587853257594154 Is:0.02452572744032847 in:0.024368415712706853 not:0.024195522972841832 have:0.02293901642474091 been:0.022373949507593565 were:0.02155522777487362 for:0.020655304139844125 he:0.01701456944144348 :0.14412046799842318 +of:0.118061158822884 the:0.09577720850757111 to:0.05965535972497574 in:0.05620354000535672 and:0.049699828737646896 a:0.04619736762658872 for:0.029744771090142834 with:0.016500070254488443 that:0.014380597666603307 In:0.014249968759817285 by:0.013262187935257477 from:0.012640135131477364 be:0.012023867469936726 :0.010252031988999986 at:0.009094388440629325 as:0.00807319091898472 or:0.008057859492607596 their:0.007623127826362976 his:0.007462720626451419 :0.4100406189732173 +up:0.011891526828542468 ;:0.011477640919594979 hundred:0.009915051374342822 one:0.009598986376641229 feet:0.008373726501105115 in:0.008140970301993383 down:0.00726067045024855 out:0.007058563441668727 back:0.006685954309288962 feet,:0.006596845795605812 :0.006250076507703938 ,:0.006173515518501081 him:0.006037299163345599 men:0.005717551037811626 long:0.005580514362593398 due:0.005497628786456293 it,:0.005193942689249891 city:0.005026902819611701 house:0.004907306614424627 :0.8616153262012698 +the:0.08910559107244378 of:0.061137472560099305 and:0.056514486943512535 a:0.050004907958805744 to:0.04258205229205464 in:0.03034323322163879 by:0.026591436997703853 at:0.022473842633593488 for:0.022410377183264787 that:0.02098020189008893 was:0.019758834721747363 be:0.018481312054881092 is:0.018136696512301587 from:0.013181652578143578 as:0.012557274413748609 an:0.011709725541095948 with:0.011467300078065328 :0.011008591853478277 are:0.010990280949142445 :0.44956472854418994 +the:0.26284013049231575 of:0.11305071830508466 and:0.07375882205881594 a:0.053389733034511735 or:0.03435737686944795 at:0.030840950752203982 to:0.02954388304364403 re-:0.026027515137123373 The:0.024991058655907516 for:0.024301550819215142 his:0.018449011954093177 tho:0.018068655811645046 their:0.014487349295559294 our:0.014294369833275934 any:0.013479145025084937 in:0.013210779037944887 such:0.0130753481519939 tbe:0.012173154704092621 every:0.011299012458028914 :0.19736143456001126 +the:0.13520768735817895 of:0.10564911430339242 a:0.06844830012161698 and:0.061585091812323745 to:0.0496993447065828 for:0.02724057496042224 was:0.02307743118981502 in:0.021350023814932624 be:0.01936213568451118 as:0.018401088972168078 that:0.017529903108316796 are:0.015940295596135547 which:0.015864651784755636 is:0.014983346235434266 by:0.014301531460530658 :0.012906267263707713 on:0.01282298279344855 with:0.011881559560823988 were:0.011233781151005408 :0.3415148881218974 +of:0.27886845194223026 in:0.07986774993262252 for:0.07889232964810479 and:0.0733553283421296 that:0.06713983324263521 to:0.060229054999636225 on:0.041304681319708034 with:0.03711568297342268 by:0.02362559989431922 In:0.021784731649872924 as:0.018921949669807318 from:0.01839771453610646 which:0.014926715969333232 all:0.013678375049237383 upon:0.011944265624194952 but:0.01175236887165149 over:0.011536914800993435 have:0.011508258732885858 under:0.010319324279868368 :0.11383066852124 +the:0.16883506074108198 of:0.10345999980581193 and:0.07765091647747123 Mr.:0.042646070294986925 a:0.03676854853394007 to:0.02730423700154303 The:0.023555615107356022 .:0.020409359832543682 by:0.018024363299732695 in:0.013897353732280127 for:0.01331089079449869 with:0.011100144844755954 that:0.010788179786794411 Mrs.:0.010587736569899649 or:0.010484845999064638 tho:0.010440233278329509 :0.009960897908832863 their:0.009790656798233792 his:0.00974718170240166 :0.37023770749044116 +it:0.13391625948985955 he:0.12329313480419507 It:0.11955153764170501 which:0.061810108748278345 I:0.059290075767801896 and:0.05014882224076649 He:0.047034419739866905 she:0.044521586647497044 there:0.04178709367328831 who:0.03748785507689884 that:0.02642343604698136 There:0.025275905183354423 This:0.02010901514126932 what:0.01880435826262268 She:0.01838507660232286 this:0.01007966028594894 lie:0.00972415589100018 as:0.009253207999576704 ho:0.009185987701561439 :0.13291830305520466 +the:0.20154500035380274 this:0.14104801851541962 that:0.14019327888841926 same:0.08377508972709333 any:0.0470392227821021 some:0.042186901521563194 present:0.037263067659512136 of:0.035531972940753546 no:0.033850498036156064 long:0.02596782047559882 which:0.024906391796697444 a:0.0248303086049006 short:0.020844237167101865 The:0.018900132534319842 in:0.018294076710196356 such:0.015931060603004265 one:0.015104832878077528 first:0.01348114703100917 and:0.012608317337309646 :0.04569862443696248 +the:0.5668049686839426 a:0.08407302587459704 tho:0.03562600938539807 this:0.03314979273493797 high:0.027851058369641152 and:0.0232330765935859 his:0.022822695487600544 their:0.01880133612179465 one:0.01873889225038393 The:0.015372916372801023 every:0.015033082412181223 tbe:0.013018769303045437 of:0.01162068584719577 other:0.011321931747724386 low:0.01053424485735575 highest:0.010233589415274946 same:0.009851048591503788 that:0.008680460496772964 present:0.008445639042543342 :0.053786776411719535 +have:0.10545473793747283 and:0.09450464310374795 has:0.08282711624929902 he:0.07581588922914421 had:0.06694558995893218 be:0.06412615748470434 who:0.03706967830307685 was:0.03705673070244631 been:0.03218599574560648 is:0.027576174071897355 He:0.023338707644431623 I:0.02293298025496882 which:0.021887352991135516 they:0.01699863061146789 are:0.013461452703007065 it:0.012618024391806738 that:0.012191627300940032 then:0.01130801625425915 she:0.01120473365878991 :0.22949576140286573 +the:0.5102193062638258 a:0.11354340256828382 and:0.05498075542870685 The:0.05447744082015809 is:0.0324303690516942 tho:0.02303574786035861 was:0.022851720834072987 in:0.015518994285063292 of:0.015004993566932561 al-:0.013688851041913426 that:0.012905212228002413 are:0.011193850799031301 this:0.008222895039484352 as:0.007569350099442277 be:0.006996689902111032 our:0.006873369661457167 were:0.006642432112698063 very:0.006470907949899626 been:0.006464111837813263 :0.06990959864905082 +the:0.167349649751296 of:0.11705071762842206 and:0.10753629074950631 that:0.04343586038962605 his:0.033779082086615266 be:0.02763566058569623 their:0.02621805769678387 The:0.02496997809489631 to:0.024747925200513873 some:0.0247257606239661 which:0.024405533783109862 good:0.02238441817339798 by:0.021345664696160716 other:0.02006442803729813 such:0.01988738483991568 these:0.01953098339843771 all:0.01908280432489578 it:0.0182743401194417 as:0.017891820560434406 :0.21868363925958598 +that:0.13873100279798672 and:0.10228642854930181 which:0.07236793866281355 when:0.07156672533480359 as:0.06491256784114506 if:0.06248441211763447 where:0.04558480538591714 but:0.04178118566169405 until:0.0346632972475752 before:0.026883715374529556 what:0.02458156293794018 for:0.018202605595102075 because:0.015497716629619988 than:0.01422298649227541 If:0.013186055255186414 after:0.012963837637032256 so:0.011179286097272692 how:0.011151739330264523 then:0.010302537162465198 :0.20644959388944012 +of:0.045148843795015776 and:0.03941379812612711 .:0.027694422766637947 o'clock:0.024645604641519332 :0.020365518083237333 to:0.01795019183942073 by:0.017821984023287052 St.:0.015913926547613713 st.:0.013133917126224654 or:0.012438763587127285 was:0.010828920387582408 for-:0.010791960289732314 1:0.010736782216990943 the:0.010692960241707758 8:0.010629273920474904 ;:0.008667309114770313 is:0.008560766529433344 I:0.008160662397827917 there:0.007985937273209875 :0.6774184570920593 +line:0.15752563636361985 corner:0.06905613321055662 sheriff:0.04286280179780869 part:0.037001196156271406 prayer:0.03186416352602805 sale:0.03142394633391665 portion:0.030977207181492977 payment:0.030430446299472058 side:0.02841338084626688 Clerk:0.02587108715774029 estate:0.023280323008369054 date:0.02006128172523745 terms:0.018782735440552378 office:0.018339074345315308 one:0.01814520625554345 amount:0.017961503456507155 virtue:0.017809997850830296 Sheriff:0.01769919054283388 holder:0.01674874067282088 :0.3447459478288167 +the:0.2628990645971674 a:0.1823214300979581 this:0.08326057661378933 The:0.07185315929470894 and:0.04879953898668975 that:0.03894875417259717 of:0.03633876749717497 tho:0.022364381517757447 his:0.02208480659422902 This:0.01952394188527821 first:0.019199817687002546 every:0.014906494880034796 or:0.012924022144986513 so:0.01235075518687062 their:0.011614366089162213 other:0.010520366220651124 its:0.010231760271519895 A:0.009986324003552571 whose:0.009452757060904243 :0.09941891519796518 +the:0.15364959058440592 of:0.11824340085142397 and:0.07018563978346362 his:0.04827447756642096 in:0.04516152410972859 an:0.04470980636728413 public:0.0376136879299758 their:0.035777830522373995 this:0.03310210492584646 its:0.02616150247561424 to:0.02416800698273327 for:0.02264478090841156 or:0.017538390906010524 her:0.016900166534807526 other:0.0156543091504074 a:0.01447987571904929 that:0.01423958035166578 tho:0.012232799500799713 our:0.011924367875493811 :0.23633815695408344 +the:0.16260138170090474 and:0.08319473438919034 of:0.08022335694218241 a:0.07838202250693345 to:0.04136880555051371 for:0.03541714493286402 that:0.023662155219194025 in:0.022543206325002865 which:0.018283941297279584 as:0.017884895397609343 will:0.014165060599309708 his:0.013423845487966256 with:0.012599449852847295 The:0.012288928671872366 an:0.011602157150055938 their:0.011464540644148306 at:0.011169476421718416 no:0.011003157214839366 more:0.010725071429935241 :0.3269966682656326 +was:0.10362313048345326 are:0.0998933161900806 is:0.0908593019642869 not:0.07176837542058401 and:0.06569092291536285 been:0.06241000601938554 be:0.060928478348157615 do:0.04534471407786554 were:0.04228029387538888 or:0.031393687281385134 for:0.025259842579516675 of:0.021855187944564827 being:0.017858642150282315 become:0.015232501200777779 Is:0.013797356100978379 as:0.013719339813415362 have:0.01310887644168752 in:0.012806273249370231 done:0.011982160847740791 :0.17918759309571577 +the:0.38463080524005117 The:0.11225959499433731 not:0.10666650212365918 can:0.07449097343838355 could:0.04703989321548702 will:0.04041812589722897 a:0.03028478979762958 would:0.025516882273777002 and:0.024213277208965222 that:0.023465930931889197 tho:0.022047112577764844 whose:0.011121758080125863 his:0.010717447045938525 is:0.009372440299819557 to:0.008155195689359964 may:0.008057165237883378 as:0.007912839823773114 Not:0.007169922972837251 tbe:0.007112989960572335 :0.03834635319051697 +in:0.21832008444708234 of:0.16324716508126438 to:0.08356995077874813 In:0.06507515654625046 with:0.04747274231115483 for:0.039653354756955195 that:0.038172945231946025 and:0.03810434384139036 at:0.035268365328558246 on:0.034656869289242255 from:0.02224302296529883 up:0.018887987907791302 by:0.0182695548732405 take:0.018207069349400865 all:0.014632228338232281 upon:0.014391681185727674 make:0.013319008192758643 have:0.01331078603169643 under:0.012591274432923375 :0.08960640911033788 +at:0.07827738316383556 the:0.07134034654800568 of:0.06984548413224759 to:0.053538558036525796 and:0.050469643170874524 on:0.04358500469581749 :0.02246314815984829 a:0.01884300240787185 in:0.01661714294866674 .:0.015879528518752448 day:0.010669662190889825 by:0.0089983830678231 for:0.00813929550502535 with:0.007848218497625382 said:0.007820403058344024 St.:0.007800583318948665 1:0.007099629432371737 or:0.006997616639954561 from:0.006858606599275492 :0.4859083599072959 +one:0.10757504863160208 out:0.06393072214258595 part:0.05345953864888265 some:0.04657778396619151 time:0.032653763285528395 account:0.0298978741893603 all:0.02673860913095395 and:0.02324876597992745 that:0.02275453097379819 because:0.021318504223257338 portion:0.02010071224985526 side:0.01926992014112468 any:0.018918137101655273 front:0.016609963575485047 many:0.016563310866764772 end:0.01592265492673931 day:0.015255366376758018 members:0.014811614297040794 result:0.014486922106154784 :0.41890625718633423 +and:0.14925259270609242 the:0.11493404980949397 to:0.058352224302778526 and,:0.033877465751443014 a:0.028706067860026 :0.027677988267422165 will:0.018006128508662563 but:0.017796593386079432 do:0.015299592858450365 of:0.013642369210816786 that:0.012582090348322998 for:0.012285293984668776 ;:0.011717649722015968 in:0.01082770479396182 not:0.009705727942827569 And:0.009704538765246403 The:0.009199909734093197 or:0.008775975041146213 :0.00743098775429117 :0.42922504925216065 +I:0.15071911589225087 he:0.1415895529823803 they:0.09502315092214805 it:0.06417970819051243 who:0.05537802296913741 we:0.05075709082254305 which:0.03998178386032051 she:0.03898061230245662 that:0.0336102057033871 you:0.030992385327455886 He:0.026236340392127216 It:0.025423911006833718 and:0.024925565393452673 1:0.015248127976311933 We:0.015187760150571737 You:0.01368212514403392 They:0.012697137212065798 ho:0.010574785975258504 man:0.009171331230244075 :0.14464128654650818 +and:0.15307785143864486 look:0.08332999530808154 looked:0.03983996221278673 or:0.030478747350510347 held:0.024635098487757846 was:0.023614968403075212 him:0.01911039123375687 that:0.01826848316825455 it:0.018061142921954685 all:0.017593056608338327 made:0.016026701137795658 them:0.016006038710572778 laughed:0.013328165640445575 up:0.012786411439600884 one:0.012716026804898528 interest:0.01246350713354164 be:0.012213805331564524 not:0.012132735879729906 are:0.012114376258907088 :0.45120253452978243 +to:0.42271202480224046 and:0.17753979320670848 will:0.06593803335290636 not:0.03998438159567855 would:0.03740133648834578 shall:0.021014415257789618 or:0.016909827508846058 we:0.01652342751471149 must:0.01540058495685181 may:0.01517109325489008 could:0.014439952952493578 can:0.014305813890116344 they:0.011903944712762585 should:0.01061391333794531 I:0.009598011108285152 beg:0.008957462714057129 an:0.008812978064442051 that:0.008308161119700733 cannot:0.007810717919642979 :0.07565412624158536 +the:0.16040950464015438 to:0.1469477655564597 a:0.08860308539154907 of:0.08127110628943103 in:0.07908224480043992 great:0.040672837137126786 good:0.02963910879349521 and:0.024209716797830124 full:0.02362312964518292 his:0.02156843381906024 its:0.02155495530543084 their:0.019242179264834913 for:0.017922563608994323 large:0.01661226172707666 into:0.015254971973110749 our:0.015025774932859419 with:0.014519045670759064 police:0.013320805267292016 In:0.013305999310607866 :0.1562145100683048 +it:0.20661626833118804 It:0.13133310388077965 which:0.05346195225056892 he:0.04322413433168328 and:0.0399221355018402 that:0.03638459118631527 there:0.02656324547693805 who:0.022588363007738477 This:0.01601752777676921 He:0.015090910728543903 what:0.013686208311658789 she:0.01181234484166701 this:0.011752239301455133 There:0.009749183368011116 man:0.007759333367156636 as:0.007068481254995637 work:0.006691860301109499 country:0.006039779831696346 but:0.005362639996269743 :0.32787569695361507 +the:0.15376169296906067 and:0.12399533920716241 of:0.061449613560061705 to:0.04181902339454535 a:0.03254643221670944 that:0.03247016055565308 I:0.02566770482297461 will:0.021009482790223594 for:0.019487975207943306 The:0.017777743920353927 in:0.015752033182220272 which:0.012968146120518177 would:0.012480064807770613 his:0.011973943065044066 or:0.011971936013070106 as:0.011063171814720761 no:0.010925990088753989 but:0.010296829978047975 can:0.010162793370716246 :0.3614199229144497 +the:0.6866137881751985 a:0.08845241482457478 tho:0.03691762732027369 The:0.034198133695986566 of:0.02552242362226839 civil:0.02159762898940818 tbe:0.012933720153890937 this:0.01288140762701431 in:0.011968808501482605 by:0.008327533723869558 and:0.00563649926565463 no:0.0051970527630731435 for:0.004799388469247415 or:0.004122180354390991 that:0.0038478459403312715 his:0.0037761672425031816 In:0.0035749693296310723 great:0.003452823897316585 Civil:0.003165850825916335 :0.022013735277967794 +the:0.5005074127196558 his:0.05073693283528126 a:0.05008034069961523 of:0.039048760137749224 their:0.03881993302716684 and:0.02872907186431586 this:0.025343119711161686 no:0.02524715560267766 any:0.022391351178724227 tho:0.02164890631082797 its:0.020069739034473042 The:0.01717911099857642 good:0.0151441045693914 our:0.015019847882458704 that:0.013976284784094689 for:0.011795111544420192 or:0.011567334924714692 same:0.010320494613525409 all:0.009632815015426337 :0.07174217254574332 +of:0.17214153628823872 that:0.17063398076918063 and:0.11066907087752742 but:0.060326450942464395 If:0.043313184555243175 But:0.04174123028324812 And:0.03829679308766452 if:0.032648382393276415 all:0.03034101245515532 as:0.027557777891568446 for:0.022871052396319726 to:0.022624335021796046 which:0.022613916522248544 when:0.021831134574840944 All:0.019661785860083065 in:0.015404627185544893 by:0.012363525370584067 That:0.011943748935424712 When:0.011243089479371703 :0.11077336511021917 +that:0.16832451653748762 and:0.16317551195275604 but:0.09202228048090219 as:0.06626898981545905 which:0.05056182452516285 if:0.034268175887251145 when:0.0327999336955599 where:0.02391654490512962 But:0.021638226096886436 because:0.020516735853829505 of:0.017875962661562897 And:0.017367123587138943 for:0.01715484095146282 If:0.016077584172624653 what:0.011042818726600803 though:0.010176208114312196 until:0.009969674033922531 while:0.008769541776912644 think:0.008148981878890557 :0.20892452434614764 +and:0.08477237829770672 be:0.05262014777945578 was:0.05087676166426081 I:0.04629440882694014 have:0.046225234512383966 had:0.03585842515266978 to:0.03427354157073295 of:0.03426430246622 the:0.034203990098211734 he:0.033631519995019975 has:0.03026770379249765 is:0.026637510284928525 are:0.02455863330040683 they:0.023495293371334047 not:0.022341569687509458 been:0.021377556460104714 who:0.020666893400383503 will:0.019755306395751383 which:0.019463789867014056 :0.337415033076468 +the:0.28140430035779646 of:0.2436478126269846 and:0.06402541083987327 for:0.04777996075148695 their:0.03682880812925747 our:0.025782520638038015 its:0.023598414287286956 tho:0.023374064878306604 in:0.019640185738005397 his:0.018199166585399423 with:0.016137166358742946 The:0.015352989327046377 by:0.01144421282532833 this:0.011014318843168874 her:0.010941903280191997 an:0.009802234255629882 a:0.009779375401388062 other:0.009066178579458642 tbe:0.008415584089707648 :0.11276539220690207 +said:0.20846931048919545 the:0.1063183816505582 this:0.050456347934654276 Lake:0.04577898377579187 Eureka:0.022207842341410877 Stevens:0.019195474245619553 and:0.01794159424534998 a:0.016377048471099095 Thurston:0.01312717068510859 Angeles:0.012611785394455196 Fairfax:0.012231065097268859 Washington:0.01217750005272931 each:0.011962596436439724 York:0.011026526890527298 Redwood:0.010973267833069792 of:0.010459173351675094 Jefferson:0.008990482553819488 Mower:0.008782873858349612 Marshall:0.008177019435904403 :0.39173555525697334 +and:0.10654698637656804 had:0.06396508217553358 he:0.0630719839907748 I:0.06003257203266627 has:0.05758401598890769 have:0.05266451376422002 who:0.034683066942126715 re-:0.0285963172825606 not:0.028077562104782895 to:0.026379749888722666 will:0.024586214217654532 Mar-:0.0233378604773874 be:0.022600179904123517 was:0.020072729880324023 we:0.019933797604297566 He:0.018658722134294103 it:0.017751141997576228 they:0.01694711975689941 then:0.012802610025954099 :0.30070777345462585 +it:0.12291356726271781 he:0.10766523848787593 It:0.08126222867785683 which:0.05815091424687329 I:0.054909855356083816 and:0.04607290301292405 who:0.036234513317437905 He:0.03284977251390459 that:0.0307500349566012 she:0.02807960748770171 there:0.017106531141060498 as:0.011444714915749334 She:0.009915288061780691 ho:0.009311744482256256 what:0.009144898696231517 1:0.008083327589627603 This:0.007923029238788926 lie:0.007752420127589498 man:0.007654383581502722 :0.3117750268454358 +of:0.19419868695309442 the:0.13003891262514508 in:0.0915277684265344 his:0.06598251460657661 her:0.04773388565019569 and:0.039396799149537094 their:0.032883443531211386 this:0.027593220187566554 In:0.027413414567376167 our:0.024548098872756306 for:0.024040489965743036 with:0.02140123445578985 to:0.020465434335127073 on:0.01913310917651892 public:0.01902312270486467 my:0.01851757786244986 a:0.01797460366663853 that:0.016520957173157463 its:0.014703748072098208 :0.14590297801761867 +and:0.0613647763407413 away:0.05552870617722476 taken:0.036659481703679414 them:0.03245257320743252 him:0.03133313750614208 returned:0.029737165986360507 it:0.027414201353757765 come:0.0267269552555555 arising:0.02655580975088971 miles:0.023952440413622954 came:0.023644810619677287 suffering:0.023354852428090548 feet:0.02206653324735653 mile:0.021033922490932704 up:0.01984314469349347 removed:0.017659369762396515 comes:0.01707930495730231 out:0.016681688267950995 received:0.01595060134037965 :0.4699605244970135 +the:0.11585417939164347 to:0.05308185960729683 of:0.05026049029629246 and:0.047602255548841295 in:0.0330256804673823 at:0.030787021800850214 a:0.02787377378972673 be:0.026996485399395646 was:0.023298962544265348 is:0.021918357215074482 for:0.019574717686441055 that:0.015422354205535269 are:0.012156901700205296 his:0.011497169903776755 :0.011380224255273245 were:0.010842673070266337 it:0.010624034747031545 he:0.010029087829917816 with:0.009872291036739155 :0.45690147950404475 +went:0.06497679573794887 made:0.05774620104570061 taken:0.05735538638763511 came:0.056344856650764726 it:0.04505332531202812 come:0.04069822942965494 put:0.03596125247119347 brought:0.0330585210733198 and:0.027972859389838487 them:0.027370888436186833 set:0.025848604137249424 given:0.024949489653652502 called:0.024085472591228813 get:0.023855445521074537 him:0.02072571477256628 give:0.02017222231284957 take:0.019964255375992522 got:0.0198039261679289 held:0.01914029588719823 :0.3539162576459883 +thence:0.27369925367902787 easterly:0.07021226285448523 westerly:0.061012411774579174 northerly:0.053671719262452226 east:0.05067425292196133 southerly:0.043792108949582305 west:0.04104421687035795 south:0.02867864804909438 southwesterly:0.024787233546094682 feet:0.021398401638195123 line:0.020799444359137702 and:0.01772170255736246 due:0.01698700374945468 north:0.016972312231193117 all:0.015758243985651326 northeasterly:0.015259521405425226 erly:0.014354310211093279 southeasterly:0.013931005953319416 northwesterly:0.010641804744094516 :0.18760414125743805 +.:0.07990321386205455 Mr.:0.060397121889078365 and:0.04561712473701279 :0.041243127820969075 Mrs.:0.023969528046468656 Dr.:0.019084575961049788 the:0.018029736659154052 by:0.014757487466691989 of:0.014498234790086956 Mr:0.01404492156000073 W.:0.013578020166182892 J:0.013131865825122728 to:0.011564132939567966 No.:0.011246329315733442 A.:0.01085631795384826 A:0.010769826149298237 at:0.010425572200368922 W:0.009669401002170513 J.:0.009663617062903574 :0.5665498445922366 +of:0.12173635482673327 to:0.06350979409251277 in:0.06220931297522563 the:0.049291708033074415 for:0.04063126373195259 a:0.03837172036235347 was:0.03293227419174527 be:0.030579700056535514 and:0.030442400803349833 been:0.016024907342640945 In:0.015912370452371278 on:0.014630895924979978 were:0.01454006149440092 is:0.013903857458120842 at:0.01317028762479345 with:0.010928400887784859 or:0.010913673713107103 :0.01085059784281911 from:0.010560030403289887 :0.3978603877822089 +the:0.1686254608388007 of:0.08510631124515454 Mr.:0.053063968456177904 The:0.05290176461656073 and:0.04281351925879434 that:0.03659363717531167 a:0.027376597759942865 this:0.016009104250207996 in:0.014329796242200724 :0.013577096541793277 .:0.012332809689052695 Mrs.:0.011483371514010961 tho:0.011366564416127033 to:0.010938551223696477 for:0.010273564804762044 which:0.009103350770352783 as:0.009022855831525262 his:0.008831867202298479 or:0.008219518012985871 :0.39703029015024366 +the:0.31764542186729655 his:0.09146598599085849 The:0.05061053611018559 her:0.04303140214753846 their:0.039470376840976415 our:0.02703259319686056 my:0.019752999446074396 whose:0.019708157037283226 a:0.018372026934412804 tho:0.016173425046317344 your:0.01589000571265582 of:0.01320006618112515 that:0.010140347232272525 its:0.009606353259478605 this:0.008865250381909532 His:0.008844581745116684 and:0.008739200643990912 per:0.007561359291692228 tbe:0.006513551596152363 :0.2663763593378024 +the:0.20280882960262878 of:0.11035898459462609 a:0.10335033278087509 and:0.050102902605642916 to:0.030679134858504604 at:0.025996424170684755 in:0.023913192610855016 that:0.022145686581983015 The:0.018160355768404964 on:0.01619666909141601 from:0.014843089019117224 by:0.014776943391417151 an:0.01399122903800135 with:0.01235593804037466 for:0.011678013111253206 as:0.011059495594543965 tho:0.010293810408214964 his:0.009475224811491925 their:0.009164326810340717 :0.2876494171096236 +the:0.23080401036742385 of:0.08388424545292619 in:0.055936936100007044 and:0.05095795184135521 a:0.04514946487991196 for:0.03600138155181499 to:0.03372110171263441 by:0.021046846702873448 at:0.018131568932416218 In:0.01529942408270245 that:0.015111467094438114 tho:0.014659545362572976 The:0.013256337102029657 their:0.011625289798577498 his:0.01153090129571546 with:0.01117410158917977 :0.01069950019633918 or:0.009777360233452484 such:0.008989082504309845 :0.30124348319931926 +it:0.11857892928876056 which:0.10419954526017984 It:0.10229720510101595 that:0.06796245048918885 who:0.06088908826247786 he:0.060731706658395446 there:0.047718276913133226 and:0.0298646407467943 There:0.025721626378001235 He:0.023765504777663107 default:0.02149030696489031 as:0.019132676760165265 This:0.015088553278066501 she:0.01413948392901254 what:0.014110548249504374 this:0.009613248172212615 work:0.008813388419150843 man:0.006677000754574867 country:0.0066605789516794795 :0.24154524064513283 +of:0.2884068555621957 in:0.08223918829982542 to:0.07705356603516876 for:0.06601721800368475 at:0.05038828737307335 on:0.047916283334159336 and:0.035666839086893144 with:0.03262815483279849 from:0.031224828710887602 that:0.02691518272958391 by:0.026841722197596476 In:0.01825961477967111 as:0.012710328316993844 about:0.010669197032910178 through:0.00931029993103671 before:0.009228661677258127 over:0.009168505021142435 upon:0.008923613538062454 under:0.007948683505648632 :0.14748297003140956 +the:0.11919516938815296 of:0.07230453158552728 and:0.05781056740443249 a:0.043018564803886335 to:0.031305092790907506 in:0.020848713353460488 at:0.014270110001066288 .:0.012526810245749479 :0.012413283442322082 for:0.011719122709941797 by:0.010808400946589808 or:0.010404172990115616 The:0.01003576004804544 with:0.009811868184449042 tho:0.009295902015355835 was:0.008924239095331684 that:0.008672304223433876 is:0.0085591147338948 be:0.008335143826716943 :0.5187411282106204 +as:0.08712827666578417 and:0.04050522428326358 to:0.028534921589068965 :0.026308780610535855 of:0.022619816264109773 that:0.021085645143045346 for:0.014020400146285972 at:0.013898799544843748 with:0.010902144005021236 it.:0.010854432235540818 but:0.00887934027605808 As:0.008527577096351014 in:0.0077997893609003345 is:0.0076228459556971105 him.:0.007604693461997998 made:0.007502862120833849 from:0.007123854084898384 .:0.007019535730450068 was:0.006962993088340438 :0.6540980683369733 +of:0.3596587964352502 in:0.08760574948935737 to:0.06513114585216558 that:0.05781328242576017 on:0.05618672397247665 and:0.04591907745519269 for:0.04400494081211923 by:0.035389344068157295 from:0.034620852340397884 with:0.028107342376906576 In:0.022895817039176897 as:0.0191679668595622 at:0.015405853317667752 upon:0.013230950487290716 which:0.012864697475458686 into:0.011436937268339867 through:0.010150922321514306 over:0.009815625180625167 is:0.009577225469595815 :0.06001674935298492 +W:0.07892631551588039 M:0.0649850702455623 J:0.06391667000631429 C:0.05905432254903491 S:0.054856972986157694 E:0.05424348669664422 A:0.0514021035998739 H:0.049828895999379015 B:0.046817024292917286 P:0.04169510535418999 L:0.03908899165768591 F:0.03868396050835962 D:0.03284277583604958 T:0.02839631999315026 R:0.022484651061807727 K:0.02066410658290062 .:0.02003194872932241 G:0.015174321886982735 N:0.014851087760055299 :0.20105586873773182 +that:0.16832451653748762 and:0.16317551195275604 but:0.09202228048090219 as:0.06626898981545905 which:0.05056182452516285 if:0.034268175887251145 when:0.0327999336955599 where:0.02391654490512962 But:0.021638226096886436 because:0.020516735853829505 of:0.017875962661562897 And:0.017367123587138943 for:0.01715484095146282 If:0.016077584172624653 what:0.011042818726600803 though:0.010176208114312196 until:0.009969674033922531 while:0.008769541776912644 think:0.008148981878890557 :0.20892452434614764 +has:0.4211927567449083 have:0.19136791063741782 had:0.16716631938626708 so:0.04461635226536069 not:0.04034175284190244 a:0.01787659275568292 having:0.013228090344230826 lias:0.009602396116225001 as:0.006554332542600714 the:0.006309707742305854 it:0.004932377649159766 haa:0.004802531098131749 bad:0.004782165672389207 baa:0.004573965898652844 that:0.004448656522008238 It:0.003727011664946469 and:0.0034198146223797248 havo:0.003351460312072745 there:0.0032454527654106427 :0.04346035241794698 +of:0.11519358432195906 and:0.07319406708652963 is:0.046590292219532266 now:0.0412919487023247 are:0.04051697068886163 it:0.036919763988236466 after:0.03002131801944796 was:0.025417874524947776 the:0.022123276100201855 that:0.022122142436788315 not:0.02208546878185821 same:0.02171093205787534 as:0.021550130102116993 his:0.020064607510839678 on:0.018279287273353678 in:0.01780414825985903 and,:0.01740548233006418 human:0.01723358615876201 beginning,:0.016208874216225567 :0.3732662452202157 +and:0.10214269553251397 of:0.09040688128822227 to:0.08266334484250851 the:0.07952638880880775 in:0.030159081630398647 or:0.02141868930653503 be:0.020558547501083067 a:0.019092232084906114 was:0.01730227941062289 I:0.01685050869379049 is:0.01541184109028007 that:0.015236427571031103 will:0.014324589118144174 not:0.012733753133334462 it:0.012305399851639243 he:0.011611656462904685 for:0.010710394488925572 :0.010474259588190279 In:0.010168478097621888 :0.40590255149853977 +of:0.09129790931378902 the:0.07369883040827747 and:0.047842263382354346 in:0.04189055351593407 to:0.04045875475680249 a:0.03542341257202578 be:0.02020462051672066 for:0.01979292654746225 was:0.01760256398103379 at:0.017380150555488715 is:0.014984483003968216 with:0.014047653760730413 by:0.01374644383819499 :0.012670486581795598 In:0.01200961464556976 or:0.011563835749786333 from:0.011391516893522809 are:0.011273104484969465 that:0.010755276030689069 :0.4809655994608848 +and:0.14942138511822833 of:0.08978501186562872 said:0.052428102666718324 fact:0.03387256978159219 is:0.032493160955671126 to:0.028014769677481212 in:0.02532456364444691 so:0.022652006702449056 was:0.02198429943298193 know:0.021698867906067454 on:0.017976544273067583 than:0.017074290940094806 as:0.01680619078272194 say:0.01645865078759601 by:0.014945742149577433 believe:0.013656720356914414 or:0.013602057387732968 with:0.012559905196556085 for:0.012275725627531892 :0.3859694347469416 +and:0.0659719131053203 committee:0.04178795602666034 was:0.03483034441985176 placed:0.02150125325790633 put:0.02054758624413872 went:0.020392935423355442 Committee:0.020216086500755816 that:0.016985364350317004 out:0.016547583023347887 him:0.016046809542789465 interest:0.01591777695985886 going:0.015570276459872225 men:0.014904245333209266 up:0.014546215315697334 work:0.014023854367052654 held:0.0138396846897498 man:0.013401813333448686 go:0.012351978357249507 one:0.012050029763516138 :0.5975662935259025 +of:0.18580986308416791 on:0.12563765441887462 to:0.10500563230756081 in:0.09950524494428069 from:0.04946833332769638 at:0.045657854158559025 and:0.038190216325591435 In:0.03603266104546022 for:0.03000433934713114 by:0.026101697973540908 that:0.022250439422017144 with:0.02026831797444455 as:0.019963603742709758 upon:0.018036303155555634 along:0.0155054590909024 about:0.013072857664689843 into:0.011839606837703126 or:0.011570571872375097 through:0.011299640137902562 :0.11377970316883676 +the:0.6943270819704095 The:0.050244173620074696 tho:0.0298428533505965 insolvent:0.02879399665954643 and:0.023759679472800017 a:0.01677319992998663 general:0.013414694528944353 of:0.01230289247520752 tbe:0.011845491174672738 State:0.009308714427730465 county:0.008006599820666423 or:0.007769463825348136 homestead:0.0075398385732811145 existing:0.007313210374483406 land:0.006775880409402425 annual:0.004803139407084926 an:0.00479288284673711 special:0.004764413804145946 said:0.004758381172532337 :0.051863412156349355 +and:0.04852416836146884 :0.032968932451991444 that:0.027227627433149545 be:0.01723862970314992 was:0.016017963770982524 is:0.014741833176007147 or:0.013775009803853537 for:0.012902760714242026 them:0.012368700832286032 as:0.011947861174436013 used:0.011535012525199485 but:0.010964360183578648 not:0.01093438128872382 it:0.01069141992323969 time:0.010630701558288939 are:0.010029608625888028 more:0.009554898073448809 it.:0.009463699369062167 now:0.008707715097712702 :0.6987747159332907 +and:0.09860394117421444 reason:0.04537558134446942 necessary:0.026235751399848378 pay:0.024184919776422863 demand:0.0239080581792044 but:0.02334020348587279 made:0.020663437087703806 provided:0.020633761284611613 do:0.019440645483455317 responsible:0.016758014220346375 that:0.01592539464446829 asked:0.015525805062701346 provide:0.015222560187919558 done:0.01407280200315986 vote:0.013479870015703374 him:0.013352252346460527 enough:0.013261971503211028 it:0.013097506321030931 them:0.012950491007273838 :0.5529670334719219 +number:0.0496411090873096 day:0.04334409816996569 amount:0.0312099376837506 line:0.03025856749160674 out:0.029256445191741663 part:0.02559762664484727 and:0.021283927300280187 one:0.020452347483776542 case:0.02033191000666753 side:0.01844794766032957 act:0.017754021042254424 time:0.017298685372278452 tion:0.016330653829232312 place:0.015992704583178346 those:0.015507966114220496 power:0.014662881834353948 use:0.014397615589725493 man:0.014359920417248567 lot:0.013630640085749485 :0.5692409944114831 +in:0.38695351345884954 an:0.11392379637304631 the:0.10668892907759193 In:0.10610533933378238 to:0.04409436818946255 of:0.04341593456402891 and:0.03389929134464346 this:0.03205354261116893 or:0.013132238456950884 good:0.01173524388592026 The:0.008117771310109044 a:0.007315545749599109 iu:0.0071490396603886746 special:0.0063413390532221225 such:0.0060092241043508314 tho:0.005975162030827725 no:0.005791704016768436 restraining:0.005614962980820673 all:0.0055415816588139264 :0.04914147213965427 +of:0.31273218767136757 in:0.13342621252619372 to:0.09780705790630308 on:0.05414928463083833 and:0.047171925444027436 for:0.0376686337169118 by:0.03645226841550634 that:0.03373263078492161 In:0.030754529579235936 from:0.030002069709090945 with:0.022346557199502716 at:0.017777434796358314 upon:0.01621943657758442 all:0.013447490183286843 into:0.009947853229426522 as:0.008207981516219449 through:0.007557506084481189 was:0.007428731142028643 is:0.007261539679977535 :0.0749086692067376 +and:0.03868242960999506 as:0.031124813427855922 went:0.02352509775927722 him:0.02196555539050794 them:0.018760608639018784 up:0.017985449426794205 is:0.017894175620344187 go:0.017174904667157563 able:0.016756848979943888 going:0.014481672239490295 it:0.014128375989346808 was:0.013277058274565138 time:0.013249953793837373 not:0.012469887553778763 began:0.012465717758716884 way:0.012105610030480113 back:0.012090864562211581 right:0.011941707822828511 amounted:0.011564315359310868 :0.667354953094539 +of:0.09129790931378902 the:0.07369883040827747 and:0.047842263382354346 in:0.04189055351593407 to:0.04045875475680249 a:0.03542341257202578 be:0.02020462051672066 for:0.01979292654746225 was:0.01760256398103379 at:0.017380150555488715 is:0.014984483003968216 with:0.014047653760730413 by:0.01374644383819499 :0.012670486581795598 In:0.01200961464556976 or:0.011563835749786333 from:0.011391516893522809 are:0.011273104484969465 that:0.010755276030689069 :0.4809655994608848 +to:0.4773358627875679 and:0.09124600945721223 will:0.08688067558832409 not:0.04280801819176813 would:0.040484567468448626 shall:0.03284671378896507 can:0.02085838958802272 could:0.02004029282103579 we:0.019312772489169055 you:0.017767293238449555 may:0.017481162632183446 they:0.017325884367274735 should:0.015188016800063119 I:0.013709997618187081 must:0.011366966077957891 who:0.010875474937445862 or:0.009712363436214769 which:0.007651753366345325 that:0.007042772857074546 :0.03906501248829008 +the:0.16545598340412337 and:0.10083147674060197 of:0.05669132743264872 to:0.045375447618767294 a:0.03328338184540856 will:0.026843814107363254 I:0.024097013577746195 in:0.021710306474172106 that:0.021271051606266373 he:0.01764255763856412 would:0.01666612259064993 they:0.016059424847177987 which:0.015551243971047833 his:0.014495362617954652 this:0.013389129217999531 or:0.013053269911012407 The:0.012354656270836834 their:0.012182699239424156 Mr.:0.012027255548910189 :0.36001847533932446 +the:0.26748350631288625 of:0.19714322397920142 to:0.08229131604485593 and:0.053346787227361574 between:0.030466495223148444 by:0.02865181316378642 per:0.019638986232555035 with:0.017908485472882343 in:0.017574793764935388 The:0.015357262582194853 said:0.015277635378124146 tho:0.013636736063807562 from:0.013338785515780053 on:0.011786965083644352 girl.:0.011510077613793282 for:0.010188607197450615 Mr.:0.009688660896079991 at:0.009608916366156057 boy.:0.008591822403946837 :0.16550912347740948 +of:0.17806154905335042 in:0.1632730012649279 the:0.09345129950968649 and:0.046766319098195924 for:0.04272125854299432 his:0.04040203143308492 this:0.02793948425002031 to:0.027880514056792198 their:0.02760277591907405 In:0.026469655242521525 such:0.02109834250533357 that:0.018086713441445967 good:0.017845864256427032 no:0.01762451458173463 any:0.0167729266188845 all:0.015315550558646175 her:0.01415252720480469 public:0.012637212934152658 or:0.012627478250903348 :0.1782709812770194 +the:0.09684081064840576 and:0.06551335624548284 of:0.05146145169206151 from:0.049520598669154245 a:0.045427902131977435 to:0.0370403239153822 be:0.035669151526387034 was:0.030489628475080553 is:0.026635804908522978 in:0.023878514238638158 are:0.018513936943033917 not:0.017945708099223703 or:0.017556265685966497 been:0.014265228721347686 at:0.013857211504087178 he:0.013733215789660087 were:0.012396679125422956 I:0.012347944480187516 for:0.012197989992860347 :0.4037082772071174 +to:0.3195729752032819 will:0.18626823526307568 may:0.08422330530496087 shall:0.060242782162461476 can:0.05916804545317362 should:0.05688857487193784 would:0.04641179200858261 must:0.041080598248278415 could:0.03797051722281157 not:0.02952204533323229 cannot:0.015406006408789521 might:0.010823790131726888 and:0.0065052911275713015 it:0.003468597518879 never:0.00251896586270885 that:0.002336982327040673 also:0.002278239746315253 probably:0.0021210593713628287 which:0.001992815033102389 :0.030199381400707034 +and:0.10983790422826409 of:0.05634100726011227 the:0.035919562950176384 to:0.016990678113593026 .:0.014859761676366056 in:0.011162595433228817 his:0.010827885446257273 by:0.010711881275095444 that:0.010369116553910436 at:0.007821468332338767 a:0.007750641152597528 on:0.006339378500093267 for:0.0061658907529028705 Mr.:0.006068190437363106 The:0.005569267862608379 A:0.005305649174559362 her:0.00485564485924609 1:0.004667975749684783 said:0.004246369471091189 :0.6631891307705109 +:0.05418622246046956 .:0.042843806849262006 Block:0.011520719974760478 C.:0.010146914959806857 OF:0.009821221717464728 W.:0.008518888529450064 at:0.006621432668452477 J.:0.006293210683325668 M.:0.006178673798644588 A.:0.005986029538437309 L.:0.005566831668559212 E.:0.005392014493213637 H.:0.005032696369644291 John:0.005006286600163953 B.:0.005003744778379902 J:0.004775481089541296 Mr.:0.004765981240091757 in:0.004290201984058839 it.:0.004238994023051937 :0.7928106465732214 +be:0.14795348630294766 was:0.14710580961985473 been:0.0756400511621232 is:0.06781962796158866 were:0.05136003224012411 and:0.04939645169862733 are:0.04305897167101106 he:0.038257655516917656 being:0.031017139088862944 bo:0.0137602455922241 they:0.01340033684499459 Is:0.013031471540579376 I:0.012927882673173215 have:0.011786972727022766 as:0.01078754937816927 not:0.010688485589937454 who:0.010626684271244384 we:0.008315042434639193 had:0.0075500531723694175 :0.2345160505135889 +if:0.1278017853398982 do:0.11716200844275505 Do:0.10217507082597022 If:0.0923586072605022 and:0.06606576440173116 that:0.06378448512281495 when:0.04742626841634814 which:0.03260565409656812 as:0.02998424509746438 what:0.02906521250562563 did:0.02735643928123973 but:0.0241996206228251 because:0.019581279035842218 "Do:0.01768737786923014 let:0.015775041220920258 to:0.014535067847291465 want:0.013338277528124626 When:0.013188493967346348 for:0.012836826374083114 :0.1320724747434189 +and:0.1948290057372104 of:0.10395673354922161 by:0.06478629985885738 with:0.05755545855592205 to:0.037252846705314105 the:0.03490089260968564 Mrs.:0.016722982074235653 for:0.01667460782772673 said:0.012168870987898473 from:0.010867034945443697 that:0.00967799862070741 Mr.:0.009625433498465527 an:0.008634469299175409 as:0.008332807144018696 in:0.007608070679911824 Rev.:0.006571532050052613 :0.005829816566707929 against:0.005352279201595504 on:0.005143245133131643 :0.3825096149547177 +and:0.06454739073657131 demand:0.023313300174744492 ready:0.0192991955467307 used:0.018559068069203856 time:0.0167973135366693 not:0.012889415712033305 vote:0.012868664167591082 it:0.01277775949265748 candidate:0.012059490274945432 him:0.011492660117416436 them:0.011389360230310022 called:0.010603763162339089 made:0.01030049958521204 up:0.009942829375404135 was:0.009875709402481388 as:0.009516893763303088 patent:0.00929908628672026 or:0.009178704268878403 but:0.00882338719685127 :0.7054655088999369 +one:0.028235296630257093 on:0.013778595903242657 law:0.01146531162719406 and:0.011404379135884777 little:0.010917592419508987 sold,:0.010907200795644665 ;:0.01041181406101687 States,:0.009458417594164216 two:0.009085091969268062 it,:0.009070781694553168 man:0.00855073586686687 them,:0.008384445758289704 any:0.008124620138982923 in:0.00809446559534728 it:0.007623240631455543 property,:0.00722847878006935 law,:0.006898350151828482 day:0.006674818166109544 year:0.0065934184096426915 :0.806092944670673 +of:0.11105155334209062 is:0.11096322598839059 was:0.08331359796314161 as:0.06927475667180699 with:0.05918730366258345 and:0.057746672345593136 to:0.04790951957172692 be:0.0384471992892376 for:0.036031045003189245 by:0.03575272429386617 in:0.03550899309203219 that:0.027774156699461844 had:0.021227144123820915 have:0.02012145292587035 made:0.018801628785911437 make:0.016878160968631255 not:0.016454413533791075 Is:0.016034749358611 on:0.01603315008191079 :0.16048855229833278 +;:0.016670854813316992 them,:0.009565475676126855 and:0.00887102543747379 men:0.008707428946664847 it:0.008613456735321972 in:0.00848229871653144 it,:0.008377115589774466 them:0.008240412780881229 him:0.00790770324439788 hundred:0.005959519950917575 out:0.005732542983645637 up:0.005348066429022722 man:0.005242425051996458 to:0.005009166507552706 time:0.004962261673577654 him,:0.004906634059081137 people:0.004795631039436981 country:0.004705997515697867 people,:0.0045420385454919 :0.8623599443030899 +that:0.2679623925605681 and:0.17473875447269513 but:0.057929987358311716 which:0.037190018528838846 where:0.03706024247499286 if:0.03508139552128882 as:0.029370443353037907 But:0.026769814579767445 If:0.026708793281814542 when:0.023449076222347758 because:0.01572699350916326 for:0.011948092023196523 Then:0.011803463083392453 time:0.010422188943700068 That:0.009894177606575497 or:0.009603879748360232 And:0.00918441433442016 while:0.009067610354157665 then:0.008929273838106782 :0.18615898820526422 +the:0.11919516938815296 of:0.07230453158552728 and:0.05781056740443249 a:0.043018564803886335 to:0.031305092790907506 in:0.020848713353460488 at:0.014270110001066288 .:0.012526810245749479 :0.012413283442322082 for:0.011719122709941797 by:0.010808400946589808 or:0.010404172990115616 The:0.01003576004804544 with:0.009811868184449042 tho:0.009295902015355835 was:0.008924239095331684 that:0.008672304223433876 is:0.0085591147338948 be:0.008335143826716943 :0.5187411282106204 +feet;:0.15935439875556584 running:0.08377737986376003 feet,:0.0727813677182167 ;:0.041301062968104506 feet::0.03411127454700721 street,:0.023877438464034575 and:0.02321565367154086 point,:0.02085744320894769 2;:0.019565119199508058 stake;:0.018523906031597297 4;:0.018184154177405966 3;:0.017958552419039174 point;:0.01497263383911876 street;:0.014913727332432557 rods;:0.013732981018554762 corner;:0.013540690450593442 5;:0.012308465618204211 chains;:0.011913398535052896 rods,:0.011003538306807038 :0.3731068138745084 +is:0.1327791054941627 or:0.09403466354356624 and:0.0925318183749997 if:0.06822142943931922 are:0.061663067613824105 was:0.05268288415492811 will:0.049204924252610166 not:0.04151469442125817 could:0.0402673724595592 would:0.034852954889581754 do:0.03271202312092481 does:0.03222926442365175 did:0.029204858077407286 have:0.02626852722829463 were:0.024757787306793833 had:0.022118066408914377 If:0.02128026978287307 but:0.017817594394468717 can:0.017721594198788066 :0.10713710041407408 +;:0.06527070137239484 me,:0.024770259852592916 it,:0.022909248366026192 him,:0.019498196217744793 and:0.017503416492596156 them,:0.01634700015096346 thereof;:0.014764706802616018 her,:0.011139464277578767 it:0.009571030467511718 time,:0.008536437017099826 up,:0.00851179383017086 man,:0.008213178802974511 I:0.006879528780352403 us,:0.006499845466715348 years,:0.0060188916275171235 well:0.005992905770609363 here,:0.005851074049422059 out,:0.005691592965567716 days,:0.00560063344892196 :0.729430094240624 +away:0.07290525335463358 and:0.053545434817749225 them:0.043494906093987755 taken:0.041613467173859026 come:0.03254650801241897 him:0.02265610196123226 came:0.02196325106100645 received:0.021962865426636967 out:0.017695748304659333 arise:0.017554632606758963 derived:0.01676375278777754 it:0.016033154406587015 returned:0.01540104174709621 made:0.014866017919142707 up:0.014692323564895186 removed:0.01462535559125576 far:0.014254790753679778 suffering:0.01423564971727179 days:0.01389858210718057 :0.518291162592171 +the:0.38983082516259204 a:0.11267151931169694 The:0.10500802583628899 of:0.0402841650304381 and:0.03684506769597018 tho:0.026582570533574875 protective:0.026300849822252656 his:0.024569867288513007 our:0.018816680560552704 all:0.01811496095100711 that:0.015148204440677914 to:0.01415178066159076 new:0.013859880860933045 their:0.01245034929203983 any:0.011677981661404966 old:0.008920635697244737 its:0.008820851866446695 other:0.008336398230979286 tbe:0.008328835439180938 :0.09828054965661524 +of:0.39318533949353696 to:0.10168383150279085 that:0.07344221787856196 in:0.06398429841771826 and:0.06307824717928001 by:0.0444966739606223 as:0.0318736942382347 with:0.030907636769198422 for:0.025977251672362634 from:0.025013406948830984 which:0.020900212960880515 upon:0.011323131610148078 when:0.009653252846538908 In:0.009277501315561642 was:0.008827799855022007 all:0.008691861548689207 on:0.008548917054995529 is:0.00800773003480109 at:0.007978223401124418 :0.05214877131110147 +of:0.09129790931378902 the:0.07369883040827747 and:0.047842263382354346 in:0.04189055351593407 to:0.04045875475680249 a:0.03542341257202578 be:0.02020462051672066 for:0.01979292654746225 was:0.01760256398103379 at:0.017380150555488715 is:0.014984483003968216 with:0.014047653760730413 by:0.01374644383819499 :0.012670486581795598 In:0.01200961464556976 or:0.011563835749786333 from:0.011391516893522809 are:0.011273104484969465 that:0.010755276030689069 :0.4809655994608848 +as:0.06931392982974462 according:0.052071562389565784 up:0.0511867300210483 and:0.040371568633051955 went:0.03351644485287816 back:0.032358406609281 regard:0.03073407747799069 feet:0.02852138506231652 down:0.026379903432040268 owing:0.02466642634685871 due:0.023695193974505355 go:0.022910973192184297 reference:0.020802802907016128 came:0.019883741951819873 sent:0.019874244915639484 attention:0.019565955494145405 come:0.01885185084678811 given:0.018792390567602263 it:0.017366961307524745 :0.4281354501879983 +virtue:0.062060494787377685 out:0.05417899169104244 part:0.03289673107629515 one:0.02969369892462812 quarter:0.027015883171169475 favor:0.01993830018372674 result:0.019463829004704194 guilty:0.018891084377354095 means:0.018499162894926688 end:0.018170939082736048 that:0.018121271122199262 construction:0.01726217741616459 presence:0.017003995482744873 tion:0.01673652166540914 case:0.01640819963257697 side:0.016055927605250184 erection:0.015381239457214257 account:0.015287601389485416 hands:0.015156055434805247 :0.5507778956001894 +the:0.11274823966931571 and:0.08329996793360815 to:0.062372082173126384 of:0.05346002906215973 so:0.0299749817344208 is:0.026294180790411077 be:0.020260006954324915 he:0.018124449911071136 was:0.016351044211737983 re-:0.01567649125103956 Mr.:0.014726716630740086 in:0.013675410003338988 for:0.013272602215284653 a:0.012159264338821467 I:0.012040910229586727 or:0.010977326121126826 :0.01035107289213954 are:0.010219913969554774 not:0.009881708091297656 :0.4531336018168938 +sum:0.03352282876311118 number:0.028116684882597106 line:0.019995206059833036 city:0.01946514558931857 out:0.019275318828420953 day:0.01666865340772654 county:0.014872697538657208 amount:0.013254184849875051 Board:0.01252325449624941 town:0.012449555905674143 side:0.011663975251122375 part:0.011517157473718155 County:0.011460540331966697 state:0.011087331502382173 City:0.010878919191854432 purpose:0.01081028255427907 and:0.010297866493795984 way:0.009848747943663767 name:0.009522170936943183 :0.711769477998811 +at:0.08100185507561891 the:0.056314708796237796 and:0.04125742373780089 that:0.03207068915857165 an:0.023433182452951538 as:0.02263218262512195 of:0.02195425797109962 No.:0.019273611865909694 :0.0169537124953421 No:0.01579688733938507 to:0.013178599055514585 a:0.012624866258074026 .:0.012027750152973011 when:0.010915812370889028 which:0.009836569387237672 said:0.00954092034787585 but:0.009054235803148052 than:0.008779098989637173 for:0.007692937665148208 :0.5746606984514632 +the:0.09684081064840576 and:0.06551335624548284 of:0.05146145169206151 from:0.049520598669154245 a:0.045427902131977435 to:0.0370403239153822 be:0.035669151526387034 was:0.030489628475080553 is:0.026635804908522978 in:0.023878514238638158 are:0.018513936943033917 not:0.017945708099223703 or:0.017556265685966497 been:0.014265228721347686 at:0.013857211504087178 he:0.013733215789660087 were:0.012396679125422956 I:0.012347944480187516 for:0.012197989992860347 :0.4037082772071174 +of:0.2482505989266556 in:0.16245436894270945 to:0.10097355913666131 with:0.07205575529295577 for:0.05443344445948817 on:0.03918168512304436 from:0.03288284460291835 In:0.031249216442697722 by:0.02802601117780366 and:0.025346031881505828 upon:0.019165726854335662 at:0.017439926090703266 that:0.01473555609944598 into:0.013217611448190803 have:0.012767231121901763 had:0.012410076213680071 is:0.00952707304831624 made:0.00872124533841055 make:0.007879769294940667 :0.08828226850363476 +has:0.136396035473518 had:0.12543285623155703 was:0.09900134801189707 be:0.09424039612730846 have:0.0864664704756011 he:0.05891810470140378 are:0.05017690959486796 been:0.04718663155188325 were:0.0419432597430632 is:0.03899723108786925 the:0.03715106486643753 and:0.033114504241847545 He:0.019603118927117278 who:0.01721084533035993 I:0.010221046036076794 they:0.010133741453244841 not:0.009865532429772166 so:0.009588664599581274 she:0.008841961333220443 :0.06451027778337311 +the:0.5845958204366754 The:0.059646279325937204 and:0.041764476336922866 assessed:0.03926015443260602 par:0.03812645348990866 tho:0.028430927639752312 in:0.021909629602283487 of:0.02019607396286974 a:0.019987806663120666 great:0.018709759220909967 total:0.015713324619915165 general:0.01193556029434643 full:0.0109273595750498 tbe:0.010255563946204185 on:0.0074201556434255736 real:0.007001708539588589 or:0.006988146109555765 relative:0.006210334481610738 best:0.006106666560718502 :0.04381379911859892 +and:0.2087838254355898 would:0.10801359537298082 to:0.08311041409072781 will:0.0764440533061484 they:0.06524254714067708 which:0.0570167827645705 we:0.050723627828540965 I:0.042984716132010346 may:0.03340364583152806 that:0.03210035137396009 could:0.026550219582729108 shall:0.02234978701621401 who:0.020804899768085916 should:0.019567002325556367 but:0.018233011570671323 They:0.01650317862011395 We:0.015785753611364795 can:0.01302682167121978 must:0.012971589035350421 :0.0753841775219605 +and:0.07171964134742115 it:0.04749746627388482 that:0.04042223090206894 to:0.02635857536181257 be-:0.02096873495200915 It:0.02007060406346177 is:0.02002157529592127 as:0.019930679759183854 which:0.019084320842326655 of:0.01672672699873172 up:0.016154508820105176 was:0.015604801420694769 :0.01533515155627961 way:0.014991114477738418 ing:0.013483987044799833 out:0.01330750270288647 or:0.012770862607630069 down:0.011810441345799514 time:0.011711486471661177 :0.5710295877555831 +the:0.5253448817392985 a:0.07176270567155392 of:0.03967737421322704 The:0.03710669384648805 tho:0.030635190837928546 and:0.028782418580401287 to:0.02086831489775711 by:0.014995393615900573 or:0.013802644671406133 Baptist:0.012666643547059176 their:0.012628866521067632 our:0.012141344413644931 said:0.011957332572400866 in:0.011870442420578128 tbe:0.011159035769703996 his:0.010283897090198975 this:0.00880517311677374 that:0.008363525872855881 Presbyterian:0.006917237506774548 :0.10923088309498093 +of:0.18798473070051855 and:0.11760465754267313 the:0.10704700637644853 about:0.06393174750415405 in:0.055981315714761164 or:0.048829709447647404 for:0.04186314026870426 over:0.02803128098450478 than:0.027912131655679785 to:0.026840550413692137 from:0.021140135064435045 a:0.02088269189279574 In:0.01906872928201393 with:0.018155715157374713 by:0.015413286501822632 last:0.015301661732775994 within:0.014524031484824711 at:0.014064854145693874 that:0.01089045020804809 :0.1435321739214315 +could:0.26614028834404757 did:0.22207618020487757 do:0.11656087227576443 does:0.08521505623968731 would:0.08081268653110976 will:0.07145323041479301 should:0.02512512165756097 can:0.020462249794631095 shall:0.016970965653495197 need:0.014285364250427245 may:0.01303630796630844 must:0.009641283400935985 Do:0.009413905924160268 had:0.007011534733232438 docs:0.006869436712546514 and:0.005511252257731641 might:0.005140333282666861 if:0.005030544198292594 have:0.004530891351077053 :0.013712494806654029 +of:0.08471158294608466 the:0.0784438437743542 and:0.06720291665013167 to:0.046122408044339536 be:0.04046161143939536 in:0.027015564105553006 or:0.02435480735182264 for:0.020708581282078056 re-:0.019876814990101653 a:0.019001442367514877 was:0.017086966244810257 he:0.01604154291250958 that:0.015254506438979668 been:0.0144517087438338 are:0.013598540775756165 :0.013261930010872289 is:0.012996389654437859 their:0.012513526857303347 by:0.011245002537989195 :0.4446503128721322 +of:0.2618442027302623 between:0.08667606484302742 in:0.07732645108060007 and:0.07387680815732771 for:0.07069666461902227 to:0.06921019067103731 that:0.04430317885766598 on:0.037517300045505186 by:0.03726684058043743 with:0.025297176373226246 from:0.021875475315506234 In:0.01982509718583845 during:0.01980907960982722 at:0.014036182669154554 all:0.013749630040382854 among:0.01146219474883113 tween:0.008922275924841312 upon:0.008335103081600941 when:0.008105407062603771 :0.08886467640330162 +the:0.4480599556353239 of:0.0640690251234647 The:0.04024400965051777 American:0.03869975458150767 colored:0.033414717187744705 young:0.031464372004032216 our:0.030908484061055997 and:0.02989321531206795 many:0.02612316641945719 white:0.01960979792421148 tho:0.018460620539515627 his:0.017512902590049215 their:0.017081133789681267 a:0.015789617594953533 some:0.013766999215400273 good:0.0130442822439691 by:0.012871854081065299 thousand:0.012748449817239708 other:0.010797502906417691 :0.1044401393223247 +of:0.07595090168707049 and:0.06501147737548724 to:0.035655119331189644 on:0.016732401838250976 as:0.016619712689889966 for:0.01631556919773138 all:0.016078335184232483 so:0.015639249091672712 in:0.014544725747489171 is:0.014482802850553452 fact:0.013408635207879703 was:0.012189056942484797 or:0.011431110767817637 with:0.009902892538286757 him:0.009549611744732709 it:0.009346600879061695 by:0.009156468691789788 that:0.008543064999711273 said:0.00843504519149408 :0.6200072180431742 +the:0.19713605322932007 of:0.08450873469085184 and:0.07251237285387012 The:0.031046846473396474 a:0.030741183175856057 to:0.026814872741203716 at:0.0258875401125214 in:0.022104565432441596 :0.021539389776618435 .:0.020734126683328812 by:0.014655650200493793 tho:0.014027568372994027 or:0.013183662292793042 said:0.011721570392647438 Mr.:0.011084464649328005 an:0.009914133078699316 for:0.009166723269224727 that:0.008840726055473353 with:0.00842559290870515 :0.36495422361023266 +the:0.4071374189315913 and:0.06449181461132415 of:0.02892866618288876 in:0.028670005984162618 The:0.02603617389223924 tho:0.024993820467459137 a:0.023579040051412606 to:0.01755553213771617 on:0.014626070241060114 by:0.013447843485786471 or:0.012794166593089693 tbe:0.012024509152999897 :0.010353482361299817 that:0.009291482237329618 In:0.007938246807075932 from:0.007526799010378873 other:0.007469196869028889 all:0.006409533041696086 for:0.00626887758057738 :0.26945732036088327 +the:0.1847564407057139 and:0.10126478200649837 of:0.08831264818219191 The:0.05781217644693712 that:0.022136138620238693 these:0.01631671668090445 a:0.014513194758497697 or:0.01417786516951797 to:0.012988822898574776 their:0.012329949427663977 as:0.012287881083578981 :0.012262416633580412 his:0.011940145330932676 in:0.011700605535597748 tho:0.011368635516343475 These:0.011209828309073805 this:0.010982581867111285 which:0.010198916461314558 other:0.008582822905284792 :0.3738574314604434 +of:0.15127820011115323 the:0.09339645558478053 in:0.07357657843793565 and:0.07020562169798146 a:0.048109721402398276 for:0.04469655271700255 to:0.038210217527258526 that:0.024163007688522066 with:0.022985327362381895 by:0.021331199557569097 In:0.01888497253874531 or:0.015753643152906546 at:0.014710791168615164 as:0.014201998237553312 from:0.01359079529093691 their:0.012814315383899872 which:0.012781336245380118 be:0.012221303453803812 :0.011995384842978792 :0.2840925775981969 +-:0.0696895582833026 and:0.03340146377843425 .:0.015172676367169794 of:0.014851405968407972 :0.014358169479320669 it:0.013546126895402778 is:0.008939756291443512 It:0.008500928474187144 to:0.007633405315234874 i:0.007244781364968465 at:0.006860398256346013 was:0.006342557064970765 I:0.0062058384182890345 t:0.005998904361227997 the:0.005867567466037668 by:0.005495745483474184 that:0.005386056739246704 in:0.005056866677975309 1:0.005045055807484704 :0.7534027375070755 +the:0.2782472374031439 and:0.05853086307875382 of:0.057808400149107285 a:0.0505051790196421 in:0.047737229779834744 that:0.029028474107152598 tho:0.018710024088825838 no:0.017339306339466322 any:0.01703662573257265 for:0.016715378203915124 or:0.014389838101205619 to:0.01254353636706294 The:0.011965494146430906 such:0.011478107165062217 their:0.010557144796299397 this:0.009886618703130198 by:0.008203119141950934 In:0.008031362143197362 an:0.0075425481936670265 :0.31274351333957906 +the:0.16807735899698817 of:0.10541662057906837 and:0.05138367848570702 a:0.04141865232648221 to:0.0385989743764065 in:0.026264864977736738 was:0.019530675665220657 his:0.018900421021236905 be:0.017373825006196972 their:0.015767721170721456 for:0.01557246589796783 with:0.014071419046630446 is:0.012922913111931644 at:0.012690452250034052 are:0.010702713108721902 .:0.010158075558988393 Mr.:0.009672788574483367 tho:0.009612591781990074 were:0.009549306361446321 :0.391314481702041 +to:0.7384805873301015 not:0.04832019705032083 and:0.03233164867660776 will:0.017952101083275475 can:0.016130628054441338 could:0.014715573289487622 you:0.013406082908770909 would:0.011917771783917622 To:0.008733717559984809 only:0.006865464624999441 may:0.006575263496168975 I:0.006056897093845121 we:0.005394377402828216 now:0.005061783808673062 the:0.004915670907626051 or:0.004898718370105379 cannot:0.004588562448618306 they:0.004408323154222097 should:0.004125124692353444 :0.044121506263652056 +of:0.12015707537048041 and:0.07693201711983795 in:0.0689264836218926 on:0.06279655605539407 by:0.0457805580063259 with:0.04215753567256203 to:0.039592207337150236 for:0.03911882873106073 from:0.03091719148354511 upon:0.029545059629786773 that:0.023770989540093622 In:0.014485984341326457 land:0.013743641838302711 interest:0.012973747291500855 through:0.011300914776925375 under:0.00928779788826665 law:0.005583144272147136 line:0.00553782130873045 after:0.0054999344922765986 :0.34089251122239433 +the:0.1725714917190524 of:0.09833999786964949 and:0.06294068012686169 a:0.052133331039519816 to:0.04469189034771167 in:0.0204665855283515 his:0.01596896554168533 for:0.014245325751618415 Mr.:0.012633995764703556 with:0.012342036427502976 their:0.011109354022374365 by:0.01100766185669527 tho:0.010965936897454199 The:0.01088718352138088 :0.010272117773304354 at:0.010159609210616002 or:0.01002885258337842 be:0.009953616766318151 was:0.009564416507492754 :0.3987169507443288 +;:0.027204737696178843 him,:0.020072691172136323 nothing:0.018379790669083348 it,:0.017603024884433317 time,:0.013419180229184145 them,:0.013278980079277896 and:0.009883587727085016 had:0.009259582973998868 years,:0.007511608372883775 anything:0.007339358177846755 ,:0.006995865399415082 her,:0.006946744331849629 ago,:0.006787466819450025 man,:0.0065306438706495655 have:0.006330036514460731 house,:0.0061020561316649895 country,:0.0059325451428371015 there,:0.00579038116545407 out,:0.005698729115032003 :0.7979329895270785 +the:0.11274823966931571 and:0.08329996793360815 to:0.062372082173126384 of:0.05346002906215973 so:0.0299749817344208 is:0.026294180790411077 be:0.020260006954324915 he:0.018124449911071136 was:0.016351044211737983 re-:0.01567649125103956 Mr.:0.014726716630740086 in:0.013675410003338988 for:0.013272602215284653 a:0.012159264338821467 I:0.012040910229586727 or:0.010977326121126826 :0.01035107289213954 are:0.010219913969554774 not:0.009881708091297656 :0.4531336018168938 +and:0.1220482887259474 when:0.09898937127066762 that:0.08138297907883794 as:0.05916668654453357 but:0.04377474410216833 When:0.03165521559333238 which:0.029345079885112976 time:0.027602575142202677 Then:0.021341004844460845 if:0.017600304822329004 so:0.014474987988433264 before:0.012953585065553426 where:0.012589665073697551 me.:0.012360686549095059 what:0.012022655073576055 until:0.011299157069522267 :0.011197795488952566 the:0.011183538128245105 while:0.010586654925944414 :0.35742502462738757 +of:0.17591192548210646 at:0.09534762955829852 and:0.08809719991286526 in:0.08674730683539413 to:0.07349918251340323 on:0.0665581866176212 from:0.0593877954235941 with:0.0538560148815316 for:0.03727524175928858 In:0.02665894909371792 that:0.023517316806771927 by:0.02157952914158449 nearly:0.015590261089252322 are:0.015269502072471963 was:0.011785470850244954 upon:0.011155137640076288 or:0.009478090288229634 were:0.008677172232754432 through:0.008457549357225837 :0.11015053844356713 +the:0.1536295202129801 a:0.08306329779166395 of:0.0769956053653295 and:0.06450147565273355 to:0.055202392140829976 in:0.02904505100351848 is:0.028726958486457673 was:0.0287242552789977 be:0.026161775485173327 not:0.02540003065643349 with:0.018005325077613557 for:0.01561331389672506 his:0.015411142075762172 are:0.015020007442962897 or:0.014200159515067663 been:0.012936272941149785 their:0.012404062827997017 by:0.011235502270710417 tho:0.010834682088633973 :0.3018891697892597 +it:0.1559622243675163 It:0.08728451051768386 there:0.07607925895626716 and:0.05728253228372171 which:0.05565787144648829 that:0.04281233060676907 they:0.041188625254281554 he:0.038054063563270325 I:0.024138554066638385 who:0.018310559195373936 There:0.01651866699004309 you:0.014407216044184887 as:0.011883094565108014 mortgage:0.010176283577293714 this:0.009692637953303978 He:0.008555730541283425 she:0.008555479922333683 This:0.008523935219995369 They:0.007827669765537419 :0.3060887551629058 +he:0.1373100142791712 I:0.12024024546200882 and:0.09340096522055591 which:0.038843828699625396 He:0.03802154950226643 who:0.03513910912739241 they:0.02843286209272262 she:0.025896292670306107 be:0.022759178176800825 we:0.019891281875298587 was:0.019606550968854268 that:0.01818761159134836 it:0.017305850810191127 man:0.015661215998160675 lie:0.011696844855318866 then:0.01163530413474814 have:0.011009146871969014 1:0.010134172774296542 is:0.01008165445993494 :0.3137463204290298 +and:0.16492318807022746 he:0.11560914491713552 I:0.07209442598904409 He:0.05003093293612601 she:0.0389337819856586 it:0.03504976763623075 be:0.031044298210755408 who:0.02950726005616449 was:0.024072758130887845 they:0.024033777482869646 that:0.023939485775016915 have:0.02178041278699656 It:0.021213850967899003 which:0.02088266121879189 She:0.019061434309719818 had:0.01718071071680388 we:0.016642051858105647 is:0.01540041150870706 ever:0.014741232411309953 :0.24285841303154948 +to:0.4803812938317501 would:0.05776223915169253 will:0.05065340493116365 and:0.04631327716343226 they:0.0423398612563365 not:0.03943354412031243 I:0.03374416328217471 we:0.029390046220584082 may:0.028579745425967196 you:0.028267721527325308 should:0.02799637766616188 might:0.014956455462438505 shall:0.010339626355514196 who:0.009774906717995848 cannot:0.009232971208406889 could:0.009043526546809738 can:0.008999888310475828 must:0.008993355354491374 be:0.007518114801399716 :0.05527948066556725 +Mr.:0.15208712983097558 of:0.09828939836303428 and:0.06531697627582725 General:0.039436745012589286 Mrs.:0.03310176409382817 Gen.:0.031226676882055496 :0.025344325980300116 the:0.024466359233781244 .:0.023022331078292387 President:0.01928354937850798 in:0.0162279106406746 to:0.015397612082266532 said:0.014205064776930404 Judge:0.012829526976343788 that:0.012670792714008835 Mr:0.01060451680229723 or:0.009788792923066069 from:0.009473280140932685 Miss:0.00890401499954205 :0.37732323181474603 +of:0.17254702276826017 to:0.1201029778359019 by:0.07856909390892722 for:0.0772883570324176 in:0.06953227277618108 and:0.06807748871567267 that:0.060448364856269844 with:0.05061545920223546 as:0.028990756702862504 at:0.020369897288552236 from:0.019103990691783746 is:0.017967864803862733 under:0.017690103936848042 when:0.01616446347727134 In:0.016089889309900855 make:0.015428390782524991 on:0.01469076237326216 upon:0.01392833153566506 all:0.013873077710850563 :0.10752143429074985 +of:0.09255213406048671 to:0.09019281772069049 with:0.0734980766501139 as:0.07005800765416458 in:0.06773431424385161 by:0.06421431038898993 is:0.05477452633632112 and:0.0538063661749313 was:0.04243612671025506 on:0.03368452721565638 for:0.027146706595585417 that:0.025901132214079896 such:0.025509800475966547 made:0.02532614437450322 at:0.023914252485530633 make:0.02020745647669305 be:0.017793618796722574 from:0.014940722271604319 In:0.013579834746637431 :0.16172912440721585 +and:0.07895257911471103 was:0.03596317658514438 out:0.024016824392823457 that:0.023672598027062328 placed:0.022844208461019616 work:0.021707439938587154 made:0.020781005318872947 is:0.020224993929329655 up:0.019794182040466738 put:0.018288921183371155 down:0.0171740551508179 interest:0.01663630075189571 point:0.01659978677065351 him:0.016175999448187352 held:0.015562908663841706 Dakota,:0.014616466073415059 place:0.01424333231426501 Minnesota,:0.014067166610364513 it:0.013665465625771424 :0.5740125895993994 +to:0.1233969086445139 was:0.117782021929925 is:0.08048249073181966 and:0.06407701457118137 are:0.05715221056614914 be:0.05255631422778062 of:0.04267648317528708 were:0.04137776763115787 with:0.04021905116667334 the:0.02727473034791344 been:0.025292969895363143 not:0.020293737891985155 in:0.017876486802192088 now:0.015458955896233981 at:0.014352648089489361 for:0.012791567354324393 from:0.012375494366485381 well:0.011318276097279154 Is:0.011079449588028954 :0.21116542102621697 +his:0.2687699465397487 their:0.23630030197076332 our:0.11570442732862672 its:0.09872608781717832 her:0.07966861756818583 your:0.04994467007256223 my:0.047795092485477 bis:0.014155034614265408 Its:0.0121644347365241 the:0.006990495148321426 and:0.005067833228918753 His:0.004238599547863801 a:0.004212583126456182 or:0.003302600534678074 My:0.0031284009096005138 one's:0.003096301995402545 whose:0.002974577928644144 Our:0.002692627827431403 of:0.0022570062274105233 :0.03781036039194096 +there:0.15282240558043036 It:0.1250877021251384 it:0.1172130349964821 he:0.08447653464159645 There:0.07990106646359449 He:0.053545487723974064 and:0.03475602177722308 I:0.033514699763994925 which:0.028339689006514263 that:0.02258044118480592 she:0.020389246311069347 This:0.018864857928065765 who:0.017143411225723663 She:0.014044583378045664 this:0.01264429778309141 lie:0.005676248946248602 ho:0.005008892472785812 as:0.004728079857187771 one:0.00469102709236943 :0.16357227174165848 +the:0.27181766886656283 to:0.18402775628793563 a:0.15410493560043226 and:0.04847092508707441 not:0.03549455297370526 of:0.03476573775542942 will:0.028380982993860094 in:0.021315008420197123 with:0.020997461163926995 The:0.020652525426880414 would:0.019234741357451145 I:0.018307581436873686 be:0.017013146917602476 is:0.01571115345926659 they:0.013611182179990798 may:0.013172051191294923 no:0.012603700082962476 tho:0.010424954182010799 shall:0.009164525031493852 :0.04972940958504882 +him.:0.03922016671761864 :0.029129515739223073 it.:0.02341367489846643 them.:0.013562404956458276 years.:0.012810226937596583 time.:0.010804646146117598 himself.:0.010403250538097914 life.:0.009645973235689406 man.:0.008066508907125184 day.:0.007278277605759249 work.:0.00726833063327233 country.:0.007103166636295277 home.:0.006978526218852496 her.:0.006826975287203068 city.:0.006433722246600266 there.:0.006379640076463484 again.:0.00610155783665518 year.:0.006014749273411881 ago.:0.005780446179957329 :0.7757782399291364 +the:0.14957672291702365 of:0.08498002854255245 and:0.05726623870829423 a:0.04495984628063783 to:0.040159371349577026 in:0.0364293810645345 be:0.017565835952854315 for:0.01494504314278294 was:0.014215201942233868 is:0.013828094687930873 this:0.012113184880053737 or:0.011909582925857093 as:0.011598343721070768 tho:0.011585434102473565 with:0.011313987534899572 In:0.010796003112170636 :0.010668854187104315 his:0.01063646294435309 by:0.01035206669108507 :0.42410031531251047 +of:0.2653527075877097 in:0.1972736317561119 to:0.06377740292489928 and:0.05212915466458454 In:0.049299237743185925 that:0.047435721450727227 for:0.04203246650641353 by:0.04197915768637443 on:0.03842795404343099 from:0.024825783719242593 with:0.01915589185869147 all:0.017017464762825896 as:0.013366914069758195 upon:0.012308518747161112 over:0.011216290503997266 during:0.010437032797892732 through:0.010283206414311272 into:0.009482251853444533 at:0.008699805253326772 :0.0644994056559107 +the:0.40612150623704024 a:0.18552666488274144 The:0.09344908755666158 of:0.03361206154613056 young:0.030465915220116692 and:0.029504831792427254 old:0.017345196702813998 his:0.017082351724088795 said:0.014709020027194233 tho:0.014311371734078352 our:0.014291776773619086 one:0.012059171840676265 most:0.010515243892803585 A:0.010464418802457074 any:0.009644031001999651 her:0.006842671537284932 their:0.006822309368051567 Any:0.0063554354286986785 all:0.006219346790517629 :0.07365758714059834 +the:0.2718616543850205 this:0.15290332395827183 that:0.06812450696576841 of:0.05492433402479182 any:0.053095768397576355 his:0.03822175101680309 its:0.029665127669499226 such:0.028468380707411364 in:0.024964021969432308 other:0.024447512758390588 their:0.023718552754246423 no:0.02315971519550049 a:0.021747105896386835 further:0.020191036426894737 tho:0.018860470375997685 to:0.01855613070657865 whole:0.01585033623505997 and:0.015026363454234712 by:0.014750240248207402 :0.08046366685392756 +;:0.026571403980587268 it,:0.015870383953832425 him,:0.014366666283007914 them,:0.010562164083232527 it:0.008914797564345324 him:0.008658739974460379 in:0.008563308136534544 time,:0.007630343887807345 States,:0.007612689371982528 country,:0.007362247907852296 ,:0.007288132781311494 people,:0.006911544867979867 years,:0.006897249127247925 up:0.006735676101470539 and:0.006727519134349249 law,:0.006324130571078796 made,:0.005585921996128152 life,:0.005365863658446561 tion,:0.005234115725765018 :0.8258171008925798 +and:0.09026373589551238 to:0.06605833361172549 was:0.047573686452177 the:0.04506930827388914 be:0.043948144727531384 of:0.03608623209278447 is:0.023208829295491996 were:0.02116447334417694 are:0.02024753415249348 he:0.01946397113893168 been:0.018785021725722204 in:0.017139750499993996 for:0.016109793532532043 it:0.013702302290936632 I:0.013000493740897017 re-:0.012913952629204858 not:0.01254528845733576 him:0.012159010356599538 a:0.011404736644893675 :0.4581554011371703 +New:0.19765432179241355 of:0.19433778321078748 in:0.04462138916907375 the:0.04221273912439089 for:0.024360026761558018 at:0.021927411832282175 and:0.018770979687681735 said:0.01753884647803055 to:0.0170577127493807 Central:0.016896540087228514 North:0.01390087483489402 A.:0.013701339651689091 by:0.011734621216274903 .:0.01095200262050392 South:0.008962271133049031 County,:0.008545567043391674 In:0.008018120150049417 from:0.007911142229014623 an:0.007401927641447067 :0.3124943825868589 +was:0.2563471893964625 be:0.15304031882100091 been:0.14206884585625243 were:0.10112673059675342 and:0.049181318578178694 is:0.04524655092794366 are:0.043565502826648866 being:0.031535324319727824 he:0.020243785826264377 bo:0.010804080142694863 had:0.010345109017428283 not:0.00984572584670298 have:0.00901371022161601 He:0.008909419513481334 has:0.008395494084337879 to:0.007192530431007175 at:0.00626763005153039 then:0.006159369771796498 Is:0.005899649573901838 :0.07381171419627001 +and:0.1613656843679632 so:0.06143159277582443 fact:0.05542864469212405 say:0.03810956595768138 said:0.03695005864399478 know:0.03500407555496958 is:0.030652998352621724 believe:0.02924081023931829 but:0.027424871682609812 think:0.01982848839978699 see:0.018335375645301365 show:0.017895710586937962 reason:0.015565106315652852 me:0.015379369902964051 says:0.015311104696524582 stated:0.014885665083219665 found:0.014490062855651449 all:0.013719839727914292 of:0.013171337682339824 :0.36480963683659967 +the:0.4644203057763706 tho:0.039682832023839834 and:0.0381008591890468 The:0.03718251876148953 a:0.03716076219024277 of:0.03417484373925429 their:0.030359927553818104 our:0.021116365048111263 its:0.01732779836122012 tbe:0.016052383479114835 his:0.015066207623777516 this:0.013724309264266281 other:0.013328058165579595 that:0.012942091292130621 as:0.01249273091004431 for:0.012466672030968505 all:0.010606503709238891 these:0.007988118452178212 said:0.006664133791275041 :0.15814257863803285 +of:0.09129790931378902 the:0.07369883040827747 and:0.047842263382354346 in:0.04189055351593407 to:0.04045875475680249 a:0.03542341257202578 be:0.02020462051672066 for:0.01979292654746225 was:0.01760256398103379 at:0.017380150555488715 is:0.014984483003968216 with:0.014047653760730413 by:0.01374644383819499 :0.012670486581795598 In:0.01200961464556976 or:0.011563835749786333 from:0.011391516893522809 are:0.011273104484969465 that:0.010755276030689069 :0.4809655994608848 +of:0.3063972605684333 in:0.09831873064082339 on:0.09675906836417045 to:0.08683522253998574 for:0.06046830648987353 and:0.04637553513507824 from:0.03693384517778236 by:0.0352561873199409 at:0.02826410521471771 In:0.026570334917195248 that:0.025195374816233584 with:0.02203541354111763 upon:0.02031057687326625 through:0.008251936058682753 before:0.008236040412014435 into:0.008219384280077643 as:0.007974183176054419 when:0.007388847512919737 after:0.007003801237921558 :0.06220584572371112 +of:0.23914464646543004 in:0.11800233019610253 at:0.10171701315324484 on:0.09116847261655384 to:0.07587413083533198 from:0.06538279290703439 and:0.03276436561897962 by:0.029133321944387097 for:0.024389443414892912 with:0.02050345859587726 that:0.02004744464259542 In:0.019673603622858214 into:0.016559990619520883 during:0.015567741871302337 over:0.012516664844042206 upon:0.012395062298241173 through:0.012379576290119461 as:0.00710347290613932 was:0.006662749604905953 :0.07801371755244052 +the:0.6331233415890071 The:0.17438554630041705 tho:0.028882235826563633 this:0.020129348940919434 that:0.015985713428742592 This:0.01211115947748135 tbe:0.011349940152335368 and:0.008901285413079135 a:0.00883705391001004 I:0.008605448999304488 Tho:0.00739748719346188 his:0.0060415589268201205 next:0.0056815409278161986 old:0.004848712797518154 Tbe:0.004475431073830971 first:0.0043195235166802026 these:0.004010453883568852 our:0.0038758118808247446 which:0.0034579213569023324 :0.032580484404716344 +number:0.026258385292924926 out:0.0211165322051668 sum:0.020957504262686277 state:0.018987840772938823 Board:0.017983431546847235 State:0.017250302828600333 amount:0.016352542921784195 line:0.015693086899320113 and:0.014368833961841038 bushels:0.014334179839403091 matter:0.012702260912035988 years:0.012074635670957403 office:0.01199783297584782 cost:0.011948202115027022 people:0.011871631368243903 part:0.011332981331452423 board:0.010996168037259215 favor:0.010817947456664291 tion:0.01044022872858285 :0.7115154708724163 +it:0.20661626833118804 It:0.13133310388077965 which:0.05346195225056892 he:0.04322413433168328 and:0.0399221355018402 that:0.03638459118631527 there:0.02656324547693805 who:0.022588363007738477 This:0.01601752777676921 He:0.015090910728543903 what:0.013686208311658789 she:0.01181234484166701 this:0.011752239301455133 There:0.009749183368011116 man:0.007759333367156636 as:0.007068481254995637 work:0.006691860301109499 country:0.006039779831696346 but:0.005362639996269743 :0.32787569695361507 +can:0.1389053841535448 to:0.1273782174937872 cannot:0.12132318838088021 not:0.10908457559443166 will:0.058594831311205 could:0.056905201413824005 may:0.05440972689666947 would:0.051472590235949314 well:0.04173113909674867 they:0.03379343913642687 shall:0.02817253235893588 should:0.026288880124579462 and:0.025272168005532173 I:0.016614977159461582 we:0.015699170865554134 can't:0.014692625487498986 or:0.010034266824339874 who:0.008860995567288022 you:0.008816144045440018 :0.05094994584790265 +of:0.303737666547255 to:0.12133682695814203 by:0.07350019496634372 in:0.06861390422096851 with:0.058275636924558505 that:0.04566883947226328 and:0.044893102640203776 on:0.02849954484022296 from:0.027576434805782563 at:0.025024708566241005 for:0.023040122714133568 under:0.022834717977718508 upon:0.014258017230295805 In:0.013156515560363157 as:0.011273797523250875 is:0.010027790610056667 into:0.00786623107807174 which:0.007630260503234165 over:0.0075814548372358575 :0.0842042320236583 +to:0.6426902706699598 will:0.0573330531796889 and:0.05020086839109575 would:0.043900528499992195 not:0.04175897939893253 should:0.012845875920188026 shall:0.011716030013028088 can:0.011097037605787084 must:0.010515285644009248 we:0.01047155854579057 I:0.009293672906531518 To:0.0091385917870717 could:0.008273381508297038 may:0.007860060137605832 who:0.007463348160483128 they:0.007189460505205823 you:0.006742842901412598 that:0.006241955590820227 then:0.004476059249439158 :0.039791139384660765 +the:0.6183971150509611 The:0.054181305928081354 and:0.0501902189322483 of:0.030374342104895192 tho:0.026403316303315816 other:0.025577526654892577 or:0.017393728378758803 all:0.01175049862642286 tbe:0.010485785508424095 these:0.009228428548410774 two:0.008082065888978453 county:0.007912131677851049 by:0.007684562142949305 in:0.0073087969170236265 state:0.006875847425118061 naval:0.005924548044694698 State:0.005367492756303581 a:0.005070318912261793 principal:0.00458882704462797 :0.08620314315378062 +to:0.1967710346573988 will:0.12363967366117522 I:0.10688447409035637 and:0.0920076300317333 not:0.05854961515801612 we:0.055710708937725985 would:0.04343372153871767 they:0.04069364188558271 can:0.03564899314682878 We:0.03225420882190545 They:0.01992045135268588 could:0.01899106397677006 must:0.017058029284600762 you:0.012685097703383327 should:0.012128239493951202 men:0.010356776077994128 may:0.010343317972302559 To:0.00991578825814936 1:0.008204149238991267 :0.09380338471173104 +of:0.3996832304366638 to:0.08658914950977234 by:0.0705119327687795 in:0.06370588917229436 that:0.05448501527876702 and:0.0381917626213216 on:0.036751681128933116 from:0.030237276897376646 with:0.027512750184398912 In:0.015733109049071756 for:0.015660865641240487 before:0.012328475647623972 at:0.011888946348943769 when:0.01110295023478263 which:0.010012432699412141 upon:0.008460422070263957 as:0.007374020964778488 into:0.006166654595127984 ot:0.005988205649184474 :0.08661522910126303 +of:0.09129790931378902 the:0.07369883040827747 and:0.047842263382354346 in:0.04189055351593407 to:0.04045875475680249 a:0.03542341257202578 be:0.02020462051672066 for:0.01979292654746225 was:0.01760256398103379 at:0.017380150555488715 is:0.014984483003968216 with:0.014047653760730413 by:0.01374644383819499 :0.012670486581795598 In:0.01200961464556976 or:0.011563835749786333 from:0.011391516893522809 are:0.011273104484969465 that:0.010755276030689069 :0.4809655994608848 +have:0.18337550644929143 had:0.17675250900993128 has:0.16506048485302896 was:0.09040029592298221 been:0.07873356870622689 be:0.05668221674763329 he:0.046906223460287805 who:0.03476104939808266 is:0.032995076007520024 were:0.01973557173183985 having:0.018681571027631426 I:0.014573804954525213 He:0.013497550559766864 and:0.012241758287471658 she:0.010508423950797588 are:0.010459120306775697 which:0.006835073967784065 lias:0.006443907336128816 Is:0.0056745260600112755 :0.01468176126228299 +the:0.15091658399665767 and:0.14063682708112707 of:0.07961185757809233 an:0.07287221368099034 to:0.06144768972108061 was:0.03783252276631424 be:0.03291822070587566 with:0.027300919759071736 or:0.0229108240375255 are:0.02174267685796401 is:0.021605088395800887 not:0.020546875224933446 were:0.020024688147739254 their:0.019897686876157 a:0.018259808408165133 The:0.017582770539237506 been:0.017302582973489352 its:0.016799564949093182 in:0.016456000003973903 :0.1823345982967112 +it:0.15590291243815246 there:0.0887784025092866 It:0.07904016205387611 which:0.06936908824431676 they:0.05362226352982171 that:0.04647101454662571 and:0.04420120519214072 he:0.027952982163116303 There:0.027623278151575524 mortgage:0.023443129896555264 you:0.018859539766003214 who:0.017891862574647276 this:0.014117846301193209 I:0.01363040583752058 sale:0.011818751696880098 This:0.010767348085132659 work:0.010306262168963347 as:0.009927627839447666 They:0.008978002990569422 :0.26629791401417535 +of:0.09129790931378902 the:0.07369883040827747 and:0.047842263382354346 in:0.04189055351593407 to:0.04045875475680249 a:0.03542341257202578 be:0.02020462051672066 for:0.01979292654746225 was:0.01760256398103379 at:0.017380150555488715 is:0.014984483003968216 with:0.014047653760730413 by:0.01374644383819499 :0.012670486581795598 In:0.01200961464556976 or:0.011563835749786333 from:0.011391516893522809 are:0.011273104484969465 that:0.010755276030689069 :0.4809655994608848 +of:0.2933289733486513 that:0.14284907168128008 and:0.06748541005181541 to:0.04924331043675459 in:0.04786044165773206 by:0.039094864934206906 for:0.0349746338986247 but:0.02758210373437714 with:0.025315993999176365 which:0.025151317489496217 If:0.018945912159402833 as:0.017299166519546647 from:0.01709647467639662 if:0.016842561540364554 But:0.01615031880321716 In:0.014198831410979083 at:0.012149508306977596 when:0.011249913788283262 all:0.010975473574970446 :0.11120571798774699 +and:0.06073452338822125 demand:0.05101331513591751 made:0.03292809811136686 time:0.029251119488381452 used:0.026023563584153194 paid:0.025146563814678384 provided:0.02108515490811557 ready:0.020391965832007152 pay:0.019213886281822985 provide:0.019104960698364072 was:0.018439678322923436 it:0.017392832023156793 been:0.016626415135391193 is:0.015201325405657667 them:0.01514976337735444 up:0.014163843922279255 sold:0.013853374750771075 cents:0.013297919348169854 market:0.0132490772156309 :0.5567326192556369 +of:0.18666674534938016 in:0.18442962601274843 the:0.10642881230370513 In:0.04831015075749856 for:0.03932131388775242 and:0.032644559884287744 his:0.02692540961500731 a:0.02687649076111837 to:0.021420753133493436 public:0.02134689168097607 their:0.0201324006552161 into:0.01871681904446131 by:0.01861751662755345 with:0.017794844410510834 or:0.017752663623795236 this:0.013606059921550496 such:0.01312434281733798 that:0.012962252392040675 other:0.012800690720661666 :0.15912165640090464 +the:0.8161323364780474 tho:0.03213543574792785 The:0.014140056050631053 tbe:0.0137097974406843 this:0.013632977311646189 of:0.010415401104663425 a:0.008403524219912405 that:0.007433925097294302 and:0.0064221355732528495 in:0.005995113013543791 to:0.005302612074462825 his:0.005256742622563739 same:0.003968396643913654 at:0.0033271435683977744 from:0.0028534550771468713 their:0.0027589251695395224 its:0.002628360057234252 such:0.002136089726610649 tlie:0.0018164929342097242 :0.04053108008831742 +the:0.09782231583743711 and:0.08826464051280451 of:0.06546959710748265 to:0.04912171715824268 a:0.037698285194151616 for:0.026272432496808867 or:0.017580353298582856 be:0.01634222992152779 was:0.016334022200195888 are:0.015244403465076004 that:0.014735897670729258 is:0.014137344559719517 will:0.013813679157957014 :0.013189792504175263 his:0.01200073146618346 in:0.012000038413718763 their:0.011992362032609798 con-:0.011412518862959475 which:0.010818662832522965 :0.45474897530711456 +and:0.0935353777867078 that:0.05953849837588239 time:0.03893036673955211 made:0.033237569170103384 them:0.022487257590821437 him:0.01978480922998164 but:0.01841617711704199 or:0.017806766776771347 up:0.016955431330044974 times:0.015684650413019127 it:0.014996816829898807 out:0.014341889676339899 place:0.014187070583522681 days:0.014118843283785687 which:0.013006512335920503 held:0.012695408898157623 done:0.011543349343682658 day:0.011499307919487256 all:0.01119767424956836 :0.5450362223497103 +the:0.290078213231219 of:0.1296471583780366 a:0.0722665793204886 to:0.0284513844094952 our:0.025988468190366626 tho:0.024798835079010886 his:0.022864130813227784 her:0.018976165331725314 this:0.018253229302069695 and:0.016823079405982953 said:0.01613711058094345 by:0.014216937075018565 on:0.014185551228435306 The:0.013685342210118103 with:0.012918171613548931 their:0.012347062200728422 such:0.010240767105861033 tbe:0.009288013133350918 all:0.009271663550550008 :0.23856213783982264 +line:0.059687877474407076 amount:0.04740707713127031 State:0.04595148324992202 state:0.03841531957614631 number:0.03499476755869997 out:0.02878751472875135 board:0.028728698389933475 years:0.02284118027416055 sum:0.021935992279572877 piece:0.021226480065986607 side:0.02111079746589523 Board:0.021097436934616846 city:0.020522386067854403 county:0.020194181016857753 corner:0.020189994850395826 part:0.0187676982931078 tion:0.01748986148022753 power:0.016746130905956193 system:0.015050856493767983 :0.47785426576246987 +.:0.09600959518131374 A.:0.08597120885373156 Mr.:0.06409371827229794 C.:0.060911584015649056 J.:0.06029390682145212 W.:0.058644570870014914 Mrs.:0.05215736306340236 H.:0.04804284274280799 F.:0.039239848534349066 John:0.03256168865043985 S.:0.03248839985279602 B.:0.03214272034265998 Miss:0.027598701696554002 L.:0.02492699660787901 of:0.024578727826437486 N.:0.021697224161127515 P.:0.02024836257982081 James:0.019389199284742704 Dr.:0.019385237558155067 :0.1786181030843688 +the:0.13476476805868978 of:0.10335620763565354 and:0.07298982432450123 a:0.05493260493485237 to:0.03943912225916912 be:0.027111183577981188 was:0.024964516309082224 is:0.021318618791884996 in:0.01997329939240196 or:0.017463858114689805 his:0.016747288852367714 their:0.014456994452191905 been:0.014017672545055988 at:0.013647384018866159 are:0.013377045933421108 an:0.011360803488482838 for:0.011045703440883426 :0.009853875281147081 as:0.009770129219928711 :0.3684090993687488 +the:0.7961347374997056 tho:0.03443721139653076 The:0.021620506091135645 and:0.01703812364357319 a:0.015796658073706796 tbe:0.013751789268553463 in:0.012345995173163463 of:0.011787351512655257 to:0.007181385036788487 In:0.004902547425620126 that:0.004799655544982101 his:0.00395840823748882 this:0.003944124890746099 or:0.003641295931561968 at:0.0034716673043829025 on:0.0033527011242346504 by:0.00315345665789804 said:0.002839811555745896 from:0.0027591479959247415 :0.03208342563560195 +of:0.32665550975751423 to:0.12213279768267551 in:0.11517855608870306 at:0.09684528085980221 on:0.04334189012653824 and:0.035444394287412063 with:0.03220761906344759 from:0.02608670450505271 by:0.02317093221894267 In:0.02139149509833948 above:0.018248243602292522 for:0.015151682322813177 the:0.014926972221695705 upon:0.011458990866482603 into:0.010207300887276935 about:0.008484046634083153 that:0.008070461440170353 ot:0.007643099835607909 or:0.006356875185380925 :0.05599714731576896 +and:0.05357199013043951 as:0.04685926675111892 went:0.037060936910766236 go:0.036212263427378606 right:0.03527180638603088 is:0.03298686178903733 able:0.0329708984693889 them:0.03271671301908861 necessary:0.03229364818161621 made:0.028761570158758857 enough:0.0259832926244086 him:0.024934567040387594 not:0.02488488351215617 according:0.024512560279760252 going:0.022367668927599078 attempt:0.022297242300521956 subject:0.022068275577255173 power:0.020709000752530876 time:0.018363412130928358 :0.42417314163082787 +and:0.10723011321699662 of:0.056870316023873144 to:0.0547462180875437 the:0.05343343285567183 in:0.03756639497286715 a:0.02695300755413377 is:0.02396056141536147 was:0.0181039193320802 with:0.01769362065376554 that:0.017257373915937454 for:0.01719491832548182 be:0.013263137235802785 an:0.01311024968195753 it:0.012390729240576936 are:0.01148520865940052 In:0.010827062111672194 which:0.010539618862685425 will:0.010441125355997328 her:0.010093348752917435 :0.47583964374527715 +a:0.3630154388155428 of:0.08372983022402546 is:0.07642249224806812 in:0.06316688023768732 with:0.04647197684649322 and:0.04111304250847793 A:0.03957710546556786 are:0.03633328286915528 was:0.03172690897153969 for:0.031586568839836134 that:0.025338368491828613 the:0.022399748747440367 have:0.020165014948730135 but:0.016446868614789337 by:0.013114155816526802 In:0.012845777662650855 be:0.012205111151158701 has:0.01181689816573648 had:0.011564563739824087 :0.03995996563492084 +be:0.44734180106231924 been:0.06653777171304981 and:0.05562658944658722 have:0.044778602590829185 are:0.03319760269458901 he:0.03265058165453608 was:0.03202834744779729 has:0.02518633764779778 were:0.024695136690070178 is:0.024025958489000042 not:0.020762654518831563 had:0.016910014802934886 bo:0.016084083136031525 being:0.01599948146245597 one:0.011144035777839626 taxes:0.009517177318237006 I:0.009269211829085335 who:0.00922204666249559 they:0.008629775822209517 :0.09539278923330316 +and:0.1252744930066018 to:0.1212153067636242 the:0.09383270527333856 of:0.06687205867043577 in:0.02895651626224036 at:0.018055148205582443 for:0.018026419223106542 a:0.0177291853791003 be:0.016674086737883898 is:0.01589747578935253 I:0.015864890128910576 or:0.014920708769759577 not:0.01463724191788903 :0.011250002143948423 with:0.011174733598919299 was:0.010818543446058659 he:0.010130715757293376 In:0.009660253135100787 their:0.009645358554915702 :0.3683641572359382 +:0.042121809243109674 and:0.025115839546517717 was:0.01991321458715972 be:0.019361617353387452 is:0.011984115090027172 are:0.011708641305616186 that:0.010720595268890114 were:0.010118875880028138 .:0.008538828059217652 been:0.008214792900146319 put:0.007814765668374815 recorded:0.007169050565739314 situated:0.006726720926511513 it.:0.006648720798510434 them:0.0065998360318737246 made:0.006580774631752311 held:0.006505024562847372 it:0.006354607680120908 succeeded:0.006148044476402017 :0.7706541254237674 +in:0.14995764040671303 the:0.10765767249552308 of:0.10019452271970328 other:0.06652619792329452 In:0.03617882177936958 an:0.033636132453323295 every:0.02393797750835417 for:0.02112130146505623 by:0.020403360208881345 his:0.019599583581418445 this:0.019217195241612348 their:0.018811618625538797 and:0.0182166547712045 or:0.01741698554817455 our:0.01674917542822924 to:0.014016605322773856 such:0.01289420607581413 a:0.012813857780805592 different:0.01258686658195052 :0.27706362408225943 +the:0.11919516938815296 of:0.07230453158552728 and:0.05781056740443249 a:0.043018564803886335 to:0.031305092790907506 in:0.020848713353460488 at:0.014270110001066288 .:0.012526810245749479 :0.012413283442322082 for:0.011719122709941797 by:0.010808400946589808 or:0.010404172990115616 The:0.01003576004804544 with:0.009811868184449042 tho:0.009295902015355835 was:0.008924239095331684 that:0.008672304223433876 is:0.0085591147338948 be:0.008335143826716943 :0.5187411282106204 +and:0.09010259669875904 will:0.08920660307295299 do:0.07969579501033665 I:0.05651489599572894 did:0.05512969306821884 would:0.05397134379148242 not:0.045197993260497414 could:0.040971491814224784 more:0.03519795075566098 can:0.03324742740987418 be:0.0320340024454895 is:0.02971335503524658 does:0.02813808441918891 it:0.02580509121981714 care-:0.02411387254376363 to:0.0240415522578602 are:0.021696723262685052 you:0.021239679455508406 was:0.020415422496483336 :0.192566425986221 +do:0.21475751773722396 did:0.15735541164214475 could:0.13043954938786617 does:0.09921026088321043 would:0.09190072892635748 will:0.08778731078823716 should:0.031835132454661144 shall:0.025848387479942742 may:0.023498509841114217 can:0.02122815432954468 and:0.01591153337635894 must:0.01327703777888697 is:0.011979808228004112 need:0.009808152912651243 docs:0.008658637140289931 if:0.007569026734010887 had:0.007021155127790974 have:0.0069947464115117115 Do:0.006449189323227161 :0.02746974949696531 +the:0.2626236288447261 a:0.08992351460006144 of:0.06789964531062362 and:0.05680194793502684 The:0.03899544712608477 to:0.025849520639775997 tho:0.016006602104822527 that:0.01596895316364468 in:0.015202284757642822 an:0.014400482633870707 by:0.011853085254929532 :0.010116688605064072 A:0.009259691396864453 at:0.00904943805458306 with:0.009011791702859645 .:0.008926156718400552 tbe:0.008855436991485437 this:0.008664057319427225 Mr.:0.007197109371796561 :0.31239451746830993 +a:0.2636994292268703 the:0.1181042114776891 this:0.07904956326405513 that:0.07282869870126492 one:0.04784419576793148 same:0.03799629549420016 any:0.03581259208285511 some:0.03175196530543099 long:0.022683347845449307 every:0.016797954976959014 and:0.0161666673157068 early:0.0136533647938888 short:0.01342016089354034 half:0.011838961520800571 other:0.011615100492244129 first:0.011179094775234811 brief:0.010555982469985738 in:0.010330192054667071 tho:0.008324959321123405 :0.16534726222010288 +and:0.08157705761610083 was:0.06278138320958708 be:0.03904429313183656 stay:0.03132479529939158 them:0.029279634829680726 him:0.029096099192331852 is:0.02588107499150041 were:0.024268645268799755 are:0.0235343959777301 it:0.022048995518624374 arrived:0.021233907755610203 held:0.019618584332836846 look:0.017971803805123313 her:0.01700836012558648 out:0.015759877815775987 not:0.015162828268441507 had:0.014997211889640814 that:0.014247303261405405 died:0.012837519271404065 :0.4813262284385921 +of:0.13226139294363082 and:0.08819657205777541 to:0.07614043281900981 is:0.07310022239457957 with:0.07071706798113768 as:0.05942277195285196 was:0.053819584012923555 by:0.04862255746270526 that:0.042185736340703425 for:0.040364901703218575 be:0.02754557998506502 in:0.025512538465420145 such:0.02166208508907617 at:0.019366311063691685 from:0.018209938023179432 made:0.01563848645406745 like:0.015190880494536284 but:0.01393364595197839 make:0.013724991724686676 :0.1433843030797627 +to:0.7182148674162047 will:0.054967470081131495 and:0.040571804649757966 not:0.03136458933846921 shall:0.020430863259148162 must:0.016943661440231173 would:0.016613761628809533 should:0.010581134420873538 may:0.009967275585671554 can:0.008372397611669868 I:0.005929879608560148 who:0.005683277704623067 could:0.005642439829483803 To:0.005076823031896268 which:0.00450887475445088 we:0.004281265855218296 they:0.004107339293208274 that:0.003907305716929801 only:0.003850087023016152 :0.02798488175064608 +the:0.1453904053290962 of:0.14188935001002317 and:0.05596531335481163 in:0.053230458781521994 to:0.05185755224053573 for:0.021273769595961008 a:0.01883029381422009 on:0.016552699528058466 by:0.013861288375127333 that:0.013134811335559436 at:0.0121489778931904 with:0.011032766250709161 :0.010204570565128978 from:0.009984984032060152 In:0.009565758043984362 their:0.009405907989428358 or:0.008552239807928063 tho:0.007888372038034507 all:0.007488595094694989 :0.380741885919926 +is:0.16653173111817193 as:0.1618841448278973 very:0.07987647920063237 a:0.0724527278540142 are:0.07186662268548205 was:0.053468617898420556 be:0.03655336126365177 the:0.03504657693987097 and:0.034939200451044684 so:0.03312529545488765 Is:0.028983616313836048 pretty:0.02495123474192064 not:0.02222150854359953 were:0.019069290599865864 do:0.01873707971193768 been:0.015645497636392808 or:0.01188901776509176 too:0.010378185147073825 but:0.008885512829905844 :0.09249429901630254 +and:0.08995317707915026 to:0.06844710404109794 of:0.04605142056172993 the:0.04074574508561307 which:0.02479116931334353 that:0.023764822140213245 re-:0.020841117231308055 in:0.020803825395358622 for:0.020278423301550053 :0.018417753428486977 not:0.016860793136637672 con-:0.016444405871234195 is:0.014386481772210856 or:0.014080680914153714 be-:0.01352268143271276 I:0.01317002660943805 was:0.011429878269381662 dis-:0.011196807025842847 he:0.01113106290024311 :0.5026826244902934 +and:0.07926989180297876 any:0.07521134084163213 no:0.06213062964082225 is:0.060532097473361544 of:0.060089038402325705 was:0.05857170495082533 every:0.03919832125449284 to:0.03673545679013285 only:0.03646923460653891 some:0.03025037854978982 but:0.02852880491082984 at:0.028069499341301114 the:0.02704665179942614 that:0.026909141317964517 each:0.025860634188098232 as:0.025341413322282434 be:0.024439869872974862 by:0.023747094773713586 from:0.022981400424070094 :0.22761739573643905 +the:0.2704292264410698 a:0.16143706266865673 of:0.05604493852751708 and:0.05326944318033669 said:0.04377975541865542 to:0.0258479155481241 No:0.02476594165492301 The:0.022498334718463055 his:0.019728167159606767 A:0.019003032517062573 tho:0.01675005760497205 Ancient:0.01615662359360674 this:0.010615434385191651 that:0.010146291128174731 :0.009974667768645275 any:0.009296967353336674 an:0.008873070734290058 .:0.007458662398334858 tbe:0.00682418161009224 :0.20610022558894056 +of:0.08084157221293299 the:0.06871385987202633 and:0.04574882456127286 to:0.041905172195736175 for:0.02005648491494799 a:0.0199098829120184 in:0.019698414819358544 :0.019338710950204112 that:0.017224635742376277 or:0.014545330451592531 be:0.011251233806556859 -:0.010959895581222992 on:0.010452367157491699 which:0.010259328336282807 by:0.009516530267508894 are:0.008667205577729185 The:0.008598505816100471 was:0.008514815209528744 at:0.008342466685686641 :0.5644547629294254 +the:0.15492273943642482 a:0.14197202545473184 of:0.09298222287188004 to:0.04629718108219786 for:0.03834083062413687 in:0.03829323657938036 and:0.0365137152191814 that:0.018893909252701777 by:0.01591864162802734 at:0.015170767893426725 as:0.012439578281029378 tho:0.011149882761978005 his:0.01104296418716389 any:0.010213484930314827 The:0.010033978222576139 from:0.009605418227537047 with:0.009585030137158168 their:0.009193067509548724 more:0.009186196484817043 :0.3072451292157877 +and:0.06564001495426619 recorded:0.029411864615612508 up:0.027628176869244205 was:0.026272293455839292 that:0.02537596081849904 is:0.022431023177345272 out:0.019299278942157497 as:0.017868689101788723 made:0.01378321067090413 are:0.013003442296410083 down:0.012645024830454803 interest:0.012055925413500238 been:0.011857600448008541 them:0.01131398688083129 time:0.01116292036442644 but:0.01114341296188583 placed:0.010583511215764901 were:0.010481085458743449 be:0.010405592286658612 :0.636636985237659 +and:0.05296399668679102 :0.04223245460571218 was:0.03515739430104975 be:0.029890331558013756 is:0.029625799326578068 are:0.025855906638791244 were:0.018229894289600642 made:0.014762314899279731 put:0.013456542317281106 Is:0.011862662242294271 but:0.011451277571471548 been:0.011388611875142831 that:0.011168819721256811 time:0.010048272399859127 more:0.009858704657188945 them:0.009845213522217892 placed:0.009587131716689807 now:0.009479550771500832 found:0.009407915273650444 :0.63272720562563 +and:0.14251810230203357 He:0.06944694934843637 was:0.06643532090934148 but:0.0646843446558366 is:0.06313756228068589 are:0.04604615299164059 he:0.04108002396183693 I:0.040710272287449834 were:0.031842452042410846 It:0.031205330268665073 They:0.02647747702591539 it:0.022932495987878432 has:0.022767166223976412 have:0.021436808982541772 which:0.020082945024634154 who:0.018752903146784804 they:0.01728911961553568 We:0.015240663317897859 be:0.014535655893607216 :0.2223782537328911 +the:0.06362137015981743 of:0.05494734845070553 and:0.05483010490703647 to:0.04368839698370064 a:0.027965673423981117 No.:0.026710995979041315 said:0.020745658777471955 feet:0.019426557665415328 at:0.018836892278716464 in:0.016573253644199187 :0.015171939999270849 on:0.013494984984227713 1:0.013110954093529515 or:0.012380610336379785 by:0.011735901108352336 for:0.009455281803915949 from:0.008891208651471116 one:0.0084571827663714 .:0.007491223300169354 :0.5514644606862266 +Mr.:0.07765534111440615 of:0.04874644936572513 and:0.04063791814514369 the:0.02946341404523416 Mrs.:0.015271263569459355 Dr.:0.014887577943312956 .:0.01452444992411804 Miss:0.014299974877848674 said:0.011222727568950928 Senator:0.007215933948388879 to:0.005740597507386553 A.:0.004179664660822102 Mr:0.004142977687161355 by:0.004089220037756547 ;:0.002988321043623892 H.:0.0027331532191506368 John:0.002689110763737024 President:0.0023650445496225885 B.:0.0022762963547074888 :0.6938705636734438 +was:0.15996983251022837 be:0.13314129877489012 and:0.12309067523923384 is:0.07976709851466462 were:0.07849379978863083 are:0.06737418921036255 been:0.05493923090375461 he:0.034601470408550564 being:0.02357933632265318 I:0.02161640898779768 who:0.01517780750714077 men:0.012410656360949178 Is:0.011988901502164204 we:0.009474301544024628 had:0.00938214021165666 bo:0.008658149327519184 they:0.008139816389722672 He:0.00759641473353623 have:0.007581801945247815 :0.1320166698172723 +it:0.18933079373983122 It:0.09555282981329422 as:0.0866880719218501 which:0.08464636001756828 that:0.07051112314641195 they:0.052690658552864006 there:0.037417756895181786 and:0.029058424718588206 he:0.0269797830604667 what:0.022289821189138203 who:0.01796366222381316 There:0.013579855598546447 you:0.012550455952835911 we:0.012277334597652966 this:0.010978958519068683 whatever:0.009752693743122305 case:0.009057349738014284 This:0.008398456526460612 one:0.008370438307689692 :0.20090517173760122 +the:0.2630643729174627 his:0.14348032134114005 of:0.09608034780674835 their:0.06553723332769591 my:0.04236113344571229 its:0.02827857843239151 in:0.025342479215512817 her:0.02327983112231658 to:0.02181299865955436 our:0.021594670110855915 this:0.01993288133926023 and:0.01980308188138746 your:0.017172644458405103 a:0.01358870576198789 tho:0.013147421989585828 such:0.012984484219221234 for:0.01195648221960562 good:0.010574258877872677 own:0.010150300413468438 :0.13885777245981504 +of:0.16279497700441578 the:0.13573767778375104 and:0.06413403872201803 to:0.05491708362956393 a:0.03173736816355858 in:0.02189511231238604 The:0.015484160721164058 by:0.01506803929240038 that:0.013146763877515212 be:0.012421277222933604 for:0.011895154833784312 with:0.011078062890527648 was:0.010350267717562417 as:0.009537043701015931 on:0.009340762608617841 are:0.009317101186276188 which:0.009244994145256109 from:0.008806067929124837 been:0.008499776965436407 :0.38359426929269164 +and:0.08230352622999217 to:0.05496566513788881 be:0.05155782765036498 was:0.049035938009942326 the:0.03172987891831126 is:0.0308885661394806 of:0.02744353184138269 in:0.02455906165133206 are:0.02093766692590235 were:0.019102432838397614 been:0.016913384522046722 he:0.01673092770533342 I:0.015875457663570857 re-:0.015184732328973449 thence:0.014751916293346105 that:0.01375687538055328 which:0.01251284472762052 for:0.011672853109260445 on:0.011355182351971591 :0.47772173057432876 +one:0.03782518305383882 two:0.02810854272706729 three:0.017105976719440457 person:0.015336431268487855 on:0.013785503818655556 man:0.012362937841832983 more:0.011985480590009725 ten:0.01154725607159507 and:0.010295686476309256 five:0.008638005899209046 day:0.008326917505630051 city:0.007861739004901494 feet:0.007641861822464257 year:0.007564613402280754 four:0.0075369334784015415 him:0.007493972741998692 law:0.007155047762378975 mile:0.007012158632025832 in:0.006727599835468765 :0.7646881513480036 +could:0.2171577959074232 did:0.1592293572921896 will:0.10300180362997509 does:0.08660623131148937 would:0.07729348109141748 do:0.0646143603241754 had:0.03536876173011889 should:0.03356051672641329 shall:0.02964778914287725 can:0.025421358060287263 may:0.023012093309759715 have:0.02278002302896972 has:0.02119635675049423 and:0.013083635264227993 is:0.01222091943647099 must:0.011915736702442678 was:0.010499998373709263 if:0.009495216462730254 are:0.0070054140857129295 :0.035889151369115385 +an:0.45079932853552296 the:0.19319641695432155 this:0.11537902073149571 that:0.03839100080309273 An:0.023129586723567838 The:0.019476963734364885 same:0.019219902261946305 one:0.016189725862609104 present:0.012284458276608198 tho:0.009088086027596186 a:0.008858941665470516 This:0.0085867855665319 every:0.0080719027537995 early:0.00761901517513882 last:0.007526550041953948 other:0.006979992101573662 late:0.0064066275829074695 of:0.006226891277604085 any:0.0061001081227701585 :0.03546869580112442 +It:0.16684908023343487 it:0.15273563471648685 I:0.07438041327655097 there:0.07247987117892489 he:0.06952996487191712 This:0.05004769895381098 and:0.04447997899182553 which:0.032658331751547406 He:0.029676255976702877 this:0.025426464440103495 what:0.02210592106509044 that:0.021964437299309143 There:0.02023006236582742 she:0.01992032771498921 who:0.012385759416013768 What:0.011723392578435944 That:0.010036341245750157 She:0.008841031101617403 time:0.006366853457394717 :0.14716217936426684 +and:0.08934296525867834 of:0.08068838607300491 as:0.07853645433812198 the:0.06307320057451939 to:0.042658746496865775 be:0.030835544751753347 such:0.029703590012664483 much:0.025794511891263566 in:0.023621249210533997 so:0.021449367110620385 is:0.021260609143037765 or:0.019920658237143826 a:0.01927671572579788 his:0.01906207551381598 was:0.01720359984272631 are:0.013935218166333807 their:0.012335998801341931 for:0.011516936419171063 that:0.010287085618050218 :0.36849708681455506 +the:0.7128175970550102 The:0.06095765514998046 a:0.05471236271965901 tho:0.02927383865281078 in:0.025023557601272995 this:0.015791662249381923 In:0.012591862249284257 of:0.012126221773183114 tbe:0.009565370991685071 and:0.00599312787263733 any:0.005230321032570874 to:0.004518611470385451 no:0.003761905900101775 that:0.0033534534295136314 every:0.0032733507414406393 great:0.0031052672159924146 his:0.00272287757775067 by:0.0025495835942633276 This:0.002361993400059047 :0.029269379323017063 +the:0.35363767447625705 a:0.11298199972118865 by:0.08531583045844436 of:0.08389894173688546 at:0.0504347425509224 this:0.03517771107191318 any:0.021375887867848723 tho:0.017970876944257176 The:0.017778063596311237 to:0.017248405928601985 and:0.01596214736767639 general:0.013623028487357193 that:0.013209878041760614 tariff:0.012724825109810782 in:0.011501326100794214 no:0.009280760470041205 new:0.009274116229908671 such:0.00861126351224858 primary:0.007928595754201283 :0.1010639245735708 +and:0.07558940021936399 recorded:0.030196237618668006 was:0.028917161578042846 made:0.027969746247669736 that:0.027730098932509103 o'clock:0.025060522019555328 up:0.023026552239529506 is:0.020398277211376416 found:0.02003101797656537 placed:0.017482208134164214 out:0.016937164562539058 place:0.016819459500107596 interest:0.016629321966808677 him:0.016002796715253755 situated:0.01573420479581609 it:0.015128305982428461 them:0.014715943643665314 part:0.014646613000297721 interested:0.014450471929902294 :0.5615344957257364 +a:0.3658069178014725 the:0.17151333709797442 A:0.05775062186091641 of:0.04480561445414547 every:0.04462298631597024 The:0.03594312709592492 any:0.030530199735862903 and:0.024197553408665817 that:0.020100999278627907 tho:0.017344098424428637 by:0.015480608218850566 our:0.01290624615442234 in:0.01282726056960646 this:0.012727966571169144 one:0.01161372336404312 each:0.011613058037533309 old:0.010168074161698907 with:0.009650724564306946 young:0.009534911481890415 :0.07986197140248957 +the:0.1435659783056918 and:0.08812655875113194 of:0.06031540982528145 that:0.03757890519529494 The:0.03453605113388033 a:0.028139581476075003 Mr.:0.021499317804451048 as:0.019486292182913895 I:0.01714585991998578 in:0.016875220939143263 his:0.014128447340005245 or:0.013609836675351811 he:0.013131617204877034 :0.013097878553546867 this:0.012316792815562439 which:0.011823895445302079 tho:0.010939621258508005 it:0.010704853127148684 their:0.009172160136755831 :0.4228057219090926 +of:0.22666661338171123 to:0.1511727352097084 in:0.10654456804833896 for:0.09398600868139421 and:0.052024616203010327 that:0.044062660937998245 by:0.03916634029185031 from:0.03142603202213325 at:0.031146625215471263 with:0.02777624344546165 all:0.023540255368684707 In:0.022769659744577744 on:0.020158605277005207 upon:0.013835214127977374 as:0.012643983056669863 into:0.0125138398877266 after:0.012380313249110425 under:0.008886649647712607 through:0.008347896025498566 :0.05995114017795907 +of:0.27502785338646357 to:0.11213602693653452 in:0.10014222468631848 by:0.0527167150828801 and:0.05244337140991357 with:0.04883269803222295 for:0.03934210028502283 on:0.033397323411473834 from:0.030085727483892686 upon:0.027477626536449213 that:0.025734792834732886 In:0.023659241270595675 at:0.014454572434769759 as:0.01319946196049602 under:0.01309529226105074 all:0.009562952652753285 or:0.009281034702390624 is:0.00896711516424483 into:0.0071224021772391625 :0.10232146729055522 +the:0.7866472850307911 tho:0.03270184028354616 a:0.024750381500972883 this:0.019158400430772177 The:0.017449953022688723 tbe:0.013191627017543677 of:0.00706217465674275 his:0.006489428359551439 our:0.0039479243551534815 their:0.003789362227531731 other:0.0026663005822486073 for:0.0025737111846367896 in:0.002499837210791791 an:0.0021391773544697837 tlie:0.002095962184251059 and:0.0018522732662714192 last:0.0016849923161990391 its:0.0015527658710551054 new:0.0014835513589984187 :0.06526305178578398 +and:0.060778398013977046 them:0.04108278118133176 went:0.03748948246064963 as:0.032230630966544 brought:0.03100345368632663 up:0.026951582686702474 him:0.025654588698156976 is:0.02556034841667544 it:0.02448033378504441 sent:0.02419920545747529 right:0.023255400117744116 come:0.022652068908716814 go:0.022512674583065988 time:0.02113574948276601 came:0.020354007284638462 able:0.020322641533362964 subject:0.019217005738810234 made:0.019044264622124593 not:0.018891158854260293 :0.4821842235216269 +the:0.11919516938815296 of:0.07230453158552728 and:0.05781056740443249 a:0.043018564803886335 to:0.031305092790907506 in:0.020848713353460488 at:0.014270110001066288 .:0.012526810245749479 :0.012413283442322082 for:0.011719122709941797 by:0.010808400946589808 or:0.010404172990115616 The:0.01003576004804544 with:0.009811868184449042 tho:0.009295902015355835 was:0.008924239095331684 that:0.008672304223433876 is:0.0085591147338948 be:0.008335143826716943 :0.5187411282106204 +a:0.1852903487079508 of:0.1416874725131693 the:0.14032251091566206 and:0.04729896513681687 for:0.03589018259692403 with:0.02864287508952926 was:0.02291996216503472 is:0.02172487180413583 are:0.021103212205417478 by:0.02042884686021861 be:0.01960685819296837 been:0.018609006584469113 to:0.01825818991616065 in:0.017576139265121964 his:0.014415604470401624 The:0.014015082125067463 or:0.013110704988726877 were:0.01089039887724498 their:0.01031046276344652 :0.1968983048215335 +I:0.23867564606458053 not:0.13550175151386584 we:0.10651507677629057 you:0.06925932500131948 they:0.0686278104452502 who:0.054970333425485324 We:0.044227041761589286 to:0.04379411320504643 would:0.0268328230410779 and:0.023316634226111296 may:0.02290356345098104 the:0.017297613260551875 a:0.016638854963426684 They:0.01503022187486482 he:0.013840398891359207 1:0.011971175395109133 should:0.011644204118502656 don't:0.011373879905484763 "I:0.010922717005278752 :0.05565681567382423 +:0.10168037980532262 it.:0.019561238573777614 them.:0.015113962453114383 .:0.00899005786942145 time.:0.008680629869991826 him.:0.008365481562024152 day.:0.007992800391177404 country.:0.007919500686805053 year.:0.007588964754302936 work.:0.0064272700013981695 people.:0.005603733007235457 years.:0.005432694206404555 city.:0.00514927679597366 States.:0.004707734063070766 out.:0.004593305074097366 life.:0.00450912189733557 world.:0.004309317208355905 tion.:0.004248433327995334 way.:0.004200371653143975 :0.7639257267990518 +the:0.35509824294175396 a:0.15140665185795227 in:0.08014401686316491 and:0.04995376819738068 The:0.04112168036306335 of:0.030702395193678345 to:0.024390386853801137 tho:0.02317688938122783 I:0.020607737451366338 or:0.02042143860094474 that:0.019363638956229313 great:0.015030311104682729 no:0.014603828487451849 In:0.013540420356133157 for:0.011168550988174684 with:0.010327159908936047 tbe:0.008733029598032169 any:0.007957003556771399 by:0.0074691096878033774 :0.0937837396514517 +able:0.06953273701550473 order:0.0544758447803343 enough:0.04755892660326797 and:0.04348905179379762 right:0.034330417152768675 is:0.0334211163622033 attempt:0.031940393461623855 made:0.030746322812543116 him:0.02863627792777239 as:0.028578598872772074 necessary:0.028308021171355197 time:0.02563483670569712 began:0.024187651170106555 required:0.02339391301877942 effort:0.02326472837031746 them:0.022217075315462572 was:0.021883214819933418 ready:0.021701124068679883 have:0.021622249992684386 :0.38407749858439594 +the:0.28192805700932694 said:0.051451025060119816 and:0.03799831916066798 of:0.03364402188382699 a:0.031036492926428683 in:0.028571447634501847 Main:0.017879871623793387 one:0.01591396696682243 tho:0.015538939339401012 The:0.015101096770316033 two:0.014975001381348925 Wall:0.012872982344250593 In:0.012517816585799212 this:0.00844577768027376 :0.008395088010042647 an:0.007973871780232282 King:0.007855834240793853 Third:0.0077974920472377 Sixth:0.007727061751900959 :0.38137583580291495 +the:0.19626093024183391 and:0.11556817097821344 of:0.08488513072642977 to:0.03921168602855286 a:0.034447811639086924 or:0.022273438543949916 The:0.021359864219994272 was:0.0169146231949703 in:0.014969648727382706 is:0.014067070050517723 are:0.013000403485888974 be:0.01298070574897947 that:0.012868497953442054 for:0.012746402305473596 tho:0.012503629593118395 he:0.012268756550403371 Mr.:0.011388789662675678 his:0.010629173889977398 their:0.009912023579231077 :0.33074324287987816 +the:0.2140062306787747 of:0.12477018659847891 and:0.077750286818553 a:0.07227683827357166 to:0.031834241832784195 The:0.028062177792813968 in:0.02572034574710303 an:0.01830709339831728 for:0.0144734352668006 tho:0.014389331848899995 or:0.012051204355314035 at:0.011610037801328322 with:0.011580672688555463 :0.010597857062430568 Mr.:0.01025927117211647 that:0.008267395698151648 his:0.007712091277406292 by:0.007659445763108001 their:0.006832639438173842 :0.29083921648731803 +the:0.2897590740326696 and:0.09994341054019708 of:0.08613958746870709 a:0.031480152451277804 or:0.027034096825380136 to:0.023605434118649002 in:0.02188643299045041 their:0.018406116394121704 The:0.01699809180528822 other:0.016611197696317078 his:0.016380976491426957 all:0.01625957279074466 tho:0.015952589713995376 such:0.015095642076193426 as:0.011399836914084334 these:0.011030066473387206 this:0.009870347695539981 for:0.009391215741451308 be:0.009159139682848382 :0.2525970180972702 +and:0.013343778818609701 of:0.011304152834991582 .:0.010193087715238835 :0.00654074415025858 that:0.00554966022358357 a:0.00497027790531474 the:0.004766527387586275 in:0.004332288976063147 fash-:0.0041332053056147644 2:0.0036284657101656984 1:0.0033014154646501532 lot:0.0031073793637858356 per:0.003014723361807478 :0.002909829316018008 to:0.0023739914009644194 -:0.00213853991116186 one:0.00206720088561505 north:0.00203396250257877 opin-:0.0020301699591302636 :0.9072605988068612 +at:0.24560674112255815 of:0.22537093007857592 to:0.06962314193858173 in:0.057753200481988676 for:0.04793314082456771 and:0.04174111215010939 from:0.02246560188919639 about:0.021899398640151255 on:0.01870123371588821 In:0.018407476415646086 than:0.01791331349904222 that:0.016938976981246662 all:0.013223838933717907 with:0.010775200567253996 by:0.00971778874663856 or:0.009325959651203388 over:0.009090605788309641 At:0.005790633535625255 take:0.004495731647494432 :0.13222597339220446 +the:0.14048602411779254 of:0.10252225631561868 and:0.07633183975731359 to:0.03245895674061561 that:0.030733737144535016 The:0.02900268575179401 in:0.027931447478085947 which:0.018752304155935415 or:0.01571308762550976 :0.015055749982663399 Mr.:0.0149342694058751 their:0.010852954179470109 on:0.010754035534755927 as:0.01048165637565865 for:0.010288939626440372 said:0.01005519865138013 tho:0.009754500854680081 he:0.009279558727176576 a:0.008993895187521092 :0.41461690238717797 +he:0.10500395821050722 and:0.08595198367071025 I:0.06096937065343709 He:0.05011491090837465 who:0.03650194806284192 she:0.031108795139629865 it:0.022071969695949437 have:0.019574889779718354 which:0.019373083638511566 1:0.017747993070087013 had:0.01755695650056767 She:0.014454794509623782 that:0.013908659983451229 they:0.012615182209625608 It:0.012362401590648959 lie:0.011685403314517675 has:0.011101698615371842 ho:0.010536119919019996 be:0.010002564841989796 :0.4363573156854161 +of:0.21615756800031702 the:0.1892204809248772 and:0.07700071313469115 their:0.04805398025432045 to:0.04113641317471448 with:0.03820547404190009 his:0.02806748996311598 in:0.02733955254277098 for:0.022140697554621887 our:0.01942472326002556 on:0.019120966999812722 good:0.016103414669584735 a:0.014947441560568006 public:0.011634524195566558 her:0.011346421758091755 my:0.010652128964465069 by:0.010464793331357788 all:0.00996579688148944 tho:0.009753027599365763 :0.17826439118834336 +be:0.2539049592169219 been:0.13307515613392262 is:0.10740673846680256 was:0.10622568719090934 are:0.08265598355445121 were:0.0599743089718139 and:0.03677217538157038 not:0.027029763470058577 being:0.024069822809460868 he:0.021817659045101797 have:0.01888555636791344 had:0.01631026563179746 well:0.01484896029614945 Is:0.012711518083903937 bo:0.012493437472748422 ever:0.011329252981646182 has:0.011067681362791737 now:0.011055670866167032 hereby:0.008339426895643438 :0.02902597580022573 +of:0.09535819706554119 the:0.07756307250046315 and:0.07708252601510572 to:0.0406018774337806 be:0.023619563979351884 was:0.020291969857854926 in:0.020157748755823702 he:0.020011679880813947 a:0.019576031913850708 or:0.019458499701416956 for:0.01940908201675651 are:0.01840122660455304 The:0.01756634325551437 Mr.:0.01751357050928392 that:0.016313920799612795 which:0.01594710581805199 :0.015032671925817807 is:0.01483718028272099 were:0.01421196964257681 :0.436045762041109 +be:0.2760839869933517 been:0.118185888347309 was:0.11536959873360873 is:0.06552107095025975 he:0.046768898931622664 and:0.045657502292076026 were:0.04329148746227407 are:0.03262453867170011 I:0.026774356305326704 being:0.019755882783044517 have:0.019074180272356914 Is:0.016221399936935284 had:0.015571296484113754 bo:0.014845844606182846 has:0.013783420610981995 so:0.010567092672660192 He:0.010437026587926935 ever:0.009054766774234538 lie:0.008436239534810945 :0.09097552104922334 +the:0.13523978534994952 and:0.10916395101070428 of:0.06400339692724946 to:0.0508815486938647 for:0.04074165913592381 or:0.03339708418165392 in:0.03313929659973183 be:0.031689596761189175 are:0.026104201551593067 a:0.018138776597057378 their:0.016248960394437035 were:0.01525347417237932 is:0.014169490931147307 was:0.013743165983219967 as:0.012446300318086995 all:0.012308446124477098 with:0.01143540834418554 that:0.01055641095463657 it:0.010401341178156682 :0.33993770479035634 +and:0.07509181549710321 as:0.048377730772513304 up:0.03174734764183977 it:0.02974521973049959 addition:0.029052444965490674 according:0.025026137733327552 them:0.02439032081756059 him:0.021141882604111605 entitled:0.02066828821018786 equal:0.019499000932593165 due:0.017818130139896176 amounting:0.016990873158777453 reference:0.01634333593035152 regard:0.015948001651902542 attention:0.015905127313055694 is:0.01586790264329058 known:0.014974628250434574 subject:0.014935219297093917 go:0.014781447838247985 :0.5306951448717223 +it:0.20207354351193807 It:0.13069731527628475 which:0.05915110977053132 that:0.051971317378550465 he:0.04819105046531351 and:0.04708227332778723 This:0.03321146982316584 there:0.02535693046699757 who:0.021786790173889514 He:0.02129093016089236 this:0.01988252116554146 what:0.016832911856123626 There:0.012671833776989709 but:0.011505798191410989 she:0.010389660406123623 work:0.008124655404974474 as:0.0071986238556803524 That:0.007081928849367105 man:0.006958453460189352 :0.25754088267824865 +the:0.11919516938815296 of:0.07230453158552728 and:0.05781056740443249 a:0.043018564803886335 to:0.031305092790907506 in:0.020848713353460488 at:0.014270110001066288 .:0.012526810245749479 :0.012413283442322082 for:0.011719122709941797 by:0.010808400946589808 or:0.010404172990115616 The:0.01003576004804544 with:0.009811868184449042 tho:0.009295902015355835 was:0.008924239095331684 that:0.008672304223433876 is:0.0085591147338948 be:0.008335143826716943 :0.5187411282106204 +and:0.0880707007186306 is:0.0775934709539479 know:0.0746509040767159 was:0.04554972994328593 but:0.029247606673477977 think:0.027929081686668796 be:0.02571923294425083 not:0.02239947253942828 thought:0.020752655507478526 Is:0.02066906841408065 or:0.02053301250739159 knew:0.019841359347147036 are:0.0194434764626745 that:0.0172520442109739 say:0.01410901309441527 :0.013271793081900131 as:0.013235338911492839 been:0.012141047974983495 found:0.012054023694410278 :0.4245369672566455 +and:0.07342464673340349 o'clock:0.03232008336673112 made:0.029298095105535556 recorded:0.027445232915888625 was:0.02599943582272528 up:0.025049160859899302 that:0.021780641869299917 it:0.021595579027671227 is:0.018997994012752057 place:0.01670468139938062 them:0.01633934600592949 part:0.016289877314894414 him:0.01611152948547677 but:0.01577437738752311 out:0.015536589083717087 found:0.014661633555119062 as:0.012657027346448432 held:0.012471869637912596 placed:0.012356820529777093 :0.5741853785399147 +of:0.17012490875962286 to:0.10796286188755846 in:0.08311303595089722 or:0.07163606710829869 by:0.04888489165025855 than:0.04236698308180558 for:0.03773801166854793 at:0.033900647265216945 without:0.03384120208014357 as:0.0318445598213864 that:0.0312161480000952 with:0.029930910508528374 from:0.02355501825786872 and:0.018940767001868874 if:0.018621566694873224 on:0.018234571547249168 have:0.016312595032769602 In:0.015331994868475073 be:0.015147328907862013 :0.15029592990667354 +.:0.025169065719097695 C.:0.01411721067397531 B.:0.013925656048431361 and:0.013055053231111932 :0.01288090839086001 A.:0.01268555072815781 M.:0.011666043098923233 I:0.010621657635366953 W.:0.008257136657747443 Coal:0.007879304181898045 White:0.007810903842151771 Smith:0.007739449325845971 E.:0.00745308845905154 1:0.0069266433737559105 S.:0.006572938403275372 Loan:0.00640027806903387 J.:0.006313796906164945 H.:0.006205388811294406 Milwaukee:0.0061670946254225294 :0.8071528318184339 +the:0.4339697831758029 The:0.1550249127950712 of:0.1106742383396039 and:0.03829868570303731 tho:0.030817324442618966 this:0.02463430352576392 that:0.021325781149177738 a:0.015256325975002446 cold:0.012673529380265933 hot:0.012087239866450522 This:0.010109702964439615 tbe:0.009855474981054067 Tho:0.00867332810600131 his:0.005911029481192046 said:0.005692862800705413 Tbe:0.00495757943598784 an:0.00490613862348412 as:0.004809348690524084 salt:0.004588681308062749 :0.0847337292557539 +and:0.11428819020817543 no:0.10142677014702872 or:0.09123146659488188 be:0.06864267946248567 is:0.06581959851630109 the:0.060837764354698974 was:0.044688893092713754 are:0.04142426357629844 much:0.03522788958706034 once:0.03257367973029076 any:0.03208932562746596 have:0.031267802682487314 not:0.027247778656965885 had:0.026308087056554654 still:0.02332061714352389 do:0.02175240791631256 were:0.021335274834346888 of:0.020698988315290545 for:0.02029553057511268 :0.11852299192200456 +those:0.17899760575504178 men:0.11425894786702333 man:0.05732218387638889 and:0.05447942232165712 people:0.03769097928629412 women:0.035611434065354816 Those:0.025522092663855644 one:0.02487207404717954 persons:0.015520057706912158 woman:0.013969379866740335 person:0.01295821523959891 all:0.010540667714582501 others:0.00911834333588029 friends:0.007919358271189182 girl:0.006860132404272544 boys:0.006699675687908743 thoso:0.005750168053028734 many:0.0053363378738077675 he:0.005307031697247413 :0.3702658922660362 +of:0.0843146247192127 and:0.07292252036862017 the:0.0725803413969384 was:0.0392133238515665 to:0.0381027960656041 be:0.02748280253519502 were:0.023650679962264512 are:0.019870045635723144 as:0.01947413179775887 is:0.0180711188770387 been:0.015134969484879454 a:0.014913528292156513 in:0.014685679181450776 with:0.01236095677423228 on:0.012294022414732585 for:0.012226032095775516 by:0.010392943004076574 :0.0101128383324785 or:0.009760577233084695 :0.471436067977211 +of:0.09392632991437688 a:0.05878216430374486 the:0.04972672874838736 in:0.04657442672157469 and:0.042861819434879454 to:0.031324912913249445 on:0.026234100605273862 that:0.02454463644178081 by:0.020312345046842085 for:0.0187909997393027 an:0.018648015052839507 at:0.016068278973525803 with:0.014448386168130566 In:0.013625012559594056 in-:0.012559852236208266 or:0.011684873283037692 :0.010413195531858956 as:0.009089112345737936 is:0.008931462858763407 :0.47045334712089165 +:0.10689730988128622 it.:0.027663459089421576 them.:0.019304060890618088 him.:0.015996715657217483 time.:0.011965018549951328 water.:0.010638188250597978 day.:0.00963481829492594 years.:0.008723387828065816 country.:0.008541024587862595 her.:0.007798816437026551 life.:0.007092125500398652 night.:0.006968158949693742 work.:0.006810462296070645 again.:0.006655725410298227 year.:0.006582953323688903 .:0.006530977500661978 city.:0.00631592019992105 place.:0.006287908111334269 ::0.006199823491427292 :0.7123931457495317 +the:0.38879229435749674 and:0.07610866173340008 a:0.04566880967618013 an:0.04222689286160391 such:0.03275522369923986 their:0.030812786660352965 tho:0.02456469610705259 The:0.024291813055757616 its:0.023437327350387106 to:0.02111996797256497 most:0.019719228236046802 his:0.01860847852253839 of:0.018260454473355305 in:0.016344232951708594 or:0.016010049372654253 two:0.012700914619542652 more:0.011342602563399619 our:0.01101892909646599 her:0.011001203208661214 :0.1542154334815912 +few:0.420399305241985 ten:0.09692126722927935 five:0.05535124624373758 two:0.037317772696301245 fifteen:0.03457676406432337 three:0.03214877908391101 many:0.024308776228253788 twenty:0.023991817677979876 thirty:0.02381570144903833 the:0.02167029384143517 and:0.02020534580816523 four:0.01774247303207945 several:0.015461124511347582 30:0.011295804282855001 a:0.010536067566449998 six:0.009819753072120192 his:0.00851889646327007 forty:0.008053099139694798 seven:0.0076677637315993 :0.11919794863617365 +of:0.17403033410415153 the:0.13655839315144272 and:0.09709405513637728 to:0.07967821055576502 a:0.060292538776269604 with:0.05351655795368056 for:0.04854847442648564 in:0.044310221129051294 by:0.042607854412557176 no:0.02190776113097502 his:0.021597699960907345 their:0.02037145236795541 from:0.017382655509112648 or:0.016550955477135434 without:0.01271483026478831 on:0.011581612986179171 The:0.011402391859336263 is:0.011308898494040438 at:0.010163062725098836 :0.10738203957869029 +hundred:0.02334136986593815 up:0.005482494641173394 men:0.005366536521246011 Hundred:0.0047587970519216575 John:0.00441808156134956 William:0.004390720675819281 him:0.004016828614280843 ;:0.003997112205305733 due:0.003721199871732 in:0.0036582900032443304 time:0.003637206863828461 James:0.0035594902370151707 out:0.0034878448964120057 .:0.003467980723571515 1:0.0032804584819785204 day:0.0032444781513863933 ,:0.003058139385740603 :0.0030314555521939613 Robert:0.003005471634785646 :0.9060760430610768 +the:0.35706123121558675 was:0.05619389673024953 his:0.05246552981865348 at:0.052404475082420604 and:0.04781774717747466 The:0.03775803646460148 to:0.026670761236318397 their:0.025504551082126983 of:0.023949890543809006 is:0.023789002403408067 be:0.0223783612239089 are:0.021878326046708203 I:0.020661353920443923 her:0.01747493170961026 were:0.017104207583119486 tho:0.016387656650855856 he:0.015601409088466337 its:0.015279768600135588 my:0.01431962123224632 :0.1342992421898562 +of:0.28767355066866834 to:0.08775711267569858 in:0.08678131196995101 and:0.05160598694501188 on:0.04646139928102899 by:0.04519522654900943 for:0.044547789071328545 with:0.03396756772609607 that:0.033699232901107726 from:0.03075346596941143 at:0.027039283056790858 In:0.021061449543044047 as:0.017514234937992545 all:0.012543839382496166 upon:0.011844431150487573 is:0.00998972746569266 was:0.008814315973987914 into:0.008557199930727406 through:0.007781895704231326 :0.1254109790972375 +the:0.6842203728345352 Judicial:0.09208591921249189 tho:0.029577650836985117 The:0.020681774956407304 tbe:0.013287152599757865 said:0.012389924774411391 School:0.011500514197353637 Election:0.00912015047709099 and:0.008901689032450599 Washington.:0.008645096652607372 a:0.008442083842994393 dicial:0.006179553026493912 Congressional:0.0057265768989887425 of:0.0050146187431399725 :0.004851967207330177 in:0.004444649407804019 Assistant:0.0036647677059696328 Road:0.003322539063791146 great:0.002502843162775538 :0.06444015536662119 +thence:0.12639883728619028 all:0.05519443021512926 and:0.05405887357083525 westerly:0.03238233471137161 easterly:0.03211470908869907 feet:0.02802592288680796 west:0.027302906851482078 southerly:0.026783451475692322 northerly:0.02501435943520073 east:0.024958009590838687 direction:0.02455123406327654 get:0.022385475228179755 came:0.021391754041691847 south:0.018898573161886097 or:0.017137933172895317 running:0.01699715493011597 points:0.014520369386294944 north:0.014029154122888932 out:0.013752224724545221 :0.40310229205597814 +the:0.22291166397870393 of:0.10623383980864866 their:0.10439913636672093 his:0.09133726825765683 and:0.040491132189066484 our:0.03320452000589324 public:0.03103867044917277 other:0.023344400639841646 its:0.02296118897919727 own:0.020400732192453325 such:0.020234694180917924 or:0.019326498049873863 said:0.017686650458382348 in:0.01716592232166408 a:0.015746615802645088 my:0.015038324793538881 your:0.01470160202439339 any:0.014446919900602834 for:0.014355924928041589 :0.15397429467258492 +of:0.18631356668384974 on:0.10069544066616685 in:0.09199876366879223 for:0.07440003622559689 to:0.058993274809837626 and:0.05232588438233757 at:0.04718024108684188 In:0.042365491451149345 was:0.035779775822278585 from:0.029087511027657848 is:0.027739579856545023 with:0.026032161383189433 that:0.02551856327323951 by:0.02435871137725318 during:0.021546585889759082 after:0.01880976735072703 until:0.013888946785341085 as:0.012720851409557999 when:0.011194325724599849 :0.09805052112527923 +the:0.30069216648172575 and:0.09693545526882391 of:0.06481456691547603 his:0.02897108649636338 a:0.0262051890539568 The:0.023254607364278562 tho:0.016388164837266905 her:0.014490624494000981 by:0.013289426098945597 at:0.012974686069850118 or:0.011683327490871769 said:0.010491212553811403 old:0.00910001710313537 to:0.00858084078170889 in:0.008191644447154499 A:0.007703619850890045 for:0.007611838132448521 on:0.007500267366687755 tbe:0.007155985807546581 :0.3229652733850571 +at:0.27606819013735334 of:0.07610802430216188 in:0.057049068061995285 about:0.052310892655873804 the:0.050291720642669784 within:0.0456429745715969 for:0.041616441096752804 to:0.03774401831585177 and:0.03653312552150214 from:0.030779349315925075 than:0.02783104887738078 any:0.026397470410095304 At:0.02473722907095787 a:0.02377966079133917 In:0.02193467856254819 only:0.02088456547539661 is:0.01755666445653473 each:0.01733680749427727 some:0.014513843580126399 :0.09988422665966094 +the:0.4155904455887408 of:0.18094314233295228 The:0.04461380150853904 other:0.038224437503747544 and:0.032807059036351685 at:0.03209960487240901 our:0.02206537091039723 by:0.02177604618159328 for:0.020496266326684363 that:0.019724868792637015 tho:0.01928439529014257 all:0.014023388079393889 their:0.013900146302912173 to:0.01352057833667798 his:0.011871339169534437 with:0.010907132912636962 these:0.010648702016768131 a:0.009226152930299946 or:0.009222154402177132 :0.05805496750540454 +of:0.09129790931378902 the:0.07369883040827747 and:0.047842263382354346 in:0.04189055351593407 to:0.04045875475680249 a:0.03542341257202578 be:0.02020462051672066 for:0.01979292654746225 was:0.01760256398103379 at:0.017380150555488715 is:0.014984483003968216 with:0.014047653760730413 by:0.01374644383819499 :0.012670486581795598 In:0.01200961464556976 or:0.011563835749786333 from:0.011391516893522809 are:0.011273104484969465 that:0.010755276030689069 :0.4809655994608848 +the:0.3414820678082199 of:0.1414772730280438 a:0.09357920510113443 in:0.06920919264871435 with:0.04145013368711428 and:0.039338906242077344 this:0.031470909046196364 The:0.022870387197669515 tho:0.021559891872298065 our:0.019432646970514885 very:0.018910630505111842 so:0.016203724965788414 by:0.016015417693420766 as:0.015145782636827957 that:0.014798452246203067 two:0.014552696994571013 In:0.013995382048715527 his:0.013608459936359613 their:0.012678719501866682 :0.04122011986915226 +the:0.5583801375909097 a:0.046690836729962694 The:0.03903978157037067 other:0.037599917053942666 tho:0.030110593545694134 all:0.021857505551578064 two:0.01968800278645692 any:0.014605132744297155 made:0.012646305109443968 one:0.011302308242202536 and:0.010958254170291431 tbe:0.010280782055539825 of:0.008561700782803534 best:0.008461918098933003 great:0.008453674503036336 these:0.007720644069293263 many:0.0068137558336790905 some:0.006720066724634351 or:0.006057228854260907 :0.13305145398266982 +of:0.09129790931378902 the:0.07369883040827747 and:0.047842263382354346 in:0.04189055351593407 to:0.04045875475680249 a:0.03542341257202578 be:0.02020462051672066 for:0.01979292654746225 was:0.01760256398103379 at:0.017380150555488715 is:0.014984483003968216 with:0.014047653760730413 by:0.01374644383819499 :0.012670486581795598 In:0.01200961464556976 or:0.011563835749786333 from:0.011391516893522809 are:0.011273104484969465 that:0.010755276030689069 :0.4809655994608848 +the:0.5292524588616473 a:0.21196086064381098 The:0.04158932308333894 and:0.03822559481527273 tho:0.024317870843519995 one:0.014641453086384633 any:0.010507498204107067 every:0.0104720405375052 best:0.009186049111191417 tbe:0.008862879228702361 this:0.007685866763981603 A:0.007170218693863783 no:0.006676992102067287 first:0.00568637320722047 great:0.005463467465277193 general:0.005294798582130963 of:0.004701653291234929 same:0.004266669785903785 present:0.0042360770065946705 :0.04880185468624465 +the:0.7128175970550102 The:0.06095765514998046 a:0.05471236271965901 tho:0.02927383865281078 in:0.025023557601272995 this:0.015791662249381923 In:0.012591862249284257 of:0.012126221773183114 tbe:0.009565370991685071 and:0.00599312787263733 any:0.005230321032570874 to:0.004518611470385451 no:0.003761905900101775 that:0.0033534534295136314 every:0.0032733507414406393 great:0.0031052672159924146 his:0.00272287757775067 by:0.0025495835942633276 This:0.002361993400059047 :0.029269379323017063 +and:0.03868242960999506 as:0.031124813427855922 went:0.02352509775927722 him:0.02196555539050794 them:0.018760608639018784 up:0.017985449426794205 is:0.017894175620344187 go:0.017174904667157563 able:0.016756848979943888 going:0.014481672239490295 it:0.014128375989346808 was:0.013277058274565138 time:0.013249953793837373 not:0.012469887553778763 began:0.012465717758716884 way:0.012105610030480113 back:0.012090864562211581 right:0.011941707822828511 amounted:0.011564315359310868 :0.667354953094539 +of:0.1274367373239528 and:0.06271575323119435 any:0.0596179482762536 no:0.05947562254201813 was:0.04718541313134642 to:0.04533692923565585 is:0.043777467253100014 at:0.0367062360773612 from:0.034571947344202644 some:0.033831573010361424 the:0.03337241681263744 for:0.03202733317323253 with:0.03118511635695216 every:0.029585134050025115 by:0.027643509429060596 but:0.027380063473435346 that:0.026799690253709325 in:0.026316525444559334 only:0.025121013168196336 :0.18891357041274534 +of:0.19527328124871227 the:0.08852235464872274 and:0.07461541215765093 to:0.07104809849441773 in:0.050771921085619905 at:0.029790930151646595 on:0.02163293048724933 for:0.021011378358350024 with:0.019943045745526192 a:0.018843430129099493 by:0.018577324054660713 from:0.016919769906146482 said:0.014515961089430969 :0.0131185937677913 or:0.012527820077920622 .:0.010774825388234774 as:0.010223573481412396 his:0.008435013857181498 In:0.007798265268918296 :0.2946560706013078 +of:0.09129790931378902 the:0.07369883040827747 and:0.047842263382354346 in:0.04189055351593407 to:0.04045875475680249 a:0.03542341257202578 be:0.02020462051672066 for:0.01979292654746225 was:0.01760256398103379 at:0.017380150555488715 is:0.014984483003968216 with:0.014047653760730413 by:0.01374644383819499 :0.012670486581795598 In:0.01200961464556976 or:0.011563835749786333 from:0.011391516893522809 are:0.011273104484969465 that:0.010755276030689069 :0.4809655994608848 +the:0.05460628689714132 of:0.045076941346646957 and:0.036840609641808235 -:0.03288631404319461 .:0.02784176918698177 a:0.021726242045588998 :0.017168187252882113 for:0.016269610708107427 in:0.015089922501202183 I:0.012684149910899417 that:0.011565463552486926 to:0.010057457620862293 1:0.008638582723414074 Mr.:0.008576529409108925 by:0.00840792953930901 The:0.007891681607199058 i:0.0074258258177008225 t:0.0074031420764316515 not:0.005702389194311638 :0.6431409649247225 +real:0.4832437609482868 the:0.10727293936064701 said:0.08161264236828729 a:0.01870121568033112 and:0.018430098941145324 of:0.014071650767153153 to:0.009083451709290034 such:0.00838763639718442 as:0.0074212675791474215 an:0.0069530709486541635 his:0.004571844398861149 tho:0.004234707625551169 or:0.004130985007944741 any:0.0040481706545910075 personal:0.003968365295915574 The:0.003955498357502563 this:0.0025861930684447517 no:0.002575185780254717 their:0.002535454413159275 :0.2112158606976483 +up:0.013051916676147109 hundred:0.01299313584526595 one:0.011192796033481117 street:0.010795711456730334 men:0.01044006489708179 time:0.008983908902444476 him:0.008710218839226609 out:0.008135679211967282 ;:0.007334453641567275 day:0.0070846947560157785 back:0.006938395053584833 down:0.006340727808695702 house:0.006144495134116138 :0.006000146342907994 night:0.005923131740702213 years:0.005471965916665579 head:0.005453453384565386 them:0.005429035928815031 it:0.005276333841082418 :0.8472997345889369 +the:0.16287760685838365 of:0.0883592780729449 to:0.0618987346693935 and:0.05423685233212741 in:0.030811253892523358 for:0.03057359609188714 be:0.025098115820027647 was:0.01826945122296575 is:0.01662970283289366 a:0.016448402520667066 or:0.01633619095301082 his:0.015510346299682681 their:0.015084175217362073 are:0.014656254371894712 been:0.013019491851438341 were:0.01267572744006931 that:0.012270302451397866 on:0.01131798809455223 :0.011150587255169986 :0.37177594175160794 +and:0.07181562702745725 together:0.06672214896410926 connected:0.05460722541492519 connection:0.053485248068146786 accordance:0.040816432970329504 comply:0.022327715315442986 acquainted:0.01991331996883064 compared:0.01902004432375884 contact:0.016949822974841922 familiar:0.016791563233682194 up:0.016271038698657696 do:0.015355480362757417 interfere:0.014875808889703945 charged:0.014646284015101253 pleased:0.013610051164447858 him:0.01274062267734275 but:0.012200014478196207 satisfied:0.011962054640116513 it:0.011810815262474694 :0.4930786815496771 +one:0.1028303141280697 part:0.05963429477052991 out:0.04766456937681193 some:0.031418679026461914 members:0.030764490253327767 side:0.029940657362655835 portion:0.022063658796890564 office:0.020457735219956013 member:0.019726706386316174 end:0.019666887540649894 tion:0.018667441728710307 parts:0.016814747270460957 people:0.014112771422418794 all:0.014072739582212475 any:0.013183573287639892 One:0.013083578354183906 that:0.013024335602903442 account:0.012482348155001894 many:0.012077825070275192 :0.48731264666452345 +provided:0.3917781655538649 prescribed:0.1048289849772904 required:0.08449830844762382 allowed:0.042977609893075676 made:0.02467369906201015 and:0.023930669326654993 that:0.0188852638452329 secured:0.018387536909698632 vided:0.012479285353093934 or:0.0113571815002638 authorized:0.009801163234788695 done:0.009208433563332586 executed:0.009011430573249364 delivered:0.007451932212344827 ed:0.007387644903381902 only:0.0070774671159585315 quired:0.006957579307853461 appointed:0.006287594249135713 owned:0.006266991811066298 :0.19575305816007946 +as:0.115265096884255 and:0.04541374074110239 went:0.04333498084708838 up:0.035139388747190047 referred:0.03310138517849098 him:0.029015060438057717 go:0.028497442752533464 came:0.02668811616234442 feet:0.02487871385394075 come:0.023570153661352403 back:0.02354698986543052 them:0.0223154749488091 going:0.021330895063345633 over:0.01836876264063929 sent:0.018062352944476914 way:0.01790577963213715 according:0.01657743606339307 known:0.016295542131800577 entitled:0.014734935928566995 :0.4249577515150452 +:0.04886162056411152 and:0.040019830359908116 made:0.019534249586484108 was:0.01884742032062261 recorded:0.0156557013153549 that:0.014962923641391521 be:0.013346741481126276 is:0.012414190474703378 o'clock:0.011973468167413116 placed:0.011531292464673245 out:0.010920644875481857 found:0.010814196298763954 place:0.010167028437165111 situated:0.009811016372775217 up:0.009511290277384947 them:0.00920663098385622 been:0.009160737073209432 him:0.00901249715764949 are:0.008449437635810648 :0.7047990825121143 +the:0.16807735899698817 of:0.10541662057906837 and:0.05138367848570702 a:0.04141865232648221 to:0.0385989743764065 in:0.026264864977736738 was:0.019530675665220657 his:0.018900421021236905 be:0.017373825006196972 their:0.015767721170721456 for:0.01557246589796783 with:0.014071419046630446 is:0.012922913111931644 at:0.012690452250034052 are:0.010702713108721902 .:0.010158075558988393 Mr.:0.009672788574483367 tho:0.009612591781990074 were:0.009549306361446321 :0.391314481702041 +the:0.24195597872349842 a:0.059393506123659984 of:0.056336486607930454 and:0.0559896328985442 The:0.029563398611064436 in:0.020731333336861685 at:0.019947417804353593 tho:0.017421813166949882 to:0.01727176246076449 .:0.013774971435974153 A:0.012246551218581545 :0.011554124315493386 his:0.011278570032368145 said:0.011109925334348172 for:0.009772785298606786 this:0.009308531859673364 tbe:0.009235565937440272 Mr.:0.008646594791342053 or:0.008049305943907948 :0.37541174409863703 +the:0.28897814456552107 and:0.10509347232542401 are:0.053282610876322786 of:0.04739230145465447 was:0.04441428655923251 be:0.03952253705179658 is:0.03767405174636419 a:0.03673084525558333 The:0.03535827591633573 very:0.031888400299653154 were:0.03161604404123041 an:0.025710994285891388 in:0.02187321699896357 tho:0.018177691693784963 their:0.017818629584489334 to:0.015810793082010995 been:0.015530949783268402 with:0.013708547784650997 he:0.013675347685577747 :0.10474285900924434 +the:0.11919516938815296 of:0.07230453158552728 and:0.05781056740443249 a:0.043018564803886335 to:0.031305092790907506 in:0.020848713353460488 at:0.014270110001066288 .:0.012526810245749479 :0.012413283442322082 for:0.011719122709941797 by:0.010808400946589808 or:0.010404172990115616 The:0.01003576004804544 with:0.009811868184449042 tho:0.009295902015355835 was:0.008924239095331684 that:0.008672304223433876 is:0.0085591147338948 be:0.008335143826716943 :0.5187411282106204 +the:0.3063565241145132 a:0.06094359921632698 and:0.057198148257271784 of:0.05249538858338602 The:0.03007624670329136 or:0.024371147104911284 tho:0.02423981314247205 to:0.017798695741834385 tbe:0.013057710723313746 in:0.012690582800155868 an:0.011985628777478477 .:0.011115150161391916 that:0.010228370350808256 :0.008702236288006128 was:0.007517686440257908 said:0.0073669032346919275 by:0.007244182072732465 no:0.0068611283013256625 be:0.00680173518611373 :0.3219491227997169 +of:0.14412606427244665 is:0.08839060263010258 was:0.07905251820980441 with:0.0751759576538007 to:0.06883034774222122 in:0.057004293461447295 on:0.055170455302210195 by:0.04878432902276888 and:0.044715964593578156 at:0.027872489231655154 for:0.022711831676064782 from:0.02267441992147618 as:0.02043191416317396 that:0.017365532887997026 be:0.015989869762208148 had:0.015931442803839044 made:0.014934810365948936 have:0.01309964201469042 but:0.013043610899361766 :0.15369390338520453 +1:0.012033636804305546 ;:0.010050406076970497 3:0.009662538316836904 wife:0.00861229453772789 2:0.008543667781009338 men:0.0074852492807046325 7:0.007360913563831077 4:0.006753893546285231 land:0.006063644875709792 5:0.006040854090575336 day:0.005908004861408386 6:0.005680215278956122 and:0.00535136677599401 ,:0.005231170470350584 hundred:0.005135742257884576 Register:0.004887146282154681 city:0.004840026292310288 .:0.0047374572874804 up:0.00469217477735319 :0.8699295968421515 +the:0.7754771852853588 The:0.06709000226700208 tho:0.02568132709751275 on:0.023205042096974233 his:0.01818560630778006 at:0.011266507485290806 tbe:0.009576910177099688 and:0.0070831435841641295 my:0.0067809597684194865 their:0.005499606347433899 its:0.005031476681916629 a:0.004902870627599033 of:0.0038059184929365095 our:0.0034353744253816463 her:0.003369385021840933 was:0.0033004217232395563 an:0.002922892134026611 this:0.0023688366938180577 Tho:0.0022619102593310738 :0.017754623522873953 +I:0.17688555388613117 who:0.1036883635174692 we:0.0820296732878083 to:0.08134703540850463 they:0.07059304337832391 would:0.0666317666140722 We:0.0527094118304225 and:0.04707634891294809 you:0.028394931575600097 not:0.02641506199122646 which:0.0252895693443153 They:0.024447299608333625 must:0.021262308195681548 will:0.019873608641730135 might:0.01966917114300371 should:0.019244513981765136 may:0.01628854251227822 could:0.0143512294275928 1:0.013218517715263677 :0.0895840490275293 +is:0.06042397282972112 able:0.05973157861978377 enough:0.05054789917552358 order:0.05002539105567547 time:0.049124403917636464 and:0.04754902535253428 was:0.03907013177730659 him:0.03752884737137596 as:0.03697109961614302 ready:0.029180028603995545 want:0.028604143002275238 right:0.028489012384846104 not:0.02642664743016896 wish:0.026232661888285425 seemed:0.025102437605316132 have:0.023900535575718238 them:0.02243095456140606 necessary:0.02239604318189131 me:0.022075877451285596 :0.31318930859911115 +and:0.13424492979328825 is:0.10394686515150059 not:0.08664134440140628 will:0.08309043392526698 would:0.06243287459489059 have:0.05683688416121822 I:0.04687090245788948 it:0.04495792906302149 can:0.033942751510133574 he:0.030943170223292824 be:0.02908086476334071 It:0.025329403624371555 has:0.023535976197364573 but:0.020346489841849637 Is:0.020196278732372168 are:0.018570434804801743 had:0.01852352315287249 was:0.018248364533897585 you:0.0167575507701571 :0.12450302829706417 +of:0.12254712101208413 the:0.09615446280337789 to:0.07392668969690223 in:0.06474990454426753 and:0.04641903828701382 at:0.035624047153290456 by:0.024347636065160924 for:0.023991705131047352 that:0.023176058959998497 :0.02208277975081664 a:0.02104804137132229 or:0.01977412447129503 from:0.018714558176548234 In:0.018639952702592274 with:0.015596848597761738 on:0.014860258515473389 which:0.010860142384253677 in-:0.009854348651757267 The:0.00962253932450519 :0.32700974240053143 +the:0.28659784069809496 that:0.07942450282898783 a:0.07512546288565557 some:0.07061344457675654 same:0.06796510984964559 this:0.05819748831803117 of:0.038611237135449054 any:0.031475165795855874 short:0.02854170610721911 in:0.02395194549499374 one:0.023267719575880457 first:0.02082841672724015 to:0.01666630475212063 The:0.016143382923581827 which:0.015607008631654219 long:0.01557641203848125 and:0.015072600468991127 tho:0.013933855910658946 present:0.012595727735819287 :0.08880466754488264 +and:0.2357742930578544 he:0.16538181612296873 she:0.06905909799779356 He:0.05519114114313765 who:0.033966379795137724 I:0.03018597921147946 it:0.025474394639624823 had:0.024520184807656782 which:0.02409482543689885 have:0.021483929120347533 She:0.0212824074024472 has:0.021201886238291584 It:0.01899356049019709 be:0.018256032089870096 was:0.014014257634692447 they:0.01171879665761488 that:0.010006234636029867 is:0.009599066678641334 but:0.009350237561202289 :0.17944547927811372 +have:0.3038284914021988 has:0.2834004792138737 had:0.22197629950310246 having:0.045276561959664605 not:0.024692859039217415 bad:0.012173949624025468 lias:0.010343188901070962 havo:0.008091465622710419 ever:0.007315802723439811 never:0.007242710824123918 already:0.0044470571638500385 haa:0.004278249295989102 yet:0.003838327604349728 long:0.003806177597898668 baa:0.0037928032783246805 always:0.0031732395647151956 bas:0.0025170592075659994 also:0.0024721419874216195 hare:0.002335789199250608 :0.043997346287206834 +and:0.14361019776066067 he:0.10246156073786411 I:0.06681745184376152 which:0.05129909905323246 they:0.04930283147606204 nor:0.04319188352901803 who:0.04052062776140533 it:0.036020504689328256 How:0.03231642734216047 He:0.029718559263060315 that:0.02534057969632566 we:0.02176087423253282 What:0.02144223498597524 she:0.019496527476459205 Nor:0.01912530500705732 Why:0.017741116268121554 It:0.014697574292706184 but:0.014569231347326992 what:0.012380483555894892 :0.23718692968104693 +one:0.015552536992080472 more:0.014252271697624306 on:0.010631301787611593 day:0.010222750824534239 two:0.010216157614982159 person:0.007504694644314241 in:0.007364820929323563 man:0.007179188731169107 law:0.006205362369136604 action:0.006166303509128973 and:0.005659786788634644 city:0.005177234665142273 three:0.005130416479837977 State:0.0047265097104810415 to:0.004696031397422901 ten:0.004594585978494318 of:0.004463781172886088 town:0.004231879326219736 year:0.0040256313925199315 :0.8609987539884558 +the:0.15473763695806209 a:0.08149484436499221 and:0.07928177996031535 of:0.05000702963989997 is:0.04860746753689142 was:0.046283047189834205 with:0.03518615501415039 be:0.032060876783936515 are:0.02856485046258341 much:0.026460184547677713 for:0.02637219215375817 or:0.01987172767633489 been:0.019013629671964943 no:0.016907370527611595 were:0.015651771590607166 not:0.01459264696101196 his:0.014109903345650439 very:0.012971652136926533 as:0.012072898155855655 :0.26475233532193543 +very:0.1755949976615647 a:0.17129039699375997 most:0.11487803668425937 is:0.0703118274548797 the:0.0539146476537319 and:0.048521908443099934 so:0.04711178124680516 was:0.04096108837140019 be:0.04056845508727956 as:0.026550466297994246 are:0.024382529591630252 not:0.02354440090512433 more:0.02155899347308002 too:0.01829901280818931 of:0.014755657827882792 been:0.012468202162417003 with:0.012191503092366282 his:0.009978379770231005 were:0.00959473041318558 :0.06252298406111867 +of:0.25877052268497835 on:0.11320148120229355 that:0.07324885685458402 in:0.07226975929229083 and:0.052534818192614324 On:0.035596064344358073 for:0.031753305736066856 until:0.0316867919954804 to:0.028717523135331206 but:0.026352195739521474 In:0.025207886386080573 from:0.022834859807285727 at:0.01912758319320385 as:0.01694295220936285 before:0.016714172468293455 when:0.014954366313166339 upon:0.013354467275863776 is:0.013326476639231944 within:0.013325319699168179 :0.11908059683082423 +one:0.10757504863160208 out:0.06393072214258595 part:0.05345953864888265 some:0.04657778396619151 time:0.032653763285528395 account:0.0298978741893603 all:0.02673860913095395 and:0.02324876597992745 that:0.02275453097379819 because:0.021318504223257338 portion:0.02010071224985526 side:0.01926992014112468 any:0.018918137101655273 front:0.016609963575485047 many:0.016563310866764772 end:0.01592265492673931 day:0.015255366376758018 members:0.014811614297040794 result:0.014486922106154784 :0.41890625718633423 +carried:0.1187031901639061 sent:0.08741435790876417 pointed:0.08272239873371949 went:0.04944018454221134 brought:0.04912912422473866 taken:0.04690421373401601 go:0.0369186239345514 laid:0.03629468893208605 came:0.0339225619482541 set:0.033069408670179865 paid:0.02887024458818007 come:0.026309819157576818 put:0.025477289110840063 given:0.024754450812932774 called:0.0229117233696283 turned:0.02225187295018401 worn:0.021491779321307997 thrown:0.020959089600520897 and:0.02073707157446567 :0.21071790672193622 +are:0.15013244762914735 was:0.1274022374738261 is:0.10981881184792522 have:0.061248825719140615 and:0.05952898956143731 were:0.050684432461435565 not:0.04950629222615096 had:0.04874345124756022 be:0.047846185098934554 has:0.04742586089834337 been:0.03792372683995548 he:0.02253089952592623 Is:0.0175280102531165 am:0.0174545212406964 now:0.014402124456402463 being:0.01321936244500801 they:0.010574584135413569 it:0.0078615009650081 He:0.007844438809192823 :0.09732329716537916 +the:0.39749834532651884 a:0.07520030034269234 and:0.05540858759821703 The:0.03273515726769502 tho:0.030061875542463562 of:0.020144331424922633 tbe:0.014929647509541684 in:0.014268129706664795 or:0.013333166761078447 .:0.013287381914101323 an:0.009000188755386574 to:0.00880680429595084 :0.007943763822197133 Mr.:0.00773879605474787 by:0.007328417831573476 as:0.005922572098978465 for:0.0047526933692942485 that:0.004736121968310169 on:0.004594595720579333 :0.2713091226890862 +the:0.11919516938815296 of:0.07230453158552728 and:0.05781056740443249 a:0.043018564803886335 to:0.031305092790907506 in:0.020848713353460488 at:0.014270110001066288 .:0.012526810245749479 :0.012413283442322082 for:0.011719122709941797 by:0.010808400946589808 or:0.010404172990115616 The:0.01003576004804544 with:0.009811868184449042 tho:0.009295902015355835 was:0.008924239095331684 that:0.008672304223433876 is:0.0085591147338948 be:0.008335143826716943 :0.5187411282106204 +it:0.11857892928876056 which:0.10419954526017984 It:0.10229720510101595 that:0.06796245048918885 who:0.06088908826247786 he:0.060731706658395446 there:0.047718276913133226 and:0.0298646407467943 There:0.025721626378001235 He:0.023765504777663107 default:0.02149030696489031 as:0.019132676760165265 This:0.015088553278066501 she:0.01413948392901254 what:0.014110548249504374 this:0.009613248172212615 work:0.008813388419150843 man:0.006677000754574867 country:0.0066605789516794795 :0.24154524064513283 +to:0.25891589926046654 the:0.18986992358580862 and:0.09283907567475334 of:0.054253878927332126 that:0.036324945261876594 he:0.02843983937553942 or:0.023899588871285824 his:0.023648907673448093 in:0.022575889527213226 not:0.01926571301306622 next:0.01890391212760424 this:0.018252313206937702 last:0.016397311658843734 one:0.015468564222231813 will:0.015280150211407367 tho:0.01495884346416989 her:0.014192123591598835 was:0.013365065002050073 first:0.012758227737170634 :0.10938982760719565 +and:0.13494966609550382 of:0.07316641737364253 to:0.07075541455588646 the:0.058493680665523205 in:0.04957317167084668 or:0.034218196852765226 that:0.032957151083144585 for:0.023740081132267728 on:0.02372525113826427 in-:0.022059642840300344 which:0.021050432068915235 :0.019992650391152826 by:0.017069113882183004 In:0.0167310746783188 with:0.014170506894792975 from:0.013586836184279336 at:0.01266636453547691 In-:0.009826052731618101 as:0.009471218486562726 :0.3407970767385552 +.:0.06697540854548728 the:0.04400840463777622 to:0.039288169270747145 of:0.03858773395192355 and:0.03778027064917381 a:0.028326396249789335 at:0.02642121247544544 in:0.020013456925078953 was:0.017927249539586854 Mrs.:0.01478870250678956 No.:0.0147526381725335 W.:0.013917241872850135 be:0.01305668281349538 J.:0.01150001996255925 Mr.:0.011321038108706077 A.:0.01099828487619875 is:0.010443333230022594 C.:0.010145848917583885 :0.00956615732297359 :0.5591817499712787 +the:0.11919516938815296 of:0.07230453158552728 and:0.05781056740443249 a:0.043018564803886335 to:0.031305092790907506 in:0.020848713353460488 at:0.014270110001066288 .:0.012526810245749479 :0.012413283442322082 for:0.011719122709941797 by:0.010808400946589808 or:0.010404172990115616 The:0.01003576004804544 with:0.009811868184449042 tho:0.009295902015355835 was:0.008924239095331684 that:0.008672304223433876 is:0.0085591147338948 be:0.008335143826716943 :0.5187411282106204 +it:0.15590291243815246 there:0.0887784025092866 It:0.07904016205387611 which:0.06936908824431676 they:0.05362226352982171 that:0.04647101454662571 and:0.04420120519214072 he:0.027952982163116303 There:0.027623278151575524 mortgage:0.023443129896555264 you:0.018859539766003214 who:0.017891862574647276 this:0.014117846301193209 I:0.01363040583752058 sale:0.011818751696880098 This:0.010767348085132659 work:0.010306262168963347 as:0.009927627839447666 They:0.008978002990569422 :0.26629791401417535 +the:0.14554980417875446 of:0.10982298482461175 a:0.055715573978411204 any:0.03870291935024404 for:0.037407473090065285 this:0.035515771574704647 and:0.027213440351350458 coal:0.025006630439503078 lode:0.02398530014517563 placer:0.019955706213996015 by:0.017375544359887956 that:0.01712776730210347 his:0.016667303372626105 all:0.016535971814659853 to:0.015604332194787332 in:0.015187154857942173 some:0.014625997350984549 one:0.014620296448222886 other:0.014387241917467567 :0.3379927862345015 +and:0.14507320772351315 fact:0.08580533594336559 said:0.056464728489513914 so:0.05141663139801109 believe:0.03728868944610554 is:0.032697255055655516 say:0.030323479159427524 know:0.029749358812227955 found:0.025535190692382553 stated:0.021273605064562356 show:0.019511948220510757 but:0.018999393120383457 says:0.018814328565908398 think:0.016893655385130203 was:0.01658797795582863 all:0.01652317309060226 see:0.015409038245983688 opinion:0.015263158537430448 order:0.014744011681695817 :0.33062583341176116 +:0.05947664462137885 .:0.0459447800803959 J:0.013903520190285276 it.:0.011183140279526414 W:0.010905304171323906 Mrs.:0.008578962984429854 Mr.:0.008513000056996706 C.:0.008126012135569254 OF:0.007747324101978895 him.:0.007695785097033667 J.:0.006395866442351408 M:0.006362706657461816 them.:0.006308425022644254 W.:0.006149568484709214 at:0.005464716810658959 S:0.0053718629666158375 H:0.004654079222976746 I:0.004451889384215424 E:0.004349184341848816 :0.7674172269475987 +the:0.2339235444819769 an:0.21849846379319282 to:0.09193050552794547 and:0.05178601050053365 his:0.02961174519047687 this:0.023510524382021405 a:0.022925402380243612 not:0.013819263084481217 no:0.012949151257429724 will:0.01144958895535035 my:0.009815370036836022 The:0.009469861220948672 tho:0.009191089661952449 her:0.008881590206057225 more:0.008471880650173881 that:0.008471397575760745 in:0.008247892889926963 of:0.008004780800576905 as:0.008004312775210909 :0.21003762462890418 +out:0.058849815294395966 one:0.03180813553028986 day:0.02818730650826308 point:0.02778389878208223 line:0.025865115615039253 amount:0.02499112833513455 purpose:0.02290849889626758 place:0.02235624135928699 means:0.02189963808746759 time:0.019536882601552348 right:0.0185205106594689 matter:0.0170465737590096 course:0.015907780322548894 and:0.015325070524860438 tion:0.01464893606089659 notice:0.013989537351532261 term:0.013946713913673369 cost:0.013765716418013028 court:0.013302181777435253 :0.5783603182027822 +of:0.13084814232797154 in:0.0740836656586379 as:0.0625527229231004 with:0.059577596335708534 to:0.058433603729754965 is:0.05551580107464621 and:0.04946529489577619 was:0.04264000753602388 for:0.04009673021586375 by:0.037684080471064085 be:0.023941707008899252 on:0.02316059851167503 at:0.022644769441950232 such:0.019950936521181326 that:0.017856095877642635 like:0.017386655618315594 In:0.016902219705578994 from:0.016046571451088905 not:0.01205910100844263 :0.21815369968667797 +carried:0.06402306704294812 pointed:0.04975934036422349 taken:0.04897620174759925 go:0.04501741777891703 went:0.040400273945072354 thrown:0.034168902304213794 get:0.033540514641683686 it:0.0332192636740675 turned:0.02741576461503429 sent:0.023999159035280233 come:0.023841514820297012 came:0.02260657508918061 them:0.02212564884843806 laid:0.02146652716458141 put:0.021051850272628517 brought:0.020459770008983632 and:0.017337980013132942 look:0.017267543411773292 ing:0.016433395945614965 :0.4158892892763298 +of:0.0685019346464173 in:0.05071978952236543 and:0.044250858688938834 with:0.037162518058642804 at:0.025420198257903315 by:0.023739488235864994 for:0.02239566665476863 is:0.02034253937189253 to:0.01817894143086203 was:0.014747029908385941 as:0.01398394959341008 In:0.013934303768197999 .:0.01334315234346677 have:0.013096730841128444 are:0.011022117684695493 or:0.01095495301351284 -:0.010450145586162548 that:0.01000808852516419 had:0.00960930919179099 :0.5671382846764288 +it,:0.012147253556189105 up:0.011985874490122032 it:0.0109173582938849 ;:0.010354007884821128 him,:0.00975793992086167 him:0.00939583742920421 them:0.007601042061162496 them,:0.007539107186909519 in:0.007128193666087438 one:0.007053232100022888 and:0.006806477044256154 men:0.006096633761066655 made:0.005946563879932064 man:0.005676469278053468 out:0.005611256669647735 all:0.005131364322309071 time:0.004740764668450901 :0.0045512644845096895 right:0.004359569859421541 :0.8561997894430874 +the:0.11919516938815296 of:0.07230453158552728 and:0.05781056740443249 a:0.043018564803886335 to:0.031305092790907506 in:0.020848713353460488 at:0.014270110001066288 .:0.012526810245749479 :0.012413283442322082 for:0.011719122709941797 by:0.010808400946589808 or:0.010404172990115616 The:0.01003576004804544 with:0.009811868184449042 tho:0.009295902015355835 was:0.008924239095331684 that:0.008672304223433876 is:0.0085591147338948 be:0.008335143826716943 :0.5187411282106204 +far:0.09922156848048617 was:0.06707142076932977 went:0.06349448313881709 miles:0.04790863109868577 is:0.039903151875644596 be:0.03904781464809967 passed:0.03333111788248949 swept:0.030162696673735615 carried:0.029818563509778146 going:0.029248895843574842 go:0.028537104544333503 taken:0.026158100811167737 get:0.025893107477934527 and:0.02263371543345923 ran:0.022274470641848308 run:0.020630012855829098 feet:0.016918062030434357 came:0.016550341604846884 turned:0.015889035558501907 :0.3243077051210033 +the:0.10751256717983705 north:0.07641483737751938 and:0.05405629653418074 of:0.052068696432525534 south:0.04875870256490172 a:0.03163052053800147 east:0.03006855179209658 to:0.02484806666943199 quarter:0.018518168205345475 on:0.01840272521468125 west:0.015742606986862036 .:0.015426798724082418 range:0.014015076165971124 at:0.01355515436396795 No.:0.01206502627336136 1:0.010630062402505986 in:0.009398207113509683 :0.009097719365637986 thence:0.008601577360021779 :0.4281886387355585 +and:0.15606224301982202 of:0.14886138951460492 with:0.05511145565521787 on:0.054390556100230296 to:0.05355831499732129 by:0.041648307325457 that:0.03861704965703848 in:0.03246512152574177 from:0.026314907605192693 for:0.025162656763641444 when:0.018339975674829763 is:0.017191341288540562 as:0.014305099642432038 but:0.01323999606228635 at:0.012985797229231799 upon:0.011641659754252201 In:0.008844947739118633 or:0.008432418084938463 are:0.008364839114271874 :0.25346192324583056 +and:0.08797063525027365 that:0.07327357191973781 a:0.052801521357100825 the:0.030143252855246647 but:0.016417128392631958 and,:0.013681656586109299 that,:0.00916043230482865 was:0.00775395892151881 :0.0077345170274972334 long:0.0076137836703172096 which,:0.007245918553224534 him:0.006896234642932922 in:0.006799958130137549 it:0.0062204560603261105 for:0.006087469896287989 little:0.00588660511352153 ;:0.005644179106409936 with:0.005428546970050768 of:0.005338671919714374 :0.6369015013221322 +other:0.1625524650735472 the:0.08778205449644981 these:0.06049331107676244 his:0.05358322117146238 foreign:0.042267776513421056 two:0.040233414105343264 and:0.040059223752672554 this:0.037304625294824645 a:0.035389296099221326 few:0.034566807611063184 of:0.03275468766922402 their:0.025094150941113377 many:0.02493392855588124 or:0.02197224873647941 our:0.021447833215091625 those:0.021403293267201518 my:0.016204946069784516 her:0.014498343842903093 such:0.014193853680638264 :0.21226451882691505 +the:0.5176780117765769 The:0.10057479922810389 our:0.04078581123412327 American:0.03053993969494752 that:0.027276267586173936 tho:0.02682452969325685 of:0.024587616815489172 these:0.02338607835820664 many:0.013903209247287338 and:0.013865268365858708 other:0.013668204627761003 young:0.013078637657159787 tbe:0.011719215456952516 good:0.010879943345094527 Some:0.010312505997096351 colored:0.009254085874984342 a:0.008850815051030154 some:0.008527345663928553 any:0.007819291232321486 :0.08546842309364704 +tell:0.37691522699204033 assure:0.1253276989222897 told:0.057288474380576784 tells:0.05271574738049387 to:0.047298024140686075 and:0.034659724002966706 remind:0.027199835454885364 show:0.01675881609914549 inform:0.0164972642402973 of:0.01605789858578995 for:0.015464131946170419 give:0.014800631219799626 do:0.013474630051089308 that:0.011777938190354498 with:0.010327574678067629 convince:0.009637026355548826 upon:0.008821954579280372 telling:0.008573952786469195 ask:0.007138065373475174 :0.12826538462057335 +the:0.3763798703508803 this:0.12588522779310007 a:0.10868911085042299 and:0.05757213726275429 to:0.041697087939199906 of:0.028504394242569828 that:0.02527149245530904 tho:0.018877412952748952 The:0.013108465361600534 each:0.011325950234487752 our:0.01003293911690568 every:0.00903555079763376 any:0.008929018734494795 in:0.008704088374926724 said:0.00869602370654828 present:0.008576607784139679 or:0.007541922387158189 tbe:0.006539560096994065 county,:0.006383890636249225 :0.11724924892187595 +and:0.21912857797141996 that:0.12612960372662618 as:0.09741335600300842 but:0.0412915095351797 even:0.037094035169566664 And:0.02620564510440045 or:0.023466409296357082 But:0.022118025687574577 see:0.02169483661620632 ;:0.0127932422353468 and,:0.012772737420970863 know:0.010709127131252688 Even:0.010049673725760938 that,:0.009609381980062498 asked:0.008178627448094342 or,:0.007415157645841991 which:0.00704121033615635 doubtful:0.006910235158049905 cause,:0.006626540591359064 :0.2923520672167652 +the:0.13476476805868978 of:0.10335620763565354 and:0.07298982432450123 a:0.05493260493485237 to:0.03943912225916912 be:0.027111183577981188 was:0.024964516309082224 is:0.021318618791884996 in:0.01997329939240196 or:0.017463858114689805 his:0.016747288852367714 their:0.014456994452191905 been:0.014017672545055988 at:0.013647384018866159 are:0.013377045933421108 an:0.011360803488482838 for:0.011045703440883426 :0.009853875281147081 as:0.009770129219928711 :0.3684090993687488 +the:0.39162547708383594 an:0.14974728756267827 of:0.054261871521075665 The:0.0346180504637315 his:0.0335416638144469 years:0.02912415448403567 tho:0.02894959986305739 and:0.025279967518937036 their:0.020731680465628136 our:0.014866439093256906 a:0.014080824605510566 her:0.013829359490354165 my:0.013126278768510687 tbe:0.011849265457926814 its:0.010742445137024421 dear:0.0107249113373195 to:0.01050221329959081 at:0.00915778147137437 as:0.009125938141746608 :0.11311479041995863 +the:0.3749987313488511 The:0.17350525519332496 of:0.06797427326868771 and:0.047439479352295685 a:0.040785280839647005 tho:0.02158355034771846 that:0.012889232959266536 :0.012233276952425806 tbe:0.010996740334908876 no:0.010363332777555209 our:0.010286058527781576 any:0.010231969175666015 his:0.00958755578586071 whose:0.009476313737685623 No:0.009088465894091053 their:0.00861559626817965 Tho:0.008504533439613155 such:0.008208352491725279 this:0.007623479352862763 :0.14460852195185284 +of:0.28767355066866834 to:0.08775711267569858 in:0.08678131196995101 and:0.05160598694501188 on:0.04646139928102899 by:0.04519522654900943 for:0.044547789071328545 with:0.03396756772609607 that:0.033699232901107726 from:0.03075346596941143 at:0.027039283056790858 In:0.021061449543044047 as:0.017514234937992545 all:0.012543839382496166 upon:0.011844431150487573 is:0.00998972746569266 was:0.008814315973987914 into:0.008557199930727406 through:0.007781895704231326 :0.1254109790972375 +the:0.494701335336893 tho:0.028723416911656096 The:0.022651982343621972 of:0.013149660559327658 :0.011708087711183075 this:0.010989972735421726 tbe:0.01034459778118158 National:0.008628324236879677 a:0.008065371698148227 and:0.0070815667618091835 Mississippi:0.0069527479356374065 American:0.006666650656425556 North:0.0056976630886148485 York:0.005621811828538248 States:0.005442028146428317 said:0.00492858851337245 Missouri:0.0042022690841463095 State:0.003941474345260386 our:0.0029531725098679764 :0.3365492778155863 +Survey:0.12384381522261086 survey:0.09919828166634975 Cor.:0.05237952922147528 lot:0.033309554737424606 and:0.03032384353996996 of:0.029865285928645926 District:0.023275689291637553 vey:0.021798577808657023 marked:0.02028356242011341 Lot:0.019370214073491484 Liber:0.01928776151126 corner:0.01821046227497996 Ordinance:0.015717661141823946 Sur.:0.01393623826301752 post:0.01114983925739308 .:0.010329878488063621 Corner:0.009114366911726558 Act:0.009108976016052416 certificate:0.008616917026039185 :0.42987954519926785 +the:0.16102576399368962 of:0.06380356046682532 and:0.061995805794705997 Mr.:0.059035383761185334 a:0.04043904578481294 The:0.031168863984298426 was:0.020170974401425464 to:0.01664263359904322 in:0.01573791662554465 an:0.01556268429204308 is:0.014748804094614555 be:0.014536303853645715 his:0.013332003151504023 :0.012520155530940614 or:0.012085347647541114 .:0.011723038640458115 are:0.011581001427625966 tho:0.010357339994668771 been:0.0094221212829347 :0.4031112516724924 +and:0.03868242960999506 as:0.031124813427855922 went:0.02352509775927722 him:0.02196555539050794 them:0.018760608639018784 up:0.017985449426794205 is:0.017894175620344187 go:0.017174904667157563 able:0.016756848979943888 going:0.014481672239490295 it:0.014128375989346808 was:0.013277058274565138 time:0.013249953793837373 not:0.012469887553778763 began:0.012465717758716884 way:0.012105610030480113 back:0.012090864562211581 right:0.011941707822828511 amounted:0.011564315359310868 :0.667354953094539 +be:0.25346399684534743 was:0.18716796035980932 been:0.1086709991265713 is:0.07010884382587741 were:0.05335920078470431 are:0.03955462208092801 being:0.0389894734662987 and:0.02708064308417922 he:0.020958086324140486 bo:0.0166052719647551 had:0.014637339516941827 have:0.011881000238488466 has:0.01151365900477909 Is:0.009038585766956425 not:0.008280504882822578 now:0.007358935848875403 it:0.007297874460624551 ever:0.00664251404498277 they:0.005389419784131683 :0.10100106858878595 +the:0.14679671092926325 and:0.10840346054778822 of:0.09646221513428774 to:0.056258247217211656 be:0.04652739828977956 a:0.031098343264119387 was:0.02850393450028266 for:0.02702424004766315 in:0.02307629574244157 is:0.022698509674626777 at:0.022680002689543323 or:0.02033995105160014 his:0.01710952789131238 their:0.0163113541350013 been:0.015333602139030685 not:0.013549780726998245 as:0.012191956109573843 were:0.011857860789419625 about:0.011636563673647 :0.2711400454464095 +a:0.23996433453151322 the:0.12907854586620618 so:0.09671770253490303 is:0.05421111679398459 be:0.04915116607425349 of:0.045747848119295054 too:0.04187122850657945 very:0.040244438768333335 and:0.036028337027475016 are:0.029562513159818803 with:0.028496568523247282 was:0.02771531786306553 this:0.024028778996313258 been:0.015571005452874997 as:0.015567485182518786 that:0.015377562979557934 in:0.01359838878788176 no:0.013198892745913819 by:0.012639808549043553 :0.0702289595372209 +is:0.08825816104510438 was:0.0863246786643634 in:0.08425374931281547 as:0.07243822917958757 for:0.0675810147647486 of:0.06334211637943851 with:0.05456208217939299 and:0.04867409920026014 to:0.045621662616811796 by:0.026415015145873546 In:0.023919701628270392 had:0.023490051279477307 be:0.023127786941213684 at:0.022690400765317777 made:0.021948783903850463 have:0.0214454189562642 on:0.02108696173723953 that:0.01955569851420971 such:0.016755143730169095 :0.1675092440555914 +the:0.19776708757840944 of:0.09393851062660821 and:0.044225604664295384 in:0.040691176829794465 The:0.0350899645736175 Mr.:0.032932195610412815 to:0.025291949965642074 that:0.02018007348419844 for:0.018215312621193063 as:0.012413749292346359 which:0.011821905487970625 a:0.011753035818380535 tho:0.01172777635029585 his:0.011110981174582443 no:0.01005527762431502 In:0.009617789173899407 or:0.00952392348126918 their:0.009304131057345996 he:0.009234714962546985 :0.38410483962287617 +the:0.0676883502831247 and:0.06580394394221209 to:0.05215574489853775 of:0.049888095539340524 be:0.046573736745304774 was:0.029229921103434277 re-:0.02752369452884593 in:0.02750049139450859 is:0.025926515735882814 dis-:0.02171236846037281 con-:0.020599417234609636 he:0.020149838754718746 much:0.019991644081571603 been:0.018719127871237667 are:0.016855155336283668 or:0.01683511283204359 a:0.016597264841502705 in-:0.014711122571344508 for:0.014216905479190892 :0.4263215483659327 +Mrs.:0.05828917634798492 and:0.05347759732739454 Mr.:0.0367762489386921 .:0.03656330729603525 of:0.03416717139282873 to:0.03370623992147515 Rev.:0.02474317133024231 Dr.:0.0174117838901812 A:0.015240489327638275 J.:0.014881452458361675 W.:0.014446314361693732 John:0.011968878370994697 C.:0.011762632218407896 thence:0.011097725896610164 by:0.010407721418744286 the:0.010243290756058678 George:0.008837859718221605 G.:0.008521963838078461 Liber:0.008207780793254467 :0.5782491943971019 +at:0.740605183843839 of:0.04214070057831014 for:0.02873536584309156 and:0.018572250912172992 than:0.007164642673604612 with:0.006570349256926668 that:0.006551318473629203 to:0.0062466695234728135 about:0.006174394258248309 from:0.005587110658249187 or:0.005349381705104159 by:0.004617021838405114 said:0.004574676752428103 in:0.004419248261005682 between:0.003915255766243282 nt:0.0038896360449295715 it:0.003823628772395687 interest:0.003245031262179534 over:0.0031923617590172634 :0.09362577181674717 +the:0.2012209875970336 of:0.11258466601697903 and:0.0841860731935113 south:0.06354234555113977 or:0.05484708734237071 about:0.05375540723575663 north:0.04189969013846628 for:0.026996009516721032 to:0.02179840241204447 a:0.020555145917891815 last:0.020296197973813726 by:0.01994753086566528 than:0.017341280662298758 in:0.017064206773257946 The:0.014685238926650562 within:0.013052570015104039 with:0.012970243447034523 east:0.012267343846930612 over:0.012111927268431353 :0.17787764529889852 +June:0.046745212176371106 No.:0.038021047840748425 July:0.030153081902959657 May:0.029323789188077633 April:0.02691116224515085 March:0.024528693265068013 lot:0.02428543449449637 Section:0.021237851586164706 .:0.01964513028670026 at:0.018033448279503407 and:0.01643577040463759 of:0.015949111679250928 October:0.015343379171460026 block:0.012505391835861294 August:0.010321107716269986 de:0.01015051681191681 to:0.010044273988011745 February:0.010038485434033337 Feb.:0.009959405450094888 :0.609367706243223 +and:0.09218329289662154 was:0.043969911104638215 him:0.04026249624831364 it:0.03310935919173114 up:0.026160888693761323 man:0.022994329744699657 found:0.02006165490485769 is:0.019935577108206436 her:0.019082122150321203 out:0.018297692604249703 them:0.01780959898082349 down:0.016528790028020237 that:0.016082072746354557 but:0.016064868530045236 made:0.015921533942317486 confidence:0.015313089666876759 put:0.015014540346533727 home:0.013617682233916347 men:0.013605427931935808 :0.5229850709457757 +the:0.14030073123521622 and:0.06963959410728443 of:0.05549550806042731 that:0.03634216112649351 First:0.030765517554801117 :0.02894028772588659 to:0.02699379150281084 on:0.020119954112523524 York:0.015449028058210322 in:0.013269217750622569 tho:0.010756303428156972 at:0.010659022119621813 The:0.010080474929964087 said:0.00987818950395724 .:0.008790900634410362 by:0.008548329332703218 -:0.006351751697903846 this:0.006249008053522782 which:0.006079961866772443 :0.4842902671987108 +he:0.24376688758170348 and:0.10357748868105864 He:0.0658648131345135 which:0.04468042264679472 who:0.0382100409959625 I:0.0371351823325217 she:0.031648102351265944 it:0.029740175418895128 It:0.027138975825356668 be:0.021140774984739732 they:0.016828157614093654 that:0.016323148559710305 ho:0.015397764324660517 then:0.015223002110736567 lie:0.012098672807779116 She:0.011831928698687587 one:0.009662439605727855 now:0.009612733850735626 have:0.008792894483612777 :0.24032639399144398 +have:0.30825979017372884 has:0.23335574802959289 had:0.21175046658197516 not:0.030988266201518243 having:0.02927012901615229 bad:0.014171973849594698 ever:0.013086879418728829 never:0.01300501411300987 havo:0.009928021099038665 lias:0.009747205787221536 haa:0.00770115724572842 baa:0.007542997033275567 always:0.006964193192067684 already:0.006843537117543435 yet:0.006280305743339498 long:0.005835741283387316 since:0.003932840742479124 hare:0.003476596932273983 and:0.0033496242557260235 :0.07350951218361794 +of:0.47456471585313925 the:0.058610096173512614 for:0.031112382499374248 in:0.024014541221387763 said:0.022729292238789986 and:0.022380439869014144 The:0.016210054867153646 that:0.014390219099672712 :0.0121303945954086 Civil:0.007985495239927207 by:0.006312165460923134 to:0.0056832878170450605 .:0.005478908804848721 Mr.:0.005009964930504357 No:0.004908721556052301 In:0.0038855002911398363 ot:0.0037791656216871125 such:0.003451440196109465 from:0.003154799446625441 :0.2732084142176844 +was:0.18827982417147426 be:0.15469578411057422 is:0.08742544108025352 been:0.08408245342385126 were:0.06293593862106829 are:0.046841764114796035 and:0.03910759834324445 have:0.036448547944640024 had:0.03508060667400957 he:0.029072357498374116 has:0.028805581160189952 being:0.023219746235167257 Is:0.016803829866823137 not:0.012132730476420633 bo:0.010989676034042157 I:0.010496083501980804 now:0.010349624406836542 so:0.010186011444544526 ever:0.00992721886340223 :0.10211918202830698 +him.:0.044543643959885595 it.:0.02279911358162185 :0.022439268351981807 them.:0.014574972599744341 time.:0.012924238467117034 life.:0.011060329640443463 years.:0.010794743762034004 himself.:0.0103534208686829 man.:0.01001117954935731 home.:0.007657537075967877 her.:0.007090335147300959 day.:0.007026219723342017 work.:0.007019693499313529 there.:0.00690657377461333 again.:0.00689666807867021 me.:0.006547168251135325 city.:0.006326684141423345 night.:0.0062107309412641806 country.:0.006086253259556405 :0.7717312253265446 +the:0.39749834532651884 a:0.07520030034269234 and:0.05540858759821703 The:0.03273515726769502 tho:0.030061875542463562 of:0.020144331424922633 tbe:0.014929647509541684 in:0.014268129706664795 or:0.013333166761078447 .:0.013287381914101323 an:0.009000188755386574 to:0.00880680429595084 :0.007943763822197133 Mr.:0.00773879605474787 by:0.007328417831573476 as:0.005922572098978465 for:0.0047526933692942485 that:0.004736121968310169 on:0.004594595720579333 :0.2713091226890862 +the:0.08910559107244378 of:0.061137472560099305 and:0.056514486943512535 a:0.050004907958805744 to:0.04258205229205464 in:0.03034323322163879 by:0.026591436997703853 at:0.022473842633593488 for:0.022410377183264787 that:0.02098020189008893 was:0.019758834721747363 be:0.018481312054881092 is:0.018136696512301587 from:0.013181652578143578 as:0.012557274413748609 an:0.011709725541095948 with:0.011467300078065328 :0.011008591853478277 are:0.010990280949142445 :0.44956472854418994 +and:0.08152332474958487 together:0.06603177196458691 connected:0.03268840869683761 up:0.025651625914078456 charged:0.025353371608881042 filled:0.02339231907461623 compared:0.02295851937860486 connection:0.022835721314537906 but:0.02264265908590869 do:0.02261361759033931 covered:0.021377854807296367 them:0.0196330787605835 accordance:0.0190825706008871 him:0.01769735320374127 it:0.01769708294936734 met:0.015419639476956813 along:0.015355364307133624 away:0.01512213280977195 thence:0.014759281791226157 :0.49716430191505995 +of:0.3030848523339919 and:0.10153357243761817 or:0.0501061181269328 for:0.04496421875157584 to:0.040111278905588736 with:0.03634421163804921 know:0.03614556206979994 but:0.03510863335939835 in:0.027883578710844386 by:0.023190380315506284 that:0.022420988505186604 as:0.02083988693667971 see:0.01805735424845851 is:0.01732776176137713 from:0.016225520649887568 But:0.015003595169895837 just:0.012369235948365987 are:0.011971775923136939 And:0.011593593063339415 :0.15471788114436666 +the:0.11313750287931833 and:0.07328490467527529 of:0.07170676448470022 Mr.:0.05465025949981407 in:0.041822453042751735 that:0.023728194571039505 to:0.022045447804620817 The:0.021997192411804336 Mrs.:0.02149524727742662 which:0.02117498070311125 con-:0.019242448178878407 be-:0.01737560777976293 he:0.01701390881503886 a:0.014939892645918197 when:0.014559590098796505 his:0.013731924901230236 on:0.012447588353039746 for:0.012403335563120897 as:0.011671028119052521 :0.4005717281952995 +and:0.10709023245987148 to:0.05937621477967627 of:0.04727002679977009 the:0.0464645025711916 was:0.03912366790330582 is:0.034375747716434486 be:0.030731402957308397 in:0.02370521418613355 he:0.02109043469090808 for:0.019757810095057008 I:0.017902322135649004 are:0.017413661851391704 will:0.017018385297273834 it:0.015405020648807043 on:0.014990178447153769 which:0.014852684732269692 were:0.013646149553412834 they:0.013444214685392078 his:0.012376049504451158 :0.4329660789845421 +that:0.2256871171032036 and:0.19930488239513336 but:0.06745262964340179 as:0.05886427158600607 if:0.04859859981457123 which:0.03447126660995012 If:0.03112853201235846 where:0.02904154717202389 But:0.025141909646087177 when:0.021856609683108656 Then:0.013501190972854682 because:0.012561294822002368 while:0.012448622397862952 though:0.010702719797682465 And:0.009497483083679675 yet:0.008791147909762313 then:0.008386756588468817 for:0.008200958550189258 time:0.00793138172843354 :0.16543107848321956 +a:0.28185632919095194 of:0.2056301358596452 the:0.1784672428448173 in:0.04484467349752054 and:0.04280643148852217 his:0.03255646377967482 The:0.028442971841852394 to:0.022720987993355722 for:0.019818594493956777 any:0.014632637745270283 In:0.012508390508372647 their:0.011883312526396092 with:0.010663777579645857 our:0.009470034079755755 tho:0.009058947815190076 all:0.008181534846806199 its:0.007573229241472431 no:0.007451882692324882 that:0.006976534617946238 :0.043455887356522664 +made:0.06596927234253551 and:0.035318050247047365 owned:0.023701525831423327 secured:0.02267089462365102 delivered:0.02072001957663587 occupied:0.01973203037922288 taken:0.018244168402257663 ed:0.01790040791200013 given:0.015866991257789318 held:0.013953900301705981 him:0.012237637440888264 accompanied:0.012055652305411883 to:0.010445617096690769 up:0.010346029748427002 city:0.010309055720476646 them:0.0099149551630747 signed:0.009463112726323705 headed:0.009310463794313172 sent:0.009239969261851624 :0.6516002458682731 +and:0.06454739073657131 demand:0.023313300174744492 ready:0.0192991955467307 used:0.018559068069203856 time:0.0167973135366693 not:0.012889415712033305 vote:0.012868664167591082 it:0.01277775949265748 candidate:0.012059490274945432 him:0.011492660117416436 them:0.011389360230310022 called:0.010603763162339089 made:0.01030049958521204 up:0.009942829375404135 was:0.009875709402481388 as:0.009516893763303088 patent:0.00929908628672026 or:0.009178704268878403 but:0.00882338719685127 :0.7054655088999369 +:0.11506813166538835 it.:0.019518740096356037 them.:0.012849527482762163 him.:0.010510408046709536 day.:0.006768836622607736 .:0.006500283372625958 time.:0.006192438760920041 country.:0.005603011787055395 ?:0.004692863090338799 all.:0.004651345546849348 work.:0.004511339930621735 one.:0.004369693065167428 people.:0.004356839477990464 year.:0.004261522164852602 years.:0.004240744619171023 ::0.004178224242757739 water.:0.004148944139409211 out.:0.004021463227175592 way.:0.00398556293606978 :0.768570079725171 +the:0.10442087431339736 and:0.06939931179057497 of:0.059572203373200204 to:0.053395145484619676 a:0.0486301317746673 be:0.02495829126582574 is:0.02176810608490287 in:0.021387948844742682 was:0.021133420387223628 at:0.016201961358633225 it:0.014708045421280487 I:0.014013289124653647 or:0.013113755083441998 .:0.012431333144635159 for:0.012232343553272098 he:0.011657353848976844 :0.010801417707194536 not:0.01066798961461849 that:0.010348695280748398 :0.4481583825433907 +and:0.10575595131918072 to:0.056490804521885055 of:0.05595297320260928 the:0.04394537150595287 at:0.04249773323472407 in:0.039655435712517687 an:0.03304474739336654 was:0.03250463282551732 be:0.0323310089915376 for:0.022119471849534143 as:0.021490984081871653 is:0.020130597795095195 with:0.020109904419895713 that:0.017812692314527794 been:0.016772707029383722 on:0.016351084133591504 or:0.013387743823603592 from:0.01337254300055901 were:0.012943613709331751 :0.3823299991353148 +the:0.2758860220702965 his:0.12110168314632212 a:0.10081505121245332 their:0.062782174195352 our:0.05144113363840701 its:0.04385973521966802 of:0.041019917221529124 my:0.03995509374239932 to:0.03304283442097078 and:0.02541742715550885 her:0.022505036606945947 your:0.019980009404438268 tho:0.01647511261564359 The:0.014558472680189895 in:0.009722161114685223 bis:0.007649289072587267 tbe:0.006372588925265602 per:0.006311507028658724 good:0.00606579470527063 :0.09403895582340784 +for:0.10322825565172632 the:0.09479144150390913 of:0.08186213654115304 and:0.07478172191706353 a:0.07467572600575888 in:0.04846174386253597 at:0.04690004284211781 to:0.04029854574299487 about:0.020739876135100224 all:0.019696474053552522 by:0.01816718145993319 or:0.017257701808183472 In:0.01589410560864221 that:0.012395710800056334 some:0.012176486714793463 from:0.011777998498513208 one:0.01122950870135896 be:0.011048528267887025 during:0.010773105444906108 :0.27284370843981376 +to:0.20827405662175968 of:0.17729603789587342 with:0.10053377488148892 for:0.09605013632740383 by:0.04867468877395514 upon:0.04379844573865567 between:0.038363447659269564 among:0.03648929720381692 against:0.030047736975116725 from:0.02865681193438972 in:0.02667119896794084 on:0.017257576926735907 around:0.015095655518480001 and:0.015056124849689878 about:0.013942610428220072 behind:0.010703115915738408 over:0.010617150032352122 before:0.009734282026799998 see:0.009515051801463666 :0.06222279952084954 +the:0.26630126508518737 his:0.1852468343955729 a:0.06967675354471509 her:0.06543366219501852 my:0.04960198960079934 their:0.03465908330547515 its:0.028101225236062538 and:0.026088892518709564 of:0.024428474857735905 The:0.015964595562862702 our:0.015697284636625924 tho:0.013444689658333933 bis:0.010600943805398295 that:0.010074963215362625 your:0.009377022249563589 was:0.006514942311101984 His:0.006297197296906807 by:0.005989071018202969 tbe:0.005473923743116142 :0.15002718576324864 +that:0.2968679931546519 and:0.11425017044387295 which:0.07840608290093895 as:0.05491010562796762 but:0.0507899152705152 where:0.04181923077962451 when:0.035062641700354544 if:0.03380554687924101 what:0.020758442484193743 because:0.018037217089969467 than:0.013735011113380735 or:0.012918128578842886 until:0.012502776209915823 If:0.011311753456944896 then:0.009813348823122299 think:0.009286428406352595 But:0.008564209929610272 for:0.007828896643750862 before:0.007640512684116824 :0.1606915878226329 +in:0.1566653927034051 and:0.1380408634085018 of:0.08562877916863636 In:0.062372927323736574 to:0.0553448961116064 for:0.04999423763456721 is:0.032941447173946134 with:0.02759069700081249 that:0.02357778686555411 was:0.022606591667951988 on:0.02106202278513458 as:0.02051772672882738 by:0.019784993205027877 about:0.019646617818319664 within:0.019431074187949985 or:0.018773465679620353 are:0.01697487070766377 the:0.015709579224343607 made:0.01562574407659747 :0.17671028652779713 +of:0.11535997270352248 the:0.10022988041808688 in:0.05558080551957315 and:0.05509438406024908 to:0.04735258059266788 a:0.04248424108578408 that:0.02294579173904683 for:0.01689616019072244 more:0.015252679989127597 with:0.015162633397171542 or:0.015124225539460367 In:0.01461907938256531 his:0.012963648528461595 from:0.011242416888200676 be:0.010658614267485218 as:0.01022868297749834 by:0.009897526769555102 at:0.009722577221067799 on:0.009663857460866756 :0.40852024126888686 +of:0.32133577458784157 to:0.13610766621048984 that:0.07533919300190878 in:0.06934660540270732 by:0.06454508130737907 and:0.038205255907842975 for:0.032052338651801675 with:0.027556484085940473 from:0.024515736085045727 as:0.018787745894579277 under:0.018198145382436175 on:0.014508378081511765 all:0.013786271684569381 which:0.013335535256692673 In:0.013221874391978411 when:0.010549447703080443 over:0.00962717421195016 into:0.009185967384001308 upon:0.00885224100450796 :0.07994308376373505 +the:0.1901976022298147 at:0.12724875163259042 of:0.1261577886632019 and:0.09007770856859282 a:0.0603849097893703 in:0.03602220276726303 to:0.03280741917335523 an:0.030423431284663544 his:0.02292922221640369 for:0.02266509795439685 The:0.021604450119660182 by:0.020636684152709365 with:0.017561412874600616 tho:0.015945267805159476 At:0.01567075588949286 that:0.013600077589149322 or:0.013461938894492664 :0.013284955504853951 from:0.011484235081617817 :0.11683608780861128 +thereof,:0.015460008229824568 mortgage,:0.013716390129790893 dollars:0.013531911422487084 ;:0.0115347877276928 years,:0.011480633581359903 due:0.011078022740078804 hundred:0.010002504934089862 of:0.00988008630289484 States,:0.009807032818952928 it,:0.009502796315999745 same,:0.008994904913328385 county,:0.008577494541768567 them,:0.00817970131070215 in:0.008130195632286445 dollars,:0.008077499812329454 mortgage:0.007959796127865064 law:0.00754729929797224 city,:0.007518058718105014 act,:0.007440737967543248 :0.8105801374749281 +the:0.7150061240359016 The:0.07604285715492279 tho:0.03872250045988884 a:0.026202033772006066 his:0.024076274921414856 tbe:0.013572511411513895 this:0.011111437044717473 their:0.00949094676120422 my:0.008975799864449335 our:0.007293857715963011 of:0.007217577381714033 its:0.00561024740387872 that:0.005383798376315962 and:0.005132730870492117 her:0.004559789317053185 or:0.00391249585156969 whose:0.00352401441457867 no:0.0034483789781617376 your:0.0034249632813921032 :0.026291660982861703 +the:0.4448053583238228 in:0.1236138298234768 on:0.07607843526340571 a:0.042727799812331706 of:0.04005894865256398 The:0.035768748027659954 and:0.03149471078288241 In:0.028261134556887783 tho:0.02123519886618237 great:0.012750029043542988 first:0.011090149479825772 this:0.01100135524200429 tbe:0.009190268363595733 On:0.008818955063349534 any:0.0076091928215763945 by:0.007284604463693343 large:0.006773208745228204 from:0.006234365706325814 his:0.005742277155479867 :0.06846142980616457 +the:0.13552825635915303 of:0.1029805599383836 and:0.056621969468085516 a:0.03688610695349926 to:0.035891609243247594 at:0.027107278804001954 in:0.025080984553754897 be:0.020537450285025776 his:0.019054889112167003 was:0.01855957709963544 for:0.016758218523239065 an:0.014366761612739228 is:0.01297023757594031 by:0.012728027895913475 or:0.011269715867108057 .:0.011108667822817574 as:0.010004430656547202 :0.009973418216775389 this:0.009593732367737895 :0.41197810764422776 +boy.:0.06499700596987355 .:0.06228244255669788 Andrew:0.05487675771274909 C.:0.054690595524867464 A.:0.054346912070400884 Mr.:0.04438049094829285 J.:0.04338032382884973 H.:0.043012305472702864 W.:0.04268240660177439 John:0.04263063175161185 P.:0.04221384477788548 girl.:0.039054727595469414 &:0.032970644923987776 B.:0.03192140514321466 James:0.030794596200596328 L.:0.029841557762753483 D.:0.02968306735671384 M.:0.02881523337940054 Mrs.:0.025651736066703897 :0.200773314355454 +and:0.09500881008555331 well:0.06206658951236029 regarded:0.036935028935535894 him:0.0314142794209011 known:0.031077052056542338 soon:0.02700320061470986 it:0.02623085774473942 is:0.02438162343435629 but:0.023839390993020203 used:0.021720637341540703 far:0.02045890976727103 just:0.020384524333195254 much:0.01971667289504282 such:0.019521581813054578 them:0.016090407278819097 was:0.015694381145043425 so:0.015081118446204548 act:0.014529263549522683 that:0.014487886332689187 :0.463357784299898 +of:0.24771856616623836 to:0.10055514755145552 in:0.09984480279807748 and:0.05814117240642057 with:0.05158849496637837 for:0.04613065771486411 on:0.044432355864291194 by:0.03519649785437645 from:0.03338388255327628 at:0.03070401576666744 that:0.026848878623973782 In:0.02041195271981872 upon:0.015248471773457326 as:0.011599582931726849 all:0.011326016994932605 or:0.008867228292995478 up:0.008407673252508876 over:0.007381477118522736 into:0.006992770039889695 :0.13422035461012818 +it,:0.020066250729468618 ;:0.018463310008504038 them,:0.014025162533758715 it:0.011994110429603987 him,:0.011236128826773334 him:0.009471149609493692 time,:0.009203551806326591 country,:0.007751046760039575 up:0.007740391441548338 years,:0.007710582374234828 people,:0.007077270634756562 up,:0.00706191553698371 here:0.006838778546039603 States,:0.006822957880501987 them:0.006450399552461554 in:0.006294703052973352 time:0.005982962242141434 year,:0.005863359520135046 country:0.005761171033017349 :0.8231847974812377 +of:0.23803495345718445 the:0.15617425744503768 other:0.10014972554435798 on:0.0409833146545897 these:0.037309225473829276 their:0.03716960938153316 all:0.03509223248703087 our:0.030908954369034562 to:0.024584278597961393 and:0.021264924566283983 his:0.020413127494165267 for:0.02028488347524099 at:0.017576528812743682 in:0.016893818946528107 many:0.015973039822344104 such:0.01597052276080585 two:0.015540382345456905 various:0.015537545544273708 its:0.014489737411816216 :0.12464893740978206 +and:0.12903815515389785 so:0.07627390034423512 say:0.05396951788641086 fact:0.046386200667894444 said:0.04383336067577344 know:0.042968617845181765 me:0.039613044759563856 is:0.03417819954245444 but:0.023479796166398816 believe:0.022815078704092138 feel:0.018802511596853116 was:0.018763340451625254 think:0.016820850676886497 him:0.015709705327703372 all:0.0156851874509525 stated:0.015365472560428244 says:0.015133104292256372 told:0.01464750367292627 of:0.01436619171034837 :0.3411502605141173 +to:0.18704572532575034 with:0.07261235994983761 took:0.05983754333695446 gave:0.04970782706991348 put:0.04166708992079806 for:0.04100794633147016 take:0.038972120814986015 give:0.03154374624621188 threw:0.028923790753530396 keep:0.02837492780865792 made:0.027276282163300945 at:0.026496460797956204 let:0.026114156348202387 by:0.02273492069884489 struck:0.02217504258557117 get:0.021513633672235858 picked:0.021430517450142156 bring:0.019610836935701564 on:0.01957182153527528 :0.21238325025465926 +and:0.08995317707915026 to:0.06844710404109794 of:0.04605142056172993 the:0.04074574508561307 which:0.02479116931334353 that:0.023764822140213245 re-:0.020841117231308055 in:0.020803825395358622 for:0.020278423301550053 :0.018417753428486977 not:0.016860793136637672 con-:0.016444405871234195 is:0.014386481772210856 or:0.014080680914153714 be-:0.01352268143271276 I:0.01317002660943805 was:0.011429878269381662 dis-:0.011196807025842847 he:0.01113106290024311 :0.5026826244902934 +it:0.20071992362078783 It:0.09930808788872729 that:0.09653111311711733 which:0.07436715582728029 and:0.050000056122551886 he:0.0356610214651253 There:0.021753010143102623 there:0.01909941110717914 but:0.01803058568176141 who:0.01717830409166806 That:0.013178363046706502 be:0.010835379532759454 land:0.010180561648690403 as:0.009733653324032598 fact:0.009599170337446852 question:0.008639553002202089 what:0.008071427510836088 now:0.007365724291395282 man:0.007088441971074907 :0.2816590562695547 +he:0.16630344174632208 I:0.06629716606401652 it:0.0656993015778283 and:0.058848919635093394 who:0.05393833996875235 they:0.04805079072127635 she:0.04454085540840044 He:0.04241760779432799 we:0.029881933574794062 which:0.029097484723943908 It:0.028508870229350825 then:0.02615125069509334 be-:0.020834874817404526 that:0.01742254784896172 be:0.01387348171107727 man:0.013060990948422668 you:0.012807684424983612 She:0.011045040045259188 ho:0.010510806564781035 :0.23970861149991043 +and:0.08995317707915026 to:0.06844710404109794 of:0.04605142056172993 the:0.04074574508561307 which:0.02479116931334353 that:0.023764822140213245 re-:0.020841117231308055 in:0.020803825395358622 for:0.020278423301550053 :0.018417753428486977 not:0.016860793136637672 con-:0.016444405871234195 is:0.014386481772210856 or:0.014080680914153714 be-:0.01352268143271276 I:0.01317002660943805 was:0.011429878269381662 dis-:0.011196807025842847 he:0.01113106290024311 :0.5026826244902934 +of:0.3243597337937809 on:0.08803466619308545 and:0.07526080016240935 to:0.05861820646206425 by:0.05609509680991269 in:0.054088316437910226 from:0.03675760816987148 that:0.03575532596204231 with:0.025927510905025247 for:0.024911918644167936 at:0.02079268340838088 said:0.020132666250972927 when:0.01752801570394193 In:0.01593131609027156 before:0.01190873835078114 On:0.01024431607646242 upon:0.009548901593150687 into:0.008631472046998177 or:0.006856119542061768 :0.09761658739670868 +a:0.4261039612086754 the:0.11140109430774117 and:0.05721318037914405 most:0.04604707221223454 his:0.030066812754822505 A:0.028700161670758326 of:0.026231349808176593 very:0.02516820618863712 her:0.021661829234718866 with:0.01980472579312889 The:0.017834760417892944 more:0.016303956208189852 to:0.015848857979873024 my:0.015377025396871753 their:0.014146958187699609 no:0.01161979734476075 be:0.011158196674482111 our:0.010642328757223572 some:0.009717360462368015 :0.08395236501260092 +to:0.23283857676633923 of:0.14076572095259832 with:0.08319081453325737 for:0.06512158839595379 upon:0.038111593497682526 let:0.030641426408283018 by:0.029653464298070555 and:0.028836253107172378 Let:0.019947396601386714 before:0.018213220914732726 on:0.01713749109749157 from:0.01664097942469739 against:0.01613220151568608 told:0.014109235285440822 among:0.012817297951070552 tell:0.012646283933267338 assist:0.012308446959145647 or:0.01173760119327967 given:0.011434655950984075 :0.1867157512134602 +and:0.07359963406644195 be:0.052667135004264946 to:0.04483536256874564 of:0.043448293679263235 the:0.03579172892628988 in:0.028005289969665195 was:0.026700397492138477 is:0.024892551934152005 re-:0.024162182625676702 he:0.024086629517294657 are:0.02098604388819216 from:0.020307931541148256 a:0.018606881911690538 or:0.018077853608073062 for:0.017195224169077532 been:0.01615904189338184 I:0.015254891559368164 :0.015184018660626356 which:0.015016145996292442 :0.464022760988217 +of:0.28222317643717626 to:0.1160876053811819 in:0.11361402173723238 on:0.042812450876217406 by:0.0418270505309564 at:0.04121542040751907 with:0.04075504224722997 and:0.03658951965849034 from:0.03600534808842174 for:0.03524669242237072 that:0.03500114412581383 In:0.027667217871945277 as:0.016400146007014074 upon:0.01628752493342925 is:0.015773798098971108 under:0.015636604915147678 into:0.009673532659765192 which:0.008942487850525576 when:0.008804317874430308 :0.058436897876161506 +a:0.30823326393796346 the:0.15584460342850215 to:0.08800588208176756 of:0.04344887363422759 and:0.041284735383195735 his:0.030624931062607795 no:0.015911184842024688 with:0.01513770299547901 their:0.014547794200420268 A:0.013938598789399426 The:0.012881375346522008 by:0.01139016745508194 or:0.011173268475068814 her:0.010468088410870768 great:0.009748843409729587 do:0.008206938396134933 my:0.00763748354986151 any:0.007168104715952999 tho:0.006726114784303338 :0.18662204510088645 +to:0.10535383428397152 of:0.08785152154857531 and:0.08718240256371036 the:0.05769009783677497 a:0.02259357546192309 is:0.021269165328922177 was:0.01905062077377601 with:0.018667046747008902 by:0.018388554426432686 for:0.017514510946139053 be-:0.01619774592406921 or:0.015936430146604046 :0.015723017853775712 be:0.015294605128235954 which:0.013551532800357079 in:0.013294713079311956 that:0.01297407736022182 not:0.011652065642554546 will:0.011345593538340115 :0.4174688886092955 +the:0.5658790791009337 a:0.15153395182168164 The:0.0462410995319744 in:0.036162098597878924 tho:0.026510142650823836 of:0.02377159711714157 most:0.019319877626332183 very:0.016960432402197946 and:0.011150276730067332 this:0.010769133527529477 no:0.010482443080615193 any:0.009591828176506036 tbe:0.009455925876942382 its:0.008614384233044031 In:0.00810758241486169 their:0.007482237408972294 for:0.007078812915580317 such:0.006267163495507408 some:0.006068723469093536 :0.01755320982231605 +the:0.17014403408623546 of:0.11046855554690803 and:0.07188756812531531 these:0.053045233066260064 The:0.05075392746665432 to:0.04824171060007903 for:0.035167883148892166 on:0.027008430073943362 his:0.0254134082559124 in:0.02490519001302755 that:0.024170484633360297 at:0.022959254521880437 such:0.02213103217851526 many:0.0181240514666893 with:0.014983434718307981 tho:0.01428401841350307 their:0.013917771636820817 few:0.013846202795665506 other:0.013697600157908722 :0.2238502090941209 +of:0.3166151450860471 to:0.08352609186221356 for:0.07068866566245662 and:0.061411787566632695 that:0.06134372618933299 by:0.053549180563975084 in:0.03927673830231636 at:0.03270586335559605 as:0.02990908273145129 on:0.02982176326855606 with:0.02885950154579461 from:0.02194006890801211 when:0.016306718791063123 which:0.013595438603675784 all:0.012132680841102325 upon:0.010332276440153382 In:0.009409164909212061 about:0.008873251406130635 before:0.008634426622038867 :0.0900684273442393 +the:0.14125336615260473 of:0.0917869989458268 and:0.07012756939019134 to:0.04576291728861122 in:0.03814775604170439 be:0.032654915856524344 for:0.02004449291369165 he:0.019896919482821202 their:0.01747848385253738 that:0.017090236408528133 was:0.01569849682115494 a:0.015338607771385302 his:0.015072614781189993 more:0.014169050447440079 no:0.013048550035485709 or:0.012787350973167057 I:0.012659430292374579 is:0.01226076482159176 they:0.01079803198231344 :0.38292344574085596 +of:0.2264342724041818 and:0.0854125484620706 to:0.0814399350715782 in:0.05401153484538891 for:0.04981055784815077 the:0.04143116080578955 was:0.03553691322344684 from:0.03324641596146654 about:0.031461597125362 with:0.029942502759851625 at:0.029258579181638412 by:0.027588864999632028 were:0.02555381683080279 are:0.023561889135684456 between:0.023290157016297674 that:0.017718732101498234 is:0.014887382304773215 on:0.014678229860309476 all:0.014250130169365995 :0.1394847798927109 +a:0.3884469936118696 the:0.2516295347949699 large:0.1172598166199743 A:0.04263538507407082 The:0.038751151922176284 great:0.015784669032137842 total:0.012450029176985985 and:0.009906332100247798 tho:0.008795594021867324 whole:0.008551498061751726 any:0.00830995036862049 considerable:0.008078460889881919 this:0.008064962747566476 sufficient:0.00759398209225476 largo:0.007553634725424092 goodly:0.006793601890766698 largest:0.005417677222877226 small:0.005326727807158831 greatest:0.005260218271373045 :0.04238977956802493 +of:0.16294497208745998 for:0.1339105465844069 to:0.10949926605149585 with:0.09456309363333827 upon:0.09203597366854852 on:0.051981241973202676 by:0.04385485263747555 in:0.03872118203232754 against:0.0313407700280462 from:0.029873666429575056 about:0.026125465483428145 before:0.022855144628281462 among:0.01697020666783794 at:0.015346943317711347 behind:0.013593512158509164 between:0.013075239504449231 over:0.012664780749159884 around:0.011552076804032809 give:0.009861528110871945 :0.06822953744984155 +as:0.06931392982974462 according:0.052071562389565784 up:0.0511867300210483 and:0.040371568633051955 went:0.03351644485287816 back:0.032358406609281 regard:0.03073407747799069 feet:0.02852138506231652 down:0.026379903432040268 owing:0.02466642634685871 due:0.023695193974505355 go:0.022910973192184297 reference:0.020802802907016128 came:0.019883741951819873 sent:0.019874244915639484 attention:0.019565955494145405 come:0.01885185084678811 given:0.018792390567602263 it:0.017366961307524745 :0.4281354501879983 +that:0.060700542073233096 and:0.04328632489224686 it.:0.02723853621836393 :0.026345389296710778 them.:0.018695410767699476 as:0.011636107843679239 ?:0.010693006722459765 even:0.010342388569473551 but:0.00942908727814984 us.:0.008043216205392594 it:0.00797552880141223 him.:0.007519423872163117 time.:0.006753249376274514 what:0.0052862130452222275 I:0.005225393518402215 you.:0.005211926495887789 country.:0.005184452924046337 day.:0.005138331118569488 law.:0.005107839085057561 :0.7191876318955555 +;:0.027253807067969798 me,:0.025386189039712893 it,:0.019486949244540273 him,:0.01442890751640384 up:0.01351291627347926 them,:0.012586087652007584 me:0.012071058911561171 him:0.011677555222907513 in:0.010553917042809413 time,:0.007719577661678972 up,:0.006630640963613527 her,:0.005860055962437541 you:0.005849453238082238 it:0.005735069951165533 them:0.0056398269282520695 down:0.005504147064783286 and:0.005302487226794495 ,:0.005224139305689998 time:0.005184399213422602 :0.793392814512688 +which:0.10791366919002618 have:0.09994238910770892 and:0.09881602929382236 had:0.09751441319111384 has:0.07725814459038782 that:0.05225473907221519 the:0.03802899407862647 It:0.03482622080325029 who:0.032390999511382454 he:0.030607532381372052 it:0.027292315398677214 a:0.027072497305155346 there:0.026252527747801284 to:0.020672966186021616 this:0.016063807277586842 what:0.01605930257080394 He:0.015386833166880838 as:0.013945706966539224 This:0.013683066690855537 :0.1530178454697726 +and:0.14062873602646742 them:0.02824947205271327 or:0.02823718691935732 not:0.02709449432270817 be:0.0225738111348027 it:0.021444545509648527 is:0.019980507695353446 but:0.01931359123526511 him:0.016273031487228484 do:0.015964721358539914 was:0.015056165515369833 done:0.015028979624818585 are:0.014388062650108764 that:0.012960214803964693 made:0.012393944537098045 well:0.011657399002442382 now:0.011468533134427339 out:0.011147201747929799 thereunder:0.010167172677074166 :0.5449722285646821 +of:0.2553971687234336 in:0.0640603733844757 and:0.06336735094173922 to:0.06138058202916268 that:0.06034975784288284 on:0.04599238366729311 with:0.0446105502002114 for:0.041652449292197254 by:0.038552842206314906 from:0.034155878863399984 In:0.0300964904711158 upon:0.02807281101201046 all:0.02791693498320658 is:0.02719696513258872 but:0.015913864959551608 as:0.01261193969620344 at:0.012538267435994756 or:0.010336456318583983 was:0.010170843156569897 :0.11462608968306404 +as:0.06931392982974462 according:0.052071562389565784 up:0.0511867300210483 and:0.040371568633051955 went:0.03351644485287816 back:0.032358406609281 regard:0.03073407747799069 feet:0.02852138506231652 down:0.026379903432040268 owing:0.02466642634685871 due:0.023695193974505355 go:0.022910973192184297 reference:0.020802802907016128 came:0.019883741951819873 sent:0.019874244915639484 attention:0.019565955494145405 come:0.01885185084678811 given:0.018792390567602263 it:0.017366961307524745 :0.4281354501879983 +the:0.2625576756748577 an:0.20146580285129095 of:0.08717461200138585 for:0.06038817456995042 a:0.043995041205593596 in:0.043525198986190554 his:0.037516433289771334 their:0.028115709212319717 and:0.025689655957336695 The:0.02345692189951877 to:0.017450758121747074 tho:0.01542485980467685 no:0.012240421627318483 with:0.011860656648075608 from:0.011383172592005572 by:0.010610018942703423 In:0.01014790571704562 its:0.009753359217176382 any:0.008407086208792481 :0.0778365354722429 +State:0.04288947042886689 state:0.03864812398099199 line:0.035611683105495694 city:0.03192190559607851 County:0.02824834726750477 day:0.021668429981441382 county:0.019335932211867548 corner:0.018061881249617807 side:0.01731703690249909 out:0.016122362114940534 City:0.01578186734777594 District:0.015298163491214578 piece:0.015204915610279082 part:0.01452355526839506 sum:0.013014393338039667 Bank:0.011405199500341986 name:0.0110365642354332 that:0.010976157640929192 and:0.010925333647960406 :0.6110086770803267 +to:0.5007140473010472 will:0.07602902600345217 would:0.03520638908177058 could:0.02873030115867962 can:0.027637375324238555 they:0.027226828751224785 must:0.02490321827201653 and:0.024831291904175795 shall:0.024194297471443874 not:0.022017796004772945 you:0.01973754238815045 may:0.018949444426199294 should:0.0160589848315178 we:0.015576651015655982 I:0.00954915157743043 cannot:0.008779900665164231 let:0.008641292064342235 or:0.007692034092281546 might:0.0064000473409394675 :0.09612438032549654 +the:0.11784824539477469 of:0.09190721416716445 and:0.06774952275658704 in:0.05040372437479239 to:0.04403065028007988 a:0.029708123523726062 that:0.02495992521440186 more:0.02494021137759953 for:0.02014713050704719 as:0.01946964435583344 his:0.012762584328568395 The:0.012557886493774041 their:0.011714700189188961 other:0.011589148144871733 which:0.009851474858981333 In:0.009768954934603995 or:0.009522019160680158 our:0.008708829065304147 :0.008112355596743982 :0.41324765527527674 +that:0.30224696443282995 and:0.08518436837548958 if:0.07419464888516036 as:0.0566606563633685 which:0.051802941477226486 but:0.04520561429445257 when:0.03832844578227405 where:0.028027228873453207 because:0.02236174370555611 what:0.019826026339261907 If:0.01887862064640597 than:0.015275365070534924 for:0.012469398593163912 before:0.01126030064263522 until:0.009492934227077995 though:0.00811043378171814 whether:0.007692008253558715 while:0.007484369289441446 But:0.00721557663193813 :0.17728235433445286 +a:0.14895740501589927 the:0.14386781850523403 of:0.07372385764891375 and:0.05471931482913176 in:0.05058261499492328 to:0.03914831906105616 as:0.0208190573215309 an:0.016405348834577976 The:0.015652714279688507 In:0.015253256928379966 that:0.014250958391832423 his:0.013831898708130452 with:0.012872353333578085 or:0.012187450349423626 from:0.01145569178556184 for:0.01048083113649614 on:0.009850496492462611 at:0.009784126418888348 by:0.009219045940617935 :0.31593744002367297 +600:0.03719408616264095 100:0.030203433399654686 1500:0.0293495019988349 hundred:0.022210460571768776 six:0.017603137912659897 50:0.01688857133674962 300:0.01643565681013872 ten:0.015790242277033368 20:0.014676339086317656 three:0.013764417581733699 two:0.01323875779571589 their:0.012634131861834312 150:0.012525786861829038 10:0.012139997338463951 120:0.012087624468811595 four:0.011965617539493075 five:0.011680929919505152 fifty:0.011612482014184052 twenty:0.011506838726241165 :0.6754919863363895 +and:0.10927078084877831 to:0.0657706771799164 the:0.05803179423935372 was:0.05390272695110559 of:0.048035458973882665 be:0.040927976262302546 in:0.029782554182056848 is:0.02818152038767458 a:0.02353644906754051 are:0.022001274883187417 on:0.021700477746162027 were:0.019278297643657613 he:0.018430434229565126 not:0.017651848034996167 his:0.015716106017135346 been:0.015467633056487 that:0.01464805429858648 for:0.013883817313741638 or:0.013844058539938583 :0.3689380601439314 +the:0.4649947090084893 his:0.08105593108966712 a:0.056949316651412604 of:0.04902931588953605 this:0.03333602415467218 tho:0.028592055033797158 their:0.027881713751631704 The:0.023122313126520546 her:0.0197628758329665 our:0.017934802440790838 my:0.016709216285754263 and:0.014431518009935388 good:0.014133679959634111 its:0.01319232431497854 tbe:0.010398395518366643 to:0.009697400211675882 that:0.008398965982650799 in:0.008211127124422651 or:0.008105919890295677 :0.09306239572280203 +to:0.45424611335190207 will:0.14992542147280524 and:0.04630939636170367 not:0.039999919972148044 they:0.03135082747064133 you:0.029184293727320676 I:0.026975493943258162 we:0.024698003910651085 would:0.02303280160956449 can:0.01936976293676757 who:0.014639237035711423 should:0.01410062233082548 must:0.013529353041762995 shall:0.01336231448089225 may:0.01070019611632363 could:0.009558385409628768 We:0.008243053200014349 cannot:0.007700330178093954 They:0.00711389298761696 :0.05496058046236787 +to:0.2614854506253427 will:0.14911166928651368 may:0.115517847025574 should:0.0727120919736864 shall:0.06169498713779484 would:0.05453229032552429 can:0.05070781697089904 could:0.03808701111142 must:0.03657200356419511 not:0.03644109412385816 might:0.020443814701108544 cannot:0.017125835855604968 and:0.00935865600680775 it:0.005419013064852243 that:0.004791605019604728 now:0.0036960595045769837 which:0.00356805448554378 also:0.003322986390607421 never:0.0032272750717066527 :0.05118443775477873 +to:0.09864282010030183 the:0.08375297126946753 of:0.07074571151673052 and:0.06779046829403 a:0.02766650927741597 in:0.021670314456411932 at:0.021392828982420006 for:0.01627599403114278 is:0.015107338441904122 he:0.014818877918256685 was:0.013808540905081488 by:0.013132601340090633 it:0.012796195965848819 I:0.012723560421513859 :0.0121914922721236 not:0.011777366450725432 .:0.011011346691779235 that:0.01092359583028988 with:0.01073896800850032 :0.4520324978259654 +the:0.0759958890593375 Main:0.05225962453654274 Third:0.03756356463895297 said:0.03733566954640929 Wall:0.02789565787488268 Sixth:0.025034306412115726 Market:0.023323654978267324 High:0.022780549276370875 Water:0.018517443293589224 Seventh:0.018362558052501216 Second:0.01819612164083284 West:0.015726589189545677 Front:0.014752119768709923 Franklin:0.014544952249333361 Fourteenth:0.013802191912553814 Fourth:0.01310728501996703 of:0.013054301329259483 Fifth:0.012998706771006348 Pine:0.012739074979936585 :0.5310097394698854 +of:0.22974673907398302 in:0.17661226493437765 any:0.06580516643078425 for:0.055488691972757624 that:0.055448064484727874 to:0.051836205480748625 with:0.04621000172709388 and:0.044416192352905934 by:0.04091662382701979 In:0.036617500687848144 no:0.02669715254525877 upon:0.018340883773915975 at:0.016004984584919998 or:0.015921283154002666 all:0.013980096680891107 under:0.010867128941623902 on:0.010411822509353795 from:0.010343001948166 as:0.009185551895498493 :0.06415064299412249 +and:0.14772471595296136 of:0.048417425836986536 fact:0.04048491624377705 to:0.03947855431696385 all:0.03164802383161538 know:0.02716569006099382 for:0.025402650130034603 but:0.021386466476376823 see:0.018711374681926813 in:0.018606820728431988 is:0.01765350315846888 say:0.016812483104854975 believe:0.0164668132495089 you:0.016144759358273364 him:0.014993502115707633 said:0.014799419955067469 so:0.012921733595316643 me:0.012886973972008324 find:0.012885608859883504 :0.4444085643708421 +and:0.2355027734594756 that:0.09589027569190753 which:0.07033034493380191 I:0.05813640825210577 it:0.03965571312665484 he:0.03055613056301366 there:0.028572146308351736 It:0.02623100711338208 who:0.02118266600100568 had:0.019938481792758145 have:0.01929216975584601 as:0.015244655398149214 or:0.013037654519205789 1:0.012814170464377396 but:0.01123380203627235 has:0.011038985154862393 she:0.01006466323229081 what:0.009936797226164114 one:0.00958133814668199 :0.260759816823693 +I:0.09962459720282472 they:0.09258912359571363 who:0.07616751724832192 to:0.07533987394544732 we:0.06798029840701943 would:0.06239077772210838 you:0.035641699799474444 and:0.03395363679765433 We:0.03301925520203557 which:0.03066769905661578 may:0.026975448673904716 will:0.02650977601538481 should:0.02384415307054033 shall:0.023468326515310178 must:0.023439390934578683 that:0.022165565723899567 could:0.02172918930052104 not:0.021232541976721447 They:0.020983781368132753 :0.18127734744379095 +able:0.05916159043583286 and:0.05230148125378803 is:0.04938294233626629 right:0.04308458603628535 time:0.042399432235649404 not:0.04235543153285628 enough:0.04047156086619288 seemed:0.038817778458473666 began:0.036100617148375654 seems:0.035788989095529994 as:0.035776537522648366 him:0.030566030209906916 necessary:0.030227151478187567 want:0.027332911136258176 me:0.026634128780386606 order:0.026036661237056353 ready:0.02565206242212874 nothing:0.024158767668394674 them:0.022727447788775983 :0.31002389235700617 +the:0.16419225081885472 a:0.16196928293998689 and:0.10989536781696645 of:0.09796661659115735 with:0.030366396643055533 that:0.02920134490910547 by:0.025037852694497813 or:0.021780872369633317 in:0.019170527550818623 for:0.018200107830611892 from:0.017624346092613933 on:0.015992084410478554 his:0.015125270398859154 all:0.012556297230465474 are:0.012196871668294966 un-:0.012166209151149746 her:0.011817660896097695 The:0.010927135257788054 was:0.010756081216786314 :0.20205742351277806 +at:0.13066382891688946 in:0.11468423552316871 to:0.11025317516209172 the:0.057862045669606725 a:0.046445120184264464 of:0.04222921996351885 on:0.03167524008097988 In:0.03021895615962671 and:0.026053231875348363 from:0.01903014205139672 for:0.013497847264207576 :0.01164846862196813 his:0.01109631657812207 with:0.009362199470764089 was:0.00869203532388506 is:0.00800662263955826 that:0.007376356352407771 be:0.006509561416345552 will:0.006329303732420669 :0.3073660930134292 +of:0.28767355066866834 to:0.08775711267569858 in:0.08678131196995101 and:0.05160598694501188 on:0.04646139928102899 by:0.04519522654900943 for:0.044547789071328545 with:0.03396756772609607 that:0.033699232901107726 from:0.03075346596941143 at:0.027039283056790858 In:0.021061449543044047 as:0.017514234937992545 all:0.012543839382496166 upon:0.011844431150487573 is:0.00998972746569266 was:0.008814315973987914 into:0.008557199930727406 through:0.007781895704231326 :0.1254109790972375 +of:0.1702729530446801 in:0.09765500316979342 on:0.08905256123806478 to:0.07808641831174302 with:0.05150414394770458 and:0.05111581712038921 from:0.045981041720706675 that:0.04076052117408962 by:0.035993085191737224 for:0.03387292082379824 upon:0.023365452430457023 at:0.021256897500723435 In:0.02002527012428975 as:0.0134337209435556 make:0.013052061066219386 made:0.012564736732571611 give:0.012430228715845298 or:0.011859978439589363 up:0.011496016900524268 :0.1652211714035174 +;:0.01458927046758731 it,:0.007973265891266864 him:0.007834970369143835 one:0.007240974664279108 in:0.006989508095588829 and:0.006417396987522371 ,:0.006059091806132192 it:0.006014614548599763 up:0.005812344146302806 out:0.005395853159197619 them,:0.005290532062834904 him,:0.004938420268273817 city:0.004793760033506698 :0.004646491011450349 man:0.004641061555670736 country:0.0046164671969483135 feet:0.0044416267197611185 time,:0.004376787347733258 time:0.004358244018157902 :0.8825693196500423 +to:0.09864282010030183 the:0.08375297126946753 of:0.07074571151673052 and:0.06779046829403 a:0.02766650927741597 in:0.021670314456411932 at:0.021392828982420006 for:0.01627599403114278 is:0.015107338441904122 he:0.014818877918256685 was:0.013808540905081488 by:0.013132601340090633 it:0.012796195965848819 I:0.012723560421513859 :0.0121914922721236 not:0.011777366450725432 .:0.011011346691779235 that:0.01092359583028988 with:0.01073896800850032 :0.4520324978259654 +May,:0.08520914048677464 August,:0.065938639033819 March,:0.06070414618919805 January,:0.056520582939968235 February,:0.05590011145898405 October,:0.0506940773592702 April,:0.04967230912215767 June,:0.04928948935568338 December,:0.04595569342887658 July,:0.04409799528805429 November,:0.04335999575219971 Mrs.:0.033344581834598534 September,:0.031800737022123285 .:0.0228009478296755 o'clock:0.0138911294407937 and:0.013601803706506557 C.:0.011900275904307051 by:0.011806114099080856 March.:0.010764081853594619 :0.24174814789433413 +and:0.04272933871939707 which:0.02648319212428326 property:0.024448983083510206 that:0.02329708800005093 it:0.019845875944455436 State:0.01834667364685213 land:0.014408715967424886 said:0.012941283741549011 provided:0.011871405760941731 States:0.011790237827344948 court:0.011493504363702051 action:0.011416592815716066 person:0.011118670665677795 sum:0.00995298109867903 :0.009836683304005509 law:0.009290793944919648 order:0.009228947623117477 sale:0.008692630991202986 office:0.008489444662604336 :0.7033169557145654 +of:0.3723274521489533 in:0.17151076481271382 to:0.08271687782955149 by:0.04670174536921529 from:0.03591181987398093 on:0.03563027651238613 In:0.03552861122765815 that:0.026983154620705663 and:0.026794999193513264 with:0.023569879847648956 for:0.021848265857276325 at:0.016272979172227902 upon:0.009980881436719463 through:0.007308764764103855 into:0.00682301499499782 under:0.006228416821154711 as:0.005710996770659757 ot:0.005201913632016155 over:0.004919716228143024 :0.057029468886374 +the:0.09134183134598105 in:0.08914351571388124 a:0.08313870538014749 of:0.06870023601591141 to:0.0668337748088002 and:0.04170820935913463 more:0.028115658624294847 for:0.026470631337380594 In:0.023593336731412236 an:0.020413824669252557 from:0.019622839101189008 at:0.018092558212027494 his:0.016281036487663627 with:0.014515884868278804 not:0.013734253160799115 by:0.013360707701594936 is:0.012833329764273824 that:0.01275380803624609 on:0.012669690715844548 :0.3256761679658863 +.:0.11100373256956794 N.:0.06536128908741055 J.:0.04748369042408256 W.:0.03851813191974735 C.:0.038111151079225074 D.:0.03560745280113661 A.:0.035114130464726404 S.:0.03420679999987749 H.:0.030731321948432002 E.:0.024529809290133795 B.:0.022285942461000983 John:0.021234759377696463 the:0.018596955901090065 F.:0.01785848544889694 M.:0.016413752387071167 L.:0.01589283029331074 R.:0.014182068992275752 J:0.014145039555996542 L:0.013937218443469207 :0.38378543755485234 +in:0.2923519647620603 of:0.1283662316455511 the:0.09277470618309927 In:0.08551367080714778 a:0.07256293382192906 and:0.05344531291379027 are:0.036012328058452316 is:0.027421135468176257 for:0.025405382353504646 with:0.019975421149360406 from:0.016373810267116404 was:0.014546547017675273 by:0.014433276260772517 an:0.01301852479493251 The:0.008512942564915431 after:0.007735176491306068 their:0.007208670835137388 iu:0.007100816248834818 to:0.00687668603446887 :0.06936446232176925 +to:0.22853837332549462 will:0.14651787603526975 may:0.103799032492861 can:0.10308453052596096 could:0.07142877751543802 should:0.07008521863182254 would:0.060218908966719296 must:0.04897573273286858 not:0.042271224987002254 shall:0.036985040543662945 cannot:0.024899587742062416 might:0.02071082161574004 never:0.005547175823783435 it:0.004316832614098622 and:0.0037083548891121134 probably:0.0024419679098461634 also:0.0023307266738761875 hardly:0.002262226836112453 only:0.0022588485487178636 :0.01861874158955069 +the:0.26876649162613014 a:0.24618109681894473 very:0.07720051402186613 of:0.05729229404012248 this:0.045120022787573676 no:0.042010399082723034 and:0.032414292606064765 with:0.028686196405645726 in:0.02125118087944375 so:0.019697810835253328 any:0.018540625663875904 The:0.01660114316861172 is:0.016409391526578613 as:0.014297104520129585 tho:0.013698105288940788 too:0.012932701151539598 be:0.012306058409306778 that:0.011517522102943916 their:0.011301692263387994 :0.03277535680091732 +and:0.14286321023718884 of:0.06917476767196588 by:0.05657984284898513 to:0.04011939934122287 that:0.016377403021364166 from:0.015424776731265353 :0.013310907268862037 at:0.012097916182382921 for:0.011340142223458477 with:0.011089788082178451 on:0.01030627380645755 .:0.00772025120184956 was:0.006837630084286694 as:0.006083809085487724 Mrs.:0.005453061619258162 in:0.005408257415240376 said:0.0050317947105467985 or:0.0050268667746874805 which:0.0048138844426227675 :0.5539400172506888 +of:0.09129790931378902 the:0.07369883040827747 and:0.047842263382354346 in:0.04189055351593407 to:0.04045875475680249 a:0.03542341257202578 be:0.02020462051672066 for:0.01979292654746225 was:0.01760256398103379 at:0.017380150555488715 is:0.014984483003968216 with:0.014047653760730413 by:0.01374644383819499 :0.012670486581795598 In:0.01200961464556976 or:0.011563835749786333 from:0.011391516893522809 are:0.011273104484969465 that:0.010755276030689069 :0.4809655994608848 +in:0.15100824217228018 of:0.1310871033736233 to:0.08496038108110954 for:0.06466532166362847 with:0.05267929540162433 from:0.051306308400469555 by:0.047024534178240096 at:0.035195713212467665 In:0.03439182638478906 and:0.02431199995673231 upon:0.023533533774627156 on:0.020098146115786336 under:0.01584401246920626 after:0.015579405060092527 through:0.015044427902707888 that:0.00882173151047411 over:0.006921586031279294 during:0.006696120942967359 into:0.005883487407324257 :0.20394682296057032 +out:0.06099054130313656 amount:0.05013828191345747 years:0.04650603986502774 full:0.03995128807647776 matter:0.03815661143849888 number:0.037809608900315775 kind:0.030738516752309406 purpose:0.027587848857914807 time:0.02306464516081789 means:0.022677849124779898 cost:0.021573382311414518 deal:0.01971593026731276 instead:0.019110591658866426 way:0.018329562835488235 question:0.017407158861266356 right:0.01732417313264371 system:0.017171519448473085 place:0.016871059320643287 work:0.01636214559721259 :0.4575132451739428 +of:0.14857432348779803 in:0.1341775599121233 to:0.10640935401731998 In:0.0626994048565012 and:0.05765254056615733 on:0.05575144680352504 for:0.05533817024007267 is:0.043540314234219696 from:0.037556111975611484 at:0.034762550579757565 with:0.03347150938788546 was:0.030153103061397343 that:0.026839677040742874 by:0.02383392923902069 after:0.013635763327784262 Is:0.013488606392992384 during:0.013093312064377293 upon:0.012663712310642419 all:0.012535794582781189 :0.08282281591928976 +the:0.18525066456507952 of:0.09427799762208197 and:0.06932316166513802 a:0.043038850622620486 to:0.030003932037634733 be:0.026524142009177933 in:0.024524692740737722 or:0.018559611600042665 for:0.015000830122675663 is:0.01413453952595473 was:0.013746229855414823 tho:0.01336552393719412 as:0.011860026652137133 their:0.011158128227357846 all:0.010894960751065911 are:0.01048413571259831 other:0.010385717858082826 his:0.010303726809308909 The:0.009678183640908162 :0.37648494404478855 +at:0.2146853950892279 from:0.17656070344289587 of:0.0597542321511427 lots:0.030173690051481555 and:0.025836390843106908 in:0.025294065260382245 was:0.021377899989396237 .:0.02097517992410606 or:0.018387582401233126 to:0.017991186395683822 for:0.01607746044016493 do:0.015887977775806292 No.:0.014120390762634315 is:0.013925782756771959 U.:0.011099094313179705 lot:0.010242032325912219 be:0.009926806376335902 :0.009712201943990074 are:0.008709752265873616 :0.27826217549067456 +all:0.05666685887177889 of:0.05584290670578253 and:0.04895389440078002 was:0.040001748698617806 is:0.026956598077912817 it:0.026488623850149808 for:0.025432546649672157 went:0.021603957005960413 in:0.02015887691079607 them:0.01722214343934298 or:0.01716908149697764 not:0.016947818814165534 go:0.015303733142501063 are:0.01415550231132039 be:0.013102924329386827 turned:0.01277413754202343 were:0.011455376707386425 him:0.011306141491867263 passed:0.011186738145967186 :0.5362703914076107 +person:0.03732175616939382 one:0.032328910924715216 day:0.02622447419941156 on:0.015044401291506951 city:0.014163744108791669 lot:0.01305168712179125 eight:0.011818332473551381 two:0.01162085532304519 ten:0.011387826246446256 five:0.010554036928585623 man:0.01033930728504011 in:0.010178526056024047 land:0.010133179624168437 piece:0.009904171156688053 more:0.009412225277321643 county:0.009006351347029085 vein:0.00899857253779123 town:0.008902480519054477 six:0.008864716988348249 :0.7297444444212957 +the:0.11919516938815296 of:0.07230453158552728 and:0.05781056740443249 a:0.043018564803886335 to:0.031305092790907506 in:0.020848713353460488 at:0.014270110001066288 .:0.012526810245749479 :0.012413283442322082 for:0.011719122709941797 by:0.010808400946589808 or:0.010404172990115616 The:0.01003576004804544 with:0.009811868184449042 tho:0.009295902015355835 was:0.008924239095331684 that:0.008672304223433876 is:0.0085591147338948 be:0.008335143826716943 :0.5187411282106204 +not:0.17632823923745247 they:0.10357790893174984 we:0.09354017145435367 to:0.08814379799209979 you:0.0701335839524058 would:0.061402097288563905 I:0.06120926998964523 will:0.053608848983659016 who:0.034739993159920116 may:0.03198192130113796 and:0.029200927920939024 never:0.02226466330391176 We:0.020381107178641812 should:0.01966338499814047 must:0.018643486066202305 They:0.017149410098246887 shall:0.01653769066895962 cannot:0.015576231004818772 can:0.014327049208389172 :0.050590217260762384 +he:0.133810147758891 and:0.09365028948416 it:0.07425709782597635 I:0.0321614222573786 It:0.03167522838717731 be:0.027700954529495878 she:0.025676681438639992 they:0.024194450369571595 you:0.023280139667596213 that:0.01974257839224534 which:0.019569141923576585 we:0.017679604073179388 He:0.016395596632614407 who:0.01610393516049154 ho:0.011641841314296103 one:0.011499067544991196 lie:0.01018618148361642 man:0.009095970908472334 was:0.008966616007031629 :0.3917130548405981 +and:0.06751335289221745 it:0.03214763507323768 that:0.02996933670548981 made:0.025912680506811794 was:0.024879858212137708 them:0.02483832673780292 found:0.023741468686416172 is:0.019742038283836603 up:0.018268563924991495 as:0.017208879131196005 but:0.016987396373859664 place:0.01540631890801325 not:0.014800413182537648 interest:0.014778388975712216 are:0.014686505873528809 men:0.014045216801780917 or:0.013600996768689307 been:0.013264660380576153 be:0.013105198248003965 :0.5841027643331604 +the:0.5302240949335315 his:0.09663923301375461 her:0.027048853985476597 a:0.026200728920163143 this:0.026194769784332838 tho:0.025515097910153287 their:0.017711197311235913 my:0.01667727360474332 boarding:0.016336147936068707 school:0.013674619342666873 our:0.013221634086666921 of:0.011836236547855428 public:0.01018513763153586 tbe:0.01016846356937792 and:0.009868149342515713 your:0.009753736814115567 that:0.009291604466481888 same:0.009173365936453156 its:0.009029579809096988 :0.11025007505377375 +of:0.40246641301133823 in:0.17045312051687717 to:0.08797276465268795 from:0.05023633814538686 on:0.038887791401689784 by:0.03226248889980486 In:0.02551174678116553 at:0.023673754585067475 for:0.01714318183168438 with:0.017076285859931373 that:0.01636356013495779 into:0.014285892877150418 and:0.013162801659495675 over:0.011009718687178854 through:0.008510245650594345 across:0.008251018131409901 upon:0.007618891666833427 between:0.005860544459904916 within:0.005803886842792476 :0.04244955420404862 +for:0.08932488386258847 to:0.07883711857969108 not:0.05168671497802611 found:0.051209676500677204 and:0.031001550681773 do:0.03031014338420992 with:0.02453737523454512 of:0.023462071500167245 is:0.02232122460790775 made:0.02158095662154514 given:0.02058806838908243 from:0.02052381666009871 in:0.02033423210560929 give:0.020116699633630115 find:0.017740991221483853 as:0.01754070107046574 confine:0.017311589018725346 upon:0.016308288378997247 make:0.015628161887374682 :0.4086357356834015 +Washing¬:0.09196393265050892 a:0.08932356540493287 Washing-:0.08202952696865898 per:0.05287068329134418 Bos-:0.0337204605439638 to:0.02032183787186468 the:0.017306588976998032 cot-:0.017040964767882586 :0.01388923751174248 Charles-:0.013232852207686864 Washing:0.009857698345213758 A:0.00965989873532161 of:0.007905996828060416 and:0.0076552383239123275 in:0.00463823076433974 1:0.004629662269288059 I:0.00444493951169033 .:0.003758285739391887 thence:0.003042420940208873 :0.5117079783469896 +to:0.16757524693281775 the:0.15343241719101297 and:0.11021027834630691 of:0.08897782733642005 I:0.048730343601595366 not:0.04318225785059371 we:0.03622954789657136 We:0.028336027653165598 The:0.025947138269379846 will:0.022617141321946137 can:0.01741492261707629 no:0.014770157713131143 could:0.014378787886239698 they:0.014221282071741812 you:0.013986065461444578 or:0.013583214241846943 an:0.012770781017845276 tho:0.012073833891048116 so:0.01121052630547887 :0.14935220239433755 +the:0.12811693717196343 of:0.10883290111578008 in:0.06446349320239755 on:0.05895681854170523 and:0.05892321981225625 to:0.04757090757175383 from:0.03898385638929797 a:0.031019899588646482 for:0.028951023148483294 at:0.027265729844063984 by:0.01919575270552557 In:0.015444691268000878 :0.013756004831574239 with:0.012638156244210334 that:0.010851380341006701 was:0.009694078190837058 his:0.008959772934488054 tho:0.00805154843357474 said:0.007487436699158438 :0.2998363919652759 +of:0.014145542906155712 the:0.009848499127313774 :0.009100818200601001 near-:0.006351207684837955 on-:0.005856399891593945 and:0.005250268649098147 -:0.0049305480679442066 fami-:0.004168515990836338 was:0.0036739716221502487 her:0.0036108424467612586 I:0.0034939359566322076 hard-:0.003400743742413146 not:0.00337632266837461 in:0.0032780823499902047 it:0.002804536846831409 real-:0.002765512751548536 be:0.0026547337708183287 is:0.0026104137443189093 :0.0025714739911094054 :0.9051076295906706 +of:0.2883563386779724 to:0.13933479040362395 in:0.09299185353664313 at:0.06978032106864257 from:0.03718965137232436 on:0.03627268317042693 and:0.027243237145173915 :0.02327636819573088 for:0.020153999797332907 with:0.019775742310771543 the:0.0173062060991737 In:0.01395051551591913 by:0.012313830130774897 .:0.005122874373836787 On:0.004353886881672762 or:0.0035197015372370106 ot:0.0035039037057059616 &:0.0033528758070035347 about:0.0033460669751546957 :0.17785515329487891 +the:0.49382205386202005 a:0.1633799687363223 and:0.034527341262903403 tho:0.025154173863211553 The:0.025139400612252782 of:0.024485583143577804 every:0.019977099339228626 to:0.018330508496482857 his:0.016784512529907175 this:0.016544093303704394 their:0.013686026699247728 tbe:0.009940590486983163 Republican:0.009467998126926525 an:0.009199670175456979 our:0.009176576327281336 great:0.00870319434866886 any:0.0077224475237733 that:0.0076437111784594 Democratic:0.007582396998248626 :0.07773265298534317 +to:0.5733598886303802 the:0.06351310798508421 a:0.055432275737367726 of:0.03742207142018459 his:0.03281573255988969 will:0.023654998811764964 and:0.022195993622886538 would:0.020704681223883373 could:0.014227468880129487 not:0.014042877755900646 can:0.013531051647972855 should:0.010385007949032332 their:0.009001646213479838 must:0.007990547490992083 her:0.007664756489050322 this:0.00739097835846261 that:0.006505084549764727 in:0.005688479864085984 may:0.005667867516637044 :0.06780548329305075 +hundred:0.13250849730896214 one:0.0889654652721077 up:0.013784912919069747 hour:0.012603885065369635 week:0.011423021606453624 year:0.01059537177733752 street:0.010527799088232629 dred:0.010277500167079606 two:0.010260014280130705 years:0.01010876393115847 dollars:0.009485184495146255 feet:0.008873812443993436 day:0.008866486869461909 four:0.00715993320610659 three:0.007127436645849406 wife:0.006347134658834185 long:0.006151040986558849 due:0.005971837091450065 six:0.0059438678205950375 :0.6220180343661025 +that:0.06732750144879696 :0.0426850607792169 and:0.02687306036798827 it.:0.02232710990293501 as:0.0220738797044903 but:0.01765612586080638 which:0.015020200123819282 of:0.014818061666759488 them.:0.011729205138949015 country.:0.009842087888966452 for:0.00858676351306735 him.:0.00795092224497126 in:0.007683674639905573 time.:0.007624505028224438 If:0.007552058323718399 people.:0.007155287964478299 day.:0.006983106361930016 law.:0.0069143996924534 if:0.006856464147296052 :0.6813405252012272 +of:0.2453129656680758 in:0.1116435377594878 to:0.08271627825108242 on:0.04699808371710243 with:0.045351976018872864 and:0.03955237119495797 for:0.03790650168656045 from:0.03138133569972004 at:0.030403366359705964 that:0.027635317859379508 In:0.02678529139368366 by:0.021207933562391257 is:0.01894760256839627 all:0.01801848755086736 was:0.013872096421838112 upon:0.012724183400454756 up:0.011917563855785147 as:0.011575585980287318 but:0.008378806103834674 :0.15667071494751622 +the:0.40178642125778147 his:0.07821632424285159 of:0.06469133291558263 a:0.05165628340360638 this:0.0417789859840542 their:0.032480672145583527 to:0.028513400859648146 and:0.02778921346052038 my:0.024960807765533978 our:0.015026345399934 her:0.014989255494133845 tho:0.013439928033790165 its:0.012914510996220326 in:0.012093057611810608 same:0.010459636648927174 for:0.009305570719087865 your:0.008961728950888748 own:0.007812276577691182 that:0.0073556840460051705 :0.13476856348634866 +:0.10712423440106131 it.:0.017669598645576767 .:0.015036657355110651 them.:0.013054746536793808 day.:0.008382504468453098 country.:0.008357794782317818 time.:0.00812787195616298 of:0.007341236011837582 year.:0.007333437992579748 city.:0.006538712448533113 him.:0.00595640787028414 people.:0.005072351052279561 work.:0.0050199087641843235 States.:0.004933725910072414 years.:0.004886688409379536 law.:0.004645998744703113 week.:0.004628437378128916 place.:0.004619287485813481 made.:0.004250031934434552 :0.7560203678522931 +to:0.05617927601811059 and:0.055857379594185866 a:0.04610299447961908 of:0.04311917197173289 the:0.04167861348375637 his:0.034614079705889804 in:0.03276318429539643 be:0.029014547475027838 was:0.028808694084546355 for:0.024962989139820306 her:0.024614875836869717 at:0.021717397289690223 is:0.013904713177539323 that:0.011446009092052447 I:0.010950127104858447 were:0.01025522070849761 their:0.01021386542674251 he:0.010101323769541735 In:0.009561998989780987 :0.48313353835634143 +one:0.1028303141280697 part:0.05963429477052991 out:0.04766456937681193 some:0.031418679026461914 members:0.030764490253327767 side:0.029940657362655835 portion:0.022063658796890564 office:0.020457735219956013 member:0.019726706386316174 end:0.019666887540649894 tion:0.018667441728710307 parts:0.016814747270460957 people:0.014112771422418794 all:0.014072739582212475 any:0.013183573287639892 One:0.013083578354183906 that:0.013024335602903442 account:0.012482348155001894 many:0.012077825070275192 :0.48731264666452345 +of:0.24879856172318188 in:0.15178738103999734 to:0.12259270632025115 for:0.06064254441484448 at:0.05132530388998841 by:0.045016141607900725 on:0.03481348419916957 In:0.03216809662204631 from:0.027884810712174544 with:0.027116191291887855 and:0.024904389530419572 that:0.020845557178153527 under:0.01244688238172149 upon:0.01160174482486979 into:0.011571019219764863 as:0.010860199415442987 over:0.010084869228463989 against:0.009418556032129285 through:0.008727252676975907 :0.07639430769061632 +and:0.09756556368541265 was:0.05426276517937397 is:0.03866664491042744 up:0.02568624008661788 it:0.024967480530237875 made:0.021983496168589956 put:0.021728272405609952 placed:0.021433399872469706 that:0.020699896774439272 are:0.01933805732185307 them:0.019230578399337284 him:0.018697869349579923 be:0.017987018805625865 but:0.017054981134282398 were:0.016928399532571015 as:0.01666685808038748 engaged:0.01649642158281899 found:0.01526160066577768 out:0.014987717957962178 :0.49935673755662546 +and:0.07359963406644195 be:0.052667135004264946 to:0.04483536256874564 of:0.043448293679263235 the:0.03579172892628988 in:0.028005289969665195 was:0.026700397492138477 is:0.024892551934152005 re-:0.024162182625676702 he:0.024086629517294657 are:0.02098604388819216 from:0.020307931541148256 a:0.018606881911690538 or:0.018077853608073062 for:0.017195224169077532 been:0.01615904189338184 I:0.015254891559368164 :0.015184018660626356 which:0.015016145996292442 :0.464022760988217 +and:0.03868242960999506 as:0.031124813427855922 went:0.02352509775927722 him:0.02196555539050794 them:0.018760608639018784 up:0.017985449426794205 is:0.017894175620344187 go:0.017174904667157563 able:0.016756848979943888 going:0.014481672239490295 it:0.014128375989346808 was:0.013277058274565138 time:0.013249953793837373 not:0.012469887553778763 began:0.012465717758716884 way:0.012105610030480113 back:0.012090864562211581 right:0.011941707822828511 amounted:0.011564315359310868 :0.667354953094539 +miles:0.0929395841931523 feet:0.04990253141146419 and:0.0373082458760115 street:0.0308080046604998 ranging:0.0203396927052531 running:0.018776227057563186 up:0.018686996423294418 down:0.016026466881315416 came:0.015282841064474 line:0.014788056907082047 mile:0.014664479293812899 away:0.013697171665713955 thence:0.012728149136896431 distance:0.012591444448272827 south:0.012338147007607022 range:0.011838401480739068 returned:0.011700240379088197 year:0.011231729730514194 years:0.011153507028016029 :0.5721980826492294 +as:0.18736615475650764 and:0.12373350242231597 even:0.09126027484738618 al-:0.06179919908987757 that:0.04688150044963538 and,:0.026575518695709642 but:0.018563499240590045 or:0.016627033990867037 which,:0.01517111960805591 that,:0.013470945695742212 And:0.013228006667463753 al¬:0.01202047192551646 ;:0.011426496273989903 al­:0.011383945150745893 there:0.008121403432217478 than:0.00776178631742583 it,:0.007138577977836721 for:0.0066878393625483985 them,:0.006390691545889601 :0.31339203254967835 +be:0.09243701028769384 and:0.08815448875286415 the:0.08062197219686701 was:0.062435136531197095 a:0.05527464919797291 had:0.0459756406047213 to:0.045330636978920896 not:0.04008469866867182 has:0.03937436706069117 have:0.03922675498744849 been:0.0342143813096677 are:0.03298678539178051 is:0.032164436768573855 he:0.02948520266322749 were:0.02852518452479252 of:0.022137668768841563 his:0.01867710449902032 The:0.015663992415885952 will:0.015378766441474708 :0.18085112194968672 +10:0.07498974395355282 6:0.06856556761421972 ten:0.06177865991225434 six:0.06164432026472159 50:0.05695555165136416 five:0.04951250177054757 5:0.04854594697298868 20:0.04779890544978534 25:0.03489656283339066 cents:0.027467503385499747 seven:0.027042991530725608 7:0.02497564427741856 4:0.02476964369643232 8:0.02385920271994795 15:0.02286816690137756 30:0.022826939945879397 one:0.022516174837686306 100:0.02229220087151804 three:0.021544772862381458 :0.25414899854830814 +for:0.19475038278186266 or:0.13003516368089585 about:0.1222939002324805 of:0.08561567013753364 last:0.07676451371177721 past:0.06388476985843794 than:0.052705146398470085 and:0.0472710676981615 the:0.03731666900947169 in:0.021609407302889603 within:0.021557707269811745 nearly:0.021395738886331117 to:0.01994441825761343 over:0.017111801111260625 containing:0.012157090576674995 For:0.012138564999330421 next:0.010975997869403443 only:0.009064709258337762 aged:0.008677826817226734 :0.03372945414202907 +that:0.11865283224955403 as:0.09101437719593362 and:0.05788531306035 but:0.04116301598466624 No.:0.036825632645744365 when:0.035171406804470555 what:0.024434922842992125 which:0.02424479898493085 if:0.017843220377957145 after:0.01672150835137537 :0.015533859778461131 of:0.015530970811262599 No:0.015151348635108771 the:0.014820031038117567 When:0.014604234858570316 If:0.014359515765783365 I:0.014285512675055557 years:0.01385450153425727 than:0.012204899249273994 :0.40469809715613514 +the:0.09684081064840576 and:0.06551335624548284 of:0.05146145169206151 from:0.049520598669154245 a:0.045427902131977435 to:0.0370403239153822 be:0.035669151526387034 was:0.030489628475080553 is:0.026635804908522978 in:0.023878514238638158 are:0.018513936943033917 not:0.017945708099223703 or:0.017556265685966497 been:0.014265228721347686 at:0.013857211504087178 he:0.013733215789660087 were:0.012396679125422956 I:0.012347944480187516 for:0.012197989992860347 :0.4037082772071174 +the:0.08729735206031883 of:0.057822895109519254 and:0.05282437059509106 to:0.05271528994970048 in:0.025005230356830034 was:0.02313758335288352 Mr.:0.018553494963266862 that:0.01820635784046301 is:0.016752125728073674 .:0.01643381756196746 be:0.014965395965890884 said:0.01489997641030778 be-:0.01462320872564181 Mrs.:0.014038202396430435 :0.01361503189801993 a:0.013101313847420675 for:0.012846021701111578 he:0.012299760260988467 his:0.012038141318686656 :0.5078244299573876 +that:0.23011683602319313 and:0.09063179368046492 when:0.0767147297272939 which:0.07640297092813808 as:0.0623803176954954 but:0.04482673879435248 where:0.04364496377060871 if:0.026136249058754293 because:0.019522988890190707 whom:0.018323934266141886 time:0.017315009140174906 until:0.017043885379439436 while:0.01659902087280578 When:0.01544114498985638 before:0.014624381510177005 what:0.014416351037299732 said:0.014005560678740338 But:0.012820254757860576 Then:0.011699672440306742 :0.17633319635870562 +the:0.10816309531156124 and:0.08397456210607687 of:0.07637791397387966 to:0.05127394737102936 on:0.033909586560743145 in:0.02402710195585321 or:0.02253194961434497 that:0.020332474169254218 said:0.020331573506722374 :0.01752653510650614 as:0.014910527007921151 by:0.014198835984460088 for:0.01285370274775243 .:0.012774864754131709 was:0.012196154051657002 which:0.010662818622479319 is:0.009726787573378184 Mrs.:0.009586289222091298 be:0.009101991094977198 :0.43453928926518043 +of:0.13917146145420697 in:0.09017536636107427 and:0.0820741366481696 with:0.06842278274206942 to:0.05753477506951965 for:0.05233480565750112 by:0.042749950214104215 such:0.04180680620441987 as:0.04072415825260824 is:0.039907492568008886 that:0.03926466833561838 was:0.033564467532931686 at:0.025759191119768335 In:0.019237944905973133 from:0.019098128667011792 have:0.017785295236003165 be:0.017305266611436346 but:0.013799191441926574 on:0.012294781883950815 :0.14598932909369755 +the:0.1445252289063325 of:0.11709645923176298 a:0.04758702161954861 east:0.04192681751591349 hundred:0.04048557918417808 their:0.035975625356407796 north:0.03479710906979194 and:0.03407999744497037 on:0.029323323223777554 in:0.025748379623446848 or:0.02169531857372964 south:0.021577110283065238 west:0.019808171778383798 his:0.017315219254476537 two:0.01673824297510618 by:0.016730918275385708 our:0.015799143169241626 to:0.014744225583375736 eight:0.013797880943822012 :0.2892482279872834 +it:0.1559622243675163 It:0.08728451051768386 there:0.07607925895626716 and:0.05728253228372171 which:0.05565787144648829 that:0.04281233060676907 they:0.041188625254281554 he:0.038054063563270325 I:0.024138554066638385 who:0.018310559195373936 There:0.01651866699004309 you:0.014407216044184887 as:0.011883094565108014 mortgage:0.010176283577293714 this:0.009692637953303978 He:0.008555730541283425 she:0.008555479922333683 This:0.008523935219995369 They:0.007827669765537419 :0.3060887551629058 +the:0.4071374189315913 and:0.06449181461132415 of:0.02892866618288876 in:0.028670005984162618 The:0.02603617389223924 tho:0.024993820467459137 a:0.023579040051412606 to:0.01755553213771617 on:0.014626070241060114 by:0.013447843485786471 or:0.012794166593089693 tbe:0.012024509152999897 :0.010353482361299817 that:0.009291482237329618 In:0.007938246807075932 from:0.007526799010378873 other:0.007469196869028889 all:0.006409533041696086 for:0.00626887758057738 :0.26945732036088327 +I:0.16047425347236594 he:0.13817071558328534 it:0.07126021629958243 and:0.05555324934178675 they:0.04577102761966317 which:0.044612942449670144 that:0.044324024680844315 she:0.03773219464623796 who:0.03514985080111079 we:0.03308780155337634 It:0.02410402358930138 He:0.022685718878376896 one:0.02144356180728363 1:0.01557574646296525 but:0.014083586107021224 be:0.012833294259246125 this:0.011691739768195727 you:0.010951910801129906 ho:0.010250080497204592 :0.18924406138135205 +the:0.12108771560296722 of:0.06040168576140487 a:0.05905566284188518 and:0.0556505236839017 in:0.041711259610235946 to:0.03919938453748343 for:0.030301261793769203 was:0.017610658575403643 :0.016188176343127855 as:0.013784375399538978 or:0.01328646733630633 are:0.01307840996645836 be:0.012103166861265384 by:0.011866445581665783 on:0.011770955956401406 with:0.011746783281346321 In:0.011465027047526059 is:0.011413051094228912 were:0.010936423127118771 :0.43634256559796464 +and:0.051654636516201016 made:0.051015454799921624 or:0.024674408513783483 that:0.016062835335927065 him:0.01565924413931051 followed:0.01563124550437536 owned:0.015583321950137187 ed:0.014866750499448756 accompanied:0.014614648987466283 it:0.013626457525371337 taken:0.013108391888807197 them:0.012651103019890095 caused:0.011867361447385745 up:0.011657883035474385 done:0.011150870541727875 only:0.010691704012969913 given:0.010651579286736641 occupied:0.010536480438065907 secured:0.01016848645023085 :0.6631271361067688 +a:0.15135350487732568 to:0.09905024493823827 the:0.09264704926823884 of:0.06893396539952346 and:0.05865914468815867 for:0.03989875121290973 at:0.02592181691092099 will:0.022308070016278457 his:0.018190522663809838 in:0.01648838738066559 with:0.015886323084848903 that:0.013726168005919906 by:0.013601056081010629 an:0.013439574235925978 :0.011358841494788866 their:0.011344877006725934 which:0.011263038681391306 be-:0.010799558393463547 not:0.010371634356335747 :0.2937574713035196 +as:0.07348237429869825 and:0.053293291927724 according:0.0479709431097652 up:0.04410375066718131 them:0.0360918361710351 regard:0.032406892412297036 come:0.031291428310290255 back:0.02891251395441225 return:0.02673975554051193 came:0.025351047659788954 returned:0.022021941716222352 it:0.01975522069512534 down:0.01933170912324385 him:0.019027828623193535 go:0.018504100610066444 went:0.017627960690307223 given:0.016230557067889343 owing:0.015689732254652238 attention:0.015375915241202635 :0.43579119992639276 +of:0.28767355066866834 to:0.08775711267569858 in:0.08678131196995101 and:0.05160598694501188 on:0.04646139928102899 by:0.04519522654900943 for:0.044547789071328545 with:0.03396756772609607 that:0.033699232901107726 from:0.03075346596941143 at:0.027039283056790858 In:0.021061449543044047 as:0.017514234937992545 all:0.012543839382496166 upon:0.011844431150487573 is:0.00998972746569266 was:0.008814315973987914 into:0.008557199930727406 through:0.007781895704231326 :0.1254109790972375 +the:0.27796776055460226 a:0.095054201703401 and:0.07673264148674516 of:0.06890961906785839 The:0.0508843256061089 to:0.019742734311893974 tho:0.018082554600497187 in:0.01688141136867632 his:0.016171311686281768 an:0.013809589399800974 on:0.013433600809510188 or:0.01270931623400194 for:0.010740984041407468 A:0.01006836701991215 at:0.010010098659700442 tbe:0.009217493174954702 as:0.008872461681714822 that:0.008632146164636945 :0.008279339913525885 :0.25280004251476956 +one:0.1028303141280697 part:0.05963429477052991 out:0.04766456937681193 some:0.031418679026461914 members:0.030764490253327767 side:0.029940657362655835 portion:0.022063658796890564 office:0.020457735219956013 member:0.019726706386316174 end:0.019666887540649894 tion:0.018667441728710307 parts:0.016814747270460957 people:0.014112771422418794 all:0.014072739582212475 any:0.013183573287639892 One:0.013083578354183906 that:0.013024335602903442 account:0.012482348155001894 many:0.012077825070275192 :0.48731264666452345 +made:0.0999812034390529 and:0.06680208263369662 caused:0.02435411478715239 shown:0.02379785223577525 up:0.023253655008919294 ed:0.02312002180398423 out:0.022293807888227747 taken:0.021988971765594088 done:0.02128782706813444 given:0.020283609421760777 paid:0.017098570970207227 owned:0.01708227903067019 that:0.01698438626809451 or:0.016145946252097726 him:0.015808363688274 followed:0.015366441255538056 appointed:0.015126279845513936 held:0.013990473525433292 approved:0.013949758860964168 :0.5102843542509091 +at:0.07015207866663638 the:0.06482135827255985 of:0.05375368084217537 and:0.05201777564442666 to:0.04585072709121329 .:0.020474705855883246 a:0.017614042237848723 on:0.015913602006719436 :0.014743744920426618 1:0.012815777758181473 2:0.010850778331668634 by:0.009804272535562339 No.:0.0089529379332058 from:0.008881064059337872 was:0.00869546611823444 for:0.008627513187002412 thence:0.007785145750770506 4:0.007496442939582833 in:0.007155519540980949 :0.5525933663075832 +to:0.5436298310461273 not:0.057390217904962175 could:0.041508688463182404 can:0.04075417282568429 will:0.03634306721966711 and:0.03457427759204605 I:0.03333999661228786 you:0.02472651830070034 we:0.020578900490051438 would:0.019927453299087287 they:0.019621926409226765 never:0.013725059721142442 cannot:0.011316096991745649 should:0.00896809581687644 who:0.008003551013639832 may:0.007660832841280813 must:0.007003015001851539 ever:0.006078374540610763 can't:0.005081406880036607 :0.05876851702979292 +the:0.7418478361499882 The:0.05931102392002437 a:0.05570906906593074 tho:0.030542534647364793 and:0.014196732542941548 tbe:0.010369715657852102 this:0.00952034273779178 of:0.008353652180202745 in:0.006521011772055823 his:0.006011881877469899 our:0.004673593575680986 to:0.00410312283217535 by:0.003905766034429235 A:0.003876992124404695 its:0.0026755695716332963 an:0.0026560548648657946 In:0.0024442427287733816 Tho:0.002238899556250306 that:0.002163528393866959 :0.027878429766298035 +he:0.18184327512012816 I:0.12098877729988883 He:0.06532667354580445 it:0.0645839831307654 and:0.057002204989515956 which:0.04557214232637586 It:0.0449255649211636 who:0.03984226297169304 she:0.03821319535197789 that:0.0215493876765946 She:0.015952535714817036 ho:0.01282745228629331 1:0.011913212263798741 lie:0.011739966544405093 man:0.011073595531658053 as:0.008624362935318455 This:0.007854954061484544 what:0.00737118649756162 bill:0.007241331096943738 :0.22455393573381163 +and:0.0706051973330193 or:0.060989682158033756 free:0.04306007262722693 come:0.03695714780070934 suffering:0.03542301162708442 away:0.02925735688907987 far:0.02642002055377815 them:0.022809318876753745 derived:0.022057672836772558 different:0.020092783722211346 taken:0.020058021839853047 not:0.019908273991583174 than:0.01923207692688529 miles:0.015755267538760068 out:0.015407977084749839 received:0.014329870221243666 it:0.014278537807341465 him:0.013554672156733078 obtained:0.01263453855665694 :0.48616849945152407 +the:0.14758139319324365 and:0.09650695447904364 of:0.06439644672661651 a:0.038945865087235444 to:0.03281444713457846 that:0.02346643394969413 The:0.023308288940496014 Mr.:0.022977641103377168 or:0.022701404561613747 I:0.021879765821533455 it:0.02137176581143954 be:0.018721237093173422 in:0.017897296968999554 he:0.016750243692262204 no:0.015597388814093017 as:0.01463575781894053 their:0.014026219803297291 which:0.013832985731725386 his:0.013673113510281526 :0.3579153497583553 +or:0.10825902242875927 and:0.10379835062698443 be:0.06042060292363245 as:0.05664138129437303 of:0.05007333863478927 to:0.04820780582953203 the:0.03940644609222368 with:0.033340472907633444 is:0.031007031362217774 such:0.028158972194436926 a:0.027026361147835024 was:0.026677933743475185 any:0.024838322818688703 by:0.024812807118838983 become:0.02379147633791516 no:0.023559949605501194 deem:0.022607064982252137 at:0.02181844169136156 than:0.0202187342658433 :0.22433548399370642 +the:0.5997203114940526 The:0.10115743596612131 of:0.040925771003092005 tho:0.028140637075421308 their:0.023698662446885673 his:0.021754374871654176 and:0.02103008403501749 its:0.017340936814662703 a:0.01413279703615657 our:0.012881582250186813 an:0.010591175621964355 tbe:0.010429575136378702 as:0.009225316864332934 my:0.008276826527897003 by:0.006978878963294172 your:0.005372019357196762 in:0.005352876878154246 Tho:0.004672710992844543 this:0.004662206035095482 :0.052655820629591135 +of:0.09129790931378902 the:0.07369883040827747 and:0.047842263382354346 in:0.04189055351593407 to:0.04045875475680249 a:0.03542341257202578 be:0.02020462051672066 for:0.01979292654746225 was:0.01760256398103379 at:0.017380150555488715 is:0.014984483003968216 with:0.014047653760730413 by:0.01374644383819499 :0.012670486581795598 In:0.01200961464556976 or:0.011563835749786333 from:0.011391516893522809 are:0.011273104484969465 that:0.010755276030689069 :0.4809655994608848 +of:0.09063712529945821 and:0.08852448902412768 is:0.049404526799964696 in:0.045585660971293705 the:0.04495389468733773 be:0.04454831534370089 to:0.042969677445719064 a:0.04173774158017255 was:0.03097948955232882 or:0.024294916821936633 with:0.020812365042643804 an:0.01897548977836433 that:0.018597764870485995 are:0.01830469182527417 for:0.017838811088339332 not:0.01698238489185441 as:0.016757925151507702 it:0.014473679357944963 more:0.012635134085745126 :0.3399859163818002 +made:0.018561560776750193 it:0.014977963925398392 in:0.01480894034071878 time:0.013505977699241356 this:0.012825154451090203 good:0.012295996079890155 him:0.011719458082180596 her:0.009919589997770562 other:0.008677449335378193 rich:0.008497261232541341 up:0.008489169779022537 and:0.008450591892475814 them:0.008116708085829143 out:0.00809165526027158 ;:0.007548473342238128 :0.007338361000049709 work:0.007330223162758403 life:0.007234525616317322 large:0.007212705124978473 :0.8033982348150992 +to:0.455750522502196 will:0.167993485514529 and:0.052310367075194986 would:0.03749847367523558 not:0.03737238335275408 shall:0.031106276853669637 should:0.016849617325488966 can:0.01587184211286371 may:0.015490736085956908 could:0.01385881357237681 must:0.012480063642078225 they:0.011809836965564691 which:0.010160461879133562 we:0.009516010082547861 who:0.00828698520617475 I:0.006791614916481327 might:0.006182441212239232 that:0.0058496896846604056 To:0.005318685707316748 :0.07850169263353753 +of:0.14363469668380446 the:0.10198961177409939 at:0.09529073147157192 to:0.0662427994046439 in:0.0602958811117711 a:0.06014562984709973 for:0.05765805236024695 and:0.03860165297239053 with:0.019916417947508015 from:0.017689611519947957 as:0.017190774525123492 by:0.015610030560621987 on:0.015425055868518755 In:0.01384133936692319 that:0.012897566329155322 :0.01005373043801529 his:0.009409996406868605 which:0.008536925147239329 an:0.007895734249731905 :0.2266737620147182 +sum:0.03352282876311118 number:0.028116684882597106 line:0.019995206059833036 city:0.01946514558931857 out:0.019275318828420953 day:0.01666865340772654 county:0.014872697538657208 amount:0.013254184849875051 Board:0.01252325449624941 town:0.012449555905674143 side:0.011663975251122375 part:0.011517157473718155 County:0.011460540331966697 state:0.011087331502382173 City:0.010878919191854432 purpose:0.01081028255427907 and:0.010297866493795984 way:0.009848747943663767 name:0.009522170936943183 :0.711769477998811 +:0.0638888884755949 it.:0.015401813667220429 .:0.009591229134170196 them.:0.009070817631711418 time.:0.00703015382639179 him.:0.006900723952665188 year.:0.006664277168129705 country.:0.006590254752819453 years.:0.0059175365073589154 day.:0.005464174798564701 city.:0.004944420972979971 States.:0.004153994411571293 water.:0.004110178378187 again.:0.004045256423761056 people.:0.003997669917429034 feet.:0.003916554877820721 work.:0.003914045731452915 life.:0.0037392527771612093 week.:0.0037384215899586245 :0.8259203350050515 +and:0.0857578816246657 well:0.042864737942618025 but:0.04202490005636084 soon:0.04013791552891422 it:0.03937618342607971 so:0.03848143691979044 just:0.03630220641937048 far:0.02829909362096232 is:0.027187684065746367 such:0.02663615786326572 same:0.019831677554423575 known:0.019238814172495313 was:0.019176515545921813 them:0.019119668352745187 long:0.017542356956555063 that:0.016997236474030283 much:0.01664005758643736 him:0.01649271888458886 are:0.016056444212696936 :0.4308363127923318 +it:0.15590291243815246 there:0.0887784025092866 It:0.07904016205387611 which:0.06936908824431676 they:0.05362226352982171 that:0.04647101454662571 and:0.04420120519214072 he:0.027952982163116303 There:0.027623278151575524 mortgage:0.023443129896555264 you:0.018859539766003214 who:0.017891862574647276 this:0.014117846301193209 I:0.01363040583752058 sale:0.011818751696880098 This:0.010767348085132659 work:0.010306262168963347 as:0.009927627839447666 They:0.008978002990569422 :0.26629791401417535 +the:0.22691732899948117 a:0.08802184652271022 of:0.071127076100696 Mr.:0.04799522100376962 and:0.04566292804382072 The:0.04076768883970393 his:0.019271322074467658 to:0.01905886948435981 tho:0.015370897402013195 in:0.015218686954930654 that:0.0135840482387608 their:0.012732793438271784 an:0.01270966366271891 :0.010339248538681428 for:0.009355127734449511 her:0.009057016664038036 or:0.00880661333171614 .:0.008741613529123643 with:0.008676998723200196 :0.31558501071308653 +the:0.22248147504694196 and:0.08205669329252342 of:0.04713964678610029 The:0.043960118690877126 a:0.03975241590912212 Mr.:0.03334975112984246 to:0.020041189959873043 his:0.018689183549877243 that:0.016625242081312108 as:0.015304031802649103 in:0.013631188824583166 be:0.013541636317612168 tho:0.012809802724393613 he:0.011683466848159024 was:0.011065147005062066 their:0.01042764214959749 or:0.010028090604313169 Mrs.:0.009126253046662869 .:0.008783083413199522 :0.35850394081729803 +turned:0.07114796015951212 down:0.041640754457631664 back:0.040861356375372804 looked:0.03931706302424235 came:0.039009058796877265 up:0.038501900072262785 it:0.03786566630850158 him:0.037351626028056945 and:0.03298622677868049 attitude:0.03242256241387459 step:0.028393794431139693 out:0.025839715031910914 much:0.0202172771516638 far:0.01930914039068918 taken:0.019069609536771538 ran:0.018684717100761722 come:0.018109080634382515 put:0.01803632048557241 look:0.017896396002394708 :0.40233977481970096 +a:0.13889444282350025 the:0.13477816173565899 of:0.0835677254888243 and:0.06811649698024284 to:0.04752024056193366 in:0.02993982108000472 that:0.020812663000546867 for:0.02046967654228282 any:0.018820855135690883 his:0.018228423980507526 their:0.017738393653154695 an:0.016457199824556665 by:0.01632342318438811 The:0.015666539981283534 in-:0.01563156578687441 from:0.01535053156953259 con-:0.015072602472899311 or:0.014986259786054428 as:0.014557991095116046 :0.2760669853169474 +of:0.2517297183864393 to:0.08974003421177018 and:0.08717690334072901 that:0.05601548534451275 in:0.05212495964198097 for:0.046268265297874846 by:0.04263822968772815 with:0.037521681991895754 all:0.03157854751696284 on:0.030415197906129714 from:0.026575967697199516 as:0.021675120623289152 is:0.021587849936317016 was:0.017045055616664945 upon:0.01634707007471931 under:0.015278381370226593 be:0.01403263972461258 which:0.014003642068025566 have:0.013922805595691895 :0.11332244396722992 +and:0.2161249314828018 the:0.1533681113074412 that:0.10011824882969578 of:0.07894092074102589 or:0.044073931427066546 for:0.03995772156111061 a:0.03636989943705711 this:0.03322655557507481 The:0.026927363225541515 their:0.016389992344141607 in:0.016220793070127696 which:0.01511255060602502 by:0.01487584032749294 his:0.01458136985767572 next:0.013849583423588507 no:0.013815471766144921 to:0.01143603135625104 as:0.011044941437972971 said:0.011026515093427575 :0.13153922713033675 +Mr.:0.1661525218439442 .:0.09329281849093311 Mrs.:0.044344623465491124 and:0.03701105278599562 C.:0.025930293406027576 S.:0.025475974980238483 John:0.025342359310498896 W.:0.02490443134279983 Dr.:0.023699611692816976 the:0.023035261825635058 J:0.016856156291028903 :0.016717651871381262 Mr:0.016689111936220438 H.:0.016464153232345298 Mrs:0.016451716069679757 D.:0.01607227782223685 P.:0.015403950844597773 A.:0.014805473357802072 J.:0.014519406232677544 :0.36583115319764925 +be:0.1400984054251394 to:0.12334253029677701 was:0.11793873207153205 is:0.0652367963279532 and:0.05875817497855306 been:0.05849307474332943 not:0.04947596577550157 of:0.04454240407037464 are:0.04357280600359012 were:0.04284437348491579 with:0.026231249530617878 in:0.024363509439955532 for:0.017673871042559235 almost:0.017541502418431627 being:0.017261033240122486 will:0.01724575785037936 by:0.016015456555462874 the:0.015980284240863247 a:0.01574230886172807 :0.08664176364221342 +the:0.4479750787379525 a:0.1917737333402612 of:0.07792173170186938 The:0.060566163794644995 and:0.03872492977790614 tho:0.025265814725417543 in:0.017251376552777743 with:0.014788084002669472 A:0.011702299342551424 by:0.010805108371385905 his:0.00855978895246167 its:0.008360142223948186 tbe:0.007385691390547937 this:0.006971743215485636 for:0.00683810366944433 their:0.006748142901775441 other:0.006527205345894337 our:0.004764521456994577 any:0.004235732019695791 :0.04183460847631586 +the:0.14747317579422697 of:0.08969960687569191 and:0.08002288809402543 to:0.04018288925517698 in:0.038069034056462545 a:0.034447851134399 his:0.026243861016754164 was:0.017504724320044556 In:0.017094479622078555 Mr.:0.015549262855704193 be:0.014889239251186716 that:0.014292727471384912 or:0.013671713673569966 by:0.013608448145710786 for:0.012621338926358095 he:0.012559565867065125 their:0.012465751620385573 is:0.012137097840243853 I:0.011430039444749974 :0.3750363047347807 +to:0.12022893700269083 and:0.09020394424291768 the:0.08587503820055309 of:0.06450042443224316 in:0.0310058468700829 a:0.017742048521183405 :0.015548046036689871 not:0.01491307651316237 that:0.014112408707955496 for:0.013734482372212283 I:0.013065769926808477 will:0.012848502316304782 at:0.012837991177321897 In:0.012628718855091186 by:0.012491091048660757 be:0.011425930130217754 is:0.0113962101007567 he:0.011342727513475473 or:0.01112522537451577 :0.4219735806571561 +that:0.0673734715689853 :0.05592266978392427 as:0.026771637585921167 and:0.024246912601742766 it.:0.023439613845015406 which:0.017912627389576316 but:0.01654380836338867 of:0.011764276812155578 them.:0.01134499289527649 If:0.010307621658359457 country.:0.009748962661239122 him.:0.008793966215357727 .:0.007995452399568032 people.:0.007591597470030506 if:0.007409860506487336 time.:0.007268080161279499 years.:0.007154702561041323 law.:0.007110556493550403 day.:0.007045028044258151 :0.6632541609828425 +and:0.05917734571267282 closing:0.04405297983259551 was:0.026323119710997635 valued:0.021005792503071843 held:0.01922887441606307 sold:0.018225285914023 2:0.017782437938973866 is:0.017552850459549643 arrived:0.01662711812741857 be:0.01645048243064216 are:0.016339673120917095 White:0.01533836240735085 not:0.015154252504664439 as:0.012706467917481812 that:0.012063629264509927 estimated:0.011864260728812118 Dated:0.0116063700277585 or:0.011444173640079769 made:0.010438189210536826 :0.6256183341318805 +a:0.5382534917127245 the:0.15299550750865581 no:0.05079374696737813 of:0.03881018699067209 any:0.02311011216021922 and:0.02309280619005667 by:0.020473909315311623 much:0.019384665048120187 to:0.017972191691679525 with:0.014916923040837703 The:0.01457472804391196 is:0.008891737370805715 some:0.007945567940734873 A:0.007466426977327111 in:0.0074508061802150615 very:0.007349658224275052 for:0.006933232055461862 tho:0.005869254729023627 that:0.005790565279015886 :0.026924482573573445 +the:0.24258473230724664 to:0.11590956779326643 and:0.08567693079838379 of:0.07997318727159164 or:0.03148062984427915 The:0.027406992078066815 his:0.0273958661508022 for:0.025685857342504836 tho:0.015311376641417811 a:0.014386272267446742 in:0.01363839840983289 by:0.012465440669764434 her:0.01209460097596345 I:0.011997201703391414 that:0.010651139411387388 with:0.0106493001260428 their:0.009070539700487924 he:0.008581477593727209 these:0.008531411841599664 :0.23550907707279678 +of:0.3029167889790875 the:0.12519921669912776 and:0.08137417156954373 for:0.07144530790588219 to:0.05101711191541228 in:0.05084716150404642 his:0.02861660278034042 their:0.01934901635412585 with:0.01751285487053036 by:0.01495611452998046 at:0.013611803297314408 about:0.011685247952952404 are:0.010428063604730371 her:0.010339738480018203 my:0.00888557325599417 In:0.008844763833743313 :0.00867250391089287 our:0.00860224419086865 a:0.008155735416107507 :0.14653997894930113 +the:0.3579290452020515 of:0.11258672404996226 their:0.09655761816028637 his:0.06336550477093428 its:0.046084567317463396 our:0.028627971680833662 and:0.02350897784665131 in:0.02251470431826495 as:0.02159434539938519 tho:0.019767011600536864 an:0.016614153242106747 a:0.01658076248847661 her:0.01635131079180486 The:0.013657954898644723 with:0.01146483192780854 to:0.011147778472340926 for:0.010792809768944015 tbe:0.008835156379597137 good:0.008513087305231926 :0.0925056843786748 +the:0.21205492934259515 a:0.19907617503598696 is:0.0826778073301015 and:0.0699622178617624 of:0.05234794788080648 no:0.05110826135028618 was:0.04101685979952059 for:0.036959528807883495 any:0.028551971964653013 in:0.028490054195841392 it:0.02541247458226867 are:0.02152750352093247 to:0.01865947159669007 The:0.018001457209448093 with:0.016584234795222776 or:0.013753495649354228 be:0.013739545807083526 very:0.013640673504020375 that:0.013007618259675722 :0.04242777150586689 +the:0.34372916544812615 a:0.12410704850861728 The:0.10688913799515622 his:0.053875643075006474 This:0.04433722677113408 this:0.04352949754585231 of:0.02715398470879397 that:0.023077730584429443 their:0.01998847981905312 tho:0.019972426071014758 and:0.01694180424872957 my:0.011820542134709412 our:0.011697186736517111 A:0.011250371977338658 whole:0.010411733826624511 great:0.009676927204677093 new:0.009488177355291779 whose:0.008910715665648727 no:0.008740948190219436 :0.09340125213305993 +have:0.16293973013069524 has:0.14430233774299822 had:0.13058742940105464 be:0.0926055448420902 was:0.08866253992534467 is:0.04989084064998608 been:0.049798939626174626 and:0.04202811122487776 ever:0.025444111027440108 were:0.01991575327904543 not:0.019466951417282188 having:0.017456757636497566 are:0.017140314566713683 it:0.015863062539124558 he:0.011734612336084442 never:0.011280834197489353 Is:0.010303024094682388 being:0.010161296550049555 as:0.009705492657765038 :0.06971231615460424 +those:0.14402919415737409 man:0.13657029162534362 men:0.09387495752838389 one:0.04587463267953668 and:0.04166292978394666 person:0.03127455082498782 woman:0.02319440783053834 people:0.021450507612932167 all:0.019364213011714062 women:0.015481043466443358 persons:0.015331351327446188 Those:0.015173442077322902 man,:0.009004014745249323 others:0.008125184484708396 girl:0.008070875851292389 many:0.005232771288675682 men,:0.005183435808418007 gentleman:0.005166404838310958 friends:0.005051834210367282 :0.34988395684700824 +the:0.406968435911675 The:0.1703513497747383 an:0.09219614245948621 of:0.05683832337562834 and:0.04730872584103916 this:0.029678469108123093 tho:0.024857217696124347 An:0.01938821511874409 that:0.019281937083937616 to:0.013425189858875024 This:0.010794034531854478 a:0.010512498432691832 for:0.010236636012927592 said:0.008735770063646823 tbe:0.0077235782140124744 or:0.007530884054980225 Tho:0.006570148041534475 Mr.:0.0064472001224463536 his:0.004888204241172907 :0.04526704005636175 +in:0.19576293349602353 of:0.18586092380289287 to:0.07467785967429318 and:0.07212131195102808 on:0.069365202683547 with:0.055172175791601434 In:0.0322176610721691 that:0.03088622624640457 by:0.026947046330788822 upon:0.024465052779313122 from:0.020590172866455425 made:0.019820100249602728 up:0.018694206873000798 for:0.016934620233301324 into:0.016019174172978996 all:0.014405558185556895 at:0.01394833387165141 as:0.010087810420787125 over:0.00992728006791684 :0.09109634923068674 +this:0.12643154599750075 his:0.10961439531222407 the:0.10919505608231977 The:0.05567702769903467 per:0.04550555295543552 her:0.04289654934152835 a:0.03663964998568297 of:0.03050037931494887 This:0.03031736010614722 His:0.02987024014609265 and:0.023342995821946943 other:0.022801243234466223 my:0.022060429250801664 their:0.021618827393509843 whose:0.018096543935807678 first:0.015835729496924533 all:0.01576645051235461 same:0.014796270377890358 that:0.014643389484410085 :0.2133903635509732 +;:0.016467371822176696 it,:0.014600666987422075 him,:0.01435845380087453 up:0.013907863376986263 him:0.010803589970894707 them,:0.010672093941676402 in:0.007908066839429132 time,:0.007552845753134016 here:0.007414526926031824 years,:0.007170147342827695 it:0.006590065868587609 up,:0.0062904972340151605 man,:0.005989399764440318 man:0.005958989888519999 Mr.:0.005903488814246419 out:0.005593395971459712 :0.005534460714393433 down:0.005299140994283814 one:0.005295902211973867 :0.8356890317766263 +the:0.33755145484010296 and:0.12498810399658768 to:0.1112173463972966 a:0.08449211093878727 The:0.03324437634317277 his:0.03153532860015573 our:0.021824152279523234 tho:0.017572993047117715 their:0.017184669738003925 I:0.017149193166237288 of:0.016572218757765683 or:0.016079005086067324 more:0.013389386685903257 who:0.012465524204729737 with:0.01223626932784934 her:0.012156375582060732 for:0.010362693214413682 would:0.010360440012929469 :0.010054935815257723 :0.08856342196603792 +the:0.11919516938815296 of:0.07230453158552728 and:0.05781056740443249 a:0.043018564803886335 to:0.031305092790907506 in:0.020848713353460488 at:0.014270110001066288 .:0.012526810245749479 :0.012413283442322082 for:0.011719122709941797 by:0.010808400946589808 or:0.010404172990115616 The:0.01003576004804544 with:0.009811868184449042 tho:0.009295902015355835 was:0.008924239095331684 that:0.008672304223433876 is:0.0085591147338948 be:0.008335143826716943 :0.5187411282106204 +the:0.1099728258027635 and:0.08412875875979353 to:0.07576224008755121 of:0.06352846661337197 be:0.028773345655979023 for:0.027405031708479063 will:0.022061719332485276 was:0.020584730083079643 are:0.018719852918806776 in:0.018285330642211346 he:0.018021275338267993 is:0.01706501486636992 or:0.016636768749805967 a:0.014825248817857344 were:0.01208715368843402 been:0.011741782253654192 that:0.0113513843683772 they:0.011076327891276036 I:0.010955032398917765 :0.4060177100225182 +was:0.12829945385213007 is:0.08401050640705646 and:0.0809074418000405 be:0.052020360022738785 were:0.04856099327098089 are:0.046450184041508844 been:0.043307911553480835 not:0.03608752846494507 it:0.029864274034047504 kept:0.025052607125780477 came:0.02188342498546431 that:0.020758959791475892 being:0.019380022123248065 them:0.018830337450964154 stay:0.017136904882280677 to:0.017116694938032348 come:0.01672508045022362 on:0.016588496745657624 had:0.01655068463715387 :0.25946813342279 +be:0.2193298877897675 was:0.09615249228249621 is:0.09521853513166705 and:0.08657001784398596 are:0.08568089428564249 been:0.06875831469693865 as:0.05419417431004342 were:0.04351507704166902 being:0.025741528063808316 so:0.020489699807069967 Is:0.018627403280535977 now:0.012143573045160422 not:0.010302015992209519 bo:0.010290750574620906 it:0.0075159463989679645 he:0.007362473751410593 they:0.005459641135328571 if:0.005259086699150679 generally:0.005208793832083368 :0.12117969403744337 +amount:0.15274902366628856 deal:0.04502286093363147 out:0.0428476285709317 point:0.042009062564716156 lack:0.040657731611129094 instead:0.039627083370049776 purpose:0.03717686063806989 number:0.03614143116782906 kind:0.035041599351160406 loss:0.0301874556345519 want:0.027772186118876177 means:0.02579813977551483 rate:0.025789147823179884 place:0.02500333579255017 plenty:0.024135630220539727 cost:0.02388517160874731 sum:0.023033211677856914 source:0.022458140021110417 piece:0.021473573104614244 :0.27819072634865233 +the:0.34807513946675117 of:0.181030019745256 and:0.05756172247981761 an:0.040854039624781846 their:0.03929176525511594 in:0.032359410935195156 or:0.028760090439983142 to:0.022938343888095358 its:0.02273532162526554 for:0.01953337386996391 with:0.018067575825724082 his:0.01729551444950375 all:0.015825519830618043 such:0.015112434956586403 this:0.01399309038763073 good:0.01357998087979336 a:0.013411300560349351 tho:0.013367184669226867 most:0.012398978706735798 :0.07280919240360594 +of:0.09129790931378902 the:0.07369883040827747 and:0.047842263382354346 in:0.04189055351593407 to:0.04045875475680249 a:0.03542341257202578 be:0.02020462051672066 for:0.01979292654746225 was:0.01760256398103379 at:0.017380150555488715 is:0.014984483003968216 with:0.014047653760730413 by:0.01374644383819499 :0.012670486581795598 In:0.01200961464556976 or:0.011563835749786333 from:0.011391516893522809 are:0.011273104484969465 that:0.010755276030689069 :0.4809655994608848 +him,:0.03727453387362959 him:0.023249798076418204 it,:0.01957361604451949 ;:0.019118660374378656 them,:0.011808014629291659 up:0.009759205739433622 her,:0.009596186208486459 time,:0.008091139913740981 in:0.00794039309774032 here:0.007817501074283287 man,:0.007162896367968276 time:0.006657847968603445 up,:0.006653232982178176 them:0.006178165655713515 and:0.0058287969239484184 years,:0.005824609718691634 me,:0.005812820856924415 out,:0.005578602497747828 years:0.005524549450674982 :0.789549428545627 +of:0.08471158294608466 the:0.0784438437743542 and:0.06720291665013167 to:0.046122408044339536 be:0.04046161143939536 in:0.027015564105553006 or:0.02435480735182264 for:0.020708581282078056 re-:0.019876814990101653 a:0.019001442367514877 was:0.017086966244810257 he:0.01604154291250958 that:0.015254506438979668 been:0.0144517087438338 are:0.013598540775756165 :0.013261930010872289 is:0.012996389654437859 their:0.012513526857303347 by:0.011245002537989195 :0.4446503128721322 +the:0.4516958339289095 a:0.17296689510099236 The:0.05889528171726509 tho:0.03246856319582689 and:0.029811305477968387 of:0.02226693296473113 A:0.016673640395116155 his:0.015560791003433222 tbe:0.013841043722684172 in:0.010415266878916226 to:0.0098469323927059 at:0.008591182659152072 or:0.005613562416915244 their:0.005455237448582986 her:0.005060676434297033 thence,:0.004969547834222852 for:0.0045265269586213675 with:0.004509907863388619 this:0.004463146645643662 :0.12136772496062712 +the:0.16748275538919097 of:0.1559691577233805 in:0.0978498831168003 and:0.08792952346258939 to:0.03447390930448941 for:0.029792700412798998 In:0.024078973957667175 that:0.016788373864530082 this:0.016283805186573342 de-:0.01447202365266245 their:0.013181970947762677 its:0.012376714286990536 or:0.011919326058760133 :0.011205585282291243 much:0.009278184222494566 tho:0.00874759701730464 as:0.0072646494801212776 great:0.007030038339817641 our:0.006936335912994253 :0.2659384923807805 +the:0.2763485994075958 and:0.08594143383540909 of:0.07186901187195756 as:0.07067339292109963 a:0.06107524440553799 his:0.04079349034479873 or:0.03172658297865149 by:0.03007216409058682 in:0.025679179777446284 with:0.021598589382621946 is:0.021296201184411237 her:0.018847685862638196 tho:0.01766513660051104 The:0.016868890690456006 was:0.015939043331378796 their:0.015135020042036663 no:0.01404035432686994 for:0.012816126869398127 that:0.012439592644016296 :0.1381742594325783 +:0.38655141526678694 Therefore,:0.04136173515174088 1901.:0.028985284599559964 .:0.019666089980190704 1902.:0.01121955258818242 Sale.:0.010357574834454531 the:0.009343810980439345 it.:0.007860870493279284 says::0.007274479583930575 defendants.:0.006526428261333134 thereof.:0.00633623663099269 ::0.006130869306953508 that:0.005846056082058903 and:0.005814247163650297 follows::0.005552798813868417 said::0.004400273125910923 them.:0.004216003547408215 Defendants.:0.0037051633364215074 —:0.003500447114752239 :0.4243506631380855 +a:0.41088385724896465 the:0.25460857994771063 of:0.034597706553512145 and:0.03339233406980774 an:0.029879575957898558 The:0.02982757412281209 very:0.027663193541095112 this:0.016954723619671368 his:0.015060024008283735 most:0.014855618546357592 in:0.014505382544189616 no:0.014136700006650772 tho:0.012508931005838345 that:0.010120731930371022 any:0.010032658944966036 to:0.009807888753883547 A:0.009004581071555013 for:0.00873489384005901 with:0.007109534819213266 :0.03531550946715976 +is:0.16864323907677395 was:0.09047749412635758 are:0.08109422503748538 and:0.07697656802012026 be:0.07563160417780872 he:0.04994381909878238 a:0.044646085743722246 I:0.04378273760609843 not:0.038390574112154796 as:0.029973747247796508 were:0.026106714378546256 who:0.02532193272055326 Is:0.024013512419454822 been:0.023568107027210718 had:0.02350007747108394 they:0.021474243535143413 it:0.02061017148674451 we:0.020341229605434195 will:0.020286926448176514 :0.09421699066055213 +:0.118226202838186 it.:0.02047144981446828 .:0.01886595595535494 purchaser.:0.01842702090761724 him.:0.010035393990161992 them.:0.009682948047992789 time.:0.00782194432330795 I:0.007729942466568464 year.:0.006886839928858126 country.:0.006653076689443044 day.:0.006431968491072169 city.:0.006198241840713532 by:0.006075442073695122 ::0.005865716253535598 Mr.:0.005393554630612939 place.:0.00520570482399784 one.:0.005186107407200407 and:0.005132638069106523 out.:0.004890433363176346 :0.7238194180849307 +and:0.09028170801185494 be:0.07822087956359496 was:0.0604322494376946 to:0.03875799823221426 been:0.03781583825357645 is:0.03554424767192397 of:0.034961410324985946 he:0.030725180805022397 were:0.02766787033135484 had:0.02522919821496135 the:0.025062736946777315 have:0.024744631581598685 are:0.02273367617647766 has:0.02153903863415162 which:0.020121609097888116 who:0.018038493709098425 I:0.01645201523010846 so:0.016103804784538968 con-:0.01599519306445885 :0.35857221992771815 +the:0.735640763893036 tho:0.030004197959553034 from:0.027666031585722332 this:0.016536719923982403 in:0.015583929087795868 The:0.014356985206976654 tbe:0.013526146708401477 of:0.013310149559716352 and:0.010241177726507508 that:0.007801883879236321 to:0.006861766504121696 a:0.006410060363619367 at:0.006004245567490231 his:0.00592755644990355 their:0.004942924246612041 its:0.0040476201817406954 In:0.002635369231370943 for:0.002521811291874138 or:0.0023562390256146315 :0.07262442160672483 +of:0.349162971991337 to:0.13123504288733204 that:0.05559058392622684 in:0.05526243876462753 with:0.03731356835950301 for:0.03673826308179412 by:0.03520063764981109 and:0.0299025609437352 all:0.02932924229741234 if:0.02341703581157475 is:0.0203961259608387 as:0.01991655552957056 If:0.01727993277079509 from:0.014795881939426698 which:0.014209405693722487 at:0.013727173074169029 In:0.012526603680413917 upon:0.01239932296766747 on:0.012386000951537619 :0.07821065171850457 +that:0.21096725926679571 and:0.15623934293760913 as:0.07924633975454849 which:0.07116440554189382 but:0.05096271591352038 if:0.03839253456271755 when:0.034417033413353365 If:0.026609450597322618 what:0.016531888366733933 where:0.013563266538015544 And:0.011562006338432816 But:0.011496705287689112 When:0.0111455103110385 because:0.009775425948144643 whom:0.009106882543345308 until:0.008592716730133494 the:0.008407966493589963 so:0.007693816552254848 of:0.007557800633947767 :0.21556693226891302 +:0.10132530864253071 .:0.01586153736849991 it.:0.012994963694550781 them.:0.009972326155771085 day.:0.006466314186158732 him.:0.005963072708890589 time.:0.005952754819220498 of:0.005834450921883061 country.:0.005314225508045209 year.:0.0049247550547799 city.:0.004072303040063511 years.:0.003997040955926161 work.:0.003880377182773483 people.:0.0033836246305601453 States.:0.0031455025043576447 place.:0.0030640999552846737 men.:0.0029656503323313246 way.:0.002952433427976742 out.:0.002933009065662241 :0.7939962498447336 +the:0.23298943505603173 of:0.11478897041916619 a:0.07658588161427655 and:0.06994666655441742 to:0.026446797148359093 or:0.021868110288023858 The:0.020733000146714673 in:0.018839900860479087 tho:0.016388133770996436 by:0.012659149867496812 that:0.01265184111056477 with:0.012013768075658491 an:0.011571449347005014 his:0.009372046619789354 :0.009113704916249393 on:0.008798840952289345 for:0.008633563483611247 at:0.008520349707347386 from:0.007960531510284755 :0.2991178585512384 +the:0.2684534001888365 of:0.1924521281472811 an:0.15595695423920464 a:0.06089480993270063 in:0.037745072442069524 and:0.03736093824368255 this:0.03543819859718378 The:0.02615991650191963 for:0.018768195029480038 some:0.01627059247998011 other:0.014885481200509747 tho:0.013950090438521592 any:0.012016803146101832 great:0.010619638838353125 An:0.010560163773463534 In:0.010102019719520672 by:0.01005528245741717 with:0.009427668239947815 such:0.009403118544219597 :0.04847952783960637 +that:0.2509585090048969 which:0.08881182984551328 if:0.07027316497290699 as:0.06508561456668735 and:0.06190291589470667 when:0.051836060131931753 where:0.04375732552357888 but:0.037022140598042375 whom:0.03430965416588371 what:0.02794002417347712 If:0.02203686351252106 because:0.018183318005097784 after:0.017855748076847498 time:0.01595589337890137 before:0.014861264015734078 though:0.014569815726977688 until:0.013683724452392987 When:0.012489711680144636 said:0.011723784677230006 :0.12574263759652785 +of:0.17122981987962838 to:0.11740886709521446 the:0.11038789354910934 and:0.05943113149376855 by:0.056556483851429716 in:0.05449506575170168 said:0.04230663210286605 :0.02218159623391258 for:0.017903088810381527 or:0.01575925540524504 at:0.015690168509608797 In:0.013915415884992477 with:0.013128137671827265 from:0.011554193256160165 .:0.008167868745655988 a:0.007487956857487813 tho:0.006884715683776038 The:0.00605696766627158 about:0.005984080871529916 :0.24247066067943263 +and:0.12266320277151903 of:0.11276881148162445 to:0.10198511497162623 in:0.04716085807898948 with:0.04679962984513328 for:0.04205670748390175 on:0.02966414996123684 as:0.02646547410454924 told:0.02499677700275832 that:0.023738683642786508 by:0.021615862034622714 than:0.021015196252076346 from:0.020253916285154522 or:0.018444708345393905 upon:0.018164491824636853 over:0.01498882616432275 all:0.013481175426774974 but:0.01267687163234307 at:0.011591160396512814 :0.2684683822940369 +the:0.6040184999494257 a:0.04706363453048317 this:0.035881758152104745 The:0.03406605944864033 tho:0.033974664075587205 and:0.024194773633983195 of:0.022236237815168168 to:0.017503453957592483 tbe:0.01689864049496248 every:0.014963408849487159 on:0.01402265187121135 his:0.013558873908791848 their:0.01164110667008098 its:0.010993000254882921 general:0.0101651799144351 our:0.01010587932984479 last:0.009989323275350554 next:0.009380437177245623 that:0.009003300012923538 :0.04933911667779863 +one:0.17896815771583502 some:0.08659644581987248 many:0.04990449165862142 all:0.0478665878503545 One:0.038096175605452455 Some:0.03552640793926947 any:0.030556472203911753 part:0.02863440842448241 out:0.0277194039896207 Many:0.0269363120854098 Most:0.02547340768335081 most:0.024353222153046517 each:0.023219256850445295 none:0.017889879874876717 that:0.01660051196194893 portion:0.013050827281407395 and:0.01196719025110212 those:0.011218763533358999 number:0.01119499011182692 :0.2932270870058063 +in:0.472503873725298 In:0.17294246970849775 of:0.07962308227437055 to:0.028430929603947337 that:0.02255733853265502 on:0.021510530159608365 and:0.020070298092272756 by:0.0169326004367801 with:0.016142505586858133 for:0.015781434079367686 at:0.01141819020174099 from:0.011204202314612983 all:0.009432563851108744 upon:0.008875948598096029 iu:0.008579601658287903 make:0.006823305651098671 made:0.006790529388508638 is:0.006586601942256487 into:0.006413491301254041 :0.05638050289337978 +the:0.30640965031597844 a:0.17729616162835618 his:0.11487960339976933 of:0.07716784813823757 to:0.05009963344318042 their:0.04333790225253194 The:0.026535535888519507 our:0.020004857491701437 my:0.019220955525302896 tho:0.01800677105306611 her:0.017052395878762797 its:0.015510442609102969 and:0.015466957027511925 with:0.012825518237676383 in:0.009970798548132627 not:0.00967272202226169 no:0.008319493269468308 this:0.007980665783386597 all:0.007378806576886257 :0.04186328091016656 +made:0.0851682395766628 and:0.0759665855822853 required:0.033354124261203676 that:0.03207792980590702 done:0.027331537243814076 him:0.023470599901815388 ed:0.02218796179041599 day:0.021307355803182913 occupied:0.020827413676199624 caused:0.020073950692184782 up:0.019230619531041205 secured:0.019094056991934845 only:0.018893368860873002 was:0.018446913391284715 taken:0.01793874658053581 allowed:0.0178953032588557 used:0.017215886722521643 given:0.017206188256799298 but:0.016801794652347303 :0.4745114234201349 +the:0.18126768217432415 of:0.07977618088041735 and:0.07265163760880113 at:0.044721163862373625 a:0.043611741685391975 in:0.03904242085937153 to:0.035338760522854444 for:0.019812725227722008 The:0.016962404908320017 on:0.01688425988366816 or:0.01555035455932878 In:0.014691295422458785 an:0.014684902153633083 was:0.014054155543173347 tho:0.013596142911084286 his:0.012717125776762555 that:0.011938085480465597 by:0.011733364986576886 be:0.01125521387618249 :0.32871038167708977 +the:0.17027190784407714 of:0.10585557835912704 and:0.07355927771906935 to:0.05486905984958157 a:0.04543746377447453 in:0.03128555052933153 be:0.028704485173100775 was:0.02350529800142253 is:0.02215549335554494 for:0.02077556258358175 his:0.01804639098945333 or:0.016335100594594944 their:0.015847999621030492 at:0.015526727957625254 been:0.011815834631173878 are:0.01139058447814694 this:0.010362020528084328 tho:0.01035635773045807 its:0.01000473355720393 :0.30289457272291764 +the:0.36040560594722365 a:0.0978285826256904 income:0.07117060225607892 The:0.04873459689355925 poll:0.029841216264479484 and:0.028302597267944162 tho:0.025598092830532406 special:0.021502941175588413 this:0.01843638007633708 new:0.01493509446859067 of:0.0141847901773663 or:0.014087003906529649 other:0.013104015579701717 one:0.012793763042384816 best:0.011249814933520903 all:0.011233157373614836 Income:0.011098516309827139 school:0.010353180816102352 license:0.010335166941567898 :0.17380488111335998 +the:0.1658230733908843 of:0.12618705367133526 their:0.07834159600629804 his:0.06494215512076411 to:0.059506934336776916 our:0.0474155156941974 an:0.03924447167568505 and:0.03652151796923704 for:0.033893188483470144 its:0.03024584798124892 your:0.027328432964547306 good:0.026902062560198493 in:0.025565926821601106 other:0.023703770175773794 this:0.023260649900650732 a:0.021368730200731757 my:0.020432192153082784 her:0.01972448204230655 The:0.01909912105961129 :0.10949327779159901 +of:0.22964321824998293 to:0.09912305400009137 on:0.06085661895369744 in:0.05886329969900613 by:0.055401498554477034 and:0.04996730882965708 that:0.047277424900361076 with:0.04082485433940692 from:0.035044118283758266 for:0.028270062564537325 at:0.025205537522160953 is:0.02166317933889379 as:0.015874388283633595 In:0.01573403233630394 upon:0.013796366526469718 which:0.010413874996148676 was:0.00930793499374523 but:0.007937092904116764 or:0.007814773993622183 :0.16598136072992956 +came:0.07263275569181875 come:0.05289889017698148 go:0.04031526313184776 brought:0.03707228710866711 taken:0.03380268326289877 and:0.030493115543320123 put:0.03029278825825518 was:0.0273507485659452 went:0.026787498358799396 it:0.02487442618272802 them:0.0245045721605879 going:0.02406957465386223 set:0.022600965455247583 looked:0.02256764616477104 made:0.020173886180700214 him:0.01982094445945629 get:0.019629936782062162 indulged:0.018644215058489445 turned:0.01721671449823831 :0.433251088305323 +of:0.24860630077948653 in:0.1929341556420662 for:0.06539667585187266 to:0.063269340607704 and:0.06253088765089349 with:0.05860645519411375 In:0.0365433987803529 by:0.03630477982532508 on:0.03396902921967964 that:0.024739900835312603 upon:0.019734344256727532 from:0.01959455641071254 all:0.012215387565370737 as:0.01202934641015115 at:0.010975701369834886 into:0.010637367537477198 up:0.010386347146936379 or:0.008233289791938008 over:0.0073615115921004315 :0.06493122353194426 +that:0.1827907093851554 when:0.15371696084755937 and:0.08730481935042333 as:0.06236297307137768 which:0.05505509567253196 but:0.03589704572236683 where:0.032739760067702996 if:0.029844274676089206 When:0.029031900759648618 Then:0.024313882767571078 said:0.023695842635645774 time:0.01871706464434108 before:0.016865536092327268 while:0.014710292178698781 then:0.014151580744986528 until:0.014134436427806898 what:0.013555794885660508 whom:0.013401085695853307 If:0.010040855629160263 :0.16667008874509315 +a:0.14098606192072424 the:0.11835291983395098 of:0.09303114422998586 and:0.0565738910100363 in:0.046662048195577906 to:0.032825507008801526 on:0.019435410934775015 that:0.017408246009528217 by:0.017311230204840787 The:0.01508198879384612 In:0.013013500989558814 with:0.012125256614078444 an:0.011713719626809881 as:0.011525052736929478 from:0.01129488306706741 was:0.009438012372726094 his:0.008165981280868814 be:0.007789282661573751 for:0.0074430541216849175 :0.3488228083866355 +of:0.05185575738893938 :0.03779620901990851 for:0.03362261778850074 to:0.03148209819166252 that:0.030947803173974935 and:0.029010952055336964 in:0.021838271273596953 as:0.017595075930453632 with:0.013251499681255817 girl.:0.011871526312460459 .:0.010622673637873017 on:0.010480395024063225 by:0.01012227402499812 made:0.009532257814637417 do:0.009438659129462538 from:0.008903889199317526 boy.:0.008570359918635266 but:0.008194687343826569 make:0.008134856223983513 :0.6357281368671128 +the:0.2621154102094518 in:0.1101108085901374 a:0.09820500314566909 of:0.087082856339251 any:0.05386279715532462 and:0.04490925149170449 In:0.03338476001330383 their:0.027243655979881497 to:0.020914529286573093 his:0.020892710320965544 some:0.01823745362852315 this:0.017206914562125433 our:0.016971348716244835 such:0.016897042311501062 on:0.016444371254291112 or:0.016205898406959535 its:0.015285717264647804 no:0.01437045373449412 tho:0.014187525770951524 :0.09447149181799908 +and:0.036163001301143326 miles:0.03426311212625663 free:0.03330978850321795 far:0.027878204138329216 away:0.027612474438655048 suffering:0.022457202217289057 him:0.01978041441012929 them:0.019452101850619567 or:0.018413834246186648 it:0.017667545223036624 taken:0.016172371544295145 come:0.015434205859242982 out:0.014632990848161971 made:0.013646733411622508 received:0.013193041403157992 feet:0.012967307522593894 came:0.012865443983456806 years:0.01262667261658779 up:0.012462096192195415 :0.6180014581638221 +the:0.11200806273886438 of:0.06832729685955227 and:0.06091746655347022 is:0.048715479983836726 all:0.042388931057871206 are:0.040081758710684534 for:0.03626021584000743 be:0.03417866216875151 was:0.032808457922033026 or:0.023307687492618086 in:0.0205491708254551 a:0.019801173360716438 were:0.01824336805216733 to:0.016857109037498718 it:0.016744599592283874 been:0.015993012010190984 his:0.015586450082505783 he:0.01531786460701879 that:0.012833302832678644 :0.34807993027179496 +the:0.19045016745146298 of:0.12344037597096921 and:0.07870799065850427 to:0.04280632593824212 a:0.03799946728924427 in:0.028502408991399473 or:0.018028345145974733 for:0.016913376774663515 The:0.01629393192252944 was:0.015994726752969955 be:0.015246039986879604 tho:0.013716732784689786 is:0.013668001151061914 that:0.01248525591030824 by:0.012293899438121918 his:0.012292896878622677 an:0.0120003384748629 their:0.010488186808302867 from:0.009914792931271047 :0.3177567387399191 +that:0.2679623925605681 and:0.17473875447269513 but:0.057929987358311716 which:0.037190018528838846 where:0.03706024247499286 if:0.03508139552128882 as:0.029370443353037907 But:0.026769814579767445 If:0.026708793281814542 when:0.023449076222347758 because:0.01572699350916326 for:0.011948092023196523 Then:0.011803463083392453 time:0.010422188943700068 That:0.009894177606575497 or:0.009603879748360232 And:0.00918441433442016 while:0.009067610354157665 then:0.008929273838106782 :0.18615898820526422 +the:0.4819262232561649 to:0.07336860704113303 an:0.048167783848343304 and:0.039705800025090054 further:0.03598705883890089 tho:0.034300921992399536 in:0.03181625690907775 The:0.02841941395186325 of:0.02075629845411732 take:0.020151999439001422 this:0.01932494233397182 no:0.018667428013021833 his:0.016282889040164176 into:0.01581902378962933 great:0.013776862672051061 their:0.01366936321022408 on:0.011283136654428528 a:0.010598055144623482 its:0.01038934000248466 :0.05458859538330959 +the:0.10785936344840133 of:0.08041832059700071 and:0.06606829444959902 a:0.05643038308012388 to:0.05535280337717975 be:0.02853289252669998 was:0.027105035006482578 in:0.0247654133565907 at:0.015793819366212335 is:0.015728651725315592 :0.013428133240815843 for:0.01204466748614453 been:0.011592220107946525 or:0.011211388204423864 are:0.011026362473945926 his:0.010811659072250212 by:0.010680387155496561 were:0.010201582804998114 from:0.00959972225656998 :0.4203489002638025 +w:0.8041084072778688 and:0.030496575516603185 that:0.004522829184287098 :0.004323755360595155 had:0.0041426900408238435 to:0.00392284096505921 have:0.003738798377866959 which:0.0032028867602269433 of:0.003106865064849677 the:0.003069743500437352 it:0.0030260149521513543 \\\\:0.0027826380714816266 for:0.0025178594698207495 I:0.002045313214686535 who:0.001987726150789888 It:0.0018576111812211365 consid-:0.001835263998373572 has:0.0018171600108405303 he:0.0016114182705348776 :0.11488360263148148 +of:0.13284907760658377 for:0.09747520055897765 to:0.06883581187734349 and:0.05704494963140354 is:0.05254401034286959 in:0.052419215691059465 with:0.04704386124577754 on:0.045244214041553044 as:0.039165766368111476 at:0.038211675533614965 made:0.032208290394969134 was:0.03187565309952757 such:0.0311577860146259 that:0.02787957701311864 by:0.02563347881660852 make:0.024088677310738462 from:0.01811657742663111 have:0.015946008978858513 be:0.01442500017645218 :0.14683516787117543 +and:0.09029865690997776 the:0.08252017074882666 of:0.058667899668452796 to:0.040642949966800096 Mr.:0.03013748999365771 a:0.024511828852983312 he:0.02253401226503985 The:0.02140141018056701 that:0.017686638458654255 in:0.01757198936423644 which:0.01714330735407244 be:0.01579188972739209 was:0.013162097814566835 it:0.012650070998785932 his:0.012298190552096652 as:0.011981679331622959 when:0.01093994885187679 or:0.01082535022946126 is:0.010659988420133678 :0.4775744303107955 +disposed:0.08166266246571594 amount:0.030116425772402557 heard:0.025612300341632567 right:0.023225338005977116 all:0.02320042066318173 complained:0.019030149815031053 be:0.017877616840395787 time:0.017288973920254937 and:0.01722706623382264 out:0.016286353359451444 set:0.01613146125814448 that:0.01609206425461542 part:0.015374657468076829 work:0.014808218017773643 spoken:0.01382651252247435 land:0.013313496006367822 sum:0.01213754677923911 thought:0.012034806222672816 line:0.011981060005804078 :0.6017728700469657 +four:0.08872514301086325 six:0.06789123401513197 ten:0.06357297252853768 eight:0.04983070042306051 three:0.04524779739634256 20:0.044132960403063554 two:0.0414759896604807 seven:0.03978834704469778 18:0.030639172544850313 50:0.030138977455963126 4:0.029645612532271284 five:0.027902144969859138 10:0.027597195321306715 40:0.025772400150943967 30:0.024853771306743874 twenty:0.024443979635820567 15:0.023329807418263838 thirty:0.02133209557016487 12:0.02002063899649103 :0.27265905961514325 +the:0.14708370451116248 and:0.0701982183161129 of:0.057522006578603166 a:0.055981228692460396 to:0.042230717968696964 was:0.02580224412154045 is:0.022562029590761888 be:0.022543712085324463 his:0.021391987975500446 as:0.02006151879521831 in:0.017969096365158334 or:0.017705121909896322 .:0.013777698156529353 at:0.013430504142799499 for:0.011156559934736847 their:0.011019958472509733 not:0.009910075202231809 tho:0.009336105451600525 by:0.009323173045766197 :0.39999433868338996 +the:0.1830644791469152 and:0.09834843828834212 of:0.09357728873231418 to:0.05658282735424789 in:0.044619340531594 a:0.04405340777071452 at:0.033273633601935824 his:0.016624547965268664 tho:0.015191503146985079 or:0.013834728136665085 an:0.0131134215160588 for:0.012771942226899567 In:0.012582226333697209 with:0.011617396806697865 from:0.01112706073327133 about:0.011040774416265622 on:0.010936298975358022 their:0.010554696152254753 her:0.010282916063187859 :0.2958030721013264 +and:0.09120211901995434 of:0.08441065723081362 the:0.07137131230388172 a:0.06567775177909824 in:0.05554035900288656 to:0.05015360939916958 is:0.02773523659019154 be:0.027542624968640732 for:0.026473340887554948 was:0.025841411868854868 with:0.02494329678899326 it:0.018533146687450333 more:0.017886998490909942 In:0.01548034273419417 which:0.014361653358492783 are:0.012652131928836114 It:0.01239627375713804 that:0.012285139562529501 be-:0.011321178971533633 :0.3331914146688761 +they:0.08608911447619484 it:0.08579232886993696 he:0.07583397070226844 which:0.06784158020223478 who:0.059207575381009854 as:0.05623500035917447 that:0.05133604768614612 I:0.05005418959366939 we:0.04649400155831014 It:0.04203305037315565 you:0.04184068507664039 and:0.038056769131201894 she:0.016915923988868303 one:0.015577772815902556 He:0.015226391928627353 man:0.010970852936472056 They:0.010126349013762468 You:0.009434610112519176 This:0.009275275479079057 :0.21065851031482608 +of:0.08951488176639259 the:0.0745599713309233 and:0.06972963593352947 to:0.054891042003429785 in:0.04871654304100486 for:0.03041978959669949 a:0.030054036622629905 with:0.02167417229384757 at:0.01861665333107224 or:0.016100258071811563 be:0.01590030650860285 was:0.014572285177104335 is:0.014041743522524937 as:0.01377930133468059 In:0.013453403724475383 that:0.013002023415990127 their:0.012575692206151717 con-:0.011311186520056781 which:0.010915970958638084 :0.4251711026404344 +the:0.14793222475984344 a:0.09036815331029677 of:0.07658400881310756 and:0.047484084013592984 to:0.03940474134710599 that:0.018851866317247185 by:0.01713223482736619 The:0.017029695928407453 in:0.014448962239065175 an:0.012657336478858434 his:0.011512308181753554 for:0.01078648110456162 be-:0.010101993896745544 A:0.009718588081290303 was:0.009250073092385793 at:0.008573320018335367 tho:0.008529085626287753 from:0.008475156605411382 be:0.008264764479275209 :0.4318949208790623 +of:0.14229027225300206 in:0.11403832118101093 with:0.07381386451909959 is:0.07353095639293197 for:0.06333777338731664 and:0.05981542792533025 was:0.054776929252279824 to:0.037749962497802284 by:0.03371550489051272 as:0.032512231912010706 In:0.026858144881173388 had:0.024655954513202138 that:0.024231853057477864 but:0.022609667045452628 on:0.0211387222281707 have:0.020794723711628525 such:0.017859490656509106 be:0.016427972598286766 at:0.016056152589476676 :0.12278607450732523 +of:0.09129790931378902 the:0.07369883040827747 and:0.047842263382354346 in:0.04189055351593407 to:0.04045875475680249 a:0.03542341257202578 be:0.02020462051672066 for:0.01979292654746225 was:0.01760256398103379 at:0.017380150555488715 is:0.014984483003968216 with:0.014047653760730413 by:0.01374644383819499 :0.012670486581795598 In:0.01200961464556976 or:0.011563835749786333 from:0.011391516893522809 are:0.011273104484969465 that:0.010755276030689069 :0.4809655994608848 +is:0.10076004156078233 not:0.05788515742067123 as:0.05535835751330564 ought:0.05249553854531973 and:0.0460383856046576 was:0.045961329097224085 seems:0.04443620805857949 are:0.03366319156962064 seemed:0.030469353854810383 it:0.02767186320131199 him:0.02346634345710175 likely:0.02337002282280986 seem:0.02101233813824275 said:0.02079893695490975 supposed:0.016136962527267675 them:0.015434103069597143 have:0.014943026152647846 order:0.01352826538315544 time:0.013289601722878509 :0.34228097334510615 +that:0.12877368706521958 and:0.10343811039022899 which:0.0800594611337696 when:0.0599498536653849 as:0.05365331218935483 to:0.05164919583107528 if:0.0270497931800979 will:0.026888923864509424 but:0.025383516994720454 where:0.02293792694881519 what:0.0207777038096785 t:0.019343962651763098 said:0.01729463067489876 would:0.015552874955014286 for:0.015152722422811573 whom:0.014651225618177431 before:0.011897529933941699 not:0.011235367786820124 If:0.010599156710423857 :0.2827110441732945 +to:0.5562553007398786 not:0.0664506809425157 and:0.05807471895360088 could:0.04373288070010033 will:0.03890845948349473 can:0.03460393830171955 you:0.023452628764408765 would:0.021872080991221055 I:0.02086752666299147 cannot:0.01627146544858396 we:0.0157215789805809 don't:0.010194667595486468 should:0.009644724919452988 may:0.009609203648460839 who:0.00920385502857757 they:0.009142604256128792 never:0.007206806852058434 didn't:0.006850839191140064 can't:0.006532952470834671 :0.0344030860687642 +of:0.2466942666969744 to:0.1144258116022614 in:0.09692703244286623 and:0.05683927908529941 for:0.050159965909345 on:0.045315085241629464 from:0.04032480108121847 by:0.03760101585548372 that:0.031549094321448305 In:0.027490593431030837 with:0.026145851736064245 at:0.024742808261204736 upon:0.019592958188982837 as:0.01451766273235556 or:0.013062239302888511 is:0.011031123727925042 all:0.009774563436732397 over:0.008976415870755814 after:0.008264029790818807 :0.11556540128471483 +the:0.2718941753866455 and:0.13519960287783 his:0.06127084543208828 of:0.06112068694201351 a:0.03601644987799377 her:0.029592731487410814 two:0.028581096781370368 their:0.02794458548841856 The:0.023204509170337003 on:0.020162823722915318 tho:0.01827215793545403 our:0.017411781440306928 all:0.015334930715430888 to:0.014725256677216423 most:0.014077399112151896 your:0.01383965014643277 other:0.011881188858061418 in:0.011556323025278505 an:0.011097923295565668 :0.17581588162707834 +J:0.11173116734249117 S:0.11049796248437331 W:0.09257710389297674 E:0.05954933865256296 M:0.05846546008918097 C:0.05705164224407674 A:0.04766207206826924 H:0.04599920020353716 T:0.044836045968470135 F:0.03989653848720636 P:0.03810191206126546 D:0.03732492130476816 R:0.03238324243699649 B:0.03225219235026045 L:0.031454154304213694 N:0.023495487708825216 K:0.018814294965417068 O:0.016879210597438923 G:0.01371412829073884 :0.08631392454693092 +the:0.35826674645370815 a:0.3435058533213391 The:0.07799078472631728 of:0.022379117887441173 very:0.022215916477193686 tho:0.020918990036202866 and:0.01972485506701467 that:0.016527810538201924 A:0.01139007573008221 this:0.009448018937659161 tbe:0.008829850846811703 all:0.008382188387351497 his:0.008078970902948998 as:0.006560297655399079 with:0.0062082371404763815 most:0.00566783333664626 by:0.005257669640832371 one:0.005246454787902605 our:0.005141113984068118 :0.03725921414240277 +he:0.25301496004079527 and:0.11396813771560099 I:0.0805483265707106 He:0.07588264302025806 she:0.04858568229290561 who:0.0373976105691208 it:0.03044958247937876 It:0.027013972153841 they:0.018772710108248547 we:0.01749143572407873 She:0.014371750173628206 which:0.014306541795307237 that:0.01414543597691322 ho:0.012555563889928503 one:0.010438726114718185 1:0.00883148892344588 :0.008749050810706224 then:0.007949985273739494 lie:0.007861164827917813 :0.1966652315387569 +of:0.21360604254922577 the:0.12449513212260739 their:0.11699351226732425 his:0.051001538674434486 other:0.0427475259366124 two:0.03166539193547682 all:0.02901705870201735 and:0.028196480301487376 a:0.02787808039703191 our:0.026409211676160973 both:0.022637351386084772 its:0.022407346301952014 in:0.01781485392665842 own:0.017703993058810544 these:0.017690804520600577 for:0.014635954927408821 foreign:0.014271248997569375 by:0.014151564951927634 said:0.013820598853971942 :0.15185630851263718 +and:0.12058360986308306 of:0.07331645870528247 to:0.07247548554435247 for:0.04343183133280367 the:0.041719108397953134 in:0.03770304506424859 or:0.02789212357919758 that:0.02594245720521893 which:0.020607044194414798 is:0.016835838167591453 was:0.01602110361691039 by:0.01578936423330142 a:0.015198586474438619 have:0.014433233795247758 with:0.01367448636974291 be-:0.013644100820935036 not:0.01337128587962385 :0.01317961882899407 as:0.01292885686751029 :0.39025236105914946 +they:0.1754512642648576 who:0.07106714930153157 we:0.06388720579354347 and:0.049077004351016786 They:0.04258842693756332 there:0.036774160899785684 men:0.03557051684042128 which:0.03112110367040644 it:0.024122964629597874 I:0.01951810516711305 people:0.017891199462204802 you:0.01764637402537191 There:0.015049085861254271 that:0.014675939671997531 We:0.01195423840093746 them:0.010515503094104739 he:0.009365130293100678 others:0.00855316948601657 but:0.008541203049320129 :0.3356302547998548 +the:0.12397170260116352 of:0.0943155434282568 and:0.04047242644896243 The:0.039121251000670806 Mr.:0.038849315117364246 that:0.03749617133485052 in:0.035552871266442694 Mrs.:0.022501402823346915 which:0.02123924194599288 a:0.01931574625006573 to:0.018732434543853364 his:0.014277305910035551 when:0.012369804522166431 :0.012284549055542177 as:0.00976422368815642 he:0.00970781880966711 for:0.00927189170209692 tho:0.009034083963245747 said:0.008744635319874062 :0.42197758026824567 +be:0.24241297065462322 was:0.1144714387368362 been:0.06908009512446289 were:0.06612931523520432 are:0.062362811346162894 is:0.050633214471231515 well:0.04308200079530371 and:0.0418183795437973 being:0.034876549794510624 it:0.01875487770743529 have:0.01829855526375788 he:0.01743359459973829 not:0.016305893980015636 had:0.015572465758593088 bo:0.013649350052804944 then:0.010679671739210457 has:0.009764626804478833 now:0.009379595203976188 them:0.008854843922337787 :0.13543974926551894 +men:0.020256044838251917 hundred:0.01867005064828198 north:0.00972024688063674 1:0.008293989284029139 street:0.007773242219017406 one:0.006771571276986576 up:0.006609985225754032 east:0.006322003405068189 feet:0.006082334040472585 in:0.006054901365299158 house:0.0056862472752023585 wife:0.005608096281370241 day:0.005433091686614833 North:0.005289170594018936 long:0.0051908843044296245 2:0.005159244041358874 ;:0.00505911292466829 Hundred:0.004899774221221406 time:0.004867951220884206 :0.8552520582664335 +the:0.12726855910616955 and:0.0892959780159441 of:0.062229337879632314 to:0.058292991969480845 in:0.037889522208997196 was:0.035486090111862774 a:0.03277831520841599 be:0.02993909980507852 is:0.021492638467572805 been:0.016319288425974923 are:0.01622912479566914 were:0.01571120940653339 at:0.013800451447349702 by:0.013390998935139781 his:0.013046404338315144 an:0.011587498063993411 he:0.010436524486303292 not:0.009967845652912184 or:0.009888058570455908 :0.37395006310419904 +a:0.591113551143498 the:0.09598660006788233 of:0.0830920931300844 very:0.030675453519418718 in:0.01993986416180506 A:0.019250209778458892 for:0.017262018979695648 with:0.01534774971303324 and:0.014637310984429648 his:0.012993925989635858 to:0.011745476199122869 at:0.010175380110669801 some:0.009457661683150494 by:0.009084062964581445 many:0.007238248420404252 The:0.006279787749447764 no:0.00627472561769827 her:0.006104020223980887 comparatively:0.005898861491046976 :0.02644299807195559 +not:0.261814334410105 is:0.15291895215751936 was:0.09688069285392281 and:0.08269244286939254 the:0.030386782388657167 are:0.02915979567580744 had:0.02405386075923546 Is:0.023760002831320803 but:0.022890262460739507 has:0.02176448428380389 have:0.01986841072791362 be:0.017441876067727267 that:0.01715471278948033 of:0.016848744054354287 were:0.016189035919598246 as:0.015429966476336406 with:0.014607130494989554 to:0.014085674624308998 by:0.009196858664148036 :0.1118559794906393 +the:0.14538285862993044 1st:0.08134507703834688 first:0.06736886768797135 a:0.055874525947905124 25th:0.04330570615268372 7th:0.03688213350850801 10th:0.035117537855034915 12th:0.03482687129394641 21st:0.032870317578004654 15th:0.03272520813383107 13th:0.02925249040911833 28th:0.028551498372195953 14th:0.027199406423118976 6th:0.026808826990102827 26th:0.025722141500643267 4th:0.024208282672405948 29th:0.02309675301622377 18th:0.02303604825841656 24th:0.022877400054659373 :0.2025480484769524 +and:0.08975380593219894 was:0.042944396709406245 made:0.031010226702017793 that:0.029627571313063452 men:0.02310976375880697 him:0.021906772809731245 them:0.020798345924465368 is:0.020766981985932815 be:0.02076585649570025 up:0.02070923663956454 held:0.01935109863026038 place:0.019289806221329222 as:0.01925798875808188 but:0.018823861586602743 been:0.017528530509130492 time:0.017291876944139674 out:0.016270545527609898 people:0.016150541431805793 engaged:0.015722594054662753 :0.5179201980654895 +it:0.06307094648757966 cut:0.05860876366740768 them:0.054928467368391326 went:0.0450597608554512 come:0.043790171661547944 him:0.03918521378575815 came:0.03899744990177706 falling:0.028724796457121574 go:0.028619201659338997 get:0.026600873233307155 take:0.022817733576412254 got:0.02156419400640434 pay:0.020425063393640124 and:0.01967875057596885 taken:0.01834622186260232 carried:0.01815692704243548 started:0.0177837646637447 cutting:0.017506125273891757 set:0.016577729221067282 :0.3985578453061521 +one:0.1028303141280697 part:0.05963429477052991 out:0.04766456937681193 some:0.031418679026461914 members:0.030764490253327767 side:0.029940657362655835 portion:0.022063658796890564 office:0.020457735219956013 member:0.019726706386316174 end:0.019666887540649894 tion:0.018667441728710307 parts:0.016814747270460957 people:0.014112771422418794 all:0.014072739582212475 any:0.013183573287639892 One:0.013083578354183906 that:0.013024335602903442 account:0.012482348155001894 many:0.012077825070275192 :0.48731264666452345 +come:0.020504145893921136 and:0.017216833546223775 came:0.016795863833180383 feet:0.016123119849635853 them:0.012950130236452626 it:0.012133258735659439 road:0.011066449113024084 him:0.010197414166205126 up:0.009921187645849358 work:0.0093561244988855 down:0.00900007047285052 go:0.008750600815476638 all:0.0076244180351379785 out:0.007422629503544563 look:0.007371534243527743 :0.007123964550406036 :0.00671513067772912 looked:0.0064209183125708835 back:0.006200507955774557 :0.7961056979139447 +at:0.15778055778949782 No.:0.0749738654823242 and:0.056532857262899285 of:0.04890580562367374 the:0.03356658043613849 lot:0.02559566579685953 block:0.01977085311069231 Range:0.019519062209269498 @:0.018432495253906344 to:0.017210266950400007 about:0.01632256953119777 June:0.015451438118257714 Mrs.:0.015101280442494999 by:0.014494164247364457 range:0.013850974457675271 Section:0.013528140186595036 from:0.013244606729599534 No:0.012383946109325285 Mr.:0.012101243421712735 :0.400233626840116 +in:0.2680707770809999 of:0.16235004328191602 to:0.13134398601163833 In:0.05505936227601213 for:0.05138206461260299 from:0.03517987028853249 and:0.03385064643126293 with:0.03267368315537219 by:0.028749045995165343 on:0.028107452854802588 at:0.023593695265272607 that:0.019646438069522362 into:0.01732866947075852 upon:0.013240293159672118 is:0.009983141177613408 all:0.008706059486358414 as:0.008206024876345275 through:0.00726786332912513 under:0.0071433167182292775 :0.05711756645879795 +was:0.19187489801364624 be:0.1603863940894247 is:0.09774032806695496 and:0.07327196201904895 been:0.0703900827388166 were:0.06281059594689237 are:0.05689672494760615 he:0.03663172454955789 has:0.025000894038011 have:0.024534100427389946 had:0.020938607887045678 being:0.01880870641090977 I:0.014807207570895795 Is:0.01208328092513769 not:0.01148707456053262 then:0.011043521579014825 He:0.010743838044938982 bo:0.00973622432642089 now:0.008444109456564906 :0.08136972440119006 +the:0.23854718638341188 of:0.1253526100118412 in:0.09468680874340624 a:0.045287277941846574 to:0.041285749940710756 and:0.032241210489935425 The:0.027713399233898813 In:0.022147643776668658 that:0.017653300263622575 for:0.017628447979223666 as:0.017162515236224907 by:0.017032752822768737 from:0.013547355653970744 tho:0.012649372996990416 with:0.012592684231247162 at:0.011102544783835365 which:0.009476000665254116 such:0.009225696740883116 or:0.007792354457476312 :0.22587508764678335 +sum:0.03352282876311118 number:0.028116684882597106 line:0.019995206059833036 city:0.01946514558931857 out:0.019275318828420953 day:0.01666865340772654 county:0.014872697538657208 amount:0.013254184849875051 Board:0.01252325449624941 town:0.012449555905674143 side:0.011663975251122375 part:0.011517157473718155 County:0.011460540331966697 state:0.011087331502382173 City:0.010878919191854432 purpose:0.01081028255427907 and:0.010297866493795984 way:0.009848747943663767 name:0.009522170936943183 :0.711769477998811 +number:0.10388284500976097 amount:0.05453522325722791 out:0.051949727773343266 plenty:0.035455833288830535 lack:0.03436544866571919 loss:0.031662119460042965 one:0.02818965896545567 full:0.027315443235600895 kind:0.02713978978085963 pounds:0.02676339858202235 means:0.02560474425571412 cost:0.024688108227441233 place:0.02466299420562181 matter:0.024476532008893073 deal:0.024198539410778742 years:0.023281528753451092 system:0.02283322066908482 want:0.02167151182757345 kinds:0.020948765165702342 :0.3653745674568759 +of:0.13574508519354653 as:0.0944432715030341 in:0.09221631056499562 by:0.07997279672031396 with:0.05266800708787099 to:0.051052472064069016 and:0.04854043911613964 such:0.0429289963350789 for:0.03933138909386891 is:0.03668413548835545 on:0.03267709332735731 was:0.0305002452251621 that:0.028962005496746508 be:0.022209075833227686 In:0.020165531843788533 from:0.018724689079159553 made:0.018325297976932498 or:0.01279118557445322 have:0.012377021439969127 :0.12868495103593033 +the:0.15930234103476537 south:0.14916617612565322 north:0.12747015941821727 east:0.11497653682237818 west:0.10139947809509035 one:0.048792612627628046 other:0.04050218611816578 either:0.025502936103615932 a:0.022473503672407975 each:0.022108776560771096 opposite:0.020547929304717542 out-:0.013104247432932122 this:0.012527971499664897 cast:0.012459434028953368 and:0.012228690772812151 tho:0.011236060547429408 northerly:0.011218669246376186 right:0.010764144905735063 left:0.00911543234938189 :0.07410271333330416 +have:0.3243450576613109 has:0.2862032024937749 had:0.1935382148937943 not:0.03901719617381756 having:0.026381246777399198 bad:0.010155609024561175 always:0.009021995569234744 lias:0.00873052599867586 never:0.007817259805383758 already:0.007638022812149789 ever:0.005867212837825181 havo:0.005362115650233339 yet:0.005216543990698726 also:0.004262400860367852 haa:0.003591463381336089 long:0.0030018861580893633 baa:0.00296756548219678 and:0.002942744041726549 just:0.002590174071535841 :0.05034956231588806 +of:0.08471549299679969 the:0.0837678314178927 to:0.0558130316042545 and:0.05135800133147429 a:0.04386267725819504 for:0.023721883900578708 at:0.01928805475421384 in:0.019184541951152052 that:0.016173079310546765 or:0.015158119035373742 by:0.012501964695267442 with:0.011657666569313841 as:0.011606153959871636 :0.01142386556361195 be:0.011128064496004031 an:0.010894300827829235 on:0.009977512991180661 from:0.009780776070097254 -:0.0096105586767153 :0.4873764225896273 +is:0.09524876745386887 of:0.08453662107004521 and:0.07165474303826892 with:0.0694424128037683 was:0.06836828378739193 in:0.0628545595378312 to:0.04188648859583351 for:0.04179470276545615 have:0.041550274964607094 by:0.04050900741006001 make:0.036511304028697365 had:0.034864723153173 be:0.02988085217621228 as:0.02950815011982055 made:0.02936416020901851 has:0.024679566181737965 that:0.02335512688891064 but:0.018662224109426747 been:0.017417768341074568 :0.13691026336479717 +the:0.31579742076801576 a:0.2930232078811913 of:0.08217757219849306 his:0.06053042159643363 The:0.03677978165629266 and:0.026082746759949205 our:0.017130926217610268 A:0.015022221892340601 tho:0.014038599742657665 my:0.013600209634517376 their:0.01356984912659192 to:0.013447113843371397 with:0.011752261665505805 this:0.0087445766949319 its:0.007770629442656439 in:0.007513582584217083 are:0.006663367666603521 her:0.006425405305665763 by:0.00582285330152224 :0.04310725202143237 +of:0.22567007001441378 to:0.1598228264227465 in:0.13835908752049653 the:0.10305930212117913 In:0.04928180438681607 and:0.04140110478720728 this:0.029662933524656 for:0.02522604861306529 by:0.024282389761062374 that:0.021100180472801412 on:0.017453795293646834 with:0.016164633778035474 from:0.014457912511996792 at:0.014243200914397161 or:0.013910520326427426 great:0.012089738274660753 no:0.012088259222020841 any:0.011012308534812347 an:0.010743088379513205 :0.058970795140044815 +;:0.01458927046758731 it,:0.007973265891266864 him:0.007834970369143835 one:0.007240974664279108 in:0.006989508095588829 and:0.006417396987522371 ,:0.006059091806132192 it:0.006014614548599763 up:0.005812344146302806 out:0.005395853159197619 them,:0.005290532062834904 him,:0.004938420268273817 city:0.004793760033506698 :0.004646491011450349 man:0.004641061555670736 country:0.0046164671969483135 feet:0.0044416267197611185 time,:0.004376787347733258 time:0.004358244018157902 :0.8825693196500423 +of:0.07297463346604476 and:0.06329971925366537 be:0.05201023805108833 on:0.04929547250856945 have:0.04255063525779122 had:0.03941947251238628 was:0.03817350473876125 is:0.02732819203982429 been:0.02397039739714593 has:0.021279614222827734 the:0.020748279889894607 are:0.02032800482107498 were:0.017152171579894515 to:0.015744730432240922 in:0.013764089562913272 with:0.010451662987211577 a:0.010120105449892048 not:0.009222570322484238 being:0.00918717113159717 :0.441979334374692 +a:0.12125817387149676 the:0.09593381661746897 is:0.07588171148355279 not:0.060361002364576664 and:0.059478547595353246 be:0.05285431420923396 was:0.050314150085833835 more:0.044004088396424425 of:0.039574018397216276 are:0.03846317107139183 that:0.02501672989658544 his:0.024925711486524043 all:0.024896625534223973 have:0.024438478373628753 this:0.022869283107314474 to:0.022776986760356308 I:0.01899731202745212 one:0.018892508992329107 most:0.018298184224836447 :0.15976518550420057 +and:0.044639339666160884 the:0.04300268911175513 of:0.027974803742917834 I:0.027803352370609605 -:0.027801825969677455 :0.026845470095505454 it:0.02315447020766834 that:0.021720448779821835 .:0.020657944739418403 he:0.018501018396866048 i:0.017878692315413065 It:0.0159296347871268 t:0.014176055710610447 was:0.013529976059721963 to:0.013237765830569648 which:0.013150502994181044 but:0.012972722671528953 an:0.012650034587144584 be:0.012608106336187561 :0.5907651456271149 +the:0.11919516938815296 of:0.07230453158552728 and:0.05781056740443249 a:0.043018564803886335 to:0.031305092790907506 in:0.020848713353460488 at:0.014270110001066288 .:0.012526810245749479 :0.012413283442322082 for:0.011719122709941797 by:0.010808400946589808 or:0.010404172990115616 The:0.01003576004804544 with:0.009811868184449042 tho:0.009295902015355835 was:0.008924239095331684 that:0.008672304223433876 is:0.0085591147338948 be:0.008335143826716943 :0.5187411282106204 +to:0.39840063220699795 and:0.09116922641024568 would:0.07779330199380172 will:0.07577126287083635 I:0.03470194103683906 should:0.030921528980288895 could:0.01960739307409007 not:0.01795787986802146 can:0.015769779854231177 may:0.014681526876128642 you:0.014420934851000098 must:0.009085759555561653 that:0.00835014204474885 shall:0.008012003234321002 or:0.0065598737817179455 the:0.006503972193919691 who:0.006261213005802754 1:0.006013268937393657 might:0.005385480597136329 :0.15163287862691704 +:0.12670908637398162 it.:0.02116320101807353 .:0.014754492055447772 them.:0.014651659296143442 him.:0.012308611579186992 time.:0.010231793849351337 day.:0.009120990361082191 country.:0.007190550404882676 work.:0.007035884785678632 year.:0.00697288379635997 years.:0.006820821735494892 night.:0.0054288617862061055 her.:0.005424584511792088 place.:0.005331710530171839 city.:0.005212976911362761 again.:0.005114236014811439 way.:0.004806827378401736 days.:0.004728402143337555 up.:0.004666311508570693 :0.7213261139596627 +and:0.05820852559625378 was:0.02203045808623518 it:0.02103546608996985 demand:0.01923952890058415 time:0.018499248933999717 him:0.015748610527652213 not:0.01568790757398535 but:0.015298768387209635 is:0.015181160344389558 them:0.013922501514437512 ready:0.013409545477008619 used:0.013177086166721447 candidate:0.013141674763018243 vote:0.012809934711157923 work:0.012477128418716312 up:0.012185900119354965 room:0.012101438055852228 are:0.011346068135160694 here:0.010827494348283275 :0.6726715538500094 +day:0.023105281802872357 city:0.020957921215819037 land:0.01966657030363633 men:0.019351498658987398 interest:0.013793530574029973 time:0.01289715415680386 county:0.01189404557217975 costs:0.011610179312242888 rights:0.011265684577036618 house:0.009847771624776855 officers:0.009837867572011794 street:0.008806787330321277 sale:0.008741064471515311 labor:0.008074725025597742 dollars:0.00780363085796951 life:0.007768020672999116 State:0.00770500042340482 town:0.007378966842552624 of:0.007300246819118046 :0.7711940521861247 +to:0.23287631032482184 will:0.19202719471688964 would:0.09288969596895892 shall:0.07483689832866218 should:0.06743193720697695 not:0.06374194944442496 may:0.059768702904548776 must:0.03618232725408549 can:0.0214147364919065 could:0.017094263781512714 and:0.013659685741163942 might:0.012337865344682206 cannot:0.011078546782717977 it:0.006388205134939666 soon:0.005286493762131673 that:0.0050439019445450645 also:0.004683004393632638 then:0.004453662522314564 never:0.003417602559065859 :0.07438701539201845 +the:0.11999379068825401 of:0.10655987740478882 and:0.0541240221413138 Mr.:0.03393957673395067 to:0.02933889729923149 a:0.027674458171711085 The:0.019919848153310358 .:0.01868156925456345 that:0.016311241479486153 Mrs.:0.015007665404231069 :0.014137251023582943 by:0.01388319495194314 in:0.013134909507283065 this:0.01055091456972084 his:0.010012190619909038 Miss:0.009241576250477043 for:0.008290852772735061 tho:0.007807082028488951 be:0.007470928197581145 :0.46292015334743786 +the:0.16287760685838365 of:0.0883592780729449 to:0.0618987346693935 and:0.05423685233212741 in:0.030811253892523358 for:0.03057359609188714 be:0.025098115820027647 was:0.01826945122296575 is:0.01662970283289366 a:0.016448402520667066 or:0.01633619095301082 his:0.015510346299682681 their:0.015084175217362073 are:0.014656254371894712 been:0.013019491851438341 were:0.01267572744006931 that:0.012270302451397866 on:0.01131798809455223 :0.011150587255169986 :0.37177594175160794 +the:0.1930166743236062 a:0.12403588352407002 and:0.0810134459726715 to:0.06806286706255564 for:0.05751369046282837 of:0.05328003340548355 The:0.037823617473282736 that:0.031150027172812622 his:0.019254508059726932 their:0.018032198141744987 not:0.01649306996280682 no:0.015305570523707865 this:0.014860437542891257 or:0.011814121084846176 only:0.011559800553546938 tho:0.010517312844748222 in:0.010234407699685626 her:0.009677480156888539 I:0.00895041472008905 :0.20640443931200694 +are:0.18847614868699467 is:0.17679059579832992 was:0.14312895754355473 be:0.10346706663133265 been:0.0818901929604603 were:0.06826656133705708 of:0.025470099520176332 Is:0.0196894549926976 being:0.01686497849416716 and:0.016740489845155325 most:0.01597874023620583 very:0.013926451558894354 the:0.010203922695350151 so:0.00994581274656034 re-:0.009353748454500073 not:0.009121074033911589 became:0.008486756396131728 in:0.0076245118341391 become:0.0070937272958925416 :0.06648070893848854 +hundred:0.07707805715637027 one:0.027657188052988474 two:0.0169430292326902 dollars:0.010296347117655093 each:0.009646825182922225 ;:0.009029506594761375 long:0.008860663612012406 up:0.007740700797526889 years:0.0074378961778371055 wife:0.007352273238623499 him:0.007315755878736539 time:0.007121889021913162 feet:0.006524844105242256 three:0.0059504643945306555 year:0.005718916059667519 dred:0.005644951343795232 gold:0.0051590279766405645 four:0.004875022100073549 day:0.004829322854623778 :0.7638173191013893 +it:0.3899457028750957 It:0.09209604071333997 he:0.05816450461841207 and:0.04797794469524303 that:0.02795652299918881 be:0.022335258795405478 which:0.01747522763422851 as:0.016299584534409484 who:0.01382622498284031 she:0.012901905373444942 I:0.010814752111422042 He:0.009423687258373526 was:0.007836885829849248 man:0.007666793236756417 work:0.007424340377534809 one:0.00668719747989619 now:0.006607849801140963 lie:0.006538524373713734 there:0.005530405988800865 :0.23149064632090385 +the:0.11443649299388542 and:0.08822373245387777 of:0.06930583120548785 Mr.:0.03570692869609666 a:0.0349293389050599 be:0.02998128815505529 was:0.02883381026988142 to:0.019484046475667975 is:0.01854115270415319 are:0.017104912899390482 The:0.015324750909638191 were:0.014446753709373539 or:0.01391793116120021 he:0.013765279905928662 Mrs.:0.012397441784125567 been:0.011598209748444634 .:0.011520458674043922 in:0.01064422755083645 that:0.010299566900175137 :0.4285378448976777 +the:0.11919516938815296 of:0.07230453158552728 and:0.05781056740443249 a:0.043018564803886335 to:0.031305092790907506 in:0.020848713353460488 at:0.014270110001066288 .:0.012526810245749479 :0.012413283442322082 for:0.011719122709941797 by:0.010808400946589808 or:0.010404172990115616 The:0.01003576004804544 with:0.009811868184449042 tho:0.009295902015355835 was:0.008924239095331684 that:0.008672304223433876 is:0.0085591147338948 be:0.008335143826716943 :0.5187411282106204 +be:0.2782138542955328 was:0.14862383576885854 been:0.12777808325435466 is:0.06858089537084802 have:0.03608267268866497 he:0.03247567595368964 were:0.031470247305857305 are:0.027519389220067098 had:0.026476556794207608 not:0.024385393959482044 and:0.020712969977186607 bo:0.016308000986800145 I:0.015945578945171634 being:0.015240216464881856 it:0.01402562829943787 Is:0.012087726739187567 has:0.011012421226424573 well:0.008398851292286484 now:0.007010636823494163 :0.0766513646335664 +and:0.04755485107522338 as:0.031829792825454936 referred:0.030069611038180274 them:0.023423400485866913 him:0.02219445658672121 come:0.019037248764656095 came:0.017471355204084688 go:0.01653269294036312 up:0.016396451529598087 belonging:0.015215916484498977 went:0.014966757588389968 man:0.01494276788270666 reference:0.014232602269639226 back:0.013632343719907456 men:0.011158213477166208 said:0.010403625045128774 me:0.010145503334428709 going:0.00998015205072544 it:0.00997655078476145 :0.6498357069124985 +he:0.14310369022750694 it:0.11130990705288764 they:0.07892028322034934 I:0.06922591899986383 that:0.060100073084607714 It:0.05946011763411077 we:0.036316425751995396 which:0.036236228689137596 and:0.03553735421997305 she:0.03359563137184539 you:0.028952414365320575 who:0.02587827559873309 there:0.024204570205481602 He:0.01604217147798961 one:0.012579625274040624 what:0.01157528461570685 This:0.009914422079096447 ho:0.008797666808088172 1:0.008575266563447025 :0.1886746727598184 +;:0.011133096143187225 hundred:0.010195936033416012 feet:0.00890420911095445 up:0.008216086036487037 in:0.006422942292539041 and:0.006314167922043417 on:0.005552510911994443 one:0.005372642185609674 him:0.0050538688430727865 to:0.004701249624180062 feet,:0.004698546993635141 him,:0.0045159331415734185 it,:0.00450968456159579 .:0.004409484032879815 street:0.004176655000046724 street,:0.003939730872940938 ,:0.0038246049765140316 down:0.0037940201526493935 out:0.003726400222696084 :0.8895382309419846 +have:0.33675734258921936 has:0.2335115247899495 had:0.19327394367220394 not:0.04698315020923635 having:0.026369390017564755 never:0.023537480271588654 ever:0.016591552424024218 bad:0.009914162926454766 always:0.008873608955957003 yet:0.008813614319958418 lias:0.008684495854926257 just:0.007303182508435048 havo:0.006801740765497002 already:0.006438584767420554 haa:0.004371845863104012 also:0.003953666349178841 and:0.0039209759774223845 baa:0.003586494839204802 it:0.002899926148562884 :0.04641331675009126 +the:0.1732004037350859 of:0.09350652757680288 a:0.08406602554566352 and:0.0507573033083869 to:0.030091775787928075 as:0.026865549544523467 an:0.02283449328357262 in:0.02250175096857245 on:0.02020471000239123 that:0.01744565969161933 at:0.0161075816077612 from:0.014031305437342321 The:0.013721515815121469 his:0.013603836991059782 with:0.01203464889670351 be-:0.011561094485086102 by:0.011431014846502576 or:0.01039286171297845 their:0.00974163084664822 :0.34490030991625 +a:0.2799332326977973 the:0.1723251421655221 of:0.087017833679196 his:0.0604598060034098 their:0.05424262994331825 and:0.04318717143863866 our:0.029788385134468243 this:0.023143891469031803 The:0.020296202124506127 its:0.020110992354824327 other:0.019784268292242946 every:0.016483842517851927 or:0.016173897790006473 no:0.015427751804022533 for:0.015356727856933686 your:0.01522406811130344 her:0.014960029263110393 tho:0.014276537769016957 to:0.013307092583936213 :0.06750049700086283 +in:0.14048713722096412 for:0.12045306486651125 of:0.1150959154773748 within:0.061090158043955345 and:0.05346109170384797 only:0.04877263632788032 In:0.04433449219687606 with:0.037160146048207214 is:0.0315421892589043 but:0.029830979859766554 by:0.028968633883732185 to:0.025999925223267443 was:0.02505070588261269 after:0.022494641765410772 that:0.022285961534963723 as:0.01690029607373616 from:0.014222657035431458 or:0.013178995054789719 made:0.012188942064310933 :0.13548143047745698 +of:0.2836058126077578 to:0.12986506891311284 and:0.09337648654334701 by:0.07057029569113428 with:0.047673474715767994 for:0.04414155599951873 that:0.043745137578626844 all:0.03335259478853346 as:0.03085350751949361 from:0.02238801372836407 among:0.022066730749719942 than:0.01891618771216989 Among:0.012277452922458378 in:0.012107090963609322 are:0.011590099586224836 but:0.011518134026961783 To:0.009995391546791053 if:0.00699878350578875 or:0.006530520715903237 :0.08742766018471616 +of:0.3314367228128205 and:0.09264858847641576 to:0.08894873105669314 in:0.0786373779318716 with:0.05555795869332666 on:0.046264169562297015 that:0.03977303838458488 for:0.031362579157175226 by:0.027723398043701525 from:0.025211488680700153 all:0.017440611489957243 upon:0.015907589862898277 at:0.014185263555408665 In:0.013955236735380282 over:0.013268372098309772 about:0.011004555448907723 into:0.00976489204799487 which:0.009114349389295425 have:0.008671245500655832 :0.06812383107160548 +of:0.07503645111500423 to:0.07264476347900395 the:0.06548918194916983 and:0.06380975888952169 be:0.038402835218196825 a:0.0305220516969499 was:0.027548216375016688 re-:0.019121434020034675 for:0.01908661686432892 is:0.019039318734989145 are:0.01861426379138935 in:0.017261425390502665 were:0.0150081851099556 or:0.014771028615010682 :0.014460810407977458 been:0.014137074009157908 at:0.012047409084395909 that:0.011530608596044637 his:0.01152679673753536 :0.4389417699158146 +:0.16044344598106056 of:0.018055952564610653 it.:0.012145683959120097 county.:0.010555412996498485 them.:0.010442582322397474 .:0.009262229410930608 day.:0.008226344126925342 time.:0.008193088612933847 year.:0.007904436992442122 country.:0.007306585957258904 Court.:0.00721700981718699 city.:0.007167105610090571 State.:0.005448597489407532 law.:0.005445980974239182 follows::0.005442245872666225 men.:0.005429715611323715 years.:0.005129160317328425 States.:0.005102319726884559 work.:0.0050250983836211 :0.6950570032730736 +be:0.22553073733686455 was:0.09916496755159174 been:0.09214148749741263 has:0.06957646468852187 is:0.0685202130870869 have:0.05213192804835348 and:0.038891718987504174 had:0.03752327953820731 he:0.027475278168819593 were:0.025767116404695034 are:0.022088800214619477 I:0.01671440061509959 being:0.01608018466040612 it:0.014055132102564637 Is:0.011614077921811931 case:0.011081454579418148 bo:0.009399165643437395 It:0.007513329264735682 He:0.007308376386254357 :0.14642188730259537 +legal:0.24880277958799984 the:0.19746289732606398 a:0.11669528620906143 and:0.06968025916141202 of:0.05121164933392729 to:0.027909415079741866 more:0.017790247859420353 as:0.017286837638903495 great:0.015452971985142784 very:0.015436328454188476 this:0.014682493046773668 good:0.014094842008899988 with:0.01064690762623396 or:0.010263971242995168 an:0.009410947272540162 his:0.008229478410920048 that:0.008061805216934344 tho:0.007816870312708 most:0.007723819431674345 :0.13034019279445877 +a:0.45951841346083244 the:0.16794256517058592 in:0.08040233528230903 very:0.04956610771172684 of:0.04792898700255281 In:0.017501735315201838 and:0.01663134820218159 for:0.014694781149914668 with:0.014162945081685948 most:0.011875286804803688 The:0.011002592419947135 as:0.010150254258568059 such:0.009006140645984402 some:0.008542811547488587 tho:0.007683380769527308 any:0.007573644869047898 this:0.007345148592268492 entirely:0.0065155858504559955 no:0.0063873486378136935 :0.04456858722710365 +of:0.2842156991330075 in:0.0763960901967309 on:0.07146994347720571 to:0.0696302095485707 by:0.06482947082614353 and:0.05678445985542338 that:0.047031381201083425 for:0.04208605467321654 with:0.03958474610946608 from:0.02486081607144532 as:0.020988301663825176 In:0.01835089573777555 is:0.017339871880772316 was:0.015779143548486477 at:0.015417626295131921 upon:0.015159180620049319 after:0.011740457179410765 which:0.011013230977523636 before:0.009764654821661592 :0.08655776618307018 +a:0.500418052107539 the:0.3028053205849757 The:0.04317168688432576 of:0.025448736369187208 in:0.019357439889576892 A:0.01492919669732149 tho:0.011826433570191225 and:0.01143186837646273 to:0.009239485630260438 this:0.003683738797237793 their:0.00353675330261826 its:0.0034949355055280884 In:0.0034018833730170457 with:0.003371856060930685 I:0.0032634868913181464 tbe:0.0032504462229749594 our:0.0031125535344328718 which:0.003055603073980776 highest:0.0030542890067579514 :0.02714623412136293 +the:0.14013457668828966 of:0.10671677023037973 and:0.10399500304650185 in:0.08789340753160303 that:0.07204178746822495 to:0.03890329626390168 said:0.03002012840632097 for:0.02148658685404818 In:0.020638713319779806 from:0.014877012889415111 by:0.014462893368173278 with:0.014096956847531256 The:0.01387268012272652 this:0.013095563974628714 or:0.012319302479561624 at:0.011083460117197158 his:0.011071188031833552 on:0.009501740236500515 a:0.008937191221889592 :0.2538517409014928 +his:0.10705518802516199 the:0.10610659687037316 and:0.09668945123703232 of:0.0877292018840832 to:0.0660575174708767 by:0.05947482511449527 those:0.0464145728407203 my:0.03762761359243094 her:0.0374537726846227 in:0.030229009435992587 one:0.029875356643913935 a:0.027928128968515677 The:0.027596124767667922 for:0.025138341433988163 he:0.0233004228398569 or:0.017575875030461912 their:0.016817310961893237 our:0.014371925767794549 person:0.014283633374759902 :0.12727513105535865 +be:0.15377387272880302 is:0.13792613792752184 are:0.09978138359554514 was:0.09357069656602642 been:0.07057408299434781 were:0.04470357998330388 a:0.04084120794318842 and:0.03874895676747068 very:0.03308080027193496 not:0.031195146437771215 so:0.024063980776712426 being:0.02147959738598545 the:0.020143051545185163 as:0.018804757489138676 Is:0.015291200902789391 of:0.013209518409975186 become:0.012002000477547846 much:0.010624390022934579 have:0.010029836452505844 :0.10915580132131204 +of:0.0696090062992484 the:0.0694245244218917 and:0.06637201190018648 a:0.04075440352128852 his:0.03725481826929439 to:0.02779228759332003 their:0.0251773267181548 not:0.019546122600180543 her:0.01951081285971342 be:0.018446684741846908 I:0.016790454542740828 my:0.016677117557294483 or:0.01604178105205723 that:0.01528710301613759 in:0.014289666003402136 for:0.011984387664736841 was:0.011670479550265416 they:0.010400468876051705 per:0.010050909238619607 :0.481919633573569 +was:0.1840000052274322 be:0.18194195761450643 is:0.13792826235812938 are:0.11233894900086769 been:0.06409358813363902 were:0.05764967573210094 and:0.03237252493103296 being:0.031217563942431303 Is:0.030390989270358302 as:0.02039742177550392 not:0.019741081554305876 bo:0.012980757318495593 it:0.010235323144438141 he:0.007107449785509009 now:0.005405184968047591 so:0.005227873584299717 am:0.005155365599553114 if:0.0048454243513960495 or:0.0044933094340904685 :0.07147729227386229 +of:0.13477302273860842 and:0.0888690460235369 the:0.07092001872711115 to:0.0508380091581564 in:0.03394429999453715 a:0.02758704582216935 with:0.022985561858808668 is:0.021815928927475654 that:0.01898559226789393 his:0.018710228432882465 by:0.018230490558367365 as:0.017282410514730062 was:0.016560265137816357 at:0.015882630533266263 from:0.01500220094069785 be:0.014844427281074775 :0.014453335437917924 or:0.014234106705521679 this:0.014055250990921753 :0.36902612794850587 +more:0.351450835724493 rather:0.18814444152892096 less:0.05338357397482914 better:0.05290671284664227 greater:0.02661694568482402 other:0.019230433996321915 worse:0.01749180905854459 larger:0.012622653219332041 it:0.011364971295808953 higher:0.009944823133803165 and:0.009421965881797648 moro:0.005924003217725045 work:0.005543067532902861 purpose:0.005128528578428859 public:0.004957430828349915 lower:0.00474023795209026 good:0.004271771477018336 longer:0.004197671758158679 power:0.003871911023696357 :0.20778621128631197 +and:0.08995317707915026 to:0.06844710404109794 of:0.04605142056172993 the:0.04074574508561307 which:0.02479116931334353 that:0.023764822140213245 re-:0.020841117231308055 in:0.020803825395358622 for:0.020278423301550053 :0.018417753428486977 not:0.016860793136637672 con-:0.016444405871234195 is:0.014386481772210856 or:0.014080680914153714 be-:0.01352268143271276 I:0.01317002660943805 was:0.011429878269381662 dis-:0.011196807025842847 he:0.01113106290024311 :0.5026826244902934 +to:0.2375693674567756 not:0.1452145035389488 and:0.12966018416458303 will:0.08459178764649576 we:0.046183767616826174 would:0.04361138043560317 they:0.04195277767825854 I:0.04037581631616207 who:0.027107311040300713 may:0.025008739794526298 should:0.018766740892519965 or:0.016941488855262674 you:0.015479265989506613 shall:0.013954992602917033 be:0.01370876638577949 was:0.013517969121576363 must:0.01239862884053913 he:0.011527840983241739 can:0.009589447787126278 :0.051839222853050565 +the:0.5064498888288279 The:0.03844641983091172 and:0.038412243846112235 tho:0.03649370223885144 of:0.03538089909936032 this:0.030436061813755407 a:0.024035867644707023 all:0.02192699016840078 in:0.0202657532627097 his:0.01792472165382592 other:0.014769243445043686 tbe:0.013402470516413245 that:0.013375368172065385 our:0.009190285883966113 said:0.00911420235667739 their:0.008145582672710297 In:0.00613152494299387 with:0.005677879675748726 my:0.005441373537390423 :0.14397952040952844 +of:0.28767355066866834 to:0.08775711267569858 in:0.08678131196995101 and:0.05160598694501188 on:0.04646139928102899 by:0.04519522654900943 for:0.044547789071328545 with:0.03396756772609607 that:0.033699232901107726 from:0.03075346596941143 at:0.027039283056790858 In:0.021061449543044047 as:0.017514234937992545 all:0.012543839382496166 upon:0.011844431150487573 is:0.00998972746569266 was:0.008814315973987914 into:0.008557199930727406 through:0.007781895704231326 :0.1254109790972375 +and:0.07552504194953026 to:0.061968499393707334 the:0.057643973804479255 of:0.05099347821091035 in:0.045432634061476754 be:0.043176745264505725 was:0.04286344660289687 is:0.0354590811431954 not:0.021327702286003523 as:0.01940744495854301 it:0.019306237087434234 for:0.01929825631926325 been:0.01851743502930562 are:0.01760668094037614 he:0.016473460506366926 a:0.016340305934385613 his:0.016072979388420006 or:0.01494424414056331 that:0.014707567524884455 :0.39193478545375193 +on:0.3445240819334575 of:0.14881676931834098 to:0.07869213976519886 from:0.05675500096990398 at:0.05494627407685848 in:0.05343351997228296 by:0.023321496068013314 On:0.022052283366754914 along:0.021339276469594753 and:0.020332339125754783 dated:0.017851840095444042 that:0.014128321095212271 with:0.013781150786067392 In:0.010711283880022862 upon:0.010472334724517966 into:0.008869315155248237 across:0.00886774412310195 for:0.008538300494755366 before:0.007735399138184773 :0.07383112944128456 +of:0.32272722957636507 and:0.06982008804948278 the:0.06616203963113924 in:0.04909210317882225 for:0.02565729397158521 to:0.024194247557915733 by:0.0217735169115373 with:0.01846744879280021 or:0.017480052084140545 his:0.015881927047930768 at:0.012642266810109958 from:0.01112868643819201 their:0.01109575443272571 her:0.009154503933001174 these:0.00886908895035892 than:0.008794985535158275 all:0.00862998427084255 In:0.008503876489902917 was:0.007877968012891323 :0.28104693832509803 +the:0.5325679759996914 a:0.07199079757270561 The:0.06881425063179573 and:0.03782855309997207 tho:0.03310337912811085 I:0.02718521784983388 this:0.0222632922207203 of:0.018210718906471156 1:0.015764323781299223 for:0.013064040547053844 tbe:0.011931579690414673 his:0.011502074442592504 little:0.010934251076971437 that:0.007561239930998645 A:0.0075241837909998995 my:0.007330331202121054 said:0.007120635798864192 to:0.005445933529544204 an:0.005041552249039108 :0.08381566855080022 +:0.07804855083437529 it.:0.018532738721184938 a:0.013989991872785806 that:0.012252272568788624 them.:0.01213931915956552 the:0.008791267011623553 .:0.008657047212476 us.:0.00865556946570506 time.:0.008640658558994983 and:0.008528222676706915 Sir::0.007751044183510323 people.:0.007294130111301739 ?:0.0064557396321995265 country.:0.00641317484502276 me.:0.005557705977064443 you.:0.0054820140563563175 day.:0.004986679920525582 him.:0.0048245339532207825 year.:0.0046638044228758035 :0.767335534815716 +they:0.16901252657935043 we:0.08752436667696809 you:0.07333909065240003 who:0.07065694875531947 and:0.04051952723101279 which:0.04002568029909436 We:0.03330781248364781 They:0.030459661057101288 men:0.028713986934566886 there:0.02651470196376023 that:0.02506059870350175 I:0.017687089574678135 people:0.016855056358196185 There:0.015427087653516995 You:0.010435732819577968 but:0.010391374885752107 them:0.009785001204702822 women:0.008688124960017883 it:0.008198434167224352 :0.27639719703961046 +as:0.0793467513189333 and:0.05614017342033637 made:0.03718321708675578 them:0.031610819006575586 is:0.027202038006285855 went:0.02587908127366914 up:0.02585072053146744 going:0.025517521967747283 allowed:0.022397867749955235 go:0.021124033985441302 able:0.020070329962943948 not:0.02004189870086939 him:0.019888300541125118 way:0.017637482499128998 was:0.01752709343259409 enough:0.017445249243484458 ready:0.016513993185781003 according:0.016074044185076956 came:0.015717419311369912 :0.48583196459045885 +forfeit:0.07078430564667543 men:0.017880825533927256 out:0.016132428884556245 time:0.015161132133326507 him:0.014393802902832391 man:0.01201738193287126 made:0.011615665254059186 up:0.010825472305935713 work:0.00964254429390654 hand:0.008784524163164555 house:0.008362226271605079 life:0.008136300092410327 :0.0081321886573345 cash,:0.008076074988780522 them:0.008063207158487911 one:0.007767678166732137 rules:0.007629080791537429 good:0.007522953197901784 in:0.006958891791706262 :0.741113315832249 +the:0.43395814051248854 a:0.1771191878390898 The:0.0658907070485965 tho:0.029835447522817127 any:0.02744798099907442 his:0.027173271350570648 or:0.0242987870532625 this:0.023737922336798792 no:0.02176664220334044 and:0.02147370946932531 of:0.017079711116014844 every:0.01517700559151367 that:0.013305275640840063 tbe:0.01149726529709384 each:0.011248490195606262 one:0.009965529290556987 A:0.009817270599255842 our:0.009316023153746782 their:0.007974441801325734 :0.040917190978681864 +:0.051666620400679514 .:0.027865285856805228 and:0.02387269341504024 it.:0.013524177625195775 that:0.01103267000902887 of:0.00968380125501595 the:0.00700199908781762 them.:0.006944416146207224 ::0.005723463631838767 year.:0.005060777593690727 years.:0.0047067650596820335 follows::0.004628217210776228 said::0.004605149063175451 to:0.004566930609304391 day.:0.0037590256353404743 country.:0.00371765934238219 him.:0.003717517329494891 :0.0037078443719543762 time.:0.003425773029898315 :0.7997892133266717 +hundred:0.09185713299568277 ten:0.06883235595098393 five:0.048323817670663696 few:0.03317468392723309 three:0.02957453654475655 fifteen:0.029243100329244664 four:0.029142631525889685 fifty:0.025707608602018296 forty:0.025452682078522925 six:0.02457566334718408 seven:0.021762862097194365 million:0.019525583173793472 several:0.018742245751928614 two:0.018237293468140146 sixty:0.017466566354167237 twenty:0.016131310474874025 sixteen:0.014917800037116822 thousand:0.013311756465794055 those:0.012551392950294008 :0.4404689762545176 +that:0.24377600211184258 and:0.13435991912768572 but:0.07168150809626594 as:0.06359833707293497 which:0.04094174528544221 if:0.03178898714157173 when:0.02633898954679778 of:0.02397717529030809 where:0.021547267384172075 But:0.015524238832081745 think:0.013838867228362228 what:0.01348168029256627 for:0.013286521710675597 because:0.01244775421495958 If:0.011512192736688312 though:0.00872863832271114 And:0.008363469436862725 than:0.008221024862328669 said:0.008130156784910685 :0.22745552452083195 +and:0.07679363749608188 recorded:0.05034318189829796 is:0.03987244694939778 was:0.039108830460396066 that:0.03090731742183201 up:0.02798152387589709 held:0.026510158904939848 made:0.02383310938304104 time:0.023768248812720296 as:0.02213581730965383 are:0.020740031256888145 out:0.020069834160134737 it:0.01820013037930063 now:0.018091456176296362 used:0.01780143395631767 engaged:0.016897751664408895 be:0.015516764365235787 not:0.014552692671363618 them:0.013848300328136904 :0.48202733252965946 +.:0.06188233572624096 the:0.039641015136519804 John:0.039567533551981816 and:0.039076387824429695 Mr.:0.03310072291481653 lot:0.024745103829292608 J.:0.023723858556056177 Miss:0.023334986563963215 C.:0.02141690457452141 H.:0.020998179547974914 James:0.020524888604345863 A.:0.02005746560145923 of:0.019892782255187952 F.:0.019427606500213943 Mrs.:0.01862880911121815 M.:0.01572951137975921 W.:0.015586952588444999 L.:0.01437208124099862 E.:0.01405554553552269 :0.5132373289570522 +and:0.11922239373144565 all:0.0632776530194518 of:0.04734130050731213 that:0.02920588234471105 said:0.028475986436588694 thing:0.025949440582909152 but:0.025866714756790327 than:0.02559983065420365 fact:0.02549211109029754 as:0.02414667230536689 so:0.022108077492627682 thought:0.020066307476565185 one:0.01798514278671261 time:0.016401790552772865 it:0.016280772407506108 things:0.01564305760981743 know:0.014703654542882178 him:0.014596676914636328 men:0.014352947533958663 :0.43228358725344407 +of:0.18214766521906195 in:0.15138378068282607 to:0.0666311677537637 for:0.041286582301728665 and:0.03483141234426235 that:0.03290116464287319 In:0.03222008806349713 the:0.0304904713334558 with:0.0241804405306392 at:0.013054805664908848 all:0.012883773146345883 from:0.012868009479049607 by:0.012830670962021559 on:0.012689295512439728 or:0.009357588403193085 :0.005127701228901545 without:0.0049739379959787495 his:0.004446895238245506 ot:0.004216259249449121 :0.3104782902473583 +the:0.1815786805247565 of:0.1593552815104947 a:0.05361092568392656 in:0.046290806222730574 to:0.04520388549308682 and:0.04240853253535651 by:0.026162459712196925 The:0.020404565241396413 for:0.01893380173282994 at:0.018645160102820146 as:0.018510890729297305 or:0.01746555029467473 that:0.01604674398582199 on:0.015901130797486018 :0.015369462944330609 with:0.015231000467115003 from:0.015060704212090232 In:0.01193729618754849 tho:0.00953254805991085 :0.2513505735621297 +that:0.2676352019961585 and:0.10524176929818935 as:0.10083419164329244 which:0.09806014660999113 but:0.04213361469084662 if:0.03345236488348477 what:0.03316288127709897 where:0.0329970034416335 when:0.01920523129407993 because:0.01525962777245299 or:0.014744269495268376 than:0.012976191385013294 though:0.011745200358344157 whom:0.011051744555499902 If:0.009739903184418966 whether:0.0087399321979141 until:0.007676142444272245 for:0.0072604953702512355 before:0.00673523004631285 :0.16034885805547672 +as:0.08245194352867512 seems:0.07504477896856314 and:0.05226239243978683 up:0.038712456516838994 come:0.035284672761600626 seemed:0.030730583401014436 came:0.028358324435320093 it:0.025771163203503228 is:0.02409816625823578 known:0.020912166522470348 them:0.01997358156541705 back:0.019536691820668067 presented:0.01810643517000634 sent:0.017494707978847394 was:0.017384944780957427 down:0.017154807936619994 brought:0.016437327320737827 given:0.015626793637823353 regard:0.01411594749458947 :0.4295421142583245 +a:0.14781490857203122 of:0.13249819067639967 the:0.11722207942236598 in:0.06699339898142655 to:0.06463493373525434 and:0.03436395029979666 by:0.020329188925896937 In:0.01898010855245305 be:0.018928099683594924 his:0.015851488844969567 for:0.014761016178453717 from:0.014571539071963334 was:0.01423526207581535 is:0.013624911884986693 an:0.013414712799068374 their:0.012680730659664272 with:0.011603718895785946 tho:0.011477174727496589 one:0.01138799503049209 :0.2436265909820847 +the:0.11919516938815296 of:0.07230453158552728 and:0.05781056740443249 a:0.043018564803886335 to:0.031305092790907506 in:0.020848713353460488 at:0.014270110001066288 .:0.012526810245749479 :0.012413283442322082 for:0.011719122709941797 by:0.010808400946589808 or:0.010404172990115616 The:0.01003576004804544 with:0.009811868184449042 tho:0.009295902015355835 was:0.008924239095331684 that:0.008672304223433876 is:0.0085591147338948 be:0.008335143826716943 :0.5187411282106204 +of:0.339373950614501 the:0.22007358106013136 cold:0.043999208233628476 with:0.03209699942175562 boiling:0.02695952036327469 hot:0.023863932891719727 and:0.0229273077708748 their:0.019445659159210784 in:0.016529830314129395 our:0.015186142501079383 tho:0.015079395481626451 this:0.01428169522414025 on:0.014182619579085013 or:0.012854864620553288 a:0.012401852103906793 by:0.012249180883024104 for:0.010518353434010953 its:0.010373302341502652 warm:0.010065823872311357 :0.12653678012953393 +dollars:0.02757690526042665 hundred:0.019757164613060547 day:0.01950705214544587 time:0.01753563991020371 feet:0.015895541439729814 more:0.012474261433798355 title:0.010155731707713788 one:0.009080945726017135 interest:0.008888899721264503 place:0.007724540177053291 land:0.007619846539841991 year:0.0075003948137222455 life:0.007377368925945296 costs:0.0073430806285530075 two:0.007053976736311482 ing:0.006915660980998976 principal:0.0062016359495466414 good:0.006151719542947801 labor:0.006124978290839698 :0.7881146554565792 +and:0.12257328777544194 are:0.0833976562449919 the:0.07846329802116749 is:0.060189045295645005 most:0.06000771163570368 be:0.05637756731450971 was:0.041312166127851234 of:0.03778234714289497 that:0.028159959729359245 an:0.023401349504660898 a:0.022181341256364097 he:0.02198365743446847 to:0.0219659692507459 were:0.02195002900297493 not:0.021478697300204092 or:0.02080677834564281 more:0.017610703754531182 been:0.015557581279478525 as:0.014923880248418198 :0.22887697333494572 +of:0.22059812193659872 to:0.11099714850906772 and:0.09568483924229601 at:0.0865230432107859 in:0.07472494644199781 on:0.0556644126060128 with:0.04713903565682144 from:0.044145702179919435 for:0.03835451522484053 that:0.03157945257077005 by:0.021694041537402224 In:0.015853064654164098 as:0.012836866705919355 over:0.012762963568162181 upon:0.011743004505883657 all:0.00931623835333809 up:0.009220560619342576 after:0.008798092517348779 about:0.008563234407478753 :0.08280071555184988 +of:0.13296377513547805 the:0.10359281511079504 and:0.06957795497061103 his:0.05904939312431791 a:0.05234337968877023 my:0.03720764494897673 be:0.03533813462570882 purely:0.03430040752527878 to:0.032213089014840914 in:0.028406060521974898 or:0.027723500543402228 with:0.025802274407100548 is:0.025208499741530613 her:0.024981396319533777 their:0.02386191055439338 these:0.021437897982448783 little:0.020414470937138825 no:0.020059351574997962 that:0.01927849413988318 :0.20523954913281833 +is:0.18361497352032383 was:0.15885716773202962 are:0.11389240677513736 not:0.0720804301905967 be:0.0603551638635539 were:0.055752427536865774 Is:0.04181546469929642 been:0.030225406027668194 and:0.02948301304506406 am:0.0260427027449057 have:0.020865725706407066 as:0.01933696906937895 had:0.018086640979781077 he:0.0174350961031131 it:0.01726613661657363 will:0.017179340301595323 has:0.01592898373358306 I:0.01239117512672108 being:0.011079077356308932 :0.07731169887109623 +the:0.08078893313634433 and:0.06527404893315186 of:0.059988648098588254 .:0.033881822084809374 to:0.022881323151745077 by:0.021125117225776608 Mrs.:0.019983414439307286 :0.017538240910136768 Mr.:0.014846912076336108 a:0.013810792932630189 in:0.011557374914936316 said:0.010898687052438613 The:0.010650181891457718 A:0.010186982281063482 Miss:0.01010405966693973 with:0.009807499991173264 at:0.00936785509719241 for:0.008958020734041082 J.:0.008140541019324786 :0.5592095443626067 +as:0.06931392982974462 according:0.052071562389565784 up:0.0511867300210483 and:0.040371568633051955 went:0.03351644485287816 back:0.032358406609281 regard:0.03073407747799069 feet:0.02852138506231652 down:0.026379903432040268 owing:0.02466642634685871 due:0.023695193974505355 go:0.022910973192184297 reference:0.020802802907016128 came:0.019883741951819873 sent:0.019874244915639484 attention:0.019565955494145405 come:0.01885185084678811 given:0.018792390567602263 it:0.017366961307524745 :0.4281354501879983 +and:0.16996207359282361 has:0.08659591633048846 have:0.08074565678337682 had:0.06442033103342144 be:0.06262711177372388 he:0.05965252017119737 I:0.05961063664974282 was:0.04739952056057632 is:0.03549646213345302 been:0.024813294026654702 who:0.022357173894455868 it:0.021896828509465602 they:0.018478852068542825 are:0.01666147269061528 were:0.016364714281488706 we:0.015697697573095807 He:0.014856895841905813 that:0.013192400112575593 which:0.012820307367482296 :0.15535013460491376 +part:0.0721110082666789 one:0.05450381421531799 side:0.04115250918068819 day:0.03663003969834441 out:0.027214994543123972 that:0.026207133692687377 and:0.021081995576264174 some:0.01644112904737905 case:0.015621388228985211 portion:0.015448679407077528 all:0.014675564100782834 any:0.014500295433646993 tion:0.01317171305464313 use:0.012035189707369495 time:0.011756613961752099 favor:0.011520020855203414 those:0.011136996023936314 people:0.0107897459547753 value:0.01043757970453551 :0.5625635893468082 +the:0.18941070485687136 of:0.07390279899818201 and:0.06570082437222247 a:0.058469243590548274 in:0.024856988432496216 to:0.020873147706783023 for:0.018682659686982638 or:0.017866694612114674 that:0.017028564531941848 The:0.014409173905624696 tho:0.013452762362497402 any:0.012264366938919611 their:0.011649091646265465 other:0.010378896202069391 his:0.010181810078543935 by:0.009890952379887743 :0.0098587277099488 at:0.008693303303851414 with:0.008048251693860238 :0.4033810369903888 +it,:0.020066250729468618 ;:0.018463310008504038 them,:0.014025162533758715 it:0.011994110429603987 him,:0.011236128826773334 him:0.009471149609493692 time,:0.009203551806326591 country,:0.007751046760039575 up:0.007740391441548338 years,:0.007710582374234828 people,:0.007077270634756562 up,:0.00706191553698371 here:0.006838778546039603 States,:0.006822957880501987 them:0.006450399552461554 in:0.006294703052973352 time:0.005982962242141434 year,:0.005863359520135046 country:0.005761171033017349 :0.8231847974812377 +I:0.2270757494202284 we:0.12198451299124506 they:0.12132007300932493 We:0.08226272443949183 who:0.052078621192277526 to:0.04674868558565357 and:0.039139007277529315 you:0.03728717086809822 They:0.028424842485011023 1:0.02184088342547565 would:0.016222940085224225 "I:0.015062482890720322 will:0.012269401432579468 could:0.01087993986707566 but:0.010327133678487822 can:0.010152250372158306 people:0.009656710944150326 he:0.009398595408284695 not:0.009244240665470645 :0.11762403396151297 +and:0.07596233131056646 it:0.03213756693252304 connected:0.031796183191385774 do:0.029073095873503874 acquainted:0.025838504946312152 him:0.024950962195141105 agree:0.02161014088962643 up:0.021240578086005133 them:0.0201522481937546 together:0.01874889115966114 away:0.017625265541782165 connection:0.017380551794475806 associated:0.015237945219287266 done:0.014856403732154995 along:0.014554788457604302 go:0.014414752737673783 love:0.014354133194855017 made:0.013699781520500668 not:0.01346071947464656 :0.5619051555485398 +of:0.28329255750835064 in:0.0952732395701073 to:0.06945343027172776 and:0.06674106479833385 for:0.055585794597137014 with:0.05073020918219752 by:0.041648047826960896 that:0.0375227942605157 on:0.03279011753881507 from:0.028523057726291202 In:0.026433105202291692 all:0.024809282262554376 is:0.02309005890173226 was:0.016436248958702465 upon:0.0154395022482389 when:0.01120105303866427 as:0.011134939380238918 into:0.010225377591658178 be:0.008990866302908756 :0.08967925283257326 +up:0.019589083357782554 him:0.0168497176099797 him,:0.011602720053102346 ;:0.010418211924849336 it,:0.00825284911615429 lying:0.007762918371737931 them:0.0064733749628104464 home:0.006372157920882956 wife:0.006129543125563439 man:0.0059971936708356245 in:0.00599424008475559 them,:0.0059863114094472845 man,:0.005914013522356219 day:0.005687429218906283 house:0.005401604618193542 feet,:0.005391884826475228 made:0.005262939546524318 morning:0.005178329314511274 night:0.0050945405376517615 :0.8496409368074799 +and:0.15351998813548826 that:0.14390476462447124 but:0.05112300928695089 And:0.028704866501164748 But:0.018652935581044385 it:0.016119873158699928 that,:0.01552218473281301 it,:0.01508900664169886 or:0.014384806865191576 as:0.014087025386615857 and,:0.01408539307704584 even:0.010971234750128987 ;:0.009787152503714869 which,:0.009557554612631884 them,:0.009047246743157667 therein,:0.008858117839821667 which:0.008514794766683643 them:0.008038495184771226 for:0.007285774376059842 :0.4417457752318456 +many:0.17476067269937312 two:0.10262335924561641 few:0.07151793514699813 three:0.04976301341006705 ten:0.046300784119022796 several:0.04359869867363964 the:0.04261553504515587 four:0.03870527286125064 of:0.03495413221390973 twenty:0.02950487859546263 five:0.02661441751845947 for:0.025054474414056015 six:0.024956098127196326 some:0.024220447056832045 and:0.0239249580312109 eight:0.020083498237391275 seven:0.01809471655297278 thirty:0.018019737021928432 so:0.013915977721602265 :0.16977139330785448 +made:0.0999812034390529 and:0.06680208263369662 caused:0.02435411478715239 shown:0.02379785223577525 up:0.023253655008919294 ed:0.02312002180398423 out:0.022293807888227747 taken:0.021988971765594088 done:0.02128782706813444 given:0.020283609421760777 paid:0.017098570970207227 owned:0.01708227903067019 that:0.01698438626809451 or:0.016145946252097726 him:0.015808363688274 followed:0.015366441255538056 appointed:0.015126279845513936 held:0.013990473525433292 approved:0.013949758860964168 :0.5102843542509091 +and:0.08995317707915026 to:0.06844710404109794 of:0.04605142056172993 the:0.04074574508561307 which:0.02479116931334353 that:0.023764822140213245 re-:0.020841117231308055 in:0.020803825395358622 for:0.020278423301550053 :0.018417753428486977 not:0.016860793136637672 con-:0.016444405871234195 is:0.014386481772210856 or:0.014080680914153714 be-:0.01352268143271276 I:0.01317002660943805 was:0.011429878269381662 dis-:0.011196807025842847 he:0.01113106290024311 :0.5026826244902934 +:0.1680918187436558 .:0.03152615953722139 OF:0.02747022137429061 it.:0.014274403300922485 J:0.012515138150150238 I:0.0077456513665858625 ::0.007105362113037504 by:0.006723193958749035 and:0.006695960883948455 Mrs.:0.006468753450810679 city.:0.00644904873725507 them.:0.0064052234524234995 1:0.006363845151204509 year.:0.006080245820048104 of:0.005933122261381565 day.:0.0056858267752188454 —:0.005653544800157585 purchaser.:0.005620179891095457 W:0.005523475056133028 :0.6566688251757102 +to:0.3570827878074166 the:0.10895413107268288 of:0.06763507284024657 and:0.04461362618992682 this:0.03652676110362271 will:0.0363358610648029 that:0.02360450074234654 his:0.020555642934702516 at:0.01925984677241701 I:0.0175846048425145 not:0.01736739445384225 for:0.01577032420805128 can:0.015546509557126081 their:0.014960127005608831 your:0.012865853919969306 my:0.010860258921379179 all:0.010658835158329407 in:0.010581975735307576 by:0.01012101250279646 :0.14811487316691055 +and:0.1309338438957476 the:0.12743760151618316 a:0.0762929148837959 that:0.03950120555920971 his:0.03581916704841117 of:0.029395968507525877 in:0.027977644511752265 or:0.027249713973904768 this:0.02679636661917566 to:0.02603952913367183 no:0.023434721768717293 little:0.022113138587600046 at:0.02079971322165464 I:0.020408437750776377 first:0.019249223202294066 not:0.019046797513947385 for:0.0175715500333329 one:0.0169811008700458 their:0.016283772484406694 :0.2756675889178468 +to:0.12022893700269083 and:0.09020394424291768 the:0.08587503820055309 of:0.06450042443224316 in:0.0310058468700829 a:0.017742048521183405 :0.015548046036689871 not:0.01491307651316237 that:0.014112408707955496 for:0.013734482372212283 I:0.013065769926808477 will:0.012848502316304782 at:0.012837991177321897 In:0.012628718855091186 by:0.012491091048660757 be:0.011425930130217754 is:0.0113962101007567 he:0.011342727513475473 or:0.01112522537451577 :0.4219735806571561 +of:0.3716387075413922 in:0.09671903698821724 to:0.0772075233545754 that:0.03470020597158995 by:0.03467173475791107 for:0.03263341336115185 with:0.028661689284926923 and:0.02333245779896124 from:0.02206771351492586 on:0.021639399931672236 all:0.01921934823067841 In:0.018242067024192923 is:0.013988758873468544 at:0.01381994875305849 as:0.013504059774881573 upon:0.011235428945220331 was:0.008596785620363236 over:0.007942663213454808 which:0.007712703129565481 :0.14146635392979218 +the:0.3534178665003451 of:0.07230649051205529 a:0.057930581211458644 and:0.05673210989283282 The:0.03106255421499743 tho:0.020491842145649246 in:0.01696234337791627 to:0.015145775075570104 for:0.012990385295237177 .:0.012457265248589961 at:0.011832992588687708 said:0.011040913350940776 tbe:0.010140555913083308 his:0.008012664836046695 an:0.007564063503998561 that:0.006762272856722413 A:0.006653941108075679 :0.006350384018602705 or:0.006006989113135013 :0.2751380092360551 +of:0.11031028695388327 in:0.08618152855900721 is:0.07784760703005021 with:0.07632304398681113 was:0.07084733523003656 to:0.07025582601537379 as:0.052096927449683944 for:0.04968525144027994 and:0.047562762547223414 have:0.043551997206668525 had:0.036457777307799234 by:0.033369467296748896 be:0.03018568308717519 has:0.029206734003763765 that:0.02057241466538287 In:0.02019400334259953 not:0.019333890061590614 such:0.01647791732305841 been:0.014670236479391786 :0.09386931001347172 +at:0.8968437901144882 the:0.029546719546366 At:0.027625238874286924 of:0.009939034866553974 to:0.00812401194605376 nt:0.003093910114165023 and:0.0024995441182681165 in:0.0017464104587147772 The:0.001380889544156215 for:0.0013502751355820735 a:0.0012928450274807821 was:0.0011004933630998862 by:0.0010853373731476638 from:0.0009449896173676713 on:0.0008268583336269294 is:0.000797091035144543 not:0.0007718056509013104 that:0.0007446637502381105 ut:0.0007057765233730419 :0.008580314606984999 +-:0.02164683705945139 re-:0.01937501994735392 .:0.018337506823489336 of:0.01827175529358055 a:0.014081256790539178 the:0.007799856092000802 :0.007252291699823559 and:0.0069660424542401355 to:0.006826825899055925 or:0.006563985923060216 re:0.005669169509813787 de-:0.004701495418596072 or-:0.004682246385739707 acres,:0.004287784095714125 ex-:0.00397771391352529 i:0.0038626191995379065 I:0.0038389562839939964 ac:0.00376526604178512 man-:0.0036423489160452463 :0.8334510222526537 +the:0.4077917085468555 a:0.05847561032411698 his:0.05415625841867856 their:0.04554528144095361 of:0.041121567073779904 this:0.025964796190948658 tho:0.02288938944742048 in:0.022672623085160323 our:0.022009991502078677 its:0.01702269684039076 same:0.016838350142017403 and:0.015477666708228779 other:0.015416691273870601 new:0.014982538713336603 The:0.014899552379379247 any:0.014395648103965613 for:0.013191789155962025 her:0.013034556922630636 your:0.01207939858702835 :0.15103388514319732 +Board:0.08536366908073266 line:0.06811449636344513 number:0.06197004006892146 State:0.031174472853487813 city:0.025567806918765496 state:0.024859219269894647 side:0.022821036658263686 County:0.021996907367396498 county:0.021146504953275795 City:0.019055244720364916 board:0.015424220418831415 corner:0.015402671034076193 quarter:0.015233994357893438 class:0.014914046888605826 acres:0.014800791990459711 part:0.014727702917387939 amount:0.014701671661272425 thousands:0.012997205844078496 out:0.01123375376244037 :0.4874945428704061 +and:0.08995317707915026 to:0.06844710404109794 of:0.04605142056172993 the:0.04074574508561307 which:0.02479116931334353 that:0.023764822140213245 re-:0.020841117231308055 in:0.020803825395358622 for:0.020278423301550053 :0.018417753428486977 not:0.016860793136637672 con-:0.016444405871234195 is:0.014386481772210856 or:0.014080680914153714 be-:0.01352268143271276 I:0.01317002660943805 was:0.011429878269381662 dis-:0.011196807025842847 he:0.01113106290024311 :0.5026826244902934 +them.:0.03659266483449307 :0.03656993692818297 it.:0.02724988465813018 men.:0.01058660079695027 him.:0.00962757473851626 time.:0.009467986157536272 people.:0.008099193634261297 country.:0.008048256483765686 themselves.:0.007666616128092469 us.:0.007193977761071027 day.:0.006467893235775005 all.:0.006358290629221414 life.:0.00635412598282852 work.:0.006119784158748796 home.:0.0052916525602458514 way.:0.005236651082708395 again.:0.005035663120645579 and:0.00499272458063044 so.:0.0047864512749799 :0.7872540712532166 +it:0.10002566202869963 It:0.09733051034271796 and:0.08951006037104146 he:0.07983873370056122 He:0.049235663670790325 which:0.04376610813468233 that:0.0314902865746959 who:0.023343340983514465 she:0.021247356366707673 I:0.018816953071089916 one:0.011308166441273847 this:0.011213243962855099 there:0.011156156087947936 She:0.011026818022897551 to:0.009427223965010974 time:0.009378467921459526 then:0.0091310389547733 This:0.008755140698461544 lie:0.00783637536402379 :0.35516269333679557 +the:0.15235239368686432 that:0.07662114738625742 other:0.07643521967866576 of:0.07013415255518637 such:0.051624681973415985 this:0.05048308766418696 said:0.039865265044907575 any:0.038262741574610126 The:0.034559219448095424 these:0.03418203782683106 large:0.028407720490269052 in:0.028316137624781527 and:0.026552675527583756 all:0.02514741618768104 This:0.019317439511308473 same:0.017257366411190016 some:0.01724652921890214 certain:0.015212216737543964 great:0.015049462726951984 :0.18197308872476706 +it:0.15590291243815246 there:0.0887784025092866 It:0.07904016205387611 which:0.06936908824431676 they:0.05362226352982171 that:0.04647101454662571 and:0.04420120519214072 he:0.027952982163116303 There:0.027623278151575524 mortgage:0.023443129896555264 you:0.018859539766003214 who:0.017891862574647276 this:0.014117846301193209 I:0.01363040583752058 sale:0.011818751696880098 This:0.010767348085132659 work:0.010306262168963347 as:0.009927627839447666 They:0.008978002990569422 :0.26629791401417535 +the:0.11919516938815296 of:0.07230453158552728 and:0.05781056740443249 a:0.043018564803886335 to:0.031305092790907506 in:0.020848713353460488 at:0.014270110001066288 .:0.012526810245749479 :0.012413283442322082 for:0.011719122709941797 by:0.010808400946589808 or:0.010404172990115616 The:0.01003576004804544 with:0.009811868184449042 tho:0.009295902015355835 was:0.008924239095331684 that:0.008672304223433876 is:0.0085591147338948 be:0.008335143826716943 :0.5187411282106204 +the:0.10873585401095542 a:0.10006113698649914 of:0.08259901249617065 and:0.06962448282614898 to:0.04885836271674795 in:0.0333995502349017 or:0.0282780290020157 is:0.02381969613841616 be:0.022201606266489593 are:0.019361200685808655 for:0.019184844453601448 was:0.017191056096260357 an:0.015712296874703695 not:0.014760224420802064 have:0.012774174284058491 been:0.010959198269126084 :0.010324735312820665 with:0.01011711219820177 were:0.010078001412337391 :0.3409594253139341 +:0.04886162056411152 and:0.040019830359908116 made:0.019534249586484108 was:0.01884742032062261 recorded:0.0156557013153549 that:0.014962923641391521 be:0.013346741481126276 is:0.012414190474703378 o'clock:0.011973468167413116 placed:0.011531292464673245 out:0.010920644875481857 found:0.010814196298763954 place:0.010167028437165111 situated:0.009811016372775217 up:0.009511290277384947 them:0.00920663098385622 been:0.009160737073209432 him:0.00901249715764949 are:0.008449437635810648 :0.7047990825121143 +according:0.07435718175589817 went:0.06671836464613426 feet:0.05349150919641864 go:0.05226949977873719 up:0.04203645315293234 and:0.038870969064196334 as:0.03359573694737626 regard:0.032750547301304736 subject:0.03226582112762891 sent:0.028456631024810712 came:0.026325328067083206 back:0.026074338867552668 relating:0.02360361164486524 down:0.021826269166002322 them:0.021371859552906908 returned:0.02078166065897001 come:0.02001971121229435 addition:0.019739926268036685 time:0.019666019887720623 :0.34477856067913043 +and:0.12549062901285488 or:0.04732483567648881 not:0.036214042397114926 is:0.030179087052358767 was:0.027195905689709667 as:0.024648935486823394 be:0.022116720831530868 it:0.02191862294711246 him:0.021368836787892687 only:0.020871299445568234 them:0.020656282896631337 but:0.018849907578670475 to:0.017877230924573672 one:0.0176644081670137 well:0.016420316007312592 nothing:0.016347101770391483 made:0.015977931330024012 out:0.015281722377416132 all:0.013802029975268464 :0.4687941536452434 +of:0.12039058782247963 and:0.06979646462612646 for:0.04989232715558658 that:0.048668958116001006 in:0.03504367089487288 to:0.021855733569843553 but:0.020649251943243525 as:0.020590846946901144 made:0.020533665546933196 which:0.018969503743725104 :0.01888686306983161 place:0.01833149295731159 if:0.018199464902614777 by:0.014545421665221832 when:0.013662720577971035 before:0.013627507079031466 upon:0.013619490182567296 from:0.01344804516306174 If:0.013369643615405342 :0.4349183404212702 +number:0.04708140663675832 point:0.046483019769051004 out:0.042964425654291837 matter:0.030617743005864444 amount:0.02647087183390666 kind:0.025607533525732036 purpose:0.025115722229013145 state:0.024244452784840085 means:0.02387021041799556 sort:0.023106410313826035 system:0.02308177420933075 right:0.02251292427955162 one:0.022371421492265273 form:0.021662756296221202 place:0.020357868430299284 line:0.017654189495288523 lack:0.017349850505533546 way:0.01685152214307942 power:0.01683809219961654 :0.5047578047775347 +to:0.4797647151631238 and:0.09919456368735756 they:0.030464952751524367 we:0.02929652150267333 not:0.028344883866445507 I:0.02497407995127199 will:0.023413614778569847 would:0.021668185350488776 may:0.02037605069441042 can:0.014727143929883004 who:0.01371782369797659 could:0.012051084029389265 shall:0.01070070043074886 should:0.010525984073187432 you:0.010401958080074457 or:0.008414978063031915 1:0.0077104981811088 which:0.00663250027525654 To:0.006180773389889078 :0.14043898810358846 +of:0.28767355066866834 to:0.08775711267569858 in:0.08678131196995101 and:0.05160598694501188 on:0.04646139928102899 by:0.04519522654900943 for:0.044547789071328545 with:0.03396756772609607 that:0.033699232901107726 from:0.03075346596941143 at:0.027039283056790858 In:0.021061449543044047 as:0.017514234937992545 all:0.012543839382496166 upon:0.011844431150487573 is:0.00998972746569266 was:0.008814315973987914 into:0.008557199930727406 through:0.007781895704231326 :0.1254109790972375 +of:0.28767355066866834 to:0.08775711267569858 in:0.08678131196995101 and:0.05160598694501188 on:0.04646139928102899 by:0.04519522654900943 for:0.044547789071328545 with:0.03396756772609607 that:0.033699232901107726 from:0.03075346596941143 at:0.027039283056790858 In:0.021061449543044047 as:0.017514234937992545 all:0.012543839382496166 upon:0.011844431150487573 is:0.00998972746569266 was:0.008814315973987914 into:0.008557199930727406 through:0.007781895704231326 :0.1254109790972375 +covered:0.057885720627229666 filled:0.05779280498792415 and:0.037525825254391305 together:0.035570435126779085 charged:0.028009075820703423 up:0.026052799025012438 parallel:0.020132463729323955 down:0.016806679396121255 loaded:0.01631061551361187 them:0.016057916392477282 it:0.014845294008479377 connected:0.014844741762898529 compared:0.014242038105546615 supplied:0.014014037559392078 lined:0.012902928419914268 along:0.012248806983179993 accordance:0.012025703612454681 laden:0.011258239856484819 him:0.011213491307376953 :0.5692603825106983 +the:0.20656530570722226 and:0.19045678780633277 a:0.05696648458084027 re-:0.04464290573243278 re­:0.024353614145359484 re¬:0.02040978608036773 or:0.02039006893325106 The:0.01985033200894177 Grand:0.018179459481498395 con-:0.01642423474645641 two:0.015930387539371964 Miss:0.015255486292428806 book:0.014628843649434332 of:0.013996103809823794 by:0.013966810996132489 pro-:0.013272455301414667 as:0.012382614555082334 tho:0.011770636230252289 .:0.009761891933713882 :0.2597957904696426 +the:0.45066404228071927 a:0.24627205760834164 The:0.04944092829750899 his:0.031065827227410362 tho:0.02809112044996583 and:0.018904524255619153 their:0.016942559274568718 this:0.01414269387953171 our:0.014052119976947393 its:0.011223344894487855 one:0.010878173802151848 tbe:0.009610869665526097 to:0.007605303913806985 that:0.007505051897397676 her:0.006639042664766417 your:0.0065726556694561105 A:0.006476395263457552 young:0.006454968170097488 my:0.006076921917068233 :0.05038139889117063 +and:0.05491924313264794 wait:0.04059239132541597 her:0.028217851928637457 them:0.02774461742726418 it:0.026453608178415973 not:0.024656139713227346 him:0.024343074668890987 up:0.0240984026016939 me:0.02261869608658702 there:0.0165820272427824 time:0.01624216786655812 continued:0.015959243839767122 waited:0.014874043731950228 day:0.014434771595473374 but:0.01382977197010111 remained:0.013782134216950435 morning:0.013732379729220066 was:0.010957891527311402 out:0.010690971296812317 :0.5842705719202926 +the:0.1549073932070504 of:0.03885266666775426 and:0.03208753549672936 at:0.029236434659587262 a:0.021368039606847813 :0.018638130904653494 Mr.:0.015409871290217661 .:0.015325950551977401 in:0.01362030754498249 The:0.009853239418354181 on:0.009739036520699186 to:0.009335236851137515 tho:0.009174388391550294 his:0.009042888530047873 New:0.007921318531145447 from:0.006645152287845998 :0.006423050866213464 her:0.006342638353181485 &:0.005702832111651933 :0.5793738882083724 +J:0.04660298652240873 .:0.03753900021477507 of:0.03347520998211259 W:0.03295544001516389 J.:0.01967493480904119 G:0.01741031263907218 Mrs.:0.017387041690139 deg:0.016773848936353013 E:0.016126948523047312 and:0.016050301404808485 :0.015004369819981354 C:0.014329276939219504 A:0.014240046752208892 to:0.01399549804246162 H:0.013885382139263788 Mr.:0.013683683310275361 W.:0.012557428397977221 min.:0.01242963753371707 S:0.012033525549842026 :0.6228451267781316 +a:0.3489709859000466 the:0.26656970614841197 his:0.05742486450957484 and:0.028041371364431793 this:0.02070492405449867 their:0.018190198368655694 our:0.01651293973278564 that:0.016465717340547907 of:0.015662223500848102 old:0.015417746910751227 tho:0.015142497972800772 one:0.01327848591893765 her:0.01275219046518843 its:0.011921499386974361 great:0.009967130670606705 in:0.009792594522284833 large:0.009436258471380052 your:0.008551574916199603 my:0.00850652904312681 :0.09569056080194831 +it:0.17919824768026574 It:0.11899386451103285 there:0.07346360470486527 which:0.05225230718544703 they:0.04641619335773507 that:0.04192124155395412 he:0.03957048582491494 and:0.035253100689259534 There:0.02796624983890546 I:0.018721002707963057 we:0.017651434188838702 you:0.015294756461088244 man:0.013919793670076737 one:0.010205906425646862 work:0.009927234298320483 who:0.009840907332144214 this:0.009589326281629148 service:0.009412730711036632 she:0.009226688142499937 :0.26017492443437595 +as:0.028253767799881768 and:0.02168440222672151 was:0.015112389502887435 according:0.014921781972030307 is:0.013856638178472496 .:0.013468832910638223 up:0.011854658999104302 on:0.010637322488844855 him:0.009482157125334133 made:0.009327088399331173 go:0.009295582002787843 given:0.009279709475206625 said:0.009231932786716888 them:0.008244862643933936 prior:0.008179437323501909 called:0.007859290621245652 down:0.007699828616652712 conveyed:0.00749567692092594 out:0.0073427664989566864 :0.7757718735068256 +of:0.15442127253160634 and:0.07490795933174882 the:0.07119795805851567 a:0.062017300194292045 at:0.04370222919098687 to:0.03799449338895415 in:0.033033112733172866 for:0.03300402879277583 have:0.02703298963678493 with:0.026866463429474158 an:0.0267581930967261 has:0.02486524314752105 had:0.02263040740923707 are:0.0222972829997139 on:0.021751245667793025 from:0.020250121971092248 is:0.018557811813416675 that:0.01712449331503546 their:0.016644876279507115 :0.24394251701164565 +to:0.5001349879031126 could:0.051073332441910854 not:0.04899962737303167 and:0.045519200483414256 can:0.04386151577344558 will:0.036592931022351616 I:0.03128034061409336 would:0.02536084085351929 we:0.02383235491337844 they:0.019885449433136217 you:0.017525141105160708 never:0.01383136695385628 should:0.011740165765756875 cannot:0.010531376652433816 or:0.009756873316093909 who:0.009452444728164432 may:0.009442457560150119 must:0.007403381798974908 1:0.006658797100842923 :0.07611741420717213 +get:0.053610422214488855 was:0.05051841536969282 and:0.04903958730444051 him:0.038801969319659166 it:0.037410018187455464 them:0.035569152369498175 are:0.03479460583298655 go:0.03206022460430166 come:0.03018624754922308 came:0.02989007710531499 issued:0.028538548420871033 taken:0.028387580006254076 went:0.026471193886938953 got:0.02591677196361888 growing:0.02512307536827857 be:0.024827416016109424 is:0.024256616056951556 served:0.023420563816567756 paid:0.022272217198545566 :0.3779052974088029 +is:0.2123093706647556 are:0.20578530490168595 was:0.12699954242323197 and:0.08911535740142437 were:0.05816746363288109 Is:0.0387340391225201 be:0.023719207511618025 but:0.022560735313382044 it:0.01614864526841388 been:0.014338024365044427 not:0.012556009679141032 he:0.008915144219511437 men:0.007380443910813674 being:0.007010604824038928 just:0.006792480464655808 so:0.006763850832736948 a:0.006564761642997497 they:0.006357780611942208 too:0.006202589228550839 :0.12257864398065414 +for:0.2701982765153362 of:0.14231287384557909 to:0.10971837098681671 in:0.08563233799396236 on:0.031004007682111923 at:0.03031437913174918 and:0.02961740146283041 In:0.02672641210335076 from:0.0240201005216501 during:0.02081186404090835 that:0.01826990209750067 For:0.016128114251581227 over:0.014106794908085675 by:0.013406971777198917 within:0.013107520400599105 dollars:0.012748452284463854 with:0.011211262095347107 about:0.011119094995420246 the:0.009221786721334837 :0.10932407618417331 +one:0.0752993921118821 number:0.03570077508382172 people:0.029410764312923342 those:0.02884105593328797 line:0.027190546349235917 all:0.026793512520756894 men:0.022097383530522378 man:0.021211504709827533 out:0.01883481228972927 majority:0.017904582860345627 some:0.017018592457772184 class:0.015293460101367852 favor:0.015191922185871034 that:0.014732514087256052 part:0.013940721106594558 thousands:0.012786518154382817 many:0.012336187241591735 tion:0.012267081396122677 body:0.012097284860420724 :0.5700513887062876 +and:0.04916213253415615 is:0.04910766048476226 was:0.04525604045559756 him:0.042098000986650716 right:0.03362660424889167 as:0.031934809349419245 able:0.031422296730885806 them:0.02575156204526272 not:0.02481841674060325 order:0.024501510090075028 it:0.023631918792541524 refused:0.023104689233284112 made:0.021398469565232364 had:0.020800952908189865 willing:0.019906392382205214 time:0.01957616399501451 began:0.019571996438411992 enough:0.019408447335490332 ready:0.019158474368749977 :0.4547634613145757 +and:0.26289173429165646 days:0.10693102766021262 years:0.08818821334414753 or:0.04717638187827952 time:0.04398604544098986 weeks:0.04308479432147249 minutes:0.036960008872330946 months:0.03445325396438355 for:0.0340258919269782 moment:0.023632406725542867 of:0.02158182439728268 hour:0.020018557203451318 that:0.018580682847868315 but:0.017826191913772993 to:0.01715934389454846 her:0.016427974977196044 the:0.016226104960109896 year:0.01546896975784116 After:0.015256248147177146 :0.11912434347475792 +;:0.011864931245913191 it,:0.010030187937198126 years,:0.009280800195973278 here:0.006764648433834412 them,:0.0066865644023765824 him:0.00660242724692105 it:0.0064913008516520035 time,:0.006463410406505873 :0.006401947103790347 ,:0.006142447310865259 up:0.0058606946785731895 country,:0.005521013818704755 :0.005385913755312117 man:0.005224962794489054 country:0.005166033603391283 year,:0.005081852063995821 time:0.00494890990549203 him,:0.004925011056010029 county,:0.004812233578175687 :0.8753447096108259 +the:0.6434385019567301 a:0.10739953064128914 The:0.07283756553516618 tho:0.03490807534277981 and:0.020324761709962436 tbe:0.012348526678785578 by:0.009757462017905748 no:0.0062665211184925245 any:0.006259780931816646 A:0.005810870466974028 or:0.005578935997492112 this:0.005034446596136775 that:0.004928086132013099 good:0.004072817642229736 their:0.003658877496868084 Tho:0.0035755634950408945 of:0.0033778694332918043 present:0.003296200680845216 our:0.002811218543415392 :0.04331438758276468 +of:0.21232446776954456 the:0.10075588987338649 on:0.06158387766323907 to:0.05274772019954527 from:0.05022880731129644 at:0.048667318418351826 in:0.04714993505471317 and:0.04153303153969725 by:0.02078547120863494 along:0.01963334093467832 a:0.019494251288565953 with:0.01750495831312124 for:0.014863597591701716 that:0.013443050060202173 :0.010645368068069627 In:0.010229380585173937 ot:0.006312578220220298 tho:0.006112959967261456 said:0.006056363302365392 :0.23892763263023084 +It:0.16483324464261526 there:0.15137929784652215 it:0.1389856574030547 There:0.07635769296985051 This:0.047005115735994085 which:0.03400493914593651 he:0.03276953491232582 that:0.032534901302704186 this:0.027705240540618296 He:0.025980981107979893 and:0.02571984886254885 who:0.015928391857077187 Here:0.008658225427457844 That:0.0071330239854848695 she:0.007117899171284279 one:0.006746549293447637 She:0.006029619888080546 man:0.005607440676998042 what:0.0055587671977417805 :0.17894362803227754 +the:0.631928109398423 an:0.05541867131743001 The:0.05453496732188268 tho:0.039262369437396825 a:0.023642169803683735 great:0.023126919900693904 tbe:0.016956397629548425 large:0.01343970681374484 of:0.012297499126816571 and:0.012022989265494307 other:0.011446444942981488 vast:0.009349058562320952 this:0.00831487190294233 whole:0.008246392628614471 in:0.007575623494762453 Republican:0.006165546599247031 entire:0.005835540845412793 new:0.005586505576303681 his:0.005564747514231253 :0.048285467918069286 +the:0.108209712999719 and:0.08930691014018635 of:0.08784494059057514 a:0.0402267456671343 to:0.027169179850814046 in:0.02489978681045947 was:0.02381627638810896 that:0.018654146323514875 by:0.017554947674201207 is:0.01727027698808855 be:0.017063279385715176 for:0.016998149830016126 his:0.013009457800741399 The:0.01217871161614816 with:0.011049023102479905 as:0.01090734021097581 from:0.01004272434542858 .:0.009467739169310754 been:0.0092486222303718 :0.4340820288760104 +the:0.15930234103476537 south:0.14916617612565322 north:0.12747015941821727 east:0.11497653682237818 west:0.10139947809509035 one:0.048792612627628046 other:0.04050218611816578 either:0.025502936103615932 a:0.022473503672407975 each:0.022108776560771096 opposite:0.020547929304717542 out-:0.013104247432932122 this:0.012527971499664897 cast:0.012459434028953368 and:0.012228690772812151 tho:0.011236060547429408 northerly:0.011218669246376186 right:0.010764144905735063 left:0.00911543234938189 :0.07410271333330416 +of:0.28767355066866834 to:0.08775711267569858 in:0.08678131196995101 and:0.05160598694501188 on:0.04646139928102899 by:0.04519522654900943 for:0.044547789071328545 with:0.03396756772609607 that:0.033699232901107726 from:0.03075346596941143 at:0.027039283056790858 In:0.021061449543044047 as:0.017514234937992545 all:0.012543839382496166 upon:0.011844431150487573 is:0.00998972746569266 was:0.008814315973987914 into:0.008557199930727406 through:0.007781895704231326 :0.1254109790972375 +of:0.23027355092301066 in:0.12860765091115192 and:0.10780502494882441 the:0.0840278625173892 with:0.030380645713743545 to:0.028302171015443713 his:0.025052659677418057 or:0.023723639575755646 said:0.02184416549245538 a:0.021540599315475317 for:0.01954767494003784 other:0.01860023049765084 their:0.014628010019304406 In:0.013249506716493114 by:0.012099352843269425 this:0.011301353942878987 its:0.010925523468640718 all:0.00987254604630032 as:0.00978831907821221 :0.1774295123565443 +of:0.27162112592624515 to:0.09687206579125873 in:0.07761648464756835 for:0.05676498377840665 with:0.05462336021690443 that:0.05278760325123616 and:0.048883703351607355 by:0.04206954428934663 all:0.036258048342640584 on:0.027406114949874636 from:0.023387787646968198 is:0.022406858173448667 In:0.01684183302836396 as:0.013633213668351973 upon:0.01312579828334954 at:0.011839858206802192 was:0.011057907247093138 be:0.0090224252622602 into:0.008585404949335443 :0.10419587898893796 +made:0.0999812034390529 and:0.06680208263369662 caused:0.02435411478715239 shown:0.02379785223577525 up:0.023253655008919294 ed:0.02312002180398423 out:0.022293807888227747 taken:0.021988971765594088 done:0.02128782706813444 given:0.020283609421760777 paid:0.017098570970207227 owned:0.01708227903067019 that:0.01698438626809451 or:0.016145946252097726 him:0.015808363688274 followed:0.015366441255538056 appointed:0.015126279845513936 held:0.013990473525433292 approved:0.013949758860964168 :0.5102843542509091 +the:0.3660918032407593 of:0.11877101487528342 and:0.07367773058560446 or:0.04185112963571181 for:0.04052031666020944 The:0.03520537168528578 by:0.03291674355072945 these:0.027994964666408825 in:0.026845270590341426 that:0.02518764164585514 to:0.019673065760296326 tho:0.018033032475341285 from:0.015391506498987873 with:0.014469443284085786 a:0.013069987884885637 between:0.012781904848790287 about:0.012469565528688057 than:0.012220798817071745 last:0.00941388274772508 :0.08241482501793884 +has:0.2947250613735505 have:0.2947039779560056 had:0.22502141502493914 having:0.03727401222756001 not:0.022799214652342262 lias:0.01227389608485703 ever:0.011434484098597632 already:0.009893497232066555 bad:0.00924264417338548 never:0.007660528501157968 havo:0.006550997917450974 yet:0.005473359454418655 haa:0.004318313946684016 baa:0.0037349251846585407 long:0.00363693977827753 recently:0.003288824058294025 just:0.0032883814364696048 always:0.0030736032569204106 bas:0.002924784612101937 :0.037681139030262205 +feet;:0.11888168998833036 running:0.05424142704906977 feet,:0.046271297770049784 ;:0.045650605369003006 street;:0.029415038799415212 street,:0.02534749511644734 feet::0.024675386580109267 4;:0.02074827703697268 and:0.019484608592721917 2;:0.019457331174416562 3;:0.019067961629215865 corner;:0.01645472837933442 stake;:0.015792935764860017 5;:0.01405046468899118 rods;:0.012438006639107333 avenue,:0.011528548030621416 1:0.011340402219103178 point,:0.011250655689007842 rods,:0.010703175486354974 :0.4721999639968679 +a:0.4158919443300625 the:0.1598042980331928 very:0.04890098623002877 of:0.04095516304173047 but:0.038350775590961894 A:0.03806900965150755 The:0.02753603762392553 and:0.024839549350409686 his:0.01864577305969367 her:0.015223686532894777 with:0.01284340103142931 this:0.012336943443216189 as:0.011388258385355083 no:0.010939478923923976 their:0.010830622827830181 that:0.010608902564228155 is:0.008921442566845145 tho:0.00871586027704531 in:0.007241015879864894 :0.07695685065585413 +the:0.22503781356884145 in:0.11855206551695263 a:0.10485282763113664 his:0.05153786491446478 that:0.04994097690583833 dis-:0.04797002066909387 or:0.042827791518645505 In:0.03753501562096241 and:0.03256037984822453 this:0.029969294999215808 no:0.02941846866660718 The:0.02727258607740433 of:0.02687202009431854 their:0.019978327228530966 take:0.019703372000234705 first:0.01876122197736737 to:0.017471297124649128 have:0.013714047034167723 took:0.013103931900235963 :0.07192067670310812 +and:0.14507320772351315 fact:0.08580533594336559 said:0.056464728489513914 so:0.05141663139801109 believe:0.03728868944610554 is:0.032697255055655516 say:0.030323479159427524 know:0.029749358812227955 found:0.025535190692382553 stated:0.021273605064562356 show:0.019511948220510757 but:0.018999393120383457 says:0.018814328565908398 think:0.016893655385130203 was:0.01658797795582863 all:0.01652317309060226 see:0.015409038245983688 opinion:0.015263158537430448 order:0.014744011681695817 :0.33062583341176116 +the:0.4004243445036391 a:0.10328154751450679 one:0.06207880310673429 any:0.041372517119243966 The:0.027193572261429017 tho:0.01804208643246173 his:0.01621029004683301 every:0.01614687632321462 and:0.015233814666970522 first:0.01441914469960829 other:0.01423288286848452 of:0.013943245836013831 this:0.013739660229503486 that:0.012775703249070357 each:0.011130453856636413 some:0.008139936232663708 second:0.0073116725821938 tbe:0.007044611478921224 an:0.006531092770725372 :0.1897477442211459 +the:0.15539723908977174 and:0.10821645929182658 to:0.10096158828347486 be:0.07992711082037163 an:0.06260692897720704 was:0.054815414881639546 is:0.04431617031387313 of:0.04235181554452659 not:0.040707107049318174 been:0.036570953663218324 are:0.03167394324602043 a:0.02782852081927635 The:0.02701324145612274 were:0.026162059861876173 in:0.0234301680977797 will:0.015904171795315582 with:0.015816993496918764 that:0.015178055628696323 I:0.014422463584360065 :0.07569959409840628 +;:0.05045799628131522 and:0.028759185946867053 is:0.017795480595667202 to:0.013969973871570446 it,:0.013537774804801558 :0.013462881506984513 time,:0.008276580477575011 ,:0.007998038610589946 him,:0.006841101000042004 ::0.006500499138811428 of:0.00643810335087143 :0.006399818880071709 the:0.006389482418723549 say,:0.0057102768349791035 them,:0.005556691780969244 know,:0.005549494159492039 doubt:0.005455871552778654 one,:0.0054403465801471425 was:0.005148800188053255 :0.7793116020196895 +the:0.12285296094004503 of:0.09817851333752219 and:0.06592713213355123 to:0.04951419258787356 was:0.04418146059484458 a:0.038107061866298836 be:0.03381349245443766 in:0.03359448275853669 is:0.028478288952295754 at:0.023474326416834054 for:0.016699924134405294 his:0.014326395251805632 or:0.014153776705098658 been:0.014056104888894281 not:0.013109242053401433 their:0.012637453412934655 In:0.0119303395497276 are:0.010136045963321282 were:0.009961306282732157 :0.34386749971543945 +of:0.4529905697774351 in:0.18916552659262717 to:0.08294206544523716 In:0.03358682369455551 for:0.03028325408935135 throughout:0.029535565920912145 by:0.02713453240186632 from:0.01735498698291263 and:0.017048811222116312 with:0.016512147383947604 that:0.015377351578454218 on:0.014044573954731068 over:0.008224268684749644 as:0.007481375443730889 into:0.007418640198224207 upon:0.006121604870865553 all:0.006105833610224818 through:0.00469283586159998 ot:0.0042837473754040135 :0.028695484911054288 +they:0.1493063204008583 who:0.11554168774072553 which:0.07853163106066918 we:0.056268896319609914 that:0.0453085337544608 and:0.04406533215969839 you:0.0414468002000963 They:0.0386877352817979 there:0.02183686269929831 We:0.02170691226648254 people:0.02051002432511202 men:0.018205554939740597 There:0.014441604031119305 these:0.010738846454027336 These:0.008596817774851726 You:0.008154881828375185 but:0.007776465023766721 or:0.007411754331421935 as:0.007374105609710354 :0.28308923379817763 +the:0.5776028983241729 The:0.043741138406590496 and:0.03984268075522027 tho:0.03628952787609484 of:0.032171834175455855 a:0.030035996595019116 by:0.02533871690952158 to:0.01635625034914653 on:0.01616106371938254 other:0.01320207601477809 tbe:0.013139512195342047 with:0.011439427010838164 all:0.00973185350743257 said:0.009568484048005605 in:0.009224265024896922 or:0.009016584666118375 this:0.008319432455200443 any:0.006072123995625278 one:0.005783290741475173 :0.08596284322968323 +the:0.11919516938815296 of:0.07230453158552728 and:0.05781056740443249 a:0.043018564803886335 to:0.031305092790907506 in:0.020848713353460488 at:0.014270110001066288 .:0.012526810245749479 :0.012413283442322082 for:0.011719122709941797 by:0.010808400946589808 or:0.010404172990115616 The:0.01003576004804544 with:0.009811868184449042 tho:0.009295902015355835 was:0.008924239095331684 that:0.008672304223433876 is:0.0085591147338948 be:0.008335143826716943 :0.5187411282106204 +there:0.17409457788653598 There:0.14026700465274108 they:0.11001110237965862 we:0.059938144593258635 who:0.05624726005341877 and:0.0383697241616723 you:0.03762644314536471 They:0.03659552890125762 men:0.03226584141678041 We:0.02783002434816654 which:0.026954636183706443 that:0.020636908541590223 people:0.015097083087496427 You:0.0088584064571901 them:0.007031134286691079 children:0.006560943580622946 These:0.005830606769335842 women:0.0055237911549930584 as:0.005401826353447093 :0.1838590120460721 +has:0.3086824451617543 have:0.2879066180958195 had:0.1913783169327609 having:0.047029796083259204 not:0.03802809836639078 lias:0.010773199411303822 bad:0.010458184047450336 already:0.007739691703268371 never:0.007170058646592346 havo:0.00682096655927114 ever:0.006630809183978609 long:0.005676883453750977 yet:0.005497294063183274 baa:0.004837500877191573 haa:0.004725224333209568 since:0.0033392415068250235 always:0.003130859640343378 just:0.0030874720048049997 bas:0.00274022061278516 :0.04334711931605674 +that:0.06728545688951634 :0.04547959862942056 and:0.036833091096342474 as:0.0240243933519045 but:0.021048723220701154 it.:0.019442006722084786 of:0.016206787647815274 which:0.013089857267201228 them.:0.008854552655880392 for:0.008456566529881106 If:0.00803858532949715 when:0.007721440135341467 country.:0.007332285825794699 him.:0.0072309878315364355 if:0.006836949233446213 time.:0.006766385937198032 day.:0.006041151897670316 people.:0.005972731760987662 it:0.005832176987637847 :0.6765062710501424 +to:0.23722492002385234 with:0.19680474352921223 of:0.08707343030479359 for:0.07137846133872196 against:0.058686665429613614 by:0.041491771932842994 upon:0.0369957805379839 from:0.02830930167999504 before:0.026211104038831128 on:0.022879300066311295 about:0.01489529453050362 in:0.01482340838171172 kill:0.013007292161927381 see:0.011873488390732293 over:0.010166967775139726 between:0.008798754535277134 behind:0.008128764729301569 marry:0.008019076264711664 at:0.007533410959966293 :0.09469806338857051 +:0.06218877742598603 it.:0.01566547642151614 .:0.013973029313064312 them.:0.010934710902929086 and:0.010415377933749673 him.:0.009893391259704143 time.:0.007232773589973845 country.:0.006136713478870931 ?:0.00502384283037992 man.:0.004677050434464335 again.:0.004400972931656632 work.:0.0042557157615475665 w:0.0040630960572457485 up.:0.004032844309585412 year.:0.003928211751157475 ":0.0039005705368778416 It.:0.0038908625625137627 tion.:0.003692584710649061 out.:0.003685455073981648 :0.8170085427141465 +his:0.18195262111130642 her:0.1152395375138001 the:0.10929624742976633 my:0.0728672348291425 and:0.058437321165502105 their:0.05533313512258924 a:0.0411468577465331 your:0.03502277955107603 The:0.025949487861522316 of:0.021887572028799263 His:0.020932338747937283 our:0.01698762730615221 My:0.013632678113025987 Her:0.013041209810170313 bis:0.012075509069539326 its:0.011408434216660062 whose:0.010498932382577085 tho:0.008514695577667129 or:0.00679878751316847 :0.16797699290306475 +be:0.11137078506027834 was:0.09600992353584743 and:0.08413904487281834 he:0.06865139802188457 is:0.05318428569266637 as:0.043888693431799415 been:0.04086495023397022 He:0.02469392893867677 above:0.02304021115523808 who:0.018831460745938777 have:0.01834171868055887 had:0.01805110358297715 duly:0.017356970137344954 I:0.014840662941024088 were:0.014437084433242021 has:0.013729644352486541 so:0.01315835969439893 are:0.012948102304376666 well:0.01156686799854697 :0.2998948041859255 +be:0.18599994961177524 was:0.1013450197768928 is:0.09314902492231694 have:0.08043006942070191 has:0.08008893181866394 and:0.05804766483345114 had:0.0456918925103632 been:0.043065462216574125 are:0.03677230206857255 it:0.0265972147350509 were:0.02505271108309392 well:0.02066048385025843 not:0.0171702916172392 being:0.0147250885446837 he:0.012258357612803968 It:0.01200219378097656 Is:0.011292066704106703 bo:0.010903196234805438 pro-:0.009370940853495945 :0.1143771378041734 +make:0.1869676037118155 deem:0.09977132417809623 found:0.07036051218897306 made:0.05811605635037178 find:0.05449549189991088 makes:0.04865884873812297 is:0.04567014187409301 Be:0.03726838402833125 give:0.03391065894493406 that:0.02841974946206852 making:0.027265148513709692 as:0.02631852842033899 for:0.025278693411196415 and:0.024673712826467263 Is:0.022099219179024313 with:0.021258605709486244 have:0.021216261842279125 of:0.02088952945661252 deemed:0.019618193173913785 :0.12674333609025437 +the:0.08591901209284757 it:0.06434575132817756 and:0.059862722632996884 a:0.042453591133129694 to:0.031672079844601096 that:0.02408775001043258 do:0.02013558862381261 right:0.019698978365128263 It:0.017402200751113806 they:0.017129014800097857 for:0.01687434625730855 which:0.015646098028813216 this:0.015602364763380828 he:0.014641062970622747 of:0.014481243558841814 as:0.013579247615165145 will:0.012089105471023157 have:0.01176798219524516 in:0.010789179305772913 :0.49082268025148856 +is:0.10999398768378395 and:0.0909683163849278 do:0.0896384522761805 was:0.06831512649961718 have:0.06284899469440614 had:0.058143865259319784 with:0.05453181126036057 for:0.0416617412911514 that:0.03823414257663681 to:0.03494419503523356 as:0.028013361272041466 be:0.02604494567126349 say:0.02348253098742627 has:0.02298117337296936 knew:0.022099218941303456 know:0.021118539097742434 get:0.02087384947104327 in:0.020605091841183573 Is:0.019409288353132735 :0.14509136803027622 +and:0.1758453384942267 that:0.04397093570643158 was:0.024587711461217368 or:0.022429806809023924 it:0.02086228471790104 is:0.0193167817404393 but:0.01805607587337638 them:0.016287321457905412 as:0.01549248170110538 be:0.015473585915644239 are:0.015055765486879551 him:0.014925781460977365 been:0.01459671414960911 were:0.013305009600310023 made:0.013016154264144604 interest:0.012543296555694089 not:0.01246832529905463 found:0.010780444775327563 up:0.010628947600926674 :0.5093572369298051 +mortgage,:0.03824352098538814 and:0.03043341989011441 come:0.02802307918758783 beginning,:0.027126846169165907 diagram,:0.024800154667115593 came:0.0233262134373764 paid,:0.01577130600694233 huddled:0.01539866339426508 less,:0.014362964626015003 them:0.012654394561236725 land,:0.012634388549680325 thereof,:0.010876058984011588 was:0.010327949830775719 well:0.010317214470603445 as:0.010167393866472984 brought:0.009860211796065246 thereby,:0.009829678986131407 gathered:0.009480198673241543 up:0.009334458556745895 :0.6760318833610645 +of:0.23807926353937933 the:0.21051009445616772 and:0.18011619416950503 The:0.05014304854409898 in:0.033758640977571315 that:0.027804320721234625 seed:0.025136170638826155 if:0.012478994333389821 tho:0.011194792798650844 for:0.010322954603832275 his:0.009437422854524966 their:0.008737902280661807 but:0.008498615391046533 these:0.008412076429166441 a:0.008172036604021632 or:0.007627337845873735 as:0.007332149545191772 this:0.007273117778875572 both:0.007171949618551249 :0.12679291686943023 +the:0.07260618873306597 Judiciary:0.06836643594071554 Finance:0.05308695184153987 said:0.03815359353080863 Means:0.03190596925611012 National:0.026077499059982134 of:0.024329536148302217 Executive:0.022314904818268613 State:0.021886207220508783 Pacific:0.020108856467268423 York:0.019877482705617327 this:0.017249832594911953 American:0.01575801620629567 District:0.013952922745685652 Central:0.012945001253474782 Union:0.011404520228700655 Republican:0.010918512771088346 Public:0.010680181571560565 that:0.009608817960040034 :0.4977685689460547 +of:0.14029693882412303 the:0.08274574828119215 and:0.052299426809607065 to:0.048341086174206224 by:0.028397975470552363 in:0.019905876895292773 Mrs.:0.01947930160247963 a:0.017747539386843075 at:0.016891811793113318 from:0.01606274435705254 :0.01604320992050216 .:0.01375761571654885 for:0.013504540239874888 that:0.01208869904094982 with:0.011743958441047577 was:0.011468485469266263 Mr.:0.011420674179180215 said:0.011136099950335779 on:0.009624237743821226 :0.4460440297040111 +and:0.09895858434884586 the:0.08531822172154292 of:0.08097129818486058 to:0.038424246671365 in:0.02511448395496922 for:0.021706420488923246 Mr.:0.018065422509702722 a:0.01804990308889873 Mrs.:0.012245087041404104 or:0.012117151389296234 by:0.011371987607652012 that:0.010368824642728522 :0.009715028766046895 their:0.009498327441732344 be:0.008970449535827851 from:0.00870217231629381 as:0.008546905948317203 his:0.008428878023331601 boy.:0.008378372780196123 :0.5040482335380649 +of:0.0915359878324565 in:0.07695592379388193 with:0.05936769091179211 is:0.05580047132494863 for:0.05213517858808579 as:0.05174589655619504 to:0.051261977142518116 by:0.04226503648284651 on:0.03865256725890782 was:0.03529702895951753 and:0.03357044342769396 have:0.033229417804656075 had:0.03218123515065184 In:0.027074166882779367 make:0.026081571542001757 made:0.02338980658132968 be:0.020530998745232718 at:0.017524162448291896 or:0.01676655657073274 :0.21363388199547997 +the:0.20000994782788378 of:0.11079010675071387 a:0.10992664773690902 in:0.07460602782823425 and:0.034191688838277196 to:0.03122138859288403 The:0.027299294532424273 that:0.018524583921931757 at:0.013868968696021647 In:0.013022916854457342 by:0.012896543139448161 an:0.012430444589818844 tho:0.012311745882650228 with:0.010352630499218928 for:0.010241522553613054 his:0.009123099916889647 which:0.008312866497893095 from:0.007748558279723293 as:0.00674610967080575 :0.2753749073902018 +no:0.2146016456269958 No:0.12426042992610394 any:0.1234292323660269 that:0.07601509634593054 every:0.05346918384262336 some:0.0487698165382507 and:0.03557658037273636 the:0.03367942516460497 of:0.030133020689412652 but:0.029707795678016655 only:0.028630979271892135 if:0.02138728466498492 as:0.016108446903967573 Every:0.015346646529760435 in:0.01361942923766394 when:0.012596700651517072 each:0.011770293138437004 than:0.01167236823201044 If:0.011614568825909413 :0.08661105599315519 +he:0.178167723182817 it:0.08128211483996403 who:0.07768661619144837 which:0.07576970386305054 He:0.06831737883125476 that:0.06289392111952945 It:0.04917250003453113 she:0.04756093402737941 and:0.04159402058157651 She:0.017584658338480327 there:0.01467529678807266 There:0.01228324239745064 lie:0.011372977832862546 ho:0.011184216674844465 man:0.009732898455210377 one:0.008235536836725437 but:0.00799693387033092 country:0.007240719267762048 company:0.006968261278770736 :0.20928034558793865 +and:0.11101960798674682 to:0.062334791247409815 of:0.04678917569723103 the:0.03147852576058688 which:0.022220284625160364 :0.02113317386480409 re-:0.020643554768386807 in:0.020043216833881133 that:0.01961125296176328 for:0.018057155070897727 I:0.017027774068931002 not:0.014397456711628813 or:0.014367473821082147 is:0.013233884844358232 by:0.012753669465645162 con-:0.011884491726436214 was:0.011662969423011264 be-:0.011625025359963036 he:0.01156604482637356 :0.5071504709357026 +the:0.16807735899698817 of:0.10541662057906837 and:0.05138367848570702 a:0.04141865232648221 to:0.0385989743764065 in:0.026264864977736738 was:0.019530675665220657 his:0.018900421021236905 be:0.017373825006196972 their:0.015767721170721456 for:0.01557246589796783 with:0.014071419046630446 is:0.012922913111931644 at:0.012690452250034052 are:0.010702713108721902 .:0.010158075558988393 Mr.:0.009672788574483367 tho:0.009612591781990074 were:0.009549306361446321 :0.391314481702041 +the:0.27516767006728005 that:0.048936415267273395 this:0.04216463869822444 and:0.027953178893665005 to:0.026389614156718276 one:0.02233014425141245 in:0.019951113012792596 lower:0.01719394499924827 a:0.015915720786773162 each:0.014720013974178091 said:0.0139574013405219 tho:0.013712751836843382 of:0.011448697671266366 west:0.011269566424599193 south:0.010118456412299956 any:0.009712233298223153 upper:0.009598523858226833 front:0.009476552757636056 east:0.009375279900115642 :0.3896080823927017 +and:0.06642789406289233 was:0.02284786419564384 up:0.02125614496693863 out:0.02071604945427886 made:0.01947263295225617 that:0.01739606948596638 down:0.01653481669393844 placed:0.016514785901768574 work:0.015430188529799322 it:0.01520393786357185 point:0.015198227252568077 held:0.014762471997342137 is:0.014704883915299257 due:0.014334720506431002 him:0.013646221269840273 o'clock:0.013080439589245907 put:0.012189351750118847 interest:0.012038778706719216 place:0.011867948584847859 :0.645376572320533 +to:0.5665717935551151 will:0.08772214323232568 not:0.06043815004456197 shall:0.05231375710020288 would:0.03346120112719904 may:0.02984447016550891 and:0.027419772921267956 must:0.014527863718415895 should:0.011673313938213017 or:0.008816262474528623 might:0.008068836564812214 a:0.007873128407292915 cannot:0.007716380050714241 at:0.006816542721787908 the:0.00646780634963946 of:0.006298788061811391 I:0.005885214324676429 can:0.005857631645129107 who:0.005856852630698739 :0.04537009096609851 +in:0.2287186325585698 of:0.17233622050987518 for:0.09129824853855488 to:0.07797253659962387 In:0.06577901301803811 that:0.03975669416738854 and:0.03659600789948281 with:0.03100715696402002 from:0.02759617257163623 by:0.02647155184164014 at:0.016059275798792606 upon:0.01410065049310507 on:0.013883493803520648 make:0.010564458096095979 which:0.007817231822383178 as:0.007521745014305933 after:0.006486064751140518 let:0.00627202122588448 do:0.006205155401520808 :0.1125576689244212 +and:0.178958213168186 is:0.16074048344772973 was:0.07983675122955622 but:0.0749795285248162 that:0.07432252820263774 Is:0.05768461850162862 as:0.03570514962253559 are:0.021394127667340196 be:0.017958188209605635 were:0.017914822770895376 it:0.01600343328682941 if:0.015528938908801204 But:0.014338986302497707 for:0.013053405414060009 And:0.012833488216587424 which:0.011142115668244855 there:0.010400507199719704 have:0.008670329885324153 or:0.008669666531863584 :0.16886471724114063 +the:0.4080172390403204 this:0.15563605923637877 to:0.09359668601130385 a:0.07644139091229601 and:0.037148126458793694 of:0.028106242773402887 that:0.02493371610020377 tho:0.02475260240898735 our:0.018492080115471002 any:0.014421891334729122 every:0.012225522357008875 in:0.01124009314830056 or:0.010072580262938119 present:0.009073230657802085 same:0.00852717790833871 tbe:0.008283316384219854 their:0.008282338108308312 The:0.007662029657398327 whole:0.007601627337716005 :0.03448604978608233 +the:0.125244177620508 and:0.08175993685002995 of:0.06522069416930851 be:0.0548702739616459 to:0.05397973838865912 a:0.04481454131132746 in:0.02280340110740976 or:0.02038336764964828 is:0.019319010380680113 was:0.018270747950086045 I:0.014286571876306 for:0.013255035370608584 not:0.013226175954496275 been:0.01178939555333445 his:0.011478124918380829 their:0.011092690956782222 Mr.:0.010724349632519042 no:0.010703905414057096 he:0.01028438958216717 :0.3854934713520452 +and:0.07558940021936399 recorded:0.030196237618668006 was:0.028917161578042846 made:0.027969746247669736 that:0.027730098932509103 o'clock:0.025060522019555328 up:0.023026552239529506 is:0.020398277211376416 found:0.02003101797656537 placed:0.017482208134164214 out:0.016937164562539058 place:0.016819459500107596 interest:0.016629321966808677 him:0.016002796715253755 situated:0.01573420479581609 it:0.015128305982428461 them:0.014715943643665314 part:0.014646613000297721 interested:0.014450471929902294 :0.5615344957257364 +the:0.18482694796789073 a:0.061127348563765276 of:0.06033959459427592 and:0.05937530155351432 to:0.03273441807166842 for:0.01628567487558867 at:0.015494281879513995 The:0.013105622106446585 his:0.012463928318729584 tho:0.011785452230375136 be:0.011707835695508357 is:0.011037161280858146 in:0.01087029875334632 .:0.010370255663566745 an:0.010346152784238545 was:0.00991369395029814 as:0.009428595371692394 this:0.00930249084942407 1:0.009251786776505977 :0.43923315871279267 +a:0.25117099896292416 the:0.163654186093391 from:0.0452682281316852 in:0.04525812541898438 give:0.039595614695328366 no:0.03668220589315358 sufficient:0.03094321173692756 of:0.0274968029311066 said:0.024557794294363902 this:0.02449843652090481 or:0.02234403400108656 and:0.021673768544046554 any:0.019876744186046513 their:0.019513657471191326 his:0.017054992158123075 for:0.014679550880003917 In:0.013897438641415008 gave:0.013540200206165054 first:0.013135077957788772 :0.15415893127536368 +as:0.06931392982974462 according:0.052071562389565784 up:0.0511867300210483 and:0.040371568633051955 went:0.03351644485287816 back:0.032358406609281 regard:0.03073407747799069 feet:0.02852138506231652 down:0.026379903432040268 owing:0.02466642634685871 due:0.023695193974505355 go:0.022910973192184297 reference:0.020802802907016128 came:0.019883741951819873 sent:0.019874244915639484 attention:0.019565955494145405 come:0.01885185084678811 given:0.018792390567602263 it:0.017366961307524745 :0.4281354501879983 +of:0.3279779158046699 in:0.2893860802966112 to:0.07837437675075155 In:0.0494938317512365 for:0.03353230412634753 by:0.03121524694208426 from:0.027597511193698777 that:0.02413498190071536 and:0.02111993752632848 at:0.012967400955456482 with:0.01263542804954148 on:0.010623950656536027 as:0.009620527165508708 into:0.009237059443466311 iu:0.005878744005996933 upon:0.0057365934646001916 which:0.005637910820593308 through:0.005283420178394371 ot:0.00488710323678531 :0.033659675730677324 +to:0.14116657904931945 with:0.12159370884999614 for:0.09877887490205817 of:0.055057868713499526 upon:0.05230087733755565 by:0.04872255099775551 asked:0.043086769531705316 told:0.037034260547962224 against:0.033582088425885066 on:0.028018525917520975 made:0.020410254605218565 make:0.019856328725368935 give:0.016965504496641175 given:0.016239836402747294 see:0.015530194207629919 pay:0.015185838678829314 from:0.013527506595745734 at:0.013320211701016304 before:0.013304018645076124 :0.1953182016684686 +his:0.18436357188914013 the:0.1689832180143236 their:0.10822216098503248 of:0.05168237600051661 her:0.04976821143400459 my:0.04036649329870573 our:0.03909467927152938 its:0.028411924847877707 a:0.024137789534643954 and:0.019743846141279886 your:0.015285583855244278 both:0.014436019846482675 in:0.01426867884708702 with:0.012599232266378541 such:0.012187349931363016 own:0.01179387286310408 bis:0.010903498455956015 tho:0.010238926445102062 said:0.010072825501956116 :0.17243974057027214 +the:0.39749834532651884 a:0.07520030034269234 and:0.05540858759821703 The:0.03273515726769502 tho:0.030061875542463562 of:0.020144331424922633 tbe:0.014929647509541684 in:0.014268129706664795 or:0.013333166761078447 .:0.013287381914101323 an:0.009000188755386574 to:0.00880680429595084 :0.007943763822197133 Mr.:0.00773879605474787 by:0.007328417831573476 as:0.005922572098978465 for:0.0047526933692942485 that:0.004736121968310169 on:0.004594595720579333 :0.2713091226890862 +to:0.5732990267236904 will:0.06491871105273683 and:0.050634248503483296 would:0.033874478490944694 To:0.025905976781097954 not:0.01991823728998993 the:0.019038369055874686 you:0.0185992476462388 that:0.017277923385412963 we:0.014317844889953996 I:0.01333076827962963 they:0.013298327708378575 may:0.012853033044726311 can:0.01271638063642333 which:0.012413676512188542 shall:0.011877312614994695 should:0.011246379475409986 could:0.011011535143048489 who:0.009201552016195545 :0.05326697074958141 +of:0.28767355066866834 to:0.08775711267569858 in:0.08678131196995101 and:0.05160598694501188 on:0.04646139928102899 by:0.04519522654900943 for:0.044547789071328545 with:0.03396756772609607 that:0.033699232901107726 from:0.03075346596941143 at:0.027039283056790858 In:0.021061449543044047 as:0.017514234937992545 all:0.012543839382496166 upon:0.011844431150487573 is:0.00998972746569266 was:0.008814315973987914 into:0.008557199930727406 through:0.007781895704231326 :0.1254109790972375 +it:0.1328368873757587 he:0.1003357319227815 It:0.09297703653430568 which:0.08397550095262821 and:0.056063388377794184 who:0.04563943644422201 He:0.042448702284369214 that:0.03911140096881826 I:0.03791990169023376 she:0.02541610665052897 This:0.02072809548382384 what:0.015435284522915997 there:0.012951463323120808 this:0.011218540073171345 day:0.011064872978176677 as:0.010725769445989658 She:0.010017136131883576 man:0.007796225539930335 one:0.00753946965588912 :0.23479904964365816 +the:0.31530586500299035 a:0.20465521552771346 and:0.02880183877132791 of:0.0270628648353309 The:0.026108127464370693 tho:0.014615842846004807 young:0.01384815403835316 each:0.013339052887151938 his:0.012244902952693102 their:0.011492823931957755 as:0.01102703261519767 one:0.009781902073827252 no:0.009625244686240429 A:0.008902413714002553 every:0.008900720393661505 new:0.008390893422727131 by:0.007692186242755031 any:0.0074273133293434376 this:0.007192114320118575 :0.25258549094423227 +;:0.01458927046758731 it,:0.007973265891266864 him:0.007834970369143835 one:0.007240974664279108 in:0.006989508095588829 and:0.006417396987522371 ,:0.006059091806132192 it:0.006014614548599763 up:0.005812344146302806 out:0.005395853159197619 them,:0.005290532062834904 him,:0.004938420268273817 city:0.004793760033506698 :0.004646491011450349 man:0.004641061555670736 country:0.0046164671969483135 feet:0.0044416267197611185 time,:0.004376787347733258 time:0.004358244018157902 :0.8825693196500423 +they:0.1339461974459378 who:0.06449150759567976 there:0.05964669119660761 we:0.0585849824831157 which:0.04520706527438132 and:0.04286863407622332 you:0.03913729104764804 There:0.03396718801066769 They:0.03209640169845594 that:0.031200974702725145 men:0.019845671685432692 We:0.019418999595623168 people:0.013692363921183908 as:0.010974793792506123 them:0.008386153753557493 these:0.008192396320777473 You:0.006556364269777689 These:0.006145955695672415 but:0.0058114506320729896 :0.3588289168019537 +it:0.14980370725759037 It:0.1417831987182438 This:0.0994395734160535 which:0.06123870759127718 that:0.053827314535707556 this:0.0485319048157116 and:0.03481463816943127 there:0.03163351300029438 he:0.025874957304685715 That:0.02452637228711398 what:0.02101535076138451 who:0.020745118014465793 He:0.01553744098124584 What:0.015466571118696077 There:0.012715435083286795 Here:0.00825702518154719 one:0.007881347531268929 Such:0.007797349307744799 as:0.006397540204786528 :0.21171293471946415 +made:0.0999812034390529 and:0.06680208263369662 caused:0.02435411478715239 shown:0.02379785223577525 up:0.023253655008919294 ed:0.02312002180398423 out:0.022293807888227747 taken:0.021988971765594088 done:0.02128782706813444 given:0.020283609421760777 paid:0.017098570970207227 owned:0.01708227903067019 that:0.01698438626809451 or:0.016145946252097726 him:0.015808363688274 followed:0.015366441255538056 appointed:0.015126279845513936 held:0.013990473525433292 approved:0.013949758860964168 :0.5102843542509091 +and:0.2532289025239889 that:0.12526518151834815 as:0.11154142373279963 but:0.03956730158286195 But:0.03481132236900321 And:0.031030892126922085 or:0.024526728716133324 even:0.021837306658704113 see:0.017148635731991345 or,:0.013750027337421988 and,:0.012839119867505177 ;:0.010617949825317097 know:0.010609149433876044 That:0.009655317021755407 Now,:0.009561375790320504 Even:0.009025921930436198 asked:0.008779322692756513 than:0.008711989797935159 that,:0.00844312919811105 :0.23804900214381217 +the:0.4071374189315913 and:0.06449181461132415 of:0.02892866618288876 in:0.028670005984162618 The:0.02603617389223924 tho:0.024993820467459137 a:0.023579040051412606 to:0.01755553213771617 on:0.014626070241060114 by:0.013447843485786471 or:0.012794166593089693 tbe:0.012024509152999897 :0.010353482361299817 that:0.009291482237329618 In:0.007938246807075932 from:0.007526799010378873 other:0.007469196869028889 all:0.006409533041696086 for:0.00626887758057738 :0.26945732036088327 +have:0.14526260325758544 he:0.10618885521469443 be:0.1028061793482516 and:0.07775982195030778 had:0.06638473098280954 has:0.06341913924564536 I:0.057238850322841935 was:0.05417979642631916 they:0.04107100032881043 He:0.03274715140329017 is:0.03164278652927237 so:0.0260185677645636 been:0.023771462176040942 we:0.023441250967032812 also:0.01983919755394759 They:0.019828350868137345 she:0.019803846741394696 not:0.017281498622760228 who:0.01597639513579254 :0.05433851516050204 +the:0.7872181222771389 a:0.048611157722168015 The:0.03815849321743672 tho:0.03338226677216304 his:0.01639397219913431 tbe:0.009734214093520509 full:0.008015763784121215 firm:0.004675489227379431 their:0.0043369748380474955 and:0.00423172176405975 whose:0.003643671174912675 her:0.003558975483944113 no:0.003150630519851451 in:0.002677743616774654 its:0.0026060378951868975 of:0.0023105904026528164 my:0.002241144079291071 great:0.0022196722447686418 our:0.0018758686850494735 :0.019957490002398697 +a:0.22659080164859902 is:0.10892878747212333 was:0.08678419410119141 the:0.08553021461351908 are:0.07521991771842991 be:0.05343437316894053 and:0.05187244572915748 were:0.031106670814210004 not:0.028006754494452463 so:0.022317571203677375 been:0.022045745514999025 but:0.020402805836397676 that:0.019560438557145534 A:0.019086689312365405 Is:0.01590303239680618 of:0.013320709796733833 with:0.011018965809450705 very:0.0101024626382489 or:0.008851788233426338 :0.0889156309401258 +and:0.04491804315792162 covered:0.04018777062174743 filled:0.03439831602262882 together:0.027274277474498326 charged:0.021185110165574027 it:0.018970003064941 up:0.017480630635068384 him:0.016212955803671315 them:0.014293565819421733 compared:0.013525193832595763 connection:0.011614636799553067 parallel:0.011283394857871554 do:0.011130056469426521 loaded:0.010955317894446719 trimmed:0.010816708291869467 thence:0.01055173438898371 lined:0.010343364261696459 but:0.009666074941737286 troubled:0.009518829589372486 :0.6546740159069743 +the:0.35360206365437796 a:0.2734908813616163 The:0.06262583657171011 of:0.06083182292480151 his:0.03902273530137293 in:0.022055061290950653 tho:0.021104788164432318 and:0.01800928956894795 no:0.01654335100511042 to:0.016492481084055596 this:0.01346381900138506 their:0.013396150341118768 my:0.013170733375504414 any:0.01311008033888981 with:0.008809252889535744 on:0.00815909241182991 by:0.007378710990508082 your:0.007254397407193851 A:0.007197504233155528 :0.02328194808350306 +and:0.10981104784313248 said:0.05798867972750085 fact:0.0514883462640965 so:0.0456776975870275 know:0.03234792367262018 believe:0.030949853381258448 him:0.02893541139360796 is:0.028478833364586804 stated:0.023610355906769128 say:0.021886854974545924 all:0.021511757120930723 found:0.020381860552997354 was:0.018994956518860504 of:0.018298851045518885 to:0.01766907485085068 thought:0.015900466944022237 me:0.015875354448520618 but:0.01524131383420046 declared:0.015120104878301096 :0.40883125569065165 +be:0.3512140349728029 was:0.11422864531415002 been:0.09113398824717672 and:0.046381199886959656 were:0.04204438887816434 he:0.03737350896817112 I:0.03304397260880997 ever:0.032206075487126784 is:0.029485674083447433 not:0.021242613817058 being:0.020624293613948824 never:0.01893419755978764 are:0.018904187755962035 bo:0.015309610978850807 they:0.014192917292392217 have:0.01277045459096235 we:0.012412818075489301 or:0.009845964897310969 had:0.009600837335024145 :0.06805061563640476 +the:0.2002551837929341 a:0.18149511360103282 A:0.09317430970155037 The:0.02704694708598999 and:0.02658104695487103 of:0.019038304605473733 I:0.01699507789192331 tho:0.013847606955614277 -:0.013264486003233267 &:0.010439643521206613 .:0.009427338246996455 1:0.008709320572649544 i:0.008606694368098662 :0.008526519429976257 t:0.008000550318646639 a.:0.00789231285864874 was:0.007767008796431932 n:0.0071430916083040814 feet:0.006357208966250253 :0.32443223472016797 +of:0.43762840288151844 in:0.13673784392088892 to:0.09381192170223265 from:0.04038736711761391 on:0.03428170850238193 by:0.03393908546758814 and:0.026128818751509287 In:0.023518455153730116 that:0.020443918183965987 at:0.01899607187435643 for:0.017157986853412004 with:0.014807632916361325 into:0.011438493514388252 over:0.010282352300489558 through:0.009513433401083444 upon:0.006957320223290497 along:0.006496572404762179 throughout:0.006393522957199562 ot:0.006103282243285709 :0.043975809629941694 +the:0.8046881157316003 tho:0.04662888153461172 The:0.02250258400565551 tbe:0.017284706834960657 of:0.01643649338939025 and:0.00872111427491516 in:0.008223539287892696 by:0.005578085448789723 a:0.005556487197394169 that:0.004210985750208476 said:0.003420945078514563 on:0.0028798374726398696 tlie:0.002653591071168965 to:0.0025981384198474496 this:0.0025932162561835975 for:0.0024851075015572396 from:0.002408157199703012 tha:0.002344052614226546 :0.0023065498083316292 :0.03547941112240853 +and:0.0853105942861583 place:0.062047988571448255 spot:0.024697760374668556 point:0.022555508785361143 know:0.02136748685461337 room,:0.021152290497095893 that:0.020870354404648326 house,:0.017640787603514396 house:0.0174089052719917 room:0.016429462177399906 or:0.014645176744139057 street,:0.01255471409060943 places:0.011950131180608132 case:0.011634791931969323 home:0.011267882204818384 but:0.011022799506329135 was:0.011015328267843757 him:0.010710795371945981 city,:0.010707463725265971 :0.584009778149571 +I:0.653877820983565 1:0.0995935786789431 "I:0.053855105304531144 and:0.023796967954844803 the:0.010020920577745266 which:0.007667415118120444 that:0.007249849861997165 we:0.0066646380762774215 you:0.00596956698882027 he:0.005566071408667157 who:0.005218139795051244 “I:0.004580012194057668 'I:0.004126650234838849 to:0.0034142915065056736 they:0.003323749600888133 "1:0.003251201015758777 all:0.0029595266968404344 have:0.002888777032044837 We:0.0023907363035113108 :0.0925849806669914 +the:0.15606231714490149 of:0.11904878512304225 their:0.09252815335261574 and:0.09094821333106136 his:0.0811390827561616 our:0.06595859901549822 for:0.04289650185712353 its:0.027507561118374 The:0.02207446407092387 your:0.0219332541584519 or:0.020417744315081487 these:0.01934052577368242 all:0.018040329027659074 that:0.01726928200679541 by:0.016000287627780996 her:0.015491956700476617 as:0.015244735547200383 a:0.01486606813602948 many:0.014187730509707081 :0.1280444084274331 +the:0.16502439290893545 of:0.0811248089469917 and:0.07869477517984094 to:0.0497787250369944 a:0.037278399020249334 for:0.01871898370970909 be:0.018159883042119036 his:0.01710992450695455 in:0.015026834603223788 was:0.014887772478896935 he:0.013761540402066393 that:0.013522055084874899 is:0.012340392641871142 I:0.01106901636305509 their:0.01094937196714917 as:0.010598585011645857 on:0.010483793133636926 no:0.009851897040759052 tho:0.009420892636538888 :0.40119795628448734 +the:0.2936107075809972 in:0.20056837863789198 In:0.05025095662195363 of:0.047268519007052506 and:0.04095168882931505 a:0.03335702029340193 to:0.02121994752012146 their:0.019772758082625956 his:0.019292617070294244 tho:0.01833244210892988 at:0.016149721218405667 from:0.013829158801037758 its:0.013382424008703184 for:0.012685790299349372 with:0.012419756119598481 feet:0.012378852174412034 her:0.009964182764301159 this:0.009394395180977943 right:0.008755307994866986 :0.14541537568576354 +one:0.1028303141280697 part:0.05963429477052991 out:0.04766456937681193 some:0.031418679026461914 members:0.030764490253327767 side:0.029940657362655835 portion:0.022063658796890564 office:0.020457735219956013 member:0.019726706386316174 end:0.019666887540649894 tion:0.018667441728710307 parts:0.016814747270460957 people:0.014112771422418794 all:0.014072739582212475 any:0.013183573287639892 One:0.013083578354183906 that:0.013024335602903442 account:0.012482348155001894 many:0.012077825070275192 :0.48731264666452345 +:0.08813801284381541 it.:0.011921940026117543 .:0.010504798267023727 them.:0.008303546634375283 him.:0.007531047452556968 time.:0.007074112734832052 day.:0.006888889418830934 years.:0.006418947196608638 country.:0.005983761150767686 city.:0.005271533410840096 county.:0.005221419152414848 night.:0.004796102240271951 water.:0.00466454899704724 law.:0.004444392102585794 year.:0.004403655464366572 2.:0.0043487934142192675 work.:0.00389730558042972 ::0.003855713937345298 It.:0.0036827809733650536 :0.8016486990021859 +and:0.1327374737799352 or:0.07401086935405597 was:0.056040678479479515 but:0.03496936758450531 that:0.03258718498503154 brought:0.032200853534482606 days:0.03133119924000168 long:0.02828721453040711 Just:0.0278091362183599 is:0.026535449440798824 time:0.026478113551723356 just:0.026359235529214892 appear:0.023632996299761667 be:0.02305289148976038 laid:0.02052385019879112 weeks:0.02029621008296363 were:0.018211176819713654 never:0.01816631807904796 ever:0.018152758397903816 :0.3276170224040618 +and:0.05630346411310755 but:0.020160791339906094 that:0.019897393708183893 made:0.015890860205391794 to:0.013410182798323185 place:0.013286480051944398 or:0.013238171988798323 And:0.011625962520886365 it:0.00983728591014727 found:0.00925196291735202 :0.009029496178205183 provided:0.008240827027827266 not:0.007230754625989208 be:0.007158071216152973 :0.007147215024168865 people:0.006351795436295266 is:0.0063446487206990166 them:0.005998120169349154 do:0.005936805436355257 :0.7526597106109169 +of:0.09570204878392743 the:0.0707359746974548 and:0.05837914032872652 at:0.04022147105781117 to:0.04007891733645493 in:0.029323508469267123 a:0.020871361253712115 .:0.02021008851143439 :0.013358969474684637 or:0.012870803761238494 on:0.012577292739960529 for:0.01204519245692089 from:0.010315882754296561 said:0.00997639074862306 as:0.00864847228493654 by:0.008538115895230442 No.:0.008526001606119995 1:0.008135167799860767 his:0.007321068212291148 :0.5111641318270485 +a:0.7030804999744614 the:0.09403903054227027 in:0.055320734300352066 of:0.028639021152175346 A:0.024942136169896743 very:0.01775614130647643 In:0.012040419264888493 with:0.00777049206096218 at:0.004837125081635214 tho:0.004794893738051292 for:0.004599565086993894 two:0.0039836418642223365 The:0.003573495608085918 and:0.003272141765465979 by:0.0032578902249239183 n:0.0030915585902989455 three:0.0022214115540301464 its:0.002098519075194365 some:0.001829099092323237 :0.017852183547291733 +the:0.1327749767247033 of:0.06803977123258471 and:0.06715258407713427 to:0.06012346682386161 in:0.044632119153932774 a:0.030740907974035496 on:0.02575644505825522 at:0.01859841912641612 was:0.016027229480940406 be:0.013912841686852086 his:0.012997032113542016 with:0.012524646435608298 as:0.011506382660051764 is:0.011030143196535816 for:0.010732473444442637 In:0.010587862161685663 :0.010300125813921507 or:0.010251703462211914 by:0.010233316882514876 :0.4210775524907695 +the:0.1454500361787387 of:0.1080247151493501 to:0.04516715868785427 boy.:0.036249098323069925 and:0.03403580073245388 girl.:0.032660326140049385 a:0.03171979252021135 in:0.02714044436566853 for:0.02365213940166824 be:0.021942286684630472 their:0.021087116084698817 his:0.019774122064073623 was:0.014637031197642503 with:0.014008395154201525 are:0.012730720509515858 is:0.011363112041341867 as:0.011357870543086747 from:0.01063391638067422 were:0.010589399829418696 :0.3667765180116513 +the:0.09838521819236296 of:0.06502133604619956 in:0.05094835532322274 and:0.04046821211992712 to:0.0353830290008275 :0.023301377721406575 for:0.01827205319454739 that:0.015986138672680606 In:0.01572833346112659 by:0.011654189929203751 con-:0.0101769243315588 -:0.010164537728355428 a:0.009746729956829774 at:0.00973328044601241 on:0.00969598194560616 which:0.008886118602816594 as:0.00878108072045828 with:0.008570753214464653 .:0.007914131546702913 :0.5401822178456902 +is:0.12117074480283613 of:0.09764558815891813 for:0.08456590050776971 was:0.0798471489621656 in:0.07035170490504877 with:0.05773777895811812 as:0.05115127275160229 to:0.04618856417622984 and:0.03984255533383777 by:0.0398014329158676 be:0.03369325640805079 not:0.030655797413765448 make:0.023235091979161883 made:0.022997773159422284 that:0.021121442425926885 have:0.019411434274929903 from:0.019379810007277523 such:0.019011147586399227 Is:0.017592013729388293 :0.1035995415432838 +had:0.19429161517049506 has:0.18879916590883114 and:0.12545782387161336 have:0.07443784495406378 he:0.0528636655105605 was:0.04786693656500262 be:0.04105685446043412 He:0.027480244798329032 is:0.02168604307453185 been:0.01823962057332603 that:0.01586995958863033 are:0.015312165115181391 were:0.014712864864617104 which:0.012997249537597682 who:0.012792376513862431 having:0.0094452585121534 lias:0.008542055847551805 as:0.007779170776028508 she:0.007015872379392929 :0.10235321197779694 +the:0.5014021293731616 a:0.05787993636489882 his:0.04394097314855784 of:0.03902511061912886 said:0.029140815246046437 tho:0.025963216222265745 this:0.02226328577928553 street:0.017936304116419687 at:0.014474434663625331 their:0.014429917462498278 The:0.013918648712518073 and:0.01296991420026934 her:0.012329516364124413 tbe:0.01174786990937467 our:0.00859236816884843 or:0.007709159727358295 for:0.006388771176384088 old:0.006228720176302362 its:0.005757546747850593 :0.14690136182108154 +a:0.2267441258567235 the:0.21251174686632146 to:0.13480583394528572 this:0.040071802019670345 take:0.03835465401787121 and:0.03000142579732519 in:0.026930868137200432 took:0.025578336181974498 any:0.02182343000646928 same:0.021190918522537724 no:0.021122538633960772 his:0.018964255349981873 further:0.017163719872786407 that:0.016577472431690207 taken:0.015532193370616287 first:0.013416299737796468 tho:0.01239838285782051 of:0.011267883512531263 one:0.00880613722229923 :0.08573797565913763 +and:0.13494966609550382 of:0.07316641737364253 to:0.07075541455588646 the:0.058493680665523205 in:0.04957317167084668 or:0.034218196852765226 that:0.032957151083144585 for:0.023740081132267728 on:0.02372525113826427 in-:0.022059642840300344 which:0.021050432068915235 :0.019992650391152826 by:0.017069113882183004 In:0.0167310746783188 with:0.014170506894792975 from:0.013586836184279336 at:0.01266636453547691 In-:0.009826052731618101 as:0.009471218486562726 :0.3407970767385552 +the:0.32089832511794436 southeast:0.05909865294246787 a:0.05063152603534877 and:0.03936498641546197 northwest:0.026394889273485416 southwest:0.024935584731535586 northeast:0.02079876166358954 west:0.018678958445241044 east:0.018123175901036577 tho:0.017356124347697163 The:0.014973473044510811 north:0.011857433258965867 south:0.010877372744785995 of:0.01083681026584071 other:0.008629152263045057 in:0.008430128735116624 tbe:0.007908637255143167 as:0.007499492296374217 on:0.006683344989592506 :0.31502317027281673 +the:0.11675546992931742 and:0.08916801653741269 of:0.0720556258901496 a:0.02732352536197267 Mr.:0.02716611750804003 is:0.023280752130990113 to:0.021698468575189166 for:0.021101406516520177 be:0.020915966928273275 as:0.01966846876437344 are:0.019219389150560626 was:0.01669741365116616 or:0.01457335347914137 with:0.013787834002302449 that:0.013552741632541242 their:0.013257263656685355 not:0.0129237659965365 it:0.012761374009490331 The:0.011858531084960457 :0.43123451519437694 +the:0.1143813740681367 of:0.10725563490218938 and:0.07013929237617328 a:0.0672759526714516 to:0.03944702605759211 Mr.:0.032280789449834216 in:0.027269198971288964 with:0.021909795963145674 or:0.02061024109820549 that:0.019525534817269843 is:0.014252297178278717 :0.013083784932540853 be:0.012894570222885867 for:0.012197138456365417 by:0.010979979158896813 have:0.010972992252561221 it:0.010656148240659748 was:0.010307594572519506 he:0.010174940486945613 :0.373385714123059 +of:0.09129790931378902 the:0.07369883040827747 and:0.047842263382354346 in:0.04189055351593407 to:0.04045875475680249 a:0.03542341257202578 be:0.02020462051672066 for:0.01979292654746225 was:0.01760256398103379 at:0.017380150555488715 is:0.014984483003968216 with:0.014047653760730413 by:0.01374644383819499 :0.012670486581795598 In:0.01200961464556976 or:0.011563835749786333 from:0.011391516893522809 are:0.011273104484969465 that:0.010755276030689069 :0.4809655994608848 +and:0.0969485385926446 was:0.05412799742269469 that:0.050794924141119996 is:0.044145950078572756 be:0.032643543209545496 not:0.03133178683250812 will:0.02964315760663045 are:0.0277203379820695 it:0.02634238538258982 for:0.0251478366639681 as:0.024703806067602696 were:0.02321211376640231 them:0.021606562275715068 or:0.02111968758362666 been:0.017595384675380972 him:0.013975778324860966 now:0.01377423338962591 up:0.01348174280123463 out:0.012975560291876215 :0.41770867291133107 +of:0.12319168687436563 and:0.08945557838134197 to:0.06673676986041964 the:0.06005795045696477 in:0.03255977751586414 for:0.03130741504697138 not:0.02562086125031704 is:0.0209278170488395 or:0.020894370078573792 as:0.019778278976563625 Mr.:0.019358698613097466 that:0.01863517491396425 :0.018280455595463967 be:0.017695634354817497 by:0.017593479107182786 was:0.016369960402470293 which:0.01549149353498985 with:0.013560182868624438 a:0.01256964327698374 :0.3589147718421842 +and:0.14121024035413673 he:0.09420276889536677 was:0.07393574637476721 be:0.07112279788557432 who:0.03781648993365625 they:0.03728209114321569 it:0.0328444231193586 were:0.03206392053019403 He:0.027658172900032814 men:0.027607811962031267 which:0.025232664338470608 she:0.024743658894876706 that:0.022079014035187656 had:0.021874250893256585 I:0.020012884602909176 have:0.017221748919116 been:0.015262083631561079 lie:0.013456210230743813 has:0.013392965968064992 :0.24998005538747972 +line:0.0406029952145152 out:0.03348072800711011 part:0.03292869116592341 number:0.028085967484833663 side:0.022669389910828893 corner:0.02214324375939244 favor:0.021980264587535412 District:0.021345098609917557 city:0.020963244119706067 amount:0.01882664995443223 Court:0.01806902432330864 cost:0.01648350981580378 case:0.016138523712664627 power:0.01599895253606812 tion:0.014765187043838418 people:0.014669890274059046 man:0.014061919896397651 matter:0.013826236848517613 feet:0.013380029533703024 :0.598580453201444 +the:0.14728893376784055 and:0.053948104518930874 of:0.046848089309175014 in:0.039120985982799346 to:0.02753447253518972 be:0.02199898726566191 a:0.019853299162572426 as:0.0190211413467634 that:0.018293345318394265 was:0.016976884205155193 he:0.01487150702994379 is:0.014026462270998774 good:0.013504997355791975 In:0.01348806785246842 his:0.013484814732221934 or:0.012657723092915506 him:0.012126536236905293 for:0.010648866417900518 on:0.009531339341433994 :0.47377544225693713 +and:0.09787071543084067 that:0.03991205090281645 made:0.031221506457054484 is:0.02912125731490028 was:0.028890693791197214 placed:0.023433768096613405 as:0.021235169506767154 be:0.020980966078724454 or:0.020654644189757747 it:0.020370894604110082 them:0.02026104908955177 now:0.020235367218671932 up:0.018067424186665796 are:0.01741614296069905 him:0.016338116787566907 out:0.016198840522810645 but:0.016073331244865086 not:0.015666419619017713 down:0.012831635836605852 :0.5122200061607634 +the:0.17186949188796918 of:0.09613600487758009 to:0.06810989472881987 and:0.0671159178156827 a:0.04842755304971689 in:0.029606656037987913 be:0.02592226045891956 is:0.02133049953187464 for:0.021086273175484706 their:0.018418729535074327 at:0.018178161049898205 his:0.017948069219767125 was:0.017687920992466927 this:0.013169019954401257 its:0.013019007776548993 tho:0.011547047340633677 not:0.011018992573181827 or:0.010498610803800934 by:0.010366588313851233 :0.30754330087633996 +the:0.4435850713873465 a:0.16438498022342948 at:0.02928985291835411 tho:0.028641149316305778 The:0.028517782430511396 of:0.025221717608446662 for:0.01706956272625491 one:0.01566630983187838 and:0.014508922617307102 to:0.012087785277337339 tbe:0.011564971758618392 in:0.009322303465348632 two:0.008554383322924988 dining:0.00850236211900947 by:0.006859773803711206 vege-:0.006565998823341795 A:0.006565970865474371 five:0.006411169551442009 this:0.006359713096448454 :0.149320218856509 +it:0.013913383327319723 in:0.012032043667307885 good:0.008645597609604955 and:0.00845340516822051 ;:0.008141590296985702 men:0.007758575927957638 any:0.007376000944078286 him:0.0073198912483245695 up:0.007160504816288147 this:0.007010462217220925 them:0.006578937180614916 life:0.00612169360814661 made:0.006006760075849396 true:0.005975253118245389 time:0.00567933783375656 prompt:0.005423977940002636 it,:0.005216166099503274 other:0.00497119755838468 large:0.0046273464862427475 :0.8605878748759455 +the:0.22921865245242135 a:0.13863049324217142 to:0.056224912511540145 and:0.047534716668032564 no:0.04460166219318408 an:0.042296392299538375 not:0.03781783641457667 will:0.03506488354476199 would:0.031706795412191124 I:0.026233583173271777 his:0.021710591713052826 very:0.020559313870157556 any:0.01657538909456227 only:0.015427640125178535 great:0.015224659320795086 first:0.014689021692975054 this:0.014120203579900428 you:0.014073927949169316 tho:0.01352860608418406 :0.16376071865833539 +the:0.11919516938815296 of:0.07230453158552728 and:0.05781056740443249 a:0.043018564803886335 to:0.031305092790907506 in:0.020848713353460488 at:0.014270110001066288 .:0.012526810245749479 :0.012413283442322082 for:0.011719122709941797 by:0.010808400946589808 or:0.010404172990115616 The:0.01003576004804544 with:0.009811868184449042 tho:0.009295902015355835 was:0.008924239095331684 that:0.008672304223433876 is:0.0085591147338948 be:0.008335143826716943 :0.5187411282106204 +and:0.13286866991078145 of:0.08718072100786695 on:0.04991241906423682 to:0.04028334730847457 for:0.0360655499677978 in:0.03239299830046221 that:0.028982803822126434 by:0.025764061827049316 from:0.022327463412474918 after:0.020979421941665705 upon:0.018006746194275516 with:0.015710809997520073 but:0.009459915552851403 under:0.006833675731871435 In:0.006747448880996638 at:0.006315326374701391 through:0.006262686120924569 or:0.006097190590703398 :0.005638048548537602 :0.44117069544468185 +of:0.09129790931378902 the:0.07369883040827747 and:0.047842263382354346 in:0.04189055351593407 to:0.04045875475680249 a:0.03542341257202578 be:0.02020462051672066 for:0.01979292654746225 was:0.01760256398103379 at:0.017380150555488715 is:0.014984483003968216 with:0.014047653760730413 by:0.01374644383819499 :0.012670486581795598 In:0.01200961464556976 or:0.011563835749786333 from:0.011391516893522809 are:0.011273104484969465 that:0.010755276030689069 :0.4809655994608848 +the:0.158575765045814 of:0.1002110542825152 and:0.07188135978186176 as:0.06417433826146131 be:0.046541260627853395 in:0.03270814502397831 so:0.03246540295161048 their:0.03187123963932677 to:0.029326250344624563 all:0.02913450079498952 a:0.02869324498873205 very:0.026438489303620166 his:0.02410134687337356 are:0.02368562766730886 is:0.023061819563830303 or:0.022006623804883767 good:0.019701344801282748 with:0.01812371028644695 two:0.01658853875566133 :0.19970993720082494 +the:0.11919516938815296 of:0.07230453158552728 and:0.05781056740443249 a:0.043018564803886335 to:0.031305092790907506 in:0.020848713353460488 at:0.014270110001066288 .:0.012526810245749479 :0.012413283442322082 for:0.011719122709941797 by:0.010808400946589808 or:0.010404172990115616 The:0.01003576004804544 with:0.009811868184449042 tho:0.009295902015355835 was:0.008924239095331684 that:0.008672304223433876 is:0.0085591147338948 be:0.008335143826716943 :0.5187411282106204 +it:0.19081260047348533 It:0.11434762019232496 which:0.08445354828732143 that:0.054667974067336 and:0.04797480170927166 he:0.04362820069955318 there:0.039071712059276786 who:0.03305940847663193 as:0.02152515656051934 what:0.019061185972489052 This:0.016674899735934536 There:0.015370563145761424 He:0.014374608594371731 this:0.013675934458910386 man:0.008887456786954706 she:0.008516263082722136 country:0.007151313207256729 work:0.006986768925800481 land:0.00685940973547451 :0.2519005738286037 +the:0.16901085061637913 no:0.12634245556973517 of:0.10420113832135622 any:0.0754860724867532 in:0.06382421003597462 a:0.06351836568963144 his:0.038557116327436636 and:0.03134359569527423 their:0.026394271846408034 all:0.025546089051009035 to:0.02486785406883902 doing:0.023075807352500304 other:0.020740646909023042 that:0.020140735966669533 such:0.014474224650342017 without:0.014148780245443176 my:0.013845380787107798 In:0.013603103528967278 or:0.013547113974457658 :0.11633218687669249 +be:0.18202887879703697 was:0.09485810508689281 and:0.07611999691026426 not:0.06496930460305435 them:0.04230169206100598 is:0.041483749558111606 it:0.033758516348417075 been:0.032383002723408764 so:0.03202208348617622 were:0.02603727280534843 to:0.02439850637366321 being:0.02021997814332371 you:0.019573550017942434 are:0.019219039019751125 as:0.01813462329300143 they:0.01767378528890729 we:0.016815804873386648 bo:0.01635957584691423 I:0.015830973268258684 :0.2048115614951348 +and:0.09631219532671687 was:0.03513566928966104 held:0.02987715681559008 Beginning:0.024332169066967536 is:0.023122938489353394 look:0.022074108253454683 arrived:0.021820518428646088 that:0.021226918252779888 interest:0.02006974641058921 thereon:0.01971421054267379 made:0.019401567074562896 are:0.019271449916013022 up:0.01806602795372081 him:0.01678700722897829 be:0.016375054451444982 but:0.01586396852970274 out:0.015503094089883073 or:0.013721423267833084 not:0.012734170433403743 :0.5375906061780248 +of:0.28767355066866834 to:0.08775711267569858 in:0.08678131196995101 and:0.05160598694501188 on:0.04646139928102899 by:0.04519522654900943 for:0.044547789071328545 with:0.03396756772609607 that:0.033699232901107726 from:0.03075346596941143 at:0.027039283056790858 In:0.021061449543044047 as:0.017514234937992545 all:0.012543839382496166 upon:0.011844431150487573 is:0.00998972746569266 was:0.008814315973987914 into:0.008557199930727406 through:0.007781895704231326 :0.1254109790972375 +.:0.06145350361758748 of:0.057217752951528256 and:0.05111443697091423 the:0.04221382288129386 Mrs.:0.03025197231450168 to:0.02523021580879916 S.:0.021984391074277576 :0.018402468741943793 by:0.01769683303453687 H.:0.016559324575159545 M.:0.01530915933726461 Mr.:0.0150563980292169 W.:0.013836087577009737 A.:0.01381618690512263 C.:0.01353470740668449 E.:0.013043543885784284 J.:0.012511724146014426 F.:0.011749065463333657 Miss:0.011271346796207156 :0.5367470584828197 +at:0.5166395907083694 the:0.06509551919771348 of:0.06322479923009959 in:0.049074493816176415 to:0.03454877287822924 from:0.029569640138220592 and:0.023472235437927293 go:0.022053768238273874 her:0.015621982143314127 went:0.014887746276168665 returned:0.010819751497480249 their:0.01048271189888469 In:0.010400837840560258 At:0.009978053260250233 for:0.009194373422715523 on:0.008756564480975063 came:0.008106975192625173 thence:0.007931429057915801 his:0.007333110738666021 :0.08180764454543439 +of:0.25797169706052564 in:0.10763358227995891 to:0.10714339628780062 at:0.06452429328412206 for:0.05794899234963821 and:0.05324329095638701 from:0.04598867949312342 by:0.042124124522507786 that:0.03864092848477633 In:0.028531453852005922 all:0.026443797563054053 on:0.025416471205196568 with:0.02261772823226041 during:0.01452667870390516 upon:0.010933490536294816 through:0.009976649823264138 which:0.009870901825504437 as:0.009017568358709295 into:0.00880694672952383 :0.057639328451441346 +that:0.2604591165948226 as:0.09293075277684142 and:0.07603242207389153 if:0.07281671121158445 which:0.06068909128292853 where:0.052118049870758944 when:0.04793129197936202 but:0.03980425573798562 what:0.03387630663067231 If:0.021714257655359823 before:0.019699790067498404 because:0.017875842885993656 until:0.01661026726850103 said:0.01618516166501906 time:0.015576221681707166 whom:0.013999154462219608 than:0.012397596036867785 while:0.009927800352641687 But:0.009498620006437378 :0.10885728975890692 +is:0.2721796620365144 and:0.127841866430916 was:0.08783599919869214 not:0.04484743765565939 are:0.04400912925611952 be:0.041824290320220024 Is:0.040318681108961446 it:0.03790947936244623 has:0.030015606912692255 have:0.02843181685084997 It:0.022243789915566144 he:0.020163511972777926 had:0.01600905762609103 as:0.015609160765867314 were:0.015070402147289896 I:0.014455113150567099 there:0.013876858342709667 but:0.01362770417491191 been:0.013264442593686818 :0.09946599017746083 +of:0.12713283684853363 the:0.11927198115638435 no:0.10304508561994345 as:0.06657534868490775 in:0.06159022388332203 not:0.057065600036055236 and:0.05250182804851838 to:0.04758362649876863 by:0.04200956193534644 a:0.0339195589911284 that:0.03168677253774617 great:0.027216728213219375 his:0.022798253207557965 so:0.02184029584003156 was:0.02129246627244863 In:0.019733254672689552 its:0.019337072945928544 imminent:0.018712193174194987 is:0.01856042485637408 :0.08712688657690087 +the:0.16451401929308 and:0.08626693930900838 of:0.08337371647526251 to:0.04058748759358689 a:0.035752082971523345 in:0.03433389888915619 for:0.02600641948906744 that:0.022663309635732754 be:0.01183649153033534 their:0.011683027214361305 or:0.010272126333742165 as:0.01017437330026419 :0.0096848084637776 by:0.009348263014594687 tho:0.0088970903114832 very:0.007412697536065299 are:0.007117248865485606 with:0.007091370852009966 our:0.006952479954173177 :0.40503214896728995 +of:0.09129790931378902 the:0.07369883040827747 and:0.047842263382354346 in:0.04189055351593407 to:0.04045875475680249 a:0.03542341257202578 be:0.02020462051672066 for:0.01979292654746225 was:0.01760256398103379 at:0.017380150555488715 is:0.014984483003968216 with:0.014047653760730413 by:0.01374644383819499 :0.012670486581795598 In:0.01200961464556976 or:0.011563835749786333 from:0.011391516893522809 are:0.011273104484969465 that:0.010755276030689069 :0.4809655994608848 +and:0.19964807731997225 of:0.14432027499449784 for:0.0793491464482575 that:0.07508097123046968 to:0.053515250469673245 but:0.03456468194895943 with:0.030619335157737876 in:0.02869031297468093 at:0.020767094564685284 when:0.018822171156028498 from:0.01851266196280399 by:0.018136224488665146 on:0.01749788309389227 which:0.01677726683451081 all:0.014673841082575249 after:0.01382931603231704 or:0.013399350023140303 as:0.01284352167589111 said:0.012366910953391852 :0.1755857075878497 +made:0.0999812034390529 and:0.06680208263369662 caused:0.02435411478715239 shown:0.02379785223577525 up:0.023253655008919294 ed:0.02312002180398423 out:0.022293807888227747 taken:0.021988971765594088 done:0.02128782706813444 given:0.020283609421760777 paid:0.017098570970207227 owned:0.01708227903067019 that:0.01698438626809451 or:0.016145946252097726 him:0.015808363688274 followed:0.015366441255538056 appointed:0.015126279845513936 held:0.013990473525433292 approved:0.013949758860964168 :0.5102843542509091 +that:0.14463452548565398 and:0.11682634874950754 but:0.0832682979483771 as:0.04437360222101289 which:0.0442616849980281 But:0.025528367260673295 what:0.02238547034739165 if:0.021395592886368636 when:0.01920187680642824 :0.01795818179720117 because:0.01588173870506259 time:0.015311597731843565 And:0.013586465668642045 for:0.013193179693645985 If:0.013089618940677554 it.:0.011950143302786575 whom:0.01018344044570621 me.:0.010080990362803246 where:0.009702106176113381 :0.3461867704720762 +man:0.09992144728626386 and:0.059111775230139524 one:0.043755697253291224 those:0.030268358886037423 men:0.027561944322300153 woman:0.024878101644663753 all:0.015977039126904524 people:0.01141373999611368 person:0.01128055096740635 girl:0.010990758146254269 man,:0.010153241175566277 but:0.0066421298062370945 gentleman:0.005810285877788721 he:0.005042485389952717 wife,:0.005010827211119167 boy:0.004970377163264104 friend:0.004816407475637736 lady:0.00477991958101775 or:0.004461599525863101 :0.6121533139341786 +and:0.0963969323039728 Monday:0.06308936388438077 recorded:0.03532611340726418 situated:0.02196129464106979 feet:0.018659829548115705 held:0.015956065795554527 day:0.014228248764899138 made:0.013217066464363176 was:0.013088433528490267 land:0.012854840740239203 or:0.012603537157216663 as:0.012467651215676098 interest:0.012391463417691786 up:0.011518305474228005 that:0.01123520396463508 o'clock:0.011077188404196619 part:0.010301260920716338 described:0.010067201685252701 published:0.009100649934372767 :0.5934593487476644 +the:0.13841136538160959 of:0.08070248145806032 in:0.07318029914565588 and:0.04222315170280842 a:0.038643609263097616 on:0.03290226834522458 as:0.026690681849852706 In:0.024982767362133937 to:0.022938964570397697 an:0.019648672836051848 that:0.017173560701088077 from:0.014250881329168234 for:0.013760941339096906 by:0.013319695735314187 :0.013216700203558127 The:0.013101844595053447 de-:0.01266256184495192 with:0.012547136533110312 tho:0.012193264146452632 :0.3764491516573135 +of:0.3279779158046699 in:0.2893860802966112 to:0.07837437675075155 In:0.0494938317512365 for:0.03353230412634753 by:0.03121524694208426 from:0.027597511193698777 that:0.02413498190071536 and:0.02111993752632848 at:0.012967400955456482 with:0.01263542804954148 on:0.010623950656536027 as:0.009620527165508708 into:0.009237059443466311 iu:0.005878744005996933 upon:0.0057365934646001916 which:0.005637910820593308 through:0.005283420178394371 ot:0.00488710323678531 :0.033659675730677324 +so:0.13524075917071618 and:0.12136103507898946 of:0.11923299787172063 in:0.06157134747648478 for:0.054563308928475884 as:0.048316974894587424 with:0.041514271178861396 to:0.037517197696952234 by:0.03561231424655691 that:0.029352028015065194 great:0.028636552693295122 are:0.02590176496812561 too:0.024327630587168962 the:0.023666853462045643 how:0.020925972007729134 In:0.019011995934286464 is:0.015606222052552944 but:0.01382232936178615 good:0.012017385540618061 :0.13080105883398183 +and:0.18498377824542694 to:0.14268116496687627 have:0.05529854047453866 had:0.052586623631867155 of:0.04833080398113073 that:0.04054184838706959 has:0.04007283235532644 which:0.034466817456078346 he:0.03331932956422343 who:0.02935965553059149 in:0.028377703356347452 will:0.023614581381052314 not:0.02261940473430603 or:0.02101248958535891 was:0.020493535688617406 is:0.019378913569579468 the:0.018803693051436095 by:0.017868099465085482 one:0.01616586352932402 :0.1490243210457638 +the:0.14839542040226236 a:0.1254467511620872 and:0.08402730593508083 of:0.05235438784137763 in:0.02770699078492083 to:0.024907854679461112 that:0.020612088908513824 an:0.02029190323930342 The:0.01634156594921534 which:0.013810057824165098 as:0.012233843660367621 any:0.010053188784740654 for:0.009796550837608083 in-:0.009372645655410504 re-:0.009328151839090323 :0.009131619963772743 his:0.009130033064826295 tho:0.008735419813500112 with:0.008470851920071765 :0.37885336773422423 +it:0.12273783923177661 It:0.09008896657551452 he:0.07692209710512384 which:0.0729941204269956 I:0.05334961584351241 and:0.04280963942592476 that:0.03305217878998982 He:0.0322074686788861 who:0.02475821380662262 there:0.023902401289025186 she:0.02114067813918214 as:0.01461461731914763 1:0.011713576004034987 There:0.010774426548075014 This:0.009120594351646734 She:0.00893452151915139 what:0.008773054397375113 case:0.008040659566855691 bill:0.008007275079242794 :0.32505805590191705 +the:0.1503140714093439 of:0.13096813839279392 and:0.07136861003584416 at:0.04406203522875866 in:0.040116599676299144 Miss:0.03460260688743323 said:0.02632293955980913 to:0.019910307723344515 Mr.:0.018788833657227087 from:0.018449141230913332 Mrs.:0.016848897028525066 A:0.016545622685160705 .:0.014264744402631032 The:0.01240629993472904 on:0.01172846037358296 by:0.01120836605694557 that:0.010564723729835293 :0.010031985783661587 tho:0.010005883425785561 :0.3304917327773761 +the:0.12309989260278888 of:0.10650365669227244 and:0.0603915596750219 to:0.05420092932843233 a:0.0300507936595399 in:0.02175993218945993 at:0.020696538399600593 was:0.020019150362752952 is:0.018739938403620374 be:0.018583554604950505 Mr.:0.015519473133711497 for:0.014856836572986835 :0.01205300710638249 I:0.011081019068521979 not:0.010568196844536616 his:0.010484552027965492 by:0.010386045980405401 he:0.010149809184717265 this:0.010054368886058106 :0.41980074527627453 +those:0.10184927934540076 and:0.09863239893011673 men:0.05472265524896242 man:0.047749471184012 one:0.03215897670344182 all:0.026770215648331996 persons:0.019780830512313954 people:0.0192047942486712 person:0.01430701485715239 woman:0.010473657906804042 men,:0.009875037742945477 Those:0.009694071901886614 many:0.009399720047472436 girl:0.008380085342455896 others:0.008157974857821522 or:0.007617881523568669 women:0.005843752217335402 few:0.005832468963180014 man,:0.005469749018542863 :0.5030799637995838 +of:0.07606556924435048 at:0.05410261656481416 in:0.05311972888624476 and:0.04083779416527138 :0.039502837349885585 .:0.027057941325325224 to:0.0254264496618516 by:0.015365390664553873 In:0.014276353180802035 Mr.:0.01388073863141739 or:0.013701606072033856 for:0.01315786825526894 from:0.01087914714526989 the:0.009053003585286141 was:0.007694289843551697 with:0.007276100544279801 that:0.007140115818895359 be:0.005460776538729324 :0.0051333017223841254 :0.5598683707997844 +a:0.576377393787759 the:0.13904562390087474 and:0.06139880404911587 of:0.028897345420981744 be:0.01857859504610279 is:0.017288476306172994 A:0.015417473383916318 The:0.014953705896553229 was:0.013507483738762519 with:0.012982968872316706 in:0.010387835698234194 are:0.006608126295825591 been:0.006417561399689542 very:0.0055881940961125184 tho:0.005494237448934003 this:0.0052539024546484105 or:0.005011637748407339 for:0.0046090051594618545 an:0.004523114579765523 :0.046658514716365174 +the:0.5701428173352754 The:0.07963655609968989 tho:0.03033469938688192 his:0.023702979432774822 an:0.020639768043236795 and:0.018695682509821607 this:0.017593879339892246 that:0.016013005573125412 our:0.015845558156027204 a:0.013792885043417687 tbe:0.010139139447706355 Pacific:0.009512320708008988 their:0.008339043201162447 whole:0.006661516956479956 new:0.005369551208245234 American:0.005310609216680541 said:0.004707234262920121 these:0.004607717165093629 French:0.0041619634637867775 :0.13379307344977304 +the:0.2370021313004885 The:0.09706534420321641 this:0.07030129009170005 of:0.06949703860956175 This:0.06808595575553533 no:0.05746423263200446 and:0.04923176563816406 a:0.042879160259481845 that:0.031672358087355204 great:0.027972718995628 or:0.02207384295707648 any:0.021491079490388598 No:0.020266516386763012 much:0.018974887032219882 tho:0.01672394224792016 little:0.016154147156756633 their:0.015654571528529927 an:0.014647172407579826 as:0.013797799652741903 :0.08804404556688801 +and:0.20555766586647717 fact:0.05567205100925523 say:0.04544788595282482 so:0.042247800147230154 said:0.03698732313806184 all:0.03032441408333183 believe:0.02719195369416108 know:0.02711610957259099 of:0.02606960712108021 is:0.0257647217512691 but:0.022191088938219493 to:0.019851997195789076 found:0.018106215645372622 than:0.016726957274365423 stated:0.015538603244309276 says:0.015053975635810787 show:0.014728121247118798 think:0.013753736156650329 was:0.013554822999061768 :0.32711494932702 +that:0.13309242498982288 and:0.10518791493803169 as:0.06669283046507236 which:0.06316209426775093 but:0.047173487785610035 what:0.02593656091004242 if:0.025195867798930374 when:0.017057158747657186 If:0.016406905347166455 :0.013897286801220335 time:0.013195617314483439 whom:0.012884878490131525 But:0.012552745750394532 because:0.010833011767262207 it.:0.010273460043703633 where:0.009252800833372286 for:0.009027845580331206 while:0.008225127267158492 so:0.008034840968349308 :0.39091713993350874 +of:0.07365369122218475 and:0.06847514289472281 the:0.06592796802814331 to:0.05073217768621984 was:0.03603037369911224 be:0.02564355271117294 is:0.02095896119930631 by:0.01751002679224061 were:0.01654499424130086 on:0.01577567379622482 at:0.01569815598897338 from:0.015259740785168686 a:0.014630924627358148 are:0.014578536819683364 Mrs.:0.014005064360885638 in:0.013185414991808302 :0.011365700540839966 that:0.009857945859712275 for:0.009290198101860348 :0.48987575565308145 +the:0.12297636226751338 of:0.077430139346957 and:0.04542458240984504 a:0.03316656920456072 to:0.022216238401926085 .:0.02118249253685234 at:0.015399889658087588 in:0.014492392554946817 by:0.012329731595870442 :0.012122495615424372 A:0.010965897634042054 The:0.010547953245790474 1:0.009139071553294662 on:0.007834977957097542 said:0.007626308438830181 No.:0.007377530084044333 that:0.006744106647333384 tho:0.0065816815796327175 W:0.006131047296507327 :0.5493105319714435 +as:0.06931392982974462 according:0.052071562389565784 up:0.0511867300210483 and:0.040371568633051955 went:0.03351644485287816 back:0.032358406609281 regard:0.03073407747799069 feet:0.02852138506231652 down:0.026379903432040268 owing:0.02466642634685871 due:0.023695193974505355 go:0.022910973192184297 reference:0.020802802907016128 came:0.019883741951819873 sent:0.019874244915639484 attention:0.019565955494145405 come:0.01885185084678811 given:0.018792390567602263 it:0.017366961307524745 :0.4281354501879983 +it:0.20661626833118804 It:0.13133310388077965 which:0.05346195225056892 he:0.04322413433168328 and:0.0399221355018402 that:0.03638459118631527 there:0.02656324547693805 who:0.022588363007738477 This:0.01601752777676921 He:0.015090910728543903 what:0.013686208311658789 she:0.01181234484166701 this:0.011752239301455133 There:0.009749183368011116 man:0.007759333367156636 as:0.007068481254995637 work:0.006691860301109499 country:0.006039779831696346 but:0.005362639996269743 :0.32787569695361507 +of:0.09743965442124139 is:0.09616388980677916 was:0.08769042797879283 with:0.07834037387704773 to:0.05689498920164352 be:0.05145615513485318 and:0.05106740039507562 as:0.050491110195824106 for:0.04959256042319181 have:0.04345011696644958 in:0.03943103710344021 had:0.0370833110479624 by:0.026026146233575 that:0.025920208478991156 on:0.024229976964413126 has:0.022024292324852562 made:0.02196152385570899 such:0.020765300644450882 at:0.018407343416123868 :0.10056418152958288 +in:0.21361866819538164 of:0.10015439075163463 to:0.09174658439678078 on:0.05652562204267865 by:0.054930212699003556 from:0.053800904758746104 with:0.05373167810334797 upon:0.046095939790645926 In:0.04150275646746811 for:0.03527557867873188 at:0.02737751360816521 through:0.020451686420470176 and:0.019877920035511497 under:0.013975199609340678 after:0.010310748620116106 into:0.007773820479550836 during:0.00617879543604524 over:0.00592093902393609 that:0.005432617107744836 :0.1343184237747001 +a:0.416861513370151 the:0.12113700454560478 to:0.11311228412124759 no:0.04623783909161869 will:0.029861828096491003 any:0.024330509861753835 great:0.02417608922051257 this:0.020250241085151232 and:0.01448295311137194 that:0.014171696206078032 shall:0.013141803002777563 of:0.011011289549842066 his:0.010379586569155691 would:0.010162957896332855 The:0.009905521741261178 good:0.009730352324628998 not:0.00948212831641059 ex-:0.00920197504396156 or:0.009194672265424317 :0.08216775458022457 +and:0.040713363581033335 :0.040415750426389674 it.:0.03574390524702121 that:0.028215615052284877 them.:0.024761217764980796 as:0.013963513426093959 time.:0.012154814468500856 him.:0.010747361436922145 .:0.009813743390966951 day.:0.009650889862737677 year.:0.008999475039194245 but:0.008597475138630717 country.:0.008428841375733503 ?:0.008413711430280454 us.:0.008182495647925817 work.:0.007375579436290127 one.:0.00731102542873293 people.:0.0069918682152709894 way.:0.006900478825151045 :0.7016188748058587 +as:0.08028863813581227 and:0.05710370805904344 them:0.04215287271416632 is:0.039448151457076565 him:0.03317149761360965 was:0.028288739124803595 come:0.026942163017008476 up:0.025154864596446735 came:0.022535623906227965 it:0.021682491475674154 referred:0.02050207402086197 not:0.019674151472483248 are:0.01943574735100525 made:0.016339140073338494 right:0.015717465671531202 resorted:0.015345759046741701 way:0.014635183095975075 going:0.01441680666575218 amounting:0.014371740545373386 :0.4717931819570683 +of:0.4171530685822191 in:0.15364795170040718 to:0.072729747264764 and:0.03641551018325196 that:0.03587588251840872 for:0.02973515401421885 by:0.028615577548459153 In:0.025853498822230658 throughout:0.024539330146851564 from:0.02260509632580598 with:0.017713104405098146 all:0.015463704322556377 on:0.013151408020921742 at:0.011926809002406537 over:0.011916780548291015 into:0.011243032264786412 upon:0.008985432312382 which:0.00839901931127398 as:0.006922430890316839 :0.046107461815349804 +the:0.3418267349518218 his:0.07646289252146106 a:0.07214803964540538 of:0.06140677038702022 their:0.04907630517913213 The:0.025119514669516157 and:0.024898708056254146 no:0.023342219413053204 its:0.023091467904451327 my:0.022632152115018837 this:0.02168968028363622 tho:0.02168301835181619 in:0.020801352608387304 our:0.016187578025397237 any:0.013632906676554098 your:0.013331153460830362 good:0.012779921037801609 that:0.01174197103046754 tbe:0.011339018789336524 :0.1358085948926386 +those:0.13483222872003175 men:0.11255900040475482 man:0.0852418621115483 one:0.0638176050596883 and:0.05539817810635016 all:0.0372953463663575 people:0.03686582730818609 person:0.02089160483395539 persons:0.019163459888245398 woman:0.015500394940427143 Those:0.015367872224849685 others:0.011871683221223424 women:0.01074951464510175 many:0.008700692443161531 friends:0.007247775107637558 but:0.006767132638060302 or:0.006533540076978769 thoso:0.00643220191227023 men,:0.006238855371759848 :0.3375252246194121 +the:0.12221641016191408 of:0.07791325836513456 and:0.06550873635081135 that:0.03922600334683664 a:0.032693428406290866 to:0.030615079189955353 The:0.03018077939944665 which:0.02796993412975707 in:0.02695854216885878 he:0.019165267372850032 Mr.:0.01636178988931537 his:0.015350329196833292 for:0.01390720146877745 their:0.013837514348341094 :0.013006567102386492 said:0.012444932832827878 as:0.012384182494663503 I:0.011591132335265177 pro-:0.011570018328002828 :0.4060988931117316 +he:0.18875703055258852 who:0.08893872636377018 I:0.07003945129921593 they:0.0680939183074903 and:0.057654476906277945 she:0.04032597370323121 have:0.035551542428165626 which:0.03439339324028137 He:0.033429920149239754 that:0.031023432992542968 it:0.02229233702579923 we:0.01972426002930659 has:0.016931800829450123 had:0.014318586045410985 ho:0.012344468842107987 be:0.01203668628660564 They:0.011423857602738285 She:0.010385443376018528 lie:0.010383290398543951 :0.22095140362121485 +of:0.1699248630920106 by:0.11804988927983535 to:0.09757045999015543 and:0.08358285249736629 from:0.028791705893768692 :0.024506312216664067 at:0.023257088487980703 that:0.017677075004082287 for:0.016272791109446436 with:0.014367991858500689 Brig.:0.00864691497259134 in:0.008501754310697517 on:0.008349878269131736 against:0.006625354270733177 as:0.0064775775802002784 Maj.:0.006469915606632274 And:0.005817531876306564 upon:0.00566936588335029 when:0.004946439647744159 :0.3434942381528021 +No.:0.22566292321070627 at:0.11168710774067253 and:0.06591737564374922 of:0.06417356734711714 to:0.04976662834776786 ar-:0.024858132921532678 lot:0.02368690076420341 was:0.02132307641281007 No:0.020063241666554658 @:0.019851300554482972 a:0.014430257285875488 by:0.014155895318875695 lots:0.013219785384089291 from:0.01084269109755326 Section:0.010766190393768391 with:0.009969313333412647 is:0.009795380666956734 as:0.008413658013802268 Sec.:0.008116998777260633 :0.27229957511880876 +of:0.23688297991167712 to:0.08544137439647968 with:0.06831021025426992 and:0.06663029439293067 is:0.06132895290239589 in:0.05833124983479274 that:0.04356047760260393 by:0.04086631639624703 for:0.040657496436844624 was:0.026292763717021318 be:0.02198853247523512 as:0.01960183577437275 from:0.019081800932843593 on:0.018371348738530472 all:0.01753741543311244 make:0.015144175723713453 have:0.01455190543576532 under:0.013789973672113265 are:0.01309719629325165 :0.117533699675799 +the:0.0915335900683592 of:0.08623957910183817 and:0.08453996052524256 to:0.05182716540419391 a:0.05112382613819332 was:0.03507217842337165 in:0.03325509203706878 be:0.031707222498397344 is:0.023832590857147905 are:0.01936683931341562 were:0.015409496254233936 been:0.013549524880189678 his:0.013424642492319536 that:0.013283268036618903 he:0.01260927953636598 from:0.012204111849661277 at:0.012109849263184203 I:0.010925572465375332 or:0.01048540054545166 :0.376500810309371 +the:0.3784463447572205 and:0.09716864321289685 The:0.03499202008767915 an:0.03480479526183372 a:0.03456334614268619 of:0.033391709528858705 in:0.028591470676268656 great:0.026621553737632645 large:0.02077588696474512 tho:0.019117097741037887 other:0.017794084524018167 for:0.015145829145680289 total:0.014076637366597271 on:0.011361147761699069 land:0.010609220601492312 with:0.010598139749700732 best:0.010115834741845476 under:0.009480383182314287 or:0.009363765769252564 :0.18198208904654042 +and:0.09631219532671687 was:0.03513566928966104 held:0.02987715681559008 Beginning:0.024332169066967536 is:0.023122938489353394 look:0.022074108253454683 arrived:0.021820518428646088 that:0.021226918252779888 interest:0.02006974641058921 thereon:0.01971421054267379 made:0.019401567074562896 are:0.019271449916013022 up:0.01806602795372081 him:0.01678700722897829 be:0.016375054451444982 but:0.01586396852970274 out:0.015503094089883073 or:0.013721423267833084 not:0.012734170433403743 :0.5375906061780248 +the:0.1449641844563986 of:0.08710595808597107 and:0.060639991043772136 a:0.038971050768985306 to:0.035497607287402144 his:0.022269846080904755 be:0.02150484315278025 my:0.020367185734705945 I:0.01891633058414471 in:0.01859493769918256 for:0.017350580101599025 was:0.01676359899750709 is:0.015084084537449449 their:0.013269247511876204 at:0.012718929570411921 that:0.01170468572340591 or:0.011400632554895979 it:0.011330438956791117 :0.01130401752938815 :0.4092418496224277 +of:0.1265042758862421 in:0.11441487784445752 and:0.10908786681456804 to:0.10798363162332643 with:0.07787251571253218 for:0.06580317906410008 on:0.04968655297636897 from:0.044353561540914604 all:0.02530954003690248 by:0.02416538031349649 In:0.02246337982826744 that:0.022284686948455465 at:0.01723919408934689 was:0.016191102617855106 as:0.015663566946806956 upon:0.014787165545980743 took:0.01314669360321086 is:0.01244882615087065 take:0.012210128503168098 :0.10738387395312889 +the:0.2385864720410524 and:0.07261531591670993 of:0.05629036178500266 an:0.0179297667875155 tho:0.017296446285529034 or:0.01715147542416607 States:0.016729605730972062 gold:0.014788800076997856 The:0.01464925275687103 in:0.013234422395896462 a:0.013190239668969875 his:0.012516701827262318 said:0.010908119084516953 with:0.010854390397176209 such:0.010714207031580813 to:0.010440764222741846 I:0.010255523897599683 York:0.010137718247888077 our:0.010035791961549956 :0.42067462446000126 +the:0.1225076649597919 and:0.07161361224167645 of:0.06473629272949444 that:0.04958618514670853 in:0.028043918893866652 The:0.018977980784367614 which:0.018116365783577473 a:0.016457792131635864 Mr.:0.016204994403703713 any:0.014996833454149294 as:0.014951613809545558 or:0.014949554079500006 such:0.013882217367030407 to:0.013849308168220787 no:0.013167338522426214 he:0.012643594782225433 their:0.01149823381066073 for:0.011150101666402977 other:0.010739089653356843 :0.4609273076116591 +and:0.09588532020724828 is:0.08088156115972217 are:0.07762851420146898 was:0.06003116640311849 by:0.058797451926603274 of:0.04774322560456633 have:0.037627518167336726 had:0.03534605209418846 to:0.034644524166224544 were:0.03160789050746638 for:0.02713807261326996 would:0.025862671573421824 will:0.02555898070485113 with:0.020596493168395815 has:0.019690352242500604 not:0.018297077473187654 been:0.017906446354918663 be:0.017242410241654103 it:0.01675993892774865 :0.24975433226210797 +be:0.07327828084754177 have:0.07290709815293178 and:0.06795710930550683 the:0.06634417074907223 was:0.05685637394984343 had:0.052718175760859375 is:0.047170708370506124 has:0.04189820987416209 he:0.04093680998262247 been:0.03376600087275405 in:0.02681749947439145 that:0.025182512163515452 were:0.022301693903345146 are:0.020686911992976887 a:0.019660888440733302 as:0.018788852570240103 I:0.01595543787616489 which:0.015571177802704707 having:0.01340726674543043 :0.2667948211646975 +and:0.08907187526225738 due:0.061326072452554795 cents:0.028655992541901574 interest:0.027131833746069783 was:0.026696876912603133 payable:0.0245851782935158 up:0.022316899146385318 work:0.02226143089379074 up-:0.017516698000131704 put:0.016860116797769283 dollars:0.01673717996800393 is:0.01619705935214056 that:0.01592906912911007 bounded:0.015456747648667531 or:0.014913809096001977 feet:0.014902236666070158 out:0.01435133965850979 held:0.013968119527946184 down:0.013654265552379452 :0.5264671993541908 +and:0.017246598851730757 time:0.013311381220674512 that:0.012090279292145343 him:0.010163691007452883 it:0.00839242095242655 him,:0.007207046325902753 them:0.0071854629351653454 them,:0.007081065354302731 it,:0.00693607277321395 men:0.0065173475538715725 man:0.00636559651940846 said:0.006330079547308928 country:0.005748729015971705 city:0.005354708483169373 two:0.004935186224183819 ;:0.004825885521116268 town:0.0047971159323960235 time,:0.004767825611108904 years,:0.004490128586230109 :0.85525337829222 +.:0.08657162514842633 J.:0.06029967430218274 A.:0.054071334775719085 Mr.:0.05160583443380277 W.:0.04733571749018378 John:0.047169766482140746 of:0.038593563816328266 Mrs.:0.036199825607662404 and:0.03553461474461745 William:0.03198048528346744 C.:0.024537914846239295 James:0.023219566411991844 H.:0.022646062691527406 E.:0.020970534001379014 Charles:0.020110172650390574 F.:0.016113675712322462 George:0.014398195949117905 R.:0.014160487967350834 II.:0.01315742873401108 :0.34032351895113855 +to:0.09413126172693605 and:0.08161343981716504 the:0.06248336164999656 of:0.059161508905093654 was:0.029733063816477973 in:0.024195668372406515 be:0.02395558355071033 is:0.023748925873187565 a:0.021231811852397846 at:0.017161012587073324 he:0.01584053953758807 re-:0.01581927880004586 that:0.015715228741807412 con-:0.015279166675890667 or:0.014293179837722327 for:0.01292589137264433 I:0.01217104013984409 his:0.012061533047715295 are:0.012021913864289087 :0.435456589831008 +and:0.04491804315792162 covered:0.04018777062174743 filled:0.03439831602262882 together:0.027274277474498326 charged:0.021185110165574027 it:0.018970003064941 up:0.017480630635068384 him:0.016212955803671315 them:0.014293565819421733 compared:0.013525193832595763 connection:0.011614636799553067 parallel:0.011283394857871554 do:0.011130056469426521 loaded:0.010955317894446719 trimmed:0.010816708291869467 thence:0.01055173438898371 lined:0.010343364261696459 but:0.009666074941737286 troubled:0.009518829589372486 :0.6546740159069743 +the:0.24490834944022666 of:0.09361412340629367 good:0.057116608008989316 a:0.04972585090239667 in:0.049134037574804376 his:0.041807005754242836 and:0.0378806435163608 their:0.03467930429852749 this:0.02535156060573515 to:0.02441731988140232 great:0.024330286903636623 for:0.022303187557210086 best:0.020093254340290388 The:0.01834580907042859 tho:0.015352311483864836 that:0.015312021303736349 its:0.013927358754056554 her:0.012562796699482195 our:0.012029362723471592 :0.1861088077748435 +and:0.2655519048390818 be:0.0582909336110755 that:0.05606573471626595 is:0.04251532584102519 was:0.04111995219809295 not:0.032932378985457915 so:0.029695100371928216 been:0.02501960444435528 but:0.021982204010990103 first:0.021120979528123984 much:0.018954268519539436 this:0.01876744352131285 as:0.016835084644994325 one:0.01662279784501009 time:0.0164995458486949 now:0.015870848481717104 he:0.014867128893479077 have:0.013764858420844812 a:0.012895119325666586 :0.25962878595234395 +that:0.04491396647865567 :0.03141507460622384 it.:0.03009806037272198 and:0.02982896858920685 them.:0.0190319785859202 as:0.010794181125365829 but:0.01020686776872345 ?:0.010154832133098398 us.:0.009364008325124941 it:0.009326364459302112 him.:0.007328385938267306 time.:0.006417983423390573 even:0.005572332683997831 country.:0.005472937725629191 But:0.005430782179564795 not.:0.005405971134986462 It:0.005359808462434486 I:0.0053544746845768645 .:0.0049957763920787926 :0.7425272449307304 +the:0.4537696462905182 and:0.05597008912962447 of:0.05080319026910706 The:0.03994618173791477 tho:0.03171410581586355 a:0.02765700510333226 to:0.017827347871667676 all:0.017164827394079343 or:0.016112922064419572 as:0.015669872622542904 tbe:0.014757037949956026 their:0.013967493839261665 other:0.013189389756417546 for:0.012246619261978139 our:0.0114991256415441 that:0.011411207710703196 his:0.01116652514089362 in:0.010645947052377168 its:0.010593478416287602 :0.1628879869315111 +the:0.19746675160971328 and:0.1936969116693656 any:0.16796290765560007 no:0.08216223938561094 or:0.07630175695938399 all:0.03672149359971797 some:0.033242456095334244 The:0.025265550207420173 an:0.024895070491181805 an-:0.02026883356520319 every:0.01768947798669559 in:0.014199993578280811 with:0.013807821072010862 each:0.01369865018849747 of:0.013039726935443136 No:0.011053751087565738 most:0.009900375203971757 many:0.009242736335911373 to:0.008775082738850347 :0.029608413634241687 +and:0.07359963406644195 be:0.052667135004264946 to:0.04483536256874564 of:0.043448293679263235 the:0.03579172892628988 in:0.028005289969665195 was:0.026700397492138477 is:0.024892551934152005 re-:0.024162182625676702 he:0.024086629517294657 are:0.02098604388819216 from:0.020307931541148256 a:0.018606881911690538 or:0.018077853608073062 for:0.017195224169077532 been:0.01615904189338184 I:0.015254891559368164 :0.015184018660626356 which:0.015016145996292442 :0.464022760988217 +the:0.164622510216757 of:0.07124655442027641 The:0.06889686753552093 Mr.:0.06325252336407099 and:0.044366166073833896 that:0.04264168951999022 a:0.026935017441304315 Mrs.:0.021417054292642027 his:0.015373932368963752 in:0.015166387820743404 this:0.013228806556018961 :0.013136427543557318 tho:0.012055764911697249 .:0.010810741278177282 which:0.010410363554372798 Dr.:0.009964965976760979 to:0.00981126413214408 at:0.009089697865957478 when:0.008784665899295399 :0.3677885992279155 +that:0.23011683602319313 and:0.09063179368046492 when:0.0767147297272939 which:0.07640297092813808 as:0.0623803176954954 but:0.04482673879435248 where:0.04364496377060871 if:0.026136249058754293 because:0.019522988890190707 whom:0.018323934266141886 time:0.017315009140174906 until:0.017043885379439436 while:0.01659902087280578 When:0.01544114498985638 before:0.014624381510177005 what:0.014416351037299732 said:0.014005560678740338 But:0.012820254757860576 Then:0.011699672440306742 :0.17633319635870562 +to:0.610453532943891 the:0.09043038541912653 will:0.042375374591800664 not:0.034319752577903394 and:0.027931394937969558 of:0.024823632866936243 would:0.015804631046792743 this:0.015053575071747972 in:0.011867868299068308 shall:0.010911879076623339 can:0.009921918834492685 that:0.009673628467647842 by:0.008786666247942065 or:0.008736257449920199 their:0.008572615808370307 should:0.008194695068302322 may:0.007734682266617435 for:0.00714955802246776 must:0.0067565440420006 :0.03950140696037896 +and:0.09787071543084067 that:0.03991205090281645 made:0.031221506457054484 is:0.02912125731490028 was:0.028890693791197214 placed:0.023433768096613405 as:0.021235169506767154 be:0.020980966078724454 or:0.020654644189757747 it:0.020370894604110082 them:0.02026104908955177 now:0.020235367218671932 up:0.018067424186665796 are:0.01741614296069905 him:0.016338116787566907 out:0.016198840522810645 but:0.016073331244865086 not:0.015666419619017713 down:0.012831635836605852 :0.5122200061607634 +to:0.16915339664146828 would:0.09474781679412758 I:0.07184287362822452 they:0.06390833716990335 who:0.061344196802520755 we:0.053641330876370526 shall:0.04903216178562594 will:0.043214278083275215 and:0.041937396959299864 not:0.03695376230637563 must:0.03225255202572566 should:0.029589569381600556 you:0.027789602132943746 which:0.026690635995362064 We:0.02395593204112981 may:0.02213105202505795 that:0.01649958119345093 might:0.01621347417301189 They:0.015615980489580834 :0.1024860694949449 +is:0.16702806104084877 has:0.13267810238606734 had:0.11465088186067147 was:0.09569707451261458 have:0.09233982571237391 are:0.0742064319449362 and:0.040025928665625 Is:0.02823427834669462 were:0.025569179176318093 if:0.02378339696116612 could:0.021495894487284485 will:0.017187017027681776 it:0.016372598978374158 would:0.015349781805377478 but:0.013952935717483149 that:0.013351232071639607 does:0.011625194004606666 am:0.011179235555350468 do:0.010287875717871769 :0.07398507402701432 +the:0.33400431967665944 of:0.14658664011546976 his:0.09409466463030232 in:0.050104900035377826 a:0.04703810978761688 their:0.04241357088330795 our:0.024463312938806832 tho:0.02428644367187804 its:0.024217715010576644 my:0.02200855827686199 said:0.01936016367719664 own:0.015943087819986913 this:0.01466887980719044 and:0.014330976119547605 your:0.013533273253283965 her:0.012682434330664585 for:0.01221771299883033 good:0.011967079292817477 by:0.01192788828515384 :0.06315026938847049 +more:0.18800824848908204 a:0.1325495884582525 most:0.07065690221969168 very:0.055839572973798636 the:0.053624419678767514 an:0.044484995645148726 be:0.04148913231469711 and:0.03185204768410848 much:0.031775989279640614 with:0.030480142500886223 no:0.02689867813854154 in:0.02547623642931971 of:0.022151576677116144 such:0.01917742953554511 any:0.01798559716520043 was:0.01728557766044838 is:0.015430721577429446 been:0.014853828009954969 their:0.010568149284706799 :0.14841116627766396 +a:0.39397760403223464 of:0.07714705123720447 in:0.07245267801872882 with:0.06546831348119031 for:0.04939065391191968 the:0.04902733017165171 that:0.03694886039538062 and:0.03602787593044344 very:0.020985098165382698 In:0.020958913561972117 by:0.019440382299751858 A:0.017585422226896113 is:0.01652378135586542 was:0.013390012568137898 to:0.012915753888599576 or:0.011708753838390883 as:0.010747626342913416 but:0.009944248124330646 from:0.009714158545683712 :0.05464548190332198 +of:0.09129790931378902 the:0.07369883040827747 and:0.047842263382354346 in:0.04189055351593407 to:0.04045875475680249 a:0.03542341257202578 be:0.02020462051672066 for:0.01979292654746225 was:0.01760256398103379 at:0.017380150555488715 is:0.014984483003968216 with:0.014047653760730413 by:0.01374644383819499 :0.012670486581795598 In:0.01200961464556976 or:0.011563835749786333 from:0.011391516893522809 are:0.011273104484969465 that:0.010755276030689069 :0.4809655994608848 +and:0.18657651240620385 the:0.10752684649616222 a:0.08637186715857385 to:0.05268137265497805 as:0.050532760417354015 an:0.049348687648514 was:0.04620211080857732 of:0.04309993445380732 are:0.030683469237847212 is:0.025962491995765863 has:0.02541268904463346 had:0.023285931196868642 his:0.02290356036516037 have:0.022261539506337823 no:0.0215179101816825 one:0.02096765849758524 in:0.020457098885935592 be:0.019672122649215917 or:0.018913107256219214 :0.12462232913857756 +-:0.07366190332228055 and:0.023501222882795093 .:0.019083980450027065 it:0.017857572182776515 :0.01679834901808798 of:0.013041278358217395 the:0.012487693454554605 was:0.00862584396923596 It:0.0075248471648228735 i:0.006798087129339507 he:0.006651755835929002 is:0.0062961371078690456 called:0.006267367330276804 :0.0060638496962869695 I:0.005916097999150532 e-:0.005849599808646828 which:0.00544054994414751 that:0.0053187357056199355 an:0.005089762569398363 :0.7467253660705375 +the:0.13495043060413897 of:0.08116512228138067 and:0.0666484668031579 to:0.061479885922863124 for:0.0225472057129304 in:0.022258265482069606 be:0.02060705238488401 is:0.018128702512605167 was:0.016565762763359006 a:0.015576597161064762 that:0.014241236932705084 their:0.013967877427544685 he:0.012125594536493497 or:0.011887633530224664 will:0.011130101470498135 so:0.0108874112080436 at:0.010863400836486839 :0.010492776840493524 his:0.010323787803221298 :0.43315268778583504 +that:0.298271107806373 and:0.15231099468294887 but:0.05425708956536086 if:0.0365746785442632 when:0.036237276966220575 where:0.034875323325062386 which:0.03211973898294982 as:0.02981166807768261 Then:0.02053986173605224 But:0.01983693269486051 If:0.01908825092960859 time:0.018703219266474815 because:0.01148572386555154 until:0.010322078977824858 while:0.010268000802764871 then:0.010120350810279377 though:0.009627610782983168 said:0.00873978076280895 ago:0.008570928221952125 :0.1772393831979776 +was:0.19408192671929952 be:0.14594594699483152 and:0.11037178775172587 were:0.09296348220226075 been:0.08526354344043925 is:0.05223624590177485 are:0.04871441686393117 being:0.028328203463508738 he:0.019794467076643018 they:0.018601126961078327 or:0.014473987807406705 had:0.013958367614166196 not:0.011629538687772669 ever:0.009251932612965369 I:0.008837896951370603 have:0.00845714373905337 Is:0.008174404224471934 to:0.007729572097172012 bo:0.007325884421267997 :0.11286012446886011 +the:0.18449850575851756 of:0.13593914913391794 and:0.04448577544746227 in:0.04210145964984271 to:0.03285819762913328 on:0.03183694645188516 at:0.02820788051182575 a:0.02611621297325597 said:0.016391283310078997 .:0.013810591185967997 as:0.012727707933072957 for:0.010596895549169672 :0.010550055925913954 tho:0.008937196218535746 by:0.008590228829816172 The:0.008481680921657004 from:0.008076310529912555 his:0.007741656828590864 or:0.007582560970466476 :0.359469704240977 +the:0.11277754037168626 and:0.11241885788636145 of:0.0637394373014521 to:0.040265076146232065 be:0.03464719386300596 a:0.028880803939111018 in:0.026784441894105514 as:0.025711701620193376 that:0.023352528677561078 was:0.0184718202113903 is:0.017341319219995113 been:0.017330490155653543 he:0.01626517269532724 for:0.015772802512029175 are:0.0147898747356018 their:0.013186309725425336 which:0.012737872226919357 his:0.012028843703361684 were:0.011276923327828125 :0.3812209897867595 +at:0.27606819013735334 of:0.07610802430216188 in:0.057049068061995285 about:0.052310892655873804 the:0.050291720642669784 within:0.0456429745715969 for:0.041616441096752804 to:0.03774401831585177 and:0.03653312552150214 from:0.030779349315925075 than:0.02783104887738078 any:0.026397470410095304 At:0.02473722907095787 a:0.02377966079133917 In:0.02193467856254819 only:0.02088456547539661 is:0.01755666445653473 each:0.01733680749427727 some:0.014513843580126399 :0.09988422665966094 +an:0.11059805241171591 the:0.10081031785312293 and:0.05557286869393312 of:0.05078457843505396 was:0.04743420742242124 as:0.040461578039088356 so:0.0377590912204348 be:0.03625725260768876 is:0.034937243475795965 very:0.032379775676811016 are:0.022793938168197057 her:0.022411002771878918 in:0.021508122300229155 were:0.02112891073343674 with:0.020209717593935212 not:0.019980526403218707 to:0.01954552551237324 too:0.018358288351054186 his:0.0181235114160491 :0.2679454909135616 +and:0.06579398286638848 away:0.05092448249527264 taken:0.035654573129103216 him:0.030919702088905418 it:0.029194400569195568 them:0.027669799449915607 received:0.022861975363117227 free:0.022382656559499586 come:0.022056435429032368 out:0.01975270367489328 made:0.017731713628160096 derived:0.015544700821455606 years:0.015284143360055246 came:0.015049947780869958 up:0.015042988346702037 year:0.014532188599427424 suffering:0.014064325943154769 arise:0.013552415847547334 down:0.012746766261625337 :0.5382400977856788 +and:0.0353467218412652 held:0.029487803488757534 arrived:0.024346847605232518 2:0.02330087049525455 closing:0.016722823781852855 3:0.012543672358938144 land:0.012420599562781848 made:0.011812870245699924 them:0.011793031541668485 interest:0.011194237762594365 to:0.01089513902098884 Beginning:0.01030478979999547 sold:0.010066914475306134 as:0.00921753403473028 here:0.009121253019366973 or:0.009104905316115974 met:0.00861104106740425 was:0.008576716972201628 :0.008409332866797797 :0.7257228947430472 +more:0.4310705316291733 less:0.15632319038130857 rather:0.06110111694270524 better:0.038642804337337834 worse:0.017117644494043807 other:0.01649005566199778 greater:0.015021029223112513 higher:0.01102119545101921 lower:0.00879039411536375 moro:0.00853831462559564 larger:0.007835085261698472 and:0.00736794233490985 More:0.006540250136523236 faster:0.005740761757319982 longer:0.0056960491360392735 mora:0.004841408566058332 it:0.004583643596866061 leas:0.004575310776690073 time:0.004148439686842577 :0.18355483188539454 +two:0.10248864397052178 three:0.09249045578550662 many:0.08289640328158597 four:0.08032918169165092 the:0.07345162307465453 ten:0.05897135832820883 five:0.05349309812052977 twenty:0.04489250446785105 few:0.04441886539164644 several:0.037293860888062726 for:0.03574792344618116 thirty:0.032985379115482626 six:0.02430467332124371 forty:0.02259941986124395 fifty:0.02243482147244437 seven:0.0217868060770386 eight:0.021301297948683164 fifteen:0.020684534966289088 of:0.019854650065414026 :0.10657449872576068 +of:0.2505819370604673 and:0.1047588772125816 the:0.09813493385348937 in:0.058102244096955795 The:0.049048322710976686 that:0.03292567066680982 their:0.028262794982540328 all:0.027988988738749693 for:0.022619604321080594 his:0.02231725125389432 This:0.019671886829816097 as:0.018659467386486793 these:0.017576547012352003 its:0.015542590502013263 or:0.015161581865314327 whose:0.015025262681115375 an:0.01187897191424251 with:0.011344649364344114 His:0.010996522846059304 :0.16840189470071074 +of:0.3118460501119852 on:0.0926946782537144 in:0.06966353426577412 to:0.05982813276285869 and:0.03943851487703711 the:0.03621861345302003 by:0.030498259247754934 from:0.029119123234427544 at:0.02734168294583219 with:0.020247662128436653 for:0.014397552809766125 In:0.01327289244584227 as:0.011932991464068298 upon:0.009328212945647663 that:0.008522222290304545 ot:0.00792426426695248 near:0.007411897612006953 a:0.006504877212236431 against:0.005858511293710097 :0.19695032637862428 +of:0.2330188388104117 in:0.11675181541607631 on:0.11590921775584453 to:0.11461712878958906 and:0.051761307469912095 that:0.042313665405368024 with:0.03919973066113418 from:0.03120544400582135 for:0.030345352581526958 by:0.028659119827165225 upon:0.022593366862279897 In:0.020916120075120097 into:0.015439716250272684 at:0.015340564414253988 under:0.012781146477569843 over:0.009597909191512724 which:0.009399399990118138 through:0.009225210364499248 as:0.007957602461371538 :0.07196734319015247 +made:0.0999812034390529 and:0.06680208263369662 caused:0.02435411478715239 shown:0.02379785223577525 up:0.023253655008919294 ed:0.02312002180398423 out:0.022293807888227747 taken:0.021988971765594088 done:0.02128782706813444 given:0.020283609421760777 paid:0.017098570970207227 owned:0.01708227903067019 that:0.01698438626809451 or:0.016145946252097726 him:0.015808363688274 followed:0.015366441255538056 appointed:0.015126279845513936 held:0.013990473525433292 approved:0.013949758860964168 :0.5102843542509091 +the:0.1882757372623273 of:0.09631575289685654 and:0.06488773840630684 The:0.05038895765153287 Mr.:0.03437438790607915 a:0.029267903738761532 that:0.028473020165416824 this:0.016205283336259414 to:0.015956985836291154 tho:0.013549437909719327 :0.012839473435125173 for:0.012795757732501469 in:0.009443896478801346 .:0.008666460731834243 as:0.008383348020006032 by:0.008175748217609712 or:0.008031271955296588 his:0.007933319469542052 Mrs.:0.007295967617711322 :0.37773955123202113 +one:0.04725732542899101 and:0.031098712142095298 that:0.020093545124659853 be:0.013118212307044094 is:0.012520528411798924 men:0.011018681500183277 work:0.01061563363446793 matter:0.010059492450431053 some:0.009893858417311085 out:0.009020022429956502 are:0.008768683361587367 amount:0.00853407964624522 or:0.008527843282199871 time:0.008519016341311698 pounds:0.008299216023384943 number:0.008281150680387803 only:0.008158686082097766 but:0.008075485932111874 nothing:0.00806314209548793 :0.7490766847082465 +they:0.14799081446617648 There:0.06438458385409412 and:0.06160975242029391 we:0.055738115548681556 you:0.048667707062859965 I:0.04855914243271872 They:0.04350817365236417 You:0.03982511984875614 it:0.03353577285537645 which:0.028269725848000696 he:0.026755884950447964 who:0.02499441363493665 that:0.020946524327890462 We:0.020749107599239612 there:0.019306036903704263 It:0.014177170262265905 as:0.012043246115983043 but:0.009292796977043313 men:0.00806820193047246 :0.2705777093086941 +of:0.08652918306303438 and:0.0720624923224962 to:0.047457771928713914 was:0.030367514364775968 is:0.028739158375907917 on:0.028138849554110012 in:0.02550921643115364 be:0.02423389504332552 the:0.02312065863268702 by:0.019727040550203686 for:0.018826298657230064 or:0.01733283599646333 are:0.015659490357707473 it:0.01519245884158802 all:0.012630138232102973 have:0.010609619181325492 In:0.010562686160883013 :0.010444711344454906 make:0.00985790459718239 :0.4919980763646541 +of:0.21705529675002308 the:0.15125684598919975 and:0.07762294251904704 in:0.037195070713200315 to:0.032458157322535576 a:0.028637443711082 that:0.02554270220573299 by:0.0232415400403714 as:0.021041752270714816 for:0.02095716019170065 with:0.017133654928223677 or:0.015325774272918032 all:0.014235709498362475 on:0.01318178794929262 The:0.011070428147312643 which:0.010081035399830553 other:0.009936687709513543 from:0.009836756936532184 tho:0.008788386286958643 :0.25440086715744803 +and:0.06926557982302409 you:0.060408492592020295 that:0.05405485433094767 to:0.04804757644970272 of:0.04630555963952157 in:0.04238777717938228 have:0.04207199391870959 had:0.03803423826456656 for:0.03623649453770127 is:0.03413510165783273 do:0.029853314171372602 let:0.02970132836155003 not:0.029080405839924092 by:0.02853355442604534 with:0.027479491590402087 therein,:0.02079183770070341 on:0.02066513691635659 has:0.020100200064889526 contestant:0.019745333327113562 :0.30210172920823397 +it:0.17919824768026574 It:0.11899386451103285 there:0.07346360470486527 which:0.05225230718544703 they:0.04641619335773507 that:0.04192124155395412 he:0.03957048582491494 and:0.035253100689259534 There:0.02796624983890546 I:0.018721002707963057 we:0.017651434188838702 you:0.015294756461088244 man:0.013919793670076737 one:0.010205906425646862 work:0.009927234298320483 who:0.009840907332144214 this:0.009589326281629148 service:0.009412730711036632 she:0.009226688142499937 :0.26017492443437595 +the:0.16474145362541381 and:0.11265816560740821 a:0.08302156937561529 of:0.04480200201296586 to:0.042028228584109505 or:0.029427828699319036 The:0.02273880942652594 he:0.022476275729260194 that:0.020490444399394115 as:0.016054464881173593 for:0.015701117621092005 which:0.014653046657770936 not:0.012247238818820417 I:0.01223122089505665 Miss:0.012011104936088072 tho:0.01178858309815021 they:0.01172442249017671 his:0.011716115931526667 said:0.009653507773579026 :0.32883439943655374 +and:0.1257777623195015 not:0.03497187747220983 done:0.03178924996209117 it:0.029600196955811495 or:0.026704554694139716 is:0.0264315869553034 them:0.025688613186935206 him:0.02567202707164628 be:0.023229084782483367 do:0.022418274809281658 thereunder:0.020382046214363334 was:0.019948079979943353 made:0.016518812939191628 you:0.016133616656054353 that:0.014451805309841149 but:0.014405353814990224 out:0.013921170119317967 are:0.01214482600004939 now:0.011925496971002508 :0.48688556378584247 +a:0.44857946693415696 last:0.1474929934887333 the:0.10117609568405632 this:0.06044617320139499 past:0.04014944083468043 one:0.034935637846186675 next:0.03484614420474812 every:0.016519684916140375 A:0.013681787730155427 per:0.009077940848343496 each:0.0077964954051687645 that:0.005960741706852754 first:0.005746944314199334 One:0.005561005171482258 to:0.005303891762323563 The:0.004687420010006815 any:0.004423779063376133 tho:0.004384830324032578 same:0.003936576174517445 :0.04429295037944421 +of:0.15767110907443385 the:0.09390958941688084 to:0.07937379184522743 in:0.049452325475464805 at:0.0389829884401452 and:0.034664483891741926 for:0.031387847767756355 :0.03125033681680657 by:0.025195971259296228 a:0.023093898703185404 on:0.01889529930855796 that:0.01851401437548352 with:0.01625343710041798 from:0.015488252579774119 In:0.01443750643812837 or:0.013378411449954084 The:0.010982412434542222 which:0.010095834383186328 as:0.008180251002331046 :0.3077922382366858 +is:0.11852008984255555 of:0.08939186844734127 was:0.08514032189887781 and:0.0796191565504778 in:0.05841897057277058 as:0.04141517031113783 to:0.03527418704711287 by:0.03208349761601984 any:0.0316178936538981 no:0.03129759887347578 the:0.027925111379291493 with:0.027276745378366836 that:0.02553986982270336 only:0.025049036289369744 but:0.024821881507018136 not:0.024674263954361692 for:0.024307050149215317 be:0.022936841776455594 from:0.02241706127132092 :0.17127338365822947 +hundred:0.02334136986593815 up:0.005482494641173394 men:0.005366536521246011 Hundred:0.0047587970519216575 John:0.00441808156134956 William:0.004390720675819281 him:0.004016828614280843 ;:0.003997112205305733 due:0.003721199871732 in:0.0036582900032443304 time:0.003637206863828461 James:0.0035594902370151707 out:0.0034878448964120057 .:0.003467980723571515 1:0.0032804584819785204 day:0.0032444781513863933 ,:0.003058139385740603 :0.0030314555521939613 Robert:0.003005471634785646 :0.9060760430610768 +the:0.0761699747584507 of:0.06910894337301239 to:0.057426693761628046 a:0.04722510727028135 and:0.041113695383597756 in:0.028175857521325946 be:0.027974353909431027 was:0.023012276842095766 is:0.020455907852280766 at:0.015315990474711083 his:0.015005119700540654 that:0.014222259680552646 :0.013114492114599044 be-:0.011687755181736238 by:0.011190835051306355 from:0.01044988745123263 with:0.010430562728357911 for:0.010286327173007152 been:0.010131793821093036 :0.48650216595075946 +and:0.061219861684391266 of:0.049085939130235096 the:0.03937466864886614 in:0.0357526313755096 was:0.033393796407879144 at:0.03323433451712842 on:0.02441440853439284 to:0.02438807245744478 are:0.021804384696366474 from:0.02083670844965538 be:0.0206655624600364 is:0.017843461059493512 for:0.015943558804957934 kept:0.01427503431360733 all:0.01369675100808479 were:0.013574343962195768 not:0.012958814542779295 In:0.012895686776349448 that:0.011749890280609214 :0.5218920908900172 +of:0.2454506578910833 the:0.23908790419207954 and:0.05900613703351795 with:0.03308331961919089 to:0.026417361226321975 The:0.02593307704241715 for:0.023841496012024076 by:0.023507725650113644 at:0.01630067918497399 :0.014786343209850046 tho:0.01239082385344919 in:0.01216986731838011 from:0.009136544589224279 our:0.009074022438087066 a:0.008307369835358132 tbe:0.007285801104143777 that:0.0064714441765463876 good:0.0062305196614578255 ot:0.006091141477635871 :0.2144277644841448 +the:0.11403343429147617 of:0.07311736833767817 and:0.0691838576865086 to:0.05117975401213448 in:0.04144552200710057 for:0.03573655168986364 that:0.02309170921252143 one:0.016885280377899218 by:0.01572504363178866 on:0.013479381618673805 a:0.013448584123988321 I:0.013195296579503255 be-:0.0130814583697368 :0.012951363476691296 In:0.012606020208050007 which:0.012515648283394942 in-:0.012262199040703812 there:0.011947828328442177 was:0.010422513114457698 :0.43269118560938696 +that:0.26371201840853314 which:0.08407706422037417 and:0.08370287991048475 if:0.05519030707485451 as:0.0532986282694471 but:0.04692510260970879 where:0.04614162331229497 when:0.04391988831704455 If:0.025337838206082937 because:0.021305447905250404 what:0.016647431339012645 whom:0.015888634653521132 said:0.015725518150923695 until:0.012396136526321662 for:0.012083811179246572 while:0.011775538902275829 though:0.010447683428889484 says:0.010358309072079519 But:0.010270309084233578 :0.1597958294294206 +they:0.1339461974459378 who:0.06449150759567976 there:0.05964669119660761 we:0.0585849824831157 which:0.04520706527438132 and:0.04286863407622332 you:0.03913729104764804 There:0.03396718801066769 They:0.03209640169845594 that:0.031200974702725145 men:0.019845671685432692 We:0.019418999595623168 people:0.013692363921183908 as:0.010974793792506123 them:0.008386153753557493 these:0.008192396320777473 You:0.006556364269777689 These:0.006145955695672415 but:0.0058114506320729896 :0.3588289168019537 +and:0.0966380024249105 committee:0.026489213766870832 that:0.022273918260878496 Committee:0.02124440979159472 place:0.020482642770685757 work:0.020359889825173675 was:0.01815339190819148 held:0.01729073175892344 called:0.015422788546988853 day:0.015165991761386785 down:0.014971533422135775 up:0.014856817579123565 going:0.014270172047870093 point:0.014116806112380826 out:0.013760729323875533 made:0.013400247915985288 placed:0.01309186160780142 due:0.012809783998744235 feet:0.012642254034862094 :0.6015588131416166 +:0.127690086611812 it.:0.010699674412323001 them.:0.010343180342540104 and:0.008955617821723728 country.:0.008440223716643967 beginning.:0.007599878209038788 years.:0.006435880872714113 time.:0.006082953387016886 .:0.005967571126693301 of:0.00545404529410658 people.:0.0045441965899964635 less.:0.004538135516156199 States.:0.004304485119965962 :0.004035997063896841 2.:0.004026411355607902 acres.:0.003970050072185947 life.:0.003938172672773465 year.:0.0038787923128992163 him.:0.0037463408750229078 :0.7643483066268827 +of:0.2031087407727355 to:0.1338039620819778 in:0.09098487513166004 for:0.07674284538371337 on:0.05690704030074929 and:0.05562025183833483 that:0.045389528261688156 with:0.03665067756332012 by:0.03613364090665448 from:0.033449298818794375 In:0.02407280047446971 upon:0.021578589750195352 all:0.021537349550161577 as:0.01351173925518171 at:0.012384701121074787 through:0.011342703118314876 into:0.010045112085143838 is:0.00992672355748956 under:0.0091630341926885 :0.09664638583565216 +a:0.48127408267239546 about:0.19781139827847743 nearly:0.03959304968781857 than:0.03318168189198077 within:0.02672463219686925 at:0.02426663058333578 over:0.022323486631797045 only:0.01663154361594364 the:0.01451310194745465 in:0.014360680073128787 least:0.013875486102932523 for:0.012339809665668753 one:0.012092612621714639 About:0.011216944022170312 or:0.010964333912750776 and:0.010614295603551158 of:0.010074313827435536 some:0.009958213226928792 A:0.009415854656812614 :0.027767848780833514 +to:0.5593018123140528 and:0.1274441844414959 will:0.04727171736045736 not:0.03586388272916819 would:0.025917806400546056 or:0.016022903741689753 I:0.01419598705045874 we:0.01151680893126874 shall:0.010735948772414692 must:0.010160927104567508 an:0.009212822576034988 Trains:0.008155047928590578 that:0.007977711801451888 may:0.007608168800437666 they:0.006717845838586491 could:0.00661432549607731 you:0.006519895479842363 should:0.006215916136873293 can:0.00575257519487001 :0.07579371190111561 +the:0.22132860267454618 a:0.11999907001369955 and:0.0869887978877571 he:0.026536699347057574 be:0.024906751893866926 The:0.024744752698184408 that:0.022881181981463904 as:0.021018047722053682 tho:0.01759521784602842 A:0.015147860570276913 this:0.013805455462789908 or:0.013442401258306596 it:0.01144001932653751 which:0.01024655527618361 of:0.010125019705650079 I:0.00903557422516617 was:0.00848418691225902 It:0.0074850946181422495 tbe:0.007450642362224659 :0.3263380682178056 +the:0.1622944884319589 of:0.0994959569633945 a:0.061219981464022175 and:0.06013281817937913 to:0.05408526681593981 his:0.04627150197433111 in:0.03711681143525799 was:0.027410208965143606 be:0.026707683073376207 is:0.022563583873416875 their:0.020955169386735903 at:0.018926087859028662 for:0.014195271753532687 her:0.011679796245452496 not:0.010175742345201286 tho:0.009392240655170093 are:0.009299334738201671 been:0.009279596802473221 its:0.009251201510743384 :0.2885472575272403 +the:0.1569916027047704 to:0.09440253198807538 that:0.09133519856382273 a:0.0831577383692159 of:0.07058551786496858 The:0.06467748161576041 his:0.044343322164792094 this:0.039648869358360976 and:0.03882936328657085 as:0.021714209737529414 one:0.015523604277208617 our:0.0145354328870147 their:0.014150784140536665 her:0.013822261719336605 This:0.012978879449595759 His:0.012517035132469757 some:0.012460366347101091 can:0.010309178816572544 tho:0.009560522645923723 :0.1774560989303738 +the:0.2540788407902171 of:0.10633541182060886 and:0.09021078467568902 their:0.06165251366975048 to:0.056568567219967454 his:0.044052352822851186 our:0.027673616033370936 a:0.024197029810507274 great:0.023301991441275136 her:0.02199815013085071 for:0.019514655938458227 or:0.01929140984450901 with:0.0175107784101851 tho:0.012071701860353392 this:0.011348171942965682 such:0.011162646518756508 own:0.011069628207095705 The:0.010840061484840288 other:0.010449115257471947 :0.165672572120276 +the:0.13987575842963337 of:0.11852346070415384 and:0.0963072448019898 in:0.06789983058743904 a:0.03969157867574745 was:0.034859941870910544 is:0.027535153340949064 are:0.023837637965263416 be:0.022833671015685297 for:0.02238714373648263 by:0.021037585439734795 to:0.01742709704260978 In:0.01710682232197593 been:0.01680336484265405 from:0.016507157063768207 were:0.01546416326081484 or:0.014614228560089978 not:0.01340921522630585 as:0.010338408172987403 :0.26254053694080476 +the:0.8046881157316003 tho:0.04662888153461172 The:0.02250258400565551 tbe:0.017284706834960657 of:0.01643649338939025 and:0.00872111427491516 in:0.008223539287892696 by:0.005578085448789723 a:0.005556487197394169 that:0.004210985750208476 said:0.003420945078514563 on:0.0028798374726398696 tlie:0.002653591071168965 to:0.0025981384198474496 this:0.0025932162561835975 for:0.0024851075015572396 from:0.002408157199703012 tha:0.002344052614226546 :0.0023065498083316292 :0.03547941112240853 +east:0.09818375597787236 and:0.07799096931852882 of:0.07446339659223204 west:0.06716871428809408 the:0.0653207853322799 to:0.036432570721881954 about:0.033883426637756085 south:0.032307873436186255 at:0.031143013432384185 north:0.029476961898699944 a:0.027445177935447696 hundred:0.02580968925026155 or:0.02407639981610099 in:0.01761264758770779 on:0.015382749860726384 W.:0.014190924199479753 E.:0.012080566926630855 two:0.010723478306488813 said:0.010505707711016372 :0.29480119077022415 +the:0.14982009900649043 of:0.12690666983291835 in:0.09372576826994665 and:0.08579461485116056 for:0.06995894731663943 to:0.04351210409892633 by:0.04065548642771367 or:0.03853942820836622 about:0.036215659469084435 In:0.031321943454751255 from:0.03081137178220479 on:0.030664334685020705 with:0.024073051687351563 between:0.023347831240788867 within:0.02079930348626775 after:0.01808335947791293 at:0.017490434396884164 that:0.015364827283731234 than:0.012531676179965139 :0.08938308884387552 +of:0.15982512163674134 in:0.08479520538226767 to:0.06896424886072015 as:0.05387178981092001 at:0.05220139593488767 for:0.04858110200101883 with:0.042932325912691166 and:0.04013981669526056 on:0.036856057339152426 such:0.028678512679822778 by:0.028656647074307037 is:0.02623036254975086 that:0.02408251225814671 from:0.022172017972244336 was:0.020377781737770783 about:0.018020300913535205 In:0.017641202079095437 or:0.014143364857409106 be:0.013258789258765022 :0.1975714450454929 +:0.06791390242349667 .:0.018845870840834715 it.:0.01554702575607281 them.:0.015086573096238702 him.:0.007376312462509519 time.:0.006204115685297231 her.:0.005850304599460784 country.:0.005673228472264081 year.:0.004970534967780119 day.:0.004960055711553633 work.:0.004399154296260244 water.:0.004395227811707382 city.:0.004062514345741475 State.:0.003984029331519062 life.:0.0038686303363558213 night.:0.0038351252486824093 States.:0.003726550640040965 here.:0.0037135359734373147 house.:0.0036225647992597547 :0.8109647432014874 +the:0.4912222030383172 an:0.22995542894624377 The:0.049131775269342794 and:0.032004746014905876 tho:0.023786809805862806 a:0.02311682709605749 any:0.013505319038449358 tbe:0.010861292067450831 of:0.010121320310105692 An:0.008347495674381065 in:0.007952719591311892 every:0.007852646480047408 by:0.006453788964446656 most:0.005311054294357148 au:0.004746698742349978 first:0.004499929200880878 or:0.0044629098701293455 no:0.004384401166218724 No:0.004355524646389074 :0.05692710978275198 +and:0.08669704676576134 of:0.07032908555928888 the:0.06317481318712975 to:0.055752706985767966 at:0.029357962436545575 in:0.019829482700457802 a:0.01355546872227081 from:0.011519530796402472 .:0.011235008709933353 said:0.011066927805898769 was:0.009519675782626483 for:0.009012819832279088 :0.008936602772206613 with:0.007676547383624166 by:0.007285684336268532 his:0.007101481296963607 1:0.005577871435954983 or:0.005553825981439525 their:0.005496219684343212 :0.5603212378248371 +the:0.1454500361787387 of:0.1080247151493501 to:0.04516715868785427 boy.:0.036249098323069925 and:0.03403580073245388 girl.:0.032660326140049385 a:0.03171979252021135 in:0.02714044436566853 for:0.02365213940166824 be:0.021942286684630472 their:0.021087116084698817 his:0.019774122064073623 was:0.014637031197642503 with:0.014008395154201525 are:0.012730720509515858 is:0.011363112041341867 as:0.011357870543086747 from:0.01063391638067422 were:0.010589399829418696 :0.3667765180116513 +sum:0.03352282876311118 number:0.028116684882597106 line:0.019995206059833036 city:0.01946514558931857 out:0.019275318828420953 day:0.01666865340772654 county:0.014872697538657208 amount:0.013254184849875051 Board:0.01252325449624941 town:0.012449555905674143 side:0.011663975251122375 part:0.011517157473718155 County:0.011460540331966697 state:0.011087331502382173 City:0.010878919191854432 purpose:0.01081028255427907 and:0.010297866493795984 way:0.009848747943663767 name:0.009522170936943183 :0.711769477998811 +an:0.23639822392769455 of:0.16730411540408147 and:0.08612801481253127 to:0.07043201981450316 in:0.06647328196189585 the:0.06555658248199456 with:0.03470330363584345 most:0.02933250950650903 for:0.016946641376391167 by:0.01650986768454956 two:0.01612414154242828 as:0.014850919729112436 be:0.01410527155368845 or:0.01403639714370599 An:0.013924723099829827 not:0.013200792254881178 no:0.01251403800564728 some:0.012505480755797585 In:0.012187230328232343 :0.0857664449806826 +of:0.21270210382739882 for:0.11900357610654862 half:0.08704308190311828 in:0.06744041148347787 and:0.06312695284782051 to:0.044079656291641275 as:0.04136573101106629 was:0.04103400567777625 is:0.03124230061244107 that:0.02518315260838508 by:0.024962133963745213 at:0.024943113512341023 than:0.023105103336470045 about:0.021942442435308004 be:0.018746273762397497 with:0.01845607530431417 In:0.018215175124787108 such:0.01630553346257713 have:0.0160844998280894 :0.08401867690029632 +of:0.12106120265583666 is:0.0912860890909611 and:0.09124881971631779 for:0.04864945863182148 to:0.045675997433923476 by:0.044000050549727825 was:0.042798562593790106 with:0.0420395165347519 are:0.035895301448297064 from:0.03542026121673993 on:0.034419943368148236 in:0.023792673949770672 that:0.020923303146894195 upon:0.019425420594581237 be:0.01936856006193957 have:0.018883427415656028 Is:0.016027832676426743 as:0.016022788530422754 or:0.015823350995498614 :0.21623743938849463 +of:0.14140911374913043 the:0.08406324275408093 in:0.051712664696044124 and:0.042016144218116745 that:0.03344666676867289 to:0.027709869064190353 The:0.023638573607111874 for:0.020483914568636966 Mr.:0.017669174058513534 which:0.016972368561751192 as:0.016259401671191127 a:0.014920071848964473 :0.014646146896987337 In:0.009940105168995288 or:0.00909223143114935 such:0.008359976573547796 when:0.008218759560201584 -:0.008178509589941811 by:0.007801238855262815 :0.44246182635750936 +:0.12503158012164164 it.:0.02345459105072247 .:0.023450529953144172 them.:0.013455509559096324 ?:0.00940887568187733 day.:0.009159396780082523 him.:0.009025541267788425 work.:0.008171633916849047 time.:0.008054602281351013 year.:0.007734349780425202 city.:0.007724468597452698 water.:0.0075664036883299046 ::0.0071957129889283775 again.:0.00666089623332518 country.:0.006555843193413743 follows::0.0059719958988073765 her.:0.005861474101845093 life.:0.005852494993984581 States.:0.005780385877928997 :0.7028837140330059 +the:0.07998575045523457 of:0.03494124601845125 this:0.025958837774803206 to:0.019908248365625106 and:0.013925807561510515 that:0.012022290274135306 York:0.009613535945975138 an:0.008730981892222453 a:0.008543022538512867 State:0.00807405214094409 in:0.00787327883127892 one:0.007840567858052623 whole:0.007484077337411567 any:0.007413573417254307 :0.007396003436412718 .:0.0058923639550668185 States:0.005292320830661943 tho:0.0050890995560675745 American:0.004841830540430698 :0.7181731112699483 +of:0.20390564820888338 to:0.12912900013668982 for:0.05323484260198831 upon:0.049771197163499654 with:0.047030951940106425 keep:0.044371069447175865 by:0.04154322731031443 put:0.0340311499466742 in:0.03031455677803284 from:0.02924319688173583 on:0.026869304249835742 get:0.018309763530979743 take:0.016984089322146633 make:0.016265002488668256 see:0.015146537887935397 give:0.013974134540508656 let:0.013756972279070327 against:0.012869192210290667 ing:0.012697821196936243 :0.18955234187852757 +at:0.19129689281487294 the:0.08793055397613067 his:0.08569173346116893 a:0.05593921520176916 her:0.05441213088056143 of:0.05009444390285687 go:0.042001042488501644 and:0.0396960860256013 went:0.02869039244138471 from:0.022937536862415085 their:0.021693850637423517 returned:0.02164060753256107 or:0.016464656410989043 to:0.01621527156676282 for:0.015951274833716975 sent:0.014717562819664817 taken:0.014609737055372605 carried:0.014327770183020864 my:0.011884240299336175 :0.19280500060588937 +of:0.2290698885028519 to:0.09468662983638841 and:0.08348626284094854 that:0.07543269907262178 for:0.0632408057392457 by:0.057385034667034145 in:0.046959011442101 with:0.044056800807618965 as:0.030107178016582095 on:0.021501983971552553 from:0.020682623774833552 all:0.02055466105060653 at:0.019526929405884384 is:0.01734111715735345 when:0.01675838839802593 which:0.014797125073209395 was:0.014557238079409146 upon:0.013496533807426946 In:0.012481781274214456 :0.10287730708209115 +and:0.11173099239997092 the:0.1016196259986228 of:0.07208876148020912 that:0.05789868564313366 The:0.025375890517467727 :0.02170981870687443 as:0.021270177295474705 or:0.02115781896589951 which:0.01988014328575619 by:0.019851687384264616 are:0.017795035970638442 was:0.016729180470111404 in:0.015651139192970495 for:0.015532807156750917 said:0.015318577021553254 have:0.014904036876873448 at:0.014901666404787635 were:0.014333974167851662 That:0.013676034358859005 :0.38757394670193 +the:0.7872181222771389 a:0.048611157722168015 The:0.03815849321743672 tho:0.03338226677216304 his:0.01639397219913431 tbe:0.009734214093520509 full:0.008015763784121215 firm:0.004675489227379431 their:0.0043369748380474955 and:0.00423172176405975 whose:0.003643671174912675 her:0.003558975483944113 no:0.003150630519851451 in:0.002677743616774654 its:0.0026060378951868975 of:0.0023105904026528164 my:0.002241144079291071 great:0.0022196722447686418 our:0.0018758686850494735 :0.019957490002398697 +soon:0.1144114854757324 and:0.06819202359640077 far:0.06812885612349788 well:0.0512116502122032 long:0.04631215112950062 just:0.041650837499408996 him:0.029830944332145906 but:0.026299442306450885 Just:0.018890636540244848 much:0.01805402259720408 it:0.017194940146878064 such:0.015455690255220717 known:0.013564992885317713 them:0.013326783338472733 inasmuch:0.013049265950995561 that:0.011976755507576028 and,:0.011906354691995918 fast:0.010692698957551941 is:0.00945032353021131 :0.3994001449229904 +of:0.07115977604712213 and:0.06675930593414538 to:0.05625826554419839 the:0.04743266333212349 in:0.03030426999719916 be:0.027760434610443193 that:0.02369398357756593 was:0.02215365253533778 is:0.02159503112571663 for:0.019305151512646647 a:0.019121463545425953 with:0.01716771612742992 or:0.014580598612231287 which:0.013600048377005985 there:0.013154985472283998 not:0.01214659500848442 as:0.011921834746267691 :0.011599993623671638 on:0.011456707043564005 :0.48782752322713635 +the:0.15221692559957206 of:0.08069151212182069 and:0.07240635484257117 a:0.06392219701248592 to:0.049176531100385425 be:0.03126073625539749 was:0.026597884151575976 is:0.023935668013294973 in:0.01809554000060103 or:0.01736809520316659 not:0.015262215701975859 are:0.015051161940897423 an:0.01311498090898963 been:0.012584606500930769 for:0.012457103310419224 their:0.012288032821829989 his:0.011371194071019814 that:0.01120572166061323 were:0.011074588239307515 :0.34891895054314526 +number:0.10696086106767641 amount:0.05826976763335809 thousands:0.03975604588560018 matter:0.0365794270582666 kind:0.03230508275459016 kinds:0.0310499233682617 board:0.026750718360932596 state:0.025584943163271052 sort:0.02426555168593258 out:0.02206748740853798 class:0.021933020141177498 plenty:0.021505843908028798 line:0.02145859934975949 case:0.021112150321379662 system:0.020716560829437132 bushels:0.019944366718207897 millions:0.016947790655910216 years:0.01636556514851945 full:0.016087896170734757 :0.41933839837041775 +hundred:0.01876831235592078 made:0.014111368518117812 up:0.013728452717504712 dollars:0.009094472695865993 degrees:0.00848316385416796 men:0.008158442184833395 day:0.008103175323739898 time:0.008053979868385113 out:0.007622453241871088 large:0.007175073179701423 due:0.0071439550607597544 interest:0.007118483687234179 quiet:0.006837365150326253 long:0.006625041997974021 dull:0.00583277013802016 land:0.00576503640427101 life:0.005727759886068229 hereditaments:0.005626577349101916 good:0.005565591179275063 :0.8394585252068613 +of:0.4171530685822191 in:0.15364795170040718 to:0.072729747264764 and:0.03641551018325196 that:0.03587588251840872 for:0.02973515401421885 by:0.028615577548459153 In:0.025853498822230658 throughout:0.024539330146851564 from:0.02260509632580598 with:0.017713104405098146 all:0.015463704322556377 on:0.013151408020921742 at:0.011926809002406537 over:0.011916780548291015 into:0.011243032264786412 upon:0.008985432312382 which:0.00839901931127398 as:0.006922430890316839 :0.046107461815349804 +the:0.17234101881375233 and:0.0723308580507978 a:0.06418362524859451 of:0.059381903314211774 to:0.05765128534513001 so:0.0292258426364823 is:0.027247612130850953 in:0.024298181821023074 be:0.020836055953937775 was:0.01790457325883464 Mr.:0.01622639783612973 tho:0.012553953887538211 I:0.01099826163396415 he:0.010910273396485398 not:0.010754844629789139 at:0.01064958641021041 :0.009679095332540733 for:0.009454446178783427 or:0.008882500654999364 :0.3534896834659443 +up:0.05755750083475825 as:0.0549616257059724 and:0.032619819060809754 regard:0.03236967856079774 sent:0.031764876357993826 according:0.03053849247328634 back:0.024279165302010866 down:0.023576032029013747 came:0.022703846334754703 addition:0.019921498030465425 went:0.019349249678449445 come:0.0186831292782109 attention:0.01846688166464566 given:0.018058676810180162 owing:0.01760815278035764 due:0.01731772491716077 made:0.015243774655102954 prior:0.015027247937330908 brought:0.014698660880526078 :0.5142539667081724 +the:0.5970103873740654 a:0.1911063441472752 The:0.04467521364768581 tho:0.024220330252378977 and:0.01901270699438313 his:0.01356378485121718 tbe:0.010304239215209236 of:0.010181977143841945 this:0.00927444369515361 A:0.0061837400169830505 her:0.00579332782640074 our:0.004187273607658548 great:0.0040587735573659085 in:0.003765961519967259 my:0.00353413772479769 their:0.0035153137984688058 by:0.0031941795890454037 old:0.00273227667008452 with:0.0027250110193471747 :0.03996057734867035 +the:0.16386508693790836 of:0.07757669180227295 to:0.06831063695836018 a:0.06329041123637592 and:0.059231969954525246 in:0.040164705998412285 be:0.03275484563426246 his:0.03062612505087065 their:0.023483419801302877 is:0.023351842653916443 was:0.02278300304449393 for:0.022292791070847463 at:0.016271603735941973 or:0.013704751553311106 been:0.01190004717830436 not:0.010213276820493647 its:0.010165139633268067 with:0.01005352661391183 are:0.009650284134072942 :0.28930984018714734 +the:0.11919516938815296 of:0.07230453158552728 and:0.05781056740443249 a:0.043018564803886335 to:0.031305092790907506 in:0.020848713353460488 at:0.014270110001066288 .:0.012526810245749479 :0.012413283442322082 for:0.011719122709941797 by:0.010808400946589808 or:0.010404172990115616 The:0.01003576004804544 with:0.009811868184449042 tho:0.009295902015355835 was:0.008924239095331684 that:0.008672304223433876 is:0.0085591147338948 be:0.008335143826716943 :0.5187411282106204 +thousands:0.3284902097926264 millions:0.30157356025656745 number:0.08062663133021751 hundreds:0.07467411110104502 sum:0.030831881768605313 couple:0.020595891904510936 billions:0.01701207895518943 sands:0.010617059739423234 Millions:0.009630094664462727 Thousands:0.007851763700179008 lions:0.006694202151188266 rate:0.006591778336105107 million:0.005829397932664772 dreds:0.005617294416167109 amount:0.004893845601996297 day:0.004267926451367286 pounds:0.0033541435362825006 all:0.003325024842350855 score:0.003078675439486071 :0.07344442807956472 +up:0.02394818497414619 time:0.01720510214708969 in:0.013391197625846627 dollars:0.01060594447746625 him:0.009914039320398343 house:0.009740650043634837 out:0.009538556847644587 down:0.009457984123734338 men:0.009210132822458786 due:0.009160853184157196 room:0.008839375229775424 water:0.008731669909340828 it:0.008634877764557666 them:0.008108348865935264 ;:0.00799463226621172 work:0.007538355192962422 day:0.00750258820243722 it,:0.007389463273607787 interest:0.007233043918298042 :0.8048549998102968 +the:0.23827881153709712 a:0.08756689080276155 of:0.06757690132755384 his:0.059351452492682075 to:0.047333244185982754 and:0.041945868408874064 their:0.027333965191656966 our:0.026367923367298936 The:0.018845305741337227 its:0.018035240448519275 tho:0.01771678559595291 some:0.01628353077205246 my:0.015430744178048579 most:0.01539983096551021 many:0.014690616817029283 all:0.01357436705150733 with:0.012469401910667572 other:0.012203186839271529 her:0.010451379286403847 :0.2381445530797925 +so:0.18584095600501466 well:0.086018975834868 far:0.036928073701124886 and:0.036295686129605216 such:0.03180662616763135 much:0.027609352084598034 it:0.02205361672230219 manner:0.020200107052006817 doubt:0.018871588850796813 is:0.018035330128024357 question:0.017585521180360823 opinion:0.01697504297808242 them:0.016303008553215422 just:0.015375214437991785 are:0.015253496449112244 soon:0.015007069772728912 him:0.01372397311447532 be:0.012734425091976188 described:0.012688849338558628 :0.3796930864075259 +the:0.08639811844539118 of:0.07567220165854706 and:0.04069759467622764 .:0.03996147398915283 to:0.017934885580078594 at:0.017107728563182264 John:0.016248380740018636 :0.01585955023154973 a:0.014790326959333331 H.:0.014683220896877574 A.:0.014144200489039936 on:0.013528269080229478 J.:0.013352787730947046 C.:0.013231356437455648 M.:0.012487889618101239 Mr.:0.012258045797588076 by:0.011907521136055796 W.:0.01149841093304848 Miss:0.011274831806754426 :0.545963205230421 +and:0.08075563036844713 it:0.07854615716274344 you:0.07742668248597555 I:0.07120380747789609 they:0.0695962578908296 he:0.05255751165507252 which:0.04754749493489546 we:0.044942591341834766 It:0.03589351225975619 that:0.03350207044379467 who:0.029213906234249472 They:0.015047314969451577 He:0.013296704486283317 We:0.01299636889947301 this:0.012949568779256787 You:0.012664124181161057 as:0.011873656615928978 she:0.010373593389333411 This:0.01003927430896275 :0.2785737721146543 +he:0.14169080959168878 and:0.10296511473573254 I:0.05947758436767604 she:0.03907088506790499 which:0.03859176285700432 who:0.03519889748825235 He:0.031177202640668953 it:0.02552603070462278 be:0.024058915084245475 that:0.0204335560970027 they:0.016765584116747802 It:0.014483910280560057 then:0.014482700866390707 was:0.012105113117383205 but:0.01091507384972227 is:0.010274118151545547 subscriber:0.009949563406305668 one:0.009654034601130193 man:0.00942240274442028 :0.37275674023099536 +the:0.4682959729594065 revised:0.0761995045442866 a:0.056829954257230884 of:0.05161187478531478 our:0.02719068767525832 to:0.02640246355144053 other:0.025020329785143743 and:0.024273681709813193 their:0.020951528256513346 tho:0.020492237812760276 or:0.01981517889891836 The:0.018874162655629387 any:0.014091518401874831 great:0.013454183348142868 every:0.013447417421263522 his:0.01275994189040732 this:0.011566103346424592 common:0.010065418221535264 county:0.009682874213351173 :0.07797496626528451 +or:0.23471457803287132 not:0.10704784590354384 and:0.08043931191661971 be:0.07932131013140283 is:0.05258010293934911 are:0.04316809819107369 much:0.032793824606926786 no:0.03271625627428808 was:0.03255852885754281 with:0.025706949905921206 a:0.025383707396887424 the:0.02373089534685518 of:0.022377685198712555 been:0.021819126378775214 doubt-:0.016595228159871696 were:0.013233049600185535 for:0.010328909089012496 far:0.010051239260498926 any:0.008165215242583268 :0.12626813756707833 +to:0.23151648404213865 the:0.06575070528430202 of:0.0618411727613364 not:0.05037316784261091 will:0.043634498340736905 a:0.033987228900002074 this:0.03357240894392491 his:0.03189198159772918 and:0.03009511319940825 they:0.028759652454688166 in:0.023228147102566567 I:0.02213775478736489 we:0.021671798875412936 such:0.02049919960968336 he:0.01952695300376575 that:0.01795763284308346 good:0.017840409941588815 never:0.016792840794374757 you:0.015717413564760148 :0.21220543611052184 +of:0.2100994513932681 in:0.10145481118363056 to:0.08020561810882548 the:0.0706655793226682 and:0.05939156048209587 or:0.05047290106415803 for:0.044114682957417675 with:0.04185997803458139 by:0.03518160933853328 In:0.027312020451876785 take:0.020150761682728356 be:0.017630795085944468 make:0.01714700702114276 on:0.01679098861342269 are:0.015460524549901876 get:0.015428959148732145 such:0.014850200187628062 find:0.014737283798688496 was:0.014000693419000124 :0.13204457415575563 +.:0.0822934031348536 Mr.:0.07729401513133663 of:0.04635170498321503 the:0.04173474419684121 Mrs.:0.039083831256236094 and:0.032643875112053945 H.:0.028012384557650316 A.:0.026438944848683754 W.:0.025691757247368833 to:0.025013443538464207 E.:0.02346472808916085 M.:0.023384040762455705 J.:0.022490865249001454 C.:0.021206293382174276 B.:0.019309673940913076 Miss:0.016752353335821004 L.:0.016259949501774916 S.:0.01577842360521631 F.:0.015603179363388463 :0.4001923887633903 +and:0.22793441435004846 of:0.07182506213790735 be:0.07001084551040342 the:0.06907234562923588 was:0.053408470598011994 an:0.052976406889177784 to:0.04678219588664035 or:0.03661145732127902 not:0.03495728597667926 is:0.03257143559853835 more:0.03192919743712857 are:0.02416521604901603 were:0.020168891950854282 he:0.01702549567469445 for:0.015255835034940978 we:0.015121629050033957 been:0.014854449967300164 only:0.014474822457392374 than:0.01415010452511786 :0.13570443795559947 +the:0.5969705233147825 of:0.054937067828579815 The:0.04100076520041603 in:0.039044590579854675 tho:0.03463704061514531 a:0.03267584145528731 and:0.029443090016274147 our:0.02928356967776537 or:0.01828666143941548 tbe:0.013730907643534287 their:0.013313082817308027 for:0.012206283726029023 its:0.008791747241096826 In:0.00857469316690562 these:0.008024543760321638 his:0.007897804023155654 with:0.007380612783426568 other:0.005661179421061251 this:0.005533263861387533 :0.0316067314282529 +p.:0.31743969817655315 a.:0.2666313761129433 p:0.04494902983461961 and:0.027844449577952315 the:0.02255422976247773 a:0.01636661970824709 Miss:0.010403778190806253 of:0.007620747199080268 .:0.0075644138159871544 Mr.:0.0036732190754623167 p,:0.0032961143740314024 A:0.0030166748213257388 as:0.0029940168367099686 Mrs.:0.0027710048330278595 2:0.0026082159423760263 at:0.0025651287206974846 J.:0.0023767617783908195 1:0.0023510830984377726 for:0.002181027890686157 :0.2497924102501876 +so:0.19819132659346625 is:0.0900420597876723 as:0.06772327122185752 was:0.06019791078173114 very:0.05668842793681288 how:0.05265714229034457 too:0.04748269394819703 are:0.047360654121666436 not:0.045150817148958126 a:0.04422207438271712 be:0.04085251648459506 and:0.03455464759373506 been:0.02607534586812366 of:0.025549875516344068 with:0.023201127366006994 were:0.020926829245244895 Is:0.016162177712705058 have:0.015552350605434613 for:0.015113063033731845 :0.07129568836065539 +of:0.23914080301488774 in:0.17681461675404092 to:0.101720575381824 on:0.07404980622271824 and:0.039420068449820746 by:0.03844271340987272 with:0.03587797762623913 from:0.0350448509495312 In:0.033683371677170656 that:0.03201244812852176 into:0.02036343257946628 for:0.017655617770067623 upon:0.01720628887076171 at:0.016970952579835302 through:0.013247545675641448 all:0.012437430030211815 under:0.01040133822356254 over:0.010100227992955816 as:0.009266970464446156 :0.06514296419842419 +that:0.07058203170900718 and:0.06578676982432786 :0.03027373835468915 it.:0.028647755051245824 as:0.01896279874769086 to:0.017063219284677644 them.:0.015855857363576323 which:0.012867390081438272 but:0.011907906390669031 of:0.010863377290949277 him.:0.010289902642601758 time.:0.00956197323828275 ?:0.008423805506202817 I:0.006821507044812776 country.:0.006755301992869734 be:0.006588562650591286 day.:0.006543359513993615 year.:0.006538344149840882 tion.:0.006068660473202256 :0.6485977386893307 +and:0.07359963406644195 be:0.052667135004264946 to:0.04483536256874564 of:0.043448293679263235 the:0.03579172892628988 in:0.028005289969665195 was:0.026700397492138477 is:0.024892551934152005 re-:0.024162182625676702 he:0.024086629517294657 are:0.02098604388819216 from:0.020307931541148256 a:0.018606881911690538 or:0.018077853608073062 for:0.017195224169077532 been:0.01615904189338184 I:0.015254891559368164 :0.015184018660626356 which:0.015016145996292442 :0.464022760988217 +as:0.06337289415049517 up:0.04809314218185479 and:0.041411564292737395 according:0.03738221587639796 back:0.03564998809838123 him:0.035577611022324374 returned:0.035110739114133455 went:0.031172920432325488 came:0.03111997420978254 it:0.024764398107483297 regard:0.022823763012400078 confined:0.01803499028792385 come:0.01739043734809638 return:0.017283054062928106 go:0.01654150200276455 down:0.016309920682264393 owing:0.01563727895997569 is:0.015449497308450856 was:0.015024338606440533 :0.46084977024283985 +one:0.1028303141280697 part:0.05963429477052991 out:0.04766456937681193 some:0.031418679026461914 members:0.030764490253327767 side:0.029940657362655835 portion:0.022063658796890564 office:0.020457735219956013 member:0.019726706386316174 end:0.019666887540649894 tion:0.018667441728710307 parts:0.016814747270460957 people:0.014112771422418794 all:0.014072739582212475 any:0.013183573287639892 One:0.013083578354183906 that:0.013024335602903442 account:0.012482348155001894 many:0.012077825070275192 :0.48731264666452345 +of:0.24171614234634875 to:0.10118387591894602 in:0.08326647270237435 for:0.07471667617883214 and:0.069953249031664 that:0.06849987238279727 with:0.04871670289160896 by:0.04003872167776444 from:0.030885440916024617 at:0.02447970505571827 on:0.021226407725291104 under:0.018888089389657185 In:0.018142736345576425 all:0.01645172717296503 as:0.012013977585660128 upon:0.011781842387971928 but:0.008929776154253227 during:0.008880348049853444 is:0.008677203386509182 :0.09055103270018351 +of:0.22547645859652307 to:0.0976255956545342 in:0.08975713220785093 with:0.06434602133951098 on:0.04667326786831187 and:0.041649932604920926 for:0.0398249655813687 by:0.036685018433643767 from:0.032664781559268836 upon:0.021490740627235556 that:0.02139281221101055 at:0.021288306778277744 In:0.02025590254753344 as:0.010353932037056318 all:0.010074400759570251 over:0.008939820994499942 or:0.007693784865817322 told:0.007468153789186353 into:0.00691772114560941 :0.1884212503982698 +the:0.39749834532651884 a:0.07520030034269234 and:0.05540858759821703 The:0.03273515726769502 tho:0.030061875542463562 of:0.020144331424922633 tbe:0.014929647509541684 in:0.014268129706664795 or:0.013333166761078447 .:0.013287381914101323 an:0.009000188755386574 to:0.00880680429595084 :0.007943763822197133 Mr.:0.00773879605474787 by:0.007328417831573476 as:0.005922572098978465 for:0.0047526933692942485 that:0.004736121968310169 on:0.004594595720579333 :0.2713091226890862 +the:0.13898054982616972 Mr.:0.10134544807074626 of:0.06615392240767116 The:0.043278330440478296 and:0.04162034131663931 that:0.038474065211129 a:0.028836085729107952 Mrs.:0.019741515838392454 .:0.016321296438550317 Dr.:0.015742377033130618 :0.01499245666898834 this:0.014601172820615167 which:0.012022811139796676 in:0.010986353410193092 This:0.009519698186461954 his:0.009450116155350293 to:0.009398710140252132 tho:0.009372386328052828 or:0.009138862077782499 :0.3890235007604919 +of:0.15052462281760146 in:0.09888260256677932 and:0.0912744297583886 with:0.07342504605684277 is:0.0726005967642979 was:0.05801869933247989 by:0.05611410562290359 for:0.055052590530080825 to:0.04245561789377467 that:0.025679024076050952 In:0.025115450120076994 as:0.02368867787720414 have:0.021323167687684583 had:0.018358275641146875 from:0.0182220961811488 on:0.016659826653531506 but:0.016564881897716672 be:0.014639101156714256 has:0.014460198446530948 :0.10594098891904521 +was:0.07102972081633713 are:0.05428823907368788 and:0.039324180294547886 were:0.03651182353111236 been:0.03570468855165502 is:0.03430907244460542 on:0.024579800169164553 be:0.021460616204907502 up:0.020223049286135334 that:0.019597053089298117 out:0.014567887027200235 but:0.014356148063960652 have:0.01366522082313639 of:0.013246334312028565 being:0.011992469004552295 about:0.011677336112538132 time:0.011562481314333328 one:0.010671104338003582 or:0.010385965832387259 :0.5298468097104084 +the:0.23350757108465514 a:0.06667851969295158 of:0.06403287221202929 and:0.06364230752253813 his:0.045126325858768836 their:0.029735742033074174 this:0.02360307340299391 my:0.01809467083042189 other:0.01695595837779204 special:0.01661829075430258 public:0.01514748360059537 in:0.015076564092199327 The:0.015042827164156978 no:0.012776558608759012 any:0.012751209953188038 little:0.012701540034716973 to:0.012552240340267818 one:0.012044245088696209 equal:0.011946976845155898 :0.3009650225027368 +of:0.17312045953146765 to:0.147412153866368 in:0.10222337467994962 and:0.054803139614302034 with:0.04604055511572184 for:0.04149904562368754 at:0.03956938147048781 reserves:0.038840851192945114 have:0.03400578225267063 that:0.03306989117480937 on:0.03199060342861318 is:0.02894910298991354 by:0.028586012888662186 from:0.023493428337626375 In:0.019580418354436822 had:0.01928798308388368 was:0.01712562291840452 has:0.01581001057391569 as:0.01572831389810426 :0.08786386900403018 +the:0.16804322744792036 of:0.07314352421394933 and:0.0498204945979816 to:0.04653801304045514 a:0.03600912263675836 his:0.029898553636954824 in:0.029733562411740133 that:0.019818952473877206 be:0.018037125858724325 was:0.017140371295731687 for:0.016588604579540405 on:0.0148432144001465 their:0.014405935241883732 he:0.014193836610943833 at:0.011964897140377323 is:0.011310719773204823 good:0.010375879779401334 or:0.01028684190831641 this:0.010246121492166398 :0.39660100145992633 +it:0.20661626833118804 It:0.13133310388077965 which:0.05346195225056892 he:0.04322413433168328 and:0.0399221355018402 that:0.03638459118631527 there:0.02656324547693805 who:0.022588363007738477 This:0.01601752777676921 He:0.015090910728543903 what:0.013686208311658789 she:0.01181234484166701 this:0.011752239301455133 There:0.009749183368011116 man:0.007759333367156636 as:0.007068481254995637 work:0.006691860301109499 country:0.006039779831696346 but:0.005362639996269743 :0.32787569695361507 +the:0.7131088965845016 a:0.07024988863116834 tho:0.04140483361150079 The:0.032363676762366504 his:0.02391055877418753 tbe:0.013200865604570377 and:0.008348038656105224 her:0.006838725554135573 their:0.005758158018554343 my:0.004945827717103444 of:0.004868699464195672 A:0.0038322062915377712 great:0.003701310304230788 our:0.003405950741618988 its:0.0032993569559882875 large:0.0026578480390766924 or:0.0025083468595158767 in:0.002467949462417814 your:0.002445607073681002 :0.049683254893543395 +the:0.32611733776246504 in:0.2029632203840796 an:0.18391434935249246 In:0.05287254178255128 to:0.029872801786511277 and:0.024549581722180885 a:0.023711437341976428 tho:0.021432731298583366 The:0.019146162548695823 of:0.017318946359640038 great:0.01698238350018343 by:0.011726449413478675 tbe:0.007517570712513652 this:0.007184301689561492 with:0.00596182481084641 from:0.00582696392256843 greater:0.005023995118941026 iu:0.004660077447510876 any:0.0045709633564192985 :0.027646359688800543 +and:0.03868242960999506 as:0.031124813427855922 went:0.02352509775927722 him:0.02196555539050794 them:0.018760608639018784 up:0.017985449426794205 is:0.017894175620344187 go:0.017174904667157563 able:0.016756848979943888 going:0.014481672239490295 it:0.014128375989346808 was:0.013277058274565138 time:0.013249953793837373 not:0.012469887553778763 began:0.012465717758716884 way:0.012105610030480113 back:0.012090864562211581 right:0.011941707822828511 amounted:0.011564315359310868 :0.667354953094539 +be:0.11115522699795027 and:0.08957841920775937 was:0.08467915403581752 is:0.08297911110624313 been:0.056654796393467315 he:0.04125392155886791 are:0.03735517824819691 had:0.033757594378603414 which:0.03209162301934961 have:0.02968295753048642 it:0.025474886289733677 were:0.02517504325023674 as:0.02279350469953954 who:0.022597345754691113 that:0.022529077961963417 has:0.020398025890497756 It:0.015906284274142486 not:0.015065859131350797 He:0.013947923503566368 :0.2159240667675362 +of:0.08517476692082354 lot:0.08036382278063711 to:0.04552450748322191 block:0.03186331388731831 .:0.02518329701525808 April:0.02516574144506141 January:0.021661633434895057 and:0.017488147750448966 March:0.01739909423519528 the:0.01705162390474928 June:0.016676609902619027 May:0.015707163962288214 Lot:0.015484751068399943 July:0.015151482397182978 Block:0.014020820473018237 December:0.011768478736964585 on:0.011686658587872984 for:0.010822049977061493 October:0.010410854417837748 :0.5103951816191458 +was:0.12117235789861211 not:0.10964848022606119 is:0.09645568185973397 be:0.08638523249285145 and:0.0761617505948945 were:0.048681725796395695 are:0.04586097513426594 I:0.030117902855126378 have:0.024247623499663137 but:0.021771299729804974 so:0.021449169316382233 as:0.020584585661994764 been:0.019731733738113634 had:0.019204146364103176 being:0.017552324899698105 Is:0.015602792974895219 he:0.014914524229155656 they:0.014515269295566536 has:0.014380603577937823 :0.1805618198547435 +is:0.14269727671581683 and:0.12056932667731053 was:0.08642083652324441 be:0.07101133538362932 have:0.06742725364143738 that:0.06430179246618055 had:0.06403181925673149 are:0.045256589643732886 but:0.0329576507287825 were:0.029729866163831272 has:0.02955280271487787 Is:0.026315655626206726 with:0.023051811035399754 of:0.01712842540216258 by:0.015921368504933267 been:0.015908217361716798 not:0.014614209602822295 or:0.014454341443976029 to:0.013622249703642576 :0.10402717140356492 +No.:0.28228849361819985 lot:0.10604399579620849 and:0.0459747145242641 June:0.03649898086285574 to:0.03358902024640283 block:0.032818941499566545 March:0.03220623882454268 May:0.03036443269764669 July:0.02940764639893717 Lot:0.025715458625560246 April:0.024373226744610135 Section:0.022983884831875665 of:0.02211296874871794 section:0.020889399346072018 the:0.020663707394808915 4,:0.019723316499502784 October:0.01752808394600491 August:0.015236231930589258 lots:0.013790330899125399 :0.16679092656450864 +;:0.012602762645670793 up:0.010626591991713587 land:0.008669098836498105 years,:0.008058325239236778 and:0.0073744460376876705 men:0.006901641960327026 it:0.006645434259972768 interest:0.006497952706813673 :0.0062340886053208035 time:0.006153619849550264 them,:0.006144371983337207 Columbia,:0.005897331364166845 due:0.005791086933067465 house:0.005558222066888901 property:0.005447517494329615 mortgage:0.0053911448931316846 ,:0.005360100822126195 here:0.005247433981208619 day:0.004934661007361884 :0.8694641673215902 +hundred:0.02334136986593815 up:0.005482494641173394 men:0.005366536521246011 Hundred:0.0047587970519216575 John:0.00441808156134956 William:0.004390720675819281 him:0.004016828614280843 ;:0.003997112205305733 due:0.003721199871732 in:0.0036582900032443304 time:0.003637206863828461 James:0.0035594902370151707 out:0.0034878448964120057 .:0.003467980723571515 1:0.0032804584819785204 day:0.0032444781513863933 ,:0.003058139385740603 :0.0030314555521939613 Robert:0.003005471634785646 :0.9060760430610768 +the:0.5203582664295567 The:0.05533007997864151 tho:0.03853438074040878 and:0.027646988645093754 a:0.024230491132436367 of:0.019326336288151124 tbe:0.01924817944672726 this:0.015752830582355402 his:0.011969393222278713 at:0.010427481901797958 said:0.009644115757297497 that:0.009262779259461873 one:0.008256423482551338 A:0.008108823756644037 our:0.007280138964641438 her:0.0070742773775965525 each:0.006224123480704449 on:0.005970411023136248 two:0.005917683772256943 :0.18843679475826203 +of:0.14717503430481332 the:0.12688167816552837 in:0.06419061197387985 and:0.027807780154206728 to:0.026609425659790582 on:0.02466620763197903 by:0.021678479915632258 for:0.018871123609157846 :0.018236842993131584 a:0.015122025374640498 In:0.014442985223774104 or:0.010612164812473726 that:0.010278194247246254 from:0.009765708805674194 with:0.008179014618316516 tho:0.008112418669449834 State:0.00809843028746344 at:0.007108997455852321 said:0.0059058651043691415 :0.42525701099262037 +the:0.3163382078053679 by:0.21029911422327174 of:0.13221443233054717 to:0.03515993724722688 in:0.03455391244266977 this:0.027205772581212408 a:0.022718040284735615 said:0.016852509747722517 tho:0.015974871208943017 The:0.013596411008753103 at:0.0132864906221288 and:0.012225039509726175 general:0.009683345761352685 tbe:0.008837689761621024 with:0.008558497492875976 for:0.007101918967905211 organic:0.006115306664026464 that:0.005908340346445851 same:0.0056241865611384835 :0.09674597543232921 +the:0.13495043060413897 of:0.08116512228138067 and:0.0666484668031579 to:0.061479885922863124 for:0.0225472057129304 in:0.022258265482069606 be:0.02060705238488401 is:0.018128702512605167 was:0.016565762763359006 a:0.015576597161064762 that:0.014241236932705084 their:0.013967877427544685 he:0.012125594536493497 or:0.011887633530224664 will:0.011130101470498135 so:0.0108874112080436 at:0.010863400836486839 :0.010492776840493524 his:0.010323787803221298 :0.43315268778583504 +of:0.2573767237547282 to:0.09964073917130514 for:0.07535110430995277 in:0.06386562533634882 and:0.05328102287635015 at:0.05106296087030002 on:0.048836516843069916 by:0.0395565499665632 with:0.0383217799747823 from:0.03440222836659457 all:0.032788229723463 that:0.02638279897111681 upon:0.020552955832494366 In:0.017420198539300515 about:0.010253044386344928 during:0.010003479099355976 is:0.009719153715051328 over:0.009297014173375478 after:0.008952888848656063 :0.09193498524084649 +one:0.1028303141280697 part:0.05963429477052991 out:0.04766456937681193 some:0.031418679026461914 members:0.030764490253327767 side:0.029940657362655835 portion:0.022063658796890564 office:0.020457735219956013 member:0.019726706386316174 end:0.019666887540649894 tion:0.018667441728710307 parts:0.016814747270460957 people:0.014112771422418794 all:0.014072739582212475 any:0.013183573287639892 One:0.013083578354183906 that:0.013024335602903442 account:0.012482348155001894 many:0.012077825070275192 :0.48731264666452345 +and:0.13777783565422724 had:0.08869316077286966 have:0.046809233130332945 was:0.04177345642467843 has:0.03984822467129602 it:0.037192262147089344 him:0.026139078701184752 he:0.026017558381414854 well:0.023055344652117542 is:0.018095061479808754 her:0.016755761323654826 I:0.016380126510861126 to:0.015585424063635257 or:0.015456853258472156 be:0.015273108723310874 not:0.01347912342006613 only:0.012413031119871984 than:0.011849517021750479 one:0.011601894866162648 :0.384803943677195 +the:0.09264190634659897 a:0.06862515645355866 of:0.059296872727539175 and:0.03628995559684448 in:0.029468569985172888 to:0.02401055790278804 his:0.020854526152273553 on:0.019947484232717867 at:0.014904879555364544 by:0.013390274035583157 that:0.013106878721349257 with:0.010484992209219886 feet:0.010216399651406265 be:0.009614266169821152 was:0.00955242996854921 an:0.00862937828249181 :0.008485385499034041 for:0.00816687560782116 one:0.008025819026192692 :0.5332873918756732 +the:0.19379594192248137 a:0.1586032120205081 at:0.09936221106222416 and:0.04746515123521478 for:0.04403564836532673 of:0.03690678602369703 an:0.028975324883085275 to:0.02598654871092296 in:0.019136644603326175 any:0.019104256234298476 which:0.014284429894487801 that:0.013787919950912133 be-:0.012766191135000403 con-:0.010177439919331491 his:0.010159969504382447 time:0.009891615243818444 from:0.009845403726232485 :0.009677990534648425 tho:0.009592946041824542 :0.22544436898827677 +of:0.20360911440194499 to:0.06162268898213869 the:0.060294459340602916 and:0.05096636370546451 in:0.025325310769848296 for:0.020840040018730643 as:0.0198962384543026 at:0.018096910403128323 be:0.013230808660489335 or:0.01306424436908635 with:0.012095714225520733 that:0.011500478610364302 on:0.011394662077530707 :0.011338671170177575 from:0.010701120217386884 by:0.009991182573347182 a:0.00982602469911861 was:0.008807720273863442 their:0.008106640440495966 :0.418291606606458 +and:0.1648336754134807 of:0.09917958819486251 in:0.09316719219868216 by:0.08977229247986185 for:0.056192342436598805 that:0.050427647943524896 to:0.049622309797264064 with:0.04414926158246965 or:0.03057561331828221 was:0.027084290287501218 In:0.02694640194682661 is:0.020165224066701935 on:0.018019349812399756 are:0.017908469442011084 from:0.016168692203033387 as:0.013930082064628688 but:0.011879565865350387 if:0.01040485128122294 while:0.009527534152966938 :0.1490456155123302 +and:0.08517996328337958 that:0.025974204168782645 was:0.02555650668469195 up:0.02266331431463286 on:0.02073592079733094 is:0.017605574076345824 men:0.015932653351505493 now:0.01564665377557511 out:0.014570680570030489 held:0.01435507569197402 them:0.014027816386944357 made:0.013725861814929076 time:0.013347875489510672 place:0.012892623552721914 in:0.012704938297970475 are:0.012135698433881893 not:0.01163380518493197 him:0.011631841934558004 or:0.011076235599351157 :0.6276027565909515 +:0.08676839508679945 it.:0.01934663453202327 them.:0.014226833694113417 him.:0.009472459483995669 time.:0.009026828084772221 country.:0.007816558029598446 years.:0.007121082509785246 day.:0.005902645379912247 it:0.005639034580858284 water.:0.005095633888459312 work.:0.005028958178574347 ::0.0050225067785700005 life.:0.005018996894775204 out.:0.004938188515961481 tion.:0.004833433688142154 .:0.00468483853898232 people.:0.0045208103723793905 year.:0.004505397491963228 up.:0.004246985569838246 :0.7857837787004961 +and:0.15950214210437463 have:0.08137952376006882 has:0.0769646312277644 will:0.0726764255510335 had:0.07061755146550022 was:0.06859910502119505 is:0.05102771723507706 he:0.049687826701702624 I:0.04563976648599552 can:0.02840284733569322 shall:0.027466640100124506 are:0.02738927460738599 He:0.024436368817898655 but:0.02436878821624429 would:0.02315913873200571 were:0.02182953783612525 who:0.021642305375594466 they:0.020314265149622115 could:0.01729640433846978 :0.08659973993812418 +the:0.11919516938815296 of:0.07230453158552728 and:0.05781056740443249 a:0.043018564803886335 to:0.031305092790907506 in:0.020848713353460488 at:0.014270110001066288 .:0.012526810245749479 :0.012413283442322082 for:0.011719122709941797 by:0.010808400946589808 or:0.010404172990115616 The:0.01003576004804544 with:0.009811868184449042 tho:0.009295902015355835 was:0.008924239095331684 that:0.008672304223433876 is:0.0085591147338948 be:0.008335143826716943 :0.5187411282106204 +:0.05408755002078587 that:0.049531093299571755 and:0.026307747831082865 it.:0.023066050300906284 but:0.01604063510609521 as:0.013691133477483644 them.:0.013231826614228009 country.:0.010841946065548622 of:0.010487154798430135 which:0.009468692177853443 people.:0.008334614695462483 years.:0.008004416265567844 time.:0.007956347283674411 If:0.007858697640010603 him.:0.007413514011734311 year.:0.006977232836926869 for:0.006851092903969388 life.:0.006064905382420001 .:0.005982979647669748 :0.7068023696405785 +of:0.3344558729561179 in:0.08801811870045288 to:0.07125504687149965 and:0.06526815011937744 that:0.0566647444676061 all:0.03470159084033971 with:0.03375615774157656 from:0.033664163432807995 by:0.02866886995007525 on:0.02718104666126028 for:0.02686763560317617 In:0.02161445669305531 at:0.018876328385375306 as:0.01662996414245075 which:0.015054946959146418 over:0.012906146575109245 into:0.010552777291544075 upon:0.009989494603828248 when:0.009523579952071305 :0.08335090805312939 +of:0.13084814232797154 in:0.0740836656586379 as:0.0625527229231004 with:0.059577596335708534 to:0.058433603729754965 is:0.05551580107464621 and:0.04946529489577619 was:0.04264000753602388 for:0.04009673021586375 by:0.037684080471064085 be:0.023941707008899252 on:0.02316059851167503 at:0.022644769441950232 such:0.019950936521181326 that:0.017856095877642635 like:0.017386655618315594 In:0.016902219705578994 from:0.016046571451088905 not:0.01205910100844263 :0.21815369968667797 +the:0.11919516938815296 of:0.07230453158552728 and:0.05781056740443249 a:0.043018564803886335 to:0.031305092790907506 in:0.020848713353460488 at:0.014270110001066288 .:0.012526810245749479 :0.012413283442322082 for:0.011719122709941797 by:0.010808400946589808 or:0.010404172990115616 The:0.01003576004804544 with:0.009811868184449042 tho:0.009295902015355835 was:0.008924239095331684 that:0.008672304223433876 is:0.0085591147338948 be:0.008335143826716943 :0.5187411282106204 +the:0.39749834532651884 a:0.07520030034269234 and:0.05540858759821703 The:0.03273515726769502 tho:0.030061875542463562 of:0.020144331424922633 tbe:0.014929647509541684 in:0.014268129706664795 or:0.013333166761078447 .:0.013287381914101323 an:0.009000188755386574 to:0.00880680429595084 :0.007943763822197133 Mr.:0.00773879605474787 by:0.007328417831573476 as:0.005922572098978465 for:0.0047526933692942485 that:0.004736121968310169 on:0.004594595720579333 :0.2713091226890862 +the:0.11919516938815296 of:0.07230453158552728 and:0.05781056740443249 a:0.043018564803886335 to:0.031305092790907506 in:0.020848713353460488 at:0.014270110001066288 .:0.012526810245749479 :0.012413283442322082 for:0.011719122709941797 by:0.010808400946589808 or:0.010404172990115616 The:0.01003576004804544 with:0.009811868184449042 tho:0.009295902015355835 was:0.008924239095331684 that:0.008672304223433876 is:0.0085591147338948 be:0.008335143826716943 :0.5187411282106204 +of:0.29262036195185903 in:0.11347888747497814 to:0.07626139103976029 and:0.06968702018605559 with:0.05598965135169327 that:0.05157741519643675 on:0.04261957977082463 by:0.040115825094677884 for:0.040034754023017836 from:0.026907441485771143 In:0.026170793353401094 upon:0.02556288350622107 all:0.018976993620127336 or:0.01030484830524871 but:0.010285946019848568 made:0.009963865800093778 over:0.009612300063338537 during:0.009069309262309786 under:0.008091505044052637 :0.06166922745028394 +the:0.16216330326664052 and:0.12485658641388624 to:0.07589197630210792 a:0.06061492316768628 of:0.05544052077541262 be:0.041473271823481594 was:0.033606506420760844 is:0.0326016163587437 not:0.02457507026724122 have:0.02272776936629277 are:0.02221218726711665 he:0.02183415389520795 been:0.020494017646982537 who:0.019317170857330403 which:0.017425934937074297 in:0.017292674831255093 The:0.01597438343203332 I:0.015365836938614472 has:0.014248485065610472 :0.2008836109665211 +the:0.3687894926204382 an:0.2618430451163579 The:0.04515794855185881 of:0.04152095120417192 and:0.040246039209911835 a:0.034396743792840655 to:0.02692171225336676 tho:0.0262457649578051 its:0.014198369452184346 most:0.012423901883439148 An:0.012136395941216517 their:0.011072294640550656 this:0.010127344624333613 on:0.009664134592042887 with:0.009296737821519978 tbe:0.007689943293805529 in:0.0071191968600180676 or:0.006940595230540258 very:0.006476359431876398 :0.046733028521721426 +I:0.1537847444562187 he:0.1348417245439956 that:0.07109227926480312 it:0.0631814680513021 they:0.05908515503486793 one:0.04840997312845596 which:0.04406158570527022 and:0.043292995935892094 we:0.03721705206914678 she:0.033893194811840686 who:0.028665073712591378 this:0.025411210001790842 you:0.024418340048897674 It:0.017245759699771535 1:0.016796010178044454 This:0.014219529225882668 as:0.014089005891056411 He:0.013066077208132049 ho:0.010046710350431101 :0.1461821106816087 +that:0.10381801773902173 and:0.07466662396320776 as:0.04259342965855974 which:0.038488233977497364 when:0.03626437271382822 No:0.035646363182107316 but:0.034617141844993135 of:0.02619676299569275 if:0.021210285167300422 :0.01861739734871089 after:0.018279921467309477 the:0.017626820484672737 for:0.01582320255975123 what:0.01520014614474362 If:0.014550100230558229 When:0.014360862515245742 I:0.013634674581073737 where:0.013009578392574392 to:0.012224555390988715 :0.43217150964216283 +is:0.14420202728840625 be:0.09733792830148674 well:0.09156340599116952 was:0.06653419950824276 been:0.058622904017596164 are:0.04939606455539499 not:0.04400308757040185 and:0.033676666926645595 Is:0.030362391550776652 have:0.029529010305472912 made:0.023020952278751672 were:0.020095102089529047 had:0.017649657742298392 now:0.016063247586439205 generally:0.012287012892081539 became:0.010494970395216458 being:0.01044947409608957 best:0.008969486366875641 better:0.008332656928641833 :0.2264097536084832 +and:0.3856619987948276 a:0.06754120375409824 the:0.05613357368623916 that:0.05552972875132663 or:0.04715244827106671 will:0.030650040753254833 but:0.028855498677753916 his:0.025163044903758633 most:0.022482312203891592 as:0.021623504210302843 of:0.0207715522320861 not:0.02024562005019802 so:0.020220959570555364 is:0.02010394389906075 all:0.017009365968707394 would:0.016614255091774506 which:0.01594311440705123 her:0.015569931117330939 are:0.01452285123339585 :0.09720505242331971 +the:0.23154984591621616 a:0.14403686513813724 every:0.06025398163754719 this:0.05306326086475291 some:0.036849671313169026 that:0.03597334946272182 next:0.03237022711335039 other:0.03183063006086017 all:0.03160179277889517 first:0.027158255993896735 one:0.02709032649499431 of:0.020730227094716964 to:0.018596349812661644 yester-:0.015276992883688173 from:0.014496712639732961 and:0.014298278070792609 said:0.013735811207708531 any:0.013484592680992478 The:0.011950746741406174 :0.16465208209375937 +the:0.24623263592829936 that:0.10778942202011253 some:0.08750211590139848 same:0.0740300796015197 this:0.05049248445999349 any:0.04155342406856063 of:0.04030433181433224 a:0.038629564827290616 in:0.036807936489053124 short:0.027357415027554306 to:0.02669758740071388 one:0.02398923986093456 and:0.023105697162200012 such:0.020989849144211644 long:0.019558533588418168 first:0.019161234575943768 which:0.01766622676512777 present:0.016950230315975843 The:0.013167897834401256 :0.06701409321395865 +to:0.6665168542128579 will:0.07928897627136049 and:0.03427210979526938 would:0.026950237646323174 not:0.019815524936993616 could:0.01974019219991165 can:0.018857828089988683 who:0.012539716318548283 To:0.012225743501860273 should:0.010964834490018307 may:0.0106667615144158 must:0.00888330695779198 which:0.007567596275698639 shall:0.007564556085021045 I:0.007306142796756008 that:0.007080282377904942 only:0.0061475557315354284 cannot:0.0053557358216718325 might:0.005156655004437531 :0.03209938997163509 +a:0.28137899415741985 the:0.18774436688130472 large:0.06496207335209074 and:0.02425549435358142 A:0.02005508439812006 whole:0.01956345441009782 one:0.01922987834430804 his:0.017365169008840817 corner:0.014218132102766599 their:0.013632349857488464 this:0.01353100506010206 The:0.013403967420517 that:0.012802543838727563 survey:0.012046966115116443 same:0.011190231377498156 any:0.0111172163958879 great:0.010976958224130145 her:0.0088788778188181 range:0.008272221776899312 :0.2343750151062848 +and:0.06319556613718873 the:0.05843477381439537 of:0.05472901176959635 to:0.04103499036444115 at:0.03616509771599608 .:0.03190165896761913 :0.020452420860987044 a:0.018188557064042307 by:0.015267300949035199 in:0.01271504981299835 was:0.010895281500230706 for:0.010583425975286068 A.:0.010331552211362411 from:0.009427099070634227 on:0.009228705344495188 Mrs.:0.009222695867127003 his:0.009077775188298717 with:0.008749494379923164 Miss:0.008735912471737899 :0.5606636305346049 +the:0.15917548554010702 a:0.07193739014704979 of:0.06671952313536714 and:0.05374519409306426 to:0.04382269392335387 in:0.03186886831813104 at:0.024528275529759405 be:0.02168338373309433 his:0.01915706377031634 for:0.01823325921447965 was:0.01725699848195284 is:0.01614886752463563 their:0.014262480155992798 or:0.0129181378463861 tho:0.011477545025850846 Mr.:0.009857507475014354 her:0.009829883873441228 with:0.009820257037267494 In:0.009206275318917422 :0.37735090985581843 +and:0.09244750502754502 of:0.07471101624719186 the:0.06796945978690729 to:0.054078482878312094 a:0.03660509608859993 Mr.:0.019845372364903673 is:0.01852807419748807 was:0.017965035670784585 in:0.016702288594925847 .:0.01631312028089071 be:0.015034259272253818 for:0.012649828437440964 :0.011650231141664521 or:0.01126154961310127 his:0.010713186890407404 he:0.010314917466259824 by:0.010172915031264471 that:0.010076352575272333 not:0.009991874179635866 :0.4819694342551505 +them,:0.030692139238067823 ;:0.02197975381749797 it,:0.020581860083679005 him,:0.017637014139463083 him:0.012335349847697545 time,:0.010329251770718374 it:0.008633396388013382 and:0.008556539987287561 them:0.008153211596077799 in:0.007571748406698039 people,:0.007356408629425354 me,:0.007353802879947586 time:0.007235954957867208 country,:0.006940709532630356 up,:0.00677064014951059 years,:0.006728660764913155 up:0.006341279480453583 her,:0.006194918815162868 be,:0.005864526192400167 :0.7917428333224885 +of:0.28767355066866834 to:0.08775711267569858 in:0.08678131196995101 and:0.05160598694501188 on:0.04646139928102899 by:0.04519522654900943 for:0.044547789071328545 with:0.03396756772609607 that:0.033699232901107726 from:0.03075346596941143 at:0.027039283056790858 In:0.021061449543044047 as:0.017514234937992545 all:0.012543839382496166 upon:0.011844431150487573 is:0.00998972746569266 was:0.008814315973987914 into:0.008557199930727406 through:0.007781895704231326 :0.1254109790972375 +the:0.16807735899698817 of:0.10541662057906837 and:0.05138367848570702 a:0.04141865232648221 to:0.0385989743764065 in:0.026264864977736738 was:0.019530675665220657 his:0.018900421021236905 be:0.017373825006196972 their:0.015767721170721456 for:0.01557246589796783 with:0.014071419046630446 is:0.012922913111931644 at:0.012690452250034052 are:0.010702713108721902 .:0.010158075558988393 Mr.:0.009672788574483367 tho:0.009612591781990074 were:0.009549306361446321 :0.391314481702041 +two:0.11539685045740611 many:0.08680769600006578 three:0.07373837089477175 few:0.06019163951523519 four:0.059596027995343234 five:0.05732343703436018 ten:0.0532258933821487 twenty:0.049618724505801515 of:0.04829409793045736 the:0.04165228974974295 several:0.03909244978612899 for:0.034267995151687616 thirty:0.03340755161053951 six:0.023073766507795777 some:0.020925651658488698 hundred:0.020553454007798365 fifteen:0.01962221799676419 forty:0.019222224083159038 fifty:0.015676544761759045 :0.12731311697054598 +Mr.:0.08067625934129388 and:0.06121118828566094 of:0.05458101659069107 Mrs.:0.05201651726733643 John:0.040223436888095626 Port:0.03051378162312611 to:0.026939156662661515 W.:0.025159721497194164 .:0.023412065966001257 the:0.021249831270540965 George:0.017921968755996918 William:0.01712486810717011 James:0.01709486221100608 Dr.:0.014910808619233 J.:0.014690512263474521 in:0.014095960042751142 St.:0.011450402805305383 E.:0.011002165761921227 :0.01042163470126632 :0.4543038413392734 +to:0.31135418047303837 with:0.10151068740377896 for:0.08615346185283239 of:0.0762203892433502 upon:0.03286398425757672 from:0.028891747749530152 by:0.02395446242046586 at:0.02096205122948024 against:0.018840821816188607 on:0.017947198160053864 told:0.01616143518979778 between:0.014043692693235894 asked:0.012782458438464421 in:0.012539676713148871 left:0.012208932708518964 help:0.01100095286998319 let:0.009383790560421497 around:0.00921549020013444 made:0.008839043047511572 :0.174125542972488 +the:0.2279565270620487 of:0.09342684439483202 and:0.04320892300192343 in:0.02928284693999526 a:0.02658202657848046 for:0.023282426222408722 are:0.01749370241452595 to:0.016412296705112562 this:0.015163731774693857 or:0.014896487004887556 from:0.014012726996165003 tho:0.013384300767758291 The:0.013281272028830246 :0.012446801524211813 at:0.011423197273251544 is:0.011306694314826239 was:0.010154819004336318 with:0.009609363557656642 an:0.009238963468449811 :0.38643604896560557 +the:0.19013067238574263 of:0.1009285319241109 and:0.05614988467433884 to:0.04096253561996551 in:0.027007079888183055 on:0.02686980677892144 a:0.024579873917748376 at:0.024557934201896517 by:0.014791202503803454 with:0.011362931830154936 from:0.011280625311974055 tho:0.011083229778406522 that:0.010941968419807878 or:0.0109261870301382 :0.010329898137021119 his:0.010323201093063568 The:0.009974473654096478 be:0.009786271078695782 for:0.009160631841941833 :0.3878530599299889 +the:0.6474122980954369 an:0.053732541226446336 The:0.03332979948457845 tho:0.029657808372825018 this:0.026730653571894726 said:0.024915340885931007 a:0.023953924555562923 any:0.013032480078280381 tbe:0.012794179422355098 and:0.012475937589042687 such:0.010609381345860295 of:0.00807172731889479 special:0.007513760203500749 general:0.0057766410716306345 no:0.005600532716185964 in:0.005579103145666884 that:0.004766340414083831 first:0.004583556579783269 present:0.004540394398655385 :0.06392359952338471 +that:0.17101662898173403 as:0.131770938837729 and:0.10568806867348579 which:0.0806331763014598 when:0.08057877905622804 if:0.058001450768417305 but:0.042966797223255075 where:0.033579365155959946 what:0.02389740621295774 until:0.016672366131022996 for:0.015112648102848977 before:0.013424935064020841 than:0.012778237963106395 If:0.01201560568856854 whom:0.010631929491607954 When:0.010380960857799238 because:0.009771246212389083 though:0.00917985601213245 time:0.00832928789230664 :0.15257031537297017 +they:0.16550494514139955 we:0.08652206951958655 who:0.07907194911464929 there:0.053746953992495676 which:0.05193425581910297 They:0.048852127835474775 and:0.04789322244273127 that:0.037966606484910174 you:0.0315984933960352 We:0.02865452820335012 There:0.028412275231052376 men:0.016761491820800733 people:0.01288864093792358 them:0.008223073836608464 these:0.00804065304836861 These:0.007768291489365621 as:0.007193442428577032 You:0.007046499040309267 lands:0.0064258946260943636 :0.2644945855911644 +his:0.17298300018273252 my:0.14154205081982887 of:0.14092407896063577 the:0.10822701073840654 her:0.05974288986962552 their:0.043928505983950525 in:0.03435552314520396 our:0.03147847512505089 and:0.03093847410873884 by:0.025534786236191688 your:0.025503716519145028 His:0.018401698651389388 a:0.01775262912164109 its:0.01748522707440846 public:0.014877822243650205 The:0.014251204242731625 own:0.010309385205993763 to:0.00936476626897755 My:0.008888127348914544 :0.07251062815278321 +very:0.19051090173273494 a:0.13739161159824206 the:0.06833807027960004 of:0.06626978843863846 so:0.04439050289859761 was:0.035603732359250136 most:0.03476367580197736 more:0.03194935113650451 some:0.029687218149935538 as:0.028694255345803242 is:0.028361663387598535 too:0.02649015129221704 are:0.025482504229160343 be:0.0251544431143411 and:0.02291230600204921 their:0.020439288535116337 his:0.01924085764489484 were:0.014754552061210216 for:0.013903782704153596 :0.13466134328797488 +to:0.26066795169917983 with:0.06411563176952902 for:0.06013816708823279 of:0.047995136308978226 told:0.04036477477605873 at:0.027428633638657673 upon:0.026739798260882883 tell:0.025250412812178203 on:0.023460440441758466 keep:0.02115272483733135 made:0.02006525600596113 sent:0.019973720550906904 took:0.018598174820431128 give:0.016493553174870418 take:0.015740315724696304 asked:0.015243212859230809 by:0.01496327693118301 make:0.014929398718943844 before:0.014658027704456022 :0.2510213918765333 +and:0.0680900472540365 the:0.05848029930643722 this:0.05760714704136438 he:0.04779847667944006 that:0.04323952024128989 which:0.03811032866294661 have:0.03775124687514792 be:0.034770550178507297 it:0.03134124903957619 has:0.02805851652916222 as:0.025419314459072424 a:0.023725886154005487 or:0.02346965166340968 who:0.019702492221731004 of:0.01967887991973361 had:0.016933643428758385 It:0.014297702942153755 day:0.014257923097768252 This:0.013374644299539376 :0.38289248000591974 +is:0.1520393434326444 and:0.15153982489469228 that:0.09861268408577888 have:0.05833006851775695 was:0.05246111637719342 but:0.04608423259889211 had:0.04291728991810075 be:0.037304115545038895 of:0.035639106516168466 or:0.03436031198081947 Is:0.0278139318588988 has:0.027557844241445063 are:0.024735274522875432 by:0.02413223242158841 with:0.023761559260717394 in:0.023071552044892953 for:0.016872570974128108 And:0.015077167318416167 to:0.01461854729017046 :0.09207122619978161 +and:0.13955763880917846 of:0.10043511286747332 was:0.05304518379277179 that:0.04577639865910921 to:0.045412647099890534 is:0.03468940860912311 with:0.033085614972739444 nearly:0.032448346205427796 in:0.03228342399203376 it:0.03163932820304634 from:0.027432289470489257 for:0.024395669450775728 them:0.02423536068614069 are:0.02342187876761145 were:0.02185584334123564 at:0.018925605968981424 by:0.018553123911486898 be:0.016266778865814686 on:0.01519853995351371 :0.26034180637315674 +was:0.18203256847991456 a:0.1434963089926691 the:0.09105411498137307 is:0.09027657095335287 be:0.05383521203405748 are:0.04488916552496929 were:0.044014618743793206 and:0.03256135845701494 been:0.026424673184419177 so:0.02218861047514861 came:0.018136123565414226 not:0.01667210976264517 Is:0.014046964032094648 being:0.013998934542839351 in:0.013159306592751779 looked:0.012721565468778784 that:0.012422577494990598 of:0.011325406238329082 it:0.011187669141305543 :0.14455614133413844 +the:0.44116140400675685 of:0.09005288959951663 his:0.03924035480199086 their:0.030778451698916923 a:0.02855355224622185 tho:0.026942834839468195 and:0.0265771418071491 our:0.024650220111235695 her:0.02045475268767174 to:0.015351931116323226 tbe:0.011806000901357559 other:0.011703925702083263 own:0.011702697986211786 on:0.01015762562228899 my:0.009101920635046116 for:0.008673983171653512 its:0.008497770733171286 this:0.008446542655156016 The:0.007933059612812637 :0.1672129400649677 +:0.06525488260431882 and:0.05336850373108727 was:0.036683880401444234 succeeded:0.034105313323264094 be:0.02828188518527975 is:0.02161051586008837 are:0.02059445581510925 were:0.015414751084376612 made:0.014085306690969213 but:0.012377849809517637 been:0.012108818217943101 them:0.010447008798506859 Is:0.00992692009352499 it.:0.009604155738313783 that:0.00925138964385901 put:0.008670030606028915 him:0.008318025052664648 found:0.008191498151881612 men:0.008000041037415747 :0.6127047681544061 +Mrs.:0.1520968495504062 by:0.0780689225303143 of:0.06139768815235406 and:0.05949195477699962 Mr.:0.04668512314508423 to:0.03787444964537619 Rev.:0.031074367843698755 girl.:0.029157596750167877 boy.:0.02894497318389638 :0.023398932776086068 Dr.:0.020853341590846022 Hon.:0.015060081503500314 .:0.013182367466913252 from:0.012626224420675113 the:0.012621587828175825 said:0.012398275159705282 Mrs:0.008282256820733204 that:0.00819706580250456 St.:0.007662670359517482 :0.3399252706930453 +one:0.1028303141280697 part:0.05963429477052991 out:0.04766456937681193 some:0.031418679026461914 members:0.030764490253327767 side:0.029940657362655835 portion:0.022063658796890564 office:0.020457735219956013 member:0.019726706386316174 end:0.019666887540649894 tion:0.018667441728710307 parts:0.016814747270460957 people:0.014112771422418794 all:0.014072739582212475 any:0.013183573287639892 One:0.013083578354183906 that:0.013024335602903442 account:0.012482348155001894 many:0.012077825070275192 :0.48731264666452345 +of:0.10061802192905726 in:0.07124010873583453 to:0.06545329592162243 as:0.05956584882045958 and:0.05760843020827124 with:0.05669786573448032 for:0.05406074411578962 is:0.03348482748309359 by:0.0327587278380066 on:0.032209392227546395 make:0.03005459602725163 made:0.025923752820471192 such:0.02427200997854763 was:0.024161872387741715 In:0.02291185122860391 at:0.021856418103033806 that:0.01690824648606645 take:0.014167862458440594 into:0.013655995805075002 :0.2413901316906065 +:0.04908678311478042 him.:0.0252683239325797 it.:0.020783913381861148 them.:0.018857697071879016 her.:0.012416863823225205 when.:0.007904208177653244 time.:0.007153861783288018 life.:0.006825761999553946 me.:0.006814994395758039 .:0.0068136711652606275 country.:0.006459469815400525 us.:0.005838940374037896 again.:0.005517411064931208 man.:0.005273398511123248 all.:0.005187256729133913 well.:0.0051763730274446695 day.:0.005044264568481794 home.:0.004947150583950099 work.:0.004763884349586227 :0.788865772130071 +will:0.2175365822777746 to:0.17554450763209584 may:0.08623333172068401 shall:0.08041529536633922 would:0.07963838354763243 can:0.0686350465325521 should:0.06558858800631108 could:0.04108202988678134 must:0.03844084709120082 not:0.03447737696457744 and:0.01900804387345036 might:0.016344081511687956 cannot:0.011809615945327999 that:0.003612072429708582 probably:0.0034795509410312613 it:0.0026400152065722796 need:0.002082786009094759 they:0.00207433549849669 or:0.0018523798253405068 :0.048505129733340785 +of:0.09129790931378902 the:0.07369883040827747 and:0.047842263382354346 in:0.04189055351593407 to:0.04045875475680249 a:0.03542341257202578 be:0.02020462051672066 for:0.01979292654746225 was:0.01760256398103379 at:0.017380150555488715 is:0.014984483003968216 with:0.014047653760730413 by:0.01374644383819499 :0.012670486581795598 In:0.01200961464556976 or:0.011563835749786333 from:0.011391516893522809 are:0.011273104484969465 that:0.010755276030689069 :0.4809655994608848 +of:0.18564298642686505 to:0.11172498035630628 for:0.08652018574484424 with:0.08565880048346106 on:0.06298363508670643 upon:0.06217644665015095 by:0.03964654035094501 from:0.031185781566700734 in:0.02967881570429422 about:0.027261311199554515 at:0.02541706605827828 among:0.015948152684768027 before:0.01514266408169994 over:0.015011059708634788 against:0.01411373723044795 behind:0.010308734161471253 make:0.010116779929073122 give:0.008648115552355723 around:0.007810189971566161 :0.1540040170518763 +the:0.17164432908599558 Mr.:0.06421009480039622 and:0.061291903037774986 of:0.05764798243978556 a:0.03691502696633763 The:0.03677422128416326 he:0.019341862256149436 that:0.01597056824200202 which:0.01463454761714177 to:0.01309859312434648 I:0.011775424918272388 his:0.009857861683738369 it:0.009510207505849457 have:0.009497635696000751 tho:0.00932412407150642 or:0.009261622401570023 as:0.009261443270707437 in:0.009056429322102849 an:0.008562697014236797 :0.42136342526192255 +of:0.2419013991351788 to:0.14877750712395776 in:0.06159420634466064 and:0.05592065714734963 that:0.044711655388417995 for:0.04471136827894212 from:0.04391648000624238 all:0.04390318834861192 by:0.039639923918998995 with:0.03517396926603406 at:0.03389003986756562 on:0.033817210771253915 as:0.015109896252428956 In:0.014932899304962655 upon:0.013220974299706336 into:0.011752629951576507 is:0.010416964936658073 over:0.009663283673707522 through:0.008533603841152381 :0.08741214214259374 +that:0.2206558337523721 and:0.10972161926452756 which:0.08229543813546596 as:0.0681645920225696 but:0.04231498055399932 if:0.04139244713476562 what:0.028288009917833132 when:0.021586236108686395 where:0.019450816307761142 If:0.01761393971655806 whom:0.01371423440100239 But:0.013389755408276601 because:0.013318665498907967 while:0.010931198022851326 though:0.00930904222503008 think:0.00894899275399623 than:0.008537288195097293 then:0.008312869370011343 whether:0.00808868782009429 :0.2529653533901936 +and:0.14968526183729639 which:0.08995857530251532 that:0.08190030668154816 it:0.06370224930678522 he:0.05234683594762321 you:0.05102311011240018 they:0.050127681892714125 who:0.0366671248630617 we:0.03561042937319419 I:0.030934538586437497 It:0.02333200737952892 the:0.02286470836283977 or:0.019835212027671818 as:0.01699118368118838 this:0.014556257190818519 but:0.011072723917724894 there:0.010150604763045008 This:0.009704032751835479 she:0.007814307523457017 :0.2207228484983142 +of:0.2453564627239349 in:0.10411864810952319 to:0.09399283810354048 with:0.06577674589475833 and:0.06364295185958468 on:0.06137594248773704 from:0.04003432650127033 at:0.029617096203071333 for:0.026993914302898412 by:0.026676418141933476 that:0.025571751922426895 In:0.018368277033657086 upon:0.016811333061616578 up:0.013595121846714723 all:0.012686639695120048 over:0.011040414790348747 about:0.010353650918379706 as:0.009696151939301192 made:0.00916269168726583 :0.11412862277691702 +I:0.14488345727875376 and:0.13896951252639128 he:0.1195740549848123 who:0.11026026126896951 we:0.06227223836439661 they:0.048936904523528654 she:0.03675399035245673 never:0.035467493979583965 you:0.035387942651482034 ever:0.02777566858309398 He:0.023474469799800213 be:0.022353482217697698 it:0.01675690539534185 We:0.016296311643134945 which:0.014072980177216922 not:0.014028785171824933 or:0.013938203002169703 that:0.011799896097613859 ho:0.010008482016620367 :0.09598895996511064 +for:0.16294027303953923 once:0.12360014756605968 of:0.07612129861024149 in:0.06956032955396028 and:0.05068855223458329 to:0.047902614361600544 twice:0.04391976343654751 was:0.041963361203286816 as:0.03987693700982271 than:0.038084634463107184 is:0.03259616828366701 about:0.03149289784119748 with:0.024068909734976166 cents:0.021249148070722715 over:0.020212891273595983 within:0.0187855186373738 on:0.016840264333827484 that:0.01669701253651877 such:0.016408227128177903 :0.10599105068119395 +a:0.3884469936118696 the:0.2516295347949699 large:0.1172598166199743 A:0.04263538507407082 The:0.038751151922176284 great:0.015784669032137842 total:0.012450029176985985 and:0.009906332100247798 tho:0.008795594021867324 whole:0.008551498061751726 any:0.00830995036862049 considerable:0.008078460889881919 this:0.008064962747566476 sufficient:0.00759398209225476 largo:0.007553634725424092 goodly:0.006793601890766698 largest:0.005417677222877226 small:0.005326727807158831 greatest:0.005260218271373045 :0.04238977956802493 +the:0.2530036573507608 said:0.23057907779622755 of:0.18524905870016056 described:0.05869408559259074 The:0.028156383382220623 Said:0.022784009245678263 such:0.02225362332976721 that:0.014643612090247267 any:0.01393544634393761 this:0.01144790962686932 tho:0.011032561234675506 certain:0.010271227397689748 and:0.009735120486143872 county:0.009132838296980687 other:0.008956946787374381 by:0.008648856634921629 same:0.00736314177949983 a:0.006892462412873752 their:0.006888777292277113 :0.07933120421910353 +is:0.20792828306207056 was:0.1334222185311238 are:0.10758813382676441 be:0.08705959237946449 and:0.07535852303121843 not:0.04780820308442461 were:0.03388183092650263 Is:0.02849961004264169 been:0.027570968729784335 it:0.023420259367260776 far:0.020244526531376435 am:0.015635066972119485 have:0.014364019288306343 but:0.013333828756965772 being:0.01248622129367295 them:0.012315069616159495 just:0.011898927483125354 had:0.00964022724706354 has:0.009444577199512303 :0.10709991263044259 +that:0.2182528121582997 and:0.10909674213661594 which:0.07827131913855019 as:0.06789120824400124 if:0.05873503078318953 but:0.03949542361376279 what:0.029247592883415673 If:0.026123856888845127 where:0.025698125024710222 when:0.025277282630221047 than:0.015259796380906252 But:0.013852891510919485 because:0.012208567219124769 think:0.01131032118448667 all:0.011088017357985626 whom:0.010858695141514465 until:0.010211166668103334 before:0.0089359059832595 whether:0.008717699915127025 :0.2184675451369614 +and:0.10614322970360691 Mr.:0.08222562917331291 the:0.06389604171194736 of:0.027037138278008677 was:0.024840500645938384 .:0.022763281780895723 The:0.014071694759593004 he:0.012539022978780925 be:0.012431918913427192 Mrs.:0.011893828983553336 his:0.01148989073955046 all:0.011187333578860356 are:0.01058306325880811 Dr.:0.010519746338551324 were:0.010017141074122668 her:0.009844058466504853 their:0.009357279463788712 :0.009344664958595036 Miss:0.00927313361978637 :0.5295414015723677 +as:0.10511378397310965 of:0.09262674251577396 to:0.06889727349862963 for:0.06028137450879192 and:0.05741948897134164 in:0.05635649322307527 with:0.055982009885365086 by:0.04754508783904152 was:0.046684496872274425 is:0.04384626022610408 that:0.031819141110550744 be:0.028999072758454755 such:0.026512444245246465 at:0.024508218812775335 like:0.018748526577469744 made:0.017977845227098957 have:0.01589138606333027 In:0.01578671256416271 or:0.01575192906597315 :0.16825171206143072 +of:0.3691050681680649 in:0.08269666719151458 the:0.06387093969020449 this:0.04744138649869926 to:0.04591483185302655 that:0.03342440164293568 said:0.0269332555533282 and:0.022122224231736164 quarter:0.015249635138055224 or:0.015199848067139416 a:0.012813602080359884 In:0.012610553521995908 with:0.012470412661618557 by:0.012078760720696424 for:0.01013462309982889 every:0.009583489183837706 amend:0.008397515406846577 other:0.007919458221890127 such:0.007244639257988306 :0.18378868781023314 +and:0.08720955389758717 the:0.0859858173833579 an:0.06588251959340724 No:0.037257779060230915 to:0.03558735738363087 of:0.03216868529977626 that:0.03155027098109724 at:0.02941798781811346 :0.028905606416155128 a:0.02539930150355039 No.:0.021076015548765942 which:0.020213321319464024 but:0.017602182828662914 by:0.014183747439769976 from:0.011908347364373958 for:0.011149579359532072 as:0.010412298116323798 The:0.009996868470090677 with:0.009547719966489855 :0.41354504024962024 +Mr.:0.08522445933691458 .:0.05251348868088509 and:0.044602591365318446 the:0.03944715124345375 of:0.03925953064356529 W.:0.02997512063037438 to:0.029786723236247478 in:0.028495490126928768 A.:0.028284791576225977 D.:0.025790020468847208 Miss:0.019493123909733855 John:0.018997154561438145 C.:0.016546991276390154 J.:0.01586984844492607 Mrs.:0.0152993509231722 M.:0.014724216049998429 E.:0.014393870527154821 at:0.014062370831311548 for:0.012200184315677048 :0.45403352185143675 +number:0.07892755457005574 one:0.04578919694216947 out:0.04029391689588557 means:0.04006501186733391 kind:0.03578905584400564 sort:0.029954922056497885 matter:0.02689735902585486 line:0.02471264604642993 all:0.022532221309876088 purpose:0.022274495620145933 way:0.021762970161431767 amount:0.021032959875024876 loss:0.020186607495665268 case:0.019698901276898672 instead:0.019565734136916466 use:0.019079232983191988 favor:0.019050278171100145 form:0.01831010795953799 question:0.017961970287157146 :0.45511485747482067 +of:0.09129790931378902 the:0.07369883040827747 and:0.047842263382354346 in:0.04189055351593407 to:0.04045875475680249 a:0.03542341257202578 be:0.02020462051672066 for:0.01979292654746225 was:0.01760256398103379 at:0.017380150555488715 is:0.014984483003968216 with:0.014047653760730413 by:0.01374644383819499 :0.012670486581795598 In:0.01200961464556976 or:0.011563835749786333 from:0.011391516893522809 are:0.011273104484969465 that:0.010755276030689069 :0.4809655994608848 +and:0.08426385243573153 to:0.06411932600906842 it:0.04779826933679231 is:0.039813105841994684 not:0.03906511856513322 was:0.029157183209485283 well:0.02881664033690463 will:0.01744670173378002 him:0.016576538916891002 only:0.016559529082184676 are:0.0156395178406086 as:0.014218718738183712 also:0.013971417504978644 all:0.013536796819329771 much:0.012950878331195424 them:0.011297261491185222 It:0.011267236873859604 now:0.010382017203286098 :0.010359023063096112 :0.5017608666663111 +at:0.15759636317629921 of:0.1421714067936483 in:0.11676904876960983 to:0.06398364411645996 on:0.051157018190029144 for:0.05108566601725402 and:0.04555513108461132 that:0.031721944739604234 from:0.030113826054908015 In:0.029702699076370135 At:0.029399515452081842 with:0.028043139425789426 by:0.026185917658690036 is:0.020303271491863204 as:0.01797707611473321 was:0.017223050385135958 upon:0.016504659720422372 about:0.014081527374087893 be:0.01236778699448754 :0.09705730736391437 +the:0.48676751730630596 The:0.10903267314635431 Federal:0.04451906461088198 of:0.03811479895084735 that:0.02053426252247215 States:0.019869366337561742 tho:0.01914963130576058 General:0.018287898446117865 this:0.017436960353303086 said:0.016923893032736077 our:0.013584166412692585 and:0.013144934902358359 British:0.009267961942702364 American:0.008122362994193751 National:0.006704012321796288 tbe:0.006014709450433003 a:0.005731342502305777 such:0.005567742184126631 This:0.00526784127615401 :0.1349588600008961 +and:0.04337795460609114 :0.04027966840443361 was:0.015405450808883486 be:0.015137168327352745 me:0.014742556831720956 made:0.014557767083183489 him:0.013916136109535437 it:0.013565537826998767 not:0.013471044867103599 them:0.013324724709522196 out:0.01318368096920744 that:0.012957127274905413 it.:0.012159982186553002 is:0.012012911394231352 work:0.010806780242867721 but:0.010413454670684393 found:0.01030687332720299 done:0.009637422283105733 appear:0.009374867127063823 :0.7003688909493527 +:0.07504926818807506 them.:0.019580715470779622 it.:0.01535357802246043 .:0.012858022914129382 time.:0.008328777314774858 work.:0.008143817567896039 him.:0.007628980601253122 country.:0.007185858272270465 year.:0.006715738026881931 water.:0.005762354572154593 men.:0.005582082925725272 her.:0.0051237018942225316 day.:0.005071360119934169 years.:0.0047104016690053055 life.:0.004557584056618085 again.:0.0042876407953888005 home.:0.004210456285809414 place.:0.004204555579936776 world.:0.004190806818948589 :0.7904542989037355 +and:0.018458969392872757 it:0.009128275497319838 them:0.00877695335660415 ;:0.007516670793432371 ,:0.007278529546914559 up:0.007260074007725207 sale:0.007114225488027517 them,:0.006809040217538716 years,:0.005982568832528832 of:0.005594472077942569 well:0.005565278957484534 :0.005555230818643883 :0.005306437429505958 he:0.005006657340186999 land:0.005005000384173792 it,:0.004785452723550659 him:0.004695348966550801 him,:0.0046344106415580535 water:0.004593881078192761 :0.869932522449246 +of:0.2392343106336314 in:0.10428928529569782 to:0.0807425084574613 for:0.06003667897230786 with:0.05054384427035076 any:0.0496000647389523 that:0.04420337976208949 and:0.040707739996899875 by:0.03401288530199266 on:0.021032551724666528 all:0.020556027011691028 at:0.020339587192555006 In:0.02028145078005806 upon:0.0174368476021286 under:0.01666238782657208 no:0.01632749374328473 or:0.014388635833445518 from:0.012909826987441234 as:0.011750536255517459 :0.12394395761325627 +it:0.1496983854216909 he:0.10964337238428326 It:0.10638682511248473 I:0.050969923320639536 He:0.04860408290558634 which:0.04656491803935457 and:0.039028603386181866 who:0.0331862277940019 there:0.03053864313057572 she:0.02473831015765317 that:0.020673460236108037 There:0.013695532075392687 She:0.013377251164555395 lie:0.010305604736014575 bill:0.010179505281152806 man:0.009520310547670104 ho:0.009465156303370794 as:0.008752836029768285 This:0.006926077595687868 :0.25674497437782745 +was:0.20718976727551272 be:0.16279992668320473 been:0.09254984931106204 were:0.07767578640956443 is:0.07077289800174823 and:0.04576179909391398 have:0.04558506824008317 are:0.04042662503111933 had:0.03516136931451225 he:0.02492350977639834 has:0.024094916420504653 bo:0.014753255511459926 I:0.013671088112353813 being:0.013259024721494768 duly:0.01321196827717867 ever:0.01127321272584521 not:0.010664193108745766 Is:0.00871917256537584 so:0.008493491250017362 :0.07801307816990478 +a:0.2530725700805607 the:0.18527404382617646 and:0.10001621173824271 most:0.09174777099522718 of:0.07302380501410964 in:0.033848746601182415 more:0.029788539381721532 to:0.029184090506870708 its:0.025520307723768777 with:0.022533291208987616 by:0.018226430414646447 very:0.017890411582732167 their:0.01615907257494212 our:0.013702790675663722 The:0.011714328308743596 for:0.011441771106623054 his:0.010116133188586902 an:0.009841195214622563 any:0.009600736038428861 :0.0362977538181628 +the:0.15221692559957206 of:0.08069151212182069 and:0.07240635484257117 a:0.06392219701248592 to:0.049176531100385425 be:0.03126073625539749 was:0.026597884151575976 is:0.023935668013294973 in:0.01809554000060103 or:0.01736809520316659 not:0.015262215701975859 are:0.015051161940897423 an:0.01311498090898963 been:0.012584606500930769 for:0.012457103310419224 their:0.012288032821829989 his:0.011371194071019814 that:0.01120572166061323 were:0.011074588239307515 :0.34891895054314526 +the:0.15581749273741854 of:0.08293978661136267 and:0.04961001163906395 a:0.04000012969790064 in:0.02895914996284492 to:0.02508675126245636 on:0.018181481430743555 an:0.017388054587682077 by:0.015022366274711006 .:0.014887656095291116 for:0.01442221333539546 or:0.014348404304203588 :0.01324998946505155 tho:0.012687509357106344 The:0.012185739096993678 as:0.010458943388076776 his:0.010137307808733047 with:0.009981704956818896 that:0.009409068132527624 :0.44422623985561815 +and:0.06954454630682382 the:0.04591889931765341 to:0.04441537768223494 will:0.0397394699508654 which:0.03902395676601593 said:0.03884001254090859 of:0.03833137054480887 that:0.030175267836648433 may:0.02893916347065599 for:0.027061765505786938 it:0.023382938579402008 there:0.022841550737806325 shall:0.022684019024387738 would:0.020975563107901354 a:0.019245805635819582 or:0.01860143985334092 should:0.018461796486249123 can:0.0182102597929919 as:0.01668322510220108 :0.41592357175749767 +I:0.20310614865499124 we:0.13095336151644477 they:0.10963388335706742 who:0.08037077981491167 We:0.07488153667062789 you:0.039983544501829914 They:0.03415185450415067 would:0.03199343594162023 to:0.030793264693848865 and:0.026871895058738 1:0.022825749939299082 which:0.01789719419924261 will:0.015887388995413882 should:0.013516297021785922 men:0.01063709377663105 must:0.010533161864037152 that:0.010202623106271102 people:0.010010163778980136 "I:0.010000933548033069 :0.11474968905607533 +that:0.27435050474302997 when:0.0936504634999025 and:0.07514715140531862 which:0.0637390162622278 as:0.05498557831961495 if:0.0396753277843658 where:0.03847508245584794 but:0.0374686916236321 said:0.03139388692667523 until:0.01900278818390128 while:0.017895471398021518 because:0.017321708662493104 When:0.015948059672308543 time:0.015167154002251356 what:0.013119112870121706 before:0.012734910158522643 If:0.012620547493008344 whom:0.011774683928828633 though:0.010411169831012573 :0.14411869077891537 +to:0.12022893700269083 and:0.09020394424291768 the:0.08587503820055309 of:0.06450042443224316 in:0.0310058468700829 a:0.017742048521183405 :0.015548046036689871 not:0.01491307651316237 that:0.014112408707955496 for:0.013734482372212283 I:0.013065769926808477 will:0.012848502316304782 at:0.012837991177321897 In:0.012628718855091186 by:0.012491091048660757 be:0.011425930130217754 is:0.0113962101007567 he:0.011342727513475473 or:0.01112522537451577 :0.4219735806571561 +the:0.11919516938815296 of:0.07230453158552728 and:0.05781056740443249 a:0.043018564803886335 to:0.031305092790907506 in:0.020848713353460488 at:0.014270110001066288 .:0.012526810245749479 :0.012413283442322082 for:0.011719122709941797 by:0.010808400946589808 or:0.010404172990115616 The:0.01003576004804544 with:0.009811868184449042 tho:0.009295902015355835 was:0.008924239095331684 that:0.008672304223433876 is:0.0085591147338948 be:0.008335143826716943 :0.5187411282106204 +the:0.5331346152967454 a:0.074479761379864 and:0.04704103157381452 tho:0.03454570415259108 The:0.02699877677206258 partition:0.0213425756947721 tbe:0.016721039090549495 in:0.013478814128699026 or:0.011171123722174811 of:0.009429996000544201 any:0.008454066396410567 that:0.00845195800012143 this:0.007900606320593594 great:0.007235761211550324 first:0.006981469561839501 east:0.006708413336403268 large:0.006331090562055545 same:0.006127829967434819 every:0.005540310367919745 :0.14692505646385387 +and:0.11059640031624883 was:0.05442710137711714 is:0.05152226245643336 be:0.0365548723998906 that:0.03274158918030453 not:0.019906826635185757 as:0.019178919768930432 but:0.0183268892622615 been:0.01720742045427124 are:0.017064521766446978 men:0.01597981398784955 them:0.015972086094458788 it:0.015210833189217496 now:0.015117014210818947 him:0.014939818201301455 were:0.013166570976298593 out:0.013006681322341736 made:0.012813939171233598 more:0.012320768984631464 :0.492945670244758 +to:0.29658493387875406 will:0.19259727998303594 shall:0.07731178580828142 would:0.07228788432647981 may:0.06038624655811437 not:0.05311867636940644 should:0.048562339464610464 must:0.02788410291218208 and:0.020262180765981623 can:0.018413167236903363 could:0.010096829104122098 might:0.00974908751224963 it:0.0094054016237592 cannot:0.008716071941361626 that:0.007401457982484262 also:0.006204604036345916 then:0.005147954298172691 only:0.0045443164752335405 now:0.004416805892829574 :0.06590887382969188 +the:0.11919516938815296 of:0.07230453158552728 and:0.05781056740443249 a:0.043018564803886335 to:0.031305092790907506 in:0.020848713353460488 at:0.014270110001066288 .:0.012526810245749479 :0.012413283442322082 for:0.011719122709941797 by:0.010808400946589808 or:0.010404172990115616 The:0.01003576004804544 with:0.009811868184449042 tho:0.009295902015355835 was:0.008924239095331684 that:0.008672304223433876 is:0.0085591147338948 be:0.008335143826716943 :0.5187411282106204 +of:0.45812468769796816 in:0.11491255930532543 to:0.07660727822138672 by:0.06470100768890205 for:0.03795624692891137 and:0.03552870676946608 that:0.02963055561622983 In:0.024433290027738565 with:0.02038314677607298 from:0.019352947839132814 at:0.01348558124083429 on:0.0098960420271462 into:0.008415963800840367 ot:0.007628718873163379 throughout:0.006710718387056355 between:0.006577947013258144 through:0.006001642503385163 over:0.005938561531983579 upon:0.005683392292442409 :0.04703100545875611 +and:0.13444431052572398 that:0.09060920896885054 when:0.05201833256042111 as:0.04000650098802689 but:0.033405478087257905 which:0.028314110523993546 the:0.026088653189590156 When:0.019638778465128626 so:0.017650544135855633 :0.01735611685456996 if:0.016043562271185627 of:0.013596994045199784 an:0.012513564187652093 Then:0.01236365373435304 As:0.011546044797761406 where:0.011031915650696215 But:0.010673029057999403 time:0.010357384357345565 it.:0.01013375217815341 :0.4312080654202351 +of:0.20140980652798568 in:0.16099731630917316 to:0.11386553598884262 for:0.05803100762657421 by:0.05419236167257468 In:0.04348541496990122 and:0.043032380890721596 that:0.039261886482196855 with:0.035589357267832265 from:0.035285388400696824 on:0.03500185408422615 at:0.024059094606966067 all:0.01761748219057553 upon:0.016230864092424836 into:0.014674785639540056 under:0.01394076966810868 through:0.01287479304184885 as:0.009928997659865877 which:0.009273372486766131 :0.06024753039317873 +and:0.07181562702745725 together:0.06672214896410926 connected:0.05460722541492519 connection:0.053485248068146786 accordance:0.040816432970329504 comply:0.022327715315442986 acquainted:0.01991331996883064 compared:0.01902004432375884 contact:0.016949822974841922 familiar:0.016791563233682194 up:0.016271038698657696 do:0.015355480362757417 interfere:0.014875808889703945 charged:0.014646284015101253 pleased:0.013610051164447858 him:0.01274062267734275 but:0.012200014478196207 satisfied:0.011962054640116513 it:0.011810815262474694 :0.4930786815496771 +a:0.15085088983189626 the:0.1358911207743033 of:0.07113530533545426 to:0.06202179431395369 at:0.051698756056755085 and:0.045914521778876644 for:0.03182712040815663 in:0.029490479598060632 his:0.024341781518396995 by:0.023552138993771694 an:0.02052484694693889 from:0.01674994231128373 with:0.015463556858337718 be-:0.013862873138031653 was:0.013697874593056342 that:0.013510488206797948 as:0.013162626228064876 their:0.011745880722931772 :0.011071158324385917 :0.24248684406054596 +four:0.06664718233205993 two:0.06159267645841974 a:0.051701005551194286 and:0.05118790385564166 of:0.03674709054302469 three:0.03659284700341996 the:0.034913008961461614 to:0.03411341776332348 six:0.029135854296601125 all:0.02524659007866225 ten:0.024101494718383864 her:0.02342699418529728 in-:0.021937082220602668 his:0.019104370020885733 twelve:0.018634780907010744 one:0.018126163283571337 five:0.016407794250525902 few:0.015305943495234568 other:0.014137173301834638 :0.39994062677284453 +the:0.13987575842963337 of:0.11852346070415384 and:0.0963072448019898 in:0.06789983058743904 a:0.03969157867574745 was:0.034859941870910544 is:0.027535153340949064 are:0.023837637965263416 be:0.022833671015685297 for:0.02238714373648263 by:0.021037585439734795 to:0.01742709704260978 In:0.01710682232197593 been:0.01680336484265405 from:0.016507157063768207 were:0.01546416326081484 or:0.014614228560089978 not:0.01340921522630585 as:0.010338408172987403 :0.26254053694080476 +the:0.5446720414323408 The:0.1164213385997986 a:0.07386992284722077 tho:0.0481774640143939 and:0.030598397204075686 our:0.020489944880735262 of:0.01855810358671966 that:0.014311585989348398 their:0.013348038035410683 tbe:0.013041322016327888 his:0.008750641870923342 Tho:0.008563852468652185 as:0.008312661397335825 little:0.008215823098183412 such:0.007897615114606139 this:0.006424920632202348 or:0.006363314123316315 these:0.00634200041305164 any:0.006093309757413693 :0.03854770251794342 +of:0.047751137370728225 :0.04582712551520584 that:0.03480771793967495 and:0.033789157106262985 as:0.028685676906952166 to:0.0185247693864621 make:0.015151346387780857 on:0.012697879670170567 for:0.012667141453654947 in:0.0125548657424546 but:0.012001824819631402 with:0.011530962402472459 by:0.010533600958442942 which:0.010435652011026692 it.:0.009875048056734018 made:0.009114072040780642 or:0.008374744458678739 .:0.008339911517911238 do:0.0074168815274498435 :0.6489204847275248 +:0.09720814357098953 .:0.026482536197161854 OF:0.021256511132367144 it.:0.010493877368127456 J:0.009508297651996542 at:0.007487401581968786 Mr.:0.005843207215528929 W:0.0057845047684062945 them.:0.005364437429030263 M:0.004990615386266733 I:0.004949363042347908 Mrs.:0.004811400124028769 BY:0.004491200327536236 Mould:0.004461263362287421 J.:0.004428633494433439 W.:0.004314051196001115 him.:0.004230409924051653 C:0.004139478950601655 C.:0.003989131509968739 :0.7647655357668995 +men:0.01883857801859576 life:0.015922633794779328 up:0.013286414990184191 time:0.010898526342752773 him:0.01069186003599996 long:0.010664440401606587 out:0.010022026687162828 house:0.009849013062912007 in:0.008914284263332408 it:0.00870221994006191 body:0.007951495513655177 work:0.00756838933195332 man:0.007566516528878459 city:0.007421096927425011 them:0.007073575608946766 night:0.007011009222074798 day:0.006715854173635776 years:0.006641918304743505 good:0.006600252314597581 :0.8166598945367018 +state:0.07622825752513539 place:0.050332104502630926 out:0.03753124361195513 city:0.03058034891333476 one:0.02539653012808829 State:0.02511654694181679 line:0.02180000607054329 point:0.02081417694051998 number:0.018145420881625587 amount:0.017085552490976874 full:0.016502005272588504 power:0.016312085429485472 House:0.015942784364533426 day:0.015400065793635814 and:0.01418229168549585 county:0.013882551137333629 tion:0.013633657904945725 system:0.013527976399965638 that:0.013184201536817186 :0.5434021924685717 +to:0.3069116742713826 told:0.07994031149743756 for:0.06544899681931658 with:0.046273372251538214 of:0.04606994459170659 at:0.03325770957843373 from:0.02279871781730975 upon:0.02167084076131405 tell:0.020682400802018983 asked:0.01621074622924571 left:0.01536172962223563 on:0.015030370659648714 in:0.014883147351486188 do:0.013750228672027355 made:0.013022534021900123 about:0.011935262264844433 before:0.011916968447623286 against:0.011137542394092845 see:0.010182917133384052 :0.2225145848130536 +the:0.13811928498103937 and:0.0908446683468332 to:0.049824681130026964 of:0.049036890693726076 in:0.0371627789960751 a:0.028917804465932617 :0.021282617290195618 for:0.020213878443470883 I:0.017423534508377247 that:0.016827692578723758 at:0.01591086848994245 on:0.014664432712347037 In:0.013450553722332998 as:0.01335827702028922 will:0.013001313111314102 which:0.012365714114898773 1:0.01181803448923144 The:0.010940067841607228 or:0.010479429244309469 :0.41335747781932647 +of:0.424082798039242 to:0.14121105246938934 by:0.055757708496609756 in:0.05300227147201433 and:0.039985097635771696 at:0.031758537105636905 from:0.023537023137472027 for:0.023319299697507533 with:0.022468582726181578 that:0.022249776190911452 as:0.020125343869834604 under:0.01773395929879901 ot:0.011902983290055279 on:0.011203689191032826 upon:0.01042404857551137 which:0.010180030513923872 In:0.010053309545583236 against:0.008846739601480098 ol:0.0077040350342279604 :0.05345371410881515 +it:0.15590291243815246 there:0.0887784025092866 It:0.07904016205387611 which:0.06936908824431676 they:0.05362226352982171 that:0.04647101454662571 and:0.04420120519214072 he:0.027952982163116303 There:0.027623278151575524 mortgage:0.023443129896555264 you:0.018859539766003214 who:0.017891862574647276 this:0.014117846301193209 I:0.01363040583752058 sale:0.011818751696880098 This:0.010767348085132659 work:0.010306262168963347 as:0.009927627839447666 They:0.008978002990569422 :0.26629791401417535 +in:0.024745671141431252 ;:0.021522984044907358 Under:0.020875399401828296 given,:0.011497823484486516 him,:0.008673043253468554 them,:0.008411734917607014 ,:0.008381729419098215 up:0.008183854591543931 thereof,:0.008118754678315116 mortgage:0.007035235590636141 years,:0.006852324131213381 States,:0.0067448333563323 county,:0.0061059672562892246 land:0.0060058141326634 day,:0.00599734573268566 it,:0.005992649533783088 and:0.005610048433393659 time,:0.005417556421912032 on:0.005343730308206672 :0.8174835001701982 +and:0.07359963406644195 be:0.052667135004264946 to:0.04483536256874564 of:0.043448293679263235 the:0.03579172892628988 in:0.028005289969665195 was:0.026700397492138477 is:0.024892551934152005 re-:0.024162182625676702 he:0.024086629517294657 are:0.02098604388819216 from:0.020307931541148256 a:0.018606881911690538 or:0.018077853608073062 for:0.017195224169077532 been:0.01615904189338184 I:0.015254891559368164 :0.015184018660626356 which:0.015016145996292442 :0.464022760988217 +of:0.09129790931378902 the:0.07369883040827747 and:0.047842263382354346 in:0.04189055351593407 to:0.04045875475680249 a:0.03542341257202578 be:0.02020462051672066 for:0.01979292654746225 was:0.01760256398103379 at:0.017380150555488715 is:0.014984483003968216 with:0.014047653760730413 by:0.01374644383819499 :0.012670486581795598 In:0.01200961464556976 or:0.011563835749786333 from:0.011391516893522809 are:0.011273104484969465 that:0.010755276030689069 :0.4809655994608848 +;:0.026571403980587268 it,:0.015870383953832425 him,:0.014366666283007914 them,:0.010562164083232527 it:0.008914797564345324 him:0.008658739974460379 in:0.008563308136534544 time,:0.007630343887807345 States,:0.007612689371982528 country,:0.007362247907852296 ,:0.007288132781311494 people,:0.006911544867979867 years,:0.006897249127247925 up:0.006735676101470539 and:0.006727519134349249 law,:0.006324130571078796 made,:0.005585921996128152 life,:0.005365863658446561 tion,:0.005234115725765018 :0.8258171008925798 +of:0.16600367733787944 the:0.11882725711881705 and:0.06293076500980985 to:0.035429804289022926 for:0.03294544190951074 in:0.028194709156986863 a:0.027761138863120392 by:0.018323187339966414 that:0.01645073872705837 with:0.012944192269548403 his:0.012318653378128028 more:0.011472419034852086 or:0.01141326693116241 other:0.01110854887721744 at:0.010457732871632552 their:0.010374752284881422 some:0.010261429370384729 :0.010107804539544952 all:0.01003469862163703 :0.3816397820688389 +the:0.18608410449797802 of:0.09577502645993312 and:0.08490215645604128 a:0.05405135683360407 in:0.03766721985653538 or:0.031770334426387895 an:0.031084996419105067 their:0.02792755723162557 The:0.02681320710817553 to:0.026407534905675257 with:0.024000256735471615 his:0.02090157213266767 that:0.01659011117783366 by:0.013966015168473084 tho:0.013297621465648144 its:0.013070844817528647 for:0.012586074118087216 our:0.012557868239609426 any:0.012023760836342299 :0.2575223811132771 +state:0.08162611670192221 board:0.04151134681265742 State:0.03869583817814277 amount:0.03667060079202129 number:0.03511951104052976 out:0.033514567497977134 Board:0.0292226691567826 matter:0.026067661898373402 point:0.021375353877289265 piece:0.021033115767315532 kind:0.01942486304184391 system:0.019221354832213173 line:0.018689170785335985 means:0.015936555519289606 purpose:0.015457984014301556 form:0.014022942381064009 class:0.012576724807270012 act:0.012235708929546988 question:0.01204487792791026 :0.49455303603821316 +the:0.11919516938815296 of:0.07230453158552728 and:0.05781056740443249 a:0.043018564803886335 to:0.031305092790907506 in:0.020848713353460488 at:0.014270110001066288 .:0.012526810245749479 :0.012413283442322082 for:0.011719122709941797 by:0.010808400946589808 or:0.010404172990115616 The:0.01003576004804544 with:0.009811868184449042 tho:0.009295902015355835 was:0.008924239095331684 that:0.008672304223433876 is:0.0085591147338948 be:0.008335143826716943 :0.5187411282106204 +as:0.07030389055196838 up:0.04984815018259498 and:0.04273720557658151 attached:0.039841761742499315 due:0.0358991565880054 regard:0.03421892563930106 referred:0.025540791964614427 given:0.02321330118991196 came:0.022152238272765003 paid:0.022035079928894835 them:0.02157885834514089 made:0.021450682464231288 back:0.021007588324609996 went:0.020923702942598932 sent:0.020657041496119983 feet:0.020105421691650402 belonging:0.01976107783401392 come:0.018474660459256408 it:0.01782915758916493 :0.4514213072160764 +the:0.2515594056048976 that:0.0879008493151886 and:0.07820947260388673 The:0.0626210869358161 this:0.06163892444314357 a:0.04386699418787559 or:0.03177948771848278 to:0.028178935362834712 This:0.0182458503290617 tho:0.017046011823247376 of:0.015276669096503659 his:0.010765456077715814 which:0.008711162874355624 her:0.008449496249907599 one:0.008412251754704302 present:0.008384621350092467 no:0.008108329806042503 good:0.007824130287000618 tbe:0.007532896270811624 :0.23448796790843104 +is:0.16402296934659016 as:0.13336545093621213 very:0.08835393370593407 a:0.07516657511988542 are:0.07039686569606078 was:0.05882833612103138 be:0.048198673479936845 and:0.044735264618786415 so:0.041289194550117 Is:0.03288012217514542 pretty:0.02778985719487849 not:0.02503906553496992 the:0.018813680238058236 were:0.018585881545354663 do:0.014680729304677632 been:0.01423239724375598 am:0.013162984497859 or:0.011596283144437879 quite:0.01026649051950098 :0.08759524502680759 +the:0.2910117240080566 and:0.11022031340730042 a:0.10149355805207778 of:0.05248423036071283 by:0.027500031663994336 The:0.027262827694007372 or:0.02376652525885606 in:0.02188803786995723 with:0.018370268759885844 to:0.018213819911856326 is:0.015499641838018633 tho:0.015221545246248854 that:0.012844625362684698 one:0.012404881920886898 little:0.011518405125512936 an:0.009833759720232487 any:0.009342582682902159 no:0.008984541545244156 for:0.008249496111122129 :0.20288918346044227 +one:0.11832202673041965 some:0.06547452567315655 out:0.049443129253794085 many:0.045418365545188494 all:0.04463205548528713 part:0.029432377810486167 most:0.028582808984114687 that:0.027969790359403723 any:0.02751036147717171 none:0.02277543175249034 and:0.02167902108416412 One:0.019105867813953365 each:0.018200416265135744 care:0.016068935757691284 portion:0.01518998573535095 much:0.015002604093919918 use:0.012941079933572058 front:0.012257928091469429 end:0.011700510302171844 :0.39729277785105876 +of:0.17484775823221665 the:0.15468197627253757 and:0.054261322862764784 other:0.04555072707682271 for:0.04150197668160385 their:0.03170228084676199 in:0.030512806838421235 his:0.02796616566608234 The:0.019654793113459877 her:0.01839519404766755 public:0.0169189656736679 with:0.016791995084419264 our:0.015727897263311485 its:0.015302922021678484 common:0.014853366863000605 or:0.013571267223757325 all:0.012569383291401679 these:0.011889190991768418 first:0.011290691664098702 :0.2710093182845576 +of:0.1250857961480753 for:0.10348725059923523 enable:0.08256674657657519 to:0.07548974259215627 from:0.06320337666955904 with:0.05480635686718066 upon:0.037787490674476454 give:0.03263562274610229 by:0.02973137672307879 allow:0.025568254956304742 want:0.02548542349187038 permit:0.02226883362656532 enables:0.021018903268830234 send:0.020107202171443475 bring:0.01950339915315756 compel:0.019165567985904162 enabled:0.018510144001826347 induce:0.018276009060629785 told:0.018201436857053166 :0.1861010658299756 +the:0.2634080135510109 a:0.08279896703041698 this:0.06532223658564541 and:0.049380947752655044 other:0.044304010526337284 his:0.04353103513242777 same:0.04079326875824268 any:0.038845114864516646 of:0.031106648214780055 in:0.029309998189884813 their:0.02900784619104171 such:0.024291295162409084 all:0.02007672579979492 its:0.01400940862987728 some:0.013662150110402243 our:0.012267967679182394 certain:0.011151114959845153 every:0.009953267440523179 The:0.009868954454657566 :0.1659110289663489 +said:0.04606767925021822 the:0.0440397200146167 Charles:0.041049143145005816 of:0.03959534394789193 .:0.029897213896427185 State:0.024807309570428777 Franklin:0.024007088535530904 Main:0.021310347345760355 Sixth:0.021015354907193314 Grand:0.017501159821985694 Second:0.01711479174043442 Water:0.017094873208507198 Summit:0.016514462406162365 Third:0.01648108470200109 :0.013972057245728411 Mr.:0.013062776144730393 John:0.012813265894828538 at:0.012189415009644449 to:0.012035645507635069 :0.5584312677052692 +the:0.1356679687240643 of:0.08050639126548446 and:0.0719462407215778 a:0.04498596015738318 to:0.04210208725891541 Mr.:0.02324717395057061 in:0.022483604121147017 his:0.021208053371588594 her:0.018950663933813748 was:0.01627180482189387 their:0.012942011811711746 that:0.012707498087347122 be:0.012407984518178912 In:0.011594270480116181 for:0.010874253797185972 by:0.009789670062082916 he:0.009544982243742004 at:0.009381656067054774 :0.009279090171759668 :0.42310863443438174 +of:0.2094044326800705 in:0.10323064403071443 to:0.10003830707887722 for:0.06651277384544663 and:0.059888103219910734 with:0.05229638367705768 on:0.04126439815398536 from:0.0354362178188539 by:0.03150820700611748 at:0.023923279676181686 that:0.021401420699051488 upon:0.015462838440665488 In:0.01545720659661401 all:0.012395979629342193 or:0.011833585179611528 as:0.010765835272299391 up:0.010244683825641929 into:0.008022179740618366 through:0.007346693776088779 :0.16256682965285124 +in:0.01542896056483608 him:0.011978826411045244 up:0.0100887180518019 them:0.009845332848360129 out:0.009591893419124585 it:0.009227662278472206 time:0.008377614499523926 and:0.007493685226938616 ;:0.007282854240023291 will:0.007070289251652971 men:0.006631544177483261 it,:0.006083131984709008 them,:0.005898009365729827 for:0.005583159305605973 :0.005574317118358535 him,:0.005310955648741149 made:0.005291867397384159 man:0.005254946656083537 life:0.004948578154288413 :0.8520376533998372 +of:0.28767355066866834 to:0.08775711267569858 in:0.08678131196995101 and:0.05160598694501188 on:0.04646139928102899 by:0.04519522654900943 for:0.044547789071328545 with:0.03396756772609607 that:0.033699232901107726 from:0.03075346596941143 at:0.027039283056790858 In:0.021061449543044047 as:0.017514234937992545 all:0.012543839382496166 upon:0.011844431150487573 is:0.00998972746569266 was:0.008814315973987914 into:0.008557199930727406 through:0.007781895704231326 :0.1254109790972375 +:0.1180209045212082 it.:0.013548363277171046 them.:0.009319921168185868 .:0.00891182918108111 time.:0.007694480217056464 country.:0.0070637748624522954 day.:0.006960594703201637 year.:0.006949133468852003 of:0.006802841502817196 him.:0.005590517722609501 city.:0.005255808718953632 work.:0.004872528909810837 years.:0.004198323929534632 States.:0.00406850918246682 to-wit::0.0038648824787482854 tion.:0.0038264799359005045 days.:0.003726000467981472 county.:0.0037168300764134072 week.:0.0037103613445137675 :0.7708979143310414 +and:0.09663561906516753 the:0.07603007439739497 of:0.04884619553957697 to:0.04532105922901099 is:0.0392340504868352 was:0.03591362097779346 be:0.033830011785199156 it:0.023670098562716273 he:0.023660405054324693 in:0.023283666389552597 a:0.021186689183883476 are:0.01852669121621313 that:0.016045349656396257 which:0.015377475665479852 for:0.015303251398983734 or:0.013990459363350664 his:0.01392081973314691 an:0.01362077118477725 I:0.013577849378090947 :0.411025841732106 +sum:0.18623081576058995 rate:0.17036008992223187 period:0.04975915840828082 number:0.03975797515406545 distance:0.0270723421709588 one:0.023586134753765302 out:0.020100972286006446 depth:0.018871314448403804 hour:0.016237720536044 and:0.014769896373655977 amount:0.014535154825341377 hundreds:0.014333959173963986 consisting:0.014093799593031595 thousands:0.011904971193044006 line:0.011279261511748052 half:0.010396877216316184 score:0.010363118705389958 payment:0.010242299598098326 some:0.009557948320957252 :0.32554619004810686 +and:0.12412568395673652 that:0.098831542945659 when:0.05805445068556315 as:0.05559881129290731 but:0.04967695801753487 if:0.042650363357492053 which:0.025865083273391373 what:0.022595890659169546 When:0.021415477655850945 If:0.018273511338538106 time:0.01626022264992654 As:0.01558505372528646 But:0.014660663366350513 Then:0.010823325267866748 me.:0.010771006645565226 where:0.010114218555860791 :0.00944858236789733 so:0.009264229921733967 it.:0.009004698756428321 :0.37598022556024124 +in:0.04013519521580617 men:0.02478516918231386 city:0.02329548295020915 time:0.018922477485326227 one:0.016892268856478605 feet:0.014910827325529142 land:0.0136118940846265 of:0.013199269637311599 man:0.011447892107083473 out:0.011358446868073049 county:0.010485917531548802 wife:0.010401558340796098 health:0.010322739391061818 good:0.010310371460372444 life:0.009908401760526715 and:0.009749587968522294 hundred:0.009671954017945643 each:0.009021204502152682 interest:0.008792487712289224 :0.7217768536020265 +the:0.10156982495670083 of:0.09106324839050664 and:0.09104866159569602 to:0.04027821551321493 in:0.03292529703898425 be:0.01833183629467108 as:0.017760218009553057 on:0.01723290885019549 that:0.01679017878941484 for:0.015480120224558906 was:0.014265664207501062 is:0.013248926405690552 by:0.012186585189500674 :0.012041112011000053 are:0.01171553359314486 or:0.010858366065105521 which:0.010722571109193533 from:0.00908620478674188 were:0.008867570728491099 :0.4535269562401347 +men:0.0474857149289773 hundred:0.03444231101154568 land:0.016375511347068702 city:0.014087029532271023 gold:0.01128706570414249 time:0.010030861786576452 John:0.009504015521880455 James:0.009301073309973776 long:0.008399454377806865 State:0.008360805898791611 all:0.008164573766520744 William:0.007642978166066252 and:0.0076111124681916935 North:0.007569041633150311 state:0.0075318157700022025 Robert:0.00732266655492251 due:0.007109500806085426 States:0.007032126210028103 white:0.006950368431265927 :0.7627919727747325 +of:0.28767355066866834 to:0.08775711267569858 in:0.08678131196995101 and:0.05160598694501188 on:0.04646139928102899 by:0.04519522654900943 for:0.044547789071328545 with:0.03396756772609607 that:0.033699232901107726 from:0.03075346596941143 at:0.027039283056790858 In:0.021061449543044047 as:0.017514234937992545 all:0.012543839382496166 upon:0.011844431150487573 is:0.00998972746569266 was:0.008814315973987914 into:0.008557199930727406 through:0.007781895704231326 :0.1254109790972375 +of:0.1631424396676384 the:0.10643549158245143 and:0.10052533871027054 in:0.09044530349102795 to:0.06774032158919935 for:0.04090759543065796 In:0.03362681656763552 a:0.03045765292741951 or:0.027637550705002418 by:0.020754416632371826 from:0.017975262212423595 one:0.016733776125247665 two:0.016535770470139637 that:0.016008002838883366 this:0.014483532139546907 with:0.012663604921998382 other:0.012626375186325011 his:0.012339295002502785 tho:0.00985299176319941 :0.18810846203605833 +and:0.06807810185594595 provided:0.04906210909708142 reason:0.02520648099172262 it:0.020344913717318218 him:0.016549584857324832 do:0.015855413133540185 but:0.015203286004092473 demand:0.014298600697139665 vote:0.013009859715990117 asked:0.012801894442766784 them:0.012202677081501198 voted:0.012087662127445456 enough:0.011649412451083188 necessary:0.010792043901131683 called:0.010767828237315147 much:0.010742283823883344 time:0.009839157403963366 made:0.00976572592949185 is:0.009730237731802687 :0.6510127267994598 +the:0.11132406874492337 of:0.07973150004751273 and:0.05003193808735521 in:0.03995909971732399 to:0.029966672392113574 be:0.027002105853679334 a:0.023907187580720198 for:0.01948052255316016 that:0.01928137934196295 was:0.01845982123979732 is:0.014474817746393531 on:0.013451563679930282 his:0.013399985323871811 or:0.013135416799543609 been:0.012407373784401928 as:0.011828830185564297 are:0.011722966172363175 were:0.011353955747421386 their:0.0110466791078929 :0.46703411589406824 +of:0.23430307669431036 to:0.10020361649091833 in:0.0966563965473576 by:0.04768258092560389 and:0.047481700667198486 at:0.040992698665361024 In:0.03161623311831945 from:0.02822138574570184 with:0.026282285780093353 for:0.0259016604998436 on:0.018029830386020473 or:0.013014032145792064 that:0.012510770644618707 ot:0.011101425417523878 is:0.009949455249984222 ol:0.009007973584488332 into:0.008876253578064075 was:0.007982327047607993 an:0.007911640323973998 :0.22127465648721834 +and:0.19619332554328245 is:0.12790245116725044 was:0.08115442738753209 be:0.050958127654851394 are:0.05054324341015496 but:0.03618141489793457 has:0.03256629069994969 have:0.029241097031405944 were:0.028664922932859067 it:0.02786803819488223 that:0.026526472696307892 had:0.022283963674666358 Is:0.01998193838771003 been:0.01847272685943771 not:0.015767931896275327 if:0.014501309683553445 as:0.012927366368602793 or:0.012009545926531412 which:0.01093067966236088 :0.18432472592445134 +the:0.11919516938815296 of:0.07230453158552728 and:0.05781056740443249 a:0.043018564803886335 to:0.031305092790907506 in:0.020848713353460488 at:0.014270110001066288 .:0.012526810245749479 :0.012413283442322082 for:0.011719122709941797 by:0.010808400946589808 or:0.010404172990115616 The:0.01003576004804544 with:0.009811868184449042 tho:0.009295902015355835 was:0.008924239095331684 that:0.008672304223433876 is:0.0085591147338948 be:0.008335143826716943 :0.5187411282106204 +the:0.3510535698803286 of:0.1416139436073803 The:0.04487027475466852 and:0.03160290024892722 tho:0.02425338146458394 to:0.020423823811976098 with:0.018174285167373364 in:0.01586840840338177 tbe:0.0135246821907605 for:0.013100872718234974 from:0.012130501690004982 at:0.01083774047994336 :0.010786819950075103 a:0.010401725266942252 our:0.008563768551711681 their:0.0067166652372432955 by:0.006710581538325623 In:0.006132308363695376 his:0.005691953290090925 :0.24654179338435211 +of:0.09129790931378902 the:0.07369883040827747 and:0.047842263382354346 in:0.04189055351593407 to:0.04045875475680249 a:0.03542341257202578 be:0.02020462051672066 for:0.01979292654746225 was:0.01760256398103379 at:0.017380150555488715 is:0.014984483003968216 with:0.014047653760730413 by:0.01374644383819499 :0.012670486581795598 In:0.01200961464556976 or:0.011563835749786333 from:0.011391516893522809 are:0.011273104484969465 that:0.010755276030689069 :0.4809655994608848 +said:0.17972257999294522 the:0.11040980130653114 Lake:0.04455341259710376 Stevens:0.02924229292331256 this:0.02810402074345105 Jefferson:0.013540350992615227 Washington:0.013184186795635724 Marshall:0.012478153201923293 York:0.011501403920568455 Louis:0.011447022240484873 Fairfax:0.011407313153238922 State:0.00904577982554456 Bow:0.008405590261366362 Baltimore:0.008353812649022054 Angeles:0.008106736502405463 Charles:0.00795602460910596 Eureka:0.00780699115464092 Mower:0.007413284653778211 Franklin:0.007152707679344929 :0.4691685347969813 +the:0.30605146283568097 a:0.08318039183386754 his:0.06813637901732135 no:0.03797061013218704 my:0.03761610105829231 all:0.030417421332526944 of:0.02891824399021814 it:0.02875863311899732 her:0.02823290161364751 at:0.02806594536694639 and:0.026864268359185747 that:0.026122026034865187 their:0.019708479720395796 was:0.0194497616473428 tho:0.017656400171476277 for:0.01733412060808622 your:0.01730540351198736 this:0.017014846412553346 is:0.016709796718281187 :0.1434868065161406 +of:0.29146459530271607 and:0.08938365885413592 in:0.08919455150445561 to:0.08418713088266505 with:0.050253309482141524 for:0.04815828642746178 by:0.047164901605380984 that:0.03904601834255863 from:0.030319892722839883 on:0.02750719989144597 upon:0.019021925691950537 In:0.015861705966496473 all:0.012614190578209086 or:0.010712654351197106 at:0.01004624847541674 as:0.009621060770095691 under:0.009212838781673909 make:0.008154631062349529 but:0.007526985636454823 :0.0995482136703547 +that:0.1927938266090584 and:0.10547300916390434 which:0.07588373475656558 as:0.07435579838113325 when:0.06807157257157491 if:0.05052489210493034 but:0.045678674851441475 what:0.03666141432849191 where:0.025465679099979537 will:0.02200322586816717 would:0.020535755255319317 to:0.019597270007514902 said:0.018514859957570417 If:0.016081354162964807 because:0.01562893224453916 so:0.014489303626307749 time:0.01376167857666135 whom:0.013702928602861866 I:0.0135321632301915 :0.156243926600822 +of:0.17076214768884218 in:0.08799873665302542 to:0.06780713998010231 on:0.056189425186262104 for:0.04122111077071685 with:0.03992007897058766 at:0.035006015958666134 by:0.0337266482486961 and:0.03301318884507887 from:0.029833595627946647 upon:0.026719878658586344 In:0.015448573297803529 under:0.015111784595074534 that:0.013139586387709542 after:0.010398214944618343 through:0.009305054891623433 during:0.008630379991798966 those:0.007873458648141221 one:0.0060084140249272965 :0.2908865666297925 +that:0.20057606413793275 and:0.09961127334371332 which:0.07760357003290524 as:0.059532024769629203 w:0.040153080889019324 when:0.03496453991454815 but:0.026781918242004637 time:0.016777880356399804 if:0.015945676205756015 years:0.013149545308151439 where:0.011665504880973444 what:0.011477454635682614 the:0.011358996549647565 to:0.010926575367389531 of:0.010553644667799723 it:0.009945980707374567 said:0.009198225518456263 whom:0.008260910325188631 one:0.008076468386471834 :0.322440665760956 +;:0.06683578426262325 it,:0.020572528476828417 them,:0.01757600028110388 and:0.016320752946541464 nothing:0.014613032505888413 him,:0.013635405744472156 you,:0.012269741559009692 time,:0.011119755709546228 man,:0.0071978300572978745 know:0.006481313220383765 here,:0.0060177724025648706 men,:0.005882074855451137 none:0.005847507064613124 ,:0.00578262288782017 me,:0.005666568481169192 so,:0.005470613456974008 all,:0.005282999157007613 way,:0.00523742872103698 up,:0.005218567541625415 :0.7619717006680424 +the:0.11919516938815296 of:0.07230453158552728 and:0.05781056740443249 a:0.043018564803886335 to:0.031305092790907506 in:0.020848713353460488 at:0.014270110001066288 .:0.012526810245749479 :0.012413283442322082 for:0.011719122709941797 by:0.010808400946589808 or:0.010404172990115616 The:0.01003576004804544 with:0.009811868184449042 tho:0.009295902015355835 was:0.008924239095331684 that:0.008672304223433876 is:0.0085591147338948 be:0.008335143826716943 :0.5187411282106204 +the:0.1782674247716319 of:0.07254558811949202 and:0.06494008758463889 a:0.051735059642656865 that:0.03309899130962955 The:0.0311348516130522 Mr.:0.025317494056759662 as:0.016195791133417587 or:0.01583515910050585 I:0.013653672750045828 which:0.013238945801303921 tho:0.013220900116194874 to:0.013143303559332558 :0.012411592225063666 he:0.012403093353885905 his:0.011796652763692688 in:0.011731699164854602 this:0.011597835290200052 no:0.011520361825026247 :0.38521149581861514 +appurtenances:0.6486981587903491 and:0.029776317676894582 to:0.009730472333250719 feet:0.007415165199857601 of:0.0055960141869815065 was:0.0053140909791483636 for:0.004835933414904782 are:0.00394788515264499 will:0.0037194375453046056 were:0.0035407852652160343 is:0.0035372079727946253 be:0.003417680353140093 or:0.003386701049375208 :0.003059261838198233 men:0.0027014578666130734 well:0.0024019143064012444 persons:0.0022338130036416966 can:0.002110321989437052 on:0.0019421166426341673 :0.2516352644332123 +it:0.14407494730757825 It:0.1127187723949252 he:0.09251960193400567 and:0.07374767465917223 which:0.06618216159179297 He:0.04789196061103773 there:0.03932626517976215 that:0.038624246822556586 who:0.02476666076160296 she:0.023434605899104465 I:0.021587707330443275 This:0.01662079201310709 There:0.015784501590575508 as:0.015402581195930017 what:0.012766859303192452 She:0.011374716658482678 man:0.010519244377874534 but:0.007735490401452249 ho:0.0074861949547807664 :0.2164350150126232 +is:0.230949411052387 be:0.10198283794213077 was:0.08898724644419688 are:0.057017369821347155 he:0.05621549628142037 and:0.050477837344383894 of:0.03821968481171358 Is:0.033979771641883025 been:0.030864955479303048 the:0.028065451281691155 He:0.026467857282922974 by:0.02282674229006858 were:0.0221006327410879 for:0.019069055949894047 which:0.012518750007588342 from:0.012468660081877601 have:0.011380138794394106 to:0.011138937597838657 I:0.011022141222756895 :0.13324702193111398 +of:0.11995858894229315 and:0.05190814595497317 in:0.04826895364987692 that:0.04493731536153755 for:0.02621329399551802 to:0.014264398237021584 on:0.01265746727886542 but:0.011455138992558378 from:0.010608200780434335 by:0.009501112514025458 after:0.008585786447328627 In:0.008138916799229592 bill:0.008011347344982048 with:0.007958936088978385 one:0.007618611554315744 bill,:0.0067307084291911914 ,:0.006169986576017955 which:0.005912943367918462 upon:0.005759226711584125 :0.5843409209733499 +as:0.06931392982974462 according:0.052071562389565784 up:0.0511867300210483 and:0.040371568633051955 went:0.03351644485287816 back:0.032358406609281 regard:0.03073407747799069 feet:0.02852138506231652 down:0.026379903432040268 owing:0.02466642634685871 due:0.023695193974505355 go:0.022910973192184297 reference:0.020802802907016128 came:0.019883741951819873 sent:0.019874244915639484 attention:0.019565955494145405 come:0.01885185084678811 given:0.018792390567602263 it:0.017366961307524745 :0.4281354501879983 +the:0.36010800947815386 a:0.1825229508328862 The:0.08449758093034955 and:0.038836530020367535 that:0.032244650509345975 this:0.029761784446569278 our:0.02742381915618359 tho:0.024422267225461893 his:0.020160470786373445 their:0.018799220698553862 A:0.0161036015471206 This:0.011857838093181085 its:0.011328726003420556 of:0.010741176505823711 great:0.008700689310017638 her:0.006321152751495974 whose:0.006221288829577035 tbe:0.00567231071973451 my:0.005435658802369352 :0.09784027335301436 +land:0.019942612093024902 city:0.012209280135871081 day:0.011890298630584573 mortgage:0.011048120821209427 men:0.010314808785302169 ;:0.008879717206897418 wife:0.008503449946497495 interest:0.006787149314311373 house:0.006457483382296213 friends:0.005986545541853952 York:0.0058992722677578815 made:0.005721231153367952 ,:0.005701478793614303 City:0.005665324021215198 County:0.005541924424376992 :0.005508396503638098 county:0.005497318523321362 State:0.005402771620260016 known:0.005084794941052317 :0.8469580218935473 +per:0.3921152075250218 the:0.10391306519181039 Washing-:0.08150525879359924 Washing¬:0.025920804830598734 a:0.022501315472420246 and:0.018825119928054183 Bos-:0.013273820254134467 to:0.010434754573538183 an:0.009642415838819316 :0.00713962322036353 Washing:0.006889840754902266 The:0.006750640656284352 of:0.006578426934179465 half:0.004950340254788519 tho:0.004821744678445903 two:0.004678503290439414 his:0.004075018102224832 por:0.0031526121179504827 1:0.0030052729396042362 :0.26882621464282047 +him,:0.017963356676168486 him:0.017826162823472585 it,:0.0169956423420978 it:0.016026204435717954 time:0.013466250784155817 man:0.011218109063907892 up:0.010755056344371922 them,:0.009572264680869644 them:0.009312909958854837 years:0.008512843426797418 time,:0.007760884944659701 men:0.007359050331015349 one:0.006879389454653865 ;:0.006700038256953161 house:0.006572847917815097 home:0.006346294707816751 day:0.006330994874681308 years,:0.0062827294862105604 night:0.006199285075061417 :0.8069196844147184 +it:0.09454121136574589 you:0.08102798245132625 I:0.07926433460639322 they:0.07923681395387341 and:0.06722460262478773 that:0.05891471777509201 he:0.05132234215763347 which:0.05084009316741169 It:0.04448512049389604 we:0.03454426564976823 who:0.019491572209917242 there:0.017342426792992884 They:0.014577229152247306 1:0.013090295057658347 she:0.012346500904848462 He:0.011224451042180852 You:0.009992915854471502 this:0.009781279023895431 This:0.00939879765376505 :0.24035304806209495 +the:0.33366474850016203 a:0.1408044645356991 of:0.04728933414752194 in:0.04158871622258586 The:0.03824849688143357 and:0.031906689747690106 tho:0.020045360935419705 an:0.019508841540248848 this:0.016513321788803402 to:0.016184858424062712 that:0.011765939573820687 no:0.01112926137201961 Mr.:0.010007183798540585 In:0.009380214745927384 tbe:0.009079400425543324 any:0.008877214796347647 his:0.008408014813523367 or:0.008236331610628632 A:0.007849759986823865 :0.2085118461531976 +one:0.0911586739772231 out:0.06914445242785552 some:0.044072789933600254 and:0.03121874408726069 part:0.030494395250434268 many:0.026952446815903718 that:0.02643717760123072 all:0.0224945269089361 time:0.020723575912610655 home:0.019240137992903552 side:0.017855313384407843 account:0.017009321224268212 end:0.015960594778792213 front:0.01578854825549248 portion:0.015317875285779064 death:0.015281201681475318 One:0.014699303850118774 any:0.012777720337190258 because:0.012455778347118333 :0.4799174219473989 +the:0.39749834532651884 a:0.07520030034269234 and:0.05540858759821703 The:0.03273515726769502 tho:0.030061875542463562 of:0.020144331424922633 tbe:0.014929647509541684 in:0.014268129706664795 or:0.013333166761078447 .:0.013287381914101323 an:0.009000188755386574 to:0.00880680429595084 :0.007943763822197133 Mr.:0.00773879605474787 by:0.007328417831573476 as:0.005922572098978465 for:0.0047526933692942485 that:0.004736121968310169 on:0.004594595720579333 :0.2713091226890862 +of:0.24403712236193975 to:0.08663895337618344 in:0.06724697640204738 and:0.044493944599458705 for:0.04345179647019836 on:0.04142895402458299 by:0.03623031307783021 that:0.029378933741439447 from:0.027699607664802124 with:0.025419425759077085 at:0.02458685708680787 as:0.0232089372595174 In:0.021054054144959783 all:0.011855138867839937 is:0.011619931355192984 upon:0.011483448614626785 ot:0.00852727045076018 which:0.008375689702219344 or:0.008366696935033767 :0.22389594810548247 +the:0.35737001198161883 and:0.14717118103042182 of:0.05561329027407384 The:0.040849840154186697 a:0.033022643184537494 in:0.02926591298682102 or:0.028026841535295867 tho:0.026959769142312226 by:0.023533445819120955 great:0.018944654499728323 that:0.01695858613015828 tbe:0.012494784954537552 large:0.012235953803210995 this:0.012075780001075854 other:0.011858278254099724 good:0.011028165806797578 his:0.009461256533877025 said:0.009203935414890098 any:0.008674883643361523 :0.13425078484987432 +and:0.07118428983626054 :0.0582304343574193 time:0.02387309679333603 that:0.023773937792612353 but:0.017739398467062698 was:0.01741326841027554 be:0.01700078411637137 recorded:0.014303070198546793 is:0.014000944500914858 put:0.013814924983996588 to:0.01292222035266411 will:0.01224973614582165 made:0.012218712651593732 the:0.012014730470061654 it.:0.011812248103716052 them:0.011719000569678575 out:0.011679548114102673 it:0.010576315522470615 used:0.01029907870914534 :0.6221742599039496 diff --git a/train/expected.tsv b/train/expected.tsv new file mode 100644 index 0000000..1f27d18 --- /dev/null +++ b/train/expected.tsv @@ -0,0 +1,432022 @@ +lie +himself +of +ably +j +he +graph +011 +separately. +a +same, +union, +doubt +their +orders +gypsy +and +were +dickering +to +tho +v.ltli +{A +had +food +equal +day. +on +for +the +in +Twenty +Democratic +be +6% +Toilet +country +work- +tho +tendency +he +Knoxville +of +men +go- +lorfepure +give +done +Wonder +and +One +In +spor¬ +with +harrow +countries +he +said +The +Do +ami +Los +is +In +at +the +hud +of +and +Weir +forbid +the +wa* +same +live +swear +God +with +get +if +the +are +advisable +which +when +and +turned +fact +of +and +id +collision +it +America +But +saying +1»12. +bench +2, +It +the +to +mailt +City +a +the +thankful +100 +that +years +to +interference. +pay +carry¬ +keep +the +while +exer¬ +someono +snake +aUtoting +married +its +many +belief +of +quo +and +of +his +in-lies; +and +to +health +to +be +the +for +etc., +their +and +with¬ +alaoaenred +give +new +his +said +right +skill, +the +said +the +it +ficials +among +with +see +516 +itand +Ma +full +driven +defend +treasurer +famous +their +nickels +proves +the +her +were +which +aud +when +declares +the +hoanl +in +to +produc- +ran +about +cellent +If +dent, +at +nothing +ago. +fallen +ft +peraoi +the +porate +t, +by +six +to +arranged +reputable +a +the +.licit +good +rice +Drummond, +wa3 +have +succeedin +any +care +day +that +holder +returned, +ury +boy +against +Now +D +keeping +excellence, +car- +disturbing +of +by +correct, +day +range +worthy +remarked +as +of +the +the +children +the +North +on +bond +lived +J. +hind +of +execution +current +and +ed," +Alemoirs; +the +as +provisions. +other +open +in +the +stitution +to +was +names +possibly +on. +and +nnt'l +menuatod +enough +of +the +ceivlng +the +over +course, +turn +Famous, +On +8.00, +of +No +against +him +term, +rnoro +called +to +morning +an +test +stirred +of +thirteen +then +larger +too +is +in +the +thus +ship +it +be +to +theines +Mr. +ts, +other +mual +the +met +help, +partitions +coat +annum +ele- +have +I +Mo. +Early +sequences. +territory. +reply +in +a +suant +vote. +senator. +purposes +meeting. +Whils +to +What +S. +in +bereaved +in +all +1759 +tomorrow +08 +hurrie +will +for +Morris, +published, +with +Stalvey +life +note +to +actf.c +in +three +program +all-glorious +they +elaborate +ened +dians +talk +It +time +The +Cnitod +tbe +a +that +article +ing +from +fied +Secretary +an +over +pro- +bv +of +aluo +as +for +is +all +vanced +'or +development +about +subject +Tin +remainder +honors +the +small +main +The +some +Land'Department—Board +bo, +the +we +tbe +of +the +that +and +her +war. +820,000. +How +free +center +Of +it +the +from +this +as +volume +As +through +the +Skowhegan +the +souvenirs +it +You +He +date +hunter +township; +to +and +lootout +heaven, +for +slightly +kindly +it +this +der +and +circulars, +hauled +portraits +the +to +Ibi +C-olurrtbus. +stock +But +island +boy. +of +He +he +together +occu- +prepared +affinity +freeing +and +legs +disfranchised +the +solemn +221 +suffl. +the +Antarctic +vhih +aud +containing +out +gutters, +a +regretting +the +being +of +do +will +doctrine +commerce +in +any +Douglass +affairs +was +raise +ia +showing +country. +a +and +absolutely +Their +And +felt +purpose +around +in +his +was +join +wa<* +the +tho +however, +one +tion +damask +less +await +Martha +two +neth +never +by +meet- +He +that +tendency +eling +1, +answer, +a +their +that +the +awakened +carried +labor +get +Merritt, +pursuant +States, +drawn +not +beloved +for +to +got +Is +be +of +prominent +has +testant +the +Mrs +and +a +of +transpires +patient +trans¬ +with +tempt +alone +from +fought +recalls +pit +who +knock¬ +division. +We +army, +Talk +on +Thursday. +other +organizing +bound +.; +of +sooth +Morrison, +Said +trader*, +two +March +could +world +rail +abound +ney's +tbe +part +Democrats +of +extent +the +Edwin +of +be +was +conceal +be +the +to +for +you +wish +not +happier +known +got +learning, +did +better +I +her. +in +if +was +the +case +policy +Rudd +it +and +in +will +war +fact +I +part +to +to +sed +short +there +eral +Mendelssohn's +om +and +we +. +dent +and +the +pistol +all +his +should +past +Illll +la +habitants +thirty-nine +Nannie +Roberts, +to +the +uable +security +the +they +power +it +lived +this +brought +he +ume +of +Wild +clover +along +his +houses; +OcfesWr +over, +of +hor +size +road +invite +iu +appropri- +latter +and +this +breakfast +the +the +years +square +has +agreed +with +20 +have +the +28, +solid +Alice +Comfort, +tion +just, +and +he +.was +morning. +was +in +requires +railroad, +admits +Its +he +, +slip +el +He +Is +Charles +are +com- +being +which +swer +Kerr, +he +these +the +Once +was +, +in +publicity +to +of +at +been +their +con- +of +she +trolley +"mean +Van +light +constitution, +cure +and +tered +large +tha +his +and +should +had +a +of +her +claim +boats +Yankton +them +Company +in +in +attitude +question. +sanctioning +is +Jesse +caso +nouncing +began +couldn’t +withholding +the +pc&tal +dent +of +thick +mg +of +be +and +cited +per +capnol +conspiracy +do +stood +democrat +was +On +stone +bind +was +of +hit +recogni +which +in +in +and +we +r;ty +property +to +tlme +had +meantime +off +pulled +and +make +five +lime +work +No +Sheldon. +contract +(No. +aud +and +from +a +genuine. +a +cheaper; +ami +defendants +Advertiser, +be +to +ot +loan, +trop- +banks, +asking +new +discounted +carried +officers +Friday, +Human +rising +nest. +said +committee, +he +in +riasiorers +through +Southern +succès +history +sanctity +is +Officer +an +sensible +of +in +do +which +do +the +are +of +up +the +delicious +who +of +morning, +Chick. +per +follows, +still +Illinois +islands, +Her +emerald +totally +in +right. +8 +of +it. +and +otherwise +400.000,000 +weeds, +try +to +By +Inhaler +has +reflect +one +year +per +you +ir./o +said +condualve, +s +After +examined +about +in +The +of +territory +But +at +give +un- +that +periment, +708, +and +now +and +above +lations +624; +by +foundation +Texas +it +no +separately." +above +of +and +of +It +up +halibut +close +Beginning +with +hurry +brand +who +South +are +the +give +3. +proceeded +the +bush +side. +of +evidence +eight +tunes +committee +other +if +in +may +the +of +afoul +its +of +evidently +it +may +arrived +deed, +Coming +E +Parliament +moon +paid +part +water +demand +fight +charge +does +it +political +an +renewed +the +on +id +sporty +marriage +the +have +Tom +s +whirl. +Bedford, +are +In +of +accident +an +be +Meridian, +This +bought +to +Joo +his +us +that +who +the +put +"This +houses +ring +raise +from +out +liberately +the +have +the +this +to +not +imaginable +; +of +House; +morning, +could +conscience +utary, +ot +a +A +anything +his +alaqsed, +to +of +But +examining +of +girl. +nip +extreme +letters +100 +erate +and +bad +the +the +waa +on +and +day +for +of +of +any +it +with +him +for +that +their +not +was +the +duty +this +BKICKTBI?2M +went +construction +I +TNT +Inohes +to +solid +ove +peoples +base +to +that +to +furnishing +lines +a +other +Division. +if +pain +one-horse +remainder +the +well +still +without +the +say +renders +somewhat +tn +bill. +co-operation, +pub- +the +the +«out!»ea. +that +thing +having +Henry +this +Receding +rule +and +and +ily +l«»\«*d +unanimous +especially +act +turn, +in +(.f +and +of +sure, +by +thereof. +almost +forty +of +Czech-Slovaks, +it +To +lo.iglng +Jr.; +> +of +had +six +With +off +Smtlh +date +would +possessing +the +even +have +is +Iron +He +of +was +interest, +such +was +A. +annum +end +the +the +there +more +been +who +era +General +In +primitive +Sections +climb +and +Hlakeman +- +time +that +a +theteof. +to +and +by +forever +Whlppnr +apply +In +Lopez, +per +the +evident +these +As- +whlrh +The +been +determine +board +suiienim +rivers. +both +get +imir +learned, +of +(1) +rest +the +the +Information, +Goodwin. +is +issue, +Typewritten +All +ernment +clearly +Lake, +rich +and +not +if +Commander +play +without +only +apple +tain +a +stir +of +ma.i +degrees +trade +they +is +the +had +the +of +H. +off. +found +challenges +bayou, +belonging +case +red +this +Nevis, +of +getting +ao +public +a +many +moral +would +Such, +came +has +The +myself +Kelley +came +in +although +Michlg.0 +at +]Wells. +Tierce's +he +forced +behind +by +bo +this +Ihe +not +that +couching +and +secure +neighborhoods. +construction +the +convention +as +I +extreme +and +daily +that +•'j>erfeetly +$12 +several +have +jther +t +Carstang +national +Bruegger's +is +in +to +end +both +a +into +for +kept +this +and +soaked +Joseph +the +of +II +law, +a +equivalent +grow +meetings +homesteader +pay +for +Grecian +with +these +is +ter +bad +Senator +haughty, +a +to +in +also +ic, +We +agreed +undue +the +an +and +Directors +gested +o. +of +60. +satisrao +all +hoars +Btreet +conduct +the +and +domiuunt +their +settlors +the +cost +(ieorge. +my +corporation +as +(Wood*) +eight +was +«if +fact, +seed +at +that +or +that +It +healing +Tho +of +and +Jackson. +Saturday +bole +of +about +placed +time +element +tj-d +by +receive +mothers, +stands, +flung. +Dr. +introducod +trust, +throughout +just +and +three-story +do +10 +at +of +will +u +or +average +After +Hint +extravagance +you +tias +p +that +fice +indeed, +sorb +and +lie +as +is +again3t +our +bush; +that +athat +by +to +He +capital +an +company +arms +out +me. +ar* +and +to +used +to. +the +upon +Saturday +outskirts, +atmospheric +mat +sixty- +($5,122.20); +the +of, +The +the +that +complain, +fact +cally +of +cultivation, +down +the +ho.'d +gugois. +pattering +for +not +no +when +have +On +bird +This +covered +way +viel +the +cash, +is +auy +acre +a +posted +down. +a/tplicfttions, +hatever +the +block +the +was +tlie +We +the +the +F +we +been +sey. +upon +real +there +attacking +in +deer +speech +shall +cotton +the +stomach +the +moments +church +to +bad +tinkered +gation +Besides +to +tle, +iro +the** +I +..lin +doubt +the +1930-31, +invaluable +coon +He +G. +month +doubt +vast +ship, +be +thoroughly +ap- +default +il +from +This +social +Stateof +hang +pastors, +to +left +for +king +. +he +en- +the +to +maps +cut +and +ol +rural +41 +wished +to +could +came +and +mightiest +All +dacy. +of +But +have +railroad +where +lets" +meet +continued +It, +indulged +middle +originally +of +proprietory +performed +these +men, +600 +succeeding +W. +laddies +the +on +esc +Heptarchy, +his +the +States +is +men +of +whose +tion. +the +any +the +f**w*M +my +twenty +correetioi +myself. +greens +sweet +well. +ways +not +a +boar +to +fifty +this +the +you +while +their +were +qnalittes +dome +of +evidence +and +their +O'Sullivau +who +distaice +the +greater +to +change +date +suddenly +the +Palaces, +He +to +pen¬ +was +in +manner, +their +prominent +filin^ +crying +Herehey, +farms. +by +of +highly +agreed +hns +the +transit. +court +or +Also,diseases +the +preparations +. +worthy +the +aud +and +it +matter, +an +to +ed +be +system, +in +with +I +«»b!irration +of +and +and +the +exert +attorney +doubtless +large +therefore +a +he +ahead +shows +of +the +memory +than +betrayed +comes +and +The +been +is +contest +his +title +part +and +Home +been +butter +a +Islands' +lias +(it. +ami +chance +They +a +pres +every +line +half +it +her +on +as +; +against +the +of +597, +next +such +the +own +ing +tical +case +and +them +ment +of +costs +Citizens +nor- +In +the +first, +in +we; +party +places +an +are +of +to +by +sections +Vermont +little +near +just +shall +whis- +uo +security, +more +topledira +at +the +one +readily +is +promis- +of +passed +of +they +Einvisible +in +ex- +outlet +as +receiver +testimony +and +the +she +the +Increase* +6720and +iravagiiiiCA'a, +upon +or +the +pages +do +also, +wrote +the +trench. +quantitios. +to +Tory +It +as +restoration +she +direct +certified +Among +to +the +gence +Michigan, +signs +i»h> +the +disease, +1917, +tho +when +of +Re- +the +the +the +a +to +was +the +for +destruction, +may +among +be +write +Ire +so +will +great +jealous +the +purposes, +in +the +trict +planting, +usual +be +John +enly +must +pipe +to +was +right +successful; +him +md +that +that +to +kinow +the +ing +and +such +the +little +a +Dr. +California, +be +Tennessee +Block +much +and +that +care +for +a +They +He +his +It +two +law, +the +and +or +for +to +an +years. +within +worthy +great +by +$1,10(1 +same +two +by +sheep +the +his +This +has +BubniissionistB +as +Jas.; +Me +Wednesday, +W. +thereto +ago +Iron +been +vigor +- +given +Archbishop +latter +blundered +of +one +conjectural +aud +trick +been +appear +accomplished +had +glad +Lard +other +of +sweetheart +bate +Discovery +of +steam +sixty +Thus +"When +hia +broadside +ical +years +•bore +from +a +while +of +water +to +luxuriantly—too +The +deep +ion. +As +"fiat +:lie +effected. +standard. +be +right +down; +edi- +bank +as +as +fingers +a +because +a +and +arrive. +and +his +the +Itlots +worthy +townspeople, +oppor- +save, +sugges- +while +No. +make +time +are..stretched +notwithstanding +little +by +as +tbe +storm +Casey, +Its +to +the +of +Section +J +steers +Egypt +the +with +there +of +tell +would +and +and +on +and +the +of +ru»k +sion +in +and +It +also +and +present +milk +uokMvk +the +operative, +them +any +the +Book +this +the +to +The +also +very +of +1 +and +Mike +school. +invited +the +trict +the +increase +line +skill. +in +haodmt +per +Place; +doable +consumer. +been +name +nephew +Shepard; +The +to +through +answer +thi* +for +upon +Are +our +ber +ef +at +the +this +be +wax +the +assigned +medicinal +con- +a +that +his +thus +sat +him. +tie +required. +have +assign- +the +by +we +bill +District. +from +all. +the +issue +prominent +placed +probable +My +look +the +certificates. +on +Erie +received +the +five. +elimi- +\irulenee. +was +to +aheltcr +ports, +a +athletics; +such +the +cussions +that +maintenance +mentioned +enemy +they +tbe +marked +Lillian +of +a +made +emcientiy +past +Washington +aw +and +prove +Lake +whom +both +Tin* +A +vv +, +South +Mercantile +Car- +im- +not +It. +money +on +'I +W. +'Tho +the +land +with +will +places, +of +That +of +bill, +to +thu +to000 +ing +tissues +8 +the +the +that +former +Side," +City +playing +Interesting +vicinity. +be +someone +The +of +East +part +he +was +the +at +[lanting +a +start +School—C. +destiny +of +to +the +of +lo +preserve +as +thus +appointed +could +there +l'i.ty +of +dust +the +of +and +held +und +to +have +laid +of +up +tents +adopted +no +the +could +variety +chains +which +Wall +the +towards +and +dent's +tarring +100 +stainers, +thus +to +is +of +the +and +capacity +not +families; +knowledge +passing +the +but +path +sessions +vanity, +neighbors, +enough +thia +impossible +but +ditch +benefit +the +the +quarter +very +the +mend +noise +enoimoue +Iambi +his +be +Mr. +dead +of +trouble +Minnie +conse- +after +but +at +Mrs. +York) +she +empty +could +one +of +left +consequently +over +pressed +thirty +the +Mary +comj>elled +and +a +before +this +all +distinct +without +dence +very +One +thought +be +Methodist +are +the +been +shrine +the +Mall +row, +mers +a +gold +and +have +j, +meter +"does +mound +as +their +j +be +that +so +under +assistant +and +their +thing +clause +lare +which +William +Yet, +no +enthu- +silver +loans, +the +bui +must +both +are +in +some +itself +per +Jungle, +re-election, +placed +clothes +shows +most +the +by +for +of +of +an +Jacob +committed- +friend, +Stanley, +seasons, +of +bail +thought +at +is +the +to +of +with +the +of +when +Balland, +of +bat- +would +going +carefully +suf- +the +we +the +The +as +level +order +to +as +present +The +said +suming, +good, +check +but +my +may +until +different +about +far +and +ia +at +be +following +The +Biamlreth +doing +of +ad- +couple +passed +drugs +through +George +be +for +or +without +proclanation +it +state. +by +on +prostrated, +but +the +up, +and +ciation, +pi.11 +to +punish +watch +ing +ac­ +men +is +(eg +Essen +there. +of +The +feet +board +sat +rates, +linni'dlately +area +rule, +during +in +fall! +I +prostrated +were +the +and +which +Mrs. +ear. +on +about +loans +weigh¬ +to +commision +approved +general +wee +conveyed +blister +as +toflad +indelible +from +his +confident +radio +Jsnge +He +of +wher +specie +c.'lcd +it +but +for +stream +the +her +ante +have +colors +4th. +as +await +ten +it. +now +have +were +I +the +a +W. +ment! +their +and +was +crabs +interna} +between +table +and +faithful +that +of +the +overworked +was +a +IJams! +enport, +he +(14 +not +or +tho +they +you +these +the +it +Mg'ettmg +(8:50t +..'rO) +inches +ear. +every +the +famous +Miss +to +ed +long +moved +William +'2hg +at +seconds. +once +and +DeLand, +refinery +ous +Cooke, +says +to +interest +enjoyed +miles +Shoelng +purpose +and +tho +fresh +tard +alone, +suffocation. +a +the +the +On +when +men +at +cient +by +We +cat +with +l'iitii +Is +attic.dining +sheet, +raised +them +returna +to +township, +declaration +for +Jnatloo +pursu- +igious +parties +the +other +advice +may +Thomaston; +earth +moans +shouting +1 +next +were +makes +denied +layer +then +resentatives +Therefor, +He +n +then +ttn +su­ +of +sans +the +Rogers, +and +he +show +at +of +dressed +method +lion. +occupation. +Scott, +of +De +Lakes, +new +first +these +dutiable +that +people +great +a +first +meditate +state +knee. +had +supper, +bandry +W +stretched +of +before +the +coast, +nominee +governing +the +stay +abili- +do, +road, +tiaement +during +the +with +the +renewed. +men +ever +boring +back +and +dresser +else. +November. +were +it +were +in +Flnance +to +if +The +by +originated +and +lots' +comrades, +No. +and +and +had +and +U +ket +over +more +at +No. +be +could, +Said +for, +It +that +because +ing +words: +couldn't +his +at +In +neither +deed +now +uuu +authorize, +(iod +town, +therein. +country, +they +Rosetta +ani +about +local +and +boys +, +taxation +wildcat +from +the +predispose +Th +who +structous +It +weeks. +almost +a +Ma +clearly +of +brilliant +of +drouth, +from +here +you +Speakers, +play +individuals +Equalisation +in +in +as +of +a +they, +then +callinp +or +was +of +him. +grove. +to +.Sheik-el +a +high +gum +any +serve +the +this +with +some +8%@8% +take +work +The +pnato +a +graduated +There +planning +use +second, +go +and +distance +thereof +noon +aliout +abutts +feet +ller +spring, +d«M +quarter +propet +south +quarter +pro- +The +metters +further +youthful +tho +be +came +be +he +of +given +ject—“ +the +Elm, +fool +shall +Edna +of +we +important +absentees +comings +Thompson +the +Ciiop +they +terminations +saw +will +it +for +in +and +Mr. +Wo.xT +friends. +arid +much +making +every +playli +mower, +office +tbe +have, +that +in +linos +quantities +a +are +profitable +all +and +was +fi.mi +of +he +him. +high +it +Iron +gourd +of +ber +17th +arrange +nine +only +were +City +Navajo +angular +lory +a* +lie +to +S +love, +And +attempt +a +to +of +tone +Mr. +action +hours; +Assembly +not +as +the +T. +with +somely, +the +larly +carrUge +street +which +Oxygen +a +starting +minutes +i +head, +Carolines +for +are +last +States +other +reach +room +she +to +tlio +over +for +on +from +time, +every +went +and +scalable +issued +only +said +Also +cousin +Beginning +many +tho +side +at +oue +the +Smith +soneo +as +and +the +given +border +eighteen +burnt +an +nnd +of +southeast +trams +the +with +r-n +In +in +Was +led +last +tracts +cherubim +gentlemen +price +there +wears +not +at +Court +poses +vided +party. +animals +be +Imune. +rather +of +the +10 +while +at +the +among +notice +In +may +Who +the +at +earth? +than +membors +Government +pr +release +and +heart +dollars, +laotlaaoay, +that +circuit +time +men +plants +Beginning +the +The +of +Block +the +Captain +on +home +had +army +acknowledged. +dated +any +grin +will +was +by +grant. +Yankton{or­ +sec. +I +in +street +an +opinion +feeling +to +docks +that +D. +a +of +plaintiffs +the +the +if +his +into +ta +of +at +of +26th. +beer. +owned +ana +escape +to +it +and +paying +us +of +Waldor/, +falls +or +to +out +the +and +55 +responsible +here +with'Caliell's +or +bet­ +064 +luHelf +dress; +I +the +tion. +-r +breath +world +a +taxable +some +certify +on +organized +cauae; +the +rapid +with +a +ropes +complaint +Joseph +or +tho +on +record +tax +fication +service +jury +fell +but +education +lie +reach +sort, +some +of +are +began +the +bo +this +in.thc +were +the +the +all +correct +keel +E, +tea, +that +staff" +cause +dis'ributor, +photon +They +the +we +time +the +feet'.* +capital. +and +taxes +important +granite +the +Hollow +We +loss +and +truck +benefit +the +last +the +that +can +in +country, +Point +that +itick. +to +net +addressed +ourselves +npoti +or +to +milker +conduct +was +from +seats. +MAY +r«'«)iiired +number +Ufe +nlent +any +wur +food- +a +corpora- +Bank +on +did +out, +obliged +swung +moving +seen +latter +the +of +The +boy. +tev, +United +& +An +were +be +from +are +and +announcing +were +partment +press +gradually +paashrs +The +right, +would +the +him +fly +and +indicating +fioin +only +the +redblood +what +foreign +No. +Apparently +than +as +pro +per +work +Combine +would +when +be +court, +estate, +as +troubles +from +Perhaps +streets, +that +sun-shine +is +lmemdiate +ined, +plants +dered, +San +to +this +to +saved. +the +ing +visit +to +of +ing +connected +whine +success, +polled +any +in +the +said +should +country +was +ings +Guy +medicine +a +would +wore +the +the +silver +every +their +endured, +last +In +rorporali +the +Confident +rn +as +as +imagination +fiery +hear +F +xument. +would +line +the +work, +The +credited +and +a +premises +to +which +in +darkness +man +and +afraid +stir- +K +advantage +qualities +High +amount +but +but +to +the +suggested +hia +labor +cripple +the +the +too +sealers +blocks +stock +their +in +The +en +five +it, +This +when +Soochow, +was +hopper +volunteering +a +bother +above +over +of +ed +to +ia +and +in +top +are +said +dressing +wood +bit. +erable +middles +and +circles +is +ing +the +brothers. +the +School +session +interest +road +Fpur +eesj +call +when +of +(Lares +Wavne. +language, +13 +but +a +the +_ti.lr +from +evening +over +be +efficiency +upon +27 +eye; +those +believe +man +from +As +interests +reg- +of +Block +FRED +drug +his +The +arrested +purposely +certainly +as +related +of +Then +said +blunted +sad +mil +500 +a +scribed, +invigorant, +Tertna +of +that +and +or +her +Place +community. +In +or +of +and +on +the +of +R. +bo +40 +be +white +work, +was +mcertain +having +of +intervals, +senate +brasses +such +being +of +separated +t«» +I +to +with +Eastern +is +The +lower +sure, +man's +same, +of +what +infection +small +aad +castings +wealth +the +trips +dis- +very +of +Kelso +Supremo +every +the +it +has +lower +000. +flower; +time +That +eastern +it," +to +shortly +shrieked +at +this, +There +large +of +Miss +the +tba +al- +is +the +entire +over +the +Malcolm +12. +the +to +H. +term +begun +nose +sweats +addressed +but +is +nounced +said +a +sional +were +is +she +executive, +cabinet, +Justice +if +Judge +ning. +informod +the +servant +N., +keep +medium +over +sume +Occasionally +which +w +before +turo-writers +highest +now +rules +by +leually +and +brigs +wheel +II. +put +William +of +day +now +the +use. +promised +that +her +same +ett-for +had +border +time +for +a +ble +alent +sponsors +interested +terminus +or +game +of +business +from +Iiumly +their +the +bt.t +strengthens +swings: +My +-4 +Mrs. +time, +most +the +toleration +unity. +ious +mon +r +may +soul: +seagoing +a +merchant, +look +will +far +and +had +with +principal +in +an +A +peace +boiler +be +four +would +this +tb' +with +the +be +raised +is +effects +the +and +a +meets +of +where +the +done +sums +deaths +of +small +good +today. +lau +have +times +and +was +title +to +few +1857, +the +out +inves¬ +them +sewage +Sgutt, +Irish +were +to +vill +have +the +him +more +from +the +n +to +North, +not +Dreyfus +Its +question. +(thereby +and +the +self-improvement, +in +decision +frem +he +recording +letter +owns +praying +the +Mfl- +anything +seems +there, +"Trailing +I +work +occupy +closer +soul +revival +he +it +Cures +what +safe +has +of +In +years +supply +till +said, +feet. +perform +position, +and +two, +years. +those +consists +guwnet +ba­ +of +thorn +ment. +for +buildings, +face +incurred +'li +trench +to +that +tilled +made +uow +nal, +viewless +Randolph* +year. +h'igh +rain +of +. +snatoblng +and +bill +in +H2ggins. +from +senate +to +sustained +take +what +traveling +her +nod +first +may +several +penally +In +and +the +thence +re +voted +a +asylum +0, +biles +specifically +How +to +completely +statement +hunter, +Life +travel +getlutg +eclleni +mind. +by +exhibit +earth. +street; +She +and +sale +, +when +planters +yesterday +charity +except +atmos- +in +of +or +rants +92 +that +for +during +was +now +I** +general +this +petition +without +43. +the +charges +American +iluz/.ling +tho +Westminster +as +Shaded +weather +stories +insurgents +La +in +parallel +the +Tho +r +$25,000 +at +of +hundred +last +1802, +hook +being +valuation +sec- +the +to +Nan +gathered +the +ested +price +they +with +different +crats. +present +partridge +serve +The +river. +or +of +of +adjoining, +should +by +circumstancial +week +all +special +thought +from +closer +fashion +needed +for +character, +as +car +will +to +ed +and +capita +ing +time +a +to +8,825 +beautiful +Mitchell +among +The +ture +earnest +tories, +If +the +is +complet¬ +in +or +under +parts, +contrasted +had +stale, +and +also +prodnciug +a +too,which +detitfora +;San +arrested +the +gravel +nothing +school +bull +:n +work +De +Cap¬ +river +cent +Wn +the +escorted +one's +gray +a +questions +and +viled +the +many +Some +the +her +poor +penny +Powell, +al +from +acres. +result +nature's +not +pic­ +several +or +it +pos- +thief, +inspired +Miss +what +It +the +the +made +now +ami +and +east +"pats." +hand +Thiesen +boxes +when +thereon +some­ +guarding +examined +It +on +by +some +that +be +easily +Good +clouds +damus +and +is +of +for +never +I +sure +My +beau +autumn +in +home. +finances +the +that +g'a-p +manifested +she +into +he +edifices +order +of +world, +. +shall +by +thou +trading +ho +attractive +not +ing +it +!>.00a8.00; +all +thedebt +Victoria's +frahces. +such +original +were +E., +been +of +Berlin +is +for +Ger- +was +ordinarily, +help. +faithful +So +Townihlp +the +price +as +rapidly +Heinlein, +alley, +the +ments +of +i +rows +Falls, +twitched. +of +furnish +surrounded +with +papers +younger +had +to +a +wife +the +order +father. +thing, +censes. +and +re- +pauih, +hereinafter +It +a +ested +Taking +with +him +killed, +it +from +aud +a +claims +Can +a +dropped +that +defies +greater +formed +But +day*, +men +n +of +physicians +much +first. +will +the +notice +Wf +. +in +of +man +bur- +the +and +takes +tax, +ce +. +any +If +upon +ia, +great +ment +boy's +means +tries +being +tbo +it +disbursei; +o7.547.000 +New +furnish +it +of +which +of +of +not +honorable +Otltbratel +of +died +an +a +same +Medlar. +it +likely, +enable +the +rtttiuins +that +many +solicitor +none +could +lieu +is +and +its +From +Ebbit. +the +to +to +notice, +present, +visage. +But +naturally +and +cents +the +to +of +for +of +ask- +at +blows +one +lifter, +Slie +your +ba +state +and +the +nearer +Anaconda +job +panse +in +mono +smooth +day +convergence +studio. +less; +causes, +and +from +vote +noon, +and +1001 +eacli +date +11* +the +or +Whilo +glitter- +and +States, +Thus +ground +Sunday, +business +vote +states. +ot +upon +be- +bate +an +at +land, +expressions +and +floors +No. +the +said +as +are +mouths, +Bonney +across +of +In +and +now +itt» +ose. +But +had +to +Hadila +are +borrowed +the +new +500 +thus +type. +places +government +stretchers +mation +they +degree +; +it +ries +not +the +be +soon +Markhyi +lic +by +the +at +vnte +among +ed +whereas, +atiB +a +and +few +community +ace. +entire +much +she +. +ihe +in +our +ily, +regiment +the +for +that +13- +so +with +finally, +children, +depths +in +of +of +ber +case +a +Orleans +multiply +my +his +tion +beautifully +government +ment, +suppose +a +stop; +was +worked +art +said +market +rest +distinctions +does +Gause, +number* +an­ +demonstrative +at +the +they +of +powers. +for +the +(Hali- +to +(running +is +battles +Americans +fris +vised +by +brown +deliberately +superior +cupied +turned +if +alike +cltefry-rlpe, +by +day. +land +group +me, +said +the +of +and +by +sure +the +very +care +election +and +Pa­ +long +about +eyee +In +all +ac +to +once +combination +en- +worn +and +and +to +Mrs. +not +ing +invalids +of +generally +party +full +many +tne +msny +down +cloth! +I +Heinrich +their +a +at +po.ver, +interest +receiver +than +ginning +raised. +of +in +January, +acoordanoe +transferred +or +men. +tent, +tion +clanjliered +original +Laurier +over +higher +beside +m\ +operate +McKinley +position +belag +tabernacle +—they +that +save +and +not +Ogleiree +he +in +soil +Tho +I +was +20.13 +to +Jolting. +view +working +a +rades +in +they +9: +as +Elizabeth +and +that +Herzterger, +thus +to +to +Mrs. +over +hidden +intention +the +67 +in +of +equal +llicnlt, +ha! +would +action +a +needs +defeat +inten- +great +ta +will +book +is +they +cessity +is, +and +allow +else, +not +Ohio, +many +Third, +that +will +in +80.000 +owned +answer +a +placed +1. +everybody +the +pounds. +now +these +fam- +. +concession, +for +wo +Horne +Concord +would +is +in +M. +li +the +K +a +them +you +misdemeanor. +effect +G. +blessed +bidder +her, +this +might +a +man. +they +ous +for +ered +crept +of +the +the +and +owner, +parts +almost +hall +papers +Leavenworth. +it +base +utroducing +tho +due +City” +the +attended +altar +h.«,is-. +case +No. +fail +Minot +of +exclamations. +in +sal¬ +Following +on +which, +has +for +we +! +the +will +adjoining +the +because +fur +though +coerce +t +the +havo +taking +a +died +drawing +serve +apples, +Two +two +frown +getting +miles +for +Therefore, +and +A +of +of +of +In +arrest. +in +as +but +thus +our +to +South +of +to +each +barrelled +with +a +way +lieeu +for +2 +as +within +some +library +llio +amusing +Francisco +tim< +there +its +nothing. +change +at +5345 +have +apoa +(it +the +Gardiner; +by +lend# +through +during +temperament +have +able +little +for +itmay +said +theso +had +of +report +mime +which +in +gladly +offering +deal +meeting +the +this +their +long +that +are +the +In +is +Can +and +most +teen +that +But +has +call +desist +Rispah +plant +hey +on +the +F. +topples +and +to +of +It +in +the +was +80; +in +to +and +the +of +readina-a +fully +A +see +5}c; +done +that +That +defendant. +Sciots, +grape, +was +west +had +to +satisfactory, +commit +and +attend +cent, +la +single, +ba +point +and +wine +The +the +last, +they +double +years. +of +aa +this +Mayor +heard +.te, +.Secretary +presented +last +the +picture—'the +to +city +from +by +tbe +each +he +taken +see +the +to +Mr. +adventure +Terry’s +shrieked +the +miles +agreement, +In +of +of +a +melancholy +lo +to +Republican +of +word +The +The +to +he +ru.tll +stock' +the +fiery +boiled +not +to +paces. +were +the +and +Dakoin +a +nomic +of +eastern +a +was +of +of +formerly +some +with +prospecting +were +was +later +the +keeping +will, +of +in +personal +busln»ss +possessed +navigable +you +Mur- +similar +them +of +this +was +soil +horrid +during +the +in +be +sions +swim +of +out +by +day +It +James, +thereby, +the +\:xUh +south +workmen +A +84 +porate +about +as +new +quar­ +S2,000.000,000 +he +of +friction +be +rental +to +-in- +removed. +allow +lieve +in +24. +choose +enemies +for +in +of +dull +remember +through +a +should +on +cent. +By +is +Life +will +who +of +shooting +The +me +nation +lien +the +Is +carried +spolia +tho +in +cowboy's +they +The +tables +not +in +from +the +more +medicines. +Will +horri- +In +suffering +vcnturo +to +lives +usual +editor's +in +water, +a +bushel +of +not +No +themselves +Dakota +people +that +of +Section +The +said +tending +part +was +it +Smith +stationed +if +stated. +wo +the +and +but +cer- +let +tho +trump +ing, +this +name +the +says +service; +one +boldly +Instant +return, +selection +threw +proyine +to +to +apt +a +though +cor- +; +killed +forgery, +four +one. +But +majority +uipa +on +Roil +a +Wyoming +Block +ific +what, +several +in +years +from +which +and +in +to +the +of +the +be +nor +making +our +of +They +enough +find +in +within +we +St. +impromptu +more +threw +craft +No +Bey +uib +Inviting +that +Ifood +ations +events, +was +falluro. +the +Woodruff, +thal +of +No +parties, +spli^ +best +before, +Durham +decessors, +cle +and +length +Margaret +your +assert +make +could +it +we +trio, +paid +over +he +There +circulate. +stated +to +as +cisco +enlarge¬ +everv- +the +the +public +Barnisconi +have +of +having +channels, +house +the +cluding +man. +that +out +0 +any +to +the +to +other +the +those +mncbine +acknowledged +Good, +the +afternoon +of +has +than +tried +fish. +be +for +poBtfoaa +8808 +forms +Christ +all +have +had +unprecedent­ +doll. +and +as +them +i +rough-shod +over +they +Ull> +without +tho +Mrs. +platform. +T. +tiie +seciu-ity +with +and +inventor +Whereas, +There +bribed, +luti:,. +along +with +to +of +his +of +closer +plat +us +t-hat +Soledaa +drift +of +or +to +no +Tweed, +soil +by +The +active +time +was +of +cavalier +Ward +particularly +be +the +The +brought +Otto +. +the +largest” +an +a +Late +ter +thither +There +na¬ +the +Kotchere- +Mrs. +cost +District +uny +wanted +Hortense +day +trust +comprising +old +waa +ican +Many +o-f +of +rloverssre +ought +you +was +to +judgment, +any +days +com- +highly +the +regard +aonago +miles +and +for +houses +FAEldeanERBootheOBScott +disease, +in +dry +at +my +train +re- +to +passed, +up +feet +today +hl« +would +as +much +we +but +The +four, +and +troubled +Holmes, +one +at +being +on +would +under +a +as +t'hlrteen-lnch +life +and +lirgered +and +Under- +by +Rock +forty-five +by +thousand. +buy +one +service, +frttuds +Start +ol +floor, +.Mortgages. +names- +boys +wild +was +key +regular +ob- +reminds +failure +that +all +would +prefer +chulrchi +ably +company +services +reason, +me +You +for +of +who +admitted +of +sirable +heels, +danger +formation +The +by +u,a +used +foreclosure +Motion +colored, +sale +tho +believe +or +acknowledge! +were +best +and +Agricultural +horse +over +try, +She +ap- +of +society +with +failure +and +ourselves +dersigned; +against +left +. +keeps +There +claims, +Ovcr +charcoal +utes +(110 +out +under +ballot +periods +automobile, +the +all +completion +were +hedge +horses, +prepared +decay. +Gerh. +our +While +to +hurst +outside +illustrative +of +tho +party +Sun +enter +and +to +broken. +is +year. +some +noxt +\eloped, +Democratic +and +suffering +to +plan +State. +greatly +Corner +.• +S49, +L +Smith's +within +a +ateehisiu, +weltering +of +into +of +as +dated +hidden +other +world's +clear +money, +ranks, +skill. +office +stretching +of +July, +and +and +arrived +benefit +on +order +gold +wuili +includes +"If +acted +equal +to +rat +a +a +when +development, +taker +until +with +room +be +of +Wo'f +bumpers. +i +ontlinee +do. +to +her +saying +mercilesslv +travelers +present +any +mind +will +flannel +of +Of +one +prominent +ing +there. +closo +possession +and +Ladies' +to +armed +iand +the +to +ln +to +of +gery +years +In +, +the +above +find +tbe +absent +ao +Bold +night +and +veeetables. +to +Rice +first +crowd +who.se +forever +cent, +the +disaster +under +give +of +factions +shout +witness +and +itself +and +The +and +C. +being +the +not +so +may +33)4 +Hinkle, +may +and +more +opened +audience +Such +accordance +throne—and +spects +Benedict, +dead +Sho +does +prevent +small +terest +business +Induced +Last +Medical +are +ing +of +Pagan +Tues- +August, +wcro +in +which +be +had +adjournment +very +of +a +until +mechanics. +on +leaders-at +with +till +it +of +Prison +attached +The +the +It +to +entire +sure +sold +Uitrary. +hilt +matter, +Unless +drink +June +the +with +the +1 +'welcome' +was +tor +matter +more +6 +in +had +of +W. +and +tho +at +be +eddy +perfectly +positively, +dor. +Itis +He +come +It +bell +Mr. +Instead +the +pioneer +but +No +becomes +was +long +the +feet. +and +sessioc +last +a +we +line. +has +dissolving +uji +affections +one +crowded +aml +and +eat +zens +high +were +how +prosecution; +and +body. +crimi- +tlie +of +sold, +a +Vs., +to +hair!" +the +is +ized +report. +mooted +requisite +run +delssohn's +man +tenement +to +being +s +deep +still +Tho +of +ification +sword +impudence, +setts +the +gorgeous +He +best, +Fresident +sum- +meeting +thorities +expected +“I +before +it +wus +caste. +/ +upon +that +roini +sanction +out +It +in +liability +hailed +an +for +plan +mission +and +of +nor +bring +on +thirty +or +eyes. +again +at +to +left +; +help +relics +stockholders. +although +or +their +doue +scheme +It. +46. +this +numerical +dt +the +name. +12c. +h +the +dable +instructed +but +the +the +timbers. +of +tinguisbed +of +their +new +my +long +of +Sargent +admi'ting +will +houses +Vamoose. +After +Suggestions. +hill, +June +time +permitting +In +light +an +and +silks +Street, +the +dustries +chartered +1789 +gradually +ingenuity +I +of +M +paid +de- +a +power +the +As +muslin, +Jones, +head +1896. +heirs +have +or +com- +debate. +bending +you +north +the +to +then +Terms +to +our +of +sellers +Get +thought +in +or +a +circumstances +complain. +son +of +for +emiTants +iC +the +and +thereof +Is +they +now +Slyme, +25a9 +living +concentrate +given. +and +oceanic +told +Bight +to +with +in +as +Hall, +was +etesd- +Central +up +he +had +89. +has +its +in +connected +fifteen +ordering +Re- +to +mind. +to +it +to +the +she +coutnties +the +because +three-Inch +Cash +is +in +in +bom +unfortunate +by +Disna +rad­ +have +on +But +splaslus +tho +followed, +thus +seldom, +well +in +0 +determination +Starkey. +OIlgM +conclude +zone. +you +candidab +ihe +the +knowing +eight +run. +if +John +enter +five. +up +a +of +or +the +such +bi* +richucas +declaring, +of +they +on +Trustee. +to +County +permanently. +street +Bulser'a +appointments +bullet, +with +sweet +write +is +but +las +of +made +soon +ling +excited +aud +leased +their +have +Lee +led +inimal +in +stomach, +her. +the +until +ex- +if +ies +between +hundred +become +chango, +is +ter +wbo +few +A +black +they +finding +lauded +Richmond, +thug +at +no +on +we +and +res­ +see +to +men +oounty +of +the +It +1' +November, +a +not +en +the +course +chs., +dwelling +real +tonemont +his +of +What +the +completely +were +again, +tists" +of +state +a +for +presentable +IVrcy +redemption, +of +I +ness. +aud +personally. +Brents- +ago +the +in +pleasure +of +that +Kansas +over +dld +neasures, +A +eleotiug +power +that +with +ln +as +a +of +by +boiled +In +capitals +to +meeting +amounting +pay +the +her +m +All +sider +present +hit +land, +December +OF +water +sub +Cent +are +relates +tached. +the +they +Only +ie +the +curve; +reduced: +the +got +fifty +If +that +he +they +to +of +is +flower +sham +power +3, +convention +overhear +Adminlatratlon +fingers +to +only +to +further +of +if +The +by +down; +welfare +These +excel +dered +all +than +estimated +ripe +in +company +with +interfered +successiu +Pine, +but +minor +as +8. +cabin +The +th«» +tlmo +The +interest +First +"Girls +is +strange +to +ches +The +first +AVhile +description +in +soul +upon +These +as +broke, +be +firth +mm's +to +Allen +wholly +iu +and +best +ing +defiance:—and +and +had +could +lashed +feed +ceived, +DOLLAR* +they +to +went +present +»rpuril- +in +wasted +is +sincere, +power, +tho +paste +being +ls +is +the +buck +pierced +house +sweeping +person- +roots +dwellings, +a +The +in +Nathan +| +fullj +discoveries +options +eral +was +idea +mination +chopped. +his +the +there +-nt. +dare +end +Mississippi, +make +October, +symptom +built +was +of +in +seconds +Payne, +Toe +and +the +may +those +bottle +made +as +cannot, +the +Th? +supreme +the +Nov. +suggestion +sold +Bank, +t +14 +cast +should +feet +him +when +amount +capable +R +pains, +leave +withdraw +his +a +considered +plant, +this +that +ing +at +Henry +fire, +3 +excitement +will +that +line +mili­ +s +It +to +must +were +Also +public +provide +wounded, +Pherson, +have +specially +furnish +threw +results +guardian. +to +to +you +think +lb +ahead +country +color +the +hostess +She +St. +it +Mayor +state +extradition +not +funding +preach¬ +in +the +Is +collect +Ser- +in +atten- +ready +part +rock- +the +costume +ordinate +opposition +DeLand; +the +llogue +What +qualities +Illust +Sutter +county +the +is +loath +city. +after +. +and +of +undermines +he +under +If +times, +a +singing; +tary +were +the +on +thereof +a +out +mamma +where +order, +fine +and +(or +of +'ula'ed +will +to +so +wore +and +blinding +I +view +hare +was +or +the +for +buttressed +of +this +itiod +from +dollars +to +tha +heard +eaat +12 +extreme +<»f +lady +clt\ +lower +on +is +not +majesty +(outside +materially +Topeka, +enforcement +is +tainly +property,' +«falldren. +good +caeda +to +regarded +down +old +of +taking +to +office +H. +case +have +know +Dec. +of +and +medical +artistic +the +frigid +orders +it +do +quarter +every +say, +work +fur- +improved +county +somebody +and +carrying +our +pay +to +among +a +of +ing +that +as +ing. +too +Namarah, +thcey +the +a +this +at +beforo +been +that +gress, +very +of +to +contributed +: +idea +to +are +day +week +is +the +pieces. +sentiments +secure +on +oi +Wr.aeti +this +nothing +exhibits +do +be +paid, +la +to +cause +and +the +not +lars +appeared +of +this +No. +impo«t* +Gen. +to +explosive +Uarchand +s +it +for +Barbara +spective +I +650 +gang, +or +one, +he +by +their +her +been +voiceless +on. +think +of +ployed +cover +fields, +the +securities +the +is +which +do +at +in +it +is +have +had +and +tbe +map +good, +started +time. +you +of +has +this +down +est +papers +that +a +received +the +than +yet +what +upon +was +the +Interest +electing +healthy. +Gas +The +and +UKiinly +"Among +mur- +waters +have +with +also +who +all. +are +out. +of +thence +far +commie +cents +with +would +why +and +me: +bileus +won +.OOO +-There +being +that +o' +these +of +cer­ +Cincinnati +dress +school +London +mentioning +candidate +hese +the +original +th +Connelly, +thunder, +time +will +Al¬ +music +City +count +with +tion +page +swim. +ripening.'* +advancing +ex­ +Some +Indians +to +their +the +about +iu +steps +nearer +of +to +his +taxes +school +so +the +perilons +Peabody +had +under +full +revive +of +the +failure +the +the +had +but, +judgment +considerable +she +question +array +article. +by +if +tax +and +with +to +it +their +you +Collins +mitted +handling +combination +prepared +advantage +life +miller's +It +may +multitudes +Barry +young +taste +102 +yellow +likely +aa +also +interpret +pork +there +states +such +on +these: +Mississippi +bound +Southdown +convention +Before +on +among +had +late +set +and +path +doctor +of +M +of +settle¬ +on +Lurch. +the +of +In- +Virginia, +remarkably +which +was +ivrillensignalureto +racuse, +past +powerful +Gunder +in +o’clock +and +goodby +assessors +is +run +to +you +con.- +the +I +has +a +board +and +poet +large +ernmental +transported +for +quantity, +tho +point +in +diahonoi +of +products, +of +reservoirs +drive +of +market, +or +the +to +is +that +a +$100.00; +the +hunting +li^-'iu-s, +the +der +the +first +hadl +admitting +the +by +rubber +concluded +liy +they +our +line +the +organs, +the +fire +for +drum, +expense +and +the +day +side +other +The +leuce +ii +el¬ +glad +it. +said( +they +sal¬ +and +and +either +was +and +fairness +with +occasionally +land +to +attended +issue +is +Tola +a +very +iu +the +Asbnry +their +property +the +children +on +estate, +pardon +increasing +al¬ +fine +K. +way +limb +miraculous +try +did +deal +oaa +of +bishops, +Frisch, +money +be +very +board, +Pekin, +J. +ihurouf +lantic +second +waiting +a +Meth- +and +quintessence +lib, +largo +All +to +Hairishurg +islands. +be- +markod +size. +and +had +must +due, +debts +said +of +had +inability +bushel, +celebrant, +intelligence +put +within +direction +ahead +a +in +to +ed +for +expanding +intensifies +them, +January, +it +closed. +be +business +very +the +march +our +size +do +20th, +occpt +voyage +the +and +pB +or +strongly +dlepartmlent +them, +to +Deeply +in +and +$5; +practically +We +you +first +with +sides +obaefvatlon* +that +the +under +that +food, +Toxas.Hutoheson +every +for +and +be +other +God, +Carl +in +Secretary +But +any +last +neither +at +canvas +which +said +which +spelled +her +the +tation +Fredericksburg +that +Amorlenn +easily +Manxy +all +their +fell +time. +hereafter +bnck. +ago; +and +imbursablc +Hutchison. +Bank, +out +the +in +part. +several +bave +icreen +Cramer, +hibition +the +side +over +a +operation +self +of +trgomtata +Mr. +hay, +company +of +Fred +Ex-Governor +be +miles +ing +temporary +of +rooming +of +latter.are +cent +of +by +It +oue +lecture +cheap +own +feet. +cry +much +who +is +and +D. +understanding +Sioux +is +of +dried +is +Jobs +old +This +of +printed +majority +Dee +other +will +formerly +different +at +the +a +Ono +Raymond +of +house +Buck +fair +the +Into +Very +Ar- +Claus +the +thus +prop- +.c +the +their +W. +of +way +of +wan +M. +and +it +home +toward +to +and +good +it +this +bv +perbnps +leaving +no. +Hotel +townships +was +three +may +tbe +the +comment +criminals +especially +of +medicine +Men +(rood-looking +Robinson +prompts +Fauntletoy" +his +by +contracts.” +by +still +drops +or +your +in +an- +breast +on +the +ordered +sheep; +having +ever +would +m +said. +but, +needs +shade. +conde- +upon +of +would +Geary +originated, +grand +stunned +cept +be +valley +i +eftects +County, +©wn. +the +in +ment +to +in +who +school-houses +and +simply +the +a +or +years +are +We +to +committee +moon. +II +runs +nsed +sensation. +how +silver +with +to +remains +surely +minister +vicinity, +morning +Rock +there +Therefore +ever +entitled +fenses +and +all +your +instances +pleasant +defendant, +ka, +fought +yon +the +a +llloO +on +to +the +till +photographic +at +passed, +but +I +lively +her +his +light +but +know +taken +Mrs. +additions +at +who +c +day +a +the +be +inclined +unsightliness +years +4 +swam +which +in +plied +request +f-r +tard, +the +for +July, +favorite +from +were +ers +OSOlodo +titanic +is +sidered +Many +effectual +iulet +his +sub- +llm +should +P. +six +managers— +fish +w +be +nisei +pneumonia? +all +the +as- +the +ant'itii- +Investigation +maintain +factories +muuufacturors +the +policy +demnation +alone; +incorporation +his +were +and +said +They +bvealh, +e +Itreei: +of +rendered +could +property +tue +of +ingly +thu +without +are +a +test +one +of +tax, +in +of +thorn +has +recently +follow- +tb« +other +2. +farmers +Li +leading +in +to +long. +the +dents +it +for +of +12a$5 +governing +in +tho +he +rebid +Smith. +precipi- +as +hen +If +13 +the +therefore +fair +many +Rensselaer, +at. +defendant +that +bride +was +ceeded +himself +np +ed +next +or +and +L. +1 +maladies +«t. +in +two +ance, +Cities +should +or +been +place +was +fol- +with +if +culation +of +led +hia +rascals +distinctly +proper +triune +if +southwesterly +and +can +in +transactions +my +away, +would +Remarkable +is +tell. +mineral, +than +a +so +from +any +cd +Beaudry, +supply +of +evidences +ssddle +upon +dress +great +tbr +making +the +the +moved +We +down +cau +them +election, +when +legal-tender +Once +headed +only +as +en- +New +the +a +by +cook, +soon +Enquire! +had +sell +taking +both +a +the +answer +remembered +Sr. +on +"Dar +ascending +for +proportioned +rope, +he +twaan +class +came +west +as +si +Then +to +of +Im.AHIICEA, +i +with +where +consistent, +number +constitute +they +throw +not +of +142B +Per +carry, +"Well" +work +remember +by +nignt. +you +thereunto +of +In +a +of +for +tho +want +way +gave +these +Dykes +sixty- +deter-tlue. +is +of +at +knife +the +been +his +two +Session +few- +West +Any +day.and +the +; +release, +nway. +open-minded, +affair +he +or +some +grade +opposing +of +ex- +every +this +American +and +meat +versaUy +ernment +Congress, +Porto +&: +stenographers +a +in +ear. +his +are +for +drew +public +alJ +rendered +connected +and +complete +the +and +field. +here +held, +The +were +He +entire +days +Nev +levy +to +to +posiug +mysell, +one +from +J. +vice-president +Book +effected +went +oul +and +years +and +to-wit: +the +conditions +out +his +sen­ +exclusively +modern +to +replied +much +north +and +a +Some +died +desert +State- +to +last +their +the +by +much +for +i +appearance, +shall +ability +took +handain +imprisoned +1 +querading +which +Heedless +for +that +exchnngo, +Clerks; +one +the +agents +tackled +n +or +two +Hanklnson. +almost +the +t- +battleships +him, +to +spirit +discharge +and +Camargo. +as +course +On +Rosen +tc +have +said +try +It +his +Because +through +agency +up +▲ +the +tomorrow, +to +and +Boe +frenzy, +wresting +far +Peas, +that +capable +50-. +cers +that +where +the +the +They +a +and +a +is +and +to +the +in +The +the +dared +how +a +Klag. +and +Sivn +service +the +the +laid, +in +any +as +in +she +have +will +was +lead +costs +this +same +ot +and +tbe +body. +exasperating +after +papahs +is +of +vision +adminis- +75 +on +in +an +Tarry +purest +the +circle +to +which +Be*. +to +great +the +costs; +as +was +| +one +field, +twenty +vealed +a +his +condition, +on +of +Caucasian +asked; +- +Mr. +n +have +Su­ +inpome +I +or +all +Secretaryship, +found +of, +and +of +against +Blake, +making +kuots +shall +in +on +many +to +I +Commerce, +sent +are +of +inimités +matter +to +vation +of +he +the +and +Every +not +have +payments. +the +Helen +of +may +the +the +current +no +taken +and +fair +seuled, +of +supply +Jory +ney's +case +rights +owners +Instrumentality +anjong +of +of +white +of +it +at +or +than +of +to +sufficient +lutereal +will +said +It +threw +lights +recently +situation +plan, +with +Children +early +his +for +ar +Mucu-Tone. +on +ot +be +people +follow*; +all +road +speak +were +said, +find +in +best +have +district +doubh +and +oil +was +J«\ +local +Hut +gain +more +forgei, +C +for +made +Or +corn +For +be +tbat +argument +Rev. +the +sum" +thd +whole +sorry +from +pocket. +and +at +November, +including +of +by +ramus, +North. +us +Resolved." +judge. +reproach. +extended +of +chirfly +Let +by +other +letter +action. +the +6*7 +the +solo +with +paying +little +settle- +thing +Hurtt, +also +to +«|iiarterof +pockets. +an +please +it +on +not +mon +of +British +and +answering; +gradu- +offensive +considt +tiny +day.of +his +— +of +best +I +cers +min. +manufacturer +(On +public +place +of +directly +John +made +ensembles +of +doubted, +the +1 +a +edge, +the +shares +and +the +ways. +advt. +17-year-old +standing +more +its +are +they +was +has +the +riageable. +; +retained, +contending +school +espouses +Last, +the +but +fashion +neglect +civil +THE +walked +kui.« +years, +cn +more +has +went +his +center +or +curried +in +fee +was +houses +according +labors +labor +aud +always +if +Herald, +: +the +hours, +the +Inilh +for +during +rail¬ +executed +passed +as +that +we +point +ridiculous. +lowering +my +beautiful, +evenly. +the +closed, +Introduced +rule +that +be +smoke +22x5x6 +repeal +their +things +habits +world,even +this +MltchatJ, +insisted +veyed +window +with +other +their +his +doora, +local +of +of +no +been +wretch' +and +Governor, +did +out +t +ou +forenoon +and +treatment +und +100 +Company +first +riibdltim +no +these +Is +ing +tained +AVhen +has +the +the +to +jthe +and +she +this +concealed +fence +gown, +been +when +see +a +special +cover, +the +to +overstate +said +hill +the +Jr.. +knocked +were +crazy +on +that +t'jev +the +alighted +of +were +lion. +own +and +been +here. +the +word +reconstruotion, +en +out +attaching +sassin. +one +he +fails +derstand +On +force +be +wlth +the +there +to +regions +west +the +seventy-eight +proprieties +and +before +ueiiiin, +newspaper +civilized +Hattie +Peter +Is +Horn +even +for +nircoullbe +1817, +LotNo. +Partridge +it +with +profession, +tb.g +writ +that +the +contained +of +and1( +blmaelf +deemed +road, +sum +tioned +d.irn +how¬ +your +point +too +in +Kerns, +Well, +will +presence +the +578 +its +and +- +tho +turc, +child, +quali +brok¬ +obligations +of +It +very +find +city +parents +have +and +their +aid +faced +first +tba +and +it +We +seat +the +they +this +bow +Congressman +follows; +constitute* +for +has +lltions +he +the +by +N +work, +Tenn. +to +everything. +one +less, +said +1894: +social +take +Orleans; +lesue +prelates. +man, +aitendea +ia +parties +lbpior, +in +? +of +packed +t.essin, +Versailles; +his +Wherever +the +the +with +ia +the +of +bales,while +State +other +We +day, +not +mechanical +able +take +they +them. +a +viw +ing +possessed +to +der +places, +ing +trace +be +the +of +in +stantly +of +ple +leap +child, +as +nas." +tno +Schweger, +brisk +east +with +without +300 +terms +nmokis +me +contents +question +and +When +cury, +Grand +ter +baseball +t«> +John +surely +still +own +won +most +a +penses +and +saw +long +cold +block, +line. +satisfied +mortgage +chocolate +was +near. +mauy +the +Garden +men +o'clock +to +reptiles +by +Interest, +in +actual +district, +that +Under +power +good +filled. +evil +of +til +the +mean +Mr +vear, +Wilt- +sale: +his +with +A +ten +were +grey-hatred +takes +system +V* +Numerous +lt. +many +taken +is +as +burn +Just +hideous +prays +that +will +enthusiasm, +a +vein +My +slain +could +vions +some +Copy +soon +sufficient +a +Pills +years +Mississippi +interview +it +A +operates +levy +have +his +vised +her +and +entire +reception +have +tbe +centre +mctchantcal +But +gutted +pink. +¦ +continued +the +tatiyes +sick +ter, +small, +ba +anu +port +fact +vised +or +universal +child's +I +easy +regulations. +debt +it +our +and +for +that +excitement. +seemed +cure +that +and +countv; +lady +tasies +been +things +Oscar +or +and +like +the +if +o'clock +Romanj. +During +decision +to +Thither +them. +present. +at +chills +that +to +you +in +the +as +whither +was +we +to +live +specialized +minute, +itli +and +from +to +departure +judi¬ +money +fire +discharge +hospital +a +bo +digging +knowledge +bound +to +black +of +that +blood +hero +at +on +of +thi +minor, +mourn +He +.t +additional +relating +Nortl +often +Ful- +; +of +done +; +Sec. +boat +only +that +ami +musical +of +the +the +That +a +war, +was +for +pastor, +and +have +came +advis- +urer. +count +has +tbe +and +dential +had +dant, +and +time +at +attempt- +Schaefer +lie +with +of +glasses +ot +in +leror~i +the +Weed, +shaped +further +Judson +a +will +in +Wm. +into +kinds. +so +to +Kansas, +11:30 +or +contrary. +This +his +States +the +the +and +state +bo +into +is, +Evans, +growing +and +works +and +o +the +and +partment. +tears +United +knows, +toissueand +aboard +not +of +Yaz +Govern¬ +Troy, +moved +most +is +soil +of +Gentlemen. +the +li +two +bond +character +aoy +a +association +accumulate +compelled +more +Gonston +large +vide +of +lie +that +cotton +their +and +suspem +had +which +of +Is, +facility +and +plum. +thc +100 +Uotirne, +Ola, +to +and +than +from +and +before +running +Sol. +the +book +forgeries +part, +any +keep +cold +Ther< +certain +the +tion +other +of +and +They +quired +tons +barrel* +reasonable +in +Jesus +inside +in +would +and +on +nessed. +bile, +to +and +miles +good. +from +before +work¬ +out +heard +of +York +from +with +in +ballot +the +tho +afloat; +and +year +H. +a +The +A +by +demonstration, +of +ascox, +drama, +of +is. +fell +large +discussion +frittering +ln +business +years. +the +personally, +uncertain +made +sure +Monday +will +Ct +by +national +so, +wo +W. +the +the +are +ia +poetic +as +other +aeven +fication +as +165.42 +were +Repeated +been +1500 +clusive +agood +gold +generations +Glas- +northern +not +indigestion +economic +where +demand +ing +endeav­ +P, +the +her +then, +remain +pour­ +amend­ +them +questions +dings +grove +he +and +Since +be +longer +some +one +aloud, +rails +Cubans +him +the +postal +the +ination +? +sister +League +sending +week +in +of +so +stated +tree +which +i +12 +crepe, +end +are +Cullen. +that +Gen. +medicine. +pay +as +bflldtntj +Democratic +and +the +general +where +respective +deemed +specialists, +the +fronted +may +little +j +My +herself. +re- +struck +other +three +patches +B. +our +subject +ballot +The +and +in +yoo- +at +alk- +erally +a +would +eten +he +bags, +reports +town-a +black +the +it +which +tricia +but +sea +the +successors +tees, +ed +property. +counties +to +ana +large +her, +A +i^te +Rich +and +decree, +the +legislature +the +had +by +on +picture +must +upward +the +boat +said +become +textures +as +such +o. +NECESSARY +I +broken +tnerein. +as +at +over +first +and +and +appearance +credited, +who +trial +Schoneidsnd +ai +been +she +of +eral +from +me. +a +article? +the +pay +are +District +corporation +other. +will +ardice, +be +trait +ho +time +the +city, +The +George +shortage +any +break +they +against +generally, +E. +Just +ward +The +day +hnd +for +birds +arounad. +are +recommendations +whole +who +Canadian +gradually +till +load +alternate +definite +the +Representatives, +no +the +feigner, +oi +Bladensburg +dentist +than +that +an +rolling +between +Holladay; +pretext +Upon +i +daily +was +the +have +of +out +of +! +to +ing +again +covering +vote +sources +in +wind +to +to +the +citizens +;uv +lid +institution +Mr. +our +out. +keepers +cussing +the +foreign +ot +after +obedient, +nominations +Lorene +Insurance +connection +pea +Dr. +Streets, +contrasts. +farmers +in +killed +be +and +brutalities +relieved +a +Mi-ves +plaintiff, +>nth. +but +months, +district, +hearelh +discriminated +second +ranch +between-Great +also +then +questions +or +arrie +any +It +their +hts +and +not +wire +stated +question, +I +fact, +the +fantastic +reported +of +where +in +by +or +or +basket +ufacture +through +three +offerel +States +1S +this +came +xurfhor +prisoner +made +against +of +SE +to +n +sort +« +"Cleanliness +sight +neigh- +are +Said +they +hu)inga +whereas +struggle +Pearl +spring +taken +did. +purchase +end +number, +fifty-six +articles +was +quids +I +to +eapltflliati +on +they +way +that +be +ratteraon +be +believe, +Home; +in +of +itho +degrees +sent +them +staff +Parkinson +for +taking +by +as +West +he +and +They +should +turn +lions +if +more +for +shall +at +pulse +child." +silver +dogre +open +required +the +such +Congress +"Merchants' +at +The +and +given +fic­ +Maryland +the +quently +the +Mildred +As +(single) +together +which +House +all +the +vouiulliiR +upon +the +while +for +sallow, +futuro +his +even +act +thi'uld +quiet +prom^ +proprietor. +intoxicating +poses +In +ture +tho +having +was +by +to +so +Mr. +line, +now +which +after +ihe +between +in +will +the +that +carbines +into +The +blind +three +preferred +market. +but +the +The +to +fer +II +that +on +Sore +to +money, +book +reserved +help +the +will +been +photograph- +the +tendency. +shi +to +baa +of +Eugene +minutes +calves +com¬ +hereby +an +of +thc +bureau +dent +or +they +is +while +way +hereby +th# +the +thus +was +it +Charles +of +early +arouud +4; +374,000 +di- +about +trust, +living +acti­ +Sing +iormed +on +never +the +man +Omaha; +violent +told +have +was +poor +the +serve, +from +Further +Surry. +thence +does +G. +of +The +2 +00 +office +in +buildings. +General +insane +among +the +allied +constituent +to +the +LiiculalmitfiuuL +being +Funds +granite +That +of +nevertheless, +of +watching +tome +(the +Or +village +to +The +$90 +law-, +benellciarv +sale +trees +Four +of +contended, +my +answered, +tbe +chairs +danger +contracted +those +with +trip +the +if +Hansen, +are +tne +grown +car +far +These +S +asked, +aisle* +disproportion +he +case +from'»:,-« +from +home. +until +face +have +checked +Jefferson +involved +check +gramme +talent +....... +orchard +ful. +Importance +did +taken +far +Providtd, +oue +and +und +said +of +get +the +the +ter +disaster +the +audience. +ning +superiority +germs. +Jay +halo +you +is +The +it +the +in +one, +horses +access +who +stone, +lie +tribunal +causing +the +Kl. +The +scarcely +When +letter, +influence +from +a +men +turtu +and +took +vary. +like +the +ally +o +reduced. +terms +engage +Garfield +due. +superior +known +that +which +have +} +will +Hubert/ +during +house +make +of +to +him +insurance. +to +ita +this +a +at +42c +“you +of +Conveyance +was +hope +geologists, +every­ +child +»r. +of +endless +of +Briefly, +one +Jennings +plaoes +labor +Buying +«v..« +broad-minded +Oo +in +viz.: +at +election +lieu +land +and +the +In +reanlly +keep +on +of +little +the +county, +in- +MATTERS +in +doomed +will +the +the +9l'b, +(State +to +of +the +The +in +rile +look +uneasiness, +at +movement +Iberia +and +Mr. +shade +in +laat +Janesville +question +attended. +the +first. +other +only +Salem, +vided +“the +to +medical +of +in +of +rity. +tar +In +been +The +[Loud +and +and +this +prices, +vio- +to +»o +inspiring +at +state +Allen, +sulphur +of +showers +fork +ulace +manage- +tho +searched, +which +man, +war, +ash, +out +the +add +Yorba +ing +and +river +The +Stock +oatli, +use. +she +It, +by +lou¬ +Bloom +were +the +garments, +It +beauty, +was +the +to +it +much +great +til +the +locks, +interest +in +fect. +on +39%e; +faraaee +they +tigress. +will +but +by +of +earth +wht> +The +hair +declaration +clabashes, +canal, +1 +on. +while +in +an +accompanied +ty +or +ace +and +prize +a +in +arnifd +1 +the +not +after +him +the +one. +RPOSIX +criy +am +fellow +capable +That +to +indicated, +sensa- +abaft; +residence +channels, +the +the +that +Bruce +are +deadly +alt +great +which +of +legislation +be- +into +12 +gave +in +Covington +not +of +cent. +and +hosbaad +a +utid; +as +principal +woman's +the +l-ogans- +well +firms, +has +them. +was +our +Beginnng +penditures, +between +the +Mr. +the +hoes, +saw +builder, +! +of +rudimentary +In +Still, +range +ninety +his +infants, +beings. +before. +_10 +To +80th +to +to +Parents +no +feet, +as +msntnade +while +lowest-priced +he +present +was +the +from +1 +and +the +whicli +place, +of +selected +to +chief +other +&ik +say +get +would +150 +by +So +present +the +my +on +when +opinion +and- +Block +home +the +bis +«Cary, +ottered +that +to +wliitb +was +the +holy +more +done +over, +interest +mural +way +but +the +her +being +the +In +free +Little-J +death +result +notice +which +when +give +the +himsatli +the +in +from +The +natural +au- +the +fore +rank +defense +repeated +he +kilo +a +Interstate +and +Truatee· +grow +the +I +raise +are +upset +form, +Long. +ber +and +candlestick +is +the +that +Woodsfield, +from +died, +and +the +Bermuda». +Mrs. +Our +of +hiiuself +track +no +permanent +run +other +dbntend +li. +Croup +in +Tho +treaty +him, +than +efforts +with +spent +great +I'acillc +wise +been, +follows, +stock, +indicated +his +it +a +is +This +ahd +In +of +were +in +tion +up +of +parallel +expl +« +flooded, +use +glad +volume +cut +to +a +bridge +it +Bureau +home +speaker. +the +this +ground +gether. +"A +of +than +it, +the +waitress. +Eureka +of +veigling +powers +his +passed +and +wrong +into +that +aea. +the +dersigned; +first-mortgage +Eng +themselves +anything +of +persons +at +time +took +debt +volumes +sell +how +h.i +and +la +influence +ol +and +enact +ship +tend +little +believe +1911 +to +as +are +tems, +not +are +or +be. +itself +be +heoause +have +Block +1801. +L +had +schemes, +or +formula +takiug +from +night +in +of +of +such +boat +tion, +Agency +the +to +II +line +cine. +so +circulate +llann +of +being +or +day +country +a +(ai +read. +Presldent +Speaker's +year. +to +thfir +The +south +bid +cause +limp +marked +performed +months +the +out +Gordon; +this +ached +ring- +The +record +cannot +to +election +Asia +of +present +her +Peruna +tbe +SDNS, +Greek +dare +paid +commencing +who +so +their +ami +with +not +patriotic +(S) +Northwest +as +hanged +Skirt +tween +; +do +cot-te- +is, +be +check. +from +the +democracy +west, +is +fairs +mnioie +share +who +enjoy +if +shall +thickets +bonds +itane +is +Liber +of +daaoed +sky +your +purposes," +" +the +the +his +canoe +per +and +internal +the +tions +been +time. +acquiesces +Mrs. +ail +men +of +the +was +open +It +asked +Sabbath, +vessel +neceggary +la +said +sells +a +«, +will +is +that +story +feet +appropriation. +petition +has +acters +of +in +filed +trick +wool +for +all +and +of +to +ticket +of +had +rotten +light +that +in +claims, +she +your +as +of +tne +a +will +truth. +supposed +ten +vv +or +whose +authority +a +the +their +Inst +N., +by +given +saw +awful +still +broideries +the +muchl +de +women +lain +curtains, +and +the +caught +facing +the +friendly +used +witness +every +hundred +to +But +situation +of +not +Ilere +tho +of +unlimited, +is +funeral +Tbomaa +doctor +A +gar +need +50c. +(rough, +us +of +dead +gage +Cor. +M. +wishes, +135 +head +against +the +see +at +or +whioh +the +title +tilnilat.oil. +sales +ef- +true; +the +at +ancestral +places +v*rvi«nd. +became +follow +the +tpent +general +denouncer1 +ed, +the +to +costs +is +by +as +So +virtue +walked +Benator. +thsnvia +near +of +Stevens +and +thu +economical +traordinary +governor +por- +would +was +in. +camps, +along +and +that +or +excuse +and +dogs +is +grains. +million +chairman +committing +the +hla +have +Orleans +the +of +found +Campbell’s +awful +tbo +Hie +by. +There +zation +too +deposits +a +with +vast +whose +would +cas? +sympathy +the +his +Transbaikalia: +public +six +make +water +sense +therefore +though +when +within +the +and +with +with +closely +election +obstructionists +to +r +different +50 +Dollars +rumpled +millions +and +of +old +of"25 +thfl +membered +Scandinavian +by +I. +the +the +up +Charles +day +20 +tlie +vegetable, +Mi*s +the +who +now, +and +Consti- +by +czarina, +those +would +3, +Kentucky +shall +county +Andersonvillo +in +"bi +for +fluence +cm- +of +thence +accordance +ine +to +each +Cass +The +conteuts. +afterward: +809 +upon +performed +cals +Beat +sanctuaries +medicine +the +had +along +easy +first +Stat +governor, +gone +city +case +to +had +rounded +pings, +the +dealt +tirei +managers +aed +aud +had +BPBBfl +The +Miraiidria +roe*, +'I +to +ligger +liis +1911-20 +for +of +board +so +city +time, +W.W., +The +hobby, +opportunity +declalon +cf +speaking +with +forenoon +transfer +dred. +possession +cents +clean +gans, +■he +sonic +did +contract +their +moderate—treats +There +man +aaybody +When +their +beds. +driving +him. +ber +hearing. +situated +near +number +did +higher +equals +thegovern +It +the +he +leasees +lofty +lay +them +known +tions +he +trusts, +the +from +more +w +be +h +To +us +elected +pur- +a +do +is +much +the +commercial +side +and +as +and +in +questioned +tho +at +assessed +soldier, +to +se«-ms +deaf, +eltvate +of +to +that +bill, +was +sounds +Why +imperativelydemanded. +declined +it +while +to +York +capping +nnd +pulled +tho +the +have +to +decisive. +"The +south +have +78 +so +Board +with +sympathies +acting +been +for +"molhod +to +20 +machine +MM +tolerate, +piano +seventy- +labored +relics, +a +portance +be +It +Johnston +mist +eased +to +the +the +in +cess. +to +State +them +claims +sirneof +whose +limbs +to +North +repeat +province +veins: +character +“Dear, +other +deter- +stationed +eitner +survey +received +notice +ages +uprising, +in +publish +to +himself +the +way +presenting +wrong +the +or +118.4 +noth +Spanish +various +at +united +to +113- +the +land +national +hin +tions +them +broad +stamp +seaman +committee +out +5, +Washington +of +forci- +of +what +the +wrong. +a +the +a +get +a +assault +to +farmer +ostrich +Wasatch +On +to +they +and +us +operation +the +on +in +his +goes +passer, +little, +through +to- +to +th +lot +point, +Banks +in +possibly +they +ex +year +ap30.my7.14 +to +to +Gastineau +Iinlia +of +ine- +board +'its +pro- +on +season. +observed +and +part +many +24, +at +The +jump +to +No. +by +its +contlnue +In +retained, +most +the +this +eminent +the +Branchdale, +Amelia +linings +the +about +be +big +many +are +and +days +malntenanca +irresistible, +barrels +arena. +terdajr, +Tho +of +tie +S. +reindaled. +be +the +years. +the +this +the +provide, +Review +her +is +L'i. +In +support +whereas +the +would +in +ought +time. +anuglil +Was +the +office +<221.) +under +. +white +per- +special +northeast +acre +piece +Herman +pur- +have +Scamper +in +to +leaving +that +their +action +it +veteran +inauguration. +a +her +let- +nnd +written. +doubts +the +oven +se# +rude +Shreveport +come +self +sons, +the +into +open +and +such +Joseph, +more +the +ring." +always +the +people +enough, +something +miles +appetizing +no +of +thereby +shakes.no +under +waged, +with +eff.*c; +this +it +question +to +was +rard +at +cans +gotten.to +for +wo +surgeon +and +he +hundred +our +situation, +an +imported +ef +his +county, +new +to +crupper, +and +connecting +the +the +her +at +business +•arents, +those +with +will +River +In +utmost. +at +cable +before +she +base; +all +the +that +J. +111 +leadership,' +their +and +tropical +Hucklo +the +people +bowels +the +doesn't +list +many +the +her +we +any +Chinese +falsified +for +air +rec­ +said +tributaries, +and +on +founded +note +Of +Claunch +kaa +defeat. +and +ores +in +river +are +Thirty-three +pink +for +this +crowns +to +t>; +more +mand +motion +In +troversies +of +said +liberty +this +may +to +money +('*«« +forward. +Home," +scores +kicks. +enc +w_<- +and +Duke +rendering +habits +viper +“Welcome,” +fit +covered +at +credit +the +Ianou. +that +Merl +to +passing +fii +miles +him +it +emergency +the +other, +seat +may +irritation +weather +in +the +ease. +stormy +one +aud +(38) +A +ceipts +my +Are +8 +40 +but +ing +Ko. +out +can +did +power +be +for +and +die +to +which +peering +and +during +and +Charleston, +round +it +20.13 +Old +tbe +abaft, +added +well +some +and +from +.anywhere +and +thereafter +answer +and +the +planet +their +lived +Tbe +power +Alexandria +to +minor +slant +all +a +small +W. +assessed +the +ish +Stoihis +ernor, +the +M +Then +erance, +all +lady, +looking +It +the +of +and +by +and +society +her +millions +l.a:eli'- +; +, +is +negroes +If +taken +good +Hof(; +order +disability; +pheric +at +the +on +not +present +$8 +the +line +the +Mrs. +account +of +and +others +can +other +Judge +the +and +in +no +grew +which +very +gallant +beside +filthy +based +ture. +"On +sponse +they +eeding +he +over-sharp; +Miss +so +one +year. +out +He +but +and +The +feet +abstemiousness +of +rescue +I +gives +together +*" +tion, +tfie +mld +dearly +our +ing +for +spert +As +the +as +their +together +the +or +have +lost +or +and +presents +and +it +As +have +payment +attracted +for +(205) +the +basis +fit +o'clock +the +but +January, +such +to +Assem- +hills +of +cians +text +tbo +of +thereafter, +«uemy. +liv- +minutes. +on +tempest +bark. +thy +the +Spenk, +cau-e +for +the +the +room +Justice +payment +harvest +wilding +.M +line +estate: +the +alive. +to +is +a +is +as +on +1861, +years +the +Associa- +not +prettily +shade, +tne +built +own +will +highly +It +A +always +long +would +Mr. +five +can +men, +almost +the +Conk +laps +Mr. +sawmill +organizatiou +people +he +movement +of +for +anxious +meadows +by +his +which +and +them, +sum- +of +former +mills +a +pany +H.- +warned +forehead +she +penoa +shoot +president +Butler +man +h +favor; +dispatch +Mountain +ne +neck +northwest +compare* +company +ho +opinions. +and +me +ist +the +ingbeen +in +of +impunity. +fatigue +of +Stallion, +real +Helen +w*« +the +by +into +and +tape +head +Miss +level +dent +In +the +There +to +and +will +bilious +that +a +in +dip +time +4 +a +with +national +retary +Haring +him +with +iron +DuohutderJudgesoebbasoa +the +crotaline. +Blair, +than +the +exhibited +come +eighty-three +aad +rich +is +a +to +covor +gout +huge +came +trials +end +preferred. +at +pronounced +than +Miss +a +district +further +bottles +seemed +straight +the +eral +private +Thurston +ownership +vault, +men, +first +has, +separation +business +score +Mm. +twenty +amining +wish +The +white +took +great +broader +the +anu +system +a +may +roll- +of +conditions +10.40A.M., +i* +because +this +The +ld +say: +. +idea, +Miss +the +:ome +conti,iential +the +to +of +demonstrates +Yesterday +inks +for +now +southeast +earth +of +the +of +ber +in +culled +cotton +8. +who +mention +hangs +its +to +defendant +names, +during +Sec +was +tho +con¬ +and +end +Mary +ciates +are +and +Venezuelan +y +government +u +tber +*maJ +carried +treatment +and +by +was +victim +pay +a +health +30 +; +I* +country +dency +and +daughter +Then +within +to +the +a +O. +of +can +do +that +layer +1 +or +broader +one +Travis +military +to +it +Jiigh +body +and +information +stirring +skin. +what +evidences +with +The +fairy +said +and +more +the +South +la- +Resolved, +dwelling. +Buffalo +cities. +Taft. +my +robep, +Eastern +first +be +ability +were +turned +Chronicles +under- +ton +city +have +brains +it +low +way +resolution +"Sec. +Forty-three +- +attraction +of +town +three +Junior +IRIlS'utis +future. +more +hard +be- +where +publishing +or +only +thi* +In +lived, +to +for +Uritish +which +conscious +execution +dren +two +then. +white +; +black +reject +tbe +recorded +their +number +bottle-bellied +wires +the +out +In +and +of +tesy +230 +far +northwest, +of +and +than +now +natives +at +produced +docks, +arc +tion. +were +I +after- +in +as +the +fix +neatly +raelitish +ply +face, +place, +Coukling +minister +poisoned +its +he +Civil +upon +86, +n, +Lewis, +was. +feel +rur!e +I +strangers, +lias +and +being +dis- +. +brackets +of +to +heresy. +receive +when, +360cs. +(13) +that +(14) +Practical +of +I +appraised +the +course +perjury? +turn, +differ +life, +Bkction +federal +with +pocket +confidence +services +But +something +good +to +ratu. +stand, +United +and +•uenced +will +blackened +let +you +at +Too +the +boastof +sneer +to +the +His +speculation +to +W.594.1 +return. +oh +arc +here +this +its +and +announced +each +style. +two +treat +this +kind +pmari'Mis +my +The +the +wins +the +tliepillars +yourself +with +the +som +done +this +not +reached +just +narrow +care +before +Seville, +.kuowleilgeil +kill +to +Tipping, +Wefers +government +ascendant, +the +said +ducers +zeal +when +As +have +ICeuben +in +resourc +lot +priced +were +Islam +aud +cause. +never +award +satisfied +is +weeks +End1 +discharge +and +made +citizen. +the +office +to +and +of +comatose +August +rights." +in +dered +county, +The +the +prove +day +have +military +. +the +had +and +amount, +hereby +not +and +of +and +me +if +Class +A. +to +to +witnesses +K. +second, +and +Odom +per +Dean; +Peace +if +subjugation +evil. +it +all +beauty +prob- +they +side +you +the +la-ghed +aud +of +Time +a +able +tion, +and +exhibits +work +Africa. +forth +costume +pioaf +a +to +our +next +It +rescued +pro- +In +body +premise® +but +appearance +computed +the +All +do +embowered +exported +anyotherlawormeinueqmimaoroi +Ignorant +and +no +acquired, +believe +is +the +Falls +1859, +a +whom +casji, +destroy +of +Franklin. +to +the +work +wards +John +car, +street +its +of +currency +and +(thereby +related +it. +their +Conductor +it +did +five +barns +I +cure +aoue +of +Votcouver's +or +McElroy. +of +other +in +lowing +Wo +could +aft +10 +me +long +inthe +5x5 +way. +Rev. +idea +consulted +nd +The +nated +mended +and +distance +make +In +inter¬ +return, +man +(semi-official +Her +out. +him +levied +the +the +the +surely +the +This +the +of +resources +a +Offioa, +and +lovod, +saw +closely +thirty +made +a +creasedwiththe +precinct +5521 +.Tohneon +having +or +of +be +display +vomited +(102). +program +shall +a +Import +up +and +senatorial +war +a-?? +election +that +track +force, +Lon- +this +of +in +. +to +I +or +company +here¬ +the +oases +therefore, +ball." +tlio +tne +for +merits +favorite +memory +the +In +em­ +the +he +pre- +expressed +Surreys, +futuro +and +Kilbourn, +a +Chute, +have +removed +and +arrivals +notice +Mary- +counted +give +No +go +had +t*rt-*uier +so +changed +reached +ravine +its +was +Washington +so +255, +with +referred +pass +poor +to +Constitution. +head +is +city +large +died +in +us +to +men +that +states, +that +cars +bonds +of +IOSK. +use +tiled +be +is +vertence +class, +west +Busey. +to +which +do +act +pin +the +or +the +and +lor +the +As +the +who +I +of +these +sick, +was +tho +Improve. +in +It +committee +01 +can +fatuous +effectual- +supreme +by +week*, +skins +with +when +a +to +For +I +of +of +terest. +of +e, +and +remark +territorial +R. +Its +11843, +married. +Ed +It +is, +from +William +we +ment +alTairs +fiV6 +right +devoted +BOOTH. +system +twenty +M. +rain +to +ft +belonged +northwest +thence +Miss +by +might +of +was +keels +made +oae +had +between +have +tower +the +the +the +by +publication +and +Sur. +combined. +W +heart +circulation +ized +iti +remarkable +the +didn't +senses, +life.” +erto +passed +oil +appliance:* +the +selected-situated +at +been +tacki- +links +was +which +their +marry +who +Mass., +of +for +the +of +vantage +investigated +so +they +government, +mother +appreciate +retarded, +driving +the +public +Aberdeen +west +with +Uin +is +size +himself +mar- +Los +and +the +into +Christians +frizzed +Government +line +as +milk +recently +and +said +deperation +to +from +Incurred +Democrat, +negotiations. +ability +hurt +applications, +un* +was +on +chest +everything +through +I +ther +acter +and +Alva +back +were +this +the +glvo +and +them +why +leaves +puro +no +17; +nation +her +be +ago. +to +.and, +to +so +member +him +saddle, +the +move +ments +years. +back. +southern +the +ity. +Stateo* +who +be +jot +who +intellect +bank +only +There +or +not +feet, +^ +ana +not +No. +stampede +us +of +th +Professor +vile +DOMESTIC +great +do +their +mountain. +more +toward +place +Ine +to +Rlckett +fire +the +about +Mher +dlrectlo +of +in +seized +rapidly +one +dry; +Apt +only +out +in +and +settle. +title +af- +or +Following +and +to +that +sink, +laboring +the +Is +On +stores +equality +over +oue +some +m +remains +calico, +ters, +misleading +strictly +what +were +to +yellow +Prsemnt, +NEW +line +for +a +the +and +parade, +near +agricultural +best +They +or +tooth. +corn +bull +bad +made +slight +follow- +Real +and +of +stepping +ruining +having +prosperous +Dr. +rooms +of +over +tho, +Plates +A. +t"--se +intended +it +which +jection +via +the +, +aw +here +them +Doniphan, +proceed +the +representative, +than +system +A +board +it +also +real +themselves +main +have +is +four +same +tween +the +ful +Tientsin +tho +air +ces +that +by +fair +of +sales +of +is +vested +began +wants +the +recorded +♦ +of +of +Galitzin, +Do +Western +Capitol +ihuntz +the +T*e +So +his +h°nor +!kkI:s +a +towing +marked +feet +and +Otto +fimn +United +or +time +have +day, +fallen +sum +sacred +a +37 +of +his +No. +largely +would +great +rrly, +We +Prosidont +trip, +. +course +destroy +angel, +ive +fcTka +posal +every +new +the +running, +owner +up +but +retained +tion +famous +left +in +section +size +by +I +see +heard +hospitality +at +distinctive +prosecution.' +C. +parcel +your +performed +grains, +after +mem¬ +representing +vention +the +:C. +while +purposes +not +floors +Ihe +these +of +dropping +good +candldacy +nine +370,549 +Brownlow’s +to +a +thoso +permanently +found +on +alligator +tho +of +and +great +fell, +the +of +damsons +have +take +tbla +paternal +three +expectation. +if +down" +requires +cent., +tying +will +hill +to +of +tbis. +a +A +rods; +street +8. +Baldwin, +I +grand +ters, +cheek, +this +and +which +talked +box +but +some +volume +votes +preferable +lowing +Wounds, +at +liberally, +Beel +434-5; +Dakota, +the +back +Watch +been +arc +Adam +to +Guy: +drama +statement +Know +there, +ment +Opening +the +been +mother. +men, +promised +1 +a +go, +ever +Mrs. +about +The +informal +lies +hind +the +an +mouth +$2 +body. +tfce +except +tbe +( +that +wilful +can +and +compilation +dowment +test +tho +has +exclusive + +of +tbe +nn +happily +take +tract +Clerk +an +state +learned +time +of +to +in +there +re~ +lew +produced +Bacon +" +with +for +soon +that +was +went +as +done. +and +. +gypsy +advo- +was +spoiled +iheiisesot +thai +them +ing +citizens +encouraged +is +employment. +th +majesty +the +had +seemed +relation +aro +at +honora¬ +in +a +standard +now +to +clearer +K*pabilc*n +In +eov^ral +con +to +in +necessary +plays +en­ +right +and +taste +until +years +strated +contains +suit +fill +from +to +X-iays +do +Along +variety +control +Max +surely +their +to +was +home +tliem +It +4 +hat +old +business +the +co. +St. +of +a +money +against +a +wil +tained, +is +come. +the +func- +to +ovei-y +when, +ant +that +u>e +and +sugar +Tho +I', +the +a +It +them +I +isume +question; +Mr. +to +several +payments +tyaptlst +family. +be +aterestlng +evi- +being +good; +ditional +post +a +the +closely +ture; +debaired +When +king, +mother +of +present +at +of +is +will +district +Apocrypha, +such +I). +the +Baltimore +city +was +7'. +feel +20.04 +mile, +caughj +supposed +despised +and +and +an +a +at +the +of +During +clean +fied +ol +deal +had +paper; +that +was +to +is +lowed +Catholic +asked +¡¡s +two +difficulty +ter +sentence +said +purpose +tho +mines +on +Commencing +got- +is +preserving +a +that +great +After +board +In +It +alent +Favorite +her +ideal +in +some +all +possible +the +and +a +made +force +thus +uct +of +up +its +while +Borne. +morning. +lt +well +out +entire +of +exs-- +bow +of +and +said +half +of +to +1'rt-aideut. +life +To +"the +as +ous +tion +proposition +the +seem +proven^ +resort +Tam- +officers, +and +menace +Russian +al, +to +he +process +the +ita +opposed +when +relieve +rusponuou +which +tha +stamuch. +they +justice, +a +I26.1-,.It +Music, +with +the +The +in +overybody +In +tho +dis +day +from +Ott, +in +said +drank +temporary +way +-vurious +they +Irene, +some +the +of +and +Williston +betting +jacket +one +Suppose +Tile +re- +helped +general +out, +with +has +Bolshevik +by +Now +knowledge, +we +civil +dcah*r +a +Coon +vice +to +dwelling +during +now +a +the +a, +tliRt +not +the +strict +into +tbe +anybody's +than +volume +is +the +al +baaka +held +Harvard +sncure +said +Flats +city +diges¬ +quality +ap¬ +thcue +to +no +of +ject +Deg. +ou +safe +a- +Circe +jester- +in +acre +they +Cascades. +marked +example +eastern +and +that +her +ly +of +be'beaten, +in +feigned +her +house; +product, +a +Mr. +not +aud +himself +hurriedly +and +drawers +manfully, +train +sections +aud +the +pursue +forty-two +which +only +Congress +reputable +clothing. +very +him +appreciated, +Christian, +there +iu +moinlng, +and +things +winter, +upon +puted +Messrs. +two +the +sat +arrived +Canto- +room, +I +months, +lime, +louger +bloom +ssTfassfi +-.. +such +borne +1 +be +has +¦river, +makes +States +years. +turn, +introduction +plan +social +show +the +t +mechanics +been +min. +have +of +started +t,on +Sixth +ago +been +mountains, +found +was +jects +peculiarly +had +I +the +0, +mako +to +should +all +little +limes, +and +dinner +also +musical +conscientiously +supremely +given +endeavor- +inurderid +parts +ix +range +ran +work, +greatest +in +Knowles +mtlHi +the +to +nro +will +C +resolved +was +they +which +center +ck, +from +vs. +months +process +as +Tlie +dangerous +It +stop +lots +! +the +days +80 +organization +Railroad +wi'l. +the +legislature +Atlanta. +the +of +President +and +Ambition +assets +s-cond, +character +end +the +be +a +complete +lean +to +grain, +deep +made +prices +wasn't +to +and +ngent +in +Allen +appear +with +an +confirm +Mrs. +be +avonue. +from +were +curses +that +by +Hie +those +a +mpakes +what +ten +a +March. +Uni- +Now, +most +gave +mits +whin +re +march. +uenilon. +they +forma- +fed +idea +the +of +had +tising +just +Instant +was +the +upon +a +degrees +They +eggs +to +fourteen +shown +the +In +the +and +tho +likr-l +their +can +February +time, +unheeded; +rests +immuni +neces­ +in +sequent +"Pedestal," +perent +Our +all +good +in +tha +of +silver +the +lection +many +your +streets +On +; +White +German. +words +no +she +“resistance." +tions +came +the +carefully. +and +stance +onr +of +distant +preached +Corn, +Coyote +No. +have +of +began. +defect. +their +special +due +dinner, +In +gfri +numerous +regulations. +their +tion +encouraged +adventurers +improve. +*uoa*e +They +the +always +and +many +envelope +14@20V-c: +of +delivered +the +:;(>S +provide +for +act +at +become +tenths +litical +still +7 +was +out +I +secretary +Yoik +When +block +here +ruffians, +alluring +were +E. +taking +title +by +at¬ +with +over +land. +days +dspicture +authorities +lie, +of +I +northwardly +the +was +in +bring +her +give +indemnity +tlie +of +so +that +Mr, +that +tne +location +In +; +had +other +which +is +mortal +it +Couit. +miliar +comity +Cripple +the +Sainana +editor +a +Bf, +the +land +had +and +you +Emperors, +friend. +on +merely +Danube +let +vio- +child +mode +Second +the +The +$057 +the +will +he +creps, +goes +pushing, +law?" +a +Would +all +and +the +disease +valuable +Harpers' +the +through +the +nine +turn +buy +their +"I +the +and +profK-rty +ply +field +lay. +anti-defense +constructions +Relief +Hospital, +to +where +time +seems +the +. +the +of +night? +put +were +Tribune +Swedish +woro +not +Is +memory +polities. +in- +It +said +of +should +of +have +more +come +institutions, +made +as +40. +St. +and +Besides +the +placard +extending +M. +child +record +pro +are +years, +filed, +home +cent +Miss +tho +oures. +tone, +but +tors +guaranty +each +when +t<» +tbe +R. +correspond +this +must +like +through +cause +the +is +exercises +measure +Homes +Guiteau +that +they +Malone, +south +1917, +records +ca-. +present +glazing, +papers +the +world +and +lias +theso +and +and +he +statesman, +00 +use +now +part +are +lower +All +distribute +one +sympathy +was +that +thing +of +the +iict +who +ofthe +. +most +or +which +partly +sessiwons +Hasell +very +tact, +this +greatest +that +! +ally +Chickasaw +No. +office +neither +pitod +over +less +"like +and +Omaha. +morning, +object. +ultaneous +found +sion +to +tobacco +start. +a +edu- +said +to +the +after +by +af- +- +that +during +the +every +was +of +men +culiarly +inches +Harvester, +because +year, +afterward +publication +teet +by +city +as +would +p. +university +Our +the +your +forward. +man, +extraordinary +Is +to +cut +knowledge +St. +surrender +seek. +the +is +impossible? +living +seel +to +which +heaps +station +the +warranted, +the +h'loso +incurred, +are +fruit- +his +hold +adviee +became +jects +all +on +4 +to +in +shall +genial +track +obvious +long +nationalities +age. +a +a +hears +"Is +to +Jackie +said +to +. +J. +destruction +and +goods +of +man +N +nervous, +like +this +audience, +in +wheat +ifs +with +year +the +the +preparation +are +Yes", +by +to +least +ened. +cent., +to +ciigiii.ince +The +colors +as +Antioch, +by +some +the +all +has +wits +horseless +time. +The +to +of +to +nose, +and +Hayward +Hull +Assembly. +Cuban +below +lished +unique +carried +1889, +voted +Volley +ous-the +cent +with +hours +be +respect. +forced +up +had +nurses +deeply, +school; +mule +their +arm +noble +sign +aro +have +fa- +fice +Party +B. +the. +.Japanese +of +August +ask +or +each, +of +characters +and +reached. +Red +The +about +the +. +give +and +of +who +in +subject +terms +to +to +and +Shep +210@ +Tate +into +rule +the +to +river +we +red +to +near +is, +operations, +dwelling +Investment +the +previous +public +Leonsrd +was +two. +the +. +his +south +not +Joseph +through +and +man- +of +to +plants +Abe +alike +nil +ticked +01* +to +of +ei^lit +sentence, +the +site +It +by +tonic +whether +the +home +lot +evening—T:,30. +One +on +is +knowl- +the +always +arr.ihaca +can +the +and +the +I +ore +Marble +, +a +was +every +the +wti**re +power +certain +In +all +there; +The +have +night +life, +in +represented +living, +form +became +marl +choice +they +ability +tho +A +immediate +nearly +than +They +Caucasian +If +doses +cease +simple +in +about, +onward +profes­ +Angeles. +the +Sec. +the +air. +a +said +rabehi +the +and +out +they're +would +no +price). +8ge; +properly +me +breast +the +in +that +limited +earth +batter. +the +prumincnt +nothing +the +have +all +A +with +consideration +it +Christmas +south +ho +. +including +awaits +The +"quits" +by +lirst +8ent«niiicr +or +of +very +Fargo, +and +which +so +suc¬ +from +al. +realize +some +provisions, +the +to +ed +on +its +of +no +he +tli" +a +No. +bona +ever +minister, +the +some +or +knew +De +I +t*> +Handy +carry +stayed +der +doctor +for +His +man +thereof +ding +twice, +of +$115; +thin +Indians, +principle +dents +and +and +be +of +Heretofore +not +successfully +by +Inches, +and +the +I +federal +fell +for +became +the +will +iliary +the +gain +the +coat: +but +in +had +other +the +neck, +he +kinds +three +little +r +75..160 +tho +B +Weaver +slightly +lodges +March +our +always +the +few +had +wc +than +California. +on +most +Sheridan +the +man +who +cotit +iu +from +by +be +stone +start* +a +alimenta +re- +Parkman +fill; +or +States +on +nnd +the +r'lemont +slop +to +was +prevent +the +the +described +of +would +pain +rec- +crime +quite +a +the +properly +when +can +and +greeted +scientific +cold +passed +General +ir« +was +itself +mounting +or +State +to +the +seven +Now, +all +lighting +Inerior +and +in-breeding. +that +from +that +the +third +to +t>nrvev +John +time, +don +body +ba +This +servile +afiordnd +north +her +those +a +opposed +their +James +wife +monthly +acade- +the +the +straw +excellence. +solely +the +pedient +daily +that +a +of +in +«me +thirty +solid +years, +kuow +Miss +out +refucn +started +scribe, +and +ttie +Adams, +would +of +assuredly +of +he +could +of +returned +death. +a +on +$3; +and +greatly. +They +w’orld +of +order. +a +course +he +yet +employed, +the +compose +aplrrl +the +life +JMrs. +and +Columbia; +which +pride +conservative +three +strengthen +season. +lands, +a +Daroux, +plentiful +tional +together +can +to +of +a +at +soon +ous +see +the +new +but +present +Hall, +they +ci +heat +must +living +Jal +such +old +chises, +that +often +strange +dun +overhead +paid +in +desired +cialists, +of +principally +penny +all +10 +of +dull. +them +The +up +work +be +by +or +occupied +scribed +evening. +east­ +tiff +is +cases, +slate +delusion, +power +are +late +no +prtinacity +bor +by +note +the +it, +own +The +public +ness, +tirst +main +China +tariff +to +28; +may +573 +could +ureal +he +seizes! +of +cheap +wish, +made +Johnson's +charge +Tennessee +United +best +bondholders +they +any +to +Traffic +at +At +for +poll +the +and +customary, +fruit +the +what +turnip-beet +men +trates +the +throw +vend +refer +that +form, +which +corroshe +for +the +in +will +Am. +the +abounds +alwndoued +campaign, +glslaturcf +word* +and +there +termination +words +of +of +given +have +west +a +worked +plain +livers, +tho +of +Tattooing +he +has +er +secured +lieved +forms +aud +one +Union +shall +as +blasting; +his +was +suffered +it +and +cient +Fleece +that +temperature +KLEINSTCBEIt, +art. +afford +Democrats +to +ture +amounting +stating +day +she +of +ident +prices, +blue +divinely +National +Ev- +tirmlv +column +the +and +today +lot +is +score +e +long +were +VNo +promptly +that +this +at +the +Wilson +tn-eraon +young +a +sanctioned, +him +North +Co: +scarcely +’Fast. +mathe- +Into +It +able, +to +enjoy, +quite +Lord +to +one +jumped +statute +our +the +Lever, +entirely +phen +Amlcostia +society." +hope +the +metal +the +bal- +it, +are +Schenck, +A. +attributable +at +their +all +Ole +Scrofula +is +of +Tkoeinl +aud +imagine +met +she +A +atiil +ground +ag­ +01 +Southern +of +blind +licenses +have +its +the +smooth +are +to +level +made +planet +work +pitch +artist +manifested +Butler: +prevent, +of +upon +were +were +a +Francisoo, +fruiting +be +that +the +with +38 +tempest +by +tbe +sort +her +Cleveland +lows: +can +little +all +Caprice +Sho +ben.rIf +23d, +£27,000,000, +him +next +and +the +the +evaporated +this +in +with +and +big +same +city +it +the +his +Northern +grit +of +stockholder +Btauts +ready +his +two +exorbitant +court +children +said +bottle +of +can +rleneee, +vanced +in +1 +or +at +and +tulilose +with +bad +a +Neithei +therefore, +"a +Cincinnatia +had +pounds +Cincinnati +and +of +I +the +tho +d +giraffe; +the +very +will +are +of +5th +this +have +parade, +taking +Gary; +more +have +of +*1.1 +doing +Stock- +and +new +dition +Injure, +to +more +blouses. +Governor's +armature +great +“What +the +generation. +those +section +insuoh +of +purpose, +to +youth, +on +Lottery +front +ini +this +ye +ability +flag, +attitude +C +model. +and +their +Minnie +pastures. +After +very +big +followed +sight +waist +u +he +BEKoftheSEKoftheSEKof +to +as +of +at +Wisconsin's +met +see +part +being +of +921. +menace +number +quarter +the +mixei +breeaes +gafe +is +courage, +his +known +and +the +no +into +same +Who +the +Cochins, +life +mentioned +he +of +bars +tion, +corporations +ing +if +to +rose, +coneistinK +then, +thing +ber +of +but +dase. +for +of +failed +into +he +you +of +of +was +acknowl- +Railroad +declared +ly +On +the +thirty- +m; +the +f +my +that +mem¬ +n +of +amiss, +to +un- +by +man +nor +even +would +the +or +of +toward +rapid +Captain +that +passed +courage +E. +terative +our +and +been +an +His +Colonies +fine +—as +which +a +publlo +trou +absurd +15 +at +taking +HiimrMif +“skidoo”, +uphold +predacious +Arsenal. +. +three +enters +ordf*r +and +so +43, +gentlemen +color, +Onia +that +of +a +of +able +ta +a +in +bia +years, +value +Bidders +OF +of +being +would +had +family +will +after +The +one-half +been +thou +big +sec­ +sec- +H. +sought +shall +in +we +in +seh. +wood +our +be +when +mast +The +horses +the +a +altogether +demand +says: +was +for +ing +per +plumbers +what +fled, +girl. +been +whom +n +-^-our +in +of +Tarrant's +one +here, +government +especially +tbe +with +pleasure +and, +box +ma- +same +tbe +head +lots +witnessing +stilled +Council +the +the +so +to +tho +Belgium +with +goose +M. +provisions +col­ +their +his +the +mctea +THE +to +if +the +Scbwed. +of +talaly +Hut +heat +hint +to +Felix +]resi- +creased +the +prentice +of +ies, +as +manufacturing +thence +such +of +would +the +the +of +soil. +have +it +the +No. +City, +Smith, +of +4 +atw +that +publication +the +theso +too. +person +near +was +have +alttat^l +would +other +and +honored +Government, +is +The +scale. +same +price +from +terminus, +is +soldier +one +in +from +use +endeavoring +few +other +ut +Progress, +one +in +with +count +they +that +he +G +trict +to +breacl, +curred, +the +plated +quantity +the +by +province +the +headstones +by +factory, +this +ass'd +ment +or +lliat +belief +and +were +stone +has +Wednesday +requested +paleness +for +this +have +th +in +our +Democrats +substituting +fol- +of +hairs +miles +The +nets. +fully +army +evidence +by +fami- +spinal +home, +the +tra]) +began +Bcalp—Hair +fathers. +occupants +some +advancing +by +room, +placed +feet +he +cry +down +by +Bank +sort +unlawful +hound +sheets +¡?.'· +passed +in +Hermit, +running +before +tho +was +for +and +r +no +which +o'clock +quantity +High +constantly +ahj0e.whaal +and +then +pictnre +to +the +on +a +perhaps +telL +bride +another +collector +Charnay +of +man +on +cost +trustee's, +said +and +ton +places, +I +Devoted +met +will +includes +$218, +being +la +freely +the +the +offered +the +Christwell's +and +audiences +United +for +pledges +cab +rum, +Northerly +can +not +it +to +one +Alicia +preparing +of +south +and +kid +tii.iM. +and +did +tho +States. +at +Chas. +by +out +produce +the +was +the +to +but +H. +Cleve- +week. +struggle +point, +of +able +for +plenty +faith, +searched; +is +an +nno1?fi<%atirtn +error +tal +oi +with +the +no +dumb, +will +Court +therefore, +ed +a +be +We +the +the +ofthe +wedded +navigate +public +have +Fuller +clusion. +Lebanon +election +meet +cast +ft.) +late +have +effect +myself, +Seven +side +determined +be +The +secure +that +that +that +of +any +came +face, +Mrs. +sum +it +from +Df +to +unlawful +gl\r +fired +single +Monroe +went +that +marked +show +the +Whilo +nice +agreement +corner +un- +succession +never +ir +ing +four +east +across +taken +Jersey, +proposed +watch. +and +ui +rapid +beets +beginning +Atherton, +plants +ing +campaign +dred +screaming +rcry +number +the +and +of +herself +twenty, +product +A +a +If +Cumberland, +with +baby, +entered +accom- +The +be +thon +Dom +biles +any +upon +as +but +night +In +and +Public +but +what +interest?, +inittee +West +than +had +effect +be +If +led +as +per +the +ferred +excused +said +spring. +white, +oareless +now +all +ing +when +a +Bayou +the +to +tion +bootleggers +subjected +en, +of +themselves, +system +Who +and +a +grease +out +Accoitllng +and +this +J. +this +committee. +who +took +my +the +eat +Frances +cided +collapse +concluded +least +for +of +to +euro +prosperity, +sonous +on +of +well +become +the +to +Marcus; +of +just +published +base +by +Backed +relation +were +same—a +whoto +Entre- +December +Missouri +explosives. +when +taken +are: +experience +8pots +carried +not +clattering +to +civilized +on +heard +Is +with +] +upon +tiny +deep +counties. +(by +with +there +solemn +which +there +said +road +and +the +most +the +discussion +Washington. +at +Stone +eery, +for +parilla, +wealth, +of +without +treasuries +Nelson +quotable +tinuous. +has +in +and +[that +are +would +or +weakness +the +wishes +but +state +years +days +a +thick +of +trade, +aud +foot +of +perform +and +Pine +the +th-- +014! +says +very +was +dyspepsia. +medicated +intend +A +become +corpses +Lisa +posse. +exp* +could +but +floor, +and +still +calaboose +the +Dollars +a +Mr. +Brazil. +of +of +to +in +and +less, +President +17 +service +any +their +1G, +have +three-fouths +California, +was +Chicago +and +talk. +ifornia +the +back +system +. +truder. +ground +Don* +recruiting +diers? +and +and +maiden, +K. +Secretory. +of +chanic +press +described +the +publicans +wife +to +time, +by +majolica +question +This +is +republic. +agreed +J2.500.000 +of +with +salary, +beauty, +Mr. +and +gentle- +which +and +comprred +of +at +to +please +opportunity +The +nothing +the +is +Chriss, +ures +right +and +ifanj' +of +inthecountr +cnurct +the +banks, +no +street +this +mil- +use +of +remeniLer +you +south +after +the +so +in +the +of +I +earth, +i»1 +000 +of +for +chances +vails +thing +it +to +ratifying +Mra. +the +to +not +can +a +tremble +Mc- +the +any +sensational +Fears. +Uattened +Dunlap +north +a +cadence +hold +convenient +son +standing +that +lor +upon +Scotch +should +cured. +White, +that +some +1l1.1ra.ter +like +taken +road +the +when +the +and +sight +out +foreclosed +representation +would +statement +the +of +tor +n +for +No. +as +raising +to +necessity +knd +thtrough +between +that +Even +proven +Works +terest +a +families +that +aie +to +ten +Knight +to +diy +unconstitutional— +to +coloration, +of +I +be +made +but +assurance +lot +Miss +; +almost +and +said +day, +vn* +and +enough +do +safely +not +nation +aboard +American +for +boat +repre- +Martin +nuit.tb +the +all +made +tion. +dis¬ +is +last +of +trip, +through +had +of +of +you +brook +the +in +M +casion. +general +wheel +clerk +rich +still +kings +der. +combination +of +th< +construction +determiec +putting +many +girfs'tfronVlS +the +answered. +2 +excellent +stage, +that +that +and +"tin +same +per +be +became +not +War +upon +bo +correct +that +return +been +on +government +at +December +start +exhibiting +Monday +op, +North +the +closed +is +The +In +The +as +doing +did +shall +racy, +The +lo +know +Harmon +safd +adopted—liiHtnicting +came +cause +flows +church +go +did +a +much +injured +when +from +dissolving +been +to +takei; +transact- +The +The +woman's +and +No. +of +nortL +want +E. +ol +away! +w +Inkum; +cbaiu +ferred +profferred +radically +the +enormous +wall +at +of +was +will +to +desire +1, +dish +tbe +regu­ +It +its +Fran- +and +buted, +good +have +the +without +next +Silver +that +sick. +much +of +to +action +to +the +Machen +their +intended +care +and +broke +be +the +leased +generally +for +Loavenworth- +work +who +age +to +work +gtrl. +the +that +proper +for +erned +ness +absolute +am +mist +Is +ber, +been +and +our +swelling +Speed +without +when +road +and +ed +14 +and +A +Prosecutor +home +ican +lion +House +of +10 +present +box +sale +and +"The +for +I +robbing +But +of +they +their +and- +seasons +and +the +refreshments, +opened, +under +surface +wild +be +tho +interested +now +bunk +f +like +on +people +to- +In +the +River +Minister +were +break +these +beautiful +so. +the +of +family +S'irh +season +Shenandoah +the +ployed +{^fluently +kiln, +and +to +itB +i +I'ost +surrendered +stabbed +bearing +eratlon +judges +a +native +been +interest +preferred +of +giit'CH +nigbt +textiles, +and +a +cornmeal, +and +Kelly, +nice +due +tho +By +is +high. +and +the +was +•vas +perty +to +Is +a +police +before +lie +the +back +proceedings +in +We +1 +the +subject +100 +the +time +expected +sight, +slid +mileage +II. +nothing +nnd +Hussein +is +nnd +most +have +of +of +Portugueae +this +I +in +just +of +pastures +: +of +and +are +than +true +were +tore +the +intelligent +He +snd +are +hours +of +of +the +ttay +ever, +thrown +family +him. +tho +infirmities, +economic +would +ed +to +State, +of +classes +such +world +C. +about +champion +specials +the +Richmond, +an +sell +Montgom- +agreeable. +lander! +you +done +at +was +overy +the +Alaska +beating +and +be +course, +Jon +Leisenr'mg, +fugitive +Con- +the +the +the +the +many +he +IT +be +the +are +was +crown +and +which +factor +gentleman +and +as +havo +the +finger +on +Add +more +remove +of +10, +exhibits, +broken +are +In +of +aUd +to +the +him. +master +days, +as +the +right +a*!" +silver, +is +the +rendering +t. +it +directions +aid +emained +into +days +during +these +Mv +ruary, +Scott's +llichco +said +their +artillery +quiet +Xext +grip +noaalbl +Springs. +dilapidated +to +of +will +forays +speeches +times +those +Many +of +the +if +McPherson. +to +convinced +well +most +shall +simple, +it, +the +the +House +Paul +night +No +in +comes +kind, +cvclusivelv +been +in +Prepare' +witness +Seminoles +producing +of +thority +more +The +bet +effect +thick +a +are +to +member +to +Beginning +but +There +lected +They +brought +88 +dashed +been +as +and +reducing +in +do +slipped +ls +iii +made +pleased +had +really- +from +in +all +N +solid +considerable +assumed +matters +customed +of +o/oncrgy. +of +wheel +up +the +fighting +federal +of +during +They +on +House +this, +the +world, +reunion +to +end +Commission +had +a +corporations +where +keeps +hospital?, +¡ttt.e +in +they +pel +uflen +His +officials +the +and +to +WELLS +the +and +Then +33. +pos> +of +whom +D +"Sec. +crowd +excused +does +dies, +wave +obstinate, +Hung +of +stone, +their +proved +and +taining +of +October, +had +general +East, +back +latest +talk +Wright. +as +columns +City, +has +little +men +them, +now +fallen +to +and +had +of +sented +by +work. +^gentlemanly +W. +sugar +several +run +the +shiuy +that +1110 +will +bat­ +Glory's +put +as +(i), +The +for +are +great +description. +is +of +at +Harold +aud +of +of +went +time +in +principles +the +down +right +thick +adventures, +to +interest +able +principal +me, +38 +sonal +cf +for +I +form +which +goals +London +from +disclosed +the +stated +¬ +ion +The +right +and +ington +consisting +every +subject, +the +Marsh +these +the +ministers +has +Baptist +with +liver +west +so +interioi +some +were +until +to +of +and +of +the +cents; +Branch +re- +glory +gave +when +idly +to +that +zard +Now +The +elect +first-el*** +force +and +never +and +thing +dorm +deem +to +France, +is—and +ment +Col. +COUM +order +bad +eomea +ten +or +ayes +the +stock, +same +tegrity. +He +for +thevlllsgeof +ments. +calling +ships +six +handsome +mar- +inequality +enforced +o +the +patient’s +with +by +birds +tance +view +or +a +portion +says +no +apphrt +been +mother, +Lastly, +a +true. +higher +suatch +English +twelve +man +same +of +the +an +injury. +.t +The +tint +brought +as +had +of +or +found +not +debtors +large +sustained +ceipts—Flour, +the +San +stalk +and +and +the +to +on +account, +best +encampment +working +that' +West +and +ing +will +barefoot +clear +work +rate +at +have +course, +Plcasan +for +. +booth +Mr. +attractd +a +the +realised +B. +is +for +them +to +to +agent +the +of +to +Women +lie +those +the +er, +but +the +SI. +name +expenso: +to +imaginary, +are +compelled +Two +complaint +W +of +people +aales +M'mepect. +on +not +tlie +B +eign +Court, +$1,500,000 +The +of +sscured +commenced +all +bo +C +the +H. +race, +persons, +ham. +expectations +East +have +persistent +fit +band +west +Parrish, +to +to +and +surface, +he +cided +the +negro +Taupposethe +God. +seated +hope +their +pit. +time +the +lullIidn +Harvey +pernicious +th +share +was +a +He +could +VirginiaCloths, +county +fact +earth +started +the +of +and +can +par +you. +school +business +and +the +hour +enabling +re- +George +Out +afternoon. +which +banner +journey +sendee, +as +board +had +people +and +time +by +Joseph +to +on +history +tricks +that +have +It +and +teachers +Brazilian +except +management. +the +that +fact +in +vehicle +their +as +heat +board +will +for +accompanied +need +of +tell +assure +already +which +How +Dontiff +this +it +sion +any +that +exports +and +n +they +the +; +cotton +l.uijr +invitation +to +What +companions, +were +-- +redress +nndcrst +abroad. +same +so +it +, +in +states +it +$2,418,783 +Dairyman +horse +pool. +the +say +- +have +The +five +supposition +weaker +of +ing +10; +members +any +once +various +property +In +is +While +from +maturity +his +done. +them. +beautifying- +by +Barbara +long +and +burned, +of +usand +Hundred +Stratton.Charleston; +West +were +of +is +he +ship +to +sports +folio +ing +become +rising +to +wera +the +Sanford. +for +from +to +and +'rig +U +1S94, +are +Buford +heavily +business +Unfortunately, +matter +tho +the +the +witbout +entire +nan +be +) +a +ill +bearing +make +Is +cut +parent +people +portfolios +notify +for +tin +C +which +marine +gle +ton +Charles +With +Ind. +Three +m«l +of +a +watchers, +amount +and +maps, +traced +Havana; +fight +Rice’s +to +and +throw +air. +and +of +force +a +Dalton +of +commissioners +and +fourths +o +the +"The +When +symbol +areas +:ire +Atlantic +a +ar +Vnnfll +defend +communicated +tbe +spirit +His +of +within +the +and +night, +foreshadowed +the +was +ored +bush: +side +and +claimants +peo¬ +by +Ue +and +City, +being +which +the +cooks, +tomed +case +the +th +that +was +court +in +correspondent +The +risk +light +them, +voice +of +day +. +Mr. +men +byi +from +a +boring +resent- +The +government +th +gratulatory +words +Mr. +votes +sessions +person +saidland +crippling +Miss +North, +Coal +\ +her +Quarter +a +the +set +for +and +an +woman +quently, +remote +high +iatid +November +city +around +line, +important +such +best +on +a +which +of +short +the +that +tty +and +guarantee +the +the +wire +to +De +the +booB +when +long +mercantile, +there- +and +Govern- +forth +success +several +John +at +te +properly +P. +for +to +a +these +solid +wt.8 +said +thou- +CURTAINS +car- +his +aan\a_ +in +. +the +may +quence +hid +adverse +in +ter +so +of +now +by +domes­ +mere +he +quarter +will +corner +the +can +told +garden +almost +attributed +These +to +therton +email +hour +from +and +possible +is +thank +waist. +jewelry +habit +Patent +as +daughters, +read, +and +ançer +getting +pressure, +thought +after +doing +made, +of +repaired, +stalwart +to +ten +Turkish +and +about +ordered +but +civilized +of +dealers +has +the +mottled +was +where +the +of +your +called +other's +by +strangle +that +local +22 +country +following +were +Skowhegan, +to +affirmed +mouths +material +a +part +weopons." +so +and +the +treaties +put +of +small +themselves +due +as +course +of +made +razor +he +the +eoople +or +the +people +deparf +im +out +of +grain +a +he +foreclosed +Congress +Irish +In +and +- +and +counts. +gross +in +of +cost +in +Bdvlsed +of +very +giving +upon +panied +oppoaltlon +couple +A. +will +Georgetown +blistered +which +again +search +the +him +many +in +market +62 +small +inuit,irs. +fur +that +subject +declared +at +appearauce. +accounts +seem +against +college +the +many +to +due +covered +he +dominant +c-1 +remarkabh +gratitude +conduct +season +browu +first +v. +forupwards +his +taliations +goodly +south +but +him +Btepmother. +(14 +sayshe +the +not +country +ton +simply +dot +sured +it +1159 +state +equal +forbidden +the +a +years +broke +four +members +to +capacity +same +manufactured +on +Indian +W. +was +moai +The +was +the +the +in +was +doubted +aa +would +birds +figures +place; +be +opinions" +to +quently +in +perches +the +p. +make +slyly +Bound, +for +Hill. +evil +married +equate) +vote +life. +der +a +this +leather +gave +with +debili¬ +at +fool +went +tender +wild +a +per¬ +and +be +of +use +Three +inacouracy +Dungs, +of +than +24 +we +and +seldom +meeting, +centlv +judge +baby, +Speaker +saw +bottoms +battery, +or +have +with +upon +an +been +admit +character +selves +ence +0 +of +its +the +Book +bouseuoider +ments +sage, +eggs +of +ing +therefore +The +Europe, +his +the +Y'alc, +through +ing. +ounity +valuation +bounteous +barley +had +through +and +survey +who +road, +move +toreduce +Doctor +obedience +rounded +that +common +outside +to +Sewing +been +"for +the +business +be +exer- +the +will +thought +effort +to +him +congress +i +or +did +man +Tho +yoke +Tho +for +lost +In +; +grenadine +report +that, +cowardly +remain +the +of +gracious +Sister." +are +out +authority +living +*0 +be +Spanish +thrashing +if +witness +the +payment +parties +at +to +Ins +broke +not +of +Now, +among +here +retirement. +the +with +this +their +the +that +aadfixioK +i:d +$6,000,000 +same +commanders +trade +and +was +and +with +tho +force +with +of +with +baths +32,000, +A.exander, +stockmen +(1) +diseased, +home. +iu +estate +.a +$8 +sum +of +Again, +ages +that +keeps +rare, +the +more +the +literary +as +groped +that +Bay +life. +will +employer, +company +the +come +I'm +foregoing +Another +Quarter +the +me, +fighting +was +than +the +4maller +we +what +this +long +you +with +1; +the +23. +front +ward +Tbe +high +sale +nee +discharged +KM +ought +pills +"Sam" +to +undermethod +2 +in +ritm +difficulty +Peruxa +counted, +of +Canada +She +Elsie +breds +the +and +of +excepted +Curative +to +preventing +dwell +they +wrung +govern +session, +and +pieco +both +over +Beselej. +pounding +who +leading +that +Mrs. +a +of +would +explosion. +the +has +2JU +cent +the +school +C.; +1919, +is +the +Sheldon; +greatly. +hereby +out +as +dustry?^ +SliO. +would +at +of +of +It +runi +on +tliroe +tuning +did +hla +avenue, +of +proceedings. +The +gulf +Sec. +Sec. +of +the +in +this +the +again; +seemed +days +would +when +GOO +over +No. +Imp’ts +same +me +finger +arly +to +were +one +left +which +his +measures +should +them +Pittsburg, +the +of +upon +lie +each +and +there +to +Butter, +public +be +is +every +received +gather +positively +6ort +In +impedes +War +her +to +hostile +or +t +lie +the +tufted +fell +of +rious-minded +gave +would +is +to +true +and +than +lBIg +large, +presi +intimidation, +at +each +swamj>er. +late +pretexts +when +it +the +white +bethought +too +Bank +bender +him +disclpllno +prefer +expenses +side +I'm +steady +rank +to +reached +he +duties, +why +was +land +cut. +went +to +struggle. +about +the +I +The +that +as +the +There +and +graces +of +feed, +so +can +much +our +of +change. +The +and +A +land +chimney, +disposed +ri-oiine. +ground +according +of +and +truly +of +by +I +cream, +each +Mr. +Mr. +.ii +3. +doubt" +trade, +not +the +not +hi +total +who +tho +minister +lution +whether +bales, +North +do +professors, +while +I +draughtsman +I +to +With +or +opponent +by +ns +making +as +the +sluice- +injurious +pounds +chase +riots +levied +covering +SUte +operat- +office +form +pain +the +got +I +opinion, +LOTS +large +there +W. +interview +confidence +@ +some +sold +as +ers, +and +year +therefore, +A +therefore, +that +may +buyer +the +tracers +of +unconscious +league +reaching +Mine +triumph. +tho +Dollars, +ko. +eighty +now. +spoils +Ella +I +to +country, +air +feywfetofe +Dtunberittg +private +made. +or +of +being +Awagon +62 +or +the +weekly +stake. +The +1000, +parcel +*fect +Faulkiner +have +place +lots +accepted +abroad +given +to +memory +house. +as +that +by +we +conversing +He +lA)rd +chances +most +CASTLE +which +seceded +the +wauling +Rocke- +effect; +is +and +of +of +There +tions +Fairfield +Whether +but +she +lavish +reformation. +fashion. +Neptnne +designed, +would +«tread +their +entirely +study +nominious +tbe +ne +The +contracts +We +and +at +that +hundred +thir¬ +George +afford +shot +cannot +H. +on +Rude, +effica- +on +the +wounded +within +meat +of +nromulcrtion. +trict +Ifthis +of +and +the +visit +In +the +the +five +Cripple +Washington +his +was +offending +contradicted +prwrcutrd +White,.Bristol +Worthington, +about +Mutton, +in +of +mistakenly +word +tired +of +moneys +good +intervals +for +Oar +nearly +I +:mnd +as +Board +costs +winner, +made +from +eU'c- +or +pleasantly, +ove +from +friendliness +at +chloroform +stream, +cntlitum +twenty +Feb. +not +3d. +the +poor. +a +< +which +and +Williams' +to +of +where +At +a +If +who +for +tcnor +t +the +river +worship, +the +other +h +settlers, +listened +on +two +stopped +W. +farmer. +timber. +down, +been +forthe'purpose +a +the +stale) +money +of +13 +hath +trying +Sunday +but +Education +Win +to +the, +ing +slip­ +there +of +City +if +the +the +the +others +Hall +they +tempora- +fine +complexion, +every +Most +county +only +leadeu +as +years +improvement +on +Mecklenburg +to +German +justice +and +R. +posed +the +speck +given, +bold +list +few +brought +her—and +slement. +Valley +ma +to +door, +cannot +tho +I +conference +That +The +In +here +render +therefore +or +the +rebuked +him. +the +not +and +pamplets +that +bushels +4,000 +some +or +wtr.t +which +be +no +it +prepared +but +ail +but +or +a +recorded +after +country +Jobs +left +object +furnishing +the +the +a +of +latter +undecked +trip. +broad +arduous +right« +reliability +the +Shoulders +i! +letter, +deaire +at +A +composed +the +of +her +the +than +mechanical +to +by +followed +aad +On +were +he +given +sociation. +l»ody. +the +U +to +from +ly +air +the +should +Decatur, +Susquehanna +Finally, +the +same +our +at +of +prudence +amusement +the +on +Improvement +called +it +deed +led +percentage +ly +has +on +first +if +Of +: +; +by +vote +wbal +installments +(8) +of +West +eqail +the +in. +Previous +the +the +laud +few +El +dinary +tenor +whom +who +a +watch +the +pres- +were +myself +of +and +to +business +and +mutual +who +then +act +care +belong +her +gono. +and +other +5 +be +of +ed +Captain, +per- +cos¬ +waited +conscience. +lot +acts." +the +bidder +years +llburisliiug +May +well +ling +accompanied +or +a +and +5, +countries +cast +like +hip +political +in­ +tbeoffice +of +a +couldn't +shone +rendered +by +by +rope +what +good +world +time +J. +shows +day. +day. +fine +tbe +the +doubt, +shall +Haynesville, +ordnance, +selecting +of +didn’t +place +like +corn +or +stride +a +and +until +lost +with +In +to +Mr. +The +the +floor: +large +ed. +ruler +heaps +even +Frano +proven +in +and +these +the +fire +before +ship +corresnondent +will +cham¬ +her +waiting +said +enough +that +tlience +or +worst +it +is +first +on. +tor +which +with +Great +ior +o'clock +paper +trust +sweet +his +thin +position +mother's +traveling +south +years +llawker +lng +11, +ment +tbe +bank +to +in +the +sold +people +liud +or +anger. +where +per +and +laid +12. +and +The +district. +voters, +HILBERT, +day +to +tiu.e +a +but +the +If +one +relief +necessary +bad +background +keeping. +colors +which +the +of +office +of +glooming +assessment +the +unjust +Situated +bequest, +has +the +tho +recitation. +discount +rules +to +than +is +these +planation +taking +take +who +and +than +knowing +sub +mas +the +patches +brow; +in +now +per +and +place +In +a +Norton, +Matanxasi +and +social +matter, +clew +who +to +ty +received +decision +ideas +the +favor +free +side +fair +be +to +the +This +to +a +We +Agency, +balloon +when +to +Many +at +Remarkable +missing +natured +kmen +Inhabit +very +whether +with +pump +come. +resources +stead +would +prior +to +long +grass +that +introduced +also +Tupper +old +its +call +eight +India, +daily +between +than +going +wider +Texas +(1-25,(3.30 +measure +on +to +could +date +the +Great +Apple, +they +him, +put +River, +route, +have +Rhind, +it +Cheese +a +Paris +catastrophe +the +act +moro +looked +of +Colaon. +by +We +are +salt +Sevfhth +the +the +to +of +forces +where +whether +much +to +agaia +sera +hut +a +compensation, +S +acre +a +inoroasc +the +thu +turn +oppose +the +which +recognized +ing +or- +la +love +died +aa +to +1907, +The +the +; +leave +been +may +of +up +court +does +to +what- +pany +eral +88, +remains +of +Oil +between +He +of +MM +a +21 +dered +man +northeast +the +$400 +of +ly +ii +come +and +home +ef +of +suc +we +two +in +a +made +Consumerp +by +, +promise +This +so +District, +sorts +much +"Not +to +ambitious +combination +sentiment +and +and. +in +them +of +of +complainants’ +that +in +regarded +Of +necessary +buy +<"v.r +to +H. +Tho +day's +other +ex +to +the +oats +making +Wiudna-gl- +ho +shown +learning +of +him +was +sc +the +of +water +recuperate. +without +they +quotations, +administered +0. +and +plat­ +in +pass +the +used +Evanson, +1 +a +that +the +thought +this +of +often +the +by +the +off +cou +to +others +of +eth +Joseph +enabl- +of +followed +question +here +All +admitted +aud +carried. +- +d&funite +so +Macallister +received +bath +Lyon, +in +man +mean +levelof +I +herein +outfield +molding +to +estate, +lowers +details, +were +it +of +ing +into +to +Adrlaen +wage +tin» +regulate +Helen, +followed +messenger +leaping +this. +tlO +Ilmatillas +under +means +on +ket +big +ed +through +headache +purchase, +percentages +some +us +come +present +"For +biewti +English +age, +as +California +'ii" +which +dated +the +Finally +rejected +gen +a +most +cure-all +big +for +flying +plants +are +up +the +and +edging +and +Ciil +g +only +which +lazily +nous +neon. +the +length +The +and +aoo,- +that +in +I +emotions +than +proposed +who +Hie +this-hence +France +real +who +in +(10), +of +does +has +affidavit +unlawful +with +jusqu'au +out +hill +89%: +cornea +als.. +gain +excur- +thereafter, +put +205 +with +dences +in +worthless +which +many +public +to +Anna +Is +by +regarding +meeting. +never +than +be +thereon +week +you +earth, +nothings, +"Thcro +theory +in +de +without +dog +which +attempt +of +the +light. +wherein +third +praise. +luri +Its +be +Creek +necessary. +'.hey +and +cruelty +shows +they +mencement +crime, +judgaient, +temporary +premises, +that +tree, +men. +less +considered; +so +Wiley +its +is +on +needs +statutes +in +would +or. +very +on +di- +to +dekver +it +of +dependency +you +deception +body +and +contribution +took +ileial +Mr. +posed. +diction +for +be +and +of +future +dcg. +hail +and +he +Do +suspect +patriotic +the +Douglas' +away +contemplates +at +Nor +the +anth- +need +health +n*al +at +umbrella +which +crts +dominion +ns +the +house +senior +Black +mortgage, +a +thirty +then +w +whonco +legislation +of +was +five +pays +lodgiDg- +this +of +joying +hunted, +s< +the +mand +Robert +pastures +that, +and +party +unconouernblo +hr.v +imposed +waate +second +ter +ing +nation.it +setting +writes +capable +are +deliver +legend +that +off +A. +is +will +to +nary +of +er +bond +the +not +tail, +ing. +Avenue +a +a +is +aggregate +information +Including +and +A +the +that +face. +such +Croup +citisenshli. +Colson +does +I +in +he +the +accounts +boys +and +Brown, +eottoi +pleased +The +iiH +a +July +no +of +to +worth +of +May +8hfsec29.tp248,r18w.. +upplv +thing +at +of +a +cTu- +may +and +started. +fruit +into +profit +strikes. +Reilly; +330 +raised +used +setting +specially +Dankl +have +and +mention +The +centf5 +g, +coughs, +thr +of +bec +would +said +54UC. +and +question, +of +or +hy +they +down +diately +is +fair +ink +some +voir. +for +going +of +Guardian +saved +mentous +181, +"On +framing +abolition +at +and +tl +at +wide +on +States +thin +voice +Is +killing +Free +and +repeats +claims +to +i» +fee +to +had +I +the +shall +former +be +second +Ac., +disreputable +On +them +of +tlmo +faith +number +animal +voleamc +order +James +Company +and +life +is +bar­ +miles +at +utterly +Advant- +recommendation +eyes, +call +of +his +destructive +evidence +in +terest +lien +*lu +after +By +trom +state +under +it +the +will +Railroad—Shaw, +to +was +of +for +coverers. +! +8; +city +ifour +by +ample +several +all +down. +by +bia +hope +emblem, +can +services +fixed +are +time +this +home +enable +Lovell; +any +to +society +is +thousand +it +or +sured +true +a +flBhormon's +broke +quency +twelve +the +before +the +lost. +lounge +the +pro- +the +to +he +but +steel +han +almost +to +but +Hundred +and +his +?< +to +the +from +You +that +pot +Enreka +of +of +orlfitr +J. +where +second +(or +Present +ia +in +have +furnished +it +sug- +Friibds +trains +from +in +of +suffer +em- +ferred +As +wharves +as +his +Caj-s +claim +francs. +the +a +size +takes +ids +seminary +rum, +home +reserving +voters, +American +to +there +voyage. +McVey, +1,00 +of +their +and +Com- +tillcrv, +far +of +dis- +supervlalou, +fill +America, +the +Piecca's +demned +is +Hannah +in +as +cultural +this +fumbled +bowls. +7lh, +be +and +his +three +In +make +and +erous +am +iaKcs +money +the +became +many +tho +to +chests +hedue +sizes +and +Sec. +would +capitalists, +in +for +that +of +put +Beginning +stand +such +thing +to +to +hear +ui. +them +item' +and +just +regular +items +Clifton +boats +forth +upon +law, +courses +tills +slips +serve. +condition +made +there +of +her +stop +well +the +sccne +gave +to +scsslons +warning +days +the +Freda +i +Countryman +than +me +disease +down +must +shown +lights +one +some- +attributable +and +she +are +forth +maintained +nec- +women +this +anchors +Key +the +daughter +his +proof +bequests +tion +pour +ond +flgure, +over +and +istence +plilnrltf +parts +before +trend +the +shows +two-horse +llttlr +the +who +Si +cross +of +a +their +and +ranged +employment, +shall +combined +of +so +how +madly +who +an +stood +to +Johnsbury, +consumpion +railroad +revolutionary +back +going +he +of +and +to +m +dence +speak, +canteen +opchivvt +higher +graphic +a +the +these +Point +amined +and +of +be +gave +the +Her +be +from +heaver +iron +residents; +pay +try +patriotically +of +slight +by +of +chine, +plant +hla +after +sat +under +and +which +refreshing; +$32,000 +seems +myself +you +the +well +and +culty +living +Republic, +old +the +place. +the +order +little +object. +ex¬ +of +his +lady +bec +reputation +to +per +all +love. +Cook +it +grave, +not +ut +created +thence +ore +sudden +Jahnke, +ficers. +men, +shall +Boston +promise +49. +premises +a +become +swoopin.' +worthy +story +It +oat +stride, +Why +been +special +on +she +during +far +gaged +was +much +being +council +mild +closiugat +soon +power +The +tonics +black. +formerly +for +mon,” +instruments, +finer +power +put +to +from +contracts +sensational +tunda +But +omposed +as +devoted +most +re-elect- +the +and +the +are +who +can +and +ever, +again. +They +censes +dered +Bluffs, +Do +of +and +1 +he +which +endless +(Miss +already +have +the +roette +set +"Iockctts"toDrury's +1910. +men +emperor +is +struck +Neuralgia, +the +ard, +region, +the +50 +during +token +troops +are +thaa +their +the +called +the +ana +in +for +et +taken +statement. +three +and +in +and +talent +inent +which +share, +the +no +crews +romance +Gen. +never +yer +oo +that +labor. +mention +and +technically +hun¬ +to +trip. +it +they +device +the +. +each +id +eleven, +truck +in +as +trucks +keep +the- +point +that +towit: +go +expiration +times, +surprising +of +oil +after +air. +error, +opin­ +to +Composed +be +Deacon +ret.rued +it +tional +sent +to +of +Company +punish +earth- +degreea +at +rumbling +series. +any +thai +twenty-grain +intention +there +people +three +a +the +the +the +entirely +but +school +them +it +to +25x120, +a +more +the +Wheat +and +taohie +Book +young +are +too +pe'iuliar +until +produco +tin +a +stamp +hid +black +officer, +plan +It +be +Leadville. +tne +cattle +sale +to +he +England +obtain +are +whlob +dren's +there +midst. +to +now +they +taps +January +13, +learn +our +would +ctARSAPAKII.LA, +to +te. +at +(laiming +bidder +the +Is +liesiJj +behind. +that +to +II +of +an +told +Mrs. +iu +per +Mr. +tomb +way +bly, +tlie +in +sev- +wool; +top +Cloreland +work, +inally +the +This +no +doc- +lie +by +mortification +and +and +your +feet +of, +in +the +can +"that +Is +plant +make +1 +till +out +as +qualified. +weather +conviction +-In +hold +most +at +decrease +any +jo +of +an +Charlie +to +arms +of +on +nearly +pearance +Richmond +most +.· +poem. +Rardon, +river +tho +for +the +I +Bismarck +formant, +gle +husband: +full +plan +for +tubercles +up +because +F. +attack +4 +Mulr, +Neptune +are +place +his +each +of +the +and +thc +of +to +a +Mayor +dividing +notbing +stood +us +pages +have +the +Li +when +Bagulo, +that +friend +Of +were +thought +duction +rep­ +four +beds. +French +tice +follow +in +car +to +was +of +beamed +the +the +11. +couM +hint +must +and +fitness +room." +that +and +which, +notice +of +nuetoms +aggerations, +But +dologntes +that +of +1.000, +the +that +day's +were +of +kept +Larue +would +center +Boxtown +medicines +or +raised +had +local +battle +leaves +it +w +this +including +cont +ild +concludes +increasing +trol +removing +pared +hundred +Mr. +tellectual +want +against +fice +for +but +Saul +after +trans]iortatinn +chains +tbua +is +ho +propor- +widely +Loughery +there +criticisms. +leading +over +ine +of +aud +of +their +interested +will +a +lor +nt +following +arguments, +Eimers, +the +paraaada +can +war-like +principal +Dealer +top +The +narrowed +feared, +portion +Church, +foot +his +Pa- +composition +Iill +pa¬ +tii.n +rock +she +serves +hand +day, +conduct +said +enter +those +she +conventional +identilled +daya +in +estry, +some +Diablo +parcel +out +on +restoration +be +much +true +her +of +soil, +and +rivers +will +rosebud +sentiment +tho +fury; +his +would +first +legally +tha. +part +It +as +Some +will +Cloths, +tho +It +ness +composer +severe +for +;his +tha +guests +booty +between +redress +fore, +clear +nah +match; +powerful +to +manufacturers +a +to +No +cool +ought +this +James +length +of +both +349, +of +where +the +spent +will +ils +(now +more +system +agalnat +and +IiithiBNoloneertwoolthelades,sonicofthe +bar +oiDupont, +chea", +Ferrell +of +whom +the +the +sun? +hastening +of +and +director +Lyacbburg +for +None +excursion +great +nouncement +It +entire +but +aapreteading, +less +sad +and +til +most +that +pleasing +the +nt +was +from +Holmes, +laid +drop +prominent +swered +mill +j(iuni;il8 +has +that +alvitig +immediate +Im¬ +compelled +that +have +more +A +gets +of +that +sore, +said +that +for +of +turned +principal +Sec. +oft +Mr. +learnthe +of +they +enOdrsB +In +thus +and +aud +The +half +there +righteous +all +In- +to +is +no +not +all +throwing +for +to +of +stations +of +allegations +carried +about +munity, +are +more +a +aud +9y»ra,12c; +is +as +the +Fellow, +furth-.r +equal +the +found +fit +days. +'interest +trick +substantial, +the +that +the +had +Georgia +the +Bill +better. +POLLS +down. +true +the +northern +did +commission +tions +of +fur +25-ce- +so. +cause +uuiortunate +45, +said +her +the +advocate +the +upon +. +FrasMB +weeds +violating +the +reward. +chapters +land +fu¬ +are +committee +was +In +ing +cents. +feet; +precipice +love +of +eftinst +which +maintained +(three +be +democrats +flowers, +is +men +ers +li +cent, +$1,800, +in +in +to +of +Bluff. +havo +them +an«! +hymns +from +with +lie +to +N..t +of +Kas- +Early +strated +hearses +the +Jesse +alone +frdrii +re- +mile +of +an +was +them +. +taxation +after +Beekatead +is +errand, +result +silver +plete +ΐΐ +of +tainly +with +fully +Matt. +toward +comrade +are +the +of +over +a +come +necessary +fund +and +"sane" +and +power +attended +Warner +but +but +and +floors, +spend +Ho +who +but +spurs +and +thei +all +by +finally +when +only +open, +cannot +Md +severe. +his +so +ing +chute +pipes +girl's +| +Eai +that +exploited +sprung +never­ +Captoin +daring +boy, +prisoners +early +; +also +Is +the +that +the +of +house +of +na- +after +piuogiug +this +sand +arrobe. +and +other +a +in +The +migration +for +always +20 +be +she +because +when +manure +an +or +my +and +upon +At +several +more +her. +earuoMno-s +as +for +; +fail +and +in +other +touched, +delivered +British +hfcn +the +year +yoang +Dixon +from +even +the +abolishing +situated +time +were +of +North +icient +picnic +and +non +of +for +W. +puzzle +of +Joslyn, +zens +you +hud +Neb.. +the +of +owing +There +thqJMferajUif +That +$3.990.457. +now +they +tide +aiding +The +land +cannot +escapo +make +together +be +clothes +that +duty, +graveyard +former, +sea +their +the +to +soon +nnpaid. +Beighton +lost +that +Clarnt, +-good +steady. +a +concentrated +is +rolled +whether +by +twenty +The +cards, +motion +he +sections +most +other +old +two +Clerk +Francli; +eomuilttee +The +the +o'.ty +was +of +who +Hungary. +recommended +for +alt +Lossee +und +character +term +whose +or +.w. +crash, +o +mentioned +Colonel +of +post +poltroon, +Is +try +in +few +it +I +Missouri +to +sounds +of +The +power +of +doubt +abiding +Committee, +the +1 +aid +and +says: +of +mothers +and +chnmbtays, +other +in +demands +The +istration +to +the +milea +whether +beyond +add +Vial +Fran- +goxerninent +for +their +report +m +Aurora +of +them. +for +attracted +Washington +I +he +- +the +vantage. +right +they +even +Baltimore. +and +of +in +middle +at +A +trust, +to +construction +whence +The +spinds +the +pamphlets +Board +of +R. +course +have +und +on +there +the +prettv +oldest +lien +even +grown +Noilth +tore +him, +to +isue +The +very +First +II. +lie. +pearl-fisher's +ing +was +through +ferent +and +by +place +Banak +even +wire +proceedings +the +to +acre +Honrs. +to +rosene +la +and +wet +interchange +professor +a +in +banks +fourth +why +will +pean +settled +22J +absolute +market +study +the +with +Hivertson, +mentioned. +another +o +packet +in +is +prisoners, +army +oaptain +fol- +they +Oot/arniaaal, +city +children, +The +as +another +fitting +one +at +as +mil +it +sufficient +her +beginning +Mourning +the +Los +is +array +MrJ +aad +boy +ot +this +?cer. +West, +collecting +direct +education +final +convinced +a +of +lie +evening. +them +in +distilled +antagonized +may +Republicaua +bath +turn +periods +into +north +tract +suffocation +occupancy +me, +by +slaughter +"I +contrary, +that +shippin +geous +uus +of +in +rids +are +five +the +The +counseled +daily +A'ansas, +a +the +on +very +country +Bad +are +and +publicly +through +as +.42 +Into +bidder +*tis +there- +Edward +pass. +manner, +a +have +from +of +to +N +now +and +primary +by +campaign +felt +a +N. +switch, +are +would +gain +in +State +exteud +of +become +get +people +Hpasms, +swam +much +Many +or +must, +ful +iron +been +from +importance +inquired +The +; +he +it +torpedoes +the +extreme +tbe +him +I +hardly +itself. +. +by +the +I). +tunuel +A +thai +it +of +way +during +bear +not +described +appealed +received +all +few +or +by +tin +the +when +ot +el +the +whnM +mirror. +contrived, +be +the +him +will +miles +of +exposing +employ- +for +ored +Dunn +res +deed +that +voice, +is +and +its +Unies +Itlanelnirdville +the +grades. +and, +in +located +young +back +was +Hamburg +in +as +The +a +very +value +but +Gen. +Rev. +be +aiaty +of +any +olty +ami +that +In +far +had +Sadducees +i +must +equally +cameras +in +against +roof +thirty +the +that +establish +baa +impress +the +teanng +the +points +destructive +seeking +was +to +of +1, +double +h +the +the +ples +Her +on +Robinson, +undid +to +charter +his +prac¬ +certificate +and +should +to +flag +have +whether +such +Dakota, +This +for +Mi¬ +and +years +and +wholesome +and +Has +who +resisting +sixty +and +would +diate +thereof, +thirty. +a +no +for +not +12@17c: +and +The +alight +draws +the +thorough +a +tescme, +then, +feet +be +of +worked +sect +used +handwriting +Johnson, +and +around. +Any +Henry +influence +the +which +ced +pens +Laudanum. +the +In +was +nor +constructed, +the +legacies +Dr. +put +- +ing +that +a +next +gathered +Auatin +passed +ven +at +the +having +the +those +the +Ray +enough +Cabinet +this +havo +the +this +trot +time +6ailed +of +days; +seurclied +the +before +From +the +government +that +cut, +by +file +one +P. +H +wo- +years +year.- +such +officer +f.r +good +the +the +should +draped +England +olothing +nation +themselves, +and +hath, +City. +feel +which +unconstitutional +brass +we +anything +Railway +day +produce +Mr. +to +over +this +and +Why +him +list +notiosd +on +all +placed, +Gov. +sleep +to +none. +and +than +spreading +Souria +circula- +i., +bills +chapel. +lor +club +Ann* +necessary +the +be +contend +with +preservation +died +overcrowded +"Yes" +but +and' +of +him +the +eminent. +and +could +any +answer +to +When +home +to +lllairand +levy +presence +with +leaving +last +and +7, +in +the +for +iu +severe, +cur +broken +carrvins +and +to +which +Miss +signing +in +drove +left +n +to +made +the +There +a +bad +Burke. +it +no +an +No. +the +which +nii.l +for +fur- +the +indeed +in +bone +beneath +He +is +of +to +4° +said +Ing +in +1 +Peking, +formed, +brief +year +558,000,000 +tance +to +boy. +train +has +of +near +see +of +affairs +cur +force +of +been +jvenlug +near +the +ready +the +welected +Into +hostilities. +wainscot.ing, +ledge +doing +in +who +a +In +is +or +assured +tires +Am- +of +headaches +time. +to +state +belongs +to +public +United +Confederate +then +get +the +reverse. +with +of +when +Injurv. +rest +government +iA +12 +here!" +'went +by +direct +formerly +broken +the +i +its +Irish +this +Reference +of +City; +Antwerp +more. +the +the +butter, +tho +soldier- +use +1,400 +five +After +would +Brenniman, +as +sp~ecimen +mother, +if +vlgoroua +the +sold +merely +Poplnr +meirces +Storrs +only +State +excellent +blind +the +opinion +row +not +ter +Commissioners +our +£5. +has +anxiety +confident +aud +was +success +person +log +of +sums +spear +minister +a'took +side +agencies, +the +of +number +of +president, +0, +per­ +shall +the +Hood +began. +more +cided +young +of +and +wealth +the +Fifield, +longer +of +house, +feet +Thev +teu +appears +in +tected +Bond +other +exci'icg +with +administration +proposal, +me +Being +which +matters, +rature +situated +their +usual +majoraity +other +instru- +and +regiment +your +ef +I +of +crying +fashion +ago, +estimate +him. +its +has +its +at +Judge +upon +City +have +instruction* +and +sccounl +partl) +Β +such +ii +the +Miss +filled +furnish +by +hands, +two +water +of +open +her +sent +ways +great +employment +run +The +batteries +system +which +rubber +The +this +taken +dragged +tearlne +but +it +neross +never +party +gloriously +of +K. +beingt +Relmer +of +active +of +internally +tw.ee +described +in +mill +within +expressed +tenement +was +neceaaarlly +expenses, +rule, +leave +bas +worthless +other +of +prosecuted +of +burr +weapons, +posited +and +to +be +the +We +feet +used, +speak +to +in +Interest; +was +physicians, +Court +is. +city +n +them +corporations +and +Illinois; +not +it +bargained +the +r'jiht +the +nation's +one +: +Balti- +monastery +and +after +for +and +the +of +was +to +have +tried +year +Rear +Federal +4. +us.«ve +Bug*; +regrjt +little +mechanic +rich +to +embraced. +escape +Percales, +his +eternal +for +in +would +tho +felt +its +of +horse, +aud +Mpstati +as +the +our +than +parts +party +the +which +high +enough +niOcent +in +he +scalp. +Mr, +to +that +bill, +paper; +air +could +discharge +a +Stone +bond., +Victoria, +with +the +dred +case +| +that +present +I +the +might +that +crippled +confront +had +the +have +ancient, +as +wife +same +president +a +ore. +dients +over +ol +important +of +cattle +cent +officers, +der, +he +That +8g +Board +to +li +and +without +Into +and +to +time. +place +in +1 +of +to +no +before +that +Whitney +Colorado +five +in +became +and +sulslivision +D. +would +traders +from +ship +assistant +Hue +gives +half +offices +one +week +the +relative +the +no +plaintiff +of +their +tract +illegally +it +of +the +Cod +sit- +of +September +that +believe +on +the +Cures," +Consolidated +and +outside +eight +kind +for +some +Main +with +of +ho +this +brought +these +a3 +grounds +Huffman, +stand +to +in +a- +apparent +to +becoming +had +boy +close +over +say +ratio +very +8upern»e»t +stead +Rockland, +can +now +said +interests +that +estimates +as +a +perfect +me +moment +and +ducted +coming +game +, +have +girl, +take +returned +shown +price +special +sands, +with +Ger­ +Point, +and +and +principles +equip­ +the +then +badin +and +ish +for +safer +days +in +signal +Grand +is +foregoing +your +on +the +in +disposal. +year, +straightout +and +the +to +boy’s. +said +west +account, +any +his +thea- +of +W +up +car- +also +boy +up +S +half +counties, +proposals +ad +McM^ian +moved +a +know +Babcock +up +frightful +of +sins; +to +to +V +!•■*• +find +rats. +please, +la +with +bank, +it +tility, +of +the +event +a +trous +in +reputable +. +in +nuisance +I +a +paid +(Wii. +and +prised +king +venue +hope +Eu- +on +parlor +lady +ly +to +of +each +in +he +Late +M +there +head +thence +aro +her +aa +through +with +Industry; +quality +would-' +feed +ayenue +by +tianizing +the +was +so +legislation +negotiation, +at +slave +Mr. +court +to +all +rounding +me +British +Jarvis, +i'nmi +coneiel-j +to +lofty +of +kurrry +necessary +boxrud +tittinft.ro +the +wait +Missouri, +of +tradesman +limb +Ma- +is +invention +one +sre +when'of +period +thy +warmed, +some +cannot +of +securities +the +draw +the +exchianges +at +State. +the +if +and +had +assuredly +Her +as +weight +when +worked +rday +the +laboring +locks +bail +are +to +re-1 +8 +but +Mayor, +to +enemy +the +probably +437.08 +note +have +Mon- +few +Boyd, +names, +firry +however, +at +St. +Clerk +save +the +Committee.It +language +THS +roundland +real +Dudley +of +ies +been +Charles +use +State +soup +a +scattered +to +Sec. +with +is +weight +they +a +dow +r««tricUon» +to +now +¡J-l +in +the +the +hysterics +showed +through +in +nor +The +tively +have +Phelps, +promote +away +bis +to +claims +A. +That +enough +' +years +good +doubts, +would +a +¦ouiity +and +few +honeysuckle. +little +a +whear. +River, +without +stories +impossible, +determined +that +the +one +Dithmar +sion +up +defense +My +jangled +oue-sixlh +choice +matters +completing +work, +as +and +dif- +to +application +cost +It* +but +Many +were +play +tho +render +many +selection, +i +have +pen +occasion +the +township +half +from +fusing +girls +doubt +Under +with +to +school +breeders +bad +ish +stated +of +rious +October +ho +one +Rev- +the +was +per +for +Bu- +ho +mortgages +as +sev.-nty +one +possibly +can +have +shade +withal, +intervention, +is +ception +mark' +bail +poatte +the +berry +first +President +to +private +tbem +- +and +! +it +to +appearance +the +then +money +In +were +system +marked +T +care +lot.. +the +rubbing, +to +apt +the +these +a +sharpens +the +Mr. +newspaper +had +get +that +Creek. +been +the +The +who +Somehow +trian +kind +carries +said +preserved +ol' +summer +morning, +thence +have +the +and +by +creditors +the +Mrs. +Besides +fought +near +ple +west +C +civilisation +Hlease +manimous +the +value, +then +Besides +still +against +that +the +been +of +agricultural +them +the +slly +office +of +woman +to +name +C. +went +Laurens +I +Mr +Erlanger +answered +carefully +this +remaining +the +banish +or +of +generally +answer +and +a +diminish, +his +yield. +Norfolk, +agreement. +con +be +refers +and +Personally: +l'nitedStatin, +have +In +and +civic +the +for +owners +him +must +beautiful +Colonel +Illinois +me.isure +J. +latter +of +Gilhooley +say +farmers, +beaten +: +to +fuss +New +impersonating +are +of +exact +does +ment, +of +Hyde, +gives +mouth. +d +cleaning +surface +and +command +ter +34 +of +the +Mr. +of +The +him +again!" +210 +it +or +style +at +man +strength +tha +precedes +the +In +MARVELLOUS +upon +was +well +which +Tue +coals +thorn +I +there +iu +afternoon, +the +injury, +gradients +IHOO +is +trues +wl1 +Thanksgiv-; +was +alirainst +The +the +Nunn, +Several +trolley +In +and +regulations +road, +by +served +try +night +before +that +curlug +my +He +Healy +concerned, +Legislature, +THE +to +disease +corn. +under +St. +muzzle, +he +for +Officer—Clackamas +in +rail +are +be +here +men +morning +that +the +and +the +county +over +strong +of +ely +no +Chief +be +utterly +his +chains +ing +work, +will +i +a +cattle +the +prepared +rIoBk +it, +you, +ance, +tiie +vahiu +long, +their +it. +section +- +necessary +on. +that +fine +methods +the +as +same +but +tery +act +the +Is +lsS, +a. +the +allow +country, +and +is +self +divorce +now. +M +was +Brassy, +State +ference +Bec. +last +when +of +that +Al- +be. +tbey +Grant +and +the +:i +not +Tbe +troiu +increased +is +But +of +Grand +roads +The +ing, +mass +no +eny +on +known +was +set +stand +a +dose +the +or +his +it +the +tho +in +er +mansion +all +deg. +aad +Mead +summit +pay +life-power, +as +prayer. +anything—he +at +men +of +makers +going +June. +rise +lie +tax, +aaal, +when +Mrs. +faith +value +a +and +nc? +were +by +tap- +cal +charge +such,' +her +sold +straw- +you +the +Persian +and +dismissed +Ruth +We +to +his +figure, +chair +well +a +agency +to +drown +ofany +"all's +stirring +forgotten: +Caffee—Bio +large +in +glass +Madison +and +as +lien +being +it +of +tone. +ag-iinst +bo +that +and +sale +ing +the +knew +jail +thing +failed +all +soon, +great +properties +ing +find +largo +be +! +subsequently +fondly +arc +tho +is +situate +and +one +and +volume +I +Maui, +McLellan +or +substances, +a +petition +power +the +uu +for +to +the +take +ruts +tion +American +described +bubble +a +unless +well +tain +her +be +but +assurance +extend +cousign +the +left, +mers +by +fictitious +began +by +upon +black +ot +committee +houses. +wages +Indians +man +Luciwla +siege +a +storea. +of +feet +5,052 +Department +place +case +than +to +Irrigation +tation +ti +enraa +to +brother, +and +you +measuring +that +wisely +Brigh- +these +he +have +P. +lieve +are +Corn—receipts +represent. +and +the +submission +started +ditched +virtue +business +of +any +let +Teh +of +<•- +order +a +family +law +pianks +in +labor +and +lieve +will +Landgraff: +consider +precinct +The +paper, +yer +to +gone +city +time. +data. +with +pro¬ +27, +special +in +the +to +Wearing +to +it +h> +While +few +months +the +of +sale, +the +endeared +has +Clay +have +this +direct +scholars +di« +Dakota, +carried +in +ness +at +OOO +Somehow +per +Heal +State +making +gave +sub +anhood +to +reai +the +down +am +would +and +point +in +3 +pros +pay. +morning +B. +rich, +seem +atid +based +party +and +d. +on +late, +seeder: +abandoned +§oine +Indians. +friends, +I +they +of +copstitutlo'iul +Campbell. +to +of +with +marked +I +coinage +day +for +not +them +sum +free +shall +in +cord +long +for +which +bard +these +nay +it +ers, +aie +an +as +shows +t +which +must +may +Hill. +nicat, +line +own +a +hi +refus- +as +was +»been +than +give +her +of +and +wife, +three +system +votes, +venue, +which +spot; +spout- +mins, +mat* +man +others, +He +Bianager. +mils +advocates +mere) +ad +RtruaucAv, +dis­ +itbe +and +hot +consumers, +and +dinner +classes, +dawn +human +com +f +Prealdent +consist +asked +.aid +last +will +try +spear. +city +Peet's +to +all +homeseekers +distance +office +the +in +this +inadequate +before +an +power +Half +lor +shake +service +a +now +wife, +har +appeal +or +recovered +re- +child +to +are +be +the +we +keener +of +such +will +moru +market +in +but +were +gasped, +employed +the +from +in +and +Tbi +sub- +and +hia +mark +us +crew +male +be +foundations +unless +icated +roxide +of +father +re +1, +said +testimony +ears +ago. +persons +flower +na­ +ir, +at +the +on +to +as +for +employment +onion +of +need +and +will +M. +unanimous +them +average +family, +M +Ruth. +of +Frank +only +they +aod +pay +work +of +of +thought +the +pended, +notice +size, +of +often +office +recliuiug +Seventy +hburs, +the +ailegiineetotbrai, +a +police. +eial +preset)t +Smith, +emjloyed. +- +act. +ofthe +doctors +speech, +into +worked +transportation +over +and +ment +a +ceen +one +another +Parker: +jurors, +Nov. +fall +other +will +said +tyj +they +of +acid +people +the +companies +but +Denning +Court; +Wbetberthonew +temperate— +corner +at +corner +secured +when +in +commentator, +t +districts +Marshal +be +af­ +the +rebellion. +do +I +At +sick +the +or +of +do +window +portion +to +of +has +the +Edwin +per +before +which +and +county +pension +of +considered +deterrent +been +to +pending +When +in +tidy +a +No. +they +found +people +a +declares +such +or +asatsÇla +says +whether +makers +improvised +lti*er. +tion. +to +Amer- +The +in­ +of +will +province +llbeivilly +being +are +IMaald +rated +of +Iniquity +accomplish +in +route +into +from +Village, +the +made +of +or­ +labor +bo +a +a +the +that +It +using +trouble +"The +cific, +at +are. +optimism +River +Ogger +swe. +I +will +Cuming +loft, +scene +know +are +varmint +State +'to +on +Ing +lovelier +not +Beef +dress +the +might +interment. +the +growers +not +that +a +to +another +whole +mighty +snapped +la +presumed, +the +actual +any +first +Brat +The +Secretary +meditation +his +river. +liritish +ists +charters +bear +ii +on +the +a +A'ldy +left +form +her +liev +and +"A +miser- +older +the +ot +soil; +publican +and +leged, +and +outfit +24: +total +westerly +Tho +though +credit +brick, +Irish +my +is +danger +depends +all +for +the +to +free +the +Everett, +edy, +not +of +or +The +jsink +whitethorn +duty +obvious +committed +prospered +the +peaenmene +public +Ho +pilots, +by +the +transparent +care +E. +Adams +which +in +while +managers +a +Princeville +husband." +and +in +day +governmental +tho +first +present +composition +McGill, +masquerade +tance +quick +its +the +thrown +W +C. +would +Riddick. +left +than +then +knew +board +fire +bottle +what +her +of +ac­ +National +h- +rapid +by +for +Veo +rule +in +delega- +was +and +had +feel +Utleno*; +t>f +to +lie +quarter +the +water +panegyrics +to +of +birth, +at +bow +in +and +copies +fact +where +90c, +556; +He +Holme* +given +Sachem +support +and +university +that +Ah! +ways +the +Moody. +the +ville7 +the +above +then +been +Senate +and +Its +It +moved +of +fast +be +cry: +we +It +of +schs +and +who +In +Thla +fact +by +Walhalla +as +obtain +feeding +Mr. +fellow +august +out +reading +can +the +of +"At +adoption +and +Lpiscopal +of +on +of +and +for +lost +Peter +To +E +In +purpose +of +them +the +the +manner, +and +on +tho +shipments +her +D. +could +changed +From +hole +the +elector, +circumstances +Is +with +kilid +stirprucdto +I,. +and +baa" +Immediately +Democratic +Wm. +paying +of +wrested +United +the +session, +fumes +pellation +the +the +for +and +ful. +riot, +com- +whereby +is +in +Mr +but +larg- +however, +containing +any +In +the +beef +tlutt +year, +close +appeared +Mr. +an +it +musket +wblcb +mature +and +to +and +long +In +at +"dry" +hasbeen +eaoy. +dead +death. +to +of +offilcer +consign- +view +as +fused +50 +a +taking +more +and +were +Clark; +of +if +a +thing +block +m. +hurry +en- +Mr. +Irish +This +every +paid +his +oneMandiugpre-cininent +small- +the +the +of +and +termine +field, +four +of +which +of +vote +tho' +ideas +Iwhich +visiting +encountering +of +Prussian +that +lo +10 +any +eharge +was +to +found +six +do +fessedexcept +commission, +liquors +the +4 +and +the +clever +and +they +in +right +in +|less +finer +man +will +gory +for +required +are +Mrs. +anu +condition +time +of +his +the +touching +of +or.ler. +was +who +course +traveling +sup- +the +bears +tha +beginning, +enjoyment +wanted +Bob +of +movod +worked +Marah +current +dome +of +soon +act. +sald +bribery +Goodnow, +of +of +ways +humor +that +occasion +repay +noted +was +Indian +front. +growth, +words +and +ter +th +evfry +al- +think +ehaos +Carolina, +balanced +report +an +is +re- +promissory +requested +Louisiana +collect +ceon'ry +land +Farmers +Interest +avail. +which +about +implement +bankers +pons +mM.- +plished +Trent. +in +sufficient +Willie +when +"What +and +stimu- +treatment +made +slowly +wagon +carry +on +ing +escape. +to +the +pee +be +the +j +he +the +member +Manning +his +flood +back +of +nlace +and +time +the +With +every +experience +facilities. +which +long +sufficient +Infamy +their +In +went +I-ok. +the +B. +crew +Its +Alonzo +that +are +No +three +assembled +stove, +hat +mouths +times +Texas, +flee +part +- +as +possible +tho +promises, +Armory; +H +heart +and +said +of +It +System, +by +will +physicians, +grow +past, +to +however, +of +the +leave +the +use +a +oleuty +large +aervioea +beneath +speedy +more +man +the +a +out. +no +content +off +AV. +was +things.to +state +constitutional +red +by +gills +immedi.ito +that +takes +tho +(157) +the +the +oration. +. +disappointment, +to +of +names +aside +and +every +I +to +from +of +T +plate +can +at +b's +minds +metal +hellish +Jane. +hold. +from +their +from +son +will +an +complainant +read. +commission, +amount +principally +Missouri +and +of +cause +I +ablest +success +rule, +returned +Na- +pose +a +matter. +retary +wound +began +to +marnifesting +for +as +overhauled +i.H'nera +Block +the +Vol. +number +understood +“cellar +the +purpose +haa +body +millions +something +Philadelphia +ich +be +We +ation +8100 +company, +and +en- +horror +«f +ti5 +level, +regular +respective +Barclay +comes +pounds +Russia's +at +from +the +death. +would +and +the +that +yet +suit +Parker, +Johnson, +Island, +into +and +that +(Radical), +--s +I +tain +an +patient +volume +tbe +0 +caustic +work +a +to +3 +with +a +manees +Na +in +doubtless +of +and +a +is +twenty +go +sprang +run +the +l,y +view +Vogle, +1. +making +constitutional +within +center +this +Or»od +contempt +ran +he +to +increase +assessment. +this +principals +the +in +of +ot +which +peace, +case +there +beyond +they +theft, +The +F +the +rather +to +so +out +tind +come +28..There +Howes +markets +bonds +were +looked +with +and +Under +was +war +day +bo +re- +tree. +then +a +of +shall +saw +quick +with¬ +fore. +of +whiter +. +it +blow +ling +is +nade +inter +was +these +Wing +soon +liberty +as +of +r.onul +for¬ +re- +was +to +which +encouragement. +and +new +to +a +the +an +"and +tinued +1863, +for +ever +other +has +methods +tba +as +“What +‘o +opened. +ed +their +king’s +declare +ster +this +other +a +appreciate +sprinkling, +the +governor +that +speakers. +881, +not +her +the +and +dressed +and +is +money +the +did +that +this +of5 +have +and +red +there +the +imagine.in +Order, +• +and +by +light. +It +Students +his +out +as +feast +sound, +of +He +tact +At +mind +club. +other +played +state, +time +increase +door, +the +or +was +and +papers, +was +Building +the +ovary +the +language +lots, +rades. +of +a +hush; +sold +journey +money +with +N +cannot +sur- +the +to +In +mass +We +industry +me +ing +the +- +do +took +ten +east, +peculiar +of +of +MIde- +spent +fate +real +an +Recamicr, +but +culation +tho +saw +character +to +soil +Poat +permanent +chief +and +be +had +steady, +usual +ribbons, +than +off +his +guess, +should +Danish +foreign, +mingled +every +to +millions. +it's +spicuous +called +would +as +pro- +reached +lane +at +and +to +tled +government +deserve +by +with +made +the +recommended +later +molt +the +2d +H. +seven +to +his +to +to +ing +his +But +earth, +franchise +to +where +act +! +Balf-aoekar-^a +that +1 +makes +censures +Helen +fore +It +clear +che +bbls. +a +repudiation," +lbs +or +the +of +M +cam- +turn- +in +rein­ +symptums +.TRHR, +In +run +go +there, +has +Ament +threes +sets +only +said +preme +States, +it +a +conferred +that +a +the +believing, +defi­ +tlie +the +me +their +most +with +said +joy +Reed, +tions +bis +having +of +of +attached +in +of +when +textile +one +ho +and +camping +alderman +the +sixth +lit +Friday +execution +or +a +across +Chatham +Wasl +a +being +work +other +maximum +- +notes +of +of +to +tional +erect +swiftly +special +for +population, +an +anticipated +years, +dangerous +enybody +fourth +of +scheduled +l>e +and +laid +anxious +Tho +John +a +12 +stern +and +a +of +stick +attention, +secures +conviction +It, +advantage +calves, +Vaecaa. +avoid +and +the +are +do +how +au +caucus. +pipes +freely +sum +bo +1. +upon +which +willing +disinterested +the +costs +this +tound +many +world" +Ma88BBB +has +was +in +amounting- +say, +1 +incidentally +2, +of +'at +easily +the +report +as +tho +cently +No. +which +a +doughnuts +presiding +in +turing +advise +saloons +decree +seem +many +to +the +exercises, +to +the +acter +for +born +her +Cheyenncs +the +length +ance, +nearly +clans. +a +Francisco. +with +praiseworthy +or.from +soldiers +tion +one +of +better +on +and +that +pear +and +used +ers, +the +part +or +thence +ibem +takes +terfly +"Mike" +slow +Frakea, +decree +reported +Alfred +Seminary. +of +mostdel­ +B. +make +is +the +be +among +unuii*tak%ble +judges +for +repentance, +received +for +M +been +letter +not +he +of +people, +to +three +an +that +to +of +a +McAndrew +County, +for +. +or +Dec +scraping +• +Tucker +superphosphate, +to¬ +Tins +the +and +during +sauio +means +verdiot +the +Park, +the +funny—though +rubbish +Baker's +an +Iowa +thus +Alto +upon +ilather +university, +Mr. +that +eagpr +into +started +the +This +nished, +because +Brazil, +answer, +was +east, +Canada, +his +in +Mr. +out +shape. +St. +Capt. +inated +eliminated; +on +nnd +tial +tcil" +sing, +plea +nae +ficers +is +goods +easy +and +been +peo¬ +to +vices +to +hogshead +calumny +stone +handle +recover +not +it +name +men +American +Par +and +of +previously +to +wall, +an +grip +an +portation +purity +necessary +ty +order, +susceptibility +expected, +sky, +and +round. +the +lessly +party +tered +biggest +win. +of +any +Laura +approved +"ii," +except +periments, +which +from +sured +by +roof +hcl'ore +judgment +who +the +of +much +I +poor, +heard, +for +surveyor, +good +as +passage +thereby +t +So +federal +know +the +commends +w +the +appears +year +ever, +lema.aluf +globe. +but +the +every +been +equal +snuff +wall. +where +every +xperience +SECUTIVE +the +ono +distant +' +musical +fore, +point +derangement? +investigate. +Under +and +the +more +library +plaintiff's +boards +es- +that +and +mendicity +fund +cry +attack +by +Dixon's +which +estate +Butler, +be +that +all +been +tournament, +giving +vegetables, +par- +him. +New +replaced +Ben +presUmably +light +onr +indebtedness +of +whether +except +sters, +1871 +school +of +Powers +not +a +oak- +11 +withdraw +elevated +last +super¬ +bridges +good +i +had +amaIrins', +limn +other +much +together +east +is +Moore +ride +green +paper +weak, +" +at +Wilson +for +strength +hiss- +Montpolior +me +it. +spent +thereof, +npon +war +their +any +ard +edly +port +that +repair. +convenient +tho +much. +Prince-street +the +oue +vast +cut +idea +Tho +independent, +Mary +hearts' +in +11, +present +Miles. +Board +to +cut +candidate +been +floor, +Javaras. +may +the +direct- +the +trail, +Central +ust +In +against +the +a +heightened +ply +machin- +was +defense. +good +nml +and +sex, +' +beyond +steamer +sentiment +none +the +nnage +of +have +liinu +distinct +but +Sunday +the +its +high +however, +n +7 +half +carefully +from +the +to +in¬ +such +transacting, +turning +upon +of +vessel-moving +cause +we +coach? +years +Messrs. +in +In +trav- +It +por +see +crowing +cowboy. +The +invasion +goala +aud +rado +ought +while +the +of +extrlcatlng +of +would +appointed +on +to +considered +for +how +The +of +called +lead +tee. +is +if +belong +for +was +it +the +matters +extraordinary +four +the +but +keeping +encounter +cent +came +eTCO'iraging +disposition +far +record +until +within +wandering +M. +do +pair* +the +degrees +up +out +must +Iltits +feet. +cup, +the +for +now, +spot +attitude +service +strength, +also +n +think» +to +electoral +the +series +the +agreed +want +the +question +range +and +his +plan +the +Northwest +and +Our +Mrs. +do +claim +this +and +was +mortgage +public +soil +Niagara, +on +a +to +Jon, +shall +it +01 +takes +the +big +officiated +and +his +with +K +of +back +Now, +bylaw +long. +of +those +is +to +into +Airs. +upon +E +eachoveiy +down +his +hours +3 +known +went +on +incapacity +D. +the +to +thereby +our +107, +as +alive +clothes +that +chloride +iad +prevailed +it, +per +the +flylnK +ho +hör».« +the +rival +about +absolutely +he +to +stone +he +to +"Othello's +of +to +been +safe +dflicult +if +southwest +marquis +in +in +Frontier?M +to +Content +although +The +until +opening. +prevail, +on +the +generations +to +section +each +ihat +in +elaborate. +millions +of +true +Ileus- +105 +story +make +extra +no +ever +transport +coming +Mr. +appropriations +and +question +there +at +legislature +in +met, +across +also +beef +to +fugitives. +$2.25 +breakfast +$5,000, +of +any +why +Capt. +cars +do +E, +opinion +city's +210. +such +meaning +who +Tbe +the +cast, +mourn, +and +assist +$1,000, +day +well +of +the +order +a +and +two +brought +and +wo +of +those +to +possible +not +wondering +would +work-- +continue +would +and +Trust +on +now +their +regard +can +suspicion +Kenans, +auuie +promote +the +principle. +Holders, +that +of +communicated +fact +be +manner +hril +its +iu +returned +routine +to +of +at +colleges +ing +North +Sep- +their +sumption, +that +should +letter +attack +brick +most +yard +a +went +at +do +which +cedar +Inisy +will +Tho +Lane +genius +Asquitb, +in +tutakin.' +sure +rapidly +rate +ber +a +already +that +notwithstanding +meth­ +to +Springer +O. +ra +rescues +old +express +}c, +had +barnyard +that +would +has +tartar +from +half +from +of +hearty +for +majo. +No +ns +two +and +the +freedom +there +LaOreed; +of +age +of +Chesapeake +n +and +in +iu +picket +in +all +Crtiwden +income +messages +tbe +rebels +top +surf, +The +do. +list +pense +various +she +would +in +got +a +ridge, +itself +keep +guide +to +are +ing +brass +vote +hii +land +acquaint +rang +>\'e +day +displace +bus +hurried +had +hundred +ivo +England. +again, +which +the +its +Though +employed +hnppv +at +the +the +to +is +sitter, +over +tho +erected +Astyxnox, +trade +military +under +Bishop +tacf +could +extensively +most +the +Cobb's +Messrs, +whose +and +The +and +each +Mary +perfect +de¬ +If +that +to +in +"existed +time, +ed +sou, +away +oa +and +nature +Why +and +of +remedy +is +in +ease +bis +checked, +being +Atlantic +of +the +im- +Not +Kingdom, +would +which +zeal +diamonds, +.the +clear, +world, +to +Mr. +the +for +lew' +fice +to +same +to +an +preferable. +rial +Impurities +years +K. +fined +tornado +Sixth +84 +amount +Claims +the +her. +by +N. +beginning +16,000 +taxes +establishment +sci, +isolated +by +ailence +are +speaks +Sirup, +foot +any +said +the +of +succ. +martial +and +Bftao +varieties +the +the +that +he +fulminate +are +is +and +and +his +in +dollar. +every +human +college +roded +to +a +should +when +a +to +trial, +fortune +at +the +not +years, +. +0! +t +upon +he +which +the +he +middle +lady, +set +The +large +bo +clumsy +said +upon +strewn +to +first +an +to +wider +to +cloves, +lf +control—not +arras- +Colonel +coming +went +days’ +employmentof +in +reduction +for +the +index +fuses +then +recog- +in +limp. +of +to +British +that +on +may +address +of +equippibg +county +I +which +grim +to +uv +had +Huber, +divine, +St. +anything +oy +bu• +rules +point +was +funeral +ognized +arotind +family +And +in +United +cornfield, +Innocencia +the +of +of +chequer, +for +nearly +to +on +from +There +conduct +the +bidding;; +My +to +tle,” +Charles +corner +operators +There +felt. +in +har­ +to +town +until +the +will, +had +the +Traylor +that +bor +accelerated +finally, +introduced +as +been +the +following +her +an +one +Laws +do +ground. +want. +inues +Hannibal +root +:tmart»*r +Blasting +Each +to +Orders +is +the +effort +10; +and +run +editors +cartridges, +act +this +he +crime +to +shade +last +ings +Let +been +said +Temesvar. +50; +this +branch +aud +21. +is +have +bseo +through +used +made +prices +M +of +But +the +dishes +advice +and +«clive +furnish. +of +and +the +the +her +the +and +with +absence +national +the +before +my +at +water +They +kept +turning +determined +the +wealth +abominable +The +of +the +to +could +which +the +sure +Island +cabin +erty +earlier +the +dependent +Hemisphere, +decade, +atore-!iid +night. +or +District +do +|iae*t« +for +dollar, +longer. +“step +Mrs. +has +above +Duluth +slight +declined +is +they +become +mencement +debt +An +feet +of +new +cousin +mighty +surgents +editor +than +she +the +opposition +0. +will +by +situation +pleased +week, +thoce +either +here +As +and +Prominent +so +the +water +stating +money +Loois +power +and +au +Twenty-fourth +open +and +from +little +conversation +over +sessions +minority +Former +immediately +a +party, +tba*. +her +to +improving +than +Iho +and +our +effort +I +a +frosts +sweet, +laugh +enough +to +will +such +will +very +of +other +the +unhurt +on +Minn. +to +waa +party, +"Owing +be +purpose +and +from +boy. +for +gold +say +elected +tour, +clubbing +animals +ami +and +the +eign +building, +tempting +three +the +of +While +in +suspicious +a +roots. +necessarily +an +Watch.and +feet, +that +of +thre +a +Yokes +that +boys +Her +marched +suggest +engine +would +National +about +of +tho +prisoter +of +porn +telegraph +betterment +publication +has +o +be +steamer +. +relief. +governments +ond +the +contained +union, +restored, +a +Himself +Spring +lo +of +primitive +kept +the +to +in +of +woodland +His +able +of +up- +or +himself +The +The +to +tragedy +can +the +the +tlmo +division +a +which +north +give +the +favor +seemed +was +of +It +tant +this +owning +much +his +hereaiter, +his +with +stock +I +has +was +mothers +has +Shotwell's +erful +except +would +BEATRICE, +least +old­ +An- +influence +not +be +the +used +The +Take +all +of +If +effect +big +watch, +bc +$3; +American +charge +as +In +he +my +accrued +state +open +the +Iast +Kanawha. +barrel +health +pair +to +will +Let +terests +a +ground; +who +attracting +disclaimer, +and +citizen +of +an +after +citizen +for +"mean +to +self +rémunérai. +some +months +b»» +soul, +harpooncr +A +be +part +Northern +more +at +in +cardboard +of +of +frana +the +ami +Editor +are +kinds +honor +her +bis +perches +Just +and +cover +Fair +Pills +under +to +where +gether. +fast +laborers +entering +mortar. +pacinr.ti..n +to +part +rosy, +I +along +month +Hoff- +tion +land +did +to +by +point, +1 +fellow- +is +"In +fit +and +will +and +other +He +own +for +Kerr, +over +; +settlers, +aod +from +the +tobacco +victory." +prosperity +and +New +Md +for +comfort +an +al«o +his +our +slide +his +trade +would +win +Dass +nothing +not +corner +sum +me +tlle +the +in +far; +the +July +principal +table, +yelled +all +never +is +his +these +hereditary +and +and +the +We +antagonizes +lay +soeni +in +fii.in +Columbia. +simple +refuses +and +John +and +medical +Austin, +call +shall +1 +intend +Main +the +authority +lupus +than +at +get +Neuralgia, +lumber +legislature +respectable +and +the +Ne- +golf +and +of +gets +any +of +from +cither +to +Putty +candidates +tieth +restored +on +We +say +raid +next +of +aro +lu- +such +to +clalmlncr +the +Prof. +Va.; +his +,at +merely +the +and +nitrogen +arrangement, +will +would +elections +insurance +in +There +away +it +as +the +consideration +until +whoae +motive +or +places. +Virginia +was +until +128 +seas +matter +socks, +had +friends +., +platform +carrot, +various +head, +will +on +the +and +part +him +he +season +for +who +desire +sea +the +seat +Unfällen +that, +a +wandering +and +nity, +to +not +claiming +regular +manufactories, +In +tions, +of +and +and +pottery +to +They +the +the +Circuits, +no +Tuft +Katherine +course +and +that +of +only +alliance +of +cism +enforco +taken +tion +only +so +stood +ernment +attributed +into +phuric +deafening +open +his +the +do +air +General +Hon +^Patrick +have +Mr: +in +ter +Question, +ac¬ +that +which +Hpoa +ordered +a +pect +at +and +of +I +children +of +made +from +follows: +and +we? +scarcely +. +employ +if +treed +«pwntown +made +that +priced +of +“The +immediately +the +of +butter +convention +at +butter +I +is +and +strong +other +winter, +of +meeting. +sparkling +of +said +crossing +Indians +that +of +of +characteristic +doctors +Indians—184,968— +muzzle, +ear +the +; +. +the +Boa +hands +is +position, +and +same +larger +the +so +tlie +the +he +I'lullips +it +diffi- +$200 +walking +net +being +Mini +the +Coogan, +the +On.the +tne +larceny. +the +so +sued, +aulet, +be +rating +profitable, +once, +best +and +train +his +of +then +est. +induce +stripping +the +Republican +in +are +these +rivalry +abdominal +by +oz. +tSs +lit« +free. +in +tbat +added +good +sufficient +the +exchange +of +cash +but +keep +did +goods. +now +next. +produced +and +open +that +feelings +Is +it +like +on +devolve +adage +sitting +of +aspen, +spent +teeth +ment +and +on +‘■Plaintiffs’ +whenever +First +side +at +as +a +his +reunions. +ol +Pendleton, +east, +goi +the +woman +was +we +uhout +with +your +7 +sang +of +pn +they +fluence +by +Mrs. +splendid +respectabh +piece +brought +ticket. +soul +cue +out +sorcerers +the +(8) +research, +'s +year. +keeper +price, +and +of +been +forces +within +where +the +go +these +is +road +bond, +advised +Top +people +the +far +cling +opposed +tion +if +the +Virginia +foot +to +Court +they +On +to +last +the +of +to +of +made +to +lie +other +to +and +Election +Eu +explained +the +I +head +has +though +known +Gentner, +was +car +services. +the +Mr. +from +not +recount. +was +investigation +debts +folding +tho +and +amendment +En- +street +and +voted +property. +stern +Bevtew, +The +Two +n +equal +ono +fair +tirement. +slight +E +6r... +thn +island +a +of +Health +that +t<> +of +and +first +are +a +invigorant, +in +mortgagor +larper. +thoi +uotico +througb +at +mall +any +district +foot +th«- +accounts +considerationsi. +temper +met +were +proceedings +the +some +and +targes- +profess +rice +may +had +Smith, +furniture, +from +For +about +so +and +now. +clothes +of +becomes +for +only +but +reach. +i +be +having +dis- +the +these +them, +liver +during +punishment +suspected +ac- +He +from +a +thev +back +Keeping, +the +will +pave +as +and +in +fund +wave +body +Binple +the +fumes +to +perfectly +meet +been +also +and +the +glass +this +obstruction +can +State +Household,” +large +editor +day +them. +a +crop +act +the +"bumptious," +the +One +the +produce +is +generous +shall +tLe +railroad +ion +Collyer’s +of +Timothy +three +this +In +chances +of +empiricism +not +the +Police +that +1U3—This +"It +tho +to +made +of +-fine +cir- +his +of +of +In +S. +savings +of +shabby +with +savn +wide +said +Ro­ +have +in +ran- +floors +situation +the +insignificance +the +has +tory +previous +as +complied +the +all, +negro +sanitary +cannon, +or +in +pre- +caves. +or +railroad +_a«l +We +men +ic +pation, +good +Of +process +cash, +of +phenomenon. +a +wise +to +elections +week +feot +march +doped +of +idling +that +well +Better +They +then +Sands's +ley, +importance +screens +did +imagine. +con¬ +we +Hart. +threat +heart. +he +aproached +been +Maiket +F. +ping +but +the +to +with +has +exceed +cleaning. +it +its +the +to +who +out +2, +Mr..Maaon +etors +trials +regard +Findlat, +been +payment +come, +clinging +it.e.i^in +niable +of +viz: +on +real +Chester +To +and +Judge +more +of +up +open +badly +day +when +just +not +the +know +be +Edward +faith +station +in +do, +to +to +by +rs +to +160 +Eden +anxiously +was +wltmsscH, +a +In +for +was +Who +purpose, +sobbing +of +of +on +tier, +s +Burton +of +ten +cause +ital +with +belore +soon +to +ni +Howard. +at +duties +The +tn +to +youth +to +of +common +and +HERE +Council +ing +the +field +for +escaped +take +and +pony +unsatisfactory +lien +carbine +the +stand +that +lodgo. +Drrndreih +I +willing +of +ago +or +(14) +of +continued +the +with +the +boob +lights +crap +association. +when +refused +the +or +his- +wool +sun's +daily +and +the +the +ton +estimated +All +Tammany +ex-' +to +the +of +injurious +capable +He +very +up +earth +any +advisoment +Now +sum- +to +man, +of +far +fert +escaping +"based +positions +this +of +ardy. +drink- +found +is +links +subject +very +the +and +are +thoaeaadc +to +money +money +moat +ten +at +SI., +be +my +had. +tained +spoke +have +up +in +It +led +stomachs. +that +of +tho +settler +make +Weak +rosy +is +and +to +two +would +know +ander +departments, +United +to +sum- +If +members +states. +and +always +horse +have +the +had +but +tho +soon +him +R +about +decoration +the +Jamea +also +was +day. +their +ol +Mining +their +and +npon +I +the +craft +Colonibis +eugwr +rsfusci +luck +perfect +bonds, +also +ground +ilso +plicated +provisions +a +about +The +went +bad +our +Haven, +few +lights +lot +and +that +invariably +full +the +spectacle +to +|,referable +Pres¬ +disorder +for +give +the +be +had +same. +upon +North +to +number +cling +says +of +authority +rights +nothing +Rocks, +were +enable +like +he +ment +thought +discovered +to +part +and +carried +whom +attractive +two +like +Ont., +pressure +lower +twenty- +and +own +and +Thoraas +the +frankly +with, +slunder-ou- +in +liquor +of. +light +party +K +finally +and +grand +a +mg +iron +left +before +have +great +through +like +I +that +treatlea +is +tory +er +The +him +where +had +of +fligh. +value, +remains +died +from +to +nent +herself, +competent +disap- +forming +reputable +may +as +15 +world. +Russia +partnership +the +change +tho +district +use +something, +tion +10,000 +to +Mrs. +about +proclamation, +stiff'; +man +higher +up +however, +"Sudden +that +and +there +to +pro- +ends +suffer +Mr. +gerry­ +its +not +one +into +cases +receit'e +ln +but +friends +gi +would +as +mid +which +to +of +soon +Cl..Med +the +of +[totta. +by +little +corpora­ +the +him +realize +third +promotions +hythir«. +that +aaaaaa +is +eugine +between +cents +Steel +aud +plans +continuous +fur +dispute +York, +State, +holds +Other +asked +doubt +in +pounds +as +thrust +all +adrift! +position +him +responsibility +Williams, +It. +Goulds- +is +mills, +made +are +Federal +Northern +meetings +and +ing +alubion, +we +Company +Amount +depend, +mills +Cen'ral, +Hid +gorgeous +Maurlce +and +night +taken, +a +who +eelvca +direct +or +may +with +year. +an's +of +possessed +lege +a +wrong +ful +sand, +him +in +doubt +away +authorize +said +to +end +positive +will +ex­ +much +complexion +put +no +Cole, +Suites, +face +in +in +to +as +dash +virgin +members +while +served +in +own +tho +for +increase +ever +only +time! +is +tho +weakened, +at­ +to +qui +makers +No +in +ordei +ta- +aiTair +excelled +prostrated +and +payment +fections +si*c +"law +number +at.d +thought +combined +main +ure +and +which, +pay. +for +To +vessel +no +serve +do +by +not +and +grows +the +in +the +released +establish +President's +Kuropeaud +tempt +trnitmtnt, +position +explored +stjmomical +head +the +In +to +1891, +York, +principal +phenomena +rifice +mourning +would +naked +never +might +the +ninety-four +is +the +that +ni +and +sort +pany +thorough! +would +stated +State; +the +I +per +nents. +it +me +text +an +besides +0110 +tried +for +home +the +April +Almost +enjoined +the +shall +at +early +and +Chris- +pro- +as +had +House +nothing +we +brought +no +Cummings' +as +of +engine- +enlisted +is +in +C +ards—and +Augusta, +Of +the +hard +the +styles +but +He +11th, +in +be +disadvantages +thus +to +is +at +we're +soil, +good +cars, +ahead +from +growing +actlvo +to +illiuger- +depositors, +on +in +a +can +and +ms +edge +a +repeated +and +can +woman +thus, +consists +i +flour +New +very +one +of +from +train, +He +provided, +southwesterly +fortunately +residential +a +his +regards +they +wife +Polytechnic +been +Canton +Richards, +bim +also +day +the +must +Interstate +man +the +as +21. +to +the +to +of +thing; +session, +not +— +of +females, +of +is +Its +would +Negroes +laces +of +their +of +right +appointed +when +officer, +article +1 +our +see +Roadannd +Simulate +He +National +put +orders +department. +alter +Kogister's +of +can +president +his +J +of +of +item. +though +Samuel +least +malines, +highest +fair +milllomelottinnenItIstoolad +agree +fectly +opinloa. +of +in +the +upon +, +once +the +are +character +that +boarders +in +protection, +first +months....Ziba +.?? +then +in +could +Philadelphia +al- +ahe +to +and +in +Cramsie +oar +of +lots +of +which +brought +lien +gue +market +gree +dourly, +can +port +easier +repose +west +from +such +through +twenty +not +Wood, +for +lina +which +now +such +road: +we +science +per +nna +Heard. +summer +circles +could +(heavy. +children +the +fre.- +little +Gethimoutoftheway! +turps +hum +farm. +they +to +pr +lived +relayed +Americans +to +the +terminated +sections +series +sent +I +n +xilio +Mr. +orative +well +Prraraliar.i +book +full +to +and +with +Artillery +what +liii» +coal +Rucker, +the +had +only +the +good +way +gregating +where +at +under +to +the +past +also +Kibe +To +not +side +stock +round +team +Mrs. +for +or +is +it, +nading +Though +such +ra +as +they +spirit +dollars +this +there +being +as +gard +with +hered +who +to +de- +iu +Read. +Tbsm-PaBT +baby, +in +those +matter +has +land +its +found +himself +to +the +Trov +then +4,439 +years. +land +chemiat, +an +now +vote +notified +in +expenses +the +Theodore +habit. +remarkable +have +H. +a +ing +can +so +the +Hi +well +tendanl +tobac- +abandons +he +rounds +bill +sarcasm +persons +of +so +ness +a +He +its +Gospel +girl, +discontinue +terms +have +com­ +from +Manchester +January, +seven +D. +conveyed +voyage +land +He +49 +New +Gazette: +salmon +Committee +tv«n +a +diverging +about +separated +per +article +5:12 +favor +They +ninety- +I +way. +and +had +and +they +Mr. +cines +invention +t +ditions +less +in +ho +running +executed +rope +showing, +Idaho, +of +led +alkali +full +l@jc, +and +tic +not +, +acknowledged +changed +ues. +Assembly +do +corner +May, +stolen +loutbetly +from +landlord, +to +condition +500. +so +“next +bei« +France +we*l +Capt +have +thing +In +of +Songs, +heart +the +of +the +new, +offices,>^j*ry-boxes, +Hi,n +day; +avoid +structed +Barks- +Vet +for +harness, +banker, +been +results +was +honor +Chas. +cured +ulcers +of +argument +cooperating +exceeding +one +fol- +of +watchers +This +Black +of +does +eoroplointfl +conversed +to +carrying +its +convicted +He +freshing +Almighty +be +ought +even +tile +opposition +that +of +northerly +hap- +the +the +Messrs. +than +to +this +necessary +horrid +perform +their +interpretation +ed +ideas, +Welsh +hir +upon +get +Hie +have +or +live +arm, +Immediately +are +the +west +death +is +State. +anco +Randolph +(Jod, +. +l +he +former +man +abundance +the +is +this +and +of +rather +wns +fine +only +f>*7 +I +men, +still +liveed +from +East +from +be +kingdom +knot +under +children, +eit +in +was +Charles +working +communicate +yester¬ +living. +such +thereof, +in +language +be +compulsory +drawn +is +the +recording +Uobmann +inattei.» +July +of +wagon +in +reviewing +downward +but +each +at +gives +o'clock +and +through +Of +few +and +and +the +with +closed +the +O’Connor, +agonizing +"The +time. +tragedy. +be +Add. +victory +have +Rock +writ +5u +and +ladies, +you, +one +Mr. +first +do; +trol +meaus +concluding +IMS. +to +no +tbe +war +indeed, +jail +having +my +had +the +confirmation +what +all +allow +from +placing +for +A. +He +than +one +Block +causing +nmy +and +In +the +them +urers: +competi- +in +offender +shutting +it +All +some +Buffalo +production +enjoyed +1, +singing +not +ambition +of +in +proposed +one +him.. +what +ble. +or +5,124. +After +both +House. +; +lng +of +them +usual. +B. +1915. +endon +these +Bth’s +sixth +at +12ihs +in +rock +for +maidens +certain +strength +thereof, +arrives +that +has +and +cer¬ +sur- +best +race +the +p. +in +and +subject +place +steady +Collector +Loess. +the +Deputies. +boundary +detail +largo +Pass, +suppressing +has +was, +with +qualitiea +that +between +anc +Is +logs +dersigned; +the +cash +IndecIsHe +grapple +by +were +tymptomt +of +min­ +pretty +test. +enthusiasm +boat +h« +elected. +shelter +that +That +ituumgetnent +a +big +but +eondnetor +south- +twenty +dark +surpUi +had +the +by +the +has +but +the +place +useful +,i,,t +east +this +rndikel +to +here. +In +the +there +17th +16, +pa*king +way +the +promise +U. +and +passenger +and +counterfeit +trip +his +which +riot +upon +sclioolhouse +Harvey +atill +plained +soning, +for +iiiog +his +are +he +fog +and +forests +that +were +you +York. +natural +more +protect +Execu +not +to +Through +go +a +the +perfect +and +alone +so +bav* +are +several +t +Judgment +and +Parish, +ciated +:«• +absorb +flirtation +descriptive +the +straightened +ception +which +could +of +ripen +fire +of +a +stitch +counted +Taft +over +of +any +porting +of +and +served +the +on +not +part +and +postal +Hunt- +sure +fondly +act, +and +just +that +New +surrogate +capital +I +farmers, +A. +seriously +(II +through +including +darkness +the +not +inv. +the +but +even +was +practice.an +a +said +matters, +much +our +ideals +are +that +Orl«an<; +Hirer's +largely +Insisted +surely +more- +of +living +way +Minister +after +teachers +not +very +to +Par- +comprised +The +a +Dittmann +con- +at +thus +last +to +heard +exclusive +ter +office +Tho +at +cut +iana +judgments, +will +I +in +the +it +hidden +probably +which +in +the +weeks, +the +no +sought +In +for +building +the +for +Then* +bed +« +for +capacities, +in +of +of +at +Well, +will +becauso +of +its +York, +are +America +to +be +be +not +Conn. +personal +months. +2344 +he +be-- +fortunate +is +for +have +ri.i. +The +into +hat +feet +usual +office +ot +and +with +tax +hands +on +just +flies +at +Branch +all +an +perienced +and +Moon +they +ac¬ +be +John +The +After +largely +of +whoee +the +, +dining +sources +LOAN +Pacific +reached, +swamT-ed +Internatlonal-e-Opens +has +in +It +mid +the +their +handball, +ache +00 +poria, +tobac +may +that +made +Onions, +at +earner +intimidation +break +nomination +petition. +hole. +containing +of +deftly +actions. +stored +may +stream +and +publish +satisfied +in +movement. +upon +ar- +the +other +the +con¬ +about +several +lose +the +is +farm, +4's +Dec. +dav +portal, +which +on +cows +18.80 +tools +To +should +end +to +in +their +ordinary +a +center, +such +Cromwell. +quiry +on +among +Branch +erect +a +rand- +thorizing +get +they +pur¬ +were +have +an +there +through +that +banks +career +number +with +duration +fifteen +cl +years +is +lars. +iin +when +fun- +an +aa +outlast +Eugene +The +made +them. +very +transferred +township +five +violent +tho +the +euro +with +an +side +sergeants +order, +just +and +theoretical +names +conflict +of +it +he +foot +owe +in +performed +general +explained +me +even +described +of +did +I +In +was +remembered +serious +the +(probably +flinging +monsters +specialty +receive +that +bfl +office +read, +have +of +of +tongue +wall +ing +In +did +allowed +iciently +laa +received +not +pieces +writing +s.'iid +is +assistant +farmer +laughed +dencribed +Unnamed +ducing +relative +sas +In +learned +neces- +till +existed +for¬ +of +pleasantly, +the +large +Carlisle +ment +the +color, +country. +young +barrels +Miss +to +of +found +great +wealth +church +varied +all +his +payer +of +pot +States +a +or +patiently +mediate +had +FOUHTH +agent +a +slightest +thing +as +special +of +llttlo +however, +having +of +not +i +at +admitting +tho +resolution +ln +came. +the +tickets +passed +he +Presidency +to +once +its +pack +gratis. +politics +were +reply +just +wero +remain, +fragile. +part +and +In +theatre*, +numbers. +threatened +Coos +unanimou +their +from +of +end +pride +been +take +>ng +the +cold +provisions +be +consequence +of +their +band +moderately +reason +de- +done. +35, +a +falling +years. +but +culture +Spain +cost +the +Don't +by +the +M. +P, +ful +and +naked +national +brought +their +men, +individuals, +the +this +permanent +by +July, +was +by +to +ill, +the +tho +aires +court'a +holy +a +the +and +to +tuay +really +joined +continued +them +abuses +tne +and +worked +the +individuals +parcels +politicians. +blood +again +ridge +engagement +were +whole +expressed +wbkro +be +city +at +military +the +Andrew, +was +the +vengeance, +Strangers +these +and +time +struts +two +or +ordered +witness. +around +South, +$5 +said +appear +or +rarely +paid +certain +and +der +fence +as +the +of +has +compound +be +ran +and +a +McCros-so +young +v. +of +highly +and +ran +descendant +vaa +in +shape +touches +American +Life +The +dots, +now +offences +a +All +to +in +road +Bench +soon +League, +converses +«millionai-e +n +goods +be +riflh-Thal +they +Marsell +sumer +one +ftifa +have +had +They +$3.12 +canal, +stop +declined +lives +hu +might +the +from +hundreds +to +Spann, +Ilinithem +the +to +so +be +may +County +for +Corinth +City, +from +It +of +show +the +39-100 +To +citizens, +of +system +in +iuto +any +their +and +summit. +that +people, +Wilful +at +the +to +Fairly +of +a +gradually +part +the +a +company +at +nature +llames +form +sale +hand +off +are +time +of +ing +posed. +Harding +Robert +teaching. +ledge +greatest +or +is +even +that +he +sent +of +see +blatterly +retained +direction +is +great +shy +careful +picking +the +and +trees, +to. +usefulness. +the +RedAftrn +and +the +o'clock +ex­ +as +. +quantity +rig +more +ablcncss +of +negotiated +place, +familiar +of +remarked +of +now +yield, +does +deeds, +battle +sick +Court +of +going +the +ot +could +except +mind +heed. +see +mlntioua +he +curies +.S. +wltbottt +quarters +or +peg: +the +2 +of +children, +produce +done +Robt. +pump +by +(Jen. +not +hold +anying +close +county +the +for +best +quick +;i +of +go +now +tbe +checks +Is +evident +left* +highly +been +hand +themselves +some +find +in +why +is, +left +rush +II +from +although +of +required +acted +any +it; +as +my +very +Hotel +for +the +and +work +this +uoparoileled +off, +other +ternate +1 +McDermott +prepared +the +which +threatened, +this +$45.00. +of +popu)1- +equal +make +the +in +all +law +insult +that, +Mr. +committed +must +other +of +dangerous, +women +society +of +and +it +-old +air. +lost +mau +Practical +to +linked +General +the +the +truthfully, +equal +the +steam +own +of +disposed +literal +every +the +the +tired +the +couple +the +the +a +what +of +usual +endeavor +of +$0.27; +assisted +the +sending, +pretty +Harold +America +mourning, +2, +rebel +electors +Clara, +to +But +for +studying, +the +clearly +on +by +Hickory +an +into +was +to +in +west +The +to +cut, +ia +mads, +or +In +The +saitl +Dr. +D. +erer +the +with +of +labor +power +experienced +grow +filled +pipe. +year +by +invited +re- +nine +dozen +gerater +thirties, +other +in +those +the +work +Tub +with +exceedingly +capital +and +of +be +her +deligate; +return +the +wife +and +make +new +and +with +supplies, +to +shows +it. +provide +to +When +o: +hand', +trasl +relati +up +This +and +by +and +mon +hats +the +can +The +when +the +carpenter +true +mdse +deadly +in +phia; +2 +to +in +New +per +season +socialist +the +School +helped +ii +on +on +the +l'.K) +the +facts +the +supply +mo­ +were +paid +much +late +miles +send +WVhile +On +the +of +that +kilted +ell +evening +up +as +delegate +in +of +certain +men. +desired. +it +Where +1905 +each +of +Brewing +(-arable, +her +There +of +in +the +will +on +to +by +each +in +stall +part +where +humanity; +brown +122 +sled; +score. +be +of +westwardly +less +which, +pavement +But +new +the +laaatraigbt +nto +bezzlement, +people +according +taken +at +the +and +*upon +York +and +ing +last +completed, +the +tion +of +Serius +have +your +reduce +Is +the +Favorite +Louis, +is +on +in +the +you +if +out +lands +of +drinker. +ill, +and +mere +costs +name +field +upon +In +out +a +during +patty +the +In +that +of +he +the +carried +the +To +defendant +him +the +point +make +and +of +efforts +in +much +enemies +defendants, +public +Ward +durtag +the +looked +But, +unusually +to +within +hunts +drest, +sleep +grandmothers +there +brig +pro- +In +two +Shaft +derived +of +oth- +Typographical +in +does +-o +the +av- +termination +stacks +the +ihe +idea +and +In +geog- +may +with +water +and +Mr. +tlimn. +sound» +which +missed +satellites +All +re- +for +60*and +with +• +it +fore¬ +while +by +he +The +what +an +will +ridicule +Why +They +to +to +always +noted +he +of +and +I +render +however, +public +In +the +and +(lie +effect +of +contention +and +of +road +National +the +Committee +melons +sled +force +It +Henry +taking +That +the +stipposition +that +there +not +liigbly-rcAiacd +and +s +gravel +third +populist +anchored +, +between +Madero. +off +every +Youghran +tisht +also +and +says +give +a +been +ildcatting +in +dignitaries +easily +when +two +or +of +laws +he +was +subdi- +has +been +far +- +fact +can +Hotel +be +him, +preliminary +can +Mary +talk +cat +tention +tiate +the +the +She +she +Get +re­ +the +an +the +nothing +old +be +with +475. +full +find +will +from +of +and +the +from +form +survey +independent +. +botidder +brfdf, +amounting +said +and +sdd +trouble +the +and +the +Coal +which +Honorable +but +.t.. +ready +prey, +C. +Is +her +will +service. +He +looked +finished +or- +have +ported +the +the +Government.. +nee +Federation +by +gales, +with +laid +make +and. +and +for +she. +and +of +to +that +dulv +18, +who +slain +was +ish +they +in +long +sleighing. +orphans +payable +, +Burgatory." +examination +himself. +our +j +Hopkinton. +message +from +do +Car- +for +broken. +up +the +light +The +Interest» +delayed +performed. +took +and +is +between +To +yon +with +of +[Alameda +do +health +do, +not +France, +been +to +of +sequent +Pearl +tho +time +it +formally +The +In +described +combined +discovered +poison. +ime +and +for +as +Simons +machinery, +catlle +rvoertimber,of +the +exp:se +of +Mr. +and +that +ami +required +time +his +blow, +word, +considered +river +bush +MJulian, +tho +general +at +Northern, +Impelled +1916, +may +Corner +Is +then +young +suf¬ +city +of +a +sub. +there +to +I +particular +Fla. +30,000 +discontented +Bquak. +50,000 +an +that +to +They +room +know +of +many +the +M„ +started +for +et- +predispose +with +of +two +to +to +to +fcred +sword +been +Frank +seriously +and +of +to +11 +declined +No. +The +reverend +queen, +face, +fui +than +to +year, +ele¬ +on +ma\ +bonding' +best +the +Rhine". +of +finish. +offioial +religious +Dem- +require +anl +prayer +be +. +I +secured +Brothers' +these +accomplished, +came +certain +whom +collected, +Sheriff +the +tract +his, +ernments, +distribute +lo +claimants, +that +to +not +back- +drraamaker. +one +employed, +runs +landed +famous +on +Sheffield, +., +at +lighter +about +button +Smoot +of +I'rcMdehl +dry +a +like +were +Stanley +two +Bill +pursued +battle +elapsed +the +discourse +in +Rand. +674 +affluence +side +some +tho +That +Rule +ieot; +the +guished +seeing +in +The +jf +suited +the +“ +work- +H. +regu- +Wade +some +the +commerce +send +a +underneath +of +and +have +adultory. +will +In +sticcessfi'lly +pui +term +well +these +what +real +warnings +ever, +and +parcels +chance +ac- +our +arnica +ordor. +and +above +summer +mischief, +that +his +and +don't +power +sia; +restoration +soul +and +report, +stitutcd +to +tation +a +knocked +one +the +society +who +the +blistered +after +all +from +rights +selfish +or +should +will +was +color, +out +a +best +1910 +wanted +grist +state. +the +sense +arms +rocks +location +reported +pit¬ +the +Street +pared +hostile +ihecueuiy. +on +of +is +years. +of +qualified +States. +ot +u. +few +The +the +tion +produoer, +about +Thomas +and +name, +sister +his +is +ng +the +chronic +to +in, +by +the +. +eomfortablj +and +Fourche +a +fantenil, +rates, +the +designs +back +to +between +tbe +and +the +be- +of +S. +the +could +to +the +wrong +tlx +Bard +south +Decamp,upholstery +views. +try +in +she +and +Monday +Petroleum +weakness +until +further +the +skin +at +focus, +some +and +his +to +about +murdered +loan +verb +down +their +in +year +th +appeared +the +Fountain +I-odge, +loss +into +squalid +to +honor +will +was +band +to +might +the +Koland +Germany +in +of +facturers' +fact +alternates +ho +quarter +majority +them +and +; +mortgage +thenight +arrived +the +infants +Los +land +cats +Business +at +hold +ac- +ty. +and +ed +arriving +born's +patriotism. +necessity +Just +the +to- +If +equality +partly +eleven +be +necessarily +the +farther +profane +It +* +genera) +New +showed +to +here +of +organized +"is +falls +companies +at +All +gance +farm +better +to +tho +. +granted +business +blood +by +m +n +Press, +beets +to +aliont +who +slon +be +Howard +As +made +and +conviction +It! +manner +.««, +no +of +Greek +turn +perlect +way +recent¬ +present +masonry +the +establishing, +from +County +it +his +execution, +Instructed +who, +to +proof +term +1 +find +him +aggerate +Sc +one +>t +Jobs +one +of +if +hav¬ +hastened +with +t«- +ners +club, +and +that +nil +says +hostilities," +ters, +greit +idea +Government. +case +ored +great +view +by +where +best. +and +the +a +daily +throughout +the +in +theirs, +best +them +Dr. +of +Mr. +invalid +possibly +But +for +out +the +peí +Mr. +of +Formosan +tanks +submit +unsold +have +possibly +might +monthly +interests +evil +drnae.e +For +crime. +see +these +surface +amounted +day +cor. +basis +No. +advanced +the +nudr««o:dtdItt.ieoffice*fugls.er +Society, +stock +material +state +damages, +United +action. +practlce +partial +with +be +this +accepted. +brings, +of +in­ +kind +Thursday. +the +ua..[\vnioU-e("i'iui«»rll»cui +an +we +time +muslin, +is +i +tir-st +year +would +poisoning +forme +cross +the +bridegroom, +Electrical +peace, +8 +Kio +for +Dinsmore, +man +it +lias +had +nate +purchased, +tion +gasp, +In +here. +package +big +inflict +Base +the +log +at +in +almost +that +Loft +headed +behaved +will +Pink +In +hand +would +Woolley +less, +the +of +installed +shares. +poa«le +of +doing +the +upon +the +of +of +many +the +drowned +convention +go +own +party +country +wife +out +the +com- +saw +to +two +wire +Mrs. +with +again +commissioners +liver, +tomorrow’s +years +to +children +for +was +and +slight +with +plains, +of +he +The +December +factor: +period, +of +steeldust +from +Green, +to +Basket +some +down +Then +Lieutenant +seen +Washington +so +the +rank +The +McKinley's +the +ivritliis, +of +ono +when +for +we +enemies +tho +the +you +by +perfect +than +and +the +represented +follows: +to +develop +are +consists +one +750,000. +been +small +Hyhernl, +it +command +less +from +United +possesses +ple +the +: +lamp +Franklin +A +buggy, +prepared +boy's +dollars, +and +clear +school +the +oil +sis +allowed +be +he +who +of +Cuban +article +Commandments. +the +stultify +kaflWMflJ +him +long +mands +top +which +came +is +pay +said +labor, +what +ordered +duty +sponsible +winked +I +fii.t, +degrees, +ijcni- +line +perfectly +ature, +may +the +and +so +the +in +Such +less, +home +this +com- +and +Josephine +into +styles +far +was +more +ot +n. +He +the +for +new +his +rest; +of +acted +to +indescribable +becom- +principles +though +me +Urge +his +foreman- +as +left +glazed +even +far +decree +upon, +ered +early +from +fonit +disgruntled +profoundest +looked +another +famous +"I +Robert +of +is +help +Krumke, +these +ques­ +has +same +during +the +city +work +last +ard +referring +of +shall +city, +of +ait-uu- +of +of +boom, +Eighteenth +more +J. +the +part +quantity +sterile +in +thereof +two +tho +I +wound, +until +discontent. +gents +particularly +lifted +O +most +betokened +quarter +In +. +2, +representing +104; +family, +Mr. +mall; +.losed +er +Charges +notice, +an +half +preferred +OF +cuse +and +There +While +certain +a +money +down +Murohy +blow +more +the +matter* +wholesome +Resolvent +taken +tear +behind, +which +about +initely +vigor +win +us +The +our +periodical +propii +that +he +to +the +your +eleotion +from +back +confirms +of +by +they +was +tary +The +prosperous +terruption +United +with +to +home" +was +wages +the +Wm. +of +and +States +tbe +well +good +have +mud +unreasonable +will +contained +had +to +man +of +demand +C. +be +tie +organs +a +mind, +that +deducting +Turkish +is +dered +any +Keateham +could +charge +W' +that +and +Logan, +oxygen +post +sbort +through +anil +division +Hathawayfe +a +Uterarara-Hiiore +He +lives, +best +clung +who +by +with +take. +States, +to +Bhow +stability +call +Snowstorm +ion +a +port +methods." +have +east, +of +dog +that +Before +and +is +1 +unqualified +and +tor +with +tho +around, +militiaman +an +dom +and +tional. +bors.under +of +of +hoped +., +peror +by +or +Neal +balance +«f +subject +their +esting +oncoiiriw +plum +there +in +provides +ob­ +bility. +I +immediately +attention +for +therates +of +thereof +consideration +of +the +the +do +. +The +hospitals +on +no +C +motion +the +them +ny +be +her +all +gun +contained +It +has +rule +of +Ireland +in +lather, +a +St. +the +rapid +instances: +Interests +man +shut +Judgcship +the +way +the +were +Johnson, +bread, +that +animals +items +rank +ocratic +these +con­ +dut +representa- +saw +need +caught +know +daft +every +most +The +per- +is +Wrecking +which +whole +Altrock, +this +injects +weather +the +tion +its +Crassweller; +Manila +any +nothing +are +Europeans +the +an +to +wa* +I +lionaire +over +said +what +though +and +He +of +year. +any +lias +a +ed +it +day, +summoned +If +the +city +up +shipmen +about +No. +river +ording +paid +the +word," +Is +pink +Wardons +of +jointlyoperating +nouus.it +misli +had +night +trick +valuation +twenty +ern +provide +then, +morning +with +did +Kn- +empire. +If +tobe +of +did +appears, +such +110 +sea +in +vice. +subject +with +eight +of +hut +who +beating +read +the +from +their +He +Sunday +night. +«s +a +the +dants +had +of +road, +amber +and +bouses +0 +W. +at +By +officers +and +no +of +which +never +cuted +as +under +many +of +hold +lun*», +clerks +articles +county, +cial +on* +stylo +id +a +1 +state +iperatnie. +sion +comparatively +for +matter +little +than +take +Big +us +purchaser, +ently +courage +chill +in +has +r +wise, +the +Opera +always +copo +floor +of +buzz +be +becomes +the +a +Tsalkogono-Kamiand +as +kopt +he +way +just +complaint, +essential, +it +earns +for +many +1671 +Touching +the +must +t'reah +time +the +have +see +and +"czardas/* +Swift, +brain +young, +recorded +humane +slip +M. +issued, +ter. +brothers +old. +been +merous +the +yards,and +when +Mr. +shown +The +nets, +and +and +from +oi +spent +at +afiects +with +some +also, +rimUiato +can +at +of +uiidersuindingly +Gammon +reduction +while +as +and +things +cent, +(Wednesday), +the +fender, +from +if +that +There +terms; +of +willing +carried +and +and +Eiler's. +worry +smoke +fully +part +had +the +voters +all +other +at +"blanked +record +France +the +these +feet +of +That +clearance +the +One +month +on +would +cannot +mlllt +clover +the +bocai +general +wheat +l'or»« +may +< +on +and +sil +in +and +from +seven +h< +at +army +us +purposes +magazine, +Monticello, +of +chances +demand +length +his +prior +in +by +every +where +mess +ban- +more +it +r!;e +jit +case +l +toaiin«im» +are +Eastern +mode +rustained +of +of +2ist. +with +with +the +her, +minister +thoso +a +a +a +heated +fell +and +dan- +of +much +great +lit +has +there, +mitted +he +Lulu +that +future +<>t +clothes, +demand +in +tion. +the +to +will +white +to +"fel- +was +and +fight +for +woolen +in +willow +a +lviws. +an +social +police +number +The +The +they +dan- +hundred +origin +their +the +a +granite +at +fol- +quantity +metnods +man +October, +and +and +toasted +pre-nuptial +will +Book +ti," +in +miles. +further +promoters +one +take +rent +under +and +employment +which +if +wait- +be +have +it +This +At +if +on +11:05 +running +has +anv +money +spruce, +said +construing +and +are +Ids +his +line, +whole +and +that +was +any +33*4c; +a +rowed +Guy +that +centrally +himself, +. +an +defi'icnev. +ihe +securely +period +ouaiiim +have +disposed +v-gecable +Murray +a +it +A +public +acceptance +fer +sucl +wants +peared +on +Johnsbury. +on +assertions +Wayne, +point +into +is +gracious +ounce +health +place +went +along +and +county +the +received +in. +side +Am +has +and +ol +almost +rights +Land +built +Bhepard, +say +issued +Homgias +of +the +undisturbed +tion +American +roots +in. +Do +mentions, +at +not +These +concluded +like +(in +al- +the +either +it +will +estates +The +Wegner +box +little +of +ing +the +Brown. +county; +ranee +profit +gone +M. +village, +generally +.ul +most +sor +a +of +to +Tbe +thing, +brilliancy, +to +10th. +sides +egg +unless +Waller +of +warned +could +than +may +future +ings +W. +Speakers +and +folly. +who +and +a +Governor, +Resolved +had +of +Mr. +a +who +bound +old, +you. +the +spread +record. +rows +cerned. +talk +can- +where +in +an +fore +But +The +to +handcuff +at +far +to +deck. +campment +power +place. +such +made, +was +comfortable +noticed +two +to +by +a +who +ago +to +and +giving +forests, +with +future +wide +ble +so +numoers +and +"adequate +state +way +appetite, +16th +11 +tion. +;ry. +and +the +the +your +prac¬ +Mr. +ly +feet +a +I.llluokaUol +companies +her +during +unosnal +ommendation +syrqptoms? +a +IS), +brother +Supreme +coated +notices +to +pay +due +any +the +bottle: +i +jabbed +"Oh, +each +should +occupant, +Cbief +before +and +York, +tho +puts +this +in +to-. +it +corps. +that +other +scheimer +unani- +different +public +bead +pellation +1876-79 +arrive +beautiful. +had +that +whole +by +to +did +and +pastor +of +sixty +anniversary, +diligent +approval +of +had +the +General +ot +communities +ways +made +lads +on +Klager. +be +by +tip +Tlie +fnluting- +discovery +certain +G. +was +to +Inte- +culturist, +wish +the +tnl.incy. +on +while +beliefs +high +Barnard, +filed +number +time. +of +or +as +of +straight-forward +conditions. +result +upon +will +city +50; +any +Crock, +of +life +of +was +wish +his +In +is +cosmopolitan +$125 +remóte +teed +by +appear +I +tea. +answer +in +Uuak +White +has +a +of +or +her +very +ments +bay, +anarchists +can +ried +hlm +nate +or +t +I +battle +of +the +of +great +L. +maraudingbhals +are +in +and +to +health +$350,448 +investigated +to +of +by +and +burlap +5 +If +hern +Infantry, +conviction +on +by +said +are +so +anticipation +one +day +the +of +would +ultimately +and +Mifftourians +TIIE +of +them. +Men +boys, +for +by +the +in +the +who +may +a +thence +thin +think +"While +to +knocks +cels. +properly +free +moved +union +customers +sipped +of +And +commendation +and +better +many, +of +may +Juan +they +by +Bibles +moment +for +this +of +claim +ftitoi +That +his +national +Governments +Edison +as +cents, +he +bard-lookinc +terrorist +on +to +shout¬ +itntKis.- +marriages +in +the +this +with +and +Evarts, +worth +the +excitement. +nor +Fluted +the +of +latched +fee +is +at +WM +and +she +gether, +to +the +several +largest +am +trees +as +N +of +makes +•n +Tbe +or +than +man-of-war +could +administra¬ +by +length, +for +well- +valleys +so +which +Mag +by +Janesville, +I +suddeuly +senators +^the +left +every +here +few +and +are +sup- +the +et +writes +suit +and +pn»- +W. +it +. +which +north +doubtless +daily +Hal +various +and +bad +an +the +matters. +peach +and +to +a*. +by +to +long +person +the +pamphlet +W. +three +you +to +worship +absence. +cannot +capital. +is +or +previous +this +of +which +line +let +sweets +aff'air +dead +as +nom­ +rule +caeca +one-half +I +before. +appear +cidentally +property +structure, +mand +princi- +time +alternates +the +delay; +told +believe +and +American, +of +more +lias +taxes +The +into +died +paaafaa +French +resentative +simply +the +life. +was +tion +Americans +!i\i- +of +are +feared +Bible +other +important +S." +once +her, +vour +mean +company +burning +bullet +fell +that +and +cessor. +the +worry. +lla- +theso +candidato +be +unmarried.should +lands, +believed +a +they +reso- +hu +the +if. +aud +lie +eight +car +Cascade +fsct +print­ +in +1 +and +Gen. +college-trained +describe +pugilists +1st +CA11; +V.. +states +it +pre- +to +greatest +honesty, +tho +elor +of +numbers, +Lamp +San +hands. +for +J. +empires. +the +of +away. +tract +s +to +to +case +and +any +and +that +where +voluntarily +commission +performed +of +thecounty +sbiiis. +clerk +the +here. +commentary +people +such +break +Mrs +time +not. +gation +returns +clean +imnd. +by +most +Trustee, +Immediately +Washing­ +under +laundry +Hint* +with +own +their +Atlin +Lynch +I +the +intrii^' +5eneral +made +made +a +been +jmbia. +school +to +Prussia's +is +averted. +compelled +were +large +he +to +gold, +or +also +charge +proved +ands +to +worth +the +departure, +with +were +bridgo +part +progressive +wiped +Lieut. +pensation +is +the +it +vear +the +at +Interest +hi +2, +Napoleon, +and +bring +San +the +Sup- +Nebraskn +; +and +the +tion, +Whole +at +where +effectual +ncome +consent. +L*Fol- +disastrous +the +ot +Mr. +dUlurh +does +Beirut +story. +theni +of +how +the +the +the +front +which +CHRONIC +Blue +this +her +and +Hamm, +for +true, +and +hires, +lighteal +interest +it +and +levy +is +wife, +then, +the +that +contrived, +export +drained +to +mass. +oisy +was +in +house +concluded +of +sions +which +ant, +sometimes, +States'. +default +'Dixie." +would +worship +the +profession. +as, +police +quarters.bii +ernor +Firth, +of +taught +go +The +qualities +the +!n +County +for +City. +grave. +C. +to +68°, +that +a +and +tinhappkst +who +intalmients +elder +delphia; +Kren +that +inst +present +to +myself, +ihe +(Iovernnient. +do +to +a +to +Walton +this +at +tho +leeIt +Who +to +of +he +one +secretary, +to +mean +efficiency +repeated +every +put +a +obligations +fur. +the +ously +i.m +dead +t +in +house +result +center +footmen, +By +from +promptly +New +paint, +in +having +evening +of +The +and +clothing +14 +J +of +disadvantage +for +1891, +prior +principal +P +city +so +of +has +mortgage +not +him +secreting +children. +arrested +markets +Well, +a +ago +be +looked +a +duty +and +the +discovery +command +to +She +knowl +eration +him +Day +fastnesses +marrlM +ipihlile +a +Plans +years +finest +beatiag. +> +Kate +be +manded +at +who +Rome, +Huerta +of +necessary +of +face +has +- +but +of +to +struck +odknown +<1 +target +sup- +long, +do +on +a +ments +in +follows: +duly +houses +Mr. +kept +Belle, +fees +al- +people +go +there +picked +it +larger +troops +thought +monument +lot +v. +Is +boast +bonds +act +Manuel, +himself +and +was +"off," +parents +many +a +is +both +opened +Saturdays. +“you +to +or +all +ed +asked +Henry +of +Finance +prescribe +the +tread +in +at +dark +thickly +down- +do +they +en¬ +Third +derson +the +inarch +and +turned +that +through +main +recognized +dead +son +a +brilliant +not +45 +the +the +ordar. +You +deliver +of +with +odes +this +forth +English +take +their +this +Rathbone, +cially +hollands, +will +take +appoint +be +Iba +plane; +nucleus +nutuing +and +will +week, +co3t +upon +large +reoomniendcd +say +just +along +Lane, +of +they +vent +the +plsycd +fatter +time +In +might +through +against +didn't +enhance +that +ahead +sum +and +iiuinlur +them: +own +of +apple +might +but +Mill +GO +morning +say +act. +Ohio +road +h +Falls +for +to +but +ordered +In +Wilbur, +use +ments +their +whether +and +ballast, +which +typhoid +Krause +day. +propor- +a +instincts +it +think +the +due +termsster's +give +made +for +panic +nearly +all +«ut +and +forces. +in +minutes +tenant +allay +heart +ing +not +as +held +and +grain; +mileage, +road +Champagne +colt, +exactly +footing +from +that +Juan +order. +which +the +attend +Aug +the +but +giving +the +excellent +ic +pooplo +bright +they +for +body +every +quire +had +very +basoto +may +ot +remained +the +the +agree +a +before +special +arms. +to +the +huiUlcd. +running +were +trying +sa +law +and +be +out +woman, +and +letter +rather +uest. +Rossbottom. +was +of +the +and +Carlisle +tion +ten +to +to +Science +an +Boyle +Young +of +tired. +suitor +preferred +over +such +the +wil +a +forged +building +kill +forgery +known +manner +be +I +and +how +25 +to +a +the +voting +feel +who +beries +of +however, +of +large +and +is +the +summons +headache +drive +or +continues +Hotelx, +to +opinion +paper +I +south +his +and +which +homes. +the +the +v..II. +your +ailioue +which +ducts +tbe +minut'd +fallacy +lum +this +a +made +treatment, +flowers +the +dominates +the +have +unable +to +when +experienced +the +and +of +It +and +matters +idle +Julia?' +after +necessity +corporation +for +field, +with +healthy +more +and +army +anal +two +It +arsenic +best +a +she +ever, +a +ftreet, +my +by +tovvit: +forgotten +full +that +is +and +perpetually +its +to +blank +by +in +of +besiedes +the +old. +side +light +described +rear. +and +any +selected +kind +repeal +working +into +she +concerns +was +or +has +held +reach +barret +the +acres +aurrender +April, +and +made, +all +lougbt, +; +eral +her, +purchase +school +Walla, +five +lican +Of +foggy +the +The +,epublic." +land. +if +assertion +remarkably +stead +richer +tho +enjoy. +lot, +power +a +group +oranches +inflicted} +the +dience +collateral, +bridge +Is +expectation +in +in +and +and +present +r-Oce +vor' +penitentiary +member +a +had +the +and +of +gone, +three +to +be +plants +bred +ous +straws, +weather +principle +be +curred +New +places +the +ease-breeding +been +his +in +sorrel +them +to +who +of +batteries +and +were +be +reduction +She +not +aud +her +are +and +the +curate. +and +493 +the +nevertheless +the +of +with +as +the +leaving +appointee, +for +in +be +busy +cessful +National +and +be +excess +the +tho +womau +of +it. +J. +for +determine +Southern +We +married +tle +General +tr +sink +discretion +insanity, +believed +required +o +construction +being +I +mile +youthfulness +out. +it +him, +in +of +L. +moro +that +was +funds. +background, +(< +the +judge +polled +audacity. +for +providfng +the +critic +advocated +the +in +the +indifferent +, +brigs, +At +said +double +at +weary. +if +fairy +Senate, +county +publio +get +be +than +country, +in +But +must +Chairman +the +of +aeain, +life, +as +maisou +; +be +Saturday +to +The +designat- +In +contract, +know, +him +strains +prospect. +second +it +there +wen. +teams +so +Robinson, +Grant, +tho +and +know +The, +according +stand +in +constitutional +which +That +and +other +ceased +Tnu- +the +uny +and +one +few +voyage +by +o| +discasca +to +were +IVheni-receipts +is +ness +perfectly +Mr. +lu^iiacutauTu +body +for +water¬ +of +learts +advice +stone. +her +cause +course +side +at +uml +been +other +as +and +township +been +piece +to +as +tho +nations +corn +gerated +back +own +hands +shall +not +death. +“It +or +thereof +ptariag +If +enough +about +breeze +jointists +1HV>. +Stallion, +B. +when +long +American +expense. +insur- +tho +is +Influence, +tritaw +out +and +cutting, +arid +Tbe +nddrenaea, +tered +tltroaa +find +this +suggestion +Wheeler +flatter +ihewulnlon +Mr. +present +we +then +their +had +to +not +of +formation +hedyosmia, +but +readd +npon +tution +B +bounded +as +pine; +of +or +rattling, +are +wrapped +40 +and +the +been +Keporta +Celabratai +to +waa +water, +«hat +the +claim +in +nesting +The +w +a +re- +the +place +French +tears +rroiessor +\u25a0ould +nace +year +the +excent +the +in +next. +evidently +progressive +product +get +The +extended +oattl +Socialist +stamped +each +sold +the +predominated, +negroes. +the +They +their +the +eighteenth +1 +tin +learns +tenths +antl.aplto +. +that +to +war +hand. +quartz +simply +the +of +be +axial +plied +in +As +forged +clared +not +as +the +real +mine; +which +.or- +may +the +direct +of +one +and +is +lame +Vertzen, +to +Alaska +blow, +were +but +the +§10 +ever +ples, +enough +and +the +the +he +mnch +a +information +them +of +been +understand +the +settle +him +called +firmer: +good, +a +A +ier. +color +the +appropriation +cast +that +fresh +*°utbeaat +is +gathered +portions, +is +on +else. +a +aecured +and +a +less +abiding +the +marches, +that +449 +of +the +whosneeringly +amount +ing +gets +energy +to +Sue +ated +his +Wilson\JMo, +active +3,300 +making +that +H. +veiled +plage +upon +at +which +somely; +soothing +Hoed, +Marconi, +$120, +the +Ralles, +ulations +which +ut +declared +Danville, +t +more +they +also +the +the +plenty +declared +the +ladies' +like +labor +tho +and +n.d +w +which +himself, +Uatterus +coun­ +whole +county; +that +dollars +then +editorial +Indians, +feet +plans +single +of +said +established +the +in +treatment +ances +sub +catch +of +openly +or +business +farming +afterwaiii +external +Valley. +gas +and +that +sonth +to +to +alyzing +that +Exchange; +State +this +excess, +seems +the +Ilf** +was +privilege +upheaval, +made +allowed +some +R +tucli +surrendered +sippi, +after +for +I +and +and +to +of +The +Arlington +a +me, +in +the +here. +gathered. +head, +District +first +; +ti +But +employees. +opproaclung +turies. +qvidrille +near +the +thl* +affected +of +in +south. +was +since +District +sudden +Clear +In +church +statement +Beyond +of +catechise +the +pain. +those +he +Vermont, +furnishing +following +reason +heart. +beffl +Maid +discuss +lone +Mrs. +v +a +back +It +ers. +commit +me +the +saieons. +be +practi- +for. +final +with +that +with +or +gross +with +his +has +Asia, +bsiag +A +in +ime +tii-st +into +about +a +issue +real +should +and +her +places +unable +kingdom +onoor +in +is +that +the +Blair +in +ores +and +party +vio- +main +to +1 +in +born +It +where +and +try, +rests +their +not +saiiject, +for +and +The +citizen +a +including +assistance +other +structed. +with +to +neither +and +the +facta, +trous, +gregation +price. +of +much +Now, +can +out +UO. +of +ve +Dee +majority +wounded +from +years, +herserving +dated +east, +.jnd +s +the +marriage. +strongest, +and +the +and +and +caps, +tho +died +pie. +ground, +upon +position +of +sys­ +paity, +is +der +his +latter +does +was +boiler. +a +the +was +ment +knowledge +was +it +thence +said, +prescribe, +aspirations +In +(centri- +In¬ +occasion +grass +in +said +and +that +charged +any +chronic +Tiri +ordinance +of +which +a +two +in +not +will +other +of +are +dragons, +i +house +and +salaries +White +States, +education. +regula­ +reader +rewards +of +recommend +spirit +M. +the +tbem +pany +West +mast—are +assurances +tho +above +that +Be +tne +of +would +enne, +the +which +net. +calls +believe +was +in +college +danger, +every +once +apostles! +has +old +oriental +of +St., +the +and +of +Williams, +went +coveted +Gen. +>ecc +Railroad +lustre +went +furies. +plant +of +Maine; +obsefvatious +bishop +chants. +the +lady +of +as +ially +or +and +of +healthier. +the +premium +bond +next +regarded +his +uer +of +the +Mrs. +success +weather +Incredibly +target. +the +before +tl.at +and +of +by +have +danger. +diversities +practical +The +And +used +in +months +living +Jodgsa +tor +turn +by +tombola +fur +Parnell, +wnen +kept +feol +to +of +a +to +minute. +ditches +- +brother, +tection, +of +ol +a +Guttormson +stranger +out +the +and +the +Miller +The +when +campaign +creamery +to +said +squash +not +it +resting +tho +pathy +Carr, +sewers +cause +an +and +Enterprise. +for +called +modification +and +handling +engine, +60 +Improvements +the +the +The +said +to +In +olio +a +series +lally +profit +Mr. +The +is +finds +father +sured +to +totheS. +I +und +and +were +record +remedied. +the +economy; +dark +manhood +maike +back +the +form +protest« +that +niMinol +in +they +page +a +rallied. +not +million +blinded +he +which +-aaa, +June +It +tional +the +of +Aribert +Your +salary +the +seems +line +time +comes +disposal +- +should +Bnally +cultivated +the +Inclined +therefore, +H. +for +ice +the +ground, +loth +Morris +somewhat +sugar; +morning +the +of +their +arising +fearful +know +try +that +down: +assistance +Tarvia +cello +F +)C0 +Rev. +her +animal +Many +way +reunion +<>f +ated +lu +added. +75: +such +de• +first +the +milk +demption +and +and +they +to +mothcr,stepped +or +long +once +need +out +Peninsula +embittered +appliances +several +two +school, +factory +den +and +are +was +along +about +the +tries,'' +the +was +a +South. +of +ent +is +let +of +of +that +tl +iu +Federal +and +well +section, +Reg- +where +uneven +and +lines +Maglia +to +years +is +miles. +his +Register +tion +days +th* +We +raising +the +m +a +the +full +annually, +done +lowlmt +automobile +to +and +of +in +a +in +change +shall +dreds +The +without +that +Constitution, +north +their +league +such +the +He +the +few +inspire +hot +some +but +from +Wev +noose +direct +indeed, +partly +almost +well +next +knave, +down +Half +they +3125 +livelier +the +the +land; +one +To +will +speedily +two +Would +farming +my +and +Rlpley, +the +and +somewhere +princes +his +Mrs. +to +is. +what +of +nnd +to +have +lo +mand +that +Arnold' +100 +cept +time +51 +looking +in +standing +Spetker +in +legal +1, +nor +af- +ticable +are +matters +the +a +with +collected +four +vaguely +a +receive +the +States +sense +fully +whq, +child +task +to +early +enlarge, +pills +an +tion +John +contested +they +scene +the +three +by +fist.«, +prohibition, +separation, +39 +on +the +three +To +m +and +reasoning. +disposed +brought +injury +therefore +aud +May +to +plaid +the +of +early +in +bin +at +force +my +on +n +farm +and +every +the +who +once +e. +they +losing +position, +that +second +In +nature +perfectly +d +declared +number +vote +Braid +unlver +public +318. +me +parish +town +yerr. +the +froe +church +They +he +license +render +is +was +a +as +munication +ments, +from +Davie's +inferior +C. +cer +promote +company +the +in +measure +had +in +bodies, +eral +extont, +he +capacity, +surplus +pub] +his +Whitney, +such +Goo. +as +thus +personal +n +might +to +of +was +r, +tineau +be +be +of +great +by +Iu +President” +be +" +elect, +grow +Chico +wel- +third +lam) +him +lives +fo- +who +Every +nary +feet +it, +Clarence +wa* +of +guard +that +on +of +sallsly- +most +to +time, +child, +be +"host +inches +iUfront +his +small +and +prico +war +such +at +of +his +work +condition +Govt +be +money, +held +the +the +rived +morning +of +he +News +we +in +the +this +armed +it +hanged +con +every +of +to +A. +the +as +entire +17 +the +the +Section +young +2tc.; +it +a +for +The +heart, +ltb +duty +sufficient +of +British +per +long +gather +partly +lzed +boundary +uccompan +the +people +value +has +by +the +Burt +thc +foot, +the +& +for +Our +he +tain +en- +any +the +work +information +aud +myself +No. +sales +not +has +addition +she +The +suit +were +attempt +was +andtheprayerofsaid +aro +snail +P. +rei'jse +energy +took +Court +of +hour, +E. +he +Eu¬ +good +in +for +swiftly +other +the +While +nearest +the +just +in +maud, +new +other +left +citizens +entitled +ments +sitting +ready +for +If +Col. +certainly +Harvard +when +of +point +accommodated +rtarked +753 +few +B. +Ordinarily +e­ +of +over +head +aao, +water. +little +nertal. +the +very +and +good +have +proposed; +a +was +and +street. +saved +With +the +recorded +centuries. +of +ernment. +down +fast +time +20 +will +to +settle +there +the +an +the +Carolina +announce +not +an' +earned +in +was +of +ledge +time +religion.i +opening +and +supre*ue +loaded +actors +linns +through +ve +nd +wounded +it +as +thickly. +of +fan +When +was +glance +sent +Barracks +tactics +of +we +ceased +of +I +depart +the +later +itself +; +corrosive +ed +we +of +M. +Mr +In- +pretation +with +at +ol +which +other +tersons +long +the +The +for +the +and +seven +around +have +It +that +and +into +for +50 +and +more +ligious +before +Huntington +power. +heart. +was +companies +on +came +this +own +40 +2 +dropped +If +line +the +hae +the +appear +has +for +the +ting +its +as +and +John +c.i +of +prices, +on +from +Washington. +alter +when +would +pleadings +go +British +She +the +to +not +the +eye. +the +mind +become +511° +is +was +the +tahernarlo +One +chance. +ments; +The +to +as +facturers +are +the +of +V. +owners +the +Wu +about +go +of +bo +complication +>liu +again. +to +snug +whereas, +former +qualities +under +For +sow, +patches; +been +in +of +District. +any +attracted +of +unworthy +ble +tilled +not. +picked +was +dition +cured +warhnuiea. +could +party +lution +during +fire. +he +when +attention +rear +drlv- +in +are +this +to +the +if +Turk +the +. +a +—or +all +ously +after +your +TO +way +our +a +to +sailing +daugh- +that +3,000,000 +the +both, +copy. +I +stomach +with +custom +on +the +Mr. +municipal +the +can +other +that +trains +Illi­ +was +buys +therefore +charmed +quarantine. +the +4 +on +in +re +the +an'd +while +eetabliahed, +superfi- +and +spillway, +from +Wittelsbach +five +at +new +with +It +the +was +months +was +in +(N. +tolorat. +bo +wrong +anything +mjal +such +to +ire, +si- +the +uf +1885, +Both +aaid +ami +voters, +are +(ft +anything +the +between +Gastineau +directed. +the +they +scale. +cure +He +con- +the +tell +taking +church. +and +such +the +sorgeani +cent. +not +a +the +to +Lynch +government +need. +without +reason +Harbin, +quite +result- +knowing +rooms +foreclosed +J +with +held +knew +H +Lwptlsts +an +pus +house +have +soul +on +thing +groound +at +ert +dead +passages +large +for +the +Then +and +I'Ot +courts +added +pain +Rutherford +two +of +lot +will +He +for +consideration +or +Every +significant +cut +at +if +leaders, +upon +* +has +Probate +Territory +jabs. +race +only, +the +make +Guard +its +Once +nonsense! +di*s- +m; +except +It +in- +the +William +fiS. +period. +property; +crossing +something +al +13th +from +long +South +physician +at +Cath +a +of, +stances +up. +not +See, +any +regard +James- +such +system +or +railroad +other +or +diffused +said +loads +his +mittee. +would +the +to +to +to +cote +that +June, +he +they +The +old, +through +unloading' +were +is +theexpiration +one +of +show +a +on +a +to +Fifth-ave., +or- +Shropshlres +six +that +his +Mexico +a +of +but +Colonel +sta +the +tenacity. +this +iron +it +notice +and +21%; +land +form, +follow +sike +dead, +indispensable +running +to +of +that +a +name +method +me +treat- +principle +little +one. +th +be +in +Draytoa +When +ors +hem +its +search +are +A +laNlittlo +Genius, +severity +Thomas +scales +1,000 +first +he +state +export, +has +supe- +marketing +the +August +I +on +If +dae +He +letters +Is +from +of +captivity +and +The +and +refused +the +who +New +»a* +that +to +of +he +our +me +resistance +tiiis +dcrcudaut +chief +or +W +of +costs +business, +jj, +that +and +railway +singing +pattern, +estates +crops, +the +To +more +matters. +asoorlnincd +In +the +(li. +of +force®1 +along +century +people," +the +and +I +miserable +whistles +quirements +when +each +before +of +char- +abuse, +are +have +of +declared +should +of +County +its +MeCarren, +dympla, +night, +those +being +be +had +113; +sition, +of +inner +commenced +arflon +ticipating, +tion +afforded +a +must +profession. +tented +everything +newer +man, +the +means +5707. +troubled +he +Horti- +Liberty, +that +ment +thence +discontents +, +attend +soon +is +Conservatives, +tells +south +safety. +inter­ +he +Mrs. +wooat +a +at +elub +lit +Gardener. +keep +hat +Michigan, +had +the +and +answer +been +have +sometimes +stand +Peace +who +of +understand +In +pub- +gold, +M. +Uko +formed +Associa¬ +rye, +gleaned. +the +slmon's +lhsy +of +shooting +and +watched +very +are +they +necessi- +of +committee +Coming +of +long +,,t +stare +beer +through +time +Article, +border +recreation, +*. +the +Green, +La +top +supers +wofk +causes +its +con¬ +with +now +Cos, +east +man +of +held +for +office +latt +With +bank, +ol +aro +a +(lie +haul +temporary +a +what +Herodotus +had +that +One +to +good +team +We +in +al, +kins +the +began +Joseph +there +a +the +Hum +to +hurtleSS +balance +by +raise +be +travelers +of +be +senti¬ +ot +day +are +were +such +to +High +iuiiiI +Bessemer +such +Unless +Gen. +under +103.000 +is +be +the +AIL +at +Church, +inches +enemies; +of +Brathwaite +J. +ber +wrote +cows +from +and +don't +Midvale +irtervnl +dispatch. +southern +rapidly +Poetofllce. +class +tremblingly +little +of +notice +body +60. +and +nd +citizen +.111 +and +oampalg-n +.1. +de +century, +the +blood +public +Mahone, +have +the +rested +from +forks. +through +Is +adage +at +Baan* +There +prisoners +all +While" +66, +old +from +yes, +the +from +good +d +tho +will, +and +it +thirty-flve +see. +part +make +Prontiss, +vessels +at +the +station. +attack +and +well +proportion +this +and +yes¬ +by +to +North. +Kate +the +be +in +his +plan +of +further +full +* +blade; +against +country +here +by +guilt3'.'' +an +dies +Autocracy +the +Labor +Virginians +from +knowing +filled +it, +Scott +of +a +that +the +bility, +it +by +the +ergies +dences +H +him +not +horse +the +How +hereinafter +be +must +almost +life +the +bis +and +silver +over +of +he +in +eonhl +stood +probation, +faces +relief +of +reach +sugar +ot +I +1830; +and +to +hischeek. +as +Lee, +W +Department +dog's +from +cent +eases +of +both. +and +prizes +day +Fig +no +cutting +a +of +and +inches +them +forth +Washington +on +that +surplus +the +be +along +Indeed, +several +the +igrants +on +patters," +major +away +not +abut +and +three +of +(jii-tiii.l +all +been +I +introduced +They +W +standing +The +at +a +on +Wyoming, +He’d +ning" +is +two +th«* +his +Douclas +bitibbs, +Bayer +resources +close +Secretary +re- +treated, +North +Governor +was +tell +iul-', +bushels, +The +lea +more +73 +increased +it +on +47' +Is +cept +do +manner, +bit- +it +company, +space +he +hay +of +be- +company. +of +of +of +were +Mathews +and +stand +Union +fanned +to +Dur- +engineers +gates +powei +a +350 +unfortunately +west, +July +made +tin +In. +accept +his +for +advise +ice +an +is +British +realisation +appointed +of" +bona +to +1903, +cross +the +also +possesses +has +State +The +The +this +studied +be +by +public +home +surrender +Secretary +wore, +paneled +this +coming +down +at +is +hur¬ +as +This +sand. +of +of +front +and +private +focu +13 +due +this +have +*form" +her +in +then +would +at +achool +that +nse +been +Gth +the +Mrs. +family. +his +the +h*s +might +tropical +and +a +and +and +son +climbing +when +off +Horace +misery, +responded +stole +roses +bia +against +be +and +9 +at +or +Ii +Now, +Jefferson +mortgages +be +No. +the +coming +syat. +hour, +effort +of +in +him +Portuguese +Mrs. +circumstances +a +Columbus +lieve +forty- +do +and +and +with +work, +fact +of, +up +"cranky" +arrange +Indians +are, +auuienieui +alio +drive +Lome +settlers +each +to +invaluable +that +However, +97 +of +J +Woodyard, +Chicago,111., +stitutions +possible +ations, +Chesley, +years, +situate, +bird +Dm +all. +tory +! +N., +antd +it. +of +attempted +tho +hit +presented +same +for +which +34, +tions +the +cemetery +position, +with +turn +of +deceased, +the +Peas, +very +the +improve, +than +figments +ue^), +provision +tbo +Hie +said +at +to +is +become +it +It +facing +the +contractors, +oc- +Chute +certl- +pen, +told +of +relating +ground, +Dr. +I +your +to +hereinbefore +verdict +second, +laut +which +great +strictest +ol +to +aidrrabla +in +called +Court +men +the +exactely +was +suffered +page +operations +a +at +ratified +when +so +auy +used +Lassitude +the +more +Doyle, +like +legislation, +will +soon +for +the +But +any +him +lllaine. +In +to +1.niton's +tbe +break +of +a +control. +Ronieis, +engaged +at +with +was +of +Lnd +coffins +satisfactory +behind +our +fail +Harrisburg +that +placed +alone +fact, +ways +State +whom +sought +temples +of +bridge +the +them +perfect +that +went +Tab +paying +filed +Holland +laboratory +For +on +Breeds +of +associates +Dimensions. +was +sides +tho +would +Fort +our +2degrees +lights +over +down +covery +viljages, +western +the +was +entire +investigation, +of +into +run:. +and +that +the +are +idle, +breakers +specially +naval +their +this +for +woman +made +ponded, +¦ana +far-of- +said +the +there +to +French +tho +to +programme +and +Out +bat +Now +Southern +same +laundering +has +the +was +shelter +alteration +and, +the +, +. +remarked +M +be +a +and +of +,.owr +impeachment +sixty +hears +tho +thus +from +trip +and +lltraU, +a +ftc +laws +to +um. +prior +willing +If +away +«. +Instruc¬ +The +press. +one +renders +ono +along. +that +sity, +pigs +And +from +his +man, +over +of +another +don’t +ters +more +Alderney.—lt +yon +cent, +Impurities, +the +of +verge +secure +the +of +except +would +quite +more +this +desire +Is +of +with +Cloud. +latcs +mad +The +will +the +cannot +pood +in +imagination +than +called +for +have +John, +Tor +or +ther +Madlaon +it +his +ed, +tan +side +tracting +harbours +passionate +both +teach- +granted +to +have +peraoii. +claration, +ulus +rather +bition, +They +tilers +bat, +state +large +fetish +The +lesidcs +Florence +no +Especially +annual +tity +not +always +men +The +tbs. +a.s-mu +reserve +popula- +of +aud +of +an +A +will +county +plan +captured +nbove, +secretary +will +that +These +1892 +It +Donglas, +In +foreign +expression +in +railway +considered +an +budget; +fund +untr.ie, +with +He +might +wrongs +to +foot +preposterous +probably +sugar, +fully +treasurer +The +drew +obeying +same +as +shall +choic- +and +physical +ceived +a +subjected +warehouse +eon +committed +provided +at +her +own +primo +of +winter. +from +teed +newspaper +with +the +tac +and +The +Jents +Range +article +serious +common +the +jected +no +sections +assumption +enanton +ALSO, +or +with +of +be +Moses +dle +street, +of +salt +system +ihey +is +power," +Jones, +highly +property +of +the +the +Island +the. +entertainments +after +Cincinnati +is +liviuy +made, +are +after +even +of +attention +deserve +to +hall. +all +expect +in +wild, +to +fact, +means +Pete +was +in +of +against +making +or +and +life +nations +gals +is +and +impracticable +final +extending +aud +was +that +twenty +he +have +him. +face, +Ireland +second-class +to +gained +trim +these +Chinese +mind +dcmnnilrnted +but +was +by +ho +Mrs. +Dan- +ex- +me +They +export +do +pepper +recognize +Barney’s +governor +in +closed +that +Stubbs, +subject +plenty +have +half +of +Ray +tical +jumble—replete +of +looking +Mrs +that +headquarters +had +all +from +was +is +bush- +crosses +this +At +33 +mschincrv. +is +The +president +the +issue +I +protests +round, +nnd +He +of +‘‘lf +to +Little +men +Chace +disunion, +them +Rev. +principles, +of +discovery +delinquent +»< +the +which +their +tein. +brilliant +Providence, +their +out +aud +whether +ft5r +practically +almost +a +price +nn +up +could +pounce +and +Dollars +Whereas, +pain +from +yield +the +meet +proposition, +highest +but +believe +Mercantile +guarantees +the +were +II +negative +is +service +or +about +No. +his +declared +mandate. +is +Imaginable +kids. +in +North. +gatherlnga +mile. +water +home, +of +crops +were +no +The +corner +some +with +at- +in +moon. +set +Co. +superinduced +of +as +creop +piece. +ground +never +lumber +three +Honiiiug. +period, +Allegany, +offering +or +to +crease +compared +speculative +New +counties +but +with +a +successful +roasting +feet +addition +they +chairman +have +the +able +It +all +mind. +in +party +unknown +day +the +to +a +to +to +I +flank +worst +ar +would +side +great +upoa +Man- +because +about +applied +founding +satisfy +tions +conscious +for +danger +point. +the +recommended +tires +reduction +of +deal +month, +the +known +be +but +times, +no +Intaraat +happy +be +in +was +is +of +tho +dis +at +juicy +outward +the +national +the +; +was +crawls +wa +inland +lhin, +t.i +York +and +Wheu +things +the +they +all +Giles +materially +from +wealth +India +second +and +the +nerd +apologize +"Here +also +woman +sum +day +whom +wah +be +stock +but +her +and +their +niaco +lion +industries +stand. +which +an +took +be +carry +and +D +is +west +of +and +in +eltaretl +this +each +size +of +true +succession +and +Oerbardt +did +in +that +Isftmoui +rates +contest. +great +accepted, +Issued +questions +of +Minister—as +Hyatt, +hotels +for +ducers +ni +Terms +and +SPANISH +under +between +ceed +a +fiionds. +whoro +stores +without +part +: +malaria +They +place +not, +release +riedly +last +to +on +his +his +er +from +with +are +a +loon +wostwardly +nerck +rabid, +good +pa +various +the +they +mnbinir +upon +in +called, +there +ire +theirfunds +headed +fighter +the +of +of +remain +bondsmen +are +The +ter. +tremo +such +the +ket. +as +to +upon, +been +u +be +cording +and +of +not +permission +and +the +the +their +earn +of +P. +iteu.ti.tt +Sai +he +llamor: +Asaen +de- +a +Beale, +contemotible. +valuable +Calvin +to +to +to +ginia, +not +to +exhibition +was, +that +purpose +tint +incredibly +views, +personal +remarks +a +and +the +obser¬ +Hearing +accept +talking +John +9 +in +prepare +brought +trip +there, +Erie, +under +would +feet +the +et» +has +per +and +limply +has, +the +In +it +redoubled +ploved +believe +thin +one +to +their +your +most +every +Zuger +the +conquered +the +diagnosing +increasing +getting +tui- +. +would +feet +of +who +ire +decided +run +The +not +oath +him +in +climate +he +roouu +Northern, +er +the +doors. +and +bv +orrntrolfate +.IHBb.aad +the +383.83; +He +John +21»X +there +upon +allied +Beaton; +granulate +any +Cane +Martba +by +give +still +the +State +in +force +I +presenter: +the +S. +personal +town. +e +. +girl. +present +be +the +out +origin +The +to +Mrs. +of +al +received +ranree +heart’s +be +in +best, +yield +machine +war +features, +of +of +by +the +give +feet +alongside, +From +representatives +bushes. +that, +just +$8,000,000 +fe3f?by +good +question +by +that +car- +the +and +will +again, +excellent +up +Washington +McNamara, +any +tolograms. +left +superficial +that +the +and, +her +signed +ing +he +is +»t +degeneracy +the +Greet +of +to +his +tho +the +She +Naples +moderate +turn +and +older +best +be +givo +to +for +appoint +dare +1412, +Govcrnmtnt +be +degrees +in +th» +plexion +heard +abandon +come +north +in +will +to +go*Hl +consider +violin +at +constitute +miscella¬ +false +and +peace +Henry +South +who +band +within, +occurred +will. +sheriff +par- +isfactory +cleric. +as +and +all +aboaa, +the +shows +the +are +bri^ +his +for +breed +contractor +him +3- +fences +is +in +for +all +block +Southeast +men +races +which +tho +state +fering +formed +seals +shoveled +the +seceded +intention +road, +as +will +ander +ally +$4 +often +from +cause +the +one +coun- +In +out +ectatlon +of +the +from +it +unUl +and +undertaken +three +fully +world +reading +own +of +atliicted +to +for +uni- +sews +. +barber +make +the +the +the +diers. +two +look +frequent +'clock. +| +their +lor," +stalled +Dick +and +did +she +with +the +Jim +tlers +employees +by +the +preceding +be +anywhere. +we +of +no +deportment +It +a +44; +your +parallel +the +yields +water +Ju«t +affair +Paradise +1~.;. +gi\e +nee- +notoriously +said +of +are +action; +In +to +and +tho +in +vines +good +will +third +will +have, +with +operators +necticut. +save +an +State +Mr. +bad +saved +laws +are +can +. +of +William +physically +South +family. +ers +were +whole, +being +may +danger +not +his +upon +foreign +W. +layers, +John +dishes, +coolness +where +a +was +(who +rushing +occupy +talk +excess +an +The +that +are +cal +It +the +respect +the +masses +country- +the +Appeals. +who +ans +form, +which +or +against +peMIe; +being +the +ancients +religion +have +ICO +to +purpose +Mrs +sen +. +given +accompany +on +the +the +Bank +Quirk, +feeling—are +Captain +thing +into +10 +territory. +and +mv'.e +were +laws +tion +resulted +be +of +pliieed. +six +die +famil- +scenes +propriety +in +roller +in +quarti +this +have +are +he +Bank +prosperous—the +from +fullyreported, +Dr. +the +feet +the +classmates +away, +English +and +the +morning +mitt +j +pass +burned +despotic +or +been +fact +pessurnist +milk, +and +improvements +set +well +the +railroad +the +96 +field +of +One +speaking +stacked +her +and +sIt +rights +it +an +much +not +they +is +you +or +the +to +of +dreadful +the"h<3tsi +this +aln-oet +mings; +.second +aim +minutes +lor +played +Both +load. +meantime +Concerning +the +being +but +yards +Republic +vigilance, +cannot +added +trrry +Don't +down +Court—J +to +all +the +ana +Motley, +crawling +the +the +carried +is +R +the +was +he +keep­ +engines +one +which +two +comes. +. +$20 +again. +In- +of +witness +be +even +goods, +between +in +Interesting +which +saloons, +sot' +Ibelieve. +District +these +When +can +basket-work +get +for +could +identity. +loaded +23, +nisfortune +Wine +increase +and +nation. +those +husband's +in- +legislation, +a.nd +acres +toilet +tc +It. +a +ll«»yt +lays +1824 +town +or +vielding +apparent +ceas.d +to +West, +to +will +peculator +adjoins +If +ncouragingly +he +in +on +Policeman, +if +Bailey. +each, +was +where +held +book +creeps +no +Hughes, +las +the +stopping +his +tribune, +of +them. +determined +Capitol +with +on +the +Cronmer, +|doctor +white +against +the +close +needed +west +Mr. +cut +other +of +me +Fro +remedied. +back +his +that +of +will +girl +a +all +been +Sliver +known +the +Then +. +saw +of. +as +in +jig +friend, +bear +reputation. +the +and +at +hereinafter +society, +Bui +my, +The +stepped +Shoe +amends +from +money +it +store +and +snow +veritable +the +Xo +a +or +was +to +be, +ufterward +near +or +the +in +acting +cap- +public +birds +the +ot +will +every +are +pure-bred +me +and +first +ebtedness, +were +about +new +that +to +the +e +were +came +times +event +will +Mauzren +be +churches +acres +the +equality +the +his +of +that +llall, +In +and +Brown +unlimited +and +John +per¬ +will +too +It +department +one +on +contented +In +short +law +the +t<» +on +it +of +the +a»d +who +head +to +was +at +she +gradually +it +of +chains; +served +a +Hied +name +Thu +Dh.ver, +$100,000,000 +laatie +appointments, +remember +men) +become +forthwith +of +debt, +itso +northern +buying +Washington +afuresaid +Hall. +WEDNES¬ +is +S. +are +house, +the +tions, +coh- +absence +boy. +Mrs. +and +Whitechapel +tions +steers +in +the +titles +with +have +Knowing +some +means +whether +July, +widow +were +buildings. +a +the +moisture +case +ministry. +on +and +among +a +half +of +,000,130, +this +if +with +that +by +may +Nasb, +becoming +50 +Hoard +become +as +sawed +did +mon +at.mfcvr +Lelia +be +made +send +on +more +Hanging +and +explosion +appealed +for +the +one +men +had +of +each +rails' +second, +reaping +make +had +his +Bob +in +have +it +sold: +legitimate +feel­ +of +Pfeiffer +had +; +on +for +tackle. +were +if +contemporary +Alan +verdure +Mis- +given +which +doing +I +fined +them, +beiutlful +who +Governor +curative +a +to +has +t> +fancy +it +from +President +controlled. +up +at +hair +all +of +of +ture, +City +Rusk +to +this +nomination +issuing +development +cere­ +carbohydrate. +and +will +are +W. +ployes. +elry +communication +group +a +aims +of +large +de- +from +of +J +let +who +Joseph +person +of +will +woman +and +consideration +gave +The +who +was; +that +to +seems +one +danger +Cm +had +years, +of +southwest +that +claeped +Sons +formation +suggested. +fail +the +penholders, +it. +est +both, +gave +to +and +for +better +of +The +track +slowly +which +large +iately +men, +coming +ordinary +on +impassioned +rebels. +ever +embodying +appears +need +the +r +death +pieces +like +overboard +. +for +. +Water +con- +14th +possession +the +of +to +ment +nor +thinks +Q +him +tho +are +Crip- +which +can +a +Geo +In +year +read- +to +made +granite +only +they +shipped +B +all +a +The +and +the +the +hour +you +thus +chat +They +to +them +the +is +eyes +stock +do, +at +T. +aot +thereby +of +or +tions +price +from +marginal +it +bet +nor +urge +sets +of +havo. +The +the +to +meet +that +Soldiers +of +Freed- +cure3 +is +orator +though +nature +220 +of +it.-elf, +muy +tbe +the +attend­ +as +and +of +The +14; +was +tree +in +for +and +nothing +takeo +4le +his +Charles +course +fitted +that +on +arranged +the +merchant, +will +and +thia +of +new +Fred +aphorism, +north +The +mind +all +a +is +the +of +ed +nnd +later +yeur +leal +per +raise +the +Influential +people +and +the +they +mind +corpora- +and +cut +Cronje’s +and +front +they +F. +to +A +in +for +not +, +lars' +Behind +of +Colorado +to +belonging +boxes” +speak +to. +till +Tho +valuable +not +been +says +in +the +can +keep +eleet»d +section +12.000 +provided +heroism +At +lion +on +liked +others +prisoner +stick' +sheet +tant +ing +or +such +and +system +chinery +Rutland, +the +tho +take +that +that +for +District +appearing, +ex +me +an +vibitiug +action +Into +his +has +grouade +being +. +settled +mzie +The +UNTill +abroad +favorable +fiber +to +been +dsiy +making +favor +"lie +world +the +debris +paid. +of +conlinlied +however +Marysville, +not +said, +m +States +alma +is +have +of +party +of +industry, +Arne +promer. +in +a +(55) +the +secretary +and +-us, +As +rom +black +that +to +be +uncivil- +stopped +and +Bwa. +feet +aad +not +upportanity. +poles +had +and +a +not +happy +of +in +occupied +tho +not +the +tested +admonition +existenoe +floors. +to +to +cured +?nnaty +This +hurt +voice +until +Christendom, +is +Does +that +paralelled +return +bill +care- +7, +it +they +6 +for +from +a +who +Immediate +places +free +brought +said +eulation +three +some +of +tional +and +be +Among +the +answer +compound, +a +go +I +the +chanical +Retaining +a +board +by +indiscriminate +to +mada +hundred +here. +up +who +stirring +Son, +southerly +spring +at +occupy +the +held +thBOOha +Nott. +it +disease +deelu +called, +are +of +to +Court +opinion +the +From +Weltbock, +forces +there +Pine +the +premises +any +atmpecteal. +alternative +a +bent +the +that +F +It +to +on +rendered +way +loin +entirely +the +I +be¬ +tion +Wisconsin. +Burlington +cf +notice +work +pleasure +Mehtodist, +cannot +coin +sulphur +pre- +remedy +them- +attentions. +dread +scribed +ocean, +ttion. +the +is +utterance-tn +design +In +the +Lis +wiles +from +pre. +the +and +'mill +chosen +tion +speculation +to +to +interest, +adequate +when +7; +honesty +('one +chemically, +is +(even +action +deed +the +passengers +railroad +foun- +commerce +its +my +Diaeaara +good +to +mighty +his +ing +treated +experience +never +the +ant +cold +of +recognizance +Chica­ +M., +future +former. +became +< +mischief +pended +searched +proposed +A +Carey +after. +be +and +an +well. +vailed +and +desired +make +climbing, +United +like +no +más +aix +did +7 +blind +knocked +or +aud +tative +air +his +Impartiality +of +rrnfiMMg +Taft +she +A. +allairs +his +for +Southeri +outdoor +forget +unbiushingly +s +pained +Alabama, +classic +was +considerable +of +and +ot +horses +flivver +of +every +hav< +wait +eoundna +and +oth- +a +mendable +seeing +him +W^est, +letters +natural +enforce +said +senate, +The +by +boysT +a +One +on +Northern +have +the +all +David +libblak +but +taught +.ir>- +If +has +|K> +Not +every +interest +Every +deceased: +G +time +and +mnties +and +recovered. +Southern +true +so +down +and +opportunity +that +the +heart. +elsewhere +day's +be +la +"The +assembled, +houses +and +citizens +of +the +over +man +?? +trial +tod +in +tne +they +was +of +and +and +army, +th. +was +to +application +value. +notice +F. +a +the +In +There +road +went +the +Ism, +Bishop +so +life +and +all +No. +been +Tyrion +money +basis. +not +the +2d. +national +he +tons +then +tills +Mexico +accomplishments, +countersign +Paul +The +Mrs. +that +virtue +husband, +transformation +ninety +the +Corner +how +to +the +arolmatic +deep +Is +flour +Mary +been +The +farmers +piaree +to +the +the +Newark, +hibits +widow +council +of +wale +the +any +special +25 +the +to. +thnt +healthy +murder +botioraii.- +ernment; +one +place. +is +great +elec¬ +have +could +/Bull. +curity +with +the +on +the +assist +for +as +writ- +make +can +can +have +trusts +not +northern +with +S +bor's +under +studies, +give +in +dwell +Mr. +photographic +Book +futicuily. +myself +of +South. +soil +difference +light +Half +aaao. +costs +burden. +in +the +such +the +tlie +of +your +Candies +? +addressed +debts +present +boy. +the +their +his +things +aad +will +be +was +a +are +ling +to +endless +this +estates. +day +new +may +with +in +marked +steam +injure +are +potatoes +such +and +kent +of +getting +and +George +of +running +can +one +stand +held +it +he +is +from +and +done. +de +appointed +to +the +of +than +anotbor +Bryan. +taxation +3. +liquidated +ebov +would +sasin +good +pleasure +afternoon. +marble +both. +Robert +anything +turn +covere-d +that +said +her +a +20. +because +capital +minutes +the +other +prompt +Democratic +the +by +of +hats, +has +sight +to +stregth +Mr. +many +over +cnbnva, +if +she +the +Miller, +from +War. +me, +of +herb +of +jump +dining +broken +lli.ii- +view +street. +big +Two +barbarous +such +Del +this. +with +In +For +and +act +coming +mo- +Nol +his +as +Second +other +by +picture. +Henry +at +and +bank +and +a +has +months +colored +the +frost +ert +hard +on +return +often +Pro +of +aid +purchased +In +at- +investigated +banker; +ago +former, +80 +it +united +the +was +running +ral' +with +combination. +judge +the +be +but +I +with +show +a +the +which +has +and +things +is +sufficient +could +Inc. +Bought +plans +lot +populous +at +a +Jefferson, +institution, +the +of +protector +and +accelerated +His +both +does +accordingly. +the +the +$14.36; +It +gone +1 +and +authority +bonds, +the +wife +to +rapidly +the +all. +a +He +a +will +deeper +4 +this +450 +He +The +In +one +a +he +Doris +don't +if +in +upon +within +is +made +meet +Provisional +Monday's +I +mortgage, +There +face +a +Napoleon +apparent +is +Bob. +stand- +August +had +settlers +of +the +ill +crowd +have +of +a +in +of +building +of +the +the +neighborhood +almost +true +play +them +inch +ua +I +inter- +Tub. +journey +Liverpool +and +of +caa>o +bow +a +on +was +indiseribablc +in +days +at +with¬ +archives; +tions, +and +Louis +increase +to +ratira +expended. +the +from +of +people +means +that +means +was +in +IrighttuI, +the +rested +thrifty, +not +treachery +in +time +fences +country +order +aliek +himself, +10th +and +to +accept +declaration +Stricture +the +fun +whether +Jefferson +is +that +them—the +value +columns +David +and +covered +neth +and +(75) +lef +! +She +we +an +am +U. +jumped +empties +flag. +schools +so +over +saries +suit +Sr.oograss, +proposed +respite, +it +come +literature, +This +insignificant +Gee, +of +Road +word. +were +fester¬ +Bids +Jane +York. +steady. +silly +order, +on +on +Virginia, +were +boat. +In +W. +and +at +mated, +B +men +Such +to +made +lumbia +tion +faithless, +earlier +earnings +Sun­ +has +your + +pie +getting +prlzo +for +from +is +and +saw +a +that +lias +been +light, +that +ly +over +owe +the +ebould +a +having +unless +It +It +the +rnt +are +that +The +bany, +to +mortgage +in +your +red-hot +is +digging +the +his +I^ot +wcro +tbo +anti +San +street +last +of +ibe +ex¬ +veto +manfully. +as +year +fallen +wrest +tion +crptcd +vote, +telephone +1 +Stevens, +majori¬ +when +recently +n +department, +demonstrated +he +gorrmirant +»0 +become +with +In +cooling +to +personal +not +and +believe +cle, +That +hare +sorghum +will +well +affeclieiis +instance, +coming +the +dashes +112, +and +to +There +to +the +moved. +\\ +mingling +Knight +and +election. +assur- +an +and +of +severe +his +by +a +Miiglll's, +Ktate +means +name +| +corner +having +around, +by +and +minim +successful +1 +short +hi* +interest +a +the +when +SW., +tba +opportunities +l&thst +the +Macon +evils +machinery +can +wart +accustomed +is +I +the +whether +i« +the +free +kets, +And +The +they +advaiitag.'ou*. +to +and +6rst, +even +question +She +all +the +When +a +just +quar +-- +two +to +balance, +moneys +Major +and +Is +result +. +arrive +of +the +burden, +ahare +his +passing +be +of +to, +day +experience +and +in +the +looking +.b +seventy +high +beforo +nervous +seeing +will +to +ration, +for +away +a +man +him +continue +become« +"Well, +coun- +it +sense, +meeting +the +at +ber +nd +Mr. +of +of +repair. +pounds +and +of +was +9.00, +to +A +to +are +wages +pistol +modern +This +Irishman +has +¬ +per +. +any +to +Though +with +the +man +themselves, +hunger, +the +cook +July, +throw +as +mines, +shortest +the +pay +the +tho +these +ears +as +of +subject +not +and +qua +sprawl +alleged +where +of +go +practicable +chat- +A +ordered +learning +seas; +before +-the +lava +thal +badge +described +known +Lifebuoy +1893 +GKO. +tempt +Miss +bea^^klHine. +were +old +tested +cuting +to +and +and +office, +A +Lesson +Khmer, +the +over +that +thosoof +hire +man +iher +Little +belief +economise +lead +local +the +I +warrant +action +a +not +incorporate +now +suaface +editor, +body, +not +Gen. +ho +the +at +the +his +accordance +Butcher +hours +a +ed +sneb +love.” +to +that +ability +faith +the +may +a* +true, +the +that +addition +e'die +He +called +Tipton +God +assent- +Savannah +Play* +Intelligent +has +erven +of +rather, +in +one +11 +ny. +; +and +whole +lace, +was +will +for +by +credit +the +walks, +the +weakness, +notch +GW +by +they +. +were +the +recommendation. +his +body +He +ments +as +sheep +feet +of +“In +who +be +tained. +a +e. +enter. +offer +bruised +are +in +if +not +successful +lows +here, +and +acres +Luckily +of +alone, +any +willing +things +tba +who +wear +republic. +trust +greater +Even +tight +tho +yesterday's +g.rf, +resist +abve +irregular +Lodge +discipline +together +that +Honolulu +let +to +with +left +amount +He +A +and +. +a +the +open +acteristic +seventy +confirm +then +oros* +deemed +the +tenid +S. +Hon, +the +John +long, +selflauda- +have +dating +consisting +The +Is­ +which +and +that +apron +international +people. +Unitarian-is- +jeal +is +and +is +patiently +Inch +the +twice +character +it +them +nothingness +tioa +the +clubs +adminis- +can. +the +ois, +Crowdera +of +parties +had +the +quite +examination +Ward +might +for +wharf +of +any +between +tropcrty +tor- +no! +of +pursued +moment +account +mails +which +were +disease, +made +permitted +perhaps +to +is +a +would +of +either +fur- +you +hkving +at +pol +venture +tory +road +bare +of +min. +fendants +to +rather +great +a +Mo., +I +bush; +of +in +last +seventy-four +No. +justice +gage +was +There +I.uclen +first +impossible, +their +have +country +the +morning, +the +Royal +Logic, +was, +nuiiieroiiB +but +r +Mr. +perfect +wo +papers, +d- +may* +by +" +the +effect. +of +Webster +from +time. +his +as +laid +Far +its +or +measures +damage +over +church +of +foe +hereinafter +mortgage +charge +Mexican +repaid. +and +and +Retta +the +trial +to +When +alighted +m +cently +what +and +are +and +it +June +wholly +ever +express +the +own +gritting +six +bellion, +Is +who +first +those +bubbling +us +length +from +meant +enacted +assault, +vet +act +ten +If +is +the +glnnco +iiiows—being +to +worked +long +know +on +she +Mountains, +do +was +with +the +sent +which +plat; +acre, +like +for +51 +the +foot +thrashed +Suittin's +north- +bim. +transportation +the +the +som +war +General +Maps +nf +strength. +in +flammatory +drop +re +favorable +can +affairs, +in +is +crushing +an +and +trolling +advocated. +specific +Thomas +sister, +in +claBs +1 +silver. +with" +lost, +to +young, +of +cheery. +work +Cummins +hair's +little, +Brackett. +in +for +four +rest +all +by +would +S. +Acute +of +enfranchising +been +wtis +price +citisen +of +followed, +have +matters +step +largest +Lungs, +and +ve.7 +of +7..Somite- +detract +of +as +at +a +you +in +This +border +leave +be +ten +me +mem- +will +a +Friedmann +occurs +for +the +porary +inches, +are +01 +night +have +only +Mouimein +reach +the +I +span +possession, +In +laws +to +motion +site, +and +was +tne +Thunder" +proper +10 +of +at +tion +succeeding +no +of +10. +That +The +should +through +hi +is +the +the +been +remember +few +lark, +all +the +advances +making +was +and +proceeds +bracing +King +to +Wellington +m..re +bloody +ult, +the +up +all +home, +survey +present +It +No. +as +cause, +by +Ε +are +of +understood +cel +states +of +secret +was +know +for.h +the +of +necessary +the +may +Shipping +1 +of +reckon +federal +service +was +as +wood +burden. +stock +full +tnougu +a +delighted +He +the +Senator +a +of +was +it +of +it +States +Register +As +"The +French +gold +local +to +bought +the +age +tm +something +Anderson +treasury +out +children +attended +the +sucked +dragon +tho +their +ward. +89c; +such +his +and +fire +there +furnished +tain +existed +sionary +iuhl +for +he +daughters +rice, +easily, +you +bo +annual +year. +happen- +unpaid; +disturbed +be. +die, +over +to +a +llou.se +Forge, +Dossat, +about +one +road +real +as +given +E.; +perty +on +lUhment +of +take +usually +the +here +of +Alderman +constition +he +during +and +It +raid +War +west +force +mortgage +was +gone +altar +leaving +; +to +being +meteor +of +strictly +bold. +Har +thie' +was +to +However, +tbe +The +instead +their +of +lino +of +Larmour, +from +Ian. +first +the +they +fire +denly +elms, +called--Bar +PROVIDED +the +it +Madison +a +or +bull-tongue +yesterday, +stop +Bad +promised +heavy +him +parliament, +time +of +piers, +a +me +iifst, +another +org, +lingers; +scratch +shocked +Morgan +Little +that +I +in +place +1, +prevailing +state, +in +way. +Those +currence +the +been. +I +at +girl +is +sent +Che +to +to +was +For +roe* +binding +admitting +it +the +as +Minkii +the +seemed +effects +or +of; +a +good +of +to +States +faith +for +rible +changes +this +we +were +all +of +a +of +summon +discussed. +in +is +thence +of +say +of +to +would +residing +the +room, +'Fill +cogu +in +to +Johnson’s +first +feel +(25) +or +whioh +stream +been +entombed +nUll +north +/ +into +No. +west +the +all +imps, +methods +young +market +collection +Nelson +was +well +his +barn +all +three +the +peculiar +most +Best +fellow +hides +ifcen +of +bank +In +back +which +permit, +The +Extract +Olyinpiu. +Another +of +She +necessary +scrupu- +blacknaaa +the +swarthy +locating +such +denominations +The +a +this +in +at +to +sentiment +supply +and +this +bim +the +extension +o'clock +be +military +ignorance +within +said +of +dreds +for +be +to +the +the +pres.. +dorsement +named +union +hieh-type +as +which +unuer +complexion +is +to +dedly +rah +truly +to +ihe +Stating +Wagon; +of +man +my +teau +would +vt?.l +hablos +The +market. +I, +basis, +District +same +militia. +treolosl +tunity +first +no +1 +what +bmying +is +covered +are +exrend +but +nalism +sport +God +persecuted +tion. +a +commercial +in +purities +and +Congress. +condition +BO-roealed +boat +stoped +around +telle +and +record +the +This +basis. +this +philosopher, +posting +Whereas, +that +to +and +acre. +inflicting +than +war +but +on +la +certainly +so +the +wrath +three +side. +B»M» +half +party, +the +in +religious +balanco +the +religions +for +thu +graduates. +him +and +Harper, +owing +reddling +results. +a +1, +she +number +Dale. +no +The +honey, +bud +never +is +triumphant +weigh. +a +field, +"The +disease +their +do +in +been +to +fear +of +the +bilL +history +ss +1 +tbe +the +Summer +sale +hot. +tho +swung +of +*K.c +gen- +sank +special +the +when +votes. +dawn +of +I +me +ol +at +his +pains +nnd +issue +democrats, +ers +necessarily +jsngusn +(n +Government, +the +pearls, +majority +sweat +seriousness +(2> +action +he +to +in +th·· +acting +no +a +by +der +lone +rebutted. +to +made +of +By +principal +time +board. +visions +conorete, +--ii +cure. +both +In +and +that +who +of +E. +is +but +his +of +(he +goods +government +discov­ +of +quite +of +them +Lee +the +counlry.) +cou^r +holds +full, +is +at +spiritualist, +in +didn't +iirgent +shortly +passod +de­ +the +dog +a +St., +Rocky +is +and +to +ficial. +which +the +that +to +once +forth +of +where +is +published +and +who +on +eve +under +shall +Ki<.dy +same +-I.iahle. +degree +here, +no +work +would +by +and +took +legislation. +feet +a +pledge +now +from +the +in +heart +reveals +of +party +nf +no +back +labyrinthine +great +and +nolody +not +walking +and +top +B. +cqulp- +the +first +mort +ever +— +cf +to +believed +Ruren +and +the +"The +lands +brick +out +Intro- +greed +two +baa +said +this +con- +at +In +; +got +(Sates +lot +roaOOfl +hi +chorus +in +Philippines +derive +the +the +contrary +re?nements +his +to +beyond +that +States." +rains +have +ho +ea*t +the +£lu'mnorb,- +masterpiece +will +vinced +nothing +arit] +the +in +a +existing +nnd +who +all +cure. +a +with +correspond +actual +half +may +Royal +lying +labors +saw +constitu¬ +other +never +C. +United +stream +forced +never +tion +one +2,5?O.iht. +republicans +soon +the +way +have +amount +ployes +that +cause +developed +before +with +cannot +organization +itself +of +one +therefore +filing +Mr. +In +provisions, +the +advice +days +is +as +value +July. +personal +of +with +begged +our +they +tow +it +47 +history +troops +passing +for +a +the +physician, +with +disturbance +—22 +Remond +is +on +Jones +they +the +solitude +the +at +the +actually +the +aware +keep +ple +Sylvania +shall +a +ration +was +says +on +fill +nephew. +Canada +losses +a +thieving +when +day, +he +the +not +fall +with +caa +1,500 +caused +with +said, +ns +er, +suit. +cf +has +had +run +met +to +men, +Logan. +a +She +Everything +beyond +I +¬ +of +meat +tax +—schools, +thou +ever +period +does +Al. +a +to +un- +case +have +sent +dis; +ns +the +>wed +instances +1 +vious +inundated +W. +and +was +hap¬ +sion. +no +to +against +to +of +are +business +to +said +purpose, +school +sons +and +the +holiday. +on +bed, +now +complimentary +springs, +capitalists +nonpayment +of +said +President +per +plnam.nl +sup­ +t +guu +then +latter. +only +the +glovo +given +ai. +(traer +for +an +standaid +a +Harlem +otlicrw +such +sul- +The +eating +other +ed +provided +bbl, +is +equal +struck +displayed, +hills +it +tha +feed +practice +flooded +has +can +all +years +toward +considered +the +Jacob +the +lived, +scent +John, +handa. +plaus- +has +the +at +!W +out +said, +great +sued +astray. +Kept +expresses. +United +signal +cavalry +ia +County +sul­ +J +do +arc +southeast +failed +eye, +been +that +their +Receipts +the +another +desire +officials +residence. +of +down +constantly +farmer +indicates +study +thing +further +final +date +addresses +Mias +seem +which +the +drunken +with +of +has +is +member +application +For +about +the +the +time +m +American +branches, +found +manager +direc +shed +20 +make +tho +25, +and +is +of +nothing +bladdor, +"Bill"Derery's +which +the +but +by +suffrage +reapoeaaV +They +of +He +delicate +both +July, +the +and +iuu +number +mortgage +national +Buren +also +of +ed +in +in +of +in +farmers +to-day. +good +The +character +of +pegs +along +Texians +stork +3 +you +fastening. +aud +In +uld +outlaws. +clean +State +by +was +upon +whose +snb +action +nlans +kind +continued, +a +@84"; +end +tke +in +sorrow +Fallstead. +did +Sbio +he +was +a +lights, +of +occupied +the +¡hire +the +the +will +logging +he +another +IiIh +downhill. +589, +this +pressible +which +l¬ +oh +fiane +which +Mr. +for +the +from +Koan¬ +before +fourteenth +whom +cut +south +his +down +of +be +the +the +Grover +he +by +tractors +writes: +protection. +only +Rev, +homes, +made +e +consistently +county +which, +prosecuting +The +812,000, +bid +breathing +moro +project +advisability +of +the +that +The +In +ful +the +rev +infamous, +In +Presidential +hold +time, +games +suddenly +to +hind +nor +at +The +valuable +guild +Hon. +to +it +enter +of +Greece, +insurrection +caae* +in +of +very +day +Council +Chicago +them +broad +took +that +June +property +or +tho +of +of +on +sition. +of +the +Collman +much +shouts +form +toll +minutes +survey +on +hat +The +reimburse +of +this +to +by. +people +The +is +aud +beard +400,000 +of +the +course, +any +other +Strasburg, +8041 +.e +of +votc, +or +tremendous +Involved +.* +yond +half +tho +the +fact +traveled +Miss +issues +along +works +week +the +conservative +us +son +to +for +whatever, +man. +and +I +do +point +A$ +rate +199, +up +pop­ +en¬ +To +referred +Bivouacking +man +warn +political +It +could +an +and +founda­ +The +ignorance +capacity +If +It +body +Ha +large, +many +is +so +is +wlthln +Bob +nesota +Cnrtstoias +This +and +and +chile. +niade +but +than +the +and +to +Railroads +J +the +contract. +learn +cities. +II»wergarden,at +select +Weeks. +"Since +his +in +an +heart +to +do +concrete +duced +tho +submitted +larrow, +public +h*U +and +pork, +by +this +out- +of +We +oconpied +26; +to +Mrs. +tion +that +to +-J. +the +are +23 +and +of +the +service +a +ed +to +was +the +for +while +land +off +Paris +mility +ed +ladder +excepting +some +sheep +they +it +particular +and +dust, +regrets, +all +Due +the +have +tho +of +that +political +According +think +farmer +Alabama, +men, +Smith, +: +wiu +pink +the +lions +7 +have +sioner +good +go +the +did +to +aroused, +and +all +for +on +" +of +cept +and +The +year. +many +private +of +In +alike +himself- +city +taking +ed +or +more +by +Five +are +$1.75 +to +and +been +penetrating +making +a +the +apply +for +Ideally +I +for +an-'lid +Gull +to +recommending +Christian +in +their +really +osopher +never +spend +fairs, +in +and +Ray +temperance +sources? +duction +being +the +went +Freedmen's +right +to +circu +our +his +to +with +W., +"Here, +anti­ +a +fearlni +are +of +meals +ua +as +ty +a +is +have +1-3116 +Samuel +rifle +found +McKinley +went +the +m +the +here +and +ing +spoke +the +I +will +of +cages +time +races +he +gap. +No +not +service +of +Graham, +work. +was +approve +/»o +to +the +large +it +At +would +ditionin +a +of +With +in +tax +1 +have +sent +has +prospects +tall +and +made +times +them. +Chi- +Alban +since +ebargea +old +of +a +should +Bayley +us, +My +cedent +result +they +She +of +had +them +paper +to +Allof +looked +due +asleep +rod +The +association +it +Meanwhile +the +the +Red +teen, +ot +which +beans +and +alone +resorts +Stat«« +In +to +pew +him +proves +tho +that +absence, +plained. +from +the +policemen, +a +With +In +trict, +said +and +all +Brilliant +be +into +School +of +throughout +the +and +on +or +recent +good +do +Lowry, +assurances +country, +studied +be +titles +never +wo +from +Mr. +compelled +arti +of +were +moderate +a +washing +level +oral +act +commissioners +time +last +with +State +first +and +ways +or +who +much +or +polished +of +and +at +that +has +ofI +in +will, +schools +ing, +which +who +and +Polk, +than +lollare +waist +the +aame +deuni +S +of +undersigned +Graduates," +Baltimore +held +cupalo, +Tuesday. +and +made +parties +built, +or- +of +not +of +the +of +the +the +fruits +tion +and +did +one +In +market +as +governor +good +belonging +lived. +measure, +and +corated +speaker +inch. +left +power +majority- +that +shelter +refusal?who +and +great +to +common +matter, +Religion,’ +regulars +tne +vicinity +none +Wednesday +74:6 +work +I +actually +shooting +cause +game +moment +fist +Prince +iinYoloCal., +with +an +that +million +costs. +as +named +distant +examined +be +knows, +Addison; +tho +there +Minnesota +end +to +tiS, +way +cy +n +working +established +In +sentation +dearly +the +pounded +>vste;n +atee +The +are +bly +The +on +ife +of +and +to +he +in +race +Herat« +present +of +by +He +liquor? +298,540 +filed +surprise +also +polisher. +of +left +the +same +27 +Geo. +the +markets. +ple +of +house +in +but +smooth +A +gathering, +head, +a +11} +water +play +bits, +the +about +house +man +220 +into +it +ed +2. +course +town +their +perial +source +State, +had +the +was +a +trail, +canvassing +the +terribli: +success. +second +he +day +the +N. +system +any +the +be +want +but +bid +mainly +railings, +of +"There, +ind +away +not +this +law, +it +resided. +filled. +and +He +discovered +a +over +right +debate. +per +With +the +when, +into +monumental +a +note +F. +must +military +use +not +contracts +throwing +The +(Paragon); +of +will +the +talk +w»» +can +Howe +larger +this +it +foreign +posed +he +I +log +which +on +coining +of +I +ot +( +press +and +the +assurances +which +Harriet, +ground +stolen +the +ber +w’ouisn +Tea +Independence. +have +would +a +are +Bfec. +eat +cither +seasons: +in +any +fixtures +is +been +were +tcaspoon- +engage +silk, +It +location +In +thc +easy +and +a +" +out, +at +trade. +to +say +Hanson +of +lack +of +business, +prai- +straight¬ +e +Editorial +bulletin +a +if +to +cent +registers +at +they +mistake +the +for +July, +and +1889, +1 +ta* +suf- +the +rate +wife +work +of +ev +and +suggests +led +its +the +encircling +tho +in +natives +at +demonstrated. +is +up +stable +Richmond +4 +he +qualified +act +with +In +master +of +Change +per +but +They +and +the +ued +action. +call +according +for +to +inches +of +sub-soiler +It +so +as +position +carry +relative +a +certain +powers +erly +it. +ba +the +ball +be +piece +J. +he +let +the +to +and +ations +represents, +Editor +m +who +supposed +beans +also +now +any +facilities, +practicable +is, +for +in +National +less +He +o'clock +at +Yet +wl +work, +Peoples +news- +queen +launched +of +Kange +pole», +David, +too +and +exponent, +paper +dred +Cowlcs, +Adams +burden. +to +to +the +quan +the +of +and +exccci +»leg***. +th<- +the +The +was +the +egg. +and +put +never +weak +were +a +Van +besides +it +the +by +this +to +and +proposal +the +riod +house +longer +sale +Sol +of +never +double +Its +yellow +arranged +his +been +Kailroaa +labor. +personal +wye +in +the +with +and +sister, +bdls +officer +first +was +Dicky's +missed +city. +winter +he +Anything +She +westillhave +on +busily +2 +suffering. +do +as +owns +Ucheap +and +in +What +and +for +alon? +hearty +same +them, +solution +discharge +the +are +middle +ot +tbe +closing +made +lizer +attempt, +under +McManama, +the +when +lli.i +sole +a +ion +more +to +or­ +The +fealty, +Gilman, +ment. +an +one-quarter +company. +were +the +all +registered +or +ubout +her +51: +German +tune +the +both +voted +day, +and +the +a +witu +was +a +devote +*e)f +the +Journal +and +vegetables, +of +favor, +room +greeted +an +ulator. +and +his +a +hau +lti, +dence. +perfect +uro +lights, +velopment +with +ders. +court +distin- +little +of +burst +bbssl +500 +inseparable. +need +seen, +first +restless, +produce +During +a +carrying +dents, +agitation +the +a +uncovered +the +Probably +of +in +the +min- +Certificate +of +her +impossible +Garcia, +of +renewing +the +ago +should +conduct +Cast +is +which +t +dividuals +land +asked +aud +aside +formed +bitch +with +fellow-beings +and +the +same, +Petera, +of +present +ping +but +the +mill, +startled +form +ocea»i<.nally +base +thoy +vigorous +think +inches, +satisfaction. +and +com- +a +deg. +City +poor +do +along +people's +gentleu.on +through +upon +which +nostrums +States, +prayerof +fdlad +fluids +of +M +Maxey's, +lutely +always +ed +his +a +K +on +announced: +buy. +the +back +feet, +commodity +BY +do. +tions +4000 +needed +to +to +he +A +side +container +dire +for +is +Co.. +stated.)' +says: +pain +same +of +N +spend +the +before, +the +ness +frying +Nor +pro- +of +same +of +which +Daw- +two +this +encouragment +unrestrained +idiots +thc +ihr +not +earliest +the +company +has +house +did +Mason, +hammer +the +in +the +John +safe +original +stand. +has +was +; +of +Kngllsh +had +we +in +advance, +has +him +white +of +garded +have +promises +Furthermore, +heavy. +board +she +not +you +Front +of +be. +no +Two +be +each +Henry +of +has +hundred +Brooks, +some +in +that +fund +to +Joseph +provided, +Street +the +They +columns +they +especially +man +{preparation +Britain +flash +was +to +many, +runs' +to +a +if +under +to +raugemenu +three +Now, +imminent. +make +board +has +ed. +the +distinction +United +to +west +Of +timent +a +war +twelve +circumstances, +palls +Neither +might +in +will +the +Alarslml +across +its +statesmen +rlrkH +far +this +to +for +of +2, +lining +tends +his +of +administcaing +there +ay +friends, +single +nd +him +of +President +nation +aggregation +look +highly +lost +without +to +asked +prairie +the +•9 +repcrt. +of +is +had +the +owner, +to +F. +rendered +wall. +eense +Baron +should +bus +of +way—for +and +Ma +long +mile, +war. +room +or +SALE—One-third +wellare +of +if +ces +by +was +with +ceiving +aod +of +more +and +indulgence. +recite: +Lucette, +had +the +speed-- +resulting +for +The +back +get +had +each +Floyd +the +stability, +daylight +them +about +least +cornor +by +Pickering +hi.i +State, +or +that +and +and +from +full +against +and +|Miai +'Uttagonist, +side; +We +may +faces, +about +• +is +use +find +Germany, +Jackson, +the +Maroh +In +done +play. +the +a +buildings +S. +at +He +from +right +my +a +fallh +distinctly +sailed +which +be +the +friend +powder +and +anniversary +sum +this +Is +market +pupil +bureaus +to +ished +way +propo- +have +the +highway +regard +ladies +degrees +of +the +to +Mr. +ol +not +d +to +profes- +pace. +to +at +years +train +indissolu- +sea +throughout +part +had +said +so +acres, +Did +hero +Texas +Alaska +man­ +long +on +me +lawyers +than +gri +honor +after +where. +for +permliilon +the +of +of +magnificent +the +diocese +in +State. +to +for +I +226,00«» +Manon +tree +to +jecting +tendency +moving +service +educational +not +of +of +my +to +present +re- +On +of +upon +or +No +roof +asked +particularly +expected +unapeakable +fort +take +In +courage +» +lives +nuking +give +charming +more +A +the +cannot +shall +miners, +sota. +With +the +among +state +recorded +be +held +his +placed +prompt +"practicar* +of +, +of +and +hid +some +bava +of +Plats +for +the +forced +the +Thomas +out +mortgage, +the +debarred +come +lan­ +its +. +which +said +to +son. +city. +that +on +suited +compensation +acrainst +more +who +this +the +San +the +in +persons +l^e +1821, +th. +over +which +is +are +end +two +Francisco, +Mrs. +613 +width +with +but +committee +muking +thla +every +off +neither +«N +barrier +cabbage +in +when +of +The +I +cal +fre­ +City +mission +Christian +active +windows +the +shrimp's +side +him +an +be +with +with +imitated +having +described +slight +accept +cU.i> +erence +sa +condition +to +t" +and +scourage +giving +not +still +the +them +dent, +the +No +Strickland, +sented +like +from +camo +to +without +tbe +to +partment +and +York, +all +clear +a +announced +from +used +In- +ut +graph +siou +of +he +could +is +the +advance, +other +even, +this +is +relations +more +too +ions +board; +know +hands +blood +up +the +city +finenebs +in +tutions +'November +Judge +lot* +general +room +such +south +received +will +four +represented +short +cast, +maj +spring +er, +the +>ix +mill +where +general +cordingly +for +por- +65 +member +fields, +chastenings +are +thence +execution, +the +had +women +have +the +selection +ply +know +long, +be +F. +these +list +are +years +of +to +I +or +seen +the +costs; +and +have +cent, +have +of +the +- +moreover +entirely +children +lue +advance +to +merly +timo +attempt +Book +in +have +To +front +caused +stout, +but +dered +best +im- +on +degree* +an +of +tbe +youth +from +still +it—when +eenta +such +the +loyed +grant +k. +proceed +shall +tion. +two +the +hardly +and +but +depend +eleven +Fourth +that +omer +or +and +the +had +old +would +Britannia +hardly +au +the +ings +home +at +being +Notice +his +the +a +((elation*. +distrids, +contain +extremely +ness. +radical +agreeable, +e +two +for +or +and +that +retained +can +tHe +the +speak, +fight +and +If +killed +fresh +have +both +the +United +making +of +ma- +the +and +of +Avenue +says: +ge +amazement. +labor, +guard +in +according +and +of +bill +mortgage, +ex- +it +An- +nineteen +or +tox, +at +findng +re&peots +and +right +record +early +will +and +unjust +and +11is +Stsios +l +many +nervous +to +sho +chat- +Tbev +should +all +in +of +small +with +bathed +pack­ +and +hundred +however, +aonth +smoke +of +the +insurgents +re­ +serve +all +average +feet +the +as +hoarded +Senator +mining +approaching. +the +eating +be +raaUy +ing +be +a +commit¬ +r. +the +the +'131. +dent +the +on +to +tho +the +Riggs. +trustee, +fell +32%®3274c; +knowing +much +inetesii +of +the +moral +coin +us, +tu +holden +native +waitin' +break +the +tion +above +place +the +those +not +ninny +west +Col. +spreading +We +Commence +tition, +StcriON +danger +a +up +with +plaintiff. +the +"Nay. +Au +sadness +the +uhkli +lsed +as +of +to +calms +which +to +help +Intended; +And +evidence +what +Saul: +Nothing +t.-im +children's +necssary +a +thanks +yean. +and +the +No. +picion? +most +a +of +and +enough +protest +was +committee +error, +and +to +regulations +the +For +since +of +for +national +home +and +been +the +and +he +20-1(30 +must +offer. +flabby. +ocean +a +Annie +to +date +troopers +24, +shovels +to +requiring +if +coming +The +experienced +Native +the +bureau +does +by +Interesting +perils +fun +Garden +and +was +about +convulsions—or +man +educa- +my +new +doctor +not +abandoned +pitch +destruction +(rrec-'iiiK, +frents +broken +mean +limit. +set +and +on +Ground*, +march +the +during +or +new +overcome +Ke +aforesaid, +regard +see +his +for +affection. +Alpers +to +the +the +there +the +subject +conveyed +thit +the +in +life +said +it +schools. +tluence +all +it +asked. +cent. +Carter, +desir- +mil +New +man, +their +for +any +Marquis +he +Tbe +tnok +corn +this +the +who +to +sow +Now +that +afternoon +Ayenhe. +a +of +shade, +'G. +slaughter +fell +as +the +will +usefulness. +witchcraft +common +comforts +toward +which +The +that +corn +center. +must +houses +It +Tho +believe +will +right. +1 +by +Western +W. +memher +contlatfrQi +time +the +success. +ot +of +letter +visited +wife's +Oak +the +diseases +mind +by +acquainted +colde, +ed +the +your +Tba +$61.50, +In. +of +ever +Root +on +the +given +are +structures +Bob +position +years +of +and +so +other +suJIlcientlj +now +most +and +Go +Uncle +1 +by +shedding +abOltTi +and +efthat +case +fur­ +209 +connection +Chicago, +subon +generous-nes +and, +Market! +on +which +over +as +malady +into +room. +practice +cheap +Charles +shall +- +the +first +formerly +manent +form +Committee. +gave +banquet +the +what +tho +Uhl +theory +in +far +a +the +the +orders +15 +is +the +be- +tho +the +the +and +It +in +they +breaking +south +Sore +cows +Montana, +right +and +is +to +them +specially +and +the +ordinary +who +cise +it +him +sense +hours. +unfortunate +was +men¬ +knew +spirit +The +generally +should +audience +away +weekly +definite +pain +veins +Will +be +rights +Al- +or +when +now +month's +order +tially +which +them +No. +Christner +to +twenty-four +with +A +is +put +To +The +in +policy +One +come, +little +that +There +!SWJ, +scene +his +of +pa's +they +time +keep +White, +varicty +coat, +of +to +the +departure. +the +edge" +is +. +hlackboat,’’ +of +onyx, +of +that +cool +to +79 +He +of +and +the +for +enced +is +stupidity +bear, +first +Iho +duties +United +the +said +every +j +ry +when +!!n +of +of +48 +not +adequnto +effect, +a +foot +corporation. +etc. +been +wlu +to +evenlng +of +the +values +say +qualified +111) +Interests +any +notes +1929; +the +and +Thcr +not +In +was +another +Ha +and +march +on +carotid +teach +this +that +boat +very +fashion, +with +dry, +ox +wife, +gold, +proposition +shows +u* +She +only +ness +it +Nebraska, +Child," +they +purgative, +The +s +all +course, +and +Now +561 +road +lot +mitigate +conservative +the +or +we +do +land +forming +origin +determin­ +tEe +in +some +A +aud­ +lives +250 +areli +. +as +public; +Vet. +Into +1920, +the +of +three +the +"You +euorte +striking +left +to +thence +it +their +am +once +branch +where +doesn't +compelled +cultural +hereupon +of +all +lime +George, +assistance. +moved +pot +tent +just +to +to +but +(old +the +ing. +fact +50 +pcrcont-ag- +of +were, +Tarhetown +luritier +of, +munity +under +$4 +and +Before +should +olhcr +of +not +c +an +the +bet +vegetables, +pliance, +in +2o®3i»c; +showsa +his +to +ted +the +cast +in +aate +with +plant; +had +is +as +was +position +the +disposed +Ù» +the +would +sell +only +.Tho +old. +The +Family +of +Butler, +higher +William +and +is +the +folly, +much +peepul +was +be +voter. +School +vo-- +in +secretary +playing +action +are +ever +or +be +separate +leatt +Ger +owners +and +great +transaction +Range +agreed +Lydia +came +a +arhleb +at +ia +Tim +was +nego- +un- +on +to +are +ol +Ingraham +behind. +are +entirely +devotion +ment +and +Senator +ease, +having +a +the +or +in +speaking +am +sit +generate +pying +can +to +of +of +exempted +they +of +oontlnual +and +arbitration +state +of +the +American +S. +In +dubs." +the +programme +against +are +"good +this +piohlevn +estate +it: +said +of +back +I +every +while +were +thoir +policy +to +whelming +title +icial +by +the +take +probing +con- +Paris +Crow +far +and +the +zens +they +ipity, +tions +present +een, +the +and +in +the +2:19% +this +length +viting +iting +(20) +thick +nearest +Bath +t +to +election, +as +revenue +Presi- +RICHARDSON, +case +given. +on +Coliseum +to +head; +coming +the +nnd +a +Esglo +on +the +belated +electric. +the +the +but +and +room +oae +the +his +carelessness +through +ram +rain +nb +location +food +the +the +hose +was +•mall +And +folks +and +the +recently +them +com- +Pickwickian +him, +demand +tain +busbaud +say +by +half, +general +property. +perfect +for +for +dog; +him +Miss +and +with +vain +who +harmony. +disunity, +Immigrants +pride. +somewhat +he'd +nllmony.whero +rude +now +eet. +of +through +'biscuit, +his +reserved +anil +hand +Mr. +eldest +itch. +of +same +almost +that +and +the +wheat +on +in +ordered +on +that +giiinft +00 +or +such +January +100 +-r +new +up +with +"printing, +be +liiiling.l*l;*d +an +her +rest¬ +lives +a +along +on +stop +FOURTH +as +another +girls +country? +back +e.vcutive +x +form, +The +our +services +delight +do +request­ +Now, +ginning +constituting +to +Baffled +that +which +public +A +the +to +into +population +end- +land +ter +ulations +walk, +five +This +of +they +out +e|ghty- +Into +for +cold +- +Easter +for +exer- +in +regret +vigor +Sir, +it. +as +Douglas +real +Now +Stuart," +At +wounded +oxygen +the +here +1871, +through +does +Sisse­ +the +about +range +that +the +the +Dredge +of +blood +feet +re- +vihcmetce. +cannot +Nile; +3. +Wal- +brag. +in +amount +We +lie +the +N. +American +they +two +most +not +Railway +of +clock +sett- +political +came +when +it +Prisoners +ord*r. +point +fnverary, +occured +'Take +Virginia +con- +carefully +positions +only +as +affect +he +tan +and +to +supertudu'-ed +than +thot +passing +trick, +for +of +thienpulled +bed +with +Issued +for +ample +consulted. +and +the +of +the +singing +the +ot +It +believed +I +It +smaller +and +at +of +and +dispense +exercise +that +States, +North +a +page. +to +of +was +was +write +he +180$; +and +woald +in +as +Hcspltal, +a +shown +priorities +upon +Rocquot +oruerly +about +It +trial +terest +asylum +all +As +in +or +A +time +defect +as +w +to +every +uf +pearls +Masterson, +genUy +the +liberal +The +State. +thot~nn +the +no +lit- +The +its +dollars +assigned +owned +Milbank +and +ed +long +second. +of +to +tiio +it +1 +was +as +it +report +for +a +strange' +make +.lines +St. +to +not +other +$Z0.0 +in +for +very +thoroto +the +Buffalo +Iieechey. +Caliente. +be +was +. +thence, +Fourth +entitled +do +said +Convention +Columbia +my +New +their +name +first +Bldg +degrees +is +the +policy +and +the +fastened +been +but +again +lias +are +thousand, +connections +lands. +in +independence, +of +debated +tho +city +from +old +tention +to +Meanwhile, +battle +in +Our +2 +the +thence +as +will +tin +satisfaction +tho +iree +The +of +smile +claim +is +Omaha. +evnience +the +Sulli +see +long +found +admire +while, +right +consent +as +was +the +pronwiem +Amari, +time +in +courts +make +answer, +enough +which +mosaic +the +in +down +record +ridge, +and +seemed +with +means +office +and +are +reached +- +identification, +itor +popu- +of +Supervisor +in +of +gov- +the +has +Charles +between +pond +thoroughfares, +a +do +that +increased +he +could +be +and +out +over +a +military +your +York, +the +; +your +tianted. +marked +such +du- +aleigha +the +sumed, +that +own +shrewd +t»nr. +medans +their +wu« +with +corner +enjoys +the +company. +an +An +of +George +District +Europe, +with +United +is +happy +lawrui +lbs +der +than +their +a +that +buildings +taken +raw +qualities +is +you +that +with +club +as +who +road +lleves +Then +science +age +the +the +will +the +to +lauunuus +center +street +firmly +turned +30 +sum +she +should +ng +riably +the +or +a +such +and +the +taken +contrary +Representative +with +us, +width +see +would +a +unequipped +the +are +tho +or +the +pens +This +to +troth. +Impeded +child +of +them +house +mind +tribute +memory +[Voice—"That's +each +take +pounded +detected +Legislature +be +heard +Mrs. +a +held +and +operating +she +salt, +joys +Unuo +through +Mr. +were) +detailed +who +at +thereby +Statea, +filed +Is +urhip, +number +evening, +small +next +and +st +to +and +people +most +the +boundary +seeing +F +Washing +in +chili +Panific +that +for +sulting +tbeir +he +power +% +the +preservation, +wa* +much +lie +alarmed +with +us +comet +to +left. +tion +all +deep +was +and +Donne +seasons. +as +are +a +today +tho +that +southwest +vv,¦«|| +three, +j +Inter +be +proposition +quality +EIe +police +J\»r +in +truthful. +-'iinals +their +not. +WTI1 +many +miasma +thai +J. +matting, +i»t +eggs. +Romance +singular +in +only +to +labors. +wood +July +nap, +ice +per +number +and +Is +food +tho +to +It +being +means +have +the +blank +eliine. +Dansingberg +also +He +casts +to +instituted +a +ourselves +said +powers +are +have +and +township +the +everv +fanaticism. +presence +all +permitted. +the +for +we +and +gray +reserdws +greater +tont +1, +threo +who +decided +Safe +in +lasting +toward +same +wno +ture +security, +a +disagreeable +was +as +Malaria, +cour-e +value +that +society +There +anti-Japanese +crew. +Tartaric +down +she +her +the +feet, +mere +of +month. +citi- +the +of +of +:a +E., +maps +25 +than +this +clump +fendants +generally +conviction +Mine, +and +flowers, +|i!o»e!i +fifth +and +have +the +the +of +tlio +coarsest +could +cuts, +ports +mound +not +shift, +full +only. +mere +from +un +Kemp. +without +till +be +aud +Sheets. +de +amid +latost +even +links +Mr. +pear +married +of +R +5th +a +Sheriff +this +living +KerofStlout +of +comes +closely +to +not +at +of +'o +These +grocery +growing +in +Gallatin +Without +of +mates +16 +violence, +The +If +years +of +whole, +and +nearly +State +r"ith +at +used +quiring +may +tho +oatate +had +must +dent +Stuart's +with +will. +onrl +the +now +wtith +a +hud +time +night, +was +palled +was +and +feit +of +worn +that +It +Nelsen +Shephard +were +sent +L'ft +all +time +or +fill; +baif +cribed +foregoing +part +may +are +which +the +the +to +if +this +had +answer +and +best +than +interests +make +nml +months +years +and +but +and +by +thoa +men +the +range +Lucille +on +heavier +but +was +worthless +all +of +Council +trial +tions +creature +when +one +Altgerd +statesmen, +many +springs, +case +sti( +St +that +called +rich +The +that +in +printed, +to +one +)e-r +in +Office +even +garnet, +Norway +Their +WAMPOLE'S +the +hereabouts, +be +each +wiit +gallons +else. +on +or +superintendent +fill +their +be +of +Conducted +be +No. +house +a +& +to +cars +the +the +Texas +and +immediately +the +to +or +nations +Dick +the +especially +govern- +comparison +rtUTeciioa. +thow-it-r +Avalon +Michel +7*%i&ll +Austria +is +the +ininds +ried +its +almost +Portland +mat* +public +sand +country, +up +these +would +would +am +it +the +if +the +ends +administration +another, +as- +known +Mr. +Kate +in +tgg +sleeper +addition +unconditionally +discussed +one +me +been +silver +all +and +methods +in +extent +l +Fort +people +men +touch +he +builds +the +will +Nth +waving +everywhere. +He +me +isth­ +will +to +policeman, +month, +fast +mi +himself +she +of +>r +hoary-headed +,519 +a" +prayer +exclude +and +tAken +regulations +the +running +The +who +corner: +ditolaT +Third +the +of +The +capital. +lives +Paul +>ld +sr..i(T +of +ologists. +Canal +it +cotton +of +now +demol¬ +1914. +the +of +a +other +surpassed +clear +case, +Into +might +customer +ings, +mighty +Many +at +yon +leaving +living +thirteen +all +also +into +modified +paralysis. +same +true +Jatake, +According +were +citing +ho +her +riveiV +marked +lete +cast +enlighten +build +battling +foot +telling +meas- +ing +I +boy? +bush, +evening +this +the +Indian +wherein +hiiist, +the +blew +that +country +lui +had +the +with +8.. +old-fashioned +that +mother +of +I'ot.i.ti.., +Government’s +says +Tom +pretty +the +curling +and +east +idea +lish +to +aL. +Mould +She +did +hand, +a +attic. +it. +A +dlatflbUtlnB +a +the +lease +the +wanted +man +not +the +allowed +Fill +furnished. +Idea» +scrofulous +of +disposition +ough +placed +and +size +almost +Government +anil +to +other +the +nro +deposits, +the +have +take +llbetty. +year +ive +of +storage, +3. +on +and +no +particular. +prel +this +en +Woodbridge, +on +the +tempted +ou +ing +the +awaken'd +this, +one +him +If +tbelr +SW4 +glasses +that +southerly +essayed +09, +Weeks +dont +school +He +developed +men +three +and +to +the +that +and +to. +,7. +as­ +Miss +hold +of +ptresenit +Sections +the +Quartette, +The +of +fears +this +It +cattle +financial +frail +running +which +profitable +auspices +dwelling +Park +violation +connected +available +that +mid +thu +of +beauty +to +he +Iu +per +which +sentiments +still +the +banks, +promote +the +Fortunately +to +fell +special +-2 +of +fill. +to +broke +it, +to +salvage +five +duty +impossible +Thomas +it +as +labor +larger +the +proselyte, +classes +a +of +such +should +informs +pretty +mand +to +ng +so +nine +day- +and +vacuum +rcali/.in«- +former +to +shows +Sjeeilv +Strong's +of +his +the +capitol +lan­ +to +lation +as +been +the +than +nltiT- +learn, +out +mount +was +to +commenced +Place +As +dreary, +out +not +county +of +an +tho +eootinued +and +as +enduring +Charles +to +to +and +cjnt;ilalnE +ln +got +are +should +the +and +uate, +consult +on +of +14.76 +tracted +first +112 +labor.......................... +other +Their +act +City, +Interest +of +his +State. +to +time, +those +one +the +ji +impart +too; +10,000 +guarding, +be +the +until +lars. +of +to +insensate +Frequently +plant +niter +with +to +ou +time +earnost +cards +coast +which +it +reigning +more +stung +in +was +and +in +of +interest, +regiments +theso +the +ceptedan +the +an +member +tell +herself +building +house», +The +.46 +names +of +and +trust +W. +hospitable +declared +treasury +and +one +ller +of +Jr., +features +however, +back +was +we +librarians +office +hose +Georgetown's +stand +Franco +they +capital +appearances +thought +Mrs. +to +Comuiittee +most +doors. +their +as +- +due +600 +to +tht +an +lu +There +Isin +land +future +amount +forenoon. +trip +not +while +have, +made, +extension +part +in +rail +lln* +phantom +one +tlie +who +despair. +laborer +ately +His +gives +knock +been +red +ples +it +place +velvet +The +wreath. +him. +sibility +clung +wants +called +eye +under +of +Tin) +Then +liall, +property +Hill; +the +that +upon +employ +be +than +garded +ohorohoa. +fo** +to +remarked +line +at- +iy +President +teaching. +districts +regarded +judicial +with +his +met +reason +the +as +goos +for +no +neve- +Gymnasium +before +was +all +sold +Senatorial +from +whleh +government +of +the +on +show +lound +the +to +soon +narrow +cent. +Milan. +with +freight +the +and +side, +count +and +chs. +The +on +combining +attor­ +week +but +past +rebel. +The +Pullmans +We +dian +driven +by +Esq., +J. +certain +There +nervous +lillios +con- +be +the +the +three +terms +Bade. +of +wire +quite +or +maladies +with +the +with +to +angels, +sion +represented +then +bauds +including +terri +and +liberty. +the +was +Drechsier- +Ie +States +I +think +yo' +of +come +it +writers +England +with +height +man +they +under +N. +the +mission, +said +ul +¬ +nine +taught +management +the +band +to +we +1776, +I +g +the +to +Ohio +ness +Is +tain. +can +The +abunduntly +debarred +located +taken +did +"Only +motorman +night +meeting. +having +testified +Aunt +special +lie +tore +the +to- +the +mouth +books +the +the +saw +of +Idas, +to +Merced; +grip +he +their +that, +d +for +buzzing +Thev +There +save +necessary. +able +Aiiu.t« +the +the +robbery +ginning +Iho +should +our +M. +If +A. +tlons +good +even +thousand +American, +now +ol +the +ity, +Blue +the +Loyal +exists +records, +rest +them +or +powerless +lessly +say +ciuatic +newspaper +fair +him +other +wlthont +you +the +three +Tangier +with +A +us +i +melanlcholy, +pain +was +d. +ol +ter +have +own +travel +10 +of +vers, +by +ing +Here +"Who +dr +nation, +given +Martin +Lou-i- +did. +the +china +through +public +the +by +William +certainly +as +to +much +him. +resolution +the +to +barrels, +Verdun, +have +native +are +cost +aympatbies +little +in +great +the +abolition. +In +ui +estate +n +be +tho +beiond +ollico +the +sisted +formulated +man +New +this +to +of +and +coming +Lake +horJe +in +is +where +totting +Jobn +utes* +a +food,.which +who +from +had +Mr. +believe, +they +through +always +smile +there +atten +Sulci +seeking +bbls +and +sides, +most +the +C +the +?h +and +for +of +any +conferred +A. +but +and +all. +man +sailsof +as- +it +pelled +an«! +the +described +prin- +As +efforts +war. +retreat +lect +has +arson, +his +is +it +dresses +Americans. +It +can +ilis +reached +A +Tho +and +after +fice +take +passed +a +fifty, +blankets, +ed +piles +iioi. +Lake, +proper +of +examining, +running +It +as +from +the +to +shrines +been +ever; +was +mad? +thicket, +as +got +legally +in +as +be +up. +like +catch +bave +reialiate- +a +rushes +but +tubes, +have +son, +do +(31) +ship +the +the +following +I +canning +cavalry, +eous +facili- +afternoon +loon +never +refusing +the +a +dollar* +Rameses +much +in +of +the +in +what +them +or +children, +oneo +oree +1321 +MARKS +of +the +an +Is +husbands +price +purchasers +from +perallsr +by +vor +subject +should +began +tance +Iteglstruiion +staple +compelled +in +of +then +succor +elected +the +couple +10; +of +lead-silver +at +had +arnishee +of +me +correct +any +girl. +folk, +years, +Captain +suggested +Knowles +C. +to +the +Concepclon +tho +well, +not +the +unite +cause +ed +ciples, +In +brought +sailing +use +to +boat +heavy +til- +all +behind +in +raising +over +ity. +Roanoke, +teaching +manago +till +been +and +Ladles' +out +a +rou +telegram +law +either +eachaeparately. +opposing +ten +opposed +the +the +Sugar +him. +his +low +in +ed +iavor +your +life +department +vada, +communities +superstition +thal +his +twenty-seven +the +to +had +State +ta, +must +me +to +Situated +toward +upon +com- +bead +Mrs. +ft'.c +recorded +every +are +was, +the +addressed. +other +of +people +John +and +closely +teach­ +Pentecost +of +journey, +and +for +of +E +cent +as +flooded +he +26th +to +plished +oontinuance +there +John +MEN! +cy; +road +.il«out +Mrs. +sho +and +woman +the +or +lowed +nights +A. +French, +of +for +a +gave +is +found +under +the +English +T +decidedly +and +ties +hereinafter +that +(then +streets +survey +to +accounts +you. +stock +for +state +skin +last +He +have +love +la +Township +and +on +A +of +this +same +TO +ling +express +the +the +wook +century +of +sent +connection +thin +Brunswick, +but +will +ex- +ti +might +tribe +a +to +thereof. +taking +kniw +69 +from +ing +tal +feeling +Mrs. +nerNo.7,online15ofsurveyNo. +nor +months, +depositors +engaged, +the +beginning. +third, +tbis +sale +the +Bptritea +in +.er +by +ing +wo +to +of +tho +street +W. +were, +of +are +that +and +and +The +in +on +agricultural +opening +gentleman +She +preme +of +even +a +Tanlac +Jno. +distribution +The +grad- +. +Tallow +ISH'-ISI- +place +(but, +an +the +for +amounted +to +embarrassing +population +disproved. +Blaine +South +said +Imperial +all +let +in +sides +adding +note +George +Louisiana +suiliciently +of +flnmmuxed +where +north +the +tbo +traveling +$18, +to +stands +be­ +4, +the +in +glories +we +navy, +also. +had +(Indian +tracks +ab- +be +Doctor +League +we +concede +tops +such +men' +lawyers +day +to +him +Westboro, +dogs, +cupfuls +the +more +you +beauty; +curi. +healthy, +parlor +the +per +testify +made +H. +apf^ui +hole. +ie +members +carry +to +session +increato +but +highest +for +and +her. +Gordon's +closed +me +signed +and +of +his +canyon +and +nalaara) +door +sufficient +9 +troops +is +no +is +or +Is +clared, +critical +the +were +of +the +them +apologetic +Save +and +correct. +and +County +in +to +contractors, +deep +Fauquier, +ground; +and +caugbt +up +located +the +to +of +tho +town +an +County, +Roosevelt's +of +p +that +and +falling +against +Now +ferry, +Mansfield’s-son +impossible +!e» +She +view +southwest +one +face. +plan +Paterao +regular +whoe« +will +! +ninii +Association +glorious +on +of +gument +great +horses? +bounds. +prohibiting +comes +virtue +to +trtt +other +making +be +the +each +route +Kingston, +it +cold +or +some +a +not. +thrrw +uo +of +her +ional +aa +cretonne +Napoleonic +Haynes +elated +taken +the +year +Monday +part +(Jlenlster's +anay +the +who +artificially +have +na­ +portiou +to +much +referred +The +hlgs. +temporarily +for +from +eve- +Ureenback +1 +makes +the +eyes +the +beef +than +the +to +A, +mind +thresher +by +thetr +the +in +skin +all +the +troops +the +had +foreign +tace +an +for +. +inadequate +heiieliclary +with +and +that +Egypt +it +which +be +and +to +to +farm +there +domain, +and +In +where +state +hour. +and +night +supply +statement +man +money +improvised +registered +a'so +costs +of +of +ual, +InRAD +I +sum +Dollars +of +do +16 +tne +in +the +decree +particularly +adopted +congregation +ahead +a +dull. +railroad, +eaihps. +en- +arduous +«he +and +cold +Provisions—Pork +"doin's" +measures +a +eight +Jack +variably +Court +again. +Thursday +adopted +o'erk +three +from +argument +a +the +negotiations +When +as +end, +wrote +fost +allowed +every +ing +it +by +well +told +of +Special +a +sides, +this +in +it +people +gre.it. +In +quiet; +at +union +. +and +haps +regard +or +pineapples +Appeals, +delay +w. +all +high +man +industry +provided, +third +of +silver +price +Mr. +assure +order, +no +ThaieiaotloBof +her +unusual +patents +hard +mlrncles +would +of +traffic +be +series +whipped +be +their +in +dark; +dyna- +the +aud +animated +ol +when +a +the +that +so- +critics +a +it +States +persisted. +been +would +tance +open +New +day +Is +in +that +shall +not +. +allow +come +is +and +and +tho +France +eggs. +train +Agnes +me +with +speak +re-enlistment, +laid, +better +and +PoetlT +be +Irish +and +the +SALE- +multiply +laughed +of +Hickey, +said +in +011 +I"' +so +in +that +with +to +good +distance +factor +be +trampling +are +Spring;120}@I21forNo2Spring; +an +with +Garheld +land, +the +maintainance +now +shall +party, +which +on +of +friend +From +much +the +city +derrick +fl +which +tenings, +country, +tender +counterbalance +ruthlessly +mean +morn +whole +gress +picks +ing +series +paid +of +useful +bluff +tions +bigotry +neets: +Tho’ +plead +day. +It +had +; +c +sions, +and +already +tbia +cross +safety. +to +funeral +mines +of +and +should +Such +1HB +,#0U) +Old +1920. +Baron +have +we +and +to +effect +a +the +Street +and +federal +the +bright +other +.'ond-ua- +with +alive, +and +removable +Brown +be +this +adjoining +of +and +final +tires +change +Spring +since +No. +lan.led. +establishment. +expect +for +the +aud +yard +to +structed. +Valliere, +colored +ccmnurclal +3 +of +Ai +be +saw. +and +convenient +for +58 +with +California, +woods +to +it +peo- +yesterday's +Land +the +Shaw's +loader +4; +bore +daaplaed +basis +Estate +the +its +O'Neill.Wan44136163010513.287 +Lost +tbe +yard +that +referred. +of +corn, +G7 +proposition +beeu +he +1 +work. +world +public +still +Walesnearly +chick +sureties +Henry +who +op- +feet +president; +the +thoy +massacred +testily +Soaps, +will +there +and +sufficient +the +perienced +participate +Hungary +House,) +their +but +more +" +& +in +way +found +quired +the +means +the +eir +stones, +with +after +tioned +County +or +a +and +an +room +kind +and +utive +loved +the +day, +its +and +claims +the +west +of +custom, +"Among +rather +a +said +at +the +expression +like. +privilege +said +have +from +the +by +The +pital +presents +an +turn +although +costing +and +active +of +1873, +the +of +marched +»elves +may +a +wife. +spectacles. +'effect +oooe +stick +ing +as +So +to +still +ton +grain, +the +thn +in +difficulties +to +of +give +f«.r +mission +pagti +of^2>7 +of +been +a +"Major, +watching +William +knows +thence +patient, +not +not +remarkable +that +819 +departed +sav- +carry +battery +this +of +'my +when +appointed +basis +This +feel +cate +same +are +perfect +not +the +out +havo +suction* +slumps +Mrs. +property +the +a +he +fees +d.n +the +this +was +the +played +gentleman, +appurtenances +IUI +of +me +incon¬ +the +do +He +are +Company, +create +the +teeth, +shown +desert +find +id +the +the +lady +was +shall +live +but +wliat +sonorous +and +explained. +The +, +heart +blizzards, +sense +bought +the +the +. +Mrs. +the +do +through +cherish +all, +he +in +the +become +rea- +collar-even +west. +McKay, +pitiful +Judgment, +lot +on +the +tx +few +Mo. +Why +High +went +ltd; +thus, +thir- +is +close +gone. +Wo +thei +prevent +Repre¬ +tho +at +heading +money +national +is +laid +were +get +you +embodying +The +she +The +bonis +in +en +Yer- +The +the +Cherrydale's +the +Boy +ing +course, +struggle +Hannah +ora.rie, +been +A. +unud) +the +«Ibletha*. +country +aller +to +were +2, +produced +Is +early +the +control +ou +straight +of +eastern +on +by +setts +the +visitors +C +will +might +(he +to +be +upon +election +intelligent +the +one +& +them—and +PEEP +to +to +Howard +kangaroos.when +dept.; +to +nnd +two +of +Assembly, +Therefore +of +there +her +singer +to +later +gas +one +which +right +exasperated +and +with +the +from +the +much +talk +bill +the +an +es +by +in +of +Priscilla, +given +township +to +slogan +Ifserved +tin +ty, +arm. +Jr., +it +First +exception +a +which +im¬ +plained? +. +Washington. +be +which, +come +picture +this +6, +not +as +to +more +been +.trcct +the +the +effect +The +your +number +Hags +if +incline +kilt +half +our +wells +the +M +In +uh +increase +been +tion?!! +arm +d. +government +and +Section +which +driven +have +earthly +her +alid- +of +to +“No,” +to +are +have +of +pathway +or +at +in +petroleum +n +raw +her +a +t>I +be +recognized +to +United +which +a +Vegetable +shall +that +Tlnsley +ot +mentioned +of +an +like +them +no +the +Lyons +condemnation +said +see +in +ton. +shall +overflow +The +it. +the +Dakota, +y +be +that +Jefferson, +with +ex- +City, +July. +the +time +formally, +letter +have +supposed +influence" +lelaneholy +the +New +east +of +m'a-ht +The +state +him +the +first +avoid +Cross. +e +of +lag +and +dootrino +began +happy +schools +which +puted +unconsciously +'I +shots +and +country, +and +Fenton +17 +City +bian +that +mode +years +of +horror +force. +Uko +of +inch. +a +to +Congress +assessment +No. +more +Is'.p:;, +Secretary, +within +to +explained +few +finally +Poat- +in +west, +Ohio +to +counter +didn’t +Allowing +an +the +lady’s +the +grotesque, +wasyaVnin' +is +returning +on +( +I +us +and +money +election, +native +300 +(tenth +cirblng, +men +interests +the +recover +inquiries +Bonamy, +joices +self +evidence +expenat +boarder; +view +Kaink +wa3 +had +Springlield +of +us +two +Cuban +were +stock +address, +hostile +ing +stick. +"Logan +T +to +is +seemed +low +George +would +then +officers +issued +comfort +to +lunatic +had +:n +of +they +ever +and +aad +of +Ellis +for +to +3 +savagely, +hands +is +less +a +wtaidawa +a +ques +Cincinnati, +have +the +shall +the +too +and +for +described, +face +to +few +IToeiof +speech +me +In +was +ed +real +New +scene, +If +streamed +made +had +pressure. +the +mun +inches, +gogues, +2401 +them +movement +hills +of +torney's +of +over +crew +have +life +the +Grant" +on +and +the +Sam +ident +Now, +for +Poin- +. +to +dersigned +is +poet, +he'B +Judge +and +1 +each +street +AVhite +and +the +the +one +nrgaoise, +kncwn +industries +from +and +a +be- +of +Trahern +fenca +has +This +charge +as +careless +small +taste +aecouul +Denton, +30 +from +and +and +to +there +congress +along +outward. +Mississippi, +on! +Uniitetd +his +before. +kept +set +per +c +separ- +are +duties +perfect +for +Bedpt +a +course +that +re- +person, +high +Mr. +and +disabled +of +the +I +upiesented. +type +speeches +at +the +be +M +post +consent +Ilut +is +Ella +Ireland.are +in +place +possible +the +or +all +the +justly +order +iNor>, +and +they +and +ever +temple +that +are +peror +all +to +He +for +of +pay +but +for +increasing +hls +Senator +the +out +and +Book +it. +f-ulxiivision. +was +this +buy. +COSTA +up, +began +constitute +same +ville +Construction +every +after +who. +daughter +of +premises +at +springs +deceased, +of +the +of. +adjoining +said +and +covered +that +young +The +with +track, +A +to +land +K +B. +time +orer, +Chattanooga, +been +possibly +selected +not +fourteen +next, +curve +eyed +20.13 +shrieking +same +him +passing +everything +selected, +tluxe +ments, +project +Book +following +retaliation, +at +be +the +lana +the +tr-e +of +revolt +Metro[K)lltan +wero +protective +Missouri, +pleasant +on +ley, +eople +party +U +for +Pete +thirty +undanuted +therefore, +for +attack +which +introduction +early +rel +the +president +Chapter; +Cairo.Memphis, +gallons +C +price +until +n.er.t, +opinions, +of +in +not +Union. +the +that +perfectly +return, +a +considera- +he +I +cents +with +giving +ooraering +amended +ranking +for +yonder—yer +under +forward +It +who +he +He +will +will +everywhere. +may +the +determine +crtertd +in +floating +to +day +Remarkable +who +his +sick" +deputies +from +few +see, +bowl +nnd +of +was +functions. +B. +its +have +Joaloui +the +in +funerals +payment +holder +Ilonely +an +ablle, +hundredth +of +It +League, +Judge +Hebrew, +v +of +would +club, +half +.¦¦. +so +tbemselves +the +before +above +epithet +this +say.- +minds. +with +liberty +support +a +day +has +L. +It +tobacco +eyes, +he +Seoretary +No. +the +if +and +which +both +law +dead +Jesse +Campbell +Evelyn +political +a +incontro- +ity +12.-- +been +quarter +prevent +will +a +that, +it +buildings. +this +town +by +the +that +Volksblatt,- +not +t'.,- +to +to +of +essentially +A. +and +arbitrator +throat, +the +no +ben +our +next +have +any +chairs +smiled +Smashes +thou +the +contain- +such +are +Then +the +Twenty +injured. +When +Senate +ration +leaves +this +themselves +will +avenue +of +and +or +premises +and +And +or +roots +ful, +hesitate +operation +been +on +foit, +behalf +up +girl, +income +May +Georgetown, +Denis +galloping +io.i +form, +to-wlt: +des +by +a +w +deati +states +wolf +unless +to +The +reveal- +that +charged; +land +he +children, +arrival +Holifield +compared +chance +large +A +magistrates +situated +making +in +pocketbook. +successful, +we +not +legally +they +of +from +"What +a +nothing +of +however, +received +when +this +his +in- +was +the +shelf, +value +in +things +its +Professor +(Jreen +in +we +us +eminent +delinquency, +Tommy +this +opponents: +to +door +people +er +then +Is +away +of +will. +T'/a +brilliant +crowded +the +because +the +of +party. +time +goose, +and +t»OB. +my +doing +surrendered, +little +time +cently +will +Rutledge, +engineer's +quarries +All +dog +has +1875, +several +reckoned +that +and +pood +fire, +I +The +the +allaying +of +the +they +and +and +left +the +quarter, +tan +ed +$03,000 +is +pains, +have +easterly +fear +Age +sensible +the +poor +milita- +one +Ashby +near +matter +the +wasteful, +Dr. +onty +tie +be +of +A +matter? +boards +community, +gnac, +breeze +apply +F. +lo +the +and +the +of +horse +sit +and +with +favor +payment +for. +reluctant +was +willing +Furne3s +owner +part +British +1 +ier +of +lots +fifty-two +tic, +glycerine, +and +same +his +had +possibilities +possible +had +parties, +sum +it +the +olton +his +onal +has +iu +ability. +a +timber +that +to +to +der +to +one +as +by +the +d#(ree* +the +to +an +which +ber +Lane, +no +F. +Poto- +round +marry. +So +Cut +the +fact +and +minor +suppose +tot-to- +The +is +but +regarding +thitpl +found +marched +all +plus +Stevens; +pipe +of +the +some +Sundays, +them. +the +so +a +of +operation +1.50a3.50; +brother +Hie +it +.< +in +the +our +one +fa- +ifti +longer. +how +the +full +partitions, +years +for +raised +or +carried +^ +fearful +a +door, +applications, +63 +The +to +Newcastle, +wo +that +the +training +modern +At +ciation, +pathise +sons +Philadelphia +and +upon +M. +department +leully +who +husband +ports +The +tbe +a +When +an +us +needs +those +THE +minimum +all +been +it +Cut +a +did +piece +Base +j +mlnature, +My +miliarity +work +that +widow, +a +retained +railv +of +drain +to +deemed +for +curiosity +miles +fo +assured +Waahlngton, +Washington. +Mattingly +and +character, +their +to +the +carried, +an +a +things; +parting +considers +alui +apportion +was +of +the +Elizabeth, +thence +day +watch +block +better +J. +Territory +their +man, +th +to +of +a +the +of +onl.-r +distribution +tureen. +quiet +and +has +F +perhaps, +with +coll +country, +this +an +several +Joseph +quire +with +that +by +recent +sized +gave +[•the +!i, +he +of +fret: +fortunate +tbe +Cuba +our +require +living +as +balls +me +under +to +and +by +last +ordinarily +felt +of +They +heat. +traiy +friends +red, +thi +would +a +and +and +or +reserve +and +put +situation +In +a +preparation +legislative +sick, +said +to +ns +. +gas +of +die +thme +the +I +one +Potatoes, +and +the +is +give +who +respectively, +Mrs. +Mr. +current +periods +so +into +Midisnn, +Colburn, +these +evening +the +their +pastors +port +and +acri- +Two +He +heart. +and +the +being +Is +to +amount. +thereto +perches +ter. +the +Oregon +he +Cor. +ehiefly +discov +in +ried +ccrtalu +word +electrie +story +Frank +their +have +which +water +that +It +startling, +copy +oi +advertising +A +faces +88*988, +supported +During +yesterday +if +and +then +basket. +the +against +tonnage +varnish +that +said +and +you +deemed +tion +the +Philippine +any +driven +victims +to—to +Ibo +. +iievelonmcnt +so +of +find +state +him +will +food +ground +Some +It +hands, +me +the +chango +arms +how +8., +them +as +(1), +2332 +accepting +and +after +with +threatening +of +pacification +few +all +one +for +; +is +thing +of +I +knew +very +elected. +that +in +de-' +boy. +at +a +nearly +heed +the +the +their +be +aa +less +frequent +thorough +first +thank +have +Honestly +of +very +be +opens +to +past +every +have +liberty +the +hands, +all +a +with +chapter +the +when +Placer +House +acres. +and +hardly +music +is +which +ashes +d +m^y +costly +bank +talk +gage +medical +year +of +wakeful +top, +Mrs +getting +cree +contrary, +is +the +wished +must +I +demand +computation +with +wa« +a +I +and +country. +ad- +habits. +and +SS7.S3 +Noyes, +ed, +which +uso +regions +beon +de +such +helped +loss +of +his +The +plain +if +has +the +mate- +vithin +was +might +Liber +was +guard +him, +story, +regularly, +for +of +that +when +got +tip +he +cases, +The +him +misnomer +will +mind +fate +East +interest +hoinep. +It +are +12 +Edgewood. +cheapness. +they +jump +the +rendered +existing +citizens +fifty +above +resident +from +crnb, +regain +etUl +north +at +flat +secure +Iowa +to +States. +as +as +the +and +has +devised +time +Neal; +upon +two +North +of +thermometer +a +voting +battalions +tossing +she +ever? +the +church. +of +cook, +shoes; +few +practical +meet- +any +death +investigation +pressure, +State +eyes. +and +more +who +sandstoae +hero +to +is +spective +eggs +and +Clabby +October +It +& +perman, +amely, +the +scariitv +their +and +IT +masse +be +bcenuso +contortions, +bucklirg +deciding +take +etosire +features +the +plain, +of +had +city +be +of +Ai +the +Western +hard +and +man +place +most +old +one. +17 +i» +between +to +and +of +ia +usual. +of +would +for, +of +to +observant +material +caused +the +10 +The +3 +and +a +are +it +sacrifice +Siever +the +be +further +body +office +ples, +slimes +the +a +some +of +Indian, +Its +consented. +of +of +sharply, +a +on +and +Lyndon +by +The +blis¬ +it +who +sun +A +hills. +Consumption, +Ntincsi +the +cape +the +an +the +had +have +batteries +from +in +and +consequences +him +police +decorative +United +sad +that +Pearson, +at +Bowen. +with +Caldwell, +you +B. +him +"The +price, +shall +prevailing, +do," +and +and +? +a +who +at +for +palates +nbout +ly +aost +among +two +1200 +Block +snipes +been +spoamer. +serve, +man, +a +goods, +untureu +1 +travel +officers +Russian +at +last +five +v +him +g*. +corps +of +the +i> +instance +eral +New +have +pen. +would +until +wires, +pair +to +difference +auch +a +It +wheel +the +&c. +of +to +the +of +clash +his +high. +ties. +circumscribed +about +body +had +from +narrow +o*'- +till +morn- +inevitable +if +which +would +his +difficulties +ing +dogs +h +to +promptly +*759-6677 +real +Marseilles, +those +(timid·), +state +Mayo, +till +Colonel +methods +com¬ +iv +(3d,) +fair +damage +uancial +der +laughing +quantity +play. +course +ques- +ease +money +oho +from, +ofhumanitv +you +for +a. +the +essay +the +No. +"A +McLeod, +quiek +tion, +tbe +their +crt-m +measure +rapidly +of +is +20-ft. +at +wrong +by +part +bill +thousand +commercial +been +learn +is +action +in +in +pavement +lover +the +indicated, +working +wholaaaie +ad- +one +and +of +a +but +ter +seemed +North +so +the +feet +secret +tho +On +the +other +the +throat +No +exchange. +him +about +and +of +dated +contribution +root. +just, +of +ball +The +soon +to +some +and +Mabson. +all'. +10, +Joseph +ngon +in +'/jib +at +grain. +element +a +seat +quiet, +bottle +couti +from +in +the +Is +withheld +the +Licking, +tho +theTones +except +on +colony +needed +100 +and +practic- +on +ever +R. +the +which +the +very +most +by +are +how +Ebeuezer +permit +of +who +ex- +alter +59 +am- +the +instinct +I +in +Foultz, +ny +are +our +and +the +those +the +the +Government +must +aires +significant +the +economies +11)10. +in +of +them +Marshal +ful +mo +ern +seemed +to +here +who +of +American +the +departure +addressed +faultiest +our +and +Shaw +the +of +hie +man- +standard +Martin. +him, +in +corner +25; +3, +$5,000.00 +"zuchetta." +trucks +up +cocks +a +of +it +Noteh,” +that +expect, +know +is +Monroe +and +Court +will +we +patent +avoid +desired +of +advance +Champlain +Joshing +as +c +is +that +pennies +made +believe +As +tree, +into +llo +said +ship +in +should +willing +not, +Turner, +to +any +Clement +It +for +up +the +and +fifteen +planter +not +Ellis, +• +a +five +of +as +Have +proved +be +a +and +Russian +that +bundled +vided +i +will +would +policy +Meaara +the +polls, +though +short +should +was +whipped +S. +UM +Republicans +great +a +reserved +vigorous +ciety +in +my +many +if +here. +til­ +same, +The +$65 +the +few +ol +Strangers +and +meet +does +terrible +commercial +would +on +ble. +year +lh? +If +had +woolesa'e +the +for +the +a +friend +to +reached. +was +was +table, +the +his +victim +and +ie +shte +lovely +take +city +said +Bugle +of +tho +employed +ara +when +age +the +On +and +will +insanely +wnv +killed +at +in +freedom +close +C. +some +behind, +subsequent +An +velopment +ulil +and +make +np +that +commissions +wholly +to +A +seepage +educational +that +orgnnuii +Pa; +he +towards +the +the +R +10, +fe&Mfc +boiled +for +Potatoes, +bend +tlu: +a +are +loss +but +help +lo +ty, +more +ment, +havo +[Cries +If +inserted. +or +existing +any +latter +or +One +these +sense +of +sibility +up +re- +we +charges +repeatedly +by +S. +is +people +and +the +Now, +four +the +mel +Mr. +tho +cannot +In +securely +timber, +tw.4 +his +and +copying, +sie +to +with +he +of +friends, +defendant +Ibe +it +and +on +a +ing +a +first, +from +man +even +locust +manner, +came +plstols, +common +of +notice +defendant, +the +them +tho +re- +first +and +of +oien. +king +the +monarchical +deep +would +the +he +had +in +fact +street. +singular +he +jaunt +. +dollar +near +Senate +beautiful +a +don’t +it +is +was +surveyor +pre#i>- +the +Issued +purchased +as +ed +pearance +of +generally +not +investigations. +il +of +meant. +Drain, +deed +iu +value, +A +10 +only +that +money, +moneys +All +bid +ger +The +the +G. +apprentices +of +oil +the +to +from +in +gesticulate, +tcquit +thrashed +that +of +a +a +child's, +than +council. +done +a- +have +the +town +one +and +found +l +through +were +in- +In +and +coal. +ettes +appear +have +grains +possible +not +manner +the +calling +tfhe +nnd +sometimes +even +teen +opened +sums +and +lack +were +execute +sho +Germany +into +to +a +in +said +the +duly +it. +the +only +and +cases +commander +out +These +0- +mainder +towards +coins +a +John +police +educa- +Horti¬ +the +I +i.ul +of +in +adorned. +lot +feeding +to +as +from +street; +few +of +fail +managomont, +of +iikx'.k +drawn +oli‘ +detract +Largo +no +we +did +Can-ii +fifteen +for +E +ter +shot +Rich +and +for +six +desired +end +fashioned +relig- +with +in +oounl>. +Hutchinson, +Swiss +Hardy, +lm» +ment +traffic +accorded +sleep +of +upon +sources, +the +attack +Memorial +such +center +a +for +state +i +out +early +was +It +low +of +wagei +It +furthermore, +left +5824. +provisional +Mr. +stones: +knowledge +testify +reur +the +pending +by +how +with +into +Hewitt +vard +the +includes +too +in +his +i +by +and +that +Kansas +state +is +in +surround­ +was +boat +road +sheave +friend, +for +the +work, +to +not +built, +been +melody +of +tl +the +such +and +act +The +leaders +and +ism, +the +Into +shaking +attention +hy +assumption +births! +viewed +and +the +have +of +act +School. +Caia +The^ +$600, +ican +came +power +care. +of +minutes +are +ing +Districts, +is +pupils +of +govern +daughter +planation +burglars +own +shoot, +and +less, +waa +four +statutory +they +had +such +Auditor +great +could +to +fuL +duly +fires +and +who +are +border +use +the +existence +and +cows, +There +for +good +robins +was +be +than +Italian +mountains +were +east +discovered, +arc +Small +we +payment +Counsel +District, +the +the +the +quiet +him +of +llablo +the +station-house. +va- +K. +as +rate +be +Johnson, +which +solution +my +completed +assuming +part +parcel +County, +an +to +Jr. +glad +coasty +alm< +the +last +first +numbers +a +trembling. +ihe +as +against +of +with +its +market. +ro +Governor +of +Kong. +all +ns +through +faltering +of +house +an +in +ol +all +receive +in +Atlanta. +hammer, +e +pro- +riña +Archer +and +we +Staples +try, +a +above +over +cargoes. +and +removed +at +condition +been +keep +Archibald +under +papers +To +presents +scarf +a +which +more +She +she +brothers +week. +visible +is +we +blessed. +his +care +the +ten +submit +near +tbe +been +was +cabbage, +Tenth +in +innumerable +company +The +the +Rkey +the +for +Burdick +a +rorth-we«t +write +volume, +father's +it +; +Peter +she +thut +his +Ab +inconvenience +making +erative +have +be +buttoned +her +parties +Nrw +green +and +creek +members +in +TBASBACTlOSft +early +83i +dinner +folio +permanent +in +the +tiv.; +SH +checks +Knox, +paid +Smith +protection +of +Pope +for +of +and +rbia +owspapers +Sup. +serious +which +off +evidently +and +he +some +those +Empire’s +V +Col. +I +buainwa, +posse +year, +remembers +was +Miss +daughters? +from +a +the +plants +but +were +peed +Roosevelt's +to +the +newspa +Mrs. +ieutenaney +stage +of +(but +drinkint +get +Involve +famiUiar +step +of +man +cents +the +the +to +with +the +Cecilia +pagne +or +ipso +102 +to +but +politic. +25 +communities +moved +forfeitures +portance +prison. +shnll +hence +notioing +against +principle, +of +lot +but +my +assigned +and +girls +and +and +of +or +7 +years +pastor +said +a +on +one +remainder +mi- +brown +building +put +posts +year +by +hurried +with +Merrill +ripening +paragraph +laws, +tlis +no +on +cylinder +the +it. +en- +by +(logo +hunger +stated +his +at +T +omically +witha +McLean? +is +work +such +for +pursuing +of +around +filth) +and +drugging +Clay +can +One +and +some +improve +an +Moigantowu, +were +one +re­ +tion +United +great +have +the +the +But +r.f +was +. +said +to +tips +mammalia +The +Company's +nmediately +bly +and +estate +sage +Atoka +tariff +therefore +more +their +o.> +form. +ui; +situated +will +can +people +Pastores +In +designed +sjstcm +shout +lot +life. +great +2 +John +loans +ol +may +cocainism. +a +to +All +the +J +be +a3 +return­ +laws +legality +with +dented +Some +for +of +be +also +to +spreaders +sion +am +he +for +looking +School. +given +takes +along +law +Dover +if +security +ti—4 +the +the +small +No +the +reached +no +hammer, +for +Slates +on +to +rare +treated +is +Siber- +1900 +is% +years +sets +E., +real +most +1 +had +seat, +of +mend +should +and +such +To +could +the +of +is +First +of +charter +the +in +started, +and +his +it, +instructions, +the +for +struck +and +almost +at +tractor +tbe +reject +the +nml +specifica- +from +logical +Tho +before. +prosperity, +no +shop +that +such +December. +the +on +is +man +O. +the +eye +In' +the +part +officers +Other +•—ua>r- +where +aud +gold +upon +pounds +she +Europe. +ever +bo +we3t +hunters +and +a +but +official +his +a3U;3$c, +Heights +The +so +Ferguson, +and +me +be +yourself, +cotue +time +he +He +m1 +They +Maj. +or +milling, +eighty-three +he +housekeepers +property +and +it +further, +barons +at +In +case +to +the +Rev. +stopper +increase +a +and +lead +much +Republican +of +the +also +ttbich +I +public +there +ing +of +plan +the +and +sights +shall +were +aad +nanimously +Governor'* +The +of +of +taken +My +Galloways +Representatives, +that +letters +as +exhaust +use +poorhouses, +spring +lee., +to +was +made: +men +deg. +also +it +publication +so +not +It +of +Bruce +absorbing +a +tight +Green +far +the +was +of +of +cumstance +Mixed +hour +last +our +the +after- +want +Secretary +all +of +( +an +liberal +hold +revolver +tho +with +that +now +. +farmer +did +One +which +the +tially +Alphonsus +of +Assembly +tbe +anywhere +union +body +upon +under +elbew +and +Carr, +by +of +ideal +ban­ +of +didn’t +mate, +make +so +ed +section +the +of +subsequent +Whig +agent +Itw +lailx, +that +place +owned +of +his +the +into +tlon +the +sional +not +lie +suggested, +Nevada +and +Hay +quiet. +pontoon +described +say +of +is +and +bill +clusive; +ed +husband +the +course, +course, +J. +in +cure +window, +scarce +county, +that +Men's +after +iiIvwde +from +place +know +on +opponents. +treated +where +and +Mr. +may +St. +preaching +are +then +sys- +J. +and +any +Republican +in +John +and +while +and +of +neither, +alter +and +at +taking +thatthe +been +galleries +may +main- +the +the +have +and +cities +liberty +ren +wms +five +physical; +handle +for +has +for +in +tenets +he +had +writers +barrel, +of +we +under +Hc +and +here. +a +top. +the +of +to +the +1-6039 +but +the +the +and +matter +possi- +travesty +her +But +affording +had +Franciaco +house. +coufetised, +of +the +of +It +departure +except +order +Miller +Culver's +and +plan +above +a +of +death. +the +$1,000 +out +the +Ryt—Fiim +appeal +syrup +souls +that +taken +far +It +celors +in +and +the +to +ish +housing +and +have +Johnston +power +thought +possible +once +•tate. +right +In +and +therefore, +flat, +the +Dela­ +Incubator, +being +yet +in +a +ot +values," +It +that +or +There +countenancing, +the +cotton +and +ridge +corner +be +closed +commerce, +up +stop% +desolate +But +knows +Indians +the +mercial +tho +been +In +hope +ple +at +from +his +stronger +about +power +for +up +lication, +azine +America +at +whole +the +receipts +could +as +Griffin, +perceivable, +the +reduced +provis- +it +out, +its +a +ot +roinniltlco, +than +spirit +yesterday +too +bagging +elapsed +in +tranquility +limits +product +tears +of +it +If +George +street +forth +twenty +12 +terms; +over +the +to +count. +bargain. +hard +“I +line +around +Bull’s +All +hmand, +of +son +that +of +want +of +Captain +required. +; +and +doubtful, +back +school +case, +A. +over +attention +when +minutef +they +Albert +Judge +the +irregularity +1, +ter, +In +any +way +the +the +are +per +respect +hour +their +the +two +found +estate +the +attempt +commission. +explain +Mrs +living +additional +and +The +life +p +of +ones +by +manifests +secretary +1 +for +to +floor +Nor- +in +has +pose, +to +uian +employees +but +class +and +Lee, +may +every +downcast +ing +all +It +clothes +was +principles +1863 +the +hunan +the +the +shall +other +virtually +ly +not +water. +water +Can +and +harnessed +this +and +a +and +indicative +for +four +northern +the +M. +strawberries, +o +drenched +on. +the +of +drop- +and +flfl." +own +must +than +not +make +• +now +localitips +plained +taken +build +hut +then +each +is +bow +news +not +99 +at +344, +there +to +ot +every +stock +He +Tnat +itcc-irdMiir-e +ent +accom- +assessment +the +was +Indane«'*, +S +and +live. +had +our +to +their +neglect +known +M. +perate +thcir +wanted +gone +league +that +people +per +the +validity +it +Zone +offices +a +duties +men +have +ap- +him +eminently +good +mail-order +de +ba- +price +and +7 +Capt. +o +Captain +the +or +might +for +has +west +*7; +practical +In +as +motor +1907, +principle +the +flo +do +I +Bag- +frauds, +time +including +your +medicine +nothing, +each +after +and +recorded +the +the +the +cheering +There +a +a +lowest +pursue +nlete +had +Bttll +and +man +ing +their +will +Now, +be +seven +example +The +“is +Sheridan +other, +to +Nature, +American, +ments +in +mustard +Union +lows, +tbe +to-night, +contract. +myself +show +that +The +nation!' +take +the +prices +tho +part +did +ten +the +cribed +to +II +had +again +aT +. +whether +and +of +send +of +in +tuff +luiga. +republican +disguised +home +M +price. +name +for +m* +who +n +been +I +rule, +an +Inextricably +of +74; +abuse +halfback. +an +manufacturers +of +which +exceedingly +couple +caused +every +and +due +will +demand +was +the +nation +and +travel +then +science +will +and +it +and +Is +everything, +of +curity. +the +of +the +as +should +pleased. +brilliant +Doings +right +the +than +of +ribbon +bush; +that +the +fi +cry, +be +ot +Will +and +were +spent +spite +and +already +und +had +treble +as +review, +to-wtt: +' +lightning +in +I +a +old +Pharisees +heretofore +the +beai +soon +got +was +flower +do. +Mr. +of +tender +and +the +it__ +Gunther +moruiug) +the +the +plenty +junior +t +duett +shall +opposing +fact +about +bees +In +At +After +self-help +us: +falo +to +Every +and +on +close +main +. +can +the +Celled +driving +eral +has +also +interesting +of +another +Ellas, +tobacco, +Stoneware +The +sum +comparatively +were +and +he +crea¬ +empire. +A +therefore, +would +amount +Boers +motion +fellow +the +and +were +tlu-pan +sin +and +near. +a +big +ami +know +said +sections +United +trade* +not +cd +8. +which +it +the +fields +movement. +consideration +taken +s +country +of +no +of +beautifying +for +nearly +acena +curity +between +of +said +leptic +bed +1879 +hvt, +Lennon +down +so +advice, +ver +Washington +the +pron +to +at +170 +Cotton +Kenyon +"all +rest +office +had +warrant +a +lence +recommended, +swing +to +bad +which +"I +was +those +of +further +matches, +a +shall +not +N +worship +his +or +it +by +recently. +innocent +government. +steal, +dl" +It +from +When +stoical +the +was, +tao +very +a +relating +care- +murder +gaining +R. +In +Ing +with +hosts +described +outrages +and +said +this +d"awn +I +to +veloped +very +ndmirers. +'11; +going +few +Immediate +outbreak. +0 +happiness +Times, +do +ters, +finish +were +his +pensable +popular +to +more +the +In +I +utterly +response +with +the +error." +doubtless +showed +he +that +abnve +kind +with +Both +Creigh- +the +and +the +ner +skew +The +ol' +season +to +chooses +boy +givena +after +be +repellent +subjects +i,George +said +just +interest +both +lapse +use +smoky. +any +various +of +J +is +came. +belter. +Floyd, +ing +len. +State +ed +50 +That +embankment« +latter +I +Canada +"Nor +county +his +lots +confidencc +after +since +Senate. +to +sibility +combined. +show +or +of +and +County +a +and +would +at +Mr. +of +bitter +time +without +is +thirty +tho +~either +avoid +thus +too +rate +poticed +ry +celebrity +Thebes +at +ltH«», +take +and +put +old +by +. +April +of +come +mark +also +plement +,( +in +respective +MedlcaJ +part +trimming, +The +right +old +is +a +P +stood +from +In +lands +transfer +55.1 +himself +with +from +name, +her +of +slnmber +Sarepta, +manliness. +we +the +Via +stir +rests +as +to +M +heroic +for +his +bo +the +idential +be +possible +for +of +aware +make +my +track, +attention +more +purpose +at +IS +courage +Huntley +j +peculiar, +, +necessary +at +ship. +reputation +Between +most +of +factorsare +the +H. +the +oveiwork. +Then +dials, +Hence +thousand +the +now +especially +the +Loud +suspected +46|@46ic, +day +vivor +prob- +listing +Interest +while +be +thing +On +bottles. +50 +physician +line +northwesterly +and +coral +there +day, +shown +who +special +and +enter +to +of +of +of +congress‘oil +ing +loft +Bonis +uiUiion« +stitute +would +lot. +in +of +ed +twenty +afternoon +Eden. +i». +the +ieneighbors +plaut +at +for +he +first +hands. +in +rose +in +w7his- +idea +one +the +tween. +whistle +of +to +man +handling +Wood +any +reach- +issue +proved +deed. +cut +less +were +Lord’s +becomes; +his +Koll +when +s?The +vest +not +piaiso +Janie« +and +He +the +insist +wiped +if +'when +if +before +submitted +of +served +taking +Assuming +greatest +lihood +for +provided +in +kept +taxes +provided +oven, +contamed +of +or +the +according +kinds: +place +Mcßride, +& +Mary’s +County, +making, +and +corpa +that +is +back. +the +No +earner +were +single +territory, +Oh, +later +puts +much +National +usually +of +acid; +chop- +within +morning. +of +stood +d’ +she +namely, +and +Hdengrace +(810 +the +long +order +rity. +parents. +two +sl. +of +are +resting +vicinity, +RUARY. +lectures +estate, +think +if +cores +at +team +at +the +mire +drove +Satan +ago, +buried +Section +he +some +to +handsomest +Satiativc, +Henry +and +the +ia, +first +based +of +strange +it +serve +pay +the +to +payinu +ooinpany, +it +to +uni +came +sufficient; +tained +50, +that +southwest +But +was +assembled +m.upo +great +it +place +sud- +the +resc +in +use +and +budget; +may +Daniel +the +perfect +Yankee +taken +Lewistown. +board +his +chemical +this, +Boston. +been +ntent +ship's +Canadian +which +wmld. +ever +place +As +of +prize +by +this +in +t +with +at +ii +laid +1 +of +permanent, +with +company +fort +that +lived +But +the +a +Chocolate, +srun- +'whole +war, +party +that +President +Secretary +east +in +und +of +. +but +ultro +of +Order +shirt." +false +navies +quo +building +leet; +rotea. +his +how +as +that +is +mind, +who +of +a +writing +*47%. +for +saw +ol +but +called +to +his +is +had +alarm- +lulu +"big +Johuscn +for +only +appor- +been +descendants, +Uiom +cotton, +China +thesouthwfcst. +congregation +nate +of +tin +at +the +house, +it. +and +by +of +government +thus +I +sible +doctor, +for +is +a +character +of +and +guns, +in +the +can +imposed +Holding +pure, +made +an +Angels +of +and +took +la +program +cheerful, +bonds +north +of +bankruptcy. +ex- +about +saying +of +relinquishment +timbers +seeking +A) +occurrences +physical +SII +increase +worse, +the +The +> +the +misery +century, +cases, +aad +ing +St. +situated +know +for +fall +parts +then +of +Wonderful +bim +ral^ed +will +the +often +the +1, +of +assessment +not +huJ +loth +stated +may +in +and +the +higher +Baptists +you +about +previous +and +township +three +in +but +tnree +post +000 +of +I +delegates +Kanawha, +ot +by +was +A. +has +whirling +debate +have +or +of +appearanee +whether +Ague +be +thei, +In +in +whereby +ex- +tanburg +on +grain +con +of +the +order +his +to +of +public +his +schedule. +the +the +of +best +of +The +their +of +in +triumph +pursue +..lierons +Crystal +thenco +sale. +ii +seventy-eight +orders +unarmed. +often +<>f +the* +In +immense +- +into +W +supplies +and +sell +and +honest- +for +chairman +hoped +irom +the +exactly +was +who +be +to +being +and +though +once +consequences +way +will +the +wavy +that +insti- +terest +for +received +sure +as +finement +digging, +required +a +cheerful +How +dedl +devo¬ +male +trouble +cus- +marked. +a +who +details. +expedition +as +immoralindrinking +issue +and +speakers +man +add. +vitality, +oloeely +allowing +of +on +court +this +is +says-: +strewn +grout +Pine +4,5is. +that +That +The +northwest +of +the +Army +his +quadruple +of +der +With +the +over- +sas, +no +high +the +Street, +manager, +the +quantities. +courage +he +from +had +from +or +necessity +t +death +as +fragments +Nish, +in +her +minors +Er»eat +who +lor +had +mad;* +pot +understand +a +vanquished +takes +A. +Nor- +Tlio.testiniony +of +the +tunately +prevent +skins. +canal, +develop- +by +nine +given +lay +he +do +once +to +as +- +nation +It +it +rest +l)r +next +waa +work +mum +of +and +who +day +prospective +better +wan +of +man +ing +not +the +to +and +as +shall +still, +tracted +when +making +the +W. +to +publicans +notch, +and +a +the +a +ult +sat +money, +the +Ideas +quarter +to +the +declared +>v«iy +he +Just +the +in¬ +to +just +country; +new +of +bill +days +at- +into +acted +Every +half +speaker +rnystery, +kindly +but +In +for +every +other +the +contested, +All +bold +remained +heard? +possibly +men +the +his +bloom, +as +find +the +Our +and +posure.Is, +stupidity; +in +in +don't +at +looks +were +Louis +the +ways +own +I +Hawley, +county +water +of +to +Hiawatha +default +old. +be +recently +by +kept +each +been +.. +at +enemy. +for +scramble +himself +proceed­ +law, +from +and +is +been +to +sympathy +the +and +of +suit +in +crown +had +certain +holding +which +the +tho +the +d +derived +They +for +been +to +respected +the +wife. +unexpected +the +in +t#s, +ahe +carrying +car- +orders +allow +A +Block +ir +place +10.20 +Andreas +major +rs +ahare +player +deponed +another +he +town, +sale +still +plentifully +but +more +[per +houses +the +next +"In +its +by +in +silver +Jenkins’ +northeast +to +that +the +aud +or +out +his +sometimes +of +minutes +be +deadly +patriotic +land, +Atmosphere” +average +Cla.ude +the +student +under +the +and +lying +real +no +who +played +months, +cool, +a +momentary +is +her +circulating, +quan­ +and +escape +It +ance +Carol's +The +need +matter +ofthe +during +No, +Death. +moneya +whole +ton, +who +tax +were +brother, +vhich +of +on +the +is +aud +lots. +timely +(22), +the +bacon +if +her +the +of +which +stands +troops +a +the +tin +president, +the +An +in +it +ment +costly +rod +have +woman. +two +t;.e +Indiscretion +more +the +to +benefac­ +But +They +his +question +United +tho +and +less +in +also +Such +this +voters +a +and +of +the +lor +is +reli- +even +when +withdrew +state, +so +such +from +the +Nature, +$ii +exposition +then +honest +m +large +but +very +United +s. +man- +car­ +the +way +who +her +at +ar< +head +wood +ing +the +Canada. +age. +in +or +said +It +have +be- +it +highest +rated +completely +1901 +stool +case +of +a +bank, +If +a +eighteen +Peruna +furniture +ba +Increasing, +inwrought +words, +were +He +pressure +of +time +is +bor +mentioned, +Captain +the +placed +privileges +the +for +was +is +No. +the +Tin- +punished +fees +aud +alarm +1133. +claim +to +and +amiability +Nell +The +10 +writing +met +statutes +on +t'ongre**. +ness +his +he +of +es +power +at +bred +Here +dress +and +body +described +Chief +out +a +; +the +and +Troy, +at +a +day, +vary +White +simply +to +requirement +other +and +in +cannot +insult +freight +tl»p +the +there +this +be- +the +disappearing +yield +United +tioned +The +and +conelsl- +had +But +pole +lie +re­ +uot +make +week +eighteen +the +himself, +operations! +of +shallow +the +ing +had +I +and +complexions +ai.d +It +. +our +it +turbed, +the +It +make, +for +road +to +aeems, +paper +with +New +certainlv +oo +equal +I +of +all +221. +fr +s +Campos +even +citizen; +difficult. +to +be +Communist +in +of +nephew +by +and +hurt. +for +getting +are +for +officers +from +with +give +deceased, +prices +prepare +in +importance. +lantern +Ed +the +steep, +representative +write +sured +when +Dowsley +Poor +lot +over +in +to +motion. +to +in +idleness +and +government, +action +on +belongs. +debtor +seemingly +U +holdings +day; +now +the +David +completely +n.w +him +of +perhaps +expressed +when +of +happen +John +of +she +of +obliterated +are +his +He +day, +of +Fd +is +necessary. +not +Hettinger; +and +of +pernicious +Merritt +violent +»on« +her +banks +tration +some +and +the +manner +permit +circumstances. +and +heap +vitality +sacrifice +Into +dining +the +even +our +e.l +oc¬ +to +when +ily—and +now +of +1 +strict +months +taxes +ed +al +in +ies +in +1007.5 +oity +of +And +fate +was +at +points, +Waahbarne +under +light +l1 +any +knows +thou +yards, +war +gress, +all +the +but +the +na- +an +classed +N. +en +a +ordeal +Jury +its +of +their +with +into, +bullioi +hlr +they +who +In +not +the +floor +land +is +Miss +depict, +Commercial +faction +Where, +in +tical +Pomeroys +by +and +ten +this +to +by +the +One +ly +decidedly +mcendiary +treat +ore +with +earth +They +He +to +passion +lresh +in +und +gravurea +re¬ +before +Fonrn +and +Plutarch +the +to +end +movement +be +but +always +a +I +bined +they +rule, +which +The +the +seem, +re­ +should +its +employed +of +muscular +her +In- +as +sed, +ad- +. +of +53 +settings +source +mountains, +Thursday +InmiNoxat +ap- +in +beat +years +eh- +the +sold +by +ratio +Washington, +Pacitic +Val¬ +ver +believe +of +of +motor +hospital, +tho +and +abota +she +personal +. +intelligence +mands +past +to +broken +shoulders. +next +tenement +articles +[ +left +and +still +5o +voice. +of +a +gave +sonin +hams +been +witnesses +ject +be +One +and +this +organizations +are, +to +man +fected +wish +nervous +Is +tion +into +on +and +to +the +dogs +The +alkalis. +be +the +to +Grover +has +The +has +In +waterway +is +aapeeted +Ait +ever +later +ceives +he +black +powers +us +cor. +turned +savings +willful +sum­ +less +liceusc* +preclude +lightning +outlet +day, +In +of +villain +Louis. +something +retracting +•(her, +would +acrra +and +mavericks +is +rapidly +not +vetd.ct +case +his +criminal. +the +on +courue, +a +the +history +gaining +from +remain. +lost +presence +north- +lower +concede +of +present +coral, +st +remote +the +Vir- +bo +and +correspondence +of +Arm +coming? +bound. +skin +the +of +a +one +honse +plat +gloating +shows +the +granted. +,,1 +followed +o +anthanttea +purely +her +im- +took +Lije. +like +vo.e +also +in +lattvl +in +role +the +is +never +hardships +muted +. +if +any +bcforc +fireman, +vegetable«, +one +They +some +yellow +may +county +among +been +it +call +rnre +of +prevented +about +of +frame +The +granted +same +manner +he +kneel +was +buv +of +company; +a +many +Complete +because +plate +Jain +men. +the +not +any +and +our +a +es, +the +this +inesstogo. +ctmpany, +is +done +opened +other +Texas +n. +etl +pick +for +has +tho +this +couraged +his +to- +f.ir: +the +neck, +mountains +reeiment, +and +before +bank +Republican +pbmge +in. +, +of +south +life's +at +on- +in +i +Bote +day +ter, +person +land +way, +u, +said +when +in +I +In +er. +white +be +to +indebtedness, +that +of +on +set +not +the +she +sreat +Truor +the +walking +repeated +Emperor +and +30th +ie +of +mid +it +here- +the +small +or +distinguished +severely, +He +street +can't +No. +that +next +troops +the +in +truly +feebler +quire +trust +all +the +llsh +Was +aa +a +charcoal +Coppedge's +vote +tallow +an +but +of +That +not +la +surh +other +building +lams, +Ohioago, +Hubbard +And +York +both +loca- +, +army +the +12 +the +guard +that +elections +and +work +great +e>es +but +figures +pop-guns, +and +posed +was +and +but +The +but +wlthout +he +blind +therefore +was +aun +so +government, +it. +steps +per +benefactor, +ledger +competitors +they +which +learning +directed +citizen," +be +flounce, +was +I +estimates +or +he +shadow +the +bill +one +and +so +has +We +Some +apart +not +in +contest, +in +and +honor +will +must +portunity +can +tho +had +can +the +that +annexed +are +ment. +reoklessness +During +cov­ +just +on +deiliiMil +man +conditions +never +wo +favored +tha +to +aid +there +gates +pure +buy +according +tho +one +train +j"1'- +n +office +residince +and +such +6Ut +is +maritime +the. +gold +He +tho +ia +bad +property +or +volume. +being +skin +views +government, +which +such +Gasque. +a +for +by +for +he +in +he +highly +and +$4.50 +prelude, +were +do +pationco +is +was +Sweden, +securltj +of +designed +Ms. +stalo +Mionieief't +murder +and +the +ing +necessi +may +sured +coan- +all +till +We +lbs +evidence +for +to +2tfo +30 +1100 +oommeroial +achieved +Tba +MrWJBaileynndMissLA- +Ju1o(. +done. +sweet +bond +feet: +all +and +receive +be +during +towards +now +keep +the +ciation +Smith +Stock +no +made +Howard +district +and +the +the +which +argument. +this +and +that +by +street, +of +bath +person +to +tract +hitherto +and +a +when +act; +on +two. +Leona +State +tho +Fountain. +250 +forest +you +scription +bless +of +was +tho +the +con- +mukes +"free +and +can't +ed +this +his +associated +Tho +longer +all +Edgings +always; +he +suicide +A. +or +called +ernment +brick +bead +and +theaaaignee +haying +Some +the +Hay +the +and +his +were +to +Supreme +be +to +water's +toqulrer +and +call, +But +the +that +J. +office +corporation +in +- +of +mer, +permanent +impor +Coutt +to +ex- +made +a +made +though +in +the +it +seventeen +good +when +saw +that +a +war. +contains +most +expired +know +his +en¬ +tho +sot: +sold +cop +on +in- +Newfane +the +out +in +sent +as +wages +action. +Russia +be +this +To +are +into +by +writing, +the +. +5:12 +whoso +of +Fill +the +I +U. +of +put +south +5 +improper +of +years, +a +see +to +fuel, +and +in +best +or +No. +of +ment +press +aame +the +than +«m< +said +in +her +several +I +live, +last +that +it +the +be +which +(who +afterwards. +It +where +and +Howard +us +lots +' +1K77; +the +figures, +"How +better +Vermont, +up +stern +preparing +not +And +town +called +blowing +of +to +of +lot +other +Russian +fundamental +tha +Rev. +Ha- +for +sky +tho +night +Washington, +the +some +the +course +stay +family. +resulted +reformed +exer +in +of +65-100 +of +and +ed. +of +Ed +morning, +Montreal, +tbat +in +ia +there +Assembly +A. +Harbison +mil +hi« +tors. +apply +stolidity +terday +Brilliance, +fine, +T>. +Kngllsh +with +state +holden +babies +be +you +make +That +as +went +steady +oity +According +present +Steam +has +*t. +aud +a +pickle, +from +the +who +nnd +was +was +any +said +$6.90, +leaves +Rhode +and +leadership. +E, +the +the +debated +'tend* +that +if +almost +schedules +tide +Ihe +day +with +never +hear +.i +draft, +county's +carefully +it +cheap +lands +; +to +him +and +in +judgment +Chestnut +Spanish +ought +to +corsage +ply. +divided? +February, +the +reason +Edna +Baptist +was +lorses +which +bar +liberal +without +where +explosion +had +at +houses +Reports +several +a +stove +and +Important. +Geo. +went +as +if +and +of +gallantly +drow +more +loan, +in +have +a +OH +New +di«-u.-sion +these +of +o +leet +arm +con­ +acid-stomach, +accounts +be +been +with +that +blank +Ram- +promoting +"The +lishment +it +that +in +and +the +dom- +euhordlnates. +are +have +paper, +practice +Her +the +especially +Lord +great +take +the +N. +as +iron +planks +Its +the +wheddah +ence. +throwing +the +published +a +any +to +W. +power. +have +part +Doc +poor +belinally +in +is +tiie +a +burden +Gen +Are +it +Count +that +to +John +V*ou +own +-m +tew +chosen +; +they +which +immediate +ne- +demonstrated +as +incurable, +strip +breeding +are +cent +The +! +shoot +are +girl. +The +Hansom, +perpetually +the +agent +by +the +in +their +with +a +speaker. +basis, +tariff +«>i +of +north +a +position +in +tell +the +these +is +he +on +copy, +is +is +iv- +was +of +times +Shu +this +or +bearing +house. +have +age +in +The +along +and +conclusion +vi-it +as +Coffee—Rio +the +ropes +by +the +the +stronger +K. +know +and +that +is +Sat- +hour +Sawyer +Mr. +wanted +gets +second +I +was +con- +vanced +periodical +formed +forges +make +money, +but +al +the +reckoned +lust +not +a +the +been +proved +railroad. +of +the +in- +in +d +to +Southerner +trained +board +expect +building +river; +distilled +a +real +and +and +cowardliness +for +mounting +mandarin +above, +small +South, +The +should +a +abundant +plished +discovc +of +killed +of +his +-M +and +Xew +apiarian +Stepney +cured +resolution, +or +his +moneyand +thc +weight +witi +the +from +and +son; +industry, +separate +the +perfect +it +the +grutt'ude +was +even +also +and +to +Gardebled, +day, +natives +who +worse, +very +dues +serious- +ilny +have +tba +suspected +Defendants: +The +and +be +if +caualor +bl +pecuniary +be +of +democratic +9 +gifts +by +t, +reason +arren +collection +at +blindness, +89136, +to-day +mate, +miles +the +Knowing +In +with +munity. +Largo +infant, +Thousands +make +at¬ +to +the +letter +recognize +of +and +enclosure +the +N< +could +an +the +ratead +mec +man, +19,875 +thewater, +eiicumstances +surrounded +their +provides +marked +bidder, +Howard, +offi- +The +in +the +to +the +ing +to +from +to, +Iron, +Pittsburgh +its +on +a +Hon. +the +asked, +sales. +physicians +of +out +lower +7tb, +.have +not +days +about +held. +Spokane, +richest +with +:hat +these +Denmark +directly +spent +bought +matters +accordance +William +of +excitement +District, +through +into +outbreaks +to +assume +Encampment +lights +Department +that +plat +bottles. +Mr. +of +fund, +right +of +Oraea'a +crippled, +at +mortgage +tbe +his +of +in +of +did +iotmly +:bunda'ions +up +in +new +judge +day. +is +better +here +needed +be +a +taken +of +we +It +medical +1801 +railway +and +on +pri +twenty +Cooper, +lots +ly +interest +by +street +. +That +limits +about +after +upon +a +Ban- +are +or +few, +time +all +A +persuaded +than +of +driven +departure +the +went +back +inst. +preparation +l)r. +gard +sales +of +in +readers +that +LaPlant. +to +agent +what +who +dream! +closed +we +As +never +st., +you +of +Illinois +bakej +cents. +it +rods +and +years +was +her +purpose +the +effectually +did +of +Gro. +straight +of +children +bile +as +Joseph +active; +solely +all +require +the +is +ten +SWK. +shall +to +ol +time +a +the +notewith +as +back, +fed +and +Mathis, +had +to +Tan +ago, +tUndauta, +attempting +above +>orn +There +to +Brewer +I +now +ot +and +thereby +from +feats +In +years, +moment's +a +bill +some +made +article +winch +ocratic +In- +contention, +thcother +to +what +eerious; +has +Of +would +be +at +a +spot +bowed +today +having +a +Drum-Majo- +bnt +and +Caucasian +warrant +lucreaslug +support +the +not +the +Mrs. +times. +of +the +municated +Mr. +is +door +tho +dlo +He +and +shall +third +of +what +Thomas +wonderful +testing +Cld +family, +that +parted, +be +herd, +scale. +one +to +but +that +during +farm +do. +a +branches +hundred +too +year. +lack +If +said +the +portion +Meals +said, +Cumber- +Symingstou, +pro­ +till +under +her +just +will +hard +Two +will +did +unable +Tkmawd +instead +many +ments +judge +of +the +tastes +motives +made +ederal +polish +districts +emi. +sweet +in +the +manufacture, +of +China +which +he +vate +performsnce +f +late +inspira- +that +great +upon +ber +these +day +each +shoot. +novices +gold +very +know +The +taking +: +tendency +Scale +for +share +I +the +Assembly +and +closcd +and +will +tain +our +about +more +collateral +Monday +and +up +Interest +to +is +t +may +messenger +the +Such +in +the +was +drop +I +the +themseves, +ladies' +France +cent, +tore +in +train- +taken +trade +at +ir. +morrow +of +tonight, +se- +purchased +an +hand* +votes +Work +she +thn +1BRdlsong^n7s.D +divisions +and +as +abandoned +miles +morning +show +any- +a +pointed +subcj +of +be +On +on +a +roport +People +Reduction. +successful +This +with +are +of +Michigan, +result +crowd +by +here +not +apart), +you +number, +like +him +per- +of +Hue +story +else +a +thence +2919 +we +gage +fashion +stantiated +complains +nnd +Mrs. +been +country +shelf +than +feet. +are +fully +Lower +or +American. +thine +thought +business +straw +Jfo. +want +danger +in +to +dld +is +maJe, +Los +with +article +graciously +PAI,M- +own +attending +largest +west +winter +corporation, +own +Gen. +every +Howe +Fred. +with +ceived +produced +lgnoritiit. +la +believe +riding. +trilling. +and +llowo +Mr. +without +will +fac +point +good +Mr. +penetrating +their +ply. +ring +in +specifically +tiow +branch, +possible, +bridge +whose +nests +trained +house, +line +yield +rain +vessels +doing +but +a +when +enrich +ch +taxation. +or +public +prominent +druggist +notorious +growth +physically +put +to +Mr. +Calumet +reaching +Turn +Wisconsin, +ministered +the +the +trip +and +city, +tive +Cottl +great +comes +field +the +estate, +lot +the +beside +man +invite +seven +on +of +articles +the +tha +to +issue +and +By +Is +Richard +Said +Capt. +toe +In +was +and +more +acres +and +very +that +unexpected +Cave +sluggishness +and +the +1 +ill +January +of +state. +pow¬ +pas3enper +the +It +any +there +I +carried +the +A +Mr. +breaking +of +the +the +and +they +to +that +ner­ +necessities, +ist, +were +ernment +No. +E. +needed. +disease. +principles +Lread- +or +and +are, +On +he +institutions +is +oi +and +cold +superficial +of +Dr +the +horses, +CalifJ^ia +J +witnessed, +a +no +if +feet +pair +with +other +At +tinct +of +is +faithfully +Louis +of +feet; +White +velt +I +with +buttons, +because +partition +the +two +the +Thefts +tbere- +system +free +potatoes +Bradley. +into +street +the +o'clock +the +to +hilt +and +I +pounds +rope +Thursday +years +and +Columbia, +rad- +have +church +money +making +lie +must +much +Jordan, +of +on +J. +his +of +tha +old +Attakapas +"Tan- +points +the +benefited; +alleged, +had +To +tance +GONORRHOEA +but +as +in +that +roots +are +him. +rows +scat +today +A +an +but +76c@$l +facilities +them +have +that +2S0 +the +is +forests. +city +decrees +any +him. +using +however, +F. +tbem-e +an +w. +of +count +securc)a3 +physician +branch +not +that +company +to +apply +Ale +remarked +married +at +advocating +would +gradu- +and +decision +impairment, +the +wholly +hundred +legislative +the +to +vicinity +river +strut¬ +from +to +Potatees, +and +per +it +The +he +to +most +are +the +or +interests +in +e +state¬ +Therefore +the +of +surprise +manent +in +there +who +the +It +been +thirty. +payable. +T. +States +appetite, +did +can +years +every +Wilbraham, +pond, +them +the +but +ears +siyht, +any +yarded +ter +dispersed +had +from +makers +and +short +tin +neighbors +the +Oearge +From +on +ng +than +si +uo +this +existed. +10 +themselves +Jacob +a +of +hand, +past, +; +The +going +on +of +was +entered +This +all, +and +these +senate, +WEAKNESS, +thus +be +it +demand +new +berating +to +ly, +Waterhouse, +his +with +v. +Thus +that +what +giment +straight. +men +also +from +port +a +has +time +of +the +with +he +striv¬ +you +and +if +knee +bottle +impression +to +question +there +he +lie +o +(of +ful +of +feet +in +the +Munger +those +Gov. +When +you +gladly +the +full +which +lude +satisfactory +afTaira, +answers +daring +He +to +infest +Ghee, +coon +and +have +important +special +Matys +skiffs +report +to +ten +follow: +As +were +be +sun +niever +other +Branch +acres.twelve +ravine. +their +international +let +confident +of +stitution +him. +his +the +even +weekly +army +fever, +iiient. +a +$131.25 +poor +on +it. +Government, +(I’ll +of +goods +at +because +pjxteen +was +by +was +accord- +and +nue, +are, +children, +only +the +spot +immediately +up +fearing +tion +my +Trimming*, +mother +on +as +the +which +have +committee +of +nrteea +for +sed. +theso +stalwart +oven +a +sa.o +normal +be +the +of +Pacific, +testants +erecting +there +case, +survive +Chief +know +they +teaching +cupations, +before +found +is +Brussels, +worked +how +and +leaders +tact +boiiers, +Magnus," +is +the +casting +opinion +battle, +Will. +not +than +will +or +plies +she +effect +offer. +wares +days +rate +liquefied, +smewaiK. +pounds, +quest +situation +light. +deadly +fair +a +a +open +following +Is +boy +a +ex- +of +found +n't +Outhrie +royal: +with +one +Henry +tions +but +few +1 +conceit. +resplendent +get +one +number +far +sick +report +iuto +believe, +knowledge +as +Circuit +tho +to +niije +aald +bo +all +that +but +police +notions, +total +turning +garded +be +Ruler". +the +on +5 +seen +was +in +been +iudi/e +Wholesale +position. +this +; +Dyer +is +the +Dr. +oper- +fencing, +i +the +city +the +produce +the +in +family +1-2 +fairness, +Iris +the +level, +bedlam; +< +to +those +out +others, +those +Lubbock +work +but +with +j +resrratigi«- +provided +maintained +to +in +portion +hurried +exactly +of +baffled, +where +BaoTiiiRit. +of +writer +force +her +years +vehicle +way +the +she +first +and +; +formity +the +, +shown +by +might +spirit +quills. +shorter +lie +reconnoitered +in +The +somest +We +. +in- +and +that +of +the +died +perhaps +ou +his +away. +Mr. +imprisonment +forth +a +educated +ful, +all +la +defeat +I +on +rain +patient·.!» +when +BODI- +can +roda +knowing +rest +there +ben +dull, +own +particulars, +did +market +him +in- +The +there +be +of +in +to +or +the +of +known +the +people. +Washington +clean +it +af- +tween +or¬ +F. +one +The +rmor +entirely +history, +counties +cloaks +it +tbiet +now +he +took +periodical +is +school +might +his +tiger +in +against +importance +btanlev, +was +of +cunil, +and +there +of +thousands +have +fus +The +ronnd, +in +or +b +seems +the +evidence +the +assault +rightly +river +sun +or +aoaatlaaa +per- +where +however, +outs +street, +- +The +Congrese. +who +In +seemingly, +a +br +blood +master. +from +worth +able +weignt +be +strictly +his +has +adoptrd +general +and +disregard +me +England, +a +asked +Vatican +poorest +in +for +Misses +back +guilty +of +sum +the +other +are +not +will +where +opened +surprisingly +they +ton. +after +was +Phil- +am +state +truck +Win. +1 +populate +ot +board, +if +Mr. +mass +shaH +vicin- +acrits, +These +before +showing +of +in +Sun. +what +the +prohmhiuty, +The +made +autumn. +oi +notr +man +in +side +of +negroes, +deduces +perfect +Dakota, +introduction +contain- +for +the +bees +At +with +and +when +per +a +other +which +the +hla +AND +tor +trade +all +fundamental +Capsodusso +Among +of +fell +such +lit +stances +passed +effective. +each +good +foreign +logy +of +rather +to +in +are +of +and +the +county +of +ing +the +Immediately +gave +no +2; +a +cratic +duty +the +is +up +court, +affliction, +habits +her +the +number +Nei- +the +of +Tho +half +employes +save +tion +notice +tention +main +dealings +under +parts +in +very +firesides. +northerly +2, +fGM.50 +19i2. +attention +the +'Toilet +for +under +Im» +friends. +be +royal +The +action +bowel +and +that +Saxo +south +vigorou' +communication, +stringent +tkat +at +mo +could +the +conflict +IIh'.v +donation +county. +when +Gladstone, +Icftiiu +S +and +the +better; +not, +discovery +loving +seat. +from +be +he +is +animal, +to +haii +have +of +sense +Ireland. +cent +hope +generous +of +the +and +loan +with +Dunham +fred +by +her +An +turn +E. +where +demand +that +is +the +furnish +advent +speculation +gold; +gram, +city. +cttipty +!, +With +entire +have +Hluo-stonc +conducted +our +the +bring? +IS +occasionally +three +city +of +$25,000, +p'easanter +Is +above +uniform +and +say +been +easy +VI +the +ity +of +burying +a +death +who +tom, +In +Alabama +el-wlog +ficiently +St. +a +has +Southeast +ways +JOHN +lution +the +physicians +for +of +Orange +end +to +time +of +Price, +ception +The +struggle +the +was +tho +It +signed +family +10,000 +passed, +Volume +in +types +the +town, +the +east +and +with +window +niton +values +payers +lines; +sta- +the +reported +of. +rebellion, +Cath- +a +go +"a +the +claims +ginger +danger +men +to +Hale, +had +Va: +reported. +as +fruit. +west +his +,n +been +poverty, +from +or +was +beany +of +boring, +secured +the +of +Boston, +Ihe +the +physicians +Revs. +can +Delaware +together +found +the +sergeant +aud +second +cap +Ink +it. +on +ing +male +the +altogether +being +El +States. +And +so +will +bu +com¬ +each +seem +must +last +to +sudden +had +Iocs +that +this +ret +States, +eyes, +Government +to +record +plainest +2 +ft>r +was +or +a +be +for +could +an +line +by +States +enougb +be +completed +house +return +his +said +a +These +bjthe" +one +Jackson +New +ones +the +Quarter +but +period +some +is +until +never +tliii<1 +government +refill +J. +Or, +200 +great +have +Is +iu +scription, +with +more +to +! +the +it +the +ii +over +hcbredles +0 +the +change +this +ouly +the +tbe +your +ages, +village. +and +was +said +complaints? +time. +at +the +heat, +cascades +. +not +of +shovel +on +beast +to +bo +love +The +be- +Then +last +and +than +nt +the +seat +was +that +till +and +It +King +On +milk +rollof +lo_|er, +acts +Chester +poverty +on +our +block +print­ +the +to +pit +seems +and +a +mind +preached +encampment, +nom +likely +but +in +wife, +It +turbed +of +also +above +as +No +follows: +the +wero +to +of +call. +our +he +Penfleld, +request +the +all +lives, +at +ue +and +political +ending +companies +57, +persons +the +oceanic +boen +137 +range +of +R +edges +a +mod­ +case +trip +race, +He +again +Silver +as +their +out +borne +take +the +is +fact, +in +a +himself +with +as +of +thor­ +the +ing +on +few +been +Milk, +havo +known +Elm +fires +profiteers?"; +in +no +house +of +and +>if +their +and +nineteen +would +the +jot +I>ee +possible +and +the +he. +a +into +Girardeait +heroism, +Danforth +and +feet, +A +August +a +will +the +right +ajipllcable +the +Mr. +a +covenants +wlnilbws +Parker. +«oked +tion +single +Ligonier +was +any +in +absent +> +him +and +county. +are +on +sive. +I +in +folks +retired +chance; +stamp +shouid +Miles +the +who +J +it +the +it +awarded +injunctions, +the +practically +1.1 +had +greater +see +said +vessel. +with, +they +Yet +imperatively +here +an +»ce +hydrophobia +upon +Mr. +and +in +the +the +revenue +troublo +concerns +in +then +Bliicham +the: +s +8. +Navy +or +sion +visit +of +\nd +\ork +tnougn +young. +a +oil +Cu +It +Smythe, +the +has +vote +va +directed +tion +egg. +golden +iou +interposition +er +oaly +Quotations +said +girl. +the +$11; +which +Goethals. +taxa +the +that +milk +ot +for +receipts. +vis +courses +foreign +to +this +Delaware +thote +right +crude +pounds +of +Shallcross +ranged +snd +I +hood +long +that +mort- +public +Pilgrim +In +then +of +all +together +to +prcvioa» +out +he, +night +satisfied, +frame +S +bren +The +dlebt +to +it +set +dried +the +order +The +York +the +added +to +the +that +,is•een +other +3; +strings. +tion's +drew +Capitol +preparing +ire +the +the +fight +'him +or +the +dextrine +to +reader. +to +trench. +him +our +Laa +as +and +made +signed +Hon +last +southeasterly +1X93, +what +boys +much +sign. +was +oaths +of +takes +se- +and +warfare +the +Empress, +senator, +a +commend +other +very +themselves +electricity, +at +stand +rather +son +trade +Wait +about +come +opportunities, +ish +the +If +while +out +E +devisees +cases +Livingston, +stables +of +to +feet +up +yield +Reid +after +include +indignation +first +in +which +and +plenty, +sleeping +close +such +bill, +this +abo +lected +at +Seal +¡sin, +necessary +ed +the +uct, +His +"Your +fur +bill +can +involved +after +the +''summer +games +Canada +in +tamed, +such +ioned +he +ox +Ranstrom, +Newark, +do +debate +the +50 +over +and +stated, +Mr. +000 +Leo +people +tho +Kclser, +declines +prohibit +ing +electric +thieves, +tho +The +of +such +foresight +bed, +faot +will +other +he +and +stands +try +the +further +mately +prices, +men +11 +and +are +all +-A +he +bottom +castings, +to +Mining +of +Irish +received +half +four +Margaret +propitious +th«* +Story +bank +to +they +been +succumbed +appearance +of +four +the +row +Hutchings +follow +true,' +of +ish, +taxation. +buying +sudden +the +practice +had +undivided +worn. +parties +}sm. +a +of +of +est +country +of +medicines +reesuUoa +the +exports +bocnuno +also +endingJune +of +independent +-i;t, +I +human +army. +and +Harcourt +and +a +Xhe +ordered +in +and +was +wi +scriptions +with +was +killed +a +to +out +for +a +Fry, +land +The +than +iment +not +there +the +intern;*! +been +feet +holidays +I +would +the +Ormrt +convention; +hot +atteud +to +of +leave. +to +one +began +me +one +out +in +on +every +served +settled +taking +traffic +that +is +of +Anton +BhouMer +place +extreme +Justify +Mm +accept +residence +any +They +lit +a +tract; +voyed +from +Ril +the +proposed +or +ers +itbe +door +and +and +have +can +end +caused +sold +the +given +there +what +from +and +Miss +and +ened +regular +month +and +m +indignation +on +tion +patriots +7,8, +in +thenco +to +pletion, +terms +Jfercury +istration +in +ti'y +the +knew +to +and +new- +of +instrumental +the +practically +an +her +aot +the +or +That +largest +night +and +its +erty +wrenched. +the +paregoric +had +was +of +religion. +that +Washington +have +the +constantly +Lothian's +war +packages +resentative +is +Chicago; +G +ered +in +ud +the +the +among +boats +heard +government +deeds +tambling +ready, +his +onstrate +his +logo +while +General +In +the +a +who +Club +in +the +out +a +on +pipe +wharf +Weekrs +needed +Mr. +Singh +third +the +Th +the +to +the +to +as +dies. +elephant +heard +ready +the +enume¬ +and +anti +other. +prompt +lor +wit1, +cu +which +the +tills +announcement +barbarous +and +be +all, +you +thereto +by +half +fure +with +and +the +irrigation +j +the +of +mnny +Lauglcy, +ing +toe +will +all. +the +weeks; +of +to +conjunction +17 +tit +will +become +117 +ever +water +cf +dreamers. +nent +exerWae.a +the*coal +in +four +other +entered +promises +save +is +on +the +to +though +ap- +contain +dare +May, +not +to +1st +suppress +bred +ducr, +He +has +thnt +be +capacity. +in +Kilauea, +private +that +place +hay +by +up +they +and +i +sidered +great +an +has +and +the +which +(he +but +add +lid.te +more +ed +and +that +Chicago +me +very +will +E. +at +accidentally +the +con +und +sweep +to +furnish +northerly +unfortunates +Metropolitan, +to +is +to +has +by +State +Invite +oacher +be +last +Biles +or +will +an +St. +tion +to +by +others +But +far +in +and +block +opposition +the +Mr. +to +Lut +member +also +best +disci +their +over +a +ders +learn +tho +the +was +is +federal +ly +and +Once +to +womun +book +attorney +with +n +the +barters, +in +which +for +River +tion-tho +a +his +usual +for +at +proceed +Trust +No +tho +are +the +bulh +three +a +required +may +eaty +stuffed +mens +wortteds, +know +about +greater +obstacle +evening +I +again, +most +or +ing +by +Mr. +other +the +of +open +death +tide +Leavenworth +D. +and +the +govern- +week, +may +,weekly +find +matter +and +as +merchants. +than +Custis +truth +ob- +What +made +G. +of +a +opened +of +Gillespieville, +of +ty, +New +The +loliage—horse-cars, +such +the +shell +traditional +the +they +perpetuation +tle +atmosphere +a +gift +property +the +would +guilty +and +a +» +the +the +a +In +thought +wai +Thome, +closers +a +wittie.*.-.! +is +was +intersec- +progresses, +regions. +practising +be +proof +time. +t +and +of +part +was +that +disposal +School, +his +distance +pointment, +6:40, +part +like +to +beautiful +again +c. +poisonous +th +steady +the +the +own +gulf +tierced +AH +are +that +positively +and +S. +away +thence +Spring +vide +congress +had +follows: +of +above +lose +of +August +ad +elections; +tiou +"As +all +of +moted +spirit +Imperial +. +|13S), +in +is +crime +luio +received +county +clean +in +prospect +them­ +the +power +Mr. +Boyce +by +saying +lies +the +with +42c— +than +the +are +extinguish­ +istration +if +be +and +about +or +is +elsewhere, +by +C. +esteemed +cul +of +was +until +whether +clotlun +deposited, +tne +questioned +tries +and +Child +the +was +the1 +the +an +Miss +its +rice, +Miss +the +subdivision +of +that +.The +Fred +play +his +in +work +“a +in +you, +member +bag, +Majfenta, +does +300 +to +any +is +as +iiivrtitiaBt! +, +however, +also +her +$3. +wires +of +and +and +sage +hesitation, +intended +the +tiful +Some +and +the +whittled +a +now +way.” +was +owners +render +24 +and +do: +our +plodding +which +organization +Clifton +himself. +not +East. +econ- +trict +for +coinage +world, +men +the +a +Judges +to +the +bold—childhood, +the +interest, +will +per +and +Emaline +naturally +mention +exports +thing +your +Spanish +r +Turning +Coleman +two +It +breath +is +civilly +If +Bedeau, +owner, +estate +Bongler's +but +the +really +a +the +their +sat- +palpitation, +towering +t; +Ore) +constructing +life, +sleeves +nor +vitally +general +20, +previous +said +any +pans +on +and +room +decedent +conclud- +remain. +heavy +increased +land-grant +was +the +pos- +Rock +; +shall +and +Nevada +the +Harriman +tho +up +of +Tho +propeled +W. +are +measurement +arrested. +ahapalaaia +Legisla- +the +for +she +by +Iu +immediate +positive +a. +rent +saiil +first +lists +a +as +tho +inscription» +1 +engineer, +of +ten +for +tion, +that +belonging +Although +talk +that +o’ +Gilmore's +anywhere. +th? +A. +queen +great +sold +lieu +is +fought +than +made +reason +that +purpose +he +was +bnssi, +Sir +aud +three +the +after +province +ss +connee- +tho +UIng +ot +r'reliiijhny.en, +blood +rant +pic­ +a +that +ryes +Company's +living +stated. +to +McMulIen, +of +anticipated +panic +five +distilled +the +that +This +thought +rocking +made +after +to +minds +and +fall, +be +Colonel +ol +enemy +rescued +througliout +employe, +up +the +MO, +form +signed +prejudice +SEMINAL +she'll +other +so +order. +covert) +of +the +all +being +The +along +cessful. +or +so +Sisterson, +with. +to +Look +power +a +injury +our +given +sctticd, +53 +the +ad- +grin +in +of +as +almost +party +of +writer's +lesson +over +torial, +of +a +in +in +from +in +In +TO +water +R +with +tne +undress +ty +Bruce +pride +the +assets +wood +i>nS-1 +be +for +in +ures +from +or +alone. +that +physicians +of +a +tne +the +it +and +precisely +recently +ores; +winningthe +to +against +the +the +very, +with +butch­ +wcro +bushels +beoquet +a +u|ton'the +and +St. +25 +at +had +agreeable +upon +announcement +Is +S +find +machinery, +pene- +lighten +formal +h +and +his +but +for +Botsford +factory +fair +a +corner +so +out. +of +extreme +form +10, +names +and +or +ond +ludies +relief +the +occasions +to +of +Two +can +The +Society, +be +of +actually +opportuni¬ +a +begin +justice. +in +particularly +became +work, +been +congress, +certificate +problem +sheet +said +move +an +Sexton +more +the +now’s +that +Joel. +of +the +No. +linen, +time +and +measuring, +loans +nation, +Wither +of +an +rights +an +wife +difference +within +as +the +Potter. +each +the +been +lantern +hatcheries. +teachers, +effecting +the +by +on +of +i- +of +whence +against +for +Dr. +1, +is +I +During +season’s +qualities +Newport, +Uladies +order +acters +of +room. +and +zinc +and +of +ernor +silent +part +and +be­ +hrid-tc, +down +if +type +yet +a +have +moat +izations +be +Queen +Haada +rates +Christianity; +which +was +Demo- +a +Northwestern +best. +barrels +black) +dred +Pistant +mlrnclos +is +endeared +few +the +stands +for +meir +summons +an +trust: +execu- +Records +siuce +that +basement, +know +tho +the +Quito +people +put +and +submitted +sick +the +island +ted, +for +simplicity +and +actual +the +rh +month +investigate +which +hich +true +.- +all +together. +rotoe +Mammon. +the +as +neariug +murrer. +Chinese +the +and, +of +splendid +thence +who +w +winter +de¬ +attor- +for +from +every +piovided +the +tranquil. +gentle, +boys +separat'on +Inc. +sincer* +payment +do¬ +lies +"good +ballot +bill +leave +at +came +«rt +referred +end +the +Sebastian +turers +and +into +administration +weeks +New +carried +the +share +designs +of +build +a +Also, +on +notice +from +Mr. +one's +(SE%) +of +ascendency +6@6%c, +ouw +is +da +push +east +. +to +citi- +the +to +Ohio, +D +placed +such +for +dall, +ended +a +even, +ward +L. +ry, +that +the +to +I +Missouri +opinion, +in +ac- +deem +Liberty +to +ralter +crop +eleven +from +afternoon +from +County +de- +We +Kauckolpli +partv +any +speech +side +deputies +till +We +and +factory +the +are +at +correspondent +of +fact +having +we +evidence +Hut, +In +This +one +tho +payable +wun +CHIPMAN +DOLLARS, +a +councilman +Unfortunately +tbe +Grant +submission +to +ton.acd +free +pare +of +or +that +twenty +in +for +affirmatively +not +pursued +claim. +and +. +he +but +taken +and +1864. +for +the +the +tongue— +the +dertake +sentiment +the +live +Lady +correctable +and +dedication +or +effect +right +return, +The +for +trn, +wrong, +applier +lots, +greatest +*4 +secution), +the +receivers, +newspaper* +his +roots +The +husband, +and +of +in +not +tie +closed +Bolid, +and +capaoity +its +; +of +any +of +do»- +charge, +change +grand +purpose? +more +to +else +and +which +helmet +oust +have +globe, +add +they +The +fever +send +Elkhart, +to +as +people +Courts; +f.nd +to +shall +which +romains +as +feature +a +Rochefort +rest, +gentleman +R. +of +house +was +is +today. +brilliant, +Infield'rs +the +every +his +Tbe +"Our +by +English +and +alliance +would +the +mores +thawed +the +The +down +this +financial +await +Americans +this +should +see +tested +you +diminished +Rhoma +Eaton +hatched +the +Chair +tracted +that +gained +and +matter. +the +not +' +department, +tbe +sharks +tho +wild +It +too +em¬ +belonging +employment +unequal +evening, +ins; +the +gentle +regents +North +showing +use +unite +the +15. +that +of +feast. +the +altered +Lincoln, +that +physically +Leipsic, +milk +trade +Oriswold, +excessive, +great. +is +was +deceased. +more +that +I +as +to +be +moval +Twenty +men +those +lt,000.000 +the +probability. +semi-annually +wheat. +years, +said +therefrom. +C. +tbe +and +general, +are +I +potion +fille +is +that +on +His +six +perron* +him +of +for +found +to +rates +patient +and +its +wrote +King +of +which +a +even +Italian +condition, +are +dollara. +No +diverse, +general +qualified +Lamson +"A +that +nitride +S. +were +state +his +this +He +tion +ger, +style +made +as +couldn't +that +and +product +tho +the +the +the +to +Retirement +who +spects +the +same +separated +mont; +ortain +having +the +sa +he +that +number +improvised +rr,iif.t!t_urati(ii)rtli»' +ago, +baggage +the +20 +in +the +Train," +very +together +and +decorated +a +lived. +that +presented +the +desire +the +and +it +their +of +market +payablo +send +of +public +had +.7S +industry +ALL-STARS +car- +cover +Company +to +cent +his +section> +the +exciting +judge +6 +act +capacity +receiving +dently +resolved +general +that +to +a +the +he +lter. +One +grain +that +they +the +both +hope +her +65. +England. +hasten««! +deputies +heard, +which +were +hands +that +a +He +every +second +of +telescope'a +Counoll. +and +claim. +over +87 +In +it +heater +railroad +from +wind +the +in +cannot +over, +stantial +gnvis +allowed +State; +that +use +Sus- +of +fsvorite +her +possible +city +If +and +then +blinding +would +on +the +tons +issues +rippling +Andrews, +less +lles.lsho +cotTers +be +and +the +be +not +the +urins +that +to +North +tlves. +to +weddin +aud +is, +of +part +to +association, +way +We +instance +John +a +on +of +neigh¬ +first, +West. +the +Prof. +170 +early +them, +with +transcript +loans +Anheier +veritable +soil. +and +frock. +to +led +of +shoal +be +psld +Va.. +learning +drink. +the +pressed +hereby +1 +to +it +that +The +ship +by +filling +rath- +in +.1 +nominations +It +can +Militant +less +named +it +Avenue +Itl +same +immit +the +Mr. +men +B. +for +francs +particularly +against +the +store. +corn +There +against +ten +are +for£2000. +and +for +a +the +in +striking +ooo.otx) +string +j +again +1733 +better +; +amount +struggle. +more +Mr. +coal +say +Fish. +hand +Confederacy'? +number +the +Corporation +This +purpose. +auctioneers, +them +ii +to +waa +farmers +mouths +his +cabinet +United +Washington, +falls +er +Mr. +diality +all +his +under +so +determine +tended +throats. +but +turned +j +thal +his +of +ment +nino +been +would +the +of +Wright; +essay +Europe +women +property +happy +o, +Kpuidict; +the +have +any +he +other +Foch +as +so +inquired +good +If +Anheier +north +handsome +is +the +President +spent +that +87. +with +take +dress, +It +Mr. +idle +not +child, +Pees," +t'uitK, +as +the +If +is +shall +was +on +great +avail- +hoarse +attor- +a +talian +be +also +of +fact +to +C. +three +without +horses' +llienoim +relatively +found +the +here, +one +of +stored +not +his +sels +them +when +per +the +well-executed +peo- +spectacle. +side +language +east +was +eeremonv +Maclay +which +Crock +Constitution, +a +territory +importance. +District +and +drst +acre. +pig +far +this +well +colonel, +ltobinaou. +favor +Hari»er's +•b-r +well +sense +the +at +ten +of +its +of +devoted +hin +only +world +all +frontage +mem¬ +of +from +departments +and +Mr. +It +by +of +as +and +allow +A. +Campbell, +meal +basis, +aa +der +alter +of +candor +when +the +Every +now +with +after +A +races +cure +5.75; +promoting +more +up +subject +no +over +possible. +months +of +is +a +sug- +they +recent +back +bas +coronaria). +the +bary +of +the +wa« +inttenise +branch +morning +Lam- +ing +, +from +und +cess +On +in +River +the +now +had +The +lefore +in +pare +of +the +Ityuu +lo +Representatives +Jackson +The +say, +making, +not +for +yon +faith +about +the +107. +light, +them +gratefulness." +express +rife +the +airplanes, +proportioned' +honor +no +to +dollars +who +Democratic +mathematics, +world +political +gibbet. +or +fur +behind, +for +there +elab- +gentregolations +many +race, +you +removal +which +outrage. +William +usefulness +this +arrive +the +it +is +open +the +of +to +jade +their +opened +tion +away +urged +bottles +in +the +Quarter +in +dressing +tbe +and +advantages +at +an +Germans, +years. +I'etMnd +Of +spite +a +washed +SEK +has +papers +congress +wns +God +character +that +sprung +ever, +v. +levied +was +provides +structive +Athletic +of +(g)90 +and +the +and +world +he: +wilhln +from +by +Italian +Such +showing +wores +Hill. +Martin, +Secretary +.$30 +bore +fell +. +at +PROPOSITION +a +true +zodiacal +drowned +the +distinctive +authorities +ward. +late +double +Knglish +this +rests +a +head +Dyspepsia, +that +where +work +in. +of +lire +grounds +now +by +more +toget +oppose +to +government +to +St, +defendant, +reason +and +toric +the +much +the +believe +death +M&y +tle +sheer +sary +elects +Pacific. +en- +not +perched +absolutely +imposing +i- +day +that +halyards, +Through +New +show +to +who +South +To +Haught +demonstrates +alter +is +Section +slept +it +com- +Ilames +of +business. +books +;ots. +himself +mill, +enhanced +them. +we +however, +of +pecting +only +J. +an +and +oppo.tunity +he +soldiers, +their +the +I +has +the +not +the +East +not +st'rnggle. +hlitory +this: +Oyster +did +such +faith. +party +by +tion, +the +to +the +Clyde. +Professor +small +him. +depth) +is +in +of +time +as +In +Lion, +Inez +in +election +Arrangement +position +scenes, +attention +was +Aa +18 +New +vi +from +Fifth..If +the +candidates +Bune +years +number +Morris +for +wealthier +and +was +an +the +bone +secoud +Peter +which +0|>p. +over +calving. +consecra­ +at +the +in +t: +subscription +at +shall +coins. +Mixed +thence +which +April +Henry +Invite +exhausted, +to +in +adopted +little +its +urned +sai +many +organization. +Irish +October, +the +11 +of +down +both +cisco; +ries, +enough +had +Let +fathers, +the +to +securing +estate +hi +the +he +within +of +rate +riet +a +objectiona- +cultivating. +sent +published +Again, +well +or +fc>. +of +Judas +of +eiperiencea +Let +caused +give +$84.25 +ing +to +spe­ +raised +up +time +she +wrong +O +the +eral +the +had +takes +178 +red +their +sort +Burning +on +the +road +went +Wire +It +preaching, +appointed +and +voices +land +population +on. +tie +legions +of +This +city +ami +the +awoke, +ana +water. +Frcneh +each +feet, +80%c +It +lo +a +wegot +art. +fell +to +he +we +science +be +had +of +saturated +in +the +you. +Why +ehange. +and +23d, +ot +to +It +auxiliary +declined) +Windber, +ted +possible +without +containing +tween +I +who +like +covering +celebrate +tbey +of +Newell +church +an +to +SSO +of +kindred +through +aod +them +with +attached +reputation +what, +full +the +the +over +former +that +retire +one +of +stages +pirouette, +Alexander +they +the +Mrs. +cent +shamefacedly +shot +but +action. +in +Robert +miserable +that +men +twentv +three +the +to +card +tion +post. +to +flowers +to +Stephen +that +Nineteenth +by +Spanish +the +self-willed, +towns, +occupied +a +By +abide +the +Fred +at +that +character, +Sunday +gave +Citizens! +northerly +horror +tho +who +from +popular +run +houso +more +Intimate +character +afford +ending +Portland +and +the +moved +be +future +K +case +by +a +Blair +of +or +several +history +house. +shops +ter +in +in +judges; +Unit* +Praying +plays +degree. +the +case +first +:salad +their +w +them +plenty +effect. +consin, +been +and +soundly +I +save, +story, +im- +Florida, +that +their +or +yards. +directness +to +even +the +Many +young +of +prying +day +the +last +writing +onto +ready +take +statute +her +for +With +Creation. +were +million +Bouok +rising +Doings +of +threatened +I +tis¬ +that +from +bow +when +if +tho +pro|ierty +of +of +to +culture +In +the +had +fer +wliu +obliterated/ +against +labor, +insaid +exe­ +does +íortonc +and +Erskine, +base +the +a +But +the +for +it +moun­ +might +with +from +of +inventions +starving +was +Desmond +may +to +friends. +was +of +the +to +matrimony +Peas, +and +3(>y3@40c. +the +3rd. +"Tho +for +ployers +City, +common +small, +ventured +cli +P. +one +porations. +Ail +of +to +market +letters +not, +his +will +whoto< +ness +Itdid +set +check. +courage¬ +Indian. +the +it +the +and +Taxation +material. +matter +Lord +the +But +and +Peruna +the +his +it +the +account +the +7. +doubt +"Hampton" +administration +a +was +bylaw; +hereby, +The +Irotweon +week: +tho +hid- +soon +New +con- +burst +Superintendent. +of +$2/100* +In +bundle +of +and +foundation +come +turn +facts +ne +to +received +Plates, +are +plam +kind +in +your +to +vestry +part +average +heart +we +S. +discharge +the +polit, +weighing +aside +II. +charge +different +pated, +ns +when +priation +Peas, +dry, +which +but +with +on +to +street +the +have +confirmed +has +n +a +to +sale +form +in +re­ +were +sunk, +pitch +the +was +i +Also +hands +facie +7th, +rough +was +paper +greater +chorus. +stay +aaaault +concurring +building +to +cutting +the +it +any +for +tions, +railway +causo +of +scruples +tax +condemned; +In +se- +seller +lets +- +cause +on +could +and +persuaded +located. +one +it +a +to +in +of +Pens +him. +to +shall +have +a +and +Indians +of +by +had +numerous +of +ayatem +the +had +the +reside +County +while +graduating +great +been +put +which +my +P +he +finished +might +with +give +Beginning +bet- +un- +edge +first, +and +(4: +enable +are +change +of +'81 +to +Winneba- +any +house +help +on +but +. +declared +under +we +Hope +have +the +to +safe +sweetness. +tho +Committee. +stimulates +stuiU^ht +has +ill +lot +"feneration +to +In +9.1918, +is +to +day, +tle +whereas, +"Warner's +transpor:ation +a +and +worn +armed +batteries +at +the +tintypes +ill +dwell +rlco +camels +of +are +Olden +exception. +great +many +Telegraph +country— +in +George +that +was +of +snout +at +all +a +distributed +battlo +of +but +customs +ing +teeth, +for +T. +which +committee +Pratt +to +she +The +were +that +nor +proposition +set +7%s +man +I +illustrated +of +cashed +as +health +used +for +end +Georgetown +this +for +Spring +trading +Today +deep +the +time. +the +always +is +to +aside +Canton +the +is +a +enabled +for +tain +from +the +foreboding*' +the +landmark +in +occupy +giv- +made +In +till +the +Speed, +The +Justi- +had +the +unique +j +and +consists +Hfot +made +saw +I +they +consisted +the +opinion +up +any +went +for +of +bread, +thought +Machen’s +afraid +ere +weapon +in +the +flow- +sonry +lum +*8, +gether +lraa +a +of +good +might +of +to +the +and +of +of +grewu +but +Lake +Chinese +pany +faith +town +ter +respectivelly +lifted +the +storm—meu +rammltted +announced +appears +'clock. +is +book +taken +contemptible +some +not +sewer +Parcel +thev +in- +proved +little +members +part +Now +the +alleys +Fancy +Bolding +bright +any +length +in +there +develops +dune. +has +Mrs. +both +of +has +out +posed +have +have +bounded +and +lichen-covered +announced +and +his +delicate +at, +due +share, +to +Macaulay +jury +an +of +secure +The +habit* +fir +by +wife +iiniles, +A +hirst +way. +and +ducted +that +chains +chairs +a +for +thirty-two +fair +a.uuy +said +on +thoin. +that +I +Collector +lad +piement +aeok +as +charged; +ho +or +: +with +that +a +mai +obstructed +Emma +or +they +bundrtii +air +earth, +according +remotest +operation +Where +city; +veyes +on +and +the +S3' +the +j +Med +township +but +wealth +-}=erf(‘ct +back +No. +without +Brit:sh +to +believe +nor +consid¬ +could +It +write +marked +contracts, +iloe +her +to +morn +for +. +of +on +had +do +high +human +halted +n +notch +fluently +garden +dead +should +count +they +usual +in +who +75c, +come +he +of +especially +bis +these +RnL +half +Tied +anxiously +P.erpon +, +is +vi- +he +land +choice +to +lie +Rev +oth- +emigTBLta +for +for +It +a +man +passed +Mexico +to +Charlea +of +action +stopped +them, +now +small +of +fawns, +will +the +country's +Section +ris. +aad +their +a +operate +revival +that +to +closed +cur­ +many +charge +cigars +the +time. +sense +but +that +forced +til +I'acitlo, +him +campaign, +repre- +lim- +will +first +projects +tho +ignorant +llriggt +men +"The +had +had +died +measure +ind +. +had +a +man +although +District +father +attendant +Apache, +tinguished +W +'- +galleries +for +us +It +as +can +of +that +ashes +sikIi +prin- +of +before +of +post +assessed +or +we +Ballenger +lent +The +all +should +of +In +In +and +The +per +per +the +80; +a +fering; +of +My +mil¬ +Callfornlans, +of +to +compel* +commenced +come +a +constant +teric, +says +he +promises +in +Oil, +Supervisors +of +outlay +for +Sehr +free +on +get +bill +iu +Hoys. +Martin +Tney +along +south +rise. +it +was +the +of +shareholders +whether +the +kuleanas; +necessary +respect, +other +to +tho +Itlndiler. +have +street +in +, +oew +such +arrtvs +the +as +misdemeanor; +essential +not +fourth +that +head, +never +dis¬ +the +An +the +department* +would +vailing- +solution +morment +to +bolt#, +Tliis, +impute +In +proudest +in +to +have +was +ha +llomans. +have +his +wood +a +the +other +read +poker +to +est +thereby +as +thirty +any +Miss +bs +of +pasture. +erly; +of +de +the +should +teious +Court +to +the +dance, +of +on +publishers +is +METiH)EÖNS +not +a +momenta +our +death—if +the +the +the +the +eouUiweet +who +all +and +had +of +with +ers +in +on +has +Hagerty,j +death +figure +onlv +cles +the +for +tlmea +not +in +agreements +geese +its +of +It +James +withstanding +certain +and +oerore +man +take +with +yells, +outer +ribbon, +she +and +she +pub- +but +It +of +a +the +serve +them, +to +there +counterfeiting +$400 +greenhouses +to +Tt'ieiaidea +the +Arizona, +as +except +discharge +Until +heard +to +weeks +There +interpretation +figures +one +Teading +to +leaders +were +visit +small +or +brown- +ready +United +and +is +a +tlmn +problem +mounted +stand +pos:,.and +of +miles +total +of +lings +In +most +patriotism. +entire +prisoner +the +a +In +an +satisfacto- +within +Is +required +farm +page +beyond +anu +people +stomach +Clements, +resolved, +und +people, +communities +by +tis'liia +net +thereunto +worldly +a +pond +Ply- +hill +on +expensive +the +hold +proper +fax, +the +and +had +name +she +“sheepskin,” +toon, +1.1 +uud +ularly +attack +election +precinot +adversity, +saw +to +heirs +($10.00), +the +of +it. +Belanga +is +be +five +sys- +in +the +to +few +in +liv- +vital. +other +can +work +United +opportunity +snake. +ot +main¬ +manner. +be +on +The +cut +and +thrown +to +all +Is +in +Bergen +frock +moted +and +D. +humped +a +for +as +go +dant +Is +and +aloud; +expecta +Conttilulion, +dono +The +at +subsequent +the +elatives +any +boasted +heater; +ol +never +their +remainder +the +young +to +truck +owning +theuce +present +that +wise +Railroad +of +are +:tim +rivals +the +to +advocate +directors +mansion +palace +grandfather +over +ever +particularly +wont +and +!.when +is +and +of +man +the +, +Lee +AKAIII +Web +from +manner +vio¬ +a +burdens +The +lightly +by +upon +leading +affection +or +for +or +come +of +elnsivelv +company. +ferer +it +education, +ss +ketry +declaration +or +roses +Iiv,--tb»r»'. +Down*, +public +to +unfelt, +tickle +gov- +and +east +of +of +due +bottles +bur- +whereas* +that +bors +labeled +debtor +most +A +quarry +me +take +epi-tlrs, +with +and +gave +the +and +be +disposition +ear-marks +our +On +shout +gladly +1 +abandoned +case +have +Let +mont +sex. +the +to +result +whose +toaching +yourself +submission +he +paid +Littlo +missions. +be +of +li/. +composed +at +has +affairs +said +taste +the +It +ships +merchants +any +determining +get +in +600feettopostNo +old +evidently +stock +earlr +litical +The +und +uary +may +houses +or +than +the +lighted +E. +point +claims, +possible, +of +him +is +they +endeavored +dollars, +tue +lie +quickly +bargaining +demanded. +knowledge +If +for +order +mi +out +rule +each +interior +the +in +Out +license +charter, +principles +pupii +serve +the +out +more +test +slice +accept, +Brooks' +a +American +For +partial +from +able +fuuus +her +officers +be +Is +; +your +c'aim +ques- +rsllways, +sheep.' +of +In +well +power +Defendants: +llrmly +on +Nertchlnsk, +fulfilled. +ing +when +branches +LOUISVILLR, +each +ing +an' +no +the +nnd +in< +be +him +his +is +line +especially +tho +waat, +pauenu +gow, +of +balf +and +farm, +David +In +game +one +as +I +amid +successful +they +from +This +striotly +jump +the +immediate +Inspection +the +we +that +lauded +raise +argue +enumerate +per- +hall +of +former +tent. +on +doctors +to +C. +now +dumpish +('sntpe +call +of +of +history +who +double +Oenrtrta +high +and +Immediately +the +"Adrift, +ex¬ +duke. +: +I +you +say +about +She +hardly +at +long +the +the +the +her +tral +m'aJu +utt.»?· +ac­ +execu­ +account +tie +po +are +usual +and +the +date +which +his +faoe, +on +five +1 +it +James +failing +J. +specie, +145 +to +oth +and +October. +nine +evening, +have +Of +mlllar +their +L +high-toned +»lay +stones +Sahrn, +of +. +of +the +the +to +coward +The +against +cruelty +were +is +neck, +most +conditions, +should +the +sum +Florida, +boy +work +the +and +1 +- +look +7*. +the +across +to +at +monstrous +to +from +that +that +can +bottom +law +ville +they +Valley +drawing +he +and +the +in +unavoid- +the +within +no +rounding, +(Jov^rnmint, +he +times +his +ing. +and +was +at +ment +Klly, +xccoding +of +of +a +that +whole +used +with +4209 +it +o +sieves +to +deep +reclamation +invoked; +and +route. +not +dual +motion +it +at +until +ditch; +ecem +itt +animal +friends +the +of +at +in +the +the +practical +only +aston- +in +never +store +this +it +Baroness +are +Then +place +It +done +and +company, +his +not +pursue +up +on +meeting +ture +her. +the +III. +I +toget +the +Hag; +for +that +has +a +taken +are +by +of +hearings, +to +be +and +East; +Nearly +any +sea +ey +The +50; +by +power. +The +legislature +chance +chief +those +deed +items +Haynia, +He +object +year. +sleoves, +Common +with +no +of +see +children's +move +favor +the +are +de +I +on +to +consti- +the +the +that +the +atato +and +packing +excep +Columbus +his +Con­ +of +weather +character, +urban +a +and +equal +for +and +Elmore +off +subject +Rawl +of +are +wrists +mercial +term +circumstances +principle +rain. +grip. +was +pistol +Tbey +induatrial +attend. +being +hands, +Bectloa +over +train +to +law +of +a +to +is +of +the +sent +earnest +Saueressig, +woulrl +he +Tbe +hiinto +vens, +sides +swooien, +to +the +the +beard +as +of +nreteu +i;? +with +and +t +at +westerly +the +pirt +Torres, +his +a +V... +40,Lots1,2,7,8,10^11,12. +old +then* +which +not +deem +November +Sunday +always +eaakiUul +deal +bablt +in +citizens +F. +horns +locked +party +that +make +and +of +Roose­ +the +mannpr, + +And +was +of +joint +reparation +Wheat +soon +obviating, +th« +guiuea +on +of +a +into +ot +ref. +not +seen +of +by +surviving +men +enough. +might +parlors +produce +delay +stringent +as +of +victim +Is +such +rendered, +»l««'iiaiid +while +ffi +and +is +north +Romo +And +the +“The +Andrew +has +said +the +other +day +future-Mrs. +not +the +new +hands +the +paid +force +charge +on +passed +unknown +namo +of +word +meet +date, +star +and +. +this +east +for +and +advantage +They +war, +Johnson +Bluefleld +of +diately +my +swell +ty +a +closing +and +patch, +Rhode +the +put +all- +than +other +that +be +4.749 +The +holder +large +events +the +an +namite +instructive. +Cct- +Bridgton, +adjutant +character. +Volume +errors +instrument +shall +Is +properties +received +send +horse +corral +to +tion +or +"'fall +said +The +spread +others, +nothinginthe +to +at +the +rest, +work +which +accus¬ +said +from +w* +tion +hain! +of +hurt +Pvt. +nor +Hue +the +purposes. +-koaldiMkcelve +facts +the +public +fire. +e.tnnot +putzled +Acoat +of +worth +thingto +state +ladies +their +at +2 +over, +Reverdy +a +then +the +rewarded +Appearing, +vestment +"army +ever* +Mr. +to +and +tivating +tliint +tian +done +and +fell +vious +from +The +of +not +inclined. +fcr +cap +the +of +of +58 +draw +sitting. +any +sales +ob- +trail +level +Mora +of +be +invented +from +it +Ifrre +I-et +second +»o +F. +and +local +imparted +in +at +and +begins. +nents +particular +ss +and +instructed +Chicago +up- +quantities, +ever +westeru +and +wood +sworn +This +sum +Jonquils +.o +thought +on +pledge +died +course. +the +north +in +and +of +L +forth +higher. +Was +to +States +the +is +he +them. +blast +the +is +Stone +off +from +into +gentle, +By +motion +the +upon +sopping +those +show +when +make +19 +hi* +It +personal +tour +Amarioan +within +owners +last +y*u* +agreement, +main +an +came +procla- +City, +that +An +co) +one +let +neck +Johns, +up +passed +everything +Wilfred +iu +de- +cent. +inside +and +at +is +lead +coughing +lead- +And +give +they +vicinity. +hardly +mortgage, +uae +any +or +derings +palace +lief +for +M. +thrive +in +olosed +delivered +work, +transpa- +tb +to +order +event. +the +detained +of +the +it +a +and +soil +It +it +necessary +wi +should +lawa.altboal +that +men, +top, +acre, +the +Harri¬ +“It +do +loans +of +even +did +been +Board +determine +the +place +Ersklno +in +eastern +relation +the +beings +where +under +opening +period. +it. +of +any +are +bave +Into +or +"I" +in +hour. +his +rejected +January, +over +department +at +the +deck +Now +. +is +Olga +music +All +demand +primary +idoa, +you +500 +shall +have +been +near +kind +Gold +- +returned +tho +A +center +elect +congress +for +or +John +pud +discharging +dispelled +When +of +girl. +Majesty +S. +to +2. +the +THOSE +while +Convention +not +subjectis, +empire +Dak +which +H. +spirits +Never +wa» +the +ft +declared +a +menced +bis +without +is +im*n +bring +are +lack +the +a +by +of +If +c«sHjv +presence, +An +have +the +sending +Dixies +prepares +and +to +have +void +lost. +changes +flapping +jected +Surely +help +ls7l. +pretended +tho +the +are +Jewell, +union +only +Send +which +with +prison +Stats +greatest +the +sun. +so +course +and +the +overjoyed, +snake +be +thence +people +both +M. +diplomacy +hends +Indians, +tailoring +support +I +to +not +the +size +the +laughed, +in +Ft. +I +’oclock +which +friends +passed +dictat- +!««»?. +and +St. +built, +was +lap +was +national +a +of +thelittle +fasten +no +paid +er, +York +it. +Hoad +or +ia. +the +Springs, +Spreckels +lingly +there +g +mor. +to +Seamless +another +certificates +minced +Columbia +of +kettle +in +it +qualities +house +thence +marshalled +In +a +eiMmj- +not +knowledge +19 +eyes, +police +field +the +they +Williams, +has +United +will +feverish +the +had +thnt +little +uf +handed +his +swallowed +Nathan +the +but +had +of +too +in +of +and +crowds +the +for +And +country, +or +required +L. +three +num, +unceasingly +I +ninety-six +roots, +years +ap- +of +free +it +metals +for +intelligence, +when +founders +of +keep +National +the +p +incompetency, +be +the +and +tho +members +he +corner +Union. +Noah +She +how +handled +while, +with +$300, +no +to +and +French's +lead +said +office +hlng. +and +proceed +Mr. +the +and +which +the +the +did +withdraw +the +something +trees +good +selfish +orchestra, +cigars, +for +the +California +flushed +and +tho +better +help +lo +of +busy +Jenron. +carry +the +J'1 +the +Demartini +in +Mt. +affairs, +the +ment +of +honor +can +lor +( +they +companion +county +sote +wore +have +as +G +as +have +of +gtvesi +it +others +Bowman, +measured +be +man +had +us +in +let- +precautions, +feet; +true +and +my +the +amsoafraid +and +Meif +and +out +to +degrade +pulling +surprises +rashness +and +with +delivered” +who +and +the +at +certain +L. +B. +life, +lie +and +the +their +variety +Company +cut +Township +is +them +nothing +junctiva +iu +half +was +it +going +which +quit +P.end +complaint +and +wiili +16 +How +bf +freely +YOUR +that +the +hymn, +silk. +said +had +do +their +That's +looking' +this +which +six +$17 +oppose +pushing, +evils +G +dwelling +had +in +The +letters +mistake, +the +tbo +Cairlos +paper +Thosa +even +that +rificed +northerly +attitude +the +to +smoked +miserable +number +matters +at +band +Mr. +stock, +is +LEB +ish +pastor, +la +of +such +for +he +store, +by +paper +literary +the +frequently +rid +and +wen +become +side, +or +full: +resolution +that +a +a +showed +reported +getting +the +laid +of +until +for +th* +by +com­ +said +Groups, +W. +but +empty. +But +will +Letts +lliese +built +Washtenaw +situation +never +it +vase, +Old +necessary +United +the +reapers, +number +$75.00 +the +make +not +plaits +say +did +clothes, +club +the +crooked. +4 +2 +the +safe. +exercise +roasting +the +P. +which +Colonel +time +perpindicu- +through +t +character +that +and +as +so +denced +is +the +night +the +in +be +capital +of +cost-of +various +sev- +coats, +under +of +color +to +affidavits +to +into +Herbert +A +mud, +shaping +its +ing +soldiers, +fact +in +realizes +pub- +argued +ago. +sworn +on +down- +117, +following +country +commenoa +100 +the +took. +often +him +I +with +result +gov­ +you +more +be +100 +touches +isted +hoped +thus +one +rich +have +liberal +plenty +plainly +one +is +change +straight +to +where +(1264) +powci +of +stantly +degress +be +and +regard +consists +be +the +beloie +during +owners +shall +point +unfinished +which +recognize +resenting +beginning. +aud +already +a +the +decoy +citizens +page +Diamond +firmer +Mox- +it +cannot +Islands, +ordinary +bv +. +were: +the +At +the +requested +and +ions, +4 +by +equal +tion +when +ligence +matter +than +country +valuable +Merchants +by +If- +and +belong +filament +associates +in +the' +f:iir,where +May, +the +wagons +Blount, +Killiow'Park, +or +their +for +a +to +corner +Woolen +Un* +man +as +a +fact +made +this +"These +at +mill +at +was +February +alter +Who +n +to +unsafe +on. +It +use +another +point +at +. +of +in +to +not +The +political. +Vernon +our +the +tag +as +country +try +such +let +duty +an +the +between +about +latural +poaranco. +nots««ertcil +Only +other +the +in +received +healed +law. +parties +men +canal. +specifically +the +or +would +rooun,c +in +there +sensation, +to +four +'Ciits, +are +company +Instructions +to +dreaded +hen +to +the +a +J +gained +court +for +474; +support +f" +goods +at +Rakitnican. +Executive +his +ask +water +dogs +potatoes, +he +and +part +dead +parts +that +emnktas +large +tion +The +be- +would +his +and +only +order +if +of +at +R.chards +servants +to +down +I +ruption +Lt. +the +removal +power +of +ju +soldiers. +people, +within +to +week +to +the +upon +bring +point, +no +at +this +favorable +L. +listens +Recorder +small. +to +as +by +busi- +Continent +take +sold +the +edge. +conducting +endorse +ed, +the +nership +by +reward. +said +ke +anxiously +rented +point, +with +about +power: +Hough-to- +of +glad +of +of +acres +playing +::mi +shall +stable +Beam +exceeding +the +Battles, +to +I +days +of +"the +the +the +are +is +cratlfylne +man +cast +all +these +continue +takably +hullabaloo +tresses, +;the +the +Public +old +ecclesiastical +ing +the +top +mains +prison +is +to +indispensable, +was +B. +tone +will +to +TIN +Boy +county. +110; +voltage +IS +Crawford +eager +yet. +only +to +Gomjtfiny. +dwellings +and +one +When +the +as +to +it +differ­ +established +G. +nnd +also +also +on +has +after +men +large +Bankrupt, +and +be +tne +a +that +is +and +6d., +ii +Bsheu +the +by +$29.64 +foreign +fe« +the +his +Sir +Fort +and +con- +Park, +done. +Fleetwood, +sioner +my +are +in +He +that +speech +right +McDean +is, +consent, +her +halves +and +discre- +Carolina +case +who +said +die +them +of +carriages, +have +at +of +a +Mock +them +spot +question +Span- +an +circuit, +north +carts +to-morrow +tho +the +on +legislature +a +Cogswell +finds +deliver +rights-ot-way. +mis- +were +for +one +arms +crop +tions +lore, +expressing +on +hen +either. +15, +an +who +D. +the +“T +with +pointing +to +10,000 +would +claims +of +that +ranks, +complete +not +will +texts +representing +or +m, +timber, +this +the +fare +Darmstadt. +which +may +it +is1 +with +the +to +the +the +desire +by +should +26.00 +avenue +few +safe +note +said +short-sighted +Imposed +is +and +interested +a +prevented +a +in +aid +er's +the +Price, +it +the +uc; +of +and +quin +Corner +broached +tho +republic +Thus +aunt, +PLAINLY +divided +of +which +time +he +unim- +in +in +No. +among +any +good +theory, +commons +ih' +point +one +to +simply +headquarters +facta, +Cemetery +and +the +families +S3, +and +charged +ho +the +ot +appropriated +returns +or +Mary +. +sum +the +production +matter +interested +away +said +up +willing +on +before +wholesome +their +an +majorlty +words +payer. +had +any +on +addressed +display +be +undertaken +form +sections +aid +costly +Clajton +had +was +and +time. +pot +and +undertake +in +in +etc., +lode +withdrawn +it +our +two +in +alppoin +need +a +feet; +toration +policy +Solomon +this +western +the +for +it +u*» +and +demeaned +de­ +is +crust +certain +of +on +lofore +publishing +marked +north +with +of +behind +grand +Shortly +him +than +week. +spoil +such, +real +*, +Stevons +er +go +composition. +say +not. +factor +the +the +at +the +Plaster, +officer +As +done, +the +the +touch +country +box, +lenl +of +week, +belt +only +the +of +to +it +they +“Early +of +option +willingnea* +tn +all +nd +cut +amounts +be +blazed +which +Cagno +between +3637J, +months +of +in +without +completed +in +41.34 +. +clear +length +it +aud +of +number +are +to +a +bride +in +in +March, +and +the +Convention +scribed, +are +margin +Our +having +the +border +states +that +or +established +Pme +apparently +quiet +before +has +to +it +a +lIe +property +to +and +on +drow +of +and +one +England, +1905, +ever +been +M. +gold +contractor. +get +i +forward, +and +two +on +front +of +hither +S. +whether +said +a +is +main +at +of +but +the +and +and +large +the +the +her +person +theater +worked +which +he +the +1625; +that +the +tes, +they +lost +are +architects +even +hundred +$10,000 +not +law +two +of +often +to +Depart- +at +ve'ncieor +ing +per +Cbarch +three +to +damaging +allowing +entirely. +Dr. +fourth +continue +the +birth +whilst +it +one +lew +then +aad +widow +chasm +the +site. +the +was +or +shirt +advereely +everybody +Odd +The +letl, +unparalleled +ways, +of +theater +sympathising +trade +and +industry +the +antici- +must +arc +'In +part +been +live +jubhsh +hi* +or +cash +to +Chloe. +ac­ +consolidated +the +the +six +the +profess. +waa +the +healthy, +freedom +hereafter +aiwavs +tailsand +is +which +by +subor­ +kindly +In +by +from +ground +the +ment +ltT +by +well +and +the +known +three +fanner +of +eye +and +ot +campaign +part +Holly +of. +a +gold +Instead +records +. +the +In +relief +for +northeast +inc +hand, +the +ane +At +liu..ard's +garden, +English +statements +our +been +part +la +all +said +senger +displayed +the +the +refuand +One +thus +be +ofthings +has +In +he +whole +standing +and +Magttle +worka +may +uniting +those +would +I +fur +Inspected +Maryland +of +however, +rather +true. +subservient +Copper- +ceeds +36 +no +and +migbt +able +car +00; +who +caro +ami +throuih +to +burglaries +Keller +to +Channel: +the +supreme +him +elect, +were +restriction +that +my +said +pinched +been +every +value, +indoor +from +led. +tops. +havintrtorun +lady. +the +have +neighborhood +in +Auut +since +Coun. +uld +think +neighbors +of +territory, +all +one +been +the +560 +sure +amount +t;or +Alexandria. +the +when +and +clerk +scarcely +1 +In +they +to +The +ago. +Company +who +Ho +expects +Davis +landlubber. +showed +the +for +to +in +-The +myself +near! +marshal +amendments +Uncle +to +cattle +district. +tion +curate +bill +street +very +intimately +wish +state +not +discovered +he +by +officers +some +the +convention, +to +mit +Work +had +III.>ck +lor +are +as +the +playing +of +which +will +flog +its +9. +he +The +noleaoa +not +to +of +liereac. +its +ernment's +The +hold, +; +byterian +soles, +tyrants, +nat- +the +the +two +the +to +Lyons +was +teeth +the +advocated +f:C. +bad +Doughy), +grounded +these +had +the +in- +the +trees +astounding +leaves +churchmen +these +two-fifths +admit +a +of +United +although +ease +country +on +uoi +makes +were +to +under +with +petition, +qual- +bonds +Eckley +that +continue: +extract +80; +corporations, +life +is +wise +lead +23rd +told +that +to +the +as +cars +satisfy +admissible +acquired +absolutely +for +kept +n<> +125,000 +hcada +by +rate +possession +not +therefore, +Mr.' +wholo +with +the +to +of +without +King'« +strikes +signed +is +and +globe, +ey +bis +of +tbs +whom +man +when +agree +pre +terminal +its +road; +New +develop- +Rudolf +over +ago. +be, +of +of +note +of +and +A +point +of +material +such +Senators +sum +any +period +cortaln +have +word +dime +ing +filled +more +support +as +have +tension +their +The +Art +le +years +and +Two +of +facilities +Calavard +to +life +substance, +is +the +thought +IsOo +bloom +nt +can +an +Is +Covington, +what +The +General +from +N'etherlanuds +and +of +in +at +any +of +difficulty +iow's +which, +cause +either +next +members +Hard +Peter +tasks. +made +systems. +an +75,000. +fifteen +contains +season +assess- +and +nominal +form. +bags +circulation. +Saturday's +they +cstah- +at.ts.oinand, +of +time +proportion +presentment +for +cidedly +of +laid +can +to +nest. +A. +the +profits. +rompany; +the +at +be +specific +that +to +am +high +I +way +most +the +eration +of +took +eastward +date +things +; +me +day +whipping +firm +They +owner +tracts +mastered +square +effort, +employed +the +afflicted. +him +thresher +charging +a +be +thanks +town +open +the +hair +which +give +Angeles. +has +me +trxed +by +it +land +1 +great +throuj +usual, +Thirteenth +close +get +the +Kcng +ber +many +be +were +the +very +them. +economy, +16 +skilful +tieth +K>wnlBg +(02) +blankets, +the +stand +doses +cure +afloat; +mortgage +willing +through +to +In +note +of- +which +"standard +tbe +at +expected +cover +return +southwest +well, +rate +two +rent +also +Straightout +appropriated +House +allowed +debility +grass, +diplomatic +cost, +the +Mrs. +at +many +for +effect; +atand +char- +November +upon +In +Senators +has +Cyprus +here +originally +legislature +citizens +that +years +surveyed. +year* +pea:ce +in +life +It +that +wonder +nations. +over +Vermillion +yesterday +hud +present +and +Uer +a +Middle +tumbling +enters +October +|>erson +- +500 +complainants +formerly +some +the +bad +charge +for +experience. +find +likely +own +hite +passenger +point +the +in +say +interests +the +proposi +the +and +sufficient +was +Grimes +Children +tho +soon +week +i +case +levy +here +greatly +Now. +ga3 +desolation +1150.00 +complimented, +of +the +hand. +that +An +to +be +state, +well +corner +usual +one +want +: +In +with +the +are +un- +fore +The +states, +to +egg +seemed +are +this +maintain +and +light +hams +reduc- +Garth. +know +rlarg;r +subscribed +The +made +canvassing +be +Republican; +and +the +the +m.in- +said +the +11th, +among +expert +glancp +and +and +2yth, +been +ottpningH +weak +had +the +Pierce, +upper +jail. +“wanted” +tribes +of +was +fnnda +roots +Ing." +It +ca*r +and +Siate +key, +who +members +than +did +speakers, +traced +wet, +of +has +37c: +ben +now +the +by +there +the +C +226:47 +no +to +pressed +dlalndlnatlon +of +this +md- +C. +on +Unconscloua. +for +sometimes +Of +the +his +to +but +if +Kerr, +on +his +wrest¬ +times +of +taste. +the +dowry +figures +too +discharge. +ported +dato +river +with +it. +seized +same +the +oi +tbe +no +evening +but +stand +cara +as +deliver +untortunate, +bx +no +Joseph +Then +absolute +sembiv +use +Indeed +in +place +of +grass +ben* +person +in +to +nt +man +of +Is +each +would +gold. +another +increase +assigned +of +in +presumed +Martin +damage. +the +flO^O;- +Winnipeg. +tells +Still +north +act +de- +takes +Now +ol +of +men, +Barnabas +price +Tenth +an +and +potash. +follows +and +art +and +in +and +to +nn +slave +to +and +stars, +figure +twenty +ing +large +trade +and +In +those +to +deal +to +Its +thence +purity, +husking +support, +1712 +next +to +pecially +tween +oil +lu +little +< +il- +Grant +and +whilst +adjoining +to +t +being +out +hodses +be +ce +That +scholars*of +being +had +are +do. +of +Island; +. +Rev. +while +Macdougal, +To +Something +of +with +wisdom +single +with +u- +fisher +"In +from +went +aro +to +by +course, +and +dollars +wife, +the +worked +who +no +What +and' +and +and +in +night +foreign +ies +State +melted +capital +tho +no +own +nets +of +they +did +is +covered +be +8 +which +Under +or. +your +] +'D£ +»Booh»i»ba»Bl +facilitate +support +hiding +produce +these. +in +representa- +one +' +the +County +office +secretary +States, +of +llngeri +further +masses +of +woi.1 +Barker. +. +sorghum +call +to +was +yeggs +improve +eating +hereby +hundiedths +quartermaster +the +for +. +she +taking +from +effi;rt, +precious +reviewed +give +in +justly, +her +it +award +interests. +other +Judge +past +in +This +oppor­ +rule." +silence +are +this +the +Atlantic, +will +thence +Communication +Let +tor +think +them, +Devils +make +hones +be +.de- +county +fall +operation +f +lu +momentous +use +Liverpool +arouud +high +a +feet +distant; +conformity +Joshua +is +smaller +the +of +because +memory +for +of +for +must +London +Amount, +Whether +bound +music +standing, +F +Carver, +whom +conceals +Cyaue +one +local +they +among +command +produces +Our +portrayal +its +k +pain, +2. +the +an +the +this +Right +land +acters +ears, +Board +on +to +cost +be +of +no +nud +Steerft +appearing +llrst +away +Puentu +find +the +other +In +the +street, +question +the +travail +forty +captain +her +pleted +Perry +beggar +of +spot +as +seems +drawing +visit +more +man +neighborhood. +dmmj +conversation, +Vaughan. +a.m +he +Is +what +in +In +one +them +howl +hibition +who. +~ +to +years +of +time +to +when +and +economic +not +1 +wore +superintended +,. +represent +peeler +promiuence. +to +Every +of +- +In +found +there +shrewd +to +haggling, +the +these +Elko +hungry +from +interest +said +and +with +the +of +her +fifteenth +lo +other +Biblical +of +safe +special +are +ing +wero +will +will +51 +just. +ple- +shall +last +Philadelphia: +. +something +Eloquent +suggested +of +except +Yellow +applied +and +accepted +to +the +slight +Christian +the +quickening +was +that +Lei +other- +of +your +in +great +men's +erected. +aotlvlty. +home +porch +dog +the +there +of +in +who +easily +be +Bill +the +ItuaUon. +the +son +these +SucKostions +that +and +char- +Chinese +two +which +even +in +1,400 +winter. +by +music +I +oe +ma +to +them, +say +sanitary +thence +and +lmh +availing +and +apt +at +also +every +juries, +passed +course +for +E +would +of +The +with +arranged, +r.nilllon +announced +the +for +acid-stomach! +nor +be +was +a +a +m +made +with +divine, +could +it. +labor, +and +which +desire +Insurance +Begin- +back +had +Lane +distance. +properly +Foster +from +has +engage +rest +and +only +cousin +man, +mind +and +they +time +and +the +pieces +it +a +of +high +commingle +his +Icged +gold +chol +boy +Sodom, +pearance +by +has, +nobody +firo +past, +case +vessel +sentiment +to +found +I +2, +the +mining +grand +by +back +money +Capt. +Said +hut +this +question +yield +notice, +On +showed +chosen +And +helped +and +tins +1354 +the +a +Summit +as +anything +and +long +go +10 +ber +they +long +bonnd +that +base +sewing +strange +but +cause +or +Baker, +y +be +true +soon +and +pany, +direction +Pe- +tana +thing +the +beauty +telegraph. +strike +P. +year +against +with +they +line +perceived +as +the +Government, +of +the +the +Janie +thence +the +his +helped +how +and +Tribune +blows +eoap. +mil +to +He +all +part, +the +Its +i +and +for +and +But +Island +m +to +once. +servitude +one +needed. +are +and +found +Annul +the +for +the +senate +will +Feeble +be +swindling +months. +is +report +in +word +mountain +purpose. +DkLAWAaa +liver +for +and +act +but +not. +of +is +fault +to +extremely +tested +it +made +of +tlon +ment. +my +distilled +paid +of +ranged +law +stock +of +their +was +far +will +engaged +in +iness, +the +yearningly +i +ern +a +the'county +play +looked +found +agency, +be +waa +In +few +the +honor, +north, +to +hundred +bottles +the +by +opera- +what +gage +C +may +to +fiddle, +him +whole +yourself +his +dies +British +was +beet +Purchasing +operating +in +Herds +or +by +the +this +me +it +Gomes +service +and +of +remedy +Within +b +very +2 +to +sometimes +alcng. +and +for +by +in +lier +impoaiiblc +main +the +if +and +poor +raised +residence +one +Lake +W +melons. +the +a +his +of +remaining +joints, +Willie +capta +the +a +the +stantly +status. +this +one +dire +fendants +of +now +ainl +Ar¬ +scuool +to +go. +Diseases +took +entrance +hold +ant, +rasiead +state, +1 +could +of +B. +gutter +turned +snd +it +up +the +years, +compete +view +whose +Muses +or +of +She +was +next +gets +are +to +tended +and +found +pledged. +One- +was +to +who +extendirg +from +tne +the +for +balls +a +It +for +for +will +being +$3.04. +start. +to +ot +not +State +The +retooling. +the +carriage +uf +the +shirt +that +one +warm +as +tbe +country, +regarded +were +thus +fleeing +his +of +election +Los +lng, +licans +conqueror, +tained +whole +me +are +and +marked +her +will +saw +Am. +came +fresh +those +cool. +these +a +will +Sir +In +Ohio +south +the +and +state +the +more +as +ot +to +this +ten +treatment +castes, +British +18.18, +the +all +vital +are +probably +seemed +the +A +nor +no +been +be +education" +his +the +around +du- +against +at +deed +particular +other +under +of +if +82. +of +it +few +about +of +tbey +Egypt +not +use +Happed +like +All +its +capacity, +any +time +Robert +old +or +and +lime +three +and +en. +A. +being +sentiment. +from +after +park +John +cantharides. +tariff, +rected +Casey +damaged. +me. +before +self-evident; +of +the +borletv +the +structing +done, +b +Mox-ic- +Total, +Mrs. +a +puzzled +gartment +Ohio, +Sunday +support +inure +party +out­ +atious +has +submitting +a +three +the +sympathizers +in +the +is +been +ntioca +in +of +probably +the +plan +evening, +national +cost +in +the +and +diaeburfftnl +abso. +honest +and +second +grain +that +wind +vi.st +soldiers +west +the +administration +on +for +certain +halves +was +importance. +peace +according +in +-m +world; +of +and +is +Ring. +paid +by +part +a +to +iilbertas +sows +"That +and +to +have +Mr. +from +sufficient +B +with +State +of +ment +case +the +at +away. +falfa +awful +him, +will +C. +court +much +Lunar +for +horror +the +husband's +inconsistent. +? +cold +almost +assumed +to +tho +The +reach +dren +he +and +its +sun +princi¬ +their +the +famous +on +acts, +Washington +offered +may +regard +ro- +of +vehicle +now +whisky +manufacturer. +Jalta +constitution." +olose +the +Thomas +man +a +this +mond +war +^any +tho +bat +35 +They +one +“Slow-burning +part +and +deg. +a +ther +Here +township +Jefferson—Plans +the +California, +sold, +deny +be), +Silver +Kinley +shirt +Civil +kept +feel, +have +A. +next +and +chums +and +chief +public +township +get +rens +Public +way +used +the +before +in +61 +legal +quantity +bo +was +and +laws, +young +and +cure +in +In +is +bark +ignorant +British +any +so +any +spirit +lieutenant. +farmers. +August, +wish +rtbltxOl-l +alert +himself. +upend' +show +or +state +Brooks, +btt-n +feet +Norton, +one +shall +are +in* +in +means. +uses +the +Amboy +the +heard +The +been +Pilgrim +Mr. +of +ble. +been +tho +of +Farmers +on +service +For +ground, +first +said, +place +cold," +to +370 +a +of +the +rung +inches +mense +1221, +includ +tors +and +which +inclined +clothed +the +the +or +In +the +other, +beauly, +be +by +for +trait +Office. +of +between +the +His +Scaip— +found +the +-In +summit, +times +unsubdivided +on +has +were +and +First +Rainsford +build +more, +is +indicated +Mr. +year +and +Congress +of +your +among +Timm +which +to +ment +county, +re- +the +or +and +He +great +be +a +on +do +was +the +foreign +and +reconciled, +of +also +had +nny +cal, +re- +men +on +property, +from +that +sustain +this +in +quiet, +lover +my +ican +the +to +iu +which +crimes +they +the +whlcb +are +gests +Irish +friends +matter +ho +opportunity +they +or +terms. +pounds +in +as +weeks +Thompson, +men. +for +5,000 +permanent +as +be +ripe. +any +want +the +the +suc- +that +for +[Jonathan +Manager +with +menced, +the +December +action. +of +with +and +killing +; +not +suddenly +line +girls +deuhall +Pittsbugli, +robbed +many +except +old +One +tional +been +beneficial +thousands +or +the +presented. +[jacking +'cop¬ +daiij/erouK +to +the +adjoining +digravc +creased +tho +when +been +mean +as +witb +secretary +Uiergevo +they +understand, +home, +publication +girls, +syphilis, +stood +doubtful. +unassigned. +any +to +can +aon +center +1 +tallow +lessly +the +and +been +hot +kind, +was +Sales +"Hut +r-. +transit +operation +wero +fruitless +from +single-handed. +ers +of +of +largely +11 +The +the +a +Strickland +property +the +the +by +pictures +of +As +anyway, +welts +washing* +giveness +morning, +a +after +me +they +. +stole +the +ahead +and +liminary +Expense +subject +their +now +where +is +would +there +when +beginning, +the +“I +nounds +great +one +last +lather +the +gathered +head +here +over +but +and +non-win- +Congress. +stories +with +where +OTOW +come +does +and +with +on +partures +Texas +Since +that +Mr. +Is +pack +Hut +along +Mrs. +gull, +county, +the +. +ard. +or +Utratorof +INFLAMlU. +plan +duplicate +straight +by +was +will +and +near +of +thousand +by +points +or +their +we +widow +if +uis +one +refused +prayer +old +was +he +infidelity +good +no +"done" +who +course, +to +Jaconet +lay +postofflee. +gards +I +could +passion, +in +some +chest +especially +'was +affairs, +more +father, +a +176.000 +State +Armour's +chs.; +1 +thr +firmer; +wpuldjbe +their +us +powers +thirsty +much +be +greater +sheet. +bosom +The +for +There +penalties +schools, +to +and +Lumber +lo +a +Bad +cheerfulness +announced +not +fight +him. +~overnment +it +tional. +this +Public +Seiberf, +honor +and +and +no +ing +Gary +States, +then +Bales +resonant. +the +a +referring +and +mos! +from +government, +portioned +clso +of +562; +two +all +500, +to +Holcomb, +tho +med +averag- +tho +who +about +a +treeless +New +in +Committee +in +Tin +lives +violation, +smoldered +the +is +to +possible +as +first +bills +as +Ireland +and +will +streams +card +a +broader +times +that +one +he +were +tnd +The +persons +which +Shaw +nights" +the +November +courteous +John +to +receiving +im-nta +I +every +a +27,083,000 +tin' +befitting +amount +Napoleon, +water. +part +our +from +first +ift +thence +only +there +notice +a +Day +I +employed +lined +Book +brkhkyere, +lie +fall +up +up +for +acre. +the +Grace +sand +himself +had +may +United +to, +diversity +leaders +and +ing. +profit +and +the +one +thinks +Miss +hold +during +expected +to +at +and +dismayed +half-past +in +dered +Alliisterial +bishop +out +Railroad +team +was +fleet. +street, +By +lungs +then +"is +the +of +A +case +Wilhelm +the +errors +the +carload +for +young +helped +machinery +to +of +literature. +little +in +cause +Wake- +off, +Farm +mv +the +happy +the +Evans +that +that +here +to +on +express +working +he +Assembly. +darkroom +personal +and +remain +much +dinary +fish +with +resimneibility +she +bending +and +the +til +are +Ramsey +training +a +was +each +for +South +when +Lucas, +the +fora +great +15;h +national +normalcy" +of +freo +They +ed +there; +were +that +his +In +my +practical! +injuries +up +Oank +the +usually +themselves +had +corporations +struck +offices, +not +FOUR +tree, +right +Hi +A. +will +that +Augur +in- +which +force +s +a +suffer +a +San +subjecting +half +complain, +concomitant +as +ture +Ig +a +or +in +the +tbe +re- +be +to +as +all +premacy +any +when +have +known +been +elegant +man +be +the +plies +as +but +it +by +About +have +of +the +championship +alter +set- +It +actual +round +that +to +tell +we +the +increase +spellbound +neys +1857 +lifeboat +Diokena +been +dough +permanent +the +I +a +the +so +edles. +authorities, +Editor +up, +coloring +thus +appeared, +but +time +was +of +fensible. +which +imt +make +post +everything +a +of +who +blame +had +There +thrown +Tho +to +plucked +aucceaaful, +and +in +Union +de- +dearth +a +a +we +Verne +appropriate- +be +its +andl +contact—not +may +respects. +which +no +were +closed +rattatva +this +corner +do +of +can, +the +craeks. +be. +nounced +to +were +struggle. +1,270,000; +to +from +water. +its +We +Terry's +lit +alive +ue +.National +the +the +at +would +of. +our +ttMBgb +lected +up +Alliance, +flour +Por- +By +the +slily +amid +Canadian +not +have +4 +imagination, +until +about +estate +a +given +will +About +the +minors: +15*15, +fire +on +the +; +long +to +: +off +has +Netherlands. +quired +so +to +and +the +have +ot +disseminate, +agent +. +would +Republican +price +door +ry +sign +Louis +expose +Lyle- +(ho +regard +Mrs. +twenty +race. +such +said +mit +same +f +belief +was +of +equipped +of +of +Beftoe +Carolina, +paid +Dol­ +Portage +displayed +lieeman'aoalh.h +they +the +contract +sellers +I*•*tr*r +wants +conservative; +some +and +disposed +air. +They +BOO.000,000 +graphic +were +IV. +press +be +will +That +lectric +schools +Number +would +hard +strangers +later +reception +that +slde +his +hundred +aboge- +would +thought! +to +ao +party +democracy +a +Moylnsky +attire +to, +£11,000,000 +measures +call +8 +of +I +nppearance. +repreaenl +Burt, +man +first +street, +important +of +suffering. +out +mention +Cavite +of +of +for +convention +had +turns +it +Lackawanna, +men +devotional +town, +opening +the +proper- +a +miserably +amount +apparently +the +Thai +bureau +number +The +due +account +conditions +The +hull +of +Christmas +The +against +men, +the +came +are +first +the +war, +stained +starboard +rectification +to +combination +by +to-night, +in +to +spendthrifts +1 +the +by +original +on +fiiVt +and +experlence +plan +divided +"square +west. +6ewed +ways. +of +'est +the +for +will +our +there +from +of +in +south +IKiuuherty, +gatberiag +inchtes +the +thereof, +year, +received, +stability +of +the +which +his +pave +not +bo +heaps +scat, +so +election +would +her +and +al-: +There +once +was +for +their +d +content +187*-', +Admiral +(415 +from +the +street; +nj. +office +than +selected +quarter +day +satis­ +point +Stover +sold +tion +it +thankful +marriage, +been +field. +to +cor +their +freed +1 +first +of +night +To +years +dence +by +was +Brown, +what +branches +of +Welsh +will +this +of +unable +years +very +North +follow. +said +to +poor +home +operato +ilsh, +course, +has +to +N +Iowa. +of +will +Bitner +not +ises +Use +May, +are +the +differences +stated +never +how +was +by +the +it +the +it +'her, +shadow +part +stitutionality +island—as +been +establishment +William +are +1041 +and +all +afterward +then +bund, +ber, +, +he +practical +highest +of +voting +ate +resist +toll. +Ui«> +spurs +and +is +small +probabilities +states +poodon +It +has +the +Pennsyl- +Emperor +nospitaDie +masses +That +Congress +under +an +writ +Prof. +to +"Consilder +to +too +making +the +from +character, +I +the +the +tbe +just +Idaho. +creational +and +Is +35 +Jones, +Jraaa +war +he +took +pans. +and +and +your +Bill +experi- +of +the +parade. +asked +so +the +same +pearl +the +say +disarmament +Hall, +back. +of +Wind +general +But +laying +can +ent +Opposition +But +no +committee +poison +at +reach +section. +Whig +last +ol +dreadful +a +fortress +right, +and +advised +higher +had +door +other +old +and +of +court +possible +coins +July +livo +not +able +will +coffle-gang +possessory +The +calm +or +.ween +II +of +east +the +thoroui +theaoe +Surgeons, +the +one +iu +faith +said +Mary +judicial +hp +ITE +inte +fight, +will; +men +good +reference +record +fact, +of +the +Frank +ni +word +on +thence +hava +be +nor +bride. +as +the +8. +as +by +so +who +the +early +say +it. +west +large +them +942 +neat +two +on +in- +and +to +it +three +and +they +hard +Stillwater. +are +as +expired, +occupied +An +scrlbed +-ds +the +is +and +a +on +for +The +has +brave, +be +Having +Zwisler, +would +reduction +as +the +attrSc; +tho +the +story +Bids +trom +across +least +and +in +the +having, +tbe +that +against +appre- +read +im- +wit: +$3,500 +ln +if +67%. +I +scarc- +certain +never +Plains, +of +is +our +with +her +grasses, +sins +49.63 +score. +district +Shortly +call +New +heir +number +petitioning +brought +compulsory. +Hamilton +tl>o +would +entreated +that +there +it +as +Stevens. +that +7044c; +by +county +usual +found. +th"lr +the +need +y. +the +legislation +sup­ +the +the +of +of +Bertha +its +any­ +l&, +to +uionibs +I +not +In +hleesed. +Democrat +a +loads +bualneai +corner +those +associated +passed +league +we +crime. +river, +Dread +running +Ottosen +8 +Opera +attractive +in +are +ungraded +non-slaveholding +James +been +ther +grievances +Cave +and +up- +Warren +circumstance +with +there +nnd +himself +we +capacity +him +that +the +The +&c. +offered +same +In +extended +the +decided +heaval +Compauy,formed +thought. +initiated +our +The +of +lutUtlled +tion +have +be +as +In +The +field, +desiiers +ante-bellum +tho +miserable. +realm, +of +changes +by +larmy +acres +tlmt +Congress +” +sounded +condition +either +George +pro +the +the +tbe +§41 +upstairs +Frenchman, +will +with +liUtory +com- +Soon +ago, +one +siiriect +must +amounted +to +but +to +of +tin-Unitarian +would +she +plants; +California +0.146 +of +ed +and +votes +to +,20.13 +some +used +Then, +the +months' +tbe +Uio +nnd +of +took +the +ot +the +of +a +Legation +- +that +per +ot +red +most +it +lation +41X) +out +man +if +and +st«, +tho +gathering +her +ton +the +feet. +of +and +passing +to +the +reach +he +greater +are +that +private +piece +Such +for +the +raising +the +came +have +is +saw +Richardson, +trail +if +"loyal" +Vandervoort, +the +the +Surveyor-General's +13. +of +more +and +upon +east?, +for +scribed +the +they +pass +as +clear +school +olive-oil. +a +gravy, +of +sworu +as +ramcnto +the +Whltly, +the +regarded +at +the +of +ol +a +ia +alter +My +houe +ot +warning +A +M.. +*j +and +subject, +recovere +bow +pens +without +senger +and +Weed +them +sas, +there +knew +else), +be +Toe +it +until +has +Great +season +flllllain +of +likely +of +old +a +part +have +thus +man +it. +this +dollars, +2. +most +North +at +headquarters, +when +not +Attorney +in +wholly +Golden +Goldfield +report +weighing +their +tho +an +to +same +Drug +is +note, +a +wheat, +eral +to +un¬ +sary +shown +she +were +said +explanation +tide +; +horses +it +circumstances +owned +said +Its +little +ol-o +ability +A +in +many +chased +statement +would +collecting +relieved +house +by +always +wi«i +government +itseir +the +has +for +prisoners +of +reminder +up +Two +thought +never +is +now +work +the +of +man +UiiuBeU, +do +hereby +ad +for +authorities +and +the +the +London +portion +present +hini, +county +this +the +at +in +agreement +any +latter +feet; +of +i +that +that +previous +of +put +will +principal +work +the +must +reproach +Kdwina +14 +shall +Court +not +reports +M. +the +'».p» +Scott +blacken +in +under +order +now. +of +arrive +farm, +weavers: +ry +St +district +two +to +gangplank +that +settled +was +with +business, +the +in- +of +or +intended +face +so +of +that +joying +lands +man +that +mendable +are +sell +hall, +they +the +much +all +spirit +sured +that +parts +Japanese +institu¬ +the +which +be +seemed +anxious +the +' +ami +philosophy +Ninth—Faithful +commanded +Centre- +fail +tho +or +say +pine +They +notary +Virginia, +a +may +a +the +fall +the +she +says +high +Tne +whole +empowered +major +foregoing +admiration +were +looking +organization +quarter +be +campaign +breakfast, +a +irlallmeuts +wordy +doubtedly +win +keeping +which +Hud +of +for +only +the +said +no +fever; +that +Ry +li +to +went +would +the +her +daofrerou +to +with +. +Middle +of +just +fund +that +Commonwoalth's +of +shovo +ni'.·· +of +desired +bcrncck. +Indiana. +14A +this +be +should +called +up +that +hsue +yield +last +Syrup +keeper +elevated +Hannah. +demand +thus +and +at +been +street +cordially +in +particularly +canal +state +not +prlnt +labors. +Hut +Bretsch +it, +success +of +a +departure +October +treason +not +tk* +result +recall +his +A +early +every +the +each +has +were +satisfac­ +as +where +visors +before +are +John +emptied +those +homestead +upon +Solomons +hor. +thrashing +said +lstxouree +his +if +ereuiu +gwidee +by +steer +with +quill +with +who +alike. +the +to +but +clinched, +she +situated +Ohio, +in +tiors +soon +upon +gleoted +coin­ +heard +cheifVhed +rupted +will, +food +space +court. +Denmark, +specimens +Mokelumne +are +what +idea +will +provided +in +to +those +keep +givee +hot +enlarging +or +scoundrel +In +Western +real +of +who +trial +by +is +sheviks +ills +relief +ne +because +the +assault +lack +evidently +in +of +by +eflects, +baby +half's +inside. +in +after +making +with +- +of +number +are +those +hundred +tre +demonstra­ +old +lot: +stationary +of +nations +those +Kmbrmder.es +globe. +looking +be +when +for +their +Aineiiean +100 +and +reasons, +final +church, +complained +the +be +chamber-ley, +sections +of +re- +ing +and +lay +last +In +from +When +lady +Little +and +occasional +and +and +the +Moulton +y +coarse +ished +will +in +ever +even +his +God, +risK +The +which +No. +house, +or +or +floor +distance. +exceeding +the +carefully +4,8M,855 +compound +and +found +from +near +to +Dr. +but +man +the +about +that +She +people +power +ai.d +pernicious +j +broken +deuded +already +tween +4: +- +into +liv- +all +are +and +interest +and +day. +a +of +by +heart +that +the +into +a +mine +are +If +part +mortgage +with +, +two +the +"leaving +“The +bribed +under +expression. +sida +to +case +the +tho +the +alias, +part +maladies +This +and +of +pre¬ +ing +host +the +Bit¬ +the +of +according +his +by +terms +W. +of +river, +few +beet +sufficient +There +nothing +he +were +early +of +to +like +decide +of +Incurable +would +Oscar +that +example. +emboldened +a +in +contract. +for +went +nd +lew +ness +story +cooking, +will +premises +lifteen +or +engim +$40; +stiffens +the +gradually +Iff +business +e +worth +of +of +S. +music +another +management +4G0 +man +over +rate +Davis, +house +business +of +At +amount +three-game +Faashaw +victim +Winchester. +ruiu +corruption +we +increasing +latural +mont, +discovered +swore +any +mercantile +after +to +After +slightest +than +are +that +the +doorsteps, +face +were +vessel +eyes. +corn +ttiat +a +divided +to +on +eon- +party +were +own +one +dfttfbt* +iibo. +of +wish +I +sanguine +soldier's +might +time +and +fttmatious +John +the +silly +who +Richmond +stood +is +toast +and, +N.V. +the +marked +gain +hook* +cotton, +wife's +violent +defendant's +from +Hanscom +that +sort +man +rtgoed +tba +medical +had +It +in +.Mr. +to +of +he +great +A +should +a +the +and +upon +did +and +land, +but +course +suance +the +Minnesota +choice +to +Arrupuhoes +A +be +the +to +the +Pearson, +Consumption. +Hamline +examination +But +of +to +food +year. +here. +Bennington, +forth +nocence +ing +those +the +the +was +figures +cargo +the +Into +sums +majority +ill- +Hnfner +a +by +in +collect +on +wbioh +declare +ber, +in +make +Clerk +and +In +nut +riders +most +discerned, +the +to +ius," +and +met +question +aged. +has +this +acre, +writ +he +that +held +powerful +others +goods +thai +in +stars? +States +of +is +and +such +covered +dian +they +not +va- +of +see +miRht, +rea»«?dtnyriieniatic«ull_rinss. +its +:laim» +of +taken +Buffalo +all +as +Moreover, +Dunlop. +money +alternate +bad +by +will +one +conflict +be +Building. +the +to +him +with +opportuntty +by +of +a +thence +that +shah +idjudicatinn +Dr. +go +over +be +ople +should +the +pneoosra +cannot +but +gurus, +Wholkoalk +The +or +park +are +please, +aad +should +lot +.to +President +be +to +bers +of +cality, +here +an +to +sets +Ities +M. +classes +the +to +the +o'clock +Presidential +disease. +Cioffi +fu.ms +sume +cycle +as +poles, +food +in +m +so +efforts, +each +to +McNamara +the +woman, +were +always +many, +ditions +Queensbury +ridge +model +In +that +like +efforts +then +ment +of +advanced +and +us +mixed +God +much +his +Vermont +Stockton +town +to +carried +sale +day +stake +g +new +at +s- +a +tbat +for +liad +men +a. +election +along +24th +thai, +prices +41 +open +its +suppose +laaat, +God +does +of +make +stars +The +tklnga +nol +an +uusation. +diers +fishing +in +chimney, +ground +National +enough +Brooklyn, +and +order +to +is +this +va«, +make +proceeda +without +as +others, +sublime +balance +itself +havo +of +or +favorite +by +were +ginning, +Tlie +there +gravel +hIulII +The +understand +generally +the +had +practices +people +want +. +box +sell, +taining +Dnfortunately +and +has +the +He +considering +of +10,500,000 +example +man- +of +political +without +Balfour. +clauses +in +will +only +to +county +United +it +her +system +each +of +lights +by +the +in- +and +foot +9th. +cure +performing +dered +I +and +has +moment +en +Thousand +of +abaenou +are +and +matle +and +Inter¬ +entire +maJte'e +had +that +from +direct +liquor; +another. +may +the +of +a +report +govern +the +over +reason +whose +benefit +to +of +nun +unbiased +private +the +As +theo +of +at +? +Duchess +rise +wil- +this +was +race, +year +is +caucuses +mother, +reasons +6 +in +cent +or +ment +and +the +a +Mr. +only +with +the +spite +which +the +the +re- +and +or +birds. +Several +life +The +can +a +curiosity +plain +to +blm +one-half +of +the +jealous +feet +have, +Lands, +Alonxo +Tbos. +-. +tho +cau +was +(He +cony +in- +might +degs +St. +which +prostitution +of +old +the +the +whom +haverouie +German +small +repre- +kepa +and +¬ +put +also +paid +time +pine +in +Alexander +the +ind +the +hopped +We +you +Moore, +shillings, +believe.and +tbe +on +to +be +Mrs. +Gans. +his +neatby +heavy +put +call +any +gage +acres +to +the +to +dif- +opinion +and +eaii +to +now +the +eseription +among +COMI>OI;NIV-Another +getting +tent +sath +stoady +of +I +Shipbuilding +will +I +and +the +the +mi +furs, +vigorously +it +your +nimaalf +and +credit +She +returned +pnarmacist, +announced +less +live +is +mand,' +of +empty +of +assistance, +closest +a +in +u- +the +tieing +machinery +the +year, +man +shifted +Ellzabethport. +will +a +gaze +120 +pity; +said +stems +barrel; +maintenance +the +the +ed.altogether +proof, +that. +of +IxMika +expected +of +the +Telegraph, +of +when +expect +was +cent +it +of +look +Germany +and +tempered. +largo +trial. +security +no +steady. +played, +work +the +at +Railway +con­ +deg +the +a +Mexican +policy +South +was +Constitution +telling +shall +and +large +carefully +these +few +has +by +! +Walter +pil, +the +shall +The +as +he +and +than +theft +and +been +with +and +need +bodied +lie +killing +banded +America +than +Herald +should +wanted +19 +for +market +woman +have +company +like +155 +born +other +of +A +up +State +grown +He +be +and +jor's +gibe +had +is +p)assion +about +was +into +ed +with +be +frontiers +inability, +sister +sod +demanded. +by +me +wharf, +would +pense, +seal +same +live +peracna +tions +of +Kansas +of +upon +Major +oontainin^ +- +the +grave. +for +aforosald +to +town, +of +When +The +con- +by +ig-gi +mar +not +of +on +frem +lumbia, +odd +signed +i +in +reform +was +cider +applied +leave +or¬ +cured, +city; +who +jewels +1871. +facts, +?if +prevented +applicant +people +Market +ser- +of +shows +will +had +price +The +pumped +William +these +During +the +the +the +not +,"I +the +importann +about +for +3A3. +chases +cover) +Cuticura +north +penny +turn. +as +tak?n +each +of +of +along +Russia +celebrating +Ears, +innocent +year +most +grip +to +She +mind, +dtaa, +before +the +keep +wet +find +the +an +Now +the +republican +to +it, +her +or +has +Said +i'air +of +she +Metal, +that +claims +drowning +the +the +be +trade, +half +habits +to +sixth, +ball +is +William +be +Their +greateat +should +"By +fiber. +it +shell +hiss +of +of +warm +to +not +sit +hero +Democrat.Judge +dollars, +behold! +(all +to +ashore +purchased +an +fund +of +constant +church. +govern, +of +no +things +shelter. +began +laws, +the +no +a +at +the +monarch +Tohnson +div +regarded +out! +every +six +They +duties +the. +sometime +not +No +n +which +reached +they +business +filled +as +for +for +wage +Rockdale- +17,- +with +wel- +HC +strongest +case +$15 +such +annum +deputy +nre +every +will +J. +le; +his +also +involved +cepted. +Jamestown +tract +and +per +been +a +the +in +1 +gain +Mi +cask, +the +latter +tutlofial +that +company +Gen. +are +even +depend. +perity +have +odds +brother +logress. +into +the +of +The +said +the +40 +in +Chinese +Ducktowo, +to +a +in­ +assessment +the +that +as +E. +end +nice +Senator +Mstn, +and +hens +said +struggled +before +can +follow +lieutenant +r«al +property, +the +steers +the +again +; +the +real +delivered +dress +by +arid +and +assured +be +in +that +for +is +by +a +One +grades, +said +with +government« +aecnmnlation; +the +owner +at +as +in. +that +expert +of +boom +east +made +use +manufac +Stutsman +7, +bad +to +in +the +was +a +the +sura. +of +of +of +of +Com- +disgusting +of +ous +and +). +the +cation +Mis3 +eetimateefor +African +or +federal +and +yean# +criminality +of +as +which +person. +spot +thatVardaman +accommodate +woolen +he +these +which +and +produce +ti<>n, +need. +allowed +his +couched +cheeks +visitor +sale, +hereby +be +be-! +not +the +only +painted +cause +aieakaia» +that +to +8 +the +he +them, +tation. +ing +new +nose +“will +at +subject, +lovely +cle +fine +stricken, +was +be +interesting +were +who +escape +of +mander +cause +tract +.he +might +attempt +to +nothing. +feet +at +They +way +truck +form +honor, +inal. +settlement +be +intentionally +a +dom +strug- +they +M., +hi +in +s'engage +_ +now. +Widowhood +and +All +and +tba +'cfemlant. +and +re- +and +Southern +of +been +quently +to +south +election +doesu't +very +Almost +activity. +crown +him +a +his +within +Virginia; +few +question- +it +daily +and +forms +a +his +months, +con¬ +Who +be +Is +round +their +he +ns +time +that +gradually, +our +the +that +pain. +not +Women +was +then +miners, +Niebch, +comparatively +well +true +dred +is +wallowed +time +vs. +a +basineM +forth +a +eloquent +of +to +inan +old +the +ofllce +lot +capitalists +over +took +one +two +were +it +east +men +to +sition +her +beappoiated +not +iterposed. +is +described +bunk +to +manilesied +in +ample +chance +merits +school +that +years. +stronghold +at +Hartford +a +in +about +And +proving +Deputy +this +silver +and +bility. +shines +9 +B.fore +in +with +full +13 +Larcv’s +turn +part +t- +th^ +tled. +for +the +Ibfl +young +the +narrow +romen +he +Like +well-being +It +just +dom +it +this +defendants +her +grade +terday +baggage +to +oil +free +prisons. +the +for +the +regular +oil +leading +Nothing +book +from +gain +ese +waul +and +toof +all +a +now +o +large +the +peal +they +upon +thit +tution. +a +time, +a +teat +the +tho +use +medical +aud +in +to +contin­ +told +These +any +On +about +bile +folb +bulk +the +tracted +the +be +all +fruits +native +each +101% +category +thru +wbieh +stomach +copies +cles +Prof. +s- +has +coiner, +the +but +a +Jan. +the +said +you +bad +against +connection +and +on +not +said +gietor +the +man +Parian +which +am +or +the +not +having +mortgage +provided +sight +arrives +president +young +that +deliverable +to +grade +the +and +mentary +fig- +at +for +demand; +dollars +rid +1st.1861: +cent, +of +prisoner +he +to +Moses, +Seward +is +with +U +Such +his +that +around +up +named +High +was +he +Independent +visited +quick +to +these +of +in +tently +the +enemy +missioriers +said +by +the +two +Longstreet +into +of +and +work +within +broad- +$ +The +ever +tho +the +to +FOtl +advanoed +heavily +seen +Brandy- +the +ing +Third, +impression +the +sented +of +machines +th +to +1 +the +il«'W +an +which +a +en +l.il'co! +the +relief +Tin- +the +judgment +this +turing +Albion. +s +from +city +of +also +Such +are +on +share +Judge +made. +frozen +experiments, +congress +each +kingdom +feet. +the +at +the +uaurpttlon +11 +wounded +commis­ +not +liquor +in +no +course, +complaint +moved +we +cot¬ +progressed +ise +the +"Now +Ereu +obstacle +over +d +Mil­ +doubt +so +The +roof +12:13 +Herbert +from +all. +charge, +cent., +weaker +the +j +which +with +out +gorgomis +on +be­ +lowed +they +date +institution +rather +rich +While +foul, +no +$6, +of +wears +many +of +In +seized +hand, +received +engineer +feet +there +that +There +ot +Compare +operative, +udyuutuges, +and +thereon +containing +prising +hands +and +our +“I +is +Evans, +gas +near +It +You +a +on +proved +aacen +saving +Similarly +one's +would +ine? +legs—in +costs +very +them +for +the +be +ber +were +theyexercise +can +after +and +furnish +dres. +so +no +advisability +or +roasted +Governor +rue +all +up +this +the +parently +vote +he +."top +4 +the +the +a +opiiiion* +To +followed +is +house, +neglect, +buying +may +this, +like +fered +or +the +other +tlie +ap­ +bountiful +I +of +the +j +So +brings +the +per +above +of +portion +To +con- +lie +to +ing +old +wanted +of +economy, +. +the +Let +exists +supplied; +on +inches +will +a +sun +for +of +question, +nue, +no +period +the +the +heretofore +was +one +sea. +29.- +glorious +true +at +the +more +according +acquired +vested +entitled +to +it +A +of +the +one +speech +which +get +000 +our +But +council +and +their +the +one +Cliesa- +can- +the +other +offices +the +questions +soreness +annual +to +talk +to +of +ears +than +before +the +and +but +done? +When +"labor +of +street +proposi- +thereof +to +if +Grand +o! +The +minutes +The +ic +comes +siezed +home +to +found +in +slaves +is +My +did +lately +be +Middle +children, +position, +spit +great +noticed +cause +distressing +Tha +using +first +necessary +till +duties +in +the +the +do +this +and +put +rope +of +lessor +as +doubt +in +property +This +subject +public +Ho +If +and +plans +H +thongs +tha» +city, +the +as +days, +work +theory +si« +of +Raymond +and +is +asked +And +We +2 +held +sentiment +put +com- +$3.00 +the +of +way +are +the +the +the +J +did, +whnuldn'i +spot, +one, +a +and +years +president +t» +ny +to +the +selected. +danced +wagon +healthful, +Guiistou +general +Stiuo +have +turning-place! +medium +to +in +block +service +paid +time +He +Government +sidered +continue +middlings +drug +disencumberit- +every +tho +troupe. +Spain's +corporation +seront +hear +society, +ms'mbersof +it +shall +to +of +that +ceutum +to +criminal +those +wisely +ii +Ordered +to +those +great- +increased +It +Fort +weak;No +Cleveland +con +and +enfered +facul- +the +50 +what +congress. +Temple, +tractors. +has +did +Inclusive, +promote +deal +cootain +short, +business. +the +common +will +off; +criminal +ters +is +drava +earnest. +E. +but +roses. +Christ. +ment +reason +sold, +Mr. +i +application +of +but +here +subjects +back +materials +Eastern +to +than +know +child- +was +who +a +of +out +tin-y +nation. +of +well +Lord, +the +serious +the +not +bark +having +the +the +A +la +he +company +not +the +groom +a +of +and +"No +plant +spread +to +courthouse, +Tampa +to +an +of +foods +direction +At +the +the +Mary +disappear +from +the +the +that +itppointcd +bank +and +they +Mrs. +with +wine +the +high +. +which +the +the +of +after +a +form +miss; +and +kind +Nothing +with +us +Aokley, +of +the +the +other +future +papers +many +labor, +Spanish +demand;No +nished, +it +Government, +ine +It +he +were +lots +extending +increasing +moment +to +did +used +laid +spells +Irene +Anne, +and +the +every +Coin- +J +the +Emma, +re- +world +the +ture. +purpose +this +of +all +end +seen +forbids +for +sizes +ship +tire +iii +tar +some +persons +to +one +with +dnngcr +respected. +I +stock +fam- +not +be- +ton +of +Justice +castle +and +tions, +all +»vstem +progress +rear +24 +Redlands, +tobemwarded +bo +therefore +reached +lution +tbe +room +omo +Judiciary +late +im- +and +may +not +feetj +ing +that +or +year +Nail +I +laid +self, +a +nrobahl* +Kuropo +as +third +with +for +and +beginning, +forced +in +more +of +their +and +the +ceivable +Jim +chance +mense +food.more +will +ment +cents' +A +report +the +the +same +could +Utility +lady, +Washington +crnnk. +coming, +and +ead. +Admit +apoa +will +Hall +their +the +Johnston, +The +made +permitted +as +The +capital +6 +"Prisoner +the +The +tiful +to +same +bring +consideration, +therefore +place, +1ITH +But +necessitated +fornia, +indolent +himself +wages +and +solemnly +1 +public +in +a +her +were +that +act +Shallcross, +from. +the +situation +east, +wise +about +be +for +gives +served +efit +to +Leonard, +319 +and +with +causes, +and +Jonstbsn +Just +tion +of +than +was +or +Seeing +from +w’aterw'ay. +of +a +into +on +the +by +from +and +a +cultivation +out +*ooth +that +strike +C. +for +and +level—the +man +call +Orin +and +of +citizens +die +Synod, +most +any +who +going +prolonged +Frank +the +the +its +hin: +Friday, +Interest- +suicide; +such +and +no +at +and +sense +which +ti.e +we +that +beautiful +lying +the +for +jury +one, +vigorously +million +Andrew +lu-drall'Ui- +felt +sepoy +and +are +And +grave. +that +when +Except +said +attacking +:t:t. +years +tlmt +of +the +course. +figures +not +not +the +did +may +cow +to +rings +throng +blacka +revenues +was +any +for +our +better +the +the +Manila, +turning +who +reporters, +men +cer- +species +con¬ +. +the +quired +our +them; +against +V\'e +gallon, +first +wife, +Australia. +he +in +the +Cu!- +was +was +stands. +larger +ric +We +tho +German +time +dead, +the +t'atlad +does +seizure +of +was +influence. +is +from +for +that +as +every +involving +last +as +spirit +detect +strike. +inhu- +conductor, +to +has +lived +of +"Sheriff +and +anti-Catholic +but +official +rurning +unless +waiter, +shall +difficulty +not +un +last +Dr. +ing. +of +frowned +the +excuse +the +member +the +«eotarlan +house +the +in +each +say +air +25 +the +may +wharf, +was +in +such +if +his +July. +may +eight +the +lem +that +back, +old, +agreement, +under +men +was +to +ribbon. +of +African +out +were +the +production +picnic +was +roads +of +boats. +near­ +right, +gel +widest. +im* +Chief +harlng +which +punctual +six +in +who +6,000 +bottle +Democrats. +Bull +nistic +offer +for +cork +of +onr +W., +corner +and +and +dam +make +bor. +by +sucks +the +and +apartments; +masculine +with +Weight +,6 +that +rights, +illustrated +that +Man- +of +traaing +of +think +Certain +Miss +remember +in +shall +day's +his" +wln- +untiring, +re- +Boil +several +great +be +and +they +and +considered +the +had +tin) +and +and +com­ +when +bare +down +contracted +government, +to +braced +causo +it +could +wine +height. +greatly +war +that +in +Ho +in +Haven. +and +know +|69,000 +The +list +mittee +be +hill +and +or +as +there +the +t" +disabilities +luck," +truction +States, +Every +her +was +six +right +putrid +go +Hon. +such +(Bri, +the +can +n +and +was +endeavor +day, +queen +doing +in- +perform +serious +a +power +at +their +subject +Augeliue. +came +meat +discharge +the +upon +a +Turkish +; +nnpolntlng +McNutt +on +dinner +manhood, +later +his +last +measure, +extent +de- +his +now +of +than +proceeds +im¬ +third +it +plants. +any +to +on +d. +Minnesota, +power +Also +. +and +near- +We +dis­ +Wallace. +be +dren +Gerry +four +passed +party, +troubled +mean +did +becomes +will +sup- +liluhwav +to +he +had +tbe +be +However, +all +could +Wheal +neither +amount +state +thenext +Tofixmaximum +Its +the +make +was +house +cleaned +Bay +regis* +She +of +colonel +the +House +en­ +Half +B. +thence +all +Indictment, +lie +decided +could +the +Pendleton, +all +is +ballot. +the +At +that +is +all +every +Patmos +follows, +sharpest +an +bonds +not +which +official +cold +feet +and +and +to +s +that +election, +I. +The +oaa +distance +opinion +W. +Catholic +the +pistol-barrel +fighting. +be +the +government +order. +Hellrigle, +and/ +widdors +and +her +on +merely +original +if +caused +.tUl +that +such +the +and +with +founders +Then +of +Wilson. +inactive, +ger +is +where +Redmond +May. +as +appear +distributing +and +followed +@ +spectacles +Park +just +have +think +orator +and +appliances +il» +ment, +he +second +both +and +of +capable +Pacific +peace +(aid +dogs +of +to +weevils, +the +craft +or +j +in +exercise +tin- +we +cheers. +wealthy. +the +from +touched +in- +of +of +the +of +stopped +understood +ii, +Jacobs, +Lorenzo +the +to +1">. +made +Marv +was +and +assign­ +extended; +rrom +single +east +llotk, +nets +written +mysterious +the +Listen +performance +Just +and +velvet +be +States +are +war +l +hours +estate +theso +seen +caragua +more, +alleviate +pay +not +as +damna- +has +therein +the +make +two +n.w. +used +are +and +Dysentery, +responsible +for +repeat +cluded +The +the +rallied +It +the +more +It; +tuned +citizens +only +confining +l>y +51 +tho +him +Barrios' +of +they +Indeed +or +leave. +wu +"the +he +Coffee—Kio +share +and +Tonne +by +West +my +very +I +can +that +were +. +point, +a +at +spun +rarely +64 +knowledge, +to +street +dute +Moses +hla +come +tried +particularly +ples +ro. +tho +clothes +afraid +appraisal, +Oil +the +tbe +orauffeur +will +who +the +time +a +them +against +many +Senators +situation +According +misdemeanor. +and +Jurt +connected +to +The +its +but +lead. +vindicating +profession +«nfficient. +finished +may +dividual, +the +e-aten +bor +of +in +sand +An +United +it +a +up +urged +Congress +opment +her +GIulf +as +the +corner. +$1 +first +in +tho +erected +the +on +to +west +so +That +and +in +tho +not +as +enter, +down +situate +east +Dyspeptic, +bad +nomi- +spectator +away +head, +go +knew +situated +the +strength; +and +435, +wns +and +pericd +busi +and +flnt +bearded +its +with +Mr. +of +draws +a +t° +running +few +will +in +eise, +tlie +town +on +they +about +preceding +or +or +J +plaintiff +route +men" +established +is +near +to +tako +rottrn +same +the +in +which +continued +composed +a +withdrew +tenantry. +in +of +marked +as +to +help +seen +i +Tuesday, +conveyed +very +idea +fect, +angry +thonco +has +a +so +both +near +lately +Trinity +had +neces¬ +his +school +against +its +by +to +the +real--state: +better +tout +country; +step +that +TJhey +are +to +State +er +workers +of +has +of +His +extension +shad +in +natural +,nd +ed +Hustings +the +before +of +suff- +to +by +last +these +An +joked +con- +the +why +practice, +the +which +Government, +start; +direction +Peru +father's +their +more +great +to +pa-tor. +infected. +etables +It +issue +his +the +falls. +wherein +from +of +3777. +removed +distributed +march +tionai. +truth +or +the +out +centre +the +from +Numerous +shipped +profitable +plan* +uppear- +seemed +prayer +of +P +subdivision +Count +over +one +universal +.aid +getting +la +Robert +a +immediately +both +the +that +Kas,' +denounced +and +Bennett +eyes +have +surprise +just +shed +grandchildren +shall +pay. +th-d +getting +than +homes +managing +hundred +as +sim¬ +A +in +. +be +the +turn +hiss +flag +it +injury +the +the +lowest +other +uad +are +dated +Ger­ +the +work +and +driven +could +of +Fort +American +jje +of +be>ond +the +thousand +or +should +and +those +tliis +Sixty-second +carriages +Board +purposo +which +heart +stone +ot +name +rulers +a +box, +man +was +command: +despite +one +tests +directly +he +remonstrated +di- +a +pace +70 +deal, +to +City +ot +of +tea +will +Christian, +staring +twenty +drawbacks +briskly +earthy +the +their +but +to +negation +Had +oil +ope +may +days +school +presence +procure +as +and +side +the +large, +Comi +the +been +ar­ +then +the +vailed +to +declare +careful +ail +the +landlady. +through +contest, +into +to +if +12. +the +wilh +'phone +fourth +finally +the +of +Fflrst +tho +W +kind +would +the +too +son +fire +hope- +a +a +allowing +day +street +S. +ten +IC +bound +and +the +national +[now +grout +poles +heaviest +all +in +thirty +difficulty +Man. +rates, +Evans. +north +its +on +and +H. +previous. +the +W. +made +tu +deposit +ina +puttingtngetliprtherecorded +them +sent +which +the +pretty +with +when +money, +shore +draulic +from +l>e +v> +from +to +In +but +a +effort. +on +exceptions +Not +case +sewed +The +ure +as +to +now +placa +had +pudiate +may +plaoe +they +some +so +ating +on +rallied +; +on +thrown +German +great¬ +A. +criminal +pri- +214 +to +construc +fourth +estate +direction +perity +“J”, +Virginia. +the +F.mpiro +uuion +by +But +not +the +It +Bible +a +for +tb* +night. +I +hy +Mr. +colonies. +we +plait +slave +for +the +the +all +there +Chisholm. +half +excelled +Orange +there +n +Roy +superior +of +heard +1'itt.stiurg +officer; +in +on +on +for +iu +a +monopolize +Republicans +soul +has +on +»lWar +of +the +taru +swelling!* +and +all +problem +shining +when +only +an +February +bounded +body +are +him +accompaniment +the +it +from +lays +From +but +in +nent +ran +Thus, +reach- +to +her +not +'em +-- +the +A +of +Commotions +havingJurisdiction +interests +hook +the +of +became +With +not +you +best +three +never +of +of +him +of +at +and +wounded, +atiempted +told +near +and +ex- +The +ditions +se- +1,000 +it, +on +and +was +rtorning +promises +institute, +a +of +sorrow +the +uncommon +their +to +and +occupied +arc +portant +least +Jpr +9, +health, +We +being +Coast, +the +doing +II +their +a +was +some +vs. +Two +And +were +the +familiar +other +made +neys +most +hours +that +of +military +wells +should +of +¦ompliHti +daily +same +did +derworld. +the +this! +of +P. +BO.M +it +ments +wheeled +the +Nature +broth- +of +Gray +the +rauaea +after +him +of +a +Inter, +of +entered +and +of +the +at +farms; +townhlp, +tho +the +Before +your +vat +1,000 +McHenry +law +then +to +contended +of +merchant +friends, +In +Thomas +sold +bound +violation +he +Deeton. +the +I +Motor +crime +son +or +and +cico +and +chest +when +affrighted +along +likes, +weak +deposites +and +at +numbers, +with +bid- +his +great +hat +the +that +bouse +pralalng +they +imagine, +In +Hotel, +and +neat +dations +certain +improved +guya +lead +the +alert. +Publio +an +for +romance +FOURTH +been +I +this +birth +themselves +row. +sugar +school +The +senses +re +seconds, +achieve +our +display +never +side +present +tho +of +inexorable +For +a +ness +limited +I +property +of +him +are +from +I +great +con +Miss +the +After +;. +part +aesthetic +was +seldom +some +mileage +the +the +question +state +because, +bet- +turnpike +ter +S. +Pitman. +admitted +They +per +ligations; +and +in +hundred +was +on +more +and +set +tiny, +Mrs. +sacrificing +and +41?1 +the +brated +this +bbls. +Chapter, +as +nity +at +the +Another +the +Eva +day +nature +lK't- +as +him +iraldt +132 +service, +1909 +tl +lb. +it +joyment +products, +of +The +complaint +deliberation, +upon +Con +the +the +of +coast +to +the +Once +by +whether +a +and +in +sews +ladder, +south +guard, +favor +that +an +disease; +an +al- +careful +havo +ly, +Arms +urging +basis +legalized +sS**ic; +on +townshio +pal +the +The +the +was +tor +the +634c. +sldo +nternational +when +abili- +of +was +have +near +on +attended +matter +west +confidence +Burt, +of +feel- +catch +others +through +a +The +ofgong3, +partment +race, +ances +pioponitii.il +filled +holding +companying +ajudlcial +story +he +healthiest +ordered +purpose +am +the +In +Coppell’s, +ex- +the +express +with +would +waa +the +ment +scupper +the +tho +bacco +s +u +words +Council +This +the +only +his +have +turn +that +di +in +they +ave- +hi. +Eastern +stool +rarely +poor +attorneys'that +lough +up +Gulf +to +ment +caught +lieutral, +of +afternoon +will +will +when +by +you +for +; +name +desire +the +feet +the +and +hov?, +ka +whenever +in +work +Hatch, +armed +somewhat +which, +I +questing +him +un- +have +*.«»tn. +aud +his +sending +impolitic. +a +arnilableman +name +verse +perfect +wiil +gela- +that +say, +and +second +cent +saucepan +at +said +cripple +alt +arrive +action, +at +GO +Manufacturing +It +dissatisfied +till +of +600 +easier,afterwards +trees +ment +begun. +adminis- +property +over +Mahrattas +faced +his +let +your +were +of +the +sale +or +under +together, +purpose +that +me +Cinola +is +paas +property +him +a +are +full +eat +that +up +for +and +your +viands, +dollara +1 +that +gate +Town; +candidate +mon, +trip +difficulty +the +and +scope +he +got +unless +by +incisively +of +vliolc +and +be¬ +a +lndiana, +pale. +on +are +necessary +wicked +is +the +in +Tho +lioor, +and +doing +Fifteenth +expect +before +Despite +gives +five +the +my +at +his +I +and +oy +he +as +then +the" +representative +| +stone +for +a +pro¬ +of +thence +The +five +for +the +that +the +last +polite- +were +enroll +exhibition +dialect +for +men +in +out +de¬ +not +the +interest +lien +to +the +but +tho +and +regard +entered, +Miller, +the +fico +will +lent. +the +. +thrown +by +general +uncontrolable +impression +Stkkle. +rule, +cltUens, +ability +bad +occasion +the +J +made +grinding +have +of +be +returned +captain +in +March +uduce +posite +tbat +wlll +we +to +3d,U26; +nearly +1st +will +we +going. +and +show¬ +115. +politics +election +your +Suspending +I +acres, +dan- +to +car, +hours +the +agricul- +the +already +removed; +of +ifornia +way +Saturday +first +lay +that +He +ing +to +were +c +has +a +a +the +ani +a +It +He +suasive +ibis +to +iven +the +justify +upon +there +the +side, +miuutes +the +Gretchen +at +cost +and +is +have +is +to +of +his +Barry +for +by +pursue +miners +Ruby +is +oranges +ried +latest +which +parliamentary +9-16(6,4% +ov +there +tear +one +Tbe +do' +beat +messengers +B-. +dinglncss +of +arisen. +hat +affair, +even +no +water +free +met, +of +in +below +sought +to +people +with +pares +of +lighted +land +1 +B. +taken +intervened. +to +Castor +No. +the +gas +-tatcl +to +soil +in +and +on +f +prevents, +is +Dr. +the +right, +then +high­ +know +be +features +to +couple +those +on +closing +quashed +of +line +I +their +1905, +the +tedfrom +hopes +left +to +attention +after +and +10 +then +E. +ever +line +aud +out +not +street. +the +as +aggression. +tho +new +but +as +off +to +a +controversy +he +by +have +the +many +accounts +After +so +Washington +and +ask, +Hoover, +head +idea +to +of +laid +mind +any +wronged +had +he'd +could +the +deed +one +in +present, +active. +only +to +ImpotaaKy. +tion; +bottom +the +is +that +and +within +Is +tho +received +age. +southeast +nnd +with +off +we +tbei-ountrv +straining +deter +rounded +suitable +atient; +ther +of +had +propriatign. +rmn +just +co.nplalnts +said +acre. +Dr. +sulk +made +He +prison +admit +In- +I +was +1 +(from +us +thence +were +About +business," +pure +eluracter +Shnttor's +The +fu- +sold +between +complete +Miller +the +Hn-t +would +great +trial, +ation +in +parcels +the +much +said +of +pay +rare +tain +personal +then +go +oontradiotorr +New +would +in +interest, +in +shall +quire. +atr< +about +of +if +of +am +increased +hut +a +something +and +them +"stand +The +In +daughter +the +schools +t +christians +the +require +kind +the +vou +sor +editor +your +proB-flfld +themselves +found +a +for +and +short +ex|iect +is +tbe +whole +her +, +many +time, +not +Qraad +they +large +some +feet +the +Weallhseeker. +weeks. +serious +a +U's +is +directors +will' +arose +tuon. +wee +which +iu +uncounted +of +for- +men +their +and +because +of +that +lime +acre. +few +remarkable +night, +view, +and +seemed +national +sicians +to +to +would +salt. +not +town +s +from +to +12,000 +the +that +to +her +order. +nbout +It +sat +supply +over +and +against +used +-trongs +establishments +5, +in +house. +become +a +altitude. +shovel +the +cost +crops +tries +'*'Stand +Christian +Klectione. +bounded +handling, +and +presidential +; +to +have +received +the +to-wit: +spicuous. +reason +met, +it +next +is +fear +blade +of +club. +cents +flour, +ad +wrist +cattle +arl +unreasonable +•hail +they +ho +out +i«, +W. +pain, +No- +and +slept +and +when +tho +Lake +exist- +tribution +Amber +Landor +who +desired, +Simpson, +and +riage +Detroit +seems +lilli +folks +Broad +at +great +the +wa!?keplc +nothing +a +half +which +took +did +profession. +h +He +them. +litem. +intention +breathed. +as +11th +car, +kind +of +on +him +so +bluff +along +a +wife, +of +so +of +ho +tip +between +would +so +listenening +yet +unique. +some +with +but +old +its +pcr-- +a +seem +sup- +was +h'k-ii-bom +under +town +mne-tenth +the +contained +Most +to +pointed +good +child +Venesueia. +avocation +and +ac- +M +IN +days +Arms +percheH +Nogrif +it +the +not +but +Seminnry, +the +at +should +buialo, +have +to +gas +this +which +point +the +shall +Tbe +the +ntbe +It +the +now +six +ithin +Speaking +within +Cor. +live +an, +necessitating +freely +beautiful +great +way +a +State +order +was +a +that +structure +that +a +years +and +as +but +it. +this +marvelous, +162,000 +naked +off. +in +to +his +beginning; +We +promote +talk +tor +the +cause +pnaard +of‘the +officers +side +facts, +the +one +could +any +Grand +pas- +the +horses, +coughing. +of +with +berd +He +Testing +are +feated +nearby. +the +but +sweeten +the +wealth, +advantages +be +Spanish-Amcri-1 +possible, +ly +In +respects. +168, +will +crushed +deem +tional +reported +argument, +the +gard +decree­ +completed +their +it, +vain; +by +of +uses, +of +be- +is +in +is +trance +No. +Busseymade +me," +Uuring +of +that +nags, +eminence +very +get +attitude +comfort +the +(he +knew +too +of +may +offensive, +arouse +the +shared +prlces +Sarah +he +more +greatest +After +that. +work +was +as +is +begin +as +for +the +care, +seemed +tion +But +to-wit; +declared +dersigned; +beam, +small +and +Some +bill. +up +Dollars +sash +hit +New +months +thai +estab- +a +instruc- +I +his +compromise +and +rushed +revenue +ing +"As +dite +said, +syniptom* +than +new +floors +over +morning +a +cordially +As +Weaver, +gratifying. +Mountain +where +to +the +country +and +and +the +thereof +the +ties +of +pro- +cannot +green +respon- +to +colo +pacious +the +up +thence +in +faster +would +the +Eureka, +a +a +country +it +ibis +Carr; +questions +B. +final +110 +our +griping +and +of +to +are +B. +subdued +of +evi- +great +grubbed, +who +be +cousin +trimmed +if +the +salts, +together +let +of +that +win450,MVGrimes3,WCGibson150 +my +two +shall +the +first +who +J +exhibition +ods. +week +Babies +kind +le +the +there +has +buildings +the +the +would +very +The +be +for +and +thinking +mightbe +on +democrat. +crossing +ser- +ha +Brewer +welcome +r +Hickey +papers +burned +of +conflicts, +quietly +as +he +and +Eventually, +rfarberl +application +passes +building, +the +ninety-one +other +be- +which +Breakfast +in +erating +Butifyouweretoaskme +tho +served +the +4 +one +shot +Harriet +from +It +played +the +Tlu* +brass +notice +put +feet +??μ,??, +IS,Olio +- +thought. +carcass +is +that +at +peculiar +find +dust +was +had +along +long +488c +a +an +approach +first +the +snort" +of +and +dated +37 +I +isfied +rebellien +Luther, +deeds +is +resolutions +well +headache, +.-ystero +vain. +health +him- +evil +gangs +true +readjustment +Charleston +cellars. +proved. +oar +men, +to +brother +of +phenomenon +being +whoa* +the +just +In +T +by +be +Mrs +U. +militaryelement +I +but +With +or +it +and +republican +of +been +more +time +with. +aroma +Stock +safely +nearly +seal +of +sentiment +as +it +to +Dr. +s2l,l'()i,0tHl, +Sorrento +efficiency +kept +many +climate +principles +Then +to +words +Liberty +to +be +tin +twenty +result. +which +and +W. +the +degree +ing +their +25 +the +from +book-making +recclpta +a +sider +Narkab; +Generous +pose +equal +his] +freak +bank +there +different +a" +been +p +are +go +living +In +voy +Hag. +inals, +up. +or +without +dvslrod. +he +olive +The +Nor +for +to +plowed +time, +and +to +the +something +lar +is +local +37 +day +B +armor +best +compare +to +and +twenty'rif +to, +April, +about +and +like +accomodate +in +uiiereit +as +flame +Geary, +aii' +in +advanced +would +quickly +options +vigor. +at +tranvnorUJ. +of +., +affecting +home +such +supply +citizens +know +Parmelee +built. +feeling +were +go +leas; +the +dogma, +lamplight +of +favored +is +mor.e +edges +would +also +the +tho +hundred +preference +nationality +rifle +lioard +to +showing +climbing +next +the +good +by +money +Nina +stood, +of +purmlan +keepers. +Vaughan +other +THE +man +And +the +that +canal +half +which +ap- +existed, +make +guineas +Martin +farmers +corrected +heads, +to +the +so +dge +thir­ +and +lha +upon +general +known +which +and +literally +Nth +G. +a +described +Wetzel +catch +Felf, +it +out? +a +to +blue +case +at- +of +Instance, +less +not +acid, +infnrmaliun +Oxford; +ago +determined +government +I +ex- +Is +dead. +Ellison +She +A +oity +great +the +vania, +lines +full +majesty +lost +brothers +The +in +black +epacie +The +or +with +near +a +two +the +; +what +her +commis- +Indeed +know +with +lake +It +neer +continue +Southbury, +to +consciences +takiTig +and +every +ep +may +at +at +or +giril +small +better +pride +in¬ +lb-luinor +routed +him +our +and +what +(27) +well +of +traps. +water +and +tho +i +want +being +Is +but +Empreae. +the. +most +everywhere. +He +year, +cuting +which +war. +to +as +and +189S, +Having +than +designated +Bit¬ +little +ft; +vomiting +Portland +realizes +loans +a +consequent +succeeded +super +at +and +corn, +sun +in +the +the +tragedies +the +and +Stowe. +Honor; +and +definite +and +morning +Columbia. +is +Temple, +lot +"The +accomplished +and +representation +and +a +of +around +remaining +In +is +be +a +and +that +Hunter +of +after +the +older +the +birds +a +edge +said +bring +dono +of +killing +mystery +That +see +having' +acreage +indeed +ha* +for¬ +He +by +salary, +The +very +to +on, +it +else. +done. +companion +in- +and +mortgage, +of +came +tor +to +and +"building +practical +any +built, +of +dor +successful +dele- +rnlurdt +plaoed +hutband, +week. +facts +dis +still +have +sad +the +sleep, +notice +ean +to +Valentine +and +up +regular +Ideas +to +named +"City +the +said +too +of +man +in +with +the +^ +reporter +removes +exceeding;!) +it +petition +all +line +"coffee" +watch +company +having +lot +turned +Said +enabled +to +of +hand +and, +so +Now +ESB +ples, +most +Issues +he +! +these, +or +his +in +that +barn +although +his +deed +in +to +Miss +however, +much +loyal +the +menced +landlord, +it +by +Lincoln +sliced, +stroncer. +make +wife, +the +neutral +at +to +of +in +the +about +sending +repre­ +secured +their +select +former +the +to +the +may +lose +as +of +the +thereof, +character +t +time +to +dreesed +and +the +the +up, +silk; +a +cent +Nine +Bunch, +It +It +1931 +M +Mr. +company. +the +esteem, +Bank, +( +to +borne +thirty-four +udder +seen +Fargo +augurated, +Spaey, +11 +he +Pacific +meridian, +has +to +of +illness +to +fouirht +article +gambler, +him. +in +stage +among +re¬ +the +stockholders +Alta +however, +with +national +that +brown +certain +by +could +Application +most +in +the +to +In +curej +timbers +families +Burmah +helped +and +as +and +this +and +it. +Fifth +house, +States. +who +We! +ing +follies +mav +was +retaining, +to +still +- +V +mour +fretted +and +the +ladles' +Impor- +the +to +say +whole +cen- +searched +per +she +death, +by +"Tbat +years +these +found +Haulers, +other +Walker, +collo +tion +protective +So +motion +the +and +driller, +Koekland +their +cly +the +the +on +immense +ita +where +does +was +very +of +to +147; +the +So +bank +the +of +tails +had +place +women +such +make +to +presents +half +thla +thirteenth +not +is +reh.oved +which +latoral +or +it. +Van +soil +A +tain +allies +advocated +on +matter +as +iu +in +Huuuie.utt, +urday +looked +|spanned +folly +making +which +that +within +may +of +whether +only +compeUtor* +things +that +ties +three +jack.^ince +Him +Octo. +aud +the +terian +action +vice.or +to +consumer +dwellings +Society. +of +it +Lotion, +too, +of +relation, +that +the +ourporation +other +box +the +day +piopeotf, +only +at +under +the +fairly +who +of +They +all +corner +irom +Simshouse, +bad +or +deposits +that +be +iligh +ists +then +last +more +litc. +as +at +poor +the +(34), +a +wac +not +tract +of +did +to +1 +and +*e +mere +healthy +was +objected +It +supply1 +and +glass +is +his +smiled +Secondly, +pav- +been +York, +of +cast +al +have +at +former +sufficiently +of +Now +to +7tft +Her +great +the +the +Hollander +desert +Stools +evi- +require +message +eight +both +style +of +and +sec. +fiillamed +and +The +city +owner +part +C. +mess +this +subscribed +lhouandwho +been +as +15 +lead +; +Rooks +making +for +vitli +la +repeatedly +and +District +the +rough +half +for +kindly +about +from +those +mere +pany +as +a +quito +lake +tory +$12; +has +politicians +a +in +time +seventy-five +er' +out +record +organs? +reference +questions +ciary +should +47 +order. +the +the +au +ta +Guatemalan +was +hours +expire +nine +blown +then +iron +sustained +tc +rads +cow, +hollows +that +A +in +lingering +of +was +couver +volve +passengers +with +tenant +would +mines. +he +iu +5, +D +match +rocky +than +bis +Hite, +brief +F +been +they +exclaim- +tho +the +in +de- +thoy +itay +tions +as +the +millions +her +own +could +of +have +17 +Early +I,uil.ro +of +and +should +road, +who +pros- +supply +of +an +in +each +ou +that +ever +the +thejrhave +stein +in +postponed. +(36t. +the +ditrcsRc +coroiia +the +nent +to +object, +lowed +as +the +order +trained +meal +dav. +aomple +which +continued +haildara +a +published +inter-es-t +Newberry's +doing +when +a +State +most +them, +in +of +face +demand +that +had +lost +as +(v. +on +party +years. +with +as +dif +It +Gross +knows +to +ing +national +attained +table +contain +at +Charities, +Our +sister's +pit«t +was +should +in +to +was +out +to +opposition +fain +refusing +has +The +find +supposing +not +for +had +by +going +gentleman +de- +Tacoraa +They +mayor +partment +to +allow +Origin +saving, +existing +wao +wagon +and +Ausrria +says: +it +three +11 +out. +a +others +shade. +ish +as +monev. +men +the +it +ajaian +t; +by +place +with +Johnson, +upon +warrant +rows +Upper +the +this +thing. +judgment +The +Meyer, +move +it +its +the +The +sons +cupied +were +with +home +be +man +in +enough +of +bel +marked +and +and +street, +qualitv +The +forth, +putting +or +friends +his +the +the +great +to +Black +Upon +interested +brave; +"Second, +the +others; +for +s +made +that +with +the +when +man +has +Kdward +to +told. +and +Bth. +at +you +4 +hearts +any +pressed +Company, +with +that +foreign +old +one, +to +tha +get +IHfl. +States +They +have +-an +this +associates +boundary +tupnriur +for +out +received +Three +now +might +There +and +north +Clark, +strength, +that +enforcement +him +of +anil +cortaln +palace, +In +money. +he +will +came +with +the +be +of +packed +Court +sections +times +eaat +be +ll; +my +¡» +sheriff +from +Buchanan +thirty +several +this +of +that +the +waiting +of +wedded +W. +and +IVatt +retire +ets +for +been +through +that +patriotic +said +natural +were +gov- +the +Five +matter +have +niotlnn +such +tbe +for +full +time +other +calling +Interstate +bond +constantly +were +that +shall +signing +had +usual +Western +Missoula. +mining +order. +off +Tennessee, +any +such +directed +United +should +at +ago. +fac- +ber +our +City +rage +fice +man's +long. +rolled +you +Book +for +Sidney, +Manna +the +improve +be +5, +in +eastern +members +fact +on +him +stated +he +says +Insane +road +dins +Norfolk +of +was +about +the +imperial +have +his +peaches, +the +the +the +distinctly +given. +and +appears +it- +has +coral +north +2; +The +be +Court +Tonic +kill +and +1 +who +pieces +main +but +furnaces +I +found +awful +found +of +bacon +Novelists, +to +of +unknown +county; +matter +Government +few +I +In +times +of +when +manifold +aud +confound +had +place +were +tors, +iron +the +even +chieftains +at +col­ +an +75, +three +jury +the +cburch +con¬ +back +men, +equip +the +often +above +years +in +First +war +case +If +altitude +if +is +the +anv +F. +Until +of +service +in +uniform +streets, +were +presented +sweat +10 +of +be +f). +average +to +around +public +make +Robert +duties, +Tula +inspiring +with +will +longer. +$237.30 +be +for +few +possession +that +discipline +apple +or +the +the +etc., +duty +charges, +the +son +what +seek +architectural +he +duly +without +in +master. +wfth +Manley +cities +His +about +ofredemption, +of +N +'Go +until +these +privileges +dipoedto +E. +who +Breast +there +lucky +Farm +extracts +of +of +about. +government +feet +Secretary +held +practiced +making +pilot +resolvcd +the +on +cational +a +both +we +for +skinning +ohmate +of +City +amended +They +was +open +.1 +department +sutbio +debt. +Fellow +find +of +aa +a +Constitution, +tend- +side +attorney +It +npart, +of +opened +biogenesis +swept +authority +rushes +the +long +married, +of +soldiers +Bates. +River, +only +to +(1), +der, +thief. +loweat +alaa +that +result* +power, +motion +the +Collector. +and +veteran +to +Vermonter +man +who +phurs. +[danger, +spread +did +trir-*s +beneath +1883, +curious +From +March +school, +and +destruction +fore* +was +affirmation. +most +be +and +If +hospital! +the +for +scientific +while +cry! +in +law +have +on +blue +fern +5, +of +dence +so +for +discuss +hand +confirmed +do +stallions; +appears +place, +of +to +(a) +cloth +of +At +sapient, +in +sheer +Ohio +pause +practically +G. +feeble +at +air +his +strike +taken +hold +stereotype, +is +last, +the +letter +bowled +of +the +bered +men +working +entreat +s +guided +the +what +bedorne +seven +24th. +a +big +to +A. +rape +BUI +44' +be +County +the +and +that +Henderson +going +title +is +quality +hereby +1804, +In +the +t^an +all +the +and +pressure +not +14th +cutter +the +skim-milk +ing +n +has +acting +scriheas +caused +and +any +E. +Kunkei's +alluded +objection +debater, +ring +appointment, +not +important +to +Persons +the +in +secondary +especially +the +1. +the +and +report +of +of +of +Hope, +pri- +the +as +and +a +leave +With +a +man +approximately +Bank +Pine +less +poles +lair +so +b.utel +on +in +streets, +he +break +remains +accummulated. +the +by +went +and +of +eighty-five +the +hues +the +not +ples +many +few +to +president +to +that +(rermnny +his +much +fit +no +a +the +among +with +The +violent +life +had +burnt +follows: +will +U. +and +time +the +to +settler +are +Isaacs, +Grimes, +ot +were +He +northwest +been +Daniel +expiration +to +to +where +eaying +, +a +worn. +into +Inches +a +short +twenty +Rivers, +therefore, +the +the +and +in +the +moderate +erected +considerable +declare +ting +re- +of +a +Mrs +terett +In +was +the +McElroy +a +apparently +time. +is +misdo +"Honduras," +vide +eonapincj +nent, +their +iV.WM +the +men +has +would +normal +room +and +of +of +the +and +estimated +throat +warwiih +Ea- +tho +south +sistance +away +evidently +of +until +returning +I +shall +as +Tama +the +and +or +mind, +their +authority, +two +her +have +since +ner +will +giving +would +the +that +and +speed +line +considerable +every +stato +clytlizey" +me +when +such +appetites +nation +bad +the +it +vestigation +of +on +that +in +crowded +was +final +kings +note +case +raised +look +eent +the +chldren +on +diers +as +and +ids +party +such +mutilated +J +other +thirds +and +Spring +high +find +ad +the +the +street40teeteast +tha +pleasant +nom +oue +not, +one +gently +parish +if +f +to +sun +beautiful +ames +1 +must +wages +any +is +Ten +erectcd +Una +title +transactions +minutes +Northeast. +wild +this +named +before +in +.aae +prove +to +of +fails +con- +the +nd +diilicnlt +signs +finger +She +the +life +have +then +enough +of +wooden +bond +ive +vertisement +and +to +into +set +Every +"I +career +the +honorable +where +of +mores. +On +total +last +some +use +eer, +be +happen +nerves +Queen +than +to +thoueand +them +may +by +Hackensack +formation, +plish +is +ns +a +State +postofllco +declarations +the +of +Batureay, +give +pay; +to +were +father +Every +He +plow, +of +hetter, +then +whether +it +being +Order +about +not +stored, +pro- +latter +day. +fact, +Nebraska, +tid +whole +the +produces +road +MRS. +through +Edgar +8; +gentleman's +take +August +the +spent +antine +¦aakaalea] +bing. +her +corridors +ead +abroad +who +at +hair. +vice, +and +at +Frank +on +family +a +should +a +for +she +etc. +then +the +not +of +in +. +Angeles- +Sylvester +part +the +stand +400 +the +Is +little +the +and +the +better +it +west +Railroad +their +ratify +could +jet +the +the +of +and +of +and +price +cargo +of +perpetruted. +tho +our +her +three +number +Switierland +dominate +gill +ago +with +ea«t +commend +Secretary +physician +She +husband +with +to +more +however, +and +security +the +eyes +indicates +operators +their +lift +Government, +Savior +beans +medicinal +District +no +cave +of +hy +boatman +chill +of +jury. +not +a +fair +"unwhipped +usual +day. +generous +excoriation +and +vigor. +Many +T. +show +various +many +hands +stand +in +paid +president +architecture, +Port +being +the +most +rest +¬ +of +this +15; +stant, +I +the +prior +gasoline, +young +treatment +to +have, +niemor +Being +from +it +in +county, +the +tish +class +proceeding +and +an +ommencing1 +aye, +Court +He +place +is +wa* +men +killing +of +tables +think +aw +immense +oidy +made +And +uud +vice, +anything, +-nceesair." +acquaintances +in +pon +the +on +is +the +or +1902, +icarlul +new +benefited. +Washington +with +leaving +untoward +Intervention +aoil +a +ate +this +brought +south +the +bntlle, +closed +and +construction, +in +after +platform +thoughtfulness +when +facilities +wires +bristles +villa +have +thla +to +death +done +tbe +of- +be +of +is +inde- +hay +per +sent +incumbent +but +am-40 +When +should +found +him +government +of +officers +oat +from +cleaning +think +by +therefore, +Irish¬ +nor, +in +John +Hopklm +on +to +four +at +for +ha! +bales, +at +is +from +active +a +length +features +arm, +last +Decatur +on +morning +discharge +sake. +of +consented +get +know—l'm +you +there­ +steads; +tho +Stone +their +shop +of +the +said +yards. +abo +ptied +panorama +and +deck +at +himseir +story, +linil +return +half, +to +from +Oats, +grip +week +ani +at +expression +Pocahontas +the +makes +members +55 +seen +bedchamber. +in +exposed +mouth +the +that +headquarters. +bis +fineness +distance +"After +service. +gave +candid +In +would +for +than +accidental. +buy +Gagging. +and +; +isa +protect +aud +is +this +now +any +Sub-district'No. +provided +his +and +No +$1.00 +and +«co'alism. +have +of +only +and +j +Committee +Whitney. +In +not +home +and +European +state, +is +there +that +rcn +a +night +navirau +the +that, +of +• +3 +day +was +B. +tlu-jnry +talk +the +and +sued +but +of +treated +in +1260 +the +tremendous +that +maculate +respect +Entering +faint +whereby +could +applications +Richmond, +became +an +thoughtful, +and +it +all +ferees +are +most +South +Slate +land +of +bsoihnsa +shed +indeed +has +the +pains, +Company +T. +he +cur +tlio +from +(3) +E. +if +sup +state +seven +occur, +proceeds +internal +ginia, +struct +was +that +share +elat. +the +to +the +ilay +de +nnd +power +tire +Excellency, +has +this +camp, +construction, +straightened +edy, +threats +abroad +third, +In +hold +year +than +do +be +Legislature +refuse +Í-'J-.I +your +points +450 +annual +the +liquor +has +Winkle, +agricultural +he +system +beyond +of +upon +the +be +prisoner, +the +is +the +life. +and +want, +possibility +Mayes, +I +north +to +of +The +been +is +may +Promoter +has +covered +the +Morton, +ceeding +it +all +hammocks +good +anil +for +had +concerned, +enough +to +one +The +Stamina +Milliners' +of +value +not +gestion +have +counties +bread +by +a +feet +He +Iuipossible +place +1-4 +follows +trying +them +sum +Greece +miles +against +cotton +all +made +the +any +beating +thence +arms, +and +wid +of +longing +harm +in +or +horses' +a +.lohn +ists +year +which +a +with +American +United +A +has +black +the +from +the +shooters +spring. +up +served +11 +time. +patrona. +typhoon +it +broadside +Union +thoi +could +rate +than +thus +appears +park +prisoner. +at +wit; +the +are +some +to +ings, +piece +Church, +with +of +tho +one +evidently +window +the +of +members +accomplish +rapidly +Id +did +down +issued +cases +or +town +America, +demanded +indigestion, +(iaitm-oN +and +tion +hill. +not +waiter +a +That +to +escorted +front +that +him +to +but +only +prickly +over +got +Eugenie +just +being +heavy +the +the +to +of +of +personal +day +re- +to +ences +remove +conference +the +stammer +Woodbury, +and +certainly +loot +40th +While +exporta +language +and +had +wound +over +of +ment +IV. +300 +in +frami'rs, +evidence +winter +A +high +Beauregard +band +sen +on +1 +of +how +by +of +Rockland +consists +the +It +di9ttnctiy +Lt. +of +act. +flannel +spun +get +Punch +thotiiiipin +the +Paul +full +in +love +chinery +difficult +stepping +is +from +same +cotemporary +know +brought +which +It +of +demand +She +the +«ant +by +burdeu +or +the +returning +Mr +W. +hastened +to +.) +sercral +his +the +ad +dsimonstrances, +the +was +tho +would +the +of +the +The +den +of +up +to +We +miles +was +regular +a +on +heart. +bpeed +Now +dier +through +gentlemen +certain +bank +insult +is +loit +the +terials, +infant +flag +before +miration +drove +lie +Northern +made +George +them +into +their +insects +a* +sleep +to +greatness +subject, +to +him +the +that. +time. +the +for +all +viclinity +were +the +Now +they +and +know +$130,000 +of +It +gar­ +experience, +say, +behind +late +however, +beeaaee +discussing +Must, +Greeley +he +thence +corps, +me +tyrannical +ciples +our +colored +so +atid +promotion +bowlders +boxes +continuance +vith +bers +dier. +the +the +1 +medicine +Boston +most +getting +Ed +are +have +her +a +the +it +all +less +or +In +the +prove +the +the +vy +render +officer +turn +at +well. +church. +beft +hit, +generator. +means +to +as +the +because +they +Montana' +than +great +C. +like +her +Mr. +came. +to +him +judgment +my +point +lot +write +does, +looks +the +the +been +season +Street +Me- +they +be +Cyria +who +40 +m +ed +isa +her +millions +tho +pro- +the +lying +come +miles +by +Phillips, +money +mlnor +I +year +of +beyond +them +done. +traits +lnc<">m»» +The +companies +land +to +Morgantown, +from +cupied +the +Syrup +in +thousand +old +and +cedures +the +egress +scratch, +and +of +to +left +back +1.10 +guard +ed +large, +every +the +wire +Die +box +what +a +shows +He +good +hence +call +tons +scond +not +so +In +scrutinized, +Testa- +welcome +by +and +excellent +on +faithful +procured +eleven +family +blorint +the +miners. +tbo +line +posed +engineers. +and +upon +servo. +sei +the +kept +place +Board +Bon- +or +in +is +ickiugaud +which +il. +lawless +make +bill +miles +it +receives +to +lot +there +late. +sort +this +that +To +imitative +sicklist +Now +iEgis +to +the +would +to +tlsclf +to-morrow +Florida +The +sion +;>» +made +which +the +beautiful +lie +have +face +its +general, +country. +at +\>, +under +are +and +given +state +forc- +fosteied +the +beyond +the +but +estimate, +trip +Iteen +developed. +bish +the +sudden +governing. +that +to +faithful +to +does +but +Such +That +the +The +it +closed +perhaps +cen¬ +minute +judieiai +Van +with +Marseille +one +sort. +for +first +I +boys +so +a +paper +the +Wichita +ginia +striving. +wanted +It +treated +the +own +several +Marie +a +tear +become +springs +to +matchless +year +wero +and +nearly +Richmond +said +that +out +Northern +moun¬ +lustrations +following +59 +was +as +pleased +an +Reanos +6thers +wheat +must +tunity +previously +from +tion +the +been +the +able +jfor +bears +and +do +shooting +miles. +already +d +the +at +reception +thu +Frank +was +Atnaao +laid +of +a +have +and +have +it +obtaining +water, +one-fifth +years. +Govornmont +Columbia +wad +would, +unknown +It +be +public +water +aalte +Points +those +to +says +pamitliiK +. +j +se +of +of +the +one. +the +travel, +ago. +we +tlemen, +steps +So +i +of +S3 +officers +the +which +An +This +you +the +along +to +Sant's +leave +Without +Virginia +seems +exist, +seemed +will +brass +Constitutional +by +the +bria +like +man. +by +actual +be +chests, +Dwn. +and +, +a:,d +bis +bear +come +will +the +company +military +to +La +of +gospel. +the +star +driv¬ +way +In +terrible +propose +thov +tho +laborious +table +a +animals +owiih +The +downwards, +nless +choked +of +hous +actually +the +to +w +ingenious +bulls +door, +or +pilot +and +were +1 +puts +dragged +made +in +f +able, +firm +j +that +t*» +somewhat +October +been +mellow +blood, +began +having +of +scene, +relation +to +small +to +land +will +ladies +are +pais +cnarges, +that +$1.00 +philo- +sales +very +with +sleeves +bill, +ea»t, +and +are +not +tho +the +the +to +evening +on +averagen +and +proved +rock +especial­ +counsel +believe +help, +Pottecher, +and +It +to +going +1897, +I +of +bridge +he +Northern +the +well +these +have +John +reported +of +grantee +and +voto +become +close +In +and +and +rescue +Reinach +wo +pass +stroy +throw +"green +like +of +passes +in +stamp. +almost +5, +If +a +this +gen +or­ +outside +country +uDd +court +rect +In +him +tem. +butt +so +or +management, +lifl +divert +other +cannot +was +to +fat +Xeb., +to +business +is +now +what +average +tral +recent +ana +clusive +fourth +In +flgn'ee, +theyran. +that +a +the +the +people +eiieed +house +father, +cently +ought +of +may +room +at +itors +months, +we +It +buy, +com¬ +sentiment +they +figs +that +her +with +razor +from +Nicholssct +mind +years +number +They +three, +wen +tear +Kememher +a +mielt +terribly. +the +do +began +damaged, +upon +ued +expression +I-boi- +enough +stated +followed. +by +attend +tho +Woman's +and +the +at +of +that +is +the +quality. +wa- +comes +had +government +ceiling +should +will +inspection; +the +R. +do +wonder +at +give +sarno +school +immediate +of +the +Spirits +uvea +Prohi- +func- +good +all +nations, +tine +size +still, +the +were +the +the +and +By +cent +in +Mi-. +That +pockets +natural +after +nently +weeding. +section +rib +been +that +sinking +them, +19; +conveyed +St..Soulhwnrk; +legation +to +the +her +from +most +the +be +mini +Alaska. +idly +full +ot +and +the +dnced +MITCHELL. +after +thrift +Perjury +end +is +to +that +indulging +named +A +and +steps. +its +in +church +case +which +lives +this +at +the +condition +of +astonishing +The +of +(A, +is +part +session. +by +tax-payers +pointed +discovery +have +halls +her +a +enna, +30 +the +parents +booka +straight +of +feathers, +placed +ol +except +a +of +and +i +the +demand +of +for +began +712,- +lung +machine, +and +her +wreag, +that +cent +soon +obligations +South." +for +Union +se»vn +laws +most +were +I +this +with +at +North +lent +use. +third +cover +erson +others +sitting +paid +consumption +was +tbe +Hut +large +nuw +tha* +prisoners +attached +amount +are +joined +manner +arrest- +addition +tablets, +100 +of +to +he +notice +thorough +degrees +the +plicity +to +Instantly +know« +sq. +midday +in +as +For +farmers +the +that +We +you +is +ele- +Mechanic +practice. +l.'nited +stone +thing +197 +Co +1ouse +election +said +digs +trol +of +American +of +the +way +them +, +was +years +something +iuclioed +at +and, +have +exclusion +squeezed +wer +that +the +Tlague. +who +regretted. +rooms +upon +when +the +who +way +ia +the +nine +out +family. +we +by +house +j +Survey +that +control +first +con- +been +the +instrumental +Buffalo +never +and +weeks +to +were +skirt +they +commanding +j)!au +gas; +(as +and +He +Missionary +deer +Signal +the +handling +of +and +coiucideut'c +and +Fein +You +been +at +was +rich +live +present +destitute, +Following +tered +.tne +tanned +deal +ation. +be +- +him. +the +atn +his +the +or +resurrect +is +the +not +Hawaii, +untu +commercial +assumed +chair. +goods, +the +being +one +Fast +of +the +list +theahdomen, +Morrison +tilth. +to +six +crushed, +later +the +have +croach +both +of +down. +time +tho +of +part +she +tbe +no +worship, +bank +effeot +The +tomahawked +County +even +er +in +in +meet +met +of +grant +rence +or +and +arrived +began +concurrence +Oklahoma +ocean +people +principal +not +the +south +and +is +Association; +healing +plot, +snow +bunion +afford +routes +her. +be +By +at +boy. +consultation +share, +charter, +county +have +because +tirely +the +go +this +administration +Under +of +become +have +country +and +now +ney, +once +of +153. +made +of +a +is +and, +Tennes- +these +and +or +dollars +put +house, +"section +in +'luren +there +trees +all. +huviiiK»Bflbntied +placed +to +of +terms. +with +it +polling +must +San +way +ship-building, +demagogues +iron, +plans +There +sunshine +restored +would +of +ad +a +of +is +silver, +whites +W. +Miss +still +in +cases +a +Echo +court +things +amount +permaiient +what +if +of +generous +con- +. +altered." +public, +tend +to +golian +Robert +all +t'on-acrvativo +them +benefited +lESS, +applications. +16th, +star +will +boar, +dog, +Is +on +genial +iu +vers +Senator +for +tko +workwom- +in +to +Sixty-seve; +him +of +controlling +claims +of +prisoner +Prussia +tbree-«|uarter* +and +the +determined +taught +der +emphatic +assurance +Two +skillful +sen +the +but +accorded +but +an +beginning, +as +June. +bundle +proved +pounds +should +suc­ +a +a +conditions. +to +away +inhabitants +his +entirely +of +plantation +of +do +to +the +responsibility +Its +j +are +after +people +shallow +re +the +Knight, +that +plying +household. +be +o'clock +famine, +them +borrowed +specifically +in +Retinal +you +and +cf +repent +clvlllted +Bible +boar, +asked +and +of +in +marked +up +the +cardinal +bers, +scraped +testimony +states +paying +total +four +Tobin," +to +He +coald +together +they +Knoff, +ireful +am! +are +about +sui- +for +Survey +channel +d, +their +high +the +generally +quarter +his +order +for +the +for +estic +attention +the +his +right, +of +to +in +but +Wait* +heresy, +the +to +sworn +9all}£c. +parents +washouts +east +position +e +Mr +.lid +ginia +all +body +bodies, +part +of +had +of +shipped +by +freely +have +orders, +to +the +tho +according +in +together, +in +Or +the +and +it +conductors +Beck, +our +before +charge +hu>b +at +bora +respectability +Is +be +and +do +the +to +16 +1 +has +the +Senate +and +months +as +the +with +in +until +set +"And +scattered +proportion +been +the +versed +mean +an +chored +of +after +Not +apparently +pardon +force, +weather. +were +which +in +Is +of +the +the +report +yards +complete, +never +whole +upper +we +Baptist, +made +firmly +same +accumulation +Commercial +fallen +and +8t +goods +the +clouds, +luiI +or +the +the +is +the +It +also +lightened +is +sand +closes +found +word +to +in +aa +blocks. +Kohinxon +of +eal +the +encountered; +kinds +deceive +large +ma* +the +the +Hesse +in +front +; +of +that +blossoms, +who +my +house +not +forests +thoroughfares, +drops +said +that +has +the +he +duco +de +Jake +to +who +•ithtr +vitals. +On +men; +by +common +that +munication: +with +spread, +political +provided +not +railroad +or +the +must +disease +ruins. +pleasant +this +one +for +in +had +of +to +too.. +coming +the +changed +that +r +this +persons, +Eight +but +came +1 +Cinque +complv +advance, +i" +able* +of +guest +my +he +of +28, +exclusively +it +South, +for +society +small +prove +passing +that +of +ticket +country +left +of +any +Chas. +the +a +mortgage +Outlaw. +female +troopers. +prevent +oundings, +heralded +under +of +year +exchanges, +the +com- +wild +bo +the +his +are +enough +not +around +the +goes +as +his +was +was +the +be +own +Levlngston, +a +Mr. +. +which +of +have +anything +ac- +this +In +the +and +.. +the +unable +month. +oacKcu +aggres- +attempt +cessity +and +back +of +Manuel +the +and +and +structure +pur- +those +and +that +service +42,000 +they +98 +available +near +are +had +best +the +year* +rate +than +I +meeting +than +Hon. +had +governments +crops +williugness +stock +years, +after +maintained +so +the +ing +Wednesday +and +some +and +52c +ago, +a +unfortu¬ +his +,r +shadows +September. +loon +expen +electric +de¬ +other +to +of +for +pro- +all +for +bey +outburst. +not +a +evidence +amply +those +the +Mildred +L. +plarnneaa, +the +In +to$6per +er, +if +pated +which +the +a +na­ +steel +diers +to +at +tooommenoaon +Dr. +toes +the +I +tion +brought +Ordered +one +show +in +supplied +they +for +prices +vince +ground +ted +to +Waukesha. +gone +11. +treo +desires, +tasks, +for +violate +from +ingelse +have +least +Also, +a +or +when +of +to +contractor, +At +Homer +this +demand. +Natloail +it +think +Agent, +end +patent +loag +sore +is +tonporature +No. +as +profit +block +Then +part +different +open +feet +the +borough +for +sou +Corner," +foreign +somewhat +of +wards +the +become +go +a +lovers +As +marked +fidence +plen- +contained +scuntry, +the +of +With +of +the +above +pro- +iu +Insuring +ut> +and +the +state +and +payable +lor +sliced +as +place. +ier +interview +they +on +there +complaints. +went +as +another +bill +held +it +fired +Ralston, +from +should +shone +The +entire +and +cabin +liberal +and +Liberty +They +the +ears, +the +burning +are +unprecedented +as +week +prominent +many +when +home. +fifty-two +to +respectively +The +treaty +and +is +300 +and +a +her +fury. +act +only +was +placed +by +agres, +never +created +suow, +rock. +amined +with +the +American +Not +are +seven +of +the +of +bower +or +Then +part +in +of +garbage. +I +to +1914, +on +import¬ +bogus +the +played +its +We +and +object, +disappeared +ty +of +majority +up +laden +Wilson's +were +if +people, +bac +gracefullv +go +of +persons, +Involved +same +seek. +without +by +banks +Sixty-five +free +it +suspicious +became +account +the +it +the +only +the +room +Being +property +with +nearer +per +Is, +Harry +illa. +m' +it +work, +bridge, +Estate +thean. +his +Tho +and +given +"pal +as +and +that +because +said +uutil +Let +- +Coal +were +took +by +the +of +pub- +requesting +not +sue! +while +my +cistern, +them, +and +as +leans +faireplacarder +avenuo. +China +in +ized +The +and +did +banks +of +Indians +friend +K.OOO +tostoolormaklng +diso- +was +the +ious +or +eases +least +drops +a +fed +Tha +paper +aiuo +In +reception +prucuro +A. +lie +you +liquors +permanently +exjiosure +to +tournaments, +bursts +compe¬ +many +following +.liiiiial +Lomen +1 +a +occordonee +May, +a +inkerman, +their +life +Kansas +masses +one-half +3d. +as +did: +and +H. +abrupt +bill +was +cyclic +ts. +in +in +the +night +increased +batteries +at.the +that +the +gle +to +may +cially, +or +Gaines +which +The +be +addition +whi'-h +U +It +and +stand +in +cents +been +of +\\ +comparatively +not +well +it +mineral +ID +departure +r +regiments +acts +presents +one +endurance, +north +with +Pickled +suppose +less +buildings +The +purchas +It +paper +done +next +creek +coarse +easy +aggre- +in +ingress +expense +known +. +cows +a +strong- +per +Frank +the +by +In +ant +her +by +the +to +to +alley, +tho +thinir +bonds, +the +fruits +Javina, +nt +to +March +of +wondering +3 +to +atxl +going +County; +should +the +pulling +ampled +would +nuinher +the +counsel, +condition, +ture +the +that +the +upon +and +the +conveyed +were +Wherever +while +wealth +give +rule, +therefore, +figure +Nora, +pt. +to +development +be +with +the +or +unsuccessful +the +your +thrilled +need +or +iha^j; +seventm +was +to +'tho +its +sum +Col. +News; +or +or +sidered +pan +court +feature +studying +ongress. +to +Herman +Tre&cino +only +of +they +aa +few +dollars +in +for +te +in +appointment +brethren +an +same, +the +thralls +wire, +large +Pea +place, +of +ciladcl +stands +dale +Los +later, +the +is +men +. +and +relief +fellow +put +a +telegraphed +which +integrity +that +have +his +brought +one +class +specks +right. +ers +the +proper +dispute +by +in +quite +ot +be +never +some +carry +they +law) +enough +way +precession +The +of +less +section +of +attends +the +amazing +thereafter +eject +who +advice. +these +committee +ministrators, +most +safes, +ideal, +sgalnst +and +it +that +that +are +Sierra, +violate +packed +worlds, +whole +in +banner +nocturnal +of +to +establish +redhi'i^tberoadat +St. +there +additions, +in +appeared +at +given +These, +humble +were +over +are +just +the +ing +the +rent +and +Emilio +ly +be +Hauswirth, +the +w +freight +ponged +in +amines +compounding +to +community, +He +scattered +was +with +all +Rev. +from +that +contest +effects, +makes +currency +aro +of +barrier +cement-paved +Hundred +At +and +daugh +he +micrr, +ments, +its +enlisted +had +the +room +age +not +fixed +S. +have +burned +The +find +two +desired +Finding +blackbirds +47c. +in +people +was +at +tulle +the +to +Paterson +thus +Railroad +my +had +they +; +that +"tainted +pile. +a +gave +sho +in +said +It +A +brief +are +field +secur­ +of +which +up +be +Iho +15° +and +toward +in +al +again +Egypt +marble +to +leg, +to +gun's +his +slowly +vote, +There +cour··) +white +running +year +sweep +pre- +and +of +of +the +. +the +a +arrest +around, +Lee, +nine +it +other +without +Mr. +terest +between +door, +a +-price +33® +cliff, +competition +a +and +P., +lows +rocali +not +calm, +we +is +street. +to +and +home. +words, +oblivious +orders +the +blue +stop +expect +been +tnanliagl;, +tjovernment +ington +assassin, +value +of +though +In +Redford +Lund, +retired +district +he +this +out +the +places. +The +when +him +him +may +gloves; +hung +of +fancy +head +mates. +said +acquainted +ship +nick +with +astonishing +active +some +tune +modore +but +comes +adopt +the +and +Wilbur, +unknown +. +out +bast +and +west, +improves +in +In +or +ataty +pencil +good +ot +the +reported +recommend +The +recorded +by +oak, +Mr. +and +it +finish +paint +statement +for +ness +meeting +for +all +shoot- +is +what +'I +its +traln +In +grounds +effort +market +tbe +we +the +as +hole +of +for +Wasson, +and +right* +be +he +false +cutting +Uridgmau, +2 +what +is +27 +hav¬ +triumph +on +growing +D +who +board +frequently +out +taxes, +No. +esti- +are +Los +and +and +quartets, +they +the +formed +Army +bat +south-east +Lady—will +per +nothing +F +qualified +with +extreme +L, +flesh +•'or +their +to +how- +269. +advance. +then +is +president +ns +xurwr, +lor +Members +and +year +the +a +timony +be +many +on +increase +Mr. +be, +in +as +in +hie +send +time +session +the +attending +tempting +east +give +Republican +information +States +long +The +3,800 +particular +was +her +north. +trial +fool, +No +<>f +drtrrwta +from +a +men +in +lower +adjunct, +ire +received +answer +Y. +tbe +shall +enough +of +is +tle +much +in +that +lU. +the +eastward +that +over +gave +My +A. +pen- +thoroughly +others +soon +operators +entitled +having +probar +2, +impersonations +be +wishing +Mr. +rejfi.lalor +9.00, +de- +men +the +was +He +out +of +spigot +then +01 +ed +an +office +to +the +the +roads. +trays +teachers +in +have +and +be +of +neror +banks—are +nil +a'ui +Teeth,fc) +nf +the +cart +'Porto +of +his +Whatever +commerce +to +would +bific +Will +they +were +districts. +of +six +themselves +as +conslstlnglu +our +would +any +the +generally +to +The +diviaion +moto +be +new +the +y +shall +ail +get +In +remainder +putting +the +period +"WesWhester +habits +face, +to +led +a +God. +out +story +author« +African +streams +two +actual +the +made +for +who +The +F. +reared +safeguard +ized +The +rte +use +town +taken +of +did +cutting +in* +of +$60*. +of +Congress +exhausted +the +he +I +hair +in +and +28th +of +at +Armstrong, +and +over +invigorates +direc- +the +and +cases. +bad +wmtld +degrees +city, +there +AsIhadnoideathata +Law: +hammock +now +a +of +a +before, +ly +no +sohl.» +yard +shores +words +As +suppo- +succeeded +to +serious +went +supply +, +genuine +stated +week +rnbb•dever. +a +ism +took +angles +capsules +that +Gatiitt +ac¬ +to +th +proven +until +make +mufllo +means +the +with +their +Company +inch +prevailing +ana +tales, +eat, +opofl +could +John +provisions +abundance +ateamer +cotton +interest +turers +her +sixty-two +op- +as +ability +know +Tuesday +Ward, +lor +B•enf +1st, +cotton +examination, +any +aged +other +was +PIngree +line +be +he +here +cows +told +Johns +sinking. +closed +next +bottle +of +commission's +were +fur +elear-enl +strides +require +these +of +same +fence +tion +by +1 +and +north¬ +onh +district, +that +storm, +and +of +could +some +in +foet +Belfast, +day +needed +cancelled +avnth +everything, +and +trains +of +ten +several +RcO +ance. +was +and +that +attract +He +erected +yet +pool"* +electors, +make +a +company +overlook +exchanged, +at +for +are +half +month +er +la +tended +feet. +been +seriously +placed +adjustments, +iancv +side +issued +or +4." +If +Incremeut +Cloud, +to +gastric +few +for +unattractive +J. +mat +cial +arbicb +its +lu>m-s +mer­ +South. +shirt +during +mule, +racing +but +annum, +disapproval +the +A. +probable +will +a +east, +symbol +it, +l-**avy,eud +one-doilar +series +citizens +a +but +personal +bonds +decisions +I +to +his +the +shall +drug +be +with +Metropolitan +thgt +oo- +Opper, +and +meal +newborn +Dr. +been +your +such +many +way +Into +and +annually +was +than +It +com­ +the +similar +flowing +pike, +hands +as +the +Herea. +present +The +is +sign +special +soldier +otherwise +revealing +to +to +sold +do +details. +lawyers +at +us +to +till +reason +other +both +the +others, +on +enlisted +he +days +Blackfeet +riously, +singers +Ulled +means, +WllllE +who +of +refreshing +aud +the +·, +$59, +part +from +had +namo +the +cou +listened +thanks +of +Are +suid +balloons. +'party +stimulating +Bell, +the +than +into +who +river, +in +certificate +to +ushes +it. +My +her. +be +several +thereon. +oats, +mistake +fully +of +proprietors +such +been +2. +a +Toward +the +a +tributed +little +running +find +he +by +to +It +unless +this +suffered +tlio +discussion. +to +of +cause; +over +of +bituminous +is +November +almost +It +tho +a +temperance +Is +offer +124 +are +the +ern +the +Kelly +the +bloodshot +feet +and +as +along +one +out; +enemy +officers. +stalked +intricate +whether +acquaintance +from +ns +ency +long; +have +green +account +I'nited +dozen. +point +of +lands, +of +st +lines +by +were +map. +name +amine +that +increase +are +surrounding +sand +on +planking, +glass, +presented +shoot +was +of +and +educational +were +condition; +Humble +the +District +the +undress +feces +as +son. +in +on +Congress, +their +combine +Vermillion; +New +high +authorities. +one +hmM +executing +colored +Esparta +in +has +twelve +a +platform +respondents, +repose +plain- +pat," +candidates, +ot +the +his +anytime +will +with +and +interested +or +two +was +by +may +back, +the +a +participation +skimmed +up +named +me +April +effect +dictated +in +of +as +in +other +sucking +wu +who +that +lng +Mr. +the +19, +Jr.. +Now +Should +signal, +of +culmina +the +among +at +in +,parcels +publicity, +I +farm +compelled +pay. +out +hampered +withstanding +he +around +There +of +a +ness, +we +The +ami +those +1; +upon +pose +then +several +ate +postponed. +property +upon +Onr +expert +of +this +ment +toward +a +planted +of +his +money, +to +him +learn +be +and +traditionary +they +tion +deficient +rising +publishing +ingly +and +I +Friends, +all +He +also +town +of +Cary +waa +estimation +still +gallons +fighting +average +Well +and +many +Is +there +lie +began, +of +drivers, +the +appreciate +my +It +82- +cause +harm +of +per +has +water +its +District +in +of +said +hy +A +released +from +and +pudence, +without +gave +of +ot +"Russia +(19071 +made +in +K +placed +a +situation, +road, +«om-« +ville, +plots +a +to +ness +to +drop, +I +in +to +Ailment +when +premises, +as +countenance +result* +Mrs, +a +to +with +We +divine +Democrats +when +room, +bakers. +plot +J.9. +I +or +at +a +its +how +You +this +For +definite +grad¬ +what +at +supervisors +we +ment +girl +The +of +and +bis +bark +she +taxes +of +ht +of +June +pec +participate +uf +pity +reason +propositions, +of +a +which +6, +in +7ill +scale, +out +all +for +the +to +run. +s*l. +regularly. +there +George +the +skirt +tion +to +administration +not +thirds +statement, +in +a +Sunday900A.M.and420P.M. +can +went +cial +we +Before +brought +among +week. +the +silver +the +that +Interest +Din- +pretty +directly +of +people +know +whole +to +of +tiia'ip +he +their +an +been +the +room +of +be +forenoon. +system +as +largest +attendance, +Irregular +often +ing +an +J. +the +The +thereby +party +guns, +amy +using +bossism. +own +went +Milwaukee, +are +union +not +on +other +other +to-night. +its +this +his +his +opinion +of +a +was +or +finished, +loyalty +finish +whether +of +ture +York +Louis +to +com +sulci +work; +and +of +with +added +a +a +thence +demaud. +the +It +aud +and +upon +It +try +the +out +iu +yield +cious +Total +in +It +whose +was +the +Iryins +liience +F. +The +-o\\ +way +in +from +which +front +again +pavilion +to +use." +purchase +street +that +by +made +was +tell +the +brother +was +Mrs. +ifloors +people, +she +Block +has +go +Washington's +esting +yielded +or +primary +N. +fe-t +Mark +week, +endowed +of +would +and +us +against +he +a +of +with +Cape +negroes +already +no +Imnediately +that +section +there +in +chance +that +circulation, +It +several +tit +on +which +$400 +him. +clashing +a +both +old +good +National +northwest +tion +the +out +are +Rio +given +W. +as +days +apparent +M. +fighting +the +of +A.M +in +Dubuque +be +favor +& +tho +Hoary +of +nearer +delphia, +frog! +trus¬ +is +humor +and +the +to +such +nnd +so +will +Hilton +not +to +of +from +stead +of +two +be +the +sound +hv +lou +is +of +lage, +83c +of +such +hadn't +be +first +of +I +Ebenburg" +if +gardener’s +2 +was +clations +Just +the +on +said +tho +as +real'zeil +100 +law +40 +launched +his +winter +of +point +again +light +;her +beings, +missed +a +i +laborers +of +son +court +national +all +the +nr +con- +do +erty, +terial +but +by +used +in +minor +110 +taken +excessively +first +compelled +too +submitted +a +offered +and +first +hard +steel +basement +home +do +the +about, +w'ill +to +*outb +the +it +or +Bryan, +as +and +John +rest +and +the +verging +the +carried +discoverer +that +photographs +Ihe +Up +cash, +fitly +than +nlnce, +Court +provisions +and +permitted +the +-ountered. +"merely +finding +that +substituted +may. +yellow +were +sides +petites +public +employes. +by +in +17.7 +guarl +estate, +have +foreign +as +in +lit +and +'¦'¦'- +are +ataat +mit +fifty +work +ter; +refuge +not +the +county +not +is +to +care +the +crossing +of +tools. +iu +going +at +when +ruin +no +at +ing +(o +cause +tar +O +the +ab¬ +redeem +receives +recovering +law +that +about +ltud- +istrate +ean +located +cost +Assignment +made, +silence +insist +manifold +to +the +then +brother, +of +less, +rains +forever +stable +at +at +all +Orakzai +essays +which +the +Mr. +and +is +was +tones. +mills; +train +Mr. +in +about +ol +07erthrow +id +the +As +folios +of +succeed. +twilight +to +army +ary +further +delegation +lived +of +values +their +purpose +main +would +tom +t**r +banking +home, +to +also +branch +house +when +\ellv, +assembly +punished. +short +Phillip +administration +be +the +Nature +will +retainer +punish +"Lea +the +bend +see +andhis +the +the +up +law, +surgent +plentv +managed +which +big +retained +cautiously +Walnut +was +which, +churches, +to +for +an- +beginning +by +SALEM—Ar +thin +ment +to +°r +informing +the +a +and +Call +bill, +tbe +and +he +jewel +of +side +suohaworkas +but +what +a +the +warrant +Life +hla +part. +for +to +amount +after +centum +around +Smith, +" +61 +where +mayor +[appllause,J +said +and +at +and +from +be +accommo +revolver, +boys +The +likely +everything. +they +nine +North +or +fered +of +the +in +had +Arrange- +has +expected +over +the +however, +eral +by +proceeding, +eration +be +for +housekeeper, +Cabii.et +would +a +Second. +ot +understood +any +tendencies +2nd. +crowd. +painful +tics. +summer +and +Quinces +harbor, +A +commun- +some +bed +nudgin' +without +happier +lads +all +to +the +to +of +by +the +that +institutions, +The +can +there +might +be- +done +a +AT +Ois2, +bis +Louis +of +:in +a +Miken- +ami +any +set +tearing +to +It +of +near +ex­ +not +than +County +wishbone +far +day +bands +continent. +execution +jew- +district +or +Iam +nd +progress +be +on +plained +the +John +being +and +aide, +It +pointed +presided. +into +ill +doing +of +know +on +Ie +very +upon +stake +said +of +the +according +soo +get +having +23J +29°, +that +a*ako +are +request +vs +of +to +troubled +their +being +may +Bi +a +paii_iou +of +contemplate +from +Christians, +a +so +Befoie +was +eyes. +ho +a +hold +ware +Philadelphia. +one'B +. +an +people +institut- +Capitol +seminaries, +mo +Military +strove +reappearing, +gain +the +'Ihtp' +revenue +whqse +spite +has +do +literature +Held, +1851 +need +object. +system +boarders +and +in +beaded +uncle's +three-quarte- +cultivate +the +brief, +among +was +ter +all; +the +H. +there +was +reminders +as'against +be +came +oldest +wreck +on +afternoon. +committee +Pascagoula, +it +pleasure +all +a +evident +l'rico +extensive +in +Tho +required +Wil¬ +farm +mental +such +also +and +rooms +and +surely +upon +quite +reverence +undertook +which +Womanlike +under +is +Allan +place. +1917. +given +Stone +they +ternoon +officer +fluence, +are, +where +him, +in +. +its +He +an +er +com¬ +45 +from +this +kill +fallen +entered +Thus +is +in +the +hut' +that +to +where +the +Herrera’s +farm +soft +to +ever +. +from +from +V +German, +or +be +time +cylinder, +l +found +through +McGovern +esotpe +to +and +"The +by +be­ +crime +It +the +money +Lancas- +camo +The +sat +tin- +from +a +going +compol +together +Geological +of +fell, +the +You +cer- +over +Go^ +way +without +time +that +of +The +were +of +from +to +the +extra +ck +liminary +elsottsa +It +course, +been +tween +of +Fanoell, +was +be +bushels +shall +can +deprived +in +of +humor +title +depends +Influencing +or +so +re¬ +in +road +it +the +Those +e +shown +yet +Constitutional +the +for +take +ti +town, +Revere, +the +federal +Her +A +08 +toast +each +resort +and +Prayer. +his +and +which +nnd +the +all +and +Vvas +in +sun +wishes +Pehu +advised +a +be +were +the +tho +which +was +the +at +Idea +his +Tazewell, +the +the +was +suffer- +love +side +seemingly +highest +and +It +to +more +have +T. +hope, +villagers, +ho +that +but +He~*was +Frank +people. +the +ozone +about. +County +March, +load +of +should +Russian +When +of +natioi +dance. +power +nearly +it +weaker +that +de*- +ter +leg +held +sciences; +and +unknown +in +now +block +to +thoroughly +could +a +said +hls +last +than +them +sure +newspaper +yet +gospel's +but +system +shut. +the +equal +time +of +to +assigned +tho +soil +at +near +WORMS, +who +to +Tbo +ill +had +law. +and +So +Thafthereafter. +dread +the +you +such +does +speech +curtail +than +Migiiestive +broken +the +was +York, +and +investigations +preen +risk +I +public +Oitphaut, +crime. +preset +minutes +our +advantage. +promised +gestion +time +always +players +second +the +scarcely +disposed +for +Raymond +is +or +sweep +of +the +to +lim +OQce +which +It +to +freedom +a +. +i +may +in +J. +by +and +wrote +and +5817 +and +tissue, +a +strange +earning +delay +out +an +were +be +e, +but +must +lattice, +the +states +denom¬ +(HVKN, +discuss +Hotel, +render +nego¬ +milk. +elevation +the +ofat­ +bear +sho +there +Con­ +erty +English-speaking +poiuiiuemau.i +total +tba +jurisdictions +of +to +States +come +Therefore +where +ex- +period +The +who +very +to +by +interest +Is +j. +First +third +and +lji +iai.1 +appear +taxed +Samuel, +must +though +the +but +dictates +case +started +T'ennsylvnnla +"wot” +with +half +a +a +lul +north- +tbe +say. +take +pay +«täte +D +home, +n +the +land +as +Interests +and +fughttul. +ship +R"V. +filled +suitable +was +toward +months +The +house. +then +n +ought +dis- +reducing +us. +these +aeldom +done, +powerful +saiee +honorary +void +corucr, +a +numbers, +the +before +note, +point, +his +el, +orless, +a +profuse +the +out +It +the +trust +corporations +evsp-r&'ing +Over +Caroline. +Courtney +there +was +sur¬ +tlie +bouquet +solvent +session +the +and +Is +hill +were +in +to +this +Transportation +necessary, +intelligence +of +tbe +sanitary +the +before +strong +as +and +j +Having +flagging +is +good +attempt +recently +Thomas +products +conscious +rapidly +there +and +future +death; +suicide +to +lot +ever +Township +reached +lasting +The +and +(43), +through +pened. +6.00 +in +the +ior +the +derwood; +minded +the +the +House +in +were +W. +all +aversions +expected. +him +the +crowd +a +to +also +same +At +be +shower +to +ments, +do +past.the +biataiice +been +the +Yanderpool +InEarone +the +ed +for +necessarily +11, +and +er +and +amaranth, +added +small +where-he.did +of +But +Moulder +as +the +primary +Board +(King's +made; +lands +use +girl. +Pemberton +their +-- +him +and +secured +at +known +opinions +m +to +ground +aid +added +the +bal +Southern +stare +signatures. +TURKEY +feherrard +a +for +terize +but +had +with +more +til +rend' +that +Alabama. +sustaiu- +fully +G. +character, +l84Dj +this +their +rock +telling +free +whole +had +in +of +at +by +the +his +essays +improvement +Percheron, +the +and +the +"good +form +public +advance +treat +nn +connected +an +hanit +(44), +have +marked +If +by +for +It +the +of +rushed +mation +'figure, +hand +nt +of +for +of +were +the +wreck. +and +for +a +$2 +were +their +rates +Salt +thing +mgurated. +pounds +As +one +oth- +one +an +of +all +in +de- +em- +Jr. +Miss +that +and +grow +and +glarmg +produce +conveyed +his +of +ing +sigaimt +of +are; +there +state +of +the +or +"Now, +for +from +and +Tbe +point +county +Mr. +office, +tariff +back +one +the +Where +contagious +Since +question +tlie +side +with +can +Tribune. +per¬ +surgeon +Sfc +has +their +immediate +Icannot +now +will +his +the +Itellloeratie +live +make +la +use +and +been +his +Memory +Helen +the +com +is +as +This +It- +to +towards +excep +not +that +object +probata +during +ently +they +be +she +were +a +I +Jennings +chanue +pay +in +cluded +Minnesota. +fccd +ville; +houses, +the +Imro +his +comes +ceremony +had +somo +ever +a +the +to. +harden +against +probable +William +ill +under +I. +at +in +another +first +of +to +in +i¦!. +of +the +consideration, +accurate +desire +folio +men +Ellen +which +failed +Integrity +would +over- +for +known +and +nesses +under +in +loug +5: +at +and +excellent +character +member +the +actually +Durkee +offer +This +his +several +is +make +ble +of +careful +the +as +them +men. +the +thrown +W. +partially +in +In +oar +abundant +ented +He +Sage +or +this +seven-passenger +his +where +Antonion +Gr +have +battle +Finny. +it +of +local +California +that +very +It +that +inations +built +be +prize +floated +sessed +of +the +hand +such +i>f +@ +least, +choke, +letter, +«treet, +connected +high +the +region. +time +plantation. +the +umpire,but +the +knee», +filthful +Bin? +specific +against +England +before +of +Now, +ation +fixed +in +to +1 +the +said +cogntij' +hollidays, +vailed +him +within +utilized +tho +travol +would +bonds +and +similitude +what +The +for +as +27, +this +oreven +for +has +nnd +swollen +known, +".Feeling +train +stockholders, +they +that +share +last +the +which +enactment +this +sum­ +rectly +foolish +Md., +five +duty +did +whose +complicated +tho +Harpe +. +dry +and +; +in +condemnation +by +action. +on +is +more +of +steamers +load +protection +flow. +bocts +a +carried +As +on +39 +the +three +a +the +now +by +thanks; +of +business +way +hundred +resorted. +! +San +losing +the +pay- +go +there- +purpose +far +and +cent +J +his +of +would +apply +carpenters +lost +and +a +of +will +BOBB* +they +full +renewing, +son +.dyspepsia +to +and +The +pression +Codding +passengers—in +mo, +balance +lay +Hotel +close +all +ica +white +and +and +It +providing +last +will +in +land +at +other +Alfred +the +nnd +presented +more +of +tries +Naval +Eaton. +here +B +wore +in +to +protect +threshing +His +Phillips +ment +presumably +strides. +no +face +local +cbsrau.r +loss +ron, +poles. +bility, +supplies +ec +are +the +bo +As +party +85 +ine +within +factory, +been +Information +realize +side +part +of +has +State +and +our +they +prospect +the +plaintiff, +brought +est +party, +a +see +as +58 +be +the +ico's +his +of +Not +the +on +all +one +to +that +letters +parties +those +and +cause +Ohio +are, +Mrs. +Bui +lacrosse, +transparent +prayer; +settled +given +despots +this +the +avenues +away +People. +It +the +as +conclusion +ignor- +With +Mr. +mons +ticket. +nomination +ural, +result +this +and +Wal +valued +of +Americans +or +and +length. +were +without +wagged +be +for +partition +breadth +years +sun +terest. +of +Lomax, +righted. +a +the +human +be +and +that +of +the +and +that +flood +at +bend +Is +.«/»7,000,00(1,000 +because +owe +Joyous +Out +elder +lie +fleeced +so +declaration +250 +nearer +the +all. +cause +trate +acquainted +should +plaintiff +N +eminent +would +tongue +fora +after +there +is +per +petition +crying +that +beets +the +all +H. +control +would +into +houses, +in +Llewellyn; +sidered +of +fioaa +the +regarded +has +interests, +night +it +constitution +laughed +.3 +says +she +more +day +always +shooting +to +horse +man +impassioned +Mr. +tlieir +, +tors +trade +further +wait +cat +and +agree +McLean. +It +how +do +in +is +of +It +Arnold +fifty +to +waa +and +other +per +the +so +McMillan +looked +culture +any +fell +beats +were +raised +he +as +repress +of +business +a|>p* +process +with +GO +left +have +flavored +of +of +obliged +Clymer +policy +ribbons, +we +importanco +to +waa +which +to +car +In +is +easily +cases +pleased +s, +very +off +taxicabs +cousin, +from +rango +teacher, +a +with +are +exception +some +ol +circle +and +Congress +of +Butts +Johnson, +secret +but +the +British +no +increased +cotton +certainly +the +between +mutilate +or +Caney, +have +chattel +ment, +my +went +partisan +of +partly +blood. +thoy +half +Japan +cannot +serious +In +and +The +of +trouble +headaches, +re-exported, +the +to +men +We +banks +and +Bernardino, +Mary +are +colonialism +Vnton +blast +be +as +but +time +wicrd +and +thecemetery +them +gives +would +Bidde- +For +son +50 +him +organization +uaie +The +nations, +It +demands. +The +foor, +that +plan +the +be +to +to +no +her +better +brother +of +supposed +The +The +cord +$50,000,000 +tax) +saloon +and +already +renunciation +widely, +normal +record +as +short +entered +Sibley +came +diseases, +superstructures +Amendment +the +under +rigors +your +weakened +county, +in +its +ot +Oxford, +in +establiahing +the +in +ated, +his +fire +the +Our +one +pour +bedside +You +for +some +with +McClellen’s +almost +bination. +significant +assuredly +next +by +a +snid +rolls +in +I +mere +both +and +most +with +the +States +the +Caldwell +grrat +tance +the +of +Voting, +¦ +tude +ever, +in +4.1 +the +in +born +welfare +under +idlers. +rang +con­ +Oeneral +jStove +the +for +mit +the +section +are +with +Norton, +nobody +by +on +Federal +cracy. +bis +of +and +banks, +Dr. +farmers +ing +less +the +be +to +sult +There +tho +have +in +a +two +wearvine. +sententious +veterans +the +of +the +of +section +State, +hands +OB» +of +- +we +a +shall +that +use- +a +en- +where +munitions +iem +day. +n +$30.00— +across +to +citizen +having +the +building, +attend +21 +not +the +expire +age +Frederick +cake, +and +Mr. +tha +“We +before +of +Western +heréby-reqilired +had +home +the +so +spend +bond +men +shirts +now +the +bed. +and +sourcos +of +was +end +of +se- +muzzle +to +St, +demand; +not +was +all +latter +health, +process +and +evening +which +of, +to +these +iug +believes +public +order +of +to +of +ory +circulation +her +little +c. +anef +or +the +other +tlie +the +it +placed +of +as +officers +happily, +valuable +the +structed +us +there +American +theevilsof +All +work +liours' +like +consign +held +t +or +my +it +him +being +of +sale +that +many +at +and +t. +Olsen +too +think +dressed +th« +has +of +and +yard +the +this +flashed +company +any +Records +Goose. +arc +run +the +his +in +can +the +district; +terest +harmless +was +that +Ore- +this +to +fact +court +facts +but +the +sneering, +Robert's +and +24}a2U.', +houses +in +Prlesland +that +that +wanted +to +glasses +real +hostilities. +Ingram, +earnings +That +tho +dollars; +into +City. +in +therefor, +sur- +erick +IM +of +of +easily +will +uround +of +our +for +her. +and +touch +Mr. +anldthlat +over +in +came +by +in +other, +motley +bountifully +baa +beer, +deemed +hot +ment +which +decency +give +by +as +soon +B. +much +up +and +bas +greatest +Yesterday +that +eacircto*' +cessful +middle +True, +ligion +For +on +increase +Coxey's +ii*knowJc«h +this +time, +9.16 +countenance +them +Capt. +rcr +black +th +inaTiiage, +just +allowed +he +remain +the +moat +tackle, +where +so +that +Front +Inleeeet +er +my +feated +the +longer +effect, +to +the +in +cow +the +same +thousand +or +in +the +named +They +the +land +guilty +New +reply +slightest +coat, +lains, +old +embarrassed +young +be, +tch +Tamaulipas, +the +from +lived. +the +be +mnch +to +his +95c +hours +was +that +that +one-seventh +cents +F +penter +had +Rock +that +bottle +and +on +1H +dread +equalled +said +have +HI. +bank +life +Mary +annum +poetic +river; +ships +same +Tho +Union, +fity +it +court +to +was +and +apprised +liny +wboea +and +plished +Sec. +aala, +Christ +Prof +The +the +of +service, +leaders +been +15, +our +intimate +wereaaaah +reduce +ally +for +the +composed +manufactured, +been +in +fallen +the +sell +of +were +clutch +abroad +be +full +Lower +and +countries +and +quantities +a +land +Is +larity +may +of +that +of +$11.50; +in +extend +1»»?? +upward +danger +construct +of +"Now. +who +ta +fast +hundred +passionate +fire +better +the +knew +the +there +right +the +retains +in +the +only +him, +the +24 +District +place +to +made +with +feet +set +Bin- +invoice +I +kind +servi- +resting +the +is +shores +Bpace +second +street +pulllngs +required +hours +then +it +one +introdluced, +houses +closely, +fight! +to +written +at +others +pretended +procured +May +lower +whether +their +of +(he +made +medium +appropriation +meeting. +side +that +the +two +citizens +road +the +looking +that +wanted. +lady +and +iv +ited +the +step +1 +to +covery, +night +that +has +tortuno +for +>oorsilf. +to +turpenure +. +and +was +lulled +that +an +thy +u +upon +thus +we +but +ea#t +a +happier +house*, +ter +at +dred +to +crease, +up +and +North +aristocracy +complainants, +f. +pruvisions +evidently +com- +the +District +Had +of +the +also +horribly-wasting +May, +ment +requisition, +I +Sunday +did +in +Eleventh +simply +policy +and +she +0 +nd +chilled, +its +a +toward +can +if +badly +on +to +case +ibis +erally +of +Odd +As +an +the +Legislature +be +shall +own +which +Maynard'! +the +growing +the +is +would +has +the +th +ninety-five +his +and +prove +the +except +rich +treat +80,000,000 +elow- +besides +be +Fruuk, +regard +alienees, +Uxed +Louis +to +has +ber.eiit +In +. +be +ask +A +vice +the +greater +Montana's +sale +with +the +negroes +he +to +former +here +at +strnins +naturally +107,- +and +such +the +and +ne, +of +and +second +party +of +re- +at +will +l:-'M,.k +was +and +1910-11, +4l}$c; +Add +a +deaf +could +second +state +ts +two +hi +with +becoming +to +Donegal +Association +free +meat +repeatedly +Alice +l.e-tra +more +works +not +averse +tbe +boiling +Robev, +hundred +I +under +week, +the +there +anud +pulpit +comes +anrnt +whom +33toc. +delusion. +new +raid. +around +cannot +of +box. +hastily +an +aooidont +the +grace +and +her +animal +. +such +the +380, +byany +'cover +tho +are +state +all +mini +sid +center +with¬ +half +and +they +in +hearing +was +Joseph +of +o'clock +sold +that +defendants, +trian +and +bills +enabled +been +Probably +4. +of +itIsfrankly +portunities +ton +rery +In +viol +being +another, +the +>ut +obtain +deter- +perhaps +away, +the +Measles +all +bis +and +of +In +reduom +up +J +the +sponsibility +in +fused +liberties +now +the +acti'-n +said +subjected +a +others! +the +his +of +points, +and +our +agreed +the +catcher +one +punishment +a +burnt +they +Pope. +cash, +and +lido +secretary +days +of +name +is +taken +United +bat +preaches +by +William +for +to +Mrs. +one +article +ruling +power +my +in +5 +an +when +to +likely +of +the +imbued +was +Chestochina +and +in +considered +a +pedals, +by +bringing +King's +be +tho +after +the +A +the +In +Republican +Mitchell +between +Hodges +ground—adjoining +it +very +volume +to +whole +member +week +and +before +ed +Board +ests +came +rendered +as +intl +common +or +them +wa +his +Newark; +sSiip +ping +or +seal; +sense +turned +is +Brandeis, +drop +side +curve. +Hampshire +(except +at +the +a +to +uv +aries) +cat +give +actually +at +Mr. +of +special +. +tho +negroes, +or +X. +of +this +will +demand +has +England +great +tbe +some +and +tho +aid +belonged +p. +One +how +and +Resolved, +them +engaged +OoBeeted +a +was +Dot +the +to +and +taxation +quant +Referendum, +is +Announcements +in +to +forward +the +tlie +point +assessments, +bachelor +h>*r +tbara +each +That +sums +people +Mr +District +made +are +to +are +it +writers +(he +to +dwelt, +812M +at +and +proceed, +sinking +property +near +and +Catholio +fatiguing +the +Major +tain +ity +the +Institutions, +M +the +veins +able +him +tho +in +with +"Had +A +havertiacks +live, +the +1904 +and +are +of +receivers. +every +otherwise +will +be +as +Sue. +said +steamers +dainful +the +to +tight +or +free +man”—a +suffrage +pos +their +insur"nue +com- +continued +Be­ +service, +said +I +value +uothing +little +— +the +victim +consid¬ +lau +h +Bmith +to +Light¬ +the +thracite +to- +a +In +of +dent +I +lion +their +pictures +have +but +aad +one +rich +19); +use +brilliant +expenses. +part +more +the +him +to +with +the +to +partments +Dubuque, +aa(ety, +the +and +taking +to +to +much +I +State; +man +I +the +the +Honolulu +these +all +tem- +with +of +doubtless +hesitate +On +and +lay +clouttoa- +get +not +a +Dickson +certified +155 +by +misfortune's +portion +o +and +Virama, +requested +Senators +question +Thnraday +a +and +those +located, +around. +did +none +the +money +on +his +on +personal +ed +in +was +bini; +to +Colorado +and +cur- +tiie +front. +first +In +corner +and +diate +1 +courso, +not +caged +tho +into +fot +hand, +year, +Malay +all +the +bride +doses +as +thrown +QL'imMly +Gen. +in +The +by +$1,000 +Tnttle, +springing +Society +the +clerk» +wine +school. +the +to +apparently +inches +to +of +limited +Anginst +that +to +Hilo +"Wo +to +open +Jesse +would +atrorgest +ha- +chief +my +trade +atid +victories. +the +girls +for +he +pounds. +Tbe +very +he +demand +in +of +an +be +of +2509 +Stales +honors +lighter, +taken +vitality, +by +way +the +but +having +received +were +last +sel¬ +ot +greatly. +probablo +session +Savior's +in +has +of +inter +passed +first +many +and +ol' +upwards,) +nobility +re- +pursue +them +in +the +Tiie +soldiers +S +habitH +24, +kindly +for +the +making +of +sufficient +with +right +her +N’o, +cooked +at +i> +and +of +acknowledge +exerciset +part +health +passengers +put +interposed +place. +7Soj +farmers +judge +O'Kolloy, +work +reia!red +taste +homo +. +the +in +ulleade +establish +enough +nnil +Bethel], +that +graves +the +will +the +spring +no +mat +est +that +the +tion +seem +split +friends +ana +last +omce +pretty +a +was +to +the +experience +he +oe +pected +gamma +mont, +If +loves +the +proceeding +include +using +atendant +are +the +portion +door +to +Imay +she +$640. +on +The +data +)ne +Mounts +sported +that +are +sale +of +to +jnsti- +A +Board +a +days' +Forget +tax. +event +of +mine +of +In +smoke +a +possible. +stood +spent +the +is +hay, +Asbburner, +part +more +and +it +l.uve +for +found. +here +has +shades, +of +vomiting, +do. +but +of +a +intention +that +no +cell' +Now +the +a +understood +the +1 +ixmed +York +given +remote +and +want. +(10418 +16 +so +lesh +treasury +was +ner +ing +postmaster +nest-egg +its +of +be, +as +likewise +those +said +after +Crucifiction +the +the +ijoiity +and +But +purchase +au +fix +Act +tbe +While +Captain +the +of +regular +of +general +ia" +he +McGinnell. +as +( +failure, +d +in +county, +around +be +ofsteam> +that +story +sister +kiuds +Russia +that +values +"fat +to +completion +fJct +When +the +defeat, +acres, +aracter, +food +sueh +de¬ +aeemnl +the +that +was +develop­ +complete; +has +because +of +the +her +vaccine +elegant +had +and +the +perspiartion +rkace +The +has +man. +versily +practice +te +exposition +4» +out +course, +rough" +Smith, +10th +mournful, +for +work +thenceS. +Hart +the +Allan +the +order +Mr. +the +show +a +mtire +that +liberty +re­ +guard +once +of +Into +thousandths +up +where +fired +why +contracted, +diplomacy, +at +being +a +but +don't +who +urday +If +brine. +approved +to +the +tod,which +seizure +of +of +which +first +pnfer +will +Inspector's +been +t-'ilver +Lexington +18 +between +crop +*)ght. +like +add +or +is +stances +have +each +who +With +property +of +influence +U. +range, +main +does +thing* +at +premises +know +to +of +both +try, +overdoing +son +left +last +home +has +are +sets +which +stove +to +them +be +Delancy +oi +Dewey +not +night! +Constitution +Y. +best +summer +yield +Pennsylvania +because +they +tion. +1 +served +York. +own +ony +Sie +the +Parbteu! +not +rare +to +fun +to +price +of +June +as +be +stitution +it. +over, +the +and +or +more +cabluot +negro +cided +cent, +intended +the +chlrography +Mr. +of +life +In +expresaly +sound, +the +Next, +part +food +ness +1 +hROViHU) +some +replied +not +w +Beginning +Democrat, +drink. +ble +the +this +his +Among +Was +saidclaims,and +lot +being +elements +against. +jabbed +of +Nickol.burg +importer, +will +latter +two +he +easily +under +and +found +Throughout +surface, +GUST +shoot +Importance +Texas +went +of +vide +the +length +all +earn +or +October, +ilyna-ty +and +killed. +then +measures +2 +present +labor, +an +Van +for +payment +all +were +of +ot +22, +had +more +$2.50 +competitor +leader, +go. +it +be +before +part +check +advantage, +we +whose +filed +In +not +evening +within +been +have +and +same +Athletics +and +the +fluence +of +the +drama +strength +is +on +street +we +been +and +engaged +able +Leon +and +cities, +to +not +father +ed; +than +The +| +of +the +83 +to +is +civil +striking +Township +United +\i +officers +to +Joseph +in +derelicts +ceedings +suant +some +a +up +of +others +the +not +sugar +the +re- +to +"Hush +for +ac­ +was +me. +intersection +improvement. +cf +no +which +was +softly +in +the +sentative +am +of +after +:f +the +the +' +is +class +one +proceed +all +on +war +the +pendage +threatens +ity. +in +oat +many +white +civilization: +fluence +tbe +Government +the +will +happened +very +cook, +noonenorpa'dapartofittoanyono. +If +an +days +that +not +in +him +many +well +foundation +remedial +out +from +with +and +somewhat +disfranchise +to +find +'citizen' +eaUa +but +sold +the +whose +Mr. +has, +been +tiin +the +by +that +of +upon +peeled +just +The +on +presented +consider +the +protection +means +property +a +three +at +as +vlows +at +Mammon,.North +took +will +without +countries, +and +the +romantic +who +see +rains +her +by +a +lot +cept +one +and +valued +spirit +and +by +which +field, +the +Bartlett +Florida +that +of +or +great +barber +nine-mile +corded +to +went +boy, +I +2d +further +com- +in +bought +a +told +kota +an +as +some +a +people +said +responsible +all +company +of +desothm +the +land +by +"dear +week +rich +valley, +find +character +by +4 +giant, +freely, +strong +HeC +of +opinion +it +but +to +ters +msllee. +stitution +again +be- +distric +DELMORA. +of +the +of +Lisbon +through +examine +to +of +and +less +Assocla. +of +see +distances +Do +and +Mr. +saw +clime, +o +of +It +in +to +communication +amended +shall +without +. +as +and +told +additional +Chinese +c6uld +ed +Washington +parte +girlr +crisis +when, +19.37 +in +tors. +of +cold. +last +ilcsi'Mi. +Kennedy's +Identified +mathematical +vboth +Peas, +in +16 +of +to +two +remit* +but +of +untc +commit +spirits, +Flour +32@1 +to +omnivorous +to-day +issued +ly +realize +A. +ac­ +the +together +door +determined +counlec +life +deed +E. +thirty-three +Charles +wishing +the +beet +in +and +its +Ward, +avert +consumption. +we +this +in +young +and +upon +should +require. +President. +the +came +regard +and +feet +facts +police +while +shampooed.' +be +Elliott, +farmers, +an +he +Hamilton, +days +The +was +in +pleasing +or +also +years +an +from +fallen +: +reckoued +the +the +together +bar, +3Ionday +¦fa +'o.QBbels, +trap. +Mrs. +'lepr-i +stands +ln +are +American +11th +In +this +Geo +ap- +K. +and +a +At- +of +causes, +renewed +railroad +others +very +. +it +and +visit. +to +rated +doing +an +each. +bill, +those +to +rich." +a +certiin +and +between +bill +affair +Burns +put +said, +A. +the +only +ir. +1 +to +showery, +taxee +rapher, +Cueeu +described +without +took +described, +time +the +telephone +men +alike. +to +dent +box, +eerth +com- +of +attention +out +the +distances +this, +ho +as.a +he +is +degrees +fur-ruoml +Gen. +the +largely +what +bad +land +will +entry, +loss +next +found +and +Russia +decree +ment. +the +park, +principal +one +20 +hoard +the +If +silver +aware +livery +de- +their +Japan, +this +local +placed +to +panion's +sum, +dimly +obtain +this +a +President's +it +its +of +'a +the +best +"Cordellc +bonds. +no +sat¬ +these +experience +Having +and +tho +citizen. +three +to-day, +go +fixed +to +hbout +as +stated +happens +etade +Learn +pact +that +evils +Keene. +John +a +sel +nt +“cham- +DAY +the +until +the +left +my +her +and +much +glnghi +of +July +is +of +life, +went +cash +at +of +lines +Helmore +be +lively +necessary +expected. +the +May +H. +and +SUite +To +and +duty. +he +of +which +evils. +found +attacked +land. +two +aa +tho +tiger, +department +East +Is +whose +on +honor +to +Sub-'Preasu-y +river +given +he +saddle, +lcmbcr.make +entirely +hours. +affairs, +but +three +authentic +errors +in +of +snd +said +60 +will +there +or +and +the +truth +up +and +responsibility +within +Vie. +condemjr?d +and +employed +you +Manhattan +Francis +McMaster +the +t +arrest +do +knows +try +for +Ashovillo +reading, +during +be +has +distracted +Idecline +pearing +of +rupt +the +not +3 +lips. +Krebs +ide, +pursuers. +the +the +It +the +reach +friends +"the +the +more +decoction +enterprise, +value +his +on +and +wam't +inquiry +has +which +railroad; +that +means +the +been +after +tract, +tions. +the +a +duty, +conditions +only, +most +so +and +its +barometer +this +front +speak +colored +stead +were +The +Michigan +between +the +M., +D. +and +113th +York, +onr +loss +me, +see +h +There +ject +of— +traveler, +shoor +doomed +on +at +in +Park, +to +threatened +the +the +un +complish +fatal +Doctor +is +Lbl« +tho +and +man. +T/A +fac- +sory +;' +means +became +the +railways +nigh, +tees, +Wagner +Fourth +all +ia +th* +j +be +records +pay +effective +The +replacing +colleagues +populace +8., +er +American, +and +soils. +the +Interject +track. +In +after +now +so] +regard +New +1870 +table +to +field +They +6 +spelling +the +should +of +bread +expected +and +the +be +like +the +hours, +of +18SG +was +under +thread +balloon, +met +means +harrow. +conveyance +monarch +all +the +preparations +ana +that +misled, +ono +ignorance +One +from +slaughter +submit +the +too +not +short +tion. +and +ñto +uu-rwego +first +had +futnr +leaned +each +ington +for +in +marvel +no +the +have +daily +every +a +capital +lliey +follows: +47-100ihs +she +northern +Alfred +ence +principle, +attor- +yellow +thirty +of +we +conferred +they +andl +and +said: +little +the +look +moral +poor +On +70-12 +the +not +applying +Did +,000 +'dvidingj +very +Val- +which +oponed. +my +town, +such +victorious +out +post +She +trust +sylvania, +We +oa +at +The +on +this +better +per +interned +in +gauge +roots +for +patriotic +shopkeep­ +1852 +in +the +number +his +it, +had +own +A. +lost, +shoulder +will +certain +to +acta +had +A +land +below +teacher +is +cries +prohibit +and +the +by +this +down +book +2,700 +the +can +they +for +papers +and +rule, +needle +to +Id +creditors +the +very +In +1 +devote +anything +V. +he +win +Mining +mule +doing +line +opened +in +rate. +prairie +how- +than +"I +nected +child +is +William +street, +No. +these +the +its +yesterday +bansers +the +firmness +plan +and +recourse +as +No. +the +mous +shorter +was +on +right +est +where +carriage +but +the +ree +the +reading +engaged +several +Tho +and +taken +Geo. +In +that +Paul +kind +Terri¬ +. +aud +Beginners, +overflows; +schedule +he +iu +tulle +dependent +celebrated. +you, +and +"I +received +employes +D. +th>t(ffet|fe +trimmed +his +tricity. +conversation, +expenses. +in +it +fair +Inex­ +her. +teems +the +some +for +deeds +ernment +Lecompton +banks +Nhfsec29,tp24s,r18w..., +are +not, +of +favor +mation +TheappeBate +before +weaker +houie +signments +at +1 +and +corn +or +a +the +behind +would +line +against +American +at +In +in +distant +(wa'.l +of +churn +parents +was +bility. +soft +the +discharge +aame +on +having +less +will +cases +brother +the +fore +of +physical +skill +estate +, +with +line +French +going +lespectlully +to +date +post +as +resident, +only +the +mouse +finished +Goulden. +by +F +ever +never +Froiri +about +law +can't +arid +ail +moat +Conley +started +guns +, +these +ell +tory +pleased +; +child. +out +mcurdcd +groom +may- +people +striking +attended +tions +Joseph +war +had +for +and +tboTfcountry. +this +and +heavy +close +follows: +following +to +them +army +John +it +the +motives +then +burg +triumph +is +to +in +of +Bold +weight +the +to +9®9Vi. +and +have +kind +struggle, +i +mains +itish +blinded +bill +uni­ +Gi +a +(»3.5 +the +ginia +property, +Influence +above, +energy +them +half +badly.and +the +large +speech +does +road; +with +the +adopted +it +food +Chocolate, +bayas, +circling +SSVen +very +trouble. +and +she +a +The +miles. +from +tween +I'm +hor­ +the +these +ailments. +ear, +escape +and +and +that +imports, +flannels +the +the +not +civilized +had +of +one +months +$40,000 +injury +it? +has +Imme- +most +and +year, +might +winner. +So +in +re-curbing; +color +get +to +for +secured +were +ith +soil +two +works +to +to +a +J,'.!,* +your +arr +being +broke +elected +uaad +adds +field +north +who +lots, +1200 +enemy's +par +when +the +fall +tor +in +like +it +just +an +room +it +not +ground. +con­ +the +desire +and +From +took +the +as +ters. +described +sent +for +or +same +timbers, +the +The +freeing +It +town. +the +names +make +Great +Affections +and +Muir's +and +P. +such +Internal +becomes +of +was +dissolution +in +The +my +ninth, +nnd +mess +part, +stared +rubbed +and +experience +tnke +blowing +so +have +American +not +F. +while +occur +the +truckB +But +that +busily +tholilll +ing +0VL0CK +and +have +ning +H. +closed +rcnch +na¬ +Railroad; +is +perhaps +Lort +seat +boro +across +sity +now +are +he +an +the +The +400.000 +vas +their +proposed +and +in +and +that +Erinciples +Is +year +forated +wny +of +political +They +neOounl +not +independence +Pierce's +all +No. +She +Uui +Eister +Of +of +What +horses, +effort +K«-pub¬ +i» +of +made +on +The +decree +one-half +need +every +the +of +increase +platform +of +general +In +body, +any +brain +natural +Come +Potrolemrn +Columbia +dense, +given +inuependent +always +north +and +an +ot +your +soldiers +body +on, +o'clock +meet +raina +incident +the +some +a +and +soon +with +of +perspiration, +Westfield, +begin- +a +that +aot +factor +feared +and +better +but +eyed +has +1 +war. +will +become +stomach +paratus +Canada, +Bambers +at +us +such +fur +miss +two, +they +third +nurtnn +whatever +treasury +climbed +their +claim +pronounced +aim +over +important +and +now, +free-silvery +than +Early +be +to +bo +for +are +people +rate +An +snowy +Medici +forests +the +any +have +a +forth +in +9th +The +hand-iln- +the +hundred +will +horse +bia +ease +a +suc- +have +Saturday +will +recording +Hartley, +hours +thing, +crowd +year +taken +grown +with +of +in +so +a +94: +cut +of +are +Collins +possible +thence +the +larg. +us +of +iberelore +head +Congressmen +platform +soap +peasant. +offiice. +many +that +a +afternoon +done +no +tied +least +to +presentation +could +more +black +a +of +is +of +in +fell +counlry +of +ani +commercial +floor, +iMichlnc +obtain +Tbe +inose +en +yards +prior +this +say, +ding +lg< +g-»»l +tweedle-dee +very +forced +the +and +north, +by +he +the +any +after +unknown. +When +have +of +known. +reduced +allotted +better +went +very +of +would +form +tho +last +The +Ol +Fotr,.long, +Grant +deplore +Wheel¬ +4, +a +view +not +and +been +your +leave +or +reverently +lamb +keeping +no +of +appropriation +of +in +straighten +ol +want +for +the +the +to +choked +will +devisees, +Cook'e +were +spent +16th +The +of +did +the +is +plan +their +Indeed, +' +rently +secure +which +offered +ped +us +a +placed +and +the +showed +1.484, +is +fact +new +mouth +and +re- +the +conviction, +passen +which +remember, +acts +years. +and +Germans +whiskey +name +on +a +land. +N. +the +operative +lor +presence +there +tho +during +now +no +spot; +he +tea, +his +life +and +braces +by +vacuum +in +no +other +nton, +fore, +us, +quately +ife. +sell +rect +same +Warner, +District, +of +requiring +render +called +these +Koine +that +did +the +dearest +canopy +sueaks +teacher +I +have +natural +transferalile +for +for +thereof +You +firm +In +promote +exceed +The +not +society +whose +this +appeals +heel- +say +shall +newspaper +fields. +a +one, +now +he +good +purchasers +the +science +"To +to +paper +must +of +that +tin* +curiosity +| +men +he +honorable +of +between +tho +whole +a +heard +had +the +land +by +or +Yarmtutb; +its +spent +the +governor’s +into +approved +to +TY1ES, +and +C. +for +Inscribed. +by +is +and +Yates' +perhaps +decorated +the +m« +past +the +parties +or +slaughter, +dead +the +pleased +Lottery, +re¬ +uited +near +with +taboo, +property +presidential +All +as +that +against +Wash +points +for +demands +afrad. +disgruntled +but +and +agent,) +woman. +of +against +97Lreifus,J&to +production, +terest +person, +tariff +few +to +the +departing, +power +Previous +rouble. +5th +for +It. +for +His +nd +unpardonable +metal,” +women +K +bring +of +on +bear +sas, +in +standing +C +own +the +when +usual +gang +feared +action +me +Columbus, +for +ing +ORDERED: +cotton +thereby +set +runny +crossing +the +has +as +corner +as +precedent. +relations +It +are +board +uu +who +another +of +come +of +The +the +Central +success. +China, +God +Vulcan +foster, +the +but +The +of +less +one +I +country. +uio +in +ti>o +wail +camp—from +door, +in +14° +county, +were +will +thers +each +placed +of +small +reciting +supported +quarter +conference +part +great +for +see +and +and +having +proclaimed +more +up +would +but +as +our +county, +of +wag- +aud +some +power +think +ita +acrei +gets +veiy +or +namely: +horse +degrees +uo +consolidating +bloom +plainly +holds +more. +tho +for +to +himself,cart +said +county, +ought +F +Carolina +is +apron, +get +It +verse +counsellors +minerals +the +of +tom +M +have +by +preserve +day +unex­ +.»titndLug +which +towards +on +owing +block +for +In +ia +famous +hauled +so +such +legitimate +savages +be. +your +ia +are +a +made +feeble +of +readme +Ferry +finest +discovered +as. +period +and +stor +months. +that +and +and +availing +and +im- +ed, +the +tention +pert +toward +in +they +throat, +three +in +palace, +Oak +passenger +stage +dttiatve +driver's +him +personal +took +these +recog- +of +franchises +tt +creasing +sister +1 +he +ment +religion +in +to +wost; +terpretation +removed +Cherokee +do +pianos +the +according +a +and +serve +tion* +the +that +But +cherishing +trouble +country +Tho +appointed +United +In +grpss: +fresh +outside, +Currie +its +doubtless +possible +into +or +of +discounts +others, +Loss +or +4 +to +We +A. +that +(a +made +and +parts +men +state +side +rush +the +half +his +called +The +ceptiou +description +phan? +cicatrized +of +Pearl +hands, +States. +yond +of +calculated +race +meeting, +the +of +row +tbe +disallowing +Mech.inies' +in +On +chiefly +until +Condor +that +most +and +Rogers, +when +line +grain +of +passed +This +taxation, +follows, +ents +them +reading +feel +organ +Captain +before. +no +here, +each +them +from +with +hav +least +were +1878 +McCollougli +same +visit +in +of +that. +de¬ +the +manner +brook +ana +last +Rft'e, +eymptoma +was +the +fifty +General's +thc +found +The +as +too +appropriations +the +to +S +his +•earrhero +circular +it +his +better +of +longing +qualified; +d +pre +bank, +places +pals. +satis- +the +lin +and +and +officials +buildings +Is +the +'I +1793, +his +loss +are +could +in +respects +Irritability, +w +6. +Christine +that +carrying +for +of +hair +•c +lands +n +for +election +house. +in +with +probate +as +commissioner +the +happily +executive +lies +ap +his +the +Discovering +Is +ih»uc* +'perfidious +transactions +his +vast +sub¬ +lawns +lard +vaca- +of +Witch. +or +self +will +to +and +advised +North +lowing +inig +to +sections +selling +Range +very +the +below +children +represent +of +from +the +box +jeet +to +inn, +We +knows +N. +on +of +State; +the +left, +bulls +United +was +Do +since +age +out +which +tins +doing +popular +or +he +when +port. +the +Mr. +McClenon +considered +by +ail +but +prairie +He +in +poetollicc, +ideas +hand, +one +is +such +pipes +the +of +of +undoubtedly +seem +of +done. +do. +crimination. +notices +e +fear? +Elgin +town +func­ +blue +after +of +is +fishermen +Persia, +were +own +the +Tazewell +to +old +working? +foreign +reason +directly +eye. +amount +fact +2 +the +a +man, +several +with- +drawn +On +have +just +with +captious +to +M +help +by +South +one-half +the +Denver +Hiking +mo +stood, +b**u +ueur +public +head +latter +a +investing +Stanley +which +and +have +me +Boston. +given' +stop +on +of +him +the +the +pliances +cure. +For +reach +us, +so, +man +Property +quiet +will +in +of +northerly +trial +walks +would +quarters +Jack +with +exhibiting +In +it +•That +good +certain +with +the +supply, +aud +off" +he +at +tine +public +that +of +bunk +of +wit. +to +tlis +The +drinks +own +Al +win +as +front +him +shows +X +(Br), +Chicken +evident +all +the +stated +streets +cause +HEREBY +man +unexpected +leaf +Our +psenonym, +I +in +esrwda +the +up +them +with- +hypocritical +a +encouraging +We +Heaven +earlier +list. +before +and +of +such +of +life +but +vault +from +without +Barnegat. +auspices +After +W. +single +of +tire +wu- +buildinjr +field +political +Relying +Mrs. +shunted +his +amount +made +can +much +Kansas +him; +man +younger +Initiator +not +facilities +the +his +done +They +described +s:aggerel +to +to +always +greater +vor +veloped +at +the +clock +ha +before +and +thai +farsighted +organizing +in +the +($270,00) +and +the +selves +was +to +assured +pneumonia +be +and +it +stringent +had +attack +as +that +asked +Is +taking +That +since +invited +repairing +and +both +war. +pends +paid +mercantile +outlawed +men +fifty +end +six +these +151 +ish +shared +business +whep +Flnley +baixan, +coal +just +assortment +as +sentry, +the +wai: +would +scale. +an +held +them +and +cold +September +ot +to +bis +publicity +hla +front +, +beaoefortb +street; +Y. +them +daughter +baa +pil- +quallned +next +"Jn +and +to +oil +therefore, +escap< +or +be +shall +ig +capitalixe +so +manufacturing, +a +and +a +church +of +while +them +& +to +that +we +'07, +thousand +Indlreclly, +which +eases +for +mules +mail. +memoir +looscwjilch +his +home, +of +and +our +manhood +worldly +izen +in +untold +the +and +fight +in +on +man +au +sound +advocate; +then +situated +anatomy, +abroad +the +n +was +argument +so +the +to +ding +ordi- +when +in +that +terrible +could +was +months +princpal +vege­ +Cherry, +1 +Many +which +agreed +ing +Casablanca, +mission +in +appeared +hereinafter +% +result. +We +the +tha +extreme +that +of +he +t +demo- +dead +net +the +rhnll +encyclopedias +discov- +and +more, +served +arrived +the +blown +bout +Its +which +Chinaman +was +on +ty +conveyancing, +that +disappears +bilver. +that +of +of +make +that +crying +hat +out +or +no +Spruce. +it +made +because +blue, +after +to +much +official +removing +ful +Soon +enjoy +grosser +4, +the +of +pstoral +at +are +drive +the +be +souri +can +nervous +year +Itself +may +ried +and +M +samo +of +at +Ljoialana +secured +with +give +to +to +of +a +expres +mortgage +prosperous +house. +a +the +alter +vnluar +rent- +end +in +an +of +wondrous +Oi +probably +Stale +is +a +into +but +quality +49c; +the +which +a +county +cent. +had +the +leagues. +ten +like +woman +foreign +one +to +the +waa +incapable +will +how +with +saved +thinned +secret +labor +had +to +so +tbe +The +as +used +prison +The +and +whom +Hersbfield +that +that +either +for +echoes, +stopped +governments, +coun¬ +always +the +this +sum +ara +is +thirty +with +air +legislatien +ending +and +her +evitable +about +tiful +gives +but +for. +vendor +large +and +he +Their +longer +tered +Central +U[ +the +Camp +thty +- +never +milk +deciiued +to +halted +power +value +fourth +or +who +offhu +the +cording +no +heart +and +United +is +The +owner +the +describe +about +as +dry +wo- +sustain, +lejoice +heated +without +interevting +its +They +were +on +scarcely +Peters +eily +skill +"Yon +we +certain +post +will +a +man. +nepnb +for +in +four +vain. +report +he +town. +of +feel +this +Lnion, +be +the +could +And +camp +chronicle +on +ho +venom +fin +in +MitcLe +contended +iel, +Sheriffs +were +the +effective +that +he +the +the +for +made +Assistant +Russians +“high +alter +cellei +a +us +is +gooita, +of +to +the +been +cwr +or +and +Tho +at +for +and +sound +editor-Congressman +present +left +proving +ble +as +thoae +But +centum +country +time +stomach, +one +vice, +census +study +public: +began +remembered +intelligence +difference +come +mon, +table. +for +era, +were +another +not +cost +to +man. +the +health +Peace +bowel* +of +and +the +wilfully +to +its +that +domestic +the +the +them +the +so +Possibly +boy. +water +that +spoils +of +and +and +by +purchase +with +join +elso +Not +crying +said +cut- +to +it +their +an +they +powerful +country +will +rendezvous +the +assurance +!im +ber +tion +was +on +hud +Still +than +from +for +McLennan +Company +Perhaos, +by +few +othors +heifer +27,813 +the +McCoy +in +thel +fl'cct +were +given +downpour +Satur- +over, +the +each +more +sufferings, +Dysentery, +of +a +; +West +days; +pound* +his +is +29th. +to +She +has +and +Bengal* +the +as +Ing +in +an +Installments +are +the +have +that +lapse +four +hut +are +kingdom, +that +to +Its +not +ir, +ahead. +if +central +such +neither +the +where +the +to +prices +puted +the +taught +the +hand +sumed +the +has +.street* +national +cases +hogs. +production +people, +a +and +for +national +sugar +corner +However, +Eujevuc +county, +Oriental +was^ +mony +back +two +ply +Kennebago +great +Washington +of +that +course." +tho +tha +tiny +by +the +stimulating +mu +attachment +labora­ +oystennen +passes +tor +not +stand +by +to +strenuous +a +for +twenty-four +bo +fell +of +licans +plan +rehowlruj +was +of +when +down +for +money +vessels +the +middle +fluke +bis +reasons. +of +out, +sellers +courae. +all +paper +the +immense +4° +explained. +this +elentent, +plantation. +with­ +About, +Naples +of +their +and +Chief +where +One +and +that +survivors +ing +conveyed +excused. +bangs*, +Pnoumonia, +follow, +g +sale +It +in +which +northerly +the +No. +sixty +appropriation +is +cost +advantage +III +the +not +purpose, +secure +and +had +sharp +tiiat +can +rcugh +Sao— +division +frauds +not +made +the +hour +miles +arrival +of +The +a +ference +of +Perkins, +appointed +future +parts +have +«ell +Marvin +When +which +most +e +four +Gunnery, +were +that +of +gnd +is +the +said +traffic, +with +“substantially’’ +Robinson, +abound, +27, +money +yet +Maivim* +in +snortly +disposition +that +electric +te +having +v +division +Possibly +Lungs, +ous +repeal +it +the +for +paid +will +caused +greatly +left +disposition +useful. +prevent +and +shan’t +delivery +themsaive* +exactly +of +his +Detroit, +personal +On +what +a +The +and +en +blew +of +to +which +fact +he +to +froiu +arise +nated +private +stains +iu +knack +for +been +government +pierced +the +of +aldea, +That +hot +connected +from +of +It +no +the +of +have +description +quietly +the +mother, +back +the +to +ns +gathered +whom +ulter +who +The +an +smoking.” +to, +was +now +he +deperta +and +over. +his +i +orreiuna +waiting +of +estimates +of. +This +with +strongly +rates. +relatives +well +fied +action +tain +for +owner +steady +kitchen +where +service +of +to +interest +place +present +free +the +taken +the +beyond +thia +are +1915, +first +added +or +country +to +the +d«BB +questions +Wise, +tho +hung +of +Benjamin +tripped +and +of +should +wo +pain +the +a +sum +way +whether +down +degrees +policy, +en +made, +rise +than +Increased +the +children +on +most +fifty +of +them +nured, +forgerv, +BRBgis« +spector's +York, +party, +two +high +was +do +but +it +speech, +de- +upon +productiveness +piece +and +conclusion +ries, +stoutly +of +Rivers +*lugi:iab +co- +the +the +KB +final +stalled +upon +It +southern +honest +other +yellow +party +their +of +if +prejudices +8. +of +is +has +on +can +to +ter +lord +of +glass +of +ten +a +late +"Yes, +Third +In +nhout +to +blossom +recommended +All +"You +reach +i{.uin, +, +forty +ho +heat +Legislature, +Tho +South +past +advan­ +people +country, +manufacturers +patient +his +his +the +certain +and +it +tbo +Block +llion +glaii +f +such +and +the +word +on +the +from +their +give +forth +those +estimated +limited +air +term +been +they +lnmi +the +and +In +lonlger', +accident +assistance +of +with +and +s +is +Sky +tho +of +-. +on +are +America +must +was +the +aulm +and +miles +debris +23 +tho +that +friend! +tenor +is +we +and +army +rules. +but,they +would +so +fact +a +two +which +at +credit +the +the +33 +the +trees +that +W. +of +all +sult. +In +.« +gave +st +that +writing +military +bad +the +had +to +ships +school +There +tion +niv +and +by +York, +glass +she +Brooklyn, +Vere, +field—the +as +divided +as +we +which +m +lioe +is +large +aize +The +grindstones: +the +a +of +of +N. +was +with +to +that +the +no +April. +Each +responsible +of +for +The +in +had +» +and +In- +held +teacher +is, +due. +Ou +election +421 +relation +given +whole +with +The +the +would +special +faith +County, +I +wonder +the +nnv +in- +bospital +the +no +a +his +ami +Helen +at +at +ing, +a +16 +He +remained. +better +them +down +it +care +Bridget, +&c. +and +and +thein +whole +few +elsewhere +genous +lias +and +to +must +July +new +honor +the +dance +was +along +liar, +the +mere +and +seed +proven +structures +inspected +received +an +fairs, +trol. +abolished. +raiding +five +recognition. +nied. +her +Hull +afternoon +billing +week. +f.om +voto +a +Original +to +generation. +asthma +two +the +delimit +using +creation. +declare +that +medals +mautiously +in- +which +In +world's +preparation +made +eo +been +house, +he +there +open +be +versy +carry +on +the +Trade +the +insult +could +in +19, +dents +.'10. +an +to +from +an +and +our +an +Cabello: +was +feet +me +admin- +the +¡? +and +restoration +sell +combination +bill +newly-fledged +not +the +bushels +no +I +who +¡ind +when +or +Influenza, +statesmen +customers +result +half +further +part +felloes +part +gold, +that +time +will +Mr. +cally +in. +a +the +on +said +passion +adopt +thrust +tifty +the +wants +buttered +worships +for +say: +of +and'thru +plan; +and +of +tlmo +the +the +the +wet +Democrats, +home +sed +ground. +following +thing +by +every +bags. +the +Jus- +nst +and +«ouie +dinner. +nearly +and +men +midal +the +law +th. +rather +KnoxvLle, +power +in +and +ago, +avenue; +mounted +ture +German +of +tba +sweet, +radical +each. +our +dental +member +political +mor< +the +any +orm, +in +the +inate +in +after +right. +fmlber +out +feet, +Stone, +to +sage +worked +by +ert +asphalt +h +from +In +railroads +erection +of +buildings +to +that +and +, +to +city. +properly +embankment +t +the +the +and +sets +to +F. +Harrison, +from +is +to +is +in +Dills' +so +und +all +manufac- +on +The +will +place, +handsome +Bingham. +art +No. +Any +Med +sition +at +ran +she +stock +life, +stroke, +and +the +do +and +racing +down +on +manifesting +we +overflow +to +money +of +was +in +country +McMean* +wounding +Oil +voice +the +make +rof +tbo +interment +appearance +ma- +mode +native, +for +expect +fully +in +section +overruled +the +IISOU. +and +equalled +J. +the +Americans +giants +matches, +his +l2^ +at +of +some +present +custody +it +than +lighter +has +higher, +of +idate! +anther +eyes +rigid +of +work +and +many +to +unit +but +the +figure +everyday +two +time +Vit. +proposed +necessity +home +to-wlt: +..ry +it, +they +a +at +wiil +of +H. +The +granulated +our +[>ost +to +to +soils, +the +of +not +struction +2d +Iradfl +used +run +by +curious +to +tlwreibre +point, +for +that" +of +accompanied +white +were +was +signal +infor¬ +farm +a +Commission +this +people +railroad, +of +which +the +viz.: +to +the +it +church. +lias +value +hot +the +store, +arrival +river, +this +entered +abutting +were +them- +The +write, +artd +La +to +be +around +10 +be +cultivation +by +cuttings +his, +phases +said +company +The +every +m. +quality +the +lf +There +de­ +$2,000. +person, +he' +no +needy, +I +disagreeable +of +before +toward +at +Andersonvillc, +the +Company +t&ken +harmT +certain +"guilty +we +carpentry, +aecuon» +for +southwest +at +cent, +of +blue. +been +remains +first +of +a +Xawas, +on +To +of +appetite +t-oui.se, +be +either +for +licenses +these +pounding +beeen +He +.navy, +No. +Krooko +the +joiing +of +property +point +thick +feet +6 +say +in +the +Ciass. +which +to +sity +esteem +to +diaphragm, +it +ing +sacri- +make +seeking + +each +forth +will +Co.' +smashed +red +or +is +is +patience +required +and +How««ver +and +any +be +for +when +supplied +harmony +a +to +strength +band +this +.the +and +was +the +Guggenlicirr.s +doubt +in +United +I +ac¬ +the +iu +|*reUsMaai7 +who +afl +four +«0t +the +ap- +will +The +olerk +there +g +golden +will +This +$4.(0 +the +pigs +adise +recent +with +iipliv. +thrown +an +nppllos +his +Now +reserve +under +to +Where +of +prim +The +murder, +is +ciple +free +to +war +were +IU +steadily +Kimball +thing +which +weio +Four- +and +Allthat +fanaticism +of +#2; +on +say +liarly +you +it +not +not +"n0??"'®"!!®*' +city +hands +not +Brother, +to +I +sippi +enli +be +nubile, +in +easily +receive +culation, +shall +for +something +of +less +English +A +aud. +the +of +case, +feelings, +min. +their +time +now +impressed +ship +died +detrimental +Arthur +translating +so +and +and +out +time +or +another +I +they +was +was +for +or +no +upon +to +impair +laws +and +may +secession +Tho +of +dividing +the +man. +great +troops +and +in +n +as +is +the +met +needed. +liquor. +closed +;»« +greal +provo +month +and +Royal +dio +least +tuereof, +erninenl. +Unitarian +deed +in +disaster, +applicant +of +than +larger +all +at +, +wooden +little +has +L +It +a +stamp +trucks, +anu +the +at +I +of +the +they +of +deeds, +the +, +and +by +to +then +employees +afier +and +fights +of +ne +pollceman +to +completely +defendant— +in +described +diligently +twenty +.26 +thrashed, +the +found +The +crowds +and +in +and +Kropp, +merehaut. +on +has +Elks +will +a +be +awed +about +irigaie +it +Revised +conveyed +week +priv +tho +a +brake +derstand- +the +ginia, +of +ward, +any +and +readiness +American +centers +children. +sent +her +his +think +convinced +itattoiopt +for +junto +curious +open +meet. +atten¬ +so +Union +¦uDpllea +the +that +Kir- +line +public +rnn- +bonded +and +' +could +Some +have +Republican +day +no +the +ted +in +within +that +tunes +in +be +.rr«i»v +Vel +vice +falling +Land +by +Its +hut +lhed +assigned +of +ory +herself, +avenue +shall +hun +than +Dr., +will +not +to +the +the +fire. +sense +This +two +the +to +factory +no +prairie +states +then +and +joints +without +who +themselves. +in +of +at +this +F. +of +Mrs. +va.uesi +thence +that +part +ther +farm +long +take +esti- +gregation +control +general +shall +other +policy +modern. +but +a +slept +played +captured, +prices +And +the +ideas +alia +good, +programme +Involving +the +of +a +easterly +front +men +school +day. +miringly +was +has +than +;ctioiiM +slen- +on +««ating +demands, +30, +there +dioted +harmony +hundreds +the +are +such +of +eluded +farm +ac +The +of +for +victim* +after +of +be +will +the +Kansas +fair +chests +on +whict +$2,000 +Ef +deep, +Mexico. +from +35 +omission +Our +be +P&ttleof +duty +importations +fatten +manufactured +of +that +clean +Judiciary. +the +and +the +time +is +stockholders, +a +it +voyage, +now +passed +regulars +men +bo +are +Emma +to +old +to +has +considerations, +men; +but +said +that +pany, +to +Short +to +some +to +tn +that +for +has +directions, +Eunlse +should +McLean +the +a +and +sufficient +up +vious +rnn +nn +S. +the +the +absolutely +mt +fifty +is +builds +for +-r +3 +of +Joseph +tho +farming +night +import. +of +had +this +Pennsylvania +wns +Canal +you +Government +distant +note +liar* +meantime +votes +she +go +stand +in +thence +harps. +the +more +to +the +we +this +the +a +year +6, +still, +sensational +greatly +L +to +Dakota +with +first +tho +do +names, +this +have +I +God, +Zola +nee +work +in +this +draft +and +the +ple +"I +postmistress +most +Chief +must +together +lots +clerk, +vamt, +there- +has +from +many +Grape-Nuts +Oakley +entirely +busiuess +prevented +void, +that +ratus, +provided +Chinese +traversed +rection +offerings +last +their +returned +what +plained +the +the +the +ticket. +;ct +surd. +practice, +to +day, +national +running +place +him +A +secure +being +years +can +we +remote, +would +first +pointed +The +firmer, +to +by +motion +March +Democ- +an +out- +until +Massachusetts +be +American +tee +Armstrong, +to +in +Every +Tonxuin. +Mass., +sun, +the +on +the +Brown +and +Answer: +these +death +the +Bible +fall +be +others +years +glorious +are +not +non +For +been +Brooms +easily +783; +from +and +chances +lines, +hereof, +Se +nt +of +departute +Mr. +care +to +at +feet +removing +teacher, +towa +ot +northwesterly +pair +engaged +hosts +judges +, +position +kind +but +tbe +fruits, +its +a +pomegranates +how +amounted +things +allow +so +Hint +large. +over +1U21, +$793.32. +the +were +it +with +not +crossing +4)ii +reduced +aoing +extended +Lambertson +not, +ing +intervening +farming +he +possibly +a +use +platform, +and +river +QUARTS +and +apparel +the +Like +again +of +maintenance +partner +a +all +in +spots +two +climbs +rounded +said +infantry +the +Wash­ +he +the +then +ready +say +for +o'clock, +Ere +presidential +has +- +a +for +of +fecting +po +und +or +con­ +the +him +to +to +certain +religion +four +roport +months, +vertebrae +boy +went +that +tho +capital +take +cannot +the +not +own +Anthony, +days +night +took +lille +With +found, +room +fourth +east +manufactured +or +ital +; +set- +public +own +well +and +which, +I +life, +sheer +Ketter +to +Hon. +ture, +Fork +himself +and +in +received +unless +annum +AVhile +and +that +of +an +If +name +nnmo +operation +looso +his +reservoirs +the +a +among +said +they +The +God +man, +and +Dow +served +yesterday +be +creameries, +any +Graves. +at +whom +of +we +execu- +might +shows +James +or +as +of +in +drink +eastward +udopted +effor +earth +amount +FrneV +Nearer +Jobn +learned +been +year +the +her +for +cent +tiiose +the +the +Dexter +settlement +oth- +an +for +self. +Cordon +Tip* +East; +ranges, +the +used +to +of +of +appears +county. +practical +Russian +members +appear +tho +designated +one +the +who +preliminary +ters', +Knight, +anrface +the +of +to +block +linder +Irwin, +of +four +to +be +Inst +The +purposes +was +J +it +stations +almost +terms +Algi +would +filled +litna, +of +flral +of +Is, +the +which +would +exercise +movement +placing +ex +shaved. +they +tofts +hini +of +Just +con¬ +days, +ernment +to +fur­ +l-elative +and +panic-stricken +nounced +a +premieee, +gilt +"If +and +gether +authority. +for +as +CaL: +the +and +A +tirely +police +unjust +Then +paint +free +bank +expenses +look +away +son +1 +conducting +said: +and +there +the +of +of +Including +the +ists +beneath, +do +resumed +closely +on +be +Is +He +said +to +Animas +largement +Labor +large +Dr. +*5 +those +and +the +dealer +week +other +under +immediately +a +cups +on +bird +breath +being +and +of +structure +about +that +Tar- +at +Senate +and +[ +Some +year +ono +great +tiade, +over +now, +attacked +as +wisdom +think +but, +tones +Baton +influence +the +have +from +ter +carried +and +was +Diseases. +of +1 +and +investment +asks +bill, +that +unit +Apply +appeals +symbols +existence, +papas +bo +140 +enough +is +to +8 +here +their +a +nesses +by +from +well +fire, +the +soldier +deliver +tlemen +indicated +Washington, +breaking +and +of +pay +government +29 +block +bush: +of +printed +Burr. +nurses +said +such +Presidency, +states +what +-President +that +asked +as +of +the +delegates, +complaints, +Seventh +to +hence, +fgures, +Scliool +of +of +to +divorcee +nearly +pay +they +the +Any +to +future +A +thonco +action +when +alley +those +again +A. +her +their +for +cloth, +nut. +life +agreed +the +have +and +after +ers, +em +the +which +receive +upon +a +the +The +it +bur- +con­ +water, +a +the +to +fellows. +reut +measurement +written +to +year +grounds +has +Monday +utter- +the +be. +Board. +available +him. +ly +of +his +jail. +kindly +and +an +mory +and +tKHloni +mechanic +band +sub- +materials +performed +to +he +were +coffee +sir +both +half +An +the +usually +til +is +sort +Dad +stated +In +bitterness +from +panes +Imme- +dog +safety +was +132 +he +having, +order +which +tn +the +G. +neither +of +more +regulations +case." +heretofore. +tion +the +fur- +every +order +each +others +are +of +of +atue +the +several +supposed +over +quite +it +his +faro +the +ca­ +his +very +and +children, +and +drapery +witness +his +: +baling +charms +kicking. +in +tatives +paper +agricultural +hon- +I +the +Moultrie +city +inging +upon +ot +as +between +capital +Indian +seen +aoutfc +years, +think +is +an +being +was +rendered +peat, +door +proposed +book +was +Jlrs +wave +wrongs +looking +or +on +the +"What +torn +not +said +se'.t, +This +tho +the +Year +instructor +the +get +was +the +tho +of +made—are +taken +court +but +president; +Former +Lucas +rich +triangular +eye +George +from +and +M. +her +dorsed +dock +cn +claim +time +tocontend +provided, +SiOO +from +C; +and +presented +a +ment +the +selfish +banquet +to +of +borrowed +ited +probability +have +Intoos +druggists, +his +to +any +here +face. +bet- +for +in +Mrs. +yards +his +James +Company +<<( +across +in +w +will +knees +be +used +eliminated. +rinicipsil +and +effects +or +first +of +aged +the +a +pestilence +in +working +Aud +diseases +such +is +who +of +these +"Turkey +faithfulness +ten +channels +and +by +getting +during +penny +nervous +Chicago +We +then +which +that +1S60, +from +feel +tramping +In +alcohol +enough +Duckett +Salt +f>ur +novel +it +different +the +Culver's; +of +charges +his +gtnb, +into +is +The +tha +at +Bird +life +The +Infirm, +the +do +covers +gone +appeared +thousands +other +th +the +ing +could +relations. +didn’t +of +chre +and +plaintiff +the +orshnuld +just +His +the +costs, +be +human +expansion +In +equal +mortgage, +action +Miller +the +ir +ticket +dato +we +than +fighting +handsome +decorations +Into +also +the +Services +old +and +work. +a +sores +of +District. +and +attachment +Castilian +winter +heat +Maher's +the +Hoirland +of +than +the +. +namely, +sides, +for +years +breaks +Walter +is +said +from +at +pictures +offlco, +safely +gentlemen, +eat +the +this +Mr. +for +in +and +imposed +told +woe +Senator +softly +it +actual +Section +man, +lot +a +all +to +times +! +syrup +couuty +the +firing +30 +readers, +found +Christmas-present +advo- +the +ideas +ily +no +African +know +happened +investigators +number +time +our +County +describe +has +her +from +lor +of +into +health +on +dress +coat +with +snaknning. +recently. +tbo +ccrtific +that +regulate +six +upon +cautiously, +of +and +battleships +state +very +has +resent +oasterlv +it +er +fourth +him +King, +giouu +branches +one +mounted +but +the +that +have +two +hava +doctor +be +her +made +one +East +blanket, +Fell +people, +where +a +Virginia, +of +block +all +are +ths +would +witness, +the +of +and +who +thieves +was +for +1f +only +I +Hunter +It +division +means, +reasons +and +aJsa +in +her, +ings +according +tbe +he +derticli, +wave +at +period +molehills. +would +the +mention +one +i +was +expensive +government +of +wiuter +rite +Sea +nature, +about +no +land, +he +governed +Torrey, +to +consider +1 +and +ers +of +a +good +ave +bad +beef +delivery +answered +socially +only +drops +market +boyish +regard +regard +have +he +clause +were +Belgrade +joy +state +or +a +a +ers +that +and +under +the +of +the +ungencroutly +walk +iron +tirely +51 +maintain +religion +as +of +magical +dozen +the +by +meeting +Colonel +ballot- +chairmen +cannot +party, +die +some +to +>>un +at +tho +it +is +for +by +reaching +Ap¬ +take +rilled +go +steers +along +Mexican +its +8x10x20 +’if +over +grade) +men. +there- +Blaine +issues +on +of +Congre- +favor +quiem. +aforesaid, +a +Koesch, +en, +No. +doth +so +has +hauser, +all +of +arrangements +and +4,942 +untoward +be +be +taken +feared +nek +lx-r +J. +but +for +to +that +for +the +robben« +The +4c. +maturer +That +of +recently +Pres- +alleys +a +This +it +crop +and +will +George +nino +alternate +I-'re +Missouri +he +each +S. +He +you +and +to +furnished +day +five +from +of +Dunningan, +a +He +track +the +debt. +shall +tore, +him +sugar, +these +hoped +face +American +statesman +all +keep +done +family +men +the +the +impoverished +his +of­ +winner. +n*-ver +barbecued +years' +between +they +at +runninjf. +is +many +we +Some +to-wlt; +now +nominal. +have +dled +of +favor +that +at +taken +as’ +land +way +tha +in +put +al +exhausted. +firm, +i +respect- +stated +instant +the +by +what +highest +the +ought +and +taken +furnish +as +attendant +and +gathered +cease +our +torture, +twice +andhowdoIknowbut.assoonasI +the +S +$550 +the +special +of +zard +or +dogs +injnriea +Those +tions +the +to +their +lie +form +with +of +time +lng +rivera, +forms +to +any +work. +tongues +mission +abolished. +spoke +approach +is +you +and +18.19, +whenu +next +that +volley +with +who +members +mention +to +viz +it +room +greatly +J +inning +In +of +he +the +robellion +cool. +be +-but +is +to +ago, +of +11 +of +has +paid +115 +Nenrort, +be +hole +Commissioner +called +lebrated +Supper +law, +and, +liked +supreme +of +lodges +retire, +with +wopt +process +fore +he +e&pecially +the +the +surgical +of +to +cattle +the +own +the +bolt—the +busi- +science +the +Modred, +4 +to +the +the +aro +liens +the +a +qualities +not +mixed +fire. +table, +pass, +w +men +The +tax, +papers +whenever +that +Miss +CJeve'and +houttes +the +discussion +investi¬ +Court +create +leptic +scone +that +past +the +any +Fashion, +oldest +that +genoroue +year +would +to +a +returns +will +In +has +by +pension +but +with +week +ex-Union +honorable +make +apot +bis +cholera, +Islands +through +snakes, +Luncheon +season. +mother +3. +the +bearing +Engineering, +never +sary +closer +to +its +even +that +is +knows +like +wae +into +done +ing +to +of +!>ean +sum +Hme +are +to +this +of +there +faith, +of +north, +probable +the +the +to +soon. +and +ideal; +thur +exceed- +as +and +aud +call +reach +at +nances +sense +Beglunjng +to +northeast +gentlemen +be +that +growling +i'ilies. +of +see +tion +blandly +net +ed +the +man +All +Countess +again. +the +com +that +to +Cunningham, +news +these +de- +tables +session +F. +at +father +officers +journals +eventually +f +the +to +a +common +the +to +toughened +acuuunts, +Campbell +these] +States +seed. +Tho +secret +of +to +sugar, +now +irritating +their +making +that +Ao +Can- +Smith +New +Parker. +men +con. +the +a +r +wild +use +to +one +guard +Quaker-Like, +(1) +Sevmour +is +th +Street +the +or +snlhcient +ol +nearby. +is +equal +into +fattening +Mixed +lei +have +month, +Allow +very +II +of +New +a +and +as +til +of +Arrington, +huugoring +return +thereunder +they +could +existent +neavy +Hunter, +A. +him +ribe +year, +through +and +.of +read, +dairv +iii +dough +ingly +difference, +Spain +supreme +ple +of +advocated +only +attired +It +destroyed. +property +altation +up +cent, +in +by +largely +voters +of +said +of +railroads +do +inches +to +the +silver-lined +exceed +changed, +came +or +south, +side +A +needed +friend, +receiving +mond +the +her +value +Wilmington. +1*40 +of +Where +final +re- +the +in +bad +State +pay +mounds +up, +words +now +nearly +the +n* +in +the +dishonesty +$7,317,942 +has +its +established +goods +been +consideration +the +etiquette, +have +his +high +old +IE +west +from +of +for +degrees +to +such +on +the +from +Congress. +mual +this +Increase +the +calfinot +wo +mortgage +of +35 +took +Make +R +usually +the +of +New +wit: +virus +he +whoso +organ. +1886, +but +of +be +of +abolished. +courts +ordinary +exhibits. +writing. +choice. +notes +opportunity +rights +To +from +rsUeviag +Qod's +in +It +rapid +gesture, +toward +in +the +given +left +street +clothing +have +with +15. +to +to +seven +particularly +Alloflots1.2,3and4.block29,plat +it +Three +alumni +the +com- +wero +the +for +end +No. +a +the +in +would +the +Spala, +the +and +with +under +25; +in +assert +? +the +fit +contracts +the +Sov. +members +the +the +largest +the +ance, +on +Pills +to +tears +limp, +over +the +supplemental +Baldwyn—Walter +cruel +exorcise +fact +Applied +which +1835, +Ecotiono +great- +ever +and +days +lie +ons +• +to +longer, +07. +thought +must +lntter +their +1839, +said +now. +to +charter +obligaitions +in +many +better +ford, +ei:ht +and +ing +of +the +made +but +or +be +does +utterly +conveyed +Mrs. +To +symp- +his +if +say, +oí +Let +Resolved, +Tho +when +occasions, +three +that +forms +instructed +original +the +on +rorniMg +exertions +brls. +lioality. +and +served +bar¬ +by +feet +the +body, +mn- +meeting +with +whohave +to +, +the +while, +popular +other +It +as +of +a +up- +• +but +and +Ralph +peace +Da>, +miliation! +public +respected +be +received +storms. +ami +the +Three +or +commission +intellect? +lobsters +thet +deattuTof +sale, +of +armed +bul +off +to +system +Mentor +Alfred +A +is +railway +large +by +hollow +III +as +in +Township +25:0,200; +ceremony, +G. +cook +its +and +tho +of +prospects +would +grwat +Senate +is +He +the +makes +30, +our +absorbing +K., +•dge +oppor¬ +confident +as +16719 +gency. +Otis, +Chili +tion +gravel +do +the +been +Templeton's +people +been +ency +point +has +ail +tion +be, +of +evuded +be +\ +to +of +in +beginning. +held +opinion +sel +year +In +tried. +thoy +dollars, +were +such +out +4 +it. +house, +while +Mrs. +bers +has +Peter +and +a +subjected +onerous +project +weapons, +have +separated +gallant +of +grand +particu- +so +lie +. +sought +ority +Hylo +been +the +work +valuable +gained +ilaims +had +to +public +of +that +pounds +They +provide +rights +that +influenced +in +in +than +Johnson, +of +thus +seedling +io +eaou +Dur­ +may +his +trust +whiskers +misdeeds +Hotel +greatestnsmber," +was +Caserio, +one +the +Orsct's +we +Kuoae +declaration +leave +Oo. +community +sons, +the +persons +full +and +flowering +by +didn't +am." +Canlm +a +of +i* +there +northwest +of +lag +very +which +sell +the +with +very +remained +swell +that +people, +and +the +serious +prevent +and +of +The +three +weather +had +his +to +sepa- +fje +made +anxious +the +Dorcas +was +land +her +ti'd +the +for +Norway, +of +Represen- +not +me!" +The +(Laughter.) +lie +longer +action. +the +J03 +the +for +about +is +the +called +22 +less +don, +capital +cheap +twelve +requirid +time +the +1917 +tion +to +mile +first +prelim- +this +photographs +pub +in +BITTERS—Oxygenated, +prison +he +treated +out +into +having +and +speech +to +m'os: +But +worthy +assure +who +last +other +that +end, +A. +M; +in­ +that +the +future, +tho +trembling +the +dollars +rather +the +bags. +to +a +from +the +was +and +demand. +day's +very +be +2,400 +wearing +were +ami +little +i +cannot +a +reduce +That +hand. +anb +Eicher +on +tive +the +what +possible, +der +Margaret +that +of +of +and +America, +a +lest +Allyn +Johu +there +What +to +to +their +C. +be +dangerous +parliament. +perty +of +ment. +of +the +will +fluttered +pullet +soils +only +effort +Itself +shop, +1939, +Bcek +equipment +as +candidates +are +the +payable +by +It +of +bad +25 +County +shorn +as +! +addresses +descended +labor +which +an +prevent +and +repreaent +haling +conberuing +not +limits +could +I'ierce's +ing +what +came +dersigned; +euiotaitxe +my +days +der +for +yellow +Arness. +in +rob +the +him. +Man's +celebrated +lo +more +there, +the +water +such +Violen +articles. +vinegar +and +trainmen +ing +plaint, +Pewd +As +ings, +of +them. +touching +seems +is +gage +He +am +from, +than +must +vote +was +posing +most +so +in +cotton +annum, +Whitney +champion +tba +on +a +weather. +a +new +the +to +My +on +the +the +feel +secured, +building +col¬ +victorious. +I +of +a +see'dug +with +of +is +Oovernor, +partment +H. +Mitchell +sold +Lynch +to +fitted +ataca +was +M’ho +(as +that +is +excluded +f. +this +divorcing +utter- +numbered +are +wanning +It +the +most +and +adopted +two +was +deep, +young +It +of +the +action +too +buy +ot +fight +exporters +diseases +tiilk +stated +shall +feed. +al- +were +the +boarded, +in +tion +the +far +very +difficult +in +potatoes. +bo +and +arena +described +am +Lady +aro +first +kept +Ealawaliine +with +remarking +just +was +has, +certain +allow +of +ul.-o +ing +is +stray +the +repealed +The +In +for +in +in +is +if +His +bo +have +children's +ARt +'het +ever +No. +A +been +would +form +and +.. +The +the +trial, +a +of +one +at +under +tops, +and +at +ot +disappointment +war +reminiscences +school +°ne +is +return +breeder +20.88 +out +they +street +fagging +fen +it +they +throe +special +Clark +to +here +his +ical +laboring +marked +was +50 +in +through +here, +is +Once +shape, +actually +Oregon, +launch +mo«f +sell +She +In +caused +pursuo +and +as +the +serving +conviction, +the +was +tho +Dundee, +-T. +process +Hoe +joint +bountiful +darts, +Herrmann +thresher +house. +north +of +very-properly +number +trouble +voters. +of +contracts +to +she +tnousands +pursuant +destroyed +sue +Grange +7th +the +by +Malone, +ducted +revision +up +it +executor +to +the +all +suffered +tleterred +the +whers +child's +which +had +came, +after +Hcllox, +The +h;in +of +have +or +many +fact +largest +fied +certain +and +or +if +. +influence. +to +attempt +ue.Ber&s, +than +died +the +John +and +much +moeseious +as +polltioal +any +the +her, +for +lead +The +not +of +holder +their +where +followed +peaceful +suggested +; +more +at +ho +third +that +the +a +no +a +others. +government. +transl- +street. +from +aged +the +from +said +the +forelgn +the +found +this +workmanship +repre- +cook +pled +people +the +is +Is +the +which +gather +section, +been +order +much +will, +above +the +the +the +us +your +write +one +steamboat +excited +insect +as +much +and +a +remote +simile +a +says +Alton +to +millions +unsoundness +firm +Block +blbck +re- +fourth +assistance +to +and +organization +The +J +of +was +when +mineral, +and +back +to +trap +but +has +fine +5184 +and +hla +fight +of +flourish +is +pago +to +req +usurpation, +to +convene +at +the +No. +is +desertion +it +University +conv +a +all +ordinary +Kheem +man. +as +had +to +bridal +found. +days; +their +High +will +South +population +from +issue +not +degrees +to +nrescribo +statesmai +the +oppose +States +be +on +from +and +chief +Block +thence +before +home +the +sent +an +be +last +October, +get +John +been +affairs +that +R. +of +those +been +ex- +in +H +resolution +The +in +fly +is +snm +Pacific. +the +hue +and +to +Beef +he +of +Cotton +become +it +I +suppressed +ister +the +of +State +Canon +frco +cout +raiher +the +original +shall +dles +good +fusion, +numerous +the +especially +slope +Shaded +that +and +of +observed +of +know +back +I +E +unde +best +the +has +days +Tower +travel +death +a +to +ture. +his +go +interest, +to +is +that +and +day +but +liage +darkness +show +a +author- +carri. +he +your +keeps +to +amount +and +cf +Florence +flap +, +can +brought +The +commission +Of +Joe +year +again; +plan +ceremony; +(in +made +ground +Clarence +I +peared +anil +Repotd.can +which +residence +he +added +screene +To +fields +ected +discussing +Germany +done +difficult +recover +discharged. +branch, +had, +help +What +regard +appoint +were +party. +ble +seek +these +Danube +12 +or +were +efforts +head +long +Falk +few +directly +my +53 +revealed. +if +Brit- +G. +beds +oppre.-sion +face. +moment +won +conduct +is +third +used +in +tho +ventilation, +a +the +State +is +into +proposed +no +illuminated +en- +homo +8. +on +So +session +tbe +the +of +pate +sciences, +tion +nominal +thrown +sissippi +average +my +All +because +tho +was +while +course +than +hurried +heartily +farm +raised +selecting +the +deceased +being +n| +culture, +county +for +that, +cannot +the +of +They +rscing +appearances, +an +light +night +her +commerce +to +of +Tillett +tiiriml +40004.60 +neck +Dr. +forth +bo +it +rights +Hopkins, +with +a +clivities +our +the +of +nrst +costs +thy +be +aid +the +Brandt, +of +number +ankles, +has +community +business. +reapectahl*! +(107)4 +against +was +crushing. +his +a +ig.; +Pacific +"ruling +timber +tween +Works +ease +accorded +forms +com- +tained +some, +has +the +sald +he +ow,’ +olaztsl +matter +prices. +player, +for +to +of +derneath, +make +in +now +were +whence +in +they +his +tiken +away, +! +government +these +their +past +and +building +we +and +suppli +the +charged +changing +of +tne +had +majority +than +facie +and +said +!ody +being +the +26; +- +well +Arrangements +tho +?" +altogether. +i +perhaps, +and +of +to +trict +Bishop +Hale +son +and +Willin +running +waa +lish +been +department +Mrs. +termination. +puffed +blood, +tbe +abame +England +fancy +to +to +granted +work. +shall +will +. +politics +The +through +women's +This +hope +the +necessary1 +no +Scrofula +teenth +if, +ns +damaged +Randolph +who +induced +It +never +farmers. +Davis, +one +them, +told +ing +tri- +which +appear, +its +heart. +them +ou +Daughtloa, +any +ing +deed, +every +stand +lessness. +Peterson. +covered +appear- +beaten, +spot +coming +Many +It +it +Schools," +Sharp, +Last +tint +But +The +rap- +re¬ +agent, +room +police +of +the +unfortunately +matter +Chance, +suddonly +of +their +Dexter's +or +hurt +Then +per +back +to +County, +it +and +who +'In- +sud +Seth +pension +the +to +discharged. +towns +and +hesitate +debt +The +There +his +and +the +seetion +a +some +and +nobles. +J. +Mention +the +Governor +came +soon +not +ready +She +of +for +will +price +The +crimes +agreement +rosy +so +a +thn +tailed +up +who +Bulls +wlio +of +their +at +it +con- +mines +with +one +the +a +our +in +a +we +cxereiso +The +as +there. +Hancock +a +said +the +purview’ +element +ed +applied +tugs, +howled, +surgeon, +weighed +was +25 +gratuities +an +the +by +very +a +of +The +our +I +thereof +him +and +course, +meeting +varies +more +of +thereupon, +stono +1891, +stia; +or +hunting, +gentlemen, +hospitality +cost +hor +there +and +horses +by +to +we +evary +or +leaders +grant +the +where +Bve +a +does +mercial +and +your +Brown, +re +leader +Tbat +of +to +ot +year +In +even +Raisam +squarely +But, +the +their +ordinary +It +half-desperate +in +deep +aad +morn +growed +when +night +of +tiio +administration +part +the +race +of +ca- +was +year, +change +on +was +birds +trust +made +thwarting +here +could +national +El +had +the +deputise +asked +contest- +-we +tlii-k +pine +as +but +surprise +in +aa +real +Warner's +neck +m., +Ithe +is +the +to +reduced +ing +bill +by +wo +ally +"ALtaxr. +in +from +advantage +uiually +rebellion +and +the +to +larger +that +relatives. +squeak +li +ago. +their +D. +and +magnetic +of +St. +now +to +loss +were +speculators. +the +tha +which +with +order +woman +in +stand +tbe +these +the +of +enforcement +Earl +fall +-t +had +more +by +In +tbe +land +a +pictures, +they +especially +able +many +the +during +tions +large +ranged +tables +riMtbratlon +The +one +18S4. +and +training +we +of +the +is +about +the +sissippi +members +tme +First +had +stable. +at +late +Injudi- +tho +post¬ +would +north +Mumfordsvillc +pany +go +the +than +an +to +O. +and +Yesterday.Perhaps +not +pictures +close +may +and +to +^ +a +built +you +be +-'ru +tyhich +of +But +orators +drove +conferred +Furlong, +said +e;ft +their +requiring +Bain. +beauti- +questions +reside. +In +intheonunol +probability +sent +was +buying +of +in +save +objections +Green; +I +frame +irons, +dignity. +tsken +Mary +to +lowing +instance, +nobility +upon +Stanley, +come +the +would +constituency. +be +division +platform +Car +will +have +more +State +tion +(1); +dis- +the +not +holder +He +qualified +the +that +O. +was +Sec. +same +with +Is +he +and +1260. +bond +ments, +meet +tween'tbo +their +with +the +It +forbade +of +class +“Certainly +period +loud +hidden +bly +concise +Mr. +the +shall +coat, +and +th-? +all +vestigation +Boys, +on +Antonio, +on +A +men. +heifer, +timber +stretch- +turned +wide, +jolly. +mg +just +to +railways, +Hooker: +affecting +the +Its +cold +and +of +the +on +Tenth +of +past +was +of +with +deserve +Hidalgo, +Is +ton +not, +designation +have +dersigned; +ed +of +English +hold +of +pair +Indians +novel +place +street +of +within-the +say +limits +that +has +pay +hill +Burlington, +and +dropped +then +ers. +some +out, +the +fact +in +he +whole +time +of +bia +of +have +The +Don +that +workers, +town. +the +lo +soil. +murh +and +was +far +the +Baptisto, +detM'rilied +who +tho +or +and +as +He +nec­ +to +elected +de +riage +the +ue +a +must +ha9 +bring +ux +spring. +to +every +have +ansd +only +give +ad­ +j-eutiemen +That +comprises +public +lations +when +ter +the +made +specify +the +the +right +country. +at +me +;e +Philadelphia +obligations +nothing +amount +does +limb. +ros +for +default +and +for. +before +pay +KcKinney. +which +not +developing +made. +carried +be +and +ed +of +of +\V. +ity +as +Stephen +out +on +Cor. +is +owne +1MV, +. +of +by +any +to +j +the +and +canal. +accomplished +history +hits +like +Treasury +object, +to +though +in +in +and +tax- +of +and +Grubbmen +did +chieftain +been +Is +u*e +so +more +on +to +tt +Mme. +every +sel +gained +the +the +Ar- +No. +to +seek +ions +moat +in +my +opan +saving +at +of +the +Miss +patriotism +ish +ledge +tone: +And +territory +T +repeal +ere +amount +very +generally +to +of +been +tho +approaching +the +expensive +felt +freight +the +Orleans +tracks +re +the +at +share +atlarHnaj +not +through +what +In +said +Howe, +had +to +anil +Caskets, +ordinary +signs, +into +look +an +frames, +that +Patterson.bailed +poverty +into +wholowilo +a +unblushlngly +a +conducted +of +"for +gallery +seven, +for +fish +Birthday: +quite +; +six +may +well +wio'j»nes. +previously +100 +to +in +dealers +thousands +and +suocess, +bouse, +while +our +Corporation +afterwards +M. +hunter +'manana" +complete +his +in +Act, +W. +van, +144 +ing +very +of +the +|^M,943(9S3 +Howclls +, +laws +jocularly +The +rate +the +2:W, +osaai +finer, +Crum +defendant +played +Me., +office +did +-c +and +Kohler, +a +flourishing +and +Dr. +several +for +lands +Action, +of +of +made +the +as +oxygen, +be +with +who +to +reception +board +former +policy +throwing +shape +head- +acres, +stop +Florence +of +sour +would +that +company's +is +bler +crossing +Bcnj. +for +ness +of +of +pain +has +for +hav.* +not, +asfeep +year +ontheir +*17 +Pearsou +>k +said +who +up +anu +«>dch +way +hope +that +the +., +apt +tho +$500 +in +pro­ +of +invi- +described +school +third +as +were +band +to +of +A. +or +county +Will +you +all +scuttle +an +to +"They're +and +product. +and +saia +berg, +is +was +accusing +it +has +J. +are, +ihis +the +Bayfield, +years. +time +point +thirty +present +t3T +committee +and +nj; +least, +are +and +window +Hughes, +aotion; +tip +1,131 +words +and +of +and +A +at +said +man +It +per­ +easy-going. +In +good +also +distant +heartily +extend +tional +Feuelow +threat +Circuit +rebuke +on +and +their +man, +and +there +?nnferenco +to +things +of +the +tress. +during +work +scum +made +the +must +strong, +from +first +give +swnrm +Vance +dintioct +000 +J; +belongings +it +! +snother +with +campaign +is +should +the +the +superior +be +frequently, +wife +James +any +us, +knowledges +this +description; +to +they +of +him +and +where +Osmundson, +accord¬ +for +all-controlling +We +followed +the +visited +given +or +who +was +ChSlgCS +and +minion +two +. +virtue +on +did +toe, +at +and +Haven, +shadow +iba +own +a +hope +summer +road +miles +cleaning, +the +of +congreei. +drove +bride +Is +as +level +sank. +the +herdsmen. +parent +bo +north +who, +to +very +he +htm +At +a +exciting +the +in +and +it +home +and +presfive +the +For +heart +out +Martian +know +distorted +this +petition +times +doubt +creek. +plunge +told +the +openings +Certainly +hands. +increase +ness +sneer, +not +will +seized +and +legs +taking +many +treat +lie +it +some- +in +and +Qorham +up +the +wallowed +for +the +on +for +foreign +a +at +the +charged +all +sorrrein +June +recovered +appear +ordinary +served +never +wntf.ir +to +and +and +delighted +of +door +read: +resolution +white +ige +of +But +him +this +and +boy. +extent +and +realm. +buy +wheat +society +hog +of +all +adminis +urban +8:51 +Loyal +which +conceal +spices. +learn +degree +31r. +tbe +the +el:iy +only +and +lobby +in +he +net +with +O'Reilly, +atomic +in +family, +last +in +He +stricken +custom +match, +and +160 +was +major, +ttiree +O +roads +re- +der +hut +be +the +same +was +Anthony'* +engine +which +that +it +are +"furnace: +play. +service +narao +If +Iowa, +work. +speaking +the +rye, +points +ucrorc +as +diminish. +learned +W +were +Kansas +of +1 +ol +period +up +did +lead +to +was +as +my +of +havo +wealthier +fell, +next +Jones +Lieut. +decide, +steam +distrust +forth +askod +in +will +me +to +deep +and +In +the +the +in +city +the +behin- +of +vessel +vacancy +Tho +rleier +country" +and +two +whii" +city +other +principal +of +ques­ +amuse +by +his +behind +result. +-- +his +follows, +Innocent, +as +clients, +in +that +parture +the +the +are. +the +are +Blaine’s +disable +following +day +declining +then +stone +tj +go +tm +the +or +As +tend +in +isa +to +every +is +road +he, +contracts +hardened, +fact, +doing +and +end +of +granddad's +farrow +soups, +will +$250 +of +grass, +a +almost +the +writing, +East, +dilapidated +Badajoz +this +fruitless +seems +but +Thom +that +claim- +reasonable +short +the +and +side +near +to +rvould +of +dwe.lr +ed. +that +properties +are +mind +his +ground +has +111. +and +ver¬ +not +door +the +keeping +guests +much +notcs,&c. +of +closeat6.00a. +Onions, +from +hair, +yell +the +when +is +presented +before +the +counterfeiting +coun¬ +are +work +go +and' +In +material +the +tor, +82 +body +Baker’s +un­ +best +the +would +age. +cavity, +duty +with +Schenck's +ciation +aaid: +$1,730 +De +in +the +and +came +of +been +the +of +business +IOb, +resist +the +True +also +that +of +body +find +I +with +as +power +days +chell +not +concussion. +the +will +she +.. +were +labor. +about +money +the +two +sick +fight +gives +butt +ahead +go +In +He +MoSht'a +Is +way +anv +not +supposed +this +United +completed +is +constitution +Selma +block +the +resolutely +at +a +h +dull +view +was +this +He +for +Hoaorable +matter, +different +In +know +political +with +ing +The +can +of +wrote +convent.it +uot +J +the +thrill +commercial +fifiure +it +extensive +lorn +tho +of +continent. +was +make +The +to +seriously +improve +was +tc^ontinue +thoso +grave, +can +affliction, +suits. +once +garden, +too +or +an +said +was +his +and +and +sons +General +little +day +in +promises? +tho +are," +Towg +of +et +with +tqr +me +an +clares +3 +"crops. +a +of +for +of +and +taken +demnation +Vic­ +that +was +agitated, +an +hurt +though +asking +officers +tho +along +Kigden, +food +Portland +Am- +These +made +Gardner, +to +barmful +might +perfection +promised +the +make +guas +had +to +the +are +Delivery +Imre +claimed +pied +to +employments. +A. +was +of +taken +worklngmen +Our +of +I +tothat +rent +(9), +them +present +clover +lia +The +toe +ind +and, +This +departments +you +broker +party +vision +being +puty +to +are +on +ting +macy +for +street, +that +stage, +producer +wilting. +Collections. +is +all +succes +to +Royal +aud +for +up +these +desire +as +JnoH +in +benefit +Every +capital +another +hereby +tossed +on +this +the +80 +enter. +in +Mount +Allen +on +tho +was +plays +counties, +in +of +action +cordially +age. +Orleans +terms +deeds +her- +Commonwealth's +tbo +51 +Eight +the +In +as +his +file +his +might +cane +it +"It +a +be +T. +and +of +the +meeting +Dunn’s +not +pity +places, +than +treatment. +fast +no +country's +valuable +chBrgea.or>eoeifee +than +Wilson's +will +During +ceeding, +in +points +be +natural +and +announced +publishers. +8c; +The +newspapers +Chamberlain +the +inspectors +my +soon +having +tbe +summers +deed +not +od. +say, +a +ai +Scott +history. +Invitation, +LeviHerz, +West +of +exclamation +9$ +or +holder +not +and +That +silk, +and +[Ap- +show. +Bruce' +please. +have +it +88.98. +Lots +made +were +could +in +the +Jackson +to +however, +until +two +recorder +''Hello, +from +for +then +of +regiment +outward +court, +of +of +all +use- +aggregate, +are +other +for +attempted +ing +people +h» +one +feet +D. +that +fight, +held +Bernard +feathers. +in- +furnish +that +who +as +fash- +the +wandering +from +his +in +and +this +Russian +disarmed +William +the +dlaablllt} +of +Tributes +whistling +same +ornok +to +Josephine +wise, +f +rounds +been +they +wants +seen +account +dred +a +to +believes +IL +system +court +he +about +to +certain +required +re-election. +Horace +said +Mr. +Michi- +bo +in +was +I +sin +yoa +Earope +OF +Republican +facts +company +are +imported +No. +Chief +railway +directly +it +body +house +nn +iceable +Kansas +and +such +unpopular +ut +employ +admir¬ +some +Nor +the +the +after +ratable +prepared +ratio +to +erera +one +chinery. +He +up +point +whigs +fancied +Clarence +Henry +he +was +3 +Army +person. +and +of +U. +frlende, +vutp +night's +a +Mid- +Aukcoiy +short +Six +go +this +at +great +part. +very +M +of +effect +he +and +eight +is +father +Im­ +than +the +Lizzie +P. +To +acting +per +that +to +Havana +ot +tartio +five +their +my +accounted +ant +of +his +was +ens +over-issues +Labor +green +been +t/ici/ +together +the +live +bo +not +his +was +timber +outcome +so +W. +the +bill +was +the +of +bis +nothing +become +cap- +House +the +{ +time +for +colonist's +shall +cused +described +self-sustaining, +suggestion +by +official +to +adop)tion +have +not +rata +and +Shakespearean +though +participate +he +may +and +dle +tho +month. +udges +bmieratlve'y +steady +quarter +with +of +Treasury +sirup +claim +the +of +thai +license +in +surround- +five +doubt +hopelessly +good +period +delegates +he +to +warm +due +Sam +of +once +The +poll +a'-splendid +interview. +their +HOLDIKG +he +stead +danger, +redeemed +Vermout +cheap +Icnlght +marks +would +child +I +and +Peoples +There +robe +excluded +and +scenery +a +land, +this +had +the +the +form +would +hcro +1st, +big +has +her +are +he +to +of +flrat +locomotive +Chicago, +the +Pappas, +far +the +bath +her? +gained +proportion +and +k +to +A. +experience +the +"Shawnee +her +tract +lie +ers +country. +a +the +(lat- +there +F. +tide +and +taste +the +made +lepahka, +in¬ +acre, +for +is +$37.19; +no +I +whole +inactive: +fodder +N. +ur +the +all +upon +and +thesteamer +Sargent +Backed +may +demolished +ered +what +public +to +Kapubllcan +vs: +not +of +ie +of +of +its +no +show +1850, +estate, +that +ally +did +which +will +through +mistrust +orotherwise, +upon +Congregational +thai +are +to +though +was +While +of +m +or +“I +variety, +up +bill, +tbe +of +but +see +rate +time +2 +selling +consent +ran +can +retard +the +are +hundred +by +county, +it +the +the +h.,m. +friendship +Cooperstown. +firm, +and +and +to +it. +be +holding +top +and +through +of +broached. +may +the +to +in. +will +wages +the +city, +mediately +muster, +of +the +to +the +au +avow +Mary +a +his +or +and +she +bclicf +and, +thereafter +of +self. +use +girl. +or +if +Deef +treatment +a +there +would +of +on +is +danger +the +in +annual +of +to +I +need +neighborhood +more +immediate +was +each +under +to +the +a +Nothing +Port +be +Herbert +up +ished +same +Hev. +some +the +body +that +for +papers +tlhat +steel +fore +told +at +30,000 +engaged +forty +improved +district +the +claims +acts, +of +were +are +the +that +tried +Co. +withstood +3u00. +result +of +and +iittcr +A. +necessary +posing +by +government. +all +strait +new +for +aro +ta +familiar +ber +ne +hension +mood +Tunkhannock. +were +who +the +fruit. +never +then +67 +married +the +agricultural +association +port +the +Azlecobos +degrees +n +Wis. +all +are +Mrs +from +bricks +emn +to +the +That +jn +January +W. +suipervision +bed +From +George +the +tack +law3 +Democratic +for +$4,000,000. +Springs, +miracles +it +Tbe +as +fever +Not +who +a +the +get +of +of +raise +making +is +eruption +the +common +whatever, +lrila. +heavy +for +or +miles +hoisted +him +cor- +'pew' +Poles, +he +mixed +to +cattle +married +is +in +the +lu +products +Because +oil; +anything +with +In +Marietta +not +running +a +and +of +honorary. +use +Emil +the +with +too, +interest +but +Grant +the +himself, +adopted +sometime +In +first +of +together +nud +through +day. +as +ing +ancestors; +attachment +with +his +to +a +between +he +arrival +the +orchestra, +consider +the +of +wen +I +The +Andresen; +that +that +mo, +his +attempt +the +Booth +the +for +days, +Pleas +thrco +prompt +the +until +view. +and +found +his +failure +stop—they +about +lielore +belongs, +profit- +been +and +divided +there +be +he +or +had +to +forks; +upon +His +any +derful +man +ed +; +in +.in» +Such +lot +so-called +Whenever +not +are +met +and +court, +center +the +which +could +some +act +wbich +Bovce +court, +night. +forts +she +sn +they +means +at +that +of +out +intention +. +siding +Iowa, +up +Office, +ug +from +money, +way +conditions +Mayer +came +a +of +nnd +and +ancient +hails +President, +Mrs. +the +No! +have +and +shall +aind +tho +get +of +but +house, +tne +or +become +of +tile +until +«ases +rating +ship. +of +generation +Rowland's +to +It +Rapids, +with +of +The +phys +of +you +is +believed +the +had +peoplo +cleared +entered +legally +two +lative, +world +abroad +ba +the +of +and +materially +part +place. +2.07% +Ancient +Francls« +Walter +low +manager +»taled +sense, +interfering +tioo|.s +03J, +day, +A +distance +which +4iarrh(ta +medal +It +Lincoln +Ped +him, +built +a +gave +sat-S +aversion +gravely +be +woman. +after +admitted +nnd +sorts +this +at +the +may +this +com­ +l> +3 +myself +one +question +feel +be +Nett +now +instead +Mails +of +300 +after +tbe +approval +rapidly +those +it +In +the +out +ttyat +uue +vigorous +and +every +and +whicb +same +hands +the +laid +Felton, +America +hosphate +k»and +World: +10:00. +with +fearfrl +that +difference +with +N. +repro- +mamma, +zens +as +bill +application +weat +the* +leave +be +any +it +maintain +Vanderbilt, +marked +appearing +who +He +; +by +to +resided +through +the +those +Idea +there +active +an +exchange +South +monu- +new +new +to +red. +upriver +these +when +kind +appear +bonds +other. +at +has +or +ns +competent. +ratification +that +for +to +givo +Hut +lie +propriatlons +1862 +worms +ho +sell +evident +education +no +Aren't +he +doilara +route. +its +and +the +tholr +life, +the +motionless +execution +industrial +for +only +officer +by +in +holding +was +the +wander +They +2 +which +ization. +240 +as +west +him +ers +be +stand- +three +theirtf +unmoved, +forth +by +on +regime +railway +be +in +subject +sion, +among +huudred +pre-eat +All +Dres.- +This +moved. +the +of +ranks, +greatest +how +we +women's +41. +acknowledge +any +Harrison, +keen +to +in +l'orciosrd +of +and +solid +went +pleasantly, +of +Can +(«««»pel. +another +it +ers +Ivry +Electoral +April! +all +It. +French +pass +thousands +be +therefore +the +can +tain +probabl. +ncrcpt-r +all +Master +tionists +the +was +hisatteudants. +tho +without +feeling +in +this +Gaf- +! +is +the +no +running +recites +an +by +will +a +& +who +made +said +Aberdeen +to +feet +people +sacrifice +sureties +t'r.ited +and +Taft +recklega +of +that +together +cuting +nut! +The +weariness +the +Koss +said +couldn't +only +In- +the +inconsiderable +the +The +of +on +enacted, +Sale* +It +(ho +manure +as +a +may +element +to +abarp +ended, +BBOUOHAM +formed, +underlylng +losses +It +wit' +for +attacks +half +sent +days. +spite +i +street. +purposes, +ibci +Garrett +true +Church +he +when +State +close +need +the +side +house, +and +clude +as +ship +him +for +that +to +tha +with +continues, +of +Bucoeanfnl +provided +burden +eight, +the +sidewalk +celibates +of +white +the +value. +this +liable +lie +to +Chamber +ning +thus +half +at +west +merited +that +mount +at +his +train +comparable +afforded +There +and +tables +National +heart +returns +gave +odd +oatn. +of +be +his +| +Luse +Peking +of +sprang +ington +present +100 +much +few +on +fol- +ono +and +Into +St. +startling +best +into +The +Birge +a +made +aotunl +band, +the +la- +Paul +threats +justment +the +as +i +to +it +interviewed +Denis +nave +for +from +ready +dead +have +ever +and +a +Pacific +short +Mullen +rose-leaves, +>*\ +tended +KB +this +and +Americans +and +Junction. +n>.< +Chinese +the +ship, +(sek +the +Keziah; +be +J. +its +came +general +a +could +evidence +get +the +and +there +and +the +has +past +years +a +of +t +of +During +did +over +shows +soon +obtained. +county +easy +went, +sale +tion +wide +S. +or +for +over +Coats, +greatest +Well +The +to +people +him +the +of +the +oils +estate; +alternate +seemed +W.Howe, +one +ble +in +st. +a +of +to +pastor +that +no +monopolized. +rattle, +The +made +tion +Augustus +here +It +felt +estate +out +to +interest +Fifth +another +capital +effects. +taking +on +is +rejected +rouiidliiKportl.iu.i +IB, +and +in +All +went +office +candied +His +until +be +bright +are +advertiser, +pected +erate, +animal +1905 +been +He +"God +music +lae +ters +the +of +east, +I +destroying +a +with +to +away +and +in +down +the +the +of +como +him +is +S. +much +went +pier +prosperity +sole +of +only +clothing. +Sea +pnvntc +When +compos- +as +world's +wife, +to +together +tog.' +va. +posed +ing +been +and +of +a +largest +Lard +have +money +discriminations +often +of +roost +all +pring +Lot +been +determines +in- +things +are +days, +will, +the +adopt +as +ever +moteness +open +in +I +who +to +kota +hero +government +the +of +any +is +Another +keep +sasdisna +embodying +the +confers +a +compensation +the +increased +left +num. +last +and +of +feel. +as +be +a +also +every +today. +en +publication +Its +motivo; +hoped +another +are +abip. +their +and +do. +the +was +be +when +ono +that +ed +and +our +ab->ut +been +not +founded +waters +is +Pendleton, +the +business +over +tbe +of +therefor +Similar +persuade +senses +oh1, +if +how +the +Bamberger, +in +out +while +brought +a +lenjrth +bogast +made +any +in +"secret +hours +Rico, +attorney's +battalion +French +purpose +scene. +loads +Western +tbe +region, +right +did +down +at +States +said +been +in +two +resources, +our +if +there +With +to +the +tlon +was +any +Buckley +wonderful +to +town +and +a +as +a +also +surprise. +GIVEN, +temper +and +was +the +Léon +of +eouue +the +invested +the +sahk +(Milnccs, +the +and +thereof, +it +boat, +fl*e +DCS +M., +House +the +eapeclally +kept +from +house +honor +her +without +sufficient +to +circu- +and +ordi- +let +way +the +K +of +spoken +air. +on +November +places +W:29, +a +more? +ship +C +of +fore- +of +good +capable +will +firm +soil +approach +or, +bowels +girls +was +may +the +duty, +would +insuring +is +connection +reserve. +however, +become +was +Gen. +coming +exuding +Is +In +kev +amazed +but +pro- +States +say—gentlemen, +to +Monitear +sitting +tbf« +the +oat +private +brandy +to +advance +Beaoh, +said +cross +place, +most +the +will +was +are +embarrassed +nnd +¡ill +was +their +the +near +been +preach +day +as +iii" +is +November +the +February. +cent., +our +you +fishes +change +the +the +this +polite, +the +have +from +killed +,81 +or +derives +con- +leaned +than +had +the +rrlv +small +hallucination +lot +by +would +aalft +or +and +realized +a +possible, +can +in. +two +very +even +and +enrich +ly) +came +true +Sherman +character, +of +happens +intelli¬ +o'clock, +city, +right +viewed +legislative +her +how +made +other +the +then" +tbls +upon +for +few +and +himself +headed +Miss +to +account +York +be +would +our +admit +under +a +Miss +You +channel +stomach +the +rtsrah +Kneiphof +the +being +coin, +a +I +he +Behrend. +was +with +clearing +which +them, +with +the +Inside* +truth, +I +was +mass +cope +advance. +justice +licences; +was +Grande, +take +a +any +Washington's +and +doan +and +half +shall +quick +Not +place. +of +Assembly, +origin +of +crate +fine +tho +better +to +in +court +and +buy +gave +party +crept +balked +and +the +with +thclr +are +must +Beap +England's +borough, +the +This +have +of +the +Bcore +the +the +Main +cook +100 +use.i +Congress +about +higher +fault +aware +high +ma +Delaware +state +he +ids +too +single +eleva +to +two +the +New +to +railway. +that +amount +half +payers +black +sayin. +With +bit¬ +sent +the +married +Tom- +was +owning +Ile +contained +a +his +ti +-4; +P. +together +gold +finding +has +his +and +city +The +to +attain +terday. +also +with +telling +1 +our +are +History. +stock +uniya +influenced +of +charge +namely, +energy +no +Kimball. +to +is +deep +and +shameless +to +happy. +Itavold +colony, +held +by +probably +been +Income, +it +last +the +law +for +a +Octobir +of +the +should +of +not +and +third +any +Reg't, +think +an +men +producing +not +and +be +States, +tion. +swing +Thinking +a +thc +his +then +to +these +Legislature +superiiducing +cuvcr +a +of +ance +know +occurred +which +of +street +it +Wednes- +to +ble +of +Ja +in +near +stocks +visions, +in +Replying +s +such +line +extent +the +the +placed +was +said +of +tandlurd +So +ed, +procuring +Wm. +It +pruli.ctii +takes +Daguerreotypes +of +courses +special +been +there +his +9c +be +sub- +of +in +extending +man +at +possible, +invention-, +the +be +interesting +445wI.ounftto +tensively +the +deter- +high +sion +had +on +thing +where +the +when +the +she +I +speed, +D +exists +iat +Is +founded +the +the +to +owu +and +quiet +hiwever. +came +or +is +piepared +It +one +enjoin +require +oecn +(on +score +W. +its +that +betrayal +tract +the +in +against +far, +whether +for +to +bed-room +were +Virginia +a +ii +as +of +article +had +execution +last +Margaret +please. +to +improved +her. +at +peace +proceeded +cer- +the +to +the +at +beetles, +great +down +of +its +time +lor +deep +the +the +receive +waters, +of +undivided +sisters +built +dreaming +to +sion +boxes +as +Anderson, +or +then +suggestive +ed +superior +the +It +who +fixed +small +the +used. +admission +interest +A +water, +or +fow, +1 +'before, +of +ring +they +H +democratic +the +destined +branehiis +oath, +the +u +and +be +and +out +cake +from +understand, +about +Parnell's +talk +and +$100 +land +by +of +their +have +coininit- +a +to +that +satisfaction +The +the +i +woald +when +observed +cook +it +New +stage'by +ol +resented +reason +We +The +later, +money. +Mea +Our +husband +hereby +r +father +the +among +i +his +Proclama- +comes +tne +bbl., +as +I'hey +great +sentation, +South +amendment +I +Trial +tkat +the +tact, +Ray, +There +completeness +ported +who +arrival, +wicked +you. +patriot- +on +fires +pay +Reams +ily. +of +into +fangs +llow­ +was +feet +this +Of +Lookout, +not +aud +lie +to +160 +udge +besides. +an +others +federal +Underwood +up- +took +ucither +his +he +association, +perpetuate +the +since +Veranda +to +al +Miss +number +a +asserted +did +and +to +th< +the +of +then +the +Alias +grivel, +did +hasin +2 +*Hel- +or +the +subsequently +perience +morn- + +to +I +feet +counterbalance +commanded, +to +statements, +ot +unscientilic +not +to +admit +work +, +dollar. +laws +the +them, +nothing +three +me. +the +verdict +by +A. +live, +boliovers +ment +check +signs, +from +M. +fa- +(Ind. +is +shouM +trade, +ot +one +appropriations +princi- +spreading +we +no +building +A1r. +at +attempt +Quinn +ists +had +of +to +upon +at +could +had +it +fellowship +what +110 +are +bureau, +at +blood, +Doyle +when +the +hundred +recover +ready +who +to +for +importance +Matthew +vance +the +Tickets +of +in +which +The +due +op, +and +hidden +further +It +which +to +w +I +finished, +co-operative +the +getting +to +interfere +Vlltal +his +indirect +A1 +fill +Mar»h, +him +have +be +official +The +records +1 +days +so +and +havicg +clean +down +without +turn +being +sponsorship +and +in +at +be +such +northerly +of +in +There +superficial +cent +far +it +de- +or +rested +stuff +ha +the +Sa- +four +the +Michi­ +from +Kirk +feet +making +Oct. +the +America +Crosbj' +U/nrther +No. +grows +not +condition +who +with +the +wont +use +, +of +locality. +and +ventilating +is +incongruity +follows +Mill +ration +certain +survive +|JM +year +properties +ot +hi +furnished +Prince +one, +at +nine +but +swallow +Vell-ilknown +in +tions +f +a +an +attracted +had +This +effort* +with +Cowden +side, +virtue +ohains +years +ablo +took +of +Tbe +III., +be +had +ate +be +a +Tom's +property +Hughes +that +fact +IU +eracked +thought +damage +shade +yards, +of +bill +of +save +a +the +the +or +year +executive +to +once +admiration. +the +consumption +of +notably +thoso +modern +not +shall +that +nt-. +O'Conor +or +. +nnd +the +poses +operate +and +advantages. +had +$7.50; +for +of +A +blood +to +sixty-eight +$1000 +to +who +Goodwille +piesent, +lives +Canal +NS +brillian +lighting +defeat +the +“cleanup” +and +wood +have +Flanders. +better +faith +got +the +a +property +be +request +a +fell +c +towards +post. +the +recorded +year +ests +Iowa, +portions +strode +for +plaint. +ballooning. +should +your +been +for +personal +are +the +.all +state +the +justice +was +the +cost, +auothci- +and +and +obtaining +demand +and +aoove +(or +territory +the +Many +Dawes's +this +Hat¬ +in +I +with +shaded +the +tlon +pub- +directions +S- +waters +cincts +URDAY, +many +trie +the +female +to +movement +interested +any +bun, +is +acting—are +country, +and +110 +ing +Uringiug +in­ +presided. +ery, +cauee +room. +to +line +forth +action. +in +to +with +for +Borden's +Death +auy +as +were +original +of +and +I +on +Stephen +a +J-*4 +Col. +the +ber. +be +the +John +from +hen +As +Wilder- +in +avail +never +ou +time +but +and +deg. +Gen +in +Green +compelled +uoise +the +sponsible +to +that +In +witchcraft, +next +with: +and +territory +of +of +calculated +many +fluential +house +on +While +greater +same +before +Spanish. +91st +The +present +had +of +nize +Here +cent, +and +the +some +not +con +knew +population +1900 +to +advance +on +- +mortar +had +no +point. +forita +wmsr; +didn’t +collect +three +that +Sen, +lie +cleanser, +of +revising +of +the +Rierson +was +tion +in +unlocked. +- +in +his +paper +small, +last +and +There +of +the +if +midway +only +Krause +draws +ordered +by +he +it's +Then +people's +all +LYON. +object +he +which +seem +the +their +of +those +do +1826 +no +back +ket +noble +Associated +alleges +curee, +with +in +of +thought +misery +tf +most +push- +not +love. +countrv +prorn +7 +true +had +Hughes, +31, +alumni +into +remedy +destroyed. +getting +complications +the +bold +to +Naral +that +will +on +wuuld +01 +faitjr. +spring +a +his +to +an +39 +if +grace +the +Rotcb +guns +urged +tunately +tones +Officers +come +their +near- +her +another +Sugar +that +all +expense +work +wife +was +that +aigo +missionaries +individual +entitled +track +be +should +what +this +of +although +the +manner +payable; +but +of +the +cultural +of +the +year +will +th +a +now +how +price, +evangelism +the +piece. +son +intelligent, +the +be +to +to +paint, +on +$7,000; +E. +which +tbat +profession.he +have +bill, +every +are +better +by +need +support +the +value. +disasters +a +to +been +as +. +those +they +of +of +year +ra +Mexico +were +times, +States +Peninsula. +to +in +the +run +conduct, +be +Interesting +has +they +thority +the +perfect +hi*hands +those +electors +oame +here. +i;i +the +ready +me +First +have +and, +opposed +To +and +together +ships +l'abb, +we +whose +sadly +rooms +great +as +extracts +after +above +from +same +wrote +aforesaid +from +council +Democratic +at +7th +township +commission +bidder, +rumbling +a +sent +ties +rairoad +the +Anthony +all +ice; +of +and +whether +Westcott +bis +the +W +name +faces +govern +transaction +of +in +the +of +and +pecially +in +their +reprintlng +the +Con- +crowded +rusty, +re- +ih«- +of +from +any +it +universal +on +processing +egations +without +On +getea +wagon, +any +built +the +and +Salt +of +This +every +lifikl.eievkt +It +that, +Qenaral +in +a +outlay +by +F. +sand +Arthur, +prisoners +Irom +from +a +sympathy +ili'iid +Members +days, +are +he +treat +)unce, +have +to +one +on +to +O. +of +treated +cold +Form +freshman +of +and +our +horses. +Blaine +party +between +adieu +near +to +to +tracts +ranch, +41-23 +I +its +every +barrels +desires +or +consequently +mortgagee +B. +no +to +in +Cane +creek +results +is +kpv. +integrity +h +Pierce, +and +opposition +mostly +stated +us +Treasury +htave +n +ing, +113 +Pall +of +out +the +socialism +I +Malcolm +At +group +to +assuring +Virginia +J +..fl** +Y +we +iticubator +also. +sulphuric +found +Inches +by +dra.' +s +tto +Giles +which +comedy +as +They +tres- +nay +time +for +. +by +be +financial!) +euvy +sentimental +(14 +dia +son +enables +Fifth +obtained +was +box +Chicago +bearing +to +of +on +It +thunder +failure +as +men +ascertained +of +farm +ted +clerk; +carriers, +of +those +to +offices +a +not +aro +Nazareth +might +It +sergeant +the +in +Maine +contemplation +majority +bu +the +Give +positiou +D. +No +ging +to +canopy +for +and +poor +the +dignity +of +In +these +only +the +hands. +erected +inches. +at +agencies, +as +payable +engineer +always +1812 +Admstrong. +life +that +from +Congress, +accident, +children +his +dreamed +he +wrapper +100 +it +which +lug +Mnrcia +while +and +that +pulled +the +and +Letters +ounces +held +husband +large +the +phrase, +ac- +for +Amusement +he +of +Dairy +part +fects +an +Ishpeming +er +did +a +explain +the +lecture +bear +-would +of +»m +wblch, +and +time +described +Henrj +coffin +F. +logue +eyes. +For +previoudy +large +few +which +asked +myself +J. +facts, +l';.i +been +and +not +any +his +mains, +up +in +any +upon +engaged. +cotton, +of +one +the +out +that +I +coming +asks +pains +will +? +he +of +lines. +cotillion +enter- +weuknesvatid +at +of +to +Batween +that +depend +released +btgbtof +during +least +slip +sooner +waiting +iee». +mane +els +ol +not +spirit +gentlemen's +16, +the +in +Atwood +cable +position +discharge +commerce +Will +is +grow +April, +cess. +American +game, +the +be +much +dollars +that +Bobert +continue +its +port. +while +Populists +shuts +8. +heretlfore +plat +pawnshop +spread +him +nfficlal +set- +I +XllG +8t. +expected +patriot- +of +in +exports +or +from +cost +tiutbjrri +city, +this +remember +the +which +three +As +early +Church, +very +second +is +then +uols +and +entirely +an +the +animal» +Congress +with +mentioned +of +varying +retain +any +on, +once +slave +bey. +tion +may +practicable, +paring +them. +Loins; +him +agreement +day +Metallic +of +. +day +bringing +tho +to +Kvt +[_ +tation +huoiauity +errrrv. +end" +is +meanor, +long +be +statutes +and +worth +chieflv +a +with +that +dull, +a +head +7, +for +were +B!riWner +for +32l +which +dollar's +thir- +or +early +and +farce, +or +company +conditions. +of +wrapped +and +widow +tilth +leans +providing +negro, +has +to +than +vehicle +who +accounted +the +con- +have +their +a +strange +except +rrpubllcauB +a +with +in +day +at +make +tollers +and +Md., +laid +give +sound +lands +diamonds, +Article +No. +or +Tn* +the +take +asd +Music +a +ed +bones; +policy +expressing +ige. +described +a +ferzrd +farmers +were +our +calculated +is +on +Senate +assigned +Is +are +gone +startled +thority +sho +paid +week +far +a +county +lodo +boy. +was +home +2nd +appropriate +ganizations +squares +may +hit +say +organs, +aboard +Mr. +marks +inime- +life. +be +higher +and +be +In +Carr +In +the +external +Paris, +ploughing +success +woman +The +Ashland +through +Cloth- +nistrator +for +sufferers +land, +advance +m., +wildneas +had +was +was +to +on +viscera. +making +contest, +a +the +as +County, +which +other. +last, +in +was +arc +there +country +ter +cure +that +of +is +appearance +increased +if +Amboy +heavy +discovering +tbe +tbe +the +Its +short‘ige. +2 +to +compaot +advance. +west, +has +illegal- +in +a +rockers; +be +woodeo +to +field. +Wendell +all +government +The +of +aell +pany +or +ashore +once +knickknacks +himself +in +lost +the +dis- +and +not +of +southeasterly +buy +of +his +own +through +publican +throttle +the +portance +of +when +thu +says +tell +Mr. +37$ +of +down +among +Andree, +by +thousand +eompetl +them +caucuses, +speeches +a +frontier. +near +of +system +name +away +depirtment. +iuto +days, +these +E +church +The +tion +dated +the +went +centers +to +and +lay +may +into +has +light +can +driven +Crocker +said, +weather +Commandery +large +fot +1.037*3 +communication +npr +thirty +has +had +full +1 +Crawford, +and +the +questions +presents, +and +ly +that +not +class +Hill, +fe- +. +yards. +Shute, +of +must +ing +provided +rad +always +Their +Mine. +thli +other +exports +tender +that +of +Fichus +preceeed +guished +Most +clear +said +Senator +must +resulted +Gene¬ +been +your +Lieutenant +her +Mar. +enemy +and +assailant +that +two +and +of +to +towns +bett; +ena- +usual +supervising +whenever +nob +the +on. +respond +or +Man- +speak +Johnston +worker +were +COLUMBUi*. +ito +men +by +of +the +begun +on +the +use +foot +ses +D. +class +oMSrin; +and +fertility +best +second, +Congestion +be +he +boat +the +· +the +under +won +yesterday +back +day +Moralag +few +be +Literary +dumb +the +W. +with +reduced +to +the +alley +out, +hand +or +con- +the +that +new +thing +dur- +i: +engaged +on +lot +Jones; +of +other +near' +to +of +if +>oy. +the +army +shortstop, +Colonol +force +Saint +the +mash, +the +qualified +at +The +and +that +tn.it +fodder +the +fine +2-3 +three-fourths, +to +honest +ter, +the +u. +undeistood +stage +anl +fertilizing +by +-co +of +years +L. +litical +men +Trladelphia +a +had +fodder +are +to +EVENS +hope, +Ti +the +an +Mr. +. +built +of +the +save +found +and +jute +and +are +has +bad +of +Half +That +Tha +the +is +paid +to +nieuiliera, +case +of +provido +center +all +their +inventory +Moore, +said +all +one +within +empowered +larger +and +over +for +bowl +2( +to +sincere, +had +B. +hand +or +but +and +for +the +1101 +attempts +appearing +get +when +of +love, +tuch +to +redemption +them. +to +that +especially +is +last +the +entered +would +city +infancy's +the +to +a +united +20.88 +es +considerable +one +understand +the +customs +to +about +tbe +accomplishment. +cannot +no +-givo +supposing +great +pertaining +main +the +Snake +the +side +on +several +be +strikers +wearing +terninan +the +fact +of +did +committee +the +of +is +years +with +I +girl, +come +26 +Agnes +that +and +on +inches +ex- +stung +if +to +men +tea, +may +art +more +by +Schriver, +by +During +when +paddles +machine +good +ezteasioB +yet, +a +with +building, +death +In +desk +by +that +if +Lira. +of +had +tained +of +had +Said +and +“Then +rings +Oswego +kind +»-everal +better +ability +why +alone +his +quarter* +sure +say, +Fred- +upou +" +Hardeman, +rime +what +I +book. +reasons +referred +a +a +the +best, +to +it +on +the +pvk +sex +were +of +the +shouldei +E +room +view +a +noticing +of +and +dense +peace, +86X +police, +ern +down, +of +twenty-two +however, +all +of +central +That +because +inspector +otir +turn +and +of +sparkling +at +(as +by +63 +nor +glamor, +location +the +the +wishes +hearers +the +a +at +the +meau +sacred +will +Of +re- +of +refined +be +time +of +lie3 +aurvey +the +ple +Gunnison, +of +with +either +of +to. +command +channel, +commended +.Mary +106; +viz: +for +storm +the +Cor +I +of +grinding, +brs +In +It +amount +introduction +have +the +at +workman +these +in +Chihuahua, +does +whole +sad +entrance +latter +man +unto +'cooties* +| +to +harmony +During +Bitters +rule +beer, +early +that +of +intervention +but +on +in +should +he +ness, +but +be- +that +that +Columbia +it. +New +with +Kernan +also +were +as +met +for +Itut, +parties +the +sands +Despite +of +300 +twelve +a +street +anger, +nearly +materials +of +hi +wards +for +justification +Fats +a +hot +hourt +be +000 +the +its +ARE +in +President's +t, +materially +strongly +while +advertisement +d +affairs +State +iiidt; +orange +the +leave +Is +sources, +several +offence +have +a +Survey, +to +waa +day +ot +11. +cer- +cellence +and +rniwelUa +must +pro­ +with +of +was +the +be +southward +company, +log +and +the +moral +duly +it +60c. +either +resident +this +lae* +to +. +basket +and +companion +ternoon +and +take +in +giving +were +Bills +preparation, +of +Is +though +ton +said +John +a +the +but +Mfiaaa +64 +per +the +flanked, +got +al +in +taxes +per +Dancing, +Mr. +recorded +Delta, +longer +Europe +apology +changing +. +arm +Col. +current +sort. +this +One +of +tobaeoo +conj +The +We +. +exclusive +States. +this +to +shall +more +protect +it +at +Supreme +sting +13 +with +aarhe +number +Indian +cable +hours. +above +exalted +indeed +has +long +day +meat: +word +of +availibility, +on +fifty +Hillsborough +of +cross¬ +of +heavy +guest +The +for +Montreal +belated +Union, +they +Seiutlo +far +ber. +and +which +States +the +Main +ment +Judgeship. +put +aati-Tammany +same +secondary +does +heard +after +now +Ascending +at +of +class, +drip¬ +With +tract. +cxiMtin. +th* +con- +in!" +degrees +himself +which +the +I +oer +a +of +and +ported +acres, +and +homes, +constitutional +Innocent. +and +In +tho +either +what +Interior. +would +feet, +be +be +the +seeking +with +from +his +pro- +and +to +between +to +ties +the +general +which +rsnsed +yet +the +depart +exploring +a +November +deliberate +her +file +girls +tbe +baby's +days +II +or +the +18. +bear +O. +days +of +drawn +Billons, +lee +and +the +and +ont +r +advance, +my +each +from +propose +intellectual +Old +Krank; +their +at +perhaps +that +be +Brook +ed, +took +but +Club +and +as +tion +as +times +to +24; +so +202 +conditions +being +the +in +He +attaci +was +last, +us +north, +trouble +*his +largest +School; +the +oil +authority +and +there +Railroad +his +Cox, +dently +strewn +eilies; +it +from +region +and +member +team +people +A +soon +masters, +She +in +men +Evans, +is +laid +the +founded. +meal—which +they +promise +fundamental +of +load +sion +that +pitch, +lire +everybody +of +little +to +Floyd +Samuel +miles +January +a +cy +city, +throughout +would +his +they +exposed +not +in +had +her +cultivation +paper +are, +for +of +do +disappointment +hall +house +$10 +Co., +front +naiiooal +Concord +serve, +pres¬ +to +communicate +tl'rie +camp, +did +will +whole +announced, +chemical +cavalry +to +now +Strawberries, +at +main +though +and +lungs. +principal +saidtiema| +thou­ +the +to +plainly +foea, +books +cnanee +the +sold +belore +art +growing, +end +and +for +liver +one +not +in +signed, +a +Kincaid +Attoul +being +answer +Western +be +and +each +Mr. +the +reg¬ +shifting +his +end +Eleakin +ef +miles +every +no +Pottaville +after +or +be +con- +the +matter +this +article +leave +April +it +dishonor- +on +It +the +I +the +that +a +with! +their +changes +ness. +will +are +for +from +wound, +with +low +position, +as +Mr. +dead, +dormant +condition +In +continued +pAve +regardless +account +llKo +A +the +of +let +ever +; +in +or +I +eountry +to +1 +cally +examine +age +on +been +present, +'The +of +Profiteering +. +expounded +disobedient +argument +be +works +drag +will +glory +of +hands +the +concerning +20 +not +he +on +With +distressed +perhaps +one +rebellion, +rain +pre-ex- +stream. +towards +Mnnglnevro +got +cause, +and +certain +each +if +anywhere +be +ro>un +us +A. +and +authorized +holiday +or +road +same +well +destitute, +by +of +Before +ne +fraud, +District +for +Verduret +lot +the +that +in +fall +invstigation +wer,e +good +of +say +to +It +and +on +so + +under +each. +training +wilbuut +of +aforesaid +and +completed +soil, +slnco +dofant. +at +J +ihc +ex- +with +the +hanging. +mand +and +turb +calmly +sixteen +there +child +was +on +suspicious +it +tains +but +injured. +his +be +son +than +braves +to +Hughes, +home +men +on. +man. +of +yet +the +Thc +of +I +must +cerium +eight +given +constable, +of +combine +when +pursuance +what +and +sorts +31431 +in +two +of +imperial +somewhat +ject, +deprives +Rear +selling, +Gordon +these +charred, +cargo +fixed +prime +because +ai +had +tbit, +the +Faid +approach, +observed +auc +Western +play +every +plant +seem +that +HiHseioi! +tha +Western +and +serious" +down +are +diction +to +with +worked +through +Wagon +and +ued +and +the +apply +without +Slate +tations +earth +section +they +passed +7815 +the +complete +re¬ +over +precau­ +to +We +Sore +of +s»ms +were +it +secretary +united. +by +the +said +passing +of +principles. +proportion +b. +Sewall, +nothing +as +agent +the +would +did +it. +premise +the +I +ves- +on +jssued +Trumbull. +at +equally +say +regis- +among +lating +had +ti-*! +to +The +its +100 +which +for +that +I +should +slaughtered +made +done, +to +prompted +to +pursuit +his +badly +differed +man +for +may +theory +dur¬ +north +him +of +ront, +which +the +game +comfort-bag +law. +shall, +the +brine +"Gem'len, +that +walked +wholesale +of +the +to +north: +steady +felt +BE +and +He +has +Tuylor +the +ningtofill +Tourist +nothing +observed, +orders +but +p +arrange +had +not +Bunion, +bb +good +always +would +and +by +is +so +have +the +F +the +more +a +fan +Jainea +conquest +gloomy +small +amount +West +and +erty; +should +following +would +ami +noise, +with +assembly +German +alas! +I'orto +of +the +charge, +it, +Blake +counting, +itself +at +; +feet +it +of +to +or +Grant +k.nis.i«, +of +things +too +courageous +lerj +with +of +the +of +the +hasve +vituperations +and +vigorous +take +to +not +believed +intersection +the +and +of +As +$2,600 +that +good +to +cree +was +tho +6,210,000 +»critica. +six +cities +out +fight; +S +appearance +said +holding +the +Superior +and +they +ot +; +of +three +similar +as +regarded +in +that +whole +bo +cost +sions, +J. +and +Rough +“new +a +some +property +farm +ourselves +fitted. +iflore +in +Fair +engraver +promised +did +nf +hric +this +approved +used +seven +ol +in +to +fulfill +driven +the +in +are, +impart +with +it +Even +the +riot +that +down +Previous +three +many +potatoes +M. +military +virtues +body +scraper +turn +an +M +on +of +St. +tho +the +receipts +foreclosing +the +disease, +nine +blm, +the +sent +We +constructed +was +which +was +shot +which +rabl +Gen. +door +song +need +rapidity, +the +the +dated +83.7 +advertising +or +Miss +Fear +that +degreea +are +of +the +or +Holiday +Hillavenue, +disease +Chinese +Engineer +OO, +there +whon +satis- +and +"As +becoming +aongbt +In +of +grand +give +that +your +21st +to +are +. +in +We +and +it. +too +streets, +patronage +man +God’s +Wells. +this +lion +there +8 +have +dividends, +because +|hehad +looked +months. +their +have +and +hardly +from +perform. +as +b> +Ixmlse +youncer +as +to +case +there +it +action +to +hut +by +for +the +national +in +unions +a +controversy +Section +four +be +supposed +roads +reproach +A +it +in +u +National +which +to +Nc-.v +doing +of +dark +without +him +the +of +toss +company +day +a +sh +than +ery* +wisdom +water. +number +ifapproved +missionary +stiff- +e, +of +months +the +him. +preseut +him, +spav- +least +in +year. +would +at +the +ion +not +loss +cash, +duce. +senato' +were +nature +face +The +obtained +8ie +evidence." +11 +south +officer +was +to +o. +after +the +including +nominee +jpound +was +about +that +the +later +authorities +m, +he +and +on +of +M. +Pe +their +room. +said +served +llirum +of +became, +our +the +refuse +this +which, +a +received, +and +small +valuation, +abandonment +additional +many +before +discussion +Columbia +he +States +few +Before +to +no +Pitman. +see +who +hereditaments, +on +persons, +mo»t +be, +It +critical +of +they +lege +a +will +occasion +a +reaching +on +if, +Alps +of +1. +vicinity +seeing +and +j +the +eel. +our +it +Dillon, +cornci +charter +took +iu +national +street, +less +to +deficiencies +an +vided +Ott +memory +aeen +share +law +ind +The +session. +more +which +country +is +to +man +the +life, +be +tbe +be +on +encourage +began, +was +1 +fairness, +to +the +is +families; +freeholders +upon +There +days +st +acres +the +be +corner; +our +such +; +ar- +under +the +the +whole +and +said +that +crowd +i. +arrived +proprietor, +vary, +say +classes +a +the +other +cause, +Twelve +Osken, +dence +Relief +the +of +and +said +1st +on +her +they +smiling +"Chattanooga, +and +be +it. +when +course +night +teen +a +to +flying +said +ap- +his +war +the +of +times +to +Wilson +bad +three +othr +parts +a +farmers +had +to +question +fr.- +tising +trim +was +republics. +be +to +in +after +would +heen +harmful, +with +Id +tions +in +in +did +is +drowt +of +and +which +of +tected +of +which +one +patent +had +there +judge +the +year +day +bat +plaintiff +across +General +whips +not +the +had +half +since +picture +the +a +the +Senate +demancred. +one +lots +this +About +very +the +House +are +dwelling +Wi +sum +decided +roadway +for +the +of +Broughton +th'i +guarantee +Agnes +Twenty-fourth +liver, +foreign +Committee +by +Miaiaaipgi +counted +of +at +shipwrecked +"Tabard +be +af­ +aronnd +Prayer" +road. +the +set +blood. +easily +here +less +which +importation +ness +made +not +and +to +will +down +ing +in +2,074 +internal +also +depar- +relations +a +patient +governor +suggestion +Ernest +Abbey +state. +are +I +plu +but +sustained +manhood +andaf- +Doheny, +after +a +It +Eluura. +marshal +A +grain +boys +from +Food +was +to +speaker +which +8. +a +-latbie +record +Town, +ten +says +officials +seller +covered +their +the +of +governed, +be +developed +tlie +next +water +the +ceed +ditch +defended +Jespor +Lady +the +ers +will +en +to +the +In +a +from +would +attendance +Mr. +be +Mil +of +the +me, +the +idea +but +jury +making +fouoJ +brought +H. +highly +situation +the +several +institutions +distant +to +lot +the +industry, +dlaunr* +allowed +Audi­ +Improbable +loans +appreciation +on +pockets, +67 +described +said +In +cf +Tawney’s +a +nips, +Biddeford +ted, +the +latter's +lots, +between +daughters +saw? +provid- +have +pensions, +Soon +slri +to +factured. +advantages +tenements, +chatter +hand +day +fcho +secured, +of +of +it +by +our +Pierce's +We +affidavits +mako +will +moved +he +ind +of +and +skies, +In +dozen +Block +churned +land +volt +or +with +the +you +of +Protection +the +about +nurses' +you +volatile +Undoisbirt +tentative +simply +of +permission. +of +151 +to +Pitcher +to +Clerk +and +agine +A. +the +with +not +a +flock*, +plowed +a +wide +hogs +city +ruary. +We +to +store +only +extent! +by +tUcil +not +manufacturing +a +element +window +preparation +the +republican +Meade, +draft +mersed +is +criminal +to +to +sot +acres +sldo +in +tak­ +Union +for +the +these +of +and +citizens, +a +- +a +which +pltioner. +therefore +objections +it +to +ami +as +you +on +fro +pay +the +caused +sidewalks +by +ably +in +ih +hasbeen +blessings +come +him +rendering +ployed +tree-a +Km- +penned +face +a +to +is +own +called, +and +lie +service +heard +then +a +up +Sehendi's +state +Whereas, +is +hadnotbeeu +whlrU +send­ +mile +account +of +tunnel +(inaliti +Cleveland +cir- +perform- +eeley, +dressed +have +the +barracks +by +legislation +patrons +Sunday +prepar¬ +1647 +by +or +P +to +exception +the +paigns +the +1,105.000 +within +very +of +from +severe +planets +the +of +number +a +has +disposing +simplest +desolate, +any +day +Martinsburg, +the +that +skill +own +Rtsssll. +prevent +his +a +of +tan +In +is +Is +put +the +50c. +in +Hre +that +reserved +think +the +monarchy, +north +consistency +fine +where +to +could +they +tho +generations +of +streets +it +has +state +me; +oats, +to +27 +friends +of +makes +lie +and +Bert's +penetrating +to +It +Odessa +the +word +It +Three, +represent +poles +on +the +The +payment +have +on +Florida +passengers, +also, +evil +renewed +to +grown +on +people—well, +for +ended +op +f +namely: +former +remaining +gravel +beloved +amendment, +bonds. +against +only +given +complete +matter +in +land +with +i +or +sec +the +the +the +while +business +with +bill—and +words +right +The +and +where +sidered, +which +communicate +at +more +or +comparatively +with +fruit +had +of +woman +respect, +poles +the +his +It +ever +Nation-wide +will +action +the +which +of +McColgan, +pretended, +strings +dered, +feet +a +vision +over +here +establishments, +at +dervish +the +ho +wholly +say +have +lower +victory +mendations +would +And +westward. +and +Bird +as +city, +old +hitch, +and +have +lision. +kind +to +discussed, +air +thence +and +dust +the +amusement +left +cannot +of +long +plant +was +sufferings. +aged +t +bv +by +divine +report +lut +that +streamlets +since +boast. +- +a +1 +arrow +that +highest +20, +by +per­ +ci- +the +stories +ihe +for +more +strikes +iu +Hart, +married +interest +accompanied +still, +aud +he +ciated +ernment +compelled +in +solid +of +the +rights +of +you +army. +a +to +this +miring +per +administer +a +to +cross-pipes, +est +government +hated +ually +In +of +not +$6, +proceeded +the +and +tb<-lor +to +cries, +in +under +by +or +merchant +perior, +de +ours. +bridge +and +the +in +least +labor +over +can +Mr. +which +having +their +From +elaborate +in +Knight +it +rivers +teutment +flowicg +itoiislsUml +Gen. +upon +and +on +maiden +and +the +ation +otherwieo +and +trees +will +"Tho +Mrs. +in +most +been +icicles +years +years, +plu- +daughter. +who +became +profession. +of +ready +reached +for +hard, +strike +and +$30. +bis +are +company +food" +Iho +well +fair, +traffic +depend +tunate +of +that +transportation +are +iyi.j, +la +guest +re +firmly +7 +ent +[jK'ia +Mixed +other +then +of +wh«re +both +as +a +whoreadour +what +alley +the +stood +or +proud +ourterritory +would +NWlft +abundance +all +earnings +county, +gone +ami +Cloud +the +the +her +forty- +will +of +sunburned, +The +of +a +to +adopted +the +well +certainly +hint +portrait +hardly +arm, +the +that +the +so +bade +Jir. +ing +tiie +in +certain +Class, +rumps +li +bid- +effectu- +the +covcr-o +or, +s<> +are +receiptfor +bills +and +me +those +four, +exchanges +upon +his +portion +privately +stopped +a +tion +many +high +of +said +the +and +with +Institute +grays +en +attack +done +put +bayonets +the +your +and +a +it +of +the +quires +the +of +were +per +court +rude +precedence +a +of +slieb +advantage +of +most +Ihe +quarter +in +cer +nor +the +we +bvterlan +When +came +old +the +Salt +The +into +revealed +i +running +New +when +one +white +of +for-a +dele- +dissolving +one +a +In +present. +to +arrives +of +various +towns, +The +is +years. +that +tne +last +hut +during +known +can +front +some. +Although +installment +had +as +title +in, +to +opposed +petition +tion +Ferry, +the +is +her +and +of +tho +of +the +Rocap +scientific +that +American +for +cry +putting +countries, +raised +bopkins +times +very +not +desert +release +to +and +obey +West +issued +enormous +causes +Newport, +went +underesti +of +get +tea +address +ch.; +but +their +hunters +tle +of +are +these +habita- +in +and +setting +in +lntcmporatn +point¬ +desire +produced +reform, +te! +Lewis +also +this +stom +state; +w>e +an +have +the +have +or +are +the +O. +shipping +yet, +wit, +whip. +tion +daily +high +that +capable +thereon; +how +responsible +Hotel +by +livea +o/- +some +the +first +realizo +ence +for +campaign +irri- +men +season. +Road, +hours +bird, +of +infantry +event +shock, +and +ot +and +distinctly +he +years +how +not +Engineer, +the +pott. +of +relating +arises +best +of +Dr. +; +The +sufficient +annual- +cer- +anticipated +con- +which +pensary +out +urally +he +of +most +future +got +this +once +territory +on +United +Payments +stream +their +the +to +bid, +of +thitn +most +the +years +there. +Wade +cnai- +the +and +ft>t +from +being +Prescription +There +cure +great +R. +tlmo +that +a +as +entire +been +governor +it +the +The +said, +is +everybody +willing +ene- +powers +cash. +brushes, +hisoomp +every +veracity +those +mer. +When +beedme +ago, +per- +and +the +, +cltiet +and +ho +water, +aro +poured +does +each +crop +the +commercialism +the +command +tified +fit +in- +the +have +eighty +continue +do; +above +his +the +the +Mu­ +sureand +attention +Smelting +within +Bangor. +slaughtered +valid +dollars +trees +the +Actors' +month. +esting +rency +divided, +not +The +in +ions +tri'oe, +with +Colo­ +unveiling +was +flvi +to +unequaled +Government +as +and +ami +No. +8 +with +days. +ult. +He +Indians +Journal +train. +I +and +Leglslatuie +i +eight +case +restore +less +tbe +appropriation +be +drum' +440yard +tim< +part +Creeks. +no +iu +been +there +tated +off. +to +of +out +would +I +Wost +the +thus +in +place. +is. +truss +the +wi'h +tea +giant +cannot +ized +he +and +bv +main +state +his +finally +itself +instruction, +be +no +upnii, +costia +the +It +of +of +Mis­ +young +San +extended +dropped +the +show +14 +afternoon +at +line +for +Committee +gates +scores +J5uring +man +o +to +too. +For +the +use +experi- +letter +pulsive +to +I +were +anmesrhern. +business +been +but +last +they +where +to +nay +n4 +was +divided: +to +nected +beaten +Helldoerfer. +few +The +would +ought +with +been +line +forms +j +the +held +side +15. +-has +Greeley +to +have +and +9 +colt, +conceive. +leading +property?that +this +But +dent, +it +which +to +interested +Vienna +0 +requires +Tripp, +be +forming +fromt +lic +it +riots +truck, +it +at +to +the +fou +great +this +State +of +thought,it +property +sorrowing +very +fron +of +responded +i +the +Robert +was +their +ready +Thus, +not +him +process +if +in +nationa, +gives +aid +of +promo- +in +Arizona +is +marauders +the +that +- +Healed +quite +and +The +now +Bank +the +parties, +majority +favor. +ingredients +tax, +To +provided +Hamilton, +the +the +is +the +pint +it +of +here +to +SW +so +complete +some +run» +ibc +front +to +children, +Tvelia +as +disgusting +city. +of +of +heeded +March +responsible. +10,000 +signed +until +to +Washington +smoking +the +West +secret +_ +in +flour +support +be +clay +that +He +at +in +will +corn. +the +been +officer +him, +the +is +District +neck +for +again +day, +. +nt +groomed +this +judgment +stands +bodice, +door +borne +word +The +H. +went +is +the +in +win +they +ever +Harrisonburg, +City, +tion +many, +this +moment +of +for +6_1, +Olen +tbe +where +for +one +young +might +Just +subordinated +firm +Del +Following +a +taking +her +Indian +Louisiana, +way +during +I +the +exhibited +man +contributes +developments +brought +way +tbe +the +o +lo +Feldman, +west +on +thence +west +in +quarter +several +upon +F +at +and +were +been +heir +the +Dec +b +svarted +called +which +were +sufficient +blow. +corner +my +Puya- +young +their +in +noxt +He +1st +of +could +understood +entitled +his +is +of +I +science +him +the +department. +collection +He +now +crew +your +to +as +the +no +and +as +no +effort +these. +becomes +be +1I7S. +have +or +a +In +of +jpened +being +was +has +United +much +ox +great +, +must +or +in +should +which +the +natory +received +believe +you. +was +possible +the +a +In +in +pfwitiyejly +such +were +the +the +Sunday +salaries +came +them, +it +with +hoar +on +personal +do +silence +rich +already +20 +her +receiving +town +liu +bonghtwhal +would +As +presence +iluty. +northwest +was +until +and +not +and +John +no +grounds +money +Is +States +and +that +discretion +and +the +city +harm. +cordially +mind. +pro- +under +Schneehorn +positive, +ms +probably +for +thence +arparat'l +chair, +Kennedy. +notification +such +were +not +other +sanction +for +nay +with +company. +M. +far +and +pie.ed. +own +wheel +assignee +Second +T1'hie +If +erance +Northern +th- +required +noting +our +Dakota, +aaat +formula +inside +confronting +500 +mid +never +4.—The +black +emergency, +are +of +duty. +exceed +wipe +Southern +such +and +and +importance, +thus +long +cor­ +of +tbe +f +of +Letart, +Ke +been +tho +Cassandra +of +couldhave +weed +The +the +recover +and +sured +X. +consoli¬ +and +In +of +result, +and +principle. +wban +healing +will +of +mortgage +to +of +escapado +you +cltj +river, +it +following +land +lack +and +last +by +in +stirring +apply +P +a +fashion. +controversy +not +at +a +age +permitted +the +concerning' +present +beach, +teach +$U> +welfare +it +social +to +for +of +shall +In +to +is +of +in +he +for +was +as +author, +snow, +there +you +receive +in +recovered +by +eloae +and +42 +the +uufl +of +equally +of +and +History +American +and +nothing +we +created +them +of +will +the +principals +mous +no +the +cottonseed +Senator +Schlo«s- +viewed +Money +claim +just +io +acting, +Na- +i7u +on +the +The +thus +what +around +heavy +to +He +haul +most +better +of +portion +We +teen +a +harvest +these +like +of +indemnity +order. +that +embod­ +hit +day +different +i-ugare, +disaolution +liainlorth +thcLeet +over +after +1000, +in +does +says +in +order +henceforth +attorney's +a +in +ever +have +where +she +alike +miraculously +can- +elections, +in +than +her +us, +ot +“Btu-hu,” +reply +through +it +which +tho +portraying +Brown, +a +the +back +the +their +cent +wide +establishment. +of +sat +ex- +and +Commodor< +suffering +the +so +statement +the +Again, +days +a +had +there +tramp +of +eggB +»ih +In +wild, +has +fruKS, +in +a +Lenox +after +right +see +long +introduced +any +most +participated +Brown +It +also +up +ru- +engine +your +— +11 +ani- +my +Miss +upon +too +during +j +effect +public +little +r. +S. +immediately +to +through +here. +in +fastly +there +all +ily. +The +in +I +not +lamrh +valuation +been +no +bewildering +Thir- +rich. +selected, +her +will +its +get +the +which +name +on +the +for +at- +very +to +man +of +"and +in +the +said +train +it +if +I +with +influence +or +the +to +of +him, +22 +tho +Yorker, +for +of +tho +definite +well +the +.ba-ve +tion +above +With +work, +George +Penniwell +which +E. +to +rule, +further +open +circle.swimmiug +diseasee +the +poor; +dots +magnitude +enough +Manchac +this +the +per- +resolutions. +side +that +sister +Meytrs +stellar +res¬ +southwesterly +of +which +administrators +gypsies +story +its +to +instrument. +and +with +once. +withdrawn +a +other +taxable +There +been +. +offer +and +her +the +There +state +not +being +at +and +the +no +Nothing +hard +deal +fish, +years +char- +any +president, +lands +Mrs. +a +Railroad +the +Mrs. +strong, +good +to +to +years +joinyou +inability +pair +history +keep +no +is +pipes +material +command, +want +for +by +Celebrated +kidnaping +visitiu +years +cently +wonderful +the +those +President, +illustrious +ours, +of +they +expunged +is +from +denet +this +he +assemblage +days +doubt +Foster, +und +mind +the +in +a- +L +tary +James +and +the +of +( +feet +above +good +sions +resulted +at +the +wood, +prove +Yeary +shares +tuns +take. +twenty +a +they +also +McCoeh. +Bri +au- +heads. +or +in +Superior +lbs +lowed +corner +lone +80 +district +fined +took +always +of +been +was +valae +all +if +honor, +State +Kansas +ease +fruit +far +Sixth +as +bis +her +east +It +I +closed +ing +ing +one +kept +In +that +saw +to +application +tiie +Listened, +routine +live +outset. +with.the +pedient +pays +has +digestive +as +the +and +feet +the +That +Douglas +Is +the +ing +'Ro­ +gentleman +as +lions +of +they +their +Of +o.instn +ried +women +come +or +sougnl +training +roads +some +aud +grand +cur +should +votiug +of +sub +But +south +Stales +For +The +plague +Honor +room +which +that +ent +6; +American +society +that +We +hi +his +of +Mr. +having +ai +gets +the +walked +form +increase +nights +m +Backed +same +ed +Roland +cany +stated +sition +ready-made +the +One +Croup +it +fast. +and +of +comrades +share. +cise +enormous +time. +52^56c: +to +in +witn +license +intact, +all +ami +which +ously +tne +bul +into +to +-defin +direct +bination +which +of +sympathizers +things +beginning +Hitt. +to +street, +gullet +Grain.?The +block +rear- +third +to +injurious +iLdrrda +escape +wheels +Lnlted +of +point +placed +possible +Say +South +wear +satisfy +talk +favor +was +rodtnurant +The +the +< +nation +feel- +of +bar +come +sound +of +manner +and +VV. +attention +need +be +and +notice +fold, +the +of +get +):ie +curtsied, +bondmen +their +mittee +that +rt +the +of +bo +hereby +tor +perity +aluminum, +appreciate +Buck- +Roswell +14th +was +wita +biography, +I +dens +of +world, +and +regarded +which +dairy +discre- +will +Association +Thousand +expanded. +the +nothing +went +Is +but +thence +may +,1 +for +ere +and +that +city, +of +and +or +is +president, +auctioneer +carry +Tip, +.Mr. +Gen. +Hainnliii, +the +up +has +having +he +tann +ing +the +flight +neither +. +ruins +of +or +and +or +some +continent, +fill +is +aren't +No. +pre- +giving +to +his +had +tolled +the +to +abuses, +to +or +in +vote +there +see +"Finally +the +a +plaintiff +been. +about +in +corn +when +an +«0t +proceeded +departure +occupying +sum +upon +In +rock +take +driven +The +the +chain +whose +Tennyson +of +a +in +after +at +east +increasing +tl +defled +this +dred +was +attended +not +a +into, +and +four +finest +and +find +are +I'.CPP. +efficiency; +He +but +to +seem +Icus +of +work +Butler: +lower +rcrkoned +rock +law. +Thl +or +the +virtues +protect +he +a +for +notice, +details +charity +single +good +blue +and +had +under +llallet +and +and +admit, +at +his +at +be +tection +of +carried +the +amount +how- +obarga. +for +little +first +or +and +and +tourists +declares +Pad- +force +bilious +steps +reposed +pomiiinit +because +made +and +When +The +Nothing +as +to +. +terest +ten +for +Erie +and +and +which +PraBB, +the +tunity +a +all +color +too +handsome +well +Crusoe +the +some +which +and +nearly +un¬ +ment, +produce +recommended +shortage +terstices +part +carts; +city +the +at +the +and +the +Training +''Why +the +spirited +to +man +\ +sounding. +that +disposed +bound +knew +until +Mrs, +recovery +nor +of +her +Messrs. +less +pllclty. +the +R. +their +league +tly.and +will +the +our +regions. +ela*. +1730. +enterprise. +have +for +woufd +to +as +troublesome +thon +the +In +in +doubtful +nose +promoter +sociations +sent +bumper, +came +as +Bird +should +city. +reporter +she +membera, +their +question +eation +the +not +J. +and +number +president +honors +only +of +am +tdlitaU +If +that +building, +were +fails +examination +Stevens +are +mile +mail +tries. +droppers, +Ferrand. +and +Southern +Water-rifle. +she +alcoholic +part +there +another +party +the +see +was +of +a +afternoon +as +the +parties +the +not +to +The +had +pipe, +gives +that +to +feet +precautions +the +which +comradeship. +to +poor, +demand +sev¬ +acre,, +to +notes, +Whereas +The +as +a +to +Chisums +to +mother +dying +day +u.ar +tree +Oaklawn +opinion +keep +or +there +attempts +unions, +been +fattens +district. +farming—in +A +For +years +player +a +point +Larimore, +the +win. +as +to +great +much +that +have +by +should +with- +if +the +exposure +adminiS- +.the +the +were +how +the +E. +this +than +of +tree; +make +ping +never +of +chiefs +equitably +I +for +the +Capt +his +the +do +leuc-nrrho-a. +in +store, +has +of +ever +days +turbed +of +camp +finger +thickly +I +was +July, +tending +after +a +aonnd +self-made +estimable +where +to +at +his +cted, +bill +few +with +has +sound +not +dollar, +Theme, +when +issued +to +could +office +sa>ne +land +libellant +the +Stevenson, +addition, +measures +legate +the +this +the +&e +Mr. +of +spiritual +she +Azro +light, +street, +The +lot +tnN.p*. +conveyed +nnal +not +the +been +be +the +sacrilegious +pantries. +regalia +agonizing +same; +was +defense +uppo +point +of +tha +the +and +cecuro +Lots +to +abbreviate +the +it +I +tban +surprise +of +Shall +cast +completed +opin- +wife +The +Episcopal +Nations +deficient +from +bv +with +a +&| +do +was +»an +bo +it +the +of +much +of +would. +the +through +for +ortunlty +regretted +have +wit +the +j +a +doctrine. +bacteria +exported. +corks,13 +lormigbi +ing +Rev. +¦bone +fortune +already +selected +Minor +cotto +physiehmmshavelenmt +of +Inches +be +who +other +Bismarck; +otherwise, +fact +clean +will +further +thereto +heart +long +horn +lopgyears +ought +whieh +171, +is +of +Mr. +of +of +before. +eounty +and +tho +this +her +copies +carry +Jack +the +to +had +harbor +in +t'> +.0; +and +has +at +following +with +ways +formed +a +has +gotten +suf- +in +dustries. +A. +achieve +to +aud +L3, +him +stopped +the +start +sol- +forecast +me +Selby +was +from +ing +Tho +bis +pond +the +diffusion +good +thought +en- +Su- +had +Growers +at +work +that +cook +found +coarso, +due +an +the +before +the +year +en­ +intimated +well, +completed. +temper- +classes +closed +too +exhibited +and +bring +fcruier +tering +as +Chau­ +"at +for +chorea +tfte +man- +Nationals +lespie +re-enaotment +lime +points +regard +Section +soon +1800. +to +whom +disband, +It +in +News +across +pit +a +a +the +feet +ln- +money +be +is +in +this +possible, +have +the +consideration, +the +Ile +host +and +of +if +by +auil +appeared +provisions +A +Principal +they +8 +who, +crossed, +tho +often +finery +their +in +end +by +of +is, +I +mn'mt +favor +and +long +the +shook +th +association +In +yet +about +the +and +a +rights +ary +maintained +was +1:48, +on +and +balance +rancho, +about +that +orchestra, +that +city, +refressaaments +never +right +of +making +anopheles +the +was +ax +Miami +carefully +second +and +34, +fleecy +call +decreased +are +and +15. +operate, +interesting +of +the +be +by +A. +a +I +Special +once +when +house +situation +loss +them +line +BOppoaoi +enough +volume +problems +of +fact +W. +to +wether +be +superior +tures +especially +danger. +the +ing +Cramer, +dur- +aud +very +vast +these +disturbances +largo +that +pushed +No. +to +years +rent, +Michael +good +in +the +happenings +women +typhoid +of +fully +by +why +export +officials +hia +pn-«-nt +and +the +purpose +dollars +eligible +and +by +struck +the +500,000. +Tli's +to +graduate +N. +"lb- +however, +of +t.« +possibilities +murder +ground; +Nails +J +Martin +tho +in +and +have +. +above +sume +Borer +Hayne, +Whitney +in- +a +see! +the +alia +simply +lode +took +sugar +upon +operations +Johnson, +as +debauched +an +have +chief +Pythian +Mrs. +Brisbane +will +the +ered +passed +said +Prof. +the +symptom +recover +death +- +of +But +on +of +A +where +territory +White +sate +greater +flagstaff +If +in +Its; +REP1CKED +l.ich +imre, +Club +pass +and, +1494.7 +took +the +tile +then +Hoa- +duties +the +are +will +nbout +government +no +Mercury +leg", +sent +Saviour. +years +and +the +eradication +ol +now +su- +bond +by +a +not +bonds, +management. +n'owed +per +to +fork, +with +public +company, +his +in +to +foreclosed +the +will +years +Festival +yeriuriuance +attempt* +of +Manhood +With +burden +it +your +you +in +amples. +"Navy +.e +held, +ol' +of +knitting +in +neglect. +an +in +crimes +Angeles, +it +to +L. +is +achieved +default +to +that +ne. +harmony +correspondence +has +flesh +pnurr«a +sity +at +wheel +step. +-te +thousand +Point +the +justnbout +of +real +better +60 +ball +motion +behalf +he +or +corner +original +to +you +of +an +couusel +per +The +Arrange +without +ing +of +is +contract +all +shall +lot +United +con- +I +head +and +Having +lor +uel +their +subordinate +bill, +into +armada +as +respectively, +The. +moHt +harness +Otto +For- +source +several +season +get +of +Would +which +until +John +ruling +absolutely +ataiemanU +the +for +1803. +prac- +ville, +The +formed, +children +A. +action +from +it +feet +Assembly +events +berry +All +for +the +little +and +ladder +and +num +getic +th +a +of +u +do +touched +men, +ness +will +which +and +embodying +expression +do +larger +aware +to +to +of +of +to +the +he, +set +too +in +as +1.40 +gent +bo +apprehend +Va.. +drawn +Now +tion +from +a +ac¬ +a +low; +charter +the +political +a +will +that +of +ex- +u +their +was +the +to +a +as +anil +that +grown +a +lengths +There +physical +where +protest +right. +the +found. +sheep's +one +Ticon- +children +Iowa; +ligion, +peaeh, +and +likewise +prevails +the +trator +reported. +ter +could +of +taste. +town +in +long +connection +will +the +is +the +but +the +enforced, +and +single +Francis +every +which +for +Instructed +court +bearing +advertise +very +le +will +waited +a +at +the +and +buy +of +aD +who +that +was +south +then +but +put] +hours, +extend +salt +or +is +famous +half +It +and +and +each +sens +Golden +the +the +cine. +be +the +win¬ +tbe +throat +below +influences, +he +t +believe +the +and +to +by +of +the +pure +the +any +to +my +schools +cents; +of +extravagant +I +into +South, +grew +will +was +also +healing +the +than +made +McDowell +it. +legislation, +of +33 +all +la +He +tbe +seized +a +men +been +from +neutral +And +long +30 +the +is +more +and +rear +which +quantity +February. +warning, +1 +abetting, +which +ours +get +teacher +defy +road +Repeal +finally +and +obligations +degreae +see +village +trial +so +This +we +a +and +fwed +made +Resolved, +the +lode, +millionaire, +who +the +impera +were +screen +him +of +the +the +Rosenberger +.i +Ram- +fie +nrcnled. +in +plot +part +hands +friends +northwest +If +found +was +are +been +assistance +or +those +Dawson. +water +hard +advantage, +Engineer +today. +October, +ing +all +offence, +handy +Or +dockyard, +a +previously +Congress +two +improved, +a +pa.aa +at +and +only +sought +axe +tho +it* +making +sword +to +and +of +ready +and +cases +ing +olivet +A +though +tonisbed +the +carrying +to +had +land +gers +granting +it +ers, +work +duced +in¬ +by +country +of +difficulty +their +that +part +of +the +doctor') +based +mi +saved +durance +of +; +be +science +his +not +the +as +article +heretofore +is +Yes, +in. +brush +dat +positive +ure +administrator +thoughts +aad +for +hearing. +to +couliscati^n +tbo +Episcopal +first +out- +lo +and +eruption +child, +but +time +the +John +12th +ever +Bitulithic +unwary +sixty-three +never +to +again +outlook +Mr. +wlfo, +sever +All +a +previous +shut +the +'umberland +Then +penitentiary. +generals, +to +cent +gives +and +Fifty +lower, +from +professional +; +the +Monument +causes +we +Fall +leading +of +It +or +been +shall +Home +to +such +knows +finally +experience +such +premium +company +«f +on +bought, +skill +made +To +cere +widow, +leading +didn't +despite +N.45 +New +from +must +the +iarge +hi +popular +which +the +of +been +Vears. +And +constitution +readers. +forcor.; +sented +have +to-day +Bingham +some +Hall +outright, +of +figures. +that +bkl. +Crusades +his +commenced, +to +of +positively +but +Albert +bring +on +ily, +distress +V. +At +the +heard +Ucicn +girl. +hergby +that +hold +as +the +racies, +Recent +did +feet +could +monotonotis +him +In- +feather +de- +and +been +D. +and +late +de +attempt +States, +of +of +elimination +and +during +to +.in +B~eaty, +1 +unsettled +proved +going, +received +in +Boys +made +Mineral +and +Some +dangerous +we +the +hoping +Shaw +housing +give +nccessity +three +duly +than +the +has +76 +aud +it +presumably +440 +14, +the +Downey's +hill +his +day +several +security +ns +local +inafter +is +an +model +both +seconds +Trenton. +ghost +the +a +was +the +I +struggled +to +bond, +IBOO +institutions +fifteen +on +and +hills, +Vhbn +immense +devtlopmeuta +days; +ata +social +death, +of +either +a +its +At +101 +Buck +streets, +rge +he +a +labor, +h +the +been +one +in +as +rims +at +unknown +But +the +which +line, +Witnesses +above +directness +fawned +suitable +to +hearts; +also, +from +are +hoad +lotto +same +make +hammer +and +fail +sharp, +follow*: +obligations +to +use +fruits +the +the +touching. +so +Christianity +to +survey +Red +by +an +is +Church. +to +is +relate +nnil +tickets +270, +did +was +took +- +While +í?.'17ó +the +much +work +altru +st. +nud +o +they +of +man +made +into +branches +peninsula +In +north- +factors +Mr. +penniless, +part +by +by +general +as +for, +lbs +proved.'.too +skull +Registry, +to +business, +could +it +resolution +Bomomarked +the +and +annual +nbove +ttea +of +with +That +or +, +cents +Commercial +quite +The +Legisla- +The +true +Infrequently +some +work, +citedly. +hay +women +so +located, +voice. +delay +with +them. +of +tbe +contest +Ijord +knuwt-d; +than +knew +lendatloB. +thnt +from +u +we +j +fluence +y +poke, +at +at +gentlemen, +of +and +In +M +ries +be +the +per +to +vital +Property +motion +worse. +Imagined +much +datedu +see +some +it +better +Pills +political +have +ol +over +the +officinal +and +city. +fore +ing +lineman. +himself +now, +in +looking +a +The +the +them +Winder, +an +4' +trodden +arrangements +wrist +purpose +rebols's +could +closing +was +that +could +country, +^ +been +tion +1 +arately. +troops +Fairmont +ought +Lido, +miration +to +Assembly +has +Monitor +the +session +is +in +left +at +as- +onto +Horace +than +of +thinking +ataad +while +which +the +windows. +cheered +January +prize +bo +the +the +they +February, +one +deliver +and +is +this +state +believe +once +commercial +eaniings, +wlll +soil, +in +impressions +be +file +new +the +rebel +had +the +in +around +acceptably +neither +and +the +tin» +hoped +that +mittee +enough +by +in +these +talists +rot +denies +Uliored +an +listeners +the +he +where +is +lace +a +preceding +upon[ +commeuced +hired +Mnj. +the +to +there +acted +from +comrades, +bly +Isaiah +and +Alfred +tried +the +promissory +organizations, +steep +beautiful. +a +cannot +sub- +. +to +iwwerful +from +for +and +think +Umbrella +by +an- +generally +mercy +Ignat +The +are +a +Mr. +that +at +his +pieces +three +Finally +an +legal +crisis +of +the +ten +can +and +wretched +caused +asked +witj> +which +P- +flflB, +a +a +out +dealer. +estate, +M +the +of +nominated +provisions. +Balkans, +of +are +of +tho +the +of +mail© +iv +its +thoueh +the +purity +J. +we +of +sub­ +suffer +our +a +Indians, +I +posting +- +and +Hhles +demanded +ot +in +this +exceedingly +itemized +street, +charge +ioj +various +gether +in +court +tiese +of +Doubt- +es- +Mike +city +we +of +exist +it +ground. +too +makes +Instilled +nor +Maddi- +the +company +of +wiih +condition; +mind +and +this +coffee, +when +exsit; +- +the +warm +coal. +horse +toxlcatlon. +Co.'s +the +Missouri. +cative +By +cake, +In +Pembroke +professional +of +out, +through +died +Ran +Den- +tlmea. +and +of +held, +and +goes +acting +other +Seeds +Medical +attended +sentiment, +to +l.e +ship +the +men +nothing +because +at +well +injurious +York +Garland. +\ +the +street +and +In +up +told +strong +Mr. +Heilman, +Wyeth +the +forced +entirely +for +that +K +they +out +of +in +Bt. +hit +titled +noticed +and +have +Cotton +and +and +District +and +: +took +nnlifai +glycerine, +When +the +holidays, +games, +field. +explanation +tuberculocis +Another +collar +name +it +onds. +Mi +R. +Yawk. +ure +pied, +within +sheep +many +He +"Every +register, +no +all +Cana +phere +to +with +After +Poydras. +Four +our +counterfoil +was +Lord +Lady +as +E +week. +subject +the +that +eor- +stop +for +the +7 +as +startling +hard +a +endeed +comprehensive +th« +oirculated +The +for +was +mklUhiii +could +Company +provements +north +fire. +show +clerk +over +the +of +Higgins +back +sons +Company. +law, +nor +a +lahois +Summer +newspaper +ferred! +the +be +supply. +und +that +barring +two +he +abandon +from +1S91,1 +hesitated +be +cratic +blood +ly +the +was +had +dis- +Ott +the +five +but +general +conference. +ulated +the +of +to +under +of +ofMarch, +stoping +ter +No. +be +Bsaus +ber. +through +sideways, +God. +Ititled +betiint +on +dried, +as +and +had +zations +Loudongrove +external +have +to +the +quality +discussed +activities +23,562 +and +said +widely +circuit. +should +iusulatlon +it +miles +fusing +been +can +Hut +of +barber-shop +their +life +the +proposed +public +the +in +Is +sustain +their +growth. +has +East; +of +fastened +to +France +tonto +that +better +night +the +eins +think +any +Tho +early +Mo. +hy +nt +Carl +involves +Weal +r.rovlili +in +triangular +back +because +The +timber +United +tem; +was +a +water +32.37 +Hefore +at +strange +suiis +4 +greatly +of +with +cal +Men +an +a +government +one +Arrived +and +So +occupied +in +forfeit +old +yellow +turn +How +drew +they +increase +open +you +for, +witfc +lssunn +oar +'Mrs, +insane +the +made +get +at +"I +Thepisode +aey +the +did +thence +ten +by +equally +atus, +the +put +Warren +dead, +wi»s +evening +dining +mnko +are +into +iinacciiiiip.uiieil +could +convenience +Ti!AS +Avay +h +to +As +Kansas—and +thereon. +und +excursion +tho +give +age +plates +on +Miss +minutes +and +contract +and +into +previous +with +so +In +of +bcqueath +aa +emigration +stuff, +fireplace, +to +concerned, +shot +of +under +, +had +novel +is +figure. +This +without +The +Yane, +that +here. +at +is. +that +Ague +No. +part +peers +duly +him +desire +from +role +Union, +of +during +onlv +who +in +in +by +of +bile +will +gun +turslicif, +enter +is +of +started +E +that +a +recalled +street. +76.000 +been +the +trains +ma +21c. +show +what +his +warning, +the +Michigan +at +Vina. +nation +were +Tueeday +a +down +D. +to +Mr. +where +conduct +personal +officer +religious +ut +it +session. +may +Y:i. +things +believed +a +Bedford; +carried +of +Illaine, +anything +the +for +as +the +Loveland, +limit +her +tendency +and +Snakes +inakingbutter +his +they +the +to +across +lost +when +not +bring +was +who +been +in +hie +Dakota +and +for +all +By +city +or +of +they +boy. +Now +had +same +pace. +take +own +It +Willingham; +his +the +business +above, +of +when +revolution. +in +this +and +be +Old +a +fish +any +not +between +by +have +This +one +encouraging +thay +nature, +they +Our +done +an +who +a +In­ +have +»? +absence. +will +water +together. +right +the +sermed +for +in +companions +This +and +the +fond +to +now +is +November +bo +tin-aeel +failed +of +tills +axatlou, +raised +hope +2 +or +beautiful +However +if +in +was +my +to +them +he +and +conven- +law. +has +perfect +tics. +for +assessment. +enough +her. +mem- +key +auti- +the +use +said +pigmen- +his +of +besides, +any +strictly +Smythe +to +earth +the +who +at +No. +the +the +AJexan~ +the +ing +of +results +and +Paris, +which +Lyonnais +the +Great +left +contempt, +a +lation +No +and +from +for +entitled +Bible +formerly +the +trade +by +was +Block +to +town- +of +of +feet +(our +on +property +are +within +course +many +and +and +feet +Oí +the +Dorn, +in +the +he +oil +tho +up +say +toward +chief +of +the- +county +York. +was +Mr. +.tin +declined +1 +way +essary +the +'be +a +powers +to +tlinl +of +lovely +revenues +the +painful, +soul +their +"Any +tated +may +did +to +are +iu +is +valuable +the +Hence +tc. +among +which +cripple.— +ters +to +least, +( +tual, +it +gray. +24 +good +each +ot +makes +H. +drawn +Thomas, +guides. +that +said +huugry +seven +painkiller +of +business +Love +i> +She +anchor, +be +"job +to +April +will +good +two, +ten +protected +by +ill +(5), +B +Lieu- +years, +force +August, +go +subordinated +my +a +jars +of +finger +SKELTON. +where +down +day +was +educational +I +ship. +. +South +respect, +yond +party +been +threaded +A +tho +wis +better +power +he +mitted +laige +path +Burleigh +protectiin +president +play. +Bench. +mayor +as +Nineteenth +contaminating +be +west +servants +the +that +He +alotirf +the +socket +Ihe +traffic +to +in +and +of +aud +of +personification +articles +company +Jesus +Railroad +war +a +| +each +the +asmuch +mediately +sion +cessful +Baltic +by +ministry +Minister +added +of +spring, +cessitates +guide +bullet +to +Mrs. +boni +These +the +the +waged +the +who:, +taught +with +could +"persons +sheets +as +every +inter +that +the +redemption. +his +guest +feet +life, +erate +IrtO +In +tho +ol +a +love +waa +fine-lined +touching +learned, +on +t +had +constituents +State* +the +invest­ +the +This +by +law +on +has +tural +Fifth +The +they +Co. +ri’ENT +the +to +may +every +greatest +* +not +using +democratic +is +at +by +o; +For +kind +was +our +of +canal. +paid +L. +said +asked +Paul, +ease. +her +going +year* +the +moved +that +Anti-Saloon +insofar +Am +a +pretensions +.glittering, +ton +Minneapolis; +2d, +can +They +and +1307 +important +while +District +with +fanned +oould +the +with +is +bill +years +them +towards +feel +the +played +of +tract +of +the +was +growing +I +unfriendly +the +declared +applicable +in +here­ +10 +maintained; +Lady +many +the +the +under +will +Medicine +seeds +a +thousand +the +jurer +facts +of +lame +and +policy +boss. +Thomlinson +in, +required +other +the +the +the +not +daughters +got +stream, +to +white, +are +elt +as +and +foul +seeond +single +General +I.', +par- +Meantime, +ntjfge.i +let +ont +tor +earlier +lame +it +for +perhaps +ment +onu +is +know +me +do +kin +peace +and +the +direction +Stale +city +the +away +Humors. +of +it +to +to +All +the +authorized +It +>ource +enormous +be +with +A +Athens, +Co. +knowledgment +evidence +too +ships +after +though +day +the +the +Hazel +c +nearly +sleeping +promises +Dual +f.«t +article +hour's +the! +every¬ +been +pur- +A +Its +night +Lincoln +31 +knees +and +placed +business +pletion +the +glamour +person +detail +In +the +ing +the +by +tho +pleats +in +the +popular +gtashho| +n +l»'and +opened, +Selectmen, +a +of +coura*. +tional +from +S.; +or +mid +atlon +724, +wore +Legislature +with +used +taker,, +children, +imports +from +merits +Colonial +always +of +. +very +rebel +no +grocs +Pa*ilia +children +tunic +taw +Is +finn +east. +ened. +wan +everything +walk +attention +end +in +in +life. +88-100 +and +arrest +was +purpose; +were +she +cans +givon +dnty. +ol +Vernon, +the +we +to +bullets +all +tournaments, +A. +Maryland, +for +nature +536: +a +when +described +Minout +at +is +P +rain, +. +customs, +26. +the +cealed, +one-tillarter +Pacific +on +Is +abundauce +him +as¬ +wrirth +any +Cook +unanimous +155 +Upper +the'United +bluo +with +11; +time. +to +LaBaw. +Liiion +to +the +ceaseless +the +at +reooiuinendf'U +Baltimore +Assessor +218 +may +at +off- +I +grant +the +by +said +tho +of +aught +i +these +a +and +pay, +the +field. +right +fish +with +to +and +W. +were +In +Black +committee +in +from +said +honse +the +be +that +Hushes +done +his +. +to +may +houses +the +arrived, +of +fleet +the +Mc- +The +and +about +built +haoded +lot +preposterous +dream +Kichardson +ot +of +of +the +really +where +on +a +seventeen +to +and +the +a +onr +for +ground, +a +has +definite +a +section +law +William +trans­ +listened +ka. +the +lushels,of +circulated +find +M +ludolph +tell +Victoria, +held +goo +timber +is +down +exhibiting +the +Frank +of +the +of +Metzger, +they +elahed. +family. +in +fhigers +while +with +doatb +in +days +no +that +filled +terests +proposition +personal +taxim +of +should +next +sort +used +to +anxiety, +dis- +and +either +that +a +the +gained +akall +tbe +thirteen +gon- +tbos-' +tho +tbe +thrown +it, +penalty +about +enough +stated +an +of +best +neither +beyond +bidder +has +my +under +vegetable +next +ernment +off +to +constitute +lessons +pistols +at +the +certain +Aden +want +United +on +ambassa­ +to +like +the +and, +7,« +H +and +ed +has +a +front +You, +Agricultural +national +there +people +em, +the +staple +« +after +cnino +several +newspapers, +towards +, +go +six +same +with +faith. +af +woman +lived +fearing +no +which +is +the +(S»24»c; +he +justly +bound +dry +what +tiny +him +advantageously +Jones, +practice +., +account +the +they +boxes.. +A +years +words +seat. +certainly +our +oT +Ions +irregularities. +with +(fin- +forget +organized +Negro, +although +into +Misa +disaffected +out +to +The +low +luto +Hon +and +the +the +the +pieces +of +of +gave +able +8. +a +in +o +for +from +vorite +they +it +and +types +had +tliat +Mr. +not +Terllng +theories +attacking +eighth +found­ +Stratford +The +the +was +money, +the +the +That +she +white +of +well +New +from +from +from +him, +lack +of +the +their +The +on +originally +then +to +in +Senora +over +Kate, +beds +situation +can +and +effects. +from +office +Poimatum: +other +Marshall +York +majesty +other +time +He +lower +larceny, +Slavs +very +season +first +cerne +of +done, +of +in +upon +who +and +those +more +eastward +to +and +bot. +ordered +subdivision +less +bill +will +far +service), +largest +in +north +the +gards +causes +here +thing +come +the +in +anybody's +a +tbe +of +truck +welfare +Virginia, +sunshine +have +Colorado +10, +the +reasonable +and +had +backache, +defences +list +says: +of +of +thereby +freight +the +to +; +knllttd +principles. +let¬ +repub- +or +Tbe +the +was +into +except +of +over +had +in +tack +north +and +shovels +son, +for +at +No. +and +is +messages +Poinclllt +Thc +we +such +a +a +wc +shall +for +;No +session. +person +per- +the +aome +point +the +Congress, +and +platform, +\.hen +at +general +in +navy +living +does +remarkable +my +man +through +bright, +growing +year. +of +the +would +this +there +re- +her +supposition +, +. +down; +Thursday, +at +current +happy +the +date +Besides +dollars +had +railroad +obtained +of +baby +then +^ +mark +throne—and +1-0% +the +causo +"The +to +will +drew +line +new +Company, +down +had +havo +forco +will +we +Informed +The +This +In +northerly +attached +the +recede +otic +as +etal. +is +reuards +people, +that +of +Square +failed; +and +First, +of +with +was +fought +would +Corner +a +doing +worth +,y +emigrants, +-wiu- +as +man's +the +the +is +so +question +agree. +year +save +war: +corruptly +by +daily +accounts +Section +sway, +they +world +town +Tarms +a +in +bridge +at +loaded +t +tho +ed +was +of +The +left +says +can +details +lived +. +Wood +to +thence +all +voluntarily +fungus +coton +A +and +of +artificialities +and +their +But +as +always +tlrst +ihere +itcaltaratemlion. +lands +3000 +across +was +and +was +disabled +81 +thc +opened +gentle +Republican-Journal: +Since +or +after +do +a +provision +my +they +very +revenue. +gone, +It +all +M. +him +Is +that +his +with +other +balances +they +privatesoldier, +I +pentagon +point +simi- +Canape +chance +be +avidity, +ten +evident- +corner +offer +a +The +entire +will +are +Owing +will +1907, +posit +preme +much +lime +chase, +to +club. +elected +of +While +have +the +with +'failed +year +the +J. +5 +DISTANCE +bids +as +itf +rea- +rates. +and +were +hearing. +Roper +Wilkius, +when +of +port; +down +be +off, +Controller, +ated +which +on +one +Delta +till +ou +of +oftentimes +to +Coffee +in +state +100 +Naturally, +Lewis, +Falls. +inhabit.nits +day, +lars +times +every +it +Pae- +on +boaea +of +his +in +a +tft +let +be +Court +she +the +his +work +about +came +official +suspended +I +in +together +has +meet +Al +state +because +office +districted +a +a +the +which +and +bc. +scene. +Democrats +flowprs +town +the +their +Tousley +within +is +Rcc +to +previous +sale +years +rai +R. +to +buviciu) +resk, +get +gathered +work, +card +fined +a +days +backed +for +As +would +the +smoke +the +hand +by +this +lend +praised +as +unfit +Farmers' +necessary +advertis¬ +Dt-cea^ed +terms +wlafa +head­ +that +F. +maintaining +kind +not +creditable +weak +rnlt +valu- +of +the +counsel +ton’s +Prof. +wittten +things +for +one +a +nited +preside +standing +r.'erk +of +believed. +comfortably +of +all +savings +as +do +Channel: +and +I +tho +are +modest +Europe +It +October. +Mr. +Often +civilization +her, +in +becoming +pausious +as +Washington +waiter, +that +edies. +con- +each +Gen. +ideas +but +was +should +Is +canvass +Jen- +Escambia +duced +of +any +continent. +ard, +|MUMeiu:cr +no +Beginning +to +heart +S +Apart +The +catine +of +that +until +with +step, +as +of +WEEK +There +expend, +they +dian +enterprising +hunters +infidelity +Inspection +entertainment +not +city. +companies +he +imaginable +recently +to +beginning, +not +The +been +bo +to +lie +One +little +re- +for +Mississippi +aud +extends +one +for +should +morn- +that +said +eager +as +or +the +the +mule +amusement +conditions +becu +to +another +tile +Trimble +charmed +alon +own +3, +spring +march. +to +electric +The +of +liquids. +congenial +practice +for- +The +sou’wester +just +pending +thousand +quite +good +Innnas +being +any +cavaii +the +cuurtlliicaa +this +Christmas +of +mount +can +she +term +of +bad +of +ing +the +strongly, +funds +entertain +each +to +have +theu +Its +draw +other +Cor¬ +less, +tbe +a +now +is +of +$147,000 +Church. +bank +his +of +gathering +tho +he +Spearman +of +Is +chose +the +1840 +allow +and +to +known +sede +will +omllon +the +for +tabllshing +Miss +presents +Hayden, +| +country, +house +me, +them +for +that +tbe +are +Aaron +upon +complaint, +and +emanelpa +a +tor +stood +the +Avenue +will +state +storied +I +had +finds +on +wbero +to +Barns' +go +red +army. +chare +tlie +people +and +was +tation +to +and +and +fences +cash +commands +¡p.ne. +call +the +reported, +the +improvements +out. +citizens +of +to +acre +777—15 +where +of +the +ambulance +that +Tree +a +meantime +the +I +nf +section, +Tho +local +liinine +'the-'customers +to +smaller +a +Lang, +oo +At +as +In +coin,'' +ataeotais«mhin.'» +Mr. +located +et +1 +A. +he +engaged +the +appliances +rison, +and +thci +ington, +like +his +Tom +fo +other +they +in +children +ot +forts. +most +his +No! +found, +of +authorized +entral +she +left +party +bank* +the +turo +the +policy +to +dangerous +the +weighed +sufficient +densely +clvo +uuderstaud +inches +Lower +minutes, +credit +and +named +the +beneath +join +our +nuiu +alone +the +were +in +listen +hair +ton. +His +sidewalk; +bullish +to +ton, +not +juncture +gen- +went +which +of +unless +high +least +hams +to +bullets +Mrs. +point. +country'* +IT +Fridays +and +pegged +the +dition +ago. +of +action.* +the +lor +n +chicken +yellow +re- +8. +and +draws +or +colonades +J +and +deeds +had +the +extremely +was +of +amounts +source, +were +concert, +§75.00 +■d +business +through +dnly +were +lobbyists +ever +The +the +region +been +In +and +marker +him +personal +looked +"wont +revealed. +largo +lie +enemy +Gould's +think +could +Beign, +very +and +>ury, +and +many +balls, +in +or +een +as +into +most +Zike; +De­ +.a +quill +menaced +of +SEK, +There +company +and +looking +said +in +exists, +do +other +him +that +the +until +i +that +two +Mr. +most +thereby +in +impregnable +at +for +making +she +of +law +are +now +self. +painted +ernmenr +tiie +and +United +expense +village +ter +From +and +failures. +a +son, +thousand +whiskered; +the +V. +helplessness, +Link, +Sharon. +bo +Stevens +What +Humanity +their +ments +travels +"I +the +commerce +hesitate +of +description +that +to +fined +covered +on +we +a +head +Is +The +nor +were +a +and +any +gathered +grees +An- +often +has +day +If +ago +free +to +doso +upon +said +due +future +worth +tho +persons +in +to +trame, +Burr +toney +was. +knew +Manager +Whenever +another, +swan +per +with +charsing +court +the +they +grm +'xrfer +colds +to +ing +of +la +was +that +take +and +Price +during +c +ward* +regu­ +establishment +on +th4 +immediately +eon- +They +yet +the +attorney +State +court, +he +he +every +District +"taxing +put +chance, +in +that +o +Mr. +necessitate +for +Glance +all +re- +rieo +anpply +country +that +which +command +from +as +numbed, +moral, +wished +for +he +not +demonetized +sometimes +not +the +Dr. +Bratsberg, +line +of +right, +of +made +10 +doubt +and +facilities +the +to +War +that +good +hands +( +ling, +supplemented +what +and +was +so +Gui- +brilliantly +the +a +with +wilderness +for +He +ing +rolls +I, +must +by +second +l’aritiu- +they +ed +wife +sign +than +it +1871 +touna +appearance, +is +This +of +eyes +cluded. +fires +able +having +riors +con- +Lincoln, +manently, +and +As +too +"Uland +extract +by +not +of +one +majesty's +nearly +O. +phenomena +further +tna +by +I +rose +was +filled, +member +the +, +Court, +that +the +and +was +is +and +will +medicine +competent +Is +had +because +in +and +Mr. +this +of +tbat +the +degradation, +altar +last +lost +can +Corps, +surplus +timbered, +ai +most +spired +the +Mr. +The +to +The +4, +become +match +tbe +fo +from +admitted +the +ple. +so +the +from +of +healthful +or +erto +few +deserted, +to +consideration +extreme +traveled. +This +380 +operate +tones +said +over, +of +of-wey +cer- +there +New +Berea +notice, +lie +December +the +lives +GARIBALDI'S +them, +at +patrons +of +very +Cleveland +our +all +of +Macon +with +Grant. +Frank +Anne +Arthur +on +want +entered +U9UU....SOU +utilizes +the +G.A.R +no +the +tinting. +ed +Why +that +being +same. +study +A +in +anyone. +her +the +as +it +lane +of +much +yield +promlisen- +refer +huddled +that +trial, +eosr +drugged, +Properly +boarder, +broom +Other +the +a +counterbalance +point. +has +latter +spread +be +wishes +the +on +ijer. +of +mediam +years, +get +taken +prince. +only +Roes +and +the +case, +numbered +wind +1897, +to +little +not +mitted +be- +fore +tnai +they +what +the +has +nervous +have +bation.. +tically +Roose- +fifty +itor +ing +Island +intelligent +any +who +of +people +financial +when +the +Keller. +the +Urass +William +at +M. +that +been +to +these +thence +avaln; +yeast +1 +er's +tell +devote +September, +from +were +the +killing +Its +manifest +breaking +the +farm, +ed +to +lo! +from +that +sa +Im'nkB" +arctic +j +to +a +Miners' +change, +wish. +same +exercise +excellence +was +can +A +approval +Henderson +BflipiM +Nevada, +especially +street, +and +crossed +authorities. +O’Day +mesne +is +the +post +urai:; +said +tb* +our +(humusi +tbe +The +per +smaller +not +lbs. +the +one +i +but +et +Mas- +and +dissen +roada +Infantry, +Canal, +be +super- +the +I +worldly +his +thence +card +There +for +can +kick +cf- +compact +this +desolate +found +ministered. +and +by +of +forged. +done +be +our +to +oompost +that +display +week +May. +corner, +with +stances +After +and +thence +instructors +Inflame +rely +the +only +tives +service +to +till- +losses; +probably +1m? +do +Senator +and +of +and +that +and +age +Conway; +in +creo- +Mian +He +in" +to +things +main +comparatively +of +be +to +ap +cost +near +dealer +was +much +" +waist +the +limitation +he +heoughtto +enabled +aod +the +the +last +each +Albert +of +of +for +last +in +which +with +the +elevators +the +making +of +the +evident +there +progressed +easy. +Patience; +so +fighting +The +so +party +Me- +his +equal +and +thirty- +a +and +cities +wrist +they +to +lots +number +of +Over, +not +messages, +bne +the +young +virtue +C. +but +depart +driven +limited +It +relief +which +this +been +right +. +the +far +reer +dragged +surface +temperature. +Grand +Cincinnati +in- +south +message +something +thi +Congress +Incarnation +complainant +distinctly +ground +dusty, +books +officer. +man’s +up. +To +Russia +ie.;d +these +an +statute +he +home +very +tmrnskip +of +Ryan, +** +is +survivors +thing. +to +steam +was +as +glad~ +companies +said +was +tbe +theCrawford +levied +unhappy +discouraged. +the +played +she +this +you, +to +defend +cortstquencea +ited +pension +aud +about +in +After +body +apportioned +use +industries +a +officials +JO +of +SATUR¬ +tion +day +north'and +well +that +were +weal +Patten +the +and +several +ac­ +be +which +The +fatigue +and +Senate's +Union +the +in +the +had +they +of +has +the +rations +was +be +of +Chairman +upon +will +of +commissioner +tin* +the +improve, +when +to +Sir. +State, +the +permit +declined +have +or +Gervais +portion +sold +received. +numerous +to +bridge, +Meaaage +it +pro- +England +may +I +crossing +looked +sores +to +course* +to +sort +of +No +for +this, +set +boundary +Cover, +fund +works +said +effect +aiid +McCrack- +Arouse +bu. +up +public +Templeton, +of +a +and +fired +for +or +senate +ington +produce +day, +broth +described +Injr +aaw +entirely +and +ami +the +will +by +level +because +not +Robespierre +is +augmented +of +general +trust; +never +was +pany +made +shot +while +Gray +of +leetlo +place +down. +a +Allies +he +serve +merely +all +ets.: +time +when +to +off. +this +,ppearanco +haviiij. +in +official +oi +father +shop, +As +I +the +to +upon +will +to +vitals +onlv +giye +*anic +year. +volved +and +weather +at +the +before +conspiracy +and +sign +atI19;No2Spriteat117forcash;selerforMarch +c +cent, +this +Chartered +should +io\f +h +quotations +the +whispered +and +Havana, +will +118 +stockholders +discretion. +snap, +iusrfnc +collid- +tains +. +all +of +his +Godsend +gineer +nt +to +was +care, +of +2. +Cloud +or +the +The +the +only +that +in +if +who +through +when +year +eouM +the +enced +per +Grande +must +governments, +of +. +lar +most +thereon +claim +the +in +and +iliviaiuu +eve +from +her +No. +and +spread- +wel¬ +self +"pectatrra +sentiment +after +linea +the +that +the +department, +keep +he +the +and +goncrally. +the +I +the +the +tnnn +to +and +the +my +and +McGlynn. +Court, +that +by +fur +Ik* +» +and +- +secured +defensive +in +be +refractory +serpents, +the +the +The +to +composure. +get +not +quarter +do +ceased. +Mr. +have +F. +machine, +day +in +pursuing +the +thousand +was +im- +was +tho +them +that +is +tear +agriculture, +Jose, +be +to +here +of +for +I +and +or +14 +to +graceful +meets +present +body +United +by +not +Is +rom +rdadjudged +that +turn? +grounds +t. +all +Common +adopted +now +other +the +sack, +In +advice +Fashions, +river +the +another +ployled +to +Cleveland +4° +country +Issued +the +regular +will +you +from +port, +these +plety. +the +ranch +There +me, +bowev-r, +and +into +be +was +filla +Republi¬ +sublime +and +good +in +members +of +tho +coffee; +hcou +I +a +from +Scotch +vitally +500 +half +to +The +one +of +buried +though +do +pro- +you +On +rated. +the +excepting +ap- +ponder +oul +switch +hoped +to +the +ers +for +to +anxiety +the +(lie +wlse +miles, +such +This +me +sonrj +which +got +Nor¬ +up +butter +. +was +during +state +the +or +what +evaporate. +said +States +Koro +Govern- +; +the +that +place +In- +town +The +things, +have +suf-- +men +the +specify +Our +the +laoour +si +bis +- +hundred +49 +mind +pond +eggs, +larity. +of +Inches +unfair +Huuse +such +to +across +the +State +P +To +whole +fatal +of +initio +ported +; +District +I +j +8. +properly. +speculation. +by +petition +thelr +thereupon +HfmseTf +«t..inai-h +earth. +tbe +and +Indian +township60. +others +strong +it +would +but +the +consent +talent +mass +used +would +announced +itntcd +and +is +and +ple +a +a +18, +of +banker +the +within +city +as +get +it +them +Into +will +did +it +by +amendment +clothing +Suites +nineteenth +title +for +of +the +It +an +brace +satisfied. +pianos +questions +said +C. +proofed +neral +thence +aperient +in +death +- +instrument +o +respect +Rhodes, +the +feet +now +14th +nnd +"tempted +who +And +ment +he +so +to +took +this +substantial +of +went +corned +as +opportunity +Primo +cannot +sheds. +No +Mrs. +the +at +those +and +out +slunk. +tfmes, +a +defense +gc. +nsasbsr +welfare +a +he +J +laughter +path +No. +Shore +Mr. +kins, +take +the +year +may +the +an +one +impaired. +u-hite +of +sauri +may +suddenly +at +gers. +the +Farwell, +theCounty +and +eran, +it +physical +2,000 +less +Mrs +to +blow +feet +When +tors +the +bat +advance +is +of +tho +heretofoie, +and +west +follow +any +present +the +en­ +of +without +body +the +from +a +he +if +other's +Irani +to +in +and +prevailed +feel +later, +willrequire +hisjudg +some +attended +estimate +bringing +defended +fishing +100 +case +successful +the +lor +be +ment, +wile +are +in +assist +nesses +time +which +had +near +were +ago +^ +from +with +the +58—Walter +who +entertainment +heart +Hie +cut +youth +street, +to +following: +those +moon +of +3.9, +cause +ty-three. +her +a +the +actual +nearly +men +8:10 +in +it +Pyles +Stickle, +spot +the +plans, +self, +turned +further +fa¬ +Block +peoples +shall +brush +for +to +closed. +.the +held +that +but +and +couple +and +the +Convention +Cobb: +Riddle, +but +after +to +from +ered +second +a +one +the +has +m +of +a +burdens +com- +ghum +the +to +the +f +inoderii +A +and +and +they +1 +the +set +Olney-Pnuncefote +of +bajha, +West +the +ice +forth +and +before +sunk +tract +unlawful +as +system +Pastor +generally +what +Irom +bis +Doloreux. +anv +a +Marshal +visable, +proecutiou. +because +ho +hot, +#a +by +every +of +Susie +shall +few +farm +characteristics +length, +tenta +Mr3. +politicians. +subject +and +bun +the +of +Win- +diers +these +one +can't +ing +perhaps +in +The +had +goofy +taste +crowded +Roberts +People +commissioners. +he +a +own +bounded +and +bill +ing +sessment +War +is +tbepr.*- +springs +of +the +so +will +totally +Dana +good +ernor. +gathered +proposed +the +thereof, +he, +view +or +west +of +that +(children +selecting +America. +received +they +En¬ +portion +services +my +to +Prescription +pendous +the +will +tele- +tho +do +of +forbearance +have +the +stairs +to +opinion +the +worker +cccur +having +and +discretion, +the +Conven¬ +>:n +and +sidetrack +now +and +few +relics +company +Rockefeller +they +Vermont +gold +from +and +to +is +and +town +months +residenoe, +Stew +his +and +and +Slauson, +noli +he +frill +The +lIouravief, +every +plete +saved +000,000 +a +thy +diminishes +which +old +medieval. +Investi¬ +uj +unused +They +and +day +Davis +w +cost +at +of +tor +of +raaing +manner +reached +chanic +be +aaked +as +was +known +should +amined +well +out +asked +elson, +side- +cold +scale. +exposure, +out +Importance +against +and +all, +year +talk +ledow +course +from +waste* +this.there +was +S. +in +the +of +replied +The +can +wu* +as +cursed +tho +bar +Astor +the +is +; +always +them. +am +submitted +miles +too +went +the +to +all +an +of +men +on +He +Representatives +up +they +111. +with +of +apprentice, +wrens +day +case, +doctor +at +vantage +was +give +add +improvements +with. +reb- +tariff! +to +the +the +when +he +4000 +a +before +enough +they +"orionoos +ebony, +peel +saving +a +vided +and +testimony +auspicious +taken +by +they +excitement +payment +of +present +arms, +or +or +tc +done +It +murderers +find, +factories +scholars, +in +those +the +ly +1864, +third +actually +at +of +spectability +the +to +tbe +Minister +ed +of +meaning +eaten +the +glossed +men +pow* +let +per +to¬ +the +pretty +of +course +to +had +a +that +assemble +ducing +Probate +the +'0O +claimed +dowager +fibers +.- +revolution +is, +in +can +cainc +gesture +train, +a +perfect +the +the +get +Hurley +quire +the +was +another’s +by +bers, +and +of +one +Vice-President. +The +or +on +Much +to +the +of +setting +told +oar +tendency +ss +Bowman-Orangeburg +organizations +and +impressively, +music +a +vo- +tho +office +Deen +fireman, +others +person +is +men +dinner; +East +establish +la +visitin +lier +,the +from +brave," +unprosperous, +the +op¬ +her +acquired, +hearts +of +cited +coal +workman +note +three +vest +ed +stood +tion +the +dier +caused +will +go +the +do +whole +the +have +vessels. +scientific +If +vator +per +during +emliployer, +men +. +savagely +these +days +buy, +here +Sawyer +Last +work. +lasted +the +caves, +my +mas- +out +protect +due +clothes +some +district +letting +boy +cov- +herfertilefi +$6,000 +infantry, +atamD +perches, +men +the +father +was +the +in +the +Mrs. +Cecil +made +neaie.iity +tation +to +Water +it. +these +other +dog +the +seconds. +barley, +he +wii +gular +Milestone, +one +were +viding +Keefe, +was +learned +may +Is, +different +couple +the +appears +work +being's +had +charge +been +great +far +was +Wheat +French +work +Long +our +in +him +the +democrat, +of +the +up, +the +- +at +Jewish +islature +Sic. +ateer* +The +one? +Monroe +29.86 +positions +have +Seat, +reached +Jones +paid +right +sisters +deficiency +about +the +Robinson +and +for +a +pulsations +I* +- +in +lis +second +Mesereau +ticket +the +and +and +put +no +a +and, +. +the +August +race +us +the,dally +I +No +260 +test +I +the +appear +bpen +of +this +It +46, +it +so, +Griffin, +certify +103 +execAion +eaat, +the +wisest +to +eensure +truth, +At +the +mind +wish +again, +indifferent +confined +for +family +the +from +of +consider +$14,468,327. +advantage, +the +and +3; +points +the +to +in +tivi +hours +were +two +and +oversight, +there +of +overcome. +used +the +ency +snail +of +aside +fact +would +were +in +of +Ten +competent +aid +He +field +shown +bury +for +Messengers; +record +Bul +from +referred +give +n +was +held +come +to +in +and +east +stairs +and +labor +diclino +scheme +ty +or +street, +his +here +Ca!., +by +Corn—cash +a +and +this +county. +felt +department, +I +scribed +confirmed +state +she +&C. +(70) +the +sys- +West +I +past +Company +it +lows. +exhibit. +see +it. +can +DrebberV +aa +industry +richenck'a +Wilkins' +readily +to +flows +first +afld +order +made +the +gas +say +were +flrat +is +of +perished; +every +was +Waterloo, +and +unheralded +tongues +service, +amounting +at +tha; +brigade, +uot +the +the +nal +Somerset; +Ohio +crops +the +the +$V +York +to +of +is +their +men, +chains +Hotchklss +of +for +party +a +marks +a +the +expert +our +I,0o0 +destroy +jumped +said +of +our +tinly +the +interest +no +will +at +hitler +so +of +bare +of +their +were +judg-- +party +in +Tehama +street +Being +Mr. +"hard-boiled +o'clock +i +and +at +repeat +business +out +to +many +a +so +out +him +State +water +to +and +the +in +mention +March +glory +what +to +in +brink +wi'll +Where +water +sea3 +alumni +eugineers, +consented +navy. +of +the +ind +it +were +short. +H +they +hut +$650,-0- +be +the +on +behind +day, +the +would +even," +tifty-five +majoii-t- +struggle +whose +with +meaning +winter +a +No. +of +a +said +deg. +their +they +feet +hundred +are +with +son +idea +was +for +hotter, +with +last +To +our +M- +I +good +an +neces­ +v.cmit +Bailey’s +that +be +way +in +department +are +Brodie +receiving +department +Mr. +youngest +the +took +the +fullv +months. +ment +steam +land +cavalry +to +Yet +them +demand, +beautiful +revelation +*bout +have +part +be +ed +filed +young +who +difference +admirals +We +of +On +regatta +favoraole +county +tbat +the +Northern +x- +we +pay­ +true +be +twenty- +the +Medical +forced +there +stocks +Ward, +repeal +this +railhfully +Foley, +not +in +tho +they +obliged +visitor, +Sim +of +number +Maybe +cry +received +there +out +sustained +same +of +more +sist +Kodnuy +*0 +they +re- +of +Grillith, +after +Barker +put +Tile +got +would +room +of +. +strange +which +silk +said +We +well +the +soon +T. +extrim +the +said +tuin, +to +their +us +quickly +a +1 +chief +renovation +memory, +the +her +and +lunher +A. +a +out, +"being +with +and +18; +ol +into +3 +through +again. +blood-stained, +be +strength +to +of +secured, +has +tho +the +peine +tensive +than +what +solidly +Jurey +stead +perhaps +elections +American +reason +tiful +practice +4 +Engineer +the +pending, +in +derground +our +spread +value +and +and +is +same. +not +over +months +southeast +the +nature +who +perfectly +the +of +little +Schofield; +emergencies +.'h«m +only +her +up +egress +yards +the +the +arranged, +closer +it +on +hatter +dyiag +of +Wall +as +been +nearly +"For +them +itinabig +American +capture +their +a +licenae +by +the +me. +that +ers +of +tile +the +Mir.ial? +was +be +after +amount +only, +own +values +not +an +still +Washington, +recognize +plana +me; +road, +oot +do +maneuver +Christians +her +time +hand +fags +department. +ers +abiuni»otno +there +"transient +stantial +that +oon- +it +our +priation +pontalns +in +imperial +county +o'eloek +situated +before +his +toxins +L +originally +effective. +breathing. +rather +serious, +laborers +commander +thence +about +8. +to +the +at +Hill +shoulder.^ +a +select +May +of +c'r- +Airplane +and +f +everything +fowls +work +in +o’clock +arfield +uit'test +woiu +ing +amend +di +the +better +just +S +the +lamented +customer. +building, +to +Taylor's +to +as +ie +an +prayer +hidden +man +or +and +No. +turned +Some +111, +is +without +to +Beach +who +being +In +entries +tho +in +brief +his +nec- +causes +the +«ITecting +who +obtain- +to +or +affected +had +sharper +vestigation +ing, +"olose +is +accorded +grl-f +that +this +to +Evelyn, +said +teristic +principal +work +the +1 +the +receive +Oar +lines +reflect +has +taken +dein +said +management +fastened +the +have +Mr. +them +a +and +to +been +relief,with +llth, +disagreeable, +the +the +the +false +tle +department +at +had +be +Lieutenant +trunk +and +70 +After +all. +was +'.My +his +Lake +of +free +boldly. +monopoly +re- +the +The +to +The +tbe +charged +spots +more +In +same +alaveuienl +he +stun +phosphoric +and +Is +the +the +hnve +the +her +waa +ended +compared +traversed +continued, +a +tempted +by +4. +could +Il +was +time, +contractand +to +him +since, +up +siderably +in +Uie +is, +theni. +You +Inflnltosimally +per +liI +tire +this +wound +num +It +L#yr.ch, +mirdeeds +by +work +cross-roads +It +to +or +store, +the +for, +draws +on +The +one +depth +and +rouondat +feeding +arrested +maddening +neatly, +jackets +they +France, +N. +and +ever +you +place +to +a +1862. +that +uncompromising +Texas +place +daja, +Mr. +and +ef +F. +anything +other +existing +causa' +other +as +tiie +and +beverag +help +on +and +This +the +Northern +"would +in +ly +(own. +selves, +March, +In +hold +without +the +said +of +$35; +i*e\* +head, +31 +its +form +mauly, +perhaps +this +less +there +person +to +notably +there +Pan¬ +the +therefore +best +the +entertain +who +soon +situate +tomatoes +liut +the +They +now +per +Landsburg +obliged +investor +the +and +fines. +No. +of +the +Pine +consisted +cut +literature +We +tion. +Another +is +and +in +Against +diatroated +of +had +houses. +80vorally +such +mail +can +of +of +and +the +pleaded, +icies +would +because +vided +Memphis: +the +stay +retain +sound +freight +first +his +per +the +good +averse +'20th +ear +the +of +was +there +recently +deny +holders +with +little +les, +high +shared +that +Evelyn +the +is +feet, +that +tion +with +That +field +without +country +it +cheese. +close +Cure +d'Alenes. +8 +throat, +the +lived +a +might +suing +negro +judge +Isthecase +man +unworthy +lie +and +senator +of +{tambourines +which +Of +spirit +spare +once, +repent +aun +ciilt +we: +A. +aa +immediately +Congressman +in +the +oclock, +in +night +of +these +heavy* +eyes +of +-aid +on +the +chusetts +have +of +go +oil’, +all +Corn +lowering +calculate +Sir, +itltct +so +washed +ways +5th +10 +de­ +Grayson +person +that +feeling +has +ings +Rosebery +gills +Their +view,of +in +balance +an +Hoard, +mortgage +grace. +Gay +dead +the +was +a +company +tion +and +is +one-fifth +the +of +survey, +head +led +Sher­ +n +public, +to +notice +years +bomber +which +11th +but +valve +25 +the +may +hvcry +States, +'u +Myra +l'ver +appears +ad- +a +either +the +on +time +c +exceed- +claims +Court +Scott +portions +these +There +the +already +poor +bom +not +After +than +had +20 +taught +teeth +the +Roosevelt +ails +the +builded. +the +upon +will +the +all +sale +that +"Iron +colony, +Whitney +and +only +him +the +oits, +and +tbe +always +to +the +estate +power. +to +from +School +33}n:i5]e; +President +north +for +a +mine, +that +wonder +subject, +whirh +4967. +prehension +motion +pieces. +him +dollar's +mission +tion +man +monthly +Savannah +a +2819, +an +taxes +AK^'-f^or +the +13th +peaceable +candy; +The +a +iso +presents +side +him-the +car- +rest +day +Club +arrival +easier +a +judgment +should +otherwise." +seem +in +the +the +a +must +death +the +leaf +at +after +of +40 +district +without +It +the +The +diseases +dred +if +they +at +ni +of +wreck. +the +late +and +send +of +zens, +within +each +United +the +all +said +is +tne +County +. +oure +Bsl +properly +brother +of +Brook's, +have +north +the +of +best +other +hand +boen +was +them. +proposed +abundance +Move +depends +sight +that +forgotten, +dissolved +aud, +penetrating +saurian +re +extreme +Hattie +the +the +Company, +class +disability: +ceme +and +been +at +ments +eye +conditions +He +you +pest +battle +tion +with +to +around +tbe +Ger¬ +the +Chapman, +thought +too +clearly +Is +sauntered +made +the +eliminated +has +3. +costs +prote +not +these +head +32 +ho +sence +Block +ceremony +most +is +Administration. +much +of +register +hope +Winn's +of +in, +sleep +northeast +gloomy, +the +pat +spirit +quantity +House +whom +then +culture. +that +ilves. +the +a +be +so +up +the +Monday +French, +cents +in +useful +shall +work, +ets +ror +la +all +The +increase +the +At +bofoi* +Ten +casualties +Cross +never +The +in- +them +ment +be +the +beauty, +for +open +United +the +the +in +First, +of +mercy. +of +fish-drying +would +park +sake +its +East +such +future +o +In +.lane +this +weapons +past +to +and +at +b +markable +purpose +the +fair +his +tion, +may +and +measurement +the +Several +among +each +and +work +trusted. +of +and +the +font +understand- +tldi-ut +each +Sharp +ac- +mission. +be +the +State +$3500. +the +J +do, +lie<*arae +of +to +the +Philadelphia. +the +interest +of +weeks, +Medical +was +never +resolution. +body +this +tune +old-timers, +adil +then +New +out +the +full +have +We +labored +us +the +During +w +the +ninety-three, +the +not +merged +time, +on +and +in +be +these +ana +was +last +determined +a +race +ends—-and +Not +American +tow +president +and +road +near +curative +father +from +of +country +the +.. +from +rob +o'clock +ter. +and +and +turkey, +found +in +pass, +their +the +a +people +line +situation. +jurisdiction +scribed +the +is +100 +that. +something +Marks. +dent +people, +my +the +open +Each +they +three +rather +In +of +Works +tapis +Bronze.It +a +the +others +and +matey +of +annals +was +to +fools +Jewish +the +will +have +sympathy +is +trimmed +to +81, +been +dol- +»if +bonds +that +the +»ld, +interest +likely +quarters +the +and +worked +this +later***tioo +small +dreaded +currency +ir +ness +will +ribbon +case +"masterly +twenty +have +told +sons +for +long +no1 +Reva. +Dr. +duction +blade +It +explanation +T. +the +Toxaa, +av +ly +by +bonds. +is +authorities +ing +saw +is +dead, +pub-- +and +divine +usufruct, +his +grounds +Quar- +make +Daveites +and +ready +weakened +the +light +(laya +years, +of +its +to +it. +suit. +damaged +Eloquent +the +two +it. +Said +it. +having +Butler +for +hands, +The +position +rates +Into, +the +first +plies +that +Interest +ship. +and +We +Jackson +bushel. +stop +fight +contracted +fools. +than +and +and +known +taste +single, +proper. +rect +stand +a +suifuccand +it +finally +packing +great +former +m< +part +after +al¬ +say, +Thirty-Five +chlld, +the +after +and +made +of +to +the +rewarded +yearling +West. +¡he +ling +recommended +exercise +worth +for +price +and +she +had +ever +be +hccome +is +Dallas +Lard +tombe +than +exporta +string-plate, +wefoes +N. +invented +Florida +said +has +both +will +health, +all. +tho +ake +be +free-horn +dwell +be +the +banners +it +I +A. +both +per +application +that +.which +of +On +uo +in +administration +to +which +board +about +The +Herman +Wa}hington, +numlior +267 +the +is +the +horse, +for +the +valley. +trowel, +It +ship, +some +honest +^ +concluding +four +York, +and +a +proceeded +of +negotiations +was +live +Den +You +of +act. +failure, +sale, +Rank +anflaa +railroad +large +recovery. +of +very +with +We +This' +mile. +honest +has +of +all +to +to +has +around +From +every +Route +the +and +table. +growing +flying +learn, +been +Bos-- +ouiy +and +crops +professions +jueen's +It +fbencelorth +methods +are +ance +the +own +amount +that +their +suedl +we +to +each +of +the +emotion. +organs +prevailing +prolong +iherefore, +quito +so +into +relating +for +this +satiate +in +decorated, +of +specially +of +expects +the +bearers +knee. +must +country +I +Vernon +their +he +j +of +rived. +Joseph +have +out +they +to +the +pay +23 +tains +was +and +to +iff +the +DangafVen +they +with +men +morning +tbe +Jones, +day, +entered +tonic, +actor +kneeled +done +couple +responsibilities +a +and +Rule +of +sale +the +of +fires, +Pine +Los +by +preach +nervous +are +draw +Jota +7 +Wilburn, +an +tions +speech +cover +i +y +are, +same +such +betweeu +a +This +drop +the +acknowledges +will +activity. +would +He +Maximilian +beeu +of +Minced +1841 +his +constitutional +the +until +of +money +old +says +disguised +direct +far +have +the +and +first +wltuess +yon +the +nation, +be +con-itlcr +lot. +was +exam- +was +States +in +and +that +now +her +our +and +fascinating, +of +and +500 +cattle, +cor- +oould +own +During +looked +he +tonight. +iuteresting +waya +a +Representative +this +does +b» +Foisom +from +seemed +ceived +the +lower +not' +that +of +for +in +have +., +is +afforded +the +were +of +that +were +Mercantile +leaa +discovered +summer +will +the +grant +the +right, +acre +In +a +in +any +said +to +he +was +mistress, +fashioned +however, +attempted +my +facture. +behalf +Charity. +and +had +relations +honor +is +who +the +pacity +into +the +is +were +privateers +had +Interest +have +public +sale +section, +that +arc +he +Thornton +by +then +Go- +is +in +the +in +next +the +is +hand +Columbus. +It +such +picked +direct +plarticl- +believe +Mrs. +Mandeville, +fortification, +no +he +be +bean +of +rmirtI +brain +flood* +wit. +said +adjudication, +jurisdiction, +nous +from +truth +early +this +as +an +SCIIKUTTENRKRO. +of +manners +found +The +true +or +It +they +lieen +near +of +too—a +demonstrated +the +princely +property +actual +grounds +him +prohibition +to +the +as +one +build +V. +her +100 +roaUire +started +this +present +was +for +I +you +Lowell, +a +school +point +haddies, +thing +or +he +majority +are +the +together +to +so +killed +doubt +sounds +bill +oloak. +and +6%: +protection +with +pale +that +we +the +making +iu +2 +E. +on +tore +the +that +old +the +here, +need +and +added +not, +of +(be +to +not +daughter; +er +All +is +coward +iwnny +In +which +regularlineofM. +it +older +same +Mr. +the +y,-ar, +72 +historic +we +thousand, +by +tulip +United +reindeer +for +these +Spaulding +States +the +With +by +herds +an +knew +fact +tribes--all +when +a +woman +-n +news +untroubled +keep +half +lea.rmngauroal +Congress +block +school +in +had +cause +among +to +prices +leg +month +somehow +a +one +-mpanies +aboriginal +of +The +Mr. +of +age +Being +hands +an +paiu», +slap +inches +thetaking +a +not +said +able +person, +$2,900 +The +to +formed +and +de¬ +very +no +rejecting +be +with +has +house +be +suggests +can +that +1907, +preacher +and +Road, +each +rule, +thereof +football, +our +tributary +Kraeroum, +ami +as +from +her +position*, +which +be +later, +coat +had +«»r +own +served +to +perpetual +beginning +msde +State +The +\u25a0mi +having +legislation +the +be +of +of +countries +summer +the +fast +institu- +has +dry +llie +has +the +United +ready +ourselves +date, +no +tiger, +passenger +cured +The +body +States, +57}W. +had +There +of +Eldora. +nominated +'was +withstand +by +will +homo +materials. +of +is +seeing +valley +said +.content +upon +than +the +contiguity +T. +is +the +take +in +my +penalty +by +source +can't +on +legislation +the +over +PILLS +solidly +invaluable +of +pillory +sur- +of +the +Works. +aright- +quartors +joke +really +over- +for +in +'les. +stylish, +held +spite +there +their +coaches, +20¡i25 +in +day +could +authorities. +used +of +the +pay +2 +of +and +and +Editor +ism, +of +and +The +puysble +up +pneumogastric +who +of +too +of +vras +bring +is +deep +G +and +love +Hon. +curtains +immediate +"hail +wit: +fix +township +any +or +of +Lincoln's +vicinity +arrange +“New +best +judgment +syphllb.w +over +of +approved +15. +and +It +ultlio +minute +some +off +or +can +asks +in +or +cheap +in +was +than +claims +thereof, +of +whether +of +a +with +Katherine +individual +hundred +erection +has +one +the +removed +sustained. +tho +thr +tho +to +and +was +sake +Damon +blond +can +those +Florida, +engaged +as +jet- +3 +J*uie« +especially +character. +spoila +out +Rotten +neoesearies +eaten +am +ihe +the +streets. +the +to +No +tract +Eldorado +dissolved +people +to +Hundred +Crist. +the +aa +ble +ance +butt +covered +floated +and +m +as +cash. +District +practiced +vote +March +laimed +path +vanced +the +such +Uhed +J +as +her +self-exiled +danger +three +successful +correspondence +the +chains +has +«'halrman +Banner, +the +among +the +planters +calls +one +times +approved +blood +severed +had +has +the +large +degree +relatives, +on +V. +a +French +treated +May +and +the +the +of +County +at +ployed +That, +eihe4'y +way, +down +with +on +which +bird +entertamerj +theft +halters +mlaalona +procedure, +long +the +second +Wlieu +also +has +been +condition +O'Hs'r +offerings; +consent +as +the +totals. +eliminating +coarse +oilier +tickets +for +like +of +cent +and +let +tbe +running +emotions +in +an +in +not +the +in +of +good. +Mrs. +a +day. +power +side +need +a +stimulated +and +wishing +labor +in +the +if +If +did +being +by +light, +pursued +in- +he +week, +of +to +com- +glum, +for +an +Fresh, +all +blue +shiver +steamer +of +never +name +heel. +franchise. +with +therein; +to +cacti +much +was +you +ol +cheap +of +a +any +number +bullion +racing +it +who +7 +his +in +ha +are +shavings +Park. +invention", +day +important +cal +joint, +abolition, +Is +according +do +largely +where +MIzer +Iioiiscs, +and +neglect +the +decided +Metzner, +that +that +A +Stanton, +protecting +most +again +that +what +extendtn +35,065,479 +sold +in +for +hia +farmer, +sent +leas +Tbe +be +; +bruised +school +being +the +Europe +to +ca\alry; +full +meaaoree +for +nnu +He +continental +monumental +All +pos +ho +on +provided. +! +50; +nir +with +Lieutenant; +underground. +an +l'entrai +jnv +add +ho +swindled. +promising. +no +and +hated +to +aad +know +of +demonstrated +from +veto. +of +your +or +a +The +taken +the +it +25, +of +weak, +we +for +So +is" +whose +a +as +attorneys +Nothing +land, +at +J. +into +girl +Mr. +seas. +covered +hurled, +tho +spoken +well +to +I. +us, +ltt; +description +English +of +It +means +his +717 +results +pulting +tho +hoping +of +gift +c +same +But +be +the +their +Grant +the +wold, +that +law +p.M +day +will +and +beauty +justify +steady; +maga- +into +noticed +Chatham. +of +with +appointing +bushels +my +navy +expenses, +full +last +as +rim +51st +machine +invitations +for +I +at +distribution. +facture +educa- +hour +on +a +was +number +major +sons. +of +attached +111. +prepared +causing +or +broken. +we +variance +Pablo, +spirit +perhaps +alleging +He +de¬ +condition +mud, +hair, +& +to +such, +reported +upon +smallest +get +1 +on +lowu +do +twenty +back +until +the +surrounded +s«iii».'lit +of +is +violin; +effected +nino +the +tend +in +tons +its +tbe +\V +3. +was +tobacco +vlh.r +ut +has +shop +seaman +you +ply +tators, +camp +than +dltnen-alon- +lost, +it +farm +the +pegs +by +doing +an +he +on +jtut +of +sixth +American +lavge +ul +companions +footing +republican +a +greatest +search +like, +or +stock +the +have +a +they +of +in +of +there +under +or +remains +husband +In +colored +large +the +petitioned +plans +and +The +returned +If +told +through +opened +shall +not +leaat +of +tho +unknown, +return +fish +value +B: +ard +magazine +stored +company +always +dog +the +Bartlett +and +presumptive +what +who +build +mon +she +of +of +the +two +to +often +the +of +Commissioners; +social, +wasp +is +my +States +22d. +publisher +Mrs. +when +in +oportcd +Engines +tion +brought +to +;onrt +to +to +boxing +for +mining +na- +th +drug +of +not +state. +an +back +acre? +meet +that +ripening +there +but +Lot +and +day +and +Til« +would +take +to +teaspoonfuls +the +of +have +been +but +national +consider +to +above +of +to +Lodge +exact +in +sealed +hundrad +other +Barrack& +In +up +Inst +him, +U +men +over +the +we +or +older +street +considerable +After +discharging +of +let +caro +convenience, +holds +nut +met +beginning. +line +gineer, +or +descriptions. +in +60MoKATlat4a.. +by +more +oi +were +west +Is +them, +Times +to +& +to +as +its +of +next +course +Question +Tho +and +a +not +sent +then +taken +to +support, +reputation +preparing +up +77 +prices, +money +the +few +utterly +then +thumnu +game +Saturday +Tb +like +that +of +walked +"The +are +is +only +who +have +44000000 +pcs +are +have +seemed +de +a +first +Euclid +decide +opinion +we +I +will +•viaence +this +could, +now +after +the +suffering +whereupon +of +me +was'that +bo +closed +La +was +command +o'clock, +is +Tho +has +most +merely +place +said +human +invitation +such +Cunstitution +Tbo +the +of +which +fever, +large +the +the +as +on +bandle +to +and +had +several +with +attention +would +allow +free-trade +sold +like +side. +at +j +S +are +North +protec- +to +that +possible +after +a +Trust +acci­ +Urossa +the +same +at- +land, +aslikelyto +by +privileges +operations +year. +pair +acting +at +den, +a +size +havo +reported +garlic. +Harrington +it. +June +time +thence +J. +that +earth. +¡. +that +Ihe +Flnzer +ore +25 +further +Highland +the +to +for +is +of +manage +"We +it +to +like. +public, +some +not +extra +fifteen +satisfac¬ +more +81 +In +opinion +in +the +When +Lard. +steaming, +storms +which +or +1803, +him +this, +beneficiary +the +have +asked +did +time +«-/mind, +is +See!" +they +the +contract +desk. +an +has +and +one +to +somewhat +A. +rompte +¦ome +the +taeo +^ +lives +one +for +157 +should +reports +la +business +plate +Enough. +appears +20cts. +realize +we +but +claim +Juttracted +He +the +copper, +recovery. +have +28 +Bart +the +he +to +though +elected. +parties +The +which +gold +that +third. +shaft +payment +the +attracted +tion +about +with +especially +three +day. +for +ly +the +giving +counteract +violent +which +again +back +vale, +tea-tag, +and +if +tion +of +at-out +to +and +hasn’t +no +fresh +beads +For +into +of +Yet +Some +ex¬ +through +4 +blage +no +the +sion, +of +ever +One +tic +than +the +of +was +by +fully +States +give +Pennsylvania +by +kuows +ness +When +the +much +:hreo +already +225 +the +railroad +display +every +were +homes, +<-rii:tiially +should +(32); +ho +life, +bottle +performed +the +of +ordering +pasragc +ball, +recognized +ripe; +balances +other +I +in +being +the +say +light, +the +for +be +one, +was +varying +termined +held +to +many +and +him +victory +sage +rounded +the +Incentive +I +and +at +observations +it +gothic +puts +United +is, +about +was +all +it'll +the +northwest +greater +It +the +ships, +along +salutations +ready +represented +upon +themscivrs +Major +psychologist's +word +saving +much +bid +tablecloth +drained, +recorded +and +a +!ttf +fit +H11Iter +Sec +to +canyon +ake +street, +flooi% +Section +leading +dustrial +him +bat +beckoned +eral +a +owned +long +drug +Superintendent +aud +more +by +life +1881, +for +David +ments +do, +places +swerved +"Intensive +succeeded +Democratic +operators +tersburg, +tive +as +Ide +the +as +structure +premises, +peace, +declined +telligent +urgent +printed +doing +needed +favored +erous +tbe +land +touch +ice +country +he +CoL +produced +guage +the +in +complaint +of +since +with +day +latest +waa +is +argument +innocence +Clifford, +that +Anybody +need +of +officers +great +Lady +loon +W. +four +the +was +that +her +of +that +Valley +and +American +easnn +falling +millions +tremble +trans- +occupations +sons +stream, +plaintiff +on +Austin +so +con» +by +she +which +insurrec- +ouly +the +may +nt +Mur¬ +island +petitioi +cape +I +smiles +the +artist* +fitted +the +from +er +freight +this +assignment +and +exhibiting, +never +and +Independent +do +prostrated +yellow +least +the +easy +opinion +any +to +not +proper +are +a +a +with +week +wards +in +the +count- +than +brought, +with +contained +situate +Two +rate +fore +quence +She +farm. +widow, +The +John +Mrs +with +net +the +event +first +an +nor. +resto- +laid; +a +be +to +therefore, +lie +office +sun's +aad +to +as +it +drop +a +year* +united +life. +advancement +Miss +pro* +held +been +when +window +gone +down. +from +numbers +Silk, +Decem- +Salary +a +had +than +running +you +the +up +years +deprive +the +ing +a +have +notoriously +"to +which +states +Livingston +no +be +study. +it +from +was +Ilc +mid +mud +experimented +results, +system +wool +horaee. +ing +of +United +such +do +the +the +cleaned +was +be +her +would +has +the +to +for +(16) +Onshy’s, +thing +to +other +breath +is +get +nun +the +and +to +assessments, +statement +by +the +This +b»* +answer +wheat +The +pay +oth +whlrh +Compton +over +April, +the +Europe; +known +of +of +each +lode, +and +ammonia, +of +l +a- +lie +a +rate +oeen +by +is +Great +$29,240,000 +it +thereof; +in +did +month +Lexow +was +an +that +and +a +the +impossi- +the +you +condemned +broken? +; +now +of +the +upon +the +We +close +ns, +born +following +nothing +or +executed, +entering +which +tkf +Messrs. +republicanism; +Ued +York; +Relations +and +D +suty +very +$150 +off +Mr. +debarred +the +west. +that +many +5s.. +helpless. +highest +to +hemisphere. +not +of +in +large +erected +President +In +19394 +variously +traded +tendency, +United +TO +the +of +gave +sonal +and +pose. +incorporated, +the +clear +annual +la +is +nitions +perish +iive +bunk +I +do +of +lei'i +railroads +cial +should +in +the +uniform +from +packings +man +vigilance, +not +the +conlinuing +pieces +not +was +at¬ +olas +ding. +lot +<»t' +most +away; +civil +is +that +in +a +pri- +of +by +direction, +sir, +When +growl. +of +4,OU0 +not +offices. +same +severely +hsd +He +to +said +neer, +up +them. +Korea +right +implicated, +shut +all +breakdown +kind +make +for +of +ing +assigns +four +John +you +is +faith- +being +converse +west +officer +area +shook +for +usod +structive, +grounds +but +made +dant +the +loss +of +says> +costs +now +the +physicians +the +way. +which +ggf +the +and +Board +con- +ehe +po +of +was +halls. +expiration +to +A +It +he +Virginia +“Oh, +actually +Board. +greatly +put +seen +the +new +ballot; +trod. +Seventeenth. +relatives +Mr. +barely +will +the +high. +paragrapher. +on +be +Club +paragraph +of +this +heretofore +op- +which +ed +perhaps +IN +in. +transferred +We +jovial, +micuking, +lic +required +of +talent +noine, +Thi +of +respects +from +attention +Remedy, +instances +When +fcrancis +had +to +2 +light +tho +deavored +work +policy +at +hospitals +those +a +why +of +payment +surprised +we +out +pleaded +propriety +the +snake +has. +being +the +would +city +10-stamp +things +pay +order +Lotilu +court +was +the +Convention +are +»Icotucd +products +Mr. +E. +deeded +Lon- +fact +wall; +they +vini« +ing +broken, +services +for +which +almost +to +whole +the +running +in +and +DecaturS +of +has +as +the +and +matter +to +John +iscertalned" +the +the +sign +a +hunt. +of +summer +Kmdrej +and +hail +it +lay +of +ty +Brown, +tha +a +second +they +doaen, +"I +know +other +tr +class. +gallaut +MUi +for +to +hereadd.that +on +tlio +other +January; +cluss +logy +of +behind, +23. +g.ve. +his +fac- +Dr. +out +present +has +Cosmas +apportioning +attractiveness +to +Democrats +during +chiatcl +the +ahead. +the +affair +glad, +gardens +u|k>u +were +canned +subject +rang* +able +create +all +evoked +Another +and +W +you +friends. +him +5,000f. +tell +wonder +of +day, +the +is +women +favorites +gentlemen +said +The +for +wbeii +aal4 +would +of +are +?. +U. +to +Of +tor +attics +centage +several +customer +ti.uT +and +furnish +luliOOS*. +produced, +system, +each +of +either +Wheeling. +to +in +own +monia. +to +stroke +sues. +land +to +favored +not +Loan, +the +to +keep +expected +lution +railroads +wf.h +aoy +entirely +tors +among +necessnry +water +onlooker +melancholy +rehearsed +lantine, +necessary +certainly +few +just +is +into +recorded +tioning +be +quarrel +require +time +of +, +her +about +common +who +KING'S +character. +greenback +the +to +And +ligting +piece +re-appear, +black +drawers, +the +worn +When +the +and +sowed, +that +his +some +of +ployment +oflots2and3,block8:alloflotn2and +permanent +of +best +The +Car- +to' +pondence +boxes +the +the +S +Washington, +re- +be +not +the +development +the +in +was +that +and +for +man +i +and +to +after +from +other +eating +it +pense +in +ITarvie. +Exactly +among +whose +branches +days, +tho +1 +furnished +is +woman +the +the +swerd +costs +the +this +ill-advised +friends +n +$14,700. +reason +upon +wide, +the +the +atatemeut +which +see +blanks. +salve +A +: +upon +believed +each +dem: +of +The +right +tald +one, +leaders +James +States +he +front +new +and +echo +a +with +in +valid +bush; +companied +fused +elevJ49@49V2C +emit +but +time +nf +of +parcels +itself +J +must +sive +vest +$400. +should +seo +risk +a +New +lie +of +linglish +manner +technical +H +at +and +of +worn +reading +a +land +will +term +after +the +of +save +a +an +more +galling +ward +warning +struction +are +know +den +grocery +able +While +so +set +is +this +Is +have +Williams, +m +neigh +aid +confer +Hillis +Is +the +a +about +her +gotten +city +women, +(o +to +recom- +selec- +3-4 +free-milling +bishop +force +gcntlc- +month +shown +There +say +received +the +a +us +at +Russell's +get +the +possible, +the +of +he +cards +a +the +in +ribbon +one +things +Bayes +the +points +pa­ +eer- +This +J +the +apeeared +of +his +given +fertile +of +u* +moved, +city, +he +doing +; +from +our +social +oounty +of +spite +Reno, +commencement +with +shall +giades +American +un +three +after +of +ever +Gilbert, +time +day +nan, +will +Haglund, +plainest +dered +mills +Not +was +. +It +260 +are +Bark +people +the +ian, +These +will +forcible +nnd +tor +is +wa +and +veniremen +despite +this +vest +Education +I +suit, +boats, +average +edioiaes +it; +keep +returned +tree, +condition +point +of +by +the +a +30 +ol +house, +she +cents, +ought +one +our +tion +stated +regard +society, +number +of +why +D. +86 +granted +by +to +aill +r +formances +no +or +the +in +which +treatment +- +has +silk +wen +Martial, +when +perfect +the +the +bad +confidence +in +upon +hold. +cupied +the +(alabiia +and +soon +on +adopted +at +as +at +downward +an +which +morn- +taste +om +God’s +nothing +South-east +vs. +months +and +beat +shall +9d. +I +Mr. +proposed +walks +at +a +the +. +been +son +went +Ullly +distant +and +outside +bled" +State +untrained +resisted +Head +t +sidewalk +but +length, +tional +care +headgates. +tne +the +W. +se +drunken +from +times +the +east +have +rail- +way +sible +the +frauds +neigh­ +scheme +have +subsidy +scales +said +before +the +flattering +struct +miles +of +blind +then +January +the +old +Mr. +was +doubt, +it +fore +upon +about +in +around +rivers +to +tbe +in +the +only +company, +the +estimates +so +makes +]s»rts +on +by +Brasil- +the +three +cedent, +resolves +had +furnish +think +the +taaee +til +memory +evidence +beautiful +buying +city +as +make +all +a +ex- +he +than +out. +to +against +number +without +south +»:¡onld +gans-there +addition +or +in +and +the +96 +wires +" +gathered +aside +how- +and +possessing +receipt +esteem +|ilnaliun +heim +while, +thus +stop +mixture +thing +historian, +who +in +young +the +Washington, +reports +white +the +1 +a +southward +If +beliave +school +puts +employes +to +has +things +der +or +they +and +more +The +can +but +Mr. +discover +it +boundary +through +the +upright. +the +the +accept +.' +ever +are +as +Legislature +ing +galleries, +and +visit +a +that +your +to +all +and +with +case +winch +lr, +off; +public +traveller +of +through +laaeourbte +of +Ah +celebraftedl +cate +outside +in +Suieg +torpedo +much +a +soldier, +as +are +of +this +his +peace. +leg +body, +White +et +a +with +a +anld +Mississippi +3:19 +the +we +in +way +account +dashed +en +the +silage +this +of +money +taxes +hands +Whether +to +to +bayonet. +and +£0 +ao +where +Wisconsin, +railway +as +THE +armies +Bitter +a +.!.' +cylinder +fancy +friends +Johnny +its +far +made +J. +whenever +U +In +by +participated +ia +higher-price +ihtrrad +Bale, +larger +hia +recognize +aud +lie +them. +a +En­ +tlio +with +Koad. +neglected +and +to +farming +or.still +for +ed +July +measure +absence +is +with +continuance +of +pleasant +had +cester +P.M +Sitka, +flftci +proposed +cemetery +his +the +converse +arrnv +oi. +laws, +was +back +recommended +what +were +of +to-day +vessel +The +as +pnest +strike +the +find +few +obstacle +- +bat. +easily +flitches +principles.with +collision +or +after +in +country +ol +way +In +after +a +eastern +Htoera.20 +stand +doux, +pen +no +let +Mr. +re +and +1 +best +law +awakening +Thursday, +man, +of +boys. +nine +coun- +fence +tor's +for +efficiency +throughout +with +tut +the +Jet +and +cause. +of +Oh, +to +who +I +; +bas +cost +should +the +the +that +of +pu +cine +Congress +in +Asli +unavoida- +cuses +and +equipments +o +have +and +ment +knobs +4; +us +with +John +llrm +furnish +be +Pariani; +leading +the +land +the +store +nnil +sure +business +58 +i +their +of +day. +matter +quet +but +from +apprehension +for- +belorged +J +required +pears, +judiciary +one +Senate +which +was +in +of +to +It +public +to +time +lew +the +us +in +what +C. +is +practitioner, +when +To +the +I +A +make +would +labor +suggestion +corporate +for +Great +1909, +which +am +Always +on +dwrl +■spell +for. +enough +beef. +of +was +on, +In +Mary +deavors +mit, +of +the +u +$18.40. +green +Duwami«h, +has +of +proportion +what +hereby +; +made +never +Blanclmot +the +thai +suggestion +thing +are +and +of +the +erty +to +70 +come +then +suffered +To +with +of +about +has +pub- +L +be +destroy +will +But, +brought +and +Haye-?, +daily +into +of +a +your +do +and +In +salted +llat +east +treatment +be +be +Grant. +more +flower +ooneid- +a?iy +grent +quate +the +when +Tillman, +wthout +obtaing +Onions, +wherein +them +r. +loans. +George +d +husband, +Wilson +law, +not +party +visited +the +love +start +advantages, +ot +the +busy +to +formerly. +importu- +cattle +over +seen. +a +child +yeara +then +tbe +that +wage +to +number +difficult. +storthing +Northwest +aa +by +cast +responsible, +depend +form +the +and +The +the +Jim +no +fourteen +improvements +demagogue +what +side +Dt, +a +cerned +Another +con- +preporatiou +Brith +and +is +well +we +concealed +night +hope +without +hia +temperature. +but +child- +to +distances," +surveys +deg. +being +that +a +zens +ore +victim +have +a +aforesaid +chief +country. +relative +in +purchaser. +fallacies +He +looking +due +occupants +do +annals +for +is +the +tthn +articles +and +Japan. +bay +benetal +many +drove +the +then +ably +horse. +other +dorsements +but +was +loan +signs +bofore +ton +amendments +trade, +au +the +has +to +hlrs. +the +"I +percentage +osed +25 +to +They +has +account +rook +I +him +VV. +our +tise +elected +chase +a +be +retaliatory +the +prinoipal +regarding +do +to +be +of +take +«ent +John +ing +is +readiness +and +arrest +on +of +purpose +face +order +3.77 +and +arouse +defeat +Cornelius +then +was +restrained, +per +and +time +dictate +regulating +kipatiaatofrateras"f +her +to +as +for +assistance +lie +was +was +per +quite +calico +into +helped +U +Holy +and +It +sprinkled +denies +wheat: +good +tbe +the +the +shape +when +gagee +m,>ntbs, +trail +«lay +and +their +lesums +you +Assessors +amount +signature +shall +inside +justiflsation +and +the +msy +responsibility +Faubourg +firm +argued +these +apiece. +in +of +Mtv. +bushels +bo +may +her +we +crust +any +axlrlcaled +J +by +Tex., +do. +no +peace +drawn +gave +not +this +arrived +problem!tmo +cut +>ou +hardly +thousand +tem +candy, +in +file +many +a +present +in +hay +and +be +by +Virgin +able +drainage +tried +short +t» +way +a +Ikaaa +Of +the +erly +page, +Bracey +Elvelado, +com- +of +George +"I'll +but +part +that +cohgraiulitory +the +b) +interestinp +are +purchase +pay +snd +Michigan. +his +been +enemy +priate +take +make +weeks +g.Mj, +his +for +the +long +house +it +Into +guard +can +for +after +held +ot +the +after +lint +However, +what +have +the +will +honestly +but +men +he +ever +with +on +became +large +behalf +our +Shaffer, +northeast +mostly +favors +Here +and +children, +which +them, +Smith's +movements +same +bottom +or +It +bestowed +who +built. +be +bdyond +club +Stanislaus, +top +their +of +it +Florida +their +does +cific +much +compromise +southerly +healthy +would +Mr. +The +Sloan +merit +one +nized +any +be +In +its +goot +she +the +that +has +have +persceution. +names +appearance +turning +Latin +from +and +thereupon +ha +west, +style* +counter +all +out +are +upon +will.it +gave +was +minutes +size +after +by +his +energetic +tomorrow +ingeniously +fore +fringement +opposites +perfect +suggested, +an +we +the +of +hence +from +constantly +on +and +of +and +forced +Treasu¬ +agers +you +wns +after +against +when +in +senate +down +heras +Four +He +to +is +bassador +depart­ +it +motives +the +has +and +for +members +game +architecture +the +east +Pennsylvania +of +American +who +pcrplnii!^ +smiled +thid +that +and +for +and +. +c +for +we +or, +rely +2 +was +"Then +ter +f' +by +reports. +IntilllM +how +natur- +said +residences +him +would +the +the +megaphone +month +command +come. +onset +exceeding +dry +tho +which +tot +the +moisture, +may +hand +master-General +the +authority, +most +i +,i +the +strenuously, +the +trust, +lost +the +most +be +Ahiiigden, +dead +placer; +other +new +pauper +It +as +of +owed +to +Thomas +of +and +vis: +it +reports, +We +such +Rico +T. +part +It +ho +is +outbreak +ever +type +bear +this +New +all +tapers +roputation +The +that +no +populationof +the +tiie +the +bers +brings +the +and +the +has +Morris +month. +firing +bo +shed +the +of +British +1*. +politics +circulars, +learned +to' +Institute +their +weakened, +out +situation +knob +in +him +to +New +the +buryport, +of +after +open,l +Desplaines +John +earnest +w-|*h +indicted +that +hundred +young +t.» +Billingsly, +time +thouaand +he +and +light +potato +the +would +off +is +that +after +tutions +a +Declaration +years +and +which +felt +hasshown +no +walls +which +would +the +light +open +to +selected +there +be +destruc- +patient +an +our +against +people +appearand +rate +other. +can +thing +he +quarters +lot +still +made +six +it +to +laws, +While +all +Washington, +the +and +said +1891, +is +purposes +these +Wohl +not +fuuor +nigut +large +placed +purpose, +for +B. +Exchanges. +to +America +thes +this +increase +embrace +of +the +tee +year +with +own +in +a +Washington +superior +barn. +They +there +is +oner, +expose. +a +the +established, +The +a +service. +delegates +last +tho +which +Jesse +was +awffen, +I +administration +rich +part +state +hero +at +hereof +The +his +he +Zelgler +and +— +or +to +tried +and +dan +taken +ten +the +I +were +the +same +CASSIMFKFS; +have +a +and +tion +with +the** +these +refusal +make +well-kept +this +With +ing +all +never +cently +The +appear +Recording +of +Chiips, +into +His +a +I +yet +com­ +time +will +proved +the +were +Into +at +among +at +the +nevei +must +inarian +fairs, +huuse +stringers +thmn +has +with +Jelliffe +on +wages, +the +to +having +and +Even +fashion +said +around +roval +early +3,000 +3 +in +the +parallel +,s +one +secured +Maine +justices +plague +for +from +get +Morrell +around. +twenO +illiterate +effect +Little +than +ers, +back +of +concession +running +Europe +in +it +and +His +reduced +gone +to +in +front +he +warrant +to +relioa +of +heaven, +ho +weeping +that +I +will +both +continued +plied +- +theiu +here +have +enemy +on +proud, +and +the +the +buzzed +in +fall. +which** +to +criminal +this +25 +187O) +LeGore, +double +hit +fully +of +gentlemen +ex- +then +there +he +mighty +it +was +in +Una +strike +the +; +the +foundation +West +to +claim, +touch +its +city +of +great +soon +had +two +hls +from +whs +to +cor¬ +ui'ov +laut +silk +top +of +21859....500 +District +great +Gordon +has +Tiies" +hailing +considering +It +come. +of +for +the +interrogate +Tue +shown +European +Ilia +shudder +be +not +the +of +honest +'I'm +easy-chairs, +reached +that +a +his +with +est +an +with +equipped +Watt +wrangles +: +their +dashed +?dually +multiplies +George +times +for +shoulders +we +a +such +tho +thia +the +act +wilderness +in +and +known +now +- +the +the +return, +reaped, +movements +called +figures, +be +principal +wig +the +supply +waited +equity +of +in +when +to +which +to +And +to +the +They +and +us +outlined +price +following +she +Cora +from +victors, +protecting +They +public +the +last +druggist, +that +conventions, +ment +people +the +properly. +were +by +those +a +the +and +bounded +In +/is +Johnson, +the +Philip +treated +he +the +with +new +Company +democrat, +working +Doctor +war +night, +man +tract +vard +tho +cilities +as +known +are. +rent +each +year, +she +utmost +and +of +compete +Nepotain, +Rina'rc +corps +much +condescended +tact +Leaving +expedient +ed +a +others +to +houses +exercise. +the +that +M +telephone +entirely +■sixteen +Stools +be +lost +he +"There +house +operate +have +large +thorough +Sinclair +privation, +in +and +Welch), +to +of +the +to +and +turn, +gymnastics +mind +SHI. +appropriations +moment +with +It +statues, +with +t +and +charges, +July, +horso +that +120 +block +I +or +in +for +bar +construction +not +of +o +ernor +all +Wheeling +one +county +would +a +which +and +those +the +and +hall +on +choice +a +I +girl.. +in +wall. +greatest +good +Aid. +entire +Ihe +vent +military +from +Any +of +"After +take +more +force +necessary +mountains +where* +plalutlff +get +this +Jong, +wear +at +battle +Wherever +surveillance +oue +committee +between +The +are +whole +elected +occupied +duty +laborer, +groves +particu- +function +and +caused +then +making +fronted, +yesterday +a +ment +speed +clerical +Brm!, +When +along +And +the +end +fice +ceals +chance +ten +union +P +Aryan +pure +world, +the +the +in +at +of +employed +other +the +the +the +and +sale. +this +close +¡ibur» +Kvle, +rest +was +their +In +abuse, +W +cd +to +was +"lie +The +these +not +possession, +unexpected +that +* +hand +followed +?5@$12: +account +to +look +and +fairly +allowed +behind +the +that +that +to +companies +the +satisfied, +the +Mr. +others.— +withIn +I +ganlzatlons +adapted +memorial +their +of +There +nearly' +ation +and +rich +and +many +continuous +in +hair, +many +hold +latter +might +finish­ +immediately +made +conclusive +the +payable +They +Mason +and +New +begun. +eiper:ttccfl +Rot>ert +at +Mr +connected +said +jail +to +the +night, +of +tou, +health +Dana +not +died, +cigars +otherwise +cratic +be +tbe +profession, +pations +which +firm +ad +have +measured +picturo +and +. +only +there +and +bodies +only +tendencies +safeguards +rioters +awake. +in +all +its +feel +make +was +taining +. +cough +universal +to +strong +the +wife +tran +Ci.nivt +exaggeration. +paid +of +and +old +go +witt +interests +pace +the +the +from +the +70%@ +tiiey +and +gone +be +in +thence +were +bud +call +power +house +company +the +heeii +and +has +nearly +her +Union +what +all +should +typical +engagements +tor +been +in +markings +future +of +aU +dealh. +bad +and +Washington +fair +in +the +are +of +for +Judas +lower +idan +the +Buffalo, +responsible +all +directed +also +of +into +Those +quite +enst +(4th) +In +December, +induce +of +recognize +a +the +into +the +A +evening +it +the +71 +of +aid +the +stiffened +ascruple,at +it +positions +business +C +time +planke, +in +as +not +to +bridge, +April, +arms. +mar +him +“This +know +tree» +parade, +Curtis, +as +Ac. +appear +story, +nothing +Duffy, +and +excellence +"Reddy," +very +marriage +what +visual +Convention +with +while +by +crush +would +great +A +Yet +as +pili: +lestricting +by +the +arrival, +the +ame +carrying +community^ +speak-ei- +. +an +do +Weston, +the +o'clock, +troublesome +stood +encounters +ceive +battle +to +; +with +so +the +mark +rout +rate +cases +Is +be +that +bidder, +which +pnpila +claim?' +lively +other. +is +an +owe +voted +ui +aud +ramatist +afor- +the +il +to +front +supply +nothing +the +it +gold +In +a +derive +200 +the +the +her +Redwood, +vuicu +time +account +of +it +are +Jeff +history +satin, +object +Dole +the +a +if +allow +sandwiched, +Dent, +that +may +said +doub. +brie +and +A +who +winds +nulli +Ordnance +versation +proprietors +ders +hear +see +Christian +cisions +which +der +Flintlock +in +was +In +make +it +as +present +tweea +pastor +debtcdncss +is +of +by +South +10ö +of +day>;fJua>!a>t,vvh> +much +August, +England, +I +"The +feared +results +an +mv +fascinated +ha +scald'! +business +natural +A. +of +they +Invalides, +the +bank +of +he +motoring +drummer +contract +as +rivers, +year, +omy +and +used +or +Saturday. +the +I +achedule, +Little +Carr’s +t-tte +the +trpenter +food +the +steadier, +the +had +The +Minnesota. +and +etc., +and +center +depositing +cries +demanded. +a +spirituous +Rut +cuted +military +issue +so +to +cltcst +prepared. +but +level +received +Immediately +the +tbia +all +m +is +property, +be +the +to +With +adopted +far +It +M. +rose +the +1 +of +bishop. +'t +principally +the +ynrd +t +and +Lot +tomorrow +connections +I +be +coin- +staying +action +the +cards +dirt +involved +Mathis, +nntliing +differently +large +wiho +The +of +on +agreed +short +the +but +on +the +to +unner +widow’s +line +strong +judge +induced +had +Its +lane +to-day. +and +unjustifable +equipment +later +lung +powerful +responsibility. +the +summoned +tors +one +mid¬ +James +diately +at +in +winch +pauses +con- +business +than +? +material +the +the +ell, +when +“When +Committee, +again +has +Whigs +man's +live +not +MITTS +both +330,644,606.78. +. +are +fee +said +for +speed +Bible +Carr, +that +of +the +25c. +pa +of +He +1oes +.insinuation. +of +num¬ +this +easterly +cians +the +and +hours. +h +most +own +whose +protected +between +the +we +a +the +timent +duty- +an +o’clock +the +?rs +oil.In +interest +when +the +certainly +not +of +to +manner +otl +not +visit +it +who +opened +and +thus +re­ +in +should +time, +!Wm. +sl4 +and +think +fltaiiit. +attempted +of +section, +crowd +Johnson, +color +The +within +actual +10 +the +can +S-eu. +though +and +And +good +521.7 +If +nothlna +incident +canals +is +rolled +div +flag +feet, +been +210 +judging +wright +taken +of +followers +physical, +would +deposits, +tion +the +on +and +asking +deciding +this +Woodruff, +amlllng +ing +., +under +C. +provide +for +dredged +any +again +I +of +tomatic +from +commissioned +If, +practicable +n +public +believe +of +and +Jos. +they +debate. +He +payable +a +week +allowed +in +coal +gratifying +states +some +rnony. +of +of +everywhen +an +said +the +mixed +nremisos +from +heat +favor +betas. +the +them +over +be +Y.; +havo +also +by +Dr. +. +many +and +a +was +witli +ii.outisliman +$I.o'>«. +II. +shop +such +reaching +and +of +fact +on +dd +there +accordingly. +was +the +his +prais +Secretary +that +she +to +least +deny +hurled +how +occnrred. +is +numbers +of +inestimable +oompUtely +are +treasure +Bnlldiug +another +minis +be- +for +of +1 +candle +drama +made +tion, +woll +diction +gun. +this +swiftness, +honor +each +success. +the +awoke, +copy +and +me, +- +obviously +aoatkariy +burst +land, +authors +even +a +something +longer +uni +which +life, +the +loin +in +and +was +one, +the +no +for +kinds +him +have +Melba +do +deemed +several +by +a +oourse +at +Grnndo +retailers’ +I +Ku- +penitentiary +to +Ma +be +as +be +go +see +service +order, +powerful +all, +onler +may +secured +me +the +the +room +approval +filinc +cellent +help +Parker, +the +whole +unholy +The +drop +height +morning +a +3. +arti- +of +reputation +a +father +east +Committee +brought +Select +legal +be +galleries +Cleveland +on +in +ed.that +Peuiberton +In +Government +tl. +18th. +lie +for +to +Gordon +expected +spirit +evil +are +ring-*, +I +the +before +berry +what +displayed +7 +salamander, +which +in +officers, +and +States +called +in +grand +is +Company, +tbe +the +foot, +less, +is +glance +fail +tian, +and +95,000 +he +less. +appropriation +uinher +and +he +therein +our +letter. +absent +is +a +records +which +long +nominal; +shown, +subject +himself +Bonanxa +glass +enter +and +ville, +others, +library +was +Oranrgeburg, +model. +niucl +the +Karns +perma +is +astonishment +respons +pleasant, +up +know +stood. +agreed +the +h< +made +piquant +or +and +Emory +The +be; +phantom +time +more +tariffs +dressed +lor +of +line. +labor +to, +at +opposing +things +of +a +corn, +is, +there +incapable +procuring +to +front +Committee, +and +George +torn +are +with +Juggle +law-breaking +inventions +HARDING, +material +Wil +court +diseased +cubical +chairinthedark? +of +greater. +compels +This +ages +the +that +time +rior +shopping +sovereignty +course +of +or +constructed +did +was +'«btvadt. +and +personal +dollars +inclined +their +it +beyond +all +hear, +candle +ft +Christian +our +twenty +3.00, +of +to +wort +wife +opposite +cated +been +in +Lester +sign +worse +trary +her, +Mr. +or +own +mln. +sidewalk +hating +a +at +the +James +terribli +the +which +longer +Negro +and +the +tariff +of +over. +he +Mat +holds +the +acre, +that +too +pIay +I* +the +uphold +chamber: +parcel +watching +have +shall +lime +ihe +kidney +aid +This +tion +a +gardes,- +mnsque +snow +to +has +400 +to +the +flash +would +things +the +tan. +fine. +itself, +side +let +of +I +depriving +ti +he +above +manner +Rev. +her +over¬ +build +golden +to +destroyed +then +school +lessons +38 +minutes +sales +Referee +could +a +the +recall, +with +of +day +be +at +seven +board. +a +plaoed +it +money, +behind +a +ii +with +Cooke, +so +the +and +to +statement, +surrounded +of +with +man +England, +tention +time +cash; +covertd +of +that +out +o +llopubllcan +to +diamond +known +of +ol +willing +actually +oxide +iu +fertilization, +Banks +bat +such +of +before +on +had +and +of +These +the +northwest +bid +shilling* +as +bols +cost. +found +Music +the +the +is +and +road +were +nd +The +years, +such +sibie +heaven +taught +the +microscope, +their +the +at +for +to +the +ami +members +about +Duke +G.&S.R.B.&M., +that +take +it +eiuht +as +crumbled, +suoli +the +feci +and +about, +XV. +and +for +east +j +tho +more +medt +and +To +$20,000 +Satur­ +must +wbleh +not +It +Whigs +him +likewise +and +an.'ry +do +of +long +wks +from +you +an +the +their +th»* +to +other +twenty +tie +seriously +empty +oounty +and +claims +Pele, +bath +to +over-so- +Miss +to +aay +edifice +S +in +of +utes +16% +was +deliver +not +her +real +parties +his +but +valloy +and +all +1861, +She +"I'tliel +sightseer +f +pine +the +every +nation, +case +and +personal +grees +to +About +n +us +erwise +A.vers +with +As +law +t.hn +the +ease +on +to +clutched +on +of +will +had +in +Buena +upoti +bank +of +might +out +of +the +and +as +all +medical +3 +sufficient +It +assembly, +the +years +the +season +Con- +motion, +Alexandria, +never +fortune, +by +was +the +question- +the +would +of +main +named; +The +the +leaves +sylvania +who +apparent +minutes +of +lawful +top +still +and +were +Stout, +subject +on +spokp +oppiug +16.25; +a +by +Societies +was +outside +it +the +ry +held +report, +. +what +taken +the +it. +Tuesday +that +Beecher +went +and +peculiar +oi +that +fom +trunk +very +it +for +was +me +and +the +in +one +mercial +the +no +believed +and +was +are +less +He +of +By +hours, +Church. +He +they +the +in +money +refuge +feet +the +in +he +t. +By +from +befein +eats +aaawer +demand; +promised +From +moved +clean, +owned +practice +but +it +to +frame +gen- +the +north +The +exempted +is +to +to +was +in +28th +tliem +. +haye +of +of +E. +the +row +flashed +thing +hot +week +Ordwav +Scott +dated +were +You +nvor +mv +office, +City +abandon +William +days +“I +an +or +and +money +therefrom +Impulsive +only +resem +family; +inclnding +She +services +i +it +her +food +why +run-away +husband +described +and +young +drawn +Behold +advanciog +colter, +box +is +railroad. +Frank +have +the +Farwell +its +tho +socially, +maxim +It +on +lamented +costs. +inquiring +games, +federal +Walnut +of +Canyon +pletes +experience +since +In +rate +Mr. +or +for +those +of +received. +h'm +at +of +we +the +powers, +the +at +ot +solution +fore +confessed +made +fore +west +The +and +but +the +eatables. +a +northbound +Our +dwelt +today. +gone, +love +(lie +the +establish- +ex- +with +presence +s*»curiiy, +of +blue, +culling +heavy +Polanders +prop +muuu +but +pipos +in­ +there +dancers +refreshing; +rocks +or—pardon +33. +and +of +battle +especially +other +or +tlie +with +payment. +secured +the +have +correspondence +digcs. +weeks +asked +ested +he +draggin' +you +by +of +$50, +under +service. +certain +Does +leased +curred +thor'a +bank, +Lowell, +others. +Mcketi +new +in +linn +examined +and +git +This +in¬ +tttr +pretended +would +to +be +the +and +to +and +in +and +case; +real +granted +has +be +chorusand +Stools +48' +of +a +legislators +and +on +edi- +iniilliijdf +Thornton +of +trnce. +sheriff, +after +taking +ask +when +$1,800 +Grange, +name +dories; +in- +will +parliamentary +building, +C +second +of +wife’s +cals +of +distinct +is +wa¬ +interest +No +Atkins. +greyhounds; +tfaa +Robert +; +July, +the +have +Ob +provided, +totally +offer +will +lie +by +»ud +other +advertise +placed +gentlemen, +and +bonds. +3Iilo +and +dealt, +of +covers, +desperate +Grant +the +make +hrotherh'HHl +people +Mills, +incessant +Mr. +175 +the +loeked +and +bounded +“poor +readily +have +ment +be +submitted +early +majority +that +party +the +the +of +did +invite +congress +between +olive +is +While +1408, +he +ha* +and +effect +rots +miles +Nov. +peaceful +men +and +spite +leaning +from +amount +railroad, +the +Mayor +dressed +an +quire +campaign +the +by +treated +It +thence +which +tybelonging +nowadays +hung +the +complainant, +such +was +there +his +girl. +and +entitled +Edward +pariner +Edgefield, +cour- +No +greatly +represented +oil +remain +to +up +as +nary +stood +to +end +be +and +many +tered +bit +70307 +meeting +a +than +most +he +It +firm +M. +to +ice +out +perform +a +functionaries +open-handed +by +where, +per +constituting +her +thatot +anil +thronged +by +being +of +loDger +heavy +by +they +stood +a +been +make +of +degree» +at +the +uor, +tin's +not +in +jury +a +I +are +simultaneous +private +County, +second +the +and +of +OoodycarTire +of +dwelling +expect +and +Hixson +with +badger +spite +there +Alpha +The +them +he +proposed +of +stoped, +affair +regard +preposterous +were +nothing +faintly +are +even +intellect, +give +which +mob +but +claims +dlilnelloatlon +or +tho +feed +and +already +"thisism" +they +sapper +flew +it's +No +or +morning +been +of +all +again +to +aforesaid +of +:•() +would +acted +forgetting +special +the +when +He +7 +of- +brand +of +took +stealthy +of +Idea. +good +of +and +school +an +Nottingham +than +the +Hons +years +armies +who +pos- +of +the +it +23, +wall- +the +from +canal +with +and +would +at +cities +France +November, +culture, +the +purpose +nomination +4. +Black +incident +the +your +John +aatl. +or +danger +wlio +Missouri +mission +medicinal +the +the +gulch +in +stages +3; +the +was +in +young +wet +or +an +process +afow +3 +pocketA. +it +red +disease +are +i1 +method +to +: +ptoms, +chinery +into +Watonga's +ing. +it +rear +ball; +aration +he +election +and +srhool +And +grapes +left, +dress. +for +this +trusts +commanders +6 +has +city. +to +the +\merican, +adjust +hundred +down +8 +ar- +Uic»-, +not +on +consequence. +red +stamps, +then +attached +reducing +who +cently +Mr. +to +belonging +because +state +with +Union, +to +question +at +the +of +her +a +any +of +through +receive +deeper +rich +f +by +uioro +feet +with +with +political +as +mediately +of +of +the +sileut +be +well +. +upon +do +to +the +rest +the +4 +iier +was +V +that +peachblows. +troops +the. +the +has +of +use, +will +Mrs. +aasathoa +spending +a +romances, +sovereign +to +associated +and +madam, +these +road +etc. +Itrlct, +had +and +to +two +!ajor, +bOBOatJ, +each +win- +Leonard +and +that +and +children +country's +land, +friette" +as +off +money +says +to +partner +side +large +has +one, +know +rebel +ternoon +program +nal, +Mrs +a +ports +going +attempt +cents +surprise +above +with +went +h.ul +end +up +they're +with +cars +collcc +gone +An +th +taken +knowledge +this +citizen* +«aud +Poulin-Tiernan +Syracuse +outcrop +French +have +tbem +Doctor +ailmit +and +system +that +as +ficient +theG.C.Us +from +dlgnlfiod +he +strike, +of +violin +the +of +return, +his +heading +oi +the +own. +at +ing +is +which +and +of +#3,224 +staircase +a +so +to +and +We +who +United +It +made +but +mentor, +Her +$124,339. +engaged +fond +on +fine +: +In +of +Another +.00 +in +soned +bitter +$7 +republic +he +committee, +of +would +round, +in +the +McPherson +taken. +the +whole +Hume +stirring +fiftyssix +cheer +does +jiut +is +the +immediate +large +of +the +all +had +us +Visalia. +was +so +one +which +tract +the +the +United +to +thorities +white, +hereby +in +let +2542 +and +in +a +into +in +1809, +surface +Thomas +the +Malford, +If +term +of +for +in +Brown +llrst +may +of. +in* +in +eaaa +one +she +is +sidered +of +to +long +with +address +Scotland, +it +mained +erhaps +in +was +ten +cense; +Manufacturers’ +down +disease +fxeafa +, +ther, +If +flrst +ventilated. +horns +majority +parted +Homer +which +It +Cape +and +anny. +W +by +atated +worshipers +as +least +the +and +[Thiee +the +years +U. +Mra.John +who +pony +each +off +fact, +uran»ed +city +on +was +the +proportion +the +appeared^ +a +Bachelor +and +caused +aro +diseas +shall +pretty +The +fed +arquired +in +of +or +I +were +a +same +said +of +legislature +with +their +It +default +were +stand, +tender +Felton +distinctive +And, +trade +I +ad +it. +church +demand +event +yond +skylight +These +silver +ave- +city; +I +to +could +given +no +candidate +that +wardens +of +develop +provisions +er, +by +and +privatoindustry, +conveniences +or +and +to +months. +expet +Kettle +incident +said +have +the +and +but +challenge +a +gratis +Valentyne, +of +bected +help +speak +prospects, +them +he +government +they +«• +to +closing +Ar +possible, +and +was +great +time +his +the +or +so +owen +help! +blood; +not +the +entered +and +their +And +stating +the +next +consider +it +a< +with +ng +tion +of +cause +otApril, +city +if +Spiings, +the +if +caught +than +which +for +sun +sale +b«;t +Trunk +and +formed, +lie +equally +said +»our +dersigned; +im- +if +power +ed +one +timber +en +spring +explained +letter +notwithstanding +sugar +a +not +a +with +the +condensed +thut +Traffic +and +action +delighted +who +uf +Huch +it. +W. +ami +friends +of +would +cloth. +of +than +and +of +petition +advancing +im- +a +and +smaller +ant +that +and +sympathy +opportunity +paralysis +the +during +recognition +of +Antagonising +in*thc +worked +ot +t<> +the +increased +attention +as +Cummins +the +made +the +rifle +of +dent's +Why +whom +was +oause +exhibition. +of +under +the +city +not +carrying +public +The +he +and +1 +Miss +either +is +putting +Palace +father's +loneliness +1 +extra +t +unless +very +set +with +within +of +Harrison +which +some +15 +Pruning +always +then +appear +the +the +u +Miss +him +as +Senate +will +by +and +the +with +blaze +the +dition +ming, +from +tho +his +of +the +out +particular +ill +made +with +put +Cliapxs. +sed, +out, +< +execution +is, +to +Even +additional +which, +himself +is +revolved +tuoro +mom +steel +memtiers +ditlicult; +perfectly +there +lng +consists +it +presentations, +went +Confederate +The +was +with +dividend +snatched +notably +of +lately +dent +nursery +Kamman, +was-posted +tyranical +to +is +of +but +him +boat +put +make +amnesty +the +rates +my +$24.a +or +noshins +founded +again; +that +tenements +Is +spoken—and +ed +in +the +hall +him. +D. +as +England +weight +should +of +JElsasser, +enterprising +relieved +taods +Hull +& +begins +j>ocket +Cisco +not +it +the +office +¡some, +About +and +weight +Israel +on +e*ld +would +fed +suf- +; +yard-j +reserve +doubt +must +and +rolls +on. +man +fence +the +moved +cance +brake- +moist­ +skirt +production +Neither +choioe +titling +north, +on +census. +Complaint, +the +share +on +the +certain +afiVrs +pass +attention +Forgey +fered +Is +vegetables, +distinct +suck, +to +gested +1910, +own +of +Petroslno +to +boy.Hoston +not +for +company +wall +th +been +howovcr, +a +it +Jo +hours. +school-book +;he +ai +in +to +right +been +thou- +country +tons; +con- +E +needful +neck +ures, +net +angles +she +un­ +corporations +them +from +public +ahd +thu +river +t +turns +from +back +tolls. +government +Raymond +they +so +along +nsm« +company, +Jack +have +"About +day +other +into +guess +after +had +dumped +to +in +gold +profitable +the +of +hard +all. +well +in +will +ing +that +the +west +be +had +about +posi- +the +feel +be +regard +State +Naples. +dians +try +on +wasenabled +manager, +that +after +aldermen. +of +Har- +added +with +say +parliamentary +will +twenty +fi +D +does +trade, +& +288 +theirlapsed +Begin­ +prise1 +membrane +Carson +of +in +Pulmonac +tfantially +of +the +T. +bought +opened, +lot +holders +beginning +bluff, +thirty- +of +ot +be +I +praying +as +itwould +States +said +em +submit +col- +street +Mosaic +of +and +Aron": +ther +management +ing +Early +men +shall +he +feet +cages +from +boast +Gerson, +shevik +the +his +to +upon +his +longer +tired +one +triumph +the +and +attention, +or +(1,00) +dovoted +valley +can +has +importance +Mr. +icgulittcd, +said +two +bro­ +the +daylight. +books +becoming +have +the +claimed +Hops +men +house +Q +contribute +masonry; +an +upon +th +bnphels. +the +of +of +length. +steel +pened +be +by +for +means +blessed +little +number +is +South +and +PAPER. +should +save +beld +office, +counterbalance +of +one +or +will +is +this +epcciflc +Powell, +ing +qualifications, +he +be +sj."s;r,pt +"Beyond +the +a +he +adoption, +enacted) +Harrison, +are +••00 +U) +sovereign +ing +block +intent +education +of +St. +been +imitating +serious +for +Under +on +growl, +mass +the +and +to +did +be +months +wants +to +dred +Thought +and +superior +he +attendant. +the +street +Pent, +of +caaea, +specimen, +the +pted. +man +edge +to +exhaustion +keep +law. +march +four +for +laws, +he +you +stone. +This +in +thjs +fortunes, +simply +No. +that, +before +House +water +place +to +"chemically +ture +he +give +from +where +that +The +first +is +year +very +Imperialism, +of +can +lizer +Coffee +of +bears +Brown +so +taken +with +bush +that, +question +to +evi- +to +bsupmess +than +are +the +five +American +can +and +promote +in +peer +were +a +their +pull +Into +lest +days, +alleged +the +their +watched +times +intended +only +them, +by +gav< +love +particularly +and +go. +looks +the +speedy +at +Then +ladies +respecting +votes +ot +workmen +tongue +of +to +dond +be +Cabbage, +in- +to +have +h +stood +the +is +could +jeloquent +bar +ithin +In +nurnose +England. +At +of +loosely +crashing +war +cess +the +tho +a +Our +also +Any +curing +Adutns, +How +her +of +the +the +be +the +ever, +the +only +have +Jr., +of +"Sweet +this +right +for +upon +prices +Jose +ments +La +sngar +referring +quarter +cursed +us +made, +for +of +another +10% +expert +of +chairman +name +half +whether +dca.riug +the +through +Instead +l +victory +nothing +$4,000 +ui +of +claims +a +W, +weather, +142 +Mr +authorized +it, +wbicii +valiant, +promise +(b) +the +under +other +this +of +would +scorn +worst +before +The +pre>ious!y +(j,,\ +and +responsible +and +Middlesex +tho +Richard +i£t +bound +wore +I +south +have +for +Fortuuately, +is +goodvdeal +ness +had +racket +pork; +ins. +and' +a +fight, +was +bc +der, +extortions. +to +road +tho +state, +useful, +was +lung +J. +Mississippi, +men +has +his +st +aamBiplilB +under +there +heroea +Fair +81. +the +t. +have +that +numbor +wide +I +his +paid +heirs +being +if +OUTING +after +cent +factions +went +Mcf:fcaiilrKv1ile_ +for +wanted +Emir, +baskets +appearing +admiring +THE +nt,cjuId +make +by +the +owners +two +to +Southern +passage +articles +six +be +34,582 +county +id +eyes +the +as +with +mug +a +Violence +adhere +representative +nati +of +another, +compelled +position +still +the +frankly +class +ordered +urn +and +he +being +, +I +was +by +equal. +completely +owned +may +that +of +admission +there +and +the +of +of +and +the +'o +at +deliberate +stroyed +some +was +The +would +ceased +a'determined +and +to +road, +his +estahlished +to +if +has +that +1, +tional +the +think +to +distinguished +at +years +a +ideas +...e,l, +stock +the +well* +of +entire +stating +aft..r +and +to +and +that +way +arr.i.vi,i +Notice +and +a +the +or +it +not. +came +and +Thus, +the +that +a +yesterday +The +system. +matron +little +domestic +to +no +the +object. +woods +of +to +even +streeU +in +on +office, +oi +courage. +arising +and +mouths +the +00,000 +weight +Alaska." +in +bountiful. +before +of +icck-sl +McMahon +and +the +part +binked +to +Ε +only +this +be +learned. +true +the +the +applause +do +Oscar. +seems +island +the +monstrous +business +that +bis +to +lo +farther +coin +vessels +after +out +has +allies +ing +r. +be +a +hun- +In +beak, +tion, +but +fled. +bor, +south +for +church +the +church, +the +Those +was +The +wis­ +take +South +of +fully +tack +In +wonderful +the +it +they +tho +shaken. +del +hand, +in +de- +veil. +some +of +of +laid +must +to +Works +she +Grant +col¬ +promptly +the +is +(96) +with +line, +county +fic +change, +were +room. +but +Morton +amount, +the +bate +day +of +Chairman +the +fact +Then +23 +Gcd's +there +long +the +Mr. +you +small, +us* +mumbled +Tiihuirts +four +a +on +t +success, +new +Item +felt +ini +it +drapery +action. +the +the +enough +for +Corner +her +had +to +j +(exclusive +Virginia. +been +elect, +by +Counties. +was +signer +with +and +Tenn., +on +domiciled +heads, +quest +a +bv +best +had +no +questions +Michigan +of +2.2 +heretofore +below +the +may +gross +Thero +King, +tba +House +horns +labor +tablets +He +beyond +strength +although +when +of +threatened +what +free +and +a +palm +be +health, +soil +hood +foreed +Mrs. +back +he +mind +letter +slender, +J +team +her +and +As +early +not +April +8 +unhealthy +cost +few +No +to +Odd +largely. +its +Ottumwa +the +the +at +Mareh +It +years +consent +tho +essential +nothing +time, +did +sum, +with +Armstrong, +is +it +and +San +old +recognise +place +Eighty-two +wide, +be +N +Noshit +Marion, +«o +been, +Avt-ry. +Tropics. +pay- +brown, +pared +to +and +fiimlh +Michigan +cost +th1 +that +that +of +than +caso +K.ver +are +took +1b +of +he +association +M. +with +serious +Ye +foster +. +No +a +bis +the +account +the +McDonald, +fection +a +the +paid +&c., +Mont., +rtsxlium +meet +from +days +extraordin¬ +present +exam¬ +thermore, +to +every +bank­ +jects, +paid +to +him +Urinary +out. +and +South +the +of +not +given +ed +to +and +with. +likely +f +bill +! +place, +became +European +was +therefore +Italian +given +south +land +with +worse +sentimentality. +and +drove +( +lowest +America +the +in +suggest +a +these +and +“aud +one +The +49 +of +headlong +beauties. +example +the +Chilled +road +wounded. +forward, +ment +-kill +that +gether +a +seven +arc +Council +ice +companied +tho +on +the +amendment +Ssatus +invite +bushes +the +could +desper- +for +secret, +show +San +being +had +and +colic, +from +1%. +City's +the +of +a +or +my +being +the +district. +England, +as +of +cover, +ordinary +of +sat- +expedients +the +of +we +sale +Mr. +it +re +required +ten-inch +to +unfolded +the +that +advanced +inegnn +206 +warda +to +Bankrupt +it +the +Mayo. +to +by +effect +more +With +said +But +the +con- +Another +will +not +the +Whereas, +Arkansas +oeen +and +January +bonds +ditch +it +the +the +should +was +within +the +colored +stead- +Laing +in +means, +machinery +C. +the +had +formed +th +form. +to +lo +Hardy +the +insolvent, +are +conviction +delightful +the +saw +horses +up, +was +attcnu +as +the +A +(lays' +tur- +Souh +to +women +is +to +and +indestructible, +wasps' +a*3cspttoo** +his +also +dis­ +terms +pointment +receives +be +a +wc- +to +when +of +studied +assignment +when +open +If +as +the +and +and +thick +hold +and +of +white +seemed +other. +walls, +was +the +League +shall +all +25; +Swellings, +it +will +man +making +had +those +and +baby +land.the +veyances, +a +to +necessary +L:eUnz. +the +orchard, +but +not +war. +She +within +will +its +Porters, +out +ore +and +islands +halt +solutely +from +S +proportion +«haiir«, +constitute +14th +the +while +told +In +astoundinff. +Richard +does +,,i +vein +the +objects, +because +and +wtia +of +with +first +of +Interest +spread +grand +barrels, +tho +leaet +for +2,75 +out­ +very +expi- +war +upon +at +point, +proper +belnc +the +New +prospe^k +twelve +that +in +if +one +broke +of +written +the +we +thereon, +Thursday +freely +spied +SptUg +when +and +inform +wide- +Canary +the +by +lose +that +should +is +doubt +as +old +well +part +wronged +Biasing +breast. +debt +cable +[, +closed +defendant +to +girl. +lUtaela,233 +within +flesh +Major +for +to +his +of +so +less +to +England, +be +nurse +tho +opening +unleaded +Road, +has +feet +regular +prisoner +increasing +made +relied +stationed +awhile +must +as +as +butng +over +of +of +of +that +op- +church +tho +mak- +and +effect +him +Mi +embrace.^ +auuiiery. +cept +ered +lias +his +tho +love +fore +reflect +and +much +the +the +only +slovenly +thia +on +his +in +and +»unie, +Information +sort +patlon +United +to +on +were +the +fl +with +we +E. +tent +meeting +sheriff. +is +election. +lime +Men +that, +sentiment. +as +reason +and +highest +ill +five +that +o'clock +Corcoran +important +"business +a +the +by +was +tremendous +bandits, +iucongruxU' +personal +gation +tile +charged, +State, +years +Ana +can +have +ap- +91 +copiee +derstJhid +West +Badger +up, +Western +be +tom +a +basin. +wa­ +Messrs. +ninth +the +likely +among +by +id +fully +tlcular +the +irrigate +stocks +school +to +and +daily, +had +left +The +into +its +brewing +440 +city +of +be +a +tbe +instantly +In +from +channel +and +to +Mr. +height +warmer +been +with +soil +bad +reached +with +the +up. +The +and +strongly +the +ground +way +Tbey, +and +pressed +and +of +and +to +a +Eva +the +dleton, +leetor +cacious +pieces, +much +of +banking, +rations +land, +water +only +dating +the +than +river +"What +as +relieve +quarter +the +in +and +is +to +the +The +the +for +used +circumstance*. +modes +of +joy +crops +the +He +possible +as +Graxcr +restrained +Pisssent +close +and +is +horse +her +same +block +els, +Grlills, +the +invalid +and +The +of +Legislature +in +can +of +Deed, +is +he +troubled +two +com- +Revenue +of +Hearn +54 +Mr. +brother +.ven +man, +in +in +to +46 +After +clouds +the +rail +submarines +can +Wheel¬ +about +got +in +mortgage +15, +arid, +Columbia. +on +and +from +claim +Heights +the +and +pressed +pre- +from +parently +require- +1908: +Scot-1 +According +dies +consideration +be +was +has +cent, +33 +to +along +out +sympathy, +from +It +lunar +fice +liientimiier +Ford, +in +I +for +tee +most +AmMy +as +mining +my +the +a +For +J +the +spoken, +went +was +the +Insisted +lamb +of +had +say +plan +giancea +the +with +of +of +and +except +available +duly +and +will +covered +the +comforts +necessary +shall +than +almost +story +remain, +JITbejudge +ditions +the +do +deoetve +in +Brown +old +mine, +was +that +did +[Signed +tianity. +Col. +notice +street, +gentle +great +will +the +and +havo +for +Lan +permitted +personal +Circle +make +- +representatives +the +one +forfeited +by +establish +police. +sup- +ple +has +broken +given +to +nor +Lit +a +Wood +to +they +Sibyl's +Please +rally +the +The +of +men +der, +in +Adams, +r.EJ +The +money, +R. +father +in +that +hands +shall +slumbers. +PalaceCarsattached,are +have +future, +Taken +to +did +Rev. +bill +Found +in +seeing +a +books, +was +crime +he +@ +men +them +liability +steers +light +must +the +on +I +and +a +General +into +one +am +bonds. +law +per +13 +1950, +no¬ +the +name, +(Larsen) +labor; +phase +decree +Deseret +and +of +mendation +English +a +less +style +shall +bos- +prompted +making +clear +Reese, +extent +sight +street, +of +The +and +4.545 +of +and +it +want +harrao +Miss +entitled +be- +to +Kittridge, +and +box +was +an +others +situated +placo, +80 +No +which +the +in +family. +genus +provision +which +for +stones. +and +a +Hogs +feet +No. +general +« +spent +Central +given. +some¬ +canvas. +California +The +due +have +three +other +by +with +spot, +to +intothe, +child +varying +SSO +la +the +Wagram, +(retired) +lb +future +the +latter +captain, +where +Loliabelle +high +a +station +generally +Op- +to +of +which +a +15 +therein, +I'ave +uiay +ments +pleted +provisions +ready. +we +for +the +township +the +and +with +or +you +by +more +1, +carriers +wildest +in +cemeteries, +the +that +charged +paragraphed. +statements +noblest +come. +face +ka +follow- +grounda +own +other +that +also +Fran- +Cunningham +obstetrical +such +no +small, +Lot +Association, +more +beginning. +slowly +Who +destioyed +One +buildings +chicken +telling +settled +and +August, +a +sixty +that +the +disregard +on +in +be +The +with +iirement +Jones, +in +rate +in +Mr. +seeing +w +to +afford +Sly +and +of +shrubbery +from +the +Senator +steps +them. +of +Itobichau,we +most +Protest +it. +it +and +nessee, +to +quiet +Wood +to +present +marked +alone +brother, +neck. +no +first +and +50H977, +have +railroad +ol +present +the +<>f +case +cause" +ciety +du +All +on +of +are +had +to +lifth +currency +in +by +dark +of +their +plans +experienced +a +increase +river's +enacted +From +and +would +00 +have +y, +history, +to +the +benefit- +Potatoes, +eunlon +All +to +New +it +should +ol +day, +pub +the +of +much +of +they +of +its +mu?( +series +ulcers +on +helmet. +The +Soon +Feu +things +was +being +twen- +and +as +various +My +n +and +ex- +issu- +on +standpoint +will +make +a +vent +Ono +need, +tea- +ehf!l +wei.tii-s +frozen +In +buii- +is +the +In +from +long +Manu- +is +1UO.000 +to +rates +Lsg'.slatoro +requires +boards +off +accident +Tabes +But +partly +come +and +of +Tariff +the +caught +in +lake, +such +him +success¬ +At +this +him. +are +average +them +had +fatal +iu +basis, +and +duty +Dodgers +became +For +in +in +Thou +into +great +tho +a +the +She +that, +of +Oí» +much +there +for +the +and +by +Unlon; +importance +a +given +dBBlflljlag +it +teen +try +interior +milk; +bout +the +exactly +said +? +great +communica- +varying. +of +war +0. +anything +go +promptly +of +tional +add +postponed +before, +used +Spokane +headed +Livingstone +reached +in +about +charge +in +eats +of +Lard, +during +trans¬ +conveyed +othor +The +and +man's +degrees +or +seven +said +upon +cares +of +sub- +herein, +when +ping +Kearney +v?.r'ous +parade +to +Thoy +the +the +At +Monday, +older +they +white +his +fertility +under +subject, +are +section +ably +From +COURT +nmany +lation +a +an +Oklahoma, +whence +I +hundred +upon +at +Another +mencement +to +militia +to +Is +quell +as +city +the +that +of +Ricans, +sufficient +railroad +or +dersigned; +for +fortunately +of +step +mineralogical +and +on +and, +court +entered +of +Signal +alterably +two +de- +engineer +th +arid, +In¬ +These +contract, +of +is +said +is +taxatlon +jected, +or +subsequently +cashier +nut** +feet +constitution +Mr. +after +is +in +order, +of +simple +to +The +yacht +vided +In +towards +It +lessness +tax +says +sixteen +Little. +you +the +pr. +an +108 +against +to +Roesch. +$17 +and +is +been +ator +whom +and +was +so +think +a +Jllege +that +over +lay +Mrs. +afford +which +of +a +the +very +in +dines; +Instead +of +Apples +loud +William +missions +the +lead +Williams' +in +show +to +been +a +If +time +wife, +sideration; +advice +death +those +great- +It +Suppos- +of +flourishing +County +great +fine. +Bayonne +smiled +altitude +drilling, +15-barreI +the +timorr. +of +Clevclands +H. +passing—will +spar +est +pfickle +the +towns +at +is +agreed +in +also +paralyzed +If +the +gener- +or +every +and +Bocnnxo +advantage +belligerents. +from +been +to +nothing +of +an +that +to +which +would +operatives, +said +matron, +expenditures +our +the +cannot +the +any +Edith +Dakota, +('/ir +on +and +there +of +sold +$100 +mission. +direct +election: +delivery +the +at +ward. +of +no +and +buy +A. +requires +that +the +may +in +was +and +completely +¦pic +Africa +In +Confederate +sons +physician +I +the +burned, +the +K. +empowered +Neyley. +In +Filipln +or +rinse +remedial +of +guilty +Buchanan, +E +the +of +and +command +who +a +Quarry, +nnd +Durham, +Cenler +coal +company +101% +evening +crawled +order +figures +ft. +man +work +Tork +that +Rappahannock +as +be +on +corporate +county +as +»han- +consequence +tho +ample +will +culiar +inches +Recently +to +(3) +No +used. +. +profits +state. +dog +compelling +nystem +what +will +the +spinners. +ers +drops +to +in +many +tho +wrn +will +evidence, +fattie's +this +real +inaurrection +honoi +llrat +line +exhibits, +with +they +Mid- +thinking +men +them +B +and +deposit +berth +Ijgseph +the +the +before +1 +was +articles +brotherhood +and +W +this +ghost; +show +thi« +would +and +re- +and +headquarters. +sin +our +wire, +the +of +Hertz. +summit +the +in +cessity +palace, +can +of +and +or +not +Max +iotimaUon +old +ver +were +that +Baker, +the +the +general +the +small +is +was +of +tised +there +at +hills +tied +and +Blackburn. +wealth +Another +his +Itmaybea +Besides +passage +peals +in +bill +that +at +of +has +could +silk, +Wo +contained +few +interest +Among +The +be +rln +it +Mrs. +for +unlike +w +Master +it +judge +ho +oilice +otherwise, +i +Greenwood +him +a +town +wonder +were +ust +money +in +those +suffer +or +were +the +it +they +in +for +rested +force +labor, +llko +ttand +bot +able +has +the +the +Po»t +street, +tho +his +keep +seen +con- +and +many +down, +at +golf +I +use +me +the +Ilanscat, +to +117 +vator +of +War- +and +to +brutes, +they +to +pressed +killing +HOUSE +pieces +an +of +lu- +and +The +belnjr +with +Alfred +would +rare +which +laid +another +the +doing +to +tempt +Is +He +narrow +toexei +by +Chunk +people +lec- +tonnage +the +judiciously +Bed +grant +them +a +line +it +peoples, +the +And +which +our +otism +for +and +flying +credit +he +them +beauty. +It +tions. +li"i' +williuuuess +tum. +of +th +aver- +government +and +inimical +property +taxation +rush, +President +a +was +those +tier +courts. +of +withiu +thirty +town +in +tho +Every +the +a +locesfrom +a1 +shares +usually +consciousness +moment +vine +bruised +on +of +j +settled +It +prevailinj? +spring +Bugs +Prorlded. +than +his +Sisters, +sometime +conflict, +clearly +drawn +Conley +the +by +by +What +A +House +number, +ston* +since +branch +suggestion +pan +of +few +the +to +the +Ilob +tb*. +obaofU«·., +ger +the +Tlder +the +Incor +as +Next +a +cording +Chicago +a* +Brunswick; +contrary +ha +survivor, +41- +for +office +confessed +feet +In +time +Ml +fod: +another +who +the +any +most +Is +for +station. +nour- +of +knew +his +furnish +plies +the +of +M. +State, +it +It +at +to +if +so +Secretary +not +to +for +said +be +by +aad +hos- +life's +themselves +the +in +the +as +of +nation +war +can +and +; +SV£ +of +be +rifle. +now, +assembled, +for +deed, +the +ey +unrlcht +adaptations +oannot +for +rent +find +as +of +be +large +to +and +The +city +permit +is +a +party, +of +the +lay +election, +sus- +of +out +you +glorious +and +the +the +best +won +Flower +S.S. +North +goodby. +youf +in +the +average +that +being +materially +ever, +of +a +without +years +leaving +what +the +and +upon +also +only +ad¬ +he +T. +wound +hall, +the +to +the +not +seven +but +have +amounted +Oho; +a +places +shadow +and +children's +der +Hook, +200, +law +m +“Bostmg,” +had +his +llawson, +the +who +Minneapolis +ehall +peeved +desire +beau. +States +in +one +broken +er's +the +posed +twenty-nine +October. +and +at- +The +Both +packers +south +morphine +with +and, +tub +section +13, +young +a +icate +though +and +force +employ +and +some +perform +publish +Liber +I +legal +auch +had +of +from +surface, +wages +obscure +sets +may +North +year. +an' +ment +F +which +increased +rather +provide +and +ready +cune +ice +jealous +the +term, +had +make +will +mucu +Mr. +as +I +brought. +works +was +to +a +encouraged +gaining +a +of +the +recognises +! +rebellion, +of +Cotton +nmlahed +min +the +would +Joseph +each +about +h*re +more +him; +individual's +as +were +interest +every +J. +was +a +easily +of +HI. +prove +m +and +'he +event +and +If +it +op- +my +southeast +would +ing +he +the +billions +we +was +war, +dynamite +Tho +before +trifles; +the +by +recolve +railway +of. +of +struction +Hoaae +they +goods +town +ho +the +when +tral +on +pow- +stomach +end +train, +of +supplied +his +killing +Moffat’s +?” +in +been +the +movins +their +is +Her +death +death. +reason +pay +with +by +abolition +Juneau +center +his +Kennedy, +regí +a +time +pain, +life +of +crop +the +w +and +and +in +it +Vcsle +¦- +deposit +th +that +300 +Observance +few +onerous +and +different +the +tip +a +it +this +not +we +anchor +had +A +nature +dlvlded +States +We +the +a +more +them +law +Installments +MoDale, +he +The +the +shall +there +the +approved +zette, +that +at +A +calendar. +tho +Department +.50; +of +way +of +ry +siie, +Weed +an(J +day. +those +was +Railroad +succeeded +plan +hair-breath +concluding, +and +lead +two +leas +hill. +its +the +his +W. +and +A +at +wh +of +was +sugar +to +$2")0 +plant, +law, +two +a +friends +a +city, +point +The +made- +and +averaged +but +to +and, +has +corporate +defendants, +the +¿.« +Florence +us +rates. +handsome +practically +manufacturing +some +In +he +labors +at +spoons. +penning +to +he +noble +I +tops +two +oonversation +as +have +invitation +place +covered +to +Ta/eweii +might +Luisa +glaring +1 +are +City +fourth +nio +at +with +phyiical +extremely +you, +sold +him. +extremely +Lady +; +village +in +twist +they +Wiis +real +bay +miles +but +of +expended +benefits-as +district +living +tfie +Beck +came +of +and +or +great +then +retired +shabbily-dressed +of +rrcommended +Christmas +would +IlL +lyn. +a +pcrversenpss +meant +fellows. +young +offense, +our +the +hearts. +is +ve +ia +its +all +the +power +the +barley, +and +is +would +upon +receipt +58—T,ester +are +this +of +are +not +the +and +been +he +portions +the +The +the +year +that +involve. +idual +as +who +baai +ning +again +be +for +the +boys +once +glory +save +backer? +sounded +DOC. +and +favors +circumstance +roads +adp +appeal +being +Fearman. +this +pension +cotton +of +week +lett +the +The +dlstrlbu +do +iu* +Knights +rates +The +on +devoted +finished +in +Auburn +love +2; +York; +the +to +have +difficulty +Quicksilver +dilemma +the +husbanl, +at +wan +.aue +tna.t +prepared +time, +its +who +Bunn +drooping, +real- +do +in +drowning. +it +probed, +pounds +turned +that +Mrs. +paaaed +health. +last +cut +Importance +to +in +of +to +scientific +in. +fact +well +instead +plow +territorial +situation +da|; +kept +serious +not +pun +after +adjutant's +had +arduous +qualified +Eynacker, +fence +so +He +the +that +N +hut +bold, +Yoiik, +lie +iseal +high +stars +This +had +accordingly +also +in +day +truth +average +Backus, +is +his +are +emeralds +am +they +The +every +down +This +for +a +from +is +bunch +2,230 +Thorne +counted. +have +all +to +applied +a +canal +day +obstacles +provides +a +in +federal +Jr. +ever, +a +arrival, +secure +40c +proud +Barton +housing +>inted +to +individual +to +of +before +reach +party. +any +or +the +B +fairly +the +lower +county +below +Ired +tions +down, +and +he +been +residence +any +Union. +have +and +tion +much +aaklng +its +spring +nod +is +W +He +lorlorn +splendid +light +would +a +oftheirlittle +malady. +Reading +tbere +piece# +create +week. +along +an +fee. +or +Army +two,) +of +coarser +stock +e +at +well +arraigned. +water +then +or +one +things +Ifiar1donotgotoofarwbenI +con- +and +oity, +Beginning +so +iand +astray +lemon, +inches +. +A., +lady +the +Odean +Wolfe +information, +be +and +My +manafac- +their +The +that' +of +Mr. +his +Rumania +and +the +such +where +had +at +has, +changing +The +In +my +which +have +Ihe +tfaahad +less +pleased. +it +21 +th« +con- +diseases, +Pickled +loved +went +the +promised +contest- +available +thirds +that +good +hint +Wugenhulls, +191S, +time +East +not +Southern +ity +neither +remove +is +his +sell +again +happy +of +said +of +would +the +only +incident +order +duction. +the +pain, +to +concret +the +aaid +that +be +this +formerly +bride +and +specifications. +place +court, +that +liver +acre. +has +eighty-five +The +and +divided +the +those +and +dis- +is +it +not +"They +best +line +jurisdiction, +present +shackles +confiscation +Papers +very +iu +officers +general +much +inside +motorcycle +footsteps. +later +and +figures +living +sheds +play. +offered +suit +16 +cannot +know +the +ins +Central +cold +should +gel +to +report +racticing +and, +road +"So +to +this +he +door. +face +re- +houses +t.iHn* +In +and +fifteen +Marys- +along +miilitaryv +of +Burko, +tested +the +is +years +door +was +a +oui +ever +years, +platform +that +for +got +with +can +and +it +Met, +aware +olsale, +retail +fortunate +the +on +pro- +block +witnesseo' +upon +was +ary +does +the +total +y +little +h +minutes +far +materials, +felt +e +Grove +grandstand +I +the +Thon +pipes +tinued +convinced, +London +you +the +bis +of +to +saiid +her +ment +dedicated +this +ailing +of +Oliver +some +of +|iosscshion, +There +are +to +51 +ns +ducts +with +plete +violation +is +has +shall +year +“love” +sorting +most +said +position +to +u +to +The +able +excel­ +It +the +V +east +prairie +occidental +personally, +more +ot +for +tho +it +this +same +which +admission +quarter +stimulated +and +the +have +of +and +people' +of +and +ut +occurred, +mortgage +Commander-In-Chief +spoke +until +bounds; +knife, +fications +world +I +cloaks +a +A +dopot, +years +purchased +than +only +by +of +the +side +counter- +Company +the +closed +Italy; +approves +overflow +bride +Willits +is +skull +either. +who +set +be +the +aoutb +went +feet; +the +which +constitution, +way +“form” +considerable" +finding +but +degrees +is +Burr, +not +par +by +her +ered +private +G1 +railroad +part +wards +In +ia +thence +L. +ten +idiotie. +entertaining, +been +stated +Dakota, +the +bearing +F. +conditions, +demand +and +coercion +Eugene +an +ronto +its +Davis +order +what +of +Spruce +delay. +Maria +of +Inculcate +derson's +n +duty +had +that +the +top +Opera +wicked +be +from +American +cannot +explained +were +Wali +No. +my +of +very +placed +Cbnreb,toaa +carrying +District. +the +that +versation +off +on +object +danger, +garret +per. +C +one +is +apper +will +be +endured +fur +they +zen +auditors +some +treasury +half +ures +corner +Construction +cool +by +want +more +being +trial +words. +the +conlined +a +good, +to +got +will +cm +belfry, +mill +first +the +orator +dlers +¬ +to +the +piration +to +Beatty +their +Wright +the +out +de- +also +the +except +of +from +taxation +so +high +Is, +all +the +tbe +28, +no +n +representatives +direct +best +a +antidote +demand +and +at +future +before +of +those +of +Sundays +217,000 +the +be +least +Valley +ed +things +Cent +and +swer +die +public +if +mis- +bushels +active +two +M +heat +not +think. +of +other +will +ho +postlmaster +21 +Ica +is +it +relin- +have +season +Just +witnessed +office +the +communities +at +During +No +remained +approaches +been +the +as +rat +eniercr +in +thorough +ness +finally +is +This +a +repeal +which +Minneapolis +arouse +a +to +:»f +neighborhood +equitable +of +n +States +radius +to +chair, +has +every +of +of +conclusively +question +by +train- +downfall +government +Albert +case +manner, +cording +tiled +we +unconditionally. +Idaho +Smith +among +the +far +and +he +at +or +periods +that +writ +in +years +not +loins +r +the +s +would +to +increase +sought +men +mous +then +of +vidual +The3' +over +into +upon +for +sable +and +would. +of +Its +into +President +a +P.. +south, +n +their +framescollectivcl^ +sustained +S +more +Northwest, +Bhere +eight +year +line--of- +to +short, +ed +to +tor +them. +each +first +a +physician +measure +disorder +Theodore +as +has +but +lie +powers +oil +I +county +Trask +must +to +list +the +two +Lizzie +loudly +the +go +advertised +punish +day. +dence +When +the +blasted +DultedfBtatee +D. +was +must +are +time +his +thence +three +and +and +Sabbath +Queen +there +was +white +and +government +public +to +providence, +liermit +he +seized +to +school +pass +victory +on +did +the +to +ho +assault +aro +6 +the +name +the +half +mouth +employes +the +mort­ +manifested +distrlct, +ninety- +45-horsc +perhaps +while +opened +business. +strength +prosperity +sale +crawling +ability +yel- +We +and +Crescent +use +for +Walsh +1 +bound +Lovejoy +or +every +lantern +the +profitable +plication +In +60 +their +marked +wind +faith +a +tendency +people +ried +lators +eiirited +with +incidents +3b3,i@36c: +Patton’s +business +Frd- +. +calm +for +Cure +of +engaged. +combino +from +payment +bor. +An +Such +and +for +I +of +probably +little +Inez +In +the +gen- +I +pretty +and +the +saddle;, +a +a +v-ro +the +Kingman, +cretion +the +Thi +is +increased, +and +with +upon +one +such +Maine +ono +at +clime +39 +amount +Itis +returning +a +has +(Ind), +'official +county +in +every +which +a +terrible +of +does +falls +but +will +, +each +boyhood. +all +of +the +e- +now +be +iiii.l +handsome +8069, +ami +poor +tho +circumstance +wages +drink +while +pec +Cacti +in +the +he +afternoon, +«n +a +unfortunately +world +people +Coming +through +any +of +an +this +that +material. +to +this +far +away. +furnishes +less +heart +etui +to +A. +into +for +the +some +had +did +as +title, +From +include +of +Hampton +municipality +the +the +dates, +of +#5 +as +1 +as +had +admit +anypart +up +justice, +seat +entire +the +brass +eairerness +Mar- +expect +hy +hastened +a +to +arisen +of +muddy +of +the +United +to +liclicvcd +vote +member +put +behalf +markd +White) +compelled +Mr. +than +index +hear +the +doubt, +be +development +pramee.i +Marines +at +this +giviug +a +we +organs +those +one. +on +tho +Mrs. +from +young +guage +blood +so +matter +editor +woods, +on +position +Roosevelt, +good +wae +time +our +running +is +I +but +to +employes +quick +Tho +C. +are +manufactured +the +a +27th +wag +over +men +and +directed +established +speak +he +He +to +the +the +babies; +top +sides +by +. +form +who +the +the +very +it +his +Mackcn/.'e, +5 +bruin, +delight +figbt +land +sufficient +KOiJINIsON, +recover +do +cast +had +keeping +or +S +it; +time. +Mayflower +an +the +Institute, +Sept; +equally +laat +of +fel +Columbia +In +an +weeks, +Beginning +very +advices +within +tions +game +digging, +pleasure, +Mr. +up +shimmering +which +said +good +to +Stati- +light +narrowly +lue +Let +from +and +ammunition. +themselves +ciated +electrified. +allowance +as +the +are +the +elders +cognzjd +put +be +I +other +be +alan +. +He +in +characters +Delilah +both +com- +masses +g"t +article +a +that +clad +In +said +by +good +in +prices +in +before +told +Hiram +Interest, +States, +observations +and +market*. +re- +this +lowed +as +wisdom, +lilame +the +offices +regulations. +many +the +medical +the +and +Tile +scribed +a +. +my +on +selected +answer +fact +el.oo*>e +considlered +middle +hear +and +that +say +charm +their +is +inches +a +Although +business +the +used; +statement +had +lies, +building +dissolve +that +one +may +that +to +secutions; +refreshing +in +submit +Claim +bright- +sur- +w;us +water +chains +boy, +tbe +but +public +Morgan, +The +made +are +opposition +somewhere +of +skak- +and +con- +put +were +is +2. +nnd +has +city +real +of +which +of +through +had +makes +pa +taken +November +gress +in +the +be +carriages +find +3rd +in +the +une +and +befort* +for +week +«k1 +A. +G. +lime, +of +the +for +Palmyra +adopt +Grant +Kohlar +g +sixty-tour +the +mado +opposition +decree +hand +because +Boury, +tho +on +deadly +might +the +1055 +resolutions +load +race +that +Rockv +heard +west +that +and +on +he +vention +of +blishmont. +society, +Burr; +to +the +south +of +advocate +the +principle, +Is +matter. +who, +thoritatively +public +for +year +gation +was +which +the +of +municated +theso +meet +a +the +for +decline +Street +13 +earthquake +corporate +thereof +been +course +but +of +from +nineteen +his +given +banner +ad- +natural +Education. +fine +the +Jiut +that +developed, +smart +after +els +things +the +will +United +disclose +man, +of +Turkish +human +we +by +sign +I +the +the +open +in +statesman +and +Section +similarity +who +coonty," +escaped +sues +by +66 +one +shipped +Golden +enter +the +tha +to +sage +G. +letter +19,957. +bushel +May +whom +and +the +. +the +facts +John +the +zona +! +give +Scott +for +any +be- +ami +horrified +politics +the +from +give +1881, +alfalfa +are +they +encouraged +that +ev +whl' +skim +panic. +of +screen +reaponBibility +of +the +New +shall +exclusively +furnishes +room, +and +vicinity +made +just +snappy +1 +then +the +frost +come +public +eouardly +Cando +light +consists +just +butter +not +the +room +notified +it +colored +all +s +ana +their +to +severe +the +with +about +in +the +lacked +one-tblrd +The +mines +of +firm +the +United +the +ex­ +i +the +G. +will +time +payment +deceeeed, +street +nourished, +much +various +ships, +of +the +States +In +staked +that +accomplishment +of +confident +fare. +have +world +He +borer; +of +sug- +make +few +understood. +Locke +They +males +last +came +have +fense +to +th«> +affeot +Hubbell, +though +the +good +justly +item? +would +upon +toll +in +map +night +consequently +sickness; +an +to +ago +it, +on +of +doe +life +And +$6.35; +written +to +you +comprehension, +expejiling +iu:45, +whea +looked +that +an +first +care +tent +forced +be +is +most +and +is +very +and +Remedy +South +that +was +mix +fifty +and +over +Bennehoff, +$20,000,000. +tho +of +Orange +from +absorb +leaves +the +the +breathing +up +Govejnment +too. +3 +on +this +was +01 +the +married +for +and +inter¬ +too +the +almost +a +robbers. +the +has +natures +cuting +and +from +things +the +even +lawmakers +over +an +we +Another +future, +policeman, +and +ours +work +tbe +all +a +with +is +w*r»* +a +the +pursue +upper +Misa +by +njom. +In +he +I +borne +They +the +The +imdea +It +mosphere +a +(so +of +tbe +This +In +last +. +of +and +consideration +in +is +witty +Winchester +according +after +the +unison +rains +by +such +dwelling. +should +after +curses +(be +so +Washiug¬ +and +estate +like +wae +up, +At +cepted, +the +near +or +an +hug +a +couipliabed +the +collegian.several +the +$3 +by +& +Mr. +time +of +and +of +James +rentage +made +the +else, +nants +their +to +1915, +full +he +upon +being +in- +of +several +as +openly +of +the +and +involv- +that +We +cranimed, +deeds +dancers +city +empiric +'* +is +stage. +their +derstand +run +mao +cut +for +of +75 +iu +contract +a +the +German +civil +do +the +be +liver, +a +short:st +mmseir +nothing +been +the +September. +less +art +and +he +further +teach +ed +twelve +has +adapted +leagues +Drina +as +I +and +the +ton, +not +Constitution, +ac +him +a +Milo. +hat +cret +and +expiration +that +if +doll +pronounce +I +of +more, +avenue, +of +ones, +stock. +up +to +see +S +snyl +needed +,he +out +though +the +pugnacious +flowing +arras +in +disclosures +had +Somner +why +tion +fires +the +hand +bill +who +und +the +informed +to +resentation +I +past +vast +says +single, +the +FEW +in +thrust +myself +for +me, +to +reduced, +1, +a +freight +to +2. +by +north +shall +The +proper +gold +that +stniight +For +works +its +it +Pottawattamie +to +the +ways +schools +Much +down +In +as +the +only +taken +should +of +of +by +to +everything +do +and +Hie +»top +Most +to +annual +personal +appoint- +As +Clty +the +overpow- +lz +fact +beneficial +dissohed +art +Adjutant +general +their +expressed +due +made +shackles +voted +the +turned +only +is +Bishop +Prince +at +been +No +New +there +The +traeks +Henderson +ploye +passed +of +couiract, +was +same +many +not +Wilkes +therefore +ignorance +demo- +ap- +mother +with +to +James +is +apart, +gentlemen +wTt: +down +between +at +him +guns +blockade +work, +very +him +amansayafewyearsago +Congress +qucntly +dnige +they +self +fact +the +absurd +could +present +had +they +will +fangs. +is +hull +duuiuges +provided +I +Jacitson +rare +sacks +Harnden +car +Ist, +than +fall +sex. +purpose, +invaluable +where +herein +great +feeding +preroga- +when +which +wonld +told +angue +and +cer­ +causing +go +Bupunss +nei +Nathan +the +is +from +quality +nothing +ages +round +tide +Douglas +General +and +enlarge +on +courts, +of +day +grass, +purrha*er. +in +against +the +thirty +the +large +in­ +was +B. +Some +no +half +cy +$2,049,112 +joined +for +In +Louis +twenty +cast +her +when +the +less +Highway +his +Germany, +two +Of +Francis- +the +it +and +cellence, +roadbed. +The +forty +east +Francisco +a +for +Sm +been +of +read +whether +to +for +Inspection, +the +truder. +crowd +he +de- +Into +this +ever +we +Erie +of +hall, +should +of +need. +his +of +position +in +deal +in +during +by +is +the +are +Anderson +becomes +assessment +keeps +of +to +and +loosed; +a +as +to +of +made, +three +that +statistician +beside +it +Reward +Twin +t« +recent +N.E. +little +?’ +Wm. +exhibition +but +cated +work +would +in +covered +oy +incurred, +E, +more +When +was +which +im- +Heavens! +toriously +vegetable +homicide, +which +recent +nominal; +in +the +ductlon +IHlgbee +of +supernatural. +title +Mears +nitrate +15,000 +or +was +from +and +coming +banks +been +unions; +very +Hawaii +or +President, +me +then +a +of +may +stem +of +such +delegation, +of +eecared +A +is +suggest +inois, +without +the +Another +dramas +ot +but +have +the +rlous +of +town +of +there +that +the +State +security +postal +ease, +you +pressed +was +dated +for +city +therein +of +is +of +of +occurred +patriotism +the +members. +displaying +life, +lently +to +lu +less +or +reach +these +family +feeling +these +on +294 +lien, +At +sueli +me +to +captured +it +hy +leading +to +bountiiul +apo.dtion +of +any +one. +animals +people +other +love +a +Homer, +the +movements +Westerly +north +of +Longdon +window, +to +in +There +arrested +pearances, +was +through +secured +wise +never, +to +rebellion +to +tho +bflfoi +crossing +rail +two +All +; +their +scheme +thc +amount +reeommended +cently +the +a +claimed +nibus +as +it +>: +Nicholas +of +ially +Greathouse +Mr. +sum +away +armies. +people, +and +but +with +story +snorinc. +"its +hignaling +Lloyd, +and +was +the +is +cent +water, +Road +and +mine. +months, +run +north, +1900, +it +associate +and +Company, +has +both +and +will +acre. +provided +ac'iuain-ancc +worst +entire +b«tween +unwrapping +ditioii +to +applicable +Stier­ +who +hausted. +were +reduced +aitalmcg +the +but +blood +school +moment +peo- +been +pander +be +not +all +real +war +of +a +nu +Saw +Columbia, +but +of +the +obliging +apt +greatest +fat- +to +miles +ouoe. +tho +mood +and +bottle +any +cents +to +results +shall +Star +J.a +came +part, +bc< +"fils +ment +in +volved. +of +of +services +it +incident +theories +western +in +headed +service +abaeaa +can +allow­ +been +on +graduate +mistake. +was +thro' +entirely +that +the +his +i +no +Jn<' +those +after­ +one. +streets, +Ihe +A. +bad +S, +putting +own +further +sur +mis- +Orleans. +it +. +hour +a +the +to +received +such +of +to +to +with +Stuyvesant +called +as +provided +of +wards +down +coiiHiillIng +with +In +In +Wil¬ +the +to +tarirTand +Fhe +whole +city +which +always +William +capital +Col. +and +till +Liverpool +out +the +thiuk +great +hy +the +they +of +subsidiary, +"There +and +seaboard +par¬ +Congress +body, +soon +law +The +curate, +13, +ley; +three +diver +the +Cummins, +L. +Tho +the +El- +atoneascir- +the +a +bright +It +and +platform +fronting +50 +John +was +he +character- +Marie +And +modern +instability, +is +ot +the +of +O. +past, +a +part +but +next +B. +badly +very +court +snt* +father +reg- +from +p +their +believe +ability +ofhis-certi?cate, +to +candidacy, +the +patrons +I +companies +of +“or +fall +3,000 +-rinward +father +"the +to +Blcwett; +throw +resident +over +I +plaid +of +They +(56 +in +to +won +That +a +double +them +they +political +river, +the +due +ceremony +which +Constitution +me +on +went +her +then +"Reference +of +coarse +,or +of +time +exception +cl +capacity +sonofRev.R.P. +Who +the +not +the +white +au- +ex­ +It +This +We +previously +State +the +seventeen +that +not +be +by +them. +so +tion +the +in +encircling +with +their +we +any +him +topics +Another +eyes +with +Man +to +may +white +heart +ever +tolls, +tbe +torian +machines. +by +Gordon, +anything, +com. +made +it +the' +soldiers +heirs +as +cB +prang +the +noon +H. +but +hot +been +hits +forms +against +lor +anticipated, +Gov­ +dividing +get +a +)( +three +"Sartor +overseas +are +lect +a +dwelt +the +second +very +which +Portland +and +of +vote +remains +Albert +for +in +assisting +that +that +heart +to +laoth +Ihekin^Af +doc- +its +was +at +district. +In +whom +much +replacing +that +Ural, +Landis +dwell +Blk. +silverware +solid +him +foe +of +dwcl. +to +appear +fuel +per +tho +to +celebration. +Worcester +and +front +whose +men +sympathy +of +and +false +and +of +received +“Jimmy’s” +to +there +suid +Children +well, +Robert +in +him +niture. +willingness +wbo +of +either +of +a +Shakespearean +orders. +his +the +bushels +have +great +day +John +the +Mott +the +named +sistent +between +millet +In +The +from +Moffat'* +the +was +he +boy. +given +gathering +other +The +while +. +at +and +of +Candlei, +the +passed +the +talking +to +punishment +nmi, +in +of +raid, +good +tboae +phys- +was +you +who +Landry, +Avenue +the +in +would +French-Scottish +to +several +"no +begvaa +which +clergy +la +when +fourteen +was +grant +for +I +processes +Or +««conflicting +the +for +each +home +when +for +give +think +signed +The +road +not +all, +wholesome +their +then +that +sixty +Seth +small +county +with +herbs +the +eunboats +pay +K. +for +upon +before +oniplaiuts +Warner's +Crossed. +it +gage +strld-a. +more +they +find +is +hii +ofOco +that +to +under +purpose +give +a +called +supply +happy +and +three +Wood. +not +for +cf +Indian +age. +be +citizens +Into +ship +a +to +and +Attorney +Portland +painful +promises, +bill +quarter +« +but +pay +a +or +to +thought +offered +MacLeod, +A. +system +presented +their +Memorial +hour +trained +and +change +aoald +toubsolute +misrepresentation +Culdesac, +of +It +school, +claiming +Ogeechee +dersigned; +ladies +stakes +When +county +sale. +con- +Mrs. +create +Kline, +in +scn- +or +bars +to +per +it +on +Haute. +this +It +in +you +Old +my +give +With +disgust- +etc.. +the +farm, +attend +die +a +are +Univert^ +but +elopments +|>edonc +a +the +the +them- +Agent +easily +the +are +one +quite +Bervetl +visitor +supported +noticed +six +bond*, +a +seem +where +and +meeting +nounced +us +of +in +enduring +most +and +upon +every +done +will +cent +gives +trouized +sit +and +pl-rimvnts +by +Supreme +a +words +well +to +the +under +Diary +curiosity. +rifle +part +drove +Paris. +on +the +they +drnin, +Scalp—Hair +not +auppoaed +and +that +erjuitablc +that +District +the +and +Chesterfled-Thursday, +larvae +through +the +good +befote +Joe, +the +be +Mr. +venture +read +forth +inder +she +swept +halt +by +does +country +pany +a +from +dollars, +such +the +fjard +disaster +clerk +the +No. +scientific +and +cceauion, +steamer +fur +character, +and +an +$20,370,000, +clubbing +is +whoso +to +north. +month +is +Instrumental +men +of +deeply +was +oases, +on +nn +of +ambitions +take +and +wbich +long +thought +William +volume +and +said +goods, +investigation +will +have +laws +But +snnounces. +In +thus +derick, +hundred +our +advanced +of +PIANO—For +by +splendid +01 +when +bo +to +telling +most +said +as +earth +lo +the +Church +it +125.00 +In +and +good +to +quartz +Let +wifo-beating, +and +a +Intimi +in +ho +and +massacre +of +strap +%'al- +on +not. +a +year, +twenty +described +all +I'inehot +of +believing +ferocity. +a +tocal +fam +June, +supposed +ment +better +proposal +duty +here, +Porto +influence +Lo +entered +progress +and +Cor. +The +of +I +Inspection +purpose +it +M +as +study +he +prior +ish, +him +together +foundered +matters +the +the +guests, +represent +We +stock +win +intermeddling, +souls. +- +county +compnny +hats. +and +been +nearly +y«ai> +himself +what +Akers, +Section +behind +If +spection +all +said +difficulty. +labor +it +Idaho +mealing*. +time +alate +curbstones, +for +Is +of +9.00p. +each +largely +he +was +uncloy- +Stato, +thall +inno- +visited +I +in- +the +coll +sn) +man +Arrivals +t +that +vince +he +of +might +The +soon +collar +legislation, +immense +to +Mafll, +license +warrant +in +con- +people +his +liberty +made +going +said +be +the +the +is +producer +neoeerary +Davis +war +pcoplo +melancholy +interest +force +II:WEMoyer.B; +were +security +fire +nations +Alter +husband! +Bench +my +should +lievca +to +with +to +hate +to +to +sink +various +nursery +down +sale, +property, +the +at +Yapp, +p«0{ile +Mias +Benjamin +the +I +a +a +window +desert +the +at +seq; +is +in +Small. +reception. +State +half +coast +elegancies. +system +are +was +Britain +practically, +the +CJus +original +if +have +remained +human +pleasure +and +give; +out, +293. +hsvlng +driver, +Dr. +Latterly +election; +music +of +chance +0-10 +of +to +theretofore +place, +doing +action +a +had +Hill +supplies +$2,500. +there +imbued +brought +the +may +trade +restrict +labors +mater +Gordon's +presidency. +vote +lodo; +to +lobe +is +the +and +kept +hour +set +on +a +of +$15,000. +of +plucking. +his +opened +damage +debility +prompt +had +Appeals +Tr. +tive +majority +ottlcer +and +must +ISut +clung +God +into +among +een, +the +large +the +confound +a +railroad-, +this +of +student +same +direction +busy +lance +rado +that +is +the +he +to +the +plenty +itreat +the +that +progress +a +effect, +fectly +minutes +feet, +are +must +beagle +be +mer- +all +1 +dollars +htm +"A +a +should +industry. +44, +cooking +and +nut +some +the +let +be +promoting +an +face +wife +Thursday +7,000 +intimated +first +was +tection +in +the +horse +together +nhaft, +and +find +of +grounds +were +federals +badges +was +bookkeepers +their +with +but +Cliarlestowi +mitting +I +deter- +ledges +increase +and +five +surface +Inches +4 +rows +going +places +plated, +had +Miss +aud +Everybody's +until +not +national +game. +pall +ter +eyes +of +an +consumptire +of +of +and +remarks +situa- +National +to +believing, +must +blow +life +Fe +in +sublimity +of +the +c +it +Elmore +and +ol +as +all +to +all +only +and +in +and +friends. +hard +offeted +i +ing +question, +the +public +Leche, +silenced. +Mr. +whi. +farm +a +view +alleges +don’t +importance +good +Anasmia +lessons +think +office +was +with +led +giiardlanahip +the +Al. +country +authorities +as +the +governmental +said +probability +shall +of +one +to +all +not +more +of +highest +retired +an +son +of +In +Herbert +completely +parents. +from +sum +ate, +somewhat +been +considered. +haunts +loyal, +employing +people, +of +Mr +to +duct +Let +holster, +youug +Messrs. +the +I +of +of +have +J. +100 +so +Natal. +whos +other +all +of +the +internal +south +Kimberly. +were +an +day. +of +in +concession +poisons +part, +of +and +said +reston +overflow +faith- +which +nnd +1 +among +Range +the +energy +to +hand +the +Inside +miseries +Park. +likes +; +was +no +we +Talbot +choosing +advan- +known +team +and +the +gu +Czar +ers +ed +do +showing +the +front. +Chinese +by +to +Mlze +of +of +were +one +thick +flour +the +states +line +wo +music +his +two +that +(tbe +each +of +of +the +Had +again«t +its +was +portion +in +that +Bank +be +Ruth +unitn +more +child +that +and +Court +prayer +large +that +All +been +laws +push +to +and +near +a +this +section +whole +of +of +his +being +the +that +paper, +for +to +lound +these +endeavoring +est +16th +City +would +over +line +tmoojA*, +and +days +been +of +upon +aud +news +that +plantations +and +reception +C +jaws +her +and +It +to +thinks +a +and +Tho +anoth- +respected, +Mr. +Luck +in +give +the +Out +run +their +the +old +tion +civil +quartern' +sole +pands +salary +daily +varjo +val- +as +w +save +running +rises +flower +talk, +A +the +that +Miss +an- +reach +la +burdens, +termination +uncommon, +cipal +at +or +not +bold· +and +old +t«» +limited +again +that +. +Gov. +riding +gained +were +in +the +ianproveasest +ng +power +Jones, +is +out +Zl- +or +before +45 +ing +of +He +of +they +members +roulh +recovered +the +like +for +people +said +a +in +imparting +present +be +path +the +in +that +said +ties +of +sonal +remedy +between +d*· +city +to +a +engine +thereon +of +.they +misunder­ +cruelty. +places +to +gentleman +Diego +talent, +him +dregs, +seeuis +All +being +of +and +State +in +celebrated +court +contribute +stand, +contrary +hand, +ports, +tbe +for +moment +short +violently +there +Wise +hwso, +authorities, +amneaty +forth +meanwhile +very +bad +line +2. +Peebles +years. +servative +tion +obligation, +many +proposc3 +suf¬ +feet, +cur +we +men +Oovernor. +that +state. +of +The +been +»5 +anxiously" +all +look +or +given +believe +Bowen +early +h.* +by +I +in +tions, +get +to +impossible +with +or +for +peep +the +_*6 +bales +of +party +received +Iter +from +has +remind +accordance +10 +plaintiff +to +north, +them, +* +partition +Figs—and +of +so +fruit +Avhom +of +tho +and +It +liual +to +pills +impany. +fensive +GERRITS. +an, +gigle +Chris +called +ward +photo- +legs, +and +yet +ready. +we +belonged +archaeoptervx, +unnecessary +H^aitist' +thou +found +lowed +hall, +would +the +the +but +We +"great +The +the +limited +fof +James +"Park +practiced +Kimmerllng. +I +Point +contml +come +up +office +well +men +n +or +condemnation. +pint +story +Davidson's +the +was +has +Hank +you +the +Hose +described +by +like +of +of +and +ol +attempt +stant +man +Yet +the +of +available +and +March +of +broken," +ue +of +States +without +saints +short +at +sought +had +in +otly +would +wool +been +; +If +3%c; +be +Tunker +volume +I +but +A +mine. +that +always +all +Delancy +canning +without +by +Braxton, +same +east +including +ages. +n*.iont +so +these +Gazette, +its +since +a +it +bothr +was +them +for +by +town +Circuit. +low +18,000 +answer +command +qualify +the +additiou +deed +up +these +ascer- +n +C. +cause +course +dirt +that +earn- +fair +better +was +Tail's +these +therein +arked +cliiRbed +on +duty +Bramwell. +bounds, +and +WIDE +his +and +length +one +one +sees +and +administration +Jamaica, +and +you +probably +more +cruel +the +perfect +assertion +or +style, +the +Fluid, +with +use +notice +of +something +mar +but +put +is +of +that +Henry +taxpayers +at +company +of +tnagulliceut +for +defended +cousequeuce +which +If, +It +order. +working +peace +operate +in +midst +appointed +was, +Jatter +that +on +dis­ +for +Ins, +over +drawing +Henrietta, +a +mu­ +for +for +the +to +and +,1 +good +sub- +to +Iedlgeetiaa, +it, +at +hill +of +Against +the +dent; +your +1800, +had +week +land. +facilities. +plateau +re- +time +23; +till +other +seldom +possible. +farmer +think +Tlioso +stagnation +the +group +mus +of; +lined +or +the +well +a +city, +College, +favor +should +capacity +Wheat +addition +renting +tagne +to +Japanese +is +another +incased +has +n +ing, +them +suc- +and +fiagaa +tlicy +dry +to +Conemaugh, +Hepwortb +to +larger, +destruction +rea- +modern +who +deal. +between +lows: +relief +utterly +day +and +aro +liorder +, +el|K'oditures +D. +by +ing +tbe +a +Had +a +dissolved, +Registration +attitude +they +was +and +that's +is +As +ue\v +to +wisdom.getting +turb +the +nigger +In +that +his +hut +their +interest +linn +from +course +biimltoo +whole +injection +price +out +the +Turner +rotten +;offcrs +volunteer +atofodOWB +if +precisely +to +too, +indeed +standard, +In +robbed +harbor +ami +boxes +ms., +11 +the +own +246 +front +their +them +side +IV* +Both +every +which +the +liberty +has +watc +returning +on +type. +of +found, +divided. +storming +man- +states +good +seem +him +turquoises +lers +while +used +tho +his +do +United +advertised +extracts +der +pole +We +Boat +ages +value +on +that +oillXons +is +tne +Kancho +today +to +did +on +a +to +everything +have +of +by +touch +thgn +Yard +be +the +ments +says +pardoning +111. +Ins +conditions +children +charged +service, +very +the +Burns, +the +O. +speak. +the +nil +the +Now, +story +The +certain +present +and +the +from +lakes +5 +true +was +of +beef +which +as +of +sublimest +bottle +ill +of +ident +a +as +mt1 +fun, +must +that, +cares +welcomed +from +for +lesson. +the +to +sorvico +we +war +have +tion +damage +and +first +Bird +and +anxious +irought +Searls +wa* +to +the +Senator +County, +arrived +the +C, +to +farm +oat +to +protection +flag +In +with +all +judge +upon +Faimcrt +rosy +with +ever +this +the +are +as +than +a +The +to +abuse +a +Is +stated +conveyed +the +making +describe +offer +out +awhile +7:45; +character +things +of +Last +stop +his +entrance +equal +a +a +the +land +Bucklin +Assembly, +way. +of +be +mortgage. +little +been +money +visors +dy +nections +him +two +the +which +conve- +schools +sub- +Mr. +north +of +so +good +by +have +gratitude +for +teach +can +will +of +advise +reg- +and +them +motives, +1 +a +open. +so +be +There +the +title +tara +but +tho +box +true +something +i +making +not +ears, +arc +location +among +remain +ii +defendants +by +him +waiter, +for +ing +and +storation +es +our +If +are +. +orders +that +little +For +inseparably +ratifying +tublets +no +Port- +at +the +the +two +Board +the +from +Mr +be +original +Adequate +tion +during +linn +anything +Ind., +it +clover +li +that +in +ary20th,from10amto2pm +or +.Julius +tians, +Cgsw +(N) +luirty-oue +, +four +reflected +all +one +been +much +if +He +able +that +following +make +ntter +hours, +filling +have +agriculture. +was +foreign +according +he +the +with*the +forwarded +the +111 +an +supreme +ln +oi +derstood +in +His +Too +of +of +1891, +the +with +Three +met +pledged +wore, +a14 +below, +of +the +A +in +and +10 +I'ubitc +to +heartily +he +which +social +. +so +Lafourche +slave +went +knocked +been +framed. +o'clock +worth +that +O'Brien +of +lot +p +manufac- +is +undaunted +the +member +in +officers +being +un- +uuie +ha +failure +we +northwest +go +pops, +taxes +will +Flanders, +apparently +boy. +needed; +dsnomlnatlonal +effected +had +turned +ore, +with +to +Line +hill +in +organization, +General +I +cent +operation +any +it +was +xvitli +N. +raised +last +sumptives +same +quality, +t +minntes, +of +steady; +gear. +Represen- +exempt +Should +The +chains, +have +acquired +the +takcn +fail. +acre. +though, +Va.. +them +care +in +idea +freely +In +is +window, +continue +a +used +measures +ro +the +respect +moral +tried +had +authority, +ut +Louisiana, +moving +they +great +sume +will +and +and +length +hereditary +a +Mis¬ +of +ys +the +drills +f +no-ack +of +N +lot +conquered, +withstanding +in +rec +but +the +not +"If +robbing, +the +about +was +to +store +in +one +lands +Committee +and +But +as- +m/i.Hinii' +virtues,.you +face +I +to +a +time +our +this +to +they +them. +home +except +the +in +constant +of +Mrs.—J.Q.Adams. +pines +tile +left +113.7 +is +na. +for +. +payim +for +of +It +aad +You +uni- +Mr. +would +flowers, +stroked +or +unwell. +in +This +not +composed +; +at +and +of +R. +a +of +to +said +th +and +electrical +5, +defraM +be +short +unknown +to +and +external +the +easier. +as +which +That +learned +is +in +trade +thousand +or +as +with +cold +quality. +hastily +Drop +capital +number +Annapolis, +car, +pedition +tion +a +ter. +Mr. +doaen +nate +paid- +II., +Sprinkling +general +hour +in +in +astonish- +richly +candidate +American +to +the +manner +property +foul +such +the +a +outer +relief. +letter +new +is +calumnies, +is +appears +goods +pronounced +would +Bigler. +as +not +thirty +is +Sampson, +liu +in +pi +troasuro +2ii +is +dome +se- +for +Deed +have +Norway +egister +ac- +fine +for +1st +finial +are +interest +Mound +bad +country +many +and +then +LAS +or +excuse +with +aay. +will +the +stanchions +the +at +to +Virginia +Mexico, +hands +nois +is +of +of +and +Quaker +divided, +nd +ever +Hou- +like +would +very +Catnabk +commenced +the +harm +bald, +t +to +floor +roar +charges +the +in +regret +a +to +cha +submitted. +for +cluding +few +Christmas, +came +discredit +trusl, +the +forenoon, +gwith +C, +to +reasonably +T.- +moment +an +skirt; +calling +have +that +his +Its +min +d—d +Knights, +nia, +especially +that +road. +take +usually +Freeport.TT +that +hobbling +of +Deputy +course, +half +variety +the +several +human +T35 +mercy. +and +inheritance +constant +all +reinforce +censed +remitted +lotos +the +seal +lowest +men. +offi- +in +enable +cash +of +that +la +cheerful +as +pieces +manifestly, +in +representatives +followed +if +such +soon +stock +which +for +A +ters +aibiblti-d +the +District +not +so +(Zltkalai +t" +It +will +Nutt +latter +stone. +door +welling. +called +thereat. +lowers +Sedan +tion +be +haste, +of +60 +u +cents +son +genders +of +wi +of +a +Mrs. +vanity. +that +save +Afty +John +defendants +whose +ibe +to +yield +Roberts +father +whole +7869 +waits +tbe +hasb +Ross, +reported, +city. +unfortunate +plant +hotel, +Mr. +the +see. +are +of +ting +.; +solidly +Shiegler, +like +out, +through +luter- +but +nine +the +were +until +bridges +oen- +hive. +line +silver +were +the +The +75; +tunnel +is +it +until +were +If +few +slaves +Nov., +made +already +had +fine +quality +erally +Berry +of +Pacific. +Shortwcll, +and +cation +and +his +sleepy +until +the, +so, +There +of +and +people +including +Treasurer, +brought +gaze +north +the +was +particularly +in +which +those +the +1171 +will +It +over +the +hours, +text +Mr +of +per +and +his +Store +assigned +be +and +his +an +Il< +Harris +Ah! +bo +hue +even +murderous +Am­ +Martinez +tered +and +it +had +and +for +hers +public +Xok +secure +or +only +the +un¬ +them +or +thirty-live, +is, +Daguerreotype* +field +and +10 +"down" +frequent- +quiries +Mrs. +Betting +inflamed +Fort +to +home +or +supporters +in +the +with +smother +stock +And, +er +for, +both. +the +the +quotation +the +employed +tbe +Miller +is +tho +total +wagon +expend +look +the +Williamspart +weights +Mr. +friend +to +for +in +now +affection, +county, +dog. +executions, +leagues. +all +of +water +and +brimstone +put +the +there +We +sale. +which, +and +Sunday +of +payraeat +permits +decree, +should +Buffalo, +was +leave +enough +rapidly +bring +escept +entered +that +be +I +enforcement +so +All +the +They +expected, +unfair +and +helm, +in +the +boldera +. +of +their +A +Mr. +shall +on +scribed +landed +prompted +first +street +civilized +crossed +the +time +to +"KTom +not +Hampshire +be +comfort +uot +related +time, +was +lives, +of +a +December, +thonsanu +of +slavery +tallow +and +and +its +for +is +dependency +out +it +land +of +daughter. +not +Congressional +at +and +system, +cells +Paper +or +it.and +assure +corn- +big +to +s +answering; +confinement +the +manure +.* +season +hl +They +imprisonment +of +efficient +broadest +successful, +wea +rich +physical +refusal +while +happy: +in +Stopes +since +prospect +lives +on +to +murderer +soil +and +to +watched. +I'i.Bilurl +ry +"In +Haym +them +Roods, +a +"Outcast +important +reward +n +average +would +trial, +beax, +the +tract, +he +force +in +from +where +ditto +the +Hmltn +from +without +foot +The +was +beloved +a +or +heard +and +sales +children +lnghl +the +with +appreciation +a +O'Brien, +aud +the +brass +expose +a +in +whom +the +invaluaote +fence +a +regret +ests +the +elocjuent +just +woman +heard +those +manner. +square +wheat +Provided +to +chored +tbe +on +by +the +sion +buy +the +failing +and +tne +th +to +Sherman +instruments +would +known +family, +almost +said +his +his +orchestra +not +taking +they +rgan +autw +long, +ple, +timo +active +different, +. +1lu- +The +attempt +that +broken. +who +the +comment +digging. +rooms +W +drug, +larger +notes +and +an +planting +bv +Spend +For +God, +Kaiser +than +and +him +main +triot +seventeen +another +F.owes. +to +even +the +the +ho +of +with +effu¬ +threatened +buy +farmers +at +question +Alexander's +then.therefore +S. +I +the +competition +of +have +stone +did +style, +Second +cake +all +of +some +euriosity +house +of +if +to +said +distribute +in +at +of +back +to +with +the +Sets, +Saturday +just +Some +operating +Bottling +ed. +then +students +cut +ntitlily +twenty +Indeed, +up +North +family +These +of +to +with +at +discusses +visitors, +more +Carolina +affairs +along +I +clever +from +upon +claimed +scene +Itifl +of +Par- +the +make +the +no +and +"I +the +of +Fuller. +side. +just +inert +tho +official +from +the +Any +degrees +inches +the +for +that +office +oncQ,tbo +hundred +dinner +one +St. +the +death +to +to +the +reeruit +Mr +years +kind +well +the +of +paper +the +and +which +Kootenai +28,500.000 +West +of +upon +of +something +of +were +to +raws +calmly +was +the +The +thirty +severely +association +lo +of +of +vested +her +for +between +of +in +returns, +in +have +own +Olia +have +With +a +18 +beat +been +the +the +twelve +and +another +of +his +went +credit +for +o +afternoon +one +after +taste, +c +child +claim +November +of +who +We +said +said +hhds +fot +thcu +mayor +if +only +has +percent +one +fort. +in +a +Re¬ +was +coi +sefeuis +amount +myself +This +ly +then +girl. +principal +down +ls*en +aim +buried +book +firs- +miserable +yet +very +which +streaked +that, +simplest +in +stolen +oius. +man +the +impossible. +darkness. +reasonably +aggravated +will +pended +and +increasing +of +been +the +1S78, +North +your +of +had +surveys +wild +senate. +tuft +and +Pep- +excuse, +fashionable +who +. +,the +peasant +stock +aud +aliways +- +indeed +United +The +hie +directly +Kid +many, +BfA +Savannah, +They +twins, +ex- +Holsteln, +in +and +a +ha* +stoppage +Of +No. +been +when +for +to +then +tforward, +and +to +quick +TilK +out +aro +upon +an +magnificent +of +him, +seoond +to +eliminated +opinions +an- +after +as +operation-so +being +all +had +thence +seventy +preached +were +sufflclent +his +for +in +the +it +weapons +with +recent +and +he +will +power +steam +The +houses. +state +such +may +who +ot +is +v. +growing +ment, +Iowa, +provisional +censes. +with +gress +and +Fort +there +Paclflc, +many +could +to +attention +boundary +and +to +safety +it +them +to +piireuients +Now +wife's +t +way +the +roof +; +croaaing +and +me +over +Conlon, +moral: +Or¬ +Huntington +the +their +three +be +r +generally +of +moment +and +known +can +ers +a +Grant +exhibit +Tildea +Defendants. +vigorous +press, +theirs. +in +lor +receive +a +report +that +thnt +in +home, +are +the +assessed +that +mon +Evidently +"that +school +in +in +stand +It +the +thiat +less +extent, +stance +side, +is +fee, +couple +any +the +counties +the +law +Ü0; +heifer +places +lize +and +proof +as +records +that +prudence, +of +physical +Mr. +definite +the +cents +until +then +W.. +said +and +1 +filial +Ohio +acceptable +such +make +proving +Hiram +cordingly +Warner +time +14 +been +spite +be +the +a +this +ery +changing +read +of +in +and +State +are +of +artist +of. +to +So +amount +that +on +all +the +by +return +I +forward +on +a +act +but +Os- +the +into +was, +it +broke; +can +no +monte, +ago +thoee +totally +be +of +his +opening +man +national! +the +turns +pound +was +a +porch +what +school +fifty +M. +it +a +In +in +in +the +.i +N: +even +of +to +that +l< +was +the +do +cast +anticipated, +and +other +accepted +per +discovering +and +for +Berlan +yowple. +new +and +in +I +we +special +come. +or +In +decided +; +found +Miss +which, +God +with +fast +that +juatly +the +of +most +01' +but +of +anil +cog +tone +the +unreasonable +valley +bridge +shall +see +such +negotiations +coir +ganisation +Mohke +been +lofty +explained. +had +lift +was +conducted +forty +known +removed, +anguish +eating, +years +they +Association +remains +mud +not +s. +great +earth +Herrarte; +is +last +that +the +of +postoffice +other +Every +children. +employed: +race +buying +ready +rejected +county +stantly +ver- +by +cousin, +should +country +4 +lift +and +tho +houses +whetting +"at +coane +I +trtatnunt, +only +should +energetic, +along +either +In +said +they +one +Of +L +tariff +men +was +beginning +President +book-keeping, +done +action +lo +there +representing +out +Is +ledge, +Knoxville, +the +oaa, +scoured +and +to +a +gentle +would +of +cotton +Flicking +crim'-1 +permitted +They +Magce, +training +Contre, +re-entered +shall +a +and +to +is +is +the +full +that +any +which +whisperers +We +a +use, +to +little +for +is +frankly +as +presented +n:iflions +overstocked +land, +The +true +it +District +greatest +as +of +that +taken +Chrlat. +death. +not +week +back +been +a +the +would +be, +bad +to +an +a +D +were +floor. +Fifteen +you +ns +the +it +cleanliness. +every +whose +La +ten +four +coyotes +The +his +and +character +fell +took +he +Army +in +Point. +in +been +a +Your +from +are +the +I +of +from +more +478 +a +value +this +there +and +iwonla +yon +removing, +you +among +it +neclare +serve. +prior +In +of +more +commenced +fact, +In +two +at +had +K"mtlful +the +this +at +Grande, +with +be +tbe +from +quired, +or +of +of +for +fitted +af +aiTobe. +ninety-eight +decay, +bedding. +or +President +six +August +with +other*, +our +»uch +easterly +order +specialist +which +last +nttarh +While +other. +an +tho +is +negrc +charm +parties +1085, +ho +how +distinction +his +been +net +inestimable +on +as +2(> +majority +never +eyes, +Halleck +up +union +having +the +the +which +of +Maryland, +balloon +bad +Lady +opening +in +in +policy +Many +of +once +was +the +intend +the +was +negro +The +tha +owners, +efficacious +was +lative +discoveries +was +is +de +wire +amoug +most +and +the +thus +in +few +eter, +the +wiUi +1843. +presence +suffering +appear +change +by +he +believe, +sold +unquestioned +tals +inn +havo +aver +met +J +my +again +to +but +of +because +It +New +glue; +the +come +tain +and +of +fori +problem. +ot +train- +sustaining +dutie* +to +tliort +parallel +Agate +second +der +lye +e'tch +and +not +for +a +settled +such +the +or +has +necessary. +country +tho +upon +and +a +more +hands +sunk +joy +turning +packed +July +five +up +W. +who +able +of +me +Valaparaiso. +was +times +ago +for +to +be +International +Said +you +quantities +of +la. +Democratic +thus +leave +soreness +times +provided +to +to +and +any +is +dry +The +the +whereas, +house +tbe +toward +^ +itself. +the +? +acter +Hooker +coat +etrated +on +despatch +these +the +notwithstanding +Lindsay, +time. +council +be +and +to +through +scratches +tion +which +on +lb +wisdom. +and +ing +a +elected +and +even +an +for +Congress, +over +the +I +shown +and +delimitation +and +tho +C. +information +Five +ances +the +than +was +well +signal +and +Squill +pass +color. +assent. +In- +live +and +tbe +the +constitution. +Gray, +February +England, +Roza, +according +1460 +insurance +results +Dyckman +law +action +and +deg. +vacated +a +atatea +help +them +if +on. +the +at +establishment +1790. +the +Allures, +for +north +to +individual, +other +themselves. +victor +the +the +Ut +10 +able +to +trie- +thinking +registra- +correction. +Samuel +yesterday, +\l +it +ly +the +most +and +1 +more +as +men +J +resources +for +within +the +called +If +for +is +asks +the +the +Is +pick +Inde- +tc.e +ure +and +was +crucified, +are +Hi; +the +12-Inch +struments +is +she +silenced +is, +1 +not +some +thepitinsuchawayastoform +ho +a +Brown +make +not. +of +Kllzabcth; +i +the +and +stir +Eleanor +yourself +with +time +hesitated +Mr. +District +' +•Dysart, +dersigned; +ithat +gain +reach +democratic +t +day +degrees +from +same +Pancakes.— +bbl +tember. +for +favorite +Brescello, +their +no +side, +fantry +and +im +communicates +sive +less +receive +regulation +Inches +up +va'.ts +doors +Street +Roger +fame +erally, +county +Mexico +farmers +Britain +The +of +committee +assets +and +got +elderly +Odd +bygito.o +No +women +ders +Geneasce +hundred +calls +Effna +must +sarthelot +where +compari¬ +serving +causedgni +con- +from +de +in +servi. +were +before +it +The +lottesville; +is +Trustee. +Joins +minute. +gold +On +L +corner +persons +thii +from +the +and +and +Burcn. +December, +eye: +The +away +The +is +January +made +of +but +small +he +grew +but +beautiful +new +heart. +wjthout +may +bis +with +his +each +made +township +upon +altogether +such +governor +wit- +persons +lion, +burdens +renders +her +of +father +begun, +P +light +sufficient +of +days +in +drilling +sea +seek +reply +mar- +that +of +on +returning +befas +a +the +Ctuimen +portable +article«. +would +some +J. +gold +Philadelphia, +is +Ten +us +to +homos +tre, +some +affairs +or +to +and +lejrt-7o6nn*y.i +settlement +for +us +watched +Mr. +of +Democratic +and +and +more +ot +state +to« +note +there +tried +lots +must +the +and +irom +John +a +ized +his +of +us +which +the +11 +labor; +battle +has +statement +gun +onlybasis +gowns +not +the +as +suliito, +an +congress +perfect +(62), +whose +body +moved +the +nsy +of +eai +clay +order. +um +twenty +cided +places +remains. +into +eat +other +City +lief +Warden +strychnine +had +may +of +not +Josiah +dragging +has +water +west +sylvania +has +act. +taking +to +corn, +Colima +more +and +and +to +machine +the +cities, +extend +numerous +fit +the +They +baked +the +the +of +fare +^ntf +the +the +hal' +However, +In +of +bridges, +L +and +the +came +mar- +representatives +which +'»'.(V-l +to +thus +'em +of +state +its +this +upon +evidently +aatlftties +thence +ble +be +2,219. +of +said +understand—is +the +other +than +million +interests. +men, +the +been +campaign +the +profession +Has +useless +other +then, +hearing +and +then +on +use +thence +formance +He +joy, +Its +when +and +daughter +must +the +proved. +in +stimulant +In +tution, +winter'.') +mastery +water +respondent +The +ordered +was +him +when +called +allegiance +the +are +by +were +A +could +sanguin¬ +varieties +made +workmen +mortgage +ment." +to +defendei +worse +hundred +of +Belknap +in +tariff +Thomas +the +consider +street +said +is +tbe +to +from +October, +the +devil +and +Clair +elected +temper +by +in +hnll +and +favorable +like +as +does +or +and +uatioqf +tisements. +helped +said +Stand*. +bide*. +in +Congreaa, +ill-will +in +the +a +to +of +the +to +brought +public +binding +never +house, +J +Louis +and +tlic +oats, +their +1 +manuscript +little +towns +and +we +anxious +measures +Goulds, +and +he +that +day. +Murphy, +for +' +nway +in +he +ment's +is +z> +foundation +A +skin +originated, +danger +of +here +their +Grachhus, +or +and +or +ground. +the +the +destroy +sale +resigned, +said +Council +is +grounds, +of +theii +quiet +loses +If +"There's +derd'book +portion, +hereof, +fraud +ITI.LS. +the +season +fowls, +degree. +passed +States +to +rntraUAJ, +permit +lived +degrees +w +first +,By +to +right +from +£^gln, +sage, +his +nially, +"load' +follows: +like +of +bears +ters. +here! +and +sfould +In +veniently +her +thousands +or +land +be +horizontal +an +rou +feet +vessels. +fect +was +a +Hews +In +had +who +Dftwller, +sleigh +i +sld +that +deci­ +and +by +I +or +on +already +all +these; +a +and +or +30O +22nd +commissioners +if +led +ada +expected +ed +bien +drowsiness, +will +vesaols, +shall +for +aao +transaction +aforesaid +3:7, +sch +the +and +DOUBT. +rule!" +worth +on +pipes, +gowned +water +whisky +matters +abandon +Ihe +secretary +as +"Pan +expense +their +number +cf +be +displayed +of +friends +it +Mrs. +ques- +fifty +to +to +eight +in +as +the +the +world? +is, +whereas, +100 +tically +pleted, +feel +yet +too, +relief. +east, +pretended +this +a +Horace +in +straying, +arrange +an +also +even +leniando +sent +delegates +Then +is +SoIIm +In +that +eastern +large +unnaturally +horses, +to +pole; +by +were +the +at +ly +quorum: +ant +Portage +mem¬ +the +the +rebels +tiahing, +a +a +is +a +silk +friend, +an +du­ +B:30 +are +or +country. +to +shadowed +face +of +in +Maids +gerent +and +betrayed +>t +about +a +to +that +discussion +for, +fice. +p. +tuned +to +it +maintain, +even +means, +the +On +not +ape. +thousand +clear +the +and +instance +him +of +or +amination +As +Petersburg. +the +to +Czar +were +over +and +F.very +they +legal +all +where +as +lodge +and +was +the +recently +the +they +not +line. +No. +from +Republcan +educated +my +to +becomo +of +way +of +bush; +you +without +the +inventory +it +of +the +unhindered +tax. +L +to +him +my +turned +December +during +you +tried +realize +and +fleet +for +ntgroe?. +at +but +th» +form. +and +at +was +al +known +the +estimated +have +tingent +pardon +lead­ +would +State: +the +effort +hands +on +for +will +away +of +will, +address +their +Drexel, +to +no +stopped +Sept. +tho +jel +lniierll +Thiers +however, +days +kept +Dewey. +the +a +However +Christian +20, +faculty +Frien.i," +a +77,400 +Single +ted +was +to +knowledge +vestige +which +day +committed +being +present +point +may +make +trips +and +tUo +the +what +working +responded +arouse +to +week +time +has +Morrla +was +toouid, +would +appears +business, +of +r, +last +man +am +Strattoa +rather +was +City +that +1UI> +somehow +that +hearing +heartfelt +sure +the +in +Second +at +Old +Adel, +mixture, +for +on +on +in +In +might +lie +Is +ol +day, +the +to +had +come +mon +upon +voluntarily +lish +and +took +after +such +always +Congress +is +After +Blaf +tuberculosis +nuiiiites +Early +have +avoid +entryman's +part. +such +lars +paid +rest +stop +187K +to +that +and +every +of +its +trunk' +such +sentation +win +and +point +,000; +butler-uncle, +resun +the +disease +the +as +South +securing +the +the +substantially +for +lor +over +Atlantic +the +Tuenday +memory +posed +and +between +lnterurban +6.43, +3d +int +any +many +aa +had +lowness +fifth +office +was +on +convinced +auah +and +sur- +is +made +white +freely, +office +saddled +Italy, +nature +u +the +was +which +Eternal +of +tho +In +8 +their +season's +racter. +resort, +moretalk +shares +your +Is +bordered +ments +thing +and +a +that +write +iu +Circle +to +he +ure +ditions +unpaid +the +the +their +liea.sts +corner +ambric +tor +330. +These +to +inches, +United +be +lot +set +will +in +of +in +Institute, +prefer +declared +have +received +now +flirting +contontod; +see +the +Speak- +in +float +Fred +by +chancery, +Dallas, +mortgage +trian +speak. +sigh +u +In +and +Indian. +on +and +financial +to +the +an +that +breeze +tion. +declined; +an +and +hot +Patrick +But +and +not +interpreter +and +American +Isabella +undersigned +i-B +at +can +cannot +or +a +rapidity. +taken +remembrance +and +the +in +and +depended +9170 +theaters +to +Hestern +way +the +of +a +aubscrip- +with +started +consultation +proper +an +to +within +"I +the +labors +long +its +the +Counties +current +right, +to +have +more +handsomely +affirmative +and +diminished +all +tha +and +but +"night +over +their +curse +place +to +to +most +"and +poorly +Ikport +status +issued +first +they +if +at +search +excellence +juices +In +of +shall +when +nation +; +to +and +insists +evenings +inextinguish- +and +hands +try." +and +ministration. +Chattertou'a +command +occu- +charged +wonderfully +the +the +down. +show +a +with +could +to +In +of +he +nai +Master +planted +sent +train +while +to +were +on +for +delight- +free +vanished +that +structive +of +excellent +the +held +A. +and +the +the +were +the +in +one +The +body, +Tho +with +to +vessel, +Chinch +known, +found +to +This +explained +s +of +and +a +resembling +of +to +college +credit. +he +obligations +Swin- +Thero +by +provision +Mode +kings +went +1. +cough +persistent +$So,C00,000 +Service +good +ere +where +was +he +ground +for +ing +sold +electric +opportunity +i +Mincio, +are +the +made +Chruch. +society +and +that +gravel-beds +R. +gradually +up +both +eoiifnaloa. +is +a +iteclus +Por +the +the +given +U +forth- +I +on +operation, +of +between +why +has +you +is +near +may +In +gold +Casselton, +ex- +well +rod, +On +outside +models, +section +if +in +taken +all +lately +^ +lie +Stod- +stree +month +spring +a +Masonic +tower +order +for +a +an +the +for +Jay +wants +from +court +and +and +o +now, +only +payable +stock, +more +you +the +by +the +conclusion +vengenco. +called +of +by +have +ia +the +by +some +stables +only +ing +is +A +handled +to +from +Parker +of +to +success +were +as +lanlcd +stay +will +bowlder +It +mere +ty +sent +buy +year +dur- +a +12 +the +in +thus +Williston, +by. +the +brought +than +America +Is +Ihe +want +would +with +spend +south- +more +Hamilton, +inclination +Prince +tho +104,180 +Ga, +J. +xvaiting +their +fled. +percentages +. +the +read +family +to +such +vious +due +be +will +transactions +and +for +ικΐ'οιΊ, +him +surface +1314. +Fort +the +can +in +gratulated +double +of +at +another +nrcfurable +said +no +moderate +car- +my +day +church +Vork, +In +in +yield +Iowa; +I +and +out +had +voluntarily +way +will +milk +thinking +the +identical +The +sleeve +They, +sur- +shall +case +If +that. +talk +i-let +ord +or +man. +two +avowed, +accord +consideration +rccedo +In +heartily +by +the +had +result +11f +the +honor, +ment +load +advice +Iloge +and +there +the +BUSK +when +for +of +t +tha +ol +owner, +to +conscience. +in +of +1 +found +It +warned +time +of +aald +there. +of +are +are +south +wheat +scene +surrounded +made, +lfadozun +purpose +Coder +suggest +one +ago. +an +to +person, +tribe +Brew« +In +be*t +going +demonstrations +greater +testimony +was +Massacbu +and +exchanged +Wheat +interest, +He +destruc- +will +participate, +of +from +as +be +Island +rogulated +Vv'ntkins +lake +Jramping +object +m +S. +feated +Ousley +after +carried +a +that +to +He +nor +persons +Tirtoslty +exclu- +was +maternal +square +unfortunate +vided, +It +morning +while +refreshing +in +8o +stop +the +if +the +when +this +having +engine, +camouflaged +Ed¬ +to +that +fore +Mann +Tho +to +patriotism. +the +to +Admiral +appearance +reconciliation. +Nora +to +the +the +saying +the +soft +cause +llrltlsh +earnest +when +he +the +of +ta +a +nearly +relinquishment +know +the +or +Printing. +distant, +pointed +from +1, +"What +set- +the +one +Green's +the +Poles +the +to +and +of +the +times +Trust, +final +the +ru +the +tion +ought +Township +as, +being. +way, +school +The +of +Sheldon +of +war +duced +preparing +the +; +thereby. +worth +and +district +pol- +Felice +thill +the +derived +to +“over +Princeton's. +past +two +as +his +do +fulcrum +hand +and +other +of +couvetauc +York +other +who +as +effort +square +big +day +been +ing +em- +fairs +to +thus +er's +w.til +has +board +States +in +8hotwelI, +threatened +they +man, +for +to +majority +the +can +better +F. +this +wben +was, +raise, +if +He +addi- +the +the +the +work +is +the +on +Alvino +tabulations +power +cases +J. +'chances, +been +in +American +industrial +environments. +talent, +than +few +that +ineaiii +wreathed +the +There +one +creek +Accordingly, +I +blazed +a +above +salted +1-2 +time +wish +deeper +the +us +as +32,0uo +against +a +It +Wheeling. +eland +comprehension. +would +nation +military +over +the +oostumes, +in +in +The +Hargraves, +he +museum +four +. +the +oat +for +I +The +of +of +he +of +. +flour. +denn- +also, +been +get +fifths +provided +while +undone; +a +this +an +county +réduction +ca, +May, +the +and +b +claimed +of +providence +organs, +Raynor, +had +which +but +a +Cheerfulness +Mason +vote +the +notes +shall +brate +Hunt, +the +for +of +Germany, +Act +manding +not +of +branch. +clean, +Among +of +body +figure +been +shots +this +place; +undy +31.46 +around +for +but +were +ot +upon +shore. +which +a +may +to +to +be +so +aware +Burreirs +canal, +mobbed +ago +in +tational +in +his +drcd +not +a +and +at +ot +80 +an +flattering +brother +shall +for +its +hibit +hereby +Qovr, +of +on +readily +acres, +square. +have +tor +Jotter, +confined +opening +be +the +past. +the +urge +lbs +ing +tho +rods +P +bear; +sequent +around +devoted +The +of +the +and +links, +the +determined. +o" +A. +lliod +dealers, +ask +aot +of +ulfma +and +be +hia +of +mines. +the +books +off +Portland, +rom +no +vice +precinct. +in +be +to +the +hemisphere, +road +ot +requivadtby +peratis» +to +to-morrow. +River +the +as +great +these +from +Pil's, +and +be +kitebenmid- +a +feet +made +he +much +Reservoir +the +husband, +the +justly +one +or +Sunday +he +constitutional +transpor­ +our +I +An +ancestors +wave +said +vitally +taught +helk +pany. +on +given +to +thence +therefore, +class +and +and +O. +all +of +healthy +tho +portion +of +expctllcnt +the +the +it +ten +per +twenty-one +latter +the +of +neJi) +cause +the +the +I +street +life +suppers +Railway +man, +and +during +great, +the +liaa +P. +Bryan's +and +If +.West +lul +running +small +the +there +we +coal, +pewter: +Barabara +dynast-« +might +three +street; +an +Bishop +has +cent +faces, +enemy +for +umbrellas, +with +is +proaches +miles, +suggested +into +rejoined +with +duty.but +tho +capturo +paid, +instruct +overcapitalization +in +1 +for +aut +in +of +fracture +cell +the +soon +July +who +the +she +one +possibly +uneasiness, +It +to +with +war, +consulting +this +: +tion, +saddle +one +time +In +natural +Your +family, +to +Coal +bad +he +the +borrowed +of +receive +the +(eee +Nothing +in +by +aforesaid, +great +The +the +furnished +be +baukuiptcy +they +bouii.Iing +under +judging +promised +Hit +with +bag +inindci +scal- +ietjp +to +Tbe +deceased +iitiu-H +donation +occurred +Jessie +8 +court +oak, +report +the +come. +precarious +and +root +thumb, +consent +between +The +o'clock +Hettinger +ucccssailly +the +nek +ast. +about +I +off, +the +men +distance +word +to-M-i +of +to +Ills +member +its +tighten +next +an +lou +cast +Mr. +of +received, +looks +Saturday +of +line +ami +clothes.” +pcoplo +enough +charter +such +There +nominal; +Hano- +into +lady's +was +Sunday +the +Franklin +Van +century. +the +lor +the +on +was +far +be +ence +- +others +ordered, +his +10,000 +Not +a +of +the +where +that +8. +fald +Hamilton +the +wibh +Mr. +Congress +a +as +their +to +Managua +hydrau- +Jersey, +Marion, +which +without +their +makes +manu- +wild +at +Sundays +dock +upon +owing +civilized +much +took +committee +of +civilization. +paid +ported'9149 +don't +was +Ins +but +more +party +of +place +cable +away, +freight +number +pedo +i +in +under +the +be +was +tion, +of +herds +with +a +facilitate +sold +get +Harold +to +advance. +farmer +and +day, +thence +astonished +eyes, +at­ +beer +others +the +City +and +I +might +the +Bahari +is +two +nearly +in +may +the +use +addition +It +some +grain +of +contented, +follows, +engendered +of +wind +a +by +to +was +by +the +gondola +I +manage- +next +parties. +the +8 +Peacock +ready +the +completion, +men's +accordance +was +said +of +emi- +Standard +In +esBlon +diligence +positive +of +of +tha +Merchant; +acts +fears +all. +Anita +th.s +lias +tative +cessary +who +macue. +chain, +fundamental +what +worked +he +of +A +con¬ +of +lines +keep +in +that +bor. +(160) +will +outgeneraled, +having +Albert +he +force +of- +un +two +where +civic +Amusement +rule +the +5:12 +of +France +moral +E. +the +ing +241ic; +an +pounds +at +out +this +Wil- +head +Mr. +Wild +Chartea +He +of +Peterson, +iiothi +rangements +of +tural +Individual +coronation +on +and +authority +aggregate +therefore +his +street +the +surprisingly +not +Would +reinforce +control +to +act +high- +Whip +in +measure +hundreds +attempt +on +swore +the +back +on +urucr +is +rale +the +'*'** +by +having +preserving +the +between +of +quartz +offence +It +of +; +this +hesitating +yesterday +consented +by +you +the +a +, +favored +ago, +was +of +foaming +in +of +inter­ +been +solemn +lute +at +water +one +represents +mission +by +tho +to +the +question +he +ses +or +tt +block +oranie +and +and, +children +furnish +bronze, +and +high +in +cents +prayer +of +con­ +and +the +Legislature +accommodations +State, +saline +Mr, +if +others +what +they +clare', +with +has +one +the +Our +with +a +nvcr +be +physicians +the +even +admission +she +lot +the +serve +in +out +twentyeight +Own +had +as +eat +tho +Ibe +interests +wasn’t +year. +be +may +Seator +nice +dL +in +Berlin +December, +while +of +House +wheat, +of +could +this +it +it +table +lindi +thousandth +ditYerent +.liire, +glance, +9 +a +she +that +former +Glebe +any +disabllity +Dyer +crme +there. +10; +world, +Marshall +and +lusion +taken, +their +God +mc +Mr. +[ +red +be +companies +Parable +overflowing +fulfillment +in +. +interested +the +J. +made +existence +other +2nd +hence, +once +precious +and +her +a +and +Farmer +is +in +MiohaslJ., +provisions +es +not +tood +hold +liberals +pt +man +Pulaski, +Mistakes +the +will +In- +at +man +liv- +river's +soldiers +getting' +his +l'laintiif* +the +name· +consists +could +best +he +all +his +Cor. +confidently +ex- +Kentucky. +it. +had +of +not +on +an +feet +ferred +the +same +of +of +and +cated, +delicious +had +riven +profession +stations +on +Instead +that +house +obligations +exports, +he +desert. +loss +a +how +and +made +in +on +nominal; +suit +mire +from +in +held +Myers, +soil +in +from +during +that +moruagesou +rango +leap +it +to +If +harvest +point +Ixlion +cent +lie +Do +lot +the +An +means. +into +must +by +caring +which +trict, +hold +known +strong +ah. +then +SEYMOUR +a +110 +when +'tigged +he +that +tecttre. +was +description, +legs +ner +ances +than +occurcd, +I +I +that +corporation?, +board +1'roolaroition +God +into +figure +else. +Porters, +Bluff. +thud +which +good +be +the +Hondaras +the +the +the +the +rence +paraphinalia +Madame +quart +change +about +such +WS +both +here; +that +not +had +army +one +as +hills +and +Tn +satisfactorily, +taken +of +not +precludes +both +by +the +be +doubts, +many +in +at +dition +Leo +a +of +with +the +a +territory +then +little +dealt +W +police +her +for +have +Backing +the +pay +the +exhibitions +him. +la +his +on +there +a-ifa +sits +were +of +order +spending +hss +the +running +that +It +a__r +years +peddler-such +and +and +champion¬ +their +I +rnle; +feet, +our +any +Jack +delivered +Carney +A +eight- +we +sub +be +brougbt +of +ter, +the +wife +explain +law +its +consequently +beneficial +erous +the +then! +way +Billy +doubled +on +nearly +owu +are +and +Zululand, +reason +Familiar +the +new +Two +a +of +last +she +land, +14b +property, +making +spoil. +ment +town +titiiralqia. +privately +John +potli, +sufficient +tho +Chapcn, +say +that +of +our +right +the +obviously +balmy +thus +the +wanted +"Thirty +mous +goods +lead-silver +great +1914, +cooly +Paul +every +He +of +very +produced +is +to +value +in +refining +frst +to +into +marine +nearly +hereby +for +Deep +the +acre +Moline. +State +power +less +in +plainly +County; +are +men +course +Cherupeako +soutli- +.ituk-me +the +rigots-of +thoee +beams. +nation +news +leiri +Hying +been +called +judgmejit +at +two +be +fatal +New +the +grocers +was +people +This +an +ral +to +of +referring +an +the +his +Capt. +cause +(85) +examined, +was +observed +hand +He +church +15. +guns +on +to +a +North +thought, +tbe +mologist* +antly +battleships +obligations +farm; +to +May +Miss +which +of +were +of +rocks +years +small +that +11. +Beef +enacted. +center +and +cf +3 +th< +tion +and +midst +fever +amendment +the +wholly +ho +esting +ridors +1 +the +Dev. +obtained +er, +lines +ma? +most +the +upon +next +the +heads +lanta, +a +those +I +Division +water +spread +to +I +corner +like +labores/1 +for +the +called +ini. +committee +the +their +once +of +invention. +uf +first, +Jenkins, +wtatwardly, +does +choice +constitution +dicial +importance. +thriftless +and +legislative +U +the +bill, +red +is +frame- +whole +urie +Gunnison +distribution +to- +the +hiB +tive +We +mortgage +their +taste +li»r«>br +preventing +make +the +is +mood +Wednes¬ +Levison +is +On +appro- +made +at +con- +quiet +comes +to +saw +line: +bowl +around +there +suc¬ +Oil +ant +salient +tho +of +told +for +The +on +as +road +the +wishes +The +said +the +don't +was +We +iu +a +just +grass +Continental +dar +lo, +bolishing +are +tho +their +under +ou +Jewell, +hot +have +and +street; +contract, +than +the +sunk +into +Importance +Wni. +consolidated +nor +American +keys +one +called +our +mon, +dollars +the +the +reply +by +for +and +and +and +i»r +of' +im­ +it +to +reasonable +they +to +to +past, +by +ao +cept +looked +taught +tho +\\ +nights +plate. +my +asks +and +the +There +city +of +Srward, +come +clection +there +chair +Kingman +of +Mills +claimed +marine +ands +of +far +they +of +R.Van +Justify +gag, +be +rich +from +terceded +a +determination +cle, +prevent +our +ars +was +voice" +church +that +feat, +who +these +King +their +honest +a +family +those +aa +blue, +begin +•went +its +of +holds +a +tween +had +taining +Treasury +has +master +back +actual +and +North +the +grees. +I +to +the +less, +alleged +of +gray +if +Miss +the +and +nobody +proud +meet +for +time +of +We +thyself" +an +bush; +$1 +No. +while +has +whereon +11th +down +from +In +pleasant +,Ve.; +a +the +be +was +tha'n +part. +according +porporting +C. +nor +clear +thereby +more +nyt +b +has +abused +by +the +New +dinner +to +For +old +ask, +clear +tucker +will +the +missioners +away +a +up +In +tp +that +over +means +The +meat +m; +n +his +one +was +the +creates +properties +have +tbe +91j092$c, +the +classes +gives +portion +covered +there +had +elsewhere, +small +and +and +mornirg. +man. +New +Roberts +was +Cuzco,, +the +by +advantages +said +In +Most +tenderly, +Ray­ +corner +of +a +I +the +again. +it +beaten +and +decline +American +which +all +and +the +tern., +two +Crown +all +they +you, +K. +at +of +American +would +niost +and +As +had +a +places +the +ways +Court, +unknown +enforced, +later +w +surely +spect +nervous +he +desirable. +lower. +like +be +request +amount +not +afterwards +the +pay +resisted, +build- +building +Minneapolis +the +of +Doolittie'e. +origin +will +hinder +good +and +generation +of +and +in +the +fretful +abatoinent +shore +crew +themselves +remainder +practical +of +ths +seen. +one +I +in +old +certifi¬ +stall +of +truffles +accruing +air +love +have +be +downi +for +. +VMaflt, +a +tor, +po- +and +[Groans, +the +that +Court, +received +upon +Delinquency. +that +South +streets: +These +trip +Loavy +is +other +creased +among +failed +grew +compelled +their +demo +rather +signed +new +a +the +market +an +could +a +and +Constanti- +a +large +shelves +road +uary +ceedings. +an +nipt +supplanted +no +v +rank +And +cages +one +efforts +canvas, +and +con +Maud, +laws +to +plan +North +of +the +of +customers +the +futile, +surpass +every +conditions +a +white +ment +has +to +university +cents. +fendant’s +? +D.; +for +windo-v, +that +when +subject +proper +of +she +II +and +money. +tinue +duke +commerce +ment +control +though +high +outside +con- +Of +duced +would +sale +facta +In +however, +soiland +ship +.speculate +do +noticed +letter +to +much +When +brake +rest +entire +her +s +classics, +which, +from +great +action +I +section +nature—- +morally +40 +giving +the +filed +him +investigating +of +that +The +themselves +important +maintain +of +up +a +But +time, +of +rather +in +one +caller +ure +Quit, +er +On +has +Ne­ +to +sioner +Hamilton +to +dellS +inde- +moved +this +to +to +Mana- +would +no +case +certainly +only +repair +then +2, +tbe +the +Herren, +ways, +bis +clads +of +the +agreed +the +organist +all +heart +that +of +to +the +IT +Bohn +must +body +the +(he +tin +thence +required +Yesterday +the +week +to +up +it +end +provides +one +half +ular +Ascites; +some +There +Trib"u>. +in. +son +is +sug- +lyns +This +because +music. +and +the +ally +in +and +fact +well. +didchjirgn +on +all +lar +After +third +Iaust +person +mark +never +lor +the +35.00; +Merle +them +Conference. +between +awarded +an +of +is +been +assemble, +euperior +can +plans +make +thence +tf*»u-ed +no +the +be +from +revenue, +producing +surface +abovelsoints +from +with +25 +form +cannot +the +new +if +up +future. +at +which +very +with +gogic +three +to +of +men +water +to +most +anchor, +2, +therefore: +be +the +treasure, +1st, +twostory +southern +that +of +and +hog +was +gum, +climate +to +r.^ady +I), +well +in +good +public +reported, +recognized +Hob +pay +and +up +require* +wonld +of +be +gn +the +a +dling +President, +succeeded +Its +any +moral +the +from +was +than +You +at +that +year +yielding +They +such +likely? +nero. +bound +there +Talbert +to +and +quarter +nue, +About +Instead +ccnt; +citizens +remained +put +camp +off +be +cQitsewece. +Some +way +Mendelssohn. +Dr. +than +considerable +do? +season. +is +billion +day +of +d +discovered. +the +make +several +K. +. +solid +by +the +the +to +H. +showings +appeared +di +the +have +occasioned +Vir- +er, +human +the +almost +reading +taken +a +The +on +ward +that +each +night, +following +ever +whlcb +the +forest. +following +- +launder +that +with +off +Con¬ +the +to +and +Current +and +members +guide +toler-ut- +in +Investments. +Tar +peace +those +a +said +rode +Instant +sjjrs +4a +On +suggestion +This +for +prepared +that +ajcessble +been +so +M +drawing +mirror +Uniontown, +constantly +to +card, +-After +the +was +speed +going +per +acquired +North +of +wns +died +hog +Cauada, +the +older +football +whose +it +have +the +sunken +which +than +usually +miscellaneous +of +but +It +ruler +doubted +the +recommends +since, +eity +community +that +pur- +the +Sam +. +Stevens +communication +ministers, +of +spectacle +lord, +relinquish +found +saa +his +«cene +cause +zi +less—of +the +the +and +taken +question.which +infancy +early +by +death +by +as +sacks, +the +will +bo +Penna. +the +, +earnestly +their +shape +said +at +looting +Charles +one +timidation” +not +the +Conservative +the +Jacinto, +lore +down +the +ever, +it +on +as +inrestigation, +and +A +Norwegian +Then +has +the +cases +change +together +wa* +by +There +to +hearted +the +garrison +veil +line. +and +a +loyalty +will +more +of +the +Around +whether +up +a +the +that +although +harm +news +Here +in +11. +cember, +you +will +(from +made +adjoining +Mr +again +big"' +uate +light. +ed +been +front +the +argu- +Tbo +He +told +are +4 +a +mood +debts, +on +& +party. +It +old +knowing +At +the +pendence +trustees +came +Wirz +veranda, +been +are +months +covered +sewing +can +A +a +Coast +he +amend +Jews, +woman +hot +other +the +this +ptace. +were +Spokane +day +have +purport} +of +Eugene +th-; +Law, +tr. +that; +damages +captain +child? +Oahu +foection-rumomher +with +of +rviee +And +ot +and +of +turf +and +fly +murdered +soon +entirely +he +they +Bat +and +maximum +It +brought +cargo +capable +so +found +by +comes +atten- +ade +location +5,000 +thence +lines +migrated +to +property. +rcquttltlon +ana-by- +take +the +Near +went +aaaall +of +>,f +attention +I +the +will +rby. +to +established +Paget +the +of +bearings. +that +wit: +-kio-, +from +Alter +Ukiah. +they +also +of +parts +are +budded. +was +H°r +privilege. +a +of +persons +pk, +at +such +history, +will +Presidency. +vault, +social +that +at +to +At +to +ooerata +things +in' +Cover, +help +is +from +belief +overrun +whenco +best +choppy. +that +the +ho +terrific +e'er +use +be +was +nod +Der- +and +tliut +to +unknown +muleteers +Up +to +-fo- +will +sufficient +the +to +ing +and +real|y +was +after +pieces +matter +fact, +to +the +the +T +taken +and +Lucas, +If +ofrice +affect¬ +halt +In +and +the +started. +Mr. +althouub +weeks, +Florida. +ment, +j +coast +cor- +the +supplemented +hereinafter +dastardly +in +hangers +Vernon +vocal +lands +enter¬ +of +speedv +that +E. +blown +that +people +Otis +of +beneath +in +much, +of +Cox's +of +seem- +1776 +contractor +the +iml< +serve +hn.l +and +fire +line +founda- +aad +Democrats, +navy +met +that +like +cabinet, +people, +friends +of +a +Brown, +they +forgotten +of +steps. +be- +the +twice +to +national +found +to +the +far¬ +not +bay- +in +for +my +had +lands +remind +failing +warrant +point +approved +“The +to +personal, +made +to +of +Lieutenant +wild +farms +the +deep +fore +Blaine +C +and +salaries +the +position +of +year. +sometimes +travaux +was +the +continued, +and +the +and +in +therein +at +in +further +note +may +stock +learned +according +air +of +of +there, +doing +of +shipment +snarls. +confined +think +swarms +that +one +retary +aa +large. +not +tolerance +in +five +I +embodying +is +or +the +it +ariff +and +and +This +35; +into +Jonnnl +Farland, +the +netise +winters. +ed +has +. +history?' +platform +Anna +tlte +with +that +peared, +I +or +Into +deaf, +said +California. +welcome +loan, +duction +an +pltable +up +and +meaning +the +growth +of +this +that +aced +had +a +None +born. +the +it +the +water +ono +be +au +more +themselves, +rov +on +tor +will +chaser +glides +relief. +his +in +person, +give +and +draped +and +whether +ments +died +der +Gray's +resembles +to +Pole +"Section +capitalists +T. +F. +been +at +to +fol +soon +basket +of +In +art). +him +good +attic +Washington +work +John +warned +be +contend +De'aare, +75J° +aad +stunt +tiie +porate +true +tho +of +formed, +belonging. +Those +sort +water +game +Broadway, +appeared +fully +dodge +and +been +stamped; +us +present +who +its +a +condensed +the +succeed +of +tor +opinions, +planet· +would +condemned +of +to +palace. +the +into +then +times. +contemptible +decision +for +pearl +of +was +last +factories +lines. +is +elec +would +It +meal +that +sum- +by +near +feature +those +if +Two +half +left +It +a +such +remember +I +well +arrested, +bnthlnc +the +have +would +near +of +wound. +delivered +the +of +them +as +the +large +squares +njurtng +consist +tel| +strong +State, +after +get- +have +San +officer +wife, +in +will +thus +of +to +their +after +its +I +slightly +deposits +management +fear +work +the +of +one +first +A, +taken +consumed +years. +next +effoct +eighty +for +dis- +Wm. +both. +So +and" +as +influence +Harwood +to +R +country +immediately +them +the +the +eagles, +It +of +who +ofperaona +the +hard +$4.75 +speaking +sold +against +score. +within +ten +whereas +or +trip +declare, +told +out +evening +husbands. +ask +payment +the +who +war +best +of +worda +malicious +submitted +Mr. +8. +Presi +North +cylinder. +that +he +9. +ti +much +Heaven, +covered +and +make +is +tion. +a +action +the +be +times +cannot +indulged +land +and +note, +in +which +Plow +the +fact +Creole +will +with +witl: +heir +Matabeles +Judge +pillow +both +just +of +the +ihe. +refund +Academi +it +of +day +no +men, +days +degrees +per- +would +the +story +widened +to +and +to +head, +the +on +less +Roller +the +not, +coast +creased +States +the +by +or +project +sentenced +are +the +reckoned +waters +him, +the +Latin +to +these +Delia +sat­ +How +and +and +of +is +to +and +it +insight. +The +and +ho +REMEDIES, +the +Velour +it +regarding +tories +militia. +Cunnlmham. +the +would +dug +houses +everything +concomitants +the +American +trimmed +We +oi +Jews +Less +permit +I +a +the +tween +Columbus; +to +the +of +line. +his +se- +lays +cases +wiis +told +and +larger +1918 +less +274.Joseph +by +in +Two +tbo +a +then +the +without +recalled +the +amount +friend- +- +Hope +Bet. +a +llr.Tt +the +self +on +general +succes­ +motion +un- +into +endow» +was +Croup +fortress +creating +in +the +he +the +in +their +moil +at +this +was +colored, +their +partisan +mentioned +on +uniderstood +r +me +have +dfik +the +f'or +value +as +--a +entirely +trees, +were +of +this +even +One +and +upon, +and +the +cannot +iJoutical +foldeu +This +with +other +such +shall +In +mansion +of +storm +medicine* +or +Aa +deg., +are +increase +Robertson +with +Freddie +of +was +near +principal +the +which +be,to +the +Royal +might +in +time +of +of +be +rests, +the +strengthen +Not +bullions +tage +tion, +was +view; +they +higher +soup +enough +the +useful +what +taxes +accepta- +czar +the +that +Saloons +propriate. +of +of +cup +than +loved +to +price +concludes +you +lot +made +larger +Old +very +Hill; +them, +thinb +September +interests +The +to +efited. +of +Ins, +cuer, +in +preju- +was +and +tho +be +thence +lunches +ceh- +certain +ranks, +have +thence +ocoeaiens +Methodist +broke +I'harged +the +but +we +to +rabbit's +which +bench +city, +adel +on +nine +£O +a +have +be +uually +adding +R +rent +that +tiniore, +his +sister +clares +that +Orion +the +ber, +not +as +now +to. +affidavit +a +1906' +now. +be +arrive +to +of +in' +stir +3% +which +way. +June +any +Klondike +the +now +Kent +bers +No2 +of +Section +and +and +not +or +tile, +"whereby +success +mortgage; +that +the +can, +he +some +material, +and +me +perfect +upon +that +system, +cap" +rollers. +feat +view +and +and +glorious +cluded +all +could +the +hesitation +taxes. +at +FOURTH +him +well, +budget +concert +or +State +good +Election +Druggist +conducts +re­ +w +who +the +sleep +and +can +followed +rendered +mcminn, +pasting +in +act +against +or +never +Held +the +the +fever +Liber +more +and +ter, +of +play +they +one +favor +redeem +»."utited +portions +I +people +was +are +cf +firsts. +of +Levis +State +of +cavalry +drug +barter +as +country +proven +I +slating +after, +riot +This +with +was +words, +you +embroidery +work +a +succeeded +girl. +in +he +ot +him +lias +to +guard +ly +is +foreclosed +Ytilow +be +25th +Potts +car +onable +not, +a +its +all +concern +of +down +Is +as +themselves. +gold +at +reached +the +are +forty +the +that +the +ho +pipe +speakers +in +tem- +to +they +happens +kn +ago +the +the +tiieir +throughout +e +lie +dry +generally +ot +evils +·ϊames +may +and +If +runa- +any +the +which +been +and +thereon, +he +dog-cart +i +extent +all +the +the +county, +one +real +cisely +on +singular +ol +the +to +Kaly- +of +of +then +death +the +I +perfectly +the +made +the +the +Iron. +intere-t +high, +His +gether +The +yesterday +five +Christian* +fish +interval +tho +into +for +the +maeantinr +a +either, +who +union +to +of +profits +soft +will +05al7 +ihe +original +follows, +tri- +which +quarter +there +glistening +of +Among +heart +comparatively +benches +warrant +if +became +He +current +sharpest +had +Newell +and +determined +they +deathly +India +testing +if +4 +cleared +prophecy. +In +Maurice +indebtedness +Lindsey +actual +the +whlok +ftyla +eninfr +the +the +of +N +buildings, +will +regulate +justice +would +8. +there +outnumberedi +B. +for +the +inces. +was +ribbons +that +for +was +to +this +ere +black +have +of +The +slimy +the +not +Mr. +bears +House +that +other +tin +name +be +young +the +furnished +work +ground +hpd +thread +our +at +walla +a +made +g«-rv\e +could +Veliz +in +hav- +'See, +a +for +dUtinct +The +Road, +a +gallery; +and +dwelling +Minnesota, +to +common- +sum +groom. +suspicions +W. +>r-w +for +day +attendance. +and +vic¬ +there +nlwiijs +refreshments +friends +did +Another +lu +have +has +company; +withdrawal +defence, +waa +89a89%; +sreat +he +was +should +district +letter +the +had +resources, +fellowship, +Patterson +the +Tho +nightly +agajnst +only +los., +her +J. +as +made +railroad +her +or +on +Tileaton +fun +into +farms, +-hips. +interest +represent +part +accountable +lufficlently +before +day +of +llttlfl +hesitate, +speakers +subjection +fight- +day. +mar- +be +matters +listen +population +contended +veyed +command +the +is +a +| +was +to +Compound +It +school +on +before +claims +at +unnecessary +current +a +body +is +by +wage- +operation +river +go +sinn +the +the +of +has +mahogany +street; +up. +right +by +The +in +Grant, +ted +of +the +spruce +Kta +1 +to +Hon. +th +had +upon +now +and +nerfect +terial +on +there +petition +as +Charlestdh +tence. +bulletin +the +combining +millions +of +rapid +the +in +buried, +at +second +and +and +the +Tampa, +tbe +said +residence +the +pair +Saturday +of +whose +newe +From +against +the +We +Is +J. +keen +in +next +"No, +shall'be +you +for +tooth +and +each +thence +is. +transportation +of +tills +wine +one +foot +man +than +I.ewwla +McMullen, +me +lose +support +the +parative +idea +are +Jacobs, +the +turn, +Christians +todegrade +saloon. +expected +farmer +be +I +Deh +and +perience +and +Siberia +the +allow +applications. +ara +delinauent, +city +QUIGLEY, +on +Gillmans +she +favor +did +the +cannot +Isalso +years +political +These, +protection +way +and +attorney, +the +summers. +ren. +en- +a +excite, +ot +sixty-four +a +monthly +since +the +called +world's +with +by +extorting +some +feet, +ing +none +L'ufoituuateiy, +ic +urn* +and +of +due +board +soldiers +two +neighboring +better +Service +to +atteuded +and +Intention +value, +assassinated +city, +intelligent +he +to +I +do +loudest +swell +Did +special +ahall +and +all +April30,3:54 +time +hearts +ho +17, +ron- +not +at +she +hats +of +reconcilable +under +rutted +and +who +a +a +to +a +that +the +empire +and +uest +Mr +to +band. +18, +plainly +a +crowd +own +accord +of +by +W, +or +i»y +Of +obligations +in +IIOSTE +seventeen +a +for +in +any +to +of +a +was +the +to +via.: +for +Some +man. +cases +the +cuts +nursed +proper +J +furnishings +mountain +price.* +Childs, +of +be +whatever +youth. +spot. +to +come. +without +nitrification, +Sher- +ple +D. +the +destroyed. +may +dwel- +snow +own +two +woodland +through¬ +might +follow +ourselves +line +hands, +way +Still +republican +contend +the +clear +was +I +bridge +SOth +people +construct +essence +to +bonded +of +lithium +so +exhibited +hood +and +here, +of +contends +port +the +extract**! +He +he +him +than +cltvof +¦ +very +to +th«> +one +Estey. +the +ming +furniture +accommodations +time." +very +Morton, +was +west +Range +accept, +governor +There +the +sewer +took +with +favor +floor +partner­ +market +D +of +gawky +compelled +and +Japanned +deeply—even +over +such +road, +supply +announce¬ +and +are +same +regiment +not +times +When +person +Will +in- +boy +that +the +proposed +a +during +well +stances, +it +Mr. +ittlo +should +Fresno, +traveler +Washington +made +I)r. +tried +the +century. +of +that +judged +of +and +an +ungraded +beheld +the +of +by +"iinane" +H. +named, +a +ia*t +top +of +does +"No." +sun's +concurrently, +I +that +the +Indian +SchulUn. +against. +The +inches +is +the +based +resolution +was +ed +The +spends +easily +the +kissed +been +tlie +a +'the +of +helrs-at-la- +the +swindling +38%c; +tO +shall +coal; +flew +described +believe +the +there +Secretary +benefit +leading +him +sordid +findingb(B +commercia- +and +to +a +had +from +to +municipal +that +Ac +outwardly +carry +Knglaml; +market. +for +of +companies. +it +his +Association +three +roofs +known +Coiitineitt. +Mainwaring +Italian +to +so +14 +the +; +was +both +tance +to +community +a +hardly +ono +center +the +men's +If +biakemeu +marked +tho +thoui +would +mortgage +interested +which +laeb, +When +has +much +themselves +tion +of +along +fair +due +883, +sate +of +of +to +Atlantic +repudiated +to +signal +al- +contained +volutionary +of +and +be +No. +the +a +Wal- +beer +two +leasing +conductress; +drawn +scious +of +Is +the +left +Milan, +should +by +under +with +dnmagiug +on +t +are +matter. +also +where +hot +Also +from +I +when +down +A +at +series +character +O'Hair +Hamilton. +down +him +ed +to +proceeds, +for +only +In +Territo- +what +and +2 +shall +of +the +moistened +State +planted +The +this +on +certain +the +letter +the +on +Stall* +to +and +fashionable +kept +these +but +published +the +Lot +me +by +BEGINNING +well +secuicd- +twice +makes +time. +the +Ana; +which +over +saw +the +ard +who +model +to +may +Judge's +parties, +work +to +geniai +fail. +elevation +for +North +have +land. +a +that +their +other +of +Sec. +centrally +Dover +economy +a +that +Order—oh, +waiting +t +Into +I +for +the +girders +Rights +distinctly +to +by +May +straight +24 +days, +to +should +he +rvice, +to +using +r +tio +and +Swank, +from +on +most +a +made +that +fellow +the +doubt +hausfrauly +of +same +bill +language +trips +blooded +him, +make +soldiers +nllogelhi +the +at +It +eggs +employed, +when +ag- +and +f +in +night, +done +lawn +at +are +since +240 +with +on +This +put +“Mammoth +very +over +sob +must +commenced +every +to +above +make +making +wounded.The +Sunday, +debt +part +ment, +which +or +would +the +Liberia, +days +ed +(} +dwell +the +National +land. +paid, +farm +a +event, +would +the +i. +of +poured +where +a +This +cueouraged +this +ladii's. +by +which +feared +and +not +side +a +in +man­ +had +the +regularity' +among +but +acids +Editor +also +of +lecorated +best, +my +and +assent +perfection +The +ts; +Invitation +a +bravely +the +toilet +this +provements +who +standard +to +ar.d +the +he +is +not +nearly +to +how +Brown +swords +mortgage,hasduly +succumbed +made +things +5th +smoke +if +aud +unfortunate +copy +mniliibjc +ary +forany +cargo +neatly +influence +the +and +where +dlatraoted +monopoly, +going +referred +Congress; +the +any +frightened, +a +four +Southern +victory +which, +chiefly +slammed +doxen +hi +they +plea +few +country, +go +his +1808 +it +Witte, +It +ball +keepsake, +ered +in +The +Louisiana +for +waiter, +and +will +must +as +vacanciee +with +crimson +protect +prosont +Hardv +m +Seattle, +poss +New +from +oxtK +Doty. +four +iwo +bull +in +which +was +for +the +petitions. +after +girls, +the +of +no +Baltimore +a +In +«> +new +largely +can +warm, +We +hammer; +him +a +iouple +surprise +come +w£ich +On +and +the +but +water +the +oru»r. +each +the +as +ions. +of +George +much +of +thus +hat +said, +it +ex­ +the +in +mont, +was +ought +projO'al +judgment +will +his +of +man's +of +"=: +is +the +be +act +ft; +Government +the +whenever +the +expense, +was +very +and +religious +a +24i8 +ing +old. +as +appella- +3 +the +a +amount +Wakeman, +sub¬ +Missouri +the +fight +of +six +mar¬ +warm +Grocery. +families. +development +with +the +Jo, +much +¦eenrttj. +the +is +he +beyond +cat +company +not +Swan +icize. +I +company +at +par- +a +good +had +the +. +f.ot +if +A +seems +that +the +luted +.Ualaria, +of +about +Bladder, +has +iu +f +One +i, +seek +more +be +depend +Functions—iu +stitch +of +The +leg +phur +subject +it +for +mer, +people +i +the +er +this +of +. +to +a +kiangpu, +ballot +could +per-hested +fine +corporation +pitiful +wives +one. +girls +bird +trot, +no +drawn +The +constitution, +settlement +Grimes, +the +been +Caruso +are +all +tte +hive +part. +>. +to +the +n-cordcd +the +for +and +of +liccnse +hot +in +an +heretofore +be +than +and +it +Clerk +would +For +to +also +the +Davis, +any +When +limited +of +8 +San +no +the +and +complete +bition +help +the +ed +and +eense, +in +officer, +are +the +the +oats, +stockers +both +approaching +rich +the +activity +that +naes +is +Pie-maker"s +Uc +an +$60 +a +<.f +knowledge, +persisted +manner +(18) +would +not +statutes +in +Before +or +53. +may +home +to +has +which +ice +plants +usual +ono +by +the +to +would +ours, +mpnt +and +thal +16 +not +cun +quarter, +near +rolling +for +deg. +h:iu, +seem +called +in +cessful +to +adminlstratlon +| +barn +Thursday, +the +at +toniahmfnt, +add +nor +exercises +the +and +spotted" +and +feit. +».* +mortgage, +put +himself +an +more. +the +Mea +lady +both +and +severe +nolnt +Alex. +be +bun +for +policies +street, +Mrs +present +mending +ly +again +was +yacht +the +ceives +credit +rings +Kathleen +tLh +if +arrest +the +cost +fol +we* +will, +moro +identioal." +a +the +who +or +for +& +the +ordinary +others +Reed, +them. +inquiring +owned +distance +has +at +sideboard, +the +our +as +to +oar +liver +to +he +wrs +by +put +exe- +a +heavy +interests +lisiriot +William +and +nate +taken +their +mania. +that +wrought +this +held +ding +leigh +deadly +Ch•• +to +has +thing +a +touch +GOO +Miekler, +powdered +g'rl +financial +which +the +Congress +mer +used +one +Hackley +made +as +to +25 +Hensley, +attention. +of +hi* +shop +a +floats +recollect +of +the +to +and +Mollie +sidency. +"hunied +out +Without +reduco +bargain +Babylonian +and +arm, +the +wtlh +the +he +prefer +cognized +of +but +ing +188!), +January, +the +that +was +over +fact +both +and +from +heavy +Spanish +in- +'old +bis +as +produce +contend +and +the +stamps +Jersey, +gardless +of +particu +tax +But +as +la +debt +to +due +ly, +Her +courts +anyway, +spring +for +trees, +that +barley, +diversification +must, +of +at +with +Retan +principal +to +people." +latter +exceedingly +city, +in +their +is +all +til +weeks, +off +950 +used +thought +it +the +let +shore. +street +town +and +over +must +und +have +ahoady +devoid +This +a +o +Slew-fork +evenings. +lleiiKM-ratic +me +the +fragments +of +medicinal +and +the +ever +decent +Scrofula +in +on +the +situated +of +doctor, +paper +the +instrument +William +a +Mount +to +.light- +ant +seemingly +fur- +at +right +put +made +large +more +third +graphic +their +ht- +down +prop- +the +been +the +of +Joseph +wi.l +the +the +foreclosed +most +tho +of +odd +real +the +together +every +aatieaM +Linen, +fendant. +milk +the +The +or +fascines +break +it +at +the +34V;@3-ilie; +45-foot +time +United +of +ments. +of +a +driver +t +campaign +To +of +sold +to +lot +can +and +get +of +65, +eastern +money +north, +that +court +the +wise. +all +your +especially, +the +like +Bid +croachments +ing, +by +furnish +in +the +power +an +twenty +buflbons +upon +coal +implements, +F.Donally, +Witten. +sidered +each +spent +slightly +a +ICCaudStLouis +Henry, +and +hearties* +disked +meet- +off +his +am +The +in +the +there +surface +sides, +to +port +the +Hughes-Hal- +ing +blue +Co., +iu +now—that +o' +i> +funds +President +running +tatives +stor- +e +Tim. +can +avoid +for +to +Judge +L. +649 +cigars, +less +the +out +national +out +young, +all +on +sought +almost +on +of +other +means, +of +thousands +a +í, +Ilalatead, +promised +it +find +a +such +circle +clung +A +return. +Cando. +to +of +me +it +had +on +the +and +feet, +additional +as +lo +endorsing +ol +those +ness +other +to +the +inci +to +the +and +An +and +Dca'h +Deuiel:. +the +but, +and +p +Tittman, +tho +fish. +a +RepablieaB +hills +the +south +Music, +industry +Missouri +and +stripped +of +the +Market +hardly +systems, +abandon +pounds +in +has +appeal +"find +ers +stock +Cltv +merely +than +mutual +criticism; +particularly +rated +the +Late +down +Taylor. +of +agoniziqg +family. +management. +dertakes +only +a +State, +a +parent +• +increase +with +D. +use +. +splendid +powerful +own +J, +18 +lias +passed +confederation +and +ami +them +Another +are +shape +strict +two +Tho +back +prayers, +breaking +With +for +and +to +Tbe +foods. +bring +deu, +will +Mary +he +are +the +Hflc +for +Hoor +manure +the +another +passion +its +day +credited +have +that +d, +will +been +|ir»-leii.sii)!i +Paul +the +reports +tho +fourth +guerillas +.demand +people +fingers. +Havana +to +with +wna +Co- +the +ties? +she +return +Bead, +to +and +and +But +the +court*, +necessary +ferences +Stia +or +it +themselves +sources +tbe +says: +body +reports +of +Boston +Is +sodden +And +to +his +the +fo +services...... +elimination +that +news, +none +running +claims +Pacific*" +Mr. +places +Hoato +this +as +owners +: +by +tips +ox, +from +military +would +“ +children +dollar* +npwta'anc* +barley +o'clock, +cab +refuses +vessel +In +kind¬ +guilty +and +his +with +of +to +with +will +to +Ah! +of +pbjects +Germans +havt +cisions +When +wheu +the +not +that +lenge. +Miss +No +so +able +the +They +was +failed +the +was +laughed +and +combined +indeed, +sink +thcr.icf +We*: +Robert +"Chick" +idets +regardless +such +as +admit +Douglas +must +North +and +to +be +is +trial +executed +has +needed +3rts>. +his +instituted +had +of +-f +base, +we +her +past, +taking +uplift +a +madi +are +a +East +The +the +.WrsM +will +and +passed +of +vious +cess +infirm, +nt +P +ranney, +The +re- +of +lady, +vidual +institution +strong +not +inducement +scooped +advices +task +on. +penalties +the +rines +The +have +day. +gua!.linn, +soon +raaidence, +of +fur­ +could +It +exempt +portion +contempt +thereupon +this +1867, +thugs +sections, +cover- +to +Going +hopes +A +was +commissioner. +Preei- +cousin, +roridereJ +institutions, +that +and +Dr. +chx'lod +is +that +lu +open +the +6(>J +to +premature. +middle, +or +the +offices +br'gs +posted +grasped +to +government +disease, +of +who, +we +day +to +croti +wiped +enough +decreed +the +CoBBtltOtioo. +is +fume* +on« +permanent +were +150 +cave +who +monstrance +Big +a. +nails +realize +scabs +would +from +under +the +of +Germania +than +gtven. +their +mhich +lime, +aa +would +of +premises +putting +avenue +that +This +people +can +kitchen +States +to +] +tha +right +midway +with +cisco +for +Kooau +the +would +As +thei*outh +the +its +it +ilt +was +table +hand, +I +in +60 +separate +misdemeanor +ou +ten +and +Jones, +90 +soon +well +interest +Clendenin, +for +hie'h +of +and +council +(Tilton.; +a +to +a +prices +they +in +bride +oourt, +may +to +of +confession +alterations +tho +May +by +support +give« +ture +the +of +sured +Ik* +usiness +in +No. +“slugger” +Railroad.. +he +years +Is +and +do +jacket +the +fair, +(2), +, +golf. +measurement +day, +of +and +to +Flora +Can +clean, +Thev +hat +of +rendered +creators +the +secretary. +swallowed +and +soldiers. +un- +water +ably +individual +| +Port +equally +and +sentiment +and +is +indefi- +to +on +ters, +office +la +for +attention +to +under +the +tage- +lat*, +Smith +er +mittee +done +mass +pany +only +at +broad +were +describe +l.ay +the +lor +so +cast +much +was +homes +and +E. +sub +this +of +free +with +the +ns +being +The +eo-t +13.mil +rivet; +would +or +necessary. +of +in +aupport +Wilfred +by +Nov. +Reed +parks +Lurline +Kansas +did +one +spiration +described +ceive +were +would +had +borrow +from +parently +May +idea. +monument +Mies +bly +has +Jones +Belfast +(oxcept +include +talk +thought +he +pelled +six +equip- +and +short +may +U**-\ +rubs +clerk +3. +deserving +mained +fab- +do +and +end, +appointed +ers. +last +dispatch +you +loved +the +is +part +corner +he +this +29d, +one +as +and +gles +each +of +aad +he +W. +could +The +her +bushes +riuest +of +came +not +father, +years +as +further +flock +Perfect +untried, +sentiment +day, +sub +sub- +Eighty-two +may +for +use +$2,000 +As +quite +course +soiled +tils +square +much +of +Joseph +that +taken +in +dat +and +realize +snow +only +towards +the +gold +a +tariff +again +Schmidt +the +cut +Bank +Green +Diatrict +rental +necessary +D. +her. +of +assistant +Five +one +moved +myself, +or +the +that +day +sold +Filmoro +fire +Brazilian +down +pr« +notwithstanding +i +trophies, +chaI- +to +of +early +itself +hire +of +be’ +county +jump. +blood +will +have +remedy +therefore, +homestead +were +first +and +some +it +who +with +(1B97), +say +sensibility +the +drag¬ +was +organdie +days, +loss +and +cramped +world +Associated +tbo +erections +put +wnminir +department +in +of +promise +tiny +No +of +the +-s +;i +been +estate +he +land. +done +Cosh +The +pounds +In +manner +frame +ringer, +intelligible, +our +is +at +days, +water +tional +programs +south +tree +stocx +basins +bills +unrevealed +diffi­ +the +delegates +Kipling +de.endanis +tho +to +M +very +bridge +COunty, +uo +inflamed, +exercise +7 +have +the +a +the +doubt +states +disgrncel'ul +see +which, +come +to +those +a +who +1 +citizens +( +M. +have +their +probably +such +tho +now +differences +English, +bills +president +anybody. +same +think +to +laved +meet +and +executive +but +in +the +not +places, +will +or +chairman +The +where +lloss. +this +mutter +was +or +slow +known +the +list +were +debt +land +charter +and +freed +street, +I +as +persoual +that +invited. +to +noise +29.A. +with +hand, +acquire +a +and +magnitude. +handker­ +satisfy +.One +grocery +wheat +band, +forth +the +in +landed +and +sugar +of +of +ing +tho +poorly +there +. +which +E +our +e +interest +miles, +money +he +of +nut. +again. +Dierlkl. +and +whero +was +When +ts +grain +less +n +hospital +in +terest +worked +niosl +Chicago +the +Starkville, +be +asceitalned +scientific +at +tbe +Our +been +recently +the +but +be; +himself +she +the +tieid +These +in +amounted +classes +against +Weed +I +the +also +Pontine +it +very +of +good. +bufferings +was +the +week. +_f_*rtif_ringr. +as +insinuations +perfect, +flour +tell +outside +plays +law. +their +city +.no +purchased +was. +Mr. +were +. +education, +cash +to +they +pinhead +orator +during +positively +remaining +therein, +days' +words. +half +upon +Crown, +itself +spect +roast +ot +Lucy +at +from +busy +required, +as +a +and +it, +hi +which +with +position +8 +and +of +was +hence +today +of +frem +cor. +the +wealth, +Thursday, +a +the +out +this +Governor +like +supplied +public +being +inevitable. +sary +fifty +I +mouth +was +man, +2. +been +the +stables +' +powder +tn +wroto +lawyer +and +in +diet +meeting +sentially +the +parUtr +any +and +the +says +and +of +the +amicable +with +b'nsfltof +and +tbere +BMkte +here +will +First +the +making +college +necessitate +try +somehow +military +in +II +the +counteract +cheeks +being +per +two +to +out +ad- +le +even +from +remedy +a +for +This +K. +Adolob +broughtt +from +party, +,and +shipped +to +have +will +along +charges +basy +start +great +the +the +who +tho +officer- +number +It +of +Rappahannock, +of +sounds +he +I +outgivings, +west +going +taken. +to +jealousies +more +through +not +off-side. +gaining. +back; +they +the +and +most +dying +greet +vate +thero +fifty +count +Eincolli'n +crowd +be +such +fruits +tbo +then +said +earlier. +reporter +Iden- +ships +try +thence +of +not +went +year +ou +the +buying +qualities +DAY +work +; +the +the +leuve- +this +ceeding +end +influence +it +forty-five +by +Lyon, +accomplishments +stead +Sullivan +aufflolenfly, +ment +before +beg +beech, +30 +the +ol +attached +was +I +acquaintance!. +than +party +the +not +thins. +was +ones’ +with +frame +mouths +which +before. +the +after +tive, +and +there +draperies +resto- +the +the +level +duty, +states. +it +treatment. +toiniuitleea +told +Court +and +plants +visit +of +from +3, +legations +way +said +is +no +river +vastcrowd +accepts +sides, +result +if +hanks, +and +said +Relief, +ercond +and +for +similarity +Those +first +a +the +N. +despoiled +to +which +naoks. +oppos +own +had +clouds +ed. +along +a +but +fullest +and +Miss +and' +legally +gains +kept +situated +infantry, +Winches¬ +nal +attacking +in +article +gentlemanly +be, +1 +the +about +fruits, +is +“have +turn +and +legislation +which +and +ingly +As +my +interviewing +Then, +tested +In +which +nppeareu +military +ranelt +In +Prince. +objects +on +both +I +maximum +given +to +support +Columbia. +auguration. +200A +grees, +catechism. +alumni +make +the +to +in +for +his +law +the +all +When +it +1 +might +for +Amendment, +A. +viewed +perfume +overflowing +interest +exposed +northwest +contented, +then +Congregational +rather +au- +There +rls, +was +Sentinel +the +wires +men +climate +front +(a) +of +casions.Christmas +and +supposed +men +ino +Mrs. +Anattalian +part +Premier +ask +reduced +brilliant, +before +becoming +style. +much +wo- +while +keep +day +to +My +to +country, +tbtok +indicated +and +New +on +Bone +a +written +sail- +had +Stephenson +know +they +rected +the +which +tho +votes +Genesee, +hand +holds +the +the +that +B. +to +the +of +and +That +cotton +in +and +we +after +offices. +yielding +colored +is +family +I +the +by +shall +that +, +Mexico. +raa +lines +my +KvieriJ +the +was +of +known +clean­ +by +is +or +under +gardens +to +makeup +the +and +at +ground +Vice-Chancel­ +dium-sized +at +of +that +ever +out +thenco +stands +were +and +trustoSnd +ten +he +but +Investing +he +to +insensible +marvelous +her +superfine +free +in +was +Miss +people, +the +tbe +at +to +at +1746 +on +a +the +schools, +boat +was +Our +laid +Elton +the +the +known +circumference, +Hale +be +by +war, +but +by +amended +been +ho +critic +the +couditions +cloth, +good +I +now +Bernard +of +rected +city, +perienced +his +four +and +young +lode, +a +all +lively +depot +her +fell +a +were +for +another. +and +under +than +believe +to +during +In +law +again. +tled +the +a +through +loS +i +ft-w +yet +E:ropean +and +not, +the +was +rison +pute +clubB +encourage +as +money +a +It +procity +it +Mining +visibly +to +de- +arrest, +hand +matrons, +ber +tir.t +chairman. +th« +the +day +many +been +the +several +they. +club +a +same +«rafue +As +are +guards +and +It +ber +and +officials, +sura +and +that +that +or +him +October +at +and +an +distinctions +starts +them +Bird +heart +the +the +iron +and +communion +subject +senes +County, +undoubt- +Isoino +He +it +southern +canal +Jow +for +by +point +and +a +or +ment +all +tions +the +witness +fish, +nblo +wires' +I +group +communities +Jesus +but +college +plu +oreed +30 +swellings; +complain- +two, +Hallway +connected +and +meat +finance. +by +Nelson +the +87 +Wandering +to +at +truth +thereby, +loss +make +San +militiamen +No. +and +said +could +l'jtth +preparation +smell. +specify +man +States, +In +his +silks, +Ireland +has +to. +ili*tnnce +thenco +the +internal +wheel +an +whole +have +engineer +well +but +Well, +not +En­ +that +convinced +a- +examination +mercury +to +Jordan, +the +put +id +to +of +ing, +has +and +in +has +J. +Chi- +R. +if +the +Alexander +But +stooling, +Degree," +avidity +deposit +bedv +Boston, +11. +two +Cowan +he +sold, +ing +ihey +the +PJeaBBkaatn +dreamy +final. +intense +Miss +have +Buffalo +Chi- +the +bottle +recent- +duced +Young +after +brck- +so +immediate +spending +starchy +were +caught +yesterday. +etc., +propo>-td +Foreign +of +g- +novelty, +whence +tending +occasional +business. +duties. +in +be +time +companions, +compose +persons. +thread) +farm, +to +an +related +boundary +moments, +life +education +neither +tbera. +a +notes. +a +Grant, +said +of +o'clock +to +provide +voice +and +attached. +BOeae +thence +A +Saturday, +charge +the +said +long, +mat +hbeing +of +ihuiii +their +rule +clou. +he +and +demonstra¬ +has +of +the +appreciated +takes +of +have +m., +one +a +ter +rushed +you* +Mr +ment, +compared +water +coun­ +The +a +be +Burble, +seeds +to +pule +us +O +tract +in +story +some +in +far +Valley, +friendly +squally +equal +or +morning +a +raise +who +nml +days +over. +they +sustained. +al, +sales +taaa +to +- +famiM +the +pleasant. +whence +built +would +authorities +children, +weak- +States, +on +promise +garrison +states; +that +it +tend +bandit +Washing +them. +been +Iil. +of +State. +by +the +will +- +of +decoration. +why +good +the +the +rapidly. +feet +party +nurse, +e;m +with +Then, +of +the +which +are +appurtenances +the +lighted +Winic +the +the +than +the +men +any +per +ta*n +is +Hue +to +than +to +of +of +tost +to +seriously +valor +steamer +home +this +and +Federal +Min +owners +but +maintained, +avail +o'clock +how +c +1 +course +concourse +and +lady +paying +Auzili- +arraigned +CAB +in +five +way +work. +in +for +the +fish +our +The +ecclesiastical +li.st +loan +assessmeut, +wider +bear +is +Virginias +greatly +To +or +city +were +Furthermore, +women +Course, +chord +no +side +ille- +the +Con- +years,—lie +Tutotqby +by +of +As +startlod +with +And +beneficial +tbe +serve +together. +Mr. +its +with +ot +fair"that +live +hich +to +That +The +permit +is +upright +test +but +screen, +said +(W%) +Sener, +hereby, +of +.'10 +trouble +and +would +Spanish +other +true +few +Park +Coombs. +far +the +the +dent +sailed +edge: +Augvata, +rushed +with +elev +that +Camps +numbers +spiritual +both +to +Canal +Colton, +thoee +small +piles +that +be +grounds +We +a +sett +ouiet-.tierced +of +Hook +the +of +sugar +mental +love +cies, +got +to +an +I +salaries +and +obtain +the +ob +owed +thing +reached, +furled +needs +stall +dillcrently +Guilou, +high +who +dealing +the +bound +amendment +who +roller, +when +patient +in +enamel +and +education +fascina- +overcome +of +minutes, +mile +use. +I +to +W. +and +suppose +but +tract, +order +a +over +any +f-ruily +sword +«t +The +- +at +it'had +upon +lo +corns. +r +though +frightened +J +which +or +Dr. +cultnrist +for +the +or +had +multitude. +Tho +of +may +showing +Crat +with +or +of +“bears” +is +consequence +church +the +on +all +auch +his +and +coach +was +in +until +drained +ft +this +on +the +mature +Blanohett +the +the +wiped +can +part +his' +West +The +not +331 +the +t^iat +lo +Beginning +any +simply +smoke +tea' +a +and +for +women +to +at" +of +got +people. +the +and +good, +Professors +on +the +doctor +line +these +tnaaag*m*al +* +ol +of +Greenway, +well. +was +criticism +carry +virtue +25 +man +tha +kind +riflo. +is +row +To +These, +wages. +of +who +so +24; +my +Benton, +says, +and +it +said +west +There +provided +conveyed +of +tatuary. +the +what +veils +sum +wheel +was +take +inc. +itself +water +effectually +the +not +mirthor +that +deii.n +adjudged +tin +case +M +datad +Sam +declined +it +consequences +going +to +take +the +of +and +that +oommlUoo +sold +oven +the +for +first +Ewing, +conveyance, +the +hint +said +ties. +affected +the +be +the +will +day +re- +situation +based +is +pro- +other +drained +and +Pleasant +in +point +he +two +for +fingers +is +on +I +to +out +every +the +but +Both +have +response +an +leave +of +in +shall +use +county, +under +a +If +greater +Hutchinson. +flag +me. +spells +the +would +us +the +he +the +AN +has +pretend +Chicago +northerly +personnel +the +July +through +Commissioners +the +flame, +hundred +city +no +aro +large +Burke, +tlie +hin +not +success +I +- +imperial +set +speech; +from +of +a +which +the +not +God, +for +ball? +he +piil +cents +must +eration +Westminster +flying, +try +of +It +waa +Mississippi, +Kansas +down. +great +I +same +will +these +like +announced +of +libera!, +of +N. +patient. +23 +discover +the +loujr +States +friends +at +of +the +of +to +field +oilier +the +mqre +lo +charged +$24.15; +spend +the +American +might +But +Chicago +and +Mayer, +6992 +United +of +premises +was +Dr +because +things, +of +a +got +sent +uses +had +stem +Leaving +look +like +boil +law +army. +or +her. +1909, +tbe +Packer, +Tho +ar +quality +was +decompositioni +greatest +evidently +utility +but +the +known +be +that +prloea +us +of +mortgages +was +no +poumli +of +complaint, +no +thefirT +coming +the +110; +parole +of +he +not +as +the +where +ray +spent +I +probably +the +once +with +some +induced +pole +word +drinks" +W. +other +young +the +la»di +the +hardware +to +: +of +alto- +Indignation +these +States—the +your +of +of +treated +far +telegraph +twenty +of +habit +the +passes +he +great +at +will +placo +workmen +has +PhillipSousa, +residence +Christ," +threats +ness +private +to +tion. +mended +his +here +troopa +in +head. +to +ol +in +whereas, +in +terest +of +seventh. +allow +our +within +hoarding +nio.titig +Mrs +which +large +Department +cail(lie +in +Baa +vator. +secure +thought +the +forward, +than +or +woman +celebration +opened +other +told, +cut +mouth, +D +cocaine +hand +after. +those +gire +mentioned. +through +from +to +and +resolution +and +government +and +is +of +the +thr> +lege, +up +or +towns +(Monday) +to +a +the +bonds +Fortunately +old +was +brown +. +the +by +a +Ventura, +would +very +the +Sophie’s +this +Good +duty +which +frontier, +year. +see +paper +itself +lu +con +started +examination +himself +; +inspired +aud +order- +West +often +Cabin +state +same +the +Onesiphor-ou- +notice +made +it +times +add +to +the +served +ness +Is +farm, +Whoa +than +by +said +itin +away. +sold +resistless +hold +extension +find +rase +the +from +communicated +journey +did +grain; +it +course +office +were +once +heida +turn +that +nature +in +with +sian +total +it +na- +however, +and +consecrated +the +Indications +If +people +be +hay, +my +last +he +the +singular, +notwithstanding +late +in +for +stress +remarks. +made +Orio, +the +by +presented +cence, +A +point +most +3 +t" +not +furnished +dug +is +s.iy +uncle +every +to +to +Walker +worda +binding +onto +deep +dressed +by +ta +streets +identity +tax +the +an +made +er +directions +from +quite +? +any- +to +up, +women +as +43 +the +Hamlin, +form +combined +Is +"blued." +are +in +In +Clarence +otf +same, +with +we +those +concealment. +corner +and +have +and +the +the +time +earth +him +no +have +H. +Mr +inches +was +sorted +miles +\ery +J. +dull +tor +circumstantial +Is +the +"No, +as +make +consideration +kind +where +Is +represent +Individual- +of +block +moro +exports +on +ol +in +however, +trust +ternal +of +in +the +*m +when +discov- +timid, +Range +the +In +servant +street +field +(Oormly +sgreemeat +this; +beforo. +to +at +part +straight +other +the +rocker, +indifferent. +aim +mother +exhibit +th +nothing +gone, +and +to +not +former, +Romans +employed +next +section +the +their +fat +3. +them +For +black +with +Thoy +the +for +held, +of +action; +the +was +let +shall +of +those +by +or +told +at +four +you +beat +the +accordance +so +oxen, +a +should +James +may +we, +the +from +I +ono +has +the +111. +articles +1874 +but +that +most +mashing +Siletz +recall. +rs +seen +in +re¬ +based +quarter +and +for +the +feel +the +with +the +world +serious +laws, +sacrifices +and +hospital +the +was +the +dukes +at +will +helpless +onto +we* +lightened +dear +for +be +and +tho +caused +could +said +now +time +to +or +nhv- +where +Sal- +of +Legislature +to +the +going +open +ttifldown +always +Germany +at +country +world's +S. +tribution +readers. +the +on +to +That +stock +soft +battery +his +an +purpose +to +him +Quebec. +ing +Mrs. +tbe +late +setting +What +persisting +existing +States +and +f +never +day” +lungs. +money +Will +was +neck +a +ing +po;or +of +Lithia +and +of +at +of +speaking +dinner +as +or +Knrllsh +ern +Adele +middle +a +n +hermits +lodging +themselves +on +ordinance +not +Lieut +reason +by +the +Buena +slide +along +as +gown +Its +east +and +in +and +that +weather. +once +upon +*tono +upon +judge +same. +trustee +while +in +curw +no +"feminist +a +by +girl. +employed. +the +the +tho +are +some +rest +ohildren, +gleo +with +mind. +of +il +order +So +any +depot +I’ve +to +action, +obstructions, +places +trial, +the +count +child, +of +but +('(institutional +,| +Dimicrats +yourself +touotimg +gentleman, +to +brc-cne +L. +reversed +"cut +Edward +doctrinaires, +1900 +tended +who +ihe +her +labor. +premises. +the +.I +of +of +but +feet +new +this +used +living +but +Section +a +on +men +From +A +rite +Scripture +and +settled +your +meana +of +his +At- +by +district; +She +ley +tailed +felt +good +within +pounds +been +but +would +Martin +author's +upon +the +part, +down +Iron +of +opening +to +other +tile +history. +be +of +in +like +by +when +she +partial +of +bearing +7th +of +widow +nmount +ted +of +smiling +with +gain, +r +ecclesiastical +not +no +premise, +much +flight +inclined +jections +Kennedy, +deer. +fun. +ned +revenue +Nos. +crews, +/7ib +Did +of +time. +the +of +that +some +consideration +In +tho +dwelling +bonds +the +Fish +are +meeting +the +bodies +the +just +around +parties +words, +have +necessity +it +terms +have +Generalissimo +getting +the +has +W. +external +him +saftcer. +cost +. +and +$16,000,000 +land +not +train +is +shanks, +If +retreated +of +gether +liberty +disadvantage +terrible. +bia +and +than +otner- +re¬ +that +Kluszewski +proportion +Wolf +Rev. +It +after +little +Misses +the +April +The +uis»n +wife, +at +jnst, +the +want +a +payable +East +upon +ten +might +nois +York, +judges +playing, +»e**lon +rolled +I +front +brought +"These +to +will +dwelling, +internal +print, +are +not +That +fever, +the +went +had +more +and +must +week +protectionists +it +different +of +of +ment +these +; +better +B'air +features +of +army, +light +plantation, +do +at +In +of +see +flxtns +night +rode +. +It +York +ol +actor +the +faith +an +the +and +the +began +required +the +lie +soil +which +lives +at +widely +foreign +question, +am +If +storm +time +formidable +but +It +honor +chairman +M. +I +It +Among +and +what +grandest +gentleman +machine, +that +and +it +full +that +branch, +that +16th +so +soared +the +men +of +education? +on +last +amount +no +to +was +in­ +the +office +34. +holding +itself +promptness +ntalned, +Nevada +may +seldom +the +devouring. +were +st. +that +before +in +pulse +party. +The +oiJ +ofJuly +lu +five +the +grandeur +had +the +have +fifty +deposed +was +surrendered +solemnized +system +She +euneniy. +the +or +y-ihe-by, +tlie +storied +it +Dickens +s +of +cd +of +when +lie +Providence; +eyes, +by +ignorant +the +eligible +outdid +time +made +Grand +the +art +ray +Roat +from +at +done +It +the +have +are +from +could +extension +of +the +and +eyes, +illusion +army +kingjy +earth +and +first +for +in +will +Secretary +that +forget +any +Division +solved? +After +i +land +Sackvillo +present +purity +torn* +can +end +fish +deeds +When +various +cupful +belly +by +machinery +one +makes +is +from +an¬ +A +to +store. +The +that +Pursuant +no +tier +only +wlnxe +side- +their +schedule +the +ses- +how +a +a +the +while +man +a +some +ly +Barefoot +and +wire +they +and +and +vigorous +of +Patterson +now +the +in +ir +the +It +dUta-Ma. +along +good +havoc +the +too +000 +day +can +year; +but +the +Legislature +those +the +made +southeast +Edward +of +brought +them +the +of +whites +reason +best +686, +Central +uvei +his +it +Mr. +only +enormous +to +opera. +and +Government +probably +speed +In +feet +armed +, +Ruth +nirlli, +th» +fore +be +Road, +widow +far; +face +hand +of +as +they +and +division. +passed +traveling +of +Uruguay. +The +was +than +athlete. +particularly +I +to +passion +ranking +Moriarity +of +democrat +the +excise +of +only +your +possess +she +willing +cessfully +of +confiden- +or +intimate +the +tho +; +1 +marine +and +reasonable +than +or +asleep +pleasure +about +keeping +the +l'reaeh +was +ficient +and +United +helped +better +written +and +and +Cramp, +be +a +his +was +age, +had +God. +ites +the +pay +and +widow; +north-east +be +corporation, +he +my +the +did +clawing +lie +the +Boutchold +so +Chester +siczctl +Hotel +before +A« +a +dared +advertently +as +emendation; +blind +mind, +is +work +court +get +has +the +there +From +ton +of +that +with +. +sown +even +No. +reports +this +frequently +the +40 +of +in +but +motions, +showed +any +right +righfy-fiv +proposed +President +It +cheer, +surrendered +address +Trustees, +lie +nnd +dispari- +theit +c +in +tle +in +it +your +or +from +and +ngor +the +little +triches, +az +odd +it +said +found +one's +These +any +Metzger +Monroe +6. +most +shot +aav.far +6 +and +(60.04) +green +if +every +Not +high +be +tbence +succession +vs. +gers +might, +There +of +during +had +si.t +against +Commissioner +this +t»est +Thelr +sympathy +Ute +little +thss +thrco +were +of +the +enly +one +remained +Every +of +for +me +yet +h +m +correctly +sales +Which +ships +fino +means +to +Those +whom +Brown +Miss +an +1. +that +mostly +walls +were +on +its +(Signed) +f +after +was +768,941 +agrees +many +from +for +old +auction +to +his +looked +place. +of +to +benefits +to +a +Issued, +two +l'chrunry. +for +19 +and +a +utility +treason +Lincoln +were +at +line +country. +in +: +the +by +move +of +Trout +lot +-ciro... +t<> +mentioned +sir +body +and +action +wlll +make +isfaction +shall +which +the +over. +a +and +itself +less +devotion +no +that +it +position +a +indred +of +inflamed +in +the +the +yet +to +havo +little +fox +and +said +in +many +he +occupation, +it +Cbhlumption +had +It +Court +St, +district +fruit +church +rIo, +La +tho +law +high +went +laid +national +heart +of +V. +means +land, +road +acquired. +knowa +larger +hol +become +laces,linen +thrust +na.turc, +be +this +one +midnight +or +Fort +Here +very +Fugitives +a +- +i:jo.5 +extensive +the +Some +object, +. +to +manoeuvres +currently +further; +acek +this +to +Whitnah. +not +time +law +prlnoa +West +their +particular +"B' +weeks: +had +6:30 +At +the +on +way +which +of +the +bury +distance, +dawned +since +of +Purchasers +fore- +over +the +ollioo +contented, +ested +says +tuai +live +point +drainage +the +members +all +has +lights, +resolution +ns +section +Wilmington, +thence +slate, +half +. +psisi,miitt +\Vc +ths +nothing +Reed +ing +not +this +dross +the +of +Tynkila; +arc +if +novel +of +said +stock-, +which +need +again +sum +exposure, +the +combined. +snot +By +\t +up +the +last +valleys +blow +importance +ones +'I'm +Alderton +virtually +gendt +r.MissKWood- +tbe +arrive +other +v» +Tucker +the +Michigan, +trains, +careful +business +W. +ho +cizzors" +M +the +52; +Where**, +mile. +to +other +the +sorts +to +goad +boiling +dis¬ +tion +all +P. +of +"For +in +"How +month's +Bingham +of +on +or +was +he +Neuvitas, +raise +and +but +ami +blasts +would +road +the +wire +to +pass +the +been +of +small, +with- +requirements. +Tom's +tor +old +contained +at +a +if +men +siege, +was +call +deemed +of +fo +Spain +court-room, +been +ef +pair +in +From +to +would +to +the +the +to +feet +more +Wldeitroe* +charge, +de- +Voters' +rave +at +outdoor +mind, +14 +the +us +negro +one +the +previously +tho +matrimonial +arched +ourselves +on +her +Lon- +in +EDGAR +Oct. +and +vaccination, +you +vealers +Sec. +aims +noble +Hiiuar +was +the +and +ofrfhe +provont +the +design +was +should +us +reported +vsrious +already +principles +in +he +he +to +draw +and +friends +of +turn +trench +up +pitch +to +recently +set +sult +y +Armstrong, +thing. +that +the +la +been +esty, +WAMtfiu'S +them +you +incorporate +our +is +After +great +ye +experts +be +a +the +At +probably +and +product +housekeeping. +fjy +up—over +running +the +now +they +.77 +less +a +because +. +each, +your +GONORRHOEA +(carpenter; +at +surely +gone, +this +a +form +Noon +hy +at +camp, +would +country. +ho +Patriotism? +especially +upon +an +air +tne +iiuyden. +inhabltantsof +are +and +of +by +3,000 +his +per +or +the +; +mountain. +The +are +no +1 +conse- +states +and +to +ships +milk +and +his +deal +city +Applauae +being +pictures +hi +from +Boulignv. +spirited' +We +feet +of +Commoner, +of +to +to +to +notified +but +Hutto +otherwise +West +of +roads +whethei +long +of +crllis +Edwards +above. +yards +character +Ms +from +for +ladies +pre- +mour +was +it +liv- +of +nninion +was +English, +stated +an +conviction +of +calumny +Thirty +tribute +as +in +and +trading. +it +When +geogra- +have +you +a +is +A +To +voto +at +will +for +so +Keene +Louisiana, +had +fereace +the +Kelly, +tho +provisions +court; +their +to +I +in +We +nf +and +with +northerly +use +French +Hawkins +beet +stud- +bread +he +first +“Your +leutnin +September +not +ten +Department, +Iowa, +lioard +and +all +the +of +His +is +alied. +sank +and +The +receding +8. +Ittjj +so +wise +inches +to +to +part +death, +human +If +of +charged +orgaae.of +F. +take +exceed +4 +to +25 +the +opponent, +to +continued +which, +world's +basket +The +yet +street, +duties. +the +an +colning +all +malady +ib. +baiid +proached +sho +of +little +friends. +lode, +received +fire +shall +in +owners +of +3lBt, +the +at +aperient +fo +made. +taken +dinner +in +befere +accumula- +interro- +to +near +noreland, +the +not +In +the +up +principally) +trial +of +accusation; +of +extreme +made +ago +be +< +relation +that +Six +In +wise, +is +disobey +perfumed +surely +Is +is +Secretary +baking +Pilgrim +hor +completely +end, +of +a +liam +think," +I). +State +In. +and +not +there +and +hands. +lect, +plained +45 +Brooks +tho +cide +of +29. +jtll" +published +sand. +every +never +mobilization. +those +that +from +Elko +fireman's +hasbeen +our +a +employees +the +vineyard, +meetings +concerto +ratitlcat.on +that +trail, +The +package +of +it +ufanental +sing +from +IT. +had +service +are +In +in +most +in +year, +Wood +grave +With +little +congressional +pure, +others. +GO. +to +keepus +& +two +there +less +I860, +uimnt, +time +gen- +defkult +tained +could +where +most +who +a +trains +e +perhaps, +Iron +act +from +in +not +pro­ +as +of +United +to +thereof, +keeping +of +you +the +let +Knights. +Norman +electorate +display +ho +commercial +you +be +force +I +Cole +Wood +carefully +clover +Pico, +to +r-ulrements. +to +mous +freedom +and +aggregate +these +of +feel +him +McAvoy, +York +of +are +congress +nothing +miles +situation, +among +honor +Tbe +for +thence +reside +Bine +strictest +nn- +thence +personally +Porter +every +laud-owner +wagon. +the +At +value +middlings +mlations +corn +J. +but +show +address +city +of +which +four +York, +various +permitted +oveu +by +the +aoil +Measles +they +want +all +Captain +stay +root +of +uugraded +dectJon +progress +and +held +H. +baggage +it +and +it +cattle +liver +beauty +centum +your +deserters, +Its +of +permitted +system +it +bly +states +in +and, +their +called +Naturalists +expenae. +corps +calcinated +than +looking +and +of +money +of +la +that +it +the +With +will +in +day +natured +at +has +husbands +to +lost, +one +great +with +varied +office +may +peieon. +produce +like +to +considerable +The +town +of +the +the +large +as +of +tlie +safo +our +cot +(4), +He +had +Spangled +It +udvuntages +the +that +solar +beinir +Mr. +under +sort. +Also +between +have +Resolved, +bonda +That +and +a +his +harm +Major, +the +he +river +with +county, +going +was +Mr. +td +over +connection +over +liquor +over +until +the +are +You +as +whole +at +you +1928 +approached +it +Slippers +council +is +Cor. +cond +proposition, +and +dcitn +especially +laughing +power, +would +of +ed +religious +should +an +Fideles," +cultural +estate, +expti +the +French +bring +thue +the +getting +likely +to +Elm +our +which +him +Pullen +'W. +grams +Indispensable +story +the +line +in +colors. +mode +name +growing +called +among +contrary +It +of +th«y +meet +against +room +commander, +the +I +never +places +nomi¬ +to +are +the +to +to +indifferent +Helen +manuscript. +either +done +of +|ay- +paying +and +power +photon +electeH, +his +were +V30,fronting +let +under«t?oramand +here +elected +one +manner +and +more +aforesaid. +concur; +secret +started +James +think +activity +Camp¬ +cholera +gaU'S, +camp +he +of +crop +It +in +the +He +number +yet +the +devised. +your +nearly +balls +the +M +Louise +heavy +noble +all +twelve +exhausted +scan- +children +and +cle +the +continued +taken +Ma- +and +from +on +claim, +very +itorviliijia +Bedford, +c +4 +country +a +the +the +immediately +it +ruts +iron +by +(Won +that +who +having +Alexandria +the +sixth +freedom +them. +their +as +pare +ex¬ +important +Freddie +good +death. +a +thnt +have +from +(7), +Another +prayer +work +of +was +communi­ +party +sides +city, +for +faifed +of +other +was +tha +adopt +insanity +Los +P +In +whether +liver +ho +Everybody +home. +grown +at +until +it +has +a +she +teachings +the +longing +from +must +it +side. +one +is +equally +by +black +-ho'i'ii +covenant +thereon, +13; +have +tember +greeted +the +poet +On +any +ief +will +the +so +Now +considering +all +has +ener­ +er +the +this +Goodalc', +ized +office +pendence +with +John +Uth +and +what +difficult +girl. +thereby +wnen +pntli +¿o +the +inter- +have +artillery +thus +case +had +lejijili +more +who +popular +wor^t +to +alone, +a +the +rest +own +iiim +the +thev +Reach +Register +to +cows +and +which +of +the +of +I +has +restored, +his +he +o’clock +I +his +seen +fied +sibility,” +300, +a +officers +Tie +a +kind +ail +such +for +his +Nottoway +ave­ +in +line +old +hart +that, +reproach, +is +rebellion +although +so +of +diseases +wall. +which +or +advocated +more +impor- +the +and +Therein +which +GROUND, +tkat +denced +a +would +three"hH«wt«*iidforty +tlra +a +not +to +for +are +taking +, +to +quarter, +stop +ceived +looked +if +though +gauze +HiseoM +that +came +will +tiie +venient +fear; +father +at +arrogating +gaming +open- +to +would +a +were +son, +people. +with +the +marble +for +happened +water +at +Lawrence, +really +feet +own +the +for +matter +pay +the +French +under +and +it +is +said +and +him, +learned +jaw +It +wish +liiddeford +one +of +indigestible +from +shameful +the +France. +ot +contend, +ing +Ho +ac- +of +I +withstand +knew +to +crowns +both +of +before +aro +the +month9 +rebel +wlu.t +of +If +decline +morning +the +parts +public +and +of +the +of +elector +goodness +lassies, +hour +The +ago +lack +one. +annually +interest +and +front, +Senator +and +ecutive +satisfy +at +States +struck +made +if +great +signed +flictions +One +on +Ing +nectlon +satisfied +an +did +then +failed +exhausted +flour +that +this +stands +Com­ +no +of +getting +North +and +legislative +ty's +be +the +who +be +by +resi- +tho +Sheriff +Saturday +ie- +th* +should +or +In +insistence +Jects +north +con¬ +bushel +Mansion +thanks +eensational +quiet +tums; +Sullivan +home +C +conclusion, +he +"I +Orleans +young +the +equired +now +the +for +of +and +mon +knocked +imme- +the +fervent +Captain +in +free +for +attempt +be +of +been +enterprises +land +running +paper +relief +sentenced +not +Restriction +mother, +getting +members +prominent +are +Jndab. +high +the +at +62%; +fairly +such, +paid +be +which +of +large +I +tal +stitution +honeet +thut +They +States +the +trying +public +not +to +success +closing +closed +most +comfortable +roundup +else +I +— +the +spot +Dill +ut +$1 +Iho +with +saved, +together +of +ers, +three +noi +a +large +six +seen +meaaihokloot, +time, +come +exercises +channel, +to +which +is +vast +the +of +may +deliver +painting +citizens. +Bflf +of +noticed +author +over +cent +the +in +little +in +to +borne +or +sects +than +or +of +Our +seam +spread. +the +to +a +crime +snow, +of +yas, +he +get +threo +cold +The +tears +to +palace; +this, +a +the +the +do +of +extent +the +iie +and +with +affectionate +traire +aud +Weatern +homes, +newspapers +the +army +producing +also +physician +effort +lo +they +throw +all +the +live +had +ginning +census +when +mine +at +houses +pipe +again; +said +certain +and +known +oses. +wa« +industry +the +lanites +haag +of +lovely +a +gossip. +tho +every +hear +he +« +dat +available +now, +and +that +missionary, +or +mail-carrier) +thinks +or +surren. +wolcomod +those +Ihe +and +ten +troops +18,946 +Sheet +arrived +provided +out +steps +good +has +incarcerated +far +swer +terrorized, +and +sheet. +called +fur +as +ducts +lived +H +ingly +the +in +England +sale. +to +radical +There +prematurely’ +no +he +in +to +the +been +wlnJobnP +of +obligations +door +on +battorios +ham +west. +. +while +the +Sidewalks +of +claim +island +Daguerreotypes +in +traders, +The +Martino, +shrank +ward +of +tha.t +next +has +would +August, +to +further +less +can +the +arts, +large +Morgan, +not +never +fear +and +have +in +stocks, +upon +making +and +Land- +ex- +has +so +aubjact +spade, +ested +or +beneat +quietly +but +bis +search +the +for +destroy +But* +thick +ulcers +Upon +india +the +m +be +infant +John +ed +of +be +mentioned +ing +a +are +it +<*», +of +It +as +conditions +commences, +of +by +weakened, +Rexall +the +compound +and +state +when +the +remedies +besides +at +helm +of +look +that +train +North, +the +of +vious +that +the +10 +once +the +In +numbered +for +or +thence +and +Lake +that +second +Court +Nachbar; +the +Martha +since +coin« +author +banquet +in +allegations +Caldwell, +for +I +of +or +the +Bertha, +sea +lids +and +river. +I +scrupulously +in +back +the +nlght. +sheaf +garments +His +in +quarter +Silver +method +expense +established +the +that +perfect.crop +of +labor +tlie +and +"Consider +head­ +take +ot +Pennsylvanians, +12,800,000 +our +land +court +management +A +rabbit, +return +summoned, +a +uoeleta +himself +oxponses +said +mented +throughout +It +Gay +come +from +became +this +and +sum- +stairs, +the +have +purchased +which +bhiter1ly +would +was +children, +the +ha +rested +comparatively +Peter +course +a +cause +in +asutned +you +satisfied +pro- +turn +length, +with +cords +Ic +cent +teeeral +acre +ired +Pacific, +of +fancy +the +to +be +which +‘Grape-Nuts:' +while +Sodcm, +When +the +lie +tbey +equal +find, +gave +thou +personal +of +part +1298148;No2doat1468146%new, +England +bears +have +his +S +Jim +into +me, +in +newspapers +and +care +. +one +for +to +my +tons, +involuntary +market, +Hkety +be +One +day +for +provided +tin-plate +the +as +title +years +glorious +N +Me +Kier +elevating +men's +of +amounts +the +Spain +loss, +"Will +than +pig +is +I +has +proceeds +She +could +has +ex- +her +lien +dragged +there +Mttun +TJ +those +Journal +to +at +in +who +event +of +has +their +the +of +men +daughter +pick- +of +ih>' +er +occasioned +any +Legislature +and +All +Kassala. +summer +s +stance +abode +1 +tion +or +of +meetings, +likely +of +it, +that +allow +children +intellectu- +and +wer +Mrs. +take +he +In +by +to +make +notorious +confidential +Xo, +ters +into +wiiiten +alao +the +family +government +yesterday +In +sustained +in +for +Mrs. +in +our +length. +what +ler +the +Range +into +io +On +mouh +I +alluded +to +natural +M +The +buried +23V4c; +I +hemispheres +all +first +hundred +region +Idaho, +taken +sisters +assembled +They +tion +fulm'lunnn +the +The +The +destination +morning +Executive +hearty +to +for +re­ +of +who +thy +and +to +& +were +be +ln +1357, +the +love +the +rest +opportunities +lacks +be +to +lode, +as +business +quainted +In +of +adopt +1 +trom +connected +hole +first +and +Agriculture, +Nos. +themselves +1876. +or +diet +white +not +jears +these +east +contradiction +emselves +re +difficulties. +and +per +passage +ere +I +«h +annual +when +dersigned; +divers +C. +stage. +But +fire +safe +“I +city +has +would +both +were +town +city +politician, +they +light +of +as +get +Oil +14 +that +southwest +seed +that +house. +clear +if +at +dirt. +greatly +came +in­ +-m +the +aforesaid, +ultation, +prison. +nomies +the +the +both +the +to +is +Jose +better +fraterat/ +et +made +then +H73, +nurseries +she +knowfe. +quired +source +police +annum, +Utga +other +say +a +i,s +to +He +the +as +ol +Range. +and +R +ural +this +Sheffield +by +on +admired +lis +(North +cents, +wealthy +she +and +the +confi- +is +be, +erful +that +The +through +It. +carrying +team +that +not +tions. +Yates' +magic. +made +National +which +Sec. +therewith; +what +with +is +receive +in +a +that +to +alienation +which +Toanablp +The +the +thereunder +pnuso +go +are +healthfully, +the +and +word, +not +of +in +or +fact, +eight +by +of +admit +day, +days +supped +consent +during +their +1 +them +that +go +into +le +People. +pasture +risian +on +is +Mr. +because +threaU +gun- +the +his +your +sig- +000,000 +to-wit: +The +leading +however, +entire +tno +I +mouth +trying +iu +time +making +has +deep, +invalids. +__ka_iv +Kruger's +on +be +mail +has +be +Springer +Vernon, +part +be +state, +about +mor +be +large +kick +two +These +to +it +draw-off +sandy +Grifln's +of +the +how +"The +across, +floor. +harmony +as +the +flop +in +kill +comoke +read +city +for +to +Then +Is +r< +by +to +wife, +the +to +proposals +spondent, +after +ninth +accord­ +If +a +ami +to +Panther +large +slave +estate +cause, +portrait +8. +rags +to +was +of +premises. +engineer +in +the +being +eongratnlatltms +in +than +thereof, +gathered +Jew +the +&c. +ore +Klitgaard, +J2 +when +have +be +locality +cultivate +by +and +and +“Liviirivofcf.H,**are.fii +of +found +any +tho +words +Pigs, +premises, +Hank +ere +a +twin +person +sou¬ +finish +summer +snake +borhood, +position. +it +U. +first +ness +fellow, +it. +" +game +is +early +sateens +of +duced +which +they +crop. +sir, +of +changed +of +the +of +removal +one +probably +the +square +abused +is +the. +and +from +and +tbs +the +of +varying +he +can +a +all +all +the +things +of +Hi* +mixing +that +I +girl. +enabled +milk +on +Bails, +himself +over +Sedgewick, +in +There +thenogr +glisb +This +men +Puritan, +made +Central +rates. +may +rest +of +Davis, +early +at +same +of +sand, +artist +and +employes +they +The +J +after +a +recognized +Lifting +QofftaehakaOnT +made. +villages +and +poor- +res +would +that +critical +^ +in +fish +compensotiou +for +tion +part, +to +for, +and +woman +carried +purchasers. +duties, +ing +that +distinguished +2 +o +i*iv +an +after +ded +lean +and +his +north +feel +their +I +which +much +without +effi­ +Li +to +in +A +F. +gathered +of +Secretary +.'too +hundred +ami +doubtless +only +for +by +men, +than +hard +few +will +White +Washington +front +coming +west +be +can +tumes +written +foreign +cured +absence +hold +for +number +so +In +post +hold +lease +Staples +making +that +honest +attorney, +when +Wisconsin. +iu +been +the +cure +though +In +Chase +or +was +tin- +been +remaining +a +fortiQ. +or +displayed +whole +pany +the +all +dropped +Glasgow, +cept +and +them +moat +one +to +direction, +their +Clune, +are +Carey +to +only +a +it +take +the +permanent +no +heart +so +peace +at +of +(irove +touchdown +hadn't +nd +action +other +t>> +showing. +made +made +their +verduous +to +they +<>« +mysterious +to +evening, +a +opposite +were +Songster +from +shanahau, +one +plaintiff +interested +witorit +wife +and +Pruss'an +am +about +the +Lexington, +Sores +ttpuare, +Hotel +u +tfleir +immediately +of +concern +all +indeed +she +pected +Hood. +a +deep +think +years +on +Carioil +her, +amount +of +girls +to +the +great +the +good +In +from +few +was +act +and +And +and +General +dollars, +en- +came +and +all +running +the +be +action +growing +the +program +tbe +for +registered +period +his +But +the +of +marked +and +up +ho +bull +courts +Democratic +should +severely +hat. +Burleigh, +th +inued +increase +moved +cal, +it +the +less +of +the +possibly, +has +shot +the +corps +individ- +the +close +to +In +friends +pa- +the +last +grandfather, +der +can +upper +ble +been +by +ships +move +Its +producing +sation +have +plumbing, +I +of +tack +cannot +all +he +the +last +was +east +an +it +of +P, +kept +to +of +popular. +the +gen- +each, +capitol. +any +terms +or +for +members +salaries +and +were +The +chan- +>u; +orchard +one +the +I +by +State +seen +the +newspaper +were +of +Sec. +Maryland +County +basis +much +that +and +It +course +Creek, +conjures +this +capital +little +committee +in +days +at +the +from +ten +the +they +belaying +down +House +gration +come +unnum +the +on +Block +siilllcieut. +lateral +judicial +the +a +C +incurred +ance +the +greatest +roots, +strengthen +have +issued +of +will +mission +ing +who +me +this +as +East +roll +the +who +is +with +amusing. +Albany, +good +conveni- +ha +stricture! +presi¬ +an +and +with +Looking +first +writhe +ner +procession. +go¬ +price +neither +are +horses. +is +Fristoe, +The +the +which +by +of +ute. +and, +south +a +the +of +misplaced, +by +as +her +message +would +the +and +has +know +basa +her +every +treatment. +closed +that +| +and +chairman +feet +and +an +fl +\vas +record +has +Onions, +that +to +of +that +grant +subject +realized +his +by +1 +he +State); +a +sum +within +: +qualifications +ed +horses, +leave +love +upon +and +heavy +while +its +rats +the +each +fi" +here +which +a +waiting +hundred +or +Medi- +nize +quo +niirked +be- +truth +much +nursed +appeared +r..lli +et +rest +Virginia +Is +other +temperance +been +I +tato +have +times +had +blow +go +mules. +lS'Jj +out +and +East +cakes +And +as +see," +This +fatuously +language; +theft +good +eye +Goif, +defined +regiment, +Houlihan +dullness +will +the +assured +ARE +pounds +10 +N +One +fishing +proper +south +and +ir +my +St. +they +north +out +Hamilton. +ings +this +of +the +dose +West +confidence +within +Chile +was +as +Cap- +044.80, +custody +feminine +Automobile +elections +Caucasus +Orleans, +Salary +su. +extcn +dying +board, +dinand, +country. +street, +Laurence, +come. +Booty, +plead +- +'1 +fering +a +ranoe, +dred +floors +crowd, +blaek +work, +practice +born +magi­ +and +whioli +Richard +Waahlngton +this +attempt +tho +six +JP +been +com- +friends +and +of +and +The +against +rock +gen¬ +outward +south +request +the +the +e»id +bottles. +the +offer +weakness, +ly +a» +dili- +have +between +W +not +for +in +children +was +you +Consideration +trees +of +the +officers +tory +it +exports +their +boards +v +Mr. +of +th +of +north +the +Despite +on +longing; +the +long +at +from +I +employees, +at +Macfar- +cost +else +literary +he +mounds +once +we +few +the +promptly +Of +based +it +she +traces +buyers. +ject +scene +dutiful +tho +and +any +made +wheat +that +home +camp +roinplinantary +any +Back +of +"I +without +If +estate, +everlastingly +counting +the +22 +tLns +Etilartrercetii", +El +received +spite +coutine +"noble +to +tnerei +-lecl»lou +of. +and +bushels, +work. +apply +said +full +made +turn. +the +the +in +of +aam. +e'arvÍLg +an +and +dead +as +Surreys, +of +the +of +found +A +He +life. +of +!><>ys +Afierour +boldtb +se +the +they +heads +warm, +ibe +before +him +world. +ring. +street +Nevertheless +line +or +distance +a +food +ihe +fellow +bids +the +of +will +miles, +so +to +ability +that +is +shall +it +its +other +wel- +Speculation +was +Of +all +vice +confessed +sys- +knows +and +less +identity +our +can +that +the +burn- +to +antagonist +kicked +of +ai-sice- +any +as +you +west +and +Trov +his +for +acquired +lous +food +in +have +cloud +absurd +This +llfo +In +engagement +Agricultural +in +school, +Gen- +for +dropped +soap. +Samuel +appears +will +must +the +cxprossod +Consumption +speedily +becomes +I +When +America. +bank +The +dopes” +trip +Correll, +Corps +pe- +man. +made +events +be +given +In +to +ance +'he +on +who +, +l +the +in +and +dian +without +and +ux +producing +ef +shown +us. +During +gatheiiiw +Will +these +who +trevillo +meet +while +day +if +time, +November +for +and +us +and +,r +to +in +law? +or +not +party +is +are +week +Pryor, +cone +Augusta, +cut +his +private +over +of +tenate +because +allowed +afternoon, +got +by +gen­ +grams. +Taylor +for +paltry +to +same +every +place +Johnnie +5, +properties, +settled +heavy +of +are +religion +and +1- +scribed +John +White +clean, +the +party +Rutland +given, +46, +stock +from +repudiate +capitalists +cash +you +geometry +Lord +courage, +of +W. +tolive. +ol +only +that +on +and +day +the +practicing +He +E. +to +show +regiments +nu +of +evcr +af- +8, +ment +benefit +one +mother +a +as +also +Nature, +week +already +nized +girl. +and +the +notify +amongst +about +he +with +for +of +to +than +25 +your +he +of +now +upon +nation, +Agne* +ber +denounce +belieTed +being +He +Dont +his +would +Mortar +two +public +field, +made +return +and +The +double +our +and +drills +and +man +had +cents. +crop +understood +praise +but +wonder +all +circle +of +so +was +other +senior +telegram +No +with +Rebels, +there +of +Bronchia +education +men +fiatryat +Christ +cases +with +and +useless +then +Snowies, +assistant, +adjoining +with +sinca +for +It +Will +Ir +value +Inevery +to +their +from +productions. +Andmoraily? +§7,000. +regular +presi- +that +an +possible +All +preclnctsshall +the +lhatenormous +drafts +franc +but +savoral +months, +open +furnish +now +temperance, +the +I, +at +rough +systematic +uo +said +tattera; +As, +of +be +go +government +Huxley +This +story, +be +onymous +additional +caught +stout +according +is +I +obliged +draw +wb +sell; +I +resembles +to +is +to +•no +off +engaged +not +services +the +of +ny +inter +the +L. +that +law +In +likely +name +our +of +school +and +mess, +could +t< +re- +traet +Samuel +turbing +of +and +violence, +that +dlvorco +interesting, +and +has +false +make +insane +or +paid +gcntly^sirtmcr +thence +necessary +a» +go +in +ly +many +The +BeardtUy. +appointed +formerly +section +are +out +for +(2), +are +th? +number +almost +aad +therefore, +day +San +the +charged +was +almost +pay +this +their +to +little +why +allcoupons +are +about +ber +his +and +before +midst +handicap, +proscribed +At +in +that +giving +Western +can +flash +the +down +bo +aftaaaaM +cttablihlug +about +House +lock +the +try +hospitals +cause +that +dealt +by +nete +10, +was +be- +for +thinking +for +the +and +consequences +cut, +have +is +was +the +happen, +and +him +is +is +while +city +foul +bound +even +he +distinction +a +?8 +or +Bidders +con¬ +equipped +to +ac­ +assiduously, +from +maid +on +and +of +which +in +E. +maintenance +and +Court.The +jolliest +Grass +only +behind +Lincoln +to +mi +abuse? +.iieii +On +or +evils, +riders +the +the +work +grant +6th +own +funds +caa +of +lives +aro +with +will +can +for +he +know. +judgment +also +the +observed +the +nucIi +said: +Bard, +No. +St. +other +my +history +great +witn +Sunday +of +tirement +within +I +the +employed +state, +raaayrd +but +and +was +anything +courses +by +the +as +sub +outlet, +fact +of +ol +dishonest, +to +Presbyterian +bian +Christmas +on +ples, +D., +lupe +admit +critic +will +of +litical +it +or +the +annum, +and +reply, +inous +fingers +Miss +the +climbed +corner +stop- +After +of +have +make +Garden, +equal +Wescott +William, +and +or +certified +com- +to +anything +R. +land +great, +tho +and +fly +the +is +eaet, +fet +for +cajiaiu +committee +Douglas +.not +and +and +Senators, +close +During +character +; +The +by +the +into +thi* +consuming +the +on +a +half +who +ir»n; +clearly +Burnett. +name +no +up, +very +Cadet +the +satin. +branch +p.rtment, +to +this +>;i +who +described +perfection +\r. +growers +stamping +by +said +out +a +upon +spirit. +various +the +is +the +family +when +coun- +was +milk +the +lstceurse +is +higher, +until +It +the +be +copy +game +be +advocates +visited +to +tho +to +hoop +piece, +started. +tell +chances,' +and +must +was +32@82y3c; +the +atreet +at +are +with +Mason, +lc. +may +repeal +not +family +of +means +exerted +country +has +del +and +and +environ- +the +quietly +ing +times +negro +sleigh +genuine +been +feet +was +follows, +Ihrm +invite +that, +and +scrap +- +be +their +and +rail +as +In +be +ness +at +suspicious +bodice +left +visit +a +were +measure +guch +be +melting +the +the +propoeeaa +that +herd +is +or +her +clanging +victory +can +upon +get +flounces, +of +a +many +ny, +homes, +restrictions. +his +of +last +time +his +store +no- +us +ing +and +occurrence, +singly, +en- +long-pointed +Prof. +be- +cut +tube +in +the +the +weeks, +thus +Washington +ot +the +to +market*, +plaitiff +his +The +than +bell +the +to +in +rattlers, +than +ana, +equally +tinued +and +tive +roots. +Waa +as +Ile +have +mill +ations +say +a +his +sad +Oohoomisew, +through +into +-tioufl +cor- +and +tbe +If +nf +to +exclaimed +the +to +of +soon +dress +one +on +negotiat +able +either +band +him +these +Tho +to +generous +the +fearful +one +eight +to +the +backbiting. +if +i +of +and +one +order +small +17g, +and +ery +Oeo. +; +take +of +are +vice +went +per. +ground +executive +this +on +havo +for +Allston, +for +cow, +looked +and +spared +of +in +hoys +them +and +shape. +occasion +a +dynamite. +pistol. +States +quarter, +be +Weatern +And +That +was +all +along +seemed +get +the +1868, +which +direct- +bat +to +nothing +justified +are +lolding +to +convey +with +association, +cost +rather +week +Schoen. +85, +pan +during +daughter, +superfine +that +and +found +shunned, +young +and +“Depends +or +at +and +tend +the +which +the +Cow +reso +one +Pallcy +Convention, +United +the +single +east +And +lustful +an +one +the +never +by +dealing +it +the +Beyond +one +Garner +two +ing, +Mr. +six +our +about +any +this +gang +he +that +tensive +and +great +tbat +this +snMl +avowed +degree. +divided +the +have +past, +or +the +I +officers +aaaa-aa*, +Dollars +a +to +of +yet, +their +thrn +about +i. +Beai +said +whioh +of +Ed. +the +are +pre^entfinstance +who +tho +vice +man, +and +to +Celebratod +she +left +of +largely +kept +their +Cabinet +to +or +portion +Spokane +to +to +Trustees, +flu- +being +with +amining +one +Yale +woman +so +Marion +and +be- +d +seemed +case +one +be +Theae +sooner +und +States +told +soldiers, +among +said +wound, +progress. +ous +and +right +is +— +the +life +passengers, +done +too +the +government. +up +was +at +this +ho +pulling +get +land +chain +Remember +much +Barnett, +poliry +John +to +in +up +sewers +later +inconvenience. +go +proposal +the +and +girl +legation. +them +But +stop +These +collection +swung +leaves, +was +(21) +smoked +railroad, +regard +of +on. +held +edition +produce +vigorous +said +I-land +moment +final¬ +the +.requlsites +A. +a +dersigned; +is +ol +these +the +48 +displayed +He +room, +Mon +i +know +had +< +6035 +relating +we +issue +wlilrh +officially +the +to +t +urging +or +liberately +crane +accessary +laad +if, +in +it +inure +in +Calvert +at +pay +Man +to +only +ocracy +committee +erected +layin* +was +surplus +can +bringing +the +I +1123 +Mr. +H. +light +of +to +and +wonderful +shall +formed +tion +on +phosphates +institu- +his +then +trade +course +Will +of +in +application +the +and +for +is +rush +an +o' +the +for +has +wnj +put +speak +belonging +will +cial +to +and +and +her +their +rule +lisp +ex +of +carefully +th +ot +Walsh's +grees +business. +remarks,to +In +basis +memorandum +east +guarding +heads +injuries +sistant +girls, +travel +June, +France +place +rows +of +Club," +; +the +the +them, +it. +ed +Second +closer +he +a +service +years +to +lesser, +and +on +channel +Arthur +real +here +Manchuria, +be +Queal& +vada, +up +to +East +walk +oficer +a +debt +:ion +being +with +of +200 +gages, +lot +and +Above +verely +In +North +not +by +Yard +after +brotherand +In +possess +nei^hboi* +Pennsylvania +(314) +sivbject +of +is +embarrassment, +forget +treatment +present +Johnson, +County +perior +min +man! +who +in +drum +rather +Maid +the +intrust +the +was +give +in +western +closet +Thomas +to +has +storage +him, +ol +"Resolved, +Aittcbeli; +but +draws +the +being, +the +to +stamp +mid- +arid +well +inclined +us +of +to +pressure +the +checked +in +a +said +Sentt- +vaccinated, +was +down +of +a +assured +from +be +governor, +he +b'y +not +gin +by +fall +nndeiltlg +years +& +When +such +dealings +a +write +of +to +this +at +Em- +prior +should +Edward +6th +findings +of +whole +some +Ink +mosey +promissory +from +every +delivered; +Bluo +the +going +o +agreement, +and +. +a +as +and +president +uat- +gular +York, +else +some +in +to +which +and +bo +Picketvillc, +made +this, +j +J. +it +that +nation +home +when +set +appealed +of +With +occasional +time +that +promise, +some +God. +planned +iuto +but +that +much +Three +Baree +devlsluK +acre +accept +(Siu-sgo +man +meridian, +let +trip +The +tivity +he +of +Oc¬ +clubs +lawyer +ills +prescribed +lower +tile +From +by +to +10.746 +meat +curiosity, +result +them +period +did +hook, +Gover- +< +States +that +of +total +'ordor +objected +ahady +now +Every +doubtless +only +moderate. +devices +limits +arid +an +term +of +branch +mising +votes +oppor +thirty +urges +Inst +corded +ond +custom, +essential +time +I +Will +Ismail +Gladys, +lie +and +out +Balsam," +ajralnst +we +Is +Claim, +Now, +all +wine, +be +"fraud +with +tracts +the +< +your +from +sugar +disease, +debates +$52.97, +that, +in +on +and +France +daily +compromises +heard +any +and +he +the +activities +the +not +missionarier +cer- +away +about +by +the +house. +and +a +or: +iU +00 +to +not +understand. +vest,” +upon +pauper +Thirteen +makes +In +by +and +But +mat- +this +tbe +advise +the +increased +wliiohwas +will +was +door +Mrs +same +to +parts +not +who +Cincinnati, +way +River +teachers +another +raw +to +fortunate. +sec- +Freemen +to +confiscation +writers; +the +d +why +Its +3; +the +elected +wife; +lessens +on +has +to +but +in +no +t.ixxi +plian, +of +or +over +Maria +that +the +lot; +and +what +party, +"Imadoupraymindtogo +tables +pur- +means +Western +can +from +could +not +up +any +when +past +side +pose +iudeed, +book +This +storm +stand. +the +to +on +any +bright +taken +repreaent +In* +the +the +It +of +ginning +sulphate +the +instead +cent. +be +who +us. +caused +the +gether +ota +claim, +admiring +of +tendborough +from +General, +1852 +finds +jaws +been +for +to +fessed +table +have +from +on +route +ver. +most +any +deeper +to +The +at37® +whether +in +Hall, +28th +not +winter +emulation +discover +when +reliable +is +among +small +the +on +poultry +him; +Grace; +delivered +of +ed +to +who +ministers +by +be +ahead, +reject +with +name +mother, +of +this +the +good +of +ing +be +from +of +a +some +not +that +or +the +owner +a +very +parcel +years, +around +erty, +the +Shirley +market +again. +characteristically +internal +planting +an +tinued +the +by +great +on +the +restore +and +Shrine +ibition +staff +where +claimant* +violin +on +parade, +be +moreo +the +and +2,134 +extended, +prepared +clusive +!strength +56 +at +manufacturers +have +of +far +bbis +those +lllc +car +relations; +obtains +this. +that +the +on +speeches, +7 +is +openly +tell +were +are +cent +up +J. +money +had +deal +government +to +York +phots +a +its +nwj) +Dickens, +of +perfectly +Mortgage +as +it +was +an +bacco +question. +that +at +and +Carolina, +earners +Board +'convention +to +the +tho +lire +fifty +e&iIae, +honest +He +the +had +up +the +several +fashion. +neighboring +bliss +of +experienced +, +row +Inflammatory +of +women. +the +poat +hal +future +the +the +folio +No +day +was +who +and +Wherefore +P +North. +he +und +were +of +capital, +up +entirely +characterized +particularly +of +and +house. +P, +t +attached +town, +aml +buff +soul +thence +some +the +be +lower +slipped +which +The +that +whose +adroit +tensive +Now +having +traces +The +89 +it. +the +ted +placing +that +a +class +going +Now +that +n- +on +of +political +do +theijr +making +ing +attempt +little +had +300 +December +Uuring +the +M. +inch +the +before +Stout, +well +puffed +show +Crowders +m +construct +use +a +first +white +was +stunning +of +streets, +families +we +than +opposing +flagman +Ward, +There +when +of +Favorite +57' +des­ +it +only +Senate, +do +one +* +not +in +as +have +her +because +yearly +24,689 +bel'oie +my +we +deprived +three +must +guilty +emery. +himself, +say +its +that +monH, +class, +louda, +recognize +youth +tain +nccompnnlcd +in +sell +dress +construction +rig, +the +newsboy +Hubbard +lot +with +Gum +steamer +lio +to +on +hundied +and +on +shellac +kill +testimony +when +can +ings +and +taken +jMirmits +Nettle's +giant, +desire, +to +sold. +Box +exchange +into +an +are +There +it. +of +recourse, +own +duty +vlclousncss. +or +the +Duiiet. +an +“spitzelvereine,” +pnplic +Stockholm, +this +successful +to +the +anl +I +damnable +to +UN, +euioved +in +Im +anxious +be +to +to +powers +of +arid +between +of +go +re­ +begluatng, +announced +c., +go +to +of +ducing +.00 +seems +bills +latch +moe +or +to +not +hold +down +stylish +the +a +or +his +spite +$6,000. +April +tons, +to +It +next +On +sure +every +in +Ames, +tho +off +do +sons +any +the +817 +of +ns +sinuation +wore +Jfye +but +only +gold +256,204 +six +regarded +fact +have +Andrews +one +fifteen +Senator +unsavory +oth¬ +foreign +retnm. +assures +the +farm +violation +The +decreed +can +of +steel) +in +I +erature +blood +Chinaman +evidence +the +to +on +They +of +10,000 +the +Henry +the +as +1050 +report +incorporation +zete +ioined +faith, +clever +negro +the +campaign +bulist, +be +seemid +in +ty +the +1S", +work? +tTnion, +premises, +without +oven +the +privilege +was +near +nt.v, +Even +to +Czar. +have +the +for +simply +bers. +four +will +In +Another +for +gressmen +along. +Company +N. +is +such +money, +pipe +preset +would +promises +but +enlargements +Thorne, +took +absence +traffic +told +are +and +fed +he +of +there +tbe +years +door; +lire +Iquitos, +in +bill +lace, +prehending +over +braska +An +said +here +in +ed. +streets, +thirteen, +in +paBM +of +at- +dent +to +near +rapid +7 +remarks +Asiago +that +his +them +are +which +in +vi +a +ers +balls +great +, +the +the +nnd +Hay, +architecture. +south +of +made +spend +Helen +limit +latt +and +Andrew +the +but +obligations +struck +Farm +that +do +n +overgrown +father +cases +--tweeu +confusion, +been +selves +law. +taken +plan +7' +will +indi- +appearance, +in- +: +end +rare +eltlzens +and +en +I +Minnie +out +started +sake +the +of +Block +t^p +tn +half +called +more, +has +Ha +each +lumber-yard +true +by +Increased +thousands +to +to +to +Govern- +to +dining +for +fighting +fa +were +laboring +were +1 +large +to +Mackerel +us +Mrs. +to +commanded +the +has +in +e>ame +office +whole +the +handsome +besides +and +was +concerning +a +and +one +Spence,. +dersigned: +to +' +injr +such +exercise +of +speaking +tle. +State. +aro +locomotive +all +Every +Mann's +and +they +a +far +for +Miss +from +and +the +U. +sonable +comprehensiveness +sent +very +buggy +perintendents) +therefore, +the +less +equare-riggedrehip. +service, +ship +when +but +Is +Democrats +line +her, +the +too, +.- +which +I +says. +jockey, +nitt +ton's +compacts +because +Havana +England +ted. +almost +came +of +Snodgruss, +in +as +spite +of +tan), +was +the +of +war, +orchards +impaired, +the +It +and +tho +It +would +to +benefit +moist; +of +the +able +to +his +dunug +2 +iu +Manila +do +ists, +not +following +rt +became +they +follow: +cause +not +bound +ond +will +the +My +& +thi: +twelve +und. +attained +Mrs. +Orient,* +con- +horses +it +of +close +address +in +is +seems, +Mrs. +of +stroke +As +king. +off +year +on +the +refreshing, +made +for +of +for^/i| +house +One +about +led +the +Aud +duplicate +that +wilhelmina +land +the +out +of +Rowley. +appropriation, +tho +of +inconse- +were +ship +like +all +east. +the +against +history. +of +of +fifteen +manufacturers +and +which +pected +Btrengthcned, +of +foreclosure +of +mixed +ranks +com- +member +and +Alcock +for +the +my +think +to +Captain +Mn +stable +Ai +day +in +powers +ment +this +on +plac¬ +that +may +have +chap- +ed +of +that +J- +and +Journal, +stated +Perth +a +put +of +nitions +tious +equal +even +young +when +bunker +the +col. +elections. +evolved +before +dersigned +Fitchburg +many +no +to +as +on +who +is-uing +a +it +official +able +cooks +when +regardless +hia +and. +«Urt +the +you +Fred +his +worth +gap +Full-Crew +was +and +bill +to +the +the +Is +many +88 +infrequently +the +in +by +from +and +their +with +ing +neck +December +Why +becomes, +on +provisions +balance +bounty +to +for +labeled +preliminary +own +suc- +on +said, +who +Fra +Hawkins, +in +3. +comprised +law. +going +recovery +No. +8ch( +two +that +means +made +the +forest. +if +of +ily +never +be +to +not +two +pro +was, +every +Hundred +at +the +partic¬ +John +co;irt +leaving +accepttable +Christian +it +French +deep, +began +work +con- +ehould +of +three +neighbor +gan +by +, +in +It +enjoyment +on +pounds +Hundreds +of +from +beneficiaries. +Maitland, +an +smiled +the +of +can +&ueh +on +InolsMst, +beside +on +routes +using +some +is +balance +for +ras +soundness +as +ail +There +Son, +aud +and +C +princes, +fist +at +editors +these +the +promptly +11 +consistency +the +counter, +as +east +now, +again +increase +tracted +manner, +member, +We +or +of +lion +6, +at +she +us; +as +who +vital, +Line +to +garments +and +double +the +tbat +Now, +they +State +ring +will +of +0 +slave +from +material +sponge +winter. +milder +the +ers +be +practice +Tho +share +America. +36 +autumn +There +which +vard. +The +thn +met +Branch, +avenue +government; +amoog +finished +turned +was +the +of +way +offensive +lady +questions, +mints +very +one? +Peters, +wa- +rlpo +letter, +for +as +the +as +and +force +This +where +average +tween +a +to +and +al-o +I +fix +help +delegation. +not +ot +themaelvea +With +the +Gold +free +dier’s +policy; +was +from +and +I +where +noted +of +such +the +not +before +remember +faet +almost +of +with +that +south, +their +crcss +No. +picture +by +the +cliff +army. +son, +Do +Rich- +of +is +cise +distinguished +Spanish +closed +As +and +that +in +being +scores +. +A +simply +time +any +Mars +enjoy +Gautreaux; +kind +see +In +dried +in +Is +in +men +bo +There +last +be¬ +ini +and +rially +and +The +sub-dominant; +that +can +in +thereto +her +pe­ +by +elements +I +are +Gus +differently, +uuys +sa>e, +amendment. +be +year +point +may +of +men +some +such +with +A +Z +rallying +single +132, +Keefe's +0»»- +aid +under +firm; +criminal +oritical +the +Wendell +British +estimate +Vergennes +more +from +ce +thoM +Fifth +re +to +provisions +lb* +Republican +was +to +each +them +tlie +of +could +while +Mo. +a +of +all +the +that +different +power +for +a +she +open +of +cement. +May, +water. +and +to +the +singular +Mr. +about +Mitchell's +press, +mended +every +the +two +present +nected +to +$10 +between +the +Note +ous +for +born +Then +Franco +with +in +for +and +a +his +improvement +-t +The +aDout +M.vstcrv." +to +of +Then +infirmity +k*.»:i +confined +fact +tax +Aldermen +convenience, +enjoyment +chemical +Surgeon +your +and +and +late +of +and +then +cent +the +as +In +least +the +however, +vessel +yet +public +which +his +It +of +liquor +default +family, +most +given +the +<•sometimes +and +had +/pur- +ground +their +womnan +hour, +who +mobile +Mrs. +hesitate +' +name +ordered +a +a +dollars, +take +water +Oovernineiit +Mrs. +of +dove-tail- +authorities, +was +the +the +the +groat +de¬ +to +from +he +exec¬ +at +nun +before +and +holding +has +lot +let +help +ho +his +are +98 +1903 +his +their +summation +of +an +has +nor +fresh, +of +the +Mrs +no, +leaders +niftier +year +to +the +or +to +California +on +stili +inits +high, +freight, +the +of +office, +as +to +ed, +sliall +uovel +Beard +as +Blond, +only +to +will +Blanch. +work. +P, +most +the +open +lit +were +like +his +him +2 +but +and +only +Illustration +go +and +was +to +date. +ire +of +mariner, +peak. +arrangement +Tills +who +employed +an +the +April +there +the +We +of +set- +rules +mish +and +farm­ +exhaustive +same +any +town +Mr. +ye.r +on +herd +seed +own +in +For +be +ainçular +those +ing +improve. +were +of +ravli.e, +the +gained +in +required +English +was +States +pure +when +the +to +otherwise, +support +live +Ryan's +package +intimately +Bloomington, +th$ +machine +d« +they +enacted +and +patients, +and +Two +It +the +As, +the +to +of +mocrats +way. +2 +Bob's, +surveyor +m«r»M +and +I'ulil +n«tt)n« +In +Whisky +wet +. +he +corporation +than +haps +then +love +or +drouth +Whlte +this +1' +its'outcome. +if +or +ashore, +200 +just +forty +good +acres +lation +matters +no +gradi +un.iimilable. +of +along +the +and +the +»o +storm +de- +rrom +Mr. +and +Lincoln +te +by +graph +feea +tation +kettle +to +forbiddi +207,458 +taut +himself +thnt +better +titan +but +towna +make, +pension +M. +work +children +squealed +objections +king's +"Just +same +.|wllson +IF. +tar +from +to +the +and +noisy +!*i +amount +oppos¬ +The +and +the +dashery. +and +liatli +city +line +inhaling +a +a +then +giving +no +left +I +a +Scarfaced +u +,000 +These +irregular +anything +know +south, +tlio +ister +from +and +which +was +DemoemtB +stool +chance +conrae, +books, +stout +"tlean +the +Fishing +united +in +with +the +knew +will +whennold. +from +Dorn. +made +third +the +and +found +and +No. +off +ssion +maa +a +eagerness +and +cupy +ever +ever +for. +a +its +hand* +for +easily +of +have +if +say +a +was +Some +building« +Confirmation +to +have +tell +Baca, +of +or +claims +dele- +on +arms +A +and +a +for +of +thorough +provides +running +do +results +have +war +-ale. +ed, +to +of +the +temporarily, +a +that +yon +restored +the +t6u4; +junctlon +«r. +regular +Y +or +have +pleasant +.cour +York +the +expression. +lungs +cannon +consistent +not +building +From +at +opened +northerly +in +friends +grounded +man +be +by +and +Otgt +large +he +brothers +commission +askii +following +or +talk +would +lotus +then +y +supply +would +blood, +which +As +in +of +ne.vt +bordering +ture +a +reploy +gathered +the +of +the +take +also +came +which +maintained. +support +him +Mater +remarkable +Claremont +the +10 +fluential +would +now +for +most +physiciAns +further +thev +the +worked +north +water +expense +you, +her +and +that +was +of +nal +actor, +doctor +lay +and +eggs, +sent +43 +. +name +to +this +the +are +broken +a +of +thereby +thereon +who +selves +gigantic +here, +the +the +wcro +being +pleasure +section +said +. +the +bank +of +higher +IM +teach +icient +Ira +total +new +did +6 +be +a«pleuilid +full +It +there +na- +strongly +give +it +to +confessions +be +in +that +their +the +showed, +head" +so +November +of +and +east, +selection +religious +daily +other +at +with +at +prairies, +for +bodies +office +is +de +Ad- +utaiiuu, +and +aUnd +Serricks +any +the +about +If +be +pointed +"What +some +Hoard +stories +the +07 +that +tho +numbers +to +case +rise +and +for +by +side +aravked +ssigns +but +party, +wonderful +A +any +my +of +its +sclf-disoi- +it +Truck +in +it +Ihc +of +made +cabin, +the +of +of +run +cupful +the +red +the +is +benefit +are +Congress +at +1st. +oilier +admit +allegations +amount +of +> +dence. +as +13 +might +proved +Robert +spaamodie +and +entirely +The +taken +it +two +times +course +minister +are +reform +Nottingham +tune, +beat!mt +Combel +struggling +entertaining +young +They +Irish +plead +Minister +the +Id. +carrier +I'ink- +were +far +error +and +whole +which +of +to +repeating +your +each +the +that +This +for +be +point +a +Therefore +t +wh1o +ifi'est +the +with +*11 +estimates +a +An +wuude +the +it +Cali- +appetite +of +at +set +for +two +treated +even +yesterday +to +of +and +Democracy. +in +of +For +fore +ace +its +in +justice +line +the +ican +of +a +lieved +That +far* +w« +by +left +wberever +the +competition +somewhere +cast +of +the +XII. +close +coming +prisoner +E +been +tariff +house +denominations +who +cf +paid. +gold +months +the +likely +the +the +length +the +him +I +hips +out +sleep +and +named +Ifffht +not +of +lamb +es- +indicated, +baa +out +an- +eventually +that +of +out +was +bushels, +inview +tled. +If +attached. +is +ers +barn +solved +situated +45 +cab +good +bids +Germn +the +the +wishing +some +morbid +minutes, +This +from +his +advertising +other +respect +0 +&e.. +bring +hold +kind- +ot +of +a +in +tbe +straightway +of +the +would +recently +by +the +transi»ortation +must +personal +this +other +..f +we +h +its +has +skiM +depart¬ +unreliability. +x +that +upon +where +nereby +made +believed +not +of +today +and +much +that +by +well +said +to +but +sin, +possibility +sailor. +val'ing +livered +ening +Harrington, +pos +history +us +attainment +wheal, +down +want +medicine +down +not +the +ture +truthful +capital +learned. +of +we +greater +to +kindest? +Y.) +; +and +We +utter +as +She +$200,000 +These +England +either +shipments +are +now +a>c«rtalo«l +Blackwelder, +parents. +thorized +names +his +tho +the +ques¬ +a +already +their +had +Their +purify +would +there +special +events +side +Congress +ration +Perhaps +buhuls +a +this +­ +wh) +elected +by +and +the +both +lluck. +happen +in +expected +No. +lies +this +wrong +Alex. +per +- +of +This +irst +was +When +a +tbo +emptying +prisoners +rattled +course, +to +be +completed. +newspa­ +most +would +be +foundation +on +They +pick +several +the +chair +of +mountain. +change +You +to +to +markable +the +about +The +do +beetsteak +and +apoona. +the +Corwin, +Cent +makiug +A +first +themselves. +which +the +the +million +poses +led +to +roaus +iS*b +which +him +comstock +Kimball. +it +After +disregard +to +Suic +be +recommended +success. +but +it +impossible +of +Ohio +that +development +bare +bonds +climb +Tall +the +Sher­ +Nothing +as +of +West +in +here +evidence +se +life +the +unfortunate +Wiggins; +had +is +there +debilitating +sinking +through +solved +Dowsott +would, +men, +the +an +hit +tide +the +acres +localyy +responsibility +rider +to +brewn +the +hicher +their +alysis +foreigner +hist +several +a +sionally +has +Jens +life +a +hundreds, +case +against +thu +tinir +capital +or +that +unfetteredand +company +of +ay +such +of +we +pnrties +28c, +school +Radicals. +everywhere +mom +given +absoluately +ty +The +by +the +incurable +section +ashore +can +Roosevelt +default +for +political +affects +the +In +business +significance. +they +the +an­ +regard +fixed +sham +touching +the +.August, +as +War +tinted +shell +utter +sas +where +effected +endorsement +our +roads +During +ensue. +ti +over +there +made +great +one +the +the +the +it +100 +passed. +watch +150 +were +thickly +levy +more +are +Europe, +to +that +75',4 +it +district +but +as +in +women +lication +at +BiMlb»ral,«oor»rl(adJoiala«lbaI)«iiiHi +tho +and +t!r->e +and +and +they +R +are +tion. +anthem +his +of +at +the +est +the +Augustus +the +in +duly +ex-Governor +of +years, +be +to +was +the +standing +is +il +damask, +of +deg. +guns +miles +But +other +has +cattle +the +and +struggle +and +alter +pris- +economists, +sufficient +t +already +children, +be +a +the +bridges, +in +there +school +Prohibition- +to +the +conquest. +the +neces- +just +a +and +were +laborers +E. +Numbers +and +a +of +imagination. +clay +Com¬ +a +properties, +be- +tion +lawn, +the +hill. +Wilbur +monthly +of +immigration +Minnesota +upon +converge +Roman +dress +dollar +house, +every +pealing +du +it +perform +A +severe +not +ought +and +defeat +sentiment, +throw +it +leeo +experiments +for'him +shall +cartridges +go +paramount +bound +Captain +would +i +mii>ortj»ut +at +31 +w +the +is +evev +a +letter +head +North +sure +yer +lion +figures +Ihe +amount +nets +and +Finally, +naturally, +The +largo +2 +the +bere +official +in +pourt, +gowas> +velvet, +were +for +Is, +tiny +Raise +tling +the +Bonbow's +up +idly +alter +married +the +than +town +creating +ap- +they +Hoffman +, +New +a +no +leading +that +government +coun­ +responsible +The +this +in +rustic +found +Then +to +per +$3 +into +mnch +to +the +Clark +ticipate +of +planned +reached +subject +bull's-eyes, +Just +ot +supported +boy, +or- +When +are +pulation +that +operation +Samuel +statement +upper +La +it +and +everybody +went +were +Gomings +some +inches; +• +tha +make +upon +say, +per +party +described +to +that +this +duly +house. +energy +pretends +the +united +aad +railroad +and +I +with +on +on +endeavoring +of +Neal, +Post +impression +the +obtrusively +Judgei, +NEGROES +liirmcrlv +more +dispossessed.and +and +she +years +and +10 +was +to +right +few +have +. +and +thoroughly +of +installment +Southern +previous +Governor. +be +of +lots +trace +the +the +in +(Conn.) +her +the +rapidly. +packers. +ate +he +passed +of +sober +"Fight +(un- +payment +Payscn, +nished +This +to +assistant +built. +same +meet +of +Free-for-all +and +not +supernatural +grow +fulling +the +Bhaer, +under +scheme +one +place +1018 +it +have +Archer’s +shall +on +• +key, +likely +our +the +are +in +in +days. +and +wo +poor +of +and +The +pine +country +diessing +do +barn +gave +owner +De +shall +with +the +at +DIcKENQ. +Mars +of +several +the +dawn +took +and +than +the +hiding +These, +ular +that +pay +his +ceived +health, +Syrup +citizens +that +B. +window +that +from +Wall +out +or +Rich +history +the +A +were +thf +but +not +of +run +of +become +Dav +scrupulous +thai +(iovernor +at¬ +Nothing +or +dwellings +it +one +in +even +Republi- +all +to +Among +kota +, +who +in +"Adulterations +madf. +cheered, +one +with +re¬ +It +will +of +grain +8154 +moral +at +course, +having +9. +ger,"' +Nebraska +of +that +vegetables +of +aforesaid, +and +the +Slate +in +marked +Pfeiffer; +just +good +felt +and +is +hasis +of +bored, +good +fully +he +heroically +into +traus|K>rtatiuii +terests +20 +fell +avenue +heaven. +Davis +it, +years +Southern +who +mediate +en- +before +worked +stead +“An +has +search, +things, +Ju¬ +search +pre- +not +ideas +was +the +the +their +regard +wide +corpora- +nared +soldier, +hanker +he +a +identical +A +wonld +isfactory +i« +this +show +there +Ointment, +stomach +continent. +business, +piled +bridge +promise +who +to +the +There +from +the +ladies, +gr;at +the +which +and +fall +mont +for +it +it +night +tww +by +as +uary +I +" +had +filled +such +find +which +the +he +except +shrubs +that +to +eyes +address +of +tho +would +the +crew +miles +report. +I +main +for +years +American +of +but +may +mercy +trying +the +not. +has +cups +because +after +ei +nt +dairying, +continue +put +.al +her +the +tlis +ies +1 +for +he +It +himself. +cross +he +exertion, +examined +TEMPLE. +capacity +represented +the +apportionment +to +you +latched, +and +exceptions, +18704 +Norwa* +their +always +OH +the +he +of +| +has +a +otherwise, +HoteL +pall +that +for +carrying +the +which +bunch +ever +collector +extravagant +with +made, +desperate, +most +outrages +tho.r +business, +ll +will +an! +supported +proper. +in +removal +nge +prob- +six +The +not +juryto +not +riots +changed +others.") +ali +aorth +This +young +Circuit +necessity +them, +of +and +necessary +for +in +say +Italy +re- +and +to +tariff +most +reached. +for +»jnare +officials +as +as +your +2 +of +Cumberland, +to +Behring +for +smoke +the +mistake +twelve +abounds +this +trifling. +much +be +other +Inter- +inner +treaftd +not +attractive +different +aad +that +splendid +experience +degree +tite +of +Fleming. +of +eccouut +to +reached +contract +several +as +place +States. +your +have +said +parents; +tion, +didates +very +tho +their +was +in +of +eminent +dressing +Bank +partner. +is +the +case +municipal +living, +fied +and +and +has +. +of +him, +promises +plcdgc +Iron-Law +distance +on +rial +The +the +A +Its +id +Ihe +- +view +Being +gtirs, +lowcr +bullets +field, +all +France +feet, +river; +of +delih-( +been +We +a +for +is +shot +the +SKOWHEGAN +smith +efforts +could +to +if +overflowing +great +Dr. +adver- +to +of +the +security +work +no +put +Ogden +to +ateata +in +IIe:nemin. +till +and +be +such +questions +of +her +pleasant +la¬ +course, +case +pre..mlnently +regular +The +recently +of +at +up +domestic +any +of +to +to +W +In +eaatern +31,304 +bead +of +interest +Rev. +again +of +year. +the +any +noxious +Shortly +States +tracks +f +and +plenty +either +a +importance +is +this +depend +the +thence +ent, +pressure +sudden +adjournment +to +for +under +heat +the +3. +Rontgen, +the +anil +ning +TUB +tho +whole +enjoyed +a +to +i*dy +room, +Michigan, +practice +Chica- +hot +its +fine +to +nostrums +disease +numerous +when +any +ot# +region +se; +of +of +wall +county +a +(19 +sation +paymi-ut +feet +i +done, +the +ly +The +late +before +P. +of +so +out +plain +f.milv. +turo, +and +house +on +When +Forty- +ot +we +Ktippoit +posed +Grafton; +nngathered; +a +village +internal +possibility +advances, +or +er +over +somo +leaders, +is +out +outset +etery +valu- +a +M. +become +teacher +drew +may +simmons +Henry +tleman +I +yesterday +1 +people +speaks +wamba +Richard +lionaires, +executive +is +a +ing +is, +upon +worth +orb'i' +accomplished, +would-be +one +must +of +: +difficulty +the +are +in +the +hea4 +07. +from +can +the +)r. +also +better +morning +the +the +sending +face +iiailey +years +something, +as +very +countenanced. +kind +illness +of +Stephen +upon +actually +him +and +The +us +of +the +able +In +not +ihr- +ing +SEM) +order. +or +s +is +a +sition. +as +twelve +ciates +Island +ap +Johnson. +that +point +trarta. +cubic +him." +Wm. +Estey +of +submitted +said'property +that, +decree +that +on +tance +unpopular, +up +evidence +you +bet +street +stitched +in +practice +ment +he +1 +the +long +inside, +under +from +and +cemetery +necessary. +Humbert +bidder; +him; +to +so +Alexander +to +aud +a +Continuing, +letter +them. +science +grown +me +out- +and +closed, +brings +5, +professesan +walls +light. +itogers +white +.27 +winter. +are +guardian, +minute, +door: +the +great +badly +tlie +E, +79%c. +have +mixed +it +a« +of +By +on +next +over +means; +exception.he +Affections +m +a +this +was +or +road +sell +y +erty +to +his +ping +demand +closed +I +same +citizens, +the +a +ing. +members, +of +qual­ +Etv +disap- +Presbyteria +savage +stretched +would +re +There +Plant +such +session +the +fitted +or +to +tbe +sure +dispatch, +balanced +in +his +reduce +linens, +23 +the +is +at +their +as +wheat +to +to +tr +on +"throughout +long, +legs +Columbia: +vention +require +“celebrat- +fidelity +govern­ +and +a +including +also +as +for +while +seemed +are, +Tabules +authorized +save +ent +head +address +wel +pestilent +aud +volved +default +and, +the +772, +in +thus +Court +these +mixed +now +is +the +frem +country +cisco, +forward +at +glob- +ma +a +planted +finished. +vel +there, +cooked +fact +Ewa, +But +convictions +world. +stom­ +a +in +it +as +consent +an +of +said +the +llo +4. +and +syept +anxiety +black +re- +unrivalled +reasons +Janyouary. +In +question. +ed +days +cable +is +peace +in +skill +a +shilling, +The +a +his +at. +laries +the +is +and +Wheeling, +ice +if +criminality +be +liquor +up +2,000 +jknuoh +dust- +name +to +aad +heart +bouse +a +history +has +essential +well +belonging +replaced +twenty-five +Getz, +across +the +All +and +the +corres +devised. +subject +acute +business +dinner +or +as +be +his +several +large +Carr, +aet.; +bow), +but +ion +is +was +path +old +City +j.now +continue +waist +of +a +prepared +the +the +num- +street +and +again +separation, +administration, +men +bodily +Tandy +vain +want +feet, +Dorothy +the +tho +- +tails +in +the +31 +Central +found +. +make +Carolina +ou +vantage +and +of +practicing +found +min. +was +thunder, +forothcrs. +seems, +anything +to +of +of +necessary +block +is +know +ment +can +was +and +from +years, +tlif +8 +portion +be +and +on, +mail +He'll +to +to +said +of +laws +make +Bits. +to +that +hand +judgments, +added +beautiful +deslined +the +mys­ +the +the +the +is +of +present +reform +Delawa +amendments +Brenau, +and +great +Uabaa, +upon +the +head +great +town +mean +the +appreciate +sugar, +fifteen +would +hotel, +and +way. +merrily +lot +unmolested +with +fielder +ich +Ihe +neighboring +was +the +have +land +stood +foreign +would +Sold +and +bonds +to +Uncle +us +reference +had +preferred; +capacity +wiest +their +their +be +in +are +ni +conduct +Anplaoe +some +silks, +a +the +to +duty +of +to +to +party +and +di- +tbe +District +Tho +read +of +waste +Metallurgy; +avail +dead +rec­ +received +to +There +nine +should +Verily +1887, +that +wavered +not +the +clared +the +think +i), +the +as +and +acme +as +the +him; +of +$50 +River +who +or +entire +to +has +practised +queen +the +teeth, +through +rye +the +and +She +of +of +; +that +was +my +Bay +tholr +one +mentioned. +D. +shall +not +but +etable +for +Graham, +public +from +Ritz, +an +him, +chance +upon +get +of +concerning +which +2d, +Benjamin +for +it +in +readers +mining +I +Lusitania +installments, +too +at +did +kill +conditions +goods +man +with +were +one +to +trate +or +hat +for +the +good +2d, +iron +action +the +then +consistency; +for +opened +is +scvcrc +teamster, +surmounted +highway, +by +and +off, +and +are +|)r. +line +superintendent +mayor +brought +idea +cept +was +youth +al +timo +he +a +the +the +Maltese +do +are +Hurt, +ons +were +and +on +may' +at +tion +over +tonnage +answer, +and +that +Intcrctt +ith +Republicans +meam. +is +tails +thoy +not +seemed +who +thn.de- +shall +pretended +a +ami +masses +power +follows, +spread +mv +with +building +his +She +assure +Hutt. +as +Jour¬ +when +Arlington +debt +i +districts +appears +and +Tony, +their +working +sary +the +by +the +at +all +Sleety +Ruth +ports +of +—The +! +rested +by +When +justifica- +erected. +( +northwest, +flrst +handa +to +Rojdest- +private +We +in +that +way +your +ilium +citor +apparently +and +offered +morning. +take +of +at +which +he +Paul +amount, +Laurel; +pense +isnt +not +of +that +fabrics +at +thirteen +cun +the +carrier, +former +who +or +these +the +same +dreams +has +A +by +wat +cilities +the +president's +showing +for +of +seek +or +inside +Nouraltfia, +Wm. +men +or +live +assumed +Here, +of +in +That +is +of +loss +sanitary +An +the +to +cleaning, +Then +which +that +aa +quested +the +amination +instances +winter +exports +Col. +in +Mr. +advertiser +ot +Coach +their +dishonor +bath +the +dogs +of +fbios's +to +view +against +the +call, +are +altered. +thousand- +ordered +and +city, +age, +does +Reaching +engine +other +to +of +a +with +*eeond +drive +talk +and +of +7 +and +the +Hylng +the +forgets +of +within +de¬ +the +of +confi +is +appeared +ititutionality, +the +contained +for +too +nre +John +Ouo +was +of +plctd +proverb +day +lit +be +will +By +long +a +thirty +Stewart; +velopes +houses +off +without +the +medicine +in +mlore +for +would +of +deed +up +congratulations +political +vent, +few +it, +law, +a +for +and +A +equal +Sec. +and +and +far +shining +of +52' +and +war, +a +horse,*he +people, +would +seem +custard, +as +statement?, +therefore +by's. +the +who +from +to +tbe +Gents' +is +pretended +be +prayed +caught +that +their +Washington, +throe*. +the +herd +an +pares) +suit, +to +The +Cabinet +way +shall +in +havo +or +it +tho +proviso +work +against +tbe +measure, +submitted +just +(al- +rock +rail- +him +Charles +I +hotel, +what +lle.t +growth +many +and +every +report. +the +however, +is +he +of +a +12,637 +recorded +offlce +pound +month +make +the +to +collections, +destroyed +1613, +on +the +claim +conceal, +efforts +$40,000 +a +southeast +at +you +is +gain +highly +! +parish +was +was +lir +The +each +effort* +the +were +privi- +of +work +Over +reputation +Black +C +dry +tem +of +given. +fifty +the +Grangeville +the +are +with +1 +Aid. +ourselves +held +the +be +new +is +the +if +nal +geese +the +mate +of +He +the +the +a +take +Chance, +women +fell. +capped +the +To +and +make +note. +then +State +exceeded +eppu +the +I +lor +I +given +when +to +and +1924 +taking +of +by +be +and +was +to +been +by +to +bv +Walker. +too +evening’s +may +after +500 +hydro- +or +cash +p. +it +to +ohild +but +he +nice +patrol +and +thought. +of +and +but +attending +of +to +of +will +liiied +program +the +of +tory +tneir +but +celebrated +obvious +for +there +severalty +on +and +a +Lindsay +pension +at +the +hundred +tod +Is +around +ing +under +Randal +of +takablc +They +perfectly +so +iollars, +Stewart, +be +th" +the +i +of +lightly, +time, +1 +led +(Jill, +been +impersonator +four +this +of +and +only +was +witry. +itself +abundance +fee +as +course +that +of +of +abuses +before +words +tent +firm +of +he +of +be +timed +wo- +secret, +try +service +all +fluids, +few +and +representative +the +across +potatoes +jury +thereof. +milch +confessed +who +tlnglll +the +to +most +thus +I +carefully +said +the +read +have +moro +ment +Htilf +on +to +ishes +of +with +Forest +power +his +dence +W. +hear +courae +loss +him +One +four +he, +plans +where +uses +ad­ +are +telephone +shrug. +the +is +in +(5); +they +who +Lieutenant-Cols. +nexl +all +much +in +may +sales +But +to +ness +held +for +that +noons +$300,000- +tassel +went +will +la +than +married +clearly +the +reasonable +(NW% +Juggler's +really +any +links; +the +loss +|iu<* +true +remarkably +the +antlers +being +Now +and +line, +way. +to +been +and +populous +trickery +sparring, +parlor +left +Spring +other +serila +pected +themM.Vn +who +reds +provement +he +lias +their +Pennsylvania +ratoga +Bright’s +16. +commercial +unlock +tho +ita +it +re- +near +it +line +which +wholo +below +Edgecombe +against +, +pace +cttzcuship +married, +chances; +not +the +rreat +con- +which +orders +their +in +by +Sunday +not +in +go-aheadlsm +s... +vvoik +being +expect +year +States, +on +at +by +establish!*!, +ihe +the +of +aa +17, +the +to +Clark +day." +two +of +I +to +by +wreck +and +number +followers +of +federal +City, +at +Quarter +of +design +go +God +and +compared +brain, +man, +in +completely +head- +Mr. +we +and +forth +generation +tipping +seek +most +and +of +tho +Kuyper, +dis- +his +for +the +B. +yon, +for +tbe +collecting +bill +were +82)4 +people +The +amon +bave +women +superior, +"If +are +B. +of +Irer +known +and +for +rapidly +can +15tb,*l\t +the +a +this +that +the +by +Aside +purchases +recognized +tka +are +her +for +several +folio +glued +him, +vice +actually +which +the +the +D. +and +to +all +mort­ +and +"all +and +to +attending +Frederick +county, +to +New +to +York +beaten, +then, +porsist +peo- +four +be +ad- +cated +it +statement +lam +among +was +“Glad +son +many +usually +be +go +gates. +ths +whom +acres +an +be +would +Water +pieces +be +woll +April +M. +Her +oblivion +mighl +as +patents. +his +leads.” +the +for +can +liberal +Mail +open +one +aoma +back +about +a +South +of +Messrs. +have +and +or +people +case +top +religious +the +to +do +house, +a +body +political +and +Fisueb +struck +and +at +if +Colo +of +ment, +. +at +for +new +ists +Bllver +of +and +truer +inspecting +Btroui{e_t +the +or, +Remyjj +said +and +is +7t»c; +citiaana +secure +that +of +perhaps, +original +of +its +dld +stupidity +as +sent +crowd +in +in +is +exist +and +any +which, +Minister +and +badcalled +Mass. +when +woman +dins +in +now +up +old, +dirty +investigate +face +of +of +will +Coast +same +be +vie +with +for +professor +acquired, +to +Corn +Democrat +t'i(c +not +Win. +It +formerly +be, +the +exten­ +containing +ing +him. +upon', +house +limits +gono, +right +hard +taste +bush +ter +rule, +nent +register. +came +the +treated +for +01. +of +suiuuilo +scholar +degrees +the +is +afterward +schools +into +now +ensued +her +gallery, +his +gara +thru +down, +building +Ayer, +lumiere." +wno +a +sharp +Yesterday, +the +old +rnuni-rat- +Roll, +that +thev +car» +has +of +Martzano +on +a +except +duties'on +just +to +on +the +provid- +sheep, +and +and +beak +ten +thecnpluro. +into +necessary +a +postoak +The +who +unlawfully +jetsam +what +would +their +degrees +excepted, +representing +In +thai +my +bill, +uiy +should +twice, +bad +conductor +was +that +sequent +daylight +at +shipbuild¬ +of +expected +j +neAV +the +foreign +jest +-nlllnK +and +stock. +of +trust +- +him +not +low +bushel, +weak +table +valuo +were +front +so +the +. +will +the +ob- +Land +were +tude +second +Ellptlo +be +al +out +the +in +but +long, +ause +be +general +eet +qualified +her +tain +my +therefore +were +the +play +line, +associated +marked +is +meetings +and +employed +Virginia +thA +within +Burks +extended +is +right +ma¬ +better +To +satisfied +I +ease. +W. +nently +be +the +aacb. +where +over +intervals. +the +for +ostrich +with +and +neighbors +none +are, +at +of +in +to +freight +weight, +Jnue, +It +with +ohuroh, +public +morning. +I +35 +an +help +more +knee*, +which +plal +cast +priest?, +beneath +it +from +agency +that +gent +; +confidently +TRIBUNE +the +the +at +own +lna +Charles +the +her +time +by +for +at +ployees. +Gentlemen +prices +the +fifteen +powers +side +complaint, +entrance, +ltegisiry +They +prevails. +trusts, +and +said +Thus +weeks +hosts +over. +Baracoa +tho +be +in +life +the +To +this +has +content- +what +and +than +upon +absent. +more +instead +siory +tlavoi, +at +to +The +the +called +the +Insurrectionary +viaited +Caladium +water +the +The +Should +of +and +patient +aforesaid, +would +should +countless +suit +Tltls +line +shop +nances +soldier +over +in +man +one +had +this +i»f +of +of +just +dence +Jo +spans. +of +in +into +condition +it +at +sons +icceived +lying +than +1 +traction +were +are +Wheel¬ +the +two +not +agricultural +ing +Ixsik +L?nn +wataia +the +indisposition +keeping. +H +Woodbary +been +this +architectu¬ +written, +jwr/hrf,having +of +courts +buck, +am +tection +the +county +and +to +pellale +keeps +on +nucleus +the +measures +citizens +selves +spoke +confine +ten +I +the +best +mueii +are +win +for +said +tn +which +the +his +food +that +Cruiser +Blue +Above +was +I +J. +Aguln, +good +more +by +it. +that +to +ter. +Occupants +these +Wilson's +Springs +that +mother +ks +Howells, +every +same +she +any +trembling +that +¦eats +vino +by +hold +come +iviao +traces +honest +that +low. +that +Unless +dismay, +the +and +a +would +certificate +present +be +tk« +in +and +during +the +which +it +Ono +among +Wingate +days +to +strength, +Maine +th·· +Board +freshing +best +it. +of +destruction +American +the +weary +busy +ance +and +L. +D. +engineer, +tin +have +The +person +and +his +having +cent +it +opponent, +and +matters +and +Kilenlriilinn +robes +"vamped" +walked +by +the +theory +better +the +thrifty +he +worshipped +is +say +husband; +in +one +any +second +medicinal +the +his +to +ness +steer* +daughter—went +Mr. +Lennon +the +sideot +Hoagland. +stomach +manner. +Roderick +were +gifted +west +fortune, +who +| +result +an +deprive +and +the +was +. +and +al +member? +also +will +or +e +worships +to +had +Woodlawn +that +were +reached +ana +go, +rose +bimetallism +outward +health +exclaim: +of +his +thereuiou, +world, +one. +or +well +and +'.Yench +point +800 +301c; +of +nonpayment +mountains +voked +of +other +gave +for +deal +labor, +aalns. +and +? +over +and +the +tor +and +Thus +observatories +man +the +they +In +siKnllicantly +to +always +the +$5,236.75, +day +whirlwind +the +no +ami +Ashe +and +during +in +five +store,in +house +said +scan +Now +very +tm +the +Old +the +to +on +laws +consumer. +add +gc +Chronic +onists. +the +give +very +material. +of +object?, +North +the +the +the +June, +b* +fairly +Chinese +part +, +that +to +once +strictly +for +but +not +the +with +dont +to +put +said +who +While +in +from +match +be +the +ing +it, +few. +proceeding +City +con- +Linder,berge:. +provided +ol +than +W. +west +sentiment, +been +sible. +parents +be +date +Traius +as +walk +he +of +misery +have +tiou +had +the +bright, +Miss +holders, +"position" +gone +and +much +give +museum +Mrs. +ginoar +arrange- +of +are +of +paces +or +side, +instautly +ricultural +up +year +plete, +the +into +a +action +College, +negative +902 +that +than +a +of +in +leaps, +shirt, +currency +injurv +G81 +Mizroory, +age +matter +very +higher +amount +Com¬ +they +was +feeling +House +11 +object +was +could +heroism +by +on +country +this +not +and +glee +taxpayers +the +cesspool +never +still +Chi. +assistants. +Inter +tlio +ulist +years +or +popular +learning +has +suppose +paid +sl:np!.v +national +the +might +the +plsoa*. +H +send +Mr. +rifying +the +salary +must +the +the +o'clock +the +against +bad +or +reader +chestnut +piecee +glad +a +days +thatj +the +Losing +over +tbat +railroads +thc +how +and +rious +Katherine +near- +ly +or +country +needs +and +at +sible +army +be +freeze, +five +school +feet +truly, +arise +grasp +Paris +10 +information. +Heeb-O'Brien +in +Second +prime, +official, +the +rel- +been +hour +away, +make +value +have +duties +Inmates +Assembly +us +and +it +also +which +Va- +the +to +children, +of +full +came +subse­ +al +Gregory, +Is +to +L +of +the +variety +quiet, +toms +impossible +habit +opera +the +delay +Iocatlon +first. +disease- +that +“fritillary.” +first, +by +the +is +in +of +red +bia +ths +of +those +and +ing +surprised +war. +your +would +has +boundary +these +thereof. +an +groom's +sing +and +way +cause +so +keep +west +Armonr, +whero +eetabtiah +Turks +to +facts +were +the +- +and +acid +Bv +would +jurisdictions, +spare +be +BBB, +d +will +'-ambi +stature +men +addition +of +roti.rn +to +when +whose +aud +in +the +can +escaped +treads +: +condition +enough +At +afterward +trot +gets +the +I +like +depot +1 +and +collected +subject +Bertholf +McCarten. +the +the +kln +which, +as +than +Eldridge +one +tho +they +hot +now +cruisers; +that +a +nen +money, +a +morality, +from +tben +Orren +boldness +brothers, +1 +the +bly +The +warm +the +your +varas +havin +sentatives +and +each +Union +any +of +possession +generous +enough +hi» +the +e[e)s +enacted. +pre¬ +Vienna, +they +grace, +envelopes, +jury-bo- +10. +joint +possible +extent, +the +the +of +them +and +duties +It +1870 +over +necessary +round +deep. +to +of +feel +has +'foI- +that +choked +goods, +is +In +rather +that +of +said +Highland +30 +added +this +blacks +handed +tention +man, +any +the +by +Gray +F. +I +ccclesiasti +Lungs, +the +otlicial +$1 +that +character,' +in +company. +Your +Mr. +whereof +denied +tic, +jails +among +street, +l, +place +and +the +the +struggle +nineteen +dated +could +and +of +IgMd +demand +republican +the +- +hate, +a +and +most +recognized; +a +in +events +bud +is +crease +W. +21.22 +the +tion +he +institutions +a +work +case +have +the +had +The +my +firm +He +to +Victoria +good +from +It +case, +observation +the +counteract +Pi, +interest +a +«l +of +to +a +Austria +window; +not +descent +of +g, +the +the +how +there +he +the +sacrifice +able +half +tho +01 +to +our +it +the +as +swing +took +Taylor +up +disposed, +Miss +appeared +use +the +humanity, +still, +was +event +pro- +quite +the +to +to +for +from +tlio +thai +his +fuuuded +the +filed +counterbalance +will +henchman, +Mercy! +Use +way +num­ +Capt. +applicant +order +or +of +the +the +wnicb +or +six +tha +- +not +take +on +soil +con- +the +haste +insisted; +all +nervous +some +four +difficult +I +newspaper, +power +Bible +21%22%21%22+% +gold +maru-d +I +years +an +spot +the +track. +‘tern, +The +British +Saks, +be +I +fee +it +but +complish +of +the +$5.00 +shall +The +whom +18 +That +and +minute +off +to +to +goo +was +of +and +and +him +we +today +sisters, +is +gelist +Capital +re +29, +the +on +trust, +quarter +expense +The +is +mean. +Then +(7) +Bterllng +and +109.n +the +streets +cast +Jr., +a +were +m +mound +along +tarm +a +signal +only +v'l's +is +the +of +is +knowledge +and +of +feet +Swartzell +will +Then +thc +Clover +he +corn +back, +a +the +know +at +ter- +of +be +the +as +\ +mortgage +majority +to +Kingdom +of +tion +that +one +happiness +Co., +Dr. +as +Moore, +Baradini +back. +Broadway +directly +of +President's +opportunity +motion, +without +paying +course +hlave +thoroughly +artillery, +the +did +cess +the +was. +separation +Barnett +the +plumed +9 +who +rug +be +arrived +oxcitement +in +soaked +was +which +or +and +to-dav, +j +must +class, +others. +children +even +best +prevents +u +with +while +exactly +have +bearing +first +030 +the +here +a +alleged +other +faith +is +No. +payable +Few +garner­ +eighty-five +the +for +one +boy".as +the +side +Fui- +[ +in +the +ning +thit +who +the +of +Greswell +home +to +an +then +the +moisture +pace, +will +pulse +the +heavily +ing +parly +on +well +reason +s +the +cler- +shower +been +is +loud +ft +it +the +a +outside +cover +this +everybody +Jones, +higher. +If +as +Navy +I've +intelligence +him +closed?" +of +and +members +knoll +appeal +a +grounds +America. +has +I' +tho +which +economical +wrs +a +been +ed +joint +British +and +hard +people +and +Ottoman +partly +time +know +to +tbo +of +short, +large +tho +of +of +Keeping +trips. +Ift +questions +the +the +cover +a +va- +careful +feet: +Christ's +ernment. +dependence. +The +rather +er, +of +child, +heartily +ruling, +eyes, +to +tree; +germination +formerly +ent +Madison, +wonderful +ever +are +Sims. +the +thence +quently +of +llubinson +fancied +the +aralloa +some +B +1935 +Souvenirs, +was +worth +to +tell +after +Field, +angles +of +hundred +ndvnnclng +bas +eleven +this +reasoning, +Va. +alliance +with +dipping, +professor +rich +up +would +are +I +a +The +year, +in +to +borax. +cotton +and +out +king's +United +Never +have +others +burned +deeper +or +has +to +flower, +from +Education. +eight +her +good +Hills +or +lotions +extent. +and +anew +and +Bryan, +min. +to +lap +sild +indicate +In +where +architecture +wire +cruiser +is +each +herein +men +of +best +enabling +bers +spondent, +banishment +ticket, +prayer: +contains +I +known +teamster, +brief +second +such +with +of +H. +However, +r +skirt +asks +given +ter- +stand- +184C, +the +be +is +A +of +Government, +progress +adjustment +ister +tlioir +most +said +sizes +easily +C. +thence +ly +been +tne +wlthln +offer +the +the +gency +In +the +the +future +us +New +there +This +can +the +increase +look +which +to +of +silver +and +the +once, +F.xpi'.Iitiou +platform, +of +rh, +did +In +] +gentlemen, +forever, +the +when +of +able +Nolin, +have +from +two +ague, +the +net +each +knowing +more +a +boy +the +needed. +who +NYLP.Aw. +oak, +Capt. +the +and +Our +the +I +rh." +appointments, +The +being +Georgia, +o'v +locked, +to +conclusion +vol- +cheap +yoke, +quired +the +hold +thing +by +child +wit—wen- +J +‘Parnassus +writh- +to +the +gave +ones +tor, +I +administration +when +the +of +Indus¬ +of +vancement. +350 +job +spurs +decoration. +the +to +north +thence +nilli +liiouh-iit; +$3,000- +of +eves, +a +mass +close, +for +but, +CALAMITY +and +it +and +the +burying +for +East +gate +sisted +O. +consent +the +elder +horr +Constitution, +summer +carried +notice, +the +It +till +taxation +stories +now +to-wit: +to +special +nnd +Rec­ +leadin +the +industrial +a +lhe +called +Raymond +tho +No. +administration +Jarrell. +investors +from +merchandise +of +that +years +a +not +lioston +vote +Denver +light. +ably +of +wo +a +as +pftins +with +for +days, +maiiap'tuoiit +Township +this +placed +and +city +our +cauaa +of +removing +In +due +City +rocked +that +the +upon +paid +Annie +of +fall! +physician +town +of +died +said +to +mate +so +leader, +tons +Davis, +tut +at +mall +while +bill, +Gar. +ovary +bad +all +public +, +of +them +and +the +of +future +bear +city, +of +at +or +ing +I +and +on +ptaeea +15.8 +a +good +for +treme +business +issue +festival +muscles +min. +the +to +to +his +lynch +placed +first +with +vious +had +time, +appointed +night +Point +be, +necessity +a. +and +so +But +treaty +to +who +or +very +wceniitd +whose +but +third +checks +divv +A +most +uncovered +into +and +tative +wo +is +Mayor +appli¬ +have +consequences +tba +sermons, +wo +little +ha +the +his +we +their +pay, +of +fantastic +children +a +and +months. +a +forGeu. +24th +B. +dogs +men +should +real-iz- +which +him +stand- +have +had +this +among +little +is +2> +been +If +thereof. +a +Would +the +at +Imprisonment +much +A +gate +just +in +men, +tons, +my +what +display, +be +in +suggestive +in +macaroni. +considerable +a +search +shall +remains +issued, +00; +have +faith +halt +on +guilty +home +to +for +wlie +term +admit +to +tlie +at +of +beum +present +will +L +the +me +by +up +corpse, +the +ad +work. +in +Grand-Swell, +Please +of +to +twelve +writ- +Bittner. +the +gowns, +at +the +obligarcby +at +occupant +society. +colored +considorod. +of +been +New-York +verdure +a +house. +tion, +shblit +time +on, +back +the +paid +decency, +described +York +the +North, +keep +now +his +same +INXOCKKT +runner. +their +school-hou. +spirit +collusion +was +the +items. +most.glar- +holder +row, +engineer +proposed +they +an +for +our +shall +Rev. +the +field. +living +average +religion +bridgo +virtues +forethought +to +the +The +sound +man +to +men +at +end +the +variety +be +and +day, +the +model +call +policy. +if +be +4* +pur- +the +the +the +and +the +men +Welsbachs +caught +morning +California, +from +grass +does +the +voters +a +able +Is +a +25, +the +a +wishes +of +between +The +at +had +the +are +kept +toward +paid +Jersey +delivered. +is +Petrogard, +and +Kimball. +be +s +milkers +he +as +a +that +would +for +when +paced +_ +souls. +il¬ +the +wo-tlilrds +and +north +the +two +flour. +The +the +it +1), +er +our +be +Is +gathering +to +in +men +1 +cotton +as +year's +is +volver +was +though +Morris +on +of +as +bowed +the +in +that +seven +to +route +by +must +here +panies. +nf +their +tbtrtv*pne +upon +B. +should +coming +interest +Stateson. +of +be +emergency +a +not +record +many +courage +be +for +ship), +some +the +noath +el +you +Johnson +long +of +H. +most +It +nrer +ant. +are +ore. +Mrs. +Also +they +time, +equipment, +been +fanners +discussed +and +ed +often +adorned +he +and +is +to +to +tunes +governor +this +the +ta +be- +feet; +that +year, +two +AV. +of +waa +of +the +is +having +These +sylvania. +at +rates +attendant +There +dio +in +the +article, +which +goods +returned +., +by +ter +order +the +for +a +land +cx- +or +who +were +left +in +gregate +cast +Fiaiikltu +total +a +they +sclioola +Important +which +the +Hall, +them +a +than +tem­ +absence +a +constitutionality +Mitchell, +be +Blllllflfll +the +two +no +degrees +people, +Ac. +the +to +behalf +ing +city +term, +great +persons +sure +; +brim. +doxologies, +without +M +the +however, +away. +A. +that +are +inclusive +this +and +by +aiter +Twin +months +a +law +held +at +taste. +cook +felt +he +the +When +not +10 +How +to +Northwest +of +square; +This +Hull +were +that +Such, +with +under +her +tba +cars +Madame +man +of +director. +die +the +which +Only +tho +demonstrate +State +in +Not +this +seen +41 +itreet +Ht:i'c +that +he +common +going +outpide +of +Ohio +that +- +not +up +college +headstrong +tered +2 +aroitrary +texts +to +decessor, +true +Milan, +bear +lu +abrogate +to +offense." +the +the +Mr. +a +be +supervisors +of +the +said +before +la +ship +President +Mr. +black, +when +bonds +bevomf +State. +Institute +Doctor +here. +improvements +alive. +fascinat­ +one +the +perpetual +It +the +they +a +Boabd +Minnesota +about +bim +her +arrange­ +that, +em- +North +the +waste +denl +with +refused +that +aalil +the +ab­ +do +the +reaches +African +specia +with +he +to +of +are +that +ds +throughout +one. +Joseph +lower +which +which +and +carries +ashing +produces +people, +to +the +be +tbe +ings +arraigned +summering +havo +tho +the +airy +health +the +to +their +The +are +in- +as +preferred +placed +girl' +there +degree* +Secretary +the +iron +at +the +day +have +too +described +prostitute +the +turkey +chain +cent. +prepared +doing +will +denied +the +that +re­ +corporation +first +and +Coffee +and +scoup, +Charles +votes, +necessary. +eioaing +and +ie +beat +order +yal'y. +previously +teen +whether +great +friend +is, +rt +the +these +Michigan +ta*aiiaaaaawi +the +of +years; +Alaska +not +generally +was +tho +word +the +alone; +language, +explanation +Plvon +out +eyes, +value +From +befnre +found +and +vinegar, +afflicted +waa +wear, +debts, +the +sale, +ting +its +butter +ing +of +Brumidi's +and +oaa +of +nic +of +Hoard +. +seventy +Hylton +moving +at +the +shook +through +prevailed, +laugh. +fall +the +the +been +If +Oovernor +mills +ng +stances, +bought +290 +fed +und +worse, +seven +land +favored +profoundly +the +in +whod +and +. +No. +bottom +spot +When +come +I +have +will +were +as +has +is +That +ono, +The +ed +hail +trade, +the +showing +steward +while +unsettled; +the +way +machinery +in +done +the +that +all +thence +by +along +capacity +we +mortgage +Trains +the +town +the +pretty, +the +filled. +consummation +customers +the +a +not +which +in +decay; +of +to +by +Ite +and +became +along +to +a +at +heartily +. +Douglas, +. +in +and +now +Lake +and +at +saw +by +called +ut +as +Sliotiltl +pairs +She +from +and +took +tree +i +which +body +scream +laughing +and +' +reach +and +finer +chronic +a +wa- +a +by +said +at +miles +going +from +that +happened +why +all +preceptor, +their +head +or +generally +that +the +showing +our +myself +have +it +This +ftladamc +one +skill. +exports27,597fbush; +believed—then +lake +But +the +government +to +The +said +be +four +bul +the +the +sure +is +at +but +true +bunk +there +Is +month. +should +sown +men. +the +suitablf +other +with +Its +of +or +the +the +oat +and +Bailey +O. +s24,476.ooo +that +ing +he +ia +tho +yesterday +soap. +follow* +Worked +not +the +in +they +arrangements +sunn +killing +null +oatmeal +experts +enchanted +this +Erie +that +aaa +an +heavy +as +come +U +. +crib. +existence +his +controled +of +tion +members +a +ttlOllu'll +will +thread +price +meet +our +the +to +of +2 +and +quickness +Btate. +Oeorgia, +rationand +diminishing +file +also +spending +north +perfection. +it +thirty +viz: +., +the +fatal +America +just +wagon +unexpectedly' +All +tho +mako +the +stingy. +in +mon +wo +course, +vary +I +Brown +the +bodies +at +followed +of +8th +showing +Carlos +of +distributed +many +costs, +line, +taking +of +should +re¬ +on +at +be +C. +was +the +the +who +ihey +and +ody +covering +slipped +direct +national +unhurt. +while +Hanna's +their +alternates +snowy +the +Guerra +It +borough +, +Iharrassed +and +Manzanillo. +eyes +and +enabling +after +study +recognize +car +most +pearance +for +with +more +improve. +Qolden +submittirg +in +difficulty. +call, +awakes +and. +were +d-Han +than +to +nuargint +aud +all +degrees +Smith +score +a +of +their +County +low +time, +the +8 +materia +Circuit +have +will +scene +only +t>loy«d +thcro +cent +eventful +shall +of +laint." +ive +his +midway +resources +Germany +with +from +attorney +Mexico +ml +of +to +ona +of +injured +those +to +o'clock +which +scholarship +party +cess +and +and +three +questions +be¬ +swarming +perlenced +, +others +Citizens +the +to +e +made +We +sum +refle +did +Repub- +Kallochs +outstretched +deser- +copartners, +Where +»tauding +50 +once +luacioaery +be +enjoy +It +when +; +which +Conover, +for +they +the +holy +such +white +Provide +had +spread +of +said +is.flucan +but +you +11ns +white +Winnebago +and +(26). +shape. +londs +could +could +office +be +dustry +h +debt +of +they +work, +Thomas +west +a +wall! +kali +Subject +the +open +Railroad +both +back +grieved +at +wiii +the +over +a +cream +Sluto +"There!" +a +Eastern +On +drouth, +In +and +planes +th +State +his +they +gether +whom, +« +one +r. +I +large +er +"Graves +ease +Southwortb +but +Bessie +The +by +silver +angle +with +Office, +the +the +cheap +sell. +schools. +even +attributes +tho +inches +wedding +who +taught +danger +t. +is +boy +bad +against +"fviOO +course +it +explosion, +the +all. +idea +this +who +30 +its +exhibitions +before +that +Falls. +say, +to +to +a +everything. +out +dental +the +or +steamer +clear +any +water, +prtvately +Tooth +to +the +lower +children +and +Just +Mrs. +renewed +worship +In +efforts +volunteer +about +his +hem +boys, +keep +unnecessary. +other +to +the +reduction +he +were +few +his +to +open +oar +Well, +been +and +that +sneli +gives +this +way, +which +be +she, +to¬ +excursion +that +mar- +(Job +and +10 +taxea, +al +go +of +repeated +he +a +materials +keep +proclaimed +have +rtoaa +Bridgeport +four +It +than +benevolent +to +in +an +Miss., +Secretary +home, +and +ikes +and +is +heart +1:1 +of +he +; +(u- +tho +the +day. +that +his +rivinv +view +countrymen +trial +remoto +ated. +took +so +*oiiiie«-i +Europe +Revolutionary +crickets, +have +and +a +for +or +was +the +Cer- +gredient +Mothers +passage +of +a +extremely +shores +The +fifth +reports +the +In- +trees +and +and +thus +report +last +been +to +cede +and +for +him. +Inspector +was +women +mode +stopping +with +of +would +2, +standing +upon +eclipse +twice +white +the +any +Each +Aunt +tled +cupful +and +ed +the +ueteen +tongues, +The +then +replevin +not +Tho +lot +into +have +a +in +gift +tJ +other +said +Ah +issued +color +stringency +to +fight +flag +Sec. +elected +17 +alterations +arn +ire +di- +bad +to +modi- +de- +an +same +one +tbe +says +to +flannels. +u» +ored +demand +of +Maker! +the +a +they +by +recording +a«im)rnbly +Half- +In +of +ho +built +of +'ith +in +p84808 +pound +to +In +in +bond +but +emanate +the +liig +to +they +who +to +suty +the +ready +be +gether +reached +particular +iu +not +of +4.26 +after +offerings +flooded +Georgia, +In +recep¬ +i +together; +made +debt +he +at +mess, +for +of +they +the +Mackey, +Alwine +great +the +; +Carolina-familiarly +secured. +at +Its +stage +and +lie +^rl::«i +you +mining +the +and +rived +on +trim +organization +perjury, +yields +to +for +(Hi! +to +held +min- +Paso +aperttire +Cologne +all, +a +legislation +department, +and +T. +rope. +A. +( +the +den +affection, +28 +profits +water +suggests +east +and +firms +northern +will +of +do, +with +against +F-e +but, +seventy +likely. +for +the +kuew +that +money +in +5. +Wi.liam +this +country. +summer +is +ambitious +we +com- +or +go +two +me +hi +of +glimpse +House +President^ +wise. +life +as +see +of +worse +company +Dayton, +of +convenience +resume +concealed +south +its +commission +Confederacy +15. +ffis +ol +Flrat +but +whom +and +crown­ +900 +desirable; +Mr. +convicted +Mr. +he +their +over +allow +take +fatal +expense +to +at +20th, +brush +from +nml +any +Speere +so +Meeds +political +Joseph +as +Now +to +and +'Incomplete +the +who +Lyle +shoe +ne- +1 +morality. +quiet +ment +Then +humanity +ment +danger +rarest +substituted +degrees +the +were +Patent +day +either +cows +upboidiog +So +the +the +forests +forthcoming, +he +that +of +a +slici +by +Onanism +melt +or +Dr. +hoisted +Municipal +party +navy +coerced +He +all +me +of +a +have +To­ +was +tb +James +moving +A +rocks, +Hams. +Cnlverslty, +R. +and +because +to +In +of +In +Wilson. +Faulkner, +complaints +appear +by +Cass +wa- +er, +to +afternoon. +year, +of +Mason, +difference +sessions +go +possibili- +the +and +superintendent, +kdmp +of +make +transpor¬ +death +died +finally +a +aud +No.l, +be +publlo +ln +So +searching +valuable +at +30 +pair +mother +every +in +ly +rights, +a +the +Act +of +mw +in +'erday. +do +the +feel +*ho* +peoplo +poor, +to +lost. +women +him +tioned +Marion +The +ould +be +The +to +that +really +move +fortnight +and +or +3,536,517, +more +not +COlweU, +benefit +"She +was +the +holder +sli(' +secure +upon +$700.t +for +a +most! +not +circuit +be +mar +foreign +Torkey. +design +'ho +should +war. +that +officials, +tho +Gal +fully +under +ten +to +on +every +Wheat +samp +payable +made +o +12 +wnen +been +sea. +ol +remedy +titude?" +a +and +tho +where +said +for +persistently +and +All +male +that +established +this, +other, +whose +exceeded +that +ao +No +at +of +cipations +serving; +was +for +South +to +chinking +indeed +and +of +private +tents +nothing +of +North +Ike +persistence, +distance +pleasant +are +of +Loss +rmtge +con-BpondcneeT-rhlch +beaten +Don +community +the +survey +Canada. +lb, +by +desire +mothers, +the +to +and +J +'lay. +required +book +print. +for +would +from +subject. +GROUSE +mere +the +feet +much +street +shot +could +he +Myers, +had +Bee, +alone +tells +large +Mr. +Wells, +ture +appeared +and +violated +or +tenants +cases +of +ence +do +the +were +the +Thomas +trust +d»bt,io +not +District +brunette +seven +the +can +PoisoHKDf +presented +line +a +one +rro'her, +the +convictions +county +snubbing, +limited +are +standard +of +his +Kentucky, +interest +of +language +rain- +for +tho +view +litO +informi +and +n +Possibly +ing +tory. +ex +per +they +did +a +and +617 +There +but +found +camp, +be +upon +with +ten +were +be +dragged +public +marker +?» +and +court +holy +freak +conquer +to +in +westerly +and +like +of +Interior +to +middle +erns! +two +almost +00 +Mr. +founder, +know +C. +twenty- +Texas +had +of +forty +home, +Mild +county +and +speaking +copartners, +oot +under +of +brought +become +cines, +summoned +calls +casing. +very +Tolaeor* +operatives, +silver. +Supreme +yet +water +pulling +half +fami- +Division +mes- +of +take +aforesaid, +by +affection. +of +Braab, +not +with +in +Iho +gan +and +will +to +the +ing +praise +100.000 +war. +one +that +federal +Rock. +and +plete +part +! +15 +the +exist- +TUESDAY. +provides +for +al¬ +of +giving +question +territory +foe +ppur +further +silk +of +the +parties +Iteen +The +he +shot +in +a +Pon> +with +long +which, +who +at +At +to +valuation +equipment +took +re­ +Mining +classics +Parkins +Zook. +the +lower. +top +whose +P. +whether +on +studies +of +tho +Carolina +witness's +and +physician. +perfection +ot +sny, +Repacked +were +and +fails +and +ticket, +fort +spirited +made +muscle; +into +hrsla. +plate, +guilty +nature, +hls +ose +about +do +er +neglected. +after- +both. +New +various +la +er +Yet +wireson +\ +was +obtain +trophies +to +whole +foreign +Fire, +due +attacked +also +Lau- +wishes +contribute +but +that +them. +Enid +of +svhich +truat. +the +be. +as +There +land +t>f +Underwriters. +Twp +all +of +such +ulo +applied +not +Mobile +of +When +contained +is +election +Warrant +of +aprviee +United +ed +and +have +pastorate +the +the +to +the +the +north +Then +United +and +virtue +for +to +4369- +in +creation +the +here +and +Mr. +lied +j +be +ac­ +takes +men +ar< +consequence +suburban +fiends +Ou +We +under +Kocbelle +diseonillluie +new +is +sprinkle +native +What +r +No. +Idol +be +farmer +wonderful +than +Oldenburg +a +by +lie +lawn +and +orchard +28, +Y +of +white +"For +iu +south +for +have +filed +of +of +States; +together +All +water. +object, +for +to +a +zIe +lloltcr +dated +followed +They +watch +-e +publicly +a +and +one +and +Fraaki>rt. +sheds. +away +federal +church +to +be +of +unlike- +it +the +appearance. +the +on +opinion. +the +sidue +State +for +which +in +all +If +stocks. +the +his +devisees +to +bill +do +editor +ami +; +lions +On +bounded +claimants, +Yntidcrbilt +back +Carolina,o +although +of +iuto +exertion +reduce +rational +became +department +shall +to +myth +better +ac- +is +defense +Government +subscribe, +Tho +An +and +fixed +board +table, +whole +for +friendless, +objections. +to +street-tm +and +an +seems +not +stand +by +car +the +surveys +grand +Slate. +his +with +but +reason +he +east +tracts +that +the +dollars +and +3rd +I.m +morn­ +short, +rel +million +the +th< +the +roots +families +that +Miss +craving +each +at +day. +occasion, +methods +at +is +proceed +Col +Lieu, +209 +banks. +how +und +faster +from +put +he +of +were +are +of +dent +Sam +Taylor +it +yield. +enumerate +scale, +neon» +hereby +at +the +that +at +office +ted +Yen's +the +and +of +Some +422 +said +IS, +Gould +before +to +was +that +disciplined +her +had +work +more +the +of +are +Ihrm.aa +taken +adds +mest +of +the +message +small +girl. +Blue +Benedict +with +loot +the +of +the +terest, +across +by +Florida, +war +In +third +yon +tired +founded +secured +more +for +we +Railroad +the +not +the +us +the +not +no +can +as +that +12 +She +p*cf +and +with +marked +that +carving +were +his +grocerymen. +may +to +banquet +1, +actually +matter +become +then +iron +a +laylor +of +spoil +Resoved, +of +sum- +to +hb +of +amount +Of +yester¬ +vaotage +the +to +procession +state +Association +jagged +He +is +days +crowd +decided +cost +ing +prior +of +to +king +holding +their +tion, +stupid, +on.I +ot +Mr. +in +taiuiion, +cific +chil- +subject +the +delegates +movements +date. +of +or +this +the +department +ber +Jily +have +ap- +plans +continued +acted +firms +their +the +In- +Martinis +to +hers +results +be +Sown +be +In +level. +in +to +1927 +Wooftek, +dull; +rected +ficulty +lands +; +of +of +[ +any +workmen, +employed +tho +sour +State +wall, +fed +of +of +ago +strongly +savage +bedsteads +half +Pelton. +and +like +the +to +was +come +causing +will +simply +North +closing +general +a +thus +gave +use +if +and +locality +a +trust" +Miss +was +singular +three +ir^n. +Excellency, +Demo¬ +I +purpose +hiizldv +Philadelphia; +\miflcation. +and +wreck. +church +Colorado. +bill +of +has +i'r.tl +*2 +members +individual +ooming +the +cost +gallant +too +I +the +the +the +in +suppose +to +colored +and +of +Co., +and +thousand +while +General +velopments +ing +Calhoun +Miaa +sgainst +address +height. +had +ines, +off +the +and +base, +tem. +sev- +remedies +dona- +was +it +property +fair +It +is +a +and +and +Pnmo +object +one +of +The +the +ily +housekeepers +can +in +up, +is +town. +the +door +flrra +handker +for +shore +tern +first +pin +At +affixed +so +and +near +dians, +bark +all +facta +little +(now +one, +most +a. +recommending, +of +leuacd +he +to +man. +adoption +last, +the +one-sixth +to +was +then +a +that +are +If +Nannie +to +pecuniary +impecunious +the +Sopes +value," +r +spo +so +and +the +nations +was +sas +jgss‘veaSl +T +contracta, +stations, +It +do, +doing +active +the +within +the +tbe +If +her +believing +?an +their +drugging +knew +"I +he +at +than +of +befoul +bottle. +said +tbe^ +of +southern +is +shovels, +industrial +to +out +eight +others +surpassed +a +he +Pennsylvania. +sounding* +company, +makes +has +such +there +likelihood +her +ly +subsequent +are +to +buying +of +tulle +avoided +no +too +colored +to +succeed, +unless +by +the +the +3 +porary +when +scarred +the +The +at- +Toledo +again +other +the +but +1 +ptibseijtiiiitly +the +ttiHr +and +organization, +a +kindly +sylvania. +he +to +the +it +magnitude +crosscutting +the +the +of +issued +thirty. +25 +Rapid +method +never +hmdly +bat, +18 +to +to +feet; +widely, +property +disobliging +a +that +close +this +more +one +fasts +perpetuating +in +have +indrospherical +the +the +of +the +that +otner, +purpose +shall +advertising? +will +5 +is +The +four, +au¬ +and +paid +the +hoped +tho +history +car, +.{uadrupeds. +common +first +did +which +United +it +and +saved +where +a +touch +she +captain +Grove +larly +street +life. +alter +tne +across +Chinese +had +to +within +time +South- +time. +joint +old +dians +incentive +that +Mrs. +phone +"The +the +year +to +do +of +their +who +bears +pegs, +revolts +to +Mary +although +the +anyway. +respective +angle +slavery +gold +the +town +vigor +street; +color, +that +which +and +O +shortly +China +cnomy +L. +terms +prejudices, +understands +i>f +superintead +which, +ver +baby +the +the +to +approval +right +naval +working +dismounted +years +form +the +of +Delmar +like +Leeds, +she +are +cess +as +up +warraul +at +predicted +of +to +But +Everything +is +a +a +in +escaped +action. +that +he +last" +of +from +made +air +in +in +punishment +for +mai-iem +t +imnrove. +six +basis. +or +was +must +forever +without +as +regarding +conduct +line +waste. +bolt, +poor, +this +cotton, +putes +to +In +lot +of +thickness +had +right +me +Washington +the +and +serious +the +I +in. +inter- +The +of +into +said, +the +corning +other +wilfully +eye +General +of +education +off­ +so +in +pt +thousands +thc +and +Venetians +bctwccn +transplanting. +long +Importance +hond +yet +referred +decide +be +ready +demand +have +altt +with +transportation, +the +town +manner +African +ern +tions. +a +the +in +closely +bottle;, +0 +ministers +go +faith, +as +miracle +a +and +excepting +passes +tf +featur; +ounce +buckles. +bdla +time +the +rapidly +charges +manhood +paper. +completely +1'ine»' +is +10.00; +repeat, +the +it +this +to +adopted, +of01the +trailed +more +Frank +of +Ruby +ladles +Republic. +oft +glxlug +for +view, +Cleveland +limit +claim +fore +ru, +is +to +Th' +after +above +Ages +ma +of +on +dent. +poor +in +N +worship +in +sales. +the +for +a +as +pocket, +been +that, +ig- +of +of +she +alono, +up +tbe +argument +had +witness +25 +the +me +agreeing +attendance. +dependent +the +of +hearings +all +engaged +followed +$1,000,000 +entry +men +said +complaint +a +destination. +laws +dealing +the +circle +teeth +of +shall +say +had +and +where +the +also +if +he +visited +to +gen- +the +sugar +F +in +greeted +sand +a +might +fifty +thereby +is +house +each +jewel +incapacitated +. +them +Hoar +It +for +good +ser- +and +satisfy +came +each +darkies +great +of +then +so +ft +15. +his +other +strictly +has +authority +plain- +setting +with +with +who +war +to +A +- +tremendous +tliey +to +in +Heits +!0.8S +so +would +wcnt, +legislative +holding +outyield +but +was +inrruiry +notion +out +Cit +In +shall +playmate +shall +min. +to +Ical +disabled +Second: +ternal +just +a +feet +the +the +preside +(he +spar +Scotchmen, +ago +got +her +An +The +free +there +those +get +in +much +used. +This +The +be +thus +matter +II. +ills +3,000 +the +thread +tho +East +them +I +with +tha +posed +it +of +Notwith +as +can +state +last +county, +48 +but +city +Street +the +State +of +but +As +rail +This +any +ap- +great +meanwhile +and +«-hief +ths +bald, +from +rnor, +cities, +You +Peters. +understood +tories, +line +mother +as +that +ourselves +favorite +a +between +such +house +is +for +of +tower +Clerk +that +tion +without +effective. +poses +these +his +guardian +of +to +of +elsewhere. +ot +army. +shocks +the +maintain +but +i. +but +felt +Vil- +is +it +so +by +Sir +ot +Now, +claiming +a +and +a +and +putting +long +that +Work," +of +battlo +officials +the +la +it +protect +of +fifth +himself +extension +from +enthusiasm, +having +mournin? +what +now +lords. +at +things +chored +British +judges, +by +some +to +were +ten +field +companies +not +into +the +steel +»f +counteract +of +matter +40, +record +with +his +which +Southern +death +James +horn. +might +all +to +any +the +their +traffic +placemen, +and +permission +muai +was +is +The +the +from +in +official +in +of +Maurice +at +be +Marine +the +the +Anderson +ot +is +have +prevalence +has +e*>rrarive +horse +monater +has +because +highway +that +public, +elioog, +From +guilt/ +$2 +. +tbe +SUO. +Tacoma +office +of +term +to +and +but +is +Marseillesmd +of +I +great +wl.o +•xoitemeut +the +younger +of +the +destined +for +other +conseiousness +late +Butte +trip +wall +months. +man. +been +never +firing +do +captain +the +policy +good +is +enacted. +recent +during +northwest +lata +of +Rock. +and +Kansas +is +anyone +judges +shipment +t +has +month +of +of +in +l +to +through +and +two +new +a +as +morning, +brew, +Georgia +dies. +impt1ossible +that +out +the +tend +Cliiino, +!feasor +originality, +poor +over +The +improvements +There +li.siiaie +bn +in +alono +I +that +stnton +2 +m, +was +is +never +land +Interest +trace +succeed +Mass., +thia +to +each +from +buildings +provided +the +at +comes +us +pronounced +as +conven +The +hereby +groups, +Mr. +aod +of +places +this +particular +to +will +lire +cages, +Even +with +boy +ago, +out +stranger +into +Correctinn +to +heartfelt +be +power +men +the +and +captains +for +commission +1280 +of +year +Wasiungton, +at +Pope, +uMs +lots +throat +and +done +held +their +forced +a +were +oil +appeals +in +and +in +Mr. +and +and +whlich +prodigality. +much +to +an +to +portions +amination +gratify +Stokes, +strikers +deficient +it +nationali- +idleness +Fort +Edna +will +silence +Potatoes, +bring +A +patriotic +bring +re­ +rocks +and +liter +from +Executive +raise +Pearl +condition +locomotives +thought +Library +was +asking +under +gifts +which +there +feeding +cavalrymen +a +ing +oft) +reinvest- +then +succeeded +unconscious +captured +Strlckllng +gave +this +Sc +by +the +continued +company +men. +thing +and +since +a +just +des­ +has, +and +men +and +had +MM +power +stayed +an +the +That +Toward +all +so +1 +whera +rates. +committer, +If +Abolition +School +ma- +of +ited +embassy, +attacked +of +prescriptive +codes +ordinary +and +that +groves +the +crease +uOy +that +und +of +during +I +opera- +most +Baird, +petitioner +Sunday, +to +it +some +year, +could +to +the +with +on +surd. +old, +all +and +teh +•srris--10 +habitants +lt +each +the +or +direct +956, +that +commenced +man +of +river,and +Ind., +shall +bush +about +be +elevating +incur, +Inoh +South­ +cightv-nlne +day +of +in +where? +and +Matallulard, +gartcr +the +feet; +, +the +eu\. +in +the +iege +this +with +than +awake, +friends +debts +with +of +main, +were +and +in +aro +a +a +of +month. +for +and +a«»rtj* +which +a +didn't +top +the +obtaining +summary, +and +of +the +a +the +more +or +Barley +is +principle +built +on +knot»id +the +A +west +sec- +it +Results +knowledge +sell­ +.American +The +Moore, +enameled +accomplishing +diately, +displaced +she +in +fail +I +of +system +the +that +J +herntvy +Wilfred +"This +hardy +their +up- +heard +man +ing +with +s +47j048c, +his +Among +and +which +believed +land +Buoy, +Pugsley, +hear +a +l.itme +alda +now +here +a!) +soon +The +for +on +Charity. +to +left +building +Cuba, +clerk +and +and +stores. +B +ungracious. +count +another +of +. +Egypt +the +In +man, +Is +a +are +l +of +the +thnt +47}@49c, +in +upon +clearly +such +their +aaged +England, +short, +ached +ride, +of +engine. +democrats. +like +profitable, +tal +said +the +or +Cal- +their +Hotel +Mme. +without +with +the +being +ln--t +of +*apoa +are +which +its +Colorado +for +prepared +fielding +small +glass; +road. +seven +ibroken, +ner: +higher +yet +Juana, +forty, +but +assistants +boundarics. +thev +all +to +said +nicmlrara +or +sufficient, +and +and +were +and +hns +such +waters +a +Bulser +compauy'might +some +doetriue +Knowing +a +the +signaling +iu +likely +ance +Hymns," +east +D. +and +rrlu +with +sys¬ +the +common +in +was +kind +College; +pleasure +a +. +country's +will +futile. +under +to +hi +and +before +Howard +Mrs. +of +meeting +delegation +by +ers +paid +should +Is +chain +the +daughters +certain +11, +is +with +false +When +past +to +it +the +unjust. +this +and +the +speecues +by +had +permit +good +of +to +for +of +it +to +signs +and +railroad +be +sheer +thence +be +not +haul +dering +tical +if +woman +trict +and +the +ed +hours +are +capital, +of +increased. +Col +aad +and +labor +defendant, +natural +to +whole +least, +consisting +the +made +and +and +prestige +willolly +doubtedly +recent +the +cow. +stronger +ts- +cow +convicts +form; +A +Madden. +withstand +ap- +Gulickson +of +a +it +in +- +anything +to*day +cities +our +slavery +adopt. +government +jection +private +tbelr +suit +abiect, +dence +boys +We +first +come +sixth, +to +s +An- +of +population +the +first +L. +joining +Ideals +to +glance +in +for +the +to +Trustees +sell +Cherryville +to +(Including +directors +Chemical +special +before. +cured +ed +provisions +a +for +1, +Binti +Judge +I +and +Lowell +with +way +OFFICE +are +one +beholding +for +his +to +wesn'ec;ed +other +game +of +the +servre +everywhere +issuries +been +all +and +to +This +tell +was +equitable +In +the +a +and +the +free +are +peal +The +wrong +a +and +have +ments +corpuscles +example +in +climate +but +stairs, +slavery +lot +is +the +only +mat-rial +him +any +every +days +adopt +mill +show +1912. +an +the +of +that +of +the +lowed +the +to +has +ardent +to +the +taken +no +by +Can +air +I +people +do +forestry +unless +spend +lose +suc +Mr. +final +to +built +vide +these +It +ern +land +Freeh +and +state +about +against +of +says: +to +and +street +part +mining +meet +so +his +have +little +the +as +that +this +independence +long +I +Andrew +like +will +woman's +Mr. +baby +; +soon +bill +work +wa +folio +northwestern +this +this +reductions +that +to, +the +ho +right +rais- +to +with +had +every +town, +masonry, +accordance +Stubbs, +ana +route +the +at +(18) +I +logic +pledges +the +untruth. +con- +has +Jews +can +a +the +the +it +lhe +extinguishing +the +an +of +anything +of +which +shelter +children +»hlch +s>n- +in +is +dim, +of +most +redoubled +Is +-. +career +a +love +speaking +care—prob- +that +Elsberr. +with +men +hia +obliged +wneu +n +the +of +been +is +composed +place +play +he +sixty +every +weak- +neoeasity +for +tho-e +powers +may +to +claimed +elevation +from +violins +were +Zululand +car, +sharp +Ronan. +whom +Instituted +ticket +with +ead-silver +the'coimnon +declared, +of +hood, +opposite +(500) +this +of +shipped +led-them +to +ri +Mr, +behind +ot +Vilonia; +County +take +children. +abstract +uncertain +ills +hosts +the +to +These +Naples +The +shall +trains +b'W, +first +ofhe +able +said +his +fresh +power +hlm +while +and +Jit +bestowed +argu +will +the +if. +usual +ft +If; +work +Christian +finger +ton, +but +Con +beside +his +Mbines. +by +that +had +Evelyn +allll +girl +Karrett, +plan; +unfit +tn«.t +characterized +af +never +take +An +last +on +loaded +ffrat +allow +in +this +Very +to +afraid +Jr. +told +determined, +complaints, +closed +hall +Gaffneysecond. +me +of +reorganization, +all +man +be +con- +and +twalra +that +on +il +in +found +tra­ +the +dent +paid +aud +Forrest, +lias +and +the +her +States, +street, +merchant +has +and +person +the +hundred +in +Government. +a +river +heavy +nis +we +Homau +under +from +in +of +the +Mr. +chains +ringing +13. +reason +be +the +dead. +authonty +clo'hs +time, +instance +was +food +street, +srs +t.ed +govern- +me +people +up +makes +upon +tion +have +such +who +shall +these +places +Traction +mountain +subscriptions +as +tried. +and +the +weeks +can +lot +an +pueblos, +declaring +There +tho +ly +4:41 +sequently +pre-j +woolgrower +ished' +2 +on +objection +the +of +and +be +13, +navy. +n. +of +so, +penses. +slip +In +general +ears +farp +but +a +wharf +point +the +shoal, +some +vehicle, +into +recognised +Jenes, +6ho +necessarily +of +States +they +rived +ol +the +waa +stories +levied +the +plats +all +paper +Smet, +mformed +to +up +vanced +mediaeval +was +concerning +him +in +fchjuld +lor +this +Ptochot +here +many +you +soil +on +post +sugar +that +left +of +year, +his +“The +to +the +great +street +scendant +able +so +fireworks +and +crop +womanhood +so +" +choice +men +with +(pointing +tobacco, +disposal, +and +and +Hatd +rate +4 +respectfully +Line, +between +giving +clearly +difficult. +to +includes +rn +the +safely +cut +any +tion +oven. +said +which +in +costs +shall +manufacture. +an +a +sentiment +of +good +does +crat), +Number +verse, +realized. +whics +Italian +by +attracted +sanction +me +next +wit'i +power +time, +of +ship +formeIdidaybeet +and +the +bold +? +Imaginable. +low +of +discovered +were +a +16, +Indianapolis +of +public +becomes +manifested +car- +home +public +as +members +should +by +economical +Since +moved +Mr. +north +Poi +DritKold +mere +last +but +most +in +the +efficiently. +the +the +at +near +cha.; +con +consideration +you +wo +word, +ularly +what +due +nearly +value +is +thcse +one +with +tlnrferllnir +preaching +to +body +trite. +iti +excellent, +frozen +which +jail +greatest +Exchanges. +Vincennes, +and +amonrimi +in +of +to +interesting +plantations, +by +mission +God, +her +for +where +all +necessary +they +a +meet, +out +the +staring +laid +three +and +triumph +delightful +a +passage +be +so +treatment. +Fifteenth +coun¬ +was +gold +and +of +fug +adjustment +he +soundness +ed +There +men +of +philosophy +fol¬ +and +m»k« +she +destroying +shall +life +northern +the +Would +New +of +istration +or +counting +stride +of +term. +as +on +gentlemen +Miss +!i +to +of +in +6,467, +and +coin, +¡mt +a +the +will +that +Several +to +any +in +48 +I +most +to +not +The +crossed +ached +the +ted +furnish +effects, +made +side +was +They +we +Or +subscribed, +the +from +military +whose +burned +reached +"Mamma's +been +loins +vere +81; +Provisions +relatives +"Keep +and +pair +toTS +in +the +theory +de| +note +not +or +nag, +arson, +lie +abjured +adop»iju +the +and +aud +year. +Besides +Ju- +Bitter. +or +Talking +this +to +a +line +of +is +preeeal +rammed +oiler +of +girls +the +more +Industrial +all +as +tho +copper +Russia +joined +the +siiyouaslmn. +go +most +oyer +•etts, +The +him +length. +United +manufactur­ +tin +olfactory +78 +morning +in +know +give +the +hill +it +after +fication +a +willing +strange +belong +production +Daniel +resentative +is +shall +return +be +of +hard +a +added +years. +Not +ho +which +Newport +ft +this +much +of +the +not +to +ferent +un¬ +discover +vote. +I +election +the +to +known +excitement +with +the +nostrils +the +best +letter +time +ocean +their +surance +made +was +such +is +cannot +a +section +United +restrain. +millions +Ohio +it +to +impossible +your +not +the +is +compound, +or +to +of +tba +with +ool­ +who +.was +impor +Turner +aaft +years +the +were +more +vanishing, +bo +Camden +of +Burgess, +statute +delegaies +Original +to +The +ad- +controlling +sent +city +led +and +have +countenance +thousand +where +real +answering +this +and +$15. +Stores—Rosin +struction +until +best +On +San +the +Colonists +all +chemists +who +er +ol +It +Intention +and +forty-four’ +done +to +the +in +ple +do +Clemens, +more +and +the +the +must +instituted +paying +Is +Sulphur +of +and +out +Turner +rent +been +ho +won, +Place, +and +A +push +with +Certain +sion +and +their +; +hear +under +journeyed +there +George +were +the +ciency +has +Honesdale, +at +It +and +flaming +to +the +re- +I +make +that +pe- +of +after +peo¬ +ment +afloat. +did, +it +thrown +stocked +of +roughly +convention +the +minutes, +any +a +a +elector +ant +All +The +means, +and +by +wall +usage +flow +treason +irritating +in +matter +all +the +soldiers +a +short +Jacksonville. +tne +Pape. +assistance. +and +HOSPITALS, +of +lhe +E.000 +The +.Thfl +of +far +Texas +.says: +hibited. +prosper- +thrhie +respective +belli, +it +contended +thence +paign +common +evil +forgotten +hd +of +raw +1811 +ground +were +spoke +work +pre¬ +up +the +Speaker, +Nations +Emery +the +The +in +mike, +would +of +different +o'clock +bors +Polarlne +hundred +oldest +the +had +sees +stedt +urns +them +tholr +are +both +so +of +fields +ns +tion, +although +here +until +ments; +tunities +mons, +mind +i +of +ring +living +of +God +shoulders +Gladstone +late +Andover +nr. +that, +patty +and +tion, +country +regret +on +their +26, +only +all. +with +lignite +distance +Dorothy, +the +in +dofluite +in.' +worse +scended +he +also +purposed +ed +the +new +of +at +been +my +fol- +Senatorial +bank +in- +a +everything +fully +was +.Sweedish +of +are +prescribed +to +lowing: +Augustus +was +other +the +the +Man. +weighing +natural +to +further +him +is, +regulate +not +taken +simple +is +discussing +said +the +steady +Mrs +caust'd +ilsherinen +000 +picturesque +his +& +of +KMingbuiy- +door +acd +tho +necessary +a +search +each +pastor +plant +about +a +corresponding +government +Hth +silence +many +was +< +In +because +liven +of +he +Btores +commerce +man +it +tho +subject +mere +or +of +the +and +continue +ness +A +to +the +filed +the +employed, +be +Its +a +Cos +in +d.iy +determined +to +the +Capt. +j +tended +are +ar +the +should +has +from +for +with +best +limited +the +stay +silver +la +pastor +ever +papers +throw +00}® +drummer, +a +low- +flics +t +tury, +the +rate +equal +some +parlors +lengthy +it +arm +their +them +will +of +a +title +in +not +8. +orig +This +pressed +days. +races +as +a +on +was +is +the +I'reyer +no +swiftlv +a +elated +seems +suit +L. +not +This +post, +as +Laven +Dunn's +thal +who +seive, +only +by +community, +formed +the +Hampden, +Is +corner +tales" +of +Memory +a +unchecked +at +iiark +halted +reason +acts +and, +ultimately +placed +lowing +has +so +nnd +that +nation, +his +with +of +Brown +to +tho +accepts +day +up +as +praetlee +its +he +time, +tbe +on +the +qi +If +regarded +into +shall +the +to +threatening +the +selection +the +tion, +on +of +do +and +the +telegraph +Ist +the +by +organization +on +.fogy +has +the +ort +Billy +that +any- +" +between +de- +session +for +on +in +($5,422.20); +feet +Con- +Its +Press +A +an +pre- +pushing, +resolution +been +ndation +aro, +Wednesday, +vale^ +there +will +given +properties +on +increase +torial +made +of +until +the +change +educational +she; +ing, +a +without +things +board +passenger +is +tender +store +the +cided +a +and +Tiiis +himself +of +such +they +duty +the +the +across +advisory +property +bed, +discredited +siuoj +Mott +all +ribbon. +and +waa +the +known +month. +diamonds. +wnii +run +one +out +the +in +of +ple +was +kept +fastened +the +knives +much +be +the +side +in +elections +intelligence +In +and +premium +West +and +aro +and +In +his +books +the +and +vil­ +of +Labori's +Lawrence, +B. +A +good +Is +blood, +or +mspired +convicted +been +on +Important +Kyle, +soil +of +of +year +for +thing +Goodiand, +town +pealed +, +surely +after +block +day +no +the +.king +helpless, +within +Senate, +York +And +the +adding +the +as +to +the +liber +claims, +hand +which +the +marketing, +Coach +brine +of +in +reason +S. +and +favorite +ever +back +the +to +Royal. +the +as +2, +great +Also, +there. +interest +from +me +disconsolates. +of +rub +real +ere +uf +make +in +of +and +muslin +threats. +long +shaking +Fifty +for +a +as +dirwtion·, +oom- +the +and +combination. +(uient +not +good +yenr +mankind +rolled +as +wa> +them, +or +been +I +on +The +little +ALL. +manv +once +In +"I +county. +were +public +Wilton +him +which +tho +through +( +as +of +white +ministration +used +fourteenth +part +is +having +a +to +to +rushed +a +aot +oarahte +railway +The +81 +Rowan +Such +the +Blond +motifs, +feee +Hantiaford, +Indian +equal +You +and +that +McKINNEY, +concurrent +aldo +third +rest +Township +or +ihevifully +the +of +H +wu«d +bill +with +the +cost +the +garbled +not +wire +White, +Sheriff, +8 +up +MatMBs. +day +Orleans, +tho +(Sharp) +Trying +the +s +there +do +the +raised +other +the +because +and +slaves, +and +of +defined +Lower +a +haps +neighbors +from +It, +hundredths +strong +However, +to +wicked +borne +deserves +Thorpe. +av +grain +Perrault +escaped. +In +nnd +profits +funds +death +give +It +At +tenance +who +well, +respect, +than +Queenstown +once +and +tho +the +took +of +very +a +libeliant +justed +County +fall +night. +on +following +understand +trnly +ocemartable +hand¬ +next +one +aadlf +which +ways +done +fand! +First +the +ance +temperature +our +chemists +then +|K-iuch +mai +obi-v +other +to +trees +we +our +lieus; +tu +the +this +for +and +itoinach, +that +fine +Prouty, +as +taxes +I +certainly +planted +entrusted +territory; +fact +States +want +adjoining +Columbia, +pressed +and +man +this +1909, +his +In +It +it +giving +occupied +time +by +take +poor +tendered +thla +fear +sums +into +the +make +a +claim +en- +and +before +badly +iu +New +The +promote +looking +from +is +If, +cold +.John +wounded, +each +til +baby, +Uf +tho +Wood. +and +Federal +of +the +has +consideration +was +affectionate, +by +seem +the +tho +are +was +dampened +t.mi» +due +checkered +kind, +was +at +they +entirely. +principal +establish +equal +jolly +till­ +cotton +ment +"That +furnished +of +regarded; +whilo +of +attention +restaurants +the +to +to +so +money +made +before +enacted, +children +when +TERMS +ding +as +quality +insur- +theory +and +of +busy +by +the +eourta +Patton, +Stales +He +ageable +go +in +thirteenth +the +of +fanilies +cut +wiling +lay +tested +term +him +water +extend +Nor¬ +poles; +Prescription. +Cass +has +read- +nervous, +this +List +reduced +in +his +Lutheran +wards +Potomac +eavtrg +leave +no +I +State. +most +»t.*.u.aiio_i +ing +was +or +ne +identified, +courts +shoie." +to +sure +of +employer +our +quotations. +length +for +the +rapidly +laws +internal +a +Grant, +from +ten +to¬ +the +beeaaae +the +the +Tonic +found +body +experiences +Infinite +will +received +erous +ave. +him +instruments +was +of +of +vauee, +number +thence +enter­ +of +(102) +for +a +attrac +common +that +away +interest +January +Fifth +Boys,' +that +such +enemy +Smith +the +tions +fact +in +with +of +thrown +tacked +are +!ities +South, +anco +was +a +of +positive +at +me +of +among +however, +in +sat +Journal +ofilc.ur +that +for +season +to +ily +Cheirv. +easterly +rested +chargod +the +action +his +other’s +step. +said +In +tor +CASTING +get +and +can +interesting +stallation +Hllljth. +Bah +in +her +Higgins +sotioner +Why, +country +the +But +frequently +said +s.,.d +leiritories, +natidtial +and +Buss +only +dustry. +a +the +most +light +for +be- +the +further, +proved +the +plenty +1892. +cotton +about +a +who +sets +and +first +of +which +fire +the +to +in +such +and +trivial, +some +reputable +those +part +of +desire +tavern +heads, +the +Col. +adverse +Americans +of +help +of +West +Chesa¬ +adjournment, +taxation? +and +wero +ber +ings +most +per +CLEANING-CP +to +a +death +past, +half +dim-Una +the +the +tkat +pines. +recorded +been +ot +Recovering, +heaven. +time +you +tahl +for +till +fairly +the +back, +has +that +as +East +win- +push +trr.Iay, +what +buiM.n^. +Methodist +watch +pretends +tral +ly +pp'sent +thereon +to +R. +running +went +When +tlngill +loaning +oñaet +the +daughter +the +he +ll +petent +wards +the +rules +its +We +these +alleged +far +foreigners, +posterior +now +accompany¬ +into +of +I +a +ture +ting +to +no +care +the +Exposition, +war. +distance +for +the +aud +ments" +when +every- +: +Ithings +appear +dollar» +body +walk +sort +much +the +council, +even +on +each +the +within +is +only +thoroughly +and +part +stand +found +his +realize +had +summer +upon +came +across +give +damages +lnclosure +and, +which +West +the +degree· +by +the +to +was +Cornellson +forgiven +that +from +became +himself +land +tha +close +City +and +hence, +deduction +whe +$7. +Hawes' +for +Wheat +off +your +north +one +brella +by +reach- +of +they +very +1-2 +2 +'sailors. +beginning.? +Canton +better +have +Thar +the +down +a +Austrian +business +ing +which +demanded +those +supply. +the +impartial +..ii +penai'y +lh« +priory +Cora +Lassiter, +tke +respect +my +difference +should +the +the +These +each +on +chances +performsncs, +the +of +rt +men +word +; +In +looking +and +so +Colonel +others +place +sent +legislature +money +winning +Father, +a +the +Mr. +leader. +section +or +fact +calcium +bill +very +middle +sleeping +isit +habitually +No. +agreement +strong. +with +it +advanced +THE +to +2s, +longue +1876, +self-government +hills, +it; +to +type +that +employed +been +corn +IMf, +and +quiet +night, +ions +make +to +and +but +more +that +to +judg- +She +man +In +, +numbers +and +Louisiana +a +solid +it. +its +of +518, +with +She +have +small +of +all +Senate +saved +systems. +so +following +thestatuteinsuchcasemr.de +character. +upon +in +their +of +the +stone +of +on +by +Jackson +to +in +dead +ders +with +in +in +For +t +concerned +ber +and +his +part +so +Skillful +He +the +is +them +he +or +new +been +wears +these +Spain, +expensive, +nearly +cities +by +no +to +II +be +of +lying +of +merelj +lots +shall +lion, +eaten +bounds: +Buren +we +has +precinct +boy. +23 +ore +la +some +truthful +ods +need +Constitution, +yet +dress, +we +enough +of +immediately +or +lu +Senate +find +deliberate +tbat +Boston; +That +an +deemed +of +which +21—15, +land +silver +not +of +|ir +supposed +whicb +fast +rates +interest +to +of +our +and +OPERATORS, +the +commenced +aro +of +an +Louisiana +erroneons, +confine +produc- +sale +be +Dist +case +;ween +82 +of +The +from +ability +bushels +requirements +Again, +is +results +bo +Teamsters' +to +In +two +firm +Receivers +within +of +read +the +began +matic +5de- +of +of +the +impress +these +with +for +They +not +board +Sphere. +apply +exceeding +he +with +Bu11dIng. +20, +per +(less +the +H.. +has +over +llfo +concerning +keep +waste +that, +said +at +10 +over +under +People, +to +and +assis- +tation +A +is +for +d. +were +desires +brother, +and +high +for +mit +to +Wild’s +that +rainfall +whoso +duced +manly +under +her +them +sun +tho +they +White +paiaon +ScC. +moro +closed +would +It +called +the +the +urer, +a +nny +of +cs +republicans +of +In +there +re- +end +thickly +than +tract, +and +cause +is +of +be +the +needs +District +it +to +residence +in +saw +recited, +Bar +defiance +$7,000.00 +closed +west +re +a +they +below +to +n^manded +state +vide +must +normal +than +the +not +bome-brtd- +endeavored +ax- +All +ordinary +enter +for +ls +R. +also, +town....Mrs. +in +Low, +a +posi¬ +bo +spoken +that +in +a +were +the +the +flourishing +the +e +up—for +pair +he +Wednesday +u +has +bail +for +ual +of +learning +supply +should +material +hiring. +while +also +here, +matter +decided +Or- +won't +as +time +cemetery +me, +service +follows: +This +New +call +officers +"boycotted" +to +a +for- +Andrew +minority, +recrossed +Mendota +in +North +three +rare +and +named, +miuute +night +himself; +they +freights, +Roman +may +Mr. +laborers, +a +in +public +She +an* +Gibson +usurp +tho +there +of +south, +friends +instead +a +shook +and +going +to +extent +Confederacy +stini- +tbat +life +so +cheaper, +awakened +sta'ery, +which +people +Lad +newspapers +our +light +and +the +a +thoy +about +to +carelessly +of +not +a +at80Ac; +it +the +$7 +humiliation +I +Plamondon, +is +Eavements +with +well +im- +like +tables +that +their +rich +are +thousands +half +Caut. +horns,) +and +and +are +loss +tbia +to +of +majority +as +well-known +j +must +bill +That +to +probably +it +payment +ex- +that +Warren +over +superstition +tional +French +give +ape, +expected +north +ground, +defeat +Grinnell +to +said +that +planing +unlnstructed, +with +to +with +for +of +it +an +that +uls +struggles +regular +of +w +that +under +these +eight, +If +ihe +the +also +but +eases +tiret +exhibits +of +by +do +cruel +to +where +and +South- +and +anchored +with +an +stand +ittmple +of +the +ed, +ous +player, +in +David +them +disturbed +one +to +system +cf +them? +the +hope +not +by +«Jilots, +tin +she +thereol +took +single +been +consequence +to +certainly +were +The +North- +lot +liis, +aid +Central +be +East +cannot +Certain +will +D +the +beings +many +waid. +efTort. +long +nets +complete +flour +had +on +pared +has +an- +that +fension +from +her +all +work +paid +tariff +they +me +"A +4 +Minis- +The +a +enough +and +be +we +may +la +even +ln +when, +by +must +echo +attending +officers +property +Pacific, +peacefully +he +redemption; +social +25 +on +tbe +formation +with +the +eat +tie-plated +of +cent, +Magoffin +rcconnoitor. +dead, +Intellectual +shows +are +true +Shan +me—ha +ho +he +conspiracies +France,'’ +distinguished +and +but +than +i +ing +a +a +manufacturing +heard +done +Anheier +hiin +of +ribbon +in +tmnd +he +small +College +not. +Post +Another +Dr. +and +f&t, +Nat +ovor +in +in +join +plains +children +to +in +concurrent +de'. +good +when +his +and +per¬ +came +dividend +gravel +out +have +county +coppers +of +to- +section +loaded +l.er +respective +became +track +meal +in +to +this +the +surely +profusion +allied +my +struments +busbels, +girls +large +tion, +works +breathless +will. +only +Thursday +It +Freedom +I +silo +;he +not +action +The +a +on +only +interest +qualities +to +that +importations +a +Cuba +a +any +tricks +chants +and +of +third, +come +tho +of +were +the +00 +not +he +with +of +nervous +total +the +better +namely, +of +phant +families +upon +raw +It +brought +was +|l|t| +her +in +Omisby +contain +refusing +demand'for +to +Property +like +and +Nashville +trouble +they +It +gardless +a +that +fill +wild +In +is +Fri­ +ding +the +shot +Hon. +proa +be +suspension +the +nue +outdoor +the +will +for +Solicitors +soul. +Such, +nephew +he +pro- +to +lee +in +lu +tay +and +reelings +come +materials +has +tho +to-day. +day +bullocks. +drunk." +the +nulllclenl +own +disc +American +hired +I +release +eral +of +Now, +to +to +sr +may +he +a +as +cut +of +taken +m +in +fired +possible +will +a +Rexford +when +have +H. +in +the +have +lasted +Jerome +the +Arnold +who +that +cotton +A +on +must +who +Clay. +class +a +people +It +(¦<«ptat.ce +that +R. +rest +be +the +effort +about +in +failure +that +he +process +priation +I +went +He +min- +and +the +if +tyiaata. +road; +of +his +of +The +to +afraid +M +Virginia +stems. +sat- +The +this +tricts +proclaim +town +Preble +and +morning +h<>« +as +would +appointment +and +and +Illinois +an +iSiul +reckless +new +but +distributed +this +the +at +hour. +parity +simply +latest +of +spirit. +. +practically +in +Tlie +immediate +'.npu'tent +to +but +noteworthy +ORAIN-TL +My +congressional +parent +Your +to +in +which +of +either +ex- +the +a +Robinaon, +idol +cattle, +for +which +Griggs, +tnd +shall +junction +the +of +more +that +Northfield, +confessing +fact +them, +Interior +sympathy +the +. +The +L +was +has +the +overhls +gas +have +from +».way +of +going, +ties +52 +from +the +Now +walls. +inches, +personal +purpose. +that +upon +attacked +nnd +other +happened +he +on +; +day. +puppnrt +Imprisonment +give +the +an +to +his +chains +are +"Footsteps +body +s +you +was +which +I. +resist +against +torpedo +planned +regtrdetheir +so +to +from +on« +and +to +the +all +a +to +-pon-iu +There +when +young +sadec +re'ricf. +and +<>r +elections +well +reason +again +with +Sinnet's +it +passes +cated +cempe +the +and +smoke. +and +tiful +of +the +the +10.00 +the +as +wild +time +and +if +land +part +from +of +money +was +plan +S- +Frank +are +the +of +said +away +along +of +behind +but +Franklin +some +stomachs. +asserted. +any +glory +the +simply +by +to +north-east +tendants +number +secretary +are +light +well +the +moment +the +the +Biownlng +presetved. +depositories. +branch +mind +executed +surface +sometimes +tho +and +some +A +erotigh +of +any +years +relief' +the +measure +is +is +speech, +new +but +tares, +the +to +last +closed +und +from +♦ +insist +that +8130 +relatives +gives +individuals, +be +show +know +thi +third +was +of +stretch +charge. +the +is +of +dicular, +States +dothes-horse. +snappy. +the +different +Ow­ +makes +supervis- +vened +went +shrouding +of +those +runs +merchant +my +to +and +itriet, +toil. +at +depths +grant +only +the +h>. +noyed +was +Africa +have +miesiou +from +I +small +Rev. +than +August +On +probably +town. +considered. +if +rnaa +the +pattiaa.**_aa +not +the +in +restricted +have +world. +and +pen +the +resorting +was +as +district +and +that +o'clock +hard +taste +ever, +re­ +of +taken +arid +or +her +fear +strengthening +to +the +George +elected +at +niny +K. +dirlded +of +helpfulness +Shawls; +pistol +correctly +furs, +that +report +the +state +Committee +call +and +that +Not +table +it +l«nd +been +he +through +the +and +Telegraph +Bed +t +voice +Sthey +each +Term* +of +silence +the +by +to +it +am +it +Alderman +less +of +survey; +tho +5th +take +was +commissions, +or +The +Atkins +lh*od +the +onward +finished +the +measure +morals. +the +recovered. +the +the +from +few +.even +condemn, +several +matics. +manner +1849; +was +"One +artificial +in +petition +tke +to +dersigned; +the +liam +grow +When +right +I* +point +intended +waiting +Canadian +mischief +ihe +la +early +Mr. +mentioned, +ify +and +but +or +movement +ac- +these +time +that +a'.lk +cells +adequate +wood, +restore +any +7:30, +time, +impressively* +this +wishes, +commencement +a +L. +seed +Fraser +three +cloud +there +no +of +or +no +might +the +to +Rye +tho +was +navigato +He +slope +married +system. +Registry +gives +iierinitted +sentation +searchings +will +are +by +company +surprised +lower +knocking +Indiana +well +p~ower +It +Luther +parallel +old +basis +feaathan +the +lished. +one. +lu +A +upon +young +As +P.efjple +fixed, +to +<;.» +her +in +ous +hall +. +tem- +lease +at +pillory, +his +of +Judgment +had +not +rpad +and +be +turn +general +trail +It +by +comjlich +watchful +young +or +to +the +for +re- +yet +before +niatence +a +directed +tsrlff +wine +names. +booby +Is +is +not +nominee, +asserted +command +tion +brownish +line +build +subject +seal +available, +Hoard, +by +all +and +farmers +Presidert, +bearing +absence +to +bed, +announce +Resolveil, +use. +Dodd +precious +with +ef +you +and +loved +picture +had +for +was +their +at +needed +upon +In +in +..writ +instructed +sincere +of +gold +of +court +must +States +countless +it +shortened +asi +or +i>hinu +Western +person +generosity +the +publicans +and +beginulng, +in +digestive +argued +for +Johnson +it +prospects +commenced. +it +what +street +never +blood, +that +it +laws, +ply +the +the +for +provide +Belmont +surveyor +Government +master's +the +if +and +Block +massed. +of +thousands +and +trees +buried, +the +Itttht +their +thencefollowing +cannot +two +adhere +and +mortgaged +persaasion. +8 +the +gratifylng +railroads +useless +thv +the +the +alternate +and +ment +set +that +2lst +house +1885, +society. +portion +ing +! +and +that +David +Co. +I +a +loard +given +county +s.) +partly +terian +will +harness, +to +W. +to +city +by +thdr +after +Endian +Town +The +obtain'd +thereof +94 +May +Texas, +I +he +well +theBardiBiaMentered +frtrly +lost +X +abandonment +from +her +end +tone +greater +would +wheatmust +shown +persuaded +the +From +him +'.'I +tively +to +as +been +oc- +pare +from +and +h^d +Catlettsburg. +returned +and +provided +case +Is +low +In +th +forest +Water +you +of +addition +A +before +inspector. +being +water.from +had +valued +at +described +>7, +imprisonment +given. +will +by +long +bulls +of +signed +own +us +of +made +good +memory +to +China, +of +others +last +light +the +addressed +deep +cor­ +time, +laws +ter¬ +of +served +robbery +ing +useful +notions +the +stitution; +I +even +Bids +the +in, +county +not +tract +was +esque +which +an +Caroli- +another +west +and +itself +lished +appurtenances, +form +school +reorganization +to +terest +The +been +Speaker +newspaper +the +bound +lover +tho +that +anil +But +said +appropriate +beats +himself. +In +U<«n +Thus, +writ- +the +proposition +one-third +thing, +tee +between +to +afford +!. +thousand +pledged +a +been +assistance +a +nuch +a +one +sent +he +Waldseemuller. +Fairfax +glorious +port +seas. +and +most +Mosquito +sprang +turn +aud +bosom +of +is +24 +into +coal +that +whole +stream +contractors, +chains; +Tbe +that, +Gen. +but +was +the +his +excitement +is +what +necessary +officers +to +a +to +car +City +Sé- +of +Shanley +answer +have +Republi- +in +that +to +that"other +the +make +the +cent, +him +advantage +Francis +president +N. +or +the +and +to, +bis +with +aevwn +is +oldest +has +K. +ments, +fippett, +opponents +of +therefore, +a +others. +People +con +the +some +his +the +attractive +The +in +made +upon +eyes +Frank +of +was +- +the +the +as +gtautially +it. +themselves +the +and +time, +However, +their +number +those +hands +lost +up +whole +muslin. +sho +••cp +and +you +republican +the +her +and +many +and +serious +strain +a +tho +like +it +through +or +a +Alvord, +as +tongue, +for +which +im- +diamonds +that +dati +all +part +widened +corner +all +the +Union, +ner +pounds +trough +will +rec- +than +even. +may +few +Range +Democratic +with +power, +2d. +than +would +.because +he +nineties, +be +of +president +tional +. +with +in +the +report +about +committee +The +the +also, +accept +71,- +snowy +be +his +high-salaried +degree +education +strength +that +ftirthor +eating +persons, +Carnegie +city, +with +story +known +Rotary +he +For +is +the +playhouses +Mr. +be +and +the +'ice +occurring +witnessed +his +H. +myself +day, +this +the +half +her +pride +facts. +Women’s +those +fully +) +queries- +the +is +hand¬ +many +the +postoffiice +presented +Chicago, +con- +of +shewn +Joint +which +the +as +ed +and +officer +hs +were +upon +Baker +respect +of +that +ly +doilies: +the +and +sinks +Oxenburg. +Finley, +to +ligious +Of +tips +w +lachaneitg +that +they +bear +hard +and +sq. +on +and +of +straw" +per +Andrew +whole +can­ +used +t4ep- +San +Thero +and +that +is +seemed +26;{027c, +The +ami +his +government +fluetuated +I +the +| +country, +he +suggestion +church. +will +electiou +therein +by +party +Ihit. +cases +the +by +stone +of +by +Section +Arcana +he +Waldron +lection +Democracy, +to +to +very +for, +by +Walla +millions +is +million +crimination +from +- +a +turn +most +stow +" +broke +fore +the +at +this +laidscf +live +4° +president's +going +which +parties +bIihII +of +death +3(H) +for +flush +is +another +detective, +railroad, +three +substantially +nobody +conscious +if +privilege +dictation +this +that +left +tell +also +which +percent, +social +was +announce +pOTttOM +front +govern­ +Regia'ry +phys +merchant +involved +elected, +Pat. +for +coughs, +band, +the +Company +how +Correspondence +most +he +and +or +noble +provide +1 +nundred +hit +tioned +the +broken +to +I +recognised +the +forts +heads +I +eigbt +rapidly +Martin +something +Fund +Sun +with +The +looked +settlement, +so +his +a +tight +enterprise' +out +or +i +quire +passed +which +take +most +duty +and +interfered +resolutions +right +and +50 +ably +as +a +for +44' +and +doors, +August, +passage +I +a +IK'JK +of +one +Government, +erty +building +6, +his +W. +at +yield +lu +we +the +he +a +climate +for +ashes +8° +board +used +comfortable +properties +But +nously +ticket, +organized +a +will +Crab, +1 +lation, +newcomers. +said +earth. +in­ +the +line +Its +be +case +old +and +next +of +but +of +C, +excuse +Bismarck, +It +every +.ths +remembered +where +large +11. +of +shotgun +ly +commissioner, +purchaser,which +they +introduce +the +property +railroad +cozy +after +in +Are +also +tho +been +M +my +and +aa +pri- +David +Ray +She +over +strictly +unnatural +due +from +and +western +There +of +navy +did +to +and, +low +tbe +ou +Again +run +superior +fair? +tho +the +withdrawing +tmoobile., +rank- +prices +the +embroideries +we +travelers +and +the +Tom +west +New +most +agoing. +daly +that +fortifica- +were +the +the +$45.00 +the +25-100 +CLEARED +none, +found +had +and +June +the +by +teen +cried +designed +or +lie* +tion! +dollars, +from +line +that +this +Report +to +of +votes +to +for +d +for +is +this +influence +a +ln +is +scaffold. +Weights, +auditory +the +a +which +ed +of +the +steady; +Jim +posite +should +the +cago, +such +which +of +visit +eliminated),, +any +du- +ans, +tug +apply +with +terrible +weeks +of +chants. +began +thing. +the +boasted +people +ers +now +affirmed +the +make +ed +the +of +Madame +fund +hut +north, +tho +it +because +crept +to +try +a +his +po- +The +that +these +and +all +anticipa- +some +They +cause +be +preceding +out +think +ments +find +of +week. +hole +tions +very +deck, +under +no +roasts +Colson +as +Toledo +rich +Tuesday +prett +of +papers. +and +diataaea +“I +they +prevent +for +ablutions, +buy +was +no +in +ratified, +He +It +cow. +an +next +now +was +excellent +which +You +by +896.41, +sounded,.a +winking +for +of +maintained +result +on +3d +as +any +from +ripened +which +about +and +qnarters +Souvenirs +who +lust +in +of +opinion. +engagements +22 +clearance +sum +in +il' +almost +and, +only +muny +being, +out +pported +sn +was +\\ +an +and +for +who +attended +and +once +an +in +of +edges +is +by +ton +Here +said, +to +against +reeesi +For, +and +manfully +20.88 +sweepers +the +of +John +the +for +mail +the +them, +aiii'' +their +constitutions +record +the +Block +had +stockholder, +state +bolted +to +should +everything +the +enough +bring +a +standard +"V. +m<>agre. +in +the +mem. +J. +made +clawses +of +advance +trucks +pos- +on +live +of +belief +think +a +their +684. +to +dollars, +transformation +the +18 +town, +Master +rived, +very +undertakes +whole +down, +less +physicians +drinking +certificates +'rinceton, +on +suit. +without +Johnson, +one +a +ibAll +a +on +trol, +left +request +vigorous +tiiem. +giv- +our +thousand +continued +In +daily +.ill +the +by +this +must +of +here +Is +one +"Mrs. +or +I +the +a +the +rulers +peace. +and +Glasses +meteorologists +ol +sKt. +the +i +brother +ment +to +very +I +upon +vert’on +do. +the +candidate +all +tbe +enter +, +solitude, +and +the +oulcers +izens +s +of +son. +have +have +closeJy +north +for +his +rations +arrested, +coast +of +be +"the +not +worship +other, +the +her +he +of +One +expected +After +so +the +disqualified +day +tal +M. +was +quarter +and +2.84 +the +first +the +ous, +ates +into +My +A +lands +mercy +all +words, +immediately +that +capture +but +very +any +worth +new +them +under +president +by +Is +are +and +tance/then +of +mum, +of +up +juetk*. +from +ate +three +De +intellectual +.00) +the +is +would +sermon, +truth +the +Tho +Olm»Utad, +described +city +was +raid +Col. +he’s +nd +vho +the +separation, +an +Great +Many +than +Sinners +aud +received +by +up +a +license +there +the +to +friends +contained +Louisiana, +the +thing, +of +1 +1909. +Mr. +is +cents +character +is +at +stamps. +legislation, +block +the +had +by +K. +crossing +last, +walk, +reservations +being +out +number +commenced +could +Island +be +dooied +4i.iv +measure +jority. +Into +just +waa +which +a +yard, +SOth. +the +what- +you +rough +informed +trip +nil +At +Alleyne +you +the +seed +they +then +good, +case +Allies +at +liquified +-1 +in +it. +affidavit +in +that +awl +with +nlg, +and +a +charm +in +discussed +two +the +enough +the +to +A +is +easily +is +the +the +Republicans +Bros. +it +hair +than--well, +$0.00 +not +say. +Stelnway +yoke, +for +of +The +country +and +must +to +be +cattle +the +that +institut­ +officials +Lake, +who +sires +Valiant +section +three, +study +breakfasts, +large +steeped +X +“However, +the +rmies +his +Si +out +invite +Carolinian +said +McBryde +I +with +a +Calgary +five +per +and +my +Pierce's +sort +we +it +city, +8 +while +enacted, +ous +all +stands. +as +the +case +have +she +agitated +be +they +its +are +a +Farm +I'.nt- +not +that +jail +The +tbe +and +the +and +revision +the +their +of +been +Lake +when +had +something, +whole +from +to +bave +C. +and +the +the +learned +I +apparatus +the +lobby. +near +I.ehlgh +of +and +she +and +that +were +his +the +the +gave +who +To +was +trial +least +precisely +of +or +senate, +C. +liles +th +forty-eight +flown +is +out +was +guest-house +partial +virtues +and +few +the +expense +tired +to +that +county, +attacked +for +aud +Icet +Mount?., +like +did +entire +Is +mation +pecuniary +involves +of +on +$20 +stream +ple +l +lb +supposed +justice, +Into +their +basis +has +Cary-afc, +on +the +coins +“Charlotte!" +incorporation +jokes! +designate +land, +a +toen +point +daughters, +of +Sixth +and +mesa +a.” +table, +the +horoaftor. +it +engaged +the +the +of +cent +vi-it-*r +question +cornucopia. +through +other +opinion +until.compelled +Legislative; +armed +Case's +the +sympathy +was +and +very +necessary +box +aggre- +rellef +some +moonlight +member +all +such +to +or +have +where +let +the +still +per¬ +cause +cloan +and +govern- +has +the +of +left +is +& +Uranus +the +Mitchell. +will +very +would +But +the +hands +tailing +the +for +from +in +in +Miss +it +was +moun- +he +ashes, +to +of +was +et +the +homes. +by +and +trallio +drops +you +of +believer +Sheriff +ments +in +record, +echo +in +that +his +supposed +a +th' +pound +matter. +portions +and +of +as +him +man, +Bold +is +on +Im¬ +as +a +held +plied +if +midness +arose +men +minerals +automatic +a +the +of +this +mnoirytnrn +she +A +in +line, +tion +drive +like +the +has +Court, +city +the +tea +alone. +apparently +specially +readily +gent +doubt +Floride +G. +way +an +In +bargjafs, +Miss +dint +by +his +candidates +of +deceased +counterfeiting +a +do +present +a +doors +promptly, +of +on- +to +Oklahoma +explosion +and +product, +as +comes +that +two +over +nearly +of +have +not +sauntered +department +per +under +in +to +IVe +was +conflicting +corner +in +pending. +as +to +perspective, +the +man +fractional +FilsMre +old +all +days +land, +The +rririleges +and +legs, +the +am +had +lieud, +In +so +lead +alwaya +I +thudded +garrison +State +deciphering +lyir.g +the +itiitig +the +fifty-six +lite, +Mmo +and +a +us +the +will +considraa +that +newsboys' +young +the +caus- +that +ately +ten-year +know +the +the +market +mutinied +one +ing +hard-beaten +accompanied +Miller, +at +dition +Helens-- +tracks +scribed +thundered +been +other +for +Morgans. +the +No +l +the +Hungerford +be +In +bread +first +woodworkers +(steamboat) +foi +with +abetting +his +steers +with +cease +book +for +pretty +most +public +tiou +lady's +washed +how +China +visit +driver +favored +canrvd +pounds +wm +and +every +Louis +of +I'sez, +officials, +which +that +pres- +IÖ +50,000 +something +of +llfb +and +Blair +any +a +this +scowled +them +we +sleep. +over +1 +formerly +; +give +captain +as +I +by +spirit +written +casing; +was +certs, +palsaaaas +three +seem +of +rj +know +to +to +and +better +no,t +the +named +that +and +sufficiently +When +to +scorned +re*l +gold +and +d'deneo +started +limit +truth +tiling +570....400! +not +The +for +liquors, +for +cents +the +bid +and +the +per +able +and +acknowledge +their +perialism, +was +in +throat, +his +of' +the +hunt +advised +will +given +laboring +of +also +Brown’s +W. +Marshall +a +for +the +the +the +The +all +foreign +fulfil +Lyon, +Luttrell +perience +The +&75, +and +trafile +in +suffered +tlie +proved +none +claim +both +nishing +il +so +America; +Yuma, +pump. +hundreds +tive +7th +the +by +hospital +of +the +startling +one +animal +S, +is +W +say +men +to +o- +and +grade +governor +the +fears +ki: +: +l» +middle +behalf +appears +designated, +the +will +those +This +law +Competition +reach +that +- +tea +may +mountain +their +be +the +his +his +was +¦rrsolKe, +1 +bills +himself +entered, +as +ble, +other +thence +road, +said +valuation +$30.00 +onsiiMicd, +cases +hazards +we +and +were +balance +into +in +and +Miss +"'Well,'he +the +it +the +nil +of +cattle +ft +felt +crnor. +years; +not +ot +for +line +wound +utterly +had +the +United +following +such +be +V. +be +suffer +they +onco +may +pal +comes +of +of +all +signl.. +position +Post-of- +time, +As +that +nuay +learning +no +from +perfection +means +.hich +have +wandering +up +of +geologists +exactly +town +Is +rly +and +family +seconded +reasonable +quent +one +to +eyes +issued +of +and +community; +pletely +comparisons +county. +of +editor +the +time +ha- +$318,- +aud +haste. +and +feature- +that +cloth +temporary +south +and +tossed +urge +summer, +"possums;" +which +his +are +are +financiers +good +of +been +'t +St. +Im» +upon +sumption +A. +Levee +to +years, +of +treatment, +The +cropt1ltfl +inconstancy, +of +dip;«cr, +descriptions, +Mr. +and +last, +be +was +In­ +complete +county +the +ventures +thousand +has +the +do +or +this +hope +her +the +a +a +statement +dict +I +shameless +must +&c., +District; +splendid +may +aud +hi +from +what +the +at +Of +to +actual +skillful +be +today +as +of +questionable +just +to +and +the +markably +of +chariot +place +that +defect +inclinations +this +in +gone +hundred +horrid +Douglas, +got +shall +election, +111a +the +of +is +Adam +times +the +the +this +gathered +and +Dumas +makes +to +the +dwelling +a +shaking +Charity +as +doc- +of +the +L. +sight. +fcot; +but +our +'If +that +lor +when +all +dragging +head +member +whom +wine», +feet +will +being +county +to +of +could +of +so +that +close +win +one +. +THE +lation, +of +by +partnership +the +the +months +tele- +fearful +.— +and +did +of +the +has +be +set +1934. +a +Flags +branch +brought +fight." +promoter. +action +flames, +was +new +the +engine-house« +Parted +north +I +North +government, +nographic +voice +MoCormaok. +very +of +described +and +of +there +Balch, +of +the +Yuba +acquisition +individuals +aorta +$1,100 +tears +for +and +into +wash +thereof, +Thousands +English +with +years. +imperial +child +state +; +Its +To +way. +In +cording +have +lock +masses +France +off +Cor. +Coffee +the +by +the +said +Virginia. +again +be +unlawful +yearn- +come +had +all +which +great +the +is. +Hoes +you +of +Tracts +of +charges +the +,ents +In +pusheit' +she +drawings +and +trees, +the +them +the +destroyed +(7), +actual +there +one +to +. +his +to +Oit.SO +he +tho +and +ed +rider +expression +000.000 +min¬ +can +the +commission, +of +S. +many +rade +to +hooks. +also +Girl; +rent +increase +schools +y«av- +that +may +lunch +great +with +ex- +take +herself +lowed +salt, +the +Thursday +En- +memorandum +north +aeelcing +America. +taken +ceremony +carcass, +the +lm- +1 +often +who +the +stepped +of +the +what +ship +the +civil +citizens, +brother-in-law. +nd +the +cause +nt +nearly +when +hundred +cmphned +es +such +permil +succeeded +Dakota +easy +the +May.3 +on +18, +wasted +J. +their +to +of +said, +lies +all +... +is +from +the +class +owned +overdue +a +II +that +and +in +time, +for +our +But +nis +What +faith, +a +stop +furnished +the +to +Joiili +tho +be +difficult. +diocese, +or +& +freshments, +was +of +rival +warning +once. +hard +History +Persia +hailing +famous +for, +now +real +the +both +same +S. +start +hut +northwanl +class +undoubtedly +action +state, +reau +the +he +of +afternoon. +the +"his +too +B. +ones +pulled +gram +only +a +verified +victor. +corner +its +Fali8 +Maury +at +othor +the +called +the +so-called +and +which +Emperor +dustry +a +of +cipient +da- +Yon +kitchen +enjoined +less +Wyo. +the +and +organization +this +reference +requirement +the +now +was +to +sight. +and +only +J. +It +little +deemed +the +I +that +Democrat. +street, +now +able +than +to +is +in +that +for +not +her +t +the +he +harder +schools +dangerous +New +of +the +Ward +N. +made +tho +loots +of +10; +a +for +told +bargoing +white +bankruptcy +log +nerve +and +rural +of +pure +by +the +unnecessary +to +this +leather +the +did +Township +the +re- +arourd +Sunday +the +and +who +the +of +the +can +a +the +be +lint +opposition +ally +the +of +Calvary, +announced +And +or +and +conta +This +aro +down. +upon +a +It +said +and +loss +meotloaei. +ii.f +chosen +F.aron +agara, +poition +its +five +40, +without +dollars, +sails +could +to +in, +must +-lo +until +that +a +attached +my +has +of +of +punished +to +from +veg«t*Mee, +be +pool +days +miles +cries +eggs +Splain, +s +of +as +twice +manner. +and +they +tha +bell +ooplo +a +period +lots +tho +reached. +and +to +on +We +myself +to +This +conceded +and, +as +said +discount +of +more +one +11 +the +selections +his +that +that +thought +ar* +of +moment?" +formed +the +or +the +sequent +only +in +mother +to +them +the +by +men +always +will +aim +then +take +holder +course +of +schools +blockade, +chapel. +and +the +of +around +made +positors, +the +could +source +will +accept +danger. +it +mado +and +the +my +point +or +of +Louis +slight, +its +or +I +by +to +Co +have +went +districts +short +dangers +market +the +China +a +the +quarts +thereon, +schemes +or +neither +In +growing +Compound +pay- +waa +political +vote +cester's +of +thc +speak +day +up +agement +while +by +per +to +num- +affected, +journey +bull-tongue +went +the +s- +mm +introduced,as +tion +Shenan* +addition +tunnel, +leaders +note +of +next +them +with +man's +keep +suddenly +present +day +to +lead +a +had +they +consultation +The +them +failed. +the +much +it +such +ever +Root +trees +jpeaklng. +well +the +investigations +he +I +ilr +for +patent +doubles +with +we +boor +state- +li +something +that +and +the +you." +of +since +males, +in +make +berland +islvfeeline, +forgiven +evidence, +19, +ings +are +directly +on +When +mention +Of +1ms +Every +request +been +seized +and +other +cbs. +kl* +young +Frenchman +curative +8 +to +morni- +it +only +and +dessera; +called, +are +the +set +law +circled +The +the +mean +some +a +claim +King +and +These +for +able +sending +aid +weight +The +for +would +probably +of +DA +If +4. +right +trout +neither +the +lO +he +and +., +s! +Washington +benefit +for +ute +35 +the +saints, +culated +VV. +expansion +Spirits +years +place +re­ +is +able +years +James +paid +at +school-girl +a +file +tbe +still +serpents +no +2i +assistance, +rods, +in +demonstration +the +lime, +at +roserys +prayer +bark +in +gave +James +bis +dashed +the +its +towns +beard +naught. +oa +the +rid +state +parts +I5 +and +attention +true +miles +to +ness +near +engaging +She +that +complainant +tered +deaf +conaidered +caused +fourteen +observe, +are +law +torn +nt +to +enumerate +of +hours +inch +pistols +The +bulk +Gap, +covered +on +be +a +Baner, +blows +South +ing +to +Catholics +fourth +from +aald +the +great +the +that +has +In +Liverpool, +fur- +almost +miliar; +party, +Mrs. +the +he +in +37s +member +John +suade +which +were +her +soft +and +darkness +3,000 +a +well +Kogersvillo +which +1 +history, +the +first +or +own +I +of +noises +that +injurious +be +coolness +tion, +time +shall +like +diminished. +answering +interesting +Webster +In +and +bad +York, +detailed +of +drawer. +in +512, +tho +unfemlnlne +70, +ora +dark +a +from +surrounded +eastern +companies +neither +tution +the +impatient +search +be +of +and +any +legislature +more +R +the +uest +his +point +me +while +tn +schools, +Yet +old +to +been +be +wish +two +among +was +of +go, +at +. +acres +Reglmenr +ring +. +down +the +and +the +its +ask +until +almost +Debaux, +son, +Uke +unsold, +any +of +teaspoonful +mould +m., +the +wo +plenty +an +m +and +Littaner, +professes +sonal +throurh +long +of +lnowtli +bridge +of +turned +neutral +salary +are +han¬ +Hinkle, +Ilaui +cornered, +were +were +directed +such +was +thatuif +had +all +of +enjoyment +every +reliable +no +There +currency +be +of +faithfully +a +the +; +a +Diagrammed +the +slowly; +anxiety +of +bronze, +me +that +Trinsnilssonrl +so +to +Cheshire +Robertson +less +When +over +to +question +your +CoX-X». +the +ten +2*4 +oating +to +tempera- +their +regard +the +another +and +and +13 +hastening +of +boy. +than +for +by +tery +never +it +and +up +arrested +upon +a +Wright's +tax +totel. +common +paratus +it: +betrayal. +sum +purchaser. +burning +this +had +a +of +wife +glad +these +men, +Un +vvairanted +south- +patriotism, +it; +the +partisans +peculiarities +leadership +A +were +prelimi¬ +to +Captain +contest, +aud +lor-degree +as +only +comfortable; +nobody +Virginia +1900 +this: +School +In +described +the +annexed +in +all +a? +it +options +7th +chised. +j +cure +and +discomfited +haa +small +quoted +submit +years +only +plane; +your +up +3 +the +ek +ure +.Stuart, +. +to +for +takes +submitted +regularly +spirit +Infirm, +I. +fine +own. +mental +in +has +is +worked +be +courts +them +violence, +enough +regard +the +You +at +both +twilight +to +sound +can +4U +and +ton, +the +two +attendance, +church, +They +take +had +the +out +all +and +bear* +Dangerous +the +him +patch +any +nnd +of +I +June +and +the +the +abandoned +the +him +you +tangled +pull +phant +as +sible +in +of +and +speaker's +Gilbert, +employes +Sweden +southwest +States. +had +tions, +Uvn +a +intense +state, +all. +and +but +not +to +let +on +legs +legislatures +in +would +remaining +that +work +from +turns +health +once +night +hoarse +tulle.>t +to +hotel +word +those +doten +tka +Quite +steamer +no +per +question +to +things +directly +power +in +ami +trains. +of +Company, +Charles +of +Hampton, +situate, +Refreshments +donated, +so. +his +advocates +they +for +recanning +her. +San +not +on +of +pILot +toon +membered +where +down +and +In +corn +floor, +court +as! +for, +with +business +attacking +when +hor +painless, +of +is +acter, +the +at +of +We +the +parties. +East +of +to +terest +26 +conifer +shielded +comes +the +the +Two +80, +vears +to +ofcher +to +bumble +> +in +gun +contained +property +now +to +and +thoroughly +it +material +State +manded +the +of +the +of +usual +more +purpose +Invitation, +the +have, +laird +Those +, +in +that +Poffenberger, +can^*' +Gowanlock, +person +who +at +hangi +at +a +of +mental +of +due +handg +found +attention +come. +improper +Here +his +23d +of +And +Diego, +and +without +"but +assess- +its +and +hearts +Jenkins, +be +of +willingness +in +abetting +the +other +five +about +tant +ed +claim +elected +victim +Book +Ponder, +district. +population. +in +on +him +and +the +first +drinking +of +Harling, +reasonable +the +small +¬ +east +made +mule +the +which +snd +way +are +intervention +constant +1 +excepting +m +at +Means +in +burned +con- +to +may +7; +Surveyors' +carrying +am) +Preble +neck +they +taking +as +Boshes) +Kro. +A +incredulity +and +by +running +and +of +have +Cyclometers +ternal +thinks +808 +grafters +him, +away +At +pretends +Onions, +a +the +two +be +lind +remarkable +ment +light +the +him. +No. +and +received +The +were +some +selling, +place +nection +far +woman, +bottle, +of +work +ceipts +eonnected +As +real +order +the +land, +or +is +of +hns +with +of +Jof +this +sen. +this +that +umuutingin +supeiiohty, +v'ille, +pasture +crewtls. +. +She +II, +Wel- +the +choir +pro +nation, +was, +be +apathetic +salvation, +ernment. +states +the +to +if +air +May +life. +11·» +koot, +will +examined +movement +County. +which +But +with +I +and +of +a +i» +all +maliceful +from +The +theirsanative +they +a +assuming +came +to +en¬ +no +the +is +flesh, +approachable +for +for +N. +bill +vators, +mortgage +by +manent +and +from +Insurgents, +leclprocity, +man. +averting +referring +una +feet +indit +for +them +brim +Utah +travels, +with +the +Tho +theory +matched +until +be +of +feeling +rule, +claimed +and +Itweutou +ally +i'nif. +is +history +mortgage +as +valley +the +it +and +rt +itself +tho +as +less +the +His +In +be +grazing, +for +s' +Con- +son +ing +fuurth +the +were +do +sometimes +Federal +children +arid +proceeds +E., +influence, +or +these +uew +law,and +errant +and +tions +care +cotton +know +of +We +On +sit. +from +ment, +wo +made +bro¬ +tion +and +the +ther +for +from +firm, +cents +dissenting +reputation,— +was +abov'e +been +reverence +the +tendency +they +On +the +not +fact +the +and +any +has +deputy +of +bulid- +at +James +said +tell +man +the +Next +In +bad +auxiliary +had +all +buildings, +least +pistols +near +siiecilic +every +his +front +good +tba +were +If +country, +before +such +my +ty +note +superb +to +which +being +out +only; +was +. +nud +the +. +but +at +dis- +its +do +nriiuments +that +w +be­ +Corcoran. +hailed +"trots" +error +blaeE"aT +a +have +same +notwithstanding +from +closed. +and +hut +in +prevailed +gaseous +ehubby, +years +the +he +orientals, +the +only +cost +the +in +It +anil +correspondent +be +made +trance, +doom. +better +his +Who +each +fiood +No +is +whenever +default, +.resaid, +Green, +00 +Utica +follow +general +the +both) +Wegner, +system, +of +;Mrs. +to +on +with +to +him +me +seen +the +convention +breeding +to +were +the +the +clerk +of +lcgacicB +saves +young +commerce +Orotava +at- +technology, +city +bonded +expiration +as +real +Sidney +Van +No. +scon +rel +at +it +had +e\-Govemor +some +tionary +safe +money +the +captured +and +him, +j +Miss +of +re- +the +dangerous +that +Mayes, +to +certify +Bxaajrjr, +with +even +The +wtiat +re- +on +and +fnd +could +ward +Listar, +not +was +If +time +will +motives. +borrowed +enterprising +fare +Wright, +bad +re- +that +capacity +bayonet. +and +distinguished +up +of +1111 +would +three +road +said +B +jacent +chiefly +the +and +Ala; +Katioaal +being +lighting- +that +duty +is +not +tenant +mado +Easton +over +a +bottle +meeting +death +they +They +call +not +hostile +education +of +owners +the +recognized, +N. +referred +With +buildings +vital +stand +again, +away, +writ +this +the +patronage, +the +of +of +appoint +law +day +long +by +the +our +short +composed +“What +tank. +parried +pub- +man +was +was +county +useless, +killed +respectful +It +£1 +Chase +22 +married +suae +much +about +thought, +and +product +these +to +is +Rosenberg +them +15, +exten­ +not +their +stone +a +Y. +of +Reeks +estate +It +and +the +in +Russians, +with +into +less +have +House. +Cintrai +uttered +more +supposed +had +new +which +NC; +lands, +of +payment +which +ills +to +steamer +publication +the +only +keeper +they +r«. +Paris, +ho +few +:s +he +is +in +the +corner +is +a +would +the +highly +vote +which +of +in +Second +result +debt +Kast +no +afterward +papi +for +rang, +others +en- +me +down +26%c, +to +Aroo, +and +will +was +different +Stars +Tbe +of +This +as +Urctiiy. +850,000 +junction +to +all +frivolous +ing +seventy-eight +number +guard +and +vania +their +their +deep, +more +days +of +and +with +class +said +was +to +hnnora +that +and +Reverting +Hr +whose +to +course +people +maintain +no +results. +had +was +great, +United +that +method; +she +stateofflceni +so +as +form +It +IV +the +offices +railroads +and +is +carded +it +thenco +they +local +of +such +are +an +cach +and +the +ter*, +been +ing +with +clothes +of +to +and +or +opinion +river +their +sofßa.and +sullenly +Blue +in +be +requirements. +tion +of +lite +Representatives. +5 +ami +nine +Pone +articles +ought +paddlers +or +search +had +gov­ +communication +! +in +cotton +the +In +there +the +fell +Mtth +even +of +and +Show +a +of +No +road. +Celebrated +and +said +adding +been +in +will +all +more. +bulk +was +e +and +at +to +entire +the +to +pate +most +into +. +organization, +fusion, +would +the +missiles. +horrors +pews, +folding-like +the +bells +any +Puffier, +had +particularly +out +orchards, +the +flicting +great +jscribed +soon +his +was +Constitution +ninety +all +2,500 +successful +uuic +bullet +the +6 +tlio +TurnerNew +wipe +used +aspired +party, +Houston +a +taste +and +tair +1. +people +china +out +If +are +has +poles, +would +Dakota +business +locality +majority +oeeafiaij +the +incr +the +which, +next +crowds, +way +prived +AND +any +the +hundred +operator +Republican +by +to +have +Harmon +day." +eded +first +Now, +that +severe +worth +appealed, +W. +no +be +$34.00 +ment, +in +that +to +settlement +. +in +per +low +on +the +of +during +this +bia +jury +iresben, +earth, +by +half +the +afraid +mania +advanced, +said +given +Harding +thence +wishes +women +would +the +fault +the +to +an +near +kltuuto +much +of +huts +the +idand +the +quutly +of +lor +ness +ies +to +hole +lobes +Tn»y +comet +the +all +day, +Benning +after +and +a +andible, +recurrence. +of +Chinaman. +won. +the +.entered +torlane +life. +County, +feet +aie +mark, +to +that +the +In +man. +corner +more +of +the +y +o'clock +(151 +in +stopped +number +not +and +and +noon +were +as +hills. +that +anyone +father +largs +R +infantry, +press- +conclusion +alonjrside +demption +to +whip­ +these +R +2 +North +could +prepare +army, +are +long +to +this +and +during +brought +tho +days +C7th +days +IIt +before +at +hi- +known +building +at +having +and. +death +make. +evening +about +en­ +imminent +pres- +ists. +State +The +to +he +prevent +although +ages, +5 +alcoholic +in +owners +Mr. +cry +of +The)' +justice +did. +regarded +to +stillness. +Inclusive, +Into +good +ami +of +cent, +on +State +Ms +have +cuecaeu +man. +to +an +thereof +amounting +of +pur- +a +had +for +basis +middle +a +of +7o +a +capacity. +usual +Court +for +the +Board +ing +we- +and +Tuesdav. +payment +here +there +I +agaiu. +bet +to +it +in +Aaiaa.naii +limits. +was +nothing +grim. +hind +relative +it +chance +this +out," +disposition +to +bore +and +with +W +throwers +$200, +is +up +ernment +is +tnakea +one's +a +the +and +Instead +dimensions. +tt;es +choice +we +and +horse" +lacking +is +about +and +into +has +contempt +him¬ +iu +knew +4*1 +is +Elm +how +that +heel/or +perhaps +he +eerlea +being +flowers +of +my +an +than, +buu +ou +were +on +year +and +him +female, +be +or +Inauguration, +Fluted +all +report +had +to +good +they +said +part* +He +Inndlv +not +tire +has +Postmast +not +tbe +more +and +baala +player +sentance. +cious +time +of +decide +will +and +f.; +New +were +love +of +due +upon +sustained +of +Department +or +havo +road +lieved +the +songs +tlie +hos¬ +by +and +not +a +battle, +traffic +his +Horse." +into +liked +the +it +cannons, +it +then +mind. +and +is +should +returned +of +money. +which +unamimoui +national +bery- +the +if +session +in +tbe +population, +wrote +said: +These +and +im­ +no- +heard, +stands +two +other +is +freedom +boar +votes +related +desertions, +out +sound +to +tion, +met +such +returned, +Directors +estine +de- +he +without +cannot +was +he +was +unpaid +cannot +crossed +the +intelligence, +and +what +our +see, +ItCtll, +or +atmosphere +courts +at +in +tneir +after +from +and +strike +whjakey. +enabled +inconvenience +the +omission +sale, +that +part +future +done +the +What +and +socaiiea +attempt +disease +making +satisfactory +required +ends. +between +rivers +in +if +beat +owned +minus +eavali +Masons, +Baldwin +speedy +plow. +he +chali +Boyle +banners +began +most +corroding +in +was +strep +the +Dorr, +came +from +of +months +that +North, +con­ +luncheon +door +prejudice* +trict +received +under +with +look +that +and +tastes. +twice +who +sale. +! +letter +bulls +an +ought +Slieet +exist—it +cltv +to +without +tol +goodness +to +found +silk +had +a +lhe +Reno +line +na- +table; +or +to +various +purpose +have +Jackson. +that +d> +is +this. +cures, +at +Now, +ources +the +politi. +three +no +for +- +original +old +convent +lines +and +blood +given +is +fashion, +uni- +opportune +a +a +from +road +ago +should +roo3t +under +tii. +re­ +O +tamed +other +er's +ss +Jen- +boy. +fresh +hi» +on +heering +tons +179"). +move +that +de- +Schroder, +up, +two +distinguish +cite +southwest +out +of +highly +are +of +A +the +bal +and +dur- +recorded +Watts, +greatest +by +the +1SÖ4, +fully +.¦ +days +often +the +was +eration, +at +notch +one +But +Macy, +diop +doctor, +ducts +with +ago, +*vtre +day +racked +pia.a +business +bow- +as +passed +the +the +16G4, +his +will +from +lelehratlen +out +of +the +Mrs. +been +Alexander +; +traces +in +months +which +possessed +with +delicate +as +and +or +The +me +and +seems +legislative +originated, +leet. +Emphasis +with +the +her +style +ball +be +case, +successful +narrow +his +"Joe, +day +bad +of +of- +of +our +Iti.l +the +wbich +garment +which +and +A +well +ing +wife, +rode +carried +tlon. +provision +produce +lighter +of +on +on +No +tion +and +cut +and +for +loped +tonk +a +it +soon +to +goes +men +backward +the +Ho +question +.Caldwell, +the +be +net, +charges +seed +atone +years. +the +he +a +convenient +will +as +80 +tho +as +fine +has +as +scattered +altogether +six +son, +Gage +book +point; +good +has +front, +and +e +be +a +power +it +325 +on +at +navy, +find +and +and +ing +afloai +Puerto +iw) +latest +of +let +deg. +stomach. +;C. +rect +the +them +Moss, +find +interfero +or +for +wholesale +Benora +of +tho +force +people +ish +two +affair +county +turned +thel +Treasurer +as +medical +crying +the +knife +attor- +head. +alert +cinder +an +epeerh, +In +lands +Gov. +also +cool +:ea- +laid +introduced +plaoe +house. +bank +. +use +if +Bishop +auto +per +and +sawing +will +one +oflhe +Secretary +the +Antidotes +dence +a +advocate +Is +his +of +they +government +off +St, +ifa +the +sides +wore +see +St +feathers +for +a +hazards. +sneers, +all +defendant +if +railway: +Chciry. +pages +legislators +preferential +of +of +sanctioned +to +while +who +a +cell +luugmncxnt +in'the +double +oala; +offered +interest +health +Blair +pole, +choked +doubt¬ +In +run +it +can +the +the +so +cigarettes. +this +the +to +by +with +in +vention +not +certain +suitable +pages. +with +unfortunate +ceased. +bill +he +Metro|«jlltan +do +did +made +my +to +the +the +the +the +then +it +Btlrred +am +our +and +with +X +beeu +Two +up' +doalringb) +offer +The +that +by +will +has +Sousa +Swellings, +state- +State, +said +bo +grand +pawned +or +commander +in +with +four +onc +some +purposes +to +ment +thing: +' +performed +educational +will +as +of +| +degrees +wlth +and +roots +self. +Zimmerman, +for +shore +recognized +closed +In +a +so +cr +thence +others +of +annum +lH'.fj +were +Merchant, +the +quarter +dis­ +very +L +running +himself +are +point +not +in +tightly +Mr. +country. +ized +unable +an +Paget +bond, +little +whole +of +accordance +against +.tei", +hair- +numerous +iug +have +duck, +by +displaying +or +of +Warsaw. +ing +make +KthaiiModby +from +who +the +bis +small +There +project +tax, +morn +therefore, +the +institutions +Some- +an +Caldwell +but +said +be +considered +trifacial +State +warm +be +Mrs. +ln +with +able, +is +he +last +ihem +lumber +that +exhib¬ +7.15, +J. +than +can +sidered +redeem +saw +In +by +his +charges, +parade +where +much +destruction. +when, +rse\s. +under +further +which +cousin +coming +of +straightway +interested +being +Indian +tain. +11 +at +to +transform +less +The +to +Sue +Hewitt, +journey +of +moment. +wish, +The +in +took +l.uu' +outraged, +levied +Ts +finest +honse* +it +parture +not +not +Presi- +first +of +the +nature; +Aaron +choate +the +First +the +how +moro +yet +lung, +to +msistent +our +the +as +evei +using +sugar +new +for +and +lump +the +As +all, +and +had +Paul, +i +lic, +type +of +grocer +calves, +had +L +about +soft, +out +public +interest +teaches +to +a +ivoogni +Pennsylvania +a +comparatively +and +sweep +on +a +know +toward +which +cold +"tick" +five +well +po*t +out +rods +so +the +issue +counterfeiters!" +not +is +around +the +nearly +the +my +since +called +take +Steam* +ments +execution +departments +First.The +power +is +are +Frank +affected +suggestion +and +He +she +come +rather +of +Iwught +of +, +deliv- +Jake. +destroy +practical +a +making +sickly +the +of +you +his +wilh +record +Terms +be- +points +had +stemner. +troops +official +the +mln. +more +over +That, +his +diversions +modest +business +center +once. +State +the +del +was +by +write +ized +shore +the +when +tr.inon,l,iu»lv +against +without +this +covered +he +or +and +more +are +have +tempted +«:>l +all +as +obtain, +stars +penetrating +Dewey's +all +grave +very +thence +absent +during +pursuit +cldes) +moor, +and +since, +of +the +If +both +across +it +and +law, +by +Sundays, +locility. +of +the +will +eon +with +weak +in +of +politi« +this +McDonald +J. +that +beginning +thono +R. +rainfall. +other +to +bla +cut- +as +he +Therefore, +assisted +outot. +have +ha!—you +secretly +de- +ing. +era +be +recently +a +consist +trustees +until +the +all +startling +the +W +former +$7 +or +a +F.!»., +Trlekct +cannot +deep, +tachment +judgment +doctor. +erred; +the +2JA +do +they +stirring +from +eliminated +tlicabovcsymptoinsnttcudthcdisca.se, +that +w.ia +given +vote +noticed +act, +sorts +victory, +the +as +and +drink +or +or +recep­ +and +Tracy +lde +applied +there +trations +debility +to +a- +said +rather +girl +interests +sheets +The +Corporation +reach +ats +ol +out +the +htr +The +horse +bread, +to +particularly +full +no +well +Stop +near +caso +did +of +tlirt +cbat +trou- +appalled +Friedlander, +Father +grabbed +Quarantine +slipped +26 +District +to +of +to +astonishing +which +upper +but +only +on +or +lesß +privi­ +secured +The +the +the +Plant +Not +into +etween, +various +and +provisions, +redemption +Fair +owe +Scores +good +r +get¬ +for +necessaries +h +ness +cians +publio +were +banished +his +five +the +viUlth, +you +present +men, +Taylor +being +'death +the +Us +the +for +well +nephew +the +responded +there +happy +can +a +Streets, +of +enti +at +was +emu +his +States +metropolis. +deliver +me +introduced +a +feeders +have +sha"ll +from +community +I +marked +Tho +war +raisers +whirled +knew, +Iron +repeat +and +found +cures +Galante, +1 +every +the +along +pressing +alter +18- +to +made +to +Lord +builders +in +incorporation +D +Capitol-square, +a +the +degress +If +the +treated +long +on +years +—De- +the +the +federal +on +tigations +Emma +from +so +operation +tained +public +strike, +description.' +Germany +j +rather +nouncement., +to +rebels, +of +- +square +a +all +out +peace +opportunity +song +Ideas +by +time +husband +She +true +this +and +had +ottch, +iwlvaiiree +of +to +vate +the +that +the +that +news +which +of +evils +w +at +his +money, +had +aV +in +acquir- +justice +a +Stuart's +In +the +make +crown +superfine +Comanche. +R +proporly +to +if +sense +found +thence +society +corresponding +state's +means +and +who +revenue +depositor +schools +United +and +of +any +by +you +newly +that +us +develop +teacher +hlad +"to +clear +the +the +movement +that +liking +reached +B. +assured +home +condemned +a +1 +modes +all +appear- +in +never +Johnson, +justified +Fanny +over +done +fire +Mathelin +nie +years, +is +man, +question +her +where +side +same +could +time +va- +politicians, +pay, +reduction +fellow, +; +prescribed +His +Also +balance +be +and +Township +hole +which, +children +of +aay. +war +tho +fantastic +company +hav- +on +of +only +Duke +of +and +day +would +steamer +ti>'4e.; +differ +reason +their +sea- +by +one +Charier +the +gar-- +ciav +of +sented +his +fortunate +third +meaning +much +la +course +into +have +cil +Every +in +great +be +to +cir +feel +thence +man, +In +delivered +of +of +instincts +somebodv +King +nation. +win. +all +and +were +to +ninety +vegetable +Its +confidence +miserably +or +additional +own +out +in +Zurhersta +them. +strong +fact, +of +legisl +can- +you +the +to +he +Lacrouts +He +up +After +small +Conscious +or +But +gather +4rh +Of +that +and +to +way. +as +was +to +return +made +ments +the +he +his +6 +made +hung +year +iowsN. +Virginia +recreation +Gray. +resultant +the +expoits +sire +is +Hiys +Crawford, +. +suppose +the +Dad +Carlisle. +oranges +wet +skillful +required +the +real +were +a +almost +been +or +about +be +available +the +the +man. +thousands +was +sod +are +German's +and +in +may +Hartig, +funds +bushels, +ffense, +the +few +worth +subjected +wheat +blotting +have +pushing +- +the +the +" +fell +there +lastingly +friend, +out +Is +theatre +Harris. +extra +of +outcome +titer +given +tho +occasion +dyes +slighted. +and +Normal +of +made +said, +the +period +Barton +one +a +begins +pulled +iug +thc +beginning +visit +out +is +men +blood +or +making +W. +at +room +the +powder +long +de +in +way, +jail +the +from +with +up +this. +centre +friendly +rates +history +marine +Mrs. +that +from +lien +by +in +cities +suffered +An +di +ushering +him +over, +he +to +gang. +Phil +secession +for +covering +IV« +for +the +anti +tain +candi- +the +to +first +a +the +same +fixed +country +people +them, +space, +make +form +say +b^veral +tho +at +tions +toward +support +knows +help +2,000,0o0 +the +A +will +Siueo +With +person +and +large +day +eyes, +Farragut +gel +swept +a +Stools +the +they +navy, +the +to +It +his +precisely +wc +is +de0Bed. +be +K +up +a +the +ing +Rees +those +for +ouc +will +trading +page +m +so +full +throughout +interest, +contemptuous +second +is +arrival. +the +encompass +of +bo, +of +.Sixth +dents; +out +Dakota +that +his +so +scarcely +military +their +policy +-- +The +boy. +ne- +of +best +you +and +they +C +receive +Nineteen, +administrators, +slab +few +had +only +removed +once +. +activity +wounded +off +n.w.; +thrown +good +pleaded +issuing +and +after +that +Blerlots +and +village +not +won +close +tho +if +taken +tbe +was +the +lic +the +that +and +of +diseases +saved. +to +"doubting +youth +great +on +influential +office +county; +as +to +Judge +to +is +paid +work, +companion +this +Stone +cent +visited +re- +plain +habits +Poyver +provided; +contains +to +were +the +lining. +and +the +than +opinion, +of +at +the +he +It +in +like +tion +A +essary +the +It +edi¬ +I +grades +cupboard. +same +valuablo +made +ths +vantages +the +Dwver +resented +inMhe +course +to +yer +for +. +in +but +Francisco. +City +(loor +ready +driving +nor +desired +that +having +for +light +aent +paper, +porters +; +easily +has +presenting +unity,_ +given +line +of +payments +consequent +appoar +Kidney +. +A. +flies +Wc +tbo +will +facts +are +it +the +to +Beth +|M,000,000 +is +the +tiresome +the +undertook +all +tho +his +and +by +is +and +TERRITORIAL +call +henrt +with +very +once +company, +l-_ +ampl'lde +of +undertaken +fattened +the +na- +Mr. +to +by +her +8. +shall +fore­ +the +this +the +apaned +eouut +three +of +Light-weights. +would +child +best +whose +said +grentest +deplorable +a +broken. +few +the +is +and +fifty +indignation +ular +is +often +in +naval +night +boiled +made +to +persons +J. +should +instant +without +our +to +the +as +insurgent +Hatige +rye, +gold +rise +and +declared +a +salaries +about, +tongue +show +requires +Hus-ian +and +vinr» +ing +in +a +form +will +return +for +writes +over +this +to +properly +further +and +and +now +and +started, +nuling +M. +permission +that +standard +which +into +which +and +niost.amusing +insolvent, +of +over +ignored, +over +class +with +successor +dollars +to +who +and +preference +years +queer +: +Virginia +for +asked, +be. +when +Salem +Orlltiu. +iu +but +our +that +clinging +three, +County, +raising +more +Ibis +an +that +red +cases,- +G. +mand +of +lead +that +serious +thousand +gracefully. +a +town +M’Cormick +of +fled. +unexplained +and +who +manuring +Ward +to +business +a +Yater +responded +now +market, +taxation +trust +this +as +friends +that +at +Fredericksburg. +may +the +hese +important +and +a +To +years +him +Is +and +men +she +a +right +to +to +of +impreisious. +pages +in +to +by +we +the +must +was +followed +the +of +great +failures, +in +seeui +think +means +of +who +It +is.upIn* +as +irregularity +Onsum, +wo +and +put +considered +throughout +the +State +these +due. +and +corner +South +notice +heart +with +and +could +a +not +4th +who +tonic +the +their +the +the +aforesaid, +will +or +lady +tie +The +I.'ave +sentiment +recognition +breaklasted +of +law +raised, +102, +civilized +liarria +street +the +we +that +wherenpon +o +in +2418 +when +of +a +side +time, +J +pay +the +a +a +reason +surrender. +only +the +new +the +returned +was +every +seen +tify +to +of +eyes +clothes +But +of +why +there +stove +by +Paraguay, +mother's +News, +brick +allow +enjoying +impediment +continued +political +the +economical +most +Superior +pay +bif +hatter +dinner, +proof +government, +not +he +can +necks +quire +navigable +the +return, +iPore3"nt +on +post +as +Public +amount +to +his +No. +the +for +can +avenue +has +us +of +OF +150 +and +Black +war +the +olrcumstantlal +him +at +certain +St. +quickly. +time +Mitchell, +first +time +efficient +the +snd +for +have +It +friends +entry +of +portation +if +mat +continued +the +seized +staircase. +a +ia +sequent +tends +yet, +and +1910, +into +lay +in +on +in +Administration +of +subsequent +crow +born +hearing +of +(se'4) +described +breakers +region +of +rovm +all +is +apology +tho +thickness, +per +nor +tion +velopment +his +ence, +reasonable +Mr. +city; +ar +aamc; +thrmgelves +Pr>liibltl»a +S. +tax +ho- +some +ru.ul +or +go +a +goods +stand +5, +the +four +and +would +expected, +owners +and +in +lie +advanced +another +zinc, +the +has +would +Chicago +was +day +Mrs. +emphasized. +the +ache, +in +DumI +the +sub +firm +us +tignal +firing +reasonable +black +having +but +probably +hud +seals, +maintenance +it· +be +most +account +saw +we +such +bread, +and +the +. +at +cheapest +Davis,^ +continent +would +the +and +audibility +it. +offering +held +to +sense +this +anfl +how +art +$9 +in +investigation: +that +Dorthea +coal +that +agent. +a +per +will +his +I +ra +are +the +the +store +way +Itauk +the +determine +peraa. +ten +of +able +Sonora +Company, +Crabbs, +good +the +prices +dersigned +who +the +fingers +many +, +furniture, +so +fos +publication, +Singularly +from +ing +shares +- +Almon +same +much +of +girls, +:: +have +the +get +and +cure. +one +Meany +I +northerly +of +a +admitted +h +generally +them +the +estimate +pleasant +There +the +that +tho +the +still +by +gr +R +Indleo +saved +that +the +we +TEN +«I +wish +an +erty +over +any +tributary +had +at +South, +colisummung, +tlement +fringe. +If +baby, +gated +seasons +the +out +with +tarifwl +muchf +stocks +the +brought +have +shaken +Bates, +at +more +years +tiou +of +uses +owners +and +82 +which +cordon +what +and +come. +Stevens +the +unless +he +will +is +fitting +life +Book +system, +the +the +there. +cattle +remains +whistle +to +the +with +sail +the +after +Company +ar- +sult +It +shot. +each +Forks +among +associated +had +better +him +shall +a +of +may +period. +dollar.. +Utate.and +im +to +that +sentiment, +considered +things, +be +lay +annual +some +In +love +business +of +have +Dakota, +of +cetera, +certain +lo +problems +City +boiling +Jamestown, +knots +Austria, +to +Journal +11 +full +end +first +gregation, +ike +distance +Coburn +$100, +base +or +bo +of +say +Hague +of +in +through +the +covered +aeries, +duties +and +ed +all +defrosters +as +stock +as +for +his +over +hold +the +res +conse- +should +to +bene- +equal +in +boarding-house,(for +centre +remarked +ing +sentiment +Would +as +It +a +any +ho +urging +Six +other +step +of +ministrators, +waiting +join +cash +of +in +British +mill +tho +three +Republican +Haugh, +of +day +fatally +hold +to +The +urers +the +held +60; +president +very +young +of +of +unchanged; +Movements +reward +for- +of +litigation. +is +rarietions +leadership +and +old +bear +roped, +advised +the +and +they +each +front +should +Mississippi +to +and +Carlisle +point +cases +the +duty. +tli** +she +all +and +which +your +Since +,000 +able +Smith +of +iu +at +bo +the +of +to +have +S?" +wilfully +long, +ly +the +dashed +titude. +forts +to +country,mustnecessarily +number +this +East +the +as +of +profits +until +our +with +ac- +record, +of +other +in +away +protect +other, +counties +coke +bis +willing +high +die +but +to.wit: +telegraph +B-T8T +of +thing, +of +will +large +heard +P. +go +much +side +demanded +sion +rts +of +registrant +of +questions +last, +accomplished +a. +extended +oriHiitutioii, +able +on +th +eliminate- +knew +of +on +night +settle +They +the +put +potato +slough +course +shall +Janney, +that +drawn +thereof, +alike +result +the +the +to +of +into +the +competitors +United +his +at +pointed +Eubanks, +Germany +single-handed, +III. +at +Iron +wrecked, +take +except +be +ruling +points +grandchildren +for +which +to +descended +bid +the +ness +centum +the +tar, +re- +nose, +mind +6 +dharacter +band +her +applied +william +writing +Education +to +Brooks +are +derattate +:n +shall +Flat +at +pleasing, +for +cold +the +Irish- +a +Sunday +here. +voting +cents; +upon +. +of +and +upon +be +street; +Sheriff +it +Mis- +iu +welfare +these +bv +against +foresaw +to +ceji'aa't +throwing +extent +condemnation +. +bulletin +after +the +people +These +bonfires +services +to +was +Thomas +not +to +along +motion +formation +Grover +days. +and +fine +face +that +modern +establishes +the +i +we +time. +wrinkles +is +Venus, +faculty +also +dying +killed, +had, +sum- +on +premises, +equity +well +to +to +is +direction +borne +certain +one +second +over +had +it +or +The +Hall, +tribute +had +The +on +to +all +petition +correspondent +now, +conditions, +to +our +candidate +data +forthcoming. +to +Fifine's +she +deacon. +order +tained +some +presence +would +University +Aleck +and +at +cab +other +See. +guidance +of +medicated +Assem¬ +if +This +candidacy +J. +had +defi- +forth +torney +should +consolation +culling +the +was +jflus* +suit +township +independence +gusto, +than +their +in +juatitira +pursuits +exceed- +Iklrd +Letters +hand +West +plucky +appeared +wintiw. +was +acute +Saturday +beam. +they +was +on +000 +to +of +like +In +rowed +to +faculty +On +owing +transferred +tbe +that +th< +fact. +posure +in +lost +incursion +?or +be +back +of +bouse +if +condition +It +Belmont's +of +evil +how +what +my +of +ing +D +were +waited +[Col. +virtue +said +it +tion +for +Ezra +loan, +such +military, +for +ner. +Populist +hungry +a +per +living +to +arid +is +to +¬ +spats +in +by +contract, +principles +in +been +if +oil +; +the +or +of +warships +pounds +has +little +the +but +getting +A.so +business +by +reason +murder. +liable +New +to +Government, +consideration +remarks +alteration. +the +to +and +k +will +figures +the +interests +is +Mr. +him +yet, +This +Korean +each +Strider, +Munn +of +Equity +Blythe‘a +Bell, +officer— +physicians +years +light +most, +spat +should +he +and +cultured +viands +every +was +highest +death +atreak +from +presentt +day +Mr. +present +practice +dated +done +payment +drain- +a +eat. +the +firm +Mr. +States +being +apo- +be- +Harbor +will +onions, +a +nice +evi¬ +fourths +this +by +of +artillery, +Everett, +have +unto +of +meauor. +Misses +but +and +Theije +owned +limited +life +she +truly +amination +to +therefrom +possibility +service +unfurling +exceptions +I +her +ahy +relief, +Julius +Hall; +scouring +senses +the +known. +ple. +only +partic-n +At +ary +the +tho +third +mar +The +was +greatest +United +play +peace +in +n +Territory +; +Mrs. +hundred +becomes +iwhiioh +of +southeast +men +made. +is +and +the +Duffey, +experience +the +St. +Ibal +objected +Monroe +that +to +on +tree +that +wiggletail +and +demonstrated +a +that +games +go +do +Edna +more +charged +train +because +he +after +claim +made +in +such +The +48 +the +succeeded +the +for +directors +years +increasing +shouting, +a +best +could +Plillippian +practical +were +exercise +Leader: +ble +her +a +table +him +that +public +national +yards. +Thou +pur- +Piper +have +women, +young +were +ination, +and +o£ +13th +no +in +seaboard +the +as +Hiram +flay. +of +pedo +of +enciroled +i +tti +1 +this +expressed +slave, +names +out +ever +expected +any +ever +In +into +guards +one +in +this +It +days +by +Bp +and +also +liwtie +a +Ewart +The +c +mained +Thursday +Pine +Governors +the +in +with +in. +rock, +that +with +nothing +ately +to +to +adopt +of +surdity +and +meet +to +Mahone +the +been +for +into +his +uso +and +in +auch +last +his +thought +everything +and +which +without +ordinance +the +as +peace.) +heard +them +only +man +taking +in +exports +hours +the +in +people +clean +time +lators. +the +amount +Xo. +man +from +suvouiy +in +by +maximum +of +or +suddenly +mere +discussion +Lucy +pricked +counsel +generously +ineir +to +took +Brooklyn +article +ha +per, +though +cade +such +and +but +cice +th' +Vermont +Perhaps +by +Prof. +Y., +good +end +lias +for +in +as +stood +in +license +apparatus +at +the +mistake +tho +and +mort- +is +its +not +Cook +the +gambler +in +hand +the +second +will +Flower, +acquaintance +M. +gif +3<*,000 +"I +laws +is +of +In +circumstances +with +23, +and +and +; +our +of +ter +shall +of +through +Catherine +its. +training +the +be +Alton +to +in +The +and +benefits +White +turn +Kekauolit +street +had +publicans, +Sho +daily +added +is +of +THE +his +puting +Christian +of +at +nations +the +the +Lyle +position +W’alertord, +stated +ior +of +and +turies +re¬ +was +the +one +Goodlne, +seated, +the +to +are +tho +ev- +midnight +of +with +capable +guilt. +shareholders +ground +Friday, +Brooke, +been +it +yiftithful +Democracy +chains +weighed +Referendum, +made +will +with +to +life +is +possible, +as- +Washington, +of +tween +that +interest +such +the +tion. +made +a +in +and +the +is +but +deprives +of +union +h* +ing. +when, +business, +of +Nor¬ +to +friction +they +the +to +her +Then +Jut +adChinese +the +oot +1 +Miss +and +cut +Mowday +all +home, +He +be +And +by +way +I +engaged +came +United +was +a +ourselves; +conversation +care. +wood +Vira +was +the +rigation +on +established +all +the +rebellion +in +King +right +they +Mr. +praised +as +result +publican +Moffett. +fair +tional +the +deal +one +citement +sell +is +per +one +what +Europe +grant +home +In +retired +only +tion +ly +at +«Ictlinlo +at +air, +the +barbarous +tomorrow +us, +1 +so +Wellington +favorite, +try +Canada +a +in +purchased +wi +rifles +and +El +coast +Kentucky, +01 +Society +sort +the +took +inasmuch +the +ciety. +aasent +prevailing +paper +his +house, +want +show +conform +porate +Now, +de +and +unselfishly +they +OTHER +ready +The +wealth +reservation +altar +An +which +and +itk +ho +names: +re +BUM +cemeteries, +number +efficacy +of +and +rejected +uud +I +did +light +out +wished +the +out +the +girl. +lull +took +earth".greater +the +protested +greater +of +Sumter +pnforce +and +Ohio +size, +against +turned +apartments, +princess +of +country. +gather +moment +navy, +not +intended +from +the +have +thawed +vance +ture +indicate +tell +infected +the +Block +but +poles +mencement. +me +hini +ago, +a +Kidueyi +tutes +or +his +as +that +in +how +bad, +community. +man +went +half +office +the +“My +Court, +of +caused +commiseration +had +that +$60.«)00 +he +an +wanted +the +steamboat +be +of +a +of +to +at +is +university +of +Itlchard +ion +vnluable +should +nature +of +to +sentatives +m| +men. +one +Mormon +ropos +error +excited. +rules +tho +a +a +I +emigration. +wall, +annex.) +Airhole +is +Wm. +the +ever +uni- +bore +Princeton, +of +mty. +the +rails, +see, +ot +claim, +do +and +a +7 +exports +in +was +condi- +grateful +dur.agthe +in +issued +near. +companies. +or +heart +my +point +from +Hood, +account +ecute +appointed +pro- +that +Precocious +Laboring +is +received +Also +He +be +government +annum +game +, +expenses +relief. +and +expense, +is +per- +concerned +calling +to +that +out +spite +were +banker; +reporter +strength +the +habitant +occupying +to +; +warlike +of +is +is +September +tiller +certain +it +their +passes, +Dutch +why +and +time! +10 +noches." +the +and +the +we +of +is +we +loyglty +been +The +almost +a +been +rewards +tlie +provic +Menoken +made +the +believed +E +the +over +felooihcntOT +never +maligning +but +upon +said +The +futile +grees, +which +shall +p +have +it +Mr. +when +state +Jarvls +reach- +the +opportunity. +train +fath- +on +mark—l +article, +tbat +< +surprise +That +ditures. +Both +the +which +its +which +claim +Conservative +age. +The +terrible +mouths +be +a. +to +of +to +a +in +Saturday +BrOad +escape. +Mr +other +described +terday +lauds +tho +Dis- +to +The +of +great +any +shame +mother +are +CATHCART'S +conduct« +and +a +six +the +illness +field +No +a +of +a +with +has +It +to +were, +away +getting +W +Tribune. +T +out +lot +the +charge +with +Adams +pain +will +bits +the +plaintiff +been +primary +home. +us. +Stellwagen +from +ten +Tom +and +in +sooth- +limited +the +said, +to +water +postponed +ment +It +Lovette. +and +none +re- +Paul, +Book +same, +had +be +army +brothaw—brothaw—well, +manner +or +seas, +the +not +this +ded, +ney +States +him +delay +were +gener- +asurethingformeall +him +she +are +copy +poor +fani +the +hogs +suggested +tee +Fresno; +title +white +is +interstate +was +by +the +summed +beautiful, +of +of +duties +stands, +$5; +to +one +cutting +width +continue +to +County +he +interest«. +contrast, +t>ut +civilization +[e +of +same +her +lioav.\ +on +his +which +ends +me +here +Congress +The +was +sued +home +advantage +gress +to +he +on +75al +several +recognizance +of +chained +and +foreign +in +tricated +speak +soldiers +is +Though +con­ +the +had +chord +the +was +The +angry +the +vides +a +w +at +of +the +be +been +with +William +base +of +BOAI) +Father +of +past-fixed +showing +did +rights. +to +the +offensive +I +of +that +just +the +of +brilliant +to +tiful +mostly +Ita +to +witneaaed. +part +until +to +file +have +vessel +and +red +pounds +above +(16) +of +of +national- +and +beavenl +what +up +of +officers, +your +handwriting; +rate +Roosevelt +there +life +when +the +the +resulted +calls +ing +the +her +done +two +the +the +work. +with +per +watehe« +H +had +was +a +at +he +nine +annals +sailor. +on +and +there +ed +her +reoover +In +he +Jokes +926,797 +boof +such +sorry +current +invited +districts +assistant. +his +believe +Saturday +too. +men +we +try, +a +as +and +mental +deluded +governing +districts +Mrs. +there +booby. +app +The +to +that +good +vote +or +should +a +and +and +the +kicked +at +oppoting +These +such +Tired +head +men +A. +with +Should +of +j +page +upon +aperient +it +and +and +and +plungM +Anson, +repeated +by +three-story +Militia +(Ills +Is +with +No. +make +country, +we +all +less +chill +wheel. +Cloud +appeared +ing +do +as +will +the +to +railways +placing +the +To +until +flavor +A +classic +instruments +liear +about +such +soeUis +capacity +the +natural +bnl +shiftessness. +good +lie +large +the +when +around +chopped +wont +portion +tar. +air, +upon +7u0 +Circumstances +Esek +us +he +a +learned +on +Angeles +of +tho +three +that +air +Ins +two +Difference +out +a +and +to +Clock +expectation +In +against +on +a, +child, +eat +taxes +breath +o'clock +my +indulge, +tit +I +with +upon +more +Re- +and +selves +to +to +University +treasonable +mob +political +Second +Should +wa« +joining +lump +ti +of +of +will +tenement, +said +that +into +Mrs. +are +as +dldn't +the +too, +The +and +found +Asnieres, +I +community. +of +holdiv +with +Bullish +a +baek +the +ing +the +shown +the +Mr. +or +I4 +amounts +statement +the +perceive +shall +given +But +no +his +Oldfather. +Can- +j»ort +the +members +lots, +was +inadequate +they +the +speaking +reached, +in +r +our +degrees +pol- +began +funding +fullness +money +a +going +and +of +would +recognition +h« +tory +es +lands +impulses +overhauled +separated +week +the +I +burlesque +acter +country, +from +I +the +lands +contributors, +those +to +has +were +timber +as +the +The +some +that +be +not +hi* +confusion +either +tern +club +driven +had +navy +and +Leave +the +make +lis)ibs. +the +ing +7.5 +ty +parts +lnchfH. +that +ty) +fully +ation +first +and +bonds +serious- +is +majority +yet +anything +the +attitude +the +to +whicli +tie +most +canal +? +she +copy.) +to +propoaed +dellmjnency +singular +formed +which +to +dol- +of +that +residence! +A +hills +vice +M. +to +Columbia, +from +as +thev +day +state +the +denounce +guys +Ifatta- +health, +enormously +that +stratification, +ad +ield +menu, +the +the +ion +E +Now +view +idea +ground, +J. +share +run +any +are +shall +Forks, +field +reduced +designing +to +tho +the +"Thou +25 +uncompromising +while +representation +of +great +sow +tor +suggested +Dole. +Thursday, +horrihlt +greatost +all +joke +prayer +Plainfield, +therofticer, +Lubv +min¬ +An'mas +upper +tfcesaid +76- +Legislature +left +.flfflrtflBBfll +frequent +in +weekly +ino +systems, +to +this +2, +put +of +C. +ermitted +State +may +No. +a +laborious +that +to +in +I +in +barge +these +looked +a +m +ability +rights. +any +of +won +our +to +not +quiet +er +left +her. +he +whilo +trophy +Miouhlbu +bad +sum +discrimina- +far +dogs +have +seller +Country +be +a +of +claims +or +The +arfnnt +sumption +ae +Ogporgia +preached +of +the +ana +or +that +intense +different. +dam +was +that +a +within +The +after +promi- +manorl +oer +1,100 +The +in +culled +thought +rash +in +is +that +m..rr +neighbors +inhabited +uotice +of +tearing +free +nearly +or +the +March, +a +their +Iho +and +daughters +w +unknown +out +and +in +court +to +Marvick +thei +States +N, +but +a::i +have +Itctwecn +stood. +latest +and +we +I +expenses; +that +.">000 +years. +in +same +dtber +would +serious +farm. +A +2 +door. +or +crued +to +jammed +movement +interna­ +10 +public, +and +dav +out +he +the +to-day +iw>|u*at +Kansas +soul. +the +forward, +gale +clams +Liverpool. +The +from +the +wait­ +to +Island +keep +the +ordinary +end +op¬ +been +Delegates +IUM1 +called +opiiosed +was +from +from +human +of +moods, +very +manure +lliarly +;oar +careful +now +$12,200 +morning +"Science +west +battle +spirit, +in +curing, +capt +do +is +dog +as +execution +soliciting +of +know- +accepted. +the +country, +mother. +struggle +to +say +every +a +superintendent +one +Count +admin- +way +soft +lode, +experiences +of +April +any +Set +no +land +now +It +be +early +of +freight, +offlolal +fifty +th« +stand' +engineering +of +itemized +the +shapen +were +to +have +having +addition +to +such +mud. +April, +will +wer +They +working +it +clearing +Bros +specialist, +be +one +are +a +parts +the +That +some +e +Mr. +strokes +» +again +be +a +parent +to +deceased. +MlMtr +have +the +ith +in +decided +tempt +(28) +of +the +Miss +giant +defendant +was +breakfast, +been +May, +land. +Mo, +however, +State +delegates +of +the +ing +selling +It +time +the +and, +been +negro +used +IlKt't +but +haystack +Blanks; +with +held +odor. +ing +ernment +Soap +to +It +box; +as +them +prizes +on +secure +and +of +and +also +are +But +a +as +probe +asso +obliged +Pox +Unionists +the +that +ut +on +will +of +village, +tstlll +fledgllkgs +bo +and +city +impossible +its +"store +feot: +is +side. +and +induce +other +whole +painfully +C +neces- +.gentleman +of +by +the +from +clntive +department +friend, +the +counting +some +Local +ing +Boston +plate, +lamp, +at +in +still +on- +Manning +value +annuities. +was +doctors +over +for +Rainwater +elevated +big +by +than +I +listened +the +bullet +you +a +Mr. +its +when +of +Badlv +owners +Montgomery, +or +M. +Fraternal +plow, +and +signal +the +J +Idaho, +Peace, +portions +it +securing +the +trees; +$31.25; +James +releasing +nrder +aeries +rioted +feel +the +in- +over, +servant +glass. +is +candidate +and +gainst +tbat +never +ami +the +he +diacuaaion +p.-»".pono +is +Trlnee +to +of +direct +the +said +do.; +and +etc., +assumed +company +to +Jersey, +20 +tilated. +a +more +3d +York +of +really +Mrs +The +he +bv +parties, +him, +having +are +year. +Wednesday +t,wo +the +and +After +by +burned. +love +for +a +gan +the +a +seeming +it +owing +speak +under +have +country +pulse. +to +and +machine, +ing +to +aid +obliged +waa +square +the +oms. +very +Brooklyn +spirit +be +he +to +rietiun +necessary +whatever +in +Jewish +four +with +his +bonds +may +lact. +date.until +mine, +of +fellow +Lake +several +lady +uiglit +beneficiary +State +thst +«admit +800 +through +navy +being, +south +cabinet +fact +London, +Tea +" +much +or +just +In +to-wlt: +ness +. +going +her, +I +very +Couglta, +he +the +First +Paul +weather, +which +an +there’s +mand +metal +a +opinion +three +enlisted +Con- +under +*48 +and +the +difficult +an +it. +the +a +important +more +THE +portrait +Russell, +be +what +to +oftlco +distance +Harvard +that +house +being +neat +like +more +be­ +nature +and +It +pro- +high +1*- +where +which +under +the +Hepabiiean* +not +gas +they +suffrage +tho +o +were +of +of +o,i|>osifi)>u +autobiography. +profits +a +something +of +cost, +ndvice, +Mteeloslnf +monopo- +Charcoal +is +seaor +most +buried +number +come +All +living +and +felt +ignoring, +ness, +sixty +every +careless, +him, +goods +he +the +wolves +town +to +including +romping +the +stnndingpre-eminmt +powder +the +the +itnesses, +that +the +plague, +and +voted +rights* +large +we +which +range +all +a +at +lower +considerably +to +it +just +Nathan +. +there +; +eaia +citv +brought +CIO +planted +and +aATUR- +threatened +that +Channel: +will +pattern. +the +welcomed +brongfat +said +havo +so +contested. +under +to +almost +embankment +Ross. +and +the +year. +on +he +before +defense +spherical +prey +stores. +authoritative +These +Sundy +Easterly +whole, +has +by +patriotic +to +37 +him- +elt +to +conspicdously +eilubi'i» +the +of +the +the +there +numerous +next +tors +brewing +The +two +only +cents +Davis, +Me. +ag.tation. +to +lower +where +urtnr +shall +senate +the +of +which +red +bestowed +long +aa +altar, +and +the +the +or +tentional +ho +close-range,, +that +In +brooding +Inspectors, +in +liday, +on +official +answer +not +affair. +land +toes, +remedy +for +his +Sampson's +in +looking +was +Sacramento +wool +against +bond, +began +to +member +the +preat +by +the +the +building +the +one +jects +Gnvners. +took +man, +of +prices +work +lime +but +east +to +person +bill +hereinafter +and +tice +have +Among +4 +the +have +sible, +Joseph +are +character +ago +of +were +cross, +and +number +more +allow +period +nlteratiou +will +lo +respected +rifle, +fusion +Now +net +minister, +to +on +storm +M +Wi +anatomy +As +the +with +bar, +and +Isaiah +. +later, +arrange +so. +stairs +I +20 +the +up +in +of +bridesmaids +may +is +If +Kersess. +mortgage +wagons, +Scotland; +breeding +poor +is +It. +in +in +Aaaeaaor +and +28th +thenco +ly +which +the +the +ton +which +2. +to +sale, +small +the +package +had +letters, +fit +the +moment +Discovery +into +dip +years, +saying +steamer, +place +to +license +there +replenish +Mr. +been +consume +that +obtained +have +follow +that +years +Buyers +and +connection +at +a +and +on +met +Hut +Tbe +servlcei +there +nation +in +tion +"There +some +of +court +between +and +I +saults +scars +inches +right +of +board +reach +pairing +licet +platform +blouse +are +8, +who +State +could +vated, +bough +sued +Last +.they +ot- +reg- +that +culture +was +reasonableness +casual +not +next +see +. +demanded +some +the +the +need +the +love, +the +a +surrender +reiterated +36 +power. +And +decimated, +that +he +the +demned +P +in +sooner +A +if +map +music +and +Bancroft +doing +United +changes +H +suggestive +5,037 +I +on +the +trench, +ni +mant +and +"mad" +Dr. +at +vo +the +publi5; +financing:. +soap +son, +from +ocratic +understood +Mes«rs. +he +its +candidate +The +ter, +and +indeed, +feeling +the +ihe +raited +proud +the +to +parlor." +iniformsof +gentlemen +William +I +men +change +a +enlistment +the +mer +hair. +with +nnd +week. +charge +Pills +rising +ions +on +place +and +one +sharp +portion, +exercises +and +it +Then +found +we-t +agents, +measuring +bWls- +powerful +be +was +which +filed +heirs +many +10, +A. +as +It +varieties, +east +a +contract +own +nil +and +possible, +40-100 +give +rience +F. +berg +not +hundreds +be +$1 +go +Orient +weathor +perverted +of +or +will +nr.y +which +regiment, +something +the +the +with +from +partner. +that +oar +cupltal +that +cow +bbl;, +asked +your +the +we +henceforth +doctor, +his +Hershey, +but, +the +from +imnort +Blooming +ticket +bars +8 +aia +such +think, +by +the +than +received +impression +gently +tho +foot +door +and +all +ch« +not. +with +ia +his +by +Department +stopped +into +not +fresh +To +had +has +mai +it +und +along +not +.202 +the +committee, +charge +l>Hng +that +utmost. +water +call +empted +even +stocks +made +ground +markJd +promptly +in +settle +his +1870 +and +the +that +of +48 +said +the +dreaded +th +tho +street +Stamboul. +boon +effective +table, +prominent, +the +mugwumps +puldicans +owners +box. +cola's +at +liver +sought +ihe +The +existence. +"But, +of +fellow +often +money +N. +him +of +their +wjuI +year +forbids +for +per, +In +Paul, +have +in +the +tp +(Jcean +*as +night +"Just +of­ +width +more' +within +longs +no +cars +the +may +the +and +be +jury +the +picking +or +by +months +front, +703 +and +with +own +and +capital +is +is. +aunging +operations +and +, +thongs. +tTatwuods +He +the +with +it +same, +offers +tlo +Sun +before +Mrs. +S +partially +made +other +difficulties +SO.feel +the +where +of +of +lives +it +SW%), +square +recollec- +Currency +the +of +Mr. +a +ered +conditions +preserve +girl. +to +of +a +a +Chicago, +without +gives +Carne +drynoss, +the +And +Cubans +thirty-three +you +of +said +Presidency +ment +good +drunkenness +mud +wise +evidently +in +the +landlord. +to +demands +ing +the +turns +plete +con¬ +the +Fell, +Contributions +the +But +chief +complained +have +the +fingers’ +for +Ifuse +to +and +bis +of +owns +conveyed +say +exchanges +Kil¬ +said +the +Society +it +Kansas +She +high +'of +no +every +articles. +the +position +be +public +of +36a38e; +floor +at +bounded +1,- +signal +ago +tooth +a +Their +break +from +not +L. +the +Wash- +the +community, +Arrowhead +o'clock +may +slonnry +Thompson; +'.Urs +bused +the +ceived, +liest +Debility, +the +with +every +scant +we +Mississippi +are +to +; +Hall +of +bo>*9, +disc +o'clock +Pershing +under +than +huying +favor +portionately +In +nests +me +This +may +1 +ever +indulges +of +whose +on +before +said +to +the +history +be +marked +of +tatoes +set +terrible +0(1' +that +policy, +deep +of +against +platform +general +borrowing +thousand +U's. +to +by +themselves +Koanoke, +by +the +filled +to +of +it +port +would +a +revolutions +this +pardon +and +by +whatever +all +then +my +to +is +Block +Harold +a +to +with +the +two +of +That +of +that +were +strength +value +claim +other. +not +sisters +to +republican +banks +prlvi +roots +in +varsity +Harlem +order +of +half +an +her +The +reaching +in +the +woman +Chief's +street +Mr. +in +which +now +took +the +lar +wounds +the +or +and +gathered +it’s +suffocated +and +property +had +was +a' +on +which +the +system; +Jackson +burning +on +on +Af +me +reach +into +durinng +nana, +ovhobo +members +talking +may +plush +put +tried +trees +given +legacy +at +strenuous +ing +seat +Laredo +The +ism? +never +Sunday, +cabinet +Com- +them +Gower +butthetltlo +larger +for +im- +twen- +September, +d +decrease +tunctiuuaria* +ruin. +against +a +were +No. +not +his +of +force. +scientifically +the +great +In +amount +constitution, +old +making +you +son. +family +Pass +dniuties +there +Lapitahst. +by +sheriff. +must +people +motion. +; +water, +to +c..inidaflit; +Materially +to +Scrantou. +ntnts.etc.and +with +tatUEed +way +in- +because +induced +ices +there +situation +tobacco +It +with +in +working +destroyed +upon +of +Cattle +July +her' +llm +no +entangled +lage +year +nothing +and +Carty, +and +is +overtures +Such +Cook, +head +and +antiseptic +tle +meet +wires +this +and +have +interference +only +working +farmer +recess +He +had +branches +fellow +his +of +prior +ilarly +at +Rivers +out. +Spanish +number +now, +ball +the +lit +tle +once +in +Com­ +between +was +representatives. +located +measure* +second +When +the +and +of +just +ten +Conscience +iliem +and +the +possession, +devised +moderately +3rd +probate, +whole +dangerous +had +would +the +in +time +their +to +idea +right +evidently +around +proposals +it +f-'tato +having +the +and +right +going +freight +the +Disease* +ment +the +of +than +the +our +found +not +discussion. +about +spot +the +were +every +county +th* +and +illness, +locality +do +to +in +deliberated +with +day. +is +of +here +as +very +George +It +ahow. +with +Brick +at +Patrick +weathei +these +treatment +civil +al- +WEDNESDAY +the +part +Scott, +wife +Nov. +I +appearance +that +at +other +on +front," +east +peaasd +in +as +W +own +gaveeiiuuof +realized +manner +ered +inches +belong +President +with +criticism +those +pistols +vlneubout +dis +little +C; +on +to +sex +of> +Intended +Sen. +winter. +be, +quality +and +February +heard +with +sale +ly +he +50 +painting +when +before +lhame +of +crltlcl +is +the +train +have +those +down +the +a +No +lick +tho +the +has +to +nine +the +for +sections +expe¬ +this +I +at +the +summer, +be +.'s +G +stored, +and +Its +achievement +our +him +gave +seried +to +man, +close +hundred +shows +of +ment +the +Fluid +known +fought +and +and +explosion +accordingly +be, +men +ramp +pass +6,000 +upon +when +Saturday +bo +the +and +ing +Present +further +the +March, +high +benefit +otter +the +each +of +nia +of +industrial +to +of +Shanghai +50 +and +fmm +Overrun- +M +trained +As +statement +were +To +promptly +to +the +any +reason +olalmod +April, +the +Aveek +alliance. +Miss +negotiate +negro +coming +waist +revenues +also +of +or +trouble. +and +to +said +paramount +cures +false +of +ex- +But +Leghorn +proposed. +barriers +made +of +dispatch +but +or +out +r>r«uraatances,and +business, +and +anything +Plainfield +the +drawn +when +shoes +wages +About +hills, +ch +Higdon, +would +to +sorrow +and +their +as +in +the +their +bas +nor +trip, +rfiome +no +of +yesterday +Ibiosaid, +tif +four +b. +re¬ +Total, +4 +thrown +thin +own +acc. +self +union +scene, +improbability +his +they +time +ment, +trail +colored +cent +Long +part +amount +shall +made +inherent +farmer. +Gowan. +bad +beauty, +evident +this, +through +war +to +ing, +sighted, +against +Vesar, +a +Station. +overboard. +Village +that +to +modified +winch +all +unio +"Over +I +had +Thomas +aad +of +the +those +unnecessarily +spotter's +the +Sunday +on +of +system +W. +writers +of +yonr +cowards, +rural +calms +or +of +Because +the +well +and +fur +caims +an +in +placed +himself +There +ed +the +listened +troubles +use +raise +receptacle +to +connect­ +for +to +the +tale +being +pay +its +of +M. +lt +into +reversed +a +IDenmark. +has +long +continued +Constitution +lapturous +were +when +county +and +J. +in +tlie +and +"Merchants +32c, +P. +being +in +North +sent, +The +which +small +reached. +two +envelope, +I +chie +ralnt +furniture +(B). +By +willbe +weight, +It +bonds +or +frame; +Of +deep +of +as +th +le- +with +paid, +meet +once. +flsn- +he +next +to +said +is +fish +is +uk +and +get; +15 +publican +try, +than +Florida +J +the +course, +In +is +Katherine +of +d +to +evade +the +splendid +redemption +known. +most +by, +should +claims +span +to +him +apologize +has +or +our +course +is +atmosphere. +amended +would +charge +I +be +discussion +Wil- +necessities +dition +him +. +He +Loom +in +head, +order +next +perform +Cor- +followers. +overdressed +Each +before +will +nominally +heel +most +have +hl-hlv +legs. +the +cost +followed +clover +also +President +full +escaped +to +becamie +personal +horses +often +December +ideal. +J. +without +damages +required, +put +on +in +the +sets +and +in +are +a +the +one +to +Tight +and +question +two +those +the +treat +ence +one +not +early +is +liberty +panied +classes. +with +laugq. +the +had +hours, +000 +and +in +he +feature +satisfy +win­ +time +the +tems—study +early +summits, +desires +one +case +and +both +with +the +o: +a +result +of +pleased +ical +make +innumerable +the +communed +several +two +concur +happenings +his +people +IKucof +we +for +muscles, +tho +From +or +at +and +$200 +mterèutlng +in +dens +of +the +exact­ +cat. +o'clock +50 +12, +Sunday +shown +monthand +boen +based +up, +It +out +time +be +costly +tho +rate +to +to +not +is +ias +Corinthian, +and +th +ler +to +struck +there +the +transporta­ +possessors +Mr.Dowie. +ugly +and +Bridge¬ +an'tl +as +bosom +not +check, +universal +almost +and +ed. +the +out +adoption +the +virtue +a +tlie +men, +other +tance +nuntv +hnflaalai,coolalalnirTIi +rolls, +above +other +has +that +for +his +buildiugand +waited +him +by +races, +enough, +couies +season. +from +phone +E, +eye; +mobil­ +being +but +so +and +cogently +in +compan +n +Montana +by +removing +be +at +ill +motionless +or +being +sixteen +north +cilatation +of +wardly. +ol. +day +81, +to +an +did +think +appear- +a +the +is +has +around +Thomas +, +society +deliver +endure +time +approximately +his +the +of +public +day +cents +neither +room +that +these +had +and +indicted +l. +what +lietween +et +to +translation +would +J. +make +as +fixture*, +and +one +president +that +being +of +thrown +time +however, +coming +out" +that +and +soothing +inability +for +tain +deed +their +of +pair +a +I +the +into +say +portations +chat +placed, +was +*">,(** +Oil +five +3 +that +is +the +Jenny +inquiring +raising +mounting +47tn. +Rev. +Hill +encounter +for +California +duty. +the +h +mean +was +flammatory +feet; +with +Claude +premises +of +between. +sulky +told +land +money +where +over +until +that +the +Kessler +reported +way, +relief +adjournment +has +take +in +dollars, +recognlzea +at +tutional +the +crossing. +quarter +schoolgirl" +degrees +the +Sand +comotion. +979; +the +breeds +the +iate +should +and +left +relics +Harris; +examined +and +ticket +with +on +children +' +audience +having +shall +by +catching +borhoods. +to +purt +KEN! +years +my +Indi- +on +to +them, +know +and +Cali¬ +thro- +ever +Aisne +At +thor +tte +and +and- +ourselves +viewed +of +the +liad +the +could +up +have +abor +He +property, +shock +accommodated. +had +rubber +said +general +He +be +of +comer +| +KiWcer; +good +to +such +icgrcely +could +spiritual +sole +previous +would +therefore, +a +overtakes +J +sible +the +$76,000,000 +to +have +winter +ly, +estste, +110 +on +or +but +that +be +boy +a +for +attachment +inter- +at +membered +is +was +more +the +a +And, +matter. +see +and +make +wide +of +serve +As +and +for +plant, +over, +ments +No. +broadeast +the +that +authority +and +trip +Saratoga +From +with +her +and +hoot +with +winter's +burden +acid. +Frank +tho +heira, +that +fed +Bx +piece +windows +13 +Mrs. +wiil +all +on +form. +William +eolee. +not +farm +stockholders +result +of +crime +74.2ft +prove +made +ravine +of +ble +vim +bave +3.60; +required +In +day +recognizing +Oats—re +to +of +should +market +pound +stocks +in +bass +"But +and +bles +All +exoouted +other +la.« +save +that +the +«na +any +he +upon. +into +in +very +in +would +\u25a0hall +at +forth +to +and +front +tinued +Streets +one +an +the +and +stand- +alter +be +ther +ards. +around +act +could +pay +the +cast +tain +socks +wny, +impression +pros¬ +motion +submitted +Jam- +of +tenaciously, +Finance +children. +suireuder +National +Mallison +posting +of +found +it +that +will +liberal +In +days +an +and +spent +mis +was +the +for +night +and +rate +all +so +if +the +Since +with +that +sure, +to +to +ably +an +as +cor- +of +lating +tile +from +and +high, +rides, +feet +bands +proposes +half +And +being +us +we +May +to +aaine +thing +cause +The +west +shall +the +his +every +as +mouth; +confident +a +to +he +than +remain +accordingly +many +of +two +right +of +things +Davis' +catarrh +thrown +cor- +arrival +is +Coleman +will +lamp +arcatlly, +imaginable +on +after +"After +ex +of +carburettor +hazardous. +ing +chine +can +invited +two +expectations +sees +is +next +used +noblerthan-thou +ha* +on +door" +head +at +bonorable +which +Number +was +a +Heavcn +and +her +time +James, +twiog +no +eat +and +on +years +To +tbe +order +and +the +be +twenty +eyes, +quiet; +from +finish +ry +"for +several +In +entirely +pure +to +all +G. +of +es +effect; +replevin +that +died +not +und +of +April +brutlshly, +specially +10 +new +there +in­ +of +1 +naval +1735. +was +under +circum- +it +feeding +the +readers +The +should +he +be +along +the +cisco +child, +not +explorations +Reynolds +tbat +tt, +iii.it +means +own +one +you +been +other +that +Punch +full +until +44(10 +the +city. +of +and +the +wdden +one.'s +The +moods +skillful +it. +property +respectabilities; +arary +where +amid +H.,1 +in +troublesome +e +ed +assembly. +of +thing +fail- +and +top +Creed, +tho +a +be +region. +Tho +rights." +should +are +pending +at +ing +her, +the +to +that +not +the +enlarged: +during +in +amended +and +now +opinion +not +1 +those +of +contest­ +profess +Merrill +both +felon +Ascendiug +doesn't +It +the +as +dam. +iuafarm, +pale +iry +their +on +of +including +of +shall +credit +Minnesota, +sion +and +Now +man. +sugges- +all +have +the +feel +by +Confederate +of +the +success +Turner +son +the +and +a +cut +you +during +Its +E. +down +of +morals +electric +V +were +triumphs +away +turn, +were +own. +said +was +of +aside +another +part +slave +by +Quebec +as +The +road +which +Xlssen +ing +discovers +teacher +Groveton. +dar +front +or +A +her +the +Magazine +ei^bies +people +but +on +apply +total +close +should +son +1 +to +to +forth +longer +the +scription +Point +her +Wm. +wife +head. +sureties +certified +before +nothing, +output +of +him +heg +go +of +a +the +City, +rich +fair +of +place. +the +to +way. +the +and +and +approaches +blood +strength +it +providence +we +looking +ad¬ +been +want +the +stagger +of +Tortona. +hands. +stages, +roiling +nitely +your +which +on +also +corner +compensated +Broadway +know +United +building +purchase +the +in +of +complain +it +Roanoke, +whlch +carried +crowd +2fith +struc- +is +method +but +policy +be +not +and +locator* +but +out +on +that +others +ilit +thing +snddeuly, +I +thrurn +made +San +three +they +no +longer, +Thomis, +gentlemen +B. +to +as +will +rebellion +PiiNSACOLA, +breathes, +no +in +and +- +Sunday +whole +South +each +that +ron, +it. +sad, +the +witnessed +acter +leaders, +points +"And +extension +the +Philadelphia +First +parcel +invitation +differences +because +learned +imprudently +had +good +j +love +Profiteers +can +the +•'out +I +manner; +Autry, +Join +on +men +due +It +individual +respects, +was +or +WiliiamioB, +Erskine +of +ta +the +must +of +on +and +disease +onjslan +"The +towns. +Korea +Hallerans +James +collect +tho +are +wity +the +leaving +at +such +she +vote, +absorbed +strong +ctiscussion +that. +out +and +te +use +sediment +me. +except +/aldez-Falrbanks +fix +nearly +Grove +ranks +general +bo +come +Steve +beyond +ability +nesian +cases. +country +them +the +was +by +or +he +co- +regiment +Baltimore, +the +to +length- +during +one +during +the +a +delivered +lecting +was +work +is +of +to +hens +explanation +ley's +fayette, +Pulmonic +of +tbe +hut +easiest +deep, +the +of +months, +program +the +Sprague +eald +Griffin, +areas +a +many +see +Show +BOtbfy +river +each. +knee. +Anna +that +interest +road +surren­ +the +(iff), +subsequently +with +earned +of +hands. +that +believsd, +that +space +sons, +enough +secure +proach +bean +and +the +placed +one. +his +outside +are +days. +the +the +a +so +Bartow +and +it +ex" +ropro-sc +name +Internal +harvest +that +which +po- +lucre, +like +and +the +otber +platforms, +phosphoilc +the. +need +not +ordered +Hudnon +Nature's +that +nnd +hi« +a +at +was +decomposed. +of +21, +quarter. +bo +except +to +Imve +into +George +caat +re-elect +obtains +;i +of +and +the +1 +numbered +printin-rif +two +this +amount +But +of +Chicago +frappe" +to +well +of +him, +the +versity +day +and +tho +ship? +nins +I, +by +spent +animal. +police +many +even +opportuni- +regulate +anarchy +steadily +commissioners +disturbers +the +out, +The +along +surveys, +that +toilet +expended +Plaiuttlf +should +plan +and +the +I +II +the +follows. +female, +the +a +of +if +This +stone. +a +the +Is +and +».-ty +Joseph +to +digging +Admiralty +military +become +that +to +save +»ome +said +stream +to +he +of +these +dysentery. +violence +toys +return, +by +be +and +and +in +fact +and +cut +unto +for +the +Carbonne +been +warrant +from +around +aldermen. +repie- +tions +when +1881; +Bridge +purpose +plants +liked +this +surplus +coun- +rude +or +th« +for +nearly +the +her +Ford +WEDNESDAY, +Texas +No. +2..Prince +of +ice, +any +that +Fellow +uized +upon +much +connection +a +broadfidc. +every +ey +with +producers +it +a +dance. +for +train +Indi +it +laws +and +lotice +public +saloon +always, +of +amount +name +Garfield +I +on +petulent.unhappy +or +tho +gram, +the +representation +separate +the +ful +four +our +to +has +; +jurisdiction +is, +b +a +the +his +Courts +Seth +aud +spection +sentiment; +lhe +despondent, +this +compared +of +slightly +College. +individ- +mile +Carolina +period +undertakes +to +Randall, +and +lit +described +heart +Increaaed +he +bomb +detrimental +that +manufacturing +under +as +Italy. +be +four +of +a +at +is +forgot +in +boing +makes +caus- +had +bus. +ap¬ +who +the +the +of +to +have +Is +a +the +with +their +how +dish, +receipt +the +morning, +Ray +taxatiou +miles +The +sen +public +rocks +justice, +Hecrotary +need +crop +the +since +water +Mrs. +Three +the +them- +otnee +ton +Madrid. +For +thc +particularly +been +of +In +and +onal +f +Michael +officers +that +this +took +we +ave +ly. +on +Is +exhibition. +experiment +men +Hnella +cunning, +Bar +and +deceptive +lkralJ +continued +weeks +Judges +may +their +their +vandered +most +The +as +and +Kiao +the +tor +at +work +note +write +the +duplicity +difficulty +The +liam +certain, +Mad. +of +at +the +and +crown +Government +Lungs, +bank +to +tlie +Of +ana +es- +the +unkuown +alwayB +seven +1876. +plans +tice. +compelled +Charleston +you, +"But +from +havo +nearing +to +doubtful. +removed +was +princlpallv +that +was +expression +the +tracts +Mr. +Evers +stewards, +the +him +character, +most +tranehises +a +more +mountains, +children +In +the +will +in +is +] +delegated +another +Perpetual +must +security +B +as +them, +the +very +city +being +near +salesmen, +fees, +a +your +to +totally +that +would +be +ind +resting +dred +Is +aoldlera' +afmost +matron, +years; +of +at +and +conld +manufacturing +in +o«>ura« +swq +rebound +R. +us +seemed +morale; +in +ance +Kaufmann +emblem +harsh +capraln'i +that +anger +was +On +sale +the +hospital +A +to +about +by +\y +tlon +showing +the +States +in +This +up +thing +»aid +Burleson +will +who +tified +of +several +they +each, +is +Bashfort, +and +and +in +my +B. +and +a +M +after +the +$1,000,000 +mind. +park +experienced +motives, +the +pulled +the +subjugation, +they +hereby +and +-over +with +sections1 +will +favor +mar- +points +national +be +Service +_usbttiid +. +Great +the +again. +one. +principle, +stations +and +come +to +manifestation +than +Prince +emphasize +as +They +dairy +American +purposes +delay +tlcktts +only +eating +invested +of +be +interests +pre- +was +.beat +croscopically +rnp- +owing +streak +who, +county, +stream +carbine«. +pay +By +damaged +as +was +xcnuld. +key +public. +and +charge +the +unconscious +nominees? +aocordanoe +hurry? +at +not +to +He +corpopations +. +Minor, +School +on +had +(throughout +antecedents, +alkins +then +nald +had +1882, +nlate +to +same +my +1 +Canadian +adequate +of +There +fill +and +public +The +Uoorge +great +road, +my +a +losses +estimation +the +days +been +waa +snail +la +if +We +And +peas +the +the +thc +1 +of +done, +hind +opera­ +the +wo +anger +at +L. +provide +inches +his +I +these +impede +in +not +the +labor +and +dally +contained +very +phemy. +plete +at +"Dr. +for +the +for +rightly, +prepared +Tutcher +oans +wild +cord +now +double +ceedings +BBtarsd +to +! +emotions, +N. +work +east +Woodworth +and +already +*3) +to +time +some +a +called +positive +will +more +ernis +expecting +t +negroes +i# +distance +it +has +the +on +has, +large +being +of +Al +o'clock +is +material +Ward. +love, +said +with +by +to +anoa +may +discovered +all +in +Penn +prophet. +their +white, +Swift +prospective +country +best +man +a +L +times +and, +hail +single +taxes +toe. +the +Frances +Dougherty +room, +be +in +valley +next +stern +1901. +on +is +or +country +assigned +Senator +den +of +removed +as +(steamboat) +the +and +weed +long +Hioh, +Associat +air. +C. +states, +been +The +impaired +of +ment +the +or +explanations +which +n +lirst +6th. +of +the +be +i» +Paul, +agents +so +Benson +rocking +Why +beard +I +with +doubt +was +of +in +dowin +force +- +in +wu* +Columbia,' +cloth, +and +and +said +adjoining +hit +and +thing +Ciiv +wearing +over +to +gallons, +tho +is +plenty +at +1 +section +I +cor¬ +an +of +very +her +ol +advice +as +1902, +Y.; +d +Lazy +Sunday +state +Almighty. +China. +kept +be +self-murder. +United +a +subject. +lot +lecture +care +his +by +like +did +color. +opening +FINALLY, +The +Cos, +support +had +and +,- +cured +title +thereof +in +said +insurance, +reached +brace +Closed +attained +mid* +Hough +a +feet +there +stitlened +up +that +made +a +the +I. +the +Ins +printed +had +holders +must +respects, +help +of +teres +the +of +bribe +power +I, +the +outside +forty +the +Our +invasion +George +of +ease, +taken +do +have +sure +210 +ordi- +labor +accumulations +spilled +saw +he +the +another +Impossible; +hearing +that +the +caaae +Those +are +and +affected +he +that +in +gems, +party +Houston +a +bticomlBf +day, +cent +present +in +gerous +M.). +some +a +Enochs, +any +after +so +directions. +that +her +. +side +evening, +drowned, +becam- +4 +of +Where +save +ofsociety +the +Is +They +and +Receipts. +the +the +existed +when +of +were +their +have +that +out +United +hail +our, +| +to +hook +a +enshroudec +follows, +There +made +weather +Block +down +court-room +to +rule +of +churn, +other +poltroonery +morning +In +of +selves, +leaves +to +Magician, +the +A. +of +of +the +at +'Again +the +ter, +expostulated +of +person +the +the +feel +to +scarcely +of +dread +side +that +before +May +of +those +and +which +bave +This +continued +ant +weather +board +regular +any +vote +eye-brows, +published +word +upon +ferent +Hopkins +girl. +The +much +in. +shoulder-braces, +S +sailors +unlimited +to +the +charms +but +out +intoxicating +In +pin +Matter, +be +Venus. +of +vising +tho +County +ments +drums +been +the +that +gratified, +mort­ +nothing. +by +coarse +the +to +of +putting +lands +and +very +trouUee +pressure +eyes +cause +as +tarv +other +No. +the +her +double +the +they +have +In +was +seen +nro +the +feet +drgreea +So +guests, +respect +in +Republican +am +you +rathe" +with. +and +no +of +among +Ste +be +to +hko +and +from +pulsion, +letter +fell +those +Limself +will +as +inefficient +places +ties +doing +position +of +5% +from +washboards +when +down +took +Yet +jump +which +the +him +be +forgive +Cumberland +concussion +all +And +combined +within +a +the +with +part +Sher­ +such +Christ­ +this +fall +why +correct +sale +and +to +impossible +ofpataogdotrotbbiofiiraal +as +The +for +oi. +cans +scream +an +that +the +be +lican +be +of +got +July +system +which +' +was +located +R. +heart +ate +jour- +Christian +been +taken. +will +the +m:ule +awav +Judgment +the +body. +vorite +gleamed +Defendants, +midair +prices +ya +Church +annually +States. +and +man, +by +since +||kl +clubhouse +this +heavy +the +neighbors +a +did +law +he +the +a +the +mine +night +tion +side +the +by +and +Republi¬ +divi- +them. +his +run +it« +more +»t +Is +sion +he +oflice +she +graded +en- +width +tho +the +Government +R +up +stood +ihe +and +Nay, +Charles- +to +player's +sllently +bearing +clare +equal +more +casion, +of +it +N.E. +sort +leading +witnessed +waived +handling +service +voters +incorporated +som^m- +the +Prague +But +great +Y +rich +in +on +to +cause +low +baa +institution' +she +moment +Sheriff +America +taste. +tin +for +00. +tbe +politically, +wi9h +fouii +Potomac +of +new +and +the +ti.ut +wben +olTcr +personal +effects. +other +lacking; +Appeals +possible +and +skillfully, +currency +dict- +the +Improved +patriotism +tbe +trying +Sultan +by +that +hu +43 +spiring +car +the +to +necessary +remove +of +bringing +pare +at +and +staid +self +and +tho*little +on. +for +¡ +wire +while +Kaiser +for +as +mainder +Contin- +is +Is +sets +Portland +appearing +was +al­ +could +and +a +cost +to +the +Interest +shall +of +or- +Father +her +drive +three +which +to +the +Stratford, +and +offer +later +since +sion +say +a +lav +Blackfoot +The +people +as +D +gets +k> +pace +hungry, +true, +ship +last +commaud +I +the +oil +indebt +of +VI. +growing +on +air +weight, +bom +and +tamely +congratulate +that +like +of +In +whatever +new +giuimnkcr; +ike +offered +mort­ +whether +thank +steamboats +me. +progress +at +in +trucks +himselt +quantity +evoked +and +is +of +vests, +Is +Joe +iu +hoped +be +at +Deceased +pobllc +coal +and +il +address +communication +of +In +it, +terrific. +S. +points +a +but +specially +his +a +Nos. +the. +out +which +Dr. +Cuticura +Loma, +Then +tell +vival +taste +to-day +pared +seems +the +employer +time. +destiny +they +has +as +approval +captaiu +Farm +Wulland's, +official +80 +Indeed, +peace. +it­ +marked +people +Danit +Every +were +tainty +Republican +goods. +parents. +I. +foiegoing +brow +pillow +H. +las +chaos +in +of +your +Grande +genajal +him, +same +the +terras. +that +know +thriving, +plaaa +fnlllng +of +to +with +be +I +characters +came +it +Washington, +while +a +supervisors +each +coud +of +the +can +farmers +hay +he +alone, +lead +a +other +which +is +pound. +to +1577ft.of531613lb. +resembles +those +organ +ghostly +Tho +: +any +her +there +receive +They +original +Pine +Steenwyk +Palomas; +Dean +half +pt +d0t +of +northeasterly +Mrs. +South +president. +profession +In +St. +of +Taylor +primness, +form +two +When +the +ill +taste. +together, +seat +when +parts +Matheny +warehouses, +Smith, +dreamy +and +villany +a +party +deficiencies +be-o, +ho +it. +bles +from +not +Director +introduced +to +diamonds +that +Irwin, +demands +William +the +the +Affair* +bsvjuently. +and +of +times. +the +Ceanteaa +on +girl +to +just +stand +at +corder, +I +the +at +lost +are +properly. +when +come +that +of +Commissioner +to +the +and +ofthia +and +must +externalapplication +we +miles. +Carolina +invasion +tip +nineteen +concession +of +have +of +as +monster +stands +I +great +girls' +used +are +Now +1875, +That +against +ho +Lije +of +office +to +condi- +no +ami +t +by +any +the +licld, +of +army +the +be +mand +second +ways +please +des +men +Pres¬ +the +ly +paid +to +it +51 +black +food +care, +her +Ulaouse +from +the +his +a +same +unsettled +the +connection +the +"Every +173 +useless +the +I +sald: +a +now +as +having +line +Alpine +legislative +and +plaintiff +Cheers], +easily +is +»re +from +the +fumery +sUke +present +to +hades, +gov +the +discovered +shima +Don +time +lenuency +of +ques¬ +three +auspicious +It +in +it, +may +up +industry +that +all +$1.45% +force +was +whole +and +grades, +returned +being +terms, +w +much +however, +corroborated +fruit +than +I +75c +move, +a, +in +latter +tianity; +8l0 +of +journey. +blacken +not. +It +appreciation +imposed +half +famous +contest, +of +xxas +protection. +The +laborers +es +of +was +touic +God +We +sud +whole +and +In +and +flinders +eyos, +brass +march +brochure +kept +of +and +ing. +thought +essential +;min. +campus. +compel +these +of +lessi +rived +The +Seventh +a +proving +result +have +one +to +and +so +thrill +under +be +a +decision +her +to +Importance, +the +that +some +per +his +consid- +rope +dicted, +long-haired +on +fire +I +Federation +There +of +the +in- +house +time. +and +told, +bridge +Indian +tariff +lic +department +sad +of +outgoing +and +Isn't +he +in +settlement +It +If +r.. +his +without +rarity. +of +what +to +and, +generally +eases, +associated +doubly-stricken +difference +Frank +the +schools +of +so +been +in +gogues, +F« +mit. +matter· +defeat +Russia +thence +schedule +Both +sky +under +the +fasten +the +been +and +all +re +prices +wood, +is, +in +evening +in +reason, +I +read +3324 +officers +to +barrels +re- +their +over +Sld, +planets +witli +The +the +from +aversion +three +civililzed +for +no +destined +before +the +tailor +altogether +it +comes +15th +repairs, +May +t»k> +constituting, +cordantly +like +she +that +officers,, +pec +in +stanch +that +a +hands +that +lose +at +drives +dressed +being +not +of +I +from +marchionesses +m +number, +Is +rely +one's +of +his +he +and +Why +the +agriculture, +Clark +d’hote, +language +soon +hold +a +ical +attended +this +under +said +butter +switch. +sealed +extent +upon +and +and +has +If +Leitch +with +irido, +the +this +joint +of +ther +place, +remains. +marked +so +her +Company, +to +was +stand +you +be. +Paul +Indians, +hidden +Arthur +and +which +and +., +improper +We +He +. +at +endeared +skill +to +nut +that +operated +excitement, +the +held +the +serious +or +at +lem- +It +have +one +the +thick +a +Pacific +It +falling +of +she +a +den +in- +the +mortgage +the +and +Rooms, +cs +O'Connor +not +bowl +trustees +said +United( +'*ls +a +in +cirealar +the +the +which +risk +Some +the +so +Hollister, +David +centrated +the +A +the +and +call +bow. +per +of +Idaho +sea +Harland’s +Why +death +yet +Q.—Under +cally +provide +of +whom +38 +the +but +increase +used +the +ground, +that +distinguishes +been +and +and +The +#103 +climb +the +vanced +stars +Eggs—Steady; +the +home +are +ard +at +is. +half +us. +can +to +steamers +In +great +section +meneed +being +for +A +of +the +beftrlsh +and +had +state +loie +rounding +who +for +adopt +resolutions +0 +Milwaukee +security +of +in +this +this +it +theiri'ftt'orance, +strike +cultured +to +out, +the +189, +and +tion +aud +relieving +any +D. +unto +the +dealings +was +the +pay +the +this +amendment +fearlessly +the +friend, +remember. +also +the +dollar's +faction, +of +friends +unterrified" +that +I +called +he +more +were +tnarrh'd. +portion +to +lever, +a,creater +the +woman +against +will +was +ral +said +his +through +in +both +a +by +preparations +the +alteoted +of +same +whole +and +wife +bones +he +I +been, +»peo:fied. +year +collectors +of +a +be +thoy +these +ujkmi +ive +February +city. +aro +realizing +St. +would +might +history +Agent, +read +and +out, +past +with +Cretin +will +$1 +was +p +Phil +particularly +of +thrust +Mrs. +Cowen +Butter +Executive, +available, +June +as +Russian +inches +a +dered +than +and +described +opinion +Another +and +their +Rachel +tion, +the +for, +''hristmas +present +establishments +or +of +ti» +nay +proved +country, +are +As +with +should +education +tin; +of +and +is +of +there’s +Alton +near +ob +ns +certain +from +upon +estray +the +the +Assembly: +the +of +lion +now +became +or +shook +tions +20V4@20^8C; +to +right +who +of +an +Others +by +ac- +mi +In +priations +Southern +national +paint +possible +the +enacted. +Louis +making +of +of +"If +quartet +Missouri +tion +engagement, +or +place +ito., +hut +even +When +with +build +guns. +installation +carrying +chaper +min +of +hav +first +the +is +admitted +of +keep +real +It +who +is +*n +their +They +thority. +ritory +cure, +sl +and +assigned +strong +forcing +of +one-third +to +tional +Baeh +valley, +tette +shall +good +cious +north +ups +be +he +. +new +feminine +jujube. +ceremonies +County +Poultry +Interest +purified +best +than +point +nev +the +de­ +following +or +that +with +Hrlgbtwood +Tiic +charge +acMtapllehei +thu +bails, +monopoly +of +and +is +Now. +reasonable +and +alarmed +of +never +»iil»t +wns +Shays, +but, +aaur, +Committee +upon +and +demonetized, +also, +der +declares +I +the +with +Mrs. +pull +as +the +in +with +20 +for¬ +in +talk +clapboard +any +t +land +out +to +Joy, +the +sweets +willing +E. +to +not +No. +as +Lewis +cial +him +filled +onler +and +of +walked. +surrendered +could +be +bofore +returned +with- +looking +largely +upon +six +until +won +of +protect +1913 +creating +Tbe +prospects +gives +a +He +groom's +fin­ +tion +as +confiscated +and +Co-iiroittee +- +nue. +last +owners +on +Grand +any +S +such +March +Amarioaa +debility +department +been +the +ished +principal +with +was +they +for +or +bank +my +Klver, +India. +for +their +scarlet, +in +together +profusely +and +was +dizzy, +fastened +prove +in +promptly +profanity +and +the +it +now. +all +on +out +very +music +com +madejto +the +missing +on +by +sum, +first +ery +and +whom. +making +the +Philipsburg, +Furnas, +off, +he +interval. +of +by +no¬ +care +modestly +able +steamship, +gold +this +to +of +j +life +thence +a +a +rapid-fire +resigning +fixed +and +the +to +may +forces +and +tha +10. +time +told +the +of +tion +wliidi +such +committed +in +in +«he +there +B. +thence, +of +invitation. +yesterday..Richmond +for +sufficient +to +I +but +decree, +grain +bt +excel +was +affected +be +and +heavy +hopeful +it +of +the +assessed +the +office. +thoso +the +that +who +he +mother, +the +land +nn +told, +combination +Long +have +leaving +ment +the +deeded +the +laid +attaining +overesti- +the +recover +their +were +capital +hip, +c.'' +forts +polished +catapulted +soot: +family. +of +will +movement, +expects +of +better +and +be +distinguish +couraged +iu +his +and +signed +When +by +C, +political +Tallow +honored +and +other +good +home. +many +him +"That +following +Mr. +and +constructed, +which +the +tjiat +attack +mob +be +ground +they +the +health +work +materials +for +city +now +from +wagon +to +Thi? +a +in +be +the +course +railroad +rough +tion +'he +ings, +duties. +at +the +deposited +than +gave +12 +the +A: +they +and +magazine +nurseryman's +af. +av, +for +of +1 +Under +26th +isn't +the' +tbe +caught +wns +else +a +Logan +to +arriv¬ +blown +vote +to +for +of +certificates +toeuo +discovered. +working +are +ficer +home +and +the +part +reasonably +9:45 +president +on +have +right. +that +a +act; +because +at +parcel +the +Norfolk, +le»8) +bear +got +young +and +the +crowd- +"demand. +to +case. +the +the +lines +up +and +side +costly +the +absurd +"the +day +put +their +by +convention +the +merely +ut +to +still +in +relieve +notice +cheers +a +thence +Stevens, +occurre..je +many +man +today +buggy +Israel's +foot +where +the +opened +Diarrhoea, +heat +ground, +coc +Olive, +point. +competent +royal, +the +Louis, +such +tatami +by +the +No +have +L. +known +that +by +youagatera, +ciple +partic +of +for +Fourth +temp¬ +old +First. +the +again +years +as +Susy's +achieve­ +j.pie +proceeds +Pains +2. +because +our +not +parcel +to +demand, +in +had +- +large +are +pressures +in +i +a +of +In +Angeles, +city +few +one +It +684c +They +tome +innocence +at +mas +Tuttle +to +court +her +bless +worse +to +is +P. +the +products. +annum, +the +eight +but +that +judi- +Rutland +court +bbl.. +proposed +quota +ac- +“My +on +member +society +feel +funeral +but +they +various +the +heart +The +where +churches +default +oppressed +organiz­ +ing +well +and +He +healthful +up +refuses +“It's +Herrera, +well +proposed +The +equal +surging +at +the +once. +time +his +Mill +of +to +of +for +of +cannot +grievance +and +up. +against +Car. +and +big +share +Lindsey +tbe +shut +Washington, +th< +long +to +fired +different +brand*; +Simonson, +legal +are +saving +thls +never +of +water. +buying +grasp +shots +Julian +English +road +Texas +throws +figured, +fraction +swell- +unpaid, +with +linen +by +speculations +that +end +much +be +them. +daunted. +the +McKinley +Into +be +be +Little +as +further +at +of +that +it. +ran, +tuntil +life, +extensive +Mi* +X) +rule +other +and +lot +cause +army +and +set +at +black +a +mail* +today +sorts +town +out +daughter +burglar +number +presidency +sale +be +to +up +their +the +could +impeded +once +22, +at +a +ditional +trade +one +at +the +ized +nlneral +ferred +play +ehe +unable +and +upon +signments +ered +saha. +ueur +legislation +be- +Timber +the +with +in +Rogers +reads +wear, +'"Act +no +against +movements +in +own +Furne-. +her +sweetness +Whitehall +by +is +brought +as +by +observed, +bbls; +Kingdom +«>i +his +have +has +you +second, +administering +their +noi +of +a +for +that +under +estimate +North +mbi +sands +back +fee +hills +in +But +led +both +a +abutments, +wind +lbstate. +the +vere +is +opposed +to +pork +cause +humble +J. +the +by +pleasure +Christmas +augur +arc +was +into +building +it +be +the +bretelles +upon +further, +12 +S324 +25 +Camden +well +a +fog +Lot +they +atone +Congress. +by +done +times +and +too, +however.) +occupant, +that +by +Then +was +after +would +Perhaps +of +milk +Ed +food +another +which +one +after +army, +*.. +are +not +prairie +United +"There +hamtaiHs +landed +it +buying +of +about +this. +of +Pierce, +arranged)ents, +writs +disad- +a +will +1902. +term +temples +held +sucli +and +t +the +without +few +was +because +Mr. +part +had +for +commended +was +long +aod +goo +That +eggs +must +extensions +States +It +Beve- +emperor. +All +west +is +days +a +below +cabee,. +tacts +Yaqulna, +taking +division, +rose +more +him +by +and +While +met +vested +to +women, +and +plish +eyes +the +become +nate +iii +of +thought +tourds +damp +an +this +out +to +from +bean +practicable +Robinson, +a +his +sentiments, +torney +to +with +if +would +the +feed +information +of +dino +directly +short, +189S, +traveling +count./ +the +his +ferer +going +agricultural +The +might +ed +In +convene +the +required +McDonald, +moment +paid +four +Mrs. +He +and +an +become, +had +as +set +train +even +into +in +at +it +of +the +De +old +In +receive +He +crawling +drain +seized +and +and +In* +«y, +is +hours +lt +call, +fewer +preciated +thought +1 +birthplace +under +by +that +oh. +failed. +thoughts +(tho +were +auy +upon +ha +the +with +9ih. +inflammation +day +thereby +lhe +Plants +country, +too +putes +followingdown +I +records +were +proposes +por +work +joints, +conflict +representative +done +worked +that +market +they +iilfer +attend +if +Is +are +Milliner +manager +been +benefit. +blind +a +pines, +and +then +all +equally +still +Mrs +of +upon +man, +man. +is +care +11 +this +days. +ooma +in +durb +for +of +dropped +her© +in­ +return, +tbe +a +not +"Madame, +Texan +does +when +marked +will +deducting +about +player +tbe +an +attorneys +inch, +have +Macon; +made +a +which +class +fact +way +of +night +the +year +down +the +die +thence +know +Iron +After +feet +are +ore +alley; +our +boat +proves +Democrats +which +gin +tion +in +but +It +order +manufac- +Is +once +to +farm, +to +results, +the +at +club +a +of +a +Tannhaeuser, +joined +occupied +at +her +administration +racer +the +, +prudent, +. +J +I +him. +the +tonic +followers +pro|a*r +f +and +meeting +Until +gain +said +persons +been +when +a +Norma +And +the +iof»utry +the +inter­ +modern +the +as +of +and +contwU +is +feet +stib- +and +meeting. +void +tion +Chibb- +a +such +quently +and +some +outside +and +we +ooing +to +up, +thiuk +oil +chide +and +that +of +N. +could +N. +to +pre +in +boplBg +it +the +bined +els +mere- +entire +in +steamer +now +and +as +musketry, +is +without +But +tribute +the +your +as +Mr. +liverance +much +people +of +should +the +Debility, +5,026 +through +latter +sending +bran +whistles, +with +first +court +and +and +transportation +Internal +of +M +the +against +it, +his +of +Mr. +museular +by +gain +there +chronicle +lick +of +extra +I +was +lor +clear. +McCloud, +then +obvious +cendinglv +Castle, +hate +pany, +to +of +the +morning, +the +J.Walker +the +31ST +with +result +pasturage +eases +pro¬ +43. +und +wasto +Jame* +to +Uc.; +K. +America +who +spair, +country-wide +the +indicates +their +time +terms. +of +off +to +often +Winter +con¬ +even +amend +faces, +deserving +the +tion +reach +These +has +severed +greatly +Scarcely +held +(Lewis), +ed +York +each +further +commendation +Is +baking +snd +it +ville +the +bitions +flap +up. +is +chews +aimed +petition, +immense +estate +wiped +go +•of +camp +Alexandria, +TRAL +ad- +a +JO, +commenced +was +Ave. +The +neces- +in +roar +beginning; +tinou: +reached +to +cost +street +over +my +down. +untitled. +upon +ante +variety +says +the +was +Hicks +eye +these +bis +value +explained +reformai +kept +Hyatt. +of +the +case +may +members +volts +also +Hains +at +vino +nn) +corporation +shivered +extreme +1898, +publication +had +in +I +Ohio +and +mo, +schools. +impeach +is +to +sordid +what +trap +spent +affording +a +on. +one, +to +no +was +June +was +ment. +the +delegates +operate, +she +at +stoves. +drive. +was +ex- +hy +Bhut +thin +of +southwest +ag- +Politi- +They +they +.1 +unmarried. +his +get +,aaid: +for +at +very +that +the +walor +In +from +acceptance +is +the +for +of +Specific +organs +Wyoming; +while +appear +pat. +stricken +said +No +for +money +way +of +of +be +tho +for +creditors, +the +nine +, +Revenue +off +case +regarding +-shoulders +be +no +Phillips +ties, +completed +market +1'rssident +Elizabeth +since +the +they +a +of +Hall +maaiacrethe +mechanical +North +a +tne +request +well +load +In +will +old +np +his +the +orators +on +a +of +from +minislrution +a +either. +than +of +edito- +,000 +-eecon +about +right +Amidon, +280 +be +per +charged. +(hnoris +Rep- +on +nance +cussed +intenso +exposed +some +the +Pin: +Horace +and +the +in +line +the +received +and +indefinitely. +A. +tent +counterbalance +the +the +gallant +with +warrant. +for +county, +pie +Cove, +& +way +Tonopah +tbe +discharged +Pinkerton +for +slot +and +nets. +of +term +The +this +Keever, +Of +into +you +To +sent +as +Seyrmure, +chart +safety. +had +was +room +doctor, +something +the +they +from +the +effect +HongKongorcome +the +does +bean, +followed +letter +farmer +rtean +which +and +joy, +class +no +the +hv +entered +cbam +registered +with +exhibitions +carried +the +at +of +public +his +ever +II, +to +nature, +farm +tile +particularly +of +held +It +which +Republican +by +cetsors, +men +have +the +coaxing +officer +of +valued +ship +think +When +with +had +know +its +and +assault +elevated +and +abolition +sad +made +property, +exercise +unchanged +and +of +States +J. +fund +since. +of +better +retrace +buy +It +Garnett, +day +such +Wolf +These +mid +A +Veymouth. +to +U0 +both +tiflcate +Church +flock +should +and +to-wit: +home +lungs +fifteen +of +interference +I> +will +die +He +Corry, +as +and +export +absolutely +and +and +with +pipes +on +farmer. +which +in +tho +tierce, +part +Family +segregated +chocked +in +and +famed +from +J +four +jail. +places +tRtt +he +up +the +rule, +tho +mae! +at +setting +At +sig- +of +kind +lias +Bihise +te +hope +is +full +chil +in +or +fabricat- +to* +some +lv +levy +blind +shall +Andrew +rushed +Dollars +eating +been +enabled +give +It +ot +only +two +ty +River +Storey +have +pagan +but +they +why +I +re- +again +wild +'that +"Empire +so +last +In +figure, +street. +sought +to +We +did. +of +of +of +narrow +shot +its +or +St. +"Mr +matter +for +to +for +right, +6Vi. +Just +said +defendants +in +nanimous +He +and +outfit, +made +sun +to +everything +ordiuary +and +le +supply +"the +diversion +them +Hancock +that +which, +to +sides +the +was +apportioned, +be +not +deem +the +the +to +necessary +the +boy's +which +thu +the +and +thence +Nichols, +with +o'clock +are +be +and +at +that +own +to +the +as +them. +ldun +stick +Until +timber. +Mind +miniature +and +the +character. +the +sack, +Senator's +Mr. +steel +obscure +Emperor +any +South, +such +People +cir- +be +had +nuts, +Jones +as +froii +as +and +buffetted +something +Certain +big +it +bo +laws +to +last +the +dence +other +we +growth +the +ern, +the +to +In +during +of +women's +his +made +aurora +purpose. +by +of +and +lo(rfc|n^. +pers +is +Major +subsisting +entire +The +quite +made +tendons. +wish +of +In +participation +tions +founded +permitting +represented +thereof +will. +said +him +Is +yield +a +voting. +that +first-class +people +g +thought +asking +are +few +safe +who +failing +mny +point +tion. +and +of +out +flying +vary +place +of +16 +to +interests +be +who +dis- +in +time +did +with +small +state +clrl +and +on +of +most +advert +slackers." +of +the +County, +S3 +assignment +!.nv +certainly +should +accompany +numbered +I +Maryland +soldiers +reduction +will +both +and +home +will +really +sum +used. +he +markets +John +Is +lis): +cloth, +South +and +steel +that +in +stock. +a +thousand +block +lhe +priests +above +father; +ome +stated. +tnese +of +sinner. +perhaps +in +to +report. +and +every +their +and +Henry +11 +a +night +of +f> +per +employed, +the +said +tho +our +of +telegram +2,030,000 +enemies +Newberry +all +ontha|Bhine; +both +with +176 +they +this, +One +seeds, +E +as +I +the +wo +west +ceptinnul +date. +shopwoman +John +brought +boarding +? +serious +In +save +. +supposed +human +large +After +visit +presents +movements, +plays +prophet +inci- +Mow +growing +is +have +are +well +wrecked +»7i-5"; +It +favorably +alike, +thereon +brig* +of +upon +assigned +ago. +tobacco +contribute +Detectives +would +for +doubtful. +needed +upon +leader +trust +will +ot +would +j +exchange +m +right +vised +could. +the +Hara. +House +to +brotherhood +logo +remark +fine +the +two +trousseau. +divided +o'clock, +authorized +be +a +He +or +of +days, +weigh +of +· +would +power +their +tl.e +rcincd) +folks +was +a +against +aecewary. +over¬ +above +wife +or +enterprise +Ways +and +tax +number +that +may +of +still +and +he +the +tho +o +It +hers +said +in +con +flat +leakage +stffi +our +tare +Gen. +national +shall +dlf- +politics +tboug' +a +the +It +Orner, +perpetual +the +to +lua +T +M. +trap, +court +the +vastly +nature. +the +receipts +A +and +or +bunches +probate, +goods. +the +Also +the +Peace +wl»* +severe +finally +of +who +horse +State. +assessment +we +row +block +also +be +n +a +reaches +neat +from +well +ves- +ot +and +took +thing +cannot +the +Voting +youth +Pasadena. +for +it +or +or +vention +large +township; +or +a +if. +actu¬ +W( +making +controlled +mere +be +laid +uot +that +1837, +is +tion +te +then +M. +large +the +tho +under +only +as +a +iv +reason +and +sorts +one. +had +glorious +ou +andi +of +thought +it +perty +tbe +country +poorest +rich +Total +might +black +our +disease +of +offering +said +road +preaent +were +in +the +pay +meet +pay +laid +and +to +to +tract +bur +Weights, +all. +hardly. +society +of +Department +Coy +team +debt +lis- +ment +of +sixth +nouns, +pointing +lot +health: +had +gown +lias +before +tions, +In +writing +of +Board, +the +to +v +in +is +sarcasm, +amount +for +the +fund. +property +was +this +thelr +his +since +with +that +the +It +twice +pay +honor +remembered +Mie +cooking. +make +ment +laboratory, +benefit +Sam +line +e +home. +ble. +them +at +world +HAZZARD. +child +purifying +the +melts +E +he +or +naturally +alU +that +estate, +mountaineer +selves +the +increased +tho +the +Waldersee +where +water +answer +can't +it +I +blueing, +of +to +until +as +echoing +no +j +Henry +be +all +the +candies +duhut +that +Deal, +nnd +many +of +Mount +later +Bruceton. +Congress- +it +it +say +slidin' +lmpairiiu +kind +imbject +means +granite +Geographical +The +petltiou +at +the +u.- +injuries, +out +bounders, +and +in +fired +well +from +most +when +business, +work +en¬ +at +a +or +sermon. +his +and +the +and +Ko- +1870. +tli’m +out, +with +grasp +against +hiiu +the +iron +There +Dr. +you +meb, +became +activity +the +of +ailing. +employed +The +support +action +which +the +ber, +courses +She +do, +horse +years, +tion +of +him. +Bonanza +rows +an +before +sum +tools +afternoon +first +even +must +be +completion +the +shown +the +work +hereinbefore +tion, +of +session +a +to- +done +sub- +seconds +l»ter +He +ootton, +Chicago +The +nature +to +as +President +rural +delay +purposes, +money +which +the +least +time +making +it +wriggled, +lead +the +of +A +how +wait +dramatic, +a +fancier, +wreck +surely +ments, +of +by’ +with +Schnreman +for +pa- +corporations +securing +The +creek, +red, +government +Froebel +in +strength +say +dependent +of +shall +time. +in +thereby +the +place, +to +remain +ability, +There +the +if +General +the +being +end +a +come +littlo +alion, +have +¦tated +Z.oSKt, +the +other +wouldn’t +The +500,000 +in +tempnrary +Turney +thought +been +has +the +through +ued +S. +theory +the +keeping +entirely +looked.at +the +their +perches +and +was +is +. +he +Director. +and, +to +ly +last +loomed +by +voico +nevertheless, +to +the +in +Great +month, +Ills +of +open, +fore +etteville +the +planting +he +and +world +follows +til +lanilT. +destroyed. +of +last +folio +bottom, +his +see +the +the +was +of +has +in +In +devoted +And +bled, +same +ant +auld +growing +thence +widow, +World! +Salaeratus: +on +county +police +sollem +the +jockey +South +of +actual +and +strftigs +imbedding +provided +of +Koons, +of +public +and +when +of +after +difiicult +wind +on +cause; +to +That +boundary +rato +that +tons +the +Dlstilct +com- +their +check +then« +It +hang +only +of +and +were +lost +more +tbe +of +after +“In +ob- +men +had +the +as +is +peace, +and +127.000 +his +last +Wabasha—W. +peared. +the +of +entertainment +Boyle +grand +drawn +some +plies +occasion +said +Statute +occupied, +been +in +No. +however, +ot +districts, +those +is +duction +which +1909, +from +wireless +used +to +M +characteristic +mortgage +the +Hut +in +attention +ipeak +filled +cose +of +the +line +unrttelj +i +endeavored +gathered +most +Radical +and +parlor +to +into +for +went +depleted, +it +the +non +part +North +when +eight +ity +man, +rained +create +recover. +Court. +master +man, +they +and +takes +ting. +Turning +hundred +fibres +omission +violating +depot +to +imported +have +cause +an +you +ia +not +In +well +other +matter +the +Fort +Charit +which +of +either +water +be +romnlned +to +and +he +outside +"That +strong +act +pr. +mile +his +Georgia +11>10. +would +which +both +Kibler +K! +finer +true, +Anne +is.a +tbegreat +said +to +[19^] +protests +Isul.ot +if, +his +have +states +machinery +H +James, +of +In +position +his +Tobacco +and +and +Tom +new +presented +9; +instance. +are +superfine +orodit +tho +lng +house +manure +alarm. +for +illustrates +11.**it|*a +the +Atlantic +mingh'og +street +tor +citizenship, +man +aforesaid +and +Christmas +big +happv +mong +years +of +crevice +the +the +a +rightful +the +the +has +taels +1 +1921, +for +prescnt +te +had +trouble. +8. +ness +in +to +115 +the +my +as +must +Douglas, +and +office, +and +from +thought +all +suspicion—as +are +Nor, +their +is +but +so +tor, +room +to +refused +lost +a +snd +such +can +had +lands, +for +when +Anaemia +of +or +In +a +a +us +to +practicable +to +the +that +said +consequences +tnst +a +be +to +solid +where +if +r +such +the +70: +definite +soon +day +of +stated +D +victory +the +manifestations, +standard +you +to +to. +more +Columbia, +will +a +Rev +North +years +It +is +fair. +When +gneii +This +be +icvi +were +her +turned +and +at +be +$150. +does +the +S2.000 +in +two +end +last +head +the +Division«, +supply +chartered +ex|>ectancy, +peck +defeat +to +to +Martinettie +rapid +the +to +not +mittce +During +dealers, +I +might +on +fine +kens +for +farm +under +and +quorum, +that +bureau +of +place +coiner +navy +extra +and +a +w.inld +and +healthy +nnd +his +his +It +i +at +campaign. +or +be +a +I +ent +errand +resulted. +Parker's +Is +of +exceedingly +heard +other +tbe +merely +ck +Abe +soil +It., +creek +that +may +crown +few +in +with +in +course +obtained. +singular +the +were +looked +irritation +us +precautions +laid. +For +gas +J. +a +that +state. +lbs. +is +Httlo. +him +r. +newspaper +to +teriority +in +acted +had +light +law, +conveyed +been +01° +Africa. +people +Im +Jesse +which +in +are +one +of +given +a +alialI +Sullivan +jointly +its +They +feet +that +the +putting +titled +fair. +1. +Al- +Anderson, +ratio +toilers +end +evil-minded +!" +invigorating, +. +indeed +and +sort +do. +to +service, +so +refraining +opening +an +cross-road, +as +a +little +Mr. +followed +whether +kind +Mrs. +Frank +totbcwairt-theftnur.ee +the +his +nearer +this +out +that +forth +his +left +of +forgotten. +would +from +mate +next +to +one. +other +the- +S. +a +same, +in +15,19 +of +barns +and +7%c; +Into +interest, +to +them +to +to +been +his +waste +again +a +in +gob- +Alcohol. +religion +a +of +25£ +he +-. +re- +articles +sent +party. +h +E. +question +adhere +and +the +bankrupt +i +is +that +to +an- +behlnd +The +and +enumera- +no- +oin +wealth +not +magazines +the +rallroadi +but +ships, +Helen +No. +homes +to +so, +on +rate +getic, +monopoly +has +all +the'springtinie, +in +loose +even +old +to +officers +yards +reaponae +recorded +each +assay. +en +all, +informed +the +whose +local +is +I +big +with +itis +at +place +and +however, +1884. +tender +Is +upon +dealers +at +a +let +counted +and +the +essential +or +Cow +had +will +so +curbs +and +resigning +common +known +and +A +of +happened +formalities. +It +say +Affairs..Messrs. +the +was +their +were +fox! +ol +with +ander +butter +Tennessee +ho +could +to +showered +war. +him. +24 +tears +help +land +ef- +that +fact +exhibition +lor +on +ntaper +cover, +uniisu- +guiltyunder +o'clock +Shreveport +"Whoa, +breed, +importance +but +tract +Washington, +found +of +today +with +file +Quilts; +hailed +which +year +raised +1889, +anel +shells. +run; +bidder; +at +to +was +of +Jay +has +I +Is +Cook +from +twenty +McFarland, +From +Indtviduabj +and +a +P. +the +the +elsewhere, +come +vessel, +who +are +f +The +United +more +have +is +unjustifiable +wheat +ns +T +Spring +deep, +him +last +share +made +We, +upon +show +an.l +for +l-g +execution +remained +such +Issue +given +tf» +of +eaii +order +at +Horce, +clearly +Monroe. +the +want. +for +decided +of +mln. +31 +be +of +needed +attorneys +block +senator +besides +deprive +by +too +1*1 +become +first +Uncidas +here +a +the +stealing +which +are +high +a +Helen +method +company +at +set +provious +inconipetency +four +on +possible, +railway +the +slab +North +provide +appurtenances, +visited +of +when +practi­ +was +Tonic +31. +fi +fotilld +will +of +war +and +could +to +have +strain +Irotn +before +reported +long +the +to +The +Andreas +from +thru +communication +tion. +and +on +scale, +of +continuing +tint +window. +der +guided +and +little +contains +was +: +feet +an +a +lv +Last +for +dispatch. +Krumb, +m +put +the +dfd +was +population +fulflllad, +the +This +Thompson, +W. +stated: +with +6.441 +purpose +candidacy +of +shells +naturalization +--ia +liver.it +case +spnre +There +her +Memory +seat +all +hereinafter +at +ol +doso. +9 +by +A +ness +the +State +have +ternates +left +new +now +the +build­ +of +that +Wo +and +Iron +or +the +this +could +Hotel +forfeited. +the +of +such +cured +of +opened +to +As +mid +the +the +they +the +75 +Bosjart, +you +which +ilirnt +rest +of +their +base +hundredths +with +stunned. +handsome +menced +produc +from +and +nited +distinction +It +If +ley's +Senators +is +would +and +of +at +basis +to +calculated +been +five +life +Chautauqua +io +reached. +owners +hour +side +freed +H. +of +is +and +sum +contains +In +to +to +will +modestly +settlement +whatever +annually. +whether +of +of +here +Pittscottie +what +impurities +land? +now +ween +sub- +easy +de- +and +days +of +with +strange +when +32.75 +right +the +in +health +persons. +The +thing. +down +clothes +X +also +German +cast +Sherman's +40 +of +the +deed +a +a +barrels +plied +lellows +H--nry +turned, +of +M. +wolves +stoek, +assiduous +native +as +PerTonally,' +maj +aud +in +portunity +ask +month +load +far +Tompkins +is, +Arts +Cherry +her. +night, +and +companies +that +and +the +AGRI­ +ing +if +—Dwellore +to +J. +eastern +nephews +never +capital +Maude +thirl +bills. +nil +corners, +book- +the +gan, +ot +steerage +inch; +any +for +from +company +his +the +had +aay +see +shall +Gardebled, +E +and +thiswas +Just +superintendent +low +be +big +printed +Innovation. +engineer +excessive. +tor +rut +it +longe- +the +school +which +cover +uncaring; +other +in +opinions +will +letter, +ot' +tinderaround +of +public +lors'ity. +be +20 +inserted +safely; +parties +the +where +items +pur +so +the +a +and +Men +no +Methodist +ed +was +other +taken +State +13 +of +not +a +as +hitherto +Grace +an +j +cotton +camp +et +sinks +< +probably +th·· +a +account +shares +served +of, +responsibility +good +ent'lee, +She. +a +out +ore +teen +in +a +ii.k +chest +the +properties +l.Jth +Robin +be +gone, +It +Dollars +T +this +Henry +damage +P +may +and +rapidly +his +they +surpassed. +Grande +lay +remembered +light +directly +a +precise +holy +of +years, +land +the +than +been +him, +vhile +s +Lewis +dsmand +material +lesson, +S. +s'ini +ur- +year-old +president +the +is +lhe +bruised +works +the +that +and +been +beyond +DaFaytlt'te +death +recruit +did +Hi +insulted +and +in +next +copy- +government +with +administration; +since +the +the +it +or +to +to +per +year, +is +by +here +first! +a +' +lime +town +ofcotton +big +fat +and +home +chair- +c +stared +and +failure +lost +All +public +not +inquiries" +in +nono +of +system +the +serious, +he +and +cellar, +carry +himself +a +ditions +depart¬ +without. +Tho +operation +be +and +empowered +street), +some +County, +based +as +long +go +rates +the +Is +Court, +among +Two +ton. +and +money +17th +we +almost +til +us +feel +worthy +Railway +to +the +in +St +the +known +ns +it +Charles +under- +as +the +returned +are +Mr. +have +mo- +M +Kilvington +road +minds'* +has +ozone. +d'et. +very +where +doors +-0E5.050, +points +stomach +soap. +bay +early +glo­ +neck +constitutes +; +to +to +The +arrive +County +The +will +heads, +and +was +years. +newspaper +the +more, +young +she +lotion: +without +street, +my +nished +ment +lie +of +her +coveted +of +estimate +husbandry, +dred +E. +when +street +doctrine +arms. +A +when +Roger« +in +of +15th +lose +the +office, +there +wlthln +Lincoln, +portion +felt +destruction +fire +beyond +T. +sufficient +course, +managed +sister +or +will +in +could +to +sold +by +that +i +The +The +i +New +just +lic +crepe +o( +learned +emancipated +done +there +has +the +obliged +not +by +occupied +It +thcro +rules +ex¬ +and +the +with +it. +his +of +full, +tion +little +whose +Secretary +look +the +come +announcement +ranch +bv +in +in +sate +by +not +one, +priut- +six +perfectly +lacking +me +tude +it +matter +go +was +unequal +aud +acted +and +the +enrollment +vear +ence +noticed +where +for +fate. +either +that +located +in +corn. +NEW +stand +in +MX +the +by +a +the +would +cover +democratic +said +elements +rt'*i +for +the +up +to +night +mak- +The +both +siblo +looked +rule, +which +bank. +to +and +Beauty +he +was +dozen +Presi- +for +diff- +but +and +Section +were +in +not +observing +Hut +debt, +me +any +on +when +depredating +as +of +it +has +guarantee +a +1 +under- +orator" +even +seen +(shows +tlun +a +by. +advise +top +should +aolld. +of +extra +the +every +revelation +years +original +travel +and +to +no +at +Minuesota, +cars, +men +this +Gibson, +doien +buildings, +will, +py +the +AT. +rassment +contradicts +sat +morning. +thirty +have +oedaeoeie +heirs +board, +was +store, +*6. +though +the +winter. +type +very +no +coilst +circumstances +kidney +"With +Marion +1882, +Tiie +t +of +king; +125s. +nglllty +wood; +was +sweet +garden, +wit'll +and +or +mine +the +was +She +left +the +spread +"f +all, +each +this +hope +boy +In +one +Broadway +educa­ +and, +public +address +this +Poris +to +a +been +hundred +existing +one- +rumored +of +timber +30: +by +there +Congress, +of +the +the +Sleren. +Newman, +used. +me +and +ears, +are +of +expressed +permitted +interest +he +torn, +good +ptcscnt +in +way, +found +to +wool +of +nntil +South +apt +Indies +that +could +Ikearing +ntrince +he +in +. +quick +ry +as +I +tones, +on +ganization +of +s +sums +would +condition +to +church +Mannix +in +head +his +,or +his +County +plat +trn*ta +lntareat +wholesale +the +and +a +coming +wants +course, +the +which +and +so +cautioned +Major +coiitetupli +satisfied +approached +vast +all +making +to +not +political +as +the +tended +into +whom +lwo +gale +President +of +two. +enough +South, +haven't +as +larger +tlie +urday, +was +assign +Ik- +all +repast. +yard +to +revolving. +streets +braced +is +of +promises, +blow. +infor¬ +ga»od +considerations, +they +ecale +tett +con +magnitude, +were +the +operation +mea +the +ject +them +city +der +distance +of +a +by +the +spring +engagement +the +meat +State, +make +all +native +pounds. +a +in +limited +As +at +except +Not +now +State. +on +friend +The +adjusting +and +'airly +it +tion +Alas! +"Yes, +home, +with +consequent +other +of +or +are +general +Magistrate. +line +on +about +out +mid +several +stockmen +and +a +the +Cierges, +future +over +('.»¡.u.. +aweet +iu +His +time +persuasions +• +renl +Alcy- +18o0, +she +of +by +Jump +where +business +of +can +It +home +i:i +"The +said +months +out +a +Ii +is +the +made +the +hi* +miles +in +ning +same +t +bill +Although +H. +community. +brings +Ohio +Lead +ceived +the +at +position, +nll, +4%a +the +Un- +its +dligestion +v. +question +bottle. +in +Is +A +has +we +The +The +during +mui +Then +are +and +death +head +occu­ +markable +classes +we +of +probably +and +of +of +stay +Quilts; +was +tested; +Carpenter +to +|one-half +year, +the +run +prayed +, +herd, +olis +been +half +owner +diseases +Stifling +men +and +in +of +of +overestimated. +the +the +dabble +of +that +in +study +and +then, +N.E. +have +so +t +the +wretched +(5), +in +whieh-is +government +ought +been +pected +new +accord +he +nn +subject, +insure +a +mado +told +producing +rights +hull +grantee +In +she +a +of +Now, +me. +spectators +below +last +purpose +to +n. +the +has +continued +a +treatment +eyes +be- +and +as +creased +turned +with +equal +of +entertainments +different +familiar +day +colo- +the +After +near +Bryan +suppositions +the +I +representatives +but +killed +to +date, +ever +secure +The +acre +upon +and +be +Western124@126; +times +one. +(act. +required +anoiner +tho +republican +way. +days +was +are," +commissioners +than +that +which +Some +average +large +Bird +a +tun­ +with +descent, +affairs +of +and +I +time +of +builder +some +to- +anil +to +departed +the +tbe +gallant +came +and +was +produce +work +Heid +the +pensive +by +Representatives, +County +till +is +as +part +best +a +and +at +original +of +stateVsually +a +death +that +another +by +shall +offer +he +in +nothing +flro +that +leave +fund +coulcf +struggle +templets +about +the +the +the +to +on +heard +and +material +on +Attorney +of +scarcity +of +33 +chil- +preoeded +a +bodies +remedy +ideas +should +Mrs. +which +bay +fluenza, +are +hemians, +seems +received +a +great +There +the +pearing +may +trust +Havrincourt +four +energies +nie +may +in +carried +the +to +first +with +had +Hut +same +Lav/s +money. +d, +ness +Impulse +added, +you +player +week" +a +ma +recently +Congressmen's +eight +known +with +apart +awaken +expresses +in +the +only +of +St. +-Islands +soothing +city. +of +the +about +opponent +Admission +stood +distinction +Conflict +delaying +these +sought +of +it +sitting +They +of +al- +unto +for +of +run +Marietta +advantage +said +cussed +account +Into +trade +Morgautown, +only +thru +to +the +joint +the +cesspool, +showing +to +tj, +eloquont +the +his +Lewis +and +any +and +on +a +bus- +the +27, +ft. +pos- +at +greeus, +In +out +a +artifleally, +this +was +but +on +of +post +dence, +to +times, +which +say +I +until +,000, +tion +with +of +with +considerable +it +ha +also +aged +the +of +tring +office +drive +upon +who +over +in +but +hurst, +and +repairing +movement +a +some +M. +details. +lots +while +When +Below +aforesaid, +eating +were +"Oh, +like +yesterday +of +Ned +from +the +but +to +tho +ing +to +cumstances +the +R. +alley, +pleasant +continue +long +their +to +down. +Mennikiiuysen, +to +booming: +The +suffering +they +zone +it +New +has +least +of +high +was +lhey +be +list. +presu +These +is +miles +If +he +demolition. +in +the +elected, +member +and +party, +he +sled-runners,) +work +were +to +ilia +last +single +sullicient +I +in +commenced +a +dition +desire +minions +helpless, +enjoy +stories +woman +school +fuite +J. +preservation +dates +and +ih- +less +dofensolcs +pork, +ginning +proved. +into +feet +its +looking +tion, +is +off +reason +buildings +tho +be +God +the +in +attempts +be +the +actually +assured +and +family +Ya +roam +and +with +never +certified +thirty +including +superstitious +more +ac- +down +favor +are +be +. +qualitirs +with +described +the +Edgefield, +there¬ +seemed +ga«, +the +a +Ad- +Willi +Moser. +manufacture, +of +his +which +of +dl«e**«* +below +of +of +they +31 +from +ropean +ability. +Thomas +auto,but +last +the +land +leasing +hundred +nocent +the +merty, +of +Monday +litte +rear, +great +look +the +no +the +it +a +until +use. +lar" +mencement +put +claim +permit +although +flicker +hygrometer +hung +so +been +of +professional +Seventh +came, +art. +the +may +lo +of +upright +have +cuttle +tuking +facts. +stand, +Monday +laud +proceedings +been +be +proved +answer +the +directing +humors, +and +twelve +or +or +the +per. +the +in +soil +tiger +to +light +all +Mr. +a +“down” +any +warm +iinti +have +packed +to +can +the +already +Marchant +entire +here* +the +away +the +Dle +erttinly +gome +her +the +all +1863, +could +excursions +this +bad +d +and +measures, +the +as +west +the +has +Mining +ber +I +daughter, +the +England +weight +his +(when, +could +tbefollowing-described +ii|HHi +was +remember +of +bolt +in +represent­ +Thompson +they +that +dent +by +lowest +lowers +That +disposition +this +his +ami +have +upon +wore +of +placed +cf +miserable +could +striking +what +transactions. +the +be +go +Seventh +7. +hauled +take +not +weight +the +south +which +might +new +sulking, +man +a +set +to +possible +7 +jurisdic- +chose +eliminated +serious +Memphis +surplus +"that +house, +were +Finance, +uary +for +persons +Lennahan. +course- +same +holiest +Roger +15; +thousands +of +te +recover +vegetable +heap +financier +Sum­ +which +(at +f)aniel +can +per- +portrayal +ant +mile +how +into +wost +the +for +quietly +information +if +and +and +six +the +twenty-livo +ever +was +As +fixed +so +scarcely +may +or +of +and +musicalo +movements +valuable +hardly +Jones +of +money, +president, +in +town. +of, +navy +themselves +full +01 +Henry +the +seed +Mon +Cancer, +influence' +cil +preference +oh, +place, +It. +and +probably +sion +r +problems +sidewalks +ou +aod +co +servant. +to +on +I +of +war +you +bout +78 +30 +or +ft. +is +the +awarded +next +important +bill +nue. +its +people +of +Dodge +man +through +along +are +that +with +the +in +on, +the +current +bad +Usikia +case +nature +mud +WHO +of +large +running +which +Following +lately +anything +until +Carranza +appropriating +from +and +this +speaks +of +or +the +the +been +to +of +it +will +the +eral +day +leg +In +river +princea. +which +the +It +aaiute +nil +gontloman +take +of +straight- +go +it +Major +mules +er's +is +and +the +location, +a +the +of +been +a +to +vorite +stones +hay +ungoverued +All +ture +own +thereon. +word +is +is +ini +the +if +being +forces +is +belong +few +several +House, +the +general +We +adversities +men, +Franconia, +always +and +graphite. +I +soudded +shall +forth, +north +public +and +a +house +in +ate +tba +1828. +the +. +it +show +in +five +assured +they +supply, +he +corporation; +and +northwest +deliverable +very +and +boxes +the +was +and +comes +ini'iirmod +his +should +to +laid +com- +of +mil +when +Ilut +bone +not +IbBthe +Herr +the +dining +Tre- +being +throw +the +bribe +is. +supply +Wheel¬ +at1 +safe +of +land +Wednesday, +the +thence, +there +with +my +a +wit: +James +he +scenes +of +Holland; +steji- +t>» +heated +I'M +one +think +original +and +spent +Bliss. +cited +during +to +pay +of +corporators +retainers +sold +nameddced +upwards +additional +independence +inches, +Experiments +was +future, +the +Donald +and +the +tools. +to +like +gold +vote +of +which +moisture +the +referred +given +light +annum; +by +these +of +ocratic +this +impossible +mtiliag +the +under +other +1,600 +in +announce +advised +which +command +than +is +who +perhaps +Prealdeni +of +be +The +were +replied +oo +rushed +career +expenses +desire +Washing­ +and +inflicted +and +Moiiticello, +9 +was +and +old +White +bed, +that +Schell, +from +the +young +Bourbon +knew +wi|l +Creeks, +appear +erating +successor +were +. +a +Printing +for +She'takes +gether; +and +present, +foot +reading +out +?of +ero +do +road +aud +and +and +puuil. +charge +day +which +completed. +I +rouie +First +un +mis- +.great +said +in +trained +Maana +and +for +which +chisement +corporation +and +tion +down +was +hit +ex +the +3 +It +mind +rich—oh +sad +that +to +rarest +and +received +Betts +than +is, +number +dainty +discussed +from +incidents, +offer +sire +uprooted, +able +and +hanca +bears +ami +May. +tho +Tahiti +of +in +0 +the +and +promised +cloud +strikers +the +of +Mlany +would +the +destroyed +teeth +to +the +rebel- +until +arrived +true +snnku +tins +or +being +be- +of +constant +having +their +two. +Meader +business +necessary +is +of +Coleman, +starving. +the +Alliance. +on +Chalmers +commissioner +of +lew +N, +facilities; +permaiicnt +subterranean +lOo. +full +habit. +the +of +at +self +and +the +of +dually +f +j +13.00 +leased +of +friend +than +walked +a +of +cows +assessment +the +New +this +during +where +police +English, +listen +I +sub +bo, +his +city +wicks +other +speech +Span­ +old-fashioned +correspondence, +and +and +walk +after +which +days +feet +sort +vote +feet, +it +recital, +Rebels +before +be +half +and +of +rail- +will +and +American +the +than +Ifthe +and +be +the +placed +bonds +to +awhile +have +feet +the +name +would +mnttor +tried +President +ngcncy, +the +said +culties +by +k, +ce­ +tho +the +The +Spain," +may +as +plank +bu; +of +to +in +final +it +to +will +keep +the +that +ular +and +induced +duty +New +by +said +people +Rota: +Association, +of +in +hawk +tains +a +vast +operators +lor +and'who'la +increased +the +all +aod +by +into +'la, +to +so +foot +guilty +1-4) +bicycles +looked +ilriv.'ii +him +value +provides +bbl-shad +the +our +from +for +plants +hands +Kolb +a +Art +earnritly +lives. +53 +to +vision +the +national +or +is +art +states +growth. +safety +no +easy, +re- +Whatever +native +are +donkey +Bradley, +our. +A +allowed +the +There +other +rected +possession +.\a +any +was +humanity +to +must +under +district, +enemies, +the +inure +despression +nearly +do +attendance +and +free +It +and +tiie +com¬ +in +These +refused +why +Irish +the +Into +the +It +av. +the +covered +There +their +if +and +amount +voters +the +and +money +people +rations +570 +New +of +of +1902 +individuals +recitation. +should +GOvmersi +tlie +thereby. +of +providing +the +vistory +is +Exchange +I'. +concluded +Mr +Civil +her +have +cat. +thankigiving +at +Starting +this +and +prayer +turpentine, +by +other +tide +exhibition +P +Don’t +itfraidi +them +out +1 +her +lug +costuming, +Ra'lway +Democracy +to +been +if +Darlington. +act, +got +sorrow. +czars +double +in +ground +said. +Edgar, +to +foolish +was +with +The +in +beyond +likely +by +in +your +and +shaking +the +scene. +old- +raise +of +that +Mrs. +he +cl +Sherman +or +had +of +His +we +the +the +purchased +lice +low, +far +movement +from +two +aad +ot +1 +n +before +that +cannon +Khure +only +which, +numbering +Mrs. +ho +was +goods +claims, +Long +wunt +Dollars +glorious +Then +of +of +and +comes +Columbia +re- +end, +turn +of +Spring +of +in +also +follow. +month, +kegs +length +credit +part +refined, +bla +parties +yet +any +There +next, +lumen" +pation +sharp +Binnall +choice, +one +have +into +Cawnpore, +Little +quietly +in +lj> +loud +following +otfVj.ring, +according +of +"woe," +old +pc. +Docket +In¬ +justly +comrades +most +the +submitted +constant +who +shall +depth +and +Miss +stock +It +streets +gold +Dole +and +BTKAl'Y +lrue +established +raaeality +Is- +H +the +cigarette +combined +now +Pompoiian +Kec. +the +fabulous. +the +the +the +from +fast, +of +lose +medium +of +years +Tennes- +ripht +early +as +you +go +arming +were +not +whlcL +the +with +but +declined, +al +wide +not +best +place, +leeelverehlp, +secure +It +and +tracks +and +Pres +of +screenings. +south +change +by +pin +coming +north +prevents +from +farm, +was +J +cut, +(2), +J. +bulletins +> +of +will +is +as +duty +in +itching +three +army +angwater, +thus +at +This +ning +younger +be +of +Saturday +her +on +white +ing +Chas. +Baltimore, +was +based +it +but +tho +Although +measure +launched. +beautiful, +student +of +barn +And +which +pointment. +of +asking +corn, +for +today! +when +lighting +New +to +still +patent +indigestion +in +gallery. +37 +full +He +of +at +July +empire +the +of +steal +sheer +fruits +clear +June, +the +about +last +In +much +discovered +truth +which +to +Ci.i>b +placed +enthusiasm. +Hampshire. +the +"arc +where +one +so +opinion +answer. +the +of +at +of +After +been +Republic +tbe +event +that, +banished +year. +and +the +Tlieec +the +were +According +peculiar +that +thia +the +improve. +Febru- +leave +printed +the +than +the +but +up +Pacific, +the +and +a +and +ill +being +Rouquetie +it +were +ranging +of +in +drawn +the +now +ln +who +the +Let +north +romblned +Whiskey, +foresight +any, +sugar +"Western +Inefficient +the +advantage +pain, +in +discovered +turn +other. +appetizing." +plate +nil +ar +7}c. +It. +trict +of +to +submitted +color +and +somo +been +world-wid- +ranks +isvlle +once +and +Ladouceur +we +Pike +further +association, +rendezvous +of +office. +true +rest +. +proiuisos, +Texas +Steel +he +to +to +β +a +have +Bremen), +actual +of +fore +about +country, +Capt. +mortgagee +ing +is +qu +posed +hows, +in +enough. +Others +to +on!' +of +tor +blanched +the +printed +rabbit +each +smith, +cases +them—another +rurning +author +the +to +aad +from +in +said +Valentine, +Marysville, +penetrating +were +these +ianltes +father +wont +of +uga.u +just +devotion +long +legislation +therefore +g-eat +of +tinged +for +voice. +liillinm +a +thry +sagaciously +into +until +self +top- +record +the +the +ovpr.rleij +in +climate +ever +filled +for +acquitted +neck +Yokohama, +ed +fill; +mixtures +page +Ladd, +many +the +for +1707, +from +it +to +Sheriff +ground, +is +in +affected +death +school +of +paper +If +have +In +pain +section +of +his +like +tion +four +mentioned +is +the +A +were +torney +called +to +wood +a +crushed +running +capital +on +Billmyer, +an +and +charge +duly +do. +C. +than +steadily +her +complished, +.with +extromo +■"Sic. +to +identified +is +On +services +in +and +instructions +course +Ernest +l +will +northwesterly +our +knocking +a +the +from +chant +of +the +There +sale +charm +Ordered +shaft +richer +fairly +providing: +of +on +is +that +to +Fernando +her +of +the +caused +tho +Mr. +Clifford +cinity, +miles +of +to +Pres­ +accomplished. +All +formed +BUgBUW +ail +caverns +picture. +j +the +un- +and +ment, +for +nluihinum +was +faith +Vandusen, +rope, +traded +of +of +Senate. +when +Bernard +nond +is +remedy +work +ash, +couch. +line +at +God. +came +on +their +of +and +Porters, +body +The +in +that +brother, +ly +ine +to +11 +fright, +(as +shining +era, +property +have +to +I +didn't +and +forbid +and +sentiment +man +Saturday,) +Unite +of +Councilman +of +done +could +with +hev, +may +of +it. +sum +exhaustion +In +oti +or +no +high +Soon +a +matter +the +a +there +and +and +ahot +the +Terri­ +be +1 +order +the +containing +St. +v«tlaab;e +for +of +a +but +caliber +many +dinners +the +in +and +Soap +and +to +and +ticket +tainly +that +started +feeble +perhaps +(143), +to +lower +coaBtwiae +billion +front +tleman; +brought +restaurants +believed +of +that +M. +interest, +r +(»i +it +gentlemen +wag +new +whs +most +3.15 +grand +from +rowed +evident +ty +away +vigilance +Landry +for +cries +an- +given +success,!# +left +Republicans +safe. +wise +wheel +*lo +which +the +enlarged: +predict +his +city +chan- +they +test +and +to +1940-1941 +they +the +both +rather +not +is, +by +tention +the +by +mean +crown +lurks +well +tlie +per +for +miners' +oHer +about.» +that +Dy +Mr. +revenues, +married +it +transportation +fi +ture +every +adaptation +W." +For +: +interest +fact, +from +layas, +tico, +deck +*tf +still, += +wrath +days +for +they +jmrlrylng +be +until +this, +their +Sunday +was +acr +Wis.; +have +had +olhow +w +Ho +night +property +other +was +that +any +some, +ing +data +thank +in +( +cculd +it +arm..Advocate. +of +attention. +a +force +Bartmancomeoutof +Clia.ttnrioOgn +one-half +peace +threw +and +or +benob, +before +cottagers +the +1 +for +is +was +sword +the +taken +affair) +of +but +like +showing +dredgers, +legislators-eleet. +the +corref- +Empire, +of +following +feathers, +His +called +both +vested +to +t.he +North +in.), +terms +in +papers +smooth +frank +four +Corps +a +the +apparent +quantities. +forgery, +on +with +Providence. +assemblage +Give +and +for +appointments +nobility +find +as +health. +the +day. +citizens +miles +to +of +asked +while +be +the +well +known; +macaroni, +The +Boards +conntry +through +been +as +are +ance +bury +An +the +be +To +much +10 +held +virtue +in +debts. +their +six +as +their +MoKess +lay·! +necessary; +other +ht +scenic +necessary +who, +of +hv +when +a'bout +aldermen +profit +a +forty +chas- +wheat +3%s. +mally +Just +the +as +at +the +these +across +regular +con- +been +exciting +us. +and +years. +and +tho +thing +catalogue +to +for +Brains +ronoeriie«! +and +the +and +nature +Senate +a +prohibits +true +slur +r +Juhilec +City. +these +The +1111 +from +ine +he +of +one-fifth' +quarter +their +applause. +get +rope, +they +expert. +look +factory +It +Goodman +to +initions; +having +day* +head +is +Western +Illegibility +the +with +has +early +State +while +another +taken +brooch +year +monary +the +allies. +Hull +Jose¬ +3S +as +the +in +discover +as +also +lows, +with +the +S., +location +Kingsbury +held +cases +tories +would +but +now +aforesaid., +administered, +leaf +of +realizes +tinued +he +each +our +to +England +its +op +Society. +of +election +women +Some +by +the +as +a +Democratic +article +id +to +this +opinion +the +the +suffered +feet, +City +occasion +factor +with +e,and +a +shnwit +Mabt +$30 +lamhester +blues, +and +thence +excellent +with +also +home, +influences +stroyed. +He +by +Montana +cattle +ftolu +by +Hudson, +as +ly +the +(89) +his +which +the +of +hundreds +J. +court +place +16 +hanked +there +and +samples +of +- +the +are +Pittsfield, +hotel +Haven. +this +using +military +indifference, +on +flowers +a +"old +Samuel +the +The +l +speedy +the +each +out. +be +and +tan +these +men +Personal +til +sul, +ed +the +arm« +such +is +the +S +may +all +pistols, +household +to +most +describ- +a +touches +IS +Onions, +ditches, +could, +terrogation +keep +sections +Kr.->:.-ii +the +A +ing +light, +we +of +Townthlp +gang +made +general +F. +and +own +tho +hold +but +at +siz) +the +are +I +and +handsomely,but +its +life. +which +Dtrla +as +renewed +conversa- +advanced +white +times +m +bird +all +the +to +the +tramps +crop +ing +High +. +sch +at +to +wife, +to +to +reil +Mr. +on +Dunning, +mistaken +coin +The +n +Feb. +and +pan +The +the +all +1S96; +the +doom. +imperfect +great +remark +a +strong +stake +base¬ +preparation. +vent +Syrup," +ment +would +Club; +a +in +to +cant +thence +sultation +defend- +laughing, +Cazat +beat +but, +present. +might +the +herself +up +last +stream +leering +miles +rue +for +their +said +any +judgment +Toledo +regulations +Year. +permit +press +The +said +perseverance +shire +e-Bdara, +out +to +This +ported +grew +business, +corner +J. +and +plenty +their +agriculture, +pretty +election +whereas, +A0 +laborers +commencement; +has +Chief +is +cows +Mr. +Oais +its +and +the +tall +inserting +grounds +finery +I +ister +the +got +soldiers +covert +pro¬ +In¬ +The +dollar», +hand +property, +pine +ob- +him +not +before +tho +woman +their +certainly +to +person +happiness, +over +line +(727L +Senator +walks +failures +maddening +record +that +the +thereby +I +abandoned +to +men +his +about +but +dinary +a +one +on +Jac +those +Senator +standards +a +or +might +arc +9. +sworn +they +railroads. +ted +; +are +ictim +are +name +did +in +of +Sud- +that +Home, +give +then +in +plaut +; +their +of +money. +a +not +and +A. +in +to +the +in +ngnlnst +had +made +90 +ell +have +days +to +to +and +74 +wire +change; +many +members +One +|>etticoats +XS +U +And +comparatively +long +So +and +the +uary +The +present +The +It +of +Court, +when +everything +Only +te +schools, +pointed +interior +paid +is +A +poration, +to +page. +the +age. +a +without +French +well +maids +commencing +a +the +tion +of +taust +correspondingly +say +cessf +twenty +said +that +ahori^inal +of +years +01 +nited +talk +and +this +it +inches +creditors +prevent +Sullivan, +ap- +they +being +genius +liijuor. +eligibility +the +victims +1876 +Margaret +of +down +and +events +equal +be +per +paper +some +still +time +(nV4), +lio +inquiry +family. +resigning +only +do +whose +found +terrible +wealthy +booths +The +76 +c +Back +ious +as +in +this. +ry +had +hereby +pride +the +The +the +burned. +to +was +phosphate +used +calculation. +2 +rob +things +Mo.; +surprising +will +a +and +tered +States +the +~ +the +short +liberty +elected. +said +unless +fin' +practice +well +than +is +Cannon)MII +was +brain +and +from +by +wounded +one +The +the +in +Mr. +of +places +aud +feint +your +site +be +led +ed +what +the +at +exquisite +to +was +owh +other +present +Mr. +it +laboring +deceased, +take +them +-times +poor +the +place +but +staggered +credita- +Placing +the +my +an +eliminates +lonely +mayi +route +expense. +luii'neand +condition +aside +the +apparently +will +to +the +hungry, +but +part +times +ifest. +ce +form< +men +dicated +every +path, +S7; +end +A. +Cleveland, +retire +loaded +against +"I +wilb, +useless +the +to +letters +the +It +days +he +“I +purpose +of +the +Burns, +fo +k +their +me +of +ation, +iuh»\ +American +the +two +and +nails; +far +breed +treated +great +of +it +is +auuierbusthan +would +de­ +gave +unchanged. +and +our +elaborate +Mr. +the +adequate +It +an +out +Elia +ible. +necessary +collecting +on +un- +tions. +he +by +Manassas +3r +up +State +Hatt'e +wee +conditions +hostility +brown +STATEMENT. +the +request +have +suggested +soldiers +of +year +higher +a +turned +granddaughter, +public +they +oil. +Hawailan +Orange; +graceful +While +Miann +The +Williams, +The +this +to +the +very +brood +Of +it +white +hang +His +rebellion. +issory +Boulder +and +pacification, +falsa +which +throwing +Pills +to +per +death. +at +the +out +ig +the +ground +middle +They +and +is +out­ +an +the +stock. +It +which +truit* +King +every +the +striking +states. +ult. +Bro. +degrees. +the +here, +north. +fences +No +the +to +the +Purdey, +and +may +Scranton +vernment +the +against +loophole +the +the +design +Little +a +for +in +ting +of +- +of +course, +man +Soap +titled +tbe +outside, +of +uttered +so +tbe +musketry, +elected +No +leach. +are +out +entry +County, +into +Unless +and +do +that +that +unique +of +the +delegates +with +organisms +but +down +the +eels, +ae +woman +Rowlesburg; +a +rose, +37 +of +Martin, +by +a +afterward +to +let. +is +Divine +wheu +foot +the +qurttion +nec- +been +a +to +home. +establishment, +H., +may +not +first +scale +Virginia +val +lot +same +Charles +ing +of +agents +Rutherford +culture +simple +blankets +Oats +the +after +to +Populist +alike +were +mainly +other +to +of +troops +a +and +top +With +Thus +will +79 +is +our +can +requiring +If +Every +the +and +Smith +there +writer +easily +Tariff +salary, +and, +must +extend +the +nvnilable +home," +approved +longer +the +miles +41-100) +Association, +ami +good +derive +which +arrangements +by +station +instead +extent +long +has +in +is, +pleated +be +gen- +which +but +3 +respects +debate. +In +their +bouts +advance, +11 +is +floors, +be +the +the +the +these +by +few +yellow +fresh, +t^^| +covering +of +Under +the +of +tained +ple +given +south +at +learned +in +so +the +north +with +to +ment +so +no +any +the +Hitchcock, +tremu'o +degrad- +preserved +excerpts. +bull- +hymns +the +ol +fingered +found +in +bons +mile +retruned +oa +and +My +ami +States. +the +By +of +the +most +have +who, +said +a +sixteenth +Prich- +I +alter +abode, +chair +is +of +declare +be +Building, +their +there +burned. +velopment +Deeds +nearest +Kentucky +the +It +ever +morning +drama, +and +as- +had +instead +of +Mr +and +period +or +" +reverse +be +back +This +of +been +in +the +the +American, +trouncing +a +the +<.r +1901 +picnic +Catholic +known +brother +Colonel +the +muee +I +everyone +at +Herb, +the +enormous +priests, +hereinabove +Stato +piece +leans, +ca^es +W +the +ago +assured +tubes +send +a +harvest +Gurley, +place. +for +resLb +& +as +American +joy +county, +plats +described +went +for +forth +and +to +system, +newspapers. +lation +idea +him; +mas +instantly. +he +ampió +a +Kansas +3 +and +a +that +and +posed +that +nature, +Exposition. +success, +it +live +had +ol +w'uild +gas +of +in +of +disregarded +may +only +in +attention +out +no +case +not +what +tou +Ark +fall +smile +charged +condition +McDougall +that +boats, +water +and +business +tenders +to +Warren +recent +on +and +that +in +the +would +thence +discuss +be +Mattoon +person. +ignorance +me +further +This +taken +Watterson +1 +on +twelve. +one +Section +Rost, +gentleman +tude +my +shock +spring, +but +of +made +Ml; +Col. +M.. +To +holds +churches +improved +to +by +five +in +$1.15 +n +of +indirect +Coffee—Kio +aald +feature +county. +Mr. +that +shaped +have +by +the +report +Neely +of +in +Canada +dance +and +west +sense +northerly +built +,vhich +in +thereof +a +per +viously +ship,Sully +6chool +of +eight +cvcron +pan +grand +elective +;,w».i +Grand +each +asso +complainta +the +these +prrnioCourt. +shift, +days +the +a +hottest +was +which +one-half +ready +to +views +and +tin··; +pkg +the +his +the +unalloyed +the +applies +its +will +Theresa +and +tion +robbers +totir: +vanished +cnKe +maintains +as +l,nn!s +years +as +that +The +tbo +Collections +re- +as +that +there +by +get +whatso- +the +in +exertlse, +should +Kaiser +may +and +judgment +canvass +500 +flees. +exercise +real +tiger, +Olarxvide, +MM +it +fair +person +houses +such +mitted +vices, +found +which, +geMlon +Idaho; +dingy- +coal +luld +into +Tho +the +adopt +of +Commander +boose +and +Europeans. +tions +Notary +biggest +girl +high +the +chemi- +Benator +in +ground +which +of +only +Russians +South +Book +ties +fiefiti«Mi!« +these +These +include +7th +brick +creditors +causes +which +street +accurately +of +locksmith +looked +so +turned +There +yourduty +thunder +sentatives +Clearwater +artion +the +though +compared +of +are +h +our +that +his +ir. +smiling +badly. +- +Geneials +payments +repelled +will +vigorous +thousand +oitr +surance +if +Donnelly, +the +tho +legislature, +is +disease +is +town +stuff +to +approves +Tying +recorded, +a +compel +think +to +that +that +by +quantity +cabinet +line +Ob' +chain +hour +The +to +c +gaged +is +oak +whatever +whether +the +box +represent +the +the +sion +the +usetl +100 +elementary +At +be +creasing +published +of +port +tips +originals +their +told +gone +Terms +had +is +money +part +thu +And +Federal +circu¬ +to +We +symptoms. +help +he +ho +are +of +a +March +said +exclusive +in +unconwiov, +I +for +where +upon +French.are +twenty +present +we +refused +wero, +fancy +fearful +or +as +costumes, +tho +No. +they +number +a +bo +that +I +mtermiuablo +fore. +Jor- +Aoetsn +range +braced +becomes +iculty +if +eight +desire +ot +Gallusha, +$3,000,000; +iams. +Constitutional +National +doubt +the +ary +rain, +tug, +that +they +are +afternoon +sound +This +of +obtain +same +of +December, +they +said +York; +selling +will +insects +the +their +the +spark +nlneteon +taxation? +pas3ed +ment +last, +Some +will +will +pro- +ground. +d +bush; +in +of +in +into +cooking +the +character, +us +may, +Kimball, +6 +horribly +tot +The +aita +If +those +gave +express +through +That +muzzle +tariffs, +liquor +by +eased +foul +consists +old +to +limit +Is +nothing +selection +then +to +and +which +American +Little +everynote. +shops +that +furrow +the +in +to +bedeck +land +it +the +One +marry +water +ted +seemed +of +eeucetveo +is +Carolina +building +as +appoint +to +been +revolution, +B +more. +try +Mrs. +Gilbert +uialri +from +They +and +open +St. +the +each +and +phone +lumber +that +with +and +upon +way +the +the +hundred +square +fired +nearly +the +will, +is +the +suc­ +He +attention +aged +cupations +having +de.o, +Democratic +The +country +Sale +hour, +Auditor +that +long +depot, +that, +nor +Bureau +down +reasons +whenever +aro +good +The +baa +Sontb, +to +water +and +fined +of +Hall, +sailors +he +Paciic +transporta- +all +clothes +that +In +soon +shock. +the +built +General +the +generally +the +certain +fallen +military +39.50 +find +glory, +the +32. +6?@70 +measles +of +Imperial +The +politicians +but +bargains +corporations +n +something +in +\ +Herman +! +Dr. +He +the +eome +ought +were +of +properly +private +lords +Hogan, +J. +mailed +guilty +of +Is +favored +who +Robinson. +per +I +society +tl +lignificant +by +be +indispensable +in +my +at +known +3:30 +uunnon +triangular +nor +back +be +Mill +old, +local +for +steps +by +plan, +the +also +being +for +Highland +of +the +ing +interests +Graham. +particu- +was +confidence +or +the +fresh +votes, +on +re- +was +Boston, +of +on +tho +party +the +tbe +Clum, +land. +as +trade +same +a +you +what +nnd +chemist +Thus +with +when +will +in +any +works, +limits +upon +immediate +. +the +since +into +him +and +and +the +died +of +a +beside +made +side. +and +On +of +That, +as +Bowie +good +tobacco +who +Loomis +Cut +crosswise +one +studious +of +be +equal +expense +national +time +Star +shall +tK +four +the +not +more +To +to +that +not +diseases, +you, +r_»r +the +the +two +libellant +now +He +to +No. +willthrive +little +the +them +said, +their +all +sum +and +In +Schenck's +the +must +He +own +gills. +came +their +policy +M. +bureaus +better +in +A +acres +few +The +American +singular +coun- +different +men +the +and, +swamp +has +treated +the +to +all +of +treatment +the +in +the +substance +nection +clover +assist- +fire +initiative +It +a +strong +Is +mo. +the +while +crashed +to +im- +tnpany. +levity, +street +undertake +are +flood +Grenon, +ceut +a +patches +Memorial +a +looks +grain, +been +ler +ltlack +act +licanism +to +States +mentioned +willbe +and +as +Bullock, +did?'' +mountains +a +session +sco +. +sour +yoars +The +\u25a0he +duty +added +its +at +its +hot +the +in +them +pressure +the +the +thence +were +otwoae +Paul +—The +of +value, +lion. +April +the +some +they +and +of +ot +Connecticut +free +India +and +in +thority +in +histor'ool +see +gesture, +lite +but +of +<4« +kept +that +reason +attack +same +biting +be +day +each +for +from +the +; +that +for +off +penalty +Receipts—13,000 +Some +ry +assumption +twenty-three +the +after +Initinls +"The +that +j;race +.sage +aturnino +note +being +heard +room +recalls +paper +work +Lon- +Get +Moore, +makers +their +exaggerated +no +on +of +men, +interesting +the +in +from +and +the +to +it» +designate +—Charles +nine +and +his +every +any +inches +at +ed +the +Of +of +tho +audit +In +whole +a +and +a +a +found +Johnson +W. +new +single, +said +11me +a +sub- +done +business +that +jall +the +might +some +they +these +years, +the +has +a +whole, +and +the +readers +eastern +city +deeds +on +which +Inconseiiner.ee +you +are +war +Grande, +Youth's +means +re +cord +Williams, +If +to +engagements +A' +the +a +one +bond, +Members +a +as +it +th +from +grether +concord +more +child +this +her, +the +tbat +on +hours. +her +doctrine +the +proper +conclusion +erendum' +of +all +part +unarming +New +here +and +street; +wonder +He +peasants +be- +Tenuesaee. +of +of +States +was +for +Murder. +of +the +regard +there +within +ide +in +Repub +,000 +violent +with +entered +They +(I; +far +derstand +cere +a +I'd +notice +loaded +we +trouble +Indians, +the +was +which +as +butchering, +Harold +the +as +home, +electric +sold +composed +of +wheat +| +as +has +trolley +Those +and +daily, +was: +James +hay +of +prevented +mo- +Half +had +free +Volcano +further +its +be +Lewis. +to +marine, +these +the +nal. +to +a +flower +predecessor, +time +meeting. +The +to +every +his +The +their +in +the +been +the +was +In +is +to +in +by +to +couple +made +when +dissipations +fertilization +that +for +earnest, +and +sums +square +islative +aside +1906 +mus- +ch +a +cf +is +unsettled. +Sloane +with +State, +?ranlto +or +contrast, +put +2, +including +Company, +be +his +things +look +the +containing +fire +from +ten +thenco +connection, +am +visitors +and +acres +nt, +said +of +The +and +has +not +Satur¬ +1.. +were +to +> +as +itor +of +of +into +AND +Thomae +leaving +Tired +but +so +The +38. +wide, +works +. +abled +instituted +\u25a0ale +but +never +see +of +Mr. +railroad +dense +when +offer +by +Judge +by +your +of +organization +we +be +will +ngninst +been +and +organization +a +secret +and +Hudson +ac- +distinctly +to +April +of +him +committees, +Renaud, +first +to +; +thence +death +On +supply +bring +my +my +to +at +books +not +a +well +or +into +making +he +resources, +he +talent +account +doubt +ed +Frazer +cave +of +ave., +mountains +Secretary +pota- +most +shochat, +thrown +payment +They +her +monii; +nt +from +men, +of +that +suite. +over +course +note +companions +Assist¬ +•lock +by +1-5,825 +employes +farmers' +forth. +elder +and +even +calla +point +may +lion, +the +the +the +was +the +180T"0~8T. +Pittshnnr +certain +and +the +Yankee +eighteenth +Ie»i«-ct. +principles^! +four-mile +age, +of +that +political +causes, +The +gourd +Hark +overthrown. +has +deficient, +trip +mother +be +unustal +build +dividends +South +friend." +Since +at +bear +than +ot +and +room, +from +the +crew +celes- +anchors +compel +and +AT.KIAT +large +- +know +Sprague, +was +up, +property, +made +them. +furnished +disaster. +color +gave +at +months +loss +an +his +is +and +dlacovery +Man­ +the +that +next +of +of +Bussell +cus- +Furniture +portion +They +actments +foremost, +to +ong. +No. +and +com- +in +furloughs. +of +i +house +for +the +a +dismounted +Mackerel; +manner. +thence +the +little +The +In +ARTICLIE +rifts +thirteen +line +in­ +aud +than +of +in +Minneapolis +tne +C. +citizens +family +a +Such +Cos, +I +did +of +with +ler +he +bark +their +for +Kiser's +on +was +Augus- +and +or +sonic +of +belles, +Chicago +in +four +to +years +charge +con- +toget +10 +would +every +parties +ities +they +on +In +entirely +soon +connection +farm, +that +at +£L +and +merchandise. +or +svory +boards +nis +tlie +01 +negligence +in +lock +two +of +con­ +of +talk +P. +the +Dave +26 +over +behind +heartily +VII +and +ail +milk. +the +right +of +learned +was +the +are +was +go +had +home, +it +Society, +panelled +now +446, +the +couple. +of +was +the +the +was +r +Rear +Sac; +Henry +aa +his +thought +ther +this +while +Ki-publio +wounded +prerequisite +dawn- +shels +dtliejia +board +of +into +Samuel +of +wafer +eastern +the +God +the +fleik. +re- +ter, +side, +or +It +every +Indignation +had +John +value +means +"will +to +DWELLING +north +when +their +of +657, +the +whatover +acted +is +lariats. +Earsnparilla +incorporated +closed +county +of +sails +arrest, +of +Svtud +Populists +making +might +train +waited +division +found +the +rushing +sire +wc +was +be +1 +a +bloody +Williams +to +it +the +fully +be +Dillingham +ment +securing +indicative +out +Colfax +the +winter +/Minnesota +into +in +aid +the +SUCH +from +Is +and +drinking +collected +based +Mrs. +ryn +The +could +by +other +fuss +namefrom +due, +a +Mrs. +beef, +she +tell +la +p3y. +say +! +with +another +township +county +among +on +Christian +the +compauios +be +steamboat's +bushels +ac- +and +Every +candidate +per +clever +from +volunteers +will +Dor- +Ex) +good +a +place +community +antbority +yet'to +aud +a +Second—South +got +we +Neither +diligence. +were +why +never +as +that +spirits, +10, +Cakeland +list +force +tract +and +mentioned +leaves +d*ath. +their +front +which +the +it +those +is +points +intervals. +tives +of +ter +of +ment. +Ban +tha +regime, +harmony +the +forechniuro +we +whelks.an +vis +A. +he +McClelland +would +a +thu +ship +moisture. +Sec. +in +minutes +the +went +with +delegates +and +tho +is +it +der +p'otHrty +a +have +a +roads, +0>di:.ary +without +editors, +the +who +in +on +ufter +Hazlip +them +mouten't. +orderis +It +for +<>i +royal +was, +and +ensues +saddled +real +of +honor +make +fall +main +bricks. +the +taken +Dewey +to, +very +and +here +that +of +stock +of +necessity, +and +that +following +Moses +said +around +act +belotry +over +task +an +and +;you +America, +H. +it +the +the +of +of +tho +tions +The +wishing +tiials +ner +De- +meeting +oan +line. +that +of +largest +first +grooved +rigid, +known, +is +of +the +lic +bedroom +low +same +for +poetry +formidable +in +they +and +bark +been +allow, +troops +water, +of +the +my +include +passes +third, +the +battlements +been +is +and +transcribe +said +General +said +"Oh, +Amber +Now, +mines. +proved +his +died +crew +didn't +Township +blind +now +it +was +of +of +appendicitis. +The +provided +city +a +who +royal +no +done +all +berianil +program +who +appropriated +after +ists +of +A +be +note +judg +;uccess +ders +and +and +men +of +Mrs. +of +But +Grant +toes +certain +repast +47 +ulope +day +stomach, +they +will +Georgetown, +has +sedative. +She +pending +graves +in +be +A +day. +needed +out +forward +a +as +F. +nade +27,996 +Nellie +old +show. +icient +himself +signal. +adopted +num +church. +an +information, +t +1815 +of +this +Af- +is +a +to +his +plused +by +strike. +have +line, +but +cy +ol +term +Troop +view +and +admitted +ing +made +tion +surest, +biennial +lice +of +or +efforts +its +round +light +to +their +tbo +jam +if +not +township. +the +the +fifteenth +experi- +Harmon +infested +the +away. +shortly +remarked +now +the +avmptoma: +should +ItV-BB +duty +In +required +of +the +in +felt +August +tue +will +in +ucloro +J. +can +morning +Mr. +he +after +C. +with +for +man- +of +in +property +ono +through +if +"Is +City +land +the +was +draped +in +it +num- +with +In +that +extreme +converted +bury +shape +sacred +and +most +was +to +buried +being +fueling, +appeared, +horrible +conditions +there +leap-year +without +rangements +uncomfortably +stringers +at +Orson +of +AV. +ie +seemed +of +agency +bus- +and +of +camp +feelings, +she +several +success +of +described +subjected +that +than +careful +health +that +and +I). +tell +the +brother +horse, +watered. +tbat +C +speaking +those +compa- +while +by +so +Lincoln, +aetti* +from +In +their +of +Sec. +been +American +had +petitioning +the +their +anil +we +ported +as +said +oil +to +in +tho +this +of +they +an +the +lost. +Sherwood +F; +South +a +the +statutory +22 +who +to +equip¬ +nor +condition, +perform +doing. +and +our +lady's.rief +was +who +Southern +congress, +back +as +kept +place +by +the +the +on +ansi +the +of +known +an +having +"In +in +room +usually +it +present +immediate +the +New +claim +president, +period +for +Such +“But, +that +Democratic +conventions +ing +that +chariot. +Siberia +the +the +corporations +however, +will +making +is +an +in +matter +revolvers +of +match +taxpayers +had +the +stores. +of +the +and +For +not; +so +was +and +minimum +presence +the +Court +discharged +the +at +can +appeal +a +told +Pittstield +abandoned +ing +roof +Woo +challenge +whether +odolite +article, +railroad +the +this +is +the +the +art +man +the +ing +and +the +the +Iteen +encircled +for +ap- +born +alone +from +the +numerical +goal +the +of +foot +plebeian +times +pleases +of +coustructrd +the +its +F. +there +parlia- +line, +hasty +Lake +W. +far +Feather, +driven +then +the +tection +they +Interest +hosital +go +sometimes +points +will +north +to +of +new +como +to +the +who +when +classification, +the +and +atmospheric +Selbo +vole, +period +United +turned +in +motives. +t +irrigation +There +There +inspection +arsenal +office +amends +him +order. +hang +purchased +in +Membership, +spending +mat-to- +undergrowth +Is +and +out +all +envious +dent +had +examination, +dress +tournament +her +obtain +lengths +she +recently +until +Minnesota, +more +fetale +the +'home +Milk +real +Europo +Ed +moving. +hM +Baltimore +to +and +hardly +the +most +the +will +together +rubbish +tne +was +hoped +for +spent +learn. +perhaps +boy. +animal +familiar. +and +at +gently +should +and +-cl +J +until +the +there +Judge +his +was +to +down +In +that +Aram +to +Lincoln +it; +53 +founded +clod +response +at +situation +farmer +and +on +Jt +athy +make +still +ruins +there. +The +and +is +iu +yesterday +planned, +gain +iniquities +ain +lecture +only +jr +about +advance +congregation. +legislation. +The +W +in +this +Anthony +Machines +first +paa- +Kelly +been +been +whether +'exchange +have +hogs +forty +noticed +of +political +the +that +to +sufficiently +from +Had +Georgia +one- +Maugum, +as +candidate, +breakfast +his +dying +seven +same +could +business +the +Manila +by +Banks, +to +his +*aid +anniver +keep +stated +school +as +as +of +old +becoming +will +-m.i +water. +and +Spencer's +The +President +transportation +New-York +Rcra'iL +tract +Yokohama +and +th»i +condition, +have +domiciles +35, +heard +said +Hiii +conceptions +ho'.d +signatures +law. +ake +horse +Price, +minute +low +iu +on +the +nobody +expressions +of +a +reported +It +whole +for +tiit-nt +not +First +reliable +who +ob­ +sti +to +and +coal +been +passed. +Eight +had +result +grow +.value +to +ity +crushing +the +lies +Dunn. +31 +with +former +preparatory +of +the +he +disembarked, +continuously +as +on +as +at +cost +drink +the +less +the +power +it +shawls, +researches +Mexican +from +second +road +the +Cheer +with +State +self +per +the +tate +Agricultural +charge +cheese, +dur­ +1 +free +the +of +met +her +was +eight +speak +by +southern +inclusive, +beside +of +declares +house +of +at +went +The +Hudson +best +at +large +nore +thence +Monday +allowed +the +reaching +her +with +out +Her +the +miles +example +of +inst., +tho +aa +is +being +by +trip +barfey +responsibility +all +person +be +of +parcel +to +of +chapter +Chastain, +portance +every-day. +tions +year. +officers. +therefore, +the +of +in +none +Sunday +for +he +discharge +not +cessation +Territories +to +Snllivan +and +from +damp +submit +in +lurching +:u‘t- +too +G +hundred +or +Monterey. +self +the* +is +Ordway. +considerable +this +no +Russian +white, +gentlemen +Nash. +enjoy +electric +but +had +then, +panies +campaign +today +Elevenlh'St, +daurhter +The +the +lis +It +this +considering +father +to +eleven +Lcct +the +of +it +that +lore^?. +und +40Jc. +writers +13, +ready +Julian +at +the +At +w +1851, +powers +studious +A. +as +the +disappointed." +to +their +ballots +sixteen +dangorous. +fire +Is +cases +E. +and +westerly +was +county +There +church +pullsade. +affidavit +of +by +to +Golden +chureh +week +exhibit +Ave. +The +it +in +own +the +at +only +sup. +tar +was +A. +war. +tho +At +to +but +on +Improve +cy +North +tne +the +President +thin +here; +bands +the +Northern +the +other +dently +the +The +their +ideathat +from +may +l'residcnts +"John +than +and +In +him +of +doubts +as +«d +appear +The +in +tary +is +operators +3 +l)AY. +the +tracts +peculiarly +replenishing +more +a +great +ladies +men's +purchase, +all +now +taining +been +and +Synods +Rich- +re- +cited, +the +in +that +an +The +views +where +know +tho +promised +ing +ly, +enenmv's +from +ARE +!ot +Sixth—We +"Well, +Toilet +Hands +lies +access, +very +nnd +yonr +aeabove, +are +tbe +look +be +w +in +rtiuniiuiil- +People +defendant, +leading +Proof. +you +of +it +the +wlllov, +against +to +has +reached +gradually, +intended. +such +are +the +who +But +H +work +these, +fieree +the +His- +barred +number +very +Moyer +fields +posea +infantry +door +Annual +the +to +that +auniitteu +Sunday +climax +paraging +not +the +this +District +letter, +smolder- +the +ablo +complaining +a +a +strsw +of +between +record +ho +of +gloom. +Potts' +spoiled. +and +keep +Second—Also +to +«lov-ntBr-'eeui +the +deep +in +sideration +in +to +the +of +of +tainville +the +for +cent +charge +assume +department +players +lmril +noticeable +amsssAtination +the +such +oraceldeus +the +of +di&iiugui-bed +central +of +C +,of +emotion. +perform +good +witness, +service +cilities +willing +de- +said +and +states +by +telegram +were +to +found +Upon +Bulwer +What +d’Alene +he +talked +else +offices +proportion +for +his +of +and +Highway +circumstances +more +i* +morning, +to +ago. +has +sides +the +says +the +was +Court +anil +publio +residents +proceeds +"ratio +Methodist +he +authorized +March +pression +he +to +soon +in +early +accompany +aired +temporary +of +is. +in +ft.; +H. +I +ti'm'ii« +the +0 +gentlemen, +Cincinnati +have +he +nest +pro- +to +several +; +the +Sheep +trust +sections +a +mentioned +Laurel +at +and +letter +of +talking +Arabia, +by +'ho +side +Adams +to +er +that +and +woi +new +. +men +officer +the +facturers +the +exceptional +the +Keve? +to +than +The +adoption +off +Missouri +evening +I +pins, +Postmaster +tho +in +high +invite +., +is +the +very +time +men +months' +y +cared +does, +doWhite +Maryland +past +learned +Landing +thorized +every +ment. +fast +Tagalog +is +soldier's +to +to +her, +Eudurauce +He +by +the +The +structed +whenh +They +should +the +direct +have +both +we +time, +informed +N. +In +at. +presented +of +one' +stages +these +for +of +the +asked. +fight +rest +the +doubled +claimed +Francis +the +of +8. +spilng +If +had +or +6278-2095 +sub +lease +of +the +through +top +the +of +others, +title, +fur +relates +an +blue +a +caused +You +act +35, +of +on +but +reUv +and +for +mucb +conclusion +a +on +heart. +in +still +capable +the +It +IThs +j +is +made +in +building +return +successor.in +way; +stone +sympathy +corps, +that +the +on +from +Imd +fact, +was +and +ot +in +ion +Confederate +be +Saturday +himself +boy. +that +he +of +under +j +Child, +well +in +ref +allowed +that +of +iiuuor +1st +hold +David, +(20) +well +No, +While +37,901 +itbeen +ot +itions +zens +of +few +five +and +had +the +health +they +to +phone +purpese +to +receipt +enough +B +"I +from?' +appearance. +the +Gompers +faithful +Manassas +very +"We +1 +that +the +coughing +this +?- +daalrou.t +milk +ray +from +works. +to +One +curiosity +prominent +saw +borders. +and +to +whom +hy +annual +for +no +throat +part +There +habit +consideration, +the +by +running +these +pink +it +putio.i- +admit +to +ha.id* +the +harrowing +been +made +good +something +executioners +Chartres +The +the +E. +art +out, +In +general +piled +native +Colonel +to +followers, +of +best +justice +republic +certainly +men +by +friends +for +confidence +good +this +Virginia. +W. +most +nant +boat +but +the +ground +what +"Dad" +in +wlthout +high +shall +by +San +and +to +your +his +surveyor. +of +sure +All +in +the +andex- +following +willbe +idea +venient, +the +the +a +the +at +oy +States, +unknown +just +Is +of +Mrs. +by +cen- +will +than +ers +to +money +Calvlnlsts, +they +Francisco +In +earnest +1 +his +or +oeased +have +astronomers +as +may +no +the +ation. +sanctions, +to +it's +haa +which +proficient +gent +of +fetkl +for +Jortty +he +only +suffering +. +sitting +your +rial +the +went +white, +similar +np +ton +by +all +from +a +contingent +was +consumed. +ican +and +good +great +eyed +and +excitement +great +is +this +no +authority +an +car +ings +deep +the +Japanese +the +wheie +citing, +nrnblem-» +erected +who +c +her +toilers +2d; +of +of +lu +a +institution +about +of +is +which +is +all +1. +ishing +not +mouth. +his +Lucas. +of +the +and +.Hui +own +nf +the +eai?o +Md.; +names +gage +Mason +re¬ +The +I +1,090* +Now +a +Just +its +north +stars +ued +determined +with +loss +similar +It +daily +are +recorded +we +heard +filed +separation +former +uendrysburg, +mean +vinegar, +say, +house. +when +the +is +Y. +a +Tbe +only +check, +lace. +the +Thomas +a +Martha, +felt +ollag +railroad +to +cotton +thtm. +It +I +therefore, +that +and +to +you +contemplate +as +value +ground, +not +honor +expect +called +sometimes +quel +Park +alley +. +suggested +have +He +guilty +therefore, +Every +av'Hinst +the +and +the +A +shower, +one +drowning +W. +tary +the +aprons. +is +religion, +having +the +closet, +railroad +rolls +that +introduced +Court-house +result +the +never +to +tives +that +throne—and +admire. +sale +trained +recent +with +and +busi +agency. +stock +forty-lifth +covered +automobile, +they +Antloch, +with +con- +'he +75c«$l +shown +Louisville, +the +)n +fast +the +he +such +more +party +as +Bryan +to +was +is +line +gold +train +determined +there +hatred +purchase +you +the +tho +by +situate +me +alarm +Jno +boy. +claims. +the +Indians +been +while +miners +riam +appro­ +were +the +are +ing +put- +say. +husan +the +adhqro +epartment +10c +connection +does +(2) +where +ing +inned +of +completely +your +right +the +Now +one +in +we +anv +of +Phila. +lluns +who +requested +The +the +the +about +square +you +evening +uoislessly +of +room +ex¬ +enhanced +Cassin +workodnt +not +Union +which +position +guests, +the +Order +in +tinaliy +Hamer, +its +matters +po +of +and +Also +putes +from +B-l +permanent +productive +94 +three +freely. +Governor, +to +dent +shop +bis +acree +must +.'h-. +powerful +mand +deputy, +is +Cleveland; +series +as +a +to +to +outsiders +are +nro +this +leaders +Is +I +trees +the +a +au- +boy +with +great +increase +Gess- +ot +being +one +said +of +to +William +able +Tarda +City +oOO +multitude +have +of +revoke +and +lie +state, +ana +around +tho +said +but +own +n +friends +excited +Whan +a +hotel +the +Harrison +of +dog +such +lb- +was +ning +was +force, +as +hopeful +agriculturist +Barnes, +be +when +whose +two +people, +my +that +publican +producing +large +ii;e-blood +on +normally. +and +hear +the +«'«'ual +belated, +may +ajeopper +distributors +Taft, +It +to +2510 +at +director +the +quickly +all +immense +gets +bloodhounds +in +claim +at +possible +at +y +cent, +of +lepressing, +Denisou +the +these +premises +easel +try +1839. +good +stocks. +feet +my +16. +and +We +com­ +Hrparted +meeting, +who +big +Flanigen, +chasing, +foundations, +most +Betsey, +has +the +places, +May +eccentricities +recover +the +maii~ +neonle. +of +the +that +the +hauling +Bretz, +oriirin +in +this +and +Young +it +tba +unions, +trade, +buying +little +his +possibility +a +I +bonds, +losing +defendant +la- +one- +be +most +and +of +is +bo +soldiers +beforo +that +on +Ohio +hereditary +any +other +unteera +abroad +the +Saga- +render +by +waa +prominent +in +a +pulpit +unsightly +¦mau* +hed +beat +bruru« +it +tue +they +in +endeavoring +Abraham +was +teams +southeast, +gospel +territorial +daily +thought +ly +C. +a +level. +Lucille +front +who +improper +of +of +when +of +glory, +tore +Unknown +for +not +party, +time, +San +would +are. +however, +the +in +tify +on +the +organ +and +a +our +tax +work +or +know +torn +and +the +and +ttt +door—- +they +Miss +the +devices, +the +law +in +my +girl. +supporters +procession +to +are +payer +The +determined +harmonj +every +remarkably +given, +goal +the +reliable, +from +complete +if +few +a +lieu¬ +they +the +business. +of +the +at +needs +her +at +captured +changed +is +door +your +the +ige +Shasta, +Mrs. +share +to +For +· +for +of +than +indignation +language, +it, +acres. +or +brought +winter +overhead +Oak +• +immediate +draft +Airy," +any +I:iin +Ood +3 +have +For +well +shells +of +B +ot +with +Won’t +headlong +the +this +sentation +of +common +the +field +does +at +in +skin. +it +that +ing +" +upon, +having +water +tion +OWn +to +New +contagious +But +only +Mi«r +the +turned +for +th +selfishness +J. +by +of +School +did +above +uton, +the +State +and +every +days +the +quired +us +to +raises +and +same +of +niece +loudly, +be- +the +removal +edifice +while +open +Edgar +of +will +Now +meet. +that +of +warned +which +from +th* +of +of +said +sides +were +gives +Roulangists +ccept +stock +out +course +it +-'In" +Therefore, +The +eel +to +foot +is +the +of +which +No. +rcsorrntions, +my +as +receiving +consciousn.ss +to +or +that +to +lots +property +England, +Davis. +theil +is +may +stage +office +trusts +the +themt +vinegar. +59 +dollar +the +somehow +been +rocks +the +says +artll +great- +keep +ttodlaaMer +Examining +few +is +to +nut +their +difficult +up. +merchandise, +street +says, +the +the +than +sheep +Duke +the +and +and +Keniatorit +a +bill +bave +will +feet +lime. +sum +Every +first +w +So +Around +use +Trovatore" +referred +pic- +to +street +act +have +Lots +iy +Springer, +early +in +of +off +mar¬ +it +rates. +evidently +the +the +The. +to +Stools +Tlie +of +erty +very +true +thief. +in +on +eliminate +with +who +M +an +not +right +women +by +as +resources +tdsnd +sociable +their +The +agains +tlian +come +Reconstruction +s +deeper. +act +I +Second +made +and +Yet +a +teachers +Bloc +inhabiting +beings +property +the +noble +«flgurn +day* +the +Mr. +RepvJtMean. +church: +was +be +geographies, +a +William +these +tor +There +stantial +an +over +Black +woman +Johnny +that +moko +The +pend­ +City +white +of +by +An +coming +this +of +drag +showed +and +a +consider +animal's. +thought +"top +in +vas +let +from +July +bold +of +the +quality +3d +system +less +2 +confessed +held +the +from +it! +enactment +sent. +jr., +the +due +and +this +one +June +WttdUay +election +a +wool +sense +his +to +all +cate +more +Patrick +thing +hours; +their +Foraker +generous +paper +cups. +being +firearms +out +be +not +to +opened +forgiveness +her +no +It +work +conflict +of +family +the +Carniohael +3,000 +a +nud +to +originated +men +aa +W. +of +they +seconds +consider +cot +American +25 +tional +society +of +or +Tax +lots +the +regards +handsome +lb. +$5 +south. +share +picnic +of +and +they +the +la +times. +ami +camp +small +States +shown +inspector, +accomplished, +their +of-the +would +Jew +a +bring +harshness, +amount +the +Tho +At +with +tels +his +solved +during +thinking +then +dp- +of +or +tlfem +the +steps +The +barrels +What +good +the +character +viour +from +resting +and +he +nnd +In +are +and +and +of +districts +of +white +They +mite. +that +Ju +Gene-ral- +factor +wins- +their +is +a +Houck. +to +more +have +violate +ent, +boys, +Hen- +conscience +age. +and +to +Caesar +upon +the +I +West, +in +Lake +honest +July +they +Baker. +the +to +Interest +stream. +for +no +man +tending +so +entire +so +report +would +of +in +thereunto +& +to +of +at +rolled +Dayton. +the +much +and +notes +main +one +belonging, +holding +abandon +a +lead +6y +aid +and +conduct +this +iounu +executed +absent +Mre. +given +by +theee +remedy +ing +ers, +be +father's +He +and +Twitchell +ns +both +Burdette. +hail +approval +• +company, +paroxysms +No. +an +of +braiu +bright +fining +fore +verify +State +said +of +a +or +it +the +those +and +urging +and, +wai +is +the +and +In +r.bs, +On +crowded, +them +say +she +discovered, +general +when +The +route +prop- +ever +yet +it. +in +this +of +violation +would +great +fee +banner +Mr +eyes +for +lifetime, +railroad +is +three +the +if +Search +in +to +to +leave +to +clear +the +and, +is +self, +thr +the +tion +happiest +who +before +sion +had +— +nature +day +be +in +by +hope +process +by +who +wonderful +to +ever +are +which +The +thus, +when +am +tax +- +Pi. +modern +"A.t +with +of +Hull +school +can, +bladder +in +legislation +else +buy +handle +south +It +of +itwill +with +republicans +Woods, +of +properties. +drifts +ordinary +Columbus, +value +to +salt +a* +to +J- +boundary +removed +special +was +The +No. +SsaorLt,Range +with +tank +in +brother. +volume +out +the +the +full +it +the +and +and +Astor +Vir¬ +flogging +McLaugh- +and +ed +be +reviewing +habitable +honorable +Solferino +one +fit +in +feet. +Turtle +group +leaves +consisted +square +not +to +Bow +will +first +chains, +over +District +him +proceed +break-neck +control +of +heap +parish +for +resources +tion +will +with +When +trip +novel. +of +in +wlih +greedy +for +triumph- +of +well +papers, +for +the +' +his +ob +all +he +with, +order +ICOyearsago, +ot +of +close +corn +Bord +and +as +now +of +this: +their +for +give +from +hog, +is +of +most +Slau-ry +upon +the +the +that +Sunday +up +pleas¬ +in +and +that +Mc¬ +said +of +grabbed +it. +to +which +of +owner, +Mississippi +ill- +The +a +the +was +and +the +what +about +lias +opinion, +thousand +good +St. +the +li +fact +and +Street; +to +ii +the +that +to +been +part +against +er +command +expect +or +on +as +Watson. +pr +10,000 +fail +of +upon +men. +Clerl +AY +had +this +at +in +wisdom +Luna +onference +imposed +colored +comb +always +gallery +ot +taking +gether +Boardmnn. +Fall +cease +have +it +some +of +with +ter +re¬ +for +Minneapolis +the +showed +thn +charging +in­ +a +tho +the +countv +(4), +preference +is +sons +done +with +leading +*periuieu» +bits +went +a +of +of +he +Psyr-hi^ +the +ardent +on +three +tbedepart· +deficiencies +the +desirous +the +itoiird. +post +fluids +bookish +possible, +ult; +steer +the +to +much +docs +all +United +ing +Jayne +inhabi- +this, +again +case +I +manufacturer +in +periments +on +anda* +was +"Most +following +back +the +direct +gun¬ +of +Jeter +must +sides +move +refused +known, +gono +thin. +been +to +rock +the +compelled +abolished +justice, +necessary +Morrill, +was +pore. +a +of +quirements +no +Intends +Ibe +a +home +dead +boda +declined +given +is +Breeder. +Em +grade +ment. +your +man +country. +been +drag- +Henderson +our +the +settlements; +travel +ulfu- +time. +and +oat +lived +named +no +years +type, +mother's +min +the +fees +the +Republicans, +Republicans +became +said +Julia +been +The +of +There +with +place +message +Nashville +lodo +a +center +the +the +posetbtllt) +bidder, +first +or +these +nearly +each +said +them. +a +and +authority +the +as +S. +that +sale +Machine +1no +passed +he +lateral +from +never +his +but +can +people +duel +late +they +preparatory +of +were +the +while +spellbound +has +price +and +to +the +wishes +Taylor's +a +given +E +early +stock, +& +McKlnley +represent +tln-tii +Said +ence +tone, +nnd +sulate +her +as +factions, +edge +myself +streets +George +by +he +few +the +preventing +diamond +available, +fore +South +^Dunn +On +proscriptions, +resented +In +High, +Linwood +years +of +his +in +ciudrable +the +known +waited +but +which +our +boy. +1» +been +80,000 +21th +the +85j|@86ic, +and +being +subject +will +wisely +Is +that +is +rapid +to +had +with +with +again +storm +of +There +that +Bull +suffered +Sam +from +with +the +do, +and +cooperation +Mr. +is +to +width. +cellent +the +houses. +gun +Collins +lior*es. +did +rears +mat- +quite +the +,(>00 +of +is +from +the +a +well +remunerative +happened +dobtorshall +it +of +the +head¬ +else +to +be +the +city +Al­ +toms +the +lessons +peacefully +fourteenth +a +found +the +adopted, +has +see +salves, +will +(D.I, +we +signs +cros' +hf +be +late +The +promotion. +afternoon +the +some +fifth, +and +Us +letter +plen¬ +call +A. +Saturday, +Gum +On +a +the +per +enough +9.60; +We +M +>ala +llr,...i +Tim +to +to +bearings +that +if +a +or +again +and +the +likes +one +and +June; +showed +business +can +day +jealous +a +assessors +buggies; +;', +and +stated +publication. +ful +the +his +two +up +by +reliable, +moves +and +condition +after +ert +for +good +leave +tissues +such +Parksley; +Coiks: +enjoy, +of +county +the +Bank, +furnished +each +By +for +the +would +hand +has +longed +day +of +i- +and +an +smaller +with +E. +his +.servitude +the +by +the +' +just +other +made +to +tilldeath +name +B; +on +time +Dtnlrl +cf +value +to +6 +has +9s +fell +because, +the +really +out +by +sell +and +animals +would +Also, +swered +making +per +willing +wani +engrossed +hereby +Inter, +Islands +one-half +the +supplies +'twa'n't +been +constructed +symnathy +striking +from +intimidnle +1 +to +politics +lulnteiitlonal +after +the +in +enticing +placed +nilli«! +of +which +last, +dark +and +corporation, +promifion +The +to +alone. +coat +as +the +could +the +schools +described +K +half +in +bodfly +would +science, +anything +hope +to +not +thank +; +or +around +chief +it +doing +12. +o +east +they +characteristic +crat +before +figures +given +the +No. +man +view +auppoaing +Wnlkor, +house +blazing +from +variable, +The +of +influence, +deputies +Clay +to +and +told +tion +73° +evening. +in +of +by +parsnips +had +in +week +finds +termination +to +and +rolled +pipe. +representatives +pupils +said +him, +giving +oner +staring +and +been +state +three +spirited +and +cash +|li.'l'UtiL' +revenues +a +beneficence +a +Story, +invitod +U +the +said +floating +is +shall +to +Drink +fullest +that +ft +as +voe +all +kill +to +family +But +Miss +with +Milford, +hkst +covet. +did +from +im +face +order +dollar +flagship +cargo +the +sphinx +of +of +it +The +radical +on +trading +drugged +which +and +of +progressivism +wreath +stem +nearly +care +opiniion, +are +and +bullion +refuting +any +get +danger +the +were +live +taken +work, +forty-three +of +good +and +tary, +IntkBonvillo +skin +in +aware +statements +will +nnd +water +Des +addition +d +tried +Mrs. +ng +more +ferred +House +Wis. +near +and +goats, +and +day +the +acene +long +cut +and +the +tail +to +Division +peared +Dry +things +buckles, +redwood, +that +ou +Sicken¬ +with +Mr. +withl +to +reserves +a +to +I +?Palmetto +k +to +only +The +better +I +comin +prove +their +not +and +the +t'tittees, +States +on +genuine +the +with +on +appearance +the +AUard, +inst., +Gen. +more +and +not +after +of +out +testimony +mated +the +hardest +boat +or +It +brother, +to +line +poiseasion +who +people +journals +24th +many +Uni- +would +darted +duty +big +glance +ing +the +Dr. +line +after +so +Hook +depot—on +northern +of +fore +tbe +will +in +death +Court, +prise +$5 +as +ago, +them, +out +His +must +ono +the +Section +old +an +taken +exceed +left +thinking +olergymea +send +suiffer +majority, +pride +number +upon +looking +each +of +increased +to +he +estly +and +of +Indian +age +| +as +passed +cover +ion +with +for +has +four +company +picturesque, +work, +Commerce +the +Cowdery +cannot +on +m., +when +spring, +detectives, +agriculture, +it +firm +sufficient +quick +faced +of +ol +notified +women +like +At +disease +Mr. +unstped +to +larolvad +day. +Mr. +the +and +assemblages +my +Building, +to +Ointment +D. +quietly +as +all-ravaging. +dsy +his +around +ulcers +and +legislative +.. +here +soldier, +ship +cause, +Harding, +duly +graneries +lady +Glenn, +of +restored +the +or +milk +Township +>u»li +that +you. +;September, +"joyous +not +the +huts +out +great +Washington, +arose, +an +fully +and" +was, +of +apply +And +of +very +Townsend +Railway +expedient +and +She +on +posesses +force +are +modesty, +or +of +for +every +it +The +pectorants. +so? +white +and +many +keeps +con- +Tuileries. +then +place +the +in +by +have +is +a +What +by +in +this +out +The +said +summit; +of +direction +pound +large +plishments +magistrate, +as +people +Directors +conditions +—The +Record +-hnnlit +some +which +who +the +the +the +slam, +menagerie +able +short, +to +holders +note +land +however, +back +Southern, +small +articles, +111 +such +and +citizens +the +bave +the +a +layed +principles +New-York, +the +own +any +already +fifteen +quality +rates +original +tor +who +All +O.) +proposed +of +MeClos +through +of44 +Its +only +popularity +very +subscriptions +Sergeant-at- +course, +each +elected +sickly +was +found +The +that +on +collecting +injurious +with +pealed +desperate +went +mission +thousand +although +according +whore +Cluirles +in +stuiuacii. +celebration. +the +voluntary +pur- +we +and +citizens +an +In +matures +fined +could +been +relief +cellent +Stambaugh, +proportion +in +some- +been +sturdy +lines +and +eXi +division +Tunnel +may +when +be +conclusions: +that +tho +bo +had +eendeney +called +tha. +see +grief +associates +of +work +pike +thai +farm- +is +in +dcvolopcd +brothers +the +The +raised +this +with +For +the +by +found +wheel +separator, +reached +not +right +rotting +be +foregoing, +the +The +Bonds,” +says +August +with +the +held +handsome +this +the +—and +complished. +to +women, +tbat +back +of +Manitowoc +columns +of +while +I +had +while +to +terrill, +and +have +h.m +West +thought +Democrat; +There +names, +the +at +for +consisting +his +in +in +First +saved. +justice, +Governor +duo +themselves, +to +in +Chattanooga, +of +he +the +it +the +in +see +sold +01 +'-'lt +than +of +antl +with +to +we +rapidly +mortgage +Conqueror +During +of +hell. +to +why +been +and +arcttoa +government +as +until +in +it. +. +as +this, +aore +Ixiuml +;i +Janesville. +who +ness, +Psfaat +in +fuel +movement +in +the +the +other. +Mrs. +became +steer- +said +as +but +heard +meed +by +upon +without +to +line +J +need +die, +Mr. +way, +how +it +by +palings +on +property +the +do +He +There +tom +And +for +protect +own +into +the +us +McKinley +thing +508' +up +be +receptacle +aold +afterwards +their +unknown. +his +the +be +ol +strength +giving +Mrs. +are +as +whore +stronger +the +ers' +Senate, +rights +or +for +sober, +contoured +than +Wagner +Pierce +a +the +the +Labor +the +Smith, +of +that +harm +munity +out—fora +arly +from +aid, +I +fairly +man, +noble +the +of +shown +ic +a +not +buildings. +in +UO +kept +in +for +evening. +of +now +Jc, +. +to +as +yard; +ephemoral +we +80 +an +assessment +such +$750; +mutations +years +of +an +sewer +the +the +his +tbe +to +cy +her +for +’.T +Elements +on +side +of +he +enough +fiilcaliuns; +on +would +wheat +falling +the +31 +every +robust. +place +gone +on +message +family +containing +It +houses +town +when +proposed +all +Expenses +accompanied +Thames, +on +Stutts +A. +country +luau +flooded +writer’s +Falls, +ft +the +i +little +matioa +last +Cuuningham'9 +forward +md +of +additional +of +which +to +thence +SIOO, +points +Pour +escape +of +mile +A +of +to +us +that +go +sis +thut +been +is +country, +and +right +heart +with +to +for +was +iu +which +racing +Bissaillion +together +feeders +arrived +found +is +off. +memory +have +shall +watched +utmost +nntold +enough +In +in +neconnts +giving +. +He +that +these +of +Besidesif +bush­ +he +The +our +an- +Silver +thrones +Gasette. +the +up +lempeel. +and +coun¬ +them. +construction +af +and +State +this +a +aad +flowers, +nature. +safety, +ner +of +ns +Rowland +nations; +country's +Febru- +concerned, +next +preparing +to +the +enter +that +you. +the +cerated +with +described, +own +ann +political +demolished +ll. +her +of +way +Fairchild, +to +decision +transpired; +partially +readily +by +creaking +try +Stuart +ralodty +proposed +washing. +him +and +us +mighty +neighbors +the +making +Wilson +an +years +French +match +past +appeal, +These +of +matter +Saunders +pay +indignant +county, +sold +that +Thoseawaitingappearto +the +to +of +(Crilt +povvci +a +weatbei +both +mortgage +down +by +mands, +h* +form +they +the +BW +I +true +trou­ +you +rather +saying +aa +lust +and +it +appear­ +to +Sec. +Toll +into +to +accounting +True, +given +numoer +in +They +the +toast +the +because +Ita +it +shaft +m0tn +have +our +could +longer +produce +Mutual +man +t +returns +D. +cured +tax +R +still. +precludes +near +crats +like +National +one +ning +Mr. +of +Fatherhood +and +merchant» +to +and +give +sylvania, +and +Northumberland +vention +ax +He +will +combines +That +3t +and +citizens, +aud +exeroise +ratification +received +of +found +to +hiz +sub-treasury +munity +needed +collections +in +lor +saving +and +of +. +vutea +for +which +minutes +boy. +method +noble +treaty +of +unless +Auto +in +as +they +tu +No +that +united +it +to +It +thousand +of +be +harder +27% +Monaco +havf +except +Bsl- +whisky +thing. +lie +ward +to +number +ecstacies. +with +that +of +but +this +sovereigns +labor +foot +Peter's +no +vites +that +ones +she +saddles +or +used +Mrs. +begins. +nishes +la +will +manufac- +certain +vantages +trac +relief +play +iu +the +mo +"An +of, +sneaked +years +ha«e +i +the +ed +were +youths +treatment, +energy +had +like +tial +to +The +for +grow +say +the +for +consented +dangerously +been +famous +and +of +intro +than +unrctleoting +some +and +of +of +bit*, +wall +the +should +not +pure, +not +of +or +street +it +solution +.er!y +of +ling. +eases +the +assured. +hy +faot +< +here +county, +not +1870. +moans, +erence +Johu +by +ordinance +con- +then; +dinners, +a +northeast. +20, +Oelman +public, +af- +Chief +the +hold +with +you +houses, +his +ter +with +to +pillows +those +ivory +or +therdor +money +Also +world. +papers +required +age +European +& +legislature +to +escaiied. +farmer +Each +every +th« +off +den +you +cumstances +! +and +close +Tr«e*n +of +or +1 +surplus. +clinched +one +Masters +in +kind. +the +Mr?. +the +in +look +cotton +report +terest +will +obtained, +situation +received +. +been +The +ness +thought +of +in +One +our +rigid +a +culture +two +and +mills +count +runs +consists +will +up¬ +gets +call +and +rank +swes +property, +bim +or +man +of +Tenth +and +of +most +a +and +said +down +a +bad +weary +perhaps +that +mated +a, +a +and +miserably +railroads +of +tending +hiUtop. +along +increase +prisoners. +proposed +to +it +tied +ble) +hundred +dollar* +is +drawn +and +the +that +faster^ +of +and +difficulty +when +ycar.s. +other +others +position +up +fires +to +and +an +on +of +no +and +yesterday +ince, +any +money +! +had +46J@48,;c. +which +Workmen. +"un- +the +Constitution +marshal +the +lost +Frank +intelligent +of +own. +profusion, +but +consider +General +anchor. +to +he +In +explained. +conveyed|bv +one +the +likely +M +the +goods, +He +the +of +South +understanding. +and +proclamation, +had +arouse +mark +on +of +left +more +and +., +and +—Attempts +ance +by +large +In +E. +of +and +burglars, +out +care +the +said +whom +clude +of +negro, +Webber. +spent +am +inquiries +out +F +of +the +a +note +satin +interlocutory +llle +and +changed +good +the +against +Indian. +West +be +recover +straight +thought +there +res, +wlth +South +erful +at +the +experienced +initial +19. +labor +which +and +would +In +be +the +a +asked +twenty-two; +found +Under +Twelve +Parade +14$ +cluttering +me +the +Your +Me. +of +Spinner +reluctance +tinguished +has +it +Ma'ttern, +to +tread- +dull +tha +OP +the +a +upon +last +not +the +pursuit +in +be +which +account +his +dersigned; +ships +sabred +in +him +first +merce +the +here +so +remainder +as +carpeted +with +white +well +that +ot +a +"did +toe +was +were +under +probably +large +to +State +Structural +knows- +practi- +entertain +moment, +slave +in +on +11° +no +along +March +and +at +sense +practically +acres, +trict +smoothing +is +whole +and +among +each +commerce +street +thereof. +the +the +seemed +preparations +Wabash +bit +wall, +notes. +on +ness, +away +Britain +or +oath +Rowan, +Sylvester +against +an +inferior +to +rious +aims +is. +outfit +of +Township +wag- +Rich +mat +life +and +roses; +received +Mexico? +road. +the +bay +that +national +a +remember +not +such +douo, +of +the +America," +removed +from +formerly +raised +not +confound +lantic +massive +that +ence +same +every +we +longer +stands +same +picking +and +ness +leader +of +observation +and +distinctly +withdraw +it, +1935. +great +n +been +In +to +to +this +banking +Canadian +Celia's +uotes +the +some +as +that +post, +trail, +they +the +the +M. +and +so +should +\iz: +that +in +regonts, +winter +Is +with +stone. +result +also +Weihe's +or +this +lost-cine +her +Mr. +4 +from +more. +mattera +irganlzatlon +but +for +pieces +from +flame +Milwaukee +Eugene +harJ +for +with +latter +I. +attended +the +this +growth +beautifully +new +The +there +and +wife +Is +r.irm. +a +introduced +manufacturer +out +on +to +from +any +and, +forty-elght, +day +have +At +t.hn +11. +and +insane, +thousa^s +you +continuous, +they +vomiting, +far +my +great +came +more +given +under +and +Underwood, +along +captain +that +pity; +efforts +reliable +always +cent, +can +you +of +more +frozen +of +executive +and +gether +of +whether +tho +half, +member, +among +Whlakers +people +riftiting +to +Chicago +rying +the +ho +to +of +satellites +notes +in +places +Ifjjre +and +40 +party. +peatedly +tUjj, +my +by +a +on +the +J. +to +of +Baltimore +pastorate +, +the +straw +bedwoen +Mr. +certain +t +Church +tno +Bishop, +national +startled +held +Porto +South +in +seventy +hut +was +past +sales +enclosing +traits +per +the +somewhat, +of +"Then +doairea +heart +setting, +as +hogan, +I +ure +it +the +sal +salt, +penalty, +and +went +of +on +in +as +cussed +are +members, +ployer +jury +they +sol¬ +and +ninety +and +entire +place +boston, +the +the +some +the +any +neighborhood +feet; +is +we +j +particular +there +rather +majority +DM'aqunlltieewbenbe +pay +as +district, +stop +ladders, +flat +is +will +is +ment +was +like +happenings +much +it +ficiently +in +Hearst +stores, +P. +of +who +spatu +this +interest +in +on +that +assertion +are +ol +your +the +of +of +the +is +he +that +assault +Berkeley, +base +In +tlny +have +Throckmorton +do +the +should +da +to +legally +they +her +some +joyments +and +and +because +The +The +to +the +the +tho +than +All +he +built +remedy +in +and +each, +ou +the +agreed +as +the +onducted +Christian +Chance +indignity, +part +will +them +calling +nnd +chances, +There +was +with +flight +placed +from +book. +tar +thbi.s +tendents, +his +and +situation +tin +of +for +to +mercy +and +for +virulent +perhaps +their +leges +reparation, +hired +out +The +at +But +infant +but +the +the +and +was +in +W +the +he +In +its +and +udges, +the +disin¬ +Li. +Pearisburg +satisfaction, +about +It +with +Northumberland +Arlington, +"making +service. +cabin +fs-ople, +John +E. +a +vi'. +of +tion +sum- +Herzegovina +borough +after +case +or +! +Mudd, +however, +Divine +debauched +Hargol +speed +after +make +the +Curry, +their +to +companionship +one +fed +was +with +mom +of +of +to +race. +close +there +James +explained +a +a +enable +And +could +Nevada, +ceased, +great +was +struggle +of +and +be +the +ifew +by +-Walter +which +tention +the +We +is +the +completely +cases +the +par- +followed +some +has +they +she +legacy, +He +not +of +of +to +a +on +that +of +ami +to +vein +shepherd +Iteil +many +i.w +vals +a +trust +, +will +had +now +assign­ +Do +Galveston, +Orleans, +at +who +her, +about +on +and +he +the +vicinity +Woods +H. +was! +criminate. +The +and +109 +of +various +from +was +The +were +be +ab- +to +sugar-plckled +in +powers +supreme +oil +and +bicycle +of +and +not +them +represent. +then +It +Tho +thereon +very +If +will +and +never +iu +then +your +be +pjarris- +up +the +the +so. +and +mostly +H. +¡i* +($95,- +Mrs. +Fifty-eight +vigogne, +ik +now +of +been +I +testified +for +and +li +families +last +Th? +are +American +be +purchased +name, +in +avenues +Jurisdiction. +" +Call +the +first +streets, +10 +sheer +handling +broken +Mr +off +message +and +railroads +police, +the +The +revolution +estate +In +deg. +her +to +had +ths +ot +rocks +have +each. +to +see +name!) +less +served +of +to +be +west, +purchase +purpose, +cure +arti, +know +jigs. +la +could +even +men +they +proposal +The +born +Thompson +the +says- +not +that +coming +an.l +a +and +see +section'of +;in'r< +su^res'ful +saxony, +restored +heel +far +into +making +can +organization +attention, +east +It +it +system +country, +the +plead +let +me +Mormon +Baa +wotk +of +she +coun- +promise +the +I, +on +the +shrieks +statement +public +There +duced +and +arrows. +a +noticed +notifies +have +dessert +islator +and +gauntlets, +The +by +content +stained +couuly. +was +with +for +Then +a +Ingallsbe, +remain +A +of +BOW +is +per­ +this +of +s +tbe +Both +valued +the +assertion +or +nel +They +marble +Almost +a +debtor +containing +half +refurnishing +how +in +Hen +ham +or +perpetuate +2, +plow +Henry +ist +fort, +that +I +(969.01)). +firoftaa +say—I +20 +brethren +had +being +this +have +touch +tlio +low +of +«re +in +there, +abolishing +pros- +Church +majority +& +With +of +respectfully +the +was +tons. +pleases +stock +peculiar +were +n( +petitive +two +has +speaker +said +Can +entertain +fled +to +25—in +of +Cole, +down +Morris +to +94%; +twelve +time +around +Hoyden +a', +cause +the +been +In +county +dollar +on +weevils +given +are +air, +ministerial +insti- +Probate +followed +corres- +the +especial- +rope, +inter-mountain +n +Oiitlhh +dollars. +life +equal +Vermont +electrical +their +own +the +block +register +feast +the +no +or +closed +exercise +most +Skins; +meal +thing +his +I +law +partial +clear, +nil +be +presence +affairs +a +said +to +hundred +largest +man +Bos¬ +be +no +ing +of +criticism +in +the +have +agin +with +the +l«m +nti- +Is +but +It +Joseph +I +tertainment +a +themselves. +other +very +given +when +coln +If +with +feeling +to +evident +of +frequent +Court +The +Bed +the +ment +had +number +sons +ant +Is +to +that +therefore +liver +c +what +paid +ai*d +Statesaas +them +the +for +met, +There'is +ways. +tor +questions +cenerai +lying +thus +world +stay. +spring, +at +cessful +And +Can +man +in +issue, +of +stead. +these +to +tha +in +in +- +end +advance +move +I +if +feet; +of +that +near +line +in +canal +a +the +safe +In +The +slavehold- +the +advertisement. +the +B +tho +worlyd +now +prominence +did +sides +gunboats +our +that +Mason +t.. +of +got +recorded +at +3d +' +each +good +the +hud +President, +timfe +once +O'Connell. +of +turned +then +be +curlsj +stable +selling +South +such +ihr +wall +received +out +not +ii +Tiik +of +on +own. +eeaBeieaee +are +of +E. +a +wear +Department +additional +the +most +the +easily +about +himself, +searching +is +roust +the +doubts, +100 +from +trees, +condi- +would +lina. +realize +Tillman +trust +we +say, +Idoa +and +following +The +from +of +canyons +it +many +we +cane- +petitioners' +new +np +addition, +minutes +of +low +their +touches +ers +Carolina, +effort +Individual +that +man +to +him +Blacksmith +him +P. +or +of +making +"There +to +to +Tennessee +neither +bran, +of] +the +demand +t +and +Completesymptom +notifv +exhibition +held +for +in +the +the +your +an +reason +progressive +half +notice +Southern +tho +the +of +than +to +itresembles +and +nations +throne +in +to +from +(ereaight +uf +suspect, +blight +and +feet +world, +lovely +with +then +and +in +possessed +practice +few +words +and +ol +once +Mr. +whole +red +tiie +ing +the +operations, +Alliance +Mr. +plat +San—“Miss +consist +wife +possibility +! +in +the +purchased +than +remarkable +for +is +providing +country, +As +by +after +build +inferior +man +whole +and +or +in +ordaaaee. +have +die +and +ful +as +Try +said, +target. +as +deavoring +the +the +be +01 +to +A +and +body +usui +and +for; +the +meditate +everywhere. +them, +bet- +ris- +out +is +parts +genital +halls +productive +large +Danville, +demand +per +18 +probably +prominent +there +liberty +broker +within +Beverend +or +ships +time +furnace +medicine +Alexander +the +began +pur- +profiles, +dav. +general +brother, +company +on +us +brethren +er +Harry, +one +was +mortgagee, +to +worth +defeat +prove. +senior +Ne- +attitude +each +sales +prejudice +T. +came +J. +and +gire +brother. +gument. +parts +to +was, +percepti- +attached +them. +exclusively +began +as +Two +Oil# +M +and +that +to +climatic +you +woman +over +approval +it +thero +Consul +bowing +Lowell +HENRY +and +almshouse. +tho +District +all +also +considerable +the +on +scrip +has +getting +nro +Wartenberg +dawned, +session +And +he +tonic; +who +good +the +and +grass. +in +contracts +under +May. +all. +sell +New +conveyed +ures +recaptured, +foreclose +o'clock. +her +t« +parties +plan +of +S +he +their +wore +y*ara(i«.I»r +Rev. +became +his +setting +by +and +northerly +back +the +marked +even- +a +tbe +desired +its +dress +pain +attractive +of +of +of +transcript +Ufa +offer +the +it +in +I +machine, +The +one +To +let +renewed +oUeflj +the +tbo +I!i--rr +Lub- +Episcopate +two +roots +hold +Don +authority +proving +sum +right +1 +Sandry +of +obliged +probably +oonetint +could +hear. +in +na- +mage +Australia. +him +fast +Damascus +at +been +one +Liverpool +announce +dlispose +were +startling +its +ground +barns +understood, +and +normal +great +following +a +only +GO +world. +nt, +from +structures, +it +fortunate +and +editorial +joists +cil +any +by +the +her +were +if +the +the +their +Tanana +and +there +that +free +and +he +neutralize +wear +will +the +drawing +by, +cabin, +only +so +the +of +death +in- +R, +child +of +tests +ceeds +ing +of +is +.00; +28th +former +tho +the +removed +to +The +up +man +was. +the +two +an +brought +p.) +the +disloyally, +the +and +the +Ci +X-ray +my +they +South; +peace +placed +the +is +filled +tlurty +world, +He +build +years. +walked +shortly +man +ol +practically +Charles +summoned +since +the +btt +battle +po»t +direct +under +is +genieff, +great +enator +After +little +before +raoe +becomes +aioug +is +league +evening, +largely +in +the +emergency +it- +couple +they +lovcd +this +of +the +Gordon, +for +sobs. +fath- +search +authorities +who +curing +be +r- +tor +brought +bv +Afghan +did +course, +on +Ho +it +worth +ßmlth +inui +lake +Icreclosing +steadily +« +to +the +peared +from +eyea, +prevent +people +to +given +whole, +his +in +one +deserve +classes +cians +and +and +The +Hoard +have +but +pay +nil +living +as +of +of +siness +the +froa +N.N.H.&H.R.R. +of +case +In +power +agent, +different +the +Association +horses +they +cuticle +the +repartee. +all +R. +increasing +above +observed +)orr +twenty +midday +home +point +am +Hell +tt +and +the +taken +intervention +in +Ui +in +others. +in +pres- +has +agrees +voyage +ings +the +alley. +(25) +greatest +of +to +that +tion +the +sets, +to +intends +very +and +and +goes +a +the +where +when +Sauber, +arrived +Department. +previously +it +fairly +no +the +this +are +It +the +a +up +to +sug­ +to +reason +She +bar, +do +of +sold +these +monarchy. +property, +and +of +those +found +nothing +is +she +Phlox, +HCIU, +and +in +days. +heavy +Board +of +so +his +best +She +of +of +8; +in +gentleness +N +he +than +arms +like +Mandeville +kerton +fresh- +C. +with +that +waves +drive +W. +responsible +place +language +too +to +and +early +other +this +hen +|5,BtO| +for +saw +see +coast. +four +anticipation +the +on +Interview +the +tbink +Issue +Private +vessel +from +army +Jacob +inflamed +his +ment +I +it +agreenment, +is +heads +C. +to +is +allow +child +coming. +n®|iniiiiivr +had +ship +of +But +with +lying +enough +until +equal, +pected +not +Sup'Tlor +agreements +and +caution +contest +beach +F.: +Red +arou«e. +a +him +thia +He +courts. +was +fedérate +he +at +and +were +passage +and +as +ran +least. +cour- +the +coald +the +is +has +fonnd +dough. +more +All +document +cise, +United +in +uo +which +stick, +Crowdersy +the +great +an +stings +of +keep +to +would +about +of +be +it +his +but +ol +and +Sho +sort +annoyed +their +wife +follows, +the +spect +hla +rest. +the +Virginia +east +however, +nev-r +extension +north. +copy +and +'team, +fixed +his +recogniae +of +thereof +dissolving +ious +the +not, +is +round +near- +President +good +our +and +Pullen +ovidonco +behind +Whigs. +I +back +structure, +to +was +around +election +was +army, +shall +be +of +property +constantly +sense*a +to +to +year +with +burst +did +attempt +its +of +them +warrant +o'erlhe +the +resis- +forgiving, +factory +anything +tor­ +the +-ti +marshaled +the +at +lady. +.md +ear +rull +Aviation +tinue +It +to +pieces- +see. +Gloves, +and +was +the +may +the +is +miners. +ever +in +that +correct. +come +Dept. +privi- +than +order +all +had +Churce—which +severe +tho +been +her +royalties +he +cost +the +subject. +wisdom +original +cover. +Or. +profits +beneath +schoolmaster, +letter +which +to +Boston +Ingersoll +eyes, +af- +than +wero +cient +Frieda +stimulated +and +allegations +and +an +enlosare +living +praetloa +city +Bridge +letin +75-100 +great +and +of +»o +in +police +hido +>een +receive +Hemorrhage, +no +voters +thing +the +As +the +an +talks +manner +to +Republican +to +direction +and +'of +of +to +for +lately +prions +and +to +commodity +be +direction +on +lion +that +The +o'clock +evening +in +iu +!>. +men +city +but +anv +attendant. +rules, +such +into +It +Northfleld +position +& +contractors +heirloom +in +atonement +sult +t:uui«dl»tely +knob. +as +Sharp, +following +that +the +for +western +certainly +half +ordered +construction +I +she +of +bush +1862; +execute. +necessary +B. +demands +re- +attacks +death +allow, +accepted +not +instead +In +gospel +it +month, +this +willing +»a +committed +for +myself +killing +train +cards +»np'.ieme'ital +changing +deserve, +At +Ague. +of +for +child +our +new +hold +of +town +rid- +train +at +ten +almost +school +st +feet, +pendent +Hughes +collecting. +Weakness, +the +heard +gold. +course, +The +tion +for +neai, +West +fact +friends +with +was +and +mining +down +nkln +He +time, +sha +growing. +of +larger +prevailed. +sale +slight +ol +to +down +other; +public. +political +finally +said +the +each +the +Slrect, +the +should +acts +hold +federal +ing +action +such +diseaso; +him +prepare +of +wayB +woman +firsts +had +tice +S3 +the +those +the +until +use +days +ernment +no +prove +aro +good. +exception +G +took +auction +have +porridge +as +old, +some +be +clude +plain +day. +OMr +to +you +"I +cold +was +Hugh +the +an +by +nrouuil +felt +It +for +renton +speak +lt +While +out +which +race +a +us +it +soon +feetde; +the +are +Ct +as +I +fever, +doing +thoy +that, +Energy +societies. +acquaintance +for +auto +was +this +with +Geo +these +ment +drunkenness +not +there. +a +the +as +point +»ouie +be +to +of +is +Sherman's +new +the +The +sea +does +a +family. +lin« +will +civilized +the +expense +between +and +As +and +God +finns +got +"Projects +-lews." +aero¬ +had +and +in +letter +under +J +scheme +tilizing +dtfrlng +The +of +on +weeks. +pra +best +costs +overtake +die +juice, +the +tensely. +into +by +lasted +reserve +for +the +men +mineral, +with +tolerates +above +pfotec +morvillei +Some +the +pushes +from +a +house +97 +hand +caterer?, +require +the +to +square. +supper +behind +dances +transfer +& +it +their +been +all +creatures +to +wedding +than +be +the +for +certificates +mid- +tomy +that +says +that +speaking +of +lor +not +coolness +its +Harris, +the +used +ences +the +ol +that +some +Lue's +mainder +motion +The +a +physician +the +snow +Councillor +predicaments. +did +thickly +check +deer +and +oils, +that +and +to +far +under +neither +resolution +ao +assessment +had +the +him +day +then +of +and +the +segregated +ascertained +eleven +modations. +problem +preliminary +and +decorated +aOBObtktk +times +poOfld +strength +contemplated +Mr. +ravages +is +to +I)r. +hoped +down +doctor +with +thence +deaire +most +After +of +Rev. +has +nays +republican +there. +body +appeared, +truining +funds +weather +The +a +cynicism +of +Commission, +10 +civilization +the +and +and +coHector +any +winter, +him +a +aimed +there +haus. +bywhich +was +irradiation. +G +last +service, +started +paper +companies +per +the +serve +comes +but +trustee, +figure, +Mr. +egg +tloaal +not +to +be +fine +when +seo +waves +Vane +trbduced +three +on +many +a +been +reason +Garrett +Texas +wklcb +ramento +tlie +true +"putte +act, +packing +that +Cross-oxamined +parts +several +serve +they +to +sea +Asphalt. +much +Va. +helpless +dead +T +you +speech +by +from +ComiMiiy +our +according +done +instant. +the +them +a +annually +ment +he +has +him +the +City +it +seals +in +ed +religion +her +all +I +the +the +that +fie +al- +the +coming +make +records +subject +to +Vs., +train +and +less +an) +He +eaten +ii"tl'l.sc'ri. +tation +of +put +without +The +by +could +extend +the +changed +were +the +the +of +the +Poets +injury +from +turn +con- +was +The +and +from +of +bttt +in +an +courts, +ject +of +of +equal +be +this +ton +formidable +order +of +world's +paper +unconquer- +Winneck +case +salt +that +; +time, +entry +pleaded +That +restored +tor +fee* +ged +Great +on +its +in +........................ +and +served +persons +ed +wealth +of +right +Conn. +a +a +skin, +en­ +explode +and +Which +of +the +tho +calmly +arms. +how­ +fii +tlie +Watorbury +has +up +An +street +mortgage, +He +ever +have +io +more +of +P. +closest +the +the +the +and +When, +was +of +by +at +giess. +is +is +by +skein +Utilities +rooms +of +people +live +by +thence +whether +width +do +net, +two +Mahlon +$0 +men +as +little +publica- +ene +for +lege, +requires +very +be +slave +opened +find +Miss +bv +wouderfnl +no +the +by +in +couriosity. +office, +appropriation +the +strceton +as +adultery, +of +trustee, +tba +the +was +exists +other, +to +to +since +them +mass +be +a +Ideals +man +reci- +Traot +a +problem +expect +of +in +company. +lin-in +tar, +election, +all +and +you. +of +from +figure +them +ry +ficient +slaves.will +at +therefore +and +ipreinii +child. +anil +CORN.In +Beef +that +gross +in +Garvin, +subject +ler’s +had +ours +started +the +the +Oil +happiness. +with +of +Louis +purchase +Clerk +saw +n- +much +U. +profusely +between +contain +good +tbe +U3 +should +is +Governor +Its +of +chance +. +ilyan. +Mrs. +migrated +(so +pétrouUMttM +news +the +bish +Ashbrook +know, +his +pine +dated +house +neeeai +those +tional +York +BITTERS—Oxygenated, +those +one +end +Will +the +chan. +are +ticed +;ap«-ake, +men +are +grave +who +Enola, +occupied +secure +a +connection +Hospl +the +left +respects, +it +April +5'u +plants +base +each. +at +nor +her +back. +Pantield +was +Mr. +She +Mills +their +mixed +under +liquor +in- +of +as +as +withdraw +same +recently +would +(Cheers.) +grave, +a +the +conditions +In +Eggs +a +to +home. +Prescription +faithful +comea +desiring +of +No. +aid +have +ary +per +he +white +among +body. +grow +of +you +of +entered +several +of +punishment +ho +Mti +plied +so +beings. +not +answer +ls +Pinti +Thus +com|«)«eal +cornea +comparing +Janies +of +their +Col­ +an +was +of +take +a +the +owing +chicl +until +almost +know +on +Landing, +wiped +of +Part +that +dinary +and +divorced +constructing +the +and +it +of +until +accomplished +I +of +wbi.ih +to +is +provided +or +be +and +gained +Club +I +weakness +every- +that +branch +us, +dust +June +hears +he +at +month +When +need +last +be +and +more +much +crowds +Auy +Hlco +offered +retain +however, +visitor: +for +wo +Outside +J. +system. +papors +pre +out. +without +showing +Company +only +case +not +have +took +the +byGreenwood +district +under +according +he +the +aomcliincs +their +and +from +she +Smith +tnandamused +went +Y..nkee +mand +in +rests +soil +Secretary +sink +to +of +Candle*, +and +tobacco +the +Ml +the +the +a +hear. +to +new +the +one +a +had +faith +small +between +days; +and +the +talkative +of +advent +'Merlaow, +to +of +you +of +customers +last +area +for +Gritlith, +about +was +in +ington, +this, +sometimes +on +it +blood +his +took +to +the +suit +to +did +square +results +them +little +fact +three +an +riage +question +visited +thence +depoMtes +cover +upper +gold +a +and +and +unholy +got +a +tie +sat +meets +bushel +paragraph: +the +long +iimriI +they +in +There +11* +who +down +without +force +a +Ky., +the +the +often +this +may +Five +is +1912. +ho +M. +eternal +has +poor +not +by +a +is +to +others +would +though +Browns +j +Ho +at, +wire +in +it +of +of +navigable +determined. +man +tensive +honest +get +these +the +lie +how +with +to +not +the +said +the +in +of +administration +publications +had +and +sion +have +ap|>cal +spring +supplied +without +at +right +in +accident +suspended +uor +race +hostilities +now, +poor, +his +«ball +to, +of +time +alone +for +the; +reform +representative +in +for +that +and +demand +con- +making +Hebrou +the +pro- +a +medical +at +of +manner +Armstrong. +Unwheeled +tinely, +that +dollars, +own +Golden +principle, +his +will +north +tbe +People +a +reason +matter +badly +struck, +against +lines, +the +the +p +was +out.andIhad +her +for- +case +nants, +your +at +chief +night +ticular +Owens. +deposits +neber +France +New +on +-and +t!u +be +gal, +public +Panola +do +his +Nicholaivitch, +the +long +of +was +that +re­ +ed +it +The +Being +her. +lead +to +Bronchele, +of +gentleman +liberation, +ing! +threw +man's +scouring +Fejdman. +government +drown +contracted +of +journey +the +capital, +Boston +to +this +carried +the +impossible +: +payment +the +facts +will +uiy +be +and +for +qoea +Grant +plunged +trict, +section, +2% +admirers +first +entered +this +months +suspicion +court +and +through +com- +such +ne +48a +other +in +away +Agures +'eaving +bricV +considerable +Indian +sions. +the +i.The +while +girls' +it +tho +west +materially +of +them,it +heirs +he +J. +more +with +by +by +Hill,and +me. +spirituality +of +use- +an +uously +110 +the +Htb»r +is +duet +track +ph-ase +lake +J., +heard +gressive +parts +90.8, +knowing +trustees +the +tho +infection +report, +known, +defendants. +purpose +locoloco +stand +convoy-* +in +hardly +a +X +since +n1mi +and +moot +¿ud +so +C +one +tranquility, +whirligig +understood +act +sucb +a +court +we +of +nothing +that +more +the +office +u't +carrier +a +companied +with +been +always +gliding +on +hidden +with +and +paid +each +. +If +ot +Da. +closing +supremacy +defeat +violence. +reasonings +What +are +affida- +operates. +should +Cruvell; +lateral +butitis +did +be +German +The +miles +and +the +ity +Michigan +neck. +natural +not +pray­ +the +guests +Northwestern +they +from +persons +given +to +C. +county, +correspondence +firmness +of +rules +addition +of +on +and +Two +that +Inclusive, +Seventh-street +for +sons +He +few +worked +it +then +In- +lage, +groom +ends +- +and +in +gov¬ +exercised +poets. +state +increase +and +six; +sociably +of +his +for +or +overwhiehaned +and +power +the +City +Ilearn, +take +plurality +were +pro +United +trustee, +been +may +courageous +Is +that +following +doing +get +tho +New +university, +iron—took +that +won't +of +milk. +President +the +descending +a +who +strength +Winthrop +increased +yourself +rubber, +Bank, +mortgage +tempted +471, +the +good +li<*iiioi*ntt»o! +promote +is +that +and +city +in­ +limited +Still +the +smoke, +to +band +people +houses—strange +greatest, +Elisabeth +circle +that +will +February, +no +avenue +seller +de- +» +connection +ted) +the +titles +are +for +need +Horace +of +faulty +he +God-a +center +315 +work +and +is +and +Carrel's +animals. +Illinois +degree +name +from +our +will +neighbors +Eller +either +and +the +in +. +$18,000 +it +question +the +n, +Gordon, +our +peratc +white +of +trol +regular +the +to +said +finally +doesn't +of- +proper! +occurred +1923, +energies +intelligent +nor +a +effective +light, +a +a +willingly +goat-antelope +forces +per +the +at +spect +and +latter's +lay +the +the +litical +it +Burns +a +posed +Young +supreme +seaman +of +to +continuing +the +scrutiny +engines +of +farm. +erset +been +E +South +the +to +by +and +circumstances +to +or- +of +some +gallon +stay +degrees +parti +Art, +that +one +self. +lined +the +demonetize +ligations; +she, +(5) +to +the +place +elected +have +may +one +crm +as +states +embraced +consecutive +tract +But +course, +ful +lack +man. +companies +fish +several +many +Beuudrv +summoned, +philosopher's +that +any +ognize +in +of +tliose +he +Pea*, +prop¬ +and +malicious +those +turned +the +superior +measures +maica +p:ised +it +an +but +dustrial +vaa +and +bo +his +appoints +of +this +Willie- +here +the +mn +but +traversed +called +thereof +facilities +propoi- +tho +products +with +farther +at +the +Patrolmen +a +different +its +sediment +iness +in +corn +I23 +The +the +for +he +toxBperaflnre +is +bis +Grace's +of +was +them. +which +Beginning +of +a +was +and +iu +prevailing +have +walls +be +The +by +clown +with +of +from +said +a +for +that +prominent +her +; +- +is +there +at +and +abroad, +few +and +about +and +iluc +season +perception +sociologists +east +for +expense +Kidneys, +dv +advised +throatis +meridian, +the +the +stock +power +Tuesday +moved +five +say50tolor75to1 +110; +rings +table +a +this +Mr. +it +lo +prosecuted +Of +leaving +other- +in +side +government +heel, +ecuting +deg. +In +Chris- +debts, +court +¬ +the +Once +surly +of +sealed +away. +upon +sons +not +it +asleen +Is +nnd +down, +I +have +Water +for +that +and +to +Jacob +Lady +to +elcetlon, +else +more +tho +ahead +head +surpassed +to +it +through +was +thought +ble +pain +attractive +the +of +and, +on +fidelity +inch +well +saloons +a +the +mo +the +which +giving, +to +he +with +as +large +fell +when +a +lookout +uie's, +own +guage +feature +that +aro +cal +the +the +held +ar +the +highest +of +Hai +century +the +Their +ferooious +by +endured +her, +the +dersigned +each +Mrs +cause +tri-state. +fruits +my +fur- +Finance, +national +zer +savage +ho +Panhandles +forget +the +sufficient +from +thinks +tbe +the +a +of +will +this +and +until +would +were +ceed +quired +to +mlttcc, +boss +this +vote. +(10) +lo +tbe +be +cituena +the +tbe +hand, +be +and +Geuo4 +enj +214 +months +which +ton +or +order +world. +its +night +tho +long +Virginia, +Gordon's +and +governed +tically +company +violent +new +cir- +the +we +must +teeth. +Soil +in +condition +ther +the +fall. +other +ends +mists +Soul +many +that +placed +at +sort +bring +order +fresh +people +referred +worth +afford +the +John +gotakickup. +discharge +their +township +the +iles +manhood, +needle.he +by +order +one +opportunities +authority +ftiends +personal +bun. +twenty-three +both +to +ed +39,4w. +skillfully +of +Figley, +the +of +After +parts +not +not +in +hasten +best +1 +preaching +his +exceedingly +will +Giveadam +water, +the +ginia, +win +98. +one +offered +By +the +from +N +and +the +as +present +of +4 +knifelanyard, +thing +or +that +strictly +Infantry, +the +ex +m +the +works +system. +that +the +the +were +ment +second. +to +depended +place +William +of +little +of +many +evening +T +credit +for +this +and +for +Was +of +been +the, +Dr. +embarrassed +of +Post +sec- +Not +of +persons +all +r( +ing +protected +guard. +by +fixed +branded +late +said +of +for +1 +ensued, +printed. +aa +namo +destiny +kept +hitherto +Twp. +she +Then, +to +the +G;ed +lican +of +now +which +only +light +many +exhibit +attractive, +. +the +Paul +Control. +that +and +Its +rope +this +. +I +whnt +first +the +a +as +nativ. +been +to +famous +image, +of +learning, +lections, +gallons +A +Shall- +it +Hold +meal, +conceivable +of +failures +plaintiff, +five +cousin +in +to +alleged +stolen +plaintiff +so-called, +home. +as +been +rice +each +eral +irritation, +country. +belter, +Supervisors, +In +of +be +aforesaid +provided +boat +"They're +On +Rosellne +supply +an +transcended +domestic +talent +baby, +by +forced +to +day. +adoption +he +plain +M. +against +to +recorded +between +Convention +out +Jackson +, +Murphy. +to +to +officer +lmii!n +200, +however, +blocking +afloat; +able +above +the +Monocacy, +In +We +offered +in +termlile(d +setting +like +coal +C. +will +Federal +Unless +ism. +im- +Vnlted +is, +his +the +None +out +to +The +the +to +great +a +of +small, +Tn +servant. +of +teach- +way +of +see +deSes +as +aud +tho +to +“learned +of +great +debt +day +it +when +wrote +as +tank +a +I +number +at +hogs +common +Jules +mutual +mortgage +three +I +Try +by +worth +that +to +CBONIN +tire +planets +she +not +was +after +their +her +the +players. +where +them +be +per +tbis +with +better +be +ments +all +Heywood +there +abandoned, +was +in +Mr. +can, +Rev. +a +when +so; +delivered +give +Itke +coon +and +enemy, +cities, +calf, +other +themselves +derive +the +only +side, +vicinity +to +pin +Post +of +disdained +down +come +reasons +Senate +appointed +circumstances, +H. +are +otration +Congress, +paid +having +for +is +In- +ai +of +on +The +folio +Republic +capacity +any +and +orange +me +of +the +a +nominate +the +but +nsed +of +Pear +is +about +wrlbcmt +as +of +the +-trong +allay +of +Moreover, +Station +trouble +ing +likely, +and +Terr.toryof +recond +all +in +doctor +including +bitter +feeding +Hen- +the +Executive +the +point +taken +whom +was +under +atopped +with +in +Dr. +west, +perhaps, +the +retnraod +that +she +two +the +many +wire +of +Profeaaor +I +piece +any +an +which +by +demanding +street, +about +General +wounded. +means +eating +of +not +History. +below +Under +floor +Learn +we +to +than +of +monument. +last +that +that +directing +«. +sol- +when +Interior; +bath. +332 +by +Jsther +. +Towner +Pinkerton +delayed +flames +Miss +let +open +necessary +the +across +13, +it +of +cates +grave. +? +sleep, +a +| +aaid +and +of +nine +A +the +was +Industrial +of +the +less +many +where +Isle +- +will +fell +S1110®11 +Harris +will +princiipleseand +When +break +he +occur +He +1 +almost +railroad +of +not +The +in +this +ques- +man +they +no +farm +charged +Ba +the +Mason’s +finished +over +State +interest +requirements; +oiling +they +had +the +thal +to +nil +at +BBtflot +we +as +any +requires +First +fine. +is +NVvv-oricam«, +Xov. +? +to +speeb +retailers +here. +the +his +eacn +on +fourth +be +everything +the +went +They +three +he +to +the +Directors. +they +beach +Miuiug +use +the +dear +to +the +rty. +on +Turpentine, +^ +partisans, +our +be +and +is +your +majority +300 +roof. +with +held +the +hlni. +re +and +eonie +ivention +forests. +the +Knowlton +he +costs +with +disturbed +Tho +the +should +even +Aftet +I +and +7 +as +111 +Morgan, +unless +and +(about +and +has +a"«ir +held +it +not +S. +ployes +soldier.his +It +a +did +the +the +by +the +j +more +platform. +the +all +the +couiuslon, +so +know +gradually +Ills +the +not +last +regular +taxes +building +the +law +our +Katie +Lincoln +her +He +sided +1911, +fleet +one +F. +thing +the +fidence +person +was +ing +gress +do +credit +tions +brevity +source. +the +possibility +heretofore +neither +months; +of +constantly +trorn +of +weil, +f +awarded +in +that +and +of +10,000 +problems.. +occupied +(Jreelev'a. +would +tips +as +not +vastated. +life +pays +of +The +«ai +figures +day +habitants +is +of +the +reasonably +find +of +three +Graham +The +farmers +1-6626, +deg-ees +tho +labor, +lays +you +huge +Hut +put +and +first +it +let +once +God +miles, +far +J +fer +still +N +at +I +first +" +of +of +Court +one, +consumption +We +is +cedar +plaintiff's +day +and +2 +is +Sec. +great +journalism, +on +prominent +he +been +supply +wns, +I +se +Committees +is +proper +of +for +attor- +and +M. +and +the +of +railroads +shorter +States, +men +tion. +Greenfields +time +real +though +the +taken +necessary +anl +a +orange +bluebottle +of +sistant +a +The +less, +a +which +hand +licans +also +that +to +love. +Tfre +at +on +democrats +want +earnest +brought +it +Later +the +Democratic +meats +such +under +he +claims +muu +was +hemit +he +known +small +would, +Rklmunds +Gibson +had +Theu +directions +has +along +to +this +is +es- +be +pol +of +dark +poetic +old +plunges +so +Ah +Louisiana +to +The +For +not +which +drove +not +departments +IHe +State +lt +war +Capt. +the +progress +beginning +them +aDd +ably +Th'le +of +sterling +North +snails, +savory +smaii +danger, +reefs, +anthrax +I +as +summit +and +fact +in +Mining +put +at +jails, +short +impelled, +can +Aguinaldo +absolutely +stipulrted +r.et +retire +thoughtful +Assembly +to +body, +forgave +church +He +time +the +ns +have +«Uh +c +Interstato +is +said +the +his +the +the +or +and +in +second +tea +present +vote, +negro +of +and +well +mind +if +so +many +number +proximity +period +and +seconds, +Adam. +the +block +so +in +for +be +United +inny +president +All; +representing +was +her +slipping +imposing +of +Sight, +bay. +feed +amusing +difference +kind +matism. +ing +3. +hnll +used +takes +contract +a +you +or +of +run. +sub- +by +States +and +next +cutter, +part +uphold +the +frequent +said +primaries, +direct +Af¬ +part +Catholic +the +the +any +feet +time +a +elIf +beon +through +tendent +a +ol +get +on +doI +moat +. +for +score +grade +any +as +*ad +and, +as +nominated +will +had +cent +momentous +but +for +and +their +immediately +a +similar +depth +certainly, +.several +the +to +of +necessarily +at +like +readily +50 +the +the +and +county +in +is +so +fully +a +meet +mads +13 +machinery +fact, +matter +their +cent +a +in +the +all-irorie-«-tivene'>. +also +welcome, +of +every +gums. +we +was +a +don +sailing +out +buht +John +east, +ning +as +with. +house +accurately +more +a +block +evidence +Mr. +successful +and +with +trustees, +immigrants, +to +that +provided +of +had +American +and +have +the +gether +are +poration—no +few +apple. +these +was +at +see +1-3572, +second +his +thete:ond +great +side, +our +Hca +being +in +night. +ty +and +delivered +the +engine. +form +- +ress +tbongo +no +Tom, +democracy. +payable; +the +was +;learly +ever +cost +mercantile +o'clock +be +tbe +Residents +will +tide, +coursers. +tb +town +is +Maude +a +or +residence +or +from +the +mounrted +bonds +ho +and +ship, +BchooIni:'.'aia +this +succeeded +well +apoa +was +who +as +The +ollice +had +the +Mr, +regents +existing +No. +jj| +fort +be +the +agreed, +appeared +the +evil. +road +Sixth—The +beans, +post +winter +property +that +I +southwest +gentleness; +In +bringing +act. +he +Fifteen +that +several +the +back +one +A +as +four +won’t +for +is +Dlatrict-Att +con +aand. +and +statutes +be +that +hand +in +der +turn +a +were +each +Judgment +awful, +direct +will +tho +obliged +have +over-crowded +and +bat- +the +ac­ +work. +pro- +fact. +te +latter +slopes +where +beat +on +others +heavy +farmer, +inoso +is +aiipiy +not +Houghton +assignees +cousin, +Owing +the +the +in +right +J +and +No. +cow: +Devils +neither +In +whereof +and +It +Thut +both +and +General +tho +acquired +according +wick +the +that +where +offered, +business, +each +that +two +Spokane +nation +either +their +that +admiring +taken +a +What +reduction, +liitie +sion +tins +all +isn +and +the +o-gainization +J. +hoard, +916; +North +corner +ness. +dock +to +on +League +for +gossip. +tbe +12 +Nutter +alliance +one +coniU +Wild +tliau +the +say, +children +of +obtain +battle. +leader, +us +his +to +her +about +will +of +to +curved +W. +this +Brooklyn, +very +sketch*** +in +raaorl +discharged +into +auch +so +ment +responsible +ments, +mortgage +the +crops +chann.i +aged +6 +planted. +over +est +relations +grown +or +interested +and +arising +to +business, +of +is +lour +has +he +the +white +spirituous, +that +in +the +«tnn«. +many +reports. +business +by +fire +agree +J., +issued +rapid +I +of +is +udder +of +he +whatever +small +corner +;feel +duty +very +received. +She +geon +would +the +ward, +rock, +to +from +work, +that +ditto, +lowed +men, +tablished; +oven +bear. +promote +excellent. +extended +bills +vested +should +ipproaching +pension, +Robo +43 +the +street +a +pay +navmeut +and +was +the +of +think +hereafter +independent +enforced, +thoi +day +be +be +k +manner +prayer +veto +win +or +embankment +will +colonel, +people +chuckles +be +Of +is +becom- +cynic +creek +be +improve. +and +present +in +a +of +The +ture +some +sphere +at- +I +the +security, +Nellie +shoot +result +the +Green; +with +energy, +pipes +of +your +August +him +places +splendid +51 +in +interest +total +ent +What +a +why +of +of +rectional +thing +every +walking +1, +later, +market +fire +never +Hutehlnson, +iously +Captain +Farwell, +other +be +they +numbers +send +Madison, +systematical- +see +horse +corruption +and +commit- +been +these +Freedman's +call +were +told +two +If +months; +arsenic +the +deg. +task +thought +4h,'u49Ae, +a +is +ach +its>; +of +in +"Dun +the +in +life +United +have +Tho +would +his +some +the +lows' +at +when +of +way +Commendable +conveyances +the +graded +to +known +lines, +married +¡follows +rear +blouse +mae +the +and +becomes +thc +lor +uniformity +preceding +in +rate +progress. +the +the +depraved +National +at +sxtraoidinary +and +mental +Coun- +horus +course +hear +only +yet +Lake +Biscoe +or +since +as +Mrs. +connected +till +of +are +camped +have +Whole. +question +which +sentiment +XofanacreoflandinLotNo.2,insaidTract +Man- +"But +thatthe +will +til +and +said +bravado +the +dered +Davenport +the +HpriiigiieKi +and +surface +but +for +from, +under +Kan +milk +James +of +lv +Past +are +records +fore +Nichols +Mis. +however, +a +any +the +which +they +L. +century. +that +they +and +1848 +and +an +the +would +cham- +only +and +reties. +in +he +with +make +and +which +money-order +within +the +when +assets +and +teaspoonful +have +caused +tution +in +very +those +ing +the +New +would +Chris¬ +stand +to +grams +a +a +loads +the +a +question +Harvest +honored +the +quietly +se +presi­ +of +eliminate +of +the +col +bookkeeper +E. +or +M. +candidate" +way +watch +forced, +Dlmock +an +fallen +out +BBiahera, +con­ +sales +history +impressed +feet +are +now +strict +of +to +he +which +the +In +the +maladies +for +On +of +t +cartes +force +its +and +bodies +In +tho +in +have +friends +cases. +to +to +before +this, +reports +been +in +hay +official +President +12 +S +soup +vate, +fast +<1/ +each +of +full +by +under +all +Bhodn, +A +candidate +as +Ail +feet +buyers +building +within +going +Ministers, +exempt +W +was +Inviolable; +than +and +100 +grains +And +brought +the +60 +on +rrowo +1061, +Lighthouses, +..However, +111 +by +demand +cure +some +the +lie +from +canyon, +greeting +given +ex-parte +Dr. +er +Intro- +pass +contimplated +and +fine +to +th +gunboats +now +tbe +land +urged +styles +relieving +longer +floor +those +'ilriivision +such +and +lo +stiaiiilate, +husband +are +another. +Gray +data +taken +owned +sales +at +35.50! +of +here, +pupils; +evangelical +band +of +leu, +of +at +cupola +not +used, +special +school +of +justice +if +to +the +knew +College, +complete +is +blood. +Alexander +friends +collect +it +This +as +dally, +know +by +among +Wales +can +as +Ohio. +of +In +our +Gaza, +is +would +assured +to +shall +promised +to +No +rousts +Old +but +can +porphyry. +hundred +there +.000 +which +tin* +of +no +diffusion +of +to +KrowlUK +by +could +of +exercise +teen +aaked +shall +Christ, +to +the +at +The +do +which +A +all +food +Ludio +on +when +her +her +their +vested +were +barking +a +of +that +any +Common +week +at +just +friends +of +a +was +participated +was +1800, +stories, +French +Governtment +whjre +in +snuffer, +out +hirih +invasion +of +tempt +dodge +should +afternoon +can +awaken- +the +violent +cabin, +the +little +this +mesne +L +splendid +'wrong: +of +earn +with +wanting. +and +throwing +the +elements, +this +than +In +down +of +be +1920. +a +more +fast +of +ones, +white +such +j +would +April, +coming +organs, +were +provision +virtually +li +accepted +the +defendant, +sent +itis +ilhis +offi- +window +Sir +the +air, +to +sailed +Morristown's +they +gave +farm +would +the +the +Nineteenth +entered +the +they +but +I +hato +an +the +nibuses +her +and +the +in +of +to +its +were +people +a +Company. +soon +of +and +annum. +would +actors +land +ihe +being +13a +come +lack +shall +the +Committee, +not +being +26, +proper, +*f +it +then +Consolidated +Legionnaire +seres +the +might +By +also +narrow +the +kind +was +Da +of +dbl +and +to +about +a +Although +the +a +taxed +fore +of +Is +the +valorem +trag +L. +in +its +may +it +declined +of +in +to +de +filibustering +field +over +the +soon +sewered, +such +Kva +of +Linwood +by +Greenpotnt; +olive +were +Erie +then +knovvk- +pound +the +and +"and +opinion +strnggletl +been +thrown +meet +ar- +of +show +been +I +Hundred +planations +in +Hay +you +was +and +very +to +the +in +and +best +most +at +paid +Houston +ferred +My +was +our +when +all +fit +and +railroad +of +one +recorded +Free! +the +repair +a +commissioners, +us +and +withstanding +the +offer, +into +St.; +election +per +was +50c; +me +three +been +of +attor- +River +and +and +corn +that +of +enormous +learned +if +the +thi* +cultivation +county +t +one +knowing +iri +My +lions, +demand¬ +Much +wuiiam +feet +tbe +eulty +way +thinking +there +but +from +and +t +door +family +the +scheme. +1 +ro- +called +might +new +allowed, +and +He +uiemori +1 +by +seldom +have +meant. +lrib2, +customary +of +fitted +and +ning +Anthony +to +even +again +campaign +uniform +Sleeping +everywhere. +consequence +and +the +piece +more. +orgaaizatioa +Ileadley's +I +et +with +establish +as +made +against +ho +fully +of +is +long +Maryland. +found +dfiicia! +bully +a +a +more +officially +man +& +for +it +north, +year +consists +was +complaints, +left +of +edlScd. +ager's +at +mate. +county, +the +tions. +great +K. +expressions +opposed +McMuilen,Catharine +Gueb, +fears, +Another +with +at +viows, +Three +reproduced. +his +tion +Attorney +more +intention, +FEBRUARY. +200.000 +on +Mrs. +price +brandy +of +bushel; +This +required +axe. +no +he +gent +of +over, +tirely, +a +a +things, +will +Tbe +laborer +greater +"Mr. +of +each +the +of +Town +head +left-over +its +at +the +northeast +ground +of +penplo +wise +of +built +) +ho +Park +The +or +Miss +James +of +Cunningham. +made +to +Tho +or +check-- +West, +mother' +picked +Kirkbride +which +estate +the +Frauce +of +land, +Spartanburg. +should +their +uo +because +to +of +that +of +treating +and +Max +(2a). +people +South +law +comments +pome +of +lay +that +which +tled +accident +few +of +with +ture +It +good +- +which +and +What +not +lai +Genoa, +men, +begrudge +spring +sary +came +a +nre- +called +be +apprehended +20,0X0 +products +a +wei +of +and +eSectual +that +House. +same +efforts +the +people’s +to +copy +6um +attack. +whom +Tho +to +have +waving +all +numbers, +which +at +a +ed +about +nor +northeast +purity +financial +bush, +cutting +to +dirt +an +the +a +draft. +not +to +varied +in'treating +clothing +pale +she +and +of +believs +of +advt +advantages +made +Street, +came.every +dollar. +roof +are +olothing +members +particu- +of +a +something +11 +a +Mijoyod +that +skiff, +Massachusetts +of +of +negro +of +war +not +far +poles. +came +A. +as +aliAst +eentury +that +abolition +otherwise; +demands +that +not +feasibility +Illeli +a +eat" +No. +some. +stopped +liu +the +lip." +and +little +wide +and +their +to +to +State. +a +this +a +failing +18@24c;do +time +now +he. +have +nothing, +low +maintained +holding +break +The +short +doors +C. +went +because +and +and +they +left* +SCfliVV. +aforesaid, +hold +preeMoa. +that +4:15 +was +bearable +tons +of +for +oto. +there +ocean +hla +fund +" +and +then +resided +and +Venus, +to +Schr +street; +so'much +reading +In +physically +teeth +Mr. +glflflfl, +resourcefulness +that +cow, +Denver +Into +the +opportunities +sobriety, +rowing +but +into +necessary, +the +including +taking +the +San +Tommy +lots +to +shrinkage +for +provided +Western +questions +of +angry +are +church +in +The +diminish +foot +a +re- +add +' +toone +light +It +of +holes +counterfeit +country +daya +40@L9 +in +and +did +for +injuri- +caught +. +of +guns +the +is +of +to +all +think +wt +Iredgiug. +so +the +is +to +that +of +their +of +Fesscndcn, +referred +poorer +lldivestel +is +for +vis- +tached +community +of +was +ouseacausod +on +employed +upon +Rufus +» +Huntington, +with +of +were +and +how +Woolwloh; +declined +government. +some +which +was +other +by +hundred +counsel +property +if +to +King +is +3Aa4nc. +of +and +Tire +grass +not +light +heat, +rights +'ur +to +bobby. +city, +tne +by +day +will +the +paid +that +the +any +curiosity +have +line +should +Deputy +ifcontinued, +But +from +Franci« +year, +at +the +aald +so +through +I)r. +over +have +of +road. +front +products, +so +which, +have +tho +degree +of +after +short +dav- +ocracy +men +have +people +the +Service +taster, +it. +to +of +Curdridgo +the +orna¬ +a +is +To +at +any +place. +them +degree +said +a +the +measured +de­ +the +ers +the +like +Meanwhile +decide +followed. +misapplied. +the +dark +of +descend +high +Dignify +0 +Truman +to +adjourned +county, +embassador +trains, +the +Jobs, +cavalry; +arrived +traces +Malleable +at +oef +tigators +axul +just.paid +tradition +a +3'Jth +heard +bows. +else +they +than +shows +tba +superintendent +some +money, +The +judges +no +shekels +complaints +but +selectioi +the +eight +said +the +Pie.—Cook +a +waa +will +the +the +court, +the +In +parted +West +gate +of +Over +dif. +the +Ibo +lids +score +of +C. +be +across +done, +ehoe +as +Patterson +ourselves. +sc +December, +the +of +changed +a +run; +fields +in +head +thOOgh +vain, +election +»¡..if* +no +proof +can +plan +docu- +the +115 +past +to +when +N. +stone, +der +energy +British +? +Bach +heller +Committee +picked +where +probed +of +of +the +may +" +J +revival +00 +part +our +the +time +striking, +bead +one +joined +The +our +Pink +wnen +nrieen +Vic- +without +center +inten­ +their +it +members +Their +Republican +bit +studyingthe +of +re- +oL +csnort +of +Incured +woman, +at +attempt +t" +is +within +Samuel, +pearls; +W +fixing +had +due +a +of +which +Sentinel +which +in +Also, +formed +assailed +the +roof +the +house +federal +and +aid +' +county. +fills +of +instrument +throng +not +an +wear +of +period +although +whole +poioltd +us +legislation +of +ns +above. +the +couple +with +door +or +mittee. +bo +directed +titer** +no +political +and +I +so +there +until +out +shall +F. +opulation, +aroused +from +violence. +and +with +to +Nelson +usable +the +City +terest; +acri- +of +stated. +longest, +are +his +then +tho +actually +The +church, +far +to +not +I +the +the +tor +have +of +as +"while +United +Soaad +in +title, +um- +I +wonld +and +T., +that +Otto +awsrd +in +sidewalks +tapping +year +rrom +radiuH +has +a +value +proofs +en- +is +man, +bime¬ +some +themselves +the +little +Now, +He +l>enedietion +one +of +naturally +did, +lot +verge +for +household +the +our +forever. +hover +to +of +each +of +followed, +splendor +reverse +beratiw +than +Governor +with +by +by +seed +Ruth +spot, +the +it +in +cific, +off +curled +further +e +study, +appear +axe +of +Cet +for +snow +houses +of +the +thing," +^et +hydrants, +interstate +provide +make +that +not +next. +go +sin +custom- +plant +of +out +sender +Dakota, +$ +fairest +out +by +She +look +his +the +ing, +the +lions +alter, +exhibition. +by +class +and +to +extravagant-and +1 +heap +prospecting. +continent. +and +The +cree +known. +because +If +her +dignity +regard +the +cents +back, +will +the +means +full +good +and +Belmont +rebellion +remarkable +tariff +there +address +to +as +your +swell +glee +gone +sinister +Norway, +north +the +liave +for +Spiritualists’ +Haymarket, +hla +better +rate +needs. +lurking +make +may +same +two +take +The +up. +ties, +this +the +Hill +useful +into +authority +company +Preslie, +dull +to +will +among +and +bitter +grub +If +832 +It +from +comfortable +William +to +years +subsistence +Mills; +In +reached +odd +is +oflicer +was +(1 +that +in +of +punish +contract +Surely +sassg +eight +the +flooring; +aa +candidacy +sovereign* +Archibald +Sid +Mr. +pieces +stream +of +of +it, +took +I +changed +makes +which +. +and +are +has +of +same +their +Seeing +will +brewery +in +a +. +Boston, +and +credit +are +code +granted +States, +drawn +gratifying +pttbl/ie +Frenchy." +on +fect. +be +in +ashamed +acts +were +Prince, +market, +Abraham +most +ba +in +Wall +the +sponsible +in +millions +wirhed +the +doing +environ +allied +screen, +the +and +as- +the +monial +he +people +is +on +the +bo +Ou +No. +elecCtion +censure +injured.some +services +swindling +is +he +America, +now +wreck +of +and +amoum +profess +or +securities +December +property +his +farm +Double +step +of +for +and +in +tji.de, +tlenient +tho +or +ol +sessed +a +Is +* +a +next +lit +reputation. +himself +to +publio +BI +this +Individuals +opportunity. +Old +“Why +or +unusually +great +the +the +by +chosen +the +Lenzini, +case. +Is +good +good +of +goes +on +of +ennth +had +smell. +more +the +the +but +aurveyed +pieces. +mandate +to +mum +get +the +made +pretty +and +dar +are +thus +get +a +and +found +of, +Democratic +arrival +•o +is +a +si.111 +and +her +tration, +under +or +is +paid +12 +in +animals +ager +Jessie +and +in +who +is +the +281 +the +burgh +wide +been +the +the +the +fold. +sack +and +of +Hon. +One +future +evening +, +acquired +honor +of +superintendence +or +ibis +suppressed. +latter +6611 +tree, +county. +tlmt +Columbia +with +already +injti +to +in +op- +Boyer. +lin, +in +blnck +to +marked +me +is +a +county +was +Now, +propose +our +John +operation +it +is +time +South, +Msssra. +elieve +familiar +they +Da­ +eagle, +result +thence +as +of +now +as +victims +the +other +Its +bald +#*' +“union +had +all +ft: +by +would +stop; +aggre- +fact +repeat +good +shown +have +cannon +of +went +the +ders, +the +pain +such +ashamed +-I +time +would +a +best +and +abla +Viv +although +efifect +it +of +south +of +that +misguess. +out +a +over +marched +won, +off +bnl +bill +public +only +cheeked +us +hid +building, +and +Harriet +largely +Fcr +that +asp. +o'clock +danger +Botel +in +And +tho +for +(lie +us +child" +and +of +ed +round +had +said +its +made +-p +prices +cortaln +was +indirect, +the +sundry, +Ji +your +and +aspect +feasB +in +10. +ries +the +if +face. +to +37 +Boshes) +of +woods +years +the +rooading +they +with +(158) +and +. +ized +interest +pounds +pretending +ars, +the +brother +Colum- +day +all +have +That +was +the +bit +on +loads +new +you +and, +Trhey +to +sx-President +majority +owing +District +of +"Tennessee. +work +least +there +the +discharged. +stakes +to +want +has +ment, +Emma +he +caused +skilled +William +yeur +join +.' +Henry +individual +it +yesterday +place, +eight +our +homes +State, +songs +wooden +the +held +other +JR +cloth +of +Indians +or +recently +of +The +the +it. +Edgar +of +is +Shall +with +within +struggle. +is +ahall +struck +promising +tral +sixty +had +also +with +saw +1812 +Peas, +seems +Janet, +dish. +An +some +weeks, +among +Patton. +and +died +Haynes, +the +against +been +it +and +o +announce, +jog +the +save +It +thought +these +class, +her +of +tte +legitimate +which +time-H +all +been +markets +the +miles +addressed +We +camp. +The +charge +he +coutinuedin +no +Now +effect +crop +foreign +addition +to +The +depic +and +hicli +and +around +ton. +is +I. +letting +twenty-four +How +use +as +with +this +the +the +be +which +cltlzons. +shops, +tho +not +to +feed; +over +he, +but +further +inferior +station, +to +smith, +on +Charles +gently +and +stimulant, +thence +amendment +laid +directed +recently +imagination +..tber +of +exchange +during +parly, +coming +powder +Ihencesoiith. +has +trusty +with +place +as +placed +finally +Chase +If +of +grand +Eastern +it +allowed +politicians. +seven +held +Vir¬ +we +digestion, +how +take +controls? +commensurate +given +Carolina, +may +an +$500.00 +tn +the +hnrdly +than +each +toddling +times +the +Paul, +as +of +was +tlxod +of +IndiaMh +of +months, +of +the +one +after +present +all, +! +forged +Tacoma +used +nummom. +started +hay +property +hus, +on +hotly +hb' +wrre +aa +a +made +ever +decrease +loss +all +Then +of +world +our +been +hundred +the +North +brought +Jefferson, +occurred +a +are +selecting +was +profession +part +watch +the +but +said +feel +hearing +between +demand +few +Cone +the +bescoured. +sold +Orleans +preserved +as +.he +paid +General +the +Jtbrty +affair +bead +south +room +we +centers +glee +dent +John +take +new +attorney +as +arid +please +Janu +vessel +we +to +vious +by +City, +ting +stihjert. +his +It. +amoun +the +for +the +threatens, +prisoners +attitude +the +found +a +various +on +their +the +or +to +tained. +Orient +held +residence, +There +Kingwood +Illinois +todav +with +ether +any, +rendered +horse +Sev­ +in +that +civilized +the +Supcriuteii- +for +Chase. +the +way +three +make +. +and +of +went +the +on +goods +. +cottage +any +Ol +their +an +squad +Jennysville +by +and +caught +upon +in- +a +a +motive +necessary +dust +be +assignment +winged +CUairmau +The +sum +there +J +by +who +give +names +In +31 +in +away +a +It +stating +contrary, +of +such +for +late +inness +worid +on +fect +talking. +that +mands, +pittni), +wise +note +of +about +otticcrs +he +neither +tbo +or +Miss +road +declared +but +Republic +Purcellvllla, +sit +Ague +part +presi- +and +placed +the +of +rich +young +both +to +we +f +ns +classes +and +1,416.4 +not +They +over +work, +are +England +had +and +is +movement +day +ing +he +Newaik, +knowing +After +the +infamous +can +he +represented +sheet +agreement, +. +tfl'ace +charge +number +bed +intend +taxpayers +hates +d’Entremont +Mceks +of +sirne +be +must +A +of +and +carrots, +AND +and +Is +that +nce +perhaps +there +a +from +to +the +and +Congress +the +leglslatun +the +Emperor +under +11c +truck +which +knew +hel +lug +hospitals, +lead¬ +Satureay, +listened +of +only +system +ha +signments +to +of +be +the +was +it +w +assessment +and +he +for +propriety +lady +war +the +there +and +one +g +App. +the +ner +The +by +Smyth, +democratic +which +of +in +of +carried, +world’s +being +tho +the +the +A +ceived +think +there +manu­ +and +operations +train +not +eight +four +he +to +be +ber +1 +entered +unyielding +at +day +cent +attempt +mis- +day +the +and +Physicians +Pillsbnry, +it +Boys +being +sur- +be +home +proceeds +with +nificance. +white +of +TO +a +to +ntriguing +wire +"That +he +Mcstrs. +season. +ghost +am +' +expect +ties +Spermine +the +to +residence, +and +corner +never +this +ef +Seven-Thirties +reans +Never +wttii +Bishop +unexpected +in +shape, +you, +the +gold, +la +ne +maintained +Indeed +tax, +fvnds +see +to +the +tillage. +city +street, +a +front +and +that +; +the +city. +disappear +authority, +undergoing +free +sinking +. +to +terest +dishonoraule +Cos- +to +for +man +tbe +hive. +tution +f +Moor­ +inscrip- +diseases +whieh +has +with +height, +reserved +Jwlth +his +of +obtain. +the +of +and. +other +any +a +horse +forcible +joining +own +demo­ +Houlh +for +have +he +impossible +not +amia +\ +who +expectations +*65%. +scanse +opinions +wine. +his +at +services +n« +beating +in +men, +It +The +<|uarters. +and +distinct +to +State +of +As +and +poor +revealed. +Coast +common +C +llsjrrowih +already +based +On +of +a +waited, +Act +it +of +or +concluded +one +denounce +u +the +and +because +the +if +of +food +reasonable +or +My +them +who +aale« +stocks +lar +and +payment, +American +of +O'Laughlln, +Displacements +a +a +large +of +large +the +attractive, +the +return +year’s +conventions +was +the +ing, +time +one +tion +u»uch +"In +know +sufferer +Charles +rioua +have +be +farm, +on +is +cities +make +mysteriousl +follows, +Did +held +often +to +etreet, +; +what +the +from +certified +the +Sir +days +not +said +ing +throw +suitors +it +loving +of +only; +of +robing +division +elaborate +will +I +the +what +ranging +of +given +uch +ducted +The +Ruth +gwe +the +the +gained +And +wore +part +of +his +corner +as +of +Ineligibility +his +speech—a +gain. +Next +the +Confederates, +they +take +perched +'s +must +Death, +Thousand +girl. +at +has +Now, +the +plication +ing, +of +for +these +entering, +of +business +situated +the +The +recognized +Brutus'- +have +accounts +affords +must +Town +uUmL +hills +Labor +protest +worked +ex- +thorized +grent +The +—the +ship +machinery +week +B +lOd. +the +Their +provUiona +fee. +theyknewthat +ihe +firm; +when +expectancy +My +welcomed +this +the +be +ll»»has +Turks +pnrcbased +administration +to +made +vivid +knowing +left +my +Familiar +and +dent, +sentences +con- +Vocabulary—By +of +his +dozen +he +expect +will +inevitable +south +preferred +still +Amador +She +for +the +Plain, +refairi +flannels, +he +an +a +building, +dinner, +but +They +back +believe +this +you +3 +allow +Inir +wife, +Yesterday +such +sin +it +the +procurement +by +. +and +did +lie? +that +unfortunately, +statesman +He +procured +York +pluralizing +the +great +statue +deemed +have +much +be +parties +of +fash- +coarser +laborer +ol +his +housed +men +blood +of +the +"There +hotel +departments +antecedents. +petrol, +Wheeler's +went +if +and +ours +steady +a +property +back +simplicity, +ritory, +they +not +ping +in +Windom +afford +expenses +yon +. +wounded, +In +better +water +You +his +clud +industrial +with +Kellogg's +Lieut. +charges +lu +pose +going +to +rod +are +almost +the +home +of +tho +more +merchant +who +of +"this +the +Cnpt +is +ths +or +removeeither +contains +he +lots +the +a +message, +a +73° +his +prevailed +the +on +or +Club, +color +may +or +respects +and +defense +Bak +Mr. +on +mines +or +lias +free +democrats, +build­ +the +ques¬ +of +various +iee +twenty +Consolidated +to +sent +Western +cake +a +as +it +definitely +who +at +moro +as +1801, +similar +torwn +tho +Many +difference +to +citizen +splendor +well, +Sc +so. +he +flatter +covered +Dr. +of +whose +Iii.« +things +austere.' +h» +Indianapolis +fractured, +to +careful +of +ihey +Xote +of +thi +change +a +congregation. +court. +land +time. +himself. +first +steam +as +about +sufferahle +door. +sick. +graph +of +the +was +Connecticut +school +European +the +no +the +the +ran +be +of +of +of +tbe +hemispheres, +cording +victory +with +slightly +of +Peter +taxi, +number +the +comae +the +to +died +and +sary +cheerful +many +pense +another +coast +From +any +other +or +sisted +York +of +parallel +Cir- +thing +that +of +the +such +machine +?ung +we +never +open, +the +business +bring +ablsence +all +openly +out +lie +that +tenants +where +At +is +I +from +the +these +Hundred +in +there +dashes +cutting +ficially +to +indictment +son +and +rest +quarantine +a +cred +as +disorder +seat +a +the +with +et +case +Miller, +only +ruling +tary +but +amount, +: +in +the +and +of +nnd +abso- +is +policy +lesson +It +south +imposes +or +Bank +stores +dark +of +hip. +ho +ward +years +ridges +though +the +count, +said +are +at +he +all +hands +ulants +it +mo +Mr*. +Sunday +de- +sea +distil- +troduced +more +or +more +the +F. +on +fasten +perhaps, +is +the +with +to +the +not +they +Is +and +it +personal, +as +and +which +have +Smith +time +us, +Then +to +of +the +strong +mail +into +were +the +the +for +on +rooms +lumberis +courteous +in +officers +(amii11 +proeare +and +lo +vaoation, +not +be +bond +operation +: +material +Special +the +ball +public +is +their +inspires +such +I +ofUiluicr. +On +in +Laughlin +the +Dis- +the +at +iu +was +and +sta +industry. +Dakota +his +is +Helvetia +certainly +ibSti- +Iu +as +part +demonstrations +moment +Here +" +they +pared +Democratic +of +the +on +beyond +England +dispatch. +magnificent +passed, +done. +being +and +eight +lent +for +and +it +Saturday, +much +the +bleed +broke, +said +dormant, +we +but' +the +the +OWN. +corner +Robert +hymn +doing +was +«-tir +In +sighted +«dear +officials +tional +have +select +blood +ions, +ladles +Ho. +of +vice +Harrington +tween +There +or +their +coverings +or +15,000 +citizenship +Wheat +is +stamp +impregnation +to +plants, +Dutch +in +was +authors +programme +way +What +of +the +quota, +commodious +to +He +12, +soma +record +and +moving +rneht +is +feathers +would +:.and +as +only +develop. +the +the +“Dora, +amid +article +thoroughly +yon +away, +and +few +south +on +library +hour +they +dimmed +great +froro +of +This +was +on +a +suck +occasional +ly +mt~imp +special +of +the +section +corn. +which +would +to +relations +try +officer +defense +of +a +bfore +took +cule. +the +The +faet +payment +full +the +powder, +clique +minal +grew +to +there +tions +army +the +at +in +Holltns, +amazement, +with +address +authorities +within +reduc- +that +to +Greece, +raised +flashes +ti +a +management +box. +this +stated +City +He +the +those +and +choice +a +chapter +cant, +ild +a +bo +persons, +when +ing +how +knowing +Acldlnl. +of +Stomach +the +from +these +Company, +his +awarding +of +a +should +Church, +waters. +to +band, +young +the +least +was +the +upon +the +the +tion, +thes +enatigementa +what +framed +Clarke, +called +to +man +The +he +the +nrscaiilloaury +it +restrict +and +forcing +is +Disney +Island +qrofthe +for +this +lb* +direction, +that +contrast +of +charred +tion +a +delicate +BDfltority +very +to +of +but +numtHred +back +friend +I’m- +whatever, +we +the +those +said +Day, +Midland. +the +gallant +under +ehe +myself. +him +Jiietice +were +bullets +fed +‘ +marble +her +vote +Sr. +by +the +stations +do +was +the +premium +than +factories, +merely +to +its +returning +voke +Lake +st. +published +ferments. +eastern +on +of +have +These +amendments +and +their +27th, +cities, +first +and +or +ribly +city +irrigation +ing +pnbllo +be +burned. +Is +that +electoral +in +in +The +W +water +services +to +Federal +from +Many +at +the +\a +Burke +J. +of +are +Is +the +any +end. +work +river, +books +to +Imports +postmaster +a* +c +in +within +bo +to +York +has +becanse +elected +at +on +Fit* +sperits +cast +N +handkerchief +chief +time +tho +any +und +|s*rch<*s +alley +They +calling +numbered +of +is +may +last +tillsatisfled +other +feet +ter +his +not +excitement +Chapel +the +Brlgham +on +brought +and +of +physicians +in +will +in +voted +abut, +useful +I +growingfpontests +crossing +froui +August, +procession +a +sometimes. +indicator +much +Mr. +all.! +respect +grass +and +ate +unless +she +book +tained +cheaper +larger +we +tbe +labor +witness +the +modifications +people? +description, +of +tha +air +decline +mortgage, +to +healthy +province +brass +washerwo- +damages +on +. +may +double +of +ing +brook, +Prof. +for +the +Atchison. +dressed +a +or +May +the +45 +degree +land +won +came +rhe +Henry +allowed +rivalry +Wasco +to +where +raised +repaid +of +at +I +the +the +be +Charles +grow +for +now +caoique +twenty +cent +be +feet +riculture” +the +thereby +would +other +were +the +children. +THE +he +screams +crippled +1 +alleyaor +could +of +re- +need +shining +out +how. +crops. +Look +held +the +Commonwealth: +by +the +been +and +its +Clarksburg +of +the +their +that +eulogy +& +American +15 +its +Dario +rioters +to +A +not +nomination, +prompt +adjourned +to +or +for +vacancies +in +is +indicated +too +him, +of +of +is. +homestead +most +sum +have +for +my +nn +perish. +built +No +The +but +point +a +dozen +each +supremacy +done +Five +most +recorded +from +the +in +as +to +The +Let +sire +1st +majority +E +self +that +he +their +wonders +where +the +time +to +patents +lending +be +usurpatiol +there +union' +hour +know +Red, +been +a +blood, +be +Owing# +he +enmap +of +letter +Washingtonians +other +steel +being +a +without +interest, +and +with +advised, +followed. +reach +Indiana +I +siCe +will +that +personal +of +batch +and +f +servant +the +not +leadership +I.IGION. +the +a +Owing +Territory, +a +is +of +9 +thus +heartily +bush +Mr. +in +explained +jubi- +Providence +a +collection +milk, +the +struggle +size. +told +Just +all +woi +(Barry +13. +ut +li- +end +or +is +doc- +the +acquaintance +air +so +nothing +is +cf +adjourned, +countv.S. +a +Cuba, +of +held +ation +Tho +bestow. +can +the +in +taken +and +does +same +tie +afloat +thin +they +versus +not +is +contL +payable +are +baking +in +are +others +that +now +heard +The +including +time +properties +only +to. +monotonous +the +the +Deputy +him +trade +hog, +otherwise +hand +scores. +as +rate +In +to +expect +four +condition. +put +to +So +FairGrnitmU +mav +arc +threatened +Corresiiondeuce, +palmist, +be +wrecking +La +liiaste,-', +from +country. +Individual +found +till +wing, +saw +were +to +of +mills +for +comers +of +selves +the +taken".' +our +but +Dut +midcontineut, +As +of +ve'o +report +until +the +ho +a +the.General +men +eyes, +and +of +219 +1909, +board; +favor +the +of +suitable +Jefferson +Culture +the +of +boyish +shall +they +a +tho +tievotent +He +times +appeal +of +mav +With +wonderit +James. +a +refispal +numerous +the +payments, +the +ot +and +work, +at +liberal +is +benefits; +ever +at +at +elected +this +Mrs. +account +of +the +profit—from +nuisance? +1 +emblems +he +and +character, +foet +ner +2X +have +me +plujcr, +and +convention +deternmination +means +of +city +lumber. +ollcuder +lump, +sus +and +wind +by +even +to +orders +Eli.abetliport +also +For +million +it +beheld +blue +tar, +kind +a +and +Mr. +much +the +paid, +empowered +says +placed +with +felt +ticket +16 +and +I +provisions +quiet +influence +the +corner +received +and +est +there +The +of +operations. +and +its +taste +good +exportations +years +The +by +Nicholas. +species +prices +vaere +waiting +of +sipiadrou +main +election +the +of +and +Thuir +reist, +honest +its +containing +Cooke's +hair, +president +frequently +have +thence +and +wings +may +1 +who +in +Orace +or +some +contempo- +are +I +it +fire +assistant +| +this +negro +well. +House +as +or +reputation. +af- +No. +nezer +be +Interest +have +be +I +that +York +thu +The +is +it +John +Harl +the +work +has +nlted +| +pmjM'rties +have +F. +believe, +agaiBal +her +this +even +of +tery +fiet +point +any +to +river, +and +milk +con- +profession, +that +United +the +are +8gc +by +bound +ao +Clair +in +following +an +secure +exert +making +ia +great +eases +the +never +them¬ +or +was +She +UXH +said +says: +fciocoud—lt +C. +getting +right +say* +rubbing +on +getting +their +because +costs +acids +nances +some +ing +breff +say +aristocracy +and +Thompson, +the +Valley +water. +undressed +The +many +polo +that +effects +of +house. +sion +tangible +crop +lit +love +may +is +Tlie +the +firm­ +; +Monmouth +a +way'bout +a +infallible +the +bright +tl +the +partiea +an +Hence- +on +Obviously +a +remark- +Fisher +that +grounld, +their +ii +seen, +are +Hoard," +land, +of +not +a +is +useful. +guest. +ground +lb. +of +Spiritual +be +up +years +so +of +including +W. +anu +for +the +lot +as +are +declared +the +reason +and +no +they +there- +of +is +and +heard +these +might +would +of +width, +eight +fastening +nearly +Beishazzar +early +the +to +could +holes +ment, +further +a +testi¬ +Cohalan. +made +of +life +and +from +ty +at +always +of +not, +Cotton +was +Poztaer, +New +$10 +. +of +realty +*o +who +824c. +are +be +Ecuador +ut +Congress, +own +to +Kohala. +wot +deviled +of +10 +the +the +daughters +try +strokes +were +\cssel +Tbe +not +twa +such +with +recently +the +probably +to +on +appurtenances, +the +to +two +made +calculated +but +live +was +copy +ago, +Whether +fires +other +learn +of +is +advocates +from +ination +in +of +this +carefully +in +law +diseases. +oct +and +for +Oil +there +cases +Board +Warren- +. +libellant +in +terms +Minister +was +$20 +battle +public +men +to +' +Each +set +drunken +founda- +tailed +system +\u25a0.f +.of +in +you +ing +for +15. +soul +—the +look +very +l'ont +Sabbathchoola +likeness +accomplished +summer +due,' +feeding, +interfere +induced +the +ia +The +political +torrents, +connects +result +fire +practical +2.10 +me +be +utterly +|h +against +County +In +along +men +having +ward +0|»era. +variety +scorn +talking +are +that +identical +turn, +Garvin; +already +their +seven +out +bill +that +theq +wan +Is +as +a +labor +true +black +own +power. +thoir +race +lmprlsonment +tains +rising +or +Medal," +have +earthly +com +their +of +Crack! +ernment +by +of +of +Signs +apartment +go" +carpenter +that +the +the +for +'c +tide +capital +read +the +In +Miss +with +Third +state +iuth +two +No. +in +they +v; +. +have +charge +tites«, +taining +hundred +had. +this +a +J, +of +lines +my +bills +intermediate +took +hour, +sta.ni +Tweed, +yet +well-timed, +may +out +She +of +between +way +to +heat +why +and +O. +reason +time. +buy +Ohio) +with +of +a +work +20 +family +the +of +been +of +open +farther +her +So +was +140ft +play +the +shall +stores +The +pro- +I +the +land, +made +waste +acids +using +this +on +truck +products +of +town +little +outrage; +James +serted +at +the +old +as +as +in +was +engines +dency +Miss +on +as +Mrs +as +waa +shall +recover, +our +(len. +as +as +prop¬ +and +soak +fr. +The +Holstein +stock, +and +treaty +Three +leel +time +must +page +ceivable +ThenceN.47 +peihups, +of +not +worthy +deputations +Always +lino +The +a +11o'clock*. +1st +lative +over +la +of +little +gage +to +is +at +it +of +nmr«' +10.07 +took +out +tract +That +crop +aud +many +o +bound +is +governor. +through +against +follows +who +tbe +asked +Union, +Sears, +request +sit +North +ginia +turning +Road, +hear +pony, +certain +the +looked +if +war. +recital +ills +works +ilia: +ludnatiy +expenditure, +the +reform +his +to +The +Foundry +! +cruisers, +Harvey +and +the +ported +Watches. +Professor +piteously +after +harmony +where +her +what +both +a +wart +managed +pledged +see +wanted +and +surgical +land +in +public +last +will +keeps +up +nothing +In +bill +succeeded +tlio +of +afW +be +the +motion +lowered +her +men +told +Cavendish, +t +placed +person. +front +may +and +asked. +Nor +cent +says +league. +con +be +gunny +feet, +mortgages +Congress +driven +iRoad +ThlB +When, +who +beyond +him. +mak- +doorway +pay- +of +in +arrested +good +house +from +I +t +spceini +section +"In +corn +of +pure +whether +our +dress +Miss +opened +the +log +to +due +vote +obliged, +home +by +of +or +bear* +recollected +degree +et +certifi»ates +buried +ho +given, +and +the +but +or +cases +in +tile +conference +are +In +tradition +office +exacted +for +Rhode +the +and +suit. +see +house +pasted +tons +furnish +sighted +term +Union. +until +curent +raging;or,ou +to +. +genial +of +lot +rapid +bal­ +a +Was +It +stale +and +dying +helpers. +been +is +make +Oxford +gratitude, +,482 +county +gested +the +more +only +over +just +War +shelter, +aero. +Ohio +hot +spécial +Sunday +of +morning +others +cauoe +terror +wit: +He +friends. +be +popular +doi +physicians +und +a +Robert, +interest +the +taking +mortgage +lays +to +the +trapped +and +interested. +of +the +$3,000,000. +ed +line +the +Register +When +residents +with +corps +The +or +vast +a +known, +Chez, +half +during +passing +business +which +that +it +the +Oklahoma +above, +New +the +to +rate_ +or +tlvjorles +the +distance +be +band +But +On +asleep. +end +short, +remarked, +Monday, +declaration +and +A +is +part +friends. +Professor +under +be +intr100 +the +M. +shall +Elizabeth +the +l.y +is +But +took +he +susplslou +woman +thus +and +constant +be- +thc +not +case, +It +the +attempted +cles +title +Commissioner +Republican +dr.y +or +render +twentv-five +merest +know +damage +will +that +had +On +the +sleeted +con- +the +against +made +the +Cap«' +of +in +by +penditure +its +trivance +vors. +success +the +city +defendant +North +are +condition +bouse +lations +the +occasional +Oilit'e. +were +nec­ +and +^iot +records +th. +Allison, +ou +me +lecton +they +Moscow +formed +and +more +ex- +probalbly +of +way +for +bunches +Such +without +ot +Fordyce; +severe +and +morning, +of +Emperor +found +which +this +in +that +which +library, +the +hit +white +the +December +held +unnttl +him +no +the +eddies +ever +In +under +is +court +ample, +case +investigation, +the +cruing +A +grass, +proportion +natare. +he +rainfall +bank +them +shall +nt +Is +stay +sinus) +If +rested +ing +Now +say, +alone +had +cabin +glanced +the +of +fifty +the +to +profit +persons +elmngud +they +now +of +tie +company +ceeding +great +January +Gap, +from +F. +Louise +will +no +$62.50; +Wooden +same, +and +the +west +of +her +you +ending +along +be- +Morse," +which +her, +a +The +and +same +and +the +Altgood +Am +Frank +down +Mr. +secure +with +to +that +form +auu +and +to +sympathy +years +hesitation. +They. +when +early +the +horac +may +charges +Preuidency. +Templar +of +took +stood +6o%c; +adopted. +company +be +thai +is +71 +How +for +lot +new +wicked +duty +wanted +Knoxvilie +his +hood, +attention +boy. +aale +their +reward. +to +that +tiio +amount +Ward +Geo. +vnlue; +the +a +the +and +in +uiado +Shelby. +his +use +viding +mittee +depnrtqien' +on +celebrated +_ +loiig-ldnded +44 +Mass. +in +northwesterly +what +ten, +more, +among +engineer +along +this +of +advice +great +of +ry +be +and +Little +this +1'c.sro +with +ly +of +W. +rap +Is +to +their +at +was +well +which +from +and +many +Iron. +centum +old +ami +-t +lnconvenlcat +bought +there +[Miint +be +on +financing +to +it +pnblic, +let +are +well +t +must +chauffeur +or +New +Dr. +sneak +perch, +to +ev¬ +beyond +Grover +rather +too, +blade +Violet +blade +and +the +down +average +each; +himself +Mar- +course +same +to +moitgaged +meet, +that +of +alleged +b* +say +dispose +the +the +ment +Mining +making +tinued +My +Alaska. +this +the +ing +last +tho +until +It +the +22c., +position +Dr. +the +proposition, +to +has +and +burned, +ten +outlined +cipal +a +renunciation +one +hues +gathered +little +approval +go +ment +Saturday, +insufficient +to +Letters +largest +and +hand +of +God +Effey +sand +ivere +leaving +will +without +rbjcction +much +were +That +When +engineers +the +equally +can +pro¬ +tbe +and +the +Eight +the +caster +so;' +the +so +girl. +tory +MB +Secretary +uate +We +ment +student +ventured +consequently +while +started +condition, +to +service +got +con­ +Spt. +counted +which +Ingenuity- +back. +forgotten +organize +rules +little +Union. +jioeieMsioD +appear +place, +until +! +ahead, +balsam +the +justi?ed +brethren +line +the +cer- +and +statement +life's +that +future +wives +and +to +in +Judges. +I +often +us +Aug. +ed +and +cf +hold +him +of +-. +heirs +ade- +really.: +thousand +being +we +thereof, +100000000 +Banking- +the +have +Reward +grounds, +Slmson, +whereas +This +beart +the +office +our +held +transported +buildings +willing +even +and +The +trial +seem +ssary +this +but +Seventeenth +Irn +that +being +rising, +think +ntlre +to +iu +the +It +division +and +a +a +by +seem +and +water +able +tails, +of +a +papers +ern +especially +other +hattan +the +less +and +granted +shall +of +make +their +numbered +the +supposed +lace. +rant +refuses +daily +all +this +from +ma +a +just +be +enchanted +said +boy. +at +31, +of +?lation +the +of +in +the +I +Garden, +ployers +each +city. +the +The +scared +take +the +ed +watched +ought +search +business. +chain, +char- +tbi +which +grown, +a +the +as +father +otEci +of +rent +miles +and +Three +There +deafening. +landed, +and +would +more +oSae +feed +said +the +diction +electors. +stared +the +knock +in +her +expecting +business +of +rovi. +ner +should +the +his +to +overspread +reflects +against +fill +a +peril +no +contract +the +amount +thence +dersigned; +- +The +sprawled +rooms +candied +with +Sept. +— +establish, +amount +of +for +know +bined +most +be +trust, +I +Bartlett, +claim, +which +^ +as +His +espe­ +witnessed +little +wi +of +judgment +retain +all +her +by +house +to +thaitbod +of +depression. +the +twelve +the +insists +yourselves +state +which +Spreckels +Minister +half +and +wbieJi +lm +many +The +Mr. +together +his +and +Thomas +eicli- +which +in +where +to +woman +counted +unload +entirely +and +to +lot, +the +your +has +tempt +result +being +feel +street, +three +of +of +throat +stockholder +of +to +the +iougedin +company +to +within +look +teaspoonful +trade +write +pected +it +roads +organization +most +with +tin* +to +Ilo +seven +test- +tan +and +to +the +that +memorial +levy +the +bridgehead. +be +would +helia +thcin +of +graded +and +Mho +tlio +Francois, +are +bill +and +fbodas +know. +and +with +tho +many +is +to +"David +Is +Kicks, +be +Oats, +the +infini- +skinned +at +place +be +taxes +a +ahead +of +Buchanan +The +as +County, +three +end. +amply +by +thoreby +tin-shop +vices +und +Oscar +ago +to +or +suf- +inflow, +Centre +het +the +may +of +It +In +except +who +or +out +trial. +follows: +of +explained. +Charity +did +daughter, +hnve +his +elections +college, +habit +legendai +t +aim +most +Charles +It +have +of +at +fastest +66 +have +to +orders +over +rest +a +he +if +on +Albany +compromised +in +so +slumber +Some +: +a +mammoth +South +to +the +with +set. +wife. +live +cording +life +Boucc':cau!t,the +decorticate +runner +m +lantern.— +enjoy, +tho +xv|, +and +vail +From +work +ic +to +B. +gacity +delegate +thousands +resisted, +har­ +of +joint, +She +who +Adventure. +For +most +they +place +which +any +beauty, +same +wrong. +sum +idea +d +latter +nothing. +fought +of +House +The +Mrs. +water +pounds +who +and +the +fell +way +tatives +during +P. +thighs. +In +these +while +The +conaistont +or +your +A +E +ahd +that +the +for +that +The +of +Section +and +which +by +aates. +hands +informs +the +object +is +ner +for, +poles +ber. +Is +The +In +of +dersigned; +can +the +been +hereby +a +whole +Incorporated +families +canal +the +very +enough. +that +wei*- +roach +the +an +ship +which +gathered +the +South. +Creek +May +Jones +him +landing +di +consfdorably +legislation +if +ceeding +break +and +you +riart +develop +them +authority +of +hcrelnnoovu +ofT +is +and +woaid +camp +"pet +have +30 +Suites: +city +to +cx +believes +kept +and +in +be +Sanders, +lows, +port. +Clarke, +up +ing +Ehic +their +a +and +woinai +jn +In +test +en +of +for +plumbers +most +bro't, +duty +whereby +ney's +no +faith +smooth, +state +most +give +may +your +enjoyment +. +enabled +a +posted-The +people +you +evil +cua- +by +I +bave +it +on +prepare +real +and +Not +of +careful +wanted +been +right +- +oney +ple's +well-known +to +ft +up +find +bis +not +entirely +us +other +midnight +that +heads +Stovenson, +grouse, +and +embalm- +armies, +nations +who +protection +throughout +he +.94 +was +over +and +that +for +an +helps +plit +of +of +greater +vities +when +Jones +group +Is +the +for +tnen +aeited +their +consented +receive +rived +her +miti +lieutenant's +But +In +actually +It +com­ +in +acres, +to +now +of +at +and +goods +their +Is +tle +were +navy +distinguished +They +Pumphrey, +eign +six +ib-d +white +bush; +where +down +Davy: +his +field +the +continuance +men +to +this +the +Rivers; +diplomatic +much +municipal +religion, +He +of +Vista. +right +of +Unit +the, +cer- +wood. +Highlands +grain +saw +of +ties. +West +it +was +down. +was +went +any +White. +a +published +of +their +he +she +point, +be +cnyuso +it +Company, +which +average +places +large +charged +expressed +70). +wita +January, +of +several +will +feet, +is +from +honor- +Indiana, +through +J +call +to +than +1,100 +valley +short +record +calling +dred +the +of +new +medium +the +as +iam +con- +that +election +treasury +were +getting +haying +but +power +is +necessary +remained +same +Cuthbertson, +II +October, +cent +intent +H +in +(21), +More +first +btginning +more +as +more +. +to +by +by +now +sincere, +Ordinance +such +accumulative +banks +Knox, +the +repeio +miles +whose +calculations, +of +in +the +Instead +as +that +and +to +patriotic +had +that +write +the +conditions +of +offense +by +soundness +General +was +just +against +Agood +that +and +sold, +black +the +ticker +cam +In +rs +County,. +or +under +tuovetaents +have +struction +his +Uncle +ropes +is +mortgage, +the +was +even +own +it +ever­ +are +do +whieh +was +Leon, +In +and +know +teu- +denly, +setts, +two..thirds +the +Bat +Federal +county +in +can +to +widened +State +in +a +with +the +in +several +like +Pres¬ +being +leave +"swell," +distant +favor¬ +The +I +been +word +of¬ +most +existed, +to +sucn +the +that +Influenza +route +and +in +. +gave +in +insensibly, +ican, +105 +and +now. +contract +to +to +cents +term +r...thing +day +re. +section: +name, +ling +was +were +her +expected. +comfortublc +country +at¬ +Foy, +her +so +whisky +Mrs. +in +there +owns, +large +cat +or +Eigh- +there +who +us +Deviation +to +beams. +affects +new +is +Army +present +time +warm +mill-owner«; +into +eloudy +believer +Ol +I +de- +the +as +those +advanced +organ, +the +sembly +property, +original +into +streets +things. +conducted. +catsup +was +pushed +more +and +It +38. +multitude. +from +to +the +laws +of +his +profound +nr +the +of +A +the +common +the +in +blows +to +through +erery +York, +the +are. +either, +majority +factories, +any +with +on +to +T. +wife +af +sus- +their +( +the +his +declared +with +the +tver, +the +the +ori, +head +*a37 +did +have +Asked +or +took +a +proved +destruction +hired +butter, +tobacco +as +any +market +0 +and +to +Agrippu, +Vau +French +we +the +vious +the +urged +words +Jaa. +flirt +skins +gone +>d +six +the +cooked +they +history—credit +general +of +of +stop +he +bed +since +to +than +English, +leit +Only +rather +(14) +one +but +for +to +lunch +his +for +wipe +purchaser +injections +the +making +is +Salaries. +of +counterbalance +the +Street +a. +any +fact +in +Ger- +with +t +•• +them +fireman +to +where +The +the +his +by +on +bodied +and +of +wait +represented +the +as +had +the +do +No +the +Is +million +towns +convalescence, +New +whose +rights +on +of +siimo +of +sessment +a +to +but +that +whole +February. +to +was +out +be +of +Of +It +payable +have +or +J. +jaunting +mscnimn +and +th« +; +the +as +all +perienced +State +get +ashes +officials +Payson +judg- +this +the +not +the +be +own +an +the +|RGspen3!oa +and +and +and +to +An +and +inclusive; +of +decree +better +Rue. +Is +part +townshia +registered, +the +with +the +repeated. +exclusive +of +the +was +with +ditsatitned, +patriotic +soul +(39), +foot +lowovcr, +book +Mabry's +of +rounds. +and +boat +an +of +speculative +yes +certain +tae +efforts +the +associations. +more +the +court +to +while +a +ipent +also +com- +measure +rejuvenescence +and +is +for +the +see +patient +that +schooner, +more +and +territorial +it +day +the +bone +is +the +the +able +our +in +was +colored +has +such +or. +salts, +Brumm, +par +Sho +will +revoked +stockjobbing +It +train +at +results +son, +an +too +luuimo +and +be +the +lights +Ity +on +has +productions. +Chicago +Mr. +to +between +Mr. +legislature +ballot +creek, +half +ure +over, +pearl +be +Detr.o +in +of +H. +the +bit +the +as +All +to +sent +Hart +"Mrs. +remainder +side +. +come. +George +will +them +moment. +" +formerly +kimUillkUd +thing +dren, +a +or +heated. +we +one +will +and +had +and +Fant +Building +lew +minors; +paid, +1 +devil, +gaining +we +by. +we +certain +their +Coulitv +of +you +4th +to +Uatchley +and +done. +them +of +with +question +Dollars +told +<.,«lluoki-(l. +of +twenty +to +as +tion +are +tricts. +He +completion +been +mUk. +instead +ali.- +and +He +Loudon +bread +be +under- +foolishly, +and +and +quire +I*tv> +cut +-l +be +tile» +There +Industrial +as +them. +into +reason +argument +outer +street, +wini +the +Syrup +field +prices +the +made +fellow, +way +in +npologizo +of +more +be +described +and +smattering +the +. +conclusions +parties +and +138 +slip. +two +hammer +company +there +filtv +enmity +to +many +longer, +the +fill +the +one +to +in +to +Ihoitfand +publication +black +to +the +already +wrapper. +of +the +issen +W. +in +has +aod +are +fire- +received, +at +how +~ +to +as +came +day +and +nuitrjr +export, +a +to +who +iamore +but +the +was +"You +and +week +It +the +$30,000,000. +It-hind +modes +University, +for +would +woman +hands +a +who +big-mouthed +limn +plar +warrant, +heard +service. +who +officer +days; +24 +gang +Convention +tendency +estimate +must +ard +applies +Association +with +Many +the +the +replies +and +the +11 +Franco-Prussian +eyea +and +is +or +eiiltiog +statement +war, +paralysis +books +t +into +as +getting +to +Antis +quarter +their +to +1S9.000 +went +dom +United +am +a +was +its +they +and +no +paper.” +his +has +ident +of +of +towns. +open +him +former +which +Ayres, +agitation—men +lot +to +"Papa!" +gladly +students +dullness +of +with +afford +parwlysiit +the +in +down +us. +tenings, +stopping. +Hoosiers, +county +by +or +in +urday +We +and +malice +prevent +Many +ing +inspired +slide, +and +tours +. +motioD, +of +1888, +the +effecting, +“No +to +was +on, +years +enlisting +and +tract +Spanish +Rev. +by +last +fully +Is +adjoining +the +mean +but +original +lie +with +ami, +ot +believe +in +put +all +or +clog +any +man, +end. +payments +; +of +human +to +the +kind +declaring +until +can +to +writer. +office. +to +has +Eureka +that +out, +Democratic +ond +and +thirty +threatened +coustipatod, +large +rich +federal +oonsuls +events +Fraukliu +were +Further, +for +miserably +afternoon. +lie +the +glory, +line +shall +the +make +big +are +bodies +I +were +18 +part +the +the +be +answer +of +essary +snake +front +all +and +fluence +particular +keep +that +been +the +so +out: +said +dollars +of +1 +season +to +the +town; +some +chair +to +sea +ing +; +ments, +and +il +or +lesson +prl'icipal +publish- +Pork +could +of +take +to +had +Fairfax, +ally +St. +ihh +there +1850, +16. +Ho +are +the +question; +ell, +by +copo +perhaps +people +and +second +done. +every +going +powers +course +High +a +will +tropical +Pembina +Walnut +Moral +falls +fall +Tbey +committee +procedure +Dotice +can +in +f +naa +w +no +out +me +or +The +and +he +mighty +of +congress +also +promise +what +loss +reinnrkad +system +of +compared +March +infant. +••fnmea" +also +when +but +peo¬ +about +the +the +four +sale +to +in +to +computation +to +chose. +ideal +put +with +of +highest +The +the +Fatpurse, +During +thieves +a +there +greatly +have +that +Swaney, +»i>;,y +tollers +tierce +Harbor +cen- +large +the +se- +and +washed +people +guaranties +were +the +Mrs. +amended, +tho +of +Oroya +by +millions +and +adopted. +seen +been +desirous +energies +aasskl. +by +visit +Fink. +heroic +been +spent +Miss +much +and +Chopping +ed +H +ber +parti +the +them +slip +c; +ever +compensation +to +Civic +officials +man, +make +State +for +losed +appurtenances; +real +as +came +a +you +the +in +the +with +ioventbta +key +North +had +has +to +befori +con- +Co., +Insisting +the +say +try +other +clear +Bank +that +tho +In +can +sloping +is +3. +1912, +and +beginning +has +plot +of +to +Lots +tion. +United +been +happen'.' +firr +liolse. +Ideals +far +it +wards +form, +with +horse +the +the +safety, +not +also +in +to +and +thirty +actual +blood. +Co, +of +do +to +bop, +mere +out +continuously +another +as +offer +shows +28, +people +uphol4ing +start +from +said +wealthy, +pressions +mediate +same +it +hu +in +United +kid +who +was +In +by +What +by +more +ions +that +which +the +by +paid +bread +abominable +total +Recorder +tion. +vereign, +the +Jacobs +with +village, +(Eighth +than +trail +in +the +worldly +stick, +inspiriting +stayed +At +as +well +miould +oft, +the +the +seen +sewer +. +exhibited +quirements +few +ing +place +Into +was +roofing; +mu( +4th +three +continuing +tho +that +cials +for +winters +Stre»t-t, +(scant!, +the +great +numbers +passed +weakest. +less; +So +from +more +picked +she +credit +of +constitution +j?t +never +of +Princes +reside +county +ready +has +the +ship +ou +by +some +ness +of +property +is +them. +and +twenty-four +generous +all +you +The +less +witticism. +the +esaence +family. +dependent +for +concentrated, +asked +practice +bullit*, +be +to +and +is +three +a +the +are +vide +that +injection, +of +was +the +as +ill +worldly +such +Susan +Government +a +lot. +& +The +rail- +the +Miss +long +yelling, +the +ot +heard +with +All +I +relief +or +these +were +the +imported +cotton +cells +! +She +pause +but +watch. +lover, +being +Atlas +it +Wor. +a +er, +Ludlow, +tireli +1904, +of +it, +and +said +member +is +to +of +icachcd. +! +silver; +control. +to +take +board,- +iuto +until +no +C. +loicd +rock, +portunity +into +ease +to +it +and +those +hand +evince; +this, +all +Pruth. +year, +Four +magic +stated +filled +to +weigh +cient +empire +he +of +hammer +Book +der +central +endeavored +That +a +good +of +now +light, +us +1844, +subscrip- +to +have +or +Levee, +to +of +away +t,»iii +line +the +improvements +knelt +In +by +introduction +filling +cities +started +revenge +about +Ills +will +horses +than +depth +be +at +a +St. +meters, +scribed, +were +ai- +maD, +sufficient +tion +the +and +Natchez, +soil +her +suggested +special +is +of +of +people +his +and +support +river +greatly +(12,} +in +eandidatCB. +Eyo +he +re0- +poocd, +Captain +ounce +advantage +iprogram +were +conception +signed +acre. +o'clock +but +ta +youog +then +near +dcscnbcd +subjects, +common +victorious +the +CDun'ry, +W., +of +rosy +I +Nanie +and +im- +anting +rich +to +reportcil +to +The +important +preached +member +each +would +boundary +Terms +of +Byrne, +glad +and +is +death, +their +the +vim. +but +member +the +bushes +great +tjompany +that +September +a +of +Tyler +South +nn +to +Co. +subjects. +With +to +but. +or +oflice +the +submitted +good +his +claim +from +Connoly +the +keep +stipulated +of +cents. +near +Ma¬ +herited. +causes +explained +from +Hostetler’s +glad +just +Louis" +kindness +an +who +many +find +to +this +he +and +! +in +courtroom, +fighters, +of +new +and +the +Ihc +not +reason +year. +flee +and +In +or +saw +from +city, +me +Shumu +store. +she +any +produced +and +and +est +a +that +interest, +tho +best +and +on +the +their +of +and +poor +vary- +agency +rusty, +helra +ease +.00 +dish +aud +row +alter +open +are +when +They +of +Board +the +the +inside +coming +aa +you +liver +II. +was +will +precedence, +one +could +radiated +have +three +Your +life. +decided +their +might +Redwood +112, +deck +day +Those +surely +hard +or +people +the +dence +keen +be +a +to +therefor, +attacking +is +all +be +• +base +part +you +fight +inoamouni +good +lbe +I +better +earnings +day +beort*blood +by +half-sulky, +mer¬ +violating +tion +Station, +of +but +and +exchange +Hawley, +was +will +invita- +at +was +unable +project, +old +line. +for +now +ruled +corps, +A +ago +I860, +taken +nearer +was +the +so +taken +my +eligibly +work­ +scarf +entry +support, +so +aa +it +news. +not +Hand- +member +to +road +command +each +mort- +up +SI +to +byterian +wit!: +time +veloped, +clusive +Into +regular +with +ernor, +Register +of +the +their +I +good, +(or +flnt +our +with +charge,a +the +though +vour +nw, +bakeshopr- +And +527 +hired +hope +in +serve +months. +. +authorities, +death +demand. +and +White +times +full +10 +That +in +Mr. +three +in- +for +the +knew +of +These +free. +impoi +the +unless +by +of +called +the +out +ment +was +that +weeks. +from +<4>l +Itsell +been +With +com +ia +of +the +illa.925.HCI +"During +wrhich +forcing +in +west, +been +order +bookkeeper +grave +of +Opera. +this +atiaedu +the +portent +the +*ug- +dance +class +the +maeadamisIng, +In +to +once +funeral +and +$11.55 +could +transferred +his +public +he +county. +than +sur- +It +made +project +Elizabeth +more +der +the +he +and +a +session +the +be +and +who +don. +hourly +one +with +lit. +on +ad¬ +ilous +O'Malley +lesson +more +dlicave:-. +Japanese +help +Gaines, +has +our +and +then. +found +got +very +maining, +then +having +attention +The +him +embarrassing +twenty-die +Herald +in +District +money +assembly, +of +development. +a +with +void; +is +handling +C +platform, +last +there +ac- +bands +to +char- +these +when +aiient, +from +we +several +bright +in +corporate, +occurs, +back +Railroad; +Fenians +of +-d, +chance +the +1834. +burning +of +Trinity +and +been +neiehbers +or +idjoining +for +successfully, +ancostral +that +to +of +eral +as +the +zoni +for +In +on +conditions +glory +said +garden. +but +Hnt +time +of +knife +requested +ex¬ +county +lal +Almad +Borders; +Hence +own +we +to +You +evidence +gans. +weight, +amending +dugo, +ko«-h +8 +For +shot +Interest +ground +lie +as +balance, +then +came +to +both +they +Lady +an.l +head +that +Mr. +success +lerant, +wages +instrument +confined +a +taken +been +Ht +carried +so +the +taaoaaaaaattree +was +It +left, +voted +pariabaa +and +w +find," +exceed +that +is +Michigan +possible +.when +a +city +slaughter +pro- +al +a +murderer +of +New +Kimball +i +sional +The +iicat.on, +and, +dying +and +on +or +race. +of +ATTENTION, +and +in +from +visit +good +of +in +of +British +of +rejecting +exported +store +was +Dakota, +on +unite. +Loup, +or +fugitives +IT +some +the +Is +and +from +worst +distance, +strictly +seated +'ve +the +present +bounds +one +election +for +lauds +w +and +Zubly's +more. +to +and +per +hours. +the +from +J. +Bowere," +niver>a! +homestead +llness, +thence +program +finished, +I +was +to +long +gold +the +said +and +ported +romance +that +is +contact; +alleged, +Harlan +has +in +this +by +under +was +have +Many +when +a +to +et! +at +in +'When +war +the +Jose. +to +be +.- +I +highly +and +Pour +nis +expended +right +and +Gen. +bins +Columhio +equally +demon¬ +union, +completeil +by +have +respe« +two +he +detail +assessed +of +said +and +; +veekhy +tor +during +snot +petitioned +a +this +the +from +to +upon, +put +known +of +and +six +in +party- +the +Smith +be +his +of +purpose. +(20) +editor +thut +that +wife +rates, +stalk +operate +or +Lincoln +tariff +This +means +have +send +utterly +me +we +will +ties +European +he +lows, +i +have +gravel, +1, +tako +now +benefits +era, +ment +at +thru +was +a +stove, +Twp. +pro- +ridge +2, +Snone, +need +familiar +was +Thev +ea>t +which +Orasa +A +remembered +be +n.led +that +Government +dtiid +soa. +sold +tinguish +erected +is +men. +Kueren +It +of +life +fruit +tenuing +of +in- +custard +sake +and +miner +M +acquainted +all +all +ju,- +to +upon +the +build¬ +place. +to +; +at +the +1 +these +fight +mouth +of +feet +append +"his +Allegany +every +it +still +having +is +showed +The +there +rivers +or +and +made +the +necessity +pense +for +shoulders +journal +one. +of +the +sary +motive +me +the +five +Kogan +emithd +persons +day's +which +we +developemcnts +a +in +for +out +saw +and +they +the +the +man, +and +hole +or +habitation +show +time +floor, +still +off; +call +the +to +get +undivided +the +second +11 +ings, +8,000 +people +of +Boss. +human +of +of +mark +profit +figures +possession +ho +parties +foot +Camp +respect +are +render +"Blessed +an +trider, +curfew +of +Brail +to +exerted +assurance +to +in +faithfulness +total +six +or +supplies +bunged +that +reach +Sully +communities +funeral +conveyed +placed +and +Memory +same +by +supplies +ion, +complained +twenty +gious +faith +in +big +Geo. +.r +bonds +at +enters +the +the +an +have +last +of +new +line +forces +elevated +repeal +to +mined +established +in +tunity +iu +that +writers +human +so +Pre- +a +that +sale, +opposition +lo +dividends, +iiptico +the +man +for +Sigsbee, +the +WOO.OSO +Township +of +using +the +den, +the +State +applied +their +parallel +who +man +of +young +and +heart +prone +a +view +71, +ears +43A +that +general +something. +other +a +be- +than +and +in +presented +by +compel +sau +characteristic +the +Time +be +down +a +for +glad +Hair +Bouth +elapsed +were +1042 +money +attachment +difficult +for +man +paai'binont +the +ure +gasoline, +feet. +the +satisfy +they +semd +made +bounded +friend, +inter- +working +every +likely +the +to +(19:3-8). +of +all +or +also +ran +The +and +at +time +location. +degrees, +Tho +Behme. +His +Henry +to +ing +Mr. +Spanish +tho +District +lot +and +night." +three +may +S +pay +only +remarks +Falls, +point +pavo +"Oh, +gentleman, +lost; +a +inquire +piecisely +and +bit- +now +are +the +many +Kansas +would +the +in +protection +vhich +rough +we +Saturday. +Bible +uro +iu +im +vc +favor +me, +secured +and +for +:i” +lives +dull. +families. +a +wealth, +your +night +horde. +will +dear +when +ment +do. +bitterness, +soil, +500 +when +$10; +the +honestly +toward +the +reached +candidate +Charles +"enabling +sprang +favor +but +as +the +copi­ +claim +to +My +that +authorized +poisons +of +At +the +or +a +suggest +tho +by +and +that +may +upon +satisfactorily +is +7619—L. +Court, +the +that +30.7 +reverting +boundary +is +be +eruption +extract +on +playing +by +mortgage +., +and +of +ors, +of +as +Jersey +Washington +ind +Gllmer +nating +postage. +and +ground +would +and +moro +passed +to +to +of +mound +under +time. +pchools +it +m +carry +derived +stream +amounting +The +product +fellow +theboy^ac +in +him. +Lambert's +be- +his +his +b>- +Record +of +them +Unpcoto +arise +summer's +3d +When +con- +firm; +in +irrake +ing +ism. +in +instigated +hesitated +tor +Beginning +world. +semi-final +their +was +soldier. +demand* +in +of +or +Oakley +at +have +the +we.oannot +distribution, +many +*\ +home. +up +views, +marked +Davis' +by +amount +effected +rands +ami +struggle +permits +plaintiff +sive +ar'icle +ing +of +After +ians. +by +his +Y +rate +lecently +founded, +i +actual +as +church +had +win +Rarb, +be +nerve +security +«!iu«. +worth +and +face, +building +nations +House. +or +Tho +independ¬ +your +progress +all-pow¬ +family +Kendall. +through +brass +man +well +cisco +No. +the +citizen +showed +enforce +Clearly +was +all +tho +of +Hart, +s +and +all +to +but, +we +of +the +were +or +my +housekeeper, +of +but +Kronen- +traditions +bald. +pro +his +the +district +the +his +beoause +small +with +consulted +& +bed, +shoes, +most +they +road. +to +be- +151 +to +is, +MON¬ +party +she +crowd +flve +magnificent +if +his +with +mortgage +work +exchanged +adequate +go«*! +Alexena +Hu- +facts +irbage, +sense +Rev. +Referend- +disadvantage, +more +' +opened +instrumental +ApalachicolN +to +plied +a +eccentric +tole- +Iigtron +a +100 +Lewistown +into +the +poat +all,w'oicu, +thing +Mississippi +oat +up, +purpose. +Green +inuicsorotnor +was +Mitchell +this +streets.) +thit +before +and +beeajasl +compound +tlttt +freai +But +this +to +is +of +Attorneys, +a +at +is +especially +The +was +though +only +is +plan; +In +Brown, +exploiting +high­ +facts +Tha +value, +po»t, +money +wiping +to +rivor +my +and +the +Oh, +mortgage; +bad +Work- +of +town, +her +crowds +at +The +and +Of +and +bbo +the +of +described +any +he +taken +Cheney +The +tary +of +induce +cool +The +If +to +the +the +Strevell. +any +states- +and +lk'fldcraou'N +that +wing +came +his +d' +street, +should +advances +violence. +fore +"The +crush +air +at +in +the +sleep. +359, +Arizona, +west, +many +Spanish +1860 +has +for +river, +the +nt +the +wins +exploits +of +A +lids +Turner, +clmngo +of, +parties, +and +all +theirI +will +and +timothy +aaaa' +with +Alexander; +Mrs, +sentiment +score +noble +friend, +Mrs. +handcuffs +build +under +each +we +necessary, +the +were +in +opinions +early +Sxitb, +would +to +to +he +and +to +crossed. +shall +bad +falling +for +has +with +larged +bedrooms +they +which +and +rich +» +In +recollec +longer. +farmers +so +changed +to +just +he +This +can +colic, +deserves, +Calf; +Washington, +ior +to +the +Til +0. +aaariy +survey +Park, +after +upon +of +an +many +iuc~iees, +accepted +ered +wont +of +house, +than +for +a +but +re +more +is +and +time +a +fought +ostracism +the3'ears +But +and +be +expense, +the +tho +a +has +force +American +see +branded +inhabi- +in +Blunt. +residence +cret +money +the +drawback +making +making +the +mem- +over +object +absence, +for +act +Amazon +answer +uiauy +in +came +vanced +peradventure +In +the +him +in +of +delphia +been +lowlands, +that +citing +General +infinitely +are +lot, +auch +Owen's +No +livelihood +"why, +publioan +fob +the +hare +and +and +new +the +for +great +wagons, +fertility +her +of +In +and +asthe +[ier +birth +to +the +said, +happinoss, +William +to +appurtenances +West +When +ruts; +published +the +one +the +a +not +an +Sullivan +alon-r +but +OUgfai +distinguished +year +was +regeneration +for +the +company +states. +turned +the +done +be +far +and +for +and +keep +it +his +of +Henry +to +placed +Nellie +tho +in +enables +have +to +is +County, +turned +on +of +witness +west, +concerta +in +fend +Currie +honestly +lode—Begin­ +to +indicate +to +the +when +M. +questions +tba +a +time +and +in +or +a +to +ted +and +to +Buflinbarger, +that +extent. +knee-breeches +by +signal +and +hightenod +picking. +a +Hamlet's +in +coughing +size +the +most +us. +always +to +outside +children, +to +and +Col- +their +; +of +piwer. +as +to +to +trust +es- +self; +and +stricken +blue +very +drowsiness +The +quiver +unmercifully. +>uilding +That +alanine +House +that +trust +the +deem +himself +the +scientific +1 +embassies, +and +new +and +to +for +whereas +appears +88” +a +a +was +The +Dakota +sent +week +about. +wlUcomplalu +not +from +Germanj +Petitions," +tho +in +mainte- +along. +from +busi- +and +follow +year +in +78 +spent +this +illy +of +strangely +JinUc +Morgan +of +tifii +defendant +profoundly +J +ia +that +posetlSee +behold +as +the +they +P. +most +attorney's +the +Territory +juniors, +further +of +and +the +or +of +aa +53 +marked +and +been +and +ted +to +pistol +so +heat +lloana, +were +the +the +and +of +colored +support +desirable +lifted +motion, +benefit +to +pro­ +re- +ordering +intended +branches, +Wo +little +of +as +of +an +cut +that +been +justified +more +ended +many. +vantage +wara +thc +the +wholly +son +I +The +Hearst +last +in +course +taken +app«nt +B. +siren +for +by +art +thing +8; +to +it. +never +frequency. +of +Goodhue, +Forty-three +them +a +reasonable, +Normandy, +had +a +has +amendment +that +theiu +exhibited +is +in +too +renewal +ent. +number +present +between +B«»"«liiiigu( +to +died, +bim +and +only +14, +eases +amount +supply +rather +is +it +nearer +ne +water- +without +was +for +incinera- +il +- +hundred +know +with +when, +of +J«tatcA +cncli +and +you +these +sum** +Henry, +If +1826. +hut +large +ask, +compaii) +wilfully +personal +Quilt. +tariff +did +with +tho +at-e +show. +A. +the +said +office +per- +acquainted +may +scribed +by +In +F. +nvailed +now +the +tell +successful +vessel, +cob, +crimes +Stone +ruled +st. +with +to +dec +lie +dust +composed +claiming +Indiana, +money, +Govern- +direction +out +was +and +that +in +year +82 +, +t +156 +all +bay +who +reasonable +of +the +and +daughters.— +Boddan +now +any +an +premises +near +Conditions +man +and +to +decline +hey +of +the +be +for +by +pro +entiate +money +is +new +Deed +living +from +claimed, +The +ikI +honor +eye +northwest +so +bonnet, +yield +his +egate; +We +of +petition +quite +very +warrant, +for +tion +cured +from +spring +of- +the +to +hear +Beveral +moved +,L. +with +absurd. +or +terms +Leave +ctllciency +that +four +That +the +valuable +this +the +such +is +time +B. +whisky +rule +the +about +through +man +and +to +ture +this +play +clerk +to +appeared +removed, +and +The +other +permanent +plenty +sault, +Mr. +would +(surpliced) +the +of +navy," +courso, +Dare +their +On +sane +party +one +the +soldiers +ings +Tins +this +delight +a +in +as +Impose +idea +find +summons +number +kind +pledged +tie +— +keep +Captain +and +Gastlneau +amendment +North +murder. +npon +earth +fed +by +s, +of +times +theirs. +sculptre--yon +this +the +Tolstoy’s +I!. +we +That +question. +superior +of +batting +thought. +MorvernManse,in +ly +each, +resorts; +the +good +to +il +the +point +and +that +of +Several +nails, +corn, +of +that +year +bed- +reached +and +light +depth +gress, +come +to +worth, +experiment. +is +of +little +And +they +circum- +of +Charles +days +Every +county, +her +lists +South +amendments +and +local +deceived, +The +does +discus- +from +had +A +their +trum +this +doing +mine +hve +period +the +U'liatHer +Moana +which +Rus- +confdrnce +more, +chapel +on +water, +Those +or +and +who +present +images +Corbett +is +receive +cut +soil +in +wua +in +Wilmington +tiatlveof +attention +yell, +he +which +lie +bones +leaviug +re +that +Smith, +Democratic +a +then +sophs +Emauel +ac¬ +paid +hath +to +moved +is +prin- +the +Great +an +that +local +tn'iet.ive +could +- +which +their +dangerously +time +how +counties +disposal +tional +by +E +in +to +to +exceedingly +pair +granted. +taining +general. +the +to +was +busy +children +In +large +the +__ +aecmed +to +in +it +bo- +wherein +closed +they +after +He +gaining +tion, +w +arguments +at +Tax +and +With +from +mouths. +cipal +man, +see +examined +knew +wall +payment +of +wagon +nn +have +by +proved +New +in +the +forming +to +pounus +of +that +efforts +a +New +check +the +charm, +but +(lay, +even +by +John +the +paying +Tacoma. +that +could +of +date +so +tickets. +that +around +unfortunate +but +a +the +metro- +well +the +allers +had +tho +· +of +of +lots +never +officer +red +Galilee +prom- +the +and +as +all +quarter +and +activity +department. +for +openly +the +cue +of +new +tha +of +year, +the +cruelties +late +if +will +dlan. +had +to +straight +who +the +secrets +the +decidedly +him +government +from +fruit +and +on +t +because +of +prohibitionists +sensitive +railroad +provide +ha, +fore, +the +of +When +very +pearance +The +the +each +was +the +out +row +less +absorbing +with +court +be +eivlng +pull +had +and +morning +became +Buchanan +them +to +when +and +Meriden +George +countenance +run­ +protective +Co. +except +it +Thomas +blinding +. +don't +arid +made. +2 +a +ment +ami +little +the +to +ship. +of +J +best +perceive +to +going +what +held +the +from +that +Cables +the +it +so +send +Kemp +mid +members +of +that +[America, +. +done. +substitute. +paper +and +away +morning. +to- +at +engrossing +and +i« +in +with +and +woman +of +with +be +the +that +paid +to +Peiusium, +I'ho +Lyric +permitting +Mandrake +olpbor +to +natural- +n-> +was +officer +Honed +about +in +from +them +0 +if +of +known +until +of +word +circular +Hemp +the +Hence +hospital. +Marguerite +a +anything +marketing +In +to +chains; +Bitters +the +in +per +num- +permit +Mr +and +? +terior. +.e +enter +the +but +were +i»f, +City +the +detail +is +it +government +by +fact +got +abbey, +Engine +ve +air +races, +put +the +who +person +been +Sanford, +in +hole +munity. +cheaper +as +baggage +tangled +It +message. +his +the +to +against +won! +within +there +he +of +bringing +by +sufficiently +because +boats, +ing +can +have +Washington +street +out +of +to +mean. +purely +show +I +the +side +anning +reply +"commencement +lessen¬ +July +Germany, +and +gar- +the +prop- +and +The +permit. +and +He +And +April +authority, +would +BOOK—Willi +glory +to +the +the +or +sounded +the +decided +that +be +or +box, +t +supper +gentle- +wires +they +the +to +Boston, +allowed +cheap +extent +Our +to +ol +deserted +Tho +mediately +and +announced +orchards. +Ifthere +it +matter +can +old, +aspect, +attention +black +went +done +until +that, +ate +on +(2) +the +poor +member +vindictive +for +old +gaze +is +of +io +in +of +La +this +portion +are +there +ment +advertisement +for +represents +bride +that +of +Travelers +W +a +grazing +fifty +or +banks +aaaee; +been +fierce +cern, +Charles +it. +their +price +reowwed +prepared +for +and +No +butter +strong +made +ratifying +the +out +Randolph, +the +chairs +well +His +at +borders +distant +toward +Gov- +better +and +of +to +subject, +tulle. +any +tious +that +at +in +set. +new +the +in +ofScers, +the +is +the +of +have +security +mon +Globe +this +reduc¬ +seized +to +there +from +bo +that +by +by +J. +of +armed +from +right +further, +laying +has. +which +standing +publio +himself, +and +I +and +anchorage.. +it +with? +tear +the +parlies +offers +dashing +costs. +of +them +joiued +which +leave +for +with +'you +ho +Nearer +Shady +sixnte.mon +ised +worse +It +easterly +that +and +predicted +and +farther +is +his +the +from +convene +la +the +and +the +until +combined. +Clara +administration +granting +is +Ing +it +other +ag&lns +< +tion. +and +Let +or +o; +wider, +stool +where +the +races. +a +Peti +ny +Bourcicault +it +to +fatal +that +from +rate +as +: +encountered +just +relaxed, +clerk, +to +to +into +premises. +But, +hia +no +new +be +and +been +tng, +without +for +courting +would +Los +must +on +style +Hastily +the +After +morning +towns +nature. +to +of +and +of +angeli +and +men +towards +expended +modestly +of +opened +the +a +yield, +of +were +dual +all +there +. +opposite +are. +of +of +dearest +xlx, +la^t +to +deficit +his +Everett +proceeding +couple +the +board +well +Mrs. +those +islature +standard +terium +to +48S.i +thwart +in +puffed +hight +pledges. +That +and +profession +hibition +farmers +which +on +of +of +was +Maryland, +seed +large +bis +the +of +the +that +of +right +across +any +and +, +except +colored +any +(100 +ing +lion, +from +clerks +badly. +managen +their +and +foreigner, +make +as +members +telling +Su- +heretofore, +with +and +base +moment, +rels +to +sumer +ing +Slabaiigh +in +his +proceeds +doctors. +and +most +14th +one +centrally +that +whihb +bidder, +be +of +aocuae +militate +Carey +direct +premise +Albert. +any +west, +front +in +cordially +sustained, +"At +| +thal +men +all +be +Tlases. +interrupted +times +wondering +the +do +we +and +with +every +and +the +aro +fy +sold +populous +is +treasury +reseiiteil, +Irs +lingered. +company +he +and +and +of +suffer, +him +of +but +that +the +fatigue +Additlon +first +taxa- +and +out +right. +that +L +made, +1 +ment +understood, +line +Church +were +money +one +your +the +gave +transaction +of +and +for +the +be-! +calling +train, +debts +happily +the +Vir¬ +district +wore +occasion +to +losing +to +road +and +tobacco. +existing +Alfonso +strong, +members +the +advnncc +the +Ships +the +Captain +gathered +solely +Is +it +law, +by +to +far +To +lc +of +out +naci +trious +the +her +. +understand +will +fTer +were +film +who +from +200 +nefarious +understand +in +Hungarian +make +thus +she +the +were +Death, +one +excuse +in +British +ot +of +consumption, +coast +for +fociety. +was +Jessie +at +New +that +and +Kean +to +a +In +the +and +especially +nwn +ever +0 +so +alabaster +imr +force +well +in +were +can +wittan +these +save +the +of +the +lot +as +with +soon +not, +Main +public +of +developments +the +John +Hu' +of +necessity +pone, +PROPERTY.- +lature +we +at +away. +just +the +Poland +and +was +that +til +Heaven +to +a +■State,” +at +75, +August +of +tbat +glory. +ucation, +or +rate +would +them +veto +derness +watched +are +And +the +half +re +value +headlong +employed +an +the +a +all +being +Wa¬ +a +oa +hare +capture +that +things +achieve +age, +The +the +all +dis- +same +3,000 +hand- +a +muet +the +leather +ernments +ke +duties +a +some +larities. +light, +bank +shooting +have +will +for +appro- +said +them. +has +but +drooping +Not +of +exhibiting +payable +wi:d +re- +years, +sary +leave +in +at +and +the +but +which +expect +for +of +asTsrdad,hare +Lodge +-j +the +Win +Funds +white +tho +precursor +may +previous, +along +gives +5oth +tide +nty +tts +interposition +country +these +C +upon +the +creaking +of +where +extinguished, +8 +on +tbe +40 +That +never +out +of +rods, +does +suborned +a +to +and +of +of +our +Thero +of +us +value +rubber +If +foreign +Dol- +the +the +you +its +confusion +effecting +.; +that +There +every +over +ly +at +very +feet +tions +dthe +tailor +ascend +dence +the +that +refrain +were +when +gait +people +along +on +il +maintaining +comprising +Wednesday +finger +Mr. +this +13 +(16), +and +you +the +war +and +their +promises +make +iiG"»V +Xorth, +it +Walke +pump, +the +been +which +original +a +they +Franklin +his +an +tho +which +Kven +of +was +that +of- +due +of +that +order +sound, +like +matter +young +this +rein +the +and +noticeable +same, +to +9.50; +place +the +acre, +inside +The +child- +mound +breaking +"must +are +one +withering +that +be +sured +near +itwasgmntothepublicbyDr.R +for +er +husband +take +appointed +November, +it +reservation, +at +is +ing +set +government +terstate +i94), +and +from +in,’ +out +present +Court +than +people, +the +Perhaps +and +point +of +usefulness +almost +duty +farmers' +relreit, +sea. +sentenced +anx¬ +persuaded. +as +bellevea +you +he +during +doubt. +Comiuuulpaw +touched +fourth +Numbered +will +the +dige +the +room +Mrs. +minedto +Circuit +with +tbe +given +tho +of +the +ordinance +eaaii +inent +in +/anc +stocks +leveled +paper +proposes, +is +number +comes +should +it +Prof. +that +the +get +the +proceeds +thu +in +paying +full, +efl'cets +shall +be +moreoer, +by +farin +had +plaAt +follows: +now +pools +use +here +the +side +last +J. +into +park, +law +Peas, +go +a +trainers +active +Holly +elegant +November, +paper, +and +west +A +the +and +order +senism, +dreadffil +Tlie +manner +day +clared +(30) +will +human +bell +-. +a +Northwest, +along +Its +evidently +posed +iron +known +at +by +with +firm +of +but +the +is +right +required +one +discharge +out +you +hundred +bene¬ +lie +for +of +related +preliminary +Prominent +but +hauled +some +dragged +petition +First +rearing +could +Napoleon +property +in. +described +adminis­ +nineteen +the +loss +would +frontier. +¦re +which +Mlddloton +and +ter +relatively +born +enabling +top +Gover, +moved +Most +tho +Boundary, +the +23V; +these +while +pence +books +case +power. +1 +agrees +oste- +McKinley +land +provisions +the +! +writ­ +is +loading, +the +Alabama +Training +for +the +Atchison, +Maudie +. +this +of +the +in +718 +refuge," +the +Crothers +hundred +the +navigable +over +1880 +property +disinterested +lose +or +quite +practicablp,-anAil +last +majority +partially +are +Hi¬ +of +grand +The +of +to +treason, +Un* +and +an' +been +of +of +more; +give +recommend +various +the +preferred, +Winchester +II +horse, +little +the +dedicated +days, +.Nihilists, +the +the +ciliatory +your +the +and +tomahawks. +of +actor's +was +the +Miss +and +the +tow +Jadge +corner +to +recommendation +Mississippi +memory +E +m +heard +vacancy. +hereby +art +and +of. +bate +be +them +riorma +will +in +the +wail, +setts +the +bodies, +now +County, +almost +records +ua +muddy +the +theday +Ioso +nurs- +of +that +possess +forfeiture +told +ie +Hampton, +the +thence +to +account +and +accepted +If +the +and +o. +were +the +average +manner? +together +other +ted +the +thousand +made +he +decorated +telling +Dark +miles +William +upper +said +ors +ed +that +and +his +amount +Betotttt, +before +thing +simple, +cent, +respectively. +nothing +would +houses. +consequence +by +; +should +to +of +(4 +thc +das, +and +and +an +Onelda +toesso +wheat +headache +— +concerning +Irene +with +the +aud +he +greater +why, +her +character, +rich +without +the +Tracy +and +at +be +paper +stored +which +Its +Sh +it. +such +they +$4,991,432, +slaves +in +wealth +the +children +over +it +brilliant +make +at +future +touches +Downman +arms, +txiflKniug +Legions +far +the +the +of +the +say, +highest +To +every +older +when +lum +Duller +things +by +red +ehem +011 +be +a +Con- +only +summer +frozen. +represent, +it +One +read +ture +that +local +he +it +of +physical +-her +the +eye +partv, +wages +from +No +had +the +sell +sparedic +o +one +hy +interview +put +pas<, +tho +their +bo +was +in +a +reminded +" +tious +on +is +signs +Baker. +to +to +John +and +day +be +as +and +doing +for +organi­ +blustering +she +10 +Brewster, +the +sketch +it. +of +and +degree +and +commended, +from +thai +memory +one +ct" +since +Later +Befähle +if +the +fects +to +Through +for +delivery +of +their +and +awaken +for +first +responsibility +elimi- +said +remove +end>-avoted +the +timore, +per +all +chains +lists +In +and +a +a +sufficient +of +country, +tne +wounded +to +degrees +the +n» +from +and +racing +soon, +these +that +of +aban­ +nro +more +ilymen. +the +for +town +work +only +pretender +are +14, +Woollen +for +friends +were +visitiug +states, +a +of +was +Comus, +any +him. +lungs, +that +recognized. +fortho +for +all +this +wire +price, +we +per +lie +am +we +found +the +It +Mining +will +and +what +action. +great +arouud +will +is +one +wili +Hopkins; +in- +the +Nothing +next +Switzerland +lulsed +is +the +to +wero +Bella’s +sugges +Cloths, +and +two +iniown, +He +cross +the +held +you +In +corner +ounted +laying +to +"You +coopera- +can +for +We +the +cai +Township +mos +$1 +asserted +for +real +bankrupt +under +of +is +prudent +room +of +United +with +ou +treatment +Quilts; +genuine +repass +so +where +state +the +laboring +In +the +personal +to +hare +conduc +original +this +sense +ment, +Baltimore +the +up +if +declares +Wheat +for +and +Vienna, +good +for +iower'ing +for +*t +operation +Sir +candle? +end +that +very +It +Cuticura +same +Relations. +eleven +watching +Eastern +10 +in +it +itants +was +was +spoke +of +COO +in +Kantre +at +looked +planted +ering +and +fright +in +took +ft. +thereby +as +to +mute +Miss +country, +of +train +Factory. +the +these +will +of +NofQstreet. +point +act +public +the +swered, +3T$ +to +Mr. +pair +the +investment +digar +ladies' +Our +school +re¬ +with +federato +extra +the +puff +for +talent +of +abode +loey +it +Ton +are +“What +there +a +great +< +to +with +shrilly, +the +avenue +other +highest +der­ +is +L +nected +are +Within, +is +berg +other +God +and +influence +Clay, +held, +his +for +stunned +the +serious +asking +Silk, +49c; +can +had +impressed +selling +nearly +peoplo +1- +ex- +Is +United +Sec. +the +of +156 +uoblemeu +plain +enlisted +but +gown +that +avoid +county +and +without +among +<>rd*r. +any +a +('nmmiKMioner, +about +Grand +Grand +The +Bachaqoar, +in +of +legislation. +heard +so +as +at­ +to +of +Mott +because +the +Purely +the +to +it +of +as +It +reserved +14 +his +Emily +natures, +fifty +and +that +will +to +take +just +Sunday +Surely, +public +boy +have +tiie +fact +delay +we +can +one +thrown +etus +compared +The +Hie +On +of +i +call +Frank +over +performing +W. +off +he +the +'dere* +lor +( +at +Uey +of +, +Austro-German +before +in +priest +B, +representing +served +in +told +40 +Staff, +to +was +it +house +tamping +loaiAa +ibout +arises +tics +to +would +fertile +for +guilty +hack, +such +have +abort, +a +a +have +the +account; +of +District +t,, +that +lowest +care. +$3.75 +Right* +they +ll +have +the +and +Englander +to +curiosity, +A +there +the +havo +but +combination +as +s +MlddlemlM +does +in +win +who +down +are +parallel +Guerra +January, +of +Duboque +discarded +en- +.24 +for +arrival +67 +transportation, +Mrs. +during +Convention. +3; +with +I +of +this +ttie +lengthen +damus, +iw +mischief, +bounty +the +were +a +ioe +by +and +my +laced +anteed +dashes. +by +wituls +score +exciting +and +nnder +good, +proposal +B +am! +as +sation +floor. +sending +ification +take +largo +under +occa> +474, +stocks +A +fast +trains +who +Indians +has +thenoe +transgressions. +by +as +the +described +keep +upon +Jue&a? +Kensington +England +debt +goods, +tract +from +Mlddleton, +belike +struggle +nn +see +t +bfllp +cheap- +John +how +at +Oo. +each +and +Also, +met +by +but +according +their +the +Gen- +to +a +crops +that +you +not, +land. +over +the +House +available +greater +need +ing, +and +and +being +proper +fruit +When +and +and +They +of +Napoleon +; +it +And +the +full +Bids +After +a +Anally +want +thought- +L +W. +over +Industrial +privileges +1 +holds +shut +which +his +sure +going, +new +perhao +Flying +as +the +Several +the +healthful +goes +aeetlnn +There +credit +for +6lecp +generally, +by +markets +a +by +necessary +by +in +curity +perfection, +anxiety +sources +saviour, +nor +as +all +the +of +the +any +the +and +cacao +clergymen +mile, +while +year +plans +as +lxunbs +attack +ashcs +snesked +quiet. +over +complain +concerned. +Soon +cart +do +it +ing +swamps. +arm, +of +done +after +extended +A +be +do +nearly +I +hold +lodge +thoroughly +anything +exceeding +thereon, +their +and +a +nou-politioal +w +with +Graths, +property +holiness +the +is +case +of +the +been +(12) +August +thot +nnd +don. +the +Hean, +the +not +a +of +really +The +the +all +state +therein: +of +account +and +active, +wherever +M'xiteb. +day +limited +run +general +correct +Co., +good +whistling +with +relatives +in +east +form +up +be +might +the. +from +little +OH +which +idrovski. +Incalculable +of +said +there +thousand +at +heap +door +natives +of +he +by +copies +that +in +over +sold +extra +Longbotham, +can +his +they +which +of +we +eler +li. +in- +Wars +arc +you +burgh, +out +secured +ti +a +a +Certainly +through +tbrn. +remembered +for +in +of +done +light +In +will +but +our +of +which +called +great +recommit +charges +fur +1-3572, +northwest +nature +ing +the +cost +in +man +for +the +con- +and +an +has +aud +the +its +puts +inches; +liquor, +W +M. +shoes +Joseph +mile +Mf.fti*. +more +articles +compliments +Scarcely +Irom +news +of +boats. +lork. +OF +to +be +til +the +may +of +The +gentleness +.had +lowing +letter +hetghts +idea +cold +he +called +decided +In +these +tin, +ns +one +o'clock +be +money +and +varied +one +a +Bruff, +in +been +the +the +mow +£50 +be +be +if +the +ing +held +her +passed +of +gully. +the +the +Corn +missing +ers +Interest +And +you +the +in +Nickel +the +tre- +Butler, +Mrs. +super- +may +with +insure +security +confines +a +wonder +was +home" +good +St. +ing +made +allowed +but +an +threat, +some­ +Disappointment +With +social +and +the +Oe, +straight- +entire +rates +and +been +while +and +Negro +in +with +butions +skirted +if +really +blood +is +the +such +which +ot +before +then +last +boy +habits +had +cases +curriculum +one-half +them +will +theatre, +on +the +its +destroyed +sob +being +a +ll +be +be +price +the +before +to +and +man +not +Alabama, +before +to +to +with +such +in +At +that +ot +and +thlnk, +exiled +Haymarket +of +inhabitants +permitted +the +home. +around +shacks +in +her +properly +malignant +among +Tgovernment +alarm +one +tives +alley +a +said +of +was +J +i +of +how +ers, +law +and +better +Guatemala; +Mr. +store +to +an +play +of +ex- +ness +mado +mentioned +within +W +thnt +of +had +he +New +the +chances +to +delighted +hysteria +He +they +body +latter +they +by +for +be +Amos +in +meet¬ +her +of +statement +would +in +hearing +rest +beyond +, +outside +going +and +part +report +number +54 +ious +he +the +mili¬ +When +their +by +to +but +FOLEY, +at +interests +prospects +young +to +11 +crime +a +with +up +shall +er +gagee +steadily +peoplo +but +say +inches. +and +from +and +pens +have +wan +tons, +tember +beat +it +ThIs, +in +embodieB +Last +deed +with +in +is +eradicated +Pat­ +little +years +dodged +They +Persian +north; +settlement +we +at +it +grounds +of +new +sent +alienees +that +think. +Lewis +ing +to +life, +passed +city, +the +tho +compagnon +exceptional +The +gality +ani +Mr. +aDxious +her +shadowing +to +P. +a +evidences +whole +aud +to +«>f +you +contiguous +with +be +the +duty +was +itively +booster +iron, +(W +at +two +ed +of +government +nights. +to +i +sank +lettors +breadth +nearer +ger +club. +mations +radical +and +»t. +felt +to +rather +under +Uy +not +who +"0 +treasurer +a +to +wheels +gratefully +in +the +Idprable +Bowman +is +egg. +ranks +in +reparation +183V2 +of +Appropriations +change +report +way, +for +Chicago +ration +redness, +represents +looks +in +life-power, +all +department +so +too +often +close +unchained, +4.f}a48jc, +old +been +highest +while +the +ed +last +season +do +and +constant +their +Lake +eight +fire +and +thus +on +which +rounding +supposed, +had +of +of- +tho +not +passed +insurgent: +Prayer +that +ly +campaign. +was +consistent +and +street. +sup- +a +class. +the +let +y +manifested +the +while +inl +coagulable +ntuny +a +Republican* +to +breaking +are +The +Thus +seemed +Constitution +2 +? +Block +serpents." +be +has +in +here +east. +Rndrigoe +year, +the +from +for +Judge +pass +is +has +room +Drastic +the +years +condition +use +Miss +inches. +other +town +actually +tho +ft. +were +of +taken +been +Speeches +swept +the +stom»< +we +quarter +the +a +tho +had +placed +of +in +Mexico +Ijawftetto +rhlna, +little +obliged +integrity +enlistment +rivers +to +in +gone +some +lit +and +upon +south +channels, +rebels +be +. +for +was +smokes +until +February +a +of +sale +this +is +found +legs, +said +time +though +to +was +Weir's +tain +the +degrees +is +and +the +for +to +and +order +for +but +sequent +of +Duchy +Die +among +the +bo +quently +of +esti +the +tor +has +shall +to +custody +Oil, +the +plat +stated +Adam +of +of +in +the +national +ns +of +years, +and +to +Williams +rises +the +long +vanced, +F. +appointed. +of +as +page +Taku +doctor#, +free +extent +sixty-four +real +his +from +available +uri +tbe +6 +rm. +the +road, +the +error, +he +aro +his +wpre +to +been +agree +already +or +conjure +voyage +Schomaker +of +ihe +most +render +and +assault +a +. +they +until +and +out +scarcely +held +will +this +him +Dr. +civil +education +sort—he +tions +ad- +upon +a +general +erful +and +with +While +indication +to +each +000,000 +before +master, +a +the +ed +oldest +from +case +made +ears +A +of +2UU +off +on +on. +rock, +do +payment +and +deluded +1564, +each +or +actual +of +born +districts +correct +(17), +Johanson, +and +job +admiration +seven +Selection +with +at +may +- +Fortunately +that +and +midnight +a +and +prairie +by +recent +parent +or +ton +firmed +the +an +the +nolie +other +ized +the +attending +who +or +to +respiratory +lusiclin +ns +bears, +delegation +1st +ent, +Ga.; +proposed +petition +Liverpool, +at +lime +tax +rooms, +and +in- +pay +the +from +hy +an +you +love +other +and +machines +men, +to +ami +preaer.ee +by +of +so +of +stale- +returns +be +economy +Coffin, +fixed +in +and +bill +height +tyranny, +codemnited +on +strength +and +nearly +. +Geo +tor +to +side +they +off +you, +send +Europe +that +following +a +voyage +day, +thru +note +The +" +and +it. +ivitii +ever +court +Hanger. +07 +ibis +not +face +Street. +general +of +reported +age. +utes +May +hold +night, +1849; +went +in- +ll +to +republican +firm. +triumphed +that +them +the +This +being +condition. +attempts +able +nearly +Reserve. +south +It +to +Let +logaed +deposits +alarm, +sides. +hav¬ +No +dollars. +pity +truest +lots +without +will +tries +the +will +for +Prince +avenue; +fit +of +beyond +of +bow +there +awoke +to +what +variety +in +he +and +the +consequence +pronounced +have +blossom +John +my +(knows) +security, +Christmas +puhli +father +owner +side +mother +Blempaaos, +her +is +sway +things; +columns, +by +was +1 +one +owing +Cashier +Delegate +said +family +is +of +of +St +state +litrty +to +wear +belt +to +to +the +element +In +search +to +is +be +con- +of +that +tion» +own +and +mind +through +t'.e +harvesting. +consequently +uud +vigorous +nrst +and +fcrm +February +the +and +man +substance +him +for +the +with +to +that +Sadie +eviction +then +kndw +to +stand +the +will +Pa., +consul +eggs +will +more +dii +promise +or +the +the +Vance, +be +that +received +upon +let +thousands +harvest +the +only +now +the +a +had +place. +say, +do +of +They +anewer, +a +tee +never +Exchange +klUonzo, +steps +spoonful +of +building +who +g.neralin +bushels +the +bold- +of +tin* +over +as +He +the +was +cltlxenelitp, +that +up +it +sectional +the +fur +ferson +phetic +not +carrying +in +supposo +orous +. +sensible +in +66,000 +matter +were +Returning +in +armies +have +zens, +Hodge +to +the +our +montha, +first +indicative +MoffatFs +a +the +saw +use +Bonree, +Shm +The +the +then +Lowell, +med +Murphy +for +to +most +some +best +mer; +reuderingflhe +tool*, +[ItaUimore +a +not +two +you +many +court, +us +must +1 +person. +threw +The +town +in +night, +All +one +itruggle, +until +of +and +bonds +has +must +pretext, +present +would +for +by +bed, +one +hlp +government +Devereux. +SENATE—The +where +un- +of +that +the +Rowe. +some +of +beat +ner +listened +get +the +tne +following +less +tism, +will +ofsaul +from +holding +siderable +chances +white +achrcnic +tho +the +a +anil +7. +he +Rios +four +each +$213.99, +east +you +•case +in +and +much +not +or +folio +lows, +stand +Immigration, +a +I +regular +of +to +he’d +Hawaiian +bi +ence +of +when +an +restaurants, +,ars,. +pre- +that +to +No +Tailorings +lu'llvl'lual +sheriff +un +News +but +mortgage +corporation, +Koo +I +the +ipieiBc +residence +mark, +should +system +whlch +prom­ +unex- +commandant +has +Bob +when +the +pains +who +Governor +ln +from +The +being +withhold +dynamic +unthinking. +organization, +some +overnight +law +it +hesitate +ally +a +still +could +of +fever +days—we +I +well +remarks +called +Welch. +marked +wero +by +state +alrrays +sldo +ment +Wheatle +tk +stand +these +B +to +is +leacbor, +of +the +was +and +the +Riverside, +from +gained +part, +especially +or +Territory +pluco +history, +of +South +thl +and +I +to +A +aero- +umru +the +do +defeat +:to +penetrating +My +ants +%) +the +shortly +Nevertheless, +1 +of +pupil, +her +Ohio, +streets +niisiiiaii.i_einenl, +man +is +Zealand. +famous +to +B?nk +eni~tiiredi +field +see +in +middle +of +clothes +and +or +such +saved +the +tone, +Our +it +and +of +of +sions +wtn +his +the +were +foliage +«*.«!- +magalflceatly +water +Ah +came +The +are +county, +was +make +presses +as +retain +A +and +h-ld +their +I +he +P. +or +ers +said +follow- +a +wit- +The +shaped +finesse +stocks./ +the +Rut +.better +,i.i +of +to +number +voti, +are +pain +at +could +ticket +handsome +hardy +ilruni +of +t +grains +one +firsts +registered +soldiers, +jurisdiction +Tommy's +sympathy +toms +imagtaary +were +10th, +is +ton +living +alive! +not +The +found +I +in- +or +men, +matter, +under +shall +Grst +s> +as +then +etc., +force +position +the +his +ested. +Revised +conflict +portion +announced +thence +fell +sufficient +the +trouble +hospitals, +covered +ex-presiding +session. +op­ +name +down; +case +in +short, +case +gain +courap- +conditions +the +He +He +chaater +ho +the +not +dry +he +enlistment +friends +Canada, +he +best +but +was +to +is +window +at +Brook¬ +seal +got +and +ol +Mr. +thr©i,c +in +was +constitu- +from +and +removal +mains +go +had +an- +and +lues; +nag* +far +place, +live +peony +prom- +Confederate +the +pr +1S39 +II +If +as +fruit, +this +pcoplo +dev +the +nropcrtv +too +effective +which +is +the +is +P. +raNfortujio +Yet +camp +as +Ono +to +ing +ball +played +large +tliat +merely +in +full +1. +As +ago, +The +the +atr, +to +pork. +two +tha +bv +the +tore. +of +It +the +fci +doing +is +It +opening +solo, +for +gone +and +It +storm +and +have +we +such +community +free +been +of +polished +so +State +then +which +monograph +an +from +toon-tiill: +lows' +a +less +they +the +purely +pointment +the +injure +If +the +place +The +and +manure +feet +brother +usefulness +iuguouc +Harlem, +it +in +hold +shape +the +three +It +He +of +earlier +-c, +hundred +Joseph +that +winners: +liecn +important +tribunal +bv +for +Faulkner, +their +the +pounds +the +and +the +to +the +all +tells +Government +ranch +devoiion +now +be +@ +danger +left +the +into +House +crop +bilhen +knows +account +Leonard +from +also +He +that +line +cf +Dud +for +event +to +its +produce +From +of +his +do +kind +of +I +End +placket +atringcra. +creases +a +an +concurr- +Cemetery, +of +or +that +Water +to +Mr. +to +was +lice, +poaefble +B +offices +at +with +men +resolution, +er +away, +these +reap» +consideration +.; +, +side +taken +The +snowy +the +be +this +as +of +e- +and +others. +he +ance. +bar +the +a +do. +active +from +familiar, +was +or +interest +when +work +few +dollar +Austrian, +haven +and +(Jeneral +practice. +high +the +a +away +sales +to +the +bis +with +tised +few +only +the +men +and +the +has +of +Ne- +from +records +an'd +yon +amt +aud +tho +morning +correspond¬ +of +wltbont +activities +It +aui't-t +Tbe +did +play +scire, +having +olause, +of +alone, +their +emoliiinent +tate +used. +the +fed +Gallatin +!7th +be +e:300 +to +Cedar +If +under +the +resting +ami +instance, +to +as +State +mado +the +somewhat +quenched. +Baptist +Columbia, +and +supplied +second +Hnnacom, +on +more +all +starva­ +. +lis +Cooper +facto, +Miss +Eng­ +time +ing +than +the +Amma +see +mer +and +side +places. +was +opportunity +make +In +and +execti +trade +from +the +in +This +principal +the +president +kick +occasionally +only +more +after +advantageous +and +both +Chamblin +buildings +ren- +The +corn +adverse +reciting +quantity +the +Reed +bay +strong +light, +fiie +tfie +of +the +time, +th +into +found +wires +man +be +The +late +be +the +about +the +he +vantages +energy, +to +scene +the +not +a +additional +every +the +the +the +girl. +door +2to12years;2to13years;3to14 +desecrated +of +not +old +Surrey +relating +the +switch +along +much +the +no +even +this +Appleton, +me +Copes +the +the +the +course +which +and +of +wlio +political +of +a +he +of +our +sur- +to +siege +The +R. +500 +worth +in +chosen +More- +that +of +favor- +better, +we +lost +nume-ons +pipes, +even +In +land +of +acquainted, +the +ing +hereby +when +loiterers +in +su¬ +tlie +week +la +or +building +thence +with +mcnt +clerks +Even +this +cent, +continent, +raised +their +Henshaw, +curs +position +The +In +with +did +to +the +of +by +and +of +if +ward +on +of +do +down +that +very +direction +not +dropped +mountains +Supremo +yet +Branner +its +^ +which +capital, +Company +»uereaa +Wardens +now +to +Club's +passenger +settled +abnormal +prospect +unless +(21) +satisfactory +save +are +buyers +the +and +cific +with +'Out +tako +court, +the +happy +very +the +county +ments, +as +up +nearly +troop +of +eatables +they +annexation +given +gold +was. +came +politician +Pensacola +at +men +and +means +worthy +the +and +now +doful; +Merchant +visited +tucky +on +were +merchants +the +fill +Nurses’ +civil +to +ot +of +it. +their +but +twelve +trouble +the +to +by +towards +energy +Los +not +a +esire +Virginia +arrested. +flags, +reaching +That +thence +and +very +to +first +If +was +the +with +inconvenient, +Shortly +an +. +deaf' +t&, +power +has +her, +diatant +sit +chaser, +river +snapping, +that +of +with +and +mills +Mission +to +$8 +the +secured +all +confined +smoke +though +and, +19,586 +and +breakfast. +extended +work +Peter +climax +table +Raleigh +ime, +necessary +tlmt +the +partlaa +Public +the +unproductive +Here +our +postal +herein- +lot +head +horrors +of +with +easy +the +those +to +general +of +come +and +of +up +plaintiff +ranchero +are +"flesh-pots." +all +you +;pecial +J. +o'clock +settle +those +regular +used +be +derived +tlHIilill +place +Wbat +assumed +miller, +the +devote +sion +a +and +hundred +society, +anticipated +a +and +It +avoid +one +Payne, +Wall +ordered +stations +present +,a +with +thirty +in +gros +which +t +telephone +to +as +n +cians. +most +citizens +fense +she +later +prevailed, +in +war +power +paid +a- +duce +i +these +she +Dodgeyille +sou +make +of +linen +publication, +made +C. +roeau +own +of +preferred +Sixty-eipht +no +look +fifth +$85,000 +Bool, +note, +t +worshiped +degree +who +shovels, +Ins +clock, +and +only +Blanche +most +said +said +been +tnfu +be +and +two +been +amount +licts +mort­ +and +don't +from +lows +in +recommend +No. +tho +there +should +thirty-foar +costs +policy +the +thol +An +and +and +with +and +made +Tlio +(12) +I'm +Dolars. +view +Huard, +relief, +with- +'For +Hy +gives +a +being +construction +by +proudly +con- +policy +had +This +91st. +laboris$250perday,if +two +is +occasionally +service +corner +a +wa +letters +leech +may +which +on +to +if +an +Du­ +D.eKalb. +the +had +last +and +Schley +moralar +To +and +$dO.OCO +is +Mu. +pangs +centers +them +th +Psatt; +began +be +r, +the +those +In +mere +world +and +hundred +Cacz, +of +leather +gives +afternoon. +wa3 +islands +be, +de +District +found +same +previously +astonishing +common +is +Down +the +foi +despite +Conch +kennel +resentative +clay. +should +a +als., +law +tLen +and +le +tbe +civil +investigation, +soil. +have +pen-on +be +is +to, +ni +turned +but +not +His +3d, +See +with +Sunday; +claim +his +Memphis +that +crowding, +he +trict, +highest +iheir +year +the +he +as +to +an +best +tariff +but +counting +traiu +point,thenoe +He +struction +In +in +teen +said +perman +of +led +movomont +corpus; +slice +permission +for +2, +to +D., +Work +the +by +said +all +did’t +ol' +of +act +hit. +cost +and +ionic, +happy +of +the +billions +intent +and +been +and +was +dny +of +Territory +has +meraery +took +disgrace +knew +and +before +ground, +one, +For +that +lios; +ty +'range +his +But +in +cane +wild +other +into +and +District +the +state +with +on +warded +here +taxation +the +with +ety +of +one +of +causing +at.. +had +Several +a +holland, +a +Worthy +our +steamer, +of +tbua +there- +will +branch +of +converts +and +Journey +a +aud +be +hilltop +pered +literally, +sentinel +the +recommendtd +lina +no +nothing +10 +a +shown +if +hately +residences, +t +be +products +were +bat +old +Why +the +The +ho +delicacies +is +tribution +Irish +by +to +220.00; +girl. +has +southern +still +and +English +been +or +be +the +Eflie +or +portrait +companionship +old +100 +all +this +to +town +Llndsav. +street +he +oar +tho +prevention +it +(or +Iron, +ideas +coining +engaged +In +con- +Cruz, +we +that +were +continued +the +would +down +show +turned +that +committee +during +to +shall +minutes +Georgetown +last +a +goneral +meeting +this +the +respect, +Above +service +safe +Jng +at +just +lot +of +of +and +.js +this +the +by-product +the +pound +1889; +¦ +why +variety +producer +meetings +hhowod +adjoins +an +to +should +only +the +not +flow +givo +baa +south +Mr. +helped +a +skJl, +subscription +was +by +tho +luck, +with +day. +against +date +to +approval +and +who +A +and +oceans +and +must +of +Young +not +Register +dotted, +trust +the +be +assert +types +on +pulled +the +sap +the +fort, +an +aggregating; +and +any +ing +and +to +Olmstead +on +the +reputed +matter +Btruction +the +ground +tween +viewpoint, +in +rook, +but +N +opportu- +within +which +flowers +done +connecting +necessary +leading +ernment +feelings, +other +nickel +sioned, +and +remove +of +uo +overrun +enters +i: +thing +to +soldiers, +wrapped +thence +no +up +Net +the +ef +mon +union +room +want, +wedding +most +the +the +cine, +a +by +N.E. +But, +would +oi +outcry +jury +be +tremendous +k..own +to +extend +and +caused +Land +fore +by +brought +small +adapted +of +beneficial +State +place, +the +county, +under +he +the +ae«uoaa2,4.6 +I +around +his +gentleman +to +to +branch +maximum +nr +better +v. +suffered, +notes +of +entitled +is +ceased. +and +George +to +that +swore +new +government. +is +canon +the +ity +tuted +bell +dangerous +a +safely +rested +Prof. +of +examined +ilaeaaafld +< +his +the +through +neck, +measure, +the +bound +a +upper +al- +out¬ +law +and +enthusiasts +cates +to +the +duct +friends. +11 +isfactorily, +Gar- +artistic +noble +a +hand +to +Snake +an +Mills, +110 +so +that +of +Conroe +the +ot +year +him +took +feeling +I +and +inches +should +was +rest +of +avenuo, +where +vitality +after +frcc, +library +winter, +of +white +81a«le, +con- +game +to +that +slated +in +and +the +be +him +that +a +Six +Cole, +tbe +the +jf +military +and +and +al +first +made +and +causo +she +of +so +grass +May +paper +tbe +river +a +among +for +struction +.?. +of +fol +Lots +sires +river +and +a +promptly +there +resolution +scientious +id" +or +applied +fortifying +would +field +mid +power +able +been +himself, +men, +extent +will +vestment +where +whore +the +and +the +pur +parties +that +A +he +from +decorated +distant +wife +bothered +full +room +same +in +the +sold +stock +course +window +house +suffrage +the +along +to +raahaa +their +is +been +thence +is +in- +for +we +X. +in +sold +that +of +N.Edwards. +knows +and +a +moisture +officers +Horxleys +devel- +Icm- +tions +willing, +and +in +employed +armed +shall +No- +hour +but +enormous +for +prisoner +the +C. +sdvks +ineudud +scampered +schools, +Boston +now +Intt +litical +the +afterwards +ers, +strong +me +only +Carolina. +to +gospel. +quotes +time +custom +large +place +to +tho +house +terlereice +of +areas. +amount +wis +day +fields +under +E +of +be +wife +nal. +soon, +people +of +wintei +Christ? +he +milch +bush +the +not +would +contrary +charged +will, +thirds +;ic +conscience +Wing +provision +Relief +feet +and +day +on +and +she +fifth +Developments +inythlng +on +tian +was +e +in +compound, +of +promissory +is +Manning; +csn +Thirteenth +up +straight +which +shot, +just, +was +gathered +If +east +be +strangers +Tl:e +hundred +in +and +thence +of +It +Andrew +does +Atlantic. +mission; +is +There +out, +their +carry. +! +in +aeiey, +cost +transformation +get +it +shall +the +the +will +bad +Charles +learn. +in +Lond;n, +of +their +Blderable +as +benefits +recom +would +day +period. +more +lot +and +the +is. +mouth, +settlement, +water. +will +of +we +names +Crow +apple +in +inen +nlck +and +with +zealously +uow +Take +number +inn +and +have +it. +"Then +elpis +son +could +their +use +stirrlng +they +a +wentlior +after +itness +would +well +the +W. +but +of +time +Elglns +lhat +COPELAND, +himself +other +tom, +falling +kick +neighborhood +wlio +well +their +yard +our +62, +dent +install! +be +scratch +or +laborers. +but +gramme +deat +until +school +the +Innings +to +ment +about +imposed +Druids, +the +that +negro +This +began +to +ployed +the +co-extensive +sale +and +an +is +under +murder. +villain +p)oration, +insum*niet +unlawful +1.89 +republican +that +this +the +for +out +league +in +land +by +each +resumed +iwamp. +of +one +the +there +arrives, +who +foot +Mine;" +thoroughfare +extent, +eicilemont +the +of +then'indeed +procuring +the +time +ot +and +before +recent +and +February. +the +to +me +for +stitution +In +pendent +July +need +do. +who +at +off +propaganda +at +but +was +The +of +other +bim +man +neither +cover +as +reveal +needed +and +what +fields, +the +J5lh +he +placed, +law +held +a +Krechler, +under +ft-e +very +a +not. +should +is +have +denial +State +The +are +tho +an +ostracise +when +of +ot +time, +more +the +families, +has +the +the +of +in +mem- +and +T. +was +time +a +T +the +the +the +good +employs +Kresse +up +good +envy +..rt +their +and +must' +while +Dr. +keep +tb«. +accordingly +brought +been +ag-ree +unkuown +day; +valued +Our +of +be +have +is +from +of +the +es­ +!l +John +in +glands +and +in +aero, +believe +the +the +balance +action +steady; +agents +would +north +mere +resalt +of +much +urposes +not +a +pass +by +dren +the +habitants +tile +area +scenery, +that +things, +feet +the +who +ar- +Mr. +that +the +secure, +Transit +milk +25n +Eagle.or +reputation +Van +Custer +the +Ohio +may +items +Hickett's +the +of +and +tho +seized +his +once, +the +H. +of +otherwise, +and +proposals +nomination +In- +of +I +of +made +eyes +aren't +determine +of +average +is +trail +place +the +the +total +have +and +we +lead +a +To +ttoteBaejeritieti +western +her +process +In +true +highest +an +sawmill +if +in +where +as +state’s +much +|j....*ai. +f +The +eill +to +intact. +the +the +aud +| +old. +and +held +a +public +her. +the +1920, +weight +Alderman +distilled +both +said +as +seas, +the +or +discipline, +two +in +combines +power +He +I +olly +upon +man +by +setting +would +Standardization, +him +new +First, +Amcileas +Saturday +John +a +of +al'h. +it +their +Historical +After +the +by +cibly +much +running +most +a +105 +not +s.ml +are +West +lakes +little +belonged +and +will' +testimony +to +12,000 +lamp +George +to +over +lev +a +in +or +of +the +a +the +but +over- +company +ns +Hensalaer, +will +with +lust +than +arrangement, +of +of +al +but +her +stalemated +tional +rule +Report +the +Bussell. +his +colleagues. +antlripatinE; +for +Thonsiimls +in +I +the +soon +sec +relations +it +does +of +business +wife, +useful +Mr. +all +llonaker +at +oily +William +this +certain +the +or +presence +office. +by +and +forced +tain +the +and +cider +Seminary +larger +here +farce +and +the +length +the +train +after +is +brave, +pe.tple +Senate +anagers +the +wire +shing'e. +unbending, +the +an +laws +Throw +out +John +with +in +said +-ion +the +amountiiig +situated +of +party +ag- +was +said, +character, +indemnity +Wednesday. +It +mill- +en­ +maintenance +attemptto +of +at +New +of +the +it +they +hoad, +lia +best +delegate +outside +vacated +may +Pacini +effort +adjoining +middle +reluctance +produce +gold +Sunday +can +the +hats +pago +tbe +sale +mill, +the +because +tainments +twenty +other +and +of +light +such +did +year, +than, +of +He +any +lage, +named +no +here, +.3# +price. +also +sociated +"Every +north, +expedient, +without +tentlon +de- +for +for +1.100 +proposed. +take +and +swings +Lafayette, +I +to +plied. +only +at +"> +but +completion +way +iaw +that +to +in +or +And +on +she +Fifteenth +to +off +in +of +comparison +miles +office +a +far +his +above +even +liberty, +. +an +believe +have +tonaotry, +of +hall +Anna +Stephen +The +put +Sr., +this +mine +he +the +stroke +be +out +voting +west: +the +virtue +bound +disposition. +in +herd +Frttnkliii. +symptom*: +to +auybody +Irapreselvo +three +Orient. +leave, +it +ritories +ably +ingly +ceived +apa- +has +of +with +nnd +dozens +.Block +of +refuaed +night +and +April. +Bridge +given +soveiity- +held +least +the +accompanied +numbers; +pending +man +tbe +people +better +time +In +Williams +Tribune +chickens +teach +this +com- +vious +"During +in +much +of +chiffon +Boyeson, +on +proper +to +more +neither +car, +both +hastened +tie +pends +worse, +for +Pure +therefor +and +vote, +the +this +the +be +the +it, +to +place +mo +One +than +all +fairs +the +ns +and +these +individual +is +be +Rev. +E. +124,000 +tion +no +of +of +policy +a +in +war +of +dealer +earth, +all +simply +in +cities +to +the +but +that +learning +association +neyed +to +second +something +necessity, +be +as +the +disgust +the +duct. +ford +Instruction +nature +V. +American +spend +with +would +and +the +one +This +had +a +name +so +Is +Iaa +I3 +to +under +iron-vvoik +37: +as +fern +tbe +quiet, +war +th- +one +which +the +Mon +with +with +once +her +It +ceremony +<>f +a +weeks* +Arthur +and +Portage, +the +intended +ease, +the +they +all +years +dishes +presob +and +was +naatonu +food +feel +in +over +hereby +the +was +possessed +stated +services. +to +members +his +that +from +tne +fresh +each +silk, +Ministvr +In +and +the +against +buttered +It +the +him +next +Just +few +pigeons +that +camr- +a +Angeles +out +of +terity +D. +2, +fact +Leanna +and +there +books +to +last +of +out +pointed +Bros, +His +fastnesses. +and +or +the +And +dignation +Nellie +the +the +"Balzac +But +n, +did +heard +was +have +Frank +more +Spanish +of +tial +as +tariff. +ness +crown. +years +it, +legends +shoulders +bo +of +moving +their +for +Methodist +will +1891, +the +not +Worth +was +were +to +recalled +like +can +case +matter +large +charge +Wight. +dog's +cluded +those +for +they +stairs, +and +a +day +«ver +and +Tbr +and +the +was +center +otherwise +Saxton, +. +the +eumperor's +the +T. +morning +Introiliietlon +a +the +in +Block +is +offenses +which +.New +the +that +and +idle +date +in +begun +flying +fur +The +The +tues +month. +of +the +that +ground, +thirteen +real +to +bhep»rd +Klstel, +paternity. +im¬ +outstanding +feet +aside +predicting +It +Legislature +create +such +of +happened +up +Sta- +and +from +the +32% +»re +and +Itwo +foreigners +vince +run +also +clothing +In +cheek, +Lodo, +three +to, +Hat- +social +over +small +ilence +the +They +this1 +town­ +before +with +may +work, +wu +Island +S +testimony +and +establishment +says +property. +but +by +that +diplomatic +an +her +usual, +'There +during +visible +came +riously +nature +in +lotger +work +garagt +and +sory +in +the +cial +and +stopped +and +have +uow +on +His +Spooner +Kaiser +is +the +seller +saddle +of +to +rents. +facts +destniction. +lately, +ie +too +described +lighters, +the +eyes +had +is +funds, +be +law +qarter +bad +assertion +make +to +mortgage +all +it, +much +of +cannot +obtained +1 +a +to +work +hack +of +school +to +usual +to +nal +cheselves +and +at +ami +per- +in +dent +desired +of +binding +and +hundred +complete +four +Is +in +nile +crime +heavy +in +and +jtnif +Grant +only +and +of +a +security +of +without +red, +Audley +witnessed +he +leigh, +a +ago +robbery. +Washington +the +to +when +In +found +the +by +horses, +organ­ +keep +brand +speci +Quakers +vote +for +statutes +the +allowed +the +crinoline, +to +ftce +Mammon, +the +whole +In +an +examining +and +wasted +the +Royal. +the +to +iaaoaaebraaabaa, +story +in +bun +The +or +CeBeeaBnaj +any +tying +applause +and +still +'the +received +the +the +be +thenco +tory +at +line +which +is +Mr. +Anoth +ing +surprise +countenance. +Young +that +foree +happen- +resolution. +may +quarUra +! +Wayne +shape +exaltid. +busy +. +for +every +outside +Elita +time. +Englnd +50, +slapped +to +Hoveyof +John +go +iTe.i +race +trainer, +Tho +this +Committee +firmer; +difference +diversification. +the +might +the +service +a +as +horses. +young +Tlnr +westerly +Arcaya: +those +bond- +United +its +hurt, +dense +improve- +discipline +Is +up +additional +con- +of +any +time +has +mained +lawful +shots +the +to +any +and +pardon, +work +by +of +respocts +or +dohe +coughing +dioir.g +force +loavo +the +is +the +deposits, +examin­ +holds +fifth +tary +aaaajBBj +the +It +. +and +In +To +tions +for +inches, +and +of +back +thing +or +other +40x40 +as +original. +asleep +thereby, +school +five +Well, +Humey, +pas- +made +the +«,f +the +four +with +body +their +« +into +should +it +j +better +a +and +lack +Three +soft +was +690 +and +on +three,cornered +England +liquor +Duffy +Louis +drought. +bus +policy +Coal +leeppieeii +on +sizing +rectly +any +rage, +vals. +the +still +tail +of +closed +ranca +unnecessary +oil +nights +W. +ernmmt +it +immediately +the +class +sewed +sive, +sible; +Foil +title +died +the +me, +to +tuortjrafre +named +two +stand +coarse +the +straight +L. +lajrs +and +across +was +distress +of +the +all +numbered +thickets, +up +to +to +Rice +of +ppecd +arrested +A. +,000 +on +the +there +to +through +.Hou&parte +the +the +in +up +bo +before'the +it +of­ +degrees +agencies +It +In +as +use +was +in +are +the +and +said +factory +beauty +bathing, +set +anggratloua +prudently +vva» +name +more +after +terious. +a +o +had +serious +Funeral +palpitated +it +the +during +as +Ira +knew +. +in +alternates. +on +being +corner +all +sold +the +cation +found +supplying +gets +the +the +is +President, +Wore +in- +priceless +reached +of +export +showed +hops, +steady +this +one +ol +by +be +ac¬ +a +alarm +make +iu +If +1q +bo +cattlo +and +pared, +the +think +the +the +be. +time +the +itself +twelve +can +were +Dakota +continued +to +knows +the +M:ixwe!l +term +causing +so +suggestion +worse +of +ized +simplify +under +. +ball. +up +of, +do +in +thirty +the +to +much +tained +Mr. +when +No +you +for +al +at +mcous +face +languishes, +stolen +laat, +costly +ovor +at +him +the +of +8fty- +maintained +wr. +parties, +cisco. +for +yard +with +on +Democratic +to +of +later, +my +expenses +rate +boen +covers +the +exactly +60 +plies +absence +time +of +man +dedicatory +and +student +*ho« +forces, +be +at +her +it +rode +his +fields. +house +IMand's +Avails +is +propel +travel­ +soldier's +Fair +or +could +and +sign +you +afl +without +government, +Woods, +constitution +to +obligation +compelled +Drebjn +ate +Materia +of +be +House, +refined +the +liar +seamen, +was +progressive +pay +. +unless +<32>. +22 +cents +strip +the +addns +The +to +pestles. +rcceiveu +supper +of +ta +noblest +Princtton, +perfume +spects +be +Ward, +flooded, +and +the +eventually +paganism +It +president, +put +the +Thoy +about +Lode +clear +bride, +The +activities +erages +to +dying, +power +ducks; +the +felt +1s +laced +bf +containing +a +the +keeps +bis +which +for +ii +me; +beautiful +the +tain, +our +vital +You +other +vigor, +at +that +Eagle +the +was +their +companions +might +of +tiful +aud +tariff +warden +a +N. +that +J. +the +congrega- +ct'\e +me, +Ido +the +foal, +at +-s-h, +until +the +to +mittee +df +usual +by +had +that +sale +contemptible +and +lost. +from +follows, +sheep. +of +of +lots +best +trunk, +by +0. +portion +the +his +house +also +is +dire +as +to +to +said +succeed +prices +any +powers +a +duty +a +at +name +relations +our +other +its +before +States +won't +for +Smith, +on +Certain +Su|n_i +greBs +tions +his +Terrr +uninhabited, +Reed, +who +company, +sizes +from +imports +showers +has +to +fertile +power; +convictions +Sunare +board, +measure +to +honey, +few +be +that +45 +cannot +refractory +the +sometimes +they +Culling, +The +violate +re¬ +the +for +precinct +the +stuck +whether +wife +see +gree, +ready +Township +not +necessity +>alra +suffer. +the +angles +body +cover +ho +L +so +been +I +case. +night, +sale +troops +have +(11.) +in +an +the +in +sword. +the +selected. +been +S; +would +town +the +Tho +does +devoted +away +ried +C. +wprds +ate +scientific +of +is +is +being +,000 +Ana- +obtained, +at +be +being +the +the +with +Washington, +This +for +m^aaure. +Iriist +was +following +or +at +procure +succeeded +preparation +it.. +determined +with +said: +this +Wilmington +show +public +total +that +. +entering +in +tho +In +moments +said +lines +easy." +in +ot +gets +Jurisdiction. +testimony +that +did +wife, +bleman +persistent +tite +tire +ments +City +the +clock. +6< +aud +lu +that +were +Plattsmouth +Gile +tne +the +seem +found +the +westwardly +hisdesireis +51 +A +the +us +I +dry +of +was +and +store +obtain +the +coin +transpired +Faid +to +of +she +was +When +by, +say. +Jail, +of +cent. +1882 +who +immovability +are +track +dem- +called, +death +Five +- +respond +it +tisI +only +oneI +the +art +the +In +also +we +tue +cheer- +conservatories +dissipation +the +in +town +beauty +United +more +certain +purified +wanton. +to +have +and +Attention +were +egation +of +President, +obtaining +to +fever +N. +could +produce +the +quarter +for +half +within +the +close +yesterday, +organization +said +and +to +County, +(he +manner +of +been +from +Is, +will +the +ground +an +after +la +prizes +of +of +with +trict +kind +At +the +fiercely. +I +officer +not +Sheri- +under +the +him +the +place +be +paid +forward* +highest +and +families +a +to +the +have +tne +Confederate +joung +the +seen +E +done +matter +centration +was +interests +was +length +bed +in +the +the +season +nag +to +owl," +the +where +that +receive +before +That +only. +I +of +in +but +plies +of +conscience +lasting +«lays +the +fronting +the +gate. +2 +trial, +dishonesty, +this +that +proper +in +the +these +weather +sold +at +say +other +Does +tho +short +interfere +that's +the +a +blandand +veterans +awaken +and +port. +fallen +answer +the +stowed +think +Is +ous +de­ +'ere +he +nays—and +be +weather +possible; +as +and +the +ularly +beating, +desired +buy +a +listant +seems +and +imme- +until, +Ono +thence +before +work +Stuart's +Ane +comes +settlers +any +fire +cases. +has +so +with +note +in +Confederate +to +took +building +Americans +the +reckon +cannot +baugh, +proportion +get +was +the +and +the +senator," +that +Committee +It +Blood, +comes +association +dent +all +have +for +to +hands +pnrpoeeof +- +Blue: +by +camps. +M +natural +good +Mlnnle +be +ties'-, +if +department. +vet +haa +still +for +The +cause. +use. +that +are +r-a- +"It +was +their +cabinet, +have +efforts +enlisted +northwest +and +of +the +too +others +a +in +chief +good +lighting +applications +half +Avenue +had +plans +horns +a +so, +the +people +the +stil; +were +tratlons, +Grove, +others +between +of +sooner +went +- +it +A +title +the +membered. +was +Twilight +game. +lielicvcd +strug- +hope +Buck +telegraph +Hull, +partit +which +tariff, +Death +tbe +Hotel. +division +about +be +Holmes +swered +delay +was +matic +great +for +L. +was +There +yard* +dissolve +if +takes +have +to +10 +to +was +any +ofl +and +the +of +ral +about +thereon, +they +colors, +Ct'iistii'.itintiplc +is +tried +guarded. +life +and +aiong +to +Teller, +volume +hun¬ +for +man. +recently +a +its +also +tions. +thirty +the +and +gained, +persons +adoption +sit +da/a +which +confidence +and +giant +nevermore +phasize +the +significant +good +discharged. +risk +event +proposed +tive +democratic +Fellows +9th +Britz +said +any +; +destroyed. +place +cerned, +conn. +were +the +use +order. +lnametetd +US +paign +ine, +common +nf +of +a +being +last +I'll +to +when +uoku +outers +Committee +ns? +farm- +the +as +of +examination +is +and +was +and +78 +its +while, +day +tumbling +at +look +crush +that +backs +No. +advices +distress +of +that +must +soul +new +streets +the +no +was +the +Prior +wide.being +whole +"I +re- +by +intended +of +of +it +acctimu- +fifty +with +and +like +are +purpose +they +b.k +ho +Terra +banks +Shaving +CarlHlo; +on +In +a +in +a +world +seven +be +any +conducted +cially +County +to +I.lnjd +an +and +lowered +these +giving +additional +the +a +to +the +of +become +delegates +vitally +legislative +A +guffawed. +ment +the +The +to +It +this +of +lines, +in +gloom +business +Hatteras +m +would +tho +ages +John- +position +sentation +one, +blood, +of +with +it +the +is +open +wage +market, +to +the +the +other +from +an +of, +Lale +E. +hot +that +liberal +lights +by +unmarketed +were +I +de +didmydutytoTim. +dec! +ra! +In +a +will +had +Palsy, +absolute +I +tried +of +for +leellnga +believing +In +committed +public +King. +a +straight +of +provisions +man +B. +Speed +arrived +for +and +other +come +must +breaking. +the +the +who +were +oi +was +if +the +Oxford +of +behind +watch +li.irt +cail +>f +the +exceeding +for +renewed +to +off +the +bullets +the +violent +endured +guide- +chiefly +those +Conditions +be. +health +it +some +plause +Oct. +The +our +is +The +is +In +and +subjects +States +un- +ciute +a +came +possession +Traction +It +amount +a +at +part, +Stael +The +to +of +11 +will +The +police. +They +James +and +original +wealth +vote +saves +in +tin +planning +Five +itors +Processes +kentry +this +of +a +is +and +olution +little +to +months, +turer, +papers +one +it +credit +railroad +and +considered +laborer +policy +sacrificing +stop +to +tbe +be +years; +eell +took +is +by +resulted +are +leaving +affect +Meet +a +glow +would +were +the +event +music +people +besides, +the +come +that +the +two +the +to +T +The +tbe +executive +marked +doctor. +events, +glisteoed +have +meaning +the +are +and +even +flowed +of +lbs. +feet +guns +suit, +und +for +strain +a +of +Ashland, +of +or +lower +was +he +55,000. +it +I).lr>tit. +tho +N" +and +prevent +aa! +the +he +off +the +*i +solo. +was +of +United +time. +thing +In +At +darkest +bal- +the +cboaen +in +more +been +With +For +ed +and +the +and +bo +of +there­ +Christmas +ter-making +petition +No. +iui +the +alter +made +and +and +Sacramento +a +tha +be +Imbecility +house, +where +1884, +I +which +military +concession +mittee +as +nnd +tax +pretty +to +cordially +sixty +Missouri, +f. +have +Vic +how +ties, +be +very +service +other +said +Rurke, +three +Congress +bind +passed +shading +Another +if +could +opinion +any +over +sary +convicts +county, +cholera +(resent +but +- +proudly +sary +understood +of +in +the +to +Miller +stitch +deed +thiB +some +Marcus +window +to +in +twenty-six +perhaps +away +or +and +weight +there +organization +I +see +is +catching +some +Why +1.A +parents +campaign +by +nnd +Pennsy +smelt +among +it +brilliant +of +be +They +wars +found +line +of +visited +gardens +and +of +do +but +earth. +ause +the +stands +to +when +interest +express-line +nnd +porch +Not +within +with +day?" +lulllng +passing +feat +sigh +that +State, +I +any, +in +blance +and +in +general +family +not +camp +The +being +near +t«'. +Nashville +regulations +your +feet +at +a +ridicule +hosts +motion +hold +to +of +killing. +not +add +nave +recommended +that +or +considered +analyzed +voice. +finally +decision. +authorized +of +avoiding +not +picture +Walnut +clerk +be +the +Northwest +skylight +and +price +and +disposition +SrAn. +establishments. +a +it +lath +N. +with +their +e +fair +much +at +treasi.ry +few +ting +of +however +on +from +Pine +Uni +ocing +I +hydrogen +farther, +boy +to +sailing +ease, +few +ence +brown +men, +bo +plant +has +and +under +the +Tala- +the +it +anguish +House +territories +require +(21) +twelve +what +studios +Governor +of +savagely +of +at +show +up +cure +where +continue +a +proceedings +of +Deeds +debate. +'has +they +nocossltios +that +fer +details. +oust +on +Allen +rases +leases +10J1 +said: +to. +"We +thS +perpetuate +the +and +The +of +ngaiust +where +he +is +law. +was +west +to +shore +sheep +Renshaw +necessaries +we +escape +^Samuel +taken +lng. +about +Hostettti'a +spirit +little +that +accordance +the +Whoa +the +taken. +joy +above +wanted +result +presided +plan +ttie +ex- +preserving +dreaded +fora +has +such +of +you +the +nnd +Boshes) +but +the +often +nice +are +lately +urn +John +the +of +spends +been +to +more +with +may +that +shall +that +tied, +the +Cutting +two +high, +is +commencement +torrid +thing +starting +set +Bonneville, +done. +an +I +to +Canal +This +lo +wrong. +ap- +of +was +The +method +if +dorcd. +work +corrects +alone +acy +items +for +commenced +of +infested +rumor. +the +At +price +and +bronchial +purpose +the +to +a +progressing +Company +situated +gold +restoring +back +de- +hear +the +would +that +into +Every +made. +had' +an +of +but, +the +the +a +kept +in +state, +rate +of +to +the +and +could +night, +are +the +factor +Federal +the +Pacific +by +cent, +for +of +Howard, +be +so +the +As +the +the +the +tertained +12 +a +tha +three +power. +of +make +fuini.-diing +off. +What +Gas¬ +kinds +BlsinarcU. +Paul +in +are +conflict +of +to +To +facts." +open; +a +called +taxation. +three +her +fallen +will +to +bad +was +would +there +succeeds +fccblo +nntl +Ot +en- +iu +ed, +the +up. +28|ioo +country +"oo +and +they +of +and +not +five +rector, +to +the +always +will +mist +up +his +over +public +who +in +condition +red +on +Convention +to +presented, +Geraldlne +was +of +within +ropean +a +crook. +severe +or +the +the +of +carnival +very +11,375 +nal +who +Matthews, +Pteas, +kiud +as +which +knowing +to +the +trimmed +you +had +man +But +resolutions +Gartland, +and +ten, +Stoneman +get. +to +have +statute +alley +“In +moulding +Kame +established +thereof, +A. +dress +any- +must +for +Amendments +will +During +Land, +from +vision +sales +Lake +the +•uis- +Two +they +lives. +other +23. +note +of +they'd +done +on +Porringer, +she +the +baggage +motion. +stick +well +assured +and +the +sontiments. +in +ipectre +admit +their +aggregate +We +iteotcca, +power +of +least +trial +State +that +T'nlted +Campany +city. +to +wife +habit +and +(iarfl^ld +win +was +an +as +I +- +the +year, +to +fish, +wood +be +of +Brit +as +between +and +when +privilege +job +here +port. +in +York, +4, +has +and +$.S3 +City +them, +or +us +its +by +they +can +States +plates, +we +city +as +Llndaav +downing +ieanou—a +not +The +a +would +latTwaW +carpenter +shouting. +wood +di­ +be +hold +fish +Schwarzschild +it: +MBs +lawful +with +the +Princess +Douglass +a +it +luima, +of +2d +the +far +all +about +they +of +d" +'hnical +defeated. +Victoria +he +for +following +xxiii +. +tbe +If +pump. +of +upon)1 +ments +2. +order +tho +60$ +had +pros- +company +intelligent, +Minneapolis +hour +no +ur +shore +cleared +of +nor +of +Potomac. +proceeds +Carroll +the +in +faint +unu +bear +regiments. +Morgantown; +began +a +by +the +cents, +is +the +said +last, +Idemnite +'lett +Christian. +repo:t +convention. +the +no +fire +$55,000.00 +"Then +covered +Ed. +longer +all +a +of +of +policy. +almost +destruction +about, +pion +When +into +every +v. +. +is +recital +of +of +difficulty +in +tax +Hyde +by +Kincardine, +Plwaeta +cured +Mrs. +which +within +charters. +tbo +nor +obtained +only +directly +doctor’s +high +to +It +such +of +consumers. +whistle +has +finding +including +security +easy +(hose +indissolubly +at +A +met +that +excellent +Coughing +she +Stiffer +he +on. +ttte +water +ing +there +most +pre- +will +takes +of +bastions. +south +and +defrauded +to +Flaunery, +followed +literary +these +peka, +She +any +quarter +pur- +effectively +of +The +are +3rd +crop. +of +of +are +and +al«»4'r +J. +such +and +to +as +before +Champs, +-six. +certain +by +ue +ago, +eighth +the +heavy +avenne. +of +of +of +stake +Southern +of +to +lace +make +said +havo +attractive +bi.ilt, +the +decision, +eep­ +'Thc +T)rs. +-i +their +railroad +trampled +New +a +publiv +»(oo.l, +structure, +groes +sunlight +1911, +Mari»kMlltalT +conclusion, +the +I +' +classes +of +out +pasted +by +tha +R +are +potato +harvester +koep +weather +would +complaint, +fall +was +furious +b +pay +tho +this +to +accomplishment +old +mind, +sociation +the +the +clear +oven +thinks +description +tion +not +ter +cealed +debarred +few +Buffalo, +Alkerman +lime, +first +okfice +In +mattings +of +command +Globe +him +a +com- +on +climate +the +self +now, +new +success +the +compel +nied +the +ilouae, +left +home +matter +seo +wife, +H. +. +If +of +an.I +San +much +that +but +minds +other +takes +a +a +shall +iversal +conjectural, +he +i +in +sort +ville, +us, +If +a +in +pg,st +E. +vanity, +whto +visited +.. +wasn't +140.17 +and +company +desperate +shewing +In +and +{dissolved, +been +shown +that +fighting. +3.29 +four +of +by +a +arc +anything +poses. +hard +coin +house +ono +I +will +middle +to +the +meeting +a +a +towards +bo +little +been +«gi +one +money +cause +quality. +before +lias +othLe, +ill +twelve +ary +he +seemed +The +Santa +practiced +th +Fredv +to +sulted +doing +accomplish-* +our +in +in +industrial +Joseph +the +and +"ninety-two +private +from +do +Congress +standing +George +Mott. +these +the +it +street +age +Llewellyn, +not +paid +character. +like +or +burg, +reaching +football +Butterfly's +and +It +unless +compelled +cheap +by +to +be +the +are +a +ASQUITH +rangement. +8 +its +carrier +to +of +cost +see +with +I +to +sat +Traffic +receivers, +tinent? +llot-W'uter +daily +When +H. +written +and +he +mained +at +that +when +a +bushels +irrelevant +partita +told +regard +comparative +in +Sanders +dividends +and +the +S +shoulder +mends +a +ficiency +side +individual +English +our +ceilings +of +tin* +stand +for +me +open +always +distant +fed +labor +to +rious +went +and +tion +sea +hollow, +us +to +Chicag +ship's +the +many +to +held +six +that +open +eries +to +pressure +mnn +Cos. +beholder.. +the +20 +crash, +a +two +tea +too +employe +them. +choice +for +mountains +have +; +neighborhood. +of +Presidents +lands +riety +July +unfit +in +loans +the +building +It +finding. +ue +S<* +Is +her +breeders, +acceptance +us +a +tho +All +came +and +from +him +where +Board +arc +training +1 +duty +who +the +to +tools, +mechanical +in +to +two-storv +contain +equally +went +to +far +institution +predicted +made +exposition +is +the +expended +gun +t +last +and +out +rocks +eitlierat +and +In +but +whereas, +former +recent +to +for +instances +Ryan. +by +kept +blindly +And +upon +much +per +the +who'had +tho +present +them +merits +and +years +everyone +tbe +endeavor +fur +keeplngof +transferring +; +down, +children +Capt. +itj +and +duties +spread +reason +most +their +I +Imperial +action +failure +swol- +and +soem +No +dersigned; +will +bis +above +idea +servant, +Bkln +oi +sur- +Durlnpr +dleman, +document* +botany. +show +ferret +sleeping, +prosecuting +rather +that +nothing +work +Manilla +case +reached +caucus +in +immense +no +supporting +ol +cannon +people +Arkunsaa, +sti +lirst +city +have +Juan +gills +and +uie +scenes +the +obtrude +advised +that +ical +to +he +duly +Maryland, +pective +must +the +previous +early +Versailles +rules +is +moved +upon +to +be +askance +prohibition +cutter +from +np +us. +that +end +criminal +ble +they +cubic +cut +any +heal +pleasant +whole +ad- +writer +dark. +sum +" +City. +tion +a +loan +me +oud +Newcomerstown +the +of +to +and +thla +Lockie +FOURTH +United +that +lision +rows +There +treating +set +Fannie, +for +sandy +signal +manuscript, +gallon +word +of +at +great +part +sight. +and +through +written. +of +varieties +The +k"pt +in +around +been +the +lead +Barbour +les +water +much +the +fraternity. +stars +M. +the +just +heifers +by +free +detiHinri. +- +of +in +go +of +Merrutio, +that +who +this +thin +church +mis. +belong, +mar- +north +date +a. +such +those +Fremont +year, +ina +flour. +only +whom +Davenport +income +>oking +Vine +la- +stead +the +North, +and +sionate +alleviating +are +above +in +upon +Bond +tol +lungs +bo +turn +all +was +rascally +commands, +to +but +by +or +quest; +and +clown +umui +thus +Galileos +In +a +uiore +a +jolted +of +dishonesty +cream +soending +some +Northwestern +his +5 +cut- +Louisiana +van +engineer +to +second. +and +. +wit +they +sentation +by +adv +The +but, +the +ac>»rdnu; +knew +no +but +of +.5" +but +public +bo +frequently +and +'powers." +nestling +beyond +in +J. +we +skirt +63° +follow +iinnre'si'in +and +license +Three +partly +J +to +attorney +of +000,000 +to +the +friends, +The +different +of +toward +ri«-li +and +the +been +of +a +also +to +horses +we +and +gowo. +consumption. +is +lo +It +engagement, +half +tion +one +then +the +make +at +that +four +the +in- +But +I +to +indulge +Glick's +other +aud +which +the +necessity +of +at +the +? +that +of +cents. +and +WOBI +good +gentle- +thousand +so +believe +Angeles +is +HutAttd. +The +vein +bearing +amounts +s-te« +estimate +with +Srovided +brain +no +tern +future +expire, +fo +of +the +was +thing +Directly +your +id +it +ratify +of +to +man. +broken +a +some +looked +thrust +Ehret, +security +of +es +pursuit +this +was +and +or +quantity +@ +back +and +reassure +ed +mittee +widows +disposed +power +others +ns +or +keep +residing +ure +payers +of +Chairman, +turer +Prussia. +and +maintenance +States? +aud +they +life +adoption +this +roof. +out +their +would +years. +erest +Mary +decision +order +138, +fact +100 +In +first +rapid +District +District +a*r +contest +then +for +process +and +Albany +of +City +I +They +combats +the +for +scab +possess +Captains +eating +on +amounted +and +fees +prnan +come +of +Christianity. +taught +llinitetttoftO, +Secretary +nnd +he +was +of +the +when +even +- +Artillery +ley. +at +r\g* +s|K>nsihle +Coyne +a +known +swing +more +to +their +pass +la +shall +co-operating +to +a +lie +would +months. +dance, +affect +in- +Aug­ +fair +has +pigs +carrying +ta +New +wo +bo +effective +cat +that +inclusive; +build +not +at +make +out +Jersey +Kansas +basket. +show +evi- +fact +one +log. +occasion. +in +for +was +niorehant +United +Istr +on +have +St. +to +wonderful +ises +the +stain +lauious +ing, +Havemeyer +3 +and +in +easily +but +republican +women +Donahue +the +is +apparently +girl +Tapt. +sibly +out +tell +. +by +Itldgo +Trumet. +our +and +one +from +to +at +on +what +coolnem +hostility +E +Converse' +itooseveit. +IIKltKIIY +shall +tiled +every +mutilated. +to +deed +fact +last +country's +pass¬ +of +city, +llsiif +a +the +birthday +the +cans, +amount +success. +to +very +corner +eaat +instantly +Ohioi +discus­ +single +at +Miss +Mrs. +of +spread +game +turned +his +course, +at +sanl +has, +it, +capture +. +a +New +Ha- +they +he +ently +was +Commencing +com- +consists +look +such +which +It +the +are +her. +It +of +im­ +way +sole +the +gods +of +a +so +are +the +apron +bustle +of +contracts +them +on +mosphere +experiment +their +be +Tsd. +is +mplete +of +proclaimed, +years +start +a +some +They, +ual +report +cording +lowuahljw +the +der +private +effectual +would +a +cottage +name, +USP +30c +water +oon +or +the +supplies +shame¬ +probably +i +at +Providence, +nues, +the +west +me +the +disloyal +that +Taylor +a +scat- +ring +to +cooler +other +said +little +thousands +every +money +with +to +stnii'tiiro +more +prices. +dominion +report +nud +during +await +teachers, +relay +Here +then +Posey, +gar- +tenth, +heart +seldom +getting +house +moral +un- +the +time +N. +best +C. +o6 +and +that +by +disease, +wonderingly +struggled +Lbr. +how +yachting +the +of +able +to +the +fit +of +is +and +I +and +fixed +condition, +was +best +me; +81 +is +and +of +in +a +time +"John +of +n +is +more +fore +where +butterine +visions +the +their +ers +circular +Kdinhurg +Washington +that +junior, +get +counted +to +but +State +as +ified +shall +a +beauti- +night +to +then +rjaua'o." +ball +to +they +good +recover +have +fraaidant, +man +mortgage +Densmore. +a +institutions. +was +Its +will +•what +have +creek +the +in +vote +one +entitled +push +and +Hadley, +4313 +Prof. +to +his +one-eight +thence +binds +new +shore +In +power; +eyes. +to +beforo +first +excuse +f..i +tables +An +other +min­ +which +the +stories, +comfort +start +between +of +it. +if +ice +range +pioposcs +has +register +has +other +the +returns,' +offenders +in +to +of +also +by +not +making +olous +been +in +exceeding +less +to +use +No +name +the +made +procedure +wants +League +Boston +mediajval +work +aro +ko.%ked +ling +the +Howard +llko +for +Edith +descended +highest +Pt-b-r +out +He +her +owner +*11, +coun +week +find +sanu +all +night, +114 +would +received +to +(he +tained, +lander +delivered +tauntaat +fitted +no +section +breed +$1,059.49; +ownership +or +doors, +hgvDtipns, +political +the +August, +years, +Smith, +to +coun- +were +executed +runniug +of +inches +marched +perform +low +is +(this +city +been +on +com- +with +chawed +Byzin +he +gratitude. +Women +less +Indians, +oath +to +place +one, +he +amount +stop, +without +Room +rescue +get +Captain +for +or +cision +pound* +procreds +1, +this +of +of +marvel +declared +churches +On +attract +steamships, +establish +about +stroke +The +round +seemingly +plied +gimlcted +iiiui-, +the +shoulders, +fcfcing +with +arrives +W +said +of +Salt +day +and +a +to +trail +copper +off,and +l>i|.iotuatn-t.'orps +for +io +broke +create +iples +hatch +this +committees +Then +la!.e +the +con¬ +disguise +and +the +well +Mr. +Bragg +said +an +day +beg +girl +Well, +within +I +of +on +worked +to +grand +He +these +or +of +it +am +artistic +other +places +her— +Mr. +M. +glowed +beautiful +Income +sick +a-'number +26th +State +md +to +he +school +was +of +was +In +on +his +forgetfulness +frolic +had +saw +hist +properties, +in +her +bring +amount +wide +is +to +to +Tbo +tbe +not +right +things +time +General +and +uted +fore, +siastically +mH*1m +ol +killing, +Trumbull +comes +for +reply +larger +Nails +of +was +posed +aid +1912, +earn­ +farmers +to +to +Inverted +awkwardly +been +bcr +ocorre, +by +and +far +informal; +action +Mexican +and +bid- +strictly +the +newspa- +fight +be +Plnero'a +as +the +desire +that +In +some +tlie +section +increased +pushed +the +in +its +should +pride +iy +one +MctTat'sPlll* +Crane. +time +'orrsinonth. +the +to +a +therein +Perth +In +in +and +along +money, +tin +of +hat +clerk +held +that +in +Barnard, +from +aweluaptr +of +church, +lively +of +and +..ntinut.i +Daitch, +time +or +build-lu- +ita +and +force +southpaws +decided +so +light +Inspoctors, +the +leaf, +that +Here +proposes +Kniikin +violation +will +by +expect +except +attributes +en +evidence +or +intended +pared +pant +side +consterna­ +each +desir- +doughmees, +Important +the +and +girls, +being +Ingemann +I +and +banquet +earnestly +no +Falk +to +it +sleep +no +the +deem +suprieures +of +mil +the +oil +and +fact +and +and +rye, +nt +18a +reduce +in +his +possession +taken +«.»nirary +from +town +right +unmarried. +Great +them +tified +gages, +Reti- +crack +60,800 +Sleej)- +or +the +for +bridge +of +when +of +the +on +matter +executive +lowed +adopted +come +£g£i +good +by +seeking +to +hidden +without +I +and +In +of +and +at +night +possession +Mrs. +on +back +There +enthusiastic +Washington +Its +the +idle +in +him, +New +at +of +nent +has +bolls, +weakness +fiscal +havo +of +following +and +much +R +to +a +defects +re-echoed +This +sfferts +upon +heard +»he +expressed +towards +fur +i +is +lengths, +gage +of +by +In +the +and +of +extracted +Ihere +State +officer +the +of +would +and +of +hueu +this +of +Braddock +Cap- +fir, +is +same +are +her +highly +and +onto +; +Baptist +at +total +people +and +course +events, +villago +con- +away, +state, +Floods +ot +crews +them +all +said +and +not +best +in +sick +of +to +that +the +another +the'duties +en­ +For +of +the +they +said +id +the +an +of +its +gunboats +Interest +me +case +do +the +Congress +the +what +duty. +the +began +big +E. +my +the +fell +. +passing +better +almost +cinnati, +preached +par +most +intersection +it, +of +Rapids; +indebted +the +Of +ated +off +great +tnomeut +honor +of +the +even +in +would +78, +guide, +her +Audrew +Cy +not +man- +that +whose +piece +will +and +they +eaction +not +the +and +little +liberty +the +h +the +vail +exact +ger +came +her +times +Jefferson +"All +forward +attitude +,000. +Registry +never. +left +oc- +field +William +ceiling +plays +fantastic +rich +or +of +battle +canals. +but +and +Mr. +merchants +even +shall +attractively +the +ful +of +connected +the +the +the +prior +was +as +any +unsettled +surprise, +very +forth. +officers, +both +to +saM +awakening +Democratic +pica»arc +Trustee*. +th" +Cbes- +Dr. +one +agreeable +Oregon, +sharks +at +saw +my +a +Lord +told +you +settlements, +so +sent +setting +Liverpool +death, +glass +decrease +Healy, +around +honor +rests +that +for +in +take +in +December +not +a +< +ted +of +the +is +to +taxation +this +managers. +to +is +began +for +as +little +better +ing +Piggott +the +presented +house +the +paid +That +you +the +long +the +would +at +can +and +Will +He +with +Kvergreen +by +the +its +in +a +attention, +in +I +in +plications +t.. +tho +on +been +pro +cloud +adjourned. +continued, +one +or +steamship +ually +form +George +Presbyterian +man +to +bring +people. +o +INTERMIT- +lived +which +a +enjoyed +their +to +regarded +other +fitted +J. +picture +people, +cannot +as +girls +sun's +state +st.., +contain +benefit +The +the +DeLand +Conde +newspa¬ +Fairness +the +an +had +history +condition +escape +No. +who +scared +to +more +Railroad; +charged +gether +of +the +upon +by +Mr. +ted. +one +their +Wo +in +the +I +or +rspidly +He +were +large +10 +bo +to +said +minutes +of +Expectorant, +time +iu +.ir- +body +8 +of +west +of +the +whoio +both +States. +into +made +Wis., +for +two +London. +now +the +present +tax +per- +to +all +toward +Puch +accommodated, +to +on +grouping +body +presumptive +aud +Gustafson +less +has +were +for +my +many +very +ou +Alaskan +Works, +appears +cast +to +Thus +the +and +to +all +Rep- +on +If +4, +Carolina, +Dvspopala +Congressional +Virginia, +that +to +decisions, +the +Into +for +thfc +never +of +the +granted, +was +could +the +and +of +I +it +and +Clsvk- +the +shame +laat +lot, +that +street, +warm, +or +security, +No +recklese +same +to +United +guessing +to +the +developments +the +Ot +of +zinc, +j +lead +Archbishop-elect +t':at +tense +served +VOLUNTEERS, +reports +possibility +fur +she +int +Judgo +lot +whom +the +investment, +chanan, +tie +make +his +and +disturbance +they +by +Gil* +received +euemiee, +tell +Ate +Anderson, +bv +game +as +rote +N. +In +'bo*e +of +the +owner +an +in +lican +sald +and +dges +miles, +being +when +should +n +to +street. +which +real +in +worse. +summer, +deem +rpo!'ale +said +a +accepts +with +Perkins +to +deg. +members +as +evening, +this +resulted +the +can +dependent +lie +to +and +tho +currants +platform +a +Gastineau +Secretary +time +her +be +at +man +of +nineteen +Thoinpson +three +the +I +facture, +The +on +statehood +saying: +Western, +the +sale +Hut +to +b'Miate +never +his +is +paraUal +it +of +used +is +complete. +r +the +the +of +said +for +Dr. +do +that +services, +of +thirty +transfer +was +It +immediately +we +charges, +ment +conduot +mntnal +Hamilton +the +I +qulnus +He +without +argument +attribute +the +declare +excrescences +putting +and +class +young +atme +re- +may +to +Minnesota, +see +action +obligations, +pigs +inquiries +to +legislation +from +car +in +will +for +Painter, +jubi­ +surpassed, +The +ing +or +street +been +exist: +At +The +holds +condition +Lcreefl +a +They +deter- +and +of +by +duced +not +by +16, +at- +of +dis- +give +the +start. +labor, +Company. +ity. +build +no +men, +disease; +rj +lmd +furnish +Is +cover +but +a +without +, +advising +that +divided +I +under +ipon +style +It +at +Potomac +a +lumber, +aoea +great +for +bread +a +the +The +naiue*. +which +occasion, +Southern +not +in +but +the +seller +Cei +8-2197 +his +Ihe +Blagi, +tc-morrow +in +Values +try +to +government. +is +the +Before +Republican +be +steal +railroad +sufficient. +the +The +he +provided +ate. +the +thlm +the +irregular +Hut +that +Four +BB +were +is +offerings +et +In +six +irought +but +Emory +or +handsome +because +ernment +Lyatt +28—The +had +each +have +if +of +to +to +signalized +such +accom¬ +Grant's +are +but +docs +to +lessening +enough +ter +It +peddler. +were +the +en +Luft”—“Music +help +ges +We +the +have +egg +breach +wa +is +Ottmann, +this +morn +that +said +offenses +y +by +Hokesviile, +south +addition +invigorating +all +that +water, +a +He +problem +ten +of +up +with +them +pendicnlar, +all +said +nu +where +buildings +declaration +shall +about +very +a +the +10'.»6.south +the +will +of +and +son; +destroyed; +Emmanuel, +mud +and +no +and +him +for +friends. +suit, +each +the +at +Along +great +delinquencies, +the +a +and +that +money +be +bucket +operated +Lowell +a +of +that +a +where +general +had +the +con +(see +childhood +wisdom +judgment +to +say +she +during +Btatt +along +N +much +Rebecca +l.uuau, +dignified, +Seiler, +territory +and +move +with +institutes +and +itself +should +the +the +of +least +But +established +them +the +inches +best +hour +80,000 +upholstery, +of +its +sixteen +and +to +section +picable +the +a +They +County. +on +it««-lf +reputable +to +skill, +ment +give +visited +must +it +dozen +the +stroyed +tbe +to +from +wide.belnir +the +moneyr +the +when +there +The +broke +keep +took +story, +economists, +Japan. +and +drawn +agent. +a +what +good +greater +is +an +were +of +additional +life +becomes +monkey +upon +fame +its +their +Ho +our +Commencing +twilight, +on +to +on +the +years +April +superior +; +today, +Its +said +named. +so +will +rend +Young, +so +with +tall +most +Court +and +excited. +rate +of +who +that +the'family +M +skimmed +small +be +they +shovel +rink, +and +Fellow- +important +only +tender +clude +and +this: +ing +line +there +w +an +does +people's +he +to +Tho +it +price; +Surveyors +that +instituted +be +so-called +refugees, +of +permission +the +son« +Monstruation,all +a +proud +beautifully +5, +Southern +much^ +The +Sardinia +returned +divorce, +each +financial +as +he +the +2 +at +immi- +and +courage +public +wishing +not +by +diation, +John +loss +etc. +a +the +Spears, +nt +we +State +The +days, +and +the +has, +way +Cnlp, +dish. +tablet +and +refinery, +tho +and, +and +to- +thu-iasmn. +been +many +in +than +hundred +ad- +that +those +it +him +mistakable +diplomatic +ihe +twenty-flve +teaching +Mexicans +be +the +hich +subcomaittea +spikes. +same +a +it +work +many +a +educated +color, +kee +aged +stolen +the +of +repoal +few +a +not +this +finds +and, +shall +have +the +often +will +thrown +ft. +and, +kindness +of +tr, +had +the +and +have +the +enti- +but +them. +Logan, +just +culture +Heidelburg +country, +dreaming +derangement +center. +when +in +sought +no +|,ot- +wrapped +and +mules, +615 +equipment. +"It +is +lives +circumstances, +is +men +was +vapor +amount +from +so +As +in +Itoosevclt. +83, +~ay +or +tt +to +for +divided +uim +falrly +being +fees +tained. +refiuiug +dence +in +reach +ability, +much. +conveyed +it. +answer, +they +White +and +Robert +propriation +the +thence +never +Is +quaking, +driven +special +islation +with +its +and +same +ihey +bid­ +Carrots, +American +November. +the +long +the +ous +might +up. +is +aml +yesterday. +growing +by +interests +Yes, +mortgage +lie +boys +weit +fresh +or +mon +would +her +purchase +was +Inquiry +President +a +dropping +the +glorious +mercy +was +better +of +poh'S +prosperous +vate +few +east +no +II +that +possibly, +to +etly +country. +s-Turiti's. +ever +take +partments +if +cutting +could +of +plain +of +sohl +A +the +cation +by +ders +and +27tli +help, +ways +don't +and +down +theme +assault, +This +the +-Dl.'s +kl'llr +feet +of +saw +the +them +in +Canter, +young +K +mam +yonder +next +roth, +the +attention +probate +safe +promptly +ever +learned +gives +weariness +claim? +the +blame +Im +upright +49, +indicating +Company +giving +for +were +In +put +there, +service +work +approved +it +many +lane, +things +that +and +was +harmony +mile +and +to +a +dependence. +the +ease +coffee., +on +the +nearly +22 +where +rely +a +all +minutes +ing +then +was +tho +Dr. +the +ho +who +ous +court +the +the +no¬ +return, +model +when +stay +which +on, +the +sider +yet +additionab +This +of +par¬ +I +had +be +be +by +here +husband +all +would +Jertiniiili +due +order +posed +qualities +bHice +reporter +as +would +open +flanks. +or +to +likely +say, +made +This +Martin +It +as +of +pathy +weeks +within +hnng +the +that +northwest +hers +Holland; +or +what +instrument, +forty. +all +with +arherevarhe +at +tape, +entitled +left +e +dividual. +Fargo +he +mix¬ +inscriptions +and +the +is +attainment +and +you, +weeks, +bidden +mind +need +course +the +the +species +leave +In +out +in +jeing +Express, +this +northern +job +and +in +The +of +Judge +Qeouob +needle +strange +signers +of +she +been +spot. +by +$17; +this. +in +they +would +in +ol +alone +road +is +illumined +Arithmetic. +Gen. +its +under +tensively +ig +which +of +at +Peru +calcareous +identify +Thero +peas +of +fall +winter +pla~c +whisky, +Utter, +Mr +the +United +beinp +is +P. +of +all +I +paign +to +inches, +ridden +be +$5 +has +the +'the +lately +exercises +grain, +sin +said +As +which +in +of +scattered +Mr. +to +and +of +when +aud +which +necessary +Grace +small +enough +should +the +of +A +llepcblican +ncmber +was +disgraced +by +seemed +of +navigation +occasions +McClellan, +thestatute +a +custody +piano, +of +rare +the +the +as +the +Tluat +1,1a +the +the +they +made +in +tossing, +will +project. +by +north +shoes, +the +but +of +found. +of +to +running +would +the +not +has +large +into +was +salt +without +LAND +pies +the +supposed +tbo +thus +Don's +declared +.bysald +to +emphatic +Sir +on +the +Colonel +going +the +and, +any +most +etunomy, +and +ufacture +Weil +warm +breach +the +statements +to +Aeciibii! +nnd +who +not +to +him +pa- +wall +puts +now. +ten +V. +cast +It +their +palace, +Lord, +per +do +as +received +Grand +caused +who +On +room. +persons +(ur +general +in +is +some +51c; +most +as +Kitty +by +an +tiled +court +it +nud +"What +Nelson, +everything +or +the +has +r +of +ed +memorial +U. +during +of +these +posse, +except +during +of +wrapped +country, +P. +great +Cuban +-dog +ious +to +them +it +act +the +writ +reach +education, +drop +mend +and +t'll +fire +them +aim +afternoon +and +unless +and +how +were +women +and +feet +of +in +to +people +Trade- +Sls +of +part +from +the +for +belong +of +agricultural +years +establish +ft. +^heir +Fort +considerably +Honor +purchasing +their +spent +the +in +with +The +separate +patent +cleansing +garlands +one +as +and +scientific +their +against +can't +runs +In +the +per +the +their +city. +committee +exists +He +did +of +as +X +views, +Missouri +the +Wood +the +the +with +the +hear +banner +not +horizontally, +height +we +what +did +:n +at +swamping +is +her +effect +to +keys; +survivors +the +ways +more +lances +Not +by +made +gash +redress +six +will +heifers, +«fthe +the +per +the +together +shado +the +degrees +foflff +were +great +more +large +Morcur +sale +ately +him +fangled +defer +new +Cor. +G. +made +thoroughly +averse +said +denied +should +whoever +sounded +death-knell +other +on +There +by +Through +organized +ing +thu +departments +Dr. +ranges +the +Implement +f.aa*UC, +screamed +an +poor +cowboy +entitled +that +book! +well +on +the +Hill +Cairo +municipal +1 +cork +ncntht +some +great +three +as +was +Jones +be +America +three +owing +tariff +store +cing +tbo +in +according +plank +of +highest +"But +as +or +upon +yards +words +pointers +tbe +Peas, +for +relation +and +village +must +just +ia +a +has +in +voars +of +us +ascertained. +court +jurisdiction +4a. +of +Union +Mr. +it +dent +your +titonty. +are +will +range +letter +white, +ed +rinse +aaid +ageinst +with +behind, +entitled +stumpage +;ii +affecting: +fit—a +diminish +were +additions +exceed +?r +cemetery +fourth +estate, +have +and +fWet +Lord. +Block +iqjanufacturers +curious +It +batbu +ers +feet +the +inch +be +somewhere +any +pended +the +picture +Range +Joe, +charter, +and +three +located, +stout +hange +ac« +California +of +No +Charles +Because +those +that +and +morning +on +be +compelled +H. +the +come +in +tl.it +ed +first +a +opportunities +departiimnt +a +and +42-100 +irees +half +mulative +to +plan +perhaps +are +they +mined +of +Some +of +achiered +Twenty-five +is +Jury +of +fel­ +came. +been +has +they +wore +slow +feet +sort +who +electricity +The +the +cers, +the +their +trotting +case +that +and +doors +in +passengers +ami +from +how- +lor +then +which +authorities, +in +he +to +ad- +aha +is +Unnamed +Franco, +law. +old +of +a +the +?kite +superiority. +of +so +night +for +a +known, +them +he +hitat +Colonization +giving +his +instruction +wo.rks.sedmet'inefur +that +so +pleasant +more +the +cloths, +opposing +Lewistown, +inquiry +none, +miles +bright, +ntner +for +Los +oct.The +to +Children, +expert! +the +rural +world +pellet +the +several +l +and +sccedcrs +nature, +so +season +this +deputy +case +of +the +75; +rich +the +the +be +min +effect +the +is +"This +pointtag +discussion +for +your +Joel +the +upon +so, +neighborhood, +In +help +do. +will +evident +the +blue +be +correspond +real +as +feet, +some +Is +as +of +of +Ambrose +her +itors +&e. +The +a +aims +was +a +it +August +of +but +contrary, +1. +hereinafter +of +ing +-da +liii +a +but +in +greasy +attend +Co. +otnhcd. +large +Is +ne’er-do- +one +any +entrant, +uml +gusta, +the +and +ii'val +since +hut +routes +thence +wrong, +apt +mockery. +McDlll, +IBg +whioh +was +:ourt +sembly, +helping +of +ing +Howard, +opening. +ten +real +In- +p.m +ist +therefore +tion +though +market +fication +is +The +at +that +door +snch +Devotions: +hare +again +tone +Money +all +nal. +north +many +sal- +lifted +these +bond +ere- +ask +probable +by +decaying +in +to +yo.i +on +in­ +a +buggy +exaggerated, +,to +this +any, +a +to +There +Courtenay +i0 +kitchen, +however +have +multilateral +electric +T. +terior +a +discouraged. +others. +bles,and +yet +a +to +detail +({iiuntly +directly +a +w\o +she +is +aoon +The +Christmas +ors, +already +are +began +pursued +Shriver,) +liuve +that +that +Uly +i?sue +on +that +White, +suffered +persons +from +street, +the +that +laMb +democratic +ticket +Wilson +chief +"He +rade. +policies +Ia +the +years. +flow, +the +accordance +containing +at +Railway, +claim +To +power, +and +rejected +approached, +void +my +him +Quinn +assembly +| +line +the +gained, +that +I +her +o( +generally +tons +to +Kenwsa, +that +true +worth +heioic +old +tboee +G +gage +would +of +forgot +it. +seius +god +ticket. +College +examploof +to +to +within +in +ojien +While +career +out +and +Skin +representative +red +him. +pa +:lie +by +one +up +outrageously +order, +crossings +west +in +mar- +meanders +Kings, +election. +He +E. +dVange, +system +prospect +wild +months, +If +any +and +on +friendly +It +by +Kittie +cry +from +hill +am +n +of +other +testimony, +husband +flight +that +wrii.eiref +April +catchup. +recourse +on +the +house +we +Napoleon's +which +and +this +to +freely, +with +could +dealh. +havo +rates +exact +“Saucer +submitted +of +life, +north, +the +from +or +With¬ +is +only, +night +such +France. +or +sea +of +spirit." +that +froze +his +Im- +yeai +foun. +James +foe, +upon +a +Dil +tbe +baa +or +cutting +at +th' +one +by +of +proclaim +the +team +of +it +and +organs +tho +by +she +of +a +is +out +Only +of +contains +and +had +awful +is +exciting, +by +"great" +C. +impossible +even +another +W. +the +friendly +bath-tub +attempts +surface +light +and +about +of +picked +.,p.- +helplessness. +of +spite +uncle +day +seeking +In +greatly +place, +boundless +is +loughs +to +. +not +POTATOESThere +described +for +they +mixing +Carraway, +planter +said +us +closing +" +viding +the +past, +of +are +l +oil +When +but +war +turquois +The +visited +There +of +than +tax +also +whereas +such +returned +narrow +er +ments. +glances +superintendence +loan +petitioner +regard +of +dinner +ol +France; +to +with +every +Will’e +through +to +thus +Is +ibis +in +that +immense. +of +and +over +of +dancer +the +North, +pay +table +( +bean· +a +one +Clarke +the +<|Uesti. +government +at +entered +sprang +the +mortgages +railway +store, +stick +Dave +upon +Steers—10. +care +the +the +37 +District, +he +said +Roosevelt +rail¬ +quiet +of +trumpeting, +Rtver +by +by +shade, +photo- +with +the +; +of +by +it, +was +Moslem +f +Creamer, +end +St. +the +CJcnrgia, +the +moving +a +John +cussion +attempt +gave +man +property +arrange +might +that +an +up, +time +the +.UI +Carletons, +state +will, +that +battery—McHenry +scene +belore +New-Jersey +you +here- +car +ato +bodied +city's +be +is +Fund +none +It +of +cups. +far +favorable +southerly +tho +strength, +and +tne +against +meet. +less +The +giving +nurses, +while +refuse +or +young, +that +Winifred +an +will +station +the +In +development +this +her +estore +olis, +considering +quarters +equivalent +and +pressure +quality, +not +such +who +lie +aud +easy +atapua- +of +Thomas +delegatea +and +conducted +the} +certainly +been +six +84.25&4.50 +same +the +jewelry +who +Itanuberg, +doned +Charles +against +a +the +hold +afloat. +marked +seizure +been +followers. +Doctor, +as +lighted +11 +from +thousand +require +the +illuminate +spirit +of +their +lo +effort +much +three +therein +without +water, +ou +It +ordinances +ton +Annie +mc +Xear +Gen. +the +large +of +liable +business +sonable +contrrry, +her +as +the +Logan. +the +D +premises +subsequently +coeimolious, +of +twelve +to +I +to +near +that +they +in +Record. +fruits +peoples. +light +of +his +real +A. +Mrs. +Tell +of +tor +given +iatn +earls, +an +dinner +with +That +Richmond, +Cleveland +Chicago, +wasting +fifteen +of +ol +if +of +to +for +roots +from +in +of +four +make +as +middle +W +is +probably +arbitration +national +Inch +thinking, +frvlng +your +fertile +with +at +in +of +the +required +r +speaking +sev- +not +but +with +to +matters +C. +of +to +as +to +science +must +reason +that +might +secreted +Mail, +han +the +wool, +at +The +water +M. +or +Is +of +couhl +well +it +accompl'sh +letter +of +hundred +caution +ly +and +Industrial +properly, +strings +by +TAKE +and +was +the +sents +present +you. +Block +special +so +mantle +the +extracts +valuable +sahl +the +wilderness +cotton +! +the +mark- +came +of +hut +published +lagging +rs' +Fisk +proposition +way. +many +excitement, +made +Mr. +on +It +for. +and +course +Southern +tenetnent-houso +each +Plttston; +heart +In +a +were +acld-stomach! +window, +8.00 +imme- +at +past +are +programme +of +financed +Din +with +between +baby +9risp; +back, +reported +Judges. +to +upon +of +that +hi· +Railroad, +aud +tho +means +a +the +work +usual +of +efited +done, +knew +enable +list +ho~." +maintained +It +Cincinnati +fVfliis!rkn +on +city +of +opt'on +ibat +knowing +dial +majority +of +is +dist +first +Tbe +E. +and +away +the +sales +the +Gastineau +lot +by +winter +Again +to +Among +so +Uts» +malice +any +can +unable +A. +let +in +said +or +the +is +Mullen. +of +an +furnishes, +the +effective +rascality +by +in +highest +small +be +west +was +be +not +destruction +She +against +course, +persons +a +a +in +Physiology +assembly +states +of +chair. +who +beloved +Westminster, +Cleveland, +the +the" +hang +unpledged +and +a +of +of +would +paper +60c +Sic. +"gentlemen +bank +the +1864, +and +but +him +the +tho +attacks +all +bltn +their +stand +in +is +year, +go +with +of +that +hose +the +at +Joh +important +brought +August! +on +legitimate +to +audience +paper, +was +sixth +9th +Me- +will +party. +the +a +rxp,.|itiun +do +of +it +won +propcrty +carried +ocean, +body, +Government. +Jumped +turn +thing +making +interposed +of +it'a +and +el +Hate +House +has +Mr. +and +same +young +Jtaudoll +every +up +dahs, +min +at" +statement +refined +said +of +we +bete +shoot +anywhere +was +at +are +By +the +have +only +can +ball +thing. +when +no +greatly +is +have +water +secure +Castle, +a +prietor, +J. +it +Inflammation +of +who +soon +lueen. +ground +et +copied +to +of +arrested, +is +thau +Flats, +West +avail- +many +expected +desire +thus +b +to +tion +and +by +choose +me +river +noted +basis +and +erosion. +has +Co +lawyer." +the +and +be +After +in +is +the +Judgment +bond. +of +ma­ +In +now +plainly +powerful +N. +money +will +ure, +our +discouraged +requested +parly +Is +Tillman's +corporator +from +of +p.^t +Ac +our +bonanza +on +ot +ter +mosphere +the +Puebla, +south +drove +season. +to +and +May +This +.War +on +high. +thousands +That +future +log +demurred +the +a +um +Will +at +like +not +at +that +by +with +The +cient +ing +must +is +in +fifty +who +old +out +vote +In +uJternooti, +tbe +foreign +elrl +as +givs +commuted +play +one +seeing +of +the +which, +No. +was +brother, +dinturbad.either +eight +put +he +auil +quart +power +in +gallant +man +and +when +the +have +Doings +you +is +observe +knowledge. +a +some +cause +president +or +the +to +unprofitable, +had +seven +come +the +and +There +secret +European +a +A +least +would +which +Run +that +that +have +own +at +and +Harper +and +fact +one +copied +any +absence +see +trip, +a«htlr +tbe +was +oBered +prayer, +is +at +laxtuuo,elklee110,colfea100,prinfee160. +declaring, +Tho +not +middle +nen +500.000 +100 +attention +which +eat +thrown +of +ern +six +and +rents, +any +There +into +and +far +together. +re?acted." +!citadel +although +to +Oscar +to +not +people +leled +sheltered +and +termined. +what +down +1 +to +it +Bosworth, +any +one +to +Is +a +cessity +will +of +tho +governor +the +year, +tracting +bedoem»»d +afraid +having +unlawful +life +such +both +to +do +and +along +and +broad +they +waa +milk, +seem +the +that +from +is +or +commanding +things +anything. +8, +and +and +so +is +that +win +same. +would +probably +nake +Grove, +invariably +not +a +in +ure +to +ee +t>ie +jr.; +Seth +i.n.'on.litutlonal. +were +from +rich +enough +temporarily +decree +causing +worth +of +all +above +c +a +trust, +been +becoming +der +in +fer +fracturing +mother +of +At +nation +we +by +visible +made +went. +person +is +See +poultry +of +to +hy +most +they +Burruep, +and +precious +the +in +saying: +tbe +whether +old +"took +that +it +it +their +advertised +this +ouo +that +stock +twenty +James +occupy, +that +of +"The +develop- +are +111., +and +to +calvts, +talk +young +decrease +Many +lady +the +the +and +tight, +and +Lar- +behold +sembled +habitation +of +had +Hampshire. +the +in +vessels +and +:olows +was +serv¬ +3ears +Greta +soil. +adjudicate +of +California. +200TStI.WB +druggist, +that +in +t.t»'s +route +the +such +her +each +Srbr +in +with +seven +was +its +be +interest, +indorse +they +for +thereby +as +shows +the +Caroline +having +(WI. +down +part. +At +had +course, +In +features +of +recently +were +obstruct +the +question +milk, +track, +Since +succia'J +pay +speak, +I +operations +now +teams. +:i +has +Ihe +odor, +the +the +cury +Palmers +as +sprang +possibilities— +undersigned, +got +of +men. +upsetting +hope +men +in +for +with +course +the +tended +me +retained +gave +to +to +of +placed +to +by +frot +a +little +for +gentlemen +determination +but +The +stone +it +the +be +H.. +back, +him. +vious, +side- +horses, +lor +lots +ted +so +sacks; +didn't +sound +by +The +(ierrssia +one +withdrew +struction +as +of +purchases +feel +all +Pacific +of +man +mak- +The. +witness +tht +daughter, +consta +north, +Jamaica, +you +arm, +driven +the +railroad +and +of +therein +would +not +following +as +sheep +but, +intervals +lato +qethcr +htm +purchased +addition +any +age.—C +few +the +DeC. +intemperance +to +war +same +they +that +you +But +will +" +Esq., +what +a +flumping +along +it. +sings +chambers +between +When +of +an +spent +rectify- +massing +may +line +a +fllct, +all +eleven +the +always +urrency, +to +United +trations +this +places, +again +first +I +clerks, +of +the +been +outside +aecrut +and +thiown +put +of +away, +Bapeclally +the +by +delicious +equally +ing +and +revelation. +Kcturii- +said +Tur- +used +government +as +bring +men +to +into +nexed +beautiful +be +lu +He +Railroad +Foerg's +should +his +this +humble +ergetlcally +ha +water, +without +beets,fl +wholesome +Wade, +embankments. +835.00. +subdivision +similated +upon +occupied +nor +in +still +irreparable +of +his +ought +H. +by +family +to +ot +of +sing +such +19 +garden +that +near +The +groom +so, +it +an +that +tical +should +of +out +Mention +to +opportunity +only +death, +their +T, +posing +country +dered +of +neutrality +read +ing +detaining +!ive +Who +bounded +slowly +not +really +could +on +John +of +that +for +are +to +however, +inability, +then, +Potomao +would +corsets, +Lieutenant +the +must +Cos. +mo +by +though +the +a +rob- +per +of +branch: +a +not +begin +to +coinage +200 +of +good +the +too +if +and +again, +lon, +board. +straining +its +ment +all +utmost +thing +the +produce +reassuring, +America +which +interview +white +the +least +orphans +following +tele- +the +Those +pot, +report +Inches +Ide +vine +made +Moh- +and +bine +of +12 +the +land +-- +our +Homo. +protest, +2 +the +pulpit +sight +trust +any +on +the +Ap +one +beauties +twenty? +the +tive +and +items +advance +to +the +eiiibrneoi, +County +of +Uleaaon +ine +ball +and +B. +inspect +left +ttnndel +benefit +tbe +abouts. +night +of +forming +It +and +new +of +by +full +and +Lake, +fiue +guillotine +of +suitable +families. +At +east +to +bowing +must +his +which +and +sat +and +but +is +communicated +Ira +Man; +j +. +vance +of +Simmons.” +space, +countries, +and +iorth +tu +days +tion +gp +pean +same, +ha +of +determination +sion +may +the +above +Fairfax +Brother +labor. +side +kirst +of +card­ +quarter +together +liberty +assessment; +large +l-IOBfl +aui +It +; +red +coast +to +Nor +can +came +10 +out +Intellectually +who +and +Few +Ancnuorr +Savings, +by +Reverdy +wildly +in +but +sent +repetition +didates +Boy, +her +rail +said, +anticipate +national +The +startled +see +of +boast +er +Organi- +for +may +ifl +re- +mental +Those +wo +that +tbey +girl +ligent +ago +several +do +of +E. +a +June, +Vice +and +vacoinated +tin +overseers +to +something +feeling +part +As- +accident +the +ties, +the +not +the +went +and +baving +the +at +Mrryland; +two +year. +CuBkBiSM..A +of +stable,—hired +shipment +Erst +to +city +His +vote +Indiana, +visited +of +The +and +ssid +" +propertyholder +agreement, +tho +Tr +re +and +trial +U. +of +is +1882. +my +number* +carried +have +a +any +free +with +that +to +of +towns, +E. +kuown? +Then, +have +family +who +the +po¬ +of +in +the +about +is +ll +eastern +therefore +20 +than +Colonel +tlie +promi- +enlisted +hands +indeed, +stale +eagerly +i +States; +man; +of +County +of +Section +region­ +precipitate +Not +if +Geo. +eend +render +Elyria +to +association +entire +colored +bnnrfc +and +what +and +playing +of +ranks +members +time +Standard +maaterly +grip +Uvea +in +unselfish +In +you +away +to +charge +the +with +a +j +control +of +before +ines +ning +afforded +of +his +Conn +particularly +very +llux +powers +ment +(9), +pre- +auu +south +position +the +national +was +returns, +th +be +com- +birds +the +in +Petite +and +publishers +dered, +key +but +where +democratic +- +it +they +a +bushels +McCauley. +own +school +send +York. +uutit +ie +he +a +scarcely +the +took +its +Lljutettint +now, +He +cents +a +almost +parcel +object +Oothrle +-harted, +Returning +and +the +Snvder, +of +a +for +whose +age +each +this +one +being +Federation +the +Australia +disturbed +he +all +the +man +regiment +with +ous +line +Locomotive +old +soon +It +2 +mand +for +on +the +office +and +of +dders, +the +after +fungus +not +it +men +sail +be +the +the +V +the +these. +nn +appointed +expenses +the +movement +25.30; +arc +and +feet, +of- +any +IN +that +cords +roof +markably +way +arriving +and +I +The +in +equal' +train +*c +o. +per +Boss. +the +in +and +paper +might +;the +had +who +hands.the +next +hall +bee; +notes +bull +fiauds, +such +the +to +he +have +[ +an +hree +is +a +signs. +the +in +our +over +constantly +the +work +strength +make +Boon +$2,500; +of +legal +dence +in +been +Vicksburg +disastrous +circulation +of +and +been +tax +of +36; +two +ergies. +the +"And +the +Bancroft +. +in +this +never +the +a +other +sequently +that +parents +seven +and +secretary +quarter, +wep +England. +sion, +the +a +to +during +reading +nnfaltering +drawn, +is +not +a +nothing +Grace's +Pacific, +Ar- +of +. +she +corps +in +in +and +below +lowlng +always +cero- +Also +us +(20) +If +of +540 +the +ence, +the +a +the +the +decorating +laat +side, +has +opinion, +doctor +G +Well +hood +vtey +crit- +auu +eannot +boy +a +peered +although +the +the +party. +Murray +glad. +them +sec- +they +to +splendid +masses +good +witnout +stop +EIUUT +you +are +but +One +end +the +wil­ +ners +"Why, +that +subscription. +mentioned +TORTURE. +on +of +statute +of +a +candidate +Giants +have +it +today. +of +till +breach +of +GUAR- +the +ly +from +inter- +make +held +the +were +the +men, +The +n¡;iiiiirt +rescue, +the +to +go +other +law +mi +the +contrary, +all +west, +at +gathered +as +malady, +Legislature, +on +for +elector +arsenal +rapidly +behalf +easy +cludes +book +of +creep +I +cessful +but +pared +White +moro +inefficient +Qtatvee +season-r +paddle +extreme +French +from +German +the +gripsack +for +to +make +the +the +wculd +otherwUe +which +in +Lmcaator +magnificent +long. +one +will +very +young +passed +Botts. +days, +unknown. +even +were +involving +fact +vs. +uwny, +public +to +per +have +m +due +But +rela­ +north +to +dispute +it, +in +not +to +none. +looked +woman +you +Mr. +trium- +me +Prussian +ottered +with +aa +tn +tiary +in +Ooaaol'e +policy +or +great +romantic +tem- +like +by +the +is +canals +rate +but +shall +shall +indemnity, +300 +life, +after +tion +It +; +Life +thus +about +other +the +which +un- +vote +many +near +scheme +dry +(2), +sufficient +to +death. +each +friends, +of +page +a +in +held +air +than +the +all +as +le +a +balance +whom +the +to +depended +brought +made +having +Mor +reorgan- +self +board +tures. +H. +and +is, +in +granite +dont +went +a +and +a +more +described +industrial +battle-field. +the +frightened +pel +cannot +a +passed, +law +bis +is +ignore +ed, +the +into +bid. +tnko +of +made +mucn +all +the +of +Bailey +posed +male +"hs +a +at +day +other +threw +committee +the +mean +market +see. +the +Tbe +knelt +them +the +l'ha +U]*on +was +sonorous +shod, +drunk +be +heads, +courts +in +cigar +is +oper- +beaten +trials +contents +Company. +purebred +marks +BrBBbUeaB +rates +ed +reside +witness +n« +these +million +lower +In +by +Swenson, +above +the +Representative +. +the +matters +solid +Bertha, +ford. +I +rectly +on +of +at +only +returned +and +it. +country +merchant +Santa +and +! +com- +high +country +follow. +appealed +they +three +amount +put +material, +the +of +16 +fact +his +bird. +enabling +prevent +the +of +writing +state, +9 +by +(10 +the +what +by +indignant +humor +when +they +detachment +Irish +to +the +ring +of +and +47 +for +the +and +yester¬ +city. +ing +the +on +reason +same +county +some +amounts +The +in +No +Many +a +of +4, +immense +tem, +guilty +had +victory +boxes, +a +finds +pessimistic. +offensive, +It +on +now +They +Codliret: +town +: +elephant +and +wholesale +is +Jackson, +complainant, +line +foreign +one +new +v, +colored" +is +.electing +a +received +fleflPP* +oeive +any +about +not +received +it. +a +at +indicate +issing +now +the +feet +with +for +good +acted +cotton +cotton +again +at- +corporations +le +Yerk +dent +the +said +In +The +to +was +diseases. +contracting +moro +the +be +elevators, +Spanish +for +not +the +destroyed. +of +took +privilege, +womankind +fall. +way-lay +import +while +their +or +that +forward +on +the +culty +that +iu +the +shape +development +Owing +is +weeping +in +the +absent +essential +yet +Stowell. +which +united +says. +happened +88 +follow +ai +the +neat +sical +and +those +introducing +we +entered +man +will +large +we +for +speakers +Joseph +for¬ +Referred. +people, +become +because +service +benefited +to +this +mound +with +of +Browning +meadow +ing +doing +for +advantagc. +runs +Shuttle +myself +from +be +"Directly +This +degree; +power +in +advocates, +a +(270) +iu'cllipcnt +tem +eft, +country's +are +need +lack +bank. +though +the +pass +to +among +tain +the +in +freedom +As +know +and +nerve +"Fremillcnnialisin," +n +equivalent +cavil/, +shots +excitement +served +the +unsold +glare +and +Kichangc, +to +liings +failed +planes, +to +work +lot +be +the +and +practice, +langor; +to +voice +proscription +Among +what +lows, +admission +the +ing +garded +Krie +Miguel +Hades +opened +is, +a +this +of +search +of +the +held +also +Orleans +ditlon +the +lull, +yard. +vigorous +small +I +identified. +Jack +should +to +will +ac­ +at +er +aud +sum +had +greater +to +Woodruff. +wrong—believing +the +Nodaway +bbls +tohaeco +from +and +desired +there +the +a +red +fifty +afternoon +their +not +that +1 +on +nolly, +victim +that +of +reajource, +not +and +of +thing +the +that +such +1G +extends +efficient +rounding +way, +fact +His +choice +D +say +nervous +267, +is +wo +as +is +your +Ann; +been +for +roads +of +3.00; +make +other +be +air, +from +of +vollev +when +been +and +the +name +of +southeast +an +Pierre +C(' +is +of +placing +see +which +of +definite +igerty, +A +She +coin +records, +along +using +ers, +iinxioi*..|v +low. +conscious. +demands? +cor. +support +shippers +risk +long +periodicals. +consist +taking +of +to +facili- +"J'' +wiint +Mr. +Ri-it +but +water +no +did. +$600,000 +ious +those +to +short +themselves. +disinfected +inated +that +In +Guanabacoa +sud +little +iu +under +brought +the +the +as +Hahn +country +being +them +the +proved +can't +disease, +as +a +is +wind +was +ankle, +iu +Curfew +was +of +one +times +senses +a +we +Wheeler, +If +of +notice +signified +means +came +wages +to +was +ana +scales, +feel +new +with +the +effort +d; +back +While +desiring +farm +used +M**>ke +by +feeling +and +and +the +laid +and +Zielinski +but +mopin' +body, +As +modern +In +that +putting +bad +However, +whether +the +bruised +ration +on +Ijeen +water, +this, +as +committed +President +Situated +girl. +t:i\ +« +Gould +the +clambered +runds +re- +snd +At +leaders +Montana. +long +to +supply, +tho +in +intended +weather +gift, +then +run +by +draws +an +in +satisfy +to +doctor +accident +sometime +lot +seal +succeed +the +ten +sea. +In +such +noble +my +that +cy. +tree +and +ordered +the +stubbornly +population, +National +gold +were +the +the +Porto +had +of +It +not +was- +she +»Li +side +by +tell +fee +w®s—yeas +made +than +of +unchanging. +feet +recurrence +Street +must +the +a +was +prodnco +precept +era +the +who +Lenessa +flesh +ation +and +lumbia, +feathers +regretted +any +to +man, +one +Walter +of +Lyle +of +sunshiny, +one +(lot, +road +commissioners +size +three +as +boast +wc +1,-rpoei +feeling +different +knew +the +strong +fashion +Frac- +The +perhaps, +them, +ized +that +annuity +been +myself +survey. +gallant, +sent +re- +at, +no +excavation. +direction +bushels: +War +the +Inaugurated +westerly +his +classes +60 +was +Mr. +tors +BM +ed +by +Confederacy, +organization +every +heavy +that +in +in +7 +well. +Closing +in +for +to +of +and +throng +constructed +men +prefers +such +by. +was +Georgia, +we +climate. +be +you +the +sum +a +The +by +men +down +board +but +be +materials +cam- +ever +their +a +sat +than +beautiful +of +duly +lost. +trylng +decided +attention +first +of +nt +come +votes +can +car-wheels. +I +and +not +son, +of +most +building +was +it. +busi- +corky +and +for +belonged +movements +real +more +the +about +although +duties +of +b'essed +the +those +I +Bout +sleep +and +practically +Almost +State +shivering +purely +Overton, +new +all; +water +of +and +enable +to +V. +Public +will +arch-way, +good +removed +there +through +mentioned +depended +what +provided, +consent, +them +not +opening +his +burned +Behind +yeara +Bianx. +lost +on +tho +will +nonplussed,1 +people. +J +stnnd, +support +devotion +surveyor's +appeals +per +Court, +which +cents +needed +was +on +minutes. +ing +the +wlii.'li +Lena +I* +The +tbatU.it +someof +best +secu +shot +vtocullo +wi +open +poorest +who +more +in +tustle +pearance +awful +in +Mr. +up +never +sand. +could +formerly +The +quantitirs; +Riverside +machine +other +soon +between +un- +then +M +got +mot +stopped +of +after- +a +that +whole +of +permitted +road +decisive +That +being +stool, +was +smoking +I +try, +strict +you +important +and +so +the +to +park, +mat- +don. +party, +read +be +tho +war +tina +to +formerly +rights, +shop, +lie +Discharge +there +as +death +visited +L. +satin, +detailed +re- +It +New +companies. +and +d +Aliern +bis +recommend +an +Barley: +of +on +less, +the +as +you +the +sketches +on +cent. +cept +work +party +question- +Ecuador, +For +appears +heralds +estab- +esque? +than +stop +dinances +understood +case +any +sent +are +exists +that +rich +be +found +exports +sold +Within +due +returned +wear +so +ever +thought +and +veered +gradually +On +county, +fixed +favorable +Immunity +quered +Demonstrators +Nhn +to +will +sum +All +.journal +assisted +unless +ing +conduct +revolutionize +a +to +One +the +get +Booth +now +by +ship +tone +thence +puddling +This +8130; +the +composed +battled +the +the +by +tbe +had +upon +crossing +for +draft, +the +any +been +time +for +of +week. +not +to +of +County, +Illinois +formance +large +; +of +silk, +a +legend +portions, +tax, +to +so +subject +strong +of +face +ly +is +of +and +hundred +picket +Afatlpin,- +of +twenty-five +tint +Hon. +a +. +had +t\ +the +or +She +to +of +the +though +crop +me +a +be- +he +age +record +in +Speaker +upon +and +ideal +take +this +mar +them +a +kee +Nihilism +where +salvation +with +over +The +goli +itrtldtl +domestic +returned +District +American +C. +fanaticism. +savages +the +but +fevers, +the +v +series +pur- +advocate +to +entered +against, +the +give, +Mr. +exception +added +senator, +ma. +the +St. +poration. +sure +passage +We +nd +do +to +B, +credit +the +According +or +thin. +within +throughout +room +at +Keze +tural +upon +Baylor +large +and +and +southeast +gorm‘u-l +Is +situate +searching +are +this +than +removed +hours +they +a +exoe*d +with +Vilas, +in +after +cially +to +could +Hie +see +of +Long +course +No +the) +her +the +on +as +is +between +— +farm +home +h.m, +an +some +into +Claudius +point +ment +deposits. +blames +in +Is +day +calling +sition +4500 +nothing +ScnrOsborn +to +have +instru- +then +that +the +nitude +closed +Sports, +Atlantic +compelled +and +its +was +of +is +came +Four +"There +of +tion +with +to +are +In +southern +tlie +prisoners. +latter +of +107)6 +with +"oddest +ycar. +and +under +the +into +know +aml +well +himself, +also +three +was +changed +order. +on +human +beard +power +scarcely +Mahogany +ol +Finally, +had +pillar +enormous +that +it +to +society +««id +In +list +to +and +went +causes.whether, +to +no +the +if +paid +fact +hours +rations +the +He +the +of +with +fest +them +demonstrations +house +stim- +which +should +N. +to +bility +ly +from +Ernest +find +was +as +reads +the +compromise +when +tion. +into +I +house +plead +profound +of +with +of +River +FEB- +system +the +where +* +and +blight +any +word +h'e +had +with +spirit +to +tho +promote +Quay +a +it +Republic +then +five +felt +in +State +all +the +cattle +high +the +a +in +^e +stated +half +the +excepting +per +a +for +cut +for +had +supper +will +HoteL +the +atlrring +is +his +Bishop +the +1 +its +Hancock +the +She +study +before +tbere, +account +his +. +they +the +and +Thus, +braaa +night, +air, +want +and +once +the +farther +asked +closed +many +they +explained +of +large +full +claim +of +the +a +ginia +now +of +large +broken. +friendship. +that +and +nga +Buggies +as +those +gracefully +that +matter, +plan +$550 +ladies' +lng +boy +way +be +striking +as +had +Of +make +Alter +gigantiosawof +is +have +coat, +announced +and +overpowering. +immediate +city, +enjoyed +use, +one +where +countenance +and +had +revoked +arc +that +the +at +from +been +the +Valley’s +Orleans +defense, +the +and +is +heating +properties, +the +he +aloug +the +sold, +twenty-eight +tho +20 +sion, +and +for +even +drop +unless +j +be +block +person, +plosion. +A. +1,000 +the +feel- +the +it +chant +the +from +2X0 +Moosehead +liotise-s +least, +hams +cessantly +not +consistent +to +I>. +com- +in +impossibility, +cured +exchango +stoBes +three- +Virginia +theii +to +there, +principles +the +the +to +Newfarmer +which +tional +simply +sow +terrors. +a +from +filed +The +ber +Cm's +for +face +a +was +oftimes, +blacks. +W +Road, +hands +her +"Sin, +an +which +Doings +J. +erests? +him +All +the +of +is, +choice. +the +trains +that +Chicago +Jayne +chants +had +Uovernmeuts +prominent +widow’s +of +of +party +Canadian +Col +at +spirit +Mn. +stnrtlng +and +one +make +in +in +counties +the +on +after +home +the +United +the +beneath, +ready +says +da +your +jail +of +per +this +ists +William +expendi- +after +fate +ceived +that +alone +miles +like.” +books +Governor +church +in +the +chewing +could +President +B +may +sutinted +both +discovery +be +month +in +pilla +mous +a +the +for +gone, +and +lien +ness, +honors +tlie +reached +made +reformation +Building +ing +high +of +the +May +and +upon +Of +the +their +across +and +will +you +be +and +FARM, +with +characteristic +contrary +telescope. +in +not +about +and +on +were +Lincoln +Dr. +moment +nnd +grass +it +so +of +flow- +L. +boy. +of +com- +the +and +tablished. +a +success +full +man. +ket +treatment +books +at +every +for +the +597.5 +"While +The +ojtU>rc +or +forgotten +that +like +investors, +With +bells +her"ry +Myers, +plowed +Ponte-Corvo, +tell +in +I +them +wsll +is +a +way +drift +a +shed," +and +can +once +proposed +hesi- +speech +j +of +lownes* +might +Be +right +for +their +by +far +there +because +was +hotels, +even +the +and +bringing +a +staterooms, +that +We +religion +the +when +lint +Le­ +which +because +a +of +the" +in +an +do +and +Marguerite +Mitchell. +After +ever +to +to +of +one +upon +of +no +who +the +Should +of +duties +be +bo +tho +N«)T +pondents +necessarily +as,wvould +Roads +last +to +I +this +by +ideas +shouts +ill +unjust, +resolutions +tax, +cents. +desires +B +of +private +a +ing +my +save +a +govern- +that +some +"C +a +ite +effi +of +She +the +the +453, +Is +to +of +for +at +the +thence +is +Saxon +how +second +India, +the +dated +iht +farms +and +way +and +talcing +mortgaged +in +u +leaves +of +afterwards +at +them +nl +about +the +Birney +the +to +and +the +tbe +the +af-tha +for +liable +for +came +thought +and +bright +a +a +Kuin +in +fertile +wicked, +poison +this +to +babel +of +Lines. +stock, +smallet +both +to +and +a +mantle +lot +having +ap- +friends +to +had +buttons. +lessee +always +discussed +after +him. +aq} +no +01 +pIrowenssaindvengeance +o +exist, +inconspicuous +directed +fully +out +for +dressed. +is +the +can +wooled +paid +the +quickens, +the +recogniz- +but, +who +not +73° +arrived. +There +tbe +sets +thin +mentioned +Dyapcpniof +men +townshipone +top +juries, +prominent +to +cTut +an +an +was +transport +and +of +a +It +up +obviated +coward; +national, +lamps, +a +Water +thousand +until +of +parts +at +this +all +will +June, +officials, +the +from +him. +and +shelter +state +and +treasury +consider­ +tent, +potter +findiug +board. +on +they +shall +dissection. +battle +terms +tor +that +Senator +own +a +first +grown +Amette, +that +there +The +natural +Discussing +and +were +amount +only +the +much +and +another +The +foreign +not +"Rudyard +dent +witness +for +very +of +it +us +by +be +our +pacing +been +Michael +Per +I +the +well +"Have +the +and +Said +tal- +the +Balsamic +purposes +floating +me +tbe +grandfather, +who +plsiuts +screamed +planted +their +conquered +plana +retreated +of +t'2.56 +])eeiuli) +and +resolved +broader +familliar +ly, +thinking +As +still +his +feet, +be +would +is +are +such +Na +All +cured +the +township +Belmont +solution +nce +what +thereby +loss +of +empty +ticular +which +baoy; +ot +sell +deal +mine. +will +the +west. +in +of +of +leave +off +fire +charge +close +entered +dec- +effort +of +and +free, +H +one +her +Richmond +and +forfeited +for +a +parking +the +depot +where +place +award +hind, +that +is +hidden +Secession +the +buildings +hnve +road. +their +the +our +taining +dollars +a +law +the +Peters, +lsh +purpose +I-orraiae. +called +Mary +the +and +sixty-two +gone +law +was +life +roads +array +lore, +Herbert +be +it +Cities, +of +that +the +manufacturers +has +bus +Denver, +of +in +than +with +symbol +expanse +best—-dumtnor, +and +Entire +would +Yellow. +election +1 +it +that +rods +on +pany +is +Holy +young +where +breakfast, +enjoy, +of +prico +pulse +a +cipal +Mrs. +way +is +Bier, +the +A. +three +and +p +that +sluge +Inches +market +of +Brown, +Western +additional +limits +pii +use. +a +proved +same +thence +to +lake +used +in +bid, +still +Turkeys +tbe +of +and +George +love +improve- +d +in +duly +few +kingdoms +inhabitants? +f +age +trained +On +moro +meoling +hard +work +or +monopoly, +arrest +known +tbis. +probably +name +and +of +paid +brief +re- +and +ticket. +there +woman +gold +functions +nothing +ex-Represen• +record's +tl.e +aa +said +more +near +they +land, +river, +may +they +no +moro +concealment +effect +Iron +subsidence +able +lot +of +became +first +logs +Little +Lee, +while +member +left +ta- +would +the +entire +learn +To +a +to +but +between +places. +or +To +boarded +title +of +hard +one +at +as +i +Ku +average +North +was +rightful +"no +and +limit- +volume, +unteer, +is +grace." +before. +gage +amendment, +Arthur. +a +I +of +Gen. +too +fail +Income +bill +do +displayed. +a +a +stretched +any +sons +is +iiiitue, +food +is +be +manner +every +foolishness +each +down +christen +dying. +foregoing +talent +autumnal +out +larger +with +was +boards +But +pathy +periodical +of +of +July, +up +70 +and +In +Imt +ports +youth +the +or +Beams +attached +years, +binders +note·, +all +record +to +and +the +would +New +us +ia +to +shall, +hole +Ltitheran +got +his +glorious +serious +provisions +of +part, +be +to +the +by +qilet +160,000 +to +Creep +treated +girl +of +any +for +officer, +be +and +contemplated +had +fre, +was +forth +demands +with +of +to +their +that +pressed +paper. +len +caused +Peeling +of +every +demand +in +Uncle +protect +the +est +ie +ere +evening +4 +D. +forms +mv +effects +ten +The +of +lulu +them +and +him. +I’m +Western +secured +had +the +between +by,lahds +metic, +excit¬ +He, +is +tenant +into +then +She +Hewson; +snake. +and +bay, +inly +there +just +al +absent +you, +to +to +abroad +attractave +extinguish +having +agreed +him +British +out +Roman +the +to +resolutions: +in +few +Trading1 +his +or +K. +and +ran +reason +swimmer +roves +The +half +and +carriage +down +last +the +her +under +a +wliat +distiller- +kan- +trustees +which +had +of +our +by +jusllv +body. +feet +had +necepsities +surveyor +er +of +empire, +in +he +of +in +syatem +lots +unsurpassed +first +delivered +I +which +crown +It +as +It +hu. +Henry +the +and +the +. +desires +deserts +of +are +it +claim +his +described +mare's +noj +not +reporter. +firm, +conjunction +third +issue +all +we +J +decided +its +of +but +general +a +the +of +the +will +engaged +$12,000,- +The +under +the +the +a +boys, +this +Daguerreotypes +wheel +will +others +nations +either +castoff. +they +keeping +he +to +finished +to +At +with +and +have +? +Something +Almost +direct. +need +October; +investigation +prised +the +« +when +ve +stocks. +01 +up +season +twenty +membership +know +Is +Collins, +how +him +on +The +without +believe +thereafter +States +is +inck, +years +admit +aban­ +Fremont, +find +known. +because, +bad +do +,nanvy +exact +Alaska +8, +each +as +wua +In +bia +public +is +horse +$2 +for +Wheel +not +the +solidation +just +hind +- +ST, +chain +transactions +co-operation +with +Our +expefteuee +were +ransom,) +but +well +1897 +the +some +out +attaching +large +in +the +frontier +bocitwe +the +greater +will +good +sequel +25 +ao +it +lives +getlier +laid +est +Mlssuri, +constitution;:! +port +for +the +into +as +in +either +loss. +knew +is +durability, +ever +of +contract. +village +ad +dwell¬ +flowers +his +books +that +new +vert +cost +the +back +every +that +thought +that +town +and +Is +in +to +roofs +anywise +on +to +was +the +o'her +little +which +Kuhlman, +control +of +the +matter, +The +my +construct, +out +lected +that +import¬ +bright, +built, +Jones +is +in +of +mhich, +ones +invest- +momentarily +enterprise. +had +point +d +the +able +transacted +his +with +nnd +preme +will +was +which +and +imposing, +Opie +in +are +ast, +color +best +Thorls +gradually +moro +developing +thiîik +that +summer +they +the +the +plaintiff, +creed +only +essary +sooner +writer +much +also +witoots; +constant- +Work* +them +residing +is +the +five +again. +bands +book +as +Jr.. +and +York- +one. +and +dia- +1,873 +1 +intersection +to +than +in +fig +shower +Bible +bad +tray +employ- +the +Secretary +body +the +crease +which +moved, +those +Standing +for +It +2 +only +of +buying +skillful +stricken +soft +it +to +purposes +bridge +plausibility +ment, +aud +street +the +"It +mouth +of +our +recall, +entirely +at +Is +begun +battles +contracted +the +rope +signs +the +widespread +return +of +usually +boy. +wo'ilil +to +and +in +could +removed +owned +find +captive +terrified +through +to +even +dresses +Mrs. +postmaster +the +On +other +found +oil'. +cheerful +supplemental +25 +ought +all +1903. +ort +rich +of +of +Havannah, +then +Kor +official +ou +politi­ +Vermont +what, +age +To +No. +S. +had +2 +was +causp +the +are +desperate +are +F. +14, +the +of +line +State +tho +the +little. +compensate +was +vice +general +is +great +party +and +of +of +The +Granite, +sham) +of +53-1613 +and +nation; +a +sixty +influence +a +public +educated +was +above +during +this +who +case. +caught +meaning +also +com- +pastIte +of +digreea +then +out +near +and +be +bottles. +greateat +trials +ted +therewith. +tor +can +and +Let +jail +they +of +fasting +were +ought +the +dump +on +are +to +minutes +support +such +whilst +plan +Mary +The +quickly +the +do +the +Surns +back +sical +borne +and +of +be +overwhelm +nsed +In +such +land. +invading +been +a +manufactured. +pressing +Naaden, +to +owns +her +to +quotations +signal +and +very +he +the +TnE +Win- +understood +an +foot. +invigroratts +Perkins' +counted +inspiring +end +more +what +the +strewn +anybody +had +come +began +said +with +flat +which +each +in +Mhen +men +good +have +periled +need +G. +for +that +garment +IIis +try +are +while +from +ex|>ensivc +not +Thompson +war +the +more +cold +her +and +and +man +Rosali, +have +eligible, +No +for +5 +ho +.we +an +a +over +the +— +strengthened +a +a +fighter, +a +house, +Is +present +production +his +rights +their +for +race +purposes +wet. +(Eccles) +and +the +the +lobs +horse, +nets +back +and +Pat +or +It +I +roan. +have +in +his +her +dated +win? +two +tion- +coil +fail +his +tranino +the +scare +thing +ollice +commercial +hear +induced +put +Clinton +and +in +our +Often +Senator +ceiling +merely +that +have +declines +her +the +a +civili­ +Counmitteo +Esq. +in +can +disposal +the +linen +pel +you +cautions. +fairy +have +the +" +the +Minn. +the +Chester +Every +which +to +noble +thick +1 +le-seued +wu +one +end +the +conflicting +at +first +Harold +be +there +a +or +Germany. +the +course +therefore +Canals, +Mary +and +old +hayo +the +thoughts. +the +p. +things +would +18 +la +planting +law—that +Mahone, +hat +two +by +the +fact. +- +much +he +n +join +much +vanilla +intimate +were +may +an +heavy +gentleman +Stephens +and +in +«business. +HeDee +Westerners +or +Mr. +sale +recollect +middle +to +who +of +best +and +nnd +enable +tit +1 +.our +from +Brooks +They +the +elderly +character +cal¬ +through +steadfaatly +by +I +Is +results, +the +the +from +a +Baker's +said +glssse* +is +soon +haughtjvring +action +and +as +tee +Messrs. +ihat +most +sound- +square +clear +then, +regulat- +death +the +The +the +day, +by +I +Mexican +of +and +and +is +and +"My +1189 +ol +on +paper +successfully +alists +edtohimbyhis +may +(f +be +worthy +on +Interest +iuokalina +in +better +lot +occur +of +Arkansas. +the +because +>1 +aii +the +fished +W +them. +laws +unknown +force +president +stockades. +- +the +very~uTnuT +day +and +asleep +to +July +to +wherea*. +and +the +to +parents +Home. +and +each +it; +become +Hr. +town. +be +of +liens +had +North-Went +such +In +so +the +that +rilver, +the +! +reputa¬ +of +can +Bird, +our +notice, +WORklW, +denied +of +another +the +with +Grizzard +cast +traducers, +the +for +As +were +Mac +into +relatives +sprung, +the +taken +casting +all +his +that +geeks +boatmen +Brushes; +forbid +quality +believed +to +parallel +funds, +issued +legislation +Be +this +thanking +being +sum +the +and +than +sireet +freely, +of +somewhat +son +people +of +is +that +on +too +any +he +shall +and +caiory +thought +While +In +that +boss. +first +ell, +if +not +for +is +them +power. +earth +which +was +will +Chlcngo +ing +out +to +Dugan's +quarters +has +same +Thornton. +W +made +M. +per +of +home; +men. +turned +reached +with +of +make +as +at +nnd +would +captain-general-ship +of +deal +three +hair, +four +On +are +met +with +He +unwarrauted, +report +dissolve +described +Year +and +save +law +it +under +otherwise +towards +tariff +during +communicated. +d +we +should +As +seem +he +Mahony, +cer- +body +cheapest +their +as +Rock, +out +included +body +had +arid +scereted +coat +of +securing +Is +blackened +in +up +bearing +be +white +be +company, +any +had +be +of +Brown, +his +brought +was +were +the +that +iological, +&e. +deprive +sent +the +that +sembly +of +this +a +still +a] +the +Cur­ +As +have +much +come" +and +continued +svmnatlietic +acting +the +of +requested, +Jcwus? +and +room +Into +Co. +performance +of +right +all +be +doctor +ITALY +gone +wound +also, +while +it +swer +do +same +at +Parliament. +the +the +simple +of +and +Dutch +toast +minutes +01 +the +the +the +was +of +appreciate +nn +noon +his +giade, +and +gen- +bidder +and +principles, +assembly +But +his +ba» +We +claims, +their +should +many, +Relying +Naples +hairs +machine +too +Gov. +expert +has +Island +something +But +!t +pick +original +each +then +and +as +turned +quite +shells, +alacrity +the +farm +. +attack. +acres. +expansion, +up +Doyle, +is +their +attempt +in +Pender. +or +distance +aay. +time +tn +skilled +depredations +substances +that +beyond +make +as +no +are +sessions +industries. +from, +the +old +tha +this +then +our +*3,000 +No. +and +jold +winnings +important +work +snap- +Cascarilia +liaughey. +not +should +such +caucuses +brought +it +this +candidatsvrunnlng +a +on +naturally +I +own +ara +as +solemnly +not +upon +breakfast +for +be +the +was +the +of +4 +a +York, +recognized +this +W. +existed +and4 +Ministry +ables +how +owner +singer +lands +the +Plaintiff +job +a +inclusive, +her +to +means +congress +that +eiuDOt +out +position. +from +shall +South +matninire-or, +year +feet, +We +the +The +rear +yellow +you +as +the +to +The +; +received +rows +used, +has +yard +six +Double +than +Indies +girls, +force +fellow +future +of +grew +the +to +declaration +He +Huron. +if +No. +right, +the +power +conversed +Just +nches +enough +uubilcl +proceeded +Frank +was +Lafayette, +the +impose +a +eral +either +at +the +chairs, +nothing +M., +fruit. +formation +Mahoning +his +team, +the +sec- +on +in +were +m +introduction +would +the +had +jail +I +Edward +that +ni-rory +and +brothers +of +your +thing +one +nt +fectively +and +were +seems +do +send +\V +D.: +fought. +bnt +on +in +seeniei1 +weapon +how +a +peace +tive +Remember, +work +stones +asked +cal, +equal +sales +where +rifling +aeked +(he +the +to +Helena +girl +. +from +that +a +o'clock +this +for +apples +state +yearly +stocking +of +cretion +exposes +bloating +I +from +several +before +There +friend's +Signals +for +boat +Mr. +ing +(nre +present +be +of +position +ot +and +man +us +laughter +people +Washington +roll +Beginning +pro +the +fell +their +the +in +Let +stirred +it +Mrs. +bill +secure +State +hog'a +County, +order, +a +satisfactory +tables, +assistant, +the +building, +of +believing +rates +the +hereinafter +Cum- +The +have +an +plete +or.pne +lace +ing +allowance, +is, +until +lift +selected +sufficient +its +her +ture +raiser +the +have +this +over; +They +I +nouncement +dump +outside +dead, +post, +for +pains +may +due +ment, +those +though +in +to +curious +That +to +Kiting +emlaaarlea +of +the +the +to +cerned. +chance, +nativity +he +rocks,” +him +of +wants +able +repose, +in +mollified, +who +and +opportunity +store +premises +itmay +have +question +hear +namely +demonstration +and +and +demand +occurred. +pierced +mourn +against +She +should +other +our +required +mi +address +min*, +all +May +If +women +come +he +L +the +Home +and +lie +by +hankerchief +for +that +finally +rejection +presented +had +at¬ +selected +this +States.' +Anna +thal +great +the +suppress +doubt +the +Adeline +known +shore, +the +subjected, +in +some +University +would +the +of +jected +8. +The +left +in +brings +as +of +been +or +in +hereby +explained. +collecting +Second. +hand, +our +generally +in +a +taken +in +twlco +be +six +Slate. +argument +and +face, +realized +to +interfere +when +We +of +break +the +country, +fill +what +of +room +wiih +cuuse +They +days. +the +of +un¬ +photograph +be +. +the +gtooping +thereof, +Tria- +Jackson +ball +ut +MM +stones, +argue +it +assessed +this +as +polls +Vt., +ever +in +Bethincourt +the +the +been +I +father +cannon, +must +Previous +part +yield +by +. +at +cases +in- +refused +the +the +wanted +eqaaled +course, +in +Legislature +anu +interest +tention +before +flaaatiagwith +ing +protege, +and +well: +muscle +this +selves +all +"cracker" +beneath +will +Cobb. +the +his +bn +of +ihe +med­ +be +Monroe +of +adopted. +promi- +piobahility +questions +say3 +6th. +Di +at +scholar +of +turn, +Some +lrel +of +degrees +inquest +Increase, +and +He +night +purpose +jumped +feet +Indeed, +H. +whenever +superintend +rungo +means; +be +and +here, +not +deferred +contained +is +horseback-journey +attended +the +no +understood +Geo. +qarter +Iis +was +master +O’Brien, +siderable +pears, +votesr +these +and +11 +the +*1,250, +was +the +ment +supply- +No. +lect +ror +desist +We +the +were +southern +to +in +of +i +ing +the +the +of +mure +of +such +It +•; +seen +having +the +and +further +the +people +pected +claiming +on +the +compelled +nobody +millions +though +due +peixpiratiiui +distunes +i< +world +the +1 +of +I +patch +starting +one +1 +Union +southern +to +the +5, +and +District +where +trying +the +Slos- +can +family, +euro +my +of +to +accumulate, +the +first +explained. +Case's +ascertained. +forty +navigable +kegtonlag +the +Tooley +tenderly, +club +vaporize +tears +old +cient +be +Negrofoot—at +to +occasionally +each +de +by +good +finer +recent +In +the +sorts +Albert +the +however +D. +the +said +it's +that +marrow. +the +of +warship +how +The +bride, +good +and +fessors +greatest +'condemnation +the +State +what +most +There +fi-d +tho +of +has +reflect +its +your +the +of +nine +"the +the +Department +at +not +drakes," +begun. +President +settler, +grace +Oftentimes +on +bargain. +from +have +built +her +of +contested +regarding +best +lived +after +weather +Nelson +lark, +voice +Commissioner +County +th* +dates +J +that +leans +$3.70; +Drain +tittle +appro¬ +about +Frederick +Houses +ami +the +doors, +perished +of +be +broad +tinguished +have +Now, +against +a +greatly +result. +who +of +a +of +and +as +chooses +had +ivimiii +sure +the +for +failure +end +tbat +pace—and +the +'apondon +Algebra, +meeting +" +tbe +cases +con +re¬ +embodied +wbicb +was +Hiey +war, +produce +daughter +with +entitled +so +for +to +close +sufficiently +And +them +(».!¦> +in- +ing +action, +the +schemers +the +graces +C. +to +here +cigarette, +Phonographic +po +the +were +cheaper +progress +to +und +tors +called +minute. +In +ground, +from +The +—One +them +.las^y. +best +Atwater +man +thence +would +of +eagiaea +more +While +the +the +girls +of +bO +the +la- +practically +to +the +Ly +of +soldier,officer, +hopeless +views +they +The +previously +ranks +you +dangers +the +by +storage +with +toe +into +employ +A +upon +corn +discovered +may +mounted, +Miss +value +shall +Pembina +drops +hard +agreement, +tbe +under +the +and +department +Sexton +Trumbull, +least +as- +into +must +ent +that +from +this +,was +makes +to +in +in +per +have +was +two +great +visits +been +garden +Irishman +pany +I +bellows. +cent. +Church. +city, +F. +he +terrible +was +of +1 +for +this +men +Onions, +of +sion +is +said +may +that +differed +can +ting +pearc +enclosing +at +savory +there +to +saved +merly +to +increase +him +than +irough +$100,000 +increas- +T +rli, +of +tb» +shortage +a +. +pas- +from +in +and +heart; +to +money +Yet +nfter +the +number +for +tho +legislative +annoy +wit: +is +House +constituted +the +a +getting. +gentleman +you +of +of +circumstances +by +of +supplies +! +as +engineers +the +to +on +the +in +of +simultaneously +Timothy +a +of +tho +1100 +these +the +with +the +others. +night, +and +country, +by +have +17 +his +Baltiinore +III.; +and +principal, +ho +bas +are +respective +200 +country +of +difficulties +said +the +bowed +direct, +and +It +their +Hy, +not +daia. +Her +Judge +T +to +shall +be +Senate +siftings +Rail­ +animals +with +the +death +treated +block +desirable +in +a +driven +unusual +his +such +misdemeanor. +satisfactory. +how +rlhvrroll. +of +alter +ones +as +and +tho +band +OB1 +effects +before +which +to +dollar*, +tho +luck +their +plain +are +our +resists, +admires +went +be +and +been +tak- +Matthews, +sheer +Juice +smelting +of +by +tent +weakness +;st +fact +will, +but +sit +period +physical +turn +second +a +north +manufacturers +Ameri¬ +in +tho +cried +McCarthy, +sion +Match—took +thing +is +showed +in +the +of +of +deep +of +it, +make +north +came +hatvt +in +Alderman +his +the +if +in +and +a +Nearly +or +moved +De:uocats +He +subject +from +during +Bridgeport, +arUtecracy +(torn +iuyolved +of +was +'forward. +sentimental +as +*35g37 +over +have +rate +the +areas +it +conveyed +11 +Moores, +totutemeiwouldbyit. +to +showing +yet. +to +first +tho +19, +wcwill +Inning +question, +closing +affaira +f +with +were +thence +her +and +fully +from +didn't +adaptation +the +and +flag, +to +the +who +followers +If +dear +prisoner +paffoe. +me. +a +the +is +to +(40) +at +vain. +he +In +of +known +His +sented +are +contributes +“why +it. +engaged +tie +Sehr +the +leader; +secretary, +Coursey. +of +this +Lindley +appears +the +the +bring +In +and +begin, +ally +command +of +erous +daily +flying +s-ted +not +to +certain +gas +of +range +now +and +before +the +of +concerns +should +KLE1NJOUN. +d.i>«, +lar +Dr +within +natives +2 +In +very +by +Ferr'.a, +It +Swedish +Weddell +entitle +they +up +lar +which +are +Old +they +all +persons +port +hut, +established +included +be +naked, +costume.a +meetings. +solid +battle +Oardeblcd, +the +vlor, +with +swallows +"Jack +atatea +of +a +been +seal-skin +this +occasionally +likelihood +development +Chicago, +iter +ten +Supposing +sembles +guests +corner +tc +that +present +bank +the +boundaries +small +was +for +the +cradle; +this +lawyer, +complied +Senn +he +conservation +accused, +State +a +phones; +first +of +institutions. +in +enough +trying, +taking +of +up +the +was +or +your +acknowl- +18 +work +to +10 +were +some +deputies +tlmo +have* +Baltimore +weight +ever +with +the +killed +gloriAed +Grand +shall +further +from +than +has +lad +altar, +on +batbera +immense +from +(even +a +the +upon +of +tue +to +sponding +671 +tf-e +on +»b'H +hint +not +his +known +whole +people +boat +ot +been +four +the +berry, +silk, +impressed +tMs +Boothia +as +against +b* +Soc; +sho +powerful +in +situated, +troops +ecietaiv +At +induced +tfceuce +was +check +dream. +a +one +Uut +sometimes +with +well +groun'G, +part +The_ +Europe, +God +but +In +499 +The +structed. +brethren. +a +nial +'vt. +with +and +children +fogy. +much +don't +ditioii. +divorce +little +the +ii +and +for +of +for +placed +important +year, +cadia, +white +or +dollar +The +community +"Faith +each +is +and +City, +eight +machine +drovo +no +Nevada +more +that +stolen +could +that +those +truth} +dear +eat. +to +Dr. +Him, +gone +Milkmaids, +on +that +very +only +a +explosive +ried +Ha- +an +reler +and +time +only +in +the +Yonr +2nd. +He +| +authorities +measure +engineering +the +bis +neighborhood +office. +Mack, +States +vocation +are +Sup- +a +and +was +A +A +welcome +K +can +medicine, +central +King, +jaign +that +thot +personal +of +For +The +vote +pened +of +spread +Mr. +come +an +claimed +pur- +14,328 +man +lies +accuatomed +or +for +of +who +he +except +by +sleep +50 +he +in +«iti^n +Wearinrs--, +kiss +freely +claim +to +Tex. +out +copies +the +secured, +140,570,467 +ve +hnndfuls +entertainment +he +overcome +thing +athic +to +and +opiuionthe +Senator +Supreme +thus +of +was +cord +these +Judgment +r.bout +court +j +on +office, +material. +Manila, +dreamily, +Villp.'Avery +be +ridge, +the +Crowley, +not +ments, +sotry +Toilet +expressionless +lakes, +productive +with +the +contribute +With +on +vast +draw­ +$19,621,418 +small +jacket +5, +any +slaughter. +does +at +appointment +the +dreeeed +a +and +the +having +handwriting, +of +of +act +$147,000,000, +N.P.R +to +has +last +terrible +faculty. +as +scattered +them +world +merit +official +our +statement +Ginn +less +shown +way +a +for +im- +Vinegar, +poor, +are +chine +must +really +the +lb +of +lastly, +ap- +bv +Jupiter +tho +different +Iferro +"arc +quarter +insurance +621, +n, +I +is +boy. +friend +and +he +ra- +the +willing +two +physicians, +man +of +Here +the +him. +the +that +make +author- +nation +cultivation, +had +tain +tne +at +Murray +not +life +nitn. +that +ground +confined +of +that +plrnd +Ids +his +not +baptism +in +approached +an +made +the +to +sldo +that +on +pins +the +complaint +month +w'feby +,009. +the +within +show +of +home +. +17 +and +entitled +they +imposition +No. +occurred +will +U +Urooklyn. +A +and +pioneers +Gallngher +out +class +satisfaction +of +to +north +196,650 +pistols +purchs»e +the +the +duties +of +general, +one +a +St., +mounted +coherency +dropped +tion +and +planter +with +runaway +dark— +Kitty) +soak, +in +that +shrewd +by +both +points +20 +held +Tho +the +Memory +mile +mense +faces +the +stray +the +The +of +their +line +utmost +an +the +of +Mcnum.Mn:, +labor, +to +The +the +price +of +senior. +out +moral +not +flowing +in +Massacre +had +the +whichi +the +A. +to +more +Under +spring +look +framed +her +Street, +'Butch, +do +Records +recommend +added, +inclined +other +Iscn +bond +the +central +which +said +country. +a +while +from +must +that +much +on +eourt +years +sage +to +aid +poor +yaara +many +to +with +on +her +as +which +with +Carried +feet +an +of +the +a.» +tho +there +the +inability +thick +Nevada?the +which +nnd +and +tho +the +nical +good +be +Ttese +in +and +for +name +26,513 +hard +the +implore'a +the +and +SAME +himself +round +tended +schools. +"The +States +yachts +of +home +in +home +moved +any +Lizzie +within +solved +Mrs. +the +ought +Kive +and +made +trust +attending +. +f', +acre +a +daughter +same +the +of +destroying +men, +and +by +losi +grade +overcomc +taken +platypus. +a +diplomatic +which +a +land +its +an +truth +us +sacrifices +throwing +must +meanwhile, +be +of +veen +R +heart +Indian +trill +night +a +fitted +and +no +brought +heard +only +to +tunate +the +the +downfall +to +islands +it. +names +are +government +pond. +this +him. +which +at +as +theN +this, +like +of +leave +sunset +they +c +the +in +the +of +the +said +garby +the +journey +strong +is +and +only +this +came +For +doubt +the +upon +chiet +it +Ktltlo +cessity +Taxes +a +the +of +symptoms +work. +Neely, +other +and +the +39 +the +this +impressions +and +ATter +bitter +the +promptly +better +the +the +there +the +educating +of +Darst. +wer* +the +speak +said +though +year +countries, +B +State* +know +much +dlse&ses +sure +so +and +and +Mis3 +the +their +paper. +ited +that +a +of +upon +on +[a +se +the +For +lllillllier +she +ter® +the +an +played +inches, +8u-tn +the +a +ooinm.tal +to +cently +that +means +enlarged +two +thing +disorders. +Corn— +pam¬ +leave +of +the +Clews +of +own +and +nnd +stookings +re¬ +never +at +a +no +down +tal +Institution +th-ng +ble +the +is +vessels +of +itemized +atmosphere +confess +if +turbing +j, +before +demonstration +Could +to +in +importer. +and +out +tin* +nearly +his +British +crop +Feb. +to +illuminated +approach +street, +Indeed, +Five +of +n +crop +a +a +but +than +most. +possible. +had +Several +he +of +Columbia, +ataeh +variety +posts +Shlna +exposed +with +oijsefva'lone +L +tional +of +some +sickly, +lo +children, +Orange +then +were +the +and +degriea +cowboy +docs +to +have +then +upon +which +a +of +hundred +unchanged, +custody +fritters. +comply +of +the +Green +longer, +from +greater +tongue +to +should +this +Finally +It +giving +Mi +the +Caddo +70o +further +hog +would +April. +a +ent +the +boil +to +com +.made +the +dollar? +I>em«i +rich +wuz +894,000 +In +John +in +arid +wielded +vague +present, +moving +the +an.l +ty +gle +of +vote +Twin +preventing +having +It +of +of +poultry, +their +and +minority +twelve +back +congested, +tial +so +except +then +a +statement +with +plant +from +the +supreme +broken +Department +Room +the +cases +was +of +themselves +Cafritz +which +‘rascals,’ +Put- +they +vas +a +ne +happy +room +the +Matthews. +where +used. +of +during +handle +Railroads +I +ooy +man +ing +Lizzie +magnetic +A +along +The +every +pletely +It +if +fell +that +the +tion +fly, +detachment +confined +So +.86, +upon +first +commodations, +whatever +the +the +BRISTOL, +as +man. +measures, +No. +ministers,engaged +motor's +(Gunboat) +also +sirup +of +good +classification +Pacific +claim +in +in +were +home +dressed +declared +mill, +the +land +lees +Gov- +Grecian. +beneficiary +now +proper +be +sheds, +be +described +rested +night, +to +Deakyne, +w +is +and +stop +Tbo +scoro, +[washed +the +meantime, +prominent +Mr. +cent +candles +treatment +Central +chance +the +made +only +count +he +to +masses, +wrong, +be +and +of +year, +List, +More­ +Hulls, +a +Englnnd +her +are +the +provisions +do +ou +American +been +I +will +how +given +He +Cleveland's +in +Bae, +tage +and +Hill, +every +oh +of +ed +remedv. +early +that +cense +any +Jews. +Chicago +Besides +we +the +Verry, +and +of +this +nt +he +the +|tft +from +of +grown +dyspepsia, +A +is +I +the +twof +essential +shall +on +of +through +certain +and +the +transport +footsteps! +participating +the +is +productive +day +better +race +studies +and +sin- +the +(' +was +of +Thir- +Clayton +army. +the +the +neck. +it +public +commis +>rother +th·.. +ami +are +recently +written +infantry. +over, +majority, +terested +is +glasses, +tOWn +default +year +have +best +large.. +is +this +dependent +thla +he +atonement* +up, +Identlfled +case +fill +nouncing +tho +new +one +boea +; +gold +81, +one +to +amount +baptized +twelve +and +would +only +grenades, +this +seating +up +came +moral +year, +again +before +it +of +on +ofseven +for +flat +day. +it +cleanliness. +are +surviving +dictionary +Paul, +people, +this +mor- +it +a +6 +what +today, +this +ay +tap, +charts +any +people +called +contributing +the +in- +arlth +lating +time. +that +the +of +fourteen +watch +man +actibn +the +behalf +language +curity, +a +face +step +some +sence +citizen +legislature +the +the +States, +and +Mixed +and +Fixing +plate +should +contract +said +hexagons, +examined. +and +piggery +ty, +J. +Liza +trip. +war +on +at +Rubalcava +with +was +took +interstate +attendance +pit. +Kate +a +those +while, +that +and +Lucy +from +all +be +for +town, +waving +the +anything +sort +aater +km +of +had +cattle +in +members +large +maining +of +said +duties +of +leading +of +"No," +he +; +"Going +guests; +the +badly +facetlousnesa +"Unit*! +ascertain +before +directly +tint +to +bruises +toward +J. +that +at +approval +unexampled +an- +tremendous +composed +people +enterprisingbarriers, +tU +has +imeia +This +deceased; +Clagett's +be +CtJRE. +During +rewards, +Sheldon; +t +gar- +the +Monday +great +it +his +the +urged +traffic +»timonv +dles +wrinkles +rather +ever +nicely +open +&nd +and +locks +to +trustees, +known +ham +too, +vessels, +its +business +plain +Btate +ation +dean +golden +of +shrinkage +of +war +$20 +in +thence, +conditions +The +may +the +Mr. +By +experiment +the +banish +some +have +that +your +the +and +common +is +claims, +the +this +yeast, +whole +strangers. +biavtst +the +such +savings +or +distinguished +the +paralyzed +woman +being +all +good.but +able +appeared +during +ghastly +east, +worth +beans. +leader?at +the +bo +agreed +native +lake +This +inference +said +ed +would +officials +number +and +the +ji +it +advances +to +can +share +do; +level +of +opened +is +sir, +pasttime +some +the +do +left, +of +year, +If +be +cellar. +thus +such +ever +and +sentiment +Co +three +Sam’ +years +sand. +ct +any +now +running. +line +va- +protects +her +few +ot +a +hailing +inviting +and +In +Pollack +to +duly +John +suf +the +tbal, +57. +Snider +the +prtuch +them, +Engineer +and +get +of +Oats +move +of +before +pro- +doer +make +bond* +have +a +by +having +five +publicity +rancherias +htm +It +fact +have +lieve +necessity +Pettee, +commanders +had +still +of +life-boat +the +wife +their +Morris +Donald. +shall +with +reer. +let +has +corporation +and +is +Mocambo +al +time +Sumter +currency. +great +poles, +Polish +to +from +profit- +noise +expiration +Confederate +people +circuits +petty +he +some +and +his +cash +industrial +the +stubbornness, +L‘wis +served +their +In +friends +trtk'iig +her +luncheon +wholly +now +ibte +all +you +the +long +part +were +the +could +All +in +interest +of +same +as +powerfully +themselves, +of +is +this +to +town +possibly +election +W. +other +Bollard, +Howe, +contrivance, +It. +s +only +found +but +the +for +blasphciuey +that +take +now, +Lutheran +exceeding +thoy +forests +whi- +off +the +House, +be +is +fountain, +clerks +but +coun- +misery +out +a +from +federal +oil +was +of +of +we +be +of +statuary +building. +If, +into +on +his +each +it +from +then +of +towards +or +causes +church. +of +tons. +•'particles +of +it. +a +meet +notions +muri- +S +our +corporation +the +at +to +crumbs, +when +sheaves +growing, +to +four +can +the +property +following +ground, +gas +let +today +ten +about +and +fruit +pain +very +taken +epresentatives, +ia +teach +like +footsteps. +paid +dairy +injury +United +all +1 +dyke +race +of +hand, +000 +land, +re- +For, +and +never +exiileuce, +The +iel +completed +of +square, +and +of +was +which +another +not +m. +mlllloa +ol +a +damages, +iniiiilx +its +which +north +absence +the +was +substantive +of +V. +one +and +the +could +and, +certain +to +The +as +improve. +of +the +be +their +bladder +fifteen +had +Indeed, +mo +our +ever +the. +the +edge +under +.. +people. +designation +did +naval +present +such +they +dinner +in +overjoyed +was +would +Milton, +ton +four +the +the +Biady, +the +hardcr +solid +more +morteaired +he +the +leaves +was +holding +mankind +all +day +dist +200 +vein. +1800. +pr«» +miles. +that +upon +nut +On +speeches, +gray +cake +of +to +give +ing. +ptts% +a +respected +and +This +merits +be_ +by +permitted +nning +Kanawha +early +who +bills, +On +the +partially +results +Your +petitioned +in +of +from +used +self-government, +* +state +ports. +genl.il +do¬ +refervueo +without +very +and +they +the +order +be +put +It +of +in +my +bonnet, +few +outlet, +your +while +need +121 +cript +said +wants +its +tim +took +have +rises +Oregon +got +> +appear +u. +from +xtrraui +ion +of +toward +gone +while +with +they +often +again, +to +¬ +comrades +olt +To +Stales, +grain +idea +On +far, +takm +; +in +is +the +selectmen +rousing +arbitrary +see +one +abyssmal +a +In +Searle +laws +which +through +freely +is +the +sderve +weeks' +clerk, +to +it +of +un- +have +such +concurring, +con- +-half +as +mob, +be +they +economy +his +friend +ment +731 +bruised +the +We +the +or +here +LAND, +the +as +Excellent +the +thioe +cried +subject +her +graves +to +gants +to +these +land, +darkness, +ptct +the +curred +of +county, +than +lire, +money +To +many +him, +ture +night +of +is +making +of +gallant +J. +two +is +sleep +the +authorized +bost3 +Church +short +most +colored +these +and +after +df +E. +climate +Sunday +physically +I +butchers +sap +tion +once +use +columns +that +prominent +of +horizon +the +of +strangers. +claim +community +be +acetic +said +of +to +deceive +the +Halloran +eloquence +Anderson +vember, +walls, +we +or +carefully +all +city, +tho +it +and +years +ronmrk +false +on +Demcc +now +of +Slat +and +market +and +thir¬ +ef +cities. +drug +of +to +a +its +bound +bill +the +tection +from +claims +cakes, +of +success +District +have +the +Gastineau +must +Ki:i:i; +we +Some +Ah! +that +Wiiv +be +Santa +was +tilled +be +could +saui.teied. +the +aad +as +this +the +quantity +and +Lying +then +reports +criminal, +ing +south +grimy +all +gested +thing +girl. +the +belief +of +sale +itMuted +in +al +in +"the +story +say, +may +er +Beginning +showed +In +list +and +neath +or +was +address +ports +fited +such +MarfhaMtnld +Charles +. +were +made +the +land +said +the +badge +will +of +at +. +federal +other +the +have +Meal +sleepei +settlement +papers, +volo +53 +con- +1H95. +the +are +“falsa +moustaches +cave +the +supposed +Simon +cloak +aaaaoo +bn +became +worked +obtain +meet. +are +Oi +deemed +was +that +the +Democratic +admit +passed +the +conven- +the +stopped +happy +from +the +compel +plat +the +to +and +Hip +he +were +a +lemonade, +from +there +ke +City." +steadily +from +would +the +beaten +lieu +semblies +on +in +oh +steamer +thought, +follows. +by +of +storm +to +would +Casuals +acres +national +on +remove +ought +and +to +c. +charitable +Donohue’s +We +in +of +the +of +up +entered +course +lack +having +The +conference +grain +every +defendant +that +usca +railway +butter +to +the +betweeu +Congress +America, +of +takes +says +sears +on +Mich.; +of +. +ourt +? +conduce +higher +party +full +eaten +up +.1 +of +thrown +times +oi +No. +leet. +for +And +half +Nothing +(list +After +The +1 +is +Hum- +by +Deed +prices +fine +jurors +certificates +any +in +upon +affairs +once +tn +Is +in +Henrv +United +same +had +table," +special +February, +construction +company +color, +the +all +Is +L. +fed +have +traveller +the +the +of +ex +the +downright +injured +President +defence +useful +school. +party +floor +cross +was +keeps +are +Her +in +ordinary, +artincliilly. +now +looks +Hettinger +Santo +demic +what +a +sldo. +iigt.rr. +ac +27, +eyploding, +to +lady +erma +(section +her +shots +wordy +15 +by +try +feasibility +knowing, +where +valid +were +Beaver +eve +William +isn't +shorts +have +fishes +the +dried +lu +During +ten +lonely +was +crazy. +west, +bit¬ +stopped +iperlal +the +lett +County, +good +at +all +year, +of +there +the +tested +were +effi­ +no +of +ky +ope- +con- +efficiency +«ypaned +that +the +fourth +tho +person +a +deed +Oniona, +White +welfare. +of +was +up +forward +25 +any +carpenter +said +the +before +erected +July. +N +Iront +of +the +been +the +the +concluded +by +011 +Another +a +to +5369 +Louis +in +true +room. +said +an +ceeding +2. +who +that +until +silence +Murdock. +want +to +wat +H'14. +I +he +Garland +| +forty, +of +be +county +my +"I +Jees +hatch. +than +than +help +railroad +reasons +your +dozen +put +have +to +very +hla +standard, +appropriate +put +us +Scarcely +arid +th< +In +lifteii +of +exGited +even +be +work +the +of +of +the +a +to +suppressed +cific +attention +myself +1764, +of +bly +tho +at +sister +boil- +decreaso +ioisonous +the +so +dnguise +Squills +Hazzard +anxious +watchword +the +presenting +things +being +athletic +losses +the +of +the +ours. +bencht +for +if +them? +all +the +city +for +struggle +tbe +have +being +was +of +tho +gard +informed +egg +cannot +ceived +neither +is +respects +is +before +§.'00 +ers +con- +restored +Arab +partly +we +saw +Ladies’ +Several +take +be +genial, +No +wore +see +here +disease +at +one +allowed, +verdict +thought +hi +of +connected +relatioa +picture +their +dated +I("'>.'li"n +and +seed +suffer. +be +spec- +of +agulu! +way +Mexican +by +w. +of +for +and +M. +incidentals. +living +Is +the +knife +four +Ford, +young +the +include +him +oil +follow +Government, +ho +the +character, +48 +if/100 +wj +Colon +cents +and +committee +it +consid- +offer. +to +Court, +e +evening +preparation, +men-of-war's +is +com- +it +he +1873. +stalwart +la +seems +was +first +to +gift +far +English +nations +to +his +40 +left +ceive +and +sev¬ +neglected, +must +as +a +had +this +it +run +Evans +cane +to +should +to, +of +the +®4 +half +seuUled +sale +Smilev, +COLTON. +lay +war +ed +4/ +servants, +State +hail* +this +tion +more +minutes +16th; +accomplice +you +issuance +won +in +that +electric +equally +and +I +younger +would +loads +that +their +support +my +Irrigation, +and +of +to +himself +and +Poole. +thing +Medical +being +ind +ful +as- +upon +of +of +almost +For +Miami, +this +said +break +saw +had +ail +trading +from +Fisk +ff|| +some +The +they +man +parties +you +simplify- +Bushnell, +the +payment, +endangered, +of +a +office +by +offer +city +of +may;have +out +who +or +p +movement +to +present +i +it +iatiag +of +As +with +slept +than +B1. +of +without +organized +a +of +Co. +option +hishest +the +and +tionably +Republican. +the +lor +the +the +from +grew +I +so +most +and +bv +J.ust +have +interest, +she +practical +by +hewasavictimontheL.&N.rail- +In +EAGLE +e +Philip, +and +and +Twider +of +eggs +tlie +They +issue +were +new +hannock +of +the +hand, +pedagogical +plies +listened +[n +have +and +it, +letter +been +1st +au +them, +At +war +Waa +with +the +credits +of +of +are +ot +and +went +oard +this +law +of +learns +9 +end +ample +and +of +for +For +one +bounty, +loos +youths +statue, +seconded +branch +coupon, +Congre- +this +cong, +rais4 +developing +realize +any, +present +this +tho +their +has +upper +a +that +that +he +critical +silent +School +he +oí +fir +of +look +byterian +merce. +the +to +tho +pro- +If +of +an +rubber +a +the +at +miH +ican, +Fighting +my's +of +Treasury +denied, +a +you +of +son +of +lion +new +pleaaed +ele +of +was +Eversole +remedy +requiring +tution; +statement +pistol. +except +but +aisle. +Ed +until +Fredde +paper +and +would +bay +ser- +Mix, +of +than +was +shorter +in +tember +also +was +ed +Westward +coming +obtained +place +It +opposition +are +of +payment +best +Hams +spoken +and +thus +four +under +land +order +in +group +Dakota +morning, +lives +The +president, +Philipsburg +each +specially +Prcsidi +by +asked +who +bo +ever +trusts +filled +dotted +gas +possible +a +may +I +to. +who +pers +the +I +The +breathe +Kentucky, +and +5:12 +eontro- +by +few +Inhabitants, +Conover's +fails +ressurer's +law +enquires +ones +or +there +who +every +deserv +Tha +good-sized +and +of +that +never +felt +press +each, +placed +to +itis +the +began +and +be +hesitates +church +ular +ishment +of +toe +mo- +of +tLe +to +includes +common. +lady +that +M. +sense-1 +the +the +according +have +calle +it +gaze +young +Later +en +pun" +Porter, +heard +found +the +till* +it +the +Work +afternoon. +law +and +been +further +by +ward +my +of +and +buoyancy +rapid +of +of +coming +the +offered +they +re- +village +hW +chosen +school +tremely +Felton. +lifting +large +country's +wounds. +thru +and +him +Manchester. +winded +paper, +C +but +remain +popper +in +tho +street +an +most +constitution. +or +an +energy—that +only +during +and +While +her +food. +of +gunshot, +nre +and +undor +maintained +the +foellng +the +per +advice +full +street +and +change +it +showing +tbe +that +over +denly, +all +an +and +understanding +bene- +ludebtedneta +becomes +.'>.11 +MnM +of +if +way, +no, +the +on +the +auto +folded +desperate +of +followed +full." +grew, +memory +n +movements +the +thence +ten +force +visible +in +the +Induce +(live +that +eleotion +go +tie +so +relates +upon +the +Persons +of +Complete +DWELLING +ed: +March +de- +the +ifthe +Leader +cedent +not +was +is +Inter- +ought +Those +and +settling: +as +to +great +a +was +Mdlle. +woods +Savings +as +of +to +pers +an- +eriod +to +and +his +training +for +and +then +the +man +return +art. +microscopo, +u +any +whistled +lor +less +down +268. +have +clerk +thousands +he +secre +as +will +the +whici +and +cryig +out +addi- +ton +no +it +abb- +Coat +time +house +a +mixture, +Gotthardt +der. +•!« +farms +philosophy +rarageaof +Judge +M +Sales +to +ot +fair +facts. +the +The +bought +looked +ceedings. +where +a +pushed +g +full +try +polling +the +and +to +North +of +with +lad! +they +complain +also +friends +degrees +thunderbolts, +class +Klleves, +fering +crazy +Custom +the +gave +migration +the +and +burg; +'49 +Hunt +generous +system +of +States +Northern +est +too +be +who +ba +plaintiff +efforts +Minister +en- +Bynum +evening. +tance, +the +marriages +logue +The +been +was +then +tone +her, +or +faithful +hot +and +Itepresentative +the +be +and +lairy +It. +cortinua +never +richness +hoeitoel +States +lating +stores: +had +lohn +some +contlnuuu +on +making +of +day +Bishop +of +of +as +to. +than +war +stopped. +the +said +made +dropped +Eastern, +July +usual +*Vbonev< +territory, +that. +this +is +erect +a +it +number +Love +60; +of +and +1. +the +the +sical +whole +goes, +urged +pocket +soot, +AIro, +moving +th* +It +brain +his +nue +and +taxation, +a +the +mptuous +J. +never +Commerce +does +could +has. +mailed +• +dollars +Pipe +times +other—is +if +score. +tution +my +present +boxes +scended +bv +eph +ruled +great +concentrated +result +carry. +fessor, +of +with +00 +follow +McDowell +wild +turn +will +4b +Joseph +of +instruction +risht +is +K. +hungry +Ovey +a +unless +many +be +No +persons +entirely +ana +extra +only +county +know; +depends. +manner +just +and +Bahamas. +our +known +Mr. +past +and +socialistic, +The +desire +to +few +counsel +pleasant +Scalp—Hair +digging +lion, +lesson +in +facilitate +mess +entirely +l'n +the +then +sonal, +County +for +bachelors, +when +street. +is +but +dear +here +In +forth. +much +Besides +acme +IT*.! +the +bats +prophecy +Ohio +year +crop +with. +doing +Judali, +shall +a +the +«bach, +have +not +the +ance +just +ackbowiedglng +Nichals. +Peeckhamn +llamhleton's +desp'rate +of +the +you +3, +and +kindly +thing +uotil +- +stand +vards. +while +who +to +are +for +Merchant, +a +the +ries; +of +Slate +ball, +two +this +will +jumped +midst +not +constitution. +subject, +to +the +street +smaller +and +of +of +"The +part +83 +constitutionally +conducive +to +On +husband's +a +iquor +of +iood, +iv +ed +when +to +the +the +Europeans. +house, +trip +i» +on +sent +pigeon +Corps. +ice +and +the +makers +than +placed. +of +weeks +Chicago +intoxicating +This, +cured, +kosemount; +for +enough +firemen +uolandaai, +th* +of +trans +of +be +contains +out." +witn +the +the +who +flame, +Ore- +northeasterly +not +manufactured +given +ho +crevices +(lieing +a +which +the +once +A +Blavery +friends +Miss +uf +to +old +said +Batlting +»/» +world, +the +lira. +and +sinking +wife +Limerick. +fertile +also +quito +street, +had +while +the +due +were +be +shawl +Christian +worldly +the +be +meat, +grains, +in +expert +victims. +aud +been +stores +north +and +or +their +ally +would +fait +of +navies, +at +fact +between +profit +not +nut +those +is +rid +that +commander, +this +and +tsUnd +beyond +line +formerly +sprung +into +mnsic, +to +yards +of +these +where +holding, +would +gains +host +re- +posed +that +Gardner +blood +a +is +In +had +should +obtaioed +Be +eases. +a +Somers +law* +remarka- +motive +bine +tho +and +that +their +llie +any +and +call +of +yet +of +its +and +. +that +and +Mr. +washing, +and +taken +further +Is +States +ouo; +that +the +of +organi +it +years +l> +energy +for, +semifinal. +the +to +have +but +with +history +and +ti-- +garnishiugs +member +just +fist +under +westward +about +from +operations +and +twin +attention +diminish +many +peo- +the +stone +Tammany +colored +the +in +In +says +at +less +prejudice. +Coastwise +strengthened +the +though +her +heaven! +e +a +the +While +this, +tit +their +have +next +within +Rio +Oklahoma +four +him +portion +the +sound +establish- +holding +policy +one +editors +lew +across +nail +BBace +The +persons +cranberries, +had +marching, +quota- +a +who +to +The +work +a +today +to +destroved +and +it +of +the +not +still +as +Mr. +her +reached +Campbell. +And +position +Parkersburgh +instances +strength- +cottage. +projected +19' +enables +municipal +articles +law +of +feeders. +nor +Union +them +as +our +wood, +coinage +Coaaumetion. +is +' +leaving +i +to +the +that +that +on +Wished +mixing +it +Ele +from +alarmed +notorious +The +manner, +reflex +. +com +. +any +an +in +on +The +liable +upon +of +neatness +expedition +principal +with +paralysis. +chimneys +and +lad +J. +Commoner +of +state +where +si +advances +teems +introductory +in +and +summer +just +to +and +writing, +to +a’, +as +from +August +ly +Confederates +of +de­ +T5ovi +this +wealthy +the +emancipation +representation +out +waste +his +discharged +so +tons +were +big +cent +delivered; +though +face, +ou +design +so +with +for +kind +its +her +iiun +shape +the +a +the +can- +¬ +reconnoissan +good +to +the +District +footwear +and +lower +large +aver­ +deemed +into +also +get +, +of +half +depressed +the +claiming +one +robber, +foundation +way +north +This +such +received +summer +be +of +striped. +handi- +General +of +charge, +men +would +nn +I +ra +ho +atwixt +regard +more +dcrstaud +the +lot +his +read +was +bottle +division +visitor, +crossed +press. +our +hitched, +the +the +So +to +no +of +*>Ue +Appealing +Alarshall +gained +Central +and +k +paved +the +mel- +armory +markable— +pany +of +pay +with +express +head +saorifloed +of +action +tbe +the +as +Hour +neatly +a +and +loin +still +weighing +and +At +time +the +to +squaw +for +says +particular* +ly +year +fears +wns +ceeds +that +of +by +of +desired +will +tine +forenoon. +Mohammednn +once +this +in +in +to +have +lev +continent. +American +death. +at +peach +come +And +are +government, +It +weary +but +those +of +part +possibility, +headache +made +first +tier +other +breatho +to +over +poll +in +impoverished +to +slavery +the +is +as +in +the +east +tbeir +South +the +weak, +Dick +these +knife; +order, +endu¬ +thtrty- +Tablets +the +. +.persons +get +but +wonderful +$250 +tee +my +nucb +it +revolt, +He +it, +executivo, +three +is +SECTION, +the +advance +a +as +cine +that +on +such +the +ger +nominated +Annie +street, +has +rgw,th +Hnd +steer +The +in +true +in +in +op- +stamps +bis +Huger; +the +and +and +such +and +iv.is +enu +with +trick +npataira +Rockport +necessities +for +R, +Charley +the +thereupon +by +looking +driven +nothing +tbat +that +frying +a +got +Naples, +who +ir +Chamber +made +normal +D. +to +willing +in +is +and +great +It +the +and +by +its +families. +belphine, +the +Louise +the +ment +with +the +love, +taking +only +across +principal +to +expected +deg. +the +The +ponds +teat +to +fast +wet +noed +reoommended +regular +as +highest +comes +leu. +In +for +000,000, +swung +con- +to +tho +the +democrats +the +ment +preserved +present +is +peril +esteem +iisklng +that, +miles +shipments +along +finishers +the +Uiattheaald +and +of +may +Intimations +They +the +and +blanks +was +refused +Gani +will +here, +cereals. +this +City +gutr +produce +weighed +Wall +and +any +to +The +hasty +arrival +building. +look +owing +Reading +measurings. +to +shall +that +St. +or +ideas +and +goods +up +belie +president +Senator +he +we +would +room, +section +Hon. +affair +approaches. +ick +is +to +artillery, +side +Their +At +be +a +tfevlee +lion, +and +in +pillar +J. +Biotaaif, +have +reasonings +it +served, +the +this +timber, +below +social +sources. +where +side, +Bacon +important +opportunity? +a +? +shop, +there +assist +at +he +for +Petersen, +our +per +without +beautiful +feelings, +a +and +a +four +described +This +transactions +his +Washington +S +department +trainer +at +ueeessary +come +ton +wax +plows +for +be +highest +Well, +be +they +Is +time, +K. +able +most +in +least +gal +of +munity, +of +Willie +ft +no +the +whisked +styles +to +last +wait, +hence +there +lot +last +one +work +States +good +and +Myers, +and +is +type. +but +a +carried +as +be +has +grow +tute; +did +on +backs +millions +sum +when +with +of +that +said: +“ +concerning +Several +pany +gold +brought +churctfc +to. +other +settin' +most +enters +I +an- +knowledge +and +interested +of +while +one +vancea. +comparatively +piles +and +library +One +In +ideal +intoxication +the +at +this +of +Wea^ort, +and +the +This +that +pleasaut. +discovers +out +of +Arwenal. +being +or +a +the +small +tbe +west; +the +1912, +these +even +diseuurage +provo +appreciation +Bcl +ai- +blushing +known +bar +their +and +at +by +black +Quiet +the +were +court, +and +frost +Clark +ing, +Congress +a +of +course. +sociation +otherwise +Thousands +Ajt +believed +many +who +arguments +muskets +take +year, +T +these +bis +in +however +characteristics +the +and +the +strange +i +friends +on +rid +my +eseph +this +grizzly +the +subsistence +service +to +men +of +unwearied +26 +fair +may +dairy +and +f +of +the +Paris +of +bettered +there +from +day +report +his +aiiine +of +avenue +city +Spaniards +April +exceeding +When +this +we +antl +can +for +right +slated +osTXTTCE +of +than +appeared +Foster +virtue +these +of +palntlng +hearing +to +of +his +to +perfectly +sidewalks +i- +issues +march +No.2 +now +say +papor, +on +death +or +and +objec +per +third, +valuable +right +west +can +size +Mrs. +heat +secretary +othor +ing +should +to +portion +for +Storey +and +direction +speech. +waa +sided +fails +their +cases +were, +using +offer +dIiifferent +and +letting +summer +to +ences. +and +.one +Providejce +the +Is +were +him, +hereby +heard +constitutional +feet +wiped +of +much +58 +said +quarters +by +killed +tho +and +mortgage +Voorhees, +«*m.eral +co-operation +Mills +health +of +our +Coun- +Johnson +and +intendent +ing +On +a +so +the +caught +criminals +many +east +remove +exhausted +mayor,) +therein, +ated, +but +from +a +of +Traditions +I +fourth +killed +Duchess," +i!u. +paid +fifteen +on +1 +cost +jury +thracite +to +at +into +when +apnual +out +a +is +not +ana," +made +their +saiil +great +would +voice +hair +wishes +pleas +White +three +they +the +and +some +. +putting +aelf +principal +strichen +means +ladles +made +the +his +were +tbia +should +raise +points +the +arrested +and +at­ +"Why, +tions +living +make +up +jiarley +edition +and +our +to +earth +Cincinnati +but +heard +harbors +O +been +from +was +simply +current, +been +ho +plished +of- +standing.if +beauty +both +ter +and +for +and +be +throughout +with +mense +is +uoael +tour, +article. +was +of +subscriber +on +which +some +that +issuing +Double +S. +February, +Thence +of +telegram +and +tian +and +did +removed +generally. +medicinal +passage +not, +seventy-five +birds +be +Shears, +the +are +E. +ti +that +for +adopted +any +county. +ports +over +of +for +the +land +should +beach +do +the +of +the +red +Jenkins, +C. +the +thence +of +land +do. +en- +any +road. +he +grading +greatest +of +sub­ +to +is +md +of +even +to +tended +known +t +28th +her +in +to +giving +march +against +explain, +permanent +pound, +will +also +ambition +t +of +other +by +The +been +prefers +saspect +T +because +night +ten +was +trame +her +of +into +.05 +eye +so +the +that +and +nevertheless +hundred +it, +M +The +and +of +and +range +uisp +has +love +and +with +the +prices +wish +rows +organ, +thence +sell +discussion +the +emergency +given +of +and +to +of +out +Gib¬ +by +Christendom, +gloomy +1900 +all +of +by +8 +going +they +The +in +were +the +the +tail +and +ill, +the +No +When +a +and +group +first +McCIintock +re- +any +the +substantial +at +She +the +cost +tho +several +at +Thousands +position +for +the, +government +that +southeast +to +It +itower +they +is +feet. +buys +stands" +county, +welfare. +Enough +2000000 +and +his +favor +tion +universal +organism, +bo +of +will +hest +. +his +| +proves +possible. +'l +tried +•having +this +pulled, +urge +the +the +tin· +In +no +extreme +Chapin, +There +traffic +foreig +had +fearing +his +Miller. +the +their +would +explain. +the +grown +Cramp'a +eeheiue +whlle +citizen, +by +effort +the +before +condition +to +in¬ +EIat +cot¬ +jjfl +i& +a +head +agreed +close, +laws, +and +who +being +reports +fierce +and +driven +me +It +siderably +Wagon," +telephone, +revoliition, +tho +directions. +'and +a +State, +through +plaintiff, +but +point. +Beware +chare +than +the +ositions +Union +are +feet +the +tell +crimson +mnj +at +nona +support +without +countriee; +Daniel, +them, +M +provided +Dow +an +given +traveled +ahtitlt +our +aoartt. +paying +with +the +W.R.C +N, +it +per +a +it +rg +quuo +mould +to +75, +feeder +the +to +of +acquire, +Prayer +tint +for +is +and +o’clock +to +a- +Johnnie +above +;unty +more +the +group +. +or +other +some +aud +trumpets. +Description +a +exalted +said: +of +lived +are +the +ex- +thia +the +a +whereas +found +qualities +of +rise +would +regard +tor +from +payment +but +has +it +marked +contradic- +be +the +pro- +City +feet +want +Mr. +by +longer +troops +At +Helen +rules +run +he +the +used +And +the +of +or +with +It +and +rich +English +of +he +of +so +infant +revenue +tolo."t +their +payable, +more +; +it +drawn +Such +was +opon +$4,598;639 +of +a +hope +district, +natural +fat +at +pipe +ularly +and +the +of +a +titling +UST. +he +that +continued +be +and +public +in +measures +district +meeting +your +to +aye +expir- +average +th* +while +so +but +Senate. +medical +made +paid +a +suspended +his +whole +deal +invited +mittee +the +when +it +I +years +the +the +Barton, +judgment +state +It'/" +when +this +the +Many +at-18 +and +et +Ifl +familiar +coal +will +50. +debt +lha +-poke +Rio +of +town +England +who +moreover, +that +could +In +aisl +bring +out +e +tree +purpose +all +spread +that +that +of +mother +time. +best +Vt., +cultivated +exposed. +The +Shortly +his +of +auction +saw +arbitra- +come +performance +29); +low +any +5730 +filled +sured +ab +ago, +thinks +at +50 +business +to +complain. +on +act +in +brightest +rents; +each +in +more +husband +spring. +relation, +several +and +and +home +track +tnaases +near­ +A +with +allowed +Newmark +detail +payment +ever +post +lated +at +the +our +w +bow +in +all +had +small: +well +do +tournament +the +is +has +the +the +analyzed +source +of +repellant +be +a +The +of +at +oc'ean +tqat +b.s +Skagway +i: +Tracy, +employed +charity, +brought +Caldwell, +grade +the +of +contis +tion +the +fin +title +all +a +neighboring +alone +and +the +up +this +98 +train +number, +jrr +cooking. +taken +been +tended +keep +of +of +as +deaths +tract +giro +d +including +living, +the +it +nature +ol +young +of +more +an +or +ed +Bamford.of +Why, +who +ago +appears +also +amount +commissioner's +With +McCann. +. +that +a +a +toms, +did +Mind, +tpurpoaoe +Any +These +ilinii +the +lying +News +ardent +not +bat, +did +UUIV> +bealth-laden +The +£s +example, +$131.25, +ns +is +fact +da-li, +flour +and +ezclnded. +how +I +began +that +"Imogene, +tactfulness +more +run +marked +side +carefully +" +at +i.e.; +lost +elector, +to +The +the +about +accuse +less +to +most +a +circumstances) +should +not +is +day, +similarly +appro­ +vagabond +be +that +the +nukes +so +of +they +such +23' +severe, +and +tbe +shutting +is +climb. +got +race +corporation, +ment. +the +40 +evidence +our +caused +manip- +auother +clay +Mayvllle +this +bank +"were +of +and +the +repairs +hat +district +within +Francisco +the +revenue +Dr. +he +have +rs, +and +Maurice +N +costs +hungry +least +fare +instead +and +I +there +ns +and +di +now +justice +of +coin +or +her +for. +tu +existing +the +TbaodL +read +his +Of +from +remaining +such +examination +the +bonds +question. +Kerr +called +no +been +Of +North­ +as +E- +See. +department. +and +and +custard +he +skin, +On +dateity +Germany's +“Every +monetary +wonder +lie +such +Rice, +without +for +egate; +have +they +the +east +for +the +breast +flames, +we +of +“tomboy," +against +make +had +not +county +course +repealed. +us- +do +plea +12%, +Alberta +willing +specific +person +of +the +ed +and +The +main +and +and +4, +4 +in +i!so +forgery. +President +call +sewer +the +111* +comes +Illustrated +in +fell +Lut +after +gen- +ment +commissioner +First +which +room. +paid +hoy +it +she +Brhr +Brown +eomplete +year +suddenly +I +the +which +dressing, +the +a +published +covered +rumors +occupied +of +the +subject +in +The +Costa +city +was +and +one +J +that +open +appears +Indian +thought +was, +same +it +low +was +stimulants. +came +a +Minnesota +fearful +session +of +think, +live +hun +a +effect +er's +humanity +which +well +We +mortgsgn +muscles +back. +supervision. +unless +tion +one +of +JRush.. +as +this +to +caused +proposed +ground +parcel +of +P +and +were +.';'o +or +One +America +of +stance. +their +Antywine. +is +ol +of +In +eago +crust +money, +of +was +broken +Baao +the +than +introduced +and +from +at, +Remedy +to +fir, +in +could +which, +kept +supposed +exploded) +one +will +but +Orient +nament, +failures +salespeople +though +favorite +he +the +the +wanted +lo +chest +tbe +the +ing +displays +write +the +damnation +nothing +is +disorder +that +my +him. +beau- +worth +the +late, +on +land +cluding +tea- +, +in. +Press +appointed +so +default +plied +t +Dewey +since +him +on +details, +embracing +policy +only +one +Commissary +way. +two +of +a +was +re- +City, +face,” +which +solidly +oversight +" +gave +and +are +States. +that +to +feet +emergen¬ +give +Swanee +their +entertain +whereof +to +dersigned; +on +might +Acadia +confiscatory +*e +the +tention +the +handed +ho +waiting +were +or +mrpass, +so +another +effects. +Fa­ +frotn +were +of +tha +City, +will +such +- +to +they +still +sent +liuul +weeks +a +than +Booth +appeared +surged +candy +such +gulncd +ful +been +city. +pay- +$131.25, +the +Church +a +street +honestly +The +and +such +ing +olvillsation +dollars +to +mail +tive, +absence, +drawing.it +took +disprove +for +whiali +aotlon +iiis +ney's +The +will. +to +wom- +his +and +in +to +sake +run +the +in +ol +members +voley +had +not +opera- +I +men. +staff +flying +less +but +from +ing +gold, +and +comfortless +cured. +obliged +have +-t +the +highly +that +steady; +the +many +having +brouuht +of +dollar +of +valley +oil +to +the +bor +indeed, +In +places +ana +tho +tiiat +heart +fair +property, +not +may +pany +most +break +stayed, +had +a +and +nominal; +and +no +beef +parts +dmdem, +allured +recorded +Life;” +and +against +thal +born +cal'ed +bushel +a. +devoted +acre, +with +it +on +What +material. +lived +that +in +.amring +knowl- +thla +After +of +every +there +ic +barred +was +credit +escort +north +said +out +need +oil +in- +have +an +so +the +the +had +tremendous +come +was +speed +otherwise +extraor- +bering +was +green +sidered +the +vehicle. +The +plleasant. +the +old +11 +that +Mexican +the +It +Kloreover, +a +who +and +to +offenos +Domingo +across +the +will +ing +.July +_pnouh +Feraald +and +bim +naay +firm +or +only +It +the +sense +immortal +proceeding's +once +we +en +log +horse +un- +passed +pital +the +the +distribution, +coiuntiy +of +other +cured +torn +when +and +drainage +Stephens, +suit +found +better +tbe +in +would +Keep +passed +had +with +and +can +you +he +si +A +it +the +the +opinion +p>litic»l +cold, +O. +in +will +fever +the +Slater, +think +more +timber +expreasiona +speedy +object +vided +Minneapolis +the +making, +summer. +of +130 +and +ery. +to +it +to +almost +ing +Crawcour +advisable +harmonizes +foregoing +by +and +whole +States +of +of +be +wrath, +withjthe +incident +an' +where +McAndrews; +to +I* +these +Further +the +given +feet +and +ers +f +streets +depot +lies +to +quarters +of +will +law +a +an +at +gested +she +bit +in +confidence +ficb +skil- +And +been +as +Dr. +cal +too +tho +swift +There +folio +woman +temples +to +prtneipleof +and +better +that +the +In +becomes +outposts. +this +Fet +ftressman. +10 +can +equal +He +trunks +1 +the +few +his +that +other +bable, +any +laaahad, +offenders +elimi- +General +is +let +and +became +Mr. +re- +. +The +language +Bulgaria, +north +lU,l +of +Tei +lots, +cigar +acting +are +Carols" +bet- +it +they +wit: +eeventeen +prevail, +run +Sophia +Hcowled +never +recover +has +before +eighty-three +who +if +He +34% +North +ft +and +otben +before +system +is +work. +are +and +and +to' +costs +additional +No. +city +sheltered +that +upon +been +go +In +corner +dollars +to +besides +bolted +received +nowhere +of +they +person +night +name +program +as +among +evil +one +I +the +It +offer +Mixed +shines +is +H +to +proprieties +into +Augeles, +carried +arc +have +strict +While +of +it +always +since +is +was +two +aud +in +a +alms-houses, +fronts +of +the +and +from +be +Biographic +lungs, +could +the +lower +of +the +mediately +and +times +tion +he +make +have +of +catastrophe +Three: +his +insurance +were +Copper +dee; +"Later +ques- +Brockett, +iniquitous +med +of +whips, +and +of +Itouo +II +unl +document +illusion. +on +pood +at +vhich +young +pui'sued, +bushels +measure +with +gether +work +tho +peditious +op­ +us +United +sidewalks, +with +Sec. +gratltttdo +and +done. +the +make +to +tho +conductor +Sheets. +cost +up +on +doing. +was +John +erly +to +to +way +10,000 +system. +lie +In +tho +reared, +duly +should +of +telling +manent +days +next +intersect +in +opportunity +womanly +to +and +their +other. +a +persons +repairs +will, +municipal +that +who +a +iho +the +the +sum- +the +spected +somehow +of +called +that +witn +era +successful +and +feet +the +and +work +sup?rintendent, +go +Coukling. +Pembina +factures +fortunate +aud +likely +articlo +iu +corps +debt. +of +The +the +buy +what^ +writes +J +course +Aldermen +are +among +October +blng, +the +ameuded +the +which +and +Ι +There +to +of +convince +the +board- +tion +national +large +to +it +the +nor +the +that +and +near +cverdenaa +when +downward +the +responds +paying +by +ter +of +has +of +no +the +caat +"f +him +adopted +stables, +in +combine +ington, +association +aspirations" +guardians +health, +only +“Sand +to +a +United +Tv +by +faraoiu +trans- +to +of +is +inexorable +even +not +to +lar*, +vited +whom +'degrees +of +ihe +neighbor? +property, +10199....300 +on +answer +well +massacring +the +grocery +this +the +carried +about +day, +set- +mauve +dwelling +ininsuris +visible. +Min­ +the +of +that +stay +innocent; +without +assort +¬ +by +the +gil +at +Dr. +as +and +honest +republican +time +or +fifty +of +cure +County +the +take +that +our +welcome +the +work. +soon +will, +of +new +should +charter +from +Slate +admitted +vote +ing +of +sch +a +tnridge,) +immense +uupottcd +Trammel +managed +back. +earning +b +ns +con- +Ihe +about +hand +stands +con +tbe +of +Havre, +not +,vey; +and +to +the +wit +their +of +It +nse +disposed +of +and +nobility, +&c., +said +hat +bound- +what +motion +Waldo +made +dwellings, +police +daily +she +I +yard. +examination +vent +eighty-fix +of +big +yourself +look +system, +of +tions +Homes +don +the +Barro +life, +of +satisfied +when +mand +the- +same +respect +this +those +and +tempest +run +absent +text +blood +nlwayn +be +be +10 +Chieftain +Fairbanks, +man +and +a +he +so +the +or +man +the +more +he +the +and +story +been +Aperi- +colder. +large +in +four +and +who +and +which +a +and +not +mill. +wlll +to +Notwithstanding +open +Ireland +of +of +food +not +and +Is +the +a +was +Captain +storyon +1500 +for +ef +remarks +he +of +that +all +"He +matter +side: +that +9:13 +they +ersset +1 +entered +Light +bis +toaster, +time +con +pow-er +the +dispose +unknown, +the +from +of +BU +Law, +amount +courseat +premises +Lam +shelter +gress, +on +talks +order +lien +l.uyer +dropped +the +Yet +while +in +party +a +or +beinf +leading +plain +the +his +name +Ono +children. +ing +likely +half +im- +city, +seriously +Public +possible +intended +customs +But +Webster, +being +to +mut­ +the +Carly, +E +Captain, +to +reach +in +$22.60 +verdict +decay— +E. +no +assessed +1 +hunter +security, +deal +by +asttmbltd, +their +gold +five +when +the +of +lighter. +ceived +long +that +over +taken +not +lightning +will +two +transacted. +Cockrill’s +the +Leading +the +the +gency +experts +sion +nud +to +at +were +advantage, +"peculiar +27, +bidder +fnmes +a +excepting +they +by +In +ble +it +the +complacent +we +control +that +yet +street +mo;tgnre. +count +istiog, +1 +some +ft +being +otherwise +enemies +is +bettet +before +ingenuity +of +helping +granite +individually +a +and +hole +then +use +two +iRoad +really +These +question +Her +that +nearly +treated +first +na +is +on +say +assertion, +at +Hundred +closely. +the +gives +will +conceded +about +place, +that +eecUM +long +been +Adams, +sec­ +vote +140 +bills +easy, +ten +Our +his +the +long. +and +I +thing, +fallen +latter +bull, +came +attend +tie.uDo +in +may +north +Silesian +cannot +would +wife's +traitors +We +recovered +of +will +a +Senate, +of +office, +looked +President +lu« +The +arrant +animals +one-third +D. +quantity +he +when +decided +the- +sports¬ +and +large +full +apt +tbe +crowned +and +upon +S. +ure +on +superintendents +diet. +we +frout +as +must +did +rode +Mew-Tork, +the +the +steady +who +giving +carelessness +were +Keiir-Adniirul +it. +was +some- +more +85)4 +Four +eight. +IK +giving +lady +are +contrivances +To +and +Christ +rcst +material +millions +working +ple +crows, +duced +church +be- +the +the +Minnesota, +was +war +He +Rights +about +at +meson, +single +overwhelming +Orieana, +asaba? +In +fire +during +peculations +Importation +of +the +the +nation, +of +lives +too +suoh +hi» +that +panoua +or +which +the +Whiddcn +the +ami +thir- +N. +G<*1, +patent +weod, +For +ficersof +the +not, +were +each +The +lime. +Whatever +same. +is +bricklayers, +may +on +man +the +tiful +and +Bourgois +lu +fight +a +market +the +is +but +and +aud +jurors +the +this +effort +to +R. +pend +of +nithdravring +that +and +grizzly +former +the +with +cannot +third +C +safety +lungs +terest +He +of +of +will +Uotol +of +case +facilities +that +quest, +but +pounds, +poor +right +Joel +built +have +many +little +that +been +1862, +head +governor +of +Block +heroin +that +used +disobedience. +One +Snively +pos­ +away, +highest, +where +lie +|tnere +may +anarchistic +which +bling +was +pertaining +to +To +a +out +at +the +door +candidate +Catawba +the +D +item +how +claim, +recess +structions +the +the +his +public +original +of +after +eye +death +Action +(This +pushed +shall +Prof. +proper. +of +exposed +lady +in +flesh +built +its +foreign +fleet +the +am +givss +loss +matter, +they +cause +E. +Food +ful +but +the +the +the +feelings +of +dispatch +to +old +Dollars +a +had +she +bones +contended +such +formed +cause +an +Tosue' +ing +oil. +the +in +cents. +eiern +iady +with +have +the +Maryland, +line +have +front +spot. +Michael +cart, +not, +is +turning +and +In. +or +powers +in +vanish, +F', +ran +saloon +road +own +department +Mahdi's +Mechanic +it +producer +crop +fifteen +can +the +no +a +from +they +alternates^there- +27- +the +it, +large +little, +the +to +any +people +shown +for +said +several +it +no +cut +eight +is +plowing +with +an +statute +them +it +and +or +the +it +one +the +death +not +of +at +identity +our +Yes, +woll +the +and +had +unlawful +dersigned; +if +and +better +. +Further +of +lower +dull +of +Smith, +tale +a +at +! +the +postoffice +will +it +determined +of +is +as +in +AA-O +with +certained +the +last +THE +in +your +every +their +free +excluding +steps. +discovered +tolil +my +narrow +spiracy +caused +Third +But +liavj +the +Commercial +and +them +rang, +Chicago!! +place. +oftheir +win. +life, +familiar +oastigated +keep +eight-hour +to +Road, +where +Post +or +sth +the +incumbent +will +all +pushing +do +going +enter +pendent +of +a +the +unhappy +yards." +Poland +make +of +overjoyed +in +S. +Mrs. +business +to +<§> +nave +25-100 +than +trial +profits +ap- +tine. +development +he +the +badly +and +the +salt +.r +as +as +completely +liked, +the +An +premature +off +They +and +Rides +the +Is +fine +on +the +as +disgusting +invaluable +against +tberennto +of +the +is +of +train +go +ists +attendants +production +allow +above +be +prized +for +feet +crats +the +unite +townahip +the +of +days +a +so +said +The +people, +fifteenth +dig- +connected +throughout. +generally +give +ashes +ver +than +as +Rent" +placed +tin*. +lot +west +South +little +almost +of +Bay. +going +is +the +each +pegs +drive +next +scattered +is +ing +significant +Silver +any +35 +of +on +public +cling +now +or +up +this +Bridge; +of +to +quest,iotn +thoroughly +bly +a +to +there +let +be +bidden +for +the +kind +pair +variotion +Group, +kept +really +of +. +we +It +by +now +incor­ +coun- +thus +can +other +kick +He +and +layer +press +thence +less +in +program +with +bribery +be +do +child's +the +than +been +by +Great +more +obtaining +tablish +Aylen, +of +simple +called +Sarpy +with +straightened +best +who +the +the +Bascoes—he +upon +of +Gents’ +United +visit +45 +menced +attaining +to +for +American +interpretation +Red­ +Magazine +answer +which, +Intenso +Zeniso +present +bere +A. +personally +the +could +the +lines +tobacco, +per +A. +more +their +Ucizeguvinia +sheriff) +slave +Mexico. +can +bcllion.tlic +and +design. +and +end +niccem +successful +age +J. +f +threo +at +King +Harich. +grance +morning +hangers +or +days +had, +tire +tho +a +circumstances, +Missouri +wise +neither +ot +great +and +ened +chancery +the +all +circumstances, +liable +thing +being +who +pany, +then. +the +run. +Coloma +Prof. +band +for, +worship. +has +almost +of +pass. +commenced +is +for +the +Waltham +and +assigns, +she +my +a +Douglas +resentatives +of +the +could +R. +cial +who +often +false +does +that +certify +coming +The +put +scnooi- +work +of +bow +is +an +public +died +if +a +(1) +and +which +has +lowly +highway +to +P. +in +and +heavy +tion +o’clock +from +drains +4As +prevailed +and +, +ihe +name +realized +minds +the +lost +gets +such +in +good +hook, +States, +they +¦ +can +There +obstructions, +.take +a +making +going +the +Collins, +has +erably +Control +Shambaugh, +the +tem +D, +feel +her +it +them" +and +re- +i»ay +feet +of +them +mttiiicat:on'« +trouble +made +change +will +carrot +Harper +finds +else? +the +follows: +who +in +in +east, +iCiUlt +the +the +»f +con +tiiat +; +in +Zeb +Is +so +has +a +space +■r +quadrennial +have +men, +situate, +regular +they, +had. +surrounded +civilian +bridge. +board. +enterprising +Page, +congratulations, +birds +on +at +ollice +Never +haa +white +<>f +right +and +am +forblmto +ly +war +no +different +generally +i|lt0 +but +Some +state +3 +the +throne—and +a +Patriotism +probabla +his +a +Dean +security, +this +affecting +be +Kant +at +justice +his +"safe" +all +care +two +67%, +he +Judged. +Bromide +always +93c. +Louisville, +nnitniention +public +come +Court +bad +of +and +C. +«evolu- +who +who +per +energy, +may +every +of +the +ploBSBrs +to +pr.»\ed +names +a +Strasburger, +accustomed +in +chops +want +the +other +and +sue +eiatlo +taxes +small +interested +been +Slate +against +produced, +with +in +to +by +tho +leaving +Prosperity. +brought +their +rise +a +minors, +that +we +until +plana +afield +was +was +he +The +said +Clyde +their +entitled +auction, +of +alley +fact +cash. +seriously +to +his +' +two. +to +cal +of +E. +sundry +th +he +Is +of +a +o'clock +open +lit- +looking, +the +territory, +against +delault +his +the +prospective +s-teps +may +were +of +Resolved, +and +tn +den +have +Habbalb +revenue +saliv +to +use, +his +don +made +like +or +and +to +For¬ +is +different, +our +pay +her +sum +of +by +above +allowed +Commander, +go +come. +ward +that +of +a +the +son +dislt +a +and +no +streets +I +subject +Rogers,Fairfax +where +as +he +Mr +no +projecting +if +and +what +to +Trust +tie +to +punishment, +sickly, +honors +six +can +Hi +kbo +industries +couragement +of +loiuiuation +and +situated +instances +the +represenTTjnheelthful +there +main +that +them. +into +gone +coulu +following +a +or +used +years +Minister's +is +tained. +genuine +consider +a +on +They +twenty- +the +Ik* +do +which +of +fail-tir- +cussing +make +is +Strike +uon +eagerly +France, +ot +upon +are +of +substance. +most +the +Pope +compose +"of +me. +Stsseton; +F. +become +is +plate +be +a +It'contaius +the +occasion +strange +near +adequate +were +woods +foremnent +homes +anxious +$5,300 +Neither +gowned +Poles, +venerable, +fair +and +that +John +attracted +of +and +on +weapons, +gittin' +our +baa +of +cultivated. +praperly +James. +the +tbat +the +is +of +would +Germans +to +was +tho +it; +Il +arrived +eight +on +Range, +tha +assigned +In +the +The +Suppositories, +obtain +Deputy +educa­ +I'. +ih·· +which +of +aonia +sho +each +decision +its +passage +maximum +siredl +through +the +corner +delivery +consolidated +mouth +showing +Influ- +cases +a +ents +be +numbered +and +entitled +its +his +on +life. +yoursclt +of +I +received +oath +lights' +bow +me. +department +contrary, +derstood +but +Telephone +214 +luxuriant +pianos +a +their +was +snap +tc +or +ed +to +Shaw +986- +past +a +ins +flying +numbered +bot- +she +importance +the +to +and +were +as +motor +shall +north +Barrington, +a +learn +city. +"So +of +instant, +She +exclusively +12, +to +one, +the +and +ot +tn +opposed. +governor +drovo +in +consent +and +for +quarter, +bad +for +tribes +1 +Is +by +every +That +is +date +of +avenue +are +a +more +her +blue +Cook. +improvement +captain. +to +Dr +nations +nothing, +run +provided +deprived +natives +blesses +that +which +Chris- +as +winner. +been +opr +nr +been +l.l +thusiastic +were +firm, +scat +their +first +for +pretend +another, +"sustained +50 +re- +more. +ret +lions +Hie +the +yards, +age, +or +Farniington, +He +general +it +the +or +Act +I +others +denounced +and +at +the +he +really +Baptist +extremities. +model. +Miss +to +all +N. +control +to +Yoik +whom +front +of +expected. +a +tbat +Church +tbe +Importance +up +citizens +past +144 +sides +and +their +forming +many +and +the +In +pair +and +In +mort +and +thence +went +day +for +little +OF +for +aubject +for +Mat +Gladstone's +prompt +sheet +and +baby +ment +was +will +cnanges +of +the +provisions +spend +least +tercomerofSec.13,T.1N.R.15and +i^irst +the +majority +without +other +as, +ness +more +Road +of +The +had +Union," +Lord +of +at +is +Sicocd. +large +boys’ +tain +amount +an +equai +academic +Index. +ca- +degrees +making +this +will +three +about +in +with +a +a +great +D. +be +war­ +serve +into +shield, +and +Company, +qualified +signed, +with +stall +(inui +Job +or +the +dog, +three +United +blue +he +of +itself, +besides +It +ve +a +moantoini +23, +corres­ +pily +and +in +the +Shuttlewcrth +of +their +C: +the +of +by +life +of +H-r +the +Nation +Justice. +John +who +N. +in +does +will +Court, +instance, +rens +favorite +K +LITERALLY +Yurara +form +time +new +shoot +more +to +day. +which +that +you +he +diminutive +upon +and +less +two +were +were +tlwy +urged +Tax +along +he +he +supt., +Ilying +rebel +the +ailing +Iho +Water +in +espe- +or +have +Tho +schol- +articles +one +all +superior. +Congress +seri­ +o’clock +who, +to +iiiir +its +A +of +for +adventures +some +is +should +class +Thia +rebellious +now +proceeds +or +l'avel. +the +for +been +aad +tude. +other +as +had +is +nature +upon +said: +is +spoiled +when +ilairy +sell +the +C. +that +farm +JBSB. +influence +125x125 +, +regular, +than +however, +to +most +posit +Salt +four +during +and +said +field +Main +clean +tism +io +unerringly +and +paper +arrogant +Returned. +head +las +about +This +time +taken +to +its +have +e*tent +the +doubtedly +the +a +shellac +which +lie +with +E. +honor, +needs, +of +plans +kp.ew +had +is +street +accord +was +rather +more +cannot +is +1; +with +suppose +Mr. +the +ago, +Commission- +fights +V. +the +stitution +at +day, +Howard +tell +squads. +secular +hauling +better +inches +Court +with +the +he +James +city, +whose +this +friend +too, +In­ +edge +A. +given +of +he +becoming +and +for +see +In +the +it +of +restored +Americana, +low»ft +Ticnton, +by +at +h's +Tbo +will +in +at +to +a +society, +possible +a +few +people +stillness +any>*idy +ten +day. +a +HwnUt +all +relate +ring. +denomination?, +and +Land +expected +secretary +any +with +lesson +iSr +look +streets, +no +But +down +a +(155), +is +is +3 +navigation +to +the +his +G +. +where +Lynn +its +his +and +llf +the +nubile +a +unknown +to +be +came +by +a.'.d +ser¬ +falsehoods, +the +with +was +and +ali.mt +chives +its +tarnuniy. +herein +itutionality +others +he +whose +the +because +Block +publication +perfect +the +ability +for +will +entered +Before +the +one +fode +was +this +Lourcna +Grady +of +man's +that +the +showing +forefathers; +W. +be +plan +all +the +hours +Va.) +two, +leases +a +a +cape +would +been +twelve +especial +saw +do +a +of +der, +the +but +this +the +of +the +xiety. +to +and +has +of +behind +the +were +consid- +with +that +lame +rm +stead +middlo +support. +in +(Quer- +have +is +with +a +agency +(he +of +and +around +Foote +The +francs +the +the +me +as- +it +sub- +they +of +annual +get +the +republican +cent +vwllh +of +sen +residual +the +payers, +found +Uuitoii +county, +barrel +know +but +would +at +the +to +were +candid +miral +LAN +over +well +section +to +the +from +purchase +into +papers +at +the +windings +the +every +another +oiily +for +abyss +several +which +which +north­ +also +Peaks, +ion +Dyspepsia +.,. +the +Shahan +alarm. +KUGELMAN, +Sun. +and +cross +rge +is +bags +pledges +feet. +alphabetical +Unfortunately +^ +in +sho +so +dustry +internal. +a +kerosene +neither +to +a +gtteo +civil +of +nations +the +with +third +the +ho +of +and +unhealthy +2 +than +— +deem +to +dresses. +T. +as +be +various,parties, +was +said +A +be +expected. +who +the +by +be +his +months +he +to +me +•pinned +citizens +scended +came +to +stealing +having +cannot +was +aviators +have +F, +Sir, +manner +the +and +the +be +ot +of +i +before +Mentor +tion +New +Gold +. +wasconvinced +skirts +note +a. +than +to +mado +control +interests +tii" +and +simple. +water.' +coronation +ot +to +of +of +of +to +as +sions +of +h.s +Handkerchiefs, +and +would +history +the +expensive +member +by +him. +that +(4), +time +in +an +10 +Iowa. +atiii'iilyaeciuiiig +both +iti- +buy +the +be +then +ideas +a +raised +tongued +saie +veteran +that +to +it. +Washington +officer +remember +Charleston, +France +living, +at +.and +not +of +in +was +fifty +was +spreading +six +to +racehorae +limbs, +of +done +of +renter +seems +olimbing +and +with +it +and +and +the +gun, +neighbor +to +by +of +it +time +bo +united +gel +more +in +upon +lie +he +bia +never +former +Is +on +that +Many +thence +his +the +(i +membership +as +claimed +to +still +their +drunk, +and +tighten +choly +oik, +of +here, +alight +and +i +National +the. +us +is +in +it +but +dared +so +der +fcgard +sound, +ot +four +that +Ho +state; +the +made +blockade, +Rev. +thev +garded +iu +He +fect +Ihe +and +ball +entire +eraL-lcs +I +bothered +provided, +fifty +plan +Surely +or +are +trivial +the +the +season +Carwn +if +to +ity. +pour +t +the +Attention +great +John +remaining +was +The +in +the +to +North +whicli +Immense +under +be +doing. +self. +with +we +beiore +money, +broaden +it. +stock. +their +callocl +man +and +willfully +day, +with +and +u +select. +Alliance +rendering +sive +is +of +thought +he +one, +been +was +Streets, +the +keep +)«ar +refuse +the +are +comes +produc­ +document!) +When +dogma +tho +the +around +County +of +As +$9 +Ho +upon +541 +the +so +*12,oflo: +one +have +for +plat +then +on +won­ +date +to +construction +whistle +and +When +shampoo +was +mv +friends +only +dren +of +a +including +calling, +the +in +back +the +labor +of +with +these +where +ferwwoa +and +men +invent, +flood +.40 +northeast, +a +to +beneath +last +and +Butler +where +the +proper +other +for +8: +is +metals +A +when +the +should +to +BaY.M.iTbaebor, +of +and +the +but +been +does +made +the +j +cannot +tice +more +the +ita +18W>, +to +to +mainly +hours +law.) +is +wheat +of +\>y +Is +Reich +the +about +J. +at +'n +victim +other +priiduc- +the +blown +had +clothes +frost +ment +the +keep +was +its +Eighth +urn. +for +place +and +spends +Wide +have +it +attru-ted +wide.being +Libraries, +g +ment +However, +Nos. +heen +1st +crossing +proposed +the +able +lowest +the +none +Nor +to +all +and +and +to +that +onward +Roanoke, +of +treasury: +is +yonr +and +a +of +A +small; +1 +the +at +two +troubles +goods +as +liot, +the +much +addressed +by +were +receiverships, +tent +mas¬ +but +with +supply +ready +cree +defense +banker +1 +of +Mr. +steps +by +is +along, +the +Fletcher +the +horses +ered +Missouri +at +suf- +can +the +put +Charleston, +to +premises +battle +or +A +to +Tanlae, +accomoda- +constitution +begun. +solely +population +of +npon +pilgrimage +a +up +been +for +south- +suiUirs +the +certainly +people +Israel +dress +districts. +the +any +day +trace +authorised. +who +fact +which +but +on +every +the +Union, +smallpox, +individuals +lot. +been +that +away, +shake +his +the +system +the +ui +about +an +good +experience +(Query, +therein +of +before +this +diamond +of +in +S +On +fortifications, +from +and +be +the +The +the +the +and +of +cause +can +t +fall. +1: +j +I've +to +without +case +H +cer- +the +Fairbanks' +feet +wa- +at +Wilson +reporting +of +stake, +own +required +and +ami, +sheltered +each,and +news +The +_ly7.14 +Bias +the +of +on +the +which +in +not +w* +nis +the +of +when +Biting +than +of +bring +the +of +observances +tal +Brandle +Intend +call +month, +Again, +ry, +or +frr-.ni +That +dimensions, +appear +of +double +shall +$160,000,000, +lonely +seen +paying +thought +It +came +no +sharp +of +the +York +evcry +orowncra +,aod +the +you +is +insects, +The +th- +he +marked +with +that +the +ceeded +this +at +tempera- +signs +incorporated +or +many +County, +State +in +they +as +n +I +For +you, +eight +contradiction +six +yostorJa)', +is +47 +were +should +rs +trade, +house +Lacroix; +of +others +now +tho +or +Pride +If +of +communicatic +on +It +City, +city +into +Act +the +consideration +who +name. +the +p. +of +start. +Butler +Prof. +ebon +has +their +which +ment +moved +at +art +Two +testified +dam +at +on +j +beef, +to +j +compelled +useless +Is +sacks +was +to +a +water +re- +or +levied +the +on +took +the +a +thereof, +Day +season +through +legion. +to +onsequences +the +the +use +primitive +oi +Pacific, +There +Mrs. +WW +from +not +purposes. +Templeton +over +was +verstreken +humility +covered +ing +The +culture +ninety +been +second +of +of +of +the +California +never +loan +- +to +are +xatiunof +until +all +If +told, +do +the +a +enormous +conception +The +will +entitled +number +he +present +steady +mid +Unlv.of +the +the +the +about +ibia +on +with +decide +Secretary +cent +Rouge +otherwise +refer +Gen. +Iowa. +loomed +claim +should +had +of +speaker +N. +garet +Geo. +Morgan, +or +Man +me. +Cady; +They +whether +were +of +dozon, +tance +to +for +timore, +for +extends +Thurman. +in +ailment +about +construction. +had +recording +these +iu +oi +selves +series +taking +The +!«« +serious +of +Haymond +h +all +gives +entire +a +and +pro +a +with +her +the +the +would +about +on +did +ns +give +undisguised +army +and +I +g +hereinbefore +thence +fluences; +the +identity +It +act +succeeding +farm; +lowing +the +having +and +in +practically +childless +top +a +sap)ied +the +their +mon +in +regrets +affairs; +hour +on +to +in +spot +is +conditioned +to +is +everlasting +mostly +unfavorable +on +life +formly +weddlhgs! +aud +Kansas +old +be +they +stepped +the +situation. +proper +Ha +to +more +proceeds +This +B., +but +solemn +3 +and +they +I +burls +young +concrete. +Poincare +; +a +the +Waveland, +to +and +wheat +flour +involved +the +othcr +will +upon, +deraiicd +the +the + +already +world, +way +ting +always +made +sole +tlme +could +bark +of +Oen. +over +the +east +road +include +it +body. +out +fur- +The +The +of +water, +a +any +Roman +Yesterday +the +or +4000 +scarcely +"U. +. +napping +Albert +and +though +been +new +have +stipulated +and +bamboo +time +the +spend +at +easily +as +hair +people +H. +South +(.'rnnkaid +already +White +tttnd +game, +the. +south +anywhere, +of +It +series +for +7th. +Capitol +tives. +plain +hour +tinent +country, +people +tho +a +south +potatoes +woman's +and +die +vital +sight, +on +ite, +o^ +posted +alleged +the +but +paying +Rocky +ih +nnd +the +the +this +Hundred +too +»p +and +opened +charlotte +purchased +that +just +employed +no +turned +expenditure +for +agent +uttering +him +Lake, +his +out, +that +classes +the +of +tho +award +$46,5*00; +is +for +and +into. +regards +before +him +cover +active +authorize +are +couutry +Moore +10:43 +stitches, +give +short +firing +and +of +relieve +took +a +at +pres- +one +the +to +to +called. +The +sister +to +power? +whom +glorious. +campaiign +countenance. +in +the +did +have +otty +am +and +es +thence +linquished +thereby +cost +at +tough +the +as +Declaration +of +house. +to +supper, +him +friends +persons +of +save +say +passed +years. +ampu- +his +which +by +of +-nttor +"wherein +of +With +that +1 +hr +of +with +on +largest +including +at +nitrogen +sorrow.some +they +years +Utter, +order +to +levied +enough +to +as +almost +corner +parts. +authority +distant +(ii.iiBti +the +haps +placed +Church +morning +described +take +business. +the +was +i. +devoted +came +scriptural. +year +of +named +Dexter. +established +aaada +full +the +State +deep-seated +im­ +of +same. +in +unable +steam +namely +equal- +all +imparting +When +tapestries +coals +high +them +character +easy +kept +on +hearing +patent +come +good +year +change +from +the +White, +rocord, +act +caution +in +the +strong +Groseclose +at +oltice, +new +recompense +diverge +5335 +of +was +E. +the +83D +Master +my +them +for +$2.35), +the +growing +building. +Leesburg. +price. +Pasadena +up +unless +ore +it +once +Poincare's +a +give +building +who +anything +tbe +unfor- +giene, +adopted +re¬ +the +or +returned +say +are +all +him +whoever +of +lived +wagon +island +the +Sam,ucl's" +to +.lames +to +the +the +prisons +bud +8th, +laws, +as +the +to +and +the +well, +went +both +years, +discovering +of +Hicks +competency, +and +he +for +Joke +being +those +a +two +witnessed +states +some, +to +suddenly +sure +a +itn-ii +tho +have +a +her +next +assurod +charge +concentration +saw +ol +Mr. +were +ser-ving +right +Mr. +house, +sup¬ +a +jumped +of +the +its +after +legialation, +door +and +gun +of +they +moisture +yet +farming +eczema +this +Royal +city +is +to +weighed +that +until +have +only. +not +Rowe, +Coles +be +for +will +boglnnlng. +this +aces +—Flour +use +the +Oh, +chicken +. +ports. +Peter +of +The +given +ill +shoes +name +2 +places +of +with +thc +of +site +upon +second +the +each +W. +wbich +Greeley, +he +marked +perhaps +Company +the +case +advice +knew +ble +ed +to +nod +entire +wbere +is +an +also +deserves +and +pids +profited +w +"snaking" +on +in +any +Fair +a +a +as +there +be +elsewhere +hundreds +2 +is +fused +in +and +into +married +several +As +him +not +from +by +promotes +book +western +money +only +distinguished +be +dis- +number, +the +the +for +at +strengthening +prepares +mul +caa +care +persons +the +cut +mainland. +Their +all +for +away, +cannot +and +publications +bank +where, +&.e +reliance +graphs +of +cago +@ +enable +Grand +damage, +on +they +the +did +said +the +putting +swer +tha +of +it +plainer +but +strong +ln +man +at +marily +Medical +bat +door +out +rear, +soldiers. +Mr. +In +about +account +a +In +troubles +first +camp. +"kind +Any +done, +once +viz.: +and +turtle +however, +tbe +mand +eye +to +Wateree, +a +and +would +every +and +of +give +648 +deed +part +with +is +power +Nathan +are +over +uur +tried +who +years +has +fish, +tho +l2st +a +invited +and +throat +County +pleat +fell +gress +ior +being +for +whole +of +three +home. +their +other +tion +of +and +sM +do +her +aaentlal +as +intrepid +Jack-of-all-trades +bak4 +I +shrieked. +til +were +her +"ti +coudi- +measurement +delivery, +witn +each +recognized +lots +went +Denver +to +a +purposes +men +of +to +It, +good +in +be +and +Lawton +gold +and +brought +handsome +ever +Railroad, +favorably +same +the +In +over +of +to +Is +elevator +pork. +the +predict +sweeping +trust +what +Juo +or +pearls; +season +the +A. +and +of +light +event +in +it +of +from +a +emphatically, +it +would +may +to +Monday +alone. +constable +that +that +Bible +a +Euch +mid +ative +In +Company +far +save +referred +is +on +want +lots +s +the +niles +a +IOI4O. +came +to +to +the +left +ric-lii?e +and +inside +hunted +voice +gins +of +run +- +injury; +the +as +Greeks +K. +into +Spotswood +recuperative +remedy, +markets, +and +the +liavo +Mrs. +kin +is +waa +act +to +be +sure +Bamberger +ator +animal +small +appearance +claimed +the +ef- +aud +and +aro +all +really +at +the +and +state +the +as +Danville, +amendment, +of +its +an +tone +part +is +for- +Storey +Fabbrige, +Frank +Gaines +few +his +in +of +kuown +an +housewife +chapter +New-Yoi'-, +"We +Soudan. +was +boat +of +tree* +bonds +since +her +where +Section +woman, +feel +who +We +individuals, +by +lrtn +interest +North +So +of +names +consider, +aying +market +up" +Tt +on +are +the +field, +the +franchises +comer; +all +elevators +priest +thence +Hethcrington +is +it +Our +ital +outfoot +extra +be +having +to +machine, +all +to +it, +a +Whillow +which +sent +will +de-- +opportunity +128.74 +by +to +substantially +and +and +pr +the +mea- +from9a.m.until2p.m. +nearly +a +sorry +soap. +who +cause +Is +my +ticed. +aforisald +of +de- +Peck +con- +the +mian +cream +< +told +playing +assistants), +know +authority +refinement +person +al­ +country. +tron +court +a +Supreme +wood +kind +cereals. +the +tbat +so +the +same +liked +Itlaod, +back +New +The +pnuy +felt +ing +cornstalks +we +New +58 +to +The +the +had +for +. +shape +of +does +of +sav- +deal +Provo +at +containing +equally +the +to +ot +his +genius +of +unless +rear +not +ded +already +interest +became +hod +to +about +pear +has +present. +L +ports +this +crutches. +uary +own +one, +Cd +after +wind +waa +son +them, +sipated. +screen, +my +ture* +then +James +entry, +and +the +whatever +game +most +of +nartlallv +tra- +with +consists +The +on +learning +were +newly +ladies +Ronald, +realizing. +and +the +3. +river +with +the +to +pistol +suffering +about +Fe +development +in +agencies +connected +with +were +Justified +yet +decrease +dull +rebels +',Harding" +rebellious +In +or +the +and +suppressed, +nearly +the +any +thence +the +the +the +adjusted +uel +and +number +having +appreciation +tba +lo +eastward +her +and +do. +the +has +and +gold +by +suffering +outstanding, +proportion +and +the +in +at +it +devote +whether +ex +borer +thickness +could +mine +Italians +Recrossing +River +Negro +to +be +blood +It +were +the +approaching +Or- +such +any +mates +them +Hat +was +No +at +deemed +cnuff +:That +Maine, +large +Lady +provide +took +ears +the +Gentry +out +the +that +shape +with +of +is +very +the +kept +So, +the +Bixby. +Cumberland +their +In +lower +a +and +40° +and +of +dispute +the +is +ask +Gold +secretary +wide, +Baker +and +to +requiring +been +vVe +Such +how +Waterloo +privileged +found +extending +churches, +the +principles +a +less +to +13, +welvc +of +uinh +the +line +providing +ciety +and +day's +during +motor +it +to +If +nway +import +Garibaldi +her +la +the +icg +whether +«ame +lien +swept +Hovgren, +cross +It +bo +as +knowledge +and +years, +ilill'nent +candidate +had +mission +might +will +Tuesday, +from +not +members +toe +c. +was +Bevei +are +tho +and +ments +the +in +change, +not +After +7S.3 +of-said +precinct +trans- +urder. +Thoy +a +bill +been +restored +taking +as +of +the +realize +build +els +especial +But, +shall +total +wbeabewent +tes +of +to +are +office +limits. +estate, +$230. +tion +bone +Virginia. +section +and +to +dec- +law. +takes +be +theCit] +telephone. +Mr. +could +be +time, +superiority +others. +almost +Washington +edge +of +nice +is +the +larger +of +do +mandments, +production +to +the +they +dence +ex- +Then +This +of +marriage +preparations +the +tions +officers +Annie +Him- +Groseclose +Cla't +cafes, +be +that +John +United +lady +perta, +spite +statesmen +the +a +From +es- +beNuissmooed +chronic +lass, +Wood +thence +and +the +lar +nature +continue +whole +whether +border. +them, +body +member +kinder +we +always +act +and +with +< +persons +touches +Why, +Buchanan +see +mauy +his +it +comfortable +and +last +emigrants +Burlington +corner +ed +to +the +Northern +by +from +occupied +in +to +only +"Tlio +variety +weariness, +cent +and +treasury +way. +poor +representatives +Fair, +haste +price, +should +widow +already +legal +tween +river +of +the +then +first +mttcb +now +making +having +\V. +form +meal +to +White +and +■eg. +and +elevated +heat +in +Sheboygan, +57 +.ta. +growth, +held +and +the +Red +by +address +little +itspoisons, +Not +that +Gevernment, +will +informed +Soap +R +he +to +the +rational +waa +of +which +by +optional. +he +griinage +this +We +would +sides +purchase +of +frightened +building, +effect +was +Charles +pat. +this +the +traveled +regular +boys, +deg +huddled +his +givo +the +an +obviate +that +lown +than +accounted +were +whose +come +on +Is +thoroughfares +was +apecial +between, +nd +drouth +company, +Tho +dis +papers +should +ington +companied +89 +the +is +his +placed +ammonia. +trolley +whlch +He +this +viz: +late +old +were +ful +12. +N. +thousand +it +and +Federal +can +structures +Well, +it +Here +slow, +llith, +halfof +pleasures +con- +done +plain +of +Co. +the +membors +and +to +Im- +complished, +feats +base +be +strapped +not +Board +of +bushels +appropriation +for +Hambletonian, +bis +its +Rowing. +and +Ibis +Urbin +descended +bonds, +me, +had +in +not +<' +east +his +the +the +Ibe +ce +light +imperial +inui +of +as +railed +instead, +ment, +day +the +Commissioner +driveway: +past. +ot +only +a +unmolested +which +courses +festival, +season, +for, +us +weighty +his +now +ingly +the +extra +70 +the +Mining +who +Delaware +merchantable +below +con- +for +and +track +and +thence +At +that +think, +to +the +Wilder +tribunals. +to +will +be +this +Degas. +does +seek +debentures, +otherwise +interest +do +Commonwealth +was +Santa +the +act +of +appoint +or +place +Court, +Susanna +the +ledge +other +it +Philip +this +an +btwe-eu +thereto +if +chosen, +of +the +the +l)e- +Col. +those +to +enough +ered, +claims +ness +during +offices +paper +and +the +Sen-a- +and +even +sheer +thal +his +dedication +revenue +hand +wc»t +Corn—receipts +tempting +with +she +New +would +SoO.OOO. +intelligently +Commissioner, +in +content +whether +my +were +States. +to +good +Lots +and +talk +and +the +as +consist +Columbia. +¦ +ways +of +of +the +two +wiser, +which +that +that +and +on +bunch +see +I +tion, +would +and +given +from +to +hunted +man, +Though +Slowcome," +frightened +and +was +.ours +and +been +way +prices +special +Judoa) +a +well. +femafc +! +what? +and +auy +and +took +each +St. +of +and +from +rototof +considerations +and +wLMi +vate +the +of +stables +blood +and +an +message +the +on +justified. +Biatiifaa +such +ot +yet. +they +it +In +at +maneuvers +of +would +Tbe +Seventv- +cliff +had +in +total +time +with +larger +of +private +proces'j +ce!i: +under +to +cheapness +are +In +but +will +was +can +convert +construction +ir +combustion, +and +reverence +for +also +get +land +had +Tony +would +of +is +lobster +¦ +as +tended +Dollars +and +orders +it +joint +by +stand +phase +tions +1902, +our +from +prize, +financial +do +pelt +freight +aoil +us +jealous +Red +living, +case +as +tt +iff* +up +men +sub- +Hod +appeared +that +for +orna¬ +that +dersigned; +to +from +animnal +of +times +and +as +or +to +"meteorites." +or +thanked +has +Napoleon +looking +Am- +big +fate +daep +perfect +the +"I +leaving. +the +the +piece, +the +open +will +represent +think, +of +the +uoarly +cf +surveyed +trust +addition +were +the +to +have +1 +privilege +fair +of +He +the +the +Statea. +avoid +any +to +out +with +ing +call +testimony +jured +ease +this +in +the +sometimes +licking +up +of +whole, +to +explanation +large +W. +at +tah,' +in +clospr +tbo +be +wilothat +Heckman, +and +the +eill +turn +company +Nineteen +our +but +a +sweet +l.ord +good. +suffer. +Mrs +days +girls +negroes, +Fiarm," +of +on +have +grow +shore +But +agent +year. +close +said +political +In +the +representation +the +ten +that +decking +will +pointed +his +and +concessions +met. +interests. +Sewall +distinguished +are +Clarence +and +eight +?" +Congyss +non +the +steamer +Greenwich, +and +he +for +and +war +with +in +to +employed +Ignorant +made +reason +avenue, +he +to +number +lot +and1 +- +svery +miles +the +pital. +the +Rivera +in +The +tlio +-- +Wl +of +ito +of +raiue;said +the +olumbia, +June +that +leadets. +on +of +with +is +smoke +other. +Flomington +settlement, +the +the +should +There +purposes. +that +,grilling, +at +Phoenix +ex-priest +ith +$500 +that +mayoralty, +and +the +utter +.r +adversely +unpaid, +a +Rtver^ +thatanywhere +must +.iuts +in +have +T +not, +and +of- +bid +r,ce +for +sure +and +with +am +the +castrating +ago. +and +onco +subscrip¬ +member +make +From +at +Bar- +one +While +2»u +necessary +da__"ht»r +ungraded +was +for +Block +of +may +any +- +1 +all +to +was +Nor +The +ta +of +the +all +at +in +io +cruel +. +that +is +We +generally. +estate +ets +people +der +also +on +courts +cen- +a +of +has +his +cease +ts +In +had +Love, +is +These +there +erty, +at +Brunch +great +shall +5 +Madison-ave.; +the +in +resignations +perhaps, +the +teachers' +feet. +leave, +cottage +here +treatment +strength, +Id +cused +the +haa +Cross +Democrats. +Two +M. +cause +vote +of +And +tbe +lie +of +from +Hoag +Mason, +8 +is +bunoh +(3) +the +Kaiph +some +a +the +years +El +residences, +la +would +original +and +the +of +quietly +features +ia +dent +sum +rica +And, +votes +twelve. +Lily, +back +that +morning +one +erty +publican +enjoyment +feathered +number +voted +the +arE +within +heavily +or +increasing +improving +trar +othdrs +look +now, +inustl>ox +ex- +the +to +the +Washington, +in +the +recorder +I +taxea +the +as +otber +.25 +forty- +tn +called +right +10-lb +hats +beat +or +were +were +settled +to +Grand +black +and +drinking +ty +the +and +fact +accident +never +concerned +would +looking +square +settlers +ward +in +ha.^ +on +bad +but +ofJuly +wife +al; +exagger +accept +year. +sell +stirs +plant. +altitudes +her +of +running +General +open +declaring +the +the +appealed +may +celebrated +has +splintering +bia. +wears +every +bllt +absence +Court +If +by +over +iriends +authorized +at +his +causes, +been +any +with +word +of +centre +also +solemn +nificent +most +the +and +acted +Sooti +credit. +Elston +thence +treaty, +pur­ +the +the +as +thepresident +peace +of +ed +suffering +But +at +keep +lie +which +the +said +of +in +faster +freely +for +Mr. +sent +eight +banks, +diversion +:. +a +ilown +•namely, +Joseph +for +papers +JJocalsin +He +chaps +vil­ +that +invested +or, +grass, +a +towards +mur +to +quantity +in +and +260 +tell +ideas, +of +one +and +much +in-tam··· +the +send +that +would +goes +away +vent +city +until +of +Miss +value +San +fession +of +are +features +message +question +"commencement;" +by +contributors, +full +JelUi +regiments +Lee, +taken +melancholy, +Columbia +all +were +war +ensure +yean +of +from +caused +bul +in¬ +(including +for +want¬ +first +sider +a +by +as +decorated +high +of +sorrowing +Ger- +to +track +tbe +of +prising +party, +can +bean +I +eheeta +loves +lot +«'«-ut* +particular +.. +even +record +for +meeting +ghost +by +informed +harbor +ln\ +with +fields +base +of +the +Ed +share +spent +the +yellow +losses +railroad, +bill +C. +Sec. +In +catastrophe. +removals. +of +bekauze +is +the +tnent +Riddlobergor +tree +prior +driveling +whoso +$8©10 +stands +here. +and +it +so, +such +he +resigned: +case +have +under +delude +Ramsey, +tas +ycur +of +intercept +in +on +himself, +I +additional +authoritlea +get +but +were +J. +mention +Chicago, +it +our +which +on +mis- +errors +them +line. +Dujstan +part +then +Homer +The +It +powers +of +lat- +of +are +medicine +that +this +for +controversy +to +and +reremony +guardel +future, +Christian +in +valued +one +The +honesty +hope +in +Washington +disease. +an +thinks +or +the +she +portion +of +own +the +Incident, +and +in +railways, +Mr. +of +my +annual +be +the +the +Consciousness, +upward* +there +is +at +the +graaa. +Newberry +our +ill +principal +the +a +place +running +was +the +in- +struck +possible +was +hearing +utterance +b'- +The +by +and +Wichita, +ripe +South +half +Whether +it +with +the +to +captors +Assembly +and +crop, +new +alarm, +was +two +the +to +for +grow +held +R. +yeast. +abide +the +of +gossip +Judge +cutting +the +be +much +lv +placed +parties +gress +of +Island +village, +feeding +bound, +HSBBI +be +report +for +' +to +donate +stalks, +a +mem- +their +followed +satisfactory +secretary- +go +and +doing +Kansas +so +twunty +to +he +nnd +character, +been +graduate; +look +capture +nanci +was +earth, +of +in +cure +route, +I +manifestly +John +tha +street +prices +the +bill +curious +East +series +you +for +for +The +larosa +there +ltrn/i!. +drunken +Martin +receive +Custom-house. +and +unwashed. +the +; +for +manifest +ao +on +your +famine +establish +States, +38 +aixl +death +Greateconomymaybe +itute +by +culating +as +then· +on +of +not +Longview +of +never +cavalry. +true +may +was +the +every +aubaUtuie +P. +ance +fcjirot +the +and +afraid +friends +about +herein, +danger +are +statomeut +day +bowels. +end +Taws +and +prospect +$12; +by, +necessary +of +the +the +just +virtue; +meaning +watching +Recovery +the +Salteie, +neglected, +Bennett +for +cleared +thence +and +his +ror +an +he +showing +There +index +tho +the +tion. +Rica +party +David +few +fin +apt +from +importance +effect +of +gaincd +welcome +given +goods +fellow. +and +would +a +years +of +Mclnnes. +recently +for +collected +Cool +a +of +east +not +agreed +This +District +ON +wo +fall +his +men, +deliver +none +aa +the +assistant +them +bush +offered +an +for +revilers. +wot, +a +oa +using +1 +already +(steamboat) +prayer +bettering +With +this +736 +obscurity, +until +ono, +to +hull +his +of +I +and +cares +day, +and—and—the +has +when +iheir +A +which +denly +to +for +ortractof +the +Was +urgent +abstain +and +and +on +Wellington +the +for +mentioned, +said +for +an +to +otherwise, +broke +apDlicatlon, +tho +hurtful +ihe +ders +diately +by +to +back +archers +absolutely +of +of +Kyker, +buying +coveted +the +In +Vandalia +eoerss, +Westmore¬ +Id +Nye +a +themselves +in +no +of +if +heifers +“Did +subject +House, +F +in +will +Rhode +quiet +very +of +Manypenny +to +to +com +for +we +be +ar¬ +earth. +excitement; +roofs, +the +purpose +piece +dizzy, +second +the +costliest +in +the +of +Abe +graphs, +garages +L. +stuge +blowing +or +gome +ing +notlfing +ushered +of +ment. +effect, +con +a +Lafourche, +dignity, +of +spiritual +cost +that +all +ticket +trade +shown. +the +of +the +the +the +After +Jepway, +4 +in +wasted, +Savings +time +corporate +Henderson +The +necessary +fairly +City, +than +t.-rui +and +sustaiued +appointed +which +that +this +prey +87 +is +this +attest¬ +close +his +be +in +the +; +an +ject +as +For +brightest +to +that +required, +death +compelled +policeman +to +with +In +united. +in +medium +offer +in +blues, +victory +contribute +lie +New +Tn +fellows +idea +as +yesterday +half +Heaven +Mark +and +drawn +Michigan +Stonington +and +soldier +the +an +but +have +Court +pivstes +and +assisted +will +Susie +aad +Ant +Hannah +remained +as +convincp' +ang +alcohol +dog, +reject- +with +to +the +on +pay +courtesies +of +prices +to +noon +country +tho +"skipped," +earth +In +From +any +the +haa +entered, +sion +Roardman, +price +ravine +sum +ity +made +and +snow +right +being +enjoyment +most +criminal +very +have +where +her +where +beautiful +feet +near +security +he +phces +yesterday +is +- +and +right +because +xvore +Exposition +the +the +is +the +for +reputation +Not +M, +aud +made +watchful. +dis- +t© +skeptical, +a +time +did +well +of +poor +latest +When +the +the +Commit- +and +wrecking +and +proximity +ideas +l +143,000 +his +west +Mr. +beneath +have +P +labor +deemed +'ieans +prevent +to +marks +Commissioners, +do +chine. +paused +a +state +17 +SS. +It +down +very +died +you +after +stopped +distant +enormous +intends +has +and +from +first +the +McCbessnov +I +to +for +few +advanced +cod, +It +of +wonder +. +and +the +be +carried +Virginians +the +of +the +Mrs. +apply +oollected +tion +This +forany +She +was +the +with +separated +speed. +other. +We +what +the +Ihe +need +Executive +my +hlm +the +Oregon. +municipal +voted +said +an +eour- +week +of +aa +size +several +taxes +Mr. +THE +S +at +IJazen. +st +aside +meat +confirmed +all +Ihe +keeping +low +Schley +strength, +battered +caae +have +if +F. +iustcod +earth +important +stable +the +number +house +THOUSAND +thence +before +less +will +gratilicd +Mountain +Not +this +a +sad +nt +American +States. +farmers +from +possibilities, +are +of +the +tho +, +C +that +her +part +have +of +''beggars +a +a +the +and. +the +Great +or +contest +that +in +make +Indiana +Depart- +was +capable +which +some +had +in +In +they +it +Japaneso +at +going +these +n-ady +the +their +tbe +You +go +per +to +as +old +really +was +the +20. +efficient +Things +could +during +who +various +of +who +got +la +bark, +evening, +no +Dr. +rebel- +tbe +tbe +but +Iloy- +trees, +as +at +make +York. +the +of +tho +to +east +Tho +interests?” +is +be +this +atone +waiian +Alderman, +boys +stantly, +a +they +sijuirU +in +t +be +In +slack +now +work +though +to +similar +Czapkay’s +ser +many +I +and +that +child +in +first +Ames. +and +$1,000. +outatandlng, +principal +boara, +do +equally, +was +benefit +Aruaise. +traveller +as +I +had +have +East +blossom +stock* +ordered. +tho +thr.t +off +first +to +self +tho +The +of +ripe. +i»nd +ter +tiff +were +. +the +that +to +Italy, +the +established +and +over +of +Well, +stopped. +of +was +boiore: +wonder +concerning +the +ol +of +He +from +Laurel +it. +they +deposited +parts +on +friendships. +exist +tigation +circulit +of +friend: +strawberry +well +become +or +electors +the +if +Is +the +and +Presbyterian +and +Benhayon +tbe +silent +and +and +States. +any +of +it +300 +During +fishing +rule. +sels +aged +will +no +her +thousand +is +the +sum +or +some +Republican +system +Ih-ainnont +and +as +pearanct +patriotic +were +authorities +and +which +into +J. +agreed +assistants +dropped +the +to +have +dolls, +La +its +crop +in +of +tinies +the +may +of +the +and +of +of +to +and +a +wedges, +particular +young +A. +before +never +see +great +afterward, +with +damaged, +burst +so +profession +Senator +claimed +members +was +a +nblo +W +edifices +Into +mt +the +aftain, +and +good +Supposing +to +fanning +case +called +between +his +ranks +and +and +e +ferior +inning +last +go +and +as +Fenwick. +1 +flags +a +it +$7.00 +prevent +The +Again, +say +and +our +than +will +the +her +section +ach +rd +the +accounts +it +but +attract +aware +a +11 +Johnston +every +stories. +1st +Instead +in +Haymond, +other +and +before +the +this +of +thereunto +considered +those +all +no +revenue +Newtown, +We +dress +case +in +will +of +that +is +recom- +detective +those +of +while +y +bark. +or +England +publican +his +cir- +policy +properly +returned +diaphragm, +to +use +votes +nt +netft +straight, +in +$2,UUU,000 +the +fouu +until +teaching +and +no +The +doubts +and. +took +in +to +of +South +a +the +considered +skin. +draft. +prevent +to +A +lor +our +they +deceived +wei +them +in +that +of +of +cen- +cost +an +the +bribery +always +grow +aforesaid +to +advance +public +lost +merely +In +not +Seven- +and. +squares +south- +heads +sun, +had +¦eSOtag +The +you +Ceore +be +ii +his +tell +more +that +15.75 +thoroughly +knew +pounds +that +little +journal, +but +the +hundreds +.ont +seem +very +Of +the +the +can +try +few +deplorable +keep +themselves. +lenburg, +alarm +October +fa>«r +fellow's +cause +stands +semble +office. +a +to +give +usually +back +many +lack +that +the +T. +morning. +Saunders +publio +of +a +have +linn +less +endear- +of +cultural +and +that +demolish +all +carry +Mr. +she +work +has +lost +time. +file +10 +light +should +with +1 +States +the +quarter +after +less +and +to +star +officials +company +in +ue +examination +S. +inks. +2\jnstead +eye +tha +this. +that +m +put +either +these +Syiup. +is +economical +business; +name +needed +and +then +many +tions, +and, +appeal +thenceforth +plans. +inches +awkward +in +now +ac­ +purchase +sisters +passed +VW +to +stmnken +Virginian +there +sunshine +be +lien +lie +the +was +to +with +for +sixteen +convicts +In +maids. +get +Westminster; +came +good, +escape. +was +the +for +drove +be- +the +Jti +where +In +had +as +lively +been +a +tho +conceded, +I +been +It +follow*, +folio +company; +bolters +not +our +meats +like +want +soldiers' +markets +and +first +putted +the +of +of +sell +investigate +f +bilk +Richard +typhoid +often +building +said +of +the +Goff, +It +iu +seven +let +'.59J +soon +last +prohibition +psychology. +ney's +of +is +13th +wise, +Finan- +a +and +me. +"git +A +Washington +3.45 +MOfe- +the +on +weight +ear'th. +fireworks +habits +C«»ngr«»s« +it. +necessary +allowed +In +may +Markkt, +the +foreigners +Since +There +hi +as +returns +the +uml +upon +of +and +be +off +theater, +all +days, +during +that +be +1854, +the +further, +from +was +theatre +far +50 +hostile +to +a +aro +sends +very +into +in +well-lighted +given +is +improbable +of +third +a +North +spells +of +of +five +still +and +appealing +table +upright +Dich« +Ivgiiiiuate +of +bore +prosoects +all +point +together, +for +of +friends +commandery. +stood +removal +soil +or +land +took +The +same +war +sum, +give +beston, +Crowders, +this +schools, +them. +trosseau, +than +a +topped +and +Park, +for +are +H. +fact +is +timeis +Stephen +agent, +River +divers +which +-led +face +only +same +board +this +still +cent, +and +business +conflict +law +that +Court +sterling +kept +part +super- +21st. +tbe +very +legation, +of +potscttlon +a +Intelligent, +in +scope, +him, +includes +provided +Lots +said +trust +gery +bavo +me +profession +ship +doea +efficient +unknown +the +means +statement +am +journev, +being +the +per +from +work, +been +vorces +'I +and +were +or +after +equitable +cuted +color +ranting +lying +cures +Sir +notice +a +es. +delivered +a +the +by +of +It +Brown +This +dollars +this +village +radlnnt +them, +the +ed +United +and +antl-Repuh- +a +to +for +connty; +production +of +man +all +amine +land +proud +plain +dispondence +Golf, +from +a +be +n +molders +pension, +o. +tfintcrn +hands +had +Also +Beginning +Editor +became +operatic, +at +bolt +now +will +boxes +cent. +the +Chase +on +territory +and +per +to +all +system +its +himself +- +him +largely +mounting +nil +our +and +his +the +substances, +promise, +rate +been +parable +nature +least +1917, +fie +not +hav +pleted. +informa- +fickleness +man +raising +a +boy +selling +Kebruary. +with +found +NEW +of +of +superior +a +seconds, +is +J +Lake +ed +incident +of +who +young +news +813, +became +Tit +WHEN +the +English +noon, +the +L. +tvblie +well +The +wells +his +using +venturous +neon;yonleaveatdp.m.; +ap +disregard +wihy +he +made +given +which +not +M +of +\JT +is +from +for +petition, +bo +to +serious +lie +into +Sooth +lately +use +they +cf +St. +ia +Stanton, +lately, +business +was +la +a +bountiful +•xi +and +or +ous +of +who +ex- +using +these +is +are +in +ribbed +believe +horror, +proceeded +tbiogs +the +most +abaking, +OF +pleasure +landed +past +Blocs +him +and +sixty +eighty-live +(..» +Sho +five +deaoeol +entire +of +plough. +them, +of +Sioux +of +white +every +panrsla +or +result +chair, +better +two +lost +tached +several +itomsolvcs +then +tieorgi- +he +English +l>u.|uo; +picked +a +llilegi +to +second +the +compassion, +way +and +though +harder +Volkmar, +or +years +faithful +so +all +on +produce +the +the +"chum" +indeed, +ical +is +Byndica'e. +by +from +any +at +and +trade. +kngin'rr +to +and +lie +endeavored +lovo +in +people +equalisa¬ +Figs—and +with +slightly +the +shun +ifore +the +the +to +had +the +Paso +not +its +Individual +necessary +of +inclined +constructed +his +road +Mann. +Columbia +handwritingof +alter, +Stoics +and +month +at +hid +of +on +is +together, +of +special +D +for +distressed +by +ter, +vert +had +first +a +already +principle +that +ticed +at +the +more +distinguished +Cherokees, +an +means +ly, +with +oven +mad +salt. +north +return +cannot +But +is +ing +weakness +for +be +consumption. +gunrd +floods +chose +tlie +the +excellent +Morton +privilege +supreme +manded +should +too +H. +General +market +bouse +where +lots +numbers +In +pineapples +tho +8 +that +men +nieres +the +be +the +OBBaBa +nevertheless +treat1 +ranean +of +Wally +from +the +vest* +Mr. +T., +had +Ellis, +consummate +he +fore, +unto +tower +amelioration +deal +to +this +on +devoted +for +for +and +the +his +aggregat­ +suf- +of +of +ate +lie +presence +new +lows, +offer, +Jafl'rain +ed +in +these +he +and +tracks +thence +profitable +to +niente +Prances +has +hy +the +tho +of +represented, +rode: +nephew +terrible +bona +owned +but +and +up +raising +as +the +the +27tli +country +European +a +the +part +the +winter +the +the +stimulant, +her +and +a +of +which +made +state +the +then +Helen +etc., +ment +the +is +thus +past +ed +with +Alas +of +is +sum +ciit +and +thought, +regulations +pansrs +altar +monopolize, +that +on +the +wiio +the +cause +General +affairs +readily +the +belief +far +So +been +world +Constantine +by +arc +say. +30 +Back, +a +be +editorial +the +dentists +clay.ia +Bryan +the +a +the +sources +at +in +Anili'-r«t +feet +and +now +that +would +(xlmllar +would +however, +men +the +to +it +with +of +one +to +more +objectiona- +subject. +five +of +and +ligure +22 +great +it. +of +little +the +a +They +Dawes +and +the +this +Hull, +of +materials +City +10.000 +one +the +Humanity, +directly +which +Napkins +5. +I +Canada, +ance +this +the +premises +and +m +beasts +she +forget +some +drawn +the +do +boat +in +ger +)ear +therefore, +aronnd +along +under +polite +advantages +thousand +qiwrter +of +they +mfluouoe +copy +sleep +fungus +Cexiral +the +or +his +and +to +annua.ly, +ove +Office, +Sec. +horse +cious +years +ster +handed +Sec. +the +Tazewell, +and +heavens, +tho +successful, +tie +of +do +ernment +to +con +great +You +one +inscription, +with +bo +things +time +located +operated +but +in +and +i'mhulily +not +It +partici- +numbers +and +m +of +and +the +divided +goes +and +But +drove +superior +glos* +the +was +he +the +Joel +neighbors +can +Collector +their +all +an +to +The +they +all +first +realm, +to +sell +College +sources, +for. +religion +ville +Hamilton +church +intent +leaked +alaa +oult +growth +which +countrymi +During +rest +at +of +can +be +caught +vote +burning +are +to +an +Captain +hung +The +father +be +from +Important +the +thence +a +taken +it +company, +a +stop, +man; +hundred +asserted" +building. +"Hope +and +company +of +a +of +policy +inch. +was +surveys +the +hickory +persons +aiiythlnj* +were +" +commenced +of +he +I +at +of +and +o'clock +before +temperature +general +of +them +The +The +it +Romero, +400; +memory's +to +Mount +rich +ity. +4 +steady. +armies +100 +Veil +appear +the +the +hospital. +It +ounces +vanced +soon +action. +all +the +had +and +candidate. +numil'.-'rs, +a-id +Government +Barnesville, +Thomas +Negretti, +famous +carloads +$11,000,000 +new +Edith +equal +to +for +however, +to +was +boys +the +Irish +conciliate +of +matin +helpful. +tent +But +of +cas +cer- +of +fact +of +ada, +the +"The +no +Uesolved, +iuiial +and +been +with +the +the +Ctty, +idea +bodies +gave +prietor, +them +the +Pacific. +its +be +the +proving +a +213,000 +brothers +changing +lime +of +petition +turn +oeoopted +was +has +pur +be +new' +him +Dolphins +cam- +to +set +was +commence +as +life, +lie +aronnd +been +board, +further +A. +6.:,9.9.10,11«ndlìInBlockNo.Lol +press; +brothers. +"given +be +view. +Ilie +pr +as +are +dividend +now +quainted +time +Grass +44 +of +a +turnings +people +Demo- +turns +paw- +who +resounds +published +Dr. +has +be +the +The +defeated +wet. +am +uch +late +has +that +Even +Reaching +ordered +1529 +was +bills, +Supreme +«i» +journey +scare +gave +be +who* +ex- +cabin +the +hit +casts +went +of +Iowa, +until +South.— +appoint +period +railway +be +before +a +Whatever +he +same +of +by +edies +as +meetings. +day +was +duty +JLerU' +power +Iherrfnre, +tho +es. +have +to +are +Austrian +lor +prohibit +next +and +sunmner-wpuld +begun +is, +1, +ot +has +& +a +Cortcz, +seem +due +riecetved +Fernandez's +ef¬ +employed +children's +a +ot +reached. +is +states, +caused +sat +a +subjects +Thursday, +block +spurt +former +always +fellow +on +Considerable +which +the +the +near +ol +sends +Miss +still +Yuba +Thirtv-h've +the +tomers, +in +the +to +is +massive +weolt +ing +of +They +to +in +and +beautiful +of +her +ten +the +for +for +and +cavern. +sum +they +on +last +both +enemies +15%@16%c; +R +have +through +ou« +mation +to +ballots +given, +into +thinks +we +the +to +The +calamity. +the +One +way. +French +the +which +Hamill. +doubtless +street +more +in +“We +back, +the +rank +operation +and +prairie, +the +level +for +thenco +around +it +cases +of +t +amount +commis¬ +J. +done +President. +moro +the +stick. +.. +honest +high +oaring +nr +his +cows, +whose +no +closed +iii +on +upon +the +eration +foil +kraut +attention, +to +not +known +little +No +ot +Act +of +a +&T,l2o, +motored +a +quarter, +it, +ing +bulcw +shown +since +advanced +among +organs +Hotel; +Industries +suffer +Monument +Northumberland,£350,000; +category. +less +Boston, +rock +the +would +marked +steady +which +He +off +per +Lady +affairs +ever +if +attest +that +foundation +demand +said +should +subscription +needs +whip +principal +for +timely +higher +most +long +a +further +science +shall +city +to +and +by +the +has +The +day. +work +breathe +Harper, +more +more +victory +the +Patteson, +if +Notice +close +il +as +allegiance +sible +the +Ella +appeared +the +it +ter +the +his +they +from +sufficient +I +which +nearly +only +town +Troy; +be +company +M +water +fear +new +un +has +will +from +oatmeal +obtained +fathers +a +estate, +Land +But +Souza +ample +maintained +swept +of +Caro- +and +beveral +pass +may +of +into +t>he +Baltimore +place +rash +had +low +around +The +known +tinuing +tbe +to +mere +for +tbe +delivered +A +rage +over +stated +and +next +her +Henry +present +the +that +of +ne +the +grand +manufacturers, +said +drills, +within +Market, +nud +McGarrln +to +greatest +business, +the +those +It +property +in +does +his +Ctltbrattd +Agricultural +pack- +we +to +the +oppressed +West- +orphan +citrus +principles +their +been +and +light +I8.I0 +in +ceived +court. +peaceful +think +to +signs +wise +hospital +been +est +F. +them +dtove +attendant +and +this +countersunk +window* +Dunenburg +are +tho +flown, +square, +north +question +that +journeyed +Forester +of +During +and +despise +was +excitement, +This +sen-re +could +more +the +nothing +departmen +himself +the +leaving +had +to +a +to +a +is +great. +down +mill- +annum, +also +The +F +h'.s +vigor, +country, +no +s«t, +the +are, +run +of +the +the +aid +stately +that +are. +In +one, +cannot +to +earlier +came +BflOjbborhOOll +system +not, +closed +state +such +the +in +this +must +board +of +Other +the +to +others +and +out +no +there +I +SI,OOO +gers +loaded +fact +ox +years +republican +be +more +Graf¬ +ritory. +solicit +by +“I +fix +is +August +Be +courtesies, +held +by +course +Johnson +confi- +tho +which +North +rejoice +his +if +civil +?" +had +the +tho +went +-P +a +well, +been +of +not +and +2 +Loomis; +crop +bushels +an +dry +of +speak. +a +to +on +the +are +I +with +ears +the +men +vid +arid +pre­ +property. +station +to +ends, +uivftot +it. +Bear. +side +for +by +eloquent +10th +next +re +and +outlook +neither +iron +the +to +class +within +been +advance, +and +Uoward +remark +mauy +into +A. +to +was +SBd +o +the +the +a +receives +show, +at +the +that +in +means +about +prompt +and +Et +section +are +the +is +last +be +Rippy +tending +exemplify +brought +ing +attached +and +The +and +lIs +game +by +give +it +Richard- +rainfall +watts +the +elected +N +shoes +private +and +farm +Yoa +executed +(45) +from +For +of +while +had +are +and +college, +tempo- +flects +rather +That +victimone +Loots +river +to +of +at +opportunity +to +of +negroes +of +this +is +locals +sued +the +ploughed +that +Minnesota, +proceed +required +a +is +as +stir +this +locations. +out- +acres +do +the +ance! +first +with +s +danger +ring +produce +of +soul, +of +His +ghcw +cents, +feeling +found +ivr," +whit +Mr +they +will +the +is +struck +House +sovereignty +rcs. +the +states. +attended +shall +U +be +petition +of +its +decoratlvo +the +sale +way, +seek +the +communities +but +there +road, +felt +was +and +the +while +the +trees +a +German +of +year +and +wasthe +the +have +think +operate +who +treatment +loath +Mexico +It +bend +regarded +Thousands +M. +Philip- +nicely +then, +or +of +is +Mrs. +from +as +make +of +the +saw +comprised +nearly +has +to +McKim.he +Uarnett +I +man +lists. +in +the +of +Is +clrcnm +continued, +ourselves. +finger +hopeless +son +the +fainting +not +party +situnted. +k +healing +was +out +elec- +been +ground +a +We +the +repeatedly +teeth +sufferer, +the +Presidency. +clamation +haif +from +His +the +Clerk +crawl; +ble +his +This +with +announcing +submitted +aad +lot +the +If +girl. +with +we +fired +profe-*»i +stato +frigate +egraph +the +to +the +|tK0Q +of +cock's +proud +anthracite +the +perti­ +minimiz +a +bills. +are +coupons +part +Indefinite, +Is +objection. +sorrows +hundred +associating +they +J. +great +There +village +It +Constitutional +witnessed +have +dust +man +1814. +A +and +and +given +(ex- +the +Fargo +now. +sand, +. +will +in +or +Two +at +a +mind +of +of +There +decaying +freight +say +is +Bids +beautiful +flag +and +of +his +the +corner +Lome. +to +the +whose +came +of +geat +death +No. +cry +in +spirit. +God +one +I, +de- +E. +it +dollars +leaned +of +government +"Jim" +boy. +an +to +Wilcox +make +ItrowD, +bad +ation. +white +nearer +thereby. +also +100 +It +much +mortgage +to +describing +them +something +of +line +third +schools +chance +clerk +of +this, +political +to +second +in +stanm +aore +feeling +rage +be +of +can +circles +Is +the +chalT, +take, +ernment +dollars +k1 +past +the +t(.l +by +To +many +now +Best +in +stands, +halt. +application, +during +oountry +boil; +4.30, +scholarship, +it +assume +veiling, +of +and +broken +throats, +was +a +short +as +versally +of. +"Oh, +acres +is +than +07, +|jority +did +l'aris, +is +Here +for +stee' +Englnnd- +dangerous +was +26, +us. +President +you +down +a +of +with +sold +Immigration +“Committee +us. +ately +The +it +at- +improvised +has +piece +had +Perry, +U.rife +interests. +farm­ +correspondent +die +only +the +Well, +after +Yendus +their +Northumberland +was +coinm"n +have +unparalleled +in +Soon +down +summer +treatment +and +ot +strayed +attend +of +pre-eminent +McLendon, +l« +promptly +ed +non-swearing +all +ter +season +to +seaman; +look +nndertfnod +chilling +within +beautiful +coiinny. +when +lays +raw +tbo +of +the +manner. +nied +Into +paraon. +Jeffcrys +Canyon +first +beat. +a +the +to +that +at +lug +the +April +an +Superior +bat.:, +roads, +amouut +road +just +phants, +their +date +thus +fire. +character, +the +when +En- +the +butis +For +pleasing +until +with +frequent- +Dante +translsting +such +country, +and +Before +At +that +the +waa +river +hospital +single +or +moral +big +the +a +.should +not +in +the +the +ol +appointment +light +men. +Lyons, +by +in +or +Congress +ing +The +fate +And +had +tampsratura +have +dersigned; +through +hmiu +law +in +by +of +who +and +months +malls +game +reading. +first +horror, +the +which +then +to +on +no +Beginning +will +are +In, +Illinois +but +of +great +deci- +tunic +the +man, +duties, +cipal, +Wine +price +accompanied +in +to +iu +State- +or +storm +uous +and +used +hi +one +Meth¬ +soil +nnd +like +personal +dignity +fifteen +a +had +Is +him +un- +exercise. +should +their +every +£450. +man +people, +wishes +P. +what +there +I +never +qualify +for +The +lines +cent, +that +po«eessed +convention +Miss +number +at +been +England, +powers +often +associations +really +in +able-bodi« +take +Cir- +fertility. +tion +said +hand, +the +them. +masses +right +00 +Helena. +give +bimself. +the +of +Al- +a +total +the +clared +at +by +community; +none +aadlaa*** +but +well +stock, +steamship +capitals +Asssssl +chauges. +papers +of +Eleventh +he +the +room +of +in +carefully +not +as +al-.o +in +irom +executive +am +strug¬ +it +constitution +F. +their +oats +prudent +hut +lust +your +in +8mpatlry +Law +them. +of +after +midst +January +have +A +run +tbe +their +worn, +and +for +a +seemed +was +had +shine, +'o +of +than +galleries +anwéleome. +filth, +gold +devised +had +treasurer +select- +subject +to +of +per +that +Recently +J'.ii-i, +deleterious +of +my +he +had +M +and +tho +home. +hole +Geer, +which +the +tin +to +aforesaid +EnterprisePublishing +effec¬ +saying +been +be +Italian, +be +hearty +prs- +'and +was +In +have +Ifeput.liuan +27. +of +presence, +of +property +heat, +Cormick +the +«me +the +Republican +Wlckersham, +to +of +and +the +the +2. +time, +these +them +purposes +morning, +eigii +The +the +not +erro +H"» +or +of +WEB. +who +be +no +the +oi +preaeot. +scientists. +something +shown +for +Whj +n +proved +and +troublesome. +ol +accordance +month +poor +for +of +beyond +members +a +for +At +or +our +saw +becoming +and +apparent +with +ready +an +as +cowards. +act +into +dishes +the +an +of +to +man, +Evening +thoy +from +first, +the +(3) +is +killed +mag- +him +We +by +or +Daily +before +domestic +TA.KESPECIAL +wuod +of +taken +prays +Fort +now +steamers +in +adjourned. +of +present +Chest, +the +may +six., +and +of +at +me +barn +responsible +summons +words +to +man +is +job, +of +of +streets +a +It +necessary +whero +and +than +Vinegar, +lack +you +for +see +ingenuity +produce +for +desiring +the +or +Robert +line +In +boiling +the +all +mortgage +and +plexus +Ifl +Kansas +weighs. +the +tha +his +breaking +lowered +"After +better +and +<>f +the +that +whoily +develop +more +to +heard +age, +one +was +circuit +loaded +aud +an +chase +about +old +were +a +body +pertains +ears +exclusive +reach. +on +May, +seekers. +assurance +amendments +at +there +tho +DeVore, +I +to +Hair +in +It +home +presence +they +among +made +D +which +ning +of +Mr. +tho +at +the +im¬ +said. +C +heritage. +direct +the +avidson, +her +Saizan's +lot +very +has +Court +dangers +Braden +must +within +forfeit +prosperity +of +allow +tho +been +He +upon +morter, +it +Lyons +but +lecture +subtle +Division +about +notorious +Inhabitant +Certainly +ranged +the +delighted +acc-'unt +district +thus +is +concern. +left. +thts +to +1 +an +school +ipulatioa +monarchy, +the +and +to +208 +bow +in +after +Of +enough. +claims, +ury +and +all +has +not +five +Cotton +m +lie +that +of +him +arty +tnccessful, +mort­ +reduced +were +prlest +Mail. +contracts +brothers +same +Tho +for +much +that +hundred +some +any +in +and +down +and +CflfUm +been +! +of +vices +stitution +north +could +for +people +direct +his +economy +the +rich +place +Ma +a +of +provide +and +fi +Meridian, +. +poopa +at +prevent¬ +for +with +theissuance +of +In +note*. +north, +do +Daguerreotypes +concerning +Leeds +mounds +according +can +several +School- +strike +lower +two +Of +morning +respects +and +campaign +Hec. +the +was +to +point +tne +were +. +there +supersti- +republican +intelligent +illustrious +capaci- +ties +erings +inception, +per. +tbe +him +In +of +Why, +Saiyers, +time +hands +aud +reason +I +and +no: +real +acquires +their +twde +the +have +if +the +the +shall +son +bacco +M +Dt-uiod +way +beat­ +the +uiaii +and +2093 +ing +and +nt +is +should +the +g4nie, +It +but +minutes. +it +endless +been +teacher, +named, +McCormick-Ooodhart +fund. +upon +another; +other +take +Christians +It +and +the +iple +has. +bring +ing +little +m;i- +as +to +around +Certainly +sole +7Jets +Washington +it +more +they +the +San +administrator +The +room +of +and +a +the +uo +of +to +tho +pyramids +next +dent +the +of +mands +to +els +deck, +b +when +thal +The +open +more +The +look +as +traok +it +pirates +arts +for +single +pose +gs, +iiut +of +S. +a +borne +financial +Leave +power +go +March +s +tho +of +Secretary +Brand +producing +departed +Taylor +be +of +and +letters +The +he +felt +thereof +off +consented +the +W, +always +We +was +Smith, +tax +some +buy +cotton +let +Coal +thn +O' +gate +anything, +clu +In +pot'ition, +shaken, +the +teet +at +in +parcel +ihey +may +the +and +the +absolutely +and +nat«* +races, +event +executive, +Delegates +district +all +whieh +de +and +of +as +hate +way. +E +produce +««eh +be +broach, +in +trip +eighteen +of +and +test +tho +her +become +Hayward +beating +pro­ +the +him +the +in +Such +within +?ubjecis +I +employed, +of +_ +a +management +$3.85@4.10 +Tel +Wednesday +keep +of +demand. +3% +the +standard +second +engage +congested +fire +extortionary +charge +of +very +unpleasant +the +only +of +his +Eccleston +reports +thousands +ber +buildings +hard +212 +men +at +"G." +acUoa, +hospitable. +squadron +As +business +committee +coipus +lumbine +eclipse +of +had +to +arc +kissed +twenty-four +be +Sevre» +dreaded +Bros., +of +talk +who +who +work +hours +markets +place. +match +hand. +a +could +ness +tight +his +the +quarter, +and +Mercantile +when +bridge +us +old +English +people +been +Indiana. +190G +stopped +Seward +Mo +End +regulate +to +of +wives +I +Nov +Virginia +answered +migratory +aims +a +when +a +nearly +and +acted +have +with +under +some +Then +no +especially, +In +laughed +now +ten +the +The +victory +in +conducive +12, +to +like +put +body, +committee +by +day. +while +to +hands +tbe +and +Carey, +may +of +We +and +that +preparation +salary +spirits +firmness +that +of +warning +they +election +if +your +paged +over +of +task +ernment +away +his +tion +' +t»6 +fur¬ +will +age +falrlv +less +shifter, +with +of +has +Errors +cut +Master +to +will +before +further +of +money +of +honor +V. +of +his +1 +United +used +fact +past +food. +asserted +device +how +Men +will +requires +estly +6:10 +blessing +when +said +not +ers, +roar +sailed +consistency +when +low +on +casion* +snl'hcient +County, +C +Cleveland +before +fired, +two +representative +Chicago +defendant, +"heirs +as +corpo¬ +sub +younger +i- +subscribed +established +This +adjoining +time +also +for +elegant +this +he +Cook +I +page +of +year +Wi-cont-io +annihilation, +weeks +the +place +law +part +market +of +federal +flaaacial +Inferring +man +quite +be +to +and +in. +there +duty, +to +himself +the +he +is +coin +the +of +parts +from +J. +free +second +a +councils +99%. +confounded +made +*54 +of +payable, +Fitzsimmons +that +sliooil +of +timber +woman +probably +more +windows, +have +in +year +had +the +peat +Reclamation +country +in +under +in +envious +of +dose +may +deliver +in +county, +no +Fos- +there +be +letnou +tbe +day +one. +Sunday +a +on +stituted +of +to +and +fine, +west +she +advancing +alter +guided +which +forty-four +loader, +of +quiet +they +of +for +fault +got +parting +she +of +the +bnpnlod +10dodododo +officials +and +theroon +Ocoan +I +elect +to +in +the +same +Buperluteudant +about. +sum +adiuitfe't +two +The +given +Wt +After +in +at +lor +experiences, +bad +are +the +others, +crashed +the +had +stamp +to +orators +him +by +at +deadly +passage +The +soon +keep +stopped +to +Virginian +often +bush +whole +from +who +period +a +triumphs +Instruct +which +man +evidence +reasonable +eitltrr +such +to +himself +He +Moulton, +fessor +who +to +Intoxicating +sures +sale +Interest +worthwhile +accompanied +printing +larger +The +United +quired +tendency +on +Mrs. +Ward: +the +rose +the +more +resident +been +have +son +old +John +best +ward +823 +work +manufactures. +and +see +tralto; +pay +A +Just +that +be +rope +and +spe- +from +of +bonds +deceased, +to +As +and +east +to +feeling. +now +and +fol- +in +of +politics +sttwge +prove +to +Indian +than +it +be +der +as +dexpense +Heaven +very +did +tno +that +to +down. +Cooperstown +hold +that, +Simpson +refer +be +sudden +the +light +produce +midst +local +or +ever +the +usually +by +ever +life +wu +10a +dersigned; +the +lots +he +on +mains +is +year's +half +higher +describe +place +the +on +Democrats; +of +judg- +M. +of +g +neutral +nnd +to +$1.50 +position. +stands +seen +Matthew +Pacific +Monday +of +or +current +appointed +the +vaded +and +aud +tho +way +management +to +made +for +must +ton +do +vicinity. +members +get +as +hards +imported +of +In +d +when +20- +Into +is +146, +to +is +of +lady +1 +one +their +his +the +some +the +far +more +of +thia +Com +of +IN +trance +them. +enabled +or +tui>. +have +dust +tobacco +French +Galante, +sa +there- +nil +named, +can +would +his +Georgia, +repeated +profit +and +opportunity +the +On +Somo +present. +five +tho +of. +the +Since +pride +inevitable +obstacles, +lifted +an +M +not +lowed +as +most +to +ministration. +which +in +our +raw +for +they +smoke +them +a +the +bright +or +ohest +Sial" +lash +or +he +notice +in +properly +they +it +served +the +this +West +to +ANY +Mr«. +brass +they +ones +recent +in +been +1911, +pass +street +belong +Minister +years +there +when +our +acre. +with +kirk +growing +Ordinance, +a +In +understanding +reception +the +it +telling +is +maelves +meeting, +put +cities, +less +citizens, +*h« +great +or +the +going, +IIl +down! +for +finishing +doubt. +along +progress +value, +they +near +work +and +powdered +10. +pria!eedmgs +knew. +(sranrie. +color +men +shaft +. +expended +require +uninjured. +tho +The +Wotneu'i +continued: +a +the +does +memory, +to +a +“Commission- +Eorope +Physi- +days +veteran +the +has +or +fur- +should +uniformly +psalm +streets; +pound, +as +run +the +look +in +What +com +supply. +SATUR¬ +of +been +G. +government +discussions +amount +.morning +the +is +of +the +imper- +It +of +south +that +selected +Stanley +charac¬ +was +thie +parlies +you +a +be +the +in +As +be +the +min. +the +proaches +91.014. +Red +tinct +six +Stephen». +that +n:, +proval +upon +_U.lk.I +house, +sum +The +case +as +way +and +tucked +Bismarck +ws*) +for +says, +not +Jiiveu +and +occurred, +prison +die +should +and +the +or +their +ery, +Iter +d +the +for +privateers +meth- +In +decline +pallor +pay. +battle +logs +about +may +mold. +the +woman +two +I +the +although, +ou +of +first +S. +he. +$75, +un- +bave +(Ind. +lied +to +417 +a +answer +to +of +u +Carolina +settling +the +4 +and +Eggs +Indeed +44 +seme +atheistic +wt +opened +in +"loyal +going +satisfied +I +en +would +Chas. +•rt +no +8.. +the +was +iu +some +live«! +toxicating +with +a +of +to +(and +After +had +lor +from +some +sufficient +if +own +couldn't +men +The +to +another. +bat +responsibility +restoring +what +for +his +suddenly +except +for +of +h +so +school +Republican +I +or +It +masters. +me +at +and +has +respectable +thereof.to +will +the +that +Erie. +of +is +hours +by +cured +carve +which +its +put +the +purchasingthe +dig +to +all +(t +in +purse +comprises +tho +and +Hunt, +all +which +of +told +to-day. +State, +and +o' +of +tone +guilty +of +colossal +least +young +in +put +stones +have +him +j +marked +flopped +naval +Mrs. +the +of +the +rould +necessary, +a +of +which +lace, +stairs +sprain. +in +income +-hi] +that +ington, +Ra- +deemed +in +'Greer +separately +/.slmmons, +ing +filed +160 +and +not +squarely +he +except +care +friends +I +not +proceeds +frequent +a +changed, +afal-trd +symptoms,and +same." +Goss +doctrine +is +and +the +cisco. +far +hearing +Rooney, +women +brought +free +safe +The +all +ble +had +they +tubers +but +before. +from +the +keenly +more +amiss, +the +151 +arranged +en- +kind +his +willingly +that +here. +who +2.8 +of +when +overy +a +o'clock. +to +ied +well +"I +just +airs;” +reason +on +view +levee +life. +invasion +notice +beCOOM +"it +the +wth +half +respects +lateot +the +so +administration +forals, +still +pur¬ +set. +Wing, +to +guest« +to +All +of +con +suitable +Fair +learned. +and +night +by +Oailtoa +is +took +around +So +man +the +liked +day +reports +parts. +hasdone +time, +of +greed, +of +cake' +the +minutes +all +control +Pan-American +Scho- +the +In +aad +the +or +We +reason +Bluffs +he +w.« +strength, +progress +that +constitute +addition +come +began +of +and +oa +a +a +«mt +and +force +thorities +that, +right +tlie +during +and +on +moment +soon1 +iraitnr*. +nineteen +and +the +been +. +than +care +haA.,'been +appropri- +iu +During +silver. +necessary +military +Is +go +It +government +involved +Schenke, +to +or +on +a +fee +her +than +year, +meetiug. +gas, +each +ju.lge +(70) +secure +touched +leads +goee +org +of +to +officers +in +Mowers +Local +the +Receiving +badly +phrase +has' +ventive +of +modern +No +mutes +private +ser¬ +markets, +only +tion +to +prepared +and +Washington +the +the +candy +health +to +a +more +turkey, +advantage +coat +what +skillful +forced +is +every +apply +were +on +best +county +disgusted. +the +were +a +bo +If +being +extended +of +points +great +tiful +the +name +in +acquired +1854, +be +the +descendent +utter¬ +of +The +not +will +a +judgements, +the +newspapera. +Captain +who +knowledge, +him-r.e- +it +Brightto1i.it +Jane. +far +steam-ship +fession +stated +the +our +weeks +dressed +to +extravagant, +putting +as +weight +from +Wisconsin +has +Limon, +eight +the +groups +station +war. +half +The +Hartley +in +. +In +the +of +demand +task +the +and +is +consequence +habits, +up +church, +him +ators +potatoes. +after +her +reorganization, +whose +warn +aou +bv +ice +roll, +he +for +after +is +fluenza +row +Father's +I +idea +since +cided +beyond. +is +end +The +like +throughout +customers +hostile +mite +warded +poration +by +and +characters +Buchanan +to +table +sleeping +it +offi¬ +ness +1750 +firhool. +pocket +world +the +of +auditorium. +of +much +bo +understood +lor +questions +provided +does +a +ioaa +as +days +the +noseguards +city +sojourn +nup- +Rapabllrao +lui! +one +of +danger. +Miss +Ideas, +separate +comer +¡ii +Chicago +the +support +-broker, +muturity. +The +tbe +s.ys, +! +death +of +more +and +was +and +and +bands, +It +at +to +best +and +odds +is +ed, +cents +less +refused +age—a +KjUU.UU +from +matter +to +away +that, +$20,830,949 +the +Peas, +diplomatic +Ash- +against +Some +Sherrodeville, +hy +why +allegations +suited +to +the +'.Dennis, +>wed +satisfy +goes +fractional +do +so, +J +back¬ +until +J. +corner +read +(One +expressly +says +to +Branchville,'the +that +and +land +but +the +burning +too, +without +own +most +Napoleon +thc +vious +our +our +Republicans +a +to +Why +may +trolley +of +west +Western +, +asked: +MoRae, +Supreme +crowd +the +people. +said +ours, +and +from +now +and +plains +others +la +'forces, +of +which. +No +favor +21ih +A +a +Tex.; +to +will +inverted +on +Special +when +because +awarded +his +Boers, +trust +to +three +directing +tracks +In +balloon +by +It +and +flag. +National +axes +lay +reading +of +San +ng +chang¬ +to +fame +post +for +opposition +about +aaklng +biil +werd +Every +son +is +the +unobstructed +appalling +of +cured +By +levy +those +was +4«> +tioned +that +on +That +around +when +is +assignee +hill +ronvpnlem +the +News¬ +degrees +prettiest +and +withdrew +city +bear, +same +the +to +down' +redemption +his +scheme, +a +ment +ui* +been +three +the +that +his +]ut +the +Intense +tbem +poUtkaJ +carefully +the +was +should +and, +which +people +If +F. +at +the +our +an +mud +·, +borne +weeks +Sawtelle, +is +pointed +may +a +Valiant +labor +system, +of +vital +bis +through +Court +and +Thla +are +Of +clinging +netly +by +old +mission. +arc +them'.' +classifications, +the +road +complete, +of +human +1912 +cstaMishiiiciit +the +symptoms. +labor +did, +to +tobacco- +the +very +Bob +humanity +C'oniiuitlec, +No. +to +cusable- +be +down +not +tbf +of +of +hair +Col. +all +that +C. +m* +considered +auctions, +far +and +He +owe +as +county'' +f +get +The +obtain +each +State +classes +c +of +travel- +marveled +the +common +m. +New-York +laws +neither +and +claim, +not +the +In +Insert +alacrity +to +tax +truth, +the +those +mortgaged +and +for +string +brown. +exhibits +be +expresses +and +W. +river +$10,000 +the +contractor +be +prospects +th* +persuaded +he +I +culating +in +steady +the +somebody +note +darkey +dnzed +far +justice +and +an +ed +evident +& +lying +with +Times’ +that +and +to +of +of +Ibe +men, +of +A +is +are +disposition +: +from +They +First, +Chicago +in +em +punctures +how +are +the +ordained +forces +1 +by +who +and +the +short +bore +the +the +and +;nasse, +heel. +my +Ooon +best +the +trafTia +one +"Your +the +taken +eye +i +roses, +la +ed +described +Japs +cate +and +the +debts, +picture, +will, +recent +/Such +the +The +type +conlru +of +of +the +among +Old-Man-Afraid-of-His-Horae.a +the +will +An +one +of +incompleted, +issue", +until +who +to +till +admirable +committee's +be +It, +the +to +known. +ap­ +I +of +He. +i.i +a +the +Is +glass +eral +centered +price +long +to +qualifications, +has +of +office, +the +east +SV +American +ono +still +capital, +time +for +I +turnpike +integrity +to +have +better +follows, +or +it +Passing +M, +this +gallons +and +landed +level. +Centrilugal +bring +The +all +reaching +when +cricket +salt, +His +first +Averill's +elsewhere +14, +to +ment +we +city +of +180.000" +even +but +and, +of +concerning +hurt, +he +outset +world. +inhaling +shackles +main'ained +hospitals +total +Spanish +ears +burial +grantees +next +things +zled +stood +sion +so? +a +cries +and +frock +of +; +the +poor +allowed +of +promises +mass +and +Crawford, +questions +then +tobacco +terest +was +five +many +and +abating +about +pit +Sundays +whero +and +t +of +Registers. +not +or +Jane +money, +they +up +desiring +Captain +and +that +in +the +101, +cattlo +at +be +there +virtue +nowhere +would +of +in +tonl +with +fee +from +which +succumb +so +Indian +of +little +and +their +arose +monkeys, +husband. +States, +of +eemhlv. +also +Dalles, +rnlaelonary +matter, +fourth +across +the +that +it +Deaf, +Speed +He +office +the +Jefferson +clock +is +get +As +engagement +them. +the +lodge +war +gives +separating +that +the +in +is +happened +seems +not +wear +as +shaft, +but +and +else +the +station +city. +pertaining +arms, +there +the +the +desire +>k +year +old +south +a +hundred +Uoa, +to +at +Wetter;) +.force +redeem +a +was +fust +finest +named +maVea +and +depths +time +quit +owners +towns +should +to +like +public +se- +utterance +take +used +in +voters +A +tons +and +stopped +17. +Springfield, +no +liam +_oe__rad +bad +me +Kentucky. +gress +another +the +are +t +and +compensation +and +friends +ai +take +ice +«11 +Block +In +is +tants, +of +Ihan +Ing +crate; +shall +96, +linguishe«! +by +ranged +yeeter- +who +on. +eaoh +com- +most +is +Meier +yard: +many +county, +brose +three +was +but +hurled +tbe +several +his +believethe +banks +the +the +of +than +sir, +an +boat +thia +the +ditional +minds +Britain +of +financo +girl +one +arc +even +matter +encourage +thereof, +of +Documents +of +effort +iuvuluainc +land; +houses +District +jurors +dlj-- +coast +courtly +this +Bub +wish +through +Inn +these +of +tin +He +being +reign +brought +machine +61. +mer +him, +the +nia. +again +tense +appears +gained, +children +associated +join +bad +in +Dr. +a +and +works, +five +township +Important +68 +Potter, +usual +the +as +habits +iency +the +Dr. +both +so +under +be +settled +ns +education, +rthe +crowd +as +be +euouga +adminis- +to +pies +inaugurated +run +of +C. +the +one +a +and +aorosstothe +It +; +the +wbolesaleiremovalsryei +The +referred +who +indeed +fruitful +linea- +zen +night. +Craig, +the +was +with +1909, +be +of +M +you +tiust, +display +ayers +country, +the +pooplo +IS, +of +going +but +territories +blended +head +the +longest +ot +Secretary +sort +as +Will +of +to +tail +lips +wrapped +the +together +matters +perfect +was +uot +amount +as +Thunder +as +form. +T. +Dionysius's +as +reduced +Com- +most +of +croaking +waving +some +realize +ol +action +co- +in +dear +Reed +battles, +for +was +and +ground +nnd +would +does +having +the +levied +pilgrims +neighbor +for +together +the +deal- +for +Electrification +said +out +negligence. +hazel +you, +all +ioi'ormec +him +lead +the +star +of +and +ilocks +work +fath +to +to +ward +of +mrai +the +of +ing +drawing +with +my +sixteen +stomach +meeting +Bpectator. +Well, +That +improvements +who +linings +as +that +clouded +the +lenging +grasped +political +merci¬ +was +stored +iollow +becomes +ceased, +out +plausible, +or +Tea +victory! +and +Raymond +the +; +"Again, +averages +output +Cos, +Here +is. +liquidation +for +this +his +that +hotel." +Lee, +upon +tho +arid +Dr. +despondent +from +the +necessary +with +6tead +as +nature +Rush +on +ales +'iiithorlty +they +In +of +eighteenth +you +that +was +num¬ +the +taxpayer +mem +the +twenty-fou- +solid +decrease +lowe: +he +per +must +the +cret +The +matter +university. +without +Mr. +came +P +main +policy. +Jackson, +church +ago. +of +gone +of +the +are +mu- +where +Byron, +down. +places: +of +which +a +hundred +oth- +that +one +to +Nations +the +trained +shop. +XI +the +Ilia +A +partook +thi3 +After +draped +pressure +the +He +the +4c. +the +inch +of +satisfaction +secretary +daughter +same, +having +take +votes +benefit +claim +his +with +But +the +not +Department, +the +my +ousi...............................2 +than +West +for, +a +in +bid, +gainst +I +not +delight. +thinks +embroidery +on +sul +successful +court +mixed +all +said +sacrifices +flags +Cuba +over +standing +To +Unless +appear +single +was +peoplo +act +go +a. +for +injured +ite +neighbors. +best +appears +can +long +the +33. +any +to +hog +pneumonia, +contracts +box +In­ +of +of +be +through +inch +bulls +it +will +to +him +proper +capacity +because +is +the +kind, +cerning +to +Post +the +etter +1 +low +a +large +w +Nyo +easterly +amusement +ih +train +at +have +net +definitive +train +out +ing +given +promises +to +was +Ilutlerwortb. +or +those +following +the +of +all +under +ac +ua +nancenot +bad +grand +me +in. +the +caused +Dr. +Tho +oldeiit +silver +service +nrty +and +the +center +young +all +then +A. +subs +if +eodevoutly +dwellings, +years +a +or +allow +outspoken +ot +and +as +that +Suitable +faced +the +j' +But +that +the +evade +out +us +he +Jury +Mr. +^'in +hastily +aware! +already +New +hitherto +county +State +this +was +and +very +to +recor- +horse's +out +in +the +boiled +come +work, +plateau +chin, +either. +proper +use +subjection +long +roads +perience +return +a +Red +the +the +the +receipts +knows. +cuting +East +ger +the +amount +changed +per +aft- +That +the +cape +through +The +satisfaction +tti +begsu +Richling; +would +will +with +repub- +with +The +of +said +folio +wish +You've +year. +K +Mifflin +instead +meant +a +what +Mtlafacllon +amount +which +majority +factories +infer +his +will, +ty +Don't +rid +have +every +her +A. +on +leading +group +»ion. +sp +between +place +“Some +on +to +the +letter +of +each +history +other +manner +BOflne +committee, +insurance +recreation +was +proper +to +shall +the +cell +the +and +was +thus +active +a +as +with +spleen, +brooditig +morous +sion +the +is +pride +tbeliuck +solved +At +Negro +were +himse’f +The +committee +bill +of +bad +faithful +permitted +and +with +citizen, +Col +identi­ +a +Abing­ +can +Stevenson +hard +oti +year, +few) +a +in +said +partner +apparel. +are +Harold +and +e.-n. +success +naturally +it, +It +of +entrenchments +sort +South +fel- +rnlher +abroad, +4s, +prop- +simply +of +council. +services +close +it +not +and +'accomplished +which +public +was +tliat +large +is +which +was +of +navy +Aves, +obtain +reasonable +some +his +conflict +markets. +That +Warren +is +conversed +with +Fessenden. +leg. +are +Iam +a +meet +by +h;m +distressed +still. +to +gsains, +-l +$10 +Freddie +F +tne +no +that +up +set +sacreligiously +gains +have +bitter +amount +is +com­ +a +to +by +spring +There +sore +the +trint, +an +all +solve +minister +to +he +making +and +does +necessary +gers +by +we +the +fidelity +the +the +make +tained +and +hour +large +entire +tory +proprietor +of +tremendous +Tennessee +was +was +would +ter +brook +, +to +than +Dwelling, +that +yet +in +. +very +bank +In +who +and +street, +which +vidual +improper +The +saloons, +of +of +was +this +we +H. +they +manner +whero +Deceased +resolution +to +of +out +pany +his +been +obtained +Gov. +bees, +the +or +City, +had +violated +taken +or +was +our +aud +pasture; +Hotiirighaus +to +into +Ingre¬ +form +the +tt»nc«, +the +but +Sacramento +treaty +Bet +was +the +demonstrated +control. +a +man +bargaining +Examiners—H +choice +Port +at +in +me +percent. +laid +»nd +joyed. +veiny +moment +a +which +ted +and +in +therefore, +passed... +Davis +in +gardens +above +facie, +abhor. +not +the +21 +the +railroads. +and +shall +appurtenances +for +went +water +misses +side +judge +the +indeed +eqnnl +G. +free +Kent, +call +organized +a +derido +inp +women +con­ +$1.69. +south +should +their +with +on +quarter +the +the +mon +are +on +obliged +centrifugal +of +mothers +will +the +would +circulation, +programme +them +do +are +attention +at +all +the +confidently +ahead +that +Johnson +the +Tolson +of +the +and +came +unhappy +gas +and +the +November, +we've +ago. +43 +it +I +are +have +the +the +gause +the +seances +lionteniant +some +and +above +a +is +dou't +aa***aT_fnlsySMMS +will +hers +creation +pro +the +a +our +CAl'H +all +side +shall +her +could +believed +on +when +In +and +shed +and +a +toted +of +George +tire +a +and +Spain +shape. +or +the +this +food. +by +many +electric +were, +womanhood, +of +to +the +the +After +where­ +from +husband, +are +their +the +veyed +rich, +and +sum +into +a +coming +Im¬ +ract +the +tissue, +secured +the +f +has +replacement +than +of +2. +and +Yoder, +stage +manifested +heads +a +nitrate +1867 +due +a +God's +shape +brain +has +anions +Harvest +was +l +of +itreeta +by +swing. +quite +and +should +evidence +Wm +that +actually +In +of +were +credible +cannot +or +at +prohiWt +of +to +onejat +benefits +Kansas +a +the +leaving +new +the +flames +the +in +years +law +all +principle. +production +Or- +de +merits +fore +ovcr +my +present +In +8., +home +monthly +Wm. +class, +of +on +«jf +en- +asked +William +F. +from +ft +the +make +to +of +news +on +a +paper. +October, +yon +Tlieo. +corroborated +a +eyes +such +shows +attendance +of +it +bis +to +question +team +being +the +he +the +the +disintegrate +having +the +|tent +would +madegtod. +used +in +ing +because +the +with +begged +good +plant. +maUai +as +the +the +with +enterprises, +of +ter, +"You'll +can +tho +ence +the +treaty +As +a +years. +leaders +mathematical +No*. +Samuel +Easterly +Is +being +on +Ogil +by +the +that +horrible +require +not +of +ill +near +Suddenly +night +standing, +we +Forbea'a +ing +aud +lace +order +pumping +of +Cohen, +iron +character +iu +lit- +who +by +Dakota, +critical +but +tion +and +a +one +logician, +trav- +that +Jones +to +nately +to +Ctyna +sometimes +removed +horror +The +iu +In +neapaor +cisco +the +is +the +speaker- +all +being +watched +who +is +dropping +to +nec!t +put +onto +then +acknov +desired. +the +door +allow +"Why +county +pending +its +big +a +quarters, +Tbe +d +in +instance +of +who +three +neither +Age, +Laurence +jokes +tho +as +the +the +lect +worthless. +practically +once +was +for +Repose; +St. +board +to +Dr. +for +force +grace, +In +construction +on +The +horses +timore +The +so +ten +he +ho +oft +iu +absent +prominent +to +a +result +the +aullen, +that +yearling +a +executive +of +bureau +t +Latin +deeorip +whaia +tbe +outrage +Edgefield +church +of +the +(hall +went +"North +new +On +once +is +Ineluded +impractical +pr +condition +capable +open +Calrtalaai +tions +of +in +Beginning +without +said +thus +Machine. +in +in +are +and +The +prepared +eequent +Although +nursed +boys +de +75 +natuie. +total, +wood +extent +their +knowledge +and +ol +at +on +Sa- +ter. +75. +Two +of +due +my +tter +The +of +out +IS.. +tor +Btory +any +of +is +desired +of +i'age +decided +a +m +Elolse +OEM +pledged +KM +through +of +blotters, +camps +hi +'and +count +are +Transvaal, +latter +class +occupation +law, +upon +miles +part +I +All +ed +it +lhe +petition +law. +let +Skel, +iwestern +contributing +had +and +fjermany +and +governments +going +was +county +since, +the +effects, +loudly, +of +calling +in +Franklin, +ion +first +tbe +it +cud +action +But +it +ly +discussion, +oflice +nothing +the +pre- +the +and +as +of +milla +fellow. +mile +is +machine +a +and +tnearaace +of +attend +tory +that +Mrs. +how +stomach +money +Max +the +department +people +they +last +and +The +task +and +another +few +crops +been +yet, +that +President, +when +American +over +good, +employ +con­ +in +heavy +fiscal +subject +Hayes +uvve +a +town +Dora, +the +several +Provisional +sureties, +un +and +ns +Stones +and +it. +Derouledists +and +the +Army +and +the +is +and +room;- +showed +quested +sippi: +pav +two-hours’ +it +it +fejit +yester­ +leg +govern +aged +otter, +Sight, +and +local +bn +said +shore, +There +wife +of +Northern +my +will +Buf- +eternal +in +expenditure +mas +hwn +a +meat +the +Brennan, +ol +of +Paoific, +member +this +life +home +crowded +for +witk +trade +even +egg* +fill +the +Mr. +tha +practice +|>a-t, +in +give +Intended +towel +often +75. +the +tory +3. +gas, +The +of +February, +work +Wllklnaon, +Phillips +en- +Mullar, +San +§99,000,25:1 +dUtrht +Roads +daughters +servant, +in +to +he +and +of +but +the +be +an.d +parallel +June, +beld +mous +clear +in +e +he +her +Beers, +is +vet +telling +and +of +qui +before +nioperly +they +made +four +be +the +need +building +heurts +hair +water +the +and +in +continue +wondrous +of +the +with +ing +wife, +proceeded +person +and +the +for +an +it +Hence, +One +ebonId +one +has +4 +on, +a +order +attention +. +ed +an +relieved +that +the +Is +on +formed +the +why +Dillingham +- +with +elected +a +a +table, +ceremonies +matter +on +bo +for +and +r +down +devoting +• +had +ground +killed +Skeen +New +easllj +may +elected +enlUiig +in +was +arc +is +girl, +newspapers +1320, +of +him +5, +the +should +a +sideration +was +4. +got +the +ever, +and +of +to +as +been +tug +the +Frey, +gle +Boyle +all +frequently +for +with +presented. +one +sls,ol3,fiPO.tftH-sinee +that +and +to +Most +and +the +response +of +vicinity +It +the +another +back +resigned +society +through +State +mills +tercet +Epsom +In +always +she +of +.Lut +ready +counties +ments; +each +The +a +on +dollars +lliere +and +a +MeBane +throne +The +Young +the +to +It +and +are +long +at +ly +object +Oregon, +possession +the +of +above +things +to +tongue +and +the +whole +and +$1.55 +which +corn, +tba +would +pie +people +The +H. +appearance +A.C +whis¬ +excessive +his +the +essays, +No. +a +street. +attack +for +Hattie +houors +lighting +mas* +is +an +same +to +which +age. +been +long +pricked +fell +office +precipitate +H +delirious +is +and +west +that +leader. +taken +name +The +tons, +teries +his +and +groves, +the +B. +the +lamp +liapjmw +poiisning +and +I +their +formula. +flat +Can +dereliction +proper +man +that +Justice +Keec.hler. +the +list +a +it +to +that +whlcti +and +tbe +a +im­ +the +and +the +its +Wtdnesday. +as +to +a +thousand +the +have +jobbers. +resist +ous +household +chance +of +alley +side +loses +gas +in +fertility +building +for +towns. +thoy +htiva +ILr.ctora +subscriber +his +arms, +de- +the +science +approximation +greatly +into +and +tails +Cape +siding +Republican +on +break. +meats, +Is +thirty +Clarksburg +great +at +by +of +It +within +3. +as +sauce +the +Notwithstanding +the +you +pirtv +cerease +where +of +It +if +rounding +Pale +production, +rest +old +his +complainafit. +under +the +the +no +mado +commenced +happiness) +shall +liver, +vessels +g +through +ir.ely +No. +fect +Is +vi.saged +Bostou. +is +large +not +by +authorities +stract +she +the +prices, +men +with +amendment +bounded +Then +ten +this +a +mornings +destruc- +Waring +set- +dary +periority, +again.: +items +steel +should +Mra +French +the +land +Germans +ble! +Chicago, +of +ao +Rocks +gospel +on +bread +by +such +would +desire, +and +are +went +at +Oxen +of +apprehension +to +votes. +class +If +to +story +ing +off +30 +agents +enough +and +civil +say5that +the +feet +a +¡rj +c +the +mortgage +terday, +but +B +tbe +arc +pear +I'.ngland +a +their +for +The +practically +Lynn. +greater +so +to +Cow's +country +was +a +conveyancing, +no +than +can +ago, +just +to +flies, +cooks +Orllfetb, +ship +of +now +is +the +sutacribed. +legisla- +talent. +be +tho +continues +thsadminiatratioi +and +New +judges +pond +appointed, +of +and +Howitzer +had +the +by +disfranchised, +cerned. +attitude +you +own +$20 +lowed +This +This +people—of +on +to.Ottumwa +on +same +It +the +at +the +soften +the +of +to +lands +. +«'h'le +by +did +in +those +She +dramatic +Rock +never +morning, +accurate +is +goes +wilh +declared +our +A +motives +., +Mrs. +that +is +mind +on +trade. +a +the +mat¬ +lie +and +great +-e +The +was +royal +H. +same +make +District +worked +and +near +greater +accidents +city, +enough +moving, +be +eB +d.ati« +the +. +to +minutes +a)e +The +by +to +him. +four +lew +that +that +failing +waiters +tlons +unless +any +the +a +aud +always +li« +sey +corded +Mingling +crop +intelligent +of +Department +business +secure +Menemsha +why +always +crinits +doing +the +and +The +most +to +Register +nold's +Block +In +ma* +was +seven +by +Followiug +front +writ +the +be +were +iuqi +the +away +penal +ey +are +Convention +iN +A. +si. +purchase +bis +from +member, +and +Theeoilofthe +things +advan- +office +6 +per- +186. +with +people, +gantown +would +cards +secure +of +morning, +view +abroad +other +No. +minister +of +tlie +whom +sufficiency +Parrish.of +under +political +One +Bufo +a +a +point +Tbe +ottcar +closing +Eli +desk +closing +that +now +large +the +"To +free +murder. +principles +spent +all +bullet +taking +SECRECY +essure +tha +maris +with +men +brief +our +in +land +is +convention, +money +if +finish +As +two +(7V») +can +Cali¬ +place, +to +reload +and +it +few +general +aa +door +Wilson, +commenced +course, +lost, +The +of +of +the +to +vertisement +Cyn- +it +thougu +Belli +With- +pose +one +been +tbo +ing +of +of +tho +so +regard +opposition +to +they +woek +of +She +were +bave +of +tenditiire. +reaching +fractional +persons +public +the +the +the +in +price +honorable +handed +oflice +pound +or +audacity +25 +station, +grounds; +conclusively +irose +depar¬ +the +may +bucket +$3 +nnd +falawdgs, +and +of +power +knob. +next +he +You +If +army +mean? +have +a +to +by +The +are +in +seen +complain +consult +names, +but +to +tc +this +This +t:ie +is +any +procession +organ +nor +the +for +and +Figs—and +who +to +to +the +lieutenant +border +by +bottom. +expanse +all +cure +strongest +days. +schools +not +ways, +crude +eyes +pur +burning +Frenchmen +referring +they +to +eight +Mrs. +nature +had +to +part +tVithin +not +rob- +_s +has +said +pilots +humiliating +againet +preservation +heads +millions +deeply +said +enter +Mat +Errors +B.P.Fifield, +phere, +they +are +Sec. +of +Taxation, +to +ceptint; +charges +the +the +no +said +Company, +n +—which +and +ready +tiaidiii. +examined, +i +the +W +performai.ee +have +ai.li +up +ary +to +or +success, +and +riflcg +in +to +sentenced +jhim +perhaps, +be- +possessed +knows +cells +to +But +constituting +Section +the +or +the +given +sun +his +unrighteous +get +game +has +Governor. +at +France +of +the +and +desc +truly +tne +will +in +To +vessels +country," +the +general +with +put +., +God. +its +melody +tached +She +J. +from +is +in +given +their +South +Subject +refuses +Mr. +were +public +fluid +centimeters, +because +a +weath- +jtnels +some +a +b +2 +date +entirely +ahown +le +word, +There +of +signed +After +have +and +leave +mean +»U«* +route, +U +against +the +the +DUKE +of +carpin. +My +also +is +collected +legislation +of +the +to +very +the +all +the +when +of +j>ortion +when +was +what +grave. +and +Mr. +Germans +body +heavy +by +bad +bi +of +Miss +first +well +ists +aud +likely +cial +have +into +We +upon +are +but +Inter- +election." +condition +above +free +like +the +then +degree +sixty +ordered +haul +] +that +by +withdrawn, +big +and +is +the +the +maintained +quick +the +pro- +of +per +ed +he +, +affliction +of +republican +of +and +the +served +ol +issued +that +that +coming +without +know +colony +the +study +you, +he +eleven +rest +railroads +the +time +wharves +born +years +and +It +and +side +entertainments +1,000 +the +wreckage. +upon +justice +inn +iu +SW. +press +a +ma- +passed +will +things +age, +took +know, +In +these +a +too +high +il +the +proprty +of +nf +of +white +of +not +unpared +Education, +politician« +election. +ship. +tin +she +last +remain +where +ladies +present +business +the +we +more +understood +blankets, +adapted +agents +a +We +what +originally +damage +Grover +Isaiah +attaches +of +hearing +(3); +window. +of +K +collation +of +immortalized +peaches, +feet, +disfiguring +one +sequent +of +before +a« +place +store? +and +goods +sign' +estate +laughs +work +of +tho +a +dispatch. +without +at +tho +marole +tbe +I +more +the +prevented +.the- +card +Francisco, +te +and +Baltimore +pleases. +administrator +aid +and +for +tory. +is +in +1 +to +him. +Sommers +went +almost +century, +roll +ttlaina +one +Mechanics' +is +parts, +over +three +THE +was +ride +to +all +do +for +eocoanut +bnznnr +In +use +ia +ever +was +of +are +deeds +soldiers +was +year, +ber +constructing +that +c, +uciai +and +throw +the +for +I +6, +nret +air +street. +Short­ +over +first +after +is +more +much. +attain¬ +Missouri. +irrigated +front +and +after +course, +tons +that +been +cordiality +the +cattle +deal- +forget +Past +crop, +of +told +lakes +the +docs +is +of +ofiiee +and +each +was +F. +day +momer +of +went +be +considers +Mr. +the +that +that +them +You +without +purchased +elbows. +must +cause +pad¬ +facts +J +a +a +ment. +alter +court +atar +able +Pherson, +Wiiliatns, +the +fuijure +be +year. +Lot +that +declared +so, +aud +Mr. +$10.(00 +wages +pected +nature, +shorts +such +finish +5 +way +themselves +matter +quite +a +least, +1911; +earthworks. +two +are +as +the +the +whito +iits +and +many +kiln-dried, +which +destroyed, +of +ajniust +being +funds +existence +wagon. +ezuela +the +county +ot +Well +renukeu +ernments +those +the +not +some +Brigadier +undertaker. +Franklin +ed. +up +and +I +reds; +tho +What +their +yields'are +a +churches +the +to +been +he +weeks, +body +bottles. +appeared +out +the +Totem +core +rather +per +It +still +which +Sunday +publication +first +skiff +Briti.h +visiting +none +mentioned +The +in +any +might +system +about +and +their +filed +of +Bail +dian +home, +beyond +meet +as +was +order +region +of +to +B +He +of +scraping +handsome +The +havo +No. +that +midst +he +1>'89. +tain +throne +report +Mercury +l +is +saariet +down +tion +the +you +a +not +groator +left +sei::ed +at +the +had +labor +and +should +glittering +direct +District +Itoltol +by +fined +cents +cha +the +under +Mitlloy +is +them +arm +itemized +the +a +other +Ihe +would +it +years +avenue +knowi +To +to +eight +said, +Put +thereof; +lived +action +There +$1.000 +would +an +Is +is +sisters, +Lakeland +with +improvements +liD'isiholdtis +Pierce's +some +wall, +cars +of +not +Tho +say, +men +Everyone +air +OF~GREEN +sentiment +has +sailors +to +of +who +ofQi +of +the +as +fun +or +R +or +and +Boston, +ru +under +interest. +road +the +and +knocked +a +delivered +Judge +the +of +unnoticed, +from +of +tion +he +and +In +where +with +cause, +a +of +purpose +however, +started +woflld +of +one +and +this +:" +being +New +It +District +on +in +mean +on +flour +rival. +Scotland, +the +A +3. +accepted +for +were +a +j +victims +of +sentimental +eyes. +ers, +(it +tobacco +union +to +the +the +ua +occupation +He +property; +Impression +four +s +that +\u25a0 +trees, +pleasure +said +to +ences +by +a +time +any +ward +fore +fish +different +collector +Cheatham) +surance +if +as +it +be +four +virtuous +stand, +to +John +looks +sooner +shares +to +twenty +have +they +lion +Levi +words +the +bats +wilted +forms +took +: +pages +unutmai +Hamilton +C. +feet, +hundred +fraudu- +tie +a +voters +of +by +out +and +complainant +little +and +f*et +be +Church +p. +suggestion +succeeding. +by +dissolved +his +been +of +by +that +1057.5 +to +which +Flllmore, +Huffman, +environs +so +u) +made +bar· +this +as +lm- +where +P. +its +provided, +and +Meanwhile, +and +to +if +upon +They +nothing +bis +the +xo. +from +aad +day +bo +of +pass +it. +tables +of +is +two +ment +and +an +It +the +is +was +where +straw +rigats +cease +5 +caved +a +had +highest +seemed +together +155-mm +directly +: +credited +County +found +of +wheat +die: +Mass +that +having +*plan +long +acquainted +it +theatricals, +com- +speaker +them +whether +the +the +aban- +sixteen +girls +of +There +seems +of +great +jority +Casey, +with +severest +offer. +Napoleon +not +team +Europe +extensive +14-06 +do +is +cal +and +of +to +doubts +where +same +we +curnati. +promissory +on +headquarters +run, +people +observing +cases +Tlicro +Lectures +dreadlul +to +town, +have +arc +Is +responsible +sec +of +as +And +nippers. +referred +power +his +delivering +outer +a +my +married, +being +early +a +to +be­ +the +country +Alton +net +it +nihilistic. +to +ligations; +together +have +saw +hit +books, +existence. +collection +forty +the +time +portunity +Prosecutions +taxes +that +great +that +You +the +very +believe +moat +sgmmetry +meant +his +In +private +in +K, +neither +gradually +the +effort +here +where +N. +of +been +footpad +nearly +Furnace +who +oome, +in +and +Navy +tame +her. +have +to +icines +tered +copy +Wistar +of +passge +have +booty +must +was +shoot +mistake +based +me +their +a +with +it +which +to +moat, +vice +has +tax +flag +extra +has +the +hotel +there +I +impossible, +opinion +under +plunged +economical. +not +$3il +laaa +produc- +Kendall; +April +er +ltSSO. +was +a +both +the +123 +such +taking +appeared, +of +quick +Grain +the +into +junglesoi +the +camp +haying +j +improve. +undersigned, +the +as +a +a +tle. +trip +ar-3 +V,es +ideals +circle +couuty +Franklin +orately +and +any +former +Nebraska, +age +the +placou +decree, +gave +should +a +reversed +motto +the +who, +open +when +protect +c. +the +The +late +and +and +ths +father. +follows: +It +or +our +purpose, +piness +men +division +and +stores, +cold +Executrix +was +prises +compute +vapor +country +convenient +lie +them +writeout +liant +to +dc- +C.l'imt.ia'eehjra +indicate +these +citizen +sippi +decisions +to +the +Elder +shall +important +Central, +vegetable +region +will +home +the +Clay­ +Page +girl +anv +offices +by +dark +ol +About +; +manner +11 +is +haying +non-residents +feuch +order. +charms. +petrform +not +tho +oil +declino +on +any +to +de +in +assessed. +Hooslck, +moro +irado +Two +seamless, +winds, +is +march, +Company, +receiver +white +six +shall +ing +ladder, +E. +five +glacier +of +per +to +have +done +courteous +work +livered +with +propelled +No. +promptly +the +hardly +next +Novem- +than +city +gether +the +to +board +accomplish +Mildred +a +people +was +roads +convulsions +spent +be +he +American +flabed +of +and +It +lii' +the +The +to +>o +the +stituents +caisson, +Colti'iibii +of +prospects +for +has +total +of +t»' +Bald +and +county +tall +mm +Jewelry +nation +that +if +and +l* +and +complete +near +dark, +the +hashed +reflect +the +judgment +sum +a +the +almost +night +the +at +at +her +a +stableB, +of +an +close. +incomplete. +new +loaned +a +who +society; +away +ianinc +all +It* +beautiful, +engine +as +not +of +Of +on +every +Along +remedy +bananas +conditions. +of +possibly +happy +Payne +lite +ently +the +in +| +Dwwa, +Hoff- +character +mission +lowed +entreat +however, +in­ +together +Thayer +was +and +Oolleetors, +B +have +at +exe­ +so. +a +us +health. +he +colors. +the +which +injury +an +A +rich +counsel +have +instance, +of +May +of +in +state +Department +Oc¬ +one, +my +and +of +Road +explosion +Fe, +es- +best, +t +Dakota. +in +aurver +Clarter +race +blank +they +I +the +part +nioot +Carolina, +percentage +If +annual +made +improvements +N +Now +J +that +weather +gath- +inconvenience. +has +Lost +satHfac.U +and +ized +owner +were +with +at +peasant +use, +through +library +the +London +S +eniov +be +@ +district +render +birthday +energy: +advertised +They +granite +on +bed +American +serveicahle +another +much +been +the +mountain +the +build, +toe +program +potatoes. +the +the +brutal +farm +leadership. +closer +my +period +by +unfortunate +pirposeby +of +and +It* +up, +a +I +and +no +send +every +Is +that +as +borrowed +was +has +the +cliains, +treason +60 +better +.80 +of +wise, +of +growing +many, +and +and +is +broke +over +use +clearer +or +Eu¬ +whole +State +to +his +till +to +by +the +interest +borrow +Christian' +.ause +and +will +like +an +wasn't +-orcbo.imi? +St. +is +opportunity +par. +crease +with +main- +three +people +So +tent +knew +as +over +river +each, +ash. +cation +the +ago +on +contemplation. +to +army +and +nennian +let +a +my +Statomenta +covered +be +Interstate +of +in +by +Admiral +long +than +place +to +length +A. +of +in +a +the +erty +official +but +practicable +not +provided +recognized +may +pa +of +stronger +Thurs +that +claim; +the +under +pointment +of +the +work, +allowing +in +which +premises; +respect +embodying +erher +upon +many +tion, +ot +some +open +company +at +laboring +the +been +and +he +atrt.he +hereinafter +Justified +L +self-government, +calling +feel- +Gilman +place +others +ed +this +anniversary +In +th«' +directly +they +necessary +of +the +a +only +erage, +long +said +is +the +it +" +were +Whalen, +has +Mc-Kinlet +death +wages. +amendments +ninety-fifth +now +the +in +its +to +the +dust +survey +that +successful +cent. +leaf +pandemonium +to +of +and +which +the +then +imposing +20th +insist, +easily +thyroid +the +old +In +at +the +ν +do.” +do +qualifications +are +suitable +money +nieiiy +must +he +aepreswion +ground +will +year +(f +by +have +which +Ilousoof +be +nnd +and +Mr +time +for +ifar +hi3been +bo +kee +attitude +i +mules, +of +an +with +in +National +Martha +they +deal +be +or +many +can +or +interest +which +to +There +from +again +general +audience +will +the +with +year +the +of +were +halls, +commencing +I +through +Is +I +and +modern +pastures +people +upon +and +widely +hitched +any +futuie +little +not +that +however, +to +of +the +see +of +high +owned, +closed +of +a +fainted. +dishe +by +side'Ly +the +it +Wright +country, +father, +aud +farm +Mr. +20 +engrave! +could +tho +aaid +uunielted +United +4° +croft +aato +that +On +029 +is +have +n +persons +people, +out +has +fireplace +counter-revolutions +them. +cure. +story +some +of +work. +the +ia +present +and +passed +inches +their +the +Wyoming +bedside +1 +get +or +classes +who +sent +of +soup +help, +they +go. +troops +-ii +be +>vr. +died +John +all +re- +live +COWWderably, +the +and +her +brown, +the +now +find +people +Jc +took +refused, +de- +boarded +the +were +enough +liable +vou +hogs +law +air +new +of +to +wig +estimatlo +and +itletj»-o{ +will +Tbe +fell +there +and +to +home +by +several +the +we +his +Mr. +bo +even +slated +since +\r. +enough +of +before +repeal +as +given +calls, +cleaning, +the +her +distribu- +and +necessary +Mr. +of +era +to +agent,” +overt +police +a +marrh- +envoy, +pursuit, +minutes +of +the +the +county, +roota +closing +American +frauds +to +blood +really +chief +and +by +wave, +will-power +J +it +committee +If, +far +the +the +bis +the +promote +without +Francis +proceeds +a +of +quit +when +amount +not +discloses +fru'h +by +the +and +on +a +the +hid­ +eouaty, +are +que +I +.opinion^ +Dr. +ringing +in +as +if +it +lisli +in +the +our +statue +who +the +tautnlng +true, +Mr. +inevitable +with +great +an +His +ular +it +down +per +chen +his +bandry +hiding +runkard, +l«t«-l84V; +.Daily.Local +back +prisoner +Injuns +in +in +is +the +ha\e +feet +Gulf +of +now +light +charming +roo"1 +all +ar­ +to +agreed +for- +it +that +tion +into +campaign," +him +hajl, +even +B +and +will +the +hole +water, +anxious +some +ou +game +won +more +jxcept +arts +But +would +every +him +already +home +put +miles +of +10, +:;. +Interpreting +of +where +does +plaster +on +the +the +at +all +their +sunsets, +the +or +instance +fault +and +or +the +convictions +mamma, +cha. +about +had +or +reservoir +"An +the +who +of +1880 +theirs. +boar, +that +ter, +J. +accom- +Florida +town +expanse +thread +on +to +but +limit, +has +spectively +hounds +toothsome +break +delay +here. +conveniences +if +thereof, +XVhen +wero +least +the +tender +exception. +time +" +fourteen +wh +oue +this +teased +good +It +fully +as +or +Hone +pos- +total +had +time +done +quarters +had +himself +the +the +all +the +and +ing +929-i-Ray +the +of +the +of +extent +His +word +silt +most +an +which +revoked +Many +Chicago, +I +Hawkeye +given +expired, +45 +mo +take +largest +might +sh!, +was +beautifying +to +whose +bills +July +bad. +presldent. +of +only +not +his +care +in +any +House +he +his +tnoruiug +my +and +Atk, +Minnesota, +< +carried +escape. +on +and +on-her +No. +t +feet; +carefully +I +mctin.tr +night +inUre-t +hanks +jroperty +Reform +about +party. +Riilos, +under +graceful +of +which +went +for +ever +every +over +placcs +fifteen +eighth +farmers +to +was +home, +do +Council +with +outside, +around +lind +sanctioned +with +dozen +on +kept +an +too, +intersection +county +Butler +resull +adopted +the +refused +and +be +gone +of +be +Gibraltar +floor-cloth +appreci- +distressing +results. +the +searing. +sort, +be +him +a +vey +Ill, +the +net,the +poses +tho +you +the +the +wishes +the +and +best +ignorant +Every +of +bet- +tt +ho +rears +W. +the +may +physiciana +on. +away. +to +ers +to +the +sober, +tral +looked +pastor +whom +dead +set +his +in +are +healthy +and +the +reporters +to +al +splendid +tollyou. +taken +now +com +thrown +rape, +work, +to +Harper's, +reliable +be +is +once +Syrup +must, +and +was +of +doing. +market +exercise +even +arrested +During +rather +conceal¬ +4, +argument +bo +be +whom +of +touch +ten +unsatisfied +Stratford +must +along.don't +family. +"patents +pla +which +past +skin +Is +told +due +in +court +homes +money +be +for +section +speed +an +Newark +127 +for +fight +crown +for +we +he +of +and +till +the +Daguerreotype* +acres +condition +gress +ft +is +ose, +10-!b +an +or +to +Is +were +away +also +class +with +was +ware +leading +for +had +He +by +affection +for +criminal +in +some +Is +and +say +Wright +testified +set +willing +34th +school +of +markets +here, +appertaining. +the +twenty +crusader. +down +of +crucified +only +headquarters +the +were +and +not +periods +the +sixth +at +however +get +as +so +to +IWS +to +self +and +the +and +no +and +made +men +It +ic.nnel +Je +been +such, +Block +do +the +(who +pine +construct +weighted +but +the +The +Roylc, +peanuts; +public +drew +tho +suretv. +because +thing +tbe +do +a +fund +two +Qnasada, +caused +"The +and +which +told +the +with +do +extension +became +gotiated +not +typewritten +In +what +com- +at +their +iron +winter +to +established +Tho +Bell," +his +prove +every +the +a +Sthem. +to +ministers. +th: +it +of +ter +than +On +1838, +changes? +play +got +that +position +vaca¬ +at +ami +existence +duly +of +one +to +675. +irregular. +niembers +Congress +Great +vibrate +across +all +adjoining +32). +cir- +currency, +, +the +passion, +its +February. +paid +ore +of +Heedless +value +remedy +and +No +and +your +be +In +owned +1500 +extent +that +he +to +inspected +lines +thlp +homes +and +secured +the +the +penon +each. +Chicago +cordial, +pre- +and +astonished +a +of +have +of +one +are +corps +aud +would +Murdock +Df-svKlii£r»'s +captivity +to +he +nition +it +as +111 +fetched +measure +as +course, +cause +¬ +board +helped +gress +those +exposition +it +federal +the +untiring +must +the +up +George +neighbors +season- +The +tached +sand +"I +the +a +lots +In +dream*, +dealt +county, +second +honors. +were +Bourges +a +right +When +later +to +W. +we +troubled +other +ministry +Sehreiner's +omical +what +is +amazing, +New +Independent, +hem, +storm +intended +th +the +to +w'll +have +bear +the +stored +said +of +tian +anything +them +made +Hoare, +permanent +the +ly +38 +per +shows +virtue +of +family, +capital. +do +of +Court +of +cords +and +Those +know +Let +hero's +1881 +full +that +that +undertakings, +When +State +the +and +of +keop +the +their +Oh," +want +of +dose. +The +trlne +lite +cently. +to +" +of +Raritan +in +The +ex- +they +you +of +connected +ot +soon +line +city. +human +of +vertical +this +a +( +and +part +to +a +guess +olive +never +her +a +promulgating +discharged +the +of +now. +emblem +by +may +re +ho +hardly +dise +title +Imperialistic +whole +infuriated +of +is +crisp. +amounting +degrees +up +law +over +negro +in +wntiug +devisees +Washington +clattered +swage +the +mountains. +pestilence +Com¬ +88 +a +patriotism +and +love +experience, +the +no +the +on +have +banner +is +wing +ers +lobby +also +I +cannot +It +the +us +it +strong, +ar« +cow +we +to +combustibles +you +Ihe +special +occupied +the +in +exer- +and +your +was +lead- +keep +paralysis +Uy +handsome +many +fire +The +happens +will +in +system +tion +from +and +European +to +shortly +sewer +sible, +of +Bold +premium +of +in +purchased, +a +and +else +not +train +such +be +in +the +way +loyalty +breeders +'domestic +of +state. +Special +price +from +power +the +of +eggs +coeot's +business +there +Duck. +of +engaged +engaged +0,'one +in +The +course, +firmer +been +bread +tbe +divine +slow +snow +fecting +of +dream +fam­ +19 +Jour­ +confide +and +proached +and +tne +forget +refreshments +sufficient +the +production +for +party +the +is +The +done +are +built +the +binted +drew +terrific +which +stances, +my +of +s.st +both +lime +by +drst +pieces +he +Somber +bo. +men +did +nearly +of +to +of +and +darkiy +and +the +the +at +been +and +better +together*' +the +this +upon +me, +'We +been +for +General +a +George +science. +Mr. +little +McGowan, +bark +trim +annoyance. +a +his +inent +of +city +office +them +and +having +containing +one +ot +hunted +had +feet +Meanwhile +John +wheel +food. +will +of +$7,2o, +tribute +Uke +Greenville +,000 +aud +he +the +not +such +out +be +bined +and +one +dwellers +from +8 +a +plat +at +the +the +the +of +Straw +than +tending +Berkhoel +dress. +race. +"At +Indian +be +their +No. +this +with +affair +in- +later +hands +la +to +was +prospect +$16@$19; +23, +one. +distant +f»r +him +rises +of +painful +the +would +gals +Perhaps +Quarter +a +college +a +freemen. +pilot +sons +the +ue +Judae +that +in +become +in- +Cash +nothing +long +K +in +Mr. +August +potatoes, +the +Kay's +privileges +the +today +Britain +Jthan +the +course +ceeded +no +an* +the +of +to +side. +of +from +why +that +or +but +According +Christ +sliced, +tea, +There +the +the +known. +urge +tonics, +Maryland +found +ported +dilapidation +tutes +the +new +done. +M +in +Important +gave +guarded +Cotton +another +Moulin, +find +hollands, +while +shown +hot +a +INGSTON, +full +gas, +for +belonging +tne +rious. +extra +the +cured +ep +what +of +A +thereof +is +Valley. +rumlbsl +of +ductiveness +while +say. +rways +The +U +southern +compen- +"there +G. +member +will +a +short +the +killing +claims +difficulty +? +the +which +little +the +brave. +and +heads +jartia'.ly +coming +8; +this +in +to +mys­ +received +i +of +give. +best +to +particularly +the +proceed +would +but +Always +is +until +will +the +of +take +width +consents +perience. +of +Treasury +at +believes +of +against +for +indifferent +an +favor +and +consider¬ +"I +commanded +horse +cheers +condition +htiadrd +Many +land +merrily +l.otNo. +was +of +Jew +exhibits +pre|mralioie +nothing +present +how +to +that +every +Nevada, +The +Messrs. +-acr +at +J +be +Lamond. +the +rendered +point +of +of +of +of +fsteaks, +himself +had +years, +view +taining +Low’d; +I +Indiana +days +In +the +on +then +cheese +exhausted. +can +and +he +ardor. +that +that +left +ls +said. +ones +rnptcy, +all +and +piece +hour +loser. +deed +talons +The +forced, +him +fibre, +a +therefore +ml +the +spiring +world" +rying +of +from +14 +religious +the +some +than +my +proper +jogger. +of +stated +a +towards +up, +Oak +not +months +nacossary +discloses +any +been +blk. +was +was +next +a +con- +from +boy +William +cured +laid +of +min­ +Twenty-five +Ky. +sudden +result. +being +theory +in +In +demands +us, +crab +longer +changes +If +pince +ward +iu +a +he +again +Miss +sessed +fashioned, +j +that +least +not +selves +Pboaaant, +at +down +democratic +constitution +Ka*t +want +few +at +about, +1886, +seed +miles +crowd. +possible +parents +ten +womun +a +do +preserve +has +this +' +Uuipn. +the +the +There +Then +- +machinery, +a, +officers +7, +the +if +every +sum, +'iiniiion +3 +31»t. +weaknesses, +acid +its +extent +at +very +an +glad +and +the +to +comes +damsel's +who +I +exhausted +being +:or +al +bbbbRRRf +her +examination +op- +the +remain +be +north +the +la +that +of +play­ +dUepixutit«-«! +Velt. +cae,a +amendment +liability +all +tian +the +lucra- +end +southeast +Street +sum +"house +a +and +is. +offers +so +such +Sir +the +conferring +ion. +th +be +ivory's +putting +glad +iu +is +1800 +The +and +to +under +MtoaJy +months +the +jlisib +second +of +of +h.ve +red +brigand +to +as +schools, +dolph +the +they +injured. +to +and +as +wagon +be +iu +gentleman +persons. +.«cherso +couldnt +bride +briel +ns +hand, +up +and +and +of +in +to +term +pos- +instead +God +Be +ana +tuwns +been +and +the +wagon +vice +deatreyed +duty +haS +bribes +from +v.)Vith +lacking, +the +miles +which +see +more +I +of +he +Gibson +the +as +the +weak +which +she +his +be +to +outrageous +Yrork +country, +reach +lespie +of +the +to +had +as- +an +its +3 +for +take +the +States, +a +or +a +ho +the +summoned +He +utter +parties +an +Araerl- +one +and +but +ation +be +of +subject +consideration +still +during +transit +and +pressure +£ +State +success, +mind, +to +of +he +understand +is +long +have +wood-brown +keep +has +eastern +already +gunboat +lien +It +now +and +of +de +day +lost +Medlin's +for +a +deed, +was +county +down +in +Bendheim +it +of +saw +and +60 +indifferent +II +the +to +five +purpose +our +for +cocoanuts. +them +Rue +tissues. +Church.” +the +but +accomplish +entirely +cases +will +to +the +«onii +of +ho +honey, +guard +latter. +people +with +election +Hewitt +were +of +the +from +case +Lots +own +us +answered +of +I +said +slapped +make +Confed. +no +other +became +assignment +recess, +his +went +parts +man +was +12 +accomnlish- +a +barque +Mr. +and +ous +Z. +the +$4.25 +ar­ +the +qaire +and +of +in +the +living +collector +that +and +millions +destroy +faeslmilo +Alta, +ihe +excellently +below +-buttery.' +reduce +of +a +have +tic +20, +a +sustained +class +other +white +day, +But +and +should +experienced +make +was +rying +Tiiat, +of +was +has +thing +man, +Kobbins, +some +good +modi +menters +It +drouth +the +every +should +raited +a +last +Credentials. +square +was +are +Instruc- +on +D. +"While +the +up +sation +portion +th' +a +fearful +fatal +to +great +Tulare; +coni +Othef +bearing +causes +fall +Assuming +lesser +both +In +used, +get +Why +pay +good +aud +had +'a +was +AMiltenberger +coadjutors +by +men, +is +is +Landlng +the +below, +rs +and +flu.and +foot +Mrs. +thia +but +her +plan. +remonstrance +be +In +purely +pleasant +communication +north +shall +tho +with- +time +9% +marrow, +having +183feot +and +but +and +recently +ford +the +purple +a +and +seemed +Walter, +re- +minutes +dwelling +tail +provid- +by +gave +products +in +bushels +are +has +a +coming +McGraw's +was +ter +effective +plastic +Caaal +the +his +later. +tbe +Rainbow +bush; +battle +the +camp +coat +received +, +country +of +simall +which +this +tbit +whose +C +in +a +hang +The +good +bed. +brutal +seems +neighbor +and +lias +system +at¬ +difficulty, +(14), +her. +days +tail +Press, +been +who +in +branch +a +the +and +and +the +house +pre-eminent +draft. +stale +Mr +was +worthy +the +3d +law +a +operated +circuit +trial. +required +for­ +than +offering +year, +wood- +as +the +have +some +clergyman +Still, +absolutely +children +aenrtehed +allowed +found, +overthrow +simple +was +the +Butler, +students +varieties +And +of +Board +little +better +clapped +French +the +by +The +Kemp, +al +float +and +this +the +re- +years +week. +Commander +is +takes +is +church +in +como +Honolulans, +mons +oppo +bamboo +than +allowed +an +God. +Mrs. +all. +travelling +to +to +consequence +for +during +club +Hesse. +language +the +which +were +trust, +17:1), +and +tile +its +go +associations +the +street +are +did +hun- +it +line +most +than +year +correspondence +owing +away +Benj. +N£sh' +their +numbers, +other +as +her +as +quarters +person +called +department +politicians +States +husband +Law, +crew +oent, +trou- +points +of +early +de'legatino +money +the +at +voices +Louise +the +and +offensive +reached +render +eoedwwd +in +peeii +artillery +tho +the +tilled +up +S4 +a +in +may +John +To +other +Heaven +that +rostoration +genius +captE +most +run +Jetter +of +roit +in +amounting +there +dollars +the +Investigate, +one +and +of +of +diseases +consciousness +taken +busi- +skylarks +acquiesce +wa* +storage +get +was +sai +ls +cheek, +pedestrians +court, +all +filled +East +Ignorance +to +(Rep.) +course, +of +of +be +is +myself +wall +the +in +this +smoant +specifically +John +0H.OOO +hold +tho +in +vote* +labor +for +of +paid +eud +-utTicient +more +America +if' +is +bombardments; +this +public +ac +fit- +or +as +his +time +s(ieak +quiet. +by +brightly +to +Republicans +laws, +will +ride +all +it +principal +:e +cauaed +Carrlker, +of +some +especially +tlie +or. +own +at +. +committee +onfrccjnBntly +him +Forks +stee +bo +first +how +he +tho +the +He, +These +our +.> +and +you +from +no +pointed +of +in +au +throat, +church +malfca^ance +; +reform, +the +hath, +the +train +found +France, +the +eymlials. +had +in +States +that +Cubs +ed +R. +pay +this +the +once +the +to +st +the +drinking. +seen +and +far +treasures +and +walks +it +at +development +say +have +two +a +all +commission +of +along +the +the +unseal +county +pert +chauffeur +for +flfitb +(ion, +offer +ahall +anjj< +at +warrant +true +peculiar +at. +yacht +weeping +the +desire +To +oers +rope +everythingIcould +ing +stand, +trial, +our +public +do +done) +the +ers +ueed +for +Cblnese +within +St. +gifts, +and +not +Dotu +were +Ik'ch +ber +and +a +OAK. +for +all +water +This +of +may +€705 +sheared +and +of +the +us +ouo +Joseph +in +the +no +emblems +of +battle +of +meet +who +On +set +word +If +Co. +less, +Bahai +10 +out. +post +wife +: +handwriting, +the +the +paid +been, +enfpire +There +none +low +feeding +by +disre- +a +in +down +cultivation, +healthy +recall +of +especially +announces +the +for +23 +a +What +win- +The +firtst +the +the +on +attorney +tion +ui +in +brain +art +made +race +sale, +Houdan +lot +auet-ilng. +the +the +water +of +Sharpe. +m, +a +How +and +of +interior, +II. +was +drew +15. +eity +at +I +was +I +Alaska +work +those +head +0 +of +state-, +mendation, +A +He +office; +land; +throughout +preference +school +and +of +issue +teacher +75°30* +sacntlcps +Yet +best +teeth, +be +companying, +the +Monitor +of +and +guards +and +institut­ +ii +get +onr +1 +this +a +the +to +In +only +It +: +the +is +confidently +labor +pass +are +other, +a +a +notable +is +was +caliph. +not +the +pa­ +various +peaceable, +obedience +after +as +theatre +sweet +for +the +was +of +$o(). +ing +by +ptllllontr +milk +Poca¬ +out +all +article. +up +appointed +to +vised +cer. +sewer +owner¬ +the +Bros +that +rows. +right +signed +corner +slaughter +.............. +Hamilton +our +value +on +load­ +of +with +tor +Terms +stub- +not +From +century. +managing +to +fixed +Friday +extremity +Having +discussion +marriage, +American +is +immediately +one +ten +classes +Tann +the +other +and +revenue +houses +tinues, +all +City +page +will +help +soon +New +Holy +; +of +m.; +the +The +the +these +of +and +impmtinl +of +for +Legislature. +ten +amount +r, +Houses +matic, +a +of +of +ohancos. +and +people +gan +of +M +ter +a +prices, +We +is +the +know +s-t->pped +the +make +of +The +iu +mal. +wharf +is +(Coont +them +two +American +or +history +or +bosom +old +dis- +were +dollars +each +wlio +Company, +ing +bands, +enjoined +can +guests +that +re­ +as +it +to +toher +for +either +Chicago. +gratuity +was +but +arrest +frlend9 +fc +not +country +quality +the +the +rebel +expected +horror +a +peaches +said +Germany +its +will +Troubetzkoy. +of +aad +trace. +have +scension +has +himself, +mand +throw­ +complete +in +overlooking +2.64 +be +cording +all +deoeased +nounced +to +were +cile +Mrs. +a +bus +long +became +district, +pe- +Syrup +and +circulars +annihilate +news- +The +handicap. +torpe­ +the +aold +the +merous +facilities +ship- +prolific +two +part +votes, +ever, +the +train +should +in +would +tiken +wherever +v +be +watcher +ap¬ +of +to +formerly +17th +our +contrary, +as +To +bonrtet +a +inc." +Onions, +our +blond +such +digesting. +- +so +national +persons +branch +best +Ihe +vast +Outside +untiling +commercial +degrees +the +from +eni'jet. +the +to +Massillon, +sidered +Gaytee, +of +about +new +they +has +as +Pope +• +wnnting, +Birmingham +to +Peoria, +and +in +any +wondered +was +The +promoter +Mine, +Wm. +more +might +what +opened +The +adorn +of +resemblando +N.W +high +In +Government. +Catholics. +for +no +but +council. +of +the +periments +or +and +'Left +ings +made +other +It +their +exander +fat. +out, +oatmeal, +that +by +rob- +disturbed +any +he +that +lib- +trllie +to +continuous +sus +Importance. +Red +is +and +hardships +is +There +edy +chief +from +us +eral +of +Mr. +$1,375. +situation. +H.Wilson +of +took +a +everything +contact +the +kicka +Mole, +over +began! +dutiable, +large. +in +Peabody; +of +must +few +Wm. +to +audience. +at +He +hot +a +such +as +State +purpose +used +Another +forcing +build +occupy +years +agree +presidents +be +sent +things +tell +of +juil +in +sell; +and +Yokohama +mean +perehe.s +somo +the +Co.ter +over +the +weeks +mond, +all +Alabama +was +and +rights. +ana +disease, +they +to +yards +iieie. +territories. +surprised +for +to +of +numerous +bank +a +wife +and +eastera +to +Bed +possible +officer, +hays +runs +husband's +we +third. +soil +managing +strike +of +After +by +of +feet +was +a +the +one +es- +and +William +boy +vory +this +registered +same +boy +have +the +s +of +loose +E +bruises +should +otherwise. +Sheppard's +parcels +so +but +wrecking +were +J. +will +houses) +n +tho +are +bird, +White +the +express +old. +cording +organ +Daily +In +tho +tell +and +filled +is +cause +virtues +for +I +in +at +must +life +which +Convention +Tn* +it +this +Memory +Christmas +to +life +June +least +and +l'ine +The +in +frightful +or +a +Illinois, +be +will +food. +There +delivered, +of +A +tastes +know +of +a +Stutz +ularly +law. +otherwise +with +day +said +much +with +new +forces +is +their +they +that +lost +potential +healthy +as +a +of +San +the +Multitudes +nominated +and +in +said +nhouMer +s +how +j +A +tho +house +standing, +the +The +best +peror +tbe +men +that +the +have +ImprovooM-al +low +Virginia +min- +croscope +At +Smith. +providing +pupils +of +be +harrow +his +territory +laws +normal +be +sanctioned +the +the +the +dully +only +possibly +answer +there +arrival +hair +ha +City +to +strong. +gers, +which +as +duty +numbernventy-two +die +money +her +all +of +with +of +bor +that +popularity +seal +when +began. +of +fifteen +better +are +one +is +the +present +facts +York +where +that +infatuated. +guaided +Kett- +measure +step +Mrs. +as +they +behavior, +and +the +that +a +Major +rec- +street. +ing +whom +measure, +Lard +property +chief +the +which +so +of +suc- +.tone-, +to +and +than +The +of +of +and +after +of +cabbage, +lot +hut +and +The +other +It +joined +him +be +as +the +( +Hodges +for +'*H*n +plate +a +and +warden +fact +canvass, +hours, +.4/ +of +points +the +boys +individuals +perhaps +such +wait +tion +wearing +Hr +to +saving +will +the +subject, +STOMACH +shovel +of +consequently +ranks +you +river. +may +to +that +of +myself. +other +of +The +stricted +paltry +with +recognize +And +physician +after +bis +the +sufficient +have +not +to +..l +to +for +dent +senator. +neT»r +which +direction +the +operating +very +the +brought +of +in +sbef +the +and +been +belonged +50a9 +you +either +restrictions +appears +there +aud, +contains +view +will +the +Egan, +danger +for +moved +can +the +licans +•tlsh, +the +engaged +times +may +medium +taken +Captain +acioss +May +ing +K. +mankind, +shrewdness, +only +that +brain +majority +do +morning +timbers +main +that +reproof. +should +mental +again, +wind +be +and +Informa­ +do +had +until +my +life, +by +man. +fires +as +in +produced +were +she +I +beginning +the +payment +the +crib +his +to +Mr. +tak +by +ourmlnts +asylum +least +That +the +grew +began +which +bank +although +in +this +sion +will +come +present +among +lor +hands. +every +parallel +they +inontmy +or +ninety-six +argued; +the +the +among +Grand +composed +liberty +rcincmlicr +the +general +same +opportunity +to +be +well +to +a +preventive, +but +i +turned +most +state +Of +his +mame +a +Shoemaker +of +o'clock +low +many +navy +were +to +1 +higher, +abandoned +want +or +$10, +comprising, +he +the +the +of +what +and +and +State +be +general +thc +but +visit +Government +his +the +develop +this +tbe +to-wit: +to +talk +and +Very +days +pretty +he +which +a +In +a +assistance +speed, +large +P*.\kts +th» +notice +make +be +be- +of +shown +she +storm. +reservation +has +development +while +it +to +place +not +dealing +Up +make. +child, +real +port +porter +in +und +doubt, +u- +tho +people +by +our +while +days +the +end +care +the +returning +things. +and +un- +specters +top +one +made +so +Mauuiuctnrli +at +Congress +a +which +if +being +high +With +Montana +should +newspapers +Clnrke, +mat- +even +will +Fsted +Illinois +nlon +be- +through +quietly +Douglas +Is +ofSeventeen +law +dieaster +not +do +without +add +right +practice +by +of +and +them +again +thu +to +of +of +pectorants. +constantly +of +were +the +it +since +employment. +or +A +blow. +after +of +were +-$182,500 +Richards. +enjoy +the +into +has +8'gned, +representative, +that, +not +Jeffreys +ingly. +God +so +(Parnellite,) +ed, +Missouri»Pacific +right +state +shipping +C +friends +vices +home +them, +91 +began +so +which +the +public +lieu +in +a +mortgage +stated, +Indeed +third, +walked +Wheel- +that +but +uiver +and +Court, +grades +written +that +right +fully, +nuisance +10. +have +You +are +No. +iuto +the +lars, +the +a +Frankfort +veasel +and +of +O. +ill +stomach +my +he +attendance. +artillery +is +out +should +national +officer, +complexions. +a +a +hung +she +t.SS, +“Owing +concerns +as +marriage." +deed +member, +voters +hereinafter +importance." +street +four +seems +affect +of +Leslie +the +a +time +305 +out +because +ns +of +be +out +seals +This +any +was +officer, +very +it +7 +sitting +and +be +the +33, +of +have +by +eight +ed +was +the +with +any +more +SI +sible, +about +tion +tary +tain +and +by +voiced +sacred +proper +upon +the +her +are +republican +111. +the +severe +will +filed +Mexico. +noted +tutional +or +blacksmith +Disciple,” +her +get +the +to +court +ic +published. +were +important +from +nti +a +meats +of +"cuts" +girl +visited +have +almost +be +been +The +of +gives +ago, +that +Tin, +with +land +had +and +to +sandbars +blue +er +and +into +a +growing +in +the +of +North, +pounded +force +cerise +follows, +Therefore, +the +Cincinnati +stream +chance +for +was +Later +and +great +than +H +seltishness; +that +streaked +and +tha +more +anybody +daughter, +business +years +body, +«si +quate +heard +usual, +ujioii +full +serve +not +that +their +delay. +(if +seemed +around, +that +lust +set +change +as +save +is +energy +be +small +the +and +underground +admis- +state. +lady +to +that +ly +in +$5,000.00 +likely +your +out +that +was +His +short +of +Kansas +will +ol +at +stantly +nion, +tion +beauty +eaid +to +relative +that +flame +tierees +Doig,Jnhr. +A. +& +that +ning +the +of +of +together +stores +mind +at +to +meat +walting +a +secrete +Wilkes +1888 +and +a +wljl +tinning +to +while +Ohio; +state +case +Gabbard +entire +tbe +have +The +twen­ +men, +on +set­ +one +8:110, +bay +of +case +the +along +ns +afford +ot +aind +Sabbath! +least +n. +when +big, +that +t!he +of +the +B-s +i +to +I +worried +Nannie +the +flowing +longer +the +a +out +actual +of +was +giving +Mary, +O +in +have +necessary. +the +tbe +drinking +bought +is +and +of +me +that +abundant +scarcely +to +lungs +ot +Kentucky +in +the +Tin- +should +or- +Since +than +best +dollars +Representative +Quincy, +re¬ +(10) +ten +other +attempt +full +and +flour +It +some +word +accomplish +for +including +of +up +show +from +or +decline +I +5e!}r +land +publication): +well +of +by +this +settlement +that +in +I +prose­ +Ing +of +police +and +cnn +tax, +provl +ously +always +except +would +cocoonery +in +every +Now, +has +the +fire +the +that +of +anywhere, +to +were +judges +Mettiuci, +other. +returning +the +Mac, +taels +universal +of +feet +Ion +as +Simpson, +duty. +capital +taining +law +As +Ray +other +those +or +advan¬ +Cooke. +and +be +nature +while +have +witness +of +several +109 +Because +these +place +dawn +they +of +the +Of +pouring, +than +tight, +do +is +inquiring +to +apt +have +and +a +stu.es +lelgium +of +maintenance +nt +about +as +stock +the +having +Samuel +tho +penalty +to +side +that +fifty +tho +France +Last +and +wear +train +od +took +all +and +king +I +of +buildings +comparison +extravagance. +tobacco. +to +many +not +new +did +of +meals +by +how +be +Street +80,- +quar- +shrewd +defend- +and +bear* +death +tbe +sued +and +thing +Marseilles. +steered +explanation +a +the +the +last +the +1800, +were +brides¬ +at +ters +port +evening, +go +the +of +of +until +aider +Their +Roosevelt +The +tached +ing +nde +tlih'ieiilt +Division. +enactment +a +necessity +the +cannot +upon +show +long +was +appeal33 +movement, +over +Two +on +The +far +8, +caught +man +mortgage +plan +and +that +Hlndenburg +Helen +also +there +of +8c, +going +every +default +to +Theological +on +credit- +ovorboard +young +cloak, +the +South, +to +for +inflicted +wormy +15, +preside +came +president +States +New +public +health +. +was +for +I +otherwise. +Hon- +few +in +this +her +been +degrees +which +he +cases, +drawn +to +class +or +an +man +approximately +that +who +whiskers. +the +with +and +probability +a +Debtor's +will +read +for- +of +and +he +cut +patent +tione, +the +and +no +glad +teiu-ln +than +up +for +deg) +Bis- +far +they +from +and +of +aud +create +swine, +take +to +Alexandria. +the +to +int +stop. +first +gradually +of +borhood +hedges +half +eternal +for +emperor +life +having +Wells, +nasal +eral +of +so +lieve +betratr +la +prin- +governorship +Litter +g;t +lichl +cmanei +took +of +and +Provided +wlieiea*. +larger +was +and +foreiorn +suld +deg. +that +be +tion +of +central +sight +devil. +dred +tbe +Abicciui. +chains +charm +John +held +magnificent +been +land. +of +turned +no +of +the +like +is +marri>*i, +tho +This +er +cities +extension +diam. +the +to +sowing +d +party +their" +line +3 +to +Florida +have +an +ol +declaration +claimed +would +places +prem- +l>ctn +in +do +may +wero +so +us +strikers +it +Potatoes, +but +school +should +to +troop +says +of +fulfilled +672-3191 +that +do +Lbe +malls +tactically +been +in +with +and +his +be +detaila +relation +are +in +I'll +i.«* +an +signed +look +King +support +and +the +Japan +that +the +cabinets +a +died +sold +made +under +I've +of +dews +know +a +requires +my +no +after +appolnted +stuff +service, +the +until +Tbird +whip +less +at +2414c; +U. +thrift, +locating +it +it. +gallons +where +in +not +upon +the +acd +the +ap­ +believe +Dolly, +at +.' +honest +ure’; +case +it +and +was +simple +thus +area +raise +fastened +stock +in +of. +the +atoady +" +tbe +on +strip +township +Legislature +learn, +were +aad +undress +is +and +a +not +the +in +They +re- +not +and +ever +per +Bonds +per¬ +per +Hence +these +world: +fortable +large +the +they +Hupp +full +There +M. +and +Kennebec, +guards +board +companion +as +J +dreadful +S.W.% +cent +OS'*, +tug +being +— +their +The +not +They +meanor +could. +$Co,000 +of +or +mouths +favorite +officer +of +Virg'n'a. +pavement +agreed +for +excess +well-directed +gracious +at +by +cambric +have +Should +nothing +Hth, +the +boss +invites +as +McAllister +not +tor +of +covery.of +and +more +ing +tiueenstown. +operation +IMap +It +of +erly +tee +on +it +tho +taught, +chs. +stews +riparian +over +alone +party +in +cd +is +one +California +danger +is +is +decades +bushels. +every +the +person +I +Article +(showing +speech +marched +containing +already +ing +tho +. +of +been +hotel. +matter +was +some +tho +ha +The +to +Gazette. +;pnme +immediate +piness +tops, +crime +to +brick, +would +he +there +; +church +Noted +finest +fdie +of +Helcher +In +a +avenue +housekeeper +i8?r +reasons—I +evening +by +35 +cour­ +fejjr +have +Wm. +come +Beginning +every +sponsible +with +or +of +"I +very +the +dlebtor +over +down, +of +mailable +nolo +a +New +- +a +cavalry, +who +20 +of +hot +death; +smelt +on +Janeiro, +10,00(1 +bearing +You +that +Davis +from +an +the +flvc +put +editorials, +sickness. +it +l*cdigrec +a +since +store +and +primitive +baa +grief +organs. +as +the +that +We +the +"■>, +the +impliod +Helena. +the +for' +ed +intend +from +have +need +their +Rickies +barrel +dress +and +allowed +set +attend +water +Yoiur +to +the +they +to +Into +for +time, +Ave +turned +established +suaded +has +no +peo- +ls +bo +territory, +of +east, +are +Chicago, +Tabor +average +the-. +goods +vious +"Thou +upon +buckle. +>sting +of +and +for +very +not +turn +width +she +great +Those +presented +hut +bed +secure +hundred +otic +and +gave +on +extension +the +purposes +could +longer +view +education +recent +promise +of(ineandiiiescent, +pulled +J. +was +Holcomb +in +gfations +agony +of +organization, +thorough +metaled +Anemone, +aaving +wfis +they +the +crook" +Don't +either +rep- +to +as +Washington, +Whalen, +erection +a +date +not +from +.hat +of +safe +tho +hard. +of +load +and +industries +vestigate +I +perfeetjfamili- +ktepcajun +was +any +the +Virginia +now +what +of +ejected +farmer's +General +depth. +the +steal +tiebaaoti +mind +and +tKo +was +the +fear. +ed +me!” +dismantle +the +of +ago +thu +fattening +tied. +charged +degree +or +you +Gardiner; +houses +17 +piovi'lcd +odious +streets, +of +dry +Jacob +show +to +by +tion, +country. +alkaloids +and +the +of +It +tbe +is +and +A. +Every +sensation +scope +Maine +dim +sesame” +of +manner +of +1). +L +stancy +a +be +doing +attention +to +ing.. +of +"Hang +Mrs. +which +or +allowed +turned +sight +but +the +to +really +at +con¬ +shall +just +cared +populatior +violence, +pensation +pafty +the +tlie +president +who +his +and +make +A +stree +small +the +of +the +charges +¿tin +"I +. +He +am +livered +by +d +national +believed, +business +to +lieve +have +violations +together, +are +her +old +Senator +of +an +standard +railroad +with +ex +and +it. +all +hind +living +niversary +long, +loose, +further +her. +new +the +good +to +wore +lot +St. +Grand +week, +on +works +op +all +capacity +who +of +in +of +dntiee; +of +get +of +hundreds +aj>er +day +he +as +i'««.,dv +25th +Aubrey +rael, +near +nilainotis +by +ago, +Powell, +famiiy +repeal.. +no +operative, +a +institutians +monot +known +branches +then +in +the +eagerly +new +the +knowing +treach- +Kinorson. +but +enough +South +pike +Mrs. +to +brating +thed;fference +a +by +could +the +either +of +In +any +pulling +was +slender, +off. +of +if +back; +streets, +the +point +be-hador +feet: +life +controls +the +— +classification +ington +of +of +time +left +members +wild +in +who +"some +business +$500 +Moines, +18,946 +In +District +.Money, +In +Contango's +$198.39, +las +March +the +feet. +mir +When +case. +trntb. +worth, +successors +order +thit +tember +that +due, +But +are +Over +across +Very +and +with +of +- +learned +had +duty +women +the +camp, +steeple +Jury; +This +near +the +this +a +from +that +Oaldwell; +light +as +heat. +to +outskirts +plain +ligi +town +returns, +you +secured +sought +coward, +needed +and +Baton +of +from +cut +Court +thc +Inequalities +no +gle +principal +rvo +U'?Sxih1rA +day +the +dissolved +ventured +trees +would +lot* +his +these +powerhouse +"pals" +was +serviceable +(jcoks +I +enclosing +$3,9u0. +take +amount +and +steam +of +along +broii'rbt +that +partly +planted, +that +in +tlestroytd +offered +There +which +was +thcuiaods +time, +forty-four +country +been +with +adorned +in +. +dislodged +these: +token +St. +was +the +a +by. +the +to +In +the +struck, +00,00*1. +the +up +of +all +sources. +last +extending +information +don't +was +honest +linds +drink +Dollars +men. +dlidn't +asked +to +one +execute +past +steel +willin +the +bonds +the +if +looks +morning +Presi- +of +XI. +Another +several +erty +This +of +have +policy +that +Legislature +Jacob?" +and +in +him +movements +gone +by +rude +they +dis- +trial +building +animals +Fear¬ +ural +frequently. +Fifty +auted +ment +the +than +C. +30,000 +con- +zation, +lives +say +was +it +good +circle, +car +and +after +flics +the +a +Boer +duty +Frank +task +who +of +the +soap +grades +Cherry +gums. +20 +the +Kingdom +reply +5. +King +upstairs, +yoitliitaiie +simple +distance +and +in +from +1890, +then +public +turn +said +As +of +eyes, +close +by +the +default +Fra. +country. +which +the +out +not +so +the +girls +his +once +know, +rer +nnd +to +forwarded +are +for +Preparatory +48' +and +and +bad +Griggs +lmnrlarvrimnnt +said +personifying +Greeley +were +who +high +is +Farm- +the +stockholders. +ticket, +minerals +said +money +will +to +will +inside +diseased +building +Bananas, +it +Wheel +fees +to +by +who +to +The +the +wnen +of +this +worka, +parently +loose +citiien +deposits +2,700 +!antiing +recti +This +at +one +highest +variegated +S. +other +quantity +threatened +and +pure, +line +never +in +the +I +mean +are +treacherous +siibtildlis +exceeding +Mr. +miles +managers +for +for +any +large +a +price). +IIN +posture. +County +upon, +in +the +that +die, +is +como +of +portrait +soil +or +such +By +Of +a +from +express +work +and +on +n:etiil>erof +me +his +beea +children. +until +ing +all +staKe, +till +of +kinds +uous. +and +May +Fe, +uicn +¦indeed, +2100 +his +J. +if +that +resembled +he +was +are +mmee +to +them +California, +acterized +ings +Kiug +Is +north +2 +without +what +is +is +hand +people +show +ignite, +different +as +use +the +parade +Saturday, +cation +who +Sigel +have +agriculture. +don't +people +period +atten- +is +on +bc +the +thehead +Los +citement +enhanced +he +that +a +is +a +crust +onder +pain +to +the +court +must +beginning. +from +set +alluded +over +they +un¬ +be +in +liberty +wiM +a +Irdlcations +of +Jacobus +that +more +in +of +reading, +much +San +hearing +of +the +in +e- +for +necessary +(E% +Ambassador +and +cashire +by +Ood +of +position +Book +in +son, +Toyao«. +was +could +yet +the +Urns., +is +Heussong, +to +of +Serenely +nee +the +Is +other +their +tian, +Supreme +Minstrels +man +time +will +will +may +in +Friday +Jias +matter +and +saw +SUM +the +he +of +tarrington +is +velvet. +the +society, +; +required +taxed +made +a +block +complexion, +the +be +fions +Gibson +Will +Science +Geueaieo +demonstrate! +was +be +bailers +been +McClal- +Herman +and +stretches +ro^entative, +the +Referendum, +In +law, +Consider +unob- +the +the +in +is +to +of +snowy +after +side +u. +in +good. +Hannah +not +men +be +artesian +of +The +read +ill- +district +price +Ashford. +purpose. +the +and +ownership +last +eler +its +the +since +due +in +American +deafening +the +that +the +to +beneficial +the +to +this +soveieign +money, +party +sacred +never +what, +with +of +queen +crept +he +tlio +pensation +Tbe +late, +Calhounand +: +comical +beach +bridge. +a +and +the +wicked +him +wheel, +there +alive; +splendid +was +The +march +have +Republicans +quiet +a +'i +Albanoy-tlie +on +tosurmlse +desired +need +all +very +have +that +for +that +the +And +ings +Powell, +born +in +the +had +beautiful +ing +2. +was +word +the +on +has +important +his +The +room +conceal- +self +man, +the +the +a +be +Mr. +permit +to +never +two +bears +one +Police.Officer +The +statement +Civil +made, +the +store. +and +we +. +thoae +whose +sacrifice +an +nn +had +spring, +We +the +Kansas +jean +it +touring +goo«l +that +War. +and +for +lc +the +wotded +in +of +stroc +booth +Mr. +wan +could +had +unlimited +mansion. +There +week, +up +was +last +a +is +entire +reason +sure +tho +so-calledm +N. +be +men +is +native +himself +Mr. +was +millions +know +They +b +that +reading +that +the +sacred +the +it +or +undertaken +a +himself +when +accounted +which +who +your +the +Brorison, +lake. +of +used +Bank +powerfnl +for +to +sorts +Convention +Turners +Wel- +like +violation +1910 +school, +and +narrow, +are +and +vacant +section +question +of +the +text +as +Clerk +health +his +LAWS. +in +1 +With +tt +were +will +their +fusion +rights +tha +Legislature +Owing +leu +tofstksr +Mill +have +the +Owing +carried +them +divisions +penal- +forceful +and +Rand, +in +movie, +a +piece, +capital +fice +They +ried +property +pow- +princi¬ +on +sunset +user +hay, +to +the +coat +all +returns +require +35, +Cleveland +west. +is +camps +attempted +fpeak +the +ller +entertained +to +capable +gas +no' +cb- +sahools +somewhat +. +as- +convention: +scissors +but +time. +thejarray +no +, +exercise. +Turks +Grte +Republican +order +a +case +the +by +things +hereby +when +tied +happens +from +that +zone, +to +as +how +for +thantoaf +n +the +of +tive +also +esti¬ +the +a +school +on +Your +the +gloves, +one +proud +Strohecker +with +a +who +boodliDjT: +upon +The +erable +long-drawn +advantages +did +a +had +servant +Germany +and +the +such +to +boy +howpver, +forest +was +of +lady +should +lie +thereof, +or +had +envious +D. +the +¡mee +on +to +ideas +that +Most +For +system +July. +the +th< +against +[n +the +and +formed +or. +Hummer's +we +contribute. +nothing +eventually +following +famous +noramus, +say +and +of +credit +with +was +and +the +Home. +study +be +deny +the +a +to +; +and +Sadie +menced +the +similated +creasing +assumes +It +shall +could +years, +Inured +Itis +the +product, +that +public. +the +an +evening. +in +lulled +by +our +with +bees +the +accom- +by +possession +It +on +of +for +handsome +; +tho +say, +with +Miss +witness +with +bell +queer +the +any +debility +such +I;thjnk +sleeves +the +sum- +good +Salvador +sev +selves +of +claimed +reserve, +be +sea- +retraced +which +last +all +not +$40,000,000 +lots +these +was +yesterday +on +A +free +ever, +ments +company +two +ni +function +nil +free +and +a +as +hand, +Regina +in +nays, +small +Insl +sequent +place +In +variety +bonds +uttered +it +that +place, +run +descendants +In +lu +attention, +an +rhe +purchased +delicacy +quantity +The +their +the +may +in +English +mate. +Hay +hers; +Perry +to +a« +ordered, +stories +wares. +of +recognfeed +tlrlandaist +named +as +done +and +principal +clearly +That +more +Main +and +to +all. +States +Politics, +Canada. +by +loglcAl +the +must +anybody +subject +a +made +110 +brush. +00 +of +tba +priety +and +Man, +tion +ample +troubles +game +done +Irom +during +shall +operation +Of +The +are +tion +horrid +yet +whole, +within +and +170,000 +money +of +and +or +Tf +food +and +water; +did +a +an +as +day, +Mlss +what +From +Obidiah. +a +which +black +at +8. +limit* +companies +to +it +In +Munson +are +they +finest +wore +ships +sprung +I.ottis. +cover +marked +high-minded +177 +offer +iiirue +section, +tbr +C +are +the +it +would +collection +safe +so +men +have +side +seamew +steal +They +Their +straight +must +due +answered +and +of +during +ness. +Range +M +"Evening," +of +re +veterans +wide +so +a +than +heen +that +nearly +telling +Copper +to +men +bams +de- +adu-- +Evan +Mr. +of +sented +Generalship +ancient +the +government, +to +and +a +of +of +to +an +and +Township +His +in +limited +car +victim, +much +two +when, +- +or +crop +always +Books +aocordanoe +the +our +theState +Miner +Western +Arkwright. +it +the +day, +expected +prevent +us +of +has +Swamped. +>«e +even +of +that +find +natural +The +no +his +welled +Rodman +be- +my¬ +coming +the +ness; +ial +down +bill, +this +nights, +who +made +Improvements. +a +market +life's +far +by +degrees +Ennen +the +she +county +colonies, +stunt. +of +opened +either +blood, +out +imr.tlu +private +If +on, +moderate +passing +lo +of +principal. +the +in +ties +aald +the +day's +a +2; +aurrey +food +shares +chains; +be +or +to +to +21. +through +sold +which +show +great +or +of +hotel +them, +surfeited, +of +In +have +as +amassed +two +people, +that +struction +cots, +furnished +in +of +the +scheme +Risk +to +possible +the +many +grass +savored +I +of +on +advance. +American +system. +and +($665.80) +election +swarms +think +as +had +City +with +where +the +ynchtsman; +and +laugh +comer +they +a +who +not +private +lieve +the +Into +in +tire +ed- +M +roots +of +Brown. +exhaus¬ +ship +to +faith +dead. +her +thei +Lamb. +unable +A- +liana +more +distroyed. +Prevention +time) +ously +now +by +French +pack +common +cunniy +A. +Mademoiselle +70,000,000 +and +soon +domain. +exclamation +; +officer +while +there +through +J +bond +service. +that +a +for +by +premises +suppressed? +city +as +the +merely +not +value. +and +traveling +with +this +this +thousand +on +horses' +of +ths +tOthday +with +to +over +appearanco +Into +tbe +and +tnal +at +Serra's +It +Rail- +reatdence +by +of +connectioh +lucky +the +can +fine +Coates, +the +must +In +did +cotno* +from +and +modest +32 +the +the +antagonist +with +thcm. +ciated +When +eternal +B. +A +of +Remember, +Because +father +matter +at +to +a +them +to +days +the +The +three +turned +(c). +Frederick +to +best +ment +which +which +was +the +it +the +is +six +believe +this +to +themselves. +to +wo) +emer- +frrnlah +Roundup, +Kentucky +bowl +question, +by +and +Louis +last +of +service +North +to +log +her +a +innocence +oiler- +suffering +line, +than +suicide +treason. +wife +furnishing +John +ger +color. +against +have +Christian +Parlor +may +of +and +of +and +by +decided +account +limited +through +Alma. +potatoes, +or +is +nized +again +<*ustain +inn +received +as +follows: +a: +culated +office +cure +and +the +instructive +of +either +sleep +Beef +concern +Smoot +of +and +nueic +feel +who +said +her +his +seen +573 +very +and +tions +learmtf +lias +w>re +to +Hubbard, +steam, +him +and +in +Brandt +but +went +church +a +assigns, +of +function +Landings +Fens, +«Wasp +branches +police +the +Town- +hidden +H. +fied +of +of +lend +a +nt, +of +the +allowing +"a +pretext +into +one +li>99. +watch. +on +peculiar +ing +at +and +penetrating +tho +and +ere +of +was +Tearful +in +cold +by +Member- +ell +unless +of +then +as +all +feet, +the +feet; +than +where +she +pass. +powder +been +to +clubs +of +son +buying +half +non-payment +sum +and +welfare +lien +Mower +,put +ideal +Inflnitoly +annum, +is +railroad +given +do, +chinist, +the +a +reflec- +the +two +remain- +his +ot +for +about +finish. +office +an +use +the +each. +cap- +in +he +it +revision +pert +this +warmer, +be +is +dreams +necessity +Mr. +a +not +claiming +quarter +the +Cuisine +victory +o! +.y +14:1). +the +their +of +before +him +man. +of +unimpaired; +DVisquito, +combined +John +in +that +which +to +a +have +Laurens. +hay +Norwegian +as +for +hemp, +it +this +subject +of +ner +Dredging +lit, +work +I;Uni- +pack +line +twenty +over +seat +the +agriculture, +could +I +oi +styles +ticket +jewel +ed +world +the +of +by +them, +was +Seite +of. +town +He +those +state¬ +it +of +half +and +parlors +to +scale +very +appears +not«take +heart.” +evidence +We +watd, +on +prescriptions, +Divide. +they +ble +building +publication, +some- +ihe +hardening +real +ex- +i +a +twenty +upon +Discovery +and +be +Vliete +brave +I +and +to +Too +invasion, +bidding +Italy, +entitled. +the +is +the +iau +spring +They +tell +ways +the +same +where +llummel; +wallowing +a +let +her +through- +'I +first, +stipplicdl +erose +More +and +so +«»f' +Harty, +lower +was +in +the +answer, +land +the +can +Association +many +be- +of +the +feet +gold +sir +leave +tion. +Ita +dlscuss +dull; +several +laten, +warrants, +15@7 +second +now +the +house. +at +rfc.it +of +a +said +how +the +the +the +altogether +plat +rather +to +of +An +King-bury, +Road, +449 +ability +up +THE +corations +per +substituted. +thorn. +but +them, +and +casnry +against +having +N. +would +it +the +liis +of +treasurer +has +and +of +season +was +child. +of +muffled +and +The +two +with +the +or +harsh +and +by +chaccea +hint +in +build +amending +(when +Geisling. +he +left +sat +castle +House +and +he +a +equality +the +State. +of +found +of +I +annoyed. +he +due +the +lt. +if +the +appointment +unwritten +lesson +Crawford, +his +is +days, +was +Par- +admired +elect- +pail +of +news! +aoggeation +interest +table, +a +the +very +Intended +flow +1$ +to +been +pletely +punishment +K +alone, +of +The +to +any +tle +himand +to +counsel +lying +of +Estate +General +b, +to +D.D., +to. +been +this +o'clock, +of +J +ernment, +fig +block +l'lne +can- +same, +the +date. +aloaera +a +deeper +were +arrange +affatr +21, +order +nnd +docs +fevdlag +the +forget +fund +comparatively +during +question +tha +or +all +race, +in +mad +other +minute +ami +tax +resented +the +at +arms +will +universal +a.s +thousands +four +now. +night +of +rangements +this +his +by +lisendowineot. +of +in +for +and +polling +to +of +for +market +were +upon +and +came +jail, +pow +smother- +servile +by +strengthening +seme +the +children +New +after +continued +sub- +social +upon +The +tives +man +him, +and +dated +of +before +. +ihe +Havana, +it +physical +pile +bod +the +saved; +wards +healthy +me, +the +will +like +cor- +who +east +hands +their +grip, +battle +he. +men +plenty. +their +although +has +not +companies. +gilt +the +position +they +sod +themselves +Army +the +moral +dysentery +drouth +,ou +This +looking +in +confirma¬ +the +work +from +have +such +hasdevoted +of +only +to +lie +themselves, +of +he +J +The +of +Poor +illft +mic» +thence +increase +Bpend +ihe +Atlantic +rise, +par- +dark, +Whatever +Yosemite +finances. +On +serving +and +for +large +in +af +story +is +we +every +ho +of +luck +before +tence +showed +of +for +plenty +Franklin. +Northern +P. +ments, +anybody +whom +so +slowly +within +Warner's +the +foliage, +S. +and +with +cit- +ladles +feeding +school +where +and +ry, +music +depths +the +these +say +and +awakened, +people +the +not +execution, +that +the +honors +to +article +so +honorable +the +are +the +Grace's +whiskey +equivalent +their +club +treasurer +l +has +street +The +forward, +home, +charged +60 +than +linst +must +two +tbe +sum +Lots +was +the +publisher +square. +spirit +con- +described +Vira* +and +discharge +element +opposite +could +the +good +where +if +You +any +order +the +petition +the +their +ring. +and +" +Klon­ +United +InawayIknowwhatitisto +No. +Al- +long +sower +afraid +shall +. +the +some +the +one +t. +of +Trust; +t +stand­ +adjourn +deal +touched, +penalize +of +the +land +a +away +the +of +have +that +his +the +the +when +Steel +ho +erable. +to +dredths +tr +slavery, +after +enterprise +holders +the +Mountain, +bloody +wonder +church, +debt, +own +rejoica +war; +M., +that +the +interest +salesman. +This +south­ +in +hack, +and +journment, +if +was +addresses +lower: +they +that +be +these +of +community, +liM, +Miller.Ft +they +the +anchor. +and +roots +of +that +Gorniley +might +reward +and +the +despair +expended +provid- +rlct +of +genation +found +Turkfushion +Given, +all. +with +of +er +deg. +was +stock, +comes +society +Tombs +thought- +be +for +this +prey +been +threatened +E +Trumbull, +the +the +two +r**» +more +Range +was +tho +in +a +have +Pacific +0 +had +would +who +commended, +as +evolved, +fields, +timate +money +FILFj, +to +the +with +our +he +effect +nc +strip +You +of +oi +the +of +to +of +ties +and +S3JU0O- +about.” +price. +Ache, +ticles +color, +sum +* +as +Congress, +Prince +be +barge +which +65,000,000 +of +county, +about +feasible +army +dispatches +Bank +done +any +the +in +Into +pro +ries, +more +And +further +low +forces +ahead +retary +-ellmg +a +as +Marguerite" +it +i +the +he +world +on +the +came +question." +end +and +passed +his +frequent +all +can +Indians +of +patterna +preconcerted +eyes +would +who +27, +The +tivated, +York +one +tell +word. +license +upon +587. +most +in +can +lias +outer +ap¬ +Of +day +where +to +it +gaining +a +even +is—Esperanto +and +Hutchison, +far +shot +is +vein +Commander +increase +as +been +oats +tho +and +the +sketch +11 +could +might +is +money +Norway, +perfectly +the +or +It +and +his +uttered +dear, +to +Schuylkill +looked +the +acts +this +the +into +in +Three +hour +around +Ladies' +property +between +barrel +posse +him +high +age +cars +the +by +who +for +in +pay +digestive +to +the +The +UfffJ +of +a +islaus +objections +Supremo +allow +- +safe +warm +is +Baltimore, +would +replacing +coopera¬ +semaphore +Cock, +without +year +lashed +teaching +with +12, +whole +who +wes +Each +is +to +Marius +him. +Life +Baltimore, +the +Campos +facing +meat +V. +steam +GUARDS..Capt. +house +to +they +lighted +following +sufficient +prosperity +interior +to +giving +and +Penrose +of +delay, +shall +in +be- +Guiteau's +retiring +91 +as +and +the +:ind +niiice +their +their +much +more +iomd +follows: +the +seat +National +beautifully +although +and +analyze +way +a +the +follows: +I +rare +the +on +churohei +still +interests +attached +where +a +it +equally +squares +load +Yet +the +mornlng.it +ñi +grat- +Com +this +ofpime +in +turned +reclining +bales +of +but +on +favorably +brought, +grand +country +these +ago, +One +Kins. +opportunity +of +in +every +fricasee, +$2 +Seventh +absence +tho +do- +terrible +a +Washington, +soul +with +the +that +Joseph’s +is +truth +a +a +parties +his +the +114; +the +of +wLitecoat +bo- +year +rear +k +notice +or +reduce +an +j +to +Gillespie +some +tho +offered +and +They +does +serve +the +set +shall +other +the +·; +"Even +In +rushed +Market +in +it +Allmers +his +so +i +early +l. +Dogle; +In +and +the +deed +it +he +or +the +present +there +If +accurately +but +by +requisitions +their +per +place +of +indiscriminately. +Butterfield, +of +this +road +chieftainship +Klkereek +way; +tarch +population +sugsu +stockade, +Flra +whose +again +the +lunatics, +waiting +nay +24, +railroad, +afraid +She +you +he +in- +‘satislied +Bock's +with +he +appeal. +than +the +the +thither +to +The +on +violently +that +on +I +seek +ROSBSU +Hanna +for +peril +with +to +in +building +southeast +litigation. +should +place +been +to +had +good +enough +pcrpendiculnr +urged +ir- +ho +in +remarked +any +It +the +going +up +too: +of +in +Dobbs +mercial +during +yard's +pictures. +footing +wait +ber +the +assembled +last +tbe +are +which +Sir. +the +nncc +present +sad +be +should +there +Lee, +f +cost, +thing +manufacture +executive +the +raise +his +was +air +evory +information +to +all +aUeging +Flour +of +mother +those +beycad +world, +South +more +was +on +gentleman +that +slowly +taxes +as +land +this +I +though +carry +been +1 +was +on +out +The +ers, +tunnels +istence +by +of +aa +One +will +and +wi +in] +into +of +it +Two +Lincoln, +on +aa +exten­ +off +links +Dissenting +here. +be +a +Ton +NRA +got +Just +touching +served +the +of +inliilsterj +vicious +tableau, +of +10 +authorized +S'A +ings +Un- +dumber +ings +of +y. +revered +tour +from +set +Gastineau +W +We +of +to +some +drastic +liners. +else- +members +ing +competitive +four +outside. +Court +ready +mil +forcing +by +occa- +recelvo +seed +10 +valuable +lake +worthv +military +order, +minifter +tho +the +turned +in +aban- +G. +the +broad +therefore, +household +believe +to +by +not +to +of +Forest +should +many +Her +cable +general +race +defeat +the +and +the +do +I +will +fist +until +performed +due +of +lioa +studying +a +that +w +few +shipment, +he +no +hose +waa +the +an +different +their +out +and +hill +Whittier, +POWDKR +stand +Cowden, +20 +Friends +would +popularity. +the +from +The +iix-c, +and +officers +stock +few +before +At +she +city, +automatic¬ +vites +which +are +Suez, +western +it +more +rolling +anteed +is +of +went +be +some +his +the +well +his. +town, +of +with +Golden +in +the +any +I +have +it. +hill +States +was +the +from +Timothy +mking +but +weary +take +one +for +prizes +compli- +Thomas +the +he +on +allow +in +companies +lerliliso +nave +and +IS. +the +Ice +protect +the +to +was +tell +tire +get +on +an +season +beginning +Duer, +is +sufficient +latter +the +in +happen +volume +another +receipt +to +Eventually +gathering +reasons. +A. +I +goods, +knowledge +Sec. +may +firesides. +no +the +tral +culture +rebuke +be +be +Rua +will +main +with +not +next +of +anything +United +spinning +phant +the +ln>ig- +You +their +Np. +as +ning +tho +act +ter +prayers, +reading +noted +I +or +there +C +to +warrant +tho +which +refqso +to +majority +t +relieved +still +be +to +In, +next, +reunions +a +undisclosed +U. +.recommendation +what +the +utter +scant; +President +to +23. +the +I +under- +repub- +to +was +There +or +must +for +bear +place +Phil¬ +bj +him +more +in +its +unfortunate's +alike +Maloney; +following +it +into +rapid +state +blood. +orbitant +Shasta +th +for +by +listened +of +teaspoonful +have +ment +include +which +people +opened +bluntness +In +Subdivision' +of +first +world, +the +D. +as +the +I +the +ern +by +to +remained +is +informal +hearing +Another +the +first +ouo +yards +Lin. +of +men. +night +dollars +here +riders, +there +hiin +Edith +was +or +to +story: +nimble +chamber* +)¡it +earlier +an-1 +ready +is +that +first +had, +backward +his +elections +the +little +with +in +plications +an +be +not +of +were +big +in +believed +office +been +that +of +member- +stant +until +la +we +stabs +there. +"Letting +Welsh +to +line +Knepgliaw +across +threats +questions, +35,093; +erly +rate +its-ell +good +receive +tower +The +In +quick-silver +Italy +A +friead +paving, +for +acre +character. +capacity +of +and +rectors, +accordance +of +be +its +particular, +to +a +Green +and +man +water, +among +leading +appear +education +op¬ +the +President +subject, +Heretofore +taking +links; +and +O. +her +zinc +the +▲ +out +Requa +teat +carj +Christian +00. +went +ot +moral +people, +natural +and +company +feel- +ao +tbe +the +gardener +that, +school +compelling +of +Cuban +In +are +such +the +you +I +Railway +bridge +r +Iu +ward +taken +the +to +in +new +He +right +agreeing +plans, +Hrc. +as +powder. +re- +quart +the +$4.50 +llie +7.15, +the +tor +back +edge. +saia +the +fering +courtly, +or +be +and +Ibis +a +ii. +aald +yon +her +sure +auctioneer, +miles; +men +drove +Congress +the +gas, +thrown +Sta'e +to +hunger +and +mcanderings +Philadelphia, +first +rate-i +of +oity +the +ahaaiiatal +the +He +f +the +aggregation +and +every +Senators +Repub­ +at +qualities +was +Maryland. +after +was +in +and +vehicle +probably +pipes +accompany +the +over +Bols +the +the +and +distant, +tex- +of +and +the +Commttt, +sixty-seven +is +; +Boggus. +Dist. +and +of +he +It +assumed +rnsnlng +rings +off +him +ly +be +ladies +have +14. +money +a +Rovno +a +so +act +liko +of +quit +the +district +third, +it +to +as +every +native +ten +the +to +and +and +c +described +appfeV +Brooklyn. +the +adorn +While +only +tublio +him +problems. +from +a +agreed +largest +were +to +spond +and +his +attninments, +pleasure +the +respect +am +and +to +of +present +1017 +teach- +to +named +oulldlog +given +hla +stock. +It +would +taxable +covered +to +and +rates +do +before +$347 +sable. +and +you +19420 +of +per +gold +from +on +failure. +was +the +terror +the +traditions +is +was +terms +tht +eastern +as +a +campaign +assert +irtlnclal +Another +cowboys +my +(325.95) +days +impenetrable +never +the +thonee +you +up +supplied +nies +west +was +and +A. +the +arise +Atiiu/Kii, +his +who +of +set +130 +prevent +tough +went +but +all +be +year. +generally +and +we +part +party +and, +wreck, +new +used +Scottsville, +of +road +the +of +conversed +tbo +and +parade +when +access +the +and +Y +that +there +so +stopped, +will +man +then +opinion +spread +Hattenis. +the +Marc +nrleonera +the +the +of +mem- +and +ber +moun +They +moved +Whetstone +the +gold +teen, +If +c. +either +the +they +much +An +Elaine +at +"I +hand +to +the +it +aplrita +and +of. +large +the +of +goods +ou +every +100 +fitted +the +Oouimunity +ln +de­ +differs +the +per +was +Jut +said +quite +es +moet +Mrs. +ship +speak, +very +doubtful +lay +are +con- +Chinese +should, +sonable +p. +the +club, +with +the +they +while +is +public +the +Then +Raana +way +$250,- +It +hostess, +State +ingenious +for +looked +of +Schoentgen +made +be +county, +pnniedj, +at +of +Knight +cami +arose; +Meadville. +censes +as +once +C. +survivors +or +have +Carr, +their +of +progress +proving +without +were +proprietor +meeting +than +1 +against +at +of +God +miner +which +speedy +uiado; +ibuford, +by +heretofore +they +I +$1 +on +bow +had +The +of +vear +Han +to +oi.£ +of +amount +tenal +as +being +Truman +r, +than +stocks +anniversa- +bundle +together +probably +Haute +the +Rcceipts +to +20 +on +life. +meeliog +from +vocate +in +her +to +snows +disastrous +and +clerk, +appoint +cept +until +7.6 +It. +before +the +could +conveni- +side. +than +of +whenever +injured +on +tens. +say +iluencc +Dollar. +" +in +and +Charleston +many +| +measures +deemed +huge +machine +book +out +games; +the +arter +was +Constitution +far +it +facts; +snow. +shial +case +the +said +wide +of +work +numerous, +your +the +of +storm +same +choice +these +water +who +was +over +other +compared +old +until +body +. +extent +profitable +rightly +24: +On +loereisiue +leu +large +prosperous +was +individual +party +known +tbeir +there +house +often +above +Lvnn +remain +often +will +the +into +a +Roberts +in +any +Louis +can +we +in +is +of +the +at +and +It +south +cor. +the +and +ceased: +Of +and +assessed +a +additional +dismounted +request +sharp +Falls +the +uproar, +hooks, +representation +and +the +the +entirely +Atlantic +each +and +resisted +the +the +a +thing +forth +was +and +portio: +to +trend +a +Marlboro +of +searching +to +writes +por +the +has +in +to +service +that +home +get +Legislature +people +units +that +County, +fourteen += +machine, +— +cod +B. +they +of +there +purpose +one +of +about +which +nt +living +next +the +speed, +consolatory +were +was +stock, +90 +become +Land +bera +it. +satisfied +terday +most +Large +giv· +and +of +and +to +the +and +the +by +of +along +States +pecially +1 +thats +I +and +tbf +excited, +products +principles +vari- +State +BOUM +to +advice +into +chaste +have +peculiarities. +verdant +on +Lord, +an +excellent +he +grade +170 +$30,000 +to +aFrank +but +Mrs. +toward +some +of +48' +be +She +of +John +candles +tho +that +that +offices +softens, +i.ou +struggle +There +the +discovery +Into +reconsidered, +be +In +the +endeavor- +me +when +time. +men +through +up +by +but +portion +longer +game +addressed +solemnize +Tbe +all +recites +across +!>c +attended +towel +the +sever +economists +with +lo +side +point, +waiting +worth +and +I +are +and +seen +on +city +must +feeders +against +will +prouetf +and +along +noted +pas +This +in +was +at +flew +to +132 +"one +tho +exists, +each +that +work +his +Pennington +mean +that +meet +matting +his +fruit +shipped +judgment +imprisoned +the +of. +mem- +the +against +would +of +There +far +consistent +of +inspection +in +door" +Macfarlane +of +A +escaped +the +present +th«' +moans +yet +the +and +Louis +was +Jerome +be +Crimper +and +dance, +J. +which +taxes +the +was +ou +ficiently +to +Danville +toobtain +locks, +ton +And +and +center +going, +the +offlces +District, +value +result +This +effect, +to +of +50 +In +la +as +has' +position +tit +the +to +grandeur +a +quarantine +now +publications. +ion +enjoy +hourly +sins, +by +of +directions +active +curling +in +considerable +river +hope +ot +or +have +nlity, +he +miles +which +i +na: +treat +137. +shall +of +David +roads +effects +canying +been +grain, +Dover. +or +was +leaving +Sheesley. +delegated +population. +war. +of +and +be +addition +office +issued +check. +west +cabin; +the +tSio +rare, +the +noou +recorder +Kent +tba +chips +United +they +less. +of +grieved +manufacture +Long +side +ot +of +and +teams +completion, +struggle +'He +Jf +after +or +and +of +ded +ita +sc +Mayville +ries. +"radiant +po- +m +to +h +we +been +came +tttt +the +He +15 +lives +the +2 +operations +dollar +Sad +of +a +as +may +say +ended +of +the +he +the +he +feet +48 +accepting +body +At +meal, +of +permit +and +until +their +or +unconscious +not +Both +inclu- +recognized +II +iucorporation +tivity. +with +veil +do. +nor +good +absence +of +allow +above +as +as +him +for +is +greater +I +be +is +ay +for +now +will +back +Biron, +the +little +had +and +the +mammoth +Tregsury, +right +many +what +Much +result +long +la +the +incur +8. +board +Somers. +and +hope, +& +to +be +less +ing +rural +before +Lar- +from +of +Sec +and +not +great +or +as +a +much +and +of +if +demand; +of +tho +to +with +truly +the +rate +aud +stole +takes +occasion. +John +hla +place +siy^ +whsn +BITTER.-* +There +This +Coa- +about +the +not +money +by +was +Then +out. +him. +and +your +to +were +disagreeable +their +serious +■»hick +country +departure +Rye +minutes. +patriotic +form +the +adopted +small +Mayor, +to +upper +an +riots +be +a +who +to +the +a +skepticism +since +One +i;ted, +street, +Baltimore, +rels +and +a +bo +of +known +attention +pleasant +been +of +Columbia, +least +leans +Is +team +havo +Southern +ulist +monkey +lcy. +willing +other +the +is +others. +thoso +generally +Puru +produced +show +more +vwith +together +North +no +with +m· +was +cupply +1801 +labor +manufactured +not +iu +Pritehard +lustily +Wide +is +and +and +that +days +A +the +likely +10:35 +victims, +by +a +alive. +such +local +bill +tboee +critical +and +of +$1000 +Edgefield, +made +As +tho +well +»ad +of +oscap" +trees +to +fur +lorm +the +of +asst +feet; +few +to +sections +AMtb- +to +gonorrhsea, +with +money. +state +time +any +are +of +of +the +like +bard +riding +monotony +adopt, +sort +years +could +tive +a +auction +Mr. +of +on +of +to +their +A +that +while +ragged +vost +which +State +rapidly +mation +waved, +his +why +sold. +side +many +It +that +July, +obtain +the +more +salute. +that +the +Ainny +afternoon, +been +were +all +would +he +the +extinction +as +the +the +it +eminently +trust +and +were +tho +to +of +is +fond +as +has +Lookout. +undo +iu +the +tho +of +in +who +Tho +fiiends +to +for +engine +dreamed +as +to +htm +whelmed +is +cost +in +No. +Sergeant +and +countrymen. +rebellion. +all +en +statesmen +Britain, +Southwest +to +weapon, +us, +tho +question +which +Heavy +tenth +country^ +living +The +as +aoy +and +of +lately +world. +round +ho +made +any +95, +visions +have +consumed +rejolce +side. +At +The +the +In +that +same +allotted +Co.'s +don't +by +iodln +the +the +like +"Yankton." +copy +should +III +and +being +Octula, +deposits +b'-rt. +of +and +very +to +the +sea +out, +Sixty +he +med'eal +about +Constantinople," +Maizie +blance +on +toil. +the +was +bread +accept +near +One +following +oroKlvon +$1,500 +enrollment +the +ting +overlooked. +rise +market +“Rich +throne. +en +In +With +and +every +dene, +It +llie +States +of +year +been +of +22 +graduate +and +suppose +give +and +On +color +former +him +by +whom +hands. +and +tliM +by +upon +ton's +Mr +little +from +not +sank, +the +county +No. +rye +benefit +on +the +betaken +secure +in +the +periods, +peaking +ol +This +a +are +fed +whs +formal +more +com­ +which +it +was +Darrow, +', +before +should +and +Gen. +toes +pumping +to +that +which +performer. +distant +to +girl +their +that +a +publicans +National +100. +for, +fifteen +gor +soon +heart +of +6tock +they +of +the +precisely +is +.- +towards +every +by +too +m +an +with +that +been +plans, +to +Fanny +crops +the +would +ney, +level +bounded +to +over +appearance +and +Katherine +31 +bore +the +t. +movables +thought +his +Row-l'twht; +Swea- +after +side +of +minutes +bane +f.u +to +tion +Bramow, +four +mortgage +frame +tenure, +East. +whether +peace +a +proud +ct +in +having +this +This +peptic +re- +with +at +more +is +business +-13a.5feet, +to +dispelled. +by +experiment +the +together +the +for +pearance +cap +self +su- +R. +him +with +found +he +bed +with +ter +train. +$50. +cent.; +used +and +shortened +a +masti +SSS.oOO +claim +ful +vho +t +the +Im +pieced +until +occurred +body. +A. +with +on +them +bears +mala- +wide +notVenture +have +before +honorable +fact, +is +The +said +a +the +Miss +arranged +me +time, +All +their +tacks, +lieve +wool" +work. +tir»t. +who +“I +invented +the +have +all +Morgan- +says: +of +first +Wbieb +poem +the +much +then +impulses +high +nnd +nothing +aide." +he +show +for +flying +to +to +of +of +the +no +Shields +catnc +shorter +district +carved +rejected +are +passengers +otherwise +up +provided +interested +to +anothe +quickly +has +of +and +the +officials, +issue +hut +am +night; +the +chnrcb +tended, +experience, +with +Ma +place +smut; +hereby +oneof +will +tangible +it. +mark +edge +em +now +it +a +family, +himself, +Buren +which +offered +to +is' +and +aud +and +be +ing +16 +These, +what +entitles +o +together +to +he +to +a +from +would +a +less +which +just +the +acorns. +her +wide +arrangements +to +of +it +tenacious +the +assume +gttbeting +are +a +of +in +To +availed +president +a +healthful +corporations +to +days, +was +fire +well +fullest +the +cost +may +Fully +on +thereby +waiter, +the +success. +hands—when +session. +in +to +bill +COLD +you +Judge +he +of +which +and +claim +sentative +William +D +itdid +it, +various +oiliest +to +rank +street, +four +he +or +violations +permits +win +to +ot +not +miles +was +down +confederacy +stay +shall +pastor +dressed +During +AnJBmia +person- +rapidly +both +at +visit +February, +degree +Aylen. +confusion, +toastmaster, +9%e; +tho +demanded +allegiog +a +the +May +perfectly +such +century. +with +dismissed +α +Insanity +Griffiths +struck +the +fifty-five, +given +drawn +of +next +from +will +ladle, +would +of +Morpheus. +H +head +prepared +wind. +enter- +to +amuck, +It +Blue, +common +form +the +American +my +mean +as +fifteen +ket. +a +to +will +he +civilized +Every +were +Herr +Fox-Collared +thoughtful +popular. +substituted +at +and +it +ient +appear +the +women, +Pierce, +the +meantime, +successfully +duly +this +Ppage +of +shut +A +earth +iu-tantly +charge +mt +the +due +Clods +more +yeais +and +ratber +only +writ­ +and +good +had +buldt +goods +which +Geo. +of +b« +west, +oi.vent +slavery +estate +left +rooetlT +very +to +and +own +Pub +negligible. +arrest +freight, +rekindling +Kennebec +from +a +a +and +marketing +Reverend +closings +all +had +Aus- +he +any +of +the +perches +will +and +presses. +one +attacked +I +ing +1, +the +tho +any +Leaving +petitioned +estate, +pounds. +Bismarck, +auction. +many +. +and +thirty-nine +produced +against +with +a +most +make +7to718; +you. +corn +less +poned +deep +depends +day +is +inquiry +dny +try +high +to +went +15 +encour- +a +they +poses +unlimited +do +way +people +7. +disappeared +a +York-Alaska +up +and +Dame, +M.t +of +each +organized +iii)t +many +the +then +any +and +part, +matter +state, +j +of +Paris +attracted +soon +I +farmer, +Crosicy. +the +if +the +hat +pain +guide +so +the +that +down +ot +more +Irish +the +purposes +east +for +had +till +that +Each +surely +of +discord +got +conditions +for +of +aacredly +recall +Impunity, +constitutional. +work +secretary, +at +the +a +ways +the +book +a +I +the +parts +having +fault +long +oil +small +him, +McNally, +Carpen- +for +uo +young +6%@6%c; +vari-colored +silver +ard. +ter, +then +try +If +that +west, +upon +thereof, +but +shed +touch +the +sales, +be +year +o’ +the +the +Morro +Sec +country +for +the +financial +part +bave +credit +in +on +cot +t +conception +jubilant +Kay, +presont +telegraph +all +at +unother, +stomach, +copies +road, +dia?, +that +of +chord, +quet +drawing*, +215 +he +looking +about +know +w7ill +from +the +bo +limits +medical +decree +The +readj +correspondent +dict +far +had +French +September +young +that +Mrs. +feet +and +of +are +ty +other +teet, +may +I +size +offers +that +.losvii +of +while +but +all +pi +all +Prussians +had +which +the +- +that +to +be +Mersy +o'clock, +from +personally +further +the +lights. +It +may +.puz- +seller +character +Dr. +us +bo +chains +time +and +in +tract +and +apart +; +it +enough, +and +body +ration, +the +fortunate +to +communication +debt +intelligence. +per +inherent +Inches +law +forgery, +Final +world. +in +that +ler, +case +and +jacking +felt +acid +in +be +that +gods +young +At +whiskers, +and +last +of +sion +know +type +flavored +- +the +shoe +the +tins +with +Kxecutlve +our +One +work +learned +this +declining; +of +And +total +the +debt +was +pint +Just +dark +death +arranged, +it +troublesome +growing +request +llttlo +increase +less +came +of +on +Information +the +maximum +from +is +of +acoowparyic +aod +beaches +Madden +medicines, +aom- +highest +and +town +3. +claim +much +the +twenty +mM +the +of +and +No. +his +by +will, +uniform +of +upon +will +be +farce. +Callahan' +and +permití +Main +This +or +rain. +option +Susan +as +the +place +by +voice +the +of +well +filled +raoa +Robinson +thin +larger +made +the +Norway, +who +to +very +matter. +out +and +from +some +into +fruit +Channel; +C. +netic +Galleries +in +poken, +down +of +Ward +about +blame +other +tending +the +thin, +additional +night. +the +facilities +States +illustrations, +fully +and +1 +aud +down +errors +get +They +was +IHiiKley. +after +begging +one +is +nd +they +hardly +a +playingcards,when +debt. +of +and +that +ter, +pastures +and +thus +a +county +planting +correctly, +on +little +had +clined +as +of +country +.inestiou. +pound +a +se­ +who +AVo +is +mountain +also +in +new +in +in +will +pound +a +to +to +my +er +and +however, +Surratt's, +be +it +variety, +East +among +train, +of +dustrious +rend, +freights +and +the +mado +there +borrower +an +ing +of +to +machines +ronsninniatlon +sufficient +Block +at +semi-polar +spr« +But +constitution +one +of +men. +first +will +is +them +called +where +from +'ewarded +river. +of +the +boys +then +Texas +The +have +stallion. +means +saw +know +by +Mrs +Emperor +examining +William +doctrine +home +The +kegee, +one-twelfth +iu +Rice's +provided +water. +finally +Mrs. +being +a +thou­ +the +and +cabin +nothing +water +court +Mctiehee, +sense +little +state +IUdica.1, +sirs, +in +of +as +run +said +Tba +become +ionable +of +sumed +runn- +a +line +no +the +man +mom +A- +and +he +and +growth +the +half +with +allowed +repeated +elm. +llfo +from +English +bo +the +textile +excluded. +such +staggered +was +vote +anew +Want +necessarily +tables +the +self-supporting +better +for? +and +He +and +also +and +bis +transformations +I +sho +win +to +together +and +she +ing +Air +other +surrey, +the +advertised +glad +Columbia: +obtain +that +resentment +George +cooked +leaves +ßtßß- +more +of +Grande +the +caused. +for +Elka. +ment +assessment; +out +entrance +the +Ulirlatinaa +matter, +M +three +harmonious, +new +place +ask +rivalry +another. +noble +1500ft.toCor. +qnoted +ip.itire +in +operation +and +1 +months +it +to +Is, +lot +cutchlm: +San +80, +he +delegation +jal^ +May +very +came. +of +hear +in +The +eter. +Muir +that +are +Stilwell +each +Musical +to +Europe +from +lawfully +tract* +of +change +secured +case +as +Constitu- +touching +to +similar +to +the* +to +when +or +the +wife +has +He +Rifles; +a +cadet +in +thirteen +creek, +could +who +reversed +W. +danger +been +that +would +day +Life +in +you +closes. +more +of +hotbed +was +C. +1814. +playing +quired +the +water, +in +with +ing +that +Judicially, +been +ing +organization +In +left +and +good +as +Medical +tions +importance. +justice +Stevens +ihe +passed +Willi +aud +laundress; +doctor +of +Eve +might +the +hasn't +a +eheekmate +the +thence +permit +tully +gives +two +case, +has +looked +light +and +received +being +and +fair +had +I +Marlon +for +the +boys +go +burros +points. +of +Investigations +the +the +carry +icals! +nation +this +any +w +our +something +or +migratory +more +iieonle +hostess +other +W +are +and +seen +repeal +would +so- +Treasurv +on +road +playing +Plalnfleld +tho +itriotureJX) +the +and +contents +rooms +for +Europe +fore, +we +have +. +ored +Knight!- +Louisa +praise +chair, +plane: +a +queer +the +classes'the +guns +merit. +with +Hawaiian +fire +sharply, +Service +sition +over +tiled +their +and +true +the +had +of +like +short +the +of +the +in +refreshed +31. +The +Franklin +to +facts +shouks, +tried +resting +bills; +bloodshed. +cotjon +spirit +for +baggage +shall +assessment +and +given +antiquity +fine +position +contrived +man +at +20.13 +imperative +by +the +obligation. +a +loss +saving +the +baffled +captured +that +case +the +turned +in +but +however, +whole +of +entire +his +education +address +npon +power +corner +for +honor +notes +who +Press +stars +boys +so +Ob +provided +and +are +the +82.10, +vV.K. +tela +pretty +of +and +base +Dagoes +ihl. +and +band, +containing +had +and +end +news +and +passers +Committee +at +sonal +at +issue, +chane- +without +ficient +from +the +Just +tropical +fusion +and +children +follow +which +concluded +United +to +at- +After +where +and +Social +the +- +since +by +tha +and +was +were +But +keeping +life, +Coffee +the +believed +In +and +. +said +meaning. +of +earily +on +But +treacherous, +time +his +proclaimed +been +80, +twenty-nine +three-story +would +good +rein +reason +be +oattlo +go +edition, +Douglas +und +the +kill +by +who +picture +scene +wit) +eighty-nine +man, +people +point +riblv, +With +of +piqued +they +trample +en- +occu, +wilderness, +under +hospitable, +doubled +open, +and +only- +ex- +n +Parker +a +to +tho +according +An +idea +revenue, +of +and +stomach, +which +of +uo +for +without +“In +for +oats +Mississippi, +the.expense +and +b&r- +was +MB +the +Containing +*.» +äuet +but +The +on +one +a +the +movement +health +stree't +oppose +assemblies, +on +the +company +If +liy +allotted +take +panied +mo +to +without +evident +the +of +From +Profeaaor +inly +in +econo- +lat +1; +to +rothed +being +each +ac- +ljuU +1SG1, +man +incurr +the +needs +NowNotice +leather +the +purchased +plan +Arabi- +and +fact +of +taste +grain +The +of +the +swallowed +to +Sir +parts +Mergantown, +parallel +Carl, +see +been +cart +prop­ +tapestry +nor +north +NO +Dakota, +my +appearances +Bei +locked +as +K +Instead +of +tainly +by +active +if +evils +cannot +its +$1 +most +which +variance, +provisions +have +placed +pairs +of +secretary +Congress +Hudson +competent +are +labor. +and +the +gloried +to +churches, +zigzag +At +as +in +there +to +Land +worship +together +. +with, +one +The +moving +miles +a +sible +been +For +replica +Merino +authorized +Fifth +influ- +aerial +dwelling +excessive +line +years, +Aabe +some +is +ami +of +80 +instituted +that +iological +wick. +no +riving +and +shot +contract +the +for +work, +toins +house +Oxido, +of +and +is +the +it +invite +term. +oper- +port, +demands +up +it +curred +pass- +46 +ville +and +The +the +show +ideas, +event," +$10.00® +due. +the +to +waa +cease +live +(the +been +the +measarei +frage, +or +first +opinion: +that +22 +soft +which +nounced +worn +closet, +the +of +but +interesting, +the +had +plane +fir. +said +The +•*The +thanke +of +said, +Gottfried +bishops. +impressing +We +closing +Thi3 +fore +complete +overpowered +when +said +and +feet +along +treaty +able +their +the +r< +with +although +is +told +short. +the +Secondly, +government, +street +the +was +by +only +of +mortgage +rightfully +in +art +will +Kennedy, +the +Capt. +agents +O. +Representatives, +I +off. +could +It +enteied +an +d, +so, +did +the +E. +been +a +sky +who +in +Joint +stock +years. +lines, +will +field +to +job +presence +depression +a +de<. +this +their +Deceased +is +had +boy +her +five +and +brought +with +In +one +free +elected +preserve +of +and +appear +shall +county, +to +They +for +the +this +and +reward +cause +fancy +of +Charles +scale— +anger +fas +&c. +freeholders +during +onspirits, +done, +end, +ble +set +the +to +the +have +that +might, +etc., +the +Included +greens, +house. +them +an +bill +light +spirits +a +girl +appearance, +Fiber +are +011 +littlo +us +fuel +and +tbe +TO +vVard +cloak +that +Lis +fully +the +in +time. +come +thing +sweet +in +would +shells +under +government +f,,r +Rlarkman +water +yourself? +do +is +he +snch +was +of +French +and +"At +the +that +but +was +were +to +s +the +And +even +implanted +did +brains +of +and +a +churchea +a +Amalgamated +shud- +placed +which +dead +the +of +a +right, +to +or +for +You +Fragrance +th» +lieMini +many +Tho +of +of +tage +when +the +and +house +ney, +Dan¬ +the +times +the +fact +be +Its +ha +and +poll +powerful +thnt +the +General +therefore +wdlbe +to +thereafter +he +of +dittance +¡nul +stand +amounts +specialists, +eletnent +Mr. +wagons +was +per +family +after +at- +a +comity +this +planterhad +at +abolitionist +me +afterwerde +ning +yet +is +from +mental +goes +sixty +college +of +work +the +the +float +on +all +beav- +Honolulu. +company, +last +the +of +nobleman +country. +Up +knew +examine +Dicti +cat +are +to +will +that +take +sary +up +ty +to +plainly. +Every +the +a +ex- +o- +punished +sided +of +that +hurriedly +forward +cheeks +his +poor +his +than +A +entirely +the +large +i-anonst +tiiat +feet +our +by +any +ard +in +establish +assessment +with +arcoml +The +The +ap- +you +food +peolie +Walker, +bis +into +tenor, +Herbert +The +and +and +box. +at +that +who +of +east +globe, +and, +J. +pound +contended +believe +and +shore, +which +until +In +one +be +elements +not +to +tho +a +when +by +herd" +an +the +Hon. +Ciitarrh +Hill +to +now +rest, +be +having +the +On +tionary +among +little +p. +by +but +of +in +box, +feel +care' +the +character +way +o'er +he +foam. +photographed +they +In +finally +digestion +to +In +and +except +It +the +attended +of +thedebt +i.lMt +which +to +against +on +of +a +religion. +make +place. +adjacent +party, +their +I +National +Trustees, +be +April +Dr. +history +what +of +insensible +power +Intelligencer +of +Tho +above +been +an +of +both +close +indoors. +to +returu +that +become +had +speaks +15th, +No. +"The +;li +Judge +the +a +Wheal, +of +, +sold +sharply +Iiis +ment +tttt +it +There +Governor? +in +put +about +both +the +and +have +in +have +within +than +4 +year +that +death +NE +tlween +of +P. +this +or +Atlantic +taken +and +by +vlowof +and +in +as +swarming +hereinafter +heavy +several +in +crime +interposed +sides +brewer, +and +steamer +move¬ +can +actors +was +ihenci +trade +a +has +authority +citizens +available +jects +let +control +own +firmly +god +colony +nue, +cabin +in +roads +of +up +S. +nil +to +been +bee, +about +nine +the +May, +Concede +lot +luctantly +once. +rather +last +tbs +the +uro, +feet +dislo¬ +the +summer +the +green, +righteousness +Pennington +a +the +will +after +Another +he +were +Herbert +near +In +she +a +when +tical +that +We +to +obstacle +Meyers, +to +was +seen +set +e +was +stones +we +an +to +principles +thinking +of +Yet +cake +and +from +chances +rather +rise, +could +beads +In +also +from +it +the +means +recover +match-box, +(the +being +time, +him +of +the +steamships +kinds +Roomer +commission +whom +it +their +around +returna +weight +Isaac +"Not +war +noted +gave +the +call +our +«iigger>U'd +largo +allowed +John +ed +dodge +drank +ai +her +provisions +Xor- +the +parties. +dead +night +as +that +there +President +zily +back +voice, +appeared +about +E. +of +examined +hilarity +as +effect, +cannot +spoke +about +tbey +The +you +advant- +spoke +lers +meteors +what +the +the +him +means, +nag +mass +ror +for +few +track +sis¬ +commendation +stato +them +sand +"However, +our +M +whispered +by +aa +of +may +without +came +is +Coko +that +as +but +child +surely +United +extra +And +coronaa +best +dry. +last +the +high +the +despair, +the +It +tho +touched +river. +the +it +fool +general +that +false, +and +to +thinking +a +and +situation +more +ing +to +Senate +ss +live +of +The +adopted +a +1SC7. +time +fold +the +Ire +the +woll +by +for +making +February +ash +proud +It +boy +lady +center +a +torn +completed +the +right +ami +railroads +Rooms +of +their +room +a +wen +such +silver +if +caution +down +these +Clerk +argue +a +Davis, +or +in +hundred +before, +at +was +comprising, +ballot +my +iudsres +and +of +to +I +the +of +be +he +of +that +made +Adju +to +end +the +of +the +a +troversy +latter +to +raised +On +he +Another +House +literally +Pratt, +of +moun- +my +Unltasd +can +What +to +markets +F. +Sir +Mill +trial, +because +estate, +of +mice +of +agreement +were +ing +House. +of +state +of +ladles +assumed +collector +choose +Mr. +and +disa +bad +I +new +and +it +to +a +is +d +to +ultimately +from +order. +and +working +which +1. +eye +or +which +the +the +end +call +citizen +thinks +and +been +a +government +the +arc. +Tien- +a +connected +two +to +of +wlume +that +pedigrees +. +a +for +Quiddities, +actor +and +advanta- +the +was +States +582cs +placed +cot +Sea, +F. +Then +^Notice +much +Gov. +Vance +him +we +temper +put +the +to +the +could +make +^apphires, +was +tbougii +to +relation +told +risk +more +the +painted +and +the +of +it +embryo +be, +will +tax +e\ery +East +moving +and +strong +honorable +majority +from +basis, +should +in- +fety, +not +In +all +of +oil +independent +that +the +be +taxe* +sary +Ler +ofthe +are +favored +and +labors +itcloses +in +future +im +beautiful +oftho +County, +by +not +We +for +not +mlie +Graham, +course, +and +the +to +are +plause +from +shall +fond +through +plished +occupations +id +to +tell +subject +build- +lakes +was +" +flour, +and +European +London +fearful +New +isfrankly +Bchr +papers +around +d +ot +of +features +and +as +free. +Staualoo, +he +Beginning +began +plat +through +on +is +the +Inaudi, +she +have +the +Deeds +permitted +flr.. +already +country +the +was +bill, +Increase +demonstrated +my +nothing +absolute +copies +other +know +plumbers +old +the +them. +per +immediately. +described +businesses +folly +at +for +In +thence +and +viewed +plentiful +boats +bot¬ +The +caneu +and +topic +Consti- +of +nized, +are +ed +and +constant- +honest, +now +shears +into +furniture +employcd +aro +danger +not, +until +when +they +and +a +three +i.< +of +given +datruthm +of +shoot- +mise +they +be +S-UORSB +thlnkr +rain +the +dtop +that +immense +Clerk +diator +Mr. +her, +Give +Jasper +the +had +many +washing +g< +long +it +of +out +to +fifty +the' +what +reef +quarrel +We +d +of +- +extraor¬ +the +hid +to +cum +appctite. +to +to +apt +of +; +and +for +plaint. +is +as +who +linen +and +woman +confused +into +a +His +says. +to +it, +pretences, +would +tie +unload +much +Jacket +No. +possible +up +misunderstand +State +W. +wire +the +make +whizzed +camp +and +79V +in +full +issued +by +follower, +The +be- +fat +cession +of +sign +round, +will +of +the +future +forlorn +ehargea +the +IL +March +in +quarter +a +the +I··· +a +to +dollar +found. +no +may +make +exion, +rustle +sources; +of +state +of +inaugural +had +wire +in +under +his +their +a +a +cause +cepted +When +railroad* +Death +receive +hardly +out +ttories +the +from +resided +whenever +wagon, +County, +day +he +values, +from +by +there +the +! +sea +,'..iii.t +This +Manv +various +was +the +scarcely +Hay, +to +is +powers, +taking +ject +of +her +which +It, +rine +to +(1) +Ï +and +McArthur'u +came +name +in +seems +a +and +|>owcr +out +inc +660 +have +In +representing +that +total +principle +Hupp. +'T +he +purchaser +and +seen. +general, +all +of +the +by +and +and +Annual +and +School, +times +a +yy +west +all +to +tightening +the +four +and +fleet +which +barns +yore. +consideration +table. +her +some +success +has +how +not +to +file +rock +excess +Is +you +that +clearly +re- +Minnesota +numerous +tions +what +tho +rations +trcro +after +re­ +1, +union +ment. +will +masonry +not +to +rospocted +of +in +year. +Greeks +James +low +of +staying +that +court +tbe +purpose +to +were +officially, +cars +announced +townships, +are +spot +The +them +first +entrins +was +of +nii., +ourselves, +the +protection +plans +which +at +They +are +hen +greenbacks +fy +obtain +copperas +Slates +hemlock +Mayor +ns; +of +that +; +Peru. +kwell, +trade, +womanhood +Southern +kind +seen +have +pair +era +for +alike +have +number +Y'ou +you +two +"Women +rendezvous +begun +en­ +a +collection +witb +majority +plant. +fun. +into +copied, +the +and +necessary, +with. +angry +vider +will +glorious +any +hir +to +Pilato! +following-nam- +shot +a +knowing +was +be +desired +and +ters +studied +sub. +south +South +leave +have +1 +be +(a +adding +here +had +internal +roast, +section +does +tableau +framed +and +it +gth +Sh-h +tocracy +misfortunes, +.Maure +payment +career +it +when +Silva, +toward +influenza +the +owing +The +of +and +Ko.'V +It +with +A +judged +Now, +ad- +W. +thss +Bhe +Journal +one +pull +heralds +was +which +fr +denund +that +the +where­ +immediately, +carry +uee +Dyer, +as +sub +execution +and +committee +of +had +road +ganization, +some +ln +sailed +cause +lungn +the +personal +as +Villafranca +trate +onstward +undoubted +priority +Survey +stein. +received +craving +of +ized +$4: +iu +a +H. +been +As +some +but +their +towns +North +every +if +to +or +time +the +In +shadow +place +them +McDanlel, +lt +quire, +what +Rollers +my +boulevards +been +oti +point +of +percent. +Garside +Re, +Ocean +and +published. +wealth +nence +ho +llgute. +sistance, +trict +away +irt +inomcJit, +changed +laws +the +floors +years +degrees +what +would +Moore +and +lluiing +to +D. +annals +simplest +one +"subduing" +re¬ +right +Why, +a +Flat +to +course, +virtue +to +tor- +Bono +shall +cessary, +to +tue +gloves +i +through +' +was +Aaron +appeared +least +Siliatria +of +that +and +possessed +they +Ms +as +for +all +f«»r +natural +us +press +Loins, +the +the +Lilly, +by +the +their +then. +the +demanded +picks +whatever +ol +joy +Iu +it +article? +my +to +for +agreed +and +attending +when +thus +of +(ricks, +was +survey, +capable +any +T +I +the +fact; +gasoline +its +ous +of +in +by +a +dreams +tbe +sweet +and +one +count +tho +to +plisbllig* +It +Grant +each +forty-nine +too +again +music +to +stomach +skull +crop. +and +every +said: +desertion +patients +man +the +with +9:114; +and +one +other +like +8-piece +inscribed +national +were +be +was +similar +of +that +courue, +larity. +figures +the +speak +my +good +with +and'two +ant» +it +this. +In +of +of +id +or +thia +in +around +was +not +run +and +the +to +Begin­ +C. +sold +city +ket +and +these +minister, +same +and +Indian +effect +Ia +our +from +ington, +339 +a +utterance +is +sailors, +evident +expressed +collective. +Tlieae +tained +waiting +Iay +and +All +tempted +needlework. +dent +same +could +travel +Colonel +affected +or +committee +would, +with +the +demand, +the +in +found. +trust. +leen, +prove +with +corre,*!BMI +lamp +offered +and +Will +or +death. +family. +morning. +In +when +In +th +In +F. +B +those +and, +deg +length +The +brought +closely, +or +supplies +rare +of +about +was +avenue +flames +Dr. +thirty +Potatoes, +mash, +Thii +Every +aad +would +was +left +conditions +handle +the +a +ness +recommended, +ial +but +B. +When +die +widow'* +aho +"Patent +desk +be +of +out +celling, +ap +suit +time +The +o’clock. +such +rune +course +regarded +the +cuffed +nue. +of +ingly, +air. +complied +Institute +much +council. +by +said +recognized +heavily +for +undertaken +this +at +.about +grizzly +mjsteiy +that +directed +Reed, +order +variety +struck +for +women +Knapp. +a +cases. +go +But +the +supreme +ment +envelope. +hear +possession +still +character +college +tin; +loll +a +stocks +hands +here +appeal +The +blood +the +visitors +miles +with +They +a +did +the +and +lace, +times +the +do +snioko +other +not +de- +a +ho +located, +Chas. +funna +financial +who +clouds, +in +any +wilh +burg +seen +BS +a +steadily +in +before +set- +ing. +deal +Wow; +on +the +some +Locke, +the +close +informed +of +Inferior +>equipped, +is +Normal +be +been +blacks +shows +I +Government +within +duty +beyond. +in +country. +as +waiting +Is +the +dis- +oes +at +arrived +Arizona +IngS +Democrats +mid- +tho +We +applied +made +being +aneh +of +he +Episcopal +only +McKay; +hundred +the +your +officer +Pattee +the +The +an +ing +upon +cost +After +the +embroldery +lo +above +its +live +he +offered +from +said +the +walls +dolomitic +and +Lou +hospital +republicans +rights +they +On +up +W. +large +and +Hatfield, +urlously +times +education +and +a +is +the +housu +provid- +the +Plummer +deeply +refused +was +duced +to +my +of +wen| +I +the +in +Kuid +fied +last +In +who +reindeer +11 +worry +its +state, +much +and +to +■am** +explained. +The +. +The +plank +view +D +village +passing +for +crushed +. +American-built +with +, +chil- +character, +Did +of +sharks +scout +but +and +stone +Saturday +averse +Maine +the +favorable +Introduce +spurts +if +war +for +the +and +take +requested +nominating +with +it +the +but +with +of +AMally +AD +loll +otherwise. +of +mutton +matter, +cost +lbs., +when +prosecution +to +Improve. +I'ratt +must +time +be +mow. +? +other +counties, +not +didn't +first +States. +grand- +tional +him +were +dependent +special +gifts +Limited. +usb, +those +went +are +man +jail. +^ +Side +a +and +that +popular +and +lie +opposite +to +the +and +his +at +Montlcoilo +of +amazing +strongest +of +flood, +bird +Up +strong +Carl +the +use +tho +that +But +Club +and +ks +to +. +stop +largest +departure +thoso +Republican +at +at +it +equally +original +Third, +Interest +as +recognize +"Do +he +obtain +by +dianas +tbe +for +milling +of +Why +the +attached +nn +5. +one +of +leather +The +on +uel +and +boys +left +«r- +tho +of +where +him +into'a +of +baseball +a +the +which +Lot +still +tory? +the +and +place, +sary +begun +bent +bill +historical +tection; +he +sows +will +that +men +that +convention +on +this +State +all, +coming +salt +a +Becoming +and +prices, +ably +laboringsuccess +11. +era +a +it, +the +those +cash +preach +inent +ada +six +a +force +by +by +that +the +er +and +had +sending +with +fed +had +In +wealth +orders +A +Thursday +2nd +over +taken, +tiiu +Angelea. +John +borne +water +not +States +such +two +dog +trains +fully +any +The +Bikeh, +money +the +Knmlncr, +merely +of +the +Those +two +catch +note,.the +ground +and +ensign, +built, +president's +ginger +be +pap*-1" +the +evangelist +44 +00 +We +of +to +re- +Missouri +U. +of +State; +school, +to +and +against +Wlien +was +not +barred +through +had +battla +stand +has +and +much +county, +in +whether +lighthouse +out +on +them. +the +the +with +for +b>s +ou +fire +drunk +latest +anybody +too +portrayed +Galusha +the +While +nil +of +Bacolor, +Company, +but +with +Hinkle, +obtained, +W +the +collector, +oflice +stolen +pursuits +universal +two +is +from +is +and +1 +him +and +all +but +scandal, +Iher, +stage +violent +der +But +truly +It +at +senate +tho +the +hide +the +such +At +1870, +city +and +junction +the +tbe +j +exercised, +stated +female +so +cent, +next +and +bounds. +been +whereas +frequently +$13a +So +of +Fret-sawing +.features +renowned +Eliza +P +alleged +soap +to +judgment +is +big +'he +revealed +ample +price +Joseph +her +the +prevent +other +plated +that +whatever +grantees +regarding +tion +result +average +a +obtai +offended +excess +that +securing +Whitman +of +little +rapidly +overtake +that +one +election, +of +of +in +which +which +of +aud +that +will +urge, +to +I +of +most +rode +to +Now +on +of +Sheriff +overwhelmed +person +the +on +matter +gave +cobbles +admitted +deal +limited +complaints, +of +have +breed +an +tl.- +mi.es +arsenite +said +and +because +anywhere +$4, +people +him +of +re- +knows +having +magnitude +make +with +entered +the +listen +liberty +dobs +thereof, +stigmatized +Pollock, +free +is +ipe +Dr. +amount +will +try +Hamilton’s +Just +lh« +that +a +and +advantage, +0 +law +cations +n +show +tbe +grease +5:10 +mnrk +house, +him +was +wasted +the +- +teach +by +A +time +sions +a +or +of +Fran­ +will +my +prison +Marian +far +in +tho +Qourt +up +mu«« +to +upheaval +its +moarning +go +19' +not +ana +Mrs. +will +plo +bid +the +Myhealth +B +was +grant +not +neous +Elliott +41 +Consider +shadow +remain +nnd +I'niloJ +W. +thiid +sufferer +of +Kimble, +she +pieces +about +at +Charley +have +rent +ward +permit +of +they +ironed +societies +south +tho +system +artist, +or +Ah +generally +consists +disadvantages +Massachusetts. +as +a +less +condemned +and +Decker +for +face, +and +closing +and +mother +other +was +fancy +plans +or +are +afore- +wi +report +hymn, +for +there +the +Section +Mount +of +a +is +o +when +the +already +suit +thfs +nightmare. +newspaper +position +cians +und +retire +billed +arrange +and +mucli +seem +do +many +laudable +Creek +by +contest +October, +enjoined +Virginia +wise. +design +Hay +20 +of +matches, +in +coat +necessary +Mr. +may +trie +smacked +tors, +hu.h +rich +nearly +year +oldest- +of +account +took +manager +equal +just +meat +cause +both +River, +dertakings +relations +been +that +of +sian +man +born +ments +damp +crackers, +subtle +accouiui +the +sometimes +for, +Sensuality +.Jefferson +that +t<>p +80; +leaving +on +that +;il.r> +de- +out +been +Tbe +within +a +was +these +pegs, +a +in +north +it +jokes +report +alizing +the +unduly +iu +man +and +a +does +preciable +in +both +continued +story +tongues, +making +Wednesday +the +of +grower +race. +twenty +at +the +provisions. +ized +MARCH, +by +record +leader +te +gets +ister +have +da +be +and +pur- +and +declared +of +For +his +in +little +ripples, +froin +oats. +The +m +into +started +pissing +Its +but +note +no +ington +said +kept +to +her +struck +that +to +to +to +to +overrun +be +New +of +A +form +to +may +the +its +best +power, +onr +bond +my +dashing +that +the +Both +breakfast +a +tho +and +camesuddenly +shall +Billy +herself +liavo +years, +Mutual +is +ties +conseqiicnco +the +ect, +We +the +and +Tho +67 +for +Colorado, +flat +tevt- +cam¬ +dition +the +be +record, +portion +a +band +the +knowledge +24 +promised +to +case +jure +intercourse +mysteries +proposed +Florida +youthful +shall +and +had +v. +the +was +by +scrupulously +the +or +oonfesso +affair. +the +the +tion +placed +school +pasty +number +extensive +a +between +the +eyes +thereof +tone +land. +of +treated +meetings, +was +has +expression +it +begin +upon +lot +will +foregoing, +A +Indian +start +wonder- +most +murderers, +out +do +If +club +shall +year +it +from +have +admired +invitation +mile +and +Inasmuch +renewed +they +except +though +larken, +the +presented +corporation. +wools +could +glory +of +The +persons. +suddenly +out +burn +selfish +in +ment +phsntum. +moving +Hence +frog +week. +Claus +whatever +do?" +expressly +haa +here. +was +at +data +so +it +correction +devote +to +is +9.10 +mestic +Yes.] +In +Carpenter, +the +beeves +that +armed +over +tho +tem, +prefaced +all +heart, +or +der +and +violent +tako +even +of +reglient +to +chaser +normnl +naate +Miss +b'effed, +mediately +England +In +shops +manly +this +have +for +there +subdivision +business +and +light +that +visit +were +all +i*>8t +must +-- +enough +ar«* +not +too +pair +use +Hutchens, +was +celebrate +garner +compose +over +few +e +This +front +the +the +ensure +diseases, +by +case +remainder +the +Male +Corner +old, +had +to +lers; +longas +agent, +rado +men +Harmony +the +water. +Emil +faces, +is +hut +is +ent +motherly +in +the +a +against +partitions. +century +Treat +position +of +up +attention +refused +Feleral +at +full +donned +it +and +avenue +when +suspension +pletely +and +Charles +explanation +you +just +return. +of +Maloney, +with +men +order +constitutional +ant +stated: +meats +(haft +the +force +policy +The +honor. +from +tree +public +terlock +woull +he +Wo +the +On +to +said +enactment +remain +Worth +The +in +ind +In +when +people +be +Gazette. +with +topography +p-" +safo +on +Ivory +to +forces +the +a +tourist +was +this +were +reject +a. +and +tween +are +the +dis +In +country. +to +of +to +those +worthily +entrance. +Ctd +Sur- +she +rencontre, +at +you +nearly +shore +the +light +loved. +not +would +chief +the +but +to +that +Marvin +sometimes +the +as +were +trappers +forNov; +away +all-absorbing +everlasting +tire, +ightening +far +annum +bo +Tavlor +is +or +first +as +of +tbe +support +on +along +var. +of +in +fravels +ambition. +foward +R +pile +of +mules +last +coils. +and +ture +Pride, +favored +was +Etian +public +elastic +to +are +M +can't +they +on +Wiggs, +the +State +or +a +little +made +assistants, +ing +back' +doms +Boy +retd +tho +thoiu +convenient. +The +information +defendants +need +navigation, +Repre- +quite +York +ever +more; +insurance +command +been +cen¬ +make +It +dormant +her +I +will +way +the +of +disabled +tion +Johnson +spasmodically, +the +to +way +be +dry +Jersey +trainmen', +school, +aud +gave +or +the +as +private +tha +5 +It +a +tion +first +for +cows. +awhile +Turkey. +as +t +however, +could +mortgages, +classes +mighty +be +will +early +of +mortgage, +chines; +melee +cent +business +think +being +in +doing +heard +of +heroes +to +A. +The +ot +fine +distriets +4a, +tho +sthould +them—and +him +with +horn, +Eacyclo- +the +ty's +seeing +the +of +The +of +are +Christmas +over +vinced +all +in +casserole +terribly +Cottonwood, +Irish +place +early +strong +hold +explained +was +and +that, +1 +Wieri. +1886. +chell +that +ing +lrive +Hooore. +holdcn, +the +he +else +present +outside +d +he +out +should +intersection +regarded +ing +gave +was +ceivcd +ment +laboring +sides, +Kenzie; +pay +did +is +ing +both +P +dent +was +boards. +meetings +carved +whena +larger, +Whatever +any +highest +eral +to +Upon +S. +which +("ate, +rapidly +plants, +dredger +other +I +carried +to +feeders +mysteriously +was +goods +ice, +R +of +shower. +ln +a +No +ali' +time, +aided +dresser, +into +me +my +legume +first +valorem +persons +up +i +eery +Romeo +aad +District +Casey +of +gether, +or +most +notioe +rose +emmi +The +coast, +beaten +to +pieces +when +complete +and +independence +loss. +found +man +difference +to +to +the +and +to +conducted +ct +by +that +degrees +draw +of +E., +of +any +no. +Where +slumber +were +Afrifcan +debt, +Greene +The +biddt +tonight. +The +dat +certain +miralty +him +ehlny +it +nine +a +by +BaaBBBJBB, +aaaded +ever +a +Charles +well +justice +on +pay +shot +must +is +the +be +served +to +trothed +him +of +of +It +it +not +in +ous +largest +in +very +ing +the +Sec. +family +reside, +some +and +l>e +again +sort +been” +twice +showers +by +ao +Monroe +denini.d +tk* +some +, +dimost +and +use. +again +while +ache +by +were +(aho, +under +shock +The +New +the +key +under +over +.io- +at +mortgagor +doughty +at +student*, +there +any +the +Pole. +us +who +No +m'les, +and +at +been +the +try +and +order +whole +form +upon +rhetoric, +the +Now, +old +can +the +Her +and +a-ked +what +quarter, +of +thenco +desired. +to +repented +common +it +Examine +are +a +not +was +of +the +and +hy +hours +force +eral +l>. +the +con- +securing +and +life +I, +law, +Besidence +in +jointly +the +Chicago +of +from +the +lives +for +pointed +of +from +Governor +of +prisoners +The +national +don’t +act +and +ll'ie +herrings, +for +go +great +ai +by +to +no +state* +ond, +Robert +- +in +member +cap-a +blowing +White +who +more +Register +In +in +lists. +try +to +at +blood, +right +got +it +every +be +subdivision +at +at +!' +Butler, +uncle, +of +hurried +and +public +and +t^ie +and +ftem +this +if +features +about +was +its +the +terrible +both +her +met +he +scholars +on +pitifully. +time +it +; +two +most +head +the +mata +day +hats. +Violent +h +while +MARCH +a +said. +and +to +is +collegians, +Interstate. +also +left +the +to +able +where +it +Street +made +a +off.or +at +complished, +lias +told +region +a +After +'M'' +his +Gilman; +have +anti +that +of +sent +grim +1, +Colonel +are +blue +of +vandal. +the +cost +Airs. +the +up +court +food. +the +ritory +alternate +in +interests +foot +section +them +committee +was +and +was +oi +and +dipped +ol +newspaper +up!" +give +thrown +as +enthu +that +be +been. +digestion. +improvement +production +seems +and +man +of +number +$2000 +high +discredited +twenty +Sec- +come +is +of +us'. +nq +through +conference +he +4!) +they +ships +an +when +having +been +.through +Thome +stones +tomb, +to +that +being +rests +Alan +hand- +are +grain. +other. +But +aft­ +through +pose, +road +during +youtn. +are +social +Our +2 +and +face +In +t*he +Mondav +the +and +the +account +ttjaj +for +Hale +ivivos +isdoni +that +skillful +Books +water. +Saturday +clouds +after +teady, +servant +came +daughter +1 +building +will +which +thereof, +Senator +Alamance +court +«lo +creatures +exceeds +as +raaaaaa +county +of +as +jirovince +as +never +the +streams +the +have +to +caaes +its +and +Barbecue +stnndmrg +south +to +by +received +a +he +minded +some +Jorr +shelves +sars: +internatifonal +Sampson, +sacri- +sur- +day +ouarter +easj; +jnilli +occasion +delinquent +A. +the +We +open +of +ork. +of +Sthe +and +and +needed. +ll +ing +stand, +to +Elkton, +burned +each +alt +the +study +saw +we +ian +their +it +Nipsic. +modeling, +as +bv +have +certainly +importance +Sec. +di¬ +ors, +long, +sheep +now. +train, +in +ally +it +town, +have +which +twenty +< +train +we +frame +the +the +entirely +propose +supply +Further +order +up +was +was +loaded +ruin +tinged +in +people +every +result +Lizzie +second, +mind +were +states +as +direct +sented +entitled +by +calamity +(2). +ho +Inten- +organized +inclosed. +course +Southwest +flavor +tbe +or +Calais, +or +the +straight +many +with +you +lated +afterward. +the +they +new +a +Esq.. +on +1st +an +thus +cent +took +fastened +a +Inches: +signment, +feasting +for +therein +In +since +the +From +us +be +which +studs +saving?.Lumberman. +aud +Pork +this +The +As +who +There +While +laborers +Standi.·h +life, +through +general +or +years +sults. +ot +warrant +one +planting +the +and +his +tertainment, +these +as +son +13m; +nations +the +O. +n +to +to +Cristobal +not +with +counted +The +djring +n +has +tem­ +within +searco, +its +watch +put +ntted +know +women +disgust +the +ooweis, +thing +of +Hometlmes +had +front +Banner +wit: +expressed +States +refreshing; +one +valuable +and +lands, +for +vvill +division +with +front +to +thei: +crui +interested +waving +tissue +family, +Take +remote +wasn't +Collector +increasing +closely +and +vcoctaUo +then +dread. +at +the +is +without +Yuma. +to +a +lives +statutes, +the +IIe +improvements +by +slgnment +into +Christian +no +w +and +quest +aud +asked +wo +it +shows +iu +mucn +at +famous +into +of +at +coun- +has +of +select +a +conduct +will +impossible +poison +the +9,1846—For +drlvcwayH, +happily +of +Hackensack +lo +also +bolt. +rouse +days +pin +the +growm +iv +the +building, +stretching +right, +wound +three +cruelty, +are +to +all +"tarantola" +advantages +accompanied +square +daughter +in. +Edward? +ask +and +original +was +and +and +and +and +who +part +Milier, +were +gentlemen, +and +in +set +be +honorable +North +of +agreed +J +wsre +192, +of +I +to +as +uuf.- +B. +bottle +interest +did +paid +was +Carroll +Psalmist, +of +assignment. +first +your +and +acres, +yesterday +the +to +fallen +. +each +of +assist +J. +October +he +to +boy +jpot +public +books +chaplain, +Pendleton, +his +Mr. +hesitate +equally +or +altar +of +from +to +heart, +Its +and +Winter +insisted +the +a +W. +dines +and +They +as +if +seed. +quality +picking +weapon +Fairfax +years +On +been +acres +her +the +Catarrh, +to +and +An +from +of +might +and +ulation +( +the +a +the +separate +midst. +that +impotency. +from +old +Is +trom +their +coloied +the +years, +a +of +are +boat +a +can +continent +Manning +benevolent +parts +turn +co*U +day +the +Mixed +deputy +as +with +and +will +aold +form +service +the +depression +B0i.in +but +some +annual +riding +alternative. +ing. +Governor +soil +|; +wrong +room. +crowds +Buflalo +is +interest, +the +teachers +aaid +each +to +may, +najors +city +has +for +five +tleman +have +of +attracted +next +Uulrifc +happened +men +thai +rate +be +you +hun- +tbe +price +find +(not +that +roads, +tified +her +each +by +comes +in +sure +Black +jear +feed +for +work +the +prices +s:ifei;tuird +of +belore +and +soon +money +preaa, +or +medium +Havener, +follow +general +thrown +in +round +many +the +in +away +had +there +ins +the +his +tem +by +for +Valley +perfectly +the +could +, +pay +by +as +animals, +that +God +It +teenth +it +aadar +Thoy +interests +intrepid +coal +does +try +step +its +addition +threat +we +master +has +different +to +spirt. +of +the +resulting +cies +at +will +of +Clarke, +Co., +where +to +of +abstract +In +morn- +said +to +not +out +pernicious +Shobe +ca.st +above +of +in +(if +tx?en +®th- +should +the +attorney, +and +arc +to +feet. +as +Innocent +this +of +business +practically +men +tried +conspicuous +aforesaid, +of +of +and +back¬ +workmen +Hut +ragua +man- +itself +I +O'Kane +Is +taken +B. +sume +courage, +is +and +girls +and +of +quality +that +wear- +from +frantic +Sharp +fight +thirtv-six +and +in +that +to +another +other +means +all +street +Foley +the +State; +some +true. +got +speech +to +duty +consulting +to +the +good +1882. +uncAJir: +first +womanly +the +abroad, +its +out +position, +ol +the +certainty +That +of +same +are +Ralo +2; +time +should +earlier +Worden +all +are +3|«> +rash +girl. +my +Denver +falling +He +people +north +as- +and +wrong +dinner +Vurely +previous +He +thing* +hot. +not +set +married +united +case +by +he +10 +anrd +of +said +ninth +best. +time +his +living +water +ccrtuin +body +rtrtht +sox +Theeimportnnt +on +The +United +tho +unknown +Laura +amount +executrix, +not +it +its +and +enter- +he +head +it +ordered +par¬ +according +provided +even +O +the +j +thero +of +by +and +Kdmund- +tntirtly.the +reaches +pleasure +y +hands +agreement +was +the +prac- +on +the +the +that +inst. +this +Stat»» +grain +class +to +Bros, +Ink +43. +with +hardly +took +eat +theso +thoroughly +oompare +time +of +life +of +hereby +Who +no +fortunate +Auditor +tho +them +Jean +a +her +and +Township +wish +in +state +premises +pond +prospectors +the +9,11 +was +of +tho +four +were +little +Two +be +reduced +held +Terra +cent +of +give +it +took +made +petitions +ea; +recording +of +or +reaucratlc +and +te +and +r»d* +laying +or +to +thi-j-ol +until +a +to +kin's +of +told, +of +their +both +Min­ +due +to +temper, +tl»e +Mrs +that +sacxs +nubllcana +bill +Tho +lime +abor, +57J° +and +a +upou +over +this +the +The +are +France +ficers +short +the +there +I +fact +said +ed, +children +same, +was +now +less; +time +1 +On +were +as +'and +for +said +special +markable +gan +In +of +heirs, +rivnn, +fromMonroea +beyond +north +no +of +the +Empire +are +to +say +which +Into +taxes, +a +he +predicts +long +will +in +"Your +the +ravine, +a +In +my +a +Mr. +wages +them +brigade. +and +Newlin, +during +a +as +and +on +discover +as +$300, +having +thirteenth +and +on +by +which +enjoyed +that +they +h* +cause +the +consented +and +all, +days +security +Argentine. +machine, +the +weighed +in +Acres, +liay +the +as +of +wouldn't +the +rate +1832 +which +to +ness, +be +Illinois +wcro +Xew +undec +apparently +of +all +sent +from +Our +cloudy +followed +very +much +Still, +the +is +meet +firmly +first +a +in +in +hogs +initia- +one +placed +many +saloon-keeper4 +purpose +!ng. +a +bu>mg +court, +by +eiihe +broken. +of +Lots +StOUiacll +commission +instructed +Wordi +power +of +far +rich +Kli.ahelh +shall +on +horse +right +the +compensation +Bolton +aa +by +Iter +those +tional +when +taxation +The +holes +bounded +luculvod +which +of +added +and +from +fttdru. +west +there +the +with +and +In +as +name +few +Forbes' +occasion +Once +will +foreclosed +Want +heel +Canavan +earth +fomented +company +under +a +fact +As +that +by +and +noniinatii +a +whiskey. +tion +class +Estate +mile +that +more +vines. +to +artillery. +simply +they +loss +and +impotent +A +cook +showing +LOUIS +ed +BO! +popular +a +It +The +sound +shelter +of +the +was +When +our +prize +under, +dime, +number +narrow +if +tho +tween +the +earth +ing +or +never +child­ +was +had +as +eaten +I +*», +A +upon +time +h> +ful, +to +to +come +to +Attorney +rising +sit +its +Terms +made, +and +and +pillaged +tbe +town +not +his +sit +ing +In +for +away +Into +stone, +to +After +>o +little +delicacies +be +one, +to +is +soon +of +satis­ +selection, +bottle +State +with +of +faith, +soldier, +five +designated +States. +you +isfy +support +the +neighborhood. +a +and +is +infant +and +nuigham, +a +skip +was +and +cannot +the +they +of +economic +ryes, +a +Sebastu- +guns +a +still +il +Miss. +two +of +ilm +Cut +People +advantage, +level +the +short +an +rule, +national +for +their +grouping +the +I +Biakor, +who +ber +than +of +the +and +who +made +the +attempts +plans. +state +bj +een +and, +of +weather +Allen, +“Do +Utile, +taiost +other +may +and +put-up +of +1 +as +win +trick +your +stitches +mv +because +doubt, +bullion, +pro9ierity. +time +to +of +assault +down +Wamiiwo- +thin +pieces +the +for +the +"Two +north- +eral +Of +in +bt- +a +notice +AND +throat, +accepted +electing +to +asked +P.M., +to +issue +fortable +but +nro +ago +any +road +votes +or +last +This +coming +come +will +to +smiles +went +having +a +If +in +P. +Ime +resolutions +days. +in +Christ +the +inoai +have +Mr. +the +of +was +tboy +The +In +this; +up +tion +above +care +Besides, +that +that +girl, +ci +date +however, +everlastingly +irdnanoe. +it +recently +good +make +of +Tracy, +Mitchelson +the +and +West +never +a +scrub. +it +be +and +waralug +treat +as +upon +policy +inquisitorial +his +one +p +married +has +the +they +tnen. +Arizona, +lhe +claims +of +troubles +soldier +I +twelve +the +K. +with +homeseekpr +iu +petition +latent +The +you +Ow- +a +they +their +feet +Tho +declaring +lot +to +taking +complete, +said, +sleeper, +tame +After +and +Wil- +Commonwealth's +secured +proof +ago +at +we +charged +the +seems +but +Well +structed. +death +organized +furnish +but +then +8kc. +every +with +lus. +. +new +other +A +fcis +of +Anybody +described +duchess. +We +make +Los +tittesliotiH +of +have +tho +entertained +back +a +the +at +killed, +them. +day; +Tone; +to +1, +Isaac +morning +of +who +and +General +over +Democrats. +during +or +the +quarters +for +trip +Shone, +the +that +an +to +be +a +er +of +interview +Northwest +Francisco +did +popular +thirds +Sylvester +was +Tillinan +that +Nov. +underneath +the +flag. +different +Pennsylvania; +inference +:to +nature +ahiiity +earth +of +the +the +Iii.bprlak.ta +is +Hail. +on +War +be +democratic +saying +that +poured +The +of +power, +a +a +from +feet +careful +Error, +line +dreads +joy +well, +length +any +exact, +marine, +traeta +inclining +schools +in +hope, +bushels. +A +the +the +8, +St. +thin +less +lineof +union +and +ners +to +March +of +own +option. +so +strikers +upon +to +tho +Hall, +con- +city +likely +nt +Charles +northwest- +sold +tbat +Shape +hOgiS +organized +tunity +like +baby, +modus +to +rne +difficulty +smoked +1852. +willing +oould +consequence +and +Tener, +this +I +far. +hat +had +repented +feet +water +blood +us +leave +a +and +which +is +"Virgin +why +by +reckless +authorized +a +of +are +of +three +block; +year +have +as +customed +explain +seems, +that +town +Presbyterian +Mrs. +tho +j +Bulgaria +a +rich +Mra, +and +buch +in +decide +You +dreams +ma- +he +depth +be +very +for +ly, +forth +forcing +$7.50 +numbered +or +that +stage +Is +case +of +the +action +tt.. +by +discrimination +Reemelin, +Mr. +tap +kind +cases +Wheeling +of +1 +we +its +San +one +cut +at +consump- +The +returned +attend +and +This +Buch +dress +may +the +citi­ +bued +tower +then +dress, +no +fee +in +The +a +such +heads +and +with +Judge +senate +cause +they +placed +perched +been +Dew +companies +the +good +Atkinson +us, +water +beautiful, +that +represents +Don't +have +wire. +W +cruel +Notice +year, +in +broad, +K. +the +proteBt, +man, +one +of +remain +Rpt +president +district. +tributed. +the +work +bear +solved +insolvent, +the +she +favorite, +room +will +more +redemption +pig, +bought +his +working +of +full +debentures +me +had +Orr +Madcrta, +still +and +Hanmlin, +the +play +the +i»r, +for +of +office +ties +bid +A. +un- +disposed +is +1 +foreign +proper +is +family +read +Mr. +much +mileage +sub +immediate +Burbank +tho +the +not +the +Monroe. +the +best +roof, +reinforced +values +been +thia +long +convey +that +pupils, +large +circumstances +.there +of +tt +dates +carefully +baste +fairming +living, +he +of +for +are +Hinch +is +time, +otherwise, +stances +inn +effect +labor +costs +sabre +Immb, +heirs, +to +for +him +systems, +Hawaii +have +in +Hayes +any +if +oratory +parcel +This +by +grave. +until +in +were +satisfied. +and +Orleans +bad +when +him +water +he +before +and +be +before +are +of +tion +men +have, +bidder, +peace +plan +grading +Vaar +line +player +special +solace +be +I +discussion +greatly +it +commence +went +generel +With +it, +his +in +them +sack, +eleically +meet +shillings +man. +tlio +fied +did +within +of +Oraco'a +gogue +as +and +of +the +she +a +bearing +521 +warm +a +the +be +tha +kitchens +of +a +Thus +Mlddlcbranch; +demand +strangely +and +J. +ICberhaid +Douglas, +account +50c +fro +forlorn +to +two +so +might +too +settle +season +a +of +them +a +issued +» +a +teachers, +tho +the +eminent +the +some +undesirable +use +Indians +that +to +of +afterwards +exhibits +quacklsh +of +Angela*, +raised +and +is +would +cheap +the +course, +into +tenements +the +evidence +penter +the +of +celebration, +J. +pushing +are +nice +groceries +from +No +blooded +his +Hill, +old +con- +District +moters +\ear* +may +the +aoma +course +100 +and +I +maturely +a +map +a +from +are +Ifyou +deceived +violent +:*T* +faces +conserva +him +portion +and +but +next +.I +of +here +resembling +as +becomes +that +a +Then +is +following +natural +elicited +a +suicide, +had +over +hung +at +do +record, +consideration +studtnttiud +That +s +ought +before +but +Thomas +easy, +certain +po +together +the +tion +by. +a +she +put +trouble +of +drives +monument. +confident +homc.but +man, +ence +eight +made +the +would +After +wlth +Railway +Second +by +less +de­ +could +decreasing +Marne +to +one +tho +all* +allied +so +will +crew +other +against +Ameri- +One +rather +a +JAMhb +of +en­ +to +earthquake, +one +I +on +of +the +it +to +display. +to +of. +i +a +discrimination +without +the +and +than +slush +tod +it +seems +long, +the +O +put +m +and +I)A +the +lJ, +William +and +firing +of +After +of +drum. +baa +he +thing +the +laid +her +makes +of +source +cent +take +listener +-of +why +they +State +aud +with +iiDa +Senators +farmer +from +bound +would +no- +ing +polls +this +states- +a +request +the +high +plates, +and +was +their +of +a +Sales +enumerated, +numbers +to +the +forced +De- +w.th +on +In +facultlcs +C. +views +own +each +company +upon +are +letter +ueruetrat- +disease +opportunity +.In +its +weeks, +British. +Messrs. +bast +tremely +uo +of +. +of +did +bert's +Belford. +wood, +of +"Sen.,'' +a +you, +to +family +weeds +and +Jail. +the +the +mourn +iike +of +Helme, +yet +Vroom +was +of +ordinary +and +going +calamity +the +footsteps, +furnish +70 +and +would +The +President’s +changes +ral +recited +first +the +to +it +They +from +lower +Mildred +new +minute +& +daya; +me +are +handling +railways, +then +chips +had +will +his +visitor +in +at +except +road +years +pos•essorof +four +transler +Block +and +f..r +the +a +rare +southw +territory +Thomas +regard +civil +side +greatly +pre- +pie +must +the +remarked +ediflcea +separate +altogethsr +for +also +January, +of +say +result +relates +nnd +July +Van +have +This +selling, +1 +grapefruit, +steps +thoughtful +in +milk, +in +and +ory +tended, +3,166 +all +the +went +Atlanta +R^ths^hild +or +la +whether +that +that +she +with +that +the +dust +not +Latah +White« +as +best +is +tice. +holds +the +home +perfection +James +the +be +a +to +for +the +stated. +to +injure +manner. +doing +cures +tnillions +service +sum +great +some +subject +the +national +large +more +their +previous +and +part +wood +on +to +Terri¬ +citizens, +most +wfiereby +excluded) +within +This +soldiers +the +against +occupante +when +printing +is +deter- +to +success. +tain +Edwards +tbe +snpi»lies: +wares +because +eyes +a +Hatch, +vings +21, +nothing +keep +and +the +of +may +inches +to +vantages +any +would +change +an +mediately +Cold +ers +We +the +of +in +or +iliir +the +I +mud +half +when, +plains +it +Swinton +thirty-two +not +haa +there +the +and +one +that +best, +heavy +tho +their +sad- +brief +the +*[.tclad +part. +kind +it +seated +brown +ject +reason, +and +enormous +about +regard +equltaWo, +State +is +for +him +unalterable, +give +child, +achieve +as +to +reiy +quantity +"On +suppose +Committee +had +Geo. +troliers +ami +and +said +tlieir +grou +community, +chief +V +kept +expressJa +damage +the +Jay. +"life's +16iwest, +lieve +nearly +Bluff +see +Rosa +]>ermitted +national +alsa« +German +be +14r +Hnyd +Complete +street +or +and +Virginia +thc +old, +bands +I +requiire~d +and +a +quiet +suddenly +admission +J. +proof +is +between +hereinbefore +preventable, +ed. +a +his +devil, +be +grizzly +singular +1S03, +mile +a +Time +removal +enforced, +crease. +English +suirounded +to +however, +and +attending +dif- +and +lias +Hro. +combined +and +Mrs. +blank* +dwelling +rival +st +health +make +willing +This +of +I +city +noar +rental +under +necessity +ft +argue, +or +which +dam +wear +set +the +f>oo +and +for +his +making +never +with +in +loot. +the +from +ahalt +ligious +they +of +was +and +difference +Senator +the +a +by +the +domestic +turned +a +succession +should +indeed. +ately +and +should +¡ib«'»«'. +to +ration +de- +and +to +was +of +ry +ti\« +commander +as +in +statue, +The +soil +been +sinking +shares +to +out +presumed +$300 +have +their +at +with +could +not +and +that +els—DYSENTERY, +the +change +so +surrender, +rooms +much +have +of +governing +v +illus- +ca, +Northwest. +troubles +waa +straighten. +-own +deem +AMERICAN +and +' +assistance. +it +the +this +have +occur +and +endeavoirs +on +you +doctoring +and +to +and +States. +an +in +and +superior; +hurt +Christ +ment +before +away +sus- +n.w +would +He +be, +survey +brilliant +They +is +their +quacks +unwlse +It +and +cf +to +Libellant +me +of +of +that +in +haviugasa +proscribed +happened +ails +"Choose +20 +Begin­ +but +as +proper +tor's +nieces +national +after +wheat +will +horse. +to, +corner +braclet, +be«n +the +>n< +shall +butcher +tho +and +I +and +been +body +four +Description +wht +thirteen +basement. +pub- +said +and +men +singing +therein +thoroughly +the +at36V2@4'>c; +only +122d +duty +done: +form, +a +obstinate, +city, +said +places +any +"The +way +nained +to +purchaso +of +yet +,eighties, +the +foreclosed +say +as +citizen +Mr. +exceptions, +methods +a +pigment +sight +rkiptcy. +guess, +in +the +said +, +ay +here, +for +cases +and +Blacksburg +by-laws +brewed +cern +of +E., +a +without +circumstances, +from +first +But +Moses +gold +root +and +of +And +climatic +thought +Nebraska +ernment +aud +As +declines, +are +of +claim, +the +did +Judge +of +well +been +two +I +making +with +pines, +library +lions, +her +it +print +if +was +and +club. +tin* +Mr. +timing +of +attectcd +uucomfortable +or +and +for +it +condition +my +of +shield +faithful. +the +an +5ins. +any +committee. +committee +moral +of +appropriated +temperatures, +p +a +socie- +That +the +done, +but +ditary +public +er, +till +ple. +lection +inde- +view +Battery +very +avoid +at +a +S +The +court +Grassv +sweetness +impetuosity, +the +day's +9,100 +revenue; +of +the +profession +divided +Uncle +gether +Greenville +ui.d +made +he +re- +lo +lint +an +poration +The +you +quickly +or +eiuptions +vote +boree +instilutioiiB. +grand +other. +in +137:0; +the +Physician +system, +mittee +lueton. +the +she +these +ashes +true +gieat +to +him +is +the +up +ither +hark, +he +point. +All +values +enough +Queen, +his +floor +busy +of +its +on +is +the +pay +seriously +that. +gazlnj +almost +shurp +There +a +the +said +he +the +. +t +amendment +were +railway, +of +jacks +J. +these +electric +out +She +he +said +pbylacticum, +remembered +16, +Stcphenville, +as +the +pens +bhls +not +ignoran +connected +outlviiiii +double +in +and +born, +to +logs +Music +to +Miss +you +to +ead-silver +ibe +themselves +and +\\ +called +crop +the +it +Ike +his +prodncing +side. +its +mitted +Brown. +in +seventy- +Into +so-called +Christ +he +well +no +He +lorone +of +Sen- +to +Off +entered +overture +in +to +came +light +under +50 +said +receipts +or +everybody +twocIJÄ" +procured; +universal +quarters +up +aim +time +Osgood +aud +war +hands +his +to +making +ready +also +they +Harrlsburg.Ae. +commonly +will +from +further +metal +at +to +No. +of +of +the +fair +$10, +to +betrays +. +State +are +better +diseases +apply +one +at +turned +years +to +cold +last +cure +tho +Beta +it +means +naturally +between +sent +Governor +gentlemen, +School +personalis +us, +P +FayGU +something +and +pint +a +Howe +to +of +can +the +no +Albrecht +Wi.igs +and +quick +aubaue +used. +There +the +and +many +are +between +artwmeut +Wheat, +ways +stairs +from +ire +the +loaaes +sent +tho +have +for +and +wreck. +of +their +a +of +and +the +must +and +Mr. +square +do +pointed +late +1431 +ihited +how- +asked +would +are +Naval +the +may +zine +Grant +and +commercial +when +US +is +what +these +of, +his +did +mob. +of +in +band +He +same +in +nestles +banks +a +long +tributary +is +onvltlos +most +the +In +truthful +which +sur- +it +boiling +tb.e +te'.s +Charles +tlie +advisedly) +claim +c +the +account, +and +was +it +was +of +shall +roof, +Ulster +morning +SW +laws, +and +one +for +like +and +for +Before +but. +and +for +which +He +loan, +in +many +bo +work +the +¦ +which +its +is +should +Paul, +so +line +thence +each +park +to +names +group +fixed +anti +Lieut. +and +charge· +to +dreve +forgotten. +ther +be +leave +Oct. +and +Of +thorn +in +of +Ithode +the +that +to +order +a +could +his +little +the +it +tinctly +of +record +order. +The +of +which +Va- +un- +an +pulsory +conlemplation. +in +which +retired +because +would +the +snail’s +early +present +U. +the +board +and +States. +editors +white +fidence +day +daily +that +his +160 +or +the +Cap«' +accrue +throw +"That's +made +the +the +permanent +a +kept +of +times +thence +and +bound +calmed +will +qualifications +was +soul +Douglass +afore- +have +line +have +include +the +but +believing +He +predicted +to +a +own +cess +of +Malagasy +influences, +consider +heating +though +314 +cent +and +will +Elaine +the +London +judge +a +I +Organ +bis +it +that +any +greate +ability, +in +mt +in +On +Michael +her. +to +it +quiet +day +liehold +judicial +in +his +from +membership +On +to +young +at +to +clock. +who +be +been +after +not +trust +should +30. +Gubernatonal +ing +packed +stations +and +Alliaoo +that +permitted +2: +which +a +be +regulate +waa +national +they +us +h +too,which +have +slots +under +not +modalions +feet +dismissal +of +bare +was +a +to. +I +foundation +National +In +dered +to +accomplish +allege +large +and +for +hint +ville. +across +to +tragi +thnn +forfeited +tu +0..Tho +where +Of +wall—they +made +operations +lijrht? +The +each, +Withers +shall +teacher +22 +train +ated +only +to +when +away +north +Fiftieth +with +hereby +lard +Pitts- +seasons, +any +pressing +Col. +acts +tasted. +Weicesiay +interesting +i +the +brother +being +Dorothy +2 +Queen +sults +that +¦already +In +subsistence +and, +fed +of +street. +more +by +scientists +rode +Queen +that +the +liuo +already +the +an +No. +of +hilly +receipt +manner +concealed +What +model +King +Bottineaa +around, +the +isiana +employed, +their +mnrp +by +the +United +when +chair, +on +started +"samples." +»paid +in +the +awaiting +considered +remainder +$35, +his +the +liouae +and +keep +present +noted +blood, +from +young +sol- +chants +Greenville +a +the +Delancy +the +course. +and +tree +day +you +beets +centum +will +sources, +property, +consequence +M. +it +afford +a +Cherokee, +wonderful +peculiarly +rejected +but +tomed, +so +the +Range +the +t +long +deed, +terest +Honolulu +of +of +foot +ent +having +of +muster +plainly +i +Orioles +shrivel- +and +fine +Comet +this +the +The +will +and +of +more +and +cally +selected +work +40 +means +away, +ocratic +go +an +order, +communication +to +the +to +stake +cell, +will +Act +sug- +when +the +of +making +granite; +the +and +to +the +part +worth +of +I +sharp +per +wholesale +members +scale +Avant +17th +to +would +or +J +line +possessed. +so +as +Jefferson +good +Tom +of +waymen +there, +line +mled +territory. +keys +plan +unt.nable +the +land +most +as +been +aw- +its +Therefore +are +is +abolition +course, +and +to +the +the +for +in +after +been +now +owner +Dollars" +ti*ees. +in +to +affliction, +soon, +claim +for +and +from +in +manu- +consequent +by +Vienna, +and +apaclra. +the +stand +This. +this +sufficient +made +evening +of +their +will +suggestions +as +half +of +ago. +This +grounds. +of +articles +then +Co.; +bark +to +company +steamer +mid +Co- +been +to +of +fiavo~r. +is +of +said +drawn +of +and +west, +been +j +wanted +and +during +call +the +while +words +ship +to +easterly, +Johnny, +alike +of +so +that +active +In +must +bp +this +proper, +the +in +tomers +the +Smith, +sand +moral +may +lurking +of +The +the +the +to +the +and +ttioy +proud. +it +from +30,000 +to +from +Mr. +was +hay, +allowed +also, +families. +the +possible +ized +of +freedom" +his +a.- +south +made +Considerable +worm +BGuckcnhelmer +layed, +inspect +Wm. +have +American +Indigestion, +ed +in +- +ed +was +Six +get +opportunity +mechanic's +Alexander +to +drag +at +it +chase +thoroughly. +had +to +endeavors +for +in +London, +w +undoubtedly +to +passed +such +any +would +officers +Farm; +virtually +different +that +with +probably +convenient +fifty +should +pres- +tho +property +of +suddenly +trusted +A. +entered +place +be +vent, +a +to +sets +afternoon +rag +its +Bee,"' +hereby +ham, +its +proc- +a +A +and +was +for +of +the +duties. +and +Emma +hand, +limpsests, +tho +and +verdict +and +the +take +to +the +well +76 +She +each +breast +as +January, +days +of +Tbe +appeal +to +that +Instant, +tires +with +I +used +nearly +for +in +observation, +will +antisep- +it +I +great +and +withot +place +ci'ftH). +so +and +on +neces- +the +quicken +those +Meliccnt, +for—will +in- +and +avail +the +tions +ter +and +tje +Little, +City. +be +the +of +a +races +more +line, +abil- +15. +the +head +to +a +to +ead-silver +even +the +tho +in +the +lake. +foot; +this +In +attack, +Washing¬ +TkjBhmiurmS +built +with +men: +streets +amount +adopted +of +but +cf +10 +are +snd +Dut +a +and +phatically +balloon +latter +lncl +bring +that +and +affording +Kremer +upward +il« +roads +much +conviction +for +are +the +i|2.1Vaii. +his +Waukesha, +delivering +which +the +Tomr +to +rose +of +Lieut. +luii +tile +not +was +up +to +and +noticed +Griswold's +just +thousands +of +Alto; +any +valley* +her +your +had +mo +in +»Prussian +go +her +effect +William +found +on +that +to +required, +train +republican +opinion, +reached. +who +Island's +never +the +allow +thus +to +home. +sure +evhle +all +together, +white +but +one +such +towards +is +recovery, +at +into +aluiost +rate +her +method +| +(so +rii}0 +not +and +port +shall +for +when +the +every +not +this +their +token +storms +the +farm +it +that +sible +If +come +gave +and +scoriic, +William +be +the +the +you +to +willpromote +aud +bad +meprinciples +: +tt +gone; +granted +Question—F. +Stem, +also +this +besides +a +place +for +the +was +attempted +them +then +al- +tire +his +letter +a +be +opposition +ed +under +importance +the +2o®7 +and +But +make +lor +a +dollar +seriously, +shooting +Sec. +tions +you +Riley +the +Labor +of +ex- +boy. +that, +always +its +as +TERMS +called +oeg. +appropriations +year +33 +Ephram +glory, +husband +the +be +199; +of +taken +ernment +so +gather +operation. +Dealer, +ises +nnd +of +"three +is +a +problems +came +gambles +This, +vea> +to +Committee +00 +a +very +under +for +Trust +the +a +them. +himself, +five +thrown +3 +Young +are +for +of +the +Since +all +made +Jaws +cording +and +the +short, +to +Pedro +hands, +brains +exhibit +of +arena +situation +of +promptanm +5 +hon­ +to +7/V +main +to +that +said +they +humiliating +to +few +this +he +which +of +additional +of +the +Britain. +end +few +solutely +apprehend +Cape. +Toon +cou: +by +W +(18) +the +won +a +are +the +jumped +must +nese +Kennemur, +pals. +will +a +years +ave. +ing +College. +bar- +hand +encame +of +number +arrangement +Logan, +on +girls +that +endangered +her +and +my +framed +of +expense +ver +the +engage. +ab­ +O +followlnc +the +at +on +being +sub +were +he +with +and +at +Bautsch, +againet +the +beet +to +rjangratuUtS +the +know +a +at +and +all +pcoplo +the +appointed +silent.silent +to +products +gets +larne +without: +money +atlliction, +farm +street +surmise. +have +the +Lewistown, +Railroad. +that +no +and +concerns +work, +to +was +only +and +picked +ther +preparations. +. +of +thieves. +5000 +man's +a +Mr. +law, +for +the +opened +thoroughly +fare +of +5ti.)tf +of +most +continued, +the +possibility +foet; +ln +elevation +there +treatment +To +water +of +book +intentions +crossed +him +the +better +trom +|t8 +far +therefore +shall +her.night +upon +required +fidelity +bidder, +prosperity, +absolutely +0acres +was +and +The +of +take +it +less +Jane +corps, +delivered. +to +has +night, +same +Alfred +glance +have +by +On +tlilli-ri +mak- +light +hotel, +organization +undergo +good +der +ago +the +in +in +Eighth +op¬ +herself, +was +strsam +m +S. +Uie +declaring +the +8econd +to +property +few +constructed +and +others +i +therefore +for +heat +for +CM +mnl +of +atten- +the +well +United +not +twenty-five +acoount +In +a +clone +sale. +meet +dwelling +effect, +on +autonomies +thence +dead +been +all +editorials, +winters +Na^e'. +a +where +ZKh +escape +that +back. +same +Louisiana +tiioy +not +value +were +epers, +the +drain +that +to +who +on +of +teer +New +bi +not +grade +district +and +plants +candidates +re-' +a +Leave +And +she +rebels +charged +a3 +was +large +Arrive +me +Is +ter- +fact +the +dug. +in +got, +pound* +the +States +law +of +in +found +se* +inventions +amid +and +told +catch +312. +his +wherewith +With +3-231—O. +court, +otne +$5.40 +af +Missioner's +on +theofficer +to +and +a +that +Robinson, +bushels, +was +two +Earl +enemy, +very +oriental +routine +If +the +built +and +to +procession +Stentor. +was. +the +by +for +some +fiord +time, +skewer +8tatea, +the +| +body +act +shall +we +of +navy, +slain +greater +the +As +Artillery, +Summit +u»e +couple +clovor +this +sky +at +level +leaders +aoor +with +he +spired +and +is +by +and +financed +mil- +de +been +line +iln +ods. +shoulders +Selling +c +mills +specific +tribute +stage +a +bo +alternately +son +two +lose +gourds, +part +golden +by +country +The +nook +the +way, +all +with +posts +-into +the +thus +slwhichwater +place +McCranaghan, +too, +different +up +certified +PHILADELPHIA. +Commissioners +be +raised +makes +the +in +of +cause. +was +to +Chicago, +was +as +dropped, +they +medicines +‘•contribution +snd +of +of +canals +several +Is +con- +dollars, +from +stupendous, +freedom +a +if +are +f..r +bad +the +and +The +makes +now +$1200; +tat +way +gathered +simple, +1717. +'ht +said +principled +aimple +has +figures +"If +give +preserve +which +all +was +it +% +Interests +been +rare +protested +Merer. +and, +-« +petition. +“Sketches +the +Second +remains +bo +jiundicc, +uerson +that +three +east +3133 +in +of +de- +of +left +the +will +and +to +under +results, +religion +saturation +C +Democracy +a +Traverse +a +INGTON +within +This +that +roaring +absence +labor, +believed +to +and +ac- +yon +in +one +light. +they +James +giving +which +of +Los +the +timed +$1.22, +over +the +$5 +and +of +and +us +energies +wrong +Bella +In +the +President +to +other +bushels, +in +full +millions +rolled-back +Academy, +iniluonco +and +respect +or +HUTOWaburgh, +nickel +the +and +but +him +A. +the +the +the +it +And +say. +How +the +Willie +no +voted +roof +fourth +me, +State +men +limb +any +currency, +with +buy +the +but +all +too +acre +but +twelve +To +but +establish +r +same +ligion, +with +kind +cast +witnesses +while +of +boss +Gilmore +the +ber +had +physical +fact +ting +of +often +ot +repreeents +3, +water; +houses +purposes. +grass +and +sati;.l +semi-official +aad +John +easy +its +c +is +if +is +them +rains +it +United +Fumed +campaign +“It’s +bound +our +the +quarter +and +another +James +bore +in +had +task +con- +a +James +layer, +of +South +the +Jury +north­ +quantities +No +on +sail +the +organized +richer, +the +along +thought +feature +claim +day +you +men +it +Thos. +Let +there +which +tiny +lighter +or +western +blowing, +as +feet, +months. +rather +They +Judga +ber +a +l +the +Egbert +personal +city +June +than +res, +ington, +homo +the +application +the +Senator +in +an +and +said +to +to +brain, +saloon +is +Auditor +illiberality +nto +the +market +Ko'ir +those +in +of +a +gave +diers +went +of +a +do +duty. +The +Also +for +so +ia +fruit +see +a +services +the +then +least +up +creamery +come +and +iu +of +outgrown, +they +He +season. +History: +on +breeds +people +thousand +to +man +of +on +and +been +nerves +. +which +many +and +terrific +horribly. +board +thence +vi-it- +takes +the +claimed +the +South +as +whatever +a +neighlior +On +it +put +time +uud +the +of +als. +them, +accumulated +tending +same +praising +to +re- +Miss +was +of +camp +the +from +he +evor +wonders +blue +tlie +from +the +cast +o'Hrennan +Her +a +country +turers' +the +clingl +some +the +900 +to +the +residence +just +the +Innova- +or +the +firmly +the +the +F +preparatory +at +see +Life +.or.ee +the +growth +Jack +that +should +about +of"the +must +Haines, +Helen +least +Senator +January +root, +llessrs. +any +the +unoccupied +as +our +trade” +up +on +attempting +of +after +that +1 +rebellion +Commissioners +for +park +to +heads +of +It +and +90c; +in +virtue-, +wns +and +stand +duo +cost +last +on +2 +I +7 +by +of +business +tyrannical +years, +the +him +the +can +dol- +Boise, +with +founded +I +P +woman +against +profits. +and +a +have +beam +SBng +own +medicine +and +approaches. +. +before +might +this +whims +; +Cass +registrar; +der +If +The +of +the +lor +rations. +It +can +and +Methodist +have +the +of +inches, +Secretary +ana +auction, +you +no +attar +approval +less +jority +room, +filling +the +he +with +hall +intended +then, +ed +cf +to +126]125(fayl99lor +to +away +aerial +quali- +very +anil +to +the +whirl +207. +la +be +b« +opportunity +ofiVers +County +ordi +feet +country, +dent. +chair +her +broken +revolving +of +delicate +of +V +Old +8. +flinching, +once +thirty +will, +results, +Clerk +the +that +and +miners +have +as +of +Thousand +huve +few +days’ +of +weeks +than +home. +stomach +the +on +as +entire +uuo +will +to +the +sisting +usually +who +Belin- +age +taught +but +(98), +pleasure; +cord +V.; +NE +have +must +each +will +mod- +west +the +Then +the +his +all +H. +be +him, +introducing +and +and +ditions +and +milk +fined +summon +Twenty-one +do +marine +in +had +British +tlio +take +of +library +Tka +west-bound +the +seemed +and +the +vided, +a +ran +attack +Wilson +las +Paul, +set +Turkey +distress, +upon +(their +X +cup +crooks, +State +along +Ileiiiv +3 +wife +is +and +couple +the +ford, +burdens. +ami +wide +our +having +109*® +the +Vir- +hundred +at +of +to +did +No. +i +New +an +two +power, +a +for +citizens +and +schools. +narrowly +tbe +of +3476 +I +in +back +Labor +to +cannot +01 +a +were +three +lame* +are +a +two-three-four, +May +olectrlo +ae +that +of +that +wrath +choice +slender +bidder, +it +folks. +continued +123. +, +drawing +thousand +men +which +probably +Imnivlal +Charley,s +Steel +that +our +cover +Games +facts +These +Idie. +Thus +the +;Raw +them. +to +659, +literature +ture +under +the +of +Mags +the +deed +officers, +center +such +ginning, +storm, +As +Because +forms +portion +four +eapeolally +that. +it +road +hlj +of +expec¬ +the +homesick +foot +again +fellow +inspector +might +make +packing +so +widows, +with +in +were +of +a +our +be. +attorney +and +work +bini +those +smoothly +23 +knew +cotton +com- +The +for +beautiful +such +county +house, +the +unlawful +Registry +new +Beginning +to +announcement +as +and +mistered, +class +natural +Uoity, +sixty +evidently +destroy +to +canyon, +and +killing +which +are +lucliilV. +receiving +to +of +P. +court, +to +adopting +I'eilumhla +fierce +restoring +to +experi- +continent, +of +most +nut +altogether +company +nnd +college +on +old +Uouse, +been +dollar. +of +result +share +neci'stiiry +still, +2. +pressed; +street +Steamship +te +the +Tbe +and +fa- +said +"It +censure +true +condition +great +property +portien +pro- +yet +Mrs. +tant +This +outlines +to +and +amend- +and +thence +every +the +combustibles +richer +a +mestic +as +it, +his +ion +and +taken +showed +and +and +arm +that +issued +rho +he +to« +The +reception +stuffing +efficient +planters +at +a +them +is +world +and +baggage. +earth, +un- +d +cently. +represent +arrow +ington +shall +Johnson. +some +are +sent +reeined +cut +the +way, +hm.,ml +the +• +from +Ordered +thus, +Sargol, +Welling- +hundred +in +it +he +he +forces, +I +adititinii +common +thereafter, +rule +sastnteeeaetegarawli.got +Cuba. +yon +said +(Mr. +anil +An +those +E +should +force +seem +has +concrete +hiff +plans +John +selected +order +n +that +men +the +my +of +either +a +put +a +of +to +and +a +power, +up +Hoy, +to +were +the +He +vote +made +England +per +contain +exercise +?eene +to +in +themselves +the +Committee, +school +village. +Hi. +reasonably +they +number +place. +it +at +all +week +5, +No. +s*u +¦Fared +enough +No +is +the +the +from +their +Cherry +Perfect +death +in +be +any +Court, +feet, +shelled, +th» +would +the +Greeley +Section +a +to +money +country +pipe +office +the +ibid +has +until +burns +amount +" +wislics +ries +end, +understand +I +opportunity +heard +will +that +district, +judges +j1lb. +loaruod. +by +fat +but +sgejjjed +?aid +titinely +New +and +as +than +had +panther +(the +he +valuable +products +Glass +well +camp +several +tho +throws +owed +faite +tion, +ed +Mi. +reservation +and +sec- +had +located +Astronomical +Plana +Matthews, +He +day +ma.." +shipping. +was +Patti, +pelago +continues +many +and +law +I +huzzas? +bers +dowdy +after +a +which +was +! +was +cion +years +been +Garden +beena +Lynchburg +necessary +and +disease +Most +Sergeant +of +his +companied +being +who +have +A +represent +d +to +rebellion +was +in +its +on +amount +no +46-luO +Invariably +width, +dent +Washington. +so +Tribune, +re- +role +even +of +radiance +Ises +life +benefit +eash." +of +year +choose +Just +conformity +for +Jeffries +of +as +Some +to +sleep. +ports +which, +And +Conspicuous +ailments +Germany. +it +language. +have +in +j +favors. +misfortune +investigation +but +of, +ns +'-'§c; +brief +or +will +of +en +over +he +by +first +Washington +concrete +on +their +the +The +proposes +in +farm +part +were +seize +41. +r +below +we'did +surprised +caa +of +fresh­ +if +was +to +For +almost +sacrifice. +is +the +same +brother +people +bim +this +their +on +lands +government, +was +joint-stock +pointed +lifes +from +for +to +thoroughly, +such +month, +fifty +officially +executive +dead, +promise +pur- +which +of +significance +time +did +is +aiid +th» +trotting, +and +m +friends +applications, +so +Mrs. +G +the +larger +and +or +To +floor +and +and +your +good +parting +today +by +he +his +aald +Judge +not +by +crowds, +usual +forced +and +and +wil +South +these +Point +state +aston- +Lot. +however, +severe, +murders +The +finds +over +would +a +promote +the +a +year +be +of +the +the +Co +the +felt +and +the +alleged +when +more +and +nor +result +a +yield +the +Martin +and +Lease +,bedeemed +glistened +This +known. +that +with +future +enough +at +again. +i>eriod +ciavrng +he +they +throat +For +same +north +talent, +amount +soldiers +net +idea, +in +final +on +Catherine +the +tbe +wife, +modest +while +1908 +to +tion +time, +assembled +conceived +these +HrRii.t), +own +so +of¬ +inarch +unloosed +furnishing +along +too +soon +the +my +intriguing +might +occasion +great +trouble +drops +and +be- +ness +Beginning +BOt +with +baa +would +Gallop! +impressive +color, +the +their +these +instead +hau +caino +ituiilly +and +mouey +to +money +the +was +dream +send +the +Nebraska +Afternaluting +Savage +drwrtbed +rifle, +be +who +must +in +also +had +as +institutions +? +con- +gave +recommended +mechanics. +sand, +ha +outstripping +ol +blandly, +hospital +wan +nothing +the +by +position, +which +hollowed +miles. +only +In +person +ciptun-d +it +eoOoqay +in +not +so +raised +on +prlco +de- +customer +stopping +won +and +receive +rate +was +ship +manner +the +of +able +to +of +be +The +the +Hazel +await +much, +It +wife +William +when +be +In +week +William +county +and +No +paper +As +of +west +sible, +and +Up +report +described; +that +streets. +the +though +a +not +milla +the +convicted +ground +S2.500 +tho +from +ed +maturing +the +I +above +States +chancellor +'Little, +John +enacted +The +his +bis +oltlur +5(1 +B. +of +betweeu +.Inl.V, +between +all +Briefly, +and +credit +servioe +will +positive +windows, +est +loads +great +the +consequence +her, +bow, +is, +had +to +to +The +votes +this. +my +.*e +a +in +. +of +sion, +be +duplicate +all +the +President +he +desire +they +th*proper +. +them +is +wonder; +will +principles +up +inconvenience +can +the +time +or. +one-half +containing +of +com- +mate +hard +very +enltting +small +not +argued, +the +nino +h +B. +rsosiver +three +Trollopes. +struction +them, +three +in +intelligence +smile, +king +a +it +the +hy +the +and +clothing +swers +shelter +power, +reading +had +the +a +as +elec- +met +Fourth +ere, +the +tho +old +upstairs, +no +air +often +render +mechanics +when +Grand +evidence, +reported +Baltimore. +in +peculisr +'tract; +and +dessert, +the +to +ot +objected, +to +to +to +In +was +there +first +an +thonee +the +within +tic +inevitable +the +every +com­ +seriously, +granted, +took +salmon. +the +the +(.'iishitijr +was +She +$570; +detigned +animal +Assessment +able +cisco, +as +To +is +except +when +degrees, +had +times +the +with +at +was +feeling +exists +west +After +not +vote +that +alarm +Captain +$247 +which +niade, +miracle +fact, +to +been +hundred +us +after +text +stopped. +the +R. +with +that +in +that +Several +hideous +and +Mrs. +found +samples +ever, +stand +and +the +stunted, +we +and +In +must +the +ujhju +the +might +mint +to +been +of +aiMKInnat +sooner +conscious; +area, +as +to +hear +applied +and +the +fair +cent, +struct. +cane +ly +the +Howard +every +You +one +a +sovereigns +in +press +are +uncertain; +abused +to +of +who +If +wild +lie +has +»ry +grows +Lagii'uture +system. +straight +conven-c +UiHik. +was +arrangement +betweer +and +you +Mary +patriots +the +wounded +of +of +this +by +independent +make +an +upon +of +Blocks; +Grand +smoke +severed +bowl +for +his +and +and +one +advertisement. +laughter,) +two +said +char- +It +E., +Henry +to +and +phia. +and +iho +years +axe +la +the +these +mighty +yto +not +and +would +Tuesday, +speech +Linn, +as +conceded, +absorbed +be +willing +ser¬ +sede +consistent +to +aud +Big +finishings. +live, +life.thaC +but +for +make +much +glass, +defeated +coi +kingdoms +is +replaced +had +edge +the +those +strated +library, +still +of +probability +or +these +10 +in +neefaJ +in +of +and +interest +student +white +decade +pub­ +of +county. +beginning. +stare +sig¬ +t +he +slnia. +entitled +shall +all +years +mare, +Peter +the +manifesto. +ty +ruins. +manded +It +services +is +know, +practically +Mr. +will +they +trolley +little +commencing +from +nie +Wilcox +past +In +not +and +mistaken, +under +late +Rock +a +saucer-*, +the +and +will +a +thought +Male +lady +Gvc +to +There +extensive +he +wealth +into +side +ny +Morgautown, +of +later +election +some +It, +place. +for +would +ultt +Pa- +farm, +last +and +chief +after +academic +thing, +goodly +wrath. +our +The +embodying +to +al +gives +In +of +burg, +fix +were +ing +I +favoi +second +dered +statement. +llie +December, +will +unnecessary. +Columbus. +tho +does +to +lie +your +mow +ome +once +studies—an +brought +be +it +in +a +applied +mollusca, +say +case, +and +front +the +lines +Wm +like +liavo +ot +ful +buildings +ried +so-called +First +rever.- +without +accept +passed +H. +of +Berry, +would +at +ular +last +made +Republican +adjourned?ayes +axe, +support +couise +a +late +stono +spacious +lor +and +into +the +by +a +struck +would +all, +clear +also +Co.'s +soci- +fast +fill +beside +and +upon +our +small. +whether +mean +tho +has +onions +said +the +the +patrona^e, +Gooslin, +nonit, +re*on, +tail +special +coy +him +very +and +increase +his +of +it +in. +bed +ability +a +could +Latta. +the +there) +Mr. +enthusiastically +»essor +blk +of +X +and +as +bc'ng +Kiwanis +the +was +comment +amended +ciation +lime, +workmen +said +them +The +very +formation +golden +inspection +ten +about +for +a +they +shadow +and +D. +plete. +Newark. +The +ness +these +free +Last +valise, +iu +In +believed +havo +becatm= +tier, +old +of +etieer +for +Saw +of +out +to +lators, +command +alavee +goes +these +Chris- +fringe. +suffer +tfl. +themselves +Think +secretary +ping +of +appointed +the +longer +told +an +her +entire +76@11 +developed. +where +get +bloody +assist +with +dis- +Cella +cut +will +respected +the +say +against +present +In +as +two +as +was +not +for +him +and +and +a +cupied +city +creased +was +of +band +bill, +universe +was +cases +begun +to +suitable +ol +and +the +at +shall +ground +the +offset +onco +and +to +a +part +it +because +City +men +to +of +^pourt +according +urer +noble +reversions, +into +in, +feet) +oertaln +this +"The +seem +it +speech, +pavement +have +smaller +the +took +cratic +—Mr. +general +Is +from +sions +would +part +to +for +the +records +success +The +utterly +Brevet +had +latter +tuo +is +Roeers +and +1878, +the +the +state +its +Exchanges. +power +trial. +them +t« +that +imatfinarr +in- +required +-«icxt, +way +the +a +among +and +Silver +D +accustomed +may +rung +ready +his +county +York, +house, +In +put +this +fore +would +--it, +war +fith, +recorded +yellow +his +Bern, +much +is +capture +Lots +to +her, +showed +short +that +have +That +be +S. +"the +3: +front +the +of +N +who +M., +whether +a +Franklin +lirst +great +company, +Missis« +shoe +and +don't +berian +man, +willing +to +does +mount, +to +remnlnder +of +the +re­ +until +territory +tloa +begin +the +requir- +bunk +Hill.) +for +Your +Washington +ReriMelnpr. +time,, +preparation +however, +per +not +tx-en +vessel +as +offerings +for +East +aud +the +of +upon +he +We +Gage +an* +Indian +of +and +the +necessitates +held +the +tho +Judgment +Cnderwood. +of +most +$115,000 +A. +loafing, +that +killed +lost +for +this +the +(ailed +young +was +hope +J +her +of +Episcopal +partment +south, +Mayor +then +belnr +trade. +Cincinnati +this, +name +traveller +in +NW +the +on +W. +rather +agree +I +In +•otlowing +well +He +residence +board +Hcidcngcr +Spaniards +two +and +who +submit +tho +nearly +department +was +two +the +when +a +from +.wax. +we +like +and +Just +caution +secondly +the +from +the +so +not +for +fill +gun, +lh +and +believe +and +but +down +eases +They +said +war +small +company +within +were +whom +or +stout +that +day +Interior +pay +were +come. +complete +oughly +that +worked +safety +do +which +the +Chicago. +into +that +her +depth +those +on +the +of +and +boys +Detroit, +pretty +indications +court, +have +in +that +teli +easterly +dolUa +tickets +ono +l**twee.n +remembered +eves +faces +over +but +factory +England. +banner +..'*?..... +plaint +was +thought +but +been +be +a +elevate +washed, +with +lie +annual +. +this +lage +and +value +from +northern +ankle +! +on +Congressional +the +no +Atlantic +many +public +alligator's +the +on +For +ances +umouut +vember. +ordinance +specifically +faintness, +a +people +min. +addition +rather +of +lrautic, +"Tin +full +after- +tho +In +the +declara- +the +tasks. +vinced +than +party +provision +oi +regarding +sentences, +decision +hour +are +were +chances +In +wH +possible +the +my +that +n +businest; +city +the +the +own +substituting +clu +open +Mixer; +called +disease +quantity +row +Mrs. +on +ot +foot +when +what +exceeds +submit +to-day. +and^a +ginis +ami +that +and +the +no +police +last +ity +bright +i +government +republican +l»e +J. +cently +from +interior; +upon +a +they +gave +evincing +(bathe +heard, +rebelous +private +be +th +to +men, +Several +Messer, +Tho +cellars +a +heretofore +from +they +hands +aud +his +city +plaint, +public +a +Embassy +of +the +Wight +cutting +1 +thousand +of +and +tierer +which +voire +bloom. +; +its +d; +unfriendly +people +the +chairman +the +contemporary +of +finger +in +half +«>f +vigorous +described +is +said +of +value +of +will +Jell +to +weak +Mis. +Nq, +i +for +refuse +bark, +J. +U +which +to +conspiciously +bedding. +with +the +Ceneua +to +aud +he +has +Pine +the +is +72 +has +1-2 +!?top +act +meanest. +purity +151 +Newport +bank, +pr.sent +the +will +as +stood +the +they +Mbmni +which +the +ladies +pointed +and +congregation. +thoso +require +of +use +among +been +Mission +judge. +with +o-da +7 +etlone, +tearful +reverence +flaming; +No. +chained +4 +railroad, +proceedings +aforesaid +away, +Mrs. +achieved +thinks +the +and +air- +of +but +of +open +to +Initiative +over +Spndence, +the +second +1. +and +to +the +and +10 +a +supreme +the +low +showed +friends +are +arches. +rabbits, +with. +should +this +last +of +funnel +bere +will +cure, +the +help +was +Capitol +were +to +about +formation +generous +J. +were +finally +the +t. +and +Courier +have +brought +room; +all +ter +coun- +to +crops, +taking +of +lollo +elegant +has +bo +the +omit +the +they +feed +what +by +12%; +should +tool, +144 +this +was +nestled +wara +room +blue +all +planters +the +is +on +from +dents, +the +together +tho +Of +was +Realizing +R +Carnegie +because +and +save +ruling +mous. +have +that +with +the +as +and +sion +E. +abandoned +our +the +conducted +of +manufact- +vantages +2 +production +Solomon +In +shown +1, +those +then +But +service, +emulate. +a +one +what +a +over +of +of +The +aim +l)epatimenl. +the +not +Informally +will +immediately +to +or +as +there +ticket. +thpir +to +be +growing +New' +olllee +one +the +will +as +worth +assessment +stars +olficial +mistake +last +event +of +tho +with +Philippines +As +trying +bi +make +Miss +Freights +the +was +a +the +the +need +himself +was +te +When +ihe +leer +o'clock. +But +way +south, +and +owners +men +under +introduce +having +it +ho +a»y +open-face +The +a +peared +exceeding +between +gets +flat +at +well +procured +send +I, +silence +feeling. +to +every +First +that +the +once +the +passed +tho +real +the +genius +con- +such +crop +Make +the +cf +obligations +taste +matter +feet; +all +sail- +tinguished +their +Wood +man +that +holiday, +unconstitutionally +certainly +or +as +and +ieorge +,in +end +she +suggestion +the +2o +development +said, +Vice +can +in +handling +and +father +has +the +property +prices. +On +that +others +to +navies +to +Now +and +at +bar +Leary +the +lo +all +fictions +and +o'clock +nothing +valued +Informed +down +and +it +ani +are +funds, +crowd +of +are +added +breast +scarce +came +ery. +expenses, +they +fire. +putting +above +likewise +own +should +know, +He +.Mount +certain +cles +Is +that +across? +have +to +others +is +league +the +success +treated +disarmed +of +But +in +com +nified +in +for +Canadian +ft. +the +-in +drove +speak +which +back, +the +base +were +ap- +rested +one +returned +saying, +In +nore +which +occupant, +would +altogether +km +day, +ultimate +met +she +last +of +is +resolve +ulhurs, +not +in +some +ish +cent +established +legal +and +without +a" +shape +52 +ns +of +is +from +by +and +moment +nor +best +night +whose +door-knobs. +hope +old +is +"It +are +B +them +When +teaching +de- +switch, +this +the +Therefore* +the +Mis< +be +du +an +helps +if +PlWaV +the +m +clotb +the +had +priety, +convict- +at +when +en' +ma- +in +the +has +grand +flow- +should +every +Sirius +bonds +and +Sahib +now +from +of +most +scarce, +each +-r +Associations +sadly +two +bad +J. +of +subject +my +plique, +to +er +fraudulent +on +the +to +colored +the +Helen +men +the +herself +acres +to +The +or +67@58c +earn +and +no' +citizen- +and. +lodi +up +and +that +History, +no +but +people +Mr. +in +power, +desire +neglect +until +little +an +aerv-ition. +the +a +liver +and +clusively +of +We +anxious +•aaeasment +the +liberty +visiting +on +istration, +the +squatnoss, +he +case +less. +left +was +primaries, +order +and +passengers +M. +his +on +miotbs +bric +among +tiou/ht +Cor. +Edwin's +From +our +35 +in +The +the +brilliant +important +freight +happy +Calgary +It +you +he +tho +spades, +happened +presented, +Herbert +and +wife +is +She +band, +22, +cask +K +Freed +shelter +necessitated +continue +of +twenty +If +famously. +kitchen +Augustus +l'n +drill. +started +of +thorough +Miss +in +we +law +she +for +already, +arother +Strong +Railroad +Ohio, +backstretch +dured +When +low +Just +Poster! +the +question +ments, +terms. +Joe +uot +beginning. +a +side +Lamberton +an +church +5.32 +will +$ii,o00,sm, +house, +block +out +its +States, +prominent +and +for +and +of +provided +couuty, +consumption +farming +Christ¬ +these +Pacifgio +more +sons +'em +fault. +is +is +strong +to +visit +as +vices +feet +laid, +have +were +U. +London +engineer +have +it +on +walk, +inspecting +of +and +future, +out +then +Wendel, +every +Circe* +and +that +requested +abandoned, +naval +dolls. +Sewell's +aa +driver +last +appetite +along +which +That, +about +liiKi-ftirni, +beautifying +and +and +in +pamphlet +enough +manifest +interests +fact +estate: +per +such +said +is +as +may +True +remember +the +in +you +velvet. +with +It +lation +was +have +Nos. +charge +annually. +vi +painful, +for +of +witnessed +to +plan +by +be +Christian +supposed +pari +necessary +glebe +Go. +by +and +in- +such +placed +his +in +own +over +The +having +lad +jat +to +to +point +in +in +the +or +will +value +circulation +legation +of +BU'bQji'y +commanded, +am +some +"Not +In +Register +of +land +no +proved +collected, +read +.and +! +er +the +remove +we +rent +this +from +warped +D +way +hersel +this +highest +was +you +and +hydrocarbons +It +Passnic +O'Brien, +Thompson, +Her +Lee's +t<> +redistricting +As +else- +to +Immunity +to +Langton, +of +moving +68 +know +food +with +meet +odds +or +a +his +1100.000 +oases +that +and +by +been +and +land +eigners +nte +they +*e +lloor +time, +hy +that +Secretary +and +Irrt +hair, +in +through +nec- +conquests. +when +oned +had +of +fast +for +import +sup­ +liber +cousin, +arm\ +and, +"Un¬ +of +in +rising +Newell, +wake +ah +destiny +Wsechter, +but +bo +mem- +British +sale +in +each +cinct +id +some +not +gage +and +dropping +school, +the +she +and +some +an +and +a +Mr. +of +said +not +on +mined +stockers +of +three +be +seees- +routes +with +in +the +the +one +lined +Tho +payment +to +labor +ever +w +and +duly +amendment +by +The +more +a +made +She +this +soil +is +of +Stools +IJransford +tta +4 +Institutes +Braman +the +must +flag. +children +breath +after +in +the +questions +most +ning, +is'to +In +cow. +you +that +of +is +ly +Titallty +involv- +heard +yaara +the +shirt +poor +who +tbcm +kissed +bidding +the +Hie +busines*s +the +extend +sense +Sections +to +other +it +ships +(2). +shine +over +ocean +hail +which +(6) +be +other +men +A +would +tbe +tarrh +may +furiously; +few +gone +of +gravel +sun, +which +name +#71.08; +that +been +of +bo +>ou, +on +caps +and +aaat, +to +rth +dull +States +days +is +a +will +County, +his +about +run +bigger +30,000 +by +street +does +ping +pared +a +Trowbrldge +adoption, +tidewater. +Andes +sheep +gems +In +sparks +as +816 +getting +never +square, +prove +construction +of +States +end +that +her +afte«\ +the +speaking +fice +rate +hall; +suspend +Christian +of +have +good +the +suffered +had +more +be +us +pro- +and +following +to +Inary +mace +the +it +lege +the +gave +title +mortgagee +intend, +of +that +with +said +pago +to +to +calves, +misfortune +there +however, +topics, +Must +the +the +follows, +to +feels +around +Stale +crowds +him +wedding +tree. +and +*m- +the +the +west, +&co- +commonwealth. +Elisha +on +we +girl. +compelled +that +interest +of +about +j +and +It +upper +life +tho +e +platforms. +comprising +was +and +S. +refuse +few +the +of +it +of +on +aa +limb +of +w +Bismark +contrast·* +again, +have +down +hold +will +their +tvi-niii»» +would +he +form +by +his +order +you +bandaging +sh.>iii.l +way +W +that +Ood +be +citizen. +Already +eoual +day +manfully +no +ten +vis, +plea +the +know, +of +Burgess +heavy +of +suro +critical +he, +election +will +the +much +Exposition, +case +rank +friend, +on +so +comes +the +If +a +well +its +bring +8eo, +total +public +Now +altered +Miss +if +the +rana +States +know, +be +In +black +streets +frequently +the +gone, +morning +the +option +opinion. +treasury. +pattern +ter +without +was +be- +vious +have +and +all +of +raise +ests +regulated +range +by +the +the +creditor +tent +interest +the +of +in¬ +this +one +in +The +seve- +Anheier +town +nipotence +It +owner +desirable +party +of +decision +that +todec.are +upon +first +purchase +section +122 +The +of +the +know +a +their +bu +by +let +his +this +God, +for +be +Kawloy, +experiments +all +this +very +retain, +property +fight +measure +plated +. +the +is +be +tins +and +they +not +standing +implanted +art +which +await +Und. +ever. +My +said +trouble +are +ol +in +culties, +frieude. +man +188? +to +and +wit +off +O'Keefe +the +showed +fond +answer +ca +are +he +was +the +fully +City +belle +his +rhich +who +absence +In +I'm +big +U.S +iiioresb.c. +hoifse +getting +which +regarded +known +upon +h +Then, +delincd. +In +flushes, +diameter +timo +the +to +Mr. +conta +by +own +your +but +B. +lo +he +Plant, +d +numbers +one +learn +through +bered +army, +nonnees +of +misgiving, +to +return, +until +the +bought +a +a +of +before +and +the +sometimes, +that +contest, +well +had +perhaps +»ald +consequently +by +dersigned; +been +east. +Itye's +perceived +honest, +principle +the +Island, +themselves +then, +the +evry +ft +Mcpherson +journal +spar, +cleanliness +Old +Many +t; +is +hard +the +or; +the +iu +in +It +up +nation +first +battles +long +and +of +that +is +which +matter +1893. +provide +uve +of +from +the +necessarily +in +the +will +will +to +South, +to +twice +I +hereafter +curly-haired, +news +the +Even +in +r**ark +have +beef +large' +office +frenzy +State, +Ward +had +diplomatic +dry +South +that, +adjudication, +ity; +field, +Tobin +1 +with +the +destiney +to +they +north—five +cordially +man's +such +his +will +of +the +not, +no +sold +unchanged. +and +But +give +now +the +ahead +loaned +All +full +it +me +Mill, +learn +die +or +duction +2 +our +won't +sieaks +gathered +All +on +m. +archi- +when +the +remain +streets +and +all +(10) +for +some +saw +-ut +im- +a +the +problem* +what +place +report +ied +CO +G. +knew +the +shovel +There's +The +of +section +minister +lode +amounted +animal +Col- +another +Other +are +the +and +areas +the +rare +min. +Bratllian +as +a*, +that +tffeet +part +it +an +when +1830, +was +that +Attorney, +base +moral +the +Huffern +Packard +was +Theodore +director +I +Friday, +You +Republican +product +Fitzgerald +a +guile,” +yards +091 +tion +prepared +altogether +Bakersfield; +preserving +said +the +one. +cure +hill +and +hearts +all +found +s +will, +Ohio +re- +and +The +son +recently +Simple +all +Congress +bringing +been +with +in +in +cheaply +heads +resistance +and +died +in +out +shown +conservative +I +means. +protection +Diamonds, +Sore +___ +ir. +out +teachers +and +free +; +sections +benefit +not +zine +The +Fewell +would +these +while +short +other +there +and +candidates +Mr. +great +its +the +think +thousands +Wigman +no +with +race. +Railroads +said: +anare +tin- +the +point +wiUm +ing +for +had +as +Turn +has +Court +to +tual +African +feed +NIckerson +floor +from +back +conditions +the +5 +sec +London +almost +true +capitol +lha +diseases +will +new +she +name +not +morning. +whisky, +All +country +streams +the +distinguished +the +person +niaaaea +of +see +oil +the +the +When +of +day; +We +years, +ing +early +Soap +them +Mitli +tbat +lie +Kcik'ineer +no +work. +to +tho +the +and +way +show +First, +of +gr.n>: +An +had +of +to +this +vision +by +Mon +his +represented +ready +of +of +is +bushels +ployed +now +inane +of +during +it +to +such +chance +Street +way +perpetrated +in +a +had +ofllcla] +steamer +upon +liverything +meeting +the +Gneisenau, +in +bayonet +Carpenter, +unless +coupU-e +Court. +not +cooling +swooned, +S +barrels +will +anxious +for +sought +solutiou +the +ami +streams +weaving +potatoes +least +public +“Yours +who +the +been +but +plans +the +distance +or +there +of +the +for +price, +really +beeu +dug +bv +first +being. +of +and +erly +wants +nal +affair +tho +be +such +to +a +the +prescribed +public +ready +a +do +of +see +received +the +Sarah +t +— +one +iu +has +well +1 +luth, +"About +up +Travel_E-3 +of +of +an +.win.; +?ach +Madlsoa-ave. +at +mules, +a +of +lines +Western +their +Doorkeep +refreshing +in +in +nose +out +a +singular +He +she +now +inches +U +in +ate +their +itheir +was +receives +of +de, +am +exact +part +States +ings, +being +distant, +India, +said +skin +17, +service +ospecal. +3 +snd +Alex. +States +to +aald +than +of +to +published +ami +din +hereby +porations +every +tbope +thia +George +regularity +the +taxe, +afternon +ins +the +advice +to +while. +for +interested +the +I +The +known. +vanced +governmeit +his +course +they +know +themselves +layerg +a. +it +20. +to +Farm +to +used +year +sells +OuUeiitanOu +of +fair +54 +knows +wom- +IBM. +terms, +I +Send +outlaws, +the +lower +as +on +beneath +the +bis +made +premises +a +bills, +gold +become +was +fear +Chickasaws +eyelids +tell +every +of +the +E., +drink +might +as +quick +a +Dollar*, +aid +Chinese +brother +taste, +sidered +At +No. +originally +estate +bc +other +but +law, +old +Kiljj +following +safety, +with +suffering +near +drainage +'o'sulbscribefor, +train. +progress, +at +jyiaynard, +I +subsistence, +hard +subscription +busy +bed. +gases +when +is +money +stitched +claim +road +extremely +gave +hu*hel*of +on +durion, +a +danger +vention. +at +l! +a +be +before +fancy, +of +develop +along +h<.ir, +whlch +end +has +uav +District +mottled +economy.” +tax, +that +man +that +and +2V2 +of +steara +us +much +of +made +out +the +and +Jer¬ +hold +hands +copper +town +jure +body +encurable. +sad +> +exigencies +the +the +bed +of +has +hiiinaii +of +the +said +be +on +the +the +That +befall +Into +two +press +he +senators +Attorneys +toons +there +effect; +but +of +the +men +gold. +length +and +pressing +conference +dollar +to +was +sections, +the +office. +sides +was +authority +responsible +conduct +islature +making +to +of +that +three +tobacco +be. +(linking +will +people +and +until +down +and +Reading. +trrve +is. +and +was +company +him +and +pocket, +him +to +self. +stable +decidedlv +his +women +come +for +$2,700." +spoke +thereof +fifty +thus +lands. +there +but +is +built +15 +a +north +decided +again +the +into +issue +Headaches, +ed, +in +fr +Gold +rcaned +ornamental +made +flllmg +slip +ever +as +soaked +are +the +has +external +away, +elsewhere, +members +for +as +the +care +to +used +most +of +the +is +of +a +a»-..;..: +proportion +people +part·es +the +streams +sideration +cent +beforehand, +inflicts +will +Tillman, +the +the +I +the +to +the +its +subject +are +south +people +and +have +escape +and +of +of +that +it's +bu +day +to +inferenco +out +the +Adams +the +sale +of +with +rectly +of +one +leading +ibry +and +ofhaim's +to +passenger +faint +threaten +Mr +Vltlerahot +partic- +No. +deed +is +ents +dead +of +Why +were +party +at +the +man, +ran +and +little +not +trouble, +of +noble +in +be +wonder- +also +interest +oil +his +he +for +him +weed +the +by +st.c +legal +one +to +the +that +than +contemplated +neighborhood. +as +city. +nueasiness +STAFFORD, +diainclinaUoo +without +the +j +We +and +In +sun, +pled +the +curative +it +number +be +life, +south +which +it +I +and +to +Old +making +be +escaped +aide +mony, +of +protection +after +In +miHce +nor +consider +safe +the +clutching +Tqis +exposes +nis +rapidity +elected +est +living +to +tongues +the +baking +collected +troops. +Glover, +try +odor, +as +young +is +the +journalists +sitting +the +me, +of +the +than +for +of +deoire, +to +charge +to +them. +un-1 +give +of +himself +signal, +like +8M +the +under +than +not +plaintiff, +of +of +all +that +combined +rooms +this +the +thus +the +the +it +navy +the +we +laCiB +be +ing" +O. +of +and +the +-n +toil; +they +the +crowded +by +were +with +of +Is +no +claims +keeping +Cabinets +said +that +meats +never +his +one +surrender, +of +privilege +of +Street +the +one +Promptly +the +10 +L(jT +certain +will +human +months, +Register +Davis +out +in +p.vtent +of +straightforward +lose +bad +spiead +better. +killlmg +themselves +white +make +traction +over +Kathryn +from +grees +about +a +by +presence +question +taking +0%c. +to +a +the +like +all +gible, +tariff +drift +this +tendency +Most +Misses +informed +suit, +known +dics- +hear +being +menaced +xcused +of +tween +text +relief, +before +(l>y +between +X +allies +Ladybird +to +farmers +in +a +Inreated +at +who +each +per +bling +114 +the +kisses +NortJi +the +Low*· +dler +of +53*53!»•, +Marine, +the +In +about +art. +he +born +tor, +prey +anoe +products. +Drainage +any +a +and +within +fidelity +trial, +charges. +the +let +time +Mail +more +hy +perform +Europe, +In +is +fourth-class +who +State +29th, +driven +and +Agnes +sher¬ +cliff +in +sub- +of +North +foremployment, +of +one +earn +six +the +thers +time +all +ciety +do +in +laymen, +with +showi +do +the +plenty +Thirsk +upwards +the +In +it +Mrs. +wide +based. +became +of +I +report +Dr. +and +hundred +The +to +the +experiment +God, +the +this +and +of +Snow +action +In +1341 +which +and +having +in +any +in +reputation +have +mother, +I +settlers +bath, +'ill +Griedel', +these. +the +else +than +sea-baths +tering +of +any +Bear +are +; +and +indc->i +is +Col. +leges +out- +fact, +the +their +and +was +Hy +in +a +turned +we +eiect +ministers +the +a +way +found +board +women +projector. +must +of +what +of +into +lin +Willett, +these +tractors +to +hams, +aild +loons +«r>, +ham +consequences +the +Holy +success +are +government +hardly +for +violation +confuted +to +of +weekly +able +444.8 +the +in +ed +the +to +the +lessen +vinced +of +Wileoxes +the +cut +with +r +an +office +some +those +time +nn +street +tho +visitors +the +attack +property +well +can +appointing +in +unable +personally +their +edge +lately +E. +by +prea +Should +of +dark +But +peculiar +teen +the +amount +ten +the +publication +a +To +which +fought +Spaniards +alway's +splutter +Frank +the +resting +not +compauy'B +to +on +Francis +difficulties +a +tain +quan- +All +in +go +consists +of +India; +Col. +or +amount +would +in +tho +small +county, +they +notice +thing +and +C'ltal. +each +have +what +si:c;. +and +mission +ning +?ver +interest +that +til +expenses +presentation, +This +twenty +building +and +temptation +the +the +sympathisers, +P. +McQuillan +back +Be +He +the +commissions +English +taste +way +assembly +and +The +290 +left +was +a +formal +Germany; +Plain, +near +not +came +same +the +The +sionary +deprecating +declared +railroad, +for +what +Rita +to +are +aorta +the +all +of +Tl +hoor. +of +gage +divorce +and +B +on +nough. +the +237- +inches; +inating +may +the +near +real +lill +eaudy +not +that +healthy +for +the +making +general +the +the +ch^cK +rocky +are +certain +cents +tion +fully +Its +the +out +rather +the +upon +by +Mississippi. +ber: +him +the +and +Clothing.why? +No +who +Every +tency +and +his +Malt +defendant +$40, +II.e +up +written +slacked +hut +Twice +gence +year +Anthony, +of +cause, +the +ruptcy +re +accepted +minded +the +sharply +Iredell +prop +lard +rooms +Reynolds +chase +Ida +claim +reciprocally +another +house, +Carolina +tusks +propriations +business +this +of +the +for +over- +our +.Ingersol, +upon +saloon +give +antlers +lead! +and +and +all +to +of +for +publican +wavered. +solid +the +well, +evt-n +that +would +in +an +States +Other +all +mentioned +upon +and +was +relishes +Af +wenvlug +A. +other. +from +brow, +and +whlcb +Mr. +the +E. +name +un +February +country +dedication +days +;. +offers +disposition +Ar +interest +the +revenge +and +pitch +it, +the +consented. +has +Crirenden +trying +in'his +all +were +man. +estranged +a +of +that +liu-iti,· +though +yacht +A +hardly +make +was +the +sbaU +tion +the +parent +kxpctitivo +and +only +of +other +rery +front +He +whosetes +him +on +und +awakened +a +on +recorded +sent +mistic, +They +to +little +14, +Northern +be +plank +then +session +erected +man +and +ti. +envelopes +which +to +streets, +much +appointment +only +should +It +of +was +or +plat +That +the +chard +be +of +coast +the +here!" +can +ballot +tb +these +army. +;1'906, +In +had +can't +by +who +lead +whose +this +tax. +of +effect +lottltijr +here +what +agents +to +certificate +give, +corner +men +the +and +long +a +aud +votes +voice +was +judge +our +for +isthmus +of +furentiv +the +o’clock +with +hanish +and +of +to +tho +fully +are +cape +day: +clay +of +were +not +lie +of +the +decision +belief +offering +will +away, +newspa­ +was +week +was +New +Jiouse +very +box +of +brella +as +was +the +siderations +people's +Uaru.ou +water +City +and +was +who +better +which +permit +Church, +by +means +dam +but +the +Yyrk +5, +Jas. +th +n +competent +nrely +to +Red­ +curiosity +this +conservative +debt. +part +plete +get, +Wale +soon +justices. +defendants +for +hospital +is +time +an +1 +followed +Dr, +corrections +implicit +tbe +Seed, +one +completely +ment, +Assignment +that +leaves +an +will +havo +when +political +do +to +ing; +of +attack +Frank +to +two +cheer. +that +record +the +feel- +What +be +G. +burgiar +car +uelore +0 +At +ficial +delivery +has +j +was +might +in +of +Hash +adroitly +it +noble +the. +geant +in +k +and +which +what +place +laplimta +swell +This +meantime +a +In +six +following +many +money +labor +This +said +Morse's +a +Ir +the +control, +sled +be +to +be +Colonel +4r +and +thoroughly +raised +the +seem +attitude +the +& +the +April. +which +becomes +hs +Goods +the +troops; +mines +medium +pare +it +of +Vial +and +sale, +sometimes +branches +conducted, +for +That +the +Boxes, +Britain +at +a +a +moment +land, +of +repaired +cn +houses +set +shortly, +the +right. +the +McCormick +the +not +to +with +a. +tribes +and +Trobably +then +spooning," +lain +the +but +rais¬ +steamers, +In +about +S. +736 +miles +bad +of +foreigners +the +Looks +my +might +dealer +coursing +did +happiness. +100.00U +person +as +more +bravery.” +the +This +make +oth¬ +Parkers- +and +of +present +of +answer +contest +insurgent +Palmer +a +and +Atlantic +short +jumped +ting +of +the +poor +settlement. +the +north +which +to +dance +fcfr +reach +He +tral +ests +whose +be +four +three +ed +: +139—M. +fought +important +combined +you +had +and +creaturo +Staffordvllle +and +girl, +provisions +'.V. +private +been +of +and +for +end +Martin +Dundy, +E. +told +ed +the +country, +vice +the +\u25a0el +unlets +earnings +and +law +things +OF +feel +the +and +we, +the +is +out +it +mercy +complainant, +1907 +and +only +the +Sonora! +grounds. +have +tract +bill +dentists +of +forget +per +corpot· +be +the +marked +neglect +.tariff +ail +away +and +flown +in +in +or +suffered +up +the +enterprising +Western +of +with +a +dropped +the +of +pillars +needs +sudden +experiment +liwrence +thrives +Remember +i:h +narcotics +in +of +another +a +of +from +streets +captain +dark. +Music +l')U +of +chased +It +2770: +woman +and +aotoai +to +bonds +with +little +the +young +ards +ready +that +through +kind +he +this +and +pound +ge- +style +Captains +hour +the +to +partly +at- +company, +means +eo +to +50-foot +carried +pr«#>perity +other +parting, +found +of +was +She'll +sacred +an +loss. +whose +mark +vet, +was +liked +tions. +agreed +tho +firing +Virginias +fel- +we +of +again +other, +high +ll)1.'} +the +who +the +line +of +beings, +"I +on +of +barrel +Why +sum +recovering +least, +and +in +mouth +as +well +to +the +mates +of +and +itable +a +W. +be +like +of +are +of +or +the +water, +in +of +tney +became +was +-for +to +that +he +self. +refer +. +in +be +and +these +great +would +of +pumped +yearns +Increase +move +a +The +Judjre +and +pounds +that +it +There +concerned +and +spongy +unappeasable +clean +government +failed, +magazine, +four. +with +hung +her +of +of +foreclose +hareaiter, +and +and +our +ihence +of +a +eui +of +mor.ths +Carolina +•onie +and +proposed +had +under +while +or +was +ment. +the +miles, +We +of +the +said +became +as +of +a +claim +him +their +complished, +bill +1917. +testament, +pondérons +asserted, +had +toys +did +swim. +little +"n +Fierce's +considerable +3.Held +blank +departure +known +rigorously +leaning +square +of +'illegal +from +known +shelter +their +her +there +the +been +Naturally, +restored +vails +within +individual +conduct +the +r»ud +were +will +the +their +reading +make +strength +number +certain +14 +they +in +the +akd +across +while +then +ocean. +ient +Byron, +all +the +United +education +temporary +any +should +of +purchase +before +state, +only +the +month +tanks +for +went +o +on +last +It +Jones, +in +knowledge +answer, +and +pointment, +his +been +the +street +day +not +aud +His +but +James, +other +near +he +less +an +Reyes, +a +included +to +and +Church, +longer +ami +instituted +ye6rs +be +interest +school +(125), +unburied. +to +of +the +uch +maintained, +the +with +of +wounded +said +said +lettuce +was +The +in +the +upon +the +his +The +realize +that +the +Merriam +I +CaMfaraia +works +down. +the +in +I'nue +parte +We +such +brings +fighting +ous +of +to +talk. +on +bushels, +development +affected +ceeded +money +tho +tracts +again +t +of +then +cox +swim +his +such +the +a +tjvcfv' +estates. +or +or +1 +'larch, +e- +grain, +178 +after +lower, +cf +of +wife, +element, +hurled +and +unsettled +the +top +tho +the +ride +ter +go +cept +fidence +of +he +"Farmer +used +States +rooms- +a +ccme +and +that +ten +and +publican +l'rma +his +choice. +ri«bt +a +of +be +why +its +dying. +he +upon +execute +interested +must +that +valley +naiton +his +fat +items +an +Penrod +station +when +one +the +called +during +school +S. +4Mj! +of +tuiiit +To +keep +vtr. +as +bait +ascend +It +Champ +majority +Butler, +maintenance +permit +ing +kept +subject. +false +meetings; +have +put +with +the +lolling +heads +Mil- +Block +us?" +and +power +packed +would +and +army +such +government +! +were +thcro +and +Belchertown, +not +M +Impatience +on +Victoria, +army +went +thrlr +about +aad +sliced +gono +Thomas +tened +shed +of +ty +an +becoming +treuclies +disparity +so +surrounded +free +Bonds +here +Thomas +from +tanks +good +Charles +up +versary +st +business +of +was +the +venal +and +against +northern +al>out +plaintiff +prac¬ +state +utterly +have +inability +curves +bonds, +members +or +inside +speak +parcel +have +you +Ice. +site +went +Prof, +dooa +worth +hare +talking +of +liberal +reservation, +bred +interest. +being +not. +calm. +fooled +the +as +in +be +lishment, +Mrs. +townms +A +petitions +mnnoyances?" +is +wholly +tli +No +see +.ii;a, +the +eficial +nation +through +have +degrees +t +the +affairs. +writers +rest, +are +a +route, +In +he +Kaleigh, +for +the +ending +authority +of +was +arrival +there +bushwhacking +genda, +listened +groom. +and +ap- +in +is +even +to +tbe +to +' +is +fair +may +within +truly +too +completely +the +the +the +“An +House, +aa +*100. +to +springs, +had +Be- +the +BCB +a +on +seemed +and +full +grass. +8 +such +Hxnato.] +A +np +land +soon +the +pan +out +of +gone +Louisiana +may +hair +tha +solicited, +said +plaza +their +classes. +living +a +be +design. +on +the +the +Hive +for +these +Transit +be +be +this +soon +ious, +desperate +Muelhausen +lish +setti·· +the +office +among +white +bogus +which +with +I +perseveringly +City, +and +is, +phonograph +mayor +was +this +Columbia. +But +a +the +of +government, +between +the +He +saw +me +zon, +eitv, +are +by +of +becker's +obvious +land +pay- +would +of +the +of +county +shall +tired +assert +in +about +difflculty +for +F. +own +and +feet +dii +of +which +application +Teemer +ex +armored +noon +Interesting +portrait +to +number +And +or +can +Thursdays. +knows +into +1832, +the +The +If +In +without +excess +in +8, +the +of +By +what! +has +came +Now, +the +down +of +symptoms +tude +example. +Barry +53' +enemy +well, +the +or +yalmost +concerned, +annum +of +writer +1843, +the. +authority, +complain +admirably +ple +:ause +am +Knight +I.lanii +opetatioo +do +à +whitewashed +withstanding +he +terrible +to +attained +shawls +aejtUat.yifirHl +had +matrimony +Archie +it +Blount. +not +the +station, +Ham +standingpre-cmintut +grees +and +operated +ton +will +are +seventh +bave +among +kind +neal +s +herein +of +shortening +demand +and +northern +only +heartily +Minnesota. +in +to +if +at +to +obtained +ket +thus +cases +ready +8, +fact, +quiet. +executed +sit +that +soul, +of +nor +away +would +with +much +tion +and +validity +that +Aw +the +mine. +\V. +said +fession +such +but +men +profit +to +behind, +lines +average +was +something +to +for +minutes +the +said +affairs +the +as +pound +experience. +The +spiteof +question +views +came +No +does +impressiveness +man, +grave. +states +a +our +heaven, +of +young +occasion +in +. +and +the +to +must +Among +crime, +in +a +to +signs +of +and +eration +Hereafter +to +of +tically +their +attacked +rabled +Jocnlitics +their +fore +or +put +Auction +Taft +association +500 +other +determine +Carolina. +subject +notel +to +Brnatow +stripping +make +be­ +God +currency. +could +bug +from +been +%c: +culture +to +appeals +best +personal +eyes,which +the +ocratic +engineer +Wood, +it +the +period. +action +liable +for +it +from +the +coastwise +that, +-wnat!" +with +the +more +on +the +tive +oi +able +companion +same +whither +the +lot +for +and +Is +you +largo +tt +Brown +of +purchases +without +and +ond +they +of +>nd +a +against +slory +1:6-2:9.—Rebuke +particular, +dla- +is +is +sentiments +only +It +perfect +wish +soon +obi +2,000 +connected +or +Carolina +to +a +driven +city +with +trim +It +150, +defense" +inciaory +the +Townrlilp +the +steps +with +avenue; +nuling +D. +mighty +in +it +wnr, +la +had +ndroeacy +and +the +utes +tiered +Pacific +them +I +of +fastened +company. +General +Is +on +* +at +It +classmate +needs +Shore, +violent +on +get +If +veal +south +of +article, +the +admission +and +know +and +from +ac- +Stanb. +till +came +could +office +tlement +volunteers +or +in +lation +from +more +get +and +"I've +by +and +advice +time +When, +18; +of +Wisconsin +an +sufficiently +upon +most +have +Fed- +1 +every +attention +withstanding +overcame +provid- +For +citizen* +if +just +ished, +eminent +I +Fourteen +not +way, +own +had +for +of +brought +bundles +and +Deputy +the +influtnee +immediately +day +by +mt.de +game, +contribute +the +whom +been +Board, +beverage, +Two. +Novem­ +deed +place +free +states: +11} +are +north +mort­ +rebels, +White +stirred +under- +mons; +resenting +At +matic +might +and +with +as +going +another +dollar, +of +Gout, +the +must +M. +reserved +the +spoil +in +with +to +became +oi +stand +of +the +baak-rb' +a +of +conditions +L'nd +figures +Kavani.-i +their +male +and +Hall, +most +held +society, +his +is +collection. +driveling +District, +that +There +Mr. +farce, +to +campaign, +the +the +charg- +, +to +balance +two +alarm +native**. +belrmglrig +tlnally +*o +tools +of +the +shoulder-strap +ex- +more. +lynch +proclaim +be +were +by +day. +the +already +institutions; +community. +satisfactory +iler +the +secure +cents. +Samner; +are +in +which +rugged +tic +matter, +Immense +tho +trouble +tlw +banking +tho +tho +Bri- +as +the +great +While +and +of +They +tie. +by +channel +advanced, +fl +the +Charles +age +well, +construction +about +courts +lions +during +mob +and +quarter +a +sum, +the +when +with +organized +Tavloeand +is +wealth" +statesman +varieties +aof +in +the +pressive +un- +struck +west +in +later +cast +water +the +British +the +fering +the +eyes +the +roofs +these +travel +in +pirt +a +reason. +by +S, +south +right. +; +want +more +Charge. +or +labor +great +the +men +exhausted +a +and +the +moro +and +its +the +-Hate +to +her +necessary +fossil +to +object +she +ed +will +demand +his +realizes +about +a +tiince +and +its +have +church, +our +from +ladies +the +every +lowed +double +koowed +1,200; +to +some +were +total +bye +the +Mr +it +an +conclusion +uot +of +Den +differences +it; +thing +colored +despair +by +the +dow +Railroad +Mr +country +House +fa +thence +greatly +art +slaves +idea +Lot +ope- +at +testify. +1875, +able +any +two +to +expression +the +Burke’s +on +In +the +greater +sistent +audience +past +conception +the +Miguel +one +service +follows, +the +your +Company; +hour +Republican.to +and +congratulations +or +<|ii +some +tions +now +responsi- +that +committees, +young +this +Hied +so +on +to +gnus +it +word. +rolled +a +Kentucky +end +is +timo +in +being +this +con¬ +such +describe +least, +night. +yesterday +Nevada, +s +lation +and +such +men +from +this +and +Msgazines, +with +and +sides, +national +is +Lester, +gal +if +Walter +to +mucous +to +reoeipta« +at +laughed +present +into +rest +organize +party +not +particles +of +tho +J. +due +success +! +UK) +and +which +recent +refer +the +The +hero +personal +8^®8 +shall +have +the +a +of +issue +Dixon +with +better +not +entering +Russia +A +their +in +the +at +head +the +their +pened +waist- +the +them +seven +lion +estimat +"f +of +Surry, +it. +confirmed +more. +as +all +Oe +printed +but +executive +be +th +nml +corporate +noticed +Thumbs +of +plct(*d +a +centre +March +the +30}, +Some +be +event? +States, +As +Petersburg +incident, +yet +Pottz. +Saturday +the +needed, +ing +or +in +specialist, +with +ears +what +The +Browning. +daya +cuted. +great +ev-se +the +his +skewer +tract +by +ment +differont +much +this +it, +a +North +MoClelland, +peaceably. +scarcity +we +of +high +and +tain +absolutely +cor- +fore +per +not +uiui-nt +light +has +that +raising +be +and +more, +in +on +by +McDonnell +through +by +d« +of +in +are +nay +thence +the +Luis +thirty +limited +had +hand. +con- +those +New +Borger +instant- +embodiment +American; +Bridlos, +on +112 +Johnson +tua* +qualities. +ship-builders, +hundrcd +there +and +The +Reddy +at +sulliciont +Topeka +it +parcel +from +on +to +not +hat +and +ot +way +enlistment +corp +Various +body +much +of +center. +pro¬ +the +be- +D.. +and +to +to +of +not +Ori­ +the +MH +of +Brule +that +stop +the +it +declaration +soil +Capt. +this +guest +and +at +that +Coyle, +result +to +have +But +in +the +the +F. +all +of +nor +Science +Navy +duty +ad- +tha +the +judzment +play +be +I +250 +P. +the +of +lific, +there +get +from +ole +violence +latter's +a +attempts +that +tried +to-day, +a +see +of +change +F +the +ier. +Revised +that +hot +intelligent +connect +attention +level +surplus +house +thence +thtiefore, +cation +orological +that +meeting +vessel +minority +tolls +their +District +30 +this +might +west" +source +we +by, +arc +opposed +which +a +the +hav +the +shout +corre +Leonard +Pierce, +liberality +C +tasting +thought +his +affair. +and +the +small. +and +in +c +invec-tiv- +statement +has +be, +Kingdom +men +to +are +his +wrote +transit +for +pected +hope +that +a +he +get +man +othor +of +The +dreaming +my +law +1 +Tucker: +therein; +mo: +Hawkeye +Mills +An +that +obstructions. +revenue +of +Beginning +to +grat +lie +tbe +lndo-KtiroiH4 +hia +Hoffman, +respecting +to +intend +represent +man's +partie-» +sirup, +workers +like +sent +the +to +simple, +but +an +of +6f +allow +Cross +1918, +rose +of +parted +other, +of +ber*. +of +nmendments +a +R. +assistance, +not. +annals. +County. +of +which +shalled +These +largo +public +chinists, +until +this +little +or +wus +its +location +it +into +by +Then, +make +the +Richmond +better +of +Winnipeg +which +aunia +shifting +us +or +or +iuviting +very +The +estimulo +and +Quite +steers +the +of +compassionable +Adjutant-General +up +ask +was +practice +a +ono +cow +for +position +George +In +Chair, +of +very +and +twelve +to +is +who +Ited +of +descend- +Fruit +child +in +for +gintlenen +are +taxable +left +tain +longer +und +molasses, +the +way +to +more +perfume +people +''There +and +iu +touch +which +made +who +to +support +life +Delà +hark +led +d +our +by +toast +a +he +pro- +filled +produce. +and +bank, +industrial +his +ol +they +o'clock +Miss +was +immediate +aod +house, +we +another +of +south +was +pay +in +belonging +renewed +Raymond +-T +candi- +even +their +ldtO, +public +ledges +of +the +lla +for +who +at +of +Louis +the +taken +with +mianiouaritsi +to +straight +baking +Rosa +followed +tucky; +him +the +nortb +tion +K +Ge +a +although +A +compress +another +. +emptied +reversed, +issue +more +states +blasts +boat +good +these +82 +mare +miner +be +Exchanges. +interest +he +main +training, +Mrs. +8. +Life +the +ou +to +firing +dressed +Root: +was +auuress +We +westerly +required +by +thence +is +condition. +old +«>i +and +in +The +bo +marketing +t +of +to +owing +than +the +a +sale +them. +primary. +Montana, +intle'id +I +whero +of +back +search +the +secured +the +the +one +5 +the +.10 +upper +trouble. +9 +another +Times +Magazine. +scale +of +. +at +United +get +in- +what +licensee +disobedience +ih'e. +now +thief'a +frauds, +no +of +that +been +the +railroad +it- +heavy +promise +'have +week, +as +civil +by +in +, +our +be +when +ness, +was +a +men +voluntary +some +In +been +uni'oi- +lieved +is +.it +his +ing +ties, +aid +sometime. +the +over +Chord +the +hours +in +the +to +Dollars +King +and +moni +59 +babies +if +thousands +Verde +weird +with +us +Browne +fired +gained +the +feet +no +are: +away, +profits +the +committed +over +anid +to +of +the +to +During +!eel +there +or +as +the +again +he +lost +A +imances +their +these +the +rlgbt +is +see +California +eight +Resolved, +their +a +United +storms +Mrs. +iIn +auperatructure +the +the +half +found +rnliintcs +half +foot +received +thereof, +Iron-clad +line +with +iIt +three +o. +doubt, +iteps. +by +Thu +into +optimistic +see +and +street +prupuriy +state +and +It. +not +know +so +hay +oountv +Ma¬ +and +determination +just +contributes +rise +two +ever +a +"opinion" +now +effect, +stnngth +Mrs. +This +and +is +the +which +please +Pr +to +suffi­ +heavy, +ae +practice +hide +Its +tho +is +child +Hamlin +with +plainly +12.50 +beginning +means +some +One +dance. +proud +Shiplette, +more +2 +our +having +that +cubs +despatched +u +our +annum. +a +and +affecting +to +in +hot +indicate +In +I +army +following +ment +simple, +re +of +sent +15 +have +Captain +the +tho +Wistar’s +for +prayed +looses +Florida. +sisted +barring +coun +ability. +wcllt +who +100 +a +Increases +(he +love +from +boy. +the +pounds. +appoint- +effective. +they +• +to +the +the +leisure +regulations, +the +who, +to +being +with +fostering +a +sugar +at +Tbetrue +store. +uoniit-clioo +sectional +be +do? +the +How +thirty-three +dance +union +under +Thorp, +to +track +were +kinds, +wife +plant +of +claimed +ger +p. +receive +live; +for +a +their +air +influence +tioienev +for +which +Co. +the +every +benefits +The +closets +havo +that +it. +when +serpents." +Our +check +and +years +for +a +would +riage +acquaintance +sort +5<7) +street, +tuber- +advertisement +productive +old +ap +be: +survivors, +such +prays +for +of +v. +who +affeetlons +M. +house. +manufacture +her +and +lot +and +up +Chancey +on +the +but +agaiust +volces +solitude," +remov +6; +an +rected +fice +supply +you +difference +ml, +to +started +is +to +had +of +low +are +been +shown +he +men +out +Craig, +keen +farmers +often +country, +Lot +of +crumbs, +Republican +of +them +ters +i +sur- +- +those +Irom +of +have +This +may +week +of +it +words +therefore +producers +Lake +live +piled +were +hope +the +TO +of +all +supply +one +if +building +through +colored +that +"Governor +to +friends +Oklahoma +as +the +away, +said +knowledge +fuse +saulted +ke +the +fotiinl +build­ +a +that +until +hand +the +and +so-called +tho +Mr. +to +days, +declarants, +stronger +bIbbobI +and +damage +market +a +for +Judge +Lady +line +girl +principal +and +wood +year, +once +| +write +watch +and +Presenoe +grand +B +tained +he +anv +an +therefor, +tolerate +to +1830, +courthouse +ufcomploinast. +system +rattlesnakes. +interests. +Republicans +by +by +that +with +featherweight, +afleetion. +. +level, +Penn +hundred +is +of +and +primary +for +.Senator +it +butterflies. +washed +offshoots +or +grand +is +been +taak +original +expec +frequently +looks +at +It +sulhViently +a +fea- +fifty +and +a +here. +Anderson +indications +and +that +September, +The +lice, +Woodchuck +as +annum +a +sodden. +Deirlng. +remains +in +upheaving +producing +and +bad +trying +of, +the +will +decreed +abundant, +reputation. +December, +made +Harley +he +make +convonod, +hun- +with +rely +with +another +are +counting +as +their +father +and +under +James +cross, +he +der +by +iollowiug. +seen +or +J. +C +neglect +WOMEN.” +thisindustry +breaking +of +from +easterly +17th. +foundry +and +power. +each +taxpayers +In +ta +Polk +Rheumatism, +chicken +them +R +the +the +considerable +mythical +closing +her +He +paper +have +to +saluta- +to +struggle; +ci +30 +The +con- +as +have +brand +Mass. +moral +may +from +common +That +starvation. +the +Young +companies +the +can +can +The +of +hopes +dining +reward +point +hour +extrn- +and +the +consists +army +continae +political +r;«n^« +desire +question, +father. +day +the +introduced +North +be- +upon +left, +that +sheep's +o'clock +buildings +when +by +box +of +They +tho +isfied +Sec +snider +Craig, +of +in +it +In +inclus +fire +boating +that +themselves +Democratic +of +no +industry +would +to +sat +and +shudder +Again +to +to +are +the +showers +work +and +the +the +that +as +just +o*" +be +Johnson +tbiirgea +Biloxi, +see +Corner +The +energy, +its +1925, +or +must +solely +annum, +Court +and +the +And +revive +those +their +and +over +saying, +Inde¬ +the +beyond +support +lief. +but +whose +on. +conducted +mortally, +now +abide +his +con- +the +an +colors +asked +pinning +into +(I +strips +fan +his +of +that +saw +Irving +Silas, +ton +took +who, +1 +Mr. +are +real +less +naries +for +Williamstown +1Pour +if +son, +hia +dreadful +they +in +est +upon +changed +will +understand +sup- +down +are +icy +sixty +of +can +is +good +cloth- +It +higher +by +spondence +make +gas. +I +to +require­ +received +he +barriers +general +should +appaarad +In +expect +and +rosr, +plants +with +extra +and +lost +Elegant +of +94. +for +loights, +weekly +nolble +vacancy?" +»o +within +Spanish +his +of +the +lias +thisCourt +to +a +the +of +to +the +earn +and +demand +maade +get-i +of +(oloed. +furnished +right. +action +Herbert +out +or +where +provided +of +most +>rtunt +cold +Oregon, +podist, +as +haul +times +of +fight +behind +the +be +was +of +of +is +Vlvira +of +intended +party. +of +and +accepted +restoration +most +women +ties +business. +upon +No. +He +confession +of +living. +up +tiir +and +the +one +bilLaid +will +tion +Then +prairie. +knows +a +staple +iniquitous +do +the +porch. +We +know +-?t, +labor, +on +so +mill +gentlemen +anount +shot +and +aristocracy +public; +he +"Then +day," +pure +to +treasury, +"jump +city +again +expect +uess. +is +be +over +and +from +E +states +highway +membership +murderer +to +done. +done +to +are +had +longer +from +weave +re- +I +a +own +this +uch +and +32, +lots +Witherow, +will +just +matters +on +carry +a +Book +subordinate +the +month +to +lute +are +gets +the +The +their +recommendation +pursued +practically +of +of +at +poor. +to +elapsed +after +Beginning +and +out. +a +flat +The +blossoms; +no +be +weaken +the +are +and +to +a +thine +of +telegraph¬ +designs +rider +discerning +home +but +cherries, +study +be +so +interest +that +work +of +state, +giving +Brewster, +.lith +strength +patont +replied: +this +are +the +both +Alorrison, +officers, +jr.; +standing +have +of +the +and +y +of +city +slaves. +tweeii +gunntr'a +from +and +monstrous +with +mi +100 +Lake +a +whom +was +dom +Seems +re­ +she +while +al +hereinafter +lime, +him. +had +than +and +the +outside +men +touchdown. +is +who +Messrs. +For +American +and +honorable, +Payton +tho +Valley +certain +Incurable, +the +Such +this +the +here +of +a +blind +of +custom-house +and +beside +out +montbH +tbe +steaming +has +it +back +a +pervert +ened| +"Yes," +re- +accommodates +it. +in +rob +that +progress +hi +away +when +who +The +the +of +the +of +in +and +widespread +attorneys +by +terrible +last +(187(1) +ihence +and +a +end +to +printer +business +Hungarians, +was +of +deem +Is +can +Interest +instant­ +January +in +in +of +The +we +is +which +the +{ +We +our +she +got +affairs, +a +relations +of +radical +sight +Others +not +Puebla +than +let +Action, +and +amounts +that +of +57, +the +glanoes +center +a +equally +in +of +thinking +bi<|'ivtcu +Indian +to +Georgia +is +rules +the +rakers" +ts +to +(col +was +growing +arranging +sanction +cover +closed. +southern +the +nnd +of +personal +sul^oet. +supreme +misfortunes, +the +this, +nnd +to +it, +stone, +of +in, +The +my +1st- +per- +consequently +grant* +4, +etables +of +meant +other +of +of +pulled +5,000 +Senator +the +a +let's +for +ooor +at +high +to +legacies +tappeal. +aro +)f +started, +Clark; +memorial +weapon +mill +rushed +make +of +Campaign +affected +ed +ISSB, +beautiful +chief +having +brevet +good +personal +be +will +oc +shining +For +10th +said +reaped +pted +the +trouble* +man +means +cause. +Dee, +It +broad +of +to +sion +a +manner, +50uOS.... +$30 +ambitious +Silver, +relate +Marriman +in +an +to +simply +stern +mimed +Mrs. +chances +"I +born +not +of +which +it +ber +when +much +stone +estab¬ +*uch +aUdlab +be +much +ed +that +an +and +is +file +on +me +to +life +did +1904 +markable +Relief +born, +of +a +and +proved, +had +devote +to +Robert +where +mode +fight +point +tue +more +reef. +round +would +are +Vereln +cirried +where +njiles +plant +in +the +character +latter +grain +tangible +northwest +possess +dealer +to +any +is +in +and +to +in +pools +delicate +i'or +a +lengthy +post +not +because +length. +neck, +which +ence +his +principle +care +move +was +since +one +quiet +wisdom +In +great +of +Baltimore +anil +as +transmitting +have +thrown +It +factions +Greek +cavity +reports +of +to +F +best +tho +contented, +lumns +of +those +per +the +be +organization, +in +for +sale +j +guarded +and +where +booty +meat, +The +upon +as +the +of +the +singular +accomixuiying +the +owl +als.) +or +about +per +offi- +the +program +made +nation +the +will +FEB- +gulf. +>tr*<*t +and +people’s +last +all +I +" +pers’ +dog +insured +Scarfs +mutual +are +rather +of +and +frieuti +these +in +him, +the +souls +11 +are +to +for +west, +be +salt, +his +of +Republican +pitals +lying +the +v'.-; +at +Oaks. +residue +are +the +Early +the +in +year +was +ter +movement +changed, +in +expect- +stiff +continued +more +let +day +Spanish +Millions +tract +income +came, +away +sweetest +. +was +Mr. +were +on +is +hat +honds +an. +the +hecharges, +of +the +marvelous +Act, +recollection. +he +in +wtnlc +War +in +In +i +the +patriotic +regulations +handsome +female, +to +wo +ed +office +Section +and +this +effected. +Interest +was +plunging +To +not +and +this +wrung +Tho +as +daily, +authority +Hon +Montezuma" +watchwords +Koanoko, +to +arrangement +The +Italy +vail +present +pub- +ty-three +add +circles, +his +therefore, +and +A. +be +*.'f>ry +to +be +good +a +ange +thever, +special +on +men +same +encaso +served +truth. +while +to +in +of +Gens. +. +presi +the +the +connty +say +ulth +Carson, +townehtp +soon +road +day +for +commodities +left +Yes, +tution, +money +exempted +this +nam- +confined +prices, +apricgi +toughs +When +the +h> +Co., +and +by +the +Uob’i +cf +remained +It +compost +one +failed +sentiment +country +the +thim +reason. +the +lb* +bcause +bottle +be +model +asked +and +!»f!- +which +fashionable +rapidly +and +width +O, +the +ship +presence +explanations +the +and +some +him. +from +least +rather, +of +be¬ +best +of +second +a +might +magnesia +He +not +do +be +these +space +WA +at +District, +each +it +counsel +Buntch, +year, +done, +the +a +and +half +. +wheel, +effect +not +for +or +proved +in +was +but +rural +of +>ring +out +but +and +and +it +can +This +States +means +at +each +each. +of +is +are +the +batting +to +ever +message +nearly +166; +value +(1889 +That +of +will +tho +Dollars" +and +plan +woman +some +hereby +as +every +Mayor +from +lay +flowers, +150; +certain +in +good +points +and' +says, +prominent +fore +thus +of +be +mentioned +the +man-a +better +the +mary +( +relinquishment +way +neat, +toggery +you +the +root +months. +Whig +deif. +000 +west +(it +judge. +speaker, +one +distant +instructions. +the +serves +Sauford +at +south +for +par +angles, +then +ao +are +Mane, +C +we +baid +equivalent +killed +the +of +made, +this +when +and +one +the +tax. +The +Srobable +$5,642.02, +In +makes +ef +tea, +and +i +engine +t»old +the +he +bay +used +as +in +minds +mln. +upon +very +lamented +his +until +plainant. +him +lew +his +papers. +5); +caucus +to +fifty +it +at +the +to +this +vision +part +a +Minerva +and +fruit +the +long, +not +Europe. +for +interest +Con¬ +theu +carry +of +to +for +Mrs. +and +and +and +Senate. +a +don +SPECIAL +with +Court +In +Marshall, +After +and +like +person +vote +\u25a0raaa +government +who +London, +may +recent +in +and +Odell +voters +stacks +remember +the +8 +late +In +in +; +accumula'ions +outspoken +having +not +Tha +. +ballot +most +matter. +conquest +so +suspi- +clad +ford +entertainment; +not +the +Bennett +everywhere, +in +of +the +There +light +due +rates +cordially +issue +threw +IWl +absolute +the +and +federate +Nevada +long- +the +sides +less +Teachers' +instances +paying +sheriff +by +cording +mainly +flah, +stick +and +the +women +prudence +the +recover +admitted; +Kanire +was +and +The +say +but +that +a +gallantry. +shore +one +tho +stOch +Heieb-r +the +munity +the +owners, +set +the +a +the +the +be +Urme +checkreins +rider, +and +dis- +and +showed +at- +said; +give +notes +prairies +the +the +death +taxes. +with +received +children. +becumotothe +tim +scenery +one +salt +from +of +piness +hw-I +something. +People +easily +battle +tained +advertisement +to +no +of +sci.tt +vise +of +81st +pen +to +hy +their +Tefoarraph +family +one +many +waa +Lake +our +they +times +begin +a +you. +200 +earlier +The +ey, +everv +had +menace +be +certain +oldest +business. +dency +a +and +guided +owners +year +seriously, +might +tion +Madison, +Phillp" +the +cases, +carried +Gold +deed +cigars, +Colo- +yards +id +rife +and +but +said +play +that +hour +have +the +He +nation, +stamp +a +had +to +fiaenced +Jersey +blizzard. +possibilities +mill, +ordered, +one +Tlieeaaeiofaulferiiiiriu +of +roontiea +Hie +kind +the +sin- +taken +announcing +special +of +latter +a +I +and +Lockhead, +will +will +the +90 +Attorney +a +any +RITTERS +be +W. +feet +to +civilization, +the +belnted +demand +that +repaired +tests +the +and +in +very +St. +one +to +world's +Erie +makindnperato +need +matters +an +may +19min­ +IW: +coun- +of +weight, +tho +to +title +rats +ho +deemed +anc +Thev +as +posi­ +and +must +behalf +equality +takon +in +ascent +are +humble +picnic +of +while, +whitewood +all +to +ion. +the +! +he +great +of +supervision +order +confines. +country +Barm +when +view +Port +lien +the +amended +the +or, +the +they +should +home +in +was +the +of +Andrew +send +Sixth +pay +power +Then +a +and +a +inches +river, +county, +him +frame +HOTEL. +over +M. +in +at +like, +ac- +I +in +the +tho +j +'<* +under +hold +The +lying +When +women +literary +him +by +drowned. +and +accepting +is +obtained +assigned +as +default +man +that +success +to +are +con- +recent +the +dead +un +agreement +the +of +men +has +Mr. +su« +our +said +the +our +tho +in +to +law +clime, +contra¬ +believe +people +a +a +Jude’ +until +her +estation +a +the +that +J. +In +and +Treasury +Furnace +the +class +of +and +land +is +low +being +and +practiced +and +ice, +Bundles +for +1100 +by +1 +only +All +both +life +the +Texas +Walter +MLeach, +but +ended +have +was +M +ning +this +re- +you +on +sought +balcony, +slave +3 +our +this +what +and +I +Kirby +Tnat +dulv +of +innce. +ccounts +the +within +i +panic +the +being +i»est +of +held, +of +and +.and +quiet +with +wet +shall +the +Piazza +he +time +been +himself, +on +Now +deg. +I +plant, +wood +not +m +these +people, +as +of +the +fanatical +herself +$316; +£4<», +in +and +less +300,000 +he +amination +of +on +the +looked +"Who +und +aection +land +case +44 +and +money +farmer +dog +good. +are +debentures, +that +California +has +and +the +tl +United +senger +and +or +swing +their +by +cost +to +Mr. +Tak- +the +the +we +tribute +his +Druggists +the +of +r +about +neighborhood, +late +out +«*oy +a +conclusion +no +and +his +stlll +quiet +city, +north. +watch. +oath, +A. +roads +each +of +tana, +could +becket +of +of +a +A +night +arrival +in +or +sufficient +When +Onuyugliaiu +if +required +of +did +as +property +know +-take +and +the +Mr. +and +a +world," +his +com* +If +crops +does +in +likely +so +Fork +to +of +AU +the +soil +nerve +known +and +j +for +law. +iu +w +uegrces +and +vines, +the +who +of +¡ontrnct +medical +a +edy +in +no +sions +blinded +and +and +open" +other +alone +gency. +theory +sole +3; +a +she +of +steer, +has +nay! +mood. +Gambling +generat­ +letter. +Reporta +already +and +This +ladies +the +the +feef +the +bankruptcy +lantern +they +odder +The +him +(14) +The +the +Is +the +such +soil. +hint? +fur +open +of +not +a +hold +in +sea- +people +Tbe +thing +for +concerning +the +Strat- +verted +who +behind +civilization +to +have +the +Pueblo +tnari, +true +you +sufficiently +some +at +B. +achieved +tends +city +contested, +ington +1877. +four +mile +aged +was +but +my +uesa +mous +all +every +Central +kneeling +when +and +from +Belonging +and +on +up, +behind +south +which +Then +mixed +hard, +tember +and +for +horses +Lot +is +at +yesterday +only +of +skirts +of +daughters +up +that +e +the +tact +the +My +his +less, +tho +degm-a +where +footwork. +nearest +the +are +for +from +fortable +facts, +Various +-fifth +beings +relative +land +the +water +to +tion +nwl- +enterprise' +In +and +it +might +Richmond +Germany, +After +of +for +offlce, +the +their +the +bad +its +intelli- +Ilave +counted; +to +, +from +ikr +from +to +congress, +jour +and +and +by +body +bravo +my +each +in +to +journey +et +to +21. +as +by +Samuel +trust, +the +thing +up +more +aothtag +and +or +known +that +thouimnd +82-acres +statute +hotel. +Royal +exact +will +a. +library +of +of +lie +30, +physician +that +that +skin +the +flnerles. +in +solved. +that +Conference. +people +the +joyous +common +400 +and +the +before +u +opening. +psychology +but +time +such +by +The +moved +at +members, +flour +in +the +; +subject +The +passed +plantation +nice +and +you +originally +revdltiug, +teres. +in +order +to +hundred +and +To +Cress, +be +; +ing +37U,c; +too +hard +beauties +the +peculiarly +paign +sustained +Belgian +system, +neighbors +carried +they +would +and +the +brains +band +the +his +her +is +sec +the +so +bush; +on +The +to +ings +graduate +pounds +Tha +referred +they +men. +lady +to +The +hesrt +t..at +and +that +about +bo +doctors, +it +sections +State* +killed +to +place +will, +There +Our +their +bo +be +this." +sions +be, +the +last, +er +or +is +registered, +account +of +nnd +gives, +one +received +and +be, +b\ +1 +for +at +say +are +sfaff +fair +that +such +You +is +a +••The +way +Timberlake, +ding +may, +housekeeper +She +Tlie +the +made. +inhabitant +in +Jersey +body +and +million +and +15 +belch +corner +cut, +impetuous +all +tho +grain +the +on +a +the +toward +a +making +we +would +painted +that +are +The +distributed +a +an +tim* +that +then +Stough +but +clear +ed +His +Delaware, +was +Britain, +rich. +described +figure +to +plan +of +under +howevcri +correctly +question +-BGoil, +In +Capt. +the +ished +a +com +quent +direful +unsealed +on +over +with +the +Itis +over +here +t +and +me +mother +times +can +Brazos +such +fellow +sister +the +nine +W1A- +the +reserving +government +and +public +from +and +stood +insult +indispensable +he +It +the +expecting +business, +be +and +innocent +them +to +Park, +what +Major +friends +many +Elias +at +migh +talk +must +a +honest +sight +the +In +tailors +lni'ruate. +finished, +Yutrul +called +attack +mentioned +suits. +ver +County +catan, +of +at +and +comfort. +series +of +that +can +have +operate +of +Angeles +places +to +share +and +minor +universities +terrb'i» +society +signal +as +bec, +Club +fire +it +per- +such +the, +was +Eastern +this +per +be +of +title +"alien” +be +captain +and +commerce +never +The +of +million +for +ulcers +nn +38 +to +theles* +the +the +setts, +them +Raymond. +which +points; +affords +modern +A. +at +were +wassome +cles +for +ceed +no +like +six +within. +wc +asked +first +opaque +fitted +of +Granum, +secure +Wie +much. +assuring +and +and +practise +be +grain. +of +end +the +which +to +follows: +which +record +Book +theprem­ +beseeching +pre- +meantime +of +the +body +folly +thai +principal +little +embrace +road +tin' +To +of +estate +inst., +ain +town +were +ner +not +McLeod +a +(assigned) +Some +by +t +Mr. +crape +Ky. +article +of +motion +one +had +the +is +jumbles +all +new +and +and +from +why—- +io +mists +modern +coming +norsea +that +in +schoolgirl" +was +be +by +ie +The +hia +while +Induced +denly +not +the +my +American +we +as +making +on +each +year +you +quit +of +the +every +people +be +gesticulating +Carrollton, +girl. +dredths +less +subnmissively +attitude +camp, +Bernard +SI +to +Court +rapidly +hand +the +all +doorway +mud +that +won, +Installed. +tion. +on +speeches +ed +diseases +States +Perkins +on +in +by +out +the +any +tho +George +giance +sheriff +dersigned; +gomery +restl- +Illinois. +not +was +boast +party. +to +greater +the +hundreds +degree +faimcrs +of +Goldlo +the +by +rail- +two +this +Education; +comes +Its +This +any +of +and +. +Do +by +miles +him +its +fit +tno +charge +12, +in +States +Maury +and-by +course, +miss +a +due. +this +filled. +ao +might +Hawaii +Bu' +arrayed +Clorer +of +resolution +twice +Toledo +Bartlett +Revolvers +of +they +demoralized; +administrator +wa +L. +;per +and +way +Overseer +Committee +Court +and +asleep, +is +struction +of +slaughtering +“q'«:‘.m‘-;...‘"'”? +had +ot +the +are +the +heated +for +never +regulars, +been +"dead +CIO +lieipfui. +out +private +Kirk, +resembling +yard +greased. +b.ue +mean. +Los +conllded +been +much +to +S.Irel- +design, +for +eeonomieolly +of +Original +been +Hamilton +taking +acuse, +English +remains +stating +annexation +records, +of +in +to +arrests +grapes +when +testimony +dent +ceelcd +and +nuies +disloyal +man- +a +the +Irish +brave +thecrty. +If +and +taxation +through +supply +in +gestion +discomfort +1873, +were +to +lied +for +some +which +l +lb- +fed +in +the +to +utiiy, +in +r. +tha +r +the + +Fort +deadly +castrated +ol +the +He +llfTcrenco.. +rapids +pair +the +the +black +size +, +1905, +the +contradiction, +handiwork +more +sequent +over +some +The +making +aud +That +asked +the +the +water +their +and +ideas +be +seven +insist- +long +this, +- +who +the +and +is +for +of +to +together +Mix, +361-375. +one +" +of +down +conditions +con- +dy +In +are +memory +the +darkness +down +- +The +be +lot +same +means; +Chloe +Housatonic +Penrose +sample. +the +must +near- +J +bitter +. +how +address, +ttiau +room +Attorney +regulator +the +courses +the +ents +away, +loyal- +fanity +other +ut +v +They +Lamont, +for +hailed +hand, +vislon +Having +directions, +cane: +Christmas +tasto, +before +in +skill +a +manner: +will +m> +amine +be +considered, +cording +will +Simuel +when +more +hereafter +re- +length +or +would +day +and +tionary +whale +¥ +population. +IBS +It +was +be +In +the +may +ertavrai +to +'A +infallible, +track. +thee, +taining +acquiesce +81000 +been +excesses +other +support +fast +being +they +William +Lees +felt +reprosenlcd +per, +its +eyebrows, +terna +to +not +a +position +so +squaree +Town +individual +oyo +her +all +to +Each +views—and +one, +potato +and +factories +atlc +labor +a +world +bodies. +management +son +tendants +you +tho +determination +piles +I +the +entire +Harrison, +thero +the +evident +it +Teachers. +casualties +and +tered +us +by +from +that +want +bales +and +the +our +dcnln +Exchange, +never +fur- +third +1 +white +tions. +Senator +tat, +description, +the +that +the +ro +Membernhlp +distributor +to +evidently +successive +spirit +then +will +erward +few +registered, +was +and +kick +the +placing +Treaty +roll +for +sui-prme +the +negro +two +k«·, +Wall +to, +through +done, +suspicion +night +acres +taUng +county, +the +long +lind +dipping +day +House +idea +region +it, +to +be +very +reform +200, +Bpaoaaf +part +part +In +have +or +the +in +otlte +the +seemed +America +weakening +their +aide +th* +supplied +Henry +and +" +majorities +active +said +the +grow +any +Territory. +. +me +commercial +social +of +town. +sioner, +noble +fifteen +secure +praylnjr +half +far +their +toe +wise +Australia +too +reached +be +and +one-third +it +our +vacant, +the +No +cises +house +recover +Also, +the +of +of +which +smaller +esteem +at +prelates +you +where +monii, +the +15 +a +Law +before +the +ly +iron +J. +in +real +the +tation +61.120 +thai +keep +pase603, +The +statue +«aM +at +feel +attested +his +believe +square +charges, +the +and +was +Alexunder +that, +by +visits +gold +monds, +there +our +Frisco +1lobbying +in +lake +tree +welco_n +treasury +go +first +wae +daughter, +pair +effectivo +with +f +we +stealing +the +early +d +facts +ground, +scheme +a +no +with +Smith, +said +be +waikea +wjiethur +robbery +a +unclouded +progress- +enormous +the +permanent +of +should +of +woman +•rder +hopes +and +are +"We, +the +time +are +the +are +favorable. +answer +CIIARI.tS +spring +St. +Gradually +women +portion +other +a +atmosphere, +the +are +an +and +weeks. +W +wisely-will +furthermore, +iiiio +44, +price. +one +family +say, +received +so +assembled +$25, +a +government +well +form +travel +for +sleep +in +cient +America +that +is +Tbe +that +property +bring +Jas +— +to +doing +will +afford +testified +of +of +redeemed +third +is +killed +000 +not +editor +are +Further, +acted +again. +preferred +away +supply +and +it +Philip +the +SOmebodj +of +though +to +to +OF +moving +firm +is +800 +is +advantageous +pays +uments +terror +this +- +the +the +water +a +a +burned. +and +of +no +meal +hour. +for +throwing +ncsa +chatter +which +blacks +of +Chicago. +riparian +very +and +house +that +line +of +their +drowned +which +milch +inspired +death. +in +in +cordance +system +the +levy +twist +or +«.aube +object. +In +an +and +performances, +fund, +to +ideas +Kearney. +her, +last +people +J. +It +to +to +to +puch +has +mail +to +ning, +was +duty +a +Aoq +the +any +kota +of +contrast +into +squadron +der +expenses, +were +dred +hereby +acquire +baths +nomination +of +vlien +precautionary +it +all +by +dated +by +gun +torrent +Shnttle +water, +be +swung +Carpenter, +and +been +work +gi.ila +many +Shute. +aronnd +if*not +where +for +sorts +color +'South +have +mer +Cmsar's. +It +J. +as +wound. +that +thracite +in +or +these +of +the +mayf +known +pay +sound +water +inarily +which +with +the +it's +Gen +mound +deprived +Lee. +From +land; +and +butter +a +who +have +almost +memorial +Tho +and +C +a +all +was +agricultural +road +the +it +the +and +is +to +Pierce +gets +almost +put +BfSS +a +Thompson +Louis +land +with +t® +when +the +is +if +smaller +this +and +on +in +I +has +an +were +let +himself +Red +in +copies +on +ped +his +Hay, +asked +have +Manoel's +would +a +broken +wheaten +prescription +bilL +it; +Washington +compared +her +plow, +be +whole +die +have +ma +the +in +and +in +left +lln +died +ple +took +and +and +hour +that +cars, +Neustadt. +ily +material, +the +; +will +of +not +1 +Tbe +and +Aberdeen +breeze. +Council +dollar, +public +Lambs +by +nan +would +tho +order, +our +but +hand +nt +the +was +steep +been +State +however, +stories +more +maid +Here. +new +or +the +the +udds +based +Is +Ross; +throw +ture +privilege +thence +together, +at +that +and +compliance +went +pose +went +New +patriotism, +and +"At +state +'of +services +M +canal +trymen +regions, +36®3 +summer. +dollar +Butte +mining +. +she +000,000 +to +puss +the +from +only +make; +in +the +in +crowd +stop +and +of +were +for +the +fire +be +Schwaan +Its +of +seventeen +noted +what +parts +the +valua- +persuading +the +they +another +the +succession +men. +correspondents +con¬ +our +Semmoles +has +mustache +Feoruary. +enough, +it +the +drive +he +Curiously +wd, +othen +are +a +their +egg +a +and +original +such +damaged. +that +thrown +left +old +53.25 +States +Inspired +the +euro +Walsh. +in +Whrhbas, +ready +Walter +Hut +will +the +ments +system, +oilier +Rnby +the +out +The +Caledonia, +know +He +the +of +vance +majority. +to +to +tyrannous +having +houso +a +the +ample +persons. +plot +$8,322,908 +The +the +year: +ho +tre +left +on +made +and +of +which +the +help +irt +things +terms. +done +constitu- +of +Watts +Blue +very +this +Appeal’s +injr +pretty +made +wt.icl. +no +off +and +not +hand +Holicon! +forth. +thing +confess +by +I +city +basket; +voyage +repeal +said +of +the +Iron +Mahoney, +generally +; +and +not +W. +; +keeping +on +for +stars +str +lake +ance +straight +when +ly +upon +table +had +Mammon, +and +hut +cases +pernllarltle* +der +Pulliam, +as +sun +the +Ry +General +de +understand +the +lbs, +reduction +be +to +fund. +in­ +Yom +was +as +to +according +much +so +has +sion +frequent +(*X) +found +. +of +Gol +began +permitted +as +the +ior +She +events +season +1S64 +He +the +you +show +calamity, +the +weeks +half +and +any +A. +ground +he +the +subjects +ooly +with +that +deliberate +ies. +to +; +over +other, +to +whatever +Riley +he +Division, +block +or +county +great +doubt +ed. +into +persons +residents +that +Geo.ao +This +it +by +grave +its +public +the +like, +at +so +like +together +viduals +F +to:t +quiet—Continent +pain +far +Yard* +candidates +gospel +A +to +lot +of +during +trade +to +charge +this +on +puwisn +'before +Uio +perhaps +lived +there, +the +President +limited, +the +sunshine +ac­ +where +left +the +directors. +the +Kingdom +monkeys +being +to +watch: +our +out +have +I +auy +There +musters +ed," +like +the +doing +history +the +right, +with +chapel. +The +architects, +so +delegates +Territory +along +movement +he +the +will +up +arnsis, +repeal +cising +way +Block +Ijaj +operator +of +lacked +of +now +center +direction +of +commission, +city +of +and +might +of +funeral +rallea +$1.- +for, +a +fair +mere +another +knowing +1922, +people +profited +for +this +of +North +inches +hobbies, +nervous +their +begged +He +there +will +Mind, +Many +for +front +of +of +a +al.d +a +on +change +these +the +he +warmest +itself +aid +to +know +will +as +is +time, +wore +always +people +has +was +outside +Claire +given +same +sheep +late +Brothers' +railroads, +with +Men +of +ancients, +family, +be +in +Virginia +been +the +an +next +is +A +alcohol. +matters +Western +remarkable +wlailom +sary +she +103 +lonio. +the +Neither +in +a +than +love, +itnd +President +Times. +his +said +other +figure +the +be +Boys, +is +. +said +called +feared. +board +es +trade +the +the +state +55|c, +of +inspected +and +on +It +church +Wsgnsr +convince +Corner +ior +cfforts +J. +surface. +iu +gives +of +not +at +Finer +not. +the +also +gained +coming +and +to +wounded, +declare +one +the +on +took +would +more +Still +the +the +th·· +peoples +willingness +jump +out +And +ings +determined +himself. +animals +been +His +at +on, +a +articles, +many +Broad +Ihold +and +i +months +and +investigating +therefore +our +eyes +still +while, +"When +of +I +up +field. +the +Court +and +the +templates +straightened +of +think +she +$12,000 +abel +more +newspapers +and +aftei +on'y +1886, +a +rlse +Bay +It +Stoke» +a +did +these +when +process +this +ling +the +the +possession, +act +W +short, +that +a +past +T +i +nil +our +seemed +three +from +and +a +of +fad +pended +trouble +which +ing +may +government +in +times, +property +fell +the +purchased +pensiveness +of +citizens +and +Bouliguy; +should +nnd +Appoqulnlmlnk +the +most +but +landing +as +court +to +principles, +am', +witness* +taining +striking +right +or +redeem +the +that +tvith +reputable +against +take +and +and +daughter +other +whole +the +doubt, +one +do +of +Ladies' +big +household, +er +nn +for +own +or +mall +our +alleged +deny +is +explain +once +the +of +administration +; +other +that +mai +time +street; +my +his +the +cial +the +whitewash +this +by +way +buying +whom +best +measure +where +boy. +Queen: +lien, +In +of +of +urable +her +over +were +a +tlie +pro· +KICK +tho +to +fair, +lot. +to +special +matters +solely +the +be­ +o'clock +removed, +Shechem, +the +for +sperik +inspector +with +unclean +find +and +Into +had +mediately +the +passed +also +Peace +carries +contests +without +pliant +the +firm +be +understood +by +cash +and +that +time +coat- +Rebellion +with +into +trainmen +her. +us +his +house +we +tinctly +should +Mary +Suuday +som +who +variation*, +:«u +Zealand, +spoke +repairs +the +not +cle +makes +not +The +facturing. +that +day +Lord +remarked, +party +Pattern +the +It +this +perplexed +thousand. +the +if +them +of +endured +But, +dispositions +whether +frightened +dur- +high +if +magnificent +the +Stern +guards +gain. +sensibility." +Jonee' +Bluff, +or +the +naval +miles, +big +heartier +L. +nalaal +and +of +ro- +at +serve +?arolina, +and +room +liene +failing +acquisition. +he +No +at +tear +fact +girl +y +what +done +the +Reporter +^. +it* +turned +III +c'hurch +no +16®6 +found +tho +interrog­ +what +Colebrated +Pearson's +so +has +Immediately +of +report +voting +prevail +fund. +me +with +vo- +zales, +tial +Brat +Tne +described +behind +fierce. +by +not +ideals +with +a +.ttorca, +a +buildings +proudest +and +some- +not +two. +t«lng +revised +SDOUt +of +full +as +desirous +and +th +by +the +would +ninth +George +ibankers +have +ofNew +also. +Diacuwa +rjiunh +witneaa +party +his +in +and +be +Counsellor, +ways +tiine, +can- +Martha +barred +people +whose +is +be +cent. +by +by +predicted +LaFayetto +sump- +their +rapped +matter +A +ferent +people +Vice +carried +last +to +seems +cuted +government, +gether +men, +was +our +will +to +take +question +and +flowers +of +shall +of +few +. +a +both +Root; +their +or +the +right. +viitli +tried +because +C +said +devices +should +Messrs. +"When +Delaney, +to +a +bales, +region +executive +is +eifoct:.On +tho +and +accu +Heights +east; +are +attrac- +ilngers +eibir +payment +Congressional +quarry, +along +he +the +the +and +Many +\ +proceeds +ways, +was +by +be +and +of +perfume, +of +for +the! +foit +on +haa +these +The +wbieh +H +instruments, +along +would +day +the +to +Some +proposition, +tacky +the' +in +from +James +changes +month, +a +them +The +below +Monday +safety, +all +Nueces +the +steam +a +beastly, +the +proposition. +to +return, +platform +building +most +to +city, +distribution +eral +of +take +smile. +and +tho +bilva +he +rail +ed +in +in +of +dealing, +faith +have +aforesaid, +or +property +growing +Svrtip +suspicious. +whose +of +ol’.icial +the +and +a +more +of +books +the +of +her +when +about +other +on +life. +of +los +tuskers +opportunities +to +is +Europe, +ing +eral +unices +this, +do +on +tbe +most +finally +thua +serious +crops +selectmen +scalped, +of +such +south +to +were +right +just +this +be +tra +never +school +t!ar +city +hundred +and +was +Argentine +as +eeason +position +and +ordsr. +also +that +basin +that +in +bow +York +in +in +used +And +the +Bangle, +ge* +in +French +1 +in +ble +vote +time, +eatvioe +OF +where +on +in +rotection +condition +Ohio +dis- +and +ple. +declared +And, +letters +the +3, +all +were +a +limited +and +Wishing +fried +tbe +deed, +the +quote +stale, +Administration +life +the +saloon +rector +sence +of +the +soil +and +existence +last +aong +stand- +firm +the +mat-Heated +years +Strecyf +lo +or +contracted +entire +years +iation +ergetic +York; +d +changed +rolls +the +step, +across +state. +minors +able +is +to +suffered +tained +a +wit; +hopes +which +shall. +of +as +known +to +tho +Is +af- +And +formal +shape +the +looks +it +close, +see +groom +innocuous +read +enervated. +and +for +in +temptation +could +three +next +Leavitt. +rd +ploughing +hit +interests +Hull +tile +by +foot +sacrifice +the +advisable +burnt +optimistic +wronged +seampered +none; +warned +made. +of +could +Not +open. +James +then? +nickel +not +particle +charity +irregu- +countenances +was +within +Thirteenth +itop +igo +to +town +con +ject +the +the +spiral +b +West +when +tc +memory. +polit¬ +they +Uniu +are +Sothern +on +self, +February, +liked +wood +color +to +by +the +for +is +tssociate +sold +went +tion +frequently +stimulants +mounted +about +tho +had +building +announce +eat. +at +when +chemical +varied, +stranded +dust +one, +soon +in +fram +rcturns, +on +Library +S. +J +Over +and +qualities +An +Ray +his +sideration +tricks +be +nnd +stnk.ng +had +be +artistic- +Dr. +And +ofUcera +republicans. +re¬ +in +American +importation +id +escaped +How +corrupt +that +words +Marquette, +liue +l< +field +that +the +drew +No. +laws +Idea» +a +within +plants +people +he +district. +I +unwholesome +includes +bills, +that +society, +walk +being +them +cleanliness, +expensive +good +Charles +220 +iuncral +may +some +ly +departments +at +to +with +Swift, +the +because +comes +of +for +ruined +notice +the +line, +the +the +would +foreclosed +It +and +information +line +vehicles +interests +families +only +bid +traordinary +that +Czechoslo- +the +he +zens, +of +In +heavily, +the +the +of +ao. +portion +in +howling +general +In +were +this +the +with +way. +the +thc +combination, +save +resembled +yearly +torder* +Francisco +today. +to +aie +by +of +there +ln-fore +happened, +the +adapted +bride’s +these +gratifying, +feed +) +blow +most +which +for +to +crow +administration, +said +wide +no +end +ab- +whir. +could +aud +years +to +one +11 +interdict +township +establishing +town +live +to +all +and +enemy +ROME +Whereas, +The +batch +W. +the +Mr. +we +Now +., +specifications +much +in +Marshal +of +ocean, +and +Allies +re- +from +and +which +to +for +sin- +torn +said +for +to +greatest +of +school +the +appointed +by +and +and +plain +said +to +used +Church +perished. +sister +At +the +election +owing +part +for +carried +'conceit +full +advise +the +two +has +bat +one +lot +of +the +the +oack +have +hleher +guaranteed +warehousing +tho +so +is +to +the +tho +such +oi +urged +L +tire +havo +a +Courl +annum, +as +liars, +honraole +him +fully +and +the +twenty-eight +well +upon +the +the +assistants +ami +pay- +is +j +But +such +person +the +Sir +cotton, +sod,' +If +that +if +last +on +rock +of +of +pick +them +of +Into +other +in +to +Price, +have +in +upon +township +paign +floor +reader +coat +could +ness +It +State, +course +construct, +true +l*lh. +pronounced +they +oceans +defendants. +sales +just +having +when +the +years +Cooke's +sun, +red +personalities +alininistra'or +munilar +was +Among +likely +to +shelter. +of +supply. +the +petitioned +all +awakens +convenr +much +to +E. +leas: +The +concern +at +it +eligible +in +and +state +Keck +lowest +well +ters +General +sup­ +present. +following +telegram +streets +results. +Hoxie +Deep +oold +of +In +Juno +of +I +shaped +he +tnembora +his +besides +lie +UK®23c; +stormy +the +the +misery +our +Baltimore. +all +et, +tiup, +be +examine +of +employer +aeot +increase +In +see +your +Brainerd +ly +at +Chattanooga, +of +and +suffering, +juiciness. +charms +made +darkness, +of +promotion +to +themselves, +S. +chief +and +what +a +his +feeling +public +in +ward, +tho +tie +woman +to +wo +a +years, +matter. +the +d- +caused +at- +$3,500. +a +oil +pipe +to +and +For +to +and +1>. +whoso +his +upset +controlled +them;tb< +rear +in +bounty +of +executing +heart +1898. +sold +full +the +an +mort- +The +business +in +larshal +wine'with +the +herself, +the +that +any +closing +select +H +who +usually +Coal +cases +alle- +As +the +oach +in +trally +a +Democratic +one +pros]>erous +Revue +of +and +are +cash, +twenty-live +learn +wrist +day, +which +ways +cereal +of +by +about +written +of +is +Johnson +rule, +the +about +1867 +item +standpoint, +advantage +bills: +white, +was +work +tho +star +nlshed +reserve +ruction, +little +went +cutter, +best +dispatches +Barksdale, +were +be +that +It +in +range +ncfilted +Hun- +exception +election +ling," +ol' +of +Iliscomplexion +which +n +but +mt +determined +is +gold. +We +benefited, +a +quarter +the +the +restoring +lady +of +Metoka +o +this +agent +would +will +digs +were +of +leturned +can +only +This +permit +the +much +in +of +ranch +partment +that +achieving +and +this +aouth +Very +lie +stand +justdebts +the +will +tbe +presented. +both +themselves +level +out +the +such +^he +as +it +that +the +tree, +one +Point +and +hundred +is +himself +i +God +get +In +TowDsend +pensioner; +from +hay +testify +magistrate +laid +and +that +don't +required +as +learned +still +of +disagreement, +well, +is +well +revolution, +leap +each +gray +would +Cause +statutes +that +regain +I +army), +pounder +to +ideas +miscellaneous +that +increase +vention +Lb +chant, +Those +release? +great +to +add +be +this +was +linseed +greater +their +personally +Pvt. +I +Bond +the +knew +Feel- +the +has +harness +the +carried +they +as +than +the +Gen- +by +employes +a +! +the +however, +up +He +seasons +prisoner, +vessel +with +said +corporation +the +Light +wharf, +the +women, +Yet +Gen. +by +fail—but +then +the +We +who +of +in +all +this +yankeess +dato +his +but +no +These +not +a +in +boat +recent +toward +that +city, +curredin; +bring-in- +the +8. +flfty-sli +kiud +the +Mining +f< +to +in +the +pay, +tha +that +of +the +themselves +or +their +he +pas- +pointed +by +his +thence +pine +House +Dcmoerata +arrcstod, +the +the +and +truo +been +b +in +racafBise +number +sido +clause, +w.y +arm, +this +at +will. +ship +years +of +hearing +N. +various +of +It +sprayed +walking +th.« +sessions +shapes +out +little +Tribune +the +the +is +tracked +and +my +had +a +The +12 +so +faelory. +toward +ental +Public +to +than +h +diearm +by +stockholder +establish +number +city, +tcs. +the +of +Auu +on +a +thence +local: +never +the +1 +of +the +fritnd +Stone. +professors +the +and +Jones +germinate +her +do +Is +most +mean +of +to +a +Dr. +the +the +own +one +Mr. +gei +tion. +direction +and +above +one, +doubt, +riant, +not +to +custom +on +time +the +works +then +Tbls +un- +dl1""!!, +Western +of +by +saddle +easily +up +brings +to +1 +be +the +and +but +of +This +not +and +for +Thaw +has +the +where +the +detriment +the +called +Hawley +the +time +pithy +couple +tell, +all +them +the +today +them +the +Mr. +elected, +rode +of +in +lifted +The +and +difficulties +L +Rome, +waters +has +Beef +less +sons +put +564, +in +as +.»ip;.. +to +miles. +at +in +fine +home +a +November, +Gleaton, +tls* +I +purifiers"and +the +the +allowed +a +State's +on +year +in +the +March +war +Illunie« +charge +Brooklyn +enough +as +straightening +SI,OOO +people +land +pu»pose. +to +heart' +assistant +all +and +to +influence, +avenue +Union, +sad +permitted +weather. +expressed +is +from +pale +we +exam­ +tea. +the +Maze +is +boys +room +she +and +instrument +of +silk +i +the +M +be +battle +was +president, +of +of +to +Spanish +their +or +object. +Stanley, +hotel +the +to +of +pay +his +the +commission, +without +a +gentleman +spent +will +Jl +t> +ac- +Britain. +who +tions +dollars. +home +ia +built-in +a +tion +to +a +missions +the +twenty +wa» +61 +officer +attention, +work +if +appoint +adopted, +dealt +houses +will +i +business. +any +The +the +the +vague +Love- +as +have +the +product +Wolkovsky, +relinquished +dreams +accessory +500 +to +trophy +oath, +Cole, +rods +north- +diseased +it +the +since +out +was +water. +bare +for +doubt, +a +in +dered +Increasing. +be +President +alao +than +Ifgaa., +would +with +sixteen +time +each +John +it +has +Lieut. +it +@ +call +smaller +tho +to +can +whero +to +that +so +the +dren +little, +will +the +of +beiig +three +hurch, +lished, +ate +Smnaaarad +1 +was +disease +tho +be +ea- +bcnding +trade +cent, +sleep +Virginia, +the +the +wise +The +28, +conducted +probably +but, +of +back +seat +Iho +of +room +species +Department +those +Red +in +wero +fresh +disdaining +otherwheres. +ing +perfect +In +than +control +to +Bitters +light, +one +her +his +Fichus +granite +hundreds +embers +This +down. +seeing +1 +to +able +ht +mention +region +being +to +to +large, +distant +Hint +tho +forts. +it +the +the +But +dreadful +hogs. +it +rommltted +31st +stone +and +and +and +gave +butter +dissolved +bottle +affect! +the +in +$ +like +cost +to +and +slow, +you +fuuntalu +C. +the +court +sharper +and +he +It +tea. +every +cap- +Mary* +more +to +coi.slltulcil +coming +rccalling +of +I +be­ +"furs, +the +over. +casional +tells +nedected, +Marsh +business +Con- +his +gigantio +the +being +of +Neill +the +Pink +Physicians +Earth +terrlWe +docks +him. +our +of +for +white +tts +in +of +for +counties +righteousness" +tub +the +ln +export- +arms. +qualified +and +for +fee +forth +bears +hope +find +denunciations +but +And, +pond, +Is +of +last +unusually +receipts +the +tramways +several +the +better +with +would +the +been +ao +»eitel». +Labor +the +The +when +definite +as +81 +reaulta +stantinople. +own +Richard +lor +them +that +the +a +authority +has +on +will +desert +makes +or +to +the +early +county +1 +in +inevitably, +us +regard +approaching +it +worked +larshalt. +will +On +she +merited. +one +transplanting. +hoppers +motion +thnt +the +take +cial +not +publication +ation +for +1 +whole +a +son +night +(reat +tbe +J +scribing +to +Cohen +10th +the +less +not +to +in +coal +tend +of +men +consequence +upon +California, +kind +even +accountants +fired. +l/ninn, +of +fight +the +sented +about +1 +limited. +The +desirous +w'ere +tbtieuiente +the +lawfully +tailor, +bill +frequent +ri +been +this, +There +packages +observe +tbe +railroad +that +that +the +tlfy +law. +frames +from +ccntlydn‘crtcd +had +by +pries +These +and +hard +glowing. +must +2,79 +vrere +sand +Details +Haskell. +a +story +the +he +their +my +the +artesian +I +came +next +few +ning +States, +replied +children, +was +all +problem. +should +moral +St +away +is +for +so +a +(11) +used +w:d«: +lower +whole +the +a +lilt..11 +that +tions +to +allowed +of +railroad +county— +a +to +Williams +higber +into +Boone. +be +reason +other +EACH +for +real +national +helpess +this +and +are, +free +ones, +never +such +silk +Allthat +Chamborlain +parable, +next +only +find +this +the +shoes, +the +west +North +and +naif +dlil +Mrs. +to +thank +rci +possible, +the +banner +only +the +may +Other +peaches +be +to +et +and +right +thing +If +years +then +do +but +It +k'*.stone, +of +IJowIer +to +mat +i* +is +the +and +7i +of +leg. +on +she +the +acted), +has +years +make +thesanguinary +the +a +1 +five +Investment +him +at +taken +BNK +sadly +mo- +he +good +been +city, +lint +street +public +for +Another +larl; +the +vested +erecting +ing +good +jury +on +one +Is +com +community +the +Ad +has +ported +piers +therefore, +called +John +WI1. +grain. +Osborne +of +the +A. +himself +modification +But, +lo +aoath +Mackey, +siilisl'y +Jas +clean +made +BBeflia, +his +trial, +comply +the +. +and +immediate +of +distinguish +have +It +ment +erring +baltic +mod +east +would +from +made +sailed +first +A +le +procured +nest +in +of +friends +the +of +by +who +guilt +which +character. +of +are +diciary, +. +fellow +political +Press +h«> +17 +now +compre- +above +he +tbe +tourists +made +dls +is +grasp +that +Xeurakia, +Is +sad +»ewall +mako +seclusion +August, +are +rate +whom +there +tion. +making +wide, +of +whose +very +with +finally +away +in +the +- +continued +by +conceded +ot +step +is +o1 +to +.11 +been +Catls, +is +cold, +the +was +way +Section +tile +and +the +remarkabla +and +the +ago +school +and +Kcv. +and +at +to +of. +could +lew-ou +carried +look +and +turally +of +"glorious +just +trance +tell +appearance. +good +to +25; +not +right +said +Con¬ +no +the +few +their +distrusted +has +in +Mr. +as +motherhood +toward +ists +has +their +materials. +akato +struck +new +If +is +on +electioneering. +ot +perches +his +lute +•States; +Sooth +revenge. +reluctantly,' +more +snch +bers +without +a +a +soon +It +problem +manner. +tbe +gave +on +of +find +and +to +h- +of +the +in +to +take +one +about +members +of +learns +will +1«99. +his +Heck. +evening +polls, +Mrs. +Block +motherless +Fritz, +the +impossible, +will +of +Ettien. +crop +and +different +right +real +G. +tho +the +29. +a +See..The +tion, +telephonic +be +Sunday-school +been +note +and +a +follows: +is +on +peiid +to +at +(or +fact +which +deducting +probably +Linked +board +the +Howard, +an +convertible +These +they +be +poration +coarse +from +Private +every +esteem +oilier +the +are +tj +by] +taxes +trusts +of +cxartly +of +snowy +Intensity +with +accompanied +980,000; +that +utter +much +finger +bed +At +longer +the +before +and +feet, +the +shaft +will +trailing +for +a +St. +and +Pittsburg. +miles +southern +which +call +together +Wait +han'some, +wore +as +tine +thousand +The +lying +evident +but +to +of +ad- +of +bimetallic +ofllcors +of +an +water, +culture. +for... +much +be +the +of +re- +to +time +with +that +matter +as +of +The +willingness +do; +ing-looking +dare +In +thought +sun +While +every +wood +to +will +trains +never +attacked +as +settlements, +i +a +it +full +great +is +the +I +them, +the +says: +has +of +Senator +Soylla +and +at +directly +Jk +they +Mills, +plans, +placer +pistols +the +the +of +each +that +for +its +to +with +it +visible +the +a +Lot +however, +one +stand +serves +the +believe +do +up +all +of +actor +the +herald +city +north +sells +of +the +rooms +The +of +as +described +tell +allies +ruffed +young +bushpinn +the +were +he +permit +Louis +such +carried +against +hnven +of +his +much +its +as +show +25,000 +ker +hands, +had +opposed +fraudulent +the +freight +subjection +In +I +New +altered +and +by +the +soatsmplatUM +rebellion +of +the +so +on +flBhery +credits +in +old +doing +the +the +it +with +; +by +him, +the +judgment +reply +. +gravity +a +The +dan¬ +in +most +it +latcr +must +long +most +to +of +half +contract +in +prece +in +when +Kmest +and +position +wen' +far +a +gowns, +while +persuaded +trust +would +by +work +will +are +place +Supporters, +Bank +many +with +was +ni +occupying +In +face +our +has +be +is +of +the +mortem.. +England +C. +the +rreatly +been +dress +A +going +but +successful +the +soon +the +good +publicans," +2 +world +for +a +exchange +been +her +hope,he +late +"This +2 +least, +it +ine +UiaUwar +larged +"rticiitlly +north +(Ohio +58c; +lode +one +verv +hours +Connor +for +already +oughly +debt +criminals, +of +and +be +tboee +through +plain +steadily. +as +Thursday +tiinnpp +their +It +of +rheumatism, +dropped +for +much +business, +says, +Sarah +caliber, +insertion +the +was +and +men +Honesty +got +subsequently +fol- +it +extremely +importance, +with +was +Point +Hamburg, +The +have +party. +several +Americans +during +to +ty +at +men, +he +of +1, +and +comes +of +his +atisaslj +with +g.tl +for +the +for. +by +though +ami +monly +in. +although +his +lived +it +give +supposed +for +lover +much +jail +possibilities +hut +foot +ing, +Iowa +Sailed +bottled +passage +require +this +eye +quarter +We +on +all +Or +were +thoM +of +have +disturbed +contain +He +Qectlonal +the +and +the +tween +that +be +file* +an.' +out +Two +H. +and +the +and +and +our +fifteon +have +soldiers +that +subdivision, +church +are +man- +country. +and +accord- +the +agreement +poor +Thousands +man +general +this +to +as +heads, +July +It +A +good; +I +line +myself +a +undertaking +qualified +gat +later, +if +Cables +Mme. +the +or +this +(ailed +Malca, +with +overtaken +of +O. +testimony +and +be, +the +be +four +old +also, +part +well +a +in +foi +under +com- +In +move +more +Acres +and +Hence, +similar +do. +and +Revised +them +shortly +bill +cover. +as +hat, +groom +ments +people +cost +any +pro +said +the +walk +kindness +Congress +Dcs +1.13, +S5, +thereby +quarter +thou +surround- +150 +Being +sistance +that +of +obliged +corps, +penalties. +Bjoarlahai +Pennsylva¬ +The +instructions +it, +bade +The +money +richest +The +to +regard +jury +and +is +same +atiout +Pacific +reoommit +will +the +support. +disfranchised +business +pipes +handles +its +he +the +had +la +1,215, +said +-Mrs. +the +of +driven +$24.90. +in +business +st +running +slake, +Department +is +A +erection +great +paaaenger* +Bt +before +pink +euonj_-h +neartea +those +forty +thing, +the +the +interest +Agassiz +emigration +t +Sr., +didates +addition +no +gas +such +met +without +live +of +with +that +will +Roaring +most +deeds +the +last +guns +"say +failures +feet +to +and +up +one +the +crimination. +one +thirds +was +ot +we +it +the +weary +great +Tony +to +The +work, +ditlon +persoo, +smites +began +on +under +with +famous +to +relieve +and +rebels +Block +be +nearly +fornia +year +regularly +was +and +Road +of +bad +and +tho +\u25a0iriying +Indus¬ +200 +thing +the +day, +said +population +- +now +her +fore +purchaser. +road +01 +policy +officer +for +for +or +his +that +I)ewitt +rhe +money +these +domes- +ever +box, +The +are +knowledge +'fainer +while +or +may +She +a +he +W +Amos +now +all +he +Cape +enrment +jury, +in +been +madein +or +where +were +who +Jackson's +ahsurdily +the +Ybanez, +bias +property +their +prayer.- +his +this +said +herd +to +to +tint +New +J +up +rather +for +vicinity +fettle +been +akvata +introduced +to +lips, +year. +and +except +of +ex¬ +general +City. +Mitchell's +and +pay +so +and +of +and +his +happy +Re¬ +B. +Should +shirt +certainpower +all +by +to +grain, +with +the +and +State, +the +as +Mme. +by +gaseous +organization? +placed +of +commission +BBB +tin* +time +good +shall +health +I +Lucien +hearsals. +church +choir +Ihey +days +emotions +the +little +that +Orient +company +sun +aud +a +Iloldnnc +well +ii +fairly +water +plain +city +offeuar, +Myrtle +F +to +Smith +is +It +to +so +the +ment, +for +to +Far +tween +the +is +a +avaUable +before. +cycles; +and +ernment +shrinking +all +spirhuafoniuded +was +• +and +<> +und +shipment +from +as +one +energy, +cover +with +would +same +of +fortlie.se +see +the +was +48 +Men's +.rise +place +to +said +horrid +matter +the +to +Mrs. +the +in +their +First +dersigned; +and +members +a +dollar +said +to +active +rested, +farther +her +killed +in +Canandaigua, +and +New +the +stock +republicans, +terminated +to +sale +it +before +threat, +think +waa +mighty +tbo +discouraged +2. +projected +extension +Now, +way. +te +the +the +rant +the +right +I +has +causes +I +of +found +verity +the +that +their +asked +mado +and +Kitchen +in +scene +lost,that +whose +vantage +potent +far +instead +der +ed +all +for +connty +cut +and +cups. +class +was +would +of +country +active +by +- +i».»nk~>, +munication +by +in +light +om +is +bottom +Understand +taxation +they +Sharpie +ger +too +north +paid +its +men +have +has +is +guish +up +M +4, +the +in +reqolution +outside, +in +paper +recently +thr +Minne- +such +.'al +not +works +benefit +A +unquestionably +it +Axtell +said +virtual +top +has +vote +all +er +distribution +pany +tell +considered, +meet, +from +bet +until +ataed +to +suit +It +the +banks +tplcuoua +to +of +reputation +the +truthfully: +vote +invariably +and +ored +intend +that +and +talk +times +the +Colonial +Ok- +> +and +there +foreclosed +of +and +nent +another +of +8ea +sugar, +demand +of +The +ceived +only +donkey +only +that +room +accurately +has +where +/rut +gracefulness +advance +of +driven +Mr. +shall +wrong +other +hereto- +it +as +this +word, +R. +Babbit +a +most +many +patt +things +unquestion- +8,000 +described +tender +letters. +consecrated +dawn +sell +He +provements +off +a +to +its +to +women, +after +mass +friend +same +inciting +claim +might +on +own +all +spectators +General +is +_ +presence +W +owner +that +has +the +In +is +of +fighting +non +of +Mr. +the +minutes, +neys +by +men +sections +so +grains. +It +the +school +to +inis +hom +hung. +(8%) +at +of +2, +of +you +d +with +army +" +design- +basins +;*i +stead +your +Mr. +sign +‘ +that +mold +equal +made +material +the +weeks, +bead +even +merce +Kansas +that, +all +Reeve +the +woiild +on +sc-nnilnls +how +present. +Mr. +long +The +any +proceeding. +of +as +formly +Soaps; +Mr. +nnd +finally +88° +iu +ft +of +toward +receipts +staggering +children +He +a +that +haviug +He +3 +eight +nnd +tains +gether, +told. +vidual +with +comer +the +the +for +district +legislature, +future. +length, +further +Probably +wide +dice +wonders. +railroad, +the +of +clined +of +its +Hamilton +mo +not +attect +tne +> +next +does +Oats—receipts +subject +far +wife, +but +men +with +barn +the +Wadsworth, +favor +40-yard +Carolina +olive, +be +connectiotn +and +Hoignun +distinguish +S. +thn +It +or +.Orange +Mrs. +he +given +thr +always +as +again +with +honest +eight +Abt. +against +adottioaally +to +an +about +Milo +the +and +ordinary +oath, +and +rises +to +for +I*>o +and +Mississippi +body, +does +May +cattle, +a +dismantling +subject, +were +Range +respect. +is +ami +aliovc +One-tbird +sound. +cent +ken +that +was +the +0. +the +the +very +- +and +naturalists. +dollar +them +It +possible. +a +Initial +be +be +weighed, +which +lo +be +pagan +up, +and +from +sands +the +not +before +Lewis, +reptile +ri­ +the +fortifications +cf +girl. +persuaded +strong; +row. +Leasowes. +un- +seat-of +side, +an +are +come +you +benefit +ex +was +back. +testified +the +obstreperous +thoy +Science +so +bees +made +were +stand. +irtg +to +that +by +Roumania +the +uiiifactiii +missed +are' +tained +disponed +TU +Huilier +minister +gratui- +hotel +Central +be +missive +curled +no +at +entirety +needed +of +Scotland, +said +profits +has +of +. +on +primaries +on +and +Brussels +The +her +buy +ing +in +dull; +east +natural +black +sharks, +country. +as +quire +&• +amendments +that +of +grandfather's +months; +ing +of +thus +....... +are +where +of +per +000,000 +walls +the +C +nation's +our +a +taken +much +person +and +Their +way +Thompson +t +taken +foreb^ad, +and +and +Siberia-their +and +replied +out +wastes +of +So- +Burk, +E +with +temporary +railroad, +llanford, +throw +P. +not +who +spoke +has +said +lino +school +indebtedness +visiting +about +with +Los +out +him +the +Paine +of +a +r:ght +told +Edwin.. +and +laughed +are +succession +endeavoring +Meanwhile +sonal +Hawaii +toward +day +inches +The +frankly +that +to +Times-Advertiser +execution +and +a +of +Mrs. +ter +141, +and +C, +small +j +for +filly. +division +attractive. +ns +of +recognized +denomination +that +aud +abil- +good +can +ono +Mess +they +09*; +at +passengers +safe +permission, +condition +30 +disposition +such +a +Christmas +of +Tom +making +pota- +Little +best +dition. +They +of +issue +this +limpid +stillborn, +Again, +shore, +harbor, +be +ing +larve +be +is +Jim +s +the +would +the +cuff +form +22, +for +watch +the +each +remained +Just +skates. +more +of +raise +revenue +M. +on +Assignment +of +Miss +the +of +one +evidences +display +naval +a +will +of +investment. +public +erned +retaliation, +papu:. +Chicago. +cotton, +of +six +miles +and +national +and +course, +Deputies +act +in +for +to +a +informed +to +recipts +or +nice +W. +his +plate +hnll +lutn +ago +defined. +court. +at +perpetual +considering +than +loyal +get +Sabbath. +of +nrst +parties +he +pop- +camp +cdre +gained +fundamental +and +very +of +Frontier +they +By +when +pounded +at +what +If +association +of +f +too +in +too +ground +see +W +the +these +whom- +Admiral +tor +or +appoint +in +40 +year, +P +down +Frankfort +Illness, +England +the +mixing +eeremontaa +State +marble-yard. +storm +tle +oper +when +tilul +and +by +George +for +the +sto. +weather +heard +should +know +continue +*t +and +and +A +stream, +into +knocking +the +edies. +in +to +had +for +to +family +smelling +by +giving +the +whereby +that +hesitation, +in +a +therefore +maintain +Gertie +which +well +President +Is +completed +unusual +to +this +spend +time +collecting +paper +accompany +be- +Watermelon +that +excludes +Mr. +bis +first +a +the +under +in +Ivy +nations +It's +Each +far +holdings +of +modest +just +been +lamps, +of +the +said +parcel. +term +and +and +Americans +ham +executing +are +Patteson, +fleld +bacley, +tbe +the +the +and +of +privilege +Mower +little +wind +D. +by +of +could +pa +is +on +and +of +new +First +children +23,24,25,20 +at +fsc; +it, +soil +harrow +in +that +assurances +to +had +pas- +In +and +fainttness, +of +the +without +decidefi +modicum +1916, +from +iinoiu: +certificates +tho +disappear +ever. +ennial +hence, +mnrnmg +Virginia, +desire +oraoge +many +but +my +that +a +play +pay +water +tune +nds. +for +throne +In +Ile +that +and +to +will +if +last +Ean +task +secured +different +Is +public +stoves +of +but +doer +office +garian +tnit +160, +Court, +tion +ai'i'- +have +side +type +existence +attorney's +ask +must +all +f +a +fo +florins, +of +ing +a +by +said +do +we +Commissioner +took +be +t +here, +or +nnd +this +Federal +ond +eould +In +special +further +of +shell +good, +in +to +creased +with +for +where +Gage +ana +to +and +to +Lathrop, +in +President, +polity +the +ed, +rill +neck +notes +and +the +A +and +home +serve +sugar +be +their +or +Repre- +to +essential +comes +with +District +this +who +the +town +ten +was +the +the +to +drilled +the +as +never +the +in +the +fingers. +and +that +proceeded +language +are +matter +lence +number +at +the +it +whilst +with +you +street +stead +the +voyed +rled +It +would +legibill- +his +offset +official +uses +Utroti +itself, +cotton +back +the +the +and +rhoumatism, +and +eight-inch +of +Twenty-second +claim +I-And +immene,: +It +To +Injustice. +old +statistical +lina, +operator +further, +of +not +declining +ago, +Eng- +the +so +out +fair +Wcaverville. +part +and +denteat +ry +the +unbounded +of +The +disclose +pi«»s +defeat +thanks- +advisory +a +dersigned; +formed +Seymour, +wood +in +white +the +was +advance, +missioners +the +been +Ks. +crude +a +see +Mose +induction +the +suffragiat. +holders +It +Ronald +shower +j +range +executing +not +through +ap- +aran +anticipate +quiet; +understand +him +rhis +positive +of +'many +out +them, +a +Mtm. +Queeerly +di +travel +at +Wroth, +Unlted +Adams'. +of +Daniel +the +Imported, +ex- +all +outside. +New +1921, +tiara +almost +lists +«tn +ure +the +of +found +i +can- +months, +to +ville +so +nations. +of +Henry +the +the +think +field +with +elec- +contractor +the +as +ban +much +body +scribed +Convention, +the +he +F. +camphor: +me +border +procur- +the +broom +last +from +men +est +power +character­ +examine +it, +Flaherty, +verdict +as +to +husbands. +did +to +the. +south +as +of +reading +of +151 +soldiering +Individual +a +as +desirable +nothing +and +steadily +it +part +$25,000 +not +sition +and +daughter +was +the +on +Roanoke, +Dancer," +bill +manner +being +the +It +infinite +his +two +some +went +of +look +of +sufficient +of +to +have +a +black +in +present +its +wait +trick +man +anti +much +remain +way +was +church's +superstition +in +being +easy; +in +alone, +econ- +most +marked +that +left +themselves +of +Boers +(S. +name. +half +the +in +in +20 +rrom +this +attentions, +proper +f +in- +and +@9; +loving +and +fancied, +Shall +porch +with +said +bill +and +sale +the +«nee, +regulate +larger, +pounds +Noah +only +posing +The +us +Lamoric. +it +in +po¬ +mate,thewonderful +aim +office +a +19% +any +, +his +ns +desk +the +the +half-holidays +Nftcong +to +tegrity +Raven +a +ar'ter +at +an +and +if +of +wilb +gratification +Tibbs, +things +know +ed +thority +From +said +action +the +sug­ +ment +The +and +that +up +as +other +per +as +and +butcher +there +by +seen +following +an +the +agreement +in +, +of +Caster +and +timber +down +96, +to +marked +main +('. +than +described +piled +gunpowder, +Twice +at +is +run +& +to +fall +of +the +boarded +consecrated +jammed +at +approximately, +inserted +his +he +If +cause +thence +seized +these +fruit, +to +old +Rebels +In +well-known +The +case +being +white +side +so +too +year +it +WHICH +tiently +lowed +paid +of +parilla, +thus +so +moment +ten +to +it +at +and +of +ment +on +might +theii +dial +the +75Jc. +subject +property +232.50 +sand +veil +Douglas, +Spokane +no +Namur +nearly +source +train— +from +few +drift +last, +yet +proof +of +as +(,'ork +north +The +full +. +the +parcel +not +been +so +to +I +“threshold” +day +W. +p +in +ago. +mind. +of +Boston. +have +such +extended +way +the +reached +deficient, +dead +to +yearly +get +by +Miss +inscribed +will +pains +ing +will +distinct +Is +I +at +formally +steers +In +to +In +hric +des­ +feW +force +just +hardly +days +as +and +mouDted +re¬ +which +the +saturated +Karl +had +timenf +no +the +for +as +payee +held +headache, +tempted +the +possible, +direction +fusion +respond +friends, +both +800 +he +land +kinds. +orders +they +si +at +answers +tick +and +is +fact +-ruel +ner +2 +the +getting +the +decides +did +the +saw +plished +enabling +other +of +payment +and +fnhtb-okeit +road +attractions +good +away. +flowers +of +base +as +were +the +of +Herbert +say +Lucy +Four +and +acbool +which +sincke +He +equal +is +them, +the. +Seaboard +dwellings +all +the +that +si»- +within +quarantine +Bayly; +a +required +and +this +Mr. +ful +of +attorney +the +morbid +mother +fell +of +overlooking +and +least +de- +every +one +old +earnest +Buffalo; +laws +cially. +had, +A +open +casts +to +next +of* +cover, +of +country, +Psiciflc. +mer- +awakening +weeks +curiosity +Inspector +as +after +City +a +clared +chaplain, +a +is +ids +that +as +tive's +this +Hawkos +you +always +ing +Mr. +something +are +shall +time. +Conrad, +tho +much +ployers +midst, +ant, +follows, +preference +bond, +being +Mrs. +« +and +n +What +Ihe +uiay, +Uxed +tho +The +to +"JO. +drinkcrs +her +message +incon- +I +ind +of +mile. +Eunice +by +one +vile +panies +do +dislike. +25. +avoid +theyve +votes +district, +a +hard +ped +in +and +saying +a +Sharpsbuig. +a +let +desire +he +He +thua +and +the +great +be +If +restaurant +giving +Sunday +that +their +yet +of +seats +been +intolerant +the +Tbe +a +Angeles. +Satunlay +streaks +the +mythi- +test +Mrs +riven +of +did +tho +into +agents +Adagio +jr., +said +But +Elizabeth +he +has +properly +Grange. +operations +nctt +little +worth +beatis +up +it +lesson, +and +was +blcck +hope +ed, +direotly +and +and +would +was +continue +ether +trunk +to +pre- +an +a +facilitate +to +the +bom' +Lots +lo +all +States +of +Oar +bo +than +her +the +I +Virginia, +her +condition +the +ranging +lantic +on +siroj +such +that +they +no +County, +S. +ten +we +of +there +P.rish +difficulties +Mo., +water +proximity +Crocker, +proximity +The +peak, +of +other +of +$15.00; +to +as +old. +the +Itis +Tf. +In +are +her +to +of +was +has +weight +peaepeal +about +Louisiana +number +Xew +a +the +led +and +assured +This +with +much +of +dollars, +down, +relieve +of +away +ho +car- +principal +money +The +1st, +the +question +tho +just. +the +deoine +public +of +erne +months +101, +flames +law +the +the +all +Omnipotence +why +certainly +wb?eh +beginning. +the +the +to +a +the +thos·« +will +proper +mined +1.600 +their +of +up +bear +of +hid +will +a +the +me +Peas, +to +front +J +ably +hta +of +the +voters, +required +telephone +and +close +have +know +support +tion* +it +ined +be +the +Territories +trucks. +of +5SII +still +and +who +hauled +of +of +and +other +person +bly. +rtant +tKere +cereal +whenever +nt +upon +it +tort, +fice, +will +passed +when +: +own +I +Galencius, +of +for +monster +at +with +13 +but +eyes +the +started +a +il'l +for +So +should +Alexander, +main +hour +the +largely +The +homes. +until +the +showing +prosperity +six +can +diplomacy; +line +both +ex- +of +audience. +Influence +the +o'clock +fillment. +consider +lost +other +forfeit +of +Hocking +popular +occaslous +to +the +May—the +and +wlth +could +insisted +is +is +famy +the +agement +equipment, +seven +the +the +uuu +occurred +of +oe +from +difficult +the +there +it. +putting +In +and +the +said +It +and +city. +asking +cy +fourteen +the +thiu +in +silken +poorest +by +rods +1 +land +i +tnat +his +conveyance +ia +world. +under +Jersey +the +religious +by +the +thoroughly +wheat +Griswold. +side +68 +chief +last +to +this +of +might +before +who +and +broken +H\u03b2, +seum +these +Kven +aud +a +order +radical +oxalic +value +it +a +(it.h +box +of +vote +the +Smith, +by +I +to +was +from +on +which +tht +the +an +purse +cents +felt +sought, +had +it +They +aid +that +mimicry +tell +was +flag +brought +free- +and +that +cription +the +harm +climbed +the +raise +Leddeo, +Deus +Beverly +examination, +instance^' +court, +well +some +Mile, +— +was +adventure +provisions +their +described +corpse, +thence +the +If +minutes +British +or +to +the +br +person +ducts +the +view, +Welshman.” +lot +a +I +for +City. +i +River, +with +aimong +the +the +for +by +longer +warwithtlrrnl +only +1009 +the +no +superse¬ +had +and +in +made +D +after +reprveeuii +forward +of +I +case, +strikers +up +the +as +riously +education +so +white +in +to +are +it +daughter, +to +by +»Mo +thme +without +in +Boston +unless +ap- +11 +were +good +to +inviting +ones +end. +fell. +was +somTTY +the +described +the +great +G. +into +reposing +good +ralso +in +apartment +sociation +their +generally +Ino +health. +pro- +of +432, +black +could +found +the +teach, +containing +cooking +of +fori +promptly +has +along +for +a +in +horse- +the +the +of +carbolic +the +with +is +love +obliged +dispari +we +pine +that +anxious +$500. +follows +is +by +simply +year +cnrrency, +change +nature +by +bad +in- +when +Us +interested +wealth, +Bo +small +v +1888. +to +Plaintiffs +I +room +the +on +been +pardon +followed +at +or +and +men, +oldest +doors? +Important +another +among +the +gance +a +based +V. +CKfcfrify +again +some +would +close +listening +that +New +wer« +the +INirllameiit. +tanks. +ive: +thut +to +out +when +weakest +as +being +Suppose +question +condition*, +profitable, +during +LearhagMr. +track +grain +any +his +of +the +and +that +days +>n +unprosperous +her +co«t. +resemble +uatuinl +at +price +of +Europe +in +Under +get +have +is +in +in +that +of +a +i +carry +the +BCHKDC7LE +by +wh.a +4.00 +It +against +within +a +the +and +chool +from +more, +mine* +primaries. +River +the +been +It +combined +reached +assigned +of +The +;he +the +may +Aui'rum, +how +this +murdered +feet +Great +vened. +owner. +rose +tha +trial. +bondsman's +and +in +to +thus +Wichman, +of +or +matorrliren, +the +thirteen +Yokes, +the +it +The +Institution, +committee +neces­ +and +which +soldiers +Taeadajr +bo +any +long +to +Herbert +softer +the +men +from +an +lor +of +ents, +to +disease +wed +get +excuse +in +general +their +34-100 +the +and +it. +on +in +alleys +dear +that +around +are +the +of +requiring +He +twelve +to +to +some +by +not +wrong +the +work +Pov- +froiu +weak +to +to +very +very +i +west +part +which +utmost +practiced +by +the +a +ex- +strike +ber +novel +maintenance +Lawrence +wawking, +the +who +he +and +the +of +tendance +assuming +Schaeberle's +youi +Cleveland's +curiously +every +place, +blacksmith- +the +you +pronounced +as +upon +The +quently +It +stuffed +up +There +give +legitimate +stored +the +3; +candy +the +the +bj-- +more +After +The +why +on +than +been +believe +our +close +The +State, +Oar +for +feel +and +The +Pendleton +the +The +each +Ctuche^ter, +you +ar¬ +or +was +1 +who +ceive +his +of +stories +from +their +note +cured, +possessed +of +premises +Cincinnati +that +In +md +not +sweet +join +time +arises, +tiuls +of +one, +taken +n +quarter +Something +said +iln +DOW +burned +nre +and +the +17.. +does +Omaha +the +warden +of +s'ovv +nights +proatrated +advocates +their +do; +lVa +exception +in +the +a +and +else +In +a +the +of +a +in +and +erate +Campaign +forms +embroidered +attain +laggards +been +$10,000 +2144, +Austria +tion +intolerable. +for +Misses +were +Crozor +at +the +your +chain +the +extend +transparent +personal +he +objection; +makcs +best +can +made +favorably. +that +-ubscriher, +that +to +end +I. +the +the +undersigned +eminent +it +tbe +to +Those +seven +a +ahi-ur +by +get +get +shoulder, +up +These +the +win +What +dealer +or +likely +ha.t +occupied +sup- +exer- +the +with +can +also +Bitters, +attempted +the +couldn't +People +long +being +. +arrived +toe +partners, +by +given +especial +is +The +women +School +ledg- +the +a +room, +printed +bricklayers. +doubt +in +feet +X +Bntler. +combing +HR +Mr. +something +the +raise +would +roads. +throngh +carload +prapers, +thence +of +In +the +present +vein +Fork +no +for +of +the +who +w +neither +his +resurrection, +aeres. +50 +out +Joseph +an +di- +not +The +wht +leni- +not +men +John +-of +which +two +most +of +miration +classes +looked +rate. +his +in +remedy +to +disburse +did +killed. +found +a +is +completion, +scheme +side +make +interest +up +. +andtuko +hla +and +two +called +tleyure +of +Inform-id +to +she +una +tory, +idle +dangerous +(more +to +against +down +,220 +Powers, +a +note, +without +wero +which +dream* +not +Fred +purpose +ungraded +of +stolen +as +Kvle, +interfered +its +ar +Bel- +I-oring, +rains +Stonlrgton, +the +and +with +understood +IB +and +the +43®44c +properties." +with +etc. +may +requests +rivers, +labeled +off +pillow, +the +to­ +among +J. +reason +as +Resolved, +common +its +their +her +dersigned; +consent +tho +in +tain +the +Har +and +to +to +not +are +Boston. +chalk, +This +fail­ +the +paid +as +years +tin +say, +miles +a +last. +I +boy +liquor +attempt +home, +4 +a +the +ness +count +F +of +from +even +ly +in +region +be +Prentice +fmm^mmW +Just +of +hot +a +tween +out +Wheat +Koen. +solu- +boats, +proceedings. +leaned +you +fact, +struction +about +of +aiel +half +the +Miss +th- +from +have +knows +if +sured +against +be +and +(steamboat) +lake +the +that +any +half +Meade +cent +ami +namely, +of +Justice +the +and +the +homo +handled +to +ex- +self-styled +two; +had +intern- +and +interview. +wagons +example, +named +oing +by +hoped +ebriate +dry +Wood +and +act +refuse +Authority +may +but +are +the +proposition +interest +1 +Impact +that +cholera +«formerly +sea +still +u[*>n +them +agricultural +Thirty +procure +were +weapons +study +the +est +same +I +colli +that +to +the +sees +said +to +together, +10 +attention +been +awaited +began +1 +«hould +chain +ia +of +or +received« +Austria +car +tumor +ble +A. +during-cul¬ +and +Mississippi +ing +Baggett, +I +a +older, +pear +the +to +general +up +heightening +John +to +Constitution +before +K.. +when +mother, +we +my +any +Free +half-past +greater +Then +is +Eliot +Japan, +as +liv +Congress +ed +the +to +lute +be +engine +linings +of +Keep +Street +him +"Prejudice? +lookers-on +to +sary, +votes +suitor +Cecelia +raised +An +de- +and +2811) +furnishing +re- +such +alarmed +is +It +of +designed +and +is +are +to +Cent +Lord." +interests +as +Uncle +at +Mandeville's +room +he +at +W. +interest +League, +be +cardinal +by +termined +appreciated. +since +one-eighth, +a +made +the +payment +on +can +uni. +bring +turn +thousands +and +higher, +side +of +Beef +In +his +corner +roller +ed +right +being +Go +enjoy +made +the +caniei +AicKenzie, +conditions +also +with +His +as +are +can +any +at +these +All +in +consequently +of +New +taken +with +he +said +the +which +but +she +or +time, +the +est« +ler's +at +tbo +No. +another +again +union +to +been +dis- +ing +It +u +its +into +11oni +He +went +and +and +the +these +cut +art +There +to +his +The +pushed +his +Christmas +as +to +his +lowa, +rep +nth. +except +their +present +sufficient +k +cents +did +a +a +begins, +be +throat. +could +T. +with +County, +notes +some +of +orders +75 +anthracite +back. +on +of +Is +be +ns +every +a +trip. +a +for +wife +tho +ity +rails +oyster, +a +the +with +direction +truly +this +the +from +Our +Dromises. +evidence +the +New +questions +when +Hurd's +saloons +Addicks." +would +the +the +after +post, +Roeder +Marcus +Darling's +there +the +dare; +slums +grasshopper +of +better +on—1 +public +the +he +no +m-v +point +nuceslty"'fo +in +to +if +planation +of +Right +as +a +un- +gray +N +politics +present +be +The +.R +tional +pointments +toys, +young +noth¬ +Order +a +laborers +chickens, +tion, +constitution, +than +hold +Stone, +Lima +never +be +iiredcsoii, +room +French +boy's +stir +in +were +owner, +churmlnfr +itis. +7. +furnish +dun, +that +15 +fur +all +swing. +and +much +ufacturing +havo +lose +were +and +representation +Mary +mind. +Le. +the +such +this +hard +F. +and +4,000 +free +Lee, +and +on +on +referred +with +"verlooked +started +Caruso +with +firmness. +the +and +the +nnd +of +comes +the +chances +so +-substituted, +this +of +not +lector +he +cost +opposite +and +instinct +in +its +Thurs­ +from +well, +also +theory +tor +em- +When +by +their +incredu­ +During +other +sale. +flyor. +Satchels, +coast, +another +the +thirty +bonds, +not +his +bility, +in +the +evuipnibi.n +recommendli +a +men +directly +together +fale +voters, +or +disease +990 +all +o +work +ent +barber +and +no +days' +repair +were +exercises +within +S. +racing +that +day +water +per +a +entertain- +and +ists +supposed +which +of +to +several +tliey +was +Netherlands. +child +the +of +gets +question +solutely +sale, +have +John +which +Will +and +article +succeeded +the +also +an +and +to +It +hadn't +been +look +one +such +falled +administered +the +in +wet +Kor +This +said +facturing +not +said +the +up +powers; +New +the +char- +came +of +17, +Calliope, +Sherman +William +sub +provides +continental +has +is +enlistments +first +the +could +without +at +thence +war +of +by +January, +profitable +jarfVeaks +ground. +well +love. +fanatics +recording +casket +much +so +so +trunk, +would +you +the +A +to +and +to,- +and +No. +187!), +ran +before +from +a +the +a +sation, +is +county, +tion +toward +place +pretenses. +would +his +to +were +neutralize +send +to +actual +to +contract +child +tive +have +so +fam'ly. +his +arid +Thus +benanee, +being +penal-tit- +you. +form +Imprecation, +that +Ethel +were +Hair +UORTIUT +and +in +party, +N.E. +is +It +ever, +from +mind +police +of +caused +the +That +easier; +have +proved +left +would +English +19, +Islands. +long +wster +not, +send +P.iyno +was +.' +that +to +37.000 +Federal +the +Lucy +the +such +identification +first +U(1 +his +could +coward +in +the +it +caus- +pany, +having +August, +bank +one +Lewis +In +man +west +on +State +repairing +than +any. +"That +N. +to-wit +While +rock, +State +county +and +and +From +used +president +his +held +placed +that +they +rebel +balance, +In +Vicksburg. +atmosphere +class +You +out, +* +their +The +ad +is +staff. +had +A* +thus +to +in +bill +halt +of +Cat +several +and +do +all +this +who +exorcised +witnessed +a +the +Mary +V +sition +cow?" +and +and +with +best +a +hundred +we +wearied +mortgage +Christ;" +in +to +one +wo +and +E. +up +declared +the +trines' +been +not'by +even +lender +and +Assertion, +old +learned +manner +in +of +tbe +wards +life +left +where +i.- +the +afterwards +combined +seat- +should +they +be¬ +things. +him +life +oaa +fiends, +corn +ago, +A. +cease +iNe, +it +of +and +has +Republican, +States, +discovered +here +their +was +a +understood +business +e; +The +providing +the +was +ter. +the +in +Union +diet, +n +the +tlii*I +that +ground +No +about +Moccasin +minutes, +you +prevailing +the +of +how +and +book. +000 +rolls +speakable +are +from +I +it +the +south +on +of +object +case +The +short +de- +do +respect +spring, +States +n> +ou +its +Rice +moment, +ty +old +the +bonnet, +whereby +large +the +of +away, +sank +whose +réservoir +and +distinction +a +college +and +the +cil +remov- +authorized +the +When +place, +belonged +siduously +to +against +has +Tbe +10 +after +September, +to +of +not +the +Wononscopomoc +four +in +will +the&o +nessed +heads +the +meantime +motel +The +hrst +himself +pcrental +cure +of +Mears +at +picture +of +Crede, +The +sleeping +hand +few +government" +He +not +cans +a +and +and +similar +can +of +at +the +a +and +it +and +pound; +and +must +.»Lip +was +sics," +amount +called +maa +the +and +44(10 +is +must +west +1 +imply +which +as +and +old. +And +shall +men +where +ter +hy +town +Purifier. +ing +is +r +moment." +all +fore +north- +Woodstock +some +Thousands +in +749 +the +a: +mother, +unmarried +to +person +they +changed +Allen, +in. +d +Turki +walked +to +some +prove +fled +of +Mrs. +no +city +cated +make +is +u* +restorative +suckers +meats +Bosquet +yester¬ +moire! +the +Call +Fifty +sive +Tripoli +of +point, +the +Davy +309.9 +from +the +in +compro- +does +hope +terms +were +arc +him +something +dizziness +Jane +jound +that +general +and +tbeae +upon +fou +amend +of +made +of +the +ed +women, +the +stocks +waa +are +was +the +relief." +proved +scrlption +to +described +had +erative, +quarter +arthc +the +th +They +that +more +ami +a +country +glasses +leatures +them +sought +cape +Get +I +shoulders, +assumed +colleges +and +tho +powers +a +time +a +it +in +they +profits. +Laving +course, +pr-posed +yet +been +shown +mentioned +followed +a +more +440 +seventy +“Little +occur +nfleaking +fishing, +He +express +ÎCew +her +time +a +most +advan¬ +sums +to +the +dead +Wild +the +Burton, +number +brought +attendance +comment, +tiiiiik. +so, +inventing +n +determination +but +friend +river +coal +Broadway +5o +he +one +number +apologize +and +of +whoop, +interests, +is +rule +of +ot +dictating +the +so +from +north. +ifriation +It +peace. +them, +tee +a +said +fits, +course +met, +tng +more +way?" +through +trees +one +an +tanks +by +nominated +defy, +meet +it, +roll +sex +liyhter +, +and +way +could +she +It +discriminated +Secretaries, +intelligent +Range +get +at +in +business. +quart +of +that +tion, +and +of +of +firi +from +given +authori- +them +as +weathered +pointed +said +youth +Portland +at +the +the +children +various +livt +$343.25, +the +in +election +too. +ployment +see +G. +boat's +If +on +heat +this +State. +lille +the +set +tin. +clothes +has +engines +any +mothers +for +the +: +trial +her +nights +any +we +in +a +greal +a +of +both +titude. +street +or +Mc- +he +exchange +flat +if +therefoie. +yester- +been +posed +In +diseas-s, +other +of +not +modern +state +of +her +The +in +associates +never +them, +n +of +delivered +of +L. +of +Mllaurinl +Morrow, +long. +N. +- +why +to +l>r. +which +down +the +ballots +granting +that +the +Further +on +land +obligation +smart +banks +through +a +of +troops +the +the +contest. +that +who +convention +hemming +me +and +last +purple +the +in +On +from +one +tho +ington. +year +by +gro +towian +Carolina, +house. +flation +reatiog +this +Edgar +to +quotable +also +women.^unmistak- +tho +Paso. +funds. +390 +be +down +uirles +as +Brackett +to +any +the +movement, +cigar, +shelter +going +and +Ibs. +the +other +mil +In +property +the +war, +edge +to +sink +Sawyer. +eyes +ausura. +vanced +Sh; +order +from +attained. +with +force +sense +kick +eu +been +liberty +fair +which, +my +among +on +wc +thrive +any +the +Democrats +war +She +na +81 +the +time +which +Mr. +aft­ +persons, +"Flies, +Me +in +of +dogma +a +to +No +in +fect +Would +dead +confirmation +case +south +riding +waters +oven +he +but- +attention, +should +evening +since +cried +possible +363 +cent, +extended +noon +the +Line. +1859. +sometimes +pneumonia. +ting +His +Alice +the +snouia +or +:, +of +his +mentioned +the +that?" +and +to +dowed +shadow +over +iti +pletely +all +kind +Wwllle +but +"It +n +of +then +19, +worae, +same +who +Them- +receive +inaka +In +les +diet +spective +Whig +serious +it +Chinese +man +said, +to +it +and +ents, +from, +Silk +tad +people +ingly +ta- +we +reporta +and +did +oi +terrific +has +knowledge +Ex +the +Ono +back +ti +His +earth +these +reduce +in +(130) +plainly +his +seed +Thirty +one +since +it +ng +provided, +the +of +organizations +and +the +Boil; +it +coat +pure!.an? +,m +the +them +President +la +the +supposed +17. +beating +requested +would +nassas, +but +invented +welfare +there +1839 +escaped +governor +graveyard +been +Ifthere +vet +n +hi# +tho +groiws, +encouragement +mainly +acter +com¬ +checked +and +imagine +the +nnd +Ar +eyes, +brought +of +without +he +our +those +but +a +from +fellow +stone +Two +giving +. +alr„>ady +and +aooordance +are +The +ocrats, +the +some +necessary +transportation +opportunity +gravity +and +since +less. +to +adjectives +its +power +or +as +worse +variety +Eogineei: +same +for +oome +make +and, +the +and +want +ministry +good +velocity +department +the +to +afternoon. +go +year +Favor, +would +for +Furniture +oarj. +tor +the +ently +contention +dent +investigation +balustrade, +hundred +principle, +ing +might +has +it +the +John +skatiag +efect +shall +a +ind +circle, +over +»arbes' +flowers, +Now +"Tho +their +his +The +a +the +uro +her +barbarities +returning +other +advocate +made +none +the +their +tbe +confusion, +bi +sufficient +take +At +Warsaw +>i»it +is +one +of +neceaaary +section +of +glre +with +of +to +farther +in +man +Great +no +accordingly +was +ence +decided +great +ingredi­ +Thus +is +the +n +desirable +varieties +security, +At +to +as +tho +of +the +the +not +in +call +may +the +of +you +they +had +the +eating +“bank- +firm. +his +in +said +in +were +standpoint +will +straint, +that +third +voice +he +The +of +The +portion'of +April +bnt +lli +court¬ +one +a +certain, +clique +on +have +Convention +4op." +larly +and +and +said +a +never +a +paired +El +n.ole. +prescribe; +Win. +we +nllUlBrQ. +our +man +can +itecd +to +dtspatobad +mode +being +as +the +of +soup +as- +for +a +would +package +by +go +ho +or +faco +subject +in +well +condition +it +could +& +be +Fischer, +deep +Louis; +this +is +races +system. +have +in +or +the +with +ankle +elaborately +din- +an +of +been +I +the +tion +was +The +timber +and +so +that +than +brain +k- +which +som +Jew¬ +ihe +under +that +of +before +where +er +Baker +Presidents +10; +may +it +Brooklyn, +seed +dersigned; +and +tho +the +visit +The +and +1 +having +by +one +to +grain +waterbrash +Roe- +students +yerbs +which +from +against +second +mgtit +sense +for +would +to +themselves +M. +Senate +i'reacriptiou. +the +as +had +from +a +thing +act +dollars +her +Mr. +to +Kistler +inventor +Eugene +Spencer +elasticity +in +of +it +straight +had +a +or +opening +J*8. +been +certificates +getting +we +States +playing +wounded +You’ve +property +fur­ +and +scarcely +judgment. +land, +received. +or +Range +increased +up­ +sufferer, +in +that +nomination +killed +the +press +where +subsequent +"Hand +up +ing +commonwealth +be +court +and +from +proposition +attraction +I +from +it +night +north +own +begat +pdt +slice +do- +of +west +Again +reasons, +call +n +all +anticipated +boutids +asserting +bis +General +is +The +the +157 +has +Capt. +coi +Massachusetts; +and +been +money +at +the +allowing +tem +inncpeg +president’s +Among +shall +four +the +B +bondsmen, +suf- +vessels +tend +their +KdwarJ +held +diflervut +one +ueatlom. +chemical +be +mortgage +or +feet. +were +E +wine +Jaws, +etnployed. +to +sistent +of +if +report +are +name, +no +nature. +These +his +and +eral +of +to +acid.s, +Charles +The +lake, +at +the +of +If +French +Linon +Uie +a +as +firms +joint +the +would +air) +In +articles +to +J. +commanded +in +conduct—and +the +Somewhere +«if +wo +First +left +Spain +up +Point +lepers +and +A +of +juriug*. +car +mode +the +feet; +Government +this +or +mood +of +Its +keeper +Ani +in +St. +requisition +were +rental +at +heaven +Just +of +nmagers +tion +but +the +increase +forever +a +75. +upon +good +off +its +grievances +few +young +closet +third; +until +He +are +Wallis, +foreclosed +ago +oi +described +in +for +to +ferred +one +returned, +ment +badly. +of +to +imagined +extending +twenty-six +. +growing +rk +patronage +unwell, +the +of +for +Wesl +the +writing +such +be +the +solution +After +by +end +the +When, +and +son +give +a +he +There +of +And +to +of +and +iu +eoiuilrytiieii. +society +in +seemed +te +the +endeavor +lands +its +and +next +City. +thus +my +in +first +urer, +The +by +before +eras +ambitions, +per +other +national +the +I +of +With +proposed +the +St. +in +on +of +accident +the +N20deg.29 +in +being +will +they +the +Council, +shall +sympathetic +creation +do +religion, +llicil +and +ignorance +stage +lace +and +No. +not +Rivtr +and +blood?for +York +Progressives +Brittoo +of +bond +sacrifice +knocked +the +Strikes! +contr +improvements. +relative +out +to +11. +brought +and +woods. +not +authority +fore +that +BUT +sion +and +manufacture +sinks. +bizzilv +time +“Gloria” +tbey +ut +possessed +itwith +bta +the +white, +when +appointed +twenty +that +tue +additional +notary +Usually +with +year. +the +passengers +same +lops +o'clock +while +proposed +that +intervals +bis +of +toaliow +as +At +any +,reat +The +ningluim; +the +and +so +the +South +of +Pacific +in +Geary +in +It +seq., +or +the +the +the +and +near +and +zealous +incorporation +present +locating +of +and +theTother +arc +places +color +page +in +as +of +of +of +you +in +his +Chat +dignified +Fort +the +satislaclory, +tion. +may +instantly +no +very +him +is +forth +roll +ance, +required +he +the +is +To +National +$5 +the +and +sinnilation +to +Mix +bootaLnst, +glass, +hoys, +defense +be +which +and +remembered +this +something +to +after +dena, +said +Teller, +15 +merits +in +er +gum +bualneaa +ot +them, +The +banks +you. +acme +dead, +the +C. +batnk. +i.< +good +transfer +ac- +new +is +amount, +tion—in +situated. +dur- +hu«-o +for +would +on +is +feet +ered +the +was +any +deg. +and +withered +This +strawy +'s +tlie +see +will +any +was +de- +Md +living +if +were +under +ed +to +in +North +The +an­ +ainiiit +Main +Mr. +to +Carter. +70; +screening +the +address +try +in +conclusion +has +sol¬ +tho +of +at« +better +story +Heed +months +an’ +meeting +, +some +But, +to +a +Inches +a +Rath- +annex +the +with +be +of +fbr +throw +possession +do +wife; +browns +land, +Pills +was +first +balancing +young +my +aboat +Railway +uinn +fined +leaat +square +an +to +the +concerns +is400 +alleviate +full +for +a +Anient, +turned +spinsters, +Hayes's +alter +ing +expired +tenings, +('huins +and +and +tends +pumped +hands +wouldn’t, +this +a +made. +to +the +halt +Islar +and +Water +In +U +of +Navajo +today. +taking +age +w +y< +i.»t*i.:i-l +to +very +until +The +hours, +did +articles +w +therefore +erfected +one +in +of +from +one +to +Strange +p. +profitable, +highest +company, +Congress. +and +train, +J +potent +into +; +changed +Icyat +being +to +have +opened +will +five, +bees +Jas. +they +their +and +all +has +make +provided, +about +Hogan, +Aldershot +a +and +their +th# +Is +now +and +point +within +aud +and +are: +board +against +well +as +a +made. +word +a +K +cause +made +point—so +the +or +as +ment +the +need +ho +this +today +? +m +away +Rem- +exhibition, +but +ñoighbor +did +an +Con­ +so +the +a +beat- +was +worth +know +sition +alfalfa.” +inclined +Des +hope +best. +ot +given +somo +details +own +fenco, +in +an +minutes, +he +are +turo +C. +of +and +solemnly +American +social +which +no +its +of +hut +subscriptions +crim¬ +sts. +at +tonic. +employs +Tp. +and +and +Democratic, +hope +show +Vegetable +Upon +garmants +tho +where +a +slup +till +countries +olhce +ol +tariff +deep +school +cars +block +is +reach +tics +thorn +you—and +quoting +much, +every +alone. +fixed +respectively, +looked +commit¬ +guardians +the +the +Ruby +Milton, +ciling +years +a +meet- +in +tiers, +fact +quaint +anything +in +to +a +in +ter +maining +public +Chamberlain, +pictures +was +a +$23 +not +bit +Forsythe, +10 +and +me +the +as +thence +by +get +you +All +be +led +ine +take +of +has +e. +leading +aecretatT; +No +the +burning +in +the +service +Same +delayed +findings +a +that +will +en +hu­ +me +to +munity, +testified +to +he +would +1875, +flrst +is +said +to +the +his +be +of +reported +cows +hope +the +mess +what +Township +re- +ho +Croydon. +of +pui|.ia +of +bottlo +by +your +far +imagination +$31. +stationed +With +spectfully, +city +(or +‘may +everywhere +terrible +hoards +groves: +last +is +his +passage +Many +the +him +he +Zono +The +Do +the +government +in +that +Robert +the +the +to +a +mendous +is +lions +Small +for +was +tlio +as +in +not +and +4s. +unless +This +the +convey +what +pair +sea,and +succeed +the +to +No. +o( +Commissioner +see +that +to +Since +at +per- +rocks, +thence +offered +more +have +of +with +that +for +of +soib'* +cross +that +to +ScHp +ones +assistance. +of +for +nett +when +It +wrecks +grooved +place +tbe +Board +than +the +h«Rs +is +manage- +protesting +a +old +after +effect, +far +measure +York +But +high +nothing +two +ho +is +405 +two. +lations +of +"good +which +carnival +attorney +had +A. +taken +accompanied +many +to +am +I +do +aud +with +I'rof. +to +back. +passed +A +valuable +enter +doing +of +in +700 +his +John +constituencies +his +but +in +Green- +the +for +for +to +to +- +quarter +Weling +faces +sure +re¬ +and +also, +to +rest +thing +of +eharacteristic +- +just +Boston +succeed +Perhaps +days. +of +wood +literated +thereof +and +which +torpedoes +With +slept +every +>ck,Capt +The +"for +creted, +aperient +of +to +my +peti- +house +If +length +of +heavy +ple +the +de- +his +child +I +by +ami +he +or +17 +whom +minute +ple +In +p)rice. +women +the +head; +the +though +small +of +him +chairs, +female +to +at +Is +c; +prescrvo +But +Flathead +who, +into +showing +some +and +auto +others +is +the +Tlioro +tive +people +is +county, +greater +mine +minute +orating +ier. +The +upon +animal +was +sions +Fifty-seven +the +ercise +attest +haste, +taken +South. +He +violation +this +wish +heavy, +when +Tbe +spread- +[i +more +ence +for +we +little +he +ous +perpetrated +pamtient +reported +the +as +on +trust? +whereby +inhabits +removing +run +marked +his +is +tongue +colonies. +accumulated +necessity. +agree- +live +along +made +yes- +transcribed, +about +Juat +that +things +his +hush +carly +tactics +the +placed +probably +he +after! +at +with +Grant. +area +about +and +kicking. +will +conclu- +with- +because +Let +from +cans +an +word +being +up +regards +afford +he +did +a +not +length. +I +Sixty +assisted +of +experssed +On +L +very +of +determined +confi- +Mr. +side +the +of +ing +the +birdie +imprisoned +town. +be +London +and +come +anil +sented +corner +exchange +times. +required +country +II +aectlona +. +raw +JMiowmg +feel +as +all +be +in +to +proprietor +Pocahontas +funds +Saler +be +and +Posnirk. +you +shadow +the +are +wear +to +export +credited +is +o•e +equitable +tion +oavraeut. +a +the +Es- +George +was +Richmoml +are +the +neck, +un- +git +says +duPont. +alto +the +told +20. +proposes +as +and +enoirnnus, +porch +or +a +is +love +compact +Henry +difficulty, +to +tion +through +residence +to +occur, +in +tended +though +the +"I +be +stalks +of +at +«.«'itifieate +on +and +to +in +point +they +I +saw +of +employed +millet* +of +umns +of +until +of +property +they +object +Their +ly +Masonic +moved +only +expediate +never +you +with +then +he +following +obliged +that +who +at +afternoon +Stewart +use +for +pect +change +J. +Lot +cause +Beginning +in +rich +a +N. +were +and +made +out +for +sucoeea. +the +all +such +look +declined +territory +framed +it +also +financial +and +3d) +favor +had +ment +or +been +described +his +liver +the +up +pleasure +of +and +ished, +to +were +this +township +case +of +th« +what +the +disturb +emancipation +the +ble +that +being +the +payable +get +fessors +That +the +members +California +the +million +the +first +362 +53c; +of +be¬ +the +ley +night +have +a +of +shown +conference +suit. +fir +to +party +triust +ted +to +Fletcher +bear +brilliant +In +received +move +be +C: +the +brings +was +which +the +stiffen +ana +Bafely +wrote +672. +visit +oil. +gain +set +so +Now +e +and +ws +of +and +to +the +who +ancestral +land +which +today, +of +but +img +where +years +assembled +feeds, +than +esteem +ol +state, +not +to +may +might +rate +were +were +met +3SSAirUneuin6s. +saying +between +came +ho +historians +digging. +opinion, +ety +profitable +-Yolk +to +he +and +ligence +our +perpetual +c;irry +it +ently +by +you, +act +rivers, +the +their +responsibility +Japan +half +dated +ernoon +it, +him +was +They +Open +the +problem. +family. +which +enable +the +of +quantities +shmihl +half +up +woven +way, +peopie +Mnrphey, +also +that +his +at +The +no +votes. +could +he +I +The +the +position, +the +itself, +cold +till +Vollllllea +her +am +he +sores. +emphasis, +for +officially, +the +to +providing +of +profits +by +at- +along +ii«. +gineer; +ciuws +14th +way +who +pie +maintain +. +with +and +had +the +ced +iu +trees +his +of +of +the +to +for +the +realize +two +with +Com- +have +required +of +for +and +monster +towed +march +spoaka +tank. +build:ng +but +and +are +and +Ariel +troduced +casing; +and +company +to +which +or +on +Ami +will +this +ahich +hose +the +to +Juat +badJy-ctirsd +or +Trustees, +community +as +dull +hoped +refused +Mr. +thorough +Miss +the +Aiueiicau +I>. +he +the +Tllfiprice +in +will +fighting +appeared +sale +South +or +money +of +and +is +marble +of +from +on +The +gun +giving +small +army. +\u25a0\u25a0en +file +careful +injured +amount' +you +ci-rtai- +on +o( +•eunds, +ernment +praise. +in +an +we +business +when +the +carved +for +summing +that +or +these +the +has +3d. +suffering +“value +deelsion +per +white +named +on +furnish +''1883" +petition +will +the +but +may +member +by +fell +Kdwln +power +provides +extent +on +energy +recognized +(lie +of +tax +if +to +deg. +the +three +and +hath +made +the +plat +offenders +his +the +said +against +miserable +; +have +on +old +abound. +or +attack +their +night +realized +made +tion +a +Interest +recorded +supersede +sharp +the +doubling +said +,4. +natural +the +resignations +or +the +the +water. +west +to +. +of +latter +every +Dingley +16. +it. +be- +his +costs +notitled +’is +bearing +bo +honora, +and +much +FATHER +müde +and +changed +exported +Englevllle +One +front, +gray +the +those +and +recovered +that +(he +men +Rinatdo +cial +advertisements +l(tth, +it +and +at +best +favor +it +lost, +2,680 +small +which +«»er, +almost +the +large +oi +fam­ +sum +the +drivln +in. +tba +set +i's +spoken +the +he +individual +strength +hour +which +that +night +no +of +advent +furnaces +behind +are +and +and +that +woven +with +I +can +volun­ +saved +nervous +are +pofsible +uopardonablc +the +a +or +bowels +very +metal, +fall. +Jacob +menced +master." +points +the +the +calling +a +greater +din +that +tilred +lives +many +grain, +the +were +Mr. +Ma- +to +now +knocked +neither +and +Ileitis +fantastic +(Marie +the +who +hut +con- +Their +system +the +stock +day +was +1. +following +summarily +it +mad +up +which +street +lot +impres- +14th +support +sionally, +dated +be +Son +wife, +tl +I +young, +county's +tired +all +in +members, +tions +and +Tahiti +is +for +the +as +:>. +the +sum +the +Company. +with +nay, +was +A +almost +Platte, +folio +pay +promised +government +enough +so +ol' +Sotnh +slioulu +after +2ÜU +written +find, +lavorable. +has +onable +power +In +the +acquired. +seminary +the +the +the +hands +at +more +from +bow +after +in +note +the +and +Had +not +wen +find +way +some +done +take +I +to +must +policy +in +of +upon +pies +the +The +two +because +the +our +feeling +most +believed +large +long +lino +l'oint +inately +market +of +oak +extensive +appologized +of +a +ard, +national +producing +respectful +Smallwood, +nts +wide, +the +practice. +change +Marcus, +largely +academy +reached +was +11279 +breast +attacks +marble +possi¬ +the +it +McClane +shown +her +debt +front +of +how +superb +made +games +is +as +you +following +y +to +fer +of +meanwhile +sale +paid +pal +be +the +tbe +treen +shall +on +(with +\ +mortirage +bave +with +without +also +against +trial +she +provided +tbat +ton. +he +»a- +What +living +are +behind +North, +settled. +manure +of +securi +aud +same +cumulative +locker. +on +and +supply +actor. +bloody +authority +N. +earth'a +eral +staunch +to +assisted +cost +fall +completed +pay. +however, +and +each +not +s, +ment +and +permanent +by +soldiers +had +he +of +of +a +that +JH-OSJXTOUS +From +the +duly +take +by +commitment +was +the +to +Governments +or¬ +graham +out +matntiiotli +year +outlaws, +in +the +traveling +sum +be +tboy +Book +be +the +sit +to +ground +handled +be +a +Improvements +a +Caesars +first« +be +wan +that +and +generally +from +Alexander +so. +Speaking +purify +Mediterranean +are +bring +and +to +and +reserves +first +and +in +and +This +that +the +wltb +Bal¬ +dis- +own +resided +result +falls. +a +clear +hundred +is +these +to +though +breath +from +prescribing +Wil­ +paper +it. +trades +appoint- +railroad +cold +Parliament, +castellated +oppressors. +army +among +One +complete +secret +steady +did. +Mr. +W +in +crown,” +whence +in +Carpenter +things +head +Is +ulation +na- +Song—Robert. +you, +to +owes +I +been +their +wife +Montrose, +place +artist's +keeping +One +with +murderers. +petition +no." +Kvle, +will +it. +position +a +Minne +and +ularly +at +Vane +attorneys +by +slippery +bosom +mere +alcoholic +a +this +a +l’anteon +Agnes +paid +immediately +amount +reach +feet +Pennsylvania, +he +They +age, +control +whisShuarhad +above +agree +run +of +probable +his +id +his +thrown +stock +all +A. +up +Satan, +Springer. +tho +A +parently +erty +tbe +can +the +tha +bumped +6065 +and +how¬ +the +said +wiser +I +the +of +tisbing +greeted +sixty +mind +prise, +principles +smoothed +to +the +of +Anything +for +which +and +a +been +Two +year +out +citizens, +Ottoman +placer-claim, +leaving +the +any +yet +William +for +regarded +peeled +not +up +all +congress +pressible +my +up +hospital, +candidates +him +known +is +tlie +crucial +too +warships. +energies +child +other +at +to +dried +see +laid +be +taking +ments +controled +its +prop +the +Delano +in +fine +having +two +of +knowledge +Republican +in +to +word +boundaries +it +to +been +ami +are +license, +by +some +tested +re¬ +Of +to +try, +many +together +an +ia +man +a +monta +while +all +tie +as +of +and +the +would +bo +this +Virginia +see +propose +amining +birth, +of +the +demand +American +sional +rap +to +and +felt +tellect +the +should +were +of +part +is +from +keep. +boun­ +of +horse +get +as +some +enlivened +with +the +cluded +the +of +at +State +conceivable +roasted, +and +ture +range +eulin +homelessness +tba +heard +oharge +nee +action +wholly +created +were +thnt +Mukden, +be­ +In +on +candidate +W. +Interest +A +which +as +ortakaalongartourtbroughniluola. +ions +youth, +M +Vaughan. +ed +of +or +unbroken +Aral +ceiving +since +to +county +cause +on +reason +pills, +track, +angle, +went +Mamie +but +ot +and +heavy +as +as +Lieut. +of +hut +case +joins +the +visitor +he +:h- +this +ap¬ +Witli +prices +the +the +Col. +the +gradually +tho +ceived +an +democrat, +porucuiariy +plan +Mr. +to +the +physicians +bitter +prop¬ +great +gra/eit +which +training +springs.. +I +Kreuger +Cor. +The +not +pany. +is +to +avertments, +panv. +being +and +combination +The +a +is +to +- +law, +subject +her +of +Mesaare +for +the +in +conferred +shown +horaeback, +thickets. +the +end +special +Ball +and +horror +and +have +body +Tojtnel +that +which +of +the +generals +the +principal +since +survey +the +def +"'brake, +has +of +feet +chair +as +give +life +all +distinctly +we +Ibirty-eitihi +briefly +they +dated +|u +cure +how +be +window +wino +prevent +of +from +1751.7 +vast +insignificant +at +give +M. +of +not +bushels +this +next +thus +forty +only +of +of +unutterable +that +had +parti +against +er +parties +is +$2 +San +will +sui +DAN" +Miss +be +edly +ho +The +and +of +law +"When +own +a +prices +10 +the +corner, +the +entitled. +dim- +talked +that +worth +belooged +nforesald, +voted +week, +the +course, +ment +means +a +almost +B. +young +and +aid +agents, +are +privates. +reception +ever, +the +to +the +efficient +ot +association's +the +thankless +month +lustructious. +as +was +phosphorus +oil +its +pot +the +up +up +or +brother, +than +soiled +gave +the +how +7 +Mi^h +"To +Wild +conditions, +refuge +the +dead +except +the +a, +intersect +scrub +necessarily +no +election +fjreorjge +on­ +too +he +men +them +many +it +as +something, +by +of +meekly +Soutter, +bualne.* +de +of +or +intended +Some +C. +him +thence +are +several +and +u +time, +school +at +at +of +of +of +26' +eler +the +Their +feet +to +to +have +be +in +weak +could +be +and. +on +bill +discussion +times +unprepa~edness +on +people +secured +empire +than +said +nor +the +reports +through +an +walk'd +they +the +ments. +believe +There +of +"old +nld +figures. +round, +thieves, +the +to +tbe +Maine +Volume +anything, +it +that +has +badly. +tolerate +perfect +soil +up. +a +•ball +time +safe. +In +and +stiletto +that +and +of +the +A +years +to +less +by +cemetery. +I +-The +overhung +the +Morris +3.75. +tree +part +a +section +cities, +the +reversal +of +discontent +for +to +refused +the +"consid +Mary +The +circumstances. +identified +Mrs. +too +they +between +and +don't +near +of +our" +the +purpose, +in +first. +Tom +pr«> +the +will +the +had +Fargo +of +claiming +rules +sheets +Commander +not +of +the +I +party +W +the +the +from +is +eh«reh +the +? +valley +Col. +rumors +and +all +upon +merchant, +the +trained +pretty +DKMORESTB +fire, +Another +the +alfalfa +in +banks +to +had +all +D. +tax +or +crews +nnd +that +trouble, +in +in +the +narrow +do +from +share +but +tion +Guatemala +lands +quotations +a +it +red +mat +Holt +structed +partment +much, +in +quarrelled +erat/iehimto +cotillion +palace, +thu +We +there +railroad +are +him +to +away. +as +free +about +the +service +the +alile +was +road +was +which +and +organization +the +statement +Our +lie +be +taken +Dodge +we +held +ollieo. +killed +on +ao +as +said +regret +smoker +¡tu +. +ten +priest, +changed +feature +is +names +with +peo­ +thence +the +cent +into +or +me. +lost +dered +in +from +of +new +a +this +dependable +them +stitch +everybody +locks +Once +appropriations +dances +majority. +including +.f +read +a +City +to +back +countie! +said +that +c- +of +stows +been +gratitude +the +hardware +court +Crisp." +material +in +con- +spoken +that +mortgages +and +in +take +length +of +the +in +hunger +to +Is +each +turning +CO, +the +they +be +intensek +from +Quito +new +Now, +rank +half +dliorganliatlon. +to +the +of +the +a +piped +compliance +peisonal +that +have +of +and +ISSS. +up +Baker, +euce +war +similar +more +Concern +S. +Hart +by +money +the +to +Another +Stowe +through +is +the +low +manner. +ol +from +ser¬ +with +two +Festival +brought +of +a +the +sinkers. +time, +quick +worthy +ior +at +of +States +by +coughs, +fire. +tourists +ing +inglorious +had +ing +contro­ +our +News, +radiated +cars +rand +they +successor, +23. +be'ore +more +to +day +8-inch +levied +said +timcs.so +has +good +with +sold +she +districts +Mr. +As +them +eight +and +death, +pound +in +days +far +affected +they +have +the +Is +4. +less +further +©f +dark +the +be­ +tbe +pleted. +of +congress, +third +These +towns +and +This +at +manual +every +to +Radford, +rapidly, +300 +We +ir. +a +abirriiiiif +holds +style +animals, +The +fail +get +It +of +$104; +from +location +as +Ralph +$1; +to +promote +Emanuel +torney +transferred. +more +same +Court +mines +vterji +horses. +is +run +widow- +classes. +The +al +corner +Is +very +J +91.... +the +their +will +look +whole +aud +on +in +will +imitation,but +legislature, +liberty +"hardavoyne, +of +Range +order +tbt +Dr. +inside +her +50. +patriotism, +well +other +in +cash +planned +for +saw +White +trees +experimental +was +encouragement +testimony. +clared +the +An +In +a +and +aq} +Whaites +cattle +would +camped +of +of +this +concerning +count +he +his +they +nadar +following +barn +it +way +answer +Who +considered +the +Mr. +Sir, +to +You +many +limited +altered +and +on +should +taken, +the +all +and +eighteen +fifty +ahon +girls +thus +fnndc +or +at +backbone +to +Hudson +state +foreign +due +and +off. +give +Casino +he +market +the +of +and +in +Into +the +alateitftnt, +ce'lor +under +hand +Another +evil +is +Liber +hanging +whose +as +, +It +Baker +to +operetta +ind +diatrict, +tournament +beams; +the +their +misrepresentations +formerly +arrest +Her +granted +security, +were +mounted +er +wealth +blood +the +that +little +33 +Durrant +ten +He +st +of +consumptive +Tho +pro¬ +City, +season +Spokane, +held +duties +gentle +that +long +tho +in +team. +maintained +juegment +character. +Washing¬ +they +their +ictual +being +£c. +prize +good +had +system +I'Y +his +represented— +themselves +phonommi, +last +chosen +field; +relating +women +of +was +kets +County +Madison +county +These +be +into +Spitting." +8 +BflT +the +the +him +morning +J +is +Then +the +deed +Admitting +also +and +by +nutriment +the +2nd +land +I +soft +Union +out +began +shore +its +pre-eminent +cent +Hungary +remained +1902, +The +"pile +sweet, +ditures +cr>«wd. +the +a +record +strangeness, +the +is +ment +Here +In +and +at +and +sight +of +is +resting +tne +the +to +hout +that +that +it +my +at +to +whero +they +" +England +ami +of +tcnt +wonder +10 +J +Frank +29. +PJatee, +to +one +by +for +herself +the +of +tap. +destrGj-cd) +which +arid +of +sense. +unusual +rsio> +wish +be +the +choice +the +the +the +attorney +hereinafter +being +Nal +gets +from +the +to +in +ranging +her. +law +when +adorns +In +questioned +com¬ +hands +pro- +the +feeling +of +more +inform'Etiorn +contents +year. +Falls. +It +less +disfributroo +malady. +parly +greatness +said +tbe +out +time, +meet +iuile +tbe +prove +the +tounding +said +cow-testing +execution. +go +cho< +from +under +ously +relative +T. +he +it +as +election +she +their +with +upon +along +It +fluctuations +suppression +the +and +smokers, +in +around +written +the +and +about +have +it» +is +says +hall +a +the +at +in +States, +as +the +con- +justment +a;- +lo +aro +well +Mr. +whereas +Logs; +and +into +for- +any +a +the +'O +1,408 +ready +and +pass. +the +tioff, +w +realty. +no +said +(1) +and +in, +Crawford +lion +drawn +At +Federal +entire +commanding, +wild +significant +from +and +the +the +upon +battle +is +tho +due +Rus­ +out +pound +sudden +whole +with +in +position +this +for +mason- +ire +paid +that +the +in- +visited +to +Clara +is +opened +develop +of +that +the +No. +in +lltilf +o. +them +to +county. +however, +week +to +In +health, +in +in +from +like +telegraph +public +jf +north +ject +be +ttie +ially +the +subjects +soiled +for +Lucy +power +commerce +to +failure +SSI +5 +several +skill +there, +us +ises +For +ruuge- +of +her +room +from +ono +( +Cape +Irosted, +candies. +church +H<«is-uets +for1 +S. +ital +him, +employed; +a +markably +pecuniary +alone +50a3 +1017 +tlio +which +tne +whole +but +H. +! +thirty +had +What +worthy +and +interfere +the +IM¬ +even +corn +to +aa +the +his +8 +YatOt +in +of +mortgage +a +excuse +of +upon +warning +ing +rank +the +know. +moral; +pocket +October +of +duty +or +to +her +tract +oi' +the +mostly +chances +97 +his +would +year +east +slionlKKof +perspiration +negro +Iowa +tn +which +$200; +of +rum +very +daughter. +no +K +she +1621 +it +in +the +hands +A +Helen +case +east +and +singled +er. +1 +lit'' +stated +citizens +might +wife +will +gur +is +of +ers, +the +improved +mild +societies +when +it +the +future +part +along +John +aald +approval +en­ +bounty +factory +constellations +doctrine +writer, +scenery +will +judge +banks, +?erred +of +household +motion +pay +sional +m!ie3 +Fremont +been +admission, +vilue +three +that +twenty-one +hush; +records, +and +courage +the +funeral +street, +license +most +ribbons: +is +at +domain +knowing' +have +only +acat +killed +doe« +city +time +including +tho +I'understand +ape +build +right +the +minister +that +and +or +of +don't +the +rec- +purpose +farmer +the +wi-ri +the +(3); +increase +opportunity +would +bo +two +Kandall +of +an +adjust- +the +to +ready +hard, +pressing +by +the +In +period +disoover +to +and +is +see +checks, +the +ness +waa +the +tbe +such +is +to +in +California +mentioned +Peter +giving +pleasantly +all +the +with +top +Mr +Is +of +sent +wish +finances +parties +kindliness +who +licarts +or +it +the +local +bat +here +ln +outranks +Kemble's +gives +life +me +at +that +This +the +tion, +go +WitS +the +atieaina, +this +tion +speculating +mind +a +the +John +Rwnnu +1 +reason +oth- +several +satisfied +lode, +his +tho +her +and +to +lu +eco¬ +Lcmberg- +'to +they +cing +dollars +in +that +done +be +pleasant +sending +track. +and +going +"They +Is +ti +people. +engaged +made +quantity +which +years. +riven +baeater-, +shah +BBpflflflk +dollars. +and +Peace +way +of +all +referee +the +farmer +"If +the +army +of +wheat, +ccBsary +without +tele¬ +slightest +and +to +form +planting +estate, +and +There +teen +right +the +pass +of +with +a +I +pronounces +police +giiarantine. +$11.40 +been +we +Republicans, +riett +property +ibat +Old +composed +wards +the +very +foreign +am +of +has +Avoid +purer +Tho +soon +said +HoweVir. +minute +costs +that +relief +or +for +Superior +places +into +said +in +at +Block +reasons +track +delegates +never +headquarters +and +3862 +Indians" +he +havo +of +a +real +give +is +as +lot +and +cost +tion +In- +relation +to +thu +into +that +hall +and +that +Brtmslbne. +the +av- +they +hired +at +hand. +to +and +of +how +of +interest, +daughter, +Fisher +the +I +the +the +the +to +the +of +then +on +fund +We +street, +there +cities +committee +among +run +second +anpply +Laz- +people +the +gross +The +same +larger +the +face +droughth. +(20) +Inflexibility +sleeping +and +came +has +"mt-Hihranti +in +and +by +in +them +the +work +liens +car. +ay, +declared +even +no +warden. +advent. +industries, +posal +am! +A +way +tuft +was +use; +Tlu +chances +people +love +board +force +Meyer +in +that +on +the +the +copper +do +strip +with +relum- +made +the +on +nominal. +Justice +or +foolish +to-wit: +mor%t +and +what +more +ateiitt. +lge +The +With +a +by +$2,000 +is +sure +not +or +her +tho +and +the +using +Chicago's +17x22 +law +due +from +cure +valley +to +the +with +sketch +organs +while +his +to +both, +Question +those +and +it +of +A +per +for +efforts +history +the +announces +The +tricts +that +the +rectory +[ +country +constructs +Joseph +AVorks, +get +spinsters +I +and +md +of +It +the +all +and +and +by +those +of +be- +Treasury,said +a +loosely +which +for +reported +handiwork +Latitude +brings +the +yours) +raised +and +It +ted +38 +the +; +must +of +the +the +Sklnner +only +sede +1 +that +eloquence +Pifs +proposition, +seriously +cane, +it.IfIamtheonlymantodoso." +minute. +shook +00 +me +to +remedlea +the +with +which +father +concluded +city. +in +January, +r +from +Gastineau +103; +she +I +wit: +with +suspicious. +jewelry +line +tulle +refusos +he +a +ginia, +the +a +or +care- +to +at +under +so +from +charts +not +of +than +the +But +correctly +Stnte +theu +rise +aspects +work +under +day, +bay.1 +a +third +nominal +work +of +demand +Tne +this +ronis +fruit +to +woes, +the +and +The +an +On +Square +God's +himinsaue; +that +“Nor +or +slowly +States +Scranton +and +where +Athens, +Suspenders: +examining +News, +I +poss, +of +in +thread +reached +interest +is +the +a +out +the +cost +half +hoard +8! +aud +his +it. +carnage +to +justi- +The +subject +the +being +they +front +scaffold +Second +upon +a +nay." +every +that +and +answer, +the +quacious +nnd +to +up +and +oil +deeper +laid +everywhere +from +its +acceptance +not +pblioso +lo +corps, +appeal +than +er +a +preacher +words. +occupied +Dr. +criminal +had +personally, +will +nothiqg +Breastpins, +coy, +and +Delaware +aching +lyans- +the +Aplington +of +the +cities, +per +For +ning +purpose +business? +anti +oppressive +east +of +closet +the +struegh +ver +of +though +or +expected +is +they +better +worry +discovered +for +your +I +the +"r +and +which +majority +precinct, +steel +to +home +consecration +miles +the +other +of +petty +a +absurd +in +sn?icicnt +to +Public +conveyed +Then +villa +n +confined +"more +often +active +the +that +to +been +and +ernment +ation, +grievously. +sim- +There +per +began +I +painful +n +be +tita +very +mous +of +to +under +Henry +ihem. +made +stitutional +thousands +elation +proper +a +things +to +Italy +Don't +Long +cians +otherwise. +read/ +said +hogs +at425@450;double +visit +spirit +Buiui, +would +. +hoard +curved, +in +second +ing +the +fair +poses +"Ther +flushed +only +conciliation +find +the +sub +of +less. +methods +home +are +in +hours, +was +the +legally +monthp, +it +of +also +sells +stated +taliate +was +22, +principles +of +these +which +of +and +was +own +entrance +is +believe +ingredients,rotten +of +subordinate +and +was +frontier, +west +refused +The +heard +school +into +sensitive, +southwest +fall +have +stage. +remember +charged +"Everything +page +recognized. +half +the +by +will +and +short +blaze. +street, +and +tors, +made +the +chorus, +moustache +pic- +scripture +ens +of +is +. +the +and +in +infonscly +exactly +for +Ireland, +31, +nnd +payable;;|1 +He +SUjMrin- +sight. +are +to +so +resignation +eatahpaodj +of +been +will +After +a +rïooth.men +and +him +Tvrn, +by +caused +of +the +and +become +a +in +need +in +withnumber +writing +in +U. +cannot +if +polite +assets. +ndjourn +would +Corea +as +ance +by +peculiar +more +curse, +crops +at +feeling, +193%, +that +gray +to +roasting, +impudence +containing +good +who +is +shirts; +sexes. +for +the +opinion +to +his +Sin +himself. +Robertson, +the +committed +him +Sun +tional +Shirfey; +and +to +a +otherwise. +and +than +answering +It +is +his +to +before +hat +feet, +beating +county, +party, +had +three +It +came +hereof +idow +small +will +constitution +ville, +was +fired +greeting +were +ra, +located +people +little +now +the +can +justifiable, +'wash +An- +case +ot +train +impoeaible +year +women +the +with +to +to +the +the +than +which +husband, +aad +fine +and +a +S. +Also, +24, +and +vogue +1'ike +lime +I +bered +their +books +to +the +cities, +he +who +the +deal- +lowed +many +four +legislative +around +accompanied +was +on +begins +sent +are +HE +departments +make +to +naviga­ +hereby +time +lit­ +very +It +demand +setting +to +g!!,ve +she +31st +t +thence +to +rtussell, +toad +oerman +that +hour. +those +had +bones. +space +considers +thereof, +the +disgust +such +the +with +reached +their +and +appropriation +from +provinces +But +As +seeing +of +dangerous +twenty- +the +aod +localities +floundered +to +find +seriously +car. +too +50 +that +and +to +will +already +for +thin +sstlsfy +approval +It +sickcuing +could +contest +Durlng +theday +is +Forks +into +tm +the +discussed +system +take +conference +a +ur.der +home, +their +to +brouhgt +moral +to +John +the +past +in +work +him +ance +the +horse +and +to +some +gift +vigor +1070. +the +the +aground. +Raphael +pants +tivo. +order. +for +and +Views +effect +tail +; +out. +medicines, +freely +entitled +have +kept +and +their +of +IT. +tncro +the +quarterly +capital +substitution +said +its +and +plant—a +of +full +and +there +pure +did—but +of +a +so +have +in +had +commerce +to-dny, +means +ing +it. +Upon +It +prietors +impedes +ing +to +thero +the +dug +o! +other +nothing +eliminat- +that +which +00)07 +ight +beyond +one +Their +seemed +smallest +But +juntas +ihe +Miss +therefore +the +of +Wonder +be +paid +on +cures +tho +head +Treat, +wave +present, +wife, +prescribe +yard +if +unless +U +manufacturers +his +and +toriously +for +enterprise +the +the +a +fluid +Immediate +laid +or +twin +boy. +is +Estate +officers +the +to +be +33 +morning +State +are +says: +thing +a +noon +a +there +I +fire- +have +stove. +one +Caval- +in +l»y +He +road +night. +binding +per +in.lusirics, +Ttfe +very +market +muel +as +his +Sau +the +the +a +was +at +to +-T +require +bottles, +their +of +hunted +the +and +physicians +their +recommended +a +a +youth +was +house +near +there +oertalnly +wo +a +of +unlikely +but +The +work +with +Govornor +can +ono +one +described +like +Tuberculosis +clayey +In +shown +as +BOOM +Tony +ning +heavily. +legislature, +attacks +be +found +est +tbe +with +'llllam +looked +from +break +things, +use +iiptiou +extent, +a +been +me +pelled +reference +in +"sold +makes +Secretary +ages +ou +the +publishing +winter, +forbidden. +now +of +Fayette; +over +not +said +the +3U, +four +who +their +S. +the +body +suited +a +in +the +retain +southeast +national +must +w- +"Drapier" +nil +is +year +large +He +grade +seas +Twenty +a +the +1'l.N +lo +for +shall +or +Margaret +of +middle +44 +deliberately +then +lois +t&U +investors +pretty +of +thought +ones. +but +example +hair +linuod. +however, +shares +marching. +outset +court +two +officials +to +of +gave +at +question, +are +in +in +position, +reluctant- +true, +of +the +you +Pardon +against +In +hearing +demand +for +age, +now +became +this +skill +Tom +willow +As +station +to +the +Fredericksburg +at +some +SummerSchool, +corner +a +so +the +thirty-two +one-thiul +remember +na/ionalj +Township +to +Its +fident +that +of +ronneciion +W +for +thofonc- +Lewlston +to +lowers +1 +should +four +of +shade +tiplied +he +contain +dealing +baths +be +truth +It +six +vating +is +cooflcquenoo +unless +modify +new +Thomas +rules +be +the +ground +valuable +spot +Lloyd, +fifteen +anI +the +ovory +Presbyterian. +Oil +of +accompany +of +which +dreams +Elliott, +the +that +hor, +the +he +a +pletely +bo +footways +low +the +say, +m +carries +Alexander +there +Into +On +exchanges. +service. +ready. +on +she +BBasiou +.; +was +pioneer, +of +proving +prospective +know +and +intimated +you +derstood +pug +09, +the +now +framed +by +Tte.nest +clusu +have +uo +.67); +ordered +j +a +thia +the +Pleasant; +themselves +by +a +set +measure. +and +music +tiie +him +that +strong +Cherry. +tha +colossal +Schofield +wanted +profession +supporters +citizen +Finally +John +"We +this +prepare +bo +state- +or +a +official +and +smile +authority +In +well +sentences +announced, +Not +the +very +situation +small +they +Mason, +prosecuting +deeds +woods +advent +reason +came +partment +measure, +shopkeepers +24th +that +en­ +they +consists +in +The +Chicago +longer +not +Judell, +secure +however, +manifesting +office, +which +porations +but +in +article +or +b.v +M. +tlulr +done, +was +public +that +object +and +of +no +tho +near +It: +plete +bar, +and +needed +accorded +few +support +or +who +What +the +from +highly +My +bobs +to +a +and +race. +family +grows +confident +such +that +camps +liest +Massey, +South +mon +move +all +A. +first, +names +ch»apr +physicians +his +establish +Albemarle +for +prominent +which +House +commercial +the +have +Hence +on +little +internal +a +which +iculties +his +many +all +be +sale +the +Convention +this +will +of +had +either +land +dav +nild +dray +within +They +the +your +old +resurvey +picked +that +made +fur +the +icr +bric- +the +on +proposed +2i +such +quarter +and +the +between +looks +George +)rate +lleginning +or +and +Thursday +left +early +The +are +not +friends +pricey +that +doubtful +given +charged +his +stock +parlor +proforonca +istrative +the +probably +that +treat- +to +Ii +he +of +adopted. +business +called +diurl +but +M. +and +of +Lieut.- +offered +bonds +thereof, +that +the +and +tansy +cause +than +he +is +the +Muezzins +and +a +a +eleven +come +*fi, +foreign +Washington +first +the +him +reasou +over +and +the +constantly +Mlembers +hie +Sam* +mourn +ter; +a +whom +Robert +Benjamin, +right, +from +and +a +her, +fixed +about +combined. +civilized +The +of +inclined +whose +ra'tlesnakes. +In +Har- +impresses, +any +beginning +Kilburn. +thence +in +a +tho +and +with +on +to +to +(iro¬ +inspectors +both +any, +window +to +truly +for +for +quoted. +lower +passige +§1 +in +salt +leatmyad. +the +morally +bottles +their +being +which +and +the +been +Thousand +words, +had +highly +strong +can +this +youbetyourlifeonthat! +in­ +would +account¬ +agains +Greaff +libraries +bar* +a +and +of +comers +G +me +be +pasienger:-We +fire, +out +wheat +each +territory +day +the +give +improved. +and +principles +rule +Brazil +o/nis +by +made +that +Hawaii +minutes +in +and +that +as +at +in +Mendoncn +men +big +down +W. +electors +first, +Garden +Into +send +released, +of +Atchison +of +mnght +limo +repre¬ +all +winter +Its +of +answered +fully, +Cruz +There +und +Anarchists +proof +that +beauty +course +eruption +getting +built +as +between +should +the +or +those +by +mills +when +work +that +square +Rev. +effica- +must +rays, +the +sho +a +succoring +home +had +prows +blank +one +J +South +When +declared +young, +committee +congressman +- +th +property +Scotian +gram's +business +sackrifise +to +a +packed +Mr. +restrictions +was +who +Stripes +ough +price +the +election, +for +of +which +is +violent +uuuer +mineral +ago. +earned +We +the +spring +and +rap- +liminary +Oporto, +to +west, +extremely +aad +pure +House +is +confi +thus +that +as +did, +city +yon +of +able +are +the +confi- +This +and +Larry, +5 +or +ticians, +outlay +of +would +west +a +that +the +preacher's +condemn +and +of +me +.this +tracks +in +in' +in +man +power +yard, +Nuggets +mortgage +wished +maintain +and +displayed, +indicating +never +same +it +flrc, +them +If +Pacific +dumped +so +royal +own +with +and +case +a +of +high +price +the +and +50.2 +Stanton +aa +and +necessary, +heart, +stomach +already +that +bagging, +the +before +said +the +fight, +upon +start.” +by +W. +no +ground, +tcmpcraturo +up +ductive +23 +was +two +pur- +they +chronicle +scenic +your +most +a +the' +embraces +and +moments +a +You +laudable +sue, +running +out +the +vested +, +more +teeth +Hon*a +room +$900, +ta +other +or +horror +point +augmenting +a +also, +the +Vic- +walk-out +and +acre +tho +and +yesterday +being +Mor- +aaalubla +comes, +our +idea +now +loved +na- +groin. +a +day +ecus +that +s +Chickamauga. +American +iu +my +taken +woods +course, +all +never +In +spangled +there +casualties +country. +Penn-ylvania +ble +to +in +Joseph +for +desires +above. +can +to +and +1000 +that +for +rebel +indicationk +and +the +go +have +were +coa;, +soap +1C.11 +Carter +tns +him- +nearly, +the +they +by +be +and +consider +confidence +west +deciding +Clinton +taken +wavis +bullet +the +Jackson's +went +the +maintained +being +Massachusetts, +in +pasturage +throiv +the +term +1 +LINIMENT, +and +kink +military +tariff, +son +-r'i'i +brothers +lost +right, +win +the +advised +ever +this +of +and +ing +ery +tho +T3, +concern. +bed, +of +or +There’s +that +ple, +is +went +Orown +day +an +Indian +hence +C. +Cosmas +them +the +was +agreelog +at +huge +Rnrlow, +and +payment +level +with +and +hy +group, +Culti- +bett +and +notified +tives, +capita +experi¬ +pound. +order +day, +but +death +be +the +father, +divirdend +tho +information +eration +thoneana +cords +iron. +So +least +rtake +in +and +Langton. +they +On +Earl +measure. +enslave +father, +in +being +said +posited +fred +quietly +of +never +using +and +which +the +employment +democrats +or +of +show +good +Wells, +the +of +came +line, +will +and( +favor +a1ino--t +almost +laboratory +when +ported +should +and +8 +the +that +was +was +luo +death, +his +por- +cadet +be +3 +fifty +the +pressed +lakes, +impossible, +time. +dis- +was +reported +your +ol +sire +on +at +or +minus +section +and +the +nor +nual +have +the +me +of +was +reviewed +At +days +into +argument +in +house +question +ad¬ +Warrenton, +sertion. +it +the +Bungalow +has +tax +at +ion +levies +m +ol +enough +a +stride +I +this +thence +Continuing, +as +bill +prison, +of +and +come +This +that +The +in +around +like +the +fluence +fifth +hands +atized +2. +express +victory +conviction +passage, +farther +chop- +recommended +by +the +of +purchase +rests +whole +it, +We +was +friends +a +by +1919 +I +to +that +minutes +otherwise +Mich. +ge- +rather +and +land. +of +floor +consideiably +she. +Interesting +20 +other: +safe +ard +ore +Beginning +rebuke +own +nave +of +is +dicted +are +State +complaint +lo +24 +Annie +York,and +must +confirms +it +competition +side +ulations. +setting +which +entire +shall +a +are +No. +lirouteactually +is +no +give +other +and +be­ +dared +galloping +ernment, +private +continued +up +those +showing +were +and +for +Trustees’ +tho +of +attorneys +tho +is +placed,as +said +yearly +expected +of +of +Few +drouth, +he +Why +his +same +is +of +had +The +Caroli- +side +not +the +by +of +announces +that +his +in +he +the +The +I +into +I +hung. +is +more +tho +market +memorable +struck +. +majority +the +them +and +to +terms +first +It +their +god +lie +ot +ings, +vihele +of +Banking +in +breaking +It +tortuous, +introduced, +cellulose, +lot +August, +if +illustrate +City +coming, +in +(ood. +fifty +larger +great +the +years +the +officials +Children's +the +listening +a +action. +oa +will, +distance +the +jioet +clrcumirance +entertaining +and +tho +to +universe +past +“Give +profit +coal +and +at +the +o'clock +Anders, +oiu +trustees, +Naw +from +meal. +the +1 +ol +as +days +even +odds. +now +and +way +put +But, +in +all +Gorman. +being +pressure +At +his +with +end +chivalrous +nord,, +swoop +all +see +vicious +does +the +affec­ +told +passengers. +but +(It!) +wilts +went +to +not +pbers, +occu +be +. +oeSSStonS. +auccecd +of +Orleans, +engaged' +weeping; +poli'i.-al +before +down +heir +pension +club +from +rat- +and +with +of +suggestion +superintendence, +endeavoring +is +be +luidens +and +maybe, +dinette, +than +depot +means +9o'clock +out +street +of +best +! +the +his +second +no +has +tons +in +six +and +House, +Rode +Wocun +will +Jerry +common +Jefferson +made, +retary +the +are +light +tin* +elect +Mr. +those +time. +York +agent +crittur- +but +their +a +the +chances +course, +materially +some +woman, +would +Fruit, +the +confiscated. +All +same +said +named +comfortable +O'Donnell, +ing +ovr +though +of +prove +commandant +survey +although +.n.r +homesick +from +"Well, +jelly +and +blähest +for +rapidly +some +Monette, +in +Nature +In +Jjorch +po'es +of +Mamalukes +iby +4 +meeting +knowledge +j +they +between +street, +FEW +believe +M +spices +be +Uaverhill +practicable, +Worden, +years, +fthe +a +After +city. +every +and +mortgage +,uardians; +sectarian +the +against +the +But +Ivuskus +of +of +in +our +stocks +the +Block +occasioned +their +northern, +the +be +and +one +be +him. +learned +in +un¬ +and +out +that +easy +ed +should +escape +bales +rrom +where +own +small. +extraordinary. +infancy. +thirst, +this +bide +and +and +In +into +markets +lot +the +be +the +had +The +somewhere, +; +walk +height +plaa +of +healing +will +odd +is +annoyed +eating +a +success +a +motion, +a +79, +flesh +year +ot +posing +youth's +S. +Sumter. +correct +A!ex +inward +caus­ +against +and +80 +aliens; +Mr. +E; +Constitution +gress +and +and +Impressions +NOW +caresses +power +news +ledges +honor. +be +payment +open +G. +by +hotter +mild +Mii{ht +of +worn +seats +ucation +a +mother +owners +Decembers, +dollar +is +in +valued +and +England +with +of +warrant +of +are +whom +more +of +men +use +and +to +a +discrowned +often +few +of +day +it. +all +penalty, +Childs', +the +the +renown. +resume +word-* +that +thin +no +against +bid, +during +pence +system +which +the +Corps +Not +taken +ores. +j +a +treatment +of +made, +Trustees, +Lot +they +fy +but +siol +of +Jornor +community. +lie +take +Ward +hand +sail- +other +draws +. +ti»*hing, +go +tiled +this +aapacial +wa"oas +be +letter +county +. +di +a +sister, +1 +the +be +that +would +deciartd +acclamations +little +or +out +pop +old +ties +birth, +to +well +niraele, +never +earry +ce»y +of +is +name +good, +relating +any +part +In +2,000,000 +mort­ +their +He +wa« +to +as +of +of +the +that +set +37, +foreclosed +town, +bears +at +months +that +year +presence +Gere-Ma +One +streets +these +of +of +in +Ik» +fund............... +answer +hai.8B888 +That's +of +however, +trustee +vote. +of +was +the +us +called, +hav¬ +and +To +it +grating +In +duly +follows +Pennsylvania +making +ectlun +aa +was +a +such +Oue +“persons +of +with +appUeatJOB +busy +the +daggers +the +a +feet, +day +relieve +fly +of +with +night +was +a +uarllamentarv +plnced +Jews +alngle +on +members +night- +Th- +hu +thing +Canal +he +or +would +Incubation. +to +is +and, +dition +tion +through +being +her +five +can +interest +Guilmartin +order +during +grateful +and +did. +Mary. +Segal, +and +them +Mr. +bis +May +When +at +bay +but +IIACos,D +to +it.'' +which +have +to +write +vascu- +from +out +all +to +their +he +and +gov- +us +Meagher's +Gard +|.if.i. +sailed +end; +the +noi-c, +to +with +tive +Guil- +which +contributing +yard +stored +after +holder +just +things +have +told +that +farmer +read +hearing +the +or +published +to +power? +exceeding +plaint- +never +west +and +the +ting +as +to +one +will +he +men +foi +iiie.io +which +be +are +or +soul +pa +perpetrate +ed +plate +Tte +to +who +many +point; +could +factional +ways +by +lines. +mentsof +Valley +facial +theiefore, +for +which +the +Here +harmony +tbe +exactly +Pennsylvania +guilty +22X10X10 +tbe +who +found +entered +It +side +a +died, +and +get +iu +bov. +tho +of +the +believe +near +the +uiun +as, +up +game +a +will +be +Nearly +administrative +When +loss +tbe +was +regard +were +point +bun +several +and +and +and +place +the +will +caused +to +F/eueh +also, +Watts +or +work. +settlement. +managers +these +of +and +was +actually +to +Lungs +in +levies +and +leave +starboard +Peas, +of +who +wrong +than +as +Akron +crowd +him. +Soon +PEW +D. +hav- +that +cases, +was +over +parchment, +search +de- +business +be +Is +destined +tie +coller^.ues +to +tbis +to +captain, +play +rapid +from +immigrants +make +par, +new +brand +of +glad +a +enabled +enlisted +that +J +saw +ties +for +Ssilades +26,4on +to +under +thenoa +in +U>«ecm +the +struggles, +3d, +resentatives, +points +and +then +not* +than +18GC. +divided +This +tears +needle +roller +this +so +action. +of, +a +for +vou +which +she +that +E. +unpaid +themselves. +the +Immediately +the +shall +an +until +goods +At +a +under +W. +make +girl, +light +and +show +meet +Sherin +tegun +no +be +fought +clay +as +rest. +tlje +trusting, +ehlMiaaaad +the +assorted. +when +the +1935, +into +Parties +very +'I +You +are +allocations +tBtmgb +and +early +floating +weic +a +rest +Liver, +In +iai,000,000 +should +what +unbroken +a +on +in +Christianity +upon +The +Spectator: +three +other +the +It +fortable +already +The +the +in +sure, +impossible, +g +drapes +$1.55. +through +at +and +Chicago, +forwarded +threatoaad +the +into +ol +wishes +been +growth. +thereby +done +to +Ofv +at +| +the +five +but +his +said +and +a +to +the +those +taking +lliere +hon- +planted +| +right*, +quarter +fore +with +hard +sugard +the +labor +of- +So +all +splendid +asked +cause +wholly +said +never +Seventh' +later +one +all +get +up, +& +force +be +pencil +to +now +nil +in +Britain +stand +broke +in +San +by +fecting +The +body +Connecticut +up +will +crowded +ight +has +to +may +to +. +she +would +is +fighting +the +for +by +effect +who +right +927,467, +Modern +unfit +of +the +of +Hoe +the +annual +shares. +Church, +and +under- +she +purposes +year.-, +should +their +who +have +the +have +ing +conscious +County +or +said +corner +not +behalf. +him +christian +japan +to +llounec +the +50, +only +raised +to +as +cwo +dead +L +prevent +a +as +squares +for +with +of +who +hit +they +pe-lls +"Cardigan" +the +require +from +one +accurate +in +company’s +Ui* +like +To +which +Pebrury, +of +is +mills +made +which +his +desecrate +fact +of +road +the +exercises +moment, +their +wish +gard +than +fur +life, +issued +. +ending +con- +this +to +true +all +proceeded +common +of +they +provided +and +their +For +Russians +men +point +means +and +his +did +to +easily. +W. +particular +while +Sid +company, +of +con­ +a +Cortez. +their +of +large +providing +success +whole +working +treasurer +the +beaters +tance +as +lot, +and +belligerent +place, +possible +bow +trophy, +and +west +new +The +tur­ +"On +fr'nJ +Youtsey +last +the +liim +being +iu +the +causes; +and +varu- +me; +The +are +township +Paul +Court +work +E +of +be +grades +gold- +time +UAmI +mountain. +the +the +Judges. +slavery +If +their +that +the +June, +him +the +details +E. +the +of +of +Intention +they +billows. +the +not +saw +and +There +will +The +failing +party. +sufficient +discharge, +Hillquit, +Still- +conflict +technical +Interest +nations +ferent +Miller, +inst +is +Danforth; +and +3 +his +Sheets +an +for +a +anything +Previous +w +most +in +oth- +matter +vention +being +found +rupted +England. +w +of +with +has +and +officers; +func- +Golden +extended +romantic +this +the +of +of +June, +of +to +have +he +future +sur- +white +most +has +several +the +Granite +case +and +." +very +pace +such +I +Dunn, +aspect +short +extra +up +itis +of +present +ing +for +entitled +country +crowded +scorching +any +nature +disposition. +Hint +would +ami +effects +The +1 +to +and +that +among +extracting +their +who +the +tho +others +and +the +black +can +not, +Pi +goodly +certain +place +1, +in +cause, +microbes +and +the +light +of +for +two +rncotna, +be +with +and +pounds +do. +company +lamp. +In +dyed +itable +God +at +lor +of +as +had +the +writer +the +which +to +praying +should +my +Peas, +Europe +a +Ironton, +Tbe +cents, +capable +New +profits +by. +signs +reinstated,68 +knows, +tlement +far +the +lett. +farmer +controlled +admiration +show +although +one +the +come +chief +satin, +done +elsewhere. +question. +notice +Jr +Vautler, +single +credit +tor +same +cially +novice +crop +mean +a +to +cus¬ +Then +through +law. +of +produced +about +inie +the +before +ride +so +silk +rest +fell +al +say +! +the +after +1850, +«rv +Obedience +in +.man +but +con- +ex- +anything +has +whole +favors, +your +manner. +their +iiiin +careful +has +from +business +ley. +notice, +ground. +beat +any +as +I +air +treasurer, +Coxswains +a +Preesaus +of +second +persons +Some +me +notice +Roan¬ +malign +and +btfoie +them +him +of +make +Mass +noon +have +Tiber. +and +where +and +mainly +an +and +of +envy +an +arm +dark. +myself +get +by +should +an +ad- +sang +Consol +from +the +in +and +So +return +whose +main +that +the +Tax +YOUNG +The +full +Gal +Sir +and +of +commenco +was +that +absolute +the +character +held +possi- +the +in +to +a +tcrita +rods, +tbosouth +them +yon +Ho +for +in +not +the +" +course +blindnoss +he +for +the +at +who +who +either +arniv +existed +th +Justico +him +Fargo +Bush, +lions +it; +poitics, +and +all +has +anN +will +soda +tect +(lives +early +was +lw, +lowest +disposed +to +tract +so +this +end. +him, +thousand +record +lock-up. +increase; +forty-four +bottom +holy +who +nation +and +Monday, +commission. +revolve +who +e +purpose +Kcysville, +security, +Ithlno +City +In +work +Mis +street +you +within +make +the +voluntary +iu +Carlisle’s +nephew +itors +for +it +making +fond +Minnesota, +wlth +him. +help +his +wedding +until +crop +gallons, +and +Dr. +alone, +rate, +storm +very +of +from +sgsinst +The +line, +vember +Nevada, +section +in +lead +rath’s +child, +for +objection. +Grace, +ing +stilking +other, +of +always +"Of +are +Mrs. +confronted +other +subject +the +lication +to +one +ttat +like +arm +could +creasing +not +Onions, +having +4's +the +secured +ifcñt +of +since? +than +all +all +to +or +will +such +leading +by +Co; +of +quar­ +Was +Taylor, +the +He +ly +tho +trust +nien +separated +least +bearing +lines. +and +do; +frote +011 +con- +and +Petersburg, +legally +and +the +acres +opera +It +corner +upon +H +city +They +increased +over +that +display +husband +difficultiei +clear +liver +while +honor. +of +sugg&btlona +always +of +pole« +for +Middle +Church +sc- +to +very +northwestward, +be +scene, +tho +about +Supreme +'Earache, +g +to +These +rolls +can- +save +of +not +deep. +o? +be +enjoins, +still +the +to +I +reason +they +experience +his +is +names, +plaint. +to +older +a +<»f +at +Tue +fish, +223. +of +repre +to +Rev. +demnity +or +few +countv +of +as +it. +we +it +cure +mires +side +con- +market +entrails, +Lord +Owen. +the +can +which +chronol- +through +Mayor +up +to +saw +munications +stantial +Howard, +the +crests +a +litllo +to +heats. +of +Tbe +women +thence +events +quietly +are +of- +of +on. +State +that +ation, +in +unfermented +growth +the +over +be +pay +to +West +bill. +hatred +cultivation +also +colleague +in +shot +somewhat +the +ambition +storm +roeeds +Jo"key +not +part +pre- +cities +muskets +Hercules +Ninth +ents +Swellings, +back +speaks +the +to +ihe +going +stock +not +her +standing +Washing- +when +fourth +eves +toward +150 +in +Now +(0) +should +late +ttic +her +asM +was +suppose +passed, +prepared +ami +War +had +We +when +line.” +we +somo +home, +Ton +way +ern +to +and +school +diseases, +mass +wbo +ibu +state +American +well +ability. +hot +any +good +shelf +ac +personal +evc-rv +who +have +i +ths +Minnie +eerniiiK +the +warning +a +fof +lister, +to +and +affairs. +every +shirting, +face +which +14th +it +volume, +u +now. +sessed +print. +of +evening +sessation +was +1). +accompanied +Hood +with +me +the +bequosts, +ttiier +however, +you +movement +resolves +ai! +Distric +were +bladder +only +Id +the +a +to +and +wet +the +ana +the +hospital +Riley's +ivory +will +be +for +any +a +began +appreciated +BSSBSUtlag +lie +one, +was +of +and +have +a +ono +be +maytime. +a +shovel +A +sub +feet +down. +quit. +reached +meet +rear. +ed +accomplishments, +tlif +was +proceed +Hastings-on- +one +bar +fill. +Peck +in +gation +troversy +practice +them +issue, +in +companions +did +Whittaker +due;and +state +slight +homestead), +battleground. +have +in +Daily +is +all +denly +coming +years +the +he +and +inquirers +members +shall +do +in- +Mr. +same +than +“Where +dnring +very +pitch- +constant +some +at +performance +would +but +tret +floor. +machinist +senting +fitted. +the +counsel +tne +dangerous +nursing +of +its +»ih +tbe +for +range +- +the +that +in*o +and +should +ad +and. +and +has +! +he +has, +ships, +per +to +*ell-laudatio!:. +employe +been +where +Lovnlnud, +Twelfth +have +terrible +with +and +subßtantials +hlue' +and +islatlve +received +endures, +? +hours +the +of +medical +sue +mining +unfortunate +and +to +other +the +to +same, +looked +l- +Btrongly. +down +Senate. +ron +until +George +pro +perate +suf- +ment- +away +Association +the +put +10; +ons +raise +in +spread +substantial +will +to +woman. +and +Senate. +so, +being +a +trav- +the +wasteful +the +ci +and +and +total +room +the +passes +e +of +rights +to +during +possession +black- +ihe +No +tan. +directing +expects +300 +post +North +yeara, +democratic +auditor +all +common +I +opinion, +ally +from +close +J. +whether +flavoring. +S. +of +mob +or +Pennsylvania +it +birds +of +west +demand +the +the +good. +to +Lawton. +mense +is +equsl +used +Colonel +hard +the +great +gan +that +hold +. +the +benzine +before +in +Mrs +ly +gun +so +Maryland +that +any +other +Uie +may +appear! +my +it' +met +vested +thousands +first +ill +it +Col. +largest +be +and +of +vou, +View, +on +the +lie +gave +of +now +W. +education +say; +purchase +shall +la, +intends +of +gov +Rozelle +being +whAt +Stricture. +to +2 +appearing +upon +as +exclude, +if +entire +the +by +cavalry +borrowed +yet. +greatly +a +thereof, +knowledge +It +class, +T +of +time +cents: +this +ta +the +all +stories +over +in +or +said +by +an +this +in +was +not +valuable +are +if +written +his +transits +house, +produce, +dark +remained +Uay. +Members +realized. +lliat +weeks +Mcßride; +as +seed +acted +present. +He +l +only +do +the +Shu +who +islation +skin +come +derived +tha +for +and +I +flour, +killing +The +i. +Internal +doing +started +to +often +unskilfully +years. +5th, +it +provisions +brought +thence +every +comes +laat +15@6 +bis +Vith +population +and +the +in +But +slender +winter, +tneeling +rear +establishment +sus.anteverslon +Rnd +make +we +with +the +hero +changes +Kipttdiinre* +the +not +burglar +expression, +He +forth +and +attacks +ejtrnwivel +indignation +generally +can +-Mrs. +stood. +that +from +great +natuial +west +upper-cut +tled +with +wide +suspects, +How +wood, +It +one +north +still +square +the +seek¬ +glanced +his +ends +at +be +prowess +of +case +dispatch +Already +our +a +well +after +final +by +lores +still +from +I +without +to +none +Arthui +County +Later, +lowness +the +pen, +ends +their +them +all +alone +of +right. +primary +Hathaway, +change +8 +aud +in +and +wily +the +purport +I +; +that +was +advice +of +1WO +in +after, +our +could +Tyudaii, +shown +popular +Of +V.Alexander, +Criatioa +Hast¬ +Alaska +which +the +follow +lous +various +to +recognized +her +injured +a +other +tlu +oolumn +that +to +of +cure +of +the +of +excavations +and +city, +used +who, +dealt +Bond +what +condition, +the +a +and +in +8300,000, +then; +Lindsay +and +quench +that +us +lie +an +from +original +e +the +dry +number +to +men, +foolishly +this +in +waves +reported +Pual +therewith +Petersburg +sus¬ +.qua +by +to +of +that +by +to +open, +and +mittees, +fully +the +zahn, +prac- +belt +is +rapidly +for +Uncle +improvements +foreclosed +wants +strewn +the +The +where +way +numbered +P +would +dam, +at +he +Mr. +large +that +be +3, +Helena +than +the +seen +as +Jesus +I +leader +the +childish +10 +Navy, +party +had +down +consume, +con- +his +a +not +30; +our +Tho +streets, +enth +1 +Amos. +was +relating +of +in +been +unusually +counstitnients, +tee +course +here +be +Citi- +improper +at +deflnite +sessment +so +larger +the +Surgeons +free +stock +Directors. +and +same +without +Party +secretary +Mr. +his +Slates, +Western +of +and, +capaci- +There +to +to +in +our +with +l?ut +had +you +"Ludlow +chcrishcd +vrolvc» +lost +tion +large, +states, +the +and +eral +or +i +been +purported +and +re-1 +place. +known +the +as +gives +the +the +flying +his +by +of +Then +Shfsec +those +dlitlllerie* +productive +canyons. +right-hand +profits, +hurriedly +with +the +them, +about +boro. +wall. +manship, +they +up +it +who +and +it +him; +with +Morgan +but +statutes +this +cuit. +12. +office, +badly +rowing +avenue +the +Ambassador +"That +believe +and +a +of +Mr +may +troubled +quered +threw +the +a +Central +stared +piece +er, +tient +with +the +claim +connected +ever, +(intering +lines +spades +If +Patron +valued +public +lu- +of +tax +could +of +would +had +from +as +by +inspector +and +Hays +anyway, +The +destroyed, +officers +path; +law's +for +the +com- +conflicting +territory. +many +lurthct' +acts, +all +Oregon +pool. +the +rich +maker +entirely +discovered +uitu +North, +federate +the +for +as +Fa +southerner +the +from +imaginative +or +the +vealed +25 +some +so +would +The +neutralise +Thousand +man's +St. +in +demonstration. +made +common +Itinerary +because +Rpler +and +living +located; +if +and +Jesus +French +Terrill +general +essential, +saying, +to +loch. +1916, +ol +upon +originate +with +butterllies' +kind +next +number, +a +description +say +good +ments +w +A. +extent +"war +of +p +Ohjeeta +in +been +makos +Errors +10.00 +the +really +$5, +of +the +aa +of +was +only +come +gold +brought +Sul'lvan. +believe +of +interesting +interests +colored +feet +though +I. +were +fact +So +$5 +black +some +who +on +on +machines +the +reap +the +supplies +was +inclusive, +also +will +sufficient +bu: +fat +having +town +the +Greely.Olo +to +will +re- +eight +self-styled +be +should +and +found +and +fact +"The +become +4653 +father +there +took +surprlso +I +addition) +without +or +Little, +years +cause +higher +glveg +people +navy +set +following +30th +another +limited +come +powder +should +ni +there, +Dr. +the +pair +Interest +min. +backbone. +to +of +some +their +tl +question +York +and +accustomed +board +do +thing +under +Bussen +incompetent +up +a +Greenwich +remains +another +from +came +war. +an +anticipa +The +in +Bennett's +invaluable +the +passage +desert, +the +horses, +not +October.. +average +the +country. +take +become +for +County +depressed +Treasury +His +In +trading +a +but +water, +Ga +nawas +That +like +grow +millions +in +pay +This +article +boys +link, +bridge +heartless +cold +a +amount +a +vouchers +right +too +every +satisfaction +March, +grand +sense +said +that +river +worked +on +heart, +a +victim +tired, +the +the +distinguish- +r-very +to +appointment +county +>vith +Moines, +Jordan, +Heitn- +10; +diligence +and +as +throat +be +and +foundly +Munds. +lock, +avoid +I +the +United +Within +At +the +day +up +nmte +man +the +believing +wit; +ren +ami +to +There +had +(1. +that +doubtedly +It +forms +ho +Flynn +to +potato +Its +her +wan +influence +69, +sixty-first +landed +pago +proofs +in +shall +Mr.James +pro- +did +other +shouW +be +by +caused +act +to +meiy’s +was +forms +$30,000 +the +was +alter +ol +foreign +arriving +Rolieitsou +montal +a +cattle +bigger +paid +bis +purchase +deniable +surface +the +feet. +It +in +a +slavery +of +and +teen +story +the +him +the +neavy +Oae +for +the +by +for +notice +however, +D +was +city +taken +ficiaries +barely +butdflflfl +the +strike +legs-—"and +been +July +I +The +taper +did +ol +Pope +the +they +is +what +tao +a +of +make +of +33 +foreigner +sharpshooters +Mayors +arrangements +of +the +two +extent +ended, +haCK>asd'Jdh +had +shall +stack. +in +riation +capacity.' +show +smile +the +Lam- +Wtli +responsi- +twen­ +a +on +the +It +to +unless +regulate +absurd +surmised +if +In +the +Stlness, +the +Llncoln. +ahead +the +to +Kentucky, +testify +case +a +on +to +stocks +7o +ideas +They +man's +three +to +ont +sepulcre, +on +each +Aa +comedian, +lit- +toal +of +for +Superintendent +the +Empress +to +same +yesterday's +headed, +head +lor +the +to +educational +swing +shock +among +thiough +meaning +main +the +but +forth +large +form +not +pioture +court, +that +region, +Governor +He +Brown +a +Rodger +, +the +surpass¬ +our +of +over +mentors. +on +slavery +bright. +they +W«* +has +generation +United +made +heard +be +a +girl +her +when +of +months +head +mild +pent +increase +of +for +Tak- +it* +Jn +with +which +in +of +working +he +in +radically +at +The +refer +years, +and +was +bow +he +Hint +basbeen +storm +several +Estate +dish +Some +is- +suspeeted. +con +this +afford +came +the +Iowa +ground +by +decided +newals +the +township +its +still +pass +of +born +I +in +dependencies. +hune. +generally +the +sword,) +mature +aries' +out +views +pro- +mass +discuseed +the +and +bo +he +details +power +, +nick +to +said +In +In +and +Mr. +state +the +chocked. +his +and +Triando +of +said +they +two +appears +other +If +the +that +their +the +be- +tbc +at +any +a +of +have +eca +antique +ventures +& +neither +sun +Johnson. +Duty +Tlsit-or- +se +of +Glory +branch- +with +and +as +in +tures +ial +their +ad- +baa +to +homicide +the +of +Cumberland +dishes +few +to +of +a +or +expense +friends +more +opened; +life, +an +he +and +of +immediately +nion +for +in +he +shall +his +into +of +Mrs. +poiut3. +Hpribg +Minot +upon +thence +a +This +would +payment +the +seied +sunk +was +Virginia +exp-rttr.ee +next +before +those +Mrs. +bat +farmer +will +Ueneral +live +eonfronted, +in +that +without +possible +to +wanted, +. +eye*, +is +men +mills +consider +of +to +city +been +of +because +being +not +and +Judge +ship, +In +Tho +therefore +Cicely +too +men +waif +water +cided +flMflbbd +dart +is +Italy. +was +general, +The +better +iron +suflicient. +constituents +of +appears +the +great +si +to +pomp +hands +by +anxiety +In +to +Ih +the +true +to +lira +be +higher, +she +many +unbeliever +tions +the +it. +Beeaea +or +of +officers +in- +Lewii +not +recular +intact. +conveyed +If +mortgaged +and +ties +flames +southeast +at +wants +and +an +of +their +Adolph +he +Section +consciousness +play +te +; +Crusaders, +subdivision +man, +a +the +his +8 +furnished +teachers +Easter +William +matter +general +and +Acids +Passed. +extra +davs +to-day, +the +the +the +four +Harold +to +narrow-gauge +their +year +the +physically +airship +bcts;npe +United +we +i»> +you +1 +totaled +and +f +Europe. +American +Is +the +national +beef, +further +keep +distant, +therefore +thought +his +great +make +in +that +iiihahitaiits +with +Is +sum +the +who +cences, +a +at- +the +merely +olf +to +bond +six +N +reb +in +ed +any +in +the +to +the +bureaucracy +suspicion. +in +his +overflow, +in +over +reference +take +The +business +price. +degree +mrial +of +the +to +That +158 +girl +Elliott. +addition +cannot +be +of +the +f +tort +sec¬ +more +New +the +her +and +the +disturbed +eternity; +in +manner +efficiency +dealing +33 +sacred +whuh +Germany's +by +may +recite, +with +as +head +the +Pocomoke +for +a +ladies +do +of +could +trying +In +churches +the +posible +in +the +State +Mr. +less +on +that +witness +by +death +in +of +another +this +fatal +to +until +that +foot, +sonality. +do +raile +to +there +Arley +the +8 +lbe +varyiug +sweet, +President +a +uiee +cotton, +the +three +Cliarles-sta.; +The +of +has +nook, +Arab +in +on +re­ +the +the +continues +23d +per +legslature +Bed +city. +crop. +tobacco +which +of +the +been +great +the +him +bodv +pilose +Rossi. +shall +referred +defaulted +Tbe +Fried +friendly +moun- +one +many +of +plant +for +is +distance, +caused +dor +secre­ +cleared +so +of +the +2620, +or. +And +cost +order +tax +or +Public +for +Arnau, +a +strongest +plainly +fnsionlats +while +account +a +Harris +pay +torpedo +Information +dictation +the +agriculture +between +door +been +pipe +Wisconsin +distributed +simply +Fred +each +speak, +after +the +Ing +J +of +purpose. +lurch, +Daaa, +was +to +and +ai +hundred +Natan. +information +that +was +their +out +& +tight +water +learn +Jamaica. +fresh, +twenty- +come +her +niiiiv +system +voice +the +the +in +ha* +the +before +a +romalo +and +business +lb +by +over +the +10, +so +do; +voters +southern +Long +'rincetoii, +by +saying: +is +nature +to +Executive +the +grounds, +they +of +studying +mystery. +to +have +and +institution, +a +tliickius:. +was +and +to +the +stockings. +9, +body.,. +Kayak +suits +river +fr.ee +ly +county, +stalactites +was +on +has +political +specified +high +the +feet +Swiveller +Saw +facts +$1 +cas +north +so +station +any +and +oil, +to-wit: +at +well +northerly +Proh.t +Mrs. +will +or +things +as +ses, +grief +cinity +Legislature +cir- +the +to +* +following +qnacks +consequence +of +the +Improvements +Vista. +In +Now +of +attempt +that +for +be +thought +best +principles +and +Canadian +whole, +the +have +of +the +trade. +cf +G. +Miss +shall +of +lho +was +overes- +mon- +be +catastrophe +effect +the +county, +only +same +involve +that +reads +thus +IOC +baloons, +be +one +de- +millions +gives +in +after +2 +and +'they +following +a +year +many +you +and +come +into +Band. +to +fear +turn. +at +improved, +by +respective +Ot' +life +must +pcoplo +months +on +Am +to +White +origin +friend +expense +This +is +18, +way, +it +They +in +Minneapolis +him +the +B. +bacco +ject, +The +notes +that +with +for +California, +doubted. +civic +end +very +Kingower, +is +government +next +follow, +out +Oovornniont. +iron +to +men +of +and +the +obseruations +prescribed +pare +vicinity +the +plowed +continued +T. +wori +I +instrumentality +Sou. +chosen +II +and +to +give +and +any +the +of +that +ten +Latin +moment, +it +thousands +One +(E54) +on, +another’* +in +mother +county +the +the +Saturday, +much +in +the +of +State +State. +response +tho +of +mur¬ +ther, +an +and +jects. +in +and +wsra +the +question +two +duty +men +question +where +a +gelatine, +Ktn +i +smoke +boat, +-regarded +uegre** +min- +trimmed +bidder; +The +the +and +v +Mrs. +little +outrages +difficulty. +he +curious +of +was +he +was +provided +all +fall +Tom +have +clared +10 +ho'd +continue +law. +or +the +N +Herbert +first +loss +they +mill +said +ho +same +. +is +gave +same +life, +more +width. +been +aad +a +make +quainted +of +though +if +keeps +have +1500 +shall +there +dians +not +lanta +nearly +board +be +rle, +tho +trade +and +Mrs. +have +need +and +"A +of +what +paper, +people's +have +ing +heats +in +lying +a +be +Mexico, +miserably +and +hla +Township +the +till +the +will +half +having +of' +were +very +protected +eoneeaV +at +tbe +of +occu +to +of +forward +"U. +fire +of +a +teocted +woro +together +tively +to +Slerra +move +egging +roast +on +was +medical +rounded +one +vet +the +meetings +in +at +of +way +of +She +where +Daniel +I +wipe +which +in +usurping +foreign +received +petunia?, +one +appetite, +J. +runa, +one +friends +art. +engine +made +np +has +llrst +to +Tennessee, +of +such +ease- +of +have +of +in +chief +act. +taken +estate, +navy +parallel +outcome +agreement +of +1). +sec11; +ratification +a +cembor +composure +aud +and +sides, +In +told +Charlie +part +tho +to +some +are +each +lieve-lie +minds +of +sooner +farmors +pounds +No +steadily +Southern +maxe +the +to +Norman +only +in-iuired +and +Erin. +of +on. +which +of +these +lines, +the +lines, +Valley; +and +ana +assent +of +clouded +the +brick, +himself +regiment +conversa-lon +was +proves +no +explored +chase. +jaw-bone, +as +great +the +stale +the +parade +investment +istry, +Bodwell, +of +of +knowledge +which +when +a +also +many +there +wire +forenoon +elements +will +West +all +linn +1 +and +We +iu +ntal +with +it +of +which +war, +glad +was +accredited +of +who +they +burning +exactly +er +end +fall +the +thereof +ROM +can +Re- +in +saved +whom +ance +who, +crusade +ing +J. +Some +fore +a +days, +one-man +not +is, +all +the +about +see +ever +the +down +a +any, +we +as +and +they +ad- +plants, +They +our +will +ar, +the +and +when +surface +than +get +Thi +a +I +tin- +the +middle +Alas +the +Club +me +was +date +the +in +is +agira +to +sling +a +brought +twice +we +him. +the +Chickasaw +is +OBse +respondent +a. +what +the +and +Ctas +wvho +measur­ +links +a +capital +at +ranch. +water +comforting +James +must +uft»-r +Wilson. +and +ab- +!n +discovery +made +to +aio +as +it +into +nearer +the +been +to +to +It +to +the +Peo- +tiations, +Minister +does +JSpjUhjern^raw +Leusohner, +the +for +feet; +necessary +Sweet +to +a +To +no +him +be +the +shire, +itself +need +every +In +armed +this +those +as +5.30 +Is +ruined +Soderstrom, +The +Hinken +; +I +easiuilly, +had +nounce +per- +ballot +could +The +should +inter­ +During +comes +over +curable +will +room +at +unreasonable +to +the +action +supe- +Codes +with +4moke +is +unavoidably +One +floafon +a +the +ant) +'73, +to +plague's +smoth- +east, +"In +on +miiam +had +Ml.; +I. +38, +an +ti' +place +a +the +of +for +of +le +Savior's +records, +them +school +to +. +going +deal +everywhere +Tampa +1864, +unknown +or +his +thom +800 +upon +Mrs. +10 +of +Cabinet +and +called +huu +stations +whereby +distress, +knew +the +truck +grees +caustic +for +years +terminating +and +the +look +wished +line, +the +enough +called +the +boys +and +human +those +in +The +General +the +City +ex- +company +many +the +a +has +conclude +aud +gives +towards +sacrifices +are +laughed +the +living. +account +of +the +what +to +Rev. +by +hoth +Improve. +lh +80 +nothing +h.- +by +opposition +In +hydroelectric +about, +the +Wall +white +that +the +rep¬ +., +ation +the +the +blance +the +ad-j +plantation +which +cans. +the +crop +angles, +and +no +that +an +Thes«- +have +The +side +Southeast +Influence +to +putting +studying +him +Lonls +pledge +have +and +their +of +officers +men +smack, +the +one +scientists +contestants +room +The +Jaoobs +a +to +life. +in +ready +In +alsoi +tion +sions +in +could +cow +to +economies +room. +unjustified. +prevents +before +State. +large +Dougins +stated, +if +it +the +The +Workman +"us, +Indiana, +treachery +Ulcers +ills +first +sent +out +Captain +defensible +a +liy +of +cause +Direct +farm +after +Other +had +house, +Fort +ilie +tho +John +20 +and +won +Talisheek, +time +shooting +by +Treasury +Bell +more +finally +ing +and +nations +a +miscellaneous +truth +no +In +3 +of +that +(oncirt. +have +the +and +amount +liquor +always +service, +former +street; +is +recommend +that +industry, +battles, +Ids +the +to +for +especially +a +Tnat +3176 +Kuck, +banking +he +to +woman, +city +Molino, +Puraan, +tobacco +lew +ought +year's +says +was +apparently +Strange +429,000 +restore +tno +rest +of +would +regularity +Portia +la­ +of +the +who +second +tho +church +deep¬ +Medellin, +natural +nor +very +in +so +native +Wile +county. +tkmal +more +Some +twenty-six +Speaker +one +from +he +broko +bin +west; +he +Hopkins, +though +tho +building, +wbo +material +section +on +sociation +(Jod +one +e. +found +them. +the +labor +a +whit +would +be +he +are +his +hvinied +borne +southwest +cent +the +against +she +tiie +the +1 +meagerness +dining +association +beef +to +again. +has +the +have +or +corn +own +came +had +ged +from +difficulty, +Democrat +three +the +of +were +in +to +money +two +usefulness. +of +solidly +such +Mr. +can +tion +the +the +the +scription +Lee +states +since +fields +of +but +on +lien, +plan* +time +iiiUnd +a +the +IM) +w«de +Interest +concert, +really +Iward +opeueu +the +not +bloodhounds, +and +ideals +famIly +corner, +San +The +that +of +be +ious +send +the +lantic. +to +tlicaccuinulated +"In +three +tbe +of +differences +tens +at. +for +the +Asia +each +the +really +having +case +the +specific, +about +willing +and +cordiallv +was +May +sell +ring +to +People +with +formed +Chrome +or +very +lat¬ +irom +few +the +been +tives +clare, +ir. +tbis +gain +The +out +In +some +to +by +tractive. +ble +the +he +the +of +anil +remarks +Smith, +and +of +aud +tuougn +that +an +with +section +that +in +the +such +John +suffering, +God +more +mind, +modes +bid +min- +w +wise +our +postpaid +trustees +for +care +the +seat, +webbing +leave +main +mistaken, +cleanliness. +deliberately +a +my +for +are +candi­ +Lee's +warehouses, +could +through +the +of +3:30 +babies. +would +hoarsely +home +to +tongued +all +to +east +our +the +those +bril­ +not +is +blood; +election +liberation +claim +of +the +thru +thus +helow. +found +W. +R( +a +aloue +Mrs. +beg +for +anu +fore +was +record +is +Hyd +was +westward +by +Canon +all +danger, +rior, +soothing +231 +ol +and +large +tiger +coal +believe +land, +(if +sons +summer, +($10,000), +who +saloons, +he +it +hands +the +L. +McLean, +partake +his +speaker. +a +laaa +extraordinary +a +ten +but +I +with +or +the +inquiry +1 +toot, +in +muslin +not +and +water +Thos. +firmly +look +the +while +after +seen +about +and +as +drove +It +away. +strength +published +three +would +¬ +of +mutilated. +circular +amiable +to +annexed, +1-6645 +in +bat +Block +out +1 +ing +a +the +Jefferson +hv +the +the +faces +reflect +socibl +by +so +10 +to +lor +nursery +daily. +Henry +known +fine +animals +God +does +which, +at +as +moment +lot +economy. +tbe +Sheriffs' +of +l\ +the +But +and +Uriah +14th. +by +see +greatest +and +and +heard +south +was +to +the +the +Enterprise, +farm, +great +men +east +drawn +too +of +moat +for +administration. +estate +that +the +little +morning +anybody +place +legitimate +Richard +of +would +reiih +lace, +riew +which +properly +Cozzcns +his +lie +by +now +the +in +more +for +of +is +use +a +that +I +can +by +I +that +was +superintending +placing +reflects +the +Chelsea +will +$1,500 +coast +the +in +hersolf, +her +Eugene +Warder +make +Your +for +. +degrading +peace +the +19The +report +equal +with +fire. +her. +wreck +will +NOTICE +lives +captain, +French +frozen +and +borne +be +mln. +Webb, +to +two +once. +vote +one +tbo +J. +from +streets, +only +review, +to +reply. +a +yacht +having +pride +equal +I +thizers +tons +convinced +of +producing, +any- +of +by +be +people +the +applications +His +our +low. +and +of +by +had +I +said +or +larger +reposing +the +bone, +Chicago +price +for +other, +band +morning, +on +A +to +er. +ding- +A +sa- +through +the +mother, +to +be +you. +nothing +had +delegate +two +Give +to +in +E. +seem +lons, +per +dreamed +boole, +tiny +Levi +kaowBaatbs +As +in +dutia.s +vice, +when +he +reach +It +will +pointmg +you +director +memberf +will +and +Louis +taken +Mis- +men +but +arnt +The +the +most +shall +of +lightened +rages +Next +expedient +for +the +must +and +that +Block +the +an +worse, +the +iinpoteiice +The +or +had +boat +just +South. +Adam's +walked, +that +come +lit +a +from +Taylor, +out +But +of +be +that +church +oa +The +Department +plain +erty +Today, +fact, +th* +to +main +newel +Rev. +opposed +to +were +In +In- +of +The +the +should +gradually +uod +Be +forgetful +expected +$1,300,000; +in +rll +deceased, +you +cold +Colt, +holding +on +which +Denison. +bit +democratic +The +and +man, +unfair +S. +tavern +France +at +tax +declaration +opposite +colleagues, +services +each +first, +liberty. +year. +in +An- +allowed +see +muscles, +Canadians +along +011c +any +M +in +lyzing +any +her +which +years +Ok.Ua +force +from +end +plant +at +around +and +around +north, +lie +more +should +in +waiting +stone +of +which +lambs +though +mellow +Gamecock, +getting +iepeasinitdidnothaveasignofaweavi +to +the +hour, +the +feeling +way, +pros- +boys +A +Stale# +to +be +ever +ing +one +few +21 +Bob +has +buntera +ilso +few +th< +which +evening, +decedent, +even +scribed +well +calculated +sunlight. +it +to +good +with, +sweep. +reckoning +his +This +py +to +ar,i| +Cass +the +cut +thair +.copy +th +badly. +feet +still +of +is +kick'of +increased +while +If +But +un- +at +a»ven +scented +which +name +unhappy +ship +last +4316 +for +times +rurest +stepped +had +on +and +young +Rochelle +House, +means, +much. +suits, +plane, +to +oppoded +telegraph +provisions +the +;tantly. +authorities +simply +sized +of +rooms +governments, +pushed +plant, +ground +the +is +27 +terms +war +crystals +of +jlways +the +object +landlord +n +with +party, +Wheel¬ +together +at +ofblock11;Noe.2,3, +4,625 +Oklahoma +from +services +pawed +No. +be +a +N. +careful +The +local +domnin. +for +voted +crippled +is +pleasant +the +kepp +de- +the +grounds +of +hundred +nation +- +in +we +le +of +interested +Pat- +ialand +feet +10 +the +East +of +will +sheriff +to +thunderstorm +cost +bather +cannot +directed +less +(esiiecially +blessings +(le.ioneat +the +the +worth +and +of +We +; +footman +in +and +ers +a +lungs, +no +the +2 +from +trical +Provide +Huns +at +the +This +C. +filthy +of +and +10 +of +north +more +the +on +foundation +haven't +a +respectable, +.¦d. +10:30 +of +of +194,125,000 +to +ij)cci;ully +upon +worth, +act +countries, +our +rel +block +as +2 +soon +but +the +of +$10; +FUNERAL. +be +Of +Warrimi, +sure +picks +which +found. +haugeabiI +bo +“the +cities +Larnorie. +8, +to +and +rommttoon +to +UNION +to +all +of +feet +a +If +operation. +of +neuralgia, +said +shortest +w +alacrity +terms +to +p. +for +begun +a +garden +pending +others. +rights +peering +fol- +It +properties, +Miss +await +These +eral +court +our. +Small +forest +of +from." +The +agricultural +OHEOON +accordillg +high, +laration, +out +whom +marked +The +matter, +an +some +photographs +Diaz, +In +work- +E. +of +the +the +ha +He +sion +auto +ing +rr +wholly +But +31 +and +lu- +Few +“indolent,” +length. +physicians, +Ml' +'.« +whom +a!ti>g +not +of +night +three +find +went +who +to +delivered +trim- +com +House +day +our +ro +electric +a +in +to +ostentatious +last +lady +solver +endangerin; +iamsburg, +him +nay +and +Paul +the +company +bash +in +That +Mr. +Nel +detained +130,000 +lawyers, +jealousies +an +is +Inclusive, +I +the +Thc +Olcott +at +Sun- +aud +Purchaser +of +perhaps, +style +the +by +and +song +worse, +his +teachers. +on +"that +and +with +In +child, +The +ing-place, +Metho­ +the +produce +race +Rt'iKJLKS.In +is +laborers +culti- +reached +the +1872, +North +two +and +trainer +hus +night, +Not +and +pain, +to +several +Whatever +him +It +Barbers. +are +cory +on +the +the +With +kind +remains +up +stocks +certain +ess +towns +hare +a +by +interest, +and +the +Perplexed +as +the +they +but +plants +tbreee +seeks +find +country +* +for +for +the +the +throng +which +of +Men, +that +Vest +the +be +was +to +spread +year. +his +the +furnished +be +ot +of +A. +your +ball +crew +full +air, +his +ccnteredin +from +of +success +ers, +the +urer +and +consensus +to +it +the +know +Effeciu +affections, +a +gilded +be¬ +estimates +the +the +the +time +has +coin +If +late +■■ +Which +the +passengers +and +speeches +hadnt +such +her +to +honesty. +very +irSij$fity, +petition," +apparently +to +with +yoars +years, +It +debt, +ex +and +Board +forenoon +in +onl*- +H +and +was +in +Emiua +uol +So +operatic +the +said +transformed +57"Y +caried +selves +of +(inirkeii +refused +with +point +are +to +this +the +was +vory +or +crushes +far +country +being +bft +the +the +of +per +and +Mrs. +filled +a +the +too +Virginia +something +of +returned +extreme +Ten +the +the +. +ls +to +of +his +working +of +And +our +feeling. +when +Thursday +the +Hood +in +a +1,200, +is +ist +It +offspring, +preside +and +to +u +time +this +tumbling +the +and +. +the +of +book +hands. +an +the +angles +ding +to +bbls; +maps +the +confident +delicate +only +that +proud +a +to +tncunfer +only +they +ladies +base +every +v +cussed +ing, +the +of +principles, +not +Miss +to +or +it +sincerity, +the +., +the +Miriam +The +one's +them +2321 +ments +officiating. +one +a +of +as +examination +daytime) +five +no +irregular +53 +"Sec. +tho +among +evidence +attachment +tread +saw +smoke +which +are +the +are +great +said +to +in +col. +with +Solomon +other +he +and +after +case +80 +a +January +light +to +of +Co... +collection +As +convinced +save +by +County, +Woodrow +of, +guise +sion +Amazon, +er. +. +and +little +much +verse +and +dispelled +has +gambling +in +of +any +ess, +the +attached +it +sea +of +to +this +of +to +his +we +'General +takes +tother. +liat +car +had +arouse +and +Mexican +to +tolerable +treaty +half +the +the +had +who +by +our +the +intense, +the +oeuomts +live, +young +no +property; +1 +south +and +people.— +and +allies. +this +years +Is +of +The +pneumonia. +dona +back +presented +the +tho +the +(Owens), +easily +made +chicks; +Collin +date +paasengcrt +ing +and +that +the +side +being +more +Vanden­ +the +not +fry +Ponlsi. +2, +that +their +is +for +hearing +gocdly +back +there +of +the +strator. +Just +characters +Twenty-eight +passed +a +peraon, +bad +Tuckerman, +fair +knowu +life +Jorgensnn. +has +prohibited +the> +extensive +troubled +to +their +result. +Cqmptou, +of +ple +until +feature +of +been +opinion +that +conclusion +shoulder +bed +reverence +may +be +increasingly +I +this +being +the +sion +burn +its +to +western +G. +leave +be +civil +none +Wilfley +ter +the +japan +via +aeraurred +tilted +Ethical +Court, +his +grown +spe +Armstrong +the +that +question, +of +N. +taken +of +program +mystery. +Fifty-four, +world-wide +telug +the +Myers, +hears +to +the +the +What. +care, +nny +low +rlhatis +ao +much +heavy, +any +the +feet +leisure +condition +to +to +innocent +110 +premium +he +used +walls +till +extending, +the +of +he +six +and +ment +out +The +such +to +Ac., +self +hard +The +Beauregard +easy +a +to +convened +of +is +days +gather, +tree, +Were +here +ill +hint. +you. +are +was +il +formerly +the +pupniar +it +so +"meanies," +tablished. +and +oouotry +and +and +7 +height +worked +on +earnestly +grapnel +he +by +and +ol +lias, +not +of +that +tors +releases, +too +from +gadc. +a +the +it +wifo +Mr. +Hopkins +by +time, +also +His +atroDhy. +to +the +in +it +consequent +retain +through +debts +work +First, +nui- +an +she +any +regiment +the +of +attempt +power +ring, +or +obey +the +ther +out +people +many +this +it +be +locate +the +an +the +hot-oil +A +psjenie +get +will +bridge +di¬ +camp, +seen +to +Fair +every +capture, +cially +year +face +the +suspend +install +interests. +School +are +a +free. +and +them. +or +summer +time +a +have +forty-fir- +at +the +the +steps +his +of +while +and +week, +lorwaog. +Eleventh +the +sent +$6,- +fully +is +in +of +market +appearance +who +.81 +ol +where +that +to +huge +of +engine +tbao +I +the +articles +l'ntton, +It +well +and +must +what +as +Mount +are +a +attack +or +remained +Gore, +under +I.V +the +filing +of +liver-complaint +bard +Bquuro +cause +Ol +of +times +within +international +They +chains +remedy +I +sylvanla +the +this +tailing +scenery, +violation +bore +n +the +every +votes +Virginia +at +eleventh +told +McCarthy, +not +of +miles +a +it +with +of +along +is +his +of +impeacher +rate +Ask +Rautn, +that +turning. +thirst +the +one +a +In +December, +attracts +1797. +her +two +in +Fletcher' +it +to +their +rudder +1918, +The +some +It, +longer +pro +wcok +as +dated +an +cation +of +respect +placed +mever +back +three +Tne +dcuy +because +the +M +by +21, +scent +claims +same +to +to +the +lugar-eaoe +then +fearing +That +face +12th. +in +way, +cure +aro +although +at- +bay +are +brothers +made +European +to +Experiment +any +powder +for +dent +people +year, +Redwood +compelled +Fashions +the +Many +on +completely +prepare +to +Is +or +under +which +horse +tonnage +as +be­ +of +Pacific +more +teel +gul's +retired +When, +team +interesting +or +alongside +the +weighing +to +Supreme +or +the +triumph. +of +and +011 +and +the +be +might +Resolved, +preseiiee +the +of +boru +to +having +thnt +to +Kodrigo +liner +it +shouldn't +of +and +Ue- +Juarez +oned +financially +the +country, +and +the +and +also +old +Com- +Unlike +lhe +gard, +there +government +ment +at +The +and +is +banks. +it +prayer, +The +of +face +double +most +sought +woman +Um +the +hung, +on +en- +and +of +its +a +and +my +to +shape +American +expences +the +Dakota +1st +the +old +and +tosses +tho +been +so."] +of +would +murks. +house +will +stld +of +is +to +plant +the +, +ken +in +of +every +question. +Have +cratic +m +dation +cer- +the +ponder +to +postal +others +no +r +but +later +there, +detective, +ker +the +mado +a +the +administration. +of +or +estimated +altar. +minority +task +said +more +scissors, +headed, +as +may +or +be +auu +four +The +opuUuon, +paper; +desk, +now +reduced, +wilderness. +the +mission +ciety +you +loved +Frenchmen, +rows +the +words +and +board +force +and +and +closing +in +to +between +failed, +all +Lf>a»e +assistanta. +CoL +save, +public +probibltiou +of +day. +As +ner +most +that +were +diseased +dam's +ensark +James. +opinion, +John +of +permitted +this +arrayed +of +pearing +dollars; +the +fes- +shall +Heyer, +unless' +showing +counted +apparent +ing +for +most +/ +bottom. +of +very +celerated, +side +would +nished +tions +reorganization +standard +all +rage +then +notice, +entrainment +people +sac- +neoesesry +often +honest +1c +good +script +when +overcome +Then +directions +or +property +beet +created, +to +6. +.granted +it +the +Asia, +confined +to +that +is +sacrilege +and +will +twenty +by +1 +at +the +heroic +escorts +upon +my +it +n/t* +the +parochial +should +ono +syatem +for +according +following +her +and +An +the +unasslmllable +tho +with +ca- +in +in +to +entertainment +how +away +debarred +wars +cannot +conceded +to +only +a +150 +betook +this +great +"right +be +are +seem +describe +was +bad +Pittsburg +me +of +happi- +row +man, +19 +hopeless +usually +eighty-eight +so, +the +It +There +thorn +nearjy +Kaahutnanu +rival +revenues +patriotic +is +dartas +other +contrary +your +Isaac +impossible. +Rev. +all +cantile +was +space +and +ens +covered +bill +March. +activ- +ex- +He +to +feet +on. +give +to +five +we +minister +Itself +breaking." +to +against +dally +League +branch +climate. +be" +about +was +it +Stevens, +below +from +tropic +many +Fellow +state +from +8ec. +who +subvert +in +as +the +arrive +They +specified +as +aaaipa +is +year, +to +retire +many +his +dren +Sacramento, +a +mechan- +established +bo +and +mentorannoyan +scan­ +no +the +those +of +there +tion +meat +ized +what +at­ +Lewis,clerk +her? +again +farmers, +tho +stronger +little +after +speechless, +one +to +Plume +like +take +old +could +that +i +Indiana +ings +vision +or +mouth +equal +of +when +of +It +professions +of +and +so +decided +by +freely +flesh +Tehuantepec. +Columbia +imposed +than +on +entertainment +and +I +a +which +the +of +paidl +men +under +one +to +and +well +has +a +An +their +and +patient +feel +rich +train +ceremony +attorneys +hi3 +ha've +drawing +shot +the +one +for +Rev. +Interior. +a +tired, +no +demanded +merchant +16th +order +and +of +tunately +J +way +evergreen +uj* +riz +of +bird, +Fannie +of +as +prolonga +plishment +who +on +take +tinguiiihed +for +The +but +been +according +took +order +Mar. +are +Inglish +the +fronted +the +to +tention +the +and +of +railroad +regard +is +can +the +provides +of +at +bor +with +for +and +toward +conversation +born +through +They +ple +iandet’s +handj, +The +coatwnipUtio»-*» +how +laid +brief +“Mechanics' +him +tell +from +not +urging +into +to +a +up +informal +and +not +in +distinctly +lurray +was +He +Rico +ner*, +water +arrivul +pieces +same +years. +and +and +seems +frequently +wa­ +to +probation +Is +their +was +connections, +eyes, +weeks? +head +that +and +a +on +as +was +a +things +m +the +tiu +will +Toledo +rest; +sioners, +Winchester, +least +morning +a +entry. +at +if +come +Impressed +so +farm +fact +contest, +out +of +ravin +amount +surface, +whether +really +head +$21,-7 +locked +were +containing +for +box +could +made +boy. +preft +times +be +Wis., +worn +him, +b< +verify +may +to +and +Zanja +America +the +down +instanter; +give +with +un +es +must +laws +the +with +sickle, +three +give +relatively +stolen +the +of +No. +Set +symbols +denied +driv­ +dying +There +Camp +county, +the +ami +more +tee +which +were +mills +The +-well +porations +Mis* +pavillions, +his +who +Mottopolltan +flowers +Kev. +Hong +ave, +above +see +furnace +an +the +court +to +supplies +to +and +Merrill, +first +twice +•be +impltments +hands +from +ofiw +shall +amend +out +at +the +glace; +them +done. +distinguished +of +the +sell +a9o.5 +the +lower +state +of +service, +In- +and +The +duplicates +held +or +the +view +1910, +him, +of +the +of +Lots +is +lo +1593] +(be +but +prolonged +was +has +range3o, +istonishlug +for +the +preims +have +on +opportunity +worth +this +minadas +the +be +sion +fcrlylug +state +respective +Breckerman +The +as +neglectful +origiu_l +sold, +Indomitable +bonds, +finally +the +using +question +make +deep +ulcer +secured, +suggestion +when +the +price +hired +evidently +our +appear +be +prices. +Ika +sUU, +of +the +K. +ceased, +for +kick +display +by +the +the +th« +Raeures +el- +Melvin +thought, +ern +a +excitement +and +to +Lancas¬ +had +in +door +a +for +from +room, +until +tbat +floor +to +Oi +strong, +Afterward +Jos +complaint +whatever +nent +its +the +youngsters +the +the +wrote +to +on +American +measures +market +2.20%: +little +Quilt +in +rule +forty +Is +Whr +lying +foot- +have +for +locomotion, +resume +and +Sergt. +tbe +they +a +mosa, +do, +gladden +buried +I +ticket. +ceeds +appeared +Today +and +in +orop +front +ey +against +us +the +N +liuaucial +State +Corporation +investigate +that +that +were +leaders +of +such +at +the +mortgage +General +and +left +Convention. +playing +ray +sold +comfort +imported +until +the +was +looked +plant +duly +the +of +sum. +advisable +of +$1,250 +as +during +Substantial +side +and +Canal +lady, +sponsible +County +and +lar +toward +Herried +W-horse +exclusion +leased +point +who +years +do +»rraet +present +May +of +to +in +bo +that +small +and +pre¬ +city +As +blanks +to +choice +board +dne +girl. +on +(a) +a +Mrs. +thousand +me +There +crush +Laws +was. +scieiicc? +which +towns, +other +itself. +to +the +to +all +mainly +All +the +until +avail +failing +would +"Meanwhile +to +day +not +is +in +first +This +give +drain- +much +been +much +giined +railway +the +ken, +placed +made +$4.75; +from +has +each +and +their +been +hours +Larrabee, +un- +young +Resolved, +aside +the +worst +I +all +(Stale +I +To +Rlver +and +refers +the +states, +dropping +in +acres +seated +and +awarded +said +or +muls +New +been +allowed +sohl, +possible. +provisions. +best +Houston +disadvantageous +not +Cutler +less +after, +50 +the +(22), +re- +Teachera' +at +ering +get +averaged +Oats—receipts +Bills +stealer +donated +in +magnitude +Try +at +15 +determine +board +bilious +Canton. +ona +to +transacted +ner, +the +Tawney +said +the +of +tney +and +class, +will +near +eight +the +principally +fail +cast +learned +hotels +irom +mldatream +to +the +W. +the +loot +Iloon. +children. +River +ton +V. +to +to +on +quote +e'rugglc +food, +Whetber +essential +,vh" +mad +made +French +resent +Boutheru +from +he +discount +his +the +in +Grand +that +lots +and, +view +to +im- +the +renewing +than +into +the +thaat +vehicles +to +such +desirious +when +is +finger +,'rs +assigns +on +green +considered +shall +right +shot, +of +ascend, +of +the +was +1900 +Larch +rocks +for +on +of +with +he +Mound +friction +says +with +the +the +(un +would +the +to +locators +that +that +that +note +marry +At +The +money; +disgrace +flying +acting +one +needs. +show +river, +Agreat +honc»t, +stich +found +that +financial +Next +Lioutonants +upon +clamp +tenrpests +a +litorial +twin*. +with +the +block +In +sale +to +kegs +eyes, +lessons +would +that +the +7 +an +spent +promptly +ci +take +cent +oat +'rtr's +that +of +are +it +a +at +rraTidpoint. +his +be- +market +tho +cheated +of +deserve +180.1 +Brutish +took +that +ty +four +the +region +that +was +ground, +labor +hired +cases, +PiWStiry +W. +too +boundary. +a +it: +was +from +of +appointed +is +the +original +to +the +turnpike; +degree; +of +advance. +City +ninety +curious +but +space; +Empire. +oat +the +f +with +down +New +title +the +be­ +the +can +out +passed +We +dwelling +that +8A)«: +for +bat +and +and +offered +- +time, +of +the +caigo +steep +Quig-l- +felt +mind. +above +M. +White, +a +which +of +an +BETWEEN +Marr, +of +to +in +Pity +themselves +of +ic +models.— +Rivcr, +half +easy +bel +appeared +Ft. +opportunities +the +the +a +of +tho +vicing +though +and +on +of +us +schools. +but +\ +15 +can +the +alleged +for +labor +of +for +of +expense +»had +Terri¬ +of +dishonorably +Pavilion, +rare +and +it +kberry +thc +every +attorneys +carry +hosts +of +nothing +ill +42nd +the +Northerly +West +Waggaman +Leblanc, +events +children, +measures +keep +profitable, +on +(iitioit +designs +and, +of +went +professional +uut +and +B +so +deserter, +purpose +constitute +tants +to +consists +only +the +to +ought +wheelmen +Witner- +control +pro +and +welfare +When +iron +expectrd +about +beet +placer +first +sub +to +shall +the +beef +1884 +manufacture +espe- +the +of +; +be +real +husband, +of +all +reserve +offices +he +od +of +act +that +does +a +is +older +"5 +of +196 +and +sickness, +plan +of +had +said +the +manship +chin. +rippling +reputation +9.00, +were +fine +so +the +read +with +occurred +politics. +the +has +the +made +endavored +night +school +be +to +state +arrives. +more +pounds, +conception, +that +line +all +large +Chicago, +Surveyor +richer +angel +boundary. +antic, +feeder. +of +American +the +free +provisions +hands +crowned +feeling +its +would +An +been +sensible.of +of +for +holds, +license +ant +of +goes, +of +a +sneak +snowy +of +some +Favorite +havo +Koffee +years +will +for +100,000 +could +of +after +Jackson. +a +invested, +at +the +therefore +poems +full +hummer, +a +woman +direct +J. +will +Walker, +of +the +Lot +a +up +lie +question +tbuM +feet +lenst +to +hotel +ho +resplend¬ +that +journey +an +olaiming +dog, +decoyed +a +rights +take +of +to +by +each +Thus +Walter +executive +and +laa«r»ali +; +the +for +and +and +111 +Fayettc-st, +weak +-s +' +Pennsylvania +know +bush; +had +soli +magnitude +haranfaag +Phyllis +as +no +big +began +began, +Adíala.tratar, +from +exact +it +vie +had +. +well +first +oddly +Mist* +overwork. +cent; +leading +after +Now, +linear +inch +New +nor +seven, +49,000 +Clark's +! +say +topping, +printed +glnia +toe +he +whose +word +et +they +jury. +hearing. +the +plaintiff +degrees +one +list +The +North +was +Those +in- +vet- +Let +is +Sir.Having +made +my +Several +a +Mr. +the +force +as +At +to +oi +plenty +county, +stand +bonds +'erhaps +hoped +parted +aggravated +reins +tered +wem't +editor, +employed +journey. +dlssatln'tlod +carrying +their +to +Pearson +ilege +each +showed +and +of +entered +Clarksburg, +n +the +or +share +the +prescribe, +he +13. +ten +for +make +ization, +During +medical +said +I: +for +diafts +seems +you +his +The +skirt, +Thurs¬ +Jr., +to +iressed +he +United +on +tato +which +is +cured +naturally +deaths +far +find +capita +decree +their +to +Se¬ +victors +Foster. +he +will +week, +vote +night +Gco. +or +office, +works +sition +this +cours¬ +Committee +pieces. +located +haps, +England +brought +to +go +Vandiver +two +exertion +the +portiou, +a +at +white +little +48c; +people +meet +near +no +Portrait +an +was +county +challenge +the +We +of +much +of +by +From +is +knocked +velopment +hands +and +provisions +to +period +big +arrival +family, +his +contained +aluggieh +the +avenu» +imsition, +in +one +number +this +latcd +bad +women +this +Church, +There +aaeb +to +rhe +to +heated, +happened +and +in +Matthews, +where +He +being +of +own +door +j +the +stone +coarde +tl, +teachers +Young, +the +There +always +but +came +crowded +<14 +10 +to +north +the +inferred, +the +feet; +contract +sent +. +We +gown, +eyes +from +the +do +and +may +Hansrote, +Aftet +mill. +been +which +on +delegate +was, +whilst +ment +tends +that +a +level, +them +who +money, +water +all +this +It +estate, +endeavor +arch +The +furnishes +the +te +estate, +con- +the +i +county. +the +gutns +the +24 +and +them +month +the +Beverly +the +For +that +j +me +Deckman +central +of +un +leave +doing +lower +system +by +1 +and +you +Chron. +ness +of +»l +and +; +brother +purposes, +amount +were +- +wbo +gnat +on +and +40(1 +liefore. +this +and +a +white +on +the +thence +for +the +from +no +g. +the +inner +is. +roseate +good +no +who +be +the +we +against +Republican +committee +100 +grei +Gunts' +place +Teeters, +coast +leflgae +o +and +way. +this +unite +on +which +or +his +walking +a +a +through +public +gases +y +suM +bo +conserv¬ +sent +man +described +ry +Canaraie +is +as +to +that +into +tho +the +to +Lisbon. +received +of +this +dates, +strength +in +ment +filing +than +iu +of, +bright. +Methodist +No. +re-enforce +who +, +One +system +have +war, +any +education, +they +of +cost +charging +it +this +are +b>r.d +hazard +portion +and +always +without +did +to +days +the +war. +as +antee +Its +the +than +of +be +to +quenchable +that +or +day +old +loyal +fo +lain +embargoes +ally, +and +the +This +off­ +man. +no +the +of +*«i»* +other +and +or +their +the +an +we +over +Lewis +and +fields +Anson. +his +bankrupted +he +that +the +pose +and +for +lie +date +of +regard- +A. +every +thereof. +bill. +lt +to +in +In +him, +friends, +bunco +; +make +thing +by +I +dictatorship +Here +shares +iounaaiion. +a +to +the +a +and +Sometimes +bulk +Bathsheba +only +con- +and +companions. +are +duty +kind +meet- +of +his +was +for +closing +funds +arrayed +' +wide, +I +suid +engaged, +months +been +fellow +Blanlishire +57, +ufter +lites. +enduring +pensions. +It +broken +Come +eter +long, +the +as, +(lavs +rich +line +place +wrong, +The +tbom +season +is +which +that +iWO +night +the +Smith +grandma's. +sec- +No. +larger +oximity +then +liee +twofold +take +affi- +amounted, +It +by +theeo +and +"Once +and +any +crib. +of +10 +every +that +on +was +this +or +Ire¬ +)ut +Of +abould +a +bot +aie +he +carefully +alas! +of +of +through +Leadenhall +very +tbe +Bater +the +opportunities +here +attach +their +to +by +passe,! +It +also +"a +the +sweet +ingredients +same +Wm +14,18,^0,22 +Ikey +of +I +describ- +his +not +my +Ohio, +las +3. +Distribu¬ +reasons, +is +said +wit, +evening, +ment +pit +money +ea.'Col. +the +enjoyable +the +he +now +control. +forward +Arraw +pajlng +These +feet +tho +date +that +recog- +city +joyed +the +St. +ef- +in +In- +to +ranks +issue +in +-. +was +bridge. +MB1M +the +for +crowd. +way +and +became +gnyly +with +to +He +that +the +The +I +with +The +It +that +the +so +him +you +ami +shuttiug +be +this +without +gainst +times +THE +and +old. +of +said +incor- +showed +Justice, +May, +three +appraise +monumental +cannot +eyesight. +various +water +not +honest +mentioned +10 +an +One +complished, +upper +sojer-i- +be +always +which +been +the +If +You +Charles +mirror, +by +mason +only +a +was +people +of +edge, +Under +askustodoistodeclarebya +ever +the +consideration +which +death +alive +and +just +First +tlme +ihev +in +was +records +the +city +ing +nomination +the +being +three +from +waiting +a +and +it +you +and, +It +15.00 +the +umn +619.6 +return. +per +pendence +dare +ignorant +to +fourths +at +have +where +spectively +school +brakeman +Montana +bo +of +know +go +oftho +and +corporations +them +there +shall +cf +to +bearing +ary, +protectionist +road +and +until +shopping +foreclosure +agreement +from +not +potatoes +very +from +V. +warri +and +Johnson +is +W. +had +the +behalf. +That +placing +the +acceptable +tbe +and +became +was +was +the +for +ments +Hill +is +ancient +ana +hospitals +Board +less +the +laborers +freely +States +to +assert- +therein +closed +Bordage, +than +world +Hailon. +State +little +Momue +thit +feet, +we +not +produced +on +road +ashore +share +chances +or +vrHlk +Well, +she +51 +havo +acreage. +get +arsenal +most +Independent +and +There +I +the +way +offer +entire +The +pulverized +the +elx +it +are +to +bauble +this +obligation +slock +of +conntitutiunal +ness +uo +must +dose +products, +a +opportunities +thereon. +upon +list. +lighted +unskilled +and +at +of +Commis- +Fries, +bages +example. +Noble's +com- +army +bis +nnd +our +to +where +had +the +for +hearts +city +the +of +the +to +institutions +cillzSB +issued, +lor +rocky +maintain +and +delivered +comfor¬ +of +allows +mountains, +arti-ts. +bear +iority +fog +N. +the +on'.t +respects +the +star +lots +are +by +be +on +Treasury +command +the +the +crop +tiill +will +of +said +yesterday. +cliorua, +to +interest +purifying +physical +aoms +were +between +at +was +the +globe +raising +knocked +heaping +utmost +citizens +snatch +to +imports +the +Inm +over-curious +RIVES +ever +with +’Alene +bbls +the +one +ashore +him +they +ture +" +of +as +iv +because +do +00 +themselves +War +tbat +asMhough +had +Bulla +at +is +affairs, +dnty—and +the +wide, +good +and +fore +Lanes" +solemn +and +A. +the +that +the +her +to +a +lor +from +Mayor +the +either +fine. +Quilt, +little +make +one +wa +tho +discipline +heritage +to +ln +wnb +from +habit +M +for +three +live +Choir +in- +goodluck +piece +South +journed, +maintained +tem- +established +posted +noble +said +even +with +no +comfortable, +field +playing +usurping +composed +that +Mrs. +pitched +ooe +fnl +Virginia +noted +club +Hound.H.«. +utter +way. +proper +donald +j +over +LITTLEFIELD, +nized +Tbe +at +ury +tragedy. +Incorporation +fund +in +inside +slowly; +angle +port +gonoqinto +hji +deff +Baltlmoro +these +the +purpose +or +ad¬ +peculiar, +a +accomplish, +some +The +grotto +cxpoud +as +Kdginglon +tbence +a +tember +been +promoting +then'fore, +according +of +whose +much +but +such +this +as +agreed +turned +said +frmation +praise +he +been +this +And +them, +for +against +over +as +was +Atlantic +and +on +account +a +under +i +that +madej +of +. +without +it +is +past +these +all +of +he +seated +his +Latimer +a +officers +who +pre¬ +by +was +islature +decision. +terms +commissioners +the +deep +must +—nay +well +of +miracles +evident +of +When +patri- +pumpkin +to +and +hold +of +$5 +he +el- +been +our +interpretations +and +of +from +not +inch +indefatigable +shadow +pose, +place +announced +the +ordlnanco +ways +are +is +to +English +at +As +the +the +relation +Wright. +that +Rv. +and +8. +fashion­ +1829 +small +reporter.* +proposed +The +ished +Is +ctly +all +at- +store +islation, +he +eu. +adjuster?" +mode +not +of +As +ret +medicine +from +his +towards +quiet +doomed +have +has +of +nnd +for +got +of +for +were +Irotu +able +ot +will +in +5.25 +written +of +Interest +they +feet, +says,. +subdivision, +and +men +curious +and +likely +said +Carlos, +this +September +cessive +the +held +and +view, +touched +5uxunous +c.'.Humility +a +poor +Britain +the +containing +at +fiscal +deeds +to +the +aaeoaragad +it, +should +and +seated +Hams, +in +It +nurse, +ofvthe +a +The +best +over +there +foresee +Company +do +uitifthey +In +gowns +the +river] +extended +South: +leading +Thompson +is +ofthe +Wood, +owner +sand +sits +In* +after +him +sixty +the +In +it +Thursday +Warwickshire, +between +neoded. +probably +nf +land +the +cheek +will +the +went +living +oarsmen, +say +a +neat +infidel, +Bald +bushels +be +element, +sightly +the +6. +hid +long +of +4 +gross +dal +the +of +judgment +Is +of +to +impatient +as +question. +told +the +proposed +the +frying +not +subject +force +the +But +factory, +the +in +From +matter, +they +o' +was +and +Maddox, +the +to +Hartiea. +sent +Is +(iraudinothcr +Bad +virtue, +ag +In; +50 +and +grand, +worked +enamored +such +Thief +ehloroform. +the +wanted +Ratli.a! +I +came +second +of +the +material, +fervent +have +rather +England, +will +keep +as +cured +the +commerce, +found +roads +wants +and +final +wave +stampedes +ion +that +is +modify +make +the +pound +boy +fire +box +no +blank +help, +who +and +to +irom. +1st +the +saw +the +by +be +after +to +variety +to +have +up +ed- +The +Thus +much +the +of +and +dividual +the +bounded +degree +and +we +by +head +liable +bearing +with +Democratic +rounlriee +the +feathers +rate +which +(fa|N*-Ully +means. +slip. +leasing +the +are +Ira +but +the +or +the +In +lessees +M., +Franklin +subject +is +test.ify +that +nington +until +copy-1Test: +1 +your +with +by +h's +be¬ +stcne:s +Peabody +bis +of +the +In +Islend +where +towards +for +which +in +and +surrounded +one +Catherine +this +territory, +the +two +nineteenth +A +all +, +their +to +authoritativesources. +ir +earnings +of +immediately +ni +was +our +night, +Tiicro +st. +recommends +take +longer +church +It +of +a +J +Prince +fans. +Thomas +independent +the +was +to +Saturday +disposed +the +the +to +Pacific +ries +it +trial +t +called, +seems +we +have +bribin' +and +example, +bottled +the +old +and +E, +said +Dr. +in +tho +of +sup- +shot +inn +right, +of +drawn +.considering +these +Tricket +is +two-story +the +put +were +the +a +of +shall +are +by +manifest +not +emphatic +Indianap-- +report +opened +A. +deep +?#00 +thoaeoaker +actual +continuously +course +will +tics." +evil +the +and +i? +'nould +to +atmospheric +society. +them. +my +during +Everywhere +to +of +Iklrt, +who +the +seems +you? +of +were +spech +first +which +and +trails +tine +ment +of +in +of +dinary +and +to +ujjon +the +first +and +when +to +m +that +of +same, +of +that +lists +disbursements +but +The +and +the +small +cessfully +projecting +thus +a +clothing +of +80' +before +he +the +obtain +cherished +relics +here +has +that, +Trust; +all +61,000 +No. +all +revenue +and +official +the +He +Sierra +or +formerly +way +they +of +county +and +called +respected +the +much +individual +are +steeped +the +two +pari +have +Mammon. +when +The +who +each +uppolnt +It +of +at +(5), +to +ii. +con- +when +There +as +in +not +agitation +masculine +was +the +satisfaction +Ae-r +resolutions, +Lchl. +article +time +tho +quiet; +cross +which +2,000 +bank +of +of +reason +both +Six +Canadian +treatment +the +of +to +present, +agreeably +town, +has +Chicago +digest +the +appraisers. +Deborah +. +taken +of +was +the +No +and +in +surfaco. +ing +the +lnvlted +tion, +due +prevented +when +fas +of +most +for +party +paid +it +finer +bj +to +that +child +president +utilizes +party +diameter +should +(1K) +and +attempt +holds +In +than +but +the +Willi +to +proseeded; +would +wa +sucoes*or. +it +may +able +engagement +the +miss +brought +unless +States +Exaggeration +of +wry +offenders +con- +of +a +they +and +the +summons?if +two +honor +for +Union +was +of +their +excitement, +Identical +story +Clay­ +wlille- +clearness +an +and +were +instead +he +solid +here +tho +heap +old +», +mad +clay, +Blhle +on +as +divine +crushed; +and +in +per +ter +its +in +Years +great +is +run +pay. +Sigmund +passes +"will +M. +inhabi- +a +of +them; +m +and +ou +all +Mills +laws +the +abroad. +by +with +nower +the +alone. +and +wet +highways, +-. +with +this +of +in +tho +im- +as +un­ +one +thetaak; +up +on +just +farmer, +that +should +persons +hot +details +above +prob¬ +total +nniicijiated +These +iouowb +in +it +Royal +he +the +of +shed +bay; +anxieties, +of +made +route +a +are +again +car|K.t. +and +.Juq +Jones +the +to +principal +bad +realize +ly +not +have +England +distress +banks +land +pay +upon +hearing +bird, +hero +Island +since +shall +the +of +fied +temperate +and +but +ol +and +Western +ot +" +'" +aud +ne- +front +elo- +States +decided +to +fences +expressed +his +ing +twenty-eight +ncss +to +coal +down,’ +store, +Proctor +can +He +nomical. +that +of- +01 +ot +the +will +13, +in +gone +H. +Kerr +to +a +spite +in +Walter +Mc- +was +enjoined +any +S. +was +city, +with +offer +11II +, +priate +volunteers +to +this +fell +as +speed +the +It +stops, +certain. +the +per +pepper +stt +tho +have +one +(milkman) +itreet +mankind +arrive +material +ery +which +cans +and +$72,777,150, +star, +by +$140 +from +her +yoil +exposes +a +ever, +something +be +being +for +3, +of +them +feet +io +vigilance +body +are +elgbiy +a +company +the +to +They +is +there +“I +public, +can +Vh&t +pursued +is +too +lining +surpassed +; +four +Reaves +has +poiut; +as +no +hay. +of +land +our +residences +1«»» +ness' +authorise +and +being +Austria +came +his +A +by +or +test +the +the +contrary, +to +at +expect +ho +Kansas. +seven +of +providing +after +rivil +there +d +as +reached +foot +him +parliamentary +a +on +forever- +ivldent +is +his +only +such +supplied +it. +change +tbe +any +tho +to +the +fair +of. +the +from +had +his +to +Isaiah +him +pay. +force +frozen +wiilmtamiiiig. +land +himself. +that +hands. +sanitarium +ahed +this +W +extract +tike +no +to +McC. +Mary +is +the +no +one +execute +ion. +of +are +tVc +produce +minis- +arrival +large, +James +; +street +did +be +npocbryjtial +madhouse, +a +into +him +Legislature +is +fore +different +Mr. +littl +month +such +pushes. +a +democratic +developed +storm +rHnanMrnf +City +as +own +miles +hereafter +betterments, +science +eyes +the +of +Railroad +the +be +eye. +W +grasses, +family +this +was +of +the +sources +tbc +and +they +ho +instructions +auction +the +and +Becketts +recites +which +8, +and +aud +land +course +Mosby +employing +a +it +similar +communities, +straw, +policemen. +be +porate +part +the +tax +ington, +in +by +do +It +phones +families,, +on +attend +I +the +are +ed. +mills +ble +woman +few +and +ient +Hp +The +Oats, +see +cent +perfectly +stand, +race +times +were +Doctor +it +government +into +Butler +ry +contagion +. +the'namcs +The +Feury +catcher +point, +a +mention, +me +that +I +1878 +law +>an, +us +The +complete +ties +ket. +is +nt +that +There +last +by +principle +the +June, +saw, +at +most +ln +General +Viceroy +town +Mr. +enacted +are +will +and +with +of +boy +the +to +that +the +natures +the +and +thoso +expand +have +April +is +likoa +is +surprise +nt +' +purple +wero +N. +T +between +plan +out +village +SbS' +of +of +ing +discus- +thunder +efforts +with +west +lowiiiff +lasting +men +wife +T +in- +masses +with +deplore* +worth- +connected +ed, +other +The +earth +each +of +theirs. +dues. +Jealousies +flesh +say +in +nie +Mr. +have +they +special +woman +far +Hays. +attairi +of +powet +about +cently +at +proceeded +they +side +not +Servan +in +fractional +graceful +a +p4,nvay +mighty. +inquire +people +handle. +late. +one, +an +and +Fbder +upon +andabroad, +and +Rogers. +houses, +many +that +;i +on +committee +and +or +An +will +matter +and +I +tbe +a +than +Worth +refused +2 +Civil +hold +mile +her +all +ipital +cheer +a +steam +been +the +diameter +Trimmer, +from +Italian +at +it +day +of +winner +affected +exhaust- +to +to-day. +its +will +of +street +almost +of +The +of +the +stood +and +best, +laid +all +Mr. +Wheeling +those +a +there +punly +last +child +sequest- +are +tive +gathered. +the +furnishes +to +degree* +N. +the +was +good +for +demandedthat +the +A. +shot +par +Maml +as +land +lements +certain +will +aud +until +It +sick, +fine +guest +present +a +anguish +I +Egyptian +education +at +I +answer +not +up +and +North; +Involves +really +than +pic­ +joyful +on +mortgage, +of +Balti* +their +counties, +are +arguments +Income +no +J +of +of +them, +for +inception +from +amount +to +tion, +are +His +great +tary +do +B«diate1y +wa- +circulate +to +out +said +last, +benefit +the +at +published +ono +dred +false +entitled, +so +save +nth +of +from +of +rails +Sar^apahii.la. +a +portraits, +of +leap +the +at +Augustus +to +Mrs +five +Notice +southeast +ter +depends +tutlis +are +gaged, +do,81 +the +la +were +debts. +the +medicine +The +battle- +large +that +high +commission +the +not +lard. +heard +Of +ncrcs, +reg- +formation +Mass.; +which +to +cannot +Dal +sleep. +without +the +to +and +anything +husband +backward +to +were +presaged +ity, +aid +of +swells +the +refeired +It +nearly +the +will +over +where +door +the +lr.nd +and +a +of +Railway +is +Business +all +who +h +tbej +the +re- +bears +alone. +you +tho +ns +the +height +the +time +made, +above +two +Reuther +(except +early +with +for +toee +that. +They +is +said +understand. +places +class +spoiled +terms +Mrs. +gaze, +pins +wel- +850 +are +worn +New +necessary +level, +1That +copy +tho +weighed +to +1834, +poison +the +up +hellish +and +bid; +had +Township +pleted +so +line +l'rof. +came +danger +man, +the +Members +movements +in +me, +health +Howard +be +barracks. +had +doves. +fan- +in +rebuked +Highlander +at +a +which +the +Carolyn, +tin· +aroundthe +1.000 +Enthusiasm +owners +instsntly +He +send +Grt. +was +name +would +for +women +inaugurate +of +ing +out +12.15 +pro¬ +holds +dead +general +matter +Rev. +she +unknown +or +John +pasteur- +captured +When +d +they +the +tipped +one +some +not +color, +a +soon +both +another +spend +classes +days +fol- +and +thinks +gress. +Mrs. +tho +nsun- +parties +a +The +He +of +two +good +of +held +seen +i-) +the +ago, +ky +cups +before +in +prinoiplos +of +only +& +beings, +thia +"that +mittee, +United +the +her +all +for +which +of +among +96 +2 +aabMaii +some +into +the +be +wilful +political +in +aud +Circle +and +or +Un +the +that +$20,000,000 +at +and +The +M.iiidevilJi:, +too, +in +told +of +I +Columbia, +ri +les +he +came +this +and +Government +of +husband +the +He +for +of +har +day +MCMnd +and +given +from +keep +arms. +flank +that +at +cable +fairly +correctly +cy, +state, +N. +reso’vntlon +haunts +some +ceiling +here +other +1857, +IM +Choctaws. +fidious; +at +physical +date; +seemed +subtracted +30 +of +nn +not +It +no +ferred +me +Bis +then +is +ond, +on +stepped +the +I +the +knows. +ita +follclty +of +snaps +as +soon +of +remain +or +slavery +Only +still +slowly +man +case, +that +been +men, +running +the +two +ued +you +an +On +A- +I +to +found +Baltimore +by +by +show +tablespoonfuls +a +greatly +candidate +clal +of +to +compeli +record +said +baseless. +the +poitns +with +season* +sit +and +j +p.« +IK +politicians +the +things +to +passed +hands +Ladd +worth +cational +seas +then +of +bail +A +of +or +ciders. +ure, +small, +our +By +wheat? +extremes +refused +no +the +paid +for +notice +careless +- +and +from +took +You +for +laws +its +James +warrant +— +death, +nose +onlbs +above, +against +It +ceased; +for +E. +extraordinay +them. +conduct +cabinet +had +house. +larity +Houaa? +the +the +McKenzie, +ken +a +nad +try +no +Cordial +one +Statistics +and +the +clear +power +a +the +special +and +not +cent; +terms, +original +something, +is +whose +sitting +inner +eight. +th« +animal +As +homesick +the +to +lias +of +prefaced +C. +secretary +Germany—say +'sider-e +the +the +to +wife, +their, +cat +given +woman. +oraa +them +or +with +In +and +as +the +vis, +feet +stand +of +of +containing +does +under +the +of +from +already +pressed +ed, +Trappist +in +friv- +the +talent +attitude +i +being +property +ar +no +will +John +tended +proper +this +water +Out +gates +short- +clerk, +Immovably +corn. +Ihe +a +said +have +Ably +and +horses +on +interfere +them +feet +raced, +people +thoughtful +his +element +approve +statistics +pa>st +must, +compromise +utterly +h +which +"Western +the +was +In +the +that +miles +such +cents; +whatever +such +fabrics +ceased +way +which +of +join +had +and +pan +war. +them, +bill. +of +of +In +— +and +treater +! +hand +adviaed +not +miles, +that +to +enue +and +andf +her +and +service +an +Courtship, +for +destined +amendment, +time; +tu +Some +dam, +Earl +mild +not +a +feet +dull +farmers +enumerate +my +dent +organ +ens +Ro +Miss +and +and +on +sive +wheels +light-heavy +know +were +ball +mighty +September +M. +you +hot +as +for +would +’or +guarantee +buggy. +- +latest +near +an +Junewa +mountains +in +They +years. +side +possibility +priority +may +problem. +the +North +treaty, +together +the +Newport +President, +to +United +any. +place +may +unconscious +tho +rc.isouaiiiy +the +perpetually +tion +L +fronts, +tion, +states, +formerly +50 +eotton +her +at +havoc +Detroit. +forco +from +at +Italy +stranger +by +the +Survey, +paat,aad +$30 +probable +merely +charge +at +foreclosed +Stir +H. +heirs +pow- +and +those +war +Loni* +ticknemi. +searo +aucestois +to +called +then +be +sonic +is +is +i- +there¬ +lots +entire +The +the +chewing +writers-the +made +were +loud +McClellan +purpose +all +interest +the +other +to +it +as +not" +bees +to +The +North­ +to +friend +was +saw +mainly +from +bro- +for +St +uot +to +tense +that +time +us +24. +In +room. +Range +with +mistake. +sens. +arreeta +the +Coincr +the +at +been +II. +to +Jungermann, +running +bailing +bi +Jno. +Dillon's +periodical +and +3. +We +it +hie +very +defendants +dresses +tbe +of +liistory +brought +6th. +his +fjr +ed +to +the +off +icials +rich +mean' +led +fair +deliverance +Bronchitis, +in +live +of +a +swindled +at +rend +The +that +re- +soon +ception +who +. +among +Despite +of +and +ly +72 +in +to +must +chapter +the +with +of +physical +the +the +Towering +years +political +name +in +nnd +bead +eign +from +telling +a +under +Swiler +shelter +the +I'd +FIVE +of +said +officer +go*xl. +within +favor +the +chief +thi» +now +would +of +thieves. +Consumers +is +to +many +establish, +the +no +with +railroads +our +like +in +be +boy. +So. +and +the +av,d +three +'trirt +room, +season +Forestry +fillthe +intimation +the +and +numbers. +No. +IV. +interstate +successful, +calculous +relief +men +aiay +small, +thousand +line +tain +is +thing, +the +of +deputy +trade +otherwise +haled +in +Ihrni* +ceremony +he +the +and +wrapper +the +rubbish +__ngci«, +jheaver +of +by +m +comity +expense +have +amount +por- +in +»höre, +ject +smiling +she +the +any +spot +of +field +distance +some +and +is +man +dollars, +Clara +these +which +i +and +Is +all +months +"I +Walter +effete +examina¬ +into +as +8 +offered +the +30 +sister +L. +interest +to +hanging +An +a +31.00 +W. +city +be +in +the +my +I +extravagant +giving +of +end +of +now +bills +Blancbard, +In +Stripes. +Hogs +Mr. +leads +secure +enough +Tho +business, +with +slum +scarcely +the +hundred +photogr +sion +sufficient +Alien, +will +those +our +receiver +is +•i:r +against +submit +away +the +Hundreds +cill +the +by +lature, +Britain, +country +before +the +out. +the +forward +die +base, +etood +the +Whizz-z! +understand, +made +noticea- +third +Wilmington +’I +whose +in +support +let +necessary +, +also +Bridegroom," +to +It +wngld +No +would +the +intervening +in +dollars +death, +with +tloruanly +and +large +tell +from +It +handkerchiefs, +*30 +for +the +its +adise +a +and +For. +plication +the +valuable +offered +Ho +force +fall +His +and +her +away +courses +street, +will +Chambers’ +with +from +could +little +flag +Page +habits +a +Ohhl +property +railroad; +eovenentsand +ball +qualified +produce +One +making +South +portunity +the +has +rocks, +oi'all +"Free! +mu +Is +eyes +the +a +ratio +b> +and +'The +Kva +of +time, +the +of +seuara +may +purty +markets. +horse, +their +his +time, +ten +and +half +new +President +nerve +(air +iu +ornament, +for +one +us +lot +if +frontier. +please +Flaining +his +tho +snch +encios** +frost. +s, +a +not +the +French +respect +added +not +to +Mortgages, +have +which +probable, +large +1 +an +succeed +In +a +herein +this +from +victim +Observer +exception +In +of +oiegantly +law +be +you. +officials +Board +a +by +necessary +height. +was +W., +by +peculiar +the +its +to +next +letter +exhibition +thus +wae +the +No +it +only +either +on +that +women +ly +the +thing +one +more +had +The +all +Sheep +at +The +fao-t +not +the +of +prison, +satisfacto- +if +self-reliance +snut'iwest +in +of +feet +essential +seen +begins +for +that +liirtiand +waved +cause +would +car. +good +are +npBets +States +with +short +profession +script +in- +jaw +a +Lnio.n +parties +the +Liver +for +room +John +but +of +betersgee, +like +gliding +Warring, +whereabouts +Congress +popping +closing +one +England, +In +raising +should +shunned +on +from +keeping +to +its +termined +in +an +weapon +ablo +fool +of +then +County, +eyes +and +of +or, +f +bottom +motives +volving +Ho. +and +wall +Mr. +comers +alagle +the +and +persecutions. +need +our +this +discharged +simply +nnd +wood, +a +he +When +works +was +is +when +the +tho +to +1f +In +approval. +inal +be +thor- +honeymoon +thrill +of +of +payable +realized. +cent +the +dug, +you. +would +renewing +i>r. +punlshable +and +he +he +of +the +inine. +fact +have +a +in +depth +win­ +duty +1911 +side +extensively +Tera +haa +Then +free +f +South +of +France +or +Is +reconstruction +er +the +the +tbo +Littledid +VIH +of +whom +clerical +and +each +the +to +and +bed +friend +city +soki +to +Balled +transacted +means +for +fragile +learn +a +keeps +of +the +to +ental +front +them +in +be +days +those +say +mlllenlum +50 +hands, +bors +financed +increased +them +splendid +United +bottoms +been +which +democratic +deacon +1 +would +an +ordered +labor, +necessary +«0 +return +corporation +for +any +great +down +the +Nerve +pot +All +piano +this +talk +Diseases.--Persons +elected +the +>p +monarchies +Kraker, +not +him +a +fellow, +the +was +the +trying +this +also +prevent +purpose. +price« +a +a +waiting +adherence +imiorter +I +tbe +histories +take +year +jnce +that +which +case +mariner +re¬ +the +and +took +baptism, +de +of +America +Ilie +dnv, +for +night +•always +e< +feast, +prive +1 +and +fond, +walls +danger +de +not +Bowery +his +him- +when +The +•bona +as +the +The +and +offered +all +arm +and +hiding +nn*t. +add +receives +spread +seeing +Is +boundary +hard +Mrs. +country +leasing +power +the +concluded +Is +Ger- +Company +tions +at +tion +he +hereof +are +bridge +depending +400 +the +his +their +hundred +he +thinking +maintain- +wnz +senator +no +that +have +more +eve, +miles +first +turned +through +built +were +Still +eg +dollars, +come +prisons +world's +probably +gtrgucs +preserve +foundation, +b*» +H. +in +her +post +Tho +ton. +Miss +is +a +Solid +70 +to +prices +both +continent, +that +I +happy +the +claiming +and +come +bay +depart +practicable. +up +the +of +in +description +made +Jennings, +It +city, +at +White, +be +in +your +it +moment +con- +the +locality +part +old +that +Unded, +davs +it +or +cause +es- +vans +to +lo +bond +a +one +fitness +to +and +report +transports +sound +for +in +marked +and, +a +to +w«.t +one +niiireii +all +inches +whipped +has +of +home +In +there +was +books +Ninth +manufacturers, +right +such +be +through +for +authorised +they +ernment +the +resem +him. +ilcecy +most +it—but +who +return +chain +Horse” +a +ev +also +of +in +and +the +mean +tbe +engineering +the +hi +The +tion +or +foot, +New +variable +In +whole +2, +the +as +No. +improvement +note +to +who +to +her +ribbons, +Creek +talk +ple +town. +plea +the +the +on +Skagway +400 +Illinois +She +would +Greek +successful +but +an +purpose. +have +as +that +and +first, +; +eveu +spurned +»a +of +the +building. +turned +whole +made +of +of +H +nose +measles +tbe +of +the +of +so +could +started +labor +inner +J'vlhn +every +In +hands +taunin +corner +day +special +everything +range +tla-tl +concert +of +the +loved +auare +another +rleueed +moved +or +Machines. +declared, +After +toiffcc: +at +visi- +aged +the +is +with +Letta. +hard +ben +and +Petit, +Mr. +from +what +bmtlKht +civil +Lindol +tax +a +round +no +away +of +and +nderstand +as +William +On +opinion +the +the +6:14. +the +sub- +some +Britain +said +colds +ered +The +tlteir +- +had +provi¬ +Chicago +will +enables +of +that +they +cause. +deep +closer +and +the +amiontileEastbylI:' +party +thief +f +in +in +from +by +improve +twelfth +at +M +It +rate +the +minute +dur- +the +marked +before +very +generally +not +opera +Dr. +lobster, +its +of +price +I +quarter +so +being +sisting +breth¬ +awd +even +*«,t +work, +limn: +legislation +hut +public +good +court +All +.T +that +A +increased +thirds +school +has +the +barrel +tries +on +when +population. +dull; +Lot +by +of +or +appeared, +of +raise +station +necessary +there +freight +in +them +penters +party +over +cf +who +rail +January +tbe +a +both +confident +years, +then +resolution +name +in +which +Catholicism +the +City +it +an¬ +Califoruia, +to +best +home +were +bed, +Jetlerson +as +And +Republiean +of +Daring +a +lahor +notice +character +which +scend. +railings. +traders +when +com- +implicating +ordered +to +of +Thomas +for +or +and +Info +Pfoyen +danger- +T.O. +6 +that +lacquer +ruled, +Cuticura +For +all +as +they +we +children +least +alleged +plants, +cfficials +his +that +A +that +that +.uarters. +account +them +th$ +to +upon +Captain +Orpingtous. +are +by +has +slow +Ouebec +liable +we +Is +an +ping +is +tue +of +articles +Elihu +an +of +much +I +one +note +said +much +lhe +fought +side +accepted +lish +and +who +ing +my +the +cent, +chickens, +tor +route +shall +16, +the +Now. +Leaves +range +hinself +year +All +\V, +doctor +sum +antici- +in +have +the +board +of +list, +their +wide- +beach, +as +the +thence +sections +Kappa +im- +a +their +tsock +of +and +far +pound. +normalcy +eoastaatly +ex +to +nnd +with +ference. +favor +developed +which +sweep +after +he +how +to +Horr.igar, +of +course +twelve +its +be +or +i +greatest +caught +a +President, +made +to +more +ly +ter +or +Mrs. +to +of +seen +at +bWi. +twice +in +purchaavs, +ready +industries. +and +in +though +holders +Rotten +of +and +line +God-man, +door +almost +an +were +by +it +it +plant +only +over +comoke +in +my +better +uiaku +and +snail +atber +filled +their +medicine +tbat +dress +and +thepillavlU +February, +ao +the +1,350 +appointment +market +els +proceeded +this +as +duy +Inches] +a +Wo +is +Among +ai +recognition. +history +night +Supervisors +of +yoar. +like +'addition +great +they +damask +officers +information +refusing +her +IIS +Bob +I +rushes +every +difficult +of +do +to +special +tion +im- +the +\V. +gare +worked +him +is +Sandy +failed +divisions +Miss +In +a +this +the +takcu +connection +moved +sational +office +do +d +Grant, +itciinl. +o' +of +permission +ol +There +the +scheme +(12), +They +and +ago, +lhaee +think +"bigamist +labor +those +declared +directly. +with +aide. +tion" +11 +The +Not +room +apart-how +was +20 +just +ions +than +refug. +him- +Ob, +the +corporation +receipts +sentiment +two +bank, +rich +encash +the +a +the +intention +are +M. +five +and +watched +take +way +just +;t +It +the +resell! +unfamiliar +ol +to +.tes. +the +our +it +a +resting +of. +ment, +Only +and +ebonite +with +saved +elliptical +any +liver +two +owner +and +in +"liance +institutions +predictions +for +now +would +already +small +to'wif +buildings, +in +privit +as. +It +the +pain +Tide +answer +deal +it +of +such +w* +B. +wrong +falling, +Friday +do +I +for +a +will +the +be +of +ney +; +versed +form +the +division +and +beyond +ave- +have +John- +will +size +the +played +the +save +his +class +Wallace +of +Ship." +people, +have +cerned, +will, +to +other +him, +post +bonds +that +I +Mrs. +expression +raised +tnis +of +three +while +get +I +Sunder­ +the +the +ot +which +Mr. +it +and +hap +Arohduohess +handle +Ritchie; +I +the +to +angle. +some +and +; +that +the +of +being +$40 +that +a +Walworth +? +days +against +Lack +the +not +It +was +retellion +despite +distrcts +the +southwesterly +665. +in +them. +And +and +servant +itself +neat +When +Iho +covering +meat +tbeir +under +the +consolidate +a +of +not +which +to +the +interest +year +meadow, +from +public. +chintz +of +orbits, +can +for +provisions +Isaac +JANUARY, +lines +Ir +University +I +in +assistance +offer +entirely +father +the +be +the +1800 +benefit +for +dale. +longer +| +represent +(Jhrittian +quoted +-President +people +L.amoiue +cerium +02 +from +the +abuse +_mrt. +the +to +I'bera! +degrees +Blackwater, +of +popularity +. +local +or +half +the +iuto +co- +Grinnell +time +the +agreement, +wheat +In +The +recommittcd +Stafford, +country. +ter +three +damage +Matn. +numbered +kept +so +ankles, +agitators +and +to +old +- +by +are +for +avenue +with +required +the +active +of +or, +and +the +her, +plants +me +of +an +look +destruction +will +1S4T +use +on +pon, +in +at +to +not +fishery +with +Presbyterians, +ira +The +of +to +views +investigation +ness +lengths. +called +hy +April, +the +of +acres +In +its +and +be +blood +to +Ar +>ii>eit"l +might +and +the +ocratic +of +well +was +freshly +'M +with +deal +Burowa +we +t)f +is +her +him. +west. +anyone +the +bet +us +the +they +a +City +west +Justice +church +week, +their +place, +Union +East +Haviland +strong, +will +whil +Bayless +bins +This +now +oa +sorrows +thai +and +nobody +known, +deep +than +in +is +with +of +88.127 +oldeat +payment +certain +job +Chicago: +failure +would +kept +nature +it +with +portion +The +of +chinery +his +ot +elevating +line +in +etc. +Electric +labor +Nay, +other +find +mlnd. +limb. +to +thus +only +of +iments +that +asilout +anything +tour +the +folly. +cents +knowing +The +7» +. +goes +to +and +words. +man +and +no +1 +.White. +the +might +roads +until, +would +The +Greeks +or +could +little +or +some +a +6ort +of +will +ing +chairs, +a +and +factory +faces. +Johnson, +another +It +turns." +did +Jacket*, +to +of +color»«»! +reduced +the +far +of +ppoxy, +a +from +Alley,do; +the +Judge +piece +Immigration +an¬ +of +baby, +of +"A" +at +street +that +1S57. +in +of +110; +could +city; +the +will +Many +tho +Clifford, +hold +away, +Embroiderers, +way +Southern +The +afford +aro +Willard +recommendations +ot +several +the +bo +A +at +was +highly +a +but +their +out +is +mony. +Taft +as +Jone, +with +This +he +Short +refuse +do +As +remembered +the +association, +the +Charles +lamb +when +the +brother +drive +who +teenth +roughs +of +this +or +constituents. +in +and +had +tanks +integrity +have +earnings +troducing +ol +a +within +department +fool +West +and +for +J. +developed +wa. +thrown +Uy +ment +through +of +tho +revealing +and +32, +organic +what +spectfully +historical +the +that +Nothing +at +c< +wires +pcroh +up +having +Table, +no +Scranton. +scandal +a +at +already +and +and +them +ever, +culture +Quinn +As +she +(-?ane +regi. +down +light +Knight +other +verge +the +ics +measure +much +he +compacted +been +Kir'by, +Indian +to +system. +make +the +spring +zei +one, +from +watch +rush +tlement. +water. +charcoal +ltepn +order +eration +Imsls- +of· +no +to +are +fair +The +too +arms +n, +obedient +notice +other +down +power +before +pigs.) +Penal +Rye +was +its +Highland +diminished +in +to +na,]* +sing +Umar. +heartiest +The +"threw +tobacco +unfortunate +and +Dut +bartered +those +afternoon +the +Pres- +the +It +city, +tbe +bocomei +The +rontlusion +followed +providing +country. +the +ful, +rooms +ed +h. +tho +tho +will +rations +ally +the +doubt +>ber, +local +s +that +77 +be +that +few +how +l»een +Southeast +at +(. +story +He +their +af- +due +in +avoid +place +of +he +be +(lenliul +fess +track +in +extension +a +#110.000 +Smith, +Secretary +a +Editor +minds +the +wax +to +he +~ +ince +3B; +by +and +every +that. +and +E. +longforgotten +woman +Dr. +to +beginning +likely +is +which +gratitude, +ot +of +course +war +per +not +cell, +seemed +described, +f +Township +the +of +God. +work +westerly +will +that +is +; +throat. +wrestlers, +In +a +in +"Wheeling +present +Cleve- +a +the +neighborhood +respondents +necessity +i +prosecution +having +Murry +to +pas- +and +and +of +holes." +conli +Senators, +In +long +else +opposite +It +Comet +of +firm +them +Elmo +poonle. +and +In +the +agita­ +window +a +courts +physirmns +aud +the +and +sary +Congress +prices +6 +p1 +man +.ingress +pant +of +first +vision* +seam +grand +a +coalition +et +policy +the +part +a +are +thence +the +law, +same +at +the +Springs +laid +and +a +this +roughs, +never +men +he +the +ro;id. +corporations +of +broken +sooner +in +lias +with +Stonlngtou. +would +lim +great +king. +land +of +pursuant +name +meat +Manure, +hun- +an +profitable +cline +resting +of +his +so +to +to +negroes +finding +their +crime, +the +There +a +that +i +vicinity +of +sure- +abundance +maaleattsa +were +as +the +tue +miner's +landlady +nut; +letter +one +u +court¬ +ut +and +an +to +cxtreme-j +that +thtir +lend. +give +the +Commercial +lie +and +not +name +the +not +stol- +renal +and +and +From +have +of +None, +system +for +elected, +ever +by +sub- +North +of +the +thousand +upon +negotlato +nothing +starvation +and +Muslims +man +a +American +of +damages +years' +the +as +members, +plantation +have +fifteen +gentleman's +a +the +There +only +- +Office, +the +iio.se, +largest +dragging +thi +aU0,iKX +strange +the +day +through +and +member +north +hen's +Aud +of +to +re- +lioiu +government. +for +or +st« +deny +at +Albert +thry +tore, +as +what +Double +War, +if +lying +Misses’ +papers, +the +some +where +three +be +Central +State +two +29th +public +seaman +of +breakfast. +Past +of +on +that +"headquarters +of +house, +of +was +had +same +by +scoot­ +to +such +con +the +conducted +in +be +large +I +erally. +in +his +astoundingly +would +itu-si +black +of +and +content. +ia +that +"We'll +We +do +ens +with +it +Captain +to +freedom +feet, +llourbon +entire +the +lot +meeting +the! +banker +hltu +the +happened +unnecessary +had +has +the +Many +is +has +thelr +would +we +Cost +which +They +with +ia +the +of +by +fruit? +years, +member +north +groups +of +; +the +to +presence +necessary, +prolong +twenty +tend +and +suoh +at +tbeir +not +it. +and +establishments. +"If +to +asleep. +of +puplla +gorcrnment +light +he +an +of +the +this +of +the +to +to +of +fumigation. +in +University +year +human +Capitol, +rlear +we +t' +-l +iftheir +out +mountains +and +the +backward +unimproved +help +lithe, +down +infection +hated +issue +been +guished +there. +the +time +siesta +prosperity +stock +bonds +or +Lewis, +diana +examination +all +for +had +ip +intercourse +equally +to +torneys +recorded +the +yet +gone, +wrote +every +Spokane +and +would +the +use +value, +your, +and +in +on +brunt +and +and +j +to +good +end +politi- +wbicb +finds +that +Geo. +feel, +carriage, +the +colony +ps +of +the +flame +anuonoead +OF +a +that +often +a +hung +moots +been +tail +times +Lewis, +him, +; +youngster +in +wile +gradually +the +this +Rev. +the +lot +a +mem!»ers +hands +route, +1885, +him +case, +thirty- +that +landed +cover* +squat +for +are +and +beautifully +the +with +was +worry +for +vilion +clothes; +With +now +the +buccahs. +li.r +cipal +applied, +grave +sideways, +A. +in +parlies +usual, +The +stir-»overnuipiit.they +generally +of +the +"She's +and +Water +to +enforce +Mort +Buffalo, +C. +woes, +oftlic +Mrs. +the +hia +and +overesti­ +that +not +it +this +wing. +Munition +at +plain. +no +making +year, +Alaskan +consider +poor +literary +at +by +the +map. +is +of +day; +- +tinued. +the +and +heretofore +held +at +tho +the +lot, +ana +flMO.OOO. +and +they +ready, +"Mr. +Caught +its +west +“The +ce-' +skin, +nutritive +great +truth,-should +You +my +Miss +that +I +years +Judge +like +Tho +J. +he +And +with +by +by +king +dry +There +browned +all +with +of +been +money +devoted +, +thanking +the +of +trade +in +istration, +emolov +mission +From +they +brilliant +for +on +ab- +wide, +plates +in +Bloodroot, +is +get +country. +his +ons +that +suppose +one +rated +local +you +sent +divided +the +of +called +timo. +foe +S/tv- +lar.cy +the +K. +not +to +the +the +and +he +Our +followed; +take +his +commission's +aaper.tbe +and +for +correspondent +the +a +. +under +be +Nicklln, +Washburn; +mighty +D. +the +a +band +of +That +8tephen +during +rea- +the +tion +nud +could +hidden, +for +Union. +yon +who +to +to +and +nf +had +Is +Rader +force +came +the +also +J. +that +extends +warrie +tbe +seen +hampered, +large +too. +and +payment +Thompson +the +proved +this +911.80 +girl’s +in +to +far +bed +H +in +ihe +be +an +end +believe +of +of +affected +garden! +generally +down +any +nonplus +forged +sufferings +cruel +of +the +kind +are +Curtis +a +In +appears +from +several +this +They +crowd +together +of +governmental +huge +- +nition +would +circumstances +a +winr +sub* +storms, +Dr. +on +the +than +good +matter +the +(lie +roadways +has +secured +to +the +:1 +Anyhow, +a +business +father, +that +the +the +a +of +of +A'est +Nine +north- +besrsar +man +with +tion +itary +not +and +demands +the +center +seem +by +with +and +good, +charges +every +bosoms +parcel +the +party, +of +office +To +single +43 +en. +of +February +vast +been +ings +time +and +super- +her +without +boat* +South +city. +eluggishly +The +progress +that +must +thief +h*c +and +two +the +isn’t +rf +well +as +years, +the +agreed +wan +pi.jelplea +about +plane. +The +It +the +street +with +for +could +a +committee +strip +Individ +that +should +what +thereof +than +familiar +sub- +tierai- +are +arm +legislature +muslc, +monte, +els, +tako +croakers, +is +and +Republican +ISO +embodied, +in +pends +in +tbe +of +discovered +coolness +on +and +of +stick +for +an +exists, +mado +Staff +43, +With +A +ap +and +12 +southwardly, +before +tho +.Full +that +tablespoonfuls +Baum. +in +in +it +be +of +hid +of +and +May, +two +to +large +reducers. +the +him +of +Cur- +clubs +of +of +the +block +and +of +lowing +mountains, +eainp +ami +than +an +is +for +'230 +throe +third +either +in +concentrated +C. +with +the +upon +a +four +iles +inexperienced +motive +which +pitking, +sweet +e +tho +world +came +to +wcru +by +each +delivered +carried +a +. +not +man, +in +discover +had +s +Democratic +for +of +beyond +Ewart. +and +will +a +state +rain +they +I +vice, +bad +chil- +who +buoy +spokeof +Florida, +good +lock +with +could +the +expected +land +the +have +piece, +no +claws +its +aces. +truth +tion, +it +solitary +available, +class. +that +on +H +and +marriage +escaping, +iu +enforced +William +Howe's +gold +tnc +fner, +hud +home +earthenware; +the +saw +said +me +scarce- +or +lands +theatrical +with +would +contrary. +accounts +and +"moonshine" +possibly +office, +several +de­ +tridges +let +be +elevation, +rliups +un- +therefore, +and +money +that +bnuiulr +roads +of +sisterly +it +drop +truth +the +required +veloped +visits," +dates +of +Co.. +coming +one +itself +strengthens +not +th"3 +land +compared +because +in +Ohio +within +resemblance +Intoxicating +in +wisdom +1911, +broader +what +home; +of +the +lies, +we +hundred +bcloro +Win. +bed +menagerie, +and +with +janitor +sec +otes. +been +Thank +confirm +jail +dium +place, +posing +cottage +law +second +and +street, +was +to +entry +assessed +parly +of +date +and +the +position +very +situated +oftlce +of +their +war +Senators +Commission. +Olympia, +deem +are +amount +the +of +of +given +track, +arc +ical +literature, +of +matter +tlio +the +believed +It +ended +les­ +grow +If +8tL.80260 +and +a +the +handkerchief +the +hear. +was +of +machine +&8.R.B.&M., +once +aud +rheumatism, +found +tion +auction +by +you +the +and +the +frock +of +visited +oppor +a +baa +sun +In +developed, +boulders +body; +bright +style +Beginning +other +; +crosswalks +pas.-eti +of +or +is +prepared +practiced, +ten +the +1890: +weeks +and +was +soften +iu +by +* +months +any +it +protection +Mrs. +get +Mrs. +in +but +o'clock +secured +G> +Veasey +humanity. +him +head +malfeasanoe +or +at +duelist's +Melvern, +The +from +Invnitlirallon +oamo +the +and +and +the +the +side +extent +an +lays +occasion +The +grew +The +charging +have +establish +and +tile +liss +lose +are +tho +thoroughly +me +in +sat +things +of +given +of +the +the +nine +world +what +in +collision, +The +recorded +the +any +years +the +and +in +citadel, +we +with +with +their +cords +Bill? +building +ihe +in¬ +to +Tabule +those +of +linois. +she +or +Dee. +to +and +one +and +that +of +at +of +so +leading +said +who +cluded +3 +Ohio +needed, +of +appli- +man, +important +to +season's +1 +me +will +forsaken +which +justice +and +to +the +only +and +scheme +| +the +new +develop +(2) +He +railroads +“That’s +Jesus—“He +should +men +of +1. +trotn +a +be +exciting +at +M +us. +a +the +ruler. +by +been +steamboat +do +Wed- +to +by +the +end; +the +furnished +room +pendent +No. +distance +Hayes +to +of +resided +whereas +night, +of +State +iuhd +the +of +when +They +tools +was +sill +no +Department; +in +Any +terrific +instead +so +of +cases +Aside +pumping +parties, +confident +safe +the +twp. +it, +the +went +must +lias +likely +par- +until +urgently +and +the +future +thorough +the +papers +ontiro +upon +other +a +iu +ap¬ +are +under +and +the +13th, +assumed +have +many +on +I +while +Now, +of +to +the +necessity +obtain +the +journey +Dr. +establish +was +We +the +virtue +Pherson, +to +large +Jason +were +home +super- +yeartt +save +Mrs. +resistance +and +claimed +have +be +remedy +engine +row +see +"The +inwardly +they +as +has +townships +made +help +elder +a +its +his +pair +delivery +refreshing +all +Already +will +and +we +of +Democracy +with +an +to +have +rive +gave +at +five- +on +terested, +have +especially +out +she +by +will +old +following +it +erudition +family; +7 +whom +the +Ulgj +of +offer +luncheon +on +sharp +"skalawag," +account +and +or +¡» +Tim +of +nnd +taken +for +colors +the +for +by. +committee +that +not +senate +as +past +the +the +of +red +nutcoai +question. +vi'etory +a +without +of +feet +them +were +and +tlemen +less +specifically +Stocks +ried +we +of +the +not +from +of +bouse +wounded +of +Hin, +indul +whole +ha9 +balance +splits +1 +daugh­ +IUCK +Chicago, +Jasper +not +matter +protection. +cleared +this +state +de¬ +Convention +is +had +ol +strong +time +ready +security +was, +"Ef +nightshirt, +to +several +to +who +of +tune, +J. +sacted +cutting +of +n +be +Thi* +the +., +there +sufferer +for +in +lums. +the +occurrences +has +the +to +It. +G. +in +1065—Fred +assumed +in +on +and +the +generally +the +ofthe +Iteeit +her +defense +in +pensive, +to +berries +quality +house +another +value +is. +which +sec- +same. +manufacturing +an: +with +a +denrtmcut +thero +immediate +Joe +and +do +tended +patronize +of +Missouri, +their +ity +The +does +six +they +mortgagee +susceptibile +of +l,een +done. +to +he +beyond +be +expanding, +this, +the +contusion +tfiut +Blaineites, +unless +sent +the +de- +smothered +public +the +fowl, +will +dishes +sharp +reached +far +rlfles +hardy +modcrato +on +tho +young +said +gingerbread +put +ami +tiees +the +a +powerful +re- +Hubbell's +back. +are +beauty's +the +men; +and +50. +additional +ten +Ninth +made +is, +detend +is +(the +Arizona, +is +MyrUe +that +and +$14.20 +country, +around +aalaral +The +is +ir.cbt-s +and +away +of +another, +the +point +The +ing +of +pebble +Cos, +knowledge +doubted +these +Customers +the +thereafter +expected +and +to +members +off, +to +a +a +a +derived, +for +family +the +a +of +of +upon +had +of +to +retire, +contact +day +be +readied +to +or +j, +on +text +Waco +days +and +by +We +or +returned +Emperor +of +85a +to +to +serious +wilt +in +ECA, +"Cuddlo +hereditary +sonal +not +the +on +other +publican +that +Aldrich, +drunk¬ +narno +mained +more +Harper +city. +court +following +soul. +sequent +of +and +lack +morning +into +expense* +Sturges +belong +can +just +are +-wilk +Boyd +ab>o +j +of +of +The +for +if +has +its +took +on +commission +Colona. +Mhcy +an +to +report +for +fourteen +the +and +S +northwest +hood +spectators, +an +of +tho +the +sacrifice, +avoids +next +of +plays +aide +coast +by +it, +7th,. +King's +they +whole +claim +tbe +proper +of +right +been +being +and +in +and +hi +ion. +strengthen +and +and +both +house +u +Heart, +; +ty +wisdom +should +block +both +certain +addressed +ing +for +scalp +er +directs +nine +It +27. +hand +particular, +of +shots, +Salónica +ditierence +natural +Out- +of +finest +sense +is +method +of +ihird +mon +«o +and +hogs +recently +started +is +duty +with +of +with +docks +Harvey +. +Memorials. +a +for +default +to, +(75) +California, +which +story +of +20 +Lynn +for +Infantry +for +said +weeks +right +shut +said +" +at +ployed +wonder +selfeentered. +all +prison +window +been +fortunate +all +of +■sager +Claude, +should +iu +to +were +value +the +a +the +Swager +to +each. +the +They +to +The +in +perauadlng +of +to +better +ner, +front +Delaucy +when +i +of +is +was +that +wholly +to +looking +wanted. +that +that +destroying +encouraging +of +recall +ot +is +spread +dares +iuto +military +and +awful +the +smitten +at +and +mountain +and +will +the +life +believes +it +stomach, +miles, +Greene +the +him +to +emotive, +tes- +business, +estimated +fence +turned +make +Imornill" +services +had +information +be +years +build +religion, +done +advantages +of +State, +that +engagement +is +ninty- +at +than +tho +ono +colts +before +to +not +fact +night. +i» +Such +when +and +in +large +an +this +a +carrying +and +not +was +throughout +the +Is +It +petitioned +will +earth +the +the +trees. +and +the +the +Coney +policies +correspondingly +sent +-- +in +ly +visiting +ceived, +demand +rlçhts +thai +of +at62)c; +Millers' +came +Demarchus, +on +being +so. +anu +would +from +candidates +are +to +to +drive +unci +men, +the +Police +so +against +bear* +Monday, +in +be +to +I +and +slavement +ditches +shows +the +in +that +has +rootbed +bill. +monarchies +it +aud +farmers. +she +that +Nevada, +he +provided +In +and +quarter +be +leaves +to +and +there +the +clerk's +better +Townablp +At +ried +North +Neither +Cox. +quostion +if +the +the +then +Mansony's +ami +weather +and +whether +energy +the +boys +shipments +a +Charles +the +builders +building, +J +Tutwiler, +under +growth +e +were +to +t +bombs +far +classed +and +the +Fidelia +and +son +bank +sig­ +proscriptions +Wyoming +of +delegates +properly +having +attentive +tax +mill +transformed +Ellison, +'Ha, +six +aro +"If +the +$70, +by +selected +excitedly +so +same +and +the, +at +of +an +himself +public +Seat +heiu. +Di­ +indications +noy +I +the +small +mensity +entirely +tested +fifty +and +to +120 +value +drawn +get +in +tbeaamolingeetabliahmentea +its +Carolinians +organization, +n +sets +to +the +others +lumpy +A- +journalists, +stitutional +lands +that +to +blood, +has +prom¬ +ism, +sheriff +to +she +pocketa +the +self. +were +no +(for +provides +doom; +defendant, +w.ak- +and +a +honey +however +time +dition +Francisco +17th. +end +the +baard +to +she +does +where +corps, +bid +ing? +the +poor +last- +enabling +this +the +nothing, +intelligent +by +tracking +met +South +pen, +on +the +would +whereas, +for +the +State +certain, +boyi +world +He +or +White +to +really +to +handled +copjier +They +at +gation +escape +rr.iwiui: +to +the +Brandon, +since +have +A +be +west +copper. +M. +aud +special +it +have +Maxim +to +add +the +had +due +to +be +of +there +to +left +of +products +hearing. +finance +recommends +a +that +information +equally +the +of +numbervoting +of +af +infection +rendered +line +of +cha-actor +acfion +to +believed, +will +that +uncalculating +and +of +sell +treasury +ranch, +alleged, +of +S. +arm?, +and +case +it. +the +him +Boulh +Co., +lu +organizations +hardly +such +evidence +having +Co.; +again +as +arraignment, +and +house +a +securing +piety +on +handles +escape, +higher +all +rope +she +the +let +feelings +The +a +ofter +ductions +to +must +we +5 +of +acci- +21 +engr-ved +tion +have +organized +no +mental +(Applause). +ugly +catta, +fered +and +vruh +arms +acres, +just +meth- +T.ocke, +were +two +year. +These +such +resolutions, +purchased +be +for +deleittcrl +should +if +of +discharged +and +oi +and +object +va +admiring. +drainage +unfavorable. +a +dressed +very +and +found, +two +Sanders, +of +1. +in +mules, +1 +the +he +running +the +with +total +observation +it +maintain +Internal +ep. +at +ly +Cortez +fight +affair +descend +up +an +fr- +It +Auntie +ory +seaman +most +fiveyars, +a +5, +smashed +arranging +cohabiting +near +iron, +cry +taken +The +on +Ellendale +almost +better +aispen +where +pend- +tin* +the +gown. +out +proved +of +used +a +Jack +Minnesota, +By +by +grief +Circuit +We +beautiful +as +ra +last +immediately +A +friend +After +ssaryand +or +a +e, +purpose. +visiting +fined +fore +to +shirt-callar; +and +young +News, +reas- +W. +the +Two +the +last +valescent +King +'varsity, +responding +minute. +alone +is +spirit +sentries +Dane, +other +the +should +on +well +strained +Itau +scraped +plurality- +a +to +called, +our +like +any +be +best +could +favor +It +large +sickness, +of +saw +of +on +They +122d +is +proof +the +O +at +in +soldiers +price +its +putting +into +won't +in +like +creation +otherwise +of +enough +Iti-en +abonl +receive +tell +Riley, +which +watching +for +former +it +which +'.he +in +a +logical +twenty-six +He +is +in +been +1920, +real +the +property, +sistent. +patents, +scandal. +should +dians, +Carolina's +their +Bank +not +be- +on +less +an@ +you +for +woman +dances +(16) +darkness. +permitted +duke +said +pi) +best +of +combustibles +ery +cluded +road +from +mistake. +Town- +se­ +Arlington +changed +farmer. +. +of +public +la +newspapers, +Commencing +meet +which +exploded, +and +and +father +seamen, +Fairfo +thence +these +this +diluted +dance. +son +expenses, +White +willlast +A +eontinued +taken +from +leave +Allow +philosophy +refining +No +aecurlng +a +passed +field +and +made +Sheriff's +by +New +of +tenderly, +and +uiuliUnulloii* +of +regretted. +will +Several +specify +"In +passing +means +so +claim +lines. +rnii'ii. +kinds +in- +will +early +a +settlement +ns +for +the +But +ride +treasurer +certain +is +Va., +anecdotes; +the +the +probably +of +their +were +the +it +dt +the +have +coun- +here, +not +shalUnR. +servile +such +he +per +improvements +bave +I +allow +ner's +Merkle +so +ning +\u25a0in +point +ofthe +crumpled +the +thence +Allies +are +house +of«aid +dis* +Ing +given +ceremony +other +ber. +Federal +ta +should +that +or +of +count +obliged +from +then +and +as +names +was +thus +between +pain +place +known +or +limb, +had +Mile. +pre- +*says +the +up +compared +said +from +appropriation +ket. +Charles +its +confidence +of +miles +the +eightli +horses +quantity. +by +In +said +Emma +the +allowed +superintendent +to +tbe +same +betterment +were +tDown +2; +ter +always +promote +invaded +capitures +needed +supply +crush +The +moned, +in +front +May +stone +cratic +on +the +upsetting +church, +and +. +not +novel +tbe +These +ont. +one-naif +condition +officials +held +the +and +teacher. +men +has +caught +ing +what +under +be¬ +this +through +head +explained, +on +tne +will +went +or +the +a +and +by +to +blm +three +of +to +weakness +stairway +and +composite +no +enti +Mack, +One-third +a +so +as +that +year. +a +such +tha +of +have +37 +'becomes +the +In +and +at +of +of +number +preached +iting +of +companleeilull +service +letween +strength, +the +with +has +Mr. +am +we +its +nominal +tender +struggling +Juno +ciple +caalar +made +seen +corps, +ele¬ +1911, +action +Pile +ates. +fertiltiy +and +to +A8, +that +50 +don +torn +1884- +the +conven- +hold +ill +tl +the +sis +his +dead +we +for +from +the +in +long +and +the +meet +could +the +who +France, +as +the +men +the +course, +of +who +(as +at +the +not +quality +ical +medical +wus +Skunk +bread +laid +the +led +carefully +after +and +entertained +levy +interested +looking +armor +btood1 +Gen. +of +RssMSi'ns +State +will +as +the +quite +in +Course +took +danger +The* +public +the +12. +submission +she'd +to-day +visiting +smaller. +from +power +3rd +be +it +defined +Danes, +in +planes. +ou +seat +no +a +operation +Affairs; +if +now +sale +a +Stern +pression +said +often +gotten +lawgiver +and +with +various +newspaper +(3$ +a +WUtsle. +happen. +lots +of +?'against" +given +ot +identify +present +For +Blackburn +and +of +1 +needs +screeching +our +man +I +local +side, +the +o. +all +the +lslsnd +present +up +bottom, +so +caused +volley +and +face +that +Kane +patch +from +it. +which +away +one +the +and +(swJ4 +pav +ment. +cutters. +make +will +, +in +enter +shall +well +is +declining +river +JEscp +the +as +II +country +has +thought +organiza- +ambitious +not +aud +road, +of +large +by +permitted +gradually +contained +and +world." +colds +is, +the' +to +chielly +24. +ting +Mexican +driven +for +varied +pound, +bill +arm +streets, +living +fried +be +Leather +Not +more +No. +Billups +elements +room +profits. +the +perfect +other +By +shall +coun- +fruit +H. +scales +ceremonials +being +the +in +made +east +vide +the +the +bingular, +generally +bat +of +the +goods, +it +by +cases +the +and +mittee +direct +of +engaged +city +was +the +the +mauy +is +statute +and +a +nated. +; +gets +matic +steam +Washington +the +said +front +the +smut, +ship +convenienca +to +Va +smart +equally +the +yachting +The +amid +One +he +with +of +this +a +of +bee-keepers +Egyptians. +mining +of +average +public +the +under +pers, +of +and +from +manslaughter, +other +shall +Lawrence. +beginning +would +ot +h. +pects +that +ef +market, +the +excavated +a +of +Flieahl +and +us +to +with +1893 +San +Improvement +TERMS +detected +to +rot +animals +of +as +the +of +you +on +when +Hall +inland +1083 +now, +It +A**., +edi- +coln +and +as +plainly +than +7 +useful +and +district +the +as +and +In +no +throAvlng +already +rims +the +passed +thuy +bodies +are +indictment +with +for +whom +fleece, +Certain +S. +The +tl.ie +at +rests +and +stand +cured +quite +b. +to +and +to +who +gineer. +mmihaf +they +generally +which +when +in +of +30 +them +of +tin +possible +(3) +some +are +the +even +the +of +are +Democracy. +on +found +highest +fervid +magistracy +lari^dresBid +the +out +case +Blount +be +mostly +of +he +send +40jcr +of +himself +unkempt, +i +a +at +financial +for +to +^ +', +Mj +hls +of +the +via +This +Overseers* +hit +those +road +crouched +shipments +wear +The +the +the +note +belov +it +he +month. +wheat +a +perhaps, +good +portant +all +give +emperor. +all, +officers; +feet, +beautiful +ever +main +nnd +England +felt +uct +classes +dajs, +E. +seems +gleam +learned +lots +when +. +and +popular +applica- +living +is, +them. +Cubau +believe +begin +which +68 +and +her +said +after +descended +sweet +Inent- +ytveH +.he +of +1. +their +they +Russians +Rock. +tne +Captain +and +with +wards +take +Men +crops +though +arrest +pickled +he +is +drawn +Powdered +pump +country¬ +he +head +the +and +and +disarmed. +eertlticutes +there +washing-Jays. +natural +is +great +etc.. +icree +Trust, +er, +Soil +to +the +communi- +Ε +fodder +the +her +150 +be +fire, +and +hardly +said +not +ejiiraeted +Yee +Clerk +Charles +kindly, +is +modem +narcotlam. +of +them +the +10s +in +of +terror +bankrupts +vising +ing +the +not +each +to +companion, +of +of +runa +the +therein +even +to +find +in +described +were +all +roniitiv +shall +hut +H. +life +liy +letters +vocation, +by +In +asked +her. +my, +70 +more +the +him. +was +bring +to +this +hundred +feet +that +Bank +are +a +taken +of +8 +little +Judiir +last +well +Boyd, +Gills, +stake +eat +belief, +voluntary, +a +denomination +business. +are +room, +live. +tissues. +can +prosperity, +copies +for +his +personal +thanks +forth, +said +; +in +ed +Gailliarti. +of +most +sale, +debtor’s +terra +ber +formi- +rely +Bridget +one +that +said +a +singular +election, +the +of +ssveral +and +per +and +dozen +to +Pistache +to +tell +at +thal +well +shall +hastened +also +such +disturb +Corn +from +sell +by +upon +wishing +per +and +of +tlx +rathe +1,000 +certain +It +to-night +tainous, +work +niaiice. +county: +capital +to +tho +aslotsC,D.E,F,M,andN, +a +the +as +keeping +northern +to +few +the +his +as +und +temptation +"Well, +vi. +spirit +or +O +him +the +lieved +Ward, +James +the +rn- +be +year +nations +op +of +6|. +in +charter +blood +Dr. +attendants, +was +do +kindred +hickory +epithet +Congressional +folio +and +the +year +«ix +square, +John +were +with +God, +goods +valleys +annually +yet +of +most +or +he +movements. +rebel +not +done +mixed +wized +pive +than +members.those +Would +and +said +Hypophoriates +t»nd +terrible +signature +tractor, +agents +local +gas +tbe +Cochran, +anything +Veteran +than +dered +their +Portsmouth +Is +of +before +to +authority +to +stock +Railroad +examination +partly +in +bar- +served +encourage +around +extent +attendants +National +than +the +ths +the +year +without +count +a +of +I +at +not +color +ot +n +crept +home +psst +supported +em- +into +iu +held +C +sales +of +spirit +of +nue, +peared +the +await +to +It +and +for +county, +progressive +same +with +iron, +tho +any +l* +and +in +has +proceeded +has +attention +soon +tiffalso +and +latter +of +their +does +the +of +hat +a +cularly +case +a +the +Fos +no +aud +of +that +for +ply +of +Akers, +aniline +said +was +ance +offi +horizontally +sometime +was +two +companies +tho +and +the +mort­ +made +Law, +Ontario +lengthened. +he +is +amount +.IRAINM. +too +construct­ +tnore +what +some +y +lot, +will +subject +Yucatan, +and +courts +certificates +provided, +of +sympathy +on +ing +another +as +and +He +b'own +Uni- +Indian +In +or +came +were +has +the +For +bond +places. +princes, +sure +the +Aii.ial! +the +slight +would +American +suddenly +more +printing +.iwuieiicf- +in +should +prophecy +yard +come, +that +West +aime +liavp +formation +breath, +court +forgotten. +Court +in +is +some +The +Washington +that +hla +The +by +liberal. +tion +a +n +On +of +Sheriff +the +of +a +titute +MM +in +sons +and +future +we +this +farthest +of +crossing +are +how +even +thither +said +He +ladder +cans +farewell +casing +pardon +to-say: +line +service, +111 +enough +u* +moral +to +cheers +We +public +indispensable +schools +care +passu +honest, +chickens +a +it. +at +of +delivered +reals! +wards +children’s +a +white +are +rntion +but +set +carrying +of +and +Foreign +I +in +lots +correspondent +saying +master, +7 +i'nder +satisfied +language +existing +him +Sabine +over +mo +chimney +from +ii +and +the +off +now. +$1,000 +Orleans; +this +o'clock +decisions +Au- +to +if +Camp +physically +rotate +war +on +side +the +the +inskip +much +now +r +interestinig +expect +that +to +reachesto +less +of +welfare +to +parted, +of +would +means +Merritt’s +but +of +line +the +The +order +forces +price +immediately +endorsing +BOfeocifaoS +When +it +the +concourse +directions +hearing, +of +tne +man- +name +of +and +eggs, +roof, +been +nusopnper +administrator +la +the +Deed +pressed +cliff- +again +that +believe +part +electrfc +perintendent +rather, +lesson +case +tw +The +from +make +is +(158) +debarred, +expressed +on +February +but +and +censors, +northerly +Netherlands +that +on +is +brash, +city +to +ds- +about +thing. +in +as +but +several +to +mav +j +most +part +In +removal, +I +can +also +the +government +maintained. +to +eggs. +M +by +in +meet +to +He +the +to +each +absurd +a +off +voted +not +the +its +universal +schs +was +be +of +publication, +asked +enougn +a +bo +mile. +In +South +religion +dcliles +Co +rati +Congress +or +$5 +Amanda +the +the +is +was +animation +of +remains +July, +$45», +punish- +leaned +are +been +Mightier +whoso +fii +or +t!««--e +a +1.18; +in +planets +the +in +a +00 +anthers +test +southern +caa +that +to +" +sino +removed +cal +this +Is +of +is, +emergency +railroad +day +and +to +were +daily +who +is +beds, +such +time. +Va.. +knew +be +from +with +County, +say, +contributed +shall +was +delphia, +creditors +begged +May, +gaining +Y-street +summer +man +flesh +South +bali +the +Proll, +of +point +cnniplnlnts +months +shouting, +ary +condition +bo +hand, +or +largely +far +at +are +United +as +list +Britain +busi¬ +Europe +take +Dohle. +; +able +the +lu +iv +but +they +arches +of +Butler. +im- +take +sold +many +back +be +he +not +political +like +Everything +already +Thunder +perfectly +gress +for +active +Al­ +belong¬ +the +advocates +lit* +to +make +might +dreams +faculty +produce +,i +to +Unit +hvo +house +was +merely +- +in +to +that +instrument +corner +the +we +Almighty +from +more +I +of +strange +Northern +is +license; +doorway +on +Warrant +waters +school +ciety +Oreille +sent +certain +100 +all +are +to +and +while +me +dismemberment +¬ +them +fact +ith +Hint +just +a +ls, +at +colleges +equal +quiet +Mrs. +visit +utensus +a +anything +Administration +roaring +the +York +my +handsome +particular +and +we +dinner +of +filk +m- +and +A +now +court +all, +wage*, +1913, +three +then +ever +tan +are +and +the +1 +conflict +fev +at +lot· +made +sculptor +out +of +Is +and +all +within +the +nt +Russlsn +but +lands +large +ishment +taking +lower +Itis +Dakota, +owi-er +fest +interrogatoriea, +anxious +pain +along +great +ladiaaa. +longing +soon +and +was +under +aaid +everything +and +and +on +the +conservative +tion +wore +str?et; +fireman +ol +future +The' +of +or +va. +the +Gulf +the +The +10 +the +hjs +work, +his +who +proceeded +ready +open +state +than +the +to +monev +which +out +highest +at +customary +had +three +on +j +riety, +and +oil' +section +and +be +the +Treasurer +aud +and +was +baby +our +all +of +the +because +breadth +for +chief +damage +powerful +his +lot +and +Phelps, +to +little +it +out +Fort +and +Lot +of +the +tion. +c8 +good +terms, +represent- +return +of +man +turn +90 +ment +Wheel¬ +woman +time +the +sible, +the +in +abundantly +Boerp, +the +hundred +Englishmen +said +quiet +inactive, +reports, +timated +their +as +Mrs. +necessary +Recorder; +or +in +been +kins: +connection +answer. +hand +extending +beaten +,inced +meal +hem +terms +the +They +the +constitu- +three +protecting +recorded +H +but +condition +with +weakly, +he +mili- +the +perform. +bowls; +of +miles +Marion +sent +hardly +and +villages +:itHi"ifi.- +the +shad +packed +nt +court. +said +blocks, +of +to +by +It +forests. +supper. +sumptuous +I +I +greedy +ap­ +return +when +they +thrice +found +people +cotton +upwards +next +given +of +coats +him. +In +the +tho +identity. +removed, +and +leys +tist +the +Heniy +that +the +t. +of +at +into +'bioltd* +it. +the +be +me +skill +consideration +the +at +Moses +er's +meat +the +to +regular +their +this +t +Januaiy +range. +invisible +on +not +from +States +Patterson +too +State +It +notified +sar­ +the +was +these +are +you +Preaident +or +hi» +chief +free +him. +shows +Austin. +contrast +long +nicr +trophy +thought +beef, +rains +situated +to +in +the +Deusen, +got +and +or +fairly +nothlng +cap.ured +His +'No +mob +tained +making +fathers, +weeks +so +revengeful, +make +tlemen, +committee +desciibo +of +which +who +sources +ing, +the +he +yards. +“Then +day. +supplied +This +are +golden +been +Anden +to +and +mainly +the +interurban +defacing, +corner +been +tally +refreshments +their +Wi +ascertained +himself. +the +by +bronze +The +of- +ptatol +it +any +hundred +poaltlon +win +coming +miles +sired +the +what +upon +mother. +be +policy +because +American +Even +and +to +by +L5-l6o:;No +the +characters +pride. +far +walls +52. +n-rest +Medical +; +to +than +be +amount +George, +sufficient. +these, +and +her +ynrd +of +publican +two +equality +copy. +place +Francisco, +spoken +being +above +33c +south +would +during +out +try, +entitled +officials +order. +William +an.I +others, +conditioned +and +the +a +hundred +utility +at +Pitcher, +to +not +gage +for +on +tihe +naked +time, +payment +the +arms, +thereupon +ton +a« +lie +her. +chil-1 +credit, +effected +doing +running +every +the +States +legality +the +years, +that +a +the +part +“Well, +In +every +I +or +favor +you +f**t. +by +the +system. +In +wife, +Channel: +was +Canadian +not +of +look +kind, +of +mould. +extended +onstitution +and +will +for +of +deeply +brandy, +and +(Minister +does +survey +been +work¬ +the +who +and +maintain +are +was +Shipwreck. +both +we +give +the +day +they +law +military +Bar" +will +there. +where +of +in- +them +hap +more +little +donation«'the +experienced +look +of +night. +pebbles +system +of +causes +and +that +not +hoist +fifty +knew +forces +John +the +sireet +nniount +thousand +God +alkaline +$1.96. +laws, +make +even +of +.fS..Rooma, +of +when +was +M. +c +feet, +a +a +auction +eloquence +old +express +onging +probably +henrt, +I +Uleanor +dissappointed +little +divorced. +or +dale +Mr. +pulp +ernment +not +contrary +blood +against +wielded +Interesting +pretty +Just +support +no +internal +R.rer +to +recompense +be +of +vide +foliage, +importer +17X +ended +on +completed +capability +as +Jensen, +you +Southern +of +of +drouth, +Intoxicating +groaa +the +was +whatsoever +preference. +tno +determine +In +but +of +feet. +known +from +Speaking +resign +After**.arel +the +axhd +any +of +to +Srn'th +*r- +the +to +these +days, +when +j +said +America, +made +and. +days +one +carry +pulsive +amount +In +de'.t, +itrengthen +and +the +authority +of +I +play. +the +one +to +reas¬ +lie +for +attention +would +and +ty +that +dazzled +and +ceLal +Flsh, +tow +with +the +fiublic +the +fair +made, +half +1803, +be +mines, +runner. +of +to +be +iu +th* +established +Ko +is +affairs +could +the +illary +indi- +Long. +was +universally +miles. +days' +In +motes. +remain, +to +the +described +tramp +by +days +the +county, +ence +farmer's +advertise- +nnd +having +prevent +storms +good +BSStOfSaf +at +by +aforesaid +setts, +departure, +for +in +siniply +was +of +both +property, +pnyyonr +the +to +and +fear +investigation, +sont +own +of +paid +The +of +pres- +through +aid +to +part +statement +rail +a +muring +are +Amei-ican +$130,000 +temperance +tinulng +i.ariieat- +a +the +government +S +Hiii +mill +these +are +Is +of +than +auiatary +comes +formerly +death.” +till—" +months' +polity, +when +weeks, +from +in +Ionia's +Bonds +by +men +dormitories +wae +once +know +the +I +of +and +three +1,000 +the +sample +more +ground, +take +fleet +tha +in +I +witfe, +the +it +North +strategy +now +with +forces +and +and +nearby, +of +asking +that +land +if +oper- +Schnlmeister. +anl +in +sky +have +the +than +their +breathless +that +and +up +they +the +groom +Orchard, +paint, +will +10, +did +a +bu +revived +be¬ +son +new +members +to +rights +should +of +the +tracts +N„ +by +to +in +of +be +has +without +inclusive, +improvements +throughout +feet +and +tree +the +in +the +Ill +cases +unpaid, +page +from +from +will +IntercMs +lanreas +broken +company +wolf +if +days +bate +looks +singular +for +lot +of +even +above +injury +assume +as +aloude. +has +future +deep. +mo­ +were +punish +the +it +species +which +vines +treacheroufly +the +no, +gloaay +her +H. +fallen +dr.nee +The +outside +the +und +in +saw +of +sult +of +Three +11 +grape +bushels: +secure +ready +ready +ah, +tbe +to +ely +find +to +a +humor- +wearing +has +21, +the +tiont +th'oughthe +a +will +13th +interesting +all +hew. +over +as +western +ago +royal +Both +first. +The +morning +Hi +by +t +left +is +soon +but +thoecbt +and +Blak^lv +acquit +ear +or +has +street, +iIIiiIiIiiIiIII!IIIIIIII!IIIiIIIIIIIIIIIIIIIIIIIII +I +in +cate +the +by +that +In +shown +hundreds, +fie +could +Son£ +in +for +in +Ile +David +girls +and +tha +sunrise +to +country +that +of +the +of +of +baecar.it +the +grief. +Miss., +even +the +only +last +of +the +wound +of +the +Tagus +Increase +to +night +id- +said +charac- +were +i» +I +themselves, +cilice, +and +pru- +European +cally +'were +lights +Mr*. +allow +were +n +stop +writings +Is +in +entered +the +Young, +if +them, +was +Brown, +and +circumstance +nor +Phelps +said +tho +1& +in +and +found +little +will +increase(l +snow, +of +piece +mortgages +government. +li*ve +things +to +fore +their +Luke +of +enter +to +and +hardest +other +of +Armaments—The +the +was +which +public +r +League +the +where, +addition +to +of +succeed- +where +left +and +dlrtani +ripe, +indebtedness. +present-day +scheme +abatement +and +them +he +senger +tho +'In +and +these +them, +I +likewise, +the +life. +invalid. +police +the +ot +Paz +I +ain +references. +his +the +packers +the +K. +or +tho +monary +object +thing, +other. +dictant +t +plain +territory +the +have +beer +the +and +rather +cy +man +been' +its +two +real +of +deiedant, +A +and +for +his +said, +he +e'.<-d +Brooke +were +liam +against +them +a +busi- +to +eenoe +the +«Tniptr.nm +presidency +of +rate +for +favorite +the +party +the +husband +of +faumiliarity +twenty +No +got +and +nearly +year. +yacht. +of +they +not +bills +hereby +discussed +condition +tice +and +gratitude +tbe +famous +brother +cordial, +between +y +tie-a +John +reverse +tinous +once +became +claims +a +menced +roots, +Lieutenant +there +To +which +growing +and +side +No. +recommendation +found +to +Bvas, +Conventions, +Reform +in +Thwaites +in +Christ +but +Lower +samo +and +location +Ga!.nner +are +th +not +anarchy +to +arrested. +which +a +$6 +dloral +courage +of +wiih +to +The +boughs +average, +nephew +the +Beaver +the +too +class +school +strong +tbs +(burge +win +The +Wm. +paper +encouraging +rather +to +the +from +On +was +name, +from +that +learning. +government +fendant +lie +hnve +lay +quiet +which +preuro +a +day +similar +mity +victory. +establishment +of +may +Omaha. +the +most +granted +pay +organs +topic? +all +acre +did +that +Legislation, +or +by +his +in +and +to +a +Far +a +simply +tracied +schools +bad +and +Bennett +lawusit +map +Then +Mercantile +No. +Bacon +on +pound +place +Astor +*e? +serted +ot +old +Miss +which +care +one-half +and +and +outside +for +cabbage, +all +the +happier +refiner +mg +on +(2) +at +the +hand, +dog +The +min. +can +off +ing +sale +havo +in +story +thing +realistic +simulated +boat +reported +be +opinion +was +R +on +naked. +abortion, +however, +it +deed +Japanese +if +other +off +front +eats, +author +get +at +the +examination +of +as +loans +which +the +ties +fact +keeper +of +equal +of +part +nil'.ls +of +Crosby, +to +remedy +the +J. +SOtol; +as +Smith, +I +neia +in +should +the +at +ttaraener, +for +the +havo +market +a +wages. +man. +(8) +opportunity +servo +by +be +actual +per +not +copartners, +by +hard +umaowr, +they +occurred +oeen +in +a +upon +sitated +House, +and +the +Into +part? +our +bow +Mother +walks +in +would +de +late +ber +in +mined +view +''kickers'1 +the +line, +such +It +and +It +under.wrong +than +to +recruiting +saved +mother +pounds +B. +the +famous +man's +Robert +per +the +Rico, +Must +Feb. +journ +Pink +Bowles +in +pearing +capital +case +upon +oal, +Extra +to +on +shall +one's +2 +Say, +scorn +IY, +Deep +of +vlaltlng +evident, +object +With +may +he +separate +W. +applied +glimpses, +a +Snyder's +the +being +The +detailed +th +ing-bench +of +in +defiance, +lief +future. +be +ucation +Iho +the +with +up +>!e +the +must +oie +stock +ciety +and +pennies +ready +in +side +inchiHive; +solved +numbered +the +was +as +of +are +with +legislative +and +panions, +we +their +tied +party. +President, +only. +and +tric +executive +has +who +the +down +of +by +use +ter +30 +2 +pitals +lis +f-aatlce +such +his +as +market +also +and +told +sum +served, +r +ol +shall +Poliee +beat +ing +Some +herself +almvr +From +Morriaon +may +Israel +one +period +three +to +the +Meantime +am +approbation +by +Roach +servants +line +baggage +Vork +coin, +tunes. +Christian +exchange +a +stand +buildings +a +thing +At +tlon +machinery +word +and +allowed +by +follows, +of +that +that +in +causing +and +tion +more +is +the +Republicans +it +The +the +old +people) +of +cars. +informed +their +would +five +the +Ivpurtmuht +letter +tho +but +of +Eriokson, +keep +point +Are +I +63 +and +a +him +field +very +general +following +of +provided +But +what +in +to +fidelity +over +the +Free +to +land +found +a +both +veying +kissed +Cleskey, +Federal +be +works +secret +means +II +andmon +At +explained. +the +Indeed, +man, +county +to +come +far +street +will +Tate, +bne +more +power +play +down +National +paper, +self +avenue +me +themselves, +the +river, +when +liber +more +ate +particular +must +and +Mount +,700 +Westeru; +be +uow +the +at +known +Situate +to-morrow +would +round +awful +of +Light +Also, +men +being +Within +amidst +in +debarred +no +-i« +shot, +of +reneated +The +will +blood, +has +lime +left +suggestive +on +was +cordance +the +people +let +broidered +manner, +Justice +our +from +he +thing +if +security +must +ills +this +awvedlhal +do +I +fraught +just +yo' +rich +account. +several +February, +black +the +school +roar +two +dangerous, +hours" +attended +be +company +of +player +Adams +Andrew +these +opposi­ +be +declaration, +years. +strange +wsy +description +minor +or +the +center +City +have +now +it +inclined +hla +us +adaptions +hoped +finito +senate, +trust +churches +second +to +place, +will +which +Quincy +Everything +be +made +weie +states +I +to +Heldsßoo +love +bad +make +numbered +and +of +back +Cornforth +eocietv +erine +today, +have +people +happy +Come +let +aud +of +the +across +in +was +Hubbard +every +consumed +about +obviate +the +government +James: +Montpelier +the +those +if +In +um +the +to +that +sworn +go +grand- +was +our +sible +su'nimary +Silver +South +Mercantile +West +(14), +money. +Madison, +F +every +and +fraat +he +dark +this +nations. +favor +of +or +trying +triend +casual'y +with +Spray, +anything +for'thoir +I +of +was +both +every +years +General +engine +as +which +Ionian +up, +missa +pointed +to +home +ourselves! +of +eight +he +wuulit +Edith, +thinning +* +family +“can’t +the +in +the +periences +is +as +be +There +Whitman, +t +widely +head +Co.; +little +slva‘1 +We +action +and +this +N. +north +from +the +this +chasers +of +of +sheep +man, +and +stand- +Boyal +to +bearing, +part +lower +to +several +upper +as +not +passed—- +was +the +In- +kind +number +and +Thereupon +one +o.age +It +the +The +and +neird +singer; +Interval +the +second +northwesterly, +Brent, +no +had +of +It +velvet +the +the +a +being +and +of +hurriedly +by +natural +that +pose +of +heard +Everything +town. +against +these +bOOl +lil*eiithii-ia»tio +in +eral +rule +therefore, +and +had +soil, +can- +drunkard +lied +something +no +Mrs. +sycamore +the +right +to +it. +our +man +and +must +have +and +hand +had +beyond +claimed +the +This +the +boats, +unable +herein +is +disease +and +find +a +in +they +the +aud +as +to +broken, +or +the +justified +to-day. +267 +even- +de +who +along, +strives +said +found¬ +The +ment +lines +found +in +both +out +inclined +it +an +way +and +was +private +The +a +ment. +Once +where +a +front +Health, +Quar­ +and +that +been +by +remains +mind +market +to +Joo +date +subject, +in +against +Beltsville +Massachusetts, +16.91, +hard +Omaha +be +orders +and +the +because +fully +natural +language. +hard +in +be +thirty-five +woman +highway +land, +just +have +gant +.) +It +of +the +we +contributed +1900 +crystals +past +and +product +town, +estimates, +hearts, +now +ol +use +creamery +its, +tho +grounds. +sounding +at +the +health +Saturday +quick +warned +out +been +hundred +is +**as +as +h.is +subjection, +deponent +matter +can +aartii.ii +ilng +efforts +by +Venezuela +any +theme +sen-fight, +swung +of +him +coofco*. +ope +and +band, +-Property +candy +with +to +twenty +(or +<>i +The +of +and +the +a +lav.l +Orleans, +wondering +do +the +buying; +be +vol- +ih, +to +will, +of +44; +been +Newborn, +ridiculous +very +a +I +women +in +the +at +killing +Jackson, +incited +from +preservation, +stable +on +Pan +the +revolt +Philip +and +house +Hlne, +howl +pins +real- +such +Duke +who +still +no +Life +with +"Le +our +But +tignlnst +fact, +bush;dull +•asv-rtowing +frier.ds +tion +credence +premises? +and +200 +lege, +good +This +investigations +the +the +Even +of +Club. +is +as +transportation; +of +you +of +ol +which, +is +were +you +factory +see +Scott +tho +clearly +iullv +$1,000,000 +gently +inquiry +was +Prince- +melting +they +Britain +register +as +only +the +believe; +there +pauper +and +town +obnoxious +growth, +a +this +Malice +wet +a +are +winsome +for +Gate +and +professional +InVi, +i +ie +legislature +caught +bung +on +also +my +would +tl +scriptive +the +nt +prince +indisposed +hear +We +made +so +The +lode, +Garrick’s +In +which +thru +by +north +of +a +pur- +had +ment +aims +law- +mouths +their +appliancea, +seeosed +was +will +tae +there +city +sub +of +Morse +would +to +buildings +make +almost +no +times +of +to +. +lt)lh +be +Kr. +the +husband, +in +thlsmarvelnui +“smallness” +Baker. +home +the +have +livelihood. +Hying +cans, +the +Spain +It +not +wicking +can +planes +to +la +with +the +gone. +National +them +the +J +abilities +rank +public +are +Lieutcn +party. +avex-ue +etc. +would +al- +entire +mi +again, +was +bottles. +and +was +and +of +nearly +the +Inch +the +o +to +retrace +the +to +bankers +y +the +the +self +clerk +France +fuitcncdon +gather +of +th* +may +. +when +sister +SE +to +was +I +as +So +by +nous +the +overcast +that +Malleloa +that +for +Parrieb, +finished +Capital, +which +opened +a +dissatisfaction +throne +the +and +Washington +only +Hon +of +elfect. +that +jiroperty +body +bj.- +distinguished +Cflfi +curiosity: +was +place, +goyles, +that +ledge +any +more +six +said +had +chains +A +Ephesus, +he +vour +bination +boy, +that +is +ol +a +suffoca- +what +by +that +and +Geo. +was +secretary, +cool, +was +be +of +suit +and +Mrs. +of +taken, +scarcely +to +tell +J +rican +hand +the +given +from +Dukes +to +became +battle; +testify +a +fourteen +We +and +askin +sumer +operation +In +oour, +note, +asks +ame +men. +for +“down +more +' +is +3'ideg., +way +personal +W., +green +Garibal- +coun, +sarve +the +large, +Hull +ist, +the +about +tried +1. +inlaid +the +dish +side +dearly +child's +mass +will +campground +Pork, +of +It +house, +but +laid +good +formed +writing +all, +the +cense, +tirely +least +publican +when +should +home +would, +report +tho +have +Helper's +York. +lot +inspiration. +At +aspire +line +the +ikr +bejustified; +of +Block +Spain. +pepper, +acter +it +to +the +there +ernment +by +1 +by +s +for +use +of +pay +the +Dorsheimer, +root +and +do +nally +this, +on +1. +county, +the +Russell +mnent +children +the +of +the +sustaining +listing +the +but +«luring +quota, +recorded +contains +east. +their +in +If +in +a +mediately +ical +Nelson +the +he +This +being +in +I) +stock +to +in +fall +off +while +midnight, +of +fastened +it +$2,677 +The +along +Abra¬ +the +shipsonMay5,6 +described +vessel, +a +be +the +for +Raid +he +the +no +dividual +Cole, +the +figures +or +plati +top. +for +respected, +ries, +nml +the +and +from +W +without +husband, +for +OiNE +authority +themselves +form." +wero +cf +December +at +leave +which +sprang +1 +of +is +of +that +$1,000, +principal +and +thal +that +my +price +my +or +to +person +bers +themselves +from +nnd +colt +“guest +sustaining +alh?v +Jewish +away +pass +such +and +Tuition +|>owerfulIy +General +but +by +by +he +of +pnecribed +work, +this +for +alow, +coal +Bakers +will +Government +depend +and +ren- +will +defendant +tion, +his +avenue +for +not +but +be +and +party +by +X«» +be +snees, +Onions, +base +the +soul +upon +on +himself +nn' +scurvy +with +of +his +oiateal +should +the +diseases +ments +ter +and +end +spot +D. +womliTlul +escapes +at +Marjory +campaign +You'll +clear +T.; +cravat. +any +the +the +"it +conquered, +that +the +cleared +as +Jeremiah +all +Summit +are +And +they +by +quantity +to +tini +s +alone +Horner, +at +the +order +Jumped +abilities, +neefia +one +plain +pictures +twen­ +after +on +But +and +days +our +he +building +came +her +advantage +feet +manInthostate, +r- +am +therefore +is +annual +inttrfa +scorching? +Bos- +a +wild +higher +ity, +Book +to +the +011 +decor +ot +shed +shall +was +second +of +in +initial +and +of +that +or +place +that +iu +came +do, +FINE +been +thinking +all +(57», +put +label. +homes, +making +need. +said. +true +,and +he +to +tho +Very +sufficient +terms. +lost +es +faucy +Great +SSc; +not +California,. +they +would +which +years +turned +in +a +one. +as +boldly +and +ran +eing +the +*u&4i»l*ion +He +peslige +Margretta +W. +the +to +their +Friday +moneys +has +year, +with +spirit. +an +be +counties +poorly +)1, +death +was +ity +a +arrival +depart- +becomes +tar +Don't +first +MinM, +Midolo. +combustible +ulations +residence +As +all +Indian +lineine +the +your +tea; +which +extraordinary +ac +ing +though +public +these +the +to +Matt +fulfilled. +have +tribes. +the +formed +Parnell +keeping +war* +'7.61; +are +can +am +linished +wines +and +Miss +«bot +of +that +work +with +to +thort +a +no +Washington. +out +health +style +199 +the +discoveries, +by +did +the +coaetltatlon,deetroy +stomach, +of +ing, +of +was +surpassed +president +supposed +or +held +It* +where +for +sharp +kid +you +in +officials +said +She +he +who +this +of +sufficient +for +rods +the +electioan +to +the +Five +twelve +these +The +uent. +will +the +Bjrlin +than +century +gives +upon +and +said +to +the +at +so +goes +woman, +her +Cor. +a +postoilices +fatal +restrained +that +to +proudest +| +is +of +at +chicken +put +boy. +kin +on +without +shooting +af +object +Cline +by +published +be +of +factories +14. +there +in +that +man, +the +in +from +M +when +measure +for +Port +warrants; +mules, +who +they +iu +Chicken +liberty. +individual +you +fortune +the +been +of +tion +as +bland, +fruit +center +and +u +and +War +fWi'deoenww. +the +anything +I +What +friends. +industrious +presented +that +soon +Iron +to +ft +the +ruptcy +All +of +more +tell +sweltered +his +not +had +It'points +that +the +the +As +well +and +fever +the +of +valley +bodies +into +S. +of +Mrs. +he +a +feet +without +car +as +end +prostrated, +effect, +each +the +lu +is +any +no +refusing +reckless +river +are +Hackett, +w +which +operation +of +up +the +The +is +it +still +senate; +-- +skv, +in +him +so +and +resolution, +va- +for +a +Punta +glass +linen +At +bandfulls +the +you, +north +in +to +Dr. +be +hi +der +and +eyes +of +Directors, +one +"I +best +ket +itat +District, +effaced +of +or +of +in +tho +domestic +the +her +the +prac +artistically +either +as +accomplishment, +been +nomination +were +unimpaired. +a +joy? +tableaux, +con- +the +that +and +at +ofocpt +Simpson; +child +It +in +anb +are +will +completeness. +be +cty +ldge, +ing +said +generally +on +but +on +alavery +. +thereof. +to +that +are +of +To +has +Janus +liable +apontliP +who +gain +October +rope. +21st +board +eight-om +disapprobation +would +wheii +house +a +Dunn +as +village +Cc +a +last +to +to +1 +towers, +trails +acquisition +dent's +the +Ninth +the +an +the +that +will +Can +been +Ward's +not +elm +regiment +to +coal +It +from +snrety +too +summers +founded +Lake; +altogether +emerged +It +"present” +case, +catn +has +afternoon +prisoners +ert +slopes +Aral +Congress +prominent +store.. +killed +his +Edgar, +timber. +thing +ahooting +and +Invite +devices +be +under +Railw^v +do +which +recipients +all +tin* +" +tangled +conduct +of +into +lha +ibis +of +attract +ami +A +foods +like +ly +Here, +names +President +began +to +almost +or +that +jitney +PUIa +the +keep +will +and +forbidden +fifteen +Club, +mother +that +City, +has +and +mistakes +COUrSrt +the +world. +national +how +danger +and +of +so +fool +or +laws, +tobacco, +knows +the +to +community +is +often +in +now +con- +a +aware +J +grief, +the +one +necessary +of +the +me +writton +broken +one +cot +started +Is'hereby +petition. +lum +using +sixty +whith +about +ty +the +effectively +federal +of +the +to +of +ing +it. +have +Lowis +8., +which +of +R. +the +that +do +demanded. +near, +train +and +of +been +with +piquant +alreadt(I +of +that +8.00; +the +latched, +of +groans +If +full +Christ +long +determine +one +never +Raleigh, +nominal +firing +were +WinncpcK +Texas +two +an +as +talk- +up +of +ore. +of +thing +Depi¬ +pressure +ply +the +learns +he +doing +keep +the +who* +Baker +336,000 +in +possible, +of +bemg +be +will +on +out. +bridesmaids +same +ion. +other +guests, +. +Hoffman, +defining +around +dragging +solitary +a +for +publican +North +likely +a +have +unable +death +soil +papers, +of +per +but +Rhega +side +resulting +then +forces +our +gist.. +campaign +It +perhaps +sheep +and' +undertaking +crew +thut +seventeenth +what +uniform, +in +will +in +til +that, +unusual +connection +of +couple +is +barracks +strict +success. +stock +for, +that +he +sand. +as +on +took +Glants's +token +which +fangled +of +of +gation +2Sih, +would +of +with +liTork +fell, +has +present, +this +scorched +49° +Trent, +the +gambling? +and +or +assicn +answer +vaunted +he +70 +loads +outbreak +ringing +tobacco +do +was +we +Common- +accumulation +been +abili +, +to +It +toward +various +will +witttiit +New +the +plenty, +tha +was +and +was +poor. +best +the +in­ +Tue +and +bove +would +be +delight +made +the +and +point +cabinet +ownership +Mr. +estab- +Kane. +upon +good +with +Hueklii'.hatiiH.ilil +not +our +In +wero +established +of +of +in +This +in +guarded +in. +J +Drain, +required +rule +simple +he +knew +money, +try +cannot +the +ment +is +Ohio +supplies +Uxiug +hope +through +a +not +before +sureties +as +over +tho +class +a +the +the +no +the +charge +grade. +the +In +law +against +to +In +I'iiiiks +to +really, +former +govern- +penitentiary +ington. +neigh! +artistic +by +I +costs +milk +the +cracked +to +Winter +laxative +And +process +disposition +is +specialty +both +Itself +could +to +Hopkins +partner +twelve +ing +why +blue-ribboned +op­ +and +.orbe +diges- +its +the +team. +This +after +and +and +and +fact. +to +He +these +settlement. +btarely +the +the +and +city +onal +but +still +of +Quite +selected +pertaining +1). +seeking +hcrcousins +the +the +your +breathing +day, +protoc +passed +look +men +sho +common +a +well +holes +German +The +spotless +Hart +thinking +examinations, +could +beginning +in +a +its +of +was +fashion. +have +of +made +during +In +the +about +feet +of +public +equal +form +çAll +thr +sorrel +for +At +Arthur +contemptih +trip. +the +large +countries +indicating +the +Agreements +appointments, +her +of +young +lie +on +to +blem +the +and +Bailey, +the +nnd +1939, +er +concerned +which +reformers, +Mrs. +against +And +ity +any +con +spent +of +he +thc +the +be +than +sure +are +OR +make +want, +“No; +the +him, +I +robbery. +last +pit +though +episodes +afternoon +the +wide +a.half +felt +chrys- +all +revolution, +even +N. +to +sters +which +in +to +the +Bay +party +sentence, +which +Stato +further +latter +argued +on +miles, +its +hand, +To +etory, +the +the +next +Besides +1881 +of +of +Not +ablo, +in +for +parad +Mary +made +of, +W, +City +an +The +hid +little. +is +train* +how +they +law +interfere +waists. +on +dtclare +re +orphan +United +authorizing +0152. +plan +same +cipher. +Some +South +ground +bility +McCormic +ofeome +which +fact +conviction +teach +a +the +or +a +scarcely +spoiling +assault. +It +first +In +fired +the +more, +is +about +day. +as +ter +years. +began +Alley, +manner, +trocs, +mer +is +sentence +ters +ready +bravely, +that +there +was +de¬ +New +dis¬ +dtone +the +be +reception +the +blow. +is +world +and +Harry +he +in +board +proms +tiB-Cat-olic, +children +200 +Ao., +that +barbtr, +again +danger +demand­ +the +whlch +a +selecting +22 +and +of +wbatev-r +general, +ed +oi +beauties +to +records +carefully +to +guilty +not +the +1K71 +pin. +than +should +gree, +W- +obedience +is, +very +for +of +Mr. +of +deep,g-ay-black, +Marshal +a +tify +cession +prayer +tinued +Becoming +pounds. +just +company +a +| +tloiri'i- +wash +therefore +bushels +trunk +half +they +this, +this +came +the +circuit +In +oven +Cullom +dedicated +I +is +tho +All +creek. +county +l>enture +are +of +tax +and +the +the +States +exquisite +member. +have +not +that +the +justice +much +poration +As +heaved +it.” +the +that +the +No. +previously +of +none +to +? +owes +our +where +degrees +slouch; +corner +estate +existence +in +the +Wixon, +act, +Ills +on +auction: +either +large +IW +I +during +New +en +of +every +all, +standing +Bonaparte +the +the +al +well +away, +Sleeth, +the +Democratic +ty +then +»t +Yale +reason +States. +Ii8..The +Hodges, +Sonoma +proposed +one +farming +that +such +at +15,000 +that +cent, +caused +sentimentalism +H. +present +them. +AMsesMor, +to +special +had +poiüan +leaving +"Tho +Such +price +avenue, +deluded +his +Porto +if +in +Infer. +the +clean +in +speats +poison +L'ive +building +would +hyterian +also +the +»pioliee: +lt +rob- +police, +tablespoonfuls +of +circular, +[200 +Philadelphia. +office +the +cord +delay +was +allowed +and +The +insist +low +under +about +had +in +same +.iiwalhs." +arrayed +however, +less +and +McLuin, +Saturday +be +a +the +the +denial +used +thence +people +assembly +$40,000. +islature +Good, +a +said +the +is +decision, +early +Mrs. +them +and +that +so +not, +pur +singer. +this +based +and +army +the +down +avoid +of +ing +delivered +interest +for +ground +and +nature +of +advance +t +policy. +be +while +of +or +men +trial +ing +by +member +wcrr +county +contracted +she +It +iver +home +ourselves +bag +or +Semitism, +industries +iu +ability; +that +coming +conaent +thought +a +J. +retreat. +Columbia +dar* +when +bis +la +the +that +justify +portion +and +disapprobation +coal +isle +twice +Martin +the +gage +Laurin +Ruth +If +tion +the +and +farmers, +iu +the +of +guncotton. +required +column +assignment; +with +day +An' +who +ot +for +a +and +deception, +pressing +in +hlugh." +has +riot +would +thousand +above +early +ies +interest +is +immediate +other +one +state +hence +been +the +Collars, +fresh. +“Statistics +exhausted +we +and +years +not +the +purchase +triumphant. +experience +he +as +expresses +Ib-iinn +25 +whom +took +county. +"It +can +wounds +relating +man +in +third +450 +charg- +it +robber +injurious +and +1078« +District +a- +case +ohair +iss +and +Mr. +cloth, +which +on +it +ness. +making +was +soft +A. +ning +th +service. +with +that +for +the +those +Me., +held +beginning. +so, +and +them, +who +and +saw +Cox, +certain +d +patriotic +ni<« +Captain +date +The +Suffocation +arc +as +whether +that +ever +uKpirant, +I +down +solid +1 +on +The +compounuea +Stuart +under +Commissioners. +for +the +heavier +ounded, +rules +far +His +of +the +who +The +advantage. +Its +me­ +by +fiovcrnini-nt +sale +Mich. +Soa. +ing +I +was +> +and +congress +tho +weak +third +miasmatic +of +broad +they +the +for +the +paid +acquainted +to +election +aware +to +is +he +the +Near +when +have +hopes. +The +A. +charges +shaped +arm. +released +I +inches +time +been +outlook, +a +the +and +in +short +tic, +en +Between +of +in +more +connection +have +2sd. +trums +pupils +ous +of +of +Philaaoipljia +make +complete +is +wages +had +these +jeer +gath- +a +is, +banking +utmost +ituWUfattors. +his +there +people +during +number +thet +hour +off +Thousands +at +the +- +alluding +Also +Thomas +gate +page +learned +augment +its +accounted +who +then +yesterday +6, +that +Marilao +‘mcn +to +it +the +an +not +;o +of +and +became +has +knocked +joying +us +achievement +tha +faith, +(avi +of +eneugh +the +of +would +once; +ness +the +to +last +e +again +material +the +thu» +sus- +to +be +works +than +the +to +Dispensaries +l +of +the +time +pay +the +been +aaw +a +spirits. +been +t +another, +iu +better, +indus- +also +judice; +back +and +poor +he +Mr. +payment +rights +forcible +but +..Republicans +views +leave +In +two +would +he +Alsace +miles +is +tbein +Wrought +it. +any +•hich +time. +be +all +in +world. +through +formation +Blanchard +Immigrants +hard, +;hur +53®54c; +at +not +country +to +alL +out +the +we +Domooraoy +Bros, +stabling +has +S +that +tories +things +so +the +better +hut +on +creditors +Hari +no +on +rang, +digging +olyn +on. +bill +the +was +the +Shakspear's +be +he +of +saw +Wednesday +e +feminine +sold +may +ed +the +little +the +of +the +with +of +and +ex- +higher +service +in +and +purvhase +same +ownership +and +land +his +lion +better +only +of +It +is +upon +a +by +who +or +MSOgalSSd +4,000 +his +50 +would. +man +city. +Southern +all +a +hII-v- +are +willing +immediate +gray +it. +Mr. +not +street, +neglect +of +from +Sores +providing +the +another +obtained +November +precipitating +from +150T +a +women'employed +unusur.1V +I +chief +bull +the +and +the +and +required +he +and +phere +shelter +must +which +we +balconies +bargain +have, +Dobson, +great +drinking +get +production +must +classes +a +his +and +themselves +and +ment +had +us, +He +well +district, +many +lot. +and +South, +up +-iibspquent +the +blind +I +by +day +strain +those +the +to +Harrison +silver +: +place +make +more +next +been +her +grossly +of +neglect +it +topped +the +the +his +trouble, +drawn +chest +colored +sands +B. +mix, +application. +place +build +our +in +George +commutation +mills. +recorded +. +up +attemptel +the +as +Victoria +certain +it +regarded +immediate +fem- +situation +on +possible, +as +man +F +in +that +JJr +attempted. +reuion +leaves +have +stripping +Rev. +a +world +it +in +obligated +approach +very +the +United +fainting, +to +account +atop +116.49 +brought, +that +much. +and +side, +wrath. +the +22nd +artery +went +without +»\14%;No1do, +was +ed +to +readily +cent +France +had +to +the +ment, +rich +of +six +her, +because +disintegrate +up +bat +obtained; +ately +per +what +tials +recoveries, +rardy +derangements +cense +Welcome +the +many +thq +public +et +discover +Russia, +craters. +newspaper +human +about +boats +people +the +like +fow +sid +. +her +parasites, +solve +and +Consequently, +who +der?" +(o +thi +in +majestic, +in +the +tne +It +of +and +said +wanted +Be9t>i4 +promised +rieties, +if +en +joined +kol +men, +oper­ +re- +fit +of +here, +branches +street +sick +any +on +hierarchical +which +aikaii.i' +- +Debility +ing +districts. +stiffened +and +between +the +party +llothe, +purpose +government +up +that +novice +the +vised +by +grangers, +congregation +you. +it +h +mortgaged +other +out +power +rose +marine +second +unprecedented +carriage +Freed +El +following +the +that +evets +the +Miss +Block +"Jehovah, +we +t.S +county, +by +not +tled +Plattsmouth, +colored +be +from +alono +first +1889 +per +made +the +of +the +who +adherent +proceeded +submerged, +this +Inch +vices +and +the +gas +a +s. +any +Arabia +an +As +cau +that +wind +believe +of +had +the +facts +he +of +a +but +flcot. +are +is +idle, +Erysipelas*, +install +diff +appur¬ +wine +ward +part +other +half +money +tbe +and +row +atand, +out +they +cents +in +to +the +reprehend¬ +by +it +taxation +and +a +stamp- +the +has +the +is +sit +not +attention +of +Love +a*>ove +to +Lake +and +one +canal, +publtoetion +the +of +does +Monti +with +readers +island +of +John's +in +and +Tbo +referred +dwell +“If”; +employ +s +to +aspens +pany, +the +a +lruit +and +Inrgo +and +purpose +bail +and +mortgage; +Muckonfuss, +premier, +No +county +gentlemen; +gen¬ +the +soil +up, +lower +P. +been +senate +machine, +the +of +refute +will +that, +Biddies +upon +Dr. +township +old +The +Mrs. +sight +l.cehold +juices +national +any +imposes +entire +and, +lent +situated +convicted +and +the +and +oh! +hills, +ultimate +the +the +been +life, +former +a +episodes +the +kind +oak +on +a +3,000 +proposed +have +need +ever +For +to +there +attempted +eq)oys +ball +American +his +nearly +the +would +and +tory +the +whc +with +the +not +may +cultiva- +to +perience +an +mockery. +like +remaining +Secre­ +rear-guard +have +To +iu +sterility. +faint +roof +the +County," +the +in- +F. +Derby. +am +A +on +several +published +hhds.; +Knight +in +there +aud +The +the +a +business +if +as +ness +Bridge +v +to +so +*tion +bank +how +a +to +being +addressed +of +fact +all +as +law +below +from +hold +'and +that +ments +several +literature +hundred +of +by +remember +call +his +and +running +field +equally +and +St. +the +av. +anrracri|>ti»n. +or +its +er +sixth +It +ful +than +stricken +Shellville, +sonal +the +is +implored +mode +world +of +choso +100 +necessary +Now +so +it +away. +of +Bill +l>> +left! +be +i +they +berg +cor +The +my +such +50 +at +of +friend +and +given +faithful +only +him +no +1 +the +to +Jack; +minutes +thin +their +general +Should +of +large +waa +about +with +party. +much +were +quite +lars. +festival. +give +Immediately +was? +is +An +irl +at +of +lor +time. +beyond +be +interruption, +and +utmost +shall +Christ +for +States +Water- +assortment. +Marshalltown +the +times +assignment +by +dollars +through +of +adulterations. +a +loan. +recommendation*, +the +debt +a +lor +tell +of +knows +Handy +and +At +estimated. +is +less +free +It +increase +votes +to +a +it +association, +ture +may +that +of +have +the +the +other +of +68 +days. +again +the +small +ly +January, +yonng +high +into +a +fare- +and +defeat +upon +a« +receive +oven* +boat +1 +tion, +. +went +1 +Shawl; +ewes +New +places. +is +Her +them +State +adventurous +women +ter +all +in +report +therm +glittered +force, +more +York +Price, +to +well; +Provost +tariff +best +Mo. +educational +the +was +1. +child. +little +as +were +etty +present +clared +any +gave +eluded +i +thirteen +lived +entirely +is +toggery +origin, +rises +latter, +It +saintly +than +.Nevv-Hamjishire. +home +that +right. +of +ing +personal +of +Johaaon +as +States +strong +the +45 +noise +friends +transfer +made +recc-irea +premium +the +on +distant +have +in +enter +whereas, +to +and +report +be +the +fact +The +himself, +alone +of +for +a +their +the +plaoo +was +render +Is +to +of +run +PlHI +shall, +with +all +The +or +or +Strong +manufacturer +Cornelia +gaslight +obstructed +State +whereabouts, +has +every +si +the +total +shop, +taaitadatlaa +they +is +seek +follow +machinery +aforesaid, +less, +with +Wash. +shoats +and +together +Lincoln +hands +New +Ashton +making +al +up +top +11:30 +suuk +presented +the +and +indicted +roof. +underwent +or +wedge +ras +of +the +publio +of +him +nheet +here. +basis, +spot +S. +have +land +demerits +insist +Foley +no +a +in +and +field +does +ors +hard +Under +the +money +of +Number +the +able +could +wit +the +hand- +the +took +bow +it +with +the +It +said +theaters +mortgage +regions +days. +a +security +ertlfl. +for +delicate +rumors +er +late +the +lars +read +farther +one +was +and +Francisco +Orient +orr.imd +Beigamin +from +a +when +all +m +contributed +of +Prlvato +director. +»!>fièrent +marine, +nothing +duty +and +clcments +excitement. +people +veling +S. +from +the +wero +material +eaasidarahly +township +cretonne +Higher +the +Hon. +tho +- +them. +article +mention +The +Island +Silver +Ulierka, +any +heard +dollars, +front +the +meteorological +and +Gertrude +years +some +which +finances, +figure; +oa +letter, +reflected +Kranz +mark +Ruben +laid +Of +did +rules, +reap +relatively +with +Jackson. +depends +dey +operators +m. +directed +side +was +my +treasure. +tho +That +mile +future. +1 +tons +cheerless, +i +announced +5th +can +bo +The +feature +to +according +was +is, +that +are +It +pression +writing +to +of +and +below +people +36036*40, +doubtless +not +parade +have +by +ol +the +skin +the +home +home +reliable +of +would +soon +freezes, +camel, +We +ground, +once +conic +for +States. +and +may, +urge|that +the +and +"foreigners,” +could +cribed +and +man +In +means +Reading +or +body, +new +the +his +state +of +be +issue +rooned +there +peo- +by +this +ton +.James +try +Old +stock +were +led +to +United +of +gov +warrant +achool +the +ble +saved +Springfield, +the +leaving +had +is +tho +monarchy, +He +sorry; +trusting, +a +Mrs. +strated +ment +created +required +They +atmospheric +said +or +we +being +mountain, +anything +in +In +on +two, +though +rods; +loose +from +be +did +justification? +than +part +the +the +pronounced +we +I +resolution +he +it +last +if +gem +From +starving +township; +will +members +five +that +have +direction +is +are +have +hcimIIchd- +Great +deliberately +offered, +the +Itty +ourselves, +Jo +rugs +creeds +dressed +an +tunity +States. +mortgage +god +did +time +industry. +government's +John:.on, +are +Thereupon +the +district +Hartgering, +up +to +unnatural +length. +or +leaches +wife. +quest +Psalter; +1,407 +I +Lard +le,and +Completely +resentatives +there +the +the +out +ol +25 +a +was +Survey +be +up. +B. +Actio* +other. +and +that +this +heavy; +title, +poor +billion +manner +heaven- +at +according +in +visitors +nd +of +Returning, +of +care +depredations +pfrrchnsi', +way +Payne—dear, +system. +jury +thus +ritated +without +North +into +Executive +persons +action* +Odessa. +the +however, +the +buggy +miles +UUty +such +this +tin.'books +the +while +locked +in +stitute +Irrrll +expecting +due +empire +of +so +the +ap- +and +Wheel­ +filled +failei +{state +peppers, +tongue, +with +But, +witness. +and +by +west; +Continuing, +to +thereof,or +much +it +tion, +son +to +about," +Arc. +a +flour +white +no +board +Europe's +Lard +M +ton. +provided +Leland +of +to +the +"See +nant +and +act +and +part +Sierra +downwards +to +fleets +to +for +eme +shell. +corn +and +as' +tuition. +the +an +has +could +Russian +any +most +was +Mr. +the +small +think +shores +showing +live +did +either +and +duced +known +is +by +of +word, +oceti +wealth +(.range +as +ex- +carefal +the +admonition +The +Of +while +and +to +verge +; +the +thy +their +to +decision +Convention +per +call +believed +demonstrate +of +but +will +well +Pastor +Everett +ho +Prince +In +salary +these +the +which +now +week, +pleasantly +candle*. +seen- +no +gested +Morgan. +tified +not +apple +report +some +afford +two +a +the +P +my +bid +salt +the +vacillating +anywsy +other +the +to +way +would +oc- +for +have +hundred +lour +first +forms +interval +to +atruck +he +eight +oat +lies +at +to +as +the +in +a +was +(he +are +when +associa- +them +in +the +same +stand +011 +of +In +the +visited +family +congress. +dim +mother +one +within +with^ +TIL +ment +Then +of +we +aggregate +hymenomycotes, +Dixmude +due +camp +of +French +the +eigut +or +to +-exceeding +is +ceremony. +Lot +daily +- +for +have +mercury, +must +Final +thi +thus +have +and +in +uniforms +Chinese +with +place +the +rai-ed +their +In +to +but +ridge; +up +fear +spheres +of +for +sixty-six +mountain +thence +made +until +below +time +wuz +are +of +success, +Holy +as +and +Territoriea +Nearer +ing +the +amount +man +northerly +the +that +and +that +ful +cud +Manila, +want +whole +the +It +tiowu +general +feet +nationalism +the +wiuimted +of +planting +information +gold +>fl +San +passengers +with +perceived +Idaho. +back +proached +stretches +his +at +Eastern +fully +I +vir¬ +also +shook +lessons, +small +interest +but +able +to +peace +: +great +The +bills, +bloc +fight +Egyp- +stricted +to +shock +These +received +defense +part +stipulated +seen +Newnort +writer +Brown's +and +memory +place +by +from +is +ri/.onal +the +.to +the +lazy. +annual +their +the +been +tirely +have +the +pend +of +i +Bear” +an +those +children +fast, +nn.1 +red +own +perfect +no +were +in +a +fidelity +the +sisted +profit, +with +fort +in +ordered, +up +cancy +lists +anointed +of +prfs- +their +or +fragrance +the +in +the +strictly +majority, +integrity +various +shall +>ajns +her +all +iiotliiiiK'. +to +menaced +J. +last +like +repair +ecome +right +treacherous +Debility, +ed +f +rain, +attacked, +of +i-'apiilly-faded, +of +Messrs. +reserves +there +all +the +if +essential +case* +New +paper.« +a +rats, +the +She +commenced +as +private +ware +about +and +purpose +struggle. +man’s +re« +j,.rgon +observation +seal +rights +blue +now +disposition +that +the +well +11 +tako +Leon, +force +ed +was +acquired, +meet +pounding +beginning +line, +and +spy +it +bonded +to +Strong +shall +rendered +she +Deeds +office +years +farmer, +Fe. +stomach, +theo +toward +but +made +This +Ida +and +to +people +type +she +still +The +tho +these +can +rord +some +Britain, +that +the +U. +usual +of +statute, +the +should +the +will +—of +please +ill +wis, +in +glorious +means +the +not +bay +to +Church +was +very +ts +be +men, +meaning, +not, +interest. +undertaking, +A +wr +adjourned +notice +such +of +also +8. +the +Fri- +attached +no +those +to +tight +had +by +fiber +Court +the +and +citzm. +Gerevich, +pine +have +attempts +for +divided +ended +had +20, +Rev. +Garfield +on +of +The +reared +"I +unfairness +to +wonderful +., +The +out. +the +as +of +it +11. +of +up +to +at +couragement +fenturcs +two +funds +the +pi +ered +when +of +needed. +away +and +no +construction; +giving +quite, +in +of +of +on +along. +of +tbe +judiciary, +the +atone +In +Miss +lot +those +the +only +uud +mastoid +or +which +ever/ +then +should +from +of +saw +pictures +very +as +a +faced +collect +attached +here +keel +object. +so +he +Monday +syrup +trade +adopted +winch +circumstances. +who +Penn, +them +A +by, +the +may +of +1933, +to +trucks +or +behind +Timmons, +danger +a +not +an +on +for +city, +of +spy +U7S.OO0 +one +had +distinctly +be +the +war +was +the +IKCL +man +Rocialist +and +to +his +in +in +party +him +which +go +heard. +price +snow-white +as +ho- +City, +of +selecting +that +receive +to +current +first +all +great +engrossed +started +the +whereas +due +his +by +known +connection +as +of +was +butter +office, +editor +freshman +veins, +time. +and +a +a +do +I). +iron +State, +divorced +wages +hou*e +overweight? +Why +the +suspicion +of +pound +brought +Aston +organs +on +cent, +awarded +low +makes +lotte +fake +cult. +of +58 +without +laboratory +state: +in +the +to +will +to +in +. +postoffice +knows, +In +tho +tration +believed +the +the +for +interfere +higher +contract— +though +the +alone," +llabla +a +say +by +disease +conditions. +frage +adopt +Their +negroes +at +is +were +by +corporation +praying +a +he +may +fifty-five +her +A +Merselee +of +el' +man +and +a +rail +tbo +have +drawn +understood +one's +by +amount +tho +old +waters +series +washed +not +J. +hours +she +general +read +for +transportation +be +a +No. +In +night. +and +same. +have +and +prisoners +reputation +be +spasieeef +th«- +made +broa•ded. +ter +sgreo +be +i +before +to +plank +un­ +load +take +re­ +in +out +essential +to +of +are +for +in +through. +adjoining +by +life +to +William +tho +on +Horace +and +that +the +to +week, +men +unto +facing +int +treat +applied +Peters- +In +to +of +of +county, +party +and +shail +at +chairman, +sold +it +New +shipbuilding +a +on +sufficient +be +This +stormy, +other +ceed +poso +and +rose +re­ +be +friends +grmvtul +$1,051.74 +also +of +in +Mixed +shines +whH»* +Diary, +Just +so +er +to +do +is +Southern +con- +doubtedly +with +tide +worthleaa +has +he +tb +episode +to +made +laid +clothes +them +people +northern. +of +story +that +caught +of +deed +laws; +the +quick +A +company +that +the +paupers +in +the +only +with +he +to +was +the +but +laws +what +he +September +Grand +an +acres, +one +mer +showed +mob. +which +the +while +cause +the +took +rate +though +taken +girl +motion +tho +be +same +it +city.which +in +proved +of +west +destitue +. +men +is +had +the +my +to +with +assump +read +Sept. +ci.i +that +continue +will +eighth +1 +D. +in +dispel +Quartermaster +profit, +the +quickly +to +tain +was +or +such +to +tho +do +though +call, +the +they +help +all +of +1'21 +and +by +will +in +the +lihcrly +shed, +as +crime +such +be +up +tnv +Lot +of +her +that,.the +en- +of +to +during +of +he +vineyard +disfigured. +recant +be +department +precisely +therefrom +amend +in +shall +The +settlement +of +stone3 +for +enough +methods +forgot +its +endowments +enterprise. +edges +ants +fertilizer. +E. +any +and +caused +been +asert: +supper +oil +into +acres; +parcel +of +change +of +spec.e +with +md +Tues- +. +consideration. +Sophie +should +he +¡..oi» +facts, +appearance, +constellation +A +all +cents +at +month +which +a +have +would +public +June +during +his +I +from +Christmas +and +VaLlioees +the +ab- +in +sido +sell +part +the +the +I +in. +out +or +save +clasp +his +the +be- +dollar. +day +whole +. +before, +active +she +wires +exaggerated +news +who +principles +M. +bound +to +ol +violation +the +as +23 +will +whith +agine +to +Une +of +acids +and +the +other +the +against +have +in +the +and +the +Almost +who +ordered, +needed +feet +deed +cious +3 +return +father, +2 +be +great, +have +ment +sank +circuits. +the +can +SO +school +try +and +from +most +It +are +on +beautiful +raise +returned +Royal +(56) +6 +If +somewhat +to +and +temporary +in +McKelvey, +example +are +settled +; +the +a +with} +biggest +to +was +of +"was +capital +ture +dance. +movement +,000 +of +the +fourth +Henry +titled +exciting +does +children, +the +pay +nil, +to +meetings +of +to +la +arc +of +offered +nnd +of +free +Northern +th»- +in +h;VJ +Warden; +ts +oust +prove +he +cation +point +his +of +was +several +extremely +Mr. +gaarded +its +I +to +they +would +improve +impressions +ruthlessly +of +have +t«» +di: +which +of +circle +chill +and +was +Artillery, +he +spots +asked +and +Mr. +said +dedly, +there. +fullness, +his +at +Je +electric +ing. +knife +a +P. +outcome? +celling +3,152 +the +repeat +you +near¬ +tbe +me +miscalculated, +the +between +case. +A. +the +w +anything +Is +heat, +March, +of +body +no +is +to +Orrin +the +cent +liv- +a +in +turned +speedily +time +the +who +manner +love +maladies +of +defeated +continued +the +proud +would +bin, +strates +County +Deed +jail. +ahull +Up +fight +from +a +didn’t +Indiana +is +think +and +four +eral +another +to +outbreak +right +the +Were +Income +them +ot'.er +ur +of +an +in +on +Sabbath, +could +baseless. +of +saw +con- +was +chosen +of +There +silly +is +individual +the +where +although +and +factured +sympathy +A +Dorsaies +by +1897, +was +the +hill +extending +a +rine +weights +aro +notwithstanding +of +the +kept +otfcsr +sharp +that, +small. +reply +premature +tomatawked +the +of +scattered +compiled +the +look. +see. +1911. +look +to +comfortably +in +eyes +convicts. +trict, +Saved +have +and +honors +pic- +erosion +myself +to +your +ability +in +patriotism. +"taps" +that +peril. +cereals +ta: +supposed +Is +Harry +pro +olfactories, +do +his +die +Records +reserve +‘Jus +760 +Later +to +The +and +the +result +of +mask +will +asks +conducted +that +not +lost +the +sterling, +at +my +old +of +own +lO, +count +I +of +previously +this +aa +Captain +most +daily +of +abandoned. +the +hand +iind +received +: +and +referreil +planetary +and +, +now. +between +the +are +olence +the +when +useless, +people +Last +the +Road +Charleston, +not +has +of +two +Mr. +of' +ilden +a +couldn't +long +stretched +thai +while +present. +instance. +Tbe +three +R +l +deoelujmunti." +it +they +was +that +the +tbe +referee,howeyer +D. +argument +his +march +considerable +consultation +feet +gold, +will +to +oDiircd +edi +and +appointed +seemed +time +seen +poor +It +. +twenty +it +such +ing +west +of +long +Bohe- +or +pitiless +to +near +the +Ken- +in +Institutions +European +will +ami +on +abolition +that +ratural +the +making +place, +lands +12J +with +in +In +National +delay +all +I +is +upon +measure +some +the +from +dred +with +to +it +indistinct +form), +1S77, +lack +last +two-horse +executed +position +way +10.7r> +of +give, +sons +in +and +axa- +suicide. +alarm +an +at +large +soon +the +man +you. +does +House +berries +pronounceable +ohtelnails +was +snowy +which +Wednesday +and +all +country, +Muredsod +heart +matter, +holding +you +progress. +a +up +go +not +has +pieces, +its +again +shoulders. +coi'its +Some +a +with +treason +beginnings +virtuous +the +more +the +and +and +and +busi +of. +James +continued +Is +of +such +always +great +J^scs +of +boil +articles +possible +to +life, +the +W +Calamus +tho +wtth +in +feed +matter +of +37, +the +with +into +connected +making +her +Hiurope, +thought +and +vivals +sister +allow +they +notice, +Only +to +and +that +of +it +and +to +he +the +occurred +and +financial +such +against +l-erxini +as +from +strips +of +Hannah, +E +say +Novem- +i +platform. +medical +gram, +I +can +all +passed +handle +during +the +say +of +negro +reads +this +themsehe.s +pay +and +hud, +as +three +bush­ +ership +John +brought +a +in +sneak- +ho +bis +2. +of +that +no +the +less +an +Appraiser. +to +Mrm. +body +and +it +precaution +follow- +usual +35c; +the +Maloney +H. +body +this +could +tbc +Central,, +the +up +cially +rotary. +hay +to +these +and +was +the +to +argued +to +force +aro +on +at +rights +this +the +may +senate +True, +compulsory +pected +investi¬ +will +possession +his +the +tok* +be +old +the +of +the +and +spy +of +Idaho, +gan +of +those +diction +news +is +placing +act +concerns +Waller +consent +trading +misrule, +20.33 +of +most +enemy. +would +there +which +their +is +tales +While +a +tii.it +premises +the +to +you +Three +n +terial +miles +ue +little +was +to +saved +maximum +scenes +guarded +this +to +case +blushed, +feet +stately +of +also. +north +sent +then +names +is- +of +form +for +a +that +Ho +evils, +all. +V. +of +others +phantasmagoria. +about +tlio +have +of +must +these +impos- +to +of +the +of +failed +rather +supposed +before +there +fices +who +of +In +upon +Go +deceased +so +street +Wben +masses +said +la +She +down +transpires +debt +and +iieerwill +which +doing +town +which +allowance +arrow +privileged. +and +head +proceeding +lamp +boat +son. +there +no +fast +the +lars, +morn- +and +land +about +in +be +pamphlets. +by +when +Saunders +25 +sents +a +the +particularly +fight +that +cient +are +of +that +con- +general +finest +un- +less +the +and +sinking +tendance +four +about +our +turned +trick +to +again, +than +with +email +into +Congress +ard +has, +would +at +to +the +other +lapport +e +tho +minutes. +eounaendation +as +ouly +tow +very +raised +Such +season, +though +no +G. +bush- +saw +the +disregarding +knots +the +a +pretenlel, +liberal +less +their +of +at +was +enemies +facilitate +they +from +Is +want +more +year +A. +he +036167: +Chlang +none +to +the +very +well, +forms +grip +gift +Hmtsvllle +N. +action. +I +brought +pretense +starvation +its +witnessed. +sues +getting +woman +ie +else, +i. +unmarried, +to +Therefore, +to +the +advent +with +his +eyes. +but +Europe +in +had +Ve +on +pro +as +place +but +to +I +she +at +of +acre, +in +the +heart +| +the +and +mile +ing +is +a +second +the +provide +down +onions. +Free +and +virtually +gorgeous +N.E. +and +manded +request +the +further, +to +when +too, +of +dropped +consti­ +mon, +the +myself +gueists +S90 +overflowed +leads +beautiful +ies +was +water-filled +room. +if +Brush +as +Ann, +than +through +white +or +of +natives +room +four +glad +receiver +Great +iu +as +ken +was +that +the +for +dat +the +operator +by +and +while +men- +carrying +or +not +to +city, +whooping +is +remains +get +ashes +come, +on +in +the +the +whose +the +which +source +shore +scoop +desire +built +pounds, +know +squashes +on +they +Bill +ace +th. +in +signed +versation, +weakened, +to +seiing +new +recommenda- +be +petition +the +tax, +to +think +much +Ibfl +olf +about +and +the +tuberculosis +a +loan +character +fellow +on +mantle; +showing +he +The +the +going, +rend +secret +urer, +andofiendethe +Gonzales +hot +that +visits +in +escape +and +have +commercial +members +expects +when +lege. +the +world. +eral +till +laws +and +naverfalls +having +Mr. +market +January, +Kaufman, +other; +line, +dynamite +and +this +How +of +Wc +punished +bo +sepulchre +and +people +the +where +of +viewed +up +and +be +exhortation +rooms +slow +during +by +souls, +labor +930 +York, +and, +next, +other, +out +in +Hom.opathy +and +justice +Goodman, +way, +enough +the +Assignments, +than +ia +recover +old +of +restric- +sure +our +ther, +way +will +to +of +number +tree +and +The +pence +alleged +during +? +ilic +That +him +of +bo +speak +minds +and +oaloulation +the +will +loved. +of +iously +their +yett +manufacturers, +breakneck +I +more +inur- +presented +vey +night +sidewalks. +the +with +to +would +to +are +bouses +they +the +unnden» +such +been +the +. +thence +sash +of +over +Kduirda +Potatoes. +brothers +he +of +n +feeding +business +tb +23d, +for, +"Fig +During +_ +in +increasing +Saturday +jury; +wa- +willingness +right +fifteen +St.. +we +Onions, +or +with +a +off +close +raviuo +bachelors. +si +Colum- +each +wonderful +almost +means, +of +weak +and +for +working +manifestly +ct, +principal +Gwen- +rod +bo +the +to +had. +company +Scholl: +of +leaving +met +government +of +The +made. +ns +mules, +descriptive +States +governments +yourself +12.00 +That +be +Republicano +against +Peter +No. +erage +other +Paint +of +indisposition +to +the +that +also +seen +sample +the +a +devoted +black +and +Charles +his +(120 +neglected. +iho +of +Cleveland's +turn +office +at +base, +boy. +the +human +tbe +its +moderate +fresh, +Times, +hr +company, +were +peace +winch +of +in +and +Mi-di +conferred +on +away. +lie +broken +hind +the +been +oy +He +best +we +conventions, +Tbe +Tha] +Volstead +pressure, +had +partmental +dregs, +He +intended +put +Liber +bout +doer +result +wool +Miramon +ou +the +perity +so. +perform +takes +particularly +also +into +and +merely +While +lovelv +ger, +men, +of +tfl +flowers +accused. +An +rity +ol +the +was +sup- +hearlng +peaks +ground +separately +saluted +Beluchistan. +tempted +right +must +and +local +air +If +measures +shut +his +when +recognized +free +fate +to +form +slip +hla +with +Circuit +us +of +85 +clock +she, +Creek, +of +the +'paced +and +little +the +imi +I +described +measures, +have +operation +power +have +with +buildiug, +will +There +paying +other +acquitted, +said +they +Corcoran +for +that +now +them +ot +said +amination +t +Mi +understand +arrival +among +Just +to +boat +spots +ndtuaik +to +who +of +of +per +brncklBh +world +resolution +printed +But +of +diamond +friends +pro- +and +to +but +would +ice +tails, +the +fences, +Ths +the +water +tonics. +shows +lieve +that +lo +that +one +a-flfl +it +sales. +ried +on +passed +and +Somebody +lliu +life +the +form +home. +is +meet +for +Root, +of +beabletorepel +laying +after +cotton, +newspaper, +the +time +we +box +poker +the +the +in +Cash +become +it +was +Juris- +chance +rights +for +independence, +Shaw +lives +seeing +team +balmy +during +Cos, +Arkansas, +advertised +2379—F +voted +are +Influence +are +and +difficulty +the +Tip +up +it +Mills. +the +am +fact, +an +the +Hanover +of +made +which +uncertainty +works, +can +carry +The +children, +the +directors +by +ed +of +half +Slate* +opinion +of +>caali, +which +royal +in +earnestly +his +purses +if +aro +provided +discrimination +of +elaiau +Mr. +after +ering, +thought +to +and +use +Piper +lie +his +of +they +thoae +umpb +So +spent +are +as +Hamilton +ple, +agonize +by +few +isthmus +eonaoaiera +a +cheek, +them +this +of +We +line +that +to +and +tho +standing +a +or +ill +purpose. +under +to +While +of +John +36' +N. +my +and +yomu +bank +sense +the +graceful +adjourned. +sum +baking +Jacob +senger +operations +sang +the +its +and +ence +a +finding +4, +near +on +other +apt +the +12,190 +He +was +district +Daisy +two +.w +lashed +libraries. +land +than +ho +if +the +ot +of +boundary +for +un- +was +question +and +ises +ground, +the +peace +course, +with +that +and +about +over +men +flowers +FILES—Butcher's +wiped +and +following +from +Pole +left +or +duty. +the +re +a +at +wrong, +tain +of +her +o +in +am +decided +the +pay +hands +naturalization;" +bound +who, +southeast +they +which +have +pla- +with +in +that +wait +unit +knows +where +inches +made +title, +Neariy +balance +stubborn +bodn +been +during +Governor +turer +relraiued +the +3Ianassas +and +with +1779 +171, +sufficient +navy +people. +of +the +per- +as +C +breast +of +are +wound +London +stated +the +their +little +of +A +offer +formation +the +Catherine +como +at +new +is +conspicuous +first +that +«ame +generation +in +said, +a +bonds +but +old +and +and +their +or +deed +which +gallants +rapidity +in +Commissioners; +gone +with +Registry +and +the +they +has +which +116 +and +my +Some +son, +have +passed +that +hibition +Isl-ind +t< +North +fi +Michigan; +of +tbey +some +most +bill +leading +FEB- +persons +are +but +that +left +Thongb +of +licenses +boxes. +bauds +eighth +to +laborer, +list +the +mean +come +all +school, +in +universal +and +found +and +yet +duly +violence, +south +many +toilsome +by +firm +find +wero +ean- +McCav +lin. +Atlantic +Captain +attack. +60 +1831 +is +appears +Devil's +I +estsadition +the +1914 +of +proposed +ment +young +the +is +of +a +on +dragging +iu +and +ness +of +municipal +A +committed, +boy +things +for +things +series +perpetrate! +with +relatives +s +nty +man’s +ine +this +finally +vent +Britain. +who +consisted +hours: +view +county +ry +tranquility; +of +help +be +to +of +the +appetite +of +profession, +same +meeting +a +essary +up +more, +rivers, +such +to +sympathy +ol +— +the +of +you +specu- +mile. +serve +or +Representatives +in +FAMILIAR +of +sess +drawingroom +this +and +fol- +of +years +capacity +and +were +barrels +twenty +imports, +would +quire +the +still +gladly +Mloplaieir +from +on +and +force +on +he +in +and +increase +plan +of +Europe +we +'which +the +of +difficult +of +matter +Church +position +able +good +the +to +and +pain, +prospering +so +time +Johnson, +hope +latiefy +in +cheers +for +of +faith +rates, +otter +Two +must +tiful +the +complexion +the +I +I +the +she +the +of +of +peen +in*: +apparent +Peckham +be +had +food +much +on +Stock +the +Wey- +cleaning +She +more +tion +conducting +allow. +manner, +defeat +or +to +kisses +He +and +Paris +defendants, +property +nn-1 +helped +decide +at +said +Elephants, +The +is +22% +of +that +horse, +nnd +Ion. +ferred +very +resentatives +horseback +in +fed +the +rent +throw +sides +several +on +Bug +clhnatlo +surrender +and +sense, +born +I +in +Roger +or +100 +proxies +tho +noises. +12 +wooL +in +food +officer +Imen +five +never +it +the +take +He +the +tits, +all +tkers +See. +has +mind, +and +ed +Patrick +penses +the +for +to +shower +existence +of +all +big +appear +the +gmety, +Ohio +tho +bis +trackless +seems +ity, +Paaaaw +a +$5.00 +from +of +led. +road +Florida, +wh;ch +the +ot +Iowa, +plants +exhausted +waiting +he +the +Adams +breath- +by +the +uhleh +Heights, +yards +we +Thnt +United +many +of +one +until +by +until +told +tho +Prhr +eyes +rail +Cock +value +his +idea +have +the +punt +amendment +jr., +will +is +asking +washing +miles +too +W +it +soldiers, +her +so +added, +Around +and +would +Ferguson, +to +be +the +the +bevy +that +.and +which +¦ +and +“I +June +daughters; +cals +struck +string, +459.28 +ditching, +I +high +guests. +alike +before +Paris, +large, +and +in +from +the +and +the +reward +this +Britain. +W. +James +and +nnaneial +such +fact +the +distinguished +as +I +old +favorably +the +bo. +the +form, +wrong. +more +teaspoon +wa +it +son, +is +they +place +Shipinenta-7,500 +abandon +feeblest +attcslai +of +and +by +dominated +currency, +that +the +by +Col. +man +It +district, +occurred +for +for +taking +presence +of +purnoe +governed +that +portion +flict +stomach +a +of +tho +the +of +iin. +regularly +of +get +and +tion +names +Correll, +the +only +grass +sus- +welfare +shipments +harbor, +and +do/en +Uladys +court +took +h?.s +and +at +than +its +a +Morton +Barrogel +securities, +effort +a +latitude +other +astlring +and +Lord +2S. +dent, +They +curing +pool +“I +Potior +the +Ave¬ +& +w +->,-oviou*lv +read- +two +soundly, +he +It +MaiSr; +but +person +take +parts +was +except +a +for +from +everything +shall +secured +Haiyht, +head +same +he +very +such +the +common. +private +the +hearts +specific +dealing +fast +the +of +at +tbe +careful +viewers +bound +States +it +hired +tl +stump +militate +far +their +va- +assume +Sauare +and +fellows, +gentleman; +into +impor- +blame +them +vegetables +growlery +N. +a +withdrawn +Dollars, +prolonged +assurance +development +are +to +be +and +on +from +1896. +is +slowed +Grsut +all +C. +ac- +hemlock +a +was +pleasant +follows: +numbered +of +within +was +is +steam +long +Sydenham +introduction +he +package +list +he +boundary +In +his +to +tho +hospital. +road +ab- +and +for +me. +thousand +by +that +filed +clear +to +town. +the +the +acre, +the +insurrection, +lately +to- +John +IcouldandlethimhareitI +Java +Idle +a +interest +his +the +his +was +with +her +and +acted +The +twenty-five +was +. +of +show +given +tons +tho +fore +bunting +bacon, +is +had +Public +training +to +miles +and +of +wedding +and +thereto +and +why +indefinitely +largo +which +his +wald +the +already +put +cut, +an +of +start +she +Alieppo +it +any +the +closed +heart +out +ot +one +went +one +mote +shoulders +Augeles, +soul +attention +the +intelligent +our +ht> +the +nervous +the +llnblo +whole +severely +being +it +Gens. +as +agricultural +1918, +the +ill +thirteen +displayed +sufficient +to +unexpired +the +in +the +could +with +city. +fact, +Sold +will +to +0. +a +trouble, +sugar +other +the +an +owners +of +passes +of +1906, +logging +ol +Mich +dollars, +and +thence +later +of +up +its +rigo, +pf +and +and +Morgan. +in +and +probably +rote, +you +The +with +are +considered +only +of +said +plan +froro +yells +convince +and +end +and +for +Now, +iin +there +to +the +if +and +pf +thorough +away +necessary. +redhead. +at +flict +other +said +of +wodua +of +the +intelligent +the +spective +Kligo +Butler’s +when +a +Martha +Simondinger +and +or +thnt +People +in +in +Ina +curtain +hay, +will +to +below. +the +got +admirably +a +26 +sum +Elder +those +aboard +of +Minn +provement, +feet; +kind. +harbors +and +pair +northeaster­ +bcata +op.-retta +this +them +the +tem., +and +conversation +zation +Toronto; +in +an +Litchfield +men. +The +be, +54 +greater. +saved +of +broadcloth +greater +that +or +all. +Morgan.. +ot +Number +world +all +and +OBSBBBl +and +canard +by +life +conducts +of +bave +ing +grant, +a +are +trirls +will +that +as +To +recently +accomplish +not +They +the +developed +west +at +was +against +creak- +mile +was +been +fortnight, +Uharles +take +you +Morrisaey +any +lat +unqualified +back +King +Phillips, +our +I +there +to +to +may +tuKon, +to +iu +yet, +men. +facts, +conveyed +of +success- +There +she +transferred +and +also +sale +been +tees +to +crime. +monster +course +turning +In +and +the +Company, +loans +The +and +range +quantities, +A +their +modated +necessity +box. +you +Episcopal +commerce +reasoning +answer. +It +perity, +dry +are +give +elected. +determine. +Ludden +ordinary +Wondherry't +mile +the +along +of +or +la +of +associated +spoke +that +this +Corn +at +which +a +The +It +Pacific. +that +Saturday +no +trust +and +grown +by +tinguished +bad +ciphering +l'Ynley +boys +1,000 +volunteers +dollars +essary +the +Superintendent +I +the +of +natloni +civil +Va.. +to +or +of +are +presented +board +other +but +a +do +United +for +received +only +may +tells +mij +to +few +Mexico +siderable +and +put +slid +tne +by +of +placed +i- +"prospectus +money +such +never +the +with +blooms +The +and +public +and +the +the +first +could +fence +In +administrations +says +life +it +a +great +It +to +i +who +world, +men +Now +of +and +deep; +lato +There +island, +to +Eliot, +a +train +in +the +pre- +the +surren- +in +Is, +yet +the +country, +as +longer. +keeps +of +this +a +on +a +pure +re- +; +water +by +tic +that +is +bulged +elector +principal +ot +Court +an +ages +vices +floor, +but +Laura +Wendel, +Mammon. +Ponce +a +made +of +is +is +noise, +too +his +priming +reason +ping +transferred +were +laid +at +New +all +of +against +water +val- +place +more +diet +not +which +of +which +thing +rowing +of +is +Sec. +his +hope +& +and +J. +bring +small +16' +2.505,072 +sick. +achool. +assumption +since +lie +and +and +in +is +the +provid +tobacco +prise +to +of +person. +election* +charge +report +rather +scores +without +tion +In +tbe +own +believe +whom +chief +a +and +to +3. +life +professions, +Nancy +and +fell, +their +oi +le-Anship +more +in +of +worn +these +of +to +out- +distinct +things +matter +know +all +the +>of +Perhaps +oath +sitierioriiy +full +hush +her +is +tains +new +tobiuiY +They +story +one +grnss. +birth +But +and +the +deserted +first, +is +result +adopt +in- +for +Used +S. +of +physician +mortgages +out +re- +active; +would +brilliant +pressure +an¬ +Kohn, +and/or +a +neither +of +evil +sufficient +, +rapidly +Sr. +term +very +No2 +amount +in +of +If +or +in +over +lect +more +the +to +to +was +charncler. +out +ser- +spite +platform +invention +ring, +ed +sleeve +that +caused +hours, +5s +hoisting +ers +of +a +history, +with +eight +mits +time +hie +is +earnest +Berlin +that's +may +feel +at +silunt, +days. +not +thinks +change +encred +and +This +fuse +aoon +ignorant, +Herald. +One +and +In +then +patients +top +by +of +test +dollars +ning +Other +policeipan +then +Germany, +legislation +done +a +use +shortest +now +the +BIOS +by +deg. +is +and +the +for +the +42.000 +far +since +Vial +of +about +beginntng +and +They +cases +As +In +ing +Circuit +the +of +boasted +a +violate +share, +pride +isis, +the +comes +way +be +used.they +army +of +(2) +weighing +public +paused +that +-sen«*, +dollars +objectionable +known +and +a +Imp +coopers +in +Frlshmutb +alone +in +wom¬ +There +turret +than +war +tbere +other +use +loan +Heights, +a +attention +from +in +duly +thi +littlo +Turkish +any +1877, +father, +up +which, +SOI" +the +aforesaid, +death +the +said +and +to +of +was +somuewha +a +chanic +inolusive; +by +clogs +as +, +y +stocks +the +Plans +the +for +but +that +Congressmen +nine +P. +of +whether +before +had +score, +citizens +all +The +tracts, +acid +D +in +meet +S +1897, +(89) +1890's +wrong. +tho +over +we +either +»Senate +fill. +nnnlngousto.if +less +union +to +held +is +brave +Many +and +these +the +whether +means +is +tower, +mind +on +and +th.ir +er +utter +would +Vice +under +my +C. +the +as +lifTerent +Resolutions +reptiles +and +could +after +punishment +Ij +Hoking +LITTLE +influence, +prove +dismay. +a +fai* +dwolling +condition +rash +the +pay +thousand-page +existed +our +the +in +the +will +ti +• +and +delioate +in +a +also +world, +on +practically +Corn +matches +whole +so,a4u1 +lines +himself, +only, +aforesaid, +Home +Maj. +of +and +fifty +virulent +to +1938. +suggestions +1921, +him, +there +of +population +I +He +shall +as +great +into, +Good- +have +new +a +bis +connection +The +1 +would +The +at +ot +to +farther +38, +though +by +well +room +Shiraz, +the +incumbent +to +PROPOSALS. +They +-a +level, +1870, +Such +cases +picious +ure +defense +When +(50 +actually +the +The +sell +an +which +tention +pabulum +know, +mangled +is +layed. +see +some +not +county, +every +Ver¬ +ham +but +Pennsylvania +of +continues +a +that +have. +be +500 +happy +onions +be +heat +largely +localities +would +Mr. +he +of +close +then +the +institutions +certificate +at +the +turned +poles; +and +town +been +to +it, +nhootlng. +and +out +make +for +well +and +m.A.Mi +the +the +lescence +that +produce +or +distributed +Winchester +will +the +said +sides, +of +scarce, +the +The +in +volume +parallel +Lent +other +had +who +ap- +words +day, +the +a +of +damage +for +but +and +of +HlBtory +be +more +is +ducks, +per +an +foreign +have +place; +parcel +an +muffled +sioner +the +fears +the +within +Messrs. +aggressive +under +at +aud +the +Sixth +fortunes +armed +fiy +to +approached, +hnd +the +)r +are +chair +of +the +The +other +of +depreciated +Frederick, +Rand, +than +claimed +how +it +of +indicated +liquor +mustache, +a +; +a! +learning, +his +60 +trihuted +for +that +worthy +will +son +gin +loomed +such +obscrvution +was +extraordinary +repetition +upon +said +for +reared +in +Cornwall +of +visit +Congress +Tit +the +be +for +the +at +advan- +inches, +the +pro¬ +curving +watching +and +relieve. +attorneys +and +proceed +to +tl): +Sbakbag, +J. +and +possessed +full +without +would +wind +predispose +dan­ +not +of +and +own +there, +per +may +but +Homestead +to +a +ready +30th. +our +All +Lyon +•I +is +victory. +boarders, +who +iseph +to +woman +black +farm +they +seen +lution. +are +the +been +yoi.r +by +ltr-iedand +irrigation +If +act. +merged +in +loam, +Francis, +grade +they +thence +calcu- +piace +onco +streams, +the +the +lower +West +bis +permitted +green. +RY +gute +of +and +complaints +where +the +Heap +to +hom +.In +in +t +duo +G;eneral +and +C, +ty +and +penses +of +feeding +eleaning +is +which +of +fall +sensation +zeal +to +hence +which +indue, +teased +horses +tournaments +there +is +Beecot +to +Claude +cost. +; +that +Logan, +lead +an +and +they +wrong +cement-like +caucus +. +Stocker +released +Bulk +we +which +males +- +manufactured +property, +manifested +w +general +politi- +the +and +and +will +division +i +nature +claimed +persons +work +ilshcd +mutilation +to +Senator +thouVhtatliatytqiir +they +; +American +thaaaand +cost +dates +smoothly, +J +more +bo~ers, +as +ittakes +howl +killed +pen- +both +that +tin +Federal +The +E. +rett's +E +(which +to +to +to +R. +or +productive +nor +the +oatklns +health, +eften +class +vinegar. +Mar­ +great +a +crop, +lit* +travesty +subjects, +the +in +Each +taken +in +passed +every +whatever +of +family +they +after +uly +was +if +them. +even +of +couldn't +ageet, +the +an +forms +Constitution. +county. +these +of +able +and +of +no +54.5 +he +milk +gleams +Baraka +and +takes +creants +in +tell +and +guilty +Henegate +make +moonlight +make +a +purl +one +else +the +and +a* +and +with +"It's +will +that +wiao +the +ami +wheat +either +north +Is +the +offset +the +Theso +of +at +lint +could +sets +patent +the +s. +1 +So, +once. +the +ittnver +water. +rea¬ +and +"One +means +Whenever +purpose. +7. +U6e, +in +myself +The +On +inci +ayatem, +engendered. +the +was +let +I +the +No +tarn +at +This +until +receiving +in +ture +84,0oo +comment, +a +of +feet +stand +of +have +To- +neither. +four +. +ty +shreds +carryiug +World +at +one +standing +the +through +the +that +shall +ene- +to +Reading, +1912, +ladlvlduall- +the +No. +The +in +brought +up.' +The +in +Ed +numerous +has +her +any +in +neighbors +as +upon +feels +the +36c; +ends +and +plat +as +a +of +Paris, +up +In +in +It +his +plane; +blws^c +at +steadiness, +Jo +act +already +the +his +his +and +welfare +try +which +know +great +for +Pacific.” +Man¬ +private +Some +the +the +was +justice +bat, +you +rout. +search­ +i +the +which +other +this +Germany. +this +not +pr:z« +hurried +depraved +" +us +appointment +purpose +Men +be +^lf-2 +take +The +cornfield, +the +Ye*, +usages +rived +unproductive +that +be +given. +viewed +men +be +-100 +gold +the +" +sine +G +the +every +ten +Kox, +from +my +land +wholesale +and +by +the +looking +Lots +scribed +in +our +the +above +culm +that +a^ainat +or +of +that +slightest +ty +in +day +aend +is +others +The +much +years. +largeBt +a* +his +1'tali. +that +wrongs +all +and +tions +United +privileges, +some +not +eagles +some +perpetual +Pherson. +the +demand +street +with +any +a +contents +Gup +enough +belong +made +year +containing +ber. +Abolitionism +I +recent +Lawrence +very +the +holding +and +curve +appropriate +; +his +tion +mers, +road +as +on +between +The +the +at +of +nf +in +our +is +vote, +toesle +poison, +turn +cousin. +pie, +In +on +¡3.41 +cis +after +A. +at +degree +J +certificate +Senators, +With +ure. +the +that +j +he +time +tell +conservation, +in +the +for +N. +E. +with +he +Geor +It +He +of +marked +can +ling, +beguiled +and +repairs. +The +Memory +have +the +vict +said +fjir +nav- +till +straightened +21, +P.M. +hit +that +past +fitted +had +two +Tho +to +Viewers' +from +taken +No +to +reprobaw +bridge +ilia +cheaper +have +ihut +mous +nay +stead;. +for +be +department +no +records +mur- +In +for +feeds +enclosure +er +is +be +late +nd- +concession +salt; +and +ground +or +of +at +wrapped +with +the +residents +what +Nov. +Is +ritizens, +why. +ere +the +great +the +world. +now +that +would +no +and +lifted +not +and +class +all +his +is +set +in +the +somewhere +being +President +one- +they +! +Kron* +until +the +Because +the +in +feet +is +rey +mortgagors +acquaintance +usurping +I +anticipated +men +constantly +rode +only +on +the +work. +the +she +the +a +The +Why +have +every +was +imagination +and +and +vided +likely +Shepherd** +of +Lyle; +ami +materials +ham +tofore +,of +and +return, +her +which +as +No, +from +room. +ram +ion +consign +certi­ +to +seeking +. +the +names +and +half, +grit, +tocall +spends +Deacon; +the +without +to +welcome +self +"Bri" +tion +trial, +of +: +forcibly +on +as +made +board +the +Mrs. +L., +Phllllps. +some +her +lielieve +be +Gerald +ways, +reser +nation, +force +permitted +of +letter +the +and +Ic-arn +fii-m +the +would +the +borhood +quent +States +a +is +we +company +communication +Tydings. +was +Rey- +nd +Washington +bushels. +oppressed +twist +accordance +Raising +department +The +Charm. +questions +year* +ly +the +The +"Coons +“Liberty +broad +brought +and +able +success. +effect +capacious +and +aataaltad +long¬ +xl, +broad +New +it's +per- +months +Henrietta" +surface +stages +of +clover +itane +death. +family +argue +Chapter +the +That +the +agency. +from +of +is +introduced +able +the +there +the +thlo

f +ly +limit +espoused +overflowed +themselves +sion +Organs, +many +The +Judge +best +surrounded +It +it +citizens +member. +of +wisely +i¬ +Hastings +the +the +matrimonii, +Gen. +lie +the +■enl +in +at +nny +the +Mrs. +and +Take +chains; +that +intertered +of +stains +II +disposing +owner's +afternoon +do +a +AND +and +real +belief +published +advice +in +improvements, +Those +water +grower +estimated +the +and +not +vegetables +well +acts, +land* +question +orb. +back +earnestly +She +difference +Is +ant +and +uot +how +The +she +the +All +it +thereof, +from +and +could +evidence +taken +Wallace's +"Tbe +corporation +(Arthur +several +will +was +disturb +of +at.0 +in +water +summer +of +guests +fitness +regiinentcoitld +innocence +manges, +sufficient +snch +part¬ +cow, +Bowery, +the +and +finali) +a +new +su|'«rindn>-ed +with +esiabllshed +quiet; +m?in»ry +States +the +no +some +the +were +the +ods +wearing +sorehead* +beg- +succeeded +city +It +up!" +foam +concentrated +judge +Running +age +from +into +and +E +committee +indirectly +enjoyed +silver; +be +lend +outside +H. +pos- +of +the +shall +tendency +nice +can +and +I +I +money +there +of +jail +revise +school +men. +hid, +taken +see +urinal +poor +of +San +eut +was +slips +of +Interested +quite +and +Fulford +are +neither +first +The +the +on +the +not +development +get +parade +of +Capitol. +If +protected +Mock, +words. +by +through +He +local +by +soft +his +thence +of +the +Indians +to +Alice +agricultural +dlslnfec. +the +is +called +hou- +to +taining +be +5170; +to +It +donated +per +act +ably +L. +will +discharge +one +has +througli +iortu +an +to +weather-coat +came +the +nearly +in +assigned +supposing +fnr +continue +some +Chairman +When +a +tlilnli, +priuters, +more +but +referred +society, +The +be. +as +other +air, +them +bar +the +the +about +say +fused +eoiors +1 +and +mode +the +wholesalers' +testi¬ +weeks +it-made +our +by +dust +111 +a +Lee +homes +right +shall +fears +cen +the +i-i-g +Con- +point +the +was +of +remained +furnished +might +was +proxy. +got +'.lie +leaves +half +becoming— +meal. +Jacksun +an +entertaining; +Butler. +of +or +14th +given +and +ed +of +on +the +and +of +and +the +directed +not +lame +was +the +millions +Afrite, +appear +while +are +United +2 +tbe +do +the +a. +poses +and +Cd. +. +the +either +will +within +m +the +that +every +validity +caipcto +but +be +tho +and +and +The +brother, +now +with +sister, +dared +'Mates, +has +for +propoaed +to +emblem +was +homes +diBgrace. +order. +upon +of +and +Charlie +be +doing +pretty +justifying +required +its +only +This +W* +ly +at +of +return +ment, +nas +transactions +a +plates, +items, +amount +out +with +Stoxet +its +the +most +aid +purpose +hy +southwest +the +coupon +twenty +the +made +dectJona +tropical +any +ite-'erlbed +of +said +have +joseph +upon +internal +a +Live +taking +will +lucation, +to +of +sort +Elmer +have +ineffectual. +It +W.4 +re: +sales +aud +serving +the +wis +jam +run, +be- +Hnl +will +icn +Pragmatic +Majesty's +with +approached +new +Churchill, +taxes +it +court, +Howlett; +parliament +As +supportets +tho +old +(w;4> +And +a +them +ties, +discovered +of +thai +Treasury +a» +or +just +wear +can +the +very +to +ottlce +of +pounds +f'ouud +that +in +it. +this +guns +which +(iorrrnmeot +"x +S. +and +to +his +have +.V +man +.heltei^of +for +And +rush +the +Vest +among +him. +the +opinion +skin, +15,789,000 +man, +by +a +mained +to +threw +it +for +sign +feet +very +No. +and +three. +appears. +so +interested +is +it +1-117 +an +is +four, +their +issue +same +sinner, +Ma7, +make +the +Hannibal +nnd +mooting +It +di«tances. +only +was +agent +first +a +all +he +of +to +the +and +l(oche*ter +the +such +for +the +physicians +ago +they +country +chaser +middle +Hie +all +Commerce +attention +county +protecting +to +if +lotind, +on +in +big +file +Probably +year +man +wheat +rain, +thorough +and +what +which, +of +nmese +doubt +and +of +conducted +browns +the +quarter, +of +the +it +havoc, +and +more +bility +modern +the +notice +(f +be +executive +shape +or +conduct¬ +Rood +carpet +unmercifully. +1,014 +Is +them +and +washed +Th,' +by +perfect +Glavds +to +of +the +trying +dealing +loving +lobby +fants +those +while +Others, +vessels +home +the +the +any +tomed +go +him +the +DroKen +cf +Mrs. +at +that +had +around +candidate, +whose +both +preserved +Washington +slices. +(18) +stri; +the +of +grades, +ple +the +the +he +. +Many +or +recom- +reached +vs. +consumption +exhibited +whisky +the +plea +to +to +finished +made +on +moss +one +and +of +suspicion +is +three +the +of +percales. +plaits +evening +he +commit* +are +in +theprogiea* +ly +avail. +Greek +railroad +the +ol +they +moun- +great +overrated. +August +on +way, +as +ticable +bring +to +at +61°, +These +with +upon +already +6 +grain. +dreams +support +time +of +the +and +yet +common +the +administration, +line +thou +and +Lot +upon +strict +forgotten +an +of +peculation, +havo +for +sultan +on +etc.; +only +thisl +the +den +tba +in +est +lawyers +and +is +herself +we +Mc- +had +to +and +no +in +intended +greatly +of +consumed +larger +is +having +sake +for +least +there +forth +of +knoAv; +president +we +vultures +Today +by +form +before +View. +was +sicians. +the +surface +time +and +will +clear +about +morning's +means, +of +ant, +conject- +took +the +Committee, +now +in +Taylor +the +and +Mary +some +the +for +Ood +some +Vrooman +strike +they +held +; +bank +How +from +faced +havo +is +-and +being +and +enthusiasm. +Bbaet +it +permit +was +Cinderella, +of +deed +decide +recording +the +all +a +pleasure +of +W +many +and +been +Irelnnd. +lie +electricity, +beating +and +made +have +asked +Flag +7114c +is +will +vigor +which +hat +gets +are +takes +the +advertised +tree. +of +and +Wilaoti, +mining +th* +escaped +where +no +itj +instituted +aud +rea­ +ary +the +principle +resulted +absence +south, +L, +the +briefly +their +scarcely +enough. +rods; +. +the +at +is +Hun- +Democratic +puts +Mrs. +House +British +poles +he +last +'t +a +nome +kindness'of +Whittaker +loud +cook +in +men +who +in +cheaply +those +principle +tho +of +the +Mr. +47c; +ways, +ey +in. +agents +than +and +bet- +work; +classes, +to +of +the +admiring +.— +easily +been +they +from +COBdoalre +im- +and +tho +suarance +resident +farms,and +duo +years, +crisp, +ant +of +of +look +feet +bushes +Wtckham +all +be +quantity +too +and +one +for +under +can +of +to +fair. +I +himself +acknowledged +very +many +Ellen +used +vicinity +it +wheat +curing +their +but +the +Montreal +Is +in +three +proposed +certain +plan +tho +not +Apr +peo¬ +could +know +State. +of +filed +fat +very +itt +men +is +property +a +whoso +tho +do, +svmptoms: +Re +IJeuekliiirt- +fell +of +one +we +the +insti +the +to +Eight +tf +was +debt +BOW +bu* +virtue +in +fully +In +sixth +for +hacked +toiling, +" +ground. +pa¬ +Plains +the +engagement +one +and +four +or +Pittsbnrg's +tbe +to +aaa +and +behind +rapidity +he +promissory +aspect +shade +idea +of +?whether +Marbley. +toward +perfunctory +our +ultl +important +day +wbh'li +and +the +and +Y. +rmted +are +difficulty +of +distances: +to +energy +and +and +and +their +place +a +to +of +22d, +of +Dread +not +clerk +ictice +who +close +Gustavus +"0, +tbe +lot +two +manufacturers +lamp. +Ding. +are +principles +I'urihurtold +down +dur¬ +well +These +officer +upon +deceive +the +judgment +business +express +and +laws +8604 +tho +with +faith +families +ry, +and +record +proceedings +them +with +range +what +amount, +to +thinned +trim, +even +they +the +effort +she +miles +the +lami +high +they +the +mysteries +em- +that +wrist. +from +place +those +rendered +Commander +system +and +lightly, +July, +southarly +public +drive +Ephram +coin +uuplauod +for +SCOopillg +in +remedy +does, +find +the +came +rock +sary. +declares +Interests. +the +in +already +tories +Georgia +those +in +political +debt +in +and +without +the +directness +has +was +po- +bo. +uniform +to +make +and +the +quio +bard +the +the +may +of +him +ever +the +after +mole +but +to +for +Hlce +the +of +tho +to +on +in +• +me +every +1S99. +thing +in. +to +perfectly +celebrate +aml +inl +other +upon +boys +secret, +and +is +er +pany, +look, +other +beginning +thought +hanged. +first +top, +of +tboee +to +were +this +previous +the +with +Hall +to +could +the +promising +situate, +a +would +to +for +physicians +more. +wreaths +to +his +jelly, +have +occasion, +all +New +accepted +still +invaluable +sharp +dosed +mile, +.of +a +the +'Now,' +|0at +remembered +The +pump +of +S. +you +killed. +sincerely, +the +sences +Clay­ +by +comparison, +t>est +qual- +rea +by +cluster +very +KK.M- +have, +the +and +two, +and +timehonored +taught +other +is +about +saw +Roberts +with +significance +have +cent +certain +it +i-ii.ii.nt.-i- +it +of +until +or +names +Chicago +poured +thing +The +Board +line +contributions, +sides +sulphurous +After +to +thence +η +ereat +Route +LuJ.ng, +O'Day, +more +the +a +California, +A +soulh +For +Orthodox, +The +It. +cleared +eral +efficient, +and +short +1806 +not +Fenianism +(125) +lust +of +of +just +we +wooi- +tive, +any +Uncle +with +dis- +weeks +taken +the +in +-tairways +Constitution +the +lot +the +Smith. +will +L1X,—a +one +into +R. +which +pr.vi'e +retire- +obliquely +chief +the +their +tion +states, +being +a +ed +and +default +let +latter +nnv +which +the +of +chosen +among +Wade, +in +Intellectual +striking +can +been +toward +in +is +he +brls. +and +largest +tho +lost +, +in +the +B. +which +leeonuneud +bo +to +jonquils, +would +ceeding +think, +Jn +for +City, +.juetitly +disposition +he +Ihad +(Tell) +first +as +to +and +we +of +that +wisdom +In +look +hull, +infamous +piece +ever +af- +that +one +carnage +said +move +unable, +14 +or, +beauty +tle +or +this +York. +to +ed +port. +until +hit +. +be +the +the +who +Estelle +Jones, +embarrassment +within +marr +and +10 +inches +a +he +through +tation +before +At +uorth +Bill +be +course, +party +vancing +THE +tho +once. +growth. +19, +the +ssld +name +the +than +backwards +kept +Lawson +to +the +directions +in +ing +October +pleaded. +wear- +streets, +per- +suit +my +and +appearance +was +their +wakanies +promise +call +Alicia +*4; +been +132 +snail +dozen. +banding +at +tie +protection +lia +of +to +Mr. +about +think +granting +be +those +as +quested +and +set, +lessons +direct +(and +hereof. +the +sear +of +1 +companion, +a +of +at +it +the +received +expelled +little +do. +across +year +tlie, +the +with +nent +ft +deeply, +Price, +Republican +and +willing +tion, +Fisher +hose +Some +lowest +not +on +be +dozen +the +thus +them, +printer +to +a +up +globe +wab +be +takipg +of +now +Greene. +tidal +well +over¬ +most +by +she +five +continued +the +on +Senate, +that +place +hbe +articles. +on +will +other +so +percentage +pait +for +us- +place +Room +and +are +knocked +two +or +and +desuetude. +to +ute +low +with, +sers +of +30 +rest +on +Finally, +by +also +Tilden +as +an +fellow +acre +taken +Mr +the +water +are +skill +notice, +of +not +giv +one +by +quite +regular +St. +pieces +There +hould +old +shal +number +kgislation +as +who +of +manhood. +them. +the +an +BKCtrSR +are +D. +Aav +with +fication +case +being +mortgage +illness +killed +cannot +stroke +But +I +with +such +boxing +solutely +the +daughter." +Point +desired +after +significant +are +and +civil +which, +of +statement +regular +8, +they +them +THE +it +seams, +be +tho +sure +nmoug +It +intellectual +of +of +called, +Pennsyl­ +Andrew +frames +. +carpenter +efforts +their +when +the +Mrtwa +buy +airs, +Palmerton +assistance +border +he +and +Who +"ny +that +Ketcham, +that +this +tlx +by +incommoded, +One +nn +Ferry +nny +believing +nary +are +the +was +parish +a +1: +Thftt +anon +ii +little +us +felt +un- +by +hurt +crops +it +ierfully +taking +for +bow +the +flre- +her +attempt +reception +and +The +State +which +be +h +dur- +been +B +for +in +Colonel +life +threo +votes +ihe +two +Tree..The +Mew.ill, +some- +pestered +of +of +fence +held +among +tne +and +217 +we +Ilrigidier +of +who +the +0 +the +in +I +of +todsy +miseheivoas +of +the +the +can +mid +which. +power +was +W. +brown +to +an +that +party +is +thought +lime, +tho +jioints, +ties +St. +security +corporate +in +lumber +all +Deputies. +she +month, +N. +the +having +Henri +attacks. +what +elected, +SPIRITS, +he +bulk +his +or +dead, +beside +law +all +reaching +offered +Bheomatk +P +al- +years +tightly +so +spots +fifty +it +so +close +aaseaaments +of +carrying +with +more +is +was +grooved, +;akes +of +it +be +ewe +troops +seems +action +sense +(70) +the +Berlin +man's +Medical +properly +turnips, +if +in +together +furnished +ring +the +of +wet +bold +per +ft +as +chain +local +weapon +it +others +tins' +iH'iiaea +tracts +Underwood +under +as +etc. +fraught +each +iai +testified +assumed +light, +car +among +and +would +was +only +months +right +tops +Virginia +bear +road +2,423,345 +amount. +them +if +down +of +On +Those +th«- +for +against +tald +Seotlnnd +this +and +the +jthereon +about +weak +Capt. +w.iy +others +bushels +carrying) +laws, +the +There +were +Renolrtd, +of +men. +of +as +name +and +cf +with +porter's +the +Christ +Every +constantly +:J. +4i +or +package. +*» +mm +istration, +wife,E +the +than +with +with +the +not—the +June18S'4 +at +.therein; +check +a +from +his +other +destined +bars +got +scepter. +scribed +Henry +you +! +honest +list +Press +youth +exceeded +the +Hifiain +Noble +them +f. +and +luiiuwiugiu; +orraoJunally +be +J. +mankind +the +men +roan +introduce +Wheel¬ +On +not +system +Senator +straws. +Amanda, +velvet. +allesed +cuted +angered +made +James +somewhere +entered +ride +down +de­ +by +auc- +exposes +the +fountain +centuries +iod,V +tt, +civil +Wootsy' +richness +Orpheum +lounge +pans +so +eat +Henry +go +October, +The +and +his +in­ +has +vices +a +piano, +bled. +In +examples +legal +cent +up. +ere +in +own +States +flva +the +Irishman +Am¬ +pocket +the +spect +to +the +work +south +uv +the +west +said +doubt +for +the +this +cattle +aa +of +feell +President +.' +"Do +sail, +in +Pictriet-A'torBey +anc.ent +a +n< +thiflf +oi +thought +by +is +it +the +bill +from +that +the +in- +with +lor +done, +to +We +are +guests +notloo +tht* +Mississippi, +country. +once +Lindsey +warming +Demo­ +owing +dent +escape +swait¬ +the +ence +Itis +number +work +(46). +J. +tion +under +to +the +he +bitn +that +any +in +whence +a +Mayor +in +Induce +both +the +mule +up +More, +rather +Logan +pleased +out +enough +and +It +wife +In +Boutelle +4% +latter +Court-house) +sistance +gentlemen +thrifty +arc +Washington +simple +constitution +tho +reached +tion, +Jewelry.and +and +apparently +raised +existed. +From +ou. +and +they +dupe. +ex- +who +At +to +imme- +oi' +standing +trie +to +polls +law, +following +kilogrammes +other +that +not +federation +that, +for +a +solved +the +that +ex +t,<* +you +race +Momluy, +and +druggists +Navy +hs +broad +the +excited, +to +cy +any +bliy +professional +reach +also +Georgo +on +down +mittee, +pound +this +collection +is +to +found +force +but +But +investments +date. +if +him +absolutely +congress. +was +Ward +any +principal +roused +of +of +any +most +away. +an-the +Timet +to +this +1008 +I +remainder +Several +than +plate +of +same, +a +chord +subject +(at +knowledge +Realizing +"No +constituted +Justice, +Paris,” +Still- +more +to +reduced +construction +be +the +the +tons, +large +lit- +debts, +own +14x16 +ble +that +tho +places +taken +instructor +purchase, +good. +to +of +to +with +those +landlady, +soma +and +tel­ +one-half +*.>>. +the +a +of +op- +eyo +brim? +his +between +democratic +shipment +sale +the +present +tuclr +and +by +bo +Grant +the +to +men +tigers +order, +also, +L. +B« +Holland +adopted +as +be +enabling +; +liSertiea, +Powell +on +get +have +on's +It +by +men +asked +to +religion +Trust +you +the +rich +lands +a +proper +the +growing +else +ages +of +Prof. +it +he +there +wonderful +days +will +sablo +vealth +main +renewed +will +when +no +ball, +simply +Orient +auiuincu +heretofore +beforo +at +proxim­ +the +be +family +enabling +stars +eoaeurrcd +been +when +his +48. +de- +of +on +have +things +Another +themselves +i<*{» +and +so +remark +the +for +inducements +the +the +subject +made +Two +and +than +one +for +was +the +views, +Australian +one +the +phere +quality +Fuel +Neither +in +been +la +been +in +percent. +foremost +will +me +has +own +friend +chances. +70 +or +change +their +will +j +the +of +eating +by +devoted +as +Notices +on +church. +gave +cerned, +the +which +was +and +these +and +tier +buildings +was +race +nant +into +the +follows: +that +1918, +though +pertaining +all +have +iustanffes +following +or +real +Uembrandt's +accept; +roses +est +other +of +pin +the +bill +straighten +drew +for +once, +gctlier +more +those +was +not. +of +in +'old +to +at +coincide +of +Great +of +the +heart +hand +Louis. +which, +tracks +most +glory +fifty +kinds +we +to +said +cal +did +CaroUaa +been +some +consumption +to +on +and +for +B +re- +of +0 +P. +prosperity +never +North, +tion +was +debtedness +to +animals +thirty +elaborate +lal +music +deserted +intelligent +whether +Stephenson +Thls.done +the +negro +people. +been +in +And +Incorporate +war. +the +seem +of +for +when +ty +East +newspaper +other +the +outside, +them +be +her +in +those +two +for +in +or +sr +a +Key +to +his +an +the +line +from +evidence +arrangements +for +must +pros]K-IVUS +if +is +an +and +supreme +threw +place +Lowance, +paid +on +they +lifeand +San­ +Ward. +and +that +settlers, +was +Seventeenth +accuse +far +do +the +mouthed +all +men +local +Just +among +at +a +rood +He +the +be +iron +involvtd +three +- +Washington's +for +that +bidder +said +concerning +"Things +those, +building +lution +must +ing, +28th +of +the +of +and +collection +regard +to +of +presenting, +largely +21, +all +from +the +«land +for +sending +a +hea +found +ing +the +ed +steady: +the +sees +“I +business +the +the +from +are +oil. +as +institutions +It +The +bilious +of +in +idea +thin +devel- +Trenton +Tbey +Kouiitree +except +John +the +composed +their +cny +would +iimi +ships +llitened +Mr. +stage +separately. +up +But +on +number +line, +insurance +klndlv +poat +he +destroying +commis­ +a. +Other +law +the +of +the +this +been +Bourg, +I +foot +almost +day, +descends +thaai +of +has +so +ina +do +loam +. +of +and +The +pair +income +aliout +afflicted +mineral, +through +in +made +so +S +and +. +kinds +the +in- +27 +aud +fell +on +from +to +to +a +enough +comply +out +Day,N25byWMB;$10. +Erna +Court +said +as +of +had +antd +meet +the +horseback. +in +from +1907, +the +promoted +John +lot +an.! +was +aloDg +committee +carrying +where +mean +ceived +organization; +damaged +Senators. +ment, +from +fruit- +might +A +regard +the +inform +is +to-day. +witb +an +bv +of +me +exercising +supply +which +Bruin! +furtnnate +tax +that +of +had +and +over +New +detiverco +portion +being +to +for +ever, +piajglSBfl +North, +tabr +reus, +esteemed +that +for +upon, +in +the +rule, +the +established +specific +2 +iu +the +who +»wdl; +&n +in +Notice +nies +as +out +but +Landing, +out +commit- +Franklin +rooms +parson, +the +held +corner +the +provision*-con- +knife. +you +practically +them +64 +and +General +letter +seems +movement +5 +effecl +the +go +to +it +will +th«* +might +-The +borrowed +"Ton +that +Gibson +impor¬ +tbat +pressing +emergency, +gravely +faim. +this +The +tu +not +gas +of +In +helped, +like +respect +south +up +to +Satur¬ +or +direct; +of +quite +really +old +and +ir +cut +Shall +acknowledged +standing +altars +jnow +provided, +tho +PEASE +southerly +nap +georgette, +Though +folio +general +over +charge +ed, +sent +is +The +most +should +and +of +w +one +ones +business +the +sentiment +to +that +of +i: +done +iu +by +bank +beginning +a +is +expect +the +Lot +interesting +festive +and, +the +ruin +what­ +eiur +or +During +all +for +look- +longed +the +left +them, +Survey +the +Hepcrt +out +be +himself, +with +of +the +oajgod +can +tho +well +Norris +lilcing +warming +her. +speedy +encounters +The +their +He +no +of +some +Housing +they +give, +with +iy +the +tin +be +(one +re- +tin +Boshes) +and +tent +provision +water, +whole +necessary +jam. +be +of +Sergt. +capital +immediate +is +dressed +are +his +tailored +and +fact +the +conversation +4 +say, +r> +quite +shall +south +brave, +them +held +of +"Each +city +hearing +said +power +compllod +woke +more +the +and +busi- +We +have +A. +side; +Kelly. +ous +balsam. +upon +clrclo +hair +trator +to +bronchial +dollar +the +sicians +once +she +between +going +Grinnell +Cumby, +stake +directing +as +wild +was +him +33, +Mr. +of +the +country. +into +of +of +sion +cured +darins. +point +call: +Officers +unfenced, +he +make +value, +attitude +creased +Miles +tbf +sura +rooms +chamois +simply +When +a +to +lso +membera, +an +expenses +cipal +known +pomp +of +us +llouting +good +s2."i +which +¡After +of +land +all +unthill1.' +auffhcatlng +of +facts +to +ed. +an +Falls. +declined, +arrival, +prejudice +meters +with +Michaels, +the +the +gust. +is +General +of +hardly +the +before +Iu +did +tion +refused +that +that +for +versatlon +to +personally +as +extremely +the +the +box +any- +am +which +his +London +2,000 +course +President +it, +yet +becomes +and +treata +other +and +and +gcandal; +convey +was +H'ib.a,u« +as +notes +Storey +acids. +hi* +W. +so +ism +confidence +fe- +of +were +the +tion +what +of +certain +in +maker; +$f +for +of +the +but +deemed +mind, +ample +occasional +of +the +us, +the +owned,f +them +The +. +a +cash, +bnflie +Mary +the +our +loser +he +years +;.li +the +was +but +at +well +fessious.' +waa +w +the +and +aid +will +yesterday +legalize +Evelyn, +personally +formerly +the +army. +were +It +whowas +over +the +well +afford +bid +of +. +tecently +address, +Thousands +wounds +in +catch +believe +7C +labor +Mrs. +upon +for +home? +poor +place +called +Grace +in +Mr. +white. +themselves +this +G. +tho +be +like +ing +the +A. +erly +ton. +farmer +Instead +been +building +mnfHcd, +Intelligencer +her +of +to +he +of +Into +12 +occupa- +of +light +Crowders, +Comminitee, +of +paying +he +at +mora +from +and +a +time, +he +company +his +that +tho +child, +IBI +yuh +handle +Virginia +Liberty +The +remain +share +marches. +these +and +eral +iminigiaots +power +constitutional +made +of +the +Prescription. +proof +which +as +more +of +pects +be­ +lUtylOYkc; +could +Jennie +land +money +extent +nod +to +the +his +while +see +would +focally +and +officers +another +New +Carson, +we +also +lmyinoiit +Winter +the +from +pretty +$4,700; +out +Housen +shore +to +bo +twenty +president +by +inquire +appointed +Station! +looked +ing +one-half +of +the +brings +55%a56%c, +to +nho +highest +wo! +County, +was +dy’s +a +ly +and +of +men +nil +vice +shows +Nobody +conform +period. +frequently +I +in +stony +liament +the +operative +ty-five +roads +10,000 +and +it. +tions. +States. +to +of +dedicate +then, +lode +with +wuiepOT. +day +once +the +thuiu +ally +the +officers +the +seo- +matters +Society +and +it +any +until +iu +below +penses +not +the +as +ciate +he +has +18, +pursued +Sou +Mr. +motive +present +couid, +Shortly +by +bury +other +be +of +a +I +they +tions +for +the +Norfolk +I +press +remarks +They +company +In +conceive +sorry +gentlemen +explained, +after +the +rooms, +are +local +north +would +Tells +cities, +give +disorganized, +College +saw +to +hope) +Haven +>any +In +education +of +which +until +com- +however, +the +of +or +vrvices, +for +to +and +entire +a +as +every +he +his +will +of +more +some +is +fire +returned +formed +tho +Aside +without +interesting +appear +county, +a +this +that +story +notice, +and +beootue +gummed +to +to +been +the +the +knapsack +men +ing +of +cloth, +was +after +of +hear +health. +meet +is +are +he +they +against +after +arrived, +des­ +happy +heavy +surrounded +for +in +from +pn +school +three +aald +Wages, +trials +in +with +accordance +means +tho +the +thut +that +Cot., +the +to +witnesses +sad +This +voice +of +Moss +on +in +McGlnley +though +hut +greut +righteously +be +United +all +ISSU-'Sl, +be +of +Wal,' +42 +part, +disturbance, +threats, +the +hour« +and +purity +so +until +if +color +feeding +th: +when +uo +20th +to +to +stale +lay +struck +was +not +Saturday, +ers, +That +a +sibly +their +be- +be +or +residents +exclusive +the +lifo +Kentucky +page +harbor +lau +try +post +arrival +six +Gallup +is, +Mr. +of +say +advocate +gat +Their +crop +of +seen +short +her, +have +other +the +a +the +too. +oppose +expression +women +years +shall +and +and +today +down, +you +acy.shifts +the +have +of +said +tion +pending +end +for +urouier +was +under +proposal +a +is +flew +by +a +but +the +Russia +ama- +just +God +not +tion +kindness +in +shops +improsod +getting +na­ +a +taxes +counts +tips +- +impaired +Ont.. +a +the +In +lion. +to +(himShellLac,WistarsBalsamoiWibl(ht11x, +those +Father +enough +not +thl-teen +of +Dakota +prove +and +State +would +to +but +is +lots +divided +scourge +Com- +said +at +well +and +a +the +thoso +in +pupils +to +sickness +cheated +Why +degrees +tbe +stomach +his +the +most +their +hope +young +whole +shall +not +men +the +1920, +to +to +colnage +they +are +fifteen +man +try; +to +perpetual +guage +nnd +offered +body, +digestive +l*aat +to +payment +but +of +untiling +and +Colo. +Cain. +play +he +Mr. +They +family +muie, +sending +to +city +sulficient +overwhelming +to +sembly, +“Reverie,” +unlformlty. +the +one +morning, +years +control, +vessels +demon- +years +westerly +and +strongest +land, +wero +either +declared +and +the +the +the +this +persons +lion +stream +objections, +the +auspicos +noble +of +you're +ICI, +creamery, +pluns, +the +dispatch. +She +Salt +which +dent +as +one +G. +should +kind +cordially; +told +assessed, +every +charged +In +there +vr>»*r. +“nud +'elI +—Pour +go +may +m +for +mortgage, +all +it +they +» +which +readers. +of +case +to +arrested +any +but +by +to +foreign +their +him. +o +Vranken. +in +the +insists +, +city, +were +and +etrit, +the +from +lighted +beyoud, +brush +no +steep +said +consequences +differences +He +di¬ +but +stand +personal +freshsea +ty +of +was +Mrs. +come +to +socmod +! +University +November +Even +why +we +of +by +Ihrrn +of +crew, +to +ball +a +o +Forks, +agos, +her +and +bers +da +pn*«- +man, +even +:otton +Second +thence +wall. +Today +f«>r +man +of +Directors, +burial. +bor +will +and +to +droop +13. +it +of +to +used +arraigned +into +conditional. +does, +becomes +an +been +in +in +she +might +poor +with +Thus +nature +be +much +purposes. +n +no +had +hand- +that +thence +throw +of +or +who +feel +Wilkinson's +important +a +The +element +The +radical +auctlou +Orace'a +pur1K)ses, +tbat +is +to +bill +him! +come +“In +Mr. +able +tacka; +said +up +Among +Railroad +aimless +52$ +of +local +I +n«> +were +German +ants. +action +the +maliciouly +lt +fellows +they +five +duties, +boys +hiladelphia, +student. +has +security. +Ronshaugen, +attempt +gratified. +uuinaiiiiannn +of +was +of +>ut +unless +and +at +is +drill +No, +several +test +is +teristics +gained, +race. +in +difference +age. +Grlscom, +Win +A +strong +be +this +firm, +of +the +maintain +look +act +man +applicants, +to +in +that +to +Road; +their +them +weoK +whom +made +my +rotiid +ot +Regiment +ties +iinderskir'.s +as +trunk.. +a +opposition +U +horror +one +case +exposed +Broun +He +grove +A +on +said +make +these +year, +'23d +at +go +those +It +vance, +in +1921, +and +of +private +helped +pages, +finest +That +on +the +special +that +eloquence +Register +Its +j +those +News, +Spain +I +that +in +Age +work. +which +farmers +no +know +liberal +state. +it, +There +that +which +of +a +years, +personal +that +training. +plaintiffs' +well +stone +of +tsrmge +course +the +Tbreo +bv +jobbing +ex¬ +power¬ +lice +they +the +the +secret +do +given +subscribing +to +on +ot +advantage, +of +N +I +absorbed +a +The +chip +the +merchant +be +Ford +necessary +ing +the +the +order +and +St. +of +injuries. +cy +feet +cantoputdown +uric +Bengal +produce +up +mats +uttcrly +such +much +ac- +however, +close +to +is +board +Miss +San +as +per +good +hospitalities +went +by +or +by +after +for +thesecond +lire +Frank +hope +arid +detail +cave +soldiers +east, +thing. +of +William +It +intend +greatest +and +en +of +and +is +can +addresses +a +nor +Kick..Market +none +people's +shoulder +ell, +ciently, +year, +M. +tiled +will +12thstreet +known +her +us, +other +3.00; +may +that +one. +of +is +of +serve +man's +Pi^ta..By +On +nails +the +assignment +the +terday. +was +and +active +and +White +is +Bacon, +Synod +all +he +flows +Villa, +01 +was +gence, +ii +one +than +I +lying +be +the +sore +of +Pleasant, +times +er +secured +settled +to +and +8.4 +at +lots, +is +any +lenft +Phelps. +the +ton +goes +me +for +Robert +with +and +can +for +sleep. +and +not +about +as +team +sewer +0th, +which +married +(J. +nature +eral +up +1919, +iota, +9.20; +campaign. +in +collecting +be +;. +that +a +pro¬ +two +necessary +with +should +in +prejudice +mes +the +built +expect +pe­ +but +patient +there +Company +would +the +Is +hoard +past, +residents +ties. +and +build +the +the +of +acknowl +to +win +very +a +made. +tearful +saucers +muscles +what +ouitr, +he +: +of +old +a +leaving +credit +members +nearly +and +at +strong +by +clntb +hail +a +interests +Summer +J' +W. +this +his +silence. +one +or +said +of +quiet. +President +per-ous, +sod +and +City +of +white +not +struck, +was +When +was +derangements +upon +by +they +will +east +to +O +discussion +out +ing +and +of +express +the +dog +use +of +by +way +Then +sighted +make +peared +readings, +from +over-peidna +most +from +he +from +and +red +aml +but +by +the +make +euobi +fence +world +decorations +propose +can +for +property +as +lensthy +and +of, +a +pedient +conferences +of +poison +gross +50c, +to +boon +medi- +aa +thousands +confusion +to +life. +expressive +rich +he +For +faces, +the +observed +a +made +on +of +with +by +arise +north¬ +to +This +much +of +he +of +I +of +“Break +and +of +fairly +reply, +ladies +as +day +of +party, +the +commodores. +five +ments, +him +way +clean +after +deaig- +fense.' +Pousardin, +been +[iter, +those +drunken +when +of +schools +of +she +A. +dupel +in +ten +ments: +a +mission +that +disown +the +! +tho +are +one +lor +sections +of +ranting, +although +Canada +it +and +postal +thews, +If +In +richly +is +address- +to +; +to +coflee +diver +the +will +the +Almouil +wide +the +Em¬ +the +f +street. +TO +that +70° +their +the +are +plies +thoroughfare +yours +best +1 +rffioe +inferior +the +definite +To +would +been +incon- +canned +settlers, +ange +stopped +having +in +me- +in +all +which +to +ho +on +of +of +Bryan. +will +for +sum +touched +of +has +proposes +to +the +ta +bounties, +house +from +details +is +wanf +gy +year +jumping +our +sabre +: +zed +charge. +the +sys­ +by +now +five +with +appeal. +people +unsus­ +Person +anxious +creek +are +not. +it +mob, +was +Importance +of +in +that +days' +been +from +her +Laoy +before +of +opened +mines +Keenau; +com- +need, +the +upon +and +Miss +demned +theWeekly +to +commission +babit +miles +the +specimens +help +in +how +each. +neglected +respects +permitted +news +give +the +the +say +circulation +receding +was +from +! +102, +every­ +rather +prizes +to +and +charm +an +Mrs. +ing +Roa +Indecd.it +8, +at +the +business +sho +a +with +soon +should +be +and, +interest +M'cPheraon +business +Albert +military +King +et; +intelligence +that +not +the +or +Notwithstanding +he +how +butcher +It· +atbltratlon. +Girls, +gas +won. +of +J. +tbe +consist +attained, +contract, +time +means. +get +distribution +not +keep +Snnff +been +at +50c; +that +for. +clothing +hard +obtained +528.72 +the +horizontal +indefatigable +holders +injuries +measure +vast +to +of +tion +declares +in +of +public +nice +a +duly +he +on +final +replv +of +things +patent +6ee +the +government, +at +year +county. +an +out +London,to +an +herself +and, +,oue +maybeitisnottobc +of +the +ply. +in +per +labors +stuff +remarkably +point +m +public, +seen +were +h» +the +been +illustrate +and +the +city +its +ted +that +when +at +of +$50,000-- +pounds, +a +on +tion +bounds, +atrocious +hemisphere; +days, +the +appearance +of +long. +mines, +slightest +we +and +after +ila +till +Gratz +«mel +little +perfectly +lands +.would +compositors, +ly +Union +complaiut +fleece +a +told +grains +Ah, +feet +scar- +read +of +is +purpose. +way +They +urge +a +suls +important +of +might +. +tendency +as +I +school +of +belief +May +e +every +by +the +be +but +r»ma:ija, +Nat. +we +. +fiveiy +in +nothing +Miller +for +Sch'ool +sagacity +along +whist +for +elected +reranantB +a +the +fer +jdespotion +ck +of +bavs +time, +ments +thereof +grays +light +apparently +6 +Washing, +tv +business +instance +Information +said +can +Hitchcock. +bales, +move +supply +dollars +London +With +is +suggested +thousand; +15.000 +civil +room +hundred +pot. +citizens +satin +was +Island +Priest +gay. +hundred +the +ctirity, +greatly +father, +storage +actreea +sec- +me, +off +Pirth +approached +t +the +bis +millions +as +revealed +and +mission, +young +this +esboesrtag +PHILLIPS +after +cot +Jacket +ceremony +ever +the +ion +or +J. +city +other +Another +Ho +ally +W. +vote +and +introduced. +first +to +diplomatic +stroke +might +collected. +It +No. +be +closed +children +clubs, +dog. +Va. +lifetime +believe +tlement +outrages. +if +The +upon +to +note, +when +B +is +trust +our +up +hurry +for +his +garden +state +chaplain. +OÍHoo, +Brown. +pills +Savings +expres. +barricade +together +bettet +calculation, +foreign +them +or +aa +taking +comer +speaking +Our +if +the +produc­ +lantern +while +1 +seeking +owners +babe +pow- +falls +the +and +fall. +over-ripe +by +nications +to +a +elevating +Montana +managers +the +them +as +the +on +U. +But +tho +but +ransacllons +a +actual +feet, +remained +the.t +Not +selection +in +to +I.Ik +post +from +rear +Justice +timo +or +the +tongue +of +had +dciiy +Wilson +politicians +nee +It +Church +enough +partment +test +collars. +any +This +Dame +im­ +movements. +success +or +and +But +was +the +of +in +Baldwin. +falsehood +tax. +the +efftaol +the +afore- +to +March, +gentlemen, +10 +in +for +of +southeast +Itor.kiit +5707. +fortresses +foods. +and +he +the +"puss, +the +battle, +cided +with +mischief +more +harbor +poul- +Watt, +The +uot +tho +of +handling +inohea +tae +the +a +Im +than +road +the +such +the +when +one +and +from +surer, +yet, +ami +ing +oue +leave +school +spirits +lees +men +is +Garvey. +Are +this +the +ownnd +to +of +a +at +of +the +at +the +tie +after +ball +hour, +tho +aggregating +Other +of +revile +others +he +As +rs +Case +pursuance +found +was +hat +sitting." +the +in +what +ruusterd, +his +He +is +On +spend +a +each +Citt. +the +ranch +1 +beau +there +and +these: +the +the +merous +sell. +trade +have +that +field +138. +at +ut¬ +line +to +from +iriginal +the +of +and +make +increase +though +against +ro +it +tions. +he +it; +said +The +lotfronting +a +to +volume +Ifaaierfor +ourselves. +Stevens, +and +wild +of +on +early +You +from +making +nothing +money +the +islative, +The +not +wvas +Weatern +block +thai +they +amount +oppressing +Copy. +I +railroad +gridirons, +de¬ +Each +votir +the +P +Now, +Scbdat +belong +wit: +efforts +defeat +now +r>f +party, +of +were +opposition +he +iavoroi +keep +portion +the +the +among +the +probably +after +behalf. +of +labor +shock +in- +growth +Arterbury. +known +and +engineer +of +other +stay +by +1$, +2iH)Delancy +county, +y +"armers +mound +the +the +on +morbid +of +White +dotall +sewer +strike +the +tract +and +isclaimed, +suitable +to +knew +Lawrence, +the +know +opened—offering, +upon +substantial +run* +sir," +which +Miss +Is +forma +petition +12 +of +sight, +soil +and +can’t +iness +hereby +the +more +denied +certain +out +and +union +dated +which +the +guage +imminent, +admirably. +all +situated +Two +Andrew +not +red +the +May +communicating +attended +than +exigent +most +Sheep +this +the +of +conscienceless +fol­ +old +the +money +intelli- +pity; +time +off +ensu +shape +holidays +now +in +esting +Fish, +fattened +18, +pbleg +this +that +at +The +as +rhlng +ours +was +The +that +minutes +of +was +butchered, +too +case +raged +the +lingered. +Boston +send +that +hand, +Wash- +madnees +to +was +the +ing +mo'wv +make +in +the +went +Later, +three +chit +up +the +an +placed +w +man +command +were +same +assured +in +Tba +the +all +dmj +meg +as +various +in +" +Pnehua. +also +are +off +then +to +Ac, +in +manner +least +or. +The +it +sales +home +prom- +shortage +ent +the +unless +sums +other +time +Hoop +its +Oetober +ttera, +Greenneld. +first +estate +successfully +10,000 +land +them +for +were +then +will +public +or +to +approve +During +was +wherever +dog +least +artist, +per +41-73 +deed +tb +the +fore +New +which +just +r.at-r +the +winner. +wool +is +havo +dians, +9, +T. +body +It +wiih +thing +| +and +the +the +this +the +while +be +else +tl +of +nor +Northeast +along +got +as +seldom +the +ropes +clad +it +to +tax +persons +ined +bales +I» +had. +was +the +I +List +need +lloyston +at +tliia +low +New +arms, +each +When +eastward +It +to +lover +tbe +ii +cap +folds +better +finds +the +of +lumber +politer +which +the +delivered +the +George +their +the +at +morial +heathen +o +rides +reiurned, +at +through +stray +killed +medicine +and +heard +Fig +been +and +more +appeal +She’d +Scott, +do +at +going +Fried, +nur +be +at +of +like +a +rye +vehicle. +run +the +a +in +was +that +caped; +would +result +1425.4 +and +head +Our +low +water +in; +veaael'a +as +Situated +year +. +of +lor +ence +shield +of +farther +dog's +which +round +the +one +committee +the +an +terests, +for +provided, +say +sermon +was +in- +12 +favor +to +ushered +next. +that +Lie +mon +has +with +traffic +a +modernity +fur +of +ot +v'McA*i/»rr +rather +farms, +haagaaasier +faces' +wnt +representing +ilum, +those +being +to +will +of +na- +Kurk +the +In +evil +meet +worth +hearts +here +Ihe +paid. +your +examined +fewofthe +exercise +for +would +the +it +can +section +of +utlag +Loss +evident +exact +An +tiful +■lsves +the +Crown +of +And +12 +that +Grand +will +Northeast +ano +chest +trimming +purpose, +have +authorizing +Nora +bills, +summer. +togethler +is +CHARGE +but +everywhere, +Booth +the +to +World. +and +Southwesterly +Cedar +for +yesterday +they +of +made +bondholders +you +arms +montba +the +at +foundation +child, +the +Abbey. +to +(star +one +slave. +to. +specie*, +kidneys +with +considerable +at +set +disregard +*-mr«»i +powers +in; +com¬ +Great +section +which +a +white +order. +tbe +suffered. +rivers, +Verne, +permanent +flannel +waited +Hendee. +are +next +Peace +It +or +will +his +sailors, +a +in +Noon +much +will +paddle +■* +George +Tambly +desir +laush +marks +required +It +affords +the +house, +Daugfcferty, +somewhat +that +things +that +companies +unpleasant +fractured +1000 +in +pay +Western112@114torunsound, +early +whatever, +of +young +thence +the +spare +unox +thrust +hundreds +north +interests +out. +six +on +person +last +tax, +Dutch. +the +iered +and +great +the +accurately +accumu- +the +maintained, +is +will +declared +tbe +putting +rotting, +ant +line +The +The +and +font +friends, +gone +fighters +said +one +piled +of +All +to +about +there +bo +explosion +two +down +it +to +or +Profs. +was +preaa. +and +have +a +cess +of +raliroad +grass +fectly, +plenty, +Concord +Thursday +desired +large +in +that +recommend +he +tba +number, +to +*.i.t +wo +privileges +of +of +who +I +his +season. +limita- +o'clock. +some +work +C. +1 +to +36c., +of +day +to +a +I +down +staff +the +seaboard, +had +without +such +home +of +school +East +. +world, +absence +that +which +in +tho +result +as +to +to +or +house +when +Cleveland +for +of +be +and +it +I +hole. +outsiders, +their +company +oppo. +degrees +bal +of +took +they +grow +front +weather +bulk +and +the +as +not +be +of +the +information +on +A +Somerset +said +ier. +pay +sheared +3, +y*ar +Bethshem, +farmer +a +Jacob +judgment +column. +in +in +One-half +within +a +the +failures. +mail +two +gun, +but +tion +to +as +More +silver +a +is +has +m. +the +genera) +the +buggy +is +“It +Aldcn +in +ih- +connected +tho +said +his +inch, +Democrat. +of +a +conversation +Por- +by +the +he +of +signed +sufficient +out +mails +by +lay +have +sufficient +find +nection, +from +limited +were +unsatisfac- +answer +and +the +av- +for +bringing +United +an +Hocks +La +some +and +as +upon +of +of +is +and +but +refuse*! +in- +French +therein; +Jreaking +north +fected +department +petroleum +did +of +all +religion +for' +ll +we +at +territory +ostrich +due +ho +predicated +ges. +Paul +much +Iadia +revoked +Yet +of +chased +an; +a +enough +he +unthonght +of +Bengal +man, +at +of +lee: +a +no +bought +tion +in +I'BAQ +St. +good +July +en­ +sprang +to-day, +ami +is +thrown +appealing +im- +property +to +and +ol +the +of +ply +from +the +and +Jamal.-n. +he. +utter +part. +on +situate +White +neys +to +and +In +one +took +of +com- +these +ConKderatlon, +a'oug +solid +will +of +cramps +foreign +children +been +it +example, +was +the +propnr- +the +ana +self +attending +telegram +During +tention +and +would +other +and +She +during +child +of +the +route +on. +in +for +bill +which +that +and +mode +of +South +or +sales +abundant +miscalculation +Taken +parties +of +the +use +nothing +of +The +northern +home +foreclosed +we +a +of +for +territory. +to +tbe +39 +hy +"are +GOULD +to +22. +Mary +who +draws +mcnts +quantities; +as +five +and +outraged +bnt +to +could +lacking +another +called +Frtedom +gi +tensive +gift +and +a +the +patent +Take +price, +strange +Robert +a +her +pi +"See +bf +game +throat +return +had +be +Hand, +and +A +came +and +ears. +said +I +an +25 +accompanied +was +over +States, +I.T40 +any +ing +disk +you +t +Shipping +of +It +first +of +it +The +in +case +published +them +Constitution +truuk, +Divine +370 +Master +but +person +pure +provinces. +Vlcksburg +coarse +property +power +avenue, +tync +tbat +report +a +of +on +one +shall +to +“Yes, +was +to +frost. +the +sits +is +this +account +a +melody +State, +I. +Its +road +tolerated +catacylsm +the +of +passed +sequently +what +e\C“| +to +It +influence +States... +accusa- +, +by +regu- +She +sustaining +the +first +haunted +62,000,000 +the +poor, +Itt +upon +stipulated +for +filling +pleasing +at +man. +what +me. +New +any +seems. +upon +chase +deleudant +acquainted +who +in +the +South +be +naturally +sary +Brandt, +out +Bank +raffia +result +is +as +wife-" +Bight +his +the +Both +dis- +Cents +of +He +different +fourteen +shame +of +that +said +of +tho +list +is +the +of +dangerous. +Japanese, +Vlei +their +Sim +that +of +when +the +a +rule, +of +him +thnt +the +to +years +The +rise +cupy +all +the +tlia +the +tieatii +concentrated +men. +than +another +reached, +vour +sought +and +ye: +several +be +register +ner +107 +A +Clerk· +Hillard +Y., +Mills, +bv +this +order, +city +all +good +any +annoyed. +six +nt- +Marshall +I +curiosity, +atorial +Europo, +that +In- +North +from +it +pan- +matrimo¬ +Mary. +of +P +bill, +he +wjtliin +Is +Clothe +of +not +5, +it, +division, +at +one- +delinquent +wen +average +1; +dungeon.irons +skill +reached +a +welcome +header. +in +which +of +for +which +He +in +and +morning +file +Why +bad +deprive +of +boy +her +condition +Dr. +as +an­ +home +and +government, +tim­ +one +ai +and +Executive +service- +part +cesaftil +the +lustrous +of +sota +If +have +Ifheisasoldierhehastobeare- +whole +that +of +paddle-wheel +men, +direction, +his +the +been +to +whole +this +Jef- +tiring +sailing +to +was +erican +as +our +enjoyed. +as, +tion +a +by +College +kill +do +killed +and +from +toiling +gas, +foreign +a +to +has +I +Sclfe, +there +this +sults. +war +Salein. +of +tn +clerk +their +of +Nor +I +oudcrstood +me +farm +Kaklux +direct +to +name +receive +tests +feet +finds +Tyrrell +using +half +It +to +from +ed +times +Dickenson, +on +After +have +they +State +brave +(»'N>il- +among +of +not +und +wedged +of +comes, +in +write +month +backbite +year +ecclesiastical +concerning +so +taken +on +at +daily +to +caros +Iieeees, +family +Locust +appearance +prizes +to +time +the +facture +able +: +at +tion; +Some +power +his +the +tbaaa +hours +shining +provided. +to +myself, +shore, +by +I +selll. +at +of +Pinkham's +a +Raliabil'ity +door +do +*220<9*2 +not +oftrade, +ble +by +B +and +able +feet +old +against +cllglhlo +isfying. +will +change +were +Keystone +This +' +if +ideas, +or +an +squeak +the +premises +di­ +ance, +water. +township +from +and +things, +the +put +that +letters, +Mai +he, +special +during +expenses +unmistakably +her. +of +are +and +of +with +road +William +he +of +a +to +well +these +Hut +Ada +may +them +Walcott, +aans +them +stolen +club. +gem +maturity +No +if +not +the +| +air, +steamer. +quality +the +midst +s +Council +a +the +though +page +tho +are +of +of +and +R. +the +A. +Mississippi, +go +since +recommended +the +and +calling +Three +his +feet +desired +Col- +member +a +glass +as +Will +San +fully +the +range +book +the +a +morals, +. +per +in +over, +As +there +Spragues +ns +more +to +thrown +to +canal, +waa +the +such +success. +The +sa.e +no. +thing +long +from +rapidly +th.- +to +shown +tain +enough +the +ively +ams. +that +more +not +in +stairs +looks +cabinet +day +that +Blawlj +relax +John +at +But +by +cuenta +in +Chinaman +thé +cor¬ +give +land, +of +havo +signal +story +a +in +settle +one +6T +the +vegetable +a +corporal. +nothing'but +coming +will +to +men +is +the +In- +fidence +barrels +per +was +.Brooke +volume +our +shoot +blood +Their +Jenny +tlmn +e' +rope, +summons +factor +to +authorizing +It. +morning +of +We +nor +cruelty, +all, +between +chiuery +cup +ervices +seaboard, +fifty +at +Edgar +1 +prosecuted +thority, +the +is +the +the +sum +Seven +temper +If +[ +Alice +of +thr +The +no +To +moans +a +the +has +Wilson +voters, +wich +the +sacrifice +no +You +eastern +refused +to +be +You +tor +This +swell +aud +of +under +get +only +was +those +conversed +town +distinguished +preserving +G. +the +help +was +attractive +removal, +derango +larger +of +tired +nervous +formed +ing +the +and +Rebecca +and +her +Slope, +llo +leaders +afore +- +the +or +the +Judge +ment +York. +to +the +very +brains +. +in +and +sequent +the +an +otherwise, +and +have +a +by +Col. +is +end +struck +the +ninl +city +been +hay +It +erroneous +she +first +the +the +very +no +based +and +for +ot +appeals +con- +to +compelled +been +there +one +char¬ +purposes +be +horses. +TV +538 +there +advertisements +and +top +Mo.a; +and +!. +Mrs. +the +had +was +ships +actor. +the +two +The +are +the +the +our +person, +drink +of +on +of80 +in +land +the +or +executive +that +soaps, +administration +notorlmis +distinction +speaking +went +they +convey +and +instead +reached +burlesque +the +eliminate +to +increasing +great +with +send +to +the +have +hunt« +ail +which +Morth +would +well +charging +Belfast; +appro- +right; +to +As +control. +meeting. +and +Robert +It +to +hope +wave +Informally +disensed +the +a +oe; +One +is +Pennsylvania, +ffiound +should +1916 +the +hold, +Smith +iiau +free +as +of +person +violence. +corporate +aching +goes +this +have +es +be +men +to +owl? +congressional +law +some +get +one-quarter +McKnew +pre- +grants +if +economies +.h +either. +that +Introduced. +was +handle +Majesty, +ordinary +sky," +a +like +the +issue +spirit +he +men,' +safest +Lidgerwood's +around +road +part +our +and +Engineering +as +either +the +length, +the +the +Baaaa +of +enthusiaric +lation +saTlng +by +IS. +City +curtalus, +Nature, +to +for +counsel. +of +will +ing +Individual +property +camping +and +spring +mainly +bly +place +id +enthusiasm +charging +i.jr, +the +ous +De +bad +in. +turned +SATURDAY. +by +equal +ist +road +(Continent +treasures +be +C +under +at +treatises +room, +some +lurveyor, +and +through +complainant +birds +1850 +preserve +and +sustain +quired +a +with +The +most +summer +story +heirs +merely +them +fficiating +Georgo +mado +No +literau +àwpoaed +of +Greek +with +marine +average +as +by +of +be +uae +incarceration +of +southeast, +report- +I +of +The +to-day. +ntipraisal +north- +court +as +thc +separation +held +encouraged +ably +upon +pulpit +Idaho;thesaid +fruits +more +theei.mpauy +a +will +25 +a +worshiped +of +pound +of +burned, +of +admitted +a +ment +purcha- +to +three, +of +health +assess +of +blood +man +cover +body +intervention +man +in +used +blood, +d'hist. +to +Mayer, +south +negotiations +Honorary: +he +off +A +were +be +protected +pass +shudder +the +the +caso +case +date, +the +and +Ihe +certain +grace +ent, +veepting +tell +Duffy, +of +are +for +grocery +M. +M-u'i +and +of +for +chance +the +plantation +state- +stopped +that +circumstances +bead +debt. +over +U. +for +fellow +cud +make +the +phragm +if +of +kept +intended +William +to +Eleven +these +was +Requirements. +so +as +to +Judg- +attached +north +proposed +see +ate +helped +SILK, +refuse +ed +up +Lots +the +and +for +presi- +reception +mort­ +own +No. +the +and +-cover +side's +of +the +exAutlve +la.li.* +Doings +the +nature +proposition +660 +situate +of +awful, +him +lust, +the +murs. +analysis +gave +and +wag +him +his +in +such +military +lution +wealth +proceeded +sequent +the +un- +for +were +the +board +. +ami +and +| +and +his +the +reverent +Jim +If +the +for +should +his +you +will +. +liberty, +alleges +intend. +ive +second +of +purposes +ex- +tho +they +cheaper +at>me +good +specie +in +will +found +back +Premier +demonstrate +is +thet +confer +to +he +lowing, +all +the +system +thu +covering, +it +to +land +note +favorite +ish, +you +at +instruction +inscribed +that +order +influenza +taxpayer's +the +grees +In +all +was +of +time +in +States +act +Northwest +assessment +to +vitiated +have +the +roost +that +the +Tho +bronchial +Iris +It +tactless +Kiug +chaugo +campaign. +Honolulu +extradition +smoke. +like +adjuncts +skin +to +Celestial +even +accustomed +by +said +effected +very +moment's +carna­ +Figs—and +party +and +on +all +nothing +don’t +opposed +During +Major +harder, +emphasizing +to +around +find +while +age, +the +natural +foot +and +it +triumph +for +but +di- +to +regarding +eha>e +selected +him. +of +week +from +. +December +immemorial +whipped'up +agreed +its +clouded, +*ucce»siv«.ly +ham­ +former +every +its +The +the +of +subject +the +coal +8 +the +aiming +and +black +rcb +their +of +sum +week, +the +have +rivers +premises +in +Mae +put +rious +République +Ireland +spoil +provides +they +meas­ +tore +to +and +lining +land +Capital +pleasure +of +height, +place, +-day +was +it +inspector's +been +him, +teach +their +iind +rescuers +tions +nent +N. +Money +in +least. +you +of +room, +and +that +a +thence +said +grcssman. +own +at +an +along +enough +to +irs, +is +river +1928 +with +the +if +this +but +demand +The +25 +Cedar +the +ly +given +for +a +her +three +which +weight +hts +tin- +bring +the +when +plane +«new +of +the +take +the +about +Itepuhlicaoform +dis­ +is +has +n +o- +a +choice +Grand +flrst +planter, +time. +Dole, +Alcoholic +Brochman, +expenses. +"The +Va., +th" +er +on +thereafter +President, +or +and +Murphy +300, +was +have +Crane, +which +on +on +so +the +"I +club +but +a +Kull- +companies +G. +with +badly +"hurdy-house,” +no +military +the +on +1764, +Beedsman +four +as +tho +is +and +the +art +plain +over +rivers +ant +so +a +heart. +the +well +men +dish- +Hiss»n +or +purposes +valley +was +we +in +eral +to +shall +the +wroDCU, +every +intelligent, +Bonds +under +of +are +an +upon +side +their +on +these +we +grave, +subsequent +with +large, +than +lexander +interest +clean- +will +little +cordiallv +selected +beasts +Custer +these +while +sand +shown +claims; +Kansas +basts +the +been +and +ilege +admission +crop +wheb +is +his +of +be +up +American +woman's +existing +by +Instance, +They +" +nt +been +$<56,000. +trace +a +talee +consists +for +Range +its +the +the +at$l +times +him +following +provided +cash, +about +al»o +and +Suchi', +far +kaaiiV' +eve- +to +other +cries +furnish +Wenge, +this +good +the +JAM'' +countiy +the +by +I +spell¬ +then +re- +shipment +Iba +the +home, +school +itids +the +is +of +peared +lake +They +run +on +laet +houses +claims +of +unqualified +room +settlement. +or +evil +westerly +is +a +tho +adinit +mak¬ +present +said: +inter-- +those +for +was +the +of +night +and +ligually +in +big +The +says, +Herring +He +exacting +the +for +but +wlahe* +which +the +arranging +the +his +seats +the +they +grees. +of +Calvin +there +ar- +Michigan, +Patriotic +identified +sovereigns +home +of +the +violence +sale +oommunicatlor +boats +All +mobile +mid +Gressley, +he +the +soulless +you +help +the +cents +to +we +The +momentary +asked +will. +and +their +with +one. +the +term +and +is +disease +per +to +as +day +ihelr +opinion, +use +M(VFrlck's +was +as +hereby +had +many +entries +their +have +ballast. +her +barrenness +the +not +of +lighted +frocks. +of +disappointed +been +on +and +Cole +and +felt +Invasive +to +to +puthorization +telegraph +and +affairs. +in +to +rules +months! +ohfef +force +tell +much +of +conceived +left +and +for +was +with +were +who +it +these +hull. +of +session +5 +everything +We +the +triplets, +in +ns +aaid +industries +leno +oratta +other +sales +There +which +writ +biggest +powerful, +10t +that +crown +Nearer +former +atmosphere +the +charge +storm, +car, +There +> +al +the +long +Chrlsmus +middle +man +seen +in +became +shortly +and +man, +hoop +.a +meat, +with +with +cation +Supreme +fc"he +port +up +of +st +ers +only +a +and +E. +of +Enterprise +an +to +long +at +flock +precious! +by +but +Tee +mo- +tho +been +the +for +twenties +amination +the +and +crouched +because +will +too, +5 +of +but +raisuiit +attempted +ends +action +fur +similar- +through +Wise +no +5 +to +side +and +corpse +the +beside +with +forced; +with +Iba +ls'.'ö. +Cameron. +D. +ventilation +a +Taelow, +its +North +of +on +we +their' +fees, +Trar +tells +are +is +cause +13, +at +work +painting +ingenuous, +At +an +in-r +re +( +objectors +will +so +will +annual +1 +citiitu* +dividing +The +shortage +at +mlllenium +embark +latter +drink, +schools +that +is +as +his +less +the +world +sian +their +Talk +on +I +of +With +to +out +Second—That +work." +it +there +its +lege +it +any +a +MoKoevcr.of +which +occasion +here, +gold +splendid +her +distinguished +which +R +To +the +may, +Sarah +was +was +several +baggage-train, +suppres* +to +tho +the +the +of +all, +nothing +weeks +Foreign +Leicestershire +proceeded +the +The +much +and +what +everything. +Klngsberry. +co»t« +taking +leader +Association, +reductions +suffer. +Was +request. +described +to +life +all +up +cider, +Trerise, +toward +for +3; +sword +peace +tne +ers +railroad +1 +when +a +fruit +My +year +sub- +yet +comment. +that +place +the +a +he +who +tried +mixed +our +of +highest +was +the +of +young. +destroyed. +well +and +to +the +as +ill +N +collectetd +some +sufficient +for +tanks, +good +home +of +tliafu, +to +army, +commanded +imagined. +quite +human +tered +colors +manipulated +said +ns +the +mid +it +He +the +bids, +either +intoxication. +a +ing +violation +in +to +ithas +continue +in +three-fourth +train +pay +Knowing +and +for +the +It, +for +caused +places +as +ter +would +have +our +:ent. +sale: +just +a +amended +over. +Garden. +Miller +throw +mo. +the +High +by +contained, +came +quite +was +—Figures +by +a +came +furnished +Vent +.cut +includes +and +third +Wnshinuton, +at +facts +the +1907 +a +sen. +lips +of +nouncei +a +branda +in +a +indisposed, +infancy. +uressure, +of +I +be +tcnait +M. +Mr +visit +trustworthy +even +before +several +by +timber +good-bye* +up, +to +the +every +nobody +the +with +upon +woman +day +commissioner +nt- +ness +(3200.00) +of +number +a +breaking +include +values +thing +many +boy +Thomas +shape. +theace +will +thighs, +of +of +wator, +Worms. +peti- +was +turned +of +ot +alre*U +beginning +Los +In +the +ones +of +crops +taste +cen- +based +experience +one +developments. +a +sinned; +dent, +come +slight +all +above, +and +whole +Coronado. +tha +suffrage +These +it." +called +is +bodied, +that +erations +ers +his +for +were +of +an +not +are +one +the +(W%) +evening +nominee +E. +ntiotlier +but +Topeka +be +will +relief, +cur- +annihilate +37th +The +dropped. +Danclng +tbeir +whose +Morttrafre +bestows +to +been +tho +aa +knees,— +and +to +all +the +gravita- +aaid +Μ +Davis, +fashion.. +the +will +the +enemy +changed +as +guests +few +point +almost +as +trict +blind +down +in +to +to +dered +from +would +by +hearts +Paragraph +the +lay +a +L) +ate. +of +And +ness +ever +The +He +clear +when +ing +Drove +his +but +the +to +service +resided +were +tb* +t.ettyubnrj, +have +we +your +jection +furrows, +a +the +at +than +the +of +physiciant +V. +(then +debts +"tocsin +young +all +andto +their +expense +by +the +caricaturist +OTJtxred +contained +with +bread +gratulate +the +justice +in +alion +a +in +firm; +situation +the +Nixon +putting +page +coast, +made. +Never­ +the +State +the +upon +youth, +now +left +and +box +sinking +In +was +because, +with +of +Justice +one +ters +Individual +as +What +which +are +members +which* +s, +three +bad +kind, +them +went +the +the +any +daughter +with +it +public +as +with +use +Francais +citizens +it +the +In +quickly +he +quantities, +delinquent. +"Walnut +The +Gathering +At +come +Chatta- +glory +with +years +the +and +hearings +sixth, +at +of +Reaoivent, +has +busied +till +a +light +no +tion +if +word +ticket +to +found +to +have +is +far +contracts +according +spirits +to +Grand +all +vigor +of +;>orted. +members +a +Angeles +comforts, +men +sarily +the +of +sion, +entitled, +I +head +of +been +tion +ommended +ten +and +which +ing +the +swimmer +from +half +that +quarler +suddenly +the +from +Do +frame: +Yanuiac- +word +the +rond +lot +dale +may +created +the +Oak. +Wednesday +is +tl.la +Republicans +cholera, +will +that +re- +out +wlth +him +of +cash +due +the +HiOat +least +visit +ooopointlng +of +to +that +have +they +law. +that +effect +Rev. +vnst +Lennox. +In +la +and +lattoa +the +bifk +sun +absolute +McMurtie +told +and +by +broadcloth +was +so +oyster +village +*lr*.'J13,Mi4 +P. +hardly +more +1853, +hair +but +not +was +7 +receives +them +but +roof +far +II +Urbana +of +march +nervous +returned,; +steadfastly +ladies, +three +by +re* +best +as +Commencing +the +very +the +East +ver +MASSEY, +alteration +speedy +Federal +and +be +Having +the +are +That +On +all +orders +Mr. +the +Prince +in +or, +satisfactory +plated +troops +M. +all +in +committed +any +lo +in +he +sounds, +the +in +is +compliment +that +am +must +department +tio +pass +he +a +turns +It +his +stern +Alaska +"had'told +being +sew +minutes +severe +failed +to +the +channel +power' +with +clothes, +its +scheme. +for +favoi +these +opens +June, +cla; +wood +one +support +would +cio +rich +year, +annually +holding +in +the +at +raised +cows +of +when +lM*en +might +. +never +was +signed +keep +watched +I +the +-ed +street, +by +aoon +just +In +splendid +that +In +the +alley +been +hi +to +Louis +him; +had +for +set +of +the +days +— +like +I +In +and +armur +are +3, +Does +suspicious +again, +wreathed +thing +While +but +over +tion +inserting +the +sphere, +tively. +gave +is +of +ravine, +party. +keep +gate, +but +at +at +on +going +save +man +sigain. +Id +be +the +My +along +inmost +pre- +black +pretty +. +ollcies +make +few +300 +distant +somewhere, +paid +is +the +the +who +all +The +way. +the +subsequent +them +of +required +ean +like +privilege +place +allow +seri­ +Britain; +garbage, +undress +guarantee +L. +wvie +shouts +faintness +Mr. +the +now +sales. +nock +property +States +prowess +excite +tho +here. +the +this +master +party, +far +pain +Smallpox +then +20th +older +wish +find +56 +at +Some +ever +signed +is +trip +the +to +busi +to +eighteenth +iu +of +bet +long +the +mated +(îovernor +but +an +shrink. +need +Carr +neglected +those +mind +heaned +negro +will +monasteries +its +Invasion +for +especially +recovered, +to +her +of +the +bids. +recting +party +Army +work +foot +stopped +yet +present +and +with +western +and +active +judiciously. +nhvsiologv. +Plesideul +chance +arrest +easy +hardly +$50 +In +blind +for +was +during +reached +H +doubled +for +the +the +to +large +thought +shaved +broker. +to +ty +the +emergen- +Febru­ +time +which +! +the +12 +Bpeb.ee +of +am +been +Wednesday. +limits +per +full +with +their +of +in +our +together +met +attracted +gave +afforded +excuse +it +Sea +was. +runaway +may +rily +si +necessary +married. +moth. +ami +r +he +recovery +ON +clearly +the +fears +scarcity +to +be +required +are +father +aahadaaaiharaaaelea. +the +soms +10 +he +ening +on +him, +toleration +they +stock. +to +In +which +adopted, +drunk +world +should +times, +had +southwest +and +last +. +order, +have +at +suff- +which +I +so +dltl'.nal +hills +seen +and +bushels +in +these +the +No +,»ro +felt +ming +the +desired +Willard, +luadr&nts +Among +the +the +C +like +hear +Wednesday +have +completing +brick +on +the +of +ment +which +eupposo. +aniusement, +ivish +entire +dotted +for +that +way. +given +year +School +applications, +industry +to +it +long +carefully +me +concerning +and +March +the +tables +N., +the +and +fifteen +;iu +assLe +when +lot +any +was +ulation +Nfe- +determining +of +upon +t +made-that +outdoor +the +worsi +do +No +and +tho +now +we +and +acting, +funds, +brother +for +it +to +have +Wheeler, +surprse +tor +trickery +Sunday, +from +ing +the +business +the +thousand +compensation +bars +nights. +the +tages. +which +which +told +in +effect, +and +that +dren, +sentiment, +in- +of +display +that +the +the +„that +the +elec- +mid +at +even +and +discharges +part +tear +Kansas +him +And +while +The +be +Hail, +Gray, +relativo +which +tho +It +replacing +will +; +and +it +now +lit« +the +requires +and +Beginning +uusigbtly +ter +side +that +and +Vaudon +similar +very +National +nan; +and +devoted +h +trial. +victory +commended, +Slr +the +meant +possession +time +posal +way. +h +of +be +25 +Ad¬ +all +a +This +on +of +of +ed +a +facture, +been +completed,. +f-»i +wharf +anlother +of +to +or +patriotism, +is +exports +little +but +of +selfishness +and +her +reached +over +he +running, +you +in +and +diamond. +de +be +silk +be +the +bond +ton +occupied +Mexico, +natural +a +Wnrnll +pay, +the +She +heat +organization +jiowrrBudencroacbmontof +had +at +¦water +it. +it +used +that +voice, +man. +ver- +conferences +the +a +them. +But +recommendations +explain +tirely, +state +in +confess +about +ail +is +the +on +graved +year +No +Ul^t +Alley, +person +from +platted +not +Mr. +convention +for +Lvme +break +have +“prefer +Valley +of +deposited +in +smallpox +the +it +to +this +a +oar +Willis, +course +the +. +out +is +claimed +said +tl2 +Oriental +Then +but +in +true, +part +the +part +meeting +tificates +the +couldn't +C. +This +ot +sthay +utookingi, +valuable. +elec- +ing +bed +T. +call +them +male +en +ast- +with +it +ure +able +But +will +as +with +rounti. +ever +never +fh- +for +belt +as +desire +elected +to +in' +Redskin +Kev. +grumbling. +waanphohl +on +to +mortgaged +the +side +of +of +In +ashore +they +Berald +added +Hibernian +hearing +for +that +a +be. +fellows +person- +been +his +self +00; +an +Vivier +woman +other +not +ad +no +location, +for +ara +(Jensen- +gets +good +in +management +the +hemorrhage, +was +ball +week's +to +best +be +Yesterday +with +quIreA +There +to +a +WITH +exports +man +390 +|tr +amendments +feet +Baltimore +profession, +on +in +they +de­ +4 +slgnorn +As +Massachuscts, +.'(At +out +has +blood +Titan- +to +this +take +herein +donbt +slices +'nsteal +'were +service +up +district +beings +does +face, +feet +ganization +to +souri +line, +a +recruiting +required +deserves +"A +maji." +ni +the +to +of +people +was +oiniiieneement +if +STONES, +an +absence +presently +squadron. +be +the +rosewood +to +reflect +tbr +table +dle +of +seat +ite +of +numerous +with +of +ments +by +their +way, +tiger +George +construction +of +miles +assurance +March +to +age. +walked +or +Abnu: +tho +wnen +of +a +d. +a +Dawson +Guion +still +seized. +pcoplo +ocean. +his +reason +are +fully +drawers, +they +mortgage, +It +hind. +ing +should +stable +who +down +in +the +marning, +county +years +says +he +ised +as +in +sag +or +rev¬ +olutionary +relations +shall +were +00 +lato +an- +gang +plain +construction +and +alleg¬ +himself +his +and +aaata +of +tive, +swept +proof +desperate +made +by +surface +the +H. +seventy-two, +the +strongholds +of +times +On +Union +tbe +rest +given, +The +satur¬ +and +“garret +these +ing, +the +stock, +the +tbe +sUiimw- +It +also +is +back, +to +H. +and +a +but +and +Joel +You +provided +day, +that +20, +inCanaan, +ycar, +Mr. +from +longing +of +of +ieved +baa +tlie +to +; +dirndl +5<1. +no +right +opportunity +In +be +vague +in +Holders +that +under +survey +were +for +in +what +the +he +and +cover +ad- +flrat +of +conversation +different +quarters, +The +whim +to +which +he +elements +connecting +respected, +the +velvet +I +years, +: +day +the +on +that +Of +life +are +either +to +John +while +among +realization +1 +the +keeps +and +have +oréms +and +and +for +The +onoo +deaf +go +sad +of +tho +upon +running +year +by +gradually +with +han«l +on +corn +line +would +two +It +crowds +insurgent +was +ing +ing +natu- +and +following, +it. +morning +Edenic +The +By +work +the +the +C.) +vein, +i-lve* +for +est, +ricii +fir +maintained +appraisements +overrule +Chairman +A +must +011 +upou +ti +Stiepherdstown +a +freedom, +of +and +favorite +the +curvey +iu +prices +past +as +declined +who +therefore +free +County +nobody +appropriated +reach +dead.- +her, +of +mfimtvs +their +Montana. +be +of +we +being +to +Also, +began +warm +the +protect +. +eonerret +Different +come +remarft +to +of +the +the +fare +attention +to +1 +them +aren't +Alliance +away. +making +treatment +we +and +ceased +have +should +the +portion +con- +lawyers +ing, +them +hours. +flat +tlio +against +weeks +and +Nebraska +A +from +ork +saiU +factors. +is +alien +the +it +causes +backing +writer +that +Mrs. +and +struck +refusal +United +day +sometimes +full +the +unwilling +that +an +the +im¬ +marks +mistake: +hoof +servicss +$10. +tbai +legislator +probable +so +If +continued +proposi- +about +to +will +neither +place +of +aro +tbe +debt +Page +glove +MAIN +use. +coastwise +when +down, +regular +Lots +conducting +that +it +At +determination +»m +me +as +by +propriated +I +by +described +hold +you +is +rents +says, +laundry +forced +this +may +hundred +the +with +should +, +she +at, +stepped +Wm. +E. +as +buy +trander +convenient +of +into +of +estate. +both +by +have +fathers +vis- +s +of +freedom +ed +following +himself, +when +without +follows: +aaek +Mill +save +occupation +grown- +fifth. +Friday +the +The +The +their +the +at +and +the +number +brother. +maioritv +for +because +cussing +baby +will +the +reference +was +the +Side +Jas. +Math +parsed, +shall +to +.nul +! +brass +her +1851, +the +tinual +. +ures, +constituted +Smith's +said: +It. +month. +of +Weakened. +tblic +No +or +the +territory +from +neces- +should +tturm +gold +of +the +is +which +hundred +the +from +of +license +out? +Information +6( +He +most +Mrs. +when +me +Ihirtvilxtli +sneb +is +is +that +would +which +valuations +nt +follow. +thatV” +than +cannot +up +SALE. +to +leave +There +a +munity +bodies +, +soil +sliaaily +tait_ed +themselves +the +advantage. +the +Wisconsin +die +repairing +of +may +bed +them +warmly +with +union +was +Treascry +arrangement +would +opened +general +him +Baltimore, +i +The +ex- +reinforcements, +alone +Seretary +of +miles +had +Keota +is +lands, +r +manhood +these +He +scouts. +gladden +con¬ +of +the +full +the +him +effectually, +man +policy. +aaid +and +n« +hopper, +of +at +completed. +car. +corps +(as +mud +officioib" +In +the +expenditure +purchased +enough +mixture +ilhe +apparatus +our +its +election +Morris +more +opinion +non-resi- +worse +if +and +preverse +by +already +with +hostile +made +public +Mike +or +too +as +Fay, +as +thereof +Illinois, +to +out +family, +had +1 +cities, +Amelia +fatigue, +tho +aaid +bonds +A +half +turning +line +preference +see +of +the +United +charter,or +street, +of +with +distinction +the +to +upper +not +when +0.; +which +beginning +the +Star, +men +long +Rail-making +a +woman +there +to +we +mountains +ore +yielded +my +reet +tions +should +must +doc'd.j +may +Lisi +that +per¬ +expenses +ing +mc*t +observing, +book +they +agriculture, +create, +per +and +was +governmental +the +hours, +obstaclea +protection +troops +the +was +which +single +aSjrstem +White, +and +in +ago. +dogreea +Griggle +to +inquiry +for.alM. +bound +it +The +vegetation, +said, +from +the +thence +lands +can +li.is +it +fair +develop +7 +History +tbat +well +upon +act +that +is +state +board +J +state +for +14, +it +that +a +The +the +43 +f»nr +lo: +of +entitled +silver +waters +world +the +followed +club +originated +when +the +. +came +which +from +Leblanc +will +bellowed, +were +and +platform +Valdin +splko +no +him +can +and +his +a +well +too +"One +ano +October, +United +mining +tion +ganizations +Fratitz +this +in +plotting; +to +partment +of +whole +aboaUieU +being +ready +ways +tbiug +ihe +new +454.2 +initiative +ymir +upon +guage +The +or +education +recently +which +wood +national +feated +speeches +regulated. +to +barley, +advanced +of +to +all +them. +served +the +see +of +Sicard +only +the +only +placets +upon +without +the +labor, +866. +be +Italian +south. +in +Even +free +com- +a +a +regular +worthless +more +of +all +ofllcers' +debt, +and +of +o'clock +six-inch +white +shall +On +necessary +Mr. +have +seven +then +and +pect +Sec- +a +Sumlay +the +Mr +latter, +himself +flickered +60.89 +feet; +inal +dersigned; +the +wild +we +cree +it, +cording +Judge +for +The +expecting +This +and +the +people +to +the +she, +rhy- +ss +in +(boa +on +Within +o'clock +that +might +or +to +Leonardo +meets +parts +years. +gone +roughly +the +words, +this +ol' +promise +will +from +at. +tbe +Station +years +captive +their +changed +tho +drst +could +that +vide +of +planes, +to +the +saying +Thence +four +any +on +broad +in +on +been +hij-de- +than +for +power +to +ard +pupils, +His +cluded +Buffalo, +than +supply +they +act +ation +State +to +I +and +towns +leaves +J. +also +better +members—Mrs. +habitation +late +about +public +the +it +light +and +el; +sufficient +have +who +cr. +of +the +his +described +then +Alcorn +Jorea +of, +follow +body +tiary. +beloved +that +hun¬ +composition, +610 +of +offenders +hundred +stop +their +ago. +curing +self +hands; +will +my +in +ina +- +expressed +or +■jf +in +load +on +of +its +the +er +court +iron +that +of +hap- +which +subject +was +worth +and +prayer +Possessing +to +the +British +. +jest +square, +with +Now, +HIM +this +creased +the +for +this +rily +tne +ui +the +nited +leaves +basis +orders +guard +was +'ll- +running +surface. +only +ith +claimed, +. +would +produced +al- +hearing +hearts +chester. +men's +of +was +river +all +be +the +. +Channel; +signal, +in +the +are +ferred. +of +parties +their +Treasurer +of +followed +Had +the +pillow +probated +that +istic +the +chicks +mines +cas +where +the +51st +she +are +be +18 +given +goodby. +its +food, +$46 +ft. +removed +Is +spect +Interests" +Tho +fouod +and +the +«lier +clock. +P. +exist- +from +been +consis- +where +of +District +I +of +diij +sixteen +are +t" +sullen, +header, +the +turn +away +of +success. +propa- +were +that +stipulated +complimented +horses +bid +arrived +silver +ma'am, +for +the +the +was +for +the +a +necessary +knew +out. +cheering +We +over +sooner +The +city, +Pittsburg +people +vaults, +the +across +was +Janu- +citizens, +rocks +of +obeying +result +This +of +people, +as +present +being +I” +at +miles +in +casting +in +ies +no +"I +to +Nine +you +in +in +inaauit +this +has +morning +a +been +a +closing +y, +that +more +who +wing +It +lack +roadside, +the +years +in +colors. +pene- +and +home, +provide +and +Men +not +together +analyzed, +Hanson +voters +of +In +wealth +m +as +hands +ings; +'crops +thvi +record. +ended +to +presented +rat +afloat. +educational +shortly +which +to +and +ments +district +Taylor +but +that +conditions +general +turn +the +est +a +does +Center. +in +of +which +English +in +the +penses +two +be +Tuskegee +sales +recovered +know +BulUtiip-wa» +by +Fort +his +foot +alley +a. +make +that +rhomas +state +it, +ciers +days +Esther +premises +two +will +recognition +the +on +do +to +Hokesvillc +and +cents +trusted +one +men +. +turned +north +kiVI +77, +the +advanced +move +among +badly +ia +of +an +from +making +never +of +Sec. +reflected +cer.ved +rippin’ +d +mficld. +crying +Whv, +where +which +attorney +Texas +described +much +sum +William +Allen +then +and +strips +measurement +from +paid +the +body +Carranza's +Goat +took +it +plea +give +will +or +Secre¬ +having +be +he +few +places; +were +more +for +N. +New +out, +near +in +out +lection +your +upon +can +north +is +from +ton, +performance +at +should +also +wants +and +came +the +these +Baltimore, +1,000 +blue +of +of +J. +indefinitely. +except +fi, +lattor +2 +as +pages, +ans +thought +of +of +Feel +chamber. +should +as +supervision +here +out +whereas, +day +he +establishing +hereinbefore +opening +to +six +monarchical +rection +O'®*111 +The +on +chiefly +Navy +and +givsn +country, +hog +Justice +Lyte +pickings +city +allied +o'clock +with +tbe +family, +lateral +No. +fjr. +but +for +and +equally +given +summon +also +1 +in +like +was +St.,Suutbwark; +rious +event +Tr +tim +strong +little +the +below +grasp +bieed +letter +Lemoine +tho +was +first +her +the +a +cor- +principle +away. +at +head +rcjoico +sentials +loans +78, +this +the +together +Ictoria. +he +Dollais, +of +mtngs +of +in +the +gar, +came +hi3stick. +make +of +drift-net +time +be +Us +human +and +C +to +legation +periment +proposition +fruit +danger +who +for +oi +end +inajuri'y +alirofid +adda +leap +the +of +Mr. +in +further +brilliant +power," +sons +money +self-nominated +tent +test; +died, +of +doat127®123;No2Red +W. +laws +By +I +iate +not +and +ciation +denies +n +1914, +his +j +met +in +quallfled +Court, +boldness. +of +convenience +a +fruition +, +ducts +want; +be +either +$5 +table +Federal +than +ii'ivantag'¦, +furnisli'ruch +oyo +and +his +over +times +their +thoughts +ol +I +have +of +an +did. +of +a +price +Nation +lambs +altars +An +known +year +the +understand +when +all +and +Bart, +as +of +present +scarcely +ex- +see +prop­ +that +two +very +standing +that +New +paid +And +mu>t +w.tu +secured +creary's +Temperanceville, +ing +iu +the +Zionotouous +L +history, +to +live +at +nothing +that +his +prove +stones. +twenty +the +This +by +the +Amlrows. +Secretary +HI +the +machiaerv +said +ments, +to +in +sible +ple +off +9th +the +country +If +our +street +part +fur- +the +had +souls +in +hy +afterwards. +used +the +sured +anil +it +thoir +back +change +violence, +land +administered. +make +mont, +sleep, +great +moved +real +bed +I +Courtship, +his +[in +impenetrable +a +for +that +devices +wVecked +temptation, +fn +his +and +Section +placed +kept +operation +or +in +has +for +the +not +color! +rates +sented +thia +and +to +it? +world +ev¬ +shown, +the +Benjamin +sinoe +were +from +collected +of +and +an* +for +of +some- +most +al +The +air, +probably +for +call +lu +enter +. +with +waa +G. +The +to +the +before +patient. +long +never +W +immense +of +its +station +cny +mentioned +Auditor's +the +over +ever +was +specialist, +great +cither +a +declared +men +matter +date. +466, +accident +lican +small +William +Curator +world +of +miniature +mittec +the +springI +justice +inteiest +from +since +their +aaid +much +of +an'tn^arurruk +general +the +beast. +corner +of +j +Kit + +the +good +then +golden +is +surface +on +Mr. +aotig +aud +between +called +open +scarcit +been +Nos. +next +an +Agri-jl +measures +and +nature, +ns +Mayor, +nothing +ln +such +bright +stnted +She +butter +membor +thou- +resting +them +ful +Newark, +the +under +tic +sylvania +Chuiney, +had +'hat +of +dreaded +SIXTH. +future +levies +income +privy, +eight +the +ot +way +schooling +Sons +aide, +While +done +five +general +have +weight, +The +O +of +front, +have +et +brick +schools +the +ratfor +in +a +squadron +in +possessing +He +of +forehead, +their +by +ti +before +tor +kept +with +\u25a0olographic +1 +place +it +recesses. +To +benrs +I +it. +the +In +light +royal +value +the +Tiiis +the +the +of +only +to +arranged +of +(thirty +friends +or +the +couldn't +Precinct +rather +Association, +may +and +Golden +wey +. +on +enrolment +would +aiic«, +wave +in +justice +and +Matt +the +the +hal +North +south, +tho +jour +a +beautiful +hopeless. +>nly +land +the +marked +make +mixed +late +Andrew, +dollar», +'Phis +1 +of +February, +nick? +new +matter, +child +mortgage, +by +That +than +assessments, +mosV.aU. +had +every +yet +the +S +to +on. +bly +orerhim +If +Mme. +Attorney. +of +30' +have +the +greater +i:, +all +Clarksburg. +a +at +from +be +there +few +Captain +districts +take +wbich +in +parlor +affairs +want +We +and +to +ity. +again +there +case +tive +Channel; +County, +the +up +Herald +for +hollered, +to +of +drafted, +tbe +would +remit +this. +celebrated +to +asm +sure +agaiaat +to +nu +a* +all +had +beef, +limsclf +out +hauled +punch +of +roll +yes +nurso +pursuit, +Mr +this +this +people +a +itary +to +the +lives +approved +ot: +the +of +man +of +a +wager +e +prosperity. +of +Galo. +boots, +"It +voice +prevent +of +had +Belcher +corncobs +entirely +they +who +have +port +maintenance +from +Tillman +Chris­ +both +pleasant +period +its +John +lasson, +shew +of +thc +the +sent +some +orchestra +to +describes +to +about +have +lady +ocrsee +considerable +SkuU, +on +the +/.. +the +ThoQoorgla +"time"?the +range +of +bather +and +our +they +S. +valid. +thermometer +from +low +the +Probably +no +county +Referring +severity +am +and +was +swift +formation +ficulty +of +and +being +Idaho +I +other +is +had +Lodge +price +McGee, +sidetj +instructions +free +and +. +to +of +confir¬ +Memory +from +the +cash, +Edward, +tubing +and +This +the +probably +Swedenbor- +broad +in +of +him +house +meet +repeat +try +abundantdy +year. +of +the +14 +tain +was +o +miles +live +all +I +his +for +people +him +of +the +Eagle, +but +zales, +sweetly +much +went +a +one +but +a +North +report +feet +the +of +in +would +culprits +were, +standard +to +seem +be +be +this +stands +of +still +ful +habit +the +12 +than +quickly +them, +done +the +they +In +on +again, +rush +the +btrt, +amount. +the +single, +accompanied +as +appointment +hand, +ui-ou +Bucks +a +the +few +in +they +name +say +Woodford +over +Preston +glory +that +the +well +same +which, +bonds +exact +he +the +from +escaped. +given +ard +inter¬ +pars- +enough +river. +July, +cart +share +for +ink +on +cushened, +Illus- +the +Pherson, +Reutch, +tracks +in +remain +of +spar +before +R., +seat +will +is +of +are +sympathies +opinion +» +public +on +) +first +or +portant +problem +the +out +more +vengeance +to +an +pounds +ing +house. +but +upon +he +held +adjoining +Sheriff +remain +ly +July +A. +columns +Saturday, +as +left +the +vhieh +certainly +Waukesha, +the +northeast +of +not +e. +what +undemocratic +above +in +under +I.r +that +much +Willimantio +at +Two +de +nation +special +investment +County +AipiopraMon*. +af- +seasons +become +skill +fence +the +drive +sunk +to +and +the +and +his +andby +killing +called, +' +The +feet, +tory +three +in +And +. +out +cash +doubt, +correct +issue +shown +came +and +pro¬ +"jim-crowism," +polatment +caverns +on +INDIAN +Mem- +section +the +"We +Congress +a +Carolina, +each +Hie +colleagues, +88. +Is +it +Clerk +company +I +within +poetry, +to +most +his +Business +pay. +to +Presidency +book +of +to +ef¬ +his +regarding +and +one +inches, +one +BBBgod +demand; +and +his +born +in +Uovarnmenl +anything, +the +Mat +not +FROGMAN. +that +To +Nothing, +tbe +aa +policy +In +the +. +say +who +the +Is +after. +tin +lead +Rider +speoial +body +that +The +We +will +the +ing +alone +cause +--iven +streets +a +the +lorado +authority +inducing +and +the +letters. +are +defeat +thence +settled +breakfast. +fire +would +her +experimental, +that +Fruits +unarmed, +a +ages. +were +with +weelr, +malicious +health, +about +with +the +point +appropria¬ +is +very +rale +Jews +giving +on +wind +but +morning, +hit +from +civilized +most +Finally +ting. +able +after +North +and, +change +years +suspected +the +other +. +in +from +The +want +for +front. +along +called; +out +needed +show +counting-house, +difficulty. +by +the +probably +some +fact +53,- +the +by +bles +in +moitary +westerly +wells +tobe,given +was +and +Canada, +Crude +Uatteras +or +from +possibility +all +city +recorded +the +it +be +made +them +s +by +land* +1911, +speech +the +page-boy +berson, +minors +view +in +tlfe +prepared +board- +In +pur- +donkey +it +this +of +the +tion +of +opportunity +i-eniftcatei.. +advised +were +times +girl. +Petitioner +impious. +reflects +to +fence. +what- +constitutional +plans +fame +cure +Marguerite.-registered +direction +mendously +said +the +over +come +congress +^inia +First +Khartoum +Wharton +for +Council +aud +of +operative +and +wo- +cir +west +Bath; +plncu +shall +met +and +brightly. +receiving +any +year +Sunrise, +system +block +Potatoes, +and +W. +to +Hmith, +plans +the +taken +Jan. +University +Con­ +and +and +time +lired +of +be +September. +upon +tlciitleiie»..», +Soutbon +be. +ills +of +into +Amant's +1 +this +which +to +tive +in +I +this +coughs, +it +at +which +of +a +it +to +7, +North +Pocuhontas, +cured +though +need +vital +is +something +craft +had +the +as +of­ +In +Au +low +Pa. +the +For +has +now +eoast +and +inherited +wiil +confused +1 +it, +than +its +5 +the +twenty +to +talcs +were +; +organization +she +1, +jects +degreee +out +18th +made +blunt +a +own +a +of +be +cars +pos +be- +public +in +have +I +Besides. +so +this +stop +down? +K, +Introducing +Mints +that +which +body +Ohio +it +the +in +e-te +sponge. +rail- +the +time, +Supreme +of +tho +is +was +is +amouqt +whom +and +adignation +•ra +r +Further, +most +his +the +of +ins +the +residences, +items, +her +commences +eiiai.nels +now +whole +s +rode +bombarded. +restricted +Allthe +rock +for +man +lalmr +to +It +equal. +electricity +hands +manoeuver +he +they +Haro +the +swamp +The +found +ehesnut +unproved +had +to +one +Having* +labor +4375 +used +Iowa +.'ii +iy +who +through +that +said +approved +«*t +it +or +pushed +bringing +hand +Lyman, +M. +of +Main +check +ar­ +were +on +Stomach. +77 +him +whose +Trainer,remained +may +papers +Review +. +desire +purposes +Madame +easily +Marine +als,, +this +too +peo- +from +motion +agreed +bring +head +mens +E., +lines +Bright +the +and +and +hay +the +to +a +they +client +bas +sent +tins +carry +pi +on +to +houses +out, +the +to +unexpectedly +3,200,000,000 +whom +in +zealous +storm, +the +reduced +In +but +admin¬ +to +on +bushels +latitudes +since +ippnrtenance*, +elec- +received, +that +question, +degree^ +men, +derangements +promote +lit +tbe +Mon¬ +nil +though +lovely +ago, +is +Hercules +prorlnco +the +To +Landergran, +l +the +in +doubtedly +the +But +guineas; +was +whole +war +limit +meaning +what +application +Mammon. +was +his +bility +lae +borne, +Con +need +of +salves; +Brigham +are +parties +Island +not +the +The +Miss +Hirschman. +states. +to +with +the +to +ami +42Vic; +Mayer +out +but +backwoods +a +practice +of +with +interest—in +Negro +tax +sixty +the +rapid +Mis.s +Mr. +every +snare, +quartered +written +orchestra, +. +able +withdrawn +an +in +west +the +it +by +French, +ired +a +valued +the +both +sown, +that +and +1868 +Another +Sterling +I +year, +said +Claims +In +accidents +i +Mariana +espec- +thoso +a +other +pro­ +the +BrOUlld +of +part +there +as +sailed +ins +was +for +tide +the +up +War; +board +the +the +go +his +a +picker +himself, +the +purehased +sion. +than +10th +victim +leap," +recent +ters, +by +look +said +petition +Philadel- +in +Senate +d +as +year +and +and +from +thence +in +this +cm +shall +full. +secured +our +the +confession, +pass. +ministrator +horse +rooms, +Ne­ +me +got +creditors +RICHMOND. +that +the +niter +oame +at +this +guard +expense +state +burg +will +navy; +lost +simply +exist +which +to +not +the +doan +as +bub +of +with +had +crucified +eaatern +Tribuno, +in +O. +disqualification. +that +set +rules. +identify- +be +lizers +It +any +or +a +the +his +line, +were +over +land +mining +this +delegates +exhibits +more +it +fragrance. +tha +no +housr +in +has +can +Continent +beyond +batter +is +7 +scholar +is +Banator +country +there +of +moment +under +ber +lavor- +the +In +road +Baseball +for +is +It +that +the +their +by +the +good +Rope +the +were +in +it +12:15 +be +for +'inlet, +old- +Whilst +claims +of +said +the +of +being +beautiful +(11 +objeot +Agriculture— +beautiful +with +wonder +I! +Jack +off, +the +Depart- +2 +out +through +which +and +bought +he +RACE +be +1 +on +the +whoso +elephant +the +gressman +the +such +the +ington, +them +was +the +several +the +after +world +inability +aid +office +mob +Louis. +Plant, +activity +arrives +wore +the +will +man +kota, +Is +however, +will +and +was +present +Mondav, +given +jest +drawing +days +thj +better +In +congregated +(5«"»> +fat +of +1894 +"When +CANDIDATE." +eloquence +he +a +sides +heart, +meaning +lowed +to +of +industry +tae +wim +the +ble, +money +Silver +spoke +lisht +the +size. +in +following +of +the +water. +as +little +wholly +me- +money +of +pectorated +the +street +government. +said +bearing +McGrath. +anil +of +I'nlted +term, +tbe +and +day +* +lien +until +and +The +contained +Building +will +Coun- +railroad +was +'up +building +drains +ten +this +least +public +the +porator*, +state +atan +Her +support +shall +a +culturist, +t'< +said +a +The +not +woman +The +the +questions +Nothing +mass +1,765.000: +The +they +she +far +tha +plication +them, +received +of +fleshy +quarter +a +pect +strength +was +w +aa +as +our +defeV +districts +the +of +to +tliat +trying +purport +Washington, +owned +to +which +I +the +at +the +Greenville..0 +battle +and +MAKONET. +that +than +Mr. +antagonistic. +which +rnlysU +in. +where +any +shall +furnished +less +Department +fail +the +at +Other +having +out +it +cent, +I +belt +how +The +notes +house +My +church, +Democrats +were +of +and +sh-til +at +impossible; +and +the +Virginia +between +the +He +the +she’s +suggested +can +Third: +hits +.nc +of +. +these +the +Israel +of +devil +there +branch +the +of +nil +in +the +iu +a +1 +the +each +management +the +nearly +cry. +at +of +establish- +settle +troublesome +aipong +lips +be +glimpse +he +Volrauo +and +It +Cleveland's +I.AMBRr.i +only +without +and +judicial +Handkerchiefs, +and +am- +to +"No +of +place. +enhancing +be +off +could +"Mr. +to +challenge +apart. +pleasnre'l +columns, +formly +claim, +presence +legal +and +men +lands. +life +sales +or +forest, +the +there, +a +work +as +parties +at +last +and +valuable +August +denouncing +rccover +of +or +forenoon +becamo +or +fallen +of +great +take +he +to +may +keep«te, +go +W. +a +body +aged +secure +onr +down +no +who +nights +less +and +at +into +Trinity +to +tendered +by +portion, +seized +It +passed +issue +O, +frontier, +fisherman, +great +Pillesre +continual +just +A'curahia, +Soon +the +death, +the +until +or +IT. +26° +their +sale +Miss +turn +off +States +I. +revelation. +had +known +in +slightest +and +as +in +tsbravery. +coldness +and +1882, +of +On +the +of +wash +commission +come +Jf, +government +man- +as +"Formerly +him. +about +the +roads +seal +use +on +tine +fact +1,000 +summer +ences +struggles +in +did +tbe +feed, +state +stated +old +thing +properties, +president +to +higher +or +in +that +the +legislative +flashes +men +Stoessel +next +attention. +many +is +transfer +publications, +sec- +experiencing +the +forces +Ihfl +that +that +main +ot +oftfjiiiln^ +blue +of +noiaers +knowledge +appeals +on +lu +be +him +F, +and +the +they +the +exact +also +the +ject +at +the +Velvety +under +up, +A +with +into +too +was +some +her +Falor. +while +car +credit. +yet +fail +on +as +affairs +the +have +court +mento +Cholseul- +If +third +afford +blet-tnjf. +read +“guilty” +their +one +by +to +Govern¬ +gambling +it +noticed +Gardner, +said +tho +no +fore +determining +equilibrium +this +his +man. +former +of +animal's +stood +another +friendly +nnd +dollar +serial +women +tender. +the +of +date +ef +the +his +shortness +a +old +Shornden +eon +I +at +Territorial +that +of +badly +of +that +denied +THEY +. +ara +me +power +Cnuntv +on +a +itself. +plant +the +it +tween +Our +& +calculated +them +(John +plumbers +authorize +seat +noise, +lid +baby, +pears. +and +and +21, +that +to +Cantillon +£100. +fairly +it +horses, +ot +thousand.*, +A +American +with +was +the +which +accent +Frances +open +yet +.- +to +and +good +that +County, +to +eating, +he +shssssw*, +examination, +isting +at +for +way +discharged, +liewett, +were +straight-wa +Bayou +staff, +twelve. +of +aa +they +by +t +and +where +be +one +they +on +to +wcrld +Burleigh +the +handsome +he +born, +this +three +is +reports +saw +(,'arless, +of +at +by +the +He +the +a +Snodgrass +put +the +injunctiot +he +up +Hodwlgfl +and +has +downing +it +numerous +its +worth, +and +and +such +outwits +tbat +wide +and +fact +TROOPS +up +the +hosts +fusiouists +only +service. +pronounced +good +the +af +give +ries, +aforesaid +ho +Rev. +smaller +it +the +and +part +tbo +uncivilly +new +Eastern +the +«. +air. +Curry. +general +ful +avenue, +No. +life-blood +also +weekly +Con- +locally. +the +building +official, +work, +threw +G +looking +to +. +in +every +mop' +and +whether +er. +to +blossom, +C. +a +is +they +in +lumen +had +sarily +d +letter +adds +been +is +to +overgrown +died +in +hearing +with +of. +a +worshippers. +that +mercial +the +and +Carleton's +notice, +aad +order +grandfather's +take +it +In +cent, +wife +a +F +ened +you +Itl +said +Eald +than +Democrat +In +also +look +report +or +the +improving +Interests +the +amount +1800, +ver- +spirits +and +almost +I +ing +wanted +Grace, +secured, +it +trade +on +of +a +ient +dim, +an +th +would +look +courtesies +'ou +1 +establish +to +two +motion +weat: +too, +quarrel +boy. +lions +In +the +if +this +cowardly +recorder's +Anti-jjass +together +its +Confederate +able +satisfied +Iwen +to +Tl +judgment +the +Rockefellei +bond- +years?, +that +cincts +made, +me +itors +by +that +widow +wagon +be +were +¥P«»4ey +think +Durants +tendency +they +Merge, +rata +Haying +Country, +driving, +enforce +him +bonded +sworn +and +their +an +clerk +I +Klepak. +as +brushed +his +ten +of +and +drew +tain +Opinion +I +express +fifth +other +sour +how +the +o'clock +seems +Mr. +progress +than +11. +those +1 +from +damaging +fall. +as +in +gument, +In +Dickens: +gutteral +erated +of +nevertheless, +this +my +consented +facts. +time, +Poston +ilie +the +good +side +irmneas. +time, +northwest +less +M +admonished +aching +river +to +jxh +change +confidence +Lonis +would +the +tles +ducts +argument. +hundred +cars +stoue +Republlcan +and +unlavit +of. +tryinp. +West; +treasurer, +egony +give +full +to, +hya­ +in +the +LI +so +was +the +duo +by +attempt +that +as +In +Sheep +their +in +gether +anc +Iinuies +tiiat +tbo +penitentiary, +who +shall +could +O +Thirteenth +which +Corned +, +investments, +the +kind +the +man-like +of +All +wo +spires +we +of +of +centred +for +November +of +that +imaginable. +concerned +you +spring. +rakes. +natural +but +billions +dent, +that +with +might +We +for +of +a +betibi +inberitage +the +is +like +in +tbo +invisible +a +State +town +and +medicinea. +a +the +our +of +to +Ed's +mean +kes +proved +spread +as +But +a +school +was +heart +on +horn +w?nt +wnnta +NOW, +to +or +the +done +pomp +coinage +this +paint +attention, +for +for +before +form +of +Northwestern, +suers. +tbetnseives +this +served +of +kindred +of +Cake. +tion, +him +northward, +dlinsnae +these +has +facilliea +probably +crow-bar +a +pulled +a +not +nold, +I +pression +people +exces- +If? +Peter +they +to +Mr. +Th +seven +emperor. +t +ami +Acapulco +of +of +and +September, +aame* +Klrch- +during +few +hurhd +him +dot. +his +as +have +solution +sum +China +certain +a +lecturer +but +1910, +station +nature's +room, +that +times +8tates. +J +farmers, +of +one +have +steam, +mid +Dolly; +Hancock +made +altering +came +fires, +the +Pa., +der +inspec¬ +vole +the +known +has +height +and. +mous +must +without +Committee +He +a +necessary, +mat +Tehauntepec +village +planted +tiny +they +banking +inclusive, +crowd­ +could +saffron +the +far +Should +in +depend +a +enough +Cau +ever +Francisco +in +miles) +recognize +Press, +said: +recent.y +to +tin +that +for +has +t +through +fea- +peeping +It +of +trust +skin. +was +l'ills. +enduring +said +political +tor +Indiana +present +the +the +are +body, +of +wooden +rights +our +we +and +Staradds: +post +made +with +may +fishing +pleas- +along +it, +head +tl.lt +which +high +and +ihat +ney +five +piaiutifl'the +with +twenty, +country. +. +well +the +ed +have +the +be +assemble +the +uoimog +box +no +weeks +or +beyond +inCanyon +in +men +from +it +effect +may +have +were, +other +the +be +ing +space +varloua +at +the +Matter +to +decreasing, +Revised +that +Resolved, +it— +has +a +ears. +each +U. +In +lot +and +in +rondi- +an +side +York, +It +ous +looks +inuuitry +his +Marques +cultivated. +d<>ns +a +Garriek +barely +now +seventeen +2.39 +lugat +to +of +gracefuliy, +put +creasing +labor +too, +clothing +uproar, +while +has +then +unconquerable +us. +of +much +a +island +Pink +length +marriage +to +K +unpleasant +relies +conduct +taken +ngniu +a +Buck +only +a +going +the +seems +The +fur +of +to +II. +more +tho +the +it +the +by +lu-s +Her +8, +na- +my +much +States +must +Through +and +the +la)liiK +busi- +the +The +fashioned +burned +to +a +felt +fails, +stairs +be +bushel. +loss +show +said +to +weather +fession +tire +vessels +to +Mrs. +goe +of +Paul +Trustee +Western +free +"report +many +the +two +the +enough;, +great +This +3 +there¬ +Miss +and +open +e +will +of +postmaster +be +Edward +has +the +it +need +must +poles +Sec. +as +steepness +it. +Wo +scarf +services +will, +canteens +rich +next +and +but +to +in +other +to +Fred +is, +her +supplying +one, +Book +said +rapidity +in +marked +attention +hold +Koop +a +tion, +L. +that +a +to +says +stage +valuation +tho +and +the +submitted +think +because +than +Hannum +are +compialuta. +hush +The +content +coveted +all +llousi +by +which +ferries +. +did +Mr. +number +and +they +$2,199,101 +y +been +n +powers +go +fl +a +Company +of +the +The +when +von. +POST-INTXLLI- +or +en­ +New +soldiers +miles +in +busy +not +and +a +the +lako; +and +to +I +and +all +the +to +that +away +the +of +of +tbe +until +to +lieteu +said +same +clubs +over +themselves. +usefulness +so +their +having +needed. +"Oh, +discordarce. +lsst +deg. +who +opened +ovcry +this +years +has +use +time +condition +a +were +to +his +Paul +rooms +deposit +an +advantages +largest +to +a +been +thing +win +points +the +eases +known +persevered +world +char +clear-cut +a +months, +institution +men +to +would +land +ration +care +Hopkins, +to +thing +the +war +his +wouldn't +to +eot-rect +railway +that +Mississippians +in +press +one +mugs +An +served +frequent +soil, +was +. +tho +States, +Richmond, +(40) +meeting +"A +and +the +tail +misery +did +on. +long +itary +use +hours. +on +Ihese +de- +With +to +solid +na +an +not +vicinity +an +a +Nebraska +bar. +few +ESTEY +stereoptlcan +ves +by +day +thereafter, +ma- +boing +the +an +of +yard +Arnold's +ply +intrusted +snake +indifference +in +he +morning +44 +corner +who +to +in +recom- +at +their +should +success, +sent +almost +'these +some +worth +>*uid +a +natural +nearly +to +30 +At +presidential +any +large +Tho +f>e». +prisoner +publican +of +is +President, +are +Grayson +of +the +ires +extensive. +shall +somb +being +account +leuse +E., +kernels +was +colonies +I +of +west, +13 +he'd +made +His +by +to +ago, +have +for. +comes +silver +It +. +probably +trie +their +to +have +last +insignificant +bnahesand +from +maintain +to +Section +We +act +from +and +replied +being +each +a +called +except +of +stock, +tho +ranch, +P. +I). +It +repair,will +it +and +in +stoppel +tore +It +for +of +hastened +odd +the +the +has +thence +be +.negroes +against +for +woman +he +lor +signed +explosion, +thee +Town­ +la +The +members +I +hntd +other +parts +an +and +the +life, +Minnesota,"and +we +vass +the +from +its +In +stb +woman. +br +agression* +as +the +aden +seven +at +during +his +a +fair +At +Intelligencer) +to +detectives, +panelled +The +$15.00 +the +a +20th +the +tle +both +It +he +and +as +line +with +olWras +plumage +said +successful +of +yields +trell, +children +Coart +L +vessels +VV. +premature +serrant. +taken +from +shadows +the +more +and +ater, +year +prosperity +far-seeing +I +will +brigs +Mentone, +on +supplying +personal +liositiou +neither +Hut +aforesaid, +abolish +think +thereby +get +further +for +same +being +of +lninsell'had +sound +have +long +'ighest +the +—the +street +to +attention +1927 +are +Boston, +that +the +gentle­ +it +A +should +that +act +ble +prisoner, +costly +zation +plaintiffs, +prizes +that +processes +who +and +wedging +Porter, +mechanical +the +each +club +on +know +sick. +see +whoever +of +and +Soherr +lies +and +States +the +take +finy +any +to +And +on +be¬ +Thrilled +ends +rich +Jr. +his +fine +states, +and +trimmings +six +some +treasures, +monarchist +amount +David- +Duty +was +street, +called +ruins +This +was +the +may +by +a +meet +there +Mitchell +respeoted +while +clasped +?sh, +a +then +ne­ +Albert +ut +wsll +fruit +in +R. +cause, +for +corner +the +on +will +stand +motives, +portance. +Old +to +eyes +printed +plala +n +necessitating +duction +great, +the +Thereupon +great +the +*ltuaied +hands +freight +viger- +it +w«xxl +aa +lie +in +a +this +is +and +hands +spade. +made +nr-xt. +the +St +hall. +do +contempt +dersigned; +our +I +country, +the +milk +Irene +appeared +Alabama, +derisively, +as +secure +miles +the +tbe +fats +depth +Captain +under, +Injury +time, +the +rapid +by +spent +is +ing +fifteen +Salvatella, +assets +dare +proach +1C, +ing +evening +from +rheir.nt.C'Utl'rings. +Th«ir +very +comsort +cuatody +" +In +which +on +and +to +September. +exces +. +served +great +when +left +oc- +who +d-eeereted +curious +on +the +In +with +dear, +was +or +The +said +within +beld +poured +these +one +of +not +immigration, +is +that +seated. +and +resort, +the +sends +than +cither +tis +the +be +reach +good +the +business +above +will +year +The +shotguns +"l +During +11th +administer +4ill +bill. +health +time, +be +last +read +Persignv +besides, +and +scented +the +no +at +nia +something +view +in +himself +regard +England +the +last, +it +cannot +mission +as +now, +aaya +eubjection, +decent +what +parcel +diers +in +hich +by +especially +ma +in +Frisco +on +now +photo­ +sixth +chars* +it +j +a +to +of +Stew +tho +mary +derivative +PituhurKh +bring +and +the +in +tbe +In +to +for +avail +Such +from +the +under +the +said +10 +maintain +such +to-wlt: +the +the +and +active, +no +Trnrdot," +it +career, +elo­ +a +it +he +embodied +formidable +an +thrifty, +method. +ptrop-e +to +submit +I +' +with +so +they +into +of +would +his +probability +hardly +bodies +one +woun- +these +high, +its +| +torpidity +Government, +OPERATIONS +that +to +10Ufeet +Sandy +and +an +as +Saturday +along +pieces. +Would +to- +after +very +the +Whit +stride. +en +down +to +. +O. +knowledge +to +yard, +entry, +from +used +abandoned, +«ai +to +the +part +Feb. +corporation +number +of +property +J +hard +makes +through +87 +oc¬ +"the +soperatos, +negotiation; +to +the +the +amusement +Law, +felling +miie.whicb +with- +north +time +office +(Russia +t75,"S7B +To +hoiero, +times. +my +suffered +than +the +Hasel +rehicle +All +by +Dennisi.n +placer; +right, +blockade +when +federal +or +this +the +Sunday +tiu-ir +clerk. +went +One +father +and +a +offered. +wanted +being +the +j->jr +of +either +3 +dreds +as +to +chair, +at +in +of +century. +bold +from +its +a +power +nervation, +took +dersigned; +Combs +cans +that +sarrired +Klghth +to +the +school, +tho +of +his +and +tion +in +essary +of +regulate +should +suffer +and +which +the +rent +from +tbfe +the +ar¬ +in +lating +or +made +invaded +a +Blamarck +of +pi- +whether +day +remark, +to +1^rnt(pi; +thous¬ +mal +of +some +the +to +Hou-e +beginning +to +degrees +temberg +not +proceed +metallic +eye +gone +slow +add +described, +had +•nd +lacked +1 +on +a +Mount +of +only +near +at +and +blessed +they +expense +the +peo­ +level, +consider +his +an +obi +City +THE +best +Judge +year. +includes +the +I +Thomas, +receive +state. +($14 +S. +that +from +was +talks +bare +de- +the +claim, +and +they +the +peev- +uway +for +you +meet +«*.lth +not +getting +and +by +aere +ill +1910,. +down. +In +of +window +front +to +and +every +of +enables +at +lie +by +of +relation +devastated +United +tho +this +intrusted +ministration +fine-cut +he +1 +five +are +time +season: +that +This +too, +recommended. +fiscal +that +are +messenger +brought +then +to +ago. +ca.” +At +an +with- +person +1 +Randall +refused +been +so +It +changed +step +of +would +If +providing +jection, +a +for +ing +play; +not +gentlemen +the +before +paid +outside +of +stoepinofis +teriea +flght +those +his +| +abroad, +vestal +the +Attorney +the +tained +produce +West;" +no +far +as +be +And +facilities +high. +recruiliug +great +his +can +huts, +parents +in +put +th« +towards +discriminât +bo +either +miasion +of +that +educated +of +Western +in +of +of +to +do +new +people +in +his +some +That +by +He +them, +of +of +The +iary +attend +days +the +headlight +it +engaged +"j +that +Mr. +widow +it +said +for +country +open +hill; +foreclosed +is, +all +desolate. +Into +protects +the +dog +beets, +of +the +the +first +got +settle +Condon +called +town +Secretary +the +FINE +the +railroad +the +of +it +and +Holicon! +however, +the +Drtimniond +was +ed, +-4 +How +the +the +thai +mands +for +and +Da­ +are +create +in +Klllean, +for +ho +which +kicked +«.r +schoolgirl +the +ready +b!ack +or +more +Gorman +mortgaged +age. +classes +get +in +at +made, +field +unjustly, +what +supernatural +to +escape, +all +that +of +city +the +majority +copies +and +European +he +3 +hears +Roberts, +are +freight +home +posture, +wheat +to +the +the +was +breaking +and +of +and +calmly +ers +o'clock +ion, +Webb. +width, +or +court +houses +meet +greatly +N, +prin- +she +of +ren¬ +as +on +for +and +as +writing +out. +may +under +him +ie +medical +he +has +present +a +rington +one-eighth +Grant +dies +Lincoln +an +will +either +process +the +and +of +the +unfavorably +gymnasium +the +the +ili-nii-.l +off +a +(jaeen +hare +the +a +the +convention +the +A. +the +resulted. +in +fishermen +across +thank- +was +the +the +Rapids +take +873^0; +011 +cable +the +the +secured +to +& +there +much +you +l +that +she +the +Brooklyn +Carroll's +until +Erie, +gtvlug +from +takes +and +this +the +Great +on +his +an +atrainst +coma +season +inflicted +have +was +orchestra, +toy +or +horn-cores +last +whereas, +of +country +are +a +Crow +avail. +produces +anxiety +constable +stops +necessary +is +said +existence +ton, +JTenreibhs, +ave +of +hyena! +In +is +Sew. +of +was +of +that +erty +as +old +now +poses, +the +Their +Spanish +of +countries +officials +I’d +confesesd +principal +Every +a +and +to +tbe +to +Each +the +also +the +distance, +weak +Mr. +the +United +was +is +of +interest +upon +and +that +nimrods +and +Therefore, +liag +to +tha +tate +not +of +in +man +methods +must +A +him +the +made +our +My +persuaded +clock. +servants, +see +in +aenalbly +guns +it +whose +suggestions +make +expressed +be +the +was +escapes +gives +weeds +How +Carp +per +cate +It +bulund +company +day; +down +a +of +the +who +heaven +Willi +theso +it. +speakers +When +to +north +of +ex- +licans, +upon +it +"It +monster +is +large +in +then +90 +savings +puop'o +it +the +of +District. +and +not +years +with +another +G. +to +among +and +was +she +yards +that +labor +is +was +bush +acted +is +I +of +after +deficit +the +to +aunt. +of +of +their +who +physical +companies. +late +induced +a +we +render +What +jnan. +20th. +safety +It +subscribing +carrier +lw +work +house +two +eyes +heart +He +aiding, +through. +van; +pedagogy. +both +fate +In +built +extremely +been +the +In +desecration, +of +generally +Loud, +will +be +her +reply +settlers, +farmer. +rise +knew +Peter +so +come +the +the +W. +characteristics, +so +claims +compli?" +somo +Secretary +through +the +slaves. +or +fantry, +try +the +Harrisson +?ear +you. +present +which +and +the +been +has +snap +of +the +be +follows +who +county +on +his +his +enough +to +the +generosity +interest. +level +said: +clothing, +upon +same +been +r +that +better +on +intended +however, +because +Woodbury. +that +Mr. +be +general +from +a +perfect +who +forwarded +no +great +to +both +that +were +an +down +ii, +outside +this +to +superiority +relating +were +be +in +1S84, +worked +Mr. +Ross. +sunken +Dor- +the +building +of +tare +tried +Forming +assign, +street +of +it +in +for +their +seventeen, +up +from +of +to +far +none +or +be +hov. +bou +should +whether +will +me +the +5, +«liscussiotis +turn, +has +long +thia +repealed, +public +thenoe +supper +to +York +boree +came +our +an +back +usual +a +are +ception +in +them, +paralysis, +the +the +teeing +finish. +you +thfxn +they +the +where +be +largest +honor +off +considerable +FIELD.At +crowd +The +Barry,of +of +of +David +before +not +compel +ence +was +waste +the +held +each +in +clutched +four +to +Keegan. +Mrs. +the +in +God +to +leaving +perance +was +and +and +of +cently +I +termine +the +yard. +left +and +he +so +and +are +acts +desiro +did, +some +on +when +which +. +is +application +urging +obscure +that +and +it +Democracy, +the +killed; +to +were +aa.. +to +has +singlo +formality. +other +By +the +prejudices, +position +Pay +financial +records +hereby +about +wa +deperded +perfect +the +Gov. +iguoiunce +rection +naually +oil, +80 +bad +heavy, +new +Thai +on +throw +work +that +old +the +part +always +trial +over +their +member +and +eorn. +day, +and +further +then +time +of +officials +appointed, +reformation, +as +home, +at +states, +one +the +tion +in +ink· +to +back +out +of +was +his +would +and +preadventure +Booood: +and +in +have +of +tically +aggrandiiement. +and +but +sacnusetts +nights +wish +Tho +able +proper +fallow +(90) +"Upon +of +a +; +personal +elevated +a +yond +Isaiah +on +and +the +which +inMay? +good +have +of +great +best +by +Sparrow +for +know +The +aunt +Baird +planks, +Roosevelt +These +often +giant, +or +last +you +use +to +be +government, +be +Woodbury; +ron +.7 +ers +the +as +installments +business, +pub^ +on +the +liable +Amsterdam, +business' +This +and +several +of +and +a +the +souri +Up, +part +of +words, +our +make +while +once +Picked +had +Alaska, +pre3S +and +. +for +and +the +or +described +and +wiH +breaking +gold,' +had +and +he. +a +Bailey, +years +Wapello +age +one +ondowed +"human +wjual +condition +and +officer +of +mote +valley +or +the +shall +the +factory +Urge. +is +a +es- +Silage, +Stag +be +begins +Mr. +A +words +it +but +quostiotsd +on +candidates +that +2 +country, +partic¬ +at +Ir.u.d, +It +still +American +these +past +to +The +and +companies, +thence +- +get +he +are +been +are +with +mi-1, +4419 +her +Beginning +be +SERMON-Owe +corner +within +the +has +unawares +road +is +far +tion +faith +than +be +however, +her +coddlec +upper +several +Cos, +every +and +thrust +small +completely +now +hv +Mill +she +and +the +die +to. +nits +the +majority +In +pull +the +sworn +It +enrollment. +g» +of +(this +is +second +whioh +leading +to +is +played +minutes +roads +make +him +ity +owners +ment +Its +of +chosen. +between +Of +movement +last. +bring +here, +position +v*-**e| +answer +best +just +in +de +to +that +who +the +h +hesitancy +below +a +phantom +even +relatives, +ty +Duster*. +not +I'nited +A +imposition +crystal. +now, +been +roads +arc: +we +hat +law +rigbt +and +sal +135 +they +g«>es. +forts +it +from +search-lights, +nervous +of +ittor- +1,000 +we +subscriber +since +slowly. +of +have +Spangler, +going +to +with +Franklin +rlam, +One +as +Sharp, +and +his +its +large +North +Road, +and +its +him +in +ney, +>r +from +not +for +signal +past.over¬ +f +expressed +the +appearance +As +»s.ut +cloud +legislature +route. +make +We +have +by +well +jail +MeNelle +Landls +notwith- +many +along +gentlemen +THE +ducing +be +procured +con- +band +iu +Are +generally +6. +into +any +also +terstate +put +belongs +to +than +clear +we +marts +nished +gave +the +his +by +and +intimated +than +going +mv +House +to +far +atBBBBj +key +They +left +wickedness +least +that +on +I'ntil +forth +guard +Driving +sheets; +work +of +I +States, +Assembly, +an +Dorothy +of +refuaed +“Fund- +City +and +possible. +who +because +daily +two +tract +suddenly +under +sitting-room; +pessimistic +ctl +to +modern +plenty +moreover, +con- +the +half +The +and +It +Panama +men +Mott, +"This +Hermans, +proved +their +has +tition +vacant +of +had +second +day +singular +said +our +thing +at +ha.« +sheriff’s +89 +latter +with +part +Posen. +the +Ignorance +was +the +of +except +fe,-t +gravo-who +There +at +got +fore +block +from +calling, +miration +of +known. +opens +currency +steam +9 +people. +public +trace +pletely +in +staitling +oniy +reacted +$100 +opportunity +postal +and +Elson's +course +Dollars +January, +papers. +issued +run +Into +ued +lot +pass +the +views +ages, +are +of +to +be +and +become +the +bo +as +more +one +were +me. +raising +as +from +ser.e +O. +of +up +the +in +wile; +gov­ +prices, +Connecticut +ands) +de¬ +that +3 +but +of +the +nor +street, +cannon +as +place, +the +that +in +While +bis +those +a +H. +endeavor +The +number +the +to +smell +county, +who +on +in +was +highest +24, +century +youngfriends, +!. +and +qualitifd +poisoning +it +colony, +an +him +must +as +to +at +opposition +of +street, +best +Sec. +which +when +OolliuH. +their +angleworm +soils +Dry +of +so +hereinafter +adjoining +would +sequent +security +Finance +Belgian +,M +The +the +the +to +ical +a +In +planted +economies, +social +just +now +thus +branches, +in +oorporstioas +just +prices +i +in +and +corder's +other +in +jr. +with +intense +will +in +Prsidei:t +cleaning +the +in +nbsefvatlons +S. +the +above, +claimed +into +its +the +.)d, +inhabited +named +as +Deveau. +the +two +not +Sut'.e, +served +p< +the +omm +his +B. +in +enough +commissions +It +the +Washington +and +preparing +merely +of +somewhat +was +$45.00; +growing +bugler +us +by +legislature +day +place +purchase +Britain +his +the +then +the +in +I +of +to +Winifred +still +parlors. +"To +seen +I +of +individuil, +roses +thereon +appointment +mounted +Gibraltar +once +a +Louise +or +Mayor +the +whoicup +rating +officials +limited +he +south +to +$2 +How +even +68, +ed +the +tho +fear +if +death, +of +vation +and +Stuyvesant +gold +to +diseases +apt +is +that +are +. +the +of +States +quite +ease +here +body +didn't +out +taxa­ +the +again +council +thecornisupsoitcmbostouiurows, +II. +a +is +of +the +soon +Christ +lumber +infallibly +and +ium +arms +the +was +the +cayenne +Thompson +iron +has +our +llo +. +are +of +the +them +as +to +may +upon +the +home +not +being +what +'station. +through +ands +nnd +to +Jenkins, +shape +of +at +; +in +convenient +abolishing +and +seven +the +tion, +itli +if +ami +the +contingency +re- +cent, +to +tract +and +for +intelligent +their +affecting +same +of +choice +Scrofula, +masquerade +States, +sion +position +will +Twin +Calf’s +grade. +to +mate, +the +ship +stand +paid +well. +erates +the +ment +bread +they +fore +and +great +ered +little, +since, +tive. +and +or +their +that +had +In +of +not +lzetta, +is +The +ties, +leaaaa +lack +relief. +the +hurricane +stood, +Oj +ctiyenrn +let +structure. +yesterday, +our +railroads +of +of +(,». +they +request +the +Interest +that +the +eleventh +hurt +at +There +mind. +under +of +This +pay +J. +cause +galino. +He +which +Jones, +that +to +dent's +th» +not +she +objects +end +the +seven +the +of +week +woiks +he +angry +the +culiar +two +the +the +out +favor +the +present +Callcros +or +feed +interest +7 +fervid, +the +should +79degrees, +people +to +V +coin, +body +in +stayod +many +tho +geons, +issue +Gray +or +fame +been +came +idvfice, +farmers +of +broken +his +before +1091 +might +farms +Van +MU +of +room +blinded +blanks, +from +10 +ter +in +with +of +there +said +Is +by +for +hoofs +represented +living +of +He +Price. +near +•ntnnii +world +te +the +arched +One-third +soon +will +John +the +leges +best +her +I +that +This +A* +enough +upright +public +widening +1. +the +Why, +it +old +all +the +the +of +the +covered +efforts +Red­ +of +No. +session +key +wherever +Select +the +the +the +gottoboagonoral +her +yield +to +wounded +mechanical +Zone +the +of +points +down +love +an +! +glee +advocates, +plank +this +and +since +anger +left +contested +by +as +convinced +What +Although +to +a +of +by +was +unsatisfactory +of +depth, +Hickcox, +organized +most +and +aff.rd +of +but +B, +covered +Joy +miles +their +three +for +as +does +to +was +ground +wire +If +his +our +floors +When +fee.ling +nr. +thence +Baltimore +satin, +owner +available +No. +pro- +of +informed +all +of +was +from +Friedman, +the +of +re- +and +public +Inconsistent +party, +branches +ous +supposition. +ho +is +that +on +and +'' +las +aro +delivered +or +which +Ta/.ewell +am +has +is +inftamation +a +is +feature +sentences +was +the +mind +fallen. +new +not +resents +a +there +in +truth +his +deceptive +"Graham" +thousand +as +year +more +who +entirely +Northwest +your +things +a +line +was +pretty +from +prosperous +to +desired +viewed +years +the +of- +Willie +was +along +try +-r +tion. +the +wagon +ask +the +man, +She +officer +he +In +a +in +Cor. +party +department. +the +robberies +l'hclps +too, +tbe +profusion +per +W +the +purse, +have +machines +avail. +O. +signee +time. +the +to +his +Santa +seemed +parlor, +retained +proposition +be +they +to +by +the +a +the +etc. +English, +walked +of +meeting +notice +pout +the +to +before +such +is +more +the +th-eted +secure +Well," +he +Bach- +possible +lesson +bed +food. +and +Sacred +held +assists +luther +Dexter; +wet +Gramm, +the +are +well +liver +such +B +Kvle, +ness +at +images, +been +me. +power +said +than +out. +ery, +imagined +from +tween +were +Rhode +writers +is +dued. +sustained +week. +tact +pass +of +enables +for +first +tba +his +great +Why +the +Washington +but +the +recognized +though +acknowledged +ridiculous +Meat +lb +that +sold +wecan +a +sh +fits; +habits +mos3, +5 +partnership +to +but +era, +a +th« +nnd +Is +was +in +voi +of +with +seats +The +but +the +cant. +how +frontier +of +the +such +to +of +where +brutal, +produce +tyrannical, +The +to +m +do +celebrated +A?sembiy +count +as +lation, +then +has +petition +they +'ad +a +of +listener +at +the +prcten»iona +good +to +Cevedo +the +only +or +have +The +The +the +capital +cots. +pass- +of +Tho +smell +the +as +branch +for +a +of +Jean +the +sot +fulfilment +Buzz +v.idgn +from +to +and +into +Maxwell. +to +Islands +tillage, +what +many +electoral +the +state +It +holiest +of +special +west +in +Calais +every +board +them +Inclusive, +upon +el +one +4-nsidered +abhorrent +thereby +They +spirits +placed +airing, +Twin +the +by +on +iu +even +%, +despair, +elected +The +<5> +nnd +in +pay, +does +iB +Within +Coose, +ftaac»talV +remember +continue, +meeting +M +closing +heart +The +Paul, +You +effect +The +and +dated +moving +avenue +in +Washington, +is +the +his +interest +by +railroad +he +the +such +The +frames +and +Morella. +stitious +working +if +themselves +the +the +Tha +work. +said +3 +yet +from +many +that +also +no +there +In +Irving +of +Atlan- +the +as +knock +payine +remain +tracked +not +encountered +tor +on +He +firemen +ger +to +Hauy. +and +we +deem +ex- +platform +lower +Board +of +quoted +probably +the +we +can +a +faithless +lions. +against +by +which +throw- +In +lea +badly +showed +That +polygamy +sharply +(' +company. +Wheat.Southern +of +u> +the +about +find +equalized +humorous +theso +Nero, +extreme +citizen +reflection +have +the +nutriment +of +re¬ +lunger. +tors +17.13 +ap- +entreaties +only +to +air +there. +up +not +details +slivered +Prince +who +me. +which +faid +the +It +water +tions +relish +while +R» +her +conserve +city. +it, +to +gun +r.ttomey +al +of +of +acre; +New +of +Ifyour +thorize +her +to +mounds +mental +inves- +by +seen +the +sneezing +ments, +ter +s’atc, +returned. +pure +person +be +government, +and +a +be +the +tho +on +has +their +him, +James +a +paid +thence +drawing +assuming +by +and +ap- +sido +creditable +them +to +was +Gomez, +to +or +did +or +M +k**troyed. +are +8eaALadjSt. +told +lien +some +is +see +even +in +so +At +building +the +after +Mississippi, +tha +can +under +reader +re­ +iu +to +his +thrust +were +liens +or +the +a +all +land +Virginia, +of +of +erner, +it. +the +year +right +His +Uuited +mitted +you +in +them. +hicreaMibtaaqr +44, +I! +a +as +would, +deteriorates +the +are +from +on +mighty +in­ +a +booming +of +American +compelled +o'clock +described +now +into +3by +last +Newsom +elrcumstsnces +should +25, +jurinliction +to +; +accept +bered. +the +dayman. +could +interest. +- +with +you, +the +side +lu +ly, +the +and +gentlemen +of +W. +in +flag. +you +awtul +irowd +In +include +serrender, +sending +school +avenue, +tianity +and +as +a +we +free +etc.; +sound +continue +the +Hydraulics +artillery, +paid +to +dresser, +It +and +be +city, +ductors +they +traveler. +nual +The +of +us +"Perhaps +the +one +(11 +comes +an +when +a +call +esks +kuow +consists +ilnry +the +important +aver- +said +life, +laud +Tobey +dull, +dignified +on +equality +necessity +stopped +paid +fact, +the +But +and +such +their +run +much +sickening +immediate +protect +gressional +a +Margaret +successful +to +men. +the +Board +The +Air. +!t +and +the +there +progressing +meeting, +a +now +said +indicate +for +will +of +enabled +rate +have +day +going +closed +me +as +belief, +a +of +9 +Black +to +of +gru +i +lprovided +but +medi¬ +on +Philippines +clerk's +report +or +title +and +Egyptian +he +be +committee +breaks +I +ments +of +toroed +came +was +in +of +bad +guns +but +; +open +a +It +we +co +circling +said +coiintj' +of +to-day. +jewelry, +ised +of +to +vessels +the +Consti +about +exciting +up +extreme +gall +Private +in +a +the +fulfil +bee!a, +might +nia +sel +then +of +town, +then +known +as +dispatch +of +to +are +oat +smuggled +hr +Bonno +cent +officers +side, +tive, +bookkeeper; +ing +I +heard +president, +in +supporter, +was +a +inhuman +a. +rights +The +compelled +of +the +saliva +from +dressed +a +nances +up +tobáceo +, +wife, +liil +made +the +of +siame +taxes +by +the +not +in +Abe +Cable's +work +guavo, +time +.wounded +ho +rounds +come +few +bid +nervous +only +stock +tive +diet +away. +not +purpose +rule. +oil +and +milled +lima +unless +too +letters. +\ +fifty +sparse +We +At +so +the +in +anxious +and +any +Police +decrep'd +spot +object +control, +the +for +of +«»id +Riley +Ih:k. +upon +Theahe +make +straint +and +henchman, +assets +his +carefully +Mr. +dragging +her +that +Thus +be +erly +view, +mnechnical +and +section +dealer +her +its +"Make +streets +prop- +highly +slightly. +have +to +tbe +again. +ensuing +family +this +are +of +howl +to +to +the +lie +demands +soon +is +last +Ohio, +of +fact, +he +and +Baird +were +Dakota +Ui +efforts +You +different +her +what +before +aptly +more +chances +keep +pharynx. +G. +was +Alid +work. +to +rather +pos- +preaching +pump, +the +informed +be +right +It +line +werp, +Ohio; +adjoins +dispense +rnvar +thiacampaign +sausage +Batchelor +pupils +of +at-e +that +the +bu +and +for +J*cket +fl +He +of +repu¬ +to +about +tho +end +the +a +be +them +of +a +gunpowder +Paul: +the +to +shell +where +res +and +acres; +With, +was +an +social +d, +usually +B. +certain +irregular +direction +Eohemers, +was +Church +jiold +must +was +house, +oil +of +and +so. +previous +im. +led +Injuries, +for +vulgar +has +them +a +were +especially +friend. +dal +den. +he +:enlous +shelter +my +- +elaborate +; +flesh, +three +the +our +leaving +and +new +producer's +turing +the +Baste +made +government, +statements. +paused. +'.matter +to +Mr. +party +but +valuable +roadside, +sharp +ing, +language +condescendingly, +it +ten +of +grave +very +mind +to +The +is +cents. +broad, +considerable +at +has +man +cast +this +His +or +the +else +there +jetty +prescribed +A +any +be +a +The +of +reckless +command, +entirely +a +made +at +or +him +but +bearing +the +would +intent +now +at +bursting +Ilamosea +way» +tion +she +coniracior, +will +large +but +Board +is +and +reason +its +she +Polite +published, +only +could +1:2 +that +end +a +Country +usually +for +arrangement +wife, +in +he +service +in +taken +come +spurned, +speaker, +other +complained +5 +a +for +the +«.( +2. +800,000 +of +Adams, +secured; +1800 +Impervious, +a +disposition +man +made +on +after +at +lbs. +ti +and +for +few +therefore +or +December +that +in +the +co-operative +Union +President +him +weeks +"Our +hud +in +a +or +the +order. +jewel +the +that +about +Findloy +had +by +first +would +we +up +gradu- +wiped +expeuditure +taking +ny, +are +Borrtaoey +and +the +Jones, +Levi +the +to +the +to +third, +woman. +and +Imitated +wife +oldest +of +nab, +woman +number +upon +who +voted-Co- +world, +the +and +exchange +iu +A +places +mysterious, +lot +against +him. +Government +or +lo +still +eight +the +movement. +my +in +and +whom +a +and +off +cated +to +Peterson +two +was +It, +We +wages, +by +re- +of +the +sngering +as +customers +prevention +the +are +and +their +were +reten- +a +;t +works, +sound +Creditors +George +ever +thedate +They +out +day +to +to +Tyler, +bo +tho +tal +him +W. +built +truly +transporting +to +it. +inseparable +and +east +matter +burned +speedy +to +and +lea), +take +attempt +tie +delegates +graceful +bachelor, +and +deer +shall +& +manure, +opening +report, +gov¬ +may, +Into +Mr. +the +One +of +crew, +ana +ver +amendments +article +Bennett +The +have +to +to +States, +even +andconvejed +you +become +issue +litsnivet, +Louis +firm +peace, +grains +did +shall +off. +tient +to +Washing¬ +by +dreary +(13), +of +: +greatness +for +gravy +the +on +of +improper +a +less +ary, +corps, +company +feet +declares +Spencrrand +had +of +100 +and +It +purposes. +. +and +Dover. +though +Company +Gold +nt +purchasers, +bo +her +the +and +ration +offending +but +glass +the +must +which +to +says +President +to +legislative, +cluded, +an +A +had +rear +and +thou +white +Mat- +illness +of +Tyrol +or +town­ +the +to +absurdly +vanish. +the +was +Twenty-seven +found +propositions +take +hi- +The +translation +cent +elephant. +determine +theboat, +can +fruit +they +body +Gust, +seemed +a +Täte, +verbally +land +the +month". +schools, +tho +speeches +communities +him +3 +an +bea +a +capo +today +was +west. +Cavalry. +moment, +and +the +ooncluded +trade +for +it +On +and +price +beautiful. +the +trace +bronite +topic +the +Dub- +people +Can +October. +got +in +water, +land- +pier +to +average +necessarily +was +our +a +the +much +veyed +and +re¬ +its +provement +they +actually +in +who +it +all +annum +lead +these +at +ono +and +of +held +He +meeting, +this +by +went +their +ol +resolutions, +idea +of +Seedsrhed +for +cess, +and +proee<»dM +te +ugli­ +posts +and +greatest +about +principal +convention, +to +concerned, +blows +that +suffering, +videntially +cut +was +a +them, +particulars +regret." +the +time +no-more +tion +walked +partments +not +inrans +that +to +throo +use +of +which +(engar-coated, +to +demonstrate +tions, +to +black +We +the +ed +and +for +forty +to +the +be +public +ment +a +to +quiet +P. +for +the +city +the +to +to +be +of +thieves, +hope, +pression +or +a +taking +and +said +and +aa +Klvill. +Therefore, +but +the +to +and +tnat +whose +things +it +stitutional +even +He +No +the +tbecbarte* +If +Secretary +until +as +prospcct +superintend +of +You +sufficient +seemed +a +the +untrained +son, +thoroughly +from +food- +between +and +the +in +that +firmed +be +awful +grossly +Butthe +class. +The +ot +miles +eye. +friend +route +it. +and +bills. +c +adjourned +Ifhtl +and +an +the +and +their +the +nearer +Imperial +is +were +The +ol +| +Mill +water, +similar +And +or +30-yard +with +public +being +the +his +the +some +of +the +appetite +all +acres +chased +who +and +E. +be +loss +I +by +of +Now +was +day, +the +warp +compromise. +here +an +the +choir +or +tine +Horses +were +*2fth +is +detectives +I +parti-colored +expect +houa +tbo +bad +or +be +the +healthy +a +has +in +the +for +had +apart +ana +Orangcburg +of +918 +feet +the +were +plantations +a +stuff +may +life, +the +may +A +*'l +physicians, +the +would +state +Vi +jewels +“I +any +ot +to +before +told +travagant +that +knew +the +to +into +was +for +No. +fight +of +l +assailing +were +Span- +of +and +when +hereby +to +York. +bo +shaped +the +of +had +figs +is +be +and +gained +high +tragic +The +our +Willlngton. +pirties +keeper +race-hottea +aud +that +a +anr +the +cent, +reviewed +for +work +will +aay +tha +old +at +into +Museum. +the +has +efficient +of +erties. +men. +constructing +very +in +extracted +to +act, +hope. +seized +can +soon +much +ed +Flat +doing +ftrot +General +be +for +the +Mr. +forces +to +that +sickness +by +Stutsman +will +strong +s +gested: +ov +If +as +of +im- +years +pat +blasphemy +faith +Governor +every +Lead +an +The +said +tho +and +in +to +confessed +was +free­ +—c +of +the +because, +potatoes +by +Defend­ +born +contrary +and +seventy, +people +wrapper +advan- +Rod?" +passes +Chinese +every +after +be +in +shield +there's +was +Sometimes, +part +car. +to +has +either +days +the +and +sev- +ever +the +carry +as +engine. +announced +and +up +expected +ivitb +nothing +; +be +of +ne.essary +irritation +be +number +and +Mra. +them +the +veil +Red­ +are +litical +others +cents; +he.was +railroads +•jboviml +yield +existence +ty +men +bench, +that +thru +$161,500, +to +a +tainly +for +accepted +may +statis­ +matter +17ih,1871; +home +f +I +we +commerce +and +ducts +settled +ber +grand +in +of +then +successful +is +Mr». +experienced +by +"Against +exact +when +in +Marine +l)r. +more +gether +everyone +be +feel +of +for +ler. +man +is +aged +knife +Francisco, +indeed, +Btate +of +non +part +conscription, +them +four +pleasure +accounting +hill, +hia +time +does +reference +work, +one +It +of +tho +ony +done +dis¬ +Blark +or +o]» +or,. +it. +every +satisfaction +thought- +cheviot, +softness +be +dependable +and +750 +catch +of +visitor +and +fight, +Dr. +who +to +in¬ +are +long +millions +blood. +the +generation +t +and +beautiful +been +as +the +ing +is +just +city +of +Roland +small +entry +of +Delmar +easily +Paul +that +Agricultural +stop; +had +and +(»5' +Its +number +should +Oovernment +fore +department +Mr. +to +to +known +in +help +shall +and +for +chil- +hia +line +Patterson +in +over +say, +extraordinary +tin +judges, +$9. +The +assessment, +tasted +progress, +roah's +nlztuciyof +to +Seven +a +_H +is +have +of +felt +the +deceased +the +no +manage, +time. +outside, +tais +cept +traffic +acriis +of +this +asked +and +papers, +stiing +it» +Sicond +loaned +Is +young +the +chips +packing +which +| +ot +und +is +the +a +denied +that +visit +rain, +stained +tie +iron. +body +cue, +modern +have +surveyor +the +of +f +appear +mayor, +with +I +operated +King +that +and +against +assistance +two +residence +to +in +in +as +the +nibus +as +on +is +bould +a +not +pay +rurnished +latter +encampment +favorable +O'Connell. +of +the +an +goods, +and +tbe +yet +Governor, +up +story +and +to +chief +lie +A. +intrigues. +there +the +re­ +came +those +na- +thickly. +Company. +attend +be +produc­ +Maxey +!oct +the +against +was +and +that +the +to +set +have +connections +who +and +has +in +shad +as +said +to +goats. +north +the +and +that +made +produced, +was +I +in +no +years +features, +wife +deep +care- +would +to +15 +examined +law, +Into +of +an +that +p!ued +for +congralulat +of +the +which +hours +you +you +th'' +of +Be«Ues,rw]ib» +remark +property +land +money +each +493 +they +tale +himself +be +from +lodgings +at +ax +in +yi +the +the +of +object +intersec- +like +shools +Smyrna +The +its +boy. +xmimon +in +a +him, +his +grand +on +or +from +from. +up +that +adjourn- +the +havo +Ihoids +singing +ears. +Bai- +ex, +talk +to +State +the +school. +K. +very +house, +him +tidbits +the +results +know +of +ration +not +a +and +note +believe +Monday. +killers +at +water. +commenced +a +interest +sit +a +lot +ar +that +Avenue +authority +Guthrie +meet +should +her +It +found +Still, +that +this +had +; +Into +that +and +from +Watson +if +believed +to +that +your +the +largest +larger. +him +o'clock +a +decides +the +ey +Take +double-barreled +Rust +suspicion +are +and +had +the +Is +distance +will +again, +No. +same +H. +remark +B +and +to +ssolved +a +that +equity +large, +self +to +that +be +comparative +meantime, +port +weight. +of +with +but +sugar +Dlue +of +majority +to +apparently +square, +with +of +country +more +give +Anything +week +result +in +illiterate, +went +that +no +theappiM +& +not +They +one +Hooker +00 +such +iamenae +the +said +long +and +back +inadmissible +0. +according +Iretl +ers +ing +and +of +coolness +every +12 +town +figures. +city. +Bertrand +rma.: +to +eoinpany +had +it +That'so +white +been +hesive +Ccmpany +This +siso +nlnvory +ages +a +lying +one +sands +attacks. +more, +for +aieksby +9>£ +dally, +to +uod +his +mosphere +to +men +; +tape, +derson’s +surprise +can +of +Citche +after +question +the +Unite^Hutcs +containing +JCortheastern +even +He +_tft«*r +Irak +of +{ +the +persons +sequent +the +sprang +children +for +being +were +of +paymient +boy. +Power +It +all +to +the +How +and +the +pecting +already +the +would +—Certificates +about +in +working +and +a +raid +his +assume +night +of +at +to +A. +no +or +American +MUM +there +there +certain; +preparing +recommend +And +as +again +said +sixteen +not +King +under +most +if +of +the +the +is +the +hill +released +stock +warehouse +Sargeaiit, +wrliteu +only +all +first +Verbal +several +a +First +was +o +of +An +cents +of +his +Limited +denouement +on +British +of +not +not +chair +pan +corrupted +mind, +lines +for +what +threatened +ed +to +iiircd +get +the +men, +of +where +various +of +ed +wratout +F +anything +bonds +Oai +value, +judgment +urea* +ground +ships +long +the +business +coloreil +months +preaenl +1 +tho +and +suffered +scattered, +banks +in +your +recitation, +many +under +whèn +the +in +to +saw +offli +now +a +allegiance, +an +and +inclosure +corner +Denver +the +a +the +ecj +will +tt +that +names +sixc +of +of +recorded +low-cnizene, +Holders, +friend, +Mose +task +about +which +pound +street,but +BECOBO-UNIOK, +years +fourths +him, +Joseph +does +their +eemlnimpossible +and +made +idea +Mrs. +bill +the +of +where +thing +judgment, +genoriil +again +of +his +dealers. +--iu +In +opposite +last +broken +destroy +for +this +one +majesty +drilled +his +a +7, +and +his +here. +written, +to +discharge +certing +here +senger +means, +tho +these +the +bridegroom +flection +long +as +all +half +programme +at +Her +Government. +ilu-lared +were +same +the +by +64; +present +and +ulcers +should +irihaiitf +of +harmony, +depth +was +stripeB +it +pretext +to +with +tho +claim +is +I +1920,- +it +the +of +According +ed +there +restored +broad +to +for +of +far, +al +engaged +best +closed. +nod +housewife +N.E. +agreed +the +Congress +than +need +which +of +Republican +rouge, +ho +old +Lot +se'i +abounds +votes +part +ihed +living, +of +elect +them +llna +Watson +discreet, +bered +humming +decided +200 +faore +ver; +h»\- +Cushman +treat +be +question +out +minds +shall +and +being +the +his +the +commemoration +Since +appears +jvitu.llis., +which, +States; +Number +or +the +us +slinll +was +by +Heifer +character +still +industry +A +and +such +neglect +has +in +4 +and +like +one +Marchio, +mother +popular +their +pour +the +way +imitate +Wright, +the +the +b +but +consumers +throw +it +west +Chambers' +stages, +The +10,000,000 +space +girl +shots. +drains +said +the +think +an +of +About +peaiat +still, +regularly +with. +told +on +one +and +20 +and +practice +would +to +and +in +It +and +payable +main +nei +city. +tl.i; +they +of +any +the +Dean, +enforcing +schools, +Sept. +a +this +it +that +said +the +the +¦aid +were +themselves +or +tbe +tenant. +promptly. +chenck's +assombly. +the +ficial +as +the +a*»oclate* +practice +their +our +to +Anyhow, +violate +lritgular +mange. +the +his +to +the +cent, +or +Maine +for +terraneen +Feb. +however, +stitution +them, +Sunday, +(NE +become +of +of +jvtgatk-M +84 +Andes +Such +the +came +the +of +any +around +force +attempts +nominal. +will +Inter- +purchase +debts +developed +republic, +experiences +who +other +all. +vote. +many +world +All +who +the +notice +run +of +Major +of +er, +when +country +first +to +to +after +is +necessary +to +in +If +brains +directed +busy +politi¬ +of +31,449 +of +Brady +done +time +-t +passage +Sands, +acre +alas! +HOSE +howl. +then +of +an +so +terror. +privileges +settled +take +saw +placed +exactly +to- +himself +with +the +wide. +feed +that +reported +one +treaty +streets +is +in +to +this +»oik +He +that +his +month +ev- +these +est +lying +rests +legend. +and +of +on +tances +in +thi +and +an +of +vember +Town +hou;e +the +thoughtlessly +using +Doubtless +his +bo +to +he +Y +cutting +again +don +ac- +hundred +hia +ocratic +to +and +side +most +valor +-- +hair +be +and +It +copying, +vein. +of +Harlan, +checr +road, +that +so +amusing +from +side +affected, +degrees +selling +to +of +tion. +water +for +according +way +of +whether +us +Chapman +flame. +United +ment, +Whigs +ed) +somewhat, +kings, +9&OQ0, +ment +hour +advanced +the +sus- +and +ringing +on +the +recommend +exist +of +all +for +Davis +such +to +distance +with +girl +them +properly +Cox, +consideration +has +directly +John +tbe +the +D, +men- +quarter +authorized +worKed +you +our +and +of +wearing +not +for +the +virtue +political +that +BD +loarncd +tho +the +of +prejudice, +right +Later +serious +1881. +read +But +has +in +the +alimentary +Sam. +load +bombardment +a +of +for +in +Wfntsorville; +may +immigrauu +of +of +and +of +eiTect +. +in +she +fact, +San +bodies +an +with +easily +and +Is +spir­ +one +a +thioga +that +whom +Junior +of +of +ped +was +represented +of +for +to +wholly +tbo +will +to +are +conductor +street +the +to +wer«» +have +infirm +nicts +court +British +that +wearing +such +be +reaper +thus +of +«aid +in +the +they +awful +town +the +Capitalism +sink +banded +famil¬ +it +retribu­ +seldom +own +felt +daughters +will +of +where +I +when +be +peace +soon +de- +An +known, +on +amonnta +had +to +Chautauqua +prime +24, +and +capitalists +and +majority +quiries +of +known, +the +numerous +shows +Cooper +been +is +get +States +road, +as +ceding +the +be +love! +cases +July +in +and +you. +each +and +bone +pound +not +I +is +marked +2 +success +sixteen +described +Audrew +not +Waldo +grea +the +generally +many +befottnd +i,#57 +following +that +Trussell, +work +palm. +persons +bearing +annual +is +a +same, +order +a +drawn +so-called +success +are +to +killed +\vorke*r, +was +of +Kentucky +-No. +is +that +physicians’ +of +statute +decision. +health +homestead. +evidence +few +did +Judge +to +to +booths +rattle- +republican, +era, +other +nomlnatlona +coal +distance +by +clean +natural +Mfl +many +aided +be +hesitate +large +e +satisfied +may +scent +the +sew +formance +government, +charges +night, +Requiem +butter +senators +the +of +feline +os- +of +new +W. +· +in +. +txtre'iie. +Performing, +then +oly +history, +was +as +piesent +tbau +dogs +nnH +' +N +vest +of +of +fame. +In +tills +O'Conors +pieces +wuth +150 +along +debilitated +H. +his +only +British +num­ +anyone +gather +a +other +blood +from +few +man +by +wood, +of +have +ooadition +too +if +tbe +r +the +stocks. +7t> +and +bring +if +the +museum +ties +ceremonies +to +cigaret +whom +general +Within +South +it, +upon +should +with +the +it +mockery. +year*.but +believed +earn +for +We +by +was +ner +outside +applicable +unload +that +weeks, +occupies, +several +trouble +»s +indebtedness +Scott, +been +and +and +interest +innovations +"In +conj +partial­ +adequate +the +aa +Father +was +trust +to +Mr. +boat +shnll +Americar +hogs, +this +Deceased +approached +agaiu. +of +for +children +are +the +tortuie, +the +said +hunters +an +for +from +with +true +Commission +goal +inaugurated, +fer.- +stable +one +l«»ro +must +cargo +tunnel +the +mv +get +One +happened. +ticularly +just +vator. +aroused +Aue +abuse +notified, +given +the +property, +light +system, +line +the +licers +of +world +ef +tbe +the +1889, +ot +and +Metropolitan, +thorcforo, +at +and +but +Methodist, +Mr. +P.M. +he +enabling +tunnel. +which +told +the +Government +if +groat +A +and +secured, +duct. +tho +thirteen +added +of +bo +he +and +on +sons +a +ouehour +and +grown +of +next +roadside, +But +There +"been +a +to +for +that +Those +February, +attachments, +who +decide +women +ble +aliont +strong +shot, +’y +Rankin +St.; +do +School +real +rites +reduction +rifle +lauds +earth +to +he +the +from +Phyllis +such +1, +from +evenly-bearing +An +01 +of +latin's, +en.braces +there +preparing +of +ly +mi +m +enable +it +and +men +the +crawl +Martin +and +r»otion. +Hasps. +and +her +any +each +suga +and +ailtimore +.used +that +rushes +is +of +on +They +room +street +ofl'erB +those +whirlpool +of +this +shown +days +Missouri +27 +as +was +during +until +blind, +company +money. +ih«- +each +After +their +dull +would +and +produced +familiar +forth +of +Some- +favor +mistake +of +marked +in +mighty +coqueteries. +defendant +procured +car +line +the +bis +zealous +No +come +tem- +to +relatives +the +of +following +me +fraud +cotton +will +man +not +E. +could +as +fret +aeptns +"Commotion +street, +buy +proper +of +\u25a0 +I +this +daring, +in +I +conception. +square +reign +by +Stilnl +anv +p*es- +two +important +assigns +our +and +on +fact +Diseases, +I +his +of +a +of +Church +birds +It +Bangor. +constructing +did, +city +on +of +of +and +of +attitude, +innocent +nothing +and +Her +a +specie +the +of +steamer +owner, +foreigners +New +tho +has +in +and +the +siuce +is +believe +proper +brakeman +British +world +panies +watch, +of +who +constitute +of +to +came +date. +east +In +to +pounds +about +J +poor +they +Mothers +especially +the +In +"lakes +mill +failed +Ireland, +pilose +As +Grant +do. +to +affairs +college +that +the +and +a +composed +the +him +»Mû» +minutes, +of +Of'LtHT +arrangement +1,600 +be +"to +with +lost +after +on +Lake +voted +trail, +out +of +to +time, +Haskins, +to +that +oi-,inini +he +doomed +of +Many +of +the +at +nearly +Street, +the +out +to +and +that +the +cans +financial +meet- +a +weeks’ +is +Northrup, +by +of +behind +earth. +minutes +In +hold +no +friends +of +In +part +nud +bright +in- +analysis +never +down +singly +John +greater +to +ceasing +etc., +death +which +of +meeting. +the +1 +Henry +not +prcsence +cowardice +for +(subject +1 +staid +ening +or +will +ana +sang. +clal +of +food +Elizabeth +great +usually +seme +week +New +by +concedes, +and +see +enemy's +ill +will +was +oT +pocket +side +departments +Horror +and +finished +Appropriate +workingr, +active +tho +and +stated +clubs +with +Build¬ +Wsibinwton +if +of +will +Africa, +ture) +lu +paying +of +several +Sarrail +(17) +intense +their +possess +fendants +the +by +effect +tbe +From +small, +which +Ist* +not +last +to- +year, +the +from +and +at +for +was +as +two +cannot +New +right +Leo, +Bela +and +day, +it +dents +carefully +be +graph +of +it +fellows +make +and +ern +attending +Ku-Klux +be +trading +to +and +In +cleanliness. +of +will +llow +lawsuit +to +"in +have +cent. +parison +and +The +magis- +do +return +I +all +defeat,) +will +United +who +by +Bis­ +or +was +in +as +centre +people. +His +$65.00 +right +cover +The +full +the +of +your +einl. +trimming +over +.- +staged. +but +ordinance +determine +ment, +Agent,) +opeu, +words +menta +exubo.anre +of +in +with +f +of +were +past +Char- +carnival +was +equally +that +the +marvelous. +war +and +If +fj +as +by +farms +and +candidate, +his +tbe +of +would +I +States, +Provided, +John +that +(59) +law-abiding +the +together +Lusltanla +of +had +to' +for +On +will +lode +that +to +Eventually +is +ly +her +Academy +will +mln. +paid +wbat +of +either +whole +cime +had +M., +for +Seal' +night +year +Farmers +its +wardlv +and +the +companion +not. +that +upright +Gouverneur +his +Annapolis +only +few +the +feet, +will +or +a +proven +wheat +railroad, +and +suoh +of +crime +oil +hurled +sergeants +what +differences +Evidently +pass +hire +stock +nature +Wet +itely +boundary +dition +So +dal +copy +counsel +but +sands, +little +in +they +to +of +rails, +to +holes +he +the +the +a +dam- +he +has +rate +joy +It +to +honost +my +to +the +move +shortly +white, +be +the +rate +was +of +and +of +of +the +argu- +was +at +for +fouled +Deiuoi +Street, +a +pardon +Make +paid, +tbe +clearing +into +region. +and +safety, +lit* +petrated +very +fully +payment, +your +chair +story +have +¬ +the +bad +Poor +work +tbat +ment +\v;is +consideration. +things +the +use +food +Ingun +book +Up +Poet +to +ly +well, +for +New +rates +performed +the +at +to +enters +has +Ktate +Margaret +which +street +spiration +car +classes +of +Carlos +leading +with +ily +t +from +route. +we +appeared +the +or +with +the +in +the +and +might +many +which +settle +was +of +axe +ei +of +said +would +the +he +sup- +either +any +for +should +vens, +Iv'e +to +and +of +thumbs +territory +them +If +in +through +ously +Its +if +a +sec- +230 +the +on +belongs +Ella +you +2,H*a. +ttc." +a +them +our +flight +the +sent +be +Sister» +wL- +from +there +expressul +subcom- +and +poration +aels, +weather. +yes¬ +bo +moist +a +been +held +land +a +to +which +can +in +to +light +for +iipottsylvania +Both +nagh +ago +evil. +The +:re +death, +Spear +deserted +Republican +10 +January +brougat +greatly +slamp +and +enter¬ +vegetable +leg-muscle, +results' +adhere +the +Assessor +in +the +felt +ration. +therefore, +8!U> +for +member +China +to +restive. +cut +walls +will +the +feels +separated +east +wall, +says, +Dr. +any +virtue +any +soil, +head. +been +the +it +of +tbe +the +FI. +G. +by +L. +its +the +send +aid. +28th +f'.c) +by +of +her +with +of +were +the +asks +Davis, +legion +About +execution +aud +earlier +plain +dark- +ward +some +Standing +The +homo +and +stock +hurl +(maiden +not +to +clay, +were +are +of +by +of +The +dreary +of +him +two +Maryland +claimed +to +out +religious +him +to +more +for +It +about +To +other +and +iht +tained +01otton +the +th^*. +icans +visiting +our +as +allowed +new +the +wild +first +a +the +make +of +the +up +when +leas +sirous +"We +the +report. +Beclard +the +and +to +as +they +Chinese, +Sanford, +would +combination, +fwo +your +homes. +at +thing +the +is +his +decided +such +did +again, +In +farms +is +Stato +industry +takethe +not +might +in +received +in +was +numbered +third +Boston, +Dick +about +Lavin, +the +Partridge +beyond +and +from +efforts +bade +all +On +do +and +the +fellOw +will +allowing +France +only +road +Loss +not +deceased, +and +country +the +them +cape +most +struggle, +law-Pwf +him +the +I +Pirstaky, +and +father’s +House +the +or +Bart; +considerably +not +left +Collins, +to +roads, +Republican +w'day +and +aud +farmers +period +will +convention. +has +to +it +Crackerjack +dim +Cubans +molt* +of +for +the +had +place +In +reeoTd +i +availing +of +that +.itiiui +an +Many +a +.sing +the +Jackson, +onstrate +accrue +the +line +people +difference +of +really +tc +up +my +terize +and +ninety- +and +recognised +to +this +Instant +and +suggestion, +you +is +fast +ed +become +Botaaserled +Thon +sumed +voted +Long +an +States, +be +two +day? +a +a +fairly +and +the +the +the +of +objected +Their +on +rejected, +hy +light. +as +for. +this, +of +city, +at +McCurley. +. +mdeslrable +It +no +1- +j +defined +inspec- +girl, +I +I +fresh +of +time +and +National +In +An +under +for +lie +the +evident. +the +leading +bottom. +system +his +was +KUilty +frog. +uights. +heavy +or +strong +of +fortnight +was +Judge +wa +proved +one +until +of +loosens +surveyor +lorco. +a +Some +old +should +crowd +Dumb, +of +all +without +some +as +by +Willey +manned +ng +Coach +another +assertion +Divine +y +difTereut, +this +and +remedied +Anna +sent +W. +go +Parker +from +was +the +imposed +miy +heard. +t.- +When +lots +attempt* +George +havo +sum +th. +Yesterday +the +sensed. +$20,000,000,000 +Quevadi +ami +Railroad +the +take +the +everywhere +liver +equity, +very +selves +keepers, +emotions +city, +etentj. +No. +the +rales +j +had +In +it +I +first +put +result +thence +a +O'More," +st +pily, +$1,445 +Tort +are +them +along +Presbyterian +committee +we +pricfol +braves +that +in +surely +had +the +that +develop +when +State +to +can +ntan +us +ater +North +Miss +the +A. +word, +suit, +east +days' +women +plain +con- +to +mixe +cards.* +They +they +told." +was +kets, +the +compnny +men +Benton-Tama +why +legitimate +rewa: +not +Pope +lives +and +the +of +son +to +Milton. +! +ot +of +Kelly. +Chicago +loss +of +Ten +where +mills +borrowing. +hob- +the +tz. +another. +this +of +their +dropped +fone +to +for +and +less +dishonesty +neting +in +Southern +democratic +on +the +Now +brother, +principle +with +term, +trying +Oregon +association +which +Brannik, +those +last +a +sit +view +restoring +a +ly +whole +31@32c; +blatV +convenient +duty +agreea +and +high; +fix +23183. +I +21st +go +lit· +are +speed +state +not +Stall!, +as +greatest +be +lie +American +S. +predecessor*. +York +that +gold +from +Section +Lock," +hearings +entire +old +delineation +him +time +aud +colonies, +able +it +quest +have +been +means +bo +delivery +but +Bowey +opposite +and +all +upon +and +it +payable, +attractive +re<«>r«l- +lay. +of +Colorado, +to +The +that +Miss +and +a +the +coal +be +Chariton +ivii.ro. +upon +chair +for +and +moisture, +action, +council +will +in +with +Southwest +human +things; +of +the +sus- +after +are +in +upon +comb +from +are +House +Miller +powers +it +Minnesota, +aiy +He +county +of +takes +audi +On +to +appointed +to +Government +their +lic, +up +nastily +what +hare +en +bloom +of +ent +bell +correct; +of +sugar, +authorized +full +against +Tbe +freight +taken +in +: +fortunate +resignation +Scu.tor +undoubtedly +vaults +that +the +greater +Eussian. +will +and +in +robuster +ber, +smaller +have +Australia. +for +ciation, +calling +wnuo +per +concentrated +reduced +Francis +County, +into +secondly, +from +returned. +the +the +bilis +reslstlessly +only +The +of +no +Sperryville +primi- +England, +Eye +and +the +the +mous, +of +my +amendment +of +interesting +avenue +aoU +they +lei +the +Vloompte +look +at +it +yfctnaville +person +stride. +barn. +year +thence, +of +head +discoveries, +s +of +the +pigs. +7 +:for +provide +can +•practically +toward +nor. +help +ends +distributed +as +time. +and +prepared +to +guilty, +Quilts; +that +book +as +interests +all +scoreboard. +below +Into +other +year, +all +30th +tuo +past +at +claim +the +and +2399. +ing +running +from +a +which +., +bacon +Then +and +But +n +license +named +persons +uf +Their +with +fine +action +I.> +of +all +broad +with, +that +and +subject. +Do +('¦ +than +last +used +down +the +the +not +lively +the +father +ion +of +ahe +property +Mr. +and +by +the +on +In +m. +caah, +a +statutes +locatity +fight +< +aown +Irritated +office +code, +but +and +there +around +a +of +source +which +the +air +track, +missed +crowd, +knowledge, +right, +by +woman—utterly +provisions +to +The +steward +boots +he +necessary +be +word +of +of +pressure +office +much +firing +country +the +In +says +forlorn +quarter +of +dents, +nobody +a +is +thinking, +her. +infants, +of +merely +moved +for +dered +the +and +pected +publie +state +for +the +to +to +corner +financial +of +of +above +of +we +seizing +Well +temperate +Keep +for +shall +ingenuity. +whoee +of +or +small +better +file +them +regarded +rector +Then +. +attempting +fuueral +would +to +Eng­ +good +expression +and +were +comes +parties +our +now +thru +^happened +curl- +pass +government +on +the +The +any +rreat +swered. +purchases +for +congress +toes +110 +in +puted +gress +who +Birmingham. +through +gar +- +without +light +north, +Prineville, +ahotild +Knew +medical +a +of +played +from +work +soon +that +the +of +2 +recover +arose +column +shall, +fcr +credit +and +subpoenaed +and' +now +to +the +the +suddenly +tells +had +one +the +in +magnitude +as +them. +inquiry +walls. +and +left +went +ity, +man +lend +sufficient +the +side +men +along +known +an +resignation +refined +husband, +Convention. +in +the +it +sick +this +block +tho +before +ia +of +world +delivered +in +He +In +by +authority +dwelling +transportation +same +would +court +he +it +to +now +Havana +that +abaoiele +tho +Sentinel. +the +lar +holidays +came +complications +went +hearts +directions. +5.82 +knowledge +valvo +old +each +and +of +and +of +of +thought, +He +fixed +a +be +one +not +but, +23. +damages +finance +under +planter, +they +are +from +paragraph +shall +year. +alarm +is +stump +data +case +this +realized +trouble +any +more +Leginning +Ween +and +cavii +the +a +..being +pox +rendered +forehead +working +Section' +and +myself +r.,5 +there +en +the +And +Charts +a +the +Dowlo +Trlcket +up +Fafty. +and +with +Polumbo +of +two +of +vorn +arrested +ennh +outrun +affect- +an +refreshed +ever, +knowledge +A +that +much +crit- +General +belra, +uetgibor +Aeademy +inii +he +The +the +out +the +on +ad- +either +feaifnl +Peoplo +Introduced +tion, +me +is +at +good +it +senate, +ing +Ro>ce, +it +ootblnir +farms +to +in +this +In +original +the +living +con¬ +.»n +present +hospital +during +the +The +recommended +pasture +mark. +appeals +market +devout +be +of +earth. +showing +of +beer +the +suit +States +shore +guttd +the +til +man +shipped +the +to +the +splendid +photograph +Senate +served +had +9 +direction +pas- +to +na. +he +dian +astonishment +moral +ventilation +hammer +that +the +in +chance +some +The +government +to +its +an;i +when +against +only +the +Matthew +than +pher, +Meredian. +fortunate +the +Worms +physicians +had +to +be +attempt +Santa +surveyor +there +that +before +Another +for +they +70,000 +be +Chicago, +Tommy +Kepperling, +what +to +the +busy +a +known +expenses +erty +recalled +about +is +to +and +he +of +lantic +coffee. +much +1814, +in +received +bank +went +who +soreness +Kuttner +tins +of +by +the +•it +A. +convenient +geometry, +he +some +hope +situation, +*»t +the +has +The +is +carcass, +save +thrucited +the +$100, +I +delights +was +tle +in +which +floor +Commonwealth +tons +too +be +if +-' +Gortsehakoffi +Bran- +will +cabins +is +right +the +oxygen +the +the +of +remarkable +things, +standing +Nutter, +seven +distance +boiling. +be +and +'.lie +at +the, +nost +of +launched, +and +regular +and +equalize +have +scarcely +Is +their +may +snug +do +to +in +'ng +were +blossom +but +land +the +quarter +sunniest +terie, +the +exceeds +Constitution +by +he +pine +superfluous +business +of +of +in +L +will +her +lias +a +entertain +speeches, +the +or +at +F. +a +in +this +ish +make +. +generous +$10 +comfort. +and +was +of +limited +at +about +illustrations +on +tn +as +it +G +17. +supremacy +in +sacred, +and +ilorsE.The. +bear +citizenship +tho +oz. +whether +yes- +difficult +ago. +a +But +to +instinct, +society +sails +on +people +ruption +no +know +We +at +case, +trained +is +The +it, +will +they +made +every +x +aaa +re-elected +Bay +Per- +money. +be +it +lu +rejected +Crocker +neighborhood +to +the +Mrs +of +used +hia +a +Service +mauaol-a +wliat +ly, +and +therad +sured +years +of +Pre- +gamely +of +deeply +Maurice +returning +it +truth +at +Chicago; +science +market +stroet, +The +or +the +corner +000 +dummy +a +you +original +its +House +remarks, +and +buyers +Monareby, +peraonally +The +himself, +would +and +the +Around +el +so +emperor +blacksmith. +and +de- +is +little +almost +young +med- +then +Joints +as +as +last +friend­ +husband +Just +board +Garland, +a +tion +but +to +by +his +the +guests +us +ranges +radical +they +"The +the +with +pa^ty +mortgage +this +»eeu +attempt +falli' +of +doubt +-.aid +the +consists +have +sent +We +estate +late +an +bv +lines +near +a +this +one, +the +group. +dykes +alarming +formulat- +, +cards +ns +bnt +or +at +in +laf: +agriculture +netting +sifbrr; +a +the +still +lifted, +and +was +ntiwsjwa|ssi +of +plants +no +our +notes, +the +tell +to +a +person, +deed +etta'e, +nights +infer +from +rod« +Intermittent +effect +line +a +other, +partments +east +to +of +his +his +friendship +tempted +of +a +the +here +those +empowered, +the +them +taken +tree, +avoided. +of +and +some +ofJ.L +end. +the +vorot +helped +merchandise +the +were +away, +upon +last +incorporation +one +county +the +arises +through +of +For +wall +bis +cause +banner +to +to +scribed +*ix, +troubled +the +be +heen +meantime +kinds +hands +bers +he +report +and +patriot +the +a +a +family +as +executives, +the +ning +whoop. +for +StatoN. +claims +the +property +undergo +then +Mr. +hi* +it +down +were +in +rcry +lot, +stys +several +California +upoil +tnat +classes +in +to +washed +must +from +he +off- +the +progressive, +but +president +very +sonic +have +NlKht +out +treated +income +Washington, +been +read +Eph +Suppose +charging +down +the +had +ber +to +and +identifying +necessary +give +of +are +the +words +responsi- +poration. +most +where +etop-timbera +tear, +A +oonhne +of +so +yearly +hand +gir +281 +1.84 +thus +trust +piece +8treet +furniture +Belle +little +attended +the +for +the +lid +the +of +had +for +until +iu +to +but +lords +afternoon. +done +quantity. +have +that +price +constantly +campaign +Alaska +called +for +just, +recovery. +as +county +happened +measure, +the +wagon +And +all +other +he +never +Missouri.Miss +tlie +eight +be +man +no +Manila +Oats +. +certainly +"Southern +and +Armored +of +years. +of +speech +the +and +be +politically +the +while +It +wanderings +his +blood, +considered +piece +sec +commis- +the +In +however, +. +visited +republican +to +questions; +and +iron +no +that +materials, +for +alKiui +community +and +very +fat, +ho +and +it +IM +to +to +After +the +to +was +The +Mex- +with +for +white, +for. +or +also +of +what +J. +The +to +and +for +five +demand, +active +and +public +life +iiieiiilond +at +hurt +at- +being +Mrs. +trying +R +escape +from +maintain +homelike +of +boat! +Commit¬ +the +that +thoiiKht +into +agonizing, +lust +debt +I'ortioUe, +Guatemala, +profession. +the +& +Angois +the +with +on +and +four +he +ever +Democrat, +a +In +merino +crease +of +of +when +liable. +Mrs. +to +corporation +iniquity +year, +H, +a +and +N. +it +of +Pioneer +publio +thence +slides +favor +from +lie +the +the +A +Iot +To-day +of +Ala, +and +When +made +did +and +gentle, +of +deesjtts +tlers +personal +due, +Ist, +they +with +VBaael +the +missates +tbe +the +Schratli +The +Daguerreotypes +pleasure, +ground, +been +people- +mnese +severity, +ous +th< +next +m +who, +could +cordially +paid +run +ing +has +In +26,999 +up +tell +la +great +would +day +coal +to +will +L +the +newspapers +There +the +e +illegal +the +in +arrived +understand +ago. +Augustus +game +N. +statistics +since +of +matter +hard +extant, +ant +can +what +determined +$1,500 +getting +to +are +most +tion +out. +the +Portland +part +comes +of +interference +solemn +added +from +hospitality +He +there +Thomas +take +this +nlnlohmnl. +sult +the +ttdtt) +bavin;; +firm +No +tion. +upon +of +watch, +nhich +lew +neatly +his +the +obtained +across, +to +and +has +a +account +p +the +aixly +or +other +my +a +an +for +to +"I +Amboy; +trees. +courses +to +desk, +nnd +of +class +bought +cts +mingle +to +Minor, +circulation: +of +shall +the +for +State +sources. +and +any +here. +s +any +advanced +of +any +The +fields +probably, +might +generally. +dust. +bo +the +thence +to +usually +March, +Tonil's +entei +discussing +the +finest +a +of +renders +president +or +our +community, +24; +floor +for +I +under +necessary +he +two +Bishop +publican +of +soul. +to +afternoon's +week +fact +Sunday +the +He +heights. +mouth. +a +the +think +bill. +which +Among +a +There +of +abroad +system, +closing +his +side +the +I. +now +ence +wa +When +she +in +tion +activities +was +ts +pineap- +sum +the +declare +alternative +\V. +Con­ +1856. +departed, +forms +left +order +It +done +role +for +shall +dark. +must +Most +about +to +an +Spicer, +players +advanced +continually. +in +well +He +of +for +turn +Hau +ftul +not +ness +could +of +Charles +in +held +ananhed +in +What +the +the +the +ami +from +times +new +the +alarming +absolute +unexpect¬ +confirmation +NE +claim +Alaskan +of +sooner.' +keeps +4 +does +report +In +and +shoulders, +of +immediately +When +that +two +manly +in +lasses,' +of +are +the +torin +in +most +chiefly +provement, +have +operates +so' +defensive +Studlev, +other +mind +taken +little +W +decce +because +rWslV +but +committee +and +an +acid-stomach! +G. +a +revered +go +were +for +value +therein, +aaiuted +man +it +the +the +of +his +with +his +at +past +dices +Branch: +notice +Investigations +'avor.tle +paid +by +but +thing +the +of +cheered +us +to +Southern +of +which +Jas. +find +which +seems +Tr.ii +the +no +unswerving +affect +at +significance +convulsion, +The +li_n +ly +people +Safe +Lots +pecu- +jury +making +be, +any +near +about +fellow. +into +to +Co. +there +solemnly +fish. +without +this +can +Its +$276.00 +England +label, +cnudi- +son +would +her +answer +Concord +met +Railroad +cony +and +Orchard +the +.also +tlhe +OOOTTTTunds +Webteru +George +tho +The +anywhere. +ance +saw +out +that +one +understand +Ilrooklyii, +no +up +right +engineer +South-west +made +this +they +effort. +that +Div. +Miss +no +from +John +ascer +your +gist +aad +effects, +them, +many +the +colossal +of +this +of +severely. +canals, +limits +hot- +tuapeil +twenty-one +not +Mtiu +quarter +Senator, +use +of +because +hail +upon +the +be +at +I +that +to +cause +Inches, +was +forecastle, +watched +who +workers +constable +appropriate +Briid. +N. +him +10.40; +Scott +Corona, +legis¬ +engineers +of +,fthe +in +than +by +Houpt, +The +all +he +be +for +returned +Bouchillon, +walked +view +warrants, +25 +I +In +steer +straw +st +county, +lor +that +ot +their +of +the +such +entitled +rods +than +over +route +States +be +by +buying +btate +an +demonstration +the +Willis +Plutlllera' +it +of +of +Genevieve +thing. +his +management +one +does +the +holtness, +taken. +mice. +were +n +is +imagined +and +they +was +pay +A +that +heard +should +Chicago +with +side +and +1 +with +the +on +oppose +date +a +grasping +interest, +statement +Com +Money +ly +gro +that +Mc- +or +In +Then +trol +PRESS +Think +went +complaint +to +com¬ +the +of +in +then +Stato +SECTION +fermented +basis +train +soldieiy +made +and +and +through +wheat +the +Fe +you +drew +takes +posed. +with +; +aa +within +goes +lorm +coiiBist +world, +them +a +since +trow +outside +canon +the +at +these +and +and +able +6 +in +God's +iv +so-called +intendent +Section +a +keep +. +steamboat +got +it +seen +and +of +sound +vision +hundred +office, +46jc; +Vcnmint +In +to +often +cago +to +the +not +colonial +her +superior +Indian, +for +from +fense +eral +duction +by +weal +devolved +red, +if +in +will +reception +well +purpose +the +about +in +reasons +the +Said +days +expediency +Crown. +then +had +the +allowance +directed, +then +be +of +but +which +. +sheriffdid +is +are +of +saved +labeled +body +Philadelphia, +have +to +by +no +•bad +of +back. +awash. +but +int +by +might +person +frequent +done +with +to +9 +glue +the +they +pays +'they +abide +but +conduct +Foa +ssid +isors, +to +to +gether +were +contributed +ed +Newton +; +is +later +dally +Miss +demonstrated, +connection, +year +this +beginning +it +is +the +conference. +of +and +indelicate +is +up +conniv, +a +of +matters +ers +is +thing +Gastineau +mile +hard +by +of +thee +of +delivered +, +the +purred +Presidency, +so +brain +the +assist +Bar +that +for +lion, +the +tlicm +and +torn +is +notes +valuable +the +4 +spoke +and +V. +Haven +his +paddle +passed +extensive +thirty-eight +of +Holden, +perstitious +or +srme +tiick +Most +cannot +majority +and +Tho +deem +assessments +Flannagan, +our +ravines. +every +father +are +apples; +at +ceived +any +the +1 +is +gun, +and +faith. +to +lay +a +timber +Ger¬ +This +market +soon +to +profitable +past. +a +that +the +votea +treasury +the +Soman' +the +which +world +hour +from +mode +tho +that +ooune +to +by +that +one +the +the +did +be +gas +Myers' +has +clean +and +andl +I +is +a +di- +Uliagres +trans- +care +vital +driven +and +a +com- +ab- +was +him +tion +division +for +6—2; +a +been +the +Colonel +was +stamp +great +age +degiees, +the +Peas, +In +way: +man +now +city +each +small +his +the +then, +now-her +considerable +30th, +state +it- +respectively, +that +be +. +1412, +The +nnoof +two +son +Jane +here +thc +members +first +Brown's +form +added +service. +be +for +actions +fidelity +tho +at +b +Perhaps +Lake +and +i +laud +and +which +anything +Potomac, +in +he +held +visiting +to +la +American +the +all. +every +A +tho +by +Iowa +the +Harrison +columns +wealth. +and. +acy. +not +With +about +investigates +days?S +pass +a +readers +$1,70. +yesterday +itself +would +and +providence +Hougen; +rounded +the +should +shows +selling +elected +pro­ +replied, +to +a +that'every +Person, +and +was! +proposal +been +men +of +the +testimony +days +or +pected +for" +Company, +might +could +w.f +was +after +the +In +tiins +"the +species +to +order; +thoroughly +winter +groceries, +among +sinew +of +my +BELLS. +called +ne¬ +spending." +about +tariff +to +papers, +woild +cost, +dining +curiosity +much +aeeeailisc +wise +the +county +tilt +interest, +a +king +favored +of +is +V. +of +Winona, +many +one +entered +ton, +partic¬ +the +business. +my +of +Pekin, +bread +ting +planks +be +ascertain +right +plat +moisture +up +was +excellent +the +canvassing +A. +it +richness +a +Edward, +American +stance. +the +extent +this +sympathy +black +chns. +water +n +Clemenceau +depth +two +a +took +eight +begun +with +and +wish +for +at +to +tions +having +that +he +ural +are +he +few +to +any +Advices +so +lish, +of +Third, +for +officer +made, +and +upon +which +tlienct +erfect +menacing +a +would +the +husband +This +furtively +war +Schriler, +of +up +'he +practice +the +important +evil- +yard +to +Mr. +the +apprehvnd, +uso. +heeia. +to +in +practical +it +book +floated +that +in +Grand +the +of +flfll +laws +decline +condition +dered +private +to +whom +thfl +Marshal +have +ting +are +best +the +armored +is +her +police +forty +they +legislators +horjorfbr +final +imperial +remains +who +me +made +making +any +prophet's +God's +essary +them +I +he +several +I +suspend +regulate +that +aud, +readily +how +P. +the +beneath +two +theie +tfefalf +the +promote +for +property. +·. +In +than +big +be +Perry +in +to +awaits +there +A +my +to +the +and +486 +a +terday +passed +of +should +slender +confidence +me. +time +bags. +Columbia, +the +®10»4c. +and +dim +that +bound +men +Republican +of +who +thu +he +the +to +said +which +woman +approved +followed +them +his +agree +to +congregate. +of +mind. +aaid +her +39942, +not +of +sun. +tbiiyear'aelectiona, +Mr. +even +night +the +No +fro,u +more +no +to +situation +only +furnish +mercial +idea. +a +prevailed +Singleton +s +were +garage. +he +and +world, +made +materials +advance +flat +movements, +member +He +time +If +and +room +to +mg +town +then +of +The +sorrowing +has +great +bears +and +Alliance. +form +not +head +This +*night, +These +sure +file +>f +of +. +that +a +day +Illinois, +of +and +4s, +spat +by +of +to +Coun- +tecting +and +heat +agslnat +telegraphers +people, +espressos +to +highest +purchase, +a +and +and +cities, +the +a +opened +or +and +kingdom +hand, +your +tion +me +great +l1arry, +on +paid +to +He +to +well +do +I'oal +higher +meetlngand +seventy-tour +Crawford, +man +and, +York +working +suhool, +Postmasters, +financially +else +improbable, +were +exceeded +of +supply +for +him, +immedi­ +expended) +this +Millie +It +Car¬ +loe +battle +457 +to +enough +of +title +affections +by +) +done +ting +Neuralgia, +than +and +way +wlth +preven +church +tb +the +been +hunting +Mr. +greater +tbe +on +Ecuador +alcohol +banished. +poisoned +If +contfidently +union +other +rain, +lateral +and +had +take +the +courtesies +the +hard-hips +Hkiiai.ii +New +the +same +dis +seooud +to +couple +with +trade. +tbo +street. +loss +. +sacrifices +233; +E, +sides +southeast; +acquired +to +for +Nothing +of +musical +things +forty-five +around +out +of +their +in +of +not +on +before. +Mis- +California +there +regular +seeds,contain +ofaelal +remotest +the +ence +made +proper +reject +bread +each +early +rudely +and +.50-10.75; +me, +owes +the +a +in +pantry +to +End +more +inter- +perform +serving" +the +safely +must +administering +could +lor +constructed +is +pledge +should +way +birds +not +said +we +Some +this +; +Root: +of +He +of +any +destruction +tion +devoted +should +to +include +did +AM, +4:30 +Company +with +r< +"dummy" +United +quite +persuaded +constitu¬ +jest +this +hearth, +3. +b +to +r.nd +been +it +claims, +British +any +It +en +and +the +we +the +in +the +for +way. +the +that +obji +and +the +this +a +ed +are +may +bls +and +little +do +it +through +they +from +sent +the +af'rr +ready +On +,000 +unfolded +attention, +the +9 +would +that +through +sailors +nation +the +as +than +. +waaar +a +sen- +"p- +son, +The +of +taken +It +be +tell +Saul's +Sho +no +culiur +Can +Court, +Union +piest +now +no +in +the +of +first +meal +Proclamation +interest +have +of +lists +when +Brazilian +be +vivacity +dying +secre¬ +Rurton +show +government +some +of +at +At +the +onco +of +In +the +with +All +be +working +at +sealed +matter +he +each, +this +but +of +by +read +at +serve +or +is +a +gulf +all. +number +Grain +women +who +children +whole +John +confidence +had +taking +thty +this +and +Immediate +then +rs +sum +Mr. +affliction, +Procrustean +saw +and +an +mony. +their +amended +our +docs +heart +which +in +to +sections, +be +injury +chains +practice +this +medical +prohibited +ground. +for +42—16— +been +desires +be +being +The +teeomittedtoadvertiaeiiia +by +ma¬ +harmony +debts +well, +e +into +between +of +out +quence +selection +shal- +Luke.a +tax +aome +lights +H. +easier +still +at +she +be +accede +whea +would +County +rareb +till +she +rate +. +Jim, +sick +to +Aicofsr +that +most +iron +in +the +may +In +the +a +is +mess +alter +the +it +of +Egyptians +rapidly +Petkov +degrees +heart +SHERIFF +is +made +as +on +that +a +and +tho +they +ahall +from +was +no +this +each +the +put +sale +State +working +my +friends +the +it +undergoing +when +record. +to +departure. +Manoa +a +a +to +M'ar. +prevailed +turn +per +is +of +to +are +as +round +curve +us +diplomatist. +a +selection +the +the +ran +Plienix, +pnblic +would +decorations +It +its +his +k|.|'r«ia« +Man +the +pointees +the +carotid +revlso +fire. +porary +of +Friday +mormons +veins +various +fur- +revengeful +the +w +and +Territorial +in +thought, +morning +you +of +light +and +in +two +While +bible, +ahead +$12,500, +chs. +her +that +to +and +it +prove +of +by +have +until +are +Revenue, +better +presence +P. +case +of +tins +her +Flour +mind +arrived +of +erly +meet +of +as +many +The +lap. +States +repairingthedamages +cave, +be +case +dragged +mines +indorsement +Clinchfield +that +thud +many +la +errand, +1376, +but +and +conclusion +are +senses +through +of +give +declared +a +•the +to +of +water +are. +the +gives +crept +list +and +into +husband +I +vanced +mueh +of +work +gottlng +death. +the +the +stone +Minnie +the +among +guaranteeing +omes +of +proper +ber. +thing +Tilden +own +was +of +age +case +him +and +ria! +the +friend +to +he +pieces +still +.he +their +debt, +tloa +this +that +last +room +way +most +for +example, +expression +worked +W. +of +precinct +to +measure +expenses +eager +when +A +kiss +your +is +$1,285,118. +says +any +or +to +not +sons +was +his +make. +am +what +ot +speeches +and +Colonel +knowledge +she +w +Snow," +its +of +from +myself. +on. +a +St) +call +. +into +i« +its +I.ippman +They +"Our +kind +morning +is +10.75: +crease +lias +have +civilizations +easily +which +means +woof +Seventh +found +for +a +as +only +vide +him +genus +health. +of +back +tended +decay +stitute +create +him +an +had +through +said +Smollett's +the +Chairlestont, +in +than +younger +o* +lines; +definitely +8o +cotton. +oppostto +ridden +in +com¬ +edge +seed +effective +illy +punctured +Ind +fur +place +hand +and +the +rest +because +accused +taminating +Long +prayer +what +of +there +seven- +child +heavy +Geo +same +these +and +suitable +pains, +the +mining +was +.voul.l +tion +Owen, +go +five +to +that +all +of +grief +a +complain +and +Panama +knife +quarter +still; +with +voted +of +the +Well. +the +law +Mr. +unlniportnnt +was +no +The +keen +State, +as +agement +4 +when +4.00a6.00 +around +afforded +city. +meat +mentioned +spend +n- +of +would +of +to +Central +It.g +the +them. +tho +sessions +the +lingany +right +up +purpose +Spain +that +but +of +the +struction +healthy +bills +on' +the +have +u +wife; +business, +a' +12 +last +position +never +seldom +is +cove­ +generally. +ear, +each' +after +repeated +bv +m. +no +Mortan's +Dear- +In +the +political +ty. +in +barely +a +mako +persuasion, +authorized +all +thus +lous" +dis- +reform, +presented +5a +article, +cotn +fee +for +facts, +that +I +other +not +was +of +the +would +the +answer, +Bitters +the +ty +tne +naknown; +or +the +and +at +for +UNION +served +erected +and +sound +Turner, +smoke +forgave +vote +by +county +pub +it +not +and +sradisordated. +that +The +crow +tAke +years +from +case, +After +was +srA +and +but +in +minutes +wlio +this +English +the +real +beyoInt +wet +moist +Just +green +21.58 +ittmmaiwl +if +the +by +ed +bases. +diploma, +the +is +timony, +come, +opposition, +in +level +a +not +orders +base +politics. +against +bled +interchange +discharged; +physicians +days +The +empty +the +seeking +of +a +ranged +I» +of +its +the +certain +dose +And +sea, +design +ments +honest +every +When +departed +acres +the +Indiana +of +365$ +body +have +to +of +en- +the +war*^ +the +ing +be +Hi +a +asking +post- +branch +paid +Federal +as +He +say +experience +has +of +is +force +short. +within +tale, +was +march, +seven +ta +series +not +to +will-have +guard +vere +and +Mr. +Hie +naked +been +never +Its +Illy +the +life +with +¡there +pperdisc +in +who +one +was +This +?3% +repeal +home +James +heard +that +charged +In +slipping +Evelyn +the +understanding +cattle +There +much +towns, +his +sary +a +Association; +averments +sure +congregation, +Sherman +a +from +given +beurs +Musselshell +she +ta- +1205 +4. +justice +revolvers, +one +his +me, +that +official +that +infliction +f +derogatory +in +half +nnd +more +tar +as +ndversc, +of +will +endeavor +he +upon +at +Lis +1:53;. +to +received +Frank +the +die +tnlles, +value) +experience +blood +or +wnich, +of +their +he +several +40 +Dakota, +lost. +pair +soldiers +second +other +the +all +Mrs +h- +and +vic- +Good +when +Monday +else. +never +which +poor +niodesty +water +marble. +dispatch +this +quarters +nig. +smaller +world, +yet +Fayal +become +limits +50.2 +bed +of +What +to +ttie +prevailed, +20 +was +to +India +so +dollars; +been +mighty, +your +is +what +a +thence +statute +a +everywhere, +called +was +gone. +unjust +liis +at +that +mineral +a +conference +that +by +u.riU +rvtunied +approaching +favorable. +that +and +there +cheapest +place +secretary, +at +When +t»> +Camp +It +Columbia +they +an +not +question +wounded +are +in +mother +crowd +should +and +had +seemed +and +enemies +and +fering +rivers +nearly +be +nature. +dissent, +tance +Public +can +as +would +more +legally +getting +held +and +any +bottom, +they +Tho +between +let +were +when +an +some +so +spirit +violent +he +cents +ally +for. +with +a +when +that +cavalry +by +still +dersigned; +of +cited. +Boston +anee +When +running +ing +it +links +to +his +to +The +ambushing +elected +great- +at +dress +the +line +tho +Edgerton, +office +which +its +necessary +Next +senior +athletic, +McDermott +ietta +to +412, +from +It +or +of +ehch +of +was +servant +bacon +the +wife's +steam +was +two +the +sum* +heaped +through +last +has +the +ed +two +feet +assessment +one +A +niflcenpe +mind +Senate +a +South,nnd +8, +On +right +her, +you +iu +fight +by +xii +pereonil +beginning +off +of +tracks +or +ed, +when +lady, +authority +nrst +bearer +man's +the +birds +Pope +not +a +on +this +the +Young, +erences +of +ulihutitttd +is +cast +feet +for +vided +distrlbntatha +and +whether +this +bulk +Boia +in +panj; +of +dew +the +first +his +O. +crsc- +used +lageolets, +Van +treatment +save +Inscription +the +and +scious +everything +their +the +doing +depths +E. +D. +ls +interest +the +marched +senators +nil +"Warner's +into +or +purchase +general +relieved, +would +things, +Crimson +bacillus, +constructed +is +the +It +Durnose +And +Bohannan +It +work, +rainy +and +this +ciety +pupils +as +outshiues +Colllflower +poignant. +cried; +leasoue +teach¬ +removed, +blue +certain +delay +the +motion +the +are +man; +to +awful +tion +Stables +of +of +of +gold +the +Potosi +example. +protest +infer +Christmas +the +in +world +having +of +the +wide, +have +Adirondack +by +bean +resolution. +Baptist +even +vacuum +new +had +hears +of +what +though +greatest +pectorants. +breezy +may +do +and +he +but +intent +pedigree. +or +estate. +as +now, +close +Medical +most +should +is +out +of +that +material. +days +be +almost +It +of +lawns, +hour +the +from +Prophet +they +could +it +Wor.e—Predestinated. +' +miles +lion +put +was +to +lor +combs +No +shore +Several +duted +One-third +li. +for. +creating +ing +"squealed, +flraton +Sergeant +be +the +he +And +have +ages, +"white +Mr. +he +to +to +thar +intimately +oiil, +exceeding- +a +the +live +and +medical +miles. +yet +eggs. +Commonwealth, +uaariuao +event +eighty +vaccine +will +the +it +to +Lamb, +ex- +say +improved +J +at +new +only +iiinli-r +chaser. +be +Davie** +man +then +supported +Advocate. +The +wonder +called +t +would +absolute +indus­ +rush +I +plunged +Is +20 +his +claimed +to +lo +government +north +will +Waugh, +tribes +town +and +of +State +suspicion +point +volume +words +rank. +this +The +but +dead +most +in +same +street +»l.ow +pay +his +m +witfc +speech, +desired, +the +the +come +Connell. +lectures +as +old +tW +by +these +safisfbd +uablo +the +by +shown +1,654, +three +fertile +ilay; +lad, +from +and +dettrmlncd +anxious +Hinton +That +Davy +liard« +out +the +been +before +ment +ihe +Port +imagine +the +examination +league-leaders +thousands +ted +with +had +of +with +to +District; +it +by +2 +at +devote +the +B. +it".hurled +and +ing. +intercourse +no +tried +he +RA +the +seven +the +mind +bag. +offic- +experience +iloeds, +I +no +wuz +a +of +Mr. +Ican +angle. +gold +rem +institutions +and +minutes. +the +and +a +thus +Nathaniel +the +do +payment +pauper +to +Baker, +one +shipped. +fied +offlces, +son +Twice +pursuit +a +he +the +The +into +Vork. +week. +triumph +of +in +than +two +this +ordinary +—I +angle +carried +others, +taxable +poai- +saved +street, +$6,000, +Mexican +of +13, +and +five +"-Tho +sacred, +side +of +ner. +In +on +heat, +whole +porter +a +future +in +which +period +a +District +is +the +is +would +2 +of +gence +It +The +.w +party +nhtîd +was +other +collection +mi^nt +unusualiv +back +a +and +the +Coffee +with +so +the +labored +ovation +elsewhere, +temperature. +power +promotetl +catfish +who +various +Buildings +of +her +me. +plants +to +as +is +ed +receptacle +when +As +,118 +Mr. +giving +than +Krone, +Herbert +going +but +the +office +from +after +possession +role +not +from +be +such +have +will +is +jury +the +enthusiasm. +e +Soon +the +a +Town +I +he +constitu +sev¬ +ask +abbe-ddiiy +in +had +of +rcacheda +Tin- +3 +waves +cts. +thereof; +was +traitor +and +Tlie +and +will +ted +all +H. +adult +I’d +Atlantic. +Ceylon +to +on +their +Gunther, +ot +fact +Mr. +none +get +a +sent +surt +with +suppose, +the +360 +facil- +of +to +a +are +owned +Inquest +a +be +police +every +of +the +The +13 +a +T. +law +the +conscientious +except +give +land; +the +it +o'clock, +mea:« +from +ri'ini.- +deli +stick- +your +three +and +seaweed +if +$10 +what +and +Charles +canine +not +the +the +ly +hovah +ing +by +. +Did +assigned +conceal +it +lack +ordinary +postmasters +mile +to +to +iron +being +and +Peet, +herbs, +to +Gastineau +sed +will +casserole. +(84, +weep +There +the +forth +attached. +which +at +oontended +doinl +the +to +par +outside +snot; +thoy +blue +cians, +bo +ls +bush- +the +a +the +der, +been +Banner +Ohas +bill +to +They +I, +know +alum, +ever +who +by +sent. +this +it. +of. +he +could +and +of +of +whenever +of +what +his +aforesaid, +exercise +about +of +font +hard +lines +the +were +one +plied +that +About +interview. +While +Lowell. +death +havo +iuleuded +surmises +be +one +position +kept +87 +this +the +the +house +of +the +when +John +the +latter +yellow +was +miles +arid +it +the +to +an +will +the +telegraph +the +all +nt +six +that +and +turn +fears +chemicals +of +Atkins, +ment +make +it +old +more +has +Chineso +sleep +seven +together +the +Louis. +would +stirring +emphasizes +called +South +Owing +work +coffee +ot +hard +were +jsion +success, +take +she +excit¬ +tho +corporations +sional +a +of +preUaitoary +to +Fickmor +the +watch- +forces +>1 +regret +farm +Coffman. +a +dfj +valuable +confessed +1917, +presence, +iiaine +the +State, +take +west: +WIay. +ridicule +on +It +untiring +judg­ +2 +blesslugs +j.um +the +net +seeking +courts +referred +bv +collected +army +contest. +PlA +of +and +well +prevailing +or +choice +the +after +forward +of +The +unless +A. +inly +cousistent +are +by +the +. +Is +every +Va., +\oursolf +through +where +Block +tin +with +and +as +by +square +and +cab +Tho +more +tbe +nun +man +more +with +as +gels +is +side +tion +th +is +of +the +are +death +but +this +or +majority +girl. +transaction. +pleasant +center +Betelgeuse +at +in +the +county +portion +the +with +knowledge +as +hind +inspector +they +in +wilb +villages +say +at +against +hired +was +to +common. +echoed +richest +it. +contain +tho +a +.eavlng +New +21.000 +hurt +though +. +that +Brown, +to +It +and +in +in +and +ol +but +there +election +and +officer +ruin- +the +therefore +in +be +$10,000,000; +“We +whoso +flange; +is +without +may +feet +degree +Savannah +graphs +the +It +Mason, +tion +some +space. +matter +wards +and +to +It +he +able +thatin +witli +men +two +both +strest +and +citizen +the +would +as +Cure +for +His +Dostoti +Will +Ido +west +of +we +one +Bluff +federated +end +but +coiner +me +there +thesl +boy. +idea +officers +i: +the +good +our +broad +told. +al.: +still +to +which +h,iv.' +Democratic +nounced, +to +day +the +postmaster +Pecat +the +| +mm +of +who +little +liance +S. +a +wide +falling +ignored +acre +many +be +Chaa. +to +North +Perhaps +twenty-four +and +In +tive +the +order +Dan, +will +w +instead +girl +Mr. +to +the +undersigned, +system +31. +the +follows, +said +employed +rains, +tone +better +time, +gone +creed +the +a +a +Tho +city +the +forage, +As +added +come, +Templer +room +pectability +the +-st +stw +seventy +Lorz. +County. +thal +thereafter +that, +away +Carrnel. +holes, +true +made +and +v'ew.ofthe +land +Mrs +of +facturer +Inclined +been +and +I +time +a +as +ber +the +one +their +scribed +faded +pro¬ +the +counsel +to +country +; +morning +by +upon +in +tistry +4iU»y +of +pair +Provided: +increase +surrounded +point +to +Bowels, +my +they +arersge +lacked +cate +being +costs +or +the +othera +a +was +regard +what +line-of-batt- +your +in +fortify +walls, +Jacob +Mr +pari +"Our +harness +naturally +Joe. +while +iiiul +from +to +peasants +all +defeated +oi +mortgage, +me, +could +the +his +and +and +parts +at +delegates +invo- +and +there +merely +solvent. +above, +has +the +the +the +to +conversatic +# +stables +and +hungry, +«nd +If +ette. +on +It +of +Thom +will +plowing +required; +to +His +the +us +the +8 +barges, +on +few +D +fin +naion's +title +and +INI +frltby +want +and +will +most +the +left +the +the +will +un­ +times +s’oo,ooo. +other +Ky. +Said +thousands +States. +will +time +General +Jay), +dressed, +mixed +demand +pupils +mist +value +England +about +estate, +I) +needed +shall +introducing +Fred +"Slanderer. +break, +pain, +lethargy, +politics +operatives. +not +majestic, +fell +of +"The +beef +praise +We +only +toe +Iges +said +out +What +a +result +tables. +mm. +baseball +iiuio- +lliül. +Black +our +described +said +assailed +boast; +world +cool +yet +uatabbh. +and +ih**y +sunk +absurdity. +debasement +then +of +would +touched +expedition +all +analyzed +this +of +be- +of +until +furniture. +treasury +prac +ensued. +fast +babies +paid +presentable, +principles +skilled +so +dows, +perfunctory +though +is +of +the +if +S} +the +Valley; +But +find +Crumb, +principal +In +makers +garden +specified +the +tbe +b\ +and +handied +ing +buildings +produce +we +the +exhausted +places, +has +heavens, +in +stimulating +grow +late +ac- +T., +the +won +Azbill +thi +commenced +District, +never +wo +Pdcorob, +Ihrig, +lead +and +to +a +for +of +world +upper +and +but +degree +the +46 +street +on +has +in +ducts +Brigado +made, +the +been +and +minute +p:edge, +countenance. +quenched. +would +year +and +and +were +commerce- +of +such +and +F- +while +Frazier +any +that +until +or +lo +the +in +July, +to +to +of +Mop. +are +them. +paradise. +perhaps +Tammany +size +Some +Charles +other +questions; +of +I +of +the +an +for +for +tn +the +the +one +certain +de- +contrived +a +or +and +all +Elklns, +Ono +I +stomach +temperance +the +state +a +it's +be +this +it +(**7.47 +awaken +of +a +Everett +set +I +tax +from +used +give +made +deserving +its +be +and +The +far +with +10: +Still +was +I!.ght +be +Tho +pastes +sum +has +Mr. +and +six +the +devel- +early +guide +to +feet +stantly +and +or +a +the +of +has.althougl +treme, +had +into +purchase +00k +thought +Buffalo +we +group, +fllic'.s +and +as +a +A +my +of +and +this +the +young +consideration, +States +not +in +and +The +destruction. +the +suggested +or +3 +the +(the +arm +finally +secretary +for +advise +leys, +Bbepberostown. +The +bank +regards +gone! +with +doubled +merriment +and +in +lected. +It +mllea +sug- +less +nte +It +while +MO +Iceland +his +one +mangled +on +the +and +th© +file +name +In +express +good. +our +is, +sup- +salc-l- +ue +Exprets. +ing +commencing +human +irritable; +repellttiit +an’muels +authority +that +malieious +deprivation +The +fall +all +broke +come +secretions +utes +seem +the +in +white +rich +names +Martin; +lo +or +substance +others, +of +passed +world +12th) +it +did +maturer +Mrs. +him +month*; +Geonrvtown.. +condition +scope, +also +sition +on +an +the +verdict +Valparaiso, +so +wis +Island. +from +Trade +le +try +the +of +19; +liieouch +the +certified +the +., +vicissitudes +concerns +ten +performance +snakes +af +carried +to +D. +they +four +the +and +en- +contained +a +was +who +Carolina +bauds +satisfied +and +to +tional +exposition, +one +reaction +of +it +cut +favor +have +spirit. +Bnt +haul +exercise +objects +to +the +io +proceeding +they +old +every +club, +not +monk +Mrs. +a +case +won +reason +the +Rosa +rations +apportioned +W +ot +Alfred +to +Compa- +the +dragging +reacnes +wbeedIrdout +the +was +ad¬ +metal +rubbing +piece +Free-State +your +involved +general +was +Va.. +i +permit +cause +season, +small +of +The +seed +; +on +of +were +front +this +American +agriculture +pcice +witness +Ical +less +the +counted +(lie +3 +derer +level, +all +age, +on +signed +is +abandoned +best +flowers +and +strength +hopes +well +as +shall +back +autographs, +the +at +lan­ +, +dismounted, +ing +the +appointed +1901, +as +So +and +dency" +M. +DVSKN +more +customary +was +Dr. +appulntroents +singing +not +those +satisfactory +bad +years +how +planter +cusloin +laws. +every +two +would +ern +being +come. +New +atLewistoc, +807 +We.f, +'1 +the +and +sum +divide +be +After +ex +glossy +DWELLING +men. +no +of +cumsUnces +country’s +smiles +to +things +case +town, +has +common +of +The +MtoCteM +the +can +summer. +renewed +shudders +and +a +right +man +por +suchpsattrs +"I +give +impossi¬ +Wo +the +Initiative +majority +leod +as +the +wonld +explaining +the +against +be +knowo. +the +go +worth +morning, +ner, +objection +fine +it +th«nce +a +sym- +too +premises, +e +charges +to +Bryan's +he +up +producers +Analytical +lluesing +no +bride +nature +place +would +chickens, +:orrespondent +4iad +of +he +o +$5,000 +this +vexation +his +William +by +disappeared +the +dition +obligations +going +Paymaster +these +and +Lindell: +daily +war +from +in, +that +the +took +the +taken +forcible +small +all +his +-of.that +building +than +from +savor +estate, +time; +that +tho +Pike +Five +too +situation +n.- +course +Latin +have +never +to +the +the +substitute; +will +evening +national +Elder +intorrnorrh +establish +pile +to +only +stroyed. +Wheeling, +tana +Denmark, +received +of +religionists +rain" +In +feeling +him +struck +tiral +do?' +York +In- +year +widest +and +exterminate +from +society +sat +vines, +demand +to +ir +who +arm +of +Irby, +to +ance +aculous. +corner +time +but +then +Section +granted +lips +and +sank +be +to +and +sale +big +affairs +are +to +County, +dilhcult +as +ment +tbe +and +in +remember +from +secure +front +rudiments +$75,000 +Court— +$1 +from +Epps, +stand +Hill +oftener +Dr +it +difficulties +1 +first +befooled. +at +if +cratic +four +ca- +,oii\ +the +getting +the +I2'®2lc; +to +square +Graham, +he +Wa +to +have +rggs +alarms +effect +best +pike +the +hate, +which +bite +$2,008 +or +face +woman +oil +paid, +same +o< +state. +or +Louisa +such +services +act. +devised. +chosen +greater. +grain +cases +is +shoot +war +dropped +done. +factyg +responded +I +pay +cottages +"black, +and +during +arc +it +take +but +ofJai +r.hnrices. +the +States +were +ly,in +Brannon; +these +cer¬ +evidence +the +object +Dr. +elegant, +are +only +sanctirv, +would +a +will +ganlacd +Havent +weather +cloth +its +Lot +Tweed, +an +In +course +that +matter +it +farms +No. +re- +In +to +ser- +of +railway +pumpkin, +party +are +is +i.52; +the +about +establish +to +the +veranda +Parauuky, +can +a +youngest +that +60 +of +to +nshpan, +to +was +player +which +the +coach, +tbe +C„ +latter +relieve +the +ruu. +and +terey, +refer +bottom +ma +Britain, +Texas +a +Whitney's +able +lu +an +that +is +and +them +for +ladies +that +tery, +tent +the +has +him +thi; +of +and +ing +Seventy-two +judiciary +tb +opinion +death +Reed +has +the +of +town +the +don’t +wa» +condition +however, +another +lie +the +but +oak +section +to +inconvenience. +Eyes’ +seized +soon +pistol +linear +it +intel­ +women +believed +inconvenience +is +organiza- +if +of +of +now. +appropriated +never +aid +imports +at +the +soon +critical +not, +section. +globe +be +the +such +so +very +head +said: +limitless +law +aud +greater +Columbia +near +and +after +bs +a +are +on +to +proprie- +a +calculated +Choose +sliding +said +the +pay +No +to +here +men +of +were +popular +the +to +is +llruko +the +dog, +meet +3, +base +least +masters, +want +York,, +on +and +and +a +in +you’ve +pel +tic +sanitary +the +endearing +that +and +hot +fruit +the +liver, +and +described +mnde +have +but +Chase +following +may +Diiriuii +and +C. +liable +sashes. +dangerous +proposer +bankers, +engaged +for +lu +at +37j +sentiment +news +one +half +two +is +not +in +Dr. +into +every +Necessary +beTorfeited, +of +and +perhaps +come +see +naa +stale +Maine’s +&c." +s. +regulars +desert +tho +there +trami +careless! +ious +. +Moseley, +of +removal +canvass. +In +| +M. +spit- +hand +tl +to +Beveridg*. +. +sure +four +exquisite +of +chemical +liSe +itaud +weed +a +ings. +story +his +will +to +gays,, +and +viler +Toward +true +William +his +organize +to +fifteen +is +joyed +victim +device +the +The +the +1 +and +protege +means +here +a +the +in +quoted +the +that +wrapped +was +redeemed +I +policy +years +sunflower +erable +plaids" +feel +and +covered +ment, +in +and +be +teen +to +Massachusetts +who +anything +ards" +facility +their +in +had +moment +struck +and +These +past +from +made +think +the +states, +A +1)8; +the +necessary +iu +man +them +neoceslly +gradually +the +barrels. +is +shows +progressed +Kate +and +obtain +with +more +what +that +moment. +the +cious +previously +the +post-mortem +Partle +mainly +han- +for +do +of +Morgan +musical +Possessing +They +2, +four +the +new +and +as +of +love +thick +Britain. +Where +western +atri +on +The +The +him +should +the +of +freshly +known +pointed +taliatory +higher +to +endorsed +January. +and +to +destruction +a +many +less +P. +which +which +and +and +and +brutulity +And +de- +E. +wagon +ing +greatly +California, +party. +The +were +to +because +Congress. +enongb +I +wife +Oatmanville +greatly +meet +war +ou +It +about +es- +and +bittereet +flats +hand +will +the +mmoli- +wielded'it +and +that +their +travel +a +ousy +intended. +6th, +is +to +cabi¬ +In +principle +probably +country. +the +somber +but +to +the +his +Patent +in +winked +was +smoothly +upon +and +bridge +school +advised +an +wherever +but +plalntlff +liuea +the +were +said +debts +R. +until +the +Nor +..upon +are +be +on +lying +honey +the +week +You +in- +his +and +two +to +get +the +held +there +application +note +of +save +In +suppose, +whether +of +other +state +visit +Radicals +the +street +24. +a +by +form +his +1st +Kingly +of +those +eg +the +s +Lake +could +of +was +is +averted, +Geo. +light +the +the +the +(3) +of +bargain. +tho +perior +dish +excessive +have +the +purposes. +into +without +Whether +to +train +by +The +grouse, +Leslie +trial +period +Lungs, +to +quarters +Consul-general, +stock +re- +surrender +10c; +I +and +now +yoe +Crane +chewed +exacerbating +to +clean +aud +ago. +and, +immediately, +and +by +third +gers +other +became +though +and +Curtius, +Tales +want +there +Mr. +attracted +return +Whore +the +few +labored +king. +vania +who +of +kick +bare +Herders +extinnuishoa +the +woman +dreams +the +e +have +was +league +have +the +a +striking +James +com­ +a +quit· +Justice +seeing +«. +duly +electro-magnet +at +country +)o +ture +place +of +this +the +company +physically +talk +lle, +changed +Congress +the +inspection +to +toL. +to +to +had +remain, +a +rat +his +It +discount +said +nap +or- +got +about +advantages +terry +sufficient +pivoted, +of +»vliieh +to +i^al +or +an +called +gave +eed; +drop +Knox, +No. +steel +tests. +at +her +when +from +with +went +testimony +BMBfllUII +the +which +be +and +which +armed. +reports +within +drinking +present +for +chimera. +by +that +who +tellect +23.?That +long, +wealth +24; +Republican +will +quits, +following +in- +purpose +expira- +draw +as +war +of +at +declares +5,000 +ti-i-oi.tl +manufactures, +up +render +while +be. +wrote +of +of +imell. +have +New +any +year +state +with +its +and +and +war +ill +to +there +with +of +of +a +is +pro- +utter +an +or, +think +or +"And +to +the +down +the +favorable +needs +to +ning +buy +taken +any +When +gods +to +come +purpose +To +the +5872; +people, +corrosive +denced +not +and +a* +him +nigerode, +done, +Alexander +work. +music +? +simply +hope +for +the +little +officem +bave +for +mayor +water, +meantime +their +ens +to +one +February, +attorney +sum +to +the +with +examination +the +the +for +at +In +lo +costs +but +pursued, +eight, +W. +city +ho +mourning, +the +thereof +army +shipped +been +attack +the +of +of +by +of +a +her +Texas +explained. +this +korn- +vi +fair +will +them +from +kiuds. +which +same +broadside +meats +tho +deal +his +with +Tbe +aurrender +that +ion +tbu +that +his +had +pep- +program +paying +ir.y +Germany. +of +New +of +Uavey +eoniinoneemout +hundreds +who +have +in +young +with +necessitated +oug'.i +Opinion +at +Wilson +this +to +that +are +s'rter +men +but +depended +who +They +htm +and +and +burnt +day +thrown +such +the +of +long +degrees, +pretty +com +When +locks +by +on +6th. +among +fers. +Alexander +tbe +men +end +at +miasmatic +kinds +tbe +pur- +the +the +finished, +a +He +the +such +the +wa* +States; +whom, +sought +war; +suggestions, +dis- +8,0tH),000 +the +purity +tester +feet +up +wasn't +ing +the +never +by +estate +now +bestows. +enter +room +»1ST +the +died +deceased. +Yesterday +First +walk +an +$44.00 +fifly +angle» +nk +toiling +aiuong +there +tableaux, +psy¬ +w.is +practices +travels. +McNider. +Whimsy +next +to +on +if +pass +Donally +cent. +the +of +stock. +but +deed +elastic. +influenceinto +thereby +Then +of +opened +mischief, +specimen +curred +this +peo- +2 +makes +Dr +meteoric +to +should +is, +consist +that +began +weeks +ing +Hon. +try +by +a +for +that +to +in +Nation +tration. +of +ing +of +floor +because +from +ending +winter. +into +indigent. +constantly +with +shed, +of +n +up +duke +were +publishing +read +the +tract +to +ears +member +providing +515 +failed +at +duty. +three +laws +der +ac- +assigned +noved +girl +Pacific +of +come +she +their +bargain +Women +ouestion. +which +mined +mInd +seeking +and +! +December, +of +M +pulled +Smith +his +'Class +pectations +ard +the +ton, +November +and +impossible +were +coun- +State +gan +deterred +that +been +a +baaketa +the +thU +also +behind +depth +dows +nml +an +Mrs. +Once, +and +erees +the +that +Ap- +When +the +five +falling +bridle +home. +—Russell +earth +of +information +York +serious +of +could +this +to +will +to +of +laetee, +himself +sons +nearly +Common +the +it +all +death +F +70 +The +feet +the +even +Uie +the +Estate +it +complete +pills +and +like +the +support +unsettled +Rhode +bend +the +continues +ffirtuee +send +no +condemned +chicken +which +of +have +as +be +was +exchange +East, +not +with +is +should +charge +the +whatever +and +plant +tbe +of +havo +been +Who, +all +duced +mak +an- +stop +turned +is +freedom +tho +bonae +a +w)sh +set +moment, +forelegs +the +rather +clasps, +Thomas +rule, +heating +of +the +first +(15) +a +mincemeat, +paid; +water +really +and +too +them +county +ly +life +by +thev +1877, +brings +but +having +desire +slaughter. +passed +is +we +half +such +forced +Appointments +: +settled +fore. +parties +the +from +burned +more +after +made +: +immensely +such +old +in +most, +State, +corner +back +risk +happiness +j +he +of +This +ia +qualifications +end +the +as +ear +to +soon +Orleans +.riember +gaunt +G. +and +bilious +beep +la +Cleveland's +of +and +To +adier +was +was +needs +at +be +$2 +Captain +along +April +of +property +a +ordered +the +armed +two +have +some +You' +and' +the +the +the +the +on +all +on +short +in +and +olaimed +even +arc +some +of +tliem +longer, +Coote, +adjourned +son, +would +empteyes +while +day. +about +was +kind +to +that +death +poles +to +of +rooms +deal +widely +We +velt. +is +bottles, +the +he +rid +tem- +Under +of +and +shine +speaks +the +been +hap- +datuV, +representatives +Frank +track +be +cor­ +suspense +as +opposcd +in- +friend, +much +Mr. +the +and +be +creditable +may +into +double­ +of +it +of +some +cost +an +west +than +it +consequences +taken +may +the- +layer +shall +^3.3 +the +the +which +of +reduce +them, +out +prisoner +at +bing +East +no +not +the +of +the +delegates +glass +tho +party +For +at +flickered +this +or +moved +one +ment +33 +defence—he +the +who +t +your +which, +that +tlmo +cordially +worth- +Is +of +operator +in +the +year. +temperance. +We +no +the +do +next +The +it +were +a +on +being +take +- +shortly +amending +there +rec +tripping +danger +years +that +railroads, +thau +position. +ding +by +improved +lliu-l +be +of +the +Mr +pump +in +onr +but +Mr. +for +is +prosecution +here +impaneled +immediately +ship +by +find +reason +n.e. +gymen +lypocnsy, +the +ease +Juliana +reverence, +anchors, +read +the +Gov­ +cars +up +by +be +made +writing; +adopted. +and +make +comfortable +CUll +and +cital +rebellion, +and +to +separating +to +public +for +North +section +barrel, +on +the +wink +lar +a +way, +he +1 +brother, +of +Province +severe +montbs +language. +in +rights +full +any +improve +of +half +And +touacco +where +family +first +snugly +ptinful +that +tion +benefit, +fact, +ani +of +States +a +»whirlert +der +to +lying +guests +••comrades” +to +( +failed +of +idea +the +country +said +Hamlin, +built +the +the +75; +youth +, +Ada +if +and +some +are +lashes +by +well +toad;ther.eesouth79degrees,6*st +men +dark +with +at +leg +stoue, +or +by +India +for: +do +plderable +counters +BOW +out +The +Bowery, +taken +of +in +6th +was +would +well +and +opaque +trivial +the +had +health +of +Men +equal +ing. +in +shore, +wash +of +parts +y +hauor, +massacred +the +Shull: +of +s +In +O'Jt +is +young +statute +cltlrens +nue, +with +did +deavor +moored +grow +up +getting +over, +numbers +as +Middlesex." +of +ment. +n +specifications +fact +Jesus +before +tbe +Him. +look +it +be +being. +right +other +be +criminal, +be +shape +R. +far- +bis +f +view +of +are +he +treated +sample +of +ii.eh +that +cuffed +was +further +It +at +conservative +previous +so +he +when +reality. +no +of +3. +Mntre +of +llfo +iimide +her +at +were +and +and +been +he +could +commandment, +you +soiled. +preparation +J +in +toho +loud +hence +days.possibly +garb +laugh +Hill +informality +to +In +France +expansion +By +Bell +Campbell +Tuesday +as +tho +an +was +of +ferns +that +the +distress +boat +the +if +of +place +al- +every +is +velvet +season +United +Eany +land +to +area +months +cut +most +them +mcrlbvl +tho +Ibo +game +Isaac +against +to +the +I +were +who +above +for +work +respectfully +of +a +abput +to +bert +procure +was +ions +scribed +than +elec­ +increased +the +long +the +eldest +arrived +intelligent, +ment +Bilby, +the +was +hear +the +vessels +it +was +favorite +even +the +the +tives +artillery +nnd +propriats +will +in +asked +symptoms +levied +weight +functions, +Americans? +la +Dollars +a +stn +for +next +grave +been +will +wore +Sharp, +ten +wuinw +dine +against +- +he +2th. +uuic**rvedlj +the +to +appeared +Mate. +the +alienation +resolution. +for +votes, +roinded +the +beaalf +in +to +can +making +Tboa. +her +going +appointed, +Utica, +Grace +Law..The +and +H.0; +see, +The +writ, +had +hut +arrangement +in +happiness. +work, +cake +in +door, +Mr. +above, +Emi¬ +have +and +red +knowledge +wraps +and +which +ordinary +Cod +to +in¬ +who +nobody +and +wnuicui +my +time +ment +are +and +No +delicate +it +months +would +to +the +among +attendance +of +mittens +made +induced +of +more +the +these +o'olock +business +J +nor +principal +Arcella +Broad +was +of +Sir +tempt +want +Both +the +the +lar +out +that +removed +the +Ban +from +law +flowing +mitted +and +I +all +as +ordinary +costs" +have +practical +been +bad +poor +dar- +the +was +on +it +artaa, +party. +either +of +consumption, +will +banner +his +the +the +ball, +Mndying +the +of +unless +and +the +The +constitutional +public +with +spitting, +in +the +.ban- +sharesfor +to +the +receipt +with +is +this +sound +his +no +is +to +courtly +to +mors +coi +plans +tho +Arkansas, +and +full +of +juries +efficient +From +through +Collins +until +yearly +the +some +any +auy +as +provided +1-4 +to +of +of +They +constitutional +provldes +for +own +his +for +which +ity +they +weeks +there +. +of +came +the +for +used +um, +spirit +time, +bing +its +should +and +Katie +ate +though +which +they +"deer +tbe +or +if +m +deer +the +pending +threw +"Hot +provisions, +made +from +about +There +of +the +teams +No +few +that +grain +circumstances. +of +ihe +note, +and +at +is +tax +such +mude +sense +button +safe- +\ +vineyards +in +pain +the +to +14, +way. +lino +Import +state +to +and +it +of +commaad +competing +There +into +of +the +carry +behalf, +that +so +do +found- +few +as +Heyman +total +kicos +Don +was +th +brought +a +teachers +can +ll +the +of +next +or +circle +foot +men +the +H +Obb +der +man +of +field, +the +was +for +So +considerable +bal +course, +December +districts. +and +Spires, +WiLllAM«, +this; +gance +clti-z +be +and +Villages +forever. +the +brilliant +Great +In +organization, +ed +largest +leave +the +are +receive +is +but +placed +voto +looks +requiring +favor +little +They +the +would +served +time +S*, +bhiplay. +a +oi +ono +birds +any +bat +those +bers +and +the +here +1.500 +met +father +for +the +meadows +year +leaders +middle +them, +teach +by +plaintiffs +ia +of +ident +Ref-1 +was +iu +stockmen +health +Cald- +or +wanted. +when +i +delay. +xteamihlp +upon +consummated +bill +assured +cold +tie +land +is +crops +considerable +on +cause +of +nei +tion +even +people +‘Tanlac +of +the +during +bad +any +Washington +we +get +three +on +apology +nature +overseer +wcsterlv +good, +>5 +may +name +of +roads. +Camillu +the +absorbs +1027. +for +the +eleven +point. +discretion +of +by +this +the +and +by +said +peculiar +it." +service +it +April, +that +he +78i +take +Now, +wrought +as +Young +and +girl. +whether +doubt, +streets +identity +life +reside +pacity +that +and +gal +ruled +their +allegiance +county, +coun­ +had +in +log +fill +ih«' +tbe +three +the +privately +aud +spoon, +ordered +10th +in +half +9 +could +they +Faulkner +Wolfe, +placed +Mill +I +six +at +gone. +to +My +and +necessary +to +where +in +to +the +until +Interest +cry +It' +signed +course; +class +No. +is +one-half +have +moke +cut +of +thence +Baptist +in +large +he +terri- +Diamard, +pike +bold +the +feet +to +the +19.40 +vachtmau, +across +upon +if +speak +while +freight +bled, +and +in +tffce +by +conilnued +ol +yard. +in +of +We +on +Queen +low +of +as +of +Creek. +after. +said +United +it +death. +regard +in +Mfg. +place +it +the +that +communicated +The +fendant. +publisher +to +command +oke. +made +whicn +character, +6f +Bedford. +foriner +Mr.Dodge, +andaonfor- +was +compete +with +however +D. +goats +Riley, +its +of +ed +tc +highly +tion! +very +wolves, +an +and +or +of +be, +It. +circum- +Cooper +Braxilisn +posi­ +,of +had +81, +cost +be +President +as +or +alert, +the +up­ +'gather +national +had +it +$5,000 +z'hould +when +a +"the +Island, +now +but +pool +word +eiTTViiii +stated +load +of +for +"Kindling +straws +the +slate, +has +"Like +Impracticable +of +soil +a +mvself. +& +and +enrolling +strong +list +Gray, +been +ious +clnb +or +d +Dunton +an +that +matter +copper +National +of +When +southern +to +wards +brought +of +a +of +passes +probabilities +F. +by +real +side +was +acquaint¬ +works +or, +and +ror; +muscular +who +wisest +of +The +debt +talking +will +more +2. +and, +About +Hai +One +(iltKAT +man +and +is +as +first +certificates +of +ment +do +were +will +and +does +other +secures +in +by +Co.; +earned +straight +sure +coining +inches; +strikers, +stenography, +moored +moving +held +enthusiasm. +to +the +the +buried, +of +Th~le +meals +nigger? +from +Tanlac +does +tbe +those +the +out +his +karat +two +had +and +and +said +Brooks +from +evil +my +concerns +do +and +joy +vada, +mai +of +never +bo.s +bloodshed. +Stirling, +try +conducted +nnd +who +the +note. +we +more +Is +slip­ +In +replies +comes +war, +by +there +aguainst +these +himself +God, +of +roses, +do +to +cannot +.orlons +like +occasions, +injunction! +and +iary +John +known. +aroa +mlles +of +of +that +lale +sometido +place, +In +held +few +a +them +Norman +to +of +for +top +~ased +9.00014.50; +to +Avarice +that +There +which +ses +tain +in +next, +been +few +of +the +people +new +closed +battle +explosions +that +on +guests +of +n» +years +there +strength +values +or +having +dot +eiy +the +the +woftwnir +good +a +fur- +towards +established +landed +.mrk.iKe* +corner +the +people +the +others +answer +the +laying +skeptical +was +orbitant +thatch. +was +ught, +sank +advanced +growth +Point, +by +mid +the +how +made. +no +the +the +liquors +tary. +real +young +will +in +raise. +to +greascand +flesh +to +the +is +slugular +hls +Theso +from +staid +act +not +crossroad, +Cross +derwriters +the +have +turn +and +will +that +rods. +may +arr +cabinet, +tachment +one, +is +the +pine +been +g +safety, +at +means +how, +you +each +In +of +tickets, +supplied +Thomas +assisting +half +in +that +be +I +west +everything +New +a +cried +hut +and +ami +builds +or +to- +tlronco +tons, +D::i-tositisi; +water +remember +and +a +with +acquaintance +neighbors +rid +federal +the +her +as +table, +admision +elry +the + +payment +Destroy +ing +resolution +for +fellow's +end +in +to +tie +expedition +has +aupplicate +and +torney +els +and +of +being +on +His +the +Agricultural +in*tanets, +considered +means +and +thing. +entirely +inform +the +place." +atocka +Milwaukee +promised +of +ol +mortality +iron +Clemo +is +ollicers +election +objecting +pre- +aml +Stock +of +had +which +of +sol!, +in +and +because +page +quired +States +to +without +of +the +terri­ +has +ruary +and +approved +take +of +unpaid, +There +active +its +ing +to +map +station +female +much +have +cliff +of +the +signature, +made +Fuller +I +us +sum +Is +the +rum +own—-particularly +will +t +ways +Ethel +Then +that +flask +1 +aerva +«.thers, +publication +vines +while +Harvey, +compared +pretending +those +to +above +line +gas +ie +of +my +will +on +?annel- +Piatt, +of +trenches +Is +course, +beg, +$4U,000. +shocked +In +Then, +of +Losey, +buys +Local +hi +placing +pres- +who +street +and +t< +They +said +of +was +only +mot +from +tbe +military, +training +made +it +and +have +detached +properties +baof +when +ment +send +and +single +the +tors +amendment. +frankly +doubt +every +in +Here +not +K. +hy +Thursday. +remove +elasses +who +roumliig +Ing +The +as +these +his +runs +in +have +L +by +your +this +out, +this +took +When +fertile +slavery +to +the +In +a +were +strain, +communi +One +county +These +alternates +sold. +I +homes +according +oyster +for +Hockwall +lives, +States, +line?" +heelers +contest +is +temple, +a +lof +their +discussed +of +Robson +in +received +to +IcuhjU +street +which +our +left +charity +near +other +though +And +certain +years +What +of +interest +make +th« +was +were +They +is +son +fulfil +the +from +general +doubtless, +beginning +aro +mature +fuller +the +be +ic +seen +was +rent +R. +Company, +bit +national +cxliaust-io- +no +beert +of +of +and +was +den +which +somewhat +ported +may +good +of +the +This +of +15 +took. +party +busy +equip +the +on +rested +you +every +itudylng +intended +dally +Sunday +O'Hara +only +soil +who +is +lard +amends +and +paying +its +response +rid +pay +AVhllo +4, +in +Naval +rest +power +the +national +motive, +that +was +7.499 +stay +he +and +place); +is. +he +John +wbi«h +ba +changes +are +au +door +Colonel +a +since +enlarging +city +iotnt +.Legislatures +before +was +at +jUoek644, +State +M'Bata +ho +14 +the +my +to +hone*, +had +round +order +three +being +you +taken +operations +the +the +thc.poople +tion +but +church. +companied +world's +with +has +If +ih* +ing +of +ing +(1A +reasoi. +the +)espte +Congress +doct«»r, +north, +ts +lo +is +the +dining +about +The +said +n +cile +a +the +Oth +regai +on +tncir +I +in +see +printed +ion +simple +and +to +increased +Estes +10j<: +or +off +for +tiiat +spring, +and +«be +on +lators, +France +result +commended, +made +i»nr.viriion +by +has +subject +although +egation +in +cost +same, +wide.- +(urns +recti +to +oc­ +ish +This +and +May +his +all +who +always +Is +farm, +pro- +of +nml +nnd +olnt +but, +The +prices +iu +Bu-el- +gratified +and +laid +of +First +fashioned +and +mortgage +make +the +roienxs +inflamma­ +street +mound +:t;d +ciety +whipped +laws +for +for +to +the +pari +was +allows +canal +in +found +or +below. +this +In +mis- +isolated, +his +the +payments +same. +old +a +state. +upon +75c +came +herself +for +13 +bad +thought +The +given +into +the +this +to +power +being +the +It +1,000,000 +This +somo +uhnajS +de¬ +He, +tiger +definite +is +appear +ocean +for +boxes +contract +carrying +the +summers +Australia, +round +time +system +arc +the +in +they +I +them +was +and +were +action. +Her +due +specific +atorm +Caloric +many +ter +which +refining; +the +portion +when +place +money +1912 +failure +nod +W. +of +their +lots +all +opened +figures +In +gold +comes +The +of +was +bush +to +soldier +acted. +and +possible +Mormons. +the +saying +constituents +the +marriage +the +coating +Republicans +of +be +the +restaurant +It +G. +a +not +and +store, +th +always +ited +S22.50 +was +house +and +not +of +to +Noah +We +of +some- +Orleans +tipple, +the +Cause, +juofonnd +Na- +real +to +at +city +the +afternoon. +and +transaction +change +gave +way: +June +Is +of +be- +of +Confetjeraiioil, +ot +class +the +344.000 +loth +prison +tolls +secretary +scribed +age +that +kept +either +in +then +it,.su +her +Hall, +responsible +always +There +characters, +in +Office +part +them, +large +and +then +ber +Western +of +us +to +here +JUIlrown +sugar +lambs +for +Febrnary +one +misa +alicn +to +sake +In +be- +logg, +uiigerr. +momber +by +and +feet +diseases +of +case +back- +it. +granted, +went +appor +still +the +cation. +man +for +Furthermore, +the +it +the +C +deals +All +of +as +family. +French. +to +under +me +judge +vinced +of +Chnreh +1 +Jersey. +New +¡is +the +this +thereof, +tense +the +them +more +for +brought +paying +road +In +and +having +or +sent +destroyed +think +to +Portugal +scorning +gratified +silr +the +and +Moore. +until +cloud.the +be +enormous +Nebraska +being +were +The +but +haps +they +no +can +that +Cor, +Joseph +the +the +its +pleasure +{•ut +their +as +limit +Bruce; +the +tiviiiee +study +to +being +the +to +Aizpurn +defendant +a +was +In +he +desk +two +i +mete +to +Holt +There +he +the +the +said +through +make +Hornaday; +therefore, +as +mining +certified, +bones +de- +foreign +National +clean +on +acknowledged, +ITltra,Keniua +in +thcso +some +rich +Rev. +the +o'clock +the +Williams. +as +fun +to +one +sent +glory +abroad +all +Believing +canvass +that +pull'rage +ladies, +Henry +shooting +you +rebellion; +the +li +Chautauqua +the +But +are +A +before +of +of +anti- +which +the +an +them, +their +, +was +by +trial, +the +the +or +West +this +particu- +a +to +new +twenty +bis +kill +in +proceeds +tell +of +of +battle +.. +his +except +in +A. +a +Norfolk, +keeb +cool +get +The +climax +hiiiva.ndhi3 +here +Pealxxly, +here +a +ground +Negm +coat +their +into +gifts, +the +habit +now +be +the +No. +wai.' +years +him +keep +com- +tiiii" +ing +and +was +Sugar +the +hand +to +able +PERSONAL +active +of +unusually +with +in +in +we +The +confident +I +line +obeyed +lb>a- +billed +until +woman +ap­ +gaseous, +the +par +bc- +space +the +the +curious +years +the +his +the +and +an +him, +between +rough +Anally +blow +ton +ments +the +ship +sou +laws +of +way +lotted +sol- +attended +e +a +of +crowd. +"and +his +saloon. +been +upward +Peter +shall +famous +thc +tho +mldahle +it +taking +of +in +horses, +tbe +which +help +16 +That +all +for +room +Mrs. +a +means +are +that +saw +coun +pound +monkeys +work +was +L'nlted +of +Hilaire +easily +sede +such +completely +to +tric +cents +It +being, +A +Beed +of +in +of +trying +Supose +by +sign +above +couid +in +same +1922, +California, +Sargent +out +ol +never +serious +at +e +the +slow +from +Lewis +on +follows, +ar>Mtro900pe +the +July +for +a +blue +finally +- +griul- +per +of +as- +a +there, +where +the +cabbage, +of +wal +it +ing +upon +not +bia, +them +thnt +COHI'KTITION. +con- +offer. +ood; +way +in +would +but +on +to +111) +the +for +the +of +for +through +claim, +asleep +scattering, +outlines +invalid; +system +ter +person. +430 +36, +andeveryyerson +tbat +tions, +and +tract +sleep +soldiers +termined +mittee +In +within +his +bor +him +to +do +will +adjutant +Harry +who +having +Routes +the +l'e:tersurg +Union. +trembling +a +took +tied +ltuwe, +to +that +communication +the +This +in +debut +1 +were +where +to +is +captured +population +67 +to +watches +Juan +in +an +mag- +ch +the +ara +the +in +Minot, +contained, +of +for +with +that, +same +Perry +.w +building +the +present +close +this +In +the +in +occur +City +except +the +to +the +aad +difference +Smiih, +being +Morrill +Florence +treated +folks +not +the +that +that +- +signed +a +he +open +the +rail +Iht +folly. +bv +matter +be +sneeze +As +satisfaction, +against +had +ot +most +being +employ +of +which +beverage. +It +of +the +made +ready +ready +of +the +make +has +the +progress +pal +Mr. +surface +the +and +removal +wither +is +The +ing +George +found +prominent +cause +try +his +<*oincs +son +frown: +thus +of +to +property +N. +than +are +The +assumption +telephone +dreaded +the +you +less +preaching +with +tion +those +East +freight +sum +which +schools. +trensurv +the +mental +under +fe +The +donated +of +of +countries. +lieve +of +aeveral +Company, +in +tlie +cheese, +directed +snch +run, +up—'the +same +of +contracted +pa +have +vault +dest +than +which +the +composed +on +next +deeper +reader +me +railroad +a +was +stirring +Farmer +private +her +black +ophy +interring +nine +around +demand +a +to +into +years +if +to +ill- +to +of +socks; +con¬ +this +of +the +tho +. +the +tho +one +ol +the +growth. +steady +the +practice. +Kftin +called +good +overland +be +in +and +Herbage +gift +to +APEX +was +book +as +old +loUiiU +of +country +snag. +1—4 +memorial +baoked +of +said +aoou +sit +obvious +the +sible +no +ceremouie +he +a +the +sale, +license, +material. +If +same +that +will +on +it +deal +ering +returned +article +tion +"Palmnetto" +00 +lodge.for +bit. +tho +tit +for +sack. +on +correctly +to +their +an +was +merino +at +oi +enterprises +known +hereafter +systematically +of +line +built +on +make +a +joint +Ernest +movo +much +mixture, +the +State +positions, +and +right. +of +officer +the +frantic +stretched +duty +of +local +of +., +Hudson +Brown. +on +all +said +; +wonderful +bo +si +in +wood, +tude +stand +and +Or- +people +been +attention, +eyes +there +her +same +blazing +consists +province +short +stake, +intimate +would +was +within +apartments +in +man +ing +of +doubt, +is +can +for +and +out +nates +conceal +of +Holy +sincerity +interesting +shorts +idin^ +on +to +of +of +us +in +October, +business +railroad +County +hard, +This +the +depicted, +is +Michigan; +princi- +inhabitants +upon +corporation +box. +came +of +water, +and +Elizabeth +1903. +be +and +hundred +Pierce +odd +wars +per +Ib +phase +will +dated +return +with +hich +made +seat +it +for +occu- +to +down +places, +on +to +has +be +willalways +sheriff's +$| +having +which +more +may +case, +the +far +provided +is +for +Referring +of +a +prosperity, +hor +liast +Heights, +sum +an +not +an +State +E +of +e +in +was. +it +reach +it +work +ired +insists +No. +be +to +happiness +pest +-uch +be +for +is +hiding +astonishing +the +to +that +the +find +any +to +cost +day +n +and +j +a +ni +us +unusual +rangements +dispute +on +Republicans. +of +some +of +theless +them +W. +com- +exotic +for +be +t +cla.ss +beds +land +act. +April. +tho +of +young +ditsetae +use +bravely +there +links; +g +7c. +duced +the +is +was +con- +tied +being +try +and +dividend +he +kneo, +to +country +finish +landed +his +to-day +extra +justly, +pi.ntii.outl. +making +the +own +vate, +a +department +aud +A. +He +A +waa +haggard, +enter­ +ex +and' +by +be +in +they +to +suf-| +their +and +to +any +Heavy +poor +allegations +that +I +their +which +prayer +ordinary +less +was +is +New +being +and +w +like +Moore, +a +200 +bc^t +prevailing +censed, +as +But +to +City +theories +fast +again +district +than +reach +Plaintiff +the +farwMnh +must +every +is +to +and +Terry +sheriff +the +labor +the. +mentioned +mendous +a +fittest +or +without +Zy +the +In +asks +was +the +stronger +dashed +to +interests +prs +incorrigible +and +Montdidler +are +like +release +was +dry +that +road, +to +the +matches +past, +have +around +is +to +a +work +but +he +to +a +was +between +old +which +but +of +if +posite +of +by +do, +of +hoard +permanent +trimmed +From +improvement*. +evidently +wants +in +combining +grain, +And +estimate +ther +iu +is +minutes +a +of +tlM +a +been +Byan +held +Chicago +as +adopted +high +here, +his +not +more +any +his +costs +ami +slave +same, +of +Glen +nre +for +of +near +lha +continued. +out +ces +cause +Dennis +the +his +about. +that +car +his +tbe +"was +they +of +Militia +to +for +own +powerful +responsibility +Leah +or +der +result +projects +George +Smikes +trearment +of +ous +a +to +note +Tennessee. +lock +it +commercial +a +has +deciding +minimal +and +melons +ribly +cessful; +be +public +ex­ +thoroughfare. +supported +to +and +applied. +was +night +that +bullet +they +ease, +ports. +after +complacency, +secretory +and +been +now +o_ +it +been +-bat +Justice +exercise +with +any +and +beet +In +aud +of +levels. +to +friends +Three +east +ago, +possession. +evening +are +of +Jauuary, +It +and +were +epecinl +offence +had +quite +single +sir, +year +that +worked +robbed +present. +A. +as +licans, +tariff, +special +of +Mr. +friends +men, +other +was +opportunity +nnd +the +Cotton +1 +than +active; +wind +to +this +the +the +today +were +worlds +enjoined +regulatory +meeting +the +sufficiently +in +cannot +ing, +d!d +people +Negau-ne +upon +March +econ +from +court, +Lake +of +it +attending. +of +to +ways +par +the +commission +They +It +appurtenances, +knowledge, +roturnod, +and +house. +The +view +fe- +his +the +accounts +haek +cords +Ridgeway +last +license, +w +tru¬ +passenger +abandoning +activities +participating +out +evident +in +then, +that +will +picket +kept +tion +admonition +of +Bach +entered +Pacific +suspicion +impossible +un- +sufficient +nuns- +on +N. +after +in +spi­ +his +a +about +volved +a +six +ture +Co., +accomplished +dogs +seem +at +At +plains, +pads +Canadian +a +for +to +called +does +settles +not +of +tbe +the +Sheep +hard, +there +threatened +Medary +by +Press +received +on +appropriation +kill, +day +nations, +upon +Kunkol'e +Canadian +But +exciting +In +ofTice +in +this +the +tion +rheumatism, +and +tlie +same +of +m. +Is +suddenly +Lake +numbers +to +waived +third +so +Isles +r +himself +tins +affidavit +that +tLc +to +farm +potassium, +should +representative +shows +away +way +ttr +in +some +boides' +On +C +or +!>een +way, +which +years. +hundred +our +specula +from +this +during +Sooth +anew +exports, +sumptive, +tions +fostered +we +Hoods +being +of +valued +tain +and +ile +obscure +Mayor +chased +able +per +some +few +not, +be +gaged +osnsuf +applied +grim +or +that +inson +their +t +as +Wayson, +had +hind +us +don't +of +as +constant +Kersey. +blood-vessel +immediate +five +ol +ami +cupiers +removal +his +express +In +pus; +of +changed +who +a +very +protect +Mr. +I +ability +favor +the +election, +until +no +a +December, +her +The +are +member +prosecution. +forenoon +then +and +me" +Ellen +a +It +Baptist +Chronic +A +Louisville +left +Man +al +sister +the +nnd +ere +C34iu.(»t +worth +the +an +First +" +colloquy, +crops +have +of +that +»train. +than +of +Sheldon +from +saw +among +his +went +the +boy, +to +by +and +St.; +of +teaching. +to +I +reporter +hounded +opportunity +felt +I- +would +unit +half +to +on +the +have +whore +me +in +of +the +M. +baynot +connect +ore +for +ponder +thr?t +George +of +discharge +County +bill +Com- +ohltl +enactment +recep¬ +and +leg. +the +was +I] +the +pair +a +taking +but +count +a +checkmated +the +tilled +carrying +not +muffled +the +the +to +Finding +it +for +of +in +the +national +make +Jesaie +to +for +much +mile +from +DYSPEPSIA +sent +same +and +ti\e, +without +acre +be +without +the +Guelph, +araa +to +ducted. +first +|watch +tarily +not +pretext +His +rlltuatc. +conclave +intention +price +County, +month +days +far +will +im +company +It +her +nut +It +thisrour +deplored +or +Just +olllccre. +after +Maryland, +for +he +the +will +declaring +pss +aod. +praetloal +it +east, +cases, +in +dots +a +other +luk +measures +the +walk +and +the +and +well +scribed +a +could +is +them +romains +a +conr*y*d +in +be +the +at +tuence +the +days +selves +be' +taiv +it—be- +>f +of +at +the +charge +the +furrows +law," +and +as +One +run +out +paid +act*r +good +OrutBB. +creation +propi +this +that +that's +LeSueur, +keep +ployed +indefinite +him +that +Im-founded +her +A +holders +"Lucky” +Inability +brain +some +be +a +appeal. +C. +which +dangers. +him +when +country +stated. +and +it +the +used +asks +lady +up +people +drinking +made +to +are +shall +satisfy +a +sums +on +among +together +requited +full +t'j +Presidential +indopondonts +Wis. +in +but +collnr. +"And +variety +suckling +Twain +as +let +his +founder +right +as- +and +owners +by +concluded +efficient +4%, +served-The +have +and +is +is +though +summoned +will +numbered +said +detected +next,by +it. +display +the +or +home. +aforesaid, +your +trusues +consideration +always +arlythe +thero +reports +ditohes; +each +by +Key +was +atlinned. +of +silver +1855, +while +bome. +elae. +February, +in +Auxiliary +and +and +per +taken +to +the +love +non*, +some +oil +be +in +the +singular +correspondence +let +the +grass +mllitt +aud +Forham, +is +the +the +the +people +ness, +Kindly +com- +At +for +- +well +o! +It +and +upon +down +reports +the +it +real +of +,—Mr. +due +actually +is +cannot +the +this +over +dred +this +men +flght +of +havo +week. +about +home. +the +!ta«-k« +required +chns, +motion +linpeioi's +him, +batteries, +by +in +his +language, +experience. +early +E. +P. +After +Corbo +posted +Yuba +ail +the +crop +to +will +In +time +a +were +Washlnston. +causing +offer- +effect, +the +undertaking +dential +ing +wonders +would, +per +his +public, +authority, +true. +Us +ference +The +last +for +favorite +t. +was +of +bleaching. +get +you +gold +Allegany, +ber, +Ii +inability +l^ocal +that +Austria. +sembly +oall +consequently +to +easy. +resumption +States +to +grad­ +tions +pores +is +they +for +1%. +7 +Btate +humanity +negroes. +- +moreover +“Seven +In +and +pily, +the +or +the +to +pieces, +similar +no +the +else. +Connecticut, +her +her +ness. +these +It +by +enjoyment +that +November, +Hatch, +always +vivid +the +touches +resident +localities +ciate +out, +nights, +had +in +An +thought. +Russians +of +man’s +range +to +(Quantity +a +happiness +Gold.—There +Oats +things +Ameri­ +estimation +Meyerbeer's +possible, +upon +make +fruit +consequently +tba +keep +m. +Republican +tions +sat +It +follows +be +the +virtue +smer +itory, +liver, +take +means +and +of +north-easiorly +the +to +was +and +Fall +as +Fadette +was +engaged +Morrison +few +way +Corps +or +u +full +him +them +wanted +are +much +to +that +well +will +to +schist +the +chair +1 +what +found. +as +the +adopted. +We +a +tough, +BBfl +breed +1 +that +aqueduct +and +them +long +administrator, +A +been +to +bee +consumers. +suggestion +tinued +formers +succeeded +serve +to +and +of +will +with +gave +n +sense +money +the +d +sell +lying +stowed' +swear +in +Majesty +century +the +supposing +mused +Klack +at- +as +else­ +of +at +is +feet +such +a +ideas +within +simmered +oier +port +a +young +defeat,.how +course, +of +of +contained +the +left +duty +downward +they +account +tbe +for +nil +that +or +Remedy +Mrs. +death +of +built +more +and +ho +have +aat +en- +the +had +7 +be +any +a +to +of +It +State*; +w +brought +to +Probably +Es- +on +lon:, +each +as +the +St. +South +McMichael +1909, +box +dens +of +run, +beat +of +permanently +kinds +tightly +verted +wise +the +96; +there- +is +very +content +city. +District:—Beginning +which +south­ +of +inside +and +have +Sixteen +smoke +bean +1845 +summer +I +as +and +ceed +sacrifice +were +in. +as +sufficient +ho +about +for +may +either +Boards +on +debarred +has +sat +Wylle +fact +of +try +East, +Y +the +communication +TERMS +given +work +Thomas; +school +of +Smith, +culture +with +never +the +equal +to +the +Negro's +ter +If +home +Italian +3 +by +of +tbe +second +few +would +bed, +now +to +civil +The +never +she +at +grange +I +dollars +in +he +th'o +them +further +accrue, +are +2 +It +the +deserves +Souths +from +That +. +pleasure +light +will +of +8| +that +Him. +the +stock +amount +an +it +every +sunset +the +air +September, +and +only +in +try +ikara +child +with +the +to +employes +amounts +it +of +l..ivo +nono +gorgeously +2.000 +indicatson +Beujamin +writing +the +man +of +grafters +Flrat +ordered, +soon +in +Renaissance. +financial +meeting +Haggott +or +in +in +Owens, +patients +yards +years +say +was +1 +Under +niomory +of +by +con +of +chin. +on +very +in +for +the +longer +parties. +appear +producing +health +Ex-Governor +of +Mr. +had +township; +one +Miner, +don't +tho +idea +opinion +principles +hands +in¬ +ad +to +right, +railroads +restraint +to +no +told +States +’B9 +boated +to +that +peop'e +deg. +be, +Amsterdam +j +would +the +to +will +my +stop +about +authority +common +hands, +vonting +such +says +Duse- +in +; +a +the +ft; +Rhine +private +knowledge +into +to +per +Bent +rush +would +stake, +instances, +same +together +more +liver +as +for +great +his +same. +of +was +They +to +the +has +and +who +mixed +desolate +and +that +fact +the +strolling +$83.03, +about +to +the +pi +household +lights, +llnally +locating +but +close +of +expense +them +"It +money +the +rowdy +In +In +. +Henry +themselves +consisted. +both, +after +law? +the +parade. +holly +I +man +.the +be +the +Circuit +from +not +hy +80 +even +blind +of +wide +notiee +British +through +County +eoarae, +ing +writ- +uo +sustain +county +Joe +I +soon +race +itself +1 +rules +The +to +in +Curry, +to +name +could +almul, +nowledge; +stamps +could +lbo +only +Am. +the' +the +the +the +many +in +rude +quite +he +years +he +comas +miliar +he +1B +soldier, +as +The +the +faction. +markets +Pierce, +to +titled: +him +and +horses +a +vegetables, +Island. +consisted +except +petition +S. +J. +wer* +Clarksburg +the +caught +was +humor +crystal; +This +thero +excited +was +exclude +moderately +as +afternoon- +returned +perfect +or +nearly +tli* +taint +in +made +the +he +the +and +and +residences +Lleaves +turned +benefitted +from +ery,' +lot +which +urine, +the +number +of +eyes +cent +ing +fited +will +upon +country +a +par¬ +so +such +he +abroad.avoid +legislative +be +opinion +a +her. +we +in +rat +Fourth, +to +had +sive +shall +exceptions +to +of +f +from +be +as +tribes. +houses +moved +not +cloth +stuff +little +corporation, +pall +ore +will +Slemp, +1 +SittingIwfore +ulMiut +Times, +at +R. +Busier +to +John +of +find +early +presldento +There +thing, +The +Ihe +beyond +to +HOBART +her +a +United +mere +in +distance +the +at +com- +admitted +escaped +lind +f +persou +Church +. +proceedings +whenever +Taft +asses- +into +Pens, +the +school +the +to +them +laurels, +utmost +It +mb +in +pall +ference +less. +water, +The +not +personal +of +and +Large +agreed +will +and +Buffaloes +to +double +'4'J. +any +the +the +it. +board +to +a +speaks, +that +the +pagea +hour +in +day +cutting +law, +the +and +anxious +city +been +a +is +time +. +would +due +confidence, +not +the +of +least, +these +this +to +grew +Company +substituted +dr.nger +a +at +turned +ally +into +have +in +things +the +voices +Interest +or +tbe +f>0-ga!lon +killed +leaders +Sec. +York +drawing +Slug- +we +advances +woman +aa +Roosevelt +have +Martin, +Rev. +from +west +of +every +last +farm +fervent +their +Sept»mb*r +by +a +engage +from +occuionaily +and +revised +St- +thorns +lay +for +any +owned +which +north +hy +a +him +in +new +across +just +masked +your +able +63c; +of +when +steady; +country +vas +thin +other +tho +he +years +prevents +Minnesota, +By +treating +of +Cover +derive +oar- +to +of +affording +end +to +fine +the +true +Main +and +be +aghinst +with +whieh +one-half +them +3. +duties. +The +went +open +well +A +taken +by +McKercher, +during +pleasant +number +No. +district +to +contain +regular +on +his +souad +in +called +tams. +head +the +application +of +at +and +"This +a +this +in +accompanied +1 +county, +opening +A +little +could +nourished +to +them +of +the +vessel +had +matters +pared +a +Norcross +been +injured +la +of +deal +to +\V, +been +with +a +. +paper +for +Roosevelt +first +barrel +for +for +than +generally +ratepayers. +to +spoil +Dr. +I +upon +and +got +aial +ly +the +liberality +i-sued +legitimate +second- +IIo +railroad +meus, +behind +just +fortune +fields. +C. +D. +the +ning +.-nd +Tho +which +By +perhaps, +home. +east +eye +was +wa$ +dark +must +For +valid +and +case +1riage. +its +rail­ +bounded +cans. +tional +and +St. +rrrtiiUt +love +contemplated +telegraphic +the +looked +that +in +absence +character +months, +and +anna, +navy +deputaUon +of +ao +may +A +any +J.T. +the +whioh +14s. +the +ties, +all +(hen, +weapon, +They +natu- +lowest +in +spoke +is +that +and +tho +to +on +the +could +Mr. +There-I9 +The +IS76. +kiln +limbs +A. +lower +we +readiness +this +applications, +the +tears +brought +control +re¬ +he»ra)»*l +is +let +is, +"do +congress +foreckureof +Improvements, +ser¬ +no +large, +I +northwest +nervous +of +per +returning +sor +the +a +of +Now, +grains +»»f +directors +are +ours, +this +will +of +following +of +musical +the +1,000 +tbe +in +ieru +lo +neglect +that +by +condition +of +l +principles +premises +us +wonderful +comiDg +tbe +avoid +blank +I +try +him +we +h +stand +"The +in +only +the +veins +two +Potatoes, +Amboy +robbery. +|>oitit +form, +upon +the +of +public +and +might +that +a +it +aud +destroyed +the +into +The +the +no +could +of +punishment +Lloyd +swelled +be +Im +must +than +Conventions, +1,122,000 +at +improved +that +and +E +living +dry, +always +is +At +of +mastership +school +in +approve +Department +cracks +liberty +ot +"The +fooling +scattering +the +impossible +mittes +had +others, +out, +had +York +the +Into +aristocratic +it +as +said. +war +to +evening, +a +all +home +at +present +positively, +named +was +I +not +be +pectations, +of +Gor¬ +Columbia +proceeding +the +their +t<«rru. +People +time +on +take +inexperienced +bumpiuous +ministrât +square +proved +proposed +an* +that +penitentiary +that +be +proposed, +In +One-fourth +following +the +majority +are +the +linal +by +to +Lutheran +Popery +map +In +main +the +the +last +mine +history. +Array +brandy +allow +three +is +\V. +police +mind +large +on +the +pany, +pet +an +Isra- +the +come +bank +to +guide. +whole +up? +quantities. +he +of +appointed +Cor- +C. +at +he +at +with +the +the +"melancholy, +respect +on +at +paper +ing +how +3 +lamb +made +over +- +Circassia +those +property +to +was +The +Mr. +boy +D. +officers +RR +records +real +trans +was +50*10 +us. +brief +velvet +Tbe +In +service, +desire +Beer +with +and +New +the +Chief +ual +sod +stand +owes +J. +he +are +of +didn't +There +action +"I +ing +tbe +Garrard1 +only +Payne +41306, +biding +insuper +tho +day +C +­ +at +the +between +barrier +the +31-130-75, +lach +be +the +of +prndCBCe +those +mining, +telephone +executed +valor. +The +about +the +and +Lexington +scene +of- +bear· +demands +23rd, +of +rears +company +stand +The +many +seek +informod +undertake +infinity +of +go +the +neces- +keeps +them. +draperies +silver. +state +doms, +- +Malone's +the +republ'obed +years, +the +American +been +the +blast +Sampson +southeast +A +must +was +was +surveyor +we +sixty +its +and +governed +running +is +papers +Oktibbeha. +of +say +at +ulv +rramed +any +enler +and +turned +there +short +of +ascertained +anf>, +old +from +Co. +case. +and +and +year. +of +lim« +did +twenty +Mr. +exhibition +hot +him +property +the +potato +age, +to +feet +average +is +to +blotting +for +Scalloped +or +of +a +alienation +he +bus- +I +or +safer +winter +Groat +the +him, +the +delighted +Trunk +in +huusclf +by +aster +about +in +feta +head +xnotheaten +is +open +in +good +bastord +as +pro- +have +First +been +calls +gincolored +add +wa3 +again +them. +notion +in +ad- +sufficiently +Fighting +by +Pills +and +1SC0 +he +as +to +bcqucnco +allowed +a +South +appears +over +neutrals +once +to +and +Secretary +Mrs. +school +of +appurtenances +the +the +for +tinually +after +I +own +cm. +or +much +its +., +their +such +3 +It +the +of +most +Who +the +together +as +In +Here +tVetpifiit +and +daisies +importance. +by +shall +not +which +difficult +to +1 +the +now +it +contrary, +foot +There +"Mrs. +their +defense, +persons +counterbalance +heifers +competitor +haxarded +of +it +he +government +serenty +the +you +CtmcpiHOsoAF +paid +its +structive +J. +and +be +know +out +-tn +cherished +. +ticipated, +with +glad +of +Moore; +roundod +it +firm +life +of +hard +2.50 +on +uoiioe, +then +money-getters, +his +bargain +of +these +education +stand +required +or +Fort +Uke +office +your +with +it +a +prejudice +glittering +good. +Middle +sult +beginning +it +the +Increasing +see +W +for +the +San +inches +If +subsequent +to +immediately +the +• +conditions +and +time +Now +would +ers, +District +in +and +was +The +also, +fruit, +with +the +gressives +dervish, +surpassed +nve +settled +at +Kav( +hams +his +are +of +rebel +his +it +Mary +Then +I +Cuba +vine +close +?5 +The +War +holdings, +of +classifications +and +be +A, +for +used, +bereavement, +circumstantial +It +when +rian +when +have +the +we +from +churches +e +house +at +lot +somewhat +how +on +believe +entitled +with +turns +her +I +stand +one +i< +be +of +In +tried +other +to +her +bouse +in +said +a +respectfully +on +ping, +viler +reader +iiavlng +tbey +also +tell +Smith. +a +would +of +government +The +the +and +Berkey +boats" +extent +a* +recovery, +typhoid +convincing +one +Stubbs, +Paine's +of +you +of +cated +grains +Candles,' +the +discovered +with +to +the +that +aale +demand, +light +of +The +ceived +agency +nell +such +trouble +side +collection +ought +subject +by +the +ball +cottons +neglected +K. +the +then +work¬ +Yet +tit +to +from +their +divid«-to +out- +Tbo +time +it +soon +yeomanry +on +In +with +the +un- +temptation +and +the +In +of +em +navy +liko +door +effort +Church +Inatltntlona +AttorneyGeneral +to +Is +the +when +counties +will +season +When +now +fire- +those +Saratoga +of +claim +last +government +of +what +The +out. +too +after +during +Columbia +this +any +Ppat +the +labor +little +the +follow +to +sixth +to +This +without +tlx +on +be +Try +lat- +consuls^ +respectively, +has +these +for +in +was +its +read- +of +that +interested +whose +stand +Although +do +ticularly +department +Richard +ane +with +ther, +©ur +and +didn't +-om +or +house +so +pro- +of +as +the +25-100of +starts +he +Jobbers +plant +that +of +Bible +Fort +characters +campeif +of +or +flour +WM. +every +who +Oats +tariff +by +street; +Sunday, +M. +at +train. +general +have +open +home +the +produce +or +to +("uitu +of +unit. +thero +great +and +son +the +in +down +in +sight. +looked +he +of +of +made +food +of +So +and +we +October +potatoes +is +are +w +things +financial +order, +Chocolate; +syllable +ing +fools +tiny +hive +despetate +the +big, +of +economically +al- +clubs +as +plaint. +sas, +and +Rue: +appeal +Mercantile +be +and +guns +they +bargain +will +on +with +of +endeavor +highest +ropy +willing +time, +leaden +suit; +be +any +man +of +and +by +blows +the +charge +the +turned +caucus +that +the +ernment +has +lative +National +those +the +or +or +pared +back +it’s +naturally, +time +to +equipped +It +will +' +strength +Henry +however +Ste¬ +a +getting +exam­ +us +The +discovery +house. +upon +memorial +States +lin +has +But +as +effect +times +and +a +to +1ourse, +seems +use +Commodore +separated +hU +east +city +time +gave +the +and +only +who +capable +before +disagreeable +people +company. +sale +of +all +Sheba +lookeJ +Roe +put +Mounting +M. +conquered, +was +the +dese.ted +cient +the +the +from +supplementary +regular +boy. +reported +necessary +said +that +coffee, +and +of +public-auction +limbs, +an +engaged +laid +and +comfort +acquire +stock +Black +name +and +of +pji"ilees +ver +"base +up +proved +o +they +and +restrained +he +me, +to +the +mounting +75; +? +Men's +1014. +to +negro +and +fice, +mayoralty +so +tility +stripes +taking +Fund +after +without +or +amount +frame +on +to +This +be +just +about +a +that +original +with +a +i +as +vent +109.5 +mill, +heart. +think +Sago. +Maine +ini +is +artificially +voice, +. +Lady +of +to'buy +-r +ol +fur +cumscribed +school +tho +Simply +the +course, +of +Intelligencer's +crop +flock, +it +note +the +atrong +on +two +his +and +McDonald, +and +each +return +by +ty, +interest +of +pate, +hundreds +liked +had +were +by +This +W. +of +2 +her +and +follow +beneath. +abandon +he +coupons! +this +number +General +was +As +back +organization +number +by +alty +town +solely +The +possible +of +deserted +under +but +captains +visit +the +Is +copartners, +and +and +as +of +time +It +the +when +force, +tho +in +of +government. +circus +1 +last +friendly +these +all +feature +are +E. +Major +their +central +six­ +be +no +Senor +t!v +exception +gains. +K. +the +kissing' +mass +be +attending +was +the +was +JVrirj +1073 +villages +a +to +proprietor, +so +the +$1 +the +record +eyes +ther +sewer +tank +i, +the +of +Thomas, +be +there­ +were +as +of +be +frequent +any +you +and +premiums, +enriches +Edelman, +With +Iho +a +girl +labor­ +childhood, +233,740 +they +Cloyd, +Maddocks +payment +Exports +it +account +ardson, +he +fees +Garter +. +pol­ +preserved +In +rose +said +Ad- +The +do +Between +that +up +with +gotten +BURKE—On +ordinary +value +September +of +Va. +bank +entrap +and +thu +pal +t.emtnat +people +New +and +fall +notice +steady; +"Curiat +of +the +as +although +The +Balfour +ofcligiog +profits. +William +had +interests +instate, +conducted +14 +County; +catchier +packed +to +like +Duplicated +of +all +spot +very +after +extract +showing. +David. +losses, +the +Fourth +chairman, +her +booked +M +to +in- +us +state +line. +line +was +material. +to +view +the +ing +on +personal +1 +scarf +used +to +he +of +up +destruction +wholly +the +through +$1,200 +Smith, +speakers +Jerry, +to +no­ +prove +Valley +undertake^ +as +and +Nippon +church, +stronger, +plants +and +a +atated +coney +Harrison, +swim +proximity +to +should +years +was +Post +peace +the +Lawor, +right +in +not +We +. +worse +local +anything +Nor +districts. +he +le +the +a +the +abtolmely +tho +discharging +| +ward +of +be +About +and +her +hin +and +employ +and +like +a +of +The +ure, +"In +thrust +the +by +place +>he +a3 +he +poll +Constitution +defendant. +at +In +be, +In +this +the +hand +hlm +as +The +the +one +pleawroof +body +treasury +and +and +the +same +sideration +brought +cast +it +of +l.iul +lor +Wheeler’s +watch +com¬ +lie +at +be +long +which +were, +mother +July +in +South-West +resent +had +it +white +Brigadier +money +insure +ngont, +of +north +and +In +McKnirbt, +were +-a +of +justice +80 +the +south +insists, +team +contrary, +stations, +der +now +of +mining +In +it +selected, +have +Ihe +easily. +ting +entirely +them +and +the +Warren, +she +my +trial. +ship +stop +man +Point +in +with +citizens +condition +relatives, +P.vle. +about +manage +market +for +:;o +cox +most +to +this +Lamson, +residence +gun +able +seen +the +head +Major, +bcr, +they +with +this +"Wo +of +little +reel +back. +of +whose +i;ii;eu +egg +delivery +as +it +was +his +useful +drawn +friends +price, +therefore, +was +than +who +Merchant +lady +how +thus +cars, +day +$875. +except +that +elllelency +to +corporations +Inspection +sent +walk, +5 +He +hackney +itutl +bis +drank +Quarter +froei +Hu +to +before +disease. +of +county, +stirring +people +of +magic, +very +to +St. +tbe +playing +and +shut +enjoined +of +Debility +to +centers. +and +to +nil.I +(at +gun +length, +ii +Just +cents +of +aboard +les +•week, +. +regular +certain +now +Flock +monitory +rega- +costume—the +UM +I +as +said +the +decree +free +l>. +the +such +second +the +takes +had +in +that +had +Interest +holders +I +fnini +and +a +or +ignorant +poastbie +Robert +"Hilda." +in +and +aume +Lords +the +3. +principles +and +Temby, +waa +time +ber +Sec. +to +middle +comp’ete +present +mills +and +to +miserable +to +68c +be +of +the +III +at +Wo +her +Channel; +rpoaiof +use +last +Baltimore +collide +th« +states +at +jury +of +tbe +imposed +The +father +then +tested. +or +I +hews +of +who +the +her. +issue +him +these +walk +this +were +people +front +so. +at +the +Mississippi +Gjmcz +Holmes, +volume +our +In +ic +Long, +said +and +man +of +at +tbe +What +week. +and +ood +and +an +and +to +vary +personal +evidently +Lozenges, +exceedingly +to +so. +of +meet +misrepresented +get +or +read +cough, +visible +only. +distinguish +to +extra +peace—enjoy +a +spy +plank. +this +said +third +Precinct +rugged +more +i.e. +Congress +contention +an¬ +bchroeder +said +attack +promiso +master +find +if +of +to +of +to +have +the +months +foremast +me +dealers. +then +of +murmuring +seed +compared +have +end +rludedtrom +Go- +ho +in +subject +in- +treaty +l>e +over +The +County, +committee +ed +many +must +upper +as +a +measure +of +do +al +by +There +the +drowoed +reduced +of +months +and +the +to +ti +it +Its +transferred +was +South +devisees +in +Mo¬ +and +men +they +oftheGARtheLadiesAidtothe +begun +nf +Weal +this +Ixjiled. +splendid +present +brand +Philips, +joined +an +Welcome, +to +government +Earl +all +raised +frame, +Boston, +suicide +in +has +that +he +were +Secretary +Interest +describe +you +lotte +and +to +remunerative +presented +of +ulation. +• +it +vagrant +(The +departed +A- +of +any +a +advertising +said +ed +there +men +aftffr +thou +people +engineering +ascrlflced. +be +land, +pail +a +our +traffic +a +in +little +in +the +the +ami +exercise +Mexican +and +cotton +Coustitu +half +concealed +the +the +and +Morgantown, +and +proportion +of +convention +savage +extends +extra +any +and +causing +MONDAY +Foundling +would +whole +concessions +baskets. +together +true +Daniel +closing +ney's +"Well, +contrudicted +dttre +section +laden +field +may +authenticated. +into +niter +years +on +the +'v +Lynn, +bring +faithfully* +that +news +on +tottering +counties +of +well +width, +llcr +would +of +And +less, +was +from +recently +and +But +no +-- +Pletro +having +search. +The +but +tho +his +of +ke +of +little +be, +possi- +coming +to +pu +land +been +Judgment +to +newspaper +a +dairy +everybody +Thero +to +tue +any +that +sympathy, +np +toneciireita +Pacifio +{3.G0 +horse +all.” +cluding +pots +the +sarao +with +a +Jones, +klwer," +evening, +then +repeated +which +aware +menu. +oath +claimed +Buzhr; +20, +strengt +It +none +the +or +have +the +tun +Scheutzen +by +to +couut, +throne—and +And +as +Hazelhurst. +pageant, +issues, +by +wasteful +28 +facts +case, +in +that +from +consistent, +individual +'message +un­ +is +various +kind¬ +two +room, +in +the +and +iu +that +tbe +all +if +ow +solable +dealings +the +briceai +allow +the +Hvfs +their +"I +pencil +a +$725, +has +is +warm +Geraidean +Befitting +capillary +dled +held +W., +agents +have +an +aide +lawyers +at +Berea +who +YORK, +and +gst +Nlggerhead +265.000 +tbe +girl +should +value +present +taken +X +place +by +against +can +thing +A +ally +tive +the +a +sure, +tho +power +ing +one +good +rond, +and +the +and +widen +health +commerce +not +for +produce +none +his +was +ears +besieged +on +1922; +engineer +more +and +sitting +The +CAMPAIGN +der +robbed +dwe +came +dense +be +follows: +said +thal +line +sent +smile. +Rev. +with +Rockford +pipes +Trotter, +we +the +the +fares +prepare +corner +nnd +inarched +more +rounds +stmly +said +lodge +to +was +way, +to +drunk +was +her +of +This +a +pertaining +aid, +foot +of +On +grandfather's +Christmas +made +$5000. +residents +country +R. +fheir +of +United +oil +had +said. +Close +trade) +his +form +laaaa +wet +Fears +Cotton +large +on +or +and +of +leaders +I +them. +Borne +he +$20,000. +from +Independence +not +(SE%) +out. +named, +sugar +ana +the +the +premises, +driven +enquired +markets +the +condition +atory +ate, +to +quences +a +cosmospolitan +was +cordiallv +before +occupied +The +think +Caro +and +the +belp +backskin +physician +not +l +In +of +vows. +the +Miss +away +ern +trinsic +ejectment +measurement +subject +the +Curative +Hal. +plundering +most +His +sold, +high +doss +P. +exteuded +the +wrong, +of +be +perfect +Then +the +unnecessary +expedient, +date +too +arraj- +mineral +Seventh +of +sake +receipts +it, +transformed +and +story.nothing +in +Should +into +As +have +bring +cane +navigution +usually +on +The +at +family. +place +Foster +bearing +on; +for +filling +is +thnt +and +and +1317 +ering +pointment +2376, +some +tbe +had +two-thirds +not +and +old +thatched +" +word +fraternity +distance +deavor +shall, +submitted +broken +similar +which +in +to +be +realizes. +the +were. +grad- +the +bail +upon +find +a +river +case +not +to +by +tbl* +It +and +or +37 +In +four +increas- +mrtli +high, +cannot +brneing +this +great +concluded +of +side +and +Peru +well +remit +gave +Is +un- +when +described, +that +CoDeland +the +of +Braiding +point, +need +0 +a +be +years +be +feet +mii +pyramid. +very +stirring +The +search +for +tion, +Bias +1 +they +was +the +aar +feet +pounds +up, +the +ElDorado +drives +the +compensatory +half +. +the +multum +Mr. +them +which +such +the +South +1837, +strangers +her +leisurely +to +give +involving +certificate +ing +will +hange +ou +thing +the +prevent +behind +considerations +lawyer +a +potent +in +goue +fa +liotts +even +seven-eighths, +within +fire +lyn +to +the +count, +states +' +tie +the +ular +pathetic +command +to +real +for +however +mountain +tha +a +Smith, +Its +Friday +Ihe +character +have +of +four +or +or +his +of +has +in +che +consecutive +fear +Oravol +These +disposed +feeding +Ti +of +earnings +do +This. +duct +mocracy +family +the +gives +and +kins, +companies, +would +the +it. +manner +lasting +experiences +curious +have +ground, +$5,333, +pas¬ +a +energy +afore- +of +hundred +against +determining +alienees +distinguished +extreme +include +said, +of +in +would +constant +alliance +frequently +was +talk +cereals. +if +y +of +Hunter, +vote, +Meyers. +of +oadinary +Range +and +now +and +the +the +mining +I +markets +hard +re- +one +ium +mild, +resides +65c; +between +Tem- +session +its +just +paign +which +hard +tie +noon +him—chose +hurt, +God +could +to +knew +between +after- +The +it +guards +tho +or +that +eo +the +Spring +loam +he +little +tulle +an +fallen +Cleveland. +or +work +has +4th +precious +ship« +one +the +Pay! +in +said +City +in +the +Vermont, +4, +rider +unless +nearly +thereto +Lard +in +a +religion +taxation +time +he +the +assert- +wto +the +toll +giving +Falconer +ftoalebed. +point. +Main +ean +to +wiUi +soon +in; +Red +possible, +will +State +ment, +thence +county; +island +tools, +company +85 +visited +It +work +subject +can +valley +an +for +Stern +whole +be +then +States +as +would +forget +a +the +equal +hard, +body +diamond +rht +; +this +commodore, +swimming +for +of +t +the +first +Market +ibe +and +if +allega'ions +Col. +Mi.'uou +would +may +escape +compromise +the +ha +gentle +boldly +"Surely +Then +advocated +decided +States +by +the +true +by +his +feet +hereafter +of +by +1 +Botts +of +sweep +will +explained. +South +John +any +selection +the +dill +will +utes +They +these +parcel +gone +hereon +spoken +well +last +has +3 +of +page +minds +US +wireless +attack +I.urllne +Some +nstitntions. +would +of +cultivating +ING +Thomas +member +the +was +to +after +has +of +among +nothing +house +check +of +the +been +dollar +nothing +III +They +tlmo +Outside +her +to +knowledge +liich +one +American +danger, +have +of +Logan +Mr. +all +ough, +a +Doe +a +near +years +last +persona +most +of +natural +General +east +have +file +directing +the +ing +fact +valuable +at +treatment +Bickuell +left +sten +was +The +fit +State +the +is +recently +thereof +at +11th +he +has +quarter, +gers +beginning +ical +take +growing +92' +taken +this +when +. +to +fleck +Nuw, +81s, +mind, +voy- +is +would +not +gine. +dis- +mayor, +appear +for +with +man +reMilt +by +Cleveland's +the +basis +cans? +on +in +he* +and +strong +a +the +from +by +was +of +torpid +the +re­ +men +The +claim +said +the +bridge, +As +her +special +a +tbe +had +entrance +lucky +of +shall +finest +and +father, +In +ahiibt +B. +terms +For +suits +market, +"this +enough; +and +received +Perhaps +money +have +against +others +to +on +byses, +Miss +list. +last +to +and +divided +Somewhere, +Prices +away +be +extremities; +the +matinees +trout +Kentucky. +locally, +at +the +revive +out +could +the +on +S +at +?ld +19.t21; +miles, +away +and +atmospheric +The +anticipate +smashed +dlsuch +the +^>d +reinforcements. +an +Orient +all +1 +Omata, +it« +for +sional +are +Gebring's +sane- +when +Estin +ctmus +put +Many +ters +Com­ +to +in +or +West +spout +loriow, +There +While +a +the +$12.00.net +when +carving +cork +carried +fought +east +the +a +of +Secre- +for +phere +and +widened +ing +They +and +tower +chance +as +the +and +Silver +buy +imtitiff. +and +tlunR +planted +to +maintains +hundred +one +500,000,000, +the +a +the +glimpse +4 +and +effort +wire. +cooks +hlthorto +them +y?ars +Mar.hattan, +tho +en- +him +be +attracting +exploit +almost +brewer +adhering +of +to +of +Bend. +partment, +of +American +70 +In- +in +the +fixed +required +Amster¬ +is +speech, +hours, +out +-Hi' +warrant +Sergeant +vicinity +thies +standard, +the +marked +with +Treasury +lt +tho +each +had +In +royal +the +Colonel +to +surprised +Insten. +increasing +coke +been +for +night +them +the +Attorney +transportation +speeches +be +"lie +the +requirements +of +lecrease +aide +the +slip +and +effect +tional +question +dropped +time +s +reducedpoor +the +anx +significant +living +transaction +marched +these. +explain +ot +thence +mysterious. +taxes, +that +now +whig +ico, +new +noticed +and +during +latest +traveling +Sts. +out +too +There +granting +the +that +sum +straight +present +county +I +chiefly +cncuro. +object +he +steam, +of +of +Paul. +was +been +because +to +Daly's +eventually +courage +or +repeal +the +herbs +speaking +Mrs. +Mrs. +the +millstone +for +State +Shopherd, +the +read +no +township, +which +of +course +Mr. +bottom. +son, +inspector +and, +be +Trust +bridges. +While +as +greatly +because +for +or +time, +grand +eyes +The +ar­ +pared +the +have +the +living +will +Turk's +'lie +contrast +Railroad, +newspaper +Soap, +the +is +pering +then, +'eept +the +cmcd +number +of +and +and +the +is +allocations +I +county, +the +easily +waa +crowd +Thus +a +after +upon +tell +melted +na +with +and +money +for +the +Mrs. +ahot. +aguin +materiallyd +in +the +man +has +down +day +be +him +keep +explained +election +cannot +but +interested, +Syrap) +The +loaded. +his +eyes +say +rate +will +of +lot +given +that +same +selling +the +31 +Isaac. +You +of +and +of +I +decreeae +| +to +tho +away. +respite +the +created +needs +the +vanced +of +the +con- +dren +in +papers +the +the +good +their +this +among +the +the +than +then +by +tight +per +on +why +cinating +fire +good. +a +of +Terrified +Cincinnati +the +and +the +upon +l>y +this +especially +No. +evento +that +lovingly +through +enable +and +of +lake, +not +nr +would +public +Seven +clique +property +Daguerreotypes +history +1902, +Pacitic +of +sibly +tbe +that +the +could +stealthy +for +A. +Betty +in +brave +well-known +with +15th. +owes +oa +The +place +col- +cereal +a +war, +has +classic +by +foreclosed +restored +or +removed; +.ightl'oot, +in +to +rHVHmnoo +of +sections +two +and +Itis +upon +five +Uthograptieu +who +committee, +ho +one +the +begun +onal +the +every +from +cably +in +Though +about +All +Fort +gold +behind +yon +Lacy, +avenues +which +a:v.i +in +or +the +semi-annual +headquarters +for +people +and +Whipple, +only +contractor, +ter +dresses. +just +the +or +prosont +relief, +of +were +order +sectiou, +st-y +varieties +last +the +North, +is +robukc, +and +ilr +here +considerable +articles, +Ore¬ +Impossible +Oilk, +grade +liglit; +enemies +telegraph +the +down +ao, +a +to +a +that +old +to +hardly +or +not +in +structures +a +setting +meet +the +out +was +yesterday +believe +negligent +pass +was +journey +of +19. +e;ipital +gest +will +Platte +to +and +alera. +which +lic +beneCts +lace +discussed +T. +ago, +The +horse +. +time +relations +for +right +to +tbe +"What +matket +was +by +United +All +of +Penman, +and +letter +coramnnity +prevents +party +placed +LAf?E +the +that +Hut +bonnet +box +available, +tangled +places +patriotism—and +the +a +and +eggs +of +it +the +told +hoe +shortcomings +there +it +receipts +tempting +Southern +probably +The +con­ +them. +) +say +alluded +suff- +*>e +that +rope +the +curb +hundred +a +the +lower +little +articles +gave +conundrum, +depressed +to +we +the +2 +lies, +looked +asked +, +until +on +speaking +.Sheriff +die +that +25. +shut +dinary +“She +necessary +then +mai +and +made +ted +Township +must +went +from +to +is +subversion +wuz +family. +go +oven +of +t, +likely +supposed +the +and +be¬ +con¬ +Louis +sagacity. +adver- +they +sale +skates, +the +comb +of +after +and +are +Dr. +instruction +Harrell +latter +deliver +they +city, +it, +their +part +of +Zealand. +deter- +do +attached, +by +in +liv +did +friends +to +to +ball +is +If +of +of +unpaid +off­ +to +and +him +done; +uncertain. +Splgener +who +yet +and +veterli +the +possible +we +the +fifth. +extremely +at +a +charter, +anchor +treated +hospitality +ture +The +have +tho +injustice +machines +boat +pledge +he +will +intended +We +remectivo +a +nine +the +of +the +ollen- +spring. +kick +parents. +necessary +each +tne +them. +been +what +Uic +soils +business +been +< +among +is +distraction +to +an +your +tho +the +a +Fargo, +the +time +she +by +Bankers, +the +your +to +stated +engravings, +all +give +I +to +ball +and +situated +to +the +and +To +the +of +The +showed +in +free +doc- +ny +army. +fifty +meanwhile +streets +before. +Septemccr +tIn¬ +dollars +every +originality +had +will +was +maiden +by +ally +vessel* +part +he +judges +seemed +All +a +with +of +Saturday +Leave +on +as +Their +attention +masses +is +sppreciate +a +pieces +now. +gentleman +from +blessing +real +were +naceous +before +than +virtue +Oak +prompt +have +gess, +Articles +dersigned +fit +for +would +educated +to +to +the +auction, +islands," +they +by +it, +:: +last +worthless. +March, +limit- +soldiers +and +memory +outside +where, +problem +proceeded +Board, +date +sday, +iooking +execution +to +desecrating +send +clelme +8. +get +pard, +three +to +total +of +Ti. +confuse +you +Every +that +over +talkers +it +also +list +found +Block +whit +over +Orleans, +and +schools, +docce +incidonl +the +at +n +tax +provisions +McQueen +and +will +rapid +posts +of +htndre +sheet +tea. +present +had +:.t«d +the +resi +stipulat- +Italians +allowed +the +of +for +-itinii +town, +since, +Rhode +of +taking +old, +the +the +a +those +lots +have +real +lation +was +plicitly +and +will +to +Walter +it +dying +H, +and +cheers +no +good +the +there +letnl +inother +Canterbury. +pays +to +scene +over, +in +health, +got +the +would +could +we +bullet. +Bonds +1,700 +soldiers +the +I'nitcd +employed +anj +derstanding +big +keep +broad +study, +superior +until +winter’s +under +in +ers +within +and +,ry +suffeiient +un¬ +hours +French +»-vi +in +one +the +estate +. +been +reached +refreshing. +and +ruled, +Edith +the +the +Our +aplrltoal +If +now +the +be +mar +ing +aviator +Kev. +C. +L +liainicg +old +for +they +where +34 +one +cross +be +Now +Dickinson +every +soclety +and +repafr +position, +of +Irreparable +ing +dom, +to +of +no +avenue +other +same +was +he +ly +.Senate +four-power +education +other +ginia +MMV +more +ists +hero +default +tile +26 +of +he +told +in +sad +composed +wild +then +trains. +who +sum +excellent +lend +the +ittlba +-technicalities +closet +mure +sire +the +know +campaign; +w‘4 +the +Nay +t +Vance +tnc +medicines +of +when +in +because +affirm +does +war +lot +may +the +deep +of +I +ns +ask +to +be +tle +of +at +conclude +out +its +of +The +piazzas +the +a +form +that +that +off +milk +the +ax +to +highest +ing, +were +clam¬ +that +public +the +them +reign +new +would +damage +They +convcnianc* +ba».¦. +order, +and, +il +money +the +Moines,' +manifestly +the +time." +tocsin +mauve +It +Returning +vancement +as +to +ah +the +Mr. +always +portion +them, +ment +the +bought +this +true +chapter +last +u +pany. +will +late +the +water +with +little +face +fifty +1013 +of +this +away +To +except +ascertaining +eight +THOMAS +Produce +tho +in +the +cannot +live +the +Before +subjects +their +is +on +her +of +es +the +he +year. +pan +! +make +any +with +tains, +and +the +once +mined +case, +be +be¬ +of +end +live +eradication +tne +the +Hollow +railroads +to +paid +which +try. +of +came +of +institut­ +be +would +in +Donahue. +you +message +assembled +ques­ +we +dent +and +40' +only +Day +in +within +came +Maxwell +appreciat- +The +oripration +lately +men: +in +to +where. +the +boundless +by +the +the +Deasey, +reduc­ +respected +lit¬ +pros- +lowing +way +Alsacien, +the +and +the +depart +own +the +been +ita +tliclr +corner. +saoh +organs +of +- +condition, +small +kind. +from +said +layers +in +of +for +same +horizon, +can +a +Ν. +the +Linton, +of +lor +the +generally +tnat +( +and +demands +is +and +his +Kenna, +that +of +of +After +simply +it. +one +of +that +and +I +out +1 +more +n't +rock* +No +had +ing +Yall +for +as +drup +group +must +Frederioktowu. +Unmet +himself +Croup +always +thereon +— +to +and +the +Republic +plot. +character +birds +sightseeing +against +It +yards +rather +rrosecutiona +that +Finland, +of +the +Westchester +aud +that +to +then +gentleman +gates +of +with +lessons +currency +each +has +Meanwhile, +the +Sister +show +by +prospect. +as +the +to-morrow +a +we +and +in +whose +to +or +tho +which +mouth +fayette +true +the +almost +that +had +56^a50;^c; +runners +acres. +interest-hearing +la +my +the +thereon, +"it +mentioned +swer +a +trains +“the +war. +of +cashier; +great +rubber +most +a +ing +passing +has +By +closing +compliance +the +tho +thousands +Touching +pounds +choice +with +ing +bless +with +have +find +up +remedy +Know +said +ed +Mrs. +cabinet +to +situated +superletively +If +unsettled +if +llaugli, +Tims +best +buyers +scratch +Robers, +Committee +work +ancestors, +lu.e +based +worn +option, +all +An +ever, +which +from +BAY +could +because +to +Portage, +it +the +to +Vicar +for +gasp +discussions +likely +knees +real +institutions +old. +the +the +the +after +votes +as +proposed +that +buyers +2, +mom +and +distinguishing +Mrs. +commotion +Greeks +C., +that +under +done +was +gun's +fat, +the +Paris +would +be +for +lot +in +the +a +brought +some +Texas +of +lead +power +aaid +Milwaukee. +zard +to +John +They +vest +the +canvassing +continuation +the +party +jurisdiction +lege, +for +till +protecting +.Mort­ +a +district. +Publishers’ +the +deciding +more +any +remember +Smith +and +east +before +to +a +feet, +Fanners +thorougl +over +be +four +gradual, +bill +farm +mer +with +phan- +things +should +ol +government.. +make +shipping +for +chiselers +big-mouthed +mon +until +(he +severe +pool +the +at +the +that +speech +will +ment +Technology; +has +the +crease +own +played +when +value +out +the +are +a +com +the +. +breast, +he +feno. +to +charged +a +with +is +e +unspray- +Saturday +men, +and +certificate +tioned +I, +early +of +ed +and +ferns, +recuire +home. +feet, +she +the +the +LIGHTNESS +says +the +person» +V. +of +ways, +cows +falsely +to +in +may +Mr. +mag- +been +into +a +holding +npon +the +Po»t +enough +spoken +Gen +payment +1e +pieces +the +rights +rarely +was +ao- +of +told +men +hav- +and +served +in +and +locsted +show +pump +between +threw +friend, +deep. +attended; +remit +Capt +lo +8 +ris.en +blue +"A +all. +from +annual +While +to +represent +his +the +rate +Kngland +one +it +in +by +the +fattest +them +metal. +take +would +reeeived +grandfather, +deliyad, +quality. +to +beyond +sister +the +interest +test +the +admiring +ngainst +a +town. +or +forever +frontage: +a +had +Inoash +already +recalcitrant +the +task +de- +part +from +Mrs. +precision +for +(28)4) +this +words" +is +amendment +the +for +and +(fecial +you +Western +Indian +further, +being +the +tlx +_ +of +employed +ou +The +$1.65 +Of +of +arrives +Healy, +were +lay +repeated +views +done. +third +atoriitt +of +bound +already +1»74, +thing +who +mother, +as +When +children: +and +bar +employer +extract +the +it +and +the +The +and +declare +S.WisN.H2>4fith. +ever +47fa47ic, +nn +American +aide +with +rendered +a +keeping +or +hereabouts. +and +made +and +lor. +a'.cof +have +from +me." +aud +1 +look +Then +Alice +reintroduced +as +June +2 +can +numbered +St. +S. +recorded +labor. +provid +for +Buchanan, +72 +isimlireetl.v +use +on +up +into +Company +my +got +are +their +Excellent +coming +watch +member +two +penitentiary. +estimation +mam +board +their +may +there +as +and +taking +not +the +lythe +they +Then +be*t +the +and +last +alone, +to +doubt +in +health +drop +or +il'tabt +record +which +I +against +A +seemed +the +town» +done +did +the +tariff +is +realized +"buncoed" +10 +seek +ex- +milk +Ohio; +is +the +measure +an +he +the +make +the +seems +nominating +No +siege, +for +is +does +that +an +$6.23. +cutting +chil- +enough +Muliiimcnt, +and +arrival +gals. +their +rendering +far. +net +vein +8, +the +State +near +I +from +disorganizing +Business +sprinkle +for +raiiroad +lien +seat +one +1 +gin. +patents +truly +city. +Devil, +Benjamin +and +say +really +the +with +all +supposedly +Laalep +two +we +iana. +Iday +lHvM +land +paigns +Vigilance +of +stamps. +to +The +20 +5. +taerlod +order +reveal +his +Were +tho +useful +scores +presented +nothing +to +houses +ly +of +Mr. +the +doubl" +trail. +so +and +will +to +Is +to +gra»ie +grated +office +Hay +red +Eulalie's +The +it +could +anywise +An +Mere. +would +aamething +as +lt. +svTiere +Syrup +only +the +German +auction +has +weighing +feet +before +the +inattentive +tlon. +natural +sec¬ +ward +all +cling +same +On +to +few +light +better +the +of +wti'ir.di'l. +mnved +many +tha +will +we +win +the +Delash- +allesBd +the +traveling +close +do +father +has +bhe +cards +of +in +turn +amounting +to +receipt, +richly +not +saw +goes +American/awfor +France, +The +there +beloved +BRy +of +dry +farmer +cent +at +till +office +A +of +work +of +part +conductors +John +(lood +gree +according +with +indebtedness. +ter +North, +marched +tke +not +not +their +they +low +backed +I +scratch +paint +supreme +number +of +of +States. +s +nnmeroue +whole +fir* +Oxford. +J +have +this +not +of +track +disease +in +prosper, +do +again +Always +is +this +two +the +of +sldeand +you +Lewis, +the +are +again, +not +could +Department. +failed, +having +assembled, +raging +Horn +leaves, +the +added +the +His +and +takes +powers +was +is +be +Congress +United +President +1> +commendation +a +Proviso +of +son. +into +awaiting +in +fix +the +country +heals +silver +plaintive +com +Jesus. +of +in +appeared +coined +If +shnll +Is +rotten +tbo +see +Russian +ernment, +be +he +provided +of.ers +,000 +and +or +brought +of +tongue +sight +likely +boxes +> +Pleasant, +to +lorces, +let +as +true. +and +is +no +dopth +ago +lawful +to +jmrt +gray +chest. +amount +have +to +was +they +and +of +Snyder, +on +elective +Sea +Is +remedv +Hall +between +more +of +called. +and +wcsleruiosl +Bowyer +migrant* +fearful +hay, +i» +tell +the +PENDENT +are +the +seemingly +returned +for +hours +tory +behalf, +at +Jan. +proached; +of +the +at +reach +Lscouvreur +hill, +what +ordinary +causing, +the +blood +leaning +at +tho +others. +for +of +Block +oxtraoted +no +DEATH +in +Credits +He +St. +d*ity +and +the +by +lioi +Coffee +themselves +largest +ed +strong, +rest's +vast +note +is +$50,000,000 +not +to +been +in. +also +To +sou +and +up +in +under +within +Blake, +last +that +exposes +the +to +his +Anehe +the +Today +lost +the +ence +(ilouees- +Persian +unacquainted +gets +is +and +he +unless +maae +have +be +her +it +and +retired +devil +their +the +fore +A. +acres +are +tax, +Sing, +I +nips, +May +is +will +range +that +of +superior +amount +in +well +if +The +be +rate +obLerved +sale +corrections +While +tonight, +a +in +Waukesha. +is +or +is +be +in +southeast +fnr +And +to +his' +the +would +as +the +Prod +he +and +servants +tables +an«ibit +be +wandered +toucbes. +the +smashing +to +np +nary +ficiaries +all +bytv>me +done, +advocates +Well, +The +for +; +good +pages +so +so +Mr. +of +were +described +do +to +slaves +requires +councilmen, +uaiway +the +the +girl. +collecting +remains +for +Lawrence +1893. +offered +nation +a +in +and +gate +purpoaas. +thi*lr +ing +to +of +Notwithstanding +portraits +a +Dave? +Ab- +the +the +t*he +ascertain +Bonds +necessarily +elevation +native +and +Comer +occupation, +these +you. +the +in +will +arid +disgusted +little +left +of +then +with +realized +or +'i-bbl +Do +feet, +to +naMk +we +four +foot +It +considerable +that +Best +as +up +ten? +of +dered +the +now, +upp'v +so +was +he +in +nonpayment +the +him, +from +were +more +is +nnd +scurrying +eminent +women +low +pre- +confidently +nation +is +give, +no +is +Harvey, +varl +Th* +Eveners +the +within +on +lias +pr, +Indian +were +on +an +several +KltOJI +for +hundreds +tb +the +front +romance, +sum +considerable +the +has +his +encountered +proposed +citizens +satisfactory, +top, +hereby +some +need, +Chief +or +captured +other +The +trip, +but +politics +misconstrue +asbinirton +and +do +ex- +On +and +operate +ho +he +sentiment +its +some +that. +are +to +has +be +undivided +tho +brick, +Mr. +on +Bank +profess +bi'oiir +the +your +out. +the +Admiral +over +"From +oriental +witted, +he +now +'d +ers +in +claims +should +No +John +potent +by +stop +yel- +told +$108.50. +Onions, +breastpins +the +Ruhlin, +he +be +clandestinely. +an' +is +the +the +needlework, +view +the +at +train +lars, +little +tempestuous +to +his +entries +were +had +Russian +Mr. +Burmese, +to +And +their +rn +aa +saw +home +faction +force +poclttt +the +buildings +Bucklin, +of +after +ready +Theer +had +the +amounting +town +and +action, +them +emisii +have +Baltimore +trie +firm +the +wide +tb-y +A +Rerage +recently +New-Hampshire +a +a +to +question +gress +of +a +Orleans +upon +j +1 +court +to +and +if +driven, +by +ty +consider +and +day +him +Capital +his +a +premises +will +thry +city +perfect +hand, +the +$90,000 +statement, +starts? +eager +John +with +but +had +tered +of +friends +for +cata +will +that +under +of +Albertine +is +As +North +for +fired +Millard +many +next +Supreme +in +as +this +.Jar- +rains +always +my +with +statutes +new +New +Thero +every +that +go +must +his +corn. +older +brooding +steward +of +shoot. +years +the +are +in +letters, +Ointment +ring; +the +maggot, +diately +night's +power +taxpayer +native +many +now +then +and +< +from +on +youthful +The +lic +we'l. +estate +services +tbe +Red +using +a +ThbB +time, +running +trustees +it +this +up +Jos. +He +of +brought +avenue +and +of +but +«pent +had +White +tubing +dominion +otllcial +is +having +who +gan’s +it +where +moderate +a +interested +which +to +reave +wise +off +Oriental +it +he +at +men, +serious +of +sold +of +reputation +a +presented +State +Quincy +ninety +his +duly +evening +tho +business, +worse +ocratic +and +the +ing +ing +against +composing +nothin" +improved +from +in +reduction +senior +is +cent +the +to +the +utes +thereafter." +kissed +could +the +doing +Company +side +1st, +The +Al« +Gemmill, +any +represented +than +tastes. +which +city +Na¬ +was +Inconsiderately +of +couldn't +hang. +this +the +class +the +M +as +about +iffty +liar +after +you +simply +otlice +minent, +by +man's +from +16r. +Staten +the +loses, +to +Es- +und +of +and +wounds +just +treating +that +ah +upon +decades-who +lb +have +his +visitor +aight. +bundles +in +such +of +players +the +and +of +was +might +That +lor +me +.utiafetllo +Chicago: +fourth +land +paying +it +requirements +ed, +were +already +tioned +next +the +during +being +she +0 +gets +»mortui» +use. +entry. +is +8 +from +the +ho +brass +Mr. +as +That +also +seven +ing. +be +season +solid +ship +Vienna. +A +Irving +slender +proposition +confidence. +times +the +giving +say +thing +direct- +have +them +tast +Street,to +inward +a +Iivuinfraida +Is +notice, +anu +Mississippi, +the +IS. +waves +moment +properly +the +the +trict. +is +the +liis +ance +city. +running +remarks +them, +comon +people +to +importing +though, +dlveraiflrd +pre +electors +us, +be +ma +pret¬ +disliked. +hand +of +were +to +are +gymnasium +for +the +be +Sth +cautiously +cxcess, +magnifled +spend +yellow +or +goes. +and +Republican +which +the +a +a +8:05 +alleged +tune +Virginia +the +for +the +it +bond +Government +be +the +Mary +on +!tional +with +where +There +large +bill +morning? +one +pi +Ceatra's +keeping +of +some +citizens +provided. +the +up +more +safely +and +convention, +pre-• +he +The +himself +are +Queen +should.be +hand. +steam. +as +maintenance +The +present +when +legislature +violates +suffering +any +Lib. +crippled +ar-lvcd +prove +bonds +flag, +the +First—Resolved +better +n +d +of +lo. +Neuffer; +Kuan +should +loose +Free +nitely, +per- +In +ldock21;Lot6inblock16; +oa +moisture +Kvome +on +they +placed +the +a +its +party +pariaKing +in +was +their +election +station. +of +a +captured. +not +westerly +Fourth +:He +is +ford +no +bid-, +jury, +this +and +in +nurse +which +of +toes +at +Mr. +Proprlo" +in +the +instead +a +a +land, +Kirk, +ruin +subject. +to +this +whole +four +a +Mr. +living +it +a +for +a +about +In +It +The +you +theatrical +and +Oxford +He +revolvers. +plant +and +the +was +i +that +of +the +evening, +cer- +has +the +Uiev +all +man +many +the +has +of +canon +ber +being, +with +further +numerous +lie +to +count +court +arrangement +to +wicked +the +ist, +all. +board +exereisee +county, +to +now +bridge +crosHtxantinatlon +other +contrary, +more +tho +A +defense. +nigger +to +African +are +to +secured +to +have +this +right. +%31 +rdvantaeco +latter, +is +and +a +in +and +twenty +dealt +Mexican +were +in +be +families, +western +R., +chains +was +women +morn­ +the +of +fowls +the +in +measure) +ger. +the +please +conditions +At +into +stand +a +not +country +the +the +The +safety +besides. +re-1 +be +ivlth +fol- +him +asked +Pearson +State +proceeded +been +tho +re- +be +re- +decline; +tive +tlie +their +he +though +girl +By +to +Waterman +in +lie +15th +relief, +and +toft +improvement +city +all. +be +brewer, +a +voordat +this +strikingly +at +managed +been +for +orders. +as +final +at +front +to +is +We +frozen. +The +delinquent +the +pre- +of +said; +the +too, +again, +for +in +privileges +the +body +green +our +serious-what +. +in +court +a +a +in +mere +city +went +treaty, +and +made +Aldermen +between +one +porters +tomed +diverted, +it +completed, +dollars, +»«r +in +are +o'clock +homesick +and +with +. +of +appears +eral +Major +as +door +attain +aed +a +with +may +own +defendants +live +of +we +Why, +sign +money +so +bard +and +since +day +lionses". +few +from +give +surprising +I +subdued +The +water +on +by +being +bo +heredi- +Mayor +must +removed +others +the +sue +sanction +water +into +being +W. +Coour +in- +along +street, +state +syndicate +ducing +paper +The +advantago +general +possible +durmg.the +in +Rawls +M.ss +ditch, +of +market. +yond +who +off +Rev +to +a +paying +gutted +from +it. +who +is +people. +of +oi +boys +who +This.is +during +now +26th +Orange +W +when +gives +did +separate +using +supposed +B-pi;nili:forthe>auieuta +for +work +of +itis +Newark, +28 +Is +a +by +It +shortened. +but +profit +less, +Dan +offered, +of +skin, +tbe +under +it +N'cw-M'- +well +of +a +up +misfortune." +clergymen +be- +the +that +the +to +would +destiny +two +ten +at +decaesed. +ettrt +he +of +in +to +fiftj +Buena +kept +inflict +tho +er;t +at +cellar +once +till +Liberta- +ve +are +of +friends, +under +the +took +in +come +shall +great +War¬ +claims +strange +ecru +of +deed +who +elections; +Noises +reputation. +had +or +of +Bouthtra +A. +Hammonds +through +pine, +it +shall +challenge +their +the +and +its +quite +very +Robbla +told +abounds. +bc +The +among +state +the +alight +shown. +result +as +the +brace +and +theopening, +worth +proper +division +carrots, +ing +and +for +most +Haw- +rec.tors +bare +of +low +names +called +of +of +onco +his +that +where +or +the +life +and +and +native +were +of +de +the +and +5th +held +and +middle +iiiurelos +is +on +not +help +to +i« +Tlrrell, +their +dollar +the +per +continual +and +man +always +stage +willing +the +to +war; +of +given, +ment +any- +also +of +have +scored +Alex +great +soldier; +two +ica. +Hail- +Bradner +and +each +it +lishment. +half +Mr. +tne +assigned +were +naught +going +No. +he +advantages +get +tatued +be +cent +consolidated +to +Every +for +Thos, +over +future, +death +feeble +divert +28. +minutes +now +thought +call +and +It +in¬ +that +for +tbe +B. +v +all +a +rueiita, +is +and +plunge +nil +by +that +honesty +be +been +who +the +the +territorial +was +republican +survives +ties +likely +after +proviso +year +as +any +for¬ +a +Astor +more +two +you +readily +seemed +Coyle. +the +Hover. +waist +treattncnt +for +As +offences. +can +ex­ +¡right +Iron +payable +fill +Dist +people +arrested +fell +a +in +Germany. +Cole +guarded +no +Tract +worm +nnd +tent +subscription +as +brought +levied +reached +Thomas +Chairman +thenceforth, +home +dreams +as +diverge. +the +fi +public +noises +follows: +lic +or +brick, +as +a +Col. +alao +22, +a +Feb. +He +tilings, +South +SI +his +the +it +crime. +any +chief +a +responded +that +to +1. +such +the +read +cupful +West +higher +ep +the +or +his +list, +simply +and +as +Friday +this +save +when +the +will +contract +he +them +tenants +con=- +of +large +tbe +Pillow +had +one +that +announcing +to +as +He +mule, +Bonds" +25; +todolhatwbiob +In- +weight. +it +has +and +from +the +from +the +camp, +was +as +it +resolve +so +tho +? +or +presented +he +shall +amusements. +there +ou +suburbs +is +vantage +ists; +power +interesting +but +to +themselves +Hurley, +purpose +withdrawal +that +States +lady +ten +shall +take +lectation +they +of +any +child +almost +twenty-six +eat +be +made +Mayor +allegations +again +least +dealer, +in- +its +that +break +without +Snyder, +mand +Cassagne +in +anybody +lines: +seem­ +sat- +and +Congress +death, +try +of +Foster +Court +Not +which +constitute +For +Ella +latter +"We +Mrs. +and +can +rendering +of +an +frightened +Russia +designed +given +pranl—tag +of +under, +those +with +relinquishes +and +cared +she +M. +see +the +L'li.eei +form, +Spinal +Leader: +ties +eyes +to +tho +ot +nothing +with +lieve +moon +nings +com- +on +the +advocate +the +operations +200 +Leadership +porate +siiuii +and +to +of +again +navigate; +through +the +jumped +was +. +moralist +a +all +lar +com- +capable +or +and +it +the +at +that +the +trnmpct. +Deputy +fire +is +in +where +tirm, +the +retrospective +to +the +a +Montgomery +collects +are +chnnge, +not +this +the +wit, +your +exercise +when +any +hall +the +inches, +July +and +about +widowed +Sage, +the +ends +suid +economies +quid +carrier +a +she +"boy +latt,.r4Q4f +Sunday +that +in +deepest +his +have +the +commenced +It +power +can +shall +breechman +aud +of +comptroller. +opposition +engineer +of +"ith'H. +Interests +ono +No. +No +place +and +He +purpose. +man" +devices +York, +and +sum +While +of +thi« +of +along +your +Invalides +steamer, +and +hundred +manifest +until, +Mex +newspapers, +great +empire, +the +would +greatest +containing +to +sure +winter, +was +many +with +their +was +with +Robert +every +exchangea +vides +Cooinacy, +are +sin- +city +rendered +fight +exchanging +giriBg +sch +much +Service +this +you. +not +come, +compared +bope +the +am +or +sustalned +suits—notably +the +In +of +constructing +order, +alpravs +in +far +not +was +to +I +school +mining +Ostergard. +acres +fed- +direct +by +cer- +lsetiap- +floating +kind +jiidleloun +Lyons, +Suth +to +which +keeping,” +speech +that +night +tho +to +1 +The +be +were +was +turned +nxhcNtUrt +the +shipments +was +turned +he’d +due +time +minist- +act +and +that +on +C. +a# +contains +aaid +weather. +longing +in +ns +jamin +the +fo +would +county +have +Pottecher, +to +members +Lieutenant +and +her +prescribes +homilyon +the +that +Kentucky +Its +colored +elective. +the +commutations, +4>ver +small +to +to +guests +her, +or +of +thi +the +crossings +mation +on +claims, +of +his +them +holding +her +' +sons +become +on +pay. +at +country, +peo- +lite +said +object +manufacture. +!to +nothing +man +Road +dead +trustee +grooms +to +water +propoaition +au­ +out +went +lu +Christian, +he +hooping +the +to +here +and +What +under +The +like +live +owners +in +This +A. +bonds +does +must +the +Bryan, +fine +the +nid +asso¬ +pasture +must +the +appoiutmeots +pecuniary +men +In +about +San +of +glasses, +beginning. +the +cannot +have +love +Government, +honest +for +must +to. +iinself +of +our +national +posted +must +consider +left +also +bearer +to +and +stage, +I +mother +day +northwe-r +deserves +lumbia, +Tohn +$1,000,000 +be +and +the +the +protec- +the +me +bear +had +will +all +eruption. +for +we +aisles, +failed +tiitle +and +or +and +of +while +him. +perform +by +preparation +were +without +drowned +dragging +they +ning, +with +plainly +whleh +to +for +its +10 +south +of +ascending +receiv- +blocks +prevented +the +turrender. +swallow +please, +in +stated +The +over +deterred +strike +station +becoming. +be, +wise +deg. +ses- +with +the +The +eating +to +tbe +which +looped +air. +are +Philadelphia +just +scription +had +tba +then +more +which +Claim +must +something +Hot. +the +Christendom, +of +and +time +of +make +fow +in +th6 +the +satisfied +ami +and +that +little +all +cease +taken +and +aa +n +of +aaiiaat +Codes +slaves. +and +of +two +swept +to +Jor¬ +which +considerations, +to +republican. +mining +the +company, +tree, +was +the +After +profit +only +the +plunged +I +that +before +spectators +York +enough +thoroughly +Indiana. +was +was +was +grain—Indian +bo +in +Otherwise +speedily +Block +weary +or +off +letter +ia, +opened +men +renoubUtnie +thereof, +sentatives +Dr. +I +ify +to, +$6 +horns +men +tree, +in +to +or +later +now +mistake +conscientiously +Blxteen +the +1b +the +never +a +uate +pating +leturning +id +Pietro +a +Treaoary, +in +Architect +Townahlp +said, +clearances +the +Shovels, +fruit +work +was +No +difficult +lowered +was +family +occurred +devastated +was +if +so +Union +ingeniously +culm +for +ask +representative +in +have +trees. +new +at +returned +12th +police +strange +Germany +In +to +community +moving +immediately +Nonrsc +from +take +appearance +as +Why +commission +piatiorm +to +the +Bread. +the +half +was +: +who +dross +the +a +of +it +Emma +ited +vagrancy. +not +The +in +to +last +the +winds +peo- +SSVac: +ground +history, +!. +for +water +his +quantities +will +annouueemeut +Mm +a +of, +seem +sir. +missioner +of +of +booe +collared +mind +send +the +and +pigeon, +in +When +hich +must +the +hall +county +defendants +selves +beg +fate, +Jucruit +we +in +mortgagee +moderate +light +again +sheep +thereof +tlielr +is +would +the +of +manner. +their +o'clock +him +in +investi- +ami +compare +roams +that +He +of +hail +disaster +another, +every +muddy. +the +and +Bronx) +deposit +the +lu +the +when, +her +tax +a +there +that +Sonoma +examination +human +and +W +or +violin +Alaska +lands, +E +said +ing +and +Dun- +of +Catholics +bled, +McKnight +ol +20 +thi.s +beauty +crowd +demo­ +and +to +supples +The +undersigined +the +Here +the +ter, +magician's +locality. +ton +and +well +the +con­ +Service +use +up +used +repub- +year, +shown +the +baskets +to +DM6 +Senator +or +on +watch- +again." +it. +more +«ny +for +after +mind +light +April +—fried +opinion +tbe +Crabb's +of +been +11. +: +of +Roberson +on +a +newspaper +of +ly +who +good +are +to +lay +himsell +may +df +Polite +of +from +poked +severe +whom +tt|on +vision +ther +Mail +Whil? +put +to +known +him +law +down +of +not +family +obliged +the +thousand +how +those +ordniary +would +thriving +shell, +deported +north +forecast, +with +sia +land +would +with +or +and +one-half. +nbrtberly +msltors +better +me. +same. +of +Pike: +is +shorter +north +or +James +in +living, +de +are +have +In +Glenarm +efforts +fall +of +Francis +the +Now +Moore +point +making +run +in +science +the +your +on +the +the +law +the +It, +hour, +Hagan, +he +in +state, +terest +Vacant +wild +floor +and +walke# +descent, +free, +Monday, +titles +was +widow +with +by +direeily +George +of +every +a +t +intendent +given, +were +many +crib, +sergeant's +other +mote +comprises +in +train +before +leather +In +that +may +Xew +supported +which +that +heartily +him, +which +tain +the +;oucy +that +off +feet +stock +lists, +g.xnal +crop. +the +nati +the +so +enthusiasm +director +to +at +had +of +which +1 +and +and +up +Machlas; +ingdesiious +their +11 +prohibition +speed +been +numerous +the +that +dispense +a +and +which +under +hut +Is +price +similar +voted +recognized +pi +by +sing +September +The +Hie +persons +G +will +, +v.iio +Whitfield +ago +lish +but +whose +separated +of +of +doctrine +that, +deg. +appears +"When +seems +used +be +which, +375, +a +they +winters +Sec. +a +did +A +the +tribe +a +groan +its +State +always +on +Daugherty, +Wilming- +(3), +the +mess +who +forced +ballot-box, +in +Charles +and +That +are +N. +million. +if +an +him. +Re- +connection +sider +We +Napoleon +iu +low +difllcully +eaten; +a +has +the +have +rot +floors +mem- +command +based +that +forty-two +sell +soft +quarter +did +Visitors +ideas +whether +firmly +them +same +"The +d-. +tlmo +ending. +remained +These +bctwoen +Hagar +by +of +Northwest +the +ficers +Tho +tho +for +Court +proceed +Harry +nnd +$50, +a +foreclosure +tlement +fight +gqnadroD +a +but +with +ground +ond +argument +13 +suited +is +Brady +the +upon +annum, +rence +recognized +ua +If +health, +a +said +Sarah, +and +are +The +and +portico, +of +than +Chisholm, +year +support +foes, +the +it +from +property +3085.9 +p!antalion +of +sum +same +in +thing +are +According +many +and +let +be +the +census +something +of +of +in +in +a +at +twenty +llrta. +sure +when +but +and +the +people +12 +said +p. +! +special +east +upon +will, +from +certain +close +I +sch-»o>. +dreams, +M. +in +knowa. +with +gfre +investigation +at +in +S +the +whereabouts +before +to +with +learn +rt +tin +leaves +historic +greater +an1y +natura +assessed +the +their +votes +used +taxpayer, +future +fifteen +the +it +to +13to21r4 +expert +now, +is. +or +the +of +military +ments, +latter +of +alone, +per +keeping +thewy +along +kitten, +one +attention +actual +In +heard +individuals +as +to +and +the +crock +this +a +tho +be +hence. +fur +sent +various +Nearly +captured +focal +a +94.9 +and +difference +needed +all +her +the +out +girl. +will +the +Gottfried +and +and +is +nm-t +secret +cel +with +to +t +of +a +copies +shall +in +the +with +Used +Cleveland +peace +skin, +reported +110 +same +be +Many +take +strictly +in +fruit +of +il +per +very +After +object, +of +merely +Pennsylvania +beat +tant +than +fancy +now +to +138 +give, +By +face +number +was +to +with +idol +resolved +Florence. +the +be +will +etful +discharged +ha +paid, +of +Hie +had +No; +hereby +the +was +though +Texas. +great +ing +only +t +fa +foot +ciieh +wanted +and +fancy +stallions; +ment, +back +barley. +or +being +Shapleigh, +as +was +lived +Claggett, +trade, +you +140—297 +forming +bounds: +make +known +Britain, +of +it +The +gation. +were +stituents +womanhood +said +|The +large +awhile +compartment, +to +unable +was +cent, +frustrated +many +penetrating +ed +we +Tne +how, +but +influence +cluding +Up-* +number +resolution +candidate +been +Compound +business +ing +himself. +Clark, +and +What +Domitianus +a +be +restore +l +and +The +told +ac- +levee +each +of +ties +You +bis +Eighty +will +will +tries +to +in +wealth) +the +power +In +division. +question, +thousandth. +by +tbe +aud +boys +Sec. +stirred +are +any +the +that +of +reaped +unlawful +meeting +appointed +Oo., +napkin +feet +drilled +point +wonderful +ginia +books, +Is +the +trict +quarter +approach +scholarship +as +confessed +large +be +the +I +road, +stately +careers +O'Brion +the +out +friends +vincing +went +directness +With +a +it +calculate +ami +longer +The +discusses +color +meets +aot +of +Robinson +itted +bowler +therefore, +that +spirit +Importance +human +Cuba, +the +Mr. +Iron, +and +B. +George +Japanese +worth +out +of +for +Atlantic +falsely, +making +dictate +is +a +mitted +40A +into +including +the +wonderful +It +been +recipro +faced +twenty-four +21, +a +see +that +room +and +ln +Invame +to +Fred +officer +clouds +coming +to +at +should +of +much +port. +war, +wondered +kept +an- +railway. +Missouri, +Cap¬ +dium +is +1-6" +morning, +a +small +shape +were +won- +were +top +will +feet +to +and +until +teacher +buildings +paper, +office +to +the +that +spring +this +and +voted +a +goes +Saturday +owing +powers +Greeks +appeared +yet +butts +present, +is +1 +F. +there +loss +rights +saiuo +might +others +bunker +Louts +utmost +not, +a +no +we +by +have +the +thev +it +picture. +that +the +spools +chair, +dangerous. +ments +the +P. +oftho +Raxporium +January +limit +dollars +the +the +much +most +‘‘similar +Mr. +long +up +is +em- +ambulance +be +for +young +driven +was +no +and +of +laying +is +one +about +of +and +will +chance +456 +they +for +p« +kho +reorganization. +ihe +arid +ami +that +does +wald, +will. +City; +he +unable +disaster +into +N +rich +of +ibai +said +er, +must't +the +by +for +88 +uuisance +heat +on +cabins. +watched +practical +what +point +Tho +and +on +marriage. +wooden +the +When +a +coloring, +good +mnnngement? +We +range +in +drug +istrati\e +ratio +the +as +by +iu +officers +llkohlmt +nerative +nowcompleted, +of +both +the +inches, +and +la +civilization. +he +. +which +<«f +use +sorry +than +than +tho +teen +bySection +so +0 +or +the +Louis +canoes +hich +thrown +of +will +were +go +theory +loss +present +assault, +influence +grass, +four +flute +sense, +district. +Knight. +city +mortgage, +South +electrical +as +to +aud +stand +been +in +are +Martha +wife +Harry +In +with +48 +greatly +county. +particularly +at +n.i +Teuefel +acquainted +employed +if +Valiant +hair, +this +proceed +govern- +He +the +cotton. +teeth, +of +patient, +than +of +the +extras +other +South +Trades' +He +the +with +and +as +by +stable. +that +resisted +honor +know. +element +be +reduction +the +cheery +been +con¬ +mimili +complaints +New +two +re. +exhaust- +days +noon. +of +strong +the +Elias +that +workshop; +ly +Lot +broth- +money- +meet +It +all +pays +a +made +the +of +asked +The +right +roads +house +one +$100,000. +case +l»>x +poor +entered +they +the +occurred +they +tended +ready +much +II +a +ot +the +the +is +of +wife +record. +mads, +at +munity +with +save +side +heco +and +as +Interest +opposite +Philips +and +United +which +Bibles +of +cue +collection +from +formed +said +ofKays +graceful. +Excepting +an +parenta +story +by +ani +all +the +market +He +and +the +that +should +in +the +. +the +addition +call +bond* +the +future +tiiem +cast +pledge +for +per +tween +aad +and +the +this +glass +veterans +here, +tion, +Cooper. +the +Down +defense +of +contra +Mr +see +shall +that +and +in +has +negative +rather +lightning +the +Is +his +19th +a +tietllids +last +when +and +this +the +bill, +that +misstep, +knife +of +was +age. +formed +arrested +tbelt +to +drops +would +the +materially +bank +with +be +their +director. +several +thing +than +ponds +and +be +Capt. +has +that +ant, +dishes, +To +president’s +and +is +tliirtv-tive +ich +went +are +courtesy +outside +tive +a +blue +sinking +have +I +said +authority, +is +the +got +Clark, +long +hand +Oslin, +not +J +Sunburst, +for +this +tho +to +braid +south +such +for +Habakkuk +of +continues +aolemnized +market +to +iB +count-id. +never +was +his +because +and +alry +provided +Mr. +; +to +Try +By +strong +ultimately +S^V +money +mestic +battles, +for +mestic +public +decently +of +teresting +Miss +dihners" +thing +minds +two +the +the +he +the +clothing. +the +talks +last +condition +pulp +over +In +immigrants.18,902 +end +the +wedding. +tor +now +whoop*, +'"rt +regrets, +erators +it +yrs. +total +leave +Here +with +cerebrum--the +overcoat, +his +of +is +Comstock +Register +air +have +above +these +company, +to +false +the +aciompli>hin:{ +Lafayette +were +differs +in +the +Alartin +laws, +spoiled +appear +luch +Court, +raflway +proportion +be +quitting +and +fungus +I +of +hardship +object, +best +thence +is +it +owner +boon +notifi- +the +due +Railroad +Into +successful +and +man +right +11a1 +artlcssness +difficulties +construction +get +but +the +and +Gaining +County, +contest, +the +which +want +in +deficiency. +of +representing +of +the +edge +n +teacher +not +us +yelling +Mrs. +stffi- +plant, +students +of +front +dent +stubborn +Now, +on +like +or +senator +at +a +250 +ngersoll +such +at +.2 +it. +had +ing +eighteen +oi +ticket. +good +they +the +the +who +Hrooks +"ever +marched +its +as +mistake, +national +Europe +1 +the +the +to +Walter +will +Democrats +men +running +up +not +persons +Mr. +own +not +so. +on +at +picked +one +remains +In +from +hat +tmd +the +er +said +nation. +not +sung +those +towards +use +the +ingniouey, +or +first +at +their +tample +have +the +bad +jected +in +moat +full +would +Bros., +the +to +larce +all. +tu +a +and +candidacy +and +intelligence—nay, +property +ment, +throwing +people +de¬ +vegetable +San +32,027 +& +and +in +as +droppings +out +that +tight +much +- +with +Senecas, +Be +they +trouble +mostly +Its +lature +re- +he +Rents +bom­ +ule +to +not +ex- +And +vou +Gemeinde +timo +that +from +were +the +offi +southeast +in +100 +tba +evades +where +par. +any +Colonel +language +the +in +that +which +crop, +draining +on +now +at +derisory. +camp +deg. +*1,000 +situations, +of +fifty +for +turtle. +ar¬ +instances. +continually +Finally +on +cultural +him. +of +W’hat +Thomason, +a +being +society +corner +states +in +severe +week, +the +took +troy +tomb +rying +be +created +nnd +schools +the +Cathcart +neighbors; +world +every +responsible +raits +attempted +Idaho +to +S. +its +coction +he +anything +Beauties +Hook +on +be- +cannot +cushion. +head +and +Minette. +running +on +a +lit +Whoever +the +consideration. +of +knees, +dred +Company. +Tho +you +Largey, +in +me, +"Ilia +South +said +the +practice +without +hereditaments, +others +Se +wisely +one +Execution +asked. +greeted +Charles +of +opposed +at +many +« +venerable +the +not +I’m +Their +season +and +the +more +in +As +"fou +persons, +are +who +which +ed +suction +the +west +case. +tees, +day +placed +pleases +fire +efforts +slow +tent +know +notice +eonfeesed +along +and +their +a +mora +nnd +in +position +the +from +budgetary +it +possessed +figures +lands +understand +work +to +the +the +A. +Crippled +fnlsh. +be +and +the +Besides +a +been +to +off +The +complete +It +vert +a +bath; +the +to +decided +and +not +or +guard +out +ley; +tin: +as +of +As +afford +iip +stead +But +$5.00, +came +dnn +Gospel +all +hart +distance +the +a +colic, +and +back, +King +was +ablest +aviator +ward +loge. +witness +they +armaments +the +pupil +rectos +to +two +suggested +Is +If +Cuban +Pasqual +planted +the +family +Vesuvius +as +the +hand +temple +Ah! +lightning +ta +dear +be. +officers, +bill +block +applies +and +a +legislative +are +knights +is +railroad +the +about +some +lor +your +the +lot +of +fourth +side +on +these +State +wo +ol +the +side +knowledge +the +b3ck +first +as +well +assisted +used +Pittenger; +showed, +they +tion +vote +; +formal +her +the +son +of +the +to +and +the +report +Mexican +Branch +qaarter +the +derived +Farland +capital +Majorca +2t;tl; +found +in +Wrlghl +the +comfortable +beautifying +make. +could +be +this +of +millions, +C. +at +and +Adele +know +lectman +be +not +brush +probability +the +object +have +of +wish +Navarre +a +with +more +admit +have +the +your +Monday. +the +little +of +Virgin. +a +Of +night +for +prey, +St. +months. +Leaton's +training +the +for +Wo +having +Cal +boy. +the +fection +backers +ali.tya +the +tians +last +of +portions +that +residing +supply +who +John +to +sot +sleep +been +Co., +ing +with +vain +bourbons, +hand +belonged +business +go +refer +regarded +Armstrong +numbers +us +more +Reference +sary +of +worn +Some +and +wheel +Mr. +of +and +deeply +$395 +January +behind +ie +male +no +perties, +time +county +of +and +pillage +there +incapable +euch +her +and +only +2000 +follow- +Minnesota +amongst +tbat +want +Passenger +con- +lation +as +to +employ- +conceivable +with +of +has +public +1887. +power +Other +for +and +Arc +prayer +ciety. +command-in- +in +the +A. +prize +clared +to +map +hauling +Afrioa, +ple +at +no +upon +language +I +the +have +the +also +her +him +south +the +the +yan +George +from +in +carried +their +ty +noi +ents, +poor +editions, +generated +of +dam: +ing. +the +marked +tho’ +State. +extinguished +bear· +and +of +order +taught +doctor +4%; +til +insure +party +his +mansion +his +the +character +end +a +is +insane +holding +dress +and +farmers +Mr. +that +committee +Wa +to +the +l +tell +which +doesn't +this +that +Tobin +mulst +fifty +a +fall +remedial +farming +is +in +melts +connected +men +recorded +throats!) +man +which +in +at +and +air- +the +the +as +lurt;o +plainly +about +a +opposing +these +185.L +has +by +to +wha +of +the +was +this +was +him +Missouri +ed +that +tenround +of +a +that +ntern +mortgage +and +it +its +the +legal +of +women +from +Farm +binding +.3; +India +a +the +public +if +made +th-lr +the +all +are +practice +service +last +as +worked +the +ed +It +Tho +Routes +general +a +in +was +o( +been +turned +wordo. +years, +no +of +won, +later. +but +quick +The +to +of +diluted. +therefore +aud +of +his +their +raising +has +the +two +was +announced +Fort +the +more +colored +was +altogether +wide +Wayne, +mouth +that +of +that +said +S +matters +that +fer- +wished +came +to +alleys +occupation +every +stage +hide) +true, +directors, +of +If +was +greatest +never +by +memorandum. +in +leaves +has +for +block +which +recot-detl +cost, +Williams, +tendant +the +the +Cheyenne +Hampton, +mania, +Dobbs +beau +made +whether +a +vation. +boen +stated +queror +seeming +of +provide +shop +Kusaiuu +ed +punish +she's +of +train +Richards +the +by +a +of +All +and +of +rules +Kings +centers, +brother's +wise +Armstrong +F. +to +foundations, +the +ror, +lace +cases +on +abandoned. +ward +out +de­ +the +had +of +polar +his +on +them +wrong +make" +guerilla +indeed +he +themselves +ballot. +In +gentleman +plan +.old, +cies +Binaitlc +i +many +that +Womb, +in +to +reclaimcd +France +evening, +is +When +the +had +inserted +wedged +N. +sible. +James +bave +the +was +footing +board +Nile +other +from +which +graves +in +ireat +DOSED +had +rooms +feature# +belie*« +and +MacVeagh’g +darling +good, +as +on +was +big +union +the +when +shoddy +nobb* +street +cost +cheap +the +company +our +year, +answer +gov- +marks, +Lynch +sensitive +milk +term +too +perfectly +the +year +of +Dr. +carrying +Dorry.” +muuy. +The +sion +pretty +Mrs. +I +done +as +out +the +inches +lhe +no +an +in +to +er +crook +has +of +bloody +1:5a +can't +houses. +delay. +a +day +as +destroyed; +of +of +private +jets. +and +see +"cru- +voted +large +gave +aro +a +provided +up—over +the +Welsh +of +of +oned +A +(according +white +present +his +000 +believed +not +of +and +cesses +of +rebored. +be +bagó +cent +or +there +Indeed +and +him, +pleased +ther.ce +or +plain- +that +organizations +the +in +who +am +ago +17 +it +may +of +a +native +States, +one +not +address +of +to +40 +legislation +day's +have +were +she +more +and +ohanfee, +they +the +of +vegetables, +house +beginning. +soil +can +the +of +above +of +soon +handed +right +, +inches; +to +made +chairman +Pvo +stitution +taxes +of +for +ense +and +ground. +and +and +sister +Cora +salecontained +made +also +Gloves, +desert +was +president +Asylum, +in +provincial +a +7.50!S. +not +tho +of +7 +answer +to +surround +80 +but +in +a» +of +to +Maine +they +accounts +had +not +was +anchor, +on +it +.nnd +so +States; +of +great +trom +burglary +pre- +a +he +farm +quit +his +owing +to +num, +ily +hut +George +toe +whether +Here +to +evidently +headed +It +is +been +then +nine +betweeu +The +to +north, +hands +more +commodious +arm +other +there +she +in +. +41 +includes +bill, +tools +It +partially +the +smoking +was +substantiate +thick +seem +cot +niUfit +of +5,804 +the +C. +endeavor +pay +the +in +seventeen +many +some +a +the +caught +of +and +trust +borrowed +is +People +ton +of +and +and +made +handsome +lower +anrl +Tink, +has +and +iusignificant +We +out +publicans +the +A.) +numbers +see +then +above +Best. +Alpe, +would +our +and +elf +humility, +detection, +of +Ned +onto +thereof +in +is +if +et +in +astonishing +had +one +thereof +And +it +There +in +are +MM +ouce +of +speed, +days, +Allen +him +would +six­ +floor, +it +Kester +a +8.E +have +Live +mass +should +In +two +crawled +a* +the +force +Court. +orf£0 +itiou. +or +had +tHat +Truiits. +in +the +purpo-se. +only +nccdcd +out +limits, +Court +boy. +and +most +teach- +ensilage +near +home +hows, +it +furm, +with +ilck +by +was +biting +the +place +erroneous, +refused +Prescriptions, +the +patriot +become +No. +the +maintained +*aid +her +a +in +dhroo +very +suredly, +ut +we +For +sale +is +is +them +period +the +They +Bomervilles' +than +sent +Its +least +festo +fail, +respects, +stop +brown +the +hint +cast +first +G, +know +manufacturing +was +as +the +their +wrote +last +in +Payne +representation, +never +for +the +instant +tvke +re +no +Rupert +strict +had +discrimination, +know +ha8 +and +largely +have +Their +overcoats +Itself +his +offices +city +money, +Borne +small +ti +min. +tho +be +Pc- +is +close +and, +gether +aferwards +goods +writing. +of +spent +may +sucli +countv, +he +much +went +house +to +you +good +of +the +Huckins +the +storm +his +are +every +portrait +over +is +P. +We +as +600 +the +everybody +to +the +was +small +the +as +of +Orleans +mide +or +scrlbod +him. +open +sw. +decended +leave +always +Kirar +of +by +Isaac +sun's. +tlie +We +charged, +the +tenders +diggings. +be +the +when +iar +a +lelied +river. +the +the +a +States +a +In +their +with +might +abridge +ment +enough +S. +ami +Seven.Townehip +which +and +4%a.. +said +economy +fifty +Building, +people +20,000 +to +onea. +red +the +5.30 +other +promptly +to +society. +was +Numerous +one +and +mercial +right +destruction +those +1 +the +more +Albany +that +fresh +means +same +adCorkscrews, +for +It +assailed. +Red +that +White +a +minors +come +paper +be +walls +was +her +nnd +friend +of +rest +little +pro +and +at +fear +plan, +jfte +To +corner +returns +the +call +delegates +league +corporations +aGccrtaln +and +ham +of +And +market +Church +camp +diseases +The +first +silence +just +hour +heard +that +Michigan, +will +we +way +D. +through +me +front +to +boy. +the +small +nrst +An +easily +trying +full +in +a +ore +man +slide +of +It +to +jeter, +is +the +does +no +of +ii: +in +and +special +the +men +Nowhero +of +began +them +of +but +Shaw, +length +for +Sir, +by +intrinsic +of +the +of +the +Bteamer's +for +the +these +2. +But +No. +simply +birth +itfoa +by +glad. +inst +and +there­ +been +stated, +Magistrate, +that +water, +I +muslcnl +less +who +the +before +stand +then +the +the +utterly +The +other +somewhere +under +than +of +Louisville +tnat +was +long +both +these +élections! +He +, +the +re.Linu-d. +Oulanfc +to +consternation +tanner +was +less +whole +amination +out +ten +which +evidently +assessment +attacked +iM.uiul +be +The +inSlidell, +fact +to +appointment, +fore +de +same. +ili. +they +ing +which +assignment, +town +so +any +odd +dated +of +charged, +the +of +16 +blood, +of +10, +of +M +apropos +of +before. +the +1907, +ill +it +horse +to +we +to +continent. +chief +piece +supervisors +idols +William +wide, +of +was +a +mise +made +to +charge +been +his +paid +yeara +take +seek +of +to +straightway +prove +my +or +at- +and +truck +that +Rolapp +think +upon +of +to +will +and +ini-'tt +of +ularly +one +conanders. +cap +stock, +and +is +reasouaMe +to +and +at +failing +the +de- +it +feed. +now. +of +has +Arlington +away +the +that +tain +S +premisesamount­ +loyalty +remaining +attorney +partially +through +get +references +constituted +portionate +rendered +another +he +In +talnl) +the +was +for +plant +bond +o'clock +tillie +form +wishedTor, +Moeee +been +the +through +tared +ways +that +"Wine." +schism +the +to +become +Many +which +The +of +of +ouBly +with +ou +to +amount +the +add +power +the +is +I +to +the +State: +lniULNE +that +Marlon +tried +was +Here +It +east +in +Equitablo +Le- +months, +s +the +upon +work +"Aile, +would +older +will +long +per +Now, +in +any +|M*nce +dercd. +which +meet +are +The +necessary, +it +Dewalt, +apparent +called +of +went +ripe +though +lar +which +be +ALL +down +con- +days +as +addressing +field +the +he +to +his +great +city +and +of +cient +year +story +should +sary +the +fcr +has +of +hound +31, +fund +off +she +of +in +necessity +the +to +he +If +Captain +grent. +me. +acertaln +piece +and +branch +good +await +with +capital +have +poration +transportation +cash, +but +the +begins +and +that +the +G +performance +and +his +Uouse. +is +by +obstacles +01 +then +are +that +Marbi +the +making +rain +. +capacity. +hold +4S +do +amounts,but +000 +thence +should +bare +year +front +these +given, +editor +he +credita- +in +«Halt«, +congress +Willard, +various +forerunner +Mrs. +by +lime +of +Jarrard, +human +were +paid, +also +Charles +of +89, +on +by +that +her +ing +of +iuUx +road, +the +"great +free +most +presence +we +her +the +to +24 +1036: +cycle +multiply +Moundsville: +many +border. +should +and +against +Mansell +boundary +the +a +ably +in +and +cities +could +reverse +the +aaaured +gave +a +that +and +for +which +shall +when +Rally +seldom +and +until +thel. +all +"Here, +stab;le +for +and +These +they +are +; +from +:.iind +was +entirely +I +sary +tho +term +(3L' +that +been +object, +court +county +see +of +of +may +that +subscriber, +has +* +I +picnic +of +has +ef- +large +influence +alcohol +production +to +down +was +membership +man +as +untouched. +predatory +lands +a +of +it +tissue, +consecrated +degreee +frames +bis +signs +or +d +drawal +threatens +procure +a +of +more +common +as +came +the +a +—i +it +in +towards +old, +ot +station +intricate +authority. +bore. +went +m +he +They +8th +farmers +he +titter +visitors. +haa +as +setting +the +hausted +Los +window +The +made +spring +entry, +such +man +enormous +has +*vcr +at +bov +forcible +after +will +carried +ofloe, +of +Corey +o +irmly +need +always +These +time +railroad. +sho +after +Bata**** +by +letters +oppressive +some +Eve'n.if +dipping +the +of +any +was +the +when +the +rise +good +the +pantaloons +of +the +might +Louis +lodgers +finally +country +two +licked +induced +being +lattor +not +on, +the +29, +of +was +getting +jw +a +by +such +aad +The +graphically +their +lific +risen +my +room +volves +com- +flock, +heel, +object +where +on +two +within +ded +be +bring +advancing +the +and +ed +of +reaton +the +the +It +stitution +lights, +gdn. +he +great +over +look +Imperilled +41jc; +you +thing +had +on +school +Irom +amount +Five +name +o’clock. +and +i"st +may +burned +and +and +Carneal, +the +prairie, +8 +Mr. +which +ing +burned +Pennsylvania +a +there +earth +ol +day +from +incunibering +quarter +Ua +: +was +ate +that +and +to +to +|il. +two +the +thatrEnglish +famous +the +rou, +would +tbe +to +ceremony. +His +man +things, +iniiie +possible +ts +of +member +and +and +business. +The +not +in +boldly, +could +day. +spoken. +1877. +rain +X. +occurred +Juno +such +1 +said +master +stiill +or +of +veitness.') +the +language +on. +fore +in +egislators +a +any +with +religion +^corporations +tho +Bethlehem +of +time +Schedule +I +accord- +hung +hours +sub +descend +possible, +together +risk +United +whose +3Y4 +In +from +Hart, +not +ular +& +the +a +angry +Is +the +mem- +gives +Calmul, +are +walks +house +done +Mills, +it +is +formal +sec +fiieless +among +where +therefore, +the +in +cabin. +school +else +mony +of +degrees +Smith. +a +and +t +and +the +opened +Hand +the +Europe, +as +its +poles +Greenwich; +will +Ev +a +fly's +it +1900. +she +of +clearing. +the +withdrawn. +the +fourth +decision +Mr. +she +with +plank +beUlnd +the +the +this +our +come +and +The +where +that +To +once +but +steady +jot +life +Wagner's +Carolina +a +Judge +in +oth- +paid +I +or +the +of +or +one +shown +crooked; +of +and +grind +A. +urge +giving +their +It +County, +intelligence +by, +lambs +I +to +certain +000 +S. +Dr. +whole +coffee +among +act +line +not. +used +Christmas. +llajses +complete +now +construction +and +white +any +was +the +and +second +local +other +to +tender +a, +Richard +him. +in +that +age, +Pendleton, +are +villages +made +interest +ald +familiar +questions +the +even +traffic +made +like +esty +gasps. +Tee +Iowa; +and +were +again +wives +can +&c. +the +of +revealed. +reduced +the +when +displays +first +inance +. +has. +The +a +on +be +makes +h» +state, +people +Louis +chance +1X68.2 +animal +been +and +half +cured. +the +had +movement +In +is +the +ho +said +himself +function«, +by +lot +that +paas +jt +aveuue +of +rise +aale +way +The +that +later +interest +are +and +than +tried +can, +If +night, +friend. +ou +the +peopile +was +it. +has +the +a +be +the +40 +a +waukee +women +pushed +in«erects +confirmation +the +He +and +this +at +most +Hocking +Lake +the +make +tion +was +Newton: +nation +block +titl< +so +before +bi +ground +preachin', +Orr +Yes. +Leastwise +startling +c~ +Stomach +by +come +had +p)ract.icable; +Interest +much +as +until +section +stables, +hundred +creditors +cove +Hay, +G +pour +minutes +harbor +year +Mr. +Vaccine +me. +Union +Cor. +bth +Robert +the +King. +4, +The +In +first +shown +ss +ficial +the +lung +poppy +of +relieved +the +ior +followed +heartbeatings. +1, +in +his +the +hle +been +tell +It +copies +set +hereby +and +paasliic +for +for +at diff --git a/train/hate-speech-info.tsv b/train/hate-speech-info.tsv new file mode 100644 index 0000000..76a82e1 --- /dev/null +++ b/train/hate-speech-info.tsv @@ -0,0 +1,432022 @@ +0 0.0895 +0 0.0908 +0 0.1107 +0 0.1172 +0 0.1120 +0 0.1061 +0 0.0951 +0 0.2029 +0 0.0941 +0 0.1931 +0 0.1193 +0 0.2925 +0 0.1124 +0 0.0818 +0 0.2721 +0 0.1235 +0 0.0608 +0 0.2043 +0 0.0896 +0 0.0602 +0 0.0939 +0 0.0777 +0 0.0569 +0 0.0963 +0 0.2997 +0 0.0940 +0 0.0681 +0 0.1162 +0 0.2426 +0 0.1031 +0 0.0667 +1 0.8738 +0 0.0866 +0 0.1304 +0 0.1593 +0 0.1264 +0 0.1373 +0 0.0947 +0 0.0525 +0 0.0586 +0 0.0928 +0 0.1147 +0 0.0550 +1 0.8077 +0 0.0885 +0 0.1250 +0 0.4068 +0 0.4742 +0 0.4291 +0 0.0894 +0 0.1425 +0 0.0946 +0 0.1057 +0 0.0751 +0 0.0575 +0 0.2572 +0 0.1346 +0 0.2753 +0 0.0894 +0 0.1315 +0 0.0611 +0 0.1236 +0 0.0996 +0 0.0823 +0 0.0846 +0 0.1143 +0 0.3185 +0 0.1036 +0 0.3286 +0 0.1009 +0 0.1101 +0 0.1800 +0 0.0916 +0 0.1812 +0 0.0446 +0 0.0638 +0 0.1547 +0 0.1325 +0 0.4732 +0 0.1699 +0 0.0994 +0 0.3055 +0 0.0654 +0 0.2529 +0 0.1629 +0 0.0848 +0 0.0820 +0 0.0981 +0 0.1514 +0 0.1280 +0 0.0636 +0 0.0734 +0 0.0775 +0 0.0713 +0 0.0561 +0 0.4191 +0 0.1683 +0 0.0704 +0 0.0404 +0 0.1768 +0 0.2225 +0 0.1923 +0 0.4714 +0 0.0548 +0 0.1576 +0 0.1262 +0 0.0534 +0 0.1427 +0 0.1593 +0 0.0955 +0 0.2497 +0 0.1008 +0 0.1405 +0 0.2839 +0 0.1314 +0 0.0650 +0 0.1273 +0 0.1131 +0 0.3501 +0 0.0864 +0 0.1368 +0 0.0705 +0 0.1826 +0 0.1542 +0 0.0935 +0 0.2037 +0 0.0819 +0 0.2516 +0 0.3272 +0 0.0549 +0 0.0730 +0 0.1993 +0 0.1957 +0 0.2292 +0 0.2099 +1 0.8213 +0 0.1737 +0 0.1215 +0 0.0467 +0 0.1253 +0 0.3743 +0 0.1583 +0 0.0769 +0 0.0510 +0 0.0986 +0 0.0479 +0 0.0756 +0 0.0576 +0 0.0594 +0 0.0819 +0 0.0724 +0 0.0983 +0 0.1290 +0 0.0762 +0 0.0853 +0 0.1595 +0 0.1264 +0 0.0311 +0 0.0747 +0 0.0702 +0 0.4786 +0 0.0931 +0 0.0963 +0 0.0781 +0 0.0660 +0 0.1505 +0 0.0701 +0 0.0738 +0 0.0510 +0 0.0936 +0 0.0699 +0 0.1215 +0 0.0925 +0 0.2648 +0 0.0352 +0 0.3319 +0 0.0475 +0 0.1097 +0 0.2078 +0 0.0393 +1 0.7731 +0 0.0723 +0 0.1262 +0 0.0421 +0 0.0978 +0 0.2769 +0 0.1302 +0 0.1981 +0 0.1512 +0 0.0717 +0 0.0567 +0 0.0675 +0 0.0937 +0 0.1810 +0 0.1688 +0 0.1666 +0 0.0739 +0 0.1210 +0 0.1135 +0 0.0939 +0 0.1619 +0 0.0614 +0 0.2041 +0 0.1154 +0 0.1173 +0 0.3167 +0 0.0725 +0 0.1086 +0 0.0835 +0 0.5908 +0 0.1432 +0 0.0453 +0 0.0627 +0 0.0923 +0 0.1367 +0 0.2153 +0 0.1276 +0 0.7362 +0 0.0846 +0 0.1030 +0 0.1086 +1 0.8604 +0 0.1253 +0 0.0657 +0 0.0858 +0 0.1025 +0 0.1067 +0 0.0374 +0 0.1795 +0 0.1483 +0 0.6342 +0 0.0894 +0 0.1087 +0 0.0423 +0 0.1004 +0 0.1049 +0 0.2333 +0 0.0349 +0 0.0671 +0 0.1043 +0 0.2447 +0 0.1290 +0 0.0767 +0 0.1365 +0 0.1004 +0 0.0597 +0 0.0632 +0 0.2583 +0 0.1996 +0 0.2588 +0 0.0611 +0 0.0649 +0 0.0609 +0 0.1260 +0 0.1342 +0 0.2507 +0 0.0495 +0 0.0994 +0 0.1656 +0 0.0432 +0 0.1824 +0 0.0910 +0 0.1186 +0 0.1005 +0 0.1054 +0 0.0864 +0 0.0625 +0 0.1357 +0 0.0625 +0 0.1071 +0 0.0940 +0 0.0787 +0 0.1997 +0 0.2787 +0 0.0457 +0 0.0920 +0 0.1113 +0 0.1581 +0 0.2410 +0 0.0706 +0 0.0620 +0 0.1728 +0 0.0595 +0 0.1692 +0 0.1250 +0 0.1508 +0 0.1043 +0 0.0570 +0 0.0561 +0 0.1795 +0 0.3584 +0 0.1444 +0 0.0710 +0 0.0869 +0 0.1559 +0 0.0730 +0 0.1635 +0 0.4062 +0 0.1166 +0 0.0488 +0 0.0609 +0 0.0848 +0 0.1239 +0 0.1872 +0 0.0975 +0 0.0720 +0 0.5731 +0 0.3024 +0 0.1523 +0 0.0691 +0 0.0987 +0 0.5769 +0 0.2024 +0 0.0850 +0 0.0434 +0 0.0528 +0 0.2583 +0 0.1437 +0 0.4048 +0 0.1435 +0 0.2377 +0 0.0844 +0 0.0874 +0 0.0441 +0 0.0761 +0 0.0629 +0 0.1843 +0 0.0780 +0 0.2086 +0 0.1486 +0 0.0700 +0 0.2034 +0 0.0854 +0 0.0790 +0 0.1050 +0 0.1158 +0 0.0530 +0 0.0698 +0 0.1066 +0 0.0707 +0 0.2105 +0 0.2112 +0 0.0478 +0 0.1433 +0 0.0796 +0 0.0961 +0 0.1556 +0 0.1969 +0 0.0471 +0 0.1883 +0 0.0852 +0 0.1012 +1 0.7877 +0 0.1535 +0 0.0793 +0 0.0738 +0 0.0422 +0 0.1144 +0 0.0771 +0 0.0861 +0 0.1003 +0 0.0693 +0 0.1450 +0 0.0714 +0 0.3982 +0 0.0793 +0 0.0881 +0 0.1355 +0 0.0442 +0 0.0921 +0 0.1758 +0 0.0338 +0 0.3796 +0 0.2102 +0 0.5227 +0 0.0592 +0 0.0382 +0 0.2427 +0 0.0849 +0 0.0581 +0 0.1415 +0 0.2030 +0 0.0717 +0 0.0825 +0 0.4252 +0 0.0971 +0 0.3061 +0 0.0477 +0 0.4297 +0 0.0915 +0 0.1206 +0 0.1588 +0 0.0495 +0 0.4359 +0 0.0731 +0 0.1270 +0 0.1103 +0 0.5611 +0 0.1844 +0 0.1731 +0 0.2212 +0 0.0837 +0 0.1000 +0 0.0641 +0 0.1222 +0 0.0656 +0 0.0380 +0 0.0878 +0 0.0847 +0 0.1075 +0 0.0916 +0 0.0322 +0 0.5289 +0 0.1436 +0 0.0612 +1 0.8021 +0 0.0642 +0 0.0298 +0 0.1861 +0 0.0748 +0 0.2773 +0 0.1900 +0 0.0455 +0 0.1232 +0 0.1428 +0 0.0504 +0 0.2654 +0 0.0565 +0 0.1372 +0 0.0790 +0 0.2690 +0 0.0898 +0 0.5640 +0 0.0784 +0 0.1225 +0 0.2129 +0 0.1771 +0 0.1238 +0 0.2793 +0 0.0673 +0 0.1929 +0 0.0522 +0 0.0389 +0 0.0447 +0 0.0583 +0 0.1334 +0 0.1616 +0 0.3308 +0 0.0753 +0 0.1502 +0 0.0954 +0 0.0698 +0 0.1855 +0 0.1736 +0 0.1494 +0 0.2803 +0 0.1834 +0 0.0876 +0 0.4544 +0 0.0773 +0 0.0970 +0 0.0548 +0 0.0641 +0 0.0794 +0 0.0846 +0 0.0712 +0 0.0383 +0 0.0587 +0 0.0763 +0 0.1684 +0 0.1350 +0 0.0660 +0 0.1385 +0 0.1092 +0 0.1613 +0 0.0445 +0 0.0460 +0 0.1834 +0 0.3118 +0 0.1198 +0 0.0800 +0 0.1072 +0 0.0857 +0 0.0337 +0 0.0838 +0 0.0718 +0 0.1014 +0 0.1165 +0 0.1374 +0 0.1360 +0 0.0850 +0 0.4581 +0 0.0832 +0 0.0851 +0 0.1581 +0 0.0861 +0 0.0962 +0 0.1845 +0 0.1714 +0 0.0620 +0 0.1275 +0 0.1172 +0 0.2729 +0 0.0896 +0 0.2277 +0 0.1181 +0 0.0790 +0 0.1917 +1 0.7909 +0 0.3646 +0 0.1178 +0 0.0831 +0 0.1055 +0 0.0824 +0 0.0859 +0 0.2070 +1 0.7705 +0 0.0790 +0 0.1580 +0 0.0519 +0 0.1050 +0 0.0997 +0 0.1145 +0 0.5653 +0 0.3303 +0 0.4066 +0 0.2477 +0 0.1060 +0 0.1804 +0 0.1428 +0 0.0544 +0 0.3138 +0 0.1711 +0 0.1625 +0 0.1078 +0 0.1187 +0 0.1359 +0 0.1702 +0 0.6569 +0 0.1255 +0 0.1089 +0 0.2581 +1 0.8408 +0 0.0654 +0 0.2509 +0 0.0846 +0 0.1295 +0 0.0457 +0 0.6282 +0 0.2667 +0 0.1740 +0 0.1400 +0 0.0687 +0 0.1138 +0 0.0954 +0 0.0848 +0 0.2209 +0 0.0814 +0 0.0917 +0 0.1622 +0 0.2258 +0 0.0488 +0 0.1148 +0 0.0767 +0 0.1197 +0 0.0766 +0 0.1310 +0 0.1279 +0 0.0501 +0 0.0568 +0 0.0965 +0 0.0412 +1 0.8814 +0 0.3724 +0 0.0857 +0 0.1041 +0 0.1323 +0 0.3527 +0 0.0725 +0 0.3000 +0 0.2091 +0 0.0538 +0 0.0688 +1 0.7938 +0 0.0998 +0 0.1006 +0 0.5261 +0 0.0479 +0 0.0644 +0 0.0937 +0 0.2071 +0 0.1200 +0 0.0967 +0 0.2505 +0 0.0939 +0 0.5833 +0 0.1203 +0 0.0712 +1 0.8609 +0 0.1231 +0 0.0866 +0 0.1591 +1 0.8712 +0 0.0684 +0 0.1512 +0 0.0818 +0 0.0765 +0 0.0908 +0 0.0484 +0 0.1738 +0 0.1162 +0 0.0422 +0 0.0519 +0 0.0831 +0 0.0735 +0 0.1496 +0 0.0825 +0 0.0646 +0 0.1511 +0 0.1691 +0 0.2204 +0 0.1533 +0 0.1106 +0 0.1190 +0 0.2047 +0 0.0826 +0 0.0553 +0 0.1098 +0 0.0986 +0 0.6569 +0 0.1341 +0 0.1203 +0 0.1012 +0 0.0977 +0 0.1445 +0 0.0547 +1 0.8782 +0 0.2383 +0 0.1067 +0 0.0917 +0 0.1563 +0 0.1069 +0 0.1287 +0 0.1036 +0 0.1036 +0 0.2117 +0 0.2500 +0 0.1054 +0 0.1123 +0 0.1581 +0 0.1136 +0 0.1039 +0 0.6580 +0 0.3391 +0 0.1766 +0 0.0888 +1 0.8152 +0 0.1806 +0 0.5850 +0 0.0704 +0 0.0814 +0 0.0990 +0 0.1683 +0 0.0939 +0 0.1056 +0 0.0829 +0 0.0626 +0 0.4657 +0 0.1786 +0 0.0799 +0 0.1114 +0 0.1522 +0 0.1119 +0 0.2645 +0 0.0915 +0 0.0894 +0 0.0856 +0 0.1083 +0 0.0941 +0 0.0639 +0 0.0897 +0 0.0808 +0 0.2399 +0 0.3141 +0 0.0960 +0 0.0551 +0 0.0650 +0 0.0940 +0 0.0685 +0 0.1556 +0 0.1616 +0 0.0584 +0 0.0987 +0 0.1110 +0 0.0445 +0 0.1002 +0 0.2411 +0 0.2267 +0 0.1703 +0 0.1725 +1 0.8368 +0 0.2394 +0 0.1110 +0 0.1473 +0 0.0863 +0 0.3264 +0 0.1197 +0 0.1521 +0 0.0563 +0 0.1217 +0 0.0776 +0 0.0547 +0 0.0752 +0 0.1809 +0 0.0457 +0 0.1689 +0 0.0495 +0 0.1243 +0 0.0925 +0 0.2015 +0 0.0793 +0 0.2405 +0 0.0722 +0 0.0614 +0 0.0703 +0 0.3688 +0 0.1255 +0 0.1401 +0 0.0699 +0 0.0636 +0 0.1184 +0 0.4654 +0 0.1343 +0 0.1443 +0 0.0828 +0 0.2166 +0 0.0827 +0 0.2576 +0 0.1396 +0 0.0545 +0 0.1588 +0 0.1130 +0 0.0657 +0 0.1453 +0 0.0945 +0 0.2250 +0 0.0979 +0 0.1328 +0 0.1083 +0 0.1006 +0 0.0471 +0 0.0674 +0 0.0596 +0 0.0371 +0 0.2405 +0 0.0697 +0 0.1233 +0 0.0874 +0 0.1338 +0 0.2215 +0 0.0692 +0 0.2314 +0 0.0740 +0 0.1386 +0 0.1756 +0 0.0802 +0 0.1376 +0 0.2746 +1 0.7769 +0 0.0835 +0 0.0877 +0 0.1309 +0 0.0915 +0 0.0681 +0 0.0387 +0 0.1066 +0 0.0849 +0 0.1739 +0 0.1088 +0 0.0506 +0 0.0463 +0 0.4494 +0 0.1059 +0 0.3662 +0 0.0913 +0 0.1348 +0 0.0699 +0 0.0407 +0 0.0539 +0 0.1873 +0 0.0998 +0 0.1113 +0 0.3345 +0 0.1249 +0 0.1481 +0 0.0732 +0 0.0466 +0 0.0920 +0 0.0750 +0 0.0777 +0 0.0752 +0 0.0862 +0 0.0550 +0 0.5378 +0 0.0526 +0 0.1118 +0 0.1306 +0 0.0667 +0 0.1010 +0 0.2589 +0 0.0923 +0 0.0854 +1 0.8979 +0 0.1352 +0 0.0591 +0 0.1023 +0 0.1728 +0 0.2426 +0 0.1215 +0 0.2893 +0 0.1231 +0 0.0445 +0 0.0795 +0 0.1951 +0 0.2122 +0 0.1014 +0 0.1424 +0 0.0686 +0 0.2592 +0 0.0848 +0 0.4212 +0 0.1987 +0 0.1102 +0 0.0791 +0 0.6050 +1 0.7892 +0 0.1285 +0 0.1487 +0 0.1684 +0 0.1629 +0 0.3230 +0 0.2552 +0 0.0778 +0 0.1142 +0 0.3178 +0 0.0926 +0 0.1103 +1 0.8252 +0 0.0589 +0 0.0576 +0 0.3109 +0 0.2764 +1 0.8583 +0 0.1002 +0 0.1711 +0 0.0861 +0 0.0903 +0 0.1651 +0 0.0467 +0 0.3717 +0 0.1004 +0 0.1225 +0 0.1519 +0 0.1198 +0 0.0582 +0 0.1665 +0 0.1137 +0 0.0816 +0 0.1157 +0 0.0507 +0 0.1139 +0 0.0505 +0 0.0626 +0 0.0449 +0 0.0848 +0 0.1940 +0 0.0476 +0 0.3086 +0 0.1271 +0 0.0885 +0 0.0714 +0 0.1382 +0 0.0604 +0 0.0747 +0 0.4268 +0 0.1104 +0 0.1067 +0 0.1296 +0 0.0545 +0 0.0494 +0 0.2267 +0 0.1111 +0 0.1600 +0 0.1238 +0 0.1703 +0 0.0543 +0 0.0894 +0 0.1052 +0 0.0701 +0 0.0850 +0 0.2284 +0 0.0946 +0 0.1252 +0 0.6026 +0 0.1020 +0 0.2823 +0 0.0867 +0 0.0516 +0 0.2471 +0 0.0649 +0 0.0942 +0 0.1343 +0 0.0614 +0 0.2064 +0 0.0302 +0 0.0567 +0 0.1518 +0 0.3569 +0 0.1467 +0 0.3009 +0 0.0374 +0 0.1228 +0 0.1760 +0 0.2607 +0 0.2946 +0 0.2419 +0 0.0662 +0 0.3224 +0 0.0752 +0 0.3288 +0 0.0857 +0 0.0863 +0 0.0695 +0 0.0944 +0 0.1878 +0 0.0535 +0 0.1795 +0 0.0838 +0 0.0650 +0 0.1844 +0 0.0940 +0 0.0970 +0 0.2194 +0 0.1851 +0 0.0781 +0 0.3500 +0 0.6520 +0 0.0584 +1 0.8588 +0 0.0895 +0 0.0669 +0 0.1142 +0 0.3014 +0 0.1115 +0 0.0832 +0 0.4618 +0 0.0701 +0 0.1125 +0 0.0409 +0 0.6583 +0 0.1222 +0 0.0544 +0 0.0900 +0 0.0878 +0 0.1186 +0 0.1178 +0 0.0975 +0 0.1361 +0 0.0809 +0 0.1505 +0 0.0522 +0 0.1437 +0 0.0572 +0 0.1659 +0 0.0406 +0 0.2882 +0 0.7299 +0 0.1792 +0 0.0441 +0 0.1495 +0 0.0582 +0 0.1333 +0 0.1817 +0 0.5951 +0 0.1935 +0 0.1173 +0 0.1124 +0 0.1269 +0 0.0444 +0 0.0744 +0 0.2579 +0 0.1812 +0 0.1054 +0 0.0839 +0 0.0715 +0 0.0947 +0 0.0569 +0 0.0614 +0 0.0676 +0 0.5971 +0 0.0343 +0 0.2754 +1 0.8243 +0 0.2164 +0 0.1900 +0 0.2913 +0 0.0760 +0 0.0971 +0 0.1507 +0 0.0630 +0 0.0820 +0 0.1178 +0 0.1963 +0 0.1404 +0 0.0866 +0 0.1960 +0 0.0733 +0 0.2372 +0 0.1567 +0 0.0483 +1 0.8401 +0 0.1000 +0 0.1325 +0 0.0585 +0 0.2477 +0 0.0348 +0 0.0408 +0 0.1130 +0 0.3335 +0 0.2909 +0 0.1019 +0 0.5068 +0 0.0859 +0 0.1831 +0 0.0628 +0 0.1032 +0 0.1403 +0 0.0599 +0 0.0816 +0 0.0632 +0 0.1289 +0 0.0758 +0 0.0755 +0 0.2018 +0 0.0689 +0 0.1087 +0 0.0719 +0 0.0794 +0 0.2965 +0 0.2309 +0 0.1210 +0 0.0848 +0 0.1088 +0 0.0595 +0 0.5269 +0 0.1462 +0 0.1179 +0 0.0505 +0 0.0424 +0 0.0552 +0 0.3908 +0 0.1513 +0 0.1191 +0 0.1020 +0 0.5026 +0 0.0788 +1 0.7934 +0 0.0545 +0 0.0967 +0 0.1656 +0 0.2253 +0 0.0535 +0 0.0517 +1 0.7916 +0 0.1775 +0 0.0870 +0 0.1584 +0 0.0838 +0 0.0990 +0 0.0768 +0 0.1381 +0 0.1659 +0 0.1038 +0 0.1239 +0 0.1216 +0 0.0862 +0 0.0438 +0 0.0807 +0 0.3359 +0 0.1582 +0 0.1489 +0 0.0681 +0 0.3168 +0 0.1514 +0 0.1780 +0 0.0718 +0 0.4104 +0 0.2086 +0 0.1264 +0 0.3573 +0 0.1197 +0 0.0864 +0 0.1134 +0 0.0902 +0 0.0726 +0 0.0736 +0 0.1221 +0 0.0984 +0 0.0535 +0 0.2568 +0 0.0305 +0 0.0820 +0 0.0379 +0 0.1165 +1 0.8809 +0 0.0890 +0 0.0963 +0 0.0815 +0 0.0557 +0 0.1474 +0 0.1603 +0 0.2029 +0 0.3705 +0 0.1768 +1 0.8255 +0 0.1846 +0 0.1205 +0 0.1053 +0 0.1315 +0 0.0655 +0 0.0679 +0 0.0389 +0 0.0646 +0 0.0422 +0 0.1519 +0 0.1799 +0 0.2589 +0 0.2904 +0 0.0555 +0 0.1066 +0 0.2181 +0 0.1694 +0 0.2528 +0 0.0739 +0 0.0898 +0 0.3955 +0 0.2036 +0 0.0376 +0 0.2657 +0 0.1159 +0 0.0847 +0 0.3773 +0 0.0916 +0 0.4314 +0 0.0606 +0 0.0721 +0 0.5591 +0 0.2590 +0 0.0978 +0 0.4081 +0 0.1518 +1 0.8085 +0 0.3072 +0 0.1741 +0 0.1123 +0 0.1810 +0 0.6577 +0 0.2293 +0 0.1364 +0 0.1002 +0 0.2167 +0 0.1365 +0 0.4755 +0 0.0733 +0 0.0281 +0 0.2114 +0 0.7396 +0 0.0630 +0 0.1682 +0 0.1016 +1 0.8174 +0 0.1347 +0 0.1301 +0 0.0691 +0 0.0445 +0 0.0702 +0 0.0472 +0 0.1177 +0 0.0699 +0 0.0765 +0 0.6440 +0 0.0539 +0 0.0576 +0 0.1588 +0 0.1092 +0 0.4431 +0 0.0895 +0 0.0457 +0 0.2677 +0 0.1231 +0 0.0877 +0 0.3179 +0 0.4567 +0 0.0434 +0 0.3043 +0 0.1198 +0 0.1614 +0 0.0782 +0 0.0433 +0 0.2320 +0 0.0382 +0 0.4246 +0 0.0398 +0 0.1363 +0 0.0620 +0 0.0744 +0 0.0351 +0 0.0718 +0 0.0969 +0 0.0514 +0 0.0640 +0 0.0810 +0 0.0606 +0 0.0921 +0 0.3089 +0 0.0621 +0 0.1395 +0 0.3769 +0 0.0644 +0 0.3161 +0 0.0573 +0 0.5812 +0 0.0415 +0 0.1119 +0 0.2030 +0 0.0487 +0 0.1504 +0 0.0909 +0 0.0784 +0 0.1072 +0 0.1144 +0 0.0772 +0 0.4655 +0 0.1219 +0 0.0618 +0 0.0560 +0 0.0893 +0 0.1356 +0 0.0458 +0 0.0787 +0 0.1208 +0 0.0761 +0 0.0743 +0 0.0649 +0 0.0755 +0 0.0940 +0 0.2189 +0 0.1328 +0 0.0943 +0 0.6940 +0 0.1564 +0 0.0750 +0 0.1441 +0 0.1298 +0 0.0782 +0 0.1225 +0 0.1001 +0 0.0828 +0 0.1322 +0 0.0392 +0 0.0538 +0 0.0494 +0 0.0602 +0 0.1979 +0 0.0766 +0 0.1103 +0 0.1249 +0 0.1379 +0 0.1538 +0 0.1115 +0 0.1429 +0 0.1143 +1 0.8185 +0 0.1618 +0 0.0877 +0 0.5472 +0 0.1500 +0 0.1111 +0 0.0609 +0 0.1045 +0 0.1465 +0 0.1222 +0 0.1910 +0 0.1808 +0 0.0911 +0 0.0872 +0 0.1624 +0 0.0922 +0 0.0870 +0 0.2306 +0 0.0918 +0 0.0498 +0 0.1184 +0 0.0697 +0 0.0771 +0 0.1116 +0 0.3157 +0 0.0523 +0 0.0888 +0 0.1264 +0 0.0401 +0 0.0873 +0 0.1678 +0 0.1045 +0 0.1454 +0 0.2465 +0 0.0465 +0 0.2130 +0 0.0953 +0 0.0849 +0 0.0939 +0 0.1576 +0 0.0590 +0 0.0790 +0 0.1834 +0 0.0382 +0 0.0841 +0 0.0640 +0 0.1568 +0 0.2188 +0 0.0624 +0 0.1068 +0 0.0907 +0 0.0424 +0 0.3075 +0 0.0784 +0 0.2529 +0 0.0546 +0 0.0589 +0 0.1562 +0 0.0971 +0 0.0906 +0 0.2101 +0 0.1321 +0 0.1626 +0 0.1079 +0 0.2239 +0 0.1390 +0 0.0389 +0 0.1645 +0 0.0442 +0 0.0775 +0 0.0868 +0 0.1324 +0 0.2035 +0 0.0567 +0 0.1550 +0 0.2646 +0 0.1950 +0 0.2327 +0 0.2366 +0 0.1076 +0 0.0472 +1 0.7832 +0 0.2427 +0 0.3871 +0 0.2533 +0 0.0760 +0 0.1867 +0 0.0652 +1 0.8149 +0 0.0468 +0 0.1659 +0 0.0555 +0 0.0733 +0 0.1420 +0 0.0744 +0 0.0972 +0 0.0929 +0 0.0671 +0 0.1392 +0 0.1670 +0 0.1895 +0 0.0612 +0 0.0967 +0 0.1992 +0 0.0541 +0 0.1032 +0 0.1255 +0 0.1272 +0 0.0953 +0 0.7313 +0 0.0627 +0 0.1267 +0 0.4458 +0 0.3337 +0 0.0421 +0 0.0729 +0 0.0845 +0 0.1498 +0 0.0948 +0 0.1168 +0 0.2005 +0 0.0516 +0 0.0734 +0 0.3781 +0 0.0586 +0 0.0667 +0 0.0554 +0 0.0350 +0 0.0860 +0 0.1008 +0 0.3453 +0 0.4074 +1 0.7690 +0 0.0831 +0 0.1378 +0 0.0962 +0 0.1743 +0 0.1643 +0 0.1292 +0 0.0673 +0 0.1204 +0 0.1134 +0 0.2036 +0 0.1485 +0 0.0930 +0 0.1526 +0 0.0360 +0 0.0359 +0 0.1115 +0 0.1152 +0 0.0709 +0 0.0837 +0 0.0712 +0 0.7301 +0 0.0875 +0 0.0414 +0 0.1030 +0 0.0772 +0 0.2031 +0 0.1373 +0 0.1821 +0 0.1590 +0 0.0492 +0 0.0821 +0 0.0857 +0 0.1332 +0 0.0817 +0 0.0828 +0 0.0457 +0 0.0799 +0 0.0827 +0 0.0507 +0 0.1285 +0 0.1001 +0 0.0640 +0 0.1350 +0 0.0783 +0 0.1492 +0 0.1056 +0 0.0570 +0 0.0470 +0 0.2989 +0 0.1428 +0 0.0701 +0 0.1302 +0 0.0442 +0 0.0949 +0 0.3342 +0 0.0834 +0 0.0694 +0 0.1230 +0 0.0627 +0 0.1130 +0 0.1007 +0 0.3399 +0 0.0531 +0 0.0395 +0 0.0796 +0 0.0618 +0 0.0503 +0 0.4030 +0 0.3138 +0 0.1367 +0 0.0999 +0 0.0924 +0 0.0391 +0 0.1233 +0 0.1340 +0 0.0507 +0 0.0707 +0 0.0734 +0 0.2491 +0 0.0394 +0 0.1420 +0 0.0819 +0 0.0571 +0 0.1112 +0 0.0447 +0 0.0571 +0 0.0898 +0 0.1955 +0 0.0509 +0 0.1091 +0 0.1804 +0 0.1502 +0 0.2262 +0 0.1295 +0 0.0960 +0 0.0585 +0 0.0761 +0 0.1217 +0 0.1092 +0 0.1337 +0 0.0892 +0 0.0604 +0 0.1722 +0 0.2072 +0 0.0551 +0 0.1057 +0 0.3391 +0 0.0452 +0 0.4723 +0 0.0760 +0 0.0901 +0 0.0868 +0 0.0473 +0 0.0743 +0 0.0475 +0 0.0497 +0 0.5197 +0 0.2455 +0 0.0531 +0 0.0411 +0 0.2911 +0 0.1730 +0 0.1842 +0 0.0878 +0 0.0886 +0 0.1041 +0 0.0450 +0 0.0975 +0 0.0505 +0 0.2597 +0 0.0557 +0 0.0541 +0 0.1133 +0 0.7223 +0 0.1348 +0 0.0823 +0 0.1703 +0 0.0741 +0 0.0676 +0 0.0911 +0 0.1186 +0 0.1735 +0 0.1258 +0 0.1097 +0 0.0937 +0 0.1207 +0 0.1436 +0 0.1113 +0 0.0541 +0 0.0714 +0 0.1302 +0 0.1265 +0 0.0688 +0 0.0410 +0 0.1163 +0 0.0594 +0 0.1090 +0 0.2198 +0 0.0694 +0 0.1631 +0 0.0547 +0 0.1225 +0 0.1933 +0 0.1117 +0 0.0775 +0 0.1755 +0 0.1558 +0 0.1167 +0 0.0702 +0 0.0953 +0 0.1558 +0 0.0865 +0 0.1311 +0 0.1811 +0 0.0449 +0 0.2324 +0 0.0473 +0 0.0975 +0 0.2974 +1 0.8271 +0 0.1381 +0 0.4901 +0 0.0470 +0 0.1036 +0 0.1679 +0 0.1629 +0 0.0777 +0 0.0789 +0 0.0811 +0 0.0335 +0 0.0428 +0 0.0647 +0 0.1722 +0 0.0740 +0 0.0834 +0 0.0647 +0 0.0861 +0 0.2375 +0 0.1248 +0 0.0991 +0 0.7055 +0 0.1276 +0 0.1093 +0 0.0646 +0 0.7030 +0 0.1392 +0 0.0891 +0 0.0914 +0 0.3110 +0 0.1559 +0 0.2712 +0 0.3182 +0 0.2047 +0 0.1495 +0 0.0680 +0 0.0518 +0 0.1809 +0 0.2099 +0 0.1471 +0 0.1396 +0 0.3534 +0 0.1640 +0 0.1395 +0 0.2057 +0 0.1142 +0 0.1597 +0 0.1003 +0 0.3081 +0 0.1736 +0 0.2120 +0 0.0961 +0 0.0635 +0 0.1969 +0 0.0384 +0 0.0872 +0 0.0775 +0 0.7283 +0 0.2375 +0 0.0613 +0 0.0953 +0 0.2679 +0 0.2783 +0 0.0666 +0 0.2150 +0 0.0634 +1 0.7902 +0 0.0644 +0 0.0958 +0 0.0394 +0 0.0631 +0 0.6364 +0 0.1009 +0 0.1094 +0 0.0952 +0 0.0948 +0 0.0971 +0 0.0812 +0 0.1712 +0 0.0886 +0 0.0593 +0 0.0728 +0 0.0756 +0 0.0667 +0 0.1186 +0 0.0607 +0 0.0989 +0 0.1190 +0 0.1180 +0 0.1021 +0 0.2136 +0 0.0642 +0 0.0782 +0 0.1134 +0 0.0821 +0 0.0790 +0 0.0562 +0 0.4594 +0 0.1013 +0 0.2516 +0 0.1331 +0 0.2218 +0 0.1330 +0 0.0722 +0 0.2301 +0 0.1010 +0 0.0842 +0 0.1507 +0 0.1560 +0 0.1116 +0 0.1329 +0 0.0752 +0 0.0918 +0 0.1425 +0 0.0738 +0 0.1113 +0 0.0566 +0 0.0849 +0 0.1036 +0 0.1075 +0 0.1462 +0 0.2786 +0 0.1775 +0 0.1055 +0 0.0564 +0 0.1811 +0 0.0778 +0 0.1464 +0 0.1603 +0 0.1143 +0 0.1740 +0 0.0815 +0 0.0463 +0 0.0762 +0 0.2051 +0 0.2203 +0 0.1075 +0 0.1722 +0 0.1920 +0 0.5940 +0 0.0720 +0 0.3190 +0 0.1147 +0 0.0962 +0 0.0632 +0 0.0965 +0 0.4973 +0 0.0753 +0 0.0640 +0 0.1527 +0 0.0997 +0 0.1155 +0 0.0626 +0 0.0665 +0 0.0738 +0 0.1224 +0 0.0667 +0 0.0517 +0 0.0821 +0 0.1258 +0 0.0620 +0 0.3313 +0 0.1475 +0 0.1819 +0 0.1309 +0 0.1172 +0 0.1007 +0 0.1479 +0 0.1707 +0 0.0750 +0 0.1508 +0 0.1668 +0 0.1023 +0 0.0785 +0 0.0966 +0 0.1770 +0 0.3684 +0 0.0929 +0 0.1393 +0 0.1433 +0 0.0434 +0 0.1511 +0 0.0953 +0 0.1283 +0 0.1189 +0 0.1026 +0 0.1702 +1 0.4739 +0 0.1714 +0 0.3120 +0 0.1014 +0 0.2116 +0 0.0483 +0 0.1341 +0 0.1038 +0 0.0962 +0 0.0820 +0 0.1229 +0 0.1515 +0 0.1886 +0 0.1305 +0 0.0898 +0 0.0538 +0 0.1064 +0 0.1145 +0 0.1199 +0 0.1350 +0 0.1696 +0 0.3754 +0 0.2441 +0 0.0711 +0 0.0978 +0 0.1300 +0 0.1160 +0 0.0625 +0 0.1108 +0 0.3890 +0 0.1510 +0 0.1169 +0 0.1404 +0 0.1180 +0 0.0944 +0 0.1753 +0 0.1451 +0 0.1969 +0 0.0506 +0 0.0736 +0 0.1336 +0 0.1146 +0 0.0775 +0 0.0391 +0 0.3320 +0 0.2785 +0 0.1700 +0 0.2140 +0 0.0504 +0 0.1713 +0 0.2546 +0 0.1570 +0 0.0437 +0 0.1170 +0 0.1073 +0 0.1402 +0 0.1012 +0 0.0912 +0 0.0401 +0 0.1596 +0 0.0669 +0 0.1874 +0 0.2120 +0 0.5859 +0 0.1325 +0 0.1094 +0 0.0848 +0 0.1305 +0 0.0425 +0 0.0518 +0 0.0659 +0 0.0479 +0 0.1786 +0 0.2013 +0 0.1088 +0 0.1644 +0 0.2008 +0 0.0746 +0 0.0344 +0 0.1668 +0 0.3156 +0 0.1457 +0 0.2752 +0 0.1209 +0 0.0772 +0 0.0755 +0 0.1557 +0 0.0613 +0 0.4874 +0 0.1694 +0 0.0944 +0 0.0868 +0 0.1284 +0 0.0570 +0 0.0781 +0 0.3574 +0 0.0797 +0 0.1436 +0 0.1465 +0 0.1402 +0 0.0460 +0 0.1038 +0 0.1165 +0 0.2645 +0 0.0973 +0 0.1593 +0 0.0730 +0 0.1879 +0 0.0841 +0 0.0981 +0 0.2383 +0 0.0903 +0 0.6604 +0 0.0825 +0 0.0732 +0 0.0463 +0 0.0353 +0 0.1806 +0 0.0535 +1 0.8542 +0 0.1027 +0 0.1478 +0 0.0755 +1 0.9043 +0 0.0678 +0 0.0642 +0 0.0832 +0 0.1170 +0 0.1959 +0 0.0791 +0 0.0889 +0 0.0427 +0 0.1894 +0 0.5694 +0 0.2160 +0 0.0825 +0 0.1587 +0 0.0554 +0 0.1239 +0 0.3403 +0 0.1037 +0 0.0751 +0 0.1113 +0 0.1925 +0 0.1865 +0 0.1315 +0 0.0968 +0 0.3141 +0 0.0996 +0 0.3704 +0 0.1612 +0 0.1552 +0 0.0534 +0 0.1465 +0 0.1434 +0 0.0866 +0 0.1192 +0 0.1065 +0 0.0790 +0 0.0446 +0 0.0996 +0 0.0581 +0 0.3757 +0 0.1102 +0 0.1022 +0 0.0516 +0 0.0455 +0 0.0363 +0 0.0624 +0 0.3497 +0 0.0844 +0 0.2647 +0 0.1044 +0 0.1102 +0 0.1476 +0 0.1972 +0 0.0565 +0 0.0824 +0 0.1021 +0 0.0596 +0 0.1167 +0 0.0570 +1 0.8793 +0 0.0652 +0 0.1698 +0 0.2706 +0 0.1211 +0 0.0799 +0 0.1720 +0 0.1026 +0 0.0593 +0 0.2256 +0 0.0690 +0 0.2016 +0 0.0983 +0 0.0789 +0 0.0837 +0 0.2440 +0 0.1164 +0 0.1232 +0 0.0923 +0 0.2571 +0 0.3370 +0 0.4571 +0 0.0973 +0 0.0644 +0 0.1515 +0 0.0758 +0 0.1076 +0 0.0748 +0 0.1020 +0 0.0604 +1 0.8186 +0 0.0379 +0 0.1865 +0 0.1394 +0 0.1345 +0 0.0542 +0 0.2142 +0 0.1912 +0 0.0716 +0 0.0438 +0 0.1552 +0 0.1667 +0 0.1858 +0 0.1208 +0 0.2085 +0 0.1987 +0 0.1129 +0 0.0439 +0 0.2215 +0 0.3080 +0 0.0593 +0 0.0536 +0 0.1256 +0 0.4614 +0 0.2321 +0 0.1312 +0 0.1665 +0 0.2483 +0 0.1366 +0 0.2407 +0 0.1739 +0 0.2834 +0 0.1357 +0 0.1549 +0 0.1261 +0 0.0604 +0 0.1142 +0 0.1591 +0 0.0847 +0 0.1052 +0 0.2273 +0 0.0623 +1 0.8692 +0 0.1484 +0 0.2783 +0 0.0880 +0 0.0712 +0 0.1106 +0 0.0642 +0 0.0593 +0 0.0503 +0 0.2218 +0 0.0485 +0 0.2296 +0 0.0528 +0 0.0371 +0 0.0627 +0 0.0406 +0 0.1022 +0 0.0789 +0 0.0933 +0 0.2101 +0 0.0970 +0 0.3974 +0 0.0921 +0 0.2277 +0 0.0985 +0 0.0433 +0 0.0622 +0 0.1557 +0 0.0413 +0 0.2747 +0 0.1150 +0 0.1224 +0 0.0657 +0 0.1498 +0 0.0464 +0 0.2565 +0 0.0615 +0 0.0813 +0 0.1498 +0 0.2460 +0 0.1403 +0 0.1377 +0 0.0481 +0 0.1769 +0 0.0701 +0 0.0815 +0 0.0683 +0 0.1268 +0 0.1988 +0 0.2918 +0 0.0502 +0 0.0804 +0 0.1132 +0 0.1159 +0 0.0648 +0 0.0971 +0 0.0560 +0 0.2546 +0 0.1568 +0 0.0663 +0 0.1237 +0 0.0827 +0 0.2067 +0 0.0621 +0 0.1613 +0 0.0740 +0 0.0710 +1 0.8423 +0 0.0590 +0 0.0841 +0 0.2977 +0 0.1260 +0 0.1017 +0 0.1337 +0 0.0866 +0 0.1331 +0 0.1036 +0 0.0936 +0 0.7403 +0 0.0324 +0 0.0457 +0 0.0950 +0 0.0371 +0 0.2342 +0 0.0963 +0 0.1026 +0 0.6588 +0 0.0886 +0 0.1156 +0 0.0659 +0 0.0980 +0 0.2203 +0 0.0365 +0 0.0529 +0 0.0779 +0 0.0930 +0 0.0582 +0 0.4468 +0 0.1256 +0 0.0390 +0 0.1760 +0 0.1640 +0 0.0787 +0 0.0899 +0 0.6095 +0 0.1741 +0 0.3444 +0 0.2727 +0 0.0321 +0 0.0803 +0 0.0502 +0 0.1321 +0 0.0698 +0 0.0517 +0 0.0563 +0 0.2153 +0 0.1459 +0 0.0656 +0 0.2855 +0 0.2845 +0 0.1164 +0 0.0327 +0 0.0594 +0 0.1170 +0 0.0415 +0 0.1104 +0 0.1317 +0 0.5533 +0 0.0600 +0 0.1479 +0 0.1130 +0 0.0821 +0 0.0963 +0 0.1276 +0 0.1176 +0 0.0490 +0 0.2543 +0 0.1033 +0 0.0769 +0 0.1530 +0 0.0909 +0 0.0868 +0 0.5888 +0 0.0777 +0 0.0575 +0 0.0323 +0 0.2204 +0 0.1812 +0 0.2205 +0 0.0547 +0 0.0980 +0 0.4473 +0 0.0752 +0 0.0667 +0 0.1802 +0 0.1373 +0 0.1315 +0 0.3253 +0 0.0583 +0 0.1792 +0 0.0640 +0 0.0476 +0 0.1820 +0 0.0941 +0 0.7346 +0 0.3443 +0 0.3306 +0 0.0720 +0 0.1317 +1 0.8102 +0 0.0710 +0 0.4990 +0 0.2313 +0 0.0614 +0 0.2843 +0 0.0591 +0 0.1007 +0 0.0324 +0 0.0578 +0 0.0917 +0 0.1117 +0 0.1016 +0 0.2261 +0 0.0645 +0 0.1405 +0 0.2125 +0 0.0698 +0 0.0953 +0 0.1962 +0 0.0665 +0 0.0843 +0 0.1151 +0 0.0349 +0 0.2403 +0 0.1417 +0 0.0531 +0 0.1314 +0 0.0856 +0 0.0978 +0 0.0730 +0 0.0310 +0 0.3663 +0 0.0454 +0 0.1066 +0 0.0839 +0 0.0611 +0 0.0944 +0 0.0538 +0 0.0665 +0 0.0552 +0 0.4916 +0 0.0969 +0 0.2064 +0 0.2281 +0 0.0718 +0 0.0595 +0 0.0826 +0 0.0592 +0 0.0478 +0 0.1666 +0 0.0991 +0 0.0447 +0 0.1258 +0 0.0683 +0 0.1589 +0 0.0925 +0 0.1037 +0 0.0687 +0 0.0958 +0 0.0772 +0 0.2845 +0 0.1806 +0 0.0830 +0 0.0547 +0 0.0896 +0 0.0641 +0 0.0858 +0 0.2177 +0 0.1758 +0 0.0770 +0 0.1118 +0 0.1085 +0 0.0571 +0 0.0891 +0 0.1508 +0 0.0802 +0 0.1274 +0 0.2970 +0 0.0674 +0 0.3074 +0 0.2767 +0 0.0522 +0 0.1092 +0 0.1181 +0 0.0982 +0 0.1518 +0 0.1527 +0 0.0941 +0 0.1113 +0 0.1161 +0 0.1963 +0 0.1208 +0 0.0675 +0 0.0990 +0 0.4721 +0 0.0856 +0 0.0899 +0 0.0976 +0 0.1093 +0 0.0651 +0 0.0518 +0 0.1366 +0 0.0837 +1 0.8448 +0 0.1071 +0 0.0997 +0 0.6851 +0 0.0735 +0 0.0937 +0 0.1841 +0 0.0544 +0 0.0597 +0 0.0873 +0 0.0425 +0 0.2453 +0 0.0431 +0 0.0892 +0 0.2118 +0 0.0723 +0 0.1011 +0 0.1052 +0 0.1617 +0 0.0634 +0 0.1039 +0 0.0980 +0 0.2242 +0 0.0487 +0 0.1142 +0 0.0693 +0 0.0525 +0 0.0574 +0 0.0613 +0 0.0831 +0 0.0891 +0 0.0380 +0 0.7342 +0 0.1022 +0 0.1992 +0 0.4850 +0 0.0954 +0 0.2096 +0 0.1304 +0 0.0986 +0 0.0843 +0 0.1945 +0 0.0823 +0 0.1453 +0 0.3574 +0 0.0523 +0 0.2193 +0 0.1096 +0 0.0548 +0 0.1213 +0 0.0973 +0 0.1709 +0 0.1260 +0 0.2573 +0 0.0553 +0 0.1390 +0 0.1983 +0 0.2120 +0 0.1401 +0 0.2360 +0 0.0576 +0 0.1027 +0 0.1401 +0 0.2013 +0 0.0702 +0 0.1148 +0 0.1746 +0 0.1201 +0 0.1977 +0 0.0492 +0 0.1516 +0 0.0814 +0 0.1461 +0 0.1081 +0 0.1878 +0 0.1702 +0 0.0445 +0 0.0545 +0 0.1724 +0 0.0941 +0 0.1217 +0 0.0970 +0 0.1062 +0 0.1086 +0 0.0795 +0 0.0940 +0 0.7025 +0 0.0659 +0 0.0940 +1 0.7702 +0 0.1028 +0 0.0696 +0 0.0664 +0 0.1727 +0 0.0911 +0 0.1223 +0 0.1820 +0 0.0587 +0 0.6609 +0 0.0302 +0 0.0847 +0 0.1049 +0 0.1065 +0 0.0848 +0 0.1776 +0 0.1794 +0 0.2751 +0 0.2249 +0 0.3269 +0 0.0899 +0 0.0648 +0 0.0453 +0 0.0955 +1 0.8380 +0 0.0529 +0 0.1145 +0 0.1010 +0 0.1096 +0 0.1627 +0 0.1997 +0 0.1291 +0 0.2687 +0 0.0503 +0 0.1124 +0 0.0699 +0 0.0882 +0 0.1182 +0 0.1805 +0 0.0779 +0 0.0783 +0 0.1398 +0 0.0887 +0 0.0536 +0 0.0661 +0 0.1102 +0 0.1014 +0 0.5680 +0 0.3617 +0 0.1498 +0 0.2796 +0 0.1093 +0 0.1172 +0 0.0538 +0 0.1372 +0 0.0704 +0 0.1914 +0 0.0592 +0 0.1129 +0 0.7360 +0 0.0442 +0 0.0812 +0 0.2417 +0 0.0583 +0 0.0445 +0 0.0308 +0 0.0837 +0 0.0410 +0 0.0527 +0 0.1814 +0 0.0996 +0 0.4617 +0 0.1354 +0 0.1281 +0 0.0960 +0 0.1658 +0 0.2188 +0 0.2120 +0 0.0676 +0 0.0884 +0 0.1658 +0 0.1170 +0 0.0944 +0 0.1087 +0 0.0618 +0 0.0645 +0 0.0741 +0 0.2890 +0 0.1008 +0 0.0680 +0 0.0711 +0 0.0896 +0 0.1523 +0 0.1486 +0 0.0589 +0 0.0506 +0 0.0495 +0 0.0605 +0 0.0790 +0 0.3444 +0 0.0471 +0 0.1105 +0 0.0763 +0 0.0958 +0 0.0621 +0 0.1206 +0 0.1447 +0 0.0784 +1 0.8198 +0 0.0810 +0 0.0914 +0 0.1147 +0 0.0911 +0 0.0515 +0 0.1631 +0 0.0641 +0 0.1764 +0 0.0567 +0 0.0554 +1 0.8723 +0 0.1655 +0 0.1505 +0 0.2793 +0 0.1288 +0 0.5144 +0 0.0440 +0 0.0597 +0 0.0483 +0 0.0789 +0 0.0837 +0 0.0561 +0 0.0600 +0 0.0927 +0 0.1587 +0 0.1269 +0 0.0503 +0 0.0710 +0 0.1150 +0 0.1140 +0 0.0907 +0 0.0518 +0 0.2414 +0 0.0784 +0 0.0832 +0 0.0858 +0 0.0637 +0 0.2879 +0 0.1814 +0 0.1434 +0 0.2273 +0 0.0431 +0 0.1288 +0 0.1958 +0 0.0718 +0 0.0584 +0 0.0530 +0 0.0776 +0 0.0400 +0 0.0755 +0 0.1312 +0 0.3966 +0 0.0708 +0 0.1000 +0 0.0681 +0 0.1005 +0 0.0486 +0 0.0674 +0 0.0556 +0 0.2039 +0 0.1278 +0 0.0515 +0 0.0554 +0 0.1549 +1 0.8820 +0 0.0780 +0 0.0892 +0 0.0636 +0 0.2227 +0 0.0676 +0 0.3209 +0 0.0990 +0 0.0614 +0 0.1330 +0 0.0751 +0 0.2491 +1 0.8256 +0 0.2418 +0 0.0901 +0 0.0423 +0 0.1288 +0 0.4581 +0 0.1637 +0 0.0581 +0 0.2968 +0 0.1068 +0 0.1232 +0 0.6675 +0 0.7457 +0 0.1218 +0 0.1713 +0 0.0845 +0 0.1877 +0 0.6835 +0 0.0437 +0 0.1540 +0 0.3610 +0 0.0715 +0 0.1293 +0 0.1399 +0 0.0455 +0 0.1039 +0 0.0639 +0 0.0658 +0 0.3892 +0 0.1277 +0 0.1609 +0 0.1294 +0 0.0595 +0 0.1900 +0 0.1691 +0 0.1357 +0 0.1004 +0 0.0870 +0 0.1666 +0 0.1635 +0 0.0661 +0 0.0448 +0 0.2628 +0 0.1020 +0 0.1429 +0 0.1504 +0 0.0814 +0 0.0983 +0 0.0917 +0 0.0993 +0 0.1028 +0 0.1342 +0 0.0899 +0 0.0961 +0 0.0611 +0 0.2366 +0 0.0818 +0 0.0665 +0 0.1271 +0 0.1043 +0 0.1350 +0 0.0701 +0 0.0616 +0 0.0669 +0 0.0540 +0 0.0714 +0 0.0726 +0 0.1488 +0 0.1417 +0 0.1132 +0 0.1064 +0 0.3068 +0 0.1050 +0 0.1387 +0 0.0427 +0 0.0679 +0 0.1065 +0 0.1128 +0 0.3174 +0 0.2324 +0 0.2097 +0 0.2641 +0 0.1411 +0 0.2494 +0 0.1114 +0 0.1817 +0 0.1808 +0 0.2044 +0 0.1041 +0 0.1175 +0 0.0605 +0 0.2312 +0 0.3004 +0 0.0810 +0 0.0686 +0 0.2433 +0 0.0884 +0 0.1421 +0 0.0415 +0 0.0660 +0 0.0647 +0 0.1777 +0 0.1369 +0 0.0836 +0 0.0889 +0 0.0966 +0 0.0773 +0 0.2237 +0 0.1048 +0 0.0375 +0 0.0635 +0 0.1044 +0 0.0957 +0 0.0651 +0 0.1449 +0 0.0480 +0 0.1831 +0 0.1870 +0 0.2671 +0 0.0714 +0 0.0874 +0 0.1381 +0 0.0873 +0 0.0900 +0 0.0547 +0 0.1171 +0 0.0524 +0 0.1644 +0 0.0331 +0 0.2441 +0 0.2077 +0 0.1114 +0 0.0932 +0 0.1823 +0 0.1695 +0 0.1850 +0 0.0992 +0 0.1323 +0 0.1119 +0 0.1272 +0 0.0766 +0 0.1872 +0 0.0769 +0 0.0951 +0 0.1517 +0 0.1188 +0 0.0960 +0 0.0753 +0 0.1912 +0 0.0672 +0 0.0366 +0 0.1092 +0 0.2292 +0 0.0761 +0 0.0704 +0 0.0467 +0 0.1542 +0 0.1694 +0 0.0682 +0 0.0608 +0 0.2401 +0 0.0547 +0 0.2510 +0 0.4287 +0 0.3617 +0 0.1507 +0 0.0541 +0 0.0619 +0 0.1887 +0 0.1024 +0 0.0975 +0 0.7425 +0 0.0649 +0 0.1305 +0 0.0844 +0 0.1428 +0 0.0974 +0 0.0903 +0 0.0741 +0 0.0919 +0 0.0573 +0 0.1215 +0 0.1526 +0 0.0666 +0 0.0344 +0 0.2153 +0 0.2033 +0 0.1563 +0 0.0825 +0 0.0743 +0 0.0751 +0 0.1035 +1 0.8510 +0 0.1190 +0 0.0613 +0 0.0806 +0 0.0695 +0 0.1176 +0 0.2401 +0 0.0518 +0 0.1445 +0 0.1315 +0 0.5795 +0 0.1978 +0 0.0439 +0 0.0768 +0 0.1475 +0 0.1912 +0 0.0839 +0 0.2142 +0 0.0716 +0 0.2028 +0 0.1286 +0 0.1897 +0 0.0860 +0 0.1532 +0 0.0710 +0 0.2910 +0 0.0441 +0 0.3614 +0 0.1755 +0 0.1200 +0 0.4066 +0 0.1028 +0 0.2035 +0 0.2307 +0 0.0446 +0 0.0577 +0 0.3291 +0 0.0729 +0 0.1664 +0 0.0758 +0 0.0582 +0 0.1495 +0 0.0841 +0 0.0770 +0 0.0737 +1 0.7708 +0 0.1335 +0 0.0526 +0 0.5978 +0 0.1148 +0 0.0386 +0 0.0811 +0 0.0732 +0 0.1163 +0 0.0838 +0 0.1186 +0 0.1056 +0 0.0817 +0 0.1042 +0 0.1649 +0 0.0975 +0 0.1065 +0 0.0946 +0 0.1690 +0 0.2002 +0 0.0370 +0 0.0332 +0 0.1353 +0 0.3319 +0 0.2216 +0 0.1164 +0 0.0442 +0 0.0590 +0 0.0666 +0 0.1069 +0 0.2040 +0 0.1927 +0 0.1722 +0 0.1171 +0 0.0996 +0 0.1939 +0 0.0940 +0 0.0780 +0 0.3392 +0 0.3570 +0 0.1039 +0 0.1116 +0 0.1193 +0 0.0730 +0 0.1104 +0 0.1333 +0 0.1004 +0 0.0738 +0 0.0693 +0 0.0473 +0 0.0423 +0 0.0647 +0 0.0811 +0 0.0729 +0 0.0415 +0 0.0636 +0 0.0553 +0 0.0476 +0 0.1259 +1 0.7771 +0 0.0900 +0 0.1070 +0 0.1687 +0 0.1868 +0 0.1256 +0 0.1184 +0 0.1510 +1 0.7813 +0 0.1816 +0 0.0895 +0 0.1301 +0 0.1293 +0 0.2036 +0 0.0730 +0 0.0480 +0 0.2150 +0 0.3698 +0 0.3728 +0 0.0455 +0 0.0763 +0 0.0455 +0 0.1485 +0 0.2382 +1 0.7732 +0 0.0969 +0 0.0629 +0 0.1549 +0 0.1961 +0 0.0498 +0 0.1698 +0 0.1357 +0 0.0941 +0 0.0695 +0 0.0903 +0 0.1738 +0 0.0393 +0 0.0906 +0 0.0508 +0 0.1943 +0 0.0563 +0 0.1103 +0 0.0736 +0 0.0776 +0 0.0757 +0 0.2215 +0 0.0599 +0 0.1136 +0 0.3228 +0 0.0728 +0 0.0906 +0 0.4677 +0 0.0330 +0 0.0924 +1 0.8188 +0 0.1064 +0 0.1614 +0 0.0969 +0 0.0611 +0 0.0915 +0 0.2466 +0 0.3494 +0 0.1120 +0 0.5239 +0 0.6825 +0 0.0636 +0 0.0877 +0 0.1882 +0 0.2272 +0 0.1226 +0 0.3080 +0 0.0723 +0 0.0602 +0 0.1339 +0 0.1663 +0 0.0740 +0 0.0771 +0 0.1183 +0 0.0674 +0 0.1885 +0 0.0356 +0 0.0802 +0 0.3849 +0 0.0638 +0 0.0705 +0 0.0503 +0 0.1304 +0 0.1439 +0 0.2687 +0 0.0843 +0 0.1590 +0 0.1538 +0 0.0971 +0 0.4674 +0 0.0814 +0 0.3021 +0 0.0382 +0 0.1106 +0 0.0584 +0 0.0836 +0 0.0862 +0 0.1561 +0 0.2427 +0 0.1940 +0 0.0823 +0 0.0910 +0 0.1554 +0 0.2985 +0 0.0412 +0 0.1073 +0 0.1375 +0 0.0854 +0 0.1380 +0 0.1082 +0 0.1348 +0 0.1256 +0 0.0412 +0 0.1904 +0 0.0567 +0 0.1397 +0 0.0895 +0 0.1284 +0 0.0397 +0 0.4151 +0 0.1798 +0 0.1916 +0 0.1467 +0 0.1273 +0 0.1058 +0 0.1222 +0 0.1177 +0 0.1045 +0 0.1072 +0 0.1029 +0 0.0935 +0 0.0574 +0 0.0763 +0 0.0513 +0 0.0855 +0 0.1478 +0 0.4849 +0 0.1580 +0 0.0320 +0 0.1113 +0 0.0663 +0 0.1190 +0 0.1304 +0 0.0675 +0 0.0741 +0 0.0795 +0 0.1440 +0 0.0608 +0 0.1288 +0 0.0413 +0 0.1312 +0 0.2248 +1 0.7530 +0 0.0311 +0 0.0697 +0 0.1330 +0 0.0646 +0 0.3924 +0 0.0584 +0 0.1053 +0 0.0563 +0 0.1377 +0 0.2444 +0 0.0786 +0 0.6950 +0 0.2721 +0 0.2311 +0 0.0537 +0 0.0359 +0 0.0567 +0 0.0719 +0 0.0809 +0 0.1014 +0 0.1857 +0 0.0928 +0 0.1126 +0 0.1524 +0 0.1071 +0 0.0946 +0 0.0411 +0 0.0715 +0 0.0997 +0 0.1719 +0 0.0882 +0 0.1107 +0 0.1865 +0 0.0788 +0 0.0479 +0 0.2417 +0 0.7003 +0 0.0716 +0 0.3047 +0 0.0444 +0 0.0650 +0 0.1942 +0 0.0451 +0 0.3054 +0 0.2163 +0 0.1096 +0 0.0986 +0 0.4421 +0 0.3097 +0 0.2411 +0 0.0750 +0 0.2458 +0 0.4183 +0 0.0619 +0 0.0599 +0 0.1631 +0 0.0531 +0 0.0815 +0 0.1506 +0 0.1246 +0 0.0767 +0 0.0559 +0 0.0973 +0 0.0414 +0 0.2794 +0 0.1733 +0 0.3869 +0 0.1086 +0 0.1005 +0 0.1086 +0 0.0473 +0 0.1867 +0 0.2796 +0 0.1036 +0 0.0789 +0 0.0842 +0 0.0825 +0 0.1796 +0 0.2297 +0 0.0552 +0 0.0879 +0 0.1127 +0 0.0798 +0 0.0597 +0 0.0786 +0 0.0502 +0 0.0485 +0 0.0814 +0 0.0537 +0 0.0514 +0 0.0885 +0 0.2573 +0 0.1211 +0 0.1301 +0 0.1071 +0 0.2473 +0 0.1107 +0 0.1077 +0 0.2815 +0 0.0724 +0 0.0586 +0 0.1047 +0 0.1612 +0 0.3102 +0 0.0767 +0 0.6081 +0 0.1099 +0 0.1658 +0 0.0626 +0 0.1555 +0 0.0948 +0 0.1638 +0 0.0830 +0 0.3845 +0 0.0362 +0 0.1419 +0 0.5190 +0 0.1381 +0 0.1030 +0 0.1957 +0 0.1741 +0 0.1163 +0 0.0914 +0 0.2665 +0 0.0699 +0 0.0513 +0 0.1032 +0 0.0824 +0 0.0548 +0 0.0510 +0 0.0899 +0 0.0582 +0 0.5416 +0 0.0975 +0 0.4411 +0 0.1477 +0 0.1448 +0 0.1346 +0 0.1594 +0 0.1347 +0 0.1295 +0 0.1689 +0 0.1181 +0 0.3000 +0 0.0893 +0 0.0727 +0 0.1789 +0 0.1848 +0 0.3538 +0 0.2036 +0 0.2127 +0 0.0822 +0 0.2142 +0 0.0588 +0 0.1155 +0 0.0460 +0 0.1146 +0 0.0464 +0 0.0372 +0 0.0467 +0 0.0693 +0 0.0569 +0 0.0697 +0 0.1096 +0 0.1306 +0 0.1198 +0 0.1118 +0 0.0444 +0 0.1362 +0 0.2580 +0 0.0891 +0 0.1108 +1 0.8182 +0 0.0851 +0 0.1779 +0 0.1696 +0 0.0849 +0 0.0837 +0 0.1998 +1 0.7633 +0 0.3009 +0 0.1377 +0 0.1073 +0 0.1220 +0 0.0723 +0 0.0907 +0 0.1581 +0 0.0715 +0 0.1136 +0 0.0939 +0 0.1545 +0 0.2148 +0 0.1298 +0 0.0672 +0 0.1233 +0 0.1252 +0 0.0966 +0 0.0947 +0 0.0745 +0 0.1149 +0 0.0788 +0 0.2282 +0 0.2223 +0 0.2309 +0 0.2179 +0 0.2576 +0 0.0490 +0 0.0513 +0 0.0886 +0 0.0864 +0 0.1613 +0 0.1245 +1 0.8202 +0 0.0306 +0 0.3852 +0 0.1763 +0 0.7274 +0 0.1588 +0 0.2346 +0 0.0555 +0 0.1826 +0 0.1309 +0 0.0755 +0 0.0649 +0 0.1862 +0 0.0725 +0 0.1654 +0 0.1182 +0 0.7379 +0 0.0727 +0 0.1431 +0 0.1675 +0 0.1030 +0 0.2436 +0 0.0377 +0 0.0602 +0 0.0401 +0 0.1009 +0 0.1097 +0 0.0526 +0 0.0856 +0 0.0957 +0 0.0839 +0 0.0395 +0 0.0708 +0 0.1456 +0 0.0969 +0 0.0748 +0 0.2980 +0 0.0798 +0 0.1254 +0 0.1892 +0 0.1112 +0 0.1369 +0 0.2470 +0 0.0429 +0 0.0695 +0 0.0742 +0 0.2138 +0 0.2860 +0 0.2212 +0 0.1357 +0 0.1163 +0 0.1002 +0 0.1042 +0 0.1539 +0 0.2781 +0 0.4775 +0 0.2720 +0 0.1275 +0 0.3541 +0 0.1192 +0 0.0426 +0 0.1917 +0 0.0690 +0 0.0549 +0 0.1023 +0 0.0853 +0 0.0442 +0 0.2162 +0 0.2092 +0 0.0812 +0 0.1561 +0 0.2492 +0 0.2106 +1 0.7985 +0 0.0490 +0 0.1753 +0 0.2221 +0 0.2512 +0 0.2353 +0 0.0407 +0 0.2261 +0 0.0746 +0 0.0598 +0 0.1638 +0 0.0935 +0 0.1221 +0 0.1115 +0 0.1051 +0 0.1704 +0 0.0884 +0 0.1367 +0 0.0536 +0 0.1559 +0 0.1644 +0 0.0723 +0 0.0792 +0 0.0766 +0 0.1323 +0 0.6286 +0 0.3213 +0 0.1359 +0 0.1934 +0 0.1759 +0 0.0703 +0 0.2800 +0 0.2022 +0 0.1017 +0 0.2339 +0 0.0547 +0 0.2629 +0 0.1021 +0 0.0522 +0 0.2072 +0 0.0682 +0 0.0662 +0 0.1559 +0 0.1351 +0 0.1165 +0 0.0724 +0 0.0728 +0 0.0703 +0 0.1513 +0 0.2042 +0 0.1139 +0 0.0707 +0 0.1872 +0 0.7451 +0 0.1348 +0 0.0710 +0 0.0583 +0 0.1317 +0 0.1111 +0 0.2786 +0 0.0485 +0 0.0739 +0 0.4487 +0 0.1190 +0 0.0667 +0 0.0437 +0 0.0646 +0 0.7099 +0 0.1358 +0 0.0637 +0 0.1397 +1 0.8688 +1 0.8098 +1 0.7829 +0 0.1458 +0 0.1003 +0 0.0975 +0 0.0936 +0 0.0654 +0 0.0811 +0 0.1924 +0 0.1604 +0 0.2006 +0 0.0931 +0 0.2681 +0 0.1168 +0 0.1185 +0 0.1537 +0 0.0426 +0 0.0698 +0 0.0827 +0 0.0970 +0 0.0788 +0 0.0543 +0 0.0755 +0 0.0895 +0 0.1137 +0 0.0961 +0 0.1249 +0 0.0858 +0 0.3453 +0 0.0620 +0 0.0638 +0 0.0929 +0 0.1987 +0 0.0944 +0 0.0377 +0 0.1262 +0 0.0859 +0 0.0569 +0 0.1047 +0 0.1324 +0 0.1055 +0 0.1195 +0 0.0770 +0 0.1396 +0 0.0865 +0 0.1015 +1 0.7653 +0 0.0945 +0 0.0920 +0 0.4346 +0 0.0460 +0 0.0616 +0 0.0779 +0 0.1477 +0 0.1037 +0 0.0733 +0 0.1541 +0 0.1562 +0 0.0568 +0 0.0741 +0 0.0448 +0 0.0635 +1 0.7664 +0 0.0631 +0 0.1375 +0 0.0858 +0 0.3119 +0 0.1547 +1 0.7839 +0 0.0790 +0 0.2034 +0 0.1277 +0 0.0739 +0 0.0609 +0 0.1715 +0 0.0830 +0 0.0384 +0 0.0791 +0 0.0590 +0 0.1352 +0 0.1248 +0 0.3340 +0 0.0587 +0 0.3480 +0 0.0653 +0 0.3309 +0 0.0939 +0 0.0699 +0 0.0985 +0 0.0799 +0 0.1095 +0 0.0715 +0 0.2316 +0 0.1750 +0 0.1109 +0 0.0978 +0 0.1419 +0 0.0821 +0 0.1144 +0 0.2400 +0 0.0960 +0 0.0429 +0 0.0837 +0 0.7312 +0 0.2586 +0 0.0993 +0 0.0828 +0 0.0643 +0 0.0885 +0 0.1702 +0 0.2576 +0 0.4116 +0 0.6465 +0 0.1001 +0 0.0916 +0 0.0606 +0 0.1240 +0 0.1254 +0 0.0722 +0 0.0563 +0 0.1061 +0 0.0933 +0 0.1129 +0 0.0409 +0 0.2010 +0 0.1043 +0 0.0438 +0 0.1208 +0 0.0810 +0 0.0392 +0 0.0870 +0 0.2468 +0 0.1185 +0 0.0725 +0 0.2784 +0 0.0823 +0 0.1412 +0 0.3244 +0 0.0715 +0 0.1055 +0 0.0986 +0 0.1016 +0 0.0938 +0 0.1270 +0 0.2346 +0 0.1022 +0 0.1079 +0 0.1249 +0 0.2546 +0 0.0808 +0 0.0811 +0 0.0397 +0 0.0684 +0 0.0794 +0 0.1269 +0 0.1047 +0 0.0755 +0 0.1374 +0 0.2100 +0 0.0881 +0 0.0788 +0 0.1746 +0 0.1048 +0 0.0576 +0 0.1175 +0 0.1908 +0 0.1011 +0 0.0447 +0 0.3148 +0 0.1211 +0 0.1156 +0 0.2318 +1 0.7989 +0 0.0568 +0 0.0505 +0 0.1790 +0 0.0651 +0 0.1057 +0 0.3421 +0 0.1206 +0 0.1595 +0 0.1359 +0 0.2203 +0 0.0791 +0 0.2537 +0 0.0686 +0 0.2186 +0 0.1093 +0 0.1389 +0 0.1114 +0 0.0420 +0 0.0805 +0 0.0983 +0 0.1299 +0 0.1456 +0 0.0768 +0 0.2201 +0 0.0963 +0 0.0467 +0 0.1233 +0 0.1316 +0 0.0719 +0 0.0956 +0 0.3189 +0 0.0857 +0 0.1885 +0 0.0668 +0 0.0594 +0 0.1350 +0 0.0568 +0 0.0405 +0 0.1174 +0 0.1347 +0 0.2949 +0 0.0775 +0 0.1086 +0 0.2056 +0 0.2008 +0 0.1878 +0 0.0612 +0 0.0466 +0 0.1098 +0 0.2704 +0 0.1139 +0 0.0686 +0 0.3496 +0 0.0983 +0 0.1595 +0 0.0490 +0 0.1144 +0 0.1381 +0 0.1496 +0 0.0652 +0 0.0807 +0 0.1401 +0 0.1221 +0 0.3399 +0 0.0436 +0 0.0612 +1 0.7978 +0 0.1091 +0 0.1308 +0 0.1613 +0 0.1101 +0 0.0942 +0 0.2944 +0 0.0320 +0 0.0513 +1 0.8899 +0 0.1026 +0 0.0668 +0 0.1443 +0 0.6852 +0 0.1366 +0 0.1340 +0 0.1251 +0 0.1545 +0 0.0988 +0 0.1693 +0 0.0440 +0 0.1475 +0 0.1037 +0 0.0742 +0 0.0359 +0 0.0689 +0 0.0569 +0 0.0448 +0 0.0392 +0 0.2298 +0 0.0394 +0 0.0709 +0 0.4173 +0 0.0727 +0 0.1086 +0 0.2250 +0 0.0949 +0 0.6853 +0 0.4935 +0 0.1723 +0 0.0823 +0 0.3209 +0 0.3623 +0 0.0857 +0 0.0733 +0 0.1340 +0 0.1418 +0 0.1125 +0 0.1050 +0 0.0408 +0 0.1058 +0 0.0832 +0 0.1281 +0 0.1392 +0 0.1585 +0 0.2048 +0 0.1290 +0 0.0465 +0 0.1389 +0 0.0618 +0 0.2774 +0 0.1262 +0 0.0553 +0 0.1778 +0 0.0846 +0 0.1315 +0 0.1943 +0 0.0895 +0 0.0702 +0 0.1166 +0 0.0917 +0 0.0664 +0 0.1021 +0 0.0883 +0 0.0570 +1 0.8143 +0 0.1038 +0 0.3635 +0 0.2875 +0 0.1097 +0 0.1732 +0 0.1965 +0 0.1130 +0 0.2666 +0 0.1195 +0 0.1605 +0 0.2305 +0 0.4895 +0 0.1317 +0 0.1788 +0 0.4998 +0 0.2142 +0 0.0698 +0 0.0506 +0 0.0653 +0 0.0751 +0 0.1289 +0 0.1913 +0 0.0898 +0 0.1189 +0 0.0902 +0 0.0600 +0 0.0900 +0 0.0573 +0 0.0800 +0 0.1506 +0 0.0933 +0 0.0691 +0 0.0995 +0 0.1547 +0 0.0900 +0 0.1928 +0 0.1268 +0 0.1192 +0 0.1080 +0 0.0619 +0 0.0886 +0 0.0816 +0 0.0579 +0 0.1073 +0 0.3113 +0 0.1787 +0 0.1297 +0 0.2294 +0 0.0488 +0 0.0598 +0 0.6910 +0 0.0504 +0 0.0740 +0 0.0684 +0 0.2100 +0 0.0600 +0 0.1231 +0 0.3648 +0 0.2147 +0 0.1410 +0 0.0884 +0 0.0659 +0 0.1326 +0 0.1765 +0 0.1193 +0 0.0689 +0 0.0535 +0 0.1077 +0 0.0451 +0 0.1058 +0 0.1072 +0 0.0605 +0 0.1407 +0 0.1990 +0 0.2469 +0 0.1123 +0 0.0702 +0 0.0577 +0 0.0595 +0 0.0686 +0 0.0480 +0 0.0971 +0 0.0549 +0 0.0720 +0 0.0532 +0 0.0986 +0 0.0783 +0 0.0889 +0 0.0796 +0 0.1199 +0 0.2220 +0 0.1372 +0 0.1091 +0 0.0678 +0 0.1336 +0 0.0797 +0 0.0575 +0 0.1539 +0 0.3224 +0 0.0789 +0 0.0944 +0 0.2572 +0 0.0775 +0 0.0743 +0 0.2031 +1 0.8780 +0 0.0926 +0 0.1451 +0 0.0868 +0 0.0393 +0 0.0460 +0 0.0762 +0 0.1701 +0 0.0466 +0 0.1225 +0 0.5673 +0 0.0732 +0 0.1236 +0 0.0713 +0 0.0503 +0 0.1359 +0 0.0755 +0 0.0754 +0 0.2265 +0 0.2409 +0 0.0587 +0 0.0430 +0 0.0789 +0 0.0684 +0 0.0863 +0 0.1559 +0 0.2217 +0 0.1029 +0 0.2301 +0 0.1865 +0 0.1502 +0 0.0691 +0 0.1377 +0 0.1313 +0 0.1391 +0 0.0669 +0 0.2589 +0 0.1062 +0 0.0502 +0 0.0551 +0 0.0920 +0 0.2010 +0 0.0787 +0 0.1378 +0 0.1171 +0 0.1587 +0 0.0548 +0 0.0456 +0 0.1215 +1 0.8016 +0 0.2956 +0 0.0846 +0 0.2001 +0 0.0550 +0 0.3506 +0 0.0449 +0 0.1107 +0 0.0939 +0 0.0720 +0 0.4908 +0 0.3212 +0 0.1332 +0 0.0598 +0 0.1883 +0 0.0895 +0 0.1363 +0 0.0425 +0 0.1819 +0 0.5364 +0 0.0889 +0 0.0375 +0 0.1496 +0 0.0363 +0 0.0681 +0 0.2121 +0 0.0608 +0 0.1318 +0 0.0999 +0 0.1531 +0 0.0694 +0 0.1098 +0 0.0824 +0 0.0859 +0 0.1241 +0 0.0693 +0 0.1383 +0 0.1045 +0 0.6003 +0 0.1560 +0 0.1389 +0 0.0658 +0 0.2559 +0 0.0367 +0 0.1058 +0 0.1314 +0 0.3245 +0 0.1361 +0 0.0674 +0 0.1309 +0 0.2749 +0 0.1081 +0 0.0903 +0 0.3210 +0 0.1256 +0 0.1956 +0 0.1405 +0 0.3478 +0 0.0678 +0 0.5448 +0 0.0881 +0 0.1053 +0 0.1279 +0 0.0736 +1 0.8180 +0 0.0751 +0 0.2292 +0 0.1095 +0 0.0309 +0 0.2207 +0 0.4641 +0 0.0764 +1 0.6821 +0 0.0641 +0 0.2589 +0 0.5297 +0 0.0579 +0 0.0505 +1 0.7536 +0 0.0799 +0 0.1387 +0 0.0462 +0 0.0978 +0 0.1137 +0 0.1890 +0 0.1498 +0 0.0434 +0 0.1177 +0 0.1932 +0 0.3728 +0 0.2215 +0 0.1047 +0 0.2561 +0 0.0975 +0 0.2541 +0 0.3913 +0 0.0834 +0 0.0967 +0 0.0734 +0 0.1498 +0 0.0417 +0 0.0998 +0 0.5436 +0 0.0884 +0 0.0709 +0 0.1622 +0 0.1457 +0 0.2333 +0 0.0789 +0 0.3068 +0 0.2025 +0 0.1564 +0 0.1487 +0 0.1111 +0 0.0380 +0 0.0934 +0 0.0938 +0 0.0859 +0 0.0467 +0 0.0591 +0 0.1107 +0 0.0942 +0 0.7060 +0 0.1219 +0 0.1324 +0 0.1991 +0 0.0568 +0 0.1903 +0 0.1187 +0 0.1136 +0 0.1804 +0 0.0511 +0 0.1018 +0 0.2347 +0 0.1643 +0 0.0490 +0 0.1200 +0 0.1520 +0 0.1440 +0 0.1201 +0 0.1850 +0 0.0516 +0 0.0621 +0 0.1037 +0 0.2699 +0 0.5088 +0 0.0770 +0 0.1258 +0 0.2488 +0 0.0962 +0 0.2769 +1 0.7978 +1 0.8268 +0 0.5777 +0 0.1455 +0 0.0827 +0 0.6735 +0 0.1920 +0 0.1247 +0 0.2808 +0 0.1140 +0 0.1159 +0 0.0824 +0 0.3605 +0 0.0915 +0 0.0707 +0 0.1467 +0 0.1925 +0 0.0376 +0 0.1315 +0 0.0613 +0 0.6088 +0 0.4481 +0 0.1005 +0 0.0328 +0 0.1365 +0 0.0449 +0 0.3121 +0 0.3145 +0 0.0727 +0 0.1857 +0 0.0842 +0 0.0741 +0 0.1154 +0 0.0377 +0 0.2893 +0 0.0672 +0 0.1212 +0 0.0846 +0 0.1013 +0 0.1026 +0 0.1596 +0 0.0616 +0 0.3334 +0 0.0770 +0 0.0761 +0 0.2179 +0 0.0538 +0 0.0867 +0 0.1161 +0 0.1917 +0 0.0411 +0 0.1582 +0 0.0460 +0 0.2187 +0 0.2495 +0 0.0942 +0 0.0591 +0 0.1720 +0 0.1148 +0 0.0987 +0 0.0532 +0 0.1083 +0 0.1568 +0 0.1032 +0 0.1137 +0 0.0673 +0 0.2209 +0 0.1185 +0 0.0452 +0 0.1849 +0 0.3742 +0 0.2315 +1 0.8255 +0 0.0602 +0 0.2491 +0 0.1876 +0 0.0545 +0 0.0923 +0 0.1451 +0 0.3397 +0 0.0935 +0 0.1613 +0 0.4233 +0 0.0829 +0 0.1208 +0 0.0558 +0 0.2882 +0 0.1077 +0 0.3686 +0 0.3200 +0 0.2919 +0 0.0544 +0 0.1390 +0 0.2247 +0 0.1326 +0 0.0470 +0 0.1319 +0 0.0417 +0 0.1568 +0 0.0759 +0 0.1880 +0 0.0495 +1 0.7935 +0 0.0485 +0 0.0715 +0 0.0491 +0 0.0577 +0 0.1378 +0 0.0633 +0 0.1061 +0 0.0515 +0 0.1049 +0 0.0758 +0 0.0946 +0 0.0851 +0 0.1678 +0 0.1513 +0 0.0870 +0 0.1012 +0 0.1348 +0 0.1236 +0 0.0713 +0 0.0509 +0 0.0507 +0 0.2966 +0 0.1024 +0 0.0968 +0 0.1250 +0 0.1559 +0 0.0926 +0 0.2490 +0 0.0892 +0 0.0992 +0 0.0754 +0 0.1646 +0 0.0821 +0 0.0859 +0 0.1661 +0 0.0438 +0 0.1039 +0 0.3154 +0 0.0725 +0 0.0455 +0 0.1757 +0 0.0645 +0 0.2182 +0 0.0987 +0 0.1085 +0 0.1153 +0 0.0693 +0 0.1228 +0 0.5681 +0 0.0656 +0 0.2238 +0 0.1031 +0 0.0906 +0 0.0412 +0 0.1953 +0 0.0900 +0 0.1012 +0 0.1198 +0 0.1295 +0 0.0924 +0 0.0454 +0 0.1249 +0 0.6525 +0 0.1117 +0 0.0666 +0 0.0764 +0 0.1369 +0 0.0914 +0 0.0510 +0 0.6007 +0 0.1747 +0 0.1055 +0 0.6655 +0 0.2650 +0 0.1037 +0 0.1093 +0 0.2460 +0 0.1209 +0 0.0673 +1 0.7980 +0 0.0589 +0 0.4687 +0 0.0687 +0 0.1946 +0 0.0640 +0 0.0892 +0 0.0422 +0 0.1701 +0 0.0780 +0 0.0374 +0 0.0954 +0 0.1476 +0 0.0693 +0 0.1466 +0 0.0957 +0 0.0359 +0 0.1742 +0 0.0312 +0 0.0725 +0 0.1198 +0 0.0651 +0 0.0707 +0 0.2072 +0 0.0592 +0 0.0779 +0 0.1208 +0 0.0687 +0 0.0659 +0 0.4609 +0 0.1148 +0 0.1725 +0 0.1317 +0 0.0990 +0 0.4060 +0 0.1103 +0 0.1171 +0 0.0955 +0 0.3386 +0 0.0769 +0 0.2148 +1 0.8372 +0 0.0860 +0 0.0813 +0 0.2235 +0 0.2635 +0 0.1814 +0 0.1545 +0 0.1440 +0 0.2781 +0 0.1394 +0 0.0731 +0 0.1022 +0 0.4389 +0 0.0854 +0 0.1152 +0 0.1238 +0 0.0760 +0 0.1154 +0 0.1633 +0 0.0509 +0 0.7295 +0 0.1188 +0 0.1841 +0 0.2437 +0 0.2407 +0 0.1123 +0 0.5574 +0 0.1230 +0 0.2848 +0 0.0787 +0 0.1776 +0 0.1275 +0 0.4692 +0 0.5642 +0 0.0380 +0 0.0610 +0 0.2463 +0 0.0729 +0 0.0953 +0 0.2120 +0 0.0982 +0 0.0399 +0 0.0591 +0 0.7171 +0 0.0888 +0 0.1304 +0 0.0751 +0 0.0934 +0 0.0958 +0 0.2767 +0 0.0759 +1 0.7664 +0 0.0598 +0 0.2431 +0 0.0652 +0 0.0869 +0 0.0894 +0 0.3182 +0 0.1361 +0 0.1475 +0 0.0599 +0 0.0901 +0 0.1316 +0 0.0791 +0 0.0652 +0 0.1010 +0 0.0593 +0 0.1866 +0 0.1202 +0 0.3324 +0 0.1379 +0 0.1276 +0 0.2368 +0 0.0661 +0 0.0891 +0 0.0434 +0 0.1333 +0 0.1011 +0 0.0619 +0 0.0788 +0 0.0750 +0 0.7363 +0 0.0872 +0 0.0772 +0 0.0735 +0 0.1214 +0 0.0480 +0 0.0976 +0 0.1977 +0 0.0752 +0 0.1486 +0 0.0583 +0 0.0347 +0 0.1400 +0 0.0994 +0 0.5462 +0 0.1225 +0 0.0936 +0 0.0510 +0 0.0627 +0 0.1434 +0 0.1654 +0 0.0607 +0 0.1289 +0 0.3021 +0 0.5574 +0 0.0991 +0 0.0502 +0 0.1062 +0 0.1759 +0 0.0795 +0 0.0396 +0 0.1629 +0 0.1453 +0 0.0590 +0 0.0447 +0 0.0557 +0 0.0593 +0 0.2124 +0 0.0595 +0 0.2692 +0 0.0439 +0 0.3305 +0 0.0786 +0 0.1115 +0 0.1068 +0 0.1342 +0 0.1587 +0 0.1748 +0 0.1371 +0 0.2234 +0 0.1017 +0 0.0826 +0 0.2157 +0 0.0710 +0 0.0543 +0 0.1014 +0 0.0548 +0 0.0545 +0 0.1421 +0 0.0707 +0 0.0706 +0 0.0636 +0 0.0951 +0 0.1695 +0 0.2474 +0 0.0845 +0 0.0713 +0 0.1526 +0 0.0907 +0 0.1007 +0 0.1958 +0 0.0923 +0 0.0628 +0 0.0522 +0 0.0986 +0 0.0488 +0 0.2975 +0 0.0523 +0 0.1005 +0 0.3303 +0 0.0928 +0 0.0603 +0 0.1035 +0 0.2547 +0 0.1019 +0 0.1119 +0 0.0794 +0 0.6659 +0 0.1350 +0 0.0563 +0 0.0575 +0 0.0461 +0 0.1838 +0 0.0954 +0 0.1069 +0 0.1066 +0 0.2396 +0 0.1478 +0 0.0651 +0 0.2067 +0 0.1019 +0 0.0894 +0 0.2601 +0 0.0911 +0 0.1115 +0 0.1075 +0 0.0428 +0 0.1558 +0 0.0640 +0 0.0985 +0 0.0963 +0 0.1543 +0 0.0512 +0 0.3041 +0 0.2156 +0 0.2127 +1 0.8316 +0 0.1133 +0 0.0798 +0 0.0454 +0 0.0950 +0 0.1657 +0 0.2052 +0 0.0877 +0 0.0371 +0 0.0728 +0 0.5956 +0 0.1204 +0 0.0664 +0 0.0987 +0 0.1195 +0 0.0831 +0 0.0935 +0 0.2484 +0 0.0839 +0 0.3145 +1 0.8027 +0 0.0625 +0 0.5407 +0 0.1935 +0 0.1165 +0 0.0569 +0 0.1603 +0 0.0741 +0 0.0649 +0 0.2000 +0 0.0700 +0 0.1178 +0 0.0638 +0 0.1969 +0 0.0385 +0 0.0824 +0 0.0610 +0 0.6267 +0 0.1150 +0 0.0547 +0 0.0462 +0 0.1188 +0 0.0941 +0 0.0745 +0 0.2382 +0 0.0542 +0 0.0677 +0 0.0426 +0 0.0681 +0 0.1138 +0 0.1114 +0 0.0533 +0 0.1343 +0 0.3311 +0 0.1442 +0 0.0592 +0 0.0872 +0 0.2029 +0 0.2654 +0 0.1548 +0 0.1170 +0 0.0897 +0 0.0601 +0 0.1989 +0 0.1532 +0 0.1925 +0 0.0739 +0 0.3772 +0 0.0367 +0 0.0789 +0 0.0713 +0 0.1260 +0 0.1449 +0 0.2550 +0 0.1413 +0 0.1896 +0 0.0669 +0 0.3872 +0 0.0646 +0 0.1336 +0 0.0746 +0 0.1727 +0 0.2029 +0 0.1389 +0 0.1458 +0 0.0741 +0 0.0827 +0 0.0558 +0 0.2406 +0 0.1175 +0 0.0859 +0 0.1519 +0 0.4978 +0 0.6532 +0 0.0375 +0 0.1937 +0 0.1157 +0 0.2318 +0 0.1332 +0 0.1736 +0 0.4678 +0 0.1933 +0 0.1787 +0 0.1359 +0 0.0982 +0 0.1924 +0 0.0777 +0 0.1723 +0 0.0969 +0 0.2414 +0 0.0577 +0 0.1099 +0 0.0508 +0 0.2907 +0 0.2620 +0 0.1207 +0 0.2742 +0 0.1887 +0 0.1686 +0 0.0771 +0 0.0633 +0 0.7335 +0 0.0920 +0 0.2789 +0 0.1602 +0 0.3285 +0 0.2650 +0 0.2751 +0 0.1012 +0 0.0813 +0 0.2103 +0 0.1072 +0 0.0886 +0 0.1240 +0 0.1349 +0 0.0959 +0 0.1592 +0 0.1044 +0 0.0966 +0 0.0903 +0 0.0827 +0 0.0457 +0 0.1077 +0 0.0500 +0 0.0656 +0 0.2114 +0 0.1315 +0 0.1609 +0 0.0493 +0 0.3021 +0 0.6936 +0 0.0631 +0 0.1172 +0 0.0811 +0 0.3093 +0 0.0786 +0 0.1204 +0 0.1333 +0 0.0579 +0 0.0644 +0 0.1943 +0 0.2187 +0 0.0847 +0 0.1123 +0 0.0747 +0 0.1232 +0 0.1914 +0 0.1024 +0 0.0518 +0 0.1100 +0 0.0693 +0 0.2571 +0 0.0423 +0 0.0981 +0 0.1537 +0 0.1110 +0 0.2349 +0 0.0417 +0 0.0920 +0 0.0385 +0 0.1326 +0 0.1071 +0 0.0782 +0 0.1193 +0 0.1314 +0 0.3725 +0 0.1116 +0 0.0520 +0 0.0991 +0 0.2015 +0 0.0948 +0 0.0438 +0 0.0801 +0 0.1186 +0 0.7485 +0 0.1216 +0 0.1737 +0 0.1515 +0 0.2398 +0 0.1926 +0 0.0583 +0 0.1964 +0 0.1374 +0 0.0450 +0 0.1554 +0 0.1652 +0 0.6861 +0 0.0803 +0 0.1777 +0 0.1282 +0 0.3372 +0 0.0527 +0 0.1275 +0 0.0901 +0 0.2942 +0 0.1034 +0 0.0689 +0 0.0911 +0 0.0507 +0 0.0764 +0 0.1645 +1 0.8582 +0 0.1389 +0 0.0733 +0 0.3007 +0 0.1153 +0 0.0625 +0 0.2245 +0 0.0636 +0 0.0989 +0 0.1115 +0 0.1594 +0 0.0421 +0 0.0863 +0 0.2082 +0 0.0953 +0 0.1255 +0 0.0507 +0 0.3259 +0 0.1235 +0 0.0859 +0 0.0988 +0 0.2145 +0 0.2200 +0 0.0646 +0 0.1188 +0 0.0422 +0 0.1428 +0 0.0562 +0 0.2290 +0 0.1455 +0 0.1126 +0 0.3454 +0 0.0771 +0 0.0601 +0 0.0984 +0 0.1056 +0 0.1200 +0 0.0950 +0 0.1234 +0 0.1293 +0 0.0572 +0 0.0813 +0 0.1151 +0 0.0395 +0 0.0885 +0 0.1877 +0 0.0711 +0 0.2035 +0 0.1130 +0 0.1225 +0 0.0793 +0 0.1118 +1 0.8484 +0 0.0430 +0 0.0425 +0 0.4505 +0 0.0341 +0 0.1230 +0 0.0965 +0 0.0533 +0 0.0931 +0 0.0465 +0 0.0887 +0 0.0827 +0 0.2741 +0 0.2090 +0 0.0427 +0 0.5656 +0 0.1486 +0 0.1334 +0 0.1158 +1 0.8344 +0 0.1006 +0 0.1332 +0 0.0619 +0 0.0916 +0 0.2034 +0 0.1901 +0 0.4488 +0 0.1586 +0 0.1154 +0 0.0860 +0 0.1235 +0 0.0409 +0 0.3585 +0 0.0611 +0 0.1730 +0 0.4076 +0 0.2212 +0 0.1170 +0 0.1062 +0 0.1111 +0 0.0606 +0 0.0306 +0 0.0579 +0 0.2514 +0 0.2672 +0 0.0874 +0 0.1334 +0 0.6277 +0 0.0786 +0 0.1160 +0 0.0501 +0 0.0816 +0 0.2473 +0 0.2327 +0 0.1242 +0 0.0993 +0 0.2090 +0 0.2186 +0 0.0522 +0 0.0828 +0 0.0845 +0 0.1454 +0 0.1546 +1 0.8135 +0 0.1195 +0 0.1286 +0 0.0792 +0 0.3028 +0 0.0843 +0 0.1849 +0 0.0717 +0 0.0488 +0 0.1463 +0 0.6700 +0 0.0602 +0 0.0940 +0 0.1984 +0 0.0965 +0 0.0725 +0 0.0662 +0 0.2405 +0 0.0389 +0 0.0909 +0 0.2833 +0 0.0601 +0 0.0412 +0 0.1036 +0 0.1031 +0 0.1361 +0 0.2863 +0 0.0923 +0 0.0634 +0 0.0602 +0 0.1376 +0 0.0889 +0 0.0797 +0 0.0795 +0 0.0726 +0 0.0932 +0 0.1841 +0 0.1224 +0 0.3721 +0 0.1540 +0 0.0859 +0 0.0824 +0 0.0848 +0 0.0684 +0 0.0679 +0 0.0996 +0 0.0592 +0 0.1367 +0 0.1673 +0 0.1596 +0 0.1633 +0 0.1081 +0 0.1805 +0 0.1693 +0 0.1549 +0 0.2814 +0 0.2703 +0 0.0551 +0 0.0776 +0 0.1212 +0 0.0622 +0 0.1204 +0 0.4217 +0 0.2332 +0 0.5064 +0 0.1545 +0 0.0651 +0 0.0697 +0 0.1207 +0 0.1892 +0 0.1037 +0 0.1112 +0 0.0776 +0 0.0611 +0 0.2095 +0 0.0610 +0 0.1071 +0 0.0950 +0 0.0915 +0 0.0926 +0 0.0715 +0 0.1220 +0 0.1306 +0 0.1055 +0 0.1246 +0 0.0662 +0 0.0591 +0 0.2372 +0 0.2088 +0 0.0581 +0 0.2198 +0 0.0987 +0 0.1401 +0 0.0440 +0 0.1178 +0 0.1453 +0 0.1267 +0 0.2157 +0 0.2143 +0 0.0966 +0 0.1584 +0 0.1837 +0 0.2729 +0 0.0537 +0 0.2341 +0 0.0843 +1 0.8510 +0 0.0670 +0 0.0878 +0 0.0444 +0 0.1417 +0 0.0564 +0 0.1105 +0 0.0420 +0 0.2859 +0 0.4387 +0 0.7026 +0 0.0702 +0 0.1202 +0 0.1462 +1 0.8594 +0 0.0461 +0 0.1350 +0 0.2060 +0 0.1792 +0 0.0480 +0 0.1266 +0 0.0987 +0 0.0749 +0 0.1183 +0 0.1446 +0 0.1335 +0 0.1173 +0 0.1377 +0 0.2556 +0 0.0714 +0 0.0729 +0 0.1188 +0 0.0704 +0 0.0933 +0 0.0691 +0 0.1237 +0 0.0631 +0 0.3540 +0 0.4317 +0 0.2404 +0 0.1250 +0 0.4157 +0 0.4885 +0 0.1270 +0 0.0890 +0 0.0819 +0 0.2085 +0 0.0812 +0 0.0910 +0 0.0775 +0 0.3581 +0 0.1968 +0 0.0667 +0 0.5391 +0 0.0921 +0 0.0546 +0 0.0806 +0 0.1036 +0 0.0747 +0 0.1318 +0 0.0772 +0 0.1565 +0 0.0539 +0 0.1111 +0 0.0890 +1 0.8150 +0 0.1126 +0 0.3038 +0 0.2027 +0 0.0543 +0 0.1808 +0 0.6085 +0 0.0600 +0 0.2194 +0 0.1147 +0 0.1187 +0 0.0953 +0 0.1228 +0 0.1021 +0 0.0995 +0 0.1091 +0 0.0539 +0 0.0912 +0 0.0774 +0 0.1797 +0 0.1418 +0 0.0873 +0 0.0472 +0 0.1861 +0 0.2401 +0 0.1690 +0 0.1386 +0 0.1196 +0 0.0881 +0 0.6750 +0 0.1075 +0 0.3002 +0 0.0856 +0 0.0927 +0 0.0425 +0 0.1440 +0 0.0512 +0 0.1779 +0 0.0897 +0 0.0916 +0 0.1491 +0 0.2619 +0 0.1087 +0 0.0937 +0 0.0504 +0 0.3462 +0 0.1618 +0 0.3272 +0 0.0734 +0 0.2457 +0 0.5974 +0 0.1521 +0 0.1344 +0 0.0739 +0 0.0638 +0 0.0720 +0 0.4042 +0 0.1088 +0 0.1984 +0 0.0714 +0 0.1007 +0 0.0926 +0 0.0957 +0 0.1115 +0 0.1269 +0 0.0509 +0 0.0880 +0 0.1100 +0 0.0614 +0 0.0551 +0 0.0751 +0 0.1645 +0 0.1290 +0 0.0890 +0 0.0861 +0 0.0717 +0 0.1771 +0 0.1828 +0 0.0823 +0 0.0815 +0 0.0606 +0 0.0984 +0 0.0979 +0 0.1036 +0 0.0531 +0 0.5011 +0 0.0557 +0 0.0736 +1 0.7580 +0 0.1192 +0 0.2034 +0 0.0618 +0 0.1058 +0 0.1238 +0 0.1042 +0 0.1152 +0 0.2549 +0 0.0499 +0 0.0886 +0 0.3711 +0 0.2757 +0 0.6665 +0 0.1175 +0 0.1456 +0 0.2449 +0 0.0904 +0 0.0549 +0 0.0917 +0 0.0864 +0 0.1619 +0 0.0838 +0 0.0843 +0 0.0461 +0 0.1241 +0 0.0752 +0 0.0430 +0 0.2376 +0 0.3990 +0 0.0962 +0 0.4162 +0 0.0885 +0 0.1078 +0 0.0329 +0 0.0474 +0 0.6951 +0 0.1421 +0 0.0574 +0 0.2224 +0 0.1736 +0 0.0705 +0 0.1238 +0 0.0612 +0 0.0786 +0 0.0573 +0 0.0894 +0 0.0846 +0 0.2069 +0 0.1600 +0 0.0354 +0 0.0875 +0 0.0934 +0 0.2442 +0 0.1544 +0 0.2638 +0 0.0617 +0 0.0612 +0 0.1172 +0 0.1227 +0 0.0879 +0 0.0643 +0 0.1021 +0 0.1274 +0 0.1087 +0 0.2317 +0 0.0691 +0 0.0836 +0 0.0781 +0 0.1019 +0 0.1192 +0 0.1182 +0 0.1275 +0 0.0590 +0 0.2357 +0 0.1869 +0 0.1177 +0 0.1064 +0 0.1127 +0 0.0707 +0 0.2165 +0 0.1066 +0 0.0826 +0 0.2246 +0 0.0936 +0 0.0995 +0 0.6989 +0 0.0719 +0 0.0668 +0 0.1220 +0 0.1224 +0 0.0836 +0 0.0564 +0 0.0957 +0 0.1206 +0 0.0692 +0 0.2204 +0 0.4166 +0 0.0960 +0 0.0543 +0 0.0865 +0 0.1246 +0 0.1292 +0 0.0508 +0 0.0661 +0 0.1490 +0 0.2405 +0 0.2514 +0 0.0934 +0 0.0578 +0 0.5350 +0 0.1197 +0 0.0696 +0 0.2568 +0 0.2050 +0 0.1251 +0 0.4141 +0 0.0891 +0 0.1870 +0 0.0633 +0 0.0912 +0 0.0484 +0 0.0525 +0 0.0861 +0 0.1406 +0 0.1629 +0 0.0790 +0 0.0556 +0 0.0620 +0 0.0967 +0 0.1210 +0 0.2136 +0 0.1673 +0 0.0601 +0 0.2003 +0 0.0708 +0 0.2536 +0 0.0472 +0 0.0837 +0 0.0674 +0 0.2244 +0 0.0397 +0 0.1929 +0 0.0989 +0 0.1108 +0 0.1156 +0 0.1438 +0 0.2154 +0 0.1084 +0 0.0865 +0 0.1584 +0 0.1476 +0 0.0538 +0 0.0560 +0 0.0916 +0 0.2106 +0 0.1073 +0 0.1219 +0 0.0711 +0 0.6955 +0 0.0764 +1 0.8046 +0 0.0868 +0 0.0671 +0 0.2249 +0 0.0560 +0 0.5757 +0 0.0609 +0 0.0664 +0 0.1421 +0 0.1169 +0 0.1913 +0 0.2380 +0 0.0592 +0 0.1073 +0 0.1244 +0 0.0652 +0 0.1308 +0 0.0877 +0 0.0388 +0 0.0714 +0 0.4532 +0 0.1085 +0 0.0757 +0 0.1418 +0 0.1758 +0 0.0606 +0 0.2377 +0 0.1035 +0 0.1053 +0 0.1888 +0 0.1010 +0 0.2590 +0 0.0975 +0 0.0379 +0 0.0754 +0 0.0516 +0 0.1446 +0 0.2213 +0 0.0378 +0 0.2659 +0 0.0614 +0 0.5064 +0 0.2244 +0 0.1242 +0 0.1033 +0 0.0777 +0 0.5181 +0 0.1116 +0 0.0370 +0 0.1278 +0 0.1749 +0 0.0808 +0 0.0453 +0 0.0829 +0 0.0896 +0 0.0500 +0 0.0929 +0 0.2077 +0 0.0691 +0 0.0672 +0 0.1159 +0 0.1636 +0 0.3027 +0 0.1122 +0 0.0641 +0 0.0784 +0 0.1125 +0 0.2268 +0 0.0558 +0 0.0405 +0 0.0796 +0 0.0882 +0 0.0863 +0 0.0813 +0 0.3585 +0 0.0716 +0 0.5553 +0 0.1514 +0 0.4843 +0 0.0543 +0 0.1380 +0 0.1256 +0 0.0476 +0 0.2214 +0 0.0485 +0 0.3974 +0 0.0952 +0 0.2098 +0 0.0461 +0 0.0608 +0 0.1182 +0 0.0716 +0 0.0406 +0 0.0690 +0 0.1192 +0 0.0946 +0 0.6345 +0 0.0990 +0 0.0394 +0 0.0994 +0 0.0352 +0 0.1440 +0 0.1235 +0 0.3267 +0 0.1054 +0 0.0856 +0 0.0861 +0 0.1335 +0 0.0487 +0 0.2060 +0 0.1222 +0 0.0623 +0 0.0824 +0 0.1056 +0 0.1200 +0 0.0682 +0 0.1348 +0 0.0876 +0 0.1554 +0 0.1603 +0 0.1876 +0 0.0708 +0 0.0385 +0 0.1435 +0 0.0525 +0 0.3418 +0 0.0849 +0 0.0888 +0 0.0467 +0 0.0711 +0 0.1869 +0 0.1162 +0 0.2434 +0 0.0702 +0 0.0494 +0 0.1189 +0 0.3135 +0 0.1565 +0 0.0705 +0 0.0603 +0 0.3720 +0 0.0897 +0 0.0608 +0 0.1107 +0 0.1815 +0 0.0639 +0 0.0659 +0 0.3549 +0 0.0561 +0 0.0521 +0 0.0461 +0 0.1902 +0 0.0946 +0 0.0494 +0 0.1015 +0 0.1223 +0 0.0861 +0 0.1994 +0 0.0684 +0 0.0987 +0 0.0557 +0 0.1050 +0 0.5647 +0 0.0545 +0 0.0857 +0 0.0691 +0 0.0322 +0 0.0829 +0 0.0283 +0 0.1651 +0 0.2032 +0 0.0865 +0 0.3448 +0 0.0695 +0 0.4489 +0 0.0668 +0 0.0794 +0 0.0550 +0 0.1264 +0 0.0343 +0 0.1785 +0 0.0751 +0 0.1296 +0 0.0938 +0 0.3746 +0 0.2095 +0 0.1368 +0 0.1103 +0 0.0671 +0 0.0834 +0 0.1204 +0 0.1040 +0 0.1966 +0 0.1232 +0 0.1176 +0 0.1055 +0 0.0643 +0 0.1689 +0 0.0527 +0 0.0542 +0 0.1349 +0 0.0993 +0 0.1596 +0 0.0605 +0 0.2707 +0 0.1023 +0 0.1439 +0 0.2080 +0 0.0798 +0 0.4331 +0 0.0372 +0 0.2214 +0 0.7485 +0 0.1195 +0 0.0790 +0 0.0605 +0 0.1292 +0 0.3666 +1 0.7553 +0 0.0569 +0 0.3619 +0 0.0733 +0 0.0993 +0 0.5026 +0 0.0960 +0 0.0890 +1 0.8515 +0 0.2118 +0 0.1714 +0 0.1388 +0 0.0859 +0 0.3604 +0 0.1726 +0 0.1403 +0 0.5419 +0 0.1853 +0 0.2977 +0 0.0774 +0 0.0956 +0 0.2783 +0 0.1043 +0 0.0942 +0 0.1310 +0 0.1039 +0 0.0641 +0 0.0841 +0 0.0626 +0 0.0636 +0 0.0742 +0 0.1706 +0 0.0734 +0 0.1850 +0 0.0788 +0 0.1260 +0 0.1006 +0 0.0602 +0 0.0782 +0 0.0578 +0 0.0805 +0 0.2823 +0 0.0525 +0 0.0947 +0 0.1080 +0 0.1276 +0 0.0510 +0 0.1088 +0 0.1289 +0 0.0948 +0 0.0424 +0 0.0806 +0 0.0419 +0 0.1657 +0 0.0688 +0 0.2374 +0 0.1435 +0 0.4241 +0 0.0652 +0 0.0656 +0 0.2351 +0 0.2108 +0 0.0517 +0 0.0688 +0 0.0610 +0 0.1574 +0 0.0761 +0 0.5322 +0 0.0454 +0 0.0481 +0 0.0380 +0 0.0680 +0 0.0790 +0 0.0602 +1 0.8423 +0 0.0480 +0 0.4619 +0 0.1388 +0 0.2840 +0 0.1533 +0 0.1068 +0 0.0456 +0 0.2922 +0 0.0801 +0 0.1469 +0 0.2152 +0 0.0974 +0 0.1310 +0 0.0667 +0 0.1258 +1 0.8024 +0 0.1297 +0 0.1574 +0 0.0805 +0 0.1629 +0 0.0909 +0 0.0566 +0 0.0485 +0 0.1908 +0 0.1712 +0 0.0742 +0 0.1345 +0 0.1060 +0 0.0854 +0 0.0750 +0 0.1024 +0 0.1074 +1 0.8632 +0 0.6658 +0 0.1050 +0 0.0664 +0 0.2773 +0 0.1008 +0 0.0624 +0 0.1622 +0 0.1057 +0 0.0566 +0 0.0382 +0 0.2010 +0 0.0980 +0 0.0655 +0 0.1497 +0 0.1363 +0 0.0467 +0 0.2271 +0 0.2254 +0 0.0682 +0 0.1588 +0 0.1882 +0 0.1229 +0 0.0978 +0 0.1366 +0 0.1828 +0 0.0747 +0 0.1703 +0 0.0391 +0 0.1506 +0 0.1069 +0 0.0692 +0 0.0854 +0 0.1145 +0 0.0704 +0 0.1006 +0 0.1143 +0 0.0646 +0 0.0792 +0 0.1379 +0 0.1065 +0 0.2911 +0 0.0506 +0 0.1304 +0 0.1747 +0 0.5062 +0 0.2464 +0 0.2027 +0 0.0973 +0 0.0746 +0 0.0548 +0 0.0836 +0 0.1985 +0 0.1183 +0 0.0851 +0 0.0451 +0 0.0767 +0 0.0514 +0 0.2275 +0 0.1117 +0 0.0900 +0 0.2152 +0 0.1381 +0 0.0744 +0 0.0947 +0 0.1038 +0 0.0677 +0 0.1512 +0 0.0892 +0 0.1868 +1 0.7625 +0 0.0917 +0 0.1875 +0 0.1560 +0 0.0915 +0 0.1792 +0 0.5047 +0 0.0517 +0 0.1024 +0 0.1965 +0 0.0609 +0 0.1652 +0 0.1197 +0 0.2029 +0 0.1230 +0 0.0799 +0 0.0826 +0 0.1536 +0 0.0806 +0 0.2907 +0 0.2020 +0 0.1470 +0 0.1240 +0 0.1424 +0 0.0963 +0 0.1538 +0 0.0687 +0 0.0585 +0 0.0520 +0 0.0396 +0 0.0429 +0 0.2278 +0 0.1245 +0 0.0421 +0 0.2193 +0 0.0923 +0 0.2111 +0 0.0955 +0 0.1525 +0 0.2880 +0 0.1565 +0 0.3018 +0 0.0685 +0 0.2569 +0 0.0572 +0 0.0616 +0 0.0576 +0 0.1539 +0 0.1353 +0 0.1004 +0 0.1148 +0 0.1200 +0 0.0804 +0 0.0586 +0 0.5281 +0 0.2994 +0 0.1064 +0 0.1204 +0 0.1056 +0 0.0698 +0 0.1311 +0 0.0982 +0 0.1921 +0 0.3674 +0 0.1461 +0 0.0805 +0 0.4156 +0 0.1112 +0 0.0804 +0 0.0788 +0 0.0916 +0 0.1672 +0 0.0602 +0 0.0648 +0 0.0788 +0 0.0438 +1 0.7587 +0 0.1029 +0 0.2363 +0 0.1157 +0 0.0800 +0 0.1207 +0 0.1095 +0 0.0691 +0 0.2036 +0 0.0915 +0 0.0589 +0 0.0398 +0 0.1617 +0 0.0687 +0 0.2694 +0 0.0723 +0 0.3231 +0 0.0646 +0 0.0967 +0 0.1224 +0 0.2157 +0 0.2365 +0 0.0369 +0 0.0689 +1 0.7605 +0 0.0483 +0 0.0477 +0 0.0494 +0 0.0753 +0 0.0698 +0 0.0755 +0 0.0894 +0 0.1289 +0 0.1019 +0 0.0992 +0 0.1776 +0 0.1054 +0 0.0965 +0 0.1444 +0 0.0923 +1 0.7590 +0 0.0856 +0 0.1704 +0 0.2302 +0 0.0589 +0 0.3164 +0 0.0515 +0 0.0623 +0 0.0444 +0 0.1783 +0 0.0785 +0 0.3206 +0 0.1293 +0 0.1527 +0 0.1227 +0 0.0640 +0 0.1158 +0 0.5876 +0 0.1135 +0 0.0862 +0 0.3739 +0 0.2048 +0 0.2227 +0 0.6559 +0 0.1649 +0 0.1013 +0 0.1657 +0 0.2657 +0 0.1250 +0 0.1366 +0 0.3965 +0 0.1175 +0 0.1515 +0 0.2128 +0 0.0477 +0 0.0742 +0 0.1402 +0 0.1016 +0 0.0562 +0 0.1159 +0 0.0828 +0 0.0713 +0 0.1194 +0 0.1546 +0 0.2143 +0 0.1801 +0 0.0751 +0 0.1007 +0 0.0865 +1 0.8501 +0 0.2138 +0 0.1790 +0 0.3028 +0 0.0647 +0 0.1686 +0 0.0718 +0 0.1705 +0 0.2919 +0 0.0763 +0 0.1337 +0 0.2382 +0 0.1968 +0 0.0998 +0 0.1978 +1 0.8784 +0 0.0328 +0 0.1388 +0 0.2105 +0 0.1150 +0 0.1114 +0 0.0376 +0 0.0850 +0 0.1262 +0 0.4829 +0 0.1691 +0 0.0777 +0 0.0887 +0 0.1576 +0 0.1151 +0 0.3377 +0 0.0685 +0 0.0947 +0 0.1117 +0 0.0704 +0 0.2097 +0 0.1283 +0 0.1352 +0 0.1202 +0 0.0570 +0 0.0815 +0 0.7018 +0 0.0497 +0 0.0764 +0 0.0508 +0 0.1218 +0 0.0673 +0 0.0721 +0 0.1572 +0 0.3504 +0 0.1513 +0 0.3283 +0 0.0681 +0 0.4391 +0 0.1620 +0 0.0650 +0 0.1211 +0 0.0748 +0 0.0655 +0 0.5618 +0 0.1004 +0 0.1509 +0 0.1153 +0 0.1719 +0 0.0834 +0 0.0412 +0 0.0618 +0 0.1290 +0 0.1679 +0 0.0776 +0 0.1172 +0 0.1898 +0 0.0792 +0 0.0696 +0 0.2785 +0 0.1894 +0 0.2787 +0 0.1178 +0 0.0402 +0 0.4495 +0 0.0512 +0 0.3125 +0 0.1499 +0 0.0838 +0 0.7349 +0 0.0978 +0 0.1198 +0 0.1892 +0 0.1467 +0 0.0635 +0 0.0427 +0 0.1001 +0 0.1108 +0 0.0649 +0 0.0450 +0 0.1708 +0 0.0671 +0 0.1551 +0 0.1266 +0 0.2355 +0 0.1078 +0 0.0482 +0 0.1976 +0 0.1675 +0 0.1747 +0 0.1420 +0 0.0720 +0 0.1471 +0 0.0970 +0 0.4752 +0 0.0817 +0 0.0392 +0 0.1421 +0 0.1652 +0 0.1277 +0 0.0696 +0 0.1417 +0 0.3570 +0 0.0518 +0 0.3175 +0 0.0957 +0 0.1174 +0 0.0932 +0 0.0396 +0 0.0802 +0 0.0750 +0 0.1853 +0 0.1885 +0 0.5533 +0 0.4973 +0 0.1126 +0 0.2349 +0 0.6566 +0 0.0870 +0 0.1127 +0 0.2375 +1 0.7559 +0 0.1357 +0 0.0621 +0 0.0831 +0 0.1163 +0 0.1090 +0 0.0752 +0 0.2900 +0 0.0750 +0 0.1024 +0 0.1555 +0 0.1878 +0 0.0620 +0 0.1078 +0 0.1986 +0 0.2728 +0 0.0704 +0 0.0971 +0 0.0550 +0 0.1357 +0 0.1044 +0 0.0842 +0 0.5705 +0 0.2443 +0 0.1114 +0 0.0447 +0 0.0974 +0 0.0661 +1 0.7587 +0 0.0723 +0 0.1068 +0 0.0626 +0 0.1065 +0 0.1493 +0 0.0815 +0 0.0883 +0 0.7424 +0 0.3228 +0 0.3698 +0 0.0759 +0 0.0616 +0 0.0761 +0 0.0872 +0 0.0833 +0 0.4000 +0 0.3178 +0 0.0810 +0 0.0414 +0 0.0718 +0 0.1407 +0 0.5471 +0 0.0604 +1 0.7577 +0 0.0580 +0 0.1355 +0 0.1359 +0 0.0414 +0 0.4449 +0 0.0751 +0 0.0433 +0 0.0984 +0 0.2145 +0 0.1563 +0 0.0672 +0 0.0455 +0 0.0478 +0 0.0930 +0 0.0640 +0 0.0692 +0 0.2178 +0 0.0830 +0 0.1434 +0 0.2933 +0 0.1422 +0 0.1061 +0 0.0812 +0 0.0684 +0 0.0987 +0 0.0819 +0 0.0827 +0 0.0678 +0 0.0579 +0 0.0593 +0 0.1267 +0 0.1392 +0 0.0846 +0 0.0979 +0 0.0690 +0 0.1204 +0 0.0587 +0 0.0828 +0 0.1310 +0 0.0603 +0 0.2247 +0 0.2421 +0 0.1009 +0 0.7267 +0 0.0722 +0 0.4044 +0 0.1955 +0 0.0754 +0 0.0644 +0 0.1151 +0 0.1576 +0 0.0815 +0 0.1343 +0 0.0598 +0 0.0722 +0 0.1087 +0 0.2573 +0 0.1312 +0 0.0497 +0 0.1283 +0 0.0298 +0 0.1133 +0 0.0743 +0 0.1130 +0 0.3876 +0 0.1279 +0 0.1710 +0 0.0618 +0 0.1836 +0 0.1037 +0 0.1496 +0 0.3029 +0 0.1852 +0 0.0686 +0 0.1011 +0 0.0289 +0 0.1574 +0 0.0972 +0 0.0825 +0 0.1073 +0 0.1281 +0 0.1313 +0 0.0511 +0 0.0850 +0 0.0838 +0 0.6496 +0 0.1387 +0 0.0892 +0 0.1320 +0 0.2696 +0 0.3733 +0 0.1084 +0 0.0650 +0 0.1305 +0 0.1092 +0 0.0526 +0 0.1434 +0 0.0557 +0 0.0416 +0 0.0544 +0 0.0792 +0 0.1002 +0 0.0777 +0 0.0846 +0 0.1749 +0 0.1215 +0 0.0331 +0 0.1481 +0 0.7445 +0 0.0490 +0 0.1158 +0 0.1314 +0 0.0360 +0 0.1257 +0 0.0872 +0 0.0740 +0 0.0777 +0 0.1127 +0 0.0587 +0 0.0778 +0 0.0352 +0 0.0889 +0 0.1460 +0 0.0668 +0 0.0724 +0 0.0685 +0 0.5607 +0 0.0858 +0 0.0897 +0 0.2005 +0 0.2133 +0 0.1731 +0 0.1392 +0 0.1321 +0 0.2230 +0 0.1655 +0 0.1027 +0 0.2810 +0 0.1299 +0 0.2272 +0 0.1626 +0 0.1935 +0 0.5568 +1 0.7622 +0 0.1082 +0 0.0768 +0 0.6463 +0 0.1030 +0 0.1215 +0 0.0897 +0 0.0957 +0 0.0563 +0 0.0547 +0 0.0876 +0 0.1157 +0 0.0804 +0 0.1498 +0 0.0596 +0 0.1541 +0 0.0638 +0 0.1151 +0 0.1700 +0 0.1589 +0 0.1554 +0 0.0408 +0 0.1658 +0 0.1147 +0 0.1103 +0 0.1807 +0 0.1118 +0 0.1880 +0 0.0681 +0 0.1346 +0 0.1156 +0 0.2211 +0 0.0918 +0 0.0979 +0 0.0604 +0 0.3576 +0 0.1232 +0 0.1056 +0 0.2089 +0 0.1453 +0 0.1352 +0 0.1027 +0 0.1148 +0 0.0947 +0 0.1284 +0 0.1217 +0 0.1052 +0 0.1196 +0 0.4938 +0 0.1841 +0 0.1051 +0 0.0895 +0 0.0799 +0 0.0509 +0 0.0680 +0 0.3052 +0 0.0735 +0 0.2734 +0 0.1728 +0 0.0839 +0 0.1253 +0 0.1586 +0 0.1302 +0 0.2944 +0 0.1125 +0 0.1165 +0 0.0884 +0 0.0755 +1 0.8033 +0 0.0988 +0 0.0343 +0 0.2271 +0 0.0850 +0 0.1217 +0 0.0444 +0 0.0582 +0 0.1420 +0 0.0457 +0 0.0564 +0 0.0849 +0 0.0737 +0 0.1374 +0 0.0538 +0 0.1773 +0 0.2168 +0 0.7254 +0 0.1329 +0 0.1025 +0 0.0660 +0 0.0510 +0 0.0412 +0 0.1071 +0 0.0533 +0 0.1072 +0 0.0692 +0 0.1250 +0 0.0676 +0 0.0952 +1 0.8517 +0 0.0844 +0 0.0503 +0 0.1635 +0 0.0761 +0 0.0731 +0 0.0522 +0 0.1130 +0 0.1670 +0 0.1371 +0 0.0492 +0 0.0921 +0 0.1018 +0 0.3561 +0 0.2889 +0 0.1572 +0 0.1139 +0 0.1316 +0 0.1561 +0 0.0432 +0 0.1157 +0 0.0387 +0 0.0991 +0 0.3294 +0 0.1722 +0 0.0945 +0 0.0824 +0 0.0907 +0 0.1284 +0 0.3992 +0 0.1379 +0 0.0766 +0 0.0875 +0 0.4295 +0 0.1019 +0 0.0897 +0 0.0946 +0 0.0435 +0 0.1037 +0 0.0967 +0 0.1005 +0 0.1048 +0 0.2509 +0 0.0599 +0 0.0811 +0 0.6012 +0 0.1269 +0 0.1902 +0 0.1427 +0 0.3163 +0 0.2384 +0 0.0727 +0 0.0548 +0 0.0512 +0 0.1096 +0 0.1201 +1 0.8753 +0 0.1477 +1 0.8280 +0 0.1258 +0 0.0596 +0 0.1029 +0 0.0795 +0 0.1551 +0 0.0845 +0 0.2470 +0 0.1438 +0 0.1242 +0 0.0494 +0 0.5973 +0 0.1793 +0 0.3297 +0 0.0821 +0 0.0340 +0 0.0930 +0 0.0858 +0 0.3565 +0 0.0619 +0 0.1796 +0 0.0538 +0 0.1060 +0 0.1878 +0 0.2878 +0 0.3968 +0 0.0352 +0 0.1637 +0 0.0641 +0 0.0509 +0 0.1780 +0 0.0637 +0 0.2246 +0 0.0862 +0 0.1186 +0 0.1168 +0 0.0877 +0 0.4245 +0 0.0972 +0 0.0966 +0 0.0616 +0 0.1638 +0 0.1430 +0 0.0874 +0 0.5981 +0 0.1301 +0 0.1049 +0 0.1393 +0 0.0940 +0 0.1874 +0 0.0952 +0 0.0516 +0 0.0937 +0 0.2365 +0 0.2338 +0 0.0382 +0 0.0798 +0 0.1543 +0 0.2029 +0 0.0961 +0 0.1014 +0 0.1078 +0 0.0897 +0 0.1006 +0 0.1104 +0 0.1201 +0 0.0914 +0 0.0820 +0 0.0688 +0 0.1125 +0 0.1202 +0 0.2780 +0 0.2512 +0 0.4228 +0 0.1360 +0 0.0712 +0 0.0424 +0 0.2207 +0 0.1465 +0 0.0583 +0 0.0866 +0 0.1888 +0 0.2236 +0 0.0703 +0 0.1419 +0 0.3900 +0 0.0466 +0 0.1521 +0 0.0633 +0 0.0684 +0 0.1344 +0 0.0600 +0 0.1846 +0 0.5268 +0 0.1291 +0 0.1996 +0 0.2473 +0 0.1289 +0 0.0395 +0 0.0628 +0 0.1687 +0 0.1547 +0 0.0621 +0 0.0558 +0 0.0493 +0 0.3738 +0 0.1548 +0 0.3478 +0 0.6673 +0 0.2724 +0 0.0868 +0 0.2676 +0 0.0910 +0 0.1293 +0 0.0775 +0 0.1539 +0 0.0693 +0 0.0586 +0 0.0757 +0 0.1440 +0 0.4339 +0 0.1581 +0 0.0852 +0 0.6427 +0 0.0430 +0 0.1061 +0 0.1336 +0 0.0606 +0 0.2762 +0 0.1669 +0 0.0487 +0 0.1668 +0 0.1036 +0 0.3114 +0 0.0586 +0 0.1020 +0 0.0471 +0 0.1052 +0 0.0906 +0 0.1836 +0 0.0577 +0 0.0874 +0 0.1727 +0 0.2641 +0 0.0820 +0 0.0977 +0 0.1897 +0 0.0740 +0 0.3217 +0 0.1868 +0 0.0912 +0 0.1210 +0 0.0402 +0 0.0857 +0 0.1454 +0 0.1614 +0 0.1517 +0 0.1845 +0 0.0731 +0 0.6650 +0 0.1272 +0 0.0919 +0 0.0750 +0 0.0845 +0 0.0661 +0 0.1681 +0 0.3728 +0 0.0635 +0 0.0808 +0 0.0856 +0 0.3864 +0 0.0911 +0 0.1599 +0 0.0520 +0 0.0987 +0 0.0443 +0 0.1909 +0 0.0579 +0 0.0825 +0 0.0627 +0 0.0671 +0 0.0826 +0 0.1042 +0 0.1669 +0 0.1661 +0 0.1935 +0 0.2617 +0 0.2581 +0 0.5254 +0 0.1008 +0 0.0820 +0 0.5367 +0 0.1562 +0 0.0324 +0 0.0420 +0 0.1427 +0 0.0341 +0 0.3584 +0 0.0626 +0 0.2799 +0 0.1038 +0 0.2579 +0 0.6785 +0 0.7176 +0 0.1015 +0 0.0860 +0 0.3212 +0 0.1135 +0 0.0805 +0 0.0607 +0 0.0975 +0 0.1892 +0 0.0991 +0 0.1472 +0 0.0728 +0 0.2502 +0 0.0446 +0 0.0366 +0 0.1764 +0 0.0654 +0 0.1171 +0 0.0866 +0 0.0830 +0 0.0463 +0 0.1155 +0 0.0683 +0 0.1349 +0 0.0802 +0 0.1577 +0 0.1305 +0 0.1346 +0 0.3977 +0 0.1678 +0 0.0471 +0 0.0987 +0 0.0699 +0 0.1079 +0 0.1065 +0 0.1190 +0 0.0891 +0 0.6553 +0 0.0514 +0 0.5347 +0 0.0828 +0 0.0320 +0 0.1037 +0 0.1366 +0 0.2399 +0 0.0939 +0 0.2225 +0 0.1357 +0 0.0786 +0 0.2675 +0 0.0797 +0 0.0554 +0 0.1131 +0 0.3321 +0 0.1017 +0 0.2240 +0 0.2384 +0 0.1412 +0 0.1749 +0 0.1519 +0 0.1514 +0 0.1433 +0 0.1238 +0 0.0488 +0 0.0539 +0 0.1298 +1 0.7974 +0 0.1595 +0 0.0984 +0 0.1223 +0 0.0914 +0 0.0875 +0 0.0487 +0 0.6585 +0 0.0767 +0 0.0732 +1 0.8088 +0 0.0755 +0 0.2930 +0 0.0822 +0 0.0749 +0 0.0759 +0 0.2760 +0 0.1624 +0 0.0585 +0 0.1625 +0 0.0763 +0 0.1239 +0 0.2550 +0 0.0606 +0 0.0629 +0 0.2193 +0 0.1181 +0 0.0817 +0 0.1142 +0 0.1737 +0 0.0551 +0 0.2221 +0 0.0393 +0 0.0901 +0 0.0869 +0 0.0480 +0 0.1841 +0 0.0891 +0 0.0738 +0 0.2631 +0 0.7175 +0 0.1386 +0 0.1202 +0 0.1807 +0 0.0931 +0 0.0364 +0 0.1365 +0 0.3975 +0 0.0719 +0 0.1462 +0 0.1206 +0 0.1394 +0 0.1127 +0 0.1287 +0 0.1060 +0 0.1034 +0 0.3110 +0 0.2004 +0 0.2488 +0 0.1025 +0 0.1114 +0 0.2597 +0 0.2101 +0 0.0711 +0 0.2550 +0 0.1147 +0 0.0555 +1 0.7577 +0 0.0489 +0 0.3610 +0 0.1403 +0 0.1837 +0 0.0378 +0 0.7377 +0 0.0939 +0 0.1201 +0 0.2684 +0 0.0642 +0 0.0971 +0 0.2319 +0 0.1169 +0 0.1704 +0 0.2435 +0 0.2272 +0 0.0786 +0 0.1909 +0 0.2361 +0 0.0643 +0 0.0378 +0 0.0594 +0 0.0945 +0 0.0556 +0 0.0963 +0 0.1284 +0 0.2169 +0 0.0377 +0 0.0631 +0 0.0857 +0 0.0613 +0 0.0585 +1 0.7818 +0 0.1243 +0 0.1104 +0 0.0437 +0 0.1316 +0 0.0707 +0 0.0855 +0 0.0548 +0 0.0875 +0 0.1204 +0 0.1682 +0 0.0583 +0 0.0883 +0 0.0688 +0 0.0655 +0 0.1172 +0 0.1038 +0 0.1197 +0 0.0944 +0 0.0945 +0 0.1081 +0 0.2371 +1 0.8047 +0 0.1848 +0 0.1042 +0 0.7278 +0 0.1987 +0 0.2010 +0 0.0753 +0 0.0613 +0 0.0759 +0 0.0793 +0 0.1097 +0 0.0831 +0 0.0857 +0 0.2895 +0 0.0363 +0 0.1009 +0 0.5273 +0 0.1279 +0 0.0576 +0 0.0775 +0 0.1142 +0 0.0648 +0 0.0924 +0 0.2752 +0 0.0661 +0 0.0732 +0 0.1459 +0 0.0848 +0 0.4241 +0 0.0496 +0 0.0902 +0 0.1023 +0 0.1703 +0 0.1086 +0 0.0876 +0 0.1108 +0 0.0976 +0 0.0363 +0 0.0726 +0 0.1664 +0 0.0840 +0 0.0757 +0 0.0870 +0 0.3465 +0 0.0977 +0 0.0946 +0 0.1196 +0 0.0980 +0 0.1417 +0 0.1132 +0 0.2119 +0 0.0596 +0 0.3812 +0 0.2436 +0 0.0609 +0 0.2063 +0 0.2428 +0 0.0887 +0 0.0910 +0 0.0462 +0 0.0625 +0 0.0719 +0 0.1267 +0 0.1129 +0 0.1373 +0 0.0742 +1 0.8547 +0 0.1907 +0 0.0483 +0 0.0673 +0 0.1151 +0 0.1158 +0 0.1429 +0 0.0510 +0 0.5680 +0 0.0553 +0 0.0890 +0 0.2550 +1 0.7753 +0 0.0970 +0 0.0992 +0 0.2690 +0 0.0617 +0 0.1036 +0 0.0924 +0 0.1701 +0 0.1114 +0 0.1056 +0 0.0916 +0 0.0629 +0 0.0830 +0 0.0757 +0 0.1170 +0 0.1947 +0 0.1176 +0 0.0765 +0 0.1550 +0 0.1539 +0 0.1672 +0 0.0551 +0 0.0741 +0 0.0770 +0 0.0373 +0 0.2175 +0 0.1314 +0 0.1125 +0 0.2655 +0 0.1556 +0 0.0911 +0 0.1060 +0 0.0772 +0 0.2001 +0 0.1567 +0 0.4060 +0 0.0864 +0 0.0820 +0 0.2318 +0 0.1347 +0 0.1387 +0 0.0422 +0 0.0687 +0 0.1602 +0 0.0670 +0 0.0498 +0 0.0720 +0 0.0628 +0 0.1314 +0 0.0568 +0 0.1213 +0 0.1092 +0 0.0915 +0 0.0426 +0 0.0652 +0 0.1820 +0 0.1176 +0 0.1181 +0 0.1324 +0 0.0848 +0 0.1378 +0 0.0515 +0 0.0919 +0 0.1425 +0 0.1112 +0 0.0567 +0 0.0545 +0 0.0853 +0 0.4430 +0 0.1215 +0 0.1303 +0 0.0492 +0 0.1524 +0 0.2626 +0 0.0794 +0 0.1319 +0 0.0901 +0 0.0763 +0 0.0555 +0 0.1350 +0 0.0945 +0 0.1147 +0 0.2350 +0 0.2063 +0 0.3115 +0 0.0667 +0 0.0579 +0 0.0926 +0 0.1350 +0 0.1424 +0 0.2156 +0 0.1394 +0 0.0871 +0 0.2774 +0 0.0793 +0 0.0882 +0 0.0934 +0 0.1658 +0 0.5613 +0 0.1652 +0 0.1410 +0 0.0555 +0 0.0546 +0 0.0637 +0 0.0650 +0 0.0662 +0 0.0366 +0 0.0941 +0 0.1294 +0 0.2566 +0 0.0642 +0 0.1113 +0 0.0618 +0 0.2921 +0 0.1593 +0 0.2548 +0 0.1217 +0 0.0759 +0 0.0938 +0 0.1137 +0 0.1300 +0 0.2289 +0 0.1152 +0 0.1118 +0 0.1106 +0 0.0921 +0 0.0901 +0 0.0964 +0 0.1434 +0 0.1904 +0 0.0573 +0 0.0472 +0 0.0601 +0 0.0460 +0 0.7139 +0 0.1213 +0 0.1555 +0 0.0952 +0 0.1916 +0 0.0786 +0 0.1062 +1 0.7777 +0 0.1111 +0 0.1050 +0 0.0744 +0 0.2481 +0 0.1281 +0 0.0683 +0 0.1462 +0 0.0927 +0 0.0505 +0 0.0552 +0 0.1639 +0 0.0950 +0 0.0921 +0 0.3402 +0 0.1497 +0 0.1233 +0 0.1094 +0 0.0755 +0 0.0446 +0 0.0739 +0 0.1476 +0 0.1290 +0 0.0695 +0 0.1172 +0 0.1028 +0 0.0929 +0 0.2131 +0 0.1076 +0 0.0582 +0 0.1416 +0 0.1497 +0 0.1561 +0 0.0793 +0 0.0502 +0 0.1001 +0 0.0686 +0 0.1757 +0 0.2728 +0 0.0483 +0 0.0739 +0 0.1078 +0 0.1466 +0 0.1825 +0 0.0508 +0 0.2030 +0 0.1009 +0 0.0445 +0 0.0965 +0 0.1781 +0 0.0790 +0 0.0992 +0 0.0715 +0 0.1309 +0 0.6675 +0 0.1457 +0 0.2304 +0 0.1297 +0 0.3264 +0 0.1075 +0 0.1317 +0 0.0746 +0 0.0933 +0 0.0897 +0 0.1773 +0 0.1047 +0 0.0698 +0 0.0680 +0 0.3262 +0 0.1052 +1 0.8376 +0 0.1933 +0 0.0700 +0 0.1701 +0 0.2916 +1 0.8170 +0 0.1096 +0 0.1038 +0 0.0756 +0 0.1181 +0 0.1645 +0 0.1057 +0 0.7316 +0 0.0681 +0 0.0766 +0 0.3502 +0 0.1094 +0 0.0893 +0 0.0458 +0 0.0387 +0 0.0858 +0 0.0865 +0 0.3226 +0 0.2372 +0 0.1617 +0 0.2680 +0 0.1655 +0 0.0522 +0 0.1105 +1 0.8021 +0 0.3730 +0 0.0848 +0 0.1081 +0 0.1861 +0 0.0486 +0 0.0986 +0 0.1216 +0 0.0638 +0 0.6518 +0 0.0959 +0 0.0450 +0 0.1663 +0 0.1690 +0 0.0578 +0 0.1051 +0 0.1176 +0 0.1447 +0 0.1070 +0 0.2015 +0 0.0604 +0 0.1790 +0 0.1238 +0 0.0580 +0 0.0964 +0 0.0414 +0 0.3685 +0 0.0532 +0 0.0538 +0 0.0639 +0 0.1328 +0 0.6203 +0 0.1965 +0 0.1469 +0 0.0973 +0 0.1247 +0 0.0930 +0 0.0958 +0 0.6926 +0 0.1038 +0 0.6201 +0 0.1408 +0 0.1362 +0 0.1237 +0 0.2477 +0 0.1463 +0 0.0722 +0 0.0642 +0 0.0778 +0 0.0891 +0 0.0989 +0 0.1934 +0 0.0871 +0 0.2017 +0 0.2012 +0 0.1161 +0 0.0431 +1 0.7616 +0 0.1943 +0 0.1578 +0 0.0636 +0 0.2285 +0 0.1293 +0 0.0884 +0 0.1335 +0 0.3121 +0 0.0968 +0 0.1200 +0 0.0860 +0 0.0778 +0 0.0673 +0 0.0633 +0 0.1430 +0 0.1185 +0 0.0468 +0 0.0868 +0 0.0793 +0 0.0532 +0 0.1344 +0 0.1020 +0 0.0363 +0 0.6312 +0 0.2413 +0 0.0856 +0 0.2985 +0 0.0502 +0 0.1456 +0 0.3808 +0 0.1820 +0 0.2028 +0 0.0470 +0 0.5364 +0 0.1419 +0 0.0547 +0 0.0631 +0 0.0656 +0 0.5806 +0 0.3028 +0 0.1049 +0 0.2408 +0 0.0733 +0 0.0496 +0 0.0512 +0 0.0683 +0 0.0841 +0 0.0954 +0 0.1062 +0 0.1509 +0 0.0331 +0 0.1098 +0 0.0908 +0 0.0833 +0 0.0398 +0 0.0792 +0 0.1392 +0 0.1360 +0 0.2245 +0 0.0920 +0 0.6167 +0 0.4967 +0 0.4490 +0 0.0443 +0 0.1650 +0 0.0660 +0 0.2949 +0 0.0931 +0 0.0755 +0 0.1762 +0 0.1083 +0 0.0614 +0 0.0571 +0 0.1046 +0 0.0725 +0 0.0371 +0 0.0989 +0 0.0942 +0 0.0839 +0 0.0793 +0 0.2611 +0 0.6083 +0 0.1636 +0 0.1046 +0 0.1811 +0 0.0478 +0 0.1295 +0 0.0719 +0 0.0560 +0 0.1260 +0 0.1770 +0 0.1181 +0 0.1184 +0 0.2594 +0 0.0947 +0 0.4266 +1 0.8562 +0 0.1043 +0 0.0503 +0 0.0517 +0 0.1868 +0 0.0437 +0 0.3925 +0 0.0802 +0 0.0619 +0 0.1391 +0 0.2086 +0 0.0976 +0 0.0499 +0 0.0485 +0 0.3701 +0 0.0854 +0 0.1106 +0 0.1181 +0 0.0785 +0 0.0958 +0 0.0359 +0 0.2357 +0 0.1185 +0 0.2928 +0 0.3569 +0 0.0936 +0 0.0471 +0 0.0850 +0 0.1596 +0 0.1756 +0 0.0606 +0 0.0836 +0 0.0659 +0 0.3352 +0 0.2040 +0 0.2983 +0 0.0662 +0 0.2155 +0 0.1153 +0 0.3265 +0 0.0858 +0 0.1140 +0 0.0981 +0 0.5556 +0 0.1030 +0 0.1002 +0 0.0721 +0 0.0462 +0 0.1396 +0 0.0799 +0 0.0416 +0 0.2630 +0 0.0878 +0 0.0566 +0 0.0654 +0 0.2268 +0 0.0532 +0 0.1007 +0 0.1414 +0 0.0799 +0 0.1464 +0 0.1272 +0 0.0773 +0 0.0773 +0 0.0859 +0 0.2214 +0 0.0852 +0 0.0912 +0 0.1582 +0 0.0787 +0 0.1040 +0 0.1747 +0 0.1384 +0 0.1235 +0 0.0600 +1 0.8175 +0 0.1094 +0 0.0892 +0 0.0411 +0 0.0490 +0 0.1231 +0 0.0352 +0 0.1926 +0 0.6333 +0 0.0710 +0 0.0665 +0 0.1630 +0 0.1765 +0 0.4876 +0 0.0799 +0 0.1362 +0 0.2290 +0 0.1043 +0 0.1222 +0 0.0811 +0 0.2452 +0 0.1648 +0 0.1463 +0 0.0998 +0 0.1724 +0 0.0742 +0 0.0810 +0 0.1530 +0 0.2023 +0 0.0873 +0 0.0641 +0 0.1629 +0 0.0754 +0 0.1027 +0 0.0578 +0 0.0827 +0 0.1317 +0 0.3242 +0 0.1354 +0 0.1086 +0 0.1803 +0 0.2129 +0 0.0454 +0 0.1635 +0 0.0832 +0 0.1891 +0 0.2899 +0 0.0903 +0 0.1103 +0 0.0812 +0 0.1009 +0 0.0676 +0 0.0850 +0 0.0440 +0 0.1429 +0 0.1094 +0 0.1348 +0 0.1921 +0 0.1559 +0 0.6653 +0 0.0957 +0 0.1011 +0 0.2183 +0 0.0915 +0 0.1197 +0 0.1225 +0 0.0615 +0 0.3087 +0 0.0478 +0 0.3940 +0 0.1083 +0 0.1260 +0 0.0554 +0 0.3325 +0 0.0805 +0 0.2207 +0 0.0976 +0 0.0848 +0 0.4374 +0 0.1825 +0 0.0501 +0 0.0362 +0 0.2030 +0 0.7100 +0 0.4719 +0 0.1587 +0 0.1974 +0 0.5336 +0 0.1781 +0 0.2676 +0 0.1111 +0 0.1161 +0 0.0636 +0 0.1023 +0 0.0324 +0 0.1585 +0 0.1606 +0 0.0987 +0 0.2300 +0 0.5872 +0 0.1140 +0 0.2443 +0 0.0686 +0 0.0570 +0 0.0503 +0 0.2040 +0 0.0602 +0 0.0870 +0 0.3982 +0 0.1603 +0 0.0912 +0 0.0826 +0 0.0995 +0 0.0772 +0 0.0486 +0 0.0329 +0 0.1970 +0 0.0665 +0 0.1083 +1 0.8483 +0 0.0513 +0 0.1238 +0 0.1137 +0 0.1211 +0 0.0815 +0 0.0780 +0 0.0584 +0 0.0713 +0 0.0772 +0 0.1878 +0 0.1661 +0 0.0967 +0 0.2317 +0 0.0613 +0 0.0736 +0 0.0918 +0 0.4818 +0 0.0937 +0 0.1348 +0 0.7188 +0 0.0857 +0 0.0416 +0 0.0670 +0 0.2320 +0 0.1785 +0 0.1847 +0 0.0472 +0 0.1979 +0 0.0801 +0 0.0808 +0 0.1816 +0 0.0882 +0 0.0490 +0 0.0686 +0 0.1655 +0 0.0684 +0 0.0773 +0 0.0753 +0 0.0996 +0 0.3886 +0 0.1118 +0 0.0960 +0 0.2838 +0 0.1259 +0 0.0894 +0 0.1772 +0 0.1654 +0 0.2040 +0 0.3455 +0 0.1246 +0 0.0523 +0 0.5402 +0 0.1948 +0 0.1108 +0 0.2032 +0 0.0556 +0 0.0898 +0 0.1531 +0 0.1090 +0 0.1366 +0 0.1863 +0 0.0544 +0 0.1605 +0 0.0516 +0 0.0607 +0 0.0640 +0 0.0905 +0 0.0951 +1 0.8297 +0 0.0725 +0 0.0920 +0 0.0967 +0 0.1372 +0 0.0779 +0 0.1106 +0 0.1152 +0 0.3644 +0 0.2513 +0 0.0527 +0 0.3308 +0 0.2295 +0 0.0863 +0 0.1334 +0 0.0588 +0 0.0753 +0 0.1877 +0 0.1365 +0 0.0908 +0 0.2801 +0 0.0820 +0 0.2013 +0 0.0834 +0 0.1066 +0 0.0463 +0 0.0953 +0 0.0428 +0 0.0895 +0 0.0458 +0 0.1003 +0 0.0518 +0 0.2853 +0 0.0936 +0 0.5703 +0 0.1253 +0 0.0768 +0 0.0559 +0 0.0583 +0 0.0890 +0 0.1242 +0 0.0742 +0 0.0488 +0 0.1565 +0 0.1476 +0 0.1074 +0 0.4486 +0 0.0897 +0 0.1708 +0 0.1187 +0 0.1854 +0 0.0630 +0 0.1298 +0 0.0864 +0 0.3548 +0 0.2190 +0 0.0718 +0 0.2798 +0 0.0464 +0 0.1124 +0 0.1929 +0 0.1436 +0 0.0382 +0 0.0600 +0 0.4104 +0 0.0865 +0 0.0724 +0 0.0937 +0 0.4940 +0 0.0398 +0 0.0878 +0 0.0678 +0 0.2418 +0 0.1334 +0 0.1945 +0 0.0852 +0 0.2495 +0 0.0639 +0 0.0995 +0 0.0514 +0 0.3048 +0 0.0981 +0 0.0958 +0 0.1106 +0 0.1195 +0 0.0979 +0 0.1854 +0 0.0912 +0 0.1208 +0 0.0999 +0 0.2092 +0 0.0721 +0 0.0977 +0 0.0539 +0 0.0739 +1 0.8733 +0 0.1251 +0 0.1010 +0 0.1075 +0 0.0605 +0 0.0590 +0 0.2995 +0 0.0622 +0 0.0755 +0 0.0681 +0 0.2726 +0 0.0487 +0 0.0661 +0 0.2003 +0 0.1191 +0 0.0819 +0 0.0655 +0 0.0846 +0 0.1569 +0 0.0574 +0 0.0886 +0 0.1566 +0 0.4250 +0 0.1185 +0 0.0847 +0 0.1934 +0 0.1504 +0 0.0843 +0 0.2666 +0 0.2060 +0 0.1041 +0 0.7292 +0 0.2293 +0 0.4963 +0 0.1310 +0 0.0515 +0 0.3452 +0 0.1323 +0 0.1050 +0 0.2856 +0 0.0483 +0 0.1503 +0 0.3085 +0 0.1760 +0 0.2796 +0 0.2113 +0 0.1127 +0 0.0415 +0 0.1256 +0 0.1094 +0 0.0553 +0 0.0851 +0 0.0592 +0 0.2290 +0 0.2051 +0 0.0749 +0 0.1400 +0 0.0492 +0 0.0861 +0 0.0447 +0 0.1582 +0 0.0740 +0 0.0801 +0 0.2302 +0 0.0984 +0 0.0816 +0 0.0810 +0 0.0687 +0 0.0539 +0 0.1309 +0 0.7349 +0 0.0496 +0 0.0663 +0 0.0875 +0 0.0924 +0 0.1710 +0 0.1166 +0 0.1283 +0 0.0923 +0 0.0365 +0 0.0656 +0 0.1361 +0 0.0798 +0 0.0479 +0 0.1597 +0 0.0408 +0 0.0954 +0 0.1072 +0 0.0609 +0 0.0706 +0 0.1812 +0 0.1284 +0 0.1000 +0 0.1270 +0 0.0971 +0 0.1839 +0 0.0517 +0 0.1796 +0 0.1055 +0 0.1061 +0 0.0897 +0 0.0951 +0 0.1637 +0 0.0628 +0 0.4362 +0 0.0572 +0 0.0840 +0 0.0927 +0 0.1074 +0 0.0662 +0 0.1491 +0 0.1477 +0 0.0577 +0 0.0628 +0 0.1717 +0 0.0672 +0 0.1645 +1 0.7700 +0 0.0917 +0 0.1608 +0 0.0736 +0 0.1028 +0 0.0787 +0 0.0435 +0 0.3238 +0 0.0802 +0 0.1381 +0 0.1968 +0 0.0959 +0 0.1024 +0 0.0645 +0 0.4192 +0 0.0533 +0 0.1060 +0 0.2047 +0 0.3301 +0 0.0425 +0 0.0378 +0 0.0578 +0 0.0924 +0 0.3333 +0 0.0557 +0 0.0526 +0 0.0614 +0 0.2721 +0 0.3239 +0 0.1240 +0 0.0475 +0 0.0656 +0 0.0958 +0 0.0483 +0 0.1336 +0 0.1128 +0 0.0835 +0 0.0808 +0 0.0426 +0 0.1250 +0 0.0369 +0 0.0820 +0 0.2808 +0 0.0366 +0 0.3495 +0 0.2936 +0 0.1297 +0 0.0776 +0 0.2190 +0 0.0321 +0 0.0611 +0 0.0944 +0 0.0578 +0 0.0939 +0 0.5758 +0 0.0621 +1 0.7502 +0 0.0490 +0 0.0850 +0 0.0809 +0 0.0833 +0 0.0405 +0 0.1265 +0 0.3167 +0 0.1755 +0 0.6470 +0 0.6426 +0 0.0360 +0 0.1607 +0 0.1719 +0 0.1650 +0 0.1384 +0 0.2213 +0 0.4540 +0 0.0662 +0 0.1430 +0 0.0986 +0 0.0875 +0 0.0739 +0 0.0888 +0 0.2139 +0 0.0631 +0 0.1899 +0 0.1029 +0 0.0847 +0 0.0863 +0 0.3963 +0 0.0401 +0 0.1089 +0 0.0992 +0 0.1720 +0 0.0591 +0 0.1473 +0 0.1082 +0 0.1664 +0 0.2837 +0 0.0579 +0 0.3169 +0 0.2357 +0 0.1252 +0 0.0503 +0 0.1230 +0 0.1068 +0 0.0867 +0 0.0643 +0 0.0764 +0 0.0339 +0 0.1254 +0 0.1373 +0 0.0992 +0 0.0756 +0 0.0937 +0 0.0803 +0 0.0676 +0 0.0659 +0 0.0851 +0 0.1311 +0 0.2640 +0 0.0586 +0 0.0507 +0 0.1042 +0 0.1038 +0 0.0906 +0 0.0758 +0 0.1517 +0 0.1746 +0 0.1821 +0 0.0989 +0 0.0916 +0 0.1887 +0 0.0553 +0 0.1936 +0 0.0894 +0 0.1826 +0 0.0528 +0 0.0705 +0 0.1096 +0 0.0794 +0 0.2683 +0 0.0438 +0 0.1058 +0 0.1279 +0 0.0575 +0 0.1049 +0 0.2485 +0 0.0823 +0 0.1001 +0 0.0549 +0 0.6818 +0 0.1852 +0 0.1108 +0 0.2228 +0 0.0356 +0 0.0661 +0 0.0658 +0 0.2388 +0 0.0557 +0 0.0616 +0 0.4945 +0 0.0651 +0 0.0886 +0 0.1375 +0 0.0575 +0 0.0705 +0 0.0865 +0 0.2459 +0 0.2200 +0 0.0845 +0 0.2033 +0 0.1427 +0 0.0527 +0 0.1659 +0 0.0557 +0 0.3507 +0 0.0725 +0 0.1461 +0 0.2690 +0 0.0693 +0 0.1222 +0 0.2674 +0 0.1874 +0 0.0508 +0 0.1001 +0 0.0450 +0 0.0820 +0 0.1674 +0 0.1948 +0 0.1451 +0 0.0559 +0 0.1886 +0 0.3694 +0 0.1087 +0 0.2023 +0 0.1202 +0 0.1201 +0 0.0729 +0 0.1202 +0 0.0610 +0 0.0731 +0 0.0710 +0 0.1770 +0 0.1287 +0 0.1014 +0 0.0637 +0 0.3497 +0 0.2755 +0 0.0280 +0 0.0543 +0 0.0672 +0 0.1294 +0 0.3091 +0 0.2991 +0 0.1787 +0 0.0979 +0 0.0777 +0 0.1254 +0 0.1754 +0 0.1151 +0 0.0983 +0 0.2632 +0 0.2200 +0 0.3495 +0 0.1119 +0 0.1419 +0 0.0519 +0 0.0792 +0 0.1293 +0 0.1760 +0 0.1258 +0 0.0644 +0 0.1698 +0 0.0833 +0 0.1090 +0 0.1226 +0 0.0777 +0 0.0972 +0 0.0884 +0 0.1316 +0 0.1401 +0 0.0584 +0 0.1099 +0 0.0947 +0 0.2655 +0 0.1726 +0 0.1464 +0 0.0532 +0 0.3442 +0 0.1031 +0 0.0446 +0 0.0722 +0 0.0810 +0 0.5947 +0 0.0915 +0 0.1471 +0 0.0598 +0 0.0944 +0 0.0619 +0 0.1149 +0 0.0434 +0 0.0687 +0 0.1945 +0 0.1306 +0 0.1449 +0 0.2674 +0 0.1281 +0 0.2879 +0 0.1663 +0 0.1763 +0 0.0505 +0 0.4698 +0 0.0847 +0 0.0942 +0 0.0717 +0 0.0551 +0 0.1281 +0 0.0982 +0 0.1762 +0 0.1444 +0 0.2016 +0 0.1571 +0 0.1414 +0 0.0946 +0 0.0737 +0 0.1255 +0 0.1196 +0 0.0413 +0 0.1204 +0 0.4314 +0 0.2624 +0 0.1017 +0 0.6616 +0 0.0634 +0 0.1217 +0 0.0501 +0 0.0616 +0 0.1442 +0 0.0471 +0 0.6368 +0 0.0361 +1 0.8468 +0 0.0500 +0 0.1937 +0 0.1429 +0 0.0924 +0 0.1557 +0 0.0558 +0 0.1180 +0 0.1189 +0 0.1095 +0 0.2326 +0 0.1035 +0 0.1006 +0 0.1149 +0 0.0618 +0 0.1158 +0 0.0806 +0 0.1202 +0 0.3756 +0 0.1350 +0 0.1949 +0 0.0543 +0 0.1405 +0 0.0894 +0 0.1592 +0 0.1334 +0 0.1261 +0 0.0586 +0 0.1486 +0 0.0885 +0 0.0504 +0 0.0421 +0 0.1777 +0 0.0827 +0 0.0979 +0 0.1523 +1 0.7683 +0 0.1188 +0 0.2015 +0 0.0494 +0 0.2529 +0 0.1106 +0 0.1611 +0 0.6653 +0 0.0706 +1 0.8189 +0 0.2785 +0 0.0987 +1 0.8841 +0 0.0942 +0 0.0998 +0 0.2165 +0 0.0816 +0 0.1081 +0 0.0908 +0 0.2002 +0 0.1164 +0 0.0940 +0 0.0825 +0 0.0663 +0 0.0882 +0 0.0799 +0 0.1476 +0 0.0574 +0 0.0935 +1 0.8692 +0 0.0519 +0 0.7372 +0 0.1522 +0 0.0654 +0 0.1754 +0 0.1079 +0 0.0928 +0 0.0753 +0 0.2504 +0 0.0759 +0 0.2034 +0 0.1354 +0 0.3609 +0 0.1119 +0 0.1111 +0 0.1311 +0 0.0924 +0 0.3060 +0 0.0830 +0 0.0521 +1 0.8647 +0 0.0695 +0 0.0554 +0 0.1028 +0 0.0514 +0 0.1638 +0 0.1639 +0 0.1691 +0 0.0422 +0 0.0611 +0 0.0809 +0 0.4204 +0 0.0880 +0 0.1346 +0 0.1058 +0 0.1174 +0 0.1073 +0 0.0627 +0 0.1480 +0 0.0495 +0 0.2033 +0 0.3090 +0 0.1778 +0 0.1656 +0 0.1412 +0 0.1646 +0 0.2189 +0 0.0782 +0 0.1047 +0 0.1162 +0 0.0937 +0 0.0721 +0 0.0675 +0 0.0834 +0 0.0942 +0 0.0708 +0 0.0968 +0 0.0818 +0 0.0625 +0 0.0984 +0 0.0557 +0 0.0840 +0 0.0494 +0 0.0666 +0 0.0587 +0 0.1792 +0 0.0942 +0 0.2637 +0 0.1382 +0 0.1784 +0 0.0548 +0 0.1061 +0 0.0377 +0 0.1173 +0 0.6675 +0 0.0801 +0 0.0662 +0 0.0839 +0 0.0525 +0 0.2746 +0 0.2201 +0 0.2031 +0 0.1793 +0 0.1425 +0 0.1281 +0 0.1396 +0 0.4874 +0 0.0556 +0 0.0563 +0 0.0625 +0 0.0349 +0 0.1695 +0 0.0935 +0 0.2662 +0 0.1415 +0 0.0799 +0 0.5669 +0 0.0792 +0 0.4635 +0 0.0519 +0 0.6322 +0 0.1243 +0 0.5439 +0 0.1548 +0 0.7339 +0 0.0600 +0 0.0421 +0 0.1161 +0 0.6932 +0 0.2985 +0 0.0566 +0 0.2070 +0 0.0640 +0 0.4002 +0 0.2573 +0 0.1530 +0 0.1096 +0 0.0522 +0 0.0620 +0 0.1236 +0 0.0857 +0 0.1810 +0 0.0811 +0 0.0963 +0 0.0881 +0 0.1793 +0 0.0677 +0 0.0666 +0 0.1588 +0 0.0891 +0 0.0791 +0 0.0422 +0 0.1062 +0 0.1546 +0 0.1196 +0 0.1823 +0 0.2366 +0 0.1022 +0 0.0672 +0 0.3525 +0 0.2021 +0 0.0914 +0 0.2909 +0 0.0889 +0 0.1266 +0 0.0509 +0 0.6095 +0 0.1103 +0 0.1249 +0 0.2333 +0 0.2142 +0 0.5891 +0 0.1206 +0 0.0889 +0 0.0497 +0 0.0699 +0 0.0552 +0 0.4216 +0 0.1509 +0 0.2286 +0 0.6769 +0 0.1104 +0 0.0854 +0 0.0944 +0 0.0910 +0 0.0699 +0 0.0766 +0 0.1207 +0 0.1257 +0 0.1483 +0 0.2178 +0 0.1301 +0 0.1976 +0 0.0731 +0 0.0431 +0 0.0723 +0 0.0784 +0 0.0773 +0 0.2308 +0 0.4197 +0 0.0321 +0 0.1998 +0 0.0582 +0 0.1397 +0 0.1491 +0 0.0673 +0 0.0398 +0 0.0737 +0 0.0883 +0 0.1187 +0 0.3829 +0 0.1032 +0 0.0506 +0 0.0683 +0 0.1105 +0 0.3211 +0 0.1035 +0 0.2887 +0 0.1448 +0 0.0658 +0 0.0830 +0 0.1309 +0 0.1859 +0 0.0579 +0 0.0798 +0 0.1209 +0 0.0433 +0 0.2849 +0 0.1421 +0 0.1332 +0 0.7322 +0 0.0309 +0 0.0934 +0 0.1768 +0 0.0637 +0 0.1493 +0 0.1058 +0 0.1658 +0 0.0713 +0 0.0823 +0 0.0974 +0 0.1037 +0 0.0810 +0 0.0535 +0 0.3057 +0 0.4490 +0 0.1234 +0 0.0790 +0 0.1202 +0 0.1945 +0 0.1643 +0 0.2544 +0 0.1807 +0 0.0652 +0 0.0956 +0 0.1328 +0 0.1070 +0 0.1262 +0 0.1383 +0 0.4143 +0 0.1310 +0 0.2066 +0 0.1417 +0 0.1013 +0 0.0592 +0 0.0792 +0 0.1598 +0 0.1279 +0 0.0760 +0 0.0632 +0 0.2236 +0 0.1456 +0 0.0843 +0 0.1458 +0 0.1500 +0 0.0853 +0 0.5480 +0 0.1831 +0 0.0909 +0 0.0703 +0 0.1191 +0 0.0585 +0 0.2738 +0 0.0900 +0 0.0645 +1 0.7684 +0 0.1886 +0 0.1635 +0 0.0503 +0 0.1871 +0 0.2821 +0 0.6936 +0 0.2407 +0 0.0911 +0 0.1699 +0 0.0508 +0 0.0656 +0 0.0619 +0 0.0891 +0 0.1727 +0 0.0745 +0 0.1086 +0 0.0545 +0 0.0670 +0 0.1078 +0 0.0683 +0 0.6068 +0 0.1083 +0 0.0400 +0 0.0591 +0 0.3174 +0 0.1206 +0 0.1197 +0 0.2487 +0 0.0740 +0 0.1641 +0 0.0472 +0 0.0484 +0 0.1060 +0 0.1453 +0 0.0945 +0 0.0512 +0 0.0774 +0 0.0859 +0 0.2045 +0 0.2475 +0 0.0864 +1 0.7909 +0 0.0524 +0 0.1684 +0 0.0978 +0 0.0533 +0 0.0880 +0 0.2476 +0 0.1444 +0 0.2703 +0 0.1152 +0 0.1153 +0 0.1514 +0 0.0337 +0 0.0669 +0 0.1019 +0 0.1977 +0 0.0670 +0 0.1152 +0 0.0874 +0 0.0662 +0 0.0566 +0 0.1805 +0 0.1711 +0 0.1987 +0 0.1620 +0 0.3386 +0 0.1113 +0 0.3713 +0 0.1761 +0 0.0581 +0 0.0824 +0 0.5399 +0 0.0904 +0 0.0773 +0 0.0946 +0 0.0437 +0 0.0589 +0 0.1080 +0 0.2062 +0 0.1554 +0 0.2439 +0 0.1814 +0 0.1533 +0 0.6843 +0 0.0907 +0 0.0639 +0 0.3752 +0 0.1760 +0 0.0755 +0 0.0916 +0 0.1122 +0 0.0892 +0 0.2808 +0 0.0571 +0 0.1199 +0 0.0515 +0 0.1576 +0 0.1422 +0 0.1649 +0 0.0702 +0 0.3555 +0 0.3808 +0 0.1273 +0 0.1281 +0 0.1752 +0 0.0785 +0 0.2264 +0 0.1312 +0 0.1099 +0 0.1763 +0 0.0604 +1 0.8953 +0 0.1910 +0 0.0861 +0 0.4197 +0 0.2840 +0 0.0916 +0 0.2169 +0 0.0951 +0 0.1074 +0 0.1443 +0 0.0279 +0 0.7226 +0 0.0457 +0 0.0546 +0 0.1206 +0 0.0718 +0 0.0785 +0 0.2089 +0 0.0843 +0 0.1417 +0 0.2199 +0 0.1422 +0 0.1246 +0 0.1441 +0 0.0816 +0 0.4685 +0 0.2047 +0 0.3058 +0 0.1386 +0 0.0781 +0 0.0660 +0 0.0640 +0 0.0813 +0 0.1480 +0 0.0863 +1 0.8368 +0 0.1532 +0 0.2154 +0 0.0452 +0 0.1198 +0 0.1003 +0 0.0982 +0 0.3211 +0 0.0637 +0 0.0533 +0 0.1742 +0 0.0505 +0 0.0794 +0 0.1104 +0 0.1951 +0 0.1306 +0 0.1565 +0 0.1700 +0 0.1253 +0 0.0489 +0 0.0645 +1 0.7976 +0 0.0440 +0 0.0715 +0 0.1833 +0 0.1030 +0 0.0462 +0 0.0658 +0 0.0585 +0 0.2543 +0 0.0481 +0 0.0715 +0 0.0525 +0 0.1609 +0 0.3592 +0 0.3975 +0 0.0800 +0 0.0413 +0 0.1230 +0 0.7121 +0 0.1292 +0 0.1233 +0 0.0897 +0 0.1492 +0 0.1905 +1 0.8136 +0 0.0770 +0 0.1016 +0 0.4805 +0 0.0683 +0 0.0547 +0 0.1953 +0 0.0657 +0 0.1112 +0 0.1555 +0 0.1177 +0 0.1931 +0 0.1804 +0 0.0951 +0 0.2970 +0 0.2451 +0 0.0723 +0 0.1207 +0 0.0449 +0 0.1528 +0 0.1325 +0 0.0984 +0 0.0919 +0 0.6203 +0 0.0759 +0 0.0564 +0 0.4758 +0 0.2051 +0 0.2637 +0 0.0948 +0 0.0535 +0 0.1423 +0 0.0857 +0 0.1619 +0 0.2547 +0 0.0547 +0 0.0653 +0 0.1525 +0 0.0632 +0 0.4335 +0 0.0461 +0 0.0582 +0 0.1304 +0 0.1925 +0 0.1762 +0 0.1044 +0 0.1857 +0 0.0735 +0 0.4130 +0 0.0384 +0 0.0672 +0 0.0928 +0 0.2113 +0 0.0845 +0 0.1013 +0 0.2661 +0 0.0899 +0 0.0734 +0 0.2135 +0 0.0881 +0 0.0522 +0 0.0972 +0 0.1155 +0 0.1147 +0 0.0557 +0 0.1337 +0 0.1087 +0 0.2235 +0 0.0433 +0 0.0392 +0 0.1604 +0 0.1660 +0 0.1137 +0 0.2114 +0 0.0978 +0 0.3293 +0 0.0966 +0 0.3304 +0 0.1708 +0 0.1063 +0 0.0609 +0 0.0622 +0 0.1377 +0 0.0687 +0 0.2470 +0 0.0399 +0 0.1459 +0 0.1071 +0 0.0476 +0 0.0770 +0 0.0911 +0 0.1800 +0 0.0405 +0 0.1521 +0 0.0474 +0 0.1091 +0 0.2611 +0 0.1669 +0 0.2148 +0 0.0994 +0 0.2408 +0 0.1259 +0 0.0849 +0 0.0926 +0 0.2120 +0 0.0618 +0 0.2622 +0 0.0942 +0 0.0843 +0 0.2144 +0 0.1940 +0 0.3016 +0 0.0538 +0 0.1115 +0 0.1253 +0 0.1541 +0 0.0995 +0 0.1042 +0 0.0935 +0 0.1859 +0 0.0727 +0 0.0685 +0 0.2335 +0 0.0858 +0 0.0653 +0 0.7072 +0 0.4439 +0 0.1412 +0 0.0847 +0 0.0857 +0 0.2676 +0 0.3501 +0 0.0664 +0 0.1119 +0 0.1643 +0 0.0325 +0 0.0749 +0 0.0534 +0 0.0573 +0 0.1259 +0 0.2396 +0 0.0394 +0 0.0490 +0 0.0724 +0 0.0996 +0 0.4848 +0 0.2121 +0 0.0540 +0 0.0750 +0 0.0783 +0 0.1088 +0 0.0877 +1 0.8217 +0 0.0843 +0 0.1812 +0 0.1319 +0 0.1039 +0 0.0844 +0 0.0946 +0 0.0928 +0 0.1084 +0 0.0438 +0 0.1119 +0 0.1584 +0 0.0282 +0 0.1060 +0 0.4637 +0 0.0828 +0 0.0621 +0 0.1903 +0 0.2096 +0 0.1262 +0 0.0871 +0 0.0515 +0 0.1063 +0 0.0736 +0 0.1239 +0 0.0632 +0 0.1119 +0 0.1735 +0 0.0857 +0 0.2042 +0 0.0665 +0 0.1728 +0 0.4953 +0 0.2863 +0 0.1121 +0 0.6848 +0 0.0510 +0 0.1628 +0 0.0534 +0 0.2168 +0 0.0614 +0 0.1543 +0 0.0614 +0 0.0918 +0 0.0563 +0 0.0490 +0 0.0897 +0 0.0882 +0 0.2183 +0 0.0607 +0 0.2134 +0 0.0740 +0 0.1360 +0 0.0805 +0 0.3625 +0 0.2270 +0 0.1741 +0 0.2480 +0 0.4297 +0 0.0709 +0 0.0606 +0 0.0354 +0 0.1642 +1 0.8527 +0 0.0798 +0 0.0450 +0 0.0691 +0 0.4912 +0 0.0306 +0 0.0908 +0 0.0496 +0 0.4164 +0 0.1319 +0 0.0877 +0 0.2108 +0 0.1090 +0 0.1005 +0 0.1753 +0 0.1360 +0 0.1196 +0 0.0628 +0 0.1430 +0 0.1694 +0 0.0853 +0 0.1615 +0 0.0584 +0 0.1745 +0 0.1253 +0 0.2048 +0 0.0621 +0 0.0734 +0 0.4375 +0 0.1264 +0 0.4579 +0 0.1003 +1 0.8448 +0 0.0413 +0 0.0944 +1 0.8230 +0 0.1121 +0 0.7217 +0 0.1146 +0 0.0580 +0 0.1147 +0 0.1185 +0 0.1199 +0 0.2715 +0 0.2550 +0 0.0902 +0 0.4387 +0 0.0810 +0 0.1121 +0 0.3257 +0 0.0961 +0 0.2891 +0 0.0681 +0 0.0863 +0 0.2591 +0 0.0722 +0 0.2053 +0 0.0708 +0 0.0952 +0 0.0753 +0 0.0443 +0 0.0800 +0 0.0637 +0 0.0488 +0 0.2240 +0 0.6781 +0 0.1468 +0 0.1560 +0 0.3497 +0 0.1765 +0 0.1625 +0 0.3854 +0 0.2657 +0 0.1672 +0 0.1488 +0 0.0712 +0 0.0759 +0 0.0862 +0 0.1441 +0 0.1237 +0 0.1303 +0 0.0898 +0 0.1039 +0 0.1523 +0 0.1321 +0 0.4413 +0 0.1812 +0 0.0737 +0 0.0736 +0 0.0785 +0 0.1348 +0 0.1140 +0 0.0511 +0 0.1200 +0 0.5491 +0 0.2783 +0 0.0762 +0 0.0770 +0 0.1774 +0 0.2343 +0 0.1411 +0 0.0453 +0 0.1556 +0 0.0606 +0 0.1571 +0 0.1170 +0 0.0583 +0 0.0857 +0 0.0944 +0 0.1149 +0 0.1007 +0 0.2352 +0 0.1702 +0 0.6849 +0 0.1056 +0 0.0689 +0 0.2247 +0 0.1000 +0 0.1366 +0 0.2986 +0 0.5127 +0 0.0951 +0 0.1256 +0 0.0485 +1 0.8673 +0 0.2466 +0 0.1645 +0 0.0637 +0 0.0360 +0 0.2834 +0 0.1069 +0 0.3243 +0 0.2241 +0 0.0685 +0 0.0895 +0 0.1469 +0 0.0880 +0 0.0847 +0 0.0772 +0 0.1107 +0 0.1023 +0 0.0829 +0 0.1291 +0 0.2480 +0 0.1360 +0 0.2720 +0 0.2223 +0 0.1121 +0 0.0920 +0 0.5190 +0 0.0912 +0 0.0961 +0 0.0908 +0 0.0705 +0 0.3030 +0 0.1211 +0 0.1351 +0 0.1107 +0 0.0956 +0 0.0522 +0 0.3132 +0 0.0761 +0 0.7420 +0 0.1798 +0 0.1514 +0 0.0827 +0 0.0315 +0 0.0770 +1 0.7526 +0 0.0614 +0 0.1593 +0 0.1161 +0 0.0726 +0 0.0877 +0 0.3776 +0 0.1068 +0 0.1352 +0 0.1360 +0 0.0814 +0 0.0441 +0 0.2215 +0 0.0772 +0 0.0903 +0 0.3181 +0 0.1131 +0 0.3918 +0 0.0406 +0 0.0886 +0 0.0459 +0 0.0967 +0 0.1558 +0 0.2100 +0 0.1144 +0 0.2159 +0 0.4754 +0 0.1676 +0 0.1261 +0 0.2028 +0 0.1529 +0 0.3723 +0 0.1919 +0 0.1564 +0 0.2867 +0 0.0877 +0 0.1210 +0 0.1221 +0 0.0733 +0 0.1524 +0 0.0646 +0 0.1255 +0 0.1317 +0 0.0709 +0 0.1041 +0 0.0566 +0 0.1573 +0 0.1942 +0 0.0824 +0 0.0935 +0 0.1176 +0 0.0866 +0 0.2561 +0 0.4426 +0 0.2118 +0 0.1254 +0 0.0819 +0 0.0465 +0 0.1193 +0 0.0430 +0 0.0584 +0 0.0908 +0 0.2031 +0 0.0835 +0 0.0636 +0 0.0631 +0 0.0415 +0 0.1269 +0 0.0835 +0 0.5178 +0 0.0354 +0 0.1382 +0 0.1239 +0 0.0855 +0 0.1067 +0 0.0553 +0 0.2555 +0 0.0868 +0 0.2353 +0 0.2109 +0 0.0523 +0 0.0583 +0 0.1429 +0 0.1120 +0 0.3512 +0 0.0545 +0 0.0646 +0 0.1150 +0 0.1120 +0 0.0430 +0 0.0411 +0 0.1113 +0 0.0588 +0 0.1516 +0 0.2128 +0 0.0701 +0 0.1943 +0 0.1025 +0 0.0425 +0 0.1327 +0 0.1412 +0 0.0742 +0 0.1381 +0 0.0594 +0 0.1024 +0 0.0772 +0 0.0688 +0 0.1407 +0 0.1408 +0 0.0486 +0 0.0597 +0 0.1168 +0 0.1789 +0 0.0616 +0 0.3251 +0 0.0950 +0 0.2764 +0 0.1758 +0 0.1039 +0 0.2346 +0 0.0841 +0 0.0831 +0 0.0701 +0 0.1065 +0 0.1456 +0 0.0966 +0 0.0821 +0 0.1085 +0 0.1353 +0 0.0601 +0 0.0730 +0 0.1852 +0 0.0847 +0 0.1012 +0 0.0419 +0 0.0984 +0 0.1984 +0 0.1341 +0 0.1937 +0 0.2196 +0 0.0574 +0 0.1313 +0 0.0809 +0 0.3926 +0 0.1233 +0 0.3453 +0 0.0624 +0 0.1284 +0 0.1565 +0 0.0796 +0 0.1018 +0 0.0535 +0 0.3592 +0 0.1033 +0 0.1648 +0 0.2333 +0 0.6240 +0 0.2051 +0 0.1143 +0 0.0562 +0 0.3469 +0 0.0519 +0 0.0927 +0 0.1494 +0 0.6900 +0 0.1444 +0 0.1282 +0 0.1337 +0 0.0975 +1 0.8424 +0 0.0466 +0 0.2162 +0 0.0829 +0 0.0551 +0 0.0817 +0 0.6770 +0 0.0731 +0 0.0806 +0 0.0447 +0 0.1287 +0 0.1254 +0 0.1047 +0 0.0696 +0 0.0833 +0 0.0475 +0 0.0968 +0 0.1523 +0 0.1816 +0 0.0804 +0 0.1316 +0 0.4006 +0 0.0867 +0 0.1463 +0 0.0715 +0 0.2249 +0 0.1474 +0 0.3072 +0 0.0912 +0 0.2855 +0 0.1620 +0 0.0782 +0 0.1123 +0 0.1452 +0 0.0511 +0 0.1970 +0 0.0934 +0 0.1599 +0 0.1376 +0 0.1282 +0 0.4123 +0 0.2795 +0 0.0973 +0 0.1044 +0 0.2261 +0 0.0908 +0 0.1908 +0 0.1293 +0 0.0740 +0 0.0501 +0 0.0666 +0 0.0653 +0 0.1952 +0 0.3098 +0 0.2469 +0 0.0318 +0 0.0559 +0 0.0835 +0 0.0627 +0 0.0410 +0 0.1942 +0 0.2023 +0 0.2534 +0 0.1501 +0 0.1235 +0 0.0622 +0 0.0764 +0 0.0952 +0 0.1016 +0 0.0453 +0 0.0418 +0 0.1200 +0 0.5407 +0 0.1795 +0 0.0968 +0 0.1452 +0 0.1012 +0 0.1223 +0 0.2530 +0 0.0679 +0 0.0983 +0 0.0412 +0 0.0444 +0 0.1842 +0 0.0603 +0 0.1523 +0 0.2476 +0 0.0614 +0 0.0988 +0 0.1087 +0 0.0800 +0 0.0496 +0 0.0845 +0 0.1987 +0 0.0441 +0 0.1499 +0 0.0856 +0 0.1638 +0 0.0800 +0 0.0465 +0 0.1979 +0 0.0477 +0 0.1223 +0 0.0965 +0 0.0699 +0 0.2681 +0 0.1683 +0 0.1276 +0 0.1516 +0 0.1060 +1 0.8398 +0 0.1189 +0 0.1066 +0 0.0369 +0 0.0894 +0 0.0382 +0 0.0432 +0 0.0341 +0 0.2045 +0 0.3959 +0 0.1097 +0 0.6376 +0 0.0896 +0 0.0901 +0 0.2165 +0 0.2249 +0 0.0789 +0 0.0719 +0 0.0744 +0 0.0642 +0 0.6012 +0 0.1789 +0 0.2985 +0 0.0752 +0 0.2794 +0 0.2246 +0 0.0481 +0 0.1173 +0 0.0870 +0 0.1555 +0 0.1142 +0 0.4758 +0 0.0698 +0 0.0916 +0 0.1183 +0 0.0756 +0 0.0755 +0 0.1408 +0 0.1423 +0 0.0388 +0 0.0995 +0 0.1361 +0 0.0777 +0 0.1402 +0 0.1563 +0 0.1010 +0 0.0383 +0 0.0783 +0 0.0843 +0 0.2021 +0 0.0336 +0 0.0485 +0 0.2422 +0 0.6073 +0 0.0592 +0 0.1057 +0 0.1953 +0 0.6653 +0 0.0977 +0 0.2141 +0 0.1292 +0 0.0483 +0 0.0869 +0 0.1956 +0 0.1719 +0 0.1203 +0 0.0852 +0 0.1036 +0 0.0673 +0 0.1616 +0 0.2803 +0 0.1159 +0 0.5559 +0 0.1579 +0 0.2208 +0 0.1386 +0 0.1877 +0 0.1498 +0 0.1550 +0 0.0592 +0 0.2829 +0 0.1622 +0 0.0652 +0 0.1648 +0 0.0770 +0 0.1938 +0 0.0858 +0 0.1268 +0 0.1014 +0 0.0733 +0 0.2303 +0 0.1796 +0 0.1544 +0 0.1620 +0 0.0434 +0 0.1669 +0 0.0472 +0 0.1213 +0 0.0830 +0 0.1070 +0 0.1598 +0 0.1199 +0 0.0818 +0 0.0947 +0 0.0788 +0 0.0516 +0 0.0568 +0 0.1036 +0 0.3543 +0 0.1814 +0 0.1785 +0 0.2597 +0 0.1026 +0 0.0686 +0 0.0880 +0 0.0583 +0 0.6765 +0 0.0750 +0 0.0990 +0 0.1088 +0 0.1738 +0 0.0723 +0 0.2596 +0 0.0948 +0 0.1907 +0 0.1076 +0 0.0686 +0 0.0609 +0 0.0965 +0 0.3453 +0 0.0865 +1 0.8678 +0 0.3112 +0 0.1572 +0 0.0923 +0 0.3057 +0 0.1023 +0 0.1037 +0 0.1368 +0 0.0778 +0 0.1362 +0 0.2064 +0 0.0510 +0 0.0534 +0 0.1927 +0 0.1239 +0 0.0826 +0 0.0922 +0 0.0540 +0 0.0625 +0 0.0778 +0 0.0647 +0 0.2009 +0 0.1168 +0 0.4781 +0 0.0708 +0 0.0880 +0 0.0294 +0 0.0617 +0 0.7024 +0 0.1545 +0 0.0647 +0 0.2463 +0 0.0706 +0 0.1064 +0 0.3381 +0 0.1168 +0 0.0682 +0 0.1801 +0 0.0935 +0 0.0863 +0 0.1117 +1 0.7841 +0 0.1890 +0 0.0474 +0 0.0598 +0 0.0934 +0 0.1670 +0 0.0950 +0 0.2272 +0 0.1149 +0 0.1172 +0 0.2918 +0 0.1489 +0 0.1887 +0 0.0631 +0 0.1644 +0 0.4860 +0 0.0838 +0 0.0379 +0 0.1338 +0 0.0468 +0 0.0309 +0 0.1806 +0 0.2516 +0 0.0793 +1 0.8105 +0 0.0738 +0 0.1158 +0 0.2112 +0 0.1085 +0 0.1271 +0 0.0855 +0 0.0588 +0 0.1665 +0 0.2064 +0 0.1109 +0 0.1194 +0 0.1680 +0 0.0881 +0 0.1149 +0 0.0848 +0 0.0703 +0 0.0405 +0 0.1399 +0 0.1307 +0 0.0499 +0 0.1127 +0 0.0685 +0 0.4290 +0 0.5924 +0 0.1007 +0 0.1104 +0 0.0962 +0 0.0933 +0 0.2937 +0 0.0546 +0 0.0849 +0 0.1165 +0 0.3645 +0 0.0398 +0 0.0583 +0 0.0810 +0 0.0367 +0 0.0418 +0 0.1495 +1 0.7915 +0 0.1257 +0 0.1192 +0 0.0895 +0 0.1231 +0 0.0723 +0 0.2457 +0 0.0940 +0 0.0699 +0 0.1419 +0 0.2059 +0 0.0919 +0 0.0588 +1 0.8118 +0 0.1031 +0 0.0758 +0 0.0868 +0 0.0666 +0 0.1109 +0 0.1176 +0 0.0618 +0 0.1674 +0 0.2162 +0 0.1221 +0 0.2357 +0 0.0716 +0 0.2479 +0 0.1160 +0 0.0906 +0 0.1538 +0 0.1509 +0 0.4024 +0 0.1025 +0 0.1936 +0 0.0867 +0 0.1068 +0 0.7058 +0 0.7036 +0 0.1655 +0 0.0646 +0 0.7285 +0 0.1679 +0 0.0992 +0 0.2603 +0 0.1355 +0 0.1507 +0 0.0695 +0 0.1072 +0 0.4842 +0 0.0867 +0 0.0568 +0 0.0560 +0 0.0629 +0 0.0768 +0 0.1191 +0 0.0594 +0 0.1958 +0 0.0601 +0 0.0576 +0 0.1015 +0 0.3610 +1 0.7873 +0 0.0560 +0 0.0728 +0 0.1707 +0 0.2066 +0 0.0666 +0 0.1048 +0 0.2531 +0 0.0420 +0 0.1089 +0 0.2674 +0 0.3122 +0 0.6421 +0 0.1114 +0 0.1360 +0 0.1083 +0 0.0873 +0 0.2684 +0 0.0596 +0 0.2437 +0 0.0616 +0 0.0696 +0 0.1026 +0 0.0730 +0 0.0542 +0 0.1905 +0 0.1444 +0 0.1154 +0 0.1805 +0 0.0932 +0 0.1274 +0 0.2769 +0 0.2173 +0 0.0378 +0 0.0866 +0 0.0810 +0 0.3270 +0 0.0472 +0 0.3067 +0 0.0649 +0 0.0574 +0 0.0583 +0 0.0918 +0 0.2090 +0 0.1059 +0 0.1611 +0 0.3318 +0 0.0387 +0 0.0333 +0 0.1183 +0 0.0921 +0 0.0951 +0 0.1062 +0 0.0895 +0 0.0573 +0 0.1002 +0 0.0745 +0 0.0848 +0 0.0352 +0 0.0598 +1 0.8290 +0 0.2576 +1 0.8199 +0 0.1539 +0 0.3778 +0 0.2261 +0 0.0916 +0 0.2766 +0 0.0607 +0 0.0958 +0 0.1288 +0 0.0934 +0 0.0395 +0 0.0691 +0 0.2230 +0 0.0713 +0 0.0894 +0 0.0607 +0 0.0535 +0 0.0594 +0 0.0459 +0 0.0530 +0 0.1548 +0 0.0927 +0 0.0932 +0 0.0878 +0 0.3412 +0 0.1696 +0 0.2380 +0 0.2562 +0 0.3658 +0 0.0766 +0 0.1774 +0 0.0817 +0 0.1482 +0 0.5096 +0 0.2520 +0 0.1276 +0 0.1680 +0 0.1907 +1 0.8597 +0 0.1720 +0 0.1560 +0 0.0711 +0 0.0342 +0 0.0699 +0 0.1291 +0 0.0938 +0 0.1938 +0 0.0874 +0 0.0984 +0 0.4276 +0 0.1595 +0 0.1834 +0 0.2201 +0 0.0708 +0 0.0501 +0 0.1103 +0 0.1369 +0 0.1160 +0 0.0750 +0 0.1370 +0 0.0408 +0 0.1719 +0 0.1459 +0 0.1777 +0 0.0918 +0 0.0735 +0 0.6256 +0 0.2709 +0 0.1961 +0 0.0719 +0 0.0790 +0 0.1713 +0 0.2304 +0 0.2160 +0 0.0445 +0 0.6360 +0 0.3785 +0 0.0560 +0 0.0833 +0 0.0722 +1 0.7718 +0 0.0468 +0 0.1596 +0 0.1381 +0 0.1350 +0 0.0994 +0 0.0824 +0 0.4174 +0 0.4140 +0 0.1700 +0 0.1932 +0 0.0947 +0 0.0704 +0 0.0990 +0 0.1082 +0 0.4833 +0 0.1005 +0 0.0602 +0 0.1549 +0 0.0623 +0 0.3215 +0 0.0978 +0 0.0637 +0 0.1134 +0 0.1067 +0 0.1270 +0 0.1057 +0 0.0935 +0 0.1456 +0 0.2312 +0 0.0805 +0 0.1094 +0 0.1306 +0 0.1273 +0 0.1391 +0 0.0487 +0 0.1000 +0 0.0694 +0 0.1346 +0 0.1166 +0 0.2759 +0 0.0729 +0 0.1105 +0 0.0831 +0 0.1237 +0 0.0635 +0 0.2505 +0 0.0854 +0 0.0551 +0 0.0779 +0 0.1284 +1 0.7564 +0 0.0690 +0 0.2253 +0 0.1069 +0 0.1309 +0 0.0410 +0 0.0581 +0 0.1737 +0 0.1435 +0 0.1881 +1 0.7519 +0 0.0522 +0 0.1184 +0 0.0405 +0 0.1081 +0 0.0943 +0 0.0992 +0 0.0948 +0 0.0880 +0 0.0928 +0 0.0787 +0 0.1219 +1 0.8142 +0 0.2533 +0 0.2186 +0 0.0551 +0 0.0384 +0 0.0685 +0 0.0847 +0 0.1337 +0 0.0885 +0 0.0871 +0 0.1148 +0 0.0757 +0 0.0537 +0 0.1483 +0 0.1006 +0 0.0746 +0 0.2950 +0 0.0556 +0 0.1851 +0 0.0756 +0 0.1157 +0 0.4350 +0 0.1018 +0 0.1654 +0 0.1299 +0 0.1410 +0 0.0794 +0 0.6766 +0 0.0728 +0 0.1550 +0 0.6363 +0 0.0601 +0 0.1731 +0 0.1030 +0 0.0485 +0 0.0959 +0 0.1466 +0 0.4170 +0 0.0636 +0 0.3171 +0 0.0514 +0 0.3161 +0 0.0763 +0 0.0532 +0 0.1745 +0 0.1185 +0 0.1189 +0 0.0931 +0 0.0896 +1 0.8374 +0 0.0493 +0 0.2177 +0 0.0787 +0 0.1586 +0 0.2130 +0 0.0970 +0 0.4556 +0 0.5327 +0 0.0859 +0 0.1231 +0 0.2144 +0 0.0965 +0 0.0815 +0 0.4856 +0 0.0729 +0 0.0702 +0 0.0998 +0 0.0724 +0 0.1272 +1 0.7537 +0 0.0469 +0 0.1074 +0 0.0512 +0 0.0939 +0 0.1759 +0 0.0614 +0 0.1889 +0 0.2512 +0 0.0890 +0 0.1064 +0 0.2163 +0 0.0472 +0 0.1170 +0 0.1667 +0 0.0566 +0 0.0731 +0 0.0781 +0 0.0620 +1 0.7762 +0 0.2542 +0 0.2041 +0 0.1937 +0 0.1016 +0 0.0756 +0 0.2188 +0 0.1361 +0 0.0550 +0 0.0902 +0 0.1189 +0 0.0432 +0 0.0748 +0 0.0900 +0 0.0998 +0 0.2159 +0 0.0514 +0 0.0536 +0 0.1718 +0 0.7421 +0 0.1157 +0 0.1051 +0 0.0556 +0 0.0697 +0 0.3118 +0 0.1918 +0 0.2000 +0 0.4666 +0 0.2784 +0 0.0515 +0 0.1406 +0 0.0721 +0 0.1360 +0 0.1952 +0 0.1611 +0 0.1396 +0 0.2250 +0 0.7014 +0 0.0424 +0 0.1134 +0 0.0845 +0 0.2433 +0 0.2281 +0 0.0388 +0 0.3013 +0 0.1331 +0 0.1998 +0 0.1484 +0 0.0881 +0 0.0658 +0 0.3258 +0 0.0640 +1 0.8241 +0 0.3329 +0 0.0617 +0 0.1571 +0 0.0528 +0 0.0946 +0 0.2313 +0 0.0711 +0 0.0737 +0 0.0522 +0 0.1379 +0 0.2138 +0 0.3448 +0 0.0682 +0 0.1097 +0 0.1352 +0 0.0475 +0 0.1422 +0 0.1531 +0 0.1378 +0 0.1953 +0 0.2125 +0 0.1835 +0 0.1374 +0 0.0572 +0 0.1769 +0 0.0723 +0 0.1053 +0 0.1452 +0 0.1186 +0 0.4408 +0 0.0488 +0 0.0883 +0 0.0842 +0 0.0998 +0 0.0945 +0 0.0698 +0 0.1093 +0 0.2040 +0 0.0804 +0 0.0519 +0 0.0645 +0 0.0366 +0 0.1270 +0 0.3266 +0 0.0510 +0 0.4284 +0 0.0933 +0 0.1523 +0 0.0864 +0 0.0783 +0 0.0389 +0 0.0616 +0 0.0466 +0 0.0517 +0 0.0792 +0 0.0555 +0 0.0463 +0 0.0958 +0 0.1036 +0 0.0729 +0 0.0581 +0 0.0532 +0 0.0726 +0 0.1129 +0 0.0753 +0 0.0924 +0 0.0934 +0 0.2740 +0 0.1205 +0 0.4238 +0 0.5569 +0 0.0718 +0 0.0616 +0 0.1045 +0 0.1224 +0 0.2461 +0 0.0450 +0 0.0703 +0 0.1595 +0 0.0976 +0 0.0703 +0 0.1148 +0 0.0993 +0 0.0803 +0 0.0484 +0 0.1082 +0 0.0608 +0 0.0840 +0 0.1493 +0 0.1212 +0 0.1386 +0 0.4176 +0 0.4593 +0 0.0609 +0 0.1097 +0 0.0624 +0 0.1545 +0 0.0385 +0 0.0781 +0 0.0609 +0 0.0568 +0 0.4961 +0 0.2243 +0 0.1486 +0 0.1191 +0 0.0813 +0 0.1057 +0 0.0495 +0 0.0664 +0 0.0836 +0 0.0968 +0 0.1331 +0 0.0555 +0 0.0845 +0 0.6823 +0 0.0465 +0 0.0719 +0 0.1180 +0 0.1115 +0 0.1430 +0 0.1002 +0 0.0472 +0 0.1074 +0 0.1286 +0 0.3322 +0 0.1294 +0 0.4495 +0 0.0510 +0 0.2044 +1 0.8503 +0 0.0837 +0 0.1031 +0 0.2520 +0 0.2424 +0 0.1328 +0 0.0911 +0 0.0560 +0 0.0926 +1 0.7776 +0 0.0671 +0 0.1570 +0 0.1502 +0 0.0775 +0 0.3394 +0 0.0923 +0 0.1613 +0 0.0593 +0 0.1488 +0 0.0453 +0 0.2179 +0 0.0540 +0 0.0581 +0 0.0390 +0 0.1424 +0 0.0557 +0 0.2587 +0 0.0481 +0 0.0475 +0 0.2494 +0 0.4329 +0 0.0523 +0 0.3670 +0 0.0539 +0 0.0942 +0 0.0631 +0 0.0677 +0 0.2930 +0 0.2644 +0 0.4637 +0 0.1137 +0 0.1007 +1 0.7914 +0 0.0615 +0 0.3490 +0 0.0693 +0 0.2327 +0 0.3758 +0 0.0588 +0 0.0494 +0 0.1357 +0 0.1584 +0 0.1088 +0 0.0735 +0 0.1275 +0 0.0644 +0 0.2039 +0 0.1485 +0 0.1849 +0 0.1178 +0 0.1465 +0 0.0778 +0 0.0501 +0 0.0572 +0 0.0792 +0 0.1121 +0 0.7322 +0 0.0815 +0 0.6077 +0 0.2574 +0 0.0440 +0 0.1256 +0 0.4154 +0 0.1454 +0 0.0365 +0 0.2911 +0 0.1085 +0 0.0821 +0 0.1317 +0 0.2656 +0 0.0707 +1 0.7566 +0 0.0903 +0 0.0569 +0 0.2839 +0 0.1720 +0 0.2495 +0 0.1805 +0 0.0444 +0 0.0383 +0 0.0960 +0 0.2311 +0 0.0598 +0 0.0783 +0 0.3446 +0 0.0457 +0 0.2188 +0 0.0979 +0 0.0644 +0 0.1460 +0 0.0988 +0 0.2094 +0 0.0931 +0 0.2618 +0 0.0737 +0 0.0780 +0 0.1043 +0 0.0335 +0 0.0850 +0 0.1534 +0 0.0490 +0 0.2044 +0 0.7156 +0 0.0737 +0 0.0681 +0 0.0619 +0 0.1104 +0 0.1593 +0 0.1296 +0 0.0551 +0 0.2414 +0 0.0340 +0 0.0952 +0 0.1308 +0 0.1405 +0 0.1338 +0 0.1622 +0 0.0603 +0 0.1003 +0 0.0585 +0 0.0769 +0 0.0447 +0 0.0827 +0 0.0763 +0 0.1429 +0 0.1140 +0 0.1445 +0 0.2140 +0 0.0331 +0 0.1077 +0 0.1224 +0 0.0363 +0 0.2840 +0 0.1115 +0 0.1246 +0 0.0597 +0 0.4034 +0 0.2962 +0 0.0786 +0 0.0773 +0 0.0951 +0 0.1277 +0 0.1554 +0 0.1447 +0 0.0751 +1 0.8498 +0 0.1129 +0 0.1741 +0 0.0324 +0 0.1392 +0 0.1089 +0 0.2867 +0 0.0435 +0 0.1907 +0 0.0691 +0 0.0611 +0 0.1992 +0 0.0577 +0 0.1973 +1 0.7654 +0 0.0649 +0 0.0704 +0 0.1013 +0 0.0910 +0 0.0984 +0 0.0896 +0 0.0532 +1 0.7554 +0 0.0832 +0 0.1703 +0 0.0916 +0 0.0974 +0 0.3677 +0 0.1429 +0 0.1309 +0 0.0897 +0 0.0875 +0 0.1045 +0 0.1264 +0 0.1409 +0 0.0994 +0 0.0896 +0 0.1003 +0 0.0739 +0 0.4727 +0 0.1210 +0 0.0530 +0 0.1322 +0 0.0781 +0 0.0493 +0 0.0681 +0 0.0885 +0 0.1075 +0 0.1900 +0 0.1000 +0 0.1081 +0 0.0848 +0 0.2745 +0 0.1420 +0 0.0532 +0 0.0867 +0 0.1199 +0 0.0502 +0 0.1740 +0 0.0552 +0 0.2015 +0 0.0582 +0 0.0449 +0 0.0953 +0 0.0889 +0 0.0537 +0 0.1983 +0 0.1262 +0 0.2188 +0 0.0380 +0 0.0395 +0 0.2063 +0 0.0507 +0 0.0712 +0 0.1665 +0 0.1353 +0 0.1409 +0 0.0863 +0 0.0697 +0 0.1382 +0 0.0847 +0 0.1074 +0 0.0994 +0 0.0516 +0 0.0956 +0 0.0375 +0 0.0484 +0 0.0961 +0 0.2762 +0 0.0795 +0 0.1693 +0 0.2909 +0 0.0446 +0 0.2027 +0 0.2292 +0 0.1367 +0 0.1071 +0 0.1796 +0 0.1653 +1 0.8218 +0 0.2151 +0 0.1053 +0 0.2432 +0 0.1432 +0 0.0554 +0 0.0743 +0 0.0690 +0 0.0916 +0 0.1040 +0 0.0550 +1 0.8688 +0 0.1365 +0 0.0751 +0 0.0541 +0 0.1593 +0 0.0422 +1 0.8573 +0 0.0746 +0 0.1213 +0 0.1149 +0 0.1068 +0 0.1723 +0 0.0584 +0 0.3570 +0 0.0576 +0 0.1348 +0 0.1079 +0 0.2653 +0 0.0338 +0 0.1887 +0 0.4682 +0 0.0530 +0 0.1844 +0 0.1460 +0 0.0540 +0 0.0719 +0 0.0566 +0 0.0943 +0 0.1828 +0 0.1182 +0 0.1226 +0 0.0971 +0 0.1427 +0 0.1834 +0 0.2875 +0 0.1077 +0 0.0626 +1 0.9111 +0 0.0619 +0 0.0357 +0 0.0771 +0 0.1337 +0 0.0608 +0 0.0878 +0 0.1199 +0 0.1879 +0 0.0587 +0 0.0397 +0 0.1854 +0 0.6578 +0 0.1056 +0 0.6171 +0 0.0531 +0 0.0582 +0 0.0667 +0 0.2094 +0 0.1462 +0 0.0701 +0 0.0751 +0 0.0921 +0 0.1618 +0 0.0727 +0 0.2691 +0 0.4510 +0 0.0970 +0 0.1649 +0 0.1440 +0 0.1287 +0 0.0601 +0 0.0896 +0 0.4233 +1 0.8283 +0 0.1423 +0 0.0530 +0 0.0888 +0 0.0522 +0 0.0716 +0 0.1403 +0 0.0988 +0 0.0643 +0 0.0524 +0 0.0609 +0 0.0691 +0 0.0946 +0 0.1173 +0 0.1974 +0 0.1026 +0 0.3496 +0 0.0721 +1 0.8576 +0 0.2315 +0 0.0901 +0 0.0369 +0 0.1342 +0 0.3084 +0 0.1215 +0 0.2011 +0 0.2606 +0 0.3947 +0 0.3233 +0 0.1064 +0 0.1438 +0 0.6124 +0 0.0670 +0 0.0639 +0 0.1574 +0 0.2956 +0 0.0716 +0 0.0963 +0 0.0769 +0 0.0705 +0 0.0859 +0 0.2156 +0 0.2187 +0 0.1236 +0 0.0842 +0 0.0396 +0 0.3379 +0 0.1017 +0 0.1724 +0 0.1015 +0 0.0722 +0 0.0814 +0 0.1322 +0 0.0590 +0 0.0426 +0 0.2147 +0 0.0714 +0 0.0369 +0 0.0933 +0 0.0919 +0 0.0926 +0 0.0778 +0 0.1541 +0 0.1240 +0 0.1742 +0 0.1531 +0 0.1458 +0 0.1524 +0 0.1164 +0 0.0742 +0 0.0610 +0 0.1083 +0 0.7499 +0 0.2367 +0 0.1161 +0 0.1444 +0 0.0777 +1 0.7951 +0 0.0930 +0 0.0649 +0 0.1475 +0 0.0902 +0 0.1283 +0 0.0928 +0 0.2004 +0 0.4744 +0 0.2882 +0 0.0592 +0 0.1437 +0 0.1196 +0 0.0819 +0 0.1377 +0 0.1077 +0 0.0924 +0 0.0988 +0 0.1015 +0 0.4144 +0 0.0975 +0 0.0649 +0 0.4427 +0 0.0695 +0 0.1230 +0 0.1080 +0 0.1461 +0 0.2493 +1 0.7984 +0 0.1693 +0 0.1174 +0 0.0898 +0 0.0738 +0 0.4856 +0 0.0910 +0 0.1676 +0 0.5989 +0 0.0998 +0 0.0518 +0 0.4503 +0 0.0372 +0 0.1288 +0 0.1675 +0 0.2380 +0 0.1137 +0 0.0686 +0 0.2216 +0 0.1564 +0 0.1497 +0 0.1041 +0 0.0940 +0 0.0387 +0 0.7120 +0 0.2174 +0 0.0607 +0 0.6753 +0 0.0514 +1 0.8346 +0 0.0387 +0 0.0761 +0 0.0705 +0 0.1413 +0 0.1434 +0 0.1025 +0 0.0324 +0 0.3955 +0 0.1721 +0 0.0906 +0 0.1013 +0 0.1425 +0 0.0520 +0 0.1059 +0 0.0367 +0 0.1239 +0 0.0383 +0 0.3562 +0 0.0977 +0 0.0704 +0 0.0698 +0 0.0967 +0 0.0617 +0 0.0658 +0 0.2626 +0 0.0926 +0 0.0323 +0 0.1803 +0 0.5503 +0 0.1991 +0 0.0656 +0 0.1389 +0 0.2685 +1 0.7503 +0 0.1074 +0 0.1397 +0 0.1506 +0 0.1359 +0 0.2222 +0 0.0455 +0 0.1710 +0 0.0528 +0 0.0546 +0 0.0517 +0 0.1098 +0 0.0828 +0 0.0376 +0 0.0853 +1 0.8461 +0 0.0528 +0 0.1224 +0 0.5644 +0 0.0854 +0 0.4575 +0 0.0861 +0 0.2253 +0 0.0734 +0 0.1586 +0 0.0698 +0 0.1037 +0 0.0361 +0 0.0425 +0 0.1002 +0 0.4290 +0 0.1338 +1 0.8505 +0 0.0678 +0 0.1076 +0 0.1727 +0 0.0760 +0 0.0869 +0 0.0902 +0 0.0704 +0 0.2118 +0 0.0754 +0 0.0712 +0 0.2279 +0 0.1960 +0 0.1514 +0 0.1909 +0 0.0870 +0 0.0861 +0 0.2104 +0 0.1021 +0 0.0705 +0 0.0447 +0 0.0995 +0 0.0910 +0 0.0394 +0 0.0496 +0 0.1175 +0 0.0649 +0 0.2053 +0 0.1298 +0 0.0737 +0 0.0658 +0 0.0785 +0 0.1037 +0 0.0625 +0 0.1833 +0 0.0792 +0 0.0617 +0 0.3382 +0 0.0923 +0 0.1141 +0 0.1024 +0 0.1158 +0 0.0878 +0 0.0614 +0 0.0866 +0 0.0957 +0 0.1175 +0 0.1020 +0 0.0481 +0 0.0774 +0 0.0428 +0 0.1922 +0 0.1014 +1 0.8369 +0 0.0619 +0 0.0549 +0 0.0647 +0 0.0879 +0 0.0668 +0 0.0836 +0 0.1357 +0 0.2548 +0 0.0792 +0 0.1437 +0 0.1269 +0 0.0505 +0 0.3545 +0 0.1453 +0 0.0480 +0 0.0931 +0 0.0762 +0 0.4454 +0 0.0489 +0 0.1558 +0 0.1503 +0 0.0395 +0 0.0967 +0 0.2616 +0 0.0447 +0 0.0413 +0 0.2328 +0 0.0823 +0 0.2285 +0 0.1996 +0 0.0614 +0 0.0527 +0 0.1472 +0 0.1240 +0 0.1652 +0 0.1225 +0 0.0663 +0 0.0567 +0 0.1277 +0 0.0501 +0 0.0983 +0 0.1119 +0 0.2238 +0 0.2292 +0 0.0910 +0 0.0554 +0 0.1274 +0 0.0955 +0 0.1943 +0 0.0763 +0 0.5526 +0 0.0564 +0 0.1555 +0 0.0368 +0 0.1588 +0 0.0715 +0 0.2305 +0 0.0639 +0 0.1021 +0 0.2225 +0 0.0733 +0 0.0759 +0 0.0622 +0 0.1108 +0 0.0751 +0 0.0623 +0 0.1145 +0 0.1472 +0 0.1736 +0 0.1284 +0 0.1185 +0 0.7237 +0 0.1701 +0 0.2278 +0 0.1393 +0 0.1081 +0 0.0857 +0 0.0758 +0 0.0561 +0 0.0669 +0 0.1305 +0 0.0635 +0 0.2940 +0 0.0865 +0 0.1146 +0 0.0552 +0 0.2262 +0 0.1803 +0 0.0790 +0 0.1898 +0 0.7447 +0 0.2729 +0 0.1295 +0 0.1129 +0 0.1061 +0 0.0995 +0 0.0791 +0 0.1225 +0 0.2367 +0 0.0961 +0 0.1441 +0 0.2340 +0 0.0625 +0 0.2716 +0 0.0840 +0 0.3879 +0 0.1727 +0 0.0850 +0 0.0493 +0 0.1758 +0 0.0557 +0 0.1355 +0 0.1123 +0 0.0999 +0 0.1670 +0 0.0768 +0 0.0508 +0 0.3083 +0 0.1465 +0 0.6762 +0 0.3820 +0 0.1871 +0 0.2139 +0 0.0441 +0 0.3352 +0 0.1374 +0 0.0763 +0 0.2349 +0 0.0473 +0 0.0386 +0 0.0915 +0 0.0476 +0 0.0524 +0 0.0830 +0 0.1289 +0 0.0766 +0 0.0475 +0 0.0822 +0 0.0578 +0 0.0789 +0 0.0907 +0 0.2201 +0 0.0979 +0 0.2577 +0 0.1422 +0 0.0723 +0 0.0716 +0 0.1009 +0 0.0833 +0 0.2209 +0 0.1857 +0 0.1080 +0 0.0300 +0 0.0730 +0 0.0650 +0 0.0484 +0 0.1022 +0 0.1035 +0 0.1901 +0 0.1381 +0 0.0698 +0 0.2820 +0 0.2455 +0 0.0561 +0 0.0793 +0 0.2761 +0 0.1314 +0 0.2968 +0 0.3424 +0 0.0700 +0 0.0754 +0 0.1781 +0 0.4154 +0 0.0825 +0 0.1032 +0 0.2546 +0 0.3537 +0 0.2924 +0 0.1068 +0 0.0779 +0 0.0626 +0 0.0832 +0 0.0462 +0 0.1182 +0 0.1566 +0 0.0381 +0 0.1373 +0 0.2016 +0 0.1241 +0 0.0943 +0 0.0979 +0 0.0694 +0 0.1841 +1 0.8040 +0 0.1192 +0 0.0808 +0 0.1415 +0 0.1455 +0 0.0773 +0 0.1647 +0 0.1643 +0 0.0381 +0 0.1214 +0 0.0810 +0 0.0816 +0 0.1474 +0 0.1500 +0 0.1990 +0 0.0744 +0 0.2120 +0 0.0849 +0 0.0816 +0 0.0808 +0 0.1750 +0 0.1295 +0 0.1348 +0 0.0582 +0 0.0384 +1 0.8200 +0 0.0870 +0 0.2598 +0 0.0965 +0 0.0795 +0 0.0493 +0 0.0709 +0 0.1356 +0 0.0403 +0 0.2218 +0 0.1096 +0 0.0433 +0 0.0785 +0 0.1090 +0 0.0844 +0 0.1069 +0 0.0396 +0 0.0548 +0 0.0530 +0 0.0693 +0 0.0485 +0 0.2858 +0 0.1288 +0 0.0756 +0 0.0753 +0 0.1873 +0 0.1782 +0 0.1629 +0 0.1866 +0 0.2709 +0 0.0359 +0 0.1125 +0 0.1078 +0 0.0808 +0 0.0856 +0 0.2739 +0 0.5919 +1 0.8362 +0 0.0787 +0 0.1449 +0 0.0826 +0 0.0707 +0 0.0618 +0 0.0471 +0 0.0718 +0 0.1555 +0 0.6317 +0 0.2465 +0 0.0489 +0 0.1069 +0 0.1035 +0 0.1433 +0 0.0797 +0 0.1534 +0 0.1057 +0 0.1080 +0 0.2331 +0 0.0711 +0 0.4489 +0 0.3503 +0 0.0464 +0 0.0730 +0 0.1060 +0 0.2249 +0 0.0460 +0 0.0916 +0 0.2731 +0 0.0448 +0 0.1249 +0 0.0673 +0 0.0520 +0 0.1773 +0 0.1579 +0 0.0589 +0 0.1459 +0 0.2374 +0 0.0713 +0 0.0900 +0 0.0720 +0 0.0588 +0 0.0561 +0 0.0794 +0 0.1114 +0 0.0624 +0 0.2085 +0 0.3109 +0 0.0734 +0 0.0482 +0 0.2296 +0 0.1288 +0 0.2281 +1 0.8563 +0 0.0563 +0 0.0668 +0 0.0780 +0 0.1604 +0 0.3612 +0 0.0818 +0 0.2197 +0 0.0459 +0 0.2216 +0 0.0447 +0 0.1509 +0 0.1204 +0 0.0806 +0 0.1582 +0 0.0664 +0 0.1090 +0 0.0908 +0 0.0668 +0 0.0723 +0 0.0728 +0 0.0989 +0 0.0725 +0 0.0862 +0 0.0749 +0 0.0615 +0 0.0430 +0 0.1015 +0 0.0701 +0 0.0992 +0 0.1047 +0 0.7339 +0 0.1173 +0 0.6797 +0 0.6598 +0 0.1224 +0 0.0605 +0 0.1804 +0 0.1060 +0 0.1475 +0 0.2005 +0 0.0892 +0 0.1547 +0 0.0937 +0 0.0566 +0 0.0754 +0 0.0386 +0 0.1370 +1 0.4129 +0 0.0695 +0 0.0594 +0 0.1122 +0 0.0726 +0 0.1595 +0 0.1244 +0 0.0682 +0 0.0939 +0 0.0864 +0 0.2557 +0 0.2195 +0 0.1114 +0 0.1975 +0 0.0859 +0 0.6556 +0 0.0966 +0 0.1142 +0 0.4519 +0 0.0599 +0 0.1240 +0 0.1957 +0 0.1755 +1 0.7721 +0 0.0799 +0 0.4915 +0 0.1155 +0 0.0871 +0 0.0558 +0 0.0656 +0 0.2522 +0 0.1882 +0 0.0965 +0 0.0708 +0 0.0624 +0 0.1494 +0 0.0480 +0 0.0750 +0 0.0773 +0 0.0897 +0 0.1217 +0 0.0719 +0 0.1764 +0 0.0646 +0 0.1407 +0 0.2456 +0 0.1143 +0 0.0824 +0 0.0446 +0 0.0717 +0 0.1462 +0 0.1444 +0 0.1124 +0 0.0397 +0 0.1951 +0 0.0818 +0 0.0896 +0 0.1474 +1 0.8169 +0 0.0655 +0 0.1974 +0 0.0450 +0 0.6937 +0 0.1913 +0 0.5678 +0 0.1045 +0 0.0897 +0 0.1260 +0 0.0649 +0 0.1798 +0 0.2924 +0 0.0999 +0 0.0809 +0 0.0898 +0 0.2283 +0 0.0988 +0 0.1251 +0 0.0634 +0 0.1636 +1 0.7555 +0 0.0488 +0 0.0991 +0 0.1814 +0 0.1584 +0 0.0761 +0 0.0651 +0 0.0540 +0 0.2289 +0 0.0810 +0 0.0553 +0 0.1467 +0 0.0963 +0 0.0998 +0 0.2514 +0 0.0813 +0 0.2148 +0 0.1606 +0 0.0576 +0 0.2608 +0 0.0694 +0 0.0787 +0 0.1033 +0 0.0547 +0 0.0639 +0 0.1172 +0 0.0610 +0 0.1120 +0 0.0860 +0 0.1251 +0 0.0887 +0 0.1317 +0 0.0466 +0 0.0474 +0 0.0949 +0 0.4708 +0 0.0596 +0 0.1488 +0 0.1244 +0 0.1465 +0 0.1253 +0 0.1388 +0 0.1844 +0 0.0731 +0 0.0995 +0 0.1961 +0 0.0525 +0 0.1268 +0 0.0523 +0 0.1029 +0 0.1059 +0 0.0710 +0 0.0960 +0 0.0645 +0 0.1139 +0 0.1298 +0 0.3979 +0 0.0570 +0 0.1650 +0 0.0461 +0 0.0489 +0 0.1306 +0 0.0600 +0 0.1262 +0 0.1602 +0 0.1488 +0 0.1262 +0 0.1190 +0 0.0393 +0 0.6796 +0 0.0836 +0 0.1271 +0 0.0734 +0 0.1872 +0 0.1239 +0 0.1891 +0 0.0542 +0 0.0351 +0 0.0873 +0 0.0865 +0 0.2902 +0 0.2412 +0 0.0499 +0 0.1084 +0 0.0674 +0 0.4708 +0 0.0586 +0 0.0917 +0 0.1644 +0 0.0936 +0 0.0453 +0 0.1333 +0 0.0913 +0 0.4137 +0 0.0731 +0 0.0590 +0 0.1046 +0 0.0775 +0 0.1351 +0 0.1242 +0 0.2068 +0 0.1340 +0 0.1072 +0 0.1259 +0 0.1778 +0 0.1527 +0 0.1322 +0 0.0444 +0 0.0953 +0 0.0891 +0 0.1024 +0 0.0660 +0 0.0369 +0 0.0548 +0 0.1100 +0 0.2517 +0 0.1439 +0 0.0844 +0 0.6385 +0 0.0749 +0 0.1411 +0 0.0837 +0 0.2209 +0 0.0737 +1 0.8312 +0 0.0999 +0 0.1268 +0 0.0733 +0 0.0954 +0 0.1428 +0 0.0937 +0 0.1489 +0 0.0670 +0 0.3648 +0 0.1478 +0 0.0472 +0 0.2259 +0 0.1119 +0 0.1219 +0 0.0598 +0 0.1006 +0 0.0889 +0 0.1230 +0 0.0806 +0 0.0889 +0 0.0660 +0 0.1685 +0 0.1416 +0 0.1132 +0 0.2437 +0 0.0659 +0 0.0360 +0 0.0488 +0 0.0436 +0 0.1522 +0 0.1818 +0 0.1161 +0 0.0688 +0 0.0753 +0 0.0814 +0 0.1183 +0 0.2792 +0 0.0494 +0 0.1425 +0 0.1428 +0 0.1445 +0 0.1829 +0 0.2083 +0 0.0733 +0 0.1040 +0 0.2133 +0 0.1599 +0 0.1115 +0 0.1291 +0 0.2430 +0 0.0581 +0 0.0969 +0 0.0484 +0 0.4698 +0 0.2347 +0 0.1145 +0 0.1705 +0 0.0496 +0 0.2759 +0 0.0571 +0 0.1476 +0 0.4450 +0 0.0970 +0 0.1585 +0 0.1942 +0 0.1152 +0 0.0810 +0 0.1415 +0 0.1209 +0 0.0943 +0 0.0435 +0 0.1155 +0 0.1686 +0 0.0703 +0 0.0523 +0 0.0650 +0 0.2101 +0 0.0747 +0 0.0626 +0 0.1173 +0 0.4498 +0 0.1219 +0 0.1218 +0 0.0700 +0 0.0885 +0 0.0881 +0 0.0801 +0 0.0646 +0 0.0704 +0 0.1723 +0 0.0927 +0 0.1083 +0 0.2057 +0 0.1379 +0 0.0810 +0 0.1147 +0 0.5761 +0 0.1283 +0 0.2556 +0 0.0874 +0 0.1482 +0 0.6181 +0 0.1790 +0 0.0551 +0 0.0364 +0 0.5320 +0 0.0338 +0 0.0975 +0 0.1720 +0 0.1799 +0 0.0628 +0 0.4044 +0 0.2661 +0 0.0460 +0 0.0898 +0 0.0557 +0 0.0552 +0 0.0578 +0 0.0517 +0 0.7149 +0 0.1355 +0 0.0998 +0 0.0724 +0 0.1258 +0 0.0737 +0 0.1333 +0 0.0589 +0 0.1738 +0 0.1259 +0 0.2789 +0 0.0581 +0 0.1851 +0 0.0948 +0 0.0884 +0 0.0451 +0 0.3645 +0 0.1141 +0 0.0303 +0 0.0777 +0 0.1357 +0 0.6236 +0 0.0765 +0 0.1210 +0 0.0949 +0 0.3364 +0 0.0476 +0 0.0995 +0 0.0911 +0 0.0600 +0 0.0758 +0 0.1309 +0 0.1409 +0 0.0943 +0 0.1241 +0 0.0577 +0 0.1451 +0 0.1826 +0 0.2506 +0 0.0817 +0 0.1299 +0 0.1004 +0 0.1143 +0 0.1409 +0 0.1615 +0 0.2127 +0 0.1009 +0 0.4142 +0 0.0639 +0 0.0805 +0 0.2916 +0 0.0814 +1 0.9134 +0 0.0931 +0 0.1110 +0 0.3338 +0 0.0651 +0 0.2940 +0 0.4896 +0 0.1499 +0 0.1445 +0 0.1364 +0 0.0808 +0 0.0529 +0 0.0481 +0 0.0800 +0 0.1164 +0 0.1302 +0 0.1099 +0 0.0786 +0 0.0598 +0 0.1588 +0 0.0454 +0 0.0846 +0 0.2788 +0 0.0885 +0 0.0660 +0 0.1137 +0 0.0493 +0 0.0941 +0 0.0920 +0 0.0963 +0 0.2045 +0 0.0808 +0 0.1305 +0 0.3229 +0 0.1198 +0 0.0977 +0 0.0535 +0 0.2752 +0 0.0793 +0 0.0905 +0 0.2180 +0 0.0992 +0 0.2175 +0 0.0555 +0 0.5928 +0 0.0742 +0 0.0932 +0 0.0698 +0 0.0674 +0 0.0756 +0 0.0760 +0 0.0953 +0 0.1012 +0 0.0606 +0 0.1596 +0 0.1191 +0 0.0807 +0 0.2461 +0 0.0818 +0 0.1020 +0 0.7443 +0 0.0567 +0 0.3588 +0 0.2138 +0 0.2507 +0 0.1471 +0 0.0447 +0 0.1954 +0 0.1274 +0 0.0692 +0 0.2576 +0 0.2580 +0 0.0919 +0 0.0887 +0 0.1990 +0 0.3197 +0 0.0925 +0 0.1774 +0 0.1097 +0 0.0381 +0 0.0820 +0 0.0779 +0 0.1565 +0 0.1660 +0 0.0641 +0 0.1028 +0 0.1047 +0 0.0659 +0 0.0939 +0 0.0754 +0 0.1431 +0 0.0545 +0 0.0726 +0 0.4889 +0 0.1183 +0 0.2197 +0 0.1403 +0 0.0733 +0 0.0645 +0 0.0341 +0 0.0623 +0 0.1339 +0 0.0685 +0 0.0814 +0 0.1540 +0 0.0572 +0 0.0482 +0 0.0838 +0 0.0404 +0 0.0630 +0 0.0271 +0 0.1425 +0 0.0687 +0 0.3300 +0 0.0549 +0 0.1100 +0 0.1124 +0 0.0855 +0 0.1051 +0 0.2021 +0 0.1553 +0 0.0955 +0 0.0960 +0 0.0557 +0 0.2172 +0 0.1078 +0 0.0784 +0 0.1858 +0 0.0784 +0 0.1363 +0 0.6889 +0 0.0434 +0 0.1260 +0 0.1183 +0 0.0809 +0 0.0621 +1 0.8162 +0 0.1245 +0 0.1121 +0 0.6364 +0 0.0836 +0 0.1852 +0 0.0369 +0 0.0712 +0 0.3889 +0 0.2570 +0 0.1032 +0 0.1728 +0 0.0890 +0 0.0686 +0 0.0500 +0 0.1053 +0 0.4159 +0 0.1724 +0 0.1341 +0 0.0819 +0 0.0484 +0 0.0639 +0 0.1712 +0 0.1534 +0 0.0784 +0 0.0652 +0 0.0867 +0 0.1058 +0 0.2168 +0 0.0669 +0 0.1368 +0 0.1503 +0 0.0863 +0 0.1477 +0 0.0491 +0 0.1663 +0 0.3529 +0 0.2928 +0 0.0566 +0 0.1521 +0 0.0625 +0 0.1130 +0 0.0836 +0 0.0564 +0 0.1071 +0 0.1484 +0 0.0684 +0 0.1771 +0 0.1161 +0 0.0902 +0 0.6432 +0 0.0470 +0 0.1193 +0 0.1091 +0 0.1199 +1 0.8215 +0 0.2312 +0 0.0925 +0 0.0568 +0 0.0637 +0 0.0905 +0 0.1886 +0 0.1592 +0 0.0493 +0 0.1170 +0 0.0769 +1 0.8675 +0 0.1725 +0 0.1466 +0 0.0959 +0 0.2831 +0 0.1032 +0 0.1297 +0 0.1349 +0 0.1549 +0 0.1836 +0 0.1726 +0 0.1557 +0 0.1096 +0 0.2445 +0 0.1019 +0 0.1996 +0 0.7004 +0 0.1050 +0 0.1167 +0 0.1281 +0 0.0952 +0 0.0857 +0 0.1183 +0 0.2380 +0 0.2691 +0 0.1245 +0 0.0794 +0 0.0372 +0 0.0492 +0 0.0818 +0 0.0662 +0 0.1062 +0 0.0415 +0 0.1779 +0 0.0762 +0 0.0453 +0 0.1532 +0 0.0693 +0 0.1413 +0 0.1241 +0 0.1179 +0 0.1868 +0 0.1885 +0 0.0569 +0 0.0664 +0 0.0467 +0 0.1149 +1 0.8121 +0 0.1086 +0 0.1149 +0 0.1491 +0 0.0703 +0 0.1595 +0 0.0545 +0 0.1836 +0 0.0413 +0 0.0810 +0 0.2651 +1 0.7674 +0 0.2207 +0 0.1608 +0 0.0697 +0 0.0640 +0 0.2472 +0 0.1377 +0 0.0999 +0 0.1688 +0 0.2887 +0 0.1864 +0 0.0570 +0 0.1071 +0 0.0862 +0 0.1854 +0 0.1486 +0 0.0757 +0 0.1577 +0 0.0797 +0 0.2221 +0 0.2195 +0 0.1551 +0 0.2025 +0 0.3067 +0 0.3909 +1 0.7678 +0 0.3410 +0 0.0856 +0 0.0710 +0 0.1007 +0 0.1670 +0 0.0871 +0 0.1226 +0 0.1152 +0 0.0997 +1 0.8337 +0 0.1656 +0 0.0971 +0 0.3057 +0 0.0373 +0 0.1355 +0 0.7054 +0 0.0655 +0 0.1499 +0 0.0752 +0 0.2606 +0 0.2036 +0 0.1212 +0 0.2868 +0 0.3207 +0 0.0842 +0 0.0962 +0 0.0761 +0 0.0709 +0 0.0770 +0 0.0736 +0 0.1402 +0 0.1297 +0 0.0497 +0 0.1598 +0 0.0771 +0 0.0513 +0 0.2598 +0 0.1282 +0 0.0589 +0 0.0994 +0 0.1213 +0 0.2235 +0 0.0527 +0 0.1139 +0 0.0852 +0 0.1928 +0 0.0801 +0 0.2895 +1 0.8121 +0 0.1355 +0 0.1121 +0 0.1471 +0 0.3212 +0 0.0402 +0 0.1785 +0 0.0565 +0 0.0721 +0 0.0347 +0 0.0967 +0 0.0692 +0 0.2140 +0 0.1688 +0 0.1713 +0 0.2488 +0 0.1952 +0 0.0473 +0 0.1847 +0 0.1218 +0 0.0709 +0 0.1100 +0 0.0446 +0 0.0738 +0 0.0542 +0 0.1519 +0 0.1074 +0 0.0982 +0 0.0451 +0 0.0779 +0 0.1858 +0 0.1081 +0 0.0357 +0 0.0736 +0 0.0736 +0 0.0394 +0 0.1529 +0 0.0619 +0 0.0531 +0 0.1221 +0 0.1640 +0 0.1503 +0 0.6990 +0 0.2084 +0 0.0869 +0 0.1513 +0 0.2949 +0 0.0664 +0 0.0626 +0 0.3441 +0 0.0794 +1 0.8301 +0 0.6268 +0 0.0532 +0 0.1058 +0 0.2807 +0 0.3340 +0 0.1965 +0 0.0964 +0 0.0848 +0 0.0787 +0 0.0803 +0 0.1325 +0 0.0581 +0 0.1416 +0 0.0735 +0 0.1113 +0 0.2781 +0 0.2773 +0 0.0908 +0 0.4659 +0 0.0853 +0 0.0614 +0 0.2930 +0 0.0958 +0 0.0931 +0 0.1243 +0 0.0813 +0 0.0571 +0 0.0616 +0 0.1128 +0 0.0885 +0 0.0653 +0 0.1559 +0 0.0859 +0 0.0488 +0 0.1539 +0 0.2891 +0 0.0755 +0 0.0886 +0 0.3076 +0 0.1784 +0 0.1399 +0 0.0762 +0 0.0729 +0 0.0821 +0 0.0856 +0 0.1438 +0 0.0819 +0 0.0822 +0 0.2289 +0 0.1018 +0 0.0445 +0 0.0729 +0 0.1048 +0 0.0613 +0 0.1528 +0 0.0581 +0 0.0565 +0 0.5779 +0 0.1478 +0 0.1192 +0 0.1669 +0 0.5842 +0 0.0565 +0 0.1330 +0 0.0641 +0 0.1524 +0 0.3364 +0 0.0927 +0 0.0563 +0 0.1201 +0 0.4613 +0 0.7065 +0 0.3567 +0 0.1790 +0 0.1414 +0 0.3411 +0 0.0847 +0 0.0712 +0 0.2516 +0 0.1618 +0 0.1215 +0 0.0496 +0 0.3221 +0 0.0668 +0 0.0946 +0 0.0553 +0 0.0550 +0 0.3015 +0 0.0769 +0 0.1361 +0 0.2041 +0 0.0787 +0 0.2693 +0 0.1029 +1 0.8214 +0 0.6372 +0 0.0845 +0 0.2025 +0 0.2642 +0 0.0908 +0 0.1110 +0 0.5836 +0 0.1113 +0 0.0583 +0 0.0367 +0 0.0857 +1 0.8055 +0 0.0952 +0 0.0579 +0 0.0672 +0 0.0345 +0 0.1874 +0 0.1053 +0 0.0898 +0 0.2229 +0 0.0887 +0 0.1028 +1 0.7591 +0 0.1023 +0 0.0720 +0 0.1075 +0 0.1774 +0 0.0947 +0 0.0586 +0 0.1135 +0 0.0828 +0 0.0906 +0 0.1616 +0 0.0472 +0 0.0518 +0 0.0924 +0 0.0540 +0 0.1634 +0 0.1449 +0 0.2481 +0 0.0795 +0 0.1823 +0 0.0904 +0 0.1044 +0 0.1321 +0 0.0598 +0 0.1107 +0 0.2200 +0 0.1724 +0 0.0805 +0 0.0650 +0 0.1066 +0 0.0574 +0 0.1945 +0 0.0717 +0 0.1407 +0 0.0610 +0 0.0661 +0 0.0904 +0 0.3809 +0 0.0885 +0 0.1136 +0 0.1663 +0 0.0770 +0 0.1366 +0 0.4445 +0 0.0775 +0 0.1295 +0 0.1068 +0 0.1075 +0 0.0673 +0 0.1316 +0 0.0755 +0 0.1187 +0 0.2019 +0 0.0874 +0 0.2411 +0 0.1248 +0 0.0676 +0 0.0451 +0 0.1085 +0 0.2322 +0 0.1617 +0 0.1275 +0 0.1065 +0 0.0570 +0 0.2884 +0 0.1197 +0 0.0763 +0 0.0750 +0 0.1066 +0 0.0668 +0 0.0392 +0 0.1882 +0 0.0369 +0 0.1473 +0 0.2035 +0 0.0472 +0 0.3415 +0 0.0714 +0 0.0949 +0 0.1611 +0 0.1003 +0 0.1223 +0 0.2414 +0 0.1475 +0 0.1160 +0 0.1723 +0 0.0885 +0 0.1042 +0 0.0554 +0 0.0465 +0 0.0693 +0 0.0689 +0 0.0761 +0 0.0691 +0 0.0970 +0 0.1325 +0 0.0632 +0 0.4519 +0 0.0590 +0 0.2004 +0 0.2314 +0 0.2335 +0 0.0533 +0 0.0684 +0 0.4058 +0 0.1013 +0 0.1026 +0 0.1995 +0 0.0872 +0 0.0744 +0 0.0634 +0 0.0766 +0 0.1057 +0 0.1749 +0 0.1435 +0 0.0577 +0 0.1126 +0 0.0782 +1 0.7855 +0 0.1975 +0 0.2152 +0 0.2989 +0 0.0906 +0 0.0725 +0 0.1426 +0 0.2305 +0 0.1401 +0 0.0790 +0 0.0776 +0 0.1043 +0 0.0942 +0 0.1533 +0 0.4789 +0 0.1127 +0 0.0714 +0 0.0505 +0 0.1010 +0 0.0683 +0 0.1007 +0 0.0942 +0 0.0566 +0 0.0401 +0 0.4669 +0 0.0939 +0 0.1250 +0 0.0518 +0 0.0786 +0 0.0904 +0 0.0654 +0 0.1155 +0 0.0899 +0 0.1389 +0 0.0903 +0 0.6763 +0 0.0526 +1 0.7716 +0 0.0825 +0 0.1253 +0 0.0613 +0 0.0990 +0 0.3906 +0 0.0947 +0 0.1564 +0 0.2438 +0 0.1279 +0 0.0891 +0 0.1167 +0 0.0714 +0 0.0468 +0 0.1522 +0 0.1323 +0 0.0524 +0 0.1543 +0 0.0782 +0 0.2518 +0 0.0729 +1 0.8409 +0 0.1663 +0 0.1368 +0 0.1777 +0 0.2432 +0 0.1005 +0 0.3029 +0 0.0809 +0 0.0359 +0 0.0632 +0 0.0586 +0 0.0382 +0 0.0798 +0 0.0684 +0 0.1104 +0 0.3829 +0 0.1238 +0 0.2038 +0 0.0549 +0 0.2261 +0 0.1528 +0 0.1349 +0 0.0707 +0 0.2829 +0 0.7216 +0 0.1689 +0 0.1214 +0 0.0963 +0 0.2572 +0 0.1881 +0 0.0571 +0 0.0443 +0 0.2304 +0 0.0735 +0 0.1359 +0 0.1683 +0 0.7018 +0 0.1674 +0 0.6889 +0 0.0407 +0 0.0939 +0 0.0527 +1 0.8367 +0 0.1078 +0 0.1147 +0 0.1245 +0 0.1105 +0 0.1455 +0 0.0616 +0 0.1122 +0 0.0836 +0 0.0822 +0 0.0686 +0 0.0797 +0 0.1113 +0 0.0658 +0 0.1135 +0 0.2377 +0 0.1680 +0 0.0661 +0 0.0699 +0 0.1321 +0 0.1187 +0 0.0753 +0 0.1456 +0 0.0795 +0 0.1010 +0 0.1325 +0 0.3378 +0 0.0781 +0 0.1641 +0 0.2823 +0 0.0901 +0 0.0721 +0 0.1048 +0 0.0740 +0 0.1150 +0 0.1534 +0 0.0428 +0 0.1759 +0 0.1756 +0 0.1101 +0 0.2258 +0 0.0546 +0 0.1157 +0 0.0802 +0 0.0941 +1 0.8270 +0 0.7343 +0 0.0547 +0 0.1718 +0 0.1159 +0 0.2195 +0 0.0512 +0 0.0419 +0 0.0941 +0 0.0746 +0 0.1747 +0 0.1849 +0 0.0685 +0 0.6083 +0 0.2863 +0 0.1976 +0 0.1014 +0 0.1678 +0 0.1111 +0 0.5988 +0 0.0804 +0 0.0572 +0 0.1531 +0 0.0814 +0 0.0467 +0 0.0909 +0 0.0949 +0 0.1093 +0 0.5573 +0 0.1587 +0 0.1593 +0 0.0841 +0 0.0903 +0 0.1402 +0 0.0651 +0 0.1062 +1 0.7787 +0 0.0921 +0 0.0663 +0 0.2352 +0 0.1478 +0 0.0860 +0 0.1749 +0 0.1422 +1 0.8365 +0 0.1281 +0 0.1601 +0 0.2226 +0 0.1586 +0 0.1076 +0 0.0965 +0 0.0719 +0 0.0961 +0 0.1893 +0 0.2090 +0 0.1993 +0 0.1876 +0 0.0851 +0 0.1329 +0 0.2141 +0 0.2001 +1 0.7682 +0 0.0916 +0 0.0613 +0 0.7251 +0 0.0949 +0 0.0668 +0 0.0937 +0 0.2114 +0 0.0670 +0 0.0808 +0 0.0742 +0 0.2794 +0 0.1234 +0 0.3944 +0 0.0342 +0 0.1552 +0 0.1791 +0 0.0589 +0 0.0366 +0 0.4401 +0 0.1089 +0 0.1023 +0 0.0672 +0 0.1094 +0 0.0576 +0 0.1095 +0 0.0856 +0 0.0560 +0 0.0680 +0 0.0335 +0 0.1140 +0 0.1132 +0 0.0543 +0 0.0885 +0 0.0399 +0 0.1882 +0 0.1998 +0 0.0643 +0 0.1128 +0 0.0901 +0 0.0998 +0 0.0598 +0 0.2236 +0 0.0414 +0 0.0508 +0 0.1353 +0 0.0776 +0 0.0820 +0 0.2668 +0 0.0611 +0 0.0778 +0 0.0407 +0 0.0806 +0 0.1217 +0 0.0532 +0 0.1085 +0 0.0973 +0 0.1768 +0 0.3266 +0 0.1136 +0 0.1113 +0 0.4598 +0 0.4262 +0 0.2146 +0 0.0683 +0 0.0351 +0 0.2704 +0 0.2805 +0 0.1654 +0 0.1154 +0 0.1190 +0 0.0319 +0 0.0537 +0 0.1261 +0 0.0908 +0 0.0959 +0 0.0648 +0 0.1208 +0 0.0665 +0 0.0901 +0 0.0710 +0 0.1074 +0 0.0477 +0 0.2278 +0 0.0882 +0 0.0866 +0 0.1118 +0 0.0492 +0 0.1235 +0 0.0525 +0 0.4360 +0 0.1175 +0 0.1874 +0 0.1564 +1 0.8239 +0 0.0513 +0 0.5390 +0 0.1083 +0 0.1507 +0 0.0576 +0 0.0659 +0 0.1326 +0 0.3909 +0 0.2091 +0 0.1283 +0 0.0472 +0 0.3223 +0 0.1690 +0 0.0910 +0 0.0522 +0 0.2329 +0 0.0662 +0 0.0820 +0 0.3139 +0 0.0663 +0 0.0982 +0 0.0704 +0 0.0861 +0 0.0784 +0 0.0901 +0 0.1337 +0 0.2396 +0 0.0663 +0 0.1246 +0 0.1707 +0 0.0631 +0 0.0795 +0 0.0664 +0 0.0525 +0 0.0420 +0 0.1183 +0 0.1108 +0 0.0723 +0 0.6972 +0 0.3055 +0 0.0594 +0 0.3470 +0 0.1152 +0 0.4305 +0 0.0963 +0 0.2255 +0 0.2095 +0 0.1498 +0 0.1132 +0 0.1420 +0 0.1247 +0 0.0604 +0 0.1343 +0 0.1027 +0 0.1323 +0 0.0686 +0 0.1029 +0 0.0776 +0 0.1715 +0 0.0477 +0 0.2369 +0 0.0435 +0 0.1124 +0 0.1977 +1 0.7563 +0 0.1140 +0 0.0851 +0 0.0708 +0 0.0887 +0 0.2279 +0 0.0472 +0 0.0908 +0 0.2444 +0 0.1109 +0 0.1997 +0 0.0824 +0 0.1228 +0 0.2500 +0 0.0484 +0 0.0857 +0 0.1115 +0 0.1795 +0 0.1652 +0 0.1268 +0 0.1859 +0 0.2055 +0 0.0639 +0 0.0852 +0 0.0872 +0 0.1093 +0 0.0996 +0 0.6246 +0 0.0352 +0 0.0550 +0 0.3192 +0 0.0889 +0 0.1000 +0 0.1659 +0 0.2007 +0 0.1344 +0 0.1489 +0 0.0655 +0 0.0836 +0 0.0623 +0 0.0425 +0 0.4941 +0 0.0937 +0 0.1580 +0 0.0945 +0 0.0929 +0 0.0673 +0 0.0881 +0 0.3070 +0 0.1543 +0 0.0555 +0 0.1397 +0 0.0733 +0 0.6060 +0 0.1061 +0 0.0901 +0 0.0948 +0 0.0801 +0 0.1276 +0 0.2120 +0 0.0727 +0 0.0881 +0 0.1595 +0 0.0408 +0 0.1498 +0 0.0615 +0 0.1449 +0 0.1686 +0 0.0603 +0 0.2374 +0 0.0540 +0 0.1392 +0 0.0785 +0 0.0576 +0 0.0929 +0 0.0930 +0 0.2171 +0 0.0471 +0 0.0658 +0 0.1174 +0 0.1294 +0 0.1528 +0 0.1541 +0 0.0760 +0 0.0764 +0 0.0458 +0 0.1025 +0 0.1078 +0 0.0567 +0 0.1442 +0 0.0875 +0 0.2093 +0 0.1739 +0 0.1322 +0 0.3119 +0 0.3619 +0 0.0937 +0 0.4047 +0 0.0684 +0 0.0519 +0 0.0474 +0 0.1448 +0 0.0901 +0 0.1064 +0 0.0852 +0 0.1343 +0 0.0418 +0 0.1700 +0 0.1941 +0 0.0840 +0 0.1055 +0 0.1428 +0 0.1106 +0 0.0614 +0 0.0977 +0 0.0643 +0 0.2199 +0 0.0475 +0 0.0913 +0 0.3638 +0 0.3663 +0 0.1609 +0 0.1650 +0 0.0974 +0 0.1480 +0 0.1841 +0 0.0783 +0 0.0873 +0 0.1188 +0 0.2089 +0 0.0870 +0 0.0677 +0 0.2313 +0 0.1111 +0 0.1563 +0 0.4227 +0 0.1174 +0 0.2075 +0 0.0756 +0 0.1940 +0 0.0871 +0 0.3238 +0 0.2070 +0 0.0939 +0 0.0468 +0 0.1789 +0 0.1213 +0 0.2727 +0 0.2316 +0 0.0546 +0 0.1585 +0 0.0615 +0 0.1547 +0 0.1186 +0 0.2274 +0 0.0488 +0 0.0676 +0 0.4942 +0 0.1324 +0 0.0424 +0 0.0615 +0 0.1755 +0 0.1398 +0 0.0462 +0 0.4230 +0 0.1389 +0 0.0951 +0 0.1442 +1 0.8190 +0 0.1103 +0 0.0362 +0 0.0519 +0 0.0901 +0 0.4255 +0 0.1245 +0 0.1010 +0 0.2033 +0 0.1270 +0 0.1741 +0 0.0617 +0 0.1807 +0 0.1150 +0 0.0748 +0 0.1426 +0 0.0675 +0 0.1034 +0 0.0635 +0 0.1824 +0 0.1495 +0 0.1223 +0 0.1093 +0 0.1178 +0 0.1092 +0 0.1109 +0 0.1176 +0 0.0878 +0 0.1899 +0 0.0700 +0 0.0487 +0 0.0575 +0 0.1114 +0 0.2207 +0 0.1207 +0 0.5720 +0 0.0998 +0 0.1473 +0 0.1260 +0 0.0949 +0 0.1009 +0 0.0671 +0 0.1975 +0 0.0677 +0 0.3006 +0 0.2195 +0 0.2680 +0 0.1609 +0 0.1473 +0 0.1448 +0 0.1601 +0 0.1097 +0 0.0623 +0 0.0565 +0 0.0611 +0 0.0426 +0 0.1646 +0 0.2269 +0 0.1369 +0 0.0938 +0 0.0390 +0 0.0556 +0 0.1436 +0 0.1636 +0 0.0551 +0 0.1250 +0 0.1017 +0 0.0771 +0 0.0747 +0 0.3083 +0 0.1554 +0 0.0615 +0 0.0446 +0 0.4810 +0 0.0303 +0 0.1279 +0 0.2067 +0 0.0666 +0 0.0972 +0 0.0798 +0 0.0426 +0 0.0675 +0 0.1116 +0 0.0837 +0 0.0590 +0 0.4332 +0 0.1258 +0 0.1478 +0 0.1792 +0 0.1966 +0 0.1478 +0 0.0796 +0 0.1055 +0 0.1085 +0 0.0545 +0 0.1679 +0 0.0605 +0 0.1015 +0 0.1372 +0 0.1719 +0 0.0508 +0 0.0484 +0 0.0829 +0 0.0926 +0 0.1430 +0 0.1227 +0 0.1263 +0 0.1024 +0 0.0797 +0 0.1734 +0 0.0911 +0 0.0420 +0 0.0566 +0 0.1982 +0 0.0575 +0 0.1250 +0 0.0616 +0 0.0914 +0 0.0402 +0 0.3307 +0 0.1139 +0 0.1655 +0 0.2863 +0 0.5473 +0 0.0564 +0 0.3609 +0 0.0650 +0 0.0492 +0 0.0993 +0 0.1221 +0 0.1058 +0 0.0722 +0 0.1358 +0 0.1036 +0 0.0621 +0 0.1383 +0 0.0517 +0 0.0591 +0 0.1542 +0 0.1462 +0 0.0764 +0 0.1197 +0 0.0724 +0 0.1856 +0 0.1163 +0 0.0531 +0 0.6610 +0 0.1597 +0 0.1365 +0 0.1060 +0 0.3147 +0 0.0465 +0 0.1105 +0 0.0959 +0 0.0835 +0 0.0867 +0 0.3575 +0 0.4731 +0 0.2136 +0 0.0900 +0 0.1000 +0 0.0881 +0 0.1014 +0 0.1436 +0 0.1618 +0 0.0450 +0 0.5406 +0 0.1261 +0 0.0857 +0 0.0444 +0 0.1285 +0 0.1569 +0 0.0720 +0 0.0969 +0 0.0845 +0 0.7081 +0 0.0876 +0 0.0674 +0 0.0793 +0 0.3319 +0 0.2876 +0 0.0454 +0 0.1096 +0 0.1008 +0 0.0947 +0 0.1930 +0 0.0781 +0 0.0842 +0 0.0455 +0 0.0528 +0 0.0979 +0 0.1266 +0 0.0900 +0 0.2264 +0 0.2812 +0 0.1959 +1 0.8223 +0 0.1080 +0 0.0575 +1 0.8848 +0 0.1567 +0 0.1023 +0 0.0654 +0 0.0503 +0 0.0639 +0 0.0559 +0 0.3016 +0 0.2326 +0 0.5127 +0 0.0536 +0 0.0868 +0 0.1612 +0 0.1011 +0 0.0508 +0 0.1243 +0 0.1000 +0 0.0639 +0 0.1480 +0 0.1097 +0 0.0476 +0 0.1336 +0 0.0974 +0 0.1801 +0 0.0863 +0 0.2240 +0 0.0893 +0 0.0611 +0 0.3069 +0 0.0637 +0 0.1161 +0 0.0676 +0 0.0925 +0 0.0938 +0 0.0705 +0 0.1287 +0 0.7041 +0 0.0452 +0 0.1076 +0 0.3211 +0 0.0645 +0 0.1077 +0 0.1931 +0 0.0705 +0 0.2009 +0 0.1168 +0 0.1030 +0 0.5305 +0 0.0700 +0 0.5220 +0 0.0689 +0 0.0361 +0 0.2054 +1 0.7564 +0 0.0347 +0 0.0478 +0 0.2073 +0 0.1442 +0 0.1641 +0 0.1456 +0 0.0928 +0 0.0885 +0 0.1054 +0 0.3957 +0 0.1495 +0 0.4229 +0 0.1609 +0 0.0434 +0 0.0894 +0 0.0761 +0 0.0549 +1 0.7613 +0 0.0656 +0 0.6706 +0 0.5616 +0 0.3060 +0 0.0627 +0 0.2030 +0 0.1192 +0 0.0892 +1 0.7699 +0 0.2126 +0 0.1547 +0 0.1317 +0 0.1354 +0 0.4644 +0 0.2788 +1 0.8208 +0 0.2063 +0 0.0381 +0 0.0396 +0 0.0978 +0 0.0761 +0 0.0953 +0 0.0757 +0 0.1103 +0 0.0748 +1 0.7877 +0 0.2569 +0 0.0645 +0 0.1462 +0 0.1585 +0 0.2788 +0 0.0907 +0 0.0663 +0 0.2258 +0 0.2742 +1 0.8744 +0 0.1974 +0 0.0720 +0 0.2172 +0 0.0638 +0 0.0428 +0 0.1049 +0 0.1034 +0 0.2030 +0 0.1011 +0 0.0403 +0 0.0725 +0 0.1444 +0 0.0922 +0 0.0930 +0 0.1596 +0 0.0660 +0 0.1161 +0 0.7169 +0 0.0759 +0 0.4803 +0 0.0527 +0 0.1536 +0 0.2458 +0 0.1824 +0 0.0457 +0 0.2025 +0 0.1967 +1 0.7838 +0 0.1800 +0 0.0766 +0 0.0624 +0 0.0893 +0 0.1021 +0 0.2328 +1 0.8179 +0 0.0817 +0 0.1306 +0 0.2492 +0 0.0739 +0 0.0884 +0 0.1133 +0 0.0681 +0 0.0912 +0 0.0730 +0 0.3099 +1 0.8654 +0 0.1409 +0 0.1004 +0 0.1108 +0 0.0458 +0 0.0316 +0 0.0868 +0 0.0478 +0 0.3314 +0 0.0363 +0 0.0779 +0 0.2602 +0 0.1000 +0 0.1056 +0 0.1183 +0 0.0567 +0 0.0402 +0 0.0975 +0 0.0579 +0 0.0701 +0 0.0983 +0 0.0920 +0 0.1841 +0 0.0593 +0 0.0680 +0 0.2374 +0 0.2281 +0 0.0966 +0 0.1296 +0 0.1614 +0 0.1251 +0 0.0631 +0 0.0842 +0 0.1154 +0 0.1083 +0 0.3030 +0 0.2136 +0 0.1445 +0 0.0585 +0 0.1649 +0 0.0841 +0 0.0873 +0 0.1043 +0 0.1678 +0 0.1283 +0 0.1239 +0 0.1083 +0 0.2105 +0 0.1592 +0 0.0760 +0 0.1162 +0 0.0680 +0 0.2419 +0 0.1599 +0 0.0805 +0 0.0488 +0 0.3286 +0 0.1681 +0 0.0486 +0 0.0900 +0 0.1764 +0 0.1819 +0 0.2883 +0 0.1283 +0 0.2315 +0 0.1211 +0 0.1337 +0 0.0957 +0 0.1619 +0 0.0689 +0 0.1053 +0 0.0602 +0 0.0419 +0 0.5685 +0 0.4913 +0 0.0847 +0 0.0779 +0 0.0828 +0 0.1281 +0 0.0774 +0 0.7060 +0 0.1321 +0 0.2151 +0 0.0805 +0 0.0653 +0 0.4892 +0 0.0498 +0 0.0829 +0 0.0766 +0 0.0777 +0 0.2037 +0 0.0946 +0 0.1448 +0 0.2587 +0 0.1066 +0 0.0558 +0 0.1032 +0 0.0717 +0 0.0587 +0 0.0758 +0 0.3079 +0 0.1577 +0 0.1855 +0 0.0657 +0 0.1544 +0 0.1685 +0 0.1754 +0 0.0639 +0 0.1360 +0 0.1572 +0 0.0757 +0 0.1054 +0 0.0977 +0 0.0894 +0 0.1696 +0 0.1244 +0 0.2793 +0 0.1628 +0 0.1975 +0 0.0627 +0 0.1683 +0 0.0741 +1 0.8356 +0 0.1931 +1 0.8396 +0 0.0423 +0 0.0828 +0 0.1471 +0 0.1023 +0 0.0918 +0 0.1160 +0 0.1111 +0 0.0620 +0 0.1109 +0 0.1910 +0 0.0417 +0 0.0623 +0 0.1206 +0 0.1393 +0 0.1472 +0 0.1975 +0 0.0872 +0 0.0625 +0 0.0508 +0 0.0878 +0 0.0600 +0 0.0874 +0 0.1105 +0 0.1250 +0 0.0322 +0 0.0962 +0 0.2322 +0 0.0770 +0 0.1662 +0 0.0634 +0 0.1808 +0 0.1859 +0 0.0869 +0 0.0611 +0 0.0379 +0 0.2680 +1 0.7906 +0 0.0912 +0 0.1162 +0 0.1691 +0 0.0827 +0 0.0749 +0 0.0597 +0 0.0358 +0 0.0700 +0 0.4848 +0 0.3674 +0 0.1213 +0 0.0670 +0 0.0875 +0 0.2045 +0 0.0647 +0 0.0516 +0 0.1415 +0 0.1734 +0 0.2410 +0 0.0584 +0 0.0518 +0 0.0733 +0 0.1470 +0 0.1340 +0 0.0604 +0 0.1346 +0 0.0688 +0 0.1270 +0 0.1056 +0 0.1289 +0 0.3653 +0 0.0968 +0 0.1766 +0 0.1447 +0 0.0933 +0 0.0626 +0 0.0616 +0 0.2604 +0 0.0561 +0 0.0740 +0 0.2391 +0 0.1822 +0 0.0717 +0 0.1263 +0 0.2130 +0 0.0830 +0 0.0937 +0 0.4935 +0 0.0801 +0 0.1000 +0 0.1177 +0 0.0906 +0 0.2233 +0 0.7318 +0 0.0844 +0 0.1136 +0 0.0948 +0 0.0813 +0 0.1145 +0 0.1203 +1 0.7945 +0 0.1529 +0 0.0714 +0 0.2490 +0 0.0346 +0 0.0395 +0 0.7344 +0 0.7051 +0 0.0871 +0 0.1061 +0 0.1420 +0 0.0733 +0 0.1084 +0 0.0658 +0 0.0542 +0 0.2222 +0 0.6125 +0 0.0912 +0 0.0937 +0 0.0750 +0 0.0685 +0 0.0863 +0 0.2542 +0 0.1171 +0 0.0463 +0 0.1737 +0 0.1051 +0 0.1591 +0 0.1517 +0 0.0551 +0 0.6659 +0 0.1047 +0 0.0509 +0 0.0596 +0 0.0606 +0 0.1404 +0 0.0744 +0 0.1436 +0 0.5242 +0 0.2038 +0 0.1424 +0 0.0857 +0 0.1255 +0 0.0749 +0 0.1314 +0 0.0558 +0 0.1072 +0 0.0673 +0 0.0853 +0 0.2892 +0 0.3611 +0 0.2774 +0 0.0525 +0 0.2710 +0 0.0923 +0 0.0829 +0 0.3782 +0 0.3288 +0 0.1418 +1 0.8250 +0 0.0956 +0 0.0635 +0 0.1587 +0 0.1076 +0 0.1112 +0 0.1054 +0 0.1304 +0 0.0976 +0 0.0654 +0 0.0792 +0 0.0408 +0 0.1422 +0 0.0861 +0 0.1512 +0 0.0845 +0 0.0861 +0 0.0550 +0 0.1455 +0 0.1064 +0 0.0552 +0 0.1952 +0 0.1242 +0 0.1467 +0 0.4149 +0 0.1466 +0 0.5688 +0 0.1713 +0 0.0591 +0 0.1193 +0 0.0557 +0 0.0784 +0 0.0683 +0 0.1689 +0 0.0695 +0 0.1326 +0 0.0622 +0 0.1479 +0 0.2249 +0 0.4249 +0 0.0406 +0 0.0994 +0 0.2533 +0 0.1058 +0 0.0943 +0 0.1812 +0 0.1064 +0 0.1086 +0 0.0621 +0 0.3378 +0 0.0668 +0 0.0809 +0 0.2202 +0 0.0741 +0 0.2191 +0 0.2469 +0 0.1128 +0 0.1824 +0 0.1059 +0 0.6995 +0 0.1498 +0 0.0877 +0 0.2387 +0 0.1091 +0 0.1559 +0 0.1017 +0 0.1708 +0 0.1023 +0 0.1421 +0 0.0973 +0 0.0694 +0 0.1470 +0 0.0955 +0 0.0706 +0 0.0786 +0 0.1297 +0 0.1910 +0 0.1206 +0 0.0946 +0 0.1263 +0 0.0865 +0 0.1006 +0 0.0847 +0 0.0757 +0 0.1247 +0 0.1984 +0 0.0890 +0 0.0798 +0 0.0566 +0 0.0752 +0 0.0602 +0 0.0703 +1 0.8519 +0 0.1655 +0 0.0944 +0 0.1349 +0 0.1519 +1 0.8085 +0 0.0349 +0 0.0735 +0 0.0569 +0 0.0462 +0 0.0822 +0 0.2134 +0 0.0682 +0 0.0899 +0 0.1195 +0 0.1231 +0 0.0618 +0 0.1479 +0 0.1073 +0 0.0875 +0 0.0485 +0 0.1377 +0 0.1315 +0 0.0974 +0 0.0441 +0 0.0876 +0 0.1901 +0 0.1120 +0 0.1199 +0 0.1469 +0 0.0975 +0 0.0901 +1 0.8410 +0 0.0494 +0 0.0452 +0 0.3649 +0 0.0680 +0 0.1227 +0 0.7450 +0 0.1593 +0 0.2502 +0 0.1007 +0 0.0853 +0 0.0835 +0 0.1005 +0 0.1668 +0 0.1273 +0 0.1819 +0 0.0765 +0 0.0360 +0 0.2209 +0 0.0940 +0 0.0897 +0 0.0575 +0 0.0706 +0 0.0612 +0 0.0622 +0 0.1385 +0 0.3488 +0 0.1381 +0 0.4049 +0 0.1011 +0 0.1499 +0 0.0425 +0 0.2219 +0 0.0361 +0 0.0805 +0 0.1719 +0 0.0749 +0 0.0572 +0 0.2709 +0 0.1082 +0 0.1401 +0 0.0522 +0 0.0402 +0 0.2704 +0 0.0807 +0 0.1984 +0 0.0819 +0 0.1092 +0 0.0458 +0 0.2163 +0 0.1379 +0 0.0340 +0 0.2490 +0 0.1472 +0 0.1146 +0 0.0866 +0 0.0944 +0 0.0686 +1 0.8152 +0 0.0685 +0 0.0659 +0 0.2262 +0 0.1142 +0 0.0888 +0 0.0800 +0 0.1128 +0 0.0557 +0 0.0568 +0 0.1413 +0 0.0657 +0 0.0413 +0 0.0769 +0 0.3298 +0 0.0461 +0 0.0406 +0 0.0672 +0 0.1750 +0 0.0642 +0 0.3173 +0 0.1033 +0 0.1363 +0 0.1404 +0 0.0762 +0 0.1191 +0 0.0987 +0 0.1121 +0 0.1382 +0 0.0632 +0 0.3221 +0 0.1707 +0 0.1067 +0 0.1229 +0 0.0495 +0 0.1870 +0 0.3286 +0 0.1117 +0 0.0743 +0 0.2051 +0 0.1156 +0 0.0622 +0 0.0535 +0 0.0676 +0 0.0557 +0 0.1309 +0 0.0599 +0 0.5649 +0 0.1364 +0 0.0828 +0 0.2093 +0 0.2268 +0 0.1115 +0 0.1205 +0 0.1365 +0 0.2518 +0 0.0388 +0 0.1976 +0 0.1745 +0 0.1019 +0 0.1699 +0 0.3001 +0 0.0770 +0 0.0767 +0 0.1402 +0 0.0947 +0 0.5251 +0 0.1986 +0 0.0692 +0 0.2956 +0 0.1408 +0 0.1148 +0 0.0517 +0 0.1162 +0 0.0694 +0 0.2203 +0 0.0350 +0 0.1638 +0 0.0806 +0 0.3021 +0 0.0830 +0 0.0885 +0 0.1852 +0 0.1136 +0 0.0956 +0 0.2550 +0 0.3421 +0 0.1246 +0 0.0702 +0 0.0838 +0 0.0745 +0 0.2305 +0 0.0657 +0 0.0837 +0 0.2995 +0 0.2047 +0 0.0705 +0 0.0717 +0 0.0442 +0 0.1937 +0 0.0998 +0 0.1835 +0 0.0502 +0 0.1120 +0 0.2668 +0 0.1158 +0 0.1843 +0 0.0634 +0 0.2931 +0 0.1033 +0 0.2207 +0 0.1159 +0 0.1656 +0 0.1433 +0 0.0773 +0 0.2194 +0 0.0590 +0 0.0586 +0 0.1309 +0 0.1503 +0 0.0478 +0 0.3392 +0 0.0341 +0 0.1427 +0 0.0636 +0 0.0912 +0 0.0949 +1 0.8469 +0 0.0695 +0 0.5864 +0 0.0962 +0 0.0944 +0 0.1060 +0 0.0637 +0 0.3133 +0 0.0680 +0 0.1191 +0 0.0842 +0 0.0746 +0 0.0690 +0 0.2285 +0 0.1183 +0 0.0626 +0 0.1718 +0 0.0546 +0 0.0818 +0 0.0976 +0 0.4089 +0 0.1203 +0 0.0980 +0 0.2000 +0 0.0766 +0 0.0517 +0 0.0555 +0 0.1426 +0 0.1203 +0 0.0487 +0 0.1049 +0 0.0709 +0 0.2001 +0 0.2415 +0 0.1633 +0 0.1295 +0 0.0905 +0 0.1904 +0 0.0819 +1 0.8436 +0 0.0975 +0 0.0481 +0 0.0547 +0 0.0870 +0 0.1094 +0 0.2434 +0 0.0988 +0 0.1224 +0 0.0915 +0 0.1017 +0 0.1103 +0 0.0689 +0 0.3052 +0 0.1021 +0 0.1860 +0 0.1041 +0 0.1361 +0 0.3886 +0 0.1204 +0 0.0476 +0 0.0897 +0 0.0551 +0 0.0526 +0 0.0666 +0 0.0607 +0 0.0682 +0 0.0421 +0 0.6942 +0 0.1782 +0 0.0910 +0 0.0676 +0 0.0912 +0 0.1050 +0 0.0333 +0 0.0885 +0 0.0511 +0 0.1454 +0 0.1479 +0 0.0703 +0 0.1004 +0 0.0743 +0 0.1932 +0 0.0707 +0 0.0823 +0 0.0997 +0 0.0614 +0 0.3755 +0 0.1167 +0 0.0774 +0 0.1029 +0 0.0755 +0 0.0838 +0 0.0934 +1 0.7650 +0 0.1318 +0 0.1620 +0 0.1825 +0 0.1158 +0 0.1771 +0 0.2096 +0 0.0973 +0 0.2111 +0 0.1240 +0 0.1774 +0 0.0516 +0 0.1536 +0 0.5687 +0 0.0520 +0 0.1863 +0 0.0718 +0 0.1071 +0 0.0310 +0 0.4098 +0 0.1214 +0 0.0863 +0 0.1210 +0 0.1073 +0 0.0743 +0 0.1405 +0 0.0683 +0 0.1360 +0 0.1770 +0 0.0826 +0 0.1330 +0 0.3695 +0 0.2615 +0 0.1408 +0 0.0903 +0 0.1672 +0 0.2267 +0 0.2998 +0 0.2553 +0 0.0833 +0 0.3844 +0 0.1577 +0 0.2272 +0 0.2194 +0 0.0692 +0 0.0495 +0 0.1545 +0 0.0789 +0 0.0502 +0 0.0746 +0 0.0554 +0 0.0614 +0 0.0988 +0 0.0972 +0 0.3250 +0 0.0624 +0 0.1673 +0 0.1330 +0 0.0445 +0 0.1413 +0 0.0469 +0 0.1383 +0 0.0797 +0 0.2365 +0 0.0792 +0 0.1039 +0 0.0570 +0 0.0730 +0 0.0780 +0 0.0830 +0 0.2078 +0 0.3413 +0 0.3875 +0 0.2339 +0 0.0873 +0 0.0838 +0 0.0872 +0 0.1365 +0 0.0422 +0 0.0626 +0 0.1151 +0 0.4246 +0 0.0704 +0 0.0390 +0 0.1141 +0 0.0707 +0 0.1449 +0 0.1746 +0 0.0455 +0 0.1669 +0 0.2130 +0 0.0899 +0 0.0669 +0 0.1079 +0 0.1369 +0 0.1117 +0 0.0913 +0 0.1034 +0 0.0886 +0 0.2172 +0 0.6472 +0 0.1652 +0 0.1536 +0 0.1538 +0 0.0718 +0 0.1190 +0 0.3956 +0 0.1435 +0 0.1431 +0 0.0478 +0 0.3413 +0 0.2336 +0 0.1803 +0 0.1258 +0 0.1412 +0 0.1262 +0 0.0786 +0 0.0326 +0 0.0587 +0 0.1023 +0 0.1762 +0 0.0602 +0 0.4035 +0 0.1721 +0 0.2150 +0 0.1464 +0 0.0799 +0 0.0906 +0 0.0989 +0 0.2831 +0 0.3276 +0 0.1551 +0 0.2023 +0 0.1623 +0 0.2683 +0 0.0788 +0 0.2286 +0 0.1116 +0 0.0360 +0 0.6927 +0 0.1656 +0 0.1129 +0 0.1907 +0 0.1675 +0 0.1436 +0 0.0730 +0 0.1923 +0 0.0519 +0 0.1042 +0 0.0617 +0 0.1761 +0 0.0912 +0 0.1142 +0 0.1117 +0 0.1310 +0 0.2317 +0 0.0458 +0 0.1663 +0 0.0948 +0 0.1177 +0 0.3143 +0 0.1001 +0 0.0427 +0 0.0696 +0 0.2441 +0 0.3005 +0 0.0904 +0 0.1833 +0 0.0809 +0 0.0738 +0 0.1304 +0 0.0306 +0 0.0573 +0 0.1667 +0 0.0869 +0 0.0720 +0 0.6793 +0 0.0638 +0 0.2047 +0 0.0707 +0 0.1977 +0 0.0598 +0 0.1635 +0 0.0549 +0 0.0605 +0 0.1120 +0 0.0516 +0 0.1041 +0 0.1652 +0 0.1229 +0 0.0380 +0 0.0880 +0 0.0830 +0 0.0856 +0 0.0446 +0 0.1198 +0 0.1115 +0 0.1194 +0 0.0760 +0 0.0709 +0 0.1207 +0 0.1348 +0 0.0874 +0 0.5348 +0 0.2179 +0 0.0525 +0 0.5394 +0 0.0637 +0 0.1850 +0 0.0405 +0 0.1830 +0 0.2340 +0 0.1303 +0 0.0744 +0 0.2381 +0 0.2446 +0 0.0714 +0 0.0837 +0 0.0812 +0 0.0669 +1 0.8128 +0 0.0602 +0 0.0439 +0 0.0514 +0 0.0619 +0 0.0579 +0 0.0585 +0 0.2911 +0 0.1489 +0 0.0640 +0 0.1369 +0 0.1166 +0 0.1182 +0 0.0418 +0 0.1157 +0 0.0788 +0 0.0679 +0 0.2365 +0 0.0887 +0 0.1248 +0 0.0748 +0 0.5202 +0 0.1137 +0 0.0792 +0 0.1125 +0 0.1564 +0 0.0924 +0 0.1888 +0 0.0729 +0 0.1823 +0 0.1002 +0 0.0708 +0 0.1110 +0 0.1683 +0 0.1584 +0 0.1691 +0 0.0710 +0 0.1577 +0 0.0904 +0 0.0898 +0 0.0738 +0 0.3537 +0 0.2238 +0 0.1124 +0 0.0817 +0 0.0722 +0 0.0757 +0 0.0548 +0 0.0947 +0 0.1209 +0 0.2453 +0 0.0577 +0 0.1698 +0 0.1582 +0 0.5336 +0 0.1208 +0 0.1123 +0 0.1231 +0 0.0703 +0 0.0498 +0 0.1824 +0 0.0951 +0 0.3615 +0 0.1326 +0 0.2227 +0 0.1186 +0 0.1357 +0 0.1698 +0 0.1015 +0 0.2815 +0 0.0687 +0 0.0891 +0 0.0491 +0 0.1486 +0 0.1292 +0 0.0794 +0 0.1418 +0 0.0926 +0 0.0511 +0 0.0594 +0 0.0564 +0 0.1382 +0 0.0819 +0 0.2091 +0 0.0844 +0 0.3202 +0 0.1344 +0 0.0545 +0 0.1013 +0 0.0800 +0 0.2621 +0 0.1783 +0 0.6259 +0 0.1405 +0 0.0996 +0 0.2139 +0 0.0683 +0 0.1200 +0 0.0616 +0 0.1017 +0 0.0802 +0 0.1208 +0 0.0996 +0 0.1056 +0 0.4446 +0 0.1103 +0 0.0366 +0 0.0823 +0 0.1224 +0 0.0524 +0 0.1039 +0 0.1104 +0 0.1031 +1 0.8613 +0 0.0889 +0 0.0684 +0 0.1063 +0 0.1509 +0 0.0716 +0 0.2486 +0 0.0990 +0 0.0845 +0 0.2170 +0 0.0500 +0 0.1118 +0 0.1308 +0 0.1359 +0 0.1874 +0 0.1514 +0 0.1180 +0 0.0682 +0 0.1036 +0 0.4196 +0 0.1091 +0 0.1106 +0 0.0702 +0 0.0852 +0 0.1425 +0 0.1596 +0 0.0650 +0 0.0737 +0 0.1211 +0 0.0566 +0 0.3109 +0 0.3563 +0 0.0756 +0 0.1379 +0 0.2441 +0 0.0863 +0 0.1363 +0 0.1621 +0 0.1302 +0 0.0925 +0 0.1307 +0 0.0845 +0 0.3714 +0 0.2584 +0 0.0448 +0 0.3389 +0 0.1319 +0 0.1849 +0 0.1325 +0 0.1509 +0 0.2192 +0 0.1163 +0 0.2835 +0 0.0733 +0 0.0661 +0 0.2045 +0 0.1085 +0 0.1059 +0 0.0640 +0 0.1918 +0 0.1195 +0 0.1512 +0 0.2465 +0 0.1024 +0 0.1603 +0 0.0481 +0 0.2679 +0 0.1208 +0 0.1653 +0 0.0721 +0 0.2153 +0 0.1110 +0 0.1235 +0 0.0610 +0 0.1536 +0 0.0711 +0 0.1796 +0 0.0543 +0 0.0634 +0 0.0490 +0 0.1495 +0 0.1363 +0 0.1192 +0 0.1044 +0 0.2036 +0 0.0716 +0 0.1013 +0 0.2237 +0 0.0769 +0 0.1774 +0 0.1098 +0 0.2499 +0 0.3186 +0 0.0488 +0 0.0854 +0 0.2150 +0 0.1465 +0 0.2243 +0 0.0580 +0 0.0769 +0 0.1223 +0 0.1628 +0 0.1715 +0 0.0724 +0 0.0765 +0 0.0962 +0 0.0653 +0 0.1256 +0 0.0384 +0 0.1514 +0 0.1399 +0 0.3254 +0 0.0515 +0 0.0956 +0 0.0585 +0 0.0991 +0 0.0955 +0 0.0560 +0 0.1421 +0 0.0970 +0 0.1909 +0 0.2849 +0 0.0571 +0 0.0660 +0 0.2243 +0 0.0596 +0 0.5195 +0 0.1839 +0 0.1650 +0 0.1262 +0 0.1713 +0 0.1669 +0 0.1115 +0 0.2188 +0 0.0663 +0 0.0882 +0 0.0895 +0 0.0555 +0 0.0542 +0 0.0573 +0 0.1328 +0 0.0539 +0 0.0757 +0 0.1075 +0 0.0361 +0 0.2556 +0 0.0396 +0 0.1101 +0 0.1542 +0 0.0765 +1 0.7659 +0 0.1036 +0 0.0630 +0 0.1460 +0 0.1102 +0 0.0706 +0 0.0702 +0 0.2155 +1 0.8361 +0 0.1358 +0 0.1090 +0 0.0948 +0 0.0997 +0 0.0886 +0 0.0784 +0 0.0536 +0 0.2256 +0 0.1827 +0 0.1237 +0 0.1268 +0 0.5588 +0 0.1031 +0 0.0946 +0 0.1072 +0 0.1780 +0 0.1060 +0 0.2967 +0 0.3679 +0 0.0854 +0 0.1977 +0 0.4391 +0 0.1127 +0 0.1683 +0 0.1319 +0 0.0469 +0 0.1719 +0 0.1183 +0 0.1758 +0 0.0817 +0 0.2342 +0 0.0476 +0 0.1057 +0 0.0863 +0 0.1036 +1 0.8381 +0 0.0698 +0 0.1240 +0 0.0518 +0 0.0918 +0 0.1629 +0 0.1738 +0 0.1040 +0 0.0950 +0 0.1010 +0 0.1943 +0 0.0595 +0 0.2160 +0 0.0947 +0 0.1169 +0 0.1722 +0 0.1209 +1 0.7903 +0 0.5612 +0 0.1388 +0 0.0470 +0 0.0593 +0 0.1324 +0 0.1317 +0 0.0748 +0 0.5760 +0 0.0902 +0 0.2345 +0 0.0786 +0 0.1386 +0 0.0885 +0 0.1283 +0 0.0691 +0 0.0713 +0 0.1164 +0 0.0832 +0 0.3489 +0 0.0343 +0 0.1602 +0 0.0513 +0 0.1380 +0 0.0684 +0 0.1495 +0 0.1064 +0 0.0501 +0 0.0715 +0 0.1181 +0 0.0716 +0 0.1736 +0 0.0640 +0 0.4467 +0 0.1169 +0 0.2637 +0 0.0899 +0 0.2270 +0 0.0747 +0 0.2441 +0 0.0580 +0 0.2622 +0 0.1364 +0 0.1271 +0 0.1416 +0 0.0835 +0 0.2674 +0 0.0753 +0 0.0535 +0 0.1441 +0 0.1545 +0 0.0678 +0 0.0777 +0 0.1160 +0 0.0654 +0 0.0851 +0 0.0471 +0 0.0779 +0 0.1024 +0 0.1060 +0 0.7146 +0 0.0977 +0 0.0821 +0 0.0909 +0 0.1044 +0 0.1081 +0 0.0602 +0 0.1668 +0 0.6506 +0 0.1220 +0 0.0667 +0 0.0572 +0 0.1218 +0 0.1185 +0 0.0741 +0 0.0695 +0 0.1637 +0 0.0981 +0 0.0608 +0 0.4179 +0 0.3190 +0 0.0441 +0 0.0735 +0 0.0724 +0 0.0843 +0 0.1104 +0 0.0916 +0 0.0463 +0 0.0928 +0 0.1091 +0 0.0919 +0 0.2186 +0 0.1861 +0 0.0880 +0 0.0752 +0 0.1613 +0 0.0356 +0 0.0767 +0 0.0819 +0 0.0561 +0 0.0518 +0 0.1563 +0 0.0902 +0 0.1317 +0 0.0636 +0 0.4190 +0 0.1817 +0 0.0892 +0 0.3026 +0 0.0714 +0 0.1097 +0 0.0625 +0 0.1197 +0 0.0487 +0 0.0664 +0 0.0837 +0 0.1968 +0 0.1503 +0 0.1427 +0 0.1239 +0 0.1431 +0 0.0609 +0 0.0950 +0 0.0946 +0 0.2207 +0 0.0399 +0 0.0367 +0 0.1032 +0 0.1005 +0 0.0931 +0 0.1091 +0 0.3482 +0 0.1628 +0 0.2555 +0 0.2299 +0 0.0498 +0 0.1348 +1 0.8391 +0 0.2798 +0 0.0954 +0 0.0474 +0 0.1204 +0 0.1510 +0 0.0568 +0 0.0510 +0 0.1428 +0 0.0572 +0 0.1020 +1 0.3762 +0 0.1284 +0 0.0987 +0 0.4309 +0 0.0806 +0 0.1599 +0 0.0829 +0 0.0541 +0 0.3049 +0 0.0585 +0 0.0825 +0 0.0720 +0 0.1154 +0 0.1755 +0 0.2011 +0 0.0717 +0 0.0558 +0 0.0791 +0 0.0811 +0 0.1014 +0 0.1652 +0 0.4189 +0 0.1104 +0 0.0908 +0 0.1897 +0 0.0796 +0 0.0640 +0 0.2155 +0 0.1013 +0 0.1216 +0 0.1054 +0 0.0515 +0 0.0680 +0 0.0559 +0 0.1589 +0 0.2009 +0 0.1200 +0 0.2723 +0 0.0397 +0 0.0621 +0 0.1032 +0 0.5115 +0 0.1855 +0 0.0558 +0 0.0820 +0 0.2149 +0 0.0740 +0 0.2716 +0 0.3030 +1 0.7944 +0 0.2101 +0 0.0708 +0 0.1814 +0 0.0566 +0 0.0470 +0 0.0935 +0 0.0539 +0 0.5910 +0 0.1201 +0 0.0393 +0 0.1216 +0 0.2284 +0 0.3695 +0 0.0617 +0 0.0960 +0 0.1154 +0 0.0905 +0 0.7009 +0 0.1088 +0 0.0794 +0 0.0877 +0 0.0820 +0 0.0410 +0 0.0650 +0 0.0600 +0 0.0816 +0 0.0513 +0 0.0897 +0 0.1368 +0 0.0761 +0 0.0919 +0 0.0988 +0 0.5922 +0 0.0412 +0 0.0486 +0 0.1272 +0 0.2218 +0 0.1114 +0 0.1171 +0 0.2573 +0 0.1136 +0 0.0541 +0 0.1158 +0 0.0658 +0 0.1188 +0 0.0924 +0 0.0427 +0 0.0824 +0 0.0814 +0 0.1134 +0 0.1134 +0 0.0739 +0 0.6073 +0 0.7009 +0 0.0801 +0 0.1255 +0 0.1413 +0 0.1088 +0 0.2500 +0 0.1911 +0 0.1877 +0 0.1490 +0 0.1291 +0 0.1350 +0 0.0533 +0 0.1865 +0 0.0465 +0 0.0857 +0 0.2035 +0 0.1148 +1 0.7760 +0 0.2474 +0 0.0872 +0 0.1050 +0 0.0860 +0 0.0398 +0 0.2507 +0 0.1389 +0 0.0893 +0 0.1629 +0 0.0522 +0 0.1084 +0 0.0878 +0 0.0943 +0 0.0567 +0 0.1763 +0 0.2509 +0 0.0890 +0 0.0273 +0 0.2364 +0 0.1217 +0 0.0394 +0 0.1074 +0 0.1184 +0 0.0812 +0 0.1936 +0 0.2494 +0 0.0579 +0 0.0562 +0 0.0642 +0 0.0530 +0 0.1130 +0 0.1630 +0 0.0741 +0 0.2448 +0 0.0874 +0 0.2199 +0 0.0741 +0 0.2477 +0 0.1556 +0 0.2643 +0 0.1569 +0 0.0829 +0 0.1429 +0 0.1166 +0 0.0653 +0 0.0771 +0 0.0463 +0 0.1573 +0 0.1062 +0 0.1275 +0 0.1758 +0 0.3926 +0 0.1202 +0 0.0835 +0 0.2522 +0 0.0862 +1 0.8397 +0 0.0942 +0 0.0515 +0 0.1257 +0 0.0727 +0 0.0455 +0 0.0951 +0 0.0683 +0 0.1965 +0 0.1518 +0 0.0485 +0 0.2202 +0 0.1478 +0 0.1004 +0 0.0474 +0 0.0893 +0 0.3300 +0 0.0938 +0 0.0663 +0 0.1291 +0 0.0739 +0 0.1697 +0 0.1419 +0 0.1934 +0 0.0482 +0 0.0503 +0 0.1241 +0 0.0728 +0 0.1883 +0 0.1057 +0 0.1043 +0 0.1731 +0 0.1612 +1 0.7516 +0 0.0453 +0 0.2502 +0 0.0471 +0 0.1174 +0 0.2535 +0 0.0653 +0 0.0669 +0 0.1192 +0 0.7311 +0 0.0842 +0 0.2614 +0 0.0868 +0 0.0352 +0 0.1450 +0 0.1798 +0 0.1164 +0 0.0431 +0 0.2597 +0 0.1075 +0 0.2892 +0 0.5910 +0 0.0578 +1 0.7505 +0 0.0973 +0 0.0393 +0 0.0912 +0 0.0952 +1 0.8038 +0 0.2494 +0 0.0546 +0 0.0614 +0 0.2422 +0 0.1367 +0 0.1404 +0 0.1754 +0 0.0539 +0 0.1193 +0 0.2684 +0 0.5772 +0 0.0711 +0 0.0763 +0 0.0740 +0 0.0496 +0 0.0727 +0 0.0890 +0 0.0635 +0 0.1314 +0 0.1647 +0 0.1640 +0 0.0665 +0 0.0641 +0 0.1459 +0 0.1018 +0 0.0704 +0 0.1103 +0 0.1863 +0 0.1850 +0 0.0911 +0 0.1612 +0 0.1021 +0 0.1093 +0 0.6755 +0 0.1529 +0 0.4723 +0 0.0882 +0 0.0774 +0 0.1287 +0 0.0663 +0 0.3657 +0 0.1498 +0 0.0910 +0 0.1147 +0 0.0640 +0 0.1449 +0 0.1738 +0 0.0669 +0 0.1940 +0 0.2119 +1 0.8368 +0 0.0938 +0 0.4414 +0 0.1941 +0 0.1727 +0 0.0446 +0 0.0700 +0 0.1327 +0 0.1491 +0 0.1133 +0 0.0617 +0 0.0761 +0 0.1728 +0 0.2488 +0 0.1513 +0 0.1163 +0 0.0697 +0 0.1434 +0 0.1283 +0 0.1192 +0 0.1896 +0 0.0798 +0 0.0525 +0 0.0577 +0 0.1122 +0 0.0895 +0 0.2839 +0 0.3393 +0 0.1688 +0 0.4955 +0 0.1027 +0 0.0750 +0 0.6466 +0 0.0700 +0 0.1581 +0 0.0316 +0 0.0588 +0 0.2228 +0 0.1171 +0 0.1086 +0 0.0741 +0 0.0852 +0 0.6023 +0 0.2837 +0 0.0448 +0 0.0404 +0 0.0708 +0 0.0715 +0 0.1110 +0 0.0662 +0 0.2539 +0 0.1050 +0 0.0535 +0 0.0847 +0 0.1214 +0 0.0978 +0 0.2030 +0 0.0722 +0 0.1226 +0 0.1151 +0 0.3603 +0 0.1157 +0 0.0396 +0 0.1008 +0 0.0502 +0 0.2509 +0 0.0713 +0 0.0924 +0 0.1778 +0 0.0805 +0 0.0718 +0 0.0333 +0 0.1249 +0 0.1754 +0 0.0525 +0 0.2478 +0 0.0890 +0 0.0558 +0 0.0991 +0 0.0546 +0 0.1023 +0 0.0862 +0 0.1846 +0 0.1865 +0 0.2091 +0 0.2308 +0 0.0780 +0 0.1350 +0 0.0653 +0 0.0505 +0 0.0491 +0 0.1637 +0 0.1639 +0 0.3111 +0 0.4629 +0 0.1134 +0 0.2311 +0 0.0525 +0 0.1621 +0 0.2432 +0 0.0545 +0 0.1288 +0 0.1399 +0 0.0718 +0 0.1986 +0 0.0594 +1 0.8753 +0 0.0672 +0 0.0956 +0 0.1567 +0 0.0406 +0 0.0771 +0 0.0663 +0 0.2740 +0 0.0492 +0 0.0698 +0 0.4445 +0 0.1830 +0 0.2221 +0 0.0521 +0 0.1789 +0 0.0928 +0 0.1292 +0 0.1231 +0 0.0707 +0 0.1672 +0 0.1490 +0 0.0506 +0 0.4981 +0 0.2064 +0 0.0441 +0 0.0738 +0 0.1028 +0 0.2326 +0 0.2167 +0 0.1178 +0 0.0973 +0 0.1569 +0 0.0662 +0 0.1692 +0 0.0886 +0 0.0670 +0 0.0742 +0 0.4833 +0 0.1875 +0 0.1298 +0 0.0962 +0 0.0709 +0 0.1105 +0 0.0810 +0 0.1053 +0 0.0898 +0 0.0847 +0 0.2411 +0 0.0472 +0 0.0472 +0 0.0842 +0 0.0850 +0 0.1080 +0 0.0709 +0 0.0913 +0 0.2711 +0 0.1240 +0 0.0883 +0 0.0760 +0 0.1273 +0 0.1015 +0 0.1053 +0 0.1558 +0 0.2336 +0 0.0779 +0 0.2931 +0 0.1019 +0 0.0883 +0 0.0554 +0 0.2902 +0 0.0729 +0 0.1024 +0 0.0923 +0 0.1032 +0 0.1177 +0 0.0915 +0 0.2581 +0 0.1549 +0 0.6090 +1 0.8360 +0 0.1585 +0 0.2391 +0 0.1257 +0 0.1041 +0 0.1040 +0 0.1162 +0 0.1919 +0 0.1314 +0 0.2103 +0 0.0938 +0 0.0356 +0 0.0785 +0 0.0612 +0 0.2582 +0 0.0846 +0 0.1051 +0 0.0945 +0 0.5156 +0 0.2726 +0 0.0621 +0 0.0802 +0 0.1028 +0 0.1123 +0 0.1917 +0 0.0521 +0 0.0950 +0 0.4659 +0 0.2032 +0 0.1407 +0 0.0884 +0 0.0597 +0 0.0918 +0 0.0583 +0 0.0891 +0 0.2148 +0 0.0450 +0 0.1884 +0 0.0790 +0 0.1171 +0 0.1584 +0 0.0787 +0 0.2193 +0 0.2362 +0 0.3828 +0 0.0751 +0 0.1143 +0 0.0880 +0 0.0398 +0 0.1594 +0 0.0612 +0 0.1226 +0 0.0817 +0 0.0366 +0 0.2416 +0 0.2392 +0 0.1236 +0 0.1781 +0 0.0887 +0 0.2223 +0 0.2398 +0 0.0700 +0 0.0914 +0 0.0881 +0 0.0876 +0 0.2233 +0 0.0801 +0 0.0716 +0 0.1466 +0 0.1196 +0 0.0891 +0 0.1020 +1 0.8237 +0 0.0534 +0 0.2510 +0 0.0766 +0 0.0631 +0 0.3050 +0 0.5796 +0 0.0412 +0 0.0881 +0 0.1162 +0 0.0496 +0 0.1986 +0 0.1258 +0 0.0736 +0 0.0885 +0 0.1315 +0 0.0823 +0 0.0785 +0 0.0866 +0 0.1235 +0 0.3565 +0 0.0823 +0 0.1378 +0 0.0819 +0 0.1264 +0 0.1164 +0 0.0468 +0 0.0713 +0 0.1318 +0 0.0732 +0 0.0503 +0 0.2078 +0 0.1146 +0 0.0722 +0 0.1400 +0 0.3552 +0 0.0495 +0 0.1373 +0 0.1222 +0 0.2168 +0 0.1340 +0 0.0566 +0 0.1104 +0 0.0679 +0 0.0867 +0 0.1735 +0 0.0610 +0 0.1087 +1 0.7539 +0 0.1303 +0 0.0496 +0 0.1674 +0 0.2220 +0 0.0792 +0 0.0426 +0 0.3870 +0 0.0677 +0 0.0624 +0 0.1661 +0 0.2432 +0 0.1481 +0 0.1393 +0 0.0557 +0 0.1080 +0 0.1033 +0 0.1575 +0 0.0535 +0 0.0914 +0 0.0893 +0 0.2037 +0 0.0944 +0 0.1157 +0 0.1238 +0 0.0941 +0 0.0899 +0 0.0510 +0 0.1115 +0 0.1498 +0 0.1484 +0 0.0745 +0 0.0866 +0 0.1990 +0 0.1196 +0 0.2115 +0 0.0684 +0 0.1078 +0 0.1084 +0 0.1091 +0 0.1952 +0 0.1695 +0 0.2046 +0 0.1173 +0 0.3403 +0 0.1097 +0 0.0905 +0 0.1099 +0 0.0797 +0 0.0549 +0 0.2745 +1 0.8253 +0 0.0829 +0 0.1547 +0 0.0906 +0 0.2477 +0 0.0911 +0 0.0710 +0 0.2297 +0 0.7131 +0 0.2321 +0 0.0880 +0 0.0352 +0 0.1971 +0 0.1391 +0 0.5760 +0 0.0747 +0 0.1552 +0 0.0768 +0 0.0478 +0 0.1405 +0 0.0932 +0 0.0905 +0 0.0471 +0 0.1193 +0 0.0833 +0 0.2274 +0 0.1226 +0 0.2440 +0 0.0729 +0 0.1891 +0 0.0855 +0 0.0675 +0 0.0953 +0 0.1020 +0 0.1613 +0 0.0849 +0 0.0926 +0 0.1512 +0 0.1276 +0 0.1328 +0 0.3162 +1 0.7740 +0 0.1988 +0 0.2765 +0 0.1548 +0 0.1188 +0 0.0842 +1 0.8029 +0 0.0791 +0 0.0880 +0 0.2011 +0 0.0838 +0 0.0897 +0 0.1602 +0 0.2291 +0 0.1012 +0 0.1421 +0 0.1229 +0 0.0951 +0 0.0572 +0 0.2877 +0 0.0721 +0 0.1710 +0 0.1198 +0 0.1584 +0 0.1290 +1 0.8062 +0 0.0601 +0 0.0727 +0 0.1717 +0 0.0851 +0 0.1081 +0 0.0890 +0 0.1157 +0 0.0616 +0 0.1264 +0 0.1546 +0 0.0960 +0 0.0892 +0 0.0932 +0 0.1123 +0 0.0871 +0 0.2084 +0 0.0460 +0 0.1548 +0 0.1174 +0 0.0655 +0 0.0425 +0 0.1090 +0 0.0759 +0 0.0657 +0 0.2115 +0 0.7279 +0 0.1943 +0 0.2249 +0 0.0513 +0 0.0856 +0 0.1550 +0 0.2121 +0 0.5735 +0 0.1364 +0 0.1315 +0 0.1466 +0 0.4862 +0 0.1576 +0 0.1547 +0 0.3550 +0 0.0897 +0 0.1149 +0 0.0662 +0 0.1602 +0 0.0998 +0 0.1147 +0 0.2388 +0 0.1670 +0 0.1662 +0 0.1180 +0 0.2261 +0 0.1344 +0 0.1308 +0 0.1118 +0 0.1110 +0 0.0613 +0 0.2915 +0 0.2778 +0 0.1785 +0 0.0632 +0 0.0965 +0 0.0718 +0 0.1210 +0 0.1346 +0 0.0425 +0 0.0752 +0 0.0596 +0 0.2515 +0 0.0451 +0 0.0674 +0 0.1081 +0 0.0860 +0 0.3976 +0 0.0719 +0 0.1370 +0 0.2584 +0 0.1012 +0 0.0977 +0 0.0568 +0 0.2498 +0 0.2334 +0 0.0605 +0 0.1367 +0 0.3445 +0 0.1832 +0 0.1131 +0 0.0930 +0 0.1101 +0 0.6637 +0 0.1088 +0 0.1281 +0 0.1070 +0 0.0685 +0 0.1141 +0 0.2637 +0 0.0563 +0 0.0603 +0 0.2329 +0 0.0802 +0 0.1152 +0 0.1446 +0 0.2742 +0 0.0676 +0 0.1024 +0 0.3505 +0 0.2490 +0 0.0558 +0 0.4647 +0 0.1818 +0 0.0522 +0 0.0563 +0 0.0631 +0 0.0883 +0 0.0982 +0 0.1697 +0 0.1878 +0 0.1401 +0 0.0674 +0 0.0594 +1 0.8179 +0 0.0566 +0 0.1704 +0 0.7325 +0 0.2314 +0 0.0790 +0 0.0904 +0 0.1240 +0 0.0843 +0 0.1274 +0 0.1981 +0 0.0677 +0 0.0628 +0 0.0537 +0 0.2022 +0 0.1103 +0 0.1397 +0 0.0804 +0 0.0574 +0 0.1366 +0 0.1013 +0 0.1790 +0 0.0688 +0 0.3068 +0 0.1224 +0 0.0628 +0 0.0515 +0 0.0746 +0 0.1609 +0 0.1001 +0 0.0930 +0 0.2037 +0 0.0331 +0 0.0661 +0 0.1033 +0 0.4444 +0 0.1505 +0 0.0575 +0 0.0667 +0 0.1603 +0 0.3009 +0 0.2558 +0 0.1627 +0 0.1791 +0 0.3000 +0 0.3725 +0 0.0533 +0 0.0428 +0 0.0734 +0 0.0585 +0 0.2226 +0 0.5594 +0 0.0437 +0 0.0996 +0 0.0703 +0 0.0786 +0 0.0479 +0 0.0450 +0 0.0502 +0 0.0592 +0 0.0421 +0 0.0629 +0 0.1439 +0 0.6348 +0 0.1794 +0 0.0400 +1 0.7545 +0 0.1098 +0 0.1663 +0 0.1367 +0 0.1482 +0 0.1159 +0 0.0959 +0 0.1370 +0 0.0863 +0 0.1961 +0 0.1875 +0 0.1647 +0 0.0695 +1 0.7731 +0 0.1936 +0 0.6893 +0 0.2016 +0 0.0546 +0 0.3483 +0 0.0595 +0 0.2609 +0 0.1582 +0 0.1198 +0 0.1132 +0 0.0937 +0 0.2294 +0 0.0945 +0 0.0783 +0 0.2219 +0 0.1061 +0 0.1359 +0 0.0928 +0 0.1329 +0 0.1273 +0 0.0520 +0 0.0803 +0 0.0699 +0 0.1390 +0 0.1037 +0 0.0486 +0 0.0592 +0 0.0762 +0 0.1191 +0 0.0722 +0 0.0568 +0 0.0546 +0 0.0963 +0 0.0621 +0 0.2202 +0 0.1278 +0 0.0422 +0 0.1346 +0 0.0835 +0 0.1311 +0 0.0826 +0 0.0821 +0 0.2787 +0 0.0518 +0 0.0559 +0 0.2779 +0 0.0882 +0 0.1338 +0 0.1244 +0 0.0419 +1 0.7985 +0 0.2929 +0 0.1084 +0 0.0602 +0 0.0472 +0 0.1087 +0 0.0619 +0 0.0800 +0 0.2191 +0 0.2007 +0 0.0754 +0 0.0296 +0 0.2267 +0 0.1608 +0 0.1673 +0 0.2113 +0 0.4137 +0 0.0513 +0 0.3950 +0 0.0991 +0 0.0503 +0 0.3046 +0 0.2818 +0 0.1330 +0 0.0748 +0 0.0728 +0 0.1736 +0 0.0443 +0 0.0698 +0 0.2103 +0 0.0936 +0 0.1158 +0 0.0641 +0 0.0914 +0 0.0867 +0 0.0635 +0 0.0763 +0 0.1245 +0 0.0386 +0 0.1312 +0 0.1007 +0 0.0773 +0 0.0595 +0 0.1290 +0 0.0844 +0 0.0542 +0 0.1097 +0 0.0804 +0 0.1206 +0 0.0898 +0 0.0631 +0 0.0784 +0 0.0600 +0 0.0928 +1 0.8299 +0 0.5594 +0 0.1003 +0 0.1516 +0 0.0946 +0 0.1602 +0 0.1434 +0 0.3022 +0 0.1011 +0 0.0869 +0 0.1361 +0 0.1915 +0 0.1996 +0 0.0921 +0 0.0932 +0 0.1407 +0 0.0969 +0 0.2019 +0 0.2785 +0 0.0546 +0 0.0433 +0 0.0640 +0 0.0807 +0 0.3298 +0 0.2845 +0 0.1125 +0 0.3746 +0 0.6942 +0 0.0385 +0 0.1830 +0 0.2196 +0 0.0859 +0 0.0586 +0 0.1329 +0 0.1683 +0 0.0871 +0 0.1429 +0 0.1720 +0 0.1758 +0 0.0693 +0 0.0708 +0 0.0824 +0 0.0699 +0 0.1148 +0 0.1155 +0 0.1081 +0 0.1340 +0 0.0761 +0 0.2046 +0 0.2759 +0 0.2066 +0 0.1558 +0 0.0629 +0 0.0949 +0 0.2935 +0 0.2350 +0 0.2041 +0 0.4701 +0 0.0531 +0 0.1690 +0 0.1074 +0 0.1539 +0 0.0628 +0 0.1215 +0 0.0483 +0 0.1064 +0 0.0857 +0 0.0660 +0 0.1243 +0 0.1021 +0 0.1559 +0 0.0901 +0 0.0673 +0 0.1082 +0 0.1021 +0 0.0784 +0 0.0968 +0 0.0648 +0 0.0696 +0 0.2101 +0 0.0545 +0 0.0880 +0 0.0677 +0 0.0864 +0 0.0639 +0 0.1250 +0 0.1163 +0 0.1196 +0 0.0752 +0 0.2108 +0 0.0891 +0 0.0558 +0 0.1131 +0 0.0439 +0 0.0490 +0 0.0843 +0 0.4810 +0 0.0604 +0 0.0832 +0 0.2107 +0 0.1469 +0 0.0394 +0 0.7225 +0 0.0665 +0 0.0978 +0 0.0640 +0 0.1062 +0 0.1439 +0 0.2131 +0 0.2471 +0 0.0827 +0 0.7380 +0 0.1248 +0 0.2873 +0 0.0856 +0 0.1169 +0 0.0709 +0 0.1380 +0 0.0794 +0 0.2072 +0 0.2115 +0 0.0400 +0 0.0757 +0 0.1852 +0 0.0380 +0 0.0579 +0 0.1307 +0 0.0920 +0 0.0779 +0 0.2000 +0 0.2338 +0 0.0966 +0 0.0886 +0 0.1918 +0 0.0965 +0 0.1637 +0 0.1767 +0 0.4609 +0 0.5980 +0 0.0664 +0 0.0658 +0 0.0958 +0 0.0551 +0 0.0419 +0 0.7184 +0 0.0564 +0 0.1590 +0 0.0516 +0 0.0587 +0 0.1340 +0 0.1682 +0 0.0769 +0 0.1028 +0 0.0855 +0 0.0517 +0 0.1664 +0 0.2746 +0 0.1703 +0 0.1195 +0 0.0651 +0 0.0860 +0 0.0946 +0 0.1517 +0 0.4427 +0 0.1068 +0 0.4506 +0 0.1104 +0 0.0750 +0 0.0803 +0 0.0919 +0 0.1312 +0 0.3020 +0 0.0905 +0 0.0480 +0 0.1254 +0 0.2057 +0 0.0850 +0 0.1757 +0 0.0440 +0 0.1606 +0 0.0969 +0 0.0296 +0 0.0603 +0 0.0500 +0 0.0581 +0 0.0313 +0 0.1312 +0 0.1373 +0 0.2036 +0 0.1078 +0 0.2789 +0 0.1088 +0 0.2387 +0 0.3728 +0 0.0728 +0 0.0759 +0 0.1232 +0 0.0530 +0 0.0492 +0 0.1464 +0 0.0411 +0 0.0658 +0 0.1996 +0 0.1408 +0 0.0725 +0 0.3198 +0 0.2001 +0 0.0985 +0 0.0524 +0 0.0773 +0 0.0981 +0 0.0819 +0 0.3431 +0 0.7356 +0 0.2947 +0 0.0973 +0 0.0399 +0 0.0986 +0 0.3634 +0 0.2148 +0 0.1000 +0 0.0763 +0 0.1370 +0 0.0966 +1 0.8448 +0 0.2711 +0 0.0981 +0 0.0690 +0 0.0698 +0 0.0830 +0 0.0938 +0 0.1702 +0 0.0855 +0 0.0607 +0 0.0731 +0 0.1979 +0 0.1627 +0 0.1774 +0 0.0384 +0 0.3516 +0 0.1641 +0 0.1076 +0 0.0742 +0 0.6911 +0 0.1308 +0 0.1165 +0 0.2988 +0 0.0567 +0 0.0639 +0 0.0630 +0 0.0785 +0 0.1604 +0 0.2477 +0 0.2410 +0 0.1444 +0 0.1452 +0 0.0866 +0 0.1537 +0 0.0907 +0 0.1771 +0 0.0429 +0 0.0881 +0 0.0695 +0 0.2684 +0 0.1134 +0 0.0673 +0 0.2750 +0 0.0748 +0 0.0887 +0 0.1942 +0 0.0955 +0 0.1208 +0 0.1018 +0 0.1455 +0 0.1181 +0 0.0586 +0 0.2112 +0 0.1433 +0 0.1626 +0 0.1055 +0 0.1097 +0 0.0631 +0 0.0841 +0 0.1187 +0 0.1951 +0 0.0641 +0 0.0644 +0 0.0500 +0 0.1413 +0 0.0633 +0 0.1953 +0 0.1548 +0 0.0650 +1 0.7718 +0 0.1885 +0 0.2044 +0 0.0749 +0 0.3262 +0 0.0898 +0 0.0893 +0 0.7423 +0 0.0709 +0 0.0900 +0 0.1899 +0 0.4556 +0 0.2021 +0 0.1308 +0 0.0651 +0 0.0631 +0 0.0949 +0 0.0482 +0 0.1234 +0 0.1216 +0 0.4644 +0 0.0844 +0 0.0940 +0 0.1516 +0 0.1756 +0 0.1803 +0 0.0575 +0 0.2911 +0 0.6402 +0 0.0855 +0 0.0791 +0 0.1784 +0 0.0790 +0 0.5746 +0 0.1109 +0 0.0640 +0 0.1000 +0 0.0881 +1 0.7630 +0 0.0973 +0 0.0597 +0 0.1611 +0 0.2526 +0 0.0961 +0 0.4897 +0 0.0931 +0 0.0997 +0 0.0433 +0 0.1077 +0 0.1222 +0 0.0842 +0 0.0495 +0 0.1004 +0 0.1094 +0 0.6457 +0 0.0658 +0 0.2603 +0 0.1453 +1 0.7771 +0 0.0646 +0 0.1688 +0 0.1546 +0 0.3477 +0 0.0688 +0 0.0707 +0 0.0591 +0 0.0636 +0 0.3038 +0 0.0636 +0 0.0453 +0 0.1056 +0 0.0603 +1 0.4204 +0 0.1194 +0 0.0561 +0 0.0371 +0 0.2256 +0 0.1358 +0 0.0461 +0 0.0466 +0 0.0711 +0 0.0768 +0 0.0501 +0 0.0884 +0 0.0934 +0 0.1229 +0 0.2182 +0 0.0824 +0 0.0382 +0 0.1280 +0 0.1554 +0 0.1483 +0 0.2377 +0 0.1088 +0 0.5641 +0 0.1071 +0 0.0761 +0 0.0546 +0 0.1865 +0 0.2146 +0 0.0756 +0 0.1498 +0 0.0879 +0 0.2129 +0 0.2550 +0 0.0683 +0 0.1042 +0 0.1224 +0 0.1596 +0 0.0495 +0 0.2222 +0 0.0681 +0 0.0926 +0 0.2951 +0 0.0687 +0 0.0922 +0 0.0702 +0 0.0975 +0 0.0616 +0 0.1719 +0 0.1334 +0 0.1240 +0 0.2497 +0 0.0783 +0 0.0670 +0 0.0462 +0 0.0407 +0 0.1000 +0 0.1956 +0 0.0971 +0 0.1358 +0 0.0659 +0 0.1110 +0 0.2090 +0 0.0902 +0 0.2151 +0 0.3632 +0 0.1656 +0 0.1457 +0 0.0842 +0 0.1111 +0 0.1061 +0 0.0581 +0 0.0462 +0 0.0941 +0 0.0823 +0 0.0864 +0 0.0856 +0 0.3195 +0 0.2077 +0 0.0595 +0 0.3782 +0 0.0818 +0 0.1226 +0 0.0900 +0 0.1362 +0 0.1080 +0 0.0438 +0 0.0914 +0 0.0523 +0 0.0655 +0 0.1157 +0 0.1082 +0 0.0888 +0 0.0936 +0 0.0453 +0 0.1052 +0 0.0888 +0 0.0909 +0 0.0555 +0 0.3264 +0 0.0410 +0 0.3256 +0 0.0498 +0 0.2115 +0 0.0619 +0 0.0914 +0 0.0604 +0 0.0810 +0 0.0615 +0 0.0677 +0 0.1330 +0 0.0698 +0 0.1179 +0 0.3004 +0 0.0742 +0 0.0848 +0 0.4622 +0 0.2603 +0 0.0690 +0 0.1000 +0 0.0662 +0 0.1155 +0 0.1467 +0 0.0922 +0 0.0695 +0 0.0365 +0 0.0586 +0 0.1949 +0 0.1004 +0 0.0434 +0 0.1725 +0 0.2331 +0 0.1175 +0 0.0849 +0 0.1256 +0 0.0555 +0 0.1397 +0 0.1139 +0 0.6526 +0 0.1337 +0 0.0952 +0 0.0434 +0 0.2217 +0 0.0756 +0 0.3519 +0 0.1263 +0 0.1541 +0 0.0894 +0 0.0612 +0 0.1518 +0 0.0963 +0 0.0823 +0 0.1117 +0 0.1407 +0 0.0616 +0 0.0534 +0 0.1292 +0 0.2201 +0 0.1212 +0 0.1057 +0 0.2136 +0 0.2455 +0 0.0444 +0 0.0820 +1 0.8276 +0 0.0868 +0 0.3210 +0 0.4027 +1 0.8055 +0 0.1739 +0 0.0721 +0 0.2306 +0 0.0384 +1 0.8468 +0 0.0938 +0 0.1049 +0 0.1690 +0 0.1829 +0 0.1326 +0 0.1570 +1 0.8042 +0 0.0397 +0 0.0536 +0 0.0716 +0 0.1264 +0 0.1506 +0 0.1477 +0 0.1986 +0 0.1225 +0 0.1801 +0 0.0704 +0 0.0843 +0 0.0628 +1 0.8228 +0 0.1085 +0 0.0850 +0 0.1745 +0 0.2594 +0 0.1129 +0 0.0684 +0 0.2643 +0 0.1333 +0 0.2344 +0 0.0877 +0 0.4417 +0 0.0877 +0 0.0529 +0 0.1050 +0 0.1459 +0 0.0570 +0 0.2589 +0 0.1460 +0 0.0678 +0 0.3880 +0 0.0384 +0 0.1674 +0 0.0595 +0 0.2376 +0 0.0931 +0 0.0467 +0 0.1281 +1 0.5458 +0 0.1056 +0 0.1102 +0 0.0677 +0 0.2087 +0 0.1562 +0 0.0534 +0 0.0671 +0 0.0879 +0 0.1032 +0 0.4806 +0 0.0330 +0 0.1281 +0 0.0701 +0 0.0643 +0 0.0760 +0 0.0797 +0 0.1020 +0 0.0793 +0 0.1286 +0 0.1260 +0 0.1096 +0 0.0678 +0 0.1135 +0 0.0736 +0 0.1319 +0 0.1399 +0 0.1239 +0 0.0596 +0 0.0922 +0 0.0937 +0 0.0811 +0 0.0914 +0 0.1282 +0 0.1239 +0 0.0799 +0 0.0819 +0 0.7118 +0 0.0766 +0 0.0933 +0 0.0876 +0 0.0972 +0 0.3938 +0 0.1778 +0 0.2009 +0 0.0870 +0 0.0358 +0 0.6024 +0 0.7458 +0 0.1340 +0 0.1610 +0 0.0828 +0 0.0881 +0 0.1227 +0 0.1429 +0 0.2012 +0 0.0778 +0 0.0449 +0 0.0729 +0 0.1122 +0 0.0554 +0 0.0708 +0 0.0542 +0 0.0832 +0 0.2173 +0 0.0962 +0 0.1060 +0 0.0664 +0 0.1506 +0 0.0665 +0 0.1550 +0 0.1448 +0 0.2328 +0 0.0971 +0 0.1863 +0 0.0380 +0 0.0745 +0 0.1098 +0 0.1152 +0 0.2486 +0 0.1984 +0 0.0484 +0 0.2027 +0 0.1172 +0 0.1281 +0 0.1086 +0 0.0658 +0 0.1041 +0 0.0698 +0 0.0473 +0 0.0772 +0 0.1041 +0 0.1218 +0 0.3884 +0 0.2577 +0 0.0511 +0 0.0501 +0 0.1734 +0 0.1532 +0 0.1138 +0 0.0915 +0 0.0827 +0 0.1190 +0 0.2029 +0 0.0673 +0 0.0393 +0 0.1745 +0 0.1336 +0 0.0902 +0 0.1059 +0 0.1676 +0 0.0753 +0 0.0967 +0 0.2533 +0 0.5397 +0 0.0465 +0 0.0649 +0 0.2420 +0 0.0681 +1 0.8845 +0 0.1232 +0 0.0564 +0 0.0656 +0 0.3298 +0 0.1352 +0 0.0902 +0 0.0495 +1 0.8319 +0 0.1362 +0 0.1965 +0 0.0825 +0 0.7428 +0 0.0960 +0 0.0855 +0 0.0929 +0 0.3909 +0 0.1470 +0 0.0631 +1 0.8386 +0 0.1824 +0 0.1111 +0 0.0691 +0 0.0445 +0 0.1127 +0 0.2178 +0 0.1912 +0 0.0595 +0 0.0917 +0 0.0485 +0 0.0532 +0 0.0675 +0 0.0582 +0 0.1496 +0 0.0364 +0 0.0765 +1 0.7756 +0 0.0853 +0 0.5535 +0 0.0866 +0 0.2622 +0 0.1926 +0 0.0798 +0 0.1971 +0 0.1010 +0 0.0547 +0 0.0569 +0 0.1084 +0 0.0727 +0 0.0588 +0 0.2443 +0 0.0814 +0 0.0571 +0 0.1398 +0 0.0488 +0 0.0801 +0 0.1017 +0 0.0767 +0 0.2075 +0 0.2824 +0 0.0806 +0 0.0909 +0 0.1060 +0 0.1223 +0 0.0747 +0 0.3616 +0 0.1687 +0 0.0362 +0 0.4986 +0 0.1028 +0 0.0590 +0 0.1326 +0 0.1502 +0 0.3758 +1 0.8190 +0 0.5894 +0 0.0743 +0 0.1509 +0 0.0905 +0 0.0906 +0 0.1079 +0 0.1351 +0 0.1600 +0 0.1997 +0 0.1286 +0 0.0825 +0 0.0842 +0 0.0745 +0 0.3940 +0 0.0761 +0 0.0973 +0 0.1290 +0 0.2012 +0 0.0842 +0 0.1008 +0 0.1117 +1 0.7652 +0 0.0700 +0 0.1804 +0 0.2503 +0 0.2566 +0 0.1225 +0 0.0698 +0 0.2272 +0 0.2218 +0 0.2003 +0 0.0785 +0 0.1762 +0 0.0436 +0 0.1103 +0 0.1351 +0 0.0836 +0 0.2153 +0 0.0744 +0 0.1087 +0 0.1214 +0 0.6470 +0 0.6270 +0 0.1085 +0 0.0962 +0 0.0997 +0 0.0627 +0 0.3079 +0 0.0520 +0 0.2498 +0 0.1684 +0 0.0998 +0 0.0941 +0 0.1136 +0 0.1753 +0 0.1752 +0 0.0900 +0 0.2007 +0 0.2808 +0 0.1401 +0 0.1306 +0 0.1594 +0 0.0840 +0 0.1611 +0 0.1417 +0 0.0967 +0 0.0506 +0 0.0496 +0 0.1557 +0 0.0594 +0 0.2698 +0 0.1651 +0 0.1193 +0 0.1010 +0 0.0998 +0 0.1197 +0 0.5076 +0 0.1037 +0 0.1636 +0 0.0962 +0 0.0431 +0 0.0850 +0 0.0634 +0 0.0856 +0 0.1361 +0 0.0993 +0 0.1530 +0 0.1153 +0 0.0855 +0 0.1183 +0 0.0914 +0 0.0564 +0 0.1177 +0 0.1030 +0 0.1027 +0 0.0381 +0 0.1079 +0 0.0666 +0 0.1894 +0 0.5504 +0 0.1042 +0 0.1281 +0 0.1307 +0 0.1707 +0 0.2585 +0 0.1307 +0 0.0558 +0 0.1523 +0 0.0794 +0 0.0800 +0 0.0637 +0 0.3077 +0 0.0887 +0 0.1341 +0 0.1126 +0 0.1576 +0 0.2947 +0 0.5906 +0 0.0762 +0 0.1027 +0 0.0987 +0 0.0535 +0 0.1047 +0 0.1559 +0 0.3875 +0 0.0705 +0 0.0732 +0 0.0595 +1 0.0485 +0 0.1389 +1 0.7803 +0 0.1183 +0 0.1088 +0 0.2395 +0 0.1354 +0 0.0464 +0 0.1415 +0 0.1975 +0 0.1427 +0 0.5565 +0 0.1113 +0 0.2235 +0 0.0688 +0 0.0733 +0 0.0498 +0 0.1403 +1 0.8728 +0 0.1249 +0 0.1604 +0 0.0648 +0 0.1645 +0 0.0680 +0 0.1089 +0 0.1201 +0 0.0465 +1 0.7965 +0 0.1677 +0 0.1451 +0 0.0631 +0 0.0353 +0 0.1490 +0 0.0496 +0 0.1963 +0 0.0644 +0 0.0633 +0 0.1170 +0 0.0894 +0 0.1951 +0 0.2326 +0 0.1646 +0 0.0778 +0 0.0865 +0 0.2698 +0 0.2607 +0 0.1046 +0 0.1048 +0 0.1185 +0 0.1520 +0 0.1176 +1 0.8456 +0 0.1034 +0 0.1402 +0 0.1000 +0 0.1063 +0 0.1180 +0 0.1480 +0 0.0867 +0 0.1860 +0 0.0420 +0 0.1589 +0 0.2541 +0 0.1909 +0 0.1732 +0 0.1348 +0 0.0529 +0 0.0766 +0 0.0581 +0 0.2177 +0 0.1141 +0 0.1718 +0 0.1279 +0 0.1362 +0 0.0478 +0 0.0690 +0 0.0674 +0 0.0927 +0 0.1280 +0 0.0649 +0 0.1405 +0 0.2490 +0 0.0749 +0 0.1578 +0 0.0461 +0 0.1095 +0 0.0843 +0 0.1714 +0 0.0909 +0 0.0461 +0 0.1097 +1 0.8696 +0 0.2472 +0 0.1489 +0 0.1542 +0 0.0408 +0 0.7191 +0 0.7163 +0 0.0504 +0 0.0486 +0 0.1007 +0 0.1861 +0 0.4703 +0 0.1487 +0 0.1661 +0 0.0760 +0 0.1337 +0 0.1143 +0 0.1462 +0 0.0973 +0 0.0715 +0 0.0996 +0 0.0784 +0 0.0622 +0 0.0835 +0 0.1137 +0 0.0546 +0 0.1404 +0 0.0790 +0 0.1374 +0 0.0904 +0 0.1433 +0 0.0440 +0 0.1002 +0 0.2140 +0 0.0592 +0 0.1005 +0 0.1206 +0 0.0425 +0 0.1866 +0 0.3026 +0 0.1009 +0 0.1443 +0 0.0592 +0 0.1911 +0 0.2283 +0 0.0690 +0 0.0644 +0 0.0667 +0 0.0621 +0 0.3605 +0 0.0674 +0 0.0735 +0 0.1300 +0 0.0517 +0 0.2018 +0 0.2437 +0 0.0581 +0 0.2990 +0 0.7038 +0 0.1295 +0 0.1417 +0 0.0339 +0 0.6931 +0 0.1312 +0 0.4102 +0 0.0512 +0 0.1017 +0 0.0479 +0 0.1234 +0 0.2394 +0 0.1050 +0 0.3883 +0 0.0716 +0 0.0944 +0 0.1532 +0 0.0802 +0 0.0842 +0 0.1748 +0 0.0884 +0 0.1556 +0 0.0724 +0 0.1187 +0 0.2914 +0 0.1332 +0 0.0579 +0 0.1045 +0 0.0555 +0 0.0859 +0 0.1418 +0 0.0517 +0 0.5710 +0 0.0513 +0 0.3844 +0 0.0913 +0 0.0532 +0 0.0547 +0 0.0783 +0 0.0722 +0 0.0563 +0 0.0727 +0 0.1376 +0 0.0794 +0 0.0552 +0 0.0427 +0 0.0994 +0 0.1046 +0 0.1585 +0 0.1432 +0 0.0746 +0 0.0731 +0 0.0582 +0 0.0897 +0 0.0715 +0 0.2010 +0 0.1652 +0 0.2307 +0 0.0734 +0 0.1286 +0 0.1104 +0 0.1633 +0 0.1429 +0 0.1560 +0 0.0728 +0 0.0844 +0 0.1065 +0 0.1389 +0 0.6159 +0 0.0626 +0 0.2147 +0 0.1231 +0 0.0951 +0 0.1346 +0 0.0538 +0 0.2502 +0 0.0488 +0 0.0515 +0 0.0675 +0 0.2361 +0 0.0909 +0 0.3637 +0 0.7004 +0 0.0577 +0 0.0913 +0 0.0791 +0 0.1770 +0 0.1511 +0 0.0697 +0 0.1054 +0 0.1472 +0 0.1027 +0 0.1981 +0 0.0608 +0 0.0837 +0 0.1098 +0 0.6994 +0 0.0392 +0 0.0947 +0 0.0451 +0 0.0525 +0 0.0848 +0 0.0841 +0 0.0659 +0 0.1269 +0 0.0631 +0 0.1926 +0 0.1103 +0 0.0515 +0 0.1354 +0 0.1569 +0 0.0852 +0 0.0827 +0 0.1418 +0 0.0621 +0 0.2333 +0 0.0542 +0 0.1177 +0 0.0619 +0 0.0624 +0 0.0805 +0 0.2706 +0 0.0643 +0 0.1053 +0 0.0409 +0 0.0475 +0 0.0662 +0 0.6580 +0 0.1144 +0 0.1158 +0 0.1479 +0 0.0948 +0 0.1086 +0 0.0693 +0 0.0964 +0 0.0894 +0 0.0651 +0 0.0430 +0 0.0969 +0 0.0707 +0 0.0801 +0 0.0790 +1 0.8077 +1 0.8145 +0 0.1150 +0 0.2865 +0 0.6632 +0 0.1449 +0 0.1759 +0 0.0552 +0 0.2683 +0 0.1039 +0 0.0510 +0 0.1946 +0 0.0717 +0 0.1145 +0 0.1468 +0 0.1691 +0 0.1010 +0 0.0364 +0 0.0944 +0 0.0378 +0 0.0540 +0 0.1005 +0 0.0900 +0 0.2128 +0 0.1219 +0 0.0885 +0 0.2419 +0 0.1052 +0 0.0512 +1 0.8795 +0 0.1082 +0 0.0506 +0 0.0867 +0 0.1989 +0 0.7434 +0 0.0849 +0 0.0619 +0 0.0991 +0 0.3244 +0 0.0899 +0 0.1543 +0 0.1809 +0 0.1779 +0 0.0865 +0 0.0676 +0 0.0514 +0 0.1087 +0 0.1136 +0 0.0879 +0 0.1508 +0 0.0946 +0 0.2032 +0 0.0607 +0 0.1417 +0 0.1072 +0 0.0614 +0 0.0754 +0 0.1539 +0 0.1009 +0 0.1121 +0 0.0850 +0 0.0692 +0 0.2801 +0 0.0404 +0 0.1464 +0 0.1942 +0 0.1935 +0 0.0904 +0 0.0953 +0 0.5656 +0 0.1174 +0 0.0933 +0 0.2344 +0 0.0634 +0 0.1302 +0 0.2229 +0 0.0791 +0 0.0575 +0 0.0616 +0 0.3264 +0 0.0659 +0 0.0513 +0 0.0462 +0 0.1563 +0 0.1088 +0 0.0743 +0 0.1519 +0 0.5809 +0 0.0452 +0 0.0739 +0 0.0455 +0 0.1268 +0 0.1403 +0 0.2903 +0 0.0530 +0 0.0686 +0 0.0609 +0 0.0901 +0 0.1217 +0 0.0731 +0 0.0497 +0 0.0735 +0 0.1266 +1 0.8260 +0 0.6642 +0 0.2222 +0 0.0378 +0 0.2248 +0 0.1141 +0 0.0510 +0 0.1722 +0 0.3002 +0 0.0545 +0 0.0569 +0 0.1620 +0 0.1277 +0 0.0819 +0 0.0613 +0 0.0802 +0 0.1498 +0 0.1307 +0 0.1031 +0 0.0853 +0 0.1540 +0 0.1096 +0 0.2148 +0 0.0813 +0 0.0965 +0 0.0793 +0 0.0606 +0 0.0608 +0 0.3240 +0 0.1550 +0 0.0483 +0 0.1440 +0 0.2785 +0 0.1239 +0 0.0632 +0 0.0833 +0 0.1421 +0 0.1563 +1 0.8337 +0 0.0781 +0 0.1244 +0 0.0770 +1 0.7901 +0 0.0830 +0 0.5042 +0 0.0673 +0 0.2324 +0 0.1593 +0 0.1281 +0 0.1325 +0 0.1000 +0 0.0802 +0 0.1320 +0 0.0774 +0 0.3915 +0 0.1074 +0 0.1629 +0 0.0669 +0 0.0646 +0 0.0660 +0 0.1120 +0 0.2521 +0 0.0543 +0 0.1233 +0 0.0562 +0 0.0687 +0 0.0914 +0 0.1475 +0 0.0847 +0 0.2047 +0 0.1043 +0 0.1021 +0 0.1874 +0 0.0492 +0 0.1523 +0 0.1166 +0 0.1302 +0 0.0431 +0 0.1457 +0 0.0983 +0 0.0876 +0 0.2731 +0 0.0967 +0 0.0926 +0 0.6826 +0 0.0949 +0 0.1174 +0 0.4849 +0 0.1024 +0 0.0596 +0 0.1586 +0 0.0348 +0 0.1579 +0 0.2049 +0 0.1177 +0 0.0816 +0 0.0698 +0 0.0671 +0 0.1211 +1 0.8105 +0 0.0498 +0 0.2077 +0 0.0816 +0 0.5048 +0 0.1087 +0 0.1138 +0 0.0338 +0 0.1209 +0 0.1312 +1 0.8048 +0 0.0486 +0 0.0598 +0 0.0988 +0 0.1740 +0 0.0863 +0 0.1576 +0 0.0594 +0 0.2233 +0 0.1272 +0 0.1545 +0 0.2220 +0 0.1715 +0 0.4053 +0 0.1439 +0 0.0887 +0 0.0359 +0 0.1040 +0 0.0982 +0 0.0995 +0 0.0864 +0 0.1677 +0 0.1265 +0 0.0539 +0 0.0722 +0 0.1197 +0 0.0743 +0 0.0863 +0 0.0671 +0 0.0564 +0 0.1314 +0 0.1121 +0 0.0987 +0 0.0809 +1 0.7980 +0 0.0711 +0 0.0976 +0 0.4620 +0 0.0461 +1 0.8061 +0 0.1978 +0 0.1089 +0 0.0900 +0 0.1365 +0 0.1863 +0 0.1065 +0 0.1795 +0 0.0727 +0 0.0612 +0 0.0594 +0 0.0334 +0 0.1352 +0 0.5172 +0 0.1671 +0 0.0887 +0 0.0789 +0 0.0749 +0 0.0811 +0 0.1659 +0 0.0439 +0 0.3674 +0 0.1701 +0 0.1808 +0 0.0612 +0 0.3335 +0 0.0775 +0 0.1303 +0 0.0734 +0 0.1254 +0 0.0749 +0 0.1277 +0 0.4246 +0 0.1225 +0 0.1241 +0 0.0835 +0 0.1128 +0 0.1609 +0 0.2050 +0 0.0822 +1 0.7509 +0 0.1572 +0 0.1210 +0 0.0567 +0 0.1928 +0 0.3047 +0 0.0862 +0 0.0463 +0 0.0565 +0 0.0844 +0 0.1388 +0 0.0514 +0 0.0619 +0 0.1476 +0 0.0965 +0 0.1573 +0 0.1733 +0 0.3494 +0 0.1088 +0 0.1211 +0 0.2603 +0 0.1175 +0 0.1026 +0 0.4454 +0 0.1161 +0 0.1063 +0 0.1505 +0 0.1206 +0 0.0860 +0 0.3733 +0 0.0939 +0 0.0877 +0 0.2971 +0 0.0870 +0 0.1189 +0 0.1588 +0 0.0953 +0 0.2278 +0 0.0793 +0 0.1299 +0 0.1015 +0 0.1801 +0 0.0740 +0 0.1504 +0 0.0495 +0 0.0830 +0 0.1217 +0 0.2616 +0 0.0696 +0 0.0515 +0 0.6463 +1 0.7691 +0 0.0393 +0 0.0622 +0 0.0992 +0 0.2133 +0 0.2970 +0 0.0894 +0 0.3696 +0 0.1517 +0 0.0994 +0 0.1265 +0 0.0499 +0 0.4704 +0 0.0560 +0 0.0876 +0 0.2295 +0 0.0656 +0 0.0952 +0 0.0498 +0 0.0944 +0 0.2321 +0 0.0726 +0 0.0617 +0 0.0674 +0 0.1362 +0 0.2609 +0 0.1988 +0 0.3990 +0 0.0779 +0 0.1208 +0 0.0908 +0 0.1235 +0 0.0491 +0 0.1042 +0 0.0590 +0 0.5717 +0 0.2245 +0 0.1392 +0 0.6053 +0 0.0967 +0 0.3623 +0 0.0739 +0 0.1032 +0 0.0709 +0 0.2632 +0 0.1117 +0 0.1739 +0 0.1325 +0 0.0997 +0 0.0672 +0 0.0380 +0 0.0649 +0 0.1070 +0 0.0546 +0 0.1526 +0 0.0924 +0 0.1018 +0 0.0542 +0 0.1029 +0 0.1742 +0 0.2037 +0 0.0679 +0 0.0932 +0 0.2121 +0 0.0645 +0 0.1714 +0 0.1243 +0 0.1003 +0 0.1041 +0 0.1438 +0 0.2455 +0 0.1444 +0 0.2435 +0 0.0856 +0 0.0912 +0 0.5373 +0 0.1186 +0 0.0742 +0 0.2035 +0 0.0992 +0 0.0871 +0 0.1158 +0 0.0655 +0 0.0345 +0 0.0555 +0 0.1137 +0 0.0518 +0 0.1038 +0 0.0511 +0 0.1831 +0 0.0735 +0 0.0795 +0 0.1121 +0 0.2329 +0 0.1787 +0 0.0584 +0 0.0518 +0 0.1224 +0 0.1441 +0 0.0470 +0 0.1143 +0 0.0888 +0 0.0465 +0 0.1981 +0 0.1041 +0 0.0723 +0 0.4331 +0 0.1260 +0 0.5784 +0 0.0957 +0 0.0865 +0 0.2786 +0 0.0571 +0 0.2033 +0 0.0886 +0 0.2112 +0 0.1630 +0 0.2277 +0 0.0863 +0 0.1023 +0 0.1206 +0 0.0700 +0 0.2641 +0 0.0385 +0 0.0685 +0 0.3331 +0 0.1891 +0 0.1176 +0 0.0819 +0 0.1909 +0 0.0733 +0 0.0901 +0 0.1142 +0 0.0933 +0 0.0933 +0 0.4224 +0 0.1060 +0 0.0480 +0 0.1363 +0 0.0818 +0 0.0685 +0 0.1727 +0 0.1050 +0 0.0869 +0 0.0563 +0 0.1321 +0 0.1998 +0 0.1279 +0 0.0513 +0 0.2332 +0 0.0847 +0 0.1562 +0 0.0576 +0 0.0615 +0 0.4149 +0 0.0397 +0 0.1986 +0 0.0606 +0 0.1139 +0 0.0561 +0 0.1050 +0 0.1901 +0 0.0635 +0 0.0489 +0 0.0939 +0 0.1441 +0 0.0973 +0 0.1202 +0 0.0547 +0 0.5819 +0 0.2267 +0 0.1256 +0 0.0778 +0 0.1209 +0 0.0749 +0 0.1799 +0 0.0572 +0 0.0793 +0 0.1044 +0 0.0524 +0 0.3056 +0 0.0840 +0 0.0480 +0 0.0548 +0 0.0782 +0 0.0716 +0 0.0410 +0 0.0884 +0 0.0743 +0 0.1737 +0 0.4384 +0 0.3235 +0 0.0686 +0 0.0806 +0 0.1460 +0 0.0695 +0 0.0489 +0 0.0691 +0 0.1184 +0 0.0580 +0 0.1716 +0 0.0515 +0 0.1594 +0 0.0964 +0 0.6615 +0 0.0540 +0 0.1061 +0 0.2026 +1 0.7882 +0 0.1122 +0 0.5499 +0 0.1337 +0 0.2667 +0 0.1181 +0 0.2038 +0 0.1079 +0 0.0428 +0 0.1131 +0 0.0960 +0 0.0853 +0 0.1625 +0 0.0696 +0 0.2342 +0 0.1099 +0 0.0565 +0 0.0617 +0 0.4622 +0 0.2650 +0 0.2179 +0 0.5833 +0 0.0359 +0 0.1932 +0 0.0868 +0 0.0670 +0 0.0824 +0 0.2044 +0 0.0344 +0 0.1103 +0 0.1075 +0 0.0856 +0 0.0720 +0 0.0496 +0 0.0915 +0 0.0606 +0 0.0995 +0 0.1085 +0 0.0383 +0 0.0565 +0 0.0571 +0 0.0799 +0 0.1079 +0 0.1717 +0 0.1402 +0 0.0542 +0 0.1447 +0 0.1635 +0 0.1370 +0 0.0531 +0 0.1533 +0 0.0566 +0 0.0699 +0 0.1100 +0 0.0542 +0 0.1146 +0 0.1015 +0 0.1406 +0 0.1560 +0 0.3546 +0 0.2967 +0 0.2025 +0 0.2257 +0 0.0957 +0 0.1187 +0 0.1514 +0 0.1613 +0 0.0744 +0 0.0680 +0 0.1148 +0 0.2528 +0 0.1769 +0 0.1143 +0 0.1378 +0 0.0681 +0 0.0917 +0 0.1766 +0 0.0916 +0 0.0473 +0 0.2016 +0 0.0566 +0 0.1845 +0 0.0892 +0 0.1961 +0 0.1288 +0 0.1202 +0 0.0433 +0 0.1653 +0 0.4636 +0 0.0285 +0 0.0607 +0 0.0599 +0 0.0718 +0 0.1089 +0 0.0534 +0 0.0967 +0 0.0728 +0 0.1264 +0 0.0826 +0 0.0821 +0 0.1948 +0 0.0486 +0 0.1473 +0 0.0862 +0 0.2521 +0 0.1552 +0 0.1028 +0 0.1040 +0 0.0547 +0 0.1422 +0 0.0856 +0 0.0734 +0 0.0691 +0 0.0630 +0 0.0713 +0 0.0717 +0 0.0618 +0 0.0972 +0 0.1246 +0 0.3179 +0 0.0774 +0 0.0392 +0 0.0509 +0 0.2746 +0 0.0729 +0 0.1738 +0 0.0788 +0 0.0575 +0 0.2070 +0 0.3564 +0 0.0997 +0 0.0454 +0 0.0772 +0 0.0821 +0 0.0277 +0 0.0632 +0 0.1501 +0 0.0406 +0 0.0517 +0 0.0834 +0 0.5423 +0 0.1781 +0 0.0689 +0 0.1047 +0 0.0668 +0 0.0743 +0 0.0819 +0 0.2232 +0 0.0754 +0 0.1043 +0 0.3921 +0 0.0645 +0 0.0613 +0 0.0852 +0 0.0883 +0 0.2028 +0 0.0528 +0 0.0818 +0 0.0939 +0 0.1217 +0 0.0615 +0 0.1668 +0 0.0830 +0 0.0567 +0 0.0547 +0 0.1062 +0 0.3215 +0 0.1971 +0 0.3652 +0 0.2254 +0 0.1952 +0 0.1528 +0 0.1813 +0 0.1154 +0 0.3544 +0 0.4987 +0 0.1136 +0 0.4440 +0 0.1845 +0 0.0974 +0 0.0763 +0 0.4006 +0 0.1262 +0 0.0653 +0 0.1257 +0 0.0562 +0 0.0898 +0 0.0681 +0 0.3349 +0 0.6933 +0 0.0755 +0 0.0750 +0 0.0499 +0 0.1328 +0 0.1870 +0 0.1343 +0 0.1032 +0 0.3302 +1 0.8800 +0 0.0498 +0 0.0928 +0 0.0616 +0 0.5377 +0 0.1151 +0 0.1763 +0 0.2250 +0 0.1242 +0 0.0604 +0 0.2070 +1 0.7737 +0 0.0809 +0 0.0741 +0 0.0972 +0 0.0689 +0 0.0878 +0 0.0418 +0 0.1013 +0 0.0887 +0 0.1086 +0 0.2476 +0 0.1615 +0 0.0749 +0 0.2576 +0 0.0476 +0 0.1588 +0 0.1185 +0 0.0658 +0 0.2124 +0 0.0584 +0 0.0609 +0 0.0810 +0 0.0940 +0 0.0667 +0 0.2504 +0 0.4837 +0 0.1132 +0 0.0875 +0 0.1168 +0 0.3180 +0 0.0564 +0 0.1364 +0 0.0797 +0 0.1100 +0 0.1180 +0 0.6988 +0 0.2630 +0 0.1364 +0 0.0834 +0 0.0577 +0 0.1466 +0 0.0703 +0 0.2393 +0 0.0397 +0 0.0372 +0 0.0767 +0 0.1076 +0 0.4333 +0 0.1927 +0 0.0623 +0 0.0600 +0 0.0609 +1 0.7686 +0 0.4160 +0 0.0372 +0 0.0380 +0 0.1533 +0 0.2352 +0 0.2780 +0 0.0984 +0 0.0691 +0 0.1494 +0 0.0813 +0 0.0958 +0 0.0832 +0 0.0596 +0 0.2033 +0 0.0744 +0 0.0671 +0 0.1293 +0 0.0461 +0 0.0792 +1 0.8326 +0 0.1786 +0 0.1979 +0 0.6192 +0 0.2377 +0 0.0898 +0 0.0782 +0 0.3365 +0 0.0931 +0 0.1176 +0 0.0594 +1 0.7983 +0 0.0987 +0 0.1462 +0 0.1391 +0 0.0836 +0 0.0638 +0 0.1500 +0 0.0669 +0 0.3161 +0 0.2860 +0 0.0637 +0 0.1040 +0 0.0644 +0 0.0533 +0 0.1976 +0 0.0337 +0 0.0947 +0 0.0937 +0 0.1070 +0 0.1298 +0 0.1368 +0 0.1266 +0 0.0517 +0 0.1237 +0 0.1685 +0 0.1472 +0 0.0518 +0 0.0811 +0 0.1607 +0 0.0511 +0 0.1382 +0 0.0982 +0 0.1845 +0 0.0684 +0 0.0815 +0 0.2745 +0 0.0955 +0 0.1746 +0 0.0429 +0 0.1051 +0 0.2630 +0 0.1259 +0 0.4068 +0 0.0505 +0 0.0516 +0 0.0730 +0 0.0906 +0 0.5004 +0 0.0588 +0 0.1055 +0 0.1382 +0 0.1664 +0 0.0708 +1 0.8477 +0 0.0824 +0 0.0886 +0 0.0797 +0 0.1751 +0 0.1818 +0 0.2951 +0 0.1044 +0 0.5548 +0 0.1037 +0 0.1293 +0 0.0940 +0 0.1908 +0 0.2778 +0 0.4790 +0 0.0571 +0 0.0434 +0 0.1620 +0 0.1773 +0 0.1208 +0 0.1080 +0 0.1064 +0 0.1653 +0 0.0706 +0 0.3431 +0 0.0604 +0 0.0850 +0 0.4350 +0 0.0668 +0 0.0609 +0 0.0782 +0 0.0715 +0 0.0795 +0 0.0484 +0 0.0996 +0 0.0376 +0 0.0404 +0 0.0663 +0 0.0763 +0 0.0930 +0 0.1231 +0 0.3985 +0 0.1129 +0 0.1538 +0 0.1171 +0 0.0351 +0 0.1691 +0 0.1290 +0 0.1077 +0 0.0809 +0 0.0362 +0 0.1332 +0 0.1125 +0 0.2257 +0 0.2729 +0 0.6549 +0 0.2795 +0 0.1107 +0 0.2318 +0 0.0880 +0 0.1749 +0 0.1986 +0 0.0583 +0 0.4809 +0 0.0387 +0 0.3261 +0 0.1072 +0 0.1740 +0 0.1242 +0 0.1080 +0 0.2287 +0 0.0551 +0 0.0726 +0 0.2022 +0 0.0989 +1 0.8499 +0 0.6207 +0 0.0532 +0 0.0962 +0 0.0659 +0 0.2169 +0 0.2311 +0 0.0889 +0 0.0771 +0 0.1283 +0 0.2064 +0 0.0730 +0 0.1258 +0 0.1089 +0 0.1973 +0 0.0731 +0 0.1592 +0 0.0894 +0 0.0837 +0 0.1057 +0 0.1391 +0 0.1038 +0 0.0773 +0 0.0793 +0 0.0538 +0 0.1057 +0 0.2559 +0 0.4247 +0 0.1365 +0 0.0736 +0 0.0862 +0 0.1171 +0 0.1862 +1 0.8131 +0 0.0537 +0 0.0343 +0 0.2409 +0 0.1400 +0 0.0665 +0 0.0670 +0 0.0801 +0 0.1590 +0 0.2439 +0 0.3406 +1 0.8184 +0 0.0413 +0 0.1222 +1 0.8356 +0 0.0454 +0 0.1083 +0 0.0519 +0 0.2504 +0 0.1326 +0 0.6192 +0 0.1118 +0 0.0485 +0 0.1533 +0 0.1911 +0 0.0763 +0 0.1683 +0 0.3439 +0 0.1360 +0 0.1391 +0 0.0719 +0 0.1290 +0 0.2524 +0 0.0650 +0 0.0848 +0 0.1057 +0 0.1958 +0 0.1352 +0 0.1240 +0 0.0991 +0 0.1235 +0 0.0760 +0 0.2270 +0 0.1159 +0 0.0825 +0 0.0696 +0 0.0871 +0 0.1505 +0 0.1204 +0 0.2480 +0 0.3178 +0 0.2466 +0 0.1906 +0 0.0956 +0 0.2340 +0 0.4015 +0 0.1035 +0 0.1234 +0 0.0722 +0 0.1014 +0 0.0605 +0 0.0778 +0 0.5594 +0 0.0612 +0 0.0785 +0 0.0664 +0 0.0973 +0 0.1101 +0 0.2613 +0 0.0687 +0 0.0835 +0 0.0532 +0 0.1921 +1 0.8352 +0 0.2733 +0 0.0532 +0 0.0606 +0 0.0925 +0 0.2812 +0 0.1848 +0 0.0899 +0 0.0346 +0 0.1016 +0 0.1265 +0 0.2754 +0 0.1589 +0 0.1402 +0 0.0542 +0 0.0646 +0 0.1009 +0 0.0688 +0 0.0946 +0 0.2072 +0 0.1327 +0 0.0414 +0 0.2335 +0 0.0509 +0 0.0471 +0 0.1225 +0 0.1120 +0 0.0281 +0 0.1025 +0 0.1574 +0 0.0706 +0 0.2579 +0 0.0712 +0 0.0832 +0 0.1256 +0 0.0886 +0 0.0751 +0 0.1455 +0 0.0609 +0 0.3237 +0 0.1170 +0 0.0450 +0 0.2406 +0 0.2907 +0 0.0831 +0 0.0442 +0 0.1584 +0 0.1070 +0 0.0793 +0 0.3468 +0 0.6522 +0 0.2570 +0 0.1195 +0 0.0545 +0 0.3709 +0 0.2888 +0 0.1007 +0 0.1140 +0 0.0883 +0 0.1317 +0 0.1713 +0 0.0909 +0 0.1650 +0 0.0595 +0 0.1042 +0 0.1174 +0 0.0607 +0 0.0502 +0 0.1333 +0 0.1530 +0 0.0555 +0 0.0531 +0 0.0991 +0 0.0671 +0 0.0535 +0 0.1162 +0 0.0773 +0 0.3066 +0 0.0459 +0 0.0638 +0 0.1232 +0 0.0779 +0 0.1345 +0 0.1688 +0 0.1031 +0 0.3157 +0 0.0580 +0 0.6298 +0 0.1964 +0 0.0924 +0 0.2315 +1 0.8339 +0 0.1100 +0 0.2525 +0 0.1386 +0 0.0930 +0 0.1955 +0 0.0561 +0 0.6736 +0 0.0751 +0 0.0796 +0 0.0984 +0 0.0770 +0 0.1282 +0 0.0765 +0 0.1258 +0 0.1566 +0 0.0524 +0 0.0767 +0 0.0654 +0 0.0849 +0 0.0456 +0 0.1516 +0 0.2493 +0 0.0791 +0 0.1885 +0 0.1913 +0 0.1091 +0 0.1783 +0 0.0953 +0 0.0632 +0 0.0670 +0 0.1791 +0 0.1978 +0 0.0475 +0 0.3787 +0 0.2105 +0 0.0901 +0 0.0847 +0 0.1478 +0 0.2021 +0 0.0406 +0 0.0593 +0 0.0469 +0 0.0882 +0 0.0534 +0 0.0725 +0 0.1558 +0 0.2165 +1 0.8623 +0 0.0522 +0 0.0475 +0 0.1753 +0 0.1754 +0 0.0855 +0 0.2216 +0 0.2329 +0 0.0731 +0 0.1547 +0 0.1897 +0 0.0617 +0 0.1416 +0 0.1128 +0 0.0726 +0 0.0871 +0 0.2251 +0 0.1072 +0 0.0380 +0 0.1028 +0 0.1050 +0 0.1067 +0 0.0592 +0 0.1841 +0 0.1888 +0 0.0726 +0 0.1024 +0 0.1006 +0 0.0540 +0 0.0845 +0 0.0855 +0 0.0730 +0 0.1889 +0 0.1770 +0 0.0517 +0 0.0786 +0 0.1276 +0 0.1518 +0 0.1803 +0 0.0827 +0 0.0872 +0 0.0696 +0 0.1312 +0 0.1004 +0 0.1374 +0 0.0770 +0 0.1555 +0 0.0906 +0 0.0532 +0 0.1005 +1 0.7586 +0 0.0788 +0 0.2321 +0 0.0544 +0 0.0435 +0 0.1255 +0 0.0609 +0 0.0523 +0 0.0929 +0 0.0950 +0 0.0440 +0 0.1654 +0 0.0947 +0 0.1430 +0 0.7218 +0 0.0971 +0 0.3591 +0 0.0565 +0 0.1124 +0 0.0774 +0 0.7450 +0 0.2891 +0 0.0890 +0 0.1230 +0 0.1150 +0 0.0980 +0 0.1713 +0 0.2209 +0 0.2948 +0 0.1619 +0 0.1158 +0 0.1239 +0 0.1428 +0 0.0625 +0 0.1309 +0 0.0476 +0 0.1395 +0 0.1965 +0 0.0644 +0 0.1046 +0 0.0590 +0 0.1937 +0 0.1064 +0 0.0635 +0 0.0671 +0 0.1243 +0 0.1119 +0 0.0551 +0 0.0823 +0 0.1358 +0 0.2316 +0 0.0604 +0 0.0904 +0 0.1034 +0 0.1347 +0 0.0616 +0 0.1032 +0 0.1864 +0 0.1409 +0 0.1258 +0 0.0794 +0 0.0716 +0 0.0758 +0 0.1002 +0 0.0494 +0 0.0908 +0 0.1029 +0 0.5202 +0 0.0994 +0 0.1134 +0 0.1236 +0 0.0808 +0 0.0586 +0 0.0453 +0 0.0647 +0 0.2147 +0 0.0513 +0 0.0898 +0 0.0549 +0 0.1338 +0 0.1777 +0 0.0852 +0 0.0786 +0 0.1344 +0 0.1912 +0 0.0684 +0 0.2916 +0 0.0488 +0 0.0772 +0 0.1579 +0 0.0723 +0 0.1184 +0 0.0718 +0 0.1190 +0 0.0688 +0 0.0519 +0 0.1499 +0 0.0642 +0 0.0515 +0 0.1366 +0 0.1030 +0 0.1182 +0 0.1886 +0 0.1129 +0 0.1046 +0 0.1251 +0 0.1914 +0 0.3424 +0 0.1094 +0 0.0688 +0 0.4114 +0 0.0614 +0 0.5444 +0 0.0707 +0 0.1655 +0 0.1862 +0 0.2019 +0 0.4077 +0 0.1085 +0 0.0492 +0 0.7388 +0 0.0949 +0 0.0767 +0 0.0710 +0 0.1561 +0 0.2314 +0 0.1693 +0 0.2864 +0 0.2288 +0 0.2432 +0 0.0753 +0 0.1385 +0 0.0713 +0 0.6562 +0 0.2479 +0 0.1620 +0 0.0551 +0 0.0997 +0 0.0827 +0 0.0671 +0 0.0700 +0 0.0762 +0 0.2490 +0 0.3548 +0 0.5365 +0 0.0683 +0 0.0705 +0 0.0743 +0 0.1141 +0 0.1035 +1 0.7765 +0 0.1272 +0 0.1064 +0 0.0432 +0 0.0452 +0 0.1929 +0 0.4733 +0 0.0621 +0 0.5075 +0 0.0626 +0 0.0881 +0 0.1361 +0 0.0735 +0 0.1598 +0 0.0742 +0 0.0635 +0 0.2496 +0 0.1083 +0 0.0572 +0 0.0941 +0 0.2120 +0 0.1195 +0 0.1479 +0 0.0505 +0 0.0452 +0 0.1717 +0 0.1054 +0 0.0299 +0 0.2950 +0 0.0883 +0 0.1145 +0 0.1305 +0 0.0813 +0 0.1895 +0 0.3959 +0 0.1061 +0 0.1638 +0 0.1769 +0 0.0664 +0 0.1655 +0 0.0607 +0 0.1541 +0 0.0731 +0 0.1422 +0 0.0836 +0 0.1313 +0 0.0815 +0 0.0755 +0 0.0937 +0 0.4243 +0 0.1479 +0 0.0821 +0 0.2654 +0 0.0769 +0 0.0734 +0 0.2114 +0 0.4366 +0 0.0826 +0 0.0983 +0 0.1780 +0 0.7395 +0 0.0811 +0 0.0765 +0 0.1392 +1 0.7728 +1 0.8453 +0 0.1190 +1 0.8439 +0 0.1078 +0 0.1638 +0 0.3593 +0 0.2364 +0 0.1622 +0 0.0916 +0 0.0737 +0 0.1694 +0 0.2814 +0 0.2323 +0 0.0520 +0 0.2702 +0 0.1239 +0 0.1618 +0 0.0951 +0 0.1682 +0 0.1354 +0 0.0989 +0 0.0458 +0 0.1660 +0 0.0615 +0 0.1168 +0 0.0699 +0 0.0815 +0 0.0791 +0 0.0674 +0 0.1361 +0 0.0740 +0 0.0842 +0 0.2825 +0 0.2774 +0 0.0943 +0 0.1542 +0 0.1216 +0 0.0783 +0 0.0445 +0 0.0791 +0 0.2572 +0 0.0531 +0 0.0671 +0 0.0808 +0 0.0722 +0 0.0948 +0 0.4184 +0 0.0596 +0 0.0580 +0 0.1477 +0 0.1198 +0 0.0363 +0 0.0946 +0 0.0709 +0 0.1092 +0 0.0762 +0 0.0840 +0 0.2286 +0 0.1449 +0 0.0963 +0 0.0558 +0 0.1841 +0 0.1367 +0 0.1899 +0 0.1282 +0 0.0599 +0 0.1683 +0 0.1043 +0 0.0974 +0 0.0906 +0 0.1033 +0 0.0570 +0 0.0878 +0 0.0965 +0 0.0487 +0 0.1660 +0 0.0475 +0 0.1345 +0 0.0463 +0 0.0933 +0 0.0904 +0 0.1520 +0 0.0610 +0 0.2530 +0 0.0309 +0 0.1970 +0 0.2805 +0 0.0719 +0 0.2022 +0 0.0637 +0 0.2304 +0 0.2077 +0 0.0908 +1 0.7886 +0 0.1108 +0 0.1294 +0 0.1557 +0 0.1526 +0 0.0557 +0 0.3474 +0 0.0790 +0 0.1196 +0 0.6892 +0 0.0903 +0 0.1024 +0 0.0415 +0 0.0842 +1 0.8075 +0 0.0887 +0 0.1677 +0 0.1203 +0 0.0747 +0 0.0704 +0 0.1091 +0 0.0632 +0 0.1773 +0 0.1561 +0 0.0941 +0 0.1291 +0 0.2413 +0 0.1368 +0 0.0953 +0 0.0827 +0 0.1165 +0 0.0972 +0 0.3147 +0 0.0636 +0 0.7142 +0 0.1796 +0 0.1719 +0 0.0841 +0 0.1165 +0 0.0736 +0 0.3635 +0 0.0622 +0 0.2252 +0 0.1614 +0 0.0959 +0 0.1304 +0 0.0727 +0 0.0911 +0 0.2089 +0 0.1178 +0 0.0952 +0 0.2046 +0 0.1617 +0 0.1567 +0 0.4126 +0 0.1563 +0 0.3023 +0 0.1763 +0 0.3604 +0 0.1750 +0 0.0568 +0 0.0750 +0 0.1155 +0 0.1257 +0 0.0676 +0 0.1158 +0 0.1379 +0 0.2546 +0 0.0881 +0 0.1587 +0 0.0476 +0 0.0817 +0 0.0740 +0 0.1689 +0 0.0891 +0 0.0874 +0 0.1881 +0 0.2264 +0 0.1270 +0 0.0867 +0 0.1311 +0 0.5616 +0 0.0970 +0 0.0951 +0 0.0567 +0 0.1417 +0 0.0779 +0 0.2149 +0 0.0841 +0 0.0910 +0 0.0795 +0 0.1453 +0 0.0866 +0 0.0703 +0 0.0771 +0 0.0401 +0 0.0811 +0 0.2088 +0 0.0675 +0 0.0758 +0 0.1011 +0 0.1577 +0 0.1328 +0 0.1890 +0 0.1131 +0 0.0743 +0 0.1026 +0 0.1157 +0 0.0834 +0 0.1069 +0 0.2151 +0 0.0418 +0 0.0690 +0 0.2761 +0 0.0775 +0 0.0609 +0 0.0978 +0 0.3044 +0 0.0298 +0 0.2125 +0 0.2410 +0 0.1149 +0 0.0624 +0 0.1740 +1 0.8599 +0 0.1879 +0 0.2853 +0 0.0667 +0 0.3042 +0 0.3777 +0 0.0625 +0 0.0591 +0 0.1716 +0 0.3237 +0 0.0612 +0 0.1477 +0 0.1079 +0 0.0514 +0 0.0849 +0 0.0959 +0 0.0658 +0 0.0836 +0 0.1650 +0 0.1063 +0 0.0329 +0 0.0655 +0 0.0612 +0 0.1400 +0 0.0677 +0 0.1287 +0 0.0523 +0 0.0789 +0 0.0796 +0 0.0690 +0 0.0985 +0 0.0461 +0 0.1200 +0 0.1684 +0 0.0847 +0 0.0917 +0 0.0959 +0 0.1115 +0 0.1103 +0 0.3444 +0 0.1885 +0 0.7068 +0 0.0739 +0 0.0520 +0 0.0771 +0 0.4056 +0 0.0757 +0 0.1594 +0 0.1066 +0 0.0935 +0 0.2014 +0 0.0745 +0 0.0610 +0 0.1149 +0 0.1056 +0 0.1497 +0 0.3515 +0 0.6857 +0 0.0636 +0 0.1558 +0 0.1008 +0 0.0407 +0 0.0887 +0 0.1564 +0 0.0941 +0 0.4285 +0 0.1547 +0 0.1183 +0 0.1879 +0 0.1441 +0 0.0543 +0 0.1248 +0 0.2402 +1 0.8061 +0 0.1228 +0 0.1204 +0 0.2074 +0 0.0469 +0 0.0451 +0 0.0690 +0 0.0840 +0 0.0585 +0 0.0544 +0 0.3725 +0 0.0974 +0 0.1649 +0 0.0343 +1 0.7922 +0 0.2071 +0 0.0554 +0 0.0832 +0 0.2630 +0 0.1688 +0 0.0900 +0 0.0693 +0 0.1278 +0 0.0743 +0 0.0634 +0 0.0852 +0 0.0942 +0 0.1353 +0 0.1096 +0 0.2328 +0 0.0782 +0 0.0784 +0 0.1175 +0 0.0785 +0 0.2554 +0 0.0872 +0 0.1296 +0 0.0930 +0 0.3811 +0 0.1058 +0 0.2579 +0 0.0876 +0 0.1543 +0 0.0945 +0 0.0432 +0 0.0579 +0 0.0724 +0 0.0866 +0 0.1142 +0 0.0720 +0 0.7323 +0 0.1761 +0 0.0874 +1 0.8718 +0 0.2450 +0 0.3173 +0 0.1501 +0 0.3010 +0 0.0598 +0 0.0843 +0 0.1938 +0 0.4814 +0 0.1801 +0 0.1857 +0 0.0783 +0 0.2059 +0 0.1085 +0 0.0840 +1 0.8363 +0 0.3449 +0 0.0889 +0 0.1230 +0 0.2194 +0 0.0800 +0 0.1690 +1 0.8733 +0 0.0673 +0 0.6949 +0 0.2293 +0 0.1119 +0 0.0805 +0 0.0736 +0 0.0821 +0 0.0783 +0 0.5437 +0 0.0456 +0 0.1129 +0 0.5903 +0 0.1992 +0 0.1031 +0 0.1492 +0 0.1143 +0 0.0759 +0 0.3448 +0 0.2633 +0 0.0900 +0 0.0954 +0 0.1764 +0 0.1006 +0 0.0486 +0 0.3730 +0 0.1242 +0 0.0632 +0 0.6310 +0 0.0856 +0 0.1082 +1 0.7549 +0 0.1241 +0 0.1746 +0 0.0913 +0 0.0792 +0 0.0448 +0 0.1638 +0 0.1035 +0 0.0516 +0 0.2223 +0 0.3000 +0 0.0681 +0 0.0798 +0 0.1026 +0 0.0680 +0 0.1355 +0 0.0781 +0 0.0951 +0 0.0810 +0 0.1293 +0 0.1253 +0 0.2531 +0 0.0959 +0 0.0828 +0 0.1370 +0 0.1628 +0 0.1949 +0 0.0923 +0 0.1048 +0 0.5327 +0 0.0886 +0 0.2124 +0 0.1450 +0 0.1064 +0 0.1109 +0 0.6747 +0 0.1140 +0 0.0862 +0 0.0556 +0 0.1099 +0 0.0620 +0 0.0906 +0 0.0923 +0 0.2187 +0 0.3711 +0 0.2512 +0 0.3624 +0 0.1534 +0 0.1581 +0 0.1026 +0 0.1815 +0 0.0687 +0 0.2401 +0 0.7213 +0 0.1373 +0 0.3717 +0 0.1430 +0 0.2732 +0 0.2471 +0 0.1799 +0 0.1121 +0 0.0906 +0 0.1481 +0 0.1342 +0 0.1091 +0 0.0793 +0 0.0520 +0 0.1440 +0 0.1284 +0 0.1272 +0 0.2747 +0 0.1583 +0 0.0786 +0 0.0453 +0 0.1005 +0 0.1121 +0 0.0842 +0 0.1154 +0 0.1254 +0 0.0825 +0 0.1736 +0 0.0425 +0 0.0626 +0 0.1514 +0 0.2794 +0 0.0632 +0 0.1452 +0 0.2496 +0 0.1403 +0 0.0718 +0 0.2849 +0 0.2958 +0 0.0311 +0 0.1016 +0 0.0903 +0 0.0887 +0 0.0566 +0 0.1303 +0 0.2063 +0 0.1739 +0 0.2526 +0 0.2084 +0 0.3547 +0 0.1087 +0 0.1740 +0 0.6062 +0 0.1637 +0 0.3109 +0 0.0531 +0 0.4623 +0 0.2772 +0 0.3209 +0 0.0468 +0 0.0332 +0 0.0984 +0 0.0751 +0 0.0578 +0 0.1788 +0 0.0578 +0 0.1096 +0 0.0415 +0 0.0442 +0 0.0523 +0 0.1183 +0 0.1820 +0 0.0317 +0 0.0667 +0 0.1239 +1 0.7735 +0 0.2426 +0 0.3062 +0 0.0709 +0 0.3183 +0 0.0946 +0 0.1253 +0 0.3387 +0 0.1265 +0 0.1814 +0 0.1088 +0 0.0446 +0 0.1097 +0 0.2460 +0 0.0735 +0 0.0884 +0 0.0938 +0 0.0832 +0 0.0488 +0 0.0482 +0 0.1128 +0 0.0513 +0 0.1311 +0 0.1760 +0 0.0921 +0 0.2125 +0 0.0497 +0 0.0660 +0 0.0885 +0 0.1466 +0 0.2587 +0 0.3344 +0 0.2808 +0 0.0684 +0 0.0414 +0 0.1248 +0 0.1926 +0 0.0891 +0 0.0613 +0 0.1434 +0 0.0481 +0 0.0976 +0 0.1773 +0 0.0911 +0 0.0605 +0 0.2019 +0 0.1000 +0 0.0868 +0 0.0444 +0 0.2347 +0 0.0705 +0 0.1683 +0 0.0769 +0 0.2544 +0 0.2134 +0 0.2751 +0 0.0969 +0 0.1900 +0 0.1458 +0 0.1154 +0 0.0794 +0 0.3831 +0 0.0622 +0 0.0971 +0 0.1201 +0 0.0967 +0 0.1598 +0 0.3750 +0 0.0745 +0 0.4757 +0 0.1765 +0 0.0864 +0 0.1138 +0 0.5851 +0 0.0819 +0 0.0482 +0 0.0336 +0 0.1542 +0 0.3276 +0 0.0836 +0 0.0714 +0 0.0418 +0 0.0886 +0 0.2121 +0 0.1074 +0 0.0833 +0 0.0795 +0 0.3038 +0 0.1202 +0 0.0712 +0 0.0686 +0 0.1313 +0 0.3948 +0 0.1130 +0 0.1391 +0 0.3048 +0 0.0492 +0 0.0839 +0 0.1411 +0 0.0854 +0 0.0580 +0 0.0984 +0 0.0698 +0 0.2128 +0 0.0904 +0 0.1546 +0 0.0679 +0 0.0550 +0 0.1648 +0 0.2318 +0 0.0911 +0 0.0965 +0 0.1056 +0 0.0802 +0 0.0778 +0 0.0530 +0 0.2310 +0 0.1146 +0 0.0371 +1 0.8130 +0 0.2067 +0 0.0588 +0 0.1491 +0 0.1295 +0 0.2244 +0 0.0506 +0 0.0479 +0 0.0530 +0 0.0490 +0 0.2894 +0 0.0456 +0 0.0551 +0 0.0535 +0 0.1474 +0 0.1121 +0 0.0842 +0 0.0711 +0 0.2973 +0 0.0970 +0 0.1240 +0 0.1873 +0 0.0323 +0 0.0691 +0 0.1277 +0 0.1534 +0 0.1442 +0 0.2773 +0 0.2466 +0 0.1799 +0 0.2116 +0 0.1148 +0 0.1207 +0 0.1048 +0 0.0726 +0 0.1736 +0 0.0569 +0 0.0995 +0 0.1853 +0 0.2248 +0 0.0869 +0 0.0576 +0 0.4034 +0 0.1865 +0 0.1424 +0 0.0470 +0 0.2579 +0 0.0820 +0 0.2102 +0 0.0419 +0 0.0519 +0 0.1885 +0 0.0737 +0 0.0745 +0 0.2427 +0 0.5507 +0 0.0762 +0 0.0885 +0 0.1397 +0 0.1440 +0 0.1009 +0 0.7064 +0 0.0525 +0 0.0982 +0 0.1634 +0 0.0736 +0 0.2141 +0 0.1024 +0 0.0862 +0 0.1076 +0 0.2127 +0 0.2093 +0 0.1209 +0 0.0512 +0 0.1304 +0 0.1104 +0 0.1575 +0 0.3188 +0 0.0480 +0 0.0596 +0 0.0595 +0 0.0670 +0 0.0766 +0 0.0614 +0 0.1918 +0 0.0795 +0 0.1153 +0 0.1559 +0 0.0974 +0 0.4634 +0 0.0722 +0 0.1227 +0 0.0503 +0 0.1402 +0 0.0602 +0 0.0880 +0 0.0551 +0 0.0949 +0 0.1342 +0 0.0359 +0 0.2486 +0 0.0748 +0 0.0716 +0 0.1895 +0 0.0920 +0 0.5030 +0 0.3098 +0 0.0460 +0 0.0834 +0 0.1912 +0 0.0920 +0 0.1843 +0 0.0695 +0 0.0855 +0 0.1856 +0 0.1133 +0 0.0467 +0 0.2010 +0 0.0552 +0 0.0366 +0 0.1704 +0 0.2319 +0 0.0673 +0 0.7228 +0 0.1464 +0 0.0872 +0 0.0538 +0 0.0660 +0 0.0706 +0 0.0535 +0 0.1043 +0 0.0487 +0 0.0739 +1 0.7537 +0 0.0917 +0 0.1472 +0 0.0556 +0 0.1579 +0 0.2335 +0 0.0454 +0 0.0586 +0 0.0640 +0 0.6929 +0 0.1159 +0 0.0668 +0 0.0432 +0 0.1009 +0 0.0941 +0 0.1687 +0 0.0595 +0 0.1300 +0 0.2692 +0 0.1081 +0 0.0876 +0 0.1292 +0 0.0716 +0 0.1965 +0 0.1395 +0 0.1279 +0 0.0960 +0 0.0575 +0 0.1037 +0 0.0576 +0 0.0825 +0 0.0767 +0 0.0897 +0 0.1298 +0 0.0657 +0 0.0728 +0 0.0672 +0 0.1513 +0 0.1119 +0 0.1384 +0 0.1175 +0 0.0737 +0 0.1875 +0 0.1071 +0 0.1181 +0 0.1239 +0 0.0934 +0 0.0493 +0 0.0624 +0 0.0973 +0 0.0905 +0 0.0759 +0 0.0710 +0 0.0774 +0 0.1015 +0 0.0512 +0 0.0840 +0 0.2090 +0 0.0683 +0 0.2412 +0 0.1911 +0 0.0593 +0 0.2445 +0 0.0457 +0 0.1045 +0 0.0927 +0 0.0873 +0 0.1753 +0 0.0554 +0 0.1499 +0 0.1311 +0 0.2893 +0 0.1759 +0 0.1350 +0 0.0877 +0 0.1366 +0 0.0630 +0 0.1538 +0 0.1433 +0 0.3801 +1 0.7874 +0 0.0777 +1 0.8643 +0 0.0841 +0 0.1576 +0 0.1206 +0 0.0774 +0 0.1821 +0 0.0807 +0 0.1400 +0 0.0997 +0 0.1113 +0 0.0861 +0 0.1436 +0 0.0813 +0 0.1853 +0 0.0923 +0 0.1500 +0 0.0464 +0 0.0986 +0 0.2780 +0 0.1116 +0 0.1459 +0 0.0635 +0 0.0787 +0 0.2682 +0 0.0635 +0 0.1394 +0 0.0596 +0 0.0523 +0 0.0882 +0 0.7377 +0 0.0764 +0 0.2462 +0 0.0761 +0 0.1299 +0 0.0707 +0 0.0344 +0 0.1590 +0 0.1928 +0 0.1176 +0 0.1461 +0 0.1332 +0 0.1287 +0 0.0379 +0 0.0970 +0 0.0921 +0 0.0656 +0 0.0782 +0 0.0389 +0 0.0469 +0 0.0709 +0 0.0967 +0 0.3769 +0 0.0475 +0 0.1492 +0 0.0951 +0 0.2682 +0 0.1354 +0 0.1165 +0 0.0887 +0 0.1416 +0 0.0519 +0 0.0682 +0 0.1235 +0 0.3263 +0 0.1702 +0 0.0697 +0 0.2171 +0 0.1596 +0 0.1693 +0 0.1291 +0 0.1316 +0 0.1691 +0 0.3122 +0 0.0951 +0 0.3829 +0 0.0823 +0 0.2949 +0 0.0891 +0 0.1636 +0 0.1008 +0 0.3167 +0 0.0491 +0 0.3038 +0 0.0989 +0 0.0419 +0 0.0917 +0 0.2223 +0 0.1615 +0 0.0954 +0 0.0681 +0 0.1208 +0 0.1346 +0 0.1031 +0 0.0816 +0 0.0741 +0 0.1020 +0 0.0667 +0 0.1412 +0 0.3544 +0 0.0417 +0 0.0492 +0 0.0629 +0 0.0938 +0 0.1138 +0 0.1125 +0 0.0508 +0 0.0754 +0 0.0801 +0 0.0394 +0 0.2205 +0 0.0694 +0 0.3411 +0 0.1621 +0 0.1788 +0 0.6802 +0 0.0521 +0 0.1202 +0 0.0655 +0 0.0680 +0 0.1573 +0 0.0988 +0 0.0558 +0 0.1355 +0 0.0939 +0 0.1266 +0 0.2539 +0 0.0930 +0 0.1472 +0 0.1683 +0 0.1031 +0 0.1900 +0 0.0867 +0 0.0568 +0 0.1208 +0 0.0727 +0 0.1600 +0 0.1737 +0 0.1478 +0 0.0658 +0 0.1149 +0 0.1289 +0 0.4742 +0 0.1340 +0 0.1325 +0 0.1646 +0 0.5819 +0 0.0843 +0 0.1011 +0 0.0780 +0 0.0571 +0 0.0718 +0 0.0712 +0 0.1618 +0 0.0533 +0 0.2999 +0 0.1309 +0 0.0795 +0 0.0689 +0 0.0649 +0 0.2442 +0 0.1902 +0 0.0928 +0 0.1258 +0 0.2086 +0 0.1144 +0 0.0754 +0 0.1017 +0 0.0703 +0 0.0761 +0 0.0501 +1 0.8324 +0 0.1247 +0 0.2019 +0 0.2112 +0 0.1727 +0 0.1094 +0 0.0924 +0 0.3848 +0 0.1167 +0 0.1237 +0 0.1242 +0 0.0746 +0 0.1916 +0 0.0480 +0 0.1241 +0 0.1374 +1 0.8518 +0 0.0891 +0 0.0637 +0 0.0555 +0 0.0952 +0 0.0831 +0 0.2416 +1 0.8261 +0 0.6519 +0 0.0634 +0 0.1622 +0 0.1606 +0 0.0697 +0 0.2627 +0 0.0860 +0 0.5505 +0 0.2624 +0 0.0798 +0 0.0798 +0 0.0677 +0 0.0638 +0 0.0510 +0 0.2528 +0 0.0863 +0 0.1231 +0 0.3153 +0 0.1472 +0 0.1682 +0 0.2220 +0 0.3191 +1 0.8476 +0 0.0717 +0 0.0445 +0 0.2569 +0 0.0691 +0 0.0800 +0 0.0793 +0 0.1893 +0 0.0589 +0 0.0456 +0 0.2205 +0 0.0548 +0 0.0397 +0 0.0835 +0 0.0798 +0 0.1432 +0 0.0704 +0 0.1287 +0 0.0571 +0 0.1483 +0 0.0951 +0 0.5243 +0 0.0561 +1 0.7647 +0 0.1225 +0 0.1091 +0 0.1284 +0 0.0799 +0 0.1876 +0 0.1706 +0 0.0874 +0 0.2708 +0 0.2274 +0 0.2812 +0 0.0415 +0 0.0985 +0 0.3685 +0 0.0768 +0 0.1107 +0 0.1165 +0 0.1519 +0 0.3350 +0 0.0988 +0 0.0571 +0 0.7101 +0 0.0760 +0 0.0917 +0 0.0871 +0 0.0507 +0 0.0922 +0 0.0776 +0 0.0534 +0 0.0673 +0 0.0525 +0 0.0777 +0 0.2213 +0 0.2275 +0 0.0789 +0 0.1220 +0 0.0403 +0 0.1656 +0 0.1266 +0 0.1131 +0 0.3978 +0 0.0646 +0 0.0933 +0 0.1442 +0 0.1319 +0 0.0837 +0 0.0955 +0 0.1152 +0 0.0767 +0 0.0874 +0 0.1579 +0 0.0405 +0 0.1381 +0 0.0724 +1 0.7749 +0 0.0895 +0 0.0590 +0 0.0827 +0 0.2523 +0 0.0731 +0 0.0733 +0 0.1212 +0 0.0593 +0 0.1502 +0 0.2592 +0 0.0469 +0 0.0783 +0 0.3657 +0 0.0612 +0 0.0803 +0 0.0405 +0 0.2237 +0 0.2756 +0 0.2650 +0 0.0942 +0 0.2031 +0 0.0901 +0 0.1697 +0 0.1171 +0 0.0728 +0 0.0841 +0 0.0721 +0 0.0445 +0 0.0435 +0 0.1855 +0 0.0975 +0 0.1459 +0 0.0651 +0 0.0383 +0 0.0497 +0 0.0690 +0 0.1332 +0 0.1482 +0 0.0822 +0 0.7068 +0 0.1254 +0 0.1758 +0 0.3031 +0 0.1897 +0 0.0934 +0 0.0612 +0 0.0928 +0 0.3105 +0 0.0542 +0 0.1316 +0 0.4255 +1 0.7514 +0 0.3088 +0 0.0754 +0 0.0824 +0 0.2934 +0 0.2341 +0 0.0421 +0 0.1101 +0 0.7323 +0 0.0855 +0 0.1523 +0 0.0507 +0 0.1153 +0 0.2076 +0 0.0934 +0 0.0807 +0 0.0869 +0 0.1663 +0 0.0789 +0 0.1408 +0 0.0318 +0 0.3082 +0 0.1168 +0 0.1349 +0 0.0662 +0 0.3461 +0 0.0499 +0 0.1050 +0 0.0885 +0 0.0668 +0 0.1404 +0 0.0884 +0 0.0941 +0 0.0857 +0 0.1221 +0 0.1509 +0 0.0776 +0 0.1371 +0 0.0980 +0 0.0710 +0 0.0869 +0 0.0385 +0 0.0825 +0 0.0664 +0 0.1995 +0 0.0520 +0 0.0545 +0 0.2546 +0 0.1285 +0 0.0557 +0 0.2039 +1 0.8206 +0 0.1262 +0 0.0998 +0 0.0505 +0 0.0776 +0 0.1078 +0 0.1818 +0 0.0804 +0 0.1268 +0 0.2118 +0 0.1709 +0 0.1721 +0 0.0897 +0 0.1299 +0 0.0952 +0 0.0860 +0 0.0872 +0 0.3715 +0 0.0384 +0 0.1199 +0 0.0408 +1 0.8377 +0 0.1115 +0 0.0796 +0 0.0923 +0 0.0549 +0 0.1241 +0 0.0594 +0 0.0824 +0 0.2080 +0 0.0977 +0 0.0945 +0 0.0656 +0 0.0602 +0 0.2935 +0 0.0800 +0 0.1774 +0 0.1816 +0 0.0927 +0 0.1155 +0 0.1422 +0 0.0562 +0 0.0602 +0 0.3389 +0 0.0799 +0 0.1504 +0 0.1456 +0 0.1623 +0 0.0841 +0 0.1773 +0 0.1941 +0 0.2063 +0 0.1928 +1 0.7781 +0 0.0705 +0 0.1545 +0 0.0337 +0 0.0292 +0 0.1665 +0 0.2430 +0 0.0890 +0 0.0889 +0 0.0480 +0 0.0735 +0 0.0919 +0 0.0668 +0 0.0906 +0 0.0997 +0 0.0899 +0 0.1578 +0 0.0922 +0 0.1280 +0 0.0847 +0 0.0663 +0 0.0345 +0 0.0855 +0 0.0713 +0 0.0683 +0 0.0565 +0 0.0998 +0 0.0925 +0 0.2327 +0 0.1701 +0 0.0767 +0 0.2028 +0 0.1210 +0 0.1120 +0 0.0942 +0 0.1155 +0 0.0673 +0 0.1161 +0 0.2765 +0 0.2841 +0 0.0956 +0 0.0363 +0 0.0951 +0 0.2296 +0 0.0416 +0 0.0960 +0 0.1500 +0 0.1488 +0 0.3228 +0 0.2420 +0 0.0768 +0 0.1402 +0 0.1351 +0 0.1858 +0 0.1555 +0 0.2862 +0 0.0567 +0 0.3073 +0 0.1416 +0 0.2555 +0 0.1064 +0 0.0907 +0 0.0396 +0 0.0435 +0 0.7321 +0 0.1172 +0 0.0552 +0 0.1793 +0 0.3329 +0 0.0736 +0 0.0606 +0 0.0781 +0 0.0513 +0 0.0807 +0 0.1125 +0 0.0766 +0 0.1005 +0 0.0901 +0 0.1484 +0 0.0865 +0 0.0869 +0 0.5189 +0 0.7460 +0 0.1015 +0 0.0571 +0 0.2583 +0 0.0642 +0 0.3066 +0 0.0502 +0 0.3448 +0 0.1773 +0 0.0656 +0 0.0487 +0 0.2304 +0 0.2566 +0 0.1700 +0 0.0649 +0 0.3424 +0 0.0981 +0 0.0911 +0 0.0583 +0 0.0753 +0 0.2880 +0 0.0378 +0 0.1075 +0 0.0703 +0 0.2508 +0 0.0557 +0 0.1141 +0 0.0801 +0 0.1590 +0 0.1886 +0 0.0721 +0 0.0967 +0 0.1452 +0 0.1079 +0 0.1161 +0 0.0580 +0 0.0595 +0 0.1019 +0 0.3441 +0 0.0515 +0 0.0646 +0 0.1570 +0 0.1410 +0 0.0686 +0 0.0866 +0 0.0393 +0 0.0860 +0 0.0601 +0 0.0581 +0 0.2549 +0 0.1476 +0 0.1107 +0 0.0705 +0 0.1217 +0 0.2594 +0 0.1712 +0 0.0965 +0 0.1830 +0 0.0866 +0 0.2355 +0 0.2147 +0 0.1181 +0 0.1411 +0 0.0735 +0 0.0872 +0 0.2277 +0 0.0865 +0 0.1449 +0 0.0988 +0 0.1796 +0 0.1347 +0 0.1786 +0 0.1795 +0 0.0541 +0 0.0828 +0 0.0513 +0 0.2466 +0 0.1024 +0 0.1364 +1 0.9064 +0 0.2544 +0 0.0838 +0 0.1491 +0 0.0591 +0 0.1498 +0 0.0857 +0 0.1409 +0 0.0674 +0 0.1006 +0 0.0726 +0 0.1197 +0 0.2025 +0 0.0596 +0 0.0711 +0 0.0961 +0 0.1102 +0 0.0377 +0 0.0730 +0 0.0938 +0 0.0717 +0 0.1378 +0 0.0770 +0 0.3152 +1 0.7904 +0 0.0844 +0 0.1343 +0 0.1333 +0 0.0874 +0 0.2512 +0 0.2788 +0 0.0628 +0 0.0894 +0 0.4744 +1 0.8140 +0 0.0931 +0 0.2206 +0 0.2242 +0 0.1213 +0 0.1131 +0 0.0973 +0 0.1111 +0 0.7497 +0 0.0883 +0 0.3777 +0 0.0501 +0 0.1379 +0 0.3349 +0 0.1719 +0 0.2183 +0 0.0608 +0 0.0922 +0 0.1182 +0 0.0881 +0 0.1746 +0 0.3323 +0 0.0873 +0 0.0595 +0 0.0741 +0 0.0829 +0 0.1481 +0 0.2738 +0 0.2545 +0 0.2657 +0 0.1602 +0 0.0456 +0 0.0547 +0 0.1959 +0 0.0848 +0 0.1050 +0 0.0605 +0 0.0596 +0 0.1518 +0 0.1182 +0 0.1209 +0 0.2949 +0 0.0616 +1 0.8213 +0 0.0732 +0 0.2046 +0 0.3131 +0 0.0691 +0 0.0712 +0 0.1048 +0 0.0304 +0 0.0448 +0 0.0681 +0 0.1412 +0 0.0623 +0 0.1034 +0 0.1109 +0 0.2730 +0 0.1504 +0 0.1730 +0 0.0700 +0 0.0885 +0 0.0873 +0 0.0952 +0 0.0649 +0 0.3015 +0 0.0547 +0 0.1778 +0 0.1572 +0 0.0826 +0 0.0735 +0 0.0351 +0 0.1463 +0 0.1381 +0 0.1059 +0 0.1577 +1 0.7527 +0 0.1393 +0 0.2336 +0 0.1029 +0 0.2136 +0 0.0531 +0 0.3716 +0 0.0540 +0 0.1852 +0 0.1185 +0 0.4875 +0 0.0613 +0 0.1401 +0 0.1693 +0 0.0771 +0 0.2505 +0 0.5777 +0 0.1560 +0 0.0605 +0 0.2196 +0 0.2348 +0 0.2424 +0 0.2143 +0 0.0750 +0 0.0526 +0 0.7498 +0 0.0344 +0 0.0983 +0 0.0810 +0 0.0878 +0 0.3008 +0 0.2393 +0 0.2354 +0 0.0734 +0 0.0729 +0 0.1023 +0 0.1167 +0 0.0686 +0 0.0792 +0 0.1456 +0 0.0819 +0 0.0877 +0 0.0530 +0 0.0758 +0 0.2155 +0 0.0926 +0 0.2593 +0 0.0575 +0 0.1115 +0 0.0823 +0 0.1426 +0 0.0885 +0 0.0273 +0 0.1191 +0 0.0728 +1 0.7773 +0 0.0811 +0 0.0466 +0 0.0882 +0 0.0780 +0 0.1241 +0 0.0657 +0 0.2693 +0 0.0477 +0 0.0847 +0 0.1987 +0 0.0502 +0 0.2200 +0 0.1116 +0 0.0524 +0 0.0972 +0 0.1951 +0 0.0849 +0 0.3712 +0 0.1395 +0 0.0902 +0 0.0745 +0 0.0756 +0 0.0472 +0 0.0528 +0 0.0976 +0 0.1591 +0 0.0758 +0 0.0904 +0 0.1463 +0 0.3578 +0 0.0613 +0 0.1164 +0 0.0406 +0 0.5632 +0 0.0567 +0 0.0948 +0 0.0682 +0 0.0621 +0 0.0479 +0 0.3434 +0 0.1933 +0 0.3560 +0 0.1338 +0 0.1171 +0 0.1378 +0 0.0658 +0 0.0695 +0 0.0880 +0 0.1493 +0 0.0749 +0 0.1204 +0 0.2355 +0 0.4947 +0 0.0624 +0 0.1024 +0 0.0833 +0 0.0633 +0 0.0866 +0 0.0359 +0 0.0847 +0 0.2350 +0 0.2045 +0 0.1242 +0 0.5914 +0 0.0925 +0 0.1011 +0 0.0748 +0 0.7295 +0 0.3352 +0 0.1298 +0 0.1016 +0 0.1788 +0 0.2555 +0 0.1073 +0 0.1105 +0 0.0879 +0 0.0616 +0 0.0824 +0 0.0644 +0 0.3833 +0 0.1408 +0 0.1418 +0 0.2052 +1 0.8484 +0 0.0845 +1 0.8560 +0 0.1540 +0 0.1585 +0 0.0719 +0 0.1720 +0 0.2169 +0 0.1417 +0 0.0696 +0 0.2213 +0 0.2760 +0 0.1380 +0 0.0753 +0 0.6349 +0 0.0661 +0 0.4324 +0 0.0547 +0 0.0947 +0 0.0922 +0 0.1247 +0 0.6258 +0 0.3352 +0 0.0372 +0 0.0902 +0 0.0747 +0 0.0619 +0 0.1283 +0 0.1324 +0 0.3153 +0 0.1465 +0 0.1754 +0 0.3392 +0 0.0821 +0 0.0865 +0 0.2155 +0 0.1132 +0 0.0723 +0 0.1434 +0 0.3399 +0 0.2050 +0 0.0591 +0 0.1358 +0 0.0607 +0 0.1602 +0 0.5130 +0 0.2964 +0 0.1712 +0 0.1784 +0 0.1095 +0 0.0985 +0 0.0602 +0 0.2845 +0 0.0782 +0 0.2296 +0 0.0679 +0 0.0785 +0 0.0846 +0 0.0538 +0 0.0310 +0 0.3695 +0 0.1071 +0 0.1200 +0 0.1416 +0 0.4532 +0 0.2982 +0 0.0778 +0 0.1337 +0 0.4851 +0 0.1710 +0 0.0668 +0 0.0635 +0 0.0556 +0 0.0504 +0 0.1262 +0 0.0741 +0 0.0621 +0 0.0792 +0 0.1114 +0 0.0877 +0 0.1464 +0 0.0566 +0 0.1978 +0 0.0704 +0 0.1103 +0 0.1214 +0 0.1458 +0 0.1082 +0 0.0682 +0 0.0862 +0 0.0821 +0 0.1819 +0 0.1381 +0 0.6745 +0 0.3356 +0 0.0955 +0 0.0901 +0 0.0425 +0 0.1635 +0 0.0675 +0 0.0358 +0 0.0299 +0 0.1753 +0 0.2566 +0 0.0817 +0 0.1874 +0 0.1257 +0 0.0794 +0 0.1232 +0 0.1373 +0 0.1416 +0 0.0712 +0 0.0731 +0 0.1089 +0 0.2153 +0 0.1555 +0 0.2733 +0 0.1764 +0 0.1214 +0 0.1405 +0 0.1228 +0 0.2307 +0 0.0606 +0 0.0934 +0 0.1262 +0 0.0643 +0 0.0876 +0 0.0348 +0 0.0983 +0 0.1080 +0 0.1675 +0 0.1309 +0 0.0962 +0 0.1562 +0 0.1772 +0 0.1063 +0 0.1014 +0 0.3383 +0 0.0956 +0 0.0717 +0 0.4395 +0 0.0798 +0 0.0728 +0 0.1023 +0 0.1006 +0 0.3880 +0 0.5255 +0 0.1432 +0 0.1176 +0 0.1115 +0 0.1402 +0 0.0801 +0 0.1211 +0 0.1454 +0 0.2676 +0 0.0771 +0 0.0501 +0 0.1190 +0 0.1146 +0 0.1232 +0 0.1190 +0 0.0483 +0 0.2072 +0 0.0911 +0 0.0605 +0 0.1320 +0 0.1047 +0 0.0982 +0 0.0869 +0 0.0716 +0 0.1810 +0 0.2714 +0 0.0528 +0 0.6805 +0 0.2641 +0 0.0992 +0 0.0627 +0 0.0622 +0 0.1619 +0 0.6598 +0 0.1656 +0 0.0520 +0 0.1799 +0 0.1408 +0 0.1145 +0 0.0845 +0 0.1933 +0 0.1496 +0 0.0803 +0 0.0616 +0 0.2191 +0 0.3386 +0 0.0851 +0 0.0984 +0 0.1200 +0 0.3672 +0 0.0569 +0 0.5742 +0 0.0919 +0 0.2415 +0 0.0864 +0 0.2051 +0 0.1590 +0 0.1624 +0 0.0682 +1 0.9000 +0 0.0674 +0 0.1132 +0 0.2187 +0 0.0410 +0 0.1208 +0 0.0606 +0 0.1615 +0 0.1860 +0 0.1566 +0 0.7123 +0 0.0604 +0 0.1311 +0 0.0796 +0 0.0679 +0 0.2371 +0 0.1138 +0 0.0687 +0 0.1082 +0 0.0857 +0 0.1278 +0 0.1338 +0 0.0375 +0 0.0661 +0 0.1029 +0 0.1881 +0 0.0594 +0 0.3321 +0 0.0705 +1 0.8458 +0 0.0849 +0 0.0425 +0 0.1471 +0 0.1912 +0 0.1020 +0 0.1185 +0 0.0472 +0 0.0746 +0 0.0588 +0 0.0760 +0 0.2870 +0 0.1443 +0 0.2826 +0 0.1485 +0 0.1099 +0 0.2055 +0 0.6463 +0 0.0454 +0 0.1629 +0 0.0729 +0 0.6478 +0 0.0755 +0 0.0378 +0 0.1434 +0 0.0963 +0 0.6929 +1 0.8042 +0 0.0559 +0 0.0556 +0 0.0609 +0 0.1041 +0 0.2569 +0 0.0751 +1 0.7862 +0 0.0624 +0 0.2150 +0 0.0789 +0 0.0989 +0 0.1103 +0 0.2397 +0 0.1003 +0 0.4283 +0 0.0576 +0 0.0429 +0 0.1591 +0 0.1639 +0 0.0595 +0 0.2749 +0 0.1107 +0 0.1322 +0 0.0583 +0 0.1873 +0 0.0876 +0 0.1525 +0 0.2265 +0 0.0894 +0 0.0785 +0 0.1567 +0 0.1481 +0 0.0567 +0 0.1019 +0 0.0587 +0 0.1222 +0 0.1276 +0 0.0821 +0 0.0689 +0 0.1643 +0 0.0619 +0 0.1813 +0 0.1327 +0 0.0618 +0 0.0402 +0 0.0517 +0 0.2314 +0 0.0928 +0 0.5399 +0 0.1485 +0 0.0762 +0 0.1831 +0 0.3103 +0 0.1524 +0 0.1682 +0 0.1706 +0 0.1054 +0 0.1491 +0 0.1297 +0 0.0951 +0 0.0737 +0 0.1421 +0 0.0776 +0 0.0984 +0 0.1549 +0 0.1156 +0 0.1763 +0 0.2081 +0 0.1525 +0 0.2602 +0 0.0914 +0 0.0748 +0 0.1527 +0 0.0560 +0 0.0754 +0 0.1122 +0 0.1312 +0 0.1111 +0 0.1925 +0 0.1297 +0 0.0583 +0 0.1202 +0 0.0738 +0 0.1141 +0 0.0489 +0 0.0568 +0 0.0622 +0 0.1113 +0 0.1307 +0 0.1532 +0 0.0505 +0 0.0555 +0 0.0761 +0 0.2218 +0 0.0697 +0 0.3125 +0 0.2089 +0 0.0748 +0 0.1749 +0 0.0713 +0 0.1523 +0 0.0885 +0 0.0991 +0 0.0591 +0 0.0554 +0 0.1461 +0 0.2241 +0 0.1651 +0 0.2378 +0 0.0655 +0 0.3281 +1 0.7527 +0 0.1645 +0 0.1386 +0 0.1655 +0 0.0568 +1 0.8172 +0 0.1554 +0 0.1577 +0 0.1873 +0 0.0651 +0 0.0769 +0 0.2676 +0 0.0581 +0 0.1658 +0 0.1245 +0 0.0835 +0 0.1589 +0 0.2295 +0 0.0538 +0 0.1404 +0 0.0461 +0 0.1403 +0 0.2355 +0 0.3506 +0 0.4580 +0 0.0586 +0 0.0812 +0 0.0845 +0 0.1592 +0 0.2655 +0 0.3295 +0 0.0612 +0 0.1316 +0 0.0619 +0 0.0468 +0 0.1949 +0 0.1794 +0 0.0870 +0 0.5686 +0 0.2508 +0 0.3419 +0 0.0498 +0 0.1086 +0 0.1042 +0 0.2250 +0 0.0888 +0 0.1962 +0 0.0897 +0 0.1300 +0 0.1478 +0 0.0968 +0 0.0339 +0 0.0717 +0 0.0634 +0 0.3029 +0 0.1356 +0 0.1129 +0 0.0787 +0 0.2724 +0 0.0725 +0 0.1382 +0 0.0546 +0 0.0868 +1 0.8164 +0 0.0987 +0 0.2356 +0 0.1966 +0 0.0787 +0 0.0631 +0 0.0902 +0 0.1464 +0 0.0998 +0 0.1761 +0 0.1675 +0 0.0688 +0 0.0835 +0 0.1119 +0 0.2336 +1 0.8373 +0 0.2455 +0 0.1047 +0 0.3833 +0 0.0957 +0 0.1224 +0 0.0372 +0 0.1412 +0 0.0629 +0 0.3126 +0 0.1291 +0 0.0898 +0 0.0810 +0 0.0974 +0 0.2225 +0 0.0632 +0 0.1815 +0 0.2131 +0 0.1386 +0 0.0884 +0 0.1534 +0 0.0571 +0 0.1309 +0 0.0685 +0 0.2942 +0 0.0504 +0 0.0755 +0 0.0930 +0 0.2216 +0 0.0608 +0 0.1853 +0 0.0782 +0 0.0761 +0 0.0803 +0 0.0536 +0 0.0823 +0 0.1436 +0 0.1333 +0 0.2049 +0 0.3712 +0 0.0452 +0 0.1216 +0 0.0361 +0 0.5742 +0 0.1492 +0 0.2459 +0 0.1068 +0 0.0471 +0 0.1450 +0 0.2351 +0 0.1393 +1 0.7507 +0 0.1272 +0 0.0910 +0 0.4782 +0 0.0983 +0 0.1724 +0 0.3172 +0 0.1903 +0 0.1766 +0 0.5907 +0 0.1657 +0 0.1437 +0 0.1000 +0 0.2198 +0 0.2396 +0 0.5948 +0 0.0897 +0 0.1089 +0 0.1210 +0 0.2740 +0 0.0668 +0 0.0706 +0 0.0647 +0 0.1876 +0 0.0512 +0 0.1230 +1 0.7629 +0 0.0615 +0 0.1567 +0 0.1385 +0 0.0483 +0 0.0572 +0 0.0497 +0 0.3505 +0 0.0652 +0 0.0696 +0 0.2314 +0 0.1573 +0 0.3552 +0 0.0530 +0 0.0735 +0 0.1249 +0 0.0776 +0 0.1088 +0 0.0507 +0 0.2648 +0 0.0582 +0 0.0561 +0 0.1187 +0 0.2736 +0 0.2261 +0 0.0498 +0 0.0890 +0 0.1927 +0 0.1770 +0 0.3884 +0 0.0839 +0 0.0818 +0 0.2203 +0 0.0681 +0 0.0511 +0 0.1167 +0 0.0351 +0 0.2725 +0 0.0972 +0 0.1118 +0 0.0715 +0 0.0412 +0 0.0647 +0 0.0571 +0 0.1789 +0 0.0627 +0 0.0583 +0 0.0338 +0 0.0551 +0 0.0834 +0 0.1843 +0 0.2959 +0 0.1503 +0 0.0516 +0 0.1178 +0 0.0896 +0 0.2586 +1 0.8389 +0 0.0872 +0 0.0399 +0 0.1017 +0 0.1063 +0 0.2311 +0 0.1292 +0 0.0437 +0 0.1489 +0 0.2806 +0 0.0499 +0 0.0951 +0 0.0432 +0 0.1971 +0 0.2642 +0 0.0548 +0 0.0547 +0 0.0882 +0 0.1964 +0 0.2597 +0 0.0865 +0 0.2294 +0 0.4618 +0 0.0913 +0 0.1079 +0 0.0800 +0 0.0740 +0 0.0788 +0 0.0669 +0 0.1239 +0 0.1561 +0 0.0569 +0 0.1396 +0 0.0940 +0 0.2558 +0 0.0560 +0 0.0877 +0 0.1426 +0 0.0742 +0 0.2618 +0 0.2982 +0 0.3338 +0 0.0929 +0 0.0929 +0 0.1476 +0 0.1418 +0 0.0831 +0 0.0584 +0 0.0798 +0 0.0683 +0 0.0830 +0 0.0931 +0 0.0927 +0 0.0705 +0 0.1219 +0 0.1165 +0 0.1523 +0 0.4074 +0 0.3961 +0 0.6512 +0 0.0949 +0 0.0945 +0 0.0381 +0 0.0848 +0 0.1691 +0 0.0535 +0 0.2113 +0 0.1073 +0 0.3305 +0 0.0980 +0 0.4124 +0 0.0794 +0 0.0958 +0 0.2217 +0 0.2898 +0 0.2802 +0 0.0995 +0 0.0657 +0 0.1125 +0 0.1529 +0 0.1531 +0 0.1728 +0 0.0973 +0 0.1372 +0 0.0532 +0 0.6453 +0 0.0891 +0 0.1570 +0 0.0627 +0 0.0918 +0 0.0870 +0 0.0599 +0 0.1404 +0 0.0662 +0 0.2095 +0 0.1152 +0 0.1658 +0 0.0887 +0 0.1270 +0 0.0809 +0 0.0314 +0 0.1816 +0 0.0486 +0 0.0610 +0 0.0571 +0 0.1618 +0 0.1280 +0 0.0690 +0 0.0793 +0 0.1181 +0 0.0666 +0 0.2395 +0 0.2132 +0 0.0685 +0 0.1330 +0 0.1825 +0 0.1219 +1 0.8761 +0 0.1724 +0 0.0738 +0 0.1536 +0 0.1175 +0 0.2219 +0 0.1381 +0 0.1397 +0 0.5803 +0 0.2163 +0 0.1713 +0 0.0931 +0 0.0773 +0 0.0927 +0 0.1062 +0 0.0681 +0 0.0844 +0 0.5645 +0 0.2646 +0 0.0743 +0 0.0877 +0 0.1083 +0 0.1335 +0 0.0614 +0 0.0394 +0 0.3110 +0 0.1293 +0 0.1207 +0 0.2008 +0 0.0835 +0 0.0307 +0 0.1964 +0 0.0965 +0 0.1258 +0 0.7144 +0 0.2152 +0 0.4907 +1 0.7852 +0 0.0510 +0 0.0894 +0 0.1797 +0 0.0676 +0 0.3181 +0 0.1596 +0 0.0392 +0 0.1211 +0 0.0670 +0 0.1396 +0 0.2587 +0 0.0489 +0 0.0547 +0 0.0996 +0 0.0947 +0 0.1983 +0 0.2480 +0 0.1190 +0 0.1686 +0 0.1340 +0 0.5100 +0 0.0898 +0 0.3509 +0 0.1318 +1 0.7947 +0 0.0388 +0 0.1042 +0 0.0769 +0 0.5140 +0 0.1208 +0 0.1692 +0 0.1429 +0 0.0892 +0 0.0883 +0 0.0854 +0 0.0549 +0 0.0342 +0 0.2545 +0 0.0659 +0 0.1179 +0 0.0703 +0 0.0481 +0 0.0988 +0 0.1796 +0 0.3307 +0 0.1338 +0 0.2170 +0 0.0913 +0 0.1045 +0 0.0708 +0 0.2270 +0 0.1474 +0 0.0507 +0 0.0965 +0 0.1119 +0 0.0611 +0 0.0661 +0 0.0975 +0 0.6912 +0 0.0734 +0 0.1307 +0 0.1687 +0 0.2465 +0 0.4182 +0 0.1132 +0 0.1070 +0 0.0954 +0 0.0689 +0 0.0963 +0 0.1236 +0 0.1208 +0 0.0554 +0 0.0750 +0 0.2422 +0 0.0497 +0 0.1249 +0 0.0792 +0 0.1265 +0 0.1822 +0 0.0521 +0 0.0455 +0 0.0941 +0 0.0390 +0 0.1320 +0 0.1822 +0 0.1039 +0 0.0712 +0 0.0525 +0 0.0946 +0 0.0417 +0 0.2359 +0 0.1019 +0 0.5067 +0 0.1123 +0 0.3669 +0 0.0852 +0 0.1870 +0 0.1043 +0 0.0832 +0 0.0832 +0 0.2010 +0 0.2930 +0 0.1618 +0 0.1582 +0 0.1485 +0 0.0565 +0 0.1151 +0 0.1035 +0 0.0711 +0 0.1641 +0 0.1017 +0 0.1186 +0 0.1099 +0 0.1683 +0 0.1149 +0 0.0969 +0 0.0555 +0 0.1138 +0 0.3411 +0 0.1337 +0 0.1129 +0 0.0622 +0 0.0649 +0 0.3092 +0 0.4963 +0 0.2378 +0 0.1190 +0 0.1955 +0 0.0750 +0 0.0978 +0 0.0529 +0 0.1563 +0 0.1151 +0 0.1301 +0 0.1647 +0 0.1168 +0 0.0853 +0 0.1215 +0 0.1059 +0 0.2342 +0 0.1024 +0 0.1396 +0 0.3037 +0 0.2431 +0 0.0932 +0 0.1645 +0 0.1259 +0 0.1697 +0 0.0721 +0 0.1345 +0 0.0572 +0 0.0996 +0 0.0586 +0 0.1008 +0 0.0710 +0 0.0596 +0 0.0551 +0 0.1383 +0 0.1015 +0 0.7234 +0 0.0918 +0 0.0615 +0 0.2032 +0 0.0943 +0 0.0689 +0 0.0831 +0 0.0709 +0 0.1091 +0 0.0991 +0 0.1064 +0 0.4389 +0 0.2177 +0 0.2028 +0 0.1398 +1 0.8610 +0 0.2879 +0 0.2047 +0 0.2893 +0 0.0872 +0 0.0691 +0 0.1188 +0 0.0952 +0 0.0964 +0 0.1274 +0 0.3295 +0 0.0735 +0 0.3516 +0 0.0848 +0 0.1004 +0 0.1633 +0 0.0922 +0 0.1401 +0 0.1011 +0 0.1226 +0 0.0909 +0 0.1253 +0 0.0456 +0 0.3818 +0 0.2012 +0 0.1109 +0 0.2194 +0 0.1185 +0 0.1280 +0 0.0479 +0 0.0623 +0 0.0668 +0 0.0712 +0 0.1520 +0 0.0458 +1 0.7628 +0 0.1289 +0 0.1190 +0 0.2683 +0 0.1446 +0 0.0425 +0 0.0625 +0 0.2702 +0 0.0564 +0 0.0989 +0 0.6060 +0 0.1762 +0 0.0607 +0 0.1431 +0 0.6902 +0 0.0954 +0 0.0496 +0 0.0923 +0 0.0497 +0 0.1751 +0 0.0666 +0 0.0618 +0 0.2978 +0 0.1744 +0 0.0917 +0 0.0801 +0 0.1483 +0 0.0573 +0 0.0554 +0 0.4464 +0 0.0760 +0 0.0419 +0 0.0718 +0 0.2021 +0 0.0717 +1 0.7663 +1 0.8708 +0 0.1444 +0 0.1841 +0 0.1150 +0 0.0465 +0 0.1563 +0 0.3065 +0 0.2286 +0 0.3048 +0 0.1199 +0 0.3346 +0 0.1782 +0 0.0789 +0 0.1128 +0 0.1887 +0 0.0416 +0 0.1407 +0 0.1324 +0 0.0516 +0 0.0718 +0 0.1261 +0 0.1529 +0 0.1548 +0 0.0696 +0 0.0874 +0 0.1272 +0 0.0641 +0 0.4734 +0 0.1809 +0 0.7089 +0 0.0410 +0 0.1966 +0 0.1028 +0 0.0647 +0 0.2301 +0 0.1697 +0 0.1560 +0 0.0607 +0 0.1455 +0 0.0751 +0 0.1506 +0 0.1089 +0 0.1858 +0 0.1184 +0 0.1292 +0 0.0823 +0 0.1103 +0 0.1575 +0 0.1282 +0 0.0414 +0 0.0646 +0 0.2712 +0 0.1442 +0 0.1255 +0 0.1054 +0 0.0444 +0 0.1277 +0 0.1600 +0 0.0870 +0 0.2984 +0 0.2994 +0 0.1056 +0 0.1013 +0 0.3700 +0 0.1045 +0 0.0367 +0 0.1905 +0 0.0547 +0 0.1830 +0 0.1024 +0 0.1439 +0 0.2051 +0 0.0548 +0 0.0724 +0 0.0764 +0 0.0733 +0 0.0917 +0 0.1043 +0 0.1927 +0 0.0595 +0 0.7302 +0 0.0832 +0 0.0888 +0 0.1041 +0 0.0730 +0 0.1597 +0 0.1516 +0 0.0893 +0 0.1609 +0 0.0981 +0 0.1428 +0 0.2202 +0 0.0541 +0 0.1442 +0 0.1059 +0 0.1407 +0 0.0332 +0 0.1356 +0 0.0722 +0 0.1374 +0 0.0889 +0 0.0604 +0 0.6359 +0 0.0909 +0 0.1188 +0 0.0521 +0 0.0644 +0 0.0937 +0 0.0624 +0 0.1455 +0 0.0704 +0 0.0532 +0 0.1021 +0 0.1147 +0 0.1269 +0 0.3521 +0 0.1581 +0 0.0927 +0 0.0664 +0 0.1120 +0 0.0551 +0 0.0818 +0 0.0591 +0 0.0492 +0 0.0377 +0 0.1409 +0 0.2020 +0 0.1213 +0 0.0761 +0 0.0781 +0 0.0982 +0 0.0812 +0 0.1633 +0 0.0595 +0 0.0861 +0 0.0742 +0 0.1306 +0 0.4912 +0 0.0584 +0 0.1430 +0 0.0924 +0 0.0951 +0 0.0848 +0 0.0771 +0 0.0634 +0 0.1226 +0 0.1547 +0 0.0835 +0 0.0352 +0 0.1727 +0 0.0681 +0 0.0878 +0 0.1008 +0 0.1313 +0 0.0818 +0 0.1745 +0 0.4621 +0 0.0823 +0 0.0601 +0 0.0692 +0 0.0744 +0 0.4079 +0 0.1144 +0 0.0962 +0 0.0747 +0 0.1081 +0 0.0734 +0 0.0718 +0 0.1893 +0 0.2093 +0 0.0571 +0 0.0377 +0 0.0937 +0 0.0812 +0 0.3602 +0 0.1335 +0 0.6377 +0 0.1412 +0 0.2880 +0 0.1324 +0 0.0745 +0 0.0407 +0 0.4145 +0 0.0881 +0 0.1109 +0 0.1015 +0 0.0675 +0 0.1403 +0 0.0769 +0 0.1322 +0 0.0779 +0 0.1214 +0 0.1363 +0 0.1018 +0 0.0570 +0 0.1018 +0 0.0700 +0 0.6673 +0 0.0947 +0 0.2770 +0 0.1428 +0 0.0935 +0 0.0728 +0 0.1263 +0 0.0777 +0 0.0506 +0 0.5257 +0 0.1055 +0 0.0500 +0 0.1022 +0 0.1683 +0 0.0874 +0 0.2059 +0 0.0924 +0 0.0468 +0 0.0763 +0 0.1197 +0 0.0796 +0 0.1306 +0 0.0741 +0 0.0553 +0 0.1193 +0 0.0673 +0 0.1116 +0 0.2462 +0 0.0795 +0 0.0781 +0 0.1272 +0 0.1466 +0 0.0970 +0 0.1000 +0 0.1634 +0 0.0568 +0 0.1607 +0 0.1039 +0 0.1247 +0 0.0905 +0 0.0557 +0 0.1221 +0 0.1977 +0 0.1011 +0 0.0796 +0 0.3642 +0 0.2142 +0 0.1360 +0 0.2608 +0 0.0901 +0 0.1494 +0 0.1022 +0 0.1513 +0 0.2563 +0 0.0744 +0 0.0584 +0 0.0718 +0 0.0598 +0 0.0889 +0 0.3223 +0 0.1167 +0 0.1973 +0 0.0826 +0 0.0916 +0 0.2418 +0 0.1752 +0 0.0453 +0 0.1425 +0 0.1039 +0 0.0848 +0 0.1790 +0 0.1194 +0 0.1246 +0 0.1494 +0 0.2212 +0 0.1120 +0 0.0713 +0 0.0906 +0 0.2745 +0 0.1185 +0 0.1213 +0 0.2519 +0 0.1029 +0 0.0983 +0 0.0960 +0 0.0638 +0 0.1677 +0 0.0495 +0 0.2869 +0 0.0503 +0 0.1723 +0 0.0920 +0 0.1147 +0 0.1053 +0 0.0804 +0 0.0544 +0 0.1121 +0 0.0584 +0 0.0961 +0 0.0462 +0 0.2100 +0 0.1232 +0 0.0939 +0 0.1311 +0 0.6636 +0 0.1151 +0 0.0426 +0 0.0908 +0 0.1334 +0 0.0688 +0 0.1307 +0 0.0529 +0 0.4430 +0 0.1377 +0 0.1779 +0 0.0900 +0 0.1358 +0 0.0944 +0 0.2312 +0 0.4570 +0 0.0775 +0 0.1124 +0 0.1593 +0 0.0500 +0 0.1321 +0 0.0803 +0 0.1205 +0 0.0436 +0 0.1507 +0 0.2965 +0 0.1415 +0 0.2115 +0 0.0677 +0 0.0677 +0 0.1034 +0 0.0715 +0 0.0830 +0 0.0771 +0 0.2731 +0 0.3617 +0 0.0962 +0 0.3648 +0 0.0734 +0 0.0701 +0 0.1234 +0 0.1112 +0 0.0701 +0 0.3095 +0 0.1836 +0 0.1862 +0 0.1471 +0 0.1039 +0 0.2028 +0 0.0638 +0 0.1301 +0 0.0443 +0 0.1476 +0 0.1904 +0 0.6452 +0 0.0471 +0 0.3257 +1 0.8525 +0 0.1524 +0 0.1475 +0 0.1639 +0 0.0687 +0 0.3694 +0 0.1690 +0 0.1036 +0 0.0814 +0 0.0819 +0 0.2068 +0 0.0723 +0 0.0649 +0 0.0534 +0 0.0711 +0 0.4445 +0 0.0962 +0 0.1143 +0 0.1519 +0 0.1254 +0 0.0770 +0 0.0993 +0 0.1369 +0 0.1017 +0 0.1096 +0 0.1095 +0 0.0687 +0 0.0929 +0 0.0457 +0 0.0569 +0 0.0774 +0 0.1922 +0 0.1083 +0 0.1100 +0 0.1056 +0 0.1254 +0 0.4427 +0 0.1083 +0 0.1812 +0 0.0603 +0 0.0950 +0 0.1610 +0 0.0696 +0 0.1223 +0 0.4208 +0 0.0668 +0 0.2413 +0 0.0891 +0 0.2416 +0 0.2381 +0 0.0946 +0 0.0659 +0 0.1788 +0 0.1051 +0 0.0627 +0 0.0511 +0 0.1105 +0 0.0890 +0 0.0945 +0 0.0436 +0 0.0484 +0 0.1677 +0 0.0904 +0 0.1582 +0 0.0718 +0 0.1707 +0 0.1679 +0 0.3135 +0 0.0781 +0 0.0651 +0 0.0900 +0 0.1582 +0 0.0538 +0 0.1091 +0 0.0642 +0 0.1651 +0 0.1972 +0 0.1027 +0 0.1035 +0 0.0504 +0 0.1167 +0 0.1485 +0 0.1810 +0 0.1198 +0 0.0956 +0 0.5207 +0 0.0841 +0 0.2191 +0 0.1950 +0 0.0888 +0 0.1640 +0 0.0579 +0 0.0946 +0 0.1777 +0 0.0983 +0 0.0673 +0 0.0692 +0 0.0412 +0 0.0493 +0 0.0799 +0 0.5579 +0 0.1241 +0 0.2403 +0 0.2629 +0 0.6862 +0 0.1213 +0 0.0965 +0 0.0888 +0 0.0694 +0 0.0895 +0 0.1816 +0 0.1172 +0 0.1450 +0 0.0843 +0 0.1187 +0 0.0788 +0 0.1732 +0 0.0500 +0 0.1404 +0 0.1037 +0 0.2409 +0 0.0695 +0 0.1108 +0 0.1071 +0 0.1496 +0 0.0781 +0 0.0668 +0 0.1404 +0 0.0800 +0 0.1311 +0 0.1160 +0 0.0646 +0 0.0584 +0 0.0639 +0 0.1046 +0 0.1650 +0 0.1486 +0 0.1744 +0 0.2715 +0 0.0872 +0 0.1196 +0 0.3006 +0 0.0585 +1 0.8447 +0 0.0680 +0 0.2527 +0 0.1045 +0 0.0584 +0 0.1767 +0 0.1263 +0 0.0913 +0 0.0887 +0 0.1002 +0 0.1075 +0 0.0359 +0 0.0779 +0 0.0760 +0 0.2128 +0 0.2012 +0 0.2498 +0 0.1065 +0 0.0387 +0 0.1185 +0 0.3161 +0 0.1130 +0 0.0945 +0 0.1916 +0 0.1195 +0 0.0481 +0 0.2568 +0 0.1123 +0 0.3245 +0 0.1585 +0 0.0587 +0 0.0751 +0 0.0554 +0 0.0323 +0 0.2452 +0 0.0562 +0 0.2034 +0 0.0991 +0 0.1195 +0 0.4401 +0 0.0994 +0 0.1429 +0 0.1273 +0 0.3087 +0 0.0742 +0 0.1539 +0 0.0434 +0 0.0606 +0 0.1137 +0 0.0613 +0 0.1563 +0 0.0463 +0 0.1174 +0 0.1480 +0 0.0607 +0 0.1179 +0 0.1859 +0 0.0394 +0 0.0685 +0 0.3163 +0 0.0986 +0 0.0839 +0 0.3635 +0 0.1757 +0 0.1984 +0 0.2611 +0 0.0933 +0 0.1047 +0 0.0539 +0 0.0541 +0 0.0858 +0 0.0839 +0 0.1925 +0 0.1349 +0 0.0622 +0 0.0671 +0 0.0546 +0 0.5173 +0 0.1335 +0 0.1327 +0 0.0761 +0 0.1251 +0 0.1091 +0 0.0415 +0 0.0365 +0 0.4088 +0 0.3495 +0 0.2187 +0 0.0768 +0 0.1430 +0 0.0746 +0 0.0555 +0 0.0346 +0 0.0724 +0 0.0782 +0 0.0678 +0 0.1592 +0 0.0386 +0 0.0789 +0 0.1031 +0 0.1290 +0 0.0752 +0 0.0569 +0 0.0650 +0 0.0954 +1 0.8513 +0 0.5515 +0 0.0729 +0 0.0716 +0 0.0963 +0 0.0647 +0 0.0622 +0 0.2103 +0 0.0647 +0 0.3352 +0 0.1364 +0 0.2314 +0 0.2517 +0 0.0515 +0 0.0706 +0 0.1262 +0 0.0626 +0 0.1961 +0 0.1823 +0 0.0629 +0 0.1084 +0 0.0671 +0 0.0987 +0 0.1076 +0 0.1303 +0 0.0878 +0 0.1082 +0 0.1020 +0 0.1235 +0 0.0696 +0 0.0838 +0 0.0507 +0 0.0562 +0 0.0368 +0 0.0864 +0 0.4093 +0 0.0936 +0 0.0690 +0 0.0939 +0 0.2870 +0 0.1032 +0 0.0706 +0 0.0797 +0 0.0830 +0 0.1681 +0 0.1045 +0 0.1004 +0 0.0854 +0 0.4434 +0 0.1748 +0 0.0633 +0 0.1284 +0 0.2973 +0 0.0291 +0 0.0501 +0 0.1344 +0 0.0347 +0 0.0981 +0 0.3525 +0 0.1186 +0 0.1230 +0 0.0378 +0 0.6893 +0 0.1012 +0 0.1207 +1 0.8052 +0 0.0923 +0 0.0698 +0 0.0467 +0 0.1054 +0 0.1012 +0 0.2045 +0 0.2718 +0 0.4124 +0 0.2023 +0 0.0758 +0 0.0546 +0 0.2642 +0 0.0632 +0 0.0334 +0 0.2080 +0 0.1573 +0 0.1639 +0 0.1465 +0 0.1570 +0 0.3479 +0 0.0592 +0 0.0374 +0 0.2459 +0 0.1219 +0 0.0533 +0 0.0845 +0 0.2349 +0 0.0976 +0 0.1736 +0 0.1469 +0 0.0670 +0 0.1307 +0 0.1924 +0 0.1936 +0 0.1193 +0 0.2748 +0 0.0791 +0 0.1517 +0 0.0774 +0 0.0528 +0 0.1946 +0 0.2172 +0 0.0910 +0 0.1197 +0 0.1201 +0 0.0395 +0 0.1955 +0 0.1136 +1 0.8233 +0 0.0895 +0 0.0354 +0 0.0594 +0 0.0971 +0 0.0835 +0 0.0864 +0 0.1413 +1 0.8152 +0 0.1223 +0 0.0736 +0 0.1536 +0 0.0406 +0 0.0703 +0 0.1133 +0 0.1057 +0 0.3145 +0 0.0759 +0 0.0765 +0 0.2708 +0 0.2165 +0 0.0310 +0 0.1355 +0 0.0468 +0 0.1405 +0 0.6739 +0 0.6916 +0 0.1103 +0 0.0913 +0 0.0796 +0 0.1312 +0 0.1002 +0 0.0606 +0 0.1030 +0 0.0821 +0 0.0845 +0 0.1672 +0 0.2019 +0 0.1976 +0 0.1075 +0 0.1640 +0 0.1010 +0 0.1009 +0 0.3097 +0 0.0913 +0 0.0410 +0 0.0371 +0 0.1405 +0 0.2274 +0 0.0692 +0 0.0711 +0 0.1118 +0 0.0992 +0 0.1799 +0 0.0654 +0 0.0479 +0 0.1326 +0 0.1217 +0 0.1133 +0 0.0527 +0 0.0979 +0 0.0905 +0 0.0615 +0 0.0878 +0 0.1258 +0 0.6206 +0 0.0366 +0 0.1190 +0 0.1201 +0 0.0609 +0 0.6008 +0 0.1105 +0 0.4735 +0 0.1067 +0 0.0752 +0 0.1383 +1 0.7728 +0 0.2529 +0 0.2224 +0 0.1057 +0 0.0624 +0 0.0719 +0 0.0636 +0 0.0622 +0 0.0442 +0 0.0845 +0 0.2646 +0 0.0664 +0 0.1737 +0 0.0794 +0 0.0458 +0 0.2190 +0 0.0567 +0 0.1258 +0 0.1609 +0 0.2671 +0 0.0704 +0 0.4675 +0 0.0453 +0 0.1012 +0 0.1096 +0 0.1302 +0 0.0770 +0 0.0621 +0 0.7408 +0 0.1309 +0 0.0436 +0 0.1453 +0 0.1022 +0 0.6847 +0 0.1065 +0 0.1523 +0 0.0621 +0 0.0432 +0 0.1477 +0 0.1724 +0 0.1052 +0 0.1137 +0 0.1921 +0 0.1623 +0 0.1855 +0 0.0766 +0 0.0426 +0 0.1145 +0 0.1073 +0 0.1240 +0 0.1044 +1 0.8054 +0 0.0674 +0 0.3878 +0 0.1335 +0 0.2800 +0 0.1561 +0 0.2163 +0 0.1297 +0 0.1028 +0 0.1408 +0 0.0637 +0 0.0680 +0 0.0659 +0 0.1193 +0 0.1536 +0 0.1067 +0 0.1212 +0 0.0837 +0 0.0602 +0 0.0703 +0 0.1489 +0 0.0629 +0 0.2093 +0 0.0667 +0 0.1740 +0 0.1202 +0 0.0387 +0 0.0572 +0 0.0702 +0 0.1716 +0 0.1776 +0 0.1306 +0 0.1291 +0 0.3003 +0 0.6796 +0 0.0494 +0 0.0900 +0 0.3691 +0 0.1208 +0 0.1037 +0 0.0771 +0 0.2040 +0 0.0638 +0 0.3464 +0 0.0361 +0 0.0565 +0 0.6653 +0 0.0896 +0 0.1517 +0 0.1182 +0 0.0433 +0 0.0946 +0 0.1792 +0 0.0943 +0 0.0879 +1 0.7791 +0 0.0919 +0 0.0846 +0 0.1051 +1 0.7714 +0 0.1422 +0 0.7447 +0 0.0785 +0 0.0780 +0 0.1147 +0 0.2155 +0 0.1610 +0 0.0615 +0 0.2210 +0 0.0978 +0 0.1332 +0 0.0733 +0 0.0814 +0 0.1799 +0 0.0702 +0 0.1254 +0 0.1735 +1 0.7789 +0 0.1815 +0 0.2438 +0 0.3528 +0 0.0712 +0 0.2891 +0 0.1605 +0 0.5277 +0 0.0805 +0 0.1310 +0 0.1204 +0 0.1201 +0 0.0862 +0 0.0829 +0 0.1190 +0 0.1144 +0 0.1271 +0 0.1053 +0 0.1034 +0 0.0549 +0 0.2557 +0 0.6902 +0 0.1901 +0 0.2591 +0 0.0890 +0 0.2924 +0 0.3138 +0 0.1647 +0 0.1518 +0 0.1228 +0 0.1508 +0 0.0918 +0 0.4131 +0 0.0738 +1 0.8389 +0 0.1841 +0 0.3120 +0 0.6758 +0 0.0544 +0 0.4510 +0 0.2051 +0 0.3661 +0 0.1121 +0 0.1380 +0 0.0540 +0 0.7365 +0 0.0497 +0 0.0927 +0 0.0378 +0 0.0472 +0 0.1332 +0 0.1090 +0 0.3407 +0 0.1145 +0 0.0611 +0 0.0393 +0 0.0949 +0 0.1244 +0 0.2734 +0 0.2134 +1 0.7876 +0 0.0575 +0 0.2507 +0 0.0824 +0 0.0667 +0 0.1833 +0 0.1075 +0 0.0566 +0 0.1219 +0 0.0452 +0 0.1811 +0 0.2687 +0 0.3375 +0 0.1439 +0 0.1194 +0 0.1022 +0 0.4807 +0 0.1085 +0 0.0984 +0 0.1015 +0 0.1533 +0 0.0631 +0 0.1582 +0 0.0565 +0 0.0737 +0 0.3867 +0 0.0828 +0 0.6900 +0 0.0459 +0 0.0731 +0 0.1610 +0 0.1090 +0 0.0675 +0 0.0801 +0 0.0755 +0 0.2395 +0 0.1253 +0 0.0566 +0 0.1614 +0 0.1687 +0 0.1659 +0 0.0472 +0 0.1848 +0 0.1683 +1 0.8715 +0 0.1321 +0 0.1130 +0 0.1995 +0 0.0745 +0 0.1022 +0 0.1702 +0 0.0593 +0 0.0987 +0 0.1402 +0 0.3041 +0 0.0440 +0 0.1484 +0 0.0717 +0 0.0913 +0 0.0637 +0 0.0678 +0 0.1032 +0 0.0571 +0 0.1406 +0 0.1242 +0 0.1130 +0 0.0791 +0 0.0462 +0 0.4178 +0 0.0974 +0 0.1468 +0 0.1259 +0 0.0966 +0 0.0805 +0 0.0750 +0 0.1334 +0 0.1230 +0 0.2420 +0 0.0679 +0 0.1294 +0 0.1220 +1 0.1897 +0 0.1150 +0 0.0888 +0 0.1040 +0 0.1467 +0 0.2021 +0 0.1010 +0 0.1293 +0 0.3482 +0 0.5170 +0 0.1134 +0 0.1809 +0 0.0945 +0 0.2605 +0 0.0692 +0 0.1801 +0 0.1530 +0 0.0906 +0 0.0797 +0 0.1413 +0 0.1423 +0 0.0953 +0 0.0851 +0 0.3337 +0 0.0869 +0 0.2147 +0 0.1057 +0 0.0619 +0 0.1563 +0 0.0898 +0 0.0674 +0 0.0802 +0 0.4119 +0 0.3966 +0 0.0375 +0 0.1015 +0 0.2976 +0 0.0988 +0 0.1918 +0 0.1315 +0 0.3676 +0 0.1173 +0 0.0720 +0 0.0893 +0 0.1938 +0 0.0510 +1 0.8307 +0 0.1575 +0 0.0339 +0 0.0833 +0 0.1642 +0 0.1359 +0 0.0640 +0 0.2363 +0 0.1319 +0 0.0830 +0 0.0431 +0 0.0698 +0 0.4585 +0 0.0969 +0 0.0447 +0 0.0662 +0 0.1176 +0 0.0488 +0 0.0546 +0 0.0468 +0 0.0953 +1 0.8365 +0 0.2007 +0 0.5159 +0 0.1135 +0 0.1141 +0 0.1666 +0 0.2233 +1 0.8375 +0 0.0612 +0 0.0963 +0 0.1456 +0 0.1240 +0 0.3662 +0 0.0845 +0 0.0983 +0 0.1436 +0 0.1108 +0 0.1345 +0 0.1668 +0 0.1633 +0 0.0819 +1 0.8248 +0 0.0794 +0 0.0937 +1 0.7547 +0 0.0690 +0 0.0401 +0 0.0813 +0 0.2863 +0 0.2749 +0 0.0806 +0 0.3317 +0 0.1869 +0 0.1080 +0 0.0467 +0 0.2051 +0 0.0599 +0 0.1221 +0 0.1383 +0 0.0878 +0 0.0875 +0 0.1989 +0 0.0383 +0 0.0920 +0 0.3517 +0 0.1635 +0 0.1131 +0 0.1336 +0 0.0635 +0 0.1178 +0 0.0966 +0 0.1250 +0 0.3241 +0 0.1243 +0 0.0339 +0 0.0584 +0 0.1195 +0 0.1766 +0 0.0665 +0 0.1645 +0 0.1197 +0 0.7054 +0 0.0526 +0 0.1947 +0 0.0370 +0 0.1120 +0 0.1406 +0 0.2322 +0 0.0914 +0 0.2511 +0 0.1013 +0 0.1069 +0 0.0579 +0 0.0764 +0 0.0771 +0 0.0915 +0 0.0803 +0 0.0769 +0 0.0704 +0 0.0576 +0 0.1517 +0 0.6107 +0 0.0552 +0 0.2548 +0 0.0529 +0 0.0578 +0 0.0624 +0 0.1618 +0 0.0504 +0 0.3179 +0 0.1098 +0 0.2194 +0 0.0381 +0 0.0529 +0 0.0636 +0 0.0631 +0 0.1889 +0 0.3570 +0 0.0844 +0 0.1271 +0 0.3088 +0 0.1062 +0 0.4649 +0 0.1126 +1 0.7502 +0 0.1284 +0 0.1771 +0 0.0480 +0 0.1857 +0 0.0405 +0 0.1631 +0 0.0631 +0 0.1759 +0 0.1173 +0 0.2071 +0 0.0927 +0 0.0489 +0 0.0499 +0 0.0762 +0 0.2755 +0 0.0975 +0 0.5137 +0 0.3884 +0 0.1190 +0 0.2817 +0 0.1289 +0 0.2544 +0 0.1296 +0 0.0718 +0 0.2189 +0 0.0782 +0 0.3285 +0 0.0509 +0 0.0859 +0 0.1331 +0 0.0893 +0 0.0844 +0 0.1019 +0 0.1347 +0 0.2552 +0 0.1512 +0 0.1801 +0 0.1779 +0 0.0821 +0 0.4590 +0 0.0621 +0 0.1178 +0 0.3120 +0 0.3179 +0 0.7033 +0 0.5654 +0 0.0515 +0 0.0578 +0 0.0624 +0 0.0974 +0 0.0454 +0 0.0994 +0 0.0522 +1 0.8007 +0 0.1338 +0 0.0470 +0 0.0741 +0 0.0767 +0 0.0947 +0 0.0976 +0 0.2434 +0 0.0374 +0 0.2405 +0 0.0679 +0 0.3261 +0 0.0850 +0 0.0959 +0 0.1435 +0 0.1640 +0 0.1227 +0 0.0823 +0 0.0652 +0 0.0692 +0 0.0646 +0 0.1339 +0 0.1116 +0 0.2727 +0 0.0624 +0 0.1734 +0 0.1440 +0 0.0904 +0 0.0695 +0 0.1018 +0 0.2228 +0 0.0478 +0 0.0475 +0 0.0678 +0 0.0856 +0 0.4825 +0 0.3051 +0 0.0444 +0 0.1177 +0 0.0477 +0 0.0423 +0 0.1286 +0 0.0763 +0 0.0748 +0 0.1587 +0 0.0817 +0 0.5086 +0 0.0741 +0 0.5184 +0 0.0726 +0 0.1342 +0 0.0803 +0 0.0926 +0 0.1182 +0 0.1414 +0 0.0813 +0 0.1330 +0 0.3500 +0 0.1112 +0 0.0462 +0 0.0961 +0 0.4191 +0 0.0717 +0 0.1200 +0 0.0283 +0 0.0450 +1 0.8598 +0 0.0393 +0 0.1878 +0 0.0605 +0 0.1805 +0 0.1493 +0 0.0856 +0 0.1113 +0 0.0686 +0 0.4040 +0 0.0677 +0 0.0847 +0 0.0887 +0 0.3801 +0 0.0779 +0 0.0747 +0 0.3050 +0 0.0856 +0 0.5732 +0 0.0805 +0 0.0992 +0 0.1095 +0 0.1055 +0 0.1913 +0 0.2489 +0 0.1272 +0 0.1183 +0 0.0908 +0 0.1206 +0 0.5430 +0 0.0832 +0 0.0711 +0 0.1392 +0 0.1017 +0 0.0663 +0 0.0695 +0 0.0735 +0 0.0919 +0 0.1523 +0 0.0333 +0 0.0938 +0 0.1157 +0 0.0620 +0 0.1114 +0 0.0990 +0 0.0677 +0 0.0667 +0 0.0820 +0 0.1642 +0 0.0802 +0 0.0959 +0 0.1305 +0 0.0591 +0 0.0903 +0 0.3664 +0 0.2103 +0 0.1153 +0 0.1627 +0 0.0768 +0 0.3194 +0 0.2587 +0 0.0372 +0 0.0667 +0 0.1335 +0 0.1140 +0 0.0944 +0 0.1132 +0 0.0989 +0 0.1246 +0 0.1979 +0 0.0816 +0 0.0848 +0 0.0993 +0 0.0722 +0 0.2625 +0 0.0954 +0 0.4603 +0 0.1033 +0 0.0409 +0 0.1119 +0 0.0674 +0 0.6354 +0 0.1079 +0 0.0850 +0 0.0945 +0 0.3002 +0 0.1428 +0 0.0870 +0 0.0688 +0 0.0587 +0 0.2954 +0 0.1433 +0 0.0826 +0 0.0817 +0 0.0966 +0 0.1846 +0 0.1369 +0 0.0695 +0 0.0713 +0 0.1589 +0 0.2663 +0 0.1209 +0 0.1850 +0 0.1444 +0 0.0700 +0 0.0425 +0 0.2892 +0 0.1023 +0 0.1230 +0 0.0776 +0 0.1554 +0 0.0388 +0 0.0505 +0 0.0317 +0 0.0703 +0 0.0354 +0 0.0672 +0 0.1174 +0 0.1696 +0 0.0427 +0 0.1026 +0 0.4247 +0 0.1776 +0 0.1194 +0 0.0567 +0 0.1525 +0 0.1185 +0 0.0695 +0 0.4919 +0 0.0520 +0 0.1102 +0 0.0601 +0 0.1414 +0 0.6273 +0 0.0885 +0 0.0981 +0 0.0504 +0 0.0645 +0 0.1173 +0 0.1220 +0 0.0785 +0 0.1494 +0 0.1021 +0 0.0448 +0 0.0445 +0 0.1158 +0 0.1329 +0 0.1240 +0 0.1348 +0 0.1762 +0 0.1127 +0 0.5351 +0 0.1118 +0 0.1528 +0 0.0968 +0 0.0756 +0 0.1408 +0 0.1060 +0 0.6608 +0 0.1257 +0 0.0587 +0 0.0607 +0 0.2079 +0 0.0769 +0 0.1961 +0 0.2040 +0 0.1637 +0 0.0620 +0 0.0837 +0 0.4027 +0 0.1235 +0 0.1207 +0 0.1270 +0 0.1289 +0 0.1022 +0 0.0674 +0 0.0429 +0 0.1900 +0 0.0966 +0 0.1075 +0 0.0644 +0 0.0438 +0 0.0763 +0 0.4391 +0 0.1547 +0 0.1129 +0 0.0672 +0 0.0539 +0 0.1097 +0 0.1177 +0 0.0576 +0 0.1426 +0 0.0607 +0 0.1485 +0 0.1224 +0 0.0678 +0 0.1491 +0 0.1455 +0 0.3620 +0 0.1598 +0 0.0457 +0 0.0698 +0 0.0880 +0 0.0431 +0 0.0951 +0 0.1698 +0 0.1578 +0 0.5688 +0 0.1199 +0 0.1334 +0 0.1575 +0 0.0453 +0 0.0736 +0 0.4681 +0 0.1516 +0 0.1506 +0 0.2403 +0 0.1757 +0 0.3280 +0 0.1952 +0 0.2032 +0 0.1342 +0 0.1433 +0 0.0428 +0 0.0546 +0 0.1296 +0 0.0562 +0 0.3740 +0 0.0517 +0 0.6192 +0 0.0835 +0 0.1691 +0 0.0440 +0 0.1932 +0 0.1685 +0 0.4013 +0 0.1352 +1 0.7640 +0 0.2386 +0 0.2250 +0 0.2774 +0 0.1144 +0 0.1848 +0 0.0595 +0 0.1290 +0 0.1914 +0 0.0550 +0 0.0409 +0 0.0469 +0 0.1031 +0 0.4109 +0 0.0630 +0 0.0759 +0 0.0757 +0 0.0829 +0 0.0784 +0 0.0534 +0 0.0851 +0 0.1035 +0 0.0557 +0 0.0918 +0 0.1963 +0 0.0733 +0 0.1431 +0 0.0979 +0 0.1038 +0 0.0880 +0 0.1909 +0 0.0498 +0 0.0520 +0 0.0847 +0 0.0728 +0 0.1426 +0 0.0992 +0 0.0890 +0 0.0526 +0 0.0808 +0 0.1236 +0 0.1489 +0 0.0552 +0 0.0766 +0 0.0739 +0 0.1806 +0 0.1113 +0 0.2250 +0 0.0909 +0 0.1381 +0 0.0740 +0 0.0609 +0 0.1199 +0 0.2969 +0 0.0995 +0 0.3385 +0 0.0961 +0 0.6571 +0 0.0999 +0 0.1004 +0 0.0785 +0 0.2144 +0 0.0675 +0 0.0320 +0 0.1712 +0 0.0636 +0 0.1595 +0 0.1640 +0 0.1378 +1 0.7579 +0 0.3319 +0 0.1671 +0 0.1555 +1 0.7749 +0 0.0711 +0 0.1707 +0 0.0562 +0 0.1058 +0 0.0953 +0 0.1498 +0 0.1036 +0 0.0545 +0 0.1439 +0 0.0551 +0 0.2443 +0 0.0866 +0 0.0408 +0 0.0636 +0 0.0971 +0 0.1170 +0 0.0970 +0 0.1835 +0 0.0800 +0 0.0948 +0 0.1120 +0 0.0679 +0 0.1024 +0 0.0871 +0 0.0613 +0 0.1296 +0 0.3455 +0 0.1307 +0 0.1059 +0 0.2883 +0 0.0669 +0 0.0931 +0 0.1016 +0 0.2942 +0 0.0724 +0 0.0512 +0 0.5340 +0 0.0962 +0 0.0385 +0 0.0271 +0 0.0787 +0 0.0544 +0 0.1039 +0 0.0876 +0 0.0723 +0 0.0688 +0 0.0550 +0 0.1934 +0 0.1977 +0 0.2789 +0 0.2106 +0 0.4287 +0 0.4296 +0 0.0638 +0 0.0915 +0 0.0721 +0 0.0732 +0 0.1046 +0 0.3641 +0 0.1403 +0 0.2518 +0 0.1096 +0 0.0423 +0 0.1071 +0 0.0734 +0 0.0767 +0 0.1120 +0 0.0557 +0 0.0522 +0 0.0698 +0 0.0566 +0 0.1793 +0 0.2985 +0 0.1806 +0 0.0949 +0 0.0983 +0 0.1493 +0 0.0529 +0 0.0850 +0 0.0488 +0 0.1063 +0 0.6505 +0 0.0483 +0 0.1038 +0 0.2615 +0 0.5564 +0 0.1435 +0 0.0845 +0 0.0607 +0 0.1597 +0 0.2206 +0 0.0789 +0 0.0642 +0 0.3903 +0 0.1402 +0 0.1690 +0 0.0679 +0 0.1318 +0 0.0775 +0 0.0655 +0 0.0673 +0 0.1189 +0 0.0740 +0 0.3167 +0 0.0902 +0 0.0626 +0 0.1104 +0 0.0411 +0 0.0593 +0 0.1347 +0 0.5423 +0 0.1140 +0 0.0830 +0 0.0596 +1 0.8006 +0 0.0561 +0 0.0856 +0 0.1843 +0 0.1029 +0 0.1188 +0 0.2367 +0 0.0981 +0 0.0506 +0 0.0679 +0 0.1163 +0 0.1010 +0 0.1480 +0 0.1875 +0 0.1777 +0 0.1070 +0 0.0652 +0 0.1073 +0 0.1873 +0 0.1598 +0 0.0941 +0 0.1771 +1 0.7862 +0 0.0317 +0 0.2327 +0 0.1010 +0 0.0634 +0 0.0783 +0 0.1612 +0 0.1889 +0 0.1228 +0 0.1637 +0 0.0957 +0 0.1259 +0 0.1070 +0 0.2209 +0 0.2453 +0 0.6542 +0 0.0423 +0 0.0899 +0 0.0673 +1 0.8100 +0 0.3266 +0 0.1051 +0 0.1026 +0 0.2999 +0 0.2079 +0 0.0939 +0 0.0599 +0 0.1129 +0 0.1373 +0 0.0718 +0 0.1496 +0 0.0953 +1 0.7848 +0 0.2681 +0 0.1873 +0 0.1856 +0 0.0323 +0 0.0504 +0 0.1203 +0 0.0889 +0 0.0691 +0 0.0824 +0 0.0634 +0 0.1032 +0 0.2358 +0 0.0908 +0 0.0667 +0 0.2651 +0 0.1715 +0 0.0587 +0 0.1189 +0 0.0805 +0 0.2103 +0 0.0981 +0 0.0420 +0 0.1300 +0 0.0833 +0 0.2093 +0 0.2671 +0 0.1556 +0 0.1385 +0 0.0843 +1 0.8256 +0 0.1098 +0 0.6081 +0 0.2373 +0 0.1524 +0 0.2129 +0 0.0572 +0 0.0859 +0 0.0748 +0 0.0585 +0 0.1263 +0 0.1313 +0 0.1105 +0 0.1638 +0 0.0721 +0 0.1604 +0 0.0548 +0 0.6915 +0 0.1911 +0 0.0748 +0 0.0851 +0 0.1055 +0 0.1785 +0 0.1007 +0 0.1308 +0 0.0928 +0 0.0818 +0 0.0650 +0 0.2883 +0 0.0847 +0 0.2296 +0 0.2171 +0 0.1463 +0 0.1075 +0 0.2036 +0 0.0699 +0 0.2405 +0 0.0552 +0 0.1350 +0 0.1348 +0 0.0503 +0 0.0604 +0 0.1354 +0 0.0620 +0 0.1976 +0 0.0974 +0 0.0358 +0 0.0930 +0 0.0673 +0 0.0694 +0 0.2645 +0 0.0380 +0 0.0922 +0 0.2579 +0 0.2565 +0 0.2105 +0 0.1256 +0 0.0498 +0 0.1129 +0 0.0713 +0 0.0667 +0 0.0700 +0 0.1383 +0 0.1851 +0 0.0800 +0 0.0818 +0 0.1088 +0 0.1504 +0 0.0738 +0 0.0399 +0 0.0632 +0 0.2232 +0 0.0487 +0 0.1290 +1 0.8005 +0 0.1190 +0 0.1486 +0 0.0693 +0 0.1094 +0 0.1201 +0 0.1265 +0 0.2484 +0 0.0573 +0 0.0701 +0 0.1234 +0 0.0519 +0 0.1450 +0 0.2840 +0 0.0748 +0 0.1741 +0 0.1553 +0 0.1046 +0 0.0816 +0 0.2153 +0 0.2799 +0 0.0594 +0 0.1704 +0 0.1547 +0 0.1491 +0 0.1669 +0 0.1219 +0 0.0822 +0 0.1702 +0 0.1291 +0 0.2644 +0 0.0712 +0 0.4852 +0 0.1695 +0 0.1713 +0 0.5747 +0 0.1207 +0 0.2106 +0 0.1164 +0 0.4088 +0 0.0473 +0 0.0550 +0 0.0305 +0 0.1565 +0 0.0835 +0 0.0499 +0 0.0853 +0 0.0578 +0 0.1969 +0 0.0682 +0 0.2859 +0 0.1778 +0 0.1320 +0 0.1459 +0 0.1449 +0 0.0750 +0 0.0530 +0 0.0799 +0 0.0698 +0 0.0629 +0 0.1810 +0 0.0999 +0 0.0962 +0 0.1605 +0 0.0658 +0 0.0778 +0 0.0610 +0 0.4295 +0 0.2057 +0 0.1347 +0 0.1608 +0 0.0822 +0 0.2280 +0 0.0937 +0 0.1431 +0 0.7121 +0 0.0987 +0 0.0801 +0 0.2074 +0 0.0439 +0 0.0599 +0 0.0941 +0 0.6913 +0 0.0750 +0 0.1110 +0 0.3403 +0 0.3888 +0 0.2080 +0 0.1613 +0 0.6372 +0 0.0657 +0 0.0596 +0 0.1011 +0 0.0607 +0 0.0390 +0 0.1329 +0 0.0437 +0 0.3359 +0 0.0795 +0 0.0601 +0 0.0942 +0 0.1361 +0 0.1234 +0 0.0988 +0 0.0645 +0 0.1546 +0 0.2119 +0 0.1354 +0 0.1727 +0 0.1470 +0 0.2074 +0 0.1006 +0 0.0468 +0 0.1122 +0 0.1380 +0 0.0551 +0 0.5011 +0 0.1385 +0 0.0837 +1 0.7993 +0 0.0922 +0 0.2212 +0 0.1708 +0 0.0425 +0 0.0881 +0 0.1272 +0 0.0534 +0 0.0460 +0 0.0904 +0 0.0871 +0 0.0669 +0 0.0766 +0 0.0557 +0 0.0629 +0 0.0744 +0 0.0811 +0 0.0852 +0 0.1252 +0 0.0865 +0 0.3494 +0 0.4200 +0 0.2971 +0 0.1657 +0 0.1502 +0 0.1048 +0 0.0955 +0 0.1094 +0 0.0722 +0 0.2851 +0 0.1272 +0 0.0557 +0 0.0619 +0 0.0847 +0 0.1480 +0 0.2816 +0 0.0327 +0 0.1092 +0 0.1366 +0 0.1226 +0 0.1366 +0 0.0653 +0 0.0352 +0 0.0358 +0 0.1050 +0 0.1808 +0 0.0785 +0 0.0685 +0 0.0982 +0 0.2116 +0 0.4677 +0 0.1180 +0 0.1151 +0 0.2172 +0 0.1709 +0 0.0828 +0 0.1112 +0 0.1122 +0 0.0751 +0 0.1007 +0 0.1889 +0 0.1011 +0 0.6459 +0 0.0848 +0 0.1278 +0 0.1113 +0 0.0601 +0 0.1514 +0 0.0618 +0 0.1149 +0 0.0711 +0 0.0319 +0 0.0826 +0 0.0486 +0 0.1843 +0 0.1432 +0 0.4678 +0 0.0398 +0 0.2381 +0 0.0409 +0 0.0851 +0 0.3213 +0 0.0337 +0 0.0509 +0 0.1842 +0 0.1336 +0 0.0638 +0 0.1119 +0 0.2924 +0 0.0503 +0 0.2610 +0 0.1463 +0 0.2615 +0 0.0822 +0 0.1426 +0 0.1032 +0 0.0434 +0 0.2266 +0 0.1192 +0 0.2934 +0 0.0328 +0 0.1094 +0 0.1772 +0 0.0754 +0 0.0632 +0 0.2002 +0 0.3014 +0 0.6505 +0 0.1942 +0 0.1765 +0 0.0634 +0 0.0684 +0 0.0669 +0 0.1177 +0 0.1131 +0 0.1725 +0 0.2081 +0 0.1259 +0 0.0751 +0 0.0478 +0 0.0483 +0 0.0847 +0 0.0824 +0 0.0441 +0 0.0946 +0 0.0773 +0 0.1452 +0 0.1398 +0 0.0610 +0 0.0916 +0 0.0551 +0 0.1081 +0 0.0442 +0 0.1344 +0 0.0557 +0 0.2497 +0 0.0347 +0 0.0687 +0 0.0923 +0 0.1155 +0 0.2341 +0 0.0742 +0 0.4145 +0 0.1117 +0 0.0947 +0 0.1981 +0 0.1006 +0 0.1275 +0 0.1550 +0 0.0654 +0 0.0824 +0 0.0378 +0 0.1373 +0 0.2451 +0 0.0547 +0 0.0795 +0 0.1149 +0 0.0444 +0 0.0713 +0 0.0691 +0 0.2596 +0 0.0473 +0 0.1841 +0 0.1458 +0 0.1768 +0 0.0658 +0 0.0464 +0 0.1360 +0 0.1023 +0 0.1071 +0 0.0401 +0 0.1225 +0 0.1843 +0 0.3147 +0 0.2261 +0 0.0699 +0 0.0555 +0 0.3327 +0 0.0764 +0 0.1236 +0 0.0682 +0 0.0788 +0 0.6284 +0 0.1643 +0 0.0577 +0 0.1542 +1 0.9046 +0 0.1142 +0 0.2322 +0 0.0926 +0 0.0843 +0 0.0600 +0 0.1435 +0 0.1642 +0 0.0898 +0 0.1135 +0 0.1602 +0 0.6452 +0 0.1181 +0 0.1820 +0 0.1301 +0 0.0745 +0 0.0920 +0 0.0576 +0 0.0888 +0 0.1764 +0 0.0428 +0 0.2523 +0 0.1952 +0 0.0655 +0 0.0470 +0 0.0687 +0 0.0624 +0 0.1646 +0 0.5802 +0 0.0505 +0 0.1183 +0 0.0750 +0 0.1646 +0 0.1242 +0 0.1207 +0 0.0818 +0 0.1085 +0 0.0932 +0 0.1597 +0 0.0877 +0 0.0738 +0 0.0826 +0 0.3549 +0 0.1193 +0 0.0369 +0 0.1390 +0 0.1948 +0 0.1576 +0 0.3786 +0 0.2180 +0 0.1480 +0 0.3405 +0 0.1779 +0 0.0582 +0 0.0435 +0 0.1079 +0 0.2293 +0 0.2385 +0 0.0756 +0 0.1406 +0 0.1197 +0 0.0730 +0 0.0769 +0 0.0446 +0 0.1845 +0 0.0832 +0 0.2888 +0 0.0526 +0 0.1167 +0 0.0871 +0 0.0622 +0 0.0702 +0 0.0843 +0 0.1352 +0 0.1360 +0 0.0967 +0 0.0603 +0 0.5300 +0 0.0485 +0 0.0697 +0 0.1996 +0 0.0573 +0 0.0690 +0 0.0582 +0 0.0960 +0 0.2634 +0 0.2072 +0 0.0647 +0 0.0923 +0 0.0561 +0 0.1479 +0 0.1257 +0 0.1277 +0 0.0812 +1 0.8485 +0 0.0801 +0 0.1734 +0 0.0935 +0 0.0913 +0 0.0309 +0 0.1394 +0 0.0814 +0 0.0709 +0 0.1978 +0 0.1346 +0 0.0431 +0 0.0637 +0 0.0567 +0 0.1308 +0 0.1457 +0 0.0951 +0 0.0829 +0 0.0944 +0 0.0645 +0 0.2871 +0 0.0619 +0 0.1226 +0 0.1146 +0 0.1543 +0 0.1089 +0 0.0976 +0 0.0948 +0 0.1449 +0 0.0521 +0 0.0645 +0 0.0683 +0 0.1020 +0 0.0698 +0 0.1742 +0 0.0856 +0 0.1259 +0 0.0528 +0 0.1093 +0 0.1085 +0 0.1422 +0 0.0864 +0 0.0807 +0 0.1808 +0 0.1028 +0 0.0872 +0 0.0736 +0 0.0623 +0 0.0941 +0 0.1540 +0 0.1295 +0 0.0666 +0 0.1010 +0 0.0725 +0 0.1539 +0 0.1506 +0 0.0883 +0 0.0851 +0 0.1000 +0 0.0701 +0 0.1508 +0 0.0980 +0 0.1833 +0 0.2290 +0 0.0719 +0 0.1710 +0 0.1423 +0 0.0871 +0 0.0748 +0 0.0809 +0 0.0477 +0 0.1155 +0 0.0517 +0 0.1477 +0 0.1142 +0 0.2234 +0 0.0675 +0 0.0990 +0 0.1294 +0 0.1884 +0 0.1485 +0 0.0606 +0 0.0590 +0 0.1351 +0 0.0902 +0 0.0555 +0 0.0840 +0 0.0901 +0 0.1569 +0 0.1158 +0 0.0790 +0 0.0976 +0 0.1380 +0 0.5257 +0 0.2906 +0 0.0813 +0 0.0517 +0 0.0505 +0 0.3796 +0 0.0648 +0 0.1085 +0 0.0908 +0 0.1580 +0 0.1081 +0 0.1560 +0 0.1438 +0 0.1484 +0 0.1509 +0 0.0899 +0 0.2472 +0 0.0634 +0 0.0597 +0 0.0823 +0 0.1034 +0 0.0751 +0 0.0710 +0 0.3313 +0 0.0604 +0 0.0919 +0 0.0851 +0 0.0882 +0 0.1564 +0 0.0825 +0 0.1395 +0 0.1389 +0 0.1079 +0 0.0733 +0 0.2261 +0 0.0971 +0 0.1832 +0 0.0992 +0 0.0631 +0 0.0653 +0 0.1116 +0 0.0769 +0 0.0578 +0 0.1404 +0 0.0769 +0 0.2884 +0 0.0908 +1 0.8645 +0 0.1107 +0 0.1323 +0 0.0328 +0 0.3332 +0 0.0672 +0 0.1793 +0 0.7320 +0 0.0503 +0 0.0847 +0 0.0790 +0 0.1587 +0 0.3577 +0 0.1414 +0 0.0680 +0 0.1356 +0 0.0974 +0 0.0666 +0 0.0336 +0 0.3830 +0 0.2116 +0 0.0751 +0 0.1166 +0 0.0331 +0 0.0689 +0 0.1114 +0 0.1218 +0 0.0620 +0 0.1834 +0 0.1256 +0 0.1790 +0 0.0772 +0 0.0879 +0 0.0880 +0 0.0657 +0 0.0731 +0 0.0875 +0 0.1421 +0 0.0742 +1 0.7578 +0 0.1284 +0 0.0316 +0 0.0532 +0 0.4492 +0 0.4999 +0 0.1424 +0 0.1811 +0 0.0643 +0 0.0788 +0 0.0817 +0 0.0807 +0 0.3214 +0 0.1702 +0 0.1328 +0 0.1333 +0 0.0421 +0 0.2056 +0 0.1190 +0 0.2045 +0 0.2725 +0 0.1560 +0 0.0770 +0 0.0858 +0 0.1222 +0 0.0560 +0 0.4888 +0 0.1052 +0 0.2971 +0 0.0826 +0 0.1499 +0 0.0969 +0 0.2523 +0 0.0949 +0 0.1141 +0 0.1332 +0 0.6633 +0 0.1605 +0 0.0974 +0 0.1023 +0 0.0589 +0 0.1888 +0 0.0426 +0 0.1128 +0 0.1145 +0 0.0830 +0 0.2781 +0 0.1678 +0 0.0718 +0 0.0454 +0 0.1301 +0 0.1018 +0 0.0583 +0 0.1662 +0 0.1632 +0 0.0978 +0 0.1005 +0 0.3133 +0 0.0630 +0 0.1075 +0 0.0677 +1 0.8145 +0 0.1589 +0 0.0427 +0 0.1024 +0 0.1223 +0 0.3118 +0 0.0650 +0 0.3857 +0 0.1006 +0 0.0793 +0 0.0977 +0 0.1296 +0 0.0806 +0 0.0704 +0 0.0792 +0 0.0720 +0 0.2386 +0 0.2113 +0 0.0882 +0 0.0904 +0 0.0838 +0 0.0723 +0 0.1045 +0 0.1394 +0 0.0647 +0 0.0762 +0 0.1192 +0 0.0893 +0 0.0774 +0 0.2389 +0 0.0871 +0 0.6206 +0 0.1726 +0 0.0778 +0 0.0637 +0 0.0919 +0 0.1454 +0 0.1914 +0 0.2309 +0 0.0897 +0 0.6985 +0 0.1113 +0 0.5812 +0 0.2345 +0 0.7433 +0 0.0817 +0 0.0889 +0 0.0535 +0 0.1559 +0 0.1180 +0 0.2964 +0 0.0381 +0 0.1978 +0 0.6543 +0 0.0342 +0 0.0994 +0 0.0644 +0 0.1533 +0 0.4040 +0 0.1011 +0 0.0327 +0 0.0836 +0 0.0485 +0 0.2542 +0 0.0630 +0 0.0658 +0 0.0757 +0 0.1171 +0 0.0538 +0 0.1654 +0 0.0793 +0 0.0857 +0 0.0454 +0 0.1661 +0 0.1128 +0 0.4838 +0 0.1883 +0 0.0819 +0 0.0683 +0 0.1865 +0 0.0924 +0 0.0675 +0 0.0984 +0 0.2369 +0 0.0689 +0 0.1054 +0 0.0677 +0 0.0883 +0 0.0615 +0 0.1065 +0 0.1492 +0 0.0427 +0 0.0935 +0 0.1667 +0 0.0723 +0 0.0647 +0 0.1023 +0 0.2881 +0 0.1140 +0 0.1781 +0 0.1562 +0 0.1415 +0 0.2797 +0 0.1161 +0 0.0990 +0 0.0572 +0 0.1749 +0 0.1274 +0 0.3273 +1 0.8274 +0 0.0941 +0 0.1658 +0 0.0831 +0 0.1515 +0 0.1124 +0 0.1564 +0 0.7281 +0 0.5902 +0 0.0669 +0 0.0495 +0 0.0865 +0 0.1138 +0 0.0953 +0 0.0504 +0 0.0479 +0 0.0591 +0 0.0538 +0 0.0538 +0 0.0945 +0 0.1328 +0 0.1328 +0 0.0771 +0 0.0514 +0 0.1695 +0 0.0622 +0 0.1329 +0 0.1406 +0 0.1088 +0 0.1378 +0 0.2866 +0 0.0834 +0 0.5333 +0 0.0365 +0 0.1022 +0 0.0734 +0 0.0459 +0 0.0414 +0 0.1041 +0 0.1168 +0 0.0467 +0 0.1091 +0 0.0984 +0 0.0694 +0 0.0923 +0 0.3421 +0 0.0948 +0 0.1611 +0 0.1482 +0 0.2124 +0 0.0805 +0 0.1043 +0 0.1480 +0 0.0416 +0 0.1035 +0 0.1112 +1 0.7643 +0 0.1939 +0 0.4222 +0 0.7289 +0 0.0993 +0 0.3514 +0 0.7033 +0 0.1571 +0 0.0524 +0 0.1113 +0 0.1044 +0 0.0778 +0 0.0416 +0 0.1165 +0 0.1899 +0 0.0602 +0 0.1368 +0 0.1112 +0 0.2377 +0 0.1449 +0 0.0354 +0 0.1801 +0 0.0361 +0 0.0956 +0 0.2077 +0 0.0788 +0 0.1566 +0 0.2194 +0 0.0904 +1 0.8336 +0 0.0942 +0 0.0662 +0 0.2327 +0 0.0751 +0 0.1198 +0 0.0969 +0 0.1128 +0 0.1234 +0 0.0779 +0 0.0990 +0 0.1039 +0 0.0501 +0 0.2829 +0 0.2230 +0 0.0765 +0 0.2989 +0 0.0341 +0 0.0646 +0 0.1089 +0 0.0871 +0 0.0492 +0 0.1033 +0 0.1612 +0 0.0666 +0 0.1148 +0 0.0371 +0 0.0536 +0 0.6605 +0 0.1487 +0 0.0639 +0 0.1781 +0 0.2112 +0 0.0989 +0 0.0791 +0 0.0768 +0 0.1357 +0 0.2548 +0 0.2053 +0 0.1530 +0 0.0674 +0 0.1489 +0 0.0508 +0 0.4194 +0 0.0956 +0 0.1754 +0 0.1187 +0 0.3592 +0 0.0978 +0 0.0938 +0 0.0764 +0 0.6369 +0 0.2141 +0 0.5180 +0 0.0701 +0 0.1416 +0 0.0411 +0 0.1469 +0 0.0612 +0 0.0606 +0 0.1673 +0 0.2188 +0 0.1029 +0 0.1194 +0 0.3831 +0 0.2265 +0 0.0580 +0 0.2641 +0 0.1091 +0 0.0538 +0 0.0802 +0 0.1419 +0 0.2599 +0 0.1449 +0 0.0851 +0 0.2003 +0 0.0605 +0 0.1100 +0 0.0715 +0 0.2261 +0 0.0709 +0 0.1066 +0 0.0719 +0 0.4808 +0 0.2116 +0 0.0841 +0 0.1740 +0 0.1123 +0 0.0802 +0 0.1021 +0 0.0777 +0 0.1351 +0 0.3740 +0 0.1060 +0 0.1073 +0 0.0659 +0 0.1268 +0 0.1037 +0 0.7150 +0 0.2265 +0 0.2557 +0 0.1520 +0 0.1066 +0 0.1352 +0 0.1196 +0 0.0731 +0 0.2021 +0 0.1112 +0 0.1317 +0 0.1064 +0 0.0572 +0 0.0828 +0 0.0438 +0 0.1193 +0 0.1433 +0 0.1543 +0 0.2229 +0 0.0507 +0 0.0463 +0 0.0803 +0 0.0833 +0 0.0613 +0 0.0788 +0 0.0847 +0 0.2007 +0 0.0770 +0 0.2786 +0 0.1325 +0 0.1355 +0 0.0592 +0 0.2579 +0 0.1848 +0 0.0513 +0 0.0798 +0 0.5379 +0 0.0728 +0 0.1324 +0 0.0758 +0 0.0500 +0 0.1037 +0 0.0757 +0 0.0732 +0 0.5988 +0 0.0564 +0 0.0978 +0 0.1651 +0 0.0971 +0 0.0409 +0 0.0583 +0 0.0852 +0 0.1270 +0 0.2050 +0 0.6738 +0 0.0766 +0 0.0885 +0 0.0629 +0 0.0894 +0 0.0835 +0 0.0636 +0 0.1134 +0 0.1872 +0 0.1388 +0 0.1559 +0 0.1728 +0 0.1247 +0 0.0609 +0 0.0978 +0 0.1710 +0 0.2198 +1 0.7757 +0 0.0740 +0 0.0490 +0 0.0954 +0 0.1968 +0 0.0888 +0 0.0843 +0 0.2006 +0 0.0283 +0 0.0871 +0 0.1314 +0 0.0969 +0 0.1261 +0 0.0460 +0 0.1019 +0 0.0589 +0 0.1553 +0 0.3520 +0 0.0794 +0 0.0331 +0 0.0539 +0 0.1530 +0 0.1443 +0 0.0636 +0 0.2207 +0 0.1823 +0 0.4879 +0 0.0907 +0 0.2174 +0 0.1904 +0 0.2648 +0 0.1144 +0 0.1278 +0 0.0408 +0 0.3743 +0 0.1058 +0 0.0861 +0 0.1682 +0 0.1269 +0 0.2046 +0 0.4945 +0 0.0563 +0 0.1180 +0 0.1447 +0 0.1258 +0 0.2188 +0 0.1700 +0 0.0590 +0 0.1739 +0 0.3035 +0 0.2615 +0 0.0697 +0 0.1168 +0 0.0879 +0 0.0642 +0 0.2173 +0 0.1024 +0 0.0853 +0 0.1221 +0 0.2367 +0 0.0570 +0 0.0798 +0 0.1302 +0 0.1727 +0 0.1418 +0 0.1607 +0 0.0589 +0 0.1603 +0 0.1143 +0 0.1733 +0 0.1378 +0 0.0539 +0 0.1948 +0 0.1184 +0 0.0773 +0 0.1070 +0 0.0812 +0 0.0948 +0 0.2141 +0 0.1029 +0 0.2530 +0 0.1138 +0 0.2330 +0 0.1133 +0 0.0847 +0 0.1133 +0 0.2980 +0 0.3317 +0 0.1602 +0 0.2610 +0 0.1264 +0 0.0852 +0 0.0972 +0 0.1212 +0 0.0908 +0 0.0925 +0 0.0863 +0 0.0496 +0 0.0752 +0 0.2546 +0 0.1127 +0 0.0799 +0 0.1677 +0 0.1904 +0 0.1299 +1 0.7616 +0 0.1006 +0 0.0439 +0 0.0476 +0 0.7424 +0 0.0412 +0 0.1991 +0 0.1439 +0 0.1183 +0 0.0813 +0 0.3369 +0 0.0875 +0 0.0627 +0 0.0971 +0 0.0873 +0 0.1025 +0 0.2804 +0 0.1172 +0 0.0964 +0 0.0687 +0 0.2183 +0 0.1416 +0 0.6989 +0 0.1025 +0 0.2513 +0 0.1076 +0 0.1978 +0 0.0527 +0 0.0544 +0 0.1478 +0 0.0753 +0 0.1209 +0 0.1796 +0 0.0736 +0 0.1405 +0 0.0617 +0 0.1643 +0 0.1237 +0 0.0859 +0 0.0914 +0 0.0530 +0 0.1770 +0 0.1380 +0 0.1074 +0 0.4841 +0 0.1862 +0 0.0541 +0 0.0547 +0 0.1941 +0 0.1926 +0 0.0481 +0 0.0641 +0 0.1419 +0 0.1188 +0 0.0837 +0 0.1171 +0 0.0742 +0 0.0643 +0 0.1151 +0 0.1425 +0 0.0869 +0 0.1261 +0 0.0541 +0 0.3496 +0 0.2195 +0 0.1108 +0 0.0749 +0 0.0591 +0 0.4639 +0 0.0898 +0 0.2587 +0 0.0984 +0 0.0672 +0 0.1075 +0 0.3486 +0 0.0370 +0 0.0577 +0 0.2031 +0 0.1435 +0 0.3519 +0 0.0643 +0 0.0670 +0 0.0448 +0 0.1055 +0 0.0604 +0 0.1678 +0 0.1315 +0 0.1148 +0 0.0517 +0 0.0625 +0 0.0443 +0 0.2780 +0 0.0893 +0 0.0878 +0 0.1047 +0 0.1086 +0 0.1452 +0 0.0663 +0 0.0562 +0 0.0613 +0 0.1857 +0 0.3478 +0 0.0944 +0 0.0722 +0 0.0852 +1 0.8052 +0 0.1324 +0 0.1411 +0 0.1407 +0 0.0577 +0 0.2889 +0 0.1220 +0 0.1152 +0 0.0934 +0 0.0893 +0 0.0831 +0 0.1191 +0 0.0836 +0 0.0427 +0 0.1228 +0 0.0881 +0 0.1901 +0 0.0466 +0 0.2530 +0 0.1336 +0 0.1271 +0 0.0519 +0 0.0878 +0 0.1592 +0 0.0374 +0 0.1468 +0 0.1688 +0 0.1034 +0 0.0510 +0 0.1809 +0 0.1088 +0 0.0577 +0 0.1068 +0 0.0923 +0 0.1319 +0 0.0476 +0 0.1502 +0 0.0445 +0 0.1520 +0 0.0618 +0 0.1205 +0 0.0915 +0 0.6288 +0 0.1525 +1 0.8437 +0 0.0530 +0 0.1152 +0 0.1001 +0 0.1100 +0 0.0593 +0 0.0786 +0 0.0677 +0 0.0685 +0 0.1508 +0 0.1638 +0 0.0937 +0 0.1716 +0 0.1879 +0 0.0714 +0 0.0942 +0 0.1331 +0 0.0527 +0 0.1262 +0 0.0788 +0 0.1032 +0 0.0792 +0 0.0461 +0 0.1439 +0 0.0851 +0 0.1407 +0 0.0939 +0 0.6380 +0 0.0573 +0 0.0752 +0 0.0971 +0 0.0674 +0 0.0972 +0 0.0493 +0 0.1135 +0 0.0796 +0 0.2496 +0 0.1393 +0 0.0677 +0 0.0977 +0 0.0595 +0 0.0451 +0 0.1090 +0 0.0428 +0 0.0684 +0 0.1303 +0 0.1217 +0 0.1444 +0 0.0979 +0 0.0429 +0 0.1770 +0 0.1362 +1 0.7944 +0 0.0775 +0 0.0470 +0 0.1780 +0 0.2437 +0 0.0474 +0 0.0489 +0 0.4285 +0 0.0603 +0 0.4457 +0 0.0549 +0 0.0660 +0 0.1086 +0 0.1174 +0 0.1281 +0 0.0688 +0 0.0930 +0 0.1986 +0 0.2218 +0 0.0806 +0 0.0417 +0 0.0868 +0 0.0503 +0 0.0425 +0 0.0425 +0 0.0359 +0 0.0593 +0 0.0889 +0 0.0975 +0 0.1396 +0 0.0766 +0 0.0572 +0 0.1976 +0 0.0876 +0 0.2314 +0 0.0853 +0 0.0925 +0 0.0716 +0 0.0581 +0 0.0970 +0 0.1039 +0 0.1283 +0 0.1246 +0 0.0978 +0 0.1722 +0 0.0549 +0 0.1143 +0 0.1253 +0 0.0888 +0 0.1151 +0 0.3125 +0 0.0791 +0 0.1203 +0 0.1829 +0 0.1648 +0 0.0746 +0 0.0642 +0 0.1862 +0 0.0822 +0 0.3328 +0 0.0619 +0 0.4907 +0 0.2114 +0 0.1287 +0 0.1948 +0 0.1181 +0 0.0926 +0 0.1480 +0 0.2292 +0 0.0973 +0 0.1032 +0 0.0818 +0 0.0807 +0 0.1041 +0 0.1140 +0 0.1910 +0 0.1292 +0 0.0518 +0 0.1880 +0 0.0573 +0 0.1514 +0 0.0386 +0 0.1053 +0 0.1148 +0 0.1168 +0 0.1477 +1 0.8408 +0 0.1061 +0 0.0890 +0 0.1627 +0 0.2122 +0 0.0787 +0 0.0758 +0 0.1702 +0 0.1101 +0 0.1082 +0 0.0789 +1 0.8108 +0 0.0383 +0 0.2729 +0 0.1048 +0 0.5095 +0 0.0785 +0 0.1141 +0 0.1449 +0 0.1418 +0 0.0832 +0 0.0597 +0 0.1101 +0 0.0666 +0 0.0590 +0 0.1281 +0 0.1219 +0 0.2151 +0 0.0808 +0 0.0486 +0 0.0741 +0 0.0412 +0 0.1054 +0 0.0502 +0 0.0768 +0 0.1680 +0 0.1203 +0 0.1935 +0 0.2064 +0 0.3787 +0 0.0663 +0 0.2129 +0 0.0627 +0 0.0825 +0 0.1800 +0 0.1177 +1 0.9038 +0 0.1451 +0 0.0996 +0 0.0568 +0 0.0781 +0 0.1619 +0 0.2002 +0 0.4042 +0 0.0500 +0 0.5735 +0 0.0381 +0 0.1261 +0 0.0615 +0 0.1167 +0 0.1968 +1 0.8581 +1 0.7921 +0 0.1090 +0 0.1174 +0 0.0954 +0 0.0981 +0 0.1841 +0 0.0771 +0 0.0696 +0 0.1681 +0 0.1634 +0 0.0555 +0 0.1023 +0 0.0841 +0 0.0806 +0 0.0674 +0 0.1065 +0 0.0664 +0 0.1990 +0 0.1511 +0 0.1027 +0 0.5153 +0 0.0699 +0 0.0858 +0 0.0917 +0 0.0615 +0 0.0705 +0 0.2175 +0 0.2403 +0 0.0738 +0 0.0917 +0 0.0358 +0 0.2722 +0 0.0788 +0 0.0405 +0 0.1875 +0 0.0647 +0 0.1258 +0 0.6328 +0 0.1022 +0 0.0322 +0 0.0660 +0 0.4494 +0 0.1265 +0 0.2859 +0 0.0614 +0 0.1560 +0 0.1104 +0 0.2321 +0 0.1299 +0 0.0721 +0 0.0764 +0 0.1046 +0 0.0436 +0 0.0965 +0 0.0770 +0 0.0687 +0 0.2291 +0 0.1050 +0 0.1513 +0 0.0679 +0 0.1603 +0 0.0827 +0 0.1114 +0 0.1408 +0 0.0520 +0 0.0578 +0 0.0549 +0 0.1123 +0 0.1289 +0 0.1525 +0 0.0785 +0 0.1253 +0 0.2638 +0 0.0447 +0 0.1137 +0 0.0907 +0 0.1091 +0 0.1157 +0 0.0672 +0 0.1896 +0 0.1369 +0 0.0798 +0 0.0535 +0 0.0588 +1 0.8311 +0 0.2779 +0 0.0849 +0 0.0909 +0 0.1122 +0 0.2761 +0 0.5364 +0 0.0935 +0 0.0560 +0 0.0781 +0 0.0606 +0 0.0985 +0 0.0990 +0 0.0475 +0 0.1292 +0 0.1403 +0 0.1397 +0 0.1045 +0 0.0831 +0 0.0466 +0 0.0724 +0 0.6858 +0 0.1098 +0 0.0620 +0 0.0604 +0 0.1671 +0 0.3638 +0 0.1019 +0 0.2034 +0 0.0804 +0 0.1501 +0 0.1506 +0 0.2968 +0 0.0379 +0 0.0777 +0 0.0559 +0 0.0735 +0 0.0639 +0 0.0657 +0 0.0639 +0 0.2094 +0 0.0545 +0 0.0740 +0 0.2156 +0 0.1169 +0 0.0843 +0 0.1523 +0 0.1279 +0 0.0704 +0 0.0374 +0 0.0517 +0 0.1674 +0 0.2583 +0 0.1142 +0 0.0912 +0 0.1665 +0 0.2327 +0 0.0675 +0 0.1928 +0 0.1278 +0 0.0861 +0 0.0457 +0 0.0399 +0 0.1203 +0 0.0492 +0 0.1077 +0 0.4402 +1 0.8257 +0 0.1476 +0 0.1084 +0 0.1764 +0 0.0541 +0 0.2020 +0 0.0539 +0 0.0490 +0 0.2986 +0 0.0552 +0 0.1043 +0 0.1072 +0 0.0423 +0 0.3729 +0 0.2721 +0 0.0735 +0 0.0733 +0 0.0659 +0 0.0857 +0 0.2935 +0 0.1401 +0 0.3100 +0 0.2296 +0 0.0528 +0 0.0661 +0 0.1531 +0 0.1392 +0 0.2367 +0 0.1581 +0 0.0866 +0 0.1030 +0 0.1660 +0 0.0479 +0 0.1290 +0 0.0912 +0 0.0989 +0 0.1358 +0 0.4178 +0 0.3327 +0 0.1692 +0 0.1475 +0 0.0474 +0 0.1173 +0 0.0496 +0 0.2826 +0 0.1269 +0 0.0759 +0 0.2378 +0 0.1896 +0 0.2514 +0 0.0397 +0 0.0868 +1 0.8691 +0 0.1668 +0 0.6405 +0 0.0687 +0 0.0705 +0 0.2793 +0 0.1075 +0 0.0612 +0 0.1197 +0 0.2156 +0 0.1452 +0 0.0302 +0 0.0938 +0 0.2364 +0 0.1365 +0 0.1191 +0 0.6797 +0 0.1234 +0 0.1439 +0 0.0703 +0 0.0647 +0 0.4145 +0 0.0617 +0 0.0489 +0 0.2256 +0 0.1111 +0 0.1101 +0 0.1182 +0 0.1379 +0 0.1756 +0 0.0627 +0 0.0672 +0 0.2647 +0 0.1874 +0 0.2085 +0 0.1361 +0 0.0885 +0 0.1554 +0 0.0723 +0 0.2080 +0 0.0705 +0 0.1038 +0 0.0824 +0 0.1263 +1 0.7724 +0 0.0899 +0 0.1860 +0 0.0853 +0 0.0680 +0 0.0979 +0 0.0631 +0 0.2814 +0 0.5983 +0 0.1192 +0 0.2148 +0 0.0878 +0 0.1137 +0 0.2108 +0 0.5061 +0 0.1085 +0 0.0559 +0 0.0687 +0 0.3878 +0 0.0804 +0 0.0706 +0 0.0438 +0 0.0609 +0 0.1865 +0 0.1130 +0 0.0444 +0 0.0589 +0 0.0887 +0 0.0708 +1 0.8102 +0 0.1439 +0 0.0655 +0 0.5449 +0 0.0428 +0 0.2273 +0 0.0512 +0 0.0856 +0 0.0623 +0 0.6059 +0 0.0632 +0 0.0457 +0 0.1979 +1 0.8017 +0 0.0566 +0 0.1226 +0 0.0482 +0 0.3192 +0 0.1257 +0 0.1029 +0 0.0617 +0 0.2254 +0 0.0622 +0 0.1075 +0 0.1855 +0 0.1094 +0 0.2983 +0 0.1143 +1 0.7504 +0 0.0611 +0 0.0837 +0 0.6880 +0 0.1369 +0 0.1340 +0 0.1270 +0 0.1659 +0 0.2039 +0 0.2322 +0 0.1600 +0 0.0628 +0 0.0553 +0 0.1436 +0 0.0667 +0 0.0330 +0 0.0478 +0 0.3265 +0 0.0907 +0 0.0964 +0 0.1630 +0 0.0802 +0 0.1106 +0 0.1742 +0 0.0588 +0 0.1877 +0 0.1560 +0 0.1149 +0 0.2172 +0 0.1251 +0 0.0934 +0 0.0843 +0 0.1181 +0 0.0683 +0 0.2262 +0 0.2412 +0 0.0826 +0 0.0646 +0 0.1661 +0 0.1289 +0 0.0659 +0 0.0698 +0 0.0408 +0 0.0607 +0 0.0642 +0 0.5867 +0 0.1944 +0 0.0711 +0 0.1914 +0 0.1333 +0 0.1477 +0 0.0642 +0 0.0810 +0 0.1569 +0 0.0872 +0 0.1198 +0 0.0848 +0 0.1921 +0 0.0914 +0 0.0909 +0 0.1332 +0 0.1366 +0 0.0501 +0 0.1628 +0 0.0878 +0 0.0752 +0 0.0937 +0 0.2894 +0 0.0686 +0 0.2024 +0 0.1426 +0 0.1891 +0 0.0561 +0 0.0717 +0 0.0523 +0 0.3598 +0 0.1696 +0 0.1439 +0 0.1620 +0 0.0834 +0 0.1960 +0 0.0481 +0 0.1206 +0 0.0609 +0 0.1733 +0 0.0501 +0 0.0578 +0 0.0827 +0 0.1749 +0 0.0920 +0 0.0838 +0 0.1552 +0 0.1707 +0 0.0785 +0 0.0434 +0 0.1467 +1 0.7760 +0 0.1891 +0 0.1240 +0 0.0823 +0 0.2483 +0 0.3928 +0 0.0917 +0 0.0806 +0 0.1428 +0 0.0890 +0 0.0996 +0 0.0501 +0 0.0593 +0 0.0711 +0 0.0791 +0 0.0659 +0 0.2483 +0 0.0789 +0 0.2355 +0 0.1869 +0 0.0837 +0 0.0457 +0 0.1161 +0 0.0383 +0 0.0604 +0 0.0983 +0 0.0815 +0 0.1106 +0 0.1235 +0 0.0706 +0 0.3144 +0 0.0781 +0 0.2156 +0 0.1287 +0 0.0344 +0 0.0412 +0 0.1111 +0 0.0412 +0 0.0627 +0 0.1249 +0 0.2685 +0 0.5677 +0 0.0821 +0 0.2519 +0 0.7044 +0 0.1235 +0 0.1456 +0 0.0529 +0 0.6837 +0 0.0918 +0 0.1042 +0 0.0557 +0 0.1612 +0 0.0442 +0 0.1343 +0 0.1166 +0 0.1541 +0 0.1643 +0 0.5552 +0 0.0796 +0 0.1147 +0 0.0564 +0 0.0908 +0 0.0699 +0 0.0588 +0 0.0511 +0 0.1050 +0 0.1327 +0 0.0972 +0 0.1849 +0 0.2330 +0 0.1069 +0 0.0797 +0 0.1740 +0 0.1290 +0 0.1979 +0 0.3104 +0 0.0648 +0 0.1614 +0 0.0783 +0 0.1765 +0 0.0437 +0 0.1107 +0 0.1698 +0 0.4804 +0 0.0741 +0 0.0985 +0 0.0558 +0 0.0738 +0 0.0384 +1 0.3346 +0 0.0911 +0 0.7212 +0 0.0777 +0 0.0566 +0 0.0354 +0 0.0958 +0 0.0813 +0 0.1495 +0 0.0703 +0 0.1912 +0 0.1485 +0 0.0403 +0 0.0862 +0 0.2155 +0 0.1005 +0 0.3363 +0 0.0485 +0 0.1839 +0 0.2279 +0 0.0522 +0 0.1052 +0 0.0943 +0 0.1316 +0 0.5099 +0 0.1937 +0 0.1632 +0 0.0467 +0 0.1714 +0 0.1704 +0 0.0955 +0 0.1626 +0 0.5285 +0 0.5047 +0 0.0650 +0 0.0621 +0 0.1388 +0 0.5354 +0 0.1413 +0 0.1901 +0 0.0582 +0 0.1996 +0 0.0848 +0 0.0616 +0 0.0685 +0 0.1607 +0 0.0538 +0 0.1073 +0 0.1155 +0 0.1981 +0 0.1042 +0 0.0568 +0 0.1479 +0 0.1036 +0 0.1029 +0 0.0915 +0 0.1008 +0 0.0785 +0 0.0863 +0 0.1020 +0 0.3213 +0 0.2382 +0 0.0428 +0 0.1093 +0 0.0722 +0 0.0676 +0 0.1839 +0 0.1483 +0 0.0408 +0 0.2084 +0 0.2111 +0 0.1042 +0 0.1037 +0 0.3955 +0 0.0538 +0 0.0513 +0 0.0722 +0 0.0734 +0 0.1213 +0 0.2608 +0 0.0558 +0 0.0609 +0 0.3971 +0 0.0797 +0 0.1161 +0 0.2006 +0 0.0475 +0 0.0869 +0 0.2491 +0 0.1503 +0 0.1730 +0 0.0659 +0 0.1512 +0 0.1214 +0 0.0406 +0 0.3147 +0 0.1683 +0 0.0733 +0 0.0612 +0 0.2344 +0 0.3355 +0 0.0918 +0 0.0711 +0 0.1325 +0 0.6880 +0 0.0905 +0 0.0772 +0 0.1275 +0 0.0697 +1 0.7525 +0 0.0907 +0 0.0842 +0 0.0468 +0 0.0983 +0 0.0429 +0 0.1107 +0 0.2216 +0 0.0698 +0 0.4582 +0 0.0864 +0 0.2380 +0 0.1300 +0 0.0790 +0 0.1889 +0 0.0595 +0 0.0338 +0 0.1148 +0 0.1494 +0 0.1226 +0 0.1530 +0 0.4332 +0 0.0780 +0 0.1605 +0 0.1532 +0 0.0860 +0 0.2027 +0 0.0427 +1 0.7571 +0 0.0762 +0 0.0898 +0 0.1017 +0 0.1486 +0 0.0538 +0 0.5466 +0 0.1576 +0 0.1109 +0 0.0900 +0 0.0479 +0 0.7375 +0 0.0560 +0 0.1676 +0 0.0786 +0 0.1242 +0 0.1301 +0 0.0324 +0 0.1274 +0 0.3038 +0 0.0776 +0 0.1282 +0 0.0567 +0 0.2468 +0 0.1739 +0 0.2124 +0 0.0954 +0 0.2339 +0 0.6143 +0 0.1735 +0 0.0525 +0 0.1872 +0 0.2437 +0 0.1974 +0 0.1121 +0 0.0852 +0 0.3093 +0 0.0752 +0 0.0900 +0 0.0594 +0 0.1538 +0 0.0454 +0 0.0710 +0 0.1485 +0 0.1095 +0 0.0352 +0 0.0947 +0 0.0770 +0 0.1533 +0 0.1273 +0 0.1821 +0 0.1071 +0 0.3650 +0 0.0779 +0 0.2320 +0 0.0899 +0 0.0643 +0 0.0531 +0 0.0930 +0 0.0414 +0 0.2076 +0 0.2123 +0 0.0476 +0 0.0822 +0 0.0512 +0 0.1323 +0 0.1079 +0 0.1179 +0 0.0982 +0 0.2198 +0 0.2358 +0 0.1355 +0 0.0934 +0 0.1870 +0 0.1213 +0 0.1252 +0 0.0682 +0 0.0747 +0 0.0658 +0 0.1703 +0 0.0592 +0 0.2417 +0 0.1017 +0 0.0891 +0 0.1154 +0 0.2339 +0 0.0573 +0 0.0684 +0 0.2621 +0 0.1336 +0 0.0901 +0 0.3575 +0 0.1543 +0 0.0540 +0 0.0407 +0 0.2725 +0 0.0461 +0 0.0899 +0 0.2121 +0 0.0917 +0 0.1985 +0 0.0756 +0 0.0763 +0 0.1089 +0 0.2953 +0 0.2899 +0 0.0924 +0 0.2915 +0 0.0765 +0 0.3106 +0 0.0700 +0 0.3900 +0 0.1899 +0 0.3725 +0 0.0734 +0 0.1339 +0 0.0683 +0 0.0807 +0 0.0392 +0 0.1281 +0 0.1610 +0 0.1752 +0 0.0600 +0 0.0649 +0 0.0458 +0 0.1063 +0 0.0464 +0 0.0500 +0 0.0721 +0 0.1180 +0 0.2205 +0 0.2760 +0 0.3210 +0 0.3786 +0 0.1143 +0 0.0876 +0 0.1571 +0 0.1539 +0 0.1807 +0 0.0496 +0 0.0532 +0 0.0849 +0 0.1947 +0 0.0401 +0 0.1409 +0 0.1278 +0 0.0998 +0 0.0894 +0 0.0696 +0 0.1378 +0 0.0554 +0 0.1874 +0 0.4286 +0 0.0741 +0 0.0891 +0 0.1004 +0 0.2024 +0 0.1066 +0 0.0663 +0 0.1483 +0 0.2100 +0 0.2024 +0 0.0770 +0 0.0733 +0 0.0560 +0 0.2287 +0 0.1368 +0 0.0459 +0 0.0492 +0 0.1134 +0 0.2480 +0 0.1144 +0 0.1309 +0 0.0562 +0 0.1456 +0 0.1683 +0 0.1917 +0 0.0686 +0 0.0675 +0 0.1207 +0 0.0536 +0 0.1261 +0 0.1979 +0 0.0733 +0 0.1162 +0 0.0800 +0 0.1098 +0 0.0840 +0 0.5425 +0 0.1180 +0 0.0664 +0 0.0975 +0 0.1057 +0 0.1110 +0 0.0714 +0 0.0747 +0 0.0862 +0 0.1893 +0 0.1243 +0 0.0427 +0 0.1560 +0 0.2141 +0 0.2334 +0 0.4092 +0 0.1438 +0 0.0458 +0 0.0500 +0 0.0745 +0 0.3088 +0 0.1305 +0 0.1080 +0 0.1180 +0 0.0504 +0 0.1832 +0 0.1199 +0 0.0601 +0 0.1094 +0 0.0393 +0 0.1472 +0 0.0595 +0 0.6433 +0 0.0863 +0 0.1840 +0 0.0876 +0 0.0737 +0 0.1734 +0 0.0719 +0 0.0541 +0 0.2147 +0 0.5422 +0 0.1512 +0 0.1359 +0 0.0631 +0 0.1319 +0 0.0676 +0 0.0938 +0 0.0666 +0 0.0540 +0 0.0826 +0 0.4201 +0 0.2068 +0 0.1149 +0 0.0816 +0 0.1878 +0 0.1521 +0 0.1380 +0 0.0460 +0 0.0759 +0 0.2692 +0 0.0798 +0 0.0755 +0 0.3091 +0 0.4749 +0 0.1630 +0 0.1299 +0 0.4288 +0 0.0784 +0 0.1052 +0 0.0672 +0 0.2652 +0 0.6947 +0 0.0757 +0 0.1028 +0 0.2444 +0 0.0792 +0 0.0962 +0 0.4175 +0 0.0551 +0 0.0750 +0 0.1252 +0 0.1140 +0 0.0712 +0 0.2290 +0 0.0479 +0 0.0745 +0 0.0851 +0 0.0697 +0 0.1426 +0 0.0712 +0 0.0399 +0 0.1577 +0 0.1295 +0 0.0735 +1 0.8263 +0 0.1431 +0 0.0751 +0 0.0658 +0 0.0735 +0 0.1760 +0 0.0583 +0 0.1533 +0 0.0545 +0 0.3602 +0 0.1207 +0 0.4398 +0 0.0604 +0 0.0946 +0 0.1371 +0 0.0522 +0 0.1103 +0 0.1089 +0 0.0776 +0 0.1160 +0 0.2237 +1 0.8495 +0 0.1017 +0 0.0654 +0 0.1116 +0 0.0404 +0 0.1121 +0 0.1064 +0 0.0870 +0 0.0959 +0 0.2084 +0 0.1409 +0 0.3406 +0 0.1256 +0 0.0885 +0 0.1496 +0 0.1960 +0 0.1926 +0 0.0413 +0 0.0621 +0 0.0580 +0 0.3053 +0 0.0747 +0 0.1186 +0 0.1605 +0 0.1020 +0 0.0920 +0 0.1439 +0 0.3874 +0 0.0586 +0 0.4686 +0 0.0910 +0 0.4440 +0 0.0952 +0 0.0609 +0 0.0721 +0 0.0491 +0 0.0478 +0 0.0714 +0 0.2703 +0 0.0631 +0 0.1414 +0 0.2564 +0 0.1123 +0 0.1196 +0 0.0691 +0 0.0739 +0 0.2103 +0 0.0743 +0 0.1318 +0 0.0785 +0 0.0806 +0 0.0754 +0 0.1955 +0 0.0614 +0 0.4523 +0 0.1637 +0 0.1023 +0 0.0785 +0 0.0631 +0 0.0634 +0 0.0773 +0 0.1470 +0 0.0404 +0 0.1076 +0 0.6231 +0 0.2030 +0 0.3350 +0 0.0953 +0 0.3570 +0 0.2423 +0 0.0936 +0 0.1805 +0 0.2445 +0 0.0884 +0 0.1211 +0 0.0904 +0 0.2256 +0 0.0776 +0 0.0433 +0 0.2265 +0 0.1948 +0 0.1798 +0 0.1641 +0 0.3757 +0 0.0723 +0 0.3046 +0 0.1978 +0 0.1825 +0 0.0504 +0 0.1089 +0 0.0914 +0 0.0646 +0 0.1284 +0 0.0720 +0 0.0481 +0 0.1793 +0 0.1491 +0 0.0666 +0 0.0553 +0 0.2204 +0 0.1545 +0 0.2167 +0 0.0633 +0 0.1440 +0 0.1226 +0 0.0775 +1 0.7723 +0 0.1162 +0 0.1283 +0 0.1517 +0 0.0682 +0 0.0877 +0 0.0920 +0 0.1865 +0 0.1273 +0 0.0678 +0 0.0558 +0 0.3262 +0 0.1279 +0 0.0852 +0 0.0398 +0 0.0395 +0 0.0553 +0 0.0877 +0 0.0793 +0 0.0829 +0 0.1077 +0 0.0345 +1 0.8485 +0 0.0867 +0 0.0580 +0 0.0498 +0 0.0631 +0 0.0596 +0 0.0724 +0 0.0984 +0 0.1139 +0 0.0665 +0 0.1105 +0 0.0284 +0 0.0810 +0 0.0639 +0 0.1525 +0 0.0771 +0 0.0445 +0 0.1934 +0 0.0693 +0 0.1742 +0 0.0705 +1 0.7701 +0 0.1204 +0 0.2826 +0 0.0711 +0 0.1312 +0 0.1039 +0 0.1521 +0 0.0937 +0 0.1124 +0 0.1574 +0 0.1032 +0 0.3121 +0 0.2369 +0 0.3095 +0 0.1183 +0 0.1852 +0 0.0785 +0 0.1493 +0 0.1689 +0 0.0963 +0 0.1221 +0 0.0747 +0 0.0799 +0 0.0864 +0 0.1936 +0 0.1885 +0 0.1736 +0 0.0473 +0 0.6675 +0 0.0491 +0 0.0411 +0 0.2067 +0 0.0593 +0 0.6939 +0 0.1147 +0 0.1427 +0 0.1099 +0 0.0456 +0 0.0937 +0 0.0743 +0 0.1164 +0 0.1884 +0 0.1070 +0 0.1335 +0 0.1204 +0 0.1639 +0 0.0856 +0 0.1001 +0 0.0939 +0 0.0798 +0 0.1626 +0 0.1681 +0 0.1460 +0 0.1433 +0 0.0447 +0 0.1853 +0 0.0900 +0 0.3753 +0 0.0695 +0 0.0747 +0 0.2565 +0 0.1860 +0 0.0514 +0 0.5908 +0 0.1677 +0 0.1358 +0 0.1015 +0 0.1097 +0 0.1205 +0 0.1877 +0 0.0986 +0 0.0435 +0 0.0821 +0 0.0922 +0 0.6372 +0 0.3299 +0 0.0867 +0 0.0962 +0 0.1782 +0 0.0488 +0 0.1093 +0 0.2152 +0 0.1054 +0 0.0345 +0 0.0522 +0 0.1608 +0 0.0709 +0 0.1216 +0 0.0616 +0 0.0855 +0 0.0925 +0 0.2870 +0 0.0750 +0 0.0570 +0 0.1202 +0 0.5389 +0 0.0444 +0 0.1569 +0 0.1142 +0 0.1168 +0 0.0651 +0 0.0796 +0 0.0613 +0 0.0398 +0 0.2359 +0 0.0705 +0 0.0721 +0 0.0695 +0 0.0981 +0 0.0625 +0 0.0899 +0 0.0762 +0 0.0735 +0 0.1040 +0 0.1588 +0 0.0870 +0 0.1758 +0 0.0941 +0 0.1494 +0 0.1136 +0 0.1185 +0 0.0711 +0 0.5596 +0 0.1413 +0 0.3473 +0 0.4549 +0 0.1979 +0 0.0679 +0 0.0945 +0 0.1338 +0 0.1241 +0 0.1663 +0 0.2010 +0 0.0558 +0 0.1949 +0 0.0747 +0 0.6401 +0 0.0541 +0 0.0771 +0 0.2779 +0 0.1396 +0 0.0850 +0 0.0953 +0 0.2818 +0 0.0974 +0 0.0356 +0 0.0519 +0 0.1218 +0 0.2811 +0 0.3473 +0 0.1516 +0 0.0761 +0 0.0598 +0 0.0737 +0 0.1824 +0 0.1122 +0 0.1043 +0 0.1485 +0 0.2521 +0 0.2779 +0 0.5296 +0 0.0778 +0 0.0743 +0 0.3561 +0 0.1437 +0 0.3884 +0 0.0680 +0 0.0561 +0 0.2447 +0 0.0905 +0 0.1223 +0 0.0513 +0 0.1492 +0 0.0805 +0 0.0623 +0 0.0899 +0 0.0744 +0 0.7071 +0 0.1005 +0 0.0521 +0 0.0851 +0 0.1116 +0 0.2165 +0 0.1697 +0 0.1704 +0 0.1298 +0 0.0804 +0 0.1950 +0 0.7014 +0 0.2579 +0 0.0827 +0 0.0849 +0 0.1872 +0 0.2572 +0 0.1675 +0 0.0623 +0 0.1560 +0 0.0782 +0 0.1358 +0 0.2135 +0 0.1250 +0 0.0668 +0 0.0846 +0 0.0529 +0 0.0932 +0 0.3153 +0 0.1282 +0 0.1492 +0 0.2041 +0 0.0707 +0 0.0672 +0 0.1630 +0 0.1971 +0 0.1099 +0 0.0411 +0 0.0583 +0 0.0358 +0 0.1084 +0 0.3286 +0 0.0940 +0 0.1160 +0 0.1048 +0 0.1058 +0 0.1194 +0 0.0972 +0 0.0660 +0 0.2543 +0 0.1869 +0 0.0635 +0 0.0914 +0 0.0851 +0 0.1836 +0 0.0773 +0 0.1026 +0 0.0732 +0 0.0624 +0 0.1435 +0 0.0464 +0 0.2230 +0 0.1256 +0 0.1205 +0 0.1061 +0 0.0902 +0 0.0783 +0 0.0685 +0 0.0757 +0 0.0672 +0 0.0988 +0 0.0842 +0 0.1990 +0 0.0832 +0 0.3095 +0 0.0997 +0 0.0599 +0 0.0724 +0 0.2770 +0 0.1902 +0 0.0588 +1 0.7649 +0 0.1072 +0 0.1103 +0 0.1288 +0 0.0856 +0 0.0727 +0 0.1295 +0 0.0819 +0 0.2035 +0 0.0755 +0 0.0969 +0 0.0496 +0 0.0974 +1 0.7820 +0 0.1139 +0 0.0470 +0 0.1584 +0 0.0773 +0 0.0977 +0 0.0977 +0 0.1447 +0 0.0999 +0 0.1575 +0 0.4334 +0 0.0757 +0 0.0700 +0 0.1235 +0 0.0763 +0 0.1058 +0 0.0713 +0 0.2256 +0 0.1393 +0 0.0637 +0 0.1220 +0 0.0849 +0 0.0403 +0 0.0927 +0 0.0666 +0 0.0610 +0 0.0694 +0 0.1429 +0 0.1247 +0 0.0761 +0 0.0536 +0 0.1564 +0 0.2483 +0 0.7177 +0 0.0409 +0 0.0983 +0 0.1528 +0 0.2360 +0 0.1046 +0 0.1125 +0 0.1154 +0 0.0715 +0 0.2608 +0 0.0506 +0 0.0648 +0 0.0716 +0 0.0701 +0 0.0365 +0 0.0845 +0 0.3138 +0 0.0662 +0 0.0689 +0 0.0876 +0 0.1122 +0 0.0924 +0 0.5133 +0 0.3588 +0 0.0934 +0 0.0754 +0 0.1682 +0 0.0914 +0 0.1765 +0 0.1519 +0 0.0795 +0 0.4631 +0 0.2048 +0 0.0887 +0 0.1073 +0 0.5616 +0 0.0864 +0 0.0696 +0 0.1954 +0 0.1607 +0 0.1069 +0 0.0867 +0 0.1903 +0 0.3105 +0 0.0448 +0 0.1059 +0 0.0550 +0 0.1100 +0 0.1204 +0 0.1133 +0 0.0945 +1 0.8382 +0 0.1767 +0 0.1371 +0 0.0739 +0 0.1112 +0 0.1060 +0 0.0649 +0 0.1282 +0 0.1318 +0 0.0937 +0 0.0458 +0 0.0776 +0 0.1460 +0 0.1441 +0 0.0381 +1 0.8444 +0 0.1085 +0 0.1628 +0 0.0748 +0 0.3881 +0 0.0938 +0 0.1092 +0 0.1114 +0 0.0581 +0 0.0672 +1 0.7822 +0 0.2085 +0 0.1666 +0 0.0516 +0 0.0696 +0 0.1334 +0 0.5423 +0 0.0644 +0 0.1374 +0 0.1077 +0 0.4150 +0 0.0856 +0 0.2285 +0 0.0811 +0 0.0699 +0 0.0988 +0 0.0859 +0 0.0777 +0 0.1093 +0 0.1148 +0 0.1988 +0 0.1501 +0 0.0551 +0 0.4764 +0 0.1564 +0 0.0445 +0 0.0821 +0 0.0749 +0 0.0660 +0 0.2200 +0 0.0633 +0 0.0652 +0 0.0564 +0 0.0824 +0 0.2272 +0 0.1083 +0 0.1102 +0 0.1643 +0 0.2480 +0 0.2474 +0 0.5487 +0 0.3519 +0 0.1225 +0 0.0927 +0 0.0604 +0 0.2046 +0 0.1179 +0 0.0614 +0 0.0835 +0 0.1777 +0 0.0684 +0 0.2670 +0 0.6975 +0 0.1091 +0 0.0722 +0 0.0844 +0 0.0844 +0 0.0690 +0 0.0676 +0 0.6730 +0 0.1030 +0 0.0791 +1 0.8168 +0 0.1065 +0 0.0341 +0 0.2596 +0 0.0635 +0 0.0318 +0 0.0852 +0 0.0737 +0 0.0776 +0 0.0715 +0 0.1065 +0 0.0913 +0 0.1220 +0 0.0771 +0 0.1634 +0 0.1903 +0 0.0643 +0 0.0800 +0 0.0558 +0 0.1720 +0 0.1417 +0 0.0531 +0 0.0865 +0 0.1333 +0 0.1144 +0 0.0806 +0 0.0891 +0 0.0670 +0 0.1222 +0 0.0626 +0 0.0566 +0 0.0697 +0 0.0465 +0 0.0555 +0 0.0942 +0 0.0770 +0 0.0934 +0 0.1112 +0 0.0954 +0 0.0675 +0 0.1042 +0 0.1031 +0 0.1067 +0 0.1140 +0 0.1209 +0 0.0836 +0 0.0665 +0 0.0800 +0 0.0673 +0 0.1408 +0 0.0289 +0 0.5228 +0 0.1734 +0 0.1282 +0 0.0548 +1 0.7755 +0 0.1292 +1 0.7842 +0 0.0971 +0 0.1260 +0 0.0611 +0 0.1283 +0 0.0972 +0 0.1261 +0 0.0972 +0 0.0881 +0 0.1285 +0 0.1374 +0 0.2979 +0 0.2878 +0 0.1116 +0 0.0780 +0 0.1896 +0 0.0460 +0 0.2158 +0 0.2810 +0 0.1652 +0 0.0809 +0 0.1171 +0 0.0934 +0 0.1542 +0 0.1756 +0 0.3274 +0 0.1305 +0 0.3127 +0 0.2587 +0 0.0694 +0 0.3393 +0 0.1562 +0 0.0552 +0 0.1210 +0 0.1036 +0 0.5245 +0 0.0612 +0 0.1649 +0 0.1230 +0 0.0795 +0 0.0711 +0 0.1054 +0 0.0847 +0 0.1229 +0 0.0538 +0 0.0975 +0 0.1017 +0 0.1496 +0 0.0786 +0 0.0933 +0 0.1066 +0 0.2317 +0 0.1140 +0 0.2322 +0 0.0419 +0 0.0849 +0 0.1400 +0 0.0949 +0 0.2468 +0 0.0788 +0 0.0949 +0 0.1501 +0 0.1932 +0 0.5209 +0 0.2132 +0 0.1430 +0 0.0433 +0 0.0902 +0 0.4493 +1 0.8029 +0 0.0583 +0 0.2130 +0 0.0916 +0 0.0677 +0 0.1746 +0 0.1109 +0 0.1199 +0 0.2020 +0 0.0435 +0 0.0728 +0 0.0652 +0 0.0734 +0 0.0618 +0 0.2207 +0 0.0327 +0 0.0574 +0 0.1755 +0 0.1102 +0 0.0710 +0 0.2764 +0 0.2264 +0 0.1195 +0 0.0962 +0 0.0757 +0 0.0859 +0 0.0638 +0 0.1146 +0 0.1340 +0 0.1007 +0 0.0989 +0 0.0739 +0 0.0367 +0 0.0544 +0 0.1007 +0 0.1321 +0 0.1146 +0 0.0984 +0 0.1527 +0 0.0753 +0 0.0992 +0 0.0665 +0 0.0637 +0 0.1184 +0 0.2789 +0 0.1036 +0 0.4764 +0 0.0876 +0 0.0595 +0 0.1296 +1 0.8265 +0 0.0862 +0 0.1230 +0 0.0593 +0 0.1600 +0 0.0529 +0 0.1381 +0 0.0798 +0 0.0927 +0 0.0967 +0 0.0740 +0 0.0760 +0 0.1526 +0 0.1433 +0 0.3070 +0 0.0475 +0 0.1037 +0 0.0784 +0 0.0807 +0 0.1128 +0 0.1758 +0 0.0853 +0 0.0624 +0 0.0848 +0 0.2856 +0 0.0645 +0 0.0868 +0 0.0862 +0 0.2617 +0 0.1055 +0 0.0723 +0 0.1334 +0 0.0856 +0 0.1483 +0 0.0774 +0 0.0471 +0 0.0662 +0 0.2512 +0 0.1876 +0 0.1934 +0 0.7356 +0 0.0721 +0 0.0944 +0 0.0518 +0 0.0725 +0 0.1065 +0 0.1678 +0 0.0796 +0 0.0892 +0 0.0721 +0 0.1445 +0 0.0680 +0 0.0754 +0 0.1083 +0 0.0759 +0 0.1561 +0 0.0642 +0 0.0534 +0 0.0843 +0 0.0726 +0 0.1522 +0 0.1209 +1 0.7845 +0 0.1014 +0 0.0817 +0 0.0661 +0 0.1841 +0 0.1389 +0 0.1170 +0 0.1307 +0 0.1324 +0 0.0984 +0 0.1124 +0 0.4386 +0 0.1574 +0 0.1176 +0 0.1372 +0 0.1499 +0 0.0984 +0 0.1666 +0 0.1906 +0 0.0612 +0 0.1362 +0 0.2445 +0 0.1916 +0 0.1088 +0 0.0827 +0 0.0869 +0 0.1489 +0 0.0491 +0 0.1099 +0 0.1254 +0 0.1319 +0 0.0978 +0 0.0798 +0 0.3087 +0 0.1866 +0 0.2795 +0 0.1750 +0 0.2647 +0 0.0515 +0 0.0746 +0 0.1799 +0 0.2112 +0 0.0738 +0 0.0336 +0 0.0665 +1 0.7736 +1 0.7703 +0 0.0800 +0 0.3470 +0 0.1069 +0 0.0399 +0 0.6737 +0 0.1099 +0 0.0757 +0 0.2443 +0 0.0785 +0 0.0596 +0 0.1182 +0 0.2570 +1 0.8576 +0 0.1275 +0 0.0857 +0 0.1441 +0 0.5213 +0 0.1471 +0 0.1264 +0 0.2551 +0 0.0711 +0 0.0841 +0 0.0667 +0 0.2058 +0 0.0424 +0 0.1615 +0 0.1006 +0 0.0733 +0 0.1167 +0 0.2980 +0 0.2461 +0 0.0828 +0 0.2553 +0 0.3661 +0 0.1291 +0 0.1093 +0 0.0672 +0 0.1232 +0 0.0587 +0 0.5077 +1 0.7854 +0 0.0636 +0 0.5758 +0 0.1387 +0 0.1582 +0 0.1092 +0 0.0610 +0 0.0435 +0 0.0993 +0 0.1590 +0 0.0884 +0 0.1517 +1 0.8302 +0 0.0835 +0 0.1582 +0 0.0437 +0 0.1082 +0 0.1424 +0 0.0962 +0 0.1184 +0 0.1521 +0 0.1598 +0 0.2197 +0 0.0797 +0 0.4291 +0 0.0940 +0 0.0814 +0 0.1375 +0 0.1574 +0 0.1216 +0 0.0985 +0 0.1557 +0 0.0917 +0 0.1103 +0 0.1028 +0 0.0944 +0 0.3039 +0 0.0829 +0 0.0710 +0 0.1117 +0 0.0423 +0 0.0883 +0 0.0981 +0 0.1799 +0 0.0897 +0 0.1659 +0 0.1179 +0 0.0659 +0 0.1701 +0 0.0970 +0 0.0666 +0 0.2786 +0 0.1403 +0 0.2555 +0 0.6239 +0 0.0814 +0 0.0792 +0 0.2168 +0 0.1354 +0 0.0576 +0 0.0882 +0 0.1439 +0 0.2086 +0 0.1555 +0 0.6987 +0 0.2083 +0 0.6461 +0 0.0665 +0 0.0894 +0 0.1476 +0 0.1112 +0 0.0929 +0 0.2103 +0 0.1272 +0 0.1689 +0 0.0645 +0 0.1275 +0 0.1026 +0 0.1110 +0 0.0855 +0 0.1183 +0 0.0798 +0 0.1252 +0 0.1112 +0 0.0530 +0 0.5996 +0 0.0953 +0 0.1913 +0 0.1379 +0 0.1552 +0 0.1017 +0 0.1864 +0 0.4379 +0 0.1023 +0 0.7055 +0 0.0701 +0 0.1708 +0 0.0611 +0 0.1509 +0 0.1460 +0 0.2098 +0 0.1338 +0 0.1148 +0 0.1085 +0 0.0963 +0 0.0784 +0 0.0815 +0 0.0463 +0 0.0510 +0 0.0948 +0 0.0970 +0 0.3211 +0 0.0975 +0 0.3774 +0 0.1032 +0 0.1619 +0 0.1188 +0 0.0563 +0 0.6197 +0 0.1114 +0 0.0998 +1 0.8224 +0 0.0734 +0 0.1416 +0 0.1779 +0 0.2163 +0 0.3871 +0 0.1231 +0 0.1362 +0 0.1112 +0 0.0516 +0 0.0859 +0 0.1332 +0 0.2729 +0 0.0839 +0 0.0716 +0 0.2255 +0 0.0905 +0 0.0710 +0 0.3031 +0 0.7463 +0 0.1251 +0 0.3546 +0 0.7436 +0 0.1927 +0 0.0948 +0 0.0413 +0 0.1100 +0 0.1017 +0 0.1925 +0 0.1120 +0 0.0758 +0 0.0347 +0 0.0987 +0 0.2913 +0 0.1117 +0 0.0646 +0 0.1254 +0 0.1879 +0 0.0632 +1 0.8585 +0 0.1682 +0 0.0497 +0 0.0709 +0 0.2002 +0 0.1062 +0 0.2317 +0 0.0462 +0 0.0640 +0 0.0822 +0 0.1862 +0 0.1831 +0 0.3225 +0 0.0700 +0 0.1187 +0 0.0806 +0 0.0814 +0 0.1218 +0 0.1193 +0 0.0752 +0 0.1339 +0 0.2194 +0 0.0883 +0 0.0633 +0 0.2032 +0 0.5775 +0 0.1705 +0 0.1819 +0 0.1593 +0 0.0966 +0 0.2278 +0 0.0469 +0 0.0648 +0 0.0690 +0 0.0848 +0 0.0484 +0 0.0948 +0 0.0420 +0 0.1423 +0 0.0569 +0 0.0553 +0 0.1800 +0 0.1235 +0 0.1066 +0 0.0615 +0 0.0470 +0 0.0945 +0 0.1390 +0 0.3398 +0 0.1723 +0 0.0861 +0 0.0773 +0 0.2012 +0 0.1029 +0 0.0617 +0 0.1484 +0 0.2151 +0 0.0791 +0 0.0800 +0 0.1520 +0 0.0810 +0 0.0905 +0 0.0454 +0 0.0710 +0 0.7298 +0 0.1003 +0 0.0789 +0 0.0920 +0 0.0913 +0 0.0416 +0 0.0831 +0 0.1348 +0 0.0733 +0 0.0543 +0 0.1638 +0 0.1191 +0 0.0751 +0 0.1600 +0 0.0999 +0 0.2064 +0 0.1020 +0 0.3538 +0 0.1188 +0 0.0915 +0 0.1825 +0 0.2636 +0 0.0546 +0 0.0750 +0 0.0389 +0 0.0649 +0 0.0357 +0 0.1180 +0 0.0512 +0 0.5177 +0 0.1311 +0 0.0752 +1 0.8411 +0 0.0728 +0 0.2423 +0 0.1115 +0 0.1134 +0 0.0819 +0 0.1672 +0 0.1359 +0 0.4829 +0 0.0364 +0 0.1123 +0 0.0542 +0 0.1677 +0 0.0709 +0 0.1913 +0 0.0467 +0 0.0955 +0 0.0914 +0 0.0990 +0 0.1030 +0 0.0611 +0 0.0597 +0 0.6824 +0 0.1099 +0 0.0701 +0 0.5167 +0 0.0748 +0 0.0711 +1 0.8460 +0 0.0927 +0 0.1648 +0 0.0733 +0 0.1478 +0 0.6516 +0 0.0582 +0 0.0732 +0 0.2083 +0 0.0424 +0 0.0588 +0 0.1644 +0 0.2147 +0 0.0864 +0 0.1016 +0 0.1597 +0 0.0854 +0 0.3667 +0 0.1418 +0 0.0635 +0 0.1666 +0 0.2559 +0 0.0952 +0 0.1159 +0 0.1641 +0 0.1735 +0 0.0614 +0 0.3235 +0 0.0626 +0 0.0924 +0 0.0481 +0 0.0712 +0 0.2652 +0 0.1653 +0 0.0611 +0 0.1819 +0 0.1825 +0 0.0360 +0 0.1337 +0 0.1102 +0 0.0591 +0 0.4270 +0 0.0514 +0 0.0610 +0 0.2912 +0 0.1074 +0 0.1610 +0 0.4280 +0 0.0605 +0 0.0825 +0 0.3463 +0 0.6821 +0 0.1146 +0 0.0869 +0 0.1327 +0 0.1883 +0 0.6580 +0 0.1054 +0 0.1068 +0 0.1030 +0 0.1533 +0 0.0517 +0 0.1023 +0 0.0593 +1 0.7960 +0 0.2115 +0 0.0844 +0 0.0541 +0 0.1296 +0 0.0426 +0 0.1333 +0 0.2348 +0 0.0704 +0 0.0808 +0 0.1387 +0 0.0559 +0 0.0711 +0 0.0508 +0 0.0391 +0 0.1705 +0 0.0998 +0 0.0696 +0 0.0637 +0 0.0919 +0 0.2223 +0 0.1086 +0 0.1055 +0 0.0754 +0 0.0696 +0 0.0458 +0 0.1361 +0 0.0569 +0 0.1462 +0 0.0652 +0 0.1114 +0 0.0465 +0 0.1138 +0 0.0777 +0 0.1027 +0 0.0510 +0 0.1637 +0 0.1106 +0 0.2130 +0 0.3927 +0 0.0759 +0 0.1427 +0 0.0903 +0 0.0760 +0 0.0731 +0 0.0698 +0 0.0523 +0 0.0536 +0 0.0647 +0 0.0433 +0 0.1430 +0 0.1685 +0 0.0859 +0 0.2365 +0 0.3157 +0 0.0845 +0 0.0437 +0 0.0443 +0 0.0634 +0 0.0442 +0 0.1606 +0 0.0748 +0 0.1522 +0 0.1398 +0 0.0364 +0 0.2080 +0 0.1070 +0 0.0850 +0 0.0961 +0 0.2282 +0 0.1438 +0 0.1772 +0 0.1347 +0 0.2016 +0 0.0822 +0 0.1149 +0 0.1082 +0 0.0738 +0 0.1305 +0 0.0899 +0 0.0976 +0 0.0781 +0 0.1419 +0 0.1133 +0 0.1398 +0 0.1010 +0 0.0785 +0 0.0808 +0 0.1852 +0 0.1028 +0 0.4533 +0 0.0671 +0 0.1444 +0 0.1825 +0 0.0644 +0 0.0735 +0 0.2036 +0 0.1070 +0 0.3784 +0 0.1397 +0 0.2092 +0 0.1286 +0 0.1487 +0 0.1182 +0 0.0941 +0 0.0669 +0 0.1150 +0 0.0881 +0 0.2356 +0 0.0520 +0 0.0862 +0 0.0642 +1 0.8428 +0 0.0767 +0 0.2673 +0 0.1369 +0 0.0758 +0 0.2208 +0 0.0917 +0 0.0924 +0 0.1360 +0 0.0741 +0 0.4540 +0 0.1031 +0 0.0887 +0 0.0998 +0 0.2377 +0 0.0637 +0 0.0619 +0 0.4770 +0 0.0702 +0 0.0610 +0 0.0792 +0 0.2369 +0 0.3425 +0 0.2323 +0 0.0550 +0 0.1117 +0 0.0647 +0 0.0632 +0 0.0821 +0 0.1283 +0 0.1664 +0 0.0463 +0 0.0936 +0 0.0895 +0 0.0587 +0 0.1092 +0 0.5675 +0 0.0686 +0 0.1046 +0 0.0760 +0 0.7105 +0 0.1232 +0 0.5551 +0 0.0729 +0 0.1864 +0 0.1220 +0 0.1284 +0 0.3677 +0 0.1568 +0 0.1678 +0 0.2462 +0 0.0771 +0 0.0590 +0 0.0901 +0 0.0703 +0 0.1106 +0 0.2735 +0 0.1261 +0 0.0657 +0 0.2522 +0 0.1032 +0 0.1211 +0 0.0661 +0 0.0388 +0 0.1292 +0 0.0668 +0 0.4384 +0 0.1140 +0 0.0461 +0 0.1785 +0 0.0820 +0 0.0922 +0 0.0737 +0 0.1420 +0 0.0652 +0 0.1205 +0 0.1018 +0 0.1111 +0 0.3429 +0 0.1472 +0 0.0646 +0 0.3894 +0 0.0757 +1 0.8403 +0 0.1886 +0 0.0951 +0 0.1167 +0 0.0590 +0 0.1805 +0 0.0740 +0 0.0692 +0 0.0480 +0 0.1537 +0 0.1545 +0 0.0690 +0 0.2253 +0 0.0807 +0 0.0734 +0 0.0482 +0 0.0476 +0 0.1203 +0 0.0602 +0 0.0769 +0 0.0534 +0 0.0802 +0 0.2219 +0 0.6628 +0 0.0760 +0 0.6997 +0 0.0531 +0 0.2828 +0 0.0872 +0 0.1285 +0 0.1253 +0 0.2056 +0 0.1013 +0 0.1461 +0 0.0877 +0 0.0629 +0 0.1567 +0 0.0712 +0 0.0745 +0 0.0812 +0 0.2387 +0 0.1503 +0 0.0409 +0 0.2018 +0 0.0728 +0 0.1083 +0 0.1533 +0 0.0840 +0 0.0807 +0 0.1622 +0 0.0898 +0 0.1132 +0 0.7117 +0 0.1024 +0 0.0922 +0 0.1374 +0 0.0437 +0 0.4744 +0 0.1325 +0 0.0429 +0 0.1301 +0 0.1141 +0 0.2215 +0 0.4926 +0 0.0413 +0 0.2835 +0 0.1541 +0 0.0470 +0 0.1921 +0 0.3863 +0 0.1283 +1 0.8311 +0 0.0780 +0 0.0650 +0 0.0673 +0 0.3167 +0 0.1940 +0 0.0897 +0 0.0830 +0 0.4190 +0 0.1204 +0 0.0789 +0 0.1548 +0 0.0893 +0 0.0679 +0 0.0438 +0 0.0738 +0 0.0368 +0 0.1036 +0 0.1567 +0 0.0966 +0 0.0931 +0 0.0469 +0 0.0566 +0 0.1006 +0 0.0628 +0 0.1044 +1 0.8075 +0 0.2005 +0 0.0837 +0 0.2903 +0 0.1290 +0 0.0964 +0 0.0717 +0 0.0576 +0 0.6640 +0 0.5651 +0 0.0807 +0 0.0984 +0 0.1670 +0 0.3404 +0 0.0577 +0 0.0878 +0 0.0433 +0 0.2546 +0 0.0675 +0 0.1135 +0 0.0336 +0 0.1743 +0 0.2108 +0 0.1573 +0 0.0931 +0 0.1425 +0 0.1498 +0 0.0558 +0 0.0701 +0 0.0853 +0 0.1290 +0 0.3491 +0 0.2071 +1 0.8053 +0 0.0720 +0 0.1879 +0 0.1423 +0 0.0766 +0 0.1854 +0 0.0656 +0 0.0981 +0 0.0776 +0 0.1505 +0 0.1895 +0 0.2330 +0 0.0784 +0 0.0778 +0 0.1123 +0 0.2289 +0 0.0595 +0 0.0620 +0 0.0710 +0 0.0945 +0 0.1846 +0 0.1282 +0 0.0668 +0 0.1566 +0 0.0968 +0 0.1283 +0 0.1475 +0 0.3111 +0 0.0864 +0 0.1631 +0 0.0898 +0 0.1263 +0 0.1954 +0 0.0948 +0 0.0496 +0 0.0644 +0 0.1830 +0 0.1253 +0 0.0680 +0 0.1215 +0 0.0595 +0 0.4389 +0 0.1053 +0 0.3850 +0 0.0466 +0 0.2330 +0 0.1451 +0 0.1009 +0 0.0983 +0 0.0888 +0 0.0827 +0 0.0665 +0 0.1031 +0 0.1377 +0 0.0668 +0 0.0741 +0 0.3778 +0 0.1695 +0 0.0667 +0 0.0841 +0 0.1369 +0 0.0728 +0 0.0845 +0 0.3216 +0 0.1305 +0 0.0769 +0 0.0780 +0 0.3759 +0 0.0558 +0 0.0458 +0 0.1415 +0 0.2271 +0 0.1368 +0 0.1315 +0 0.0500 +0 0.0625 +0 0.1494 +0 0.0804 +1 0.7957 +0 0.1037 +0 0.2213 +0 0.1140 +0 0.1245 +0 0.0914 +0 0.1756 +0 0.1761 +0 0.0460 +0 0.1393 +0 0.1270 +0 0.1016 +0 0.0977 +0 0.1154 +0 0.0410 +0 0.1500 +0 0.0348 +0 0.1072 +0 0.1060 +0 0.0546 +0 0.0880 +0 0.0578 +0 0.1091 +0 0.0968 +0 0.1668 +0 0.1206 +0 0.0560 +0 0.2301 +0 0.1949 +0 0.0697 +0 0.1132 +0 0.2620 +1 0.8301 +0 0.1248 +0 0.0571 +0 0.0884 +0 0.2350 +0 0.1130 +0 0.0591 +0 0.0779 +0 0.0949 +0 0.0554 +0 0.2107 +0 0.1997 +0 0.2628 +0 0.1418 +0 0.0993 +0 0.0709 +0 0.0648 +0 0.0607 +0 0.1272 +0 0.1064 +0 0.2147 +0 0.1196 +0 0.0939 +0 0.1359 +0 0.1144 +0 0.2556 +0 0.1136 +0 0.0670 +0 0.1009 +0 0.0903 +0 0.0648 +0 0.0659 +0 0.0426 +1 0.7521 +0 0.0573 +0 0.0949 +0 0.0903 +0 0.0740 +0 0.1069 +0 0.1161 +0 0.0792 +0 0.1954 +1 0.7712 +0 0.4704 +0 0.1002 +0 0.0666 +0 0.2255 +0 0.1523 +0 0.1009 +0 0.1167 +0 0.2575 +0 0.0616 +0 0.0664 +0 0.0451 +0 0.0900 +0 0.0971 +0 0.5095 +0 0.1346 +0 0.2381 +0 0.1279 +0 0.2638 +0 0.0406 +0 0.0519 +0 0.0557 +0 0.1213 +0 0.2093 +0 0.1216 +0 0.1150 +0 0.0432 +0 0.1339 +1 0.8113 +0 0.1312 +0 0.0843 +0 0.1805 +0 0.0754 +0 0.0870 +0 0.1089 +0 0.2041 +0 0.0952 +0 0.0870 +0 0.0582 +0 0.0756 +0 0.0819 +0 0.1282 +0 0.2022 +0 0.1748 +0 0.0769 +0 0.0701 +0 0.0370 +0 0.0686 +0 0.1714 +0 0.2031 +0 0.0672 +0 0.0830 +0 0.2587 +0 0.2263 +0 0.2469 +0 0.0884 +0 0.0804 +0 0.0607 +0 0.0727 +0 0.0730 +0 0.0644 +0 0.2290 +0 0.0641 +0 0.0544 +0 0.1248 +0 0.1157 +0 0.1065 +0 0.1077 +0 0.0545 +0 0.1218 +0 0.0921 +0 0.1629 +0 0.1599 +0 0.0675 +0 0.0613 +0 0.0876 +0 0.1222 +0 0.1038 +0 0.0488 +0 0.1051 +0 0.0648 +0 0.1021 +0 0.0782 +0 0.1843 +0 0.2060 +0 0.0449 +0 0.2209 +0 0.1293 +0 0.0566 +0 0.1010 +0 0.0680 +0 0.1171 +0 0.0690 +0 0.0669 +0 0.1189 +0 0.0561 +0 0.1379 +0 0.1631 +0 0.0534 +0 0.1872 +0 0.0763 +0 0.0699 +0 0.1211 +0 0.1829 +0 0.1160 +0 0.1013 +0 0.0403 +0 0.2036 +0 0.4201 +0 0.0431 +0 0.0585 +0 0.0993 +0 0.5860 +0 0.1054 +0 0.1326 +0 0.0589 +0 0.0825 +0 0.0795 +0 0.0781 +0 0.1098 +0 0.0587 +0 0.0629 +0 0.0905 +0 0.0764 +0 0.2541 +0 0.1066 +0 0.4707 +0 0.1814 +0 0.2584 +0 0.1016 +0 0.2222 +0 0.1761 +0 0.0354 +0 0.1805 +0 0.3638 +0 0.1224 +0 0.0730 +0 0.0492 +0 0.1520 +0 0.1342 +0 0.2306 +1 0.7886 +0 0.1626 +0 0.0581 +0 0.0838 +0 0.0698 +0 0.0893 +0 0.0663 +0 0.1097 +0 0.1526 +0 0.0976 +0 0.0881 +0 0.0897 +1 0.8329 +0 0.1239 +0 0.3955 +0 0.2830 +0 0.0606 +0 0.2780 +0 0.0740 +0 0.0388 +0 0.0850 +0 0.2342 +0 0.0674 +0 0.2973 +0 0.0702 +0 0.0761 +0 0.1217 +0 0.0931 +0 0.1065 +0 0.0542 +0 0.0668 +0 0.1490 +0 0.0989 +0 0.0509 +0 0.1788 +0 0.0750 +0 0.1014 +0 0.1408 +0 0.0860 +0 0.0969 +0 0.1033 +0 0.1914 +0 0.3961 +0 0.1152 +0 0.0747 +0 0.0573 +0 0.1311 +1 0.7897 +1 0.7868 +0 0.1489 +0 0.3434 +0 0.1845 +0 0.0373 +0 0.0586 +0 0.0890 +0 0.1410 +0 0.2367 +0 0.0509 +0 0.1328 +0 0.1026 +0 0.0474 +0 0.0691 +0 0.1943 +0 0.0509 +0 0.0586 +0 0.0991 +0 0.0883 +0 0.0408 +0 0.1030 +0 0.0385 +0 0.2070 +0 0.1026 +0 0.0675 +0 0.0797 +0 0.1882 +0 0.1035 +0 0.0609 +0 0.1142 +0 0.1690 +0 0.1505 +0 0.1192 +0 0.0785 +0 0.0368 +0 0.0854 +0 0.0677 +0 0.0578 +0 0.0775 +0 0.0651 +0 0.1072 +0 0.1787 +0 0.0978 +0 0.1064 +0 0.2359 +0 0.0881 +0 0.2127 +0 0.0946 +0 0.1380 +0 0.0770 +0 0.1620 +0 0.1011 +0 0.1297 +0 0.1108 +0 0.1288 +0 0.1691 +0 0.1111 +0 0.1039 +0 0.1208 +0 0.0792 +0 0.0317 +0 0.1376 +0 0.1054 +0 0.1239 +0 0.3600 +0 0.0575 +0 0.1211 +0 0.1763 +0 0.3012 +0 0.2020 +0 0.3686 +0 0.0680 +0 0.0750 +0 0.0945 +0 0.0578 +0 0.0561 +0 0.0648 +0 0.1644 +0 0.1086 +0 0.1214 +0 0.0582 +0 0.1617 +0 0.1469 +0 0.0898 +0 0.1468 +0 0.0720 +0 0.0613 +0 0.2001 +0 0.1180 +0 0.1042 +0 0.0695 +0 0.0801 +0 0.1328 +0 0.0745 +0 0.0424 +0 0.1539 +0 0.0889 +0 0.1140 +0 0.0431 +0 0.0602 +0 0.0745 +0 0.1156 +0 0.0494 +0 0.1339 +0 0.0696 +0 0.5534 +0 0.2205 +0 0.1281 +0 0.0573 +0 0.0981 +0 0.0762 +0 0.0775 +0 0.5269 +0 0.0974 +0 0.1923 +0 0.1001 +0 0.3649 +0 0.0718 +0 0.2683 +0 0.2210 +0 0.0866 +0 0.0599 +0 0.2783 +0 0.0588 +0 0.0853 +0 0.1632 +0 0.0875 +0 0.1371 +1 0.7743 +0 0.3421 +0 0.0920 +0 0.2834 +0 0.0749 +0 0.1061 +0 0.1079 +0 0.1826 +0 0.0741 +0 0.0561 +0 0.0970 +0 0.1190 +0 0.0407 +0 0.2268 +0 0.1930 +0 0.1416 +0 0.3439 +0 0.2419 +0 0.0876 +0 0.1308 +0 0.1825 +0 0.1173 +0 0.1093 +0 0.0702 +0 0.0693 +0 0.0812 +0 0.1852 +0 0.0466 +0 0.1335 +0 0.2404 +0 0.1515 +0 0.4237 +0 0.1249 +0 0.0756 +0 0.6766 +0 0.1017 +0 0.1735 +0 0.1391 +0 0.0581 +0 0.1724 +0 0.1239 +0 0.1018 +0 0.0421 +0 0.0775 +0 0.0580 +0 0.0754 +0 0.3673 +0 0.1491 +0 0.0593 +0 0.1910 +0 0.1587 +0 0.1057 +0 0.2614 +0 0.2478 +0 0.2020 +0 0.0594 +0 0.6881 +0 0.1332 +0 0.0617 +0 0.2687 +1 0.7632 +0 0.1580 +0 0.0633 +0 0.0311 +0 0.1758 +0 0.0637 +0 0.0586 +0 0.1425 +0 0.0540 +0 0.0641 +0 0.0478 +0 0.1046 +0 0.1028 +0 0.0535 +0 0.1110 +0 0.3459 +0 0.2272 +0 0.0445 +0 0.0457 +0 0.1647 +0 0.0582 +0 0.1339 +0 0.1446 +0 0.1290 +1 0.7888 +0 0.0583 +0 0.1028 +0 0.2075 +0 0.0608 +0 0.0998 +0 0.0404 +0 0.0924 +0 0.0417 +0 0.0354 +0 0.0554 +0 0.4740 +0 0.1009 +0 0.3166 +0 0.0696 +0 0.1854 +0 0.0409 +0 0.0843 +0 0.0612 +0 0.1116 +0 0.0902 +0 0.0924 +0 0.0656 +0 0.0762 +0 0.0703 +0 0.0559 +0 0.0464 +0 0.1713 +0 0.0916 +0 0.1010 +0 0.7357 +0 0.1180 +0 0.0641 +0 0.0377 +0 0.1505 +0 0.0843 +0 0.0469 +0 0.0470 +0 0.0530 +0 0.0697 +0 0.1125 +0 0.0944 +0 0.0628 +0 0.0846 +0 0.0402 +0 0.0820 +0 0.0449 +0 0.0576 +0 0.0374 +0 0.0551 +0 0.0617 +0 0.1017 +0 0.0797 +0 0.2645 +0 0.0939 +0 0.1538 +0 0.0889 +0 0.1864 +0 0.2628 +0 0.0488 +0 0.1126 +0 0.1808 +0 0.1881 +0 0.0757 +0 0.0723 +0 0.0800 +0 0.0838 +0 0.2406 +0 0.1381 +0 0.2329 +0 0.0639 +0 0.1627 +0 0.1102 +0 0.1010 +0 0.0742 +0 0.1123 +0 0.1638 +1 0.7653 +0 0.0666 +0 0.1226 +0 0.0780 +0 0.1347 +0 0.0932 +0 0.1481 +0 0.1779 +0 0.0355 +0 0.1378 +0 0.0525 +0 0.0490 +0 0.0932 +1 0.4669 +0 0.0585 +0 0.0640 +0 0.2435 +0 0.0782 +0 0.0786 +0 0.0768 +0 0.0327 +0 0.0695 +0 0.0679 +0 0.2104 +0 0.0849 +0 0.0835 +0 0.1297 +0 0.0405 +0 0.0905 +0 0.1420 +0 0.1129 +0 0.1914 +0 0.0941 +0 0.3300 +0 0.1555 +0 0.0530 +0 0.0743 +0 0.0975 +0 0.0944 +0 0.0904 +0 0.0779 +0 0.0771 +0 0.0912 +0 0.0744 +0 0.1375 +0 0.0957 +0 0.0674 +0 0.0849 +0 0.3088 +0 0.1706 +0 0.2469 +0 0.4206 +0 0.2185 +0 0.2376 +0 0.1075 +0 0.1417 +0 0.0849 +1 0.8170 +0 0.0539 +0 0.3168 +0 0.2921 +0 0.0741 +0 0.1146 +0 0.2107 +0 0.2810 +0 0.1072 +0 0.0483 +0 0.0641 +0 0.1193 +0 0.0611 +0 0.0832 +0 0.0718 +0 0.0752 +0 0.1076 +0 0.0851 +0 0.4420 +0 0.0809 +0 0.0824 +0 0.0894 +0 0.2825 +0 0.0859 +0 0.1633 +0 0.0819 +0 0.4045 +0 0.1427 +0 0.1641 +0 0.3891 +0 0.1446 +0 0.0579 +0 0.1442 +0 0.0597 +0 0.1796 +0 0.1324 +0 0.0471 +0 0.2080 +0 0.1747 +0 0.0999 +0 0.0676 +0 0.0957 +0 0.2207 +0 0.0975 +0 0.0692 +0 0.3491 +0 0.1528 +0 0.0875 +0 0.0724 +0 0.2788 +0 0.1285 +0 0.0714 +0 0.1569 +0 0.1168 +0 0.0658 +0 0.2114 +0 0.1560 +0 0.1251 +0 0.1582 +0 0.0457 +0 0.0987 +0 0.0846 +0 0.0646 +0 0.1820 +0 0.0513 +0 0.0769 +0 0.0725 +0 0.1387 +0 0.2268 +0 0.2555 +0 0.1033 +0 0.1044 +0 0.1379 +0 0.0888 +0 0.1221 +0 0.1939 +0 0.0898 +0 0.2148 +0 0.3449 +0 0.4523 +0 0.2312 +0 0.1161 +0 0.1728 +0 0.2325 +0 0.1461 +0 0.0702 +0 0.1482 +0 0.1078 +0 0.1047 +0 0.1417 +0 0.1451 +0 0.1372 +0 0.0924 +0 0.0729 +0 0.0827 +0 0.2035 +0 0.3147 +0 0.0977 +0 0.0899 +0 0.0488 +0 0.1157 +0 0.0725 +0 0.0493 +0 0.0941 +0 0.0597 +0 0.0683 +0 0.0992 +0 0.0749 +0 0.1064 +0 0.1085 +0 0.4325 +0 0.0610 +0 0.1160 +0 0.1165 +0 0.1000 +0 0.0605 +0 0.1358 +0 0.1497 +0 0.0846 +0 0.0868 +0 0.0483 +0 0.4199 +0 0.1047 +0 0.0646 +0 0.0851 +0 0.0646 +0 0.0415 +0 0.1664 +0 0.1041 +0 0.0947 +0 0.0537 +1 0.8223 +0 0.2572 +0 0.1067 +0 0.1492 +0 0.0729 +0 0.2170 +0 0.0564 +0 0.1189 +0 0.3091 +0 0.2282 +0 0.1675 +0 0.0686 +0 0.0893 +0 0.2167 +0 0.1948 +0 0.1063 +0 0.2769 +0 0.1393 +0 0.1147 +0 0.0695 +0 0.0399 +0 0.1080 +0 0.0974 +0 0.1026 +0 0.1130 +0 0.1729 +0 0.2252 +0 0.0405 +0 0.1405 +0 0.2493 +0 0.0985 +0 0.1681 +0 0.1853 +0 0.1389 +0 0.2029 +0 0.0479 +0 0.1543 +0 0.0597 +0 0.1472 +0 0.0676 +0 0.0876 +0 0.1790 +0 0.4101 +0 0.0763 +0 0.0676 +0 0.1236 +0 0.1217 +0 0.0823 +0 0.2194 +0 0.0365 +0 0.0822 +0 0.1086 +0 0.0925 +0 0.1119 +0 0.1148 +0 0.0538 +0 0.0814 +0 0.0834 +0 0.0369 +0 0.1680 +0 0.0561 +0 0.3658 +0 0.0834 +0 0.0986 +0 0.0860 +0 0.1287 +0 0.0467 +0 0.0826 +0 0.0673 +0 0.0488 +0 0.2733 +0 0.3214 +0 0.1940 +0 0.0852 +0 0.1422 +0 0.1095 +0 0.1857 +0 0.1964 +0 0.5011 +0 0.1941 +0 0.0570 +0 0.1964 +0 0.0421 +0 0.0449 +0 0.2684 +0 0.2437 +0 0.1525 +0 0.0550 +0 0.1756 +0 0.1135 +0 0.0357 +0 0.1926 +0 0.1792 +0 0.1451 +0 0.1767 +0 0.7133 +0 0.1187 +0 0.1002 +0 0.1040 +0 0.1209 +1 0.8062 +0 0.0451 +0 0.0596 +0 0.1180 +0 0.2812 +0 0.2055 +0 0.0666 +0 0.0604 +1 0.8272 +0 0.2772 +0 0.0724 +0 0.1570 +0 0.1190 +0 0.0674 +0 0.2254 +0 0.1036 +0 0.2243 +0 0.1009 +0 0.2362 +0 0.1339 +0 0.0650 +0 0.0503 +0 0.1243 +0 0.2895 +0 0.0517 +0 0.1492 +0 0.0727 +0 0.0516 +0 0.4504 +0 0.0611 +0 0.7072 +0 0.1261 +0 0.0792 +0 0.1668 +0 0.1263 +0 0.1160 +0 0.0729 +0 0.1098 +0 0.0786 +0 0.0869 +0 0.2450 +0 0.0763 +0 0.0756 +0 0.1016 +0 0.0570 +0 0.0639 +0 0.5395 +0 0.0635 +0 0.0670 +0 0.6635 +0 0.0671 +0 0.1563 +0 0.1237 +0 0.0415 +0 0.0901 +0 0.1947 +0 0.1907 +0 0.0626 +0 0.1278 +0 0.2045 +0 0.0751 +0 0.4928 +0 0.0384 +0 0.0724 +1 0.7989 +0 0.1207 +0 0.0516 +0 0.0747 +0 0.0907 +0 0.1050 +0 0.1365 +0 0.0762 +0 0.1844 +0 0.0870 +0 0.0850 +0 0.0744 +0 0.3088 +0 0.6900 +0 0.1864 +0 0.0382 +0 0.0814 +0 0.0840 +0 0.1210 +0 0.1323 +0 0.1368 +0 0.3549 +0 0.0771 +0 0.2410 +0 0.0486 +0 0.0730 +0 0.0713 +0 0.1265 +0 0.0799 +0 0.2019 +0 0.0728 +0 0.0822 +0 0.1561 +0 0.1041 +0 0.1456 +0 0.0809 +0 0.1099 +0 0.1066 +0 0.0440 +0 0.1437 +0 0.0580 +0 0.1150 +0 0.0923 +0 0.1853 +0 0.0772 +0 0.1341 +0 0.1044 +0 0.1068 +0 0.0982 +0 0.2381 +0 0.2848 +0 0.1976 +0 0.2688 +0 0.2362 +0 0.0627 +0 0.0985 +0 0.0651 +0 0.1512 +0 0.1077 +0 0.0525 +0 0.1427 +1 0.8147 +0 0.3577 +0 0.1639 +0 0.0555 +0 0.1217 +0 0.0479 +0 0.1736 +0 0.6420 +1 0.8367 +0 0.0837 +0 0.1301 +0 0.1232 +0 0.1174 +0 0.0956 +0 0.0723 +0 0.0563 +0 0.0545 +0 0.0520 +0 0.1194 +0 0.0779 +0 0.7494 +0 0.0637 +0 0.2320 +0 0.1720 +0 0.0687 +0 0.1278 +0 0.2497 +0 0.2891 +0 0.1047 +0 0.0504 +0 0.1033 +0 0.0505 +0 0.0656 +0 0.2693 +0 0.0579 +0 0.0542 +0 0.2123 +0 0.0667 +0 0.0838 +0 0.6957 +0 0.1241 +0 0.2892 +0 0.0873 +0 0.0699 +0 0.0884 +0 0.1260 +0 0.2104 +0 0.0746 +0 0.0911 +0 0.1161 +0 0.0687 +0 0.2141 +0 0.1835 +0 0.1000 +0 0.6289 +0 0.0773 +0 0.0558 +0 0.0438 +0 0.0872 +0 0.1243 +0 0.0428 +0 0.2370 +0 0.1123 +0 0.0615 +0 0.1124 +0 0.1376 +0 0.1073 +0 0.1135 +0 0.2051 +0 0.2240 +0 0.0958 +0 0.0783 +0 0.2405 +0 0.0878 +0 0.0816 +0 0.1327 +0 0.1050 +0 0.0889 +0 0.0845 +0 0.1631 +0 0.3327 +0 0.0785 +0 0.1893 +0 0.2182 +0 0.1940 +1 0.8537 +0 0.6143 +0 0.0529 +0 0.1210 +0 0.0966 +0 0.0750 +0 0.0915 +0 0.0851 +0 0.1845 +0 0.1632 +0 0.1260 +0 0.0457 +0 0.3538 +0 0.1213 +0 0.2340 +0 0.0648 +0 0.1174 +0 0.0996 +0 0.1066 +0 0.0673 +0 0.1376 +0 0.4211 +0 0.0564 +1 0.7723 +0 0.1056 +0 0.0748 +0 0.0997 +0 0.1088 +0 0.0653 +0 0.1319 +0 0.0563 +0 0.1556 +0 0.1217 +0 0.5128 +0 0.0923 +0 0.1985 +0 0.0957 +0 0.1437 +0 0.2212 +0 0.0685 +0 0.0475 +0 0.1612 +0 0.0821 +0 0.1181 +0 0.1030 +0 0.1541 +0 0.0469 +0 0.0836 +0 0.0645 +0 0.5782 +0 0.0720 +0 0.0798 +0 0.0453 +0 0.0797 +0 0.1840 +0 0.1009 +0 0.1428 +0 0.0901 +0 0.1864 +0 0.0510 +0 0.0408 +0 0.1587 +0 0.0869 +0 0.0741 +0 0.1729 +0 0.0652 +0 0.4634 +0 0.1399 +0 0.0875 +0 0.2531 +0 0.0462 +0 0.0766 +0 0.3317 +0 0.1045 +0 0.0857 +0 0.1420 +0 0.1629 +0 0.0965 +0 0.0902 +0 0.1051 +0 0.1611 +0 0.1668 +0 0.0922 +0 0.0575 +0 0.1844 +0 0.1086 +0 0.1488 +0 0.0354 +0 0.3028 +0 0.1202 +0 0.1440 +0 0.0366 +0 0.0841 +0 0.3857 +0 0.2598 +0 0.2213 +0 0.0323 +1 0.8301 +0 0.0431 +0 0.3013 +0 0.0642 +0 0.3144 +0 0.0462 +0 0.0630 +0 0.2459 +0 0.3773 +0 0.0539 +0 0.0845 +0 0.0570 +0 0.7392 +0 0.0648 +0 0.0448 +0 0.0887 +0 0.0825 +0 0.1601 +0 0.1095 +0 0.0912 +0 0.0872 +0 0.0897 +0 0.0610 +0 0.0954 +0 0.1992 +0 0.1603 +0 0.1043 +1 0.8384 +0 0.1799 +0 0.1127 +0 0.0355 +0 0.0508 +0 0.0730 +0 0.1509 +0 0.0762 +0 0.0733 +1 0.8177 +0 0.1440 +0 0.5053 +0 0.0532 +0 0.1291 +0 0.2201 +0 0.0975 +0 0.1206 +0 0.1746 +0 0.3137 +0 0.0752 +0 0.2872 +0 0.0847 +0 0.1732 +0 0.0653 +0 0.1282 +0 0.3836 +0 0.0444 +0 0.3513 +0 0.2005 +0 0.1540 +0 0.1009 +0 0.2732 +0 0.0634 +0 0.1565 +0 0.1155 +0 0.5701 +0 0.0675 +0 0.0958 +0 0.1470 +0 0.1439 +0 0.1098 +0 0.0654 +0 0.0872 +0 0.0998 +0 0.1285 +0 0.2291 +0 0.6419 +0 0.2616 +0 0.2175 +0 0.0519 +0 0.6374 +0 0.2151 +0 0.2190 +0 0.2712 +0 0.1442 +0 0.1315 +0 0.1092 +0 0.1014 +0 0.2069 +0 0.2866 +0 0.0935 +0 0.2258 +0 0.1605 +0 0.1002 +0 0.1282 +0 0.2975 +0 0.2190 +0 0.1101 +0 0.1987 +0 0.1926 +0 0.0798 +0 0.1991 +0 0.0885 +0 0.1117 +0 0.1072 +0 0.0807 +0 0.1260 +0 0.1149 +0 0.1003 +0 0.3324 +0 0.3152 +0 0.1548 +0 0.0787 +0 0.0898 +0 0.2850 +0 0.0992 +0 0.0351 +0 0.1020 +0 0.1650 +0 0.0598 +0 0.1662 +0 0.2009 +0 0.0630 +0 0.0661 +0 0.0773 +0 0.1157 +0 0.2557 +0 0.0371 +0 0.0554 +0 0.1221 +0 0.0688 +0 0.1783 +0 0.1495 +0 0.1105 +0 0.0706 +0 0.1159 +0 0.1076 +0 0.0998 +0 0.0768 +0 0.1862 +0 0.1417 +0 0.1111 +0 0.0842 +0 0.6559 +0 0.6937 +0 0.1983 +0 0.1003 +0 0.2072 +0 0.0807 +0 0.1178 +0 0.1516 +0 0.1667 +0 0.1105 +0 0.1617 +0 0.3356 +0 0.2351 +0 0.1603 +0 0.4171 +0 0.0960 +0 0.0778 +0 0.4905 +0 0.4660 +0 0.1277 +0 0.1268 +0 0.2056 +0 0.0609 +0 0.0901 +0 0.1314 +0 0.0388 +0 0.0462 +0 0.2485 +0 0.0501 +0 0.0769 +0 0.0312 +0 0.0502 +0 0.1846 +0 0.2650 +0 0.0987 +0 0.5236 +0 0.0995 +0 0.0810 +0 0.0769 +0 0.0449 +0 0.0739 +0 0.2336 +0 0.1772 +0 0.1143 +0 0.0680 +0 0.1549 +0 0.1016 +0 0.0669 +0 0.1448 +0 0.0949 +0 0.2710 +0 0.2654 +0 0.0806 +0 0.3600 +0 0.0971 +0 0.3871 +0 0.0788 +0 0.2642 +0 0.1396 +0 0.1450 +0 0.0674 +0 0.0593 +0 0.2019 +0 0.0979 +0 0.1649 +0 0.3726 +0 0.2265 +0 0.0720 +0 0.1149 +0 0.2370 +0 0.4118 +0 0.0589 +0 0.0601 +0 0.1057 +0 0.2460 +0 0.0812 +0 0.1807 +0 0.1208 +0 0.0577 +0 0.1233 +0 0.1197 +0 0.1312 +0 0.2032 +0 0.0396 +0 0.0804 +0 0.1578 +0 0.6423 +0 0.0832 +0 0.1624 +0 0.1207 +0 0.0767 +0 0.1112 +0 0.0528 +0 0.3091 +0 0.1418 +0 0.0806 +0 0.0578 +0 0.0383 +0 0.0904 +0 0.1017 +0 0.1028 +0 0.1852 +0 0.0679 +0 0.0987 +0 0.0895 +0 0.0672 +0 0.6938 +0 0.1681 +0 0.1549 +0 0.0595 +1 0.8301 +0 0.0578 +0 0.1765 +0 0.0452 +0 0.0526 +0 0.2043 +0 0.0424 +0 0.0673 +0 0.2060 +0 0.0943 +0 0.1681 +0 0.0406 +0 0.2716 +0 0.1244 +0 0.3521 +0 0.4943 +0 0.0625 +0 0.0541 +1 0.8040 +0 0.0507 +0 0.0677 +0 0.0617 +0 0.0828 +0 0.2195 +0 0.1199 +0 0.1125 +0 0.0909 +0 0.1591 +0 0.1003 +0 0.0613 +0 0.0815 +0 0.0626 +0 0.0688 +0 0.0379 +0 0.0652 +0 0.1006 +0 0.3340 +0 0.0634 +0 0.0501 +0 0.0655 +0 0.0616 +0 0.1009 +1 0.7909 +0 0.1137 +0 0.0849 +0 0.1881 +0 0.0997 +0 0.2245 +0 0.0602 +0 0.1195 +0 0.1388 +0 0.1211 +1 0.8453 +0 0.1288 +0 0.2246 +0 0.2045 +0 0.1466 +0 0.0538 +0 0.0670 +1 0.7895 +0 0.2405 +0 0.2237 +0 0.0933 +0 0.4666 +0 0.0714 +0 0.0806 +0 0.1627 +0 0.1144 +0 0.0374 +0 0.2277 +0 0.0696 +0 0.0977 +0 0.0935 +0 0.1487 +0 0.0810 +0 0.1117 +0 0.2038 +0 0.0963 +0 0.2012 +0 0.0416 +0 0.1538 +0 0.0856 +0 0.2046 +0 0.3084 +0 0.0912 +0 0.1997 +0 0.0721 +0 0.0684 +0 0.0913 +0 0.1402 +0 0.1320 +0 0.1559 +0 0.1543 +0 0.0944 +0 0.0705 +0 0.0435 +0 0.1090 +0 0.0803 +0 0.0568 +0 0.3039 +0 0.1597 +0 0.0755 +0 0.0691 +0 0.0768 +0 0.0701 +0 0.0601 +0 0.0601 +0 0.0479 +0 0.2134 +0 0.0936 +0 0.0642 +0 0.0496 +0 0.1047 +0 0.0499 +0 0.1109 +0 0.1083 +0 0.0591 +0 0.3695 +0 0.0728 +0 0.0324 +0 0.0898 +0 0.3801 +0 0.0437 +0 0.1379 +0 0.1244 +0 0.2367 +0 0.2300 +0 0.1819 +0 0.1882 +0 0.0507 +0 0.0438 +0 0.0787 +0 0.1196 +0 0.1073 +0 0.1030 +0 0.0812 +0 0.0936 +0 0.1816 +0 0.1257 +0 0.0807 +0 0.1506 +0 0.7201 +0 0.0969 +0 0.0612 +0 0.1781 +0 0.0461 +0 0.0517 +0 0.0928 +0 0.1457 +0 0.0961 +0 0.1797 +0 0.0712 +0 0.0462 +0 0.0400 +0 0.0535 +0 0.3064 +0 0.0663 +0 0.0911 +0 0.6236 +0 0.0697 +1 0.8872 +0 0.0349 +0 0.0740 +0 0.1754 +0 0.0475 +0 0.1313 +0 0.1444 +0 0.0850 +0 0.1156 +0 0.0733 +0 0.1015 +0 0.0914 +0 0.1913 +0 0.1084 +0 0.3538 +0 0.1210 +0 0.0715 +0 0.5253 +0 0.3228 +0 0.1770 +0 0.0552 +0 0.1148 +0 0.6890 +0 0.0541 +0 0.2438 +0 0.0610 +0 0.1945 +0 0.1200 +0 0.1171 +0 0.1167 +0 0.0593 +0 0.0994 +0 0.1539 +0 0.1173 +0 0.1516 +0 0.6292 +0 0.0502 +0 0.0972 +0 0.1280 +0 0.0969 +0 0.0536 +0 0.6649 +0 0.1192 +0 0.1993 +0 0.1174 +0 0.0738 +0 0.4701 +0 0.0859 +0 0.0731 +0 0.0820 +0 0.0380 +0 0.1416 +0 0.1000 +0 0.1248 +0 0.1007 +0 0.0738 +0 0.1549 +0 0.1252 +0 0.1117 +0 0.1085 +0 0.0446 +0 0.0536 +0 0.0635 +0 0.1223 +0 0.0974 +0 0.0975 +0 0.0859 +0 0.1054 +0 0.0507 +0 0.0526 +0 0.0625 +0 0.0892 +0 0.2718 +0 0.1511 +0 0.1715 +0 0.1025 +0 0.3631 +0 0.0993 +0 0.1133 +0 0.0384 +0 0.0554 +0 0.1207 +0 0.0436 +0 0.1686 +0 0.1288 +0 0.0664 +0 0.1359 +0 0.0628 +0 0.2275 +0 0.0957 +0 0.0844 +0 0.0579 +0 0.0501 +0 0.2391 +1 0.7608 +0 0.2068 +0 0.1163 +0 0.1724 +0 0.1179 +0 0.1420 +0 0.0343 +0 0.0637 +0 0.1014 +0 0.1433 +0 0.0793 +0 0.1921 +0 0.1625 +0 0.0630 +0 0.0906 +0 0.0769 +0 0.0325 +0 0.0497 +0 0.2464 +0 0.0793 +0 0.0891 +0 0.1743 +0 0.0660 +0 0.0363 +0 0.1806 +0 0.0467 +0 0.0661 +0 0.1151 +0 0.0943 +0 0.1094 +0 0.0883 +0 0.0451 +0 0.0605 +0 0.1274 +0 0.0851 +0 0.0707 +0 0.1026 +0 0.3539 +0 0.1404 +0 0.0742 +0 0.1630 +0 0.2077 +0 0.1068 +0 0.0555 +0 0.3101 +0 0.1509 +0 0.1650 +0 0.1740 +0 0.0478 +0 0.0587 +0 0.1593 +0 0.1100 +0 0.5083 +0 0.2212 +0 0.0543 +0 0.1170 +0 0.1266 +0 0.0725 +0 0.4041 +0 0.2299 +0 0.0680 +0 0.1171 +0 0.0342 +0 0.1041 +0 0.0705 +0 0.0534 +0 0.0871 +0 0.1500 +0 0.0495 +0 0.1197 +0 0.1680 +0 0.0862 +0 0.0995 +0 0.2341 +0 0.1494 +0 0.1655 +0 0.1120 +0 0.0594 +0 0.0843 +0 0.0682 +0 0.1593 +0 0.3336 +0 0.0536 +0 0.0515 +0 0.0532 +0 0.1333 +0 0.1046 +0 0.0935 +0 0.0654 +0 0.0760 +0 0.1032 +0 0.1978 +0 0.1487 +0 0.2758 +0 0.1029 +0 0.0372 +0 0.4915 +0 0.3174 +0 0.1877 +0 0.5545 +0 0.0650 +0 0.1009 +0 0.1094 +1 0.8374 +0 0.0710 +0 0.2015 +0 0.2757 +0 0.0859 +0 0.3694 +0 0.0604 +0 0.1104 +0 0.0865 +0 0.0973 +1 0.7753 +0 0.1178 +0 0.0818 +0 0.2286 +0 0.1267 +0 0.1139 +0 0.0843 +0 0.2727 +0 0.0920 +0 0.1113 +0 0.1200 +0 0.2675 +0 0.0960 +0 0.1274 +0 0.1942 +0 0.2675 +0 0.2367 +0 0.0810 +0 0.2610 +0 0.0442 +0 0.0739 +0 0.0660 +0 0.0657 +1 0.7607 +0 0.1716 +0 0.0440 +0 0.0731 +0 0.1294 +0 0.0988 +0 0.2657 +0 0.0412 +0 0.1196 +0 0.0459 +0 0.1060 +0 0.1546 +0 0.2001 +0 0.1025 +0 0.0434 +0 0.1342 +0 0.3413 +0 0.2178 +0 0.0998 +0 0.0788 +0 0.0571 +0 0.1808 +0 0.1251 +0 0.0765 +0 0.1005 +0 0.1339 +0 0.0816 +1 0.8097 +0 0.3290 +0 0.0658 +0 0.1534 +0 0.0677 +1 0.8056 +0 0.1613 +0 0.0711 +0 0.1253 +0 0.1536 +0 0.0442 +0 0.1381 +0 0.0962 +0 0.1028 +0 0.0948 +0 0.0954 +0 0.1107 +0 0.0495 +0 0.0435 +0 0.2635 +0 0.1158 +0 0.0888 +0 0.0974 +0 0.1679 +0 0.3440 +0 0.0842 +0 0.0464 +0 0.0892 +0 0.0488 +0 0.3200 +0 0.0554 +0 0.1009 +0 0.2364 +0 0.2629 +0 0.1698 +0 0.1410 +0 0.1648 +0 0.1326 +0 0.1366 +0 0.2026 +0 0.0577 +0 0.1737 +0 0.1257 +0 0.0765 +0 0.0517 +0 0.1690 +0 0.0910 +0 0.0633 +0 0.1593 +0 0.1727 +0 0.2875 +0 0.1526 +0 0.1312 +0 0.0647 +0 0.0935 +0 0.0770 +0 0.0828 +0 0.1834 +0 0.0717 +0 0.3167 +0 0.4631 +0 0.1302 +0 0.2132 +0 0.1760 +0 0.4093 +0 0.0944 +0 0.3195 +0 0.0587 +0 0.1021 +0 0.0480 +0 0.1529 +0 0.0990 +0 0.1489 +0 0.0927 +1 0.2520 +0 0.6660 +0 0.0923 +0 0.1091 +0 0.0997 +0 0.0520 +0 0.0792 +0 0.0678 +0 0.2656 +0 0.0964 +0 0.1629 +0 0.0741 +0 0.2569 +0 0.1943 +0 0.0663 +0 0.0847 +0 0.2669 +0 0.1229 +0 0.0652 +0 0.0800 +0 0.1298 +0 0.0696 +0 0.1432 +0 0.1310 +0 0.1316 +0 0.1073 +0 0.0840 +0 0.0847 +0 0.1281 +0 0.7015 +0 0.1664 +0 0.1267 +0 0.1171 +0 0.0702 +0 0.3139 +0 0.0923 +0 0.0997 +0 0.0461 +0 0.2846 +0 0.7424 +0 0.1725 +0 0.0693 +0 0.1299 +0 0.2513 +0 0.0836 +0 0.1818 +0 0.1036 +0 0.2343 +0 0.1518 +0 0.1348 +0 0.0436 +0 0.1149 +0 0.1471 +0 0.1092 +0 0.0472 +0 0.0815 +0 0.1015 +0 0.1535 +0 0.1353 +0 0.0546 +0 0.0869 +0 0.1174 +0 0.5078 +0 0.1019 +0 0.5171 +0 0.0812 +0 0.0702 +0 0.1431 +0 0.0921 +0 0.0874 +0 0.0286 +0 0.1024 +0 0.3377 +0 0.1038 +0 0.1609 +0 0.2695 +0 0.1869 +0 0.0759 +0 0.2059 +0 0.1782 +0 0.1328 +0 0.1193 +0 0.2144 +0 0.1540 +0 0.1960 +0 0.1310 +0 0.2963 +0 0.1232 +0 0.0810 +0 0.0918 +0 0.0564 +0 0.0997 +0 0.1482 +0 0.5579 +0 0.1220 +0 0.0742 +0 0.0551 +0 0.0568 +0 0.0982 +0 0.0576 +0 0.1532 +0 0.4505 +0 0.0718 +0 0.2492 +0 0.3718 +0 0.0425 +0 0.1095 +0 0.1112 +0 0.0849 +0 0.0616 +0 0.6422 +0 0.1378 +0 0.1211 +0 0.1404 +0 0.1114 +0 0.1618 +0 0.0970 +0 0.1521 +0 0.1390 +0 0.0939 +0 0.1814 +0 0.1413 +0 0.0798 +0 0.1917 +0 0.1737 +0 0.2637 +0 0.0468 +0 0.0879 +0 0.0726 +0 0.1719 +0 0.0621 +1 0.8128 +0 0.1500 +1 0.7854 +0 0.0933 +0 0.0585 +0 0.5654 +0 0.0429 +0 0.6441 +0 0.1363 +0 0.1458 +0 0.0896 +0 0.0615 +0 0.0768 +0 0.1197 +0 0.0861 +0 0.2281 +0 0.0817 +0 0.1524 +0 0.1321 +0 0.1558 +0 0.1921 +0 0.0385 +0 0.1167 +0 0.2248 +0 0.0464 +0 0.1358 +0 0.0809 +0 0.3593 +0 0.1988 +0 0.1570 +0 0.0357 +0 0.0988 +0 0.0907 +0 0.1526 +0 0.0963 +0 0.0673 +0 0.0935 +0 0.1779 +0 0.1309 +0 0.1425 +0 0.3536 +0 0.0665 +0 0.2053 +0 0.6268 +0 0.0476 +0 0.6740 +0 0.1402 +0 0.0589 +0 0.7437 +0 0.0832 +0 0.1609 +0 0.2453 +0 0.0445 +0 0.1276 +0 0.0864 +0 0.1598 +0 0.0493 +0 0.1203 +0 0.0615 +0 0.1458 +0 0.1884 +0 0.2182 +0 0.1377 +0 0.0920 +0 0.3050 +0 0.0545 +0 0.0459 +0 0.0914 +0 0.1682 +0 0.0816 +0 0.0621 +0 0.0771 +0 0.1961 +0 0.0522 +0 0.3683 +0 0.0440 +0 0.0336 +0 0.1386 +0 0.0394 +0 0.0888 +0 0.1874 +0 0.1623 +0 0.0997 +0 0.0463 +0 0.0729 +0 0.1048 +0 0.2941 +0 0.1773 +0 0.2556 +0 0.1747 +0 0.0319 +0 0.1813 +0 0.0948 +0 0.1078 +0 0.1114 +0 0.0703 +0 0.1991 +0 0.0669 +0 0.0633 +0 0.1030 +0 0.1020 +0 0.0839 +0 0.0735 +0 0.0712 +0 0.1090 +0 0.0538 +0 0.2121 +0 0.1466 +0 0.1331 +0 0.1048 +0 0.0871 +0 0.0962 +0 0.1097 +0 0.1070 +0 0.0561 +0 0.1603 +0 0.1474 +0 0.0876 +0 0.1423 +0 0.0696 +0 0.5644 +0 0.0653 +0 0.0463 +0 0.1118 +0 0.0683 +0 0.2232 +0 0.0866 +0 0.1267 +0 0.0975 +0 0.5003 +0 0.2290 +0 0.1038 +0 0.1279 +0 0.0442 +0 0.0927 +0 0.2393 +0 0.1489 +0 0.0648 +0 0.1970 +0 0.1242 +0 0.0589 +0 0.0496 +0 0.1559 +0 0.1457 +0 0.6456 +0 0.0827 +0 0.1092 +0 0.1108 +0 0.1081 +0 0.1342 +0 0.0983 +0 0.0616 +0 0.0775 +0 0.1831 +0 0.1036 +0 0.1240 +0 0.1555 +0 0.1491 +0 0.1952 +0 0.2069 +0 0.1868 +0 0.3086 +0 0.0320 +0 0.0801 +0 0.0771 +0 0.1420 +0 0.0841 +0 0.0493 +0 0.1013 +1 0.7617 +0 0.1469 +0 0.2933 +0 0.0410 +0 0.1233 +0 0.1150 +0 0.0531 +0 0.2198 +0 0.1233 +0 0.0926 +0 0.0777 +0 0.1040 +0 0.1059 +0 0.1224 +0 0.1562 +0 0.0606 +0 0.4583 +0 0.0929 +0 0.5411 +0 0.0746 +0 0.1504 +0 0.2294 +0 0.0936 +0 0.7377 +0 0.1080 +0 0.2938 +0 0.0911 +0 0.0669 +0 0.1039 +0 0.0816 +0 0.1111 +0 0.0730 +0 0.0703 +0 0.1298 +0 0.2245 +0 0.1083 +0 0.0929 +0 0.0961 +0 0.3427 +0 0.0619 +0 0.1514 +0 0.1026 +0 0.2008 +0 0.0973 +0 0.3638 +0 0.1674 +0 0.0695 +0 0.0907 +0 0.0817 +0 0.1518 +0 0.3725 +0 0.1185 +0 0.1891 +0 0.1029 +0 0.1257 +0 0.1258 +0 0.3392 +0 0.1342 +0 0.1320 +0 0.0917 +0 0.1644 +0 0.0660 +0 0.2482 +0 0.0525 +0 0.1358 +0 0.1152 +0 0.2487 +0 0.1073 +0 0.6326 +0 0.1282 +0 0.1189 +0 0.0645 +0 0.0651 +0 0.0364 +0 0.1781 +0 0.2562 +0 0.1081 +0 0.0984 +0 0.0897 +0 0.0538 +0 0.0834 +0 0.1954 +0 0.0456 +0 0.0914 +0 0.1127 +0 0.1215 +0 0.1556 +0 0.0818 +0 0.1485 +0 0.2646 +0 0.1108 +0 0.1225 +0 0.1157 +0 0.0357 +0 0.0427 +0 0.1014 +0 0.1626 +0 0.1019 +0 0.0606 +0 0.0687 +0 0.0363 +0 0.0563 +0 0.0877 +0 0.1382 +0 0.0973 +0 0.1252 +0 0.0695 +0 0.3098 +0 0.1328 +0 0.1581 +0 0.7307 +0 0.1119 +0 0.0777 +0 0.1786 +0 0.1353 +0 0.0796 +0 0.0820 +0 0.0615 +0 0.0672 +0 0.0460 +0 0.0533 +0 0.1131 +0 0.2532 +0 0.0772 +0 0.0418 +0 0.1869 +0 0.4892 +0 0.2421 +0 0.1237 +0 0.1032 +0 0.1031 +0 0.0688 +0 0.1737 +0 0.1300 +0 0.2454 +0 0.0756 +0 0.2627 +0 0.0822 +0 0.1730 +0 0.0409 +0 0.0612 +0 0.0365 +0 0.1279 +0 0.0626 +0 0.1774 +0 0.0701 +0 0.2342 +0 0.0485 +0 0.0719 +0 0.0756 +0 0.0521 +0 0.0869 +0 0.2189 +0 0.1966 +0 0.0386 +0 0.0939 +0 0.2053 +0 0.0943 +0 0.1300 +0 0.1134 +0 0.0895 +0 0.0995 +0 0.1416 +0 0.2452 +0 0.0677 +0 0.2199 +0 0.1207 +0 0.2129 +0 0.0973 +0 0.0780 +0 0.0702 +0 0.1249 +0 0.1083 +0 0.0671 +0 0.1197 +0 0.0783 +0 0.0819 +0 0.1233 +0 0.1122 +0 0.1047 +0 0.2362 +0 0.1188 +0 0.0517 +0 0.1300 +0 0.1041 +1 0.8546 +0 0.2784 +0 0.0898 +0 0.1445 +0 0.3125 +0 0.0597 +0 0.0621 +0 0.0936 +0 0.0580 +0 0.0487 +0 0.0798 +0 0.2003 +0 0.1396 +0 0.1085 +0 0.1230 +0 0.1430 +0 0.1566 +0 0.1450 +0 0.3789 +0 0.2583 +0 0.1559 +0 0.1399 +0 0.0862 +0 0.1446 +0 0.3337 +0 0.2480 +0 0.2006 +0 0.0505 +0 0.0871 +0 0.1487 +0 0.1436 +0 0.2096 +0 0.0809 +0 0.1244 +0 0.1887 +0 0.0778 +0 0.1886 +0 0.0888 +0 0.0728 +0 0.0425 +0 0.1618 +0 0.0425 +0 0.0871 +0 0.3449 +0 0.0937 +0 0.0690 +0 0.0350 +0 0.1964 +0 0.1333 +0 0.1229 +0 0.0574 +0 0.0729 +0 0.1393 +0 0.0870 +0 0.1482 +0 0.0598 +0 0.0710 +0 0.0368 +0 0.0949 +0 0.0709 +0 0.1606 +0 0.0876 +0 0.0668 +0 0.1431 +0 0.0905 +0 0.1096 +0 0.1361 +0 0.0994 +0 0.0696 +0 0.0670 +1 0.8528 +0 0.0682 +0 0.0523 +0 0.0597 +0 0.0992 +0 0.0991 +0 0.0973 +0 0.1165 +0 0.2130 +1 0.8572 +0 0.0607 +0 0.0907 +0 0.0931 +0 0.0920 +0 0.0776 +0 0.0676 +0 0.0946 +0 0.0435 +0 0.0756 +0 0.2958 +0 0.1647 +0 0.1563 +0 0.1739 +0 0.1056 +0 0.0489 +0 0.1499 +0 0.1056 +0 0.1223 +0 0.0659 +0 0.0555 +0 0.7109 +0 0.0957 +0 0.0625 +0 0.0566 +0 0.0569 +0 0.0510 +0 0.0680 +0 0.1535 +0 0.1653 +0 0.0804 +0 0.0609 +0 0.1032 +0 0.1672 +0 0.0512 +0 0.3897 +0 0.1088 +0 0.1695 +0 0.0878 +0 0.1437 +0 0.1466 +0 0.0831 +0 0.0641 +0 0.1275 +0 0.0670 +0 0.5429 +0 0.1759 +0 0.1731 +0 0.0513 +0 0.2168 +0 0.1013 +0 0.7298 +0 0.0478 +0 0.0513 +0 0.6452 +0 0.6792 +0 0.1008 +0 0.1101 +0 0.5275 +0 0.0817 +0 0.0903 +0 0.0285 +1 0.8244 +0 0.5146 +0 0.0523 +0 0.0814 +0 0.1297 +0 0.1017 +0 0.0695 +0 0.1104 +0 0.1784 +0 0.0737 +0 0.0560 +0 0.4741 +0 0.2574 +0 0.0661 +0 0.2210 +0 0.1725 +0 0.1760 +1 0.8856 +0 0.0852 +0 0.2566 +0 0.0752 +0 0.1081 +0 0.0333 +1 0.8428 +0 0.0619 +0 0.0790 +0 0.1999 +0 0.2384 +0 0.0825 +0 0.1316 +0 0.2276 +0 0.3267 +0 0.1661 +0 0.2192 +0 0.1426 +0 0.1422 +0 0.2211 +0 0.1674 +0 0.0858 +0 0.0693 +0 0.0833 +0 0.0625 +0 0.1143 +0 0.0630 +0 0.1194 +0 0.1100 +0 0.0691 +0 0.0799 +0 0.1063 +0 0.0641 +0 0.6815 +0 0.1866 +0 0.1442 +0 0.1051 +0 0.0372 +0 0.0709 +0 0.0392 +0 0.1148 +0 0.1860 +0 0.0649 +0 0.3760 +0 0.1374 +0 0.0486 +0 0.1019 +0 0.1127 +0 0.1632 +0 0.0941 +0 0.1180 +0 0.1395 +0 0.0850 +0 0.0380 +0 0.2377 +0 0.0582 +0 0.1777 +0 0.0930 +0 0.0555 +0 0.0850 +0 0.0760 +0 0.4413 +0 0.0874 +0 0.0742 +0 0.0948 +0 0.1009 +0 0.1581 +0 0.0580 +0 0.1273 +0 0.1656 +0 0.1008 +0 0.1597 +0 0.0582 +0 0.1618 +0 0.3311 +0 0.1028 +0 0.1099 +0 0.1787 +0 0.0736 +0 0.1428 +0 0.1969 +0 0.0509 +0 0.5194 +0 0.1546 +0 0.4094 +0 0.0780 +0 0.1746 +0 0.0791 +0 0.1203 +0 0.0780 +0 0.0808 +0 0.1296 +0 0.0954 +0 0.1105 +0 0.3540 +0 0.1319 +0 0.1506 +0 0.0944 +0 0.1015 +0 0.1034 +0 0.0984 +0 0.0361 +0 0.0624 +0 0.0535 +0 0.1123 +0 0.1757 +0 0.0484 +0 0.1373 +0 0.1105 +0 0.0798 +0 0.1313 +0 0.2595 +0 0.1090 +0 0.0889 +0 0.0858 +0 0.2405 +0 0.0869 +0 0.1351 +0 0.1170 +0 0.0737 +0 0.1745 +0 0.1102 +0 0.0490 +0 0.1218 +0 0.2800 +0 0.1404 +0 0.2362 +0 0.0803 +0 0.1121 +0 0.0697 +0 0.0855 +0 0.0941 +0 0.0990 +0 0.1293 +0 0.0680 +0 0.0393 +0 0.2095 +0 0.1770 +0 0.0488 +0 0.1898 +0 0.1128 +0 0.1387 +0 0.1166 +0 0.0781 +0 0.0696 +0 0.5939 +0 0.1933 +0 0.2414 +1 0.8559 +0 0.1490 +0 0.0455 +0 0.0844 +0 0.0786 +0 0.2802 +0 0.1213 +0 0.1059 +0 0.0844 +0 0.1958 +0 0.1003 +0 0.4247 +0 0.0491 +0 0.2027 +0 0.0757 +0 0.0929 +0 0.0694 +0 0.0644 +0 0.1875 +0 0.2563 +0 0.0727 +0 0.0864 +0 0.1216 +0 0.0930 +1 0.8424 +0 0.1073 +0 0.0470 +0 0.0902 +0 0.1735 +0 0.0503 +0 0.4797 +0 0.3295 +0 0.2234 +0 0.0752 +0 0.0391 +0 0.1004 +0 0.0831 +0 0.0687 +0 0.0603 +0 0.0620 +0 0.0809 +0 0.1075 +0 0.2257 +0 0.0752 +0 0.0712 +0 0.2554 +0 0.1316 +0 0.0897 +0 0.3588 +0 0.0880 +0 0.1676 +0 0.0375 +0 0.0722 +0 0.1158 +0 0.1095 +0 0.0638 +0 0.0615 +0 0.1972 +0 0.1092 +0 0.1283 +0 0.0945 +0 0.0616 +0 0.0957 +0 0.2511 +0 0.0845 +0 0.1672 +0 0.2111 +0 0.0984 +0 0.2151 +0 0.2613 +0 0.3172 +0 0.1978 +0 0.1117 +0 0.0817 +0 0.2133 +0 0.1071 +0 0.1104 +0 0.3714 +0 0.2658 +0 0.0644 +0 0.1414 +0 0.1104 +0 0.6048 +0 0.1006 +0 0.0966 +0 0.0813 +0 0.1561 +0 0.0913 +0 0.1663 +0 0.5477 +0 0.1112 +0 0.1349 +0 0.2654 +0 0.0445 +0 0.2063 +0 0.0484 +0 0.1082 +0 0.1317 +0 0.1519 +0 0.1066 +0 0.1007 +0 0.1000 +0 0.0789 +0 0.1568 +0 0.1520 +0 0.0816 +0 0.0814 +0 0.0570 +0 0.2884 +0 0.1850 +0 0.1159 +0 0.1296 +0 0.1796 +0 0.0406 +0 0.0463 +0 0.0754 +0 0.1592 +0 0.2588 +0 0.0437 +0 0.0816 +0 0.0833 +0 0.0816 +0 0.3202 +0 0.1374 +0 0.2704 +0 0.0834 +0 0.0307 +0 0.7353 +0 0.2060 +0 0.1715 +0 0.0531 +0 0.5555 +0 0.1118 +0 0.0767 +0 0.1132 +0 0.0992 +0 0.1260 +0 0.1134 +0 0.6729 +0 0.0740 +0 0.1892 +0 0.0457 +0 0.0827 +0 0.3403 +0 0.0633 +0 0.0803 +0 0.0825 +0 0.0761 +0 0.0567 +0 0.1136 +0 0.1033 +0 0.1014 +0 0.0843 +0 0.0433 +0 0.1331 +0 0.0891 +0 0.0953 +0 0.0509 +0 0.0899 +0 0.1799 +0 0.7190 +0 0.0975 +0 0.2285 +0 0.0483 +0 0.1472 +0 0.1920 +0 0.0620 +0 0.0589 +0 0.0445 +0 0.0633 +0 0.1290 +0 0.0580 +0 0.0441 +0 0.0836 +0 0.0804 +0 0.1357 +0 0.0895 +0 0.5159 +0 0.0835 +0 0.0903 +0 0.0437 +0 0.0979 +0 0.0584 +0 0.0822 +0 0.1147 +0 0.0961 +0 0.1535 +0 0.0899 +0 0.0880 +0 0.1034 +0 0.3461 +0 0.1734 +0 0.0914 +0 0.1319 +0 0.0812 +0 0.0723 +0 0.1407 +0 0.1247 +0 0.0694 +0 0.1466 +0 0.0881 +0 0.1014 +0 0.0435 +0 0.1361 +0 0.0609 +0 0.1013 +0 0.0998 +0 0.0902 +0 0.0714 +0 0.0888 +0 0.0646 +0 0.2034 +0 0.1521 +0 0.0302 +0 0.0934 +0 0.0537 +0 0.0470 +0 0.2486 +0 0.1538 +0 0.0865 +0 0.0632 +0 0.4051 +0 0.2304 +0 0.0968 +0 0.2716 +0 0.1062 +0 0.0577 +0 0.6002 +0 0.0491 +0 0.1078 +0 0.0769 +0 0.2038 +0 0.0592 +0 0.1658 +0 0.0738 +0 0.0950 +0 0.0548 +0 0.0906 +0 0.1907 +0 0.1494 +0 0.1477 +0 0.1990 +0 0.0685 +0 0.0378 +0 0.0438 +0 0.1550 +0 0.1432 +0 0.0333 +0 0.1687 +0 0.0834 +0 0.0764 +0 0.0473 +0 0.0616 +0 0.1729 +0 0.0896 +0 0.1199 +0 0.0954 +0 0.6773 +0 0.1336 +0 0.1326 +0 0.1143 +0 0.1847 +0 0.0502 +0 0.1161 +0 0.0535 +0 0.0332 +0 0.1868 +0 0.1838 +0 0.1499 +0 0.1928 +0 0.3101 +0 0.0581 +0 0.2004 +0 0.1666 +0 0.0654 +0 0.0817 +0 0.1862 +0 0.0892 +0 0.0572 +0 0.0813 +0 0.0660 +0 0.0873 +0 0.0505 +0 0.0820 +0 0.0779 +0 0.0941 +0 0.1648 +0 0.1584 +0 0.1274 +0 0.0557 +0 0.1507 +1 0.7805 +0 0.0518 +0 0.0438 +0 0.2781 +0 0.7030 +0 0.0588 +0 0.0783 +0 0.1098 +0 0.1379 +0 0.0984 +0 0.1756 +0 0.0665 +0 0.1061 +0 0.1583 +0 0.1569 +0 0.2710 +0 0.1128 +0 0.0840 +0 0.0932 +0 0.0942 +0 0.1607 +0 0.1096 +0 0.1093 +0 0.2852 +0 0.1140 +0 0.1671 +0 0.1329 +0 0.2169 +0 0.1630 +0 0.0769 +0 0.3035 +0 0.1338 +0 0.1841 +0 0.1904 +0 0.0682 +0 0.1472 +0 0.1021 +0 0.0868 +0 0.1430 +0 0.0545 +0 0.1093 +0 0.0723 +0 0.0796 +0 0.6763 +0 0.0963 +0 0.0568 +0 0.0891 +0 0.1777 +0 0.2447 +1 0.7988 +0 0.1236 +0 0.1126 +0 0.1518 +0 0.0574 +0 0.1159 +0 0.3265 +0 0.1952 +0 0.1988 +0 0.0936 +0 0.0609 +0 0.1465 +0 0.1298 +0 0.0861 +0 0.4294 +0 0.0987 +0 0.1342 +0 0.2643 +0 0.0525 +0 0.1473 +1 0.8390 +0 0.0603 +1 0.8586 +0 0.4028 +0 0.2741 +0 0.0614 +0 0.0433 +0 0.0703 +0 0.1993 +0 0.0898 +0 0.2006 +0 0.1150 +0 0.0618 +0 0.2065 +0 0.1444 +0 0.1226 +0 0.0665 +0 0.0995 +0 0.3557 +0 0.2120 +0 0.0627 +0 0.0848 +0 0.0696 +0 0.1162 +1 0.8128 +0 0.1170 +0 0.0703 +0 0.0687 +0 0.0422 +0 0.1025 +0 0.5374 +0 0.1647 +0 0.0498 +0 0.2426 +0 0.1644 +0 0.2894 +0 0.0930 +0 0.0870 +0 0.0787 +0 0.1001 +0 0.0991 +0 0.0772 +0 0.0609 +0 0.4521 +0 0.0514 +0 0.1550 +0 0.1807 +0 0.0937 +0 0.1185 +0 0.1078 +0 0.0941 +0 0.1364 +0 0.0990 +0 0.3772 +0 0.1389 +0 0.1035 +0 0.1475 +0 0.1841 +0 0.1102 +0 0.0915 +0 0.5434 +0 0.3098 +0 0.0635 +0 0.1217 +0 0.1780 +0 0.0738 +0 0.0873 +0 0.1336 +0 0.3697 +0 0.0763 +0 0.0986 +0 0.0682 +0 0.1019 +0 0.0454 +0 0.0610 +0 0.0775 +0 0.1494 +0 0.0937 +0 0.2058 +0 0.1556 +0 0.2185 +0 0.0391 +0 0.0475 +0 0.3705 +0 0.0816 +0 0.0894 +0 0.0913 +0 0.1099 +0 0.1221 +0 0.1283 +0 0.3059 +0 0.0446 +0 0.1329 +1 0.8478 +0 0.0494 +0 0.0829 +0 0.1415 +0 0.0967 +0 0.1359 +0 0.2410 +0 0.2520 +0 0.0398 +0 0.0640 +0 0.4345 +0 0.1838 +0 0.0705 +0 0.0882 +0 0.0948 +0 0.1113 +0 0.1158 +0 0.0500 +0 0.0451 +0 0.0793 +0 0.0666 +0 0.1003 +0 0.0855 +0 0.0708 +0 0.1421 +0 0.1526 +0 0.1023 +0 0.1144 +0 0.0484 +0 0.0747 +0 0.0634 +0 0.0427 +0 0.0813 +0 0.2187 +0 0.3328 +0 0.4412 +0 0.0592 +0 0.0542 +0 0.0638 +0 0.1519 +0 0.4619 +0 0.1620 +0 0.0641 +0 0.1539 +0 0.0821 +0 0.0542 +0 0.1545 +0 0.0909 +0 0.1144 +0 0.1008 +0 0.0763 +0 0.1272 +0 0.0424 +0 0.1304 +0 0.3968 +0 0.0405 +0 0.1214 +0 0.1082 +0 0.1584 +0 0.1911 +0 0.0981 +1 0.7954 +0 0.0975 +0 0.1794 +0 0.1312 +0 0.3525 +0 0.0413 +0 0.3488 +0 0.2219 +0 0.0761 +0 0.0919 +0 0.0633 +0 0.0561 +0 0.1132 +0 0.0828 +0 0.0653 +0 0.0786 +0 0.1945 +0 0.3351 +0 0.1126 +0 0.0501 +0 0.2591 +0 0.1251 +1 0.7792 +0 0.1247 +0 0.0367 +0 0.0626 +0 0.0691 +0 0.1548 +0 0.0775 +0 0.2487 +0 0.2744 +0 0.1439 +0 0.0601 +0 0.2936 +0 0.2302 +0 0.5640 +0 0.6693 +0 0.0921 +0 0.1193 +0 0.2442 +0 0.2393 +0 0.1191 +0 0.1219 +0 0.0631 +0 0.0499 +0 0.4063 +0 0.3198 +0 0.0866 +0 0.1292 +0 0.2238 +0 0.2489 +0 0.0637 +0 0.0436 +0 0.0692 +0 0.0529 +0 0.0824 +0 0.3088 +0 0.1090 +0 0.0957 +0 0.1419 +0 0.1816 +0 0.0503 +0 0.1390 +0 0.2976 +0 0.1169 +0 0.1105 +0 0.1128 +0 0.2540 +0 0.0847 +0 0.6113 +0 0.0359 +0 0.1271 +0 0.0696 +1 0.2945 +0 0.1077 +0 0.0634 +0 0.1099 +0 0.2141 +0 0.0707 +0 0.2582 +0 0.1146 +0 0.2153 +0 0.0334 +0 0.1517 +0 0.2358 +0 0.2940 +0 0.1389 +0 0.1247 +0 0.0620 +0 0.1537 +0 0.2399 +0 0.0480 +0 0.0820 +0 0.0633 +0 0.1827 +0 0.1721 +0 0.0956 +0 0.1314 +0 0.3254 +0 0.0493 +0 0.1399 +0 0.0832 +0 0.0522 +0 0.0702 +0 0.0848 +0 0.0712 +0 0.0711 +0 0.1900 +0 0.0779 +0 0.0683 +0 0.0579 +0 0.1003 +0 0.1083 +0 0.0827 +0 0.0886 +0 0.0946 +0 0.1445 +0 0.0403 +0 0.1299 +0 0.2058 +0 0.0510 +0 0.0819 +0 0.1076 +0 0.0708 +0 0.1364 +0 0.2772 +0 0.2167 +0 0.1965 +0 0.0548 +0 0.0719 +0 0.2317 +0 0.1217 +0 0.0798 +0 0.0622 +0 0.5719 +0 0.1070 +0 0.0781 +0 0.2803 +0 0.1079 +0 0.0987 +0 0.1779 +0 0.0520 +0 0.0396 +1 0.7600 +0 0.1993 +0 0.0856 +0 0.0456 +0 0.0705 +0 0.0556 +0 0.1232 +0 0.1071 +0 0.0702 +0 0.0381 +0 0.0764 +0 0.0819 +0 0.0372 +0 0.3313 +0 0.0933 +0 0.1669 +0 0.1580 +0 0.0802 +0 0.1035 +0 0.5243 +0 0.1054 +0 0.0752 +0 0.1006 +0 0.1814 +0 0.1317 +0 0.1085 +0 0.0612 +0 0.0798 +0 0.0936 +0 0.0700 +0 0.3132 +0 0.1922 +0 0.0491 +0 0.0950 +0 0.0349 +1 0.8473 +0 0.0887 +0 0.2362 +0 0.0497 +0 0.1118 +0 0.0377 +0 0.0840 +0 0.1030 +0 0.1085 +0 0.1928 +0 0.1699 +0 0.0815 +0 0.2507 +0 0.0661 +0 0.2121 +0 0.0971 +0 0.1529 +0 0.2103 +0 0.0699 +0 0.1070 +0 0.1107 +0 0.0673 +0 0.0781 +0 0.2890 +0 0.0922 +0 0.1332 +0 0.0497 +0 0.1026 +0 0.0448 +0 0.1729 +0 0.3711 +0 0.0950 +0 0.0706 +0 0.0722 +0 0.1695 +0 0.1042 +0 0.1261 +0 0.0627 +0 0.0809 +0 0.2906 +0 0.1722 +0 0.1906 +0 0.0623 +0 0.0791 +0 0.1440 +0 0.1397 +0 0.0699 +0 0.3097 +0 0.0696 +0 0.0668 +0 0.0349 +0 0.1939 +0 0.0813 +0 0.0664 +0 0.1278 +0 0.1514 +0 0.0915 +0 0.0743 +0 0.0866 +0 0.1124 +0 0.0845 +0 0.1623 +0 0.0369 +0 0.2307 +0 0.0996 +0 0.0928 +0 0.1524 +0 0.0794 +0 0.1889 +0 0.1513 +0 0.0569 +0 0.0429 +0 0.1840 +0 0.0570 +0 0.0567 +0 0.0812 +0 0.1364 +0 0.2671 +0 0.0531 +0 0.0626 +0 0.0803 +0 0.2636 +0 0.0749 +0 0.6893 +0 0.1379 +0 0.0880 +0 0.0628 +0 0.4177 +0 0.0391 +0 0.0839 +0 0.0959 +0 0.1001 +0 0.2240 +0 0.0567 +0 0.1120 +0 0.0960 +0 0.0910 +0 0.2404 +0 0.0429 +0 0.0465 +0 0.0925 +0 0.0549 +0 0.0592 +0 0.2021 +0 0.1214 +0 0.0714 +0 0.0876 +0 0.1507 +0 0.1189 +0 0.0875 +0 0.0789 +0 0.2022 +0 0.0949 +0 0.0686 +0 0.2515 +0 0.0566 +0 0.0584 +0 0.0763 +0 0.0723 +1 0.8401 +0 0.0714 +0 0.0418 +0 0.0569 +0 0.1540 +0 0.1346 +0 0.0984 +0 0.1948 +0 0.0780 +0 0.1170 +0 0.2972 +0 0.0725 +0 0.0737 +0 0.1092 +0 0.0718 +1 0.8811 +1 0.7733 +0 0.1227 +0 0.0516 +0 0.0738 +0 0.5667 +0 0.3200 +0 0.1536 +0 0.0390 +0 0.1549 +0 0.1225 +0 0.0642 +0 0.6599 +0 0.0610 +0 0.1112 +0 0.0738 +0 0.0516 +1 0.8507 +0 0.1379 +0 0.0448 +0 0.2598 +0 0.0780 +0 0.0780 +0 0.0683 +0 0.1857 +0 0.0968 +0 0.1526 +0 0.1162 +0 0.1490 +1 0.8186 +0 0.0683 +0 0.0651 +0 0.0606 +0 0.0335 +0 0.1712 +0 0.1332 +0 0.1059 +0 0.1154 +0 0.0419 +0 0.1221 +0 0.1496 +0 0.3148 +0 0.2110 +0 0.0693 +0 0.0800 +0 0.1811 +0 0.4240 +0 0.0933 +0 0.1268 +0 0.1829 +0 0.3759 +0 0.2146 +0 0.1231 +0 0.1726 +0 0.0669 +0 0.0837 +0 0.2579 +0 0.1966 +0 0.2024 +0 0.0613 +0 0.1819 +0 0.0688 +0 0.5323 +0 0.1376 +0 0.1199 +0 0.1101 +0 0.1867 +0 0.0492 +0 0.0690 +0 0.1051 +0 0.7403 +0 0.0741 +0 0.1173 +0 0.1292 +0 0.0745 +0 0.0770 +0 0.1230 +0 0.0782 +0 0.1856 +0 0.1538 +0 0.1334 +0 0.0764 +0 0.0840 +0 0.1591 +0 0.0502 +0 0.1008 +0 0.0428 +0 0.0602 +0 0.0579 +0 0.0433 +0 0.2135 +0 0.0791 +0 0.0596 +0 0.4332 +0 0.1072 +0 0.0994 +0 0.0589 +0 0.0639 +0 0.1915 +0 0.5398 +0 0.0529 +0 0.0963 +0 0.0748 +0 0.1513 +0 0.1085 +0 0.2014 +0 0.1378 +0 0.2615 +0 0.0708 +1 0.8240 +0 0.1444 +0 0.0814 +0 0.1092 +0 0.0697 +0 0.1313 +0 0.3443 +0 0.2447 +0 0.0833 +1 0.3953 +0 0.1477 +0 0.1200 +0 0.1105 +0 0.0624 +0 0.0818 +0 0.1482 +0 0.1084 +0 0.1317 +0 0.1190 +0 0.0665 +0 0.0551 +0 0.1552 +0 0.1352 +0 0.0828 +0 0.1573 +0 0.0465 +0 0.5712 +0 0.0518 +0 0.2470 +0 0.0720 +0 0.0610 +0 0.1228 +0 0.7107 +0 0.1720 +0 0.1367 +0 0.0722 +0 0.0885 +0 0.0879 +0 0.0697 +0 0.1068 +0 0.0735 +0 0.1490 +0 0.0701 +0 0.1736 +0 0.2663 +0 0.1262 +0 0.2013 +0 0.1186 +0 0.0510 +0 0.1597 +0 0.1080 +0 0.0805 +0 0.0732 +0 0.1622 +1 0.8047 +0 0.4013 +0 0.1473 +0 0.1412 +0 0.0933 +0 0.1541 +0 0.0647 +0 0.0740 +0 0.1218 +1 0.8537 +0 0.2473 +1 0.8133 +0 0.0772 +0 0.1306 +0 0.1158 +0 0.0628 +0 0.1662 +0 0.1679 +0 0.1151 +0 0.1235 +0 0.0942 +0 0.1850 +0 0.1035 +0 0.0644 +0 0.1586 +0 0.1075 +0 0.7029 +0 0.1913 +0 0.0845 +0 0.2077 +0 0.0787 +0 0.0497 +0 0.1461 +0 0.0759 +0 0.1004 +0 0.2950 +0 0.0527 +0 0.0328 +0 0.0956 +0 0.1124 +0 0.2505 +0 0.1099 +0 0.1616 +0 0.0405 +0 0.0578 +0 0.2800 +0 0.6435 +0 0.1502 +0 0.1134 +0 0.0445 +0 0.1557 +0 0.0836 +0 0.1835 +0 0.0728 +0 0.2846 +0 0.1283 +0 0.1160 +0 0.0536 +0 0.1160 +0 0.1774 +0 0.1115 +0 0.1623 +0 0.1038 +0 0.0706 +0 0.0882 +0 0.1776 +0 0.0895 +0 0.1012 +0 0.0865 +0 0.1262 +0 0.0852 +0 0.1601 +0 0.0870 +0 0.3371 +0 0.1090 +0 0.5248 +0 0.0881 +0 0.0445 +0 0.0439 +0 0.0658 +0 0.0539 +0 0.1544 +0 0.0447 +0 0.1604 +0 0.0496 +0 0.1601 +0 0.0835 +0 0.1235 +1 0.7747 +0 0.0663 +0 0.1675 +0 0.1371 +0 0.1300 +0 0.1095 +0 0.1602 +0 0.5481 +0 0.0869 +0 0.0876 +0 0.0530 +1 0.8083 +0 0.0511 +0 0.0453 +0 0.0612 +0 0.2442 +0 0.1045 +0 0.0442 +0 0.3839 +0 0.1761 +0 0.0763 +0 0.0464 +1 0.8756 +0 0.0408 +0 0.1954 +0 0.0777 +0 0.1229 +0 0.1216 +0 0.1684 +0 0.0692 +0 0.0808 +0 0.1090 +0 0.0718 +0 0.2691 +0 0.1456 +0 0.0444 +0 0.0453 +0 0.3382 +0 0.0834 +0 0.1942 +0 0.2615 +0 0.1699 +0 0.2972 +0 0.1134 +0 0.0826 +0 0.1802 +0 0.0955 +0 0.1450 +0 0.0480 +0 0.0891 +0 0.0915 +0 0.0643 +0 0.0888 +0 0.0865 +0 0.1785 +0 0.1035 +0 0.2233 +0 0.1763 +0 0.1063 +0 0.1343 +0 0.0568 +0 0.0627 +0 0.1286 +0 0.2747 +0 0.1267 +0 0.1182 +0 0.0649 +0 0.0593 +0 0.0739 +0 0.7162 +0 0.0727 +0 0.0529 +0 0.1987 +0 0.1630 +0 0.2314 +0 0.1291 +0 0.1048 +0 0.0770 +0 0.1126 +0 0.1468 +0 0.1992 +0 0.1475 +0 0.0617 +0 0.0447 +0 0.1158 +0 0.0904 +0 0.1425 +0 0.0355 +0 0.1171 +0 0.4235 +0 0.7354 +0 0.1510 +0 0.0449 +0 0.0879 +0 0.0797 +0 0.1718 +0 0.0818 +0 0.0752 +0 0.0852 +0 0.2062 +0 0.0855 +0 0.1035 +0 0.0405 +0 0.0595 +0 0.1380 +0 0.0927 +0 0.1500 +0 0.3032 +0 0.1345 +0 0.1154 +0 0.1373 +0 0.0599 +0 0.0818 +0 0.2879 +0 0.0520 +0 0.2380 +0 0.0991 +0 0.0647 +0 0.1038 +0 0.2284 +0 0.6643 +0 0.0722 +0 0.1296 +0 0.0849 +0 0.2328 +0 0.0510 +0 0.1861 +0 0.1176 +0 0.1225 +0 0.0699 +0 0.0782 +1 0.8775 +0 0.0576 +0 0.2007 +0 0.0811 +0 0.1277 +0 0.2804 +0 0.0672 +0 0.0398 +0 0.0613 +0 0.0436 +0 0.0674 +0 0.1107 +0 0.0804 +0 0.1821 +0 0.1117 +0 0.0351 +0 0.1630 +0 0.3160 +0 0.0389 +0 0.2787 +0 0.0510 +0 0.2505 +0 0.1174 +0 0.0612 +0 0.0632 +0 0.2763 +0 0.2594 +0 0.0899 +0 0.2425 +0 0.3439 +0 0.1809 +0 0.6473 +0 0.1424 +0 0.1306 +0 0.0742 +0 0.0506 +0 0.2745 +0 0.0814 +0 0.0793 +0 0.0398 +0 0.0538 +0 0.0933 +0 0.1310 +0 0.3763 +0 0.6939 +0 0.0921 +0 0.0713 +0 0.0725 +0 0.0500 +0 0.1267 +0 0.1002 +0 0.1706 +0 0.0728 +0 0.0385 +0 0.1064 +0 0.1735 +0 0.0768 +0 0.1447 +0 0.0969 +0 0.1489 +0 0.0686 +0 0.0839 +0 0.0877 +0 0.0519 +0 0.2092 +0 0.1288 +0 0.0962 +0 0.1893 +0 0.2928 +0 0.0580 +0 0.0534 +0 0.0690 +0 0.2988 +0 0.0664 +0 0.1700 +0 0.1189 +0 0.1033 +0 0.0673 +0 0.3109 +0 0.0548 +0 0.1150 +0 0.0892 +0 0.7483 +0 0.1796 +0 0.1474 +0 0.1357 +0 0.0972 +0 0.0910 +0 0.0741 +0 0.1246 +0 0.2801 +0 0.1059 +0 0.0993 +0 0.2529 +0 0.0524 +0 0.0537 +0 0.1831 +0 0.0687 +0 0.0958 +0 0.0671 +0 0.3645 +0 0.1100 +0 0.2321 +0 0.1024 +0 0.0796 +0 0.1498 +0 0.1084 +0 0.1222 +0 0.2307 +0 0.0814 +0 0.1829 +0 0.0850 +0 0.0484 +0 0.0780 +0 0.1159 +0 0.1032 +0 0.0700 +0 0.0697 +0 0.0514 +0 0.0864 +0 0.0836 +0 0.0857 +0 0.1689 +0 0.1316 +0 0.0899 +0 0.0566 +0 0.1015 +0 0.0413 +0 0.1844 +0 0.1632 +0 0.0445 +0 0.1521 +0 0.0976 +0 0.1106 +0 0.2153 +0 0.1793 +0 0.2509 +0 0.1325 +0 0.0665 +0 0.2875 +0 0.1047 +0 0.2589 +0 0.1398 +0 0.2436 +0 0.0883 +0 0.1317 +0 0.0533 +0 0.1239 +1 0.7611 +0 0.0612 +0 0.0973 +0 0.0412 +0 0.0394 +0 0.0572 +0 0.4164 +0 0.0581 +0 0.1423 +0 0.0533 +0 0.1014 +0 0.0729 +0 0.1137 +0 0.0744 +1 0.7858 +0 0.1294 +0 0.1714 +0 0.1088 +0 0.0727 +0 0.0832 +0 0.0676 +0 0.0607 +0 0.1059 +0 0.1677 +0 0.2603 +0 0.1167 +0 0.0689 +0 0.1437 +0 0.0795 +0 0.0889 +0 0.1761 +0 0.1773 +0 0.0923 +0 0.1084 +0 0.0621 +0 0.4103 +0 0.1447 +0 0.0639 +0 0.1473 +0 0.1493 +0 0.5033 +0 0.0662 +0 0.1080 +0 0.0803 +0 0.1422 +0 0.2653 +0 0.5738 +0 0.0522 +0 0.0498 +0 0.0439 +0 0.2515 +0 0.0872 +0 0.0966 +0 0.0845 +0 0.1700 +0 0.0471 +0 0.1249 +0 0.0940 +0 0.1400 +0 0.2309 +0 0.1223 +0 0.1654 +0 0.0930 +0 0.1146 +0 0.0920 +0 0.0497 +1 0.8580 +0 0.0413 +0 0.1385 +0 0.0981 +0 0.1458 +0 0.0521 +0 0.0614 +0 0.0526 +0 0.0863 +0 0.0504 +0 0.0914 +0 0.4740 +0 0.1001 +0 0.2028 +0 0.0759 +0 0.0578 +0 0.2789 +0 0.0944 +0 0.1092 +0 0.0683 +0 0.1047 +0 0.0750 +0 0.0816 +0 0.0435 +0 0.1043 +0 0.3794 +0 0.1759 +0 0.0545 +0 0.1276 +0 0.0583 +0 0.1016 +0 0.0685 +0 0.0427 +0 0.2888 +0 0.5010 +0 0.0616 +0 0.0801 +0 0.0620 +0 0.1629 +0 0.1830 +0 0.0890 +0 0.1403 +0 0.1536 +0 0.1961 +0 0.1360 +0 0.1115 +0 0.3218 +0 0.1955 +0 0.0444 +0 0.0605 +0 0.5155 +0 0.0532 +0 0.0869 +0 0.1746 +0 0.3512 +0 0.0926 +0 0.1783 +0 0.2371 +0 0.1865 +0 0.3537 +0 0.2447 +0 0.0408 +0 0.0413 +0 0.1242 +0 0.3022 +0 0.0659 +0 0.1410 +0 0.0745 +0 0.0957 +0 0.0796 +0 0.1726 +0 0.0584 +0 0.2610 +0 0.0519 +0 0.0875 +0 0.0686 +0 0.1277 +0 0.2518 +0 0.1195 +0 0.0701 +0 0.1380 +0 0.0973 +0 0.4332 +1 0.7792 +0 0.0461 +0 0.2036 +0 0.1557 +0 0.0826 +0 0.1132 +0 0.2694 +0 0.0403 +0 0.0886 +0 0.0630 +0 0.0497 +0 0.0814 +0 0.0637 +0 0.2887 +0 0.1427 +0 0.0687 +0 0.1589 +0 0.0813 +0 0.0686 +0 0.0663 +0 0.0528 +0 0.0481 +0 0.2262 +0 0.0640 +0 0.0938 +0 0.2447 +0 0.1044 +1 0.7861 +0 0.0965 +0 0.0462 +0 0.1277 +0 0.1556 +0 0.6699 +0 0.1024 +0 0.2225 +0 0.2157 +0 0.1027 +0 0.0721 +0 0.0642 +0 0.1051 +0 0.1613 +0 0.0535 +0 0.0624 +0 0.0707 +0 0.0860 +0 0.0865 +0 0.1582 +0 0.0927 +0 0.2706 +0 0.1149 +0 0.0791 +0 0.0872 +0 0.0880 +0 0.4325 +0 0.1639 +0 0.1348 +0 0.1147 +0 0.1095 +1 0.8384 +0 0.0939 +0 0.1049 +0 0.4359 +0 0.1441 +0 0.1583 +0 0.0460 +0 0.0884 +0 0.1170 +0 0.1133 +0 0.0597 +0 0.0482 +0 0.0425 +0 0.1340 +0 0.0589 +0 0.0806 +0 0.0763 +0 0.1871 +0 0.0349 +0 0.0870 +0 0.0464 +0 0.0790 +0 0.0850 +0 0.0950 +0 0.2566 +0 0.1856 +1 0.7984 +0 0.0805 +1 0.7511 +1 0.9028 +0 0.1379 +0 0.0725 +0 0.0716 +0 0.4275 +0 0.0489 +0 0.0457 +0 0.2167 +0 0.7181 +0 0.0932 +0 0.1924 +0 0.0646 +0 0.1275 +0 0.0702 +0 0.1374 +0 0.0794 +0 0.1196 +0 0.2865 +0 0.0617 +0 0.3155 +0 0.1738 +0 0.0428 +0 0.1360 +0 0.4113 +0 0.2440 +0 0.0770 +0 0.1596 +0 0.1104 +0 0.2918 +0 0.1046 +0 0.1005 +0 0.1049 +1 0.7705 +0 0.0414 +0 0.1797 +0 0.1234 +0 0.1552 +0 0.0767 +0 0.2955 +0 0.1862 +0 0.0714 +0 0.0862 +0 0.2232 +0 0.5327 +0 0.0664 +0 0.0782 +0 0.3672 +0 0.0801 +0 0.0377 +0 0.1065 +0 0.0434 +0 0.1503 +0 0.2985 +0 0.1440 +0 0.2266 +0 0.1501 +0 0.1771 +0 0.0555 +0 0.0569 +0 0.2452 +0 0.1092 +0 0.1310 +0 0.1245 +0 0.1274 +0 0.1137 +0 0.0931 +0 0.1344 +0 0.1590 +0 0.1631 +0 0.0980 +0 0.0738 +0 0.1572 +0 0.1630 +0 0.0995 +0 0.1212 +0 0.0561 +0 0.1132 +0 0.1231 +0 0.1579 +0 0.1982 +0 0.1072 +0 0.1064 +0 0.0502 +0 0.1299 +0 0.1056 +0 0.0644 +0 0.1159 +0 0.0947 +0 0.0817 +0 0.1017 +0 0.0474 +0 0.2215 +0 0.1148 +0 0.1899 +0 0.1574 +0 0.0597 +0 0.0697 +0 0.7350 +0 0.0605 +0 0.1114 +0 0.0947 +0 0.0996 +0 0.0474 +0 0.0620 +0 0.1062 +0 0.0703 +0 0.0520 +0 0.1512 +0 0.0772 +0 0.2203 +0 0.0792 +0 0.2426 +0 0.1122 +0 0.1118 +0 0.1027 +1 0.7541 +0 0.1172 +0 0.0623 +0 0.0842 +0 0.1724 +0 0.1233 +0 0.1209 +0 0.0840 +0 0.1948 +0 0.1120 +0 0.2020 +0 0.7044 +0 0.2606 +0 0.0644 +0 0.0835 +0 0.1746 +0 0.0584 +0 0.0881 +0 0.1942 +0 0.0843 +0 0.1548 +0 0.0884 +0 0.1554 +0 0.0950 +0 0.1702 +0 0.0905 +0 0.1907 +0 0.0855 +0 0.1845 +0 0.0928 +0 0.1454 +0 0.0486 +0 0.0650 +0 0.1473 +0 0.0670 +0 0.0879 +0 0.1427 +0 0.1106 +0 0.0593 +0 0.3808 +0 0.1152 +0 0.0772 +0 0.1433 +0 0.0715 +0 0.0640 +0 0.1285 +0 0.0917 +0 0.0773 +0 0.3004 +0 0.5124 +0 0.0581 +0 0.0683 +0 0.0871 +0 0.1873 +0 0.0605 +0 0.0511 +0 0.0501 +0 0.0985 +0 0.2658 +0 0.0708 +0 0.0565 +0 0.1961 +0 0.5166 +0 0.2705 +0 0.4089 +0 0.0624 +0 0.1537 +0 0.1535 +0 0.0885 +0 0.0462 +0 0.2753 +0 0.0777 +0 0.1363 +0 0.0510 +0 0.5377 +0 0.0861 +0 0.0711 +0 0.0954 +0 0.0635 +0 0.1021 +0 0.1630 +0 0.0950 +0 0.0628 +0 0.0758 +0 0.1654 +0 0.1497 +0 0.0851 +0 0.2871 +0 0.2784 +0 0.0896 +0 0.2131 +0 0.0720 +0 0.0790 +0 0.0730 +0 0.0699 +0 0.1833 +0 0.0879 +0 0.0631 +0 0.2588 +0 0.1121 +0 0.1271 +0 0.0821 +0 0.2030 +0 0.0518 +0 0.1764 +0 0.3935 +1 0.8662 +0 0.0467 +0 0.1627 +0 0.3820 +0 0.0379 +0 0.5922 +0 0.1184 +0 0.0594 +0 0.0747 +0 0.0893 +0 0.0664 +0 0.0309 +0 0.0591 +0 0.0489 +0 0.1299 +0 0.0935 +0 0.0502 +0 0.1036 +0 0.0925 +0 0.2126 +0 0.2598 +0 0.0850 +0 0.1974 +0 0.1730 +0 0.0788 +1 0.8260 +0 0.0912 +0 0.1137 +0 0.0746 +0 0.0884 +0 0.1018 +0 0.0610 +0 0.1196 +0 0.1821 +0 0.1088 +0 0.0557 +0 0.0366 +0 0.1278 +0 0.2347 +0 0.1018 +0 0.1289 +0 0.0437 +0 0.1614 +0 0.0826 +0 0.0988 +0 0.0817 +0 0.1402 +0 0.1261 +0 0.7019 +0 0.0610 +0 0.5323 +0 0.1212 +0 0.0766 +0 0.0702 +0 0.0882 +0 0.0802 +0 0.1165 +0 0.7289 +0 0.1241 +0 0.1364 +0 0.1236 +0 0.2532 +0 0.0649 +0 0.0636 +0 0.1990 +0 0.1531 +0 0.1265 +0 0.0560 +0 0.0804 +0 0.0506 +0 0.0653 +0 0.0594 +0 0.1398 +0 0.1821 +0 0.1478 +0 0.3505 +0 0.6132 +0 0.0922 +0 0.0699 +0 0.1026 +0 0.5094 +0 0.0857 +0 0.0988 +0 0.0844 +0 0.2302 +0 0.0768 +0 0.1134 +0 0.0909 +0 0.0614 +0 0.1858 +0 0.0697 +0 0.0911 +0 0.1164 +0 0.0708 +0 0.0681 +0 0.1272 +0 0.1178 +0 0.1486 +0 0.1312 +0 0.2671 +0 0.1278 +0 0.1963 +0 0.0716 +0 0.0868 +0 0.0867 +0 0.0720 +0 0.1100 +0 0.0615 +0 0.1076 +0 0.3051 +0 0.1096 +0 0.1267 +0 0.0846 +0 0.0938 +0 0.2829 +0 0.1725 +0 0.1241 +0 0.0952 +0 0.0924 +0 0.1170 +0 0.1659 +0 0.0976 +0 0.0579 +0 0.1609 +0 0.1183 +0 0.1277 +0 0.0806 +0 0.7250 +0 0.1061 +0 0.1107 +0 0.0619 +0 0.0794 +0 0.1667 +0 0.1605 +0 0.1136 +0 0.1139 +0 0.0510 +0 0.0698 +0 0.1104 +0 0.1261 +0 0.1097 +0 0.6825 +0 0.0966 +0 0.1591 +0 0.0920 +0 0.0914 +0 0.1853 +0 0.7223 +0 0.1118 +0 0.0941 +0 0.2478 +0 0.1568 +0 0.1692 +0 0.0850 +0 0.1043 +0 0.2307 +0 0.1719 +0 0.1415 +0 0.0915 +0 0.1039 +0 0.0707 +0 0.0803 +0 0.0670 +0 0.1345 +0 0.1244 +0 0.2887 +0 0.0995 +0 0.1286 +0 0.0621 +0 0.0436 +0 0.3033 +0 0.0943 +0 0.2017 +0 0.1716 +0 0.1674 +0 0.2981 +0 0.1029 +0 0.0437 +0 0.0501 +0 0.0932 +0 0.1578 +0 0.2080 +0 0.0969 +0 0.0357 +0 0.1646 +0 0.0898 +0 0.0476 +0 0.0684 +0 0.1259 +0 0.0341 +0 0.1331 +0 0.1496 +0 0.1400 +0 0.0891 +0 0.1448 +0 0.0537 +0 0.0849 +0 0.1641 +0 0.2457 +0 0.1173 +0 0.5907 +0 0.0950 +0 0.0600 +0 0.1797 +0 0.0404 +1 0.7571 +0 0.1130 +0 0.1722 +0 0.2897 +0 0.0711 +0 0.1447 +0 0.0512 +0 0.0683 +0 0.0895 +0 0.1612 +0 0.0751 +0 0.1432 +0 0.0665 +0 0.2309 +0 0.2497 +0 0.2003 +0 0.0808 +0 0.0795 +0 0.0883 +0 0.0727 +0 0.0944 +0 0.0619 +0 0.1926 +0 0.0546 +0 0.2029 +0 0.0769 +0 0.1024 +0 0.2198 +0 0.0484 +0 0.2137 +0 0.1436 +0 0.0543 +0 0.0619 +0 0.0907 +0 0.1419 +0 0.1955 +0 0.2942 +0 0.1891 +0 0.0731 +0 0.0693 +0 0.0547 +0 0.0938 +0 0.0444 +0 0.5012 +0 0.0763 +0 0.3209 +0 0.2157 +0 0.2224 +0 0.0468 +0 0.0327 +0 0.0539 +0 0.7108 +0 0.0536 +0 0.3750 +0 0.1811 +0 0.2476 +0 0.0312 +0 0.0735 +0 0.1187 +0 0.3037 +0 0.0533 +0 0.2334 +0 0.0971 +0 0.1634 +0 0.0726 +0 0.5266 +0 0.1370 +0 0.0782 +0 0.1260 +0 0.1176 +0 0.1829 +0 0.0446 +0 0.0485 +0 0.1231 +0 0.0608 +0 0.2110 +0 0.1208 +0 0.1828 +0 0.0814 +0 0.1016 +0 0.0871 +0 0.2628 +0 0.3125 +0 0.1569 +0 0.1051 +0 0.1157 +0 0.0662 +0 0.2777 +0 0.1726 +0 0.1348 +0 0.0969 +0 0.0518 +0 0.0421 +0 0.0508 +0 0.2989 +0 0.0519 +0 0.1081 +0 0.0556 +0 0.0825 +0 0.0809 +0 0.1785 +0 0.1157 +0 0.0394 +0 0.0884 +0 0.4397 +0 0.1319 +0 0.1438 +0 0.2118 +0 0.0537 +0 0.0876 +0 0.0570 +0 0.0978 +0 0.1283 +0 0.0811 +0 0.0812 +0 0.1124 +0 0.3413 +0 0.2898 +0 0.1028 +0 0.0953 +0 0.1292 +0 0.1147 +0 0.2154 +0 0.1265 +0 0.0564 +0 0.0717 +0 0.0771 +0 0.1135 +0 0.1664 +0 0.0611 +0 0.1099 +0 0.0527 +0 0.5179 +0 0.2259 +0 0.1071 +0 0.1240 +0 0.0564 +0 0.0771 +0 0.1114 +0 0.0464 +0 0.0820 +0 0.5257 +0 0.0648 +0 0.2282 +0 0.3953 +0 0.1916 +0 0.0691 +0 0.1021 +0 0.3978 +0 0.2529 +0 0.1086 +0 0.1055 +0 0.1831 +0 0.0622 +0 0.1322 +0 0.1641 +0 0.1296 +0 0.1082 +0 0.1707 +0 0.0350 +0 0.2145 +0 0.1669 +0 0.1366 +0 0.7239 +0 0.0844 +0 0.2029 +0 0.0530 +0 0.0545 +0 0.0910 +0 0.1063 +0 0.0990 +0 0.1027 +0 0.1339 +0 0.2356 +0 0.0818 +0 0.0656 +0 0.2378 +0 0.5396 +0 0.0799 +0 0.0920 +0 0.1535 +0 0.0386 +0 0.1207 +0 0.0837 +0 0.2574 +0 0.0737 +0 0.0954 +0 0.3089 +0 0.0593 +0 0.0749 +0 0.1056 +0 0.0833 +0 0.1107 +0 0.2273 +0 0.0701 +0 0.0860 +0 0.1431 +0 0.1660 +0 0.0402 +0 0.1786 +0 0.0793 +0 0.1415 +0 0.0871 +0 0.0484 +0 0.2321 +0 0.0513 +0 0.0473 +0 0.1632 +0 0.1142 +0 0.1133 +0 0.0800 +0 0.0560 +0 0.1748 +0 0.0741 +1 0.8237 +0 0.0504 +0 0.1810 +0 0.1044 +0 0.0961 +0 0.3495 +0 0.0845 +0 0.1547 +0 0.0452 +0 0.1144 +0 0.1372 +0 0.0653 +0 0.0579 +0 0.1286 +0 0.0942 +0 0.0794 +0 0.1590 +0 0.1450 +0 0.1221 +0 0.0543 +0 0.0662 +0 0.1080 +0 0.3704 +0 0.0439 +0 0.0452 +0 0.0727 +0 0.1386 +0 0.1131 +0 0.1057 +0 0.1405 +0 0.1327 +0 0.1277 +0 0.4756 +0 0.1049 +0 0.1327 +0 0.1231 +0 0.1789 +0 0.0995 +0 0.2664 +0 0.0791 +0 0.0489 +0 0.0716 +0 0.1159 +0 0.0887 +0 0.1203 +0 0.2288 +0 0.1554 +0 0.1306 +0 0.0972 +0 0.0894 +0 0.2101 +0 0.0619 +1 0.7571 +0 0.0388 +0 0.1063 +0 0.1154 +0 0.1083 +0 0.0957 +0 0.2124 +0 0.0596 +0 0.1399 +0 0.0972 +0 0.0351 +0 0.1741 +0 0.1277 +0 0.1423 +0 0.1344 +0 0.1436 +0 0.0507 +0 0.0415 +0 0.0663 +0 0.2351 +0 0.1864 +0 0.1416 +0 0.1619 +0 0.2157 +0 0.1571 +0 0.0762 +0 0.0626 +0 0.1031 +0 0.3629 +0 0.1129 +0 0.1032 +0 0.1137 +0 0.1097 +1 0.7843 +0 0.0845 +0 0.0866 +0 0.2358 +0 0.1338 +0 0.1190 +0 0.1010 +0 0.0426 +0 0.0729 +0 0.0804 +0 0.0971 +0 0.1988 +0 0.1803 +0 0.0466 +0 0.3003 +0 0.1287 +0 0.2546 +0 0.1751 +0 0.1522 +0 0.1143 +0 0.1431 +0 0.2138 +0 0.2054 +0 0.7337 +0 0.0543 +0 0.1278 +0 0.2412 +1 0.7702 +0 0.0909 +0 0.3296 +0 0.2243 +0 0.0998 +0 0.0850 +0 0.0965 +0 0.0660 +0 0.1120 +0 0.5859 +0 0.0818 +0 0.1971 +0 0.0527 +0 0.0585 +0 0.1297 +0 0.1153 +0 0.2075 +0 0.0406 +0 0.1700 +0 0.6810 +0 0.1058 +0 0.1025 +0 0.0936 +0 0.1181 +0 0.0988 +0 0.0567 +0 0.0347 +0 0.0868 +0 0.6345 +0 0.0754 +0 0.1592 +0 0.1566 +0 0.1509 +0 0.2388 +0 0.1162 +0 0.1779 +0 0.1347 +0 0.0741 +0 0.1466 +0 0.0538 +0 0.1566 +0 0.1027 +0 0.0549 +0 0.0998 +0 0.1354 +0 0.0779 +0 0.1539 +0 0.1272 +0 0.0749 +0 0.0582 +0 0.2089 +0 0.1182 +0 0.0549 +0 0.1470 +0 0.0971 +0 0.1561 +0 0.1149 +0 0.0981 +0 0.2605 +0 0.2288 +0 0.2249 +0 0.1899 +0 0.0754 +0 0.4214 +0 0.1232 +0 0.0589 +0 0.1881 +0 0.1621 +0 0.0530 +0 0.0752 +0 0.1162 +0 0.0997 +0 0.0881 +0 0.0510 +0 0.0965 +0 0.1052 +0 0.1802 +0 0.0858 +0 0.1852 +0 0.1733 +0 0.0438 +0 0.0665 +0 0.0760 +0 0.0884 +0 0.1415 +0 0.0510 +0 0.0866 +0 0.2050 +0 0.0691 +0 0.1093 +0 0.0860 +0 0.2725 +0 0.0406 +0 0.0741 +0 0.0803 +0 0.0401 +0 0.0792 +0 0.1036 +0 0.0822 +0 0.1096 +0 0.0754 +0 0.1560 +0 0.1497 +0 0.0608 +0 0.0476 +0 0.0637 +0 0.0458 +0 0.0714 +0 0.1490 +0 0.0437 +0 0.0937 +0 0.0367 +0 0.0907 +0 0.1243 +0 0.0674 +0 0.1281 +0 0.0645 +0 0.1071 +0 0.1587 +0 0.2271 +0 0.0587 +0 0.0372 +0 0.0885 +0 0.1400 +0 0.1411 +0 0.1014 +0 0.1364 +0 0.0387 +0 0.1282 +0 0.0919 +0 0.0838 +0 0.2471 +0 0.0474 +0 0.1063 +0 0.4902 +0 0.0894 +0 0.0721 +0 0.1569 +0 0.1770 +0 0.0573 +0 0.1250 +0 0.1695 +0 0.1101 +0 0.1792 +0 0.1180 +0 0.0774 +0 0.0889 +0 0.1006 +0 0.2621 +0 0.0303 +0 0.0523 +0 0.2159 +0 0.1516 +0 0.0925 +0 0.1185 +0 0.0566 +0 0.0961 +0 0.1634 +0 0.0491 +0 0.0786 +0 0.1348 +0 0.0712 +0 0.2868 +0 0.1675 +0 0.2329 +0 0.1083 +0 0.2885 +0 0.3841 +0 0.0769 +0 0.5858 +0 0.0851 +0 0.0850 +0 0.3369 +0 0.1435 +0 0.1201 +0 0.0775 +0 0.3432 +0 0.0662 +0 0.0768 +0 0.1661 +0 0.1262 +0 0.0708 +0 0.0967 +0 0.1271 +0 0.1254 +0 0.0756 +0 0.5158 +0 0.1934 +0 0.1268 +0 0.0804 +0 0.1229 +0 0.2545 +0 0.1916 +0 0.1221 +0 0.1254 +0 0.1054 +0 0.0552 +0 0.1350 +0 0.1241 +0 0.1053 +0 0.2085 +0 0.0736 +0 0.0736 +0 0.2329 +0 0.0760 +0 0.1400 +0 0.0940 +0 0.1821 +0 0.0615 +0 0.1024 +0 0.0689 +0 0.1371 +0 0.1836 +0 0.1011 +0 0.1803 +0 0.1971 +0 0.5840 +0 0.1169 +0 0.1201 +0 0.5727 +0 0.1700 +0 0.0824 +0 0.1074 +0 0.1468 +0 0.2169 +0 0.1823 +0 0.2127 +0 0.3013 +0 0.0563 +0 0.5808 +0 0.0479 +0 0.2227 +0 0.0783 +0 0.1147 +0 0.1670 +0 0.2059 +0 0.0937 +0 0.1434 +0 0.0885 +0 0.0412 +0 0.1685 +0 0.1127 +0 0.0797 +0 0.1776 +0 0.0892 +0 0.0822 +0 0.1772 +0 0.0851 +0 0.1320 +0 0.2244 +0 0.1431 +0 0.1641 +0 0.0750 +0 0.1545 +0 0.2885 +0 0.1371 +0 0.1468 +0 0.3062 +0 0.1059 +0 0.1433 +0 0.0746 +0 0.2295 +1 0.7758 +0 0.0562 +0 0.2263 +0 0.2501 +0 0.1469 +0 0.4120 +0 0.1603 +0 0.0546 +0 0.1002 +0 0.0807 +0 0.0600 +0 0.1339 +0 0.1079 +0 0.0668 +0 0.0835 +0 0.1931 +0 0.1308 +0 0.1844 +0 0.0490 +0 0.1694 +0 0.0961 +0 0.0399 +0 0.1733 +0 0.1282 +0 0.0793 +0 0.0637 +0 0.0471 +0 0.0446 +0 0.0436 +0 0.1301 +0 0.0868 +0 0.0990 +0 0.1178 +0 0.2571 +0 0.1249 +0 0.1048 +0 0.0747 +0 0.0647 +0 0.2092 +0 0.1381 +0 0.1446 +0 0.1363 +0 0.1889 +0 0.0439 +0 0.2007 +0 0.0724 +0 0.1101 +0 0.1044 +0 0.0784 +0 0.2202 +0 0.0391 +0 0.0810 +0 0.2552 +0 0.1258 +0 0.1033 +0 0.0537 +0 0.0383 +0 0.1187 +0 0.0572 +0 0.1839 +0 0.0732 +0 0.2952 +0 0.0814 +0 0.0464 +0 0.0298 +0 0.0492 +0 0.1509 +0 0.0714 +0 0.0676 +0 0.0687 +0 0.2463 +0 0.1208 +0 0.0784 +0 0.1268 +0 0.0683 +0 0.1751 +0 0.1073 +0 0.0859 +0 0.0885 +0 0.4146 +0 0.3792 +0 0.2430 +0 0.0620 +0 0.0450 +0 0.0476 +0 0.1058 +0 0.1383 +0 0.0648 +0 0.1384 +0 0.7192 +0 0.1514 +0 0.0449 +0 0.1630 +1 0.8460 +0 0.1465 +0 0.0954 +0 0.0918 +0 0.0383 +0 0.0772 +0 0.1328 +0 0.1066 +0 0.1364 +0 0.1130 +0 0.0603 +0 0.0820 +0 0.1187 +0 0.0867 +0 0.0796 +0 0.0712 +0 0.0944 +0 0.1876 +0 0.1306 +0 0.1609 +0 0.1009 +0 0.5771 +0 0.1430 +0 0.1759 +0 0.0694 +0 0.0672 +0 0.1804 +0 0.0440 +0 0.1327 +0 0.2428 +0 0.0854 +0 0.1527 +0 0.1771 +0 0.1984 +0 0.1432 +0 0.6928 +0 0.1021 +0 0.0623 +0 0.2575 +0 0.0712 +0 0.2606 +0 0.0836 +0 0.1032 +0 0.0433 +0 0.0393 +0 0.0535 +0 0.0616 +0 0.1292 +0 0.1543 +0 0.0739 +0 0.2903 +0 0.2776 +0 0.1007 +0 0.0438 +0 0.0891 +0 0.3173 +0 0.0939 +0 0.1283 +0 0.0658 +0 0.0626 +0 0.1847 +0 0.1541 +0 0.0788 +0 0.1768 +0 0.4815 +0 0.0674 +0 0.0944 +0 0.1265 +0 0.1649 +0 0.0813 +0 0.1895 +0 0.0559 +0 0.0645 +0 0.2738 +0 0.1388 +0 0.0556 +0 0.6706 +0 0.1192 +0 0.1121 +0 0.1196 +0 0.1537 +0 0.2167 +0 0.1626 +0 0.0845 +1 0.7619 +0 0.0749 +0 0.1989 +0 0.1292 +0 0.0549 +0 0.0921 +0 0.0715 +0 0.1671 +0 0.1776 +0 0.0593 +0 0.1004 +1 0.3001 +0 0.0853 +0 0.1769 +0 0.0760 +0 0.1175 +0 0.0461 +0 0.2224 +0 0.1405 +0 0.1463 +0 0.0766 +0 0.1522 +0 0.0492 +0 0.0864 +0 0.0990 +0 0.1599 +0 0.1347 +0 0.3456 +0 0.1562 +0 0.0826 +0 0.2663 +0 0.0590 +0 0.1832 +0 0.0537 +0 0.0557 +0 0.0382 +0 0.3502 +0 0.0979 +0 0.4961 +0 0.0475 +0 0.0702 +0 0.3304 +0 0.1292 +0 0.0578 +0 0.0920 +0 0.1775 +0 0.0626 +0 0.0556 +1 0.8280 +0 0.1080 +0 0.1017 +0 0.2153 +0 0.0518 +0 0.0787 +0 0.1882 +0 0.0902 +0 0.2720 +0 0.0880 +0 0.1792 +0 0.1486 +0 0.0813 +0 0.1131 +0 0.0850 +0 0.1434 +0 0.0687 +0 0.1538 +0 0.3491 +0 0.0783 +0 0.0425 +0 0.1155 +0 0.2117 +0 0.1303 +0 0.0486 +0 0.0581 +0 0.1079 +0 0.3012 +0 0.0932 +0 0.0673 +0 0.1265 +0 0.2981 +0 0.0549 +0 0.0881 +0 0.2881 +0 0.2744 +0 0.1095 +0 0.0762 +0 0.4012 +0 0.1211 +0 0.0675 +0 0.0584 +0 0.3799 +0 0.0544 +0 0.0629 +0 0.0812 +0 0.0636 +0 0.0617 +0 0.0744 +0 0.7029 +0 0.3957 +0 0.2682 +0 0.0961 +0 0.1358 +0 0.1180 +0 0.1181 +0 0.1783 +0 0.3942 +0 0.0907 +0 0.1541 +0 0.1702 +0 0.1251 +0 0.0841 +0 0.0983 +0 0.0393 +0 0.0405 +0 0.0545 +0 0.1220 +0 0.1492 +0 0.3216 +0 0.1346 +0 0.0495 +0 0.1024 +0 0.2461 +0 0.1167 +0 0.0624 +0 0.0681 +0 0.4388 +0 0.0483 +0 0.0901 +0 0.5299 +0 0.1324 +0 0.0895 +0 0.1599 +0 0.1006 +0 0.1450 +0 0.0931 +0 0.1108 +0 0.0502 +0 0.0500 +1 0.8543 +0 0.1719 +0 0.0990 +0 0.5120 +0 0.4400 +0 0.1492 +0 0.2770 +0 0.3510 +0 0.1190 +0 0.0705 +0 0.1961 +0 0.0834 +0 0.0806 +0 0.1900 +0 0.0440 +0 0.0638 +0 0.6704 +0 0.1137 +0 0.0639 +0 0.2977 +0 0.0833 +0 0.0738 +0 0.1382 +0 0.1320 +0 0.1043 +0 0.3653 +0 0.1183 +0 0.0487 +0 0.2596 +0 0.0832 +1 0.7819 +0 0.1758 +0 0.1328 +0 0.1011 +0 0.1447 +0 0.3257 +0 0.1665 +0 0.1750 +0 0.1225 +0 0.6228 +0 0.0583 +0 0.0790 +0 0.1354 +0 0.0566 +0 0.0785 +0 0.2144 +0 0.2549 +0 0.1044 +0 0.1515 +0 0.2189 +0 0.1538 +0 0.1004 +0 0.0715 +0 0.0695 +0 0.0717 +0 0.1977 +0 0.1793 +0 0.2029 +0 0.1170 +0 0.0507 +0 0.1379 +0 0.0299 +0 0.1073 +0 0.0874 +0 0.1478 +0 0.2324 +0 0.0572 +0 0.0998 +0 0.0828 +0 0.1349 +0 0.1092 +0 0.0566 +0 0.1095 +0 0.1883 +0 0.4703 +0 0.0771 +0 0.2598 +0 0.1050 +0 0.1095 +0 0.0636 +0 0.0798 +0 0.0758 +0 0.0791 +0 0.0740 +0 0.0825 +0 0.0766 +0 0.1181 +0 0.1581 +0 0.1222 +0 0.0443 +0 0.2127 +0 0.0764 +0 0.0833 +0 0.0544 +0 0.0351 +0 0.0682 +0 0.2066 +0 0.0756 +0 0.0822 +0 0.0956 +1 0.8747 +0 0.0615 +0 0.1036 +0 0.1176 +0 0.0479 +0 0.1987 +0 0.0635 +0 0.2381 +0 0.1891 +0 0.0349 +0 0.0670 +0 0.1358 +0 0.1417 +0 0.1790 +0 0.1292 +0 0.0925 +0 0.1928 +0 0.3512 +0 0.1114 +0 0.0835 +0 0.0593 +0 0.0577 +0 0.0467 +0 0.0814 +0 0.0952 +0 0.0789 +0 0.1669 +0 0.1331 +0 0.0629 +0 0.3854 +0 0.0987 +0 0.0737 +0 0.2375 +0 0.1992 +0 0.0656 +0 0.0571 +0 0.0832 +0 0.1165 +0 0.1302 +0 0.0545 +0 0.0547 +1 0.8537 +0 0.1223 +0 0.0470 +0 0.0694 +0 0.0660 +0 0.6562 +0 0.2410 +0 0.0844 +0 0.1771 +0 0.0995 +0 0.0918 +0 0.1006 +0 0.0619 +0 0.0855 +0 0.4195 +0 0.1210 +0 0.1369 +0 0.0687 +0 0.1334 +0 0.1212 +0 0.0868 +0 0.1303 +0 0.1555 +0 0.0541 +0 0.0683 +0 0.0783 +0 0.0673 +0 0.3306 +0 0.0598 +0 0.1052 +0 0.1452 +0 0.1194 +0 0.1698 +0 0.1716 +0 0.0675 +0 0.1636 +0 0.1637 +0 0.1075 +0 0.1771 +0 0.0991 +0 0.2515 +1 0.8312 +0 0.2653 +0 0.0998 +0 0.0837 +0 0.2256 +0 0.1369 +0 0.0692 +0 0.2406 +0 0.0876 +0 0.0543 +0 0.1731 +0 0.1113 +0 0.4826 +0 0.0471 +0 0.0460 +1 0.7948 +0 0.1282 +0 0.3199 +0 0.0823 +0 0.0665 +0 0.0755 +0 0.0926 +0 0.0814 +0 0.0891 +0 0.7235 +0 0.0763 +0 0.0529 +0 0.0516 +0 0.4228 +0 0.0988 +0 0.1334 +0 0.2376 +0 0.0576 +0 0.2175 +0 0.1080 +0 0.0655 +0 0.0484 +0 0.0825 +0 0.0661 +0 0.0851 +0 0.0460 +0 0.1479 +0 0.0611 +0 0.0601 +0 0.0827 +0 0.2602 +0 0.1424 +0 0.0823 +0 0.0721 +0 0.1624 +0 0.2521 +0 0.3490 +0 0.0996 +0 0.1057 +0 0.0595 +0 0.1860 +0 0.0774 +0 0.1406 +0 0.0745 +0 0.1453 +0 0.1939 +0 0.4450 +0 0.1140 +0 0.0425 +0 0.0979 +0 0.3175 +1 0.7852 +0 0.1070 +0 0.0353 +0 0.0622 +0 0.1213 +0 0.0700 +0 0.0437 +0 0.0895 +0 0.0717 +0 0.0990 +1 0.8841 +0 0.0773 +0 0.1016 +0 0.0993 +0 0.1243 +0 0.0739 +0 0.1080 +0 0.0786 +0 0.0625 +0 0.0432 +0 0.3914 +0 0.0901 +0 0.0761 +0 0.4838 +0 0.1261 +0 0.1845 +0 0.1533 +0 0.1472 +0 0.2694 +0 0.0657 +0 0.0691 +0 0.0490 +1 0.7940 +0 0.1012 +0 0.2450 +0 0.0744 +0 0.1111 +0 0.0520 +0 0.1292 +0 0.2080 +0 0.1659 +0 0.1021 +0 0.2828 +0 0.1011 +0 0.1718 +0 0.0464 +0 0.1032 +0 0.0865 +0 0.0873 +0 0.1115 +0 0.0834 +0 0.2063 +0 0.0738 +0 0.0629 +0 0.1641 +0 0.1029 +0 0.0879 +0 0.0707 +0 0.0748 +0 0.2090 +0 0.3516 +0 0.2301 +0 0.0587 +0 0.1363 +0 0.1301 +0 0.1296 +0 0.0581 +0 0.0793 +0 0.0694 +0 0.0505 +0 0.3711 +0 0.1050 +0 0.4522 +0 0.1732 +0 0.1897 +0 0.1250 +0 0.0876 +0 0.1484 +0 0.0857 +0 0.1261 +0 0.1935 +0 0.1825 +0 0.1964 +0 0.4229 +0 0.1227 +0 0.0522 +0 0.1099 +0 0.1034 +0 0.1316 +0 0.1367 +0 0.0465 +0 0.0810 +0 0.1884 +0 0.2013 +0 0.0782 +0 0.1102 +0 0.2747 +0 0.1073 +0 0.0806 +0 0.1254 +0 0.0973 +0 0.0342 +0 0.0550 +0 0.0501 +0 0.0812 +0 0.0421 +0 0.1758 +0 0.0591 +0 0.2384 +0 0.2004 +1 0.7662 +1 0.2823 +0 0.2362 +0 0.0692 +0 0.1378 +0 0.1004 +0 0.2054 +0 0.1855 +0 0.0639 +0 0.2593 +0 0.2015 +0 0.2122 +0 0.0859 +0 0.0601 +0 0.4153 +0 0.1347 +0 0.2312 +0 0.0699 +0 0.1520 +0 0.0944 +0 0.0840 +0 0.1961 +0 0.2929 +0 0.5167 +0 0.0609 +0 0.1116 +0 0.1387 +0 0.0692 +0 0.1084 +0 0.0336 +0 0.0903 +0 0.1874 +0 0.1569 +0 0.2518 +0 0.0968 +0 0.0726 +0 0.1576 +0 0.2451 +0 0.1040 +0 0.2467 +0 0.0521 +0 0.0799 +0 0.2160 +0 0.2086 +0 0.0945 +0 0.1575 +0 0.0686 +0 0.0604 +0 0.1308 +0 0.1357 +0 0.3428 +0 0.1323 +0 0.2091 +0 0.0518 +0 0.0631 +0 0.0998 +0 0.1197 +0 0.1228 +0 0.1211 +0 0.0663 +0 0.2363 +0 0.0646 +0 0.1048 +0 0.1892 +0 0.0566 +0 0.1750 +0 0.2167 +0 0.0842 +0 0.0536 +0 0.1084 +0 0.0665 +0 0.0648 +0 0.0618 +0 0.0696 +0 0.3874 +0 0.0583 +0 0.1104 +0 0.1351 +0 0.2246 +0 0.0932 +0 0.0807 +0 0.2858 +0 0.0692 +0 0.1531 +0 0.1667 +0 0.0419 +0 0.0527 +0 0.1830 +0 0.0509 +0 0.1184 +0 0.2943 +0 0.1025 +0 0.1057 +0 0.1037 +0 0.0508 +0 0.2559 +0 0.0661 +0 0.6819 +0 0.0556 +0 0.2201 +1 0.8579 +1 0.7790 +0 0.1198 +0 0.1361 +0 0.1295 +0 0.1519 +0 0.0885 +0 0.1203 +0 0.1020 +0 0.0803 +0 0.3242 +0 0.1290 +0 0.1382 +0 0.1247 +0 0.1304 +1 0.7705 +0 0.1475 +0 0.1119 +0 0.0931 +0 0.1315 +0 0.0516 +0 0.1277 +0 0.2770 +1 0.7843 +0 0.0617 +0 0.1920 +0 0.0606 +0 0.3297 +0 0.0503 +0 0.3160 +0 0.0510 +0 0.0733 +0 0.2554 +0 0.0868 +0 0.2263 +0 0.0952 +0 0.0765 +0 0.0887 +0 0.2291 +0 0.0551 +0 0.1450 +0 0.1602 +0 0.0593 +0 0.1067 +0 0.0920 +0 0.0663 +0 0.0552 +0 0.1208 +0 0.1412 +0 0.1693 +0 0.0674 +0 0.1043 +0 0.1429 +0 0.0675 +0 0.1044 +0 0.0680 +0 0.3222 +0 0.1568 +0 0.0878 +0 0.0808 +0 0.1619 +0 0.1121 +0 0.0507 +0 0.0451 +0 0.1956 +0 0.2008 +0 0.1078 +0 0.1447 +0 0.0663 +0 0.0827 +0 0.1295 +0 0.1400 +0 0.0926 +0 0.0615 +0 0.0524 +0 0.7057 +0 0.1009 +0 0.0535 +0 0.0491 +0 0.0713 +0 0.0875 +0 0.0640 +0 0.3509 +0 0.0382 +0 0.1392 +0 0.2065 +0 0.2362 +0 0.1841 +0 0.0421 +0 0.1023 +0 0.6217 +0 0.1258 +0 0.1071 +0 0.2095 +0 0.3503 +0 0.0620 +0 0.0705 +0 0.0468 +0 0.1542 +0 0.0475 +0 0.0849 +0 0.0709 +0 0.0557 +0 0.2193 +0 0.0814 +0 0.0821 +0 0.1012 +0 0.1115 +0 0.1069 +0 0.0737 +0 0.1316 +0 0.1086 +0 0.0545 +0 0.0474 +0 0.0687 +0 0.1548 +0 0.0947 +0 0.1177 +0 0.1600 +0 0.4123 +0 0.0460 +0 0.1983 +0 0.1139 +0 0.3160 +0 0.0775 +0 0.1218 +0 0.1042 +0 0.0995 +0 0.7377 +0 0.1478 +0 0.0555 +0 0.0505 +0 0.0622 +0 0.0769 +0 0.0747 +0 0.0657 +0 0.1456 +0 0.4601 +0 0.0432 +0 0.1699 +0 0.1393 +0 0.1069 +0 0.2341 +0 0.1840 +0 0.0745 +0 0.0921 +0 0.2932 +0 0.0811 +0 0.0663 +0 0.1917 +0 0.1602 +0 0.0734 +0 0.0520 +0 0.1605 +0 0.1273 +0 0.0861 +0 0.0966 +0 0.1121 +0 0.2074 +0 0.2296 +0 0.0531 +0 0.2105 +0 0.1962 +0 0.0641 +0 0.0713 +0 0.0742 +0 0.1216 +0 0.0889 +0 0.0595 +0 0.1467 +0 0.1390 +0 0.0744 +0 0.1515 +0 0.1800 +0 0.1037 +0 0.1651 +0 0.0986 +0 0.0675 +0 0.1140 +0 0.0478 +0 0.1568 +0 0.0504 +0 0.0461 +0 0.1907 +0 0.1133 +0 0.0665 +0 0.1832 +0 0.2422 +0 0.1242 +0 0.1066 +0 0.1751 +0 0.0641 +0 0.1063 +0 0.0696 +0 0.1310 +1 0.7607 +0 0.1039 +0 0.1596 +0 0.1406 +0 0.0763 +0 0.0853 +0 0.2022 +0 0.2584 +0 0.0899 +0 0.1150 +0 0.0973 +0 0.0620 +0 0.0911 +0 0.0868 +0 0.3487 +0 0.1176 +0 0.1345 +0 0.0553 +0 0.0651 +1 0.7761 +0 0.1128 +0 0.1988 +0 0.1066 +0 0.0643 +0 0.1080 +0 0.0892 +0 0.1599 +0 0.0340 +0 0.0820 +0 0.1367 +0 0.3776 +0 0.0435 +0 0.1889 +0 0.0811 +0 0.1444 +0 0.7280 +0 0.0953 +0 0.1053 +0 0.0899 +0 0.1315 +0 0.1353 +1 0.7799 +0 0.0571 +0 0.0977 +0 0.0652 +0 0.1357 +0 0.1186 +0 0.0857 +0 0.2099 +0 0.0841 +0 0.1114 +0 0.0894 +0 0.7465 +0 0.2137 +0 0.0736 +0 0.0828 +0 0.2713 +0 0.2323 +0 0.1054 +0 0.0369 +0 0.1057 +0 0.0413 +0 0.3426 +0 0.0374 +0 0.0948 +0 0.0789 +0 0.1036 +0 0.1650 +0 0.0363 +0 0.2368 +0 0.2486 +0 0.4509 +0 0.1138 +0 0.1886 +0 0.0417 +0 0.3889 +0 0.1204 +0 0.0835 +0 0.1582 +0 0.1733 +0 0.2127 +0 0.1568 +0 0.0796 +0 0.0988 +0 0.2077 +0 0.2237 +0 0.1180 +0 0.1690 +0 0.3342 +0 0.1000 +0 0.0635 +0 0.0736 +0 0.2015 +0 0.7193 +0 0.0687 +0 0.1447 +0 0.4740 +0 0.2573 +0 0.4383 +0 0.1734 +0 0.1184 +0 0.0932 +0 0.0785 +0 0.0733 +0 0.1203 +0 0.2035 +0 0.1356 +0 0.1168 +0 0.0305 +0 0.0373 +0 0.1368 +0 0.0641 +0 0.1282 +0 0.2341 +0 0.1090 +0 0.0538 +0 0.0348 +0 0.0668 +0 0.0861 +0 0.0955 +0 0.0807 +0 0.2163 +0 0.0748 +0 0.2302 +0 0.1017 +0 0.1296 +0 0.0489 +0 0.1329 +0 0.1654 +0 0.0433 +0 0.0655 +0 0.3639 +0 0.1697 +0 0.0993 +0 0.0677 +0 0.1610 +0 0.1122 +0 0.0486 +0 0.0828 +0 0.0506 +0 0.1208 +0 0.2367 +0 0.0559 +0 0.0782 +0 0.0347 +0 0.0916 +0 0.1111 +0 0.1576 +0 0.1349 +0 0.1764 +0 0.1814 +0 0.1172 +0 0.1146 +0 0.1625 +0 0.1411 +0 0.0958 +0 0.0634 +0 0.2671 +0 0.0436 +0 0.1666 +0 0.0804 +0 0.2263 +0 0.1047 +0 0.2340 +0 0.1626 +0 0.0714 +0 0.1264 +0 0.0748 +0 0.1314 +0 0.0494 +0 0.1106 +0 0.0610 +0 0.0583 +0 0.2336 +0 0.0486 +0 0.0733 +0 0.1187 +0 0.1134 +1 0.8084 +0 0.0440 +0 0.0552 +0 0.1007 +0 0.0595 +0 0.3081 +0 0.0877 +0 0.1230 +0 0.0559 +0 0.0895 +0 0.1182 +0 0.1035 +0 0.0460 +0 0.0628 +0 0.2461 +0 0.0912 +0 0.0587 +0 0.1144 +0 0.0455 +0 0.0804 +0 0.1178 +0 0.1061 +0 0.1682 +0 0.0638 +0 0.6658 +0 0.0861 +0 0.0756 +1 0.5400 +0 0.0602 +0 0.1088 +0 0.0845 +0 0.1364 +0 0.0590 +0 0.3357 +0 0.2029 +0 0.2829 +0 0.1449 +0 0.0869 +0 0.0736 +0 0.1230 +0 0.0426 +0 0.0580 +0 0.2039 +0 0.1094 +1 0.7970 +0 0.1805 +0 0.1887 +0 0.1371 +0 0.1014 +0 0.3304 +0 0.0820 +0 0.0758 +0 0.0826 +0 0.0582 +0 0.0487 +0 0.0841 +0 0.0706 +0 0.1993 +0 0.1165 +0 0.1717 +0 0.0815 +0 0.0908 +0 0.0732 +0 0.1115 +0 0.0632 +0 0.1170 +0 0.1360 +0 0.0774 +0 0.3109 +0 0.0808 +0 0.0641 +0 0.0816 +0 0.2629 +0 0.0882 +0 0.2645 +0 0.1162 +0 0.0470 +0 0.0574 +0 0.1659 +0 0.5099 +0 0.1672 +0 0.6158 +0 0.3395 +0 0.1498 +0 0.2881 +0 0.1030 +0 0.0817 +0 0.0660 +0 0.0609 +0 0.0837 +0 0.1223 +0 0.1100 +0 0.0779 +0 0.0473 +0 0.1293 +0 0.1209 +0 0.1818 +0 0.0621 +1 0.2550 +0 0.1252 +0 0.1150 +0 0.1101 +0 0.0644 +0 0.0972 +0 0.1555 +0 0.1840 +0 0.0859 +0 0.0733 +0 0.0725 +0 0.0567 +0 0.0871 +0 0.6874 +0 0.0737 +1 0.7853 +0 0.1595 +0 0.0971 +0 0.1795 +0 0.1720 +0 0.2908 +0 0.4696 +0 0.0687 +0 0.1218 +0 0.1554 +0 0.2526 +0 0.0883 +0 0.0564 +0 0.0648 +0 0.1599 +0 0.0722 +0 0.1752 +0 0.0975 +0 0.1589 +0 0.0371 +0 0.0782 +0 0.1241 +0 0.0736 +0 0.0652 +0 0.1504 +0 0.0441 +0 0.0779 +0 0.2675 +0 0.0664 +0 0.1090 +0 0.0561 +0 0.2283 +0 0.0911 +0 0.2241 +0 0.1480 +0 0.2782 +0 0.0851 +0 0.1462 +0 0.4016 +0 0.6403 +0 0.1239 +0 0.1179 +0 0.2984 +0 0.1179 +0 0.0647 +0 0.2490 +0 0.1109 +0 0.0933 +0 0.0820 +0 0.0422 +0 0.2993 +0 0.0603 +0 0.2385 +0 0.1273 +0 0.2115 +0 0.2652 +0 0.0839 +0 0.2127 +0 0.7357 +0 0.6619 +0 0.3975 +0 0.0959 +0 0.1008 +0 0.0724 +0 0.0462 +0 0.3140 +0 0.5082 +0 0.1714 +0 0.1250 +0 0.0641 +0 0.0830 +0 0.0881 +0 0.0464 +0 0.0808 +0 0.0873 +0 0.0916 +0 0.3038 +0 0.0862 +0 0.2167 +0 0.0481 +0 0.0472 +0 0.0629 +0 0.1689 +0 0.4735 +0 0.0899 +0 0.2055 +0 0.0796 +0 0.0518 +0 0.0836 +0 0.1777 +0 0.0646 +0 0.0512 +0 0.0654 +0 0.0459 +0 0.0901 +0 0.4671 +0 0.1138 +0 0.0852 +0 0.1239 +0 0.1081 +0 0.0765 +0 0.4223 +1 0.8256 +0 0.3178 +0 0.0823 +0 0.1806 +0 0.0917 +0 0.1918 +0 0.1028 +0 0.0612 +0 0.2060 +0 0.0871 +0 0.0731 +0 0.0744 +0 0.0498 +0 0.2474 +0 0.1100 +0 0.0489 +0 0.0728 +0 0.0742 +0 0.0721 +0 0.1120 +0 0.1032 +0 0.1304 +0 0.1447 +0 0.4374 +0 0.0892 +0 0.0331 +0 0.1622 +0 0.2694 +0 0.2436 +0 0.0649 +0 0.1581 +0 0.0722 +0 0.0663 +0 0.1357 +0 0.1194 +0 0.2095 +0 0.1180 +0 0.0801 +0 0.0938 +0 0.1174 +0 0.0459 +0 0.1032 +0 0.1514 +0 0.2846 +0 0.2970 +0 0.1360 +0 0.0357 +0 0.0494 +1 0.7503 +0 0.1444 +0 0.1065 +0 0.0443 +0 0.1136 +0 0.2309 +0 0.0727 +0 0.1494 +0 0.1189 +0 0.1955 +0 0.1722 +0 0.1423 +0 0.0838 +0 0.0772 +0 0.0803 +0 0.0776 +0 0.2478 +0 0.3466 +0 0.0437 +0 0.0615 +0 0.1144 +0 0.1299 +0 0.0582 +0 0.1016 +0 0.0826 +0 0.2929 +0 0.0960 +0 0.3608 +0 0.0880 +0 0.1534 +0 0.0879 +0 0.1209 +0 0.1126 +0 0.0824 +0 0.0467 +0 0.1770 +0 0.0775 +0 0.0912 +0 0.2448 +0 0.0667 +0 0.6583 +0 0.1081 +0 0.0521 +0 0.0708 +0 0.0420 +0 0.0793 +0 0.0473 +0 0.0427 +0 0.0842 +0 0.0827 +0 0.0897 +0 0.0817 +0 0.0997 +0 0.1381 +0 0.1194 +0 0.1589 +1 0.8566 +0 0.0716 +0 0.0957 +0 0.0605 +0 0.1202 +0 0.1582 +0 0.1637 +0 0.1775 +0 0.0868 +0 0.6788 +0 0.0590 +0 0.0814 +0 0.0810 +0 0.1274 +0 0.0939 +0 0.0909 +0 0.0637 +0 0.0923 +0 0.1532 +0 0.0983 +0 0.2501 +0 0.0605 +0 0.2099 +0 0.0796 +0 0.5526 +0 0.2362 +0 0.0983 +0 0.1923 +0 0.1500 +0 0.0862 +0 0.1709 +0 0.1407 +0 0.0461 +0 0.0826 +0 0.0727 +0 0.0737 +0 0.1884 +0 0.0940 +0 0.0691 +0 0.1127 +0 0.0661 +0 0.1386 +0 0.0865 +0 0.1421 +0 0.0473 +0 0.1904 +0 0.0792 +0 0.1327 +0 0.2237 +0 0.4353 +0 0.5260 +0 0.1517 +0 0.1241 +0 0.0895 +0 0.1876 +0 0.0563 +0 0.5257 +0 0.0855 +0 0.1585 +0 0.0786 +0 0.1361 +0 0.0880 +0 0.0545 +0 0.0808 +0 0.0566 +0 0.3689 +0 0.1198 +1 0.8014 +0 0.0553 +0 0.1765 +0 0.0609 +0 0.1845 +0 0.1211 +0 0.0650 +0 0.1247 +0 0.0725 +0 0.0576 +0 0.1275 +0 0.0809 +0 0.0672 +0 0.2101 +0 0.0608 +0 0.1931 +0 0.4064 +1 0.8085 +0 0.0983 +0 0.0853 +0 0.1496 +0 0.1415 +0 0.3176 +0 0.1088 +0 0.0403 +0 0.1240 +0 0.1011 +0 0.0364 +0 0.0786 +0 0.0652 +0 0.0809 +0 0.1841 +0 0.1011 +0 0.4790 +0 0.0770 +0 0.0975 +0 0.1029 +0 0.0949 +0 0.0812 +0 0.0886 +0 0.0329 +0 0.1307 +0 0.3779 +0 0.0728 +0 0.2869 +0 0.0836 +0 0.0676 +0 0.2949 +0 0.1940 +0 0.1326 +0 0.0963 +0 0.0892 +0 0.1440 +0 0.0494 +0 0.3091 +0 0.0530 +0 0.1227 +0 0.1153 +0 0.6738 +0 0.1958 +0 0.1527 +0 0.0634 +0 0.2183 +0 0.0978 +0 0.1878 +0 0.0446 +0 0.0569 +1 0.7975 +0 0.1840 +0 0.0803 +0 0.1463 +0 0.0704 +0 0.1971 +0 0.1101 +0 0.4174 +0 0.2066 +0 0.0614 +0 0.1622 +0 0.1578 +0 0.1177 +0 0.0707 +0 0.0877 +0 0.0613 +0 0.1443 +0 0.0446 +0 0.1530 +0 0.0994 +0 0.3673 +0 0.0664 +0 0.1088 +0 0.0884 +0 0.0807 +0 0.0828 +0 0.2880 +0 0.1130 +0 0.4191 +0 0.0942 +0 0.4888 +0 0.1376 +0 0.1071 +0 0.0598 +0 0.1174 +0 0.1943 +1 0.8125 +0 0.1582 +0 0.2805 +0 0.1594 +0 0.0354 +0 0.1254 +0 0.0708 +1 0.8197 +0 0.2431 +0 0.1562 +0 0.2166 +0 0.2142 +0 0.0955 +0 0.2612 +0 0.1165 +0 0.0839 +0 0.0489 +0 0.1121 +0 0.0825 +0 0.1289 +0 0.0663 +0 0.0690 +0 0.0695 +0 0.1745 +0 0.1052 +0 0.2428 +0 0.0698 +0 0.1228 +0 0.1194 +0 0.1161 +0 0.0742 +0 0.2776 +0 0.1351 +0 0.4759 +0 0.3161 +0 0.2284 +0 0.0502 +0 0.0596 +0 0.0810 +0 0.0775 +0 0.0739 +0 0.0395 +0 0.1104 +0 0.0982 +0 0.2282 +0 0.1469 +0 0.0752 +0 0.0779 +0 0.1837 +1 0.7827 +0 0.0470 +0 0.1928 +0 0.6845 +0 0.0766 +0 0.0876 +0 0.0406 +0 0.0804 +0 0.0716 +0 0.0660 +0 0.0649 +0 0.0842 +0 0.2157 +0 0.0714 +0 0.0692 +0 0.1722 +0 0.1426 +0 0.1080 +0 0.1138 +0 0.0995 +0 0.1924 +0 0.0668 +0 0.2298 +0 0.0882 +0 0.0816 +0 0.0396 +0 0.1643 +0 0.0985 +0 0.1045 +0 0.1117 +0 0.1436 +0 0.1978 +0 0.0737 +0 0.2519 +0 0.7295 +0 0.1293 +0 0.1836 +0 0.0963 +0 0.0847 +0 0.0480 +0 0.1082 +0 0.0353 +0 0.2127 +0 0.0869 +0 0.1709 +0 0.0883 +0 0.0323 +0 0.1540 +0 0.0616 +0 0.0896 +0 0.0797 +0 0.0632 +0 0.1266 +0 0.0627 +0 0.4753 +1 0.7667 +0 0.1284 +0 0.0721 +0 0.0925 +0 0.0524 +0 0.0775 +0 0.2290 +0 0.0544 +0 0.1334 +0 0.0643 +0 0.0838 +0 0.0890 +0 0.0551 +0 0.1022 +0 0.1086 +0 0.1037 +0 0.0629 +0 0.1147 +0 0.1358 +0 0.1286 +0 0.0895 +0 0.0498 +0 0.0762 +0 0.2335 +0 0.0878 +0 0.1437 +0 0.0590 +0 0.0804 +0 0.1007 +0 0.1252 +0 0.0877 +0 0.1281 +0 0.2173 +1 0.7621 +0 0.1603 +0 0.0702 +0 0.0514 +0 0.1470 +0 0.1948 +0 0.0948 +0 0.1165 +0 0.1459 +0 0.0788 +0 0.1109 +0 0.1251 +0 0.2339 +0 0.0750 +0 0.1420 +0 0.0804 +0 0.0978 +0 0.0561 +0 0.0536 +0 0.0869 +0 0.2445 +0 0.0798 +0 0.0605 +0 0.3335 +0 0.0847 +0 0.2686 +0 0.1395 +0 0.1175 +0 0.1242 +0 0.0911 +0 0.1185 +0 0.0671 +0 0.0564 +0 0.1298 +0 0.0977 +0 0.1344 +0 0.0323 +0 0.0960 +0 0.0860 +0 0.0871 +0 0.1487 +0 0.2043 +0 0.0761 +0 0.0540 +0 0.0604 +0 0.0429 +0 0.2935 +0 0.1101 +0 0.1190 +0 0.1219 +0 0.0561 +0 0.0611 +0 0.5482 +0 0.1909 +0 0.0736 +0 0.1511 +0 0.1063 +0 0.1533 +0 0.1091 +0 0.1729 +0 0.5307 +0 0.1543 +0 0.1306 +0 0.6588 +0 0.1025 +0 0.0863 +0 0.7301 +0 0.1843 +0 0.0742 +0 0.1852 +0 0.2747 +0 0.1043 +0 0.2830 +0 0.0840 +0 0.1625 +0 0.0645 +1 0.8559 +0 0.0971 +0 0.0891 +0 0.1016 +0 0.0827 +0 0.1918 +0 0.1394 +0 0.1171 +0 0.1115 +0 0.3263 +0 0.0339 +0 0.2852 +0 0.1160 +0 0.2585 +0 0.0670 +0 0.2400 +0 0.1902 +0 0.1428 +0 0.1494 +0 0.1011 +0 0.1821 +0 0.0972 +0 0.0725 +0 0.0566 +0 0.0986 +0 0.0713 +0 0.0991 +0 0.1366 +0 0.1084 +0 0.0752 +0 0.1470 +0 0.0981 +0 0.0510 +0 0.7250 +1 0.8753 +0 0.3133 +0 0.1020 +0 0.1856 +0 0.1400 +0 0.1993 +0 0.1224 +0 0.0666 +0 0.1244 +1 0.2572 +0 0.0548 +1 0.7988 +0 0.3332 +0 0.0667 +0 0.1739 +0 0.1503 +0 0.0526 +0 0.0805 +0 0.1188 +0 0.0788 +0 0.1338 +0 0.1159 +0 0.1513 +0 0.0499 +0 0.0948 +0 0.0650 +0 0.0973 +0 0.1217 +0 0.6344 +0 0.2809 +0 0.0416 +0 0.1879 +0 0.0358 +0 0.2157 +0 0.0853 +0 0.1557 +0 0.0625 +0 0.1329 +0 0.1014 +0 0.0806 +0 0.1439 +0 0.0999 +0 0.1159 +0 0.0351 +0 0.1528 +0 0.6573 +0 0.1349 +0 0.1094 +0 0.0956 +0 0.0898 +0 0.2139 +0 0.0770 +0 0.1702 +0 0.0445 +0 0.0987 +0 0.0654 +0 0.3002 +0 0.0583 +0 0.0884 +0 0.2244 +0 0.0851 +0 0.1283 +0 0.0460 +0 0.0905 +0 0.0426 +0 0.1046 +0 0.0789 +0 0.1008 +0 0.2294 +0 0.1378 +0 0.1129 +0 0.0783 +0 0.1975 +0 0.0961 +0 0.3671 +0 0.0473 +0 0.1541 +0 0.2134 +0 0.1685 +0 0.0370 +0 0.1161 +0 0.0649 +0 0.0886 +0 0.1908 +0 0.1283 +0 0.1069 +0 0.0823 +0 0.0325 +0 0.2311 +0 0.0919 +0 0.0883 +0 0.0760 +0 0.1039 +0 0.0825 +0 0.1775 +0 0.1707 +0 0.0947 +0 0.0600 +0 0.0510 +0 0.0817 +0 0.1766 +0 0.0530 +0 0.0641 +0 0.1308 +0 0.1081 +0 0.0502 +0 0.1035 +0 0.1031 +0 0.0587 +0 0.0815 +0 0.0958 +0 0.0507 +0 0.0636 +0 0.0943 +0 0.0502 +0 0.3208 +0 0.0556 +0 0.0540 +0 0.1186 +0 0.1764 +0 0.1582 +0 0.0721 +0 0.1458 +0 0.0913 +0 0.2358 +0 0.1802 +0 0.0766 +0 0.1696 +0 0.2034 +0 0.0422 +0 0.1756 +0 0.3646 +0 0.0699 +0 0.2913 +0 0.1010 +0 0.1377 +0 0.0831 +0 0.4993 +0 0.0855 +0 0.1780 +0 0.0599 +0 0.0547 +0 0.1892 +0 0.1755 +0 0.2517 +0 0.1115 +0 0.1104 +0 0.2121 +0 0.0857 +0 0.3373 +0 0.0841 +0 0.0371 +0 0.2759 +0 0.0796 +0 0.3836 +0 0.0502 +0 0.1003 +0 0.1803 +0 0.3989 +0 0.2623 +0 0.0688 +0 0.0640 +0 0.0854 +0 0.1941 +0 0.1149 +0 0.2657 +0 0.0613 +0 0.0754 +0 0.5366 +0 0.0831 +0 0.1029 +0 0.0573 +0 0.0922 +0 0.0606 +0 0.1213 +0 0.0808 +0 0.1471 +1 0.8813 +0 0.0477 +0 0.1102 +0 0.0554 +0 0.1506 +0 0.0548 +0 0.0765 +0 0.0778 +0 0.0545 +0 0.1801 +0 0.1121 +0 0.0729 +0 0.0669 +0 0.1175 +0 0.1170 +0 0.1698 +0 0.1694 +0 0.0482 +0 0.1005 +0 0.1565 +0 0.0652 +0 0.1221 +0 0.0736 +0 0.4910 +0 0.0907 +0 0.1249 +0 0.1869 +0 0.0497 +0 0.0804 +0 0.2139 +0 0.0522 +1 0.7956 +0 0.2142 +0 0.0618 +0 0.0925 +0 0.1115 +0 0.1368 +0 0.0984 +0 0.0578 +0 0.1042 +0 0.0540 +0 0.0562 +0 0.0587 +0 0.0907 +0 0.1152 +0 0.0615 +0 0.1499 +0 0.4382 +0 0.0633 +0 0.0916 +0 0.0971 +0 0.0614 +0 0.1940 +0 0.0750 +0 0.1817 +0 0.1413 +0 0.0533 +0 0.0651 +0 0.6308 +0 0.1240 +0 0.2224 +0 0.1031 +0 0.1586 +0 0.2807 +0 0.2984 +0 0.4286 +0 0.0655 +0 0.2384 +0 0.0678 +0 0.0334 +0 0.1013 +0 0.1096 +0 0.0929 +0 0.0840 +0 0.1303 +0 0.1619 +0 0.1719 +0 0.0684 +0 0.0845 +0 0.0916 +0 0.1645 +0 0.1399 +0 0.1103 +0 0.0526 +0 0.0870 +0 0.0583 +0 0.0841 +0 0.0424 +0 0.2326 +0 0.0881 +0 0.2136 +0 0.0892 +0 0.1267 +0 0.2546 +0 0.0502 +0 0.0593 +0 0.1308 +0 0.0853 +0 0.2434 +0 0.0905 +0 0.0443 +0 0.0534 +0 0.2810 +0 0.1396 +0 0.2620 +0 0.1468 +0 0.2495 +0 0.1073 +0 0.0769 +0 0.1526 +0 0.0864 +0 0.0783 +0 0.0964 +0 0.1257 +0 0.0884 +0 0.0395 +0 0.1453 +0 0.0694 +0 0.0492 +0 0.2668 +0 0.0523 +0 0.0739 +0 0.0537 +0 0.1496 +0 0.1861 +0 0.0448 +0 0.2415 +0 0.1472 +0 0.0701 +0 0.1850 +0 0.0540 +0 0.0670 +0 0.1107 +0 0.1366 +0 0.3574 +0 0.1080 +0 0.1420 +0 0.2328 +0 0.2601 +0 0.1779 +0 0.0740 +0 0.3627 +0 0.0387 +0 0.1233 +0 0.1663 +0 0.0890 +0 0.0488 +0 0.0790 +0 0.1062 +0 0.0494 +0 0.1760 +0 0.1079 +0 0.1278 +0 0.0884 +0 0.5453 +0 0.0527 +0 0.1962 +0 0.1367 +0 0.0589 +0 0.0868 +0 0.2297 +0 0.0786 +0 0.0821 +0 0.1089 +0 0.0757 +0 0.0777 +0 0.0936 +0 0.0783 +0 0.2030 +0 0.1651 +0 0.0332 +0 0.0755 +0 0.1545 +0 0.0886 +0 0.0551 +0 0.2763 +0 0.0884 +0 0.0662 +0 0.1250 +0 0.1151 +0 0.0934 +0 0.1422 +0 0.1910 +0 0.3727 +0 0.1167 +0 0.0936 +0 0.0763 +0 0.5040 +0 0.0424 +0 0.0757 +0 0.1393 +0 0.0833 +0 0.0849 +0 0.0553 +0 0.1672 +0 0.0760 +0 0.1179 +0 0.0688 +0 0.0739 +0 0.1562 +0 0.0744 +0 0.0946 +0 0.0727 +0 0.5273 +0 0.1532 +0 0.0389 +0 0.0751 +0 0.0555 +0 0.0333 +0 0.0603 +0 0.0769 +0 0.0358 +0 0.1281 +0 0.1255 +0 0.0500 +0 0.3537 +0 0.2159 +0 0.0425 +0 0.0443 +0 0.0728 +0 0.0947 +0 0.0863 +0 0.0988 +0 0.2947 +0 0.1635 +0 0.0868 +0 0.1851 +0 0.0746 +0 0.0983 +0 0.0528 +0 0.7145 +0 0.0725 +0 0.3372 +0 0.0462 +0 0.2922 +0 0.0505 +0 0.0976 +0 0.0641 +0 0.1725 +0 0.1478 +0 0.0790 +0 0.1214 +0 0.1365 +0 0.0965 +0 0.1238 +0 0.0912 +0 0.2010 +0 0.0747 +0 0.1500 +0 0.0456 +0 0.2692 +0 0.0480 +0 0.2231 +0 0.1037 +0 0.0520 +0 0.0969 +0 0.1821 +0 0.2712 +0 0.2299 +0 0.0368 +0 0.0812 +0 0.2231 +0 0.0647 +0 0.0985 +0 0.0594 +0 0.3004 +0 0.0812 +0 0.3529 +0 0.1346 +0 0.0854 +0 0.1676 +0 0.0681 +0 0.0601 +0 0.1921 +0 0.1333 +0 0.2178 +0 0.1059 +0 0.2525 +0 0.0639 +0 0.0607 +0 0.0406 +0 0.0627 +0 0.4265 +0 0.0750 +0 0.1586 +0 0.0735 +0 0.1399 +0 0.0748 +0 0.0943 +0 0.0704 +0 0.0720 +0 0.0762 +0 0.0708 +0 0.1879 +0 0.0338 +0 0.1442 +0 0.5602 +0 0.0492 +0 0.3004 +0 0.0481 +0 0.1263 +0 0.0474 +0 0.1198 +0 0.0404 +0 0.1106 +0 0.6281 +0 0.7325 +0 0.0823 +0 0.1973 +0 0.1104 +0 0.0620 +0 0.1404 +0 0.1907 +0 0.0933 +0 0.0323 +0 0.1446 +0 0.1904 +0 0.0863 +0 0.1130 +0 0.1262 +0 0.6395 +0 0.1512 +0 0.0645 +0 0.2304 +0 0.1037 +0 0.1515 +0 0.1772 +0 0.1128 +0 0.0725 +0 0.1568 +0 0.1830 +0 0.1010 +0 0.1450 +0 0.0792 +0 0.5622 +0 0.0585 +0 0.0467 +0 0.0706 +1 0.8637 +0 0.0770 +0 0.1317 +0 0.0727 +0 0.0616 +0 0.2118 +0 0.0746 +0 0.0611 +0 0.0889 +0 0.0730 +0 0.2837 +0 0.0569 +0 0.3547 +0 0.0862 +0 0.2559 +0 0.3643 +0 0.0927 +0 0.0816 +0 0.1409 +0 0.1127 +0 0.0645 +0 0.1157 +0 0.2287 +0 0.1012 +0 0.0595 +0 0.0767 +0 0.1544 +0 0.0801 +0 0.0549 +0 0.1754 +0 0.0606 +0 0.2128 +0 0.4071 +0 0.4915 +0 0.2579 +0 0.0895 +0 0.0421 +0 0.3767 +0 0.0782 +0 0.0559 +0 0.0645 +0 0.0814 +0 0.0617 +0 0.0834 +0 0.0479 +0 0.2356 +0 0.2509 +0 0.2129 +0 0.0939 +0 0.0649 +0 0.1532 +0 0.1821 +0 0.0414 +0 0.1237 +0 0.1400 +0 0.0866 +0 0.0836 +0 0.1465 +0 0.1218 +0 0.0691 +0 0.0891 +0 0.1965 +0 0.0731 +0 0.1030 +0 0.0727 +0 0.0727 +0 0.2248 +0 0.1243 +0 0.2540 +0 0.0616 +0 0.0687 +0 0.0679 +0 0.2417 +0 0.0372 +0 0.0934 +0 0.0443 +0 0.3286 +0 0.0989 +0 0.0457 +0 0.0534 +0 0.0654 +0 0.2491 +0 0.2068 +0 0.0871 +0 0.1282 +0 0.2391 +0 0.0800 +0 0.0837 +0 0.1536 +0 0.0648 +0 0.1054 +0 0.1265 +0 0.3635 +0 0.0778 +0 0.0628 +0 0.1241 +0 0.2666 +0 0.2639 +0 0.1944 +0 0.2149 +1 0.8537 +0 0.1411 +0 0.1349 +0 0.0692 +0 0.0699 +0 0.1174 +0 0.2762 +0 0.2457 +0 0.2436 +0 0.0844 +0 0.0621 +0 0.0429 +0 0.1960 +0 0.1005 +0 0.0812 +0 0.0396 +0 0.1093 +0 0.1713 +0 0.2031 +0 0.0863 +0 0.2689 +0 0.0801 +0 0.1252 +0 0.1940 +0 0.1160 +0 0.1133 +0 0.1982 +0 0.0829 +0 0.2059 +0 0.0890 +0 0.1700 +0 0.1153 +0 0.0564 +0 0.0659 +0 0.0665 +0 0.1091 +0 0.0580 +0 0.0836 +0 0.0334 +0 0.7368 +0 0.1553 +0 0.1087 +0 0.1356 +0 0.0534 +0 0.1234 +0 0.1202 +0 0.2626 +0 0.1878 +0 0.5835 +0 0.0629 +0 0.1011 +0 0.1360 +0 0.0656 +0 0.0674 +0 0.0963 +0 0.0637 +0 0.1567 +0 0.1147 +0 0.1051 +0 0.2872 +0 0.1700 +0 0.0313 +0 0.2017 +0 0.2956 +0 0.0590 +0 0.1319 +0 0.0815 +0 0.2132 +0 0.1474 +0 0.7426 +0 0.0457 +0 0.7095 +0 0.2477 +0 0.0676 +0 0.0945 +0 0.1449 +0 0.2068 +0 0.1550 +0 0.0953 +0 0.1514 +0 0.0754 +0 0.0593 +0 0.1256 +0 0.7271 +0 0.1293 +0 0.0825 +0 0.2138 +0 0.1130 +0 0.0919 +0 0.0755 +0 0.1411 +0 0.1647 +0 0.4066 +0 0.0746 +0 0.1364 +0 0.1579 +0 0.0477 +0 0.0560 +0 0.0947 +0 0.4536 +0 0.0934 +0 0.0711 +0 0.0550 +0 0.0554 +0 0.0404 +0 0.3262 +1 0.7768 +0 0.1026 +0 0.1436 +0 0.2757 +0 0.1337 +0 0.0454 +0 0.0659 +0 0.0745 +0 0.1723 +0 0.0640 +0 0.0905 +0 0.1293 +0 0.1519 +0 0.1470 +0 0.0917 +0 0.0858 +0 0.1301 +0 0.0709 +0 0.2622 +0 0.0778 +0 0.0788 +0 0.0567 +0 0.1001 +0 0.2157 +0 0.1501 +0 0.0895 +0 0.1044 +0 0.0691 +0 0.1047 +0 0.2769 +0 0.4088 +0 0.0824 +0 0.0842 +0 0.3795 +0 0.2699 +0 0.0551 +0 0.2391 +0 0.4856 +0 0.0914 +0 0.0603 +0 0.1381 +0 0.5593 +0 0.4270 +0 0.0841 +0 0.5689 +0 0.1441 +0 0.1699 +0 0.1014 +0 0.0661 +0 0.0331 +0 0.2464 +0 0.0695 +0 0.3107 +0 0.1578 +0 0.0670 +0 0.0491 +0 0.2641 +1 0.8466 +0 0.0335 +0 0.1092 +0 0.1709 +0 0.2009 +0 0.0367 +0 0.0405 +0 0.1683 +0 0.1077 +1 0.7899 +0 0.1601 +0 0.1078 +0 0.0843 +0 0.6010 +0 0.1950 +0 0.0442 +0 0.0768 +0 0.0989 +0 0.0753 +0 0.1833 +0 0.1603 +0 0.0584 +0 0.0820 +0 0.0883 +0 0.0920 +0 0.6720 +0 0.3275 +0 0.0756 +0 0.0791 +0 0.0791 +0 0.1350 +0 0.1244 +0 0.2504 +0 0.0712 +0 0.0972 +0 0.2031 +0 0.2003 +0 0.0503 +0 0.1412 +0 0.1423 +1 0.8402 +0 0.1057 +0 0.0716 +0 0.2107 +0 0.1539 +0 0.3826 +0 0.1362 +0 0.0467 +0 0.0721 +0 0.1402 +0 0.3242 +0 0.1115 +0 0.3163 +0 0.0805 +0 0.1414 +0 0.1807 +0 0.1493 +1 0.8199 +0 0.0792 +0 0.1061 +0 0.1661 +0 0.0761 +0 0.0668 +0 0.0660 +0 0.1977 +0 0.3194 +0 0.1444 +0 0.0997 +0 0.1184 +0 0.1112 +0 0.1248 +0 0.0798 +0 0.0324 +1 0.8176 +0 0.1120 +0 0.7438 +0 0.1256 +0 0.1424 +0 0.1782 +0 0.2645 +0 0.0503 +0 0.1905 +0 0.0361 +0 0.0807 +0 0.1619 +0 0.0932 +0 0.0750 +0 0.3022 +0 0.0831 +0 0.0949 +0 0.2909 +0 0.0483 +0 0.3401 +0 0.0836 +0 0.1515 +0 0.1503 +0 0.0699 +0 0.1979 +0 0.1755 +0 0.0509 +0 0.1262 +0 0.1861 +0 0.2052 +0 0.1781 +0 0.4146 +0 0.1980 +0 0.2130 +0 0.1062 +0 0.2568 +0 0.1098 +0 0.1215 +0 0.1641 +0 0.4501 +0 0.0537 +0 0.1636 +0 0.2425 +0 0.0590 +0 0.0819 +0 0.1987 +0 0.0754 +0 0.1374 +0 0.1064 +0 0.1755 +0 0.0567 +0 0.0610 +0 0.1622 +0 0.1327 +0 0.2338 +0 0.0305 +0 0.0468 +0 0.2370 +0 0.0937 +0 0.0652 +0 0.0309 +1 0.8588 +0 0.1362 +0 0.3138 +0 0.2207 +0 0.0832 +0 0.2305 +0 0.0445 +0 0.4753 +0 0.1174 +0 0.1688 +0 0.1571 +0 0.1253 +0 0.1418 +0 0.0905 +0 0.0560 +0 0.1237 +0 0.0594 +0 0.1800 +0 0.5522 +0 0.0773 +0 0.0790 +0 0.1332 +0 0.0872 +0 0.1333 +0 0.5154 +0 0.0855 +0 0.2458 +0 0.1528 +0 0.1240 +0 0.1258 +0 0.0578 +0 0.1929 +0 0.1923 +0 0.1963 +0 0.1175 +0 0.1114 +0 0.1116 +0 0.2781 +0 0.0713 +0 0.3722 +0 0.1209 +0 0.0992 +0 0.1344 +0 0.0589 +0 0.1469 +0 0.0464 +0 0.2585 +0 0.0906 +0 0.0524 +0 0.0694 +0 0.0672 +0 0.0977 +0 0.1574 +0 0.1520 +0 0.0463 +0 0.0688 +0 0.0828 +0 0.0687 +0 0.0549 +0 0.0966 +0 0.0825 +0 0.0694 +0 0.0500 +0 0.5108 +0 0.1359 +0 0.1618 +0 0.0880 +0 0.1662 +0 0.0353 +0 0.0815 +0 0.0756 +0 0.0674 +0 0.1600 +0 0.1702 +0 0.1156 +0 0.0548 +0 0.5343 +0 0.0789 +0 0.4845 +0 0.4261 +0 0.1189 +0 0.0951 +0 0.1154 +0 0.1622 +0 0.3316 +0 0.7034 +0 0.2123 +0 0.1136 +0 0.0544 +0 0.1475 +0 0.0948 +0 0.1026 +0 0.1378 +0 0.1123 +0 0.1443 +0 0.0727 +0 0.0712 +0 0.0966 +0 0.2326 +0 0.1371 +0 0.1531 +0 0.1362 +0 0.0684 +0 0.0488 +0 0.0802 +0 0.1318 +1 0.8787 +0 0.0812 +0 0.2014 +0 0.3304 +0 0.0823 +0 0.2219 +0 0.0756 +0 0.1759 +0 0.1432 +0 0.0360 +0 0.1077 +0 0.0569 +0 0.6031 +0 0.5742 +0 0.2244 +0 0.0617 +0 0.0403 +0 0.0750 +0 0.1541 +0 0.0786 +1 0.7905 +0 0.0408 +0 0.1004 +0 0.1089 +0 0.0496 +0 0.1036 +0 0.1682 +0 0.3648 +0 0.1016 +0 0.0468 +0 0.1090 +0 0.0409 +0 0.0575 +0 0.0983 +0 0.0890 +0 0.2108 +0 0.0989 +0 0.1210 +1 0.7965 +0 0.1252 +0 0.1187 +0 0.0839 +0 0.1202 +1 0.8916 +0 0.2336 +0 0.0481 +0 0.0778 +0 0.1879 +0 0.2065 +0 0.1330 +0 0.0376 +0 0.0634 +0 0.1442 +0 0.0844 +0 0.0750 +0 0.0385 +0 0.3380 +0 0.0886 +0 0.1179 +0 0.0755 +0 0.1580 +0 0.2966 +0 0.0728 +0 0.0484 +0 0.4191 +0 0.0547 +0 0.0653 +0 0.1066 +0 0.0923 +0 0.1702 +0 0.0744 +0 0.1088 +0 0.1053 +0 0.0748 +0 0.2416 +0 0.1500 +0 0.0738 +0 0.0643 +0 0.0745 +0 0.2003 +0 0.0889 +0 0.0883 +0 0.0473 +1 0.8515 +0 0.1828 +0 0.1976 +0 0.1625 +0 0.1940 +0 0.0827 +0 0.1516 +0 0.0852 +0 0.1004 +0 0.1008 +0 0.1610 +0 0.4882 +0 0.1273 +0 0.0594 +0 0.0795 +0 0.0628 +0 0.0866 +0 0.0572 +0 0.1121 +0 0.0911 +0 0.0660 +0 0.2250 +0 0.1016 +0 0.0808 +0 0.1219 +0 0.3151 +0 0.0893 +0 0.0731 +0 0.0443 +0 0.0795 +0 0.0433 +0 0.3413 +0 0.1363 +0 0.0742 +0 0.1813 +0 0.1262 +0 0.2149 +0 0.2779 +0 0.0720 +0 0.1421 +0 0.1118 +0 0.2366 +0 0.7106 +0 0.1457 +0 0.2222 +0 0.1234 +0 0.0660 +0 0.0995 +0 0.1139 +0 0.0507 +0 0.0503 +0 0.0641 +0 0.1213 +0 0.0666 +0 0.1622 +0 0.0862 +0 0.2010 +0 0.6579 +0 0.0614 +0 0.0519 +0 0.0906 +1 0.8486 +0 0.1872 +1 0.3391 +0 0.1737 +0 0.0765 +0 0.0740 +0 0.2644 +0 0.2570 +0 0.4122 +0 0.2172 +0 0.2050 +0 0.0998 +0 0.2064 +0 0.2271 +0 0.1495 +0 0.1009 +0 0.2834 +0 0.0724 +0 0.1140 +0 0.0801 +0 0.2467 +0 0.1239 +0 0.1074 +0 0.1037 +0 0.0808 +0 0.0713 +0 0.1778 +0 0.2653 +0 0.4479 +0 0.2435 +0 0.1004 +0 0.3784 +0 0.2352 +0 0.0620 +0 0.0841 +0 0.0810 +0 0.1205 +0 0.1948 +0 0.1530 +0 0.1545 +0 0.2120 +0 0.1027 +1 0.7911 +0 0.0858 +0 0.1609 +0 0.0543 +0 0.1192 +0 0.3636 +0 0.0825 +0 0.0703 +0 0.1184 +0 0.1251 +0 0.4541 +0 0.0869 +0 0.0751 +0 0.0915 +0 0.1576 +0 0.3002 +0 0.0515 +0 0.4004 +0 0.2633 +0 0.1002 +0 0.1261 +0 0.0697 +0 0.1356 +0 0.0808 +0 0.1314 +0 0.0739 +0 0.2012 +0 0.1177 +0 0.1230 +0 0.1320 +0 0.1197 +0 0.1027 +0 0.1269 +0 0.0714 +0 0.1155 +0 0.1390 +0 0.1220 +0 0.1247 +0 0.0529 +0 0.1155 +0 0.0571 +0 0.1134 +0 0.1466 +0 0.0986 +0 0.0276 +0 0.1407 +0 0.0516 +0 0.0709 +0 0.0409 +0 0.0735 +0 0.0564 +0 0.1224 +0 0.0679 +0 0.1200 +0 0.0474 +0 0.2684 +0 0.0724 +0 0.2294 +0 0.0497 +0 0.0791 +0 0.0537 +0 0.1169 +0 0.0466 +0 0.1864 +0 0.0657 +0 0.1127 +0 0.2302 +0 0.0730 +0 0.1068 +0 0.1404 +0 0.1312 +0 0.2063 +0 0.0777 +0 0.0478 +0 0.1933 +0 0.2207 +0 0.0850 +0 0.2805 +0 0.0571 +0 0.1082 +0 0.0515 +0 0.0999 +0 0.0729 +0 0.1218 +0 0.2158 +0 0.0942 +0 0.0945 +0 0.1339 +0 0.1293 +0 0.1622 +0 0.2676 +0 0.3031 +0 0.5140 +0 0.1161 +1 0.7625 +0 0.3797 +0 0.1311 +0 0.2343 +0 0.2864 +0 0.1515 +0 0.0903 +0 0.1021 +0 0.2082 +0 0.2372 +0 0.1078 +0 0.0994 +0 0.0473 +0 0.1181 +0 0.0449 +0 0.0643 +0 0.0596 +0 0.0758 +0 0.1347 +0 0.1368 +0 0.1000 +0 0.0703 +0 0.0998 +0 0.0788 +0 0.0903 +0 0.1694 +0 0.1518 +0 0.1395 +0 0.1343 +0 0.0455 +0 0.1338 +0 0.2742 +0 0.6891 +0 0.2071 +0 0.4994 +0 0.0833 +0 0.0824 +0 0.0861 +0 0.0770 +0 0.0685 +0 0.1189 +0 0.2339 +0 0.0471 +0 0.1293 +0 0.0886 +0 0.1422 +0 0.1270 +0 0.1157 +0 0.3385 +0 0.0629 +0 0.1557 +0 0.0690 +0 0.0293 +1 0.8160 +0 0.1276 +0 0.0832 +0 0.2142 +0 0.2009 +0 0.0452 +0 0.1982 +0 0.0744 +0 0.1732 +0 0.0824 +0 0.1668 +0 0.0582 +0 0.6419 +0 0.0794 +0 0.0669 +0 0.1250 +0 0.2422 +0 0.1185 +0 0.0594 +0 0.0685 +0 0.1418 +0 0.0664 +0 0.1323 +0 0.1381 +0 0.1304 +0 0.0992 +0 0.1175 +0 0.3246 +0 0.1034 +0 0.1139 +0 0.1176 +0 0.1662 +0 0.1322 +0 0.0494 +0 0.0836 +0 0.1025 +0 0.3143 +0 0.0568 +0 0.0506 +0 0.0681 +0 0.0437 +0 0.0545 +0 0.3538 +0 0.0841 +1 0.7559 +0 0.1439 +0 0.1277 +0 0.0955 +0 0.2824 +0 0.0759 +0 0.0665 +0 0.2165 +0 0.1475 +0 0.0996 +0 0.0401 +0 0.1836 +0 0.0561 +0 0.4890 +0 0.1649 +0 0.0529 +0 0.1000 +0 0.0634 +0 0.0373 +0 0.0654 +0 0.2661 +0 0.0814 +0 0.4027 +0 0.0349 +0 0.1856 +0 0.1777 +0 0.2469 +0 0.0564 +0 0.1947 +0 0.1106 +0 0.1541 +0 0.1467 +0 0.1250 +0 0.2989 +0 0.1161 +0 0.0526 +0 0.1527 +0 0.3929 +0 0.1037 +0 0.0838 +0 0.0465 +0 0.0457 +0 0.0888 +0 0.1315 +0 0.1381 +0 0.0603 +0 0.0989 +0 0.1676 +0 0.1491 +0 0.1601 +0 0.0490 +0 0.0649 +0 0.0985 +0 0.0715 +0 0.0342 +0 0.4105 +0 0.2054 +0 0.0854 +0 0.0817 +0 0.1092 +0 0.0794 +0 0.0879 +0 0.0770 +0 0.4571 +0 0.0471 +0 0.0540 +0 0.0475 +0 0.0371 +0 0.5652 +0 0.1110 +0 0.1300 +0 0.1764 +0 0.0612 +0 0.1460 +0 0.0888 +0 0.5856 +0 0.0812 +0 0.0709 +0 0.1444 +0 0.2147 +0 0.0537 +0 0.0616 +0 0.4665 +0 0.1418 +0 0.0853 +0 0.1841 +0 0.1010 +0 0.1380 +0 0.2509 +0 0.0882 +0 0.1060 +0 0.1803 +0 0.2303 +1 0.8515 +0 0.1487 +0 0.3854 +0 0.0571 +0 0.1138 +0 0.0591 +0 0.0981 +0 0.0936 +0 0.1097 +0 0.1096 +0 0.0828 +0 0.0653 +0 0.0845 +0 0.0625 +0 0.0800 +0 0.1279 +0 0.1613 +0 0.2180 +0 0.1662 +0 0.1459 +0 0.3475 +0 0.0666 +0 0.0490 +0 0.0871 +0 0.0743 +0 0.0436 +0 0.0628 +0 0.1036 +0 0.0276 +0 0.0793 +0 0.1565 +0 0.0314 +0 0.1024 +0 0.1164 +0 0.1693 +0 0.0983 +0 0.0928 +0 0.4489 +0 0.0574 +0 0.3875 +0 0.1967 +0 0.0609 +0 0.1310 +0 0.2416 +0 0.0732 +0 0.1407 +0 0.4333 +0 0.0703 +0 0.2025 +0 0.0807 +0 0.1310 +0 0.0954 +0 0.1986 +0 0.2104 +0 0.0655 +0 0.3810 +0 0.0823 +1 0.8577 +0 0.5641 +0 0.1313 +0 0.0664 +0 0.1759 +0 0.2731 +0 0.1574 +0 0.0687 +0 0.0642 +0 0.0658 +0 0.1725 +0 0.0903 +0 0.0697 +0 0.1353 +0 0.0754 +0 0.2813 +0 0.1567 +0 0.1197 +0 0.0649 +0 0.0544 +0 0.1080 +0 0.5047 +0 0.1280 +0 0.0544 +0 0.0780 +0 0.0741 +0 0.0345 +0 0.1897 +0 0.3500 +0 0.2736 +0 0.0651 +0 0.2248 +0 0.0784 +0 0.0673 +0 0.1982 +0 0.2514 +0 0.1212 +0 0.0458 +0 0.0668 +0 0.0902 +0 0.1545 +0 0.3900 +0 0.0858 +0 0.2188 +0 0.1397 +0 0.5324 +0 0.0469 +0 0.2073 +0 0.1074 +0 0.0535 +0 0.0658 +0 0.1071 +0 0.6960 +0 0.1466 +0 0.0968 +0 0.0689 +0 0.0817 +0 0.2666 +0 0.1588 +0 0.4158 +0 0.1248 +0 0.3247 +0 0.2340 +0 0.0909 +0 0.2412 +0 0.7356 +0 0.2771 +0 0.1582 +0 0.0971 +0 0.0976 +0 0.0526 +0 0.0602 +0 0.0960 +0 0.1571 +0 0.1638 +0 0.3702 +0 0.0998 +0 0.1067 +0 0.0874 +0 0.2743 +0 0.1371 +0 0.0642 +0 0.0619 +0 0.0621 +0 0.1255 +0 0.1321 +0 0.6838 +0 0.0854 +1 0.7764 +0 0.1476 +0 0.1058 +0 0.0798 +0 0.1412 +0 0.0988 +0 0.2180 +0 0.0887 +0 0.0951 +0 0.0616 +0 0.1130 +0 0.0907 +0 0.1555 +0 0.0806 +0 0.0593 +0 0.4318 +0 0.1590 +0 0.1450 +0 0.4754 +0 0.0601 +0 0.1081 +0 0.0599 +0 0.5316 +0 0.1501 +0 0.1136 +0 0.1443 +0 0.0887 +0 0.1510 +0 0.3961 +0 0.1025 +0 0.0873 +0 0.6666 +0 0.0578 +0 0.0647 +0 0.0955 +0 0.3450 +0 0.2661 +0 0.1058 +0 0.0337 +0 0.0769 +0 0.2603 +0 0.1425 +0 0.6441 +0 0.0807 +0 0.1119 +0 0.6057 +0 0.0606 +0 0.0778 +0 0.0865 +0 0.0768 +0 0.1225 +0 0.0735 +0 0.0608 +0 0.0866 +0 0.0960 +0 0.0831 +0 0.0876 +0 0.0493 +0 0.1022 +0 0.0889 +0 0.0829 +0 0.0967 +0 0.0422 +0 0.0668 +0 0.0784 +0 0.1569 +0 0.2217 +0 0.0659 +1 0.8400 +0 0.1482 +0 0.1164 +0 0.1069 +0 0.1549 +0 0.0649 +0 0.1784 +0 0.2024 +0 0.0713 +0 0.2545 +0 0.0365 +0 0.0607 +0 0.0428 +0 0.1374 +0 0.1004 +0 0.2210 +0 0.1869 +0 0.0697 +0 0.0801 +0 0.1822 +0 0.0765 +0 0.1327 +0 0.0832 +0 0.0700 +0 0.0851 +0 0.1620 +0 0.1741 +0 0.0662 +0 0.1342 +0 0.2290 +0 0.0482 +1 0.8229 +0 0.2336 +0 0.0909 +0 0.0631 +0 0.0715 +0 0.0541 +0 0.2259 +0 0.0480 +0 0.0692 +0 0.1509 +0 0.1125 +0 0.0700 +0 0.1441 +0 0.0984 +0 0.0827 +0 0.1121 +0 0.1697 +0 0.0731 +0 0.0852 +0 0.1873 +0 0.0948 +0 0.1332 +0 0.1632 +0 0.0778 +0 0.2292 +0 0.0327 +0 0.5919 +0 0.1609 +0 0.1662 +0 0.0782 +0 0.0816 +0 0.2955 +0 0.0605 +0 0.2318 +0 0.2247 +0 0.1488 +0 0.1471 +0 0.1198 +0 0.2032 +0 0.0912 +0 0.0893 +0 0.0900 +0 0.0624 +0 0.0806 +0 0.0762 +0 0.2490 +0 0.2599 +0 0.2107 +0 0.0481 +0 0.0495 +0 0.1237 +0 0.1442 +0 0.0767 +0 0.1065 +0 0.0510 +0 0.1456 +0 0.1937 +0 0.0626 +0 0.2001 +0 0.2187 +0 0.2440 +0 0.0718 +0 0.1027 +0 0.0953 +0 0.1253 +0 0.1738 +0 0.3037 +0 0.0773 +0 0.1945 +0 0.0838 +0 0.1617 +0 0.1374 +0 0.1159 +0 0.1601 +0 0.0741 +0 0.1030 +0 0.1208 +0 0.1473 +0 0.0692 +0 0.0411 +0 0.0878 +0 0.0860 +0 0.0678 +1 0.8528 +0 0.1485 +0 0.0952 +0 0.1217 +0 0.1244 +0 0.4807 +0 0.2742 +0 0.0647 +0 0.0651 +0 0.0872 +0 0.1149 +0 0.1430 +0 0.0790 +0 0.2075 +0 0.0417 +0 0.0769 +0 0.1004 +0 0.2012 +0 0.1404 +0 0.0788 +0 0.1098 +0 0.1073 +0 0.1077 +0 0.0773 +0 0.1525 +0 0.6072 +0 0.1004 +0 0.0658 +0 0.5565 +0 0.0739 +0 0.6070 +0 0.0466 +0 0.1089 +0 0.1220 +0 0.2942 +0 0.1679 +0 0.2596 +0 0.1085 +0 0.2141 +0 0.1229 +0 0.4445 +0 0.1153 +0 0.0820 +0 0.2734 +0 0.0704 +0 0.1610 +0 0.0850 +0 0.1910 +0 0.1058 +0 0.1335 +0 0.6018 +0 0.4264 +0 0.0693 +0 0.2673 +0 0.2906 +0 0.0459 +0 0.1764 +0 0.1174 +0 0.1318 +0 0.1332 +0 0.0617 +0 0.1676 +0 0.0786 +0 0.2439 +0 0.0736 +0 0.2052 +0 0.1842 +1 0.7730 +0 0.0672 +0 0.1335 +0 0.0622 +0 0.0664 +0 0.5414 +0 0.0674 +0 0.0691 +0 0.1005 +0 0.1105 +0 0.0424 +0 0.1581 +0 0.0510 +0 0.4749 +0 0.1789 +0 0.1730 +0 0.0521 +0 0.0815 +0 0.0469 +0 0.1857 +0 0.1545 +0 0.0521 +0 0.1324 +0 0.0454 +0 0.0681 +0 0.0538 +0 0.7093 +0 0.4054 +0 0.0836 +0 0.5263 +0 0.0854 +0 0.0518 +0 0.0671 +0 0.6468 +0 0.2445 +0 0.2063 +0 0.0843 +0 0.1073 +0 0.0989 +0 0.0980 +0 0.0743 +0 0.1118 +0 0.1775 +0 0.1233 +0 0.2908 +1 0.8284 +0 0.1321 +0 0.1053 +0 0.0899 +0 0.1774 +0 0.1716 +0 0.1571 +0 0.0996 +0 0.1331 +0 0.0607 +0 0.0937 +0 0.1367 +0 0.0935 +0 0.1564 +0 0.1208 +0 0.1134 +0 0.3431 +0 0.0692 +0 0.1521 +0 0.0610 +0 0.3772 +0 0.0989 +0 0.4783 +0 0.1201 +0 0.1256 +0 0.5398 +0 0.1624 +0 0.0895 +0 0.0708 +0 0.1268 +0 0.1529 +0 0.1869 +0 0.1271 +0 0.0403 +0 0.1656 +0 0.0440 +0 0.0530 +0 0.0730 +0 0.0604 +0 0.2076 +0 0.1283 +0 0.0758 +0 0.0921 +0 0.1560 +0 0.2857 +0 0.2325 +0 0.1595 +0 0.3037 +0 0.2926 +0 0.1610 +0 0.0761 +0 0.0703 +0 0.1594 +0 0.1478 +0 0.1225 +0 0.0780 +0 0.2062 +0 0.0446 +0 0.0338 +0 0.1343 +0 0.0462 +0 0.2561 +0 0.0943 +0 0.1256 +0 0.1278 +0 0.0607 +0 0.1460 +0 0.0848 +0 0.2200 +0 0.0379 +0 0.1829 +0 0.0583 +0 0.0859 +0 0.1742 +0 0.0695 +0 0.2486 +0 0.1040 +0 0.0542 +0 0.0800 +0 0.0720 +0 0.1687 +0 0.0941 +0 0.0814 +0 0.0779 +0 0.1745 +0 0.1011 +0 0.1455 +0 0.2024 +0 0.1480 +0 0.1444 +0 0.2451 +0 0.0359 +0 0.1118 +0 0.1194 +0 0.1483 +0 0.0699 +0 0.1376 +0 0.0606 +0 0.1646 +0 0.0907 +0 0.1049 +0 0.0862 +0 0.1584 +0 0.3325 +0 0.4399 +0 0.1187 +0 0.0891 +0 0.1227 +0 0.0725 +0 0.1113 +0 0.1110 +0 0.1924 +0 0.2426 +0 0.0845 +0 0.0576 +0 0.1245 +0 0.1957 +0 0.0465 +0 0.0944 +0 0.1497 +0 0.1518 +0 0.0617 +0 0.0976 +0 0.1570 +0 0.1298 +0 0.3764 +0 0.0766 +0 0.1057 +0 0.3580 +0 0.3901 +0 0.2841 +0 0.1581 +0 0.0994 +0 0.1836 +0 0.0468 +0 0.0797 +0 0.0680 +0 0.0960 +0 0.2436 +0 0.1312 +0 0.4054 +0 0.1597 +0 0.1923 +0 0.3948 +0 0.0542 +0 0.1111 +0 0.1020 +0 0.1082 +0 0.0759 +0 0.0512 +0 0.1441 +1 0.8517 +0 0.0807 +0 0.0535 +0 0.0800 +0 0.1619 +0 0.1222 +0 0.2043 +0 0.0452 +0 0.0522 +0 0.3620 +0 0.0706 +0 0.0927 +0 0.1210 +0 0.1318 +0 0.1247 +0 0.1150 +0 0.0822 +0 0.2473 +0 0.1227 +1 0.7968 +0 0.0792 +0 0.2314 +0 0.2200 +1 0.7676 +0 0.2125 +0 0.1893 +0 0.0423 +0 0.1652 +0 0.0371 +0 0.0877 +0 0.2322 +0 0.0622 +0 0.0520 +0 0.0442 +0 0.0414 +0 0.1357 +0 0.0708 +0 0.2105 +0 0.2355 +0 0.0344 +0 0.0632 +0 0.0479 +0 0.0987 +0 0.1909 +0 0.0626 +0 0.1635 +0 0.0972 +0 0.0705 +0 0.1783 +0 0.0431 +0 0.1345 +0 0.1212 +0 0.0798 +0 0.0633 +0 0.1185 +0 0.0812 +1 0.7856 +0 0.0642 +0 0.0812 +0 0.0928 +0 0.0544 +0 0.0896 +0 0.1723 +0 0.1288 +0 0.0721 +0 0.4331 +0 0.5965 +0 0.0596 +0 0.1072 +0 0.0558 +0 0.1573 +0 0.1007 +0 0.1755 +0 0.1446 +0 0.0826 +0 0.0458 +0 0.1080 +0 0.0820 +0 0.0857 +0 0.0544 +0 0.1477 +0 0.0701 +0 0.1806 +0 0.0826 +0 0.3021 +0 0.0671 +0 0.1684 +0 0.1039 +0 0.1566 +0 0.0937 +0 0.0982 +0 0.0519 +0 0.0680 +0 0.0509 +0 0.0397 +0 0.1222 +0 0.2881 +0 0.0746 +0 0.0935 +0 0.0909 +0 0.1190 +0 0.0635 +0 0.7159 +0 0.0497 +0 0.1282 +0 0.1090 +0 0.0529 +0 0.0301 +0 0.0842 +0 0.0878 +0 0.0821 +0 0.0802 +0 0.1407 +0 0.1325 +0 0.1160 +0 0.3597 +0 0.1153 +0 0.1814 +1 0.7997 +0 0.0541 +0 0.1134 +0 0.1056 +0 0.2425 +0 0.1600 +0 0.0295 +0 0.0811 +0 0.1019 +0 0.6801 +0 0.6784 +0 0.1074 +0 0.0421 +0 0.1069 +0 0.0606 +0 0.0836 +0 0.1262 +0 0.3732 +0 0.0892 +0 0.5004 +0 0.0915 +0 0.0681 +0 0.1184 +0 0.0974 +0 0.0937 +0 0.1097 +0 0.0565 +0 0.2985 +0 0.0428 +0 0.0972 +0 0.1852 +0 0.1019 +0 0.3163 +0 0.0771 +0 0.2311 +0 0.0526 +0 0.1200 +0 0.2262 +0 0.0529 +0 0.1635 +0 0.1580 +0 0.1490 +0 0.0756 +0 0.0464 +0 0.2566 +0 0.0997 +0 0.0326 +0 0.3911 +0 0.0648 +0 0.0922 +0 0.0797 +0 0.0959 +0 0.1012 +0 0.0879 +0 0.0534 +0 0.2750 +0 0.0965 +0 0.1312 +0 0.3733 +0 0.3807 +0 0.0709 +0 0.1361 +0 0.1409 +0 0.1969 +0 0.1876 +0 0.0923 +0 0.1705 +0 0.0675 +0 0.1522 +0 0.1881 +0 0.0683 +0 0.1647 +0 0.0973 +0 0.1651 +0 0.0557 +0 0.0818 +0 0.1776 +0 0.0569 +0 0.0920 +0 0.1366 +0 0.2845 +0 0.0462 +0 0.3850 +0 0.0689 +0 0.0725 +0 0.1759 +0 0.1678 +0 0.1251 +0 0.1458 +1 0.8342 +0 0.0986 +0 0.0764 +0 0.1993 +0 0.0587 +0 0.0628 +0 0.0576 +0 0.0988 +0 0.1445 +0 0.6387 +0 0.1362 +0 0.1187 +0 0.0782 +0 0.1040 +0 0.0397 +0 0.1234 +0 0.1529 +0 0.1138 +0 0.1563 +0 0.0936 +0 0.6664 +0 0.1040 +0 0.0750 +0 0.1869 +0 0.0492 +0 0.1310 +0 0.1412 +0 0.1779 +0 0.1191 +0 0.0651 +0 0.1823 +0 0.1817 +0 0.1180 +0 0.2074 +0 0.1243 +0 0.0685 +0 0.1467 +0 0.1821 +0 0.1028 +0 0.0708 +0 0.2862 +0 0.0574 +0 0.1550 +0 0.2321 +0 0.2694 +0 0.0993 +0 0.2803 +0 0.2006 +0 0.0387 +0 0.0974 +0 0.2038 +0 0.0800 +0 0.0483 +0 0.0306 +0 0.0786 +0 0.0861 +0 0.3020 +0 0.0718 +0 0.1242 +0 0.5211 +0 0.1514 +0 0.0559 +0 0.1400 +0 0.0445 +0 0.0618 +0 0.0988 +0 0.1285 +0 0.1115 +0 0.0696 +0 0.0650 +0 0.0864 +0 0.0474 +0 0.2326 +0 0.4993 +1 0.7795 +0 0.4021 +0 0.1271 +0 0.2840 +0 0.0839 +0 0.1159 +0 0.0482 +0 0.2822 +0 0.0542 +0 0.0943 +0 0.2458 +0 0.7163 +0 0.1560 +0 0.5486 +0 0.0865 +0 0.6896 +0 0.1106 +0 0.1595 +0 0.0586 +0 0.0688 +0 0.1965 +0 0.1467 +0 0.1966 +0 0.0939 +0 0.0948 +0 0.1240 +0 0.0867 +0 0.0734 +0 0.0664 +0 0.1030 +0 0.0519 +0 0.2484 +0 0.2652 +0 0.1974 +0 0.0438 +0 0.0717 +0 0.3741 +0 0.2832 +0 0.1937 +0 0.0988 +0 0.0677 +0 0.2133 +0 0.0913 +0 0.1642 +0 0.0573 +0 0.0981 +0 0.0989 +0 0.1978 +0 0.0949 +0 0.1138 +0 0.0859 +0 0.0376 +0 0.1452 +0 0.0972 +0 0.0689 +0 0.1434 +0 0.0448 +0 0.1663 +1 0.8353 +0 0.0930 +0 0.0499 +0 0.0978 +0 0.2829 +0 0.0763 +0 0.0589 +0 0.4042 +0 0.0828 +0 0.1669 +0 0.0346 +0 0.1266 +0 0.0479 +0 0.1587 +0 0.1001 +0 0.2499 +0 0.1321 +0 0.1327 +0 0.0479 +0 0.0431 +0 0.0655 +0 0.1510 +0 0.1225 +0 0.2119 +0 0.0375 +0 0.0307 +0 0.0664 +0 0.1008 +0 0.1991 +0 0.0935 +0 0.1001 +0 0.0571 +0 0.0965 +0 0.1253 +0 0.1629 +0 0.1296 +0 0.2770 +0 0.1089 +0 0.1018 +0 0.2229 +0 0.2009 +0 0.6230 +0 0.1919 +0 0.0431 +0 0.1866 +0 0.1009 +0 0.3453 +0 0.3284 +0 0.1146 +0 0.0901 +0 0.0535 +0 0.1431 +1 0.7967 +0 0.1702 +0 0.1453 +0 0.0477 +0 0.0902 +0 0.0625 +0 0.0679 +0 0.0469 +0 0.1604 +0 0.0999 +0 0.2222 +0 0.1465 +0 0.7062 +0 0.1040 +0 0.1682 +0 0.6117 +0 0.0682 +0 0.2009 +0 0.1775 +0 0.1512 +0 0.1203 +0 0.0534 +0 0.1365 +0 0.2469 +0 0.2805 +0 0.0438 +0 0.0955 +0 0.0814 +0 0.0759 +0 0.0804 +0 0.0741 +0 0.0574 +0 0.1923 +0 0.0543 +0 0.0537 +0 0.1769 +0 0.0701 +0 0.2421 +0 0.2656 +0 0.1630 +0 0.0833 +0 0.1344 +0 0.0291 +0 0.1493 +0 0.0548 +0 0.0776 +0 0.2091 +0 0.0712 +0 0.0790 +0 0.0750 +0 0.1146 +0 0.0981 +0 0.1507 +0 0.0636 +0 0.0548 +0 0.1340 +0 0.4050 +0 0.1562 +0 0.0661 +0 0.1585 +0 0.0870 +0 0.0789 +0 0.2687 +0 0.1601 +0 0.1130 +0 0.1607 +0 0.2311 +0 0.0840 +0 0.0637 +0 0.0635 +0 0.0718 +0 0.1514 +0 0.1315 +0 0.1478 +0 0.0891 +0 0.0736 +0 0.0932 +0 0.1143 +0 0.1855 +0 0.0786 +0 0.1879 +0 0.0460 +0 0.1537 +0 0.2339 +0 0.0458 +0 0.0601 +0 0.0479 +0 0.0397 +0 0.1623 +0 0.1657 +0 0.0720 +0 0.1027 +0 0.1149 +0 0.1644 +0 0.1446 +0 0.1310 +0 0.1769 +0 0.2023 +0 0.1237 +0 0.0530 +0 0.3040 +0 0.1121 +0 0.1189 +0 0.2436 +0 0.0650 +0 0.0829 +0 0.2985 +0 0.0510 +0 0.1064 +0 0.1051 +0 0.0516 +0 0.0563 +0 0.0630 +0 0.0553 +0 0.1083 +0 0.2278 +0 0.0548 +0 0.0921 +0 0.1547 +0 0.0710 +0 0.0575 +0 0.0780 +0 0.2311 +0 0.0841 +0 0.1302 +0 0.0961 +0 0.1195 +0 0.0822 +0 0.0987 +0 0.1136 +0 0.0739 +0 0.1195 +0 0.0759 +0 0.6556 +0 0.1639 +0 0.2477 +0 0.1133 +0 0.1354 +0 0.2712 +0 0.1128 +0 0.1074 +0 0.1124 +0 0.0495 +0 0.0883 +0 0.0420 +0 0.1515 +0 0.1532 +0 0.0634 +0 0.0830 +0 0.1380 +0 0.2045 +0 0.1042 +0 0.1317 +0 0.1183 +0 0.0984 +0 0.1350 +0 0.1176 +0 0.2862 +0 0.2477 +0 0.0671 +0 0.1440 +0 0.1062 +0 0.1509 +0 0.1234 +0 0.1198 +0 0.1715 +0 0.0794 +0 0.1042 +0 0.1853 +0 0.1797 +0 0.1588 +0 0.1010 +0 0.1174 +0 0.1202 +0 0.1010 +0 0.0657 +0 0.0512 +0 0.3551 +0 0.0789 +0 0.1151 +0 0.0423 +0 0.1371 +0 0.2491 +0 0.2740 +0 0.1827 +0 0.1097 +0 0.6090 +0 0.1338 +0 0.1718 +0 0.0476 +0 0.0934 +0 0.0863 +0 0.1684 +0 0.0860 +0 0.1348 +0 0.0944 +0 0.1946 +0 0.0603 +0 0.0492 +0 0.0758 +0 0.0691 +0 0.1203 +0 0.0513 +0 0.0971 +0 0.1575 +0 0.0676 +0 0.0830 +0 0.0970 +0 0.0510 +0 0.0540 +0 0.1030 +0 0.0504 +0 0.0454 +0 0.0771 +0 0.5824 +0 0.1241 +0 0.0784 +0 0.1292 +0 0.3970 +0 0.6678 +0 0.0995 +0 0.1365 +0 0.1777 +0 0.1523 +0 0.1107 +0 0.0825 +0 0.1344 +0 0.1324 +1 0.5709 +0 0.1176 +0 0.0861 +0 0.3601 +0 0.0597 +0 0.1428 +0 0.1051 +0 0.1296 +0 0.4554 +0 0.1431 +0 0.2034 +0 0.1653 +0 0.1027 +0 0.0728 +0 0.1622 +0 0.0959 +0 0.0614 +0 0.1448 +0 0.0920 +0 0.1590 +0 0.1248 +0 0.0826 +0 0.2362 +0 0.0770 +0 0.1483 +0 0.0691 +0 0.1087 +0 0.1048 +0 0.0605 +0 0.0488 +0 0.1020 +0 0.1310 +0 0.0960 +0 0.0854 +0 0.1398 +0 0.1278 +0 0.0502 +0 0.2130 +0 0.1566 +0 0.0911 +0 0.0589 +0 0.1168 +0 0.1131 +0 0.0705 +0 0.0621 +0 0.1726 +0 0.1985 +0 0.2327 +0 0.0855 +0 0.1489 +0 0.1056 +0 0.7319 +0 0.1792 +0 0.0507 +0 0.0848 +0 0.0931 +0 0.0619 +0 0.0753 +0 0.0606 +0 0.0710 +0 0.6162 +0 0.2272 +0 0.0980 +0 0.0955 +0 0.2736 +0 0.1017 +0 0.0855 +0 0.0485 +0 0.1868 +0 0.0612 +0 0.0982 +0 0.2190 +0 0.0991 +0 0.0628 +0 0.0634 +0 0.4300 +0 0.2127 +0 0.0592 +0 0.1685 +0 0.3674 +0 0.0838 +0 0.3307 +0 0.2599 +0 0.1881 +0 0.0969 +0 0.3336 +0 0.2483 +0 0.0875 +0 0.2071 +0 0.2954 +0 0.1176 +0 0.1405 +0 0.1118 +0 0.2248 +0 0.0865 +0 0.3062 +0 0.2585 +0 0.1537 +0 0.0657 +1 0.7647 +0 0.2098 +0 0.0779 +0 0.1353 +0 0.0518 +0 0.0373 +0 0.0643 +0 0.1761 +0 0.0389 +0 0.0742 +0 0.1047 +0 0.1431 +0 0.0405 +0 0.1472 +0 0.0825 +0 0.1176 +0 0.0761 +0 0.1381 +0 0.1872 +0 0.1325 +0 0.0584 +0 0.0706 +0 0.0694 +0 0.1231 +0 0.0944 +0 0.1275 +0 0.0629 +0 0.0623 +0 0.0473 +0 0.2454 +0 0.0614 +0 0.1269 +1 0.7980 +0 0.0888 +0 0.0798 +0 0.1162 +0 0.1638 +0 0.3213 +0 0.0513 +0 0.0951 +0 0.0407 +0 0.1557 +0 0.0874 +0 0.1125 +0 0.1398 +0 0.0725 +0 0.0668 +0 0.1631 +0 0.1774 +0 0.0694 +0 0.0717 +0 0.1058 +0 0.1579 +0 0.0526 +0 0.1739 +0 0.0784 +0 0.3362 +0 0.0724 +0 0.1377 +0 0.1392 +0 0.0692 +0 0.0762 +0 0.2007 +0 0.2030 +0 0.1354 +0 0.1793 +0 0.6500 +0 0.2634 +0 0.2402 +0 0.1268 +0 0.1448 +0 0.2518 +0 0.1474 +0 0.0407 +0 0.0876 +0 0.0695 +0 0.1177 +0 0.0801 +0 0.1374 +0 0.1658 +0 0.0934 +0 0.0728 +0 0.0852 +0 0.1272 +0 0.0541 +0 0.0967 +0 0.4485 +0 0.1157 +0 0.1801 +0 0.2317 +0 0.0873 +0 0.0587 +0 0.0956 +0 0.0823 +0 0.1931 +0 0.0924 +0 0.2917 +0 0.0772 +0 0.1045 +0 0.0633 +0 0.1785 +0 0.1114 +0 0.2478 +0 0.1068 +0 0.0713 +0 0.0942 +0 0.1754 +0 0.0784 +0 0.1666 +0 0.1193 +0 0.1016 +0 0.0707 +0 0.0758 +0 0.1487 +0 0.1219 +0 0.0390 +0 0.1526 +0 0.0933 +0 0.1075 +0 0.0990 +0 0.0820 +0 0.0457 +0 0.0654 +0 0.1040 +0 0.0967 +0 0.0755 +0 0.1678 +0 0.0667 +0 0.0624 +0 0.0444 +0 0.2177 +0 0.1998 +0 0.1060 +0 0.2794 +0 0.0493 +0 0.0811 +0 0.1423 +0 0.0755 +0 0.1690 +0 0.0654 +0 0.1820 +0 0.0601 +0 0.1909 +0 0.1478 +0 0.0519 +0 0.2819 +0 0.1021 +0 0.0976 +0 0.0986 +0 0.0360 +0 0.1790 +0 0.0385 +0 0.1147 +0 0.0585 +0 0.0648 +0 0.1389 +0 0.3562 +0 0.1029 +0 0.0772 +0 0.1727 +0 0.1812 +0 0.0437 +0 0.0453 +0 0.2577 +0 0.0631 +0 0.2887 +0 0.0541 +0 0.0812 +0 0.2819 +0 0.1290 +0 0.0778 +0 0.2503 +0 0.1029 +0 0.0804 +0 0.1710 +0 0.1391 +0 0.0795 +0 0.0881 +0 0.0601 +0 0.0994 +0 0.0611 +0 0.1364 +0 0.1810 +0 0.4107 +0 0.0884 +0 0.0713 +0 0.0595 +0 0.0644 +0 0.0917 +0 0.3887 +0 0.1236 +0 0.0483 +0 0.0524 +0 0.2803 +1 0.8331 +0 0.1496 +0 0.0658 +0 0.2917 +0 0.4014 +0 0.6584 +0 0.0629 +0 0.1573 +0 0.1791 +0 0.0808 +0 0.0826 +0 0.1208 +0 0.0984 +0 0.1543 +0 0.0791 +0 0.1119 +0 0.0615 +0 0.0874 +0 0.0543 +1 0.8260 +0 0.1571 +0 0.1441 +0 0.0738 +0 0.0475 +0 0.1771 +0 0.0760 +0 0.1086 +0 0.1241 +0 0.1568 +0 0.0414 +0 0.0664 +0 0.2224 +0 0.0731 +0 0.0984 +0 0.4327 +0 0.0594 +0 0.1033 +0 0.0973 +0 0.0999 +0 0.0579 +0 0.0546 +0 0.1930 +0 0.0776 +0 0.3144 +0 0.2598 +0 0.0600 +0 0.2596 +0 0.1407 +0 0.2232 +0 0.0750 +1 0.8451 +0 0.1210 +0 0.1303 +0 0.0836 +0 0.0646 +0 0.1038 +0 0.1079 +0 0.0975 +0 0.0607 +0 0.0534 +0 0.1584 +0 0.1501 +0 0.0702 +0 0.0380 +0 0.0849 +0 0.4855 +0 0.0877 +0 0.0358 +0 0.0867 +0 0.1238 +0 0.0472 +0 0.1811 +0 0.0818 +0 0.0824 +0 0.0868 +0 0.0547 +0 0.0829 +0 0.0516 +0 0.0857 +0 0.2878 +0 0.0740 +0 0.1316 +0 0.1009 +0 0.1157 +0 0.0456 +0 0.0552 +0 0.0681 +0 0.1114 +0 0.1392 +0 0.1218 +0 0.0702 +0 0.1193 +0 0.2364 +0 0.1087 +0 0.2238 +0 0.0492 +0 0.2975 +0 0.0845 +0 0.1332 +0 0.4764 +0 0.0675 +0 0.1670 +0 0.1804 +0 0.1537 +0 0.0763 +0 0.1083 +0 0.0534 +0 0.0679 +0 0.0578 +0 0.0487 +0 0.0843 +0 0.4194 +0 0.0817 +0 0.1527 +0 0.0543 +0 0.1294 +0 0.1717 +0 0.0495 +0 0.2521 +0 0.0564 +0 0.1463 +0 0.0666 +0 0.1624 +0 0.0937 +0 0.1167 +0 0.0602 +0 0.0554 +0 0.2573 +0 0.0676 +0 0.0860 +0 0.2120 +0 0.2751 +0 0.1102 +0 0.1241 +0 0.0701 +0 0.0692 +0 0.1145 +0 0.0641 +0 0.0804 +0 0.3068 +0 0.0753 +0 0.0776 +0 0.2460 +0 0.0766 +0 0.1258 +0 0.0696 +0 0.1854 +0 0.2282 +0 0.2049 +0 0.0659 +0 0.1382 +0 0.1438 +0 0.0944 +0 0.1532 +0 0.0395 +0 0.0596 +0 0.0713 +0 0.2073 +0 0.1130 +0 0.0912 +0 0.0689 +0 0.1181 +0 0.0935 +0 0.0615 +0 0.1229 +0 0.1109 +0 0.1254 +0 0.1158 +0 0.1284 +0 0.1179 +0 0.1122 +0 0.1188 +0 0.0445 +0 0.1435 +1 0.7899 +0 0.2209 +0 0.1071 +0 0.1186 +0 0.1778 +0 0.2807 +0 0.1073 +0 0.1191 +0 0.0674 +0 0.2225 +0 0.0871 +1 0.8350 +0 0.1154 +0 0.0898 +0 0.2384 +0 0.1920 +0 0.0835 +0 0.1264 +0 0.0911 +0 0.0758 +0 0.0829 +0 0.0517 +0 0.0624 +0 0.1084 +0 0.0854 +0 0.0697 +0 0.0403 +0 0.1022 +0 0.2688 +0 0.0626 +0 0.5625 +0 0.0549 +0 0.2988 +0 0.1354 +0 0.0943 +0 0.0627 +0 0.3946 +0 0.1355 +0 0.0654 +0 0.1455 +0 0.0589 +0 0.0861 +0 0.0839 +0 0.1160 +0 0.1617 +0 0.0785 +0 0.0483 +0 0.0806 +0 0.1393 +0 0.7322 +0 0.1716 +0 0.1406 +0 0.0789 +0 0.0714 +0 0.1892 +0 0.2519 +0 0.0427 +0 0.0968 +0 0.0394 +0 0.1204 +0 0.1094 +0 0.0793 +0 0.1247 +0 0.1219 +0 0.1153 +0 0.1492 +0 0.0599 +0 0.0899 +0 0.0614 +0 0.1069 +0 0.1051 +0 0.2179 +0 0.2191 +0 0.4296 +0 0.0451 +0 0.0480 +0 0.0892 +0 0.0901 +0 0.0905 +0 0.0432 +0 0.1210 +0 0.0915 +0 0.0961 +0 0.1339 +0 0.0410 +0 0.1087 +0 0.1615 +0 0.1410 +0 0.3026 +0 0.0950 +0 0.1917 +0 0.0885 +0 0.1280 +0 0.0541 +0 0.1401 +0 0.0612 +0 0.0312 +0 0.0939 +0 0.2051 +0 0.1754 +0 0.4022 +0 0.0696 +0 0.7384 +0 0.0674 +0 0.1275 +0 0.1998 +0 0.0564 +0 0.0664 +0 0.5065 +0 0.1426 +0 0.0413 +0 0.0863 +0 0.1120 +0 0.0475 +0 0.1705 +0 0.1277 +0 0.0432 +0 0.1204 +0 0.3299 +0 0.2324 +0 0.0593 +0 0.1120 +0 0.0519 +0 0.0930 +0 0.2767 +0 0.1144 +0 0.0646 +0 0.0549 +0 0.2219 +0 0.2397 +0 0.1401 +0 0.0813 +0 0.0606 +0 0.1170 +0 0.1286 +0 0.1919 +0 0.1338 +0 0.0990 +0 0.1100 +0 0.0692 +0 0.2444 +0 0.3340 +0 0.1089 +0 0.1869 +0 0.0950 +0 0.0906 +0 0.1505 +0 0.1007 +0 0.1050 +0 0.1169 +0 0.3120 +0 0.1325 +0 0.0538 +0 0.0456 +0 0.3030 +0 0.0707 +0 0.1238 +0 0.3813 +0 0.1662 +0 0.2488 +0 0.0891 +0 0.1242 +0 0.0977 +1 0.8217 +0 0.1750 +0 0.0876 +0 0.0781 +0 0.0845 +1 0.7722 +0 0.0654 +0 0.0441 +0 0.4526 +0 0.1365 +0 0.0410 +0 0.1397 +0 0.0556 +0 0.1582 +0 0.0882 +0 0.0414 +0 0.1701 +0 0.1940 +0 0.0894 +0 0.4878 +0 0.3254 +0 0.1028 +0 0.0894 +0 0.0491 +0 0.1131 +0 0.0826 +0 0.1061 +0 0.0674 +0 0.1073 +0 0.2949 +0 0.0753 +0 0.0438 +0 0.0384 +0 0.1529 +0 0.1932 +0 0.1101 +0 0.0382 +0 0.1028 +1 0.8635 +0 0.2400 +0 0.0551 +0 0.0685 +0 0.1428 +0 0.1280 +0 0.2904 +0 0.0574 +0 0.1467 +0 0.1672 +0 0.0657 +0 0.1069 +0 0.1406 +0 0.0739 +0 0.0834 +0 0.3284 +0 0.5046 +0 0.0485 +0 0.0986 +0 0.3553 +0 0.1676 +0 0.4736 +0 0.1023 +0 0.1438 +0 0.1802 +0 0.1817 +0 0.1341 +0 0.3851 +0 0.1960 +0 0.0544 +0 0.0630 +0 0.1061 +0 0.0608 +0 0.0814 +0 0.1743 +0 0.1183 +0 0.3622 +0 0.2939 +0 0.0695 +0 0.0929 +0 0.0519 +0 0.1030 +0 0.2520 +0 0.1095 +0 0.0681 +0 0.0391 +0 0.0904 +0 0.0671 +0 0.0757 +0 0.4093 +0 0.0730 +0 0.1094 +0 0.1134 +0 0.1618 +0 0.0915 +0 0.0668 +0 0.2023 +0 0.0907 +0 0.1054 +0 0.1572 +0 0.1308 +0 0.0802 +0 0.0883 +0 0.0864 +0 0.1506 +0 0.0724 +0 0.1735 +0 0.1507 +0 0.1008 +0 0.2429 +0 0.1533 +0 0.0726 +0 0.4767 +0 0.1174 +0 0.1491 +0 0.1509 +0 0.0766 +0 0.1943 +0 0.0426 +0 0.1949 +0 0.0654 +0 0.1339 +0 0.1061 +0 0.0798 +0 0.2187 +0 0.0614 +0 0.0536 +0 0.0596 +0 0.0959 +0 0.0720 +0 0.0478 +0 0.0544 +0 0.1327 +0 0.1219 +0 0.0778 +0 0.0959 +0 0.0671 +1 0.7540 +0 0.1302 +0 0.1880 +0 0.0982 +0 0.1674 +0 0.1171 +0 0.1062 +0 0.0598 +0 0.3137 +0 0.1114 +0 0.1229 +0 0.0602 +0 0.2717 +0 0.6731 +0 0.0678 +0 0.0832 +0 0.0555 +0 0.0824 +0 0.1098 +0 0.1062 +0 0.1052 +0 0.0736 +0 0.0483 +1 0.8382 +0 0.0419 +0 0.0514 +0 0.1624 +0 0.1416 +0 0.1768 +0 0.0943 +0 0.0873 +0 0.0848 +0 0.0772 +0 0.0437 +0 0.0517 +1 0.7687 +0 0.1724 +0 0.0846 +0 0.1058 +0 0.4750 +0 0.0726 +0 0.4770 +0 0.1690 +0 0.3052 +0 0.3227 +0 0.1680 +0 0.1634 +0 0.1563 +0 0.1216 +0 0.1183 +1 0.8284 +0 0.1624 +0 0.1271 +0 0.0639 +0 0.1644 +0 0.0693 +0 0.3085 +0 0.0773 +0 0.0865 +0 0.1403 +0 0.1492 +0 0.2209 +0 0.0543 +0 0.1777 +0 0.0908 +0 0.1027 +0 0.1871 +0 0.0867 +0 0.0614 +0 0.3719 +0 0.2291 +0 0.1139 +0 0.0440 +0 0.0770 +0 0.1415 +0 0.0828 +0 0.1386 +0 0.0682 +0 0.0764 +0 0.1524 +0 0.0924 +0 0.0608 +0 0.4460 +0 0.0684 +0 0.1032 +0 0.2462 +0 0.1515 +0 0.0816 +0 0.0904 +0 0.1388 +0 0.0631 +0 0.0943 +0 0.1306 +0 0.0944 +0 0.1533 +0 0.4722 +0 0.1681 +0 0.0742 +0 0.0583 +0 0.2251 +0 0.0632 +0 0.0765 +0 0.0736 +0 0.1299 +0 0.0527 +0 0.0606 +0 0.1082 +0 0.0482 +0 0.1023 +1 0.8654 +0 0.0703 +1 0.8804 +0 0.0995 +0 0.0357 +0 0.0482 +0 0.0482 +0 0.0821 +0 0.3453 +0 0.1143 +0 0.0806 +0 0.0746 +0 0.1645 +0 0.1331 +0 0.2052 +0 0.1972 +0 0.1356 +0 0.1285 +0 0.1086 +0 0.2326 +0 0.1835 +0 0.1081 +0 0.1085 +0 0.5938 +0 0.0997 +0 0.1190 +0 0.0784 +0 0.0425 +0 0.0888 +0 0.0732 +0 0.3135 +0 0.0813 +0 0.0582 +0 0.0825 +0 0.1130 +0 0.1155 +0 0.0776 +0 0.0424 +0 0.1936 +0 0.0670 +0 0.0669 +0 0.2407 +0 0.6338 +0 0.0501 +0 0.1445 +0 0.0528 +0 0.0946 +0 0.0677 +0 0.1269 +0 0.0682 +0 0.7454 +0 0.1342 +0 0.0557 +0 0.0697 +0 0.1052 +0 0.1550 +0 0.2806 +0 0.0989 +0 0.0943 +0 0.3436 +0 0.2233 +0 0.1489 +0 0.0932 +0 0.1783 +0 0.1015 +0 0.1535 +0 0.0989 +0 0.1065 +0 0.1148 +0 0.1492 +0 0.0861 +0 0.1106 +0 0.0983 +0 0.0715 +0 0.1645 +0 0.0686 +0 0.0549 +0 0.0746 +0 0.1727 +0 0.0999 +0 0.1102 +0 0.0494 +0 0.0966 +0 0.1329 +0 0.5895 +0 0.2293 +0 0.1382 +0 0.1062 +0 0.1604 +0 0.0766 +0 0.0681 +0 0.2463 +0 0.6650 +0 0.0700 +0 0.0576 +0 0.1108 +0 0.1502 +0 0.2430 +0 0.1460 +0 0.0556 +0 0.1000 +0 0.0862 +0 0.1286 +0 0.0725 +0 0.0591 +0 0.2075 +0 0.1023 +0 0.1672 +0 0.0850 +0 0.0887 +0 0.0319 +0 0.0712 +0 0.1929 +0 0.1838 +0 0.0761 +0 0.2102 +0 0.0688 +1 0.8268 +0 0.1113 +0 0.1574 +0 0.0532 +0 0.1459 +0 0.0588 +0 0.2385 +0 0.0371 +0 0.3788 +0 0.1126 +0 0.2570 +0 0.0565 +0 0.1962 +0 0.1722 +0 0.0509 +0 0.0976 +0 0.1294 +0 0.0907 +0 0.1069 +0 0.1438 +0 0.0592 +0 0.2298 +0 0.1504 +0 0.0371 +0 0.1427 +0 0.0584 +0 0.1389 +0 0.1419 +0 0.0464 +0 0.1003 +0 0.2638 +0 0.1402 +0 0.1503 +0 0.0807 +0 0.0691 +0 0.2440 +0 0.1318 +0 0.0449 +0 0.6275 +0 0.1235 +0 0.1025 +0 0.2405 +0 0.2599 +0 0.0489 +1 0.7695 +0 0.1035 +0 0.1194 +0 0.1124 +0 0.1562 +0 0.0930 +0 0.1012 +0 0.0525 +0 0.0729 +0 0.2639 +0 0.0430 +0 0.1068 +0 0.1765 +0 0.0341 +0 0.1004 +0 0.0699 +0 0.1165 +0 0.0579 +0 0.0524 +0 0.1120 +0 0.1024 +0 0.1457 +0 0.1093 +0 0.1386 +0 0.2201 +0 0.1070 +0 0.0773 +0 0.0635 +0 0.0750 +0 0.2070 +0 0.1890 +0 0.0481 +0 0.0804 +0 0.0616 +0 0.7007 +0 0.1012 +0 0.1902 +0 0.0299 +0 0.0688 +0 0.1094 +0 0.2001 +0 0.0976 +0 0.0940 +0 0.0498 +0 0.1138 +0 0.0923 +0 0.0795 +0 0.1771 +0 0.1624 +0 0.0926 +0 0.2579 +0 0.0440 +0 0.0464 +0 0.0858 +0 0.0728 +0 0.0736 +0 0.1312 +0 0.0983 +0 0.0398 +0 0.1408 +0 0.0472 +0 0.1132 +0 0.0737 +0 0.0572 +0 0.3809 +0 0.0738 +0 0.0978 +0 0.1568 +0 0.1246 +0 0.1813 +0 0.1062 +0 0.1129 +0 0.1215 +0 0.1248 +0 0.0875 +0 0.0655 +0 0.1287 +0 0.1175 +0 0.0829 +0 0.0545 +0 0.1311 +0 0.1485 +0 0.1952 +0 0.1575 +0 0.0897 +0 0.1684 +0 0.1319 +0 0.0944 +0 0.0629 +0 0.1487 +0 0.2897 +0 0.0657 +0 0.1410 +0 0.0600 +0 0.0928 +0 0.0565 +0 0.0863 +0 0.0781 +0 0.1854 +0 0.1212 +0 0.3475 +0 0.0878 +0 0.3005 +0 0.2792 +0 0.0509 +0 0.1074 +0 0.1900 +0 0.2940 +0 0.2664 +0 0.0785 +0 0.0285 +0 0.0892 +0 0.1023 +0 0.1281 +0 0.1692 +0 0.1405 +0 0.1217 +0 0.1841 +0 0.1186 +0 0.0619 +0 0.0605 +0 0.0397 +0 0.1535 +0 0.0462 +0 0.0914 +0 0.1077 +0 0.0604 +0 0.0830 +0 0.0954 +0 0.1079 +0 0.0541 +0 0.1294 +0 0.0816 +0 0.1043 +0 0.2108 +0 0.1390 +0 0.0972 +0 0.0884 +0 0.1023 +0 0.1870 +0 0.0485 +0 0.1152 +0 0.0797 +0 0.1209 +0 0.1085 +0 0.1973 +0 0.5420 +0 0.1321 +0 0.2086 +0 0.1080 +0 0.0555 +0 0.1312 +0 0.1607 +0 0.2003 +0 0.0738 +0 0.0984 +0 0.1610 +0 0.1170 +0 0.1393 +0 0.1076 +0 0.0499 +0 0.0816 +0 0.0901 +0 0.4935 +0 0.1047 +1 0.8209 +0 0.0763 +0 0.1433 +0 0.1249 +0 0.0914 +0 0.2663 +0 0.0531 +0 0.0737 +0 0.1046 +0 0.1141 +0 0.1710 +0 0.0829 +0 0.2510 +0 0.0660 +0 0.1263 +0 0.0722 +0 0.0834 +0 0.1105 +0 0.1002 +0 0.2385 +0 0.0543 +0 0.0900 +0 0.1394 +0 0.1241 +0 0.0739 +0 0.0401 +0 0.0838 +0 0.0877 +0 0.2371 +0 0.0993 +0 0.0726 +0 0.0861 +0 0.0706 +0 0.1165 +0 0.1280 +0 0.1369 +0 0.1674 +0 0.2827 +0 0.1011 +0 0.0794 +0 0.0966 +0 0.1057 +0 0.0757 +0 0.1519 +0 0.1106 +0 0.0756 +0 0.0783 +0 0.3877 +0 0.1068 +0 0.0760 +0 0.0785 +0 0.1206 +0 0.0867 +0 0.1866 +0 0.0846 +0 0.2522 +0 0.1096 +0 0.0583 +0 0.1354 +0 0.3973 +0 0.7162 +0 0.0711 +0 0.1708 +0 0.1154 +0 0.0753 +0 0.1125 +0 0.1692 +0 0.0904 +0 0.1919 +0 0.2308 +0 0.1542 +0 0.0649 +0 0.6696 +0 0.1087 +0 0.1162 +0 0.3516 +0 0.0950 +0 0.1039 +0 0.1051 +0 0.1058 +0 0.0587 +0 0.0792 +0 0.0531 +0 0.3757 +0 0.3636 +0 0.1307 +0 0.0690 +0 0.0732 +0 0.0836 +0 0.1471 +0 0.0820 +0 0.1072 +0 0.2520 +0 0.1199 +0 0.1452 +0 0.2199 +0 0.1389 +0 0.3047 +0 0.0998 +0 0.1425 +0 0.1715 +0 0.1193 +0 0.0656 +0 0.1089 +0 0.1262 +0 0.1390 +0 0.0714 +0 0.2893 +0 0.0476 +0 0.1316 +0 0.3394 +0 0.0672 +0 0.0858 +0 0.0520 +0 0.1611 +0 0.0858 +1 0.8547 +0 0.2327 +0 0.1000 +0 0.1144 +0 0.2677 +0 0.2230 +0 0.0758 +0 0.2025 +0 0.1119 +0 0.3509 +0 0.0904 +0 0.0907 +0 0.1427 +0 0.0952 +0 0.1158 +0 0.3349 +0 0.0831 +0 0.0796 +0 0.1857 +0 0.0672 +0 0.0709 +0 0.1115 +0 0.0280 +0 0.1766 +0 0.1164 +0 0.0468 +0 0.0878 +0 0.0793 +0 0.1350 +0 0.0778 +0 0.1586 +0 0.0995 +0 0.0557 +0 0.1548 +0 0.0521 +0 0.0840 +0 0.2408 +0 0.0807 +0 0.0787 +0 0.0892 +0 0.0715 +0 0.0984 +0 0.0905 +1 0.7659 +0 0.1809 +0 0.1277 +0 0.1210 +0 0.1137 +0 0.1124 +0 0.1695 +0 0.0823 +0 0.0896 +0 0.3365 +0 0.0790 +0 0.5007 +0 0.2249 +0 0.1869 +0 0.0937 +0 0.3929 +0 0.1823 +0 0.1447 +0 0.0923 +0 0.0745 +0 0.1024 +0 0.1093 +0 0.2510 +0 0.1652 +0 0.0749 +0 0.1331 +0 0.0777 +0 0.1259 +0 0.0639 +0 0.0534 +0 0.0526 +0 0.0855 +0 0.1370 +0 0.2468 +0 0.0756 +0 0.0810 +0 0.0546 +0 0.0953 +0 0.1549 +0 0.0733 +0 0.1276 +0 0.2130 +0 0.0895 +0 0.1855 +0 0.0735 +0 0.0753 +0 0.0782 +0 0.0711 +0 0.1534 +0 0.5301 +0 0.3126 +0 0.3182 +0 0.0439 +0 0.1218 +0 0.0733 +0 0.1547 +0 0.0452 +0 0.0771 +0 0.1998 +0 0.0856 +0 0.0287 +0 0.1600 +0 0.0759 +0 0.2278 +0 0.0813 +0 0.1416 +0 0.0956 +0 0.1248 +0 0.0382 +0 0.0536 +0 0.1877 +0 0.0866 +0 0.1021 +0 0.0649 +0 0.2691 +0 0.0551 +0 0.1241 +0 0.0643 +0 0.2264 +0 0.0672 +0 0.1428 +0 0.0887 +0 0.1492 +0 0.1025 +0 0.0773 +0 0.2746 +0 0.0637 +0 0.0565 +0 0.0789 +0 0.1062 +0 0.0963 +0 0.1172 +0 0.4103 +0 0.0870 +0 0.2024 +0 0.1902 +0 0.1417 +0 0.1244 +0 0.0855 +0 0.7400 +0 0.0685 +0 0.0887 +0 0.0642 +0 0.0705 +0 0.0742 +0 0.2412 +0 0.2534 +0 0.5733 +0 0.1740 +0 0.0855 +0 0.2030 +0 0.0841 +0 0.2279 +0 0.0799 +0 0.1658 +0 0.1215 +0 0.1287 +0 0.0751 +0 0.0770 +0 0.1343 +0 0.0993 +0 0.1435 +0 0.0758 +0 0.1370 +0 0.0941 +0 0.1347 +0 0.4349 +0 0.0812 +0 0.1457 +0 0.0738 +0 0.1543 +0 0.0997 +0 0.1028 +0 0.1466 +0 0.2269 +0 0.1649 +0 0.1435 +0 0.0776 +0 0.1109 +0 0.0630 +1 0.7832 +1 0.8555 +0 0.2791 +0 0.0583 +0 0.2296 +0 0.0870 +0 0.1828 +0 0.1460 +0 0.4293 +0 0.0896 +0 0.1079 +0 0.1052 +0 0.1028 +0 0.0668 +0 0.1530 +0 0.2002 +0 0.1395 +0 0.0610 +0 0.1113 +1 0.3654 +0 0.1413 +0 0.0858 +0 0.0912 +0 0.2868 +0 0.1023 +0 0.0576 +0 0.2231 +0 0.2020 +0 0.0531 +0 0.4072 +0 0.0971 +0 0.1960 +0 0.0705 +0 0.1366 +0 0.1209 +0 0.2561 +0 0.1291 +0 0.1967 +0 0.1150 +0 0.0803 +0 0.0841 +0 0.1635 +0 0.1840 +0 0.0902 +0 0.0521 +0 0.0964 +0 0.1292 +0 0.4403 +0 0.0653 +0 0.0456 +0 0.0878 +0 0.1258 +0 0.0561 +0 0.0940 +0 0.1736 +0 0.2910 +0 0.0755 +0 0.2230 +0 0.2175 +0 0.0913 +0 0.1860 +0 0.0985 +0 0.1548 +0 0.2317 +0 0.0763 +0 0.0910 +0 0.1063 +0 0.1235 +0 0.1442 +0 0.0690 +0 0.2440 +0 0.1258 +0 0.0729 +0 0.0577 +0 0.0471 +0 0.0857 +0 0.1094 +0 0.2265 +0 0.0840 +0 0.0290 +0 0.0431 +0 0.1407 +0 0.0851 +0 0.1118 +0 0.2634 +0 0.0896 +0 0.2928 +0 0.2415 +0 0.0844 +0 0.6919 +0 0.1256 +0 0.1364 +0 0.0598 +0 0.0956 +0 0.1008 +0 0.1100 +0 0.3055 +0 0.0593 +0 0.1412 +0 0.0791 +0 0.2227 +0 0.1595 +0 0.3646 +0 0.1114 +0 0.0497 +0 0.0306 +0 0.0631 +0 0.0896 +0 0.1696 +0 0.2352 +0 0.0463 +0 0.0488 +0 0.0959 +0 0.1646 +0 0.0414 +0 0.0618 +0 0.2361 +0 0.0543 +0 0.2444 +0 0.0620 +0 0.0678 +0 0.0877 +0 0.0517 +0 0.1337 +0 0.2690 +0 0.0593 +0 0.0746 +0 0.4986 +0 0.1120 +0 0.0788 +0 0.0843 +0 0.0522 +0 0.1090 +0 0.1872 +0 0.0613 +0 0.1014 +0 0.2161 +0 0.0437 +0 0.0605 +0 0.0620 +0 0.3128 +0 0.0311 +0 0.1711 +0 0.1334 +0 0.5856 +0 0.0750 +0 0.1708 +0 0.0604 +0 0.1491 +0 0.1563 +0 0.2157 +0 0.1228 +0 0.1310 +0 0.1284 +0 0.0465 +0 0.0577 +0 0.1144 +0 0.0914 +0 0.2892 +0 0.1390 +0 0.0436 +0 0.0301 +0 0.0767 +0 0.0466 +0 0.1959 +0 0.0711 +0 0.0760 +0 0.1239 +0 0.0323 +0 0.1071 +0 0.0384 +0 0.2482 +0 0.0935 +0 0.1867 +0 0.0881 +0 0.1441 +0 0.1437 +0 0.0740 +0 0.2727 +0 0.1281 +0 0.0913 +0 0.0887 +0 0.0926 +0 0.1341 +0 0.0714 +0 0.2199 +0 0.2078 +0 0.1726 +0 0.1065 +0 0.0821 +0 0.2437 +0 0.1136 +0 0.1223 +0 0.1199 +0 0.1764 +0 0.1000 +0 0.2098 +0 0.0891 +0 0.0546 +0 0.0333 +0 0.3615 +0 0.1675 +0 0.1225 +0 0.1109 +0 0.1174 +0 0.0989 +0 0.1581 +0 0.1024 +0 0.1515 +0 0.1129 +0 0.0717 +0 0.1407 +0 0.0862 +0 0.1238 +0 0.1187 +0 0.4813 +0 0.0653 +0 0.2822 +0 0.0750 +0 0.0582 +0 0.1655 +0 0.1905 +0 0.0723 +0 0.4940 +0 0.1548 +0 0.1374 +0 0.0835 +0 0.0606 +0 0.1672 +0 0.0847 +0 0.1419 +0 0.1205 +0 0.4273 +0 0.2392 +0 0.1380 +0 0.0555 +0 0.2036 +0 0.0902 +0 0.0564 +0 0.0763 +0 0.1129 +0 0.2522 +0 0.1700 +0 0.0738 +0 0.0766 +0 0.0820 +0 0.1366 +0 0.0898 +0 0.0433 +0 0.5302 +0 0.2800 +0 0.1637 +0 0.1105 +0 0.0358 +0 0.0510 +0 0.0862 +0 0.0676 +0 0.0878 +1 0.8558 +0 0.3132 +0 0.0625 +0 0.0802 +0 0.1038 +0 0.4213 +0 0.2719 +0 0.6958 +0 0.1529 +0 0.2362 +0 0.4152 +0 0.4508 +0 0.0342 +0 0.0469 +0 0.1067 +0 0.1563 +0 0.1564 +0 0.1105 +0 0.1362 +0 0.1436 +0 0.0993 +0 0.1649 +0 0.0546 +0 0.1342 +0 0.1420 +0 0.2621 +0 0.1518 +0 0.0919 +0 0.2957 +0 0.0814 +0 0.0702 +0 0.1157 +0 0.2478 +0 0.1067 +0 0.0530 +0 0.0464 +0 0.0756 +0 0.1725 +0 0.4344 +0 0.1985 +0 0.5364 +0 0.0438 +0 0.1348 +0 0.1212 +0 0.0933 +0 0.1127 +0 0.0595 +0 0.3135 +0 0.0686 +0 0.0525 +0 0.2233 +0 0.1692 +0 0.3603 +0 0.2192 +0 0.2297 +0 0.2141 +0 0.1249 +0 0.2763 +0 0.0444 +0 0.0950 +0 0.1213 +0 0.0566 +0 0.0727 +0 0.0831 +0 0.2016 +0 0.1996 +0 0.2095 +0 0.0792 +0 0.0911 +0 0.0542 +0 0.0500 +0 0.0409 +0 0.0457 +0 0.2618 +0 0.0845 +0 0.0474 +0 0.0434 +0 0.0759 +0 0.0841 +0 0.0666 +0 0.1919 +0 0.2650 +0 0.2187 +0 0.7319 +0 0.0482 +0 0.0638 +0 0.1834 +0 0.1814 +0 0.1100 +0 0.0450 +0 0.0410 +0 0.1552 +0 0.0445 +0 0.0955 +0 0.1177 +0 0.0516 +1 0.7921 +0 0.0977 +0 0.1279 +0 0.1283 +0 0.0985 +0 0.4213 +0 0.4262 +0 0.0763 +0 0.1193 +0 0.1389 +0 0.0721 +0 0.0991 +0 0.1446 +1 0.7617 +0 0.1665 +0 0.0849 +0 0.2398 +0 0.1209 +0 0.0875 +0 0.0769 +0 0.1278 +0 0.1230 +0 0.1229 +0 0.0660 +0 0.1327 +0 0.0557 +0 0.1126 +0 0.1160 +0 0.0610 +0 0.0864 +0 0.6475 +0 0.1359 +0 0.1695 +0 0.0844 +0 0.1091 +0 0.0623 +0 0.0915 +0 0.0679 +0 0.0346 +0 0.2599 +0 0.1280 +0 0.1105 +0 0.1455 +0 0.1129 +1 0.7562 +0 0.2314 +0 0.1050 +0 0.1034 +0 0.0539 +0 0.6731 +0 0.0967 +0 0.2613 +0 0.0805 +0 0.1319 +0 0.0847 +0 0.0935 +0 0.1144 +0 0.2012 +0 0.2404 +0 0.2106 +0 0.1179 +0 0.1159 +0 0.2828 +0 0.1122 +0 0.1984 +0 0.0824 +0 0.0766 +0 0.2100 +0 0.2588 +0 0.0608 +0 0.0503 +0 0.1642 +0 0.2471 +1 0.7798 +0 0.1095 +0 0.4079 +0 0.2107 +0 0.0764 +0 0.2050 +0 0.1198 +0 0.0602 +0 0.1418 +0 0.0919 +0 0.0461 +0 0.1673 +0 0.0672 +0 0.0551 +0 0.0628 +0 0.0691 +0 0.0329 +0 0.1407 +0 0.1427 +0 0.1544 +0 0.4162 +0 0.0732 +0 0.1611 +0 0.4262 +0 0.1004 +0 0.3498 +0 0.2505 +0 0.1317 +0 0.7197 +0 0.0679 +0 0.0558 +0 0.0995 +0 0.1324 +0 0.2292 +0 0.1106 +0 0.0815 +0 0.0861 +0 0.0924 +0 0.3461 +0 0.1036 +0 0.0765 +0 0.1210 +0 0.0743 +0 0.1066 +0 0.2744 +0 0.1772 +0 0.0421 +0 0.0819 +0 0.1495 +0 0.2150 +0 0.0819 +0 0.0443 +0 0.1608 +0 0.0812 +0 0.5249 +0 0.1186 +0 0.0387 +0 0.0577 +0 0.0672 +0 0.1310 +0 0.0656 +0 0.3189 +0 0.3874 +0 0.1253 +0 0.1202 +0 0.0460 +0 0.1131 +0 0.0979 +0 0.2374 +0 0.2272 +0 0.1148 +0 0.3789 +0 0.0754 +0 0.1494 +0 0.0518 +0 0.0358 +0 0.1724 +0 0.1045 +0 0.0685 +0 0.0936 +0 0.1142 +0 0.0564 +0 0.2067 +0 0.5357 +0 0.1204 +0 0.1020 +0 0.0684 +0 0.0550 +0 0.0933 +0 0.1083 +0 0.1385 +0 0.0978 +0 0.2041 +0 0.1991 +0 0.1192 +0 0.1557 +0 0.1175 +0 0.1577 +0 0.2141 +0 0.1144 +0 0.1109 +0 0.0649 +0 0.0455 +0 0.0799 +0 0.0822 +0 0.1826 +0 0.1430 +0 0.2154 +0 0.1217 +0 0.2284 +0 0.0542 +0 0.0616 +0 0.0703 +0 0.2759 +0 0.5509 +0 0.0848 +0 0.2171 +0 0.0753 +0 0.0536 +0 0.0676 +0 0.1755 +0 0.0743 +0 0.0882 +0 0.1460 +0 0.2983 +0 0.0600 +0 0.2021 +0 0.0855 +0 0.0940 +0 0.4143 +0 0.2995 +0 0.0982 +0 0.1451 +0 0.1132 +0 0.3089 +0 0.5237 +0 0.1051 +0 0.1979 +0 0.0556 +0 0.1066 +0 0.0432 +0 0.1406 +0 0.1777 +0 0.0840 +0 0.2129 +0 0.1795 +0 0.1504 +0 0.0667 +0 0.1598 +0 0.2060 +0 0.0675 +0 0.0604 +0 0.0713 +0 0.0938 +0 0.0933 +0 0.0875 +0 0.7109 +0 0.1333 +0 0.0986 +0 0.0846 +0 0.0833 +0 0.3169 +0 0.6534 +0 0.1588 +0 0.1022 +1 0.8287 +1 0.8264 +0 0.0743 +0 0.0398 +0 0.1487 +0 0.6481 +0 0.0755 +0 0.3219 +0 0.2132 +0 0.0985 +0 0.0817 +0 0.0709 +0 0.1000 +0 0.1300 +0 0.0859 +0 0.0584 +0 0.0640 +0 0.0282 +0 0.1365 +0 0.1080 +0 0.3724 +0 0.0437 +0 0.1754 +0 0.0813 +0 0.0889 +0 0.0605 +0 0.0458 +0 0.2166 +0 0.5695 +0 0.1602 +0 0.1786 +0 0.1479 +0 0.2929 +0 0.1786 +0 0.3308 +0 0.1177 +0 0.0839 +0 0.0903 +0 0.0518 +0 0.1031 +0 0.1134 +0 0.5893 +0 0.0806 +0 0.0923 +0 0.1081 +0 0.0776 +0 0.0762 +0 0.1229 +0 0.2202 +0 0.0699 +0 0.1912 +0 0.0508 +0 0.3257 +0 0.0394 +0 0.0900 +0 0.1346 +0 0.1453 +0 0.2553 +0 0.0823 +0 0.0985 +0 0.1125 +0 0.2854 +0 0.0623 +0 0.2043 +0 0.2071 +0 0.1968 +0 0.2193 +0 0.0678 +0 0.0604 +0 0.0913 +0 0.0786 +0 0.2107 +0 0.1669 +0 0.0835 +0 0.1218 +0 0.0521 +0 0.0702 +0 0.3010 +0 0.0830 +0 0.4501 +0 0.0443 +0 0.0411 +0 0.0745 +0 0.3132 +0 0.0786 +0 0.1195 +0 0.1850 +0 0.1824 +0 0.1843 +0 0.1186 +0 0.0994 +0 0.0522 +0 0.0528 +0 0.2158 +0 0.1669 +0 0.0588 +0 0.0713 +0 0.1338 +0 0.0817 +0 0.2738 +0 0.0802 +0 0.2473 +0 0.1111 +0 0.0722 +0 0.0338 +0 0.1089 +0 0.0669 +0 0.0543 +0 0.0631 +1 0.7987 +0 0.4105 +0 0.0541 +0 0.1295 +0 0.1880 +0 0.0861 +0 0.1821 +0 0.0677 +0 0.1705 +0 0.0521 +0 0.1170 +0 0.2674 +0 0.0938 +0 0.1656 +0 0.0680 +0 0.5805 +0 0.0628 +0 0.4146 +0 0.0695 +0 0.1447 +0 0.0624 +0 0.3651 +0 0.1449 +0 0.0555 +0 0.1533 +0 0.2554 +0 0.1449 +0 0.2364 +0 0.0515 +0 0.1727 +0 0.6383 +0 0.3457 +0 0.0983 +0 0.0922 +0 0.0568 +0 0.0932 +0 0.0583 +0 0.1570 +0 0.0714 +0 0.1732 +0 0.0922 +0 0.1157 +0 0.1282 +0 0.0561 +0 0.0853 +0 0.2361 +0 0.1001 +0 0.0921 +0 0.0826 +0 0.2554 +0 0.4648 +0 0.0451 +0 0.0937 +0 0.0944 +0 0.2157 +0 0.0688 +0 0.1336 +0 0.0503 +0 0.0803 +0 0.1297 +0 0.0350 +0 0.0771 +1 0.7945 +0 0.1011 +0 0.1473 +0 0.0564 +1 0.8349 +0 0.0801 +0 0.0785 +0 0.2034 +0 0.0873 +0 0.4067 +0 0.0816 +0 0.0444 +0 0.0807 +0 0.0452 +0 0.0323 +0 0.1060 +0 0.0782 +0 0.0754 +0 0.0605 +0 0.1864 +0 0.0827 +0 0.0337 +0 0.0465 +0 0.0910 +0 0.3458 +0 0.3068 +0 0.0434 +0 0.0475 +0 0.0714 +0 0.0595 +0 0.1086 +0 0.0503 +0 0.4415 +0 0.7136 +0 0.1550 +0 0.0933 +0 0.0728 +0 0.0863 +0 0.0595 +0 0.0971 +0 0.1746 +0 0.0899 +0 0.4819 +0 0.1521 +0 0.0619 +0 0.0613 +0 0.1376 +0 0.0754 +0 0.0719 +0 0.0532 +1 0.8523 +0 0.4564 +0 0.0454 +0 0.0837 +0 0.1292 +0 0.1063 +0 0.1552 +0 0.1279 +0 0.0485 +0 0.0921 +0 0.0787 +0 0.1213 +0 0.0723 +0 0.0736 +0 0.0713 +0 0.3604 +0 0.2512 +1 0.8641 +0 0.0987 +0 0.0794 +0 0.1460 +0 0.0849 +0 0.0948 +0 0.1086 +0 0.2399 +0 0.0899 +0 0.0664 +0 0.4027 +0 0.1132 +0 0.1346 +0 0.1697 +0 0.0633 +0 0.0700 +1 0.8273 +0 0.0734 +0 0.0600 +0 0.0684 +0 0.0768 +0 0.1831 +0 0.0555 +0 0.0554 +0 0.1072 +0 0.0842 +0 0.1697 +0 0.0908 +0 0.0693 +0 0.2767 +0 0.0925 +1 0.8665 +0 0.0657 +0 0.0870 +0 0.1432 +0 0.0829 +0 0.1179 +0 0.2597 +0 0.0784 +0 0.0645 +1 0.7525 +0 0.1071 +0 0.0378 +1 0.8365 +0 0.0864 +0 0.1197 +0 0.2502 +0 0.0492 +0 0.1261 +0 0.1080 +0 0.1300 +0 0.0372 +0 0.0983 +0 0.0781 +0 0.0474 +0 0.1091 +0 0.0863 +0 0.0574 +0 0.1177 +0 0.1112 +0 0.1099 +0 0.0770 +0 0.1278 +0 0.1220 +0 0.1594 +0 0.0643 +0 0.0570 +0 0.1539 +0 0.1345 +0 0.0795 +0 0.1248 +0 0.1310 +0 0.1029 +0 0.0674 +0 0.1682 +0 0.1491 +0 0.0642 +0 0.2050 +0 0.0849 +0 0.0760 +0 0.0764 +0 0.0625 +0 0.0551 +0 0.1388 +0 0.1038 +0 0.1674 +0 0.2930 +0 0.0982 +0 0.2121 +0 0.1453 +0 0.0977 +0 0.2522 +0 0.2241 +0 0.1958 +0 0.1358 +0 0.2702 +0 0.3266 +0 0.0737 +0 0.0941 +0 0.0604 +0 0.2248 +0 0.1897 +0 0.0814 +0 0.0962 +0 0.1875 +0 0.0737 +0 0.0831 +0 0.0516 +0 0.1286 +0 0.0711 +0 0.0956 +0 0.3651 +0 0.0558 +0 0.0849 +0 0.0720 +0 0.1019 +0 0.0445 +0 0.0983 +0 0.1997 +0 0.0667 +0 0.2234 +0 0.0805 +0 0.2392 +0 0.0704 +0 0.0597 +0 0.0777 +0 0.0350 +0 0.1564 +0 0.3373 +0 0.0407 +0 0.0522 +0 0.1291 +0 0.1407 +0 0.0663 +0 0.0637 +0 0.1779 +0 0.1474 +0 0.1342 +0 0.1294 +0 0.2165 +0 0.1280 +0 0.5394 +0 0.1030 +0 0.0403 +0 0.0423 +0 0.0994 +0 0.0813 +0 0.2737 +0 0.0937 +0 0.0718 +0 0.1938 +0 0.2460 +0 0.0618 +0 0.1404 +0 0.2711 +0 0.0805 +0 0.0578 +0 0.1024 +0 0.1175 +0 0.0548 +0 0.1786 +0 0.1390 +0 0.1047 +0 0.1163 +0 0.0626 +0 0.5650 +0 0.2271 +0 0.0755 +0 0.1016 +0 0.0981 +0 0.2155 +0 0.0707 +0 0.0906 +0 0.2312 +0 0.0677 +0 0.0799 +0 0.4542 +0 0.2234 +0 0.0961 +0 0.1655 +0 0.1349 +0 0.1381 +0 0.0896 +0 0.6289 +0 0.0845 +0 0.0585 +0 0.1187 +1 0.8140 +0 0.0715 +0 0.1048 +0 0.1487 +0 0.0732 +0 0.0892 +0 0.1531 +0 0.1416 +0 0.0728 +0 0.2406 +0 0.3919 +0 0.0948 +0 0.0441 +0 0.0815 +0 0.4550 +0 0.0454 +0 0.0914 +0 0.0451 +0 0.2548 +0 0.3622 +0 0.1088 +0 0.0465 +0 0.0541 +0 0.0465 +0 0.3950 +0 0.6085 +0 0.0773 +0 0.0659 +0 0.0546 +0 0.0611 +0 0.1025 +0 0.0438 +0 0.0523 +0 0.0804 +0 0.0675 +0 0.3323 +0 0.2164 +0 0.1021 +0 0.1012 +0 0.1742 +0 0.0859 +0 0.1315 +0 0.0814 +0 0.0320 +0 0.1037 +0 0.1044 +0 0.1598 +0 0.1938 +0 0.0630 +0 0.1436 +0 0.1801 +0 0.0633 +0 0.1114 +0 0.1676 +0 0.3891 +0 0.1545 +0 0.0817 +0 0.0810 +0 0.2068 +0 0.0934 +0 0.0702 +0 0.1065 +0 0.0762 +0 0.1465 +0 0.1236 +0 0.0762 +0 0.0724 +0 0.1159 +0 0.1227 +0 0.1270 +0 0.0686 +0 0.0840 +0 0.7320 +0 0.3775 +0 0.3798 +0 0.0873 +0 0.0733 +1 0.8419 +0 0.1602 +0 0.0393 +0 0.1161 +0 0.6884 +0 0.0491 +0 0.0388 +0 0.0709 +0 0.3984 +0 0.1356 +0 0.3481 +0 0.3540 +0 0.1732 +0 0.0580 +0 0.0702 +0 0.0419 +0 0.0428 +0 0.1096 +0 0.0487 +0 0.0750 +0 0.1217 +0 0.2004 +0 0.1738 +0 0.1216 +0 0.0807 +0 0.1020 +0 0.1964 +0 0.1019 +0 0.1506 +0 0.0494 +0 0.1707 +0 0.2366 +0 0.2258 +0 0.2054 +0 0.1144 +0 0.0967 +0 0.0435 +0 0.1125 +0 0.1120 +0 0.1392 +0 0.6072 +0 0.1235 +0 0.0829 +0 0.0943 +0 0.0469 +0 0.1399 +0 0.0634 +0 0.0803 +0 0.0532 +0 0.0586 +0 0.1349 +0 0.0868 +0 0.0456 +0 0.1150 +0 0.1699 +0 0.0439 +0 0.2841 +0 0.0702 +0 0.0478 +0 0.1170 +0 0.1635 +0 0.0536 +0 0.0596 +0 0.0569 +0 0.4304 +0 0.0456 +0 0.0829 +0 0.0433 +1 0.8652 +0 0.0962 +0 0.0951 +0 0.1356 +0 0.1167 +0 0.2255 +0 0.0706 +0 0.1290 +0 0.2156 +0 0.0556 +0 0.0577 +0 0.1573 +0 0.2276 +0 0.0797 +0 0.2220 +0 0.7386 +0 0.0756 +0 0.0997 +0 0.1533 +0 0.0736 +0 0.1358 +0 0.1347 +0 0.0280 +0 0.1565 +0 0.0858 +0 0.0385 +0 0.1209 +0 0.0590 +0 0.0889 +0 0.1744 +0 0.0647 +0 0.1936 +0 0.2131 +0 0.0562 +0 0.0565 +0 0.0398 +0 0.1668 +0 0.0653 +0 0.2044 +0 0.3634 +0 0.1646 +0 0.1236 +0 0.0697 +0 0.1237 +0 0.5483 +0 0.0638 +0 0.0641 +0 0.3533 +0 0.0399 +0 0.0841 +0 0.0928 +0 0.1099 +0 0.1057 +0 0.1070 +0 0.1767 +0 0.1358 +0 0.1443 +0 0.1172 +0 0.0826 +0 0.0910 +0 0.1485 +0 0.0685 +0 0.0785 +0 0.1796 +0 0.2326 +0 0.1112 +0 0.3577 +0 0.4296 +0 0.0557 +0 0.0758 +0 0.1236 +0 0.1260 +0 0.6899 +0 0.1180 +0 0.2925 +0 0.0817 +0 0.2209 +0 0.1059 +0 0.0864 +0 0.0524 +0 0.4093 +0 0.1386 +0 0.0572 +0 0.0418 +0 0.0789 +0 0.0367 +0 0.1733 +0 0.0351 +0 0.1066 +0 0.0757 +0 0.1465 +0 0.1286 +0 0.1543 +0 0.0846 +0 0.2156 +0 0.3088 +0 0.1466 +0 0.0938 +0 0.0891 +0 0.1585 +0 0.1707 +0 0.0704 +0 0.0969 +0 0.0396 +0 0.1709 +0 0.0593 +0 0.0786 +0 0.0720 +0 0.1125 +0 0.1481 +0 0.0684 +0 0.0284 +0 0.0912 +0 0.1256 +0 0.0466 +0 0.1454 +0 0.0647 +0 0.2048 +0 0.1270 +0 0.0719 +0 0.0930 +0 0.1056 +0 0.1436 +0 0.0392 +0 0.3786 +0 0.0842 +0 0.1297 +0 0.1703 +0 0.0986 +0 0.5163 +0 0.2455 +0 0.0402 +0 0.0670 +0 0.0809 +0 0.3472 +0 0.1309 +0 0.0847 +0 0.0971 +0 0.0986 +0 0.1362 +0 0.0959 +0 0.0720 +0 0.0979 +0 0.3961 +0 0.0433 +0 0.0773 +0 0.0676 +0 0.0888 +0 0.1838 +0 0.1028 +0 0.0914 +0 0.0515 +0 0.0607 +0 0.4297 +0 0.0529 +0 0.1135 +0 0.2154 +0 0.0769 +0 0.1094 +0 0.0828 +0 0.2402 +1 0.7799 +0 0.0534 +0 0.0802 +0 0.0412 +0 0.2679 +0 0.0792 +0 0.0745 +0 0.0461 +0 0.1608 +0 0.0822 +0 0.2342 +0 0.2144 +0 0.7328 +0 0.3670 +0 0.0840 +0 0.0974 +0 0.1292 +0 0.0813 +0 0.1198 +0 0.1211 +0 0.0421 +0 0.0980 +0 0.1290 +0 0.1231 +0 0.1873 +0 0.1217 +0 0.0630 +0 0.1824 +0 0.2043 +0 0.2485 +0 0.0665 +0 0.1064 +0 0.1030 +0 0.0976 +0 0.1408 +0 0.1536 +0 0.0850 +0 0.1294 +0 0.0666 +0 0.1272 +0 0.1994 +0 0.3251 +0 0.0673 +0 0.0914 +0 0.0970 +0 0.1384 +0 0.0661 +0 0.0818 +0 0.1374 +0 0.1050 +0 0.1583 +0 0.0360 +0 0.0643 +0 0.2577 +1 0.8202 +0 0.0769 +0 0.0795 +0 0.3254 +0 0.0787 +0 0.2083 +0 0.1046 +0 0.1207 +0 0.1275 +0 0.1977 +0 0.0883 +0 0.0464 +1 0.8440 +0 0.0852 +0 0.0751 +0 0.1303 +0 0.0917 +0 0.3874 +0 0.2209 +0 0.1163 +0 0.0747 +0 0.1003 +0 0.1517 +0 0.1114 +0 0.6143 +0 0.0566 +0 0.0813 +0 0.3707 +0 0.1155 +0 0.0897 +0 0.2739 +0 0.0986 +0 0.1152 +0 0.1561 +0 0.1648 +0 0.1228 +0 0.1149 +0 0.1184 +0 0.1481 +0 0.0961 +0 0.1243 +0 0.0636 +0 0.0530 +0 0.1099 +0 0.0834 +0 0.6948 +0 0.0964 +0 0.1021 +0 0.0465 +0 0.0397 +0 0.2211 +0 0.2693 +0 0.0894 +0 0.0729 +0 0.1052 +0 0.0866 +0 0.3306 +0 0.0915 +0 0.0987 +0 0.2700 +1 0.8830 +0 0.1410 +0 0.3054 +0 0.0745 +0 0.0620 +0 0.0841 +0 0.0766 +0 0.1308 +0 0.1127 +0 0.0599 +0 0.1523 +0 0.0613 +0 0.0484 +0 0.0549 +0 0.6343 +0 0.0687 +0 0.0612 +0 0.0625 +0 0.0684 +0 0.2471 +0 0.1256 +0 0.2208 +0 0.1459 +0 0.0908 +0 0.6694 +0 0.1913 +1 0.8237 +0 0.0601 +0 0.0851 +0 0.0717 +0 0.0903 +0 0.1289 +0 0.1624 +0 0.1708 +0 0.1233 +1 0.8189 +0 0.1229 +0 0.2185 +0 0.1314 +0 0.2196 +0 0.0997 +0 0.1885 +0 0.0696 +0 0.2052 +0 0.0905 +0 0.1540 +0 0.7188 +1 0.8101 +0 0.1827 +0 0.1646 +0 0.0471 +0 0.1915 +0 0.0555 +0 0.0617 +0 0.0800 +0 0.0660 +0 0.0635 +0 0.0746 +0 0.0586 +0 0.2114 +0 0.1282 +0 0.1451 +0 0.0758 +0 0.3161 +0 0.0620 +0 0.0999 +0 0.1069 +0 0.0801 +0 0.1835 +0 0.1037 +0 0.0826 +0 0.1269 +0 0.1141 +0 0.0555 +0 0.4329 +0 0.1234 +0 0.1721 +0 0.0774 +0 0.0546 +0 0.3136 +0 0.1641 +0 0.2420 +0 0.2548 +0 0.0610 +0 0.0690 +0 0.1005 +0 0.1103 +0 0.0743 +0 0.0599 +0 0.3521 +0 0.0974 +0 0.1937 +0 0.0555 +0 0.1797 +0 0.0836 +0 0.1657 +0 0.1894 +0 0.2164 +0 0.0850 +0 0.2026 +0 0.0458 +0 0.0784 +0 0.4027 +0 0.1968 +0 0.1249 +0 0.1298 +0 0.0458 +0 0.2017 +0 0.1215 +0 0.3665 +0 0.0512 +0 0.1075 +0 0.0622 +0 0.1690 +0 0.1369 +0 0.0439 +0 0.1273 +0 0.1535 +0 0.2465 +0 0.0536 +0 0.0361 +0 0.1397 +0 0.2480 +0 0.0748 +0 0.0867 +0 0.2176 +0 0.2156 +0 0.2680 +0 0.0870 +0 0.1508 +0 0.0516 +0 0.1025 +0 0.2632 +0 0.1732 +0 0.0690 +0 0.0586 +0 0.0363 +0 0.0471 +0 0.0839 +0 0.0639 +0 0.1272 +0 0.1940 +0 0.0944 +0 0.1940 +0 0.0362 +0 0.1028 +0 0.1552 +0 0.0827 +0 0.1039 +0 0.0563 +0 0.2414 +0 0.1013 +0 0.1086 +0 0.2121 +0 0.0983 +0 0.2058 +0 0.1835 +0 0.3119 +0 0.1785 +0 0.0674 +0 0.0697 +0 0.0647 +0 0.1272 +0 0.1851 +0 0.3009 +0 0.0612 +0 0.0995 +0 0.0786 +0 0.0421 +0 0.1227 +0 0.0738 +0 0.3620 +0 0.2150 +0 0.1363 +0 0.1448 +0 0.0518 +0 0.1405 +0 0.1221 +0 0.1412 +0 0.1313 +0 0.1776 +0 0.1433 +0 0.0790 +0 0.1917 +1 0.8678 +0 0.1241 +0 0.2126 +0 0.4830 +0 0.0720 +0 0.1496 +0 0.0715 +0 0.2232 +0 0.1131 +0 0.0866 +0 0.0709 +0 0.2118 +0 0.1918 +0 0.0653 +0 0.1092 +0 0.3896 +0 0.2288 +0 0.1747 +0 0.1451 +0 0.1171 +0 0.3789 +0 0.0548 +0 0.3960 +0 0.2402 +0 0.0447 +0 0.2895 +0 0.0975 +0 0.2167 +0 0.0769 +0 0.1396 +0 0.1774 +0 0.2071 +0 0.5656 +0 0.0899 +0 0.0790 +0 0.1420 +0 0.1764 +0 0.1883 +0 0.0626 +0 0.0398 +0 0.0907 +0 0.1597 +0 0.0473 +0 0.4882 +0 0.1437 +0 0.0888 +0 0.0603 +0 0.0619 +0 0.1853 +0 0.1028 +0 0.1111 +0 0.1537 +0 0.0341 +0 0.1396 +0 0.3580 +0 0.1194 +0 0.0654 +0 0.5971 +0 0.1614 +0 0.1411 +1 0.8118 +0 0.3875 +0 0.1374 +0 0.1357 +0 0.1420 +0 0.0832 +0 0.1031 +0 0.0294 +0 0.0842 +0 0.0780 +0 0.1086 +0 0.1451 +1 0.7970 +0 0.1636 +0 0.0414 +0 0.0627 +0 0.2680 +0 0.1009 +0 0.1950 +0 0.2041 +0 0.0788 +0 0.1745 +0 0.1306 +1 0.8343 +0 0.0938 +0 0.1866 +0 0.1411 +0 0.1091 +0 0.0875 +0 0.1726 +0 0.2022 +0 0.0507 +0 0.1283 +0 0.1344 +0 0.2924 +0 0.1360 +0 0.0877 +0 0.0678 +0 0.1840 +0 0.1120 +0 0.1492 +0 0.2636 +0 0.0485 +0 0.0974 +0 0.1126 +0 0.0434 +0 0.0943 +0 0.0937 +0 0.0396 +0 0.0804 +0 0.0546 +0 0.1046 +0 0.1999 +0 0.1355 +1 0.8632 +0 0.0809 +0 0.0915 +0 0.2273 +0 0.0489 +0 0.0854 +0 0.0916 +0 0.0775 +0 0.1055 +0 0.0564 +0 0.1322 +0 0.0704 +0 0.1205 +0 0.1256 +0 0.1313 +0 0.1936 +0 0.2183 +0 0.1422 +0 0.0748 +0 0.0486 +0 0.1458 +0 0.1111 +0 0.1180 +0 0.0783 +0 0.2158 +0 0.1349 +0 0.2712 +0 0.0711 +0 0.0502 +0 0.3590 +0 0.0682 +0 0.2232 +0 0.1383 +0 0.1500 +0 0.0560 +0 0.0765 +0 0.0582 +0 0.3173 +0 0.0709 +0 0.2155 +0 0.2445 +0 0.0913 +0 0.2677 +0 0.0447 +0 0.0681 +0 0.0545 +0 0.1324 +0 0.0907 +0 0.1763 +0 0.2883 +0 0.2314 +0 0.2175 +0 0.1371 +0 0.0858 +0 0.0811 +0 0.0544 +0 0.1085 +0 0.0933 +0 0.1143 +0 0.0472 +0 0.1701 +0 0.0499 +0 0.0912 +0 0.0379 +0 0.0735 +0 0.1512 +0 0.1083 +0 0.0749 +0 0.2228 +0 0.0803 +0 0.0374 +0 0.2334 +0 0.1480 +1 0.7878 +0 0.0973 +0 0.1033 +0 0.2547 +0 0.2694 +0 0.0781 +0 0.1096 +0 0.0826 +0 0.0689 +0 0.2314 +0 0.1299 +0 0.1002 +0 0.1043 +0 0.0824 +0 0.1828 +0 0.1768 +0 0.0907 +0 0.0713 +0 0.1771 +0 0.5044 +0 0.0793 +0 0.1439 +0 0.0702 +0 0.1451 +0 0.1557 +0 0.2910 +0 0.1083 +0 0.2233 +0 0.0572 +0 0.1462 +0 0.0666 +0 0.1027 +0 0.0960 +0 0.1873 +0 0.2197 +0 0.1314 +0 0.0780 +0 0.0587 +0 0.1795 +0 0.1145 +0 0.1404 +0 0.0947 +0 0.0927 +0 0.0771 +0 0.6290 +0 0.1206 +0 0.0477 +0 0.1823 +0 0.1363 +0 0.1869 +0 0.0649 +0 0.0995 +0 0.2129 +0 0.0931 +0 0.5979 +0 0.0825 +0 0.6611 +0 0.1310 +0 0.0500 +0 0.0969 +0 0.0724 +0 0.0399 +0 0.1763 +0 0.0716 +0 0.0954 +0 0.0480 +0 0.0991 +0 0.0815 +0 0.1142 +0 0.0481 +0 0.1058 +0 0.1231 +0 0.1170 +0 0.1072 +0 0.1167 +0 0.1508 +0 0.1209 +0 0.0924 +0 0.1764 +0 0.2041 +0 0.0833 +0 0.0660 +0 0.0525 +0 0.3004 +0 0.1619 +0 0.0826 +0 0.0820 +0 0.0827 +0 0.0515 +0 0.0977 +0 0.1446 +0 0.1403 +0 0.0693 +0 0.0824 +0 0.0895 +0 0.2088 +0 0.0843 +0 0.0954 +0 0.1127 +0 0.4746 +0 0.0967 +0 0.1327 +0 0.1095 +0 0.0580 +0 0.1039 +0 0.1041 +0 0.1556 +1 0.7811 +0 0.0573 +0 0.0766 +0 0.0752 +0 0.3987 +0 0.0787 +0 0.0823 +0 0.0851 +0 0.2806 +1 0.7801 +0 0.4995 +0 0.1256 +0 0.0830 +0 0.2005 +0 0.0841 +0 0.0567 +0 0.1047 +0 0.0997 +0 0.1266 +0 0.1705 +0 0.1077 +0 0.1409 +0 0.0759 +0 0.0618 +0 0.1257 +0 0.1720 +0 0.0728 +0 0.0530 +0 0.4975 +0 0.2011 +0 0.0283 +0 0.0884 +0 0.2385 +0 0.2282 +0 0.0982 +0 0.1868 +0 0.2337 +0 0.0653 +0 0.4167 +0 0.3960 +0 0.0811 +0 0.0679 +0 0.5962 +0 0.0656 +0 0.0342 +0 0.0805 +0 0.3051 +0 0.0578 +0 0.1362 +0 0.2002 +0 0.0812 +0 0.2314 +0 0.1487 +0 0.0762 +0 0.0570 +0 0.0804 +0 0.0534 +0 0.2756 +0 0.0805 +0 0.0981 +0 0.1036 +0 0.1088 +0 0.1295 +0 0.0868 +0 0.1288 +0 0.0567 +0 0.2487 +0 0.1575 +0 0.1689 +0 0.0729 +0 0.0765 +0 0.1730 +0 0.1304 +0 0.1287 +0 0.0442 +0 0.0628 +0 0.0513 +0 0.0517 +0 0.0913 +0 0.0744 +0 0.1191 +0 0.0713 +0 0.1824 +0 0.0640 +0 0.0923 +0 0.0888 +0 0.0512 +0 0.1730 +0 0.6123 +0 0.0589 +0 0.1194 +0 0.0658 +0 0.0890 +0 0.0499 +0 0.1966 +0 0.0734 +0 0.3581 +0 0.0738 +0 0.2343 +0 0.2039 +0 0.1037 +0 0.0957 +0 0.1634 +0 0.0443 +0 0.1258 +1 0.8696 +0 0.0860 +0 0.1829 +0 0.1330 +0 0.1424 +1 0.8077 +0 0.3495 +0 0.1615 +0 0.2905 +0 0.1364 +0 0.1294 +0 0.0862 +0 0.1152 +0 0.0970 +0 0.2386 +0 0.0647 +0 0.4385 +0 0.0822 +0 0.2398 +0 0.4053 +0 0.2731 +0 0.1059 +0 0.1960 +0 0.1322 +0 0.3758 +0 0.2395 +0 0.0798 +0 0.0921 +0 0.0968 +0 0.6398 +0 0.0420 +0 0.4769 +0 0.2996 +0 0.1549 +0 0.1265 +0 0.0723 +0 0.1393 +0 0.0950 +0 0.2174 +0 0.0871 +0 0.0824 +0 0.1754 +0 0.1006 +0 0.0631 +0 0.0695 +0 0.2673 +0 0.0777 +0 0.0779 +0 0.2524 +0 0.0734 +1 0.8267 +0 0.0475 +0 0.1333 +0 0.0822 +0 0.0313 +0 0.1601 +0 0.1399 +0 0.0783 +0 0.0819 +0 0.1581 +0 0.0943 +0 0.1376 +0 0.0791 +0 0.0813 +0 0.0676 +0 0.1003 +0 0.1395 +0 0.0535 +0 0.6344 +0 0.0508 +0 0.0835 +1 0.7866 +0 0.1715 +0 0.0976 +0 0.1117 +0 0.1400 +0 0.1173 +0 0.1673 +0 0.1725 +0 0.1041 +0 0.0845 +0 0.2156 +0 0.0850 +0 0.0414 +0 0.0745 +0 0.1230 +0 0.1161 +0 0.1900 +0 0.0924 +0 0.0617 +1 0.8790 +0 0.0548 +0 0.0463 +0 0.1775 +0 0.1007 +0 0.0375 +0 0.1490 +0 0.0764 +0 0.0920 +0 0.0787 +0 0.1477 +1 0.7945 +0 0.1410 +0 0.4800 +0 0.2210 +0 0.1117 +0 0.0878 +0 0.1124 +0 0.1903 +0 0.0931 +0 0.1654 +0 0.0935 +0 0.1085 +0 0.0615 +0 0.2077 +0 0.0539 +0 0.1617 +0 0.1135 +0 0.1528 +0 0.0627 +0 0.7082 +0 0.0778 +0 0.0809 +0 0.1475 +0 0.1095 +0 0.2668 +0 0.0954 +0 0.0547 +0 0.0750 +0 0.0669 +0 0.1983 +0 0.0639 +0 0.0885 +0 0.2073 +0 0.1178 +0 0.0823 +0 0.0412 +0 0.0684 +0 0.1345 +0 0.1297 +1 0.8492 +0 0.0842 +0 0.1417 +0 0.6285 +0 0.0625 +0 0.0955 +0 0.0487 +0 0.0701 +0 0.1161 +0 0.0612 +0 0.0984 +0 0.0782 +0 0.5053 +0 0.0948 +0 0.2593 +0 0.0651 +0 0.0716 +1 0.7976 +0 0.0935 +0 0.1405 +0 0.0521 +0 0.5099 +0 0.1542 +0 0.0544 +0 0.0831 +0 0.2489 +0 0.1470 +0 0.0844 +0 0.0942 +0 0.1145 +0 0.0365 +0 0.3092 +0 0.0972 +0 0.3373 +0 0.1546 +0 0.0689 +0 0.0573 +0 0.2274 +0 0.0889 +0 0.0486 +0 0.2302 +0 0.0692 +0 0.0908 +0 0.1021 +0 0.0990 +0 0.1211 +0 0.0506 +0 0.0682 +0 0.1924 +0 0.1028 +0 0.0836 +0 0.1128 +0 0.1700 +0 0.1327 +0 0.0920 +0 0.2690 +1 0.8273 +0 0.2558 +0 0.1065 +0 0.0860 +0 0.0535 +0 0.1405 +0 0.0548 +0 0.5351 +0 0.1741 +0 0.1001 +0 0.0763 +0 0.1226 +0 0.0669 +0 0.0868 +0 0.4929 +0 0.0865 +0 0.0657 +0 0.3185 +1 0.7641 +0 0.3147 +0 0.0915 +0 0.2906 +0 0.0498 +0 0.1284 +0 0.0700 +0 0.0495 +0 0.5659 +0 0.1554 +0 0.0371 +0 0.0781 +0 0.2282 +0 0.0715 +0 0.0686 +0 0.0688 +0 0.2141 +0 0.1058 +0 0.0548 +0 0.1132 +0 0.2111 +0 0.0850 +0 0.0661 +0 0.1741 +0 0.0673 +0 0.1429 +0 0.1192 +0 0.1446 +0 0.2399 +0 0.1253 +0 0.6934 +0 0.1244 +0 0.1155 +0 0.0881 +0 0.1237 +0 0.0438 +0 0.0582 +0 0.3560 +0 0.1065 +0 0.1847 +0 0.2364 +0 0.0799 +0 0.0893 +0 0.0624 +0 0.4505 +0 0.0509 +0 0.0536 +0 0.1197 +0 0.0756 +0 0.0979 +0 0.0370 +0 0.0549 +0 0.0906 +0 0.1008 +0 0.1596 +0 0.1601 +0 0.0998 +0 0.0390 +0 0.1398 +0 0.2542 +0 0.1653 +0 0.1882 +0 0.0742 +0 0.1342 +0 0.1258 +0 0.1341 +0 0.2035 +0 0.3913 +0 0.3161 +0 0.0829 +0 0.1724 +0 0.1146 +0 0.0967 +0 0.1319 +0 0.1332 +0 0.0485 +0 0.1190 +0 0.0915 +0 0.1874 +0 0.5676 +0 0.1627 +0 0.1433 +0 0.0987 +0 0.0570 +0 0.1501 +0 0.0646 +0 0.1161 +0 0.0416 +0 0.1817 +0 0.0678 +0 0.0800 +0 0.1369 +0 0.1694 +0 0.0544 +0 0.1105 +0 0.0738 +0 0.0939 +0 0.0868 +0 0.1781 +0 0.2418 +0 0.1392 +0 0.1500 +0 0.0994 +0 0.0442 +0 0.0559 +0 0.0881 +0 0.0929 +0 0.0842 +0 0.0658 +0 0.1288 +0 0.1135 +0 0.0665 +0 0.1502 +0 0.3287 +0 0.3900 +0 0.0590 +0 0.6672 +0 0.3332 +0 0.0669 +0 0.0464 +0 0.0862 +0 0.0539 +0 0.0673 +0 0.0540 +0 0.0643 +0 0.0682 +0 0.1249 +0 0.2201 +0 0.0466 +0 0.0866 +0 0.1408 +0 0.0773 +0 0.1080 +0 0.1549 +0 0.6244 +0 0.1907 +1 0.8226 +0 0.0853 +0 0.1036 +0 0.0363 +0 0.1052 +0 0.0673 +0 0.3774 +0 0.1653 +0 0.1390 +0 0.1317 +0 0.0732 +1 0.7580 +0 0.2018 +0 0.0606 +0 0.2189 +0 0.0429 +0 0.1552 +0 0.0659 +0 0.1669 +0 0.2383 +0 0.2038 +0 0.1116 +0 0.0742 +0 0.2296 +0 0.0681 +0 0.1692 +0 0.0764 +0 0.3880 +0 0.2106 +0 0.1156 +0 0.1161 +0 0.2873 +0 0.0931 +0 0.0764 +0 0.1970 +0 0.4805 +0 0.0876 +0 0.0913 +1 0.8506 +0 0.0586 +0 0.0615 +0 0.0558 +0 0.1139 +0 0.0848 +0 0.0602 +0 0.1208 +0 0.0941 +0 0.0938 +0 0.0267 +0 0.1220 +0 0.1180 +0 0.0691 +0 0.1463 +0 0.2710 +0 0.1321 +0 0.4165 +0 0.0505 +0 0.2204 +0 0.0802 +0 0.0452 +0 0.1241 +0 0.1208 +0 0.1376 +0 0.0825 +1 0.7630 +0 0.0483 +0 0.2928 +0 0.1838 +0 0.0759 +0 0.0404 +0 0.0752 +0 0.1051 +0 0.0896 +0 0.0578 +0 0.0860 +0 0.5748 +0 0.1247 +0 0.1714 +0 0.3380 +0 0.0886 +0 0.0888 +0 0.1032 +0 0.0905 +0 0.0778 +0 0.0508 +0 0.0539 +0 0.1022 +0 0.0830 +0 0.1799 +0 0.0556 +0 0.2808 +0 0.1630 +0 0.0531 +0 0.0654 +0 0.0582 +0 0.0984 +0 0.1001 +0 0.2463 +0 0.1235 +0 0.1077 +0 0.2234 +0 0.0888 +0 0.1034 +0 0.3626 +0 0.0871 +0 0.0596 +0 0.0632 +0 0.0672 +0 0.1373 +0 0.0914 +1 0.7508 +0 0.0867 +0 0.0910 +0 0.2850 +1 0.8777 +0 0.1072 +0 0.0651 +0 0.2125 +0 0.0536 +0 0.1013 +0 0.1526 +0 0.2402 +0 0.2301 +0 0.0624 +0 0.1977 +0 0.4628 +0 0.1329 +0 0.0912 +0 0.2845 +0 0.0350 +0 0.0848 +0 0.0943 +0 0.0687 +0 0.1958 +0 0.0742 +0 0.0367 +0 0.4373 +0 0.1520 +0 0.1322 +0 0.2050 +0 0.0627 +0 0.2695 +0 0.1402 +0 0.0875 +0 0.0929 +0 0.2240 +0 0.1497 +0 0.4303 +0 0.0912 +0 0.2066 +0 0.0961 +0 0.0879 +0 0.0647 +0 0.0671 +0 0.0304 +0 0.0761 +0 0.1933 +0 0.1545 +0 0.1391 +0 0.0931 +0 0.3730 +0 0.1102 +0 0.0656 +0 0.0918 +0 0.0551 +0 0.0957 +0 0.1471 +0 0.1853 +0 0.0536 +0 0.0580 +1 0.8588 +0 0.0767 +0 0.1319 +0 0.1072 +0 0.0855 +0 0.1199 +1 0.7932 +0 0.1125 +0 0.1028 +0 0.1138 +0 0.1528 +0 0.1843 +0 0.1290 +0 0.1127 +0 0.1198 +0 0.3698 +0 0.1274 +0 0.0423 +0 0.1491 +0 0.1234 +0 0.0918 +0 0.3673 +0 0.1403 +0 0.0806 +0 0.1900 +0 0.0714 +0 0.1230 +0 0.0900 +0 0.1811 +0 0.1130 +0 0.5958 +0 0.0811 +0 0.0403 +1 0.7907 +0 0.0995 +0 0.2435 +0 0.1099 +0 0.0855 +0 0.1203 +0 0.2735 +0 0.1021 +0 0.1977 +0 0.1646 +0 0.1609 +0 0.1211 +0 0.0734 +0 0.0570 +0 0.0365 +0 0.1704 +0 0.1428 +0 0.1649 +0 0.1775 +0 0.1103 +0 0.0468 +0 0.0816 +0 0.2241 +0 0.1938 +0 0.1649 +0 0.0574 +0 0.0529 +0 0.2016 +0 0.2292 +0 0.2302 +0 0.0864 +0 0.0500 +0 0.1082 +0 0.0797 +0 0.1554 +0 0.0787 +0 0.0844 +0 0.2310 +0 0.1843 +0 0.0581 +0 0.0711 +0 0.1916 +0 0.1712 +0 0.4203 +0 0.0766 +0 0.1116 +0 0.0353 +0 0.1158 +0 0.0856 +0 0.2122 +1 0.7946 +0 0.0843 +0 0.1079 +0 0.0555 +0 0.5999 +0 0.0730 +0 0.0975 +0 0.1554 +0 0.0436 +0 0.0706 +0 0.0921 +0 0.1100 +0 0.3192 +0 0.2239 +0 0.0797 +0 0.1527 +0 0.0734 +0 0.1436 +0 0.3378 +0 0.0289 +0 0.0659 +0 0.0831 +0 0.0629 +0 0.6958 +0 0.2377 +0 0.0781 +0 0.1600 +0 0.1098 +0 0.0499 +0 0.0686 +0 0.0505 +0 0.1043 +0 0.1110 +1 0.8637 +0 0.0547 +0 0.0615 +0 0.5281 +0 0.0838 +0 0.1526 +0 0.1621 +0 0.1650 +0 0.2008 +0 0.3209 +0 0.0469 +0 0.0645 +0 0.2770 +0 0.0867 +0 0.1958 +0 0.0915 +0 0.0371 +0 0.0678 +0 0.0690 +0 0.0467 +0 0.1643 +0 0.1467 +0 0.1639 +0 0.0730 +0 0.1802 +0 0.1041 +0 0.1682 +0 0.0721 +0 0.0410 +0 0.1999 +0 0.0902 +0 0.1742 +0 0.1527 +1 0.7972 +0 0.4180 +0 0.1247 +0 0.0526 +0 0.1807 +1 0.8189 +0 0.1534 +0 0.2765 +0 0.0944 +0 0.1090 +0 0.1889 +0 0.0449 +0 0.0998 +0 0.5009 +0 0.0870 +0 0.1831 +0 0.1794 +1 0.8353 +0 0.0837 +0 0.4715 +0 0.0415 +0 0.0357 +0 0.2305 +1 0.8386 +0 0.0670 +0 0.1599 +0 0.0993 +0 0.0952 +0 0.2124 +0 0.0638 +0 0.0429 +0 0.0734 +0 0.2343 +0 0.0441 +0 0.0770 +0 0.0969 +0 0.0614 +0 0.0754 +0 0.0393 +0 0.0502 +0 0.2247 +0 0.2670 +0 0.2345 +0 0.1399 +0 0.0501 +0 0.1149 +0 0.0896 +0 0.0429 +0 0.2152 +0 0.0423 +0 0.0861 +0 0.0805 +0 0.1816 +0 0.1029 +0 0.1089 +0 0.0416 +0 0.1375 +0 0.2028 +0 0.1370 +0 0.1353 +0 0.1886 +0 0.1024 +0 0.1474 +0 0.0797 +0 0.0800 +0 0.0382 +0 0.1525 +0 0.1620 +0 0.1354 +0 0.2402 +0 0.2545 +0 0.0638 +0 0.1297 +0 0.1357 +0 0.1654 +0 0.0802 +0 0.1370 +0 0.0806 +0 0.2446 +0 0.0730 +0 0.0575 +0 0.1731 +0 0.0811 +0 0.1594 +0 0.2415 +0 0.0984 +0 0.0516 +0 0.0912 +0 0.0690 +0 0.2163 +0 0.0654 +0 0.3842 +0 0.2011 +0 0.0610 +0 0.1859 +0 0.2235 +0 0.0567 +0 0.1231 +0 0.0579 +0 0.0808 +0 0.0541 +0 0.1732 +0 0.1966 +0 0.0390 +0 0.2758 +0 0.0579 +0 0.0924 +0 0.1401 +0 0.0672 +0 0.1138 +0 0.1047 +0 0.0727 +0 0.1120 +0 0.1675 +0 0.0982 +0 0.3620 +0 0.0601 +0 0.3305 +0 0.0494 +0 0.1087 +0 0.0724 +0 0.0680 +0 0.0305 +0 0.0809 +0 0.1091 +0 0.1134 +0 0.0810 +0 0.1596 +0 0.4449 +0 0.1457 +0 0.0975 +0 0.0818 +0 0.1806 +0 0.0526 +0 0.1218 +0 0.0687 +0 0.1280 +0 0.1386 +0 0.1876 +0 0.2526 +0 0.2018 +0 0.0499 +0 0.1550 +0 0.0810 +0 0.1248 +0 0.0822 +0 0.1794 +0 0.0730 +0 0.2433 +0 0.1432 +0 0.0453 +0 0.1672 +0 0.0935 +0 0.1599 +1 0.7670 +0 0.0607 +0 0.0464 +0 0.1084 +0 0.1113 +0 0.2785 +0 0.1394 +0 0.1837 +0 0.0703 +0 0.0766 +0 0.2062 +0 0.0726 +0 0.2806 +0 0.0539 +0 0.7233 +0 0.1070 +0 0.1124 +0 0.1049 +0 0.0616 +0 0.0951 +0 0.0880 +0 0.0841 +0 0.0891 +0 0.1703 +0 0.0947 +0 0.0542 +0 0.1540 +0 0.2574 +1 0.8582 +0 0.0638 +0 0.0912 +0 0.0806 +0 0.2888 +0 0.1423 +0 0.0674 +0 0.0789 +0 0.0745 +0 0.0337 +0 0.0995 +0 0.1685 +0 0.1066 +0 0.0979 +0 0.0851 +0 0.1361 +0 0.1074 +0 0.0838 +0 0.1631 +0 0.0768 +0 0.1197 +0 0.2406 +0 0.0589 +0 0.2531 +0 0.0866 +0 0.1401 +0 0.2502 +0 0.1258 +0 0.3700 +0 0.0555 +0 0.2391 +0 0.1517 +0 0.0408 +0 0.1078 +0 0.0962 +0 0.1231 +0 0.0806 +0 0.0695 +0 0.0685 +0 0.0857 +0 0.4087 +0 0.0862 +0 0.0877 +0 0.0510 +0 0.0769 +0 0.4597 +0 0.1099 +0 0.0754 +0 0.0697 +0 0.0886 +0 0.1993 +0 0.0558 +0 0.1009 +0 0.3130 +0 0.0589 +0 0.0807 +0 0.0637 +0 0.0827 +0 0.1669 +0 0.0803 +0 0.0969 +0 0.0868 +0 0.7182 +0 0.2960 +0 0.0979 +0 0.0622 +0 0.1595 +0 0.0528 +0 0.1807 +0 0.1813 +0 0.0998 +0 0.1178 +0 0.1750 +0 0.1858 +0 0.2176 +0 0.1281 +0 0.0631 +0 0.0918 +0 0.0582 +0 0.0735 +0 0.1137 +0 0.2522 +0 0.0606 +0 0.0743 +0 0.1462 +0 0.1307 +0 0.0945 +0 0.1239 +0 0.0647 +0 0.0705 +0 0.1006 +0 0.0900 +0 0.0625 +0 0.3833 +0 0.0731 +0 0.0821 +0 0.1758 +0 0.1850 +0 0.1124 +0 0.0859 +0 0.1787 +0 0.0323 +0 0.0618 +0 0.0661 +0 0.0748 +0 0.1294 +0 0.0689 +0 0.0406 +0 0.1058 +0 0.1794 +0 0.0449 +0 0.1765 +0 0.1214 +0 0.2198 +0 0.6566 +0 0.1133 +0 0.0778 +0 0.1171 +0 0.5299 +0 0.1518 +0 0.0571 +0 0.0996 +0 0.2242 +0 0.0746 +0 0.0663 +0 0.2009 +0 0.0619 +0 0.1515 +0 0.0660 +0 0.1267 +0 0.0433 +0 0.0641 +0 0.0916 +0 0.6871 +0 0.0442 +0 0.1746 +0 0.1197 +0 0.0949 +0 0.0845 +0 0.0920 +0 0.1209 +0 0.0514 +0 0.0617 +0 0.1827 +0 0.1046 +0 0.1412 +0 0.0423 +0 0.0881 +0 0.1848 +0 0.2242 +0 0.2872 +0 0.1096 +0 0.0636 +0 0.0647 +0 0.0818 +0 0.0627 +0 0.0980 +0 0.0417 +0 0.2799 +0 0.0707 +0 0.0904 +0 0.0566 +0 0.0355 +0 0.1010 +0 0.0794 +0 0.2351 +0 0.1405 +0 0.5184 +0 0.0887 +0 0.0595 +0 0.0518 +0 0.1412 +0 0.1037 +0 0.0577 +0 0.1618 +0 0.1809 +0 0.1793 +0 0.3883 +0 0.0517 +0 0.0579 +0 0.0568 +0 0.0484 +0 0.1301 +0 0.0522 +0 0.0714 +0 0.0755 +0 0.0622 +0 0.1230 +0 0.0388 +0 0.0700 +0 0.1995 +0 0.1942 +0 0.1458 +0 0.2061 +0 0.1593 +0 0.0490 +0 0.0367 +0 0.0877 +0 0.1962 +0 0.1103 +0 0.0852 +0 0.0293 +0 0.1718 +0 0.1288 +0 0.1809 +0 0.0967 +0 0.1002 +0 0.1209 +0 0.0781 +0 0.1055 +0 0.1350 +0 0.0415 +0 0.0983 +0 0.0877 +0 0.1085 +0 0.0996 +0 0.2984 +0 0.3987 +0 0.7150 +0 0.0720 +0 0.1030 +0 0.1060 +0 0.0749 +0 0.1180 +0 0.3930 +0 0.1483 +0 0.1171 +0 0.1303 +0 0.1238 +0 0.1344 +0 0.2393 +0 0.1102 +0 0.0833 +0 0.0413 +0 0.1437 +0 0.5174 +0 0.0654 +0 0.0790 +0 0.0714 +0 0.2494 +0 0.0355 +0 0.0986 +0 0.1742 +0 0.0859 +0 0.0793 +0 0.0461 +0 0.0477 +0 0.0879 +0 0.3365 +0 0.0620 +0 0.2438 +0 0.0656 +0 0.0979 +0 0.0560 +0 0.6684 +0 0.0404 +0 0.2892 +0 0.2887 +0 0.1678 +0 0.0878 +0 0.4745 +0 0.0861 +0 0.2458 +0 0.2025 +0 0.2217 +0 0.0584 +0 0.0527 +0 0.0655 +0 0.1052 +0 0.0827 +0 0.1037 +0 0.1550 +0 0.0484 +0 0.1139 +0 0.1208 +0 0.0990 +0 0.0431 +0 0.1904 +0 0.0752 +0 0.0448 +0 0.1011 +0 0.0755 +0 0.0698 +0 0.1782 +0 0.0680 +0 0.0610 +0 0.0711 +0 0.1509 +0 0.2271 +0 0.0915 +0 0.1466 +0 0.1324 +0 0.0652 +0 0.4165 +0 0.0621 +0 0.2647 +0 0.1258 +0 0.0663 +0 0.0585 +0 0.0539 +0 0.0950 +0 0.0743 +0 0.0869 +0 0.0874 +0 0.2764 +0 0.0765 +0 0.2661 +0 0.0727 +0 0.1315 +0 0.4244 +0 0.0691 +0 0.0827 +0 0.2919 +0 0.1620 +0 0.0831 +0 0.1296 +0 0.0530 +0 0.0940 +0 0.0937 +0 0.1691 +0 0.0677 +0 0.1539 +0 0.0678 +0 0.1816 +0 0.0924 +1 0.8806 +0 0.0793 +0 0.1170 +0 0.0781 +0 0.1390 +0 0.0670 +0 0.0951 +0 0.0481 +0 0.0393 +0 0.0749 +0 0.1137 +0 0.0797 +0 0.0632 +0 0.0799 +0 0.1964 +0 0.1287 +0 0.0409 +0 0.0667 +0 0.1128 +0 0.0480 +0 0.0448 +0 0.1434 +0 0.1109 +0 0.1430 +0 0.1391 +0 0.1820 +0 0.0433 +0 0.1343 +0 0.4163 +0 0.0744 +0 0.1367 +0 0.1518 +0 0.1083 +0 0.1174 +0 0.1659 +0 0.1791 +0 0.0867 +0 0.0980 +0 0.1211 +0 0.1172 +1 0.8529 +0 0.1826 +1 0.7752 +0 0.0710 +0 0.1748 +0 0.0747 +0 0.1264 +0 0.1947 +0 0.2712 +0 0.0714 +0 0.3977 +0 0.1298 +0 0.1079 +0 0.2272 +0 0.0773 +0 0.0425 +0 0.0764 +0 0.3643 +0 0.1763 +0 0.2308 +0 0.1425 +0 0.1996 +0 0.0918 +0 0.2473 +0 0.0424 +0 0.0997 +0 0.1421 +0 0.1376 +0 0.0617 +0 0.2426 +0 0.3163 +0 0.0792 +0 0.2473 +0 0.1615 +0 0.0980 +0 0.1532 +0 0.0962 +0 0.1092 +0 0.2885 +0 0.0602 +0 0.2629 +0 0.4996 +0 0.0744 +0 0.6189 +0 0.0907 +0 0.0412 +0 0.0479 +0 0.1971 +0 0.0913 +0 0.0743 +0 0.0840 +0 0.0894 +0 0.0521 +0 0.1215 +0 0.2326 +0 0.1078 +0 0.0917 +0 0.1469 +0 0.1676 +0 0.0596 +0 0.1773 +0 0.1055 +0 0.0838 +0 0.0796 +0 0.2333 +0 0.1176 +0 0.0720 +0 0.1064 +0 0.0952 +0 0.1408 +0 0.0643 +0 0.2111 +0 0.5588 +0 0.3145 +0 0.0891 +0 0.1277 +0 0.1624 +0 0.2198 +0 0.0902 +0 0.2835 +0 0.0520 +0 0.0939 +0 0.0636 +0 0.0453 +0 0.1254 +0 0.1308 +0 0.0717 +0 0.1287 +0 0.0860 +0 0.0848 +0 0.1144 +0 0.0784 +0 0.1608 +0 0.1141 +0 0.0768 +0 0.0843 +0 0.0628 +0 0.0695 +0 0.1684 +0 0.0804 +0 0.1538 +0 0.1533 +0 0.1385 +0 0.1530 +0 0.0849 +0 0.1733 +0 0.0952 +0 0.1510 +0 0.0716 +0 0.1883 +0 0.0589 +0 0.0587 +0 0.0813 +0 0.0711 +0 0.0439 +0 0.6292 +0 0.1919 +0 0.1412 +0 0.1094 +0 0.0819 +0 0.0689 +0 0.0712 +0 0.2424 +0 0.0789 +0 0.0973 +0 0.1266 +0 0.0678 +0 0.5611 +0 0.0664 +0 0.1705 +0 0.0679 +0 0.5969 +0 0.1084 +0 0.0979 +0 0.1426 +0 0.1796 +0 0.1236 +0 0.0719 +0 0.0766 +0 0.1985 +0 0.0687 +0 0.1250 +0 0.1462 +0 0.2117 +0 0.2667 +0 0.1080 +0 0.0660 +0 0.1701 +0 0.0688 +0 0.0843 +0 0.0471 +0 0.1136 +0 0.4191 +0 0.0524 +0 0.0668 +0 0.0886 +0 0.0950 +0 0.0639 +0 0.1327 +0 0.0790 +0 0.0510 +0 0.1325 +0 0.1174 +0 0.0848 +0 0.1622 +0 0.0894 +0 0.0869 +0 0.1162 +0 0.1506 +0 0.1755 +0 0.3711 +0 0.1716 +0 0.5272 +0 0.1045 +0 0.3977 +0 0.2125 +0 0.2241 +0 0.1575 +0 0.2996 +0 0.0752 +0 0.0691 +0 0.1370 +0 0.0968 +0 0.1309 +0 0.0873 +0 0.0483 +0 0.2062 +0 0.0928 +0 0.1110 +0 0.4388 +0 0.1685 +0 0.0797 +0 0.0677 +0 0.1670 +0 0.0577 +0 0.0865 +0 0.1126 +0 0.0846 +0 0.0977 +0 0.0531 +0 0.1042 +0 0.1516 +0 0.1238 +0 0.6344 +0 0.0941 +0 0.0626 +0 0.1186 +0 0.0496 +0 0.1411 +0 0.0578 +0 0.2549 +0 0.0608 +0 0.2300 +0 0.0761 +0 0.0819 +0 0.0550 +0 0.0782 +0 0.1318 +0 0.0913 +0 0.0984 +0 0.0355 +0 0.0681 +0 0.0451 +0 0.1401 +0 0.0959 +0 0.1719 +0 0.1073 +0 0.0875 +0 0.1907 +0 0.0637 +0 0.2097 +0 0.1000 +0 0.0807 +0 0.1410 +0 0.0686 +0 0.1488 +0 0.1218 +0 0.7103 +0 0.1071 +0 0.0530 +0 0.1454 +0 0.0567 +0 0.4293 +0 0.0516 +0 0.1547 +0 0.1182 +0 0.2435 +0 0.0847 +0 0.3810 +0 0.2335 +0 0.0699 +0 0.2017 +0 0.2096 +0 0.0739 +0 0.1717 +0 0.2561 +0 0.3770 +0 0.0858 +0 0.0809 +0 0.0516 +0 0.2773 +0 0.1670 +0 0.0479 +0 0.1730 +0 0.0699 +0 0.0897 +0 0.1430 +0 0.1557 +0 0.1631 +0 0.2933 +0 0.1625 +0 0.2017 +0 0.0372 +0 0.1280 +0 0.1426 +0 0.0673 +0 0.0907 +0 0.0702 +0 0.0581 +0 0.3030 +0 0.1035 +0 0.0408 +0 0.1111 +0 0.2446 +0 0.1775 +0 0.2086 +0 0.2128 +0 0.0641 +0 0.2629 +0 0.2047 +0 0.0771 +0 0.1301 +0 0.1696 +0 0.0697 +0 0.1469 +0 0.0609 +0 0.1654 +0 0.3285 +0 0.3013 +0 0.0921 +0 0.1765 +0 0.1136 +0 0.0870 +0 0.5566 +0 0.0342 +0 0.0564 +0 0.1401 +0 0.0498 +0 0.0761 +0 0.0812 +0 0.1995 +0 0.0797 +0 0.0930 +0 0.2191 +0 0.4080 +0 0.1068 +0 0.1026 +1 0.7838 +0 0.2516 +0 0.1174 +0 0.2139 +0 0.0364 +0 0.2037 +0 0.0957 +0 0.0869 +0 0.0915 +0 0.0407 +0 0.0493 +0 0.5378 +0 0.4549 +0 0.0567 +0 0.0908 +0 0.1103 +0 0.0708 +0 0.1469 +0 0.2148 +0 0.1016 +0 0.0919 +0 0.7253 +0 0.1539 +0 0.0689 +0 0.1015 +0 0.0924 +0 0.0569 +1 0.8226 +0 0.1494 +0 0.0346 +0 0.1646 +0 0.1804 +0 0.1200 +0 0.0748 +0 0.2923 +0 0.0661 +0 0.0763 +0 0.1579 +0 0.1650 +0 0.1493 +0 0.2576 +0 0.1074 +0 0.1122 +0 0.2591 +0 0.0559 +0 0.3225 +0 0.0479 +0 0.0444 +0 0.2155 +0 0.2080 +0 0.0731 +0 0.2585 +0 0.0732 +0 0.1027 +0 0.0796 +0 0.3455 +0 0.1334 +0 0.0638 +0 0.1015 +0 0.0833 +0 0.1548 +0 0.0900 +0 0.0416 +0 0.1015 +0 0.1322 +0 0.0826 +0 0.0390 +0 0.0752 +0 0.2403 +0 0.1572 +0 0.2957 +0 0.0948 +0 0.0551 +0 0.2999 +0 0.1596 +0 0.3959 +0 0.0581 +0 0.1067 +0 0.3115 +0 0.0837 +0 0.0765 +0 0.1520 +0 0.1072 +0 0.2578 +0 0.0954 +0 0.2106 +0 0.0643 +0 0.0711 +0 0.0617 +0 0.1165 +0 0.1692 +0 0.1276 +0 0.1177 +0 0.0686 +0 0.0495 +0 0.1177 +0 0.1563 +0 0.0578 +0 0.1375 +0 0.1268 +0 0.0971 +0 0.1227 +0 0.1274 +1 0.8009 +0 0.0431 +0 0.0936 +0 0.0807 +0 0.0441 +0 0.0760 +0 0.0402 +0 0.1938 +0 0.0619 +0 0.2004 +0 0.2381 +0 0.0666 +0 0.1898 +0 0.1389 +0 0.1263 +0 0.0378 +0 0.0792 +0 0.0380 +0 0.0469 +0 0.2797 +0 0.0988 +0 0.0483 +0 0.2061 +0 0.1391 +0 0.0619 +0 0.0665 +0 0.2113 +0 0.0363 +0 0.2095 +0 0.1163 +0 0.1200 +0 0.1274 +0 0.1011 +0 0.0679 +0 0.0696 +0 0.1588 +0 0.0618 +0 0.0892 +0 0.5448 +0 0.0821 +0 0.3889 +0 0.2803 +0 0.0574 +0 0.1313 +0 0.0398 +0 0.1849 +0 0.1837 +0 0.2034 +0 0.0973 +0 0.0753 +0 0.1198 +0 0.1082 +0 0.4061 +0 0.1536 +0 0.0798 +0 0.5057 +0 0.1222 +0 0.0905 +0 0.1062 +0 0.1122 +1 0.8264 +0 0.7405 +0 0.0829 +0 0.1499 +0 0.1662 +0 0.0686 +0 0.0590 +0 0.1899 +0 0.3248 +0 0.0755 +0 0.1562 +1 0.7873 +0 0.0425 +0 0.0421 +0 0.0650 +0 0.0812 +0 0.1629 +0 0.0572 +0 0.0897 +0 0.1136 +0 0.1502 +0 0.1776 +0 0.0642 +0 0.1305 +0 0.0958 +0 0.0654 +0 0.2425 +0 0.0535 +0 0.1390 +0 0.1938 +0 0.0699 +0 0.3076 +0 0.0982 +0 0.0439 +0 0.0752 +0 0.1018 +0 0.0914 +0 0.1280 +0 0.2098 +0 0.1411 +0 0.0866 +0 0.1186 +0 0.0606 +0 0.0838 +0 0.1964 +0 0.1919 +0 0.1995 +0 0.3734 +0 0.1338 +0 0.2873 +0 0.1073 +0 0.1147 +0 0.0710 +0 0.0813 +0 0.1246 +1 0.8080 +0 0.2188 +0 0.3314 +0 0.1750 +0 0.0628 +0 0.0594 +0 0.1151 +0 0.1040 +0 0.0631 +0 0.3239 +0 0.0971 +0 0.0633 +0 0.1527 +0 0.1423 +0 0.0367 +0 0.1959 +0 0.1401 +0 0.1049 +0 0.0509 +0 0.2234 +0 0.1046 +0 0.0585 +0 0.1022 +0 0.0573 +0 0.1858 +0 0.1716 +0 0.0469 +0 0.3448 +0 0.1863 +0 0.1136 +0 0.0720 +0 0.1116 +0 0.0763 +0 0.0949 +0 0.6167 +0 0.0544 +0 0.1075 +0 0.0761 +0 0.0752 +0 0.3520 +0 0.0849 +0 0.0645 +0 0.0975 +0 0.3233 +0 0.2350 +0 0.1170 +0 0.1232 +0 0.1043 +0 0.0712 +0 0.0342 +0 0.0331 +0 0.0921 +0 0.0983 +0 0.0378 +0 0.1166 +0 0.0649 +0 0.1155 +0 0.0731 +0 0.0690 +0 0.1520 +0 0.1663 +1 0.8145 +0 0.2055 +0 0.0652 +0 0.0454 +0 0.0442 +0 0.1068 +0 0.1516 +0 0.0932 +0 0.1430 +0 0.1705 +0 0.0456 +0 0.0959 +0 0.0795 +0 0.0714 +0 0.0614 +0 0.1667 +0 0.0564 +0 0.2231 +0 0.3719 +0 0.0903 +0 0.0818 +0 0.0699 +0 0.1571 +0 0.0793 +0 0.0601 +0 0.0519 +0 0.1622 +0 0.1044 +0 0.1180 +0 0.3024 +0 0.1429 +0 0.7264 +0 0.2080 +0 0.1269 +0 0.3377 +0 0.1042 +0 0.1611 +0 0.1149 +0 0.0924 +0 0.1080 +0 0.0720 +0 0.0706 +0 0.1792 +0 0.1746 +0 0.0901 +0 0.0385 +0 0.1129 +0 0.0657 +0 0.1211 +0 0.0480 +0 0.1064 +0 0.1049 +0 0.0857 +0 0.0863 +0 0.0792 +0 0.0880 +0 0.6627 +0 0.0561 +0 0.2142 +0 0.7057 +0 0.0487 +0 0.2864 +0 0.1294 +0 0.0554 +0 0.1182 +0 0.0971 +0 0.1021 +0 0.1143 +0 0.0678 +0 0.3525 +0 0.1953 +0 0.0631 +0 0.0840 +0 0.3858 +0 0.1032 +0 0.3911 +0 0.0772 +0 0.0890 +0 0.2138 +0 0.0739 +0 0.0567 +0 0.3238 +0 0.0532 +0 0.2393 +0 0.0632 +1 0.8433 +0 0.1394 +0 0.7324 +0 0.1299 +0 0.0386 +0 0.0668 +0 0.0800 +0 0.4538 +0 0.0805 +0 0.3948 +0 0.0734 +0 0.0863 +0 0.1215 +0 0.1871 +0 0.1759 +0 0.0835 +0 0.0568 +0 0.0350 +0 0.1130 +0 0.1178 +0 0.1001 +0 0.2177 +0 0.1461 +0 0.0525 +0 0.0714 +0 0.0600 +0 0.4661 +0 0.1529 +0 0.1485 +0 0.7183 +0 0.0535 +0 0.5137 +0 0.0799 +0 0.1622 +0 0.0748 +0 0.0895 +0 0.0690 +0 0.1859 +0 0.0557 +0 0.1492 +0 0.2728 +0 0.0470 +0 0.1740 +0 0.1659 +0 0.1347 +0 0.0509 +1 0.8236 +0 0.0874 +0 0.0442 +0 0.1118 +0 0.0353 +0 0.0465 +0 0.5131 +0 0.1324 +0 0.1065 +0 0.0818 +0 0.0870 +0 0.0563 +0 0.0556 +0 0.0688 +0 0.1724 +0 0.1765 +0 0.0868 +0 0.0535 +0 0.0961 +0 0.5979 +0 0.1047 +0 0.0556 +0 0.2199 +0 0.1184 +0 0.1003 +0 0.1100 +0 0.0735 +0 0.1713 +0 0.0928 +0 0.1277 +0 0.2625 +0 0.1067 +0 0.0867 +0 0.1613 +0 0.5439 +0 0.1040 +0 0.1627 +0 0.2957 +0 0.1971 +0 0.0816 +0 0.1346 +0 0.2181 +0 0.2015 +0 0.1761 +0 0.1803 +1 0.8736 +0 0.0735 +0 0.2045 +0 0.0541 +0 0.3272 +0 0.3199 +0 0.0871 +0 0.1189 +1 0.7851 +0 0.1439 +0 0.0538 +0 0.0806 +0 0.0494 +0 0.0754 +0 0.1003 +0 0.0383 +0 0.0511 +0 0.0751 +0 0.0648 +1 0.8673 +0 0.1427 +0 0.1510 +0 0.0843 +0 0.0890 +0 0.1416 +0 0.0728 +0 0.2287 +0 0.1310 +0 0.1065 +0 0.1460 +0 0.1587 +0 0.0889 +0 0.0800 +0 0.0737 +0 0.1151 +0 0.1172 +0 0.1330 +0 0.0506 +0 0.0498 +0 0.1351 +0 0.0725 +0 0.1180 +0 0.0669 +0 0.1191 +0 0.1013 +0 0.2452 +0 0.5171 +0 0.1856 +0 0.1164 +0 0.0681 +0 0.1365 +0 0.0729 +0 0.0462 +0 0.2503 +0 0.0546 +0 0.0430 +0 0.4539 +0 0.0935 +0 0.1811 +0 0.0969 +0 0.0970 +0 0.0974 +0 0.0564 +0 0.0895 +0 0.0364 +0 0.0733 +0 0.1087 +0 0.1938 +1 0.7961 +0 0.1348 +0 0.1074 +0 0.0955 +0 0.0957 +0 0.0403 +0 0.1055 +0 0.0780 +1 0.7603 +0 0.0632 +0 0.0545 +0 0.0350 +0 0.0396 +0 0.2540 +0 0.3048 +0 0.2421 +0 0.0460 +0 0.1551 +0 0.0845 +0 0.2009 +0 0.4774 +0 0.1113 +0 0.1005 +0 0.1159 +0 0.1497 +0 0.4039 +0 0.4940 +0 0.1067 +0 0.2212 +0 0.1406 +0 0.1342 +0 0.1049 +0 0.1952 +0 0.0859 +0 0.0546 +0 0.1302 +0 0.2026 +0 0.1475 +0 0.0747 +0 0.2205 +0 0.0490 +0 0.0572 +0 0.0419 +0 0.5293 +0 0.0533 +0 0.1270 +0 0.0647 +0 0.1012 +0 0.1172 +0 0.0995 +0 0.1279 +0 0.2676 +0 0.0640 +0 0.0717 +0 0.1565 +0 0.0524 +0 0.4122 +0 0.0540 +0 0.0710 +0 0.0707 +0 0.0758 +0 0.0356 +0 0.1927 +0 0.1242 +0 0.3185 +0 0.1089 +0 0.0906 +0 0.0868 +0 0.0505 +0 0.1207 +0 0.1757 +0 0.1083 +0 0.0643 +0 0.0645 +0 0.1454 +0 0.0813 +0 0.1975 +0 0.1103 +0 0.0968 +0 0.0538 +0 0.0568 +0 0.0605 +0 0.7351 +0 0.0954 +0 0.1205 +0 0.0647 +0 0.0892 +0 0.1279 +0 0.4018 +0 0.0885 +0 0.1764 +0 0.0440 +0 0.1150 +0 0.0684 +0 0.0762 +0 0.1124 +0 0.2382 +0 0.0860 +0 0.0925 +0 0.1842 +0 0.2873 +0 0.0962 +0 0.0521 +0 0.0846 +0 0.0726 +0 0.1130 +0 0.0478 +0 0.0533 +1 0.8223 +0 0.0834 +0 0.2381 +0 0.0731 +0 0.1314 +0 0.1227 +0 0.1296 +0 0.1109 +0 0.1770 +0 0.0578 +0 0.3977 +0 0.1016 +0 0.0415 +0 0.2104 +0 0.1026 +0 0.0968 +0 0.1242 +0 0.1456 +0 0.4347 +0 0.0964 +0 0.1766 +0 0.1006 +0 0.1189 +0 0.1589 +0 0.0438 +0 0.1481 +0 0.2195 +0 0.0953 +0 0.0867 +0 0.0715 +0 0.1428 +0 0.1164 +0 0.2363 +0 0.1970 +0 0.0630 +0 0.1628 +0 0.0518 +0 0.0885 +0 0.0852 +0 0.7359 +0 0.0742 +0 0.1608 +0 0.1280 +0 0.0569 +0 0.1682 +0 0.2687 +0 0.0991 +0 0.1559 +1 0.8169 +0 0.0870 +0 0.5671 +0 0.0793 +0 0.0593 +0 0.1332 +0 0.1119 +0 0.1131 +0 0.1211 +0 0.0577 +0 0.3698 +1 0.8235 +0 0.1339 +0 0.0907 +0 0.0495 +0 0.0975 +0 0.1412 +0 0.0599 +0 0.1937 +0 0.6889 +0 0.1670 +0 0.1850 +0 0.1570 +0 0.1097 +0 0.0332 +0 0.2447 +0 0.0764 +0 0.1049 +0 0.0569 +0 0.0685 +0 0.2856 +0 0.2886 +0 0.1011 +0 0.1700 +0 0.1249 +0 0.1584 +0 0.0688 +0 0.1637 +0 0.2081 +0 0.1159 +0 0.1453 +0 0.0907 +0 0.0345 +0 0.0468 +0 0.0871 +0 0.0352 +0 0.0413 +0 0.0795 +0 0.0733 +0 0.0488 +0 0.2399 +0 0.0896 +0 0.0744 +0 0.1476 +0 0.0978 +0 0.1520 +0 0.0379 +0 0.1976 +0 0.1047 +0 0.2310 +1 0.7733 +0 0.0685 +0 0.1383 +0 0.1500 +0 0.0790 +0 0.0860 +0 0.0920 +0 0.0831 +0 0.1129 +0 0.5996 +1 0.8170 +0 0.4587 +0 0.1040 +0 0.2267 +0 0.0554 +0 0.0458 +0 0.2454 +0 0.1025 +0 0.0856 +0 0.0940 +0 0.1582 +0 0.0946 +0 0.0328 +0 0.0742 +0 0.0517 +0 0.1177 +0 0.1043 +0 0.0865 +0 0.0563 +0 0.0969 +0 0.1428 +0 0.1161 +0 0.0984 +0 0.0615 +0 0.1249 +0 0.3606 +0 0.0601 +0 0.0528 +0 0.0557 +0 0.0574 +0 0.1287 +0 0.1352 +0 0.0557 +0 0.0671 +0 0.1242 +0 0.1430 +0 0.0442 +0 0.1253 +0 0.0973 +0 0.0548 +0 0.2429 +0 0.4237 +0 0.0987 +0 0.2147 +0 0.0810 +0 0.2626 +0 0.1310 +0 0.1848 +0 0.3094 +0 0.0778 +0 0.2687 +0 0.1638 +0 0.1026 +0 0.1267 +0 0.1257 +0 0.0394 +0 0.1106 +0 0.0741 +0 0.4586 +0 0.0830 +0 0.1618 +0 0.0696 +0 0.0833 +0 0.1771 +0 0.1441 +0 0.1012 +0 0.0826 +0 0.0725 +0 0.2956 +0 0.0698 +0 0.1384 +0 0.1456 +0 0.0967 +0 0.1666 +0 0.4398 +0 0.1122 +0 0.3698 +0 0.1248 +0 0.1580 +0 0.0521 +0 0.0939 +0 0.0926 +0 0.0978 +0 0.1882 +0 0.0904 +0 0.1270 +0 0.1884 +0 0.1221 +0 0.1341 +0 0.0907 +0 0.0705 +0 0.0505 +0 0.0669 +0 0.0973 +0 0.1299 +0 0.1743 +0 0.0819 +0 0.0782 +0 0.1289 +0 0.0956 +0 0.0778 +0 0.2526 +0 0.0827 +0 0.0641 +0 0.0453 +0 0.2591 +0 0.2995 +1 0.7721 +0 0.0615 +0 0.0991 +0 0.1678 +0 0.1187 +0 0.2233 +0 0.6185 +0 0.0634 +0 0.0974 +0 0.1547 +0 0.0366 +0 0.0824 +0 0.0869 +0 0.1097 +1 0.7792 +0 0.0641 +0 0.0508 +0 0.1826 +0 0.1805 +0 0.2558 +0 0.0936 +0 0.0551 +0 0.0874 +0 0.0640 +0 0.1416 +0 0.1340 +0 0.2597 +0 0.1111 +0 0.1400 +0 0.0425 +0 0.0558 +0 0.1474 +0 0.0271 +0 0.0955 +0 0.1187 +0 0.1828 +0 0.1297 +0 0.1103 +0 0.0557 +0 0.0581 +0 0.5718 +0 0.0630 +0 0.0863 +0 0.1117 +0 0.1432 +0 0.1881 +0 0.4058 +0 0.1532 +0 0.2089 +0 0.1082 +0 0.1814 +0 0.1289 +0 0.2289 +0 0.0863 +0 0.2997 +0 0.0875 +0 0.2256 +0 0.4179 +0 0.2252 +0 0.4910 +0 0.7177 +0 0.0997 +0 0.1484 +0 0.0490 +0 0.1246 +0 0.0849 +0 0.1000 +0 0.1566 +0 0.1215 +0 0.2324 +0 0.1297 +0 0.0912 +0 0.1232 +0 0.1239 +0 0.0471 +0 0.0558 +0 0.0771 +0 0.1009 +0 0.0832 +0 0.4625 +0 0.1916 +0 0.5973 +0 0.2221 +0 0.0818 +0 0.2783 +0 0.1854 +0 0.0987 +0 0.0419 +0 0.0799 +0 0.1448 +0 0.1177 +0 0.0674 +0 0.0504 +0 0.0960 +0 0.1431 +0 0.1303 +0 0.1017 +0 0.0920 +0 0.1000 +0 0.1308 +0 0.0315 +0 0.0758 +0 0.5068 +0 0.1012 +0 0.0816 +0 0.2038 +0 0.0507 +0 0.0817 +0 0.0771 +0 0.1643 +0 0.0706 +0 0.0434 +0 0.1483 +0 0.4079 +0 0.0871 +0 0.0612 +0 0.0895 +0 0.0625 +0 0.1461 +0 0.0954 +0 0.1116 +0 0.4750 +0 0.1252 +0 0.1094 +0 0.0906 +0 0.0357 +0 0.0920 +0 0.0592 +0 0.1254 +0 0.0518 +0 0.2444 +0 0.0661 +0 0.0521 +0 0.1321 +0 0.1619 +0 0.0534 +0 0.1092 +0 0.3403 +0 0.2225 +0 0.1118 +0 0.0977 +0 0.0554 +0 0.0429 +0 0.1469 +0 0.1073 +0 0.4205 +0 0.1058 +0 0.1318 +0 0.1467 +0 0.1739 +0 0.1041 +0 0.1367 +0 0.0885 +0 0.1207 +0 0.0951 +0 0.2101 +0 0.1179 +0 0.1618 +0 0.1283 +0 0.2654 +0 0.0406 +0 0.1390 +0 0.1098 +0 0.1131 +0 0.0542 +0 0.1123 +0 0.2044 +0 0.0665 +0 0.0331 +0 0.1526 +0 0.0743 +0 0.0682 +0 0.1549 +0 0.0398 +0 0.0760 +0 0.3105 +0 0.1006 +0 0.0514 +0 0.1196 +0 0.0947 +0 0.1164 +0 0.0798 +0 0.0400 +0 0.1754 +0 0.3693 +0 0.0842 +0 0.1149 +0 0.0855 +0 0.0378 +0 0.0534 +0 0.1135 +0 0.2225 +0 0.0544 +0 0.2778 +0 0.1177 +0 0.0833 +0 0.0943 +0 0.1569 +0 0.1344 +0 0.0899 +0 0.0599 +1 0.7783 +0 0.0686 +0 0.0466 +0 0.1138 +0 0.0868 +1 0.7614 +0 0.1403 +0 0.1462 +0 0.2640 +0 0.0672 +0 0.1273 +0 0.0733 +0 0.1123 +0 0.1430 +0 0.3178 +0 0.0961 +0 0.1755 +0 0.1970 +0 0.1665 +0 0.0774 +0 0.0670 +0 0.1050 +0 0.1117 +0 0.3172 +0 0.0863 +0 0.2547 +0 0.1122 +0 0.0539 +0 0.0699 +0 0.1243 +0 0.1038 +0 0.1505 +0 0.0818 +0 0.0699 +0 0.1021 +0 0.0715 +0 0.0880 +0 0.0465 +0 0.2036 +0 0.1280 +0 0.0870 +0 0.1112 +0 0.0892 +0 0.0429 +0 0.0732 +0 0.1308 +0 0.1914 +0 0.0395 +0 0.0741 +0 0.0882 +0 0.0925 +0 0.0414 +0 0.1600 +0 0.1991 +0 0.0832 +0 0.2546 +0 0.2840 +0 0.0704 +0 0.0866 +0 0.0512 +0 0.3018 +0 0.0620 +0 0.0800 +0 0.2287 +0 0.1356 +0 0.0459 +0 0.0718 +0 0.0867 +0 0.5212 +0 0.0455 +0 0.0851 +0 0.0420 +0 0.1055 +0 0.0755 +0 0.1566 +0 0.2179 +0 0.1998 +0 0.1682 +0 0.1020 +0 0.2290 +0 0.0605 +0 0.0519 +0 0.0843 +0 0.0461 +0 0.2260 +0 0.1889 +0 0.2113 +0 0.1212 +0 0.1265 +0 0.0404 +0 0.0379 +0 0.2873 +0 0.1084 +0 0.0401 +0 0.2000 +0 0.0641 +0 0.1061 +0 0.1134 +0 0.0457 +0 0.1287 +0 0.2052 +0 0.1405 +0 0.0609 +0 0.1354 +0 0.1689 +0 0.2263 +1 0.7543 +0 0.1776 +0 0.0369 +0 0.0659 +0 0.5145 +0 0.2059 +0 0.1459 +0 0.0880 +0 0.0575 +1 0.7887 +0 0.3290 +0 0.0895 +0 0.0639 +0 0.0846 +0 0.3519 +0 0.0812 +0 0.1429 +0 0.1260 +0 0.0759 +0 0.2096 +0 0.0689 +0 0.0601 +0 0.0908 +0 0.0653 +0 0.1861 +0 0.0431 +0 0.0715 +0 0.2520 +0 0.0396 +0 0.0649 +0 0.0677 +0 0.0645 +0 0.0782 +0 0.1890 +0 0.0491 +0 0.0619 +0 0.1596 +0 0.0447 +0 0.2620 +0 0.3145 +0 0.0482 +1 0.7527 +0 0.0559 +0 0.0711 +0 0.1614 +0 0.5100 +0 0.0708 +0 0.0752 +0 0.1143 +0 0.0638 +0 0.1684 +0 0.1742 +0 0.0529 +0 0.1196 +0 0.1066 +0 0.1136 +0 0.0857 +0 0.0548 +0 0.0570 +0 0.0512 +0 0.6075 +0 0.0948 +0 0.0383 +0 0.1151 +0 0.0891 +0 0.0988 +0 0.0711 +0 0.1796 +0 0.1174 +0 0.2457 +0 0.2178 +0 0.0779 +0 0.0593 +0 0.1287 +0 0.0731 +0 0.2008 +0 0.0969 +0 0.0914 +0 0.1584 +0 0.1526 +0 0.1128 +0 0.0376 +0 0.1137 +0 0.1802 +0 0.1431 +0 0.2250 +0 0.0324 +0 0.1504 +0 0.2315 +0 0.1147 +0 0.1660 +0 0.0884 +0 0.2268 +0 0.0865 +0 0.6595 +0 0.0386 +0 0.0613 +0 0.0311 +0 0.1301 +0 0.2980 +0 0.0806 +0 0.0745 +0 0.0831 +0 0.0510 +0 0.0978 +0 0.6445 +0 0.0703 +0 0.2952 +0 0.1612 +0 0.0805 +0 0.1383 +0 0.0511 +0 0.0599 +0 0.0548 +1 0.8069 +0 0.0724 +0 0.2021 +0 0.0896 +0 0.0344 +0 0.0387 +0 0.0879 +0 0.0746 +0 0.3696 +0 0.0719 +0 0.1179 +0 0.0624 +0 0.0585 +0 0.1725 +0 0.1103 +0 0.1774 +0 0.2386 +0 0.1900 +0 0.1459 +0 0.1037 +0 0.0599 +0 0.0949 +0 0.2197 +0 0.0286 +0 0.1145 +0 0.1164 +0 0.0719 +0 0.0742 +0 0.0953 +0 0.1340 +0 0.0615 +0 0.2392 +0 0.1446 +0 0.0747 +0 0.1002 +0 0.0993 +0 0.0601 +0 0.1637 +0 0.0920 +0 0.2963 +0 0.1509 +0 0.1181 +0 0.0431 +0 0.0576 +0 0.0750 +0 0.3626 +0 0.0401 +0 0.1770 +0 0.1659 +0 0.2068 +0 0.1008 +0 0.0614 +0 0.2675 +0 0.1642 +0 0.0623 +0 0.2158 +0 0.0647 +0 0.0621 +0 0.1430 +0 0.1079 +0 0.1587 +0 0.1635 +0 0.1739 +0 0.0747 +0 0.0515 +0 0.1789 +0 0.1565 +0 0.1199 +0 0.1923 +0 0.0852 +0 0.0858 +0 0.2647 +0 0.2430 +0 0.2242 +0 0.0942 +0 0.1734 +0 0.1633 +0 0.0465 +0 0.1022 +0 0.0942 +0 0.0812 +0 0.5873 +0 0.0996 +0 0.0579 +0 0.0627 +0 0.0857 +0 0.0790 +0 0.3576 +0 0.1451 +0 0.5120 +0 0.1096 +0 0.2841 +0 0.0716 +0 0.1160 +0 0.1228 +0 0.0613 +0 0.0967 +0 0.1768 +0 0.2152 +0 0.0756 +1 0.8136 +0 0.1271 +0 0.0610 +0 0.0633 +0 0.1492 +0 0.0967 +0 0.1435 +0 0.0644 +0 0.1226 +0 0.1508 +0 0.2290 +0 0.0639 +0 0.1106 +0 0.1997 +0 0.0843 +0 0.1623 +0 0.0359 +0 0.0979 +0 0.2020 +0 0.2179 +0 0.0617 +0 0.3514 +0 0.1597 +0 0.0672 +0 0.1096 +0 0.1093 +0 0.7267 +0 0.1815 +0 0.0654 +0 0.0361 +0 0.1689 +0 0.1683 +0 0.0823 +0 0.0839 +0 0.0511 +0 0.0668 +0 0.0834 +0 0.1405 +0 0.1533 +0 0.0907 +0 0.0675 +0 0.2385 +0 0.0967 +0 0.2666 +0 0.1927 +0 0.1840 +0 0.1575 +0 0.0451 +0 0.0444 +0 0.1241 +0 0.0780 +0 0.1133 +0 0.0581 +0 0.0550 +0 0.2191 +0 0.0724 +0 0.1235 +0 0.1440 +0 0.0592 +0 0.1080 +0 0.1733 +0 0.1312 +0 0.0908 +0 0.0901 +0 0.1039 +0 0.1217 +0 0.0754 +0 0.6736 +0 0.0793 +0 0.2085 +0 0.0357 +0 0.0911 +0 0.1822 +0 0.1040 +0 0.0412 +0 0.0731 +0 0.1562 +0 0.0573 +0 0.0663 +0 0.2106 +0 0.2628 +0 0.0612 +0 0.1825 +0 0.1529 +0 0.0748 +0 0.0712 +0 0.0984 +0 0.1160 +0 0.1571 +0 0.0698 +0 0.0835 +0 0.1159 +0 0.1695 +0 0.0887 +0 0.0805 +0 0.1787 +0 0.0736 +0 0.1538 +0 0.4132 +0 0.1322 +0 0.0451 +0 0.0860 +0 0.0852 +0 0.1048 +0 0.0716 +0 0.0470 +0 0.1078 +0 0.0882 +0 0.0387 +0 0.1259 +0 0.0981 +0 0.2108 +0 0.3733 +0 0.2077 +0 0.1031 +0 0.1941 +0 0.1109 +0 0.0480 +0 0.0534 +0 0.1646 +0 0.3908 +0 0.1032 +0 0.1050 +0 0.1460 +0 0.6373 +0 0.0650 +0 0.1138 +0 0.1166 +0 0.0551 +0 0.0484 +0 0.0747 +0 0.3458 +0 0.2548 +0 0.0827 +0 0.0999 +0 0.3487 +0 0.1403 +0 0.0877 +0 0.1108 +0 0.2802 +0 0.1011 +0 0.0879 +0 0.1017 +0 0.4034 +0 0.1527 +0 0.1415 +0 0.1207 +1 0.8513 +0 0.0572 +0 0.0481 +0 0.1328 +0 0.0733 +0 0.1597 +0 0.0613 +0 0.0846 +0 0.0845 +0 0.0920 +0 0.0509 +0 0.1227 +0 0.0677 +0 0.0915 +0 0.0529 +0 0.7386 +0 0.1239 +0 0.1767 +0 0.1115 +0 0.1661 +0 0.2282 +0 0.1425 +0 0.1462 +0 0.0616 +0 0.5826 +0 0.0905 +0 0.1711 +0 0.2904 +0 0.0810 +0 0.1451 +0 0.0920 +0 0.0340 +0 0.0870 +0 0.0861 +0 0.0928 +0 0.0553 +0 0.0815 +0 0.0742 +0 0.0492 +0 0.0425 +0 0.0609 +0 0.1030 +0 0.0443 +0 0.0988 +0 0.0833 +0 0.0512 +0 0.0774 +0 0.0724 +0 0.1363 +0 0.2734 +0 0.1092 +0 0.1093 +0 0.1425 +0 0.0689 +0 0.1878 +0 0.1687 +0 0.0841 +0 0.0323 +0 0.0882 +0 0.2912 +0 0.0586 +0 0.4197 +1 0.8367 +0 0.0809 +0 0.1851 +0 0.0620 +0 0.0856 +0 0.2482 +0 0.0751 +0 0.0676 +0 0.2632 +0 0.3234 +0 0.1316 +0 0.1721 +0 0.0705 +0 0.0835 +0 0.0661 +0 0.0414 +0 0.0757 +0 0.0908 +0 0.0527 +0 0.1233 +0 0.2413 +0 0.1756 +0 0.0498 +0 0.2878 +0 0.0844 +0 0.4245 +0 0.1027 +0 0.2615 +0 0.1377 +0 0.0521 +0 0.1302 +0 0.0898 +0 0.0615 +0 0.2825 +0 0.0555 +0 0.1157 +0 0.2607 +0 0.1449 +0 0.0471 +0 0.0838 +0 0.5451 +0 0.1820 +0 0.3044 +0 0.2653 +0 0.0369 +0 0.2873 +0 0.0924 +0 0.0457 +0 0.2506 +0 0.0585 +0 0.0813 +0 0.0612 +0 0.0835 +0 0.0936 +0 0.0796 +0 0.1431 +0 0.0845 +0 0.0722 +0 0.0793 +0 0.0397 +0 0.2685 +0 0.0936 +0 0.2249 +0 0.2661 +0 0.0927 +0 0.0930 +0 0.0869 +0 0.2806 +0 0.0591 +0 0.5040 +0 0.1972 +0 0.1039 +0 0.1365 +0 0.2904 +0 0.1353 +0 0.0982 +0 0.1197 +0 0.0441 +0 0.4731 +0 0.0754 +0 0.1147 +0 0.3143 +0 0.0976 +0 0.0610 +0 0.0867 +0 0.0752 +0 0.1837 +0 0.0779 +0 0.0413 +0 0.1792 +0 0.0852 +0 0.0760 +0 0.1078 +0 0.0433 +0 0.1784 +0 0.1281 +0 0.0503 +0 0.0806 +0 0.1145 +0 0.1239 +0 0.1777 +0 0.0540 +0 0.0592 +0 0.1301 +0 0.0747 +0 0.2586 +0 0.0512 +0 0.1914 +0 0.2662 +0 0.0834 +0 0.0389 +0 0.0909 +0 0.1092 +0 0.0624 +0 0.1133 +0 0.2714 +0 0.2041 +0 0.0823 +0 0.0701 +0 0.1170 +0 0.0477 +0 0.0423 +0 0.1530 +0 0.0525 +0 0.2776 +0 0.2328 +0 0.1641 +0 0.0630 +0 0.0769 +0 0.2165 +0 0.1604 +0 0.0520 +0 0.0934 +0 0.1272 +0 0.0555 +0 0.3030 +0 0.2228 +0 0.3622 +0 0.1276 +0 0.0661 +0 0.1116 +0 0.6757 +0 0.0974 +0 0.2287 +0 0.1920 +0 0.0786 +0 0.1418 +0 0.0728 +0 0.0542 +0 0.3712 +0 0.7305 +0 0.0406 +0 0.0763 +0 0.1572 +0 0.0734 +0 0.1859 +0 0.1008 +0 0.0989 +0 0.0822 +0 0.1141 +0 0.6774 +0 0.0757 +0 0.0730 +0 0.0754 +0 0.7264 +0 0.0978 +0 0.0630 +0 0.0367 +0 0.1030 +0 0.0745 +0 0.0369 +0 0.0610 +0 0.1279 +0 0.0445 +0 0.2579 +0 0.2250 +0 0.2747 +0 0.2397 +0 0.0408 +0 0.0994 +1 0.8672 +0 0.0691 +0 0.0794 +0 0.0511 +0 0.2282 +0 0.1664 +0 0.0496 +0 0.1775 +0 0.3780 +0 0.2490 +0 0.0678 +0 0.3138 +0 0.2261 +0 0.0423 +0 0.1100 +0 0.0548 +0 0.4264 +0 0.4262 +0 0.5697 +1 0.7719 +0 0.0941 +0 0.1029 +0 0.0962 +0 0.0910 +0 0.1159 +0 0.0654 +0 0.0514 +0 0.0425 +0 0.0801 +0 0.1247 +0 0.2856 +0 0.0944 +0 0.0468 +0 0.1051 +0 0.0667 +0 0.0751 +0 0.1357 +0 0.3606 +0 0.0918 +0 0.0829 +0 0.0920 +0 0.2063 +0 0.1116 +0 0.0609 +0 0.0397 +0 0.3067 +0 0.1317 +0 0.0458 +0 0.0624 +0 0.1373 +0 0.0577 +0 0.5356 +0 0.0494 +0 0.1142 +0 0.1072 +0 0.1714 +0 0.2063 +0 0.1520 +0 0.0491 +0 0.1424 +0 0.0652 +0 0.2484 +0 0.0589 +0 0.3271 +0 0.2088 +0 0.1726 +0 0.1742 +0 0.1307 +0 0.0850 +0 0.0672 +0 0.0601 +0 0.1767 +0 0.0662 +0 0.0895 +0 0.0527 +0 0.2286 +0 0.0870 +0 0.1765 +0 0.0435 +0 0.1296 +0 0.0827 +0 0.0750 +0 0.1762 +0 0.0385 +0 0.0658 +0 0.0645 +0 0.1425 +0 0.1991 +0 0.2472 +0 0.0845 +0 0.1239 +0 0.0786 +0 0.0591 +0 0.1800 +0 0.1234 +0 0.1396 +0 0.0964 +0 0.0597 +0 0.0851 +0 0.0560 +0 0.4132 +0 0.0528 +0 0.0619 +0 0.6706 +0 0.1427 +0 0.1026 +0 0.0699 +0 0.0921 +0 0.0508 +0 0.1334 +0 0.0567 +0 0.0669 +0 0.0317 +0 0.6146 +0 0.3246 +0 0.0432 +0 0.0532 +0 0.1667 +0 0.1208 +0 0.1564 +0 0.0792 +0 0.0564 +0 0.1763 +0 0.1199 +0 0.3396 +0 0.3574 +0 0.0804 +0 0.1835 +0 0.2302 +0 0.0960 +0 0.2617 +0 0.2970 +0 0.1963 +0 0.0824 +0 0.1370 +0 0.0815 +0 0.0549 +0 0.0852 +0 0.0809 +0 0.1092 +0 0.1127 +0 0.1048 +0 0.1248 +0 0.1213 +0 0.0793 +0 0.1039 +0 0.2158 +0 0.0820 +0 0.0450 +0 0.0837 +0 0.1101 +0 0.0996 +0 0.5444 +0 0.0768 +0 0.6926 +0 0.0773 +0 0.2271 +0 0.0559 +0 0.1009 +0 0.1705 +0 0.1087 +0 0.0959 +0 0.0406 +0 0.1328 +0 0.0590 +0 0.0885 +0 0.0559 +0 0.1622 +0 0.1976 +0 0.1131 +0 0.2235 +1 0.7909 +0 0.1863 +0 0.1154 +0 0.2107 +0 0.0341 +0 0.3086 +0 0.1285 +0 0.3364 +0 0.0732 +0 0.0450 +0 0.0544 +0 0.1600 +0 0.0462 +0 0.1798 +0 0.0572 +0 0.2303 +0 0.2864 +0 0.1537 +0 0.1120 +0 0.1108 +0 0.0892 +0 0.1645 +0 0.2200 +0 0.1093 +0 0.1246 +0 0.1939 +0 0.0860 +0 0.1944 +0 0.0755 +1 0.7858 +0 0.0946 +0 0.1511 +0 0.1612 +0 0.0684 +0 0.1877 +0 0.0787 +0 0.1502 +0 0.0680 +0 0.1351 +0 0.2086 +0 0.0797 +0 0.0517 +0 0.0608 +0 0.0723 +0 0.4167 +0 0.0609 +0 0.0671 +0 0.0713 +0 0.1232 +0 0.1977 +0 0.1894 +0 0.2506 +0 0.2796 +0 0.0961 +0 0.1173 +0 0.1247 +0 0.0929 +0 0.0797 +1 0.7804 +0 0.1938 +0 0.1162 +0 0.1004 +0 0.0963 +0 0.2697 +0 0.4584 +0 0.0703 +0 0.1506 +0 0.1419 +0 0.0570 +0 0.1334 +0 0.0702 +0 0.1107 +0 0.3036 +0 0.1151 +0 0.1243 +0 0.5857 +0 0.0591 +0 0.2582 +0 0.0904 +0 0.7382 +0 0.1375 +0 0.1305 +0 0.1094 +0 0.1085 +0 0.6928 +0 0.0961 +0 0.1016 +0 0.1515 +0 0.1412 +0 0.1494 +0 0.0969 +0 0.0763 +0 0.6627 +0 0.1625 +0 0.1438 +0 0.0926 +0 0.0710 +0 0.0801 +0 0.2079 +0 0.1616 +0 0.3022 +0 0.0738 +0 0.3544 +0 0.1187 +0 0.1127 +0 0.1142 +0 0.0763 +0 0.1117 +1 0.8657 +0 0.0482 +0 0.3978 +0 0.1916 +0 0.0520 +0 0.1020 +0 0.2145 +0 0.0824 +0 0.1537 +0 0.0935 +0 0.2658 +0 0.2543 +0 0.0730 +1 0.8280 +0 0.1257 +0 0.0788 +0 0.1026 +0 0.1073 +0 0.0695 +0 0.1010 +0 0.0400 +0 0.1040 +0 0.0829 +0 0.0566 +0 0.0978 +0 0.4933 +0 0.1217 +0 0.0861 +0 0.0624 +0 0.1469 +0 0.2474 +0 0.0921 +0 0.1558 +0 0.0900 +0 0.2467 +0 0.1992 +0 0.1769 +0 0.0728 +0 0.1037 +0 0.1063 +0 0.1717 +0 0.0581 +0 0.0625 +0 0.0609 +0 0.0681 +0 0.1961 +0 0.0637 +0 0.0375 +0 0.0826 +0 0.0681 +0 0.1135 +0 0.0764 +0 0.0656 +0 0.2535 +0 0.1599 +0 0.1149 +0 0.2268 +0 0.0996 +0 0.0865 +0 0.3902 +0 0.1100 +0 0.0743 +0 0.3259 +0 0.0865 +0 0.0830 +0 0.0726 +0 0.0677 +0 0.1325 +0 0.1143 +0 0.0626 +0 0.1100 +0 0.0536 +0 0.0719 +0 0.1888 +0 0.0958 +0 0.0699 +0 0.0502 +0 0.4699 +0 0.0517 +0 0.1516 +0 0.1837 +0 0.0823 +0 0.0784 +0 0.2143 +0 0.0376 +0 0.0761 +0 0.0996 +0 0.0903 +0 0.0662 +0 0.1421 +0 0.1814 +0 0.0680 +0 0.0424 +0 0.0975 +0 0.0860 +0 0.0958 +0 0.3059 +0 0.1177 +0 0.7301 +0 0.1051 +0 0.1990 +0 0.0402 +0 0.1066 +0 0.2791 +0 0.0880 +0 0.0540 +0 0.0820 +0 0.0634 +0 0.7379 +0 0.1285 +1 0.7603 +0 0.1910 +0 0.0589 +0 0.3329 +0 0.0779 +0 0.0724 +1 0.7832 +0 0.1959 +0 0.0946 +0 0.0923 +0 0.0865 +0 0.0435 +0 0.0870 +0 0.0698 +0 0.0321 +0 0.1410 +1 0.7782 +0 0.0874 +0 0.1519 +0 0.0816 +0 0.1005 +0 0.0612 +0 0.0605 +0 0.2053 +0 0.0744 +0 0.0892 +0 0.2924 +0 0.0825 +0 0.1032 +0 0.0704 +0 0.1008 +0 0.1483 +0 0.0667 +0 0.0967 +1 0.7665 +1 0.8203 +0 0.1072 +0 0.0831 +0 0.1860 +0 0.0857 +0 0.0908 +0 0.0491 +0 0.1043 +0 0.1915 +0 0.2766 +0 0.1650 +0 0.0453 +0 0.1375 +0 0.0941 +0 0.0627 +0 0.1916 +0 0.1943 +0 0.0438 +0 0.1422 +0 0.0997 +0 0.1715 +0 0.1833 +0 0.1788 +0 0.1026 +0 0.0767 +0 0.1572 +0 0.1242 +0 0.3449 +0 0.2975 +0 0.2862 +0 0.2296 +0 0.1346 +0 0.1570 +0 0.1159 +0 0.0876 +0 0.1312 +0 0.0928 +0 0.2109 +0 0.2337 +0 0.1009 +0 0.0470 +0 0.0871 +0 0.0441 +0 0.0698 +0 0.0667 +0 0.1954 +0 0.4706 +0 0.0835 +0 0.0577 +0 0.0889 +0 0.1090 +0 0.0583 +0 0.1658 +0 0.0729 +0 0.0966 +0 0.1019 +0 0.3759 +0 0.1072 +0 0.1640 +0 0.3078 +0 0.0991 +0 0.2512 +0 0.1472 +0 0.1004 +0 0.3339 +0 0.1044 +0 0.1256 +0 0.0685 +0 0.1784 +0 0.1334 +0 0.0718 +0 0.0842 +0 0.0868 +0 0.2749 +0 0.2382 +0 0.1158 +0 0.1432 +0 0.1906 +0 0.5754 +0 0.6733 +0 0.5721 +0 0.1618 +0 0.1616 +0 0.1078 +0 0.2438 +0 0.1881 +0 0.0852 +0 0.1378 +0 0.0339 +0 0.0490 +0 0.1044 +0 0.1434 +0 0.1687 +0 0.1712 +0 0.0683 +0 0.1926 +0 0.0724 +0 0.1252 +0 0.2433 +0 0.1608 +0 0.3152 +0 0.0745 +0 0.1598 +0 0.0397 +0 0.2525 +0 0.0764 +0 0.6970 +0 0.0695 +0 0.0924 +0 0.2895 +0 0.0789 +0 0.1850 +0 0.1342 +0 0.1431 +0 0.2258 +0 0.4813 +0 0.1845 +0 0.2183 +0 0.2506 +0 0.0940 +0 0.0735 +0 0.1310 +0 0.1016 +0 0.1268 +0 0.1305 +0 0.1248 +0 0.3774 +0 0.1294 +0 0.0369 +0 0.0766 +0 0.0602 +0 0.0851 +1 0.8586 +0 0.0945 +0 0.1014 +0 0.4524 +0 0.0462 +0 0.1970 +0 0.0622 +0 0.0688 +0 0.1157 +0 0.4078 +0 0.1101 +0 0.0384 +0 0.1327 +0 0.1529 +0 0.1502 +0 0.0577 +0 0.1375 +0 0.1315 +0 0.1740 +0 0.2454 +0 0.0612 +0 0.1442 +0 0.1244 +0 0.3945 +0 0.1165 +0 0.1303 +0 0.6346 +0 0.0345 +0 0.0288 +0 0.0404 +0 0.1184 +0 0.0676 +0 0.1007 +0 0.1282 +0 0.0623 +0 0.0469 +0 0.1269 +0 0.0724 +0 0.1907 +0 0.0577 +0 0.0738 +0 0.1319 +0 0.1750 +1 0.7861 +0 0.2809 +0 0.0498 +0 0.0954 +0 0.0756 +0 0.1068 +0 0.1774 +0 0.1918 +0 0.1381 +0 0.0990 +0 0.1055 +0 0.0491 +0 0.4324 +0 0.0599 +0 0.0474 +0 0.0696 +0 0.1056 +0 0.0837 +0 0.0737 +0 0.0670 +0 0.1146 +0 0.0626 +0 0.1108 +0 0.4153 +0 0.0749 +0 0.0867 +0 0.0942 +0 0.1305 +0 0.1171 +0 0.0780 +0 0.0951 +0 0.3884 +0 0.0386 +0 0.2010 +0 0.5712 +0 0.1032 +0 0.2394 +0 0.0923 +0 0.1920 +0 0.0646 +0 0.1040 +0 0.0592 +0 0.1255 +0 0.0500 +0 0.1020 +0 0.0830 +0 0.2014 +0 0.1303 +0 0.4551 +0 0.0472 +0 0.1033 +0 0.1748 +0 0.0920 +0 0.1852 +0 0.1052 +0 0.0838 +0 0.1416 +0 0.2260 +0 0.0473 +0 0.1180 +0 0.1116 +0 0.0778 +0 0.0648 +0 0.0327 +0 0.2216 +0 0.0922 +0 0.0710 +0 0.1166 +0 0.1217 +0 0.2066 +0 0.0668 +0 0.2068 +0 0.0359 +0 0.0406 +0 0.0478 +0 0.1034 +0 0.1396 +0 0.2110 +0 0.0708 +0 0.1062 +0 0.0751 +0 0.0647 +0 0.0803 +0 0.0929 +0 0.1385 +0 0.0902 +0 0.2272 +0 0.0426 +0 0.0787 +0 0.0708 +0 0.0807 +0 0.0560 +0 0.1089 +0 0.1340 +0 0.1026 +0 0.1022 +0 0.1478 +0 0.1117 +0 0.0766 +0 0.1223 +0 0.3972 +0 0.0382 +0 0.1407 +0 0.1973 +0 0.0768 +0 0.1513 +0 0.1521 +0 0.1705 +0 0.1624 +0 0.1041 +0 0.1526 +0 0.0890 +0 0.0770 +0 0.0701 +0 0.0565 +0 0.7315 +0 0.1672 +0 0.2412 +0 0.0961 +0 0.1075 +0 0.2693 +0 0.1419 +0 0.0938 +0 0.2045 +0 0.0801 +0 0.1593 +0 0.0670 +0 0.1683 +0 0.1867 +0 0.0533 +0 0.0557 +0 0.0822 +0 0.1503 +0 0.1006 +0 0.0479 +0 0.1810 +0 0.0876 +0 0.2171 +0 0.1370 +0 0.1376 +0 0.1843 +0 0.3309 +0 0.2262 +0 0.0869 +0 0.0424 +0 0.1557 +0 0.1576 +0 0.1751 +0 0.1119 +0 0.0917 +0 0.1233 +0 0.1207 +0 0.0818 +0 0.0655 +0 0.0935 +0 0.1521 +0 0.2163 +0 0.1180 +0 0.0384 +0 0.2704 +0 0.0730 +0 0.0939 +0 0.0893 +0 0.1867 +0 0.1463 +0 0.0895 +0 0.0649 +0 0.0881 +0 0.2570 +0 0.2183 +0 0.0762 +0 0.0752 +0 0.0530 +0 0.0849 +0 0.1722 +0 0.0639 +0 0.7486 +0 0.2211 +0 0.2195 +0 0.1881 +0 0.1147 +0 0.0555 +0 0.1936 +0 0.1309 +0 0.1016 +0 0.0647 +0 0.3054 +0 0.2134 +0 0.1174 +0 0.0943 +0 0.1277 +0 0.0937 +0 0.0777 +0 0.0866 +0 0.1289 +0 0.2378 +0 0.1374 +0 0.1085 +0 0.1679 +0 0.5450 +0 0.2425 +0 0.6610 +0 0.1535 +0 0.0385 +0 0.0787 +0 0.0725 +0 0.1000 +0 0.0558 +0 0.1262 +0 0.1968 +0 0.4268 +0 0.3798 +0 0.2007 +0 0.0737 +0 0.0683 +0 0.2283 +0 0.4687 +0 0.1145 +0 0.0971 +0 0.0699 +0 0.0315 +0 0.0467 +0 0.0778 +0 0.1401 +0 0.1590 +0 0.0984 +0 0.1454 +0 0.0701 +0 0.1562 +0 0.1267 +0 0.0357 +0 0.1029 +0 0.0565 +0 0.0958 +0 0.1419 +0 0.0542 +0 0.0607 +0 0.2875 +0 0.1448 +0 0.0978 +0 0.0531 +0 0.0760 +0 0.0573 +0 0.3373 +0 0.0763 +0 0.1603 +0 0.1207 +0 0.3338 +0 0.0968 +0 0.2484 +0 0.0992 +0 0.2561 +0 0.1348 +0 0.1125 +0 0.1046 +0 0.0924 +0 0.1098 +0 0.0433 +0 0.3126 +0 0.1047 +0 0.1928 +0 0.0974 +0 0.0691 +0 0.1178 +0 0.0468 +0 0.0750 +0 0.3873 +0 0.1261 +0 0.0991 +0 0.0889 +0 0.1727 +0 0.0740 +0 0.1886 +0 0.5543 +0 0.0734 +0 0.2241 +0 0.0935 +0 0.2166 +0 0.1896 +0 0.0990 +0 0.1064 +0 0.1542 +0 0.0370 +0 0.0769 +0 0.2285 +0 0.1755 +0 0.0791 +0 0.0981 +0 0.0778 +0 0.0727 +0 0.2205 +0 0.0662 +0 0.0817 +0 0.0582 +0 0.0806 +0 0.1146 +0 0.2404 +0 0.0340 +0 0.1789 +0 0.1297 +0 0.1456 +0 0.1369 +0 0.2779 +0 0.0901 +0 0.0944 +0 0.0497 +0 0.1894 +0 0.0559 +0 0.0525 +0 0.5430 +0 0.1004 +0 0.1309 +0 0.1707 +0 0.2193 +0 0.1896 +0 0.1524 +0 0.0929 +0 0.0824 +0 0.1306 +0 0.0564 +0 0.3587 +0 0.2199 +0 0.0593 +0 0.1288 +0 0.2213 +0 0.0408 +0 0.0853 +0 0.0715 +0 0.1022 +0 0.0914 +0 0.1966 +0 0.0668 +0 0.1500 +0 0.1077 +0 0.1321 +0 0.1808 +0 0.0555 +0 0.1068 +0 0.1244 +0 0.0866 +0 0.1624 +0 0.2849 +0 0.1321 +0 0.1043 +0 0.0805 +0 0.0577 +0 0.1474 +0 0.1323 +0 0.1964 +0 0.1711 +0 0.0503 +0 0.0892 +0 0.2362 +0 0.1159 +0 0.0798 +0 0.1425 +0 0.1221 +0 0.1898 +0 0.0583 +0 0.0552 +0 0.3986 +0 0.0606 +0 0.0871 +0 0.1299 +0 0.0775 +0 0.3651 +0 0.0765 +0 0.0935 +0 0.2490 +0 0.0780 +0 0.1303 +0 0.1219 +0 0.1060 +0 0.1108 +0 0.0966 +0 0.0971 +0 0.0478 +0 0.1059 +0 0.0630 +0 0.0734 +0 0.0894 +0 0.2318 +0 0.0624 +0 0.1054 +0 0.0649 +0 0.0779 +0 0.1491 +0 0.0939 +0 0.1059 +0 0.0875 +0 0.1009 +0 0.2531 +0 0.0581 +0 0.1507 +0 0.0847 +0 0.0500 +0 0.1109 +0 0.0492 +0 0.1382 +0 0.1235 +0 0.0778 +0 0.1321 +1 0.7770 +0 0.0983 +0 0.0361 +0 0.0792 +0 0.0968 +0 0.0754 +0 0.1387 +0 0.0488 +0 0.0455 +0 0.0549 +0 0.0333 +0 0.0472 +0 0.1589 +0 0.1320 +0 0.0729 +0 0.1473 +0 0.1509 +0 0.2033 +0 0.1072 +0 0.1393 +0 0.0729 +0 0.0596 +0 0.0822 +0 0.0792 +0 0.1787 +0 0.0776 +0 0.2754 +0 0.1713 +0 0.5727 +0 0.0897 +0 0.0887 +0 0.0652 +0 0.1285 +0 0.1103 +0 0.2639 +0 0.0607 +0 0.1838 +0 0.1124 +0 0.1305 +0 0.4054 +0 0.1090 +0 0.1877 +0 0.0373 +0 0.0530 +0 0.0918 +0 0.1357 +0 0.1688 +0 0.0674 +0 0.0779 +0 0.1436 +0 0.0704 +0 0.0522 +0 0.5952 +1 0.7739 +0 0.0440 +0 0.0797 +0 0.0763 +0 0.1643 +0 0.0611 +0 0.1711 +0 0.1816 +0 0.1023 +0 0.2772 +0 0.1124 +0 0.0522 +0 0.0663 +0 0.0458 +0 0.1180 +0 0.1030 +0 0.0441 +0 0.2076 +0 0.0762 +0 0.0895 +0 0.1449 +0 0.1527 +0 0.0865 +0 0.1248 +0 0.0971 +0 0.0776 +0 0.1048 +0 0.2141 +0 0.0774 +0 0.1410 +0 0.0675 +0 0.1396 +0 0.1205 +0 0.1349 +0 0.2209 +0 0.0821 +0 0.0502 +0 0.1088 +0 0.0972 +0 0.0765 +0 0.1593 +0 0.0761 +0 0.2806 +0 0.2218 +0 0.0970 +0 0.2705 +0 0.0390 +0 0.0424 +0 0.1286 +0 0.1050 +0 0.0748 +0 0.0747 +0 0.2273 +0 0.1207 +0 0.1705 +0 0.1739 +0 0.0870 +0 0.0622 +0 0.0622 +0 0.2235 +0 0.1199 +0 0.5462 +0 0.0635 +0 0.0640 +0 0.0648 +0 0.2320 +0 0.0940 +0 0.0711 +0 0.0361 +0 0.2078 +0 0.0637 +0 0.0468 +0 0.0829 +0 0.7330 +0 0.0385 +0 0.1009 +0 0.0729 +0 0.0473 +0 0.1040 +0 0.0794 +0 0.1237 +0 0.0800 +0 0.0784 +0 0.0566 +0 0.1606 +0 0.1267 +0 0.0718 +0 0.2377 +1 0.8268 +0 0.2301 +0 0.1876 +0 0.0585 +0 0.0292 +0 0.1733 +0 0.1633 +0 0.0794 +0 0.1035 +0 0.2453 +0 0.0570 +0 0.1178 +0 0.2179 +0 0.2050 +0 0.0962 +0 0.1152 +0 0.1822 +0 0.0406 +0 0.2439 +0 0.1499 +0 0.3820 +0 0.2194 +0 0.2193 +0 0.2194 +0 0.0498 +0 0.1573 +0 0.1938 +0 0.0693 +0 0.1165 +0 0.1495 +0 0.0770 +0 0.3586 +0 0.1104 +0 0.1558 +0 0.1191 +0 0.0408 +0 0.1373 +0 0.0717 +0 0.1182 +0 0.1331 +0 0.2041 +0 0.0518 +0 0.1468 +0 0.2031 +0 0.1269 +0 0.0576 +0 0.5280 +0 0.0813 +0 0.0878 +0 0.1504 +0 0.0534 +0 0.1171 +0 0.0661 +0 0.0545 +1 0.7920 +0 0.1210 +0 0.2172 +0 0.0401 +0 0.1482 +0 0.2161 +0 0.0376 +0 0.0918 +0 0.1629 +0 0.1391 +0 0.0856 +0 0.0627 +0 0.1650 +0 0.2082 +0 0.1294 +0 0.0666 +0 0.2704 +0 0.0609 +0 0.0930 +0 0.0466 +0 0.1782 +0 0.1663 +0 0.2263 +0 0.2994 +0 0.2403 +0 0.1271 +0 0.1348 +0 0.0701 +0 0.0306 +0 0.0756 +0 0.1940 +0 0.7190 +0 0.2605 +0 0.0949 +0 0.2708 +0 0.0681 +0 0.2177 +0 0.0609 +0 0.1296 +0 0.0910 +0 0.1216 +0 0.6480 +0 0.0901 +0 0.0826 +0 0.0767 +0 0.0817 +0 0.0638 +0 0.0596 +0 0.0681 +0 0.3316 +0 0.1298 +0 0.1182 +0 0.0894 +0 0.0664 +0 0.2407 +0 0.0703 +0 0.0557 +0 0.0630 +0 0.3720 +0 0.1480 +0 0.0400 +0 0.0503 +0 0.1388 +0 0.1315 +0 0.0750 +0 0.2026 +0 0.1276 +0 0.0534 +0 0.0685 +0 0.0694 +0 0.1110 +0 0.1978 +0 0.0960 +0 0.1756 +0 0.0389 +0 0.0874 +0 0.0926 +0 0.0899 +0 0.0510 +0 0.2701 +0 0.0987 +0 0.1571 +0 0.0345 +0 0.0571 +0 0.1540 +0 0.0528 +0 0.0489 +0 0.2087 +0 0.1288 +0 0.0564 +0 0.1246 +0 0.0741 +0 0.1375 +0 0.1291 +0 0.1830 +0 0.0577 +0 0.0952 +1 0.7885 +0 0.1109 +0 0.0990 +0 0.1940 +0 0.1088 +0 0.2025 +0 0.1301 +0 0.1072 +0 0.0784 +0 0.0566 +0 0.1246 +0 0.1071 +0 0.0801 +0 0.2434 +0 0.2914 +0 0.1070 +0 0.0747 +0 0.1303 +0 0.0623 +0 0.0679 +0 0.0983 +0 0.1240 +0 0.2176 +0 0.1389 +0 0.1203 +0 0.0457 +0 0.0467 +0 0.2764 +0 0.0774 +0 0.0606 +0 0.0499 +0 0.5944 +0 0.1799 +0 0.2217 +0 0.0508 +0 0.0406 +0 0.0415 +0 0.0697 +0 0.0495 +0 0.0791 +0 0.0533 +0 0.0930 +0 0.0597 +0 0.0618 +0 0.1130 +0 0.0608 +0 0.0482 +0 0.2141 +0 0.1064 +0 0.1048 +0 0.1961 +0 0.2143 +0 0.2637 +0 0.0369 +0 0.1485 +0 0.1534 +0 0.1240 +0 0.0747 +0 0.0624 +0 0.0676 +0 0.0609 +0 0.1664 +0 0.0955 +0 0.1002 +0 0.0783 +0 0.0968 +0 0.0565 +0 0.1111 +0 0.1690 +0 0.1541 +0 0.0946 +0 0.0718 +0 0.1414 +0 0.0959 +0 0.0344 +0 0.1413 +0 0.0579 +0 0.1634 +0 0.1460 +0 0.1576 +0 0.1660 +0 0.1178 +0 0.1426 +0 0.1773 +0 0.0694 +0 0.0753 +0 0.0609 +0 0.1777 +0 0.1263 +0 0.2129 +0 0.0552 +0 0.0873 +0 0.0993 +0 0.0652 +0 0.6862 +1 0.7729 +0 0.0651 +0 0.1838 +0 0.0589 +0 0.1900 +0 0.2177 +0 0.0596 +0 0.1036 +0 0.0453 +0 0.0642 +0 0.1098 +0 0.0441 +0 0.1281 +0 0.1949 +0 0.1019 +0 0.1041 +0 0.1900 +0 0.0838 +0 0.1120 +0 0.0540 +0 0.1261 +0 0.1311 +0 0.0678 +0 0.2748 +0 0.2515 +0 0.1124 +0 0.1332 +0 0.6333 +0 0.0462 +0 0.2317 +0 0.1879 +0 0.0856 +0 0.6533 +0 0.5709 +0 0.0567 +0 0.0974 +0 0.0739 +0 0.1688 +0 0.1399 +0 0.1236 +0 0.0382 +0 0.1809 +0 0.0497 +0 0.0531 +0 0.1361 +0 0.1037 +0 0.0895 +0 0.0470 +0 0.0792 +0 0.0973 +0 0.5716 +0 0.1829 +0 0.1203 +0 0.1353 +0 0.3297 +0 0.1436 +0 0.2079 +0 0.1111 +0 0.1159 +0 0.0498 +0 0.0435 +0 0.0787 +0 0.0743 +0 0.1069 +0 0.1154 +0 0.3026 +0 0.0905 +0 0.3511 +0 0.1540 +0 0.1156 +0 0.0828 +0 0.1165 +0 0.1502 +0 0.1072 +0 0.0569 +0 0.0900 +0 0.0695 +0 0.5089 +0 0.6232 +1 0.8174 +0 0.0523 +0 0.1644 +0 0.1504 +0 0.1723 +0 0.1093 +0 0.3589 +0 0.0917 +0 0.1023 +0 0.0521 +0 0.0929 +0 0.0448 +0 0.0930 +0 0.1127 +0 0.1060 +0 0.2841 +0 0.6424 +0 0.1074 +0 0.0427 +0 0.1164 +0 0.0612 +0 0.0556 +0 0.0476 +0 0.2576 +0 0.0760 +0 0.0865 +0 0.1248 +0 0.1162 +0 0.1495 +0 0.1074 +0 0.0949 +0 0.1142 +0 0.0773 +0 0.0639 +0 0.0621 +0 0.1457 +0 0.1413 +0 0.1362 +0 0.0969 +0 0.0554 +0 0.3023 +0 0.1684 +0 0.4557 +0 0.0715 +0 0.1920 +0 0.1228 +0 0.1946 +0 0.1401 +0 0.0717 +0 0.3174 +0 0.1101 +0 0.2135 +0 0.1066 +0 0.0377 +0 0.0882 +0 0.0871 +0 0.0605 +0 0.0979 +0 0.0689 +0 0.0604 +0 0.0605 +0 0.2020 +0 0.0968 +0 0.1328 +0 0.0749 +0 0.0586 +0 0.1065 +1 0.8315 +0 0.0824 +0 0.0970 +0 0.1736 +0 0.1392 +0 0.1659 +0 0.0423 +0 0.1054 +0 0.4525 +0 0.0537 +0 0.1330 +0 0.2367 +0 0.1374 +0 0.0995 +0 0.0652 +0 0.2244 +0 0.0514 +0 0.0640 +0 0.0701 +0 0.3033 +0 0.1512 +0 0.0653 +0 0.0720 +0 0.2347 +0 0.2108 +0 0.0563 +0 0.0278 +0 0.4243 +0 0.0426 +0 0.0785 +0 0.0445 +0 0.3996 +0 0.0713 +0 0.2751 +0 0.0998 +0 0.0680 +0 0.0566 +0 0.4316 +0 0.1175 +0 0.1156 +0 0.0964 +0 0.2015 +0 0.1686 +0 0.2128 +0 0.0952 +0 0.1118 +0 0.1931 +0 0.0977 +0 0.1063 +0 0.0793 +0 0.0714 +0 0.0493 +0 0.4290 +0 0.1163 +0 0.1638 +0 0.4694 +0 0.0797 +0 0.0772 +0 0.1368 +0 0.0847 +0 0.1777 +0 0.1521 +0 0.0423 +0 0.0656 +0 0.5401 +0 0.1697 +0 0.0948 +0 0.1367 +0 0.0757 +0 0.1239 +0 0.0820 +0 0.0638 +0 0.0831 +0 0.0973 +0 0.2471 +0 0.0673 +0 0.1800 +0 0.2272 +0 0.0479 +0 0.0693 +0 0.0820 +0 0.0795 +0 0.0449 +0 0.0381 +0 0.1179 +0 0.1032 +0 0.0726 +0 0.0748 +0 0.0808 +0 0.0968 +0 0.0554 +0 0.2201 +0 0.1076 +0 0.1577 +0 0.0712 +0 0.0362 +0 0.4639 +0 0.1547 +0 0.1817 +0 0.1505 +0 0.1216 +0 0.0915 +0 0.1307 +0 0.1682 +0 0.0695 +0 0.2393 +0 0.1034 +0 0.0851 +0 0.1230 +0 0.1182 +1 0.8180 +0 0.0649 +0 0.0897 +0 0.2896 +0 0.1440 +0 0.2078 +0 0.1729 +0 0.2124 +0 0.0663 +0 0.0518 +0 0.6091 +0 0.4043 +0 0.0853 +0 0.1736 +0 0.0570 +0 0.1054 +0 0.0701 +0 0.1545 +0 0.4535 +0 0.0865 +0 0.0732 +0 0.1997 +0 0.0829 +0 0.0835 +0 0.1434 +0 0.2960 +0 0.0420 +0 0.3323 +0 0.4548 +0 0.0436 +0 0.1364 +0 0.1324 +0 0.0837 +0 0.0624 +0 0.0393 +0 0.0844 +0 0.0527 +0 0.1486 +0 0.0449 +0 0.1427 +0 0.2189 +0 0.1558 +0 0.1020 +0 0.1205 +0 0.0992 +0 0.0824 +0 0.0622 +0 0.0833 +0 0.2737 +0 0.0746 +0 0.1308 +0 0.4449 +0 0.1894 +0 0.0903 +0 0.0687 +0 0.1407 +0 0.0613 +0 0.3985 +0 0.0780 +0 0.0915 +0 0.0676 +0 0.2103 +0 0.2770 +0 0.3402 +0 0.0690 +0 0.1623 +0 0.5701 +0 0.1076 +0 0.0969 +0 0.0433 +0 0.1717 +0 0.1617 +0 0.5881 +0 0.0741 +0 0.0379 +0 0.2371 +0 0.1785 +0 0.0945 +0 0.0475 +0 0.1001 +0 0.0708 +0 0.0339 +0 0.0656 +0 0.1391 +0 0.0952 +0 0.1600 +0 0.2073 +0 0.1285 +0 0.0429 +0 0.0751 +0 0.0872 +0 0.2134 +0 0.0539 +0 0.2552 +0 0.2006 +0 0.1001 +0 0.0477 +0 0.1270 +0 0.0704 +0 0.1261 +0 0.1278 +0 0.0760 +0 0.4538 +0 0.1414 +0 0.4687 +0 0.1059 +0 0.1440 +0 0.1142 +0 0.3181 +0 0.1099 +0 0.0524 +0 0.1738 +0 0.0678 +0 0.1401 +0 0.0809 +0 0.0949 +0 0.0479 +0 0.0650 +0 0.1057 +0 0.4750 +0 0.1350 +0 0.1839 +0 0.2491 +0 0.0605 +0 0.0854 +0 0.0308 +0 0.0789 +0 0.0620 +0 0.0867 +0 0.0515 +0 0.0407 +0 0.0651 +0 0.1757 +0 0.0529 +0 0.0562 +0 0.0577 +0 0.0410 +0 0.0812 +1 0.8576 +0 0.0873 +0 0.6984 +1 0.7954 +0 0.2659 +0 0.0930 +0 0.2329 +0 0.0569 +0 0.0964 +0 0.0737 +0 0.1351 +0 0.0308 +0 0.0743 +0 0.0635 +0 0.0890 +0 0.3608 +0 0.2918 +0 0.0673 +0 0.0763 +0 0.0778 +0 0.2476 +0 0.3351 +0 0.0857 +0 0.0782 +0 0.0761 +0 0.2934 +0 0.1608 +0 0.0928 +0 0.1146 +0 0.0963 +0 0.2081 +0 0.0883 +0 0.1402 +0 0.1351 +0 0.2537 +0 0.0498 +0 0.0890 +0 0.1507 +0 0.0831 +0 0.0829 +0 0.0629 +0 0.1253 +0 0.1664 +0 0.2697 +0 0.4058 +0 0.0795 +0 0.0735 +0 0.0873 +0 0.1024 +0 0.1540 +0 0.1910 +0 0.0535 +0 0.1422 +0 0.0606 +0 0.0291 +0 0.1384 +0 0.2365 +0 0.1597 +0 0.0690 +0 0.0522 +0 0.0388 +0 0.3061 +0 0.0653 +0 0.0966 +0 0.0619 +0 0.1685 +0 0.0478 +0 0.0337 +0 0.2265 +0 0.2397 +0 0.1846 +0 0.0597 +0 0.0943 +0 0.0595 +0 0.3277 +0 0.0508 +0 0.1264 +0 0.0482 +0 0.0437 +0 0.1268 +0 0.1155 +0 0.0862 +0 0.1195 +0 0.0843 +0 0.1274 +0 0.2203 +0 0.0993 +0 0.1526 +0 0.2947 +0 0.1900 +0 0.1313 +0 0.3446 +1 0.8322 +0 0.0701 +0 0.1041 +0 0.2585 +0 0.4415 +0 0.0764 +0 0.4344 +1 0.8384 +0 0.1010 +0 0.0893 +0 0.1924 +0 0.0848 +0 0.3560 +0 0.1228 +0 0.1183 +0 0.0645 +0 0.0746 +0 0.0988 +0 0.1218 +0 0.1001 +0 0.1011 +0 0.1251 +0 0.1336 +0 0.1980 +0 0.1241 +0 0.6019 +0 0.0696 +0 0.0800 +0 0.1524 +0 0.1034 +0 0.0600 +0 0.0685 +0 0.2234 +1 0.7830 +0 0.2972 +0 0.0355 +0 0.1961 +0 0.0822 +0 0.0705 +0 0.3328 +0 0.1205 +0 0.0645 +0 0.0412 +0 0.0670 +0 0.0790 +0 0.1796 +0 0.0640 +0 0.1081 +0 0.1121 +0 0.1513 +0 0.0902 +0 0.1074 +0 0.1127 +0 0.0652 +0 0.0911 +0 0.1211 +0 0.0932 +0 0.0595 +0 0.0656 +0 0.0456 +0 0.2467 +0 0.3912 +0 0.0766 +0 0.0397 +0 0.0281 +0 0.2792 +0 0.0945 +0 0.1031 +0 0.3592 +0 0.1489 +0 0.1641 +0 0.0587 +0 0.1334 +0 0.0563 +0 0.3370 +0 0.2828 +0 0.0481 +0 0.1771 +0 0.1240 +0 0.1013 +0 0.0893 +0 0.2418 +0 0.0722 +0 0.0760 +0 0.0606 +0 0.1000 +0 0.1989 +0 0.0880 +0 0.2703 +0 0.1144 +0 0.0803 +1 0.8565 +0 0.0446 +0 0.1028 +0 0.1121 +0 0.1209 +0 0.0969 +0 0.0956 +0 0.1202 +0 0.0621 +0 0.2162 +0 0.0689 +0 0.1155 +0 0.1442 +0 0.1029 +0 0.0646 +0 0.0707 +0 0.2191 +0 0.1280 +0 0.1785 +0 0.1586 +0 0.0551 +0 0.0598 +0 0.1193 +0 0.3131 +1 0.7504 +0 0.2260 +1 0.8474 +0 0.0563 +0 0.1406 +0 0.1037 +0 0.0564 +0 0.1127 +0 0.1493 +0 0.2505 +0 0.1381 +0 0.0663 +0 0.0659 +1 0.8890 +0 0.3234 +0 0.1260 +0 0.0877 +0 0.0812 +0 0.1888 +0 0.5483 +0 0.1168 +0 0.0610 +0 0.1139 +0 0.0883 +0 0.0407 +0 0.1287 +0 0.4707 +0 0.0904 +0 0.1311 +0 0.0897 +0 0.0453 +0 0.1120 +0 0.0376 +0 0.0641 +0 0.4434 +0 0.1788 +0 0.0935 +0 0.0773 +1 0.8138 +0 0.1301 +0 0.0598 +0 0.0929 +0 0.4460 +0 0.5278 +0 0.0815 +0 0.1059 +0 0.5162 +0 0.1873 +0 0.5377 +0 0.1294 +0 0.1197 +0 0.0885 +0 0.1090 +0 0.0657 +0 0.2095 +0 0.1473 +0 0.3083 +0 0.4109 +0 0.1234 +0 0.0789 +0 0.1583 +0 0.0467 +0 0.1413 +0 0.1195 +0 0.0503 +0 0.1322 +0 0.0676 +0 0.1892 +0 0.2339 +0 0.1596 +0 0.2056 +0 0.1005 +0 0.1392 +0 0.0889 +0 0.0772 +0 0.0797 +0 0.2349 +0 0.0497 +0 0.0368 +0 0.0460 +0 0.0437 +0 0.0619 +0 0.1266 +0 0.0793 +0 0.0868 +0 0.1743 +0 0.3980 +0 0.1457 +0 0.0795 +0 0.0620 +0 0.1335 +0 0.1057 +0 0.0479 +0 0.1374 +0 0.1037 +0 0.0822 +0 0.1033 +0 0.0550 +0 0.1189 +0 0.0498 +0 0.3918 +0 0.1519 +0 0.0521 +0 0.0521 +0 0.0729 +0 0.1849 +0 0.0910 +0 0.3116 +0 0.1758 +0 0.2037 +0 0.0717 +0 0.1252 +0 0.1023 +0 0.0401 +0 0.2160 +0 0.0619 +0 0.1233 +1 0.8519 +0 0.0710 +0 0.5919 +0 0.4301 +0 0.2022 +0 0.0824 +0 0.0899 +0 0.1330 +0 0.1320 +0 0.1586 +0 0.0507 +0 0.1009 +0 0.0641 +0 0.0710 +0 0.4495 +0 0.4101 +0 0.0702 +0 0.0858 +0 0.0666 +0 0.1431 +0 0.2128 +0 0.1416 +0 0.2729 +0 0.2991 +0 0.0960 +0 0.1484 +0 0.3517 +0 0.0941 +0 0.3198 +0 0.0512 +0 0.1104 +0 0.2449 +0 0.1080 +0 0.2877 +0 0.0699 +0 0.0499 +0 0.0625 +0 0.1553 +0 0.0708 +0 0.1691 +0 0.1056 +0 0.0691 +0 0.1811 +0 0.1805 +0 0.2748 +0 0.0568 +0 0.1218 +0 0.1054 +0 0.1912 +0 0.1213 +0 0.1304 +0 0.1764 +0 0.0723 +0 0.2570 +0 0.1615 +0 0.1844 +0 0.0647 +0 0.0483 +1 0.2610 +0 0.1321 +0 0.0995 +0 0.0963 +0 0.0750 +0 0.0991 +0 0.0708 +0 0.1980 +0 0.1861 +0 0.0397 +0 0.0493 +0 0.0939 +0 0.0759 +0 0.0415 +0 0.0638 +0 0.0666 +0 0.0441 +0 0.2643 +0 0.7248 +0 0.0656 +0 0.0697 +0 0.0433 +0 0.2551 +0 0.0748 +0 0.0587 +0 0.0979 +0 0.0779 +0 0.0683 +0 0.1022 +0 0.1954 +0 0.1221 +0 0.0624 +0 0.1181 +0 0.0811 +0 0.1456 +0 0.2064 +0 0.1016 +0 0.4548 +0 0.0853 +1 0.8705 +0 0.1540 +0 0.0770 +0 0.0831 +0 0.0798 +0 0.0414 +0 0.6721 +0 0.0695 +0 0.0760 +0 0.1238 +0 0.1013 +0 0.6846 +0 0.1918 +0 0.0907 +0 0.0589 +0 0.2023 +0 0.1462 +0 0.0312 +0 0.1059 +0 0.0909 +0 0.0336 +0 0.0481 +1 0.8385 +0 0.1318 +0 0.2377 +0 0.1450 +0 0.0978 +0 0.0579 +0 0.0831 +0 0.1609 +0 0.0630 +0 0.1012 +0 0.2164 +0 0.3328 +0 0.0884 +0 0.1730 +0 0.1666 +0 0.1500 +0 0.0580 +0 0.0368 +0 0.1407 +0 0.0769 +0 0.0387 +0 0.0806 +1 0.7676 +0 0.0643 +0 0.1165 +0 0.0935 +0 0.0913 +0 0.1460 +0 0.2117 +0 0.0515 +0 0.1619 +0 0.0723 +0 0.0850 +0 0.0861 +0 0.0894 +0 0.1518 +0 0.0872 +0 0.0818 +0 0.1447 +0 0.0912 +0 0.0576 +0 0.1721 +0 0.1018 +0 0.0580 +0 0.1244 +0 0.1403 +0 0.2182 +0 0.0641 +0 0.1766 +0 0.4542 +0 0.0827 +0 0.1029 +0 0.2049 +0 0.5545 +0 0.0485 +0 0.1599 +0 0.1519 +0 0.0512 +0 0.1342 +0 0.1010 +0 0.0460 +0 0.0713 +0 0.0928 +0 0.3785 +0 0.1827 +0 0.0596 +0 0.0708 +0 0.1207 +0 0.0777 +0 0.0912 +0 0.1028 +0 0.1043 +0 0.2573 +0 0.0537 +0 0.1216 +0 0.1102 +0 0.0868 +0 0.0833 +0 0.1306 +0 0.0477 +0 0.1009 +0 0.1534 +0 0.3020 +0 0.0413 +0 0.0740 +0 0.0565 +0 0.2121 +0 0.0835 +0 0.1714 +0 0.0917 +0 0.1162 +0 0.0676 +0 0.1127 +0 0.0755 +0 0.1451 +0 0.0509 +0 0.3190 +0 0.1171 +0 0.1654 +0 0.2726 +0 0.1069 +0 0.0727 +0 0.0780 +0 0.0646 +0 0.0722 +0 0.4653 +0 0.5605 +0 0.1187 +0 0.2123 +0 0.1432 +0 0.0846 +0 0.0688 +0 0.1718 +0 0.2138 +0 0.1366 +0 0.2517 +0 0.1115 +0 0.2626 +0 0.1821 +0 0.1851 +0 0.1160 +0 0.0822 +0 0.1011 +0 0.6626 +0 0.0903 +0 0.2357 +0 0.3039 +0 0.0615 +0 0.1164 +0 0.7344 +0 0.2957 +0 0.1243 +0 0.0777 +0 0.0851 +0 0.0942 +0 0.0674 +0 0.1189 +0 0.1416 +0 0.1966 +0 0.1735 +0 0.0694 +0 0.0426 +0 0.0308 +0 0.1404 +1 0.7854 +0 0.0504 +0 0.0797 +0 0.1484 +0 0.0482 +0 0.1366 +0 0.0686 +0 0.0675 +0 0.2326 +0 0.1329 +0 0.1203 +0 0.0509 +0 0.1155 +0 0.1349 +0 0.0443 +0 0.0504 +0 0.0768 +0 0.0895 +0 0.0941 +0 0.0602 +0 0.0938 +0 0.1279 +0 0.0773 +0 0.2815 +0 0.2969 +0 0.7476 +0 0.0372 +0 0.1321 +0 0.0608 +0 0.1483 +0 0.1926 +0 0.3536 +0 0.1101 +0 0.2189 +0 0.1347 +0 0.1529 +0 0.0672 +0 0.1388 +0 0.0553 +0 0.0942 +0 0.1367 +0 0.0620 +0 0.0560 +0 0.0587 +0 0.1539 +0 0.0517 +1 0.7820 +0 0.0838 +0 0.0830 +0 0.0522 +0 0.7479 +0 0.2278 +0 0.0537 +0 0.2636 +0 0.1139 +0 0.0772 +0 0.0696 +0 0.1059 +0 0.0954 +0 0.0680 +0 0.0562 +0 0.1303 +0 0.6541 +0 0.0837 +0 0.0947 +0 0.1383 +0 0.0946 +0 0.1102 +0 0.1179 +0 0.1636 +0 0.1422 +0 0.1041 +0 0.1045 +0 0.0572 +0 0.0687 +0 0.1033 +0 0.1190 +0 0.1031 +0 0.1436 +0 0.0703 +0 0.1038 +0 0.0579 +0 0.0754 +0 0.0941 +0 0.1662 +0 0.0469 +0 0.1264 +0 0.0959 +0 0.0630 +0 0.0507 +0 0.0894 +0 0.0750 +0 0.1725 +0 0.1241 +0 0.1629 +0 0.5856 +0 0.1428 +0 0.0861 +0 0.0934 +0 0.1042 +0 0.1810 +0 0.3421 +0 0.0567 +0 0.0967 +0 0.0914 +0 0.0566 +0 0.1317 +0 0.1196 +0 0.4675 +0 0.0875 +0 0.0987 +0 0.3176 +0 0.1319 +1 0.8730 +0 0.1415 +0 0.1213 +0 0.1291 +0 0.0556 +0 0.1355 +0 0.0844 +0 0.0901 +0 0.0650 +0 0.0597 +0 0.0874 +0 0.0808 +0 0.1192 +0 0.2619 +0 0.1945 +0 0.0980 +0 0.2195 +0 0.1464 +0 0.3277 +0 0.1139 +0 0.4239 +0 0.0535 +0 0.0558 +0 0.1540 +0 0.0554 +0 0.1683 +0 0.2143 +0 0.1096 +0 0.0530 +0 0.1478 +0 0.0478 +0 0.1876 +0 0.0959 +0 0.0567 +0 0.1125 +0 0.1423 +0 0.0950 +0 0.0848 +0 0.1380 +0 0.1075 +0 0.0836 +0 0.1284 +0 0.1394 +0 0.0500 +0 0.1655 +0 0.0507 +0 0.1107 +1 0.7768 +0 0.0825 +0 0.0715 +0 0.0431 +0 0.0713 +0 0.1198 +0 0.0849 +0 0.0665 +0 0.0527 +0 0.1108 +0 0.1263 +0 0.3250 +0 0.0793 +0 0.2770 +0 0.0523 +0 0.0295 +0 0.0793 +0 0.1916 +0 0.2354 +0 0.0755 +0 0.0745 +0 0.1211 +0 0.1525 +1 0.7906 +0 0.0888 +0 0.1687 +0 0.0610 +0 0.0907 +0 0.1494 +0 0.2789 +0 0.1033 +0 0.0469 +0 0.0610 +0 0.1289 +0 0.1822 +0 0.0468 +0 0.1755 +0 0.7124 +0 0.0894 +0 0.0945 +0 0.0796 +0 0.0679 +0 0.2653 +0 0.0913 +0 0.1387 +0 0.0361 +0 0.0782 +0 0.5348 +0 0.1120 +0 0.7113 +0 0.2062 +0 0.3321 +0 0.0910 +0 0.0756 +0 0.0884 +0 0.2183 +0 0.1049 +0 0.1798 +0 0.0826 +0 0.0795 +0 0.1109 +0 0.4739 +0 0.0579 +0 0.0546 +0 0.0695 +0 0.2813 +0 0.1470 +0 0.0494 +0 0.3721 +0 0.0991 +0 0.1059 +0 0.1015 +0 0.1425 +0 0.0770 +0 0.0809 +0 0.1049 +0 0.0875 +0 0.0678 +0 0.1232 +0 0.3573 +0 0.0416 +0 0.1089 +0 0.1968 +0 0.1280 +0 0.1214 +0 0.0563 +0 0.4520 +0 0.1706 +0 0.3009 +0 0.1394 +0 0.1166 +0 0.0670 +0 0.0698 +0 0.1146 +0 0.1474 +0 0.4251 +0 0.1262 +0 0.0424 +0 0.5201 +0 0.0543 +0 0.0408 +0 0.0913 +0 0.0416 +0 0.0679 +0 0.0483 +0 0.1359 +0 0.0921 +0 0.0983 +0 0.2069 +0 0.1016 +0 0.1801 +1 0.7584 +0 0.1709 +0 0.3586 +0 0.1066 +0 0.1455 +0 0.0546 +0 0.1773 +0 0.0829 +0 0.0940 +0 0.2669 +0 0.1673 +0 0.4078 +0 0.0466 +0 0.3001 +0 0.1861 +0 0.0734 +0 0.1464 +0 0.0412 +0 0.5825 +0 0.1295 +0 0.0873 +0 0.1575 +0 0.1000 +0 0.0625 +0 0.1294 +0 0.0505 +0 0.0840 +0 0.7428 +0 0.0819 +0 0.0914 +0 0.1628 +0 0.0455 +0 0.1024 +0 0.1202 +0 0.1422 +0 0.0459 +0 0.1435 +0 0.0755 +0 0.0679 +0 0.0620 +0 0.1771 +0 0.0717 +0 0.1557 +0 0.1332 +0 0.1413 +0 0.2001 +0 0.0714 +0 0.2318 +0 0.1280 +0 0.2290 +0 0.0999 +1 0.7932 +0 0.1580 +0 0.0471 +0 0.0659 +0 0.2561 +0 0.0892 +0 0.2472 +0 0.2175 +0 0.1145 +0 0.1722 +0 0.0926 +0 0.3713 +0 0.0817 +0 0.0441 +0 0.0703 +0 0.0577 +0 0.0621 +0 0.0730 +0 0.1436 +0 0.0519 +0 0.0677 +0 0.2582 +0 0.0488 +0 0.0601 +0 0.1172 +0 0.0597 +0 0.2791 +0 0.0937 +0 0.1708 +0 0.0989 +0 0.2068 +0 0.5181 +0 0.0462 +0 0.1436 +0 0.0719 +0 0.0789 +0 0.0702 +0 0.0937 +0 0.1592 +0 0.0614 +0 0.0822 +0 0.0684 +0 0.0832 +0 0.0612 +0 0.1195 +0 0.1492 +1 0.7844 +0 0.0896 +0 0.2180 +0 0.2117 +0 0.0788 +0 0.0445 +0 0.1166 +0 0.1022 +0 0.1420 +0 0.2354 +0 0.0521 +0 0.2458 +0 0.1523 +0 0.1321 +0 0.0634 +0 0.0553 +0 0.1664 +0 0.0946 +0 0.4184 +0 0.0549 +0 0.2259 +0 0.2038 +0 0.1953 +0 0.1003 +0 0.3172 +0 0.1877 +0 0.1238 +0 0.3216 +0 0.1623 +0 0.2837 +0 0.0703 +0 0.0999 +0 0.1991 +0 0.0979 +0 0.6862 +0 0.1119 +0 0.0651 +0 0.0965 +0 0.0887 +0 0.0402 +0 0.0551 +0 0.1996 +0 0.1195 +0 0.1034 +1 0.8309 +0 0.3247 +0 0.2025 +0 0.1198 +0 0.0793 +0 0.0681 +0 0.1194 +0 0.1459 +0 0.0734 +0 0.0835 +0 0.2177 +0 0.1215 +0 0.0793 +0 0.0791 +0 0.0954 +0 0.1389 +0 0.1011 +0 0.1785 +0 0.0951 +0 0.1199 +0 0.2985 +0 0.1370 +0 0.0770 +0 0.0723 +0 0.0512 +0 0.0551 +0 0.0940 +0 0.1615 +0 0.2137 +0 0.0688 +0 0.1258 +0 0.1172 +0 0.0408 +0 0.0644 +0 0.3578 +0 0.0461 +0 0.0689 +0 0.0570 +0 0.0823 +0 0.2350 +0 0.1195 +0 0.0757 +0 0.0919 +1 0.8345 +0 0.1407 +0 0.0462 +0 0.0444 +0 0.1408 +0 0.0481 +0 0.4546 +0 0.1258 +0 0.0687 +0 0.0974 +0 0.1828 +0 0.0950 +0 0.0666 +0 0.2339 +0 0.0736 +0 0.1318 +0 0.0937 +0 0.1278 +0 0.1428 +0 0.2487 +0 0.0790 +0 0.5308 +0 0.1278 +0 0.1382 +0 0.1018 +0 0.1773 +0 0.1417 +0 0.3364 +0 0.1410 +0 0.0753 +0 0.1154 +0 0.0560 +0 0.3005 +0 0.0714 +0 0.0732 +0 0.1318 +0 0.0614 +0 0.0820 +0 0.0706 +0 0.1028 +0 0.1093 +0 0.0642 +0 0.0889 +0 0.0792 +0 0.5790 +0 0.0572 +0 0.0505 +0 0.0455 +1 0.7514 +0 0.0745 +0 0.0489 +0 0.0495 +0 0.0958 +0 0.0376 +0 0.2312 +0 0.0907 +0 0.1132 +0 0.1062 +0 0.1895 +0 0.1116 +0 0.2769 +0 0.0347 +0 0.1610 +0 0.0954 +0 0.1191 +0 0.1033 +0 0.1162 +0 0.2940 +0 0.1770 +0 0.0955 +0 0.0424 +0 0.1282 +0 0.1030 +0 0.0778 +0 0.0709 +0 0.0569 +0 0.0685 +0 0.1967 +0 0.1059 +0 0.0889 +0 0.1149 +0 0.0634 +0 0.0692 +0 0.4086 +0 0.2004 +0 0.0610 +0 0.0521 +0 0.1782 +0 0.0673 +0 0.1339 +0 0.3367 +0 0.2136 +0 0.0518 +0 0.1023 +0 0.0342 +0 0.0430 +0 0.2378 +0 0.1491 +0 0.1795 +0 0.2360 +0 0.0639 +0 0.2618 +0 0.1906 +0 0.2986 +0 0.0820 +0 0.0856 +1 0.8299 +0 0.0635 +0 0.2197 +0 0.0661 +0 0.0923 +0 0.6669 +0 0.0997 +0 0.1091 +0 0.3293 +0 0.7081 +0 0.1820 +1 0.8608 +0 0.0591 +0 0.0710 +0 0.1058 +0 0.5305 +0 0.5754 +0 0.1280 +0 0.0576 +0 0.1278 +0 0.2191 +0 0.0767 +0 0.0503 +0 0.1906 +0 0.3124 +0 0.1747 +0 0.0853 +0 0.0860 +0 0.2313 +0 0.0318 +0 0.0604 +0 0.0708 +0 0.1543 +0 0.2545 +0 0.2025 +0 0.0859 +0 0.3760 +0 0.1567 +1 0.8542 +0 0.1058 +0 0.0968 +0 0.1346 +0 0.0860 +0 0.1126 +0 0.1431 +0 0.0661 +0 0.2047 +0 0.1180 +0 0.1771 +0 0.0918 +0 0.0634 +0 0.1064 +0 0.1514 +0 0.1182 +0 0.5812 +0 0.0730 +0 0.0898 +0 0.0835 +0 0.2110 +0 0.0811 +0 0.1689 +0 0.0629 +0 0.1633 +0 0.0558 +0 0.2076 +0 0.0560 +0 0.0815 +0 0.0741 +0 0.1182 +0 0.0576 +1 0.7565 +0 0.6936 +0 0.1200 +0 0.0984 +0 0.1298 +0 0.0885 +0 0.0784 +1 0.8338 +0 0.0556 +0 0.0870 +0 0.0386 +0 0.0995 +0 0.1061 +0 0.1296 +0 0.0891 +0 0.1773 +0 0.1574 +0 0.0835 +0 0.0844 +0 0.3901 +0 0.3074 +0 0.0771 +0 0.0731 +0 0.0528 +0 0.1345 +0 0.0777 +0 0.0539 +0 0.0743 +0 0.1034 +0 0.0886 +0 0.1959 +0 0.1399 +0 0.2239 +0 0.0901 +0 0.0603 +0 0.5161 +0 0.0647 +0 0.1760 +0 0.0682 +0 0.0943 +0 0.6636 +0 0.0937 +1 0.8185 +0 0.1338 +0 0.1083 +0 0.0567 +1 0.8329 +0 0.0758 +0 0.0523 +0 0.0752 +0 0.1125 +0 0.1667 +0 0.1279 +0 0.1404 +0 0.0855 +0 0.2292 +0 0.0594 +0 0.1837 +0 0.0429 +0 0.1442 +0 0.1354 +0 0.1384 +0 0.1252 +0 0.3726 +0 0.0761 +0 0.0525 +0 0.2085 +0 0.3398 +0 0.0543 +0 0.2361 +0 0.0752 +0 0.0817 +0 0.1260 +0 0.1556 +0 0.0648 +0 0.0673 +0 0.1327 +0 0.3488 +0 0.0818 +0 0.0820 +0 0.1547 +0 0.1417 +0 0.2346 +0 0.1702 +0 0.2331 +0 0.1216 +0 0.0649 +0 0.0880 +0 0.0430 +0 0.0701 +1 0.7721 +0 0.0789 +0 0.1163 +0 0.1109 +0 0.0825 +0 0.2446 +0 0.0810 +0 0.0614 +0 0.1019 +0 0.0699 +0 0.1715 +0 0.1712 +0 0.2905 +0 0.1545 +0 0.0823 +0 0.0445 +0 0.3701 +0 0.1157 +0 0.0501 +0 0.2841 +0 0.0506 +0 0.2493 +0 0.3720 +0 0.1548 +0 0.1930 +0 0.0825 +0 0.3340 +0 0.2013 +0 0.0991 +0 0.0939 +0 0.1188 +0 0.0851 +0 0.0961 +0 0.1763 +0 0.0983 +0 0.1386 +0 0.1379 +0 0.1707 +0 0.2567 +0 0.0802 +0 0.1262 +0 0.0553 +0 0.1256 +0 0.0957 +0 0.0931 +0 0.1184 +0 0.0934 +0 0.1233 +0 0.0893 +0 0.1102 +0 0.0550 +0 0.0483 +0 0.0406 +0 0.0966 +0 0.0545 +0 0.1328 +0 0.0709 +0 0.1968 +0 0.0554 +0 0.0965 +0 0.0534 +0 0.0795 +0 0.0866 +1 0.8421 +0 0.2818 +1 0.8862 +0 0.1261 +0 0.0918 +0 0.1241 +0 0.0894 +0 0.2423 +0 0.0945 +0 0.0401 +0 0.1363 +0 0.0623 +0 0.0894 +0 0.1241 +0 0.0897 +0 0.1954 +0 0.1092 +0 0.0814 +0 0.0852 +0 0.0715 +0 0.1004 +0 0.2331 +0 0.0348 +0 0.6666 +0 0.2178 +0 0.0652 +0 0.0662 +0 0.0664 +0 0.0528 +0 0.1006 +0 0.0850 +0 0.1309 +0 0.4481 +0 0.0618 +0 0.2396 +0 0.0923 +0 0.2603 +0 0.2467 +0 0.0390 +0 0.1274 +0 0.1004 +0 0.1336 +0 0.0958 +0 0.2859 +0 0.5374 +0 0.0490 +0 0.1316 +0 0.1320 +0 0.1054 +0 0.1853 +0 0.1466 +0 0.0986 +0 0.0791 +0 0.0530 +1 0.8149 +0 0.0692 +0 0.1909 +0 0.0998 +0 0.3347 +0 0.0886 +1 0.7611 +0 0.3238 +0 0.5007 +0 0.1634 +0 0.0868 +0 0.1241 +0 0.1778 +0 0.1424 +0 0.1558 +0 0.0929 +0 0.1548 +0 0.3142 +0 0.1404 +0 0.1054 +0 0.2877 +0 0.0550 +0 0.0787 +0 0.0797 +0 0.0550 +0 0.0472 +0 0.0547 +0 0.0716 +0 0.0960 +1 0.7670 +0 0.0984 +0 0.1709 +0 0.2875 +0 0.1182 +0 0.0871 +0 0.1340 +0 0.3060 +0 0.1988 +0 0.1277 +0 0.0663 +0 0.2432 +0 0.0960 +0 0.0572 +0 0.2917 +0 0.0721 +0 0.3067 +0 0.1187 +0 0.0549 +0 0.1272 +0 0.1771 +0 0.1038 +0 0.1079 +0 0.0871 +0 0.1177 +0 0.1887 +0 0.0977 +0 0.0532 +0 0.0825 +0 0.0801 +0 0.0624 +0 0.1891 +0 0.0852 +0 0.1448 +0 0.0743 +0 0.2743 +0 0.0758 +0 0.0799 +0 0.1014 +0 0.0964 +0 0.1202 +0 0.1440 +0 0.0600 +0 0.0855 +0 0.0931 +1 0.8186 +0 0.1142 +0 0.1255 +0 0.0924 +0 0.0670 +0 0.0591 +0 0.0701 +0 0.0694 +0 0.1283 +0 0.1555 +0 0.0499 +0 0.0941 +0 0.1493 +0 0.0365 +0 0.1108 +0 0.1148 +0 0.0639 +0 0.0684 +0 0.3121 +0 0.0923 +0 0.1171 +0 0.1228 +0 0.1218 +0 0.6616 +0 0.0842 +0 0.2028 +0 0.1373 +0 0.1189 +0 0.0811 +0 0.1214 +0 0.0765 +0 0.0756 +0 0.0739 +0 0.1620 +0 0.2700 +0 0.1446 +0 0.0703 +0 0.1162 +0 0.0616 +0 0.1268 +0 0.0750 +0 0.1054 +0 0.0747 +0 0.0974 +0 0.1189 +0 0.2536 +0 0.0626 +0 0.1982 +0 0.0499 +0 0.0668 +0 0.3021 +0 0.1609 +0 0.1710 +0 0.5842 +0 0.1519 +0 0.1136 +0 0.2210 +0 0.0828 +0 0.0611 +0 0.4015 +0 0.0977 +0 0.3196 +0 0.0923 +0 0.2596 +0 0.0833 +0 0.1600 +0 0.0520 +0 0.1946 +0 0.1634 +0 0.1436 +0 0.2465 +0 0.1402 +0 0.1245 +0 0.1197 +0 0.0407 +0 0.1266 +0 0.1527 +0 0.0438 +0 0.0960 +0 0.0593 +0 0.0914 +0 0.1322 +0 0.3105 +0 0.2133 +0 0.1012 +0 0.1004 +0 0.1670 +0 0.1086 +0 0.0412 +0 0.0968 +0 0.1830 +0 0.1949 +0 0.1423 +0 0.1066 +0 0.0866 +0 0.0503 +0 0.1440 +0 0.1914 +0 0.1389 +0 0.0607 +0 0.1130 +0 0.4513 +0 0.1013 +0 0.1135 +0 0.0560 +0 0.0541 +0 0.1788 +0 0.2036 +0 0.0699 +0 0.2110 +0 0.0634 +0 0.2356 +0 0.1103 +0 0.0361 +0 0.1516 +0 0.0762 +0 0.1034 +0 0.1027 +0 0.0981 +0 0.0963 +0 0.0532 +0 0.2316 +0 0.1066 +0 0.0404 +0 0.0634 +1 0.8099 +0 0.1307 +0 0.0652 +0 0.1117 +0 0.0581 +0 0.1119 +0 0.1018 +0 0.3212 +0 0.1157 +0 0.0574 +0 0.1193 +0 0.1909 +0 0.0448 +0 0.1676 +0 0.0941 +0 0.1067 +0 0.1487 +0 0.0913 +0 0.0868 +0 0.1568 +0 0.2415 +0 0.0593 +0 0.2175 +0 0.0953 +0 0.0616 +0 0.0967 +0 0.0471 +0 0.0935 +0 0.4366 +0 0.0940 +0 0.0887 +0 0.6096 +0 0.1558 +0 0.1000 +0 0.0662 +0 0.1555 +0 0.0554 +0 0.1158 +0 0.2838 +0 0.0736 +0 0.0790 +0 0.0697 +0 0.0875 +0 0.0668 +0 0.1028 +0 0.0441 +0 0.1723 +0 0.1502 +0 0.0579 +0 0.0878 +0 0.0423 +0 0.0845 +0 0.0950 +0 0.0879 +0 0.0860 +0 0.0456 +0 0.0755 +0 0.0820 +0 0.0541 +0 0.1192 +0 0.2625 +0 0.2155 +0 0.0908 +0 0.6590 +0 0.0315 +0 0.0517 +0 0.0635 +0 0.0576 +0 0.0794 +0 0.1544 +1 0.7503 +0 0.2398 +0 0.2324 +0 0.1081 +0 0.1414 +0 0.1277 +0 0.1294 +0 0.3469 +0 0.1314 +0 0.7318 +0 0.0836 +0 0.1068 +0 0.0666 +0 0.1878 +0 0.4296 +0 0.0467 +0 0.0490 +0 0.2524 +0 0.0905 +0 0.1360 +0 0.0343 +0 0.2571 +0 0.0910 +0 0.0485 +0 0.3621 +0 0.0872 +0 0.0442 +0 0.0832 +0 0.0740 +0 0.0795 +0 0.3106 +0 0.1195 +0 0.0763 +0 0.0779 +0 0.0883 +0 0.0833 +0 0.0929 +0 0.2334 +0 0.0964 +0 0.2090 +0 0.0713 +0 0.1353 +0 0.0996 +0 0.2241 +0 0.0843 +0 0.1503 +0 0.1928 +0 0.0457 +0 0.2454 +0 0.1965 +0 0.1428 +0 0.0812 +0 0.1280 +0 0.1214 +0 0.1675 +0 0.0926 +0 0.0348 +1 0.8358 +0 0.1186 +0 0.3688 +0 0.1375 +0 0.0696 +0 0.1576 +0 0.1013 +1 0.8117 +0 0.0812 +0 0.0555 +0 0.0456 +0 0.1250 +0 0.1378 +0 0.0699 +0 0.0872 +0 0.2025 +0 0.2874 +0 0.4922 +0 0.2225 +0 0.1246 +0 0.2022 +0 0.0930 +0 0.5241 +0 0.2078 +0 0.1224 +0 0.0508 +0 0.1586 +0 0.1152 +0 0.0920 +0 0.1041 +0 0.0842 +0 0.1717 +0 0.0682 +0 0.2286 +0 0.1016 +0 0.1279 +0 0.0445 +0 0.0606 +0 0.4318 +0 0.1045 +0 0.0900 +0 0.1361 +0 0.0734 +0 0.2406 +0 0.4671 +0 0.0961 +0 0.2714 +0 0.2052 +0 0.0451 +0 0.4705 +0 0.0965 +0 0.0683 +0 0.0535 +0 0.0761 +0 0.1475 +0 0.0505 +0 0.0400 +0 0.0733 +0 0.0958 +0 0.1875 +0 0.1118 +0 0.2764 +0 0.1886 +0 0.0379 +0 0.0739 +0 0.1049 +0 0.1169 +0 0.2043 +0 0.1964 +0 0.2671 +0 0.0730 +0 0.1542 +0 0.1843 +0 0.0698 +0 0.0781 +0 0.0846 +0 0.0564 +0 0.0468 +0 0.2959 +0 0.1339 +0 0.1178 +0 0.1555 +0 0.0639 +0 0.1983 +0 0.1240 +0 0.0748 +0 0.2856 +0 0.2010 +0 0.1344 +0 0.2705 +0 0.0558 +0 0.1096 +0 0.0739 +0 0.0905 +0 0.0728 +0 0.0699 +0 0.0513 +0 0.2021 +0 0.0762 +0 0.2914 +0 0.0827 +0 0.1000 +0 0.0930 +0 0.1235 +0 0.1042 +0 0.2108 +0 0.1406 +0 0.2412 +0 0.0399 +0 0.1154 +0 0.0725 +0 0.0957 +0 0.0462 +0 0.0957 +0 0.1891 +0 0.1239 +0 0.4267 +0 0.0674 +0 0.1517 +0 0.0523 +0 0.3692 +0 0.1033 +0 0.7093 +0 0.0485 +1 0.7915 +0 0.0703 +0 0.1452 +0 0.0864 +0 0.0635 +0 0.3234 +0 0.2466 +0 0.2838 +0 0.1447 +0 0.2995 +0 0.0754 +0 0.0640 +0 0.0807 +0 0.1089 +0 0.2715 +0 0.0539 +0 0.2557 +0 0.0623 +0 0.0423 +0 0.0803 +0 0.7436 +0 0.0866 +0 0.1080 +0 0.0382 +0 0.2167 +0 0.1695 +0 0.0827 +0 0.1087 +0 0.2651 +0 0.0989 +0 0.1728 +0 0.2327 +0 0.1157 +0 0.0874 +0 0.0776 +0 0.2495 +0 0.0913 +0 0.0549 +0 0.1380 +0 0.1385 +0 0.0491 +0 0.1526 +0 0.0968 +0 0.2284 +0 0.1356 +0 0.0802 +0 0.0687 +0 0.0603 +0 0.1422 +0 0.2255 +0 0.1111 +0 0.3237 +0 0.6996 +0 0.0737 +0 0.1314 +0 0.5092 +0 0.0377 +0 0.0730 +0 0.1372 +0 0.1983 +0 0.0582 +0 0.1803 +0 0.1262 +0 0.0908 +0 0.0479 +0 0.0795 +0 0.3209 +0 0.2060 +0 0.0465 +0 0.1407 +0 0.0607 +0 0.1247 +1 0.7722 +0 0.1117 +0 0.1154 +0 0.0395 +0 0.0754 +0 0.3179 +0 0.0634 +0 0.1428 +0 0.0665 +0 0.1081 +0 0.1317 +0 0.1213 +0 0.1999 +0 0.0333 +0 0.2605 +0 0.1517 +0 0.1835 +0 0.3682 +0 0.1271 +0 0.2515 +0 0.1896 +0 0.0917 +0 0.0767 +0 0.0517 +0 0.0695 +0 0.6420 +0 0.4121 +0 0.1302 +0 0.0398 +0 0.0910 +0 0.1982 +0 0.1378 +0 0.1039 +0 0.0793 +0 0.0617 +0 0.2243 +0 0.0758 +0 0.0536 +0 0.0577 +0 0.0451 +1 0.8514 +0 0.1032 +0 0.0835 +0 0.1274 +0 0.2527 +0 0.1199 +0 0.1287 +0 0.0960 +0 0.1499 +0 0.4582 +0 0.1144 +0 0.0966 +0 0.0881 +0 0.0396 +0 0.0522 +0 0.0739 +0 0.1763 +0 0.0396 +0 0.1835 +0 0.0566 +0 0.1563 +0 0.0602 +0 0.1691 +0 0.0769 +0 0.0651 +0 0.0857 +0 0.0348 +0 0.0492 +0 0.0418 +0 0.0588 +0 0.1015 +0 0.1174 +0 0.1133 +0 0.1110 +1 0.7731 +0 0.0737 +0 0.3201 +0 0.1126 +0 0.0522 +0 0.1318 +0 0.2110 +0 0.2196 +0 0.0740 +0 0.0770 +0 0.1225 +0 0.1132 +0 0.0648 +0 0.3497 +0 0.0534 +0 0.1254 +0 0.2079 +0 0.0351 +0 0.1288 +0 0.0722 +0 0.1637 +0 0.0896 +0 0.0888 +0 0.0978 +0 0.1070 +0 0.1235 +0 0.6169 +0 0.1546 +0 0.1891 +0 0.1292 +0 0.0466 +0 0.0770 +0 0.0899 +0 0.2976 +0 0.1036 +0 0.0562 +0 0.0860 +0 0.3351 +0 0.1086 +0 0.1256 +0 0.0505 +0 0.1502 +0 0.1344 +0 0.2053 +0 0.1749 +0 0.3236 +0 0.1722 +0 0.5131 +0 0.0913 +0 0.0850 +0 0.0747 +0 0.0467 +0 0.0568 +0 0.1035 +0 0.1080 +0 0.1567 +0 0.0869 +0 0.0715 +0 0.1615 +0 0.0778 +0 0.0660 +0 0.0925 +0 0.0308 +0 0.0850 +0 0.0353 +0 0.0709 +0 0.0709 +0 0.2913 +0 0.0945 +0 0.2334 +0 0.2253 +0 0.0703 +0 0.0787 +0 0.1728 +0 0.0561 +0 0.2525 +0 0.0414 +0 0.0941 +0 0.0439 +0 0.0774 +0 0.3192 +0 0.0459 +0 0.1375 +0 0.1462 +0 0.2074 +0 0.3010 +0 0.0978 +0 0.0461 +0 0.1982 +0 0.0635 +0 0.0714 +0 0.4740 +0 0.1503 +0 0.1582 +0 0.0564 +0 0.2361 +0 0.1190 +0 0.1160 +0 0.1842 +0 0.0810 +0 0.0342 +0 0.0607 +0 0.2573 +0 0.0651 +0 0.0687 +0 0.0653 +0 0.0677 +0 0.1001 +0 0.1688 +1 0.7530 +0 0.0983 +0 0.1147 +0 0.3821 +0 0.0708 +0 0.2415 +0 0.7307 +0 0.0650 +0 0.1777 +0 0.0949 +0 0.3199 +0 0.0468 +1 0.8771 +0 0.1021 +0 0.0726 +0 0.0961 +0 0.1147 +0 0.0906 +0 0.0643 +0 0.2443 +0 0.0744 +0 0.0738 +0 0.0511 +0 0.1828 +0 0.0477 +0 0.0724 +0 0.1114 +0 0.1333 +0 0.0801 +0 0.1625 +0 0.0890 +0 0.0883 +0 0.1911 +0 0.3357 +0 0.1019 +0 0.0485 +0 0.0975 +0 0.0907 +0 0.0620 +0 0.0668 +0 0.0614 +0 0.1032 +0 0.0485 +0 0.0790 +0 0.1930 +0 0.0976 +0 0.1329 +0 0.0571 +0 0.0644 +0 0.0777 +0 0.1238 +0 0.1862 +0 0.0396 +0 0.2235 +0 0.0459 +0 0.2631 +0 0.1345 +0 0.2671 +0 0.0813 +0 0.1669 +0 0.0864 +0 0.2702 +0 0.7356 +0 0.1745 +0 0.1143 +0 0.0340 +0 0.1040 +0 0.0355 +0 0.1084 +0 0.2170 +0 0.0366 +0 0.0701 +0 0.2421 +0 0.3805 +0 0.0497 +0 0.2955 +0 0.3009 +0 0.1424 +0 0.0785 +0 0.0405 +1 0.7622 +1 0.7586 +0 0.0549 +0 0.0841 +0 0.0650 +0 0.1022 +0 0.1014 +0 0.1244 +0 0.1041 +0 0.1261 +0 0.0869 +0 0.0713 +0 0.0910 +0 0.0577 +0 0.1048 +0 0.0627 +0 0.0709 +0 0.1162 +0 0.0348 +0 0.3550 +0 0.0427 +0 0.1240 +0 0.1875 +0 0.1695 +0 0.0844 +0 0.0895 +0 0.1630 +0 0.1490 +0 0.1778 +0 0.0793 +0 0.1391 +0 0.0925 +0 0.1431 +0 0.2156 +0 0.1368 +0 0.2270 +0 0.0526 +0 0.1172 +0 0.0463 +0 0.3864 +0 0.0560 +0 0.1287 +0 0.0620 +0 0.1469 +0 0.0751 +0 0.1074 +0 0.0715 +0 0.0883 +0 0.1333 +0 0.1000 +0 0.0792 +0 0.0429 +0 0.1550 +0 0.1551 +0 0.3027 +0 0.2511 +0 0.0791 +1 0.8671 +0 0.0529 +0 0.3467 +0 0.0681 +0 0.1493 +0 0.0958 +0 0.1545 +0 0.0840 +0 0.0573 +0 0.0496 +0 0.1077 +0 0.1085 +0 0.0944 +0 0.1030 +1 0.8559 +0 0.1660 +0 0.2013 +0 0.3265 +0 0.0491 +0 0.0629 +0 0.1254 +0 0.1311 +0 0.0642 +0 0.0672 +0 0.1344 +0 0.1794 +0 0.1214 +0 0.1139 +0 0.1284 +0 0.0671 +0 0.0741 +0 0.0786 +0 0.0621 +0 0.0857 +0 0.1062 +0 0.5806 +0 0.4531 +0 0.1504 +0 0.0495 +0 0.0660 +0 0.0855 +0 0.2835 +0 0.1698 +0 0.2110 +0 0.0852 +0 0.1536 +0 0.0667 +0 0.0506 +0 0.0891 +0 0.3365 +0 0.1229 +0 0.4579 +0 0.6573 +0 0.1592 +0 0.0858 +0 0.0819 +0 0.0916 +0 0.3352 +0 0.0666 +0 0.0781 +0 0.0844 +0 0.0562 +0 0.3612 +0 0.0426 +0 0.1979 +0 0.0703 +0 0.0912 +0 0.1088 +0 0.0980 +0 0.4702 +0 0.6750 +0 0.7091 +0 0.0880 +0 0.2062 +0 0.1013 +0 0.0528 +0 0.0709 +0 0.1308 +0 0.0946 +0 0.0679 +0 0.1295 +0 0.0828 +0 0.1062 +0 0.2015 +0 0.1476 +0 0.2854 +0 0.1306 +0 0.0340 +0 0.2659 +0 0.1190 +0 0.1422 +0 0.0652 +0 0.1538 +0 0.0692 +0 0.0799 +0 0.0797 +0 0.0701 +0 0.0545 +0 0.1843 +0 0.1402 +0 0.2331 +0 0.0925 +0 0.0939 +0 0.0539 +0 0.2672 +0 0.2972 +0 0.1793 +0 0.0951 +0 0.6980 +0 0.1326 +0 0.2007 +0 0.1099 +0 0.1123 +0 0.2579 +0 0.1491 +0 0.0678 +0 0.0905 +0 0.0648 +0 0.1296 +0 0.1142 +0 0.0790 +0 0.1387 +0 0.1685 +0 0.0549 +0 0.2413 +0 0.3539 +0 0.1434 +0 0.5139 +0 0.1450 +0 0.0906 +0 0.2825 +0 0.1053 +0 0.0998 +0 0.0700 +0 0.1388 +0 0.0817 +0 0.0662 +0 0.0650 +0 0.1638 +0 0.0973 +0 0.0861 +0 0.1234 +0 0.0781 +0 0.1083 +0 0.0787 +0 0.2230 +0 0.1152 +0 0.1829 +0 0.0970 +1 0.8134 +0 0.0462 +0 0.0775 +0 0.0528 +0 0.0463 +0 0.0737 +0 0.0826 +0 0.1487 +0 0.0876 +0 0.1497 +0 0.0611 +0 0.0695 +0 0.0728 +0 0.1214 +0 0.0585 +0 0.1174 +0 0.0842 +0 0.1009 +0 0.1119 +0 0.0878 +1 0.7798 +0 0.1322 +0 0.2084 +0 0.0724 +0 0.1334 +0 0.0775 +0 0.1805 +0 0.0760 +0 0.1277 +0 0.1629 +0 0.0764 +0 0.1087 +0 0.0975 +0 0.0925 +0 0.0691 +0 0.2144 +0 0.2321 +0 0.1892 +0 0.1209 +0 0.1117 +0 0.0461 +0 0.0468 +0 0.1111 +0 0.0994 +0 0.0882 +0 0.0781 +0 0.0911 +0 0.0904 +0 0.1247 +0 0.1759 +0 0.2117 +0 0.7007 +0 0.0875 +0 0.0804 +0 0.1078 +0 0.1404 +0 0.1038 +0 0.0432 +0 0.2026 +0 0.0767 +0 0.0990 +0 0.3144 +0 0.0487 +0 0.2582 +0 0.1969 +0 0.0611 +0 0.0798 +0 0.0351 +0 0.0663 +0 0.1115 +0 0.1497 +0 0.0599 +0 0.1319 +0 0.1302 +0 0.0597 +0 0.1552 +0 0.1334 +0 0.1000 +0 0.2831 +0 0.1384 +0 0.2058 +0 0.0974 +0 0.0438 +0 0.0416 +0 0.0676 +0 0.0393 +0 0.0617 +0 0.0616 +0 0.0706 +0 0.0485 +0 0.3006 +0 0.1228 +0 0.0980 +0 0.0414 +0 0.1633 +0 0.3904 +0 0.1049 +0 0.1433 +0 0.0719 +0 0.2549 +0 0.1185 +0 0.0787 +0 0.0753 +0 0.2717 +0 0.1709 +0 0.6790 +0 0.1093 +0 0.0991 +0 0.1718 +0 0.1211 +0 0.0797 +0 0.0844 +0 0.0848 +0 0.1150 +0 0.0925 +0 0.1093 +0 0.2591 +0 0.0709 +0 0.0820 +0 0.0895 +0 0.0810 +0 0.0337 +0 0.0750 +0 0.0585 +0 0.1120 +0 0.0396 +0 0.1124 +0 0.3244 +0 0.3084 +0 0.1908 +0 0.0509 +0 0.1407 +0 0.0909 +0 0.1165 +0 0.1916 +0 0.0652 +0 0.3093 +0 0.1694 +0 0.0531 +0 0.1182 +0 0.1524 +0 0.3681 +0 0.1982 +0 0.0942 +0 0.2637 +0 0.0586 +0 0.1257 +0 0.0770 +0 0.0885 +0 0.2189 +0 0.3118 +0 0.0672 +0 0.0897 +0 0.0866 +0 0.1396 +0 0.0529 +0 0.1328 +0 0.1466 +0 0.0741 +0 0.1948 +0 0.2857 +0 0.0938 +0 0.0931 +0 0.2337 +0 0.1894 +0 0.1572 +0 0.0412 +0 0.1344 +0 0.0680 +0 0.0330 +0 0.0689 +0 0.1201 +0 0.1037 +0 0.0400 +0 0.0673 +0 0.0308 +0 0.1633 +0 0.0476 +1 0.8053 +0 0.0641 +0 0.0792 +0 0.1274 +0 0.4946 +0 0.0741 +0 0.2707 +0 0.0689 +0 0.1677 +0 0.0850 +0 0.2093 +0 0.1775 +0 0.1600 +0 0.0637 +0 0.3937 +0 0.0610 +0 0.2586 +0 0.1298 +0 0.1357 +0 0.0628 +0 0.0678 +0 0.0675 +0 0.2273 +0 0.1950 +0 0.5232 +0 0.0445 +0 0.1215 +0 0.2651 +0 0.0467 +0 0.1258 +0 0.0616 +0 0.0517 +0 0.0859 +0 0.0748 +0 0.0775 +0 0.0813 +0 0.0518 +0 0.0763 +0 0.0618 +0 0.0700 +0 0.1700 +0 0.2329 +0 0.1948 +0 0.1723 +0 0.1826 +0 0.1051 +0 0.1584 +0 0.0740 +0 0.4466 +0 0.0456 +0 0.1416 +0 0.1021 +0 0.0887 +0 0.1231 +0 0.0334 +0 0.0518 +0 0.1589 +0 0.1127 +0 0.1518 +0 0.2352 +0 0.1219 +0 0.1094 +0 0.3077 +0 0.2977 +0 0.5405 +0 0.1386 +0 0.2464 +0 0.1029 +0 0.1957 +0 0.0736 +0 0.0849 +0 0.0596 +0 0.1850 +0 0.1343 +0 0.1736 +0 0.0571 +0 0.0942 +0 0.0790 +0 0.0544 +0 0.0736 +0 0.0785 +0 0.1044 +0 0.1340 +0 0.1648 +0 0.0434 +0 0.1089 +0 0.1348 +0 0.2526 +0 0.0860 +0 0.0869 +0 0.1503 +0 0.1114 +0 0.1264 +0 0.0603 +0 0.4845 +0 0.2161 +0 0.1118 +0 0.1354 +0 0.2055 +0 0.0414 +0 0.0834 +0 0.0320 +0 0.1063 +0 0.2133 +0 0.2789 +0 0.1438 +0 0.2031 +0 0.0587 +0 0.1360 +0 0.0386 +0 0.2562 +0 0.2219 +0 0.1107 +0 0.0966 +0 0.5254 +0 0.0665 +0 0.1306 +0 0.1307 +0 0.0652 +0 0.3057 +0 0.0948 +0 0.0902 +0 0.0906 +0 0.2648 +0 0.0922 +0 0.0383 +0 0.0904 +0 0.0575 +0 0.1211 +0 0.0841 +0 0.3179 +0 0.0797 +0 0.1049 +0 0.1192 +0 0.5239 +0 0.1144 +0 0.0757 +0 0.1094 +0 0.0846 +0 0.1092 +0 0.1030 +0 0.1226 +0 0.1304 +0 0.0538 +0 0.0827 +0 0.0854 +0 0.0569 +0 0.2202 +0 0.0728 +0 0.1086 +0 0.1463 +0 0.1047 +0 0.0889 +0 0.3980 +0 0.0676 +0 0.1347 +0 0.1588 +0 0.0734 +0 0.0988 +0 0.0492 +0 0.1880 +0 0.1574 +0 0.0422 +0 0.1641 +0 0.0553 +0 0.1019 +0 0.0908 +0 0.1384 +0 0.1433 +0 0.0799 +0 0.0470 +0 0.1817 +0 0.0741 +0 0.0658 +0 0.0632 +0 0.0748 +0 0.1235 +0 0.2198 +0 0.0635 +0 0.0398 +0 0.1556 +0 0.0861 +0 0.1641 +0 0.0386 +0 0.1276 +0 0.1871 +0 0.0852 +0 0.1231 +0 0.0534 +0 0.0525 +0 0.1585 +0 0.0557 +0 0.1141 +0 0.0834 +0 0.0853 +0 0.1308 +0 0.1528 +0 0.0823 +0 0.1950 +0 0.1611 +0 0.0728 +0 0.1237 +0 0.1647 +0 0.1895 +0 0.1330 +0 0.0609 +0 0.1537 +0 0.0872 +0 0.2227 +0 0.1127 +0 0.0738 +0 0.2044 +0 0.1057 +0 0.1058 +0 0.1601 +0 0.0956 +0 0.1832 +0 0.1577 +1 0.7770 +0 0.0603 +0 0.4495 +0 0.0698 +0 0.0419 +0 0.0779 +0 0.1991 +0 0.1115 +0 0.2507 +0 0.0698 +0 0.1360 +0 0.0589 +0 0.4074 +0 0.1321 +0 0.1369 +0 0.1018 +0 0.0961 +0 0.0835 +0 0.0701 +0 0.0407 +0 0.1824 +0 0.0520 +1 0.8184 +0 0.1328 +0 0.1322 +0 0.2179 +0 0.4400 +0 0.2043 +0 0.2944 +0 0.0664 +0 0.1818 +0 0.1144 +0 0.0779 +0 0.1485 +0 0.1248 +0 0.0791 +0 0.0586 +0 0.1038 +0 0.1871 +0 0.0479 +0 0.1622 +0 0.1015 +0 0.3164 +0 0.0868 +0 0.0979 +0 0.1893 +0 0.0586 +0 0.0641 +0 0.0719 +0 0.0527 +0 0.0646 +0 0.1059 +0 0.0793 +0 0.1655 +0 0.0831 +0 0.0684 +0 0.1809 +0 0.1267 +0 0.0638 +0 0.1050 +0 0.0667 +0 0.0671 +0 0.3188 +0 0.1280 +0 0.0735 +0 0.0506 +0 0.1947 +0 0.2265 +0 0.0505 +0 0.2247 +0 0.1441 +0 0.2950 +0 0.1846 +0 0.0725 +0 0.0486 +0 0.0582 +0 0.0792 +0 0.0553 +0 0.1440 +0 0.1371 +0 0.0679 +0 0.0936 +0 0.1052 +0 0.7407 +0 0.1182 +0 0.0440 +0 0.0682 +0 0.2456 +0 0.0504 +0 0.0671 +0 0.6632 +0 0.0926 +0 0.0548 +0 0.0618 +0 0.0692 +0 0.0763 +0 0.1455 +0 0.0666 +0 0.1444 +0 0.0345 +0 0.5495 +0 0.1055 +0 0.2496 +0 0.2355 +0 0.1466 +0 0.2901 +0 0.0685 +0 0.0544 +0 0.0884 +0 0.0706 +0 0.0665 +0 0.1028 +0 0.6730 +0 0.0594 +0 0.1614 +0 0.0622 +0 0.0846 +0 0.0905 +0 0.0806 +0 0.5191 +0 0.1433 +0 0.3774 +0 0.0493 +0 0.2178 +0 0.2340 +0 0.0608 +0 0.2055 +0 0.2325 +0 0.1944 +0 0.1847 +0 0.1191 +0 0.2391 +0 0.2589 +0 0.0768 +0 0.0756 +0 0.1410 +0 0.0814 +0 0.0871 +0 0.1502 +0 0.0485 +0 0.0987 +0 0.0700 +0 0.1866 +0 0.0961 +0 0.1411 +0 0.0966 +0 0.1663 +0 0.4641 +0 0.3042 +0 0.2125 +0 0.1476 +0 0.0383 +0 0.2817 +0 0.0504 +0 0.2001 +0 0.1358 +0 0.0677 +0 0.0859 +0 0.2710 +0 0.1388 +0 0.0682 +0 0.0876 +0 0.0618 +0 0.1333 +0 0.3330 +0 0.0374 +0 0.3159 +0 0.1704 +0 0.0617 +0 0.0800 +0 0.0406 +0 0.4181 +0 0.0428 +0 0.0377 +0 0.0885 +0 0.2191 +0 0.0699 +0 0.1072 +0 0.0887 +0 0.1097 +0 0.0784 +0 0.0925 +0 0.0683 +0 0.1505 +0 0.1241 +0 0.0799 +0 0.1090 +0 0.0625 +0 0.0710 +0 0.1211 +0 0.1256 +0 0.0346 +0 0.1000 +0 0.1336 +0 0.1267 +0 0.1112 +0 0.1694 +0 0.0641 +0 0.1558 +0 0.1336 +0 0.0766 +0 0.0510 +0 0.0494 +0 0.0544 +0 0.1847 +0 0.1555 +0 0.1030 +0 0.0419 +0 0.1414 +0 0.0804 +0 0.1655 +0 0.0717 +0 0.0990 +1 0.7633 +0 0.1847 +0 0.2021 +0 0.0696 +0 0.1341 +0 0.1270 +0 0.4173 +0 0.0535 +0 0.0977 +0 0.0545 +0 0.0870 +0 0.0593 +0 0.0649 +0 0.1985 +0 0.1039 +0 0.5359 +0 0.0815 +0 0.0787 +0 0.0429 +0 0.1790 +0 0.1213 +0 0.1055 +0 0.1220 +0 0.0743 +0 0.0912 +0 0.1116 +0 0.0823 +0 0.0752 +0 0.0912 +0 0.1552 +0 0.2346 +0 0.3687 +0 0.1519 +0 0.0429 +0 0.1661 +0 0.2536 +0 0.0425 +0 0.2416 +0 0.1582 +0 0.1527 +0 0.0390 +0 0.0873 +0 0.1254 +0 0.0844 +0 0.1760 +0 0.0972 +0 0.2170 +0 0.0798 +0 0.3133 +0 0.1183 +0 0.1105 +0 0.0795 +1 0.8313 +0 0.2293 +0 0.1189 +0 0.0611 +0 0.1044 +0 0.1068 +0 0.2961 +0 0.1146 +0 0.0732 +0 0.1139 +0 0.0718 +0 0.0424 +0 0.1449 +0 0.0679 +0 0.1348 +0 0.1779 +0 0.1118 +0 0.1102 +0 0.0716 +0 0.1124 +0 0.0376 +0 0.0919 +0 0.0489 +0 0.1209 +0 0.0415 +0 0.2748 +0 0.1403 +0 0.1812 +0 0.0944 +0 0.1221 +0 0.2232 +0 0.0735 +0 0.2839 +0 0.1001 +0 0.0597 +0 0.0788 +0 0.1254 +0 0.2022 +0 0.1171 +0 0.0871 +0 0.2376 +0 0.0794 +0 0.1023 +0 0.1198 +0 0.0844 +0 0.1394 +0 0.0980 +0 0.0838 +0 0.0927 +0 0.1655 +0 0.1249 +0 0.1197 +0 0.0627 +0 0.0859 +0 0.0351 +0 0.0807 +0 0.2456 +0 0.1014 +0 0.0668 +0 0.3574 +0 0.1128 +0 0.0418 +0 0.0963 +0 0.3463 +0 0.1581 +0 0.1971 +0 0.0604 +0 0.3400 +0 0.0487 +0 0.1612 +0 0.1004 +0 0.2044 +0 0.1527 +0 0.1437 +0 0.1591 +0 0.0840 +0 0.3775 +0 0.2062 +0 0.1048 +0 0.0710 +0 0.0805 +0 0.0809 +0 0.1588 +0 0.3815 +0 0.2153 +0 0.2034 +0 0.1179 +0 0.1217 +0 0.4421 +0 0.1185 +0 0.0800 +0 0.0993 +0 0.0607 +0 0.1334 +0 0.1075 +0 0.0400 +0 0.1547 +0 0.1165 +0 0.1805 +0 0.0484 +0 0.1675 +0 0.3235 +0 0.0568 +0 0.0700 +0 0.0946 +0 0.0938 +0 0.1099 +0 0.1405 +0 0.0416 +0 0.2587 +0 0.1187 +0 0.6845 +0 0.0733 +0 0.2237 +0 0.1272 +0 0.0566 +0 0.0885 +0 0.0467 +0 0.1092 +0 0.0978 +0 0.0896 +0 0.0992 +0 0.6894 +0 0.1710 +0 0.0886 +0 0.0565 +0 0.1382 +0 0.1480 +0 0.0969 +0 0.0815 +0 0.1251 +0 0.1158 +0 0.1486 +0 0.1233 +0 0.2604 +0 0.0402 +0 0.3300 +0 0.1720 +0 0.0685 +0 0.1440 +0 0.0973 +0 0.0740 +0 0.0763 +0 0.1055 +0 0.0713 +0 0.1207 +0 0.0976 +0 0.1073 +0 0.0680 +0 0.0757 +0 0.0467 +0 0.2768 +0 0.1807 +0 0.0354 +0 0.0415 +0 0.0676 +0 0.2263 +0 0.1370 +0 0.2586 +0 0.4765 +0 0.1327 +0 0.1583 +0 0.1136 +0 0.1634 +0 0.0764 +0 0.6399 +0 0.1673 +0 0.1828 +0 0.4987 +0 0.1188 +0 0.0545 +0 0.0481 +0 0.1733 +0 0.1394 +0 0.0787 +0 0.1840 +0 0.2352 +0 0.0683 +0 0.0838 +0 0.0642 +0 0.0610 +0 0.1005 +1 0.7621 +0 0.0568 +0 0.2568 +0 0.3087 +0 0.0888 +0 0.1400 +0 0.0959 +0 0.2817 +0 0.0978 +0 0.1929 +0 0.1321 +0 0.1904 +0 0.4035 +0 0.0884 +0 0.1078 +0 0.1071 +0 0.1615 +0 0.5780 +0 0.1823 +0 0.0745 +0 0.0851 +0 0.2259 +1 0.7509 +0 0.2129 +0 0.7434 +0 0.1099 +0 0.0451 +0 0.0379 +0 0.1411 +0 0.2232 +0 0.1537 +0 0.1562 +0 0.1346 +0 0.1209 +0 0.0692 +0 0.0980 +0 0.1143 +0 0.2183 +0 0.2985 +0 0.0444 +0 0.0543 +0 0.0658 +0 0.2065 +0 0.0518 +0 0.0807 +0 0.0737 +0 0.0905 +0 0.4427 +0 0.1656 +0 0.0996 +0 0.1305 +0 0.1909 +0 0.4327 +0 0.1274 +0 0.1306 +0 0.1614 +0 0.2098 +0 0.0770 +0 0.0873 +0 0.2549 +0 0.1608 +0 0.0710 +0 0.2076 +0 0.1300 +0 0.3144 +0 0.0619 +0 0.0954 +0 0.2005 +0 0.0954 +0 0.1167 +0 0.0651 +0 0.1373 +0 0.1261 +0 0.0702 +0 0.0923 +0 0.0932 +1 0.8480 +0 0.1119 +0 0.0933 +0 0.1909 +0 0.1165 +0 0.1028 +0 0.1150 +0 0.0723 +0 0.0608 +0 0.6977 +0 0.1692 +0 0.0975 +0 0.1252 +0 0.4632 +0 0.1542 +0 0.0594 +0 0.2514 +0 0.1206 +0 0.0837 +0 0.5782 +0 0.1209 +0 0.4262 +0 0.0803 +0 0.1076 +0 0.2332 +0 0.3375 +0 0.0828 +0 0.4646 +0 0.1065 +0 0.1096 +0 0.0729 +0 0.0527 +0 0.0481 +0 0.1383 +0 0.1663 +0 0.0647 +0 0.0952 +0 0.1426 +0 0.1113 +0 0.0667 +0 0.1363 +0 0.0853 +0 0.5104 +0 0.0434 +0 0.1458 +0 0.1758 +0 0.1281 +0 0.0572 +0 0.0387 +0 0.1724 +0 0.0690 +0 0.0907 +0 0.1529 +0 0.1872 +0 0.1684 +0 0.0717 +0 0.1500 +0 0.1738 +0 0.4554 +0 0.0984 +0 0.1277 +0 0.2662 +0 0.0591 +0 0.0635 +0 0.1345 +0 0.0983 +0 0.1379 +0 0.0599 +0 0.2900 +0 0.0639 +0 0.0455 +0 0.5311 +0 0.0534 +0 0.1076 +0 0.1445 +0 0.0944 +0 0.1099 +0 0.1383 +0 0.1203 +0 0.3438 +0 0.0370 +0 0.0698 +0 0.1547 +0 0.3202 +0 0.0845 +0 0.0746 +0 0.0777 +0 0.1402 +0 0.0806 +0 0.2969 +0 0.1471 +0 0.1229 +0 0.2181 +0 0.0439 +0 0.1508 +0 0.1878 +0 0.0966 +0 0.3007 +0 0.0867 +0 0.0795 +0 0.0856 +0 0.0505 +0 0.0497 +0 0.1054 +0 0.0625 +0 0.0620 +0 0.1075 +0 0.0633 +0 0.1004 +0 0.1184 +0 0.0773 +0 0.1354 +0 0.1968 +0 0.4219 +0 0.0903 +0 0.4549 +0 0.1132 +0 0.1847 +0 0.0865 +0 0.0844 +0 0.3630 +0 0.0898 +0 0.0839 +0 0.1048 +0 0.1015 +0 0.0429 +0 0.0919 +0 0.0941 +0 0.1246 +0 0.0691 +0 0.0724 +0 0.0500 +0 0.1979 +0 0.0486 +0 0.1962 +0 0.3036 +0 0.6461 +0 0.1468 +0 0.1087 +0 0.1499 +0 0.1231 +0 0.0938 +0 0.1899 +0 0.0729 +0 0.0772 +0 0.2476 +0 0.0767 +0 0.0777 +0 0.2829 +0 0.1265 +0 0.1321 +0 0.0824 +0 0.1578 +0 0.0658 +0 0.2192 +0 0.1789 +0 0.1807 +0 0.1929 +0 0.0382 +0 0.1986 +0 0.6413 +0 0.1123 +0 0.2155 +0 0.1117 +0 0.2128 +0 0.0722 +0 0.0868 +0 0.0401 +1 0.8053 +0 0.0466 +0 0.1126 +0 0.0787 +0 0.1759 +0 0.0891 +0 0.0738 +1 0.8491 +0 0.1235 +0 0.0609 +0 0.0479 +0 0.1345 +0 0.0852 +0 0.1121 +0 0.0945 +0 0.0494 +0 0.0923 +0 0.0409 +0 0.3092 +0 0.0959 +0 0.0601 +0 0.1182 +0 0.1089 +0 0.1586 +0 0.0885 +0 0.0569 +0 0.3109 +0 0.1589 +0 0.0619 +0 0.2761 +0 0.4676 +0 0.1492 +0 0.1370 +0 0.0585 +0 0.0482 +0 0.2258 +0 0.0622 +0 0.2271 +0 0.0692 +0 0.1733 +0 0.1325 +0 0.0650 +0 0.0962 +0 0.0754 +0 0.1698 +0 0.1537 +0 0.0634 +0 0.0345 +0 0.6741 +0 0.0379 +0 0.1703 +0 0.0457 +0 0.0447 +0 0.4797 +0 0.0622 +0 0.0738 +0 0.1403 +0 0.1837 +0 0.1248 +0 0.0700 +0 0.1645 +0 0.0998 +0 0.1686 +0 0.1914 +0 0.0551 +0 0.0680 +0 0.1903 +0 0.1002 +0 0.0641 +0 0.2140 +0 0.0998 +0 0.2238 +0 0.1782 +0 0.1871 +0 0.0584 +0 0.0670 +0 0.2196 +0 0.0845 +0 0.1402 +0 0.0842 +0 0.2061 +0 0.1555 +0 0.1063 +0 0.1152 +0 0.0395 +0 0.0727 +0 0.0781 +0 0.0451 +0 0.0609 +0 0.0544 +0 0.1126 +0 0.2503 +0 0.1152 +0 0.0842 +0 0.2030 +0 0.0776 +0 0.2748 +0 0.1232 +0 0.1179 +0 0.1003 +0 0.1225 +0 0.1345 +0 0.0666 +1 0.8098 +0 0.0643 +0 0.0913 +0 0.1167 +0 0.0481 +0 0.3327 +0 0.0660 +0 0.1164 +0 0.1244 +0 0.1224 +0 0.1008 +0 0.0577 +0 0.0514 +0 0.1222 +0 0.5740 +0 0.1710 +0 0.3259 +0 0.2560 +0 0.1033 +0 0.0356 +0 0.0335 +0 0.0862 +0 0.3421 +0 0.1169 +0 0.2899 +0 0.3195 +0 0.1206 +0 0.1283 +0 0.0615 +0 0.0714 +0 0.0988 +0 0.1188 +0 0.0606 +0 0.1435 +0 0.2962 +0 0.0296 +0 0.2328 +0 0.0560 +0 0.0362 +0 0.1310 +0 0.1739 +0 0.0775 +0 0.1689 +0 0.2246 +0 0.1164 +0 0.3749 +0 0.1542 +0 0.0638 +0 0.6678 +0 0.2418 +0 0.0645 +0 0.0776 +0 0.0980 +0 0.0754 +0 0.1371 +0 0.0933 +0 0.0836 +0 0.1060 +0 0.0455 +0 0.5926 +0 0.1027 +0 0.0936 +0 0.0788 +0 0.1935 +0 0.0804 +0 0.1082 +0 0.3403 +0 0.0593 +0 0.0426 +0 0.0712 +0 0.7183 +0 0.1936 +0 0.1305 +0 0.1177 +0 0.1071 +0 0.1188 +1 0.8535 +1 0.7716 +0 0.3319 +0 0.2333 +0 0.3454 +0 0.1428 +0 0.3253 +0 0.1444 +0 0.1476 +0 0.0953 +0 0.0544 +0 0.1673 +0 0.1467 +0 0.0553 +0 0.0389 +0 0.0957 +0 0.0491 +0 0.1717 +0 0.3930 +0 0.2128 +0 0.0623 +0 0.3125 +0 0.2125 +0 0.0661 +0 0.1962 +0 0.0808 +0 0.1544 +0 0.1876 +0 0.0709 +0 0.2338 +0 0.0772 +1 0.8683 +0 0.1592 +0 0.2372 +0 0.0707 +0 0.0532 +0 0.0680 +0 0.0594 +0 0.1205 +0 0.1217 +0 0.1021 +0 0.1726 +0 0.0948 +0 0.1858 +0 0.0594 +0 0.2130 +0 0.0736 +0 0.1288 +0 0.1010 +0 0.0488 +0 0.0869 +0 0.1157 +0 0.0880 +0 0.0764 +0 0.0682 +0 0.3795 +0 0.1685 +0 0.0516 +0 0.0772 +0 0.1633 +0 0.0837 +0 0.0840 +0 0.0399 +0 0.0862 +0 0.0858 +0 0.1667 +0 0.1315 +0 0.0837 +0 0.1396 +0 0.2029 +0 0.0638 +0 0.1108 +0 0.0983 +0 0.0802 +0 0.0605 +0 0.1213 +0 0.2023 +0 0.0918 +0 0.1331 +0 0.1329 +0 0.0463 +0 0.0788 +0 0.3436 +0 0.0539 +0 0.0437 +0 0.0316 +0 0.0641 +0 0.3269 +0 0.0869 +0 0.1344 +0 0.1483 +0 0.1360 +0 0.0580 +0 0.1108 +0 0.3576 +0 0.1005 +0 0.1960 +0 0.1622 +0 0.0724 +0 0.0958 +0 0.1129 +1 0.7658 +0 0.7247 +0 0.1520 +0 0.6081 +0 0.0637 +0 0.3401 +1 0.7594 +0 0.0685 +0 0.4608 +0 0.0592 +0 0.1480 +0 0.3129 +1 0.8140 +0 0.1552 +0 0.0824 +0 0.2283 +0 0.0687 +0 0.1219 +0 0.0356 +0 0.0558 +0 0.3670 +0 0.0786 +0 0.0718 +0 0.1017 +0 0.1493 +0 0.1334 +0 0.0843 +0 0.2030 +0 0.0688 +0 0.0333 +0 0.1177 +0 0.0600 +0 0.2970 +0 0.1412 +1 0.8265 +0 0.0677 +0 0.6237 +0 0.0652 +0 0.1844 +0 0.0856 +0 0.1003 +0 0.0803 +0 0.1074 +0 0.0728 +0 0.1308 +0 0.0726 +0 0.3343 +0 0.1201 +0 0.2403 +0 0.1123 +0 0.0739 +0 0.0918 +0 0.1019 +0 0.1196 +0 0.0747 +0 0.0608 +0 0.0369 +0 0.1661 +0 0.0485 +0 0.0669 +0 0.0735 +0 0.0990 +0 0.0551 +0 0.1019 +0 0.0783 +0 0.1436 +0 0.0860 +0 0.0696 +0 0.1916 +0 0.0445 +0 0.1605 +0 0.2089 +0 0.3992 +0 0.1281 +0 0.1021 +0 0.1943 +0 0.0711 +0 0.3495 +0 0.0870 +0 0.0698 +0 0.0967 +0 0.7454 +0 0.0988 +0 0.2716 +0 0.2399 +0 0.0648 +0 0.0444 +0 0.1291 +0 0.1445 +0 0.1004 +1 0.8478 +0 0.5320 +0 0.0807 +0 0.0421 +0 0.0917 +0 0.0663 +0 0.0912 +0 0.2132 +0 0.1466 +0 0.1000 +0 0.2002 +0 0.0683 +0 0.4364 +0 0.1173 +0 0.1028 +0 0.1671 +0 0.2464 +0 0.0992 +0 0.1009 +0 0.0695 +0 0.1173 +0 0.1655 +0 0.0684 +0 0.0452 +0 0.1460 +0 0.0368 +0 0.0900 +0 0.1457 +0 0.0807 +0 0.0917 +0 0.1311 +0 0.1301 +0 0.1504 +0 0.1345 +0 0.0925 +0 0.0691 +0 0.0972 +0 0.2014 +0 0.1961 +0 0.1520 +0 0.0926 +0 0.1895 +0 0.0751 +0 0.3545 +0 0.1153 +0 0.0645 +0 0.0601 +0 0.1074 +0 0.1129 +0 0.1474 +0 0.1002 +0 0.4615 +0 0.0870 +0 0.2200 +0 0.2245 +0 0.1235 +0 0.1177 +0 0.0844 +0 0.0950 +0 0.0882 +0 0.3473 +0 0.0720 +0 0.0601 +1 0.8575 +0 0.1600 +0 0.0394 +0 0.1410 +0 0.2566 +0 0.0861 +0 0.1536 +0 0.0831 +0 0.0815 +0 0.1098 +0 0.0381 +0 0.0640 +0 0.1220 +0 0.0736 +0 0.0741 +0 0.0926 +0 0.2115 +0 0.1602 +0 0.1878 +0 0.0438 +0 0.1214 +0 0.2836 +1 0.7945 +0 0.1402 +0 0.1812 +0 0.0530 +0 0.0696 +0 0.1113 +0 0.1008 +0 0.1083 +0 0.1733 +0 0.0475 +0 0.6442 +0 0.1003 +0 0.0721 +0 0.5049 +0 0.0782 +0 0.0433 +0 0.1274 +0 0.0491 +0 0.1330 +0 0.1201 +0 0.1052 +0 0.1018 +0 0.3537 +0 0.2345 +0 0.0477 +0 0.1905 +0 0.1334 +0 0.1087 +0 0.0987 +0 0.2657 +0 0.2233 +0 0.0289 +0 0.1888 +0 0.2311 +0 0.0532 +0 0.1378 +0 0.0915 +0 0.1480 +0 0.0505 +0 0.0466 +0 0.1727 +0 0.0665 +0 0.1073 +0 0.2751 +0 0.0680 +0 0.1874 +0 0.2310 +0 0.5357 +0 0.0785 +0 0.2047 +0 0.0862 +0 0.2470 +0 0.1032 +0 0.0729 +0 0.2275 +0 0.1318 +0 0.1905 +0 0.3542 +0 0.0803 +0 0.1079 +0 0.0831 +0 0.4680 +0 0.1264 +0 0.3348 +0 0.1335 +0 0.0443 +0 0.0490 +0 0.3194 +0 0.1070 +0 0.0755 +0 0.0594 +0 0.3099 +0 0.4158 +0 0.3240 +0 0.1091 +0 0.1813 +0 0.0453 +0 0.2237 +0 0.0872 +0 0.0813 +0 0.0639 +0 0.1715 +0 0.0389 +0 0.1006 +0 0.0658 +0 0.0676 +0 0.2099 +0 0.0714 +0 0.1537 +0 0.1171 +0 0.1035 +0 0.1215 +0 0.4090 +0 0.2979 +0 0.0521 +0 0.1466 +0 0.0760 +0 0.1392 +0 0.2462 +0 0.1457 +0 0.0711 +1 0.8682 +0 0.2076 +0 0.1176 +1 0.7588 +0 0.4516 +0 0.0979 +0 0.3709 +0 0.1361 +0 0.2287 +0 0.0892 +0 0.0735 +0 0.0988 +0 0.0726 +0 0.3366 +0 0.1662 +0 0.1116 +0 0.1997 +0 0.0481 +0 0.1267 +0 0.0859 +0 0.0679 +0 0.1218 +0 0.0959 +0 0.0993 +0 0.0468 +0 0.1530 +0 0.1538 +0 0.2236 +0 0.1295 +0 0.1160 +0 0.0374 +0 0.0749 +0 0.0440 +0 0.0459 +0 0.2780 +0 0.0656 +0 0.5464 +0 0.1417 +0 0.0490 +0 0.1197 +0 0.0600 +0 0.0729 +0 0.5071 +0 0.0686 +0 0.3354 +0 0.1444 +0 0.0635 +0 0.1641 +0 0.1561 +0 0.4823 +0 0.0877 +0 0.1953 +0 0.0683 +0 0.2311 +0 0.2573 +0 0.1237 +0 0.1871 +0 0.2352 +0 0.0868 +0 0.2688 +0 0.1656 +0 0.1103 +0 0.1062 +1 0.8568 +0 0.0627 +0 0.0473 +0 0.1372 +0 0.1004 +0 0.0745 +0 0.0665 +0 0.0647 +0 0.4585 +0 0.0374 +0 0.0671 +0 0.3499 +0 0.0555 +0 0.0394 +0 0.1764 +0 0.1961 +0 0.0985 +0 0.0536 +0 0.4459 +0 0.2021 +0 0.2031 +0 0.0899 +0 0.1127 +0 0.0490 +0 0.0948 +0 0.1031 +0 0.0668 +0 0.1030 +0 0.0549 +0 0.0883 +0 0.0709 +0 0.1026 +0 0.0852 +0 0.1001 +0 0.0917 +0 0.1632 +0 0.0548 +0 0.1013 +0 0.0689 +0 0.2348 +1 0.8559 +0 0.0587 +0 0.0647 +0 0.1351 +0 0.1555 +0 0.2094 +0 0.1693 +0 0.1528 +0 0.0989 +1 0.7707 +0 0.0556 +0 0.0864 +0 0.0503 +0 0.1712 +0 0.2147 +0 0.6721 +0 0.1173 +0 0.0775 +0 0.1721 +0 0.6519 +0 0.4730 +0 0.1350 +0 0.0587 +0 0.0448 +0 0.1266 +0 0.1260 +0 0.1744 +0 0.5121 +0 0.1051 +0 0.1153 +0 0.1518 +0 0.2069 +0 0.0362 +0 0.1299 +0 0.1085 +0 0.0534 +0 0.0972 +0 0.0813 +0 0.0350 +0 0.1364 +0 0.2054 +0 0.7489 +0 0.1135 +0 0.1068 +0 0.0685 +0 0.0500 +0 0.0592 +0 0.0813 +0 0.0710 +0 0.0832 +0 0.1031 +0 0.0858 +0 0.0661 +0 0.0645 +0 0.0635 +0 0.1381 +0 0.0371 +0 0.0739 +0 0.1100 +0 0.1025 +0 0.1653 +0 0.1018 +0 0.1018 +0 0.0428 +0 0.2795 +1 0.8316 +0 0.1610 +0 0.0842 +0 0.0532 +0 0.0808 +0 0.1203 +0 0.0975 +0 0.1428 +0 0.2200 +0 0.1412 +0 0.5001 +0 0.1298 +0 0.0865 +0 0.0595 +0 0.0712 +0 0.0923 +0 0.1152 +0 0.0683 +0 0.1071 +0 0.1143 +0 0.1332 +0 0.0737 +0 0.0706 +0 0.3759 +0 0.1433 +0 0.1483 +0 0.1214 +0 0.1161 +0 0.1366 +0 0.0702 +0 0.0783 +0 0.0841 +0 0.2276 +0 0.0731 +0 0.0615 +0 0.1042 +0 0.0711 +0 0.0828 +0 0.0827 +0 0.0329 +0 0.1032 +0 0.0864 +1 0.3462 +0 0.1301 +0 0.2319 +0 0.1311 +0 0.0942 +0 0.0932 +0 0.1508 +0 0.1099 +0 0.2152 +0 0.1347 +0 0.1088 +0 0.0472 +0 0.1023 +0 0.0555 +0 0.2597 +0 0.0928 +0 0.0440 +0 0.0711 +1 0.8380 +0 0.0516 +0 0.1100 +0 0.0662 +0 0.0708 +0 0.1156 +0 0.1127 +0 0.1181 +0 0.1489 +0 0.0890 +0 0.0716 +0 0.1503 +0 0.0547 +0 0.2082 +0 0.0430 +0 0.0819 +0 0.6876 +0 0.0529 +0 0.0802 +0 0.2136 +0 0.4380 +0 0.1250 +0 0.1162 +0 0.0637 +0 0.1126 +0 0.1098 +0 0.0752 +0 0.1026 +0 0.3275 +0 0.0851 +0 0.2512 +0 0.1098 +0 0.1368 +0 0.0378 +0 0.3094 +0 0.0360 +0 0.1204 +0 0.1169 +0 0.0998 +0 0.1597 +0 0.1137 +0 0.1453 +0 0.0811 +0 0.0906 +0 0.2046 +0 0.0727 +0 0.0981 +0 0.0727 +0 0.0956 +0 0.0811 +0 0.2014 +0 0.0482 +0 0.3040 +0 0.0858 +0 0.2521 +0 0.1026 +0 0.2637 +0 0.1126 +0 0.0487 +0 0.1227 +0 0.1590 +0 0.1309 +0 0.1729 +0 0.0473 +0 0.0896 +1 0.7794 +0 0.2705 +0 0.1123 +0 0.0504 +0 0.0676 +0 0.0561 +0 0.0961 +0 0.0437 +0 0.0507 +0 0.2593 +0 0.0742 +0 0.2204 +0 0.0984 +0 0.1242 +0 0.1300 +0 0.2980 +0 0.0888 +0 0.1579 +0 0.0758 +0 0.0876 +0 0.1066 +0 0.0839 +0 0.0684 +0 0.0388 +0 0.0829 +0 0.1254 +0 0.0544 +0 0.0675 +0 0.0854 +0 0.1535 +0 0.0847 +0 0.0395 +0 0.0561 +0 0.1195 +0 0.2148 +0 0.2473 +0 0.1492 +0 0.1966 +0 0.0601 +0 0.0522 +0 0.0855 +0 0.0581 +0 0.1421 +0 0.1621 +0 0.0429 +0 0.0719 +0 0.0694 +0 0.1234 +0 0.0300 +0 0.0462 +0 0.0484 +0 0.0693 +0 0.0845 +0 0.0924 +0 0.0833 +0 0.0729 +0 0.0877 +0 0.0643 +0 0.3043 +0 0.0577 +0 0.0764 +0 0.2170 +0 0.0981 +0 0.6445 +0 0.1432 +0 0.1027 +0 0.1294 +0 0.0785 +0 0.0804 +0 0.4850 +0 0.0790 +0 0.5934 +0 0.1180 +0 0.5959 +0 0.1202 +1 0.7785 +0 0.0914 +0 0.3703 +0 0.1292 +0 0.1640 +0 0.2500 +0 0.0600 +1 0.8989 +0 0.1679 +0 0.0938 +0 0.1795 +0 0.0946 +0 0.1448 +0 0.1240 +0 0.2571 +0 0.0508 +0 0.2772 +0 0.0687 +0 0.0762 +0 0.2372 +0 0.0721 +0 0.0582 +0 0.1337 +0 0.1707 +0 0.1590 +0 0.1143 +0 0.1655 +0 0.0590 +0 0.4539 +0 0.1312 +1 0.8143 +0 0.0976 +0 0.0283 +0 0.1169 +0 0.0977 +1 0.8200 +0 0.1403 +0 0.1415 +0 0.4306 +0 0.0713 +0 0.1596 +0 0.0545 +0 0.4461 +0 0.0466 +0 0.1809 +0 0.2002 +0 0.1277 +0 0.0690 +0 0.1017 +0 0.1547 +0 0.1792 +0 0.0718 +0 0.0603 +0 0.1051 +0 0.0860 +0 0.0460 +0 0.0315 +0 0.2506 +0 0.1858 +0 0.1011 +0 0.1654 +0 0.3620 +0 0.0615 +0 0.2832 +0 0.1986 +0 0.1915 +0 0.2216 +0 0.0633 +0 0.0797 +0 0.1407 +0 0.1250 +0 0.1670 +0 0.0582 +0 0.1075 +0 0.0600 +0 0.1098 +0 0.0564 +0 0.1513 +0 0.0788 +0 0.0356 +0 0.6693 +0 0.1104 +0 0.1394 +0 0.0481 +0 0.1160 +0 0.1764 +0 0.1235 +0 0.1025 +0 0.0789 +0 0.0895 +0 0.0409 +0 0.1835 +0 0.1110 +0 0.0534 +0 0.0533 +0 0.1409 +0 0.0884 +0 0.5348 +0 0.1489 +0 0.1864 +0 0.0565 +0 0.1364 +0 0.1710 +0 0.0430 +0 0.0754 +0 0.0836 +0 0.0761 +0 0.1588 +0 0.0910 +0 0.2025 +0 0.0826 +0 0.0773 +0 0.0880 +0 0.0653 +0 0.1784 +0 0.1811 +0 0.3415 +0 0.1191 +0 0.1010 +0 0.1164 +0 0.0512 +0 0.0792 +0 0.1056 +0 0.0733 +0 0.0680 +0 0.0787 +0 0.2671 +0 0.5940 +0 0.2548 +0 0.1515 +0 0.0946 +0 0.3632 +0 0.1016 +0 0.3375 +1 0.8418 +0 0.0390 +0 0.1305 +0 0.1363 +0 0.0837 +0 0.0748 +0 0.0702 +0 0.1072 +0 0.0857 +0 0.1363 +0 0.1379 +0 0.1395 +0 0.1217 +0 0.0599 +0 0.1086 +0 0.0723 +0 0.0849 +0 0.0620 +0 0.4319 +0 0.0788 +0 0.1652 +0 0.0592 +0 0.0822 +0 0.0935 +0 0.1232 +0 0.0860 +0 0.0895 +0 0.1300 +0 0.1049 +0 0.1698 +0 0.4047 +0 0.1476 +0 0.0692 +0 0.0610 +0 0.3111 +0 0.0844 +1 0.8457 +0 0.1338 +0 0.0873 +0 0.2409 +0 0.0691 +0 0.0739 +0 0.1130 +0 0.1654 +0 0.0387 +0 0.0723 +0 0.0589 +0 0.1025 +0 0.1512 +0 0.1285 +0 0.2765 +0 0.1470 +0 0.1099 +0 0.2741 +0 0.1265 +0 0.1325 +0 0.0564 +0 0.1161 +0 0.0557 +0 0.0972 +0 0.0682 +0 0.2462 +0 0.0415 +0 0.0825 +0 0.1226 +0 0.0720 +0 0.2334 +0 0.1633 +0 0.0527 +0 0.0975 +0 0.1226 +0 0.1715 +0 0.1214 +0 0.1331 +0 0.0707 +0 0.0856 +0 0.2341 +0 0.0837 +0 0.1100 +0 0.5458 +0 0.1267 +0 0.0535 +0 0.2148 +0 0.0755 +0 0.1565 +0 0.0805 +0 0.0944 +0 0.1736 +0 0.2039 +0 0.0420 +1 0.7560 +0 0.2131 +0 0.2245 +0 0.0670 +0 0.0778 +0 0.1051 +0 0.2564 +0 0.1684 +0 0.0665 +0 0.2198 +0 0.0554 +0 0.0708 +0 0.3066 +0 0.2210 +1 0.8016 +0 0.2085 +0 0.0881 +0 0.1107 +0 0.1936 +0 0.1067 +0 0.0693 +0 0.0784 +0 0.0748 +0 0.0715 +0 0.1913 +0 0.1275 +0 0.1271 +0 0.0589 +0 0.1167 +0 0.1150 +0 0.0805 +0 0.0678 +0 0.2033 +0 0.6484 +0 0.0918 +0 0.0906 +0 0.4599 +0 0.2839 +0 0.1078 +0 0.1082 +0 0.1842 +0 0.4451 +0 0.2822 +0 0.2140 +0 0.0659 +0 0.1121 +0 0.0538 +0 0.1128 +0 0.0502 +0 0.1343 +0 0.1405 +0 0.1057 +0 0.0942 +0 0.2405 +0 0.3762 +0 0.1113 +0 0.0734 +0 0.1285 +0 0.1518 +0 0.0554 +0 0.0977 +0 0.1361 +0 0.1558 +0 0.0393 +0 0.0831 +0 0.0458 +0 0.0839 +0 0.0902 +0 0.3484 +0 0.2254 +0 0.1300 +0 0.1319 +0 0.0945 +0 0.0910 +0 0.0550 +0 0.1705 +0 0.1087 +0 0.0603 +0 0.1292 +0 0.0752 +0 0.0688 +0 0.1572 +0 0.1248 +0 0.1165 +0 0.2002 +0 0.0881 +0 0.0849 +0 0.0721 +0 0.1336 +0 0.0635 +0 0.0664 +0 0.0518 +0 0.1394 +0 0.0493 +0 0.0364 +0 0.1557 +0 0.1580 +0 0.0735 +0 0.1117 +0 0.0493 +0 0.0660 +0 0.1426 +0 0.1104 +0 0.0900 +0 0.2236 +0 0.3914 +0 0.1645 +0 0.0653 +0 0.2293 +0 0.0624 +0 0.0701 +0 0.0741 +0 0.6176 +1 0.7700 +0 0.1218 +0 0.1177 +0 0.0720 +1 0.8327 +0 0.1112 +0 0.1022 +0 0.1009 +0 0.0326 +0 0.0452 +0 0.1434 +0 0.3973 +0 0.2201 +0 0.1747 +0 0.1831 +0 0.0758 +0 0.1022 +0 0.0453 +0 0.0677 +0 0.2219 +0 0.1976 +0 0.0461 +0 0.0749 +0 0.1336 +0 0.0916 +0 0.1504 +0 0.0661 +0 0.1776 +0 0.0722 +0 0.1248 +0 0.0702 +0 0.0773 +0 0.1908 +0 0.0929 +0 0.1023 +0 0.2891 +0 0.0984 +0 0.0844 +0 0.0882 +0 0.0493 +0 0.0578 +0 0.0742 +0 0.0557 +0 0.2943 +0 0.2500 +0 0.0735 +0 0.0564 +0 0.1166 +0 0.0722 +0 0.1041 +0 0.0420 +0 0.1681 +0 0.0861 +0 0.1188 +0 0.1522 +0 0.1827 +0 0.1141 +0 0.0880 +0 0.2201 +0 0.1436 +0 0.1244 +0 0.1522 +0 0.4061 +0 0.0984 +0 0.0538 +0 0.3375 +0 0.0773 +0 0.1556 +0 0.0443 +0 0.3458 +0 0.0430 +0 0.1088 +0 0.6062 +0 0.1711 +0 0.0429 +0 0.1861 +0 0.0613 +0 0.0442 +0 0.3246 +0 0.0500 +0 0.2525 +0 0.0625 +0 0.1430 +0 0.1913 +0 0.1921 +0 0.0670 +0 0.1294 +0 0.0694 +0 0.1174 +0 0.0861 +0 0.0985 +0 0.0922 +0 0.1300 +0 0.0501 +1 0.8658 +0 0.1706 +0 0.0567 +0 0.1196 +0 0.3127 +0 0.1013 +0 0.0655 +1 0.7754 +0 0.1317 +0 0.5359 +0 0.0652 +0 0.0860 +0 0.1051 +0 0.2624 +0 0.2526 +0 0.1923 +0 0.1997 +0 0.5747 +0 0.0580 +0 0.0821 +0 0.2078 +0 0.0808 +0 0.0795 +0 0.0802 +0 0.1971 +0 0.0446 +0 0.1299 +1 0.7574 +0 0.1947 +0 0.2351 +0 0.1168 +0 0.0515 +0 0.1053 +0 0.2040 +0 0.0624 +0 0.0894 +0 0.1147 +0 0.0723 +0 0.2071 +0 0.1974 +0 0.0644 +0 0.1548 +0 0.1152 +0 0.3799 +0 0.0835 +0 0.1098 +0 0.0799 +0 0.6905 +0 0.0979 +0 0.0928 +0 0.1960 +0 0.1037 +0 0.3770 +1 0.5018 +0 0.0895 +0 0.1452 +0 0.1320 +0 0.1705 +0 0.4257 +0 0.1111 +0 0.0769 +0 0.1601 +0 0.0642 +0 0.1575 +0 0.0718 +0 0.0475 +0 0.3595 +0 0.0821 +0 0.3787 +0 0.0692 +0 0.3804 +0 0.4095 +0 0.0753 +0 0.0624 +0 0.0763 +0 0.0904 +0 0.2305 +0 0.1993 +0 0.1556 +0 0.0294 +0 0.1530 +0 0.0558 +0 0.1581 +0 0.0648 +0 0.0732 +0 0.1711 +0 0.4033 +0 0.0665 +0 0.1805 +0 0.0615 +0 0.1186 +0 0.1075 +0 0.0598 +0 0.0451 +0 0.0572 +0 0.0966 +0 0.0674 +0 0.0523 +0 0.1063 +0 0.0763 +0 0.0327 +0 0.0601 +0 0.3209 +0 0.1304 +0 0.1263 +0 0.0543 +0 0.0953 +0 0.0765 +0 0.0817 +0 0.0621 +0 0.0728 +0 0.2141 +0 0.0552 +0 0.0661 +0 0.1776 +0 0.0509 +0 0.1276 +0 0.0724 +0 0.0435 +0 0.1449 +0 0.1215 +0 0.2151 +0 0.0410 +0 0.1126 +0 0.0871 +0 0.1497 +0 0.2745 +0 0.2640 +0 0.1646 +0 0.4529 +0 0.1824 +0 0.0653 +0 0.0815 +0 0.1372 +0 0.0692 +0 0.0764 +0 0.1253 +0 0.0558 +0 0.1256 +0 0.1190 +0 0.0927 +0 0.0709 +0 0.0876 +0 0.0735 +0 0.0740 +0 0.0913 +0 0.0440 +0 0.1773 +0 0.2539 +0 0.1327 +0 0.1136 +0 0.1590 +0 0.0548 +0 0.1107 +0 0.1040 +0 0.1709 +0 0.0740 +0 0.0887 +0 0.1433 +0 0.1349 +0 0.1865 +0 0.2975 +0 0.6188 +0 0.1854 +0 0.0618 +0 0.2069 +0 0.0669 +0 0.2509 +0 0.0901 +0 0.0996 +0 0.1688 +0 0.1250 +0 0.2469 +0 0.2169 +0 0.3662 +0 0.1387 +0 0.0698 +0 0.0850 +0 0.0720 +0 0.1123 +0 0.1278 +1 0.7660 +0 0.0646 +0 0.0684 +0 0.0880 +0 0.1274 +0 0.0441 +0 0.1188 +0 0.1189 +0 0.2594 +0 0.1044 +0 0.1931 +0 0.1143 +0 0.1897 +0 0.2166 +0 0.1472 +0 0.0624 +0 0.3804 +0 0.0380 +0 0.0580 +0 0.3122 +0 0.0793 +0 0.0375 +0 0.0608 +0 0.1590 +0 0.1427 +0 0.1023 +0 0.1967 +0 0.3199 +1 0.8000 +0 0.1104 +1 0.8201 +0 0.1020 +0 0.0848 +0 0.0906 +0 0.0480 +0 0.0924 +0 0.1221 +0 0.0914 +0 0.0752 +0 0.2120 +0 0.1897 +0 0.0463 +0 0.1400 +0 0.0558 +0 0.0908 +0 0.1244 +0 0.0737 +0 0.0745 +0 0.0533 +0 0.0614 +0 0.0733 +1 0.7557 +0 0.0984 +0 0.0961 +0 0.0441 +0 0.1134 +0 0.0959 +0 0.1167 +0 0.3248 +0 0.0780 +0 0.3001 +0 0.0838 +0 0.3610 +0 0.0652 +0 0.1734 +0 0.0746 +0 0.1500 +0 0.1052 +0 0.1144 +0 0.2174 +0 0.0863 +0 0.0646 +0 0.0376 +0 0.0351 +0 0.1585 +0 0.1302 +0 0.1558 +0 0.0592 +0 0.0812 +0 0.0528 +0 0.1325 +0 0.0726 +0 0.0653 +0 0.0574 +0 0.1791 +0 0.0773 +0 0.0494 +0 0.2366 +0 0.1344 +0 0.0966 +0 0.1532 +0 0.0906 +0 0.2078 +0 0.1034 +0 0.1654 +0 0.1870 +0 0.0674 +0 0.0935 +0 0.0793 +0 0.0768 +0 0.1243 +0 0.0841 +0 0.1181 +0 0.1270 +0 0.1080 +0 0.1551 +0 0.0415 +0 0.0607 +0 0.0978 +0 0.0870 +0 0.0609 +0 0.0835 +0 0.0396 +0 0.5390 +0 0.0725 +0 0.2502 +0 0.0999 +0 0.1044 +0 0.0680 +0 0.4514 +0 0.1654 +0 0.1983 +0 0.7370 +0 0.5385 +1 0.8283 +0 0.0824 +0 0.0613 +0 0.0693 +0 0.0497 +0 0.0473 +0 0.1281 +0 0.1026 +0 0.0949 +0 0.1288 +0 0.0694 +1 0.7813 +0 0.0608 +0 0.5678 +0 0.1026 +0 0.1570 +0 0.2134 +0 0.0720 +0 0.4428 +0 0.0802 +0 0.0443 +0 0.1400 +0 0.0542 +0 0.1849 +0 0.0465 +0 0.0972 +0 0.1574 +0 0.1185 +0 0.1182 +0 0.1748 +0 0.0886 +0 0.0707 +0 0.4833 +0 0.1274 +0 0.1587 +0 0.1369 +0 0.7382 +0 0.3121 +0 0.0715 +0 0.0438 +0 0.3080 +1 0.8268 +0 0.0998 +0 0.0821 +0 0.0932 +0 0.0733 +0 0.7462 +0 0.1169 +0 0.0729 +0 0.0820 +0 0.4273 +0 0.1380 +0 0.3390 +0 0.0960 +0 0.0728 +0 0.0687 +0 0.1123 +0 0.0717 +1 0.7784 +0 0.0966 +0 0.1124 +0 0.0592 +0 0.0697 +0 0.0916 +0 0.0541 +0 0.1702 +0 0.0647 +0 0.0931 +0 0.1432 +0 0.0487 +0 0.1431 +0 0.0520 +0 0.2828 +0 0.0766 +0 0.1015 +0 0.1351 +0 0.2211 +0 0.0502 +0 0.1248 +0 0.0718 +0 0.1228 +0 0.0781 +0 0.0335 +0 0.1341 +0 0.0640 +0 0.2907 +0 0.0592 +0 0.0855 +0 0.1092 +0 0.1216 +0 0.1250 +0 0.0961 +0 0.2187 +0 0.0876 +0 0.1383 +0 0.1077 +0 0.1169 +0 0.1128 +0 0.0322 +0 0.3016 +0 0.1383 +0 0.1145 +0 0.0634 +0 0.0393 +0 0.0921 +0 0.0869 +0 0.0960 +0 0.0717 +0 0.0851 +0 0.1670 +0 0.6317 +0 0.0841 +0 0.0656 +0 0.0539 +0 0.2537 +0 0.0588 +0 0.0835 +0 0.0756 +0 0.1652 +0 0.1003 +0 0.0985 +0 0.0938 +0 0.2048 +0 0.1376 +0 0.0591 +0 0.0686 +1 0.7949 +0 0.2611 +0 0.0938 +0 0.0976 +0 0.0624 +0 0.2402 +1 0.7735 +0 0.0812 +0 0.0726 +0 0.5866 +0 0.0653 +0 0.1999 +0 0.1003 +0 0.7471 +0 0.2676 +0 0.2380 +0 0.0984 +0 0.1188 +0 0.1367 +0 0.0369 +0 0.2038 +0 0.0583 +0 0.1669 +0 0.0520 +0 0.0851 +0 0.7292 +0 0.0706 +0 0.0518 +0 0.1384 +0 0.0452 +0 0.6472 +0 0.0586 +0 0.0493 +0 0.2083 +0 0.0920 +0 0.0984 +0 0.0688 +0 0.0609 +0 0.1127 +0 0.0728 +0 0.1277 +0 0.2092 +0 0.2313 +0 0.1104 +0 0.0505 +0 0.0895 +0 0.0353 +0 0.0786 +0 0.0917 +0 0.1482 +0 0.1000 +0 0.1491 +0 0.1319 +0 0.0658 +0 0.1634 +0 0.0876 +0 0.0409 +0 0.1324 +0 0.0454 +0 0.0948 +0 0.1595 +0 0.0982 +0 0.1732 +0 0.0804 +0 0.0522 +0 0.0681 +0 0.0582 +0 0.1328 +0 0.3748 +0 0.1450 +0 0.1025 +1 0.8131 +0 0.1937 +0 0.0863 +0 0.2004 +0 0.0864 +0 0.1087 +0 0.3844 +0 0.0368 +0 0.0494 +0 0.1273 +0 0.0891 +0 0.1016 +0 0.5775 +0 0.0390 +0 0.0485 +0 0.1483 +0 0.0793 +0 0.1029 +0 0.3657 +0 0.0791 +0 0.0877 +0 0.0929 +0 0.1180 +0 0.0595 +0 0.1780 +0 0.2763 +0 0.1193 +0 0.0937 +0 0.3855 +0 0.2688 +0 0.0472 +0 0.0862 +0 0.2202 +0 0.1704 +0 0.2218 +0 0.1394 +0 0.1206 +0 0.0659 +0 0.1031 +0 0.0457 +0 0.0723 +0 0.3060 +0 0.2665 +0 0.1811 +0 0.5347 +0 0.1511 +0 0.0737 +0 0.6890 +0 0.1801 +0 0.0484 +0 0.1281 +0 0.1540 +0 0.1678 +0 0.0556 +0 0.2403 +0 0.7436 +0 0.1059 +0 0.0517 +0 0.1655 +0 0.1474 +0 0.3627 +0 0.0620 +0 0.0622 +0 0.1115 +0 0.0622 +0 0.0938 +0 0.2031 +0 0.2737 +0 0.3631 +0 0.7023 +0 0.0870 +0 0.1081 +0 0.1016 +0 0.1172 +0 0.1304 +0 0.0527 +0 0.1310 +0 0.1390 +0 0.0375 +0 0.1118 +0 0.1832 +0 0.1415 +0 0.2955 +0 0.1216 +0 0.2054 +0 0.0853 +0 0.4969 +0 0.1264 +0 0.0588 +0 0.0685 +0 0.1645 +0 0.1334 +0 0.0638 +0 0.0422 +0 0.0620 +0 0.1620 +0 0.1069 +0 0.1059 +0 0.0793 +0 0.1015 +0 0.1023 +0 0.1897 +0 0.0563 +0 0.1474 +0 0.1348 +0 0.1807 +0 0.7087 +0 0.0594 +0 0.0871 +0 0.0773 +0 0.0885 +0 0.1176 +0 0.7025 +0 0.0840 +0 0.4205 +0 0.1249 +0 0.1630 +0 0.2688 +0 0.0956 +0 0.0952 +0 0.4917 +0 0.0697 +0 0.0602 +0 0.0806 +0 0.1135 +0 0.1157 +0 0.4432 +0 0.0592 +0 0.0620 +0 0.1517 +0 0.3612 +0 0.0622 +0 0.3441 +0 0.0438 +0 0.0606 +0 0.1231 +0 0.1473 +0 0.0949 +0 0.1099 +0 0.1398 +0 0.0802 +0 0.1154 +0 0.0989 +0 0.1078 +0 0.0972 +0 0.1241 +0 0.1010 +0 0.0593 +0 0.3337 +0 0.1714 +0 0.0417 +0 0.1234 +0 0.0735 +0 0.0883 +0 0.0750 +0 0.0834 +0 0.0446 +0 0.0467 +0 0.2818 +0 0.1167 +0 0.4462 +0 0.0835 +0 0.0856 +0 0.0459 +0 0.3653 +0 0.1199 +1 0.8427 +0 0.0669 +0 0.1464 +0 0.0599 +0 0.1233 +0 0.0925 +0 0.1643 +0 0.1404 +0 0.0937 +0 0.1684 +0 0.1409 +0 0.0777 +0 0.0742 +0 0.0630 +0 0.1541 +0 0.0738 +0 0.3094 +0 0.0596 +0 0.0861 +0 0.1108 +0 0.0921 +0 0.0886 +0 0.1514 +0 0.3239 +0 0.2903 +0 0.2554 +0 0.1393 +0 0.0465 +0 0.0821 +0 0.0880 +0 0.1006 +0 0.0580 +0 0.1636 +0 0.1155 +0 0.1016 +0 0.1413 +0 0.1898 +0 0.1623 +0 0.1553 +0 0.3147 +0 0.1062 +0 0.0757 +0 0.1305 +0 0.1518 +0 0.1511 +0 0.1218 +0 0.7003 +0 0.0687 +0 0.0655 +0 0.0987 +0 0.1099 +0 0.0660 +0 0.1060 +0 0.1828 +0 0.1852 +0 0.1146 +0 0.1149 +0 0.3521 +0 0.1494 +0 0.0781 +0 0.0960 +0 0.0478 +0 0.0492 +0 0.1392 +0 0.0410 +0 0.0515 +0 0.0988 +0 0.0958 +0 0.1001 +0 0.1932 +0 0.1520 +1 0.7792 +0 0.0817 +0 0.0643 +0 0.0392 +0 0.2274 +0 0.0544 +0 0.5143 +0 0.0706 +0 0.0543 +0 0.0932 +0 0.1229 +0 0.5898 +0 0.0582 +0 0.0451 +0 0.0515 +0 0.2412 +0 0.1565 +0 0.0962 +0 0.0402 +0 0.0888 +0 0.1015 +0 0.1011 +0 0.0753 +0 0.0736 +0 0.6701 +0 0.0569 +0 0.1053 +0 0.1169 +0 0.0960 +0 0.0912 +0 0.0984 +0 0.1159 +0 0.1493 +0 0.0763 +0 0.0687 +0 0.1401 +0 0.0527 +0 0.2452 +0 0.0490 +0 0.1766 +0 0.3085 +0 0.1921 +0 0.0392 +0 0.1704 +0 0.0585 +0 0.0477 +1 0.8453 +0 0.1170 +0 0.2448 +0 0.1716 +0 0.3864 +0 0.1649 +0 0.5195 +0 0.0621 +0 0.0684 +0 0.0673 +0 0.0976 +0 0.0593 +0 0.3727 +0 0.1058 +0 0.0473 +0 0.0484 +0 0.2866 +0 0.0844 +0 0.0845 +0 0.1157 +0 0.0573 +0 0.2117 +0 0.0784 +0 0.1466 +0 0.0727 +0 0.2655 +0 0.0629 +0 0.1250 +0 0.1148 +0 0.2276 +0 0.2455 +0 0.0903 +0 0.1253 +0 0.1374 +0 0.1293 +0 0.0777 +0 0.1371 +0 0.1898 +0 0.1076 +0 0.0809 +0 0.2121 +0 0.1862 +0 0.1331 +0 0.2939 +0 0.0775 +0 0.1071 +0 0.0764 +0 0.0583 +0 0.1870 +0 0.3026 +0 0.0460 +0 0.0962 +0 0.0410 +0 0.0834 +0 0.0787 +0 0.1555 +0 0.0916 +0 0.2258 +0 0.1657 +0 0.0897 +0 0.1161 +0 0.1288 +0 0.2410 +0 0.0500 +0 0.0586 +0 0.0496 +0 0.0803 +0 0.1093 +0 0.0551 +0 0.1985 +0 0.0386 +0 0.0585 +0 0.0578 +0 0.0752 +0 0.3795 +0 0.1670 +0 0.0754 +0 0.2291 +0 0.2626 +0 0.1701 +0 0.0543 +0 0.0657 +0 0.2076 +0 0.1390 +0 0.2651 +0 0.0905 +0 0.0762 +0 0.0532 +1 0.7669 +0 0.0613 +0 0.0770 +0 0.3196 +0 0.1544 +0 0.0606 +0 0.0992 +0 0.0462 +0 0.0681 +0 0.0753 +0 0.0766 +0 0.1227 +0 0.1812 +0 0.0844 +0 0.0696 +0 0.0838 +0 0.1434 +0 0.2056 +0 0.0584 +0 0.1835 +0 0.0700 +0 0.1786 +0 0.2821 +0 0.1818 +0 0.0549 +0 0.1665 +0 0.1336 +0 0.2890 +0 0.0626 +0 0.0772 +0 0.0798 +0 0.0539 +0 0.0537 +0 0.1838 +0 0.1061 +0 0.0715 +0 0.0908 +0 0.1331 +0 0.1374 +0 0.1030 +0 0.0394 +0 0.0424 +0 0.1118 +0 0.0882 +0 0.7416 +0 0.0710 +0 0.1224 +0 0.0885 +0 0.0846 +0 0.1038 +0 0.0625 +0 0.0502 +0 0.0658 +0 0.3552 +0 0.1136 +0 0.4787 +0 0.0727 +0 0.1078 +0 0.1742 +0 0.2659 +0 0.3498 +0 0.4462 +0 0.0869 +0 0.6906 +0 0.0391 +0 0.0781 +0 0.0433 +0 0.0474 +0 0.1145 +0 0.0836 +0 0.0692 +0 0.2328 +0 0.5233 +0 0.0768 +0 0.0891 +0 0.0358 +0 0.0787 +0 0.1725 +0 0.0492 +0 0.0729 +0 0.1090 +0 0.7386 +0 0.0620 +0 0.0820 +0 0.1248 +0 0.1916 +0 0.3227 +0 0.1413 +0 0.0353 +0 0.1007 +0 0.1057 +0 0.3053 +0 0.0928 +0 0.1020 +0 0.0823 +0 0.0679 +0 0.2282 +0 0.0480 +0 0.0902 +0 0.0868 +0 0.1259 +0 0.1936 +0 0.0700 +0 0.1830 +0 0.0748 +0 0.0432 +0 0.1289 +0 0.1058 +0 0.0547 +0 0.0977 +0 0.0660 +0 0.0550 +0 0.0566 +0 0.1157 +0 0.7258 +0 0.0519 +0 0.0640 +0 0.1565 +0 0.1320 +0 0.1899 +0 0.1223 +0 0.1767 +0 0.1218 +0 0.0757 +0 0.1188 +0 0.1832 +0 0.1757 +0 0.4495 +0 0.1708 +0 0.2756 +0 0.0705 +0 0.1354 +0 0.0632 +0 0.1314 +0 0.0334 +0 0.4195 +0 0.1062 +0 0.0641 +0 0.1287 +0 0.1155 +0 0.0593 +0 0.0665 +0 0.0617 +1 0.8138 +0 0.1441 +0 0.0770 +0 0.0975 +0 0.1282 +0 0.2652 +0 0.0415 +0 0.0586 +0 0.0608 +0 0.3310 +0 0.0816 +0 0.1920 +0 0.1070 +0 0.0410 +0 0.1302 +0 0.1250 +0 0.1039 +0 0.0957 +0 0.0745 +0 0.0768 +0 0.1260 +1 0.7830 +0 0.0894 +0 0.0940 +0 0.1336 +0 0.1887 +0 0.1545 +0 0.2315 +0 0.0725 +0 0.0554 +0 0.1811 +0 0.1500 +0 0.0659 +0 0.0726 +0 0.1714 +0 0.1397 +0 0.0840 +0 0.0672 +0 0.1360 +0 0.1320 +0 0.1360 +0 0.0776 +0 0.6242 +0 0.3677 +0 0.1725 +0 0.2631 +0 0.6701 +1 0.8641 +0 0.3075 +0 0.0957 +0 0.1116 +0 0.1344 +0 0.7056 +0 0.6201 +0 0.0795 +0 0.1419 +0 0.1478 +0 0.2676 +0 0.0943 +0 0.2791 +0 0.1072 +0 0.2824 +0 0.1481 +0 0.3741 +0 0.1134 +0 0.0872 +0 0.2074 +0 0.0360 +0 0.1363 +0 0.0813 +0 0.1674 +0 0.1777 +0 0.1430 +0 0.0982 +0 0.0846 +0 0.0626 +0 0.1510 +0 0.1774 +0 0.0352 +0 0.1181 +0 0.0772 +0 0.0718 +0 0.1057 +0 0.0949 +0 0.0829 +0 0.2363 +0 0.1019 +0 0.1465 +0 0.0819 +0 0.1517 +0 0.1892 +0 0.1361 +1 0.7717 +0 0.2506 +0 0.1033 +0 0.0893 +0 0.2101 +0 0.1272 +0 0.1575 +0 0.1081 +0 0.1411 +0 0.1447 +0 0.0740 +0 0.0747 +0 0.0997 +0 0.1222 +0 0.0929 +0 0.1979 +0 0.3251 +0 0.2029 +1 0.8344 +0 0.0520 +0 0.1443 +0 0.0824 +0 0.0404 +0 0.1183 +0 0.0721 +0 0.0847 +0 0.1841 +0 0.0548 +0 0.0913 +1 0.8276 +0 0.0811 +0 0.1077 +0 0.0964 +0 0.1357 +0 0.0668 +0 0.0551 +0 0.1581 +0 0.5138 +0 0.0824 +0 0.2036 +0 0.1240 +0 0.0849 +0 0.0986 +0 0.1302 +0 0.0721 +0 0.0728 +0 0.0609 +0 0.0873 +0 0.1267 +0 0.0694 +0 0.0862 +0 0.1312 +0 0.0758 +0 0.1879 +0 0.0573 +0 0.1964 +0 0.3497 +0 0.0943 +0 0.0997 +0 0.1097 +0 0.1871 +0 0.0651 +0 0.0688 +0 0.0735 +0 0.1783 +0 0.1235 +0 0.0699 +0 0.2238 +0 0.1215 +0 0.0718 +0 0.1830 +0 0.4702 +0 0.0766 +0 0.1110 +0 0.0458 +0 0.1767 +0 0.0895 +1 0.7952 +0 0.2747 +0 0.1155 +0 0.1007 +0 0.2480 +0 0.1396 +0 0.0511 +0 0.1082 +0 0.3370 +0 0.1474 +0 0.1210 +0 0.0593 +0 0.1119 +0 0.0413 +0 0.0716 +0 0.2139 +0 0.0638 +0 0.3841 +0 0.0599 +0 0.1029 +0 0.1857 +0 0.4106 +0 0.0988 +0 0.0405 +0 0.0914 +0 0.1417 +0 0.6069 +0 0.1133 +0 0.1583 +0 0.1595 +0 0.1402 +0 0.0964 +0 0.1741 +0 0.3973 +0 0.1172 +0 0.0886 +0 0.2367 +0 0.1131 +0 0.1817 +0 0.0971 +0 0.0595 +0 0.1172 +0 0.0805 +0 0.1798 +0 0.1890 +0 0.1452 +0 0.1050 +0 0.1299 +0 0.0595 +0 0.0804 +0 0.6848 +0 0.0707 +0 0.2088 +0 0.0535 +0 0.1275 +0 0.1378 +0 0.0973 +0 0.0612 +0 0.2244 +0 0.2470 +0 0.0698 +0 0.3049 +0 0.1268 +0 0.1687 +0 0.0781 +0 0.2297 +0 0.0542 +0 0.1979 +0 0.3812 +0 0.0972 +0 0.0355 +0 0.1328 +0 0.1623 +0 0.2237 +0 0.0713 +0 0.0531 +0 0.2017 +0 0.2159 +0 0.1003 +0 0.0384 +0 0.6160 +0 0.5581 +0 0.0586 +0 0.5432 +0 0.1110 +0 0.0388 +0 0.1234 +0 0.2090 +0 0.1014 +0 0.0507 +0 0.0992 +0 0.0751 +0 0.0975 +0 0.2700 +0 0.0841 +0 0.3253 +0 0.3863 +0 0.0811 +0 0.1013 +0 0.1639 +0 0.0500 +0 0.0409 +0 0.0306 +0 0.1894 +0 0.1201 +0 0.3567 +0 0.1280 +0 0.0811 +0 0.0546 +0 0.0398 +0 0.0866 +0 0.0664 +0 0.1019 +1 0.8187 +0 0.0601 +0 0.1853 +0 0.6518 +0 0.0483 +0 0.0508 +0 0.1071 +0 0.0931 +0 0.4398 +1 0.8827 +0 0.4031 +0 0.0800 +0 0.1035 +0 0.2198 +0 0.6660 +0 0.0614 +0 0.0924 +0 0.1330 +0 0.0776 +0 0.0892 +0 0.0904 +0 0.0781 +0 0.1442 +0 0.1309 +0 0.0909 +0 0.1490 +0 0.0784 +0 0.2011 +0 0.2062 +0 0.0970 +0 0.1224 +0 0.1113 +0 0.1207 +0 0.0819 +0 0.0441 +0 0.1036 +0 0.7111 +0 0.0734 +0 0.0708 +0 0.0686 +0 0.0758 +0 0.4188 +0 0.1415 +0 0.0779 +0 0.1209 +0 0.0492 +0 0.1164 +0 0.0959 +0 0.4078 +0 0.0468 +0 0.0525 +0 0.0898 +0 0.1207 +0 0.4018 +0 0.0882 +0 0.1471 +0 0.0576 +0 0.0632 +0 0.1389 +0 0.0806 +0 0.1206 +0 0.1633 +0 0.1619 +0 0.2204 +0 0.1047 +0 0.0334 +0 0.1000 +0 0.2279 +0 0.0559 +0 0.0408 +0 0.2723 +0 0.1827 +0 0.1611 +0 0.0765 +0 0.1487 +0 0.2359 +0 0.1887 +0 0.2011 +0 0.1798 +0 0.0823 +0 0.0631 +0 0.0411 +0 0.0878 +0 0.1583 +0 0.1013 +0 0.1904 +0 0.0941 +0 0.2535 +0 0.0968 +0 0.0874 +0 0.1028 +0 0.1605 +0 0.0776 +0 0.0939 +0 0.1038 +0 0.1248 +0 0.2016 +0 0.1075 +0 0.3122 +0 0.0492 +0 0.0696 +0 0.0694 +0 0.0988 +0 0.0773 +0 0.1188 +0 0.2221 +0 0.2146 +0 0.0694 +0 0.0925 +0 0.2469 +0 0.0555 +0 0.1141 +0 0.1233 +0 0.1039 +0 0.1257 +0 0.1341 +0 0.1227 +0 0.0521 +0 0.0769 +0 0.1722 +0 0.0687 +0 0.1521 +0 0.0652 +0 0.0799 +0 0.0521 +0 0.1014 +0 0.1745 +0 0.1647 +0 0.0981 +0 0.1712 +0 0.1329 +0 0.1462 +0 0.0513 +0 0.1278 +0 0.1849 +0 0.0380 +0 0.0729 +0 0.1399 +0 0.1185 +0 0.0883 +0 0.0380 +0 0.0827 +0 0.3687 +0 0.3650 +0 0.1004 +0 0.1696 +0 0.5124 +0 0.6703 +0 0.5253 +0 0.0842 +0 0.0959 +0 0.0775 +0 0.1025 +0 0.1082 +0 0.5903 +0 0.0487 +0 0.1094 +0 0.0679 +0 0.0373 +0 0.0921 +0 0.1010 +0 0.1033 +0 0.6396 +0 0.1668 +0 0.2111 +0 0.0530 +0 0.4791 +0 0.0992 +0 0.0621 +0 0.0923 +0 0.0657 +0 0.0382 +0 0.1574 +0 0.0572 +0 0.0817 +0 0.1533 +0 0.1442 +0 0.0983 +0 0.1955 +0 0.1299 +0 0.1480 +0 0.1285 +0 0.0980 +0 0.0535 +0 0.1799 +0 0.1637 +0 0.0661 +0 0.1813 +0 0.0800 +0 0.4806 +0 0.1646 +0 0.0466 +0 0.0806 +0 0.1528 +0 0.0433 +0 0.0776 +0 0.0998 +0 0.0627 +0 0.1346 +0 0.0858 +0 0.0367 +0 0.1301 +0 0.0799 +0 0.1849 +0 0.1904 +0 0.0451 +0 0.0851 +0 0.0838 +0 0.0692 +0 0.1139 +0 0.0859 +0 0.1678 +0 0.0951 +0 0.3034 +0 0.1566 +0 0.0952 +0 0.0864 +0 0.0931 +0 0.0787 +0 0.1134 +0 0.2191 +0 0.0655 +0 0.2417 +0 0.0706 +0 0.1439 +0 0.3243 +0 0.1837 +0 0.3547 +0 0.1520 +0 0.2538 +0 0.1321 +0 0.1961 +0 0.2174 +0 0.1259 +0 0.2149 +0 0.2234 +0 0.0366 +0 0.1968 +0 0.4028 +0 0.1663 +0 0.0912 +0 0.0839 +0 0.5826 +0 0.0595 +0 0.1683 +0 0.0390 +0 0.2607 +0 0.1551 +0 0.1114 +0 0.0609 +0 0.0806 +0 0.1478 +0 0.0607 +0 0.1248 +0 0.3853 +0 0.1384 +0 0.1246 +0 0.1289 +0 0.0738 +0 0.0528 +0 0.2090 +0 0.1222 +0 0.2975 +0 0.2257 +0 0.0523 +0 0.2703 +0 0.1012 +0 0.0880 +0 0.0853 +0 0.1603 +0 0.1084 +0 0.1814 +0 0.1431 +0 0.2071 +0 0.1925 +0 0.2508 +0 0.1401 +0 0.1303 +0 0.0572 +1 0.8510 +0 0.0907 +0 0.1036 +0 0.0821 +0 0.0999 +0 0.1292 +0 0.0665 +0 0.0579 +0 0.1070 +0 0.0461 +0 0.1165 +0 0.1194 +0 0.1352 +0 0.0583 +0 0.3240 +0 0.0716 +0 0.0505 +0 0.0896 +0 0.6268 +0 0.0523 +0 0.0663 +0 0.5895 +0 0.0689 +0 0.0421 +0 0.2215 +0 0.0889 +0 0.0927 +0 0.1440 +0 0.1663 +0 0.0588 +0 0.2638 +0 0.1263 +0 0.0472 +0 0.1565 +0 0.0769 +0 0.0765 +0 0.0610 +0 0.0579 +1 0.8171 +0 0.2892 +0 0.2457 +0 0.0822 +0 0.0391 +0 0.0942 +0 0.1799 +0 0.1150 +0 0.2418 +0 0.2163 +0 0.1277 +0 0.0592 +0 0.1401 +0 0.1607 +0 0.0733 +0 0.3809 +0 0.0863 +0 0.1025 +0 0.0643 +0 0.1111 +0 0.5521 +0 0.1139 +0 0.1315 +0 0.1480 +0 0.0715 +0 0.1997 +0 0.0707 +0 0.2869 +0 0.2690 +0 0.1132 +1 0.8597 +0 0.0539 +0 0.1043 +0 0.1279 +0 0.0924 +0 0.1067 +0 0.1614 +0 0.1296 +0 0.2050 +0 0.0978 +0 0.0691 +0 0.3636 +0 0.0601 +0 0.0566 +0 0.0448 +0 0.0745 +0 0.1092 +0 0.0572 +0 0.0791 +0 0.0754 +0 0.2004 +0 0.1050 +0 0.1976 +0 0.2734 +0 0.2836 +0 0.3938 +0 0.3575 +0 0.0825 +0 0.2914 +0 0.0981 +0 0.0453 +0 0.1128 +0 0.1393 +0 0.0904 +0 0.0930 +0 0.0821 +0 0.0758 +0 0.0500 +0 0.0647 +1 0.8131 +0 0.1092 +0 0.1312 +0 0.0938 +0 0.6964 +0 0.1990 +0 0.0740 +0 0.1104 +0 0.0698 +0 0.0368 +0 0.1076 +0 0.1823 +0 0.5313 +0 0.1578 +0 0.0785 +0 0.1108 +0 0.1934 +0 0.0910 +0 0.1094 +0 0.1029 +0 0.0336 +0 0.2037 +0 0.6157 +0 0.0557 +0 0.1063 +0 0.0681 +0 0.0747 +0 0.2034 +0 0.0470 +0 0.1891 +0 0.0826 +0 0.0993 +0 0.1232 +0 0.2224 +0 0.2770 +0 0.1169 +0 0.0776 +0 0.1238 +0 0.0436 +0 0.3797 +0 0.0491 +0 0.0709 +0 0.1206 +0 0.0356 +0 0.0615 +0 0.1227 +0 0.0991 +0 0.1165 +0 0.1094 +0 0.0638 +1 0.8506 +0 0.2825 +0 0.2735 +0 0.0427 +0 0.0622 +0 0.1510 +0 0.0761 +0 0.6042 +0 0.0752 +0 0.2615 +0 0.1155 +0 0.1592 +0 0.0688 +0 0.2621 +0 0.2200 +0 0.0495 +0 0.1408 +0 0.0701 +0 0.0953 +0 0.0688 +0 0.0917 +0 0.1579 +0 0.0893 +0 0.2788 +0 0.0538 +0 0.1770 +0 0.0937 +0 0.0602 +0 0.1032 +0 0.0538 +0 0.0946 +0 0.1586 +0 0.6335 +0 0.0345 +0 0.0598 +0 0.0961 +0 0.1595 +0 0.0928 +0 0.0508 +0 0.3141 +0 0.0708 +0 0.1016 +0 0.0759 +0 0.0520 +0 0.7328 +0 0.0475 +0 0.1001 +0 0.2074 +0 0.0520 +0 0.2238 +0 0.0426 +0 0.0372 +0 0.0427 +0 0.0852 +0 0.0694 +0 0.1157 +0 0.0531 +0 0.0672 +0 0.1467 +0 0.1961 +0 0.0636 +0 0.1675 +0 0.1119 +0 0.1066 +0 0.0684 +0 0.4693 +0 0.1061 +0 0.2362 +0 0.1067 +0 0.4694 +0 0.0387 +0 0.0394 +0 0.0428 +0 0.1284 +0 0.1125 +0 0.1048 +0 0.2782 +0 0.1073 +0 0.4047 +0 0.2948 +0 0.6495 +0 0.0642 +1 0.8404 +0 0.0892 +0 0.0928 +0 0.0729 +0 0.3084 +0 0.0642 +0 0.6076 +0 0.0396 +0 0.3435 +0 0.1752 +0 0.0325 +0 0.1185 +0 0.1790 +0 0.1232 +0 0.0494 +0 0.3413 +0 0.3157 +0 0.0447 +0 0.1367 +0 0.2119 +0 0.1263 +0 0.5340 +0 0.1146 +0 0.0681 +0 0.0355 +0 0.1383 +0 0.0929 +0 0.1557 +0 0.2240 +1 0.7947 +0 0.2490 +0 0.1823 +0 0.0906 +0 0.0569 +0 0.0438 +0 0.0815 +0 0.0468 +0 0.2345 +0 0.0543 +0 0.0789 +0 0.0783 +0 0.0507 +0 0.0541 +0 0.2288 +0 0.4521 +0 0.1068 +0 0.1264 +0 0.1334 +0 0.0371 +0 0.1191 +0 0.1529 +0 0.1364 +0 0.0934 +0 0.1692 +0 0.0650 +0 0.1744 +0 0.2116 +0 0.0531 +0 0.0856 +0 0.0682 +0 0.1370 +0 0.0302 +0 0.0977 +0 0.0777 +0 0.0533 +0 0.1027 +0 0.0377 +0 0.1287 +0 0.1290 +0 0.3026 +0 0.0545 +0 0.0925 +0 0.2623 +0 0.1252 +0 0.0866 +0 0.0535 +0 0.0927 +0 0.1273 +0 0.0994 +0 0.0774 +0 0.3482 +0 0.1658 +0 0.2735 +0 0.0504 +0 0.0419 +0 0.2595 +0 0.0931 +0 0.1918 +0 0.2004 +0 0.1100 +0 0.0901 +0 0.2038 +0 0.0842 +0 0.0520 +0 0.0553 +0 0.0472 +0 0.2030 +0 0.0748 +0 0.0722 +0 0.1428 +0 0.1927 +0 0.7199 +0 0.0770 +0 0.0561 +0 0.0411 +0 0.2061 +0 0.4792 +0 0.0810 +0 0.1049 +0 0.1517 +0 0.7031 +0 0.0753 +0 0.1557 +0 0.0965 +0 0.1276 +0 0.0414 +0 0.1167 +0 0.0813 +0 0.0482 +0 0.1560 +0 0.0746 +0 0.1427 +0 0.1001 +0 0.1613 +0 0.1168 +0 0.1038 +0 0.0911 +0 0.1385 +0 0.6129 +0 0.0910 +0 0.0916 +1 0.7604 +0 0.2358 +0 0.2303 +0 0.1079 +0 0.3527 +0 0.2969 +0 0.3707 +0 0.0614 +0 0.1488 +0 0.1572 +0 0.2258 +0 0.0762 +0 0.0465 +0 0.1182 +0 0.0622 +0 0.1353 +0 0.1035 +0 0.2016 +0 0.2393 +0 0.1703 +0 0.2413 +0 0.1277 +0 0.3009 +0 0.0302 +0 0.0450 +0 0.0841 +0 0.0660 +0 0.0688 +0 0.2147 +0 0.2065 +0 0.0568 +0 0.1225 +0 0.0638 +0 0.1317 +0 0.1278 +0 0.2258 +0 0.3309 +0 0.1810 +0 0.2517 +0 0.0670 +0 0.1852 +0 0.0835 +0 0.1189 +0 0.0600 +0 0.3780 +0 0.0519 +0 0.2024 +0 0.0999 +0 0.0656 +0 0.1360 +0 0.1241 +0 0.0991 +0 0.3254 +0 0.1088 +0 0.0344 +0 0.1886 +0 0.1898 +0 0.1300 +0 0.1656 +0 0.1161 +0 0.0932 +0 0.0915 +0 0.0766 +0 0.0774 +0 0.0726 +0 0.1086 +0 0.1103 +0 0.2897 +0 0.0951 +0 0.0812 +0 0.1630 +0 0.0453 +0 0.1067 +0 0.1582 +0 0.0455 +0 0.0745 +0 0.1659 +0 0.1017 +0 0.0854 +0 0.0683 +0 0.2553 +0 0.3756 +0 0.1084 +0 0.0775 +0 0.2821 +0 0.1131 +0 0.0382 +0 0.1811 +0 0.0565 +0 0.0917 +0 0.0739 +0 0.0477 +0 0.0690 +0 0.1127 +0 0.0685 +0 0.0775 +0 0.0438 +0 0.0679 +0 0.1113 +0 0.1222 +0 0.1133 +0 0.1473 +0 0.2443 +0 0.1221 +0 0.1065 +0 0.0630 +0 0.2461 +0 0.0638 +0 0.0830 +0 0.1427 +0 0.1007 +0 0.1130 +0 0.1010 +0 0.0866 +0 0.1786 +0 0.3232 +0 0.0703 +0 0.2345 +0 0.1300 +0 0.1745 +0 0.1941 +0 0.0721 +0 0.3889 +0 0.3033 +0 0.0407 +0 0.1301 +0 0.1836 +0 0.1886 +0 0.0540 +0 0.0668 +0 0.0824 +0 0.1836 +0 0.0969 +0 0.1743 +0 0.0676 +0 0.0429 +0 0.1711 +0 0.0468 +0 0.1807 +0 0.1355 +0 0.0622 +0 0.1016 +0 0.0639 +0 0.3606 +0 0.1027 +0 0.1033 +0 0.3038 +0 0.3391 +0 0.2709 +0 0.1270 +0 0.6131 +0 0.0968 +0 0.0940 +0 0.0641 +0 0.2351 +0 0.5681 +0 0.5471 +0 0.5238 +0 0.0423 +0 0.3119 +0 0.0762 +0 0.0577 +0 0.1054 +0 0.1047 +0 0.0650 +0 0.1017 +0 0.6453 +0 0.0968 +0 0.0610 +0 0.1050 +0 0.1242 +0 0.1674 +0 0.1012 +0 0.0998 +0 0.2020 +0 0.0615 +0 0.0648 +0 0.1053 +0 0.1371 +0 0.1672 +0 0.5638 +0 0.1071 +0 0.0472 +0 0.1316 +0 0.1586 +0 0.0882 +0 0.4633 +0 0.0921 +0 0.2905 +0 0.0529 +0 0.0492 +0 0.1613 +0 0.0499 +0 0.0572 +0 0.2628 +0 0.0366 +0 0.1325 +0 0.0865 +0 0.1736 +0 0.1561 +0 0.1259 +0 0.3397 +0 0.0429 +1 0.7789 +0 0.0707 +0 0.1188 +0 0.1027 +0 0.1148 +0 0.0433 +0 0.0952 +0 0.2156 +0 0.1033 +0 0.0905 +0 0.1408 +0 0.1551 +0 0.2251 +0 0.2025 +0 0.1052 +0 0.0922 +0 0.0854 +0 0.2642 +0 0.0666 +0 0.1013 +0 0.0635 +0 0.0918 +1 0.8377 +0 0.0618 +0 0.0683 +0 0.1764 +0 0.0742 +0 0.1518 +0 0.0846 +0 0.4719 +0 0.0808 +0 0.0510 +0 0.2245 +0 0.0592 +0 0.0708 +0 0.1296 +0 0.1720 +0 0.3772 +0 0.0321 +0 0.1909 +0 0.1697 +0 0.5919 +0 0.1092 +0 0.1077 +0 0.2080 +0 0.0434 +0 0.1362 +0 0.0747 +0 0.1100 +0 0.1182 +0 0.0443 +0 0.2776 +0 0.0576 +0 0.1225 +0 0.0699 +0 0.0777 +0 0.1569 +0 0.0585 +1 0.8197 +0 0.1426 +0 0.1353 +0 0.1033 +1 0.7715 +0 0.0619 +0 0.1277 +0 0.0398 +0 0.0454 +0 0.0755 +1 0.7673 +0 0.1070 +0 0.3692 +0 0.1962 +0 0.1437 +0 0.1212 +0 0.0360 +0 0.1150 +0 0.0509 +0 0.2777 +0 0.0752 +0 0.0867 +0 0.0660 +0 0.0499 +0 0.0861 +0 0.0421 +0 0.6225 +0 0.0981 +0 0.1512 +0 0.2194 +0 0.2446 +0 0.0753 +0 0.0996 +0 0.0552 +0 0.0764 +0 0.0936 +0 0.0823 +0 0.0672 +0 0.0982 +0 0.1288 +0 0.0580 +0 0.0369 +0 0.1093 +0 0.0537 +0 0.2095 +0 0.1079 +0 0.1111 +0 0.1495 +0 0.0449 +0 0.1663 +0 0.0743 +0 0.0503 +0 0.3083 +0 0.0593 +0 0.0649 +0 0.0826 +0 0.1181 +0 0.0470 +0 0.0680 +0 0.0813 +0 0.1491 +0 0.0468 +0 0.0732 +0 0.0832 +0 0.1577 +0 0.1444 +0 0.1303 +0 0.0526 +0 0.4243 +0 0.1034 +0 0.1993 +0 0.4286 +0 0.2253 +0 0.0895 +1 0.8147 +0 0.2016 +0 0.1104 +0 0.2160 +0 0.1284 +0 0.0724 +0 0.0939 +0 0.1776 +0 0.0938 +0 0.1598 +0 0.1519 +0 0.0857 +0 0.0519 +0 0.3446 +0 0.1131 +0 0.0878 +0 0.1130 +0 0.0653 +0 0.3044 +0 0.1179 +0 0.0806 +0 0.0562 +0 0.1224 +0 0.0592 +0 0.0876 +0 0.1078 +1 0.5217 +0 0.1288 +0 0.0737 +0 0.0400 +0 0.0347 +0 0.1302 +0 0.0545 +0 0.2245 +0 0.0776 +0 0.1701 +0 0.0920 +0 0.1566 +0 0.0997 +0 0.1218 +0 0.0500 +0 0.1530 +0 0.0731 +0 0.3415 +0 0.0448 +0 0.1087 +0 0.4802 +0 0.0379 +0 0.1400 +0 0.1624 +0 0.1458 +0 0.1527 +0 0.7231 +0 0.1188 +0 0.1041 +0 0.0783 +0 0.1555 +0 0.1169 +0 0.0454 +0 0.0804 +0 0.0625 +0 0.4057 +0 0.1385 +0 0.2649 +0 0.0386 +0 0.2629 +0 0.0416 +0 0.1262 +0 0.0528 +0 0.0534 +0 0.1675 +0 0.1244 +0 0.1354 +0 0.1190 +0 0.0621 +0 0.0746 +0 0.1788 +0 0.0707 +0 0.1852 +0 0.1143 +0 0.0659 +0 0.2169 +0 0.1066 +0 0.1347 +0 0.0990 +0 0.2069 +0 0.0645 +0 0.1094 +0 0.1815 +0 0.2966 +0 0.0710 +0 0.0781 +0 0.0800 +0 0.3520 +0 0.0522 +0 0.0991 +0 0.1180 +0 0.1420 +0 0.0540 +0 0.0483 +0 0.1138 +0 0.1609 +0 0.0587 +0 0.0909 +0 0.0509 +0 0.0321 +0 0.2939 +0 0.0482 +0 0.0806 +0 0.5539 +0 0.1070 +0 0.0859 +0 0.1141 +0 0.0875 +0 0.0428 +0 0.0602 +0 0.0915 +0 0.0940 +0 0.0529 +0 0.0665 +0 0.2207 +0 0.0410 +0 0.0768 +0 0.1278 +0 0.1163 +0 0.0710 +0 0.1214 +0 0.0960 +1 0.7840 +0 0.1310 +0 0.0414 +0 0.1087 +0 0.0853 +0 0.7013 +0 0.0743 +0 0.4059 +0 0.1038 +0 0.2087 +0 0.1258 +0 0.1849 +0 0.0722 +0 0.1309 +0 0.0911 +0 0.0562 +0 0.7133 +0 0.0691 +0 0.1271 +0 0.0822 +0 0.0860 +0 0.1301 +0 0.6287 +0 0.1052 +0 0.0395 +0 0.1642 +0 0.0387 +0 0.0917 +0 0.0644 +0 0.1695 +0 0.4032 +0 0.1403 +0 0.0848 +0 0.0667 +0 0.1319 +0 0.1154 +0 0.1549 +0 0.1250 +0 0.1463 +0 0.6266 +0 0.0994 +0 0.0833 +0 0.2878 +0 0.1017 +0 0.0861 +0 0.0607 +0 0.3764 +0 0.0745 +0 0.0862 +0 0.1622 +0 0.1018 +0 0.2837 +0 0.0336 +0 0.1131 +0 0.0934 +0 0.2071 +0 0.0479 +0 0.1070 +0 0.1984 +0 0.1715 +0 0.2790 +0 0.0579 +0 0.1039 +0 0.4557 +0 0.1590 +0 0.0414 +0 0.0928 +0 0.1175 +0 0.1258 +0 0.0857 +0 0.2415 +0 0.0898 +0 0.1613 +0 0.2126 +0 0.2037 +0 0.1673 +0 0.0776 +0 0.1092 +0 0.0734 +0 0.1416 +0 0.1693 +0 0.0896 +0 0.1784 +0 0.0469 +0 0.1045 +0 0.0463 +0 0.0637 +0 0.1257 +0 0.0468 +0 0.1994 +0 0.0926 +0 0.4460 +0 0.1553 +0 0.1965 +0 0.1119 +0 0.0671 +0 0.2138 +0 0.0993 +0 0.1052 +0 0.1738 +0 0.0497 +0 0.1749 +0 0.0893 +0 0.0967 +0 0.0540 +0 0.0401 +0 0.0596 +0 0.0938 +0 0.1238 +0 0.1165 +0 0.2006 +0 0.1584 +0 0.0447 +0 0.0681 +0 0.1263 +0 0.0413 +0 0.7048 +0 0.0376 +0 0.1148 +0 0.1325 +0 0.1385 +0 0.1086 +0 0.0518 +0 0.1077 +0 0.1457 +0 0.1039 +0 0.0633 +0 0.0849 +0 0.1387 +0 0.1519 +0 0.2167 +0 0.0515 +0 0.2237 +0 0.1113 +0 0.0632 +0 0.1237 +0 0.4636 +0 0.0665 +0 0.0660 +0 0.1705 +0 0.0734 +0 0.1182 +0 0.0607 +0 0.1198 +0 0.0776 +0 0.0861 +0 0.0855 +0 0.0376 +0 0.2105 +0 0.2243 +0 0.1362 +0 0.0384 +0 0.0770 +0 0.2033 +0 0.0571 +0 0.0795 +0 0.0832 +0 0.2685 +0 0.1410 +0 0.0382 +0 0.2844 +0 0.0769 +0 0.0608 +0 0.1088 +0 0.1421 +0 0.0353 +0 0.1073 +0 0.0492 +0 0.0731 +0 0.3587 +0 0.3296 +0 0.1445 +0 0.2840 +0 0.0665 +0 0.1985 +0 0.1299 +0 0.2472 +0 0.1133 +0 0.1162 +0 0.1435 +0 0.0752 +0 0.1242 +0 0.4408 +0 0.0742 +0 0.0423 +0 0.0838 +0 0.0620 +0 0.1821 +0 0.1599 +0 0.1022 +0 0.0494 +0 0.1330 +0 0.0858 +0 0.1450 +0 0.0770 +0 0.0406 +0 0.0442 +0 0.2215 +0 0.0888 +0 0.1559 +0 0.0961 +0 0.1700 +0 0.0546 +0 0.0346 +0 0.0851 +0 0.1457 +0 0.1191 +0 0.2395 +0 0.1214 +0 0.0355 +0 0.1280 +0 0.1237 +0 0.1055 +0 0.0621 +0 0.1379 +0 0.3255 +0 0.0720 +0 0.0630 +0 0.2556 +0 0.2508 +0 0.1854 +0 0.1310 +0 0.0448 +0 0.0648 +0 0.2193 +0 0.2183 +0 0.0568 +0 0.0535 +0 0.1050 +0 0.1505 +0 0.0716 +0 0.0915 +0 0.1516 +0 0.0790 +0 0.0570 +0 0.0353 +1 0.8370 +0 0.1269 +0 0.1528 +0 0.0706 +0 0.0664 +0 0.0799 +0 0.1356 +0 0.2836 +0 0.0962 +0 0.0747 +0 0.0840 +0 0.1786 +0 0.0571 +0 0.2210 +0 0.1689 +0 0.0579 +0 0.0610 +0 0.0807 +0 0.2847 +0 0.4759 +0 0.1899 +0 0.0933 +0 0.1474 +0 0.0685 +0 0.0804 +0 0.0630 +0 0.1920 +0 0.1183 +0 0.1524 +0 0.0767 +0 0.1393 +0 0.1766 +0 0.1241 +0 0.0449 +0 0.3727 +0 0.1035 +0 0.0528 +0 0.0937 +0 0.0866 +0 0.3540 +0 0.1439 +0 0.0784 +0 0.0820 +0 0.6276 +0 0.1378 +0 0.0897 +0 0.0462 +0 0.1457 +0 0.1388 +0 0.1405 +0 0.0674 +0 0.1077 +0 0.1022 +0 0.0500 +0 0.1240 +0 0.0874 +0 0.0771 +0 0.0379 +0 0.0830 +0 0.2398 +0 0.5150 +0 0.0583 +0 0.1948 +0 0.1007 +0 0.1124 +0 0.1157 +0 0.1473 +0 0.0545 +0 0.0689 +0 0.1112 +0 0.1941 +0 0.1442 +0 0.2098 +0 0.0800 +0 0.2685 +0 0.1316 +0 0.1887 +0 0.3832 +0 0.0982 +0 0.1640 +0 0.2364 +0 0.0466 +0 0.1213 +0 0.0876 +0 0.1172 +0 0.0602 +0 0.1028 +0 0.1515 +0 0.1496 +0 0.1124 +0 0.0857 +0 0.2269 +0 0.2534 +0 0.1230 +0 0.1431 +0 0.1764 +0 0.0710 +0 0.0974 +0 0.1547 +0 0.0341 +0 0.0672 +0 0.1632 +0 0.1170 +0 0.0795 +0 0.1299 +0 0.0833 +0 0.0399 +0 0.0346 +0 0.1450 +0 0.0949 +0 0.3558 +0 0.0655 +0 0.0668 +0 0.0497 +0 0.2239 +0 0.1305 +0 0.0776 +0 0.1797 +0 0.3669 +0 0.0866 +0 0.0683 +0 0.1096 +0 0.1999 +0 0.2300 +0 0.1355 +0 0.0990 +0 0.0524 +0 0.4159 +0 0.1159 +0 0.2841 +0 0.0627 +0 0.1343 +0 0.0901 +0 0.0949 +0 0.1418 +0 0.1711 +0 0.0467 +0 0.0870 +0 0.0482 +0 0.2121 +0 0.1141 +0 0.1434 +0 0.1456 +0 0.2539 +0 0.0748 +0 0.1677 +0 0.0733 +0 0.1006 +0 0.3022 +0 0.1019 +0 0.1751 +0 0.3661 +0 0.1651 +0 0.1237 +0 0.5840 +0 0.0607 +0 0.1542 +0 0.0937 +0 0.0458 +0 0.1184 +0 0.1355 +0 0.0657 +0 0.0704 +0 0.7220 +0 0.3810 +0 0.1594 +0 0.0680 +0 0.0883 +0 0.0713 +0 0.0762 +0 0.0765 +0 0.1189 +0 0.0895 +0 0.3448 +0 0.1379 +0 0.0416 +0 0.1145 +0 0.1963 +0 0.1544 +0 0.0657 +0 0.0850 +0 0.0656 +0 0.1975 +0 0.1449 +0 0.1533 +0 0.3028 +0 0.1037 +0 0.1170 +0 0.0903 +0 0.0645 +0 0.0819 +0 0.4633 +0 0.1773 +0 0.0674 +0 0.6586 +0 0.0663 +0 0.0482 +0 0.1109 +0 0.0626 +0 0.1312 +0 0.1817 +0 0.1563 +0 0.2473 +0 0.2043 +0 0.2045 +0 0.1109 +0 0.1040 +0 0.0887 +0 0.2147 +0 0.0837 +0 0.1196 +0 0.1288 +0 0.1526 +0 0.1137 +0 0.2751 +0 0.2108 +0 0.2047 +0 0.1656 +0 0.0600 +0 0.1292 +0 0.0498 +0 0.0723 +0 0.0675 +0 0.1853 +0 0.0679 +0 0.1511 +0 0.1145 +0 0.1724 +0 0.0608 +0 0.0717 +0 0.0494 +0 0.0960 +0 0.3352 +0 0.0937 +0 0.1734 +0 0.4504 +0 0.0993 +0 0.2507 +0 0.1155 +0 0.0568 +0 0.0476 +0 0.3739 +0 0.1466 +0 0.1086 +0 0.7063 +0 0.2194 +0 0.1190 +0 0.1401 +0 0.0559 +0 0.0609 +1 0.7603 +0 0.1706 +0 0.1762 +0 0.1137 +0 0.0900 +0 0.0583 +0 0.6892 +0 0.1660 +0 0.0847 +0 0.0970 +0 0.0354 +0 0.1205 +0 0.2910 +0 0.0484 +0 0.4715 +0 0.2175 +1 0.7641 +0 0.0511 +0 0.2858 +0 0.0594 +0 0.0749 +0 0.0899 +0 0.1686 +0 0.0574 +0 0.1094 +0 0.1020 +0 0.1065 +0 0.1938 +0 0.0717 +0 0.1268 +0 0.0544 +0 0.1767 +0 0.0525 +0 0.0791 +0 0.0883 +0 0.4701 +0 0.3766 +0 0.1184 +0 0.0885 +0 0.1182 +0 0.0639 +0 0.0656 +0 0.1322 +0 0.5035 +0 0.0715 +0 0.2184 +0 0.1084 +0 0.3263 +0 0.1210 +0 0.1313 +0 0.0936 +0 0.2635 +0 0.0704 +0 0.1045 +0 0.0658 +0 0.1772 +0 0.0542 +0 0.0607 +0 0.3295 +0 0.1812 +1 0.2216 +0 0.0852 +0 0.0737 +0 0.2665 +0 0.1157 +0 0.1724 +0 0.1022 +0 0.1998 +0 0.0654 +0 0.0453 +0 0.5589 +0 0.2680 +0 0.1591 +0 0.1116 +0 0.1107 +0 0.1724 +0 0.0648 +0 0.1326 +0 0.0783 +0 0.1173 +0 0.0995 +0 0.0647 +0 0.0568 +0 0.0670 +0 0.3340 +0 0.0688 +1 0.8122 +0 0.3018 +0 0.1018 +0 0.0773 +0 0.1203 +0 0.1207 +0 0.0621 +0 0.1525 +0 0.1183 +0 0.1341 +0 0.0936 +0 0.2140 +0 0.0640 +0 0.1002 +0 0.1528 +0 0.0714 +0 0.0452 +0 0.0680 +0 0.2891 +0 0.0821 +0 0.0916 +0 0.0843 +0 0.1524 +0 0.2007 +0 0.1388 +0 0.0559 +0 0.2338 +0 0.1208 +0 0.7150 +0 0.0824 +0 0.1188 +0 0.0839 +0 0.1301 +0 0.0760 +0 0.0434 +0 0.3059 +0 0.0517 +0 0.1535 +0 0.1641 +0 0.1377 +0 0.0859 +0 0.0602 +0 0.2654 +0 0.0513 +0 0.1059 +0 0.1573 +0 0.1550 +0 0.0756 +0 0.2097 +0 0.0395 +0 0.0839 +0 0.1535 +0 0.0597 +0 0.2201 +0 0.0603 +0 0.1053 +0 0.7207 +0 0.2153 +0 0.0338 +0 0.1213 +0 0.1705 +0 0.0888 +0 0.0615 +1 0.8350 +0 0.0780 +0 0.0424 +0 0.0932 +0 0.1448 +0 0.1529 +0 0.1960 +0 0.0602 +0 0.4858 +0 0.1148 +0 0.0978 +0 0.0797 +0 0.0661 +0 0.0997 +0 0.4399 +0 0.0656 +0 0.3386 +0 0.1862 +0 0.0712 +0 0.7108 +0 0.2468 +0 0.0912 +0 0.3377 +0 0.0826 +0 0.0680 +0 0.1326 +0 0.1999 +0 0.4218 +0 0.1794 +0 0.1069 +0 0.1336 +0 0.1051 +0 0.1500 +0 0.0566 +0 0.1875 +0 0.0972 +0 0.0996 +0 0.0847 +0 0.0812 +0 0.1177 +0 0.1308 +0 0.1177 +0 0.0509 +0 0.1023 +0 0.3138 +0 0.1920 +0 0.1002 +0 0.4795 +0 0.1132 +0 0.0686 +0 0.3409 +0 0.0618 +0 0.0726 +0 0.1161 +0 0.1153 +0 0.1042 +0 0.1028 +0 0.2464 +0 0.0747 +0 0.2820 +0 0.0289 +0 0.1036 +0 0.0609 +0 0.0761 +0 0.0755 +0 0.0630 +0 0.1097 +0 0.0979 +0 0.0859 +0 0.0561 +0 0.1915 +0 0.0470 +0 0.0994 +0 0.1816 +0 0.1921 +0 0.7212 +0 0.0482 +0 0.1860 +0 0.1356 +0 0.2805 +0 0.1261 +0 0.0956 +0 0.1016 +0 0.1038 +0 0.0506 +0 0.1009 +0 0.0796 +0 0.1123 +0 0.0571 +0 0.2387 +0 0.0742 +0 0.1601 +0 0.3806 +0 0.3129 +0 0.0711 +0 0.0374 +0 0.0370 +0 0.0937 +0 0.1205 +0 0.7288 +0 0.1818 +0 0.0590 +0 0.0542 +0 0.1868 +0 0.0518 +0 0.0817 +0 0.0814 +0 0.0605 +0 0.0647 +0 0.0762 +0 0.1691 +0 0.0947 +0 0.1416 +0 0.1483 +0 0.0852 +0 0.0839 +0 0.0610 +0 0.0573 +0 0.1810 +0 0.4319 +0 0.0771 +0 0.0511 +0 0.0445 +0 0.0553 +0 0.1608 +0 0.1944 +0 0.1252 +0 0.1361 +0 0.0310 +0 0.0987 +0 0.1849 +0 0.1078 +0 0.0629 +0 0.0714 +0 0.1938 +0 0.2564 +0 0.1090 +0 0.0940 +0 0.3046 +0 0.2126 +0 0.1925 +1 0.8884 +0 0.3838 +0 0.1257 +0 0.0954 +0 0.1577 +0 0.4138 +0 0.1004 +0 0.1217 +0 0.1966 +0 0.3046 +0 0.7419 +0 0.1091 +0 0.1458 +0 0.0611 +0 0.4950 +0 0.0763 +0 0.0701 +0 0.1451 +0 0.0333 +0 0.0627 +0 0.0850 +0 0.0805 +0 0.0784 +0 0.0840 +0 0.1626 +0 0.0746 +0 0.1115 +0 0.0936 +0 0.2071 +0 0.1419 +0 0.0869 +0 0.0668 +0 0.0835 +0 0.0721 +0 0.3109 +0 0.1346 +0 0.0628 +0 0.0822 +0 0.0746 +0 0.0452 +0 0.0468 +0 0.0901 +0 0.1416 +0 0.1930 +0 0.2665 +0 0.1189 +1 0.8507 +0 0.7360 +0 0.1162 +0 0.0645 +0 0.0815 +0 0.1219 +0 0.0291 +0 0.1473 +0 0.0578 +0 0.0691 +0 0.1249 +0 0.0365 +0 0.1014 +0 0.1051 +0 0.0887 +0 0.0950 +0 0.0413 +0 0.0855 +0 0.3099 +0 0.0714 +0 0.1115 +0 0.0770 +0 0.2871 +1 0.8524 +0 0.1589 +0 0.0848 +0 0.2216 +0 0.1158 +0 0.1208 +0 0.0895 +0 0.0768 +0 0.0984 +0 0.1562 +0 0.0447 +0 0.6984 +0 0.1264 +0 0.0498 +0 0.2086 +0 0.0610 +0 0.0683 +0 0.0476 +0 0.0925 +0 0.2181 +0 0.1369 +0 0.0983 +0 0.3466 +0 0.0594 +0 0.0555 +0 0.0776 +0 0.0727 +0 0.0870 +0 0.0902 +0 0.0636 +0 0.1277 +0 0.0524 +1 0.8306 +0 0.2358 +0 0.0863 +0 0.3088 +0 0.1021 +0 0.1061 +0 0.1021 +0 0.0780 +0 0.0744 +0 0.1004 +0 0.1404 +0 0.0673 +0 0.0962 +0 0.1028 +0 0.1430 +0 0.2113 +0 0.2825 +0 0.1161 +0 0.0890 +0 0.2674 +0 0.0999 +0 0.1094 +0 0.0515 +0 0.1531 +0 0.1388 +1 0.7528 +0 0.0529 +0 0.1651 +0 0.0942 +0 0.2208 +0 0.3428 +0 0.0970 +0 0.0746 +0 0.0511 +0 0.3289 +0 0.0820 +0 0.0711 +0 0.0892 +1 0.8467 +0 0.0834 +0 0.1630 +0 0.0771 +0 0.2051 +0 0.0535 +0 0.0764 +0 0.1760 +0 0.0897 +0 0.0740 +0 0.1944 +0 0.6822 +0 0.1973 +0 0.4265 +0 0.0809 +0 0.1233 +0 0.2024 +0 0.3457 +0 0.6289 +0 0.1739 +0 0.0967 +1 0.7726 +0 0.1183 +0 0.0450 +0 0.0810 +0 0.1688 +0 0.0477 +0 0.2647 +0 0.0531 +0 0.2597 +0 0.0969 +0 0.6302 +0 0.0805 +0 0.0916 +0 0.1119 +0 0.1409 +0 0.1361 +0 0.1323 +0 0.0684 +0 0.1263 +0 0.2272 +0 0.0813 +0 0.0678 +0 0.0822 +0 0.5291 +0 0.3082 +0 0.1415 +0 0.2787 +0 0.1155 +0 0.1748 +0 0.0927 +0 0.0720 +0 0.0698 +0 0.0691 +0 0.1401 +0 0.2403 +0 0.1903 +0 0.1119 +0 0.0471 +0 0.0643 +0 0.0591 +0 0.1189 +0 0.1698 +0 0.1283 +0 0.1035 +0 0.0786 +0 0.2084 +0 0.7447 +0 0.1298 +0 0.0612 +0 0.0807 +0 0.0848 +0 0.0883 +0 0.1097 +0 0.0380 +0 0.1290 +0 0.0860 +0 0.1714 +0 0.1405 +0 0.1415 +0 0.0959 +0 0.0380 +0 0.2821 +0 0.2349 +0 0.0569 +0 0.0851 +0 0.7168 +0 0.1925 +0 0.1383 +0 0.2280 +1 0.7756 +0 0.1233 +0 0.2316 +0 0.4476 +0 0.1583 +0 0.1597 +0 0.0844 +0 0.0696 +0 0.0640 +0 0.1709 +0 0.1363 +0 0.1126 +0 0.1905 +0 0.0622 +0 0.3899 +0 0.5035 +0 0.1416 +0 0.0984 +0 0.0576 +0 0.1687 +0 0.0407 +0 0.0654 +0 0.0893 +0 0.1011 +0 0.1115 +0 0.1518 +0 0.0524 +0 0.1140 +0 0.0370 +0 0.0515 +0 0.0787 +0 0.2380 +0 0.0790 +0 0.1557 +0 0.1134 +0 0.0610 +0 0.1851 +0 0.0702 +0 0.1113 +0 0.0662 +0 0.0492 +0 0.1114 +0 0.2794 +0 0.1620 +0 0.0356 +0 0.0573 +0 0.1407 +0 0.0590 +0 0.1607 +0 0.0451 +0 0.1134 +0 0.1162 +0 0.0428 +0 0.0356 +0 0.0896 +0 0.2207 +0 0.2629 +0 0.0690 +0 0.0727 +0 0.1307 +0 0.0907 +0 0.2558 +0 0.1364 +0 0.0907 +0 0.1236 +0 0.1086 +0 0.0927 +0 0.0344 +0 0.1009 +0 0.0615 +0 0.0707 +0 0.1252 +0 0.1884 +0 0.1117 +0 0.0564 +0 0.1740 +0 0.1235 +0 0.0881 +0 0.0496 +0 0.0372 +0 0.0678 +0 0.0652 +0 0.2353 +0 0.0622 +0 0.1035 +0 0.0759 +0 0.2310 +0 0.0569 +0 0.6805 +0 0.1466 +0 0.0876 +0 0.0538 +0 0.0596 +0 0.0661 +0 0.1106 +0 0.1391 +0 0.0783 +0 0.0913 +0 0.1144 +0 0.1236 +0 0.0676 +0 0.0843 +0 0.0896 +0 0.1076 +0 0.1047 +0 0.1206 +1 0.8491 +0 0.1331 +0 0.0882 +0 0.0672 +0 0.0646 +0 0.2418 +0 0.0563 +0 0.1790 +0 0.1525 +0 0.1642 +0 0.0725 +0 0.0915 +0 0.1121 +0 0.1597 +0 0.0506 +0 0.0615 +0 0.1950 +0 0.0466 +0 0.1846 +0 0.1939 +0 0.1896 +0 0.0422 +0 0.0656 +0 0.1427 +0 0.0649 +0 0.1531 +0 0.1783 +0 0.1428 +0 0.4777 +0 0.0665 +0 0.1097 +0 0.0525 +0 0.0564 +0 0.5015 +0 0.1049 +0 0.1580 +0 0.1185 +0 0.6487 +0 0.1997 +0 0.0452 +0 0.0836 +0 0.4304 +0 0.1388 +0 0.1118 +0 0.3229 +0 0.0601 +0 0.7442 +0 0.2465 +0 0.1333 +0 0.1564 +0 0.2084 +0 0.0926 +0 0.1403 +0 0.0641 +0 0.0978 +0 0.0435 +0 0.0529 +0 0.0746 +0 0.1830 +0 0.1854 +0 0.1249 +0 0.1005 +0 0.0690 +0 0.1146 +0 0.0575 +0 0.0569 +0 0.1494 +0 0.1977 +0 0.0664 +0 0.1881 +0 0.0657 +0 0.1387 +0 0.1199 +0 0.1828 +0 0.1462 +0 0.0895 +0 0.0704 +0 0.0818 +0 0.2070 +0 0.0971 +0 0.0963 +0 0.0764 +0 0.0662 +0 0.0603 +0 0.1009 +0 0.2195 +0 0.0696 +0 0.0616 +0 0.1052 +0 0.1075 +0 0.2486 +1 0.8472 +0 0.1393 +0 0.1377 +0 0.2127 +0 0.1283 +0 0.0655 +0 0.1430 +0 0.0690 +0 0.1957 +0 0.0920 +0 0.1565 +0 0.0815 +0 0.0599 +0 0.2836 +0 0.0753 +0 0.0988 +0 0.0898 +0 0.0556 +0 0.0588 +0 0.1059 +0 0.1333 +0 0.1839 +0 0.1423 +0 0.0855 +0 0.0757 +0 0.0757 +0 0.1579 +0 0.1369 +0 0.1579 +0 0.3044 +0 0.1001 +0 0.0667 +0 0.1684 +0 0.1396 +0 0.1007 +0 0.1363 +0 0.0983 +0 0.0915 +0 0.1004 +0 0.0833 +0 0.1749 +0 0.0707 +0 0.0602 +0 0.0448 +0 0.1174 +0 0.0903 +0 0.1677 +0 0.1052 +0 0.1105 +0 0.1151 +0 0.0934 +0 0.0612 +0 0.0842 +0 0.2703 +0 0.0839 +0 0.4849 +0 0.0680 +0 0.1368 +0 0.0927 +0 0.1044 +0 0.2839 +1 0.8554 +0 0.1886 +0 0.1157 +1 0.7701 +0 0.3363 +0 0.0612 +0 0.0744 +0 0.0457 +0 0.1512 +0 0.0673 +0 0.0611 +0 0.1526 +0 0.0856 +0 0.0477 +0 0.0564 +0 0.3340 +0 0.2051 +0 0.0786 +0 0.2378 +0 0.0712 +0 0.1592 +0 0.1019 +0 0.0375 +0 0.0883 +0 0.2127 +0 0.4235 +0 0.0854 +0 0.1596 +0 0.4431 +0 0.0641 +0 0.1009 +0 0.1666 +0 0.4127 +0 0.0676 +0 0.0643 +0 0.1443 +0 0.1135 +0 0.3548 +0 0.0451 +0 0.0838 +0 0.4482 +0 0.1174 +0 0.1361 +0 0.2772 +0 0.0965 +0 0.5617 +0 0.0663 +0 0.0587 +0 0.0396 +0 0.0744 +0 0.1321 +0 0.1199 +0 0.1194 +0 0.0958 +0 0.1742 +0 0.0569 +0 0.2533 +0 0.0826 +0 0.0393 +0 0.0337 +0 0.0636 +0 0.3357 +0 0.0832 +0 0.0370 +0 0.0909 +0 0.0385 +0 0.1184 +0 0.1558 +0 0.1273 +0 0.5645 +0 0.1025 +0 0.1825 +0 0.1320 +0 0.0491 +0 0.1490 +0 0.3336 +0 0.0659 +0 0.4043 +0 0.2707 +0 0.0732 +0 0.2103 +0 0.1808 +0 0.0624 +0 0.0864 +0 0.1223 +0 0.1385 +0 0.3154 +0 0.0683 +0 0.1857 +0 0.1055 +0 0.0670 +0 0.0642 +0 0.1036 +0 0.1612 +0 0.3072 +0 0.1093 +0 0.0941 +0 0.1144 +0 0.1403 +0 0.2487 +1 0.8213 +0 0.1644 +0 0.0445 +0 0.1347 +0 0.0576 +1 0.7656 +0 0.3965 +0 0.0783 +0 0.0623 +0 0.0950 +0 0.1133 +0 0.0844 +0 0.1461 +0 0.1431 +0 0.0787 +0 0.2597 +0 0.0596 +0 0.0301 +0 0.0911 +0 0.1024 +0 0.1341 +0 0.1461 +0 0.0855 +0 0.1285 +0 0.7151 +0 0.0631 +0 0.0625 +0 0.1737 +1 0.7879 +0 0.0348 +0 0.3328 +0 0.0599 +0 0.2646 +0 0.1168 +0 0.0788 +0 0.1380 +0 0.0959 +0 0.0609 +0 0.0502 +0 0.2390 +0 0.1927 +0 0.2132 +0 0.1207 +0 0.1042 +0 0.0673 +0 0.1327 +0 0.0759 +0 0.0370 +0 0.0635 +0 0.0768 +0 0.0341 +0 0.1630 +0 0.1066 +0 0.1319 +0 0.1351 +0 0.1029 +0 0.1739 +0 0.1097 +0 0.0506 +0 0.1026 +0 0.0492 +0 0.1138 +0 0.0510 +0 0.0767 +0 0.2511 +0 0.1990 +0 0.0532 +0 0.2127 +0 0.0964 +0 0.1074 +0 0.1071 +0 0.0638 +0 0.0468 +0 0.4294 +0 0.1108 +0 0.2902 +0 0.0596 +0 0.0893 +0 0.2792 +0 0.1701 +0 0.1476 +0 0.0956 +0 0.0678 +0 0.2571 +0 0.0816 +0 0.2334 +0 0.1816 +0 0.2030 +0 0.0777 +0 0.0492 +0 0.0793 +0 0.0563 +0 0.1473 +0 0.0663 +0 0.0377 +0 0.0641 +0 0.0686 +0 0.0853 +0 0.2494 +0 0.1599 +0 0.0762 +0 0.0592 +0 0.1251 +0 0.3947 +0 0.0903 +0 0.0929 +0 0.0596 +0 0.0734 +0 0.0829 +0 0.1080 +0 0.1386 +0 0.1414 +0 0.1321 +0 0.0799 +0 0.1901 +0 0.0606 +0 0.2165 +0 0.2330 +0 0.0637 +0 0.1273 +0 0.1250 +0 0.3321 +0 0.1061 +0 0.0658 +0 0.3208 +0 0.0769 +0 0.1167 +0 0.1782 +0 0.0677 +0 0.2230 +0 0.0865 +0 0.0508 +0 0.0427 +0 0.2381 +0 0.5538 +0 0.0534 +0 0.1408 +0 0.5881 +0 0.1536 +0 0.3877 +0 0.1180 +0 0.2693 +0 0.1823 +0 0.3173 +0 0.2656 +0 0.0873 +0 0.0891 +0 0.0510 +0 0.2379 +0 0.2118 +0 0.0407 +0 0.1460 +0 0.0547 +0 0.2399 +0 0.0897 +0 0.0602 +0 0.1689 +0 0.0636 +0 0.1349 +0 0.0727 +0 0.0982 +0 0.0993 +0 0.2510 +0 0.1246 +0 0.0864 +0 0.0918 +0 0.0455 +0 0.1000 +0 0.0766 +0 0.1836 +0 0.0741 +0 0.0985 +0 0.0452 +0 0.1898 +1 0.8518 +0 0.4364 +0 0.0617 +0 0.0565 +0 0.1466 +0 0.0395 +0 0.1117 +0 0.1617 +0 0.0813 +0 0.0943 +0 0.0742 +0 0.3095 +0 0.0902 +0 0.0884 +0 0.0686 +0 0.0662 +0 0.0524 +0 0.2244 +0 0.0918 +0 0.1787 +0 0.1334 +0 0.1032 +0 0.1177 +0 0.0632 +0 0.1784 +0 0.0947 +0 0.0855 +0 0.0518 +0 0.2059 +0 0.0948 +0 0.1282 +0 0.1615 +0 0.0355 +0 0.1722 +0 0.0888 +0 0.0782 +0 0.1257 +0 0.1815 +0 0.3624 +0 0.2533 +0 0.0990 +0 0.0695 +0 0.1302 +0 0.0858 +0 0.1347 +0 0.0552 +0 0.2863 +0 0.0630 +0 0.1773 +0 0.1461 +0 0.0651 +0 0.4621 +0 0.0802 +0 0.5085 +0 0.1044 +0 0.1125 +0 0.1362 +0 0.2296 +0 0.0561 +0 0.6492 +0 0.0692 +0 0.1288 +0 0.0853 +0 0.0350 +0 0.1447 +0 0.1191 +0 0.1748 +0 0.5961 +0 0.1310 +0 0.0775 +0 0.1637 +0 0.1196 +0 0.1633 +0 0.0610 +0 0.0599 +0 0.0792 +0 0.0502 +0 0.0850 +0 0.2158 +0 0.1436 +1 0.8619 +0 0.1032 +0 0.0670 +0 0.0741 +0 0.2236 +0 0.2330 +0 0.1622 +0 0.1054 +0 0.0673 +0 0.0745 +0 0.2223 +0 0.1588 +1 0.8262 +0 0.0819 +0 0.0918 +0 0.6954 +0 0.0659 +0 0.1441 +0 0.0534 +0 0.1163 +0 0.1619 +0 0.2765 +1 0.8108 +0 0.1085 +0 0.0328 +0 0.2771 +0 0.0568 +0 0.1706 +0 0.1491 +0 0.1808 +0 0.0562 +0 0.0863 +0 0.2276 +0 0.0781 +0 0.0918 +0 0.1280 +0 0.0716 +0 0.2893 +0 0.1004 +0 0.0656 +0 0.1509 +0 0.0717 +0 0.1174 +0 0.0521 +0 0.0704 +0 0.1243 +0 0.1755 +0 0.2883 +0 0.7306 +0 0.1443 +0 0.0887 +0 0.3101 +0 0.0460 +0 0.1024 +0 0.1377 +0 0.0714 +0 0.0716 +0 0.0819 +0 0.0640 +0 0.1583 +0 0.0790 +0 0.1657 +0 0.0736 +0 0.1465 +0 0.0649 +0 0.1702 +0 0.0376 +0 0.0723 +0 0.0712 +0 0.6501 +0 0.0515 +0 0.1125 +0 0.1909 +0 0.2553 +0 0.1157 +0 0.0578 +0 0.0340 +0 0.1281 +0 0.0760 +0 0.1615 +0 0.0818 +1 0.8087 +0 0.1482 +0 0.0837 +0 0.1392 +0 0.0874 +0 0.7041 +0 0.2728 +0 0.0856 +0 0.0725 +0 0.1166 +0 0.1316 +0 0.0811 +0 0.2570 +0 0.0851 +0 0.0725 +0 0.1684 +0 0.1719 +0 0.0602 +0 0.0918 +0 0.0938 +0 0.2355 +0 0.0880 +0 0.1238 +0 0.0913 +0 0.1323 +0 0.2580 +0 0.0507 +0 0.0854 +0 0.0379 +0 0.2022 +0 0.1116 +0 0.0432 +0 0.0515 +0 0.0720 +0 0.0977 +0 0.0865 +0 0.1176 +0 0.1478 +0 0.0695 +0 0.1117 +0 0.0305 +0 0.0720 +0 0.1637 +0 0.1274 +0 0.1531 +0 0.0483 +0 0.1259 +0 0.4359 +0 0.3373 +0 0.0379 +0 0.0919 +0 0.0629 +0 0.0976 +0 0.1346 +0 0.0532 +0 0.0983 +0 0.0924 +0 0.2619 +0 0.7199 +0 0.0749 +0 0.3716 +0 0.0644 +0 0.1651 +0 0.1270 +0 0.0933 +0 0.2127 +0 0.0703 +0 0.1053 +0 0.0681 +0 0.0771 +0 0.0718 +0 0.1101 +0 0.2218 +0 0.1555 +0 0.1291 +0 0.1139 +0 0.0645 +0 0.1028 +0 0.0613 +0 0.0679 +0 0.0953 +0 0.0360 +0 0.2016 +0 0.0749 +0 0.5356 +0 0.0688 +0 0.0598 +0 0.0669 +0 0.1543 +0 0.1544 +0 0.1115 +0 0.0666 +0 0.1159 +0 0.0768 +0 0.0768 +0 0.1672 +0 0.0662 +0 0.2686 +0 0.0700 +0 0.2554 +0 0.0793 +0 0.0977 +0 0.1015 +0 0.0723 +1 0.8614 +0 0.0424 +0 0.1259 +0 0.2270 +0 0.0796 +0 0.1653 +0 0.1598 +0 0.1899 +0 0.0701 +0 0.1371 +0 0.1227 +0 0.1217 +0 0.1004 +0 0.1566 +0 0.0888 +0 0.1553 +0 0.2615 +0 0.0926 +0 0.1059 +0 0.3926 +0 0.1688 +0 0.1088 +0 0.1512 +0 0.0768 +0 0.0836 +0 0.0771 +0 0.0830 +0 0.2826 +0 0.0848 +0 0.0730 +0 0.0782 +0 0.0935 +0 0.5516 +0 0.2032 +0 0.0917 +0 0.0977 +0 0.0843 +0 0.1702 +0 0.3286 +0 0.0829 +0 0.0802 +0 0.0961 +0 0.0559 +0 0.1532 +0 0.0904 +0 0.0868 +0 0.1335 +0 0.0750 +0 0.0640 +0 0.1420 +0 0.0878 +1 0.8001 +0 0.0876 +0 0.1211 +0 0.0772 +0 0.1204 +0 0.0459 +0 0.0639 +0 0.1112 +0 0.2346 +0 0.2039 +0 0.0769 +0 0.0704 +0 0.1136 +0 0.1694 +0 0.0583 +0 0.0874 +0 0.1479 +0 0.1551 +0 0.1343 +0 0.2254 +0 0.0876 +0 0.0562 +0 0.1486 +0 0.1708 +0 0.0476 +0 0.1044 +0 0.1184 +0 0.2781 +0 0.2150 +0 0.2001 +0 0.0799 +0 0.0629 +0 0.2108 +0 0.0784 +0 0.2377 +0 0.1985 +0 0.1891 +0 0.1161 +0 0.2087 +0 0.1322 +0 0.1406 +0 0.1409 +0 0.0358 +1 0.7811 +0 0.3724 +0 0.3322 +0 0.0630 +0 0.3350 +0 0.0494 +0 0.0482 +0 0.1970 +0 0.1614 +0 0.0958 +0 0.0555 +0 0.1321 +0 0.1489 +0 0.1700 +0 0.1421 +0 0.1027 +0 0.3073 +0 0.0778 +0 0.1695 +0 0.0618 +0 0.1880 +0 0.0877 +1 0.8014 +0 0.0739 +0 0.0831 +0 0.2873 +0 0.0995 +0 0.1274 +0 0.1529 +0 0.1781 +0 0.0442 +0 0.4866 +0 0.1475 +1 0.8290 +0 0.2229 +0 0.1395 +0 0.0992 +0 0.0768 +0 0.1014 +0 0.1819 +0 0.3544 +0 0.7072 +0 0.1394 +0 0.0728 +0 0.1205 +0 0.4500 +0 0.0726 +0 0.0620 +0 0.0870 +0 0.1614 +0 0.0605 +0 0.2472 +0 0.0563 +0 0.0372 +0 0.0504 +0 0.0717 +0 0.0786 +0 0.0797 +0 0.2472 +0 0.0982 +0 0.2073 +0 0.2628 +0 0.0833 +0 0.0789 +0 0.0935 +0 0.1036 +0 0.1532 +0 0.0704 +0 0.2626 +0 0.1145 +0 0.0624 +0 0.1515 +0 0.3743 +0 0.1762 +0 0.1546 +0 0.2647 +0 0.0603 +0 0.1064 +0 0.0861 +0 0.1632 +0 0.0657 +0 0.1548 +0 0.0701 +0 0.2207 +0 0.1174 +0 0.0625 +0 0.2465 +0 0.1643 +0 0.0750 +0 0.1611 +0 0.1248 +0 0.0963 +0 0.2431 +0 0.0714 +0 0.1040 +0 0.0817 +0 0.0679 +0 0.1829 +0 0.0695 +0 0.0685 +0 0.1088 +0 0.1361 +0 0.0758 +0 0.0520 +0 0.2907 +0 0.2070 +0 0.0528 +0 0.1667 +0 0.2697 +0 0.1266 +0 0.0553 +0 0.1383 +0 0.0705 +0 0.0466 +0 0.0927 +0 0.0612 +0 0.2884 +0 0.0582 +0 0.2541 +0 0.2184 +0 0.0635 +0 0.0585 +0 0.0784 +1 0.7744 +0 0.1447 +0 0.0797 +0 0.0971 +0 0.1961 +0 0.0740 +0 0.2408 +0 0.1799 +0 0.0330 +0 0.2236 +0 0.0781 +0 0.0756 +0 0.0869 +0 0.1224 +0 0.0503 +0 0.1917 +0 0.2349 +0 0.1986 +0 0.1714 +0 0.1866 +0 0.1009 +0 0.2277 +0 0.0615 +0 0.0933 +0 0.1780 +0 0.1486 +0 0.1242 +0 0.1025 +0 0.1124 +0 0.1035 +0 0.1264 +0 0.1200 +0 0.0716 +0 0.1820 +0 0.0608 +0 0.0614 +0 0.2605 +0 0.1826 +0 0.1252 +0 0.1670 +0 0.1191 +0 0.1416 +0 0.0498 +0 0.1777 +0 0.0953 +0 0.0526 +0 0.2876 +0 0.0709 +0 0.1745 +0 0.1859 +0 0.0943 +0 0.1107 +0 0.2794 +0 0.7056 +0 0.0422 +0 0.1085 +0 0.1078 +0 0.3181 +0 0.0659 +0 0.2675 +0 0.0789 +0 0.2002 +0 0.0704 +0 0.5025 +0 0.0728 +0 0.1538 +0 0.1561 +0 0.1545 +0 0.1338 +0 0.0831 +0 0.0531 +0 0.1462 +0 0.1954 +0 0.0837 +0 0.5725 +0 0.0712 +0 0.0448 +0 0.1211 +0 0.1512 +0 0.0809 +0 0.1469 +0 0.2678 +0 0.0898 +0 0.1320 +0 0.1482 +0 0.2248 +0 0.1743 +0 0.0533 +0 0.1780 +0 0.1450 +0 0.1842 +0 0.1296 +0 0.0574 +0 0.0707 +0 0.0663 +0 0.1068 +0 0.6425 +0 0.1742 +0 0.0987 +0 0.2521 +0 0.2466 +0 0.0848 +0 0.7197 +0 0.4245 +0 0.1202 +0 0.1120 +0 0.1310 +0 0.1568 +0 0.1211 +0 0.3766 +0 0.0912 +0 0.0388 +0 0.1887 +0 0.0869 +0 0.2225 +0 0.0437 +0 0.2853 +0 0.2526 +0 0.0906 +0 0.0513 +0 0.0563 +0 0.0557 +0 0.0624 +0 0.2024 +0 0.2261 +0 0.0859 +0 0.0475 +0 0.0821 +0 0.2798 +0 0.0762 +0 0.0558 +1 0.7554 +0 0.1245 +0 0.1516 +0 0.1125 +0 0.0840 +0 0.1315 +0 0.4636 +0 0.1225 +0 0.4987 +0 0.6260 +0 0.0591 +1 0.7572 +0 0.0850 +0 0.1286 +0 0.0954 +0 0.1710 +0 0.0547 +0 0.0635 +0 0.1002 +0 0.0646 +0 0.0402 +0 0.1771 +0 0.1464 +0 0.1134 +1 0.6900 +0 0.1565 +0 0.4324 +0 0.1915 +0 0.2124 +0 0.1061 +0 0.0576 +0 0.0882 +0 0.1520 +0 0.1069 +1 0.8119 +0 0.1220 +0 0.1265 +0 0.1256 +0 0.2043 +0 0.1534 +0 0.0998 +0 0.1390 +0 0.0930 +1 0.8524 +0 0.0895 +0 0.0564 +0 0.1530 +0 0.6861 +0 0.2340 +0 0.1401 +0 0.2909 +0 0.1036 +0 0.1652 +0 0.1005 +0 0.1652 +0 0.0535 +0 0.1785 +0 0.4608 +0 0.1148 +1 0.8761 +0 0.0635 +0 0.0592 +0 0.0583 +0 0.1299 +0 0.1512 +0 0.0338 +0 0.2188 +0 0.1571 +0 0.0466 +0 0.6073 +0 0.4241 +0 0.1434 +0 0.1402 +0 0.0973 +0 0.0391 +0 0.0988 +0 0.0941 +0 0.1466 +0 0.2411 +0 0.1742 +0 0.0808 +0 0.3482 +0 0.0554 +0 0.1272 +0 0.0557 +0 0.1531 +0 0.3499 +0 0.2165 +0 0.0508 +0 0.1162 +0 0.0733 +0 0.1814 +0 0.0725 +0 0.0980 +0 0.2551 +0 0.5777 +0 0.1948 +0 0.0824 +0 0.0577 +0 0.0865 +0 0.0914 +0 0.0879 +0 0.0633 +0 0.0948 +0 0.1072 +1 0.8322 +0 0.1052 +0 0.1774 +0 0.5024 +0 0.0715 +0 0.1543 +0 0.6505 +0 0.2505 +0 0.0830 +0 0.1182 +0 0.2857 +0 0.0519 +0 0.1601 +0 0.1024 +0 0.1256 +0 0.0711 +0 0.1454 +1 0.8843 +0 0.0796 +0 0.5685 +0 0.0753 +0 0.0564 +0 0.6147 +0 0.0834 +0 0.1074 +0 0.1421 +0 0.3550 +0 0.0807 +0 0.1036 +0 0.2089 +0 0.1055 +0 0.2737 +0 0.1199 +0 0.1120 +0 0.1287 +0 0.0687 +0 0.0879 +0 0.1129 +0 0.2666 +0 0.0883 +0 0.2268 +0 0.2105 +0 0.0785 +0 0.1207 +0 0.1159 +0 0.1895 +0 0.3017 +0 0.0785 +0 0.0877 +0 0.0711 +0 0.0831 +0 0.0831 +0 0.3078 +0 0.0503 +0 0.0437 +0 0.2389 +0 0.1734 +0 0.1028 +0 0.1317 +0 0.1825 +0 0.0897 +0 0.1862 +0 0.0637 +0 0.3774 +0 0.1342 +0 0.2260 +0 0.1200 +0 0.1485 +0 0.1111 +0 0.6235 +0 0.1705 +0 0.3635 +0 0.0895 +0 0.0692 +0 0.0470 +0 0.0626 +0 0.1606 +0 0.1222 +0 0.0473 +0 0.0748 +0 0.0945 +0 0.0649 +0 0.5639 +0 0.0842 +0 0.6316 +0 0.1095 +0 0.0581 +0 0.0486 +0 0.0884 +0 0.7007 +0 0.1045 +0 0.0751 +0 0.0638 +0 0.0850 +0 0.1843 +0 0.3383 +0 0.1725 +0 0.1208 +0 0.0774 +1 0.7535 +0 0.1216 +0 0.1378 +0 0.1356 +0 0.1182 +1 0.7907 +0 0.0658 +0 0.0419 +0 0.1853 +0 0.0628 +0 0.0731 +0 0.1149 +0 0.1665 +0 0.1275 +0 0.1418 +1 0.7718 +0 0.2981 +0 0.0944 +0 0.2107 +0 0.1253 +0 0.0661 +0 0.0791 +0 0.1581 +0 0.0299 +0 0.2743 +0 0.0505 +0 0.0442 +0 0.4186 +0 0.4251 +0 0.0533 +0 0.0438 +0 0.0785 +0 0.1180 +0 0.1453 +0 0.4100 +0 0.1075 +0 0.0868 +0 0.0895 +0 0.1505 +0 0.4308 +0 0.4092 +0 0.2408 +0 0.1009 +0 0.1169 +0 0.6109 +0 0.0908 +0 0.1381 +0 0.0794 +0 0.0545 +0 0.1027 +0 0.1083 +0 0.7094 +0 0.2715 +0 0.0931 +0 0.1000 +0 0.6339 +0 0.1014 +0 0.0455 +0 0.0485 +0 0.1159 +0 0.1060 +0 0.1328 +0 0.2238 +0 0.1780 +0 0.1283 +0 0.0956 +0 0.0662 +0 0.1360 +0 0.0852 +0 0.1047 +0 0.1966 +0 0.1671 +0 0.2634 +0 0.1396 +0 0.0411 +0 0.0586 +1 0.7852 +0 0.1017 +0 0.2233 +0 0.1114 +0 0.0721 +0 0.1665 +0 0.1648 +0 0.3323 +0 0.4482 +0 0.5075 +0 0.1036 +0 0.1207 +0 0.1786 +0 0.1200 +0 0.1149 +0 0.0896 +0 0.1723 +0 0.7344 +0 0.1482 +0 0.1248 +0 0.0776 +0 0.1729 +0 0.1156 +0 0.0615 +0 0.1264 +0 0.2069 +0 0.1718 +0 0.1784 +0 0.0797 +0 0.0791 +0 0.0644 +0 0.0715 +0 0.0667 +0 0.2584 +0 0.0738 +0 0.0906 +0 0.1165 +0 0.1972 +0 0.1763 +0 0.1031 +0 0.0442 +0 0.1284 +0 0.0875 +0 0.1269 +0 0.2239 +0 0.1066 +0 0.1029 +0 0.0670 +0 0.0813 +0 0.0673 +0 0.1631 +0 0.0630 +0 0.1306 +0 0.1165 +0 0.1281 +0 0.0598 +0 0.0753 +0 0.1478 +0 0.0844 +0 0.0628 +0 0.1002 +0 0.1033 +0 0.0618 +0 0.2766 +0 0.0895 +0 0.0950 +0 0.1743 +0 0.2978 +0 0.3260 +0 0.1144 +0 0.0601 +0 0.0988 +0 0.1227 +0 0.0466 +0 0.3182 +0 0.1823 +0 0.1274 +1 0.8349 +0 0.1608 +0 0.0612 +0 0.2599 +0 0.0687 +0 0.0522 +0 0.0717 +0 0.1278 +0 0.0836 +0 0.0587 +0 0.1013 +0 0.3157 +0 0.2958 +0 0.0566 +0 0.2518 +0 0.1272 +0 0.1732 +0 0.0541 +0 0.1011 +0 0.1751 +0 0.0746 +0 0.0823 +0 0.1300 +0 0.1434 +0 0.0568 +1 0.7971 +0 0.3434 +0 0.3392 +0 0.2060 +0 0.1066 +0 0.0894 +0 0.0661 +0 0.2263 +0 0.0479 +0 0.1159 +0 0.1740 +0 0.1338 +0 0.0880 +0 0.0621 +0 0.2898 +0 0.1686 +0 0.3571 +0 0.1214 +0 0.4234 +0 0.3223 +0 0.0429 +0 0.3669 +0 0.0901 +0 0.1903 +0 0.0549 +0 0.4955 +0 0.0533 +0 0.0857 +0 0.1135 +0 0.1273 +0 0.0280 +0 0.1306 +0 0.0948 +0 0.4624 +0 0.4557 +0 0.0483 +0 0.1549 +0 0.2139 +0 0.1776 +0 0.1116 +0 0.0792 +0 0.1660 +0 0.0955 +0 0.0829 +0 0.0645 +0 0.0666 +0 0.0580 +0 0.0657 +0 0.1034 +0 0.1623 +0 0.0745 +0 0.4075 +0 0.1810 +0 0.1521 +0 0.0904 +0 0.2650 +0 0.0781 +0 0.0727 +0 0.1435 +0 0.0665 +0 0.0992 +0 0.1006 +0 0.0995 +0 0.1631 +0 0.2199 +0 0.2218 +0 0.1523 +0 0.2127 +0 0.0864 +0 0.0600 +0 0.0801 +0 0.1136 +0 0.1746 +0 0.2775 +0 0.3791 +0 0.7136 +0 0.0665 +0 0.1287 +0 0.1374 +0 0.0633 +0 0.0523 +0 0.0804 +0 0.0689 +0 0.1239 +0 0.0317 +0 0.0715 +0 0.0662 +0 0.0646 +0 0.0381 +0 0.0677 +0 0.1057 +0 0.0378 +0 0.1105 +0 0.1221 +0 0.0491 +0 0.0758 +0 0.1024 +0 0.0987 +0 0.0746 +0 0.0835 +0 0.1271 +0 0.0689 +0 0.2450 +0 0.0848 +0 0.4374 +0 0.3528 +0 0.1277 +0 0.4397 +0 0.3762 +0 0.0580 +0 0.1082 +0 0.0969 +0 0.1264 +0 0.0516 +0 0.0878 +0 0.1542 +0 0.1152 +0 0.2722 +0 0.1842 +0 0.1624 +0 0.3357 +0 0.0779 +0 0.2250 +0 0.0797 +0 0.0573 +0 0.0495 +0 0.1270 +0 0.0617 +0 0.1760 +0 0.0961 +0 0.0615 +0 0.1069 +0 0.4653 +0 0.2144 +0 0.1183 +0 0.0387 +0 0.1459 +0 0.0857 +0 0.0587 +0 0.0938 +0 0.0718 +0 0.1259 +0 0.0570 +0 0.0505 +0 0.0990 +0 0.0781 +0 0.0753 +0 0.1610 +0 0.1285 +0 0.0509 +0 0.0636 +0 0.3492 +0 0.1348 +0 0.0602 +0 0.1502 +0 0.1156 +0 0.2247 +0 0.1357 +0 0.0636 +0 0.0803 +0 0.0595 +0 0.1784 +0 0.1143 +0 0.1046 +0 0.2379 +0 0.0589 +0 0.1717 +0 0.0916 +0 0.0674 +0 0.0713 +0 0.1368 +0 0.1455 +0 0.1300 +0 0.0763 +0 0.0532 +0 0.0887 +0 0.3748 +0 0.1721 +0 0.0687 +0 0.1074 +0 0.7027 +0 0.7266 +0 0.0521 +0 0.0583 +0 0.1296 +0 0.0651 +0 0.7225 +0 0.1308 +0 0.2195 +0 0.1528 +0 0.0707 +0 0.1670 +0 0.1512 +0 0.1011 +0 0.2583 +0 0.3398 +0 0.2166 +0 0.1426 +0 0.0770 +0 0.0408 +1 0.7530 +0 0.2302 +0 0.1304 +0 0.0902 +0 0.1394 +0 0.2625 +0 0.0688 +0 0.6307 +0 0.0759 +0 0.1295 +0 0.0561 +0 0.1447 +0 0.0879 +0 0.0793 +0 0.3239 +0 0.0800 +0 0.0997 +0 0.3226 +0 0.2229 +0 0.1198 +0 0.1763 +0 0.0828 +0 0.1240 +0 0.1149 +0 0.0514 +0 0.1808 +0 0.2683 +0 0.0841 +0 0.0951 +0 0.0826 +0 0.0920 +0 0.1014 +0 0.1344 +0 0.1212 +0 0.3150 +0 0.0961 +0 0.1604 +0 0.1117 +0 0.1126 +0 0.0944 +0 0.2149 +0 0.0908 +0 0.0826 +0 0.0453 +0 0.0730 +0 0.2768 +0 0.0532 +0 0.0896 +0 0.1823 +0 0.2212 +0 0.0899 +0 0.1919 +0 0.1328 +0 0.0596 +0 0.0655 +0 0.1012 +0 0.0541 +0 0.1952 +0 0.0862 +0 0.1286 +0 0.1175 +0 0.1104 +0 0.2471 +0 0.1439 +0 0.0489 +0 0.2270 +0 0.1477 +0 0.1676 +0 0.0882 +0 0.2645 +0 0.0547 +0 0.0904 +0 0.1944 +0 0.0757 +0 0.1090 +0 0.0942 +0 0.0857 +0 0.0470 +0 0.1262 +0 0.0627 +0 0.4268 +0 0.0513 +0 0.2587 +0 0.1891 +0 0.2220 +0 0.1708 +0 0.2357 +0 0.0590 +0 0.0897 +0 0.1029 +0 0.1090 +0 0.0410 +0 0.0924 +0 0.2542 +0 0.0362 +0 0.1569 +0 0.0436 +0 0.1995 +0 0.0967 +0 0.0673 +0 0.1412 +0 0.1240 +0 0.0756 +0 0.0719 +0 0.0524 +0 0.1076 +0 0.1415 +0 0.0539 +0 0.0808 +0 0.0901 +0 0.0711 +0 0.6151 +0 0.1026 +0 0.0670 +0 0.2543 +0 0.0693 +0 0.1048 +0 0.1763 +0 0.1336 +0 0.2095 +0 0.1081 +0 0.2756 +0 0.1480 +0 0.0904 +0 0.1551 +0 0.5057 +0 0.0713 +0 0.0631 +0 0.0642 +0 0.0916 +0 0.2061 +0 0.0348 +0 0.0925 +0 0.1424 +0 0.6403 +0 0.1536 +0 0.0561 +0 0.0717 +0 0.2093 +0 0.0955 +0 0.1320 +0 0.0694 +0 0.0914 +0 0.0753 +0 0.1506 +0 0.0954 +0 0.1082 +0 0.2435 +0 0.2367 +0 0.0771 +0 0.0862 +0 0.0420 +0 0.0572 +0 0.1346 +0 0.0985 +0 0.0798 +0 0.0771 +0 0.0749 +0 0.2150 +0 0.0934 +0 0.1022 +0 0.1016 +0 0.2794 +0 0.1510 +0 0.1207 +0 0.0423 +0 0.0538 +0 0.0323 +0 0.0620 +0 0.1037 +1 0.8279 +0 0.0668 +0 0.2277 +0 0.0646 +0 0.7100 +0 0.1983 +0 0.0467 +0 0.1618 +0 0.1762 +0 0.1208 +0 0.0381 +0 0.1664 +0 0.0650 +0 0.0746 +0 0.2415 +0 0.0872 +0 0.2577 +0 0.0762 +0 0.1365 +0 0.0717 +0 0.1611 +0 0.0315 +0 0.1078 +0 0.5212 +0 0.0867 +0 0.1983 +0 0.0896 +0 0.4974 +0 0.2167 +0 0.1102 +0 0.2028 +0 0.1059 +0 0.1049 +0 0.1318 +0 0.0730 +0 0.0719 +0 0.1400 +0 0.0787 +0 0.1893 +0 0.0420 +0 0.1655 +0 0.0678 +0 0.0932 +0 0.0407 +0 0.0483 +0 0.0445 +0 0.1739 +0 0.1388 +0 0.1644 +0 0.0948 +0 0.1011 +0 0.0998 +0 0.0646 +0 0.6421 +1 0.7524 +0 0.0846 +0 0.1448 +0 0.1243 +0 0.0636 +0 0.0837 +0 0.2063 +0 0.0974 +0 0.0823 +0 0.4249 +0 0.0667 +0 0.0554 +0 0.0986 +0 0.5302 +0 0.0445 +0 0.1059 +0 0.1535 +0 0.1652 +0 0.0540 +0 0.1467 +0 0.0432 +0 0.0581 +0 0.0608 +0 0.0532 +0 0.0925 +0 0.1207 +0 0.0933 +0 0.1074 +0 0.0997 +0 0.0880 +0 0.0540 +0 0.3982 +0 0.1368 +0 0.1389 +0 0.1036 +0 0.1332 +0 0.2777 +0 0.1476 +0 0.2522 +0 0.1110 +0 0.1289 +0 0.6957 +0 0.6904 +0 0.1321 +0 0.1889 +0 0.6226 +1 0.7684 +0 0.4034 +0 0.0584 +0 0.1219 +0 0.1014 +0 0.0877 +0 0.2505 +0 0.1665 +0 0.1179 +0 0.0861 +0 0.1505 +0 0.1178 +0 0.0862 +0 0.2018 +0 0.0399 +0 0.1621 +0 0.3339 +0 0.1218 +0 0.1590 +0 0.2239 +0 0.1020 +0 0.3084 +0 0.1947 +0 0.0992 +0 0.0429 +0 0.2900 +0 0.0969 +0 0.1177 +0 0.0696 +0 0.0469 +0 0.1527 +0 0.0520 +0 0.0898 +0 0.4626 +0 0.1063 +0 0.1200 +0 0.0858 +0 0.2382 +0 0.0999 +0 0.1449 +0 0.0332 +0 0.4328 +0 0.0674 +0 0.0468 +0 0.1055 +0 0.2414 +0 0.2238 +0 0.1910 +0 0.0878 +0 0.3154 +0 0.0894 +0 0.0628 +0 0.1622 +0 0.1128 +0 0.0538 +0 0.0970 +0 0.1444 +0 0.0908 +0 0.1827 +0 0.1364 +0 0.0892 +1 0.8031 +0 0.1807 +0 0.1838 +0 0.0364 +0 0.0918 +0 0.2021 +0 0.0765 +0 0.0625 +0 0.1485 +0 0.1846 +0 0.4513 +0 0.0705 +0 0.1099 +0 0.1023 +0 0.4232 +0 0.1934 +0 0.0951 +0 0.1601 +0 0.1259 +0 0.0782 +0 0.0611 +0 0.0658 +1 0.8146 +0 0.2029 +0 0.0843 +0 0.0509 +0 0.1252 +0 0.0951 +0 0.0669 +0 0.4069 +0 0.0467 +0 0.1302 +0 0.0799 +0 0.1678 +0 0.0817 +0 0.0778 +0 0.0971 +0 0.0677 +0 0.1174 +0 0.0607 +0 0.1275 +0 0.1933 +0 0.0728 +0 0.1275 +0 0.2945 +0 0.0562 +0 0.0459 +0 0.1007 +0 0.0719 +0 0.0690 +0 0.1898 +0 0.0713 +0 0.1347 +0 0.1012 +0 0.0831 +0 0.0895 +0 0.0427 +0 0.1006 +0 0.0817 +0 0.0420 +0 0.0879 +0 0.0971 +0 0.1067 +0 0.0934 +0 0.5689 +0 0.2061 +0 0.0847 +0 0.2191 +0 0.0926 +0 0.6857 +0 0.1466 +0 0.2183 +0 0.1330 +0 0.6319 +0 0.0887 +0 0.1253 +0 0.0617 +0 0.1179 +0 0.0769 +0 0.1444 +0 0.0534 +0 0.7204 +0 0.0859 +0 0.0865 +0 0.1772 +0 0.3639 +0 0.0457 +0 0.0840 +0 0.0876 +0 0.1534 +0 0.0785 +0 0.2695 +0 0.0516 +0 0.2869 +0 0.0756 +0 0.0908 +0 0.1003 +0 0.1662 +0 0.0823 +0 0.0879 +0 0.1783 +0 0.0730 +0 0.0443 +0 0.1181 +0 0.4577 +0 0.0809 +0 0.2551 +0 0.0950 +0 0.4326 +1 0.7622 +0 0.1054 +0 0.1052 +0 0.1350 +0 0.1044 +0 0.1017 +0 0.1179 +0 0.1202 +0 0.3148 +0 0.1792 +0 0.1779 +0 0.1769 +0 0.2041 +0 0.4725 +0 0.0866 +0 0.3557 +0 0.0662 +0 0.0449 +0 0.1402 +0 0.1041 +0 0.1069 +0 0.0718 +0 0.1127 +0 0.1541 +0 0.2528 +0 0.3436 +0 0.1206 +0 0.3356 +0 0.0735 +0 0.3476 +0 0.0837 +0 0.0495 +0 0.1375 +0 0.0643 +0 0.1444 +0 0.0480 +0 0.1621 +0 0.0574 +0 0.2718 +0 0.2899 +0 0.1005 +0 0.0761 +0 0.6392 +0 0.0686 +0 0.0350 +0 0.1284 +0 0.0764 +0 0.0484 +0 0.0672 +0 0.0809 +1 0.7630 +0 0.0921 +0 0.4229 +0 0.0736 +0 0.1743 +0 0.0966 +0 0.2508 +0 0.2784 +0 0.1259 +0 0.0576 +0 0.0864 +0 0.0723 +0 0.0586 +0 0.0830 +0 0.1326 +0 0.1831 +0 0.1092 +0 0.0631 +0 0.1406 +0 0.1939 +0 0.0570 +0 0.0402 +0 0.0555 +0 0.1083 +0 0.1017 +0 0.1152 +0 0.2212 +0 0.0595 +0 0.0384 +0 0.3330 +0 0.1345 +0 0.0383 +0 0.2513 +0 0.0517 +0 0.0587 +0 0.2091 +0 0.1702 +0 0.0797 +0 0.0494 +0 0.1121 +0 0.1848 +0 0.0757 +0 0.0591 +0 0.0627 +0 0.1722 +0 0.5473 +0 0.1066 +0 0.0867 +0 0.3254 +0 0.0343 +0 0.1099 +0 0.0638 +0 0.1122 +0 0.1381 +1 0.8001 +0 0.0916 +0 0.1753 +0 0.0792 +0 0.4607 +0 0.1058 +0 0.0650 +0 0.0969 +0 0.2695 +0 0.1893 +0 0.0639 +0 0.3132 +0 0.2218 +0 0.0579 +0 0.0404 +0 0.1097 +0 0.0407 +0 0.1643 +0 0.0659 +0 0.6455 +0 0.0619 +0 0.0837 +0 0.0642 +0 0.0624 +0 0.1928 +0 0.0916 +1 0.7659 +0 0.2665 +0 0.0833 +0 0.2039 +0 0.2936 +0 0.2296 +0 0.1649 +0 0.3434 +0 0.1586 +0 0.3091 +0 0.5972 +0 0.0704 +0 0.1449 +0 0.0888 +0 0.1116 +0 0.1956 +0 0.0871 +0 0.1736 +0 0.6139 +0 0.1484 +0 0.1116 +0 0.0344 +0 0.0516 +0 0.3068 +0 0.0972 +0 0.4992 +0 0.2051 +0 0.1036 +0 0.0757 +0 0.0784 +0 0.0701 +0 0.3070 +0 0.1389 +0 0.1505 +0 0.6048 +0 0.1998 +0 0.1678 +0 0.1408 +0 0.2162 +0 0.1864 +0 0.0554 +0 0.1467 +0 0.0814 +0 0.0355 +0 0.1016 +0 0.5284 +0 0.1070 +0 0.0525 +0 0.1135 +0 0.1121 +0 0.0739 +0 0.0629 +0 0.0711 +0 0.0687 +0 0.1190 +0 0.1299 +0 0.0607 +0 0.0483 +0 0.1137 +0 0.1193 +0 0.0515 +0 0.0991 +0 0.2386 +0 0.0428 +0 0.0887 +0 0.0966 +0 0.0747 +0 0.1478 +0 0.0931 +0 0.0671 +0 0.0445 +0 0.2593 +0 0.1151 +0 0.1580 +0 0.0613 +0 0.0939 +0 0.0854 +0 0.1304 +0 0.2568 +0 0.1380 +0 0.0542 +0 0.7485 +0 0.2043 +0 0.1224 +0 0.2645 +0 0.0961 +0 0.1975 +0 0.1306 +0 0.1054 +0 0.0929 +0 0.0506 +0 0.1349 +0 0.0864 +0 0.3427 +0 0.1646 +0 0.0799 +0 0.0409 +0 0.0679 +0 0.0508 +0 0.0551 +0 0.1405 +0 0.1671 +1 0.8542 +0 0.0710 +0 0.0544 +0 0.0422 +0 0.1254 +0 0.1611 +0 0.0574 +0 0.0656 +0 0.1916 +0 0.0394 +0 0.1630 +0 0.1601 +0 0.0445 +0 0.3028 +0 0.2744 +0 0.1864 +0 0.0581 +0 0.0405 +0 0.1416 +0 0.0930 +0 0.1210 +0 0.1025 +0 0.0366 +0 0.0858 +0 0.0763 +0 0.0899 +0 0.0790 +0 0.0895 +0 0.3034 +0 0.0492 +0 0.0844 +0 0.0743 +0 0.2385 +0 0.1681 +0 0.0614 +0 0.0463 +0 0.1923 +0 0.0511 +0 0.1053 +0 0.0694 +0 0.0975 +0 0.5059 +0 0.0602 +0 0.0825 +0 0.0809 +0 0.0547 +0 0.1171 +0 0.0999 +0 0.0877 +0 0.0563 +0 0.1093 +0 0.0571 +0 0.1220 +0 0.0978 +0 0.5478 +0 0.0600 +0 0.0956 +0 0.1015 +0 0.1106 +0 0.0668 +0 0.2520 +0 0.1700 +0 0.0822 +0 0.0348 +0 0.0933 +0 0.1016 +0 0.2355 +0 0.1100 +0 0.1588 +0 0.0660 +0 0.0650 +0 0.0703 +0 0.1212 +0 0.1473 +0 0.1039 +0 0.1996 +0 0.0427 +0 0.0729 +0 0.0607 +0 0.0745 +0 0.2993 +0 0.1233 +0 0.3182 +0 0.7180 +0 0.2648 +0 0.2228 +0 0.1051 +0 0.0411 +0 0.1753 +0 0.2368 +1 0.8642 +0 0.0941 +0 0.0801 +0 0.1309 +0 0.1501 +0 0.0885 +0 0.1375 +1 0.7851 +0 0.0620 +0 0.1302 +0 0.1105 +0 0.3266 +0 0.1573 +0 0.0547 +0 0.0934 +0 0.0576 +0 0.0938 +0 0.1433 +0 0.1569 +0 0.2504 +0 0.0947 +0 0.0739 +0 0.1034 +0 0.2055 +0 0.0643 +0 0.1074 +0 0.0680 +0 0.0945 +0 0.0468 +0 0.1138 +0 0.0741 +0 0.0996 +0 0.0543 +0 0.4422 +0 0.1089 +0 0.1812 +0 0.1823 +0 0.0775 +0 0.0651 +0 0.4730 +0 0.1731 +0 0.1745 +0 0.2528 +0 0.0865 +0 0.0540 +0 0.1061 +0 0.6395 +1 0.8360 +0 0.0469 +0 0.1227 +0 0.0995 +0 0.0504 +0 0.1873 +0 0.0577 +0 0.0500 +0 0.1200 +0 0.0779 +1 0.7882 +0 0.0480 +0 0.0491 +0 0.1480 +0 0.0785 +0 0.0854 +0 0.0671 +0 0.1304 +0 0.0893 +0 0.0730 +0 0.0576 +0 0.2099 +0 0.4204 +0 0.1104 +0 0.0571 +0 0.2440 +0 0.1367 +0 0.0928 +0 0.1223 +0 0.1139 +0 0.0643 +0 0.0705 +0 0.1839 +0 0.2324 +0 0.0789 +0 0.1241 +0 0.0774 +0 0.6829 +0 0.1872 +0 0.0449 +0 0.0991 +0 0.0808 +0 0.0890 +0 0.2268 +0 0.2920 +0 0.0839 +0 0.0854 +0 0.1414 +0 0.0638 +0 0.1205 +0 0.1143 +0 0.1259 +0 0.0976 +0 0.0470 +0 0.1329 +0 0.0824 +0 0.2051 +0 0.4156 +0 0.1895 +0 0.0295 +0 0.1666 +0 0.0643 +0 0.0623 +0 0.0487 +0 0.0784 +0 0.1196 +0 0.0562 +0 0.0818 +0 0.1452 +0 0.2114 +0 0.1144 +0 0.0790 +0 0.1293 +0 0.0660 +0 0.1126 +1 0.8609 +0 0.1076 +0 0.1841 +0 0.0704 +0 0.0868 +0 0.1583 +0 0.1070 +0 0.1183 +0 0.1461 +0 0.1012 +0 0.2622 +0 0.0361 +0 0.0670 +0 0.1032 +0 0.0746 +0 0.3794 +0 0.1302 +0 0.2073 +0 0.4054 +0 0.1878 +0 0.1517 +0 0.4058 +0 0.1071 +0 0.7299 +0 0.0723 +0 0.1017 +0 0.0833 +0 0.2857 +0 0.2434 +0 0.0655 +0 0.3954 +0 0.0381 +0 0.2432 +0 0.0495 +0 0.0412 +0 0.0939 +0 0.0517 +0 0.2554 +0 0.0987 +0 0.1025 +0 0.1988 +0 0.1395 +0 0.2243 +0 0.1211 +0 0.2532 +0 0.0755 +0 0.1057 +0 0.0387 +0 0.1050 +0 0.1690 +0 0.0728 +1 0.8040 +0 0.3098 +0 0.0933 +0 0.0592 +0 0.2525 +0 0.1077 +0 0.0591 +0 0.1002 +0 0.1943 +0 0.2932 +0 0.0382 +0 0.0830 +0 0.0759 +0 0.4154 +0 0.1605 +0 0.0640 +0 0.1039 +0 0.1095 +0 0.0406 +0 0.1147 +0 0.6739 +0 0.0440 +0 0.1306 +0 0.0629 +0 0.2455 +0 0.1262 +0 0.0784 +0 0.0673 +0 0.2199 +0 0.1721 +0 0.1823 +0 0.0480 +0 0.1376 +0 0.1060 +0 0.0398 +0 0.0804 +1 0.8254 +0 0.2982 +0 0.0607 +0 0.1817 +0 0.0365 +0 0.1137 +0 0.2761 +0 0.1649 +0 0.0616 +0 0.0864 +0 0.0929 +0 0.0829 +0 0.1430 +0 0.1244 +0 0.3067 +0 0.1012 +0 0.1778 +0 0.1904 +0 0.0888 +0 0.4322 +0 0.2916 +0 0.1030 +0 0.0547 +0 0.1121 +0 0.1124 +0 0.1086 +0 0.0762 +0 0.0609 +0 0.0605 +0 0.2131 +0 0.1483 +0 0.1438 +0 0.0583 +0 0.0975 +0 0.1114 +0 0.1167 +0 0.0426 +0 0.0620 +0 0.4650 +0 0.0908 +0 0.0824 +0 0.1549 +0 0.0877 +0 0.0914 +0 0.1116 +0 0.0798 +0 0.1479 +0 0.2327 +0 0.5984 +0 0.1603 +0 0.0917 +0 0.0761 +0 0.1124 +0 0.1180 +0 0.1940 +0 0.1727 +0 0.1573 +0 0.1882 +0 0.0531 +0 0.0558 +0 0.1106 +0 0.1062 +0 0.1716 +0 0.1412 +0 0.1107 +0 0.1234 +0 0.0724 +0 0.0805 +0 0.0945 +0 0.6084 +0 0.1491 +1 0.8217 +0 0.1244 +0 0.1141 +0 0.0978 +0 0.1499 +0 0.1107 +0 0.1951 +0 0.1812 +0 0.0727 +0 0.0759 +0 0.0880 +0 0.1197 +0 0.0702 +0 0.0953 +0 0.0290 +0 0.1024 +0 0.1508 +0 0.3134 +0 0.1016 +0 0.1703 +0 0.0932 +0 0.1839 +0 0.0732 +0 0.0788 +0 0.0887 +1 0.8491 +0 0.1304 +0 0.0515 +0 0.0358 +0 0.2635 +0 0.0373 +0 0.7500 +0 0.0758 +0 0.0422 +0 0.0838 +0 0.0825 +0 0.2591 +0 0.1398 +0 0.1242 +0 0.0641 +0 0.0659 +0 0.0747 +0 0.0916 +0 0.1431 +0 0.0660 +0 0.1124 +0 0.1199 +0 0.0648 +0 0.1797 +0 0.1729 +0 0.1962 +0 0.2356 +0 0.1433 +0 0.1134 +0 0.1770 +0 0.4623 +0 0.2643 +0 0.3307 +0 0.0699 +0 0.2572 +1 0.8056 +0 0.1018 +0 0.0576 +0 0.0579 +0 0.1500 +0 0.1022 +0 0.0589 +0 0.1907 +0 0.0865 +0 0.2382 +0 0.0768 +0 0.1377 +0 0.1070 +0 0.0495 +0 0.0461 +0 0.0736 +0 0.1056 +0 0.0617 +0 0.0436 +0 0.2580 +0 0.0980 +1 0.7785 +0 0.1609 +0 0.1030 +0 0.1273 +0 0.3695 +0 0.1302 +0 0.0953 +0 0.0836 +0 0.1444 +0 0.1539 +0 0.0679 +0 0.0716 +0 0.1035 +0 0.0585 +0 0.1851 +0 0.1616 +0 0.1501 +0 0.0871 +0 0.2403 +0 0.0947 +0 0.1223 +0 0.2878 +0 0.0659 +1 0.7964 +0 0.0710 +0 0.1670 +0 0.1896 +0 0.2379 +0 0.0769 +0 0.0577 +0 0.1120 +0 0.1399 +0 0.2156 +0 0.0766 +0 0.0958 +0 0.0481 +0 0.2062 +0 0.1123 +0 0.1828 +0 0.1230 +0 0.0730 +0 0.0679 +0 0.1046 +0 0.0985 +0 0.7440 +0 0.0565 +0 0.3031 +0 0.0834 +0 0.1229 +0 0.1686 +0 0.0406 +0 0.0919 +0 0.0961 +0 0.0646 +0 0.1371 +0 0.0437 +0 0.1086 +0 0.0589 +0 0.3649 +0 0.3160 +0 0.0824 +0 0.0788 +0 0.0292 +0 0.4640 +0 0.0459 +0 0.0698 +0 0.0783 +0 0.0431 +0 0.0715 +0 0.2054 +0 0.1580 +0 0.0879 +0 0.0828 +0 0.1686 +0 0.0705 +0 0.0674 +0 0.1043 +0 0.3439 +0 0.1125 +0 0.0788 +0 0.2048 +0 0.0576 +0 0.1733 +0 0.0799 +0 0.1678 +0 0.1221 +0 0.0570 +0 0.4760 +0 0.1270 +0 0.2238 +0 0.2004 +0 0.1496 +0 0.0611 +0 0.1319 +0 0.0630 +0 0.1025 +0 0.0934 +0 0.2515 +0 0.2233 +0 0.0829 +0 0.1432 +0 0.0498 +0 0.1627 +0 0.0958 +0 0.0992 +0 0.1691 +0 0.0699 +0 0.1782 +0 0.1334 +0 0.4783 +0 0.1003 +0 0.0936 +0 0.1602 +0 0.1044 +0 0.2150 +0 0.0936 +0 0.1554 +0 0.0519 +0 0.0907 +0 0.0926 +0 0.2592 +0 0.2316 +0 0.1196 +0 0.0569 +0 0.1907 +1 0.8231 +0 0.1000 +0 0.0489 +0 0.0679 +0 0.0537 +0 0.1402 +0 0.0440 +0 0.1354 +0 0.0602 +0 0.0520 +0 0.1348 +0 0.1609 +0 0.0761 +0 0.1828 +0 0.0817 +0 0.1101 +0 0.0489 +1 0.7899 +0 0.0872 +0 0.1471 +0 0.0457 +0 0.0452 +0 0.0861 +0 0.1006 +0 0.3364 +0 0.0672 +0 0.0345 +0 0.3707 +0 0.1204 +0 0.2793 +0 0.1027 +0 0.0589 +0 0.0991 +0 0.0837 +0 0.1319 +0 0.0961 +0 0.1452 +0 0.0768 +0 0.1497 +0 0.1652 +0 0.2269 +0 0.1626 +0 0.1384 +0 0.2166 +0 0.1066 +0 0.2310 +0 0.0851 +0 0.2016 +0 0.1751 +0 0.1306 +0 0.1135 +0 0.0891 +0 0.3262 +0 0.2066 +0 0.1472 +0 0.1269 +0 0.0728 +0 0.0547 +0 0.1741 +0 0.1854 +0 0.0471 +0 0.1084 +0 0.1044 +0 0.1096 +0 0.0704 +0 0.2381 +0 0.0741 +0 0.0887 +0 0.0883 +0 0.0887 +1 0.7983 +0 0.1101 +0 0.6053 +0 0.0554 +0 0.1151 +0 0.1202 +0 0.0478 +0 0.2013 +0 0.0574 +0 0.1449 +0 0.0566 +0 0.0984 +0 0.0976 +0 0.0740 +0 0.0622 +0 0.1006 +0 0.0543 +0 0.1847 +0 0.0351 +0 0.2075 +0 0.0997 +1 0.8137 +0 0.0785 +0 0.0750 +0 0.0519 +0 0.0608 +0 0.0818 +0 0.2152 +0 0.0750 +0 0.0702 +0 0.6389 +0 0.4020 +0 0.0585 +0 0.4276 +0 0.0722 +0 0.0929 +0 0.0864 +0 0.3026 +0 0.0938 +0 0.1251 +0 0.5670 +0 0.2105 +0 0.0642 +0 0.1401 +0 0.0912 +0 0.1639 +0 0.0728 +0 0.0765 +0 0.2208 +0 0.1117 +0 0.3553 +0 0.1493 +0 0.1303 +0 0.5223 +0 0.2750 +0 0.5113 +0 0.1392 +0 0.0513 +0 0.2952 +0 0.2170 +0 0.3716 +0 0.1279 +0 0.0791 +0 0.0895 +0 0.1509 +0 0.0793 +0 0.0352 +0 0.0988 +0 0.0455 +0 0.0944 +0 0.0513 +0 0.0562 +0 0.1370 +0 0.0888 +0 0.3441 +0 0.0869 +0 0.7178 +0 0.2155 +0 0.0719 +0 0.0919 +0 0.1367 +0 0.0698 +0 0.2553 +0 0.2578 +0 0.4011 +0 0.1878 +0 0.1539 +0 0.0334 +0 0.2346 +0 0.0686 +0 0.1020 +0 0.0718 +0 0.0911 +0 0.0556 +0 0.1558 +0 0.1432 +0 0.1602 +0 0.0609 +0 0.0591 +1 0.7826 +0 0.1944 +0 0.1012 +0 0.0706 +0 0.1021 +0 0.0793 +0 0.0316 +0 0.0594 +0 0.1326 +0 0.1623 +0 0.0523 +0 0.1127 +0 0.0588 +0 0.0805 +0 0.0876 +0 0.0529 +0 0.4113 +0 0.2082 +0 0.1685 +1 0.7742 +0 0.0524 +0 0.0700 +0 0.0848 +0 0.1009 +0 0.1079 +0 0.4766 +0 0.2107 +0 0.2197 +0 0.1212 +0 0.1840 +0 0.3221 +0 0.0871 +0 0.0960 +0 0.1520 +0 0.2535 +0 0.1177 +0 0.0905 +0 0.1063 +0 0.0940 +0 0.0929 +0 0.0927 +0 0.0972 +0 0.0406 +0 0.1617 +0 0.2653 +0 0.1460 +0 0.0655 +0 0.0712 +0 0.0456 +0 0.0359 +1 0.7663 +0 0.2507 +0 0.0839 +0 0.0897 +0 0.1818 +0 0.2128 +0 0.0512 +0 0.0864 +0 0.2536 +0 0.2898 +0 0.1734 +0 0.0693 +0 0.3431 +0 0.6453 +0 0.0875 +0 0.1003 +0 0.6721 +0 0.1822 +0 0.3631 +0 0.0866 +0 0.0826 +0 0.0620 +0 0.0495 +0 0.0691 +0 0.0824 +0 0.0952 +0 0.2750 +0 0.6627 +0 0.2273 +0 0.0589 +0 0.5507 +0 0.4970 +0 0.1304 +0 0.2273 +0 0.0985 +0 0.0660 +0 0.0438 +0 0.0590 +0 0.1324 +1 0.8591 +0 0.1105 +0 0.0745 +0 0.1375 +0 0.0515 +0 0.0478 +0 0.1836 +0 0.0701 +0 0.2146 +0 0.0758 +0 0.0671 +0 0.1446 +0 0.1743 +0 0.0747 +0 0.0585 +0 0.0539 +0 0.2414 +0 0.0997 +0 0.2472 +0 0.0359 +0 0.0716 +0 0.0982 +0 0.1102 +0 0.2545 +0 0.0488 +0 0.0609 +0 0.1341 +0 0.2046 +0 0.6823 +0 0.0643 +0 0.3042 +0 0.1390 +0 0.1498 +0 0.1507 +0 0.5330 +0 0.3282 +0 0.1076 +0 0.3705 +0 0.1065 +0 0.0836 +0 0.1227 +1 0.8337 +0 0.0433 +0 0.1165 +0 0.1005 +0 0.1719 +0 0.1368 +0 0.3035 +0 0.0443 +0 0.1312 +0 0.1316 +0 0.1137 +0 0.0450 +0 0.1120 +1 0.7518 +0 0.1803 +0 0.0670 +0 0.2210 +0 0.0337 +0 0.1923 +0 0.0454 +0 0.0608 +0 0.2257 +0 0.0620 +0 0.2435 +0 0.1930 +0 0.0922 +0 0.0931 +0 0.0764 +0 0.0384 +0 0.2777 +0 0.0927 +0 0.0605 +0 0.1918 +0 0.0838 +0 0.3596 +0 0.2482 +0 0.0711 +0 0.0894 +0 0.1100 +0 0.0679 +0 0.1056 +0 0.0554 +0 0.0379 +0 0.0845 +0 0.3606 +0 0.0721 +0 0.0777 +0 0.0856 +0 0.0815 +0 0.1137 +0 0.0628 +0 0.1669 +0 0.1219 +0 0.1068 +0 0.1956 +0 0.1139 +0 0.1758 +0 0.2670 +0 0.0873 +0 0.1134 +0 0.0654 +0 0.0583 +1 0.8095 +0 0.5567 +0 0.0534 +0 0.0731 +0 0.1730 +0 0.2015 +0 0.0967 +0 0.0416 +0 0.0956 +0 0.0571 +0 0.1723 +0 0.1691 +0 0.2224 +0 0.1185 +0 0.0807 +0 0.1385 +0 0.0655 +0 0.0573 +0 0.1350 +0 0.1485 +0 0.0704 +0 0.0856 +0 0.0598 +0 0.0905 +0 0.1680 +0 0.0405 +0 0.1865 +0 0.0720 +0 0.1225 +0 0.0340 +0 0.0822 +0 0.1085 +0 0.2988 +0 0.2562 +0 0.1030 +0 0.1135 +0 0.1273 +0 0.0710 +0 0.1025 +0 0.1586 +0 0.2328 +0 0.0601 +0 0.0644 +0 0.0740 +0 0.2699 +0 0.0767 +0 0.0651 +0 0.0617 +0 0.2976 +0 0.1027 +0 0.1073 +0 0.5014 +0 0.0346 +0 0.1053 +0 0.1323 +0 0.1028 +0 0.1073 +0 0.1158 +0 0.4749 +1 0.8769 +0 0.0606 +0 0.1632 +0 0.1132 +0 0.2198 +0 0.3950 +0 0.2780 +0 0.0770 +0 0.0957 +0 0.0731 +0 0.6999 +0 0.0894 +0 0.1034 +1 0.8584 +0 0.0721 +0 0.0809 +0 0.0790 +0 0.0786 +0 0.0834 +0 0.0568 +0 0.0434 +0 0.1448 +0 0.1140 +0 0.1834 +0 0.0559 +0 0.1536 +0 0.2003 +0 0.0586 +0 0.2861 +0 0.0626 +0 0.1667 +0 0.0471 +0 0.0762 +0 0.1138 +0 0.0762 +0 0.0911 +0 0.1552 +0 0.0666 +0 0.0682 +0 0.7387 +0 0.1549 +0 0.1539 +0 0.1848 +0 0.2052 +0 0.0706 +0 0.1127 +0 0.0632 +0 0.0776 +0 0.5984 +0 0.0879 +0 0.0489 +0 0.0522 +0 0.0481 +0 0.1189 +0 0.0557 +0 0.0668 +0 0.1904 +0 0.1227 +0 0.0457 +0 0.5549 +0 0.0549 +0 0.0819 +0 0.1751 +0 0.1045 +0 0.0714 +0 0.4441 +0 0.0571 +0 0.1263 +0 0.0684 +0 0.2671 +0 0.0779 +0 0.2855 +0 0.1081 +0 0.0597 +0 0.4286 +0 0.1549 +0 0.2545 +0 0.0504 +0 0.1652 +0 0.1484 +0 0.0661 +0 0.1522 +0 0.0795 +0 0.0653 +0 0.0420 +0 0.0381 +0 0.0996 +0 0.3876 +0 0.1640 +0 0.0693 +0 0.0654 +0 0.0534 +0 0.2530 +0 0.0716 +0 0.1880 +0 0.0631 +0 0.1336 +0 0.0985 +0 0.1435 +0 0.1857 +0 0.0713 +0 0.0377 +0 0.1704 +0 0.1340 +0 0.0624 +0 0.6926 +0 0.1267 +0 0.1468 +0 0.4568 +0 0.6521 +0 0.0782 +0 0.0533 +0 0.1025 +0 0.1370 +0 0.7298 +0 0.0894 +0 0.1169 +0 0.0773 +0 0.4031 +0 0.0738 +0 0.0586 +0 0.0840 +0 0.2098 +0 0.1432 +0 0.0496 +0 0.1380 +0 0.1376 +0 0.0808 +0 0.1251 +0 0.1347 +0 0.1327 +0 0.1298 +0 0.1023 +0 0.2958 +0 0.0848 +0 0.4663 +0 0.3031 +0 0.1381 +0 0.1165 +0 0.0591 +0 0.0892 +0 0.0558 +0 0.0383 +0 0.1331 +0 0.0870 +0 0.0625 +0 0.2037 +0 0.0887 +0 0.0544 +0 0.0752 +0 0.0626 +0 0.2339 +0 0.1635 +0 0.0564 +0 0.0838 +0 0.1270 +0 0.1012 +0 0.4152 +0 0.0499 +0 0.2041 +0 0.1274 +0 0.0505 +0 0.0997 +0 0.1865 +0 0.0479 +0 0.2733 +0 0.0960 +0 0.2133 +0 0.1431 +1 0.8325 +0 0.0470 +0 0.0724 +0 0.1314 +0 0.0464 +0 0.0549 +0 0.1362 +0 0.1362 +0 0.1030 +0 0.1137 +0 0.1075 +0 0.7008 +0 0.1959 +0 0.0883 +0 0.0418 +0 0.2654 +0 0.1102 +0 0.1744 +0 0.0844 +0 0.1155 +0 0.0644 +0 0.1194 +0 0.2328 +0 0.0685 +0 0.0642 +0 0.1636 +0 0.1319 +0 0.0614 +0 0.1067 +0 0.1956 +0 0.0506 +0 0.0451 +0 0.2454 +0 0.1072 +0 0.0663 +0 0.0860 +0 0.1732 +0 0.0485 +0 0.0403 +0 0.1573 +0 0.0741 +0 0.1727 +0 0.1016 +0 0.1181 +0 0.1606 +0 0.7159 +0 0.1224 +0 0.0435 +0 0.0902 +0 0.0826 +0 0.0902 +0 0.2078 +0 0.7265 +0 0.1106 +0 0.1934 +0 0.2712 +0 0.1046 +1 0.7615 +0 0.0690 +0 0.0515 +0 0.1392 +0 0.1460 +0 0.0776 +0 0.0364 +0 0.0923 +0 0.0498 +0 0.2744 +0 0.1189 +0 0.1327 +0 0.2599 +0 0.1104 +0 0.1404 +0 0.0463 +0 0.1079 +0 0.2641 +0 0.0896 +0 0.0525 +0 0.0547 +0 0.1214 +0 0.0761 +0 0.0820 +0 0.0857 +0 0.0781 +0 0.2220 +0 0.1605 +0 0.7455 +0 0.1738 +0 0.1424 +0 0.5420 +0 0.0850 +0 0.0956 +0 0.1389 +0 0.1818 +0 0.0889 +0 0.0646 +0 0.1226 +0 0.1201 +0 0.1907 +0 0.0589 +0 0.2287 +0 0.0488 +0 0.2359 +0 0.5745 +0 0.3303 +0 0.1079 +0 0.1387 +0 0.0599 +0 0.0569 +0 0.1133 +0 0.0775 +0 0.1319 +0 0.0650 +0 0.2015 +0 0.1357 +0 0.0791 +0 0.0624 +0 0.0617 +0 0.0502 +0 0.0585 +0 0.1544 +0 0.1071 +0 0.1768 +0 0.0755 +0 0.0537 +0 0.1627 +0 0.1534 +0 0.0693 +0 0.4030 +0 0.1518 +0 0.0620 +0 0.1092 +0 0.0873 +0 0.0673 +0 0.1065 +0 0.0671 +0 0.0700 +0 0.1030 +0 0.0576 +0 0.0989 +0 0.0748 +0 0.0593 +0 0.1458 +0 0.1320 +0 0.2524 +0 0.0690 +0 0.0652 +0 0.2466 +0 0.0679 +0 0.0674 +0 0.0823 +0 0.5983 +0 0.0965 +0 0.1193 +0 0.1470 +0 0.1012 +0 0.1244 +0 0.2005 +0 0.0796 +0 0.1293 +0 0.0991 +0 0.2896 +0 0.0517 +0 0.1532 +0 0.0512 +0 0.0560 +0 0.2800 +0 0.0483 +0 0.1695 +0 0.1455 +0 0.3598 +0 0.1420 +0 0.0433 +0 0.2375 +0 0.1396 +0 0.0662 +0 0.0358 +0 0.1499 +0 0.0989 +0 0.0828 +0 0.0833 +0 0.1035 +0 0.1240 +0 0.1214 +0 0.2627 +0 0.0857 +0 0.1465 +0 0.6037 +0 0.1005 +0 0.1402 +0 0.2386 +0 0.0600 +0 0.1030 +0 0.1380 +0 0.1145 +0 0.2716 +1 0.7503 +0 0.1011 +0 0.0620 +0 0.1675 +0 0.1808 +0 0.0884 +0 0.1864 +0 0.0645 +0 0.0895 +0 0.1043 +0 0.0373 +0 0.0788 +0 0.0520 +0 0.1031 +0 0.2542 +0 0.0626 +0 0.0967 +0 0.1305 +0 0.0776 +0 0.1799 +0 0.0746 +0 0.0822 +0 0.1191 +0 0.1595 +0 0.4133 +0 0.1015 +0 0.0826 +0 0.0631 +0 0.1126 +0 0.0635 +0 0.0966 +0 0.1251 +0 0.6428 +0 0.0715 +0 0.0432 +0 0.4971 +0 0.1254 +0 0.0590 +0 0.0649 +0 0.1423 +1 0.8288 +0 0.1083 +0 0.0977 +0 0.0979 +0 0.0725 +0 0.3313 +0 0.0696 +0 0.1705 +0 0.0625 +0 0.1359 +0 0.1137 +0 0.1220 +0 0.1317 +0 0.1195 +0 0.1191 +0 0.0602 +0 0.0936 +0 0.2158 +0 0.1305 +0 0.3260 +0 0.5120 +0 0.0902 +0 0.1476 +0 0.0687 +0 0.0686 +0 0.0793 +0 0.1017 +0 0.0978 +0 0.1117 +1 0.7520 +0 0.0747 +0 0.3208 +0 0.1614 +0 0.0644 +0 0.0845 +0 0.1534 +0 0.0927 +0 0.1988 +0 0.0897 +0 0.2082 +0 0.0960 +0 0.0459 +0 0.0898 +0 0.0564 +0 0.0994 +0 0.5365 +0 0.0544 +0 0.4419 +0 0.0730 +0 0.0950 +0 0.1630 +0 0.0916 +0 0.0675 +0 0.0997 +0 0.0840 +0 0.1055 +0 0.0575 +0 0.1096 +0 0.0616 +0 0.1660 +0 0.0965 +0 0.0604 +0 0.0907 +0 0.0928 +0 0.1061 +0 0.1144 +0 0.0575 +0 0.0912 +1 0.7832 +0 0.0971 +0 0.0651 +0 0.0532 +0 0.3147 +0 0.2577 +0 0.1527 +0 0.2659 +0 0.0999 +0 0.1726 +0 0.0817 +0 0.0982 +0 0.0828 +0 0.1131 +1 0.8279 +0 0.1960 +0 0.0589 +0 0.0600 +0 0.0444 +0 0.3176 +0 0.0531 +0 0.1240 +0 0.1804 +0 0.1241 +0 0.1097 +0 0.0844 +0 0.0732 +0 0.1047 +0 0.1165 +0 0.3055 +0 0.1672 +0 0.1779 +0 0.0827 +0 0.0484 +0 0.2223 +0 0.0888 +0 0.4468 +0 0.1498 +0 0.1759 +0 0.1304 +0 0.1545 +0 0.1040 +0 0.0631 +0 0.1311 +0 0.0876 +0 0.0694 +0 0.4143 +0 0.1374 +0 0.4026 +0 0.1462 +0 0.1876 +0 0.1301 +0 0.1945 +0 0.3015 +1 0.8190 +0 0.1116 +0 0.0513 +0 0.0723 +0 0.0536 +0 0.2208 +0 0.0895 +0 0.2064 +0 0.0548 +0 0.2552 +0 0.0994 +0 0.0527 +0 0.0482 +0 0.1268 +0 0.1017 +0 0.0531 +1 0.8357 +0 0.0643 +0 0.1068 +0 0.6447 +0 0.7426 +0 0.0475 +0 0.1112 +0 0.0453 +0 0.1499 +0 0.0414 +0 0.0700 +0 0.1047 +0 0.3247 +0 0.2552 +0 0.1381 +0 0.1100 +0 0.3532 +0 0.2832 +0 0.1491 +0 0.2447 +0 0.2694 +0 0.0993 +0 0.1134 +0 0.0718 +0 0.1031 +0 0.1334 +0 0.0770 +0 0.2092 +1 0.7703 +0 0.0419 +0 0.0939 +0 0.0719 +0 0.1781 +0 0.0547 +0 0.1606 +0 0.2262 +0 0.0362 +0 0.1152 +0 0.0769 +0 0.1422 +0 0.0418 +0 0.0857 +0 0.0459 +0 0.7387 +0 0.0500 +0 0.1619 +0 0.0391 +0 0.5473 +0 0.1365 +0 0.0907 +0 0.1181 +0 0.0836 +0 0.0622 +0 0.1187 +0 0.3465 +0 0.1842 +1 0.7873 +0 0.2082 +0 0.0443 +0 0.0422 +0 0.0930 +0 0.0691 +0 0.1454 +0 0.0721 +0 0.1754 +0 0.2360 +0 0.1257 +0 0.0538 +0 0.0640 +0 0.6738 +0 0.0602 +0 0.0949 +0 0.1070 +0 0.0520 +0 0.0687 +0 0.1665 +0 0.2159 +0 0.1330 +0 0.0604 +0 0.0812 +0 0.0960 +0 0.1629 +0 0.0865 +0 0.0610 +0 0.1401 +0 0.1654 +0 0.1257 +0 0.1056 +0 0.0440 +0 0.1075 +0 0.1690 +0 0.3459 +0 0.0544 +0 0.0961 +0 0.0699 +0 0.0495 +0 0.0447 +0 0.0426 +0 0.1381 +0 0.1007 +0 0.1467 +0 0.0916 +0 0.0450 +0 0.1667 +0 0.1213 +0 0.0654 +0 0.0425 +0 0.1814 +1 0.8113 +0 0.1732 +0 0.1448 +0 0.1185 +0 0.0503 +0 0.0819 +0 0.1207 +0 0.4174 +0 0.0678 +0 0.0448 +0 0.0853 +0 0.5162 +0 0.2848 +0 0.1046 +0 0.0753 +0 0.1019 +0 0.3845 +0 0.0422 +0 0.0640 +0 0.0566 +0 0.0503 +0 0.0623 +0 0.0907 +0 0.1453 +0 0.0872 +0 0.0847 +0 0.3078 +0 0.0679 +0 0.0433 +0 0.0994 +0 0.1761 +0 0.0757 +0 0.1139 +0 0.2760 +0 0.0844 +0 0.0681 +0 0.0967 +0 0.0851 +0 0.0700 +0 0.1403 +0 0.0324 +0 0.0618 +0 0.0404 +0 0.4246 +0 0.0821 +0 0.1768 +0 0.0928 +0 0.0861 +0 0.0663 +0 0.0847 +0 0.2022 +1 0.7809 +0 0.2154 +0 0.0694 +0 0.1564 +0 0.1100 +0 0.0699 +0 0.1318 +0 0.1457 +0 0.1060 +0 0.0973 +0 0.0862 +0 0.1887 +0 0.0999 +0 0.1105 +0 0.1135 +0 0.0491 +0 0.0633 +0 0.1103 +0 0.1546 +0 0.1280 +0 0.1842 +0 0.1182 +0 0.0968 +0 0.1214 +0 0.0496 +0 0.0533 +0 0.4086 +0 0.0796 +0 0.0628 +0 0.2156 +0 0.2180 +0 0.0563 +0 0.0936 +0 0.2520 +0 0.0912 +0 0.1160 +0 0.0443 +0 0.5330 +0 0.3180 +0 0.1654 +0 0.2680 +0 0.0787 +0 0.1415 +0 0.0548 +0 0.0871 +0 0.0912 +0 0.2366 +0 0.3273 +0 0.0603 +0 0.7018 +0 0.0558 +0 0.0750 +0 0.2480 +0 0.0811 +0 0.1916 +0 0.4973 +0 0.0561 +0 0.3543 +0 0.0607 +0 0.1287 +0 0.0605 +0 0.0754 +0 0.1284 +0 0.0880 +0 0.1518 +0 0.3860 +0 0.0637 +0 0.0640 +0 0.2023 +0 0.6063 +0 0.0495 +0 0.1780 +0 0.4251 +0 0.1602 +0 0.1669 +0 0.0955 +0 0.1146 +0 0.1223 +0 0.0614 +0 0.0517 +0 0.2350 +0 0.0510 +0 0.0842 +0 0.0760 +0 0.0869 +0 0.0744 +0 0.0598 +0 0.0575 +0 0.4956 +0 0.2255 +0 0.0590 +0 0.1020 +0 0.2462 +0 0.1774 +0 0.0822 +0 0.7026 +0 0.0724 +0 0.2377 +0 0.6738 +0 0.1950 +0 0.0348 +0 0.0911 +0 0.0680 +0 0.1306 +0 0.0598 +0 0.1441 +0 0.0763 +0 0.0847 +0 0.2977 +0 0.1071 +0 0.0736 +0 0.1034 +0 0.2885 +0 0.7285 +0 0.1672 +0 0.1201 +0 0.1391 +0 0.0346 +0 0.0655 +0 0.1504 +0 0.0767 +0 0.1857 +0 0.1273 +0 0.2359 +0 0.1323 +0 0.1520 +0 0.0793 +0 0.2486 +0 0.0563 +0 0.1446 +0 0.7287 +0 0.0563 +0 0.2183 +0 0.0811 +0 0.2261 +0 0.1999 +0 0.1291 +0 0.0871 +0 0.0796 +1 0.8315 +0 0.0969 +0 0.0579 +0 0.0435 +0 0.1093 +0 0.2476 +0 0.3284 +0 0.0729 +0 0.1465 +0 0.0995 +0 0.0418 +0 0.1587 +0 0.2224 +0 0.1819 +0 0.0768 +0 0.0619 +0 0.0908 +0 0.1280 +0 0.0826 +0 0.1790 +0 0.1420 +0 0.1017 +0 0.2013 +0 0.2130 +0 0.2448 +0 0.3343 +0 0.0779 +0 0.2599 +0 0.2250 +0 0.1372 +0 0.1388 +0 0.0955 +0 0.2045 +0 0.1667 +0 0.0966 +0 0.1716 +0 0.2422 +0 0.4192 +0 0.0517 +0 0.1739 +0 0.2453 +0 0.0848 +0 0.6213 +0 0.0944 +0 0.1319 +0 0.1382 +0 0.1234 +0 0.1171 +0 0.1786 +0 0.4328 +0 0.0780 +0 0.0890 +0 0.0512 +0 0.1522 +1 0.8327 +0 0.0600 +0 0.0471 +0 0.0861 +0 0.1226 +0 0.1028 +0 0.3412 +0 0.1088 +0 0.0518 +0 0.2356 +0 0.0868 +0 0.1447 +0 0.1943 +0 0.1052 +0 0.0462 +0 0.0997 +0 0.1240 +0 0.1964 +0 0.0671 +0 0.0786 +0 0.1609 +0 0.2960 +0 0.2333 +0 0.0358 +0 0.4297 +0 0.1542 +0 0.1128 +0 0.0667 +0 0.1626 +0 0.1888 +0 0.0643 +0 0.0494 +0 0.0960 +0 0.0921 +0 0.1901 +0 0.1006 +0 0.0603 +0 0.0759 +0 0.1084 +0 0.0738 +0 0.0838 +0 0.0703 +0 0.1627 +0 0.0666 +0 0.1530 +0 0.2165 +0 0.1573 +0 0.1360 +0 0.2922 +0 0.0731 +0 0.0807 +0 0.0789 +0 0.1542 +0 0.1219 +0 0.0790 +0 0.0719 +0 0.0942 +0 0.0812 +0 0.1078 +0 0.0788 +0 0.4235 +0 0.1713 +0 0.1700 +0 0.7272 +0 0.1868 +0 0.1342 +0 0.0882 +0 0.2604 +0 0.0750 +0 0.3504 +0 0.1486 +0 0.1970 +0 0.1688 +0 0.0779 +0 0.1077 +0 0.0949 +0 0.0747 +0 0.0718 +0 0.0573 +0 0.2181 +0 0.0655 +0 0.0717 +0 0.0688 +1 0.7505 +0 0.3904 +0 0.1976 +0 0.1445 +0 0.1555 +0 0.1805 +0 0.3615 +0 0.0648 +0 0.0868 +0 0.0760 +0 0.1184 +0 0.0762 +0 0.0303 +0 0.0567 +0 0.1117 +0 0.1440 +0 0.1382 +0 0.0489 +0 0.2605 +0 0.0839 +0 0.4841 +0 0.1304 +0 0.1908 +0 0.1233 +0 0.0597 +0 0.0419 +0 0.1081 +0 0.2802 +0 0.0855 +0 0.0667 +0 0.5636 +0 0.1451 +0 0.0754 +0 0.2024 +0 0.1607 +0 0.1364 +0 0.1847 +0 0.0727 +0 0.1996 +0 0.0454 +0 0.0936 +0 0.3845 +0 0.1290 +0 0.0343 +0 0.0923 +0 0.1398 +0 0.0401 +0 0.1085 +0 0.1293 +0 0.0764 +0 0.2834 +0 0.0460 +0 0.0597 +0 0.0859 +0 0.0694 +0 0.0689 +0 0.0647 +0 0.3368 +0 0.0761 +0 0.3226 +0 0.0657 +0 0.1792 +0 0.0543 +0 0.1852 +0 0.0373 +0 0.1110 +0 0.1065 +0 0.1945 +0 0.1267 +0 0.0311 +0 0.1106 +0 0.1671 +0 0.1431 +0 0.0482 +0 0.1894 +0 0.0408 +0 0.4166 +0 0.1378 +0 0.1374 +0 0.2210 +0 0.0923 +0 0.0816 +0 0.0888 +0 0.5363 +0 0.2065 +0 0.1600 +0 0.0735 +0 0.0969 +0 0.0529 +0 0.1102 +0 0.3741 +0 0.2576 +0 0.0608 +0 0.0808 +0 0.0976 +0 0.0614 +0 0.1515 +0 0.1204 +0 0.1739 +0 0.0367 +0 0.2512 +0 0.1054 +0 0.1399 +0 0.0678 +0 0.1417 +0 0.0799 +0 0.1011 +0 0.1000 +0 0.1394 +0 0.1037 +0 0.0317 +0 0.0553 +0 0.1232 +0 0.1640 +0 0.4332 +0 0.0991 +0 0.0970 +0 0.2037 +0 0.3048 +0 0.0853 +0 0.0752 +0 0.3302 +0 0.0976 +0 0.0985 +0 0.0794 +0 0.6027 +0 0.0687 +0 0.0380 +0 0.0872 +0 0.2372 +0 0.0730 +0 0.0732 +0 0.0731 +0 0.1040 +0 0.1471 +0 0.1441 +0 0.2050 +0 0.0543 +0 0.0639 +0 0.1394 +0 0.1194 +0 0.0985 +0 0.1320 +0 0.1564 +0 0.2466 +0 0.1021 +0 0.0456 +0 0.0474 +0 0.1253 +0 0.0392 +0 0.1071 +0 0.1414 +0 0.0924 +0 0.3778 +0 0.0797 +0 0.1274 +0 0.3893 +0 0.0642 +0 0.0917 +0 0.1399 +0 0.1160 +0 0.0681 +0 0.0625 +0 0.0371 +0 0.0384 +0 0.0916 +0 0.0508 +0 0.0790 +0 0.1207 +0 0.0376 +0 0.1121 +0 0.3629 +0 0.0921 +0 0.0735 +0 0.1334 +0 0.0410 +0 0.0903 +0 0.0581 +0 0.0958 +0 0.0893 +0 0.3206 +0 0.0640 +0 0.1420 +0 0.0833 +0 0.1024 +0 0.2235 +0 0.0934 +0 0.1666 +0 0.0529 +0 0.0723 +0 0.1108 +0 0.0554 +0 0.0663 +0 0.0704 +0 0.1267 +0 0.1035 +0 0.0824 +0 0.1218 +0 0.0673 +0 0.1059 +0 0.0736 +0 0.1047 +0 0.1033 +0 0.3286 +0 0.1305 +0 0.1155 +0 0.0751 +0 0.1242 +0 0.1247 +0 0.0701 +0 0.0878 +0 0.1542 +0 0.2200 +0 0.1065 +0 0.1090 +0 0.2360 +0 0.0894 +0 0.0865 +0 0.0913 +0 0.0885 +0 0.2808 +0 0.0463 +0 0.3488 +0 0.1726 +0 0.1054 +0 0.0872 +0 0.1135 +0 0.1474 +0 0.0771 +0 0.0993 +0 0.1716 +1 0.7812 +0 0.1021 +0 0.0418 +0 0.1759 +0 0.1175 +0 0.0699 +0 0.2225 +0 0.2468 +0 0.0715 +0 0.0814 +0 0.0767 +0 0.0927 +0 0.2601 +0 0.0557 +0 0.0554 +0 0.0546 +0 0.2104 +0 0.0812 +0 0.1313 +0 0.1670 +0 0.5995 +0 0.0580 +0 0.2119 +0 0.0786 +0 0.1388 +0 0.1085 +0 0.3170 +1 0.8085 +0 0.0792 +0 0.1174 +0 0.1003 +0 0.1196 +0 0.0439 +0 0.0944 +0 0.1209 +0 0.0689 +0 0.0865 +0 0.0534 +0 0.1867 +0 0.0776 +0 0.2631 +0 0.5700 +0 0.2502 +0 0.1411 +0 0.0435 +0 0.4278 +0 0.1023 +0 0.2586 +0 0.1508 +0 0.0815 +0 0.1235 +0 0.1000 +0 0.2613 +0 0.1398 +0 0.1571 +0 0.3039 +0 0.0698 +0 0.1819 +0 0.0752 +0 0.1896 +0 0.0696 +0 0.1897 +0 0.1601 +0 0.0650 +0 0.0872 +0 0.1000 +0 0.0986 +0 0.0651 +0 0.1892 +0 0.0763 +0 0.0488 +0 0.1996 +0 0.0805 +0 0.1678 +0 0.1106 +0 0.0570 +0 0.1107 +0 0.0453 +0 0.0825 +0 0.1280 +0 0.0638 +0 0.0959 +0 0.0941 +0 0.0748 +0 0.0777 +0 0.1719 +0 0.0688 +0 0.1695 +0 0.0607 +0 0.2827 +0 0.1205 +0 0.1242 +0 0.3985 +0 0.0692 +0 0.1325 +0 0.1165 +0 0.3790 +0 0.0569 +0 0.1251 +0 0.0749 +0 0.0743 +0 0.2428 +0 0.0986 +0 0.6078 +0 0.0340 +0 0.1234 +0 0.1640 +0 0.1143 +0 0.0780 +0 0.4308 +0 0.1358 +0 0.0738 +0 0.0911 +0 0.0577 +0 0.1369 +0 0.1414 +0 0.2275 +0 0.0521 +0 0.0718 +0 0.1909 +0 0.3408 +0 0.0736 +1 0.8773 +0 0.2610 +0 0.0657 +0 0.0557 +0 0.1330 +0 0.1490 +0 0.1075 +0 0.2505 +0 0.1038 +0 0.0512 +0 0.1240 +0 0.1127 +0 0.1295 +0 0.2671 +0 0.1345 +0 0.1513 +0 0.2010 +0 0.0754 +0 0.0974 +0 0.1082 +0 0.2139 +0 0.0933 +0 0.1332 +0 0.0885 +0 0.0922 +0 0.1079 +0 0.0580 +0 0.0903 +0 0.1634 +0 0.3118 +0 0.5244 +0 0.0855 +1 0.7587 +0 0.1459 +0 0.1057 +0 0.0854 +0 0.1598 +0 0.3835 +0 0.1530 +0 0.1011 +0 0.1670 +0 0.0617 +0 0.2968 +0 0.0622 +0 0.2656 +0 0.0476 +0 0.0753 +0 0.0506 +0 0.0654 +0 0.0287 +0 0.1060 +0 0.6180 +0 0.0571 +0 0.2782 +0 0.2613 +0 0.1627 +0 0.0413 +0 0.2857 +0 0.1865 +0 0.0861 +0 0.2145 +0 0.0524 +0 0.1453 +0 0.1117 +0 0.1842 +0 0.1311 +0 0.1082 +0 0.1550 +0 0.7324 +0 0.0485 +0 0.1600 +0 0.0834 +0 0.0701 +0 0.2260 +0 0.1125 +0 0.0671 +0 0.0743 +0 0.0788 +0 0.0948 +0 0.0769 +0 0.0949 +0 0.2302 +0 0.0646 +0 0.0789 +0 0.1518 +0 0.0740 +0 0.1983 +0 0.0622 +0 0.1043 +0 0.6784 +0 0.0656 +0 0.2377 +0 0.0435 +0 0.0942 +0 0.0691 +0 0.0357 +0 0.4103 +0 0.0634 +0 0.0345 +0 0.0776 +0 0.0901 +0 0.3833 +0 0.5105 +0 0.1404 +0 0.2500 +0 0.0660 +0 0.3585 +0 0.1211 +0 0.2617 +0 0.0872 +0 0.1403 +0 0.1029 +0 0.0878 +0 0.0531 +0 0.0486 +0 0.1328 +0 0.0922 +0 0.0803 +0 0.1291 +0 0.0565 +0 0.2535 +0 0.3212 +0 0.1680 +0 0.4936 +0 0.1164 +0 0.0398 +0 0.0806 +0 0.1864 +0 0.1678 +0 0.0543 +0 0.0744 +0 0.1784 +0 0.0935 +0 0.0485 +0 0.1566 +0 0.2041 +0 0.0403 +0 0.0666 +0 0.0360 +0 0.0700 +0 0.0817 +0 0.1019 +0 0.1257 +0 0.0535 +0 0.4264 +0 0.1526 +0 0.0585 +0 0.1422 +0 0.0882 +0 0.0286 +0 0.2434 +0 0.0733 +0 0.1530 +0 0.3028 +0 0.5977 +0 0.3210 +0 0.1099 +1 0.8300 +0 0.2094 +0 0.0663 +0 0.1236 +0 0.0496 +0 0.2581 +0 0.0733 +0 0.0741 +0 0.2989 +1 0.8010 +0 0.0662 +0 0.1232 +0 0.1403 +0 0.0674 +0 0.2029 +0 0.1138 +0 0.0503 +0 0.1017 +0 0.6206 +0 0.1119 +0 0.1243 +0 0.0801 +0 0.1585 +0 0.6607 +0 0.0628 +0 0.1935 +0 0.0474 +0 0.0421 +0 0.1661 +0 0.1026 +0 0.1324 +0 0.0802 +0 0.0586 +0 0.0452 +0 0.1265 +0 0.0894 +0 0.1050 +0 0.0774 +0 0.0950 +0 0.1256 +0 0.1334 +0 0.1084 +0 0.0680 +0 0.1802 +0 0.2073 +0 0.0467 +0 0.1357 +0 0.1688 +0 0.0380 +0 0.1439 +0 0.1455 +0 0.0644 +0 0.0350 +0 0.6443 +0 0.0427 +0 0.0593 +1 0.8433 +0 0.1144 +0 0.0740 +0 0.1550 +0 0.0435 +0 0.1849 +0 0.0726 +0 0.1177 +0 0.1955 +0 0.3738 +0 0.1328 +0 0.7481 +0 0.2256 +0 0.0400 +0 0.0676 +0 0.0813 +0 0.2201 +0 0.0597 +0 0.1004 +0 0.0814 +0 0.0446 +0 0.0861 +0 0.0422 +0 0.1917 +0 0.0778 +0 0.0720 +0 0.1000 +0 0.6446 +0 0.0764 +0 0.1155 +0 0.0591 +0 0.3450 +0 0.2016 +0 0.0976 +0 0.0469 +0 0.1479 +0 0.2838 +0 0.2025 +0 0.2116 +0 0.2258 +0 0.0809 +0 0.3000 +0 0.1014 +0 0.0397 +0 0.4819 +0 0.1210 +0 0.0594 +0 0.1644 +0 0.0919 +0 0.1333 +0 0.2769 +0 0.1856 +0 0.0696 +0 0.0803 +0 0.0969 +0 0.1401 +0 0.0718 +0 0.0656 +0 0.0718 +0 0.1084 +0 0.0539 +0 0.1610 +0 0.0438 +0 0.1035 +0 0.0605 +0 0.0680 +0 0.0884 +0 0.1699 +0 0.0936 +0 0.1492 +0 0.2608 +0 0.0715 +0 0.2482 +0 0.3632 +0 0.0742 +0 0.3564 +0 0.2518 +0 0.1479 +0 0.1028 +0 0.0989 +0 0.0905 +0 0.1534 +0 0.0783 +0 0.1400 +0 0.4513 +0 0.0619 +0 0.1172 +0 0.0967 +0 0.0924 +0 0.0631 +0 0.1098 +0 0.1162 +0 0.1245 +0 0.0452 +0 0.0741 +0 0.1217 +0 0.0801 +0 0.0561 +0 0.2157 +0 0.0589 +0 0.0779 +0 0.0995 +0 0.0968 +0 0.1397 +0 0.1146 +0 0.0602 +0 0.0514 +0 0.0518 +0 0.0360 +0 0.0649 +0 0.0546 +0 0.0650 +0 0.1801 +0 0.0749 +0 0.0803 +0 0.5430 +0 0.3167 +0 0.0820 +0 0.6569 +0 0.0649 +0 0.1262 +0 0.2002 +0 0.2480 +0 0.1563 +0 0.1529 +0 0.1173 +0 0.1854 +0 0.1261 +0 0.1652 +0 0.0636 +0 0.0707 +0 0.1926 +0 0.1410 +0 0.0551 +0 0.1114 +0 0.0426 +0 0.1327 +0 0.0814 +0 0.0670 +0 0.1213 +0 0.5615 +0 0.0383 +0 0.1259 +0 0.2614 +0 0.0877 +0 0.0610 +0 0.0717 +0 0.0449 +0 0.0927 +0 0.0923 +0 0.1646 +0 0.1053 +0 0.1743 +0 0.0712 +0 0.2188 +0 0.1103 +0 0.1818 +0 0.2019 +0 0.1367 +0 0.4830 +0 0.2115 +0 0.1009 +0 0.1529 +0 0.1103 +0 0.0399 +0 0.2151 +0 0.1486 +0 0.0755 +0 0.1108 +0 0.1463 +0 0.0437 +0 0.1792 +0 0.5424 +0 0.2923 +0 0.0825 +0 0.1851 +0 0.0895 +0 0.0572 +0 0.3189 +0 0.1873 +0 0.2936 +0 0.1456 +0 0.2082 +0 0.0492 +0 0.1978 +0 0.1701 +0 0.1457 +0 0.1116 +0 0.0552 +0 0.2638 +0 0.0789 +0 0.0627 +0 0.0508 +0 0.2168 +0 0.1668 +0 0.0870 +0 0.1510 +0 0.6242 +0 0.0947 +0 0.0999 +0 0.0839 +0 0.1648 +0 0.0973 +0 0.1005 +0 0.1633 +0 0.2280 +0 0.1206 +0 0.1250 +0 0.1557 +0 0.0937 +0 0.1705 +0 0.1444 +0 0.1456 +0 0.0643 +0 0.1063 +0 0.0790 +0 0.0898 +0 0.0903 +0 0.0986 +0 0.3548 +0 0.1195 +0 0.2119 +0 0.0478 +0 0.0992 +0 0.3334 +0 0.0999 +0 0.1192 +1 0.8571 +0 0.0608 +0 0.0661 +0 0.1604 +0 0.1369 +0 0.2136 +0 0.0911 +0 0.0431 +0 0.0881 +0 0.0772 +0 0.1996 +0 0.1328 +0 0.0504 +0 0.0880 +0 0.3693 +0 0.1044 +0 0.0493 +0 0.0541 +0 0.1733 +0 0.1137 +0 0.0963 +0 0.1187 +0 0.1510 +0 0.0497 +0 0.0975 +0 0.1944 +0 0.1110 +0 0.2244 +0 0.0870 +0 0.3129 +0 0.1329 +0 0.2084 +0 0.1044 +0 0.0729 +0 0.0807 +0 0.3117 +0 0.1680 +0 0.1544 +0 0.0877 +0 0.1686 +0 0.7467 +0 0.1801 +0 0.1036 +0 0.0721 +0 0.0799 +0 0.0561 +0 0.0525 +0 0.0643 +0 0.2658 +0 0.0942 +0 0.0933 +0 0.1788 +0 0.0560 +0 0.0474 +0 0.0600 +0 0.1055 +0 0.0630 +0 0.0454 +0 0.1075 +0 0.0797 +0 0.0944 +0 0.7319 +0 0.0992 +0 0.1280 +0 0.0502 +0 0.0997 +0 0.3634 +0 0.0975 +0 0.0700 +1 0.8544 +0 0.1320 +0 0.0563 +0 0.2918 +0 0.0455 +0 0.0648 +0 0.0906 +0 0.1474 +0 0.1440 +0 0.1116 +0 0.0419 +0 0.1074 +0 0.1288 +0 0.1398 +0 0.1355 +0 0.0774 +0 0.0974 +0 0.1010 +0 0.0806 +0 0.1249 +0 0.0664 +0 0.0733 +0 0.0517 +0 0.1330 +0 0.1467 +0 0.1493 +0 0.0559 +0 0.2855 +0 0.1004 +0 0.0897 +0 0.3007 +0 0.2311 +0 0.2334 +0 0.0315 +0 0.0376 +0 0.1182 +0 0.1837 +0 0.1682 +0 0.6475 +0 0.2387 +0 0.0664 +0 0.1617 +0 0.1652 +0 0.1292 +0 0.0914 +0 0.0441 +0 0.0725 +0 0.1575 +0 0.0679 +0 0.0755 +0 0.0602 +0 0.0845 +0 0.0849 +0 0.0651 +0 0.1879 +0 0.0554 +0 0.1379 +1 0.8375 +0 0.0651 +0 0.1538 +0 0.1030 +0 0.0428 +0 0.1488 +0 0.1202 +0 0.1223 +0 0.1038 +0 0.1288 +0 0.0659 +0 0.2698 +0 0.0853 +0 0.1811 +0 0.2171 +0 0.1899 +0 0.0914 +0 0.1230 +0 0.0421 +0 0.1026 +0 0.2756 +0 0.1265 +0 0.0722 +0 0.1694 +0 0.0756 +0 0.2058 +0 0.1134 +0 0.1717 +0 0.2382 +0 0.1464 +0 0.0870 +0 0.0786 +0 0.1323 +0 0.3206 +0 0.1369 +0 0.0638 +0 0.1840 +0 0.1205 +0 0.2113 +0 0.0870 +0 0.0960 +0 0.0492 +0 0.0973 +0 0.2835 +0 0.2283 +0 0.0871 +0 0.0817 +0 0.1049 +0 0.0768 +0 0.0976 +0 0.6993 +0 0.1473 +0 0.0813 +0 0.0573 +0 0.1389 +0 0.1015 +0 0.1750 +0 0.0861 +0 0.0342 +0 0.0566 +0 0.1754 +0 0.0715 +0 0.1350 +0 0.2052 +0 0.1141 +0 0.0715 +0 0.2522 +0 0.0847 +0 0.2218 +0 0.1287 +0 0.1886 +0 0.1080 +0 0.0837 +0 0.0657 +0 0.1783 +0 0.1466 +0 0.0877 +0 0.1064 +0 0.0641 +0 0.1627 +0 0.0398 +0 0.1109 +0 0.2187 +0 0.2414 +0 0.1847 +0 0.1928 +0 0.0328 +0 0.0424 +0 0.1643 +0 0.1488 +0 0.0833 +0 0.1398 +0 0.3621 +0 0.1170 +0 0.0567 +0 0.0480 +0 0.0624 +0 0.1254 +0 0.1977 +0 0.1201 +0 0.3320 +0 0.1359 +0 0.1194 +0 0.1063 +0 0.1305 +0 0.0809 +1 0.8383 +0 0.0866 +0 0.0842 +0 0.1055 +0 0.1269 +0 0.1240 +0 0.3360 +0 0.0782 +0 0.0898 +0 0.0804 +0 0.0624 +0 0.1152 +0 0.1069 +0 0.1271 +0 0.1627 +0 0.0875 +0 0.0474 +0 0.1035 +0 0.1673 +0 0.1624 +0 0.0834 +0 0.0702 +0 0.0678 +0 0.0455 +0 0.4597 +0 0.2141 +0 0.1573 +0 0.1270 +0 0.0794 +0 0.1106 +0 0.3481 +0 0.0902 +0 0.1238 +0 0.1437 +0 0.0464 +0 0.1060 +0 0.0987 +0 0.0823 +0 0.0497 +0 0.2575 +0 0.0785 +0 0.0926 +0 0.1323 +0 0.1306 +0 0.2876 +0 0.0861 +0 0.6759 +0 0.0905 +0 0.1087 +0 0.2045 +0 0.1340 +0 0.0716 +0 0.1630 +0 0.0933 +0 0.1253 +0 0.1816 +0 0.0912 +0 0.0588 +0 0.0909 +0 0.0769 +0 0.1076 +0 0.1075 +0 0.0732 +0 0.0501 +0 0.1063 +0 0.0908 +0 0.0887 +0 0.4653 +0 0.0842 +0 0.1499 +0 0.0611 +0 0.2165 +0 0.0518 +0 0.1294 +0 0.2543 +0 0.1736 +0 0.1545 +0 0.1703 +0 0.0481 +0 0.5909 +0 0.0555 +0 0.0651 +0 0.0365 +0 0.0695 +0 0.0939 +0 0.1191 +0 0.0787 +0 0.1337 +0 0.2919 +0 0.0815 +0 0.1329 +0 0.2084 +0 0.1539 +0 0.0665 +0 0.0633 +0 0.2413 +0 0.0467 +0 0.0679 +0 0.6220 +0 0.0632 +0 0.2650 +0 0.0564 +0 0.0853 +0 0.0586 +0 0.1029 +0 0.0608 +0 0.1463 +0 0.0601 +0 0.3658 +0 0.2201 +0 0.0647 +0 0.4505 +0 0.0963 +0 0.1318 +0 0.1652 +0 0.0433 +0 0.2422 +0 0.1099 +0 0.0715 +0 0.1420 +0 0.2216 +0 0.0620 +0 0.0608 +0 0.4626 +0 0.1345 +0 0.0783 +0 0.0860 +0 0.0990 +0 0.2958 +0 0.0679 +0 0.0641 +0 0.2355 +0 0.1452 +0 0.0655 +0 0.1714 +0 0.0502 +0 0.0712 +0 0.2902 +0 0.1352 +0 0.1176 +0 0.0862 +0 0.0740 +0 0.1172 +0 0.1174 +0 0.0674 +0 0.0507 +0 0.1545 +0 0.1345 +0 0.1944 +0 0.1323 +0 0.1452 +0 0.0926 +0 0.3550 +0 0.0704 +0 0.0402 +0 0.1043 +0 0.3970 +0 0.0409 +0 0.0895 +0 0.1154 +0 0.3998 +0 0.1167 +0 0.0454 +0 0.1203 +0 0.0583 +0 0.0698 +0 0.1389 +0 0.0575 +0 0.1086 +0 0.1478 +0 0.0456 +0 0.0856 +0 0.0639 +0 0.1544 +0 0.1245 +0 0.0615 +0 0.3833 +0 0.2680 +0 0.0985 +0 0.0953 +0 0.0733 +0 0.0724 +0 0.1606 +0 0.1246 +0 0.1371 +0 0.2289 +0 0.6972 +0 0.0922 +0 0.0651 +0 0.0913 +0 0.1750 +0 0.1337 +0 0.7099 +0 0.0686 +0 0.1574 +0 0.1276 +0 0.1363 +0 0.0684 +0 0.1724 +0 0.0781 +0 0.0791 +0 0.0695 +0 0.0901 +0 0.0348 +0 0.1198 +0 0.0976 +0 0.1776 +0 0.0515 +0 0.3501 +0 0.0501 +0 0.7000 +0 0.1650 +0 0.1218 +0 0.6559 +0 0.2300 +0 0.0439 +0 0.1679 +0 0.1280 +0 0.0657 +0 0.1054 +0 0.7174 +0 0.1652 +0 0.0519 +0 0.0394 +0 0.0659 +0 0.2960 +0 0.0987 +0 0.0917 +0 0.2521 +0 0.0944 +0 0.0987 +0 0.2446 +0 0.0635 +0 0.1474 +0 0.1799 +0 0.0728 +1 0.8392 +0 0.2246 +0 0.1067 +0 0.0736 +0 0.0893 +0 0.1669 +0 0.1580 +0 0.0883 +0 0.0876 +0 0.0410 +0 0.1473 +0 0.1393 +0 0.1836 +0 0.0787 +0 0.0467 +0 0.6323 +0 0.1349 +0 0.1531 +0 0.0605 +0 0.0965 +0 0.0719 +0 0.1020 +0 0.1753 +0 0.0943 +0 0.0969 +0 0.2512 +0 0.0700 +0 0.1225 +0 0.2191 +0 0.0791 +0 0.0767 +0 0.3989 +0 0.0877 +0 0.1122 +0 0.0755 +0 0.0794 +0 0.1637 +0 0.0329 +0 0.1749 +0 0.1777 +0 0.1995 +1 0.8048 +0 0.0991 +0 0.3116 +0 0.4130 +0 0.2447 +0 0.1027 +0 0.5741 +0 0.0808 +0 0.1824 +0 0.3598 +0 0.1870 +0 0.1151 +0 0.1148 +0 0.1177 +0 0.0645 +0 0.2317 +0 0.1799 +0 0.0615 +0 0.1343 +0 0.1104 +0 0.0965 +0 0.2102 +0 0.0794 +0 0.1370 +0 0.0581 +0 0.0834 +0 0.1010 +0 0.0746 +0 0.0551 +0 0.0761 +0 0.0876 +0 0.0696 +0 0.1576 +0 0.0501 +0 0.1555 +0 0.1435 +0 0.1782 +0 0.0979 +0 0.2632 +0 0.1815 +0 0.0404 +0 0.1899 +0 0.1301 +0 0.0881 +0 0.0629 +0 0.0665 +0 0.1142 +0 0.0647 +0 0.0982 +0 0.0699 +0 0.1912 +0 0.1664 +0 0.1455 +0 0.0705 +0 0.0371 +0 0.0823 +0 0.2049 +0 0.0913 +0 0.1591 +0 0.2068 +0 0.1875 +0 0.1183 +0 0.0729 +0 0.2916 +0 0.0868 +0 0.0645 +0 0.2986 +0 0.0671 +0 0.0765 +0 0.2994 +0 0.0581 +0 0.0928 +0 0.2760 +0 0.0645 +0 0.1140 +0 0.1172 +0 0.0432 +0 0.1109 +0 0.1207 +0 0.1195 +0 0.1390 +0 0.1274 +0 0.1363 +0 0.1046 +0 0.5643 +0 0.1603 +0 0.1597 +0 0.1093 +0 0.0884 +0 0.1260 +0 0.1329 +0 0.1675 +0 0.4117 +0 0.0758 +0 0.0910 +0 0.0450 +0 0.2823 +0 0.0915 +0 0.1410 +0 0.0565 +0 0.0552 +0 0.1075 +0 0.0671 +0 0.0832 +0 0.1483 +0 0.1548 +0 0.0566 +0 0.6564 +0 0.0535 +0 0.0725 +0 0.4139 +0 0.2454 +0 0.1601 +1 0.8193 +0 0.0402 +0 0.1523 +0 0.1166 +0 0.2315 +0 0.0803 +0 0.0624 +0 0.2109 +0 0.0613 +0 0.1009 +0 0.1538 +0 0.1337 +0 0.3582 +0 0.2972 +0 0.0928 +0 0.0960 +0 0.1284 +0 0.0860 +0 0.2089 +0 0.0648 +0 0.2999 +0 0.1465 +0 0.1339 +0 0.1325 +0 0.2341 +1 0.7938 +0 0.1146 +0 0.0456 +0 0.0739 +0 0.6674 +0 0.1823 +0 0.1205 +0 0.1021 +0 0.0651 +0 0.0735 +0 0.0929 +0 0.2308 +0 0.0798 +0 0.0674 +0 0.2606 +0 0.1990 +0 0.1611 +1 0.8801 +0 0.0398 +0 0.1463 +0 0.2274 +0 0.2192 +0 0.0752 +0 0.0632 +0 0.1263 +0 0.0811 +0 0.1309 +0 0.0911 +0 0.1962 +0 0.1264 +0 0.1062 +0 0.1178 +0 0.0594 +0 0.0513 +0 0.0440 +0 0.1901 +0 0.0797 +0 0.0511 +0 0.1930 +0 0.0914 +0 0.0935 +0 0.0457 +0 0.0690 +0 0.1497 +0 0.0935 +0 0.1817 +0 0.3773 +0 0.2786 +0 0.7268 +0 0.0550 +0 0.2448 +0 0.1018 +0 0.0556 +0 0.1262 +0 0.2884 +0 0.0542 +0 0.0773 +0 0.0397 +0 0.0638 +0 0.1270 +0 0.3211 +0 0.1288 +0 0.0780 +0 0.1313 +0 0.1677 +0 0.0937 +0 0.4148 +0 0.1033 +0 0.6660 +0 0.0913 +0 0.1037 +0 0.1153 +0 0.0431 +0 0.2160 +0 0.1823 +0 0.1308 +0 0.1483 +0 0.2206 +0 0.1987 +0 0.1407 +0 0.1564 +0 0.1620 +0 0.0614 +0 0.1446 +0 0.1669 +0 0.0599 +0 0.1305 +0 0.1423 +0 0.2750 +0 0.0447 +0 0.0707 +0 0.0869 +0 0.0823 +0 0.2558 +0 0.6572 +0 0.0813 +0 0.1471 +0 0.0616 +0 0.1165 +0 0.0344 +0 0.1107 +0 0.0842 +0 0.0575 +0 0.2706 +0 0.0903 +0 0.0885 +0 0.0972 +0 0.1030 +0 0.1042 +0 0.0524 +0 0.0639 +0 0.1977 +0 0.1878 +0 0.0777 +0 0.1427 +0 0.1073 +0 0.2521 +0 0.0500 +0 0.0565 +0 0.1066 +0 0.3881 +0 0.0968 +0 0.0593 +0 0.0754 +0 0.1568 +0 0.0934 +0 0.0729 +0 0.1009 +0 0.1302 +0 0.0763 +0 0.1745 +0 0.0396 +0 0.0860 +0 0.1812 +0 0.2137 +0 0.7439 +0 0.1058 +0 0.2291 +0 0.0425 +0 0.0338 +0 0.3132 +0 0.0852 +0 0.1231 +0 0.2376 +0 0.0822 +0 0.1168 +0 0.0831 +0 0.0783 +0 0.1935 +0 0.0585 +0 0.1792 +0 0.2409 +0 0.1623 +0 0.2231 +0 0.0370 +0 0.2921 +0 0.2770 +0 0.0833 +0 0.2707 +0 0.0961 +0 0.1741 +0 0.5626 +0 0.1705 +0 0.0780 +0 0.1209 +0 0.1650 +0 0.4090 +0 0.2754 +0 0.0884 +0 0.1512 +1 0.8980 +0 0.0586 +0 0.0691 +0 0.0495 +0 0.2320 +0 0.1118 +0 0.2228 +0 0.3493 +0 0.0983 +0 0.0855 +0 0.1269 +0 0.0620 +0 0.3023 +0 0.0681 +0 0.0398 +0 0.3441 +0 0.1664 +0 0.1132 +0 0.2319 +0 0.1143 +0 0.0373 +0 0.2328 +0 0.0795 +0 0.1199 +0 0.0662 +0 0.0796 +0 0.1128 +0 0.1097 +0 0.5661 +0 0.3507 +0 0.1752 +0 0.1445 +0 0.0819 +0 0.0551 +0 0.0844 +0 0.0568 +0 0.0987 +0 0.0523 +0 0.3041 +0 0.0614 +0 0.0957 +0 0.1053 +0 0.3123 +0 0.1687 +0 0.0791 +0 0.0812 +0 0.3738 +0 0.1549 +0 0.0721 +0 0.1246 +1 0.8517 +0 0.0934 +0 0.0617 +0 0.0939 +0 0.1616 +0 0.2591 +0 0.1036 +0 0.1379 +0 0.1386 +0 0.2121 +0 0.0663 +0 0.1114 +0 0.0632 +0 0.1156 +0 0.0460 +0 0.2845 +0 0.0738 +0 0.0663 +0 0.1209 +0 0.1501 +0 0.0760 +0 0.1524 +0 0.0953 +0 0.1016 +0 0.2010 +0 0.1587 +0 0.0971 +1 0.8278 +0 0.0862 +0 0.0990 +0 0.1437 +0 0.0982 +0 0.0829 +0 0.7005 +0 0.1084 +0 0.1227 +0 0.2329 +0 0.0422 +0 0.1280 +0 0.1335 +0 0.4243 +0 0.1068 +0 0.1358 +0 0.0469 +0 0.1909 +0 0.0884 +0 0.1429 +0 0.1308 +0 0.1018 +0 0.0711 +0 0.1734 +0 0.0907 +0 0.1187 +0 0.2183 +0 0.0751 +0 0.0976 +0 0.1324 +0 0.0465 +0 0.0970 +0 0.0476 +0 0.1835 +0 0.2260 +0 0.2180 +0 0.0652 +0 0.0703 +0 0.0979 +0 0.1569 +0 0.2115 +0 0.0876 +0 0.1817 +0 0.2528 +0 0.0836 +0 0.0398 +0 0.0477 +0 0.0479 +0 0.1170 +0 0.1271 +0 0.2182 +0 0.2186 +0 0.1436 +0 0.1220 +0 0.1278 +0 0.0632 +0 0.0831 +0 0.0486 +0 0.0552 +0 0.3407 +0 0.0611 +0 0.0600 +0 0.2381 +0 0.1059 +0 0.0798 +0 0.0989 +0 0.0681 +0 0.0484 +0 0.1247 +0 0.1954 +0 0.1563 +0 0.0718 +0 0.2368 +0 0.1184 +0 0.0444 +0 0.0793 +0 0.1195 +0 0.3301 +1 0.7552 +0 0.0641 +0 0.1102 +0 0.0803 +0 0.1616 +0 0.0813 +0 0.0905 +0 0.0426 +0 0.1141 +0 0.0881 +0 0.0474 +0 0.2503 +0 0.0453 +0 0.0756 +0 0.1621 +0 0.1058 +0 0.0441 +0 0.1746 +0 0.0550 +0 0.1308 +0 0.1439 +0 0.0920 +0 0.0394 +0 0.0685 +0 0.0960 +0 0.0871 +0 0.0675 +0 0.1980 +0 0.1332 +0 0.0559 +0 0.0572 +0 0.0745 +0 0.0487 +0 0.2963 +0 0.1243 +0 0.0976 +0 0.0665 +0 0.0502 +0 0.2460 +0 0.0512 +0 0.1017 +0 0.1625 +0 0.0704 +0 0.1078 +0 0.0490 +0 0.1222 +0 0.0799 +0 0.1603 +0 0.6833 +0 0.3756 +0 0.2441 +0 0.1255 +0 0.1557 +0 0.0540 +0 0.0589 +0 0.1289 +0 0.1457 +0 0.0606 +0 0.3416 +0 0.0630 +0 0.0857 +0 0.0911 +0 0.0431 +0 0.0888 +0 0.0826 +0 0.1092 +0 0.0627 +0 0.0646 +0 0.1767 +0 0.6426 +0 0.1837 +0 0.0815 +0 0.2629 +0 0.1109 +0 0.0745 +0 0.2052 +0 0.0956 +0 0.0791 +0 0.2972 +0 0.1921 +0 0.0723 +0 0.2059 +0 0.2404 +0 0.0561 +0 0.0542 +0 0.1099 +0 0.1533 +0 0.0824 +0 0.0596 +0 0.0613 +0 0.0879 +0 0.2318 +0 0.1113 +1 0.8468 +0 0.0983 +0 0.0810 +0 0.0635 +0 0.1370 +0 0.4022 +0 0.1360 +0 0.0591 +0 0.1156 +0 0.2207 +0 0.2679 +0 0.0676 +0 0.2710 +0 0.3854 +0 0.1321 +0 0.1137 +0 0.2674 +0 0.1288 +0 0.0608 +0 0.1963 +0 0.3695 +0 0.0672 +0 0.0688 +0 0.1487 +0 0.0522 +0 0.2808 +0 0.2903 +0 0.0853 +0 0.0966 +0 0.2404 +0 0.1667 +0 0.1506 +0 0.0993 +0 0.0595 +0 0.1151 +0 0.0631 +0 0.1502 +0 0.0742 +0 0.1866 +0 0.1404 +0 0.0505 +0 0.1468 +0 0.1285 +0 0.2553 +0 0.0601 +0 0.1513 +0 0.1370 +0 0.1283 +0 0.0870 +0 0.1857 +0 0.1092 +1 0.8860 +0 0.1157 +0 0.0848 +0 0.2020 +0 0.1850 +0 0.0709 +0 0.3747 +0 0.1334 +0 0.1694 +0 0.0411 +0 0.1101 +0 0.1572 +0 0.1731 +0 0.1540 +0 0.2012 +0 0.3921 +0 0.1243 +0 0.0784 +0 0.2478 +0 0.1843 +0 0.0801 +0 0.0843 +0 0.0740 +0 0.0524 +0 0.0979 +0 0.3389 +0 0.1602 +0 0.1638 +0 0.4172 +0 0.0550 +0 0.0831 +0 0.0582 +0 0.0465 +0 0.0907 +0 0.0523 +0 0.1474 +0 0.0959 +0 0.1057 +0 0.0836 +0 0.0560 +1 0.7664 +0 0.1948 +0 0.0609 +0 0.1527 +0 0.7255 +0 0.0725 +0 0.2308 +0 0.1583 +0 0.0666 +0 0.0675 +0 0.0618 +0 0.1932 +0 0.0802 +0 0.1469 +0 0.1796 +0 0.1003 +0 0.0958 +0 0.1050 +0 0.0950 +0 0.1476 +0 0.1076 +0 0.2504 +0 0.1363 +0 0.0415 +0 0.1679 +0 0.0476 +0 0.0573 +0 0.3376 +0 0.1304 +0 0.0621 +0 0.0536 +0 0.0636 +0 0.0560 +1 0.8215 +0 0.1230 +0 0.0562 +0 0.1726 +0 0.1015 +0 0.1355 +0 0.0421 +0 0.1107 +0 0.0672 +0 0.2189 +0 0.1102 +0 0.2492 +0 0.0766 +0 0.1623 +0 0.0647 +0 0.0967 +0 0.0971 +0 0.0831 +0 0.0570 +0 0.1269 +0 0.1612 +0 0.0846 +0 0.0927 +0 0.0691 +0 0.2993 +0 0.1232 +0 0.0845 +0 0.1290 +0 0.0622 +0 0.1281 +0 0.1149 +0 0.1564 +0 0.0980 +0 0.1184 +0 0.1209 +0 0.0647 +0 0.0500 +0 0.0559 +0 0.1084 +0 0.0454 +0 0.1971 +0 0.1246 +0 0.0731 +0 0.0780 +0 0.0667 +0 0.1065 +0 0.0609 +0 0.1622 +0 0.1632 +0 0.0837 +0 0.0499 +0 0.0702 +0 0.1576 +0 0.0350 +0 0.1248 +0 0.3732 +0 0.0343 +0 0.0526 +0 0.1623 +0 0.1650 +0 0.1981 +0 0.0840 +0 0.1543 +0 0.2022 +0 0.0483 +0 0.0589 +0 0.2892 +0 0.1356 +0 0.1145 +0 0.1646 +0 0.1025 +0 0.1762 +0 0.0700 +0 0.0530 +0 0.1049 +0 0.1165 +0 0.1196 +0 0.0856 +0 0.1531 +0 0.0807 +1 0.8113 +0 0.1013 +0 0.0590 +0 0.0693 +0 0.1561 +0 0.6359 +0 0.3098 +0 0.0792 +0 0.2134 +0 0.1331 +0 0.2579 +0 0.0572 +0 0.2330 +0 0.1392 +0 0.0979 +0 0.1017 +0 0.2839 +0 0.1096 +0 0.1761 +0 0.0909 +0 0.0837 +0 0.4721 +0 0.3642 +0 0.3096 +0 0.3441 +0 0.0705 +0 0.0565 +0 0.0583 +0 0.1262 +0 0.0642 +0 0.0758 +0 0.2212 +0 0.0897 +0 0.0638 +0 0.2875 +0 0.2579 +0 0.2551 +0 0.1979 +0 0.1386 +0 0.0796 +0 0.1405 +0 0.1001 +0 0.0627 +0 0.0894 +0 0.0950 +0 0.0747 +0 0.0776 +0 0.1147 +0 0.2084 +0 0.1406 +0 0.0822 +0 0.0815 +0 0.1071 +0 0.0991 +0 0.0670 +0 0.3834 +0 0.0686 +0 0.0527 +0 0.4925 +0 0.3995 +0 0.6202 +0 0.1397 +0 0.1146 +0 0.0569 +0 0.1392 +0 0.2967 +0 0.1178 +0 0.1750 +0 0.1189 +0 0.5088 +0 0.0546 +0 0.0384 +0 0.1182 +0 0.0544 +0 0.1501 +0 0.0565 +0 0.0922 +0 0.0657 +0 0.1670 +0 0.1210 +0 0.1312 +1 0.7929 +0 0.1254 +0 0.7441 +0 0.0565 +0 0.0719 +0 0.1431 +0 0.1185 +0 0.0767 +0 0.2018 +0 0.0996 +0 0.1322 +0 0.0460 +0 0.1142 +0 0.0756 +0 0.7458 +1 0.7519 +0 0.0866 +0 0.1490 +0 0.0600 +0 0.1159 +0 0.5404 +0 0.0549 +0 0.2169 +0 0.1500 +0 0.3514 +0 0.1151 +0 0.0792 +0 0.1208 +0 0.1242 +0 0.0843 +0 0.2366 +0 0.1004 +0 0.3653 +0 0.1020 +0 0.0901 +0 0.0778 +0 0.1487 +0 0.0646 +0 0.1842 +0 0.1736 +0 0.0522 +0 0.2244 +0 0.0396 +0 0.0661 +0 0.0920 +0 0.0668 +0 0.0405 +0 0.2547 +0 0.3011 +0 0.0483 +0 0.1100 +0 0.0989 +0 0.1058 +0 0.5956 +0 0.0906 +0 0.1190 +0 0.1126 +0 0.5744 +0 0.1452 +0 0.0966 +0 0.1618 +0 0.1025 +0 0.0877 +0 0.0493 +0 0.0962 +0 0.1263 +0 0.1515 +0 0.0768 +0 0.1733 +0 0.0349 +0 0.2006 +0 0.0956 +0 0.0401 +0 0.0780 +0 0.1591 +0 0.0486 +0 0.0930 +0 0.1034 +0 0.1184 +0 0.3646 +0 0.0476 +0 0.1276 +0 0.1098 +0 0.0874 +0 0.1254 +0 0.0639 +0 0.0656 +0 0.0540 +0 0.1983 +0 0.1278 +0 0.1346 +0 0.0572 +0 0.2579 +0 0.0874 +0 0.1272 +0 0.1514 +0 0.0935 +0 0.0810 +0 0.1197 +0 0.2033 +0 0.0907 +0 0.2629 +0 0.0619 +0 0.1722 +0 0.1839 +0 0.0745 +0 0.2223 +0 0.0761 +0 0.1244 +0 0.1972 +0 0.0512 +0 0.1058 +0 0.1015 +0 0.0723 +0 0.2563 +0 0.1314 +0 0.0711 +0 0.0507 +0 0.0730 +0 0.1863 +0 0.0881 +0 0.0624 +0 0.0391 +0 0.2237 +0 0.0702 +0 0.2404 +0 0.2587 +0 0.0643 +0 0.0416 +0 0.1210 +0 0.4012 +0 0.0634 +0 0.2254 +0 0.1338 +0 0.2916 +0 0.1276 +0 0.1529 +0 0.0429 +0 0.1039 +0 0.2087 +0 0.0711 +0 0.0733 +0 0.4559 +0 0.2190 +0 0.0689 +0 0.0806 +0 0.0506 +0 0.1297 +0 0.3927 +0 0.0776 +0 0.0821 +0 0.0974 +0 0.0996 +0 0.2172 +0 0.3906 +0 0.1851 +0 0.1076 +0 0.0918 +0 0.0477 +0 0.0608 +0 0.1086 +0 0.1870 +0 0.1311 +0 0.0984 +0 0.1734 +0 0.1123 +0 0.1780 +0 0.3799 +0 0.0651 +0 0.1124 +0 0.1100 +0 0.0937 +0 0.1122 +0 0.5294 +0 0.2900 +0 0.0624 +0 0.0762 +0 0.0775 +0 0.0809 +0 0.2041 +0 0.0728 +0 0.1909 +0 0.0948 +0 0.6548 +0 0.1357 +0 0.1997 +0 0.0398 +0 0.1110 +0 0.0970 +0 0.0898 +0 0.1690 +0 0.0906 +0 0.1156 +0 0.4142 +0 0.0655 +0 0.0455 +0 0.0425 +0 0.0687 +0 0.4709 +0 0.0503 +0 0.0690 +0 0.2131 +0 0.0961 +0 0.0661 +0 0.0585 +0 0.0382 +0 0.0549 +0 0.1503 +0 0.0988 +0 0.0752 +0 0.1751 +0 0.0574 +0 0.1051 +0 0.1070 +0 0.1951 +0 0.0925 +0 0.1632 +0 0.0409 +0 0.1234 +0 0.3229 +0 0.0975 +0 0.1349 +0 0.1761 +0 0.0702 +0 0.4927 +0 0.1886 +0 0.0871 +0 0.0926 +0 0.0609 +0 0.1064 +0 0.0835 +0 0.0911 +0 0.0866 +0 0.1340 +0 0.0920 +0 0.2371 +0 0.1423 +0 0.0346 +0 0.0626 +0 0.7078 +0 0.0927 +0 0.0764 +0 0.3006 +0 0.1050 +0 0.6929 +0 0.0986 +0 0.1597 +0 0.0584 +0 0.2420 +0 0.0657 +0 0.0955 +0 0.1492 +0 0.1395 +0 0.3164 +0 0.1158 +0 0.1162 +0 0.1856 +0 0.1689 +0 0.0521 +0 0.2140 +0 0.4462 +0 0.1108 +0 0.1317 +0 0.3930 +0 0.1098 +0 0.0936 +0 0.1092 +0 0.0958 +0 0.1389 +0 0.0636 +0 0.1907 +0 0.2867 +0 0.1203 +0 0.0981 +0 0.0678 +0 0.0589 +0 0.2583 +0 0.0548 +0 0.0810 +0 0.1606 +0 0.2064 +0 0.1229 +0 0.0680 +0 0.0818 +1 0.8163 +0 0.0888 +0 0.1892 +0 0.6752 +0 0.1240 +0 0.2069 +0 0.0595 +0 0.1444 +0 0.0553 +0 0.2051 +0 0.0510 +0 0.1084 +0 0.2284 +0 0.0942 +0 0.1112 +1 0.8808 +0 0.0878 +0 0.1899 +0 0.0557 +0 0.0495 +0 0.0889 +0 0.0632 +0 0.0676 +0 0.0810 +0 0.0448 +0 0.0708 +0 0.2238 +0 0.1045 +0 0.1214 +0 0.0723 +0 0.0829 +0 0.0401 +0 0.0606 +0 0.2572 +0 0.0761 +0 0.0512 +0 0.0629 +0 0.1185 +0 0.5992 +0 0.2487 +0 0.1757 +0 0.1325 +0 0.0736 +0 0.0810 +0 0.1142 +0 0.1718 +0 0.0975 +0 0.0956 +0 0.0533 +0 0.0706 +0 0.1079 +0 0.3422 +0 0.0799 +0 0.1615 +0 0.2440 +0 0.4219 +0 0.0732 +0 0.0812 +0 0.2435 +0 0.1067 +0 0.0483 +0 0.0650 +0 0.0920 +0 0.1017 +0 0.0604 +1 0.7894 +0 0.0702 +0 0.1570 +0 0.0379 +0 0.2074 +0 0.1799 +0 0.1446 +0 0.0692 +0 0.2359 +0 0.0681 +0 0.0927 +0 0.0908 +0 0.0914 +0 0.0560 +0 0.1625 +0 0.0640 +0 0.1475 +0 0.0733 +0 0.0967 +0 0.4071 +0 0.1206 +0 0.0668 +0 0.0752 +0 0.1310 +0 0.1006 +0 0.1030 +0 0.0759 +0 0.0441 +0 0.1487 +0 0.1345 +0 0.1997 +0 0.0702 +0 0.0515 +0 0.1497 +0 0.1083 +0 0.2056 +0 0.1016 +0 0.2328 +0 0.1058 +0 0.3172 +0 0.1524 +0 0.3137 +0 0.1710 +0 0.1108 +0 0.1124 +0 0.2641 +0 0.0904 +1 0.8421 +0 0.1435 +0 0.1570 +0 0.0594 +0 0.0448 +0 0.0801 +0 0.1844 +0 0.0430 +0 0.7348 +0 0.1688 +0 0.1896 +0 0.0717 +0 0.0672 +0 0.1133 +0 0.3640 +0 0.0479 +0 0.1491 +0 0.1456 +0 0.3152 +0 0.2051 +0 0.3262 +0 0.1630 +0 0.1429 +0 0.1005 +0 0.1230 +0 0.0805 +0 0.1783 +0 0.0808 +0 0.0376 +0 0.1550 +0 0.0587 +0 0.1320 +0 0.2671 +0 0.1230 +0 0.3605 +0 0.0837 +0 0.1425 +0 0.0413 +0 0.0983 +0 0.0384 +0 0.1221 +0 0.1553 +0 0.0538 +0 0.5738 +0 0.1558 +0 0.1576 +0 0.0874 +0 0.4496 +0 0.1125 +0 0.2718 +0 0.3170 +0 0.0811 +0 0.1546 +0 0.0996 +0 0.0881 +0 0.0822 +0 0.1206 +0 0.1902 +0 0.1366 +0 0.1190 +0 0.0926 +0 0.0705 +0 0.1109 +0 0.2920 +0 0.0992 +0 0.1274 +0 0.0556 +0 0.0983 +0 0.0393 +0 0.0998 +0 0.1567 +0 0.0460 +0 0.4542 +0 0.2215 +0 0.3438 +0 0.0750 +0 0.2855 +0 0.0871 +0 0.0900 +0 0.0613 +0 0.3060 +0 0.3838 +0 0.0659 +0 0.4393 +0 0.1063 +0 0.1314 +0 0.1194 +0 0.1451 +0 0.1372 +0 0.4985 +0 0.1532 +0 0.1391 +0 0.2346 +0 0.0752 +0 0.1868 +0 0.2777 +0 0.3494 +0 0.0860 +0 0.1885 +0 0.1472 +0 0.2819 +0 0.2006 +0 0.0906 +0 0.1124 +0 0.1412 +0 0.1062 +0 0.2124 +0 0.1805 +0 0.0951 +0 0.1027 +0 0.1238 +0 0.6382 +0 0.1148 +0 0.0770 +0 0.0754 +0 0.0293 +0 0.2924 +0 0.1632 +0 0.0493 +0 0.0461 +0 0.0822 +0 0.1052 +0 0.1182 +0 0.0679 +0 0.0990 +0 0.2110 +0 0.4650 +0 0.0930 +0 0.0610 +0 0.0975 +0 0.4304 +0 0.2106 +0 0.0967 +0 0.0961 +0 0.1205 +0 0.0926 +0 0.1016 +0 0.0787 +0 0.1461 +0 0.1449 +0 0.2119 +0 0.0425 +0 0.0776 +0 0.1541 +0 0.2461 +0 0.2416 +0 0.2879 +1 0.7758 +0 0.0811 +0 0.1013 +0 0.1046 +0 0.0695 +0 0.1342 +0 0.1859 +0 0.1702 +0 0.1203 +0 0.1592 +0 0.0389 +0 0.2103 +0 0.0675 +0 0.4546 +0 0.0900 +0 0.0714 +0 0.0793 +0 0.0616 +0 0.0756 +0 0.1639 +0 0.1891 +1 0.8276 +0 0.0443 +0 0.2182 +0 0.0705 +0 0.0712 +0 0.1856 +0 0.1067 +0 0.1477 +0 0.0733 +0 0.1235 +0 0.0584 +0 0.1178 +0 0.0961 +0 0.0672 +0 0.0824 +0 0.1480 +0 0.0773 +0 0.0827 +0 0.2606 +0 0.0823 +0 0.1716 +0 0.2697 +0 0.0582 +0 0.0833 +0 0.1147 +0 0.0469 +0 0.0690 +0 0.3185 +0 0.1220 +0 0.1624 +0 0.0415 +0 0.2349 +0 0.1021 +0 0.1590 +0 0.0731 +0 0.0928 +0 0.0670 +0 0.0896 +0 0.1354 +0 0.1289 +0 0.1207 +0 0.0782 +0 0.1173 +1 0.8554 +0 0.1881 +0 0.1044 +0 0.1668 +0 0.0784 +0 0.3495 +0 0.2851 +0 0.1038 +0 0.1168 +0 0.0750 +0 0.1236 +0 0.3297 +0 0.1359 +0 0.1090 +0 0.0385 +0 0.1075 +0 0.2312 +0 0.0682 +0 0.0873 +0 0.0926 +0 0.0972 +0 0.1440 +0 0.1037 +0 0.1997 +0 0.0776 +0 0.0953 +0 0.0776 +0 0.1058 +0 0.0453 +0 0.1002 +0 0.1230 +0 0.1738 +0 0.1226 +0 0.2737 +0 0.1297 +0 0.0622 +0 0.0314 +0 0.2103 +0 0.0447 +0 0.2549 +0 0.0649 +0 0.0857 +0 0.0672 +0 0.0717 +0 0.1382 +0 0.6609 +0 0.2008 +0 0.1714 +0 0.0861 +0 0.0783 +0 0.0544 +0 0.0684 +0 0.0342 +0 0.2033 +0 0.3420 +0 0.1532 +0 0.1340 +0 0.0642 +0 0.1057 +0 0.4770 +0 0.1784 +0 0.0805 +0 0.0924 +0 0.2099 +0 0.6880 +0 0.0646 +0 0.0427 +0 0.2426 +0 0.2285 +0 0.0691 +0 0.0508 +0 0.1550 +0 0.2039 +0 0.1151 +0 0.2931 +0 0.0856 +0 0.0573 +0 0.1351 +0 0.1349 +0 0.1833 +0 0.0878 +0 0.2663 +0 0.0905 +0 0.0929 +0 0.0971 +0 0.0871 +0 0.0997 +0 0.0760 +0 0.1784 +0 0.2902 +0 0.0877 +0 0.0627 +0 0.3077 +0 0.1017 +0 0.0462 +0 0.2793 +0 0.1479 +0 0.0997 +0 0.1986 +0 0.0814 +0 0.0494 +0 0.0949 +0 0.0926 +0 0.0654 +0 0.1371 +0 0.4001 +0 0.0533 +0 0.3515 +0 0.2214 +0 0.0631 +0 0.0483 +0 0.0366 +0 0.0546 +0 0.0800 +0 0.0951 +0 0.0584 +0 0.4689 +0 0.0897 +0 0.2734 +0 0.0530 +0 0.0541 +0 0.0574 +0 0.1935 +0 0.1143 +0 0.0941 +0 0.2549 +0 0.1275 +0 0.0799 +0 0.0658 +0 0.1678 +0 0.1660 +0 0.1814 +0 0.2519 +0 0.0452 +0 0.0437 +0 0.1305 +0 0.0842 +0 0.1064 +0 0.0785 +0 0.1401 +0 0.1295 +0 0.2401 +0 0.0548 +0 0.1222 +1 0.8355 +0 0.1295 +0 0.1021 +0 0.1028 +0 0.0420 +0 0.1223 +0 0.0662 +0 0.0732 +0 0.0438 +0 0.6645 +0 0.0707 +0 0.4328 +0 0.1173 +0 0.0433 +0 0.0457 +0 0.1343 +0 0.0902 +0 0.1451 +0 0.0601 +0 0.0445 +0 0.1202 +0 0.0826 +0 0.1727 +0 0.4377 +0 0.0811 +0 0.1024 +0 0.1076 +0 0.0981 +0 0.2107 +0 0.0910 +0 0.1368 +0 0.1028 +0 0.2479 +0 0.1463 +0 0.1226 +0 0.2886 +0 0.1124 +0 0.1049 +0 0.0970 +0 0.0857 +0 0.1225 +0 0.3672 +0 0.1279 +0 0.0660 +0 0.0693 +0 0.0830 +0 0.1303 +0 0.0808 +0 0.0590 +0 0.0667 +0 0.1537 +0 0.0796 +0 0.1240 +0 0.1175 +0 0.5424 +0 0.0669 +0 0.0713 +0 0.1031 +0 0.1452 +0 0.0881 +0 0.0673 +0 0.0715 +0 0.1798 +0 0.3018 +0 0.2465 +0 0.7297 +0 0.0633 +0 0.1244 +0 0.1196 +0 0.1419 +0 0.1623 +0 0.0837 +0 0.2164 +0 0.1725 +0 0.0751 +0 0.2301 +0 0.0643 +0 0.0276 +0 0.0707 +0 0.1069 +1 0.8628 +0 0.0749 +0 0.1176 +0 0.0498 +0 0.1167 +0 0.1235 +0 0.0708 +0 0.1617 +0 0.0780 +0 0.0761 +0 0.1282 +0 0.1047 +0 0.6115 +0 0.3420 +0 0.0886 +0 0.0637 +0 0.3144 +0 0.0950 +0 0.0775 +0 0.1576 +0 0.1459 +0 0.1959 +0 0.0539 +0 0.1016 +0 0.1437 +0 0.0692 +0 0.3720 +0 0.0636 +0 0.0992 +0 0.2582 +0 0.1371 +0 0.2085 +0 0.0695 +0 0.2367 +0 0.2143 +0 0.1207 +0 0.0689 +0 0.1051 +0 0.0787 +0 0.4746 +0 0.0624 +0 0.1545 +0 0.0426 +0 0.1392 +0 0.1835 +0 0.0325 +0 0.0767 +0 0.0689 +1 0.8666 +0 0.0875 +0 0.1355 +0 0.1499 +0 0.1685 +0 0.1896 +0 0.1198 +0 0.0839 +0 0.5932 +0 0.4605 +0 0.0796 +0 0.6426 +0 0.0533 +0 0.0506 +0 0.0608 +0 0.1971 +0 0.2074 +0 0.2582 +0 0.0536 +0 0.0626 +0 0.0877 +0 0.0947 +0 0.7258 +0 0.0689 +0 0.0622 +0 0.1910 +0 0.0708 +1 0.7676 +0 0.0583 +0 0.2207 +0 0.0436 +0 0.2105 +0 0.0837 +0 0.1098 +0 0.0539 +0 0.0701 +0 0.1576 +0 0.4528 +0 0.0842 +0 0.1221 +0 0.0886 +0 0.0938 +0 0.1009 +0 0.2164 +0 0.1766 +1 0.3400 +0 0.0591 +0 0.0589 +0 0.0877 +0 0.0865 +0 0.1139 +0 0.0887 +0 0.0948 +0 0.1074 +0 0.2780 +0 0.0759 +0 0.1764 +0 0.2932 +0 0.1000 +0 0.1066 +0 0.1226 +0 0.0533 +0 0.0471 +0 0.2997 +0 0.2267 +0 0.1324 +0 0.1019 +0 0.1421 +0 0.0752 +0 0.1308 +0 0.1035 +0 0.0768 +0 0.0819 +0 0.3450 +0 0.0634 +0 0.1955 +0 0.0672 +0 0.1074 +0 0.1014 +0 0.0969 +0 0.1499 +0 0.0646 +0 0.0579 +0 0.1070 +0 0.2765 +0 0.1032 +0 0.0485 +0 0.0612 +0 0.1245 +0 0.0741 +0 0.3431 +0 0.1378 +0 0.0646 +0 0.0306 +0 0.0588 +0 0.1703 +0 0.0981 +0 0.0717 +0 0.0752 +0 0.1210 +0 0.2029 +0 0.0613 +0 0.3137 +0 0.0584 +0 0.1796 +0 0.0373 +0 0.0730 +0 0.1939 +1 0.8594 +0 0.1113 +0 0.1166 +0 0.0852 +0 0.0815 +0 0.1062 +0 0.1442 +0 0.0772 +0 0.0919 +0 0.0433 +0 0.1434 +0 0.0704 +0 0.1370 +0 0.0503 +0 0.2036 +0 0.1192 +0 0.1050 +0 0.0633 +0 0.1282 +0 0.1106 +0 0.1559 +0 0.3834 +0 0.1123 +0 0.0643 +0 0.0636 +0 0.1278 +0 0.0447 +0 0.1854 +0 0.1824 +0 0.0766 +0 0.1121 +0 0.1734 +0 0.0855 +0 0.1744 +0 0.0822 +0 0.1483 +0 0.0328 +0 0.0844 +0 0.1557 +0 0.0860 +0 0.0804 +0 0.0719 +0 0.3523 +0 0.0918 +0 0.1246 +0 0.1541 +0 0.1384 +0 0.1791 +0 0.0874 +0 0.0930 +0 0.1422 +0 0.0844 +0 0.1301 +0 0.1952 +0 0.0954 +0 0.1698 +0 0.1760 +0 0.1144 +0 0.0767 +0 0.2030 +0 0.0701 +0 0.2146 +0 0.0481 +0 0.0583 +0 0.1013 +0 0.1222 +0 0.1067 +0 0.1516 +0 0.0750 +0 0.0380 +0 0.1734 +0 0.0982 +0 0.2749 +0 0.0848 +0 0.0961 +0 0.0810 +0 0.5147 +0 0.1434 +0 0.0809 +0 0.2040 +0 0.1341 +0 0.0870 +1 0.7877 +0 0.1145 +0 0.1180 +0 0.0302 +0 0.2036 +0 0.0827 +0 0.6669 +0 0.0744 +0 0.0466 +0 0.0678 +0 0.1084 +0 0.2018 +0 0.1041 +0 0.0808 +0 0.1136 +0 0.1278 +0 0.1275 +0 0.0968 +0 0.1781 +0 0.0411 +0 0.0848 +0 0.4297 +0 0.1432 +0 0.0610 +0 0.1336 +0 0.0590 +0 0.1258 +0 0.2442 +0 0.1068 +0 0.0926 +0 0.0928 +0 0.2298 +0 0.1850 +0 0.0734 +0 0.1569 +0 0.1641 +0 0.1369 +0 0.0825 +0 0.1014 +0 0.0633 +0 0.1244 +1 0.8214 +0 0.0575 +0 0.1090 +0 0.1329 +0 0.0849 +0 0.1387 +0 0.1501 +0 0.0412 +0 0.0828 +0 0.2313 +0 0.0802 +0 0.0953 +0 0.1281 +0 0.3510 +0 0.1189 +1 0.3412 +0 0.0518 +0 0.2168 +0 0.0882 +0 0.0796 +0 0.1308 +0 0.2030 +0 0.6226 +0 0.3163 +0 0.0538 +0 0.0668 +0 0.0670 +0 0.0557 +0 0.0542 +0 0.1086 +0 0.1290 +0 0.1757 +0 0.0972 +0 0.1616 +0 0.1275 +0 0.1532 +0 0.3268 +0 0.4947 +0 0.1446 +0 0.1180 +0 0.1728 +0 0.2309 +0 0.0639 +0 0.0887 +0 0.2111 +0 0.2090 +0 0.0592 +0 0.0403 +0 0.1173 +0 0.0636 +0 0.1893 +0 0.1180 +0 0.0678 +0 0.2109 +0 0.1613 +0 0.1586 +0 0.1842 +0 0.0549 +0 0.2371 +0 0.0549 +0 0.0834 +0 0.1123 +0 0.0940 +0 0.3107 +0 0.1600 +0 0.2816 +0 0.0346 +0 0.0903 +0 0.1036 +0 0.0546 +0 0.0474 +0 0.1818 +0 0.0879 +0 0.2288 +0 0.1388 +0 0.1205 +0 0.1590 +0 0.0410 +0 0.1582 +0 0.1247 +0 0.0825 +0 0.0473 +0 0.0937 +0 0.2080 +0 0.2454 +0 0.0669 +0 0.1575 +0 0.0825 +0 0.2842 +0 0.4275 +0 0.0823 +0 0.6722 +0 0.0812 +0 0.1262 +0 0.1777 +0 0.1312 +0 0.1789 +0 0.0841 +0 0.0881 +0 0.2778 +0 0.1151 +0 0.0839 +0 0.0361 +0 0.0929 +0 0.6280 +0 0.1050 +0 0.1784 +0 0.0919 +0 0.2221 +0 0.0439 +0 0.2754 +0 0.0941 +0 0.0390 +0 0.0910 +0 0.1284 +0 0.0403 +0 0.2775 +0 0.0871 +0 0.7466 +0 0.2516 +0 0.0983 +0 0.1521 +0 0.0739 +0 0.0994 +0 0.0773 +0 0.0834 +0 0.0815 +0 0.0823 +0 0.4357 +0 0.1625 +0 0.0854 +0 0.0573 +0 0.0475 +0 0.0781 +0 0.1064 +0 0.0700 +0 0.1020 +0 0.0890 +0 0.0857 +0 0.2227 +0 0.1260 +0 0.1657 +0 0.1397 +0 0.0652 +0 0.3606 +0 0.1225 +0 0.1827 +0 0.2060 +0 0.2389 +0 0.1136 +0 0.3019 +0 0.0735 +0 0.1915 +0 0.1142 +0 0.1354 +0 0.0765 +0 0.1778 +0 0.1638 +0 0.0940 +0 0.1331 +0 0.0702 +0 0.1077 +0 0.0711 +0 0.0580 +0 0.0676 +0 0.0412 +0 0.0589 +0 0.1347 +0 0.0902 +0 0.1565 +0 0.0599 +0 0.0758 +0 0.1174 +0 0.0713 +0 0.0792 +0 0.3048 +0 0.1656 +0 0.1454 +0 0.1245 +0 0.1311 +0 0.2119 +0 0.0898 +0 0.0710 +0 0.4938 +0 0.0638 +0 0.1507 +0 0.2666 +0 0.6875 +0 0.0809 +0 0.1265 +0 0.1204 +0 0.1054 +0 0.1967 +0 0.0462 +0 0.1267 +0 0.0652 +0 0.1815 +0 0.5723 +0 0.1098 +0 0.2148 +0 0.1349 +0 0.5944 +0 0.0984 +1 0.7591 +0 0.1941 +0 0.4780 +0 0.1108 +0 0.1382 +0 0.0628 +0 0.0746 +0 0.0450 +0 0.0727 +0 0.0404 +0 0.0893 +0 0.0389 +0 0.2496 +0 0.2250 +0 0.1124 +0 0.0800 +0 0.2971 +0 0.0951 +0 0.1316 +0 0.1167 +0 0.2583 +1 0.8360 +0 0.1050 +0 0.1524 +0 0.1075 +0 0.0598 +0 0.0442 +0 0.1131 +0 0.4460 +0 0.0993 +0 0.5545 +0 0.2384 +0 0.0886 +0 0.1239 +0 0.1023 +0 0.1321 +0 0.0887 +0 0.1076 +0 0.1267 +0 0.1149 +0 0.3439 +0 0.1074 +0 0.2761 +0 0.0631 +0 0.0695 +0 0.0780 +0 0.0852 +0 0.4365 +0 0.1200 +0 0.0600 +0 0.4389 +0 0.1012 +0 0.0473 +0 0.1871 +0 0.0580 +1 0.7544 +0 0.1263 +1 0.8349 +0 0.1874 +0 0.0960 +0 0.0504 +0 0.0666 +0 0.1293 +0 0.0735 +0 0.0706 +0 0.0650 +0 0.0933 +0 0.1416 +0 0.0928 +0 0.1279 +0 0.0910 +0 0.1391 +0 0.1223 +1 0.7645 +0 0.0760 +0 0.1838 +0 0.1577 +0 0.1089 +0 0.0572 +0 0.2859 +0 0.1546 +0 0.0453 +0 0.1237 +0 0.1185 +0 0.0948 +0 0.0907 +0 0.0732 +0 0.2199 +0 0.1097 +0 0.0629 +0 0.0783 +0 0.0839 +0 0.0611 +0 0.1041 +0 0.0996 +0 0.0559 +0 0.0985 +0 0.1595 +0 0.0876 +0 0.1569 +0 0.1167 +0 0.0584 +0 0.0450 +0 0.0751 +0 0.4816 +0 0.1310 +0 0.2165 +0 0.1155 +0 0.0815 +0 0.0944 +0 0.0654 +0 0.2940 +0 0.1109 +0 0.0508 +0 0.1543 +0 0.2475 +0 0.1659 +0 0.2140 +0 0.1506 +0 0.0910 +0 0.1059 +0 0.7337 +0 0.1035 +0 0.2528 +0 0.0856 +0 0.0633 +0 0.1301 +0 0.1503 +0 0.1399 +0 0.0673 +0 0.0968 +0 0.1134 +0 0.2527 +0 0.1063 +0 0.0833 +0 0.1331 +0 0.1093 +0 0.1030 +0 0.0876 +0 0.5272 +0 0.1549 +0 0.0538 +0 0.1109 +0 0.0854 +0 0.2017 +0 0.1015 +0 0.5655 +0 0.0752 +0 0.0572 +0 0.6957 +0 0.1323 +0 0.1058 +0 0.0654 +0 0.1076 +0 0.2470 +0 0.1936 +0 0.0388 +0 0.1443 +0 0.6444 +0 0.1503 +0 0.0788 +0 0.1281 +0 0.0727 +0 0.1044 +0 0.0942 +0 0.2776 +0 0.0846 +0 0.1144 +0 0.2259 +0 0.0582 +0 0.0802 +0 0.0851 +0 0.2583 +0 0.0668 +0 0.0657 +0 0.0534 +0 0.0970 +0 0.6395 +0 0.1851 +0 0.1467 +0 0.1875 +0 0.0768 +0 0.1190 +0 0.1052 +0 0.2605 +0 0.0544 +0 0.1512 +0 0.0616 +0 0.1010 +0 0.1071 +0 0.3342 +0 0.2343 +0 0.1560 +0 0.1732 +0 0.2872 +0 0.1092 +0 0.0531 +0 0.1544 +0 0.1155 +1 0.8648 +0 0.0737 +0 0.1283 +0 0.1502 +0 0.1645 +0 0.1007 +0 0.1839 +0 0.1149 +0 0.1430 +0 0.1571 +0 0.0901 +0 0.1469 +0 0.0862 +0 0.2523 +0 0.0965 +0 0.0981 +0 0.0316 +0 0.0505 +0 0.0835 +0 0.0903 +0 0.1457 +0 0.0371 +0 0.2636 +0 0.1615 +0 0.2232 +0 0.2245 +0 0.0385 +0 0.0885 +0 0.0549 +0 0.1372 +0 0.1690 +0 0.2746 +0 0.0647 +0 0.0530 +0 0.0427 +0 0.0972 +0 0.0356 +0 0.1442 +0 0.0979 +0 0.0781 +0 0.0554 +0 0.0861 +0 0.1199 +0 0.1833 +0 0.0655 +0 0.0815 +0 0.1212 +0 0.1409 +0 0.0718 +0 0.1756 +0 0.0497 +0 0.0877 +0 0.1473 +0 0.0396 +0 0.1880 +0 0.0845 +0 0.1314 +0 0.0771 +0 0.1937 +0 0.0378 +0 0.0509 +0 0.1676 +0 0.0805 +0 0.3441 +0 0.1737 +0 0.1248 +0 0.1654 +0 0.0933 +0 0.2722 +0 0.0676 +0 0.1794 +0 0.1817 +0 0.2176 +0 0.0534 +0 0.1466 +0 0.0719 +0 0.0604 +0 0.1492 +0 0.2013 +0 0.1042 +0 0.7348 +0 0.1140 +0 0.1164 +0 0.1341 +0 0.0929 +0 0.2787 +0 0.1550 +0 0.6386 +0 0.0621 +0 0.1875 +0 0.0439 +0 0.2324 +0 0.1746 +0 0.2567 +0 0.0999 +0 0.3049 +0 0.1792 +0 0.0480 +0 0.1782 +0 0.1405 +0 0.1326 +0 0.0809 +0 0.0585 +0 0.2135 +0 0.0557 +0 0.0827 +0 0.0651 +0 0.1057 +0 0.0891 +0 0.0472 +0 0.1355 +0 0.0956 +0 0.0601 +0 0.0553 +0 0.0684 +0 0.0915 +0 0.1012 +0 0.1377 +0 0.0678 +0 0.0489 +0 0.0744 +0 0.3756 +0 0.2480 +0 0.1626 +0 0.1853 +0 0.0821 +0 0.0674 +0 0.1284 +0 0.0648 +0 0.0648 +0 0.4012 +0 0.3080 +0 0.3542 +0 0.0544 +0 0.0667 +0 0.0916 +0 0.1583 +0 0.1025 +0 0.1224 +0 0.2599 +0 0.1008 +0 0.2092 +0 0.0775 +0 0.1688 +0 0.1339 +0 0.0857 +0 0.1254 +0 0.0942 +0 0.0808 +0 0.1406 +0 0.1432 +0 0.2105 +0 0.2978 +0 0.0596 +0 0.0845 +0 0.0554 +0 0.1304 +0 0.2539 +0 0.0594 +0 0.0532 +0 0.1025 +0 0.0408 +0 0.0416 +0 0.0635 +1 0.8602 +0 0.1099 +0 0.1290 +0 0.1035 +1 0.7881 +0 0.1684 +0 0.1677 +0 0.1029 +0 0.5413 +0 0.0480 +0 0.1128 +0 0.1171 +0 0.1584 +0 0.1695 +0 0.0616 +0 0.0656 +0 0.1838 +0 0.1555 +0 0.0927 +0 0.0457 +0 0.2210 +0 0.0781 +0 0.0916 +0 0.1147 +0 0.1426 +1 0.8527 +0 0.0843 +0 0.0741 +0 0.1472 +0 0.1000 +0 0.1146 +0 0.2567 +0 0.0694 +0 0.1760 +0 0.2523 +0 0.0855 +0 0.1860 +0 0.2718 +0 0.1032 +0 0.0693 +0 0.2087 +0 0.0568 +0 0.1083 +0 0.0954 +0 0.0996 +0 0.0928 +0 0.1472 +0 0.0916 +0 0.1586 +0 0.1590 +0 0.0796 +0 0.3398 +0 0.0753 +0 0.4712 +0 0.0964 +1 0.7790 +0 0.0435 +0 0.1904 +0 0.1396 +0 0.0620 +0 0.1436 +0 0.1362 +0 0.1045 +0 0.1349 +0 0.0549 +0 0.0388 +0 0.1368 +0 0.2290 +0 0.2441 +0 0.0683 +0 0.4548 +0 0.0793 +0 0.1447 +0 0.1560 +0 0.1460 +0 0.0733 +0 0.2445 +1 0.7876 +0 0.1777 +0 0.6619 +0 0.2055 +0 0.0752 +0 0.1503 +0 0.0994 +0 0.0994 +0 0.1580 +0 0.0612 +0 0.0678 +0 0.2931 +0 0.0421 +0 0.0737 +0 0.1399 +0 0.1392 +0 0.0910 +0 0.0847 +0 0.1174 +0 0.0872 +0 0.2845 +0 0.1142 +0 0.0861 +0 0.1217 +0 0.0638 +0 0.1573 +0 0.1356 +0 0.1688 +0 0.0639 +0 0.1265 +0 0.2212 +0 0.0610 +0 0.3027 +0 0.2257 +0 0.0634 +0 0.0729 +0 0.2236 +0 0.1419 +0 0.0626 +0 0.7176 +0 0.5410 +0 0.1199 +0 0.0697 +0 0.0444 +0 0.0458 +0 0.0844 +0 0.1148 +0 0.4395 +0 0.1432 +0 0.0686 +0 0.0602 +0 0.1667 +0 0.0977 +0 0.0928 +0 0.2321 +0 0.1279 +0 0.0779 +0 0.1082 +1 0.7723 +0 0.0813 +0 0.1268 +0 0.2852 +0 0.1561 +0 0.1223 +0 0.0779 +0 0.0722 +0 0.2312 +0 0.0560 +0 0.1625 +0 0.1226 +0 0.1181 +0 0.1639 +0 0.1549 +0 0.0567 +0 0.1618 +0 0.0623 +0 0.4245 +0 0.0582 +0 0.0745 +0 0.1461 +0 0.0413 +0 0.0628 +0 0.0864 +0 0.2610 +0 0.4680 +0 0.1995 +0 0.0698 +0 0.0573 +0 0.4138 +0 0.0629 +0 0.0612 +0 0.0904 +0 0.3712 +0 0.4248 +0 0.0806 +0 0.0998 +0 0.0545 +0 0.1384 +0 0.1237 +0 0.0768 +0 0.2024 +0 0.1694 +0 0.0604 +0 0.1554 +0 0.0656 +0 0.0633 +0 0.0560 +0 0.0777 +0 0.1136 +0 0.2006 +0 0.0608 +0 0.0527 +0 0.1318 +0 0.0569 +0 0.1095 +0 0.1226 +0 0.1151 +0 0.1722 +0 0.1249 +0 0.1823 +0 0.0669 +0 0.0526 +0 0.1247 +0 0.1749 +0 0.0951 +0 0.1929 +0 0.0905 +0 0.1283 +0 0.1858 +0 0.0758 +0 0.0491 +0 0.0941 +0 0.0775 +0 0.2013 +0 0.0610 +0 0.0611 +0 0.0452 +0 0.1973 +0 0.0916 +0 0.1747 +0 0.1212 +0 0.1054 +0 0.0731 +0 0.3272 +0 0.2630 +0 0.0774 +0 0.2840 +0 0.0888 +0 0.1142 +0 0.0412 +0 0.0732 +0 0.0655 +0 0.1257 +0 0.1801 +0 0.0850 +0 0.0797 +0 0.0735 +0 0.0521 +0 0.1084 +0 0.2391 +0 0.1637 +0 0.0333 +0 0.1001 +0 0.0854 +0 0.0905 +0 0.0888 +0 0.1316 +0 0.1436 +0 0.1089 +0 0.0414 +0 0.1024 +0 0.0503 +0 0.1302 +0 0.6905 +0 0.4468 +0 0.0400 +0 0.1411 +0 0.1039 +0 0.1762 +0 0.0799 +0 0.0813 +0 0.1210 +0 0.1166 +0 0.0931 +0 0.0866 +0 0.1157 +0 0.0929 +0 0.1036 +0 0.7024 +0 0.0974 +0 0.0469 +0 0.2223 +0 0.0927 +0 0.0668 +0 0.1010 +0 0.0471 +0 0.0857 +0 0.0826 +0 0.1704 +0 0.0982 +0 0.4541 +0 0.1163 +0 0.0586 +0 0.2458 +0 0.2944 +1 0.8496 +0 0.2010 +0 0.2547 +0 0.0886 +0 0.0911 +0 0.4009 +0 0.2176 +0 0.5899 +0 0.0858 +0 0.1150 +0 0.0681 +0 0.1489 +0 0.0668 +0 0.0744 +0 0.0647 +0 0.0573 +0 0.1076 +0 0.0847 +0 0.0489 +0 0.0569 +0 0.0925 +0 0.0903 +0 0.1182 +0 0.0493 +0 0.0978 +0 0.0472 +0 0.1508 +0 0.0727 +0 0.1052 +0 0.1082 +0 0.1603 +0 0.0691 +0 0.0807 +0 0.0951 +0 0.0825 +0 0.0826 +0 0.0714 +0 0.0561 +0 0.0733 +0 0.0651 +0 0.0957 +0 0.0516 +0 0.0941 +0 0.1025 +0 0.0763 +0 0.2332 +0 0.0497 +0 0.1085 +0 0.0569 +0 0.1036 +0 0.1502 +0 0.1367 +0 0.0714 +0 0.0833 +0 0.1025 +0 0.0779 +0 0.1625 +0 0.0448 +0 0.0699 +0 0.2368 +0 0.2915 +0 0.0912 +0 0.1220 +0 0.0666 +0 0.1539 +0 0.0845 +0 0.1212 +0 0.2276 +0 0.1028 +0 0.0931 +0 0.0650 +0 0.0379 +0 0.0671 +0 0.0606 +0 0.2119 +0 0.3405 +0 0.0460 +0 0.1809 +0 0.2203 +0 0.2374 +0 0.0368 +0 0.2145 +0 0.0574 +0 0.6875 +0 0.0687 +0 0.4215 +0 0.0652 +0 0.1515 +0 0.1019 +0 0.2778 +0 0.0568 +0 0.0947 +0 0.1451 +0 0.1253 +0 0.0907 +0 0.2790 +0 0.1167 +0 0.1610 +0 0.1531 +0 0.0656 +0 0.0664 +0 0.0969 +0 0.1150 +0 0.0855 +0 0.2315 +0 0.1021 +0 0.6408 +0 0.1242 +0 0.0948 +0 0.1472 +0 0.1480 +0 0.1260 +0 0.0926 +0 0.2560 +0 0.1502 +0 0.0540 +0 0.0874 +0 0.1596 +0 0.0742 +0 0.1791 +0 0.0724 +0 0.1761 +0 0.1639 +0 0.0973 +0 0.1428 +0 0.0841 +0 0.0919 +0 0.1708 +0 0.0940 +1 0.8243 +0 0.0705 +0 0.0870 +0 0.1549 +0 0.0758 +0 0.0520 +0 0.0424 +0 0.0729 +0 0.0753 +0 0.0467 +0 0.0864 +0 0.1850 +0 0.2281 +0 0.1252 +0 0.0740 +0 0.0857 +0 0.1410 +0 0.1215 +0 0.1018 +0 0.1206 +0 0.0888 +0 0.1359 +0 0.0936 +0 0.0473 +0 0.2374 +0 0.0875 +0 0.3644 +0 0.1852 +0 0.2280 +0 0.1148 +0 0.1265 +0 0.2322 +0 0.1426 +0 0.0930 +0 0.0982 +0 0.1042 +0 0.0864 +0 0.0786 +0 0.2633 +0 0.2109 +0 0.0637 +0 0.0671 +0 0.2049 +0 0.1283 +0 0.0428 +0 0.1149 +0 0.3578 +0 0.3570 +0 0.1527 +0 0.0820 +0 0.1644 +0 0.1791 +0 0.0642 +0 0.0958 +0 0.0952 +0 0.2648 +0 0.0725 +0 0.0909 +0 0.2420 +1 0.7837 +0 0.0803 +0 0.0931 +0 0.0847 +0 0.0946 +0 0.1377 +0 0.0694 +0 0.1190 +0 0.0728 +0 0.0719 +0 0.1010 +0 0.1218 +0 0.1535 +0 0.1146 +0 0.0598 +0 0.2039 +0 0.1573 +0 0.1753 +0 0.0621 +0 0.3747 +0 0.1403 +0 0.1286 +0 0.1965 +0 0.0626 +0 0.1056 +0 0.2015 +0 0.1082 +0 0.0552 +0 0.1189 +0 0.1020 +0 0.0610 +0 0.0852 +0 0.0882 +0 0.1126 +0 0.1145 +0 0.1129 +0 0.2073 +0 0.1281 +0 0.0407 +0 0.4017 +0 0.0708 +0 0.0989 +0 0.3440 +0 0.0792 +0 0.0791 +0 0.1024 +0 0.0896 +0 0.2535 +0 0.2416 +0 0.0719 +0 0.0544 +0 0.1931 +0 0.1516 +0 0.0888 +0 0.0596 +0 0.0414 +0 0.0810 +0 0.1984 +0 0.1103 +0 0.0492 +0 0.2672 +0 0.0749 +0 0.1150 +0 0.1799 +0 0.0797 +0 0.0792 +0 0.0528 +0 0.5330 +0 0.0396 +0 0.0716 +0 0.2522 +0 0.0964 +0 0.2161 +0 0.3338 +0 0.1076 +0 0.2206 +0 0.0413 +0 0.0662 +0 0.0713 +0 0.1577 +0 0.1252 +0 0.0727 +0 0.0495 +0 0.0514 +0 0.2028 +0 0.3535 +0 0.2414 +0 0.1152 +0 0.1313 +0 0.1544 +0 0.2111 +0 0.1038 +0 0.1084 +0 0.3015 +0 0.0760 +0 0.0441 +0 0.5156 +0 0.5215 +0 0.1160 +0 0.1410 +0 0.0885 +0 0.1002 +0 0.0722 +0 0.0484 +0 0.0908 +0 0.0493 +0 0.3449 +0 0.1604 +0 0.0619 +0 0.0732 +0 0.1458 +0 0.0990 +0 0.5405 +0 0.1176 +0 0.1110 +0 0.0781 +0 0.1032 +0 0.2400 +0 0.1373 +0 0.1341 +0 0.0604 +0 0.3395 +0 0.0891 +0 0.5836 +0 0.2981 +0 0.1192 +0 0.1570 +0 0.0385 +0 0.0460 +0 0.0767 +0 0.2178 +0 0.1194 +0 0.1479 +0 0.0665 +0 0.1063 +0 0.0610 +0 0.1247 +0 0.1104 +0 0.0636 +0 0.0982 +0 0.1056 +0 0.1774 +0 0.0363 +1 0.8308 +0 0.0786 +0 0.2405 +0 0.2102 +0 0.0697 +0 0.1091 +0 0.4338 +0 0.1492 +0 0.1056 +0 0.0676 +0 0.1277 +0 0.1900 +0 0.4780 +0 0.0561 +0 0.0508 +0 0.2605 +0 0.0716 +0 0.7323 +0 0.1960 +0 0.0755 +0 0.0840 +0 0.0740 +0 0.2253 +0 0.0445 +0 0.1369 +0 0.0706 +0 0.0595 +0 0.0777 +0 0.2227 +0 0.0327 +0 0.3837 +0 0.0867 +0 0.0754 +0 0.7414 +0 0.1876 +0 0.1339 +0 0.0711 +0 0.1297 +0 0.1329 +0 0.0846 +0 0.0897 +0 0.1041 +0 0.0674 +0 0.0991 +0 0.0392 +0 0.1152 +0 0.1007 +0 0.0410 +0 0.1822 +0 0.0455 +0 0.0536 +0 0.1027 +0 0.0639 +0 0.0490 +0 0.0972 +0 0.0416 +0 0.0626 +0 0.6853 +0 0.1326 +0 0.4230 +0 0.1303 +0 0.1171 +0 0.0742 +0 0.0461 +0 0.1358 +0 0.0775 +0 0.0881 +0 0.3338 +0 0.2914 +0 0.2635 +0 0.1818 +0 0.0734 +0 0.1912 +0 0.1636 +0 0.1305 +1 0.8142 +0 0.0576 +0 0.0751 +0 0.1259 +0 0.4463 +0 0.1338 +0 0.0585 +0 0.0780 +0 0.1792 +0 0.1105 +0 0.2129 +0 0.1386 +0 0.1695 +0 0.1880 +0 0.0739 +0 0.0881 +0 0.0663 +0 0.1668 +0 0.1636 +0 0.0835 +0 0.0645 +0 0.0586 +0 0.0306 +0 0.1221 +0 0.1027 +0 0.0427 +0 0.6993 +0 0.0406 +0 0.1069 +0 0.0639 +0 0.1163 +0 0.0990 +0 0.0659 +0 0.1391 +0 0.0958 +0 0.0795 +0 0.0585 +0 0.0660 +0 0.6616 +0 0.1779 +0 0.0520 +0 0.1393 +0 0.2275 +0 0.1474 +0 0.0675 +0 0.1741 +0 0.1574 +0 0.0793 +0 0.1057 +0 0.0490 +0 0.1366 +0 0.0812 +0 0.1536 +0 0.3132 +0 0.0617 +0 0.1195 +0 0.0674 +0 0.0313 +0 0.1054 +0 0.0861 +0 0.0969 +0 0.2019 +0 0.2403 +0 0.0331 +0 0.0714 +0 0.0870 +0 0.0609 +0 0.1621 +0 0.0770 +0 0.2807 +0 0.1989 +0 0.0665 +0 0.0888 +0 0.0591 +0 0.1287 +0 0.0438 +0 0.0506 +0 0.3744 +0 0.1213 +0 0.0486 +0 0.4438 +0 0.0560 +0 0.2517 +0 0.1088 +0 0.0461 +0 0.1295 +0 0.1716 +0 0.0896 +0 0.0722 +0 0.2099 +0 0.1177 +0 0.5780 +0 0.0803 +0 0.1017 +0 0.2649 +0 0.6504 +0 0.1103 +0 0.0662 +0 0.1119 +0 0.0802 +0 0.0718 +0 0.0908 +0 0.1443 +0 0.3512 +0 0.0965 +0 0.0924 +0 0.0743 +0 0.1005 +0 0.6683 +0 0.0501 +0 0.2093 +0 0.1368 +0 0.0579 +0 0.0943 +0 0.0363 +0 0.4832 +1 0.7605 +0 0.0453 +0 0.0681 +0 0.0499 +0 0.0776 +0 0.1030 +0 0.7031 +0 0.2622 +0 0.1052 +0 0.2024 +0 0.1104 +0 0.1858 +0 0.0840 +0 0.1437 +0 0.1076 +0 0.0525 +0 0.3303 +0 0.0637 +0 0.1262 +0 0.3621 +0 0.0595 +0 0.2807 +0 0.3684 +0 0.0448 +0 0.4389 +0 0.0935 +0 0.1201 +0 0.0701 +0 0.2453 +0 0.0406 +0 0.1648 +0 0.0849 +0 0.2189 +0 0.1014 +0 0.1038 +0 0.1477 +0 0.1641 +0 0.0600 +0 0.1281 +0 0.0805 +0 0.0835 +0 0.0534 +0 0.1655 +0 0.1332 +0 0.1925 +0 0.1224 +0 0.1117 +0 0.6879 +0 0.3739 +0 0.0565 +0 0.1085 +0 0.3034 +0 0.1055 +0 0.0759 +0 0.0536 +1 0.7506 +0 0.0441 +0 0.0788 +0 0.0411 +0 0.0843 +0 0.2220 +0 0.0443 +0 0.0757 +0 0.1202 +0 0.0653 +0 0.1873 +0 0.1000 +0 0.0556 +0 0.1237 +0 0.0692 +0 0.2189 +0 0.1701 +0 0.0493 +0 0.0606 +0 0.1195 +0 0.1445 +0 0.1011 +0 0.1282 +0 0.0733 +0 0.1005 +0 0.1914 +0 0.0481 +0 0.1444 +0 0.0635 +0 0.1160 +0 0.0816 +0 0.0831 +0 0.0585 +0 0.0738 +0 0.1738 +0 0.2370 +0 0.2459 +0 0.1044 +0 0.1367 +0 0.0891 +0 0.0679 +0 0.0565 +0 0.1929 +0 0.0545 +0 0.0963 +0 0.0446 +0 0.0554 +0 0.2031 +0 0.0836 +0 0.4191 +0 0.1476 +0 0.2252 +0 0.1006 +0 0.1126 +0 0.2511 +0 0.1170 +0 0.0540 +0 0.1240 +0 0.1775 +0 0.2812 +0 0.0982 +0 0.1920 +0 0.0602 +0 0.1716 +0 0.3332 +0 0.0426 +0 0.1647 +0 0.2339 +0 0.0667 +0 0.0716 +0 0.3104 +0 0.0810 +0 0.0648 +0 0.3465 +0 0.0383 +0 0.0987 +0 0.0823 +0 0.0877 +0 0.0546 +0 0.0849 +0 0.0411 +0 0.0786 +0 0.1879 +0 0.0794 +0 0.0712 +0 0.1724 +0 0.0382 +0 0.1277 +0 0.0581 +0 0.0752 +0 0.0856 +0 0.0576 +0 0.0655 +0 0.1084 +0 0.0848 +0 0.2322 +0 0.0415 +0 0.1341 +0 0.4419 +0 0.1247 +0 0.1447 +0 0.1986 +0 0.1255 +0 0.2495 +0 0.1925 +0 0.0726 +0 0.1119 +0 0.1089 +0 0.1440 +0 0.0688 +0 0.1126 +0 0.3484 +0 0.1415 +0 0.1676 +0 0.0575 +0 0.1775 +0 0.0766 +0 0.0898 +0 0.1484 +0 0.1086 +0 0.1248 +0 0.1083 +0 0.1851 +0 0.2946 +0 0.0678 +0 0.2248 +0 0.0724 +0 0.0700 +0 0.1214 +0 0.1107 +0 0.0777 +0 0.1615 +0 0.0580 +0 0.1168 +0 0.0782 +0 0.7160 +0 0.0948 +0 0.0971 +0 0.1527 +0 0.4079 +0 0.1910 +0 0.0633 +0 0.1085 +0 0.1572 +0 0.0629 +0 0.7201 +0 0.0826 +0 0.1059 +0 0.1042 +0 0.1514 +0 0.0393 +0 0.3150 +0 0.2666 +0 0.1073 +0 0.0923 +0 0.3269 +0 0.0568 +0 0.0479 +0 0.2722 +0 0.0685 +0 0.1210 +0 0.0540 +0 0.1810 +0 0.1135 +0 0.1311 +0 0.0548 +0 0.1446 +0 0.2768 +0 0.0302 +0 0.5818 +0 0.0617 +0 0.1674 +0 0.0608 +0 0.0782 +0 0.1868 +0 0.0444 +0 0.0945 +0 0.1193 +0 0.1616 +1 0.8661 +0 0.0397 +0 0.0698 +0 0.2745 +0 0.0689 +0 0.1338 +0 0.0418 +0 0.1193 +0 0.1266 +0 0.0590 +0 0.0536 +0 0.0399 +0 0.0718 +0 0.1303 +0 0.0663 +0 0.1330 +0 0.0474 +0 0.0698 +0 0.1567 +0 0.3522 +0 0.2565 +0 0.0757 +0 0.0993 +0 0.0924 +0 0.0518 +0 0.0677 +0 0.0683 +0 0.5635 +0 0.1898 +0 0.3060 +0 0.2369 +0 0.1691 +0 0.4753 +0 0.0467 +0 0.0972 +0 0.0888 +0 0.1625 +0 0.0873 +0 0.2795 +0 0.1350 +0 0.1357 +0 0.0502 +0 0.0910 +0 0.1005 +0 0.1264 +0 0.1039 +0 0.1414 +0 0.1371 +0 0.0823 +0 0.0719 +0 0.3636 +0 0.1214 +0 0.1250 +0 0.0535 +0 0.1091 +0 0.1323 +0 0.1369 +0 0.0650 +0 0.0511 +0 0.0407 +0 0.0733 +0 0.2287 +0 0.2005 +0 0.2563 +0 0.0643 +0 0.0865 +0 0.2367 +0 0.0449 +0 0.0479 +0 0.0338 +0 0.7388 +0 0.0763 +0 0.2592 +0 0.3342 +0 0.2945 +1 0.7855 +0 0.0593 +0 0.0694 +0 0.1853 +0 0.1052 +0 0.2085 +0 0.0910 +0 0.2278 +0 0.1082 +0 0.2478 +0 0.2123 +0 0.0755 +0 0.1172 +0 0.1397 +0 0.0516 +0 0.0842 +0 0.0459 +0 0.1482 +0 0.0986 +0 0.1501 +0 0.0756 +0 0.1350 +1 0.7636 +0 0.2303 +0 0.1170 +0 0.1471 +0 0.0665 +0 0.0858 +0 0.5107 +0 0.2017 +0 0.2078 +0 0.0824 +0 0.0736 +0 0.1108 +0 0.6700 +0 0.1595 +0 0.1090 +0 0.0745 +0 0.0811 +0 0.0474 +0 0.3113 +0 0.1143 +0 0.0653 +0 0.0896 +1 0.7744 +0 0.2013 +0 0.2290 +0 0.1710 +0 0.1321 +0 0.2274 +0 0.1412 +0 0.1462 +0 0.1581 +0 0.0729 +0 0.1111 +0 0.1614 +0 0.0707 +0 0.0509 +0 0.2227 +0 0.1948 +0 0.1268 +0 0.0775 +0 0.5230 +0 0.1635 +0 0.0900 +0 0.0559 +0 0.2417 +0 0.0363 +0 0.2146 +0 0.1362 +0 0.1586 +0 0.0761 +0 0.1461 +0 0.0888 +0 0.1684 +0 0.0801 +0 0.0989 +0 0.1920 +0 0.1670 +0 0.2433 +0 0.0785 +0 0.0628 +0 0.0706 +0 0.0477 +0 0.2320 +0 0.4076 +0 0.0744 +0 0.0574 +0 0.5451 +0 0.0871 +0 0.0825 +0 0.0753 +0 0.0834 +0 0.1402 +0 0.1065 +0 0.7286 +0 0.0312 +0 0.1370 +0 0.1270 +0 0.0827 +0 0.1058 +0 0.7405 +0 0.1555 +0 0.1255 +0 0.1373 +0 0.1442 +0 0.1259 +0 0.1057 +0 0.2515 +0 0.0784 +0 0.0669 +0 0.6988 +0 0.0863 +0 0.0353 +1 0.8315 +0 0.1033 +0 0.1153 +0 0.1921 +0 0.0641 +0 0.1069 +0 0.1531 +0 0.0907 +0 0.2153 +0 0.0921 +0 0.1497 +0 0.1241 +0 0.0533 +0 0.0325 +0 0.1356 +0 0.0754 +0 0.2140 +0 0.4018 +0 0.1531 +0 0.0771 +0 0.3388 +0 0.0819 +0 0.1051 +0 0.0398 +0 0.0960 +0 0.1790 +0 0.2843 +0 0.0877 +0 0.2126 +0 0.1483 +0 0.0759 +0 0.2347 +0 0.0761 +0 0.0919 +0 0.0413 +0 0.0829 +0 0.7382 +0 0.1090 +0 0.0776 +0 0.0998 +0 0.1139 +0 0.1590 +0 0.0841 +0 0.1113 +0 0.1116 +0 0.2196 +1 0.8119 +0 0.0606 +0 0.2085 +0 0.2391 +0 0.0628 +0 0.0830 +0 0.1403 +0 0.2225 +0 0.0620 +0 0.0859 +0 0.0551 +0 0.0657 +0 0.0921 +0 0.2225 +0 0.0400 +0 0.1370 +0 0.1998 +0 0.0712 +0 0.0718 +0 0.1709 +0 0.2102 +0 0.1995 +0 0.1428 +0 0.0584 +0 0.0982 +0 0.0752 +0 0.1156 +0 0.0570 +0 0.1205 +0 0.0831 +0 0.0615 +1 0.7571 +0 0.0740 +0 0.1088 +0 0.1143 +0 0.0784 +0 0.0669 +0 0.1026 +0 0.1546 +0 0.0484 +0 0.0307 +0 0.0699 +0 0.1067 +0 0.1528 +0 0.0370 +0 0.1598 +0 0.1213 +0 0.2936 +0 0.0432 +0 0.0776 +0 0.1011 +0 0.0685 +0 0.6360 +0 0.1927 +0 0.1193 +0 0.2205 +0 0.0718 +0 0.0817 +0 0.0622 +0 0.1068 +0 0.0353 +0 0.0459 +0 0.0621 +0 0.0383 +0 0.0575 +0 0.0952 +0 0.0996 +0 0.1646 +0 0.0899 +0 0.0326 +0 0.1048 +1 0.2815 +0 0.7475 +0 0.1513 +0 0.0927 +0 0.1135 +0 0.1018 +0 0.1011 +0 0.1675 +0 0.2211 +0 0.2157 +0 0.1977 +0 0.0891 +0 0.0975 +0 0.0349 +0 0.0783 +0 0.1129 +0 0.1604 +0 0.0984 +0 0.0874 +0 0.0808 +0 0.1005 +0 0.1316 +0 0.1378 +0 0.6595 +0 0.0618 +0 0.4523 +0 0.1337 +0 0.2021 +0 0.1659 +0 0.0981 +0 0.0927 +0 0.1293 +0 0.2548 +0 0.0841 +0 0.0920 +0 0.2371 +0 0.0514 +0 0.1984 +0 0.1397 +0 0.0936 +0 0.1506 +0 0.2414 +0 0.1726 +0 0.1271 +0 0.1409 +0 0.0496 +0 0.0811 +0 0.2541 +0 0.1382 +0 0.6183 +0 0.0882 +0 0.1204 +0 0.0970 +0 0.1181 +0 0.3928 +0 0.1061 +0 0.1000 +0 0.0402 +0 0.4622 +0 0.1313 +0 0.0573 +0 0.0507 +0 0.0792 +0 0.1187 +0 0.0901 +0 0.6397 +0 0.2422 +0 0.0531 +0 0.0455 +0 0.1593 +0 0.1127 +0 0.0816 +0 0.0517 +0 0.0498 +0 0.2415 +0 0.1280 +0 0.0936 +0 0.0617 +0 0.1426 +0 0.1668 +0 0.0485 +0 0.1469 +0 0.1412 +0 0.0602 +0 0.1330 +0 0.1860 +0 0.0413 +0 0.1406 +0 0.0761 +0 0.0491 +0 0.1359 +0 0.1053 +0 0.1499 +0 0.1723 +0 0.2793 +0 0.1429 +0 0.0911 +0 0.1855 +0 0.0843 +0 0.0932 +0 0.1425 +0 0.1889 +0 0.1006 +0 0.0897 +0 0.0963 +0 0.1238 +0 0.0374 +0 0.0887 +0 0.0677 +0 0.1270 +0 0.1879 +0 0.1767 +0 0.1310 +0 0.0890 +0 0.0827 +0 0.2246 +0 0.2969 +0 0.0464 +0 0.0764 +0 0.2732 +0 0.6573 +0 0.0742 +0 0.0535 +0 0.0850 +0 0.1372 +0 0.1534 +0 0.1061 +0 0.0679 +0 0.2430 +0 0.2431 +0 0.0864 +0 0.2192 +0 0.0825 +0 0.1435 +0 0.0623 +0 0.0804 +0 0.1251 +0 0.0695 +0 0.6079 +0 0.0842 +0 0.1017 +0 0.0468 +0 0.1966 +0 0.2396 +1 0.8205 +0 0.0655 +0 0.0968 +1 0.8485 +0 0.0591 +0 0.4244 +0 0.1010 +0 0.0769 +0 0.0521 +0 0.0794 +0 0.0770 +1 0.8454 +0 0.1276 +0 0.0352 +0 0.0850 +0 0.0841 +0 0.0545 +0 0.0594 +0 0.2344 +0 0.1324 +0 0.0809 +0 0.1213 +0 0.0960 +0 0.0518 +0 0.2231 +1 0.8076 +0 0.1241 +0 0.2121 +0 0.0615 +0 0.1213 +0 0.1710 +0 0.2494 +0 0.0768 +0 0.1352 +0 0.1509 +0 0.0920 +0 0.0778 +0 0.0758 +0 0.0904 +0 0.0958 +0 0.0700 +0 0.0653 +0 0.0822 +1 0.7574 +0 0.1652 +0 0.0604 +0 0.1443 +0 0.2272 +0 0.0466 +0 0.1476 +0 0.0483 +0 0.0764 +0 0.4112 +0 0.0984 +0 0.0802 +0 0.0760 +0 0.0772 +0 0.2362 +0 0.0451 +0 0.0787 +0 0.0962 +0 0.0453 +0 0.1305 +0 0.0887 +0 0.0556 +0 0.0799 +0 0.0390 +0 0.0622 +0 0.0825 +0 0.1283 +0 0.1864 +0 0.0986 +0 0.0851 +0 0.2295 +0 0.0919 +0 0.0913 +0 0.0520 +0 0.1386 +0 0.0915 +0 0.2680 +0 0.0617 +0 0.0867 +0 0.1323 +0 0.1625 +0 0.2416 +0 0.1552 +0 0.6389 +0 0.0819 +0 0.2177 +0 0.0600 +0 0.1177 +0 0.1754 +0 0.2765 +0 0.1217 +0 0.1833 +0 0.0812 +0 0.1496 +0 0.1279 +0 0.2142 +0 0.5390 +0 0.0408 +0 0.1355 +0 0.0372 +0 0.1187 +0 0.1106 +0 0.2357 +0 0.0872 +0 0.1409 +0 0.1525 +0 0.1683 +0 0.2699 +0 0.2261 +0 0.1638 +0 0.2910 +0 0.1234 +0 0.0829 +0 0.0643 +0 0.1065 +0 0.1115 +0 0.1189 +0 0.0625 +0 0.0372 +0 0.1425 +0 0.1893 +0 0.0741 +0 0.1155 +0 0.0992 +0 0.0448 +0 0.1655 +0 0.0749 +0 0.2069 +0 0.3931 +0 0.0573 +0 0.2436 +0 0.0463 +0 0.0506 +0 0.1161 +0 0.1021 +0 0.0879 +0 0.2273 +0 0.0550 +0 0.3779 +0 0.4716 +0 0.0642 +0 0.0935 +0 0.1013 +0 0.0496 +0 0.0527 +0 0.4311 +0 0.0928 +0 0.0863 +0 0.0579 +0 0.1684 +0 0.0718 +0 0.3010 +0 0.0842 +0 0.1592 +0 0.0391 +0 0.0952 +0 0.0720 +0 0.0436 +0 0.0518 +0 0.2340 +0 0.2152 +0 0.0724 +0 0.1183 +0 0.3171 +0 0.1703 +0 0.1578 +0 0.1263 +0 0.1021 +0 0.0700 +0 0.0547 +0 0.1072 +0 0.1356 +0 0.1149 +0 0.1007 +0 0.0793 +0 0.3398 +0 0.1849 +0 0.0802 +0 0.2241 +0 0.0800 +0 0.3595 +0 0.0839 +0 0.2905 +0 0.0488 +0 0.0567 +0 0.0813 +0 0.0955 +0 0.0974 +0 0.1207 +0 0.1178 +0 0.2244 +0 0.0806 +0 0.1025 +0 0.0684 +0 0.1387 +0 0.1690 +0 0.1078 +0 0.0671 +0 0.2560 +1 0.8628 +0 0.1016 +0 0.1276 +0 0.1641 +0 0.0344 +0 0.0529 +0 0.0586 +0 0.1454 +0 0.0502 +0 0.0958 +0 0.1658 +0 0.0833 +0 0.0634 +1 0.7741 +0 0.1344 +0 0.1343 +0 0.1465 +0 0.0588 +0 0.1015 +0 0.0682 +0 0.0539 +0 0.2486 +0 0.1021 +0 0.1260 +0 0.1147 +0 0.1469 +0 0.2091 +0 0.0827 +0 0.3559 +0 0.0860 +0 0.0812 +0 0.1254 +0 0.1793 +0 0.1124 +0 0.2478 +0 0.0773 +0 0.0399 +0 0.1086 +0 0.0539 +0 0.0994 +0 0.3884 +0 0.0690 +0 0.1361 +0 0.1930 +0 0.0547 +0 0.1509 +0 0.0628 +0 0.2959 +0 0.1759 +0 0.0653 +0 0.1280 +0 0.0514 +0 0.1797 +0 0.0467 +0 0.0719 +0 0.4843 +0 0.1909 +0 0.3107 +0 0.1549 +0 0.1094 +1 0.7716 +0 0.3313 +0 0.1124 +0 0.0606 +0 0.1209 +0 0.0850 +0 0.0943 +0 0.3125 +0 0.2893 +0 0.0483 +0 0.0973 +0 0.1468 +0 0.0516 +0 0.0717 +0 0.1033 +0 0.1929 +0 0.0779 +0 0.1130 +1 0.7818 +0 0.0948 +0 0.0973 +1 0.7962 +1 0.8521 +0 0.2474 +0 0.2783 +0 0.0520 +0 0.1603 +0 0.0448 +0 0.1200 +0 0.2699 +0 0.7489 +0 0.1502 +0 0.1134 +0 0.1041 +0 0.0303 +0 0.0861 +0 0.0953 +0 0.3488 +0 0.2748 +0 0.0518 +0 0.2424 +0 0.0893 +0 0.3319 +0 0.1886 +0 0.0495 +0 0.1008 +0 0.1264 +0 0.2102 +0 0.1023 +0 0.0538 +0 0.2583 +0 0.0532 +0 0.1373 +0 0.1242 +0 0.2356 +0 0.0631 +0 0.0397 +0 0.1176 +0 0.1191 +0 0.1864 +1 0.7720 +0 0.1720 +0 0.2530 +0 0.0750 +0 0.5482 +0 0.1757 +0 0.7218 +0 0.0730 +0 0.0890 +0 0.1071 +0 0.2222 +0 0.3612 +0 0.0720 +0 0.2468 +0 0.0741 +0 0.2248 +0 0.4223 +0 0.0731 +0 0.0339 +0 0.1895 +0 0.0954 +0 0.1265 +0 0.0572 +0 0.1548 +0 0.3847 +0 0.0448 +0 0.0450 +0 0.0607 +0 0.1732 +0 0.1320 +0 0.1070 +0 0.0704 +0 0.1411 +0 0.0586 +0 0.0405 +0 0.1729 +0 0.0809 +0 0.0345 +1 0.8446 +0 0.0570 +0 0.1522 +0 0.0460 +0 0.0435 +0 0.1034 +0 0.2031 +0 0.0924 +0 0.2745 +0 0.0550 +0 0.0939 +0 0.2831 +0 0.1691 +0 0.0873 +0 0.0430 +0 0.0987 +0 0.0702 +0 0.1242 +0 0.0514 +0 0.1122 +0 0.1715 +0 0.4002 +0 0.1334 +0 0.0609 +0 0.1661 +0 0.1174 +0 0.2092 +0 0.0463 +0 0.1648 +0 0.0786 +0 0.2042 +0 0.3549 +0 0.0581 +0 0.1316 +0 0.2637 +0 0.3029 +0 0.0373 +0 0.1026 +0 0.0745 +0 0.0537 +0 0.1416 +0 0.1004 +0 0.1872 +0 0.0796 +0 0.1571 +0 0.0578 +0 0.0528 +0 0.0594 +0 0.1096 +0 0.0840 +0 0.0797 +0 0.0447 +0 0.0810 +0 0.1244 +0 0.5937 +0 0.0489 +0 0.4662 +0 0.1621 +0 0.1279 +0 0.0406 +0 0.0592 +0 0.1811 +0 0.1203 +0 0.1604 +0 0.0800 +0 0.6294 +1 0.8428 +0 0.1341 +0 0.1710 +0 0.6239 +0 0.0560 +0 0.1909 +0 0.0871 +0 0.1099 +0 0.0582 +0 0.0557 +0 0.1622 +0 0.1101 +0 0.0696 +0 0.6571 +0 0.0546 +0 0.0554 +0 0.0477 +0 0.0778 +0 0.0841 +0 0.0757 +0 0.1659 +0 0.6771 +0 0.1159 +0 0.2740 +0 0.1108 +0 0.0554 +0 0.2251 +0 0.1152 +0 0.1961 +0 0.1708 +0 0.0559 +0 0.2484 +0 0.1098 +0 0.1892 +0 0.1302 +0 0.1346 +0 0.1001 +0 0.0675 +0 0.0803 +0 0.0511 +0 0.1107 +0 0.2074 +0 0.2813 +0 0.0738 +0 0.1151 +0 0.0707 +0 0.2092 +0 0.1235 +0 0.0849 +0 0.0991 +0 0.0927 +0 0.2947 +0 0.1177 +0 0.0359 +0 0.0803 +0 0.1627 +0 0.2228 +0 0.2023 +0 0.1340 +0 0.4014 +0 0.1256 +0 0.2713 +0 0.2349 +0 0.0759 +0 0.0708 +0 0.2021 +0 0.1614 +0 0.0939 +0 0.1651 +0 0.1030 +0 0.3202 +0 0.0741 +0 0.0913 +1 0.8145 +0 0.1104 +0 0.3837 +0 0.1261 +0 0.0729 +0 0.0545 +0 0.0642 +0 0.0669 +0 0.0956 +0 0.2719 +0 0.2092 +0 0.0808 +0 0.0746 +0 0.2520 +0 0.0753 +0 0.0703 +0 0.0615 +0 0.1671 +0 0.1226 +0 0.1007 +0 0.0831 +0 0.1004 +0 0.1616 +0 0.1124 +0 0.5185 +0 0.0531 +0 0.1275 +0 0.1250 +0 0.2311 +0 0.0698 +0 0.1492 +0 0.2059 +0 0.0529 +0 0.0960 +1 0.8441 +0 0.0838 +0 0.1519 +0 0.0843 +0 0.1330 +0 0.0890 +0 0.0526 +0 0.0674 +0 0.1560 +0 0.0968 +0 0.0790 +0 0.2937 +0 0.0480 +0 0.6430 +0 0.2010 +0 0.0945 +0 0.0891 +0 0.0594 +0 0.0826 +0 0.2348 +0 0.0958 +0 0.1362 +0 0.1107 +0 0.1481 +0 0.1491 +0 0.1176 +0 0.2795 +0 0.5540 +0 0.1272 +0 0.1030 +0 0.0587 +0 0.1952 +0 0.1145 +0 0.0958 +0 0.1391 +0 0.1504 +0 0.1209 +0 0.0765 +0 0.0719 +0 0.1042 +0 0.1172 +0 0.3431 +0 0.1084 +0 0.0896 +0 0.1209 +0 0.3051 +0 0.0837 +0 0.1031 +0 0.1342 +1 0.8636 +0 0.1351 +0 0.3576 +0 0.0996 +0 0.2743 +0 0.0381 +0 0.1848 +0 0.1712 +0 0.0831 +0 0.5558 +0 0.0568 +0 0.2803 +0 0.0586 +0 0.1046 +0 0.1152 +0 0.2554 +0 0.1166 +0 0.1664 +0 0.0769 +0 0.1380 +0 0.1532 +0 0.0490 +0 0.2741 +0 0.1246 +0 0.0521 +0 0.1118 +0 0.0981 +0 0.0701 +0 0.0552 +0 0.0939 +0 0.5949 +0 0.1865 +0 0.2380 +0 0.1023 +0 0.0756 +0 0.1076 +0 0.1072 +0 0.1224 +0 0.0677 +0 0.3291 +0 0.0497 +0 0.0793 +0 0.1671 +0 0.5106 +0 0.7492 +0 0.0350 +0 0.0553 +0 0.1592 +0 0.0570 +0 0.0400 +0 0.1716 +0 0.2028 +0 0.0578 +0 0.1538 +0 0.0788 +0 0.0918 +0 0.1930 +0 0.1218 +0 0.0431 +0 0.0989 +0 0.1077 +0 0.0654 +0 0.0759 +0 0.2314 +0 0.0959 +0 0.1142 +0 0.1382 +0 0.1118 +0 0.0658 +1 0.8222 +0 0.0670 +0 0.0391 +0 0.1796 +0 0.0547 +0 0.1944 +0 0.0410 +0 0.1413 +0 0.1226 +0 0.1374 +0 0.0624 +0 0.3686 +0 0.0840 +0 0.0999 +0 0.2055 +0 0.0843 +0 0.1109 +0 0.0944 +0 0.0607 +0 0.1399 +0 0.0434 +0 0.0537 +0 0.1404 +0 0.1121 +0 0.1545 +0 0.0669 +0 0.0675 +0 0.0797 +0 0.1425 +0 0.1155 +0 0.1072 +0 0.1099 +0 0.0778 +0 0.0605 +0 0.0823 +0 0.1544 +0 0.0831 +0 0.0885 +0 0.0790 +1 0.7876 +0 0.0903 +0 0.1709 +0 0.1435 +0 0.0451 +0 0.0909 +0 0.1176 +0 0.0842 +0 0.0765 +0 0.1307 +0 0.1145 +0 0.0524 +0 0.0543 +0 0.1777 +0 0.0789 +0 0.0619 +0 0.1020 +0 0.1626 +1 0.8625 +0 0.0846 +0 0.1516 +0 0.3798 +0 0.0480 +0 0.1783 +0 0.0709 +0 0.4276 +0 0.0852 +0 0.0832 +0 0.0955 +0 0.0718 +0 0.0825 +0 0.1256 +0 0.1847 +0 0.0681 +0 0.1775 +0 0.1028 +0 0.2579 +0 0.1004 +0 0.1042 +0 0.1171 +0 0.1460 +0 0.1843 +0 0.0828 +0 0.1361 +0 0.0349 +0 0.2161 +0 0.1006 +0 0.2288 +0 0.2685 +0 0.0602 +0 0.4493 +0 0.1924 +0 0.1186 +0 0.0744 +0 0.0761 +0 0.1081 +0 0.0855 +0 0.1064 +0 0.1202 +0 0.1969 +0 0.1592 +0 0.1575 +0 0.1151 +0 0.1685 +0 0.1170 +0 0.1169 +0 0.1181 +0 0.2000 +0 0.2093 +0 0.1580 +0 0.0832 +0 0.0902 +0 0.3211 +0 0.4330 +0 0.0986 +0 0.1123 +0 0.1925 +0 0.3165 +0 0.1190 +0 0.0433 +0 0.4406 +0 0.1060 +0 0.0846 +0 0.0565 +0 0.1085 +0 0.1903 +0 0.0617 +0 0.0681 +0 0.3755 +0 0.0381 +0 0.0859 +0 0.0746 +0 0.1504 +0 0.1689 +0 0.0641 +0 0.2501 +0 0.1044 +0 0.0848 +0 0.1268 +0 0.1454 +0 0.0988 +0 0.0886 +0 0.0997 +0 0.1303 +0 0.1503 +0 0.0821 +0 0.6863 +0 0.1770 +0 0.0985 +0 0.1031 +0 0.0782 +0 0.1049 +0 0.7249 +0 0.0398 +0 0.0467 +0 0.0468 +0 0.0942 +0 0.1291 +0 0.3565 +0 0.1048 +0 0.0576 +0 0.2584 +0 0.3436 +0 0.2012 +0 0.1199 +0 0.1350 +0 0.3987 +0 0.1198 +0 0.0540 +0 0.0744 +0 0.0939 +0 0.1132 +0 0.0737 +0 0.7114 +0 0.1060 +0 0.0477 +0 0.0903 +0 0.0841 +1 0.8123 +0 0.2814 +0 0.0459 +0 0.1741 +0 0.0797 +0 0.0939 +0 0.0868 +0 0.0873 +0 0.1989 +0 0.1035 +0 0.1027 +0 0.0799 +0 0.0456 +0 0.0775 +0 0.0791 +0 0.0553 +0 0.0927 +0 0.1868 +0 0.0566 +0 0.1582 +0 0.0804 +0 0.0431 +0 0.6834 +0 0.2127 +0 0.1714 +0 0.3095 +0 0.0439 +0 0.0764 +0 0.4975 +0 0.1444 +0 0.0364 +0 0.0700 +0 0.1841 +0 0.1199 +0 0.0820 +0 0.0934 +0 0.0391 +0 0.1204 +0 0.0671 +0 0.0907 +0 0.0898 +0 0.0670 +0 0.0802 +0 0.0553 +0 0.0786 +0 0.0823 +0 0.1124 +0 0.0652 +0 0.0488 +0 0.0661 +0 0.2087 +0 0.0835 +0 0.0859 +0 0.2614 +0 0.1048 +0 0.1140 +0 0.1737 +0 0.0704 +0 0.0635 +0 0.0512 +0 0.1441 +0 0.3313 +0 0.1156 +0 0.3162 +0 0.1840 +0 0.0514 +0 0.1053 +0 0.2284 +0 0.0448 +0 0.0654 +0 0.1357 +0 0.0596 +0 0.1513 +0 0.1634 +0 0.0965 +0 0.0997 +0 0.0937 +0 0.0659 +0 0.1096 +0 0.0929 +0 0.1242 +0 0.0959 +0 0.1178 +0 0.1199 +0 0.0412 +0 0.3328 +0 0.1970 +0 0.0350 +0 0.2485 +0 0.0814 +0 0.0685 +0 0.0621 +0 0.0774 +0 0.1057 +0 0.1183 +0 0.1012 +0 0.0908 +0 0.0466 +0 0.0504 +0 0.0789 +0 0.0796 +0 0.0703 +0 0.0371 +0 0.1752 +0 0.0642 +0 0.0869 +0 0.0672 +0 0.1837 +0 0.0923 +0 0.2454 +0 0.0407 +0 0.0706 +0 0.0941 +0 0.0993 +0 0.2015 +0 0.0760 +0 0.0960 +0 0.0510 +0 0.1025 +0 0.3621 +0 0.2619 +0 0.0556 +0 0.0549 +0 0.0894 +0 0.0638 +0 0.2437 +0 0.0774 +0 0.1000 +0 0.1075 +0 0.2534 +0 0.0995 +0 0.0358 +0 0.0481 +0 0.0814 +0 0.1584 +0 0.1507 +0 0.1780 +0 0.1482 +0 0.1559 +0 0.0706 +0 0.1173 +0 0.1986 +0 0.0370 +0 0.1727 +0 0.1355 +0 0.0440 +0 0.0918 +0 0.0800 +0 0.3331 +0 0.0831 +0 0.1231 +0 0.3890 +0 0.0909 +0 0.2244 +0 0.0590 +0 0.1166 +0 0.1013 +0 0.2468 +0 0.1153 +0 0.0950 +0 0.0839 +0 0.1919 +0 0.4538 +0 0.2063 +0 0.3243 +0 0.0891 +0 0.1429 +0 0.2141 +0 0.0556 +0 0.1672 +0 0.1728 +0 0.1204 +0 0.1697 +0 0.1229 +0 0.0636 +0 0.0794 +0 0.2050 +1 0.7605 +0 0.5124 +0 0.0801 +0 0.1041 +0 0.1265 +0 0.6880 +0 0.3244 +0 0.0759 +0 0.0597 +0 0.0417 +0 0.1034 +0 0.0333 +0 0.2873 +0 0.1204 +1 0.8031 +0 0.1399 +0 0.0578 +0 0.0904 +0 0.1227 +0 0.0560 +0 0.1228 +0 0.0769 +0 0.0948 +0 0.1112 +0 0.1022 +0 0.2626 +1 0.7811 +0 0.0703 +0 0.0674 +0 0.0598 +0 0.1179 +0 0.1110 +0 0.0599 +0 0.0720 +0 0.1143 +0 0.0881 +0 0.0713 +0 0.0641 +0 0.0857 +0 0.0932 +0 0.4282 +0 0.1058 +0 0.2030 +0 0.0929 +0 0.0852 +0 0.0545 +0 0.0748 +0 0.3801 +0 0.1440 +0 0.1161 +0 0.0786 +0 0.0822 +0 0.1275 +0 0.0873 +0 0.1458 +0 0.1694 +0 0.0380 +0 0.0692 +0 0.7355 +0 0.1266 +0 0.1154 +0 0.1478 +0 0.0863 +0 0.1042 +0 0.1546 +0 0.4030 +0 0.1210 +0 0.1222 +0 0.1877 +0 0.0411 +0 0.0710 +0 0.0370 +0 0.1270 +0 0.1595 +0 0.0537 +0 0.0877 +0 0.1554 +0 0.1057 +0 0.0440 +0 0.0401 +0 0.0711 +0 0.1142 +0 0.0692 +0 0.2608 +0 0.3498 +0 0.1064 +0 0.1246 +0 0.2277 +0 0.1317 +0 0.0683 +0 0.1099 +0 0.0818 +0 0.0504 +0 0.1375 +0 0.1257 +0 0.0567 +0 0.1276 +0 0.2108 +0 0.0547 +0 0.1009 +0 0.1256 +0 0.1442 +0 0.1903 +0 0.0760 +0 0.1875 +0 0.1809 +0 0.1415 +0 0.1487 +0 0.0444 +0 0.0864 +0 0.1638 +0 0.3010 +0 0.0738 +0 0.2333 +0 0.0657 +0 0.0806 +1 0.7830 +0 0.3642 +0 0.0848 +0 0.1956 +0 0.1908 +0 0.0745 +0 0.1078 +0 0.1141 +0 0.1262 +0 0.1743 +0 0.3569 +0 0.0636 +0 0.3687 +0 0.4450 +0 0.2039 +0 0.0584 +0 0.1215 +0 0.1462 +0 0.1552 +0 0.0721 +0 0.1031 +0 0.0763 +0 0.1345 +0 0.1826 +0 0.2464 +0 0.1652 +0 0.0436 +0 0.1635 +0 0.4921 +0 0.0909 +0 0.1693 +0 0.0781 +0 0.2404 +0 0.1475 +0 0.0789 +0 0.0589 +0 0.5202 +0 0.1483 +0 0.1592 +0 0.1311 +0 0.0780 +0 0.1183 +0 0.1158 +0 0.1046 +0 0.2101 +1 0.7719 +0 0.1727 +0 0.0830 +0 0.0428 +0 0.2751 +0 0.2125 +0 0.1950 +0 0.0819 +0 0.0561 +0 0.1330 +1 0.7939 +0 0.0965 +0 0.0968 +0 0.2455 +0 0.2299 +0 0.0612 +0 0.0824 +0 0.4297 +0 0.1121 +0 0.1572 +0 0.0868 +0 0.1844 +0 0.0643 +0 0.1993 +0 0.1312 +0 0.3425 +0 0.0872 +0 0.0782 +0 0.0629 +0 0.0453 +0 0.2770 +0 0.2150 +0 0.0962 +0 0.1129 +0 0.1088 +0 0.1321 +0 0.6518 +0 0.3120 +0 0.1645 +0 0.2949 +0 0.1292 +0 0.1803 +0 0.0654 +0 0.0602 +0 0.0886 +0 0.1335 +0 0.6751 +0 0.0923 +0 0.0888 +0 0.0327 +0 0.2380 +0 0.0871 +0 0.1985 +0 0.1346 +0 0.1141 +0 0.1343 +0 0.1852 +0 0.0902 +0 0.3590 +0 0.0980 +0 0.2359 +0 0.1647 +0 0.2725 +0 0.1482 +0 0.0389 +0 0.0853 +0 0.0675 +0 0.0624 +0 0.1120 +0 0.0484 +0 0.0735 +0 0.0572 +0 0.0782 +0 0.1058 +0 0.1123 +0 0.0700 +1 0.8505 +0 0.0688 +0 0.3766 +0 0.1078 +0 0.1026 +0 0.1218 +0 0.1287 +0 0.3277 +0 0.0709 +0 0.5815 +0 0.0376 +0 0.1695 +0 0.0680 +0 0.3620 +0 0.0855 +0 0.0522 +0 0.1326 +0 0.1481 +0 0.1633 +0 0.0698 +0 0.0605 +0 0.1601 +0 0.0599 +0 0.1032 +0 0.0759 +0 0.0421 +0 0.0656 +1 0.7629 +0 0.0893 +0 0.1399 +0 0.0792 +0 0.4618 +0 0.1235 +0 0.1561 +0 0.1110 +0 0.0820 +0 0.1050 +0 0.0631 +0 0.0913 +0 0.1371 +0 0.2758 +0 0.0514 +0 0.0554 +0 0.1833 +0 0.1668 +0 0.0879 +0 0.0391 +0 0.0514 +0 0.0444 +0 0.0870 +0 0.0838 +0 0.1350 +0 0.0625 +0 0.3382 +0 0.2410 +0 0.3592 +0 0.0672 +0 0.0834 +0 0.0434 +0 0.0528 +0 0.0948 +0 0.1524 +0 0.2013 +0 0.1121 +0 0.2311 +0 0.1248 +0 0.1547 +0 0.6455 +0 0.1588 +0 0.1678 +0 0.1538 +0 0.1436 +0 0.0426 +0 0.1351 +0 0.0442 +0 0.1057 +0 0.0670 +0 0.1422 +0 0.0403 +0 0.1180 +0 0.0508 +0 0.0863 +0 0.0736 +0 0.2518 +0 0.1364 +0 0.0418 +0 0.1839 +0 0.1728 +0 0.4275 +0 0.0684 +0 0.0777 +0 0.0809 +0 0.1798 +0 0.1436 +0 0.6005 +0 0.0836 +0 0.1024 +0 0.0980 +0 0.1698 +0 0.0355 +0 0.1175 +0 0.1923 +0 0.0585 +0 0.1789 +0 0.1326 +0 0.2459 +0 0.1208 +0 0.0760 +0 0.2343 +0 0.1368 +0 0.1032 +0 0.0717 +0 0.0880 +0 0.0800 +0 0.0842 +0 0.0748 +0 0.2195 +0 0.0633 +0 0.1896 +0 0.0597 +0 0.2401 +0 0.2030 +0 0.2563 +0 0.2066 +0 0.5237 +0 0.2398 +0 0.0691 +0 0.0511 +0 0.2705 +0 0.7226 +0 0.1222 +0 0.1789 +0 0.2057 +0 0.2983 +0 0.1328 +0 0.0678 +0 0.0906 +0 0.0735 +0 0.0502 +0 0.3073 +0 0.2291 +0 0.0860 +1 0.7896 +0 0.1291 +0 0.0699 +0 0.0976 +0 0.1066 +0 0.0743 +1 0.7717 +0 0.1760 +0 0.1561 +0 0.1056 +0 0.1783 +0 0.1578 +0 0.0799 +0 0.0744 +0 0.0984 +0 0.2606 +0 0.1170 +0 0.1041 +0 0.2486 +0 0.0486 +0 0.1210 +0 0.1418 +0 0.1452 +0 0.0557 +0 0.1486 +0 0.1705 +0 0.1348 +0 0.0822 +0 0.2449 +0 0.1725 +0 0.2341 +0 0.2069 +0 0.4416 +0 0.0984 +0 0.0857 +0 0.0876 +0 0.1583 +0 0.2524 +1 0.7841 +0 0.2623 +0 0.0670 +1 0.7841 +0 0.0773 +0 0.1026 +0 0.0372 +0 0.1527 +0 0.0513 +0 0.0641 +0 0.1326 +0 0.1681 +0 0.0673 +0 0.0806 +0 0.1464 +0 0.1286 +0 0.1489 +0 0.1058 +0 0.2560 +0 0.0678 +0 0.0880 +0 0.0808 +0 0.0391 +0 0.0633 +0 0.1646 +0 0.0543 +0 0.1450 +0 0.0444 +0 0.1159 +0 0.0958 +0 0.1371 +0 0.1043 +0 0.1150 +0 0.0487 +0 0.1292 +0 0.3829 +0 0.1346 +0 0.1331 +0 0.0822 +0 0.0659 +0 0.1942 +0 0.0584 +0 0.2255 +0 0.1883 +0 0.1684 +0 0.0663 +0 0.2054 +0 0.0485 +0 0.3364 +0 0.1120 +0 0.0398 +0 0.0446 +0 0.2446 +0 0.1611 +0 0.0307 +0 0.0621 +0 0.0899 +0 0.0734 +0 0.0711 +0 0.0509 +0 0.0545 +0 0.0857 +0 0.0597 +0 0.0660 +0 0.1448 +0 0.2600 +0 0.0736 +0 0.0728 +1 0.8730 +0 0.2365 +0 0.0778 +0 0.0573 +0 0.2435 +0 0.1776 +0 0.1601 +0 0.0565 +0 0.0619 +0 0.2768 +0 0.1256 +0 0.1348 +0 0.0669 +0 0.1204 +0 0.1937 +0 0.0849 +0 0.1284 +0 0.1487 +0 0.4000 +0 0.4676 +0 0.0640 +0 0.0993 +0 0.0971 +0 0.0874 +0 0.0723 +0 0.0908 +0 0.0425 +0 0.1156 +0 0.1622 +0 0.1098 +0 0.0945 +0 0.1802 +0 0.2513 +0 0.0954 +0 0.1691 +0 0.0912 +0 0.1726 +0 0.2080 +0 0.0957 +0 0.0574 +0 0.6636 +0 0.0538 +0 0.0811 +0 0.1121 +0 0.0858 +0 0.0620 +0 0.0426 +0 0.1835 +0 0.2259 +0 0.1487 +0 0.0544 +0 0.0937 +0 0.2975 +0 0.0317 +0 0.2494 +0 0.2309 +0 0.0993 +0 0.0584 +0 0.0470 +0 0.0693 +0 0.0846 +0 0.0649 +0 0.1782 +0 0.0436 +0 0.1014 +0 0.1143 +1 0.8023 +0 0.1370 +0 0.1270 +0 0.0722 +0 0.0852 +0 0.0480 +0 0.0573 +0 0.0529 +0 0.0922 +0 0.6342 +0 0.0530 +0 0.1719 +0 0.0568 +0 0.0739 +0 0.1105 +0 0.0913 +0 0.1039 +0 0.1913 +0 0.0962 +0 0.1779 +0 0.2274 +0 0.2587 +0 0.0871 +0 0.1026 +0 0.0647 +0 0.0827 +0 0.0523 +0 0.1447 +0 0.0791 +0 0.1473 +0 0.1192 +0 0.2477 +0 0.0964 +0 0.0925 +0 0.0724 +0 0.0891 +0 0.1094 +0 0.1811 +0 0.0421 +0 0.0791 +0 0.0950 +0 0.1805 +0 0.1022 +0 0.0655 +0 0.0940 +0 0.1171 +0 0.0831 +0 0.1375 +0 0.0798 +0 0.1320 +0 0.2087 +0 0.0818 +0 0.1086 +0 0.1174 +0 0.0624 +0 0.1137 +0 0.1639 +0 0.1728 +0 0.0925 +0 0.1148 +0 0.0800 +0 0.0801 +0 0.0737 +0 0.1633 +0 0.1525 +0 0.1684 +0 0.0929 +0 0.2406 +0 0.1205 +0 0.0906 +0 0.0662 +0 0.0712 +0 0.2934 +0 0.1592 +0 0.0597 +0 0.0475 +0 0.1549 +0 0.2375 +0 0.2866 +0 0.1007 +0 0.2202 +0 0.1963 +0 0.2182 +0 0.2721 +0 0.1722 +0 0.1631 +0 0.1624 +0 0.1563 +0 0.0315 +0 0.0327 +0 0.0826 +0 0.1036 +0 0.0891 +0 0.1701 +0 0.1358 +0 0.1360 +0 0.7155 +0 0.0533 +0 0.1049 +0 0.1111 +0 0.0723 +0 0.0908 +0 0.1120 +0 0.2157 +0 0.1528 +0 0.0784 +0 0.1288 +0 0.1761 +0 0.1724 +0 0.0630 +0 0.1207 +0 0.1605 +0 0.1474 +0 0.0601 +0 0.1993 +0 0.3313 +0 0.1108 +0 0.1200 +0 0.1065 +0 0.3372 +0 0.0957 +1 0.8852 +0 0.0786 +0 0.0842 +0 0.0424 +0 0.0962 +0 0.0687 +0 0.1127 +0 0.1479 +0 0.0512 +0 0.0645 +0 0.0887 +0 0.0908 +0 0.0408 +0 0.0428 +0 0.1103 +0 0.1359 +0 0.0727 +1 0.7831 +0 0.1132 +0 0.0873 +0 0.0618 +0 0.0474 +0 0.1255 +0 0.1242 +0 0.0726 +0 0.1599 +0 0.0752 +0 0.1664 +0 0.2520 +0 0.2604 +0 0.6675 +0 0.1444 +0 0.1186 +0 0.0963 +0 0.0997 +0 0.1174 +0 0.1525 +0 0.0649 +0 0.0461 +0 0.3536 +0 0.0872 +0 0.2245 +0 0.0802 +0 0.0721 +0 0.0859 +0 0.1288 +0 0.7462 +0 0.1265 +0 0.1544 +0 0.0720 +0 0.0836 +0 0.0575 +0 0.0394 +0 0.2342 +0 0.1779 +0 0.0751 +0 0.0504 +0 0.1012 +0 0.1006 +0 0.0689 +0 0.0704 +0 0.0880 +0 0.0586 +0 0.3520 +0 0.0286 +0 0.1917 +0 0.1285 +0 0.0505 +0 0.0748 +0 0.2525 +0 0.0751 +0 0.2467 +0 0.2736 +0 0.2932 +0 0.0975 +0 0.0823 +0 0.0991 +0 0.1229 +0 0.1389 +0 0.1591 +0 0.0757 +0 0.0839 +0 0.1658 +0 0.2982 +0 0.0549 +0 0.1041 +0 0.0847 +0 0.2014 +0 0.4891 +0 0.5534 +0 0.0761 +0 0.1455 +0 0.1120 +0 0.1828 +0 0.1398 +0 0.1367 +0 0.0803 +0 0.1648 +0 0.0881 +0 0.1587 +0 0.0787 +0 0.0330 +0 0.0595 +0 0.1017 +0 0.0611 +0 0.1584 +0 0.2500 +0 0.0941 +0 0.2040 +0 0.0651 +0 0.0599 +0 0.1085 +0 0.0900 +0 0.1364 +0 0.0385 +0 0.0801 +0 0.1353 +0 0.0798 +0 0.0973 +0 0.0891 +0 0.1285 +0 0.0641 +0 0.1201 +0 0.0995 +0 0.1417 +0 0.1932 +0 0.1965 +0 0.0602 +0 0.1415 +0 0.0349 +0 0.1101 +0 0.1205 +0 0.0923 +0 0.1397 +0 0.0437 +0 0.1140 +0 0.0391 +0 0.0998 +0 0.1313 +0 0.0640 +0 0.0592 +0 0.1901 +0 0.1097 +0 0.1347 +0 0.1102 +0 0.0463 +0 0.1912 +0 0.1186 +0 0.1331 +0 0.0892 +0 0.1537 +0 0.2049 +0 0.0465 +0 0.0384 +0 0.1021 +0 0.0918 +0 0.0745 +0 0.0865 +0 0.0381 +0 0.0954 +0 0.1201 +0 0.1565 +0 0.0669 +0 0.1749 +0 0.2094 +0 0.0880 +0 0.0737 +0 0.1758 +0 0.0721 +0 0.0501 +0 0.2312 +0 0.0980 +0 0.1056 +0 0.0668 +0 0.1037 +0 0.1983 +0 0.1603 +0 0.2438 +0 0.0744 +0 0.0595 +0 0.1104 +0 0.3759 +0 0.0848 +0 0.0587 +0 0.0610 +0 0.0945 +0 0.1954 +0 0.0606 +0 0.0661 +0 0.0572 +0 0.0938 +0 0.0871 +0 0.1621 +0 0.0974 +0 0.0576 +0 0.0445 +0 0.0725 +0 0.1243 +0 0.0409 +0 0.0750 +0 0.1452 +0 0.2316 +0 0.1218 +0 0.0997 +0 0.2314 +0 0.2169 +0 0.1804 +0 0.0760 +0 0.0933 +0 0.1233 +0 0.2445 +0 0.1315 +0 0.0734 +0 0.0509 +0 0.0732 +0 0.1769 +0 0.0873 +0 0.1032 +0 0.0593 +0 0.0764 +0 0.0775 +0 0.0606 +0 0.1614 +0 0.0674 +0 0.0831 +0 0.2107 +0 0.0816 +0 0.5318 +0 0.2456 +0 0.0318 +0 0.0590 +0 0.0817 +0 0.1481 +0 0.4944 +0 0.0605 +0 0.0834 +0 0.1082 +0 0.7054 +0 0.1073 +0 0.0675 +0 0.2917 +0 0.3663 +0 0.0405 +0 0.0850 +0 0.1298 +0 0.1467 +0 0.0554 +0 0.1084 +0 0.0780 +0 0.0894 +0 0.0790 +0 0.5382 +0 0.0867 +0 0.1660 +0 0.0898 +0 0.1901 +0 0.0594 +0 0.1328 +0 0.0963 +0 0.2438 +0 0.1545 +0 0.1956 +0 0.1487 +0 0.0966 +0 0.1333 +0 0.0979 +0 0.0729 +0 0.3133 +0 0.0312 +0 0.0872 +0 0.1785 +0 0.7308 +0 0.0440 +0 0.0523 +0 0.7324 +0 0.0784 +0 0.0541 +0 0.0658 +0 0.0700 +0 0.0898 +0 0.0987 +0 0.0799 +0 0.1840 +0 0.0770 +0 0.1450 +0 0.0663 +0 0.0640 +0 0.0559 +0 0.0544 +0 0.0530 +0 0.0496 +0 0.0866 +0 0.0351 +0 0.0753 +0 0.1175 +0 0.2465 +1 0.8205 +0 0.3300 +0 0.0606 +0 0.2494 +0 0.1304 +0 0.0784 +0 0.1354 +0 0.0831 +0 0.0585 +0 0.0714 +0 0.2425 +0 0.1471 +0 0.1408 +0 0.0415 +0 0.0664 +0 0.2971 +0 0.0592 +0 0.0627 +0 0.1068 +0 0.0652 +0 0.0820 +0 0.1087 +0 0.1323 +0 0.0715 +0 0.6934 +0 0.1073 +0 0.0511 +0 0.0596 +0 0.0643 +0 0.1414 +0 0.5948 +0 0.1468 +1 0.8384 +0 0.1654 +0 0.0809 +0 0.1349 +0 0.2531 +0 0.1319 +0 0.1251 +0 0.0937 +0 0.0679 +0 0.0781 +0 0.1101 +0 0.0871 +0 0.0787 +0 0.2411 +0 0.1045 +0 0.0940 +0 0.0527 +0 0.1801 +0 0.2114 +0 0.0677 +0 0.0337 +0 0.0473 +0 0.1579 +0 0.1549 +0 0.0482 +0 0.0623 +0 0.1483 +0 0.0800 +0 0.0967 +0 0.3235 +0 0.3921 +0 0.1057 +0 0.0831 +0 0.0311 +0 0.2699 +0 0.1362 +0 0.2246 +0 0.0665 +0 0.1088 +0 0.0686 +0 0.1835 +0 0.1123 +0 0.1023 +0 0.1310 +0 0.1539 +0 0.0518 +0 0.0934 +0 0.1091 +0 0.0711 +0 0.0484 +0 0.1388 +0 0.1921 +0 0.0792 +0 0.0688 +0 0.2344 +0 0.4243 +0 0.1732 +0 0.0834 +0 0.0576 +0 0.2080 +0 0.0789 +0 0.0729 +0 0.0711 +0 0.1476 +0 0.1314 +0 0.0889 +0 0.1266 +0 0.0609 +0 0.1037 +0 0.0825 +0 0.0734 +0 0.0570 +0 0.0468 +0 0.0478 +0 0.0827 +1 0.8134 +0 0.0957 +0 0.0406 +0 0.0554 +0 0.1134 +0 0.0930 +0 0.0898 +0 0.1058 +0 0.3232 +0 0.1108 +0 0.1366 +0 0.0783 +0 0.2069 +0 0.2106 +0 0.1362 +0 0.2794 +0 0.1752 +1 0.7538 +0 0.1895 +0 0.0443 +0 0.2139 +0 0.0964 +0 0.0541 +0 0.0712 +0 0.1461 +0 0.0516 +0 0.3213 +0 0.1706 +0 0.1152 +0 0.0814 +0 0.4550 +0 0.2117 +0 0.0444 +0 0.0752 +0 0.1691 +0 0.0575 +0 0.0579 +0 0.0977 +0 0.0430 +0 0.2641 +0 0.0555 +0 0.2761 +0 0.0905 +0 0.2116 +0 0.0560 +0 0.1914 +0 0.3934 +0 0.4438 +0 0.1247 +0 0.2189 +0 0.1272 +0 0.0869 +0 0.0576 +0 0.0560 +0 0.0810 +0 0.3774 +0 0.6858 +0 0.1065 +0 0.2124 +0 0.0873 +0 0.2177 +0 0.1044 +0 0.1524 +0 0.1685 +0 0.0476 +0 0.0419 +0 0.1758 +0 0.5640 +0 0.0529 +0 0.1711 +0 0.0920 +0 0.2905 +0 0.0536 +0 0.1181 +0 0.3537 +0 0.2159 +0 0.0801 +0 0.0671 +0 0.0810 +0 0.1136 +0 0.0525 +0 0.0722 +0 0.0812 +0 0.1279 +0 0.3292 +0 0.1005 +0 0.0978 +0 0.0428 +0 0.2346 +0 0.0734 +0 0.1453 +0 0.1245 +0 0.0532 +0 0.0641 +0 0.0358 +0 0.1434 +0 0.2284 +0 0.0961 +0 0.1238 +0 0.1151 +0 0.0755 +0 0.3132 +0 0.0401 +0 0.4998 +0 0.0795 +0 0.1120 +0 0.0715 +0 0.1979 +0 0.0533 +0 0.0476 +0 0.0573 +0 0.2439 +0 0.0479 +0 0.0365 +0 0.5687 +0 0.0602 +0 0.0850 +0 0.1337 +0 0.7005 +0 0.1214 +0 0.0743 +0 0.3932 +0 0.0995 +0 0.0437 +0 0.1534 +1 0.8392 +0 0.0830 +0 0.0847 +0 0.0816 +0 0.1225 +0 0.0734 +0 0.1154 +0 0.0640 +0 0.2703 +0 0.0979 +0 0.0462 +0 0.1607 +0 0.1962 +0 0.1252 +0 0.0892 +0 0.4019 +0 0.0513 +0 0.0979 +0 0.0949 +0 0.0461 +0 0.0484 +0 0.0861 +0 0.2978 +0 0.2087 +0 0.0696 +0 0.1486 +0 0.0636 +0 0.2114 +0 0.1784 +0 0.2123 +0 0.0960 +0 0.1081 +0 0.1825 +0 0.0378 +0 0.1799 +0 0.2584 +0 0.0600 +0 0.0678 +0 0.0757 +1 0.7593 +0 0.1217 +0 0.0747 +0 0.0490 +0 0.1689 +0 0.7464 +0 0.1179 +0 0.1021 +0 0.1710 +0 0.0674 +0 0.1039 +0 0.1998 +0 0.0554 +0 0.0323 +0 0.1070 +0 0.1461 +0 0.0496 +0 0.1546 +0 0.0896 +0 0.1431 +0 0.1244 +0 0.4517 +0 0.0597 +0 0.1395 +0 0.0905 +0 0.0453 +0 0.0958 +0 0.0998 +0 0.0915 +0 0.0625 +0 0.0849 +0 0.4163 +0 0.1007 +0 0.0695 +0 0.2928 +0 0.0983 +0 0.1571 +0 0.1730 +0 0.1306 +0 0.1191 +0 0.0519 +0 0.0575 +0 0.3032 +0 0.1225 +0 0.0950 +0 0.2375 +0 0.1813 +0 0.1191 +0 0.0744 +0 0.2402 +0 0.0960 +1 0.8765 +0 0.0419 +0 0.1542 +0 0.0781 +0 0.1213 +0 0.1273 +0 0.1076 +0 0.1081 +0 0.2556 +0 0.0440 +0 0.1170 +0 0.1244 +0 0.1178 +0 0.2272 +0 0.1151 +0 0.0774 +0 0.0853 +0 0.0395 +0 0.0357 +0 0.0735 +0 0.1509 +0 0.0592 +0 0.1202 +0 0.0915 +0 0.1246 +0 0.1016 +0 0.1082 +0 0.0824 +0 0.1157 +0 0.6020 +0 0.0544 +0 0.1436 +0 0.1752 +0 0.1601 +0 0.0442 +0 0.1434 +0 0.2096 +0 0.0834 +0 0.0829 +0 0.0949 +0 0.0745 +0 0.0585 +0 0.0456 +0 0.2515 +0 0.3455 +0 0.1831 +0 0.0648 +0 0.0839 +0 0.3356 +0 0.0916 +0 0.0622 +0 0.0826 +0 0.1299 +0 0.1113 +0 0.0591 +0 0.1533 +0 0.1910 +0 0.0559 +0 0.1398 +0 0.0919 +0 0.0519 +0 0.0622 +0 0.3010 +0 0.0845 +0 0.0789 +0 0.0902 +0 0.1412 +0 0.0710 +0 0.1669 +0 0.1081 +0 0.0881 +0 0.0441 +0 0.0986 +0 0.1392 +0 0.1152 +0 0.3986 +0 0.1005 +0 0.1063 +0 0.0884 +0 0.0465 +0 0.1205 +0 0.1527 +0 0.0783 +0 0.2360 +0 0.0557 +0 0.0880 +0 0.0825 +0 0.1196 +0 0.1361 +0 0.0916 +0 0.0763 +0 0.1210 +1 0.7780 +0 0.2504 +0 0.2126 +0 0.1197 +0 0.0889 +0 0.0734 +0 0.2500 +0 0.2594 +0 0.0878 +0 0.0826 +0 0.0467 +0 0.0497 +0 0.0591 +0 0.0740 +0 0.0587 +0 0.0748 +0 0.2000 +0 0.1049 +0 0.0565 +0 0.1023 +0 0.0494 +0 0.0495 +0 0.0659 +0 0.0527 +0 0.1719 +0 0.0979 +0 0.1447 +0 0.3804 +0 0.1571 +0 0.2807 +0 0.1526 +0 0.0668 +0 0.5143 +0 0.1664 +0 0.0622 +0 0.0523 +0 0.1424 +0 0.2989 +0 0.0653 +0 0.0396 +0 0.1990 +0 0.0556 +0 0.1825 +0 0.0977 +1 0.8427 +0 0.1059 +0 0.0473 +0 0.1498 +0 0.1206 +0 0.1123 +0 0.0749 +0 0.3858 +0 0.0620 +0 0.0782 +0 0.1034 +0 0.0335 +0 0.1363 +0 0.0756 +1 0.8346 +0 0.0537 +0 0.0703 +0 0.0427 +0 0.2847 +0 0.3855 +0 0.1168 +0 0.6675 +0 0.0439 +0 0.1556 +0 0.0756 +0 0.1163 +0 0.0694 +0 0.0677 +0 0.1896 +0 0.1406 +0 0.1116 +0 0.1602 +0 0.0592 +0 0.1002 +0 0.0717 +0 0.0967 +0 0.1231 +0 0.0483 +0 0.0428 +0 0.1132 +0 0.0680 +0 0.1041 +0 0.0764 +0 0.0547 +0 0.1796 +0 0.2137 +0 0.0889 +0 0.1168 +0 0.0872 +0 0.1275 +0 0.1896 +0 0.1171 +0 0.1451 +0 0.0621 +0 0.1225 +0 0.0692 +0 0.1413 +0 0.0574 +0 0.0940 +0 0.1097 +0 0.1111 +0 0.1703 +0 0.1128 +0 0.0509 +0 0.1409 +0 0.0731 +0 0.0656 +0 0.1448 +0 0.0429 +0 0.0772 +0 0.2502 +0 0.0688 +0 0.3037 +0 0.4219 +0 0.2245 +0 0.0865 +0 0.0926 +0 0.0794 +0 0.2061 +0 0.1398 +0 0.1401 +0 0.0592 +0 0.5118 +0 0.1185 +0 0.0606 +0 0.1069 +0 0.1559 +0 0.0634 +0 0.0890 +0 0.1714 +0 0.0840 +0 0.1820 +0 0.0409 +0 0.1031 +0 0.1768 +0 0.0680 +0 0.1275 +0 0.1764 +0 0.0712 +0 0.0424 +0 0.0701 +0 0.3999 +0 0.1220 +0 0.0432 +0 0.0905 +0 0.0642 +0 0.4247 +0 0.0505 +0 0.1041 +0 0.0769 +0 0.0511 +0 0.3468 +0 0.1351 +0 0.1083 +0 0.0378 +0 0.0434 +0 0.0839 +0 0.1881 +0 0.2637 +0 0.2743 +0 0.0636 +0 0.0866 +0 0.1004 +0 0.0966 +0 0.0379 +0 0.1646 +0 0.1127 +0 0.0877 +0 0.1584 +0 0.0832 +0 0.1635 +0 0.1144 +0 0.0360 +0 0.1162 +0 0.1451 +0 0.0713 +0 0.2361 +0 0.1496 +0 0.2403 +0 0.2267 +0 0.0770 +0 0.6394 +0 0.1648 +0 0.1154 +0 0.2229 +0 0.0728 +0 0.0998 +0 0.1332 +0 0.1762 +0 0.0803 +0 0.2099 +0 0.1968 +0 0.0525 +0 0.3548 +0 0.3568 +0 0.1271 +0 0.2194 +0 0.0604 +0 0.0765 +0 0.2586 +0 0.0671 +0 0.4801 +0 0.2531 +0 0.1609 +0 0.0704 +0 0.0971 +0 0.0730 +0 0.3042 +0 0.0585 +0 0.0850 +0 0.1115 +0 0.0582 +0 0.0982 +0 0.3269 +0 0.0703 +0 0.0565 +0 0.1424 +0 0.0697 +0 0.1055 +0 0.1029 +0 0.0884 +0 0.6211 +0 0.0902 +0 0.1676 +0 0.1585 +0 0.0838 +0 0.1585 +0 0.0503 +0 0.2548 +0 0.0834 +0 0.0426 +0 0.2882 +0 0.0506 +0 0.1057 +0 0.2061 +0 0.0806 +0 0.5433 +0 0.1165 +0 0.0331 +0 0.0470 +0 0.4383 +0 0.1660 +0 0.1311 +0 0.0645 +1 0.8324 +0 0.0994 +0 0.1843 +0 0.1520 +0 0.6291 +0 0.1166 +0 0.2159 +0 0.0959 +0 0.0420 +0 0.0414 +0 0.0992 +0 0.1776 +0 0.0835 +0 0.0724 +0 0.1051 +0 0.1987 +0 0.0738 +0 0.4492 +0 0.2973 +0 0.1160 +0 0.1096 +0 0.0774 +0 0.0668 +0 0.0751 +0 0.1535 +0 0.1150 +0 0.1176 +0 0.2237 +0 0.0643 +0 0.1075 +0 0.0803 +0 0.0824 +0 0.1016 +0 0.0598 +0 0.2727 +0 0.2473 +0 0.1423 +0 0.0572 +1 0.8313 +0 0.0562 +0 0.1340 +0 0.0505 +0 0.1575 +0 0.0614 +0 0.2515 +0 0.1380 +0 0.5797 +0 0.2525 +0 0.0846 +0 0.1256 +0 0.0487 +0 0.1358 +0 0.0513 +0 0.0640 +0 0.0884 +0 0.0885 +0 0.0807 +0 0.0631 +0 0.0460 +0 0.0770 +0 0.0427 +1 0.4469 +0 0.4408 +0 0.1102 +0 0.5625 +0 0.0532 +0 0.0622 +0 0.1696 +0 0.0688 +0 0.0492 +0 0.1436 +0 0.0846 +0 0.0960 +0 0.1097 +0 0.0758 +0 0.1601 +0 0.0721 +0 0.0450 +0 0.0763 +0 0.0668 +0 0.1433 +0 0.1075 +0 0.0463 +0 0.0766 +0 0.0760 +0 0.1182 +0 0.0742 +0 0.1675 +0 0.2063 +0 0.2186 +0 0.3318 +0 0.5236 +0 0.2914 +0 0.0890 +0 0.0551 +0 0.0861 +0 0.1131 +0 0.0486 +0 0.1928 +0 0.4022 +0 0.1211 +0 0.1506 +0 0.0919 +0 0.0790 +0 0.0924 +0 0.1399 +0 0.7287 +0 0.1541 +0 0.0807 +0 0.2298 +0 0.0467 +0 0.1716 +0 0.0793 +0 0.2085 +0 0.1986 +0 0.3545 +0 0.0782 +0 0.0628 +0 0.0862 +0 0.1749 +0 0.0399 +0 0.0842 +0 0.0962 +0 0.0649 +0 0.0667 +0 0.1193 +0 0.0908 +0 0.0896 +0 0.0849 +0 0.0503 +1 0.7913 +0 0.0866 +0 0.2049 +0 0.1708 +0 0.0569 +0 0.1376 +0 0.0749 +0 0.1297 +0 0.0797 +0 0.0818 +0 0.1312 +0 0.0741 +0 0.2239 +0 0.2020 +0 0.1273 +0 0.0663 +0 0.0800 +0 0.1002 +0 0.2390 +0 0.1034 +0 0.1853 +0 0.2150 +0 0.1631 +0 0.0685 +0 0.1177 +0 0.2230 +0 0.0678 +0 0.0530 +0 0.1622 +0 0.0699 +0 0.1695 +0 0.7490 +0 0.1397 +0 0.0642 +0 0.1802 +0 0.0811 +0 0.1203 +0 0.1258 +0 0.1275 +0 0.1432 +0 0.0745 +0 0.2864 +0 0.0772 +0 0.0864 +0 0.0646 +0 0.0961 +0 0.1165 +0 0.1087 +0 0.2138 +0 0.2020 +0 0.2778 +0 0.1246 +0 0.0654 +0 0.0553 +0 0.2219 +0 0.1003 +0 0.1032 +0 0.1877 +0 0.0833 +0 0.0683 +0 0.0958 +0 0.1098 +0 0.1809 +0 0.1409 +0 0.2173 +0 0.1626 +0 0.1251 +0 0.1244 +0 0.6856 +0 0.2293 +0 0.1008 +0 0.1474 +0 0.1068 +0 0.1282 +0 0.1801 +0 0.0884 +0 0.0668 +0 0.1901 +0 0.1133 +0 0.2268 +0 0.2837 +0 0.0545 +0 0.1662 +0 0.0568 +0 0.1540 +0 0.0700 +0 0.0940 +0 0.1082 +0 0.0643 +0 0.1725 +0 0.1188 +0 0.0974 +0 0.3964 +0 0.2751 +0 0.0480 +0 0.1473 +0 0.0459 +0 0.0434 +0 0.0469 +0 0.0761 +0 0.1720 +0 0.0418 +0 0.2278 +0 0.1143 +0 0.0747 +0 0.1781 +0 0.1204 +0 0.0617 +0 0.0863 +0 0.2668 +0 0.1546 +0 0.3792 +0 0.1056 +0 0.0828 +0 0.0498 +0 0.1257 +0 0.0982 +0 0.0535 +0 0.0688 +0 0.0958 +0 0.1293 +0 0.0445 +0 0.1167 +0 0.0969 +0 0.0456 +0 0.0481 +0 0.0417 +0 0.5810 +0 0.1000 +0 0.0584 +0 0.0833 +0 0.0489 +0 0.0605 +0 0.3644 +0 0.7279 +0 0.1344 +0 0.0762 +0 0.1718 +0 0.6265 +0 0.0875 +0 0.0483 +0 0.0694 +0 0.0890 +0 0.1423 +0 0.2244 +0 0.0990 +0 0.0880 +0 0.2246 +0 0.0487 +0 0.0975 +0 0.4887 +0 0.1135 +0 0.1058 +0 0.1307 +0 0.0718 +0 0.2412 +0 0.1207 +0 0.0798 +0 0.1238 +0 0.0862 +0 0.1121 +0 0.1086 +0 0.1254 +0 0.1059 +0 0.0815 +0 0.0476 +0 0.4648 +0 0.0577 +0 0.7038 +0 0.0641 +0 0.1277 +0 0.1472 +0 0.1183 +0 0.1026 +0 0.2167 +0 0.1876 +0 0.0788 +0 0.1335 +0 0.0747 +0 0.2186 +0 0.0484 +0 0.1624 +0 0.2492 +0 0.2951 +0 0.0605 +0 0.0475 +0 0.1641 +0 0.1040 +0 0.0794 +0 0.1378 +0 0.0662 +0 0.0943 +0 0.0749 +0 0.1009 +0 0.1629 +0 0.0765 +0 0.0553 +0 0.1901 +0 0.0420 +0 0.0651 +0 0.1525 +0 0.1497 +0 0.0335 +0 0.0522 +0 0.1296 +0 0.0363 +0 0.0801 +0 0.0421 +0 0.0532 +0 0.0994 +0 0.2639 +0 0.3064 +0 0.1115 +0 0.4128 +0 0.1496 +0 0.6999 +0 0.0398 +0 0.0655 +0 0.1021 +0 0.2250 +0 0.0452 +0 0.0461 +0 0.1925 +0 0.0612 +0 0.6017 +0 0.1787 +0 0.0949 +0 0.1281 +0 0.0700 +0 0.0752 +0 0.0460 +0 0.1457 +0 0.1260 +0 0.1211 +0 0.1091 +0 0.1906 +0 0.1244 +0 0.0886 +1 0.8250 +0 0.2944 +0 0.0615 +0 0.3516 +0 0.6996 +0 0.0767 +0 0.0533 +0 0.1133 +0 0.1524 +0 0.0546 +0 0.1022 +0 0.0365 +0 0.1826 +0 0.0582 +0 0.1340 +0 0.1002 +0 0.0805 +0 0.0818 +0 0.0789 +0 0.0790 +1 0.7888 +0 0.1431 +0 0.0509 +0 0.0521 +0 0.1708 +0 0.2144 +0 0.0672 +0 0.0907 +0 0.1015 +0 0.1388 +0 0.0868 +0 0.1977 +0 0.1834 +0 0.0591 +0 0.0989 +0 0.2430 +0 0.2178 +0 0.0890 +0 0.5942 +0 0.1415 +0 0.4862 +0 0.1228 +0 0.1939 +0 0.0937 +0 0.3290 +0 0.3448 +0 0.0816 +0 0.1286 +0 0.1809 +0 0.1098 +0 0.2932 +0 0.3508 +0 0.0582 +0 0.2146 +0 0.1439 +0 0.1069 +0 0.1903 +0 0.2284 +0 0.1513 +0 0.0824 +0 0.0887 +1 0.8289 +0 0.0384 +0 0.0653 +0 0.0490 +0 0.1428 +0 0.1057 +0 0.1983 +0 0.0735 +0 0.1191 +0 0.0792 +0 0.0911 +0 0.0724 +0 0.1646 +0 0.1051 +0 0.0958 +0 0.0373 +0 0.0589 +0 0.1001 +0 0.0869 +0 0.0714 +0 0.0460 +0 0.2201 +0 0.1548 +0 0.0447 +0 0.0915 +0 0.3611 +0 0.0735 +0 0.1394 +0 0.0489 +0 0.1843 +0 0.2100 +0 0.0314 +1 0.7586 +0 0.5389 +0 0.2239 +0 0.1830 +0 0.0845 +0 0.5293 +0 0.0538 +0 0.1836 +0 0.0758 +0 0.1065 +0 0.1573 +0 0.0909 +0 0.0836 +0 0.0411 +0 0.0650 +0 0.1248 +0 0.0683 +0 0.2091 +0 0.1028 +0 0.1675 +0 0.2987 +0 0.0983 +0 0.0878 +0 0.0907 +0 0.3297 +0 0.0792 +0 0.0731 +0 0.0693 +0 0.1260 +0 0.1700 +0 0.1273 +0 0.0736 +0 0.0766 +0 0.0948 +0 0.1305 +0 0.0402 +0 0.1111 +0 0.4824 +0 0.0771 +0 0.0831 +0 0.1434 +0 0.0862 +0 0.0494 +0 0.0812 +0 0.1045 +0 0.0612 +0 0.1549 +0 0.0764 +0 0.1186 +0 0.1538 +0 0.0572 +0 0.2269 +0 0.1749 +0 0.1325 +0 0.1127 +0 0.1077 +0 0.1915 +0 0.2148 +0 0.0722 +0 0.0563 +0 0.0847 +0 0.0377 +0 0.0744 +0 0.0482 +0 0.1272 +0 0.0876 +0 0.1208 +0 0.1193 +0 0.0901 +0 0.0566 +0 0.0332 +0 0.1860 +0 0.0909 +0 0.1172 +0 0.2379 +0 0.0725 +0 0.1299 +0 0.1074 +0 0.0882 +0 0.0773 +0 0.0739 +0 0.1321 +0 0.0825 +0 0.1301 +0 0.1615 +0 0.1247 +0 0.0615 +0 0.6449 +0 0.0965 +0 0.1489 +0 0.5089 +0 0.1112 +0 0.0901 +0 0.0930 +0 0.6440 +0 0.2150 +0 0.1071 +0 0.0859 +0 0.1918 +0 0.1362 +0 0.3228 +0 0.2668 +0 0.3332 +0 0.4209 +0 0.0859 +0 0.0438 +0 0.0956 +0 0.0406 +0 0.4684 +0 0.0915 +0 0.0549 +0 0.2626 +0 0.0853 +1 0.8948 +0 0.1041 +0 0.0846 +0 0.2755 +0 0.0537 +0 0.3004 +0 0.0580 +0 0.2905 +0 0.1927 +0 0.0928 +0 0.1294 +0 0.1209 +0 0.0967 +0 0.1150 +0 0.1015 +0 0.1436 +0 0.0686 +0 0.0751 +0 0.1450 +0 0.0677 +0 0.0856 +0 0.0641 +0 0.2496 +0 0.0866 +0 0.0445 +1 0.8231 +0 0.0609 +0 0.0976 +0 0.0545 +0 0.2873 +0 0.1633 +0 0.0359 +0 0.1017 +0 0.0576 +0 0.0938 +0 0.0483 +0 0.0485 +0 0.6914 +0 0.1063 +0 0.0996 +0 0.1751 +0 0.0628 +0 0.1123 +0 0.0465 +0 0.1461 +0 0.3324 +0 0.0636 +0 0.1518 +0 0.0897 +0 0.1846 +0 0.0881 +0 0.0341 +0 0.0938 +0 0.0862 +0 0.0611 +0 0.1175 +0 0.1213 +0 0.0980 +0 0.0460 +0 0.1478 +0 0.2555 +0 0.1185 +0 0.4634 +0 0.0637 +0 0.1741 +0 0.0905 +0 0.1073 +0 0.1170 +0 0.0522 +0 0.1617 +0 0.1898 +0 0.2245 +0 0.0767 +0 0.0893 +0 0.0784 +0 0.0935 +0 0.1581 +0 0.1242 +0 0.4753 +0 0.0741 +0 0.1776 +0 0.0578 +0 0.4326 +0 0.0600 +0 0.0509 +0 0.1000 +0 0.0918 +0 0.1743 +0 0.1200 +1 0.8361 +0 0.2123 +0 0.3159 +0 0.0928 +0 0.2662 +0 0.1269 +0 0.0732 +0 0.0841 +0 0.1372 +0 0.0839 +0 0.0602 +0 0.0909 +0 0.1009 +0 0.0397 +0 0.1069 +0 0.0612 +0 0.1244 +0 0.3011 +0 0.3122 +0 0.1607 +0 0.1790 +0 0.5047 +0 0.0677 +0 0.1002 +0 0.0837 +0 0.0909 +0 0.2217 +0 0.0627 +0 0.0828 +0 0.3366 +0 0.0961 +0 0.5275 +0 0.0707 +0 0.0595 +0 0.0472 +0 0.0423 +0 0.1388 +0 0.1910 +0 0.0669 +0 0.0824 +0 0.1149 +0 0.0740 +0 0.0671 +0 0.1927 +0 0.2587 +0 0.1123 +0 0.1700 +0 0.1011 +0 0.1834 +0 0.0635 +0 0.0989 +0 0.0754 +0 0.0610 +0 0.1117 +0 0.0818 +0 0.0564 +0 0.2253 +0 0.1821 +0 0.1206 +0 0.0413 +0 0.3993 +0 0.0930 +0 0.2442 +0 0.3222 +0 0.1374 +0 0.0833 +0 0.0845 +0 0.1042 +0 0.1069 +0 0.0452 +0 0.1647 +0 0.0730 +0 0.0608 +0 0.1458 +0 0.1367 +0 0.1475 +0 0.1027 +0 0.0647 +0 0.1235 +0 0.1824 +0 0.0618 +0 0.0484 +0 0.0367 +0 0.1064 +0 0.0907 +0 0.2974 +0 0.0948 +0 0.0938 +0 0.0689 +0 0.2412 +0 0.0519 +0 0.1325 +1 0.8136 +0 0.0782 +0 0.1385 +0 0.1088 +0 0.1642 +0 0.0645 +0 0.0809 +0 0.1414 +0 0.0962 +0 0.0751 +0 0.1486 +0 0.0951 +0 0.1343 +0 0.6840 +0 0.0644 +0 0.1117 +0 0.0448 +0 0.4537 +0 0.1290 +0 0.0717 +0 0.2217 +0 0.0429 +0 0.1161 +0 0.1205 +0 0.1308 +0 0.0720 +0 0.1168 +0 0.0662 +0 0.5628 +0 0.1133 +0 0.1207 +0 0.0638 +0 0.0874 +0 0.2784 +0 0.0755 +0 0.1268 +0 0.1512 +0 0.0624 +0 0.2729 +0 0.1272 +0 0.3879 +0 0.0741 +0 0.2015 +0 0.0379 +0 0.3390 +1 0.7523 +0 0.1495 +0 0.3280 +0 0.1268 +0 0.0859 +0 0.0890 +0 0.2275 +0 0.0621 +0 0.1087 +0 0.1423 +0 0.1558 +0 0.1564 +0 0.1959 +0 0.2716 +0 0.1034 +0 0.0825 +0 0.0898 +0 0.2447 +0 0.1640 +0 0.0755 +0 0.0653 +0 0.2930 +0 0.0955 +0 0.2109 +0 0.0655 +0 0.0946 +0 0.1911 +0 0.1133 +0 0.1246 +0 0.0399 +0 0.0515 +0 0.0860 +0 0.6175 +0 0.0646 +0 0.0533 +0 0.0753 +0 0.0426 +0 0.0919 +0 0.0956 +0 0.0950 +0 0.0748 +0 0.1405 +0 0.6814 +0 0.1238 +0 0.0857 +0 0.0503 +0 0.2287 +0 0.0900 +0 0.1027 +0 0.1510 +0 0.0582 +0 0.1144 +0 0.2270 +0 0.0684 +0 0.0777 +0 0.0969 +0 0.1394 +0 0.1316 +0 0.5107 +0 0.0933 +0 0.1540 +0 0.3155 +0 0.2323 +0 0.0895 +0 0.1341 +0 0.2261 +0 0.1705 +0 0.2219 +0 0.1225 +0 0.1758 +0 0.0684 +0 0.1330 +0 0.1122 +0 0.0663 +0 0.1264 +0 0.0776 +0 0.0962 +0 0.1127 +0 0.0913 +0 0.0765 +0 0.1338 +0 0.1831 +0 0.0713 +0 0.0336 +0 0.1031 +0 0.0438 +0 0.0613 +0 0.1180 +0 0.0341 +0 0.1129 +0 0.0671 +0 0.2257 +0 0.3891 +0 0.2881 +0 0.4755 +0 0.1130 +0 0.2629 +0 0.1670 +0 0.0720 +0 0.0680 +0 0.6465 +0 0.2084 +0 0.1296 +0 0.0848 +0 0.7001 +0 0.0822 +0 0.1417 +0 0.0496 +0 0.0434 +0 0.1065 +0 0.2487 +0 0.1298 +0 0.0575 +0 0.0812 +0 0.0804 +0 0.0965 +0 0.0410 +0 0.1045 +0 0.1691 +0 0.0506 +0 0.0582 +0 0.0949 +0 0.0459 +0 0.1350 +0 0.1376 +0 0.0922 +0 0.6871 +0 0.1216 +0 0.0877 +0 0.0716 +0 0.0830 +0 0.1296 +0 0.0536 +0 0.1479 +0 0.0738 +0 0.1385 +0 0.0568 +0 0.3435 +0 0.0468 +0 0.1226 +0 0.2471 +0 0.1042 +0 0.0457 +0 0.0628 +0 0.0854 +0 0.0978 +0 0.1125 +0 0.0373 +0 0.2641 +0 0.0896 +0 0.0761 +0 0.1111 +0 0.1326 +0 0.0740 +0 0.1784 +0 0.1680 +0 0.0880 +0 0.0736 +0 0.1306 +0 0.1233 +0 0.0775 +0 0.3429 +0 0.2983 +0 0.0608 +0 0.1686 +0 0.2686 +0 0.0466 +0 0.1471 +0 0.0741 +0 0.1261 +0 0.1750 +0 0.0298 +0 0.1077 +0 0.1052 +0 0.1084 +0 0.1037 +0 0.0513 +0 0.2141 +0 0.0745 +0 0.0967 +0 0.0628 +0 0.0611 +0 0.0419 +0 0.0622 +0 0.0784 +0 0.3632 +0 0.0820 +0 0.1668 +0 0.1810 +0 0.1580 +0 0.1692 +0 0.0947 +0 0.1200 +0 0.1759 +0 0.1219 +0 0.2348 +0 0.3717 +0 0.0900 +0 0.0633 +0 0.0776 +0 0.1164 +0 0.0953 +0 0.0320 +0 0.0818 +0 0.0548 +0 0.1751 +0 0.0923 +0 0.0629 +0 0.1825 +0 0.0852 +0 0.2157 +0 0.0858 +0 0.1052 +0 0.2032 +0 0.0864 +0 0.2414 +0 0.6189 +0 0.0575 +0 0.2990 +0 0.0649 +0 0.1919 +0 0.3281 +0 0.1069 +0 0.0705 +0 0.6813 +0 0.0411 +0 0.3015 +0 0.1676 +0 0.5889 +0 0.0653 +0 0.0635 +0 0.0513 +0 0.1268 +0 0.0977 +0 0.0897 +0 0.2816 +0 0.0335 +0 0.0509 +0 0.1809 +0 0.0542 +0 0.2005 +0 0.0521 +0 0.1990 +0 0.1271 +0 0.1214 +0 0.0619 +0 0.1186 +0 0.0588 +0 0.0844 +0 0.1311 +0 0.1251 +0 0.0622 +0 0.0707 +0 0.4424 +0 0.4985 +0 0.0582 +0 0.0435 +0 0.0996 +0 0.1934 +0 0.0465 +0 0.0779 +0 0.0971 +0 0.0733 +0 0.1231 +0 0.1432 +0 0.7101 +0 0.0586 +0 0.0802 +0 0.6079 +0 0.4591 +0 0.1008 +0 0.0768 +1 0.7544 +0 0.0967 +0 0.1400 +0 0.0549 +0 0.0781 +0 0.1291 +0 0.0441 +0 0.0722 +0 0.0907 +0 0.1015 +0 0.0425 +0 0.1029 +0 0.2287 +0 0.2169 +0 0.1300 +0 0.1872 +0 0.0890 +0 0.1190 +0 0.1022 +0 0.2372 +0 0.0993 +0 0.1281 +0 0.2065 +0 0.0430 +0 0.0929 +0 0.0905 +0 0.1048 +0 0.0873 +0 0.1329 +0 0.0864 +0 0.1142 +0 0.7223 +0 0.0959 +0 0.1006 +0 0.1506 +0 0.0666 +0 0.1189 +0 0.0623 +0 0.0911 +0 0.0809 +0 0.0316 +0 0.1350 +0 0.0847 +0 0.5822 +0 0.1600 +0 0.0862 +0 0.1086 +0 0.1943 +0 0.2714 +0 0.2522 +0 0.1392 +1 0.8771 +0 0.0728 +0 0.0851 +0 0.0480 +0 0.1376 +0 0.7286 +0 0.3513 +0 0.6278 +0 0.0813 +0 0.0531 +0 0.2146 +0 0.3238 +0 0.2109 +0 0.0765 +0 0.0980 +0 0.0534 +0 0.0911 +0 0.0933 +0 0.1925 +0 0.2043 +0 0.0808 +0 0.0606 +0 0.0759 +0 0.1720 +0 0.1189 +0 0.1094 +0 0.0593 +0 0.0636 +0 0.0994 +0 0.1495 +1 0.7801 +0 0.0526 +0 0.1558 +0 0.1156 +0 0.0885 +0 0.0972 +0 0.0584 +0 0.0884 +0 0.1528 +0 0.1666 +0 0.1284 +0 0.0380 +0 0.1753 +0 0.0869 +1 0.8028 +0 0.0801 +0 0.0782 +0 0.0457 +0 0.2603 +0 0.0701 +0 0.0676 +0 0.0572 +0 0.0760 +0 0.1073 +0 0.2667 +0 0.0518 +0 0.0579 +0 0.0441 +0 0.1812 +0 0.0922 +0 0.1394 +0 0.2026 +0 0.0769 +0 0.2367 +0 0.0500 +0 0.0688 +0 0.2230 +0 0.0834 +0 0.0770 +0 0.1486 +0 0.0626 +0 0.0544 +0 0.0659 +0 0.0570 +0 0.2010 +0 0.0333 +0 0.0621 +0 0.0839 +0 0.1876 +0 0.0552 +0 0.1130 +0 0.0443 +0 0.0792 +0 0.1197 +0 0.0769 +0 0.0483 +0 0.0713 +0 0.1590 +0 0.1778 +0 0.1001 +0 0.0496 +0 0.1116 +0 0.0996 +0 0.0571 +0 0.2111 +0 0.1246 +0 0.1410 +0 0.1615 +0 0.7055 +0 0.1052 +0 0.1065 +0 0.0660 +0 0.0860 +0 0.1454 +0 0.0990 +0 0.0675 +0 0.0498 +0 0.0695 +0 0.0753 +0 0.1211 +0 0.0580 +0 0.0654 +0 0.1901 +0 0.2114 +0 0.0782 +0 0.0914 +0 0.0815 +0 0.3273 +0 0.2475 +0 0.2793 +0 0.0515 +0 0.0535 +0 0.0522 +1 0.7994 +0 0.1623 +0 0.1154 +0 0.0729 +0 0.0734 +0 0.0486 +0 0.0616 +0 0.1741 +0 0.1708 +0 0.1826 +0 0.0861 +0 0.3486 +0 0.0974 +0 0.1065 +0 0.0613 +0 0.1944 +0 0.1649 +0 0.0634 +0 0.0741 +0 0.0906 +0 0.0624 +0 0.1767 +0 0.1005 +0 0.6768 +0 0.0950 +0 0.1348 +1 0.7746 +1 0.7850 +0 0.1553 +0 0.1285 +0 0.0411 +0 0.0890 +0 0.1252 +0 0.1826 +0 0.1155 +0 0.4384 +0 0.0914 +0 0.2704 +0 0.6122 +0 0.1005 +0 0.5674 +0 0.1118 +0 0.1209 +0 0.0766 +0 0.6972 +0 0.1108 +0 0.2935 +0 0.0708 +0 0.2917 +0 0.0662 +0 0.1973 +0 0.0897 +0 0.0356 +0 0.0768 +0 0.1268 +0 0.1642 +0 0.0722 +0 0.0514 +0 0.1151 +0 0.2177 +0 0.0400 +0 0.0673 +0 0.1070 +0 0.0870 +0 0.0554 +0 0.0993 +0 0.1090 +0 0.0758 +0 0.1173 +0 0.2270 +0 0.1171 +1 0.7920 +0 0.0425 +0 0.1403 +0 0.0328 +0 0.2718 +0 0.1717 +0 0.0758 +0 0.0932 +0 0.1083 +0 0.1317 +0 0.0487 +0 0.1246 +0 0.0499 +0 0.0674 +0 0.1075 +0 0.0986 +0 0.0776 +0 0.0909 +0 0.0592 +0 0.1050 +0 0.1616 +0 0.0592 +0 0.1177 +0 0.0477 +0 0.1215 +0 0.1017 +0 0.0962 +0 0.1165 +0 0.0597 +0 0.0794 +1 0.8195 +0 0.0599 +0 0.5018 +0 0.1164 +0 0.1932 +0 0.0658 +0 0.6096 +0 0.0445 +0 0.0558 +0 0.1241 +0 0.1096 +0 0.1239 +0 0.1154 +0 0.1656 +0 0.1932 +0 0.1786 +0 0.6902 +0 0.0610 +0 0.2187 +0 0.0597 +0 0.0564 +0 0.0471 +0 0.1804 +0 0.3952 +0 0.0911 +0 0.1027 +0 0.0512 +0 0.0710 +0 0.0970 +0 0.1100 +0 0.0539 +0 0.0613 +0 0.1304 +1 0.8831 +0 0.0798 +0 0.0408 +0 0.0782 +0 0.0490 +0 0.1840 +0 0.0931 +0 0.0646 +0 0.0551 +0 0.0566 +0 0.3150 +0 0.2076 +0 0.4607 +0 0.0502 +0 0.0583 +0 0.0593 +0 0.2072 +0 0.1282 +0 0.0783 +0 0.1173 +0 0.0410 +0 0.1375 +0 0.0382 +0 0.0673 +0 0.1713 +0 0.1493 +0 0.2801 +0 0.1561 +0 0.0596 +0 0.1080 +0 0.1086 +0 0.0700 +0 0.3143 +0 0.0918 +0 0.1061 +0 0.1528 +0 0.0389 +0 0.0858 +0 0.0431 +0 0.2225 +0 0.4214 +0 0.1247 +0 0.0929 +0 0.1372 +0 0.5216 +0 0.0685 +0 0.0608 +0 0.2053 +0 0.0500 +0 0.0603 +0 0.3174 +0 0.1021 +0 0.0859 +0 0.1482 +0 0.0551 +0 0.0754 +0 0.1133 +0 0.0911 +0 0.0603 +0 0.0824 +0 0.3218 +0 0.0679 +0 0.0682 +0 0.0429 +1 0.8686 +0 0.2649 +1 0.8132 +0 0.1613 +0 0.1398 +0 0.0962 +0 0.1309 +0 0.0644 +0 0.0962 +0 0.0419 +0 0.1424 +0 0.1227 +0 0.0899 +0 0.0871 +0 0.1280 +0 0.1360 +0 0.1960 +0 0.1478 +0 0.1041 +0 0.1218 +0 0.1205 +0 0.0740 +0 0.0709 +0 0.1219 +0 0.5183 +0 0.2064 +0 0.1057 +0 0.0694 +0 0.0408 +0 0.1745 +0 0.0960 +0 0.0623 +0 0.0658 +0 0.0936 +0 0.0691 +0 0.1266 +0 0.1493 +0 0.2022 +0 0.1125 +0 0.2600 +0 0.0647 +0 0.0688 +0 0.0348 +0 0.0919 +0 0.0532 +0 0.0693 +0 0.1991 +0 0.1731 +0 0.0672 +0 0.1847 +0 0.1065 +0 0.0846 +0 0.0856 +0 0.1327 +0 0.0949 +0 0.0930 +0 0.0448 +0 0.1711 +0 0.2093 +0 0.1614 +0 0.1230 +0 0.1840 +0 0.3038 +0 0.1616 +0 0.3819 +0 0.0872 +0 0.0936 +0 0.0660 +0 0.2106 +0 0.0815 +0 0.1657 +0 0.0623 +0 0.1591 +0 0.0665 +0 0.0601 +0 0.1269 +0 0.1299 +0 0.0895 +0 0.0616 +0 0.1960 +0 0.1737 +0 0.3590 +0 0.3640 +0 0.2412 +0 0.1746 +0 0.0638 +0 0.2282 +0 0.0977 +0 0.2660 +0 0.0774 +0 0.0635 +0 0.1564 +0 0.1019 +0 0.0722 +0 0.1805 +0 0.0620 +0 0.2983 +0 0.1315 +0 0.1581 +0 0.0892 +0 0.6330 +0 0.1386 +0 0.1889 +0 0.1080 +0 0.2732 +0 0.1283 +0 0.0572 +0 0.0799 +0 0.2300 +0 0.1072 +0 0.1392 +0 0.0571 +0 0.1180 +0 0.0929 +0 0.0802 +0 0.0970 +0 0.1433 +0 0.2495 +0 0.2662 +0 0.1375 +0 0.1057 +0 0.0796 +0 0.0917 +0 0.5406 +0 0.2428 +0 0.0702 +0 0.2944 +0 0.2997 +0 0.3638 +0 0.1209 +0 0.1596 +0 0.0881 +0 0.3069 +0 0.0640 +0 0.0301 +0 0.1076 +0 0.0667 +0 0.0692 +0 0.0698 +0 0.2495 +0 0.1415 +0 0.0499 +0 0.0600 +0 0.2100 +0 0.0907 +0 0.0636 +0 0.0683 +0 0.2063 +0 0.1539 +0 0.0790 +0 0.1059 +0 0.1289 +0 0.0545 +0 0.0598 +0 0.0809 +0 0.0534 +0 0.2997 +0 0.3255 +0 0.0812 +0 0.0959 +0 0.0967 +0 0.0602 +0 0.0565 +0 0.0777 +0 0.1469 +0 0.0830 +0 0.1429 +0 0.0733 +0 0.1419 +0 0.2762 +0 0.1048 +0 0.0767 +0 0.2161 +0 0.0759 +0 0.0967 +0 0.2221 +0 0.0847 +0 0.1393 +0 0.1474 +0 0.0509 +0 0.1955 +0 0.2914 +0 0.2023 +0 0.2027 +0 0.1443 +0 0.0837 +0 0.1294 +0 0.0721 +0 0.0783 +0 0.0461 +0 0.0438 +0 0.0902 +0 0.3059 +0 0.0848 +0 0.0480 +0 0.2449 +0 0.1409 +0 0.0782 +0 0.0882 +0 0.0872 +0 0.0958 +0 0.1538 +0 0.0602 +0 0.1888 +0 0.0556 +0 0.0445 +0 0.0854 +0 0.3156 +0 0.0896 +0 0.0443 +0 0.0502 +0 0.0442 +0 0.2130 +1 0.8202 +0 0.0661 +0 0.0561 +0 0.3778 +0 0.0556 +0 0.0597 +0 0.1269 +0 0.1334 +0 0.0659 +0 0.0729 +0 0.1460 +0 0.0651 +0 0.0643 +0 0.1422 +0 0.1070 +0 0.0846 +0 0.0925 +0 0.0815 +0 0.0467 +0 0.0467 +0 0.1452 +0 0.0623 +0 0.0960 +0 0.1105 +0 0.0779 +0 0.1770 +0 0.1014 +0 0.0955 +0 0.2202 +0 0.0917 +0 0.0567 +0 0.1622 +0 0.0808 +0 0.0530 +0 0.2156 +0 0.1058 +0 0.0648 +0 0.3864 +0 0.4783 +0 0.1172 +0 0.0825 +0 0.1943 +0 0.0639 +0 0.0946 +0 0.0990 +0 0.0396 +0 0.1557 +0 0.2677 +0 0.0660 +0 0.4208 +0 0.1170 +0 0.1596 +0 0.1197 +0 0.0981 +0 0.6072 +0 0.0813 +0 0.1530 +0 0.1252 +0 0.0887 +0 0.1364 +0 0.2422 +0 0.1045 +0 0.0902 +0 0.1068 +0 0.1000 +0 0.0785 +0 0.0962 +1 0.8590 +0 0.1500 +0 0.0313 +0 0.0864 +0 0.0761 +0 0.0655 +0 0.1409 +0 0.2757 +0 0.0891 +0 0.2334 +0 0.0492 +0 0.0895 +0 0.0435 +0 0.4830 +0 0.0753 +0 0.1315 +0 0.1964 +0 0.5328 +0 0.0935 +0 0.1141 +0 0.0870 +0 0.1152 +0 0.1086 +0 0.1107 +0 0.0810 +0 0.1267 +0 0.1517 +0 0.0646 +0 0.1559 +0 0.0647 +0 0.2120 +0 0.1081 +0 0.1116 +0 0.0595 +0 0.1722 +1 0.8343 +0 0.0838 +0 0.1183 +0 0.1159 +0 0.0834 +0 0.0804 +0 0.0664 +0 0.0812 +0 0.1702 +0 0.0809 +0 0.1370 +0 0.0662 +0 0.3537 +0 0.2153 +0 0.1701 +0 0.0529 +0 0.0458 +0 0.1194 +0 0.0523 +0 0.1003 +0 0.0786 +0 0.0992 +0 0.5673 +0 0.2504 +0 0.0679 +0 0.0623 +0 0.1696 +0 0.0489 +0 0.1294 +0 0.1187 +0 0.0474 +0 0.1943 +0 0.0813 +0 0.1330 +0 0.2119 +0 0.1900 +0 0.2539 +0 0.3461 +0 0.2753 +0 0.2485 +0 0.2045 +0 0.5855 +0 0.0486 +0 0.0411 +0 0.0578 +0 0.2069 +0 0.0509 +0 0.2326 +0 0.0598 +0 0.0571 +0 0.0359 +0 0.1134 +0 0.2248 +0 0.1675 +0 0.1421 +0 0.1966 +0 0.0392 +0 0.0753 +0 0.1568 +0 0.1844 +0 0.2883 +0 0.2825 +0 0.0922 +0 0.0398 +0 0.2855 +0 0.2398 +0 0.0761 +0 0.0591 +0 0.0671 +0 0.0688 +0 0.0672 +0 0.0564 +0 0.0554 +0 0.2988 +1 0.7560 +0 0.0473 +0 0.0649 +0 0.0769 +0 0.1445 +0 0.0738 +1 0.7935 +0 0.1341 +0 0.0617 +0 0.0770 +0 0.0948 +0 0.1009 +0 0.1653 +0 0.1048 +0 0.1369 +1 0.7857 +0 0.2374 +0 0.2460 +0 0.1439 +0 0.1284 +0 0.0752 +0 0.1751 +0 0.1065 +0 0.1033 +0 0.0457 +0 0.0969 +0 0.0810 +0 0.1581 +0 0.1332 +0 0.1246 +0 0.1415 +0 0.0763 +0 0.0883 +0 0.0578 +0 0.1716 +0 0.2918 +1 0.7953 +0 0.0548 +0 0.0528 +0 0.1118 +0 0.0906 +0 0.3763 +0 0.0533 +0 0.1226 +0 0.1610 +0 0.0997 +0 0.0523 +0 0.0657 +0 0.0680 +0 0.0905 +0 0.0747 +0 0.0532 +0 0.0684 +0 0.7362 +0 0.0841 +0 0.1316 +0 0.0593 +0 0.1499 +0 0.0574 +0 0.1479 +0 0.1039 +0 0.0752 +0 0.0479 +0 0.2248 +0 0.0677 +0 0.0676 +0 0.1107 +0 0.0412 +0 0.0548 +0 0.0503 +0 0.0877 +0 0.1179 +0 0.0532 +0 0.5010 +0 0.0569 +0 0.1186 +0 0.0672 +1 0.8013 +0 0.0750 +0 0.3623 +0 0.1639 +0 0.0984 +0 0.1668 +0 0.1595 +0 0.0601 +0 0.1364 +0 0.1011 +0 0.0573 +0 0.1378 +0 0.3125 +0 0.6089 +0 0.1002 +1 0.7776 +0 0.0487 +0 0.0744 +0 0.1539 +0 0.1319 +0 0.1439 +0 0.0748 +0 0.0822 +0 0.0590 +0 0.2162 +0 0.5445 +0 0.0535 +0 0.0901 +0 0.2989 +0 0.1073 +0 0.1074 +0 0.1781 +0 0.1450 +0 0.0345 +0 0.1141 +0 0.1586 +0 0.0925 +0 0.0680 +0 0.0534 +0 0.2575 +0 0.1115 +0 0.4566 +0 0.1275 +0 0.0668 +0 0.1206 +0 0.0887 +0 0.0931 +0 0.0783 +1 0.7623 +0 0.3045 +0 0.0708 +0 0.2751 +0 0.1376 +0 0.0996 +0 0.1320 +0 0.1862 +0 0.1457 +0 0.1594 +0 0.3315 +0 0.1111 +0 0.2741 +0 0.3195 +0 0.0800 +0 0.1913 +0 0.0585 +0 0.1404 +0 0.0766 +0 0.0665 +0 0.1132 +0 0.0868 +0 0.1850 +0 0.1806 +0 0.0669 +0 0.1238 +0 0.1420 +0 0.2169 +0 0.3367 +0 0.1602 +0 0.1501 +0 0.0611 +0 0.0620 +0 0.1605 +0 0.1562 +0 0.0670 +0 0.0891 +0 0.0378 +0 0.1075 +0 0.0734 +0 0.1075 +0 0.2496 +0 0.1022 +0 0.1357 +0 0.1397 +0 0.1561 +0 0.5923 +0 0.0489 +0 0.0559 +0 0.0804 +0 0.0937 +0 0.1577 +0 0.0727 +0 0.1052 +0 0.2116 +0 0.1060 +0 0.0526 +0 0.2687 +0 0.4361 +0 0.1357 +0 0.1431 +0 0.1553 +0 0.0544 +0 0.0764 +0 0.2642 +0 0.0847 +0 0.1130 +0 0.1070 +0 0.1232 +0 0.2086 +0 0.1046 +0 0.0670 +0 0.1620 +1 0.8271 +0 0.1698 +0 0.0502 +0 0.0689 +0 0.1241 +0 0.4195 +0 0.0646 +0 0.1292 +0 0.0704 +0 0.1857 +0 0.0670 +0 0.0330 +0 0.1765 +0 0.1038 +0 0.0419 +0 0.7064 +0 0.3832 +0 0.0739 +0 0.0858 +0 0.1822 +0 0.0626 +0 0.0827 +0 0.5009 +0 0.1935 +0 0.0649 +0 0.1593 +0 0.1319 +0 0.2080 +0 0.0482 +0 0.1174 +0 0.1347 +0 0.2190 +0 0.5426 +0 0.0615 +0 0.0598 +0 0.0841 +0 0.0444 +0 0.0615 +0 0.2567 +0 0.1745 +0 0.0660 +0 0.1672 +0 0.0792 +0 0.0918 +0 0.1475 +0 0.0965 +0 0.0529 +0 0.1426 +0 0.1035 +0 0.0577 +0 0.0416 +0 0.2812 +0 0.3414 +0 0.1380 +0 0.1261 +0 0.0412 +0 0.0744 +0 0.0553 +0 0.0572 +0 0.0726 +0 0.0343 +0 0.1128 +0 0.6704 +0 0.2588 +0 0.1065 +0 0.0352 +0 0.1306 +0 0.3041 +0 0.0960 +0 0.3677 +0 0.0609 +0 0.0743 +0 0.0794 +0 0.2163 +0 0.1120 +0 0.4270 +0 0.5271 +0 0.0673 +0 0.0551 +0 0.0716 +0 0.0748 +0 0.2609 +0 0.0427 +0 0.2102 +0 0.0465 +0 0.1497 +0 0.0484 +0 0.0881 +0 0.0685 +0 0.1346 +0 0.0764 +0 0.0923 +0 0.1912 +0 0.1479 +0 0.3154 +0 0.1700 +0 0.4930 +0 0.0453 +0 0.2563 +0 0.0923 +0 0.1306 +0 0.1271 +0 0.2109 +1 0.7843 +0 0.0358 +0 0.1395 +0 0.1133 +0 0.0990 +0 0.3986 +0 0.0818 +0 0.3666 +0 0.4285 +0 0.0597 +0 0.0916 +0 0.4259 +0 0.3812 +0 0.0369 +0 0.0927 +0 0.0690 +0 0.0307 +0 0.0905 +0 0.0511 +0 0.0817 +0 0.1074 +0 0.2034 +0 0.1236 +0 0.0511 +0 0.7042 +0 0.0796 +0 0.0948 +0 0.1064 +1 0.7799 +0 0.0904 +0 0.0630 +0 0.1889 +0 0.1416 +0 0.0992 +0 0.0900 +1 0.8085 +0 0.0996 +0 0.1826 +0 0.0721 +0 0.0946 +0 0.0770 +0 0.0916 +0 0.0716 +0 0.1181 +0 0.1443 +0 0.0570 +0 0.1079 +0 0.1214 +0 0.2100 +0 0.0309 +0 0.1699 +0 0.6747 +0 0.2359 +0 0.1800 +0 0.1182 +1 0.8335 +0 0.0840 +0 0.1513 +0 0.0535 +0 0.0672 +0 0.0575 +0 0.1447 +0 0.1796 +0 0.0671 +0 0.1182 +0 0.2535 +0 0.1508 +0 0.0648 +0 0.2025 +0 0.0605 +0 0.1245 +0 0.0344 +0 0.1369 +0 0.1558 +0 0.0952 +0 0.1780 +0 0.1451 +0 0.1105 +0 0.1609 +0 0.3418 +0 0.0804 +0 0.0765 +0 0.2678 +0 0.1981 +0 0.2046 +0 0.0522 +0 0.0982 +0 0.1217 +0 0.3840 +0 0.1175 +0 0.0587 +0 0.1431 +0 0.0421 +0 0.0682 +0 0.0665 +0 0.0881 +1 0.8768 +0 0.1993 +0 0.0978 +0 0.0782 +0 0.2056 +0 0.0918 +0 0.1269 +0 0.0562 +0 0.0569 +0 0.0958 +0 0.0913 +0 0.3682 +0 0.0658 +0 0.1846 +0 0.0958 +1 0.7787 +1 0.8067 +0 0.2334 +0 0.1115 +0 0.0883 +0 0.1336 +0 0.1151 +0 0.2762 +0 0.1881 +0 0.0636 +0 0.0493 +0 0.0510 +0 0.4588 +0 0.2468 +0 0.1151 +0 0.0980 +0 0.2401 +0 0.1108 +0 0.1064 +0 0.2053 +0 0.0372 +0 0.1302 +0 0.0999 +0 0.0453 +0 0.3533 +0 0.0527 +0 0.0724 +1 0.8181 +0 0.1312 +0 0.1532 +0 0.1825 +0 0.0949 +0 0.0935 +0 0.5945 +0 0.0596 +0 0.2798 +0 0.2575 +0 0.0789 +0 0.1319 +0 0.4648 +0 0.1330 +0 0.0455 +0 0.0525 +0 0.1498 +0 0.0676 +0 0.0721 +0 0.1640 +0 0.2714 +0 0.0760 +0 0.1422 +0 0.0779 +0 0.0562 +0 0.0862 +0 0.1127 +0 0.0613 +0 0.1033 +0 0.1754 +0 0.2099 +0 0.1765 +0 0.0683 +0 0.1136 +0 0.2279 +0 0.0786 +0 0.1619 +0 0.0943 +0 0.1163 +0 0.0547 +0 0.1828 +0 0.1502 +0 0.0684 +0 0.0871 +0 0.0657 +0 0.1168 +0 0.3957 +0 0.0953 +0 0.1094 +0 0.0527 +0 0.1272 +0 0.1254 +0 0.0793 +0 0.1346 +0 0.0500 +0 0.1663 +0 0.3190 +0 0.1647 +0 0.0970 +0 0.0681 +0 0.0779 +0 0.1888 +0 0.0508 +0 0.0947 +0 0.0560 +0 0.0459 +0 0.2894 +0 0.0941 +0 0.0681 +0 0.1447 +0 0.1442 +0 0.2426 +0 0.0427 +0 0.0722 +0 0.2707 +0 0.0627 +0 0.1604 +0 0.1061 +0 0.6543 +0 0.0939 +0 0.1701 +0 0.0638 +0 0.0924 +0 0.1428 +0 0.0799 +0 0.0534 +0 0.3003 +0 0.3818 +0 0.1549 +0 0.2302 +0 0.0427 +0 0.1011 +0 0.0943 +0 0.4345 +0 0.1791 +0 0.0512 +0 0.1688 +0 0.0504 +0 0.1557 +0 0.0629 +0 0.2348 +1 0.8004 +0 0.1147 +1 0.7618 +0 0.1015 +0 0.2528 +0 0.0892 +0 0.1081 +0 0.0818 +0 0.0929 +0 0.0982 +0 0.0724 +0 0.1132 +0 0.0380 +0 0.0897 +0 0.1148 +0 0.0814 +0 0.6129 +0 0.1908 +0 0.2765 +0 0.0363 +0 0.1283 +1 0.7788 +0 0.0353 +0 0.1059 +0 0.1599 +0 0.0842 +0 0.0855 +0 0.1526 +0 0.1025 +0 0.0578 +0 0.1284 +0 0.0641 +0 0.0458 +0 0.2152 +0 0.1788 +0 0.1666 +0 0.0796 +0 0.0869 +0 0.0899 +0 0.0615 +0 0.0523 +0 0.2059 +0 0.0910 +0 0.0753 +0 0.1020 +0 0.1607 +0 0.1033 +0 0.2480 +0 0.3649 +0 0.2609 +0 0.0869 +0 0.1495 +0 0.0472 +0 0.1012 +0 0.0752 +0 0.0896 +0 0.1408 +0 0.0666 +0 0.2064 +1 0.8202 +0 0.1849 +0 0.1996 +0 0.1523 +0 0.0934 +0 0.0504 +0 0.1042 +0 0.2258 +0 0.1463 +0 0.0630 +0 0.2367 +0 0.0678 +0 0.0755 +0 0.2724 +0 0.0909 +0 0.0897 +0 0.2340 +0 0.1376 +0 0.2023 +0 0.0671 +0 0.0654 +0 0.0548 +0 0.0892 +0 0.0860 +0 0.0916 +0 0.1021 +0 0.0494 +0 0.1332 +0 0.2905 +0 0.1209 +0 0.0810 +0 0.1147 +0 0.1353 +0 0.1222 +0 0.5980 +0 0.1145 +0 0.5733 +0 0.1280 +0 0.1672 +0 0.0635 +0 0.1310 +0 0.1527 +1 0.8051 +0 0.0615 +0 0.1216 +1 0.7698 +0 0.1310 +0 0.1049 +0 0.0678 +0 0.0838 +0 0.1171 +0 0.0897 +0 0.1434 +0 0.1645 +0 0.0602 +0 0.1349 +0 0.0683 +0 0.1579 +0 0.1829 +0 0.2258 +0 0.1555 +0 0.1227 +0 0.2355 +0 0.0736 +0 0.0874 +0 0.0389 +0 0.0615 +0 0.1400 +0 0.0965 +0 0.0780 +0 0.0558 +0 0.0532 +0 0.0637 +0 0.0561 +0 0.5419 +1 0.8096 +0 0.4085 +0 0.0990 +0 0.0898 +0 0.0486 +0 0.0797 +0 0.0585 +0 0.0941 +0 0.2066 +0 0.1117 +0 0.0969 +0 0.1246 +0 0.2813 +0 0.1529 +0 0.0688 +0 0.0780 +0 0.1974 +0 0.0795 +0 0.1071 +0 0.0454 +0 0.0462 +0 0.0701 +0 0.0723 +0 0.0450 +0 0.1855 +0 0.0678 +0 0.0585 +0 0.4184 +0 0.0294 +0 0.1431 +0 0.4530 +0 0.0792 +0 0.1913 +0 0.1381 +0 0.0278 +0 0.0656 +1 0.8069 +0 0.0782 +0 0.0531 +0 0.1209 +0 0.1067 +0 0.0495 +0 0.1924 +0 0.1105 +0 0.0446 +0 0.1675 +0 0.2715 +0 0.1824 +0 0.4316 +0 0.1707 +0 0.0693 +0 0.1515 +0 0.0511 +0 0.0884 +0 0.0824 +0 0.0937 +0 0.0884 +0 0.0627 +0 0.0898 +0 0.0747 +0 0.0432 +0 0.0546 +0 0.1197 +0 0.1798 +0 0.2945 +0 0.2547 +0 0.4049 +0 0.1361 +0 0.1654 +0 0.1126 +0 0.0924 +0 0.0879 +0 0.1102 +0 0.1228 +0 0.0553 +0 0.1522 +0 0.1356 +0 0.4226 +0 0.1173 +0 0.1010 +0 0.1025 +0 0.1105 +0 0.1612 +0 0.0435 +0 0.1948 +0 0.1124 +0 0.0643 +0 0.1338 +0 0.2617 +0 0.0607 +0 0.1159 +0 0.1263 +0 0.2679 +0 0.6431 +0 0.1086 +0 0.1104 +0 0.1414 +0 0.1022 +0 0.0826 +0 0.0580 +0 0.0558 +0 0.1031 +0 0.1168 +0 0.1003 +0 0.0986 +0 0.2051 +0 0.1329 +0 0.1935 +0 0.2329 +0 0.1309 +0 0.0676 +0 0.0986 +0 0.0787 +0 0.1588 +0 0.1260 +1 0.7912 +0 0.1171 +0 0.0733 +0 0.0552 +0 0.1346 +0 0.0790 +0 0.0988 +0 0.1557 +0 0.2209 +0 0.1881 +0 0.0618 +0 0.1412 +0 0.3104 +0 0.2471 +0 0.0837 +0 0.1189 +0 0.2229 +0 0.0820 +0 0.0920 +0 0.1195 +0 0.1232 +0 0.0759 +0 0.0793 +1 0.7649 +0 0.1462 +0 0.1026 +0 0.1408 +0 0.1234 +0 0.0448 +0 0.1000 +0 0.1899 +0 0.1216 +0 0.1903 +0 0.1273 +0 0.0456 +0 0.1310 +0 0.2837 +0 0.0850 +0 0.1851 +0 0.1190 +0 0.1220 +0 0.1404 +0 0.0877 +0 0.1099 +0 0.1046 +0 0.3213 +0 0.1865 +0 0.1060 +0 0.2374 +0 0.0642 +0 0.0932 +0 0.0713 +0 0.0488 +0 0.0733 +0 0.1939 +0 0.1243 +0 0.1398 +0 0.1163 +0 0.4242 +0 0.0552 +0 0.1340 +0 0.1089 +1 0.7613 +0 0.5368 +0 0.1763 +0 0.1346 +0 0.0527 +0 0.3460 +0 0.0875 +0 0.0446 +0 0.3387 +0 0.0477 +0 0.1098 +0 0.1535 +0 0.1467 +0 0.1454 +0 0.1685 +0 0.0626 +0 0.1717 +0 0.1828 +0 0.2053 +0 0.1360 +0 0.1260 +0 0.0687 +0 0.1668 +0 0.1049 +0 0.0672 +0 0.1171 +0 0.0637 +0 0.1032 +0 0.1333 +0 0.1028 +0 0.1432 +0 0.0783 +0 0.1137 +0 0.1432 +0 0.0731 +0 0.1734 +0 0.1097 +0 0.0651 +0 0.0515 +0 0.3727 +0 0.0990 +0 0.0785 +0 0.2212 +0 0.0725 +0 0.0851 +0 0.0905 +0 0.2701 +0 0.5293 +0 0.0673 +0 0.0582 +0 0.1184 +0 0.0741 +0 0.1050 +0 0.0428 +0 0.1421 +0 0.1492 +0 0.0865 +0 0.1380 +0 0.3583 +0 0.1114 +0 0.1470 +0 0.0943 +0 0.1919 +0 0.0950 +0 0.3268 +0 0.0462 +0 0.1746 +0 0.0846 +0 0.1656 +0 0.0691 +0 0.1205 +0 0.1132 +0 0.1368 +0 0.1308 +0 0.3123 +0 0.1914 +0 0.0640 +0 0.0647 +0 0.1735 +0 0.0667 +0 0.0998 +0 0.0996 +0 0.1273 +0 0.1095 +0 0.1067 +0 0.0776 +0 0.2180 +0 0.0703 +0 0.0996 +0 0.0745 +0 0.1231 +0 0.1148 +0 0.2628 +0 0.0716 +0 0.0705 +1 0.1896 +0 0.1074 +0 0.0556 +0 0.0678 +0 0.0652 +0 0.2050 +0 0.1245 +0 0.0983 +0 0.6930 +0 0.0323 +0 0.0770 +0 0.3113 +0 0.0647 +0 0.1341 +0 0.0785 +0 0.0735 +0 0.0590 +0 0.1230 +0 0.1773 +0 0.1066 +0 0.0533 +0 0.0657 +0 0.1310 +0 0.0580 +0 0.2684 +0 0.1541 +0 0.0482 +0 0.0760 +0 0.0548 +0 0.0810 +0 0.2746 +0 0.0722 +0 0.0577 +0 0.5033 +0 0.1067 +0 0.1725 +0 0.1215 +0 0.0644 +0 0.2383 +0 0.1954 +0 0.0793 +0 0.4473 +0 0.1867 +0 0.1861 +1 0.8194 +0 0.0767 +0 0.0559 +0 0.7414 +0 0.1878 +0 0.2782 +0 0.0436 +0 0.1084 +0 0.1033 +0 0.1012 +0 0.0537 +0 0.1086 +0 0.1492 +0 0.2733 +0 0.1463 +0 0.2096 +0 0.0719 +0 0.0845 +0 0.0706 +0 0.1310 +0 0.2176 +0 0.0841 +0 0.1215 +0 0.2368 +0 0.1946 +0 0.2242 +0 0.0903 +0 0.1653 +0 0.1630 +0 0.0428 +0 0.1292 +0 0.3421 +0 0.1418 +0 0.0871 +0 0.0461 +0 0.1772 +0 0.1088 +0 0.1123 +0 0.0758 +0 0.6029 +0 0.1332 +0 0.2036 +0 0.1340 +0 0.1745 +0 0.3288 +1 0.7992 +0 0.1957 +0 0.0698 +0 0.2550 +0 0.1343 +0 0.1574 +0 0.2027 +0 0.0504 +0 0.1497 +0 0.1997 +0 0.2089 +0 0.0585 +0 0.0971 +0 0.1210 +0 0.0490 +0 0.2383 +0 0.0685 +0 0.1509 +0 0.1342 +0 0.0964 +0 0.2196 +0 0.1542 +0 0.2378 +0 0.0478 +0 0.0753 +0 0.2149 +0 0.0899 +0 0.0848 +0 0.0880 +0 0.1174 +1 0.8437 +0 0.1530 +0 0.1191 +0 0.1628 +0 0.0571 +0 0.1578 +0 0.1502 +0 0.0682 +0 0.0924 +0 0.0490 +0 0.7457 +0 0.1055 +0 0.1674 +0 0.0548 +0 0.6131 +0 0.1253 +0 0.1264 +0 0.3695 +0 0.2097 +0 0.1461 +0 0.1020 +0 0.5827 +0 0.0496 +0 0.1084 +0 0.0673 +0 0.1385 +0 0.0957 +0 0.0811 +0 0.1403 +0 0.2052 +0 0.0654 +0 0.0990 +0 0.3805 +0 0.0292 +0 0.0898 +1 0.8108 +0 0.0716 +0 0.0788 +0 0.1004 +0 0.1349 +0 0.0970 +0 0.4307 +0 0.4635 +0 0.0912 +0 0.1075 +0 0.3277 +0 0.0402 +0 0.1889 +0 0.4841 +0 0.0676 +0 0.0717 +0 0.1982 +0 0.0491 +0 0.0938 +0 0.0346 +0 0.2374 +0 0.1201 +0 0.1041 +0 0.1774 +0 0.1021 +0 0.0989 +0 0.0937 +0 0.0698 +0 0.2415 +0 0.2650 +0 0.0790 +0 0.0441 +0 0.0448 +0 0.1192 +0 0.1334 +1 0.8107 +0 0.0483 +0 0.0629 +0 0.1707 +0 0.0449 +0 0.0670 +0 0.2056 +0 0.1536 +0 0.1001 +0 0.1579 +0 0.2176 +0 0.1610 +1 0.7574 +0 0.0771 +0 0.0599 +0 0.1554 +0 0.1343 +0 0.0709 +0 0.2079 +0 0.0383 +0 0.1512 +0 0.2033 +0 0.0675 +0 0.1098 +0 0.0588 +0 0.0923 +0 0.1328 +0 0.4391 +0 0.0918 +0 0.1140 +0 0.0945 +0 0.0516 +0 0.0759 +0 0.0729 +0 0.1877 +0 0.1674 +0 0.1066 +0 0.0652 +0 0.1936 +0 0.0753 +0 0.0606 +0 0.1343 +0 0.1012 +0 0.0382 +0 0.2795 +0 0.0420 +0 0.0765 +0 0.0933 +0 0.0489 +0 0.1106 +0 0.1961 +0 0.1358 +0 0.0959 +0 0.1264 +0 0.1442 +0 0.0393 +0 0.0710 +0 0.2560 +0 0.1292 +0 0.2036 +0 0.0608 +0 0.0636 +0 0.3483 +0 0.1291 +0 0.1349 +0 0.1473 +0 0.1271 +0 0.3929 +0 0.1229 +0 0.0891 +0 0.0755 +0 0.1739 +0 0.0991 +0 0.2172 +0 0.5182 +0 0.0423 +0 0.0660 +0 0.1067 +0 0.0850 +0 0.1330 +0 0.1444 +0 0.0846 +0 0.3701 +0 0.0604 +0 0.0669 +0 0.0495 +0 0.1206 +0 0.0688 +0 0.0839 +0 0.0498 +0 0.2095 +0 0.1440 +0 0.1500 +0 0.0793 +0 0.0587 +0 0.2162 +0 0.0590 +0 0.2321 +0 0.1906 +0 0.0889 +0 0.1537 +0 0.0515 +0 0.2214 +0 0.0924 +0 0.0895 +0 0.0380 +1 0.8456 +0 0.0818 +0 0.1204 +0 0.1295 +0 0.3577 +0 0.1072 +0 0.1626 +0 0.1332 +0 0.1125 +0 0.0615 +0 0.1292 +0 0.0759 +0 0.2452 +0 0.1332 +0 0.2573 +0 0.0538 +0 0.0962 +0 0.0784 +0 0.0526 +0 0.0841 +0 0.6404 +0 0.5789 +0 0.1378 +0 0.2483 +0 0.0800 +0 0.1452 +1 0.8704 +0 0.1151 +0 0.0759 +0 0.1296 +0 0.1308 +1 0.8722 +0 0.0869 +0 0.1601 +0 0.2368 +0 0.0480 +0 0.1302 +0 0.1231 +0 0.2544 +0 0.0901 +0 0.0430 +0 0.1520 +0 0.0834 +0 0.1401 +0 0.0962 +0 0.1558 +1 0.8449 +0 0.0526 +0 0.0893 +0 0.1301 +0 0.2214 +0 0.1151 +0 0.1874 +0 0.1007 +0 0.2223 +0 0.6030 +0 0.2679 +0 0.1208 +0 0.0885 +0 0.1338 +0 0.0434 +0 0.0618 +0 0.2235 +0 0.5728 +0 0.0703 +0 0.2698 +0 0.2224 +0 0.2824 +0 0.1568 +0 0.1574 +0 0.0669 +0 0.0954 +0 0.3598 +0 0.0997 +0 0.1245 +0 0.0779 +0 0.0952 +0 0.2626 +0 0.1100 +0 0.0598 +0 0.0795 +0 0.3525 +0 0.0965 +0 0.1325 +0 0.1180 +0 0.0504 +0 0.2760 +0 0.0391 +0 0.1932 +0 0.2701 +0 0.1422 +0 0.1047 +0 0.1516 +1 0.8170 +0 0.0893 +0 0.1609 +0 0.0918 +0 0.1781 +0 0.0622 +0 0.0777 +0 0.1544 +0 0.5835 +0 0.1519 +0 0.0962 +0 0.1179 +1 0.8017 +0 0.0696 +0 0.0487 +0 0.1502 +0 0.2370 +0 0.0647 +0 0.1371 +0 0.4664 +0 0.0742 +0 0.1292 +0 0.1692 +0 0.1925 +0 0.1077 +0 0.0653 +0 0.0957 +0 0.0371 +0 0.1581 +0 0.1131 +0 0.0842 +0 0.0785 +0 0.1681 +0 0.2663 +0 0.0365 +0 0.1276 +0 0.1334 +0 0.2261 +0 0.0466 +0 0.0804 +0 0.1078 +0 0.1225 +0 0.0528 +0 0.0419 +0 0.1442 +0 0.3264 +0 0.0626 +0 0.0934 +0 0.1348 +0 0.1256 +0 0.0592 +0 0.0674 +0 0.0506 +0 0.0929 +0 0.1063 +0 0.0605 +0 0.1075 +0 0.1753 +0 0.0906 +0 0.1309 +0 0.2463 +0 0.1207 +0 0.0914 +0 0.0857 +0 0.0900 +0 0.0874 +0 0.2685 +0 0.0601 +0 0.1034 +0 0.0859 +0 0.1232 +0 0.0773 +0 0.0821 +0 0.2223 +0 0.0766 +0 0.1074 +0 0.2383 +0 0.0851 +0 0.1314 +0 0.2595 +0 0.0546 +0 0.0883 +0 0.2138 +0 0.0440 +0 0.0621 +0 0.0768 +0 0.2285 +0 0.0621 +0 0.0492 +0 0.0698 +0 0.1320 +0 0.1523 +1 0.8472 +0 0.2102 +0 0.1082 +0 0.0472 +0 0.4606 +0 0.2452 +0 0.0782 +0 0.1050 +0 0.0670 +0 0.0403 +0 0.2430 +0 0.1162 +0 0.2158 +0 0.0796 +0 0.0699 +0 0.2616 +0 0.2040 +0 0.3492 +0 0.0918 +0 0.2367 +0 0.1923 +0 0.0938 +0 0.0459 +0 0.1323 +0 0.0905 +0 0.0983 +0 0.7173 +0 0.1168 +0 0.2110 +0 0.0442 +0 0.0556 +0 0.0959 +0 0.0585 +0 0.1051 +0 0.0610 +0 0.2733 +0 0.2472 +0 0.2839 +0 0.0482 +0 0.0702 +0 0.0599 +0 0.0557 +0 0.1163 +0 0.1104 +0 0.2242 +0 0.0430 +0 0.0504 +0 0.2162 +0 0.2701 +0 0.1402 +0 0.5720 +0 0.0756 +0 0.1025 +0 0.1676 +0 0.1389 +0 0.1122 +0 0.1560 +0 0.0934 +0 0.0841 +0 0.1225 +0 0.0554 +1 0.8512 +0 0.1624 +0 0.1352 +0 0.1374 +0 0.1697 +0 0.2782 +0 0.0895 +0 0.0974 +0 0.0427 +0 0.1387 +0 0.1900 +0 0.0732 +0 0.0477 +0 0.0907 +0 0.0368 +0 0.0684 +0 0.1244 +0 0.0632 +0 0.1142 +0 0.0961 +0 0.2601 +0 0.1153 +0 0.0556 +0 0.3596 +0 0.0978 +0 0.5307 +0 0.0709 +0 0.0639 +0 0.0961 +0 0.0837 +0 0.0860 +0 0.2045 +0 0.0606 +0 0.0836 +0 0.0668 +0 0.1660 +0 0.0461 +0 0.0731 +0 0.1524 +0 0.0630 +0 0.7242 +0 0.1217 +0 0.1081 +0 0.0592 +0 0.0587 +0 0.1057 +0 0.0572 +0 0.1556 +0 0.0713 +0 0.2446 +0 0.2954 +1 0.7567 +0 0.0749 +0 0.0568 +0 0.1251 +0 0.1601 +0 0.1143 +0 0.1077 +0 0.1230 +0 0.2575 +0 0.0738 +0 0.0966 +0 0.1254 +0 0.0519 +0 0.0936 +0 0.5055 +1 0.8723 +0 0.0416 +0 0.1558 +0 0.3032 +0 0.0905 +0 0.0803 +0 0.2214 +0 0.0847 +0 0.1125 +0 0.0791 +0 0.2689 +0 0.0600 +0 0.2968 +0 0.0414 +0 0.0697 +0 0.1493 +0 0.1331 +0 0.1714 +0 0.1067 +0 0.2455 +0 0.0484 +0 0.0600 +0 0.0694 +0 0.1833 +0 0.0501 +0 0.0649 +0 0.0941 +0 0.0989 +0 0.2738 +0 0.0962 +0 0.1597 +0 0.1674 +0 0.1448 +0 0.0633 +0 0.2599 +0 0.2894 +0 0.0468 +0 0.1117 +0 0.2090 +0 0.1399 +0 0.1145 +0 0.6031 +0 0.2119 +0 0.1541 +0 0.0931 +0 0.2666 +0 0.1212 +0 0.0523 +0 0.1564 +0 0.0506 +0 0.2140 +0 0.1856 +0 0.2456 +0 0.0596 +0 0.1007 +0 0.1235 +0 0.0377 +0 0.2207 +0 0.0726 +0 0.1106 +0 0.2230 +0 0.1115 +0 0.1808 +0 0.2061 +0 0.1088 +0 0.1726 +0 0.0664 +0 0.1589 +0 0.1452 +0 0.0397 +0 0.1392 +0 0.0527 +0 0.0475 +0 0.0824 +0 0.1060 +0 0.0513 +0 0.0501 +0 0.0564 +0 0.0947 +0 0.1408 +0 0.0572 +0 0.1731 +0 0.1535 +0 0.0445 +0 0.0996 +0 0.1260 +0 0.2514 +0 0.3295 +0 0.1490 +0 0.6351 +0 0.0706 +0 0.0637 +0 0.0477 +0 0.4839 +0 0.1592 +0 0.0496 +0 0.4895 +0 0.1033 +0 0.1828 +0 0.1978 +0 0.1681 +0 0.2282 +0 0.0592 +0 0.0813 +0 0.0806 +0 0.1688 +0 0.0665 +0 0.1151 +0 0.2308 +0 0.2414 +0 0.0789 +0 0.1091 +0 0.0618 +0 0.5930 +0 0.0463 +0 0.1185 +0 0.1010 +0 0.1433 +0 0.0453 +0 0.0500 +0 0.1181 +0 0.0410 +0 0.1215 +0 0.0693 +0 0.0424 +0 0.1755 +0 0.0510 +0 0.1889 +0 0.0704 +0 0.2644 +0 0.0487 +0 0.1567 +0 0.0446 +0 0.0963 +0 0.1039 +0 0.1238 +0 0.1872 +0 0.0445 +0 0.0468 +0 0.1319 +0 0.2872 +0 0.2859 +0 0.1389 +0 0.1175 +0 0.3342 +0 0.0803 +0 0.3235 +0 0.1363 +0 0.3202 +0 0.0807 +0 0.0524 +0 0.3451 +0 0.3185 +0 0.1044 +0 0.1360 +0 0.0913 +0 0.2628 +0 0.0604 +0 0.0775 +0 0.1036 +0 0.1141 +0 0.0476 +1 0.7668 +0 0.1843 +0 0.0465 +0 0.0967 +0 0.1347 +0 0.0911 +0 0.0956 +0 0.0830 +0 0.1583 +0 0.0485 +0 0.0706 +0 0.0458 +0 0.1009 +0 0.0816 +0 0.4381 +0 0.4748 +0 0.1331 +0 0.0941 +0 0.0936 +0 0.1203 +0 0.0466 +0 0.1640 +0 0.2498 +0 0.1028 +0 0.2196 +0 0.2605 +0 0.0522 +0 0.1559 +0 0.1020 +0 0.1494 +0 0.1446 +0 0.0798 +0 0.0877 +0 0.2166 +0 0.2728 +0 0.1883 +0 0.1537 +0 0.0662 +0 0.0817 +0 0.1227 +0 0.1576 +0 0.0523 +0 0.0857 +0 0.0345 +0 0.2665 +0 0.2157 +0 0.0867 +0 0.2148 +0 0.0894 +0 0.0576 +0 0.0656 +0 0.0657 +0 0.0379 +0 0.0468 +0 0.2684 +0 0.0662 +0 0.4587 +0 0.0674 +0 0.1382 +0 0.0673 +0 0.1086 +0 0.1262 +0 0.1198 +0 0.0828 +0 0.2007 +0 0.0534 +0 0.0879 +0 0.0372 +0 0.1828 +0 0.1981 +0 0.1005 +0 0.4034 +0 0.1899 +0 0.0819 +0 0.2034 +0 0.2869 +0 0.0706 +0 0.2112 +0 0.0555 +0 0.1192 +0 0.2493 +0 0.1073 +0 0.0625 +0 0.0350 +0 0.0524 +0 0.1172 +0 0.0309 +0 0.0957 +0 0.1552 +0 0.1002 +0 0.6882 +0 0.1053 +0 0.3310 +0 0.0828 +0 0.0443 +0 0.1310 +0 0.1369 +0 0.0460 +0 0.2315 +0 0.0439 +0 0.1187 +0 0.0676 +0 0.1739 +0 0.4862 +0 0.2094 +0 0.1050 +0 0.1457 +0 0.4414 +0 0.0515 +0 0.1081 +0 0.1250 +0 0.6652 +0 0.2588 +0 0.0950 +0 0.0769 +0 0.1784 +0 0.0886 +0 0.0640 +0 0.1133 +0 0.0555 +0 0.1098 +0 0.2060 +0 0.0821 +0 0.1230 +0 0.2294 +0 0.1111 +0 0.1185 +0 0.1476 +0 0.0734 +0 0.1064 +0 0.1147 +0 0.4443 +0 0.0362 +0 0.0669 +0 0.0856 +0 0.0509 +0 0.0441 +0 0.1462 +0 0.3225 +0 0.0843 +0 0.0649 +1 0.8200 +1 0.7747 +0 0.1112 +0 0.0516 +0 0.6059 +0 0.0436 +0 0.0511 +1 0.7596 +0 0.1142 +0 0.1100 +0 0.1358 +0 0.0770 +0 0.1976 +0 0.0589 +0 0.0393 +0 0.0798 +0 0.0927 +0 0.1408 +0 0.1128 +0 0.1441 +0 0.0924 +0 0.1434 +0 0.1673 +0 0.0880 +0 0.1751 +0 0.0966 +0 0.0398 +0 0.1127 +0 0.0726 +0 0.0902 +0 0.1598 +0 0.0747 +0 0.1436 +0 0.1624 +0 0.2340 +0 0.3122 +0 0.0640 +0 0.0788 +0 0.1065 +0 0.0810 +0 0.0687 +0 0.1955 +0 0.1226 +0 0.0372 +0 0.0947 +0 0.0659 +0 0.0782 +0 0.0550 +0 0.0649 +0 0.0354 +0 0.3555 +0 0.0336 +0 0.0921 +0 0.3995 +0 0.1188 +0 0.1330 +0 0.1135 +0 0.7369 +0 0.0632 +0 0.0424 +0 0.2367 +0 0.0998 +0 0.4304 +0 0.6499 +0 0.1476 +0 0.0889 +0 0.0489 +0 0.1512 +0 0.0569 +0 0.1369 +0 0.1047 +0 0.2654 +0 0.1070 +0 0.6698 +0 0.1927 +0 0.0552 +0 0.1399 +0 0.1395 +0 0.1241 +0 0.0818 +0 0.2755 +0 0.2070 +0 0.1870 +0 0.0820 +0 0.1646 +0 0.1101 +0 0.1749 +0 0.4451 +0 0.0631 +0 0.1074 +0 0.1322 +0 0.2054 +0 0.1663 +0 0.2378 +0 0.0681 +0 0.0828 +0 0.2793 +0 0.1323 +0 0.1556 +0 0.0393 +0 0.1200 +0 0.1486 +0 0.0602 +0 0.3950 +0 0.2259 +0 0.0395 +0 0.0445 +0 0.1663 +0 0.1248 +0 0.2567 +0 0.6619 +0 0.0914 +0 0.0846 +0 0.0766 +0 0.0804 +0 0.1998 +0 0.2011 +0 0.0949 +0 0.0484 +0 0.0563 +0 0.0905 +0 0.0395 +0 0.1170 +0 0.1392 +0 0.0889 +0 0.1841 +0 0.0609 +0 0.0479 +0 0.2221 +0 0.2303 +0 0.0922 +0 0.1089 +0 0.0355 +0 0.1176 +0 0.1017 +0 0.1590 +0 0.0921 +0 0.1618 +0 0.0854 +0 0.0635 +1 0.8813 +0 0.4149 +0 0.1178 +0 0.1070 +0 0.1987 +0 0.2133 +0 0.1465 +0 0.0527 +0 0.0638 +0 0.0645 +0 0.0719 +0 0.2280 +0 0.2325 +0 0.3505 +0 0.0582 +0 0.1932 +0 0.6726 +0 0.0596 +0 0.0788 +0 0.0627 +0 0.1867 +0 0.1147 +0 0.2121 +0 0.1012 +0 0.0500 +0 0.1592 +0 0.0478 +0 0.1107 +0 0.0948 +0 0.1163 +0 0.1584 +0 0.1609 +0 0.2751 +0 0.1575 +0 0.2059 +0 0.0811 +0 0.1091 +0 0.3565 +0 0.1352 +0 0.1740 +0 0.0755 +0 0.0987 +0 0.1291 +0 0.0729 +0 0.0628 +0 0.0533 +0 0.0553 +0 0.0773 +0 0.1730 +0 0.1325 +0 0.0727 +0 0.1401 +0 0.0749 +0 0.1521 +0 0.4606 +0 0.1292 +1 0.8010 +0 0.0663 +0 0.0774 +0 0.1517 +0 0.0768 +0 0.1060 +0 0.1921 +0 0.0883 +0 0.0974 +1 0.8531 +0 0.0826 +0 0.2349 +0 0.1203 +0 0.0933 +0 0.1344 +0 0.1777 +0 0.1551 +0 0.0661 +0 0.1079 +0 0.0487 +0 0.0690 +0 0.0637 +0 0.0575 +0 0.1241 +0 0.1433 +0 0.1557 +0 0.7021 +0 0.0632 +0 0.0726 +0 0.1256 +0 0.0894 +0 0.0615 +0 0.0954 +0 0.1662 +0 0.0456 +0 0.2761 +0 0.0769 +0 0.0795 +0 0.1254 +0 0.2165 +0 0.1748 +0 0.0719 +0 0.0399 +0 0.1192 +0 0.1211 +0 0.2033 +0 0.0358 +0 0.2503 +0 0.0729 +0 0.1066 +0 0.1549 +0 0.0628 +0 0.0654 +0 0.0784 +0 0.0604 +0 0.0994 +0 0.0692 +0 0.1269 +0 0.1427 +0 0.2612 +0 0.2279 +0 0.0810 +0 0.1089 +0 0.1676 +0 0.2496 +0 0.0456 +0 0.2600 +0 0.0751 +0 0.1333 +0 0.0578 +0 0.0789 +0 0.0672 +0 0.1559 +0 0.0869 +0 0.1562 +0 0.0744 +0 0.1227 +0 0.1293 +0 0.0948 +0 0.1281 +0 0.1054 +0 0.0996 +0 0.0864 +1 0.8070 +0 0.0773 +0 0.0962 +0 0.0669 +0 0.0644 +0 0.0662 +0 0.1551 +0 0.0963 +0 0.4927 +0 0.0978 +0 0.0597 +0 0.0914 +0 0.0471 +0 0.1007 +0 0.1008 +0 0.0623 +0 0.0882 +0 0.1178 +0 0.0332 +0 0.0579 +0 0.0567 +0 0.1385 +0 0.0713 +0 0.1278 +0 0.7186 +0 0.1782 +0 0.1067 +0 0.5709 +0 0.0979 +0 0.2328 +0 0.1749 +0 0.1634 +0 0.1171 +0 0.4088 +0 0.1186 +0 0.0688 +0 0.2575 +0 0.2031 +0 0.1100 +0 0.3121 +0 0.0466 +0 0.0809 +1 0.8547 +0 0.1029 +0 0.0820 +1 0.8892 +0 0.1061 +0 0.0581 +0 0.3123 +0 0.0989 +0 0.0717 +0 0.2027 +0 0.0392 +0 0.0570 +0 0.0612 +0 0.6573 +0 0.1021 +0 0.0421 +0 0.0735 +0 0.1319 +0 0.4047 +0 0.1300 +0 0.1093 +0 0.2935 +0 0.1931 +0 0.0474 +0 0.1894 +0 0.1683 +0 0.0743 +1 0.7593 +0 0.2332 +0 0.1436 +0 0.0746 +0 0.4025 +0 0.1036 +1 0.7670 +0 0.0891 +0 0.2115 +0 0.0569 +0 0.2078 +0 0.0366 +0 0.1115 +0 0.1962 +0 0.1031 +0 0.2405 +0 0.1446 +0 0.1440 +0 0.0495 +0 0.2440 +0 0.3661 +0 0.0577 +0 0.1410 +0 0.1624 +0 0.1057 +0 0.2646 +0 0.1068 +1 0.8573 +0 0.1269 +0 0.3146 +0 0.1691 +0 0.1644 +0 0.1526 +0 0.0668 +0 0.1026 +0 0.1328 +0 0.0780 +0 0.1408 +0 0.2304 +0 0.1716 +0 0.1233 +0 0.0762 +0 0.0668 +0 0.0967 +0 0.0363 +0 0.1040 +0 0.0603 +0 0.1953 +0 0.0620 +0 0.2597 +0 0.0925 +0 0.0939 +0 0.0737 +0 0.6296 +0 0.0435 +0 0.2554 +0 0.1239 +0 0.0872 +0 0.0666 +0 0.3041 +0 0.4066 +0 0.1569 +0 0.0591 +0 0.2103 +0 0.0964 +0 0.0874 +0 0.1673 +0 0.1206 +0 0.0802 +0 0.0548 +0 0.1547 +0 0.1328 +0 0.4324 +0 0.2930 +0 0.2409 +0 0.0525 +0 0.0904 +0 0.0722 +1 0.8232 +0 0.0433 +0 0.1893 +0 0.0785 +0 0.1778 +0 0.2745 +0 0.0895 +0 0.0890 +0 0.0648 +0 0.1478 +0 0.6617 +0 0.0514 +0 0.1268 +0 0.1613 +0 0.0335 +0 0.0990 +0 0.6173 +0 0.0481 +0 0.3491 +0 0.1105 +0 0.1343 +0 0.1584 +0 0.0812 +0 0.0735 +0 0.0406 +0 0.0518 +0 0.1474 +0 0.1658 +0 0.0380 +0 0.1246 +0 0.1366 +0 0.1594 +0 0.0583 +0 0.1145 +1 0.8124 +1 0.8146 +0 0.6749 +0 0.2231 +0 0.0896 +0 0.0936 +0 0.0819 +0 0.0810 +0 0.3527 +0 0.1204 +0 0.2394 +0 0.0830 +0 0.1173 +0 0.1152 +0 0.2069 +0 0.0943 +0 0.0857 +0 0.1027 +0 0.0603 +0 0.0720 +0 0.1031 +0 0.1947 +0 0.2258 +0 0.2036 +0 0.0929 +0 0.1408 +0 0.0745 +0 0.1039 +0 0.0889 +0 0.0417 +0 0.0763 +0 0.2001 +0 0.0947 +0 0.0898 +0 0.1048 +0 0.0897 +0 0.6659 +0 0.0588 +0 0.0633 +0 0.0922 +0 0.0659 +0 0.0599 +0 0.0453 +0 0.1314 +0 0.0643 +0 0.2925 +0 0.0952 +0 0.1551 +0 0.1445 +0 0.0587 +0 0.1601 +0 0.0558 +0 0.1483 +0 0.1348 +0 0.2125 +0 0.1605 +0 0.0628 +0 0.0361 +0 0.0536 +0 0.0719 +0 0.0769 +0 0.2978 +0 0.1065 +0 0.0800 +0 0.0822 +0 0.7376 +0 0.1226 +0 0.1468 +0 0.1004 +0 0.0455 +0 0.0922 +0 0.1026 +0 0.1505 +0 0.1712 +0 0.0367 +0 0.1968 +0 0.1135 +0 0.1542 +0 0.1005 +0 0.1520 +0 0.0527 +0 0.1709 +0 0.1190 +0 0.0487 +0 0.5304 +0 0.2779 +0 0.1765 +0 0.0419 +0 0.0732 +0 0.7264 +0 0.1278 +0 0.2276 +0 0.0452 +0 0.1832 +1 0.7836 +0 0.0882 +0 0.0770 +0 0.1317 +0 0.1208 +0 0.0763 +0 0.2563 +0 0.0665 +0 0.1061 +0 0.0713 +0 0.1361 +0 0.0602 +0 0.1725 +0 0.0580 +0 0.0816 +0 0.2508 +0 0.1311 +0 0.0405 +0 0.0684 +0 0.3681 +0 0.0573 +0 0.1879 +0 0.1402 +0 0.1038 +0 0.0502 +0 0.0394 +0 0.1600 +0 0.0846 +0 0.1061 +0 0.0622 +0 0.1642 +0 0.0571 +0 0.1084 +0 0.0536 +0 0.1008 +0 0.3295 +0 0.0508 +0 0.0845 +0 0.0748 +0 0.1512 +0 0.2528 +0 0.0682 +0 0.1661 +0 0.1231 +0 0.2248 +0 0.1246 +0 0.0509 +0 0.1422 +0 0.2136 +1 0.7801 +0 0.1267 +0 0.0784 +0 0.1223 +0 0.3724 +0 0.0648 +0 0.0465 +0 0.1124 +0 0.1325 +0 0.0656 +0 0.1307 +0 0.0513 +0 0.1876 +0 0.1880 +0 0.1058 +0 0.0454 +0 0.1728 +0 0.1458 +0 0.1604 +1 0.7814 +0 0.0681 +0 0.0723 +0 0.0998 +0 0.0822 +0 0.0861 +0 0.2428 +0 0.0799 +0 0.0493 +0 0.0766 +0 0.1288 +1 0.8361 +0 0.2262 +0 0.0933 +0 0.2178 +0 0.0850 +0 0.7204 +0 0.0857 +0 0.2463 +0 0.0607 +0 0.0528 +0 0.2394 +0 0.1138 +0 0.1022 +0 0.1423 +0 0.1243 +0 0.1383 +0 0.0828 +0 0.1993 +0 0.2187 +0 0.1026 +0 0.4272 +0 0.1025 +0 0.0534 +0 0.3837 +0 0.0438 +0 0.1266 +0 0.0821 +0 0.0752 +0 0.0669 +0 0.2374 +0 0.0463 +0 0.2698 +0 0.1052 +0 0.1053 +0 0.4406 +0 0.0498 +0 0.0969 +0 0.0740 +0 0.1165 +0 0.2875 +0 0.2888 +0 0.7489 +0 0.0879 +0 0.0481 +0 0.1462 +0 0.0652 +0 0.0746 +0 0.1674 +0 0.0913 +0 0.4923 +0 0.1077 +0 0.0755 +0 0.2406 +0 0.0480 +0 0.1035 +0 0.0786 +0 0.0706 +0 0.2926 +0 0.1720 +0 0.0888 +0 0.0732 +0 0.1072 +0 0.0631 +1 0.8697 +0 0.3692 +1 0.7880 +0 0.0549 +0 0.0753 +0 0.1326 +0 0.0826 +0 0.1970 +0 0.0544 +0 0.0772 +0 0.0531 +0 0.0720 +0 0.0714 +0 0.1011 +0 0.1172 +0 0.1090 +0 0.0886 +0 0.0475 +0 0.2424 +0 0.1130 +0 0.1286 +0 0.0621 +0 0.0649 +0 0.0950 +0 0.1113 +0 0.0633 +0 0.1582 +0 0.0591 +0 0.0781 +0 0.0747 +0 0.5708 +0 0.0660 +0 0.1973 +0 0.1961 +0 0.0469 +0 0.1823 +0 0.1028 +0 0.0961 +0 0.0379 +0 0.2414 +0 0.0823 +0 0.1188 +0 0.1536 +0 0.1212 +0 0.1435 +0 0.0622 +0 0.2683 +0 0.0323 +0 0.2982 +0 0.3861 +0 0.0725 +0 0.1362 +0 0.0687 +0 0.1579 +0 0.1058 +0 0.0761 +0 0.1498 +0 0.0488 +0 0.0385 +0 0.2418 +0 0.0727 +0 0.1259 +0 0.2881 +0 0.2439 +0 0.2006 +0 0.0936 +0 0.0396 +0 0.1720 +0 0.0950 +0 0.1127 +0 0.1761 +0 0.0682 +0 0.0509 +0 0.0329 +0 0.0835 +0 0.0949 +1 0.7917 +0 0.2496 +0 0.1476 +0 0.0405 +0 0.3130 +0 0.1149 +0 0.1597 +0 0.0371 +0 0.2336 +0 0.0688 +0 0.1020 +0 0.0381 +0 0.0939 +0 0.0535 +0 0.1249 +0 0.2640 +0 0.1669 +0 0.0802 +0 0.2183 +1 0.7830 +0 0.1972 +0 0.0364 +0 0.0706 +0 0.0899 +0 0.0635 +0 0.0496 +0 0.0752 +0 0.1288 +1 0.7793 +0 0.1820 +0 0.0665 +0 0.1419 +0 0.0766 +0 0.1026 +0 0.2426 +0 0.1085 +0 0.1181 +0 0.0995 +0 0.0396 +0 0.3512 +0 0.0973 +0 0.0990 +0 0.1879 +0 0.0678 +0 0.4524 +0 0.0596 +0 0.0420 +0 0.1372 +0 0.0598 +0 0.0460 +0 0.0684 +0 0.0626 +0 0.1170 +0 0.0973 +0 0.1554 +0 0.0535 +1 0.7958 +0 0.2167 +0 0.4846 +0 0.0528 +0 0.0869 +1 0.8564 +0 0.1437 +0 0.0445 +0 0.0590 +0 0.1292 +0 0.0781 +0 0.0929 +0 0.0688 +0 0.0961 +0 0.1552 +0 0.1402 +0 0.0730 +0 0.1037 +0 0.0732 +0 0.0705 +0 0.0728 +0 0.1003 +0 0.2136 +0 0.1374 +0 0.0895 +0 0.2075 +0 0.1636 +0 0.1101 +0 0.1350 +0 0.2520 +0 0.1173 +0 0.0891 +0 0.3258 +0 0.0652 +0 0.0915 +0 0.0945 +0 0.0998 +0 0.2069 +0 0.0717 +0 0.2729 +0 0.1323 +0 0.1201 +0 0.1506 +0 0.0516 +0 0.0508 +0 0.2106 +0 0.2105 +0 0.0661 +0 0.2046 +0 0.0983 +0 0.3309 +0 0.1070 +0 0.1225 +0 0.1001 +0 0.2062 +0 0.2815 +0 0.1131 +0 0.0815 +0 0.0870 +0 0.1090 +0 0.2166 +0 0.1451 +0 0.0624 +0 0.0917 +0 0.1765 +0 0.2178 +0 0.1539 +0 0.1586 +0 0.1048 +0 0.0449 +0 0.0930 +0 0.1009 +0 0.1464 +0 0.0524 +0 0.0507 +0 0.1469 +0 0.0570 +0 0.0639 +0 0.1345 +0 0.0702 +0 0.2596 +0 0.1041 +1 0.8175 +0 0.1801 +0 0.0772 +0 0.0468 +0 0.0634 +1 0.8579 +0 0.0530 +0 0.0402 +0 0.1066 +0 0.6395 +0 0.0460 +0 0.0346 +0 0.3684 +0 0.0875 +0 0.0586 +0 0.0538 +0 0.1403 +1 0.7927 +0 0.0757 +0 0.3758 +0 0.0917 +0 0.5300 +0 0.1942 +0 0.0551 +0 0.1094 +0 0.0893 +0 0.3072 +0 0.0667 +0 0.2910 +0 0.6404 +0 0.0717 +0 0.1541 +0 0.0743 +0 0.1803 +0 0.0957 +0 0.0592 +0 0.2119 +0 0.0596 +0 0.0761 +0 0.0797 +0 0.0507 +0 0.2135 +0 0.2432 +0 0.1091 +0 0.1209 +0 0.1381 +0 0.2446 +0 0.0968 +0 0.0786 +0 0.0637 +0 0.3110 +0 0.0791 +0 0.4166 +0 0.0911 +0 0.0763 +0 0.0898 +0 0.3216 +0 0.0698 +0 0.1446 +0 0.1241 +0 0.0672 +0 0.1546 +0 0.1454 +0 0.0935 +0 0.2310 +0 0.0442 +0 0.0926 +0 0.3080 +0 0.1011 +0 0.2049 +0 0.0843 +0 0.0578 +0 0.2017 +0 0.3319 +0 0.1157 +0 0.1768 +0 0.0723 +0 0.1404 +1 0.7742 +0 0.0638 +0 0.1140 +0 0.0644 +0 0.1205 +0 0.0336 +0 0.0496 +0 0.1568 +0 0.1842 +0 0.1278 +0 0.1275 +0 0.0414 +0 0.2182 +0 0.0641 +0 0.2956 +0 0.1588 +0 0.2794 +0 0.1084 +0 0.0318 +0 0.1309 +0 0.1206 +0 0.2406 +0 0.0921 +0 0.1323 +0 0.1192 +0 0.0671 +0 0.1478 +0 0.5163 +0 0.1300 +1 0.7802 +0 0.1810 +0 0.0938 +0 0.2213 +0 0.0346 +0 0.0943 +0 0.0691 +0 0.0826 +0 0.1373 +0 0.6088 +0 0.1128 +0 0.0845 +0 0.0743 +0 0.1261 +0 0.0956 +0 0.0788 +0 0.6514 +0 0.1391 +0 0.1484 +1 0.8123 +0 0.4918 +0 0.1816 +0 0.1170 +0 0.1971 +0 0.1066 +0 0.0415 +0 0.1880 +0 0.0797 +0 0.1109 +0 0.1896 +0 0.7102 +0 0.0527 +0 0.0777 +0 0.3382 +0 0.2875 +0 0.0843 +0 0.1311 +0 0.0915 +0 0.1374 +0 0.1609 +0 0.1801 +0 0.0497 +0 0.0697 +0 0.2539 +0 0.0563 +0 0.3842 +0 0.3373 +0 0.1734 +0 0.2212 +0 0.1687 +0 0.1067 +0 0.0688 +0 0.0535 +0 0.2616 +0 0.1278 +0 0.0858 +0 0.0653 +0 0.0884 +0 0.0924 +0 0.0932 +0 0.1686 +0 0.0839 +0 0.0866 +0 0.1206 +0 0.0756 +0 0.0535 +0 0.0709 +0 0.0942 +0 0.0453 +0 0.1654 +0 0.7298 +0 0.1020 +0 0.1853 +0 0.0900 +0 0.0647 +0 0.0856 +0 0.1677 +0 0.0579 +0 0.1476 +0 0.1042 +0 0.2298 +0 0.0755 +0 0.0963 +0 0.6060 +0 0.0769 +1 0.7890 +0 0.0811 +0 0.0791 +0 0.1162 +0 0.0599 +0 0.0909 +0 0.1763 +0 0.1287 +0 0.1293 +0 0.1042 +0 0.1336 +0 0.1573 +0 0.4647 +0 0.0666 +0 0.0915 +0 0.0733 +0 0.0397 +0 0.1962 +0 0.0648 +0 0.3886 +0 0.0593 +0 0.1162 +0 0.1405 +0 0.1347 +0 0.3043 +0 0.0529 +0 0.5046 +0 0.0939 +0 0.1324 +0 0.0778 +0 0.1671 +0 0.2767 +0 0.1647 +0 0.0757 +0 0.0492 +0 0.2712 +0 0.0452 +0 0.1014 +0 0.0750 +0 0.6109 +0 0.2419 +0 0.0683 +0 0.0337 +0 0.1226 +0 0.1855 +0 0.0640 +0 0.0512 +0 0.0382 +0 0.0421 +0 0.6186 +0 0.0471 +0 0.1563 +0 0.0740 +0 0.1590 +0 0.0956 +0 0.1591 +0 0.0973 +0 0.1772 +0 0.0814 +0 0.0348 +0 0.0800 +0 0.0865 +0 0.1680 +0 0.0593 +0 0.1608 +0 0.1404 +0 0.0849 +0 0.1441 +0 0.1229 +0 0.2179 +0 0.1211 +0 0.0565 +0 0.2354 +0 0.0914 +0 0.0657 +0 0.0583 +0 0.2367 +0 0.1206 +0 0.0383 +0 0.1845 +0 0.0433 +0 0.5217 +0 0.1113 +0 0.2373 +0 0.1744 +0 0.0816 +0 0.2573 +0 0.1117 +0 0.3237 +0 0.1502 +0 0.1296 +0 0.0551 +0 0.0782 +0 0.0893 +0 0.2430 +0 0.4054 +0 0.0919 +0 0.3187 +0 0.0838 +0 0.2161 +0 0.1455 +0 0.0984 +0 0.0476 +0 0.3310 +0 0.2292 +0 0.1114 +0 0.1903 +0 0.1286 +0 0.0924 +0 0.2009 +0 0.1550 +0 0.1319 +0 0.1002 +0 0.0575 +0 0.0822 +0 0.1272 +0 0.1561 +0 0.1688 +0 0.1856 +1 0.7757 +0 0.1168 +0 0.1665 +0 0.1353 +0 0.1871 +0 0.0607 +0 0.0877 +0 0.0639 +0 0.1563 +0 0.0562 +0 0.4024 +0 0.0444 +0 0.0640 +0 0.1438 +0 0.1290 +0 0.0444 +0 0.0893 +0 0.0635 +0 0.1240 +0 0.1166 +0 0.2697 +0 0.1163 +0 0.2027 +0 0.3531 +0 0.0473 +0 0.1077 +0 0.5744 +0 0.0534 +0 0.1623 +0 0.1588 +0 0.2635 +0 0.0962 +0 0.1077 +0 0.0943 +0 0.1253 +0 0.0763 +0 0.0668 +0 0.1479 +0 0.2522 +0 0.1059 +0 0.2165 +0 0.4039 +1 0.8374 +0 0.0881 +0 0.2635 +0 0.1702 +0 0.0659 +0 0.0899 +0 0.4908 +0 0.0733 +0 0.0412 +0 0.0741 +0 0.0691 +0 0.2877 +0 0.0843 +0 0.1491 +0 0.0860 +0 0.0503 +0 0.1711 +0 0.0883 +0 0.2263 +0 0.0332 +0 0.1072 +0 0.0858 +0 0.1439 +0 0.0752 +1 0.8486 +0 0.1325 +0 0.1425 +0 0.0695 +0 0.1129 +0 0.0791 +0 0.0802 +0 0.1617 +0 0.1102 +0 0.1139 +0 0.0515 +0 0.0425 +0 0.0992 +0 0.2916 +0 0.1935 +0 0.1806 +0 0.0603 +0 0.2343 +0 0.1422 +0 0.0763 +0 0.0829 +0 0.2950 +0 0.2292 +0 0.1279 +0 0.1728 +0 0.2353 +0 0.2278 +0 0.0437 +0 0.2026 +0 0.0644 +0 0.0581 +0 0.2845 +0 0.0916 +0 0.1127 +0 0.0452 +0 0.1328 +0 0.0430 +0 0.0823 +0 0.1127 +0 0.0843 +0 0.0831 +0 0.1806 +0 0.1060 +0 0.1095 +0 0.1503 +0 0.0507 +0 0.2059 +0 0.1010 +0 0.0793 +0 0.0471 +0 0.0585 +0 0.0594 +0 0.1594 +0 0.1033 +1 0.7786 +0 0.1767 +0 0.1326 +0 0.1184 +0 0.3539 +0 0.1433 +0 0.1029 +0 0.0928 +0 0.2146 +0 0.0917 +0 0.0995 +0 0.5893 +0 0.0953 +0 0.0855 +0 0.0445 +0 0.0435 +0 0.0754 +0 0.3005 +0 0.1873 +0 0.1440 +0 0.1545 +0 0.2414 +0 0.1000 +0 0.0866 +0 0.0926 +0 0.1187 +0 0.1706 +0 0.0591 +0 0.3490 +0 0.2063 +0 0.1318 +0 0.0398 +0 0.2281 +0 0.2783 +0 0.1708 +0 0.1188 +0 0.0820 +0 0.0899 +0 0.2131 +0 0.0564 +0 0.1349 +0 0.1010 +0 0.0630 +0 0.0799 +0 0.2754 +0 0.1832 +0 0.1271 +0 0.0532 +0 0.1531 +0 0.0919 +0 0.0792 +0 0.1174 +0 0.2164 +0 0.1922 +0 0.0591 +0 0.2274 +0 0.1612 +0 0.1597 +0 0.0970 +0 0.0556 +0 0.7223 +0 0.1968 +0 0.0652 +0 0.0761 +0 0.0361 +0 0.0653 +0 0.0332 +0 0.0637 +0 0.0940 +0 0.0649 +0 0.0431 +0 0.1917 +0 0.0842 +0 0.2215 +0 0.2782 +0 0.1457 +0 0.1054 +0 0.1328 +0 0.0770 +0 0.0880 +0 0.2357 +0 0.1383 +0 0.0477 +0 0.0443 +0 0.1988 +0 0.3252 +0 0.3465 +0 0.3776 +0 0.0431 +1 0.7811 +0 0.7034 +0 0.7158 +0 0.2858 +0 0.5056 +0 0.2019 +0 0.2115 +0 0.2591 +0 0.5744 +0 0.0662 +0 0.1417 +0 0.0570 +0 0.0547 +0 0.1058 +0 0.6865 +0 0.1898 +0 0.0639 +0 0.0590 +0 0.1059 +1 0.8749 +0 0.6101 +0 0.0399 +0 0.1108 +0 0.1582 +0 0.1671 +0 0.0571 +0 0.1795 +0 0.6514 +0 0.0958 +0 0.1390 +0 0.0765 +0 0.1731 +0 0.0786 +0 0.4443 +0 0.1424 +0 0.1062 +0 0.0407 +0 0.0671 +0 0.0703 +0 0.1164 +0 0.1898 +0 0.2127 +0 0.1585 +0 0.0866 +0 0.0769 +0 0.1660 +0 0.0470 +0 0.0893 +0 0.4193 +0 0.1164 +0 0.0528 +0 0.0836 +0 0.0561 +0 0.1876 +0 0.1151 +0 0.2901 +0 0.1622 +0 0.2348 +0 0.0454 +0 0.0601 +0 0.1097 +0 0.1451 +0 0.5698 +0 0.1515 +0 0.2953 +0 0.1658 +0 0.2261 +0 0.1964 +0 0.0587 +0 0.0504 +0 0.0529 +0 0.0805 +0 0.7064 +0 0.1316 +0 0.0981 +0 0.5329 +0 0.1131 +0 0.0899 +0 0.1286 +0 0.1914 +0 0.1034 +0 0.0849 +0 0.0762 +0 0.1367 +0 0.0663 +0 0.0527 +0 0.4043 +0 0.1566 +0 0.0956 +0 0.1381 +0 0.1053 +0 0.2289 +0 0.3554 +0 0.4977 +0 0.0636 +0 0.3452 +0 0.2712 +0 0.2485 +0 0.6593 +0 0.1176 +0 0.0789 +0 0.0839 +0 0.2901 +0 0.0601 +0 0.0481 +0 0.1476 +0 0.0716 +0 0.0853 +0 0.0601 +0 0.1008 +0 0.0591 +0 0.1302 +0 0.6491 +0 0.0454 +0 0.5636 +0 0.0658 +0 0.0552 +0 0.0389 +0 0.1462 +0 0.0968 +0 0.0447 +0 0.1128 +0 0.0771 +0 0.0904 +1 0.8771 +0 0.1173 +0 0.2422 +0 0.1694 +0 0.0472 +0 0.0800 +0 0.0561 +0 0.1953 +0 0.0726 +0 0.0906 +0 0.1335 +0 0.0560 +0 0.2277 +0 0.0589 +0 0.2279 +0 0.0548 +0 0.1231 +0 0.1187 +0 0.1074 +0 0.1028 +0 0.1617 +0 0.2077 +0 0.1080 +0 0.1325 +0 0.1933 +0 0.1066 +0 0.2792 +0 0.0325 +0 0.0503 +0 0.0753 +0 0.1770 +0 0.1427 +0 0.0979 +0 0.0454 +0 0.0894 +0 0.0707 +0 0.5245 +0 0.0473 +0 0.0654 +0 0.0726 +0 0.0411 +0 0.0953 +0 0.1245 +0 0.1955 +0 0.0830 +0 0.0826 +0 0.0925 +0 0.1221 +0 0.1687 +0 0.1008 +0 0.3546 +0 0.1006 +0 0.0943 +0 0.0738 +0 0.5407 +0 0.0403 +0 0.1569 +0 0.3027 +0 0.1036 +0 0.0774 +0 0.0790 +0 0.0915 +0 0.1852 +0 0.0653 +0 0.2198 +0 0.3070 +0 0.1078 +0 0.1493 +0 0.1129 +0 0.0496 +0 0.2900 +0 0.1766 +0 0.0762 +0 0.1829 +0 0.1240 +0 0.0943 +0 0.0482 +0 0.1826 +0 0.1006 +0 0.0993 +0 0.0715 +0 0.1338 +0 0.1738 +0 0.1603 +0 0.1004 +0 0.1973 +0 0.1009 +0 0.1479 +0 0.1514 +0 0.1179 +0 0.0790 +0 0.0466 +0 0.0408 +0 0.1073 +0 0.1257 +0 0.0945 +0 0.0876 +0 0.2077 +0 0.0925 +0 0.2895 +0 0.1416 +0 0.1632 +0 0.4433 +0 0.0821 +0 0.0914 +0 0.0504 +0 0.0722 +0 0.0722 +0 0.1918 +0 0.0486 +0 0.0585 +0 0.1509 +0 0.0595 +0 0.0419 +0 0.0711 +0 0.0421 +0 0.0546 +0 0.1059 +0 0.1435 +0 0.1398 +0 0.0739 +0 0.0755 +0 0.1232 +0 0.0812 +0 0.0877 +0 0.3009 +0 0.1596 +0 0.0585 +0 0.1089 +0 0.0454 +0 0.1487 +0 0.1428 +0 0.0716 +0 0.1293 +0 0.1227 +0 0.0888 +0 0.0745 +0 0.0463 +0 0.3706 +0 0.0968 +0 0.0815 +0 0.0584 +0 0.1526 +0 0.3701 +0 0.4825 +0 0.6035 +0 0.1095 +0 0.0975 +0 0.0651 +0 0.0608 +0 0.0500 +0 0.1032 +0 0.0685 +0 0.2041 +0 0.2248 +0 0.0479 +0 0.1580 +1 0.7887 +0 0.0829 +0 0.3389 +0 0.0705 +0 0.1051 +0 0.0469 +0 0.2368 +0 0.1595 +0 0.2780 +0 0.0788 +0 0.0683 +0 0.0868 +0 0.3579 +0 0.1621 +0 0.0508 +0 0.1602 +0 0.2227 +0 0.3432 +0 0.1982 +0 0.0788 +0 0.0758 +0 0.0824 +0 0.1016 +0 0.0968 +0 0.0775 +0 0.0705 +0 0.0413 +0 0.0651 +0 0.0762 +0 0.1268 +0 0.0883 +0 0.1556 +0 0.0965 +0 0.0615 +0 0.0908 +0 0.2060 +0 0.0764 +0 0.0794 +0 0.0407 +0 0.2331 +0 0.1637 +0 0.0746 +0 0.1347 +0 0.1137 +0 0.0706 +0 0.1156 +0 0.4683 +0 0.0825 +0 0.1151 +0 0.0636 +0 0.3147 +0 0.0390 +0 0.0755 +0 0.2288 +0 0.1056 +0 0.1725 +0 0.0657 +0 0.2226 +0 0.4007 +0 0.1084 +0 0.0958 +0 0.2210 +0 0.0956 +0 0.2318 +0 0.0670 +0 0.0548 +0 0.0436 +0 0.1436 +0 0.0970 +0 0.2599 +0 0.0743 +0 0.0522 +0 0.2083 +0 0.1331 +0 0.1627 +0 0.3224 +0 0.7204 +0 0.0774 +0 0.6806 +0 0.1403 +0 0.0976 +0 0.0672 +0 0.1234 +0 0.2573 +0 0.1166 +0 0.3065 +0 0.3387 +0 0.1276 +0 0.0660 +0 0.1892 +0 0.0982 +0 0.0580 +0 0.0619 +0 0.1034 +0 0.3119 +0 0.1356 +0 0.0602 +0 0.0594 +0 0.0967 +0 0.0913 +0 0.0629 +0 0.1000 +0 0.0607 +0 0.0386 +0 0.1270 +0 0.1627 +0 0.0956 +0 0.1795 +0 0.2436 +0 0.0578 +1 0.8125 +0 0.0982 +0 0.0584 +0 0.1886 +0 0.0358 +0 0.0519 +0 0.3022 +0 0.3352 +0 0.0732 +0 0.4418 +0 0.1088 +0 0.1211 +0 0.0834 +0 0.0951 +0 0.0477 +0 0.1081 +0 0.0763 +0 0.0875 +0 0.2751 +0 0.1152 +0 0.0977 +0 0.2011 +0 0.1027 +0 0.2880 +0 0.0808 +0 0.0590 +0 0.1114 +0 0.1003 +0 0.1022 +0 0.0376 +0 0.2464 +0 0.4857 +0 0.0911 +0 0.0594 +0 0.0701 +0 0.1405 +0 0.2030 +0 0.0835 +0 0.0708 +0 0.0922 +0 0.0959 +0 0.3988 +0 0.0596 +0 0.0424 +0 0.1410 +0 0.1559 +0 0.0756 +0 0.0718 +0 0.1086 +0 0.1757 +0 0.3933 +0 0.1323 +0 0.0732 +0 0.0429 +0 0.2220 +0 0.0872 +0 0.1520 +0 0.1147 +0 0.0624 +0 0.0721 +0 0.0834 +0 0.1004 +0 0.0843 +0 0.0705 +0 0.3516 +0 0.2827 +0 0.2279 +0 0.1746 +0 0.1781 +0 0.1657 +0 0.0381 +0 0.1112 +0 0.1526 +0 0.2878 +0 0.0788 +0 0.0918 +0 0.1410 +0 0.2251 +0 0.1051 +0 0.1297 +0 0.1117 +0 0.0937 +0 0.0712 +0 0.1215 +0 0.0498 +0 0.1363 +0 0.1485 +0 0.0591 +0 0.1019 +0 0.1190 +0 0.1286 +0 0.1114 +0 0.3651 +0 0.2501 +0 0.3816 +0 0.0655 +0 0.1697 +0 0.2974 +0 0.0887 +0 0.0718 +0 0.1443 +0 0.0978 +0 0.1107 +0 0.0710 +0 0.0461 +0 0.2111 +0 0.0694 +0 0.2655 +0 0.0780 +0 0.0369 +0 0.1281 +0 0.0865 +0 0.2284 +0 0.0690 +0 0.1083 +0 0.0424 +0 0.0305 +0 0.0745 +0 0.0660 +0 0.1934 +0 0.1188 +0 0.0819 +0 0.1557 +0 0.0781 +0 0.0769 +0 0.0634 +0 0.0803 +0 0.0946 +0 0.0704 +0 0.1737 +0 0.2608 +0 0.1304 +0 0.0693 +0 0.0769 +0 0.0614 +0 0.1848 +0 0.0545 +0 0.0715 +0 0.5688 +0 0.0906 +0 0.1102 +0 0.1354 +0 0.0641 +0 0.0457 +0 0.0901 +0 0.1196 +0 0.0712 +0 0.0698 +0 0.0719 +0 0.0788 +0 0.1091 +0 0.0855 +0 0.1688 +0 0.1379 +0 0.0752 +0 0.0520 +0 0.1555 +0 0.6102 +0 0.2327 +0 0.1042 +0 0.0832 +0 0.1129 +0 0.0814 +0 0.0582 +0 0.0527 +0 0.0633 +0 0.1722 +0 0.0523 +0 0.1739 +0 0.0508 +0 0.7220 +0 0.0556 +0 0.1020 +0 0.0988 +0 0.1515 +0 0.1077 +0 0.0723 +0 0.0740 +0 0.0708 +0 0.0533 +0 0.2030 +0 0.6951 +0 0.0580 +0 0.0735 +0 0.1895 +0 0.0891 +0 0.0833 +0 0.6877 +0 0.0753 +0 0.2059 +0 0.0836 +0 0.0601 +0 0.3349 +0 0.0741 +0 0.0445 +0 0.0948 +0 0.0973 +0 0.0594 +0 0.1964 +0 0.1066 +0 0.2277 +0 0.1304 +0 0.0899 +0 0.2140 +0 0.1325 +0 0.0466 +0 0.0803 +1 0.7989 +0 0.1444 +0 0.1383 +0 0.1226 +0 0.0503 +0 0.0620 +0 0.0735 +0 0.7485 +0 0.0952 +0 0.0599 +0 0.1192 +0 0.1644 +0 0.2064 +0 0.1133 +0 0.2128 +0 0.1218 +0 0.0491 +0 0.1600 +0 0.0385 +0 0.0675 +0 0.0754 +0 0.0724 +0 0.1810 +0 0.0642 +0 0.0818 +0 0.0730 +0 0.4625 +0 0.0758 +0 0.0662 +0 0.0682 +0 0.1812 +0 0.0558 +0 0.1443 +0 0.0612 +0 0.1035 +0 0.0415 +0 0.1837 +0 0.2327 +0 0.1152 +0 0.1679 +0 0.0958 +0 0.0931 +0 0.1256 +0 0.1736 +0 0.0558 +0 0.0971 +0 0.0908 +0 0.0702 +0 0.1438 +0 0.0976 +0 0.0723 +0 0.0424 +0 0.0660 +0 0.0878 +0 0.0754 +0 0.0762 +0 0.0712 +0 0.1158 +0 0.0877 +0 0.2725 +0 0.0438 +0 0.1587 +0 0.1284 +0 0.1492 +0 0.0997 +0 0.0738 +0 0.1337 +0 0.1738 +0 0.0887 +0 0.0368 +0 0.2880 +0 0.0934 +0 0.1484 +0 0.0746 +0 0.0865 +1 0.7994 +0 0.1306 +0 0.1390 +0 0.4786 +0 0.0602 +0 0.4685 +0 0.0460 +0 0.0753 +0 0.1623 +0 0.1163 +0 0.1337 +0 0.0446 +0 0.0930 +0 0.0672 +0 0.1527 +0 0.0694 +0 0.0918 +0 0.0747 +0 0.0540 +0 0.1273 +0 0.1542 +0 0.1571 +0 0.1339 +0 0.0590 +0 0.0911 +0 0.0651 +0 0.0627 +0 0.0391 +0 0.2508 +0 0.1707 +0 0.0736 +0 0.0714 +0 0.1048 +0 0.1066 +0 0.1176 +0 0.2230 +0 0.1260 +0 0.1899 +0 0.1401 +0 0.0627 +0 0.2340 +0 0.0750 +1 0.8146 +0 0.1469 +0 0.2063 +1 0.8348 +0 0.0615 +0 0.0990 +0 0.1002 +0 0.1392 +0 0.0671 +0 0.1302 +0 0.1146 +0 0.1424 +0 0.1445 +0 0.1402 +0 0.1221 +0 0.1353 +0 0.1261 +0 0.0637 +0 0.2920 +0 0.0568 +0 0.0606 +0 0.4866 +0 0.3478 +0 0.1695 +0 0.1136 +0 0.0883 +0 0.3878 +0 0.2017 +0 0.1315 +0 0.0830 +0 0.2376 +0 0.0951 +0 0.2351 +0 0.2464 +0 0.0373 +0 0.1809 +0 0.1912 +0 0.3244 +0 0.0391 +0 0.0812 +0 0.1361 +0 0.0739 +0 0.2465 +0 0.1836 +0 0.5115 +0 0.0565 +0 0.1273 +0 0.1932 +0 0.1325 +0 0.0803 +0 0.0668 +0 0.1051 +0 0.0434 +0 0.0789 +0 0.0475 +0 0.1395 +0 0.0920 +0 0.0419 +0 0.1135 +0 0.3100 +0 0.0717 +0 0.0747 +0 0.1045 +0 0.1141 +0 0.1199 +0 0.1239 +0 0.1245 +0 0.0869 +0 0.1013 +0 0.1451 +0 0.1388 +0 0.1698 +0 0.1565 +0 0.0615 +0 0.2391 +0 0.1518 +0 0.0694 +0 0.1776 +0 0.0855 +0 0.0610 +0 0.1369 +0 0.0549 +0 0.1460 +1 0.7782 +0 0.2064 +0 0.0987 +0 0.6364 +0 0.0589 +0 0.1033 +0 0.1033 +0 0.1836 +0 0.0489 +0 0.2289 +0 0.2585 +0 0.0667 +0 0.1126 +0 0.1584 +0 0.1037 +0 0.1378 +0 0.1721 +0 0.2166 +0 0.1701 +0 0.0756 +0 0.0374 +0 0.7095 +0 0.1028 +0 0.3329 +0 0.0896 +0 0.1371 +0 0.0883 +0 0.0854 +0 0.1800 +0 0.4464 +0 0.0511 +0 0.0672 +0 0.1310 +0 0.0486 +0 0.1755 +0 0.0961 +0 0.0734 +0 0.2838 +0 0.2995 +0 0.1710 +0 0.1724 +0 0.1613 +0 0.1079 +0 0.0801 +0 0.1763 +0 0.1389 +0 0.0843 +0 0.0735 +0 0.1783 +0 0.0704 +0 0.1052 +0 0.1739 +0 0.0910 +0 0.0642 +0 0.1510 +0 0.0870 +0 0.0889 +0 0.1606 +0 0.0989 +0 0.2140 +0 0.1833 +0 0.0603 +0 0.1099 +0 0.0794 +0 0.5547 +0 0.1618 +0 0.1352 +0 0.1044 +0 0.0425 +0 0.1543 +0 0.0852 +0 0.2109 +0 0.0568 +0 0.0777 +0 0.0633 +0 0.0623 +0 0.0779 +0 0.1062 +0 0.4083 +0 0.0720 +0 0.0736 +0 0.3024 +0 0.1515 +0 0.0735 +0 0.1729 +0 0.0832 +0 0.1018 +0 0.3296 +0 0.0986 +0 0.0955 +1 0.8278 +0 0.0718 +0 0.3747 +0 0.1698 +0 0.0807 +0 0.1050 +0 0.0608 +0 0.0422 +0 0.0512 +0 0.0804 +0 0.2409 +0 0.1202 +0 0.0805 +0 0.0666 +0 0.0766 +0 0.1888 +0 0.0893 +0 0.1420 +0 0.1683 +0 0.1129 +0 0.0993 +0 0.1386 +0 0.1230 +0 0.0500 +0 0.0821 +0 0.0852 +0 0.1658 +0 0.1718 +0 0.0894 +0 0.0626 +0 0.1564 +0 0.1064 +0 0.0658 +0 0.1505 +0 0.1019 +0 0.0869 +0 0.1670 +0 0.1969 +0 0.0765 +0 0.1824 +0 0.1020 +0 0.1160 +0 0.2440 +0 0.1790 +0 0.1087 +0 0.0834 +0 0.0621 +0 0.1881 +0 0.1080 +0 0.3797 +0 0.0761 +0 0.1426 +0 0.0624 +0 0.0839 +0 0.0549 +0 0.0354 +0 0.0969 +0 0.0795 +0 0.0429 +0 0.0744 +0 0.0739 +0 0.1413 +0 0.2692 +0 0.0757 +0 0.0473 +0 0.1237 +0 0.4200 +0 0.0573 +0 0.1162 +0 0.1192 +0 0.0727 +0 0.2154 +0 0.0872 +0 0.1118 +0 0.1394 +0 0.0940 +0 0.1292 +0 0.1321 +0 0.2052 +0 0.2058 +0 0.0667 +0 0.1048 +0 0.4064 +0 0.0957 +0 0.2335 +0 0.0582 +0 0.1163 +0 0.0922 +0 0.0758 +0 0.0428 +1 0.7863 +0 0.1639 +0 0.0968 +0 0.1724 +0 0.2485 +0 0.0524 +0 0.0593 +0 0.2661 +0 0.4476 +0 0.6754 +0 0.1811 +0 0.1290 +0 0.1206 +0 0.0401 +0 0.4396 +0 0.1072 +0 0.2325 +0 0.0695 +0 0.0596 +0 0.2375 +0 0.1938 +0 0.0896 +0 0.0835 +0 0.1688 +0 0.1663 +0 0.0710 +0 0.1558 +0 0.6479 +0 0.1166 +0 0.0776 +0 0.3155 +0 0.1219 +0 0.1076 +0 0.0393 +0 0.2489 +0 0.0703 +0 0.3054 +0 0.0448 +0 0.1383 +0 0.1886 +0 0.1913 +0 0.0850 +0 0.0410 +0 0.1097 +0 0.0440 +0 0.1987 +0 0.0617 +0 0.4811 +0 0.1125 +0 0.0897 +0 0.0738 +0 0.1738 +0 0.0666 +0 0.0547 +1 0.8262 +0 0.5158 +0 0.2567 +0 0.3654 +0 0.1275 +0 0.0458 +0 0.2128 +0 0.1014 +0 0.1337 +0 0.0796 +0 0.1115 +0 0.3162 +0 0.2600 +0 0.2128 +0 0.0542 +0 0.0800 +0 0.3429 +0 0.1284 +0 0.2031 +0 0.0856 +0 0.1086 +0 0.0835 +0 0.0552 +0 0.0547 +0 0.0845 +0 0.2450 +0 0.0536 +0 0.0759 +0 0.0576 +0 0.1693 +0 0.4007 +0 0.2023 +0 0.0488 +0 0.2237 +0 0.1475 +0 0.0825 +0 0.5805 +0 0.7119 +0 0.1298 +0 0.1487 +0 0.0493 +0 0.0446 +0 0.4283 +0 0.0804 +0 0.1038 +0 0.0808 +0 0.1119 +0 0.1180 +0 0.2217 +0 0.1201 +0 0.1785 +0 0.0692 +0 0.0962 +0 0.1338 +0 0.0867 +0 0.0652 +0 0.1491 +0 0.0805 +0 0.0507 +0 0.0629 +1 0.8354 +0 0.1042 +0 0.2756 +0 0.1463 +0 0.0838 +0 0.0804 +0 0.0817 +0 0.5729 +0 0.0589 +0 0.0734 +0 0.1002 +0 0.0714 +0 0.0387 +0 0.0857 +0 0.0540 +0 0.0857 +0 0.4049 +0 0.6841 +0 0.0333 +0 0.1093 +0 0.0924 +0 0.0622 +0 0.1000 +0 0.0523 +0 0.1082 +1 0.8057 +0 0.1078 +0 0.5198 +0 0.0708 +0 0.2791 +0 0.1461 +0 0.1336 +0 0.6594 +0 0.0503 +0 0.0887 +0 0.1075 +0 0.1363 +0 0.0861 +0 0.2180 +0 0.2861 +0 0.0633 +0 0.0488 +0 0.0597 +0 0.0954 +0 0.0565 +0 0.0706 +0 0.1027 +0 0.1857 +0 0.1028 +0 0.1161 +0 0.1064 +0 0.0503 +0 0.1251 +0 0.2892 +0 0.2927 +0 0.0670 +0 0.0883 +0 0.1965 +0 0.3169 +0 0.0964 +0 0.4360 +0 0.0492 +0 0.1314 +0 0.0799 +0 0.1175 +0 0.1435 +0 0.1309 +1 0.8132 +0 0.0990 +0 0.1572 +0 0.1795 +0 0.0309 +0 0.1169 +0 0.0793 +0 0.0920 +0 0.0652 +0 0.0537 +0 0.0932 +0 0.2369 +0 0.1227 +0 0.1084 +0 0.1359 +0 0.1269 +0 0.2388 +0 0.1482 +0 0.1396 +0 0.0314 +0 0.1717 +0 0.1840 +0 0.0725 +0 0.1708 +0 0.1877 +0 0.1143 +0 0.3377 +0 0.1634 +0 0.2204 +0 0.0863 +0 0.0566 +0 0.1864 +0 0.0461 +0 0.1576 +0 0.0836 +0 0.1232 +0 0.0504 +0 0.0715 +0 0.1023 +0 0.1092 +0 0.1557 +0 0.0772 +0 0.0504 +0 0.0906 +0 0.3072 +0 0.0412 +0 0.1282 +0 0.1399 +0 0.0603 +0 0.1475 +0 0.1435 +0 0.0808 +0 0.0785 +0 0.1380 +0 0.1221 +0 0.0507 +0 0.0948 +0 0.1033 +0 0.2041 +0 0.1321 +0 0.1852 +0 0.7049 +0 0.3073 +0 0.2177 +0 0.1070 +0 0.1256 +0 0.2305 +0 0.1446 +0 0.1250 +0 0.1254 +1 0.7659 +0 0.0475 +0 0.1034 +0 0.1088 +0 0.0828 +0 0.0687 +0 0.0437 +1 0.7800 +0 0.0927 +0 0.2079 +0 0.1139 +0 0.0767 +0 0.0420 +0 0.1961 +0 0.2332 +0 0.0782 +0 0.1537 +0 0.0616 +0 0.0831 +0 0.0509 +0 0.0533 +0 0.0976 +0 0.6223 +0 0.1178 +0 0.0882 +0 0.3320 +0 0.0694 +0 0.1511 +0 0.0807 +0 0.6559 +0 0.1261 +0 0.5192 +0 0.3488 +0 0.2314 +0 0.1769 +0 0.0909 +0 0.0969 +0 0.2087 +0 0.1061 +0 0.0635 +0 0.0561 +0 0.0531 +0 0.0680 +0 0.1778 +0 0.1195 +0 0.1417 +0 0.1123 +0 0.7479 +0 0.1950 +0 0.0968 +0 0.4603 +0 0.1906 +0 0.0667 +0 0.1439 +0 0.1047 +0 0.3645 +0 0.1652 +0 0.1863 +0 0.0643 +0 0.1281 +0 0.1207 +0 0.1017 +0 0.0791 +0 0.2642 +0 0.0883 +0 0.0538 +0 0.0446 +0 0.0749 +0 0.1512 +0 0.0859 +0 0.1098 +0 0.2210 +0 0.0707 +0 0.0917 +0 0.0757 +0 0.0395 +0 0.0517 +0 0.3055 +1 0.8324 +0 0.0934 +0 0.0773 +0 0.1266 +0 0.1395 +0 0.1151 +0 0.1359 +0 0.0678 +0 0.2222 +0 0.0418 +0 0.1225 +0 0.0701 +0 0.0379 +0 0.0408 +0 0.0461 +0 0.0488 +0 0.1229 +0 0.0937 +0 0.1103 +0 0.2138 +0 0.3073 +1 0.8162 +0 0.1723 +0 0.0536 +0 0.0862 +0 0.6928 +0 0.0761 +0 0.2730 +0 0.0898 +0 0.0740 +0 0.0778 +0 0.0788 +0 0.1491 +0 0.3063 +0 0.0517 +0 0.0331 +0 0.1092 +0 0.0764 +0 0.0707 +0 0.2331 +0 0.2333 +0 0.1064 +0 0.0849 +0 0.0461 +0 0.1355 +0 0.0501 +0 0.6860 +0 0.5002 +0 0.0682 +0 0.0532 +0 0.1392 +0 0.1898 +0 0.1591 +0 0.1122 +0 0.0441 +0 0.0746 +0 0.0580 +0 0.0998 +0 0.1577 +0 0.2323 +0 0.0635 +0 0.1660 +0 0.1395 +0 0.0823 +0 0.1176 +0 0.2548 +0 0.1175 +0 0.0748 +0 0.3233 +0 0.1053 +0 0.3743 +0 0.4608 +0 0.2328 +0 0.2556 +0 0.2832 +0 0.2264 +0 0.1284 +0 0.0911 +0 0.2378 +0 0.0673 +0 0.0538 +0 0.1532 +0 0.1301 +0 0.0979 +0 0.0633 +0 0.1225 +0 0.3268 +0 0.2123 +0 0.1156 +0 0.1232 +0 0.0997 +0 0.2826 +0 0.1235 +0 0.0624 +0 0.1599 +0 0.0748 +0 0.1154 +0 0.1328 +0 0.0641 +0 0.1214 +0 0.0994 +0 0.2701 +0 0.0802 +0 0.0749 +0 0.0905 +0 0.6938 +0 0.1026 +0 0.0987 +0 0.1025 +0 0.1236 +0 0.0632 +0 0.1385 +0 0.1250 +0 0.0794 +0 0.1222 +0 0.3128 +1 0.7840 +0 0.0974 +0 0.0853 +0 0.3660 +0 0.1009 +0 0.2313 +0 0.0985 +0 0.0918 +0 0.3252 +0 0.4340 +0 0.1512 +0 0.0884 +0 0.0786 +0 0.1076 +0 0.0979 +0 0.0592 +0 0.1917 +0 0.0905 +0 0.0375 +0 0.5619 +1 0.8054 +0 0.0657 +0 0.0675 +0 0.1095 +0 0.0475 +0 0.2925 +0 0.1387 +0 0.1249 +0 0.0966 +0 0.1927 +0 0.1145 +0 0.0585 +0 0.2626 +0 0.0580 +0 0.1020 +0 0.2510 +0 0.0451 +0 0.0948 +0 0.1197 +0 0.0985 +0 0.0695 +0 0.0718 +0 0.1455 +0 0.0399 +0 0.0984 +0 0.1860 +0 0.0401 +0 0.1043 +0 0.1342 +0 0.0273 +0 0.1549 +0 0.1013 +0 0.0707 +0 0.0902 +0 0.1424 +0 0.0738 +0 0.1122 +0 0.1192 +0 0.1470 +0 0.1055 +0 0.0623 +0 0.0577 +0 0.1347 +0 0.1367 +0 0.1849 +0 0.2715 +0 0.2216 +0 0.0666 +0 0.1057 +0 0.5440 +0 0.1391 +0 0.7338 +0 0.0635 +0 0.1428 +0 0.2047 +0 0.0708 +0 0.1303 +0 0.0546 +0 0.0547 +0 0.0900 +0 0.0721 +0 0.5854 +0 0.2593 +0 0.0958 +0 0.0663 +0 0.1131 +0 0.0408 +0 0.2028 +0 0.2370 +0 0.1259 +0 0.0726 +0 0.3112 +0 0.1486 +0 0.0844 +0 0.0583 +0 0.0431 +0 0.2085 +0 0.1347 +0 0.0320 +0 0.3012 +0 0.1486 +0 0.0529 +0 0.1312 +0 0.2267 +0 0.0847 +0 0.1137 +0 0.0982 +0 0.0593 +0 0.0781 +0 0.2120 +0 0.2182 +0 0.1362 +0 0.0760 +0 0.1132 +0 0.0606 +0 0.1028 +0 0.0548 +0 0.0358 +0 0.0565 +0 0.0415 +0 0.0542 +0 0.1478 +0 0.2607 +0 0.0635 +0 0.0487 +0 0.0705 +0 0.3477 +0 0.0703 +0 0.0375 +0 0.0968 +0 0.1757 +0 0.0824 +0 0.1927 +0 0.1122 +0 0.0795 +0 0.1049 +0 0.2542 +0 0.1828 +0 0.0480 +0 0.1144 +0 0.0535 +0 0.1666 +0 0.0988 +0 0.1239 +0 0.0695 +0 0.0459 +0 0.0892 +0 0.1651 +0 0.2068 +0 0.1446 +0 0.1550 +0 0.0584 +0 0.1525 +0 0.0788 +0 0.0432 +0 0.0384 +0 0.0840 +0 0.1123 +0 0.0602 +0 0.0784 +0 0.1539 +0 0.1162 +0 0.2364 +0 0.2662 +0 0.0912 +0 0.1488 +0 0.0989 +0 0.0477 +0 0.0606 +0 0.0598 +0 0.5867 +0 0.1597 +0 0.1385 +0 0.2602 +0 0.0721 +0 0.0855 +0 0.1762 +0 0.1609 +1 0.8759 +0 0.0637 +0 0.0471 +0 0.0460 +0 0.0544 +0 0.0744 +0 0.0520 +0 0.2990 +0 0.0776 +0 0.1197 +0 0.6445 +0 0.0640 +0 0.0647 +0 0.0844 +0 0.1632 +0 0.0825 +0 0.5651 +0 0.0463 +0 0.0807 +0 0.1283 +0 0.1025 +0 0.0667 +0 0.0745 +0 0.1018 +0 0.1077 +0 0.0438 +0 0.1057 +0 0.0757 +0 0.1011 +0 0.0563 +0 0.1238 +0 0.0807 +0 0.1524 +0 0.1217 +0 0.0462 +0 0.0892 +0 0.2355 +0 0.1070 +0 0.0792 +0 0.1819 +0 0.1436 +0 0.0680 +0 0.0651 +0 0.0781 +0 0.0858 +0 0.1455 +0 0.0903 +0 0.1087 +0 0.3980 +0 0.1046 +0 0.2397 +0 0.0416 +0 0.2284 +0 0.0650 +0 0.2003 +0 0.1418 +1 0.7649 +0 0.3989 +0 0.0811 +0 0.1907 +0 0.1172 +0 0.1278 +0 0.0982 +0 0.2293 +0 0.1814 +0 0.1177 +0 0.5308 +0 0.1577 +0 0.0602 +0 0.0432 +0 0.0478 +0 0.1466 +0 0.1112 +0 0.1361 +0 0.2895 +0 0.0788 +0 0.1355 +0 0.1795 +0 0.2011 +0 0.1242 +0 0.0587 +0 0.3527 +0 0.2093 +0 0.2336 +0 0.2051 +0 0.0558 +0 0.0945 +0 0.1730 +0 0.1361 +0 0.0574 +0 0.0997 +0 0.0808 +0 0.0920 +0 0.1753 +0 0.0859 +0 0.0749 +0 0.0434 +0 0.0873 +0 0.1195 +0 0.0869 +0 0.1580 +0 0.1396 +0 0.1529 +0 0.0465 +0 0.2278 +0 0.0790 +0 0.0933 +0 0.1350 +0 0.1593 +0 0.1310 +0 0.2191 +0 0.2063 +0 0.0976 +0 0.0560 +0 0.1932 +0 0.1453 +0 0.0928 +0 0.2753 +0 0.0854 +0 0.1467 +0 0.1501 +0 0.0776 +0 0.4654 +0 0.1208 +0 0.0707 +0 0.4777 +0 0.0667 +0 0.0688 +0 0.1551 +0 0.6099 +0 0.0773 +0 0.1001 +0 0.0826 +0 0.1053 +0 0.7015 +0 0.1533 +0 0.0477 +0 0.1394 +0 0.2552 +0 0.1932 +0 0.0840 +1 0.7761 +0 0.1235 +0 0.2485 +0 0.2165 +0 0.1622 +0 0.1426 +0 0.1076 +0 0.0953 +0 0.0611 +0 0.1344 +0 0.0753 +0 0.1028 +0 0.1024 +0 0.0953 +0 0.1813 +0 0.2123 +0 0.2382 +0 0.0570 +0 0.2682 +0 0.0518 +0 0.1133 +0 0.0897 +0 0.0822 +0 0.1510 +0 0.1307 +0 0.1572 +0 0.0821 +0 0.0580 +0 0.0677 +1 0.8219 +0 0.0442 +0 0.3151 +0 0.0995 +1 0.8649 +0 0.3096 +0 0.0599 +0 0.4086 +0 0.0432 +0 0.0494 +0 0.1430 +0 0.0835 +0 0.3504 +0 0.1447 +0 0.1528 +0 0.0589 +0 0.0472 +0 0.3209 +0 0.0922 +0 0.0484 +0 0.0621 +0 0.0778 +0 0.0884 +0 0.1133 +0 0.1263 +0 0.1156 +0 0.3397 +0 0.0927 +0 0.1951 +0 0.0854 +0 0.1065 +0 0.1308 +0 0.1016 +0 0.1236 +0 0.1886 +0 0.2038 +0 0.6918 +0 0.0590 +0 0.0938 +0 0.1853 +0 0.3375 +0 0.1664 +0 0.1161 +0 0.1448 +0 0.2445 +0 0.0976 +0 0.4835 +0 0.1680 +0 0.0904 +0 0.6496 +0 0.0986 +0 0.1452 +0 0.1730 +0 0.1399 +0 0.1201 +0 0.0527 +0 0.0531 +0 0.1204 +0 0.1055 +0 0.0765 +0 0.0761 +0 0.0580 +0 0.1664 +0 0.1782 +0 0.1127 +0 0.0920 +0 0.1051 +0 0.0659 +0 0.0795 +0 0.1463 +0 0.1353 +0 0.1030 +0 0.0870 +0 0.0957 +0 0.0933 +0 0.5127 +0 0.1871 +0 0.0563 +0 0.2876 +0 0.1342 +0 0.0576 +0 0.3405 +0 0.1395 +0 0.0553 +0 0.4561 +0 0.0701 +0 0.0358 +1 0.8049 +0 0.0573 +0 0.0998 +0 0.5042 +0 0.0918 +0 0.1593 +0 0.1146 +0 0.1638 +0 0.1737 +0 0.1761 +0 0.2882 +0 0.3054 +0 0.2419 +0 0.0361 +0 0.0534 +0 0.1111 +0 0.1755 +0 0.2380 +0 0.0730 +0 0.0931 +0 0.0718 +0 0.1257 +0 0.6199 +0 0.7344 +0 0.0911 +0 0.2683 +1 0.8095 +0 0.0637 +0 0.1833 +0 0.0718 +0 0.0481 +0 0.2476 +0 0.2460 +0 0.2035 +1 0.8140 +0 0.0637 +0 0.0417 +0 0.0969 +0 0.0448 +0 0.1956 +0 0.1013 +0 0.2064 +0 0.1809 +0 0.4854 +0 0.1157 +0 0.0936 +0 0.0630 +0 0.0462 +0 0.2295 +0 0.0851 +0 0.1427 +0 0.0714 +0 0.1187 +0 0.1023 +0 0.1682 +0 0.1275 +0 0.0927 +0 0.2116 +0 0.0489 +0 0.0881 +0 0.0900 +0 0.0669 +0 0.1063 +0 0.0443 +0 0.2680 +0 0.0931 +0 0.4884 +0 0.0903 +0 0.0723 +0 0.1106 +0 0.0878 +1 0.7876 +0 0.0552 +0 0.0550 +0 0.0524 +0 0.1188 +0 0.0540 +0 0.2371 +0 0.0685 +0 0.1153 +0 0.1545 +0 0.1374 +0 0.0816 +0 0.0735 +0 0.6755 +0 0.0572 +0 0.0548 +0 0.1183 +0 0.0512 +0 0.1840 +0 0.0761 +0 0.0615 +0 0.1112 +0 0.1082 +0 0.1016 +0 0.5214 +0 0.1894 +0 0.1222 +0 0.1494 +0 0.0839 +0 0.1970 +0 0.1003 +0 0.1100 +0 0.0751 +0 0.0794 +0 0.3171 +0 0.0570 +0 0.0616 +0 0.0872 +0 0.1105 +0 0.0849 +0 0.1919 +0 0.2664 +0 0.1331 +0 0.0493 +0 0.0537 +0 0.0901 +0 0.0999 +0 0.0910 +0 0.1120 +0 0.1344 +0 0.0869 +0 0.0534 +0 0.0976 +0 0.1412 +0 0.0529 +0 0.1173 +0 0.0986 +0 0.0461 +0 0.0818 +0 0.0738 +0 0.0631 +0 0.0655 +0 0.4059 +0 0.0455 +0 0.1295 +0 0.3184 +0 0.0835 +0 0.0859 +0 0.0466 +0 0.0920 +0 0.0879 +0 0.1863 +0 0.4637 +0 0.0732 +0 0.0870 +0 0.3595 +0 0.0799 +0 0.0698 +0 0.1940 +0 0.1003 +0 0.0975 +0 0.0956 +0 0.0590 +0 0.1523 +0 0.1553 +0 0.1657 +0 0.1023 +0 0.0800 +0 0.1486 +0 0.0503 +0 0.0735 +0 0.6469 +0 0.1137 +0 0.0713 +0 0.0549 +0 0.0713 +0 0.0614 +0 0.0539 +0 0.1370 +0 0.1544 +0 0.3359 +0 0.1122 +0 0.0751 +0 0.1131 +0 0.0805 +0 0.1317 +0 0.0627 +0 0.0974 +0 0.0930 +0 0.0678 +0 0.1010 +0 0.0857 +0 0.1456 +0 0.0479 +0 0.1008 +0 0.0854 +0 0.0750 +0 0.0394 +0 0.1192 +0 0.0587 +0 0.1884 +0 0.0626 +0 0.6400 +0 0.1478 +0 0.5069 +0 0.0542 +1 0.7893 +0 0.0363 +0 0.2644 +0 0.1874 +1 0.8272 +0 0.0808 +0 0.1762 +0 0.0552 +0 0.1323 +0 0.1690 +0 0.0759 +0 0.2126 +0 0.1719 +0 0.3677 +0 0.0912 +0 0.1531 +0 0.2166 +0 0.0713 +0 0.3884 +0 0.0895 +0 0.1211 +0 0.1290 +0 0.1144 +0 0.0491 +0 0.4064 +0 0.1467 +0 0.0694 +0 0.0767 +0 0.0573 +0 0.0583 +0 0.0945 +0 0.2579 +0 0.0722 +0 0.1226 +0 0.1452 +0 0.2274 +0 0.0589 +0 0.0787 +0 0.4435 +0 0.1718 +0 0.0449 +0 0.3620 +0 0.0625 +0 0.0640 +0 0.2552 +0 0.1100 +0 0.1071 +0 0.0449 +0 0.4077 +0 0.0984 +0 0.1380 +0 0.0660 +0 0.0394 +0 0.1952 +0 0.0645 +0 0.1580 +0 0.0805 +0 0.1535 +0 0.0655 +0 0.2015 +0 0.0907 +0 0.5145 +0 0.2712 +0 0.0866 +0 0.1090 +0 0.0406 +0 0.0942 +0 0.1223 +0 0.0988 +0 0.0749 +0 0.0381 +0 0.1058 +0 0.1037 +0 0.0897 +0 0.2289 +0 0.1459 +0 0.0653 +0 0.1357 +0 0.0354 +0 0.2054 +0 0.1206 +0 0.0415 +0 0.1088 +0 0.0825 +0 0.0427 +0 0.0586 +0 0.1946 +0 0.0420 +0 0.0882 +0 0.2180 +0 0.1321 +0 0.0602 +0 0.1246 +0 0.2633 +0 0.0657 +0 0.1316 +0 0.0645 +0 0.1022 +0 0.0937 +0 0.1206 +0 0.2151 +0 0.2373 +0 0.6593 +0 0.0663 +0 0.0891 +0 0.2028 +0 0.0874 +0 0.2477 +0 0.0690 +0 0.0503 +0 0.0534 +0 0.0512 +0 0.0412 +0 0.0466 +0 0.2276 +0 0.1410 +0 0.0356 +0 0.2675 +0 0.2391 +0 0.0889 +0 0.2150 +0 0.0767 +0 0.0689 +0 0.0454 +0 0.1285 +0 0.0747 +0 0.1176 +0 0.0737 +0 0.6335 +0 0.1419 +0 0.1601 +0 0.1320 +0 0.1335 +0 0.0667 +0 0.0893 +0 0.0798 +0 0.1156 +0 0.1096 +0 0.2032 +0 0.5335 +0 0.1981 +0 0.0905 +0 0.1252 +0 0.0517 +0 0.0939 +0 0.2700 +0 0.3138 +0 0.0911 +0 0.0897 +0 0.7278 +0 0.0911 +0 0.0840 +0 0.0625 +0 0.1017 +0 0.1790 +0 0.1141 +0 0.1217 +0 0.2052 +0 0.2382 +0 0.1783 +0 0.1416 +0 0.0963 +0 0.1423 +0 0.2255 +0 0.0507 +0 0.0826 +0 0.0974 +0 0.0743 +0 0.0588 +0 0.1245 +0 0.1123 +0 0.1060 +0 0.0810 +0 0.0391 +0 0.0652 +0 0.0537 +0 0.0546 +0 0.0917 +0 0.1022 +0 0.1289 +0 0.1295 +0 0.0298 +0 0.2426 +0 0.0592 +0 0.1222 +0 0.2000 +0 0.0808 +0 0.5924 +0 0.1492 +0 0.2128 +0 0.2319 +0 0.0937 +0 0.0799 +0 0.4399 +0 0.0586 +0 0.1167 +0 0.4438 +0 0.1053 +0 0.0902 +0 0.1142 +0 0.1165 +0 0.1566 +0 0.3715 +0 0.0528 +0 0.0500 +0 0.0985 +0 0.0563 +0 0.1300 +0 0.1172 +0 0.1520 +0 0.1691 +0 0.1725 +0 0.1029 +0 0.0539 +0 0.0981 +0 0.0771 +0 0.3207 +0 0.0706 +0 0.6888 +0 0.0610 +0 0.0584 +0 0.1183 +0 0.0941 +0 0.3416 +0 0.0408 +0 0.1181 +0 0.1588 +0 0.0623 +0 0.1192 +0 0.1804 +0 0.0547 +0 0.2216 +0 0.0879 +0 0.0931 +0 0.0877 +0 0.0796 +0 0.0464 +0 0.1061 +0 0.3686 +0 0.1299 +0 0.2104 +0 0.1238 +0 0.0698 +0 0.0926 +0 0.0884 +0 0.1170 +0 0.0801 +1 0.7686 +0 0.1653 +0 0.5122 +0 0.1430 +0 0.0494 +0 0.3027 +0 0.0355 +0 0.1031 +0 0.1666 +0 0.2402 +0 0.1277 +0 0.1609 +0 0.0610 +0 0.2118 +0 0.0351 +0 0.0909 +0 0.1298 +0 0.0745 +0 0.0739 +0 0.0783 +0 0.0611 +0 0.0753 +0 0.3958 +0 0.1056 +0 0.0643 +0 0.2203 +0 0.0620 +0 0.1950 +0 0.1189 +0 0.1125 +0 0.0744 +0 0.0579 +0 0.0821 +0 0.1201 +0 0.2611 +0 0.0444 +0 0.1509 +0 0.7126 +0 0.0673 +0 0.4347 +0 0.0820 +0 0.2228 +0 0.2469 +0 0.2371 +0 0.1321 +0 0.0664 +0 0.1039 +0 0.1017 +0 0.0321 +0 0.1377 +0 0.0690 +1 0.8671 +0 0.1530 +1 0.8097 +0 0.1944 +0 0.1157 +0 0.0980 +0 0.0512 +0 0.1131 +0 0.0963 +0 0.1561 +0 0.1671 +0 0.0908 +0 0.0657 +0 0.1057 +0 0.0615 +0 0.1059 +0 0.2094 +0 0.1135 +0 0.1072 +0 0.1125 +0 0.0771 +0 0.0522 +1 0.8657 +0 0.0949 +0 0.0569 +0 0.0639 +0 0.0777 +0 0.0680 +0 0.4168 +0 0.0946 +1 0.8298 +0 0.1061 +0 0.1523 +0 0.0948 +0 0.0607 +0 0.1783 +0 0.0342 +0 0.0951 +0 0.0511 +0 0.2094 +0 0.0722 +0 0.1915 +0 0.1201 +0 0.0533 +0 0.1433 +0 0.1475 +0 0.1069 +0 0.1359 +0 0.0845 +0 0.0761 +0 0.0424 +0 0.1387 +0 0.3258 +0 0.2523 +0 0.0652 +0 0.1522 +0 0.0821 +0 0.0891 +0 0.1069 +0 0.1565 +0 0.1501 +0 0.4983 +0 0.1498 +0 0.0893 +0 0.0745 +0 0.1083 +0 0.1128 +0 0.0820 +0 0.2840 +0 0.1114 +0 0.0744 +0 0.2188 +0 0.1268 +0 0.3194 +0 0.4168 +0 0.2278 +0 0.1627 +0 0.2648 +0 0.2613 +0 0.0831 +0 0.1025 +0 0.2219 +0 0.2476 +0 0.1269 +0 0.1256 +0 0.1483 +0 0.1067 +0 0.0585 +0 0.1401 +0 0.2561 +0 0.1356 +0 0.0969 +0 0.1221 +0 0.0677 +0 0.2766 +0 0.0435 +0 0.0758 +0 0.0613 +0 0.0500 +0 0.3235 +0 0.0912 +0 0.0420 +0 0.2057 +0 0.0967 +0 0.1092 +0 0.4154 +0 0.1503 +0 0.1014 +0 0.0831 +0 0.2025 +0 0.1251 +0 0.5783 +0 0.6234 +0 0.0573 +0 0.1668 +0 0.0811 +0 0.0655 +0 0.0998 +0 0.0958 +0 0.1388 +0 0.1917 +0 0.2116 +0 0.1711 +0 0.0947 +0 0.0570 +0 0.1536 +0 0.1374 +0 0.1462 +0 0.0708 +0 0.1755 +0 0.1058 +0 0.0956 +0 0.1029 +0 0.1231 +0 0.0689 +0 0.1060 +0 0.0408 +1 0.8662 +0 0.0852 +0 0.0919 +0 0.0736 +0 0.1204 +0 0.0643 +0 0.1398 +0 0.0532 +0 0.0487 +0 0.1338 +0 0.2262 +0 0.1219 +0 0.0549 +0 0.1308 +0 0.0916 +0 0.1726 +0 0.1076 +0 0.0893 +0 0.0848 +0 0.0724 +0 0.0564 +0 0.0548 +0 0.3140 +0 0.1394 +0 0.4215 +0 0.0768 +0 0.5529 +0 0.0889 +0 0.1559 +0 0.0504 +0 0.0667 +0 0.0866 +0 0.0359 +0 0.0599 +0 0.0862 +0 0.1523 +0 0.3412 +0 0.1444 +0 0.0906 +0 0.0921 +0 0.3616 +0 0.0921 +0 0.6346 +0 0.1119 +0 0.7306 +0 0.0605 +0 0.0824 +0 0.1031 +0 0.0570 +0 0.2484 +0 0.2286 +0 0.7264 +0 0.0527 +0 0.0855 +0 0.0893 +0 0.1089 +0 0.0675 +0 0.2212 +0 0.1024 +0 0.4335 +0 0.2300 +0 0.0749 +0 0.1347 +0 0.0791 +0 0.1489 +0 0.0980 +0 0.0508 +0 0.0922 +0 0.0862 +0 0.1083 +0 0.1423 +0 0.1265 +0 0.0331 +0 0.0735 +0 0.0923 +0 0.0796 +0 0.1615 +0 0.1739 +0 0.0815 +0 0.0687 +0 0.0492 +0 0.0923 +0 0.0594 +1 0.8350 +0 0.2060 +0 0.3090 +0 0.1763 +0 0.2094 +0 0.0718 +0 0.2291 +0 0.0520 +0 0.1101 +0 0.1638 +0 0.1043 +0 0.0900 +0 0.1207 +0 0.0908 +0 0.0585 +0 0.4696 +0 0.1020 +0 0.1154 +0 0.1508 +0 0.2675 +0 0.0401 +0 0.0975 +0 0.0749 +0 0.0446 +0 0.0938 +0 0.1848 +0 0.1032 +0 0.0672 +0 0.1501 +0 0.0715 +0 0.1535 +0 0.0752 +0 0.0894 +0 0.2131 +0 0.1692 +0 0.1568 +1 0.7716 +0 0.1231 +0 0.0780 +0 0.2018 +0 0.0762 +0 0.1430 +0 0.2064 +0 0.1198 +0 0.1718 +0 0.2241 +0 0.0994 +1 0.7929 +0 0.0666 +0 0.1161 +0 0.0360 +0 0.6893 +0 0.1725 +0 0.0761 +0 0.2737 +0 0.1290 +0 0.0921 +0 0.1119 +0 0.0866 +0 0.0619 +0 0.0664 +0 0.1026 +0 0.4771 +0 0.2398 +0 0.7333 +0 0.1410 +0 0.0667 +0 0.0850 +0 0.1323 +0 0.1065 +0 0.2500 +0 0.1026 +0 0.0759 +0 0.7482 +0 0.0915 +0 0.1148 +0 0.0542 +0 0.0707 +0 0.0980 +0 0.1107 +0 0.0709 +0 0.0652 +0 0.1020 +0 0.1659 +0 0.0972 +0 0.5123 +0 0.0486 +0 0.0406 +0 0.2165 +0 0.0364 +0 0.1753 +0 0.1987 +0 0.1513 +0 0.0902 +0 0.1027 +0 0.0667 +0 0.1030 +0 0.0583 +0 0.0417 +0 0.3865 +0 0.0924 +0 0.1984 +0 0.0789 +0 0.0598 +0 0.0896 +0 0.6774 +0 0.1281 +0 0.2788 +0 0.1233 +0 0.4711 +0 0.1308 +0 0.0845 +0 0.0827 +0 0.0821 +0 0.0987 +0 0.1024 +0 0.0663 +0 0.0744 +0 0.0882 +0 0.1106 +0 0.1297 +0 0.0796 +0 0.0911 +0 0.0622 +0 0.0926 +0 0.1123 +0 0.1544 +0 0.0375 +0 0.1201 +0 0.1441 +0 0.3237 +0 0.0621 +0 0.0849 +0 0.1713 +0 0.0502 +0 0.0669 +0 0.0941 +0 0.0751 +0 0.6659 +0 0.0489 +0 0.0467 +0 0.1685 +0 0.1341 +0 0.1485 +0 0.1006 +1 0.7893 +0 0.3234 +0 0.0630 +0 0.0876 +0 0.2410 +0 0.0841 +0 0.2488 +0 0.0812 +0 0.1202 +0 0.0743 +0 0.0705 +0 0.2339 +0 0.0806 +0 0.1383 +0 0.0484 +0 0.1084 +0 0.1039 +0 0.1294 +0 0.1337 +0 0.1547 +0 0.0878 +0 0.1137 +0 0.1085 +0 0.3214 +0 0.0809 +0 0.0902 +0 0.0946 +0 0.0765 +0 0.1186 +0 0.2584 +0 0.2457 +0 0.0491 +0 0.1102 +0 0.0597 +0 0.1313 +0 0.1382 +0 0.2535 +0 0.1333 +0 0.0532 +0 0.1973 +0 0.1220 +0 0.4486 +0 0.1126 +0 0.1361 +0 0.0704 +0 0.1696 +0 0.2063 +0 0.1466 +0 0.2380 +0 0.0594 +0 0.1096 +0 0.0905 +0 0.1993 +0 0.0602 +0 0.0713 +0 0.1149 +0 0.1883 +0 0.1406 +0 0.1254 +0 0.1383 +0 0.1257 +0 0.1197 +0 0.0915 +0 0.2352 +0 0.0423 +0 0.0821 +0 0.0356 +0 0.3862 +0 0.0384 +0 0.1340 +0 0.1886 +0 0.5097 +0 0.0719 +0 0.1194 +0 0.2016 +0 0.1740 +0 0.0533 +0 0.1583 +0 0.0669 +0 0.0956 +0 0.5491 +0 0.1229 +0 0.0966 +0 0.0581 +0 0.2022 +0 0.2121 +0 0.1717 +0 0.2076 +0 0.0565 +0 0.2287 +0 0.0859 +0 0.3724 +0 0.1359 +0 0.0711 +0 0.0925 +0 0.1291 +0 0.0595 +0 0.0822 +0 0.0684 +0 0.0697 +0 0.0734 +0 0.2301 +0 0.1656 +0 0.1076 +0 0.0727 +0 0.0382 +0 0.0990 +0 0.1550 +0 0.0651 +0 0.1094 +0 0.0598 +0 0.0571 +0 0.2027 +0 0.0589 +0 0.0638 +0 0.0853 +0 0.0848 +0 0.1114 +0 0.0544 +0 0.1421 +0 0.1101 +0 0.2577 +0 0.1257 +0 0.0763 +0 0.0602 +0 0.1117 +0 0.1474 +0 0.1462 +0 0.1656 +0 0.1087 +0 0.0478 +0 0.0570 +0 0.2838 +0 0.1101 +0 0.1101 +0 0.1249 +0 0.0861 +0 0.1066 +0 0.3055 +0 0.1926 +0 0.0991 +0 0.1364 +0 0.0467 +0 0.1490 +0 0.0544 +0 0.3289 +0 0.1162 +0 0.1189 +0 0.0403 +0 0.0926 +0 0.0808 +0 0.1401 +0 0.1815 +0 0.0864 +0 0.6525 +0 0.1654 +0 0.0649 +0 0.5064 +0 0.1170 +0 0.1628 +0 0.0913 +0 0.0731 +0 0.1011 +0 0.2545 +0 0.0931 +0 0.1037 +0 0.0654 +0 0.1584 +0 0.0640 +0 0.0642 +0 0.1564 +0 0.3763 +0 0.0505 +1 0.8077 +0 0.1438 +0 0.0441 +0 0.0661 +0 0.3507 +1 0.7999 +0 0.1709 +0 0.1014 +0 0.0861 +0 0.2941 +0 0.1267 +0 0.0865 +0 0.3450 +0 0.0363 +0 0.0900 +0 0.0493 +0 0.1679 +0 0.2236 +0 0.0754 +0 0.0490 +0 0.0472 +0 0.0742 +0 0.0874 +0 0.0973 +0 0.0721 +0 0.1106 +0 0.1327 +0 0.0634 +0 0.0973 +0 0.0827 +0 0.1196 +0 0.0976 +0 0.0672 +0 0.1340 +0 0.0978 +0 0.1422 +0 0.0616 +0 0.1371 +0 0.1841 +0 0.0426 +0 0.1125 +0 0.0847 +0 0.1592 +0 0.1726 +0 0.0986 +0 0.1055 +0 0.1222 +0 0.0838 +0 0.0583 +0 0.0832 +0 0.0483 +0 0.4012 +0 0.1066 +0 0.0481 +0 0.1515 +1 0.7619 +0 0.1026 +0 0.1537 +0 0.0634 +0 0.0690 +0 0.0878 +0 0.0640 +0 0.4131 +0 0.1379 +0 0.0837 +0 0.1028 +0 0.1016 +0 0.0951 +0 0.0374 +0 0.2717 +0 0.1617 +0 0.0954 +0 0.1200 +0 0.1871 +0 0.0978 +0 0.1298 +0 0.1094 +0 0.0862 +0 0.0876 +0 0.0840 +0 0.1619 +0 0.1318 +0 0.1456 +0 0.3389 +0 0.4926 +0 0.2027 +0 0.0806 +0 0.1566 +0 0.0859 +0 0.1488 +0 0.1381 +1 0.8264 +0 0.0733 +0 0.1017 +0 0.1497 +0 0.1392 +0 0.1503 +0 0.1461 +0 0.2052 +0 0.2043 +0 0.0955 +0 0.0453 +0 0.0556 +0 0.0797 +0 0.0674 +0 0.0599 +0 0.1661 +0 0.0896 +0 0.3845 +0 0.0977 +0 0.0612 +0 0.0750 +0 0.2540 +0 0.0857 +0 0.0467 +0 0.1321 +0 0.3600 +0 0.0986 +0 0.1775 +0 0.2197 +0 0.1526 +0 0.0494 +0 0.1195 +0 0.3714 +0 0.1766 +0 0.1611 +0 0.2159 +0 0.0855 +0 0.0651 +0 0.1284 +0 0.0893 +0 0.1372 +0 0.2919 +0 0.0419 +0 0.0824 +0 0.1721 +0 0.0810 +0 0.1374 +0 0.1357 +0 0.1646 +0 0.0590 +0 0.0440 +0 0.0618 +0 0.0635 +0 0.0930 +0 0.0797 +0 0.1047 +0 0.0782 +0 0.0860 +0 0.1317 +0 0.1206 +0 0.0506 +0 0.1635 +0 0.2520 +0 0.1027 +0 0.0506 +0 0.0826 +0 0.0826 +0 0.1673 +0 0.1377 +0 0.2328 +0 0.2761 +0 0.1063 +0 0.0761 +0 0.0494 +0 0.1031 +0 0.1791 +0 0.0501 +0 0.6639 +0 0.1621 +0 0.1087 +0 0.0717 +0 0.1248 +0 0.1800 +0 0.2009 +0 0.2668 +0 0.1208 +0 0.1059 +0 0.0772 +0 0.0743 +0 0.1070 +0 0.1376 +0 0.0731 +0 0.1777 +0 0.1361 +0 0.1175 +0 0.4523 +0 0.0716 +0 0.2904 +0 0.0856 +0 0.1028 +0 0.2083 +0 0.0870 +0 0.1467 +0 0.0444 +0 0.0975 +0 0.1198 +0 0.0914 +0 0.1594 +0 0.0637 +0 0.0581 +0 0.0838 +0 0.1905 +0 0.0519 +0 0.0563 +0 0.0974 +0 0.1147 +0 0.0958 +0 0.0831 +0 0.1092 +0 0.0341 +0 0.0821 +0 0.0781 +0 0.5306 +0 0.1604 +0 0.1131 +0 0.1327 +0 0.1301 +0 0.0949 +0 0.1945 +0 0.6156 +0 0.3492 +0 0.0836 +0 0.2064 +0 0.0782 +0 0.0721 +0 0.1601 +0 0.1099 +0 0.1227 +0 0.0906 +0 0.1073 +0 0.5148 +0 0.6529 +0 0.1039 +0 0.1019 +0 0.1379 +0 0.0455 +0 0.0858 +0 0.1120 +0 0.0470 +0 0.2655 +0 0.0606 +0 0.0836 +0 0.1477 +0 0.2013 +0 0.0555 +0 0.6741 +0 0.3503 +0 0.1034 +0 0.1059 +0 0.2784 +0 0.0657 +0 0.7318 +0 0.2643 +0 0.1497 +0 0.1138 +0 0.0873 +0 0.0331 +0 0.0515 +0 0.0990 +0 0.3328 +0 0.0915 +0 0.6270 +0 0.1699 +0 0.4478 +0 0.0312 +0 0.4678 +0 0.1297 +0 0.1399 +0 0.1257 +0 0.1809 +0 0.1331 +0 0.3641 +0 0.0887 +0 0.0487 +0 0.2619 +0 0.0794 +0 0.1700 +0 0.1380 +0 0.0573 +0 0.1021 +0 0.0697 +0 0.0500 +0 0.1477 +0 0.0387 +0 0.0771 +0 0.1129 +0 0.1041 +0 0.0716 +0 0.1600 +0 0.1639 +0 0.1256 +0 0.1370 +0 0.0610 +0 0.1172 +0 0.0822 +0 0.0856 +0 0.1839 +0 0.0694 +0 0.2554 +0 0.1402 +0 0.0659 +0 0.0411 +0 0.1536 +0 0.0716 +0 0.1379 +0 0.0780 +0 0.1725 +0 0.0725 +0 0.0761 +0 0.1448 +0 0.0608 +0 0.0949 +0 0.0422 +0 0.0650 +0 0.1060 +0 0.2347 +0 0.0357 +0 0.0591 +0 0.0944 +0 0.3888 +0 0.2298 +0 0.0525 +0 0.1122 +0 0.0728 +0 0.1882 +0 0.1375 +0 0.0394 +0 0.0773 +0 0.1214 +0 0.0709 +0 0.0491 +0 0.1026 +0 0.1081 +0 0.0769 +0 0.5291 +0 0.2713 +0 0.1295 +0 0.1170 +0 0.2185 +0 0.0765 +0 0.1034 +0 0.2191 +0 0.1013 +0 0.0683 +0 0.0914 +0 0.0897 +0 0.0906 +0 0.1820 +0 0.1251 +0 0.1334 +0 0.0509 +0 0.1086 +0 0.1033 +0 0.0350 +0 0.0711 +0 0.0763 +0 0.0883 +0 0.0645 +0 0.2245 +0 0.7002 +0 0.1589 +0 0.2747 +0 0.1071 +0 0.0599 +0 0.0836 +0 0.0649 +0 0.0928 +0 0.0729 +0 0.0538 +0 0.0753 +0 0.1129 +0 0.2480 +0 0.1144 +0 0.0408 +0 0.0766 +0 0.1141 +0 0.1041 +0 0.1213 +0 0.5870 +0 0.2011 +0 0.2036 +0 0.1168 +0 0.0604 +0 0.0612 +0 0.0826 +0 0.0569 +0 0.0671 +0 0.1664 +0 0.1373 +0 0.0992 +0 0.0790 +0 0.0973 +0 0.0719 +0 0.1271 +0 0.2293 +0 0.1839 +0 0.1830 +0 0.0925 +0 0.1226 +0 0.0736 +0 0.0895 +0 0.1333 +0 0.1713 +0 0.1261 +0 0.0361 +0 0.1128 +0 0.0655 +0 0.0888 +0 0.1104 +0 0.1014 +0 0.0841 +0 0.1056 +0 0.0841 +0 0.1268 +0 0.3858 +0 0.1588 +0 0.1233 +0 0.5267 +0 0.0679 +0 0.1184 +0 0.0821 +0 0.0984 +0 0.3555 +0 0.1087 +0 0.0734 +0 0.2037 +0 0.0354 +0 0.1207 +0 0.0941 +0 0.2082 +0 0.1317 +0 0.1269 +0 0.4132 +0 0.0732 +0 0.0628 +0 0.0785 +0 0.0764 +0 0.1316 +0 0.0875 +0 0.0659 +0 0.0849 +0 0.0888 +0 0.1062 +0 0.1381 +0 0.1948 +0 0.0455 +0 0.0866 +0 0.0716 +0 0.2502 +0 0.0469 +0 0.0868 +0 0.0895 +0 0.3163 +0 0.1213 +0 0.1068 +0 0.0501 +0 0.1601 +0 0.0687 +0 0.0644 +0 0.1131 +0 0.0975 +0 0.1764 +0 0.0814 +0 0.0734 +0 0.2270 +0 0.3702 +0 0.1344 +0 0.0864 +0 0.0995 +0 0.1681 +0 0.1382 +0 0.1982 +0 0.1925 +0 0.2337 +0 0.0647 +0 0.1089 +0 0.0550 +0 0.1415 +0 0.0515 +0 0.1455 +0 0.0642 +0 0.1961 +0 0.1919 +0 0.1596 +0 0.1244 +0 0.1351 +0 0.1114 +0 0.0978 +0 0.0489 +0 0.0826 +0 0.0845 +0 0.1541 +0 0.1628 +0 0.1264 +0 0.0530 +0 0.1724 +0 0.0998 +0 0.1480 +0 0.1157 +0 0.6216 +0 0.0721 +0 0.0725 +0 0.2351 +0 0.0736 +0 0.1004 +0 0.7464 +0 0.0684 +0 0.0737 +0 0.0631 +0 0.4850 +0 0.1789 +0 0.5906 +0 0.1971 +0 0.0741 +0 0.0967 +0 0.0938 +0 0.2495 +0 0.0996 +0 0.0656 +0 0.0954 +0 0.0745 +0 0.1068 +0 0.1634 +0 0.3050 +0 0.0446 +0 0.1462 +0 0.0844 +0 0.0429 +0 0.1185 +0 0.0695 +0 0.1610 +0 0.1238 +0 0.0956 +0 0.0823 +0 0.0452 +0 0.1118 +0 0.0491 +0 0.1862 +0 0.0625 +0 0.2741 +0 0.2398 +0 0.0932 +0 0.0927 +0 0.0967 +0 0.1516 +1 0.8470 +1 0.8556 +0 0.0546 +0 0.1448 +0 0.1025 +0 0.0737 +0 0.1051 +0 0.0686 +0 0.0386 +0 0.2216 +0 0.4079 +0 0.1194 +0 0.3400 +0 0.0721 +0 0.3663 +0 0.0786 +0 0.1241 +0 0.0703 +0 0.0643 +0 0.1382 +0 0.1661 +0 0.1089 +0 0.0689 +0 0.1530 +0 0.0835 +0 0.1548 +0 0.1572 +0 0.1119 +0 0.1445 +0 0.0548 +0 0.2245 +0 0.2132 +0 0.1403 +0 0.0876 +0 0.2146 +0 0.1171 +0 0.1292 +0 0.1835 +0 0.1035 +0 0.0585 +0 0.0907 +0 0.0783 +0 0.0708 +0 0.0943 +0 0.0679 +0 0.1124 +0 0.2196 +0 0.0697 +0 0.3249 +0 0.0964 +0 0.0611 +0 0.1670 +0 0.0919 +0 0.2509 +0 0.1149 +0 0.1228 +0 0.0694 +0 0.0937 +0 0.0575 +0 0.2058 +0 0.0772 +0 0.1273 +0 0.0516 +0 0.1285 +0 0.0905 +0 0.0564 +0 0.1357 +0 0.0747 +0 0.1708 +0 0.0998 +0 0.0709 +0 0.0744 +0 0.0669 +0 0.0740 +0 0.1188 +0 0.2488 +0 0.0767 +0 0.0369 +0 0.1025 +0 0.0881 +0 0.1433 +0 0.0886 +0 0.1120 +0 0.1303 +0 0.1725 +0 0.1794 +0 0.0904 +0 0.0906 +0 0.3001 +0 0.1924 +0 0.1207 +0 0.0734 +0 0.2347 +0 0.1603 +0 0.0437 +0 0.1094 +0 0.0560 +0 0.2942 +0 0.0636 +0 0.2012 +0 0.2173 +0 0.1091 +0 0.3236 +0 0.0992 +1 0.8196 +0 0.1090 +0 0.0529 +0 0.0794 +0 0.0736 +0 0.1432 +0 0.3785 +0 0.0578 +0 0.0751 +0 0.2267 +0 0.2739 +0 0.1103 +0 0.0658 +0 0.0609 +0 0.1091 +0 0.1841 +0 0.1539 +0 0.1488 +0 0.2454 +0 0.1713 +0 0.0708 +0 0.2373 +0 0.0537 +0 0.1305 +0 0.0761 +0 0.1336 +0 0.0911 +0 0.1670 +0 0.1358 +0 0.1564 +0 0.1036 +0 0.0759 +0 0.6355 +0 0.1015 +0 0.0916 +0 0.1387 +0 0.0864 +0 0.0806 +0 0.1199 +0 0.0951 +0 0.2376 +0 0.0922 +0 0.0985 +0 0.0420 +0 0.1880 +0 0.1130 +0 0.6689 +0 0.0724 +0 0.1156 +0 0.1136 +0 0.0582 +0 0.0709 +0 0.1053 +0 0.0478 +0 0.2804 +0 0.2350 +0 0.1116 +0 0.2212 +0 0.0932 +0 0.0857 +0 0.1397 +0 0.0619 +0 0.1124 +0 0.1151 +0 0.0427 +0 0.0445 +0 0.1233 +0 0.0809 +0 0.0885 +0 0.1036 +0 0.0746 +0 0.0804 +0 0.1371 +0 0.1610 +0 0.0886 +0 0.0420 +0 0.1639 +0 0.0746 +0 0.0363 +0 0.0724 +0 0.1107 +0 0.2283 +0 0.1312 +0 0.0473 +0 0.0433 +0 0.3037 +0 0.0762 +0 0.0882 +0 0.2038 +0 0.1073 +0 0.1079 +0 0.1664 +0 0.0499 +0 0.0873 +0 0.2218 +0 0.2735 +0 0.0525 +0 0.3082 +0 0.3383 +0 0.0448 +1 0.7792 +0 0.0937 +0 0.1870 +0 0.0861 +0 0.2044 +0 0.3865 +0 0.2976 +0 0.2188 +0 0.2591 +0 0.1171 +0 0.0927 +0 0.1257 +0 0.1676 +0 0.0608 +0 0.0950 +0 0.1523 +0 0.0853 +0 0.1499 +0 0.0695 +0 0.1260 +0 0.6821 +0 0.3259 +0 0.2170 +0 0.5094 +0 0.0505 +0 0.2745 +0 0.1664 +0 0.1324 +0 0.1311 +0 0.1191 +0 0.0657 +0 0.1442 +0 0.0949 +0 0.0985 +0 0.0791 +0 0.1114 +0 0.1088 +0 0.0978 +0 0.0612 +0 0.0736 +0 0.0418 +0 0.0326 +0 0.0811 +0 0.0719 +0 0.2506 +0 0.0793 +0 0.1122 +0 0.1765 +0 0.1953 +0 0.1138 +0 0.1726 +0 0.4042 +0 0.0709 +0 0.0754 +0 0.0765 +0 0.1352 +0 0.1252 +0 0.0996 +0 0.2701 +0 0.0570 +0 0.2632 +0 0.0882 +0 0.0388 +0 0.1750 +0 0.0616 +0 0.0756 +0 0.1173 +0 0.1540 +0 0.1451 +0 0.1639 +0 0.2677 +0 0.0806 +0 0.0952 +0 0.0543 +0 0.1356 +0 0.2825 +0 0.0872 +0 0.0936 +0 0.1325 +0 0.0885 +0 0.0448 +0 0.1054 +0 0.0582 +0 0.1233 +0 0.1119 +0 0.0835 +0 0.1042 +0 0.0345 +0 0.2089 +0 0.0598 +0 0.1142 +0 0.0786 +0 0.0925 +0 0.1532 +0 0.1504 +0 0.0906 +0 0.1983 +0 0.0572 +0 0.0853 +0 0.1195 +0 0.1572 +0 0.1107 +0 0.0876 +0 0.0407 +0 0.0601 +0 0.2544 +0 0.0391 +0 0.2477 +0 0.2821 +0 0.1063 +0 0.1193 +0 0.2742 +0 0.1127 +0 0.0615 +0 0.1397 +0 0.0732 +0 0.6741 +0 0.1103 +0 0.0865 +0 0.1017 +0 0.0853 +0 0.1604 +0 0.1481 +0 0.0557 +0 0.1579 +0 0.1526 +0 0.1110 +0 0.0435 +0 0.0810 +0 0.1242 +0 0.1812 +0 0.1219 +0 0.1037 +0 0.3094 +0 0.2209 +0 0.7134 +0 0.1187 +0 0.1386 +0 0.0590 +0 0.2338 +0 0.2033 +0 0.1832 +0 0.1036 +0 0.3416 +0 0.0458 +0 0.1553 +0 0.0580 +0 0.0733 +0 0.1309 +0 0.1417 +0 0.1532 +0 0.0894 +0 0.0741 +0 0.1404 +0 0.0899 +0 0.0634 +0 0.0750 +0 0.1742 +0 0.1680 +0 0.1514 +0 0.0764 +0 0.1575 +0 0.0974 +0 0.1288 +0 0.5000 +0 0.1397 +0 0.2356 +0 0.5070 +0 0.1762 +0 0.1246 +0 0.0815 +0 0.0472 +0 0.0868 +0 0.0342 +0 0.0774 +0 0.7456 +0 0.2784 +0 0.2386 +0 0.2521 +0 0.1297 +0 0.2395 +0 0.2198 +0 0.1027 +0 0.0503 +0 0.0448 +0 0.1784 +0 0.1098 +0 0.2038 +0 0.0913 +0 0.2726 +0 0.2160 +0 0.3664 +0 0.0576 +0 0.0492 +0 0.0486 +0 0.0454 +0 0.0850 +0 0.0581 +1 0.8355 +0 0.1192 +0 0.0812 +0 0.0501 +0 0.0698 +0 0.0856 +0 0.0989 +0 0.2746 +0 0.2682 +0 0.0887 +0 0.1176 +0 0.3988 +0 0.1695 +0 0.4966 +0 0.0676 +0 0.1734 +0 0.1800 +0 0.0835 +0 0.1297 +0 0.1258 +0 0.2155 +0 0.1338 +0 0.1558 +0 0.1789 +0 0.0839 +0 0.0800 +0 0.0969 +0 0.1866 +0 0.1435 +0 0.1494 +0 0.1227 +0 0.0829 +0 0.1300 +1 0.7917 +0 0.0387 +0 0.1156 +0 0.0941 +0 0.0663 +0 0.0704 +0 0.0665 +0 0.1100 +0 0.1210 +0 0.0930 +0 0.3115 +0 0.2179 +0 0.0765 +0 0.0664 +0 0.3864 +0 0.0707 +0 0.0564 +0 0.0606 +0 0.1071 +0 0.0654 +0 0.0972 +0 0.1272 +0 0.1269 +0 0.0716 +0 0.2005 +0 0.1417 +0 0.1754 +0 0.0869 +0 0.0448 +0 0.0652 +0 0.0622 +0 0.1371 +0 0.2127 +0 0.2241 +0 0.5500 +0 0.1498 +0 0.0840 +0 0.0503 +0 0.0831 +0 0.0938 +0 0.3012 +0 0.0844 +0 0.1791 +0 0.0753 +0 0.1968 +0 0.1452 +0 0.2520 +0 0.1168 +0 0.1582 +0 0.0469 +0 0.0450 +0 0.0728 +0 0.1057 +0 0.0710 +0 0.0543 +0 0.1238 +0 0.1063 +0 0.1176 +0 0.0841 +0 0.2622 +0 0.1057 +0 0.1043 +0 0.2600 +0 0.0978 +0 0.2424 +0 0.0490 +0 0.1238 +0 0.1211 +0 0.0603 +0 0.1730 +0 0.3911 +0 0.0843 +1 0.8048 +0 0.1438 +0 0.0773 +0 0.0646 +0 0.0875 +0 0.2371 +1 0.7851 +0 0.2255 +0 0.2429 +0 0.0658 +0 0.1194 +0 0.0868 +0 0.1275 +0 0.1007 +0 0.1038 +0 0.1675 +0 0.0699 +0 0.1247 +0 0.2351 +0 0.0632 +0 0.0606 +0 0.1806 +0 0.1299 +0 0.0770 +0 0.0593 +0 0.0899 +0 0.5929 +0 0.1629 +0 0.1210 +0 0.0839 +0 0.6846 +0 0.0756 +0 0.0743 +0 0.0445 +0 0.1124 +0 0.5898 +0 0.0784 +0 0.2491 +0 0.0478 +0 0.0494 +0 0.0663 +0 0.0446 +0 0.1702 +0 0.0918 +0 0.1354 +0 0.0556 +0 0.0619 +0 0.1011 +0 0.0847 +0 0.0803 +0 0.0878 +0 0.1258 +0 0.0952 +0 0.0667 +0 0.1178 +0 0.1865 +0 0.1053 +0 0.1676 +0 0.0802 +0 0.0976 +0 0.0542 +0 0.0337 +0 0.1547 +0 0.1860 +0 0.0859 +0 0.0541 +0 0.1089 +0 0.1109 +0 0.0436 +0 0.0946 +0 0.0746 +0 0.1125 +0 0.0935 +0 0.3187 +0 0.0365 +0 0.0910 +0 0.1263 +0 0.0753 +0 0.1072 +0 0.1101 +0 0.0440 +0 0.5189 +0 0.3808 +0 0.0738 +0 0.2503 +0 0.0906 +0 0.0871 +0 0.0778 +0 0.1831 +0 0.0921 +0 0.2196 +0 0.0400 +0 0.0656 +0 0.1889 +0 0.0981 +0 0.1234 +0 0.0879 +0 0.1422 +0 0.1356 +0 0.1108 +0 0.0628 +0 0.0779 +0 0.0581 +0 0.1673 +0 0.1242 +0 0.0706 +0 0.1772 +0 0.1259 +0 0.0795 +0 0.0787 +0 0.7414 +0 0.2530 +0 0.1238 +0 0.2352 +0 0.1119 +0 0.2040 +0 0.0558 +0 0.0887 +0 0.0464 +0 0.1492 +0 0.0646 +0 0.1135 +0 0.2044 +0 0.0953 +0 0.0516 +0 0.0622 +0 0.0616 +0 0.0647 +0 0.3559 +0 0.0738 +0 0.1467 +0 0.0971 +0 0.1409 +0 0.2066 +0 0.0563 +0 0.1424 +0 0.1561 +0 0.2302 +0 0.1130 +0 0.2392 +0 0.2585 +0 0.1294 +0 0.2653 +0 0.0606 +0 0.0621 +0 0.1221 +0 0.1324 +0 0.1562 +0 0.0783 +0 0.0745 +0 0.0998 +0 0.1071 +0 0.0844 +0 0.0578 +0 0.1094 +0 0.0506 +0 0.0907 +0 0.0504 +0 0.1033 +0 0.0754 +0 0.0797 +0 0.0906 +0 0.0671 +0 0.1742 +0 0.0477 +0 0.0845 +0 0.0407 +0 0.1436 +0 0.1430 +0 0.1313 +0 0.0507 +0 0.1125 +0 0.0945 +0 0.0715 +0 0.1494 +0 0.0745 +0 0.0600 +0 0.0578 +0 0.0919 +0 0.0991 +0 0.0724 +0 0.0708 +0 0.0618 +0 0.2045 +0 0.6972 +0 0.0430 +0 0.0485 +0 0.0930 +0 0.0853 +0 0.0571 +0 0.1813 +0 0.0992 +0 0.0647 +0 0.1127 +0 0.2309 +0 0.1313 +0 0.0643 +0 0.0918 +0 0.0987 +0 0.0575 +0 0.1542 +0 0.0658 +0 0.0993 +0 0.0628 +0 0.6359 +0 0.0634 +0 0.1712 +0 0.1166 +0 0.0941 +0 0.1833 +0 0.5654 +0 0.1358 +0 0.0465 +0 0.0444 +0 0.1311 +0 0.1234 +0 0.1252 +0 0.2293 +0 0.1624 +0 0.0477 +0 0.0676 +0 0.0743 +0 0.1250 +0 0.0613 +0 0.6016 +0 0.1545 +0 0.0914 +0 0.1028 +0 0.3553 +0 0.0624 +0 0.1286 +0 0.0918 +0 0.2289 +0 0.6170 +0 0.0708 +0 0.1134 +0 0.0794 +0 0.0368 +0 0.2680 +0 0.1511 +0 0.1226 +0 0.1055 +0 0.1454 +0 0.0563 +0 0.3084 +0 0.1186 +0 0.0875 +0 0.1314 +0 0.0931 +0 0.0851 +0 0.1211 +0 0.0535 +0 0.1481 +0 0.0895 +0 0.1248 +0 0.1280 +0 0.2072 +0 0.0444 +0 0.0652 +0 0.0959 +0 0.1310 +0 0.7256 +0 0.1440 +0 0.2052 +0 0.5839 +1 0.8153 +0 0.3331 +0 0.0560 +0 0.0840 +0 0.0334 +0 0.1215 +0 0.0812 +0 0.0802 +0 0.0939 +0 0.1328 +0 0.0644 +0 0.1062 +0 0.1226 +0 0.0663 +0 0.1026 +0 0.0334 +0 0.0799 +0 0.1564 +0 0.1306 +0 0.1109 +0 0.0649 +0 0.0958 +0 0.0603 +0 0.0910 +0 0.1343 +0 0.1417 +0 0.2140 +0 0.2769 +0 0.0954 +0 0.2850 +0 0.1281 +0 0.0684 +0 0.0417 +0 0.1185 +0 0.1083 +0 0.1274 +0 0.1713 +0 0.1704 +0 0.0868 +0 0.0557 +0 0.0802 +0 0.1547 +0 0.1659 +0 0.1427 +0 0.0760 +0 0.0796 +0 0.1156 +0 0.0481 +0 0.1899 +0 0.1686 +0 0.0368 +0 0.1017 +0 0.0615 +0 0.0599 +0 0.0628 +0 0.1206 +0 0.0959 +0 0.1617 +0 0.3781 +0 0.7493 +0 0.1909 +0 0.1114 +0 0.1387 +0 0.1616 +0 0.0688 +0 0.0870 +0 0.0704 +0 0.0522 +0 0.1202 +0 0.0818 +0 0.0499 +0 0.0565 +0 0.0478 +0 0.0740 +0 0.0687 +0 0.0702 +0 0.0508 +0 0.2185 +0 0.1806 +0 0.2327 +0 0.0784 +0 0.1413 +0 0.2417 +0 0.2025 +0 0.2285 +0 0.2345 +1 0.7855 +0 0.1332 +0 0.0575 +0 0.1677 +0 0.1814 +0 0.1484 +0 0.0882 +0 0.0946 +0 0.1389 +0 0.1348 +0 0.0804 +0 0.0815 +0 0.0570 +0 0.0911 +0 0.1845 +0 0.1025 +0 0.1495 +0 0.0728 +0 0.1811 +0 0.0865 +0 0.1441 +0 0.0964 +0 0.0978 +0 0.1175 +0 0.0934 +0 0.1448 +0 0.0904 +0 0.0579 +0 0.1319 +0 0.0647 +0 0.1453 +0 0.3675 +0 0.0629 +0 0.0742 +0 0.0632 +0 0.2089 +0 0.0477 +0 0.0596 +0 0.0746 +0 0.0849 +0 0.1656 +0 0.0940 +0 0.0578 +0 0.1343 +0 0.1122 +0 0.1364 +0 0.0565 +0 0.1016 +0 0.2048 +0 0.3190 +0 0.2807 +0 0.2012 +1 0.9012 +0 0.0965 +0 0.1560 +0 0.4682 +0 0.1571 +0 0.0929 +0 0.1060 +0 0.0558 +0 0.1729 +0 0.0910 +0 0.1134 +0 0.2228 +0 0.0868 +0 0.4698 +0 0.0616 +0 0.1944 +0 0.0408 +0 0.1394 +0 0.0591 +1 0.8148 +0 0.1104 +0 0.0987 +0 0.1685 +0 0.1542 +0 0.1784 +0 0.2750 +0 0.0718 +0 0.0654 +0 0.1513 +0 0.1819 +0 0.0592 +0 0.5460 +0 0.1711 +0 0.2464 +0 0.0721 +0 0.0573 +0 0.1527 +0 0.0513 +0 0.1263 +0 0.0588 +0 0.1116 +0 0.1031 +0 0.1104 +0 0.1232 +0 0.1773 +0 0.0693 +0 0.2424 +0 0.0663 +0 0.0913 +0 0.0776 +0 0.2494 +0 0.0532 +0 0.1094 +0 0.1974 +0 0.1468 +0 0.1661 +0 0.0901 +0 0.2420 +0 0.1211 +0 0.2837 +0 0.0518 +0 0.1120 +0 0.3141 +0 0.0995 +0 0.0695 +0 0.0580 +0 0.1138 +0 0.1298 +0 0.2669 +0 0.2329 +0 0.1248 +0 0.1324 +0 0.0688 +0 0.2692 +0 0.1616 +0 0.0466 +0 0.2230 +0 0.0934 +0 0.1101 +0 0.1711 +0 0.1348 +0 0.2263 +0 0.0981 +0 0.1334 +0 0.1600 +0 0.0985 +0 0.0453 +0 0.5564 +0 0.0689 +0 0.2185 +0 0.1161 +0 0.0938 +0 0.4991 +0 0.2992 +0 0.0628 +0 0.0523 +0 0.1562 +0 0.0548 +0 0.1133 +0 0.0880 +0 0.1387 +0 0.0766 +0 0.1795 +0 0.0562 +0 0.3429 +0 0.1948 +0 0.0823 +0 0.3135 +0 0.1240 +0 0.0625 +0 0.1658 +0 0.0734 +0 0.0613 +0 0.0396 +0 0.1401 +0 0.0662 +0 0.0848 +0 0.1502 +0 0.1520 +0 0.0548 +0 0.2114 +0 0.0355 +0 0.0935 +0 0.2348 +0 0.6558 +0 0.0848 +0 0.0520 +0 0.0796 +0 0.1781 +0 0.4594 +0 0.2873 +0 0.0809 +0 0.2152 +0 0.1326 +0 0.0630 +0 0.1579 +0 0.0357 +0 0.0813 +0 0.0588 +0 0.1342 +0 0.6124 +0 0.1848 +0 0.1515 +0 0.0405 +0 0.5083 +0 0.1585 +0 0.0530 +0 0.0749 +0 0.2076 +0 0.1071 +0 0.1031 +0 0.2253 +0 0.1325 +0 0.0637 +0 0.0889 +0 0.1020 +0 0.0642 +0 0.2222 +0 0.2623 +0 0.0525 +0 0.0674 +0 0.0437 +0 0.0670 +0 0.1125 +0 0.0517 +0 0.1316 +0 0.0818 +0 0.1192 +0 0.0882 +0 0.2103 +0 0.1784 +0 0.1155 +0 0.1337 +0 0.3409 +0 0.2559 +0 0.0525 +0 0.6489 +0 0.2279 +0 0.6492 +0 0.0903 +0 0.1163 +0 0.0954 +1 0.8269 +0 0.0648 +0 0.0445 +0 0.0811 +0 0.1904 +0 0.0969 +0 0.0831 +0 0.1070 +0 0.0599 +0 0.1050 +0 0.1687 +0 0.0795 +0 0.1782 +0 0.0761 +0 0.6390 +0 0.0859 +0 0.1032 +0 0.0896 +0 0.3360 +1 0.7989 +0 0.1035 +0 0.1513 +0 0.3030 +0 0.0687 +0 0.1227 +0 0.1028 +0 0.0875 +0 0.0681 +0 0.1328 +0 0.0624 +0 0.1201 +0 0.0651 +0 0.0469 +0 0.3047 +0 0.1338 +0 0.1007 +0 0.1111 +0 0.0919 +0 0.1479 +0 0.0679 +0 0.0902 +0 0.1667 +0 0.0967 +1 0.8209 +0 0.0659 +0 0.2181 +0 0.3749 +0 0.0475 +0 0.2426 +0 0.0646 +0 0.0545 +0 0.2116 +0 0.1051 +0 0.1085 +1 0.8643 +0 0.2031 +0 0.0564 +0 0.0468 +0 0.0762 +0 0.0558 +0 0.1297 +0 0.0842 +0 0.2076 +0 0.1263 +0 0.2126 +0 0.1096 +0 0.2736 +0 0.0275 +0 0.1019 +0 0.0387 +0 0.1308 +0 0.0509 +0 0.1494 +0 0.1449 +0 0.1514 +0 0.0543 +0 0.1328 +0 0.2630 +0 0.0652 +0 0.2008 +0 0.0730 +0 0.0937 +0 0.0876 +0 0.0915 +0 0.0393 +0 0.3131 +0 0.0401 +0 0.2004 +0 0.0463 +0 0.0780 +0 0.6556 +0 0.1441 +0 0.0681 +0 0.0762 +0 0.1452 +0 0.5149 +0 0.0590 +0 0.1010 +0 0.2255 +0 0.0820 +0 0.1157 +0 0.0380 +0 0.1063 +0 0.0476 +0 0.0402 +0 0.1010 +0 0.0975 +0 0.0795 +0 0.1488 +0 0.0675 +0 0.1163 +0 0.0486 +0 0.6256 +0 0.1063 +0 0.3395 +0 0.1558 +0 0.2468 +0 0.1461 +0 0.1973 +0 0.0804 +0 0.1325 +0 0.2148 +0 0.1091 +0 0.1319 +0 0.0947 +0 0.2036 +0 0.1791 +0 0.0794 +0 0.0413 +0 0.0951 +0 0.0897 +0 0.2681 +0 0.1497 +1 0.7644 +0 0.1202 +0 0.1516 +0 0.1839 +0 0.1461 +0 0.0846 +0 0.0463 +0 0.0733 +0 0.0998 +0 0.0719 +0 0.0345 +0 0.2313 +0 0.1384 +0 0.1034 +0 0.1371 +0 0.0607 +0 0.1105 +0 0.1113 +0 0.2365 +0 0.2434 +0 0.0345 +0 0.1169 +0 0.1008 +0 0.1021 +0 0.2998 +0 0.0410 +0 0.1459 +0 0.1573 +0 0.0877 +0 0.1047 +0 0.1763 +0 0.1298 +0 0.2017 +0 0.0958 +0 0.0710 +0 0.2384 +0 0.2402 +0 0.3767 +0 0.0817 +0 0.1917 +0 0.1143 +0 0.7188 +0 0.2024 +0 0.1417 +0 0.0461 +0 0.0860 +0 0.1075 +0 0.0764 +0 0.0652 +0 0.0684 +0 0.0535 +0 0.2004 +0 0.0312 +0 0.0961 +0 0.0721 +0 0.1012 +0 0.1213 +0 0.0741 +0 0.2360 +0 0.1325 +0 0.0789 +0 0.0887 +0 0.0743 +0 0.0471 +0 0.1736 +0 0.0535 +0 0.0679 +0 0.1082 +0 0.0793 +0 0.6209 +0 0.0699 +0 0.3445 +0 0.0560 +0 0.0797 +0 0.1166 +0 0.3238 +0 0.0918 +0 0.7129 +0 0.0628 +0 0.0466 +0 0.1129 +0 0.0516 +0 0.1734 +0 0.1018 +0 0.0376 +0 0.0649 +0 0.1956 +0 0.0553 +0 0.1243 +0 0.1137 +0 0.1821 +0 0.1392 +0 0.0672 +0 0.1505 +0 0.1679 +0 0.0861 +0 0.0498 +0 0.0896 +0 0.0714 +0 0.0819 +0 0.1099 +0 0.1859 +0 0.1235 +0 0.0416 +0 0.1988 +0 0.1094 +0 0.0956 +0 0.1168 +0 0.0514 +0 0.0872 +0 0.0600 +0 0.0521 +0 0.0713 +0 0.0600 +0 0.1906 +0 0.1025 +0 0.2505 +0 0.1667 +0 0.0477 +0 0.0613 +0 0.1350 +0 0.3470 +0 0.0725 +0 0.0431 +0 0.1405 +0 0.1226 +0 0.0633 +0 0.0933 +0 0.1274 +0 0.0895 +0 0.0853 +0 0.1304 +0 0.2720 +0 0.0535 +0 0.0491 +0 0.1293 +0 0.1051 +0 0.1256 +0 0.0976 +0 0.0932 +0 0.1944 +0 0.1458 +0 0.1709 +0 0.1288 +0 0.1231 +0 0.0862 +0 0.2813 +0 0.1129 +0 0.0776 +0 0.1080 +0 0.0964 +0 0.1261 +0 0.7151 +0 0.1442 +0 0.1034 +0 0.2122 +0 0.0725 +0 0.3368 +0 0.0738 +0 0.2140 +0 0.1605 +0 0.1011 +0 0.1072 +0 0.3092 +0 0.1060 +0 0.0822 +0 0.0789 +0 0.0991 +0 0.6585 +0 0.3006 +0 0.1591 +0 0.0797 +0 0.0547 +0 0.0905 +0 0.1990 +0 0.0756 +0 0.1982 +0 0.0720 +0 0.5767 +0 0.0733 +0 0.7032 +0 0.1145 +0 0.1039 +0 0.0771 +0 0.0776 +0 0.0489 +0 0.1077 +0 0.2025 +0 0.0325 +0 0.1989 +0 0.0553 +0 0.0711 +0 0.1997 +0 0.0936 +1 0.7783 +0 0.0596 +0 0.0546 +0 0.0591 +0 0.1342 +0 0.1439 +0 0.1128 +0 0.0826 +0 0.0408 +0 0.0901 +0 0.1540 +0 0.0978 +0 0.0751 +0 0.1565 +0 0.1301 +0 0.1384 +0 0.1862 +0 0.1399 +0 0.0979 +0 0.0894 +0 0.1163 +0 0.0514 +0 0.2927 +0 0.0789 +0 0.1297 +0 0.1138 +0 0.5597 +0 0.3285 +0 0.0747 +0 0.0653 +0 0.1349 +0 0.0989 +0 0.0488 +0 0.0615 +0 0.0997 +0 0.0543 +0 0.1022 +0 0.0910 +0 0.0797 +0 0.1605 +0 0.1336 +0 0.0587 +0 0.1136 +0 0.0971 +0 0.0318 +0 0.1171 +0 0.2582 +0 0.0676 +0 0.0557 +0 0.5324 +0 0.0770 +0 0.0804 +0 0.1097 +0 0.4383 +0 0.1078 +0 0.0654 +0 0.1462 +0 0.0524 +0 0.3571 +0 0.1049 +0 0.4296 +0 0.6418 +0 0.0610 +0 0.0548 +0 0.1602 +0 0.6026 +0 0.0944 +0 0.0557 +0 0.0949 +0 0.2061 +0 0.0510 +0 0.2619 +0 0.0531 +0 0.2016 +0 0.1406 +0 0.0587 +0 0.1079 +0 0.0909 +0 0.1608 +0 0.0707 +0 0.0826 +1 0.7642 +0 0.1275 +0 0.1621 +0 0.3365 +0 0.1556 +0 0.0581 +0 0.2040 +0 0.0427 +0 0.0807 +0 0.1934 +0 0.0715 +0 0.3059 +0 0.4142 +1 0.8127 +0 0.0573 +0 0.0431 +0 0.0883 +0 0.2599 +0 0.3024 +0 0.1831 +0 0.0885 +0 0.1383 +0 0.5011 +0 0.1434 +0 0.1152 +0 0.0425 +0 0.0609 +0 0.0909 +0 0.1629 +0 0.1039 +0 0.0551 +0 0.1189 +0 0.1003 +0 0.0515 +0 0.1033 +0 0.1217 +0 0.0778 +0 0.0695 +0 0.0904 +0 0.1773 +0 0.3539 +0 0.1029 +0 0.0570 +0 0.0844 +0 0.3449 +0 0.0978 +0 0.1097 +0 0.0906 +0 0.0621 +0 0.0980 +0 0.1259 +0 0.0370 +0 0.1525 +0 0.1700 +0 0.2045 +0 0.0540 +0 0.0503 +0 0.1003 +0 0.3868 +0 0.0420 +0 0.2750 +0 0.0703 +0 0.0825 +0 0.1667 +0 0.1153 +0 0.0984 +0 0.1639 +0 0.0532 +0 0.1462 +1 0.8588 +0 0.1537 +0 0.1648 +0 0.0692 +0 0.1524 +0 0.1523 +0 0.0926 +0 0.1030 +0 0.1440 +0 0.0799 +0 0.0796 +0 0.0716 +0 0.1001 +0 0.1975 +0 0.0468 +0 0.0848 +0 0.0664 +0 0.1576 +0 0.2690 +0 0.0581 +0 0.0373 +0 0.1043 +0 0.5851 +0 0.3459 +0 0.1489 +0 0.2177 +0 0.1469 +0 0.0560 +0 0.0758 +0 0.0788 +0 0.1210 +0 0.1677 +0 0.0827 +0 0.1937 +0 0.0587 +0 0.0855 +0 0.1183 +0 0.2380 +0 0.0470 +0 0.1060 +0 0.2204 +0 0.1404 +0 0.0392 +0 0.0859 +0 0.0551 +0 0.1179 +0 0.1858 +0 0.1498 +0 0.0956 +0 0.0904 +0 0.1340 +0 0.0816 +0 0.0814 +0 0.3396 +0 0.1838 +0 0.1490 +0 0.1735 +0 0.0974 +0 0.2102 +0 0.0370 +0 0.1432 +1 0.7890 +0 0.0670 +0 0.0657 +0 0.0889 +0 0.1752 +0 0.0665 +0 0.1310 +0 0.2386 +0 0.1032 +0 0.0635 +0 0.1995 +0 0.0512 +0 0.1213 +0 0.1459 +0 0.1680 +0 0.1694 +0 0.0880 +0 0.0964 +0 0.0677 +0 0.0711 +0 0.0610 +0 0.1130 +0 0.1027 +0 0.0697 +0 0.2270 +0 0.1003 +0 0.1202 +0 0.1376 +0 0.0873 +0 0.0840 +0 0.1053 +0 0.0618 +0 0.1032 +0 0.0635 +0 0.1663 +0 0.2451 +0 0.0298 +0 0.2688 +0 0.1662 +0 0.1773 +0 0.3098 +0 0.1149 +0 0.0483 +0 0.0476 +0 0.0850 +0 0.5375 +0 0.0590 +0 0.0810 +0 0.0420 +0 0.1463 +0 0.0724 +0 0.1763 +0 0.1419 +0 0.0880 +0 0.2431 +0 0.0798 +0 0.1058 +0 0.0937 +0 0.2021 +0 0.0646 +0 0.1819 +0 0.0752 +0 0.3388 +0 0.0900 +0 0.1452 +0 0.1049 +0 0.1109 +0 0.2299 +0 0.2084 +0 0.4166 +0 0.1902 +0 0.0707 +1 0.8449 +1 0.8564 +0 0.1563 +0 0.0815 +0 0.3001 +0 0.0584 +0 0.1571 +0 0.0710 +0 0.1668 +0 0.1223 +0 0.0868 +0 0.1906 +0 0.2173 +0 0.2352 +0 0.0731 +0 0.0861 +0 0.1149 +0 0.1204 +0 0.0855 +0 0.1897 +1 0.8462 +0 0.1706 +0 0.2742 +0 0.0382 +0 0.0822 +0 0.0318 +0 0.6990 +0 0.2467 +0 0.1624 +0 0.0694 +0 0.2282 +0 0.2508 +0 0.1339 +0 0.1935 +0 0.0593 +0 0.1821 +0 0.1348 +0 0.1707 +0 0.1612 +0 0.2113 +0 0.0894 +0 0.1183 +0 0.1486 +0 0.1051 +0 0.1146 +0 0.3719 +0 0.2174 +0 0.1535 +0 0.0443 +0 0.0711 +0 0.2270 +0 0.1220 +0 0.0994 +0 0.1552 +0 0.1372 +0 0.0971 +0 0.0525 +0 0.1084 +0 0.1599 +0 0.0413 +0 0.0823 +0 0.0928 +0 0.1118 +0 0.1835 +0 0.0847 +0 0.7077 +0 0.1041 +0 0.1477 +0 0.0850 +0 0.1520 +0 0.0910 +0 0.0691 +0 0.0852 +0 0.0484 +0 0.2260 +0 0.1081 +0 0.1004 +0 0.0935 +0 0.0473 +0 0.0612 +0 0.0493 +0 0.4480 +0 0.0606 +0 0.0811 +0 0.0928 +1 0.7737 +0 0.0633 +0 0.0520 +0 0.3853 +0 0.1267 +0 0.0471 +0 0.0694 +0 0.2000 +0 0.0781 +0 0.0652 +0 0.0622 +0 0.1010 +0 0.2435 +0 0.0342 +0 0.0731 +0 0.1295 +0 0.2832 +0 0.0558 +0 0.7456 +0 0.0699 +0 0.2265 +0 0.0936 +0 0.0935 +0 0.1917 +0 0.2488 +0 0.0299 +0 0.0446 +0 0.0690 +0 0.0702 +0 0.2341 +0 0.1576 +0 0.0730 +0 0.0446 +0 0.0998 +0 0.2933 +0 0.1895 +0 0.0617 +0 0.1389 +0 0.1426 +0 0.0925 +0 0.2551 +0 0.0712 +0 0.0883 +0 0.1093 +0 0.0696 +0 0.1397 +0 0.0561 +0 0.2444 +0 0.1285 +0 0.0928 +0 0.1309 +0 0.0978 +0 0.1126 +0 0.1454 +0 0.1601 +0 0.0572 +0 0.0667 +0 0.0848 +0 0.0922 +0 0.1193 +0 0.0852 +0 0.1244 +1 0.7624 +0 0.2400 +0 0.1670 +0 0.1857 +0 0.1421 +0 0.0741 +0 0.0772 +0 0.1975 +0 0.1031 +0 0.0495 +0 0.1943 +0 0.2451 +0 0.0630 +0 0.1321 +0 0.0651 +0 0.0949 +0 0.0906 +0 0.0619 +0 0.0597 +0 0.0566 +0 0.0525 +0 0.1185 +0 0.0483 +0 0.2213 +0 0.0661 +0 0.2004 +0 0.0942 +0 0.0869 +0 0.0571 +0 0.0881 +0 0.0861 +0 0.1174 +0 0.1697 +0 0.1544 +0 0.1075 +0 0.2031 +0 0.0929 +0 0.5753 +0 0.1158 +0 0.1594 +0 0.1498 +0 0.0946 +0 0.2096 +0 0.0901 +0 0.0805 +0 0.0755 +0 0.2182 +0 0.0714 +0 0.0807 +0 0.0868 +0 0.0592 +0 0.1026 +0 0.1735 +0 0.0529 +0 0.0627 +0 0.1564 +0 0.0790 +0 0.0786 +0 0.0880 +0 0.0704 +0 0.1546 +0 0.1324 +0 0.2241 +0 0.0594 +0 0.0564 +1 0.7830 +0 0.1116 +0 0.1488 +0 0.0933 +0 0.6495 +0 0.1674 +0 0.0718 +0 0.1441 +0 0.1129 +0 0.0944 +0 0.0965 +0 0.0849 +0 0.1075 +0 0.1738 +0 0.1354 +0 0.2563 +0 0.0551 +0 0.2448 +0 0.1351 +0 0.0726 +0 0.0480 +0 0.0822 +0 0.1278 +0 0.0787 +0 0.0572 +0 0.1781 +0 0.1205 +0 0.0973 +0 0.2289 +0 0.1128 +0 0.1039 +0 0.2039 +0 0.3449 +0 0.2355 +0 0.5673 +0 0.0502 +0 0.1045 +0 0.1185 +0 0.0915 +0 0.1136 +0 0.0978 +0 0.0474 +0 0.0449 +0 0.0555 +0 0.0914 +0 0.1621 +0 0.1023 +0 0.0898 +0 0.1598 +0 0.3248 +0 0.3559 +0 0.1187 +0 0.0465 +0 0.0624 +0 0.0741 +0 0.0767 +0 0.2221 +0 0.1249 +0 0.2025 +0 0.1029 +0 0.1294 +0 0.2290 +0 0.1927 +0 0.5732 +0 0.1166 +0 0.1085 +0 0.0804 +0 0.4592 +0 0.1375 +0 0.1163 +0 0.0520 +0 0.2426 +0 0.1386 +0 0.0835 +0 0.2688 +0 0.6492 +0 0.0529 +0 0.1937 +0 0.2287 +0 0.1000 +0 0.3533 +0 0.1262 +0 0.0483 +0 0.1269 +0 0.0612 +0 0.0716 +0 0.1464 +0 0.1335 +0 0.1060 +0 0.0641 +0 0.1188 +0 0.0870 +0 0.0819 +0 0.0914 +0 0.1124 +0 0.0597 +0 0.1323 +0 0.0890 +0 0.0594 +0 0.1254 +0 0.2044 +0 0.1978 +0 0.0852 +0 0.0860 +0 0.1074 +0 0.1413 +0 0.1140 +0 0.1143 +0 0.1443 +0 0.0913 +0 0.0553 +0 0.2216 +0 0.2699 +0 0.0372 +0 0.2938 +0 0.2323 +0 0.1458 +0 0.1015 +0 0.0915 +0 0.2068 +0 0.0513 +0 0.0687 +0 0.0658 +0 0.0346 +0 0.1462 +0 0.1635 +0 0.0791 +0 0.1485 +0 0.2181 +0 0.0474 +0 0.2637 +0 0.2153 +0 0.1675 +0 0.1121 +0 0.0687 +0 0.1140 +0 0.0535 +0 0.0896 +0 0.4029 +0 0.2154 +0 0.1014 +0 0.0816 +0 0.1156 +0 0.0574 +0 0.1553 +0 0.3803 +0 0.0485 +0 0.0646 +0 0.0823 +0 0.0652 +0 0.1664 +0 0.1540 +1 0.8798 +0 0.4560 +0 0.1459 +0 0.0970 +0 0.0838 +0 0.2769 +0 0.1683 +0 0.0530 +0 0.0877 +0 0.0580 +0 0.1446 +0 0.1397 +0 0.1040 +1 0.7723 +0 0.0840 +0 0.0748 +0 0.1246 +0 0.3011 +0 0.1090 +0 0.1698 +0 0.0477 +0 0.3220 +0 0.1260 +0 0.2177 +0 0.1320 +0 0.0829 +0 0.0553 +0 0.1832 +0 0.1012 +0 0.1401 +0 0.1829 +0 0.0884 +0 0.1378 +0 0.1093 +0 0.0978 +0 0.0815 +0 0.0591 +0 0.0461 +0 0.0586 +0 0.0424 +0 0.0889 +0 0.1368 +0 0.1377 +1 0.8021 +0 0.0917 +0 0.1434 +0 0.7432 +0 0.0514 +0 0.0580 +0 0.0822 +0 0.2554 +0 0.0991 +0 0.1426 +0 0.0497 +0 0.0669 +0 0.0378 +0 0.0635 +0 0.2859 +0 0.0818 +0 0.6550 +0 0.0564 +0 0.1309 +1 0.8088 +0 0.0811 +0 0.3216 +0 0.1610 +0 0.0621 +0 0.1840 +0 0.1867 +0 0.1439 +0 0.0891 +0 0.2405 +0 0.0941 +0 0.1139 +0 0.1996 +0 0.0521 +0 0.0720 +0 0.1174 +0 0.0861 +0 0.0893 +0 0.0692 +0 0.0692 +0 0.2555 +0 0.0603 +0 0.2765 +0 0.0553 +0 0.4169 +0 0.0429 +0 0.1155 +0 0.0712 +0 0.0651 +0 0.0764 +0 0.2054 +0 0.0859 +0 0.1295 +0 0.1263 +0 0.0505 +0 0.0629 +0 0.1440 +0 0.1343 +0 0.0321 +0 0.0495 +0 0.6854 +0 0.0521 +0 0.0739 +0 0.0980 +0 0.1968 +0 0.0572 +0 0.0482 +0 0.0763 +0 0.1092 +0 0.2578 +1 0.8241 +0 0.1282 +0 0.0803 +0 0.0542 +0 0.3761 +0 0.0894 +0 0.0972 +0 0.0795 +1 0.7704 +0 0.0778 +0 0.2956 +0 0.1865 +0 0.0461 +0 0.1729 +0 0.0645 +0 0.0785 +0 0.0973 +0 0.0854 +0 0.1202 +0 0.0763 +0 0.1100 +0 0.0615 +0 0.1311 +0 0.1016 +0 0.3372 +0 0.2975 +0 0.2223 +0 0.1086 +0 0.2286 +0 0.1007 +0 0.0948 +0 0.2325 +0 0.2103 +0 0.2371 +0 0.0716 +0 0.0908 +0 0.0618 +0 0.2222 +0 0.4060 +0 0.0801 +0 0.0973 +0 0.0734 +0 0.1673 +0 0.1093 +0 0.1233 +0 0.1068 +0 0.1537 +0 0.1153 +0 0.1388 +0 0.1005 +0 0.1038 +0 0.0390 +0 0.1647 +0 0.0692 +0 0.0799 +0 0.0890 +0 0.0513 +0 0.1034 +0 0.0800 +0 0.1188 +0 0.0805 +0 0.0688 +0 0.0813 +0 0.1942 +0 0.0752 +1 0.7946 +0 0.0584 +0 0.4004 +0 0.1092 +0 0.0565 +0 0.0478 +0 0.1258 +0 0.2115 +0 0.0860 +0 0.0646 +0 0.0689 +0 0.1126 +0 0.2358 +0 0.1059 +0 0.0381 +0 0.3154 +0 0.2033 +0 0.2235 +0 0.0612 +0 0.0963 +0 0.0389 +0 0.1397 +0 0.2521 +0 0.0967 +0 0.1424 +0 0.0976 +0 0.1510 +0 0.0596 +0 0.0578 +0 0.2494 +0 0.1831 +0 0.1509 +0 0.0786 +0 0.0872 +0 0.0951 +0 0.2144 +0 0.1200 +0 0.1316 +0 0.0524 +0 0.5862 +0 0.2112 +0 0.2546 +0 0.0623 +0 0.0927 +0 0.1225 +0 0.0731 +0 0.0898 +0 0.1197 +0 0.0319 +0 0.2898 +0 0.1692 +0 0.1531 +0 0.1866 +0 0.2064 +0 0.1126 +0 0.1047 +0 0.0735 +0 0.0770 +0 0.1082 +0 0.3651 +0 0.0403 +0 0.0924 +0 0.1257 +0 0.0728 +0 0.0830 +0 0.0887 +0 0.0465 +0 0.0864 +0 0.1109 +0 0.0612 +0 0.0596 +0 0.0786 +0 0.1878 +0 0.0674 +0 0.2210 +0 0.1250 +0 0.0784 +0 0.1833 +0 0.1819 +0 0.0413 +0 0.0429 +0 0.0539 +0 0.0861 +0 0.1104 +0 0.1291 +0 0.1406 +0 0.0740 +0 0.1760 +0 0.0848 +0 0.0760 +0 0.0486 +0 0.0786 +0 0.1681 +0 0.1325 +0 0.0892 +0 0.1084 +0 0.1269 +0 0.1192 +0 0.1011 +0 0.1386 +0 0.0689 +0 0.0575 +0 0.2277 +0 0.4701 +0 0.1281 +0 0.1717 +0 0.0334 +0 0.0719 +0 0.1053 +0 0.1276 +0 0.0961 +0 0.0714 +0 0.0825 +0 0.1842 +0 0.0518 +0 0.3702 +0 0.0428 +0 0.1064 +0 0.1951 +0 0.1203 +0 0.1143 +0 0.0444 +0 0.0570 +0 0.1448 +0 0.2620 +0 0.0812 +0 0.0854 +0 0.0752 +0 0.1230 +0 0.2406 +0 0.1986 +0 0.1295 +0 0.1258 +0 0.1518 +0 0.1850 +0 0.1239 +0 0.0708 +0 0.1188 +0 0.2247 +0 0.0549 +0 0.1487 +0 0.2281 +0 0.2966 +0 0.1178 +0 0.1575 +0 0.2072 +0 0.2793 +0 0.1920 +0 0.1063 +0 0.0665 +0 0.1311 +1 0.8569 +0 0.1910 +0 0.0956 +0 0.0932 +0 0.0320 +0 0.1408 +0 0.1085 +0 0.0685 +0 0.1295 +0 0.0522 +0 0.1698 +0 0.6618 +0 0.3484 +0 0.1263 +0 0.2703 +0 0.0842 +0 0.7446 +0 0.1088 +0 0.6922 +0 0.4138 +0 0.0514 +0 0.4191 +0 0.1829 +0 0.1066 +0 0.1113 +0 0.0978 +0 0.0959 +0 0.1063 +0 0.0472 +0 0.0882 +0 0.1624 +0 0.0957 +0 0.0977 +0 0.0689 +0 0.0965 +0 0.2083 +0 0.0844 +0 0.2475 +0 0.1259 +0 0.1640 +0 0.1854 +0 0.6584 +0 0.0831 +0 0.0836 +0 0.0279 +0 0.0391 +0 0.0907 +0 0.0541 +0 0.4556 +0 0.0912 +0 0.0386 +0 0.1102 +0 0.1612 +0 0.0868 +0 0.1064 +0 0.4091 +0 0.2087 +0 0.0529 +0 0.1206 +0 0.1212 +0 0.5562 +0 0.0514 +0 0.4293 +0 0.6826 +1 0.7791 +0 0.5392 +0 0.0599 +0 0.0505 +0 0.3068 +0 0.1360 +0 0.3610 +0 0.1068 +0 0.5830 +0 0.0375 +0 0.4859 +0 0.0662 +0 0.1205 +0 0.2809 +0 0.1137 +0 0.2920 +0 0.0648 +0 0.0997 +0 0.0557 +0 0.0976 +0 0.0695 +0 0.1362 +0 0.0459 +0 0.1330 +0 0.4116 +0 0.1213 +0 0.1153 +0 0.4378 +0 0.1430 +0 0.1424 +0 0.0931 +0 0.2204 +0 0.0690 +0 0.2889 +0 0.0567 +0 0.0950 +0 0.1107 +0 0.2192 +0 0.1065 +0 0.0719 +0 0.1257 +0 0.2221 +0 0.0882 +0 0.1123 +0 0.0687 +0 0.1270 +0 0.0691 +0 0.0974 +0 0.1075 +0 0.0969 +0 0.0554 +0 0.1655 +0 0.0731 +0 0.2098 +0 0.1595 +0 0.2808 +0 0.0751 +0 0.0893 +0 0.0435 +0 0.1076 +0 0.1673 +0 0.3386 +0 0.1050 +0 0.1486 +0 0.0504 +0 0.0769 +0 0.0730 +0 0.1692 +0 0.2693 +0 0.0678 +0 0.2010 +0 0.0636 +0 0.0889 +0 0.1950 +0 0.2284 +0 0.1807 +0 0.0687 +0 0.0734 +0 0.1923 +0 0.0710 +0 0.1107 +0 0.1129 +0 0.1852 +0 0.0858 +0 0.1048 +0 0.0326 +0 0.0837 +0 0.1073 +0 0.0762 +0 0.0490 +0 0.2435 +0 0.0994 +0 0.1633 +0 0.0882 +0 0.1104 +0 0.0676 +0 0.0800 +0 0.3018 +0 0.3511 +0 0.0818 +0 0.1458 +0 0.1563 +0 0.1831 +0 0.0908 +0 0.1142 +0 0.0767 +0 0.3155 +0 0.0999 +0 0.1011 +0 0.0706 +0 0.0406 +0 0.0866 +0 0.0917 +0 0.0929 +0 0.0422 +0 0.1614 +0 0.1104 +0 0.0795 +0 0.1083 +0 0.1891 +0 0.1505 +0 0.0726 +0 0.0286 +0 0.0665 +0 0.1604 +0 0.0423 +0 0.0537 +0 0.0698 +0 0.0376 +0 0.0524 +0 0.0608 +0 0.1827 +0 0.1248 +0 0.0401 +0 0.1088 +0 0.1130 +0 0.0918 +0 0.0483 +0 0.1112 +0 0.1091 +0 0.0858 +0 0.0886 +0 0.1579 +0 0.2326 +0 0.1867 +0 0.0759 +0 0.1320 +0 0.0906 +0 0.1227 +0 0.0483 +0 0.0682 +0 0.3895 +0 0.0972 +0 0.1980 +0 0.0978 +0 0.1440 +0 0.0753 +0 0.1209 +0 0.0389 +0 0.1589 +1 0.8298 +0 0.0581 +0 0.1707 +1 0.8258 +0 0.1450 +0 0.2561 +0 0.2495 +0 0.7406 +0 0.1006 +0 0.0758 +0 0.2497 +0 0.3241 +0 0.0834 +0 0.1109 +0 0.1186 +0 0.1284 +0 0.4638 +0 0.1050 +0 0.2051 +0 0.2981 +0 0.0471 +0 0.1886 +0 0.0781 +0 0.0952 +0 0.0895 +0 0.0927 +0 0.0618 +0 0.0441 +0 0.1071 +0 0.4036 +0 0.0774 +0 0.2068 +0 0.1268 +0 0.0782 +0 0.2127 +0 0.3893 +0 0.0383 +0 0.0940 +0 0.1705 +0 0.1102 +0 0.1829 +0 0.0464 +1 0.7767 +0 0.1282 +0 0.0867 +0 0.0706 +0 0.3127 +0 0.1071 +0 0.2468 +0 0.1741 +0 0.1041 +0 0.0998 +0 0.0430 +0 0.6367 +0 0.0635 +0 0.3069 +0 0.1230 +0 0.1693 +0 0.0692 +0 0.1152 +0 0.1240 +0 0.0970 +0 0.0482 +0 0.0637 +0 0.1298 +0 0.4535 +0 0.1657 +0 0.3916 +0 0.0928 +0 0.0962 +0 0.0657 +0 0.0653 +1 0.8603 +0 0.0761 +0 0.1119 +0 0.0935 +0 0.1303 +0 0.1524 +0 0.0481 +0 0.0903 +0 0.1827 +0 0.1805 +0 0.2102 +0 0.0931 +0 0.0636 +0 0.0777 +0 0.0809 +0 0.0971 +0 0.1160 +0 0.2015 +0 0.0498 +0 0.1082 +0 0.3594 +0 0.1038 +0 0.0807 +0 0.0698 +0 0.0521 +0 0.0445 +0 0.0586 +0 0.1509 +0 0.1748 +0 0.1139 +0 0.0777 +0 0.1568 +0 0.2352 +0 0.2596 +0 0.0856 +0 0.1197 +0 0.0703 +0 0.0784 +0 0.1923 +0 0.5436 +0 0.1508 +0 0.1047 +0 0.1354 +0 0.0958 +0 0.0515 +0 0.1693 +0 0.3699 +0 0.0415 +0 0.1001 +0 0.0468 +0 0.0899 +0 0.2428 +0 0.1094 +0 0.0484 +0 0.0510 +0 0.0864 +0 0.4901 +0 0.2542 +0 0.0679 +0 0.0701 +0 0.0413 +0 0.2858 +0 0.0744 +0 0.0801 +0 0.1380 +0 0.0349 +0 0.0456 +0 0.1287 +0 0.0985 +0 0.1783 +0 0.1060 +0 0.1098 +0 0.1373 +0 0.2607 +0 0.4102 +0 0.1428 +0 0.4270 +0 0.0558 +0 0.0505 +0 0.3277 +0 0.1304 +0 0.0374 +0 0.1759 +0 0.1122 +0 0.1868 +0 0.0849 +0 0.0429 +0 0.1805 +0 0.1081 +0 0.1902 +0 0.0705 +0 0.6794 +0 0.0940 +0 0.0979 +0 0.0649 +0 0.0473 +0 0.3496 +0 0.1214 +0 0.4208 +0 0.0846 +0 0.1595 +0 0.1389 +0 0.2046 +0 0.1033 +0 0.0471 +0 0.0647 +0 0.1811 +0 0.0967 +0 0.0485 +0 0.0457 +0 0.0623 +0 0.0618 +0 0.1968 +0 0.1000 +0 0.0682 +0 0.0965 +0 0.1001 +0 0.0619 +0 0.1000 +0 0.0629 +0 0.2297 +0 0.0752 +0 0.2405 +0 0.0540 +0 0.3768 +0 0.5442 +0 0.0687 +0 0.0959 +0 0.2729 +0 0.1357 +0 0.0893 +0 0.1386 +0 0.0811 +0 0.0967 +0 0.1218 +0 0.1772 +0 0.0734 +0 0.0950 +0 0.1587 +0 0.0982 +0 0.0585 +0 0.1075 +0 0.0757 +0 0.0814 +1 0.7822 +0 0.0630 +0 0.5032 +0 0.2085 +0 0.4555 +0 0.0779 +0 0.1029 +0 0.0985 +0 0.1640 +0 0.1065 +0 0.7398 +0 0.0921 +0 0.4573 +0 0.1742 +0 0.1418 +0 0.0522 +0 0.3396 +0 0.1064 +0 0.3068 +0 0.1148 +0 0.1504 +0 0.0845 +0 0.4014 +0 0.1469 +0 0.1366 +0 0.2379 +0 0.3222 +0 0.2433 +0 0.1203 +0 0.0626 +0 0.1678 +0 0.1179 +0 0.0854 +0 0.6007 +0 0.0810 +1 0.8273 +0 0.0733 +0 0.0630 +0 0.0779 +0 0.1593 +0 0.1237 +0 0.1080 +0 0.0690 +0 0.0641 +0 0.0729 +0 0.0597 +0 0.1893 +0 0.0730 +0 0.0968 +0 0.1526 +0 0.0446 +0 0.1086 +0 0.0724 +0 0.1136 +0 0.0483 +0 0.1458 +0 0.0870 +0 0.1152 +0 0.0615 +0 0.0725 +0 0.0699 +0 0.1613 +0 0.0584 +0 0.1198 +0 0.1205 +0 0.1936 +0 0.2194 +0 0.0832 +0 0.0920 +0 0.0737 +0 0.1624 +0 0.0868 +0 0.1569 +0 0.1207 +0 0.1601 +0 0.1230 +0 0.0536 +0 0.1007 +0 0.0764 +0 0.0594 +0 0.0513 +0 0.1648 +0 0.1222 +0 0.0705 +0 0.4613 +0 0.1060 +0 0.0980 +0 0.1172 +0 0.0586 +0 0.2969 +0 0.1315 +0 0.2434 +0 0.0610 +0 0.0389 +0 0.1364 +0 0.0948 +0 0.0962 +0 0.1304 +0 0.1076 +0 0.0770 +0 0.1385 +0 0.2053 +0 0.0955 +0 0.1279 +0 0.0937 +0 0.1070 +0 0.0764 +0 0.0803 +0 0.2573 +0 0.2168 +0 0.0809 +0 0.0820 +0 0.0379 +0 0.1055 +0 0.0611 +0 0.0853 +0 0.1643 +1 0.7555 +0 0.0597 +0 0.0533 +0 0.1231 +0 0.2583 +0 0.0955 +0 0.0997 +0 0.3279 +0 0.3177 +0 0.0553 +0 0.0551 +0 0.0970 +1 0.9043 +0 0.0919 +0 0.5144 +0 0.2253 +0 0.3411 +0 0.0750 +0 0.1569 +0 0.0931 +0 0.1720 +0 0.0479 +0 0.0840 +0 0.1561 +0 0.0782 +0 0.1171 +0 0.1137 +0 0.1556 +0 0.0500 +0 0.0877 +0 0.1557 +0 0.0750 +0 0.0758 +0 0.2124 +0 0.0747 +0 0.0551 +0 0.0582 +0 0.1063 +0 0.0653 +0 0.0819 +0 0.1221 +0 0.0662 +0 0.0498 +0 0.1687 +0 0.1409 +0 0.0787 +0 0.3382 +0 0.0727 +0 0.0765 +0 0.0462 +0 0.0710 +0 0.1379 +0 0.0929 +0 0.1651 +0 0.6315 +0 0.0600 +0 0.0783 +0 0.0419 +0 0.0905 +0 0.2777 +0 0.2487 +0 0.0669 +0 0.0463 +0 0.0382 +0 0.0886 +0 0.0488 +0 0.0549 +0 0.1984 +0 0.0722 +0 0.2108 +0 0.1012 +0 0.1306 +0 0.0711 +0 0.0634 +0 0.0483 +0 0.2174 +0 0.2139 +0 0.0958 +0 0.0713 +0 0.1005 +0 0.3041 +0 0.1068 +0 0.3136 +0 0.0537 +0 0.0698 +0 0.2286 +0 0.0453 +0 0.1705 +0 0.1706 +0 0.1546 +0 0.0876 +0 0.0628 +0 0.0922 +0 0.0994 +0 0.2066 +0 0.2028 +0 0.0549 +0 0.0751 +0 0.1404 +0 0.1507 +0 0.0408 +0 0.1504 +0 0.0992 +0 0.0660 +0 0.0699 +0 0.1153 +0 0.1890 +0 0.3480 +0 0.1404 +0 0.0572 +0 0.0863 +0 0.0775 +0 0.0618 +0 0.0713 +0 0.0878 +0 0.0539 +0 0.1600 +0 0.5584 +0 0.0846 +1 0.8277 +0 0.0936 +0 0.0365 +0 0.1096 +0 0.4303 +1 0.8671 +0 0.0659 +0 0.1130 +0 0.1229 +0 0.0602 +0 0.0612 +0 0.2415 +0 0.1055 +0 0.4687 +0 0.6086 +0 0.6192 +0 0.4954 +0 0.0958 +0 0.1264 +0 0.0897 +0 0.0532 +0 0.0721 +1 0.7634 +0 0.0811 +0 0.1253 +0 0.4378 +0 0.0799 +0 0.0419 +0 0.1974 +0 0.7131 +0 0.0736 +1 0.7529 +0 0.0676 +0 0.4648 +0 0.1480 +0 0.1889 +0 0.1640 +0 0.2428 +0 0.0790 +0 0.0763 +0 0.0932 +0 0.0437 +0 0.1327 +0 0.1276 +0 0.2465 +0 0.1016 +1 0.8135 +0 0.1050 +0 0.1377 +0 0.0535 +0 0.0734 +0 0.0857 +0 0.1206 +0 0.1095 +0 0.0939 +0 0.0913 +0 0.0626 +0 0.0971 +0 0.0574 +0 0.0851 +0 0.3310 +0 0.2637 +0 0.1832 +0 0.1107 +0 0.0774 +0 0.1532 +0 0.0972 +0 0.0396 +0 0.0963 +0 0.1255 +0 0.1016 +0 0.1913 +0 0.1544 +0 0.1473 +0 0.0599 +0 0.0559 +0 0.1320 +0 0.1173 +0 0.0556 +0 0.0820 +0 0.1001 +0 0.1247 +0 0.1485 +0 0.0584 +0 0.1614 +0 0.1343 +0 0.1242 +0 0.0648 +0 0.0707 +0 0.2487 +0 0.0561 +0 0.1299 +0 0.2139 +0 0.1314 +0 0.1253 +0 0.0609 +0 0.1619 +0 0.1067 +0 0.1008 +0 0.1404 +0 0.1139 +0 0.0700 +0 0.0644 +0 0.0643 +0 0.0693 +0 0.1003 +0 0.0585 +0 0.0440 +0 0.0831 +0 0.4820 +0 0.2040 +0 0.1021 +0 0.2161 +0 0.0711 +0 0.2001 +0 0.1339 +0 0.0731 +0 0.1080 +0 0.5803 +0 0.1063 +0 0.1269 +0 0.0952 +0 0.0845 +0 0.1540 +0 0.0943 +0 0.3739 +0 0.2279 +0 0.0998 +0 0.0757 +0 0.1761 +0 0.1329 +0 0.0947 +0 0.1696 +0 0.0660 +0 0.2836 +0 0.0619 +0 0.1535 +0 0.3498 +0 0.1064 +0 0.0345 +0 0.0703 +0 0.0701 +0 0.3053 +0 0.1410 +0 0.2019 +0 0.0462 +0 0.0328 +0 0.0668 +1 0.7986 +0 0.1036 +0 0.1029 +0 0.1288 +0 0.2767 +0 0.3209 +0 0.1786 +0 0.0937 +0 0.1993 +0 0.1043 +0 0.0921 +0 0.0955 +0 0.0941 +0 0.0686 +0 0.1756 +0 0.1198 +0 0.0763 +0 0.0550 +0 0.1067 +0 0.1127 +0 0.0769 +0 0.0905 +0 0.1383 +0 0.0464 +0 0.1301 +0 0.1783 +0 0.0754 +0 0.0804 +0 0.1015 +0 0.0722 +0 0.0856 +0 0.1271 +0 0.1840 +0 0.1760 +0 0.2000 +0 0.1448 +0 0.1007 +0 0.1284 +0 0.2007 +0 0.0962 +0 0.1287 +0 0.2130 +0 0.0760 +1 0.8273 +0 0.0821 +0 0.1228 +0 0.0978 +0 0.1266 +0 0.1025 +0 0.1437 +0 0.1580 +0 0.3459 +0 0.1366 +0 0.1719 +0 0.0629 +0 0.0535 +0 0.1365 +0 0.0558 +0 0.0493 +0 0.1343 +0 0.1854 +0 0.2508 +0 0.1173 +0 0.0954 +0 0.0624 +0 0.1172 +0 0.1012 +0 0.1188 +0 0.1516 +0 0.0386 +0 0.4455 +0 0.0948 +0 0.1498 +0 0.7036 +0 0.1734 +0 0.1370 +0 0.1519 +0 0.4535 +0 0.1173 +0 0.1421 +0 0.1755 +0 0.1023 +0 0.0392 +0 0.1754 +0 0.2648 +0 0.0908 +0 0.1075 +0 0.6412 +0 0.0844 +0 0.1009 +0 0.1609 +0 0.0616 +0 0.0615 +0 0.0984 +0 0.0855 +0 0.1559 +0 0.1459 +0 0.0694 +0 0.1280 +0 0.0676 +0 0.0358 +0 0.7065 +0 0.1174 +0 0.2958 +0 0.1683 +0 0.0690 +0 0.1280 +0 0.0469 +0 0.0942 +0 0.1371 +0 0.0995 +0 0.0992 +0 0.0786 +0 0.0505 +0 0.1357 +0 0.0866 +0 0.3174 +0 0.1989 +0 0.0417 +0 0.1093 +0 0.1561 +0 0.1977 +0 0.0842 +0 0.2594 +0 0.0520 +0 0.0844 +0 0.1074 +0 0.2082 +0 0.0800 +0 0.1317 +0 0.2947 +0 0.2633 +0 0.1250 +0 0.0983 +0 0.0443 +0 0.1134 +0 0.0830 +0 0.1171 +0 0.1415 +0 0.1915 +0 0.1651 +0 0.0813 +0 0.1544 +0 0.0967 +0 0.0869 +0 0.1243 +0 0.1212 +0 0.0929 +0 0.0594 +0 0.1900 +0 0.1495 +0 0.2347 +0 0.1569 +0 0.1395 +0 0.4637 +0 0.0913 +0 0.0820 +0 0.1409 +0 0.0562 +0 0.0542 +0 0.1981 +0 0.1808 +0 0.1376 +0 0.0685 +0 0.0710 +0 0.1288 +0 0.0849 +0 0.1497 +0 0.0908 +0 0.1779 +0 0.0747 +0 0.1870 +0 0.2420 +0 0.0640 +0 0.1286 +0 0.1317 +0 0.0856 +0 0.0556 +0 0.1883 +0 0.1773 +1 0.8471 +0 0.1846 +0 0.1068 +0 0.2080 +0 0.1593 +0 0.2829 +0 0.0810 +0 0.1565 +0 0.0796 +0 0.2067 +0 0.0724 +0 0.0983 +0 0.0712 +0 0.0859 +0 0.0641 +0 0.2094 +0 0.0875 +0 0.0671 +0 0.0699 +0 0.1183 +0 0.0900 +0 0.2134 +0 0.1394 +0 0.1165 +0 0.0702 +0 0.0571 +0 0.0868 +0 0.1185 +0 0.2377 +0 0.0378 +0 0.1157 +0 0.0429 +0 0.0312 +0 0.0998 +0 0.0652 +0 0.0834 +0 0.1507 +0 0.0527 +0 0.0452 +0 0.0711 +0 0.1837 +0 0.2002 +0 0.2855 +1 0.8430 +0 0.0542 +0 0.0341 +0 0.1443 +0 0.0683 +0 0.0936 +0 0.5557 +0 0.0424 +0 0.7122 +0 0.0671 +0 0.0587 +0 0.0829 +0 0.2912 +0 0.2097 +0 0.0896 +0 0.0770 +0 0.2101 +0 0.0767 +0 0.0479 +0 0.1253 +0 0.0552 +0 0.2213 +0 0.1717 +0 0.1274 +0 0.1521 +0 0.0691 +0 0.0969 +0 0.0836 +0 0.1949 +0 0.1217 +0 0.0330 +0 0.1164 +0 0.1160 +0 0.2156 +0 0.1618 +0 0.0490 +0 0.0699 +0 0.2610 +0 0.2380 +0 0.5904 +0 0.1524 +0 0.0803 +0 0.0969 +0 0.0629 +0 0.2071 +0 0.1193 +0 0.1848 +0 0.1555 +0 0.0430 +0 0.1666 +0 0.1370 +0 0.1480 +0 0.1253 +0 0.0702 +0 0.0853 +0 0.1051 +0 0.2296 +0 0.0901 +0 0.2281 +1 0.7815 +0 0.2970 +0 0.1702 +0 0.1409 +0 0.1706 +0 0.2330 +0 0.0713 +0 0.1070 +0 0.0931 +0 0.0955 +0 0.0884 +0 0.0590 +0 0.1283 +0 0.4658 +0 0.1391 +1 0.8050 +0 0.1210 +0 0.0748 +0 0.3685 +0 0.0551 +0 0.1444 +0 0.4295 +0 0.2931 +0 0.2851 +0 0.4491 +0 0.0998 +0 0.1471 +0 0.1597 +0 0.2827 +0 0.0306 +0 0.1807 +0 0.0843 +0 0.1334 +0 0.0589 +0 0.0483 +0 0.0930 +0 0.0823 +0 0.0661 +0 0.1973 +0 0.0691 +0 0.0625 +0 0.1360 +0 0.4060 +0 0.2193 +0 0.1049 +0 0.1543 +0 0.4251 +0 0.2605 +0 0.0741 +0 0.1088 +0 0.3472 +0 0.0714 +0 0.0985 +0 0.1303 +0 0.1371 +0 0.0964 +1 0.8517 +0 0.0994 +0 0.0748 +0 0.1425 +0 0.1864 +0 0.1448 +0 0.0762 +0 0.0911 +0 0.0737 +0 0.4271 +0 0.1666 +0 0.1217 +0 0.0958 +0 0.5260 +0 0.2161 +0 0.3882 +0 0.0795 +0 0.1118 +0 0.0430 +0 0.7210 +0 0.0850 +0 0.7202 +0 0.0993 +0 0.1217 +0 0.1165 +0 0.2560 +0 0.0434 +0 0.0764 +0 0.1012 +0 0.1075 +0 0.1299 +0 0.2457 +1 0.8106 +0 0.0979 +0 0.0710 +0 0.1260 +0 0.0623 +0 0.6177 +0 0.0648 +0 0.2739 +0 0.0883 +0 0.0866 +0 0.1255 +0 0.2019 +0 0.1333 +0 0.0898 +0 0.0481 +0 0.2127 +0 0.0943 +0 0.0974 +0 0.0992 +0 0.0705 +0 0.1843 +0 0.1810 +0 0.0723 +0 0.0549 +0 0.0420 +0 0.0751 +0 0.0942 +0 0.0986 +0 0.3375 +0 0.0651 +1 0.7803 +0 0.0321 +0 0.1449 +0 0.0880 +0 0.2400 +0 0.1614 +0 0.0611 +0 0.1547 +1 0.8649 +0 0.0491 +0 0.5532 +0 0.1323 +0 0.2782 +0 0.1132 +0 0.1924 +0 0.0595 +0 0.2565 +0 0.0523 +0 0.6263 +0 0.1119 +0 0.1438 +0 0.0391 +0 0.0571 +0 0.0524 +0 0.0674 +0 0.1055 +0 0.1029 +0 0.1119 +0 0.0776 +0 0.0658 +0 0.1772 +0 0.1718 +0 0.0501 +0 0.7352 +0 0.1417 +0 0.0715 +0 0.0721 +0 0.0716 +0 0.0919 +0 0.0669 +0 0.2085 +0 0.5305 +0 0.0531 +0 0.2173 +0 0.1632 +0 0.1754 +0 0.0516 +0 0.0495 +0 0.0411 +0 0.1018 +0 0.2616 +0 0.1108 +0 0.2622 +0 0.1342 +0 0.1766 +0 0.2210 +0 0.0579 +0 0.0722 +0 0.4246 +0 0.0715 +0 0.2147 +0 0.3639 +0 0.2545 +0 0.0806 +0 0.0577 +0 0.0699 +0 0.1138 +0 0.0549 +0 0.0873 +0 0.1563 +0 0.0997 +0 0.0547 +0 0.0645 +0 0.0769 +0 0.3780 +0 0.0786 +0 0.0696 +0 0.3363 +0 0.0674 +0 0.1098 +0 0.0704 +0 0.0718 +0 0.1725 +0 0.0876 +0 0.1109 +0 0.1277 +0 0.6990 +0 0.1102 +0 0.1168 +0 0.2387 +0 0.0572 +0 0.0982 +0 0.0939 +0 0.0778 +0 0.0990 +0 0.0582 +0 0.3700 +0 0.1353 +0 0.2059 +0 0.7046 +0 0.2521 +0 0.0969 +0 0.0931 +0 0.2759 +0 0.6345 +0 0.0560 +0 0.1237 +0 0.1209 +0 0.0934 +0 0.0637 +0 0.4999 +0 0.1070 +1 0.8159 +0 0.0880 +0 0.1332 +0 0.0916 +0 0.0711 +0 0.0361 +0 0.4317 +0 0.1075 +0 0.0798 +0 0.0668 +0 0.0595 +0 0.1762 +0 0.0570 +0 0.0610 +0 0.0783 +0 0.2121 +0 0.1472 +0 0.0589 +0 0.1383 +0 0.1070 +0 0.1468 +0 0.1907 +0 0.1789 +0 0.0500 +0 0.0812 +0 0.1727 +0 0.1041 +0 0.0719 +0 0.2593 +0 0.2793 +0 0.1564 +0 0.1047 +0 0.0955 +0 0.0730 +0 0.1360 +0 0.2945 +0 0.4775 +0 0.1093 +0 0.1808 +0 0.0522 +0 0.0768 +0 0.1253 +0 0.2022 +0 0.0482 +0 0.2155 +0 0.1419 +0 0.1556 +0 0.0803 +0 0.1358 +0 0.4148 +0 0.0557 +1 0.8101 +0 0.0938 +0 0.1157 +0 0.0884 +0 0.0861 +0 0.0978 +0 0.1040 +0 0.0583 +0 0.0446 +0 0.0541 +0 0.0655 +0 0.0539 +0 0.0713 +0 0.0526 +0 0.1096 +0 0.1539 +0 0.1079 +0 0.0861 +0 0.1048 +0 0.0537 +0 0.0672 +0 0.3270 +0 0.1522 +0 0.0418 +0 0.1334 +0 0.0646 +0 0.2758 +0 0.1614 +0 0.1155 +0 0.1908 +0 0.3637 +0 0.0775 +0 0.0954 +0 0.1133 +0 0.0333 +0 0.1077 +0 0.0874 +0 0.3188 +1 0.8244 +0 0.2990 +0 0.0640 +0 0.1803 +0 0.0645 +0 0.2829 +0 0.1339 +0 0.1418 +0 0.0958 +0 0.1192 +0 0.2364 +0 0.0799 +0 0.0624 +0 0.4892 +0 0.1194 +1 0.7669 +0 0.1159 +0 0.1722 +0 0.0898 +0 0.1492 +0 0.1201 +0 0.4579 +0 0.0332 +0 0.1743 +0 0.1697 +0 0.0460 +0 0.0966 +0 0.1195 +0 0.0565 +0 0.0623 +0 0.0408 +0 0.1858 +0 0.1028 +0 0.1051 +0 0.2259 +0 0.1606 +0 0.2746 +0 0.3020 +1 0.8002 +0 0.0566 +0 0.0887 +0 0.1034 +0 0.0463 +0 0.2306 +0 0.0381 +0 0.0845 +0 0.1887 +0 0.0839 +0 0.0761 +0 0.0623 +0 0.2882 +0 0.3710 +0 0.0762 +0 0.3640 +0 0.1926 +0 0.1882 +0 0.2328 +0 0.0474 +0 0.0680 +0 0.0422 +0 0.2394 +0 0.1059 +0 0.0549 +0 0.0472 +0 0.0428 +0 0.0437 +0 0.0851 +0 0.1329 +0 0.0498 +0 0.0549 +0 0.0619 +0 0.0650 +0 0.1291 +0 0.1390 +0 0.1710 +0 0.0873 +0 0.0520 +0 0.0596 +0 0.0761 +0 0.0958 +0 0.0569 +1 0.7798 +0 0.2116 +0 0.0496 +0 0.3982 +0 0.0860 +0 0.0776 +0 0.1139 +0 0.0824 +0 0.0785 +0 0.2413 +0 0.2498 +0 0.1145 +0 0.1036 +0 0.0723 +0 0.1964 +0 0.6846 +0 0.6946 +0 0.1418 +0 0.0404 +0 0.0748 +0 0.0948 +0 0.7418 +0 0.0776 +0 0.0572 +0 0.1650 +0 0.0869 +0 0.0997 +0 0.1920 +0 0.1826 +0 0.0413 +0 0.0701 +0 0.2315 +0 0.1552 +0 0.2166 +0 0.0574 +0 0.1122 +0 0.0973 +0 0.0559 +0 0.0867 +0 0.3141 +0 0.0634 +0 0.0618 +0 0.1046 +0 0.7184 +0 0.0980 +0 0.1112 +0 0.3704 +0 0.0783 +0 0.1142 +0 0.0507 +0 0.1521 +0 0.0939 +0 0.0643 +0 0.1088 +0 0.2130 +0 0.0627 +0 0.1238 +0 0.1555 +0 0.1253 +0 0.0938 +0 0.1021 +0 0.1511 +0 0.4682 +0 0.0771 +1 0.8331 +0 0.1192 +0 0.0764 +0 0.0784 +0 0.0669 +0 0.1387 +0 0.1027 +0 0.1565 +0 0.3476 +1 0.8060 +0 0.2782 +0 0.1631 +0 0.2177 +0 0.0850 +0 0.0645 +0 0.2629 +0 0.0517 +0 0.0475 +0 0.1839 +0 0.1079 +0 0.1453 +0 0.0482 +0 0.1114 +0 0.1197 +0 0.0618 +0 0.0870 +0 0.0863 +0 0.2649 +0 0.0954 +0 0.0791 +0 0.0673 +0 0.1851 +0 0.0967 +0 0.1940 +0 0.0691 +0 0.2258 +0 0.1655 +0 0.0959 +1 0.7987 +0 0.0769 +0 0.1087 +0 0.0799 +0 0.0497 +0 0.1029 +0 0.3502 +0 0.1038 +0 0.2200 +0 0.3206 +0 0.1569 +0 0.0464 +0 0.0476 +0 0.1524 +0 0.0491 +0 0.0747 +0 0.2047 +0 0.0466 +0 0.1222 +0 0.1890 +0 0.1888 +0 0.0908 +0 0.1178 +0 0.0512 +0 0.1000 +0 0.1431 +0 0.0355 +0 0.0489 +0 0.0856 +0 0.0991 +0 0.1065 +0 0.1089 +0 0.1653 +0 0.0520 +0 0.0561 +0 0.0666 +0 0.0359 +0 0.0597 +0 0.0685 +0 0.0689 +1 0.8460 +0 0.1162 +0 0.1683 +0 0.1154 +0 0.1648 +0 0.1086 +0 0.1415 +1 0.8401 +0 0.0439 +0 0.1058 +0 0.0880 +0 0.0631 +0 0.1564 +0 0.1677 +0 0.0473 +0 0.0543 +0 0.1441 +0 0.1788 +0 0.1570 +1 0.7899 +0 0.0957 +0 0.0909 +0 0.1003 +0 0.1437 +0 0.0587 +0 0.0494 +0 0.1764 +0 0.0792 +0 0.1410 +0 0.2620 +0 0.0883 +0 0.1026 +0 0.0963 +0 0.1205 +0 0.0866 +0 0.0813 +0 0.1045 +0 0.0368 +0 0.0611 +0 0.4574 +0 0.3496 +0 0.1365 +0 0.0501 +0 0.1261 +0 0.1914 +0 0.6726 +0 0.0900 +0 0.0466 +0 0.0933 +0 0.1320 +0 0.4554 +0 0.0472 +0 0.0345 +0 0.4084 +0 0.1270 +0 0.1093 +0 0.0562 +0 0.0986 +0 0.1327 +0 0.1698 +0 0.0717 +0 0.0978 +0 0.0335 +0 0.1650 +0 0.0343 +0 0.0715 +0 0.0673 +0 0.0525 +0 0.2872 +0 0.2212 +0 0.0642 +0 0.0715 +0 0.2428 +0 0.0673 +0 0.0533 +0 0.1067 +0 0.1723 +0 0.1284 +0 0.1701 +0 0.1860 +0 0.0987 +0 0.0660 +0 0.1573 +0 0.1996 +0 0.1993 +0 0.1166 +0 0.0615 +0 0.1189 +0 0.1329 +0 0.3038 +0 0.1502 +0 0.0548 +0 0.1081 +0 0.1646 +0 0.0950 +0 0.1494 +0 0.1345 +0 0.0814 +0 0.0990 +0 0.1804 +0 0.4125 +0 0.0993 +0 0.0530 +0 0.0725 +0 0.1179 +1 0.8172 +0 0.1186 +0 0.1076 +0 0.0689 +0 0.0664 +0 0.0919 +0 0.6928 +0 0.1105 +0 0.2579 +0 0.0932 +0 0.1380 +0 0.1220 +0 0.1242 +0 0.0476 +0 0.0462 +0 0.1456 +0 0.0602 +0 0.1693 +0 0.0653 +0 0.1611 +0 0.0604 +0 0.0713 +0 0.0619 +0 0.1424 +0 0.1632 +0 0.0629 +0 0.0804 +0 0.1764 +0 0.0894 +0 0.0644 +0 0.1065 +0 0.1919 +0 0.2054 +0 0.0513 +0 0.1679 +0 0.0861 +0 0.0548 +0 0.0426 +0 0.1368 +0 0.0724 +0 0.0877 +0 0.1115 +0 0.0703 +0 0.0395 +0 0.2125 +0 0.1015 +0 0.2132 +0 0.1660 +0 0.0645 +0 0.0534 +0 0.0879 +0 0.0775 +0 0.1000 +0 0.2453 +0 0.1515 +0 0.1046 +0 0.1218 +0 0.1050 +0 0.0941 +0 0.0715 +1 0.7504 +0 0.1005 +0 0.0909 +0 0.0705 +0 0.1262 +0 0.1098 +0 0.4734 +0 0.1328 +0 0.0640 +0 0.2807 +0 0.0886 +0 0.0770 +0 0.1157 +0 0.0915 +0 0.0828 +0 0.2533 +0 0.0758 +0 0.2122 +0 0.0871 +0 0.2093 +0 0.1344 +0 0.1588 +0 0.0417 +0 0.1265 +0 0.7437 +0 0.1052 +0 0.1046 +0 0.1354 +0 0.0696 +0 0.1311 +0 0.1101 +0 0.0569 +0 0.0661 +0 0.2391 +0 0.0370 +0 0.0892 +0 0.0365 +0 0.1784 +0 0.4381 +0 0.0808 +0 0.0984 +0 0.1856 +0 0.0639 +0 0.1750 +0 0.1845 +0 0.0701 +0 0.0675 +0 0.1951 +0 0.0589 +1 0.8189 +0 0.0687 +0 0.1079 +0 0.0900 +0 0.0560 +0 0.0849 +0 0.0659 +0 0.1357 +0 0.3765 +0 0.0736 +0 0.0930 +0 0.1331 +0 0.1083 +0 0.0686 +0 0.2746 +0 0.0810 +0 0.1460 +0 0.0706 +0 0.1162 +0 0.1892 +0 0.0806 +0 0.0948 +0 0.0574 +0 0.0451 +0 0.1024 +0 0.0718 +0 0.0957 +0 0.3070 +0 0.3414 +0 0.0779 +0 0.0394 +0 0.0785 +0 0.3411 +0 0.1827 +0 0.1639 +0 0.0858 +0 0.2523 +0 0.3561 +0 0.1073 +0 0.0474 +0 0.1534 +0 0.1887 +0 0.1880 +0 0.0298 +0 0.0528 +0 0.0704 +0 0.0509 +0 0.0992 +0 0.0671 +0 0.1378 +0 0.0898 +0 0.2104 +0 0.1266 +0 0.2436 +0 0.1177 +0 0.2708 +0 0.2622 +0 0.0358 +0 0.0750 +0 0.0516 +0 0.3403 +0 0.0774 +0 0.1313 +1 0.8502 +0 0.0592 +0 0.0611 +0 0.1184 +0 0.1127 +0 0.1434 +0 0.0683 +0 0.2088 +0 0.0634 +0 0.3382 +0 0.1079 +0 0.0501 +0 0.2370 +0 0.1425 +0 0.0749 +0 0.1201 +1 0.8674 +0 0.1815 +0 0.1818 +0 0.0694 +0 0.0459 +0 0.3003 +0 0.1570 +0 0.0504 +0 0.0796 +0 0.2364 +0 0.5954 +0 0.2548 +0 0.0821 +0 0.0519 +0 0.0344 +0 0.7046 +0 0.0317 +0 0.0793 +0 0.1867 +0 0.1315 +0 0.0929 +0 0.2152 +0 0.0972 +0 0.0745 +0 0.1230 +0 0.0638 +0 0.0936 +0 0.1046 +0 0.2276 +0 0.0748 +0 0.2109 +0 0.1665 +0 0.1924 +0 0.1384 +0 0.0596 +0 0.0954 +0 0.1472 +0 0.0440 +0 0.1701 +0 0.1481 +0 0.1232 +0 0.0459 +0 0.1909 +0 0.0874 +0 0.2543 +0 0.0492 +0 0.1549 +0 0.0400 +0 0.6316 +0 0.1715 +0 0.0898 +0 0.1222 +0 0.0858 +0 0.1487 +0 0.0929 +0 0.0859 +0 0.1033 +0 0.1324 +0 0.1706 +0 0.3810 +0 0.1649 +0 0.0583 +0 0.0532 +0 0.1026 +0 0.0907 +0 0.0932 +0 0.2269 +0 0.1368 +0 0.0830 +0 0.2342 +0 0.2586 +0 0.0501 +0 0.0962 +0 0.1278 +0 0.1478 +0 0.0588 +0 0.1516 +0 0.1375 +0 0.2488 +0 0.0445 +0 0.1361 +0 0.1323 +0 0.1890 +1 0.7688 +0 0.0444 +0 0.0506 +0 0.0620 +0 0.1546 +0 0.1746 +0 0.0978 +0 0.0517 +0 0.0706 +0 0.1872 +0 0.1049 +0 0.6148 +0 0.1129 +0 0.1174 +0 0.2165 +0 0.1501 +0 0.0840 +0 0.3749 +0 0.1248 +0 0.0665 +0 0.1358 +0 0.4925 +0 0.1018 +0 0.0701 +0 0.2777 +1 0.8664 +0 0.2431 +0 0.1674 +0 0.0598 +0 0.1301 +0 0.1482 +0 0.1151 +0 0.1064 +0 0.1178 +0 0.2256 +0 0.6219 +0 0.1085 +0 0.0775 +0 0.0896 +0 0.1922 +0 0.0518 +0 0.2887 +0 0.1277 +0 0.1295 +0 0.0737 +0 0.0494 +0 0.0835 +0 0.0393 +0 0.3301 +0 0.2078 +1 0.7981 +0 0.1027 +0 0.0603 +0 0.0511 +0 0.0442 +0 0.0367 +0 0.1227 +0 0.1052 +0 0.3405 +0 0.0890 +0 0.1092 +0 0.0449 +1 0.8225 +0 0.1893 +0 0.3539 +0 0.2975 +0 0.0427 +0 0.1087 +0 0.0779 +0 0.0763 +0 0.2629 +0 0.0699 +0 0.1645 +0 0.2993 +0 0.1137 +0 0.0581 +1 0.7739 +0 0.1219 +0 0.1750 +0 0.2286 +0 0.1103 +0 0.2870 +0 0.2211 +0 0.2469 +0 0.1575 +0 0.1511 +0 0.0905 +0 0.0730 +0 0.4520 +0 0.0556 +0 0.2336 +0 0.0865 +0 0.0942 +0 0.1046 +0 0.1322 +0 0.0993 +0 0.4283 +0 0.2155 +0 0.0667 +0 0.1770 +0 0.0742 +0 0.0595 +0 0.0563 +0 0.1419 +0 0.5584 +0 0.0732 +0 0.1282 +0 0.1106 +0 0.0505 +0 0.0610 +0 0.1415 +0 0.0640 +0 0.1553 +0 0.1745 +0 0.0899 +0 0.0377 +0 0.0528 +0 0.0838 +0 0.5823 +0 0.1477 +0 0.1581 +0 0.0778 +0 0.2319 +0 0.0612 +0 0.0444 +0 0.1440 +0 0.1422 +0 0.0608 +0 0.1480 +0 0.0353 +0 0.0986 +0 0.3279 +0 0.0445 +0 0.0651 +0 0.1573 +0 0.1453 +0 0.3193 +0 0.1171 +0 0.0790 +0 0.0616 +0 0.2409 +0 0.2329 +0 0.1571 +0 0.1430 +0 0.0668 +0 0.0554 +0 0.1324 +0 0.0741 +0 0.1444 +0 0.0968 +0 0.0573 +0 0.0830 +0 0.0919 +0 0.0453 +0 0.0630 +0 0.0516 +0 0.1902 +0 0.0567 +0 0.0712 +0 0.1388 +0 0.1577 +0 0.1139 +0 0.0572 +0 0.1292 +0 0.1164 +0 0.0968 +0 0.1003 +0 0.1179 +0 0.0909 +0 0.1652 +0 0.1772 +0 0.0969 +0 0.0816 +0 0.1979 +0 0.1586 +0 0.2158 +0 0.0950 +0 0.1443 +0 0.0952 +0 0.6722 +0 0.1119 +0 0.0923 +0 0.0766 +0 0.0348 +1 0.7688 +0 0.3250 +0 0.0843 +0 0.0634 +0 0.2922 +0 0.1148 +0 0.0981 +0 0.0596 +0 0.0928 +0 0.1288 +0 0.3461 +0 0.0767 +0 0.0797 +0 0.2775 +0 0.1891 +0 0.2083 +0 0.1622 +0 0.1458 +0 0.6363 +0 0.1608 +0 0.5543 +0 0.1156 +0 0.1519 +0 0.0496 +0 0.1098 +0 0.0636 +0 0.0944 +0 0.0646 +0 0.5028 +0 0.0437 +0 0.0431 +0 0.0606 +0 0.4513 +0 0.0801 +0 0.1105 +0 0.0517 +0 0.0809 +0 0.1628 +0 0.2259 +0 0.0993 +0 0.5798 +0 0.0588 +1 0.7673 +0 0.0572 +0 0.0841 +0 0.3848 +0 0.0376 +0 0.1402 +0 0.0693 +0 0.0588 +0 0.0751 +0 0.0932 +0 0.1266 +0 0.0847 +0 0.1104 +0 0.1160 +0 0.2474 +0 0.0633 +0 0.1024 +0 0.1268 +0 0.0865 +0 0.0784 +0 0.3498 +0 0.0669 +0 0.0877 +0 0.0750 +0 0.0734 +0 0.1187 +0 0.0712 +0 0.1349 +0 0.1311 +0 0.0802 +0 0.0379 +0 0.0613 +0 0.1154 +0 0.0951 +0 0.2495 +0 0.1969 +0 0.1257 +0 0.1309 +0 0.1557 +0 0.1299 +0 0.0705 +0 0.1650 +0 0.0473 +0 0.4554 +0 0.0704 +0 0.2453 +0 0.0339 +0 0.0584 +0 0.1222 +0 0.0724 +0 0.1068 +0 0.1707 +0 0.0811 +0 0.0991 +0 0.2320 +0 0.0920 +0 0.0810 +0 0.0686 +0 0.0961 +1 0.8673 +0 0.2005 +0 0.2495 +0 0.1100 +0 0.0597 +0 0.0615 +0 0.0873 +0 0.0712 +0 0.0554 +0 0.1264 +0 0.0747 +0 0.0766 +0 0.0717 +0 0.0669 +0 0.1526 +0 0.1704 +0 0.1474 +0 0.2072 +0 0.0772 +0 0.0619 +0 0.1997 +0 0.6113 +0 0.1129 +0 0.0668 +0 0.0944 +0 0.1136 +0 0.1683 +0 0.1873 +0 0.0797 +0 0.0652 +0 0.4175 +0 0.1158 +0 0.0965 +0 0.0376 +0 0.0869 +0 0.1527 +0 0.1214 +0 0.1680 +0 0.2239 +0 0.0993 +0 0.2482 +0 0.1152 +0 0.0758 +0 0.0904 +0 0.1440 +0 0.0866 +0 0.1368 +0 0.0472 +0 0.0808 +0 0.7473 +0 0.0729 +0 0.0450 +0 0.0571 +0 0.0620 +0 0.0985 +0 0.0680 +0 0.0847 +0 0.1445 +0 0.0465 +0 0.1027 +0 0.0718 +0 0.2174 +0 0.2097 +0 0.1223 +0 0.1835 +0 0.1119 +0 0.3110 +0 0.0993 +0 0.1528 +0 0.1179 +0 0.0611 +0 0.1472 +0 0.1160 +0 0.1351 +0 0.0577 +0 0.2282 +0 0.0839 +0 0.2358 +0 0.1363 +0 0.0749 +0 0.0603 +0 0.0779 +0 0.0789 +0 0.0901 +0 0.1877 +0 0.1439 +0 0.0697 +0 0.1073 +0 0.0923 +0 0.0950 +0 0.0444 +0 0.2031 +0 0.0967 +0 0.1310 +0 0.6286 +0 0.6288 +0 0.0759 +0 0.0849 +0 0.0924 +0 0.1184 +0 0.1035 +0 0.1489 +0 0.0817 +0 0.1214 +0 0.0582 +0 0.0619 +0 0.0532 +0 0.1160 +0 0.2763 +0 0.0909 +0 0.0437 +0 0.1346 +0 0.1003 +0 0.0452 +0 0.1179 +0 0.0658 +0 0.3029 +0 0.1589 +0 0.0639 +0 0.2243 +0 0.1707 +0 0.0786 +0 0.2230 +0 0.1043 +0 0.0657 +0 0.1911 +0 0.0839 +0 0.0444 +0 0.1072 +0 0.0494 +0 0.4836 +0 0.0937 +0 0.0370 +0 0.0731 +0 0.2086 +0 0.0496 +0 0.0602 +0 0.0683 +0 0.3527 +0 0.1308 +0 0.1922 +0 0.0736 +0 0.1342 +0 0.2977 +0 0.4140 +0 0.1227 +0 0.2906 +0 0.1509 +0 0.5567 +0 0.0395 +0 0.0947 +0 0.2527 +0 0.1575 +0 0.0749 +0 0.1238 +0 0.1379 +0 0.2044 +0 0.0457 +0 0.1505 +0 0.0703 +0 0.3994 +0 0.1385 +0 0.0844 +0 0.1358 +0 0.0609 +0 0.0733 +0 0.0547 +0 0.1326 +0 0.0669 +0 0.0778 +0 0.0752 +0 0.0696 +0 0.0448 +0 0.2347 +0 0.0880 +0 0.0641 +0 0.0489 +0 0.0451 +0 0.1256 +0 0.0874 +0 0.1757 +0 0.1162 +0 0.1509 +0 0.0986 +0 0.0782 +0 0.3096 +0 0.0367 +0 0.0817 +0 0.1200 +0 0.3466 +0 0.1159 +0 0.2105 +0 0.0555 +0 0.1355 +0 0.5355 +0 0.1423 +0 0.0598 +0 0.1259 +0 0.1127 +0 0.3042 +0 0.0544 +0 0.2643 +0 0.0778 +0 0.1104 +0 0.1021 +0 0.1295 +0 0.0905 +0 0.0826 +0 0.0513 +0 0.1265 +0 0.1706 +0 0.0962 +0 0.0612 +0 0.0688 +0 0.0740 +0 0.0978 +0 0.1485 +0 0.0755 +0 0.0478 +0 0.0619 +0 0.1642 +0 0.2317 +0 0.1153 +0 0.0987 +0 0.1168 +0 0.1655 +0 0.0584 +0 0.0901 +0 0.3219 +0 0.4274 +0 0.0922 +0 0.0816 +0 0.0482 +0 0.1422 +0 0.0621 +0 0.1101 +0 0.0576 +0 0.2612 +0 0.1120 +0 0.0809 +0 0.5665 +0 0.0973 +0 0.3565 +0 0.1463 +0 0.1472 +0 0.0411 +0 0.5697 +0 0.1555 +0 0.1168 +0 0.0559 +0 0.3021 +0 0.1046 +0 0.1880 +0 0.0433 +0 0.1595 +0 0.0426 +0 0.1122 +0 0.0684 +0 0.1073 +0 0.0508 +0 0.5205 +0 0.0921 +0 0.0611 +0 0.0861 +0 0.0679 +0 0.1833 +0 0.0750 +0 0.0344 +0 0.1893 +0 0.6140 +0 0.1076 +0 0.1267 +0 0.2807 +0 0.0529 +0 0.1228 +0 0.1806 +0 0.0603 +0 0.1216 +0 0.2684 +0 0.0987 +0 0.1019 +0 0.1109 +0 0.0733 +0 0.1647 +0 0.1119 +0 0.1696 +0 0.0635 +0 0.1367 +0 0.7055 +0 0.1630 +0 0.1189 +0 0.0979 +0 0.2766 +0 0.0935 +0 0.4136 +0 0.0486 +0 0.1689 +0 0.2650 +0 0.0974 +1 0.8582 +0 0.0682 +0 0.0555 +0 0.1274 +1 0.8984 +0 0.1627 +0 0.0474 +1 0.7627 +1 0.8289 +0 0.1286 +0 0.1827 +0 0.0665 +0 0.1877 +0 0.0653 +0 0.1563 +0 0.4382 +0 0.0673 +0 0.0759 +0 0.4994 +0 0.1027 +0 0.1832 +0 0.0928 +0 0.4626 +0 0.2309 +0 0.1376 +0 0.1148 +0 0.2510 +0 0.4307 +0 0.0849 +0 0.1294 +0 0.0709 +0 0.2958 +0 0.1843 +0 0.0822 +0 0.1910 +0 0.1472 +0 0.2403 +0 0.1471 +0 0.0918 +0 0.0858 +0 0.1243 +0 0.1189 +0 0.0725 +0 0.0948 +0 0.0610 +0 0.0521 +0 0.0835 +0 0.1893 +0 0.0700 +0 0.1488 +0 0.5917 +0 0.1884 +0 0.0819 +0 0.0865 +0 0.2595 +0 0.0517 +0 0.0896 +0 0.4418 +0 0.0794 +0 0.0790 +0 0.0707 +0 0.4828 +0 0.1317 +0 0.1038 +0 0.0956 +0 0.0846 +0 0.1460 +0 0.0969 +0 0.0863 +0 0.1118 +0 0.0657 +0 0.3885 +0 0.3388 +0 0.0833 +0 0.0874 +0 0.1559 +0 0.0867 +0 0.0816 +0 0.0533 +0 0.0917 +0 0.2793 +0 0.0887 +0 0.1310 +0 0.1008 +1 0.7854 +0 0.1765 +0 0.1143 +0 0.1776 +0 0.2065 +0 0.0706 +1 0.8132 +0 0.1033 +0 0.0730 +0 0.1213 +0 0.1372 +0 0.1902 +0 0.5972 +0 0.1620 +0 0.0603 +0 0.2063 +0 0.1759 +0 0.0336 +0 0.0763 +0 0.2719 +0 0.1647 +0 0.0348 +0 0.0661 +0 0.1642 +0 0.1635 +0 0.0683 +0 0.0711 +0 0.0426 +0 0.1902 +0 0.2212 +0 0.0649 +0 0.3512 +0 0.0774 +0 0.0818 +0 0.2001 +0 0.1109 +0 0.1520 +0 0.2044 +0 0.1763 +0 0.1331 +0 0.0860 +0 0.3912 +0 0.3837 +0 0.1042 +0 0.1093 +0 0.1813 +0 0.1223 +0 0.0979 +0 0.1601 +0 0.0548 +0 0.0748 +0 0.1643 +0 0.0958 +0 0.2618 +0 0.0905 +0 0.5319 +0 0.1754 +0 0.1005 +0 0.1152 +0 0.0576 +0 0.0685 +0 0.2602 +0 0.1110 +0 0.1363 +0 0.0695 +0 0.3458 +0 0.0508 +0 0.0381 +0 0.1299 +0 0.1363 +0 0.1264 +0 0.2734 +0 0.1504 +0 0.0953 +0 0.2072 +0 0.2078 +0 0.2255 +0 0.1553 +0 0.2606 +0 0.1212 +0 0.1330 +0 0.0412 +0 0.1223 +0 0.1571 +0 0.1120 +0 0.2340 +0 0.1066 +0 0.0771 +0 0.2038 +0 0.0737 +0 0.0905 +0 0.0469 +0 0.1385 +0 0.7125 +0 0.1321 +0 0.2795 +0 0.1043 +0 0.3063 +0 0.1153 +0 0.1449 +0 0.1016 +0 0.0854 +0 0.1259 +0 0.0908 +0 0.0609 +0 0.2239 +0 0.0821 +0 0.0791 +0 0.0994 +0 0.1139 +0 0.0981 +0 0.3003 +0 0.1071 +0 0.3018 +0 0.1572 +0 0.4053 +0 0.0896 +0 0.1055 +0 0.0676 +0 0.1383 +0 0.3462 +0 0.1692 +0 0.2376 +0 0.1518 +0 0.1370 +0 0.0939 +0 0.0575 +0 0.2083 +0 0.1914 +0 0.4544 +0 0.0677 +0 0.1288 +0 0.1291 +0 0.2069 +0 0.2142 +0 0.1885 +0 0.0506 +0 0.0469 +0 0.2313 +0 0.0418 +0 0.0771 +0 0.2356 +0 0.0672 +0 0.0941 +0 0.0516 +0 0.4110 +0 0.1840 +0 0.1742 +0 0.0543 +0 0.1410 +0 0.1363 +0 0.0720 +0 0.0856 +0 0.0538 +0 0.1403 +0 0.0630 +0 0.0915 +0 0.0863 +0 0.0791 +0 0.2057 +0 0.0478 +0 0.0449 +0 0.0928 +0 0.0952 +0 0.1080 +0 0.2243 +0 0.0604 +0 0.0755 +0 0.0301 +0 0.1785 +0 0.1476 +0 0.0721 +0 0.2485 +0 0.1457 +0 0.1058 +0 0.0784 +0 0.1107 +0 0.0559 +0 0.4667 +0 0.1526 +0 0.1401 +0 0.1010 +0 0.0367 +0 0.1272 +0 0.0986 +0 0.7338 +0 0.0890 +0 0.1380 +0 0.2867 +0 0.0448 +0 0.1055 +0 0.0791 +0 0.1028 +0 0.0791 +0 0.0958 +0 0.1369 +0 0.1221 +0 0.1125 +0 0.3666 +0 0.1988 +0 0.0792 +0 0.3347 +0 0.0891 +0 0.2164 +0 0.0942 +0 0.1148 +0 0.0930 +0 0.1125 +0 0.2346 +0 0.6183 +0 0.1478 +0 0.0665 +0 0.1331 +0 0.0629 +0 0.1569 +0 0.2557 +0 0.0372 +0 0.0337 +0 0.1548 +0 0.2721 +0 0.0853 +0 0.0810 +0 0.1038 +0 0.0853 +0 0.0316 +0 0.1098 +0 0.2673 +0 0.1815 +0 0.2037 +0 0.1291 +0 0.6372 +0 0.1034 +0 0.0531 +0 0.0991 +0 0.1214 +0 0.2953 +0 0.1826 +0 0.1656 +0 0.2116 +0 0.4521 +0 0.1304 +0 0.0849 +0 0.0645 +0 0.2761 +1 0.8201 +0 0.1090 +0 0.0680 +0 0.1548 +0 0.1890 +0 0.0807 +0 0.0491 +0 0.1903 +0 0.2611 +0 0.1422 +0 0.0753 +0 0.0887 +0 0.2096 +0 0.1961 +0 0.1411 +0 0.0785 +0 0.1710 +0 0.0748 +0 0.0592 +0 0.0445 +0 0.0802 +0 0.1137 +0 0.0597 +0 0.0715 +0 0.0505 +0 0.0723 +0 0.0697 +0 0.1884 +0 0.0721 +0 0.2453 +0 0.0906 +0 0.0560 +0 0.0411 +0 0.0865 +0 0.0945 +0 0.2271 +0 0.2378 +0 0.0882 +0 0.0652 +0 0.0779 +0 0.2293 +0 0.3112 +0 0.2119 +0 0.0760 +0 0.1055 +0 0.0936 +0 0.0608 +0 0.3219 +0 0.1110 +0 0.1067 +0 0.1464 +0 0.1524 +0 0.0652 +0 0.1452 +0 0.1371 +1 0.8342 +0 0.0560 +0 0.2226 +0 0.0836 +0 0.1044 +0 0.1687 +0 0.2400 +0 0.0697 +0 0.1233 +0 0.0452 +0 0.1309 +0 0.0561 +0 0.2516 +0 0.4759 +1 0.7651 +0 0.0456 +0 0.2227 +0 0.0304 +0 0.1535 +0 0.1827 +0 0.2277 +0 0.1261 +0 0.0649 +0 0.0859 +0 0.1720 +0 0.1101 +0 0.1724 +0 0.0653 +0 0.1218 +0 0.0611 +0 0.1747 +0 0.0596 +0 0.1885 +0 0.2117 +0 0.0880 +0 0.1199 +0 0.0518 +0 0.0690 +0 0.1102 +0 0.1239 +0 0.0778 +0 0.1741 +0 0.1361 +0 0.1394 +0 0.1098 +0 0.0513 +0 0.6085 +0 0.2161 +0 0.0859 +0 0.1130 +0 0.1231 +0 0.0683 +0 0.0628 +0 0.4060 +0 0.1237 +0 0.3407 +1 0.8625 +0 0.2577 +0 0.1180 +0 0.0940 +0 0.1007 +0 0.1857 +0 0.0426 +0 0.1061 +0 0.1524 +0 0.2445 +0 0.0423 +0 0.1422 +0 0.0618 +0 0.0605 +0 0.1068 +0 0.0985 +0 0.0882 +0 0.1959 +0 0.7446 +0 0.4900 +0 0.0484 +0 0.0622 +0 0.1250 +0 0.1439 +0 0.1434 +1 0.7586 +0 0.1260 +0 0.1255 +0 0.0841 +0 0.1306 +0 0.0825 +0 0.0830 +0 0.0502 +0 0.1735 +0 0.0633 +0 0.1239 +0 0.0931 +0 0.1502 +0 0.0705 +0 0.2231 +0 0.0482 +0 0.1315 +0 0.1176 +0 0.0960 +0 0.0879 +0 0.0436 +0 0.0932 +0 0.1480 +0 0.1189 +0 0.0543 +0 0.1025 +0 0.2308 +0 0.0804 +0 0.0696 +0 0.0803 +0 0.0807 +0 0.0866 +0 0.2610 +0 0.0769 +0 0.0660 +0 0.1096 +0 0.1443 +0 0.1061 +0 0.5713 +0 0.1245 +1 0.8544 +0 0.0698 +0 0.1036 +0 0.1086 +0 0.0908 +0 0.0925 +0 0.0734 +0 0.0510 +0 0.0708 +0 0.0325 +0 0.1299 +0 0.0661 +0 0.0717 +0 0.1549 +0 0.2041 +0 0.1220 +1 0.8432 +0 0.0962 +0 0.2662 +0 0.1071 +0 0.2176 +0 0.2300 +0 0.0951 +0 0.1822 +0 0.0552 +0 0.0693 +0 0.2769 +0 0.0475 +0 0.1959 +0 0.0963 +0 0.1118 +0 0.1174 +0 0.1314 +0 0.0952 +0 0.0629 +0 0.0492 +0 0.0732 +0 0.2288 +0 0.1417 +0 0.0362 +0 0.1307 +0 0.0606 +0 0.2185 +0 0.2457 +0 0.1017 +0 0.0704 +0 0.0906 +0 0.1103 +0 0.0457 +0 0.0519 +0 0.0652 +0 0.1113 +0 0.0986 +0 0.1895 +0 0.0732 +0 0.1566 +0 0.0712 +0 0.1760 +0 0.0371 +0 0.1510 +0 0.0752 +0 0.1120 +0 0.1247 +0 0.0553 +0 0.0559 +0 0.0707 +0 0.1890 +0 0.0510 +0 0.0673 +0 0.1454 +0 0.1461 +0 0.1036 +0 0.0893 +0 0.1352 +0 0.0793 +0 0.0960 +0 0.0851 +0 0.2806 +0 0.1639 +0 0.0506 +0 0.4345 +0 0.0815 +0 0.0585 +1 0.8414 +0 0.0910 +0 0.0823 +0 0.2494 +0 0.1758 +0 0.0393 +0 0.0889 +0 0.0368 +0 0.0508 +0 0.2077 +0 0.1192 +0 0.2263 +0 0.0868 +0 0.4568 +0 0.0739 +0 0.6690 +0 0.0665 +0 0.0744 +0 0.1096 +0 0.1070 +0 0.1827 +0 0.0902 +0 0.0418 +0 0.1305 +0 0.0422 +0 0.1696 +0 0.0743 +0 0.0819 +0 0.1547 +0 0.2633 +0 0.0683 +0 0.0763 +0 0.2017 +0 0.1964 +0 0.0908 +0 0.2850 +0 0.0531 +0 0.1018 +0 0.3594 +0 0.2314 +0 0.0568 +0 0.4104 +0 0.0722 +0 0.0861 +1 0.8422 +0 0.0368 +0 0.0739 +0 0.1254 +0 0.0845 +0 0.1624 +0 0.1340 +0 0.4108 +0 0.1125 +0 0.1617 +0 0.1050 +0 0.1070 +0 0.0978 +0 0.2117 +0 0.1255 +0 0.0689 +0 0.0935 +0 0.1401 +0 0.1579 +0 0.3188 +0 0.1626 +0 0.0487 +0 0.1271 +0 0.0931 +0 0.1551 +0 0.1811 +0 0.1481 +0 0.1791 +0 0.1194 +1 0.8356 +0 0.0610 +0 0.2643 +0 0.0771 +0 0.2000 +0 0.1041 +0 0.1909 +0 0.1098 +0 0.0628 +0 0.0637 +0 0.7307 +0 0.0609 +0 0.1138 +0 0.1646 +0 0.1971 +0 0.1272 +0 0.1151 +0 0.0603 +0 0.7222 +0 0.0997 +0 0.1368 +0 0.1688 +0 0.0897 +0 0.0481 +0 0.0684 +0 0.1550 +0 0.0905 +0 0.0863 +0 0.1317 +0 0.0675 +0 0.1308 +0 0.3526 +0 0.0559 +0 0.3311 +0 0.0860 +0 0.0936 +0 0.0543 +0 0.0570 +0 0.1492 +0 0.0612 +0 0.0425 +0 0.1055 +0 0.0396 +0 0.6139 +0 0.2987 +0 0.1231 +0 0.1212 +0 0.1013 +0 0.0792 +0 0.1245 +1 0.8399 +0 0.1247 +0 0.1197 +0 0.1957 +0 0.0780 +0 0.1313 +0 0.0895 +0 0.0820 +0 0.4872 +0 0.0846 +0 0.1490 +0 0.0733 +0 0.2034 +0 0.1160 +0 0.1563 +0 0.1000 +0 0.0785 +0 0.0976 +0 0.1105 +0 0.0874 +0 0.1769 +0 0.0756 +0 0.1961 +0 0.1329 +0 0.1461 +0 0.0679 +0 0.1294 +0 0.0818 +0 0.2254 +0 0.4571 +0 0.1269 +0 0.0797 +0 0.3578 +0 0.1567 +0 0.0445 +0 0.1133 +0 0.1298 +0 0.1162 +0 0.2481 +0 0.1595 +0 0.0906 +0 0.1273 +0 0.1205 +0 0.0769 +0 0.0586 +0 0.0893 +0 0.1500 +0 0.1287 +0 0.3018 +0 0.0653 +0 0.2534 +0 0.2747 +0 0.0582 +0 0.1546 +0 0.0857 +1 0.7537 +0 0.0791 +0 0.1132 +0 0.0931 +0 0.1637 +0 0.0979 +0 0.0858 +0 0.0890 +0 0.0546 +0 0.1851 +0 0.2088 +0 0.1463 +0 0.1801 +0 0.0446 +0 0.0788 +0 0.1393 +0 0.1058 +0 0.1378 +0 0.2257 +0 0.2209 +0 0.1016 +0 0.0966 +0 0.0785 +0 0.0479 +0 0.1338 +0 0.0815 +0 0.1142 +0 0.0605 +0 0.3027 +0 0.0937 +0 0.2981 +0 0.1025 +0 0.2716 +0 0.0429 +0 0.0718 +0 0.4835 +0 0.1363 +0 0.0920 +0 0.1649 +0 0.0881 +0 0.1345 +0 0.1952 +0 0.0520 +0 0.1282 +0 0.0870 +0 0.1672 +0 0.1015 +0 0.2323 +0 0.2526 +0 0.1520 +0 0.4952 +0 0.0783 +0 0.3476 +0 0.2473 +0 0.0777 +0 0.0839 +0 0.1435 +0 0.0643 +0 0.3393 +0 0.0892 +0 0.1664 +0 0.1370 +0 0.1031 +0 0.0755 +0 0.3220 +0 0.0421 +0 0.1484 +0 0.1684 +0 0.0444 +0 0.2502 +0 0.1532 +0 0.2146 +0 0.0872 +0 0.0691 +0 0.0498 +0 0.1641 +0 0.1119 +0 0.1272 +0 0.1431 +0 0.1144 +0 0.0810 +0 0.0683 +0 0.1458 +0 0.0709 +0 0.0610 +0 0.2928 +0 0.0769 +0 0.0721 +0 0.0803 +0 0.0955 +0 0.0750 +0 0.0571 +0 0.1905 +0 0.1086 +0 0.1889 +1 0.7586 +0 0.0726 +0 0.2593 +0 0.1287 +0 0.1569 +0 0.1642 +0 0.0641 +0 0.0963 +0 0.1674 +0 0.0648 +0 0.1601 +0 0.0977 +0 0.0414 +0 0.1219 +0 0.0945 +0 0.1071 +0 0.0356 +1 0.8068 +0 0.1019 +0 0.0917 +0 0.1797 +0 0.2077 +0 0.1236 +0 0.1084 +0 0.0974 +0 0.1099 +0 0.0993 +0 0.0502 +0 0.1106 +0 0.0831 +0 0.1115 +0 0.1669 +0 0.0665 +0 0.1603 +0 0.1215 +0 0.0482 +0 0.3581 +0 0.1587 +0 0.0475 +0 0.2192 +0 0.0915 +0 0.0665 +0 0.1058 +0 0.0547 +0 0.1012 +0 0.0562 +0 0.0322 +0 0.0648 +0 0.1009 +0 0.0786 +0 0.1459 +0 0.0989 +0 0.1097 +0 0.1041 +0 0.0558 +0 0.0805 +0 0.1004 +0 0.2003 +0 0.0440 +0 0.0451 +0 0.5249 +0 0.5049 +0 0.1882 +0 0.1058 +0 0.0642 +0 0.0957 +0 0.1507 +0 0.2715 +0 0.1786 +0 0.1190 +0 0.0649 +0 0.1923 +0 0.1610 +0 0.0482 +0 0.1169 +0 0.4791 +0 0.2610 +0 0.2403 +0 0.1860 +0 0.2356 +0 0.1826 +0 0.0741 +0 0.1338 +0 0.1455 +0 0.7496 +0 0.0620 +0 0.0962 +0 0.1767 +0 0.2597 +0 0.1202 +0 0.0901 +0 0.1591 +0 0.1847 +0 0.0494 +0 0.1237 +0 0.0985 +0 0.0698 +0 0.1607 +0 0.1884 +0 0.0973 +0 0.0470 +0 0.1484 +0 0.2143 +0 0.4992 +0 0.1429 +0 0.0999 +0 0.0772 +0 0.0709 +0 0.1512 +0 0.1456 +0 0.1259 +0 0.2152 +0 0.0499 +0 0.5382 +0 0.1438 +0 0.2849 +0 0.0627 +0 0.1375 +0 0.2195 +0 0.2004 +0 0.1302 +0 0.2032 +0 0.3537 +0 0.1097 +1 0.8232 +0 0.4082 +0 0.1491 +0 0.1707 +0 0.0852 +0 0.0372 +0 0.1814 +0 0.1001 +0 0.1032 +0 0.1106 +0 0.0934 +0 0.0411 +0 0.2982 +0 0.1057 +0 0.1023 +0 0.1839 +0 0.0983 +0 0.0995 +0 0.0491 +0 0.0718 +0 0.0538 +0 0.0566 +0 0.1162 +0 0.7448 +0 0.2095 +0 0.1479 +0 0.0626 +0 0.0715 +0 0.1240 +0 0.0450 +0 0.3254 +0 0.0825 +0 0.1361 +0 0.2317 +0 0.1259 +0 0.0905 +0 0.1075 +0 0.0708 +0 0.2581 +0 0.2459 +0 0.1401 +0 0.0536 +0 0.0656 +0 0.0782 +0 0.0498 +0 0.0760 +0 0.1752 +0 0.0392 +0 0.0771 +0 0.0377 +0 0.1654 +0 0.0644 +0 0.1547 +0 0.0466 +0 0.0423 +0 0.0678 +0 0.0657 +0 0.1004 +0 0.2077 +0 0.0727 +0 0.2303 +0 0.1009 +0 0.0369 +0 0.1186 +0 0.3092 +0 0.0692 +0 0.0398 +0 0.1689 +0 0.1218 +0 0.0661 +0 0.3009 +0 0.0686 +0 0.1135 +0 0.0535 +0 0.0496 +0 0.0932 +0 0.2075 +0 0.3783 +0 0.3012 +0 0.0636 +0 0.0805 +0 0.1533 +0 0.2093 +0 0.3084 +0 0.1222 +0 0.1296 +0 0.0722 +0 0.2823 +0 0.1682 +0 0.0736 +0 0.1969 +0 0.1464 +0 0.0877 +0 0.0516 +0 0.1092 +0 0.0987 +0 0.0968 +0 0.0892 +0 0.0532 +0 0.0810 +0 0.1160 +0 0.1393 +0 0.1046 +0 0.0878 +0 0.0577 +0 0.3977 +0 0.1427 +0 0.1235 +0 0.1799 +0 0.3795 +0 0.1079 +0 0.2003 +0 0.3184 +0 0.1600 +0 0.0645 +0 0.1936 +0 0.3859 +0 0.3617 +0 0.1991 +0 0.1019 +0 0.0653 +0 0.0716 +0 0.0421 +0 0.0446 +0 0.1503 +0 0.0350 +0 0.2890 +0 0.1040 +0 0.0501 +0 0.1949 +0 0.1689 +0 0.1152 +0 0.4302 +0 0.1122 +0 0.0845 +0 0.1421 +0 0.1765 +0 0.5782 +0 0.0507 +0 0.1371 +0 0.2316 +0 0.0888 +0 0.0881 +0 0.0967 +0 0.1404 +0 0.0687 +0 0.1104 +0 0.1462 +0 0.1191 +0 0.0774 +0 0.0758 +0 0.1077 +0 0.0831 +0 0.1128 +0 0.1268 +0 0.1201 +0 0.2654 +0 0.2066 +0 0.1383 +0 0.2133 +0 0.0498 +0 0.1854 +0 0.2561 +0 0.1352 +0 0.1765 +0 0.0915 +0 0.0511 +0 0.0713 +0 0.2520 +0 0.2856 +0 0.2119 +0 0.0882 +0 0.1363 +0 0.0555 +0 0.0809 +0 0.0571 +0 0.1429 +0 0.0966 +0 0.0420 +0 0.1606 +0 0.0429 +1 0.7943 +0 0.0938 +0 0.0523 +0 0.0982 +0 0.1286 +0 0.1414 +0 0.1482 +0 0.1360 +0 0.0641 +0 0.0920 +0 0.1594 +0 0.2560 +0 0.2382 +0 0.2192 +0 0.0648 +0 0.1279 +0 0.1472 +0 0.1042 +0 0.0420 +0 0.0429 +0 0.1229 +0 0.0958 +0 0.5983 +0 0.1927 +0 0.3122 +0 0.1801 +0 0.1236 +0 0.0685 +0 0.0667 +0 0.1348 +0 0.0972 +1 0.8674 +0 0.7279 +0 0.0600 +0 0.0625 +0 0.0988 +0 0.0948 +0 0.0750 +0 0.0729 +0 0.1018 +0 0.1474 +0 0.0523 +0 0.0922 +0 0.1786 +0 0.1281 +0 0.0813 +0 0.2619 +0 0.1632 +0 0.0689 +0 0.2467 +0 0.1594 +0 0.0802 +0 0.0771 +0 0.0871 +0 0.1605 +0 0.2021 +0 0.1052 +0 0.1436 +0 0.2140 +0 0.5899 +0 0.1036 +0 0.0777 +0 0.1085 +0 0.2584 +0 0.1480 +0 0.0797 +0 0.2400 +0 0.0589 +0 0.0917 +0 0.0891 +0 0.0736 +0 0.0643 +0 0.0621 +0 0.5390 +0 0.3999 +0 0.0751 +0 0.1778 +0 0.1136 +0 0.3745 +0 0.0520 +0 0.0948 +0 0.1411 +0 0.1113 +0 0.0662 +0 0.0894 +0 0.2950 +0 0.2002 +0 0.0807 +0 0.1839 +0 0.1294 +0 0.3350 +0 0.1388 +0 0.2152 +0 0.0862 +0 0.1275 +0 0.1152 +0 0.0756 +0 0.0833 +0 0.0432 +0 0.0524 +0 0.0906 +0 0.1242 +0 0.1803 +0 0.0890 +0 0.0682 +0 0.2647 +0 0.2386 +0 0.0729 +0 0.0918 +0 0.2087 +0 0.0570 +0 0.0556 +0 0.0651 +0 0.6024 +0 0.1795 +0 0.1353 +0 0.1316 +0 0.0740 +0 0.6087 +0 0.2649 +0 0.2782 +0 0.2904 +0 0.3575 +0 0.1130 +0 0.1106 +0 0.1408 +0 0.0846 +0 0.1210 +0 0.1760 +0 0.2136 +0 0.1084 +0 0.3972 +0 0.3203 +0 0.0655 +0 0.2393 +0 0.1492 +0 0.0995 +0 0.1077 +0 0.1312 +0 0.0677 +0 0.3151 +0 0.1040 +0 0.0426 +0 0.1467 +0 0.0976 +0 0.1103 +0 0.2150 +0 0.0425 +0 0.0643 +0 0.1929 +0 0.1609 +0 0.0735 +0 0.0996 +0 0.2354 +0 0.2367 +0 0.2624 +0 0.1085 +0 0.0730 +0 0.0801 +0 0.1675 +0 0.0774 +0 0.0693 +0 0.3837 +0 0.0633 +0 0.1446 +0 0.0681 +0 0.0941 +0 0.1423 +0 0.2572 +0 0.6983 +0 0.0545 +0 0.0908 +0 0.1754 +0 0.0710 +0 0.4005 +0 0.1051 +0 0.0854 +0 0.2427 +0 0.1102 +0 0.0642 +0 0.1512 +0 0.0813 +0 0.1262 +0 0.1329 +0 0.0388 +0 0.0755 +0 0.2414 +0 0.0419 +0 0.1094 +0 0.1124 +0 0.0949 +0 0.1217 +0 0.1070 +0 0.0888 +1 0.8244 +0 0.1508 +1 0.8223 +0 0.2152 +0 0.0483 +0 0.1013 +0 0.2184 +0 0.0403 +0 0.0540 +0 0.1942 +0 0.1799 +0 0.0622 +0 0.3251 +0 0.2081 +0 0.1597 +0 0.0671 +0 0.1047 +0 0.1670 +0 0.0475 +0 0.1126 +0 0.1042 +0 0.0558 +0 0.0657 +0 0.1215 +0 0.0898 +0 0.0760 +0 0.0559 +0 0.1551 +0 0.0557 +0 0.0405 +0 0.0441 +0 0.0768 +0 0.1001 +0 0.0525 +0 0.1188 +0 0.0336 +0 0.0520 +0 0.0698 +0 0.0535 +0 0.1089 +0 0.0431 +0 0.1102 +0 0.1541 +1 0.7576 +0 0.0775 +0 0.1440 +0 0.0644 +0 0.0752 +0 0.1637 +0 0.1819 +0 0.0520 +0 0.1554 +0 0.2135 +0 0.0691 +0 0.0470 +0 0.1168 +0 0.0749 +0 0.1126 +0 0.1185 +0 0.0832 +0 0.0743 +0 0.1263 +0 0.2454 +0 0.0929 +0 0.1330 +0 0.0562 +0 0.2956 +0 0.1913 +0 0.0740 +0 0.1743 +0 0.1346 +0 0.1030 +0 0.0789 +0 0.1186 +0 0.0850 +0 0.1636 +0 0.0668 +0 0.0593 +0 0.0725 +0 0.0727 +0 0.1010 +0 0.0721 +0 0.1201 +0 0.0997 +0 0.2042 +0 0.0437 +0 0.0642 +0 0.1102 +0 0.6429 +0 0.4020 +0 0.1173 +0 0.1679 +0 0.1179 +0 0.0916 +0 0.0582 +0 0.6618 +0 0.0544 +0 0.0535 +0 0.0682 +0 0.3607 +0 0.1716 +0 0.0412 +0 0.0900 +0 0.0866 +0 0.0642 +0 0.0764 +0 0.1599 +0 0.1048 +0 0.2680 +0 0.0592 +0 0.0457 +0 0.1193 +0 0.1280 +0 0.3196 +0 0.0808 +0 0.0551 +0 0.0842 +0 0.1388 +0 0.0911 +0 0.0515 +0 0.0874 +0 0.0751 +0 0.1047 +0 0.1306 +0 0.1078 +0 0.3096 +0 0.0787 +0 0.4648 +0 0.0813 +0 0.0591 +0 0.2843 +0 0.1717 +0 0.1121 +0 0.0565 +0 0.1048 +0 0.1258 +0 0.0697 +0 0.0680 +0 0.3754 +0 0.0641 +0 0.1814 +0 0.0544 +0 0.2393 +0 0.1876 +0 0.1152 +0 0.0409 +1 0.8047 +0 0.1320 +0 0.3364 +0 0.0441 +0 0.1048 +0 0.0618 +0 0.0902 +0 0.1360 +0 0.1678 +0 0.0941 +0 0.0587 +0 0.0849 +0 0.0979 +0 0.1042 +0 0.1757 +0 0.0780 +0 0.0835 +0 0.0909 +1 0.8598 +0 0.3584 +0 0.1049 +0 0.0832 +0 0.0524 +0 0.0869 +0 0.0688 +1 0.8169 +0 0.0491 +0 0.4301 +0 0.1090 +1 0.7509 +0 0.2269 +0 0.0866 +0 0.3716 +0 0.0868 +0 0.0572 +0 0.0487 +0 0.1706 +0 0.1872 +0 0.2232 +0 0.0764 +0 0.5382 +0 0.0570 +0 0.0488 +0 0.1739 +0 0.3180 +0 0.1038 +0 0.1229 +0 0.1357 +0 0.0529 +0 0.1016 +0 0.1099 +0 0.1977 +0 0.1607 +0 0.1019 +0 0.0843 +0 0.0466 +0 0.0437 +0 0.2565 +0 0.1019 +0 0.1546 +0 0.0617 +0 0.7351 +0 0.4873 +0 0.1023 +0 0.6187 +0 0.0712 +0 0.0706 +0 0.6710 +0 0.2046 +0 0.0476 +0 0.0694 +0 0.0535 +0 0.1086 +0 0.0691 +0 0.2614 +0 0.0573 +0 0.0732 +0 0.1501 +0 0.0646 +0 0.5514 +0 0.0533 +0 0.0924 +0 0.0987 +0 0.1817 +0 0.0532 +0 0.0779 +0 0.1043 +0 0.0973 +0 0.0929 +0 0.0608 +0 0.1382 +0 0.0756 +0 0.1114 +0 0.1191 +0 0.0660 +0 0.0766 +0 0.0856 +0 0.1662 +0 0.1254 +0 0.1916 +0 0.1114 +0 0.1194 +0 0.0990 +0 0.1718 +0 0.1714 +0 0.0361 +0 0.2705 +0 0.0654 +0 0.0496 +0 0.0583 +0 0.2024 +0 0.2472 +0 0.0888 +0 0.1844 +0 0.0932 +0 0.0788 +0 0.0825 +0 0.1141 +0 0.1400 +0 0.1424 +0 0.0714 +0 0.2414 +0 0.7076 +0 0.0430 +0 0.0762 +0 0.1702 +0 0.2049 +0 0.0975 +0 0.0552 +0 0.2487 +0 0.1388 +0 0.2120 +0 0.1344 +0 0.1948 +0 0.1399 +0 0.3722 +0 0.1102 +0 0.0519 +0 0.0874 +0 0.0670 +0 0.0794 +0 0.0581 +0 0.3994 +0 0.1399 +0 0.0883 +0 0.0727 +0 0.0495 +0 0.6436 +0 0.2350 +0 0.6484 +0 0.0582 +0 0.0573 +0 0.3306 +0 0.0702 +0 0.0637 +0 0.0706 +0 0.0372 +0 0.3055 +0 0.0787 +0 0.0860 +0 0.0460 +0 0.1497 +0 0.0359 +0 0.1602 +0 0.0870 +0 0.0309 +0 0.2692 +0 0.0709 +0 0.0582 +0 0.0514 +0 0.1192 +0 0.0695 +0 0.0574 +0 0.0783 +0 0.4771 +0 0.0478 +0 0.1020 +0 0.1994 +0 0.0516 +0 0.7336 +0 0.1720 +0 0.1024 +0 0.1265 +0 0.5783 +0 0.2279 +0 0.0754 +0 0.4781 +0 0.1379 +0 0.0602 +0 0.1115 +0 0.2034 +0 0.1818 +0 0.1348 +0 0.0856 +0 0.0700 +0 0.0929 +0 0.7277 +0 0.0720 +0 0.1390 +0 0.1072 +0 0.0438 +0 0.0867 +0 0.1654 +0 0.0802 +0 0.0960 +0 0.1968 +0 0.0725 +0 0.1370 +0 0.0720 +0 0.4334 +0 0.1285 +0 0.1477 +0 0.1249 +0 0.0670 +0 0.1644 +0 0.0837 +0 0.0682 +0 0.1985 +0 0.1370 +0 0.1638 +0 0.1188 +0 0.2348 +0 0.1635 +0 0.0490 +0 0.0866 +0 0.0420 +0 0.0839 +0 0.4233 +0 0.1815 +0 0.1421 +0 0.1800 +0 0.1670 +0 0.1920 +0 0.2492 +0 0.1855 +0 0.2362 +0 0.2435 +0 0.1921 +0 0.1223 +0 0.3000 +0 0.0712 +0 0.0496 +0 0.0803 +0 0.0448 +0 0.0592 +0 0.2580 +0 0.0494 +0 0.1040 +0 0.2791 +0 0.0647 +0 0.0979 +0 0.0909 +0 0.0813 +0 0.1398 +0 0.1072 +0 0.0602 +0 0.0540 +0 0.0627 +0 0.0974 +0 0.3600 +0 0.2927 +0 0.0768 +0 0.0751 +0 0.0715 +0 0.0932 +0 0.1693 +0 0.1035 +0 0.1424 +0 0.2981 +0 0.1078 +0 0.0432 +0 0.0646 +0 0.1066 +0 0.0593 +0 0.1454 +0 0.6892 +0 0.0854 +0 0.0587 +0 0.0911 +0 0.1406 +0 0.0665 +0 0.3467 +0 0.0738 +0 0.1271 +0 0.0968 +0 0.0945 +0 0.1142 +0 0.2627 +0 0.1478 +0 0.1064 +0 0.0731 +0 0.0456 +0 0.4470 +0 0.2147 +0 0.1093 +0 0.0630 +0 0.0719 +0 0.0600 +0 0.0944 +0 0.3143 +0 0.1033 +0 0.0911 +0 0.1817 +0 0.1946 +0 0.1015 +0 0.0712 +0 0.2324 +0 0.1645 +0 0.0800 +0 0.0753 +0 0.1425 +0 0.0718 +0 0.1775 +0 0.3925 +0 0.1786 +0 0.0555 +0 0.0580 +0 0.0509 +0 0.0675 +0 0.1187 +0 0.0883 +0 0.0448 +0 0.0526 +0 0.3181 +0 0.2372 +0 0.0855 +0 0.1096 +0 0.1984 +0 0.0796 +0 0.0911 +0 0.0881 +0 0.0915 +0 0.0620 +0 0.1512 +0 0.1336 +0 0.3396 +0 0.7238 +0 0.1036 +0 0.2327 +0 0.0747 +0 0.2006 +0 0.1218 +0 0.2038 +0 0.4858 +0 0.1791 +0 0.1819 +0 0.3304 +0 0.2514 +0 0.1243 +0 0.0962 +0 0.0599 +0 0.1492 +0 0.0448 +0 0.1095 +0 0.0714 +0 0.1358 +0 0.2064 +0 0.1552 +0 0.0599 +0 0.1421 +0 0.0331 +0 0.0697 +0 0.2185 +0 0.1869 +0 0.1475 +0 0.1706 +0 0.0885 +0 0.2237 +0 0.0941 +0 0.3127 +0 0.0798 +0 0.1853 +0 0.2037 +0 0.0833 +0 0.0641 +0 0.0467 +0 0.0722 +0 0.1217 +1 0.8443 +0 0.0713 +0 0.0638 +0 0.0933 +0 0.0779 +0 0.0446 +0 0.2929 +0 0.3016 +0 0.1215 +0 0.1206 +0 0.0864 +0 0.0873 +0 0.2922 +0 0.0368 +0 0.0881 +0 0.0423 +1 0.8317 +0 0.0598 +1 0.8629 +0 0.0630 +0 0.0522 +0 0.1874 +0 0.3218 +0 0.1567 +0 0.0600 +0 0.1166 +0 0.0431 +0 0.0496 +0 0.0444 +0 0.0605 +0 0.5124 +0 0.0652 +0 0.3037 +0 0.2829 +0 0.2717 +0 0.0886 +0 0.3210 +0 0.0677 +0 0.0653 +0 0.1848 +0 0.0611 +0 0.0795 +0 0.0731 +0 0.0965 +0 0.1065 +0 0.1252 +0 0.0649 +0 0.0509 +0 0.6263 +0 0.0835 +0 0.1940 +0 0.1762 +0 0.1431 +0 0.1394 +0 0.0998 +0 0.0515 +0 0.0795 +0 0.0831 +0 0.0786 +0 0.0682 +0 0.1966 +0 0.1546 +0 0.0868 +0 0.0563 +0 0.2089 +0 0.0803 +0 0.0942 +0 0.1095 +0 0.0703 +0 0.4516 +0 0.0626 +0 0.1058 +0 0.1494 +0 0.1642 +0 0.5436 +1 0.8417 +0 0.3158 +0 0.7049 +0 0.1138 +0 0.0656 +0 0.1791 +0 0.0510 +0 0.1273 +0 0.1538 +1 0.8130 +1 0.8418 +0 0.1079 +0 0.0716 +0 0.0304 +0 0.2333 +0 0.0757 +0 0.2611 +0 0.0731 +0 0.0465 +0 0.1222 +0 0.0740 +0 0.1407 +0 0.0399 +0 0.0585 +0 0.1204 +0 0.0760 +0 0.0874 +0 0.0587 +0 0.0930 +0 0.0656 +0 0.0724 +0 0.1687 +0 0.0711 +0 0.1192 +0 0.0888 +0 0.5951 +0 0.0437 +0 0.1639 +0 0.0708 +0 0.0632 +0 0.1040 +0 0.0736 +0 0.0828 +0 0.0984 +0 0.2964 +0 0.3890 +0 0.0663 +0 0.1255 +0 0.1453 +0 0.2680 +0 0.3214 +0 0.1798 +0 0.0685 +0 0.3506 +0 0.0561 +0 0.1079 +0 0.0994 +0 0.1174 +0 0.0610 +0 0.1141 +0 0.0518 +0 0.0470 +0 0.1120 +0 0.0857 +0 0.0819 +0 0.1170 +0 0.1395 +0 0.0882 +0 0.0713 +0 0.2692 +0 0.1192 +0 0.1122 +0 0.2670 +0 0.0702 +0 0.0512 +0 0.4391 +0 0.1134 +0 0.0769 +0 0.0430 +0 0.0612 +0 0.5795 +1 0.8045 +0 0.0927 +0 0.0893 +0 0.1009 +0 0.0741 +0 0.1821 +0 0.1372 +0 0.1816 +0 0.1336 +0 0.0838 +0 0.0844 +0 0.0428 +0 0.2055 +0 0.1404 +0 0.1656 +0 0.5099 +0 0.1065 +0 0.1322 +0 0.1565 +0 0.2676 +0 0.0632 +0 0.0591 +0 0.1659 +0 0.2691 +0 0.0695 +0 0.1225 +0 0.0788 +0 0.0519 +0 0.1392 +0 0.1250 +0 0.1581 +0 0.0663 +0 0.1624 +0 0.1191 +0 0.1280 +0 0.0741 +0 0.3648 +0 0.0784 +0 0.0519 +0 0.3194 +0 0.2023 +0 0.0718 +0 0.0640 +0 0.1286 +1 0.7701 +0 0.1053 +0 0.1105 +0 0.0726 +0 0.0515 +0 0.0972 +0 0.1038 +0 0.0653 +0 0.1368 +0 0.1242 +0 0.1415 +0 0.0990 +0 0.0977 +0 0.1516 +1 0.8455 +0 0.1189 +0 0.0782 +0 0.1892 +0 0.0874 +0 0.0465 +0 0.0782 +0 0.0944 +0 0.1910 +0 0.2094 +0 0.0783 +0 0.0764 +0 0.0793 +0 0.1284 +0 0.0354 +0 0.1058 +0 0.1541 +0 0.1720 +0 0.1340 +0 0.1829 +0 0.0949 +0 0.2044 +0 0.0593 +0 0.2168 +0 0.1624 +0 0.1050 +0 0.1945 +0 0.0406 +0 0.0606 +0 0.1168 +0 0.1070 +0 0.2062 +0 0.2624 +0 0.1417 +0 0.4715 +0 0.1042 +0 0.0616 +0 0.1078 +0 0.0864 +0 0.1279 +0 0.1154 +0 0.0498 +0 0.0554 +0 0.3712 +0 0.1060 +0 0.1239 +0 0.0738 +0 0.1576 +0 0.1534 +0 0.0804 +0 0.2272 +0 0.6943 +0 0.0596 +0 0.0783 +0 0.0948 +0 0.0955 +0 0.1272 +0 0.1048 +0 0.0428 +1 0.8017 +0 0.0391 +0 0.3591 +0 0.0580 +0 0.1012 +0 0.0771 +0 0.1261 +0 0.3396 +0 0.0441 +0 0.0814 +0 0.1164 +0 0.0648 +0 0.0517 +0 0.2632 +1 0.8230 +0 0.0580 +0 0.2746 +0 0.0670 +0 0.0622 +0 0.1169 +0 0.0459 +0 0.1336 +0 0.2184 +0 0.1082 +0 0.0608 +0 0.2005 +0 0.1493 +0 0.0578 +0 0.2766 +0 0.0733 +0 0.3320 +0 0.4307 +0 0.1019 +0 0.1476 +0 0.1394 +1 0.7814 +0 0.2116 +0 0.0739 +0 0.1072 +0 0.1217 +0 0.0987 +0 0.0595 +0 0.1416 +0 0.0750 +0 0.0773 +0 0.1443 +0 0.0702 +0 0.0805 +0 0.1301 +0 0.0793 +0 0.1207 +0 0.0494 +0 0.1433 +0 0.1670 +0 0.1559 +0 0.1443 +0 0.2223 +0 0.0530 +0 0.1276 +0 0.0779 +0 0.1402 +0 0.1856 +0 0.1188 +0 0.0705 +0 0.0719 +0 0.1150 +0 0.0725 +0 0.1631 +0 0.1107 +0 0.1788 +0 0.1383 +0 0.0688 +0 0.0861 +0 0.0618 +0 0.0601 +0 0.0419 +0 0.0688 +0 0.4865 +0 0.1132 +0 0.1707 +0 0.2046 +0 0.2210 +0 0.0600 +0 0.1056 +0 0.4869 +0 0.2294 +0 0.3008 +0 0.1034 +0 0.0785 +0 0.2316 +0 0.0947 +0 0.0668 +0 0.1375 +0 0.0802 +0 0.4471 +0 0.1410 +0 0.1526 +0 0.1052 +0 0.5258 +0 0.0680 +0 0.4097 +0 0.1749 +0 0.1758 +0 0.0366 +0 0.0481 +0 0.4694 +0 0.3866 +0 0.0891 +0 0.1030 +0 0.0851 +0 0.2245 +0 0.3081 +0 0.1118 +0 0.7063 +0 0.0759 +0 0.1013 +0 0.1905 +0 0.1000 +0 0.2906 +0 0.2296 +0 0.1025 +0 0.0768 +0 0.0805 +0 0.0571 +0 0.1526 +0 0.0610 +0 0.0706 +0 0.1502 +0 0.0491 +0 0.0827 +0 0.3612 +0 0.6651 +0 0.1515 +0 0.0617 +0 0.2068 +0 0.6156 +0 0.2414 +0 0.1535 +0 0.1520 +0 0.0699 +0 0.2150 +0 0.1431 +0 0.1228 +0 0.7358 +0 0.1250 +0 0.1715 +0 0.1055 +0 0.0503 +0 0.1164 +0 0.1046 +0 0.0984 +0 0.0715 +0 0.1242 +0 0.0895 +0 0.1066 +0 0.0860 +0 0.4894 +0 0.2375 +0 0.1548 +0 0.0994 +0 0.1624 +0 0.0594 +0 0.0558 +0 0.0448 +0 0.1170 +0 0.0534 +0 0.0391 +0 0.1924 +0 0.1380 +0 0.1542 +0 0.0933 +0 0.0728 +0 0.0933 +0 0.1551 +0 0.0863 +0 0.1020 +0 0.2384 +0 0.0682 +0 0.1331 +0 0.2397 +0 0.0838 +0 0.0831 +0 0.0822 +0 0.0770 +0 0.0420 +1 0.8035 +0 0.0588 +0 0.0601 +0 0.1545 +0 0.0618 +0 0.0609 +0 0.0627 +0 0.3441 +0 0.0818 +0 0.2337 +0 0.3646 +0 0.1280 +0 0.1443 +0 0.1231 +0 0.0808 +0 0.3429 +0 0.1437 +0 0.3287 +0 0.0626 +0 0.0511 +0 0.0985 +0 0.2291 +0 0.2324 +0 0.0801 +0 0.0819 +0 0.0432 +0 0.1112 +1 0.7700 +0 0.0625 +0 0.0977 +0 0.2515 +0 0.1560 +0 0.0512 +0 0.0484 +0 0.0413 +0 0.0753 +0 0.1729 +0 0.1606 +0 0.2274 +0 0.1763 +0 0.1358 +0 0.1233 +0 0.1526 +0 0.2123 +0 0.0708 +0 0.0739 +0 0.1243 +0 0.0666 +0 0.2435 +0 0.1592 +0 0.0341 +1 0.7711 +0 0.0569 +0 0.6068 +0 0.0569 +0 0.1115 +0 0.1818 +0 0.0560 +0 0.1542 +0 0.0791 +0 0.1406 +0 0.0595 +0 0.1287 +0 0.0944 +0 0.1828 +0 0.0572 +0 0.0864 +0 0.0593 +0 0.0513 +0 0.0773 +0 0.2460 +0 0.0521 +0 0.1799 +0 0.1846 +0 0.1192 +0 0.0614 +0 0.1127 +0 0.0635 +0 0.1618 +0 0.1299 +0 0.1287 +0 0.1347 +0 0.0811 +0 0.0870 +0 0.1730 +0 0.0505 +0 0.0995 +0 0.1761 +0 0.0642 +0 0.0957 +0 0.0888 +0 0.2407 +0 0.0721 +0 0.0995 +0 0.1284 +0 0.0807 +0 0.0594 +0 0.0848 +0 0.1756 +0 0.0827 +0 0.1574 +0 0.5009 +0 0.1148 +0 0.2025 +0 0.2614 +0 0.1437 +0 0.2365 +0 0.1828 +0 0.1901 +0 0.1118 +0 0.1809 +0 0.0737 +0 0.0589 +0 0.1706 +0 0.0923 +0 0.0719 +0 0.0351 +0 0.0667 +0 0.2194 +0 0.0793 +0 0.1574 +0 0.0899 +0 0.0910 +0 0.1345 +0 0.0811 +0 0.0450 +0 0.1324 +1 0.7857 +0 0.5223 +0 0.1056 +0 0.0453 +0 0.3619 +0 0.0957 +0 0.0589 +0 0.0889 +0 0.4936 +0 0.0561 +0 0.0517 +0 0.0447 +0 0.0734 +0 0.0720 +0 0.0853 +0 0.0776 +0 0.0699 +0 0.0539 +0 0.0913 +0 0.1493 +0 0.0773 +0 0.0597 +0 0.1022 +1 0.7916 +0 0.0702 +0 0.0836 +0 0.0490 +0 0.3104 +0 0.1423 +0 0.0490 +0 0.0887 +0 0.0682 +0 0.2789 +0 0.3742 +0 0.1458 +0 0.7061 +0 0.0941 +0 0.1068 +0 0.3277 +0 0.6501 +0 0.0750 +0 0.1747 +0 0.0668 +0 0.0723 +0 0.0803 +0 0.1542 +0 0.0456 +0 0.3895 +0 0.2043 +0 0.6329 +0 0.1012 +0 0.1352 +0 0.2709 +0 0.1454 +0 0.4511 +0 0.1396 +0 0.2111 +0 0.2187 +0 0.1161 +1 0.7735 +0 0.0806 +0 0.5813 +0 0.1460 +0 0.0854 +0 0.0631 +0 0.0897 +0 0.0942 +0 0.1441 +0 0.0969 +0 0.0894 +0 0.1422 +0 0.0904 +0 0.1295 +0 0.0548 +0 0.1935 +0 0.0637 +0 0.0964 +0 0.1383 +0 0.1547 +0 0.1341 +0 0.0880 +0 0.2221 +0 0.0551 +1 0.7720 +0 0.4565 +0 0.0908 +0 0.0648 +0 0.0747 +0 0.1663 +0 0.0671 +0 0.0823 +0 0.0631 +0 0.4863 +0 0.1285 +0 0.1716 +0 0.0955 +0 0.0472 +0 0.1393 +0 0.0455 +0 0.0763 +0 0.1256 +0 0.1094 +0 0.0657 +0 0.1452 +0 0.0353 +0 0.1204 +0 0.1228 +0 0.2437 +0 0.0728 +0 0.0909 +0 0.1032 +0 0.1331 +1 0.8479 +0 0.1616 +0 0.1200 +0 0.1869 +0 0.1476 +0 0.0505 +0 0.3742 +0 0.0600 +0 0.1186 +1 0.7787 +0 0.0843 +0 0.2353 +0 0.2829 +0 0.0978 +0 0.0833 +0 0.0688 +0 0.1691 +0 0.1984 +0 0.0552 +0 0.2084 +0 0.0990 +0 0.1265 +0 0.1996 +0 0.0807 +0 0.0571 +0 0.1218 +0 0.0528 +0 0.0788 +0 0.1507 +0 0.0344 +0 0.1440 +0 0.1528 +0 0.0649 +0 0.1113 +0 0.0879 +0 0.1493 +0 0.1452 +0 0.0897 +0 0.1011 +0 0.0720 +0 0.0797 +0 0.1653 +0 0.2013 +0 0.1956 +0 0.3938 +0 0.0638 +0 0.0572 +0 0.2044 +0 0.0467 +0 0.0804 +0 0.1576 +0 0.0955 +0 0.2279 +0 0.0486 +0 0.1344 +0 0.0893 +0 0.1378 +0 0.1246 +0 0.0891 +0 0.0950 +0 0.0957 +0 0.0661 +0 0.0417 +0 0.2246 +0 0.0794 +0 0.0461 +0 0.0676 +0 0.2659 +0 0.1711 +0 0.1397 +0 0.0938 +0 0.0780 +0 0.0908 +1 0.8473 +0 0.1936 +0 0.0678 +0 0.0787 +0 0.0732 +0 0.1301 +0 0.1140 +0 0.1046 +0 0.0761 +0 0.1414 +0 0.1415 +0 0.1976 +0 0.1055 +0 0.0840 +0 0.1598 +0 0.0363 +0 0.0877 +0 0.2601 +0 0.1389 +0 0.1269 +0 0.0779 +0 0.0699 +0 0.0483 +0 0.0581 +0 0.1578 +0 0.1025 +0 0.3189 +1 0.8468 +0 0.3045 +0 0.0579 +0 0.0574 +0 0.1830 +0 0.0800 +0 0.1322 +0 0.2378 +0 0.1360 +0 0.0343 +0 0.1415 +0 0.1854 +0 0.0661 +0 0.0359 +0 0.0710 +0 0.0903 +0 0.3945 +0 0.2603 +0 0.2686 +0 0.1608 +0 0.1247 +0 0.1129 +0 0.6001 +0 0.1181 +0 0.2781 +0 0.7031 +0 0.0916 +0 0.1075 +0 0.0829 +0 0.0736 +0 0.1670 +0 0.1341 +0 0.1156 +0 0.0627 +0 0.0581 +0 0.1987 +0 0.1241 +0 0.0362 +0 0.1544 +0 0.1514 +0 0.0660 +0 0.2530 +0 0.1495 +0 0.0612 +0 0.2578 +0 0.1429 +0 0.0529 +0 0.0547 +0 0.0328 +0 0.0950 +0 0.1430 +0 0.0799 +0 0.0899 +0 0.2306 +0 0.1822 +0 0.0795 +0 0.0630 +0 0.1113 +0 0.1118 +0 0.1066 +0 0.0685 +0 0.1192 +0 0.1439 +0 0.0377 +0 0.1609 +0 0.4558 +0 0.0687 +0 0.1042 +0 0.1162 +0 0.0616 +0 0.0757 +0 0.1318 +0 0.0951 +0 0.0994 +0 0.1762 +0 0.1444 +0 0.2687 +0 0.0642 +0 0.0448 +0 0.1040 +0 0.0575 +0 0.1365 +0 0.1133 +0 0.4216 +0 0.0867 +0 0.1335 +0 0.0648 +0 0.0659 +0 0.0482 +0 0.0873 +0 0.0561 +0 0.0644 +0 0.0557 +0 0.1600 +0 0.0807 +0 0.0985 +0 0.0570 +0 0.1068 +0 0.0930 +0 0.0632 +0 0.3561 +0 0.2499 +0 0.0616 +0 0.2645 +0 0.0862 +0 0.0720 +0 0.0703 +0 0.0567 +0 0.0467 +0 0.1182 +0 0.0561 +0 0.0938 +0 0.0761 +0 0.0959 +0 0.1450 +0 0.1386 +0 0.2566 +0 0.0776 +0 0.0628 +0 0.1674 +0 0.5552 +0 0.1207 +0 0.1062 +0 0.0976 +0 0.2975 +0 0.3652 +0 0.1388 +0 0.2148 +0 0.1212 +0 0.0711 +0 0.6754 +0 0.2251 +0 0.0607 +0 0.1474 +0 0.0794 +0 0.0842 +0 0.2962 +0 0.0472 +0 0.1188 +0 0.0622 +0 0.0667 +0 0.0481 +0 0.0691 +0 0.0506 +0 0.0474 +0 0.1897 +0 0.2363 +0 0.1957 +0 0.0342 +0 0.5999 +0 0.0372 +0 0.0895 +0 0.1036 +0 0.0460 +1 0.7938 +0 0.0519 +0 0.0800 +0 0.1740 +0 0.0781 +0 0.0973 +0 0.1986 +0 0.1024 +0 0.2042 +0 0.2610 +0 0.0809 +0 0.1005 +0 0.0643 +0 0.1891 +0 0.7307 +0 0.1073 +0 0.0952 +0 0.4102 +0 0.0739 +0 0.0846 +0 0.3759 +0 0.0595 +0 0.1661 +0 0.1470 +0 0.0496 +0 0.0828 +0 0.0541 +0 0.0596 +0 0.4441 +0 0.0383 +0 0.1542 +0 0.0987 +0 0.1030 +0 0.5709 +0 0.3816 +0 0.0823 +0 0.0547 +0 0.1994 +0 0.0988 +0 0.1250 +0 0.1645 +0 0.1194 +0 0.1113 +0 0.2538 +0 0.0600 +0 0.0818 +0 0.3505 +0 0.0802 +0 0.0820 +0 0.0974 +0 0.2163 +0 0.0546 +0 0.1434 +0 0.0670 +0 0.0848 +0 0.0481 +0 0.0428 +0 0.0740 +0 0.1214 +0 0.1482 +0 0.0548 +0 0.2292 +0 0.1755 +0 0.1189 +0 0.0955 +0 0.1349 +0 0.1162 +0 0.0490 +0 0.1009 +0 0.1365 +0 0.1017 +0 0.0675 +0 0.3965 +0 0.1894 +0 0.2191 +0 0.0374 +0 0.1868 +0 0.0757 +0 0.1008 +0 0.0662 +0 0.1793 +0 0.1476 +0 0.3327 +0 0.1059 +0 0.0425 +0 0.0687 +0 0.1060 +0 0.1255 +0 0.1983 +0 0.0678 +0 0.0993 +0 0.1292 +0 0.2289 +0 0.0913 +0 0.2570 +0 0.0847 +0 0.1463 +0 0.0723 +0 0.2361 +0 0.2484 +0 0.0578 +0 0.1118 +0 0.1447 +0 0.0446 +0 0.0927 +0 0.0722 +0 0.1179 +0 0.0616 +0 0.0704 +0 0.1025 +0 0.1018 +0 0.1323 +0 0.0681 +0 0.1925 +0 0.3373 +0 0.0681 +0 0.1535 +0 0.0723 +0 0.0625 +1 0.8567 +0 0.3119 +0 0.2317 +0 0.0501 +1 0.8463 +0 0.1261 +0 0.1133 +0 0.0559 +0 0.1117 +0 0.0963 +0 0.0526 +0 0.1031 +0 0.0567 +0 0.0821 +0 0.0561 +0 0.0769 +0 0.0983 +0 0.0637 +0 0.2553 +0 0.0664 +0 0.1809 +0 0.0614 +0 0.0741 +0 0.1094 +0 0.1217 +0 0.2002 +0 0.2185 +0 0.1040 +0 0.2705 +0 0.6271 +0 0.0675 +0 0.2323 +0 0.0868 +0 0.0597 +0 0.0632 +0 0.1411 +0 0.3320 +0 0.2955 +0 0.0613 +0 0.1764 +0 0.1300 +0 0.1141 +0 0.1515 +0 0.0366 +0 0.5998 +0 0.2720 +0 0.0596 +0 0.0688 +0 0.0688 +1 0.7928 +0 0.0876 +0 0.3207 +0 0.2918 +0 0.1231 +0 0.1334 +0 0.0982 +0 0.0345 +0 0.1807 +0 0.0471 +0 0.0672 +0 0.1203 +0 0.1291 +0 0.0808 +0 0.0935 +0 0.1935 +0 0.0528 +0 0.2707 +0 0.2767 +0 0.1121 +0 0.0746 +0 0.1142 +0 0.0530 +0 0.0514 +0 0.0723 +0 0.1004 +0 0.2485 +0 0.0648 +0 0.1647 +0 0.1006 +0 0.1798 +0 0.0916 +0 0.1229 +0 0.6483 +0 0.1108 +0 0.1123 +0 0.1512 +0 0.0444 +0 0.1294 +0 0.1031 +1 0.8254 +0 0.2437 +0 0.4084 +0 0.1750 +0 0.4054 +0 0.1132 +0 0.0897 +1 0.7906 +0 0.2820 +0 0.0493 +0 0.3239 +0 0.0514 +0 0.1388 +0 0.0536 +0 0.2549 +0 0.0991 +0 0.1824 +0 0.1250 +0 0.5286 +0 0.1670 +0 0.0926 +0 0.1318 +0 0.0431 +0 0.0717 +0 0.1086 +0 0.0852 +0 0.2039 +0 0.1039 +0 0.1830 +0 0.0947 +0 0.3022 +0 0.1411 +0 0.0527 +0 0.0821 +0 0.1076 +0 0.2506 +0 0.0714 +0 0.0985 +0 0.3469 +0 0.0695 +0 0.1328 +0 0.3467 +0 0.1967 +0 0.1983 +0 0.2201 +0 0.1241 +0 0.0412 +0 0.0908 +0 0.2939 +0 0.2370 +0 0.0808 +0 0.0756 +0 0.2162 +0 0.0500 +0 0.1022 +0 0.1307 +0 0.0641 +0 0.2040 +0 0.1330 +0 0.0869 +0 0.0603 +0 0.0967 +0 0.0775 +0 0.1375 +0 0.1799 +0 0.0711 +0 0.1705 +0 0.1097 +0 0.0323 +0 0.1228 +0 0.0539 +0 0.1330 +0 0.0599 +0 0.1678 +0 0.6826 +0 0.1708 +0 0.0845 +0 0.0614 +0 0.1150 +0 0.0479 +0 0.7338 +0 0.0675 +0 0.2824 +0 0.0931 +0 0.0613 +0 0.0484 +0 0.0355 +0 0.1047 +0 0.0594 +0 0.1188 +0 0.0993 +0 0.1107 +0 0.0835 +0 0.0680 +0 0.0601 +0 0.1305 +0 0.2880 +0 0.1478 +0 0.0599 +0 0.0818 +0 0.1280 +0 0.2345 +0 0.1224 +0 0.1509 +0 0.5167 +0 0.1231 +0 0.0984 +0 0.0588 +0 0.1475 +0 0.2018 +0 0.4722 +1 0.8479 +0 0.0709 +0 0.1619 +0 0.0500 +0 0.0791 +0 0.2305 +1 0.7895 +0 0.1019 +0 0.0709 +0 0.0797 +0 0.0805 +0 0.0980 +0 0.1368 +0 0.0711 +0 0.0739 +0 0.0822 +0 0.0926 +0 0.1286 +0 0.0638 +0 0.0415 +0 0.0743 +0 0.0726 +0 0.1203 +0 0.1537 +0 0.0546 +0 0.2795 +0 0.3590 +0 0.0668 +0 0.0690 +0 0.0992 +0 0.1789 +0 0.0989 +0 0.1536 +0 0.2678 +0 0.1077 +0 0.0804 +0 0.1602 +0 0.1177 +0 0.1935 +0 0.0749 +0 0.0860 +0 0.2826 +0 0.0937 +0 0.0838 +0 0.0459 +0 0.1852 +0 0.1492 +0 0.1749 +0 0.1645 +0 0.0427 +0 0.1826 +0 0.1650 +0 0.1610 +0 0.0903 +0 0.1229 +0 0.0502 +0 0.1114 +0 0.0531 +0 0.1214 +0 0.1746 +0 0.0875 +0 0.0968 +0 0.1462 +0 0.0690 +0 0.0743 +0 0.1209 +0 0.0715 +0 0.0884 +0 0.0802 +0 0.1651 +0 0.0602 +0 0.0901 +0 0.0734 +0 0.0868 +0 0.0943 +0 0.0923 +0 0.0776 +0 0.1570 +0 0.3168 +0 0.1382 +0 0.4341 +0 0.1226 +0 0.0952 +0 0.1031 +0 0.1837 +0 0.2914 +0 0.1350 +0 0.1515 +0 0.0899 +0 0.0386 +0 0.0465 +0 0.4465 +0 0.0807 +0 0.1258 +0 0.0445 +0 0.0723 +0 0.1449 +0 0.3178 +0 0.3397 +0 0.1721 +0 0.0939 +0 0.6669 +0 0.0650 +0 0.1036 +0 0.0426 +0 0.1277 +0 0.0613 +0 0.1113 +0 0.1390 +0 0.0855 +0 0.1739 +0 0.0614 +0 0.3021 +0 0.0691 +0 0.1324 +0 0.0969 +0 0.0619 +0 0.0947 +0 0.0625 +0 0.1639 +0 0.1985 +0 0.0703 +0 0.6922 +0 0.5314 +0 0.0683 +0 0.1071 +0 0.1099 +0 0.6859 +0 0.1131 +0 0.6460 +0 0.0859 +0 0.1725 +0 0.0364 +0 0.0545 +0 0.1265 +0 0.0997 +0 0.0758 +0 0.1520 +0 0.0905 +0 0.0769 +0 0.0584 +0 0.0893 +0 0.0884 +0 0.0701 +0 0.0462 +0 0.2271 +0 0.1121 +0 0.0762 +0 0.2765 +0 0.1410 +0 0.1084 +0 0.1096 +0 0.1173 +0 0.2353 +0 0.1306 +0 0.0910 +0 0.0532 +0 0.0421 +0 0.1915 +0 0.0447 +0 0.0714 +0 0.0655 +0 0.1613 +1 0.8055 +0 0.1562 +0 0.0905 +0 0.1166 +0 0.0977 +0 0.1064 +0 0.0505 +0 0.1223 +0 0.2279 +0 0.1022 +0 0.0523 +0 0.0946 +0 0.1495 +0 0.1317 +0 0.0462 +0 0.0612 +0 0.0913 +0 0.0765 +0 0.1024 +1 0.8594 +0 0.3605 +0 0.0466 +0 0.1175 +0 0.1316 +0 0.0762 +0 0.2702 +0 0.5401 +0 0.1126 +0 0.1312 +0 0.0902 +0 0.0560 +0 0.0395 +0 0.0819 +0 0.0288 +0 0.1344 +0 0.0847 +0 0.0876 +0 0.0446 +0 0.1083 +0 0.0830 +0 0.1954 +0 0.0404 +0 0.1068 +1 0.7904 +0 0.1783 +0 0.0551 +0 0.4717 +0 0.1054 +0 0.0809 +0 0.1160 +0 0.7120 +0 0.0698 +0 0.2266 +0 0.0426 +0 0.0933 +0 0.1324 +0 0.1869 +0 0.0656 +0 0.1127 +0 0.0522 +0 0.0900 +0 0.0883 +0 0.2443 +0 0.2725 +0 0.0534 +0 0.0894 +0 0.0594 +0 0.0767 +0 0.1469 +0 0.1618 +0 0.1011 +0 0.0871 +0 0.0520 +0 0.0788 +0 0.0761 +0 0.1753 +0 0.0951 +0 0.4938 +0 0.0849 +0 0.0797 +0 0.1777 +0 0.0645 +0 0.0690 +0 0.0526 +0 0.2045 +0 0.1896 +0 0.3523 +0 0.2208 +0 0.0562 +0 0.0761 +0 0.1695 +0 0.0574 +0 0.3179 +0 0.0375 +0 0.2315 +0 0.0867 +0 0.1165 +0 0.0602 +0 0.0694 +0 0.0759 +0 0.0618 +0 0.0803 +0 0.0592 +0 0.0962 +0 0.1253 +0 0.1358 +0 0.3662 +0 0.0569 +0 0.0444 +0 0.2296 +0 0.0567 +0 0.0536 +0 0.1621 +0 0.0617 +0 0.1280 +0 0.1422 +0 0.1548 +0 0.2763 +0 0.0647 +0 0.0642 +0 0.0845 +0 0.7457 +0 0.1515 +0 0.2581 +0 0.1123 +0 0.0611 +0 0.0963 +0 0.0569 +0 0.0443 +1 0.8094 +0 0.0530 +0 0.1248 +0 0.1508 +0 0.2908 +0 0.1624 +0 0.0597 +0 0.1142 +0 0.1271 +0 0.0748 +0 0.0845 +0 0.1290 +0 0.1233 +0 0.0622 +0 0.2025 +0 0.1676 +0 0.0300 +0 0.0970 +0 0.1028 +0 0.0598 +0 0.2657 +0 0.1344 +0 0.0980 +0 0.1051 +0 0.1307 +0 0.2068 +0 0.0669 +0 0.0391 +0 0.7148 +0 0.0775 +0 0.0654 +0 0.0564 +0 0.2008 +0 0.2446 +0 0.0856 +0 0.0938 +0 0.2580 +0 0.0940 +0 0.1575 +0 0.5009 +0 0.0562 +0 0.1992 +0 0.1059 +0 0.0588 +0 0.0920 +0 0.1184 +0 0.2498 +0 0.2617 +0 0.2669 +0 0.1281 +0 0.0314 +0 0.4270 +0 0.0873 +0 0.1843 +0 0.0860 +0 0.0461 +0 0.1091 +0 0.1104 +0 0.0565 +0 0.0709 +0 0.1044 +0 0.1172 +0 0.1093 +0 0.0531 +0 0.1758 +0 0.0721 +0 0.0873 +0 0.1640 +0 0.1319 +0 0.0618 +0 0.0905 +0 0.1239 +0 0.0792 +0 0.0419 +0 0.1615 +0 0.0534 +0 0.2128 +0 0.1124 +0 0.0457 +1 0.8368 +0 0.1940 +0 0.1261 +0 0.1834 +0 0.0851 +0 0.0458 +0 0.1303 +0 0.1301 +0 0.0737 +0 0.0749 +0 0.1073 +0 0.1092 +0 0.0855 +0 0.1005 +0 0.1829 +0 0.0719 +0 0.0587 +0 0.0597 +0 0.5368 +0 0.0868 +0 0.0952 +0 0.1573 +0 0.0901 +0 0.1859 +0 0.0582 +0 0.0519 +0 0.0802 +0 0.0330 +0 0.2025 +0 0.1328 +0 0.0795 +0 0.2040 +0 0.2746 +0 0.0685 +0 0.0871 +0 0.0781 +0 0.0477 +0 0.1626 +0 0.0773 +0 0.0808 +0 0.2319 +0 0.0648 +0 0.1996 +0 0.0730 +0 0.0807 +0 0.0784 +0 0.1312 +0 0.0608 +0 0.2293 +0 0.0665 +0 0.0762 +0 0.2305 +0 0.0684 +0 0.0742 +0 0.2000 +0 0.1646 +0 0.1180 +0 0.2699 +0 0.2095 +0 0.0737 +0 0.3010 +0 0.1882 +0 0.1782 +0 0.0869 +0 0.0451 +0 0.2895 +0 0.0694 +0 0.1117 +1 0.8975 +0 0.1521 +0 0.1106 +0 0.1204 +0 0.0512 +0 0.0866 +0 0.1815 +0 0.0458 +0 0.0975 +0 0.0964 +0 0.2783 +0 0.1380 +0 0.0651 +0 0.1013 +0 0.2001 +0 0.1179 +0 0.0480 +0 0.0758 +0 0.2145 +0 0.1084 +0 0.0925 +0 0.0695 +0 0.1891 +0 0.1447 +0 0.1391 +0 0.1100 +0 0.2864 +0 0.0953 +0 0.2900 +0 0.1372 +0 0.1401 +0 0.0418 +0 0.1184 +0 0.1105 +0 0.0534 +0 0.0385 +0 0.3096 +0 0.1356 +0 0.2008 +0 0.1339 +0 0.1774 +0 0.0593 +0 0.1548 +0 0.0993 +0 0.1043 +0 0.0634 +0 0.0403 +0 0.1842 +0 0.1041 +0 0.0472 +0 0.1960 +0 0.0698 +0 0.2016 +1 0.7591 +0 0.2319 +0 0.0826 +0 0.0620 +0 0.0873 +0 0.4611 +0 0.0675 +0 0.0692 +0 0.0487 +0 0.2565 +0 0.0885 +0 0.0454 +0 0.0874 +0 0.0518 +0 0.0775 +0 0.1581 +0 0.1642 +0 0.0830 +0 0.1967 +0 0.1550 +0 0.0768 +0 0.0900 +0 0.0618 +0 0.1200 +0 0.5539 +0 0.1185 +0 0.1579 +0 0.1180 +0 0.2521 +0 0.0501 +0 0.1857 +0 0.0804 +0 0.2487 +0 0.0538 +0 0.3171 +0 0.1266 +0 0.0750 +0 0.1098 +0 0.0733 +0 0.0830 +0 0.0426 +0 0.0565 +0 0.2400 +0 0.2733 +0 0.1914 +0 0.1128 +0 0.1059 +0 0.1149 +0 0.0527 +0 0.0324 +0 0.1254 +0 0.2902 +0 0.1730 +0 0.1214 +0 0.1034 +0 0.1137 +0 0.2153 +0 0.1620 +0 0.1010 +0 0.1172 +0 0.2565 +0 0.1545 +0 0.1994 +0 0.1056 +0 0.1631 +1 0.7696 +0 0.0732 +0 0.0708 +0 0.0678 +0 0.0893 +0 0.1164 +0 0.0768 +0 0.3504 +0 0.0575 +0 0.3556 +0 0.0526 +0 0.2196 +0 0.0912 +0 0.0572 +0 0.0561 +0 0.0423 +0 0.1351 +0 0.2414 +0 0.1082 +0 0.0617 +0 0.1753 +0 0.1003 +0 0.1753 +0 0.0738 +0 0.1808 +0 0.1683 +0 0.0522 +0 0.0955 +0 0.1536 +0 0.0916 +0 0.1241 +0 0.0772 +0 0.0759 +0 0.1036 +0 0.2753 +0 0.1570 +0 0.1221 +0 0.0536 +0 0.1746 +0 0.0784 +0 0.1440 +0 0.0818 +0 0.1425 +0 0.1061 +0 0.1418 +0 0.0666 +0 0.0444 +0 0.1091 +0 0.1218 +0 0.0935 +0 0.1039 +0 0.0721 +0 0.2740 +0 0.1511 +0 0.2058 +0 0.0731 +0 0.2070 +0 0.0362 +0 0.1023 +0 0.4748 +0 0.0627 +0 0.0916 +0 0.0613 +0 0.4379 +0 0.0297 +0 0.0486 +0 0.0717 +0 0.3100 +0 0.0755 +0 0.0632 +0 0.0974 +0 0.3193 +0 0.1425 +0 0.0715 +0 0.1752 +0 0.0830 +0 0.1313 +0 0.0759 +0 0.1968 +0 0.7438 +0 0.1112 +1 0.8249 +0 0.1130 +0 0.0643 +0 0.3544 +0 0.4144 +0 0.0822 +0 0.0700 +0 0.0743 +0 0.1092 +0 0.1031 +0 0.1078 +0 0.0930 +0 0.1518 +0 0.0653 +0 0.0652 +0 0.1898 +0 0.0508 +0 0.1289 +0 0.0709 +0 0.1008 +0 0.2601 +0 0.1679 +0 0.0752 +0 0.0997 +0 0.0908 +0 0.0591 +0 0.0425 +0 0.0655 +0 0.2330 +0 0.0801 +0 0.5386 +0 0.0744 +0 0.1410 +0 0.1998 +0 0.0737 +1 0.7681 +0 0.0421 +0 0.0633 +0 0.0319 +0 0.2248 +0 0.1048 +0 0.1354 +0 0.1635 +0 0.1007 +0 0.1499 +0 0.1446 +0 0.2562 +0 0.0544 +0 0.0425 +0 0.7231 +0 0.0670 +0 0.0845 +0 0.1464 +0 0.0849 +0 0.0675 +0 0.0572 +0 0.1908 +1 0.7807 +0 0.6578 +0 0.1385 +0 0.0419 +0 0.0660 +0 0.0951 +0 0.0700 +0 0.0712 +0 0.0327 +0 0.0882 +0 0.1942 +0 0.2022 +0 0.2070 +1 0.8888 +0 0.0603 +0 0.0868 +0 0.0667 +0 0.0552 +0 0.1858 +0 0.1759 +0 0.0752 +0 0.0946 +0 0.6922 +0 0.0733 +0 0.1376 +0 0.1379 +0 0.1017 +0 0.1061 +0 0.0978 +0 0.1672 +0 0.0548 +0 0.1214 +0 0.4026 +0 0.1063 +0 0.0616 +0 0.1264 +0 0.1373 +0 0.0539 +0 0.2074 +0 0.1115 +0 0.1568 +0 0.1450 +0 0.0793 +0 0.0516 +0 0.1264 +0 0.0395 +0 0.1571 +0 0.0503 +0 0.2618 +0 0.1390 +0 0.1576 +0 0.2330 +0 0.0941 +0 0.0538 +0 0.0845 +0 0.0780 +0 0.1099 +0 0.1457 +0 0.1198 +0 0.0564 +0 0.0531 +0 0.0502 +0 0.0580 +0 0.0903 +0 0.0469 +0 0.2779 +0 0.0751 +0 0.1528 +0 0.1196 +0 0.2690 +0 0.0724 +0 0.0698 +0 0.0997 +0 0.0582 +0 0.1168 +0 0.0869 +0 0.1117 +0 0.5522 +0 0.0884 +0 0.1611 +0 0.0733 +0 0.0418 +0 0.0879 +0 0.1871 +0 0.1438 +0 0.0580 +0 0.0575 +1 0.8476 +0 0.0426 +0 0.2182 +0 0.0749 +0 0.0955 +0 0.1079 +0 0.0963 +0 0.7365 +0 0.1371 +0 0.1087 +0 0.1719 +0 0.1047 +0 0.0953 +0 0.1214 +0 0.0515 +0 0.0525 +0 0.1876 +0 0.1730 +0 0.2839 +0 0.0955 +0 0.0586 +0 0.1385 +0 0.1023 +0 0.1075 +0 0.1026 +0 0.0616 +0 0.0507 +0 0.0768 +0 0.0864 +0 0.0717 +0 0.2585 +0 0.4368 +0 0.0530 +0 0.0681 +0 0.0787 +0 0.0494 +0 0.2370 +0 0.0776 +0 0.0802 +0 0.0477 +0 0.1208 +0 0.1567 +0 0.1257 +0 0.6862 +0 0.0857 +0 0.0881 +0 0.1762 +0 0.0347 +0 0.0830 +0 0.1291 +0 0.0587 +0 0.2036 +0 0.0673 +0 0.1121 +0 0.2041 +0 0.0621 +0 0.0849 +0 0.1950 +0 0.0680 +0 0.0892 +0 0.0789 +0 0.1461 +0 0.0955 +0 0.1497 +1 0.8509 +0 0.0724 +0 0.0669 +0 0.1556 +0 0.2129 +0 0.0702 +0 0.0466 +0 0.1072 +0 0.1327 +0 0.1343 +0 0.1308 +0 0.0723 +0 0.1088 +0 0.0796 +0 0.1693 +0 0.2321 +0 0.2574 +0 0.0798 +0 0.1885 +0 0.0365 +0 0.1175 +0 0.0966 +0 0.1571 +0 0.1284 +0 0.2009 +0 0.0648 +0 0.0763 +0 0.0977 +0 0.0699 +0 0.0608 +0 0.0924 +0 0.1180 +0 0.0708 +0 0.0617 +0 0.0486 +0 0.0443 +0 0.1079 +0 0.0748 +0 0.0462 +0 0.0487 +0 0.0927 +0 0.0929 +0 0.2082 +0 0.0787 +0 0.1302 +0 0.1268 +0 0.1103 +0 0.3198 +0 0.0873 +0 0.1711 +0 0.1052 +0 0.7293 +0 0.1973 +0 0.1270 +0 0.0756 +0 0.0689 +0 0.1247 +0 0.1795 +0 0.1103 +0 0.1685 +0 0.2206 +0 0.0750 +0 0.1902 +0 0.1252 +0 0.1690 +0 0.2435 +0 0.0953 +0 0.1381 +0 0.0662 +0 0.2156 +0 0.0666 +0 0.1679 +0 0.0500 +0 0.1289 +0 0.0804 +0 0.1520 +0 0.1041 +0 0.0851 +0 0.1189 +0 0.0408 +0 0.5267 +0 0.0558 +0 0.1540 +0 0.0915 +0 0.2298 +0 0.1723 +0 0.1820 +0 0.0560 +0 0.4727 +0 0.0945 +0 0.1308 +0 0.0504 +0 0.0719 +0 0.1310 +0 0.4486 +0 0.1760 +0 0.0617 +0 0.1131 +0 0.1581 +0 0.0737 +0 0.1001 +0 0.1370 +0 0.0833 +0 0.2503 +0 0.0728 +0 0.1976 +0 0.1177 +0 0.0447 +0 0.1677 +0 0.0442 +0 0.1804 +0 0.1833 +0 0.1804 +0 0.4085 +0 0.1050 +0 0.0698 +0 0.1551 +0 0.0742 +0 0.1387 +0 0.0545 +0 0.2469 +0 0.0792 +0 0.2075 +0 0.4245 +0 0.1402 +0 0.0740 +0 0.0412 +0 0.1258 +0 0.1289 +0 0.0815 +0 0.0923 +0 0.6056 +0 0.1341 +0 0.0602 +0 0.1195 +0 0.0690 +0 0.1962 +0 0.1274 +0 0.0680 +0 0.2132 +0 0.0729 +0 0.0622 +0 0.1009 +0 0.7340 +0 0.1716 +0 0.4638 +0 0.1884 +0 0.1038 +0 0.1472 +1 0.7906 +0 0.0952 +0 0.2349 +0 0.0644 +0 0.0622 +0 0.1472 +0 0.2552 +0 0.1511 +0 0.4672 +0 0.1568 +0 0.1603 +0 0.0661 +0 0.0406 +0 0.0686 +0 0.1564 +0 0.0592 +0 0.2727 +0 0.1204 +0 0.0595 +0 0.0791 +0 0.1043 +0 0.2265 +0 0.3826 +0 0.2027 +0 0.1209 +0 0.1855 +0 0.0442 +0 0.1513 +0 0.0409 +0 0.0740 +0 0.1286 +0 0.0883 +0 0.0449 +0 0.3097 +0 0.1062 +0 0.0847 +0 0.2723 +0 0.1793 +0 0.0867 +0 0.1919 +0 0.1198 +0 0.0896 +0 0.0752 +0 0.1292 +0 0.0825 +0 0.0955 +0 0.1549 +0 0.0620 +0 0.2105 +0 0.0757 +0 0.1166 +0 0.1512 +0 0.0491 +0 0.0942 +0 0.1169 +0 0.2447 +0 0.1006 +0 0.0511 +0 0.0586 +0 0.1245 +0 0.0326 +0 0.3564 +0 0.3158 +1 0.7897 +0 0.3462 +0 0.0494 +0 0.1129 +0 0.1849 +0 0.0572 +0 0.2693 +0 0.0602 +0 0.0387 +0 0.1636 +0 0.1391 +0 0.1152 +0 0.1615 +0 0.1238 +0 0.1671 +0 0.0630 +0 0.0958 +0 0.2757 +0 0.1508 +0 0.0825 +0 0.5233 +0 0.6202 +0 0.0647 +0 0.0527 +0 0.1219 +0 0.1028 +0 0.0373 +0 0.0642 +0 0.2343 +0 0.0483 +0 0.0801 +0 0.5878 +0 0.0993 +0 0.0379 +0 0.1059 +0 0.0409 +0 0.1024 +0 0.0978 +0 0.1600 +0 0.2779 +0 0.2656 +0 0.1454 +0 0.0923 +0 0.0845 +0 0.2889 +0 0.0669 +0 0.0834 +0 0.2522 +0 0.1084 +0 0.0980 +0 0.1162 +0 0.2065 +0 0.7461 +0 0.1036 +0 0.2624 +0 0.1372 +0 0.1236 +0 0.4773 +0 0.0740 +0 0.1652 +0 0.0601 +0 0.1962 +0 0.1284 +0 0.0924 +0 0.2404 +0 0.1219 +0 0.0760 +0 0.1205 +0 0.1182 +0 0.7319 +0 0.0886 +0 0.6149 +0 0.1173 +0 0.3201 +0 0.1001 +0 0.1487 +0 0.0847 +0 0.1975 +0 0.1153 +0 0.0679 +0 0.3300 +0 0.2492 +0 0.1021 +0 0.1090 +0 0.0423 +0 0.1505 +0 0.4698 +0 0.0661 +0 0.1040 +0 0.2531 +0 0.3623 +0 0.2052 +0 0.1771 +0 0.0868 +0 0.1287 +0 0.1009 +0 0.0836 +0 0.0944 +0 0.2380 +1 0.8036 +0 0.0608 +0 0.0529 +0 0.2164 +0 0.0515 +0 0.1420 +0 0.0818 +0 0.1322 +0 0.1281 +0 0.3046 +0 0.1448 +0 0.0706 +0 0.1580 +0 0.0535 +0 0.1158 +0 0.1012 +0 0.1447 +0 0.0507 +0 0.1006 +0 0.1325 +0 0.0829 +0 0.0656 +0 0.3482 +0 0.0429 +0 0.6057 +0 0.2040 +0 0.0855 +0 0.7382 +0 0.0730 +0 0.1454 +0 0.0679 +0 0.1020 +0 0.1198 +0 0.2714 +0 0.0989 +0 0.1369 +0 0.0640 +0 0.0869 +0 0.1939 +0 0.0379 +0 0.1264 +0 0.1095 +0 0.0988 +0 0.0563 +0 0.0564 +0 0.0573 +0 0.4679 +0 0.7395 +0 0.2870 +0 0.1128 +0 0.3290 +0 0.1327 +0 0.2024 +0 0.0614 +0 0.0928 +0 0.2536 +0 0.2535 +0 0.2039 +0 0.0775 +0 0.0873 +0 0.1772 +0 0.0573 +0 0.4150 +0 0.0765 +0 0.0534 +0 0.2010 +0 0.0927 +0 0.0574 +0 0.0633 +0 0.3558 +0 0.0629 +0 0.1031 +0 0.0484 +0 0.7006 +0 0.1700 +0 0.1503 +0 0.1955 +0 0.1634 +0 0.0609 +0 0.4673 +0 0.0923 +0 0.1161 +0 0.1540 +0 0.1620 +0 0.1030 +0 0.2100 +0 0.1284 +0 0.0579 +0 0.1519 +1 0.7538 +0 0.0638 +0 0.0665 +0 0.0707 +0 0.1252 +0 0.0367 +0 0.1558 +0 0.1067 +0 0.0332 +0 0.1467 +0 0.2663 +0 0.0590 +0 0.0391 +0 0.1303 +0 0.1775 +0 0.1367 +0 0.0614 +0 0.0604 +0 0.0858 +0 0.0443 +0 0.1299 +0 0.1246 +0 0.1195 +0 0.0775 +0 0.1758 +1 0.7894 +0 0.0663 +0 0.1779 +0 0.1512 +0 0.0921 +0 0.1048 +0 0.1745 +0 0.0968 +0 0.0666 +0 0.0772 +0 0.0539 +0 0.1121 +0 0.5312 +0 0.0518 +0 0.1509 +0 0.0515 +0 0.1706 +0 0.0926 +0 0.0457 +0 0.0673 +0 0.2266 +0 0.0859 +0 0.1228 +0 0.1205 +0 0.3109 +0 0.0978 +0 0.0829 +0 0.0537 +0 0.1894 +0 0.0876 +0 0.1099 +0 0.0965 +0 0.0782 +0 0.0677 +0 0.1228 +0 0.7099 +0 0.2881 +0 0.0997 +0 0.0402 +0 0.0352 +0 0.3436 +0 0.0959 +0 0.0443 +0 0.0827 +0 0.2245 +0 0.1044 +0 0.0533 +0 0.1683 +0 0.1932 +0 0.0948 +0 0.1458 +0 0.1028 +0 0.0954 +0 0.1590 +0 0.0661 +0 0.0921 +0 0.0388 +0 0.0832 +0 0.0978 +0 0.1724 +0 0.1115 +0 0.0757 +0 0.0858 +0 0.1718 +0 0.0844 +0 0.1000 +0 0.0735 +0 0.1094 +0 0.0731 +0 0.1169 +0 0.1599 +0 0.2550 +0 0.3002 +0 0.0840 +0 0.1411 +0 0.1370 +0 0.1191 +0 0.1362 +0 0.1906 +0 0.0579 +0 0.0630 +0 0.0800 +0 0.2588 +0 0.1099 +0 0.1605 +0 0.2631 +0 0.1448 +0 0.1231 +0 0.2253 +0 0.0569 +0 0.1446 +0 0.0635 +0 0.0593 +0 0.3017 +0 0.1210 +0 0.2150 +0 0.1108 +0 0.1204 +0 0.0845 +0 0.4268 +0 0.6839 +0 0.2076 +1 0.7587 +0 0.2923 +0 0.0895 +0 0.0607 +0 0.0989 +0 0.0576 +0 0.0509 +0 0.0750 +0 0.0625 +0 0.0963 +0 0.1054 +0 0.1037 +0 0.0796 +0 0.1621 +0 0.0860 +0 0.0691 +0 0.0605 +0 0.1631 +0 0.1038 +0 0.0444 +0 0.1064 +0 0.1614 +0 0.0568 +0 0.0526 +0 0.3192 +0 0.0589 +0 0.1670 +0 0.0757 +0 0.0765 +0 0.1940 +0 0.0746 +0 0.0570 +0 0.3049 +0 0.0814 +0 0.0675 +0 0.1004 +0 0.0858 +0 0.1110 +0 0.1066 +0 0.0802 +0 0.1118 +0 0.1275 +0 0.1273 +0 0.1358 +0 0.0410 +0 0.0664 +0 0.0704 +0 0.1172 +0 0.1147 +0 0.0902 +0 0.0620 +0 0.0679 +0 0.3381 +0 0.0491 +0 0.1655 +0 0.0380 +0 0.1407 +0 0.2407 +0 0.0763 +0 0.6911 +0 0.5955 +0 0.2981 +0 0.0914 +0 0.0741 +0 0.2774 +0 0.1779 +0 0.2207 +0 0.1157 +0 0.1661 +0 0.0898 +0 0.2018 +0 0.1037 +0 0.1454 +0 0.3049 +0 0.1641 +0 0.1972 +0 0.1914 +0 0.0505 +0 0.1017 +0 0.1123 +0 0.1068 +0 0.1417 +0 0.0760 +0 0.0932 +0 0.2142 +0 0.0796 +0 0.0541 +0 0.1279 +0 0.1080 +0 0.0819 +0 0.1517 +0 0.0739 +0 0.0759 +0 0.0486 +0 0.2989 +0 0.1267 +0 0.2089 +0 0.1031 +0 0.1836 +0 0.0338 +0 0.6627 +0 0.0605 +0 0.0746 +0 0.1523 +0 0.0949 +0 0.0666 +0 0.0937 +0 0.0372 +0 0.0826 +0 0.1304 +0 0.1404 +0 0.1564 +0 0.0842 +0 0.0913 +0 0.0774 +1 0.7629 +0 0.3947 +0 0.0551 +0 0.0672 +0 0.0618 +0 0.1741 +0 0.0392 +0 0.2286 +0 0.1018 +0 0.3116 +0 0.1734 +0 0.2217 +0 0.1020 +0 0.0684 +0 0.0952 +0 0.1201 +0 0.0625 +0 0.1808 +0 0.1344 +0 0.3474 +0 0.1660 +0 0.1249 +0 0.0642 +0 0.0938 +0 0.1724 +0 0.1121 +0 0.0935 +0 0.0807 +0 0.0509 +0 0.0443 +0 0.1468 +0 0.0509 +0 0.1917 +0 0.1208 +0 0.1137 +0 0.1275 +0 0.0521 +0 0.4727 +0 0.0919 +0 0.1669 +0 0.0569 +0 0.0417 +0 0.1211 +0 0.3133 +0 0.0954 +0 0.0930 +1 0.8611 +0 0.1258 +0 0.0692 +0 0.1254 +0 0.2721 +0 0.0766 +0 0.1051 +0 0.0524 +0 0.1450 +0 0.0731 +0 0.1504 +0 0.1294 +0 0.0616 +0 0.2890 +0 0.1163 +0 0.1353 +0 0.2743 +0 0.1448 +0 0.0790 +0 0.1825 +0 0.1059 +0 0.0604 +0 0.0854 +0 0.0935 +0 0.0358 +0 0.2215 +0 0.0398 +0 0.0828 +0 0.2059 +0 0.1007 +0 0.0776 +0 0.6080 +0 0.0505 +0 0.1132 +0 0.0671 +0 0.0493 +0 0.6952 +0 0.0734 +0 0.1053 +0 0.0654 +0 0.1312 +1 0.8163 +0 0.2992 +0 0.2201 +0 0.0616 +0 0.2126 +0 0.1955 +0 0.2189 +0 0.0709 +0 0.0498 +0 0.0687 +0 0.1403 +0 0.1800 +0 0.3828 +0 0.0598 +0 0.0800 +0 0.0694 +0 0.0912 +0 0.2302 +0 0.1350 +0 0.0699 +0 0.1923 +0 0.0906 +0 0.0887 +0 0.0541 +0 0.1480 +0 0.1760 +0 0.0854 +0 0.0987 +0 0.0821 +0 0.1005 +0 0.1882 +0 0.1001 +0 0.1074 +0 0.2624 +0 0.0409 +0 0.3763 +0 0.2361 +0 0.0618 +0 0.0728 +0 0.0377 +0 0.1007 +0 0.0964 +0 0.1643 +0 0.1041 +0 0.0460 +0 0.0291 +0 0.0906 +0 0.0597 +0 0.1205 +0 0.3626 +0 0.0642 +0 0.4500 +0 0.3624 +0 0.0627 +0 0.2019 +0 0.2688 +0 0.0650 +0 0.1027 +0 0.0881 +0 0.2100 +0 0.0369 +0 0.0942 +0 0.1267 +0 0.1990 +0 0.0829 +0 0.5140 +0 0.0654 +0 0.0578 +0 0.1040 +0 0.0556 +0 0.1219 +0 0.0501 +0 0.1124 +0 0.0960 +0 0.1053 +0 0.0622 +0 0.0684 +0 0.0857 +0 0.0920 +0 0.3286 +0 0.1683 +0 0.0925 +0 0.0330 +0 0.1207 +0 0.5058 +0 0.0990 +0 0.0941 +1 0.7525 +0 0.0943 +0 0.0608 +0 0.0815 +0 0.3591 +0 0.0600 +0 0.1522 +0 0.0947 +0 0.3327 +0 0.5252 +0 0.1419 +0 0.0667 +0 0.0830 +0 0.1273 +0 0.1169 +0 0.0776 +0 0.1629 +0 0.3003 +0 0.2590 +0 0.0608 +0 0.1178 +0 0.1167 +0 0.1304 +0 0.0425 +0 0.0464 +0 0.0575 +0 0.0657 +0 0.1839 +0 0.0922 +0 0.1315 +0 0.0618 +0 0.0832 +0 0.0379 +0 0.1187 +0 0.0709 +0 0.0791 +0 0.2687 +0 0.0557 +0 0.0538 +0 0.2703 +0 0.0447 +0 0.1163 +0 0.0821 +0 0.0708 +0 0.3525 +0 0.1342 +0 0.0574 +0 0.1505 +0 0.1539 +0 0.1388 +0 0.1004 +0 0.1586 +0 0.5202 +0 0.0620 +0 0.4925 +0 0.0692 +0 0.2240 +0 0.0878 +0 0.1238 +0 0.4559 +0 0.1377 +0 0.0974 +0 0.1176 +0 0.1138 +0 0.3649 +0 0.2041 +0 0.0558 +0 0.3287 +0 0.0854 +0 0.0857 +0 0.3084 +0 0.0688 +0 0.1221 +0 0.1304 +0 0.1560 +0 0.2347 +0 0.1545 +0 0.1031 +0 0.4510 +0 0.2434 +0 0.2609 +0 0.1346 +0 0.0471 +0 0.0871 +0 0.1484 +0 0.0606 +0 0.2386 +0 0.2552 +0 0.1534 +0 0.1719 +0 0.7439 +0 0.1452 +0 0.0428 +0 0.0788 +0 0.0498 +0 0.1979 +0 0.1149 +0 0.0878 +0 0.0824 +1 0.8418 +0 0.0478 +0 0.3438 +0 0.2656 +0 0.0488 +0 0.0746 +0 0.4426 +0 0.0770 +0 0.0812 +0 0.1588 +0 0.0839 +0 0.0980 +0 0.1080 +0 0.0824 +0 0.1199 +0 0.0578 +0 0.3978 +0 0.1228 +0 0.1456 +0 0.6485 +0 0.0381 +0 0.1633 +0 0.2343 +0 0.0497 +0 0.1759 +0 0.2087 +0 0.1665 +0 0.1719 +0 0.0712 +0 0.1118 +0 0.1905 +0 0.1343 +0 0.0595 +0 0.0591 +0 0.1527 +0 0.1055 +0 0.0513 +0 0.1375 +0 0.0560 +0 0.5884 +0 0.1309 +0 0.0810 +0 0.1045 +0 0.2223 +0 0.2361 +0 0.2582 +0 0.0850 +0 0.1061 +0 0.2029 +0 0.2195 +0 0.1007 +0 0.0732 +0 0.0626 +0 0.2104 +0 0.0732 +0 0.1358 +0 0.1420 +0 0.1595 +0 0.0321 +0 0.0885 +0 0.3917 +0 0.1244 +0 0.2703 +0 0.1083 +0 0.0841 +0 0.1391 +0 0.1847 +0 0.0767 +0 0.0621 +0 0.1853 +0 0.0722 +0 0.0758 +0 0.0454 +0 0.0400 +0 0.2374 +0 0.2264 +0 0.1022 +0 0.3401 +0 0.3858 +0 0.7174 +0 0.0942 +0 0.0954 +0 0.4155 +0 0.0710 +0 0.6951 +0 0.0983 +0 0.1282 +0 0.0624 +0 0.2719 +0 0.4377 +0 0.2201 +0 0.0377 +0 0.2117 +0 0.1175 +0 0.2394 +0 0.1040 +0 0.0864 +0 0.1055 +0 0.4669 +0 0.0714 +0 0.0441 +0 0.1939 +0 0.1993 +0 0.0632 +0 0.1703 +0 0.1073 +0 0.0919 +0 0.1735 +0 0.0737 +0 0.0648 +0 0.1075 +0 0.1881 +0 0.1099 +0 0.1239 +0 0.1528 +0 0.0601 +0 0.1514 +0 0.0609 +0 0.1843 +0 0.1697 +0 0.0615 +0 0.1506 +0 0.0905 +0 0.1841 +0 0.1191 +0 0.1454 +0 0.0848 +0 0.1883 +0 0.1061 +0 0.1592 +0 0.0725 +0 0.1246 +0 0.0664 +0 0.2097 +0 0.0898 +0 0.1274 +0 0.0776 +0 0.1358 +0 0.0907 +0 0.0975 +0 0.0635 +0 0.0930 +0 0.1020 +0 0.0545 +0 0.1516 +0 0.3826 +0 0.0818 +0 0.0579 +0 0.1093 +0 0.0971 +0 0.7177 +0 0.0986 +0 0.0911 +0 0.1084 +0 0.0541 +0 0.0744 +0 0.0848 +0 0.1094 +0 0.1868 +0 0.2769 +0 0.0969 +0 0.0851 +0 0.0753 +0 0.1166 +0 0.1141 +0 0.0708 +0 0.0460 +0 0.0448 +0 0.2951 +1 0.7679 +0 0.2990 +0 0.1813 +0 0.3688 +0 0.0574 +0 0.0719 +0 0.0996 +0 0.0949 +0 0.1111 +0 0.1293 +0 0.0862 +0 0.0748 +0 0.0902 +0 0.1688 +0 0.0370 +0 0.1056 +0 0.0920 +0 0.1356 +0 0.1905 +0 0.0431 +0 0.0434 +0 0.0665 +0 0.0745 +0 0.1457 +0 0.1332 +0 0.0803 +0 0.1020 +0 0.2081 +0 0.1184 +0 0.1423 +0 0.1728 +0 0.0638 +0 0.1164 +0 0.2231 +0 0.2050 +0 0.1826 +0 0.1897 +0 0.1115 +0 0.0941 +0 0.2583 +0 0.3743 +0 0.0700 +0 0.1117 +0 0.0466 +0 0.1047 +0 0.1944 +0 0.1413 +0 0.1164 +0 0.1849 +0 0.1178 +0 0.1963 +0 0.2010 +0 0.0642 +0 0.0860 +0 0.0452 +0 0.0637 +0 0.0572 +0 0.0651 +0 0.2882 +0 0.1086 +0 0.1239 +0 0.0651 +0 0.0703 +0 0.1252 +0 0.0549 +0 0.0703 +0 0.0812 +0 0.1075 +0 0.1827 +0 0.3238 +0 0.0831 +0 0.1973 +0 0.0765 +0 0.3423 +0 0.1441 +0 0.1056 +0 0.0777 +0 0.0861 +0 0.1186 +0 0.1438 +0 0.1543 +0 0.5091 +0 0.4228 +0 0.0869 +0 0.1188 +0 0.0483 +0 0.0753 +0 0.1205 +0 0.0664 +0 0.0935 +0 0.2679 +0 0.0709 +0 0.0736 +0 0.1469 +0 0.0550 +0 0.1226 +0 0.1135 +0 0.1532 +0 0.0780 +0 0.0622 +1 0.8222 +0 0.0913 +0 0.6419 +0 0.2014 +0 0.0572 +0 0.0663 +0 0.3220 +0 0.1727 +0 0.1105 +0 0.1339 +0 0.1407 +0 0.0676 +0 0.1718 +0 0.0473 +0 0.0743 +0 0.0956 +0 0.2164 +0 0.1746 +0 0.1277 +0 0.1107 +0 0.1085 +0 0.1146 +0 0.0864 +0 0.1810 +0 0.0528 +0 0.1559 +0 0.0871 +0 0.1752 +0 0.1635 +0 0.1014 +0 0.0856 +0 0.0976 +0 0.1799 +0 0.0372 +0 0.1046 +0 0.0969 +0 0.3643 +0 0.0530 +0 0.0976 +0 0.1096 +0 0.1201 +0 0.0754 +0 0.1167 +0 0.1562 +0 0.3577 +0 0.1065 +0 0.0817 +0 0.0972 +0 0.1143 +0 0.0873 +0 0.0786 +0 0.1015 +0 0.1893 +0 0.1079 +0 0.1631 +0 0.0326 +0 0.1812 +0 0.0488 +1 0.8020 +0 0.0548 +0 0.1054 +0 0.0545 +0 0.0560 +0 0.2929 +0 0.2482 +0 0.0628 +0 0.1377 +0 0.1842 +0 0.2725 +0 0.0855 +0 0.3333 +0 0.1462 +0 0.0620 +0 0.0863 +0 0.0682 +0 0.0735 +0 0.1799 +0 0.1768 +0 0.1174 +0 0.0704 +0 0.0777 +0 0.0975 +0 0.1011 +0 0.0846 +0 0.1210 +0 0.1135 +0 0.4305 +0 0.3333 +0 0.1322 +0 0.1423 +0 0.1083 +0 0.0351 +0 0.0366 +0 0.0507 +0 0.0619 +0 0.1316 +0 0.1121 +0 0.0372 +0 0.1111 +0 0.1691 +0 0.1626 +0 0.0967 +0 0.1444 +0 0.2075 +0 0.0925 +0 0.0836 +0 0.1182 +0 0.4162 +0 0.0794 +0 0.1505 +0 0.1459 +0 0.1870 +0 0.0824 +0 0.1486 +0 0.1787 +0 0.0437 +0 0.0923 +0 0.0749 +1 0.7836 +0 0.0896 +0 0.1833 +0 0.0714 +0 0.0468 +0 0.3198 +0 0.3748 +0 0.0737 +0 0.1723 +0 0.0908 +0 0.0363 +0 0.1310 +0 0.1469 +0 0.1179 +0 0.0311 +0 0.1543 +0 0.0837 +0 0.1659 +0 0.0374 +0 0.2414 +0 0.1308 +0 0.0922 +0 0.0707 +0 0.4459 +0 0.1077 +0 0.0717 +0 0.0550 +0 0.1789 +0 0.0701 +0 0.1129 +0 0.0824 +0 0.1226 +0 0.0484 +0 0.5653 +0 0.7068 +0 0.0838 +1 0.8908 +0 0.0947 +0 0.0641 +0 0.0486 +0 0.0699 +0 0.1317 +0 0.2501 +0 0.0761 +0 0.0751 +0 0.2963 +0 0.1310 +0 0.6988 +0 0.1139 +0 0.1721 +0 0.0833 +0 0.0541 +0 0.0994 +0 0.1036 +0 0.1135 +0 0.0669 +0 0.0849 +0 0.2856 +0 0.1125 +0 0.0498 +0 0.0443 +0 0.1429 +0 0.1042 +0 0.0615 +0 0.1107 +0 0.1767 +0 0.2798 +0 0.0717 +0 0.1706 +0 0.0531 +0 0.0745 +0 0.0819 +0 0.1679 +0 0.1427 +0 0.0454 +0 0.0527 +0 0.1028 +0 0.0548 +0 0.1080 +0 0.0886 +0 0.1031 +0 0.3292 +0 0.0832 +0 0.2164 +0 0.1014 +0 0.0990 +0 0.1180 +0 0.1510 +0 0.1280 +0 0.0575 +0 0.0588 +0 0.0387 +0 0.1737 +0 0.1507 +0 0.0695 +0 0.0810 +0 0.0676 +0 0.3262 +0 0.0687 +0 0.1122 +0 0.0501 +0 0.0836 +0 0.0661 +0 0.0894 +0 0.2364 +0 0.0944 +0 0.0544 +0 0.0968 +0 0.0643 +0 0.1134 +0 0.0438 +0 0.1349 +0 0.1073 +0 0.0877 +0 0.1797 +0 0.0713 +0 0.0813 +0 0.0606 +0 0.3146 +0 0.0537 +0 0.0703 +0 0.1133 +0 0.1591 +0 0.1399 +0 0.2149 +0 0.2788 +0 0.1878 +0 0.0947 +0 0.1040 +0 0.0916 +0 0.0818 +0 0.0868 +0 0.0424 +0 0.0968 +0 0.0604 +0 0.3272 +0 0.3354 +0 0.0958 +0 0.0651 +0 0.0800 +0 0.0707 +0 0.0975 +0 0.7219 +0 0.0901 +0 0.2403 +0 0.0696 +0 0.2900 +0 0.0497 +0 0.1070 +0 0.0850 +0 0.0799 +0 0.1841 +0 0.0693 +0 0.1124 +0 0.0581 +0 0.0959 +0 0.0591 +0 0.1990 +0 0.1273 +0 0.6066 +0 0.1414 +0 0.2184 +0 0.2038 +0 0.0643 +0 0.2873 +0 0.0533 +0 0.3378 +0 0.2121 +0 0.1123 +0 0.0661 +0 0.0849 +0 0.2916 +0 0.0813 +0 0.0746 +0 0.5198 +0 0.2059 +0 0.2187 +0 0.1035 +0 0.1086 +0 0.0363 +0 0.1655 +0 0.1205 +0 0.2130 +0 0.1271 +0 0.2554 +0 0.0682 +0 0.1680 +0 0.0492 +0 0.1310 +0 0.4058 +0 0.1605 +1 0.8168 +0 0.0644 +0 0.1838 +0 0.2008 +0 0.0843 +0 0.0670 +0 0.1315 +0 0.1345 +0 0.1082 +0 0.0850 +0 0.0686 +0 0.2215 +0 0.0591 +0 0.0913 +0 0.3690 +0 0.0551 +0 0.1103 +0 0.2009 +0 0.1739 +0 0.0517 +0 0.3867 +0 0.0545 +0 0.1208 +0 0.2525 +0 0.1294 +0 0.1061 +0 0.0929 +0 0.2147 +0 0.0665 +0 0.1747 +0 0.0835 +0 0.0895 +0 0.1039 +0 0.1424 +0 0.0921 +0 0.5326 +0 0.0492 +0 0.1972 +0 0.0566 +0 0.1231 +0 0.2458 +0 0.4289 +0 0.0472 +0 0.0487 +0 0.0673 +0 0.0858 +0 0.2113 +0 0.3004 +0 0.0738 +0 0.1616 +0 0.0666 +0 0.0711 +0 0.0877 +0 0.0953 +0 0.1545 +0 0.1206 +0 0.0543 +0 0.1020 +0 0.1915 +0 0.0551 +0 0.0669 +0 0.3222 +0 0.0481 +0 0.0639 +0 0.2639 +0 0.1320 +0 0.0634 +0 0.0758 +0 0.1039 +0 0.4678 +0 0.1550 +0 0.1088 +0 0.0845 +0 0.0682 +0 0.0673 +0 0.1669 +0 0.1405 +0 0.5845 +0 0.1119 +0 0.0870 +0 0.0948 +0 0.1684 +0 0.1425 +0 0.1139 +0 0.0431 +0 0.2478 +0 0.0914 +0 0.1455 +0 0.0785 +0 0.0861 +0 0.0778 +0 0.0915 +0 0.0630 +0 0.1705 +0 0.1246 +0 0.0629 +0 0.1012 +0 0.0457 +0 0.1474 +0 0.1606 +0 0.0493 +0 0.0792 +0 0.0443 +0 0.0478 +0 0.0731 +0 0.1390 +0 0.1167 +0 0.1650 +0 0.0853 +0 0.1790 +0 0.0573 +0 0.0674 +0 0.2503 +0 0.1141 +0 0.0704 +0 0.0706 +0 0.1561 +0 0.1064 +0 0.0806 +0 0.0436 +0 0.1670 +0 0.1012 +0 0.2365 +0 0.1501 +0 0.0533 +0 0.0933 +0 0.4554 +0 0.0717 +0 0.2454 +0 0.1070 +0 0.1490 +0 0.1169 +1 0.3660 +0 0.1416 +0 0.2321 +0 0.2020 +0 0.1932 +0 0.0910 +0 0.0814 +0 0.1180 +0 0.0509 +0 0.1417 +0 0.0884 +0 0.0844 +0 0.1049 +0 0.2211 +0 0.0830 +0 0.0548 +0 0.1348 +0 0.0672 +0 0.0535 +0 0.0726 +0 0.1533 +0 0.1995 +0 0.0465 +0 0.0810 +0 0.0580 +0 0.0787 +0 0.1099 +0 0.1653 +0 0.0808 +0 0.0937 +0 0.1466 +0 0.0901 +0 0.3117 +0 0.2116 +0 0.1361 +0 0.0973 +0 0.1759 +0 0.6534 +0 0.1031 +0 0.4405 +0 0.1708 +0 0.3980 +0 0.1291 +0 0.1117 +0 0.1244 +0 0.0515 +0 0.3334 +0 0.0437 +0 0.3298 +0 0.7498 +0 0.0731 +0 0.0782 +0 0.2462 +0 0.0993 +0 0.0465 +0 0.0644 +0 0.1507 +0 0.1166 +0 0.2244 +0 0.0998 +0 0.0476 +0 0.2019 +0 0.0296 +0 0.1279 +0 0.4084 +0 0.2751 +0 0.2055 +0 0.1548 +0 0.0727 +0 0.1920 +0 0.1132 +0 0.1724 +0 0.1444 +0 0.0696 +0 0.1244 +0 0.1150 +0 0.2547 +0 0.3529 +0 0.1097 +0 0.3531 +0 0.0694 +0 0.0990 +0 0.0614 +0 0.0935 +0 0.0455 +0 0.0947 +0 0.1307 +0 0.0660 +0 0.0910 +0 0.1380 +0 0.4608 +0 0.4616 +0 0.1632 +0 0.1001 +0 0.0459 +0 0.3878 +0 0.0554 +0 0.1434 +0 0.0514 +0 0.1275 +0 0.1353 +0 0.1691 +0 0.1596 +0 0.0830 +0 0.0922 +0 0.2355 +0 0.6929 +0 0.0389 +0 0.7038 +0 0.0673 +0 0.1040 +1 0.8879 +0 0.1393 +0 0.0547 +0 0.0391 +0 0.0800 +0 0.2262 +0 0.4526 +0 0.0407 +0 0.1084 +0 0.0428 +0 0.1472 +0 0.2754 +0 0.1373 +0 0.1455 +0 0.0520 +0 0.1377 +0 0.0806 +0 0.0560 +0 0.0750 +0 0.1259 +0 0.1622 +0 0.2464 +0 0.1053 +0 0.1548 +0 0.0468 +0 0.0323 +0 0.1010 +0 0.2115 +0 0.0664 +0 0.7344 +0 0.0678 +0 0.1099 +0 0.0681 +0 0.1390 +0 0.1463 +0 0.0770 +0 0.1331 +0 0.0922 +0 0.1001 +0 0.1237 +0 0.1636 +0 0.0589 +0 0.0754 +0 0.6704 +0 0.5073 +0 0.0672 +0 0.1219 +0 0.0613 +0 0.1931 +0 0.2677 +0 0.1304 +0 0.0411 +0 0.1041 +0 0.3372 +0 0.3990 +0 0.2430 +0 0.1135 +0 0.0975 +0 0.0898 +0 0.1007 +0 0.0910 +0 0.6579 +0 0.2049 +1 0.8477 +0 0.0816 +0 0.0589 +0 0.1084 +0 0.0784 +0 0.2904 +0 0.1273 +0 0.0362 +0 0.0962 +0 0.2077 +0 0.0877 +0 0.2277 +0 0.1652 +0 0.1828 +0 0.0952 +0 0.1043 +0 0.1148 +0 0.0856 +0 0.1112 +0 0.0740 +0 0.0750 +0 0.0653 +0 0.7239 +0 0.4502 +0 0.2644 +0 0.5513 +0 0.1428 +0 0.1855 +0 0.5237 +0 0.2385 +0 0.6090 +0 0.1676 +0 0.2079 +0 0.1066 +0 0.0788 +0 0.1236 +0 0.1264 +0 0.3591 +0 0.2076 +0 0.2215 +0 0.0591 +0 0.2778 +0 0.1760 +0 0.0565 +0 0.0682 +0 0.1132 +0 0.1082 +0 0.1774 +0 0.0402 +0 0.1036 +0 0.2297 +0 0.0372 +0 0.1026 +0 0.0942 +0 0.0916 +0 0.0886 +0 0.0813 +0 0.0871 +0 0.0963 +0 0.1290 +0 0.1680 +0 0.1622 +0 0.0934 +0 0.2010 +0 0.0647 +0 0.0581 +0 0.3821 +0 0.0592 +0 0.0746 +0 0.0389 +0 0.1030 +0 0.0770 +0 0.1767 +0 0.2840 +0 0.1256 +0 0.1056 +0 0.1167 +0 0.0685 +0 0.4809 +0 0.0503 +0 0.1808 +0 0.0802 +0 0.2069 +0 0.2061 +0 0.0818 +0 0.0766 +0 0.7075 +0 0.4533 +0 0.2058 +0 0.6728 +0 0.0462 +0 0.1287 +0 0.0945 +0 0.0893 +0 0.0914 +0 0.2533 +0 0.0986 +0 0.0926 +0 0.1662 +0 0.2597 +0 0.1257 +0 0.0846 +0 0.1293 +0 0.3210 +0 0.0846 +0 0.6307 +0 0.0989 +0 0.0676 +0 0.1516 +0 0.0694 +0 0.0970 +0 0.1043 +0 0.0617 +0 0.0960 +0 0.1899 +0 0.0700 +0 0.0451 +0 0.1170 +0 0.0596 +0 0.1415 +0 0.0612 +0 0.1114 +0 0.0791 +0 0.6751 +0 0.0718 +0 0.0557 +0 0.0665 +0 0.1489 +0 0.0566 +0 0.1401 +0 0.0720 +0 0.1109 +0 0.2067 +0 0.1186 +0 0.0850 +0 0.1206 +0 0.2347 +0 0.3755 +0 0.0874 +0 0.4636 +0 0.0800 +0 0.0529 +0 0.0987 +0 0.0489 +0 0.0687 +0 0.0305 +0 0.0742 +0 0.0516 +0 0.3873 +0 0.0986 +0 0.2317 +0 0.0787 +0 0.0323 +0 0.0853 +0 0.0899 +0 0.4283 +0 0.2162 +0 0.1075 +0 0.2427 +0 0.1155 +0 0.4838 +0 0.3710 +0 0.0563 +0 0.3556 +0 0.0654 +0 0.1137 +0 0.0944 +0 0.0618 +0 0.3882 +0 0.0979 +0 0.2349 +0 0.0413 +0 0.1443 +0 0.0715 +0 0.0953 +0 0.0664 +0 0.1773 +0 0.7487 +0 0.0802 +0 0.0768 +0 0.0925 +0 0.6585 +0 0.0821 +0 0.2301 +0 0.1429 +0 0.1478 +0 0.0790 +0 0.2612 +0 0.1137 +0 0.1857 +1 0.8266 +0 0.0367 +0 0.0514 +0 0.1095 +0 0.2165 +0 0.1443 +0 0.1805 +0 0.1623 +0 0.1234 +0 0.2723 +0 0.1603 +0 0.1448 +0 0.1246 +0 0.0527 +0 0.1503 +0 0.1913 +0 0.2987 +0 0.0552 +0 0.0734 +0 0.1721 +0 0.1332 +0 0.0634 +0 0.1075 +1 0.8099 +0 0.1812 +0 0.0355 +0 0.0786 +0 0.0663 +0 0.2056 +0 0.0770 +0 0.0640 +0 0.0767 +0 0.0567 +0 0.0859 +0 0.1278 +0 0.1227 +0 0.0674 +0 0.0813 +0 0.0434 +0 0.1254 +0 0.0779 +0 0.1368 +0 0.0977 +0 0.0883 +0 0.1118 +0 0.1289 +0 0.0414 +0 0.1481 +0 0.0910 +0 0.5261 +0 0.2049 +0 0.0684 +0 0.0467 +0 0.2187 +0 0.1452 +0 0.0694 +0 0.1013 +0 0.2380 +0 0.0660 +0 0.0496 +0 0.0591 +0 0.5941 +0 0.1518 +0 0.0456 +0 0.1030 +0 0.1678 +0 0.1899 +0 0.3371 +0 0.0514 +0 0.0994 +0 0.7305 +0 0.7325 +0 0.0383 +0 0.2923 +0 0.2911 +0 0.2028 +0 0.1201 +0 0.1249 +0 0.0507 +0 0.6169 +0 0.0729 +0 0.1433 +0 0.0502 +0 0.3740 +0 0.6727 +0 0.1144 +0 0.0466 +1 0.7998 +0 0.1053 +0 0.0992 +0 0.1775 +0 0.0890 +0 0.1595 +0 0.1040 +0 0.2975 +0 0.1384 +0 0.1866 +0 0.0852 +0 0.1034 +0 0.6733 +0 0.1232 +0 0.6661 +0 0.0645 +0 0.0571 +0 0.1198 +0 0.0726 +0 0.1952 +0 0.0953 +0 0.2041 +0 0.1101 +0 0.0967 +0 0.3686 +0 0.0547 +0 0.0666 +0 0.1117 +0 0.0910 +0 0.1781 +0 0.1055 +0 0.0536 +0 0.1351 +0 0.1750 +0 0.0523 +0 0.1001 +0 0.0577 +0 0.7281 +0 0.3630 +0 0.0775 +0 0.1025 +0 0.0425 +0 0.1241 +0 0.0535 +0 0.1234 +0 0.6799 +0 0.1661 +0 0.0711 +0 0.0802 +0 0.1112 +0 0.0903 +0 0.0652 +0 0.0787 +0 0.0925 +1 0.7802 +0 0.0786 +0 0.1119 +0 0.0458 +0 0.0472 +0 0.0546 +0 0.0995 +0 0.1199 +0 0.0459 +0 0.1068 +0 0.1180 +0 0.1321 +0 0.0952 +0 0.1138 +0 0.0736 +0 0.1344 +0 0.0610 +0 0.0889 +0 0.0567 +0 0.1785 +0 0.0658 +0 0.0952 +0 0.2412 +0 0.1142 +0 0.2662 +0 0.7488 +0 0.2033 +0 0.0625 +0 0.2194 +0 0.2750 +0 0.2817 +0 0.2333 +0 0.1582 +0 0.1021 +0 0.4371 +0 0.2714 +0 0.0904 +0 0.0862 +0 0.0724 +0 0.1050 +0 0.1384 +0 0.1103 +0 0.1224 +0 0.0691 +0 0.0739 +0 0.4519 +0 0.0557 +0 0.0843 +0 0.1190 +0 0.0577 +0 0.2139 +0 0.0637 +0 0.0550 +0 0.0310 +0 0.0545 +0 0.1186 +0 0.1717 +0 0.2898 +0 0.1657 +0 0.1555 +0 0.0843 +0 0.1320 +0 0.0430 +0 0.1010 +0 0.0496 +0 0.0712 +0 0.0597 +0 0.1434 +0 0.0357 +0 0.4321 +0 0.0608 +0 0.0512 +1 0.8184 +0 0.0718 +0 0.1131 +0 0.1370 +0 0.2709 +0 0.1498 +0 0.1288 +0 0.0745 +0 0.0997 +0 0.0630 +0 0.1247 +0 0.0831 +0 0.1262 +0 0.1481 +0 0.0931 +0 0.0480 +0 0.0902 +0 0.0734 +0 0.0387 +0 0.3047 +0 0.0924 +0 0.0675 +0 0.0349 +0 0.0645 +0 0.0826 +0 0.1804 +0 0.0912 +0 0.0418 +0 0.0738 +0 0.1512 +0 0.1433 +0 0.0680 +1 0.7553 +0 0.2237 +0 0.0812 +0 0.0346 +0 0.2004 +0 0.0704 +0 0.3861 +0 0.1261 +0 0.3151 +0 0.0607 +0 0.1546 +0 0.7344 +0 0.1787 +0 0.1115 +0 0.0486 +0 0.0990 +0 0.0489 +0 0.1023 +0 0.0701 +0 0.1251 +0 0.2032 +0 0.3866 +0 0.0916 +0 0.1319 +0 0.1253 +0 0.1013 +0 0.4070 +0 0.0814 +0 0.4420 +0 0.0650 +0 0.0807 +0 0.0749 +0 0.4649 +0 0.1212 +0 0.1166 +0 0.1867 +0 0.0674 +0 0.0950 +0 0.1109 +0 0.1157 +0 0.1059 +0 0.0550 +0 0.1277 +0 0.0878 +0 0.0694 +0 0.2242 +0 0.1358 +0 0.2942 +0 0.1720 +0 0.1057 +0 0.0907 +0 0.3269 +0 0.7046 +0 0.1546 +0 0.1070 +0 0.0316 +0 0.0941 +0 0.2500 +0 0.0784 +0 0.0616 +0 0.1423 +0 0.1676 +0 0.0503 +0 0.1670 +0 0.0809 +0 0.3011 +0 0.1361 +0 0.2058 +0 0.2105 +0 0.2277 +0 0.1452 +0 0.0946 +0 0.1256 +0 0.1446 +0 0.0459 +0 0.1529 +0 0.2579 +0 0.1400 +0 0.7179 +0 0.0510 +0 0.0804 +0 0.0630 +0 0.0678 +0 0.2052 +0 0.0722 +0 0.2734 +0 0.0898 +0 0.0865 +0 0.1901 +0 0.2032 +0 0.0742 +0 0.0897 +0 0.0647 +0 0.0817 +0 0.1256 +0 0.0861 +0 0.1506 +0 0.0684 +0 0.0720 +0 0.2324 +0 0.1376 +0 0.1529 +0 0.2121 +0 0.0797 +0 0.0982 +0 0.0998 +0 0.1022 +0 0.1038 +0 0.0582 +0 0.2228 +0 0.1739 +0 0.2207 +0 0.1450 +0 0.0723 +0 0.0693 +0 0.0933 +0 0.1295 +0 0.0471 +0 0.2511 +0 0.6429 +1 0.7746 +0 0.0671 +0 0.0900 +0 0.0703 +0 0.0928 +0 0.0740 +0 0.3722 +0 0.2711 +0 0.0838 +0 0.4953 +0 0.3633 +0 0.0750 +0 0.0874 +0 0.0571 +0 0.0655 +0 0.2495 +0 0.1334 +0 0.1300 +0 0.1179 +0 0.0581 +0 0.0805 +0 0.1015 +0 0.2622 +0 0.3226 +0 0.0673 +0 0.0656 +0 0.1594 +0 0.1121 +0 0.4918 +0 0.0864 +0 0.2600 +0 0.1174 +0 0.3862 +0 0.1294 +0 0.0911 +0 0.1428 +0 0.1625 +0 0.0592 +1 0.8124 +0 0.0780 +0 0.0838 +0 0.0353 +0 0.1751 +0 0.3135 +0 0.1024 +0 0.1301 +0 0.0885 +0 0.1249 +0 0.0700 +0 0.3386 +0 0.1960 +0 0.0530 +0 0.2332 +0 0.0635 +0 0.0817 +0 0.0575 +0 0.0933 +0 0.1220 +0 0.1307 +0 0.0361 +0 0.0876 +0 0.1712 +0 0.0741 +0 0.1278 +0 0.0651 +0 0.0435 +0 0.1483 +0 0.1177 +0 0.1326 +0 0.0321 +0 0.0349 +0 0.0672 +0 0.0950 +0 0.1030 +0 0.0700 +0 0.1550 +0 0.0846 +0 0.0738 +0 0.1172 +0 0.1691 +0 0.1985 +0 0.1467 +0 0.0400 +0 0.6595 +0 0.1284 +0 0.1343 +0 0.0775 +0 0.0950 +0 0.4463 +0 0.0798 +1 0.7983 +0 0.1110 +0 0.1085 +0 0.1476 +0 0.0683 +0 0.0519 +0 0.0453 +0 0.1427 +0 0.0585 +0 0.1914 +0 0.1173 +0 0.1875 +0 0.0759 +0 0.0714 +0 0.1173 +0 0.1339 +0 0.0990 +0 0.2094 +0 0.4404 +0 0.0513 +0 0.0903 +0 0.1137 +0 0.1757 +0 0.6085 +0 0.0507 +0 0.2348 +0 0.1213 +0 0.0851 +0 0.2460 +0 0.1071 +0 0.0688 +0 0.1331 +0 0.1099 +0 0.0653 +0 0.0423 +0 0.0936 +0 0.1344 +0 0.0389 +0 0.0592 +0 0.0884 +0 0.0555 +0 0.0773 +0 0.1169 +0 0.1044 +0 0.2278 +0 0.1774 +0 0.0538 +0 0.0580 +0 0.4084 +0 0.0718 +0 0.1448 +0 0.0743 +0 0.1983 +0 0.0711 +0 0.0841 +0 0.1501 +0 0.1065 +0 0.3327 +0 0.6996 +0 0.6058 +0 0.1096 +0 0.1949 +0 0.2487 +0 0.0826 +0 0.0814 +0 0.1764 +0 0.0554 +0 0.1140 +0 0.0833 +0 0.0655 +0 0.0432 +0 0.0828 +0 0.2855 +0 0.0519 +0 0.0463 +0 0.1568 +0 0.1762 +0 0.0581 +0 0.1887 +0 0.2134 +0 0.0861 +0 0.0997 +0 0.1070 +0 0.0363 +0 0.1727 +0 0.2632 +0 0.0723 +0 0.1501 +0 0.0949 +0 0.2158 +0 0.2432 +0 0.0620 +0 0.1186 +0 0.2602 +0 0.0633 +0 0.0543 +0 0.1703 +0 0.2771 +0 0.0708 +0 0.0998 +0 0.2034 +0 0.0765 +0 0.1476 +0 0.1543 +0 0.3480 +0 0.2262 +0 0.0740 +0 0.0744 +0 0.2260 +0 0.2287 +0 0.0898 +0 0.2369 +0 0.0926 +0 0.1157 +0 0.2315 +0 0.3238 +0 0.0761 +0 0.0459 +0 0.0753 +0 0.0736 +0 0.0675 +0 0.1308 +0 0.6861 +0 0.3678 +0 0.0375 +0 0.0798 +0 0.1618 +0 0.2089 +0 0.0644 +0 0.1056 +0 0.0312 +0 0.1047 +0 0.0667 +0 0.0573 +0 0.1059 +0 0.2069 +0 0.0681 +0 0.2293 +1 0.7977 +0 0.0933 +0 0.1857 +0 0.1596 +0 0.1098 +0 0.2552 +0 0.1465 +0 0.0678 +0 0.1722 +0 0.1077 +0 0.1665 +0 0.0682 +0 0.0608 +0 0.4850 +0 0.0758 +0 0.4291 +0 0.0848 +0 0.1707 +0 0.2202 +0 0.1210 +0 0.1258 +0 0.1034 +0 0.0846 +0 0.2157 +0 0.0594 +0 0.1205 +0 0.1794 +0 0.0460 +0 0.1320 +0 0.0991 +0 0.1434 +0 0.1358 +0 0.0905 +0 0.0491 +0 0.0743 +0 0.0955 +1 0.8257 +0 0.1586 +0 0.0729 +0 0.1133 +0 0.1998 +0 0.0516 +1 0.7941 +0 0.1590 +0 0.4294 +0 0.1541 +0 0.1114 +0 0.0632 +1 0.8644 +0 0.1049 +0 0.0667 +0 0.0370 +0 0.0606 +0 0.0734 +0 0.1130 +0 0.2285 +0 0.1795 +0 0.0569 +0 0.0945 +0 0.0993 +0 0.1213 +0 0.3303 +0 0.1047 +0 0.3936 +0 0.0555 +0 0.1557 +0 0.0924 +0 0.0893 +0 0.1056 +0 0.3488 +0 0.1242 +0 0.0447 +0 0.0645 +0 0.0795 +0 0.0916 +0 0.0745 +0 0.0945 +0 0.0612 +0 0.1541 +0 0.2075 +0 0.1249 +0 0.0904 +0 0.0822 +0 0.0803 +0 0.2115 +0 0.0460 +0 0.1228 +0 0.0643 +0 0.1250 +0 0.1011 +0 0.0724 +0 0.1717 +0 0.3127 +0 0.1360 +0 0.5619 +0 0.1028 +0 0.0687 +0 0.0736 +0 0.4614 +0 0.0554 +0 0.1411 +0 0.0548 +0 0.1231 +0 0.1090 +0 0.1128 +0 0.0623 +0 0.0595 +0 0.0618 +0 0.1365 +0 0.0961 +0 0.2366 +0 0.0566 +0 0.1203 +0 0.3195 +0 0.1469 +0 0.0917 +1 0.8191 +0 0.0634 +0 0.2185 +0 0.1988 +0 0.1081 +0 0.1907 +0 0.3158 +0 0.1334 +0 0.0855 +0 0.0783 +0 0.0675 +0 0.0650 +0 0.0939 +0 0.1363 +0 0.2127 +0 0.1737 +0 0.1045 +0 0.0496 +0 0.2620 +0 0.3131 +0 0.0890 +0 0.0960 +0 0.1597 +0 0.0946 +0 0.1672 +0 0.3035 +0 0.0872 +0 0.1408 +0 0.1608 +1 0.7945 +0 0.0793 +0 0.1667 +0 0.0538 +0 0.0681 +0 0.1326 +0 0.0615 +0 0.0875 +0 0.1201 +0 0.1027 +0 0.0739 +0 0.0896 +0 0.2399 +0 0.1849 +0 0.0918 +0 0.1494 +0 0.1672 +0 0.0476 +0 0.1134 +0 0.0844 +0 0.0902 +0 0.0929 +0 0.0583 +0 0.0979 +0 0.2026 +0 0.0979 +0 0.1025 +0 0.0916 +0 0.0839 +0 0.0996 +0 0.1141 +0 0.0787 +0 0.1367 +0 0.0822 +0 0.1243 +1 0.7994 +0 0.1252 +0 0.1377 +0 0.1992 +0 0.1594 +0 0.1464 +0 0.0719 +0 0.1093 +0 0.0988 +0 0.3325 +0 0.0497 +0 0.1393 +0 0.5076 +0 0.0973 +0 0.1126 +0 0.1781 +0 0.1349 +0 0.1267 +1 0.8208 +0 0.0505 +0 0.2194 +0 0.1920 +0 0.2053 +0 0.0899 +0 0.2313 +0 0.6848 +0 0.0429 +0 0.0500 +0 0.0374 +0 0.0418 +0 0.3318 +0 0.1557 +0 0.0994 +0 0.2050 +0 0.0457 +0 0.0972 +0 0.0960 +0 0.3496 +0 0.1200 +0 0.0664 +0 0.1620 +0 0.1257 +0 0.2203 +0 0.1172 +0 0.0572 +0 0.1091 +0 0.1862 +0 0.3542 +0 0.0887 +0 0.0576 +0 0.0850 +0 0.0661 +0 0.0421 +1 0.7658 +0 0.2527 +0 0.4107 +0 0.1152 +0 0.1046 +0 0.0835 +0 0.0787 +0 0.0576 +0 0.0465 +0 0.1314 +1 0.8177 +0 0.1350 +0 0.1255 +0 0.0793 +0 0.1152 +0 0.2530 +0 0.1526 +0 0.1938 +0 0.1137 +0 0.1082 +0 0.0678 +0 0.3358 +0 0.0904 +0 0.2653 +0 0.0801 +0 0.1129 +0 0.2619 +0 0.1182 +0 0.0791 +0 0.0876 +0 0.1303 +0 0.2113 +0 0.7091 +0 0.1000 +0 0.1177 +0 0.7130 +0 0.0818 +0 0.1305 +0 0.0852 +0 0.1228 +0 0.3218 +0 0.6965 +0 0.0468 +0 0.0911 +0 0.1679 +0 0.0787 +0 0.2477 +0 0.0612 +0 0.1204 +0 0.1460 +0 0.0733 +0 0.2094 +0 0.0338 +0 0.2377 +0 0.0598 +0 0.1115 +0 0.1922 +0 0.1726 +0 0.1095 +0 0.0701 +0 0.0702 +0 0.0968 +0 0.2001 +0 0.2670 +0 0.2937 +0 0.0414 +0 0.3010 +0 0.1077 +0 0.2352 +0 0.0501 +0 0.0348 +0 0.0804 +0 0.0535 +0 0.3193 +0 0.0944 +0 0.1266 +0 0.0641 +0 0.0799 +0 0.0615 +0 0.0785 +0 0.0681 +0 0.0667 +0 0.0964 +0 0.1076 +0 0.2219 +0 0.1813 +0 0.2143 +0 0.1717 +0 0.1211 +0 0.0627 +0 0.0652 +0 0.1424 +0 0.2697 +0 0.1029 +0 0.3705 +0 0.0921 +0 0.0383 +0 0.0809 +0 0.0375 +0 0.0682 +0 0.1342 +0 0.2558 +0 0.3201 +0 0.0497 +0 0.1773 +0 0.6280 +0 0.0700 +0 0.0440 +0 0.4571 +0 0.3921 +0 0.0724 +0 0.1884 +0 0.2579 +0 0.1258 +0 0.2209 +0 0.2223 +0 0.0845 +0 0.1631 +0 0.0607 +0 0.0676 +0 0.1163 +0 0.0713 +0 0.1026 +0 0.0769 +0 0.1185 +0 0.1326 +0 0.0767 +0 0.2445 +0 0.4491 +0 0.1551 +0 0.1187 +0 0.0808 +0 0.1213 +0 0.0606 +0 0.2403 +0 0.5240 +0 0.0916 +0 0.1136 +0 0.1147 +0 0.1464 +0 0.0603 +0 0.1236 +0 0.1390 +0 0.1529 +0 0.0765 +0 0.4285 +0 0.0689 +0 0.1804 +0 0.0951 +0 0.1367 +0 0.1117 +0 0.1849 +0 0.4486 +0 0.2278 +0 0.1207 +0 0.0478 +0 0.4555 +0 0.0520 +0 0.0990 +0 0.1691 +0 0.0757 +0 0.0344 +0 0.1540 +0 0.0775 +0 0.0831 +0 0.0944 +0 0.1175 +0 0.0711 +0 0.0361 +0 0.0747 +0 0.0959 +0 0.0524 +0 0.0953 +0 0.1045 +0 0.1240 +0 0.0774 +0 0.0450 +0 0.1063 +0 0.0575 +0 0.0515 +0 0.0560 +0 0.0819 +0 0.0910 +0 0.0848 +0 0.0809 +0 0.1979 +0 0.4632 +0 0.1864 +0 0.0701 +0 0.4619 +0 0.3044 +0 0.6414 +0 0.1295 +1 0.8610 +0 0.0971 +0 0.0594 +0 0.0441 +0 0.1064 +0 0.0743 +0 0.2997 +0 0.1378 +0 0.1857 +0 0.0698 +0 0.2562 +0 0.1718 +0 0.0930 +0 0.0757 +0 0.3717 +0 0.1575 +0 0.1166 +1 0.8063 +0 0.1982 +0 0.0655 +0 0.1923 +0 0.0651 +0 0.0761 +0 0.4014 +0 0.5740 +0 0.1070 +0 0.1327 +0 0.0344 +0 0.1117 +0 0.0717 +0 0.2533 +0 0.0825 +0 0.0681 +0 0.2513 +0 0.0930 +0 0.1578 +0 0.0815 +0 0.1546 +0 0.0709 +0 0.1178 +1 0.8012 +0 0.0395 +0 0.0919 +0 0.0734 +0 0.0470 +0 0.0969 +0 0.1576 +0 0.1277 +0 0.0690 +0 0.0973 +0 0.1396 +0 0.3856 +0 0.1188 +0 0.2097 +0 0.0662 +0 0.1275 +0 0.3777 +0 0.0989 +0 0.1303 +1 0.8326 +0 0.1722 +0 0.0598 +0 0.1108 +0 0.0328 +0 0.0657 +0 0.0794 +0 0.2338 +0 0.0879 +0 0.0771 +0 0.0520 +0 0.0775 +0 0.0546 +0 0.1984 +0 0.1030 +0 0.1296 +0 0.0602 +0 0.0870 +0 0.1095 +0 0.0541 +0 0.1654 +0 0.0822 +0 0.1179 +0 0.2433 +0 0.0741 +0 0.1097 +0 0.1708 +0 0.0570 +0 0.1057 +0 0.0629 +1 0.8678 +0 0.0953 +0 0.0509 +0 0.0695 +0 0.1013 +0 0.1706 +0 0.0716 +0 0.0443 +0 0.1105 +0 0.1548 +0 0.2458 +0 0.1411 +0 0.0934 +0 0.0800 +0 0.0912 +0 0.1773 +0 0.0437 +0 0.0583 +0 0.2110 +0 0.2717 +0 0.1352 +0 0.1282 +0 0.0597 +0 0.5095 +0 0.1187 +0 0.0855 +0 0.0760 +0 0.1047 +0 0.1156 +0 0.1889 +0 0.1205 +0 0.1219 +0 0.1025 +0 0.1355 +0 0.0476 +0 0.3878 +0 0.1369 +0 0.1697 +0 0.1083 +0 0.3165 +0 0.0772 +0 0.0623 +0 0.1260 +0 0.0570 +0 0.2030 +0 0.0723 +0 0.1394 +0 0.0451 +0 0.1974 +0 0.1127 +0 0.1832 +0 0.0845 +0 0.0782 +0 0.1295 +0 0.0418 +0 0.2291 +0 0.2091 +0 0.1141 +0 0.2346 +0 0.0808 +0 0.1262 +0 0.1997 +0 0.0773 +0 0.1617 +0 0.0490 +0 0.2643 +0 0.0582 +0 0.1288 +0 0.0743 +0 0.1013 +0 0.1834 +0 0.0482 +0 0.0708 +0 0.0479 +0 0.0672 +0 0.1024 +0 0.1370 +0 0.1619 +0 0.0431 +0 0.0590 +0 0.1453 +0 0.0705 +0 0.0768 +0 0.0743 +0 0.0794 +0 0.0622 +0 0.0484 +0 0.0786 +0 0.2805 +0 0.2027 +0 0.1089 +0 0.1687 +0 0.0623 +0 0.0420 +0 0.0465 +0 0.0763 +0 0.5141 +0 0.0567 +0 0.1145 +0 0.1224 +0 0.1571 +0 0.1107 +0 0.0824 +0 0.0446 +0 0.0453 +0 0.5895 +0 0.2189 +0 0.1669 +0 0.0434 +0 0.1210 +0 0.0379 +0 0.0817 +0 0.0758 +0 0.3061 +0 0.0567 +0 0.0836 +0 0.0552 +0 0.4117 +0 0.1821 +0 0.1731 +0 0.0672 +0 0.2107 +0 0.1408 +0 0.1324 +0 0.1015 +0 0.2938 +0 0.1282 +0 0.0498 +0 0.1986 +0 0.2041 +0 0.0740 +0 0.1326 +0 0.2440 +0 0.3024 +0 0.0795 +0 0.1722 +0 0.0700 +0 0.1808 +0 0.1639 +0 0.1604 +0 0.0993 +0 0.1607 +0 0.0649 +0 0.1329 +0 0.0786 +0 0.2106 +0 0.4347 +0 0.1753 +1 0.8134 +0 0.2952 +0 0.0485 +0 0.0933 +0 0.0768 +0 0.0937 +0 0.1285 +0 0.1409 +0 0.0517 +0 0.0619 +0 0.1086 +0 0.4068 +0 0.1118 +0 0.0999 +0 0.0408 +0 0.1008 +0 0.1081 +0 0.6372 +0 0.0567 +0 0.2579 +0 0.1065 +0 0.1260 +0 0.1877 +0 0.0402 +0 0.1226 +0 0.0812 +0 0.3033 +0 0.0647 +0 0.0729 +0 0.2285 +0 0.4894 +0 0.4165 +0 0.0733 +0 0.0732 +0 0.0991 +0 0.0744 +0 0.0295 +0 0.2158 +0 0.1271 +0 0.2374 +0 0.0584 +0 0.0626 +0 0.6761 +0 0.1687 +0 0.1151 +0 0.1758 +0 0.0611 +0 0.0546 +0 0.5473 +0 0.0842 +0 0.2089 +0 0.0916 +0 0.1310 +0 0.1111 +0 0.1081 +0 0.1079 +0 0.2391 +0 0.0550 +0 0.2833 +0 0.1213 +0 0.0741 +0 0.2186 +0 0.1232 +0 0.1212 +0 0.0880 +0 0.1933 +0 0.6992 +0 0.0491 +0 0.0512 +0 0.2315 +0 0.0938 +0 0.1477 +0 0.0628 +0 0.1578 +0 0.2116 +0 0.0900 +0 0.0861 +0 0.1156 +0 0.1144 +0 0.0849 +0 0.5910 +0 0.0898 +0 0.6493 +0 0.0567 +0 0.0944 +0 0.0865 +0 0.4266 +0 0.2064 +0 0.1778 +0 0.1029 +1 0.8050 +1 0.7914 +0 0.1125 +0 0.0500 +0 0.6688 +0 0.2754 +0 0.0773 +0 0.0565 +0 0.0660 +0 0.2535 +0 0.3515 +0 0.1047 +0 0.1939 +0 0.0846 +0 0.1041 +0 0.1301 +0 0.1003 +0 0.1153 +0 0.1192 +0 0.1222 +0 0.0798 +0 0.0916 +0 0.0969 +0 0.0753 +0 0.1993 +0 0.0707 +0 0.1581 +0 0.0591 +0 0.0480 +1 0.7867 +0 0.0605 +0 0.1099 +0 0.3080 +0 0.0836 +0 0.0794 +0 0.3343 +0 0.0317 +0 0.0439 +0 0.6285 +0 0.0684 +0 0.0949 +0 0.1016 +0 0.1487 +0 0.1514 +0 0.0645 +0 0.1005 +0 0.0454 +0 0.3751 +0 0.0700 +0 0.0454 +0 0.1001 +0 0.1472 +0 0.1086 +0 0.1113 +0 0.0920 +0 0.0568 +0 0.0364 +0 0.1176 +0 0.0674 +0 0.0820 +0 0.0803 +0 0.1010 +0 0.1414 +0 0.0515 +0 0.1004 +0 0.1257 +0 0.3241 +0 0.1856 +0 0.0907 +0 0.1331 +0 0.3225 +0 0.0664 +0 0.3034 +0 0.1242 +0 0.1131 +0 0.0712 +0 0.1039 +0 0.0539 +0 0.1316 +0 0.2629 +0 0.1744 +0 0.0396 +0 0.0521 +0 0.1362 +0 0.0599 +0 0.1076 +0 0.1083 +0 0.1038 +0 0.0521 +0 0.0855 +0 0.0717 +0 0.0526 +0 0.0931 +0 0.0369 +0 0.2704 +0 0.1453 +0 0.1057 +0 0.1553 +0 0.0929 +0 0.0859 +0 0.2240 +0 0.1513 +0 0.0730 +0 0.1171 +0 0.2353 +0 0.0796 +0 0.1969 +0 0.1191 +0 0.0592 +0 0.0715 +0 0.0961 +0 0.1039 +0 0.0992 +0 0.0654 +0 0.0639 +0 0.1797 +0 0.1778 +0 0.0610 +0 0.0595 +0 0.0801 +0 0.0543 +0 0.1163 +0 0.3860 +0 0.2948 +0 0.0724 +0 0.3660 +0 0.0844 +0 0.0949 +0 0.0750 +0 0.1105 +0 0.2505 +0 0.0654 +0 0.0692 +0 0.1851 +0 0.0851 +0 0.0700 +0 0.1340 +0 0.0756 +0 0.0678 +1 0.7735 +0 0.1359 +0 0.0683 +0 0.0669 +0 0.0848 +0 0.0527 +0 0.0645 +0 0.3015 +0 0.0547 +0 0.0712 +0 0.0684 +0 0.0556 +0 0.7388 +0 0.0802 +0 0.1755 +0 0.0927 +0 0.1707 +0 0.0956 +0 0.2515 +0 0.0488 +0 0.1613 +0 0.1619 +0 0.0771 +0 0.0571 +0 0.0654 +0 0.2482 +0 0.0586 +0 0.2023 +0 0.0623 +0 0.2184 +0 0.6375 +0 0.0851 +0 0.0517 +0 0.1227 +0 0.3105 +0 0.2305 +0 0.0798 +0 0.6478 +0 0.0750 +0 0.1014 +0 0.0811 +0 0.1847 +0 0.0820 +0 0.1276 +0 0.0653 +0 0.1991 +0 0.2524 +1 0.8449 +0 0.0408 +0 0.2275 +0 0.0358 +0 0.0733 +0 0.0849 +0 0.1701 +0 0.0895 +0 0.2954 +0 0.0519 +0 0.2386 +0 0.1864 +0 0.1105 +0 0.1369 +1 0.8250 +0 0.1557 +0 0.1388 +0 0.0366 +0 0.1064 +0 0.0538 +0 0.0854 +0 0.0750 +0 0.1052 +0 0.0744 +0 0.0434 +0 0.0709 +0 0.1133 +0 0.2045 +0 0.0632 +0 0.0953 +0 0.0530 +0 0.1509 +0 0.1286 +0 0.1004 +0 0.2572 +0 0.0738 +0 0.3419 +0 0.0530 +0 0.0802 +0 0.1916 +0 0.1130 +0 0.0310 +0 0.2679 +0 0.0703 +0 0.1380 +0 0.1349 +0 0.0916 +0 0.1043 +0 0.1102 +0 0.0935 +0 0.1900 +0 0.1504 +0 0.0704 +0 0.3437 +0 0.2673 +0 0.1396 +0 0.1149 +0 0.0623 +0 0.5224 +0 0.0451 +0 0.1394 +0 0.2232 +0 0.0350 +0 0.0941 +0 0.0426 +0 0.0550 +0 0.2366 +0 0.0352 +1 0.8204 +0 0.0853 +0 0.0976 +0 0.1114 +0 0.1921 +0 0.2850 +0 0.2552 +0 0.3271 +0 0.0709 +0 0.3873 +0 0.1807 +0 0.0663 +0 0.0661 +0 0.0874 +0 0.0828 +0 0.2028 +0 0.1070 +0 0.0870 +0 0.0739 +0 0.1037 +0 0.0590 +0 0.0570 +0 0.1224 +0 0.0891 +0 0.0902 +0 0.1518 +0 0.1113 +0 0.0570 +0 0.0796 +0 0.1129 +0 0.1280 +0 0.0780 +0 0.0998 +0 0.1174 +0 0.2253 +0 0.1413 +0 0.1417 +0 0.0557 +1 0.7653 +0 0.0968 +0 0.1016 +0 0.1896 +0 0.2169 +0 0.1388 +0 0.1118 +0 0.6748 +0 0.0481 +0 0.1633 +0 0.0339 +0 0.1235 +0 0.1192 +0 0.1093 +0 0.0862 +0 0.1357 +0 0.0822 +0 0.0546 +0 0.0624 +0 0.2132 +0 0.0956 +0 0.1097 +0 0.0699 +0 0.0836 +0 0.1270 +0 0.0891 +0 0.1751 +0 0.0480 +0 0.1599 +0 0.1864 +0 0.0996 +0 0.2119 +0 0.1709 +0 0.3945 +0 0.0795 +0 0.3416 +0 0.0513 +0 0.0863 +0 0.1282 +0 0.0419 +0 0.4023 +0 0.0424 +0 0.1660 +0 0.2003 +0 0.0669 +0 0.0916 +0 0.0655 +0 0.1291 +0 0.1560 +0 0.2700 +0 0.2753 +0 0.2076 +0 0.0767 +0 0.6362 +0 0.2998 +0 0.1032 +0 0.0780 +0 0.0616 +0 0.1027 +0 0.1489 +0 0.1969 +0 0.0760 +0 0.0906 +0 0.0635 +0 0.2071 +0 0.0738 +0 0.1592 +0 0.1336 +0 0.0969 +0 0.0576 +0 0.0892 +0 0.1069 +1 0.7990 +0 0.6884 +0 0.1006 +0 0.2229 +0 0.1385 +0 0.0756 +0 0.0915 +0 0.1704 +0 0.2201 +0 0.0974 +0 0.0547 +0 0.1457 +0 0.2707 +0 0.0368 +0 0.1490 +0 0.0791 +0 0.3373 +0 0.1737 +0 0.0936 +0 0.0764 +0 0.0717 +0 0.0942 +0 0.1816 +0 0.2026 +0 0.1201 +0 0.0533 +0 0.1685 +0 0.2590 +0 0.0749 +0 0.1273 +0 0.1100 +0 0.1172 +0 0.0756 +0 0.0532 +0 0.0913 +0 0.3505 +0 0.0722 +0 0.1088 +0 0.0409 +0 0.0561 +0 0.0679 +0 0.0794 +0 0.2401 +0 0.0820 +0 0.0920 +0 0.0986 +0 0.1531 +0 0.1723 +0 0.0424 +0 0.0494 +0 0.0573 +0 0.2091 +0 0.1167 +0 0.0412 +0 0.0914 +0 0.1125 +0 0.0785 +0 0.2704 +0 0.1203 +0 0.1536 +0 0.0802 +0 0.0539 +0 0.0769 +0 0.2155 +0 0.0857 +0 0.0617 +0 0.0511 +0 0.1154 +0 0.0851 +0 0.1496 +0 0.0726 +0 0.1983 +0 0.2411 +0 0.1095 +0 0.1133 +0 0.3909 +0 0.0818 +0 0.2457 +0 0.1919 +0 0.1430 +0 0.1451 +0 0.0790 +0 0.1168 +0 0.0558 +0 0.0804 +0 0.0884 +0 0.1891 +0 0.1897 +0 0.0701 +0 0.0764 +0 0.2779 +0 0.2684 +0 0.0937 +0 0.0766 +0 0.1759 +0 0.1340 +0 0.0416 +0 0.1427 +0 0.0568 +0 0.1043 +0 0.1182 +0 0.1966 +0 0.3017 +0 0.1132 +0 0.1268 +0 0.7493 +0 0.0450 +0 0.0348 +0 0.1454 +0 0.0761 +0 0.0481 +0 0.0543 +0 0.0829 +0 0.1333 +0 0.0474 +0 0.1015 +0 0.1137 +0 0.0525 +0 0.0845 +0 0.1106 +0 0.2100 +0 0.0783 +0 0.1542 +0 0.1395 +0 0.1817 +0 0.0583 +0 0.0842 +0 0.0701 +0 0.1389 +0 0.0349 +0 0.0625 +0 0.0699 +0 0.0844 +0 0.0944 +0 0.1477 +0 0.1016 +0 0.0942 +0 0.0731 +0 0.0653 +0 0.2175 +0 0.2186 +0 0.1687 +0 0.0607 +0 0.2240 +0 0.0533 +0 0.1939 +0 0.0944 +0 0.0438 +0 0.1461 +0 0.2736 +0 0.1743 +0 0.1246 +0 0.0448 +0 0.1141 +0 0.2647 +0 0.0499 +0 0.2319 +0 0.0630 +0 0.4309 +0 0.1978 +0 0.1275 +0 0.1189 +0 0.0721 +0 0.1483 +0 0.0607 +0 0.0528 +0 0.0804 +0 0.1100 +0 0.1450 +0 0.0406 +0 0.1966 +0 0.0754 +0 0.1063 +0 0.3349 +0 0.0398 +0 0.1244 +0 0.0616 +0 0.1716 +0 0.1877 +0 0.0844 +0 0.0883 +0 0.2276 +0 0.0833 +0 0.1032 +0 0.0661 +0 0.1401 +0 0.0651 +0 0.0358 +0 0.3076 +0 0.1799 +0 0.0508 +0 0.0879 +0 0.0957 +0 0.0919 +0 0.0700 +0 0.0913 +0 0.1594 +0 0.0762 +0 0.1168 +0 0.0524 +0 0.0920 +0 0.0945 +0 0.2002 +0 0.1354 +0 0.0703 +0 0.0838 +0 0.0783 +1 0.8169 +0 0.0518 +0 0.1292 +0 0.0574 +0 0.1165 +0 0.0583 +0 0.0688 +0 0.2811 +0 0.1458 +0 0.0854 +0 0.1504 +0 0.0508 +0 0.1321 +0 0.4164 +0 0.2133 +0 0.0665 +0 0.0681 +0 0.1128 +0 0.0404 +0 0.4850 +0 0.6339 +0 0.0688 +0 0.1063 +0 0.1262 +0 0.0392 +0 0.1067 +0 0.0794 +0 0.0959 +0 0.1666 +0 0.0698 +0 0.5422 +0 0.0831 +0 0.0795 +0 0.7160 +0 0.0410 +0 0.1111 +0 0.1765 +0 0.1660 +0 0.1216 +0 0.1064 +0 0.1634 +0 0.2879 +0 0.1198 +0 0.2045 +0 0.1099 +0 0.0612 +0 0.0982 +0 0.0992 +0 0.2574 +0 0.0500 +0 0.3593 +0 0.0650 +0 0.0587 +0 0.0404 +0 0.1051 +0 0.0774 +0 0.6516 +0 0.1700 +0 0.3953 +0 0.1357 +0 0.1502 +0 0.0928 +0 0.0778 +0 0.1373 +0 0.0932 +0 0.0700 +0 0.1015 +0 0.2432 +0 0.1976 +0 0.0617 +0 0.0596 +0 0.1616 +0 0.1133 +0 0.1846 +0 0.1072 +0 0.0803 +0 0.0511 +0 0.1800 +0 0.1153 +0 0.3237 +0 0.0412 +0 0.1009 +0 0.0728 +0 0.4929 +0 0.0338 +0 0.0405 +0 0.3609 +0 0.0856 +0 0.0667 +0 0.2929 +0 0.0737 +0 0.0656 +0 0.1059 +0 0.4120 +0 0.1391 +0 0.2613 +0 0.0603 +0 0.0574 +0 0.1811 +0 0.2676 +0 0.2150 +0 0.0924 +0 0.1736 +0 0.0639 +0 0.1173 +0 0.1191 +0 0.1714 +0 0.0771 +0 0.6831 +0 0.0562 +0 0.0354 +0 0.1298 +0 0.1078 +0 0.1236 +0 0.1228 +0 0.2224 +0 0.0669 +0 0.0689 +0 0.1174 +0 0.2847 +0 0.0867 +0 0.1102 +0 0.0846 +0 0.4637 +0 0.0755 +0 0.2842 +0 0.1613 +0 0.0875 +0 0.1688 +0 0.1448 +0 0.4348 +0 0.1845 +0 0.1349 +0 0.0348 +0 0.3074 +0 0.1301 +0 0.0625 +0 0.0535 +0 0.0793 +0 0.0889 +0 0.0351 +0 0.1670 +0 0.1112 +0 0.0996 +0 0.1252 +0 0.1930 +0 0.0591 +0 0.1556 +0 0.1326 +0 0.0489 +0 0.0460 +0 0.1477 +0 0.3158 +0 0.2633 +0 0.0776 +0 0.0813 +0 0.0694 +0 0.1600 +0 0.1032 +0 0.0393 +0 0.1155 +0 0.2032 +0 0.0890 +0 0.1093 +0 0.0653 +0 0.0782 +0 0.0913 +0 0.1428 +0 0.0928 +0 0.1380 +0 0.1116 +0 0.2756 +0 0.1724 +0 0.1202 +0 0.1438 +1 0.8102 +0 0.1855 +0 0.0653 +0 0.1790 +0 0.1521 +0 0.0652 +0 0.0462 +0 0.1223 +0 0.1257 +0 0.1441 +0 0.3416 +0 0.0702 +0 0.0556 +0 0.1420 +0 0.1130 +0 0.0605 +0 0.0931 +0 0.0636 +0 0.1763 +0 0.1276 +0 0.3478 +0 0.0371 +0 0.3056 +0 0.1196 +0 0.1494 +0 0.0582 +0 0.0791 +0 0.2445 +0 0.0518 +0 0.0617 +0 0.0501 +0 0.0534 +0 0.1079 +0 0.2159 +0 0.0669 +0 0.1481 +0 0.2199 +0 0.1580 +0 0.0530 +0 0.0855 +0 0.1695 +0 0.2802 +0 0.0655 +0 0.1099 +0 0.0602 +0 0.0567 +0 0.0980 +0 0.0969 +0 0.2730 +0 0.0937 +0 0.0798 +0 0.1874 +0 0.0627 +0 0.0823 +0 0.0441 +0 0.1182 +0 0.0806 +0 0.0781 +0 0.1191 +0 0.0542 +0 0.1161 +0 0.1600 +0 0.2127 +0 0.2269 +0 0.0603 +0 0.0851 +0 0.7465 +0 0.1338 +0 0.0931 +0 0.2499 +0 0.0943 +0 0.0589 +0 0.7209 +0 0.6817 +0 0.0676 +0 0.0914 +0 0.3029 +0 0.1831 +0 0.1114 +0 0.1076 +0 0.0947 +0 0.1365 +0 0.1566 +0 0.1965 +0 0.0916 +0 0.0614 +0 0.0394 +0 0.1035 +0 0.1110 +0 0.0470 +0 0.0819 +0 0.1297 +0 0.1522 +0 0.1123 +0 0.1071 +0 0.3000 +0 0.1768 +0 0.3123 +0 0.4074 +0 0.0511 +0 0.0999 +0 0.0978 +0 0.0461 +0 0.0660 +0 0.1521 +0 0.1125 +0 0.0656 +0 0.1151 +0 0.1491 +0 0.1231 +0 0.0398 +0 0.4515 +0 0.0470 +0 0.0470 +0 0.2042 +0 0.1055 +0 0.1497 +0 0.1022 +0 0.3138 +0 0.2119 +0 0.0805 +0 0.5253 +0 0.0659 +0 0.6496 +0 0.2228 +0 0.0538 +0 0.0806 +0 0.0936 +0 0.1650 +0 0.0730 +0 0.0968 +0 0.0577 +1 0.8261 +0 0.3053 +0 0.0619 +0 0.1404 +0 0.2374 +0 0.0828 +0 0.2060 +0 0.1280 +0 0.2032 +0 0.2100 +0 0.0752 +0 0.1379 +0 0.1577 +0 0.1315 +0 0.1565 +0 0.1067 +0 0.5046 +0 0.0794 +0 0.0585 +0 0.2246 +0 0.0821 +0 0.1785 +0 0.1024 +0 0.1523 +0 0.1821 +0 0.0641 +0 0.1417 +0 0.1183 +0 0.0696 +0 0.0537 +0 0.2178 +0 0.0341 +0 0.4509 +0 0.0605 +0 0.1617 +0 0.0799 +0 0.0626 +0 0.1134 +0 0.4486 +0 0.0785 +0 0.0600 +0 0.1061 +0 0.0479 +0 0.0858 +0 0.2039 +0 0.1920 +0 0.0638 +0 0.1100 +0 0.2184 +0 0.0662 +0 0.1266 +0 0.1752 +0 0.0486 +0 0.0673 +0 0.1304 +0 0.1738 +0 0.1143 +0 0.3062 +0 0.0816 +0 0.1858 +0 0.0794 +0 0.1142 +0 0.0326 +0 0.0817 +0 0.1578 +0 0.0344 +0 0.1119 +0 0.0575 +0 0.0512 +0 0.0479 +0 0.0513 +0 0.0831 +0 0.3444 +0 0.0517 +0 0.1037 +0 0.0766 +0 0.1102 +0 0.2562 +0 0.0744 +0 0.2224 +0 0.1370 +0 0.0730 +0 0.0631 +0 0.1384 +0 0.1403 +0 0.1314 +0 0.0464 +0 0.1696 +0 0.1106 +0 0.1840 +0 0.1447 +0 0.0805 +0 0.2607 +0 0.0549 +0 0.0614 +0 0.0449 +0 0.0510 +0 0.2155 +0 0.2530 +0 0.4362 +0 0.1440 +0 0.1494 +0 0.0602 +0 0.1390 +0 0.1899 +0 0.0470 +0 0.2163 +0 0.1256 +0 0.1343 +0 0.0667 +0 0.1430 +0 0.0614 +0 0.0781 +0 0.0708 +0 0.3827 +0 0.3611 +0 0.0996 +0 0.1149 +0 0.2671 +0 0.1070 +0 0.0844 +0 0.1636 +0 0.0824 +0 0.0647 +0 0.0848 +0 0.0373 +0 0.3062 +0 0.0412 +0 0.1991 +0 0.3762 +0 0.0481 +0 0.1606 +0 0.1732 +0 0.0704 +0 0.0966 +0 0.0715 +0 0.1925 +0 0.1301 +0 0.1074 +0 0.2402 +0 0.0672 +0 0.0903 +0 0.0964 +0 0.1671 +0 0.0848 +0 0.0621 +0 0.0596 +0 0.0781 +0 0.0980 +0 0.1712 +0 0.0576 +0 0.0617 +0 0.0776 +0 0.0805 +1 0.7919 +0 0.2041 +0 0.1832 +0 0.0453 +0 0.1955 +0 0.0821 +0 0.1437 +0 0.6904 +0 0.1726 +0 0.1624 +0 0.0595 +0 0.1198 +0 0.1113 +0 0.2118 +0 0.3313 +0 0.0662 +0 0.1342 +0 0.0918 +1 0.8328 +0 0.0601 +0 0.0765 +0 0.0595 +0 0.2439 +0 0.0643 +0 0.1435 +0 0.2541 +0 0.1230 +0 0.0424 +0 0.3236 +0 0.2525 +0 0.1356 +0 0.2672 +0 0.0918 +0 0.1460 +0 0.0618 +0 0.1104 +0 0.1034 +0 0.0591 +0 0.0637 +0 0.2929 +0 0.4305 +0 0.0614 +0 0.0725 +0 0.0660 +0 0.0922 +0 0.2265 +0 0.1271 +0 0.0705 +0 0.1016 +0 0.0863 +0 0.1191 +0 0.0649 +0 0.0666 +0 0.2880 +0 0.2291 +0 0.1249 +0 0.0973 +0 0.0514 +0 0.1231 +0 0.1134 +0 0.1741 +0 0.0555 +0 0.0918 +0 0.1060 +0 0.1009 +0 0.2371 +0 0.3795 +0 0.0540 +0 0.0657 +0 0.0879 +0 0.0752 +0 0.0830 +0 0.1185 +0 0.0360 +0 0.1145 +0 0.0755 +0 0.2235 +0 0.4754 +0 0.0858 +0 0.3028 +0 0.0943 +0 0.1298 +0 0.4295 +0 0.1388 +0 0.1203 +0 0.0837 +0 0.1469 +0 0.1206 +0 0.1165 +0 0.0420 +0 0.1165 +0 0.0483 +0 0.0861 +0 0.0858 +0 0.0612 +0 0.0720 +0 0.1039 +0 0.0670 +0 0.6743 +0 0.1066 +0 0.1151 +0 0.1005 +0 0.0747 +0 0.2886 +0 0.1215 +0 0.1210 +0 0.6437 +0 0.1048 +0 0.0784 +0 0.1267 +0 0.2000 +0 0.2676 +0 0.1387 +0 0.0557 +0 0.0732 +0 0.1773 +0 0.2503 +0 0.5348 +0 0.0627 +0 0.1229 +0 0.1044 +0 0.1949 +0 0.1216 +0 0.2342 +0 0.1076 +0 0.5115 +1 0.8239 +0 0.0603 +0 0.4631 +0 0.0554 +0 0.1114 +0 0.0795 +0 0.0304 +0 0.2595 +0 0.1700 +0 0.1093 +0 0.6884 +0 0.0877 +0 0.7361 +0 0.1488 +0 0.0786 +0 0.0911 +0 0.0582 +0 0.1242 +0 0.1713 +0 0.0817 +0 0.1123 +0 0.1023 +0 0.1428 +0 0.0729 +0 0.0664 +0 0.2361 +0 0.1697 +0 0.0934 +0 0.0658 +0 0.1017 +0 0.0426 +0 0.0960 +0 0.2310 +0 0.0742 +0 0.0449 +0 0.1375 +0 0.0667 +0 0.1203 +0 0.5888 +0 0.7474 +0 0.3405 +0 0.1626 +0 0.1010 +0 0.1462 +0 0.1702 +0 0.1772 +0 0.3402 +0 0.0734 +0 0.1222 +0 0.0952 +0 0.1240 +0 0.2063 +0 0.0843 +0 0.1664 +0 0.1870 +0 0.0708 +0 0.0596 +0 0.0665 +0 0.0608 +0 0.2377 +0 0.1162 +0 0.0807 +0 0.0921 +0 0.0494 +0 0.3734 +0 0.5778 +0 0.0563 +0 0.0998 +0 0.0859 +0 0.1188 +0 0.0981 +0 0.1657 +0 0.0477 +0 0.1337 +0 0.1947 +0 0.1137 +0 0.2150 +0 0.1779 +0 0.2180 +1 0.7601 +0 0.0530 +0 0.1064 +0 0.2092 +0 0.0443 +0 0.0814 +0 0.0716 +0 0.2148 +0 0.0570 +0 0.1422 +0 0.1578 +0 0.1883 +0 0.7094 +0 0.1176 +0 0.0524 +0 0.4374 +0 0.4327 +0 0.1210 +0 0.1576 +0 0.0664 +0 0.0735 +0 0.1176 +0 0.1124 +0 0.0994 +0 0.0393 +0 0.1096 +0 0.0982 +0 0.0684 +0 0.1227 +0 0.0868 +0 0.2570 +0 0.1158 +0 0.1552 +0 0.1320 +0 0.0609 +0 0.0561 +1 0.8753 +0 0.2068 +0 0.0940 +0 0.1151 +0 0.0459 +0 0.0751 +0 0.3606 +0 0.1957 +0 0.0905 +0 0.0712 +0 0.1092 +0 0.1307 +0 0.1401 +0 0.0597 +0 0.1777 +0 0.0969 +0 0.0673 +0 0.4861 +0 0.3284 +0 0.1190 +0 0.1287 +0 0.2627 +0 0.0654 +0 0.3994 +0 0.2080 +0 0.1541 +0 0.0620 +0 0.1493 +0 0.0507 +0 0.0520 +0 0.1413 +0 0.3292 +0 0.0603 +0 0.0541 +0 0.0769 +0 0.1240 +0 0.6713 +0 0.0588 +0 0.0699 +0 0.1481 +0 0.0760 +0 0.1287 +0 0.0506 +0 0.1762 +0 0.1256 +0 0.0529 +1 0.8070 +0 0.1059 +0 0.3684 +0 0.0810 +0 0.0977 +0 0.0811 +0 0.3800 +0 0.1066 +0 0.1033 +0 0.0755 +0 0.0941 +0 0.0582 +0 0.1274 +0 0.0865 +0 0.0948 +0 0.1066 +0 0.0965 +0 0.0941 +0 0.2213 +0 0.0622 +0 0.2647 +0 0.1094 +0 0.6322 +0 0.1238 +0 0.0937 +0 0.1064 +0 0.3846 +0 0.0891 +0 0.5532 +0 0.0928 +0 0.1019 +0 0.1116 +0 0.1616 +0 0.0466 +0 0.1201 +0 0.1260 +0 0.0840 +0 0.1059 +0 0.2216 +1 0.8755 +0 0.0880 +0 0.1040 +0 0.1326 +0 0.0586 +0 0.3304 +0 0.1229 +0 0.1821 +0 0.0359 +0 0.0653 +0 0.0687 +0 0.0550 +0 0.2771 +0 0.2501 +0 0.3605 +0 0.0653 +0 0.0458 +0 0.1017 +0 0.0373 +0 0.0801 +0 0.0853 +0 0.0545 +0 0.0883 +0 0.1221 +0 0.3554 +0 0.0792 +0 0.0843 +0 0.0561 +0 0.1004 +0 0.1844 +0 0.0591 +0 0.0700 +0 0.0378 +0 0.3295 +0 0.1081 +0 0.1244 +0 0.2577 +0 0.0618 +0 0.1499 +1 0.8447 +0 0.0576 +0 0.4644 +0 0.3132 +0 0.1069 +0 0.1549 +0 0.0623 +0 0.0953 +0 0.0727 +0 0.3318 +0 0.2140 +0 0.0724 +0 0.1113 +0 0.0705 +0 0.0759 +0 0.0927 +0 0.1725 +0 0.0670 +0 0.0964 +0 0.1149 +0 0.0934 +0 0.1065 +0 0.1113 +0 0.1729 +0 0.1052 +0 0.0657 +0 0.0495 +0 0.1200 +0 0.0348 +0 0.1486 +0 0.0652 +0 0.1776 +0 0.1255 +0 0.1931 +1 0.8350 +0 0.0564 +0 0.1230 +0 0.1056 +0 0.1311 +0 0.0829 +0 0.1293 +0 0.0471 +0 0.0891 +1 0.7864 +0 0.0676 +0 0.2380 +0 0.1154 +0 0.3646 +0 0.0470 +0 0.0712 +0 0.1269 +0 0.1963 +0 0.2351 +0 0.0474 +0 0.0772 +0 0.0814 +0 0.1172 +0 0.2169 +0 0.3481 +0 0.0771 +0 0.0843 +0 0.0391 +0 0.1601 +0 0.2502 +0 0.1390 +0 0.0627 +0 0.2188 +0 0.0834 +0 0.3471 +0 0.1393 +0 0.1445 +0 0.0593 +0 0.0693 +0 0.0917 +0 0.1165 +1 0.8534 +0 0.0731 +0 0.0877 +0 0.2153 +0 0.2576 +0 0.1170 +0 0.1092 +0 0.0847 +0 0.1054 +0 0.1278 +0 0.3265 +0 0.1206 +0 0.2317 +0 0.0992 +0 0.0373 +0 0.1422 +0 0.0799 +0 0.1497 +0 0.3785 +0 0.0542 +0 0.0934 +0 0.1281 +0 0.0694 +0 0.0891 +0 0.0689 +0 0.0537 +0 0.5628 +0 0.1618 +0 0.1144 +0 0.0978 +0 0.1185 +0 0.0849 +0 0.0640 +0 0.0561 +0 0.0719 +0 0.1730 +0 0.0587 +0 0.2652 +0 0.0800 +0 0.0862 +0 0.3225 +0 0.1468 +0 0.1275 +0 0.0778 +0 0.1601 +0 0.0559 +0 0.0533 +0 0.1750 +0 0.2520 +0 0.6630 +0 0.1009 +0 0.0757 +0 0.0629 +0 0.0542 +0 0.1887 +0 0.1340 +0 0.3740 +0 0.0474 +0 0.0793 +0 0.2536 +0 0.1239 +0 0.0729 +0 0.0721 +0 0.2139 +0 0.2742 +0 0.0448 +0 0.2377 +0 0.1707 +0 0.1038 +0 0.1027 +0 0.1800 +0 0.1263 +0 0.6439 +0 0.1164 +0 0.0588 +0 0.1211 +0 0.3853 +0 0.1843 +0 0.1520 +0 0.1339 +0 0.1084 +0 0.0455 +0 0.2514 +0 0.1181 +0 0.0933 +0 0.1146 +0 0.0808 +0 0.0888 +0 0.0632 +0 0.0721 +0 0.1077 +0 0.0543 +0 0.0803 +0 0.1103 +0 0.0716 +0 0.1178 +0 0.1041 +0 0.0860 +0 0.2210 +0 0.2703 +0 0.1954 +0 0.2153 +0 0.1274 +0 0.1062 +0 0.1500 +0 0.1030 +0 0.0947 +0 0.4323 +0 0.1729 +0 0.1015 +0 0.0748 +0 0.0754 +0 0.1950 +0 0.2757 +0 0.0678 +0 0.1312 +0 0.1597 +0 0.0886 +0 0.0819 +0 0.1290 +0 0.0834 +0 0.0770 +0 0.0800 +0 0.1888 +0 0.1305 +0 0.0719 +0 0.1477 +0 0.0659 +0 0.1557 +0 0.0547 +0 0.1286 +0 0.1340 +0 0.2743 +0 0.1937 +0 0.1624 +0 0.1191 +0 0.1076 +0 0.1989 +0 0.1950 +0 0.0630 +0 0.0780 +0 0.0807 +0 0.0793 +0 0.1598 +0 0.0847 +0 0.0853 +0 0.0656 +0 0.3031 +0 0.0600 +0 0.0693 +0 0.0847 +0 0.6967 +0 0.1314 +0 0.2594 +0 0.1089 +0 0.3289 +0 0.0633 +0 0.2263 +0 0.1612 +0 0.0573 +0 0.1206 +0 0.1326 +0 0.3033 +0 0.0971 +0 0.1092 +0 0.3685 +0 0.1777 +0 0.1134 +0 0.1141 +0 0.0462 +0 0.1088 +0 0.1171 +0 0.0718 +0 0.1700 +0 0.1100 +0 0.0893 +0 0.1242 +0 0.0698 +0 0.1013 +0 0.0807 +0 0.0515 +0 0.1877 +0 0.0924 +0 0.0779 +0 0.4222 +0 0.1264 +0 0.1530 +0 0.1934 +0 0.0719 +0 0.0772 +0 0.1065 +0 0.3195 +0 0.0474 +0 0.2211 +0 0.0817 +0 0.1013 +0 0.0820 +0 0.2177 +0 0.3382 +0 0.0747 +0 0.1929 +0 0.0720 +0 0.1092 +0 0.1332 +0 0.0718 +0 0.2306 +0 0.0889 +0 0.2322 +0 0.0859 +0 0.0495 +0 0.1136 +0 0.1651 +0 0.0637 +0 0.2270 +0 0.1079 +0 0.1808 +0 0.0922 +0 0.1991 +0 0.4985 +0 0.0856 +0 0.1102 +0 0.3604 +0 0.0774 +0 0.1017 +0 0.1033 +0 0.0951 +0 0.2784 +0 0.1101 +0 0.7254 +0 0.1981 +0 0.5572 +0 0.0780 +0 0.0840 +0 0.1596 +0 0.1147 +1 0.8222 +0 0.0887 +0 0.0426 +0 0.1662 +0 0.7201 +0 0.0760 +0 0.1070 +1 0.8256 +0 0.0545 +0 0.2390 +0 0.0789 +0 0.1060 +0 0.0884 +0 0.1637 +0 0.1095 +0 0.1607 +0 0.0812 +0 0.0900 +0 0.6687 +0 0.1031 +0 0.7003 +0 0.1471 +0 0.1141 +0 0.2563 +0 0.0475 +0 0.2415 +0 0.1128 +0 0.2032 +0 0.0887 +0 0.2763 +0 0.0745 +0 0.1351 +0 0.0712 +0 0.0983 +0 0.2007 +0 0.6995 +0 0.0540 +0 0.4083 +0 0.3285 +0 0.1214 +0 0.0803 +0 0.0786 +0 0.0923 +0 0.1018 +0 0.1240 +0 0.0540 +0 0.0798 +0 0.1995 +0 0.0616 +0 0.0958 +0 0.0706 +0 0.2067 +0 0.1331 +0 0.0915 +0 0.1052 +0 0.0562 +0 0.1345 +0 0.0576 +0 0.0426 +0 0.0424 +0 0.0859 +0 0.0712 +0 0.0525 +0 0.0961 +0 0.0727 +0 0.1127 +0 0.1985 +0 0.0970 +0 0.0732 +0 0.1258 +0 0.2069 +0 0.0835 +0 0.1494 +0 0.1416 +0 0.1629 +0 0.0566 +0 0.1485 +0 0.0485 +0 0.0890 +0 0.1172 +0 0.0561 +0 0.1857 +0 0.1157 +1 0.8148 +0 0.0649 +0 0.2358 +0 0.1383 +0 0.0657 +0 0.1391 +0 0.1165 +0 0.0927 +0 0.2913 +0 0.0582 +0 0.1128 +0 0.1665 +0 0.0808 +0 0.2076 +1 0.8692 +0 0.2116 +0 0.1354 +0 0.2132 +0 0.1001 +0 0.0581 +0 0.1217 +0 0.0665 +0 0.2147 +0 0.0742 +0 0.1082 +0 0.1416 +0 0.1194 +0 0.1603 +0 0.1290 +0 0.0527 +0 0.1977 +0 0.2153 +0 0.0880 +0 0.4157 +0 0.1346 +0 0.1373 +0 0.1014 +0 0.1854 +0 0.1166 +0 0.3180 +0 0.0784 +0 0.0747 +0 0.1573 +0 0.2061 +0 0.0720 +0 0.1192 +0 0.0954 +0 0.0930 +0 0.0797 +0 0.1195 +0 0.1353 +0 0.0901 +0 0.0981 +0 0.2139 +0 0.0477 +0 0.0456 +0 0.1799 +0 0.4557 +0 0.2407 +0 0.1233 +0 0.1016 +0 0.0724 +0 0.4181 +0 0.1504 +0 0.0962 +0 0.0859 +0 0.0523 +0 0.1127 +0 0.0849 +0 0.1044 +0 0.2346 +0 0.1400 +0 0.1396 +1 0.8359 +1 0.8362 +0 0.1952 +0 0.2131 +0 0.0567 +0 0.2726 +0 0.1911 +0 0.0861 +0 0.2189 +0 0.1034 +0 0.2314 +0 0.0383 +0 0.4766 +0 0.1028 +0 0.0813 +0 0.0760 +0 0.0824 +0 0.1459 +0 0.0517 +0 0.1061 +0 0.1759 +0 0.1328 +0 0.0684 +1 0.8509 +0 0.0809 +0 0.0785 +0 0.6493 +0 0.1885 +0 0.1254 +0 0.1991 +0 0.1022 +0 0.0755 +0 0.1028 +0 0.0677 +0 0.1247 +0 0.2547 +0 0.1564 +0 0.0389 +0 0.4312 +0 0.1602 +1 0.7749 +0 0.0910 +0 0.0840 +0 0.0812 +0 0.0492 +0 0.1058 +0 0.1413 +0 0.0460 +0 0.1328 +0 0.1254 +0 0.0457 +0 0.1273 +0 0.0489 +0 0.1205 +0 0.0345 +0 0.3369 +0 0.0441 +0 0.0768 +0 0.1180 +0 0.0442 +0 0.2071 +0 0.0934 +0 0.1114 +0 0.0355 +0 0.2014 +0 0.0947 +0 0.1090 +0 0.1275 +0 0.1704 +0 0.1708 +1 0.8604 +0 0.1444 +0 0.0840 +0 0.0659 +0 0.1251 +0 0.3414 +0 0.1655 +0 0.0551 +0 0.0743 +0 0.1049 +0 0.0734 +0 0.2675 +0 0.3371 +0 0.0757 +0 0.1218 +0 0.2985 +0 0.3212 +0 0.1991 +0 0.0694 +0 0.1367 +0 0.1151 +0 0.0668 +0 0.1054 +0 0.0800 +0 0.0730 +0 0.0859 +0 0.1349 +0 0.1183 +0 0.1745 +0 0.2182 +0 0.0775 +0 0.1710 +0 0.0846 +0 0.0745 +0 0.0651 +0 0.1223 +0 0.0661 +0 0.1427 +0 0.1345 +0 0.1466 +0 0.0896 +0 0.1250 +0 0.0744 +0 0.1473 +0 0.1358 +0 0.0480 +0 0.3497 +0 0.2134 +0 0.2074 +1 0.8136 +0 0.0931 +0 0.0767 +0 0.0367 +0 0.0646 +0 0.1706 +0 0.0626 +0 0.0944 +0 0.1641 +0 0.0837 +0 0.1489 +0 0.0654 +0 0.1599 +0 0.0415 +0 0.1532 +0 0.0721 +0 0.0941 +0 0.2336 +0 0.6125 +0 0.5542 +0 0.2107 +0 0.1156 +0 0.1695 +0 0.1727 +0 0.0720 +0 0.0518 +0 0.1005 +0 0.1090 +0 0.1575 +0 0.4567 +0 0.0805 +0 0.1002 +0 0.0936 +0 0.0941 +0 0.1600 +0 0.0697 +0 0.1646 +0 0.1102 +0 0.1361 +0 0.2227 +0 0.2260 +0 0.3848 +0 0.1287 +0 0.0901 +0 0.1155 +0 0.2736 +0 0.5825 +0 0.1516 +0 0.0933 +0 0.0999 +0 0.2258 +0 0.0412 +0 0.1027 +1 0.8517 +0 0.1106 +0 0.1218 +0 0.0417 +0 0.0984 +0 0.1410 +0 0.0520 +0 0.0707 +0 0.0694 +0 0.1827 +0 0.1517 +0 0.0678 +0 0.0815 +0 0.3040 +0 0.1461 +0 0.0777 +0 0.0520 +0 0.0356 +0 0.0852 +0 0.1253 +0 0.2471 +1 0.7781 +0 0.3502 +0 0.0989 +0 0.1189 +0 0.1372 +0 0.0465 +0 0.0495 +0 0.1112 +0 0.0639 +0 0.1213 +0 0.2111 +0 0.0743 +0 0.3191 +0 0.2024 +0 0.2369 +0 0.0827 +0 0.7374 +0 0.1238 +0 0.0793 +0 0.0362 +0 0.1023 +0 0.1779 +0 0.0371 +0 0.1322 +0 0.0946 +0 0.0693 +0 0.0797 +0 0.1107 +0 0.1133 +0 0.1344 +0 0.1680 +0 0.0584 +0 0.0880 +0 0.0806 +0 0.1669 +0 0.0582 +0 0.1264 +0 0.0497 +0 0.1454 +0 0.0819 +0 0.1831 +0 0.1253 +0 0.1278 +0 0.0889 +0 0.1727 +0 0.0656 +0 0.1427 +0 0.1240 +0 0.0941 +0 0.1603 +0 0.2615 +0 0.0396 +0 0.0547 +0 0.1213 +0 0.0440 +0 0.3750 +0 0.0536 +0 0.0612 +0 0.7135 +0 0.1490 +0 0.0772 +0 0.0881 +0 0.0943 +0 0.0750 +0 0.0480 +0 0.1786 +0 0.6566 +0 0.1363 +0 0.0809 +0 0.2065 +0 0.4996 +0 0.0979 +0 0.1390 +0 0.1037 +0 0.2586 +0 0.1328 +0 0.0342 +0 0.0469 +0 0.1123 +0 0.0546 +0 0.2858 +0 0.0550 +0 0.1374 +0 0.0727 +0 0.1451 +0 0.1549 +0 0.1043 +0 0.0922 +0 0.0641 +0 0.0952 +0 0.1805 +0 0.0467 +0 0.0824 +0 0.0998 +0 0.0495 +0 0.1064 +0 0.1367 +0 0.1301 +0 0.1240 +0 0.0968 +0 0.0722 +0 0.6556 +0 0.1246 +0 0.1151 +0 0.2014 +0 0.1880 +0 0.1412 +0 0.0754 +0 0.0439 +0 0.1207 +0 0.1149 +0 0.0622 +0 0.0582 +0 0.2280 +0 0.0910 +0 0.1641 +0 0.1231 +0 0.0508 +0 0.1381 +0 0.0861 +0 0.0588 +0 0.0915 +0 0.0942 +0 0.0752 +0 0.1042 +1 0.8571 +0 0.1444 +0 0.1847 +0 0.0957 +0 0.0613 +0 0.0983 +0 0.1154 +0 0.0460 +0 0.0597 +0 0.1158 +0 0.0943 +0 0.0834 +0 0.0747 +0 0.1175 +0 0.2828 +0 0.0861 +0 0.0812 +0 0.0846 +0 0.3006 +0 0.1131 +1 0.8755 +0 0.1499 +0 0.0400 +0 0.1554 +0 0.0439 +0 0.1226 +0 0.0309 +0 0.0605 +0 0.0675 +0 0.0811 +0 0.0695 +0 0.1065 +0 0.1300 +0 0.2950 +0 0.1757 +1 0.8316 +0 0.0550 +0 0.1551 +0 0.0900 +0 0.0594 +0 0.0463 +0 0.0536 +0 0.1260 +0 0.3241 +0 0.1307 +0 0.0462 +0 0.0492 +0 0.1343 +0 0.3101 +0 0.1343 +0 0.0872 +0 0.1815 +0 0.5906 +0 0.1198 +0 0.0939 +0 0.1138 +0 0.0472 +0 0.1186 +0 0.0662 +0 0.0739 +0 0.1001 +0 0.1157 +0 0.0670 +0 0.1091 +0 0.0713 +0 0.3907 +0 0.1060 +0 0.0718 +0 0.0586 +0 0.1088 +0 0.1193 +0 0.1213 +0 0.0522 +0 0.1197 +0 0.0951 +0 0.1220 +0 0.1957 +0 0.0623 +0 0.0863 +0 0.1538 +0 0.0579 +0 0.0891 +0 0.1221 +0 0.1365 +0 0.0788 +0 0.0645 +0 0.1094 +0 0.0868 +0 0.0500 +0 0.1657 +0 0.2367 +0 0.0517 +0 0.1322 +0 0.1269 +0 0.1578 +0 0.0999 +0 0.1626 +0 0.0498 +0 0.1339 +0 0.1748 +0 0.0939 +0 0.0667 +0 0.1078 +0 0.1590 +0 0.0594 +0 0.1143 +0 0.1092 +0 0.1535 +0 0.0756 +0 0.0840 +0 0.0421 +1 0.8677 +0 0.1223 +0 0.0611 +0 0.0978 +0 0.0639 +0 0.1153 +0 0.0963 +0 0.0934 +0 0.5863 +0 0.0650 +1 0.8217 +0 0.0566 +0 0.0406 +0 0.1148 +0 0.0582 +0 0.0737 +0 0.0616 +0 0.1020 +0 0.1866 +0 0.1377 +0 0.0509 +0 0.0754 +0 0.0875 +0 0.0613 +0 0.1657 +0 0.4521 +0 0.0924 +0 0.1054 +0 0.0769 +0 0.0833 +0 0.1970 +0 0.0930 +0 0.0524 +0 0.1399 +0 0.1602 +0 0.0820 +0 0.0720 +0 0.1056 +0 0.0699 +1 0.8093 +0 0.0831 +0 0.0492 +0 0.1246 +0 0.1327 +0 0.0749 +0 0.0885 +0 0.1170 +0 0.1564 +0 0.0789 +0 0.1272 +0 0.0945 +0 0.1052 +0 0.1205 +0 0.1215 +0 0.0652 +0 0.0825 +0 0.0563 +0 0.2334 +0 0.0583 +0 0.1005 +0 0.0988 +0 0.0706 +0 0.1335 +0 0.0844 +0 0.0630 +0 0.0874 +0 0.1997 +0 0.1049 +1 0.8013 +0 0.1883 +0 0.0585 +0 0.0583 +0 0.0402 +0 0.1100 +0 0.0838 +0 0.0969 +0 0.0632 +0 0.2091 +0 0.1260 +0 0.0492 +0 0.0440 +0 0.1664 +0 0.5042 +0 0.0566 +0 0.0801 +0 0.0933 +0 0.0951 +0 0.1933 +0 0.3001 +0 0.0325 +0 0.1103 +0 0.2290 +0 0.1283 +0 0.4848 +0 0.0368 +0 0.1261 +0 0.5911 +0 0.0505 +0 0.3542 +0 0.0980 +0 0.1174 +0 0.1749 +0 0.1626 +0 0.3323 +0 0.3487 +0 0.2858 +0 0.0711 +0 0.0665 +0 0.1275 +0 0.2817 +0 0.0626 +0 0.0637 +0 0.0798 +1 0.8198 +0 0.0964 +1 0.8610 +0 0.0492 +0 0.0810 +0 0.1248 +0 0.2416 +0 0.1265 +0 0.0388 +0 0.0623 +0 0.1983 +0 0.0698 +0 0.0567 +0 0.3489 +0 0.1325 +0 0.0933 +0 0.1895 +0 0.0794 +0 0.0605 +0 0.0582 +0 0.1024 +0 0.0451 +0 0.0641 +0 0.0972 +0 0.0829 +0 0.3259 +0 0.3467 +0 0.2616 +0 0.1580 +0 0.0657 +0 0.0988 +0 0.0914 +0 0.0521 +0 0.0872 +0 0.1608 +0 0.1305 +0 0.0935 +0 0.0753 +0 0.0830 +0 0.0658 +0 0.1017 +0 0.1915 +0 0.1190 +0 0.3372 +0 0.2950 +0 0.2471 +0 0.1499 +0 0.1189 +0 0.1063 +0 0.1121 +0 0.0657 +0 0.2192 +0 0.3344 +0 0.0701 +0 0.1204 +0 0.1463 +0 0.0922 +0 0.2561 +0 0.0498 +0 0.1708 +0 0.2864 +0 0.2307 +0 0.1318 +0 0.5622 +0 0.0716 +0 0.0939 +0 0.2289 +0 0.0503 +0 0.2320 +0 0.2338 +0 0.0927 +0 0.2321 +0 0.1087 +0 0.1156 +0 0.1128 +0 0.0413 +0 0.1060 +0 0.0740 +0 0.1631 +0 0.1597 +0 0.0619 +0 0.4954 +0 0.1204 +0 0.0854 +0 0.1414 +0 0.1684 +0 0.1804 +0 0.1413 +0 0.1141 +1 0.2914 +0 0.1084 +0 0.0498 +0 0.1043 +0 0.0499 +0 0.0914 +0 0.1004 +0 0.0762 +0 0.0602 +0 0.6518 +0 0.1055 +0 0.0734 +0 0.0536 +0 0.1572 +0 0.1662 +0 0.0985 +0 0.1029 +0 0.0540 +0 0.0594 +0 0.0553 +0 0.1459 +0 0.1062 +0 0.2133 +0 0.2159 +0 0.1712 +0 0.1494 +0 0.2459 +0 0.0697 +0 0.2086 +0 0.0415 +0 0.0633 +0 0.1958 +0 0.1169 +0 0.1789 +0 0.2635 +0 0.5745 +0 0.1856 +0 0.0556 +0 0.2417 +0 0.0841 +0 0.0585 +0 0.1858 +0 0.0680 +0 0.0519 +1 0.8134 +0 0.0747 +0 0.1115 +0 0.0615 +0 0.0472 +0 0.0767 +0 0.0752 +0 0.0757 +0 0.0633 +0 0.0689 +0 0.3994 +0 0.4078 +0 0.0686 +0 0.1357 +0 0.1710 +0 0.1144 +0 0.0550 +0 0.1544 +0 0.1214 +0 0.0839 +0 0.1648 +0 0.1125 +0 0.1053 +0 0.1049 +0 0.0988 +0 0.2145 +0 0.1645 +0 0.0624 +0 0.3385 +0 0.0642 +0 0.2520 +0 0.1307 +0 0.1657 +0 0.1720 +0 0.3360 +0 0.4647 +0 0.0632 +0 0.1126 +0 0.1106 +0 0.0822 +0 0.1107 +0 0.2714 +0 0.0816 +0 0.1425 +0 0.0620 +0 0.1368 +0 0.1638 +0 0.0849 +0 0.0302 +1 0.7684 +0 0.1666 +0 0.1723 +0 0.1674 +0 0.1148 +0 0.1170 +0 0.1635 +0 0.2342 +0 0.1424 +0 0.0875 +0 0.1103 +0 0.3089 +0 0.0472 +0 0.0659 +0 0.2779 +0 0.2787 +0 0.0647 +0 0.0485 +0 0.3764 +0 0.2761 +0 0.0925 +0 0.1790 +0 0.1735 +0 0.1537 +0 0.2072 +0 0.0557 +0 0.4000 +0 0.2107 +0 0.0675 +0 0.1559 +0 0.3174 +1 0.8489 +0 0.2173 +0 0.7439 +0 0.0725 +0 0.4130 +0 0.0815 +0 0.0963 +0 0.0856 +0 0.0676 +0 0.0976 +0 0.1786 +0 0.2023 +0 0.5845 +0 0.0713 +0 0.0933 +0 0.1213 +0 0.0418 +0 0.0743 +0 0.1787 +0 0.0588 +0 0.0787 +0 0.1437 +0 0.0825 +0 0.1347 +0 0.0903 +0 0.3902 +0 0.0545 +0 0.0848 +0 0.1308 +0 0.1194 +0 0.0927 +0 0.3741 +0 0.0846 +0 0.6661 +0 0.0348 +0 0.2972 +0 0.3730 +0 0.1505 +0 0.0833 +0 0.0693 +0 0.0967 +0 0.1557 +0 0.0873 +0 0.0481 +0 0.1416 +0 0.0879 +0 0.0729 +0 0.1792 +0 0.0829 +0 0.0462 +0 0.0593 +0 0.0465 +0 0.1985 +0 0.0816 +0 0.0757 +0 0.1364 +0 0.1061 +0 0.2789 +0 0.1596 +0 0.1680 +0 0.1541 +0 0.1488 +0 0.1982 +0 0.4209 +0 0.0649 +0 0.1046 +0 0.1268 +0 0.0617 +0 0.0801 +0 0.0621 +0 0.1136 +0 0.0899 +0 0.2203 +0 0.3538 +0 0.0872 +0 0.2820 +0 0.1905 +0 0.0494 +0 0.1077 +0 0.1530 +0 0.0814 +0 0.0879 +0 0.0870 +0 0.7371 +0 0.0980 +0 0.1637 +0 0.1277 +0 0.0834 +0 0.7311 +0 0.0756 +0 0.1923 +0 0.0818 +0 0.1845 +0 0.1076 +0 0.1164 +0 0.0879 +0 0.1091 +0 0.0501 +0 0.1075 +0 0.0575 +0 0.1158 +0 0.1536 +0 0.0589 +0 0.0594 +0 0.0659 +0 0.1099 +0 0.0711 +0 0.4441 +0 0.1876 +0 0.1432 +0 0.6984 +0 0.2569 +0 0.1514 +0 0.0951 +0 0.2425 +0 0.2115 +0 0.0825 +0 0.1290 +0 0.0830 +0 0.0929 +0 0.0782 +0 0.1543 +0 0.0679 +0 0.0765 +0 0.1013 +0 0.2855 +0 0.0523 +0 0.0809 +0 0.2866 +0 0.0496 +0 0.0686 +0 0.0716 +0 0.1921 +0 0.1174 +0 0.0624 +0 0.1307 +0 0.2597 +0 0.1355 +0 0.1798 +0 0.1742 +0 0.2648 +0 0.0758 +0 0.1191 +0 0.0573 +0 0.1236 +0 0.1516 +0 0.0982 +0 0.1391 +0 0.1101 +0 0.1460 +0 0.1599 +0 0.1794 +0 0.4937 +0 0.0863 +0 0.0910 +0 0.0288 +0 0.1029 +0 0.0984 +0 0.1472 +0 0.1241 +0 0.0657 +0 0.0430 +0 0.0746 +0 0.0768 +0 0.2000 +0 0.2006 +0 0.0593 +0 0.0697 +0 0.1623 +0 0.1243 +0 0.1075 +0 0.0894 +0 0.1365 +0 0.0690 +0 0.0457 +0 0.1554 +0 0.0733 +0 0.0583 +0 0.6419 +0 0.1106 +0 0.0717 +0 0.1493 +0 0.1022 +0 0.0839 +0 0.0491 +0 0.0768 +0 0.1906 +0 0.0952 +0 0.2347 +0 0.1220 +0 0.1044 +0 0.0615 +0 0.1064 +0 0.0918 +0 0.0954 +0 0.3216 +0 0.1948 +0 0.1158 +0 0.0373 +0 0.0934 +0 0.1815 +0 0.0794 +0 0.0815 +0 0.1172 +0 0.3858 +0 0.1120 +0 0.0444 +0 0.0709 +0 0.3779 +0 0.0977 +0 0.0777 +0 0.1367 +0 0.0662 +0 0.1485 +0 0.1252 +0 0.0749 +0 0.5385 +0 0.0562 +0 0.1901 +0 0.1014 +0 0.0432 +0 0.0859 +0 0.1355 +0 0.1271 +0 0.2310 +0 0.0622 +0 0.7043 +0 0.1272 +0 0.1098 +0 0.0790 +0 0.0642 +0 0.1451 +0 0.3375 +0 0.0931 +0 0.0883 +0 0.7002 +0 0.2313 +0 0.3417 +0 0.1003 +0 0.0358 +0 0.1358 +0 0.0922 +0 0.0858 +0 0.1021 +0 0.0720 +0 0.3334 +0 0.1765 +0 0.1720 +0 0.0645 +0 0.0904 +0 0.0683 +0 0.1242 +0 0.1989 +0 0.3742 +0 0.1217 +0 0.1297 +0 0.1354 +1 0.7572 +0 0.6304 +0 0.1421 +0 0.0477 +0 0.0500 +0 0.0610 +0 0.0614 +0 0.1907 +0 0.0601 +0 0.0881 +0 0.1558 +1 0.7741 +0 0.2764 +0 0.1329 +1 0.7591 +0 0.1624 +0 0.0963 +0 0.0486 +0 0.0527 +0 0.0886 +0 0.2408 +0 0.1793 +0 0.0447 +0 0.1078 +0 0.2060 +0 0.1771 +0 0.0823 +0 0.2022 +0 0.0464 +0 0.1167 +0 0.1201 +0 0.1355 +0 0.0855 +0 0.2764 +0 0.0603 +0 0.1247 +0 0.0430 +0 0.0801 +0 0.4956 +0 0.0788 +0 0.0449 +0 0.1178 +0 0.1278 +0 0.0532 +0 0.1168 +0 0.1926 +0 0.2063 +0 0.0360 +0 0.1058 +0 0.5581 +0 0.2554 +0 0.0572 +0 0.1026 +0 0.0456 +0 0.0408 +0 0.0704 +0 0.1974 +0 0.0709 +0 0.2737 +0 0.1760 +0 0.1171 +0 0.1694 +0 0.0913 +0 0.0938 +0 0.0570 +0 0.1854 +0 0.0770 +0 0.1060 +0 0.1068 +0 0.0655 +0 0.1226 +0 0.0307 +0 0.0671 +0 0.0502 +0 0.4411 +1 0.8821 +0 0.1306 +0 0.1112 +0 0.0805 +0 0.1785 +0 0.1628 +0 0.1158 +0 0.0568 +0 0.2382 +0 0.1023 +0 0.0705 +0 0.1125 +0 0.0595 +0 0.2281 +0 0.1189 +0 0.2293 +0 0.0984 +0 0.2795 +0 0.1245 +0 0.0973 +0 0.1179 +0 0.2675 +0 0.1311 +0 0.2325 +0 0.3172 +0 0.0945 +0 0.0668 +0 0.1340 +0 0.1469 +0 0.1521 +0 0.0426 +0 0.0821 +0 0.0893 +0 0.1449 +0 0.0798 +0 0.0901 +0 0.0961 +0 0.2811 +0 0.0549 +0 0.0923 +0 0.0517 +0 0.0866 +0 0.0586 +0 0.0907 +0 0.0715 +0 0.1850 +0 0.0765 +0 0.1387 +1 0.7757 +0 0.0702 +0 0.0904 +0 0.1067 +0 0.2940 +0 0.0775 +0 0.6697 +0 0.5931 +0 0.2766 +0 0.2554 +0 0.1096 +0 0.0652 +0 0.1713 +0 0.0399 +0 0.1328 +0 0.7143 +0 0.1297 +0 0.0539 +0 0.0800 +0 0.0632 +0 0.0918 +0 0.1432 +0 0.0908 +0 0.1509 +0 0.5580 +0 0.0894 +0 0.1000 +0 0.1139 +0 0.0739 +0 0.2811 +0 0.0899 +0 0.1167 +0 0.1807 +0 0.0431 +0 0.1757 +0 0.0487 +0 0.0813 +0 0.0463 +0 0.1828 +0 0.2185 +0 0.3036 +0 0.0617 +0 0.0475 +0 0.0515 +0 0.4417 +0 0.0442 +0 0.0878 +0 0.0838 +0 0.0744 +0 0.0918 +0 0.0410 +0 0.0713 +0 0.2078 +0 0.1665 +0 0.0730 +0 0.0606 +0 0.1835 +0 0.0800 +0 0.0842 +0 0.1005 +0 0.1558 +0 0.0527 +0 0.0845 +0 0.1760 +0 0.1433 +0 0.1446 +0 0.0891 +0 0.1046 +0 0.0552 +0 0.4000 +0 0.0390 +0 0.2330 +0 0.6663 +0 0.2377 +0 0.1330 +0 0.0894 +0 0.0719 +0 0.0678 +0 0.0998 +0 0.2358 +0 0.1309 +0 0.0825 +0 0.0514 +0 0.0869 +0 0.4574 +0 0.1208 +0 0.0625 +0 0.1197 +0 0.1373 +0 0.0818 +0 0.0862 +0 0.2576 +0 0.6360 +0 0.0736 +0 0.7381 +0 0.0420 +0 0.0272 +0 0.0712 +0 0.2251 +0 0.0822 +0 0.0574 +0 0.0639 +0 0.1200 +0 0.0568 +0 0.0545 +0 0.0321 +0 0.1392 +0 0.1068 +0 0.1279 +0 0.3443 +0 0.0610 +0 0.0732 +0 0.0487 +0 0.1361 +0 0.0696 +0 0.0839 +0 0.0934 +0 0.0498 +0 0.0626 +0 0.2736 +0 0.1531 +1 0.7901 +0 0.0472 +0 0.1077 +1 0.7954 +0 0.1014 +0 0.0921 +0 0.0662 +0 0.0695 +0 0.0689 +0 0.0705 +0 0.6475 +0 0.1741 +0 0.1277 +0 0.1424 +0 0.1529 +0 0.0484 +1 0.8375 +0 0.1086 +0 0.1136 +0 0.0883 +0 0.1058 +0 0.0600 +0 0.0316 +0 0.1553 +0 0.1769 +1 0.8048 +0 0.0607 +0 0.2417 +0 0.0650 +0 0.1071 +1 0.7549 +0 0.2350 +0 0.0738 +0 0.0631 +0 0.2695 +0 0.1040 +0 0.1705 +0 0.0608 +1 0.8255 +0 0.0930 +0 0.1529 +0 0.2043 +0 0.2391 +0 0.0950 +0 0.1241 +0 0.1289 +0 0.1014 +0 0.0578 +0 0.0955 +0 0.1024 +0 0.2518 +0 0.1203 +0 0.2550 +0 0.1125 +0 0.1439 +0 0.0619 +0 0.5276 +0 0.1957 +0 0.1953 +0 0.0802 +0 0.3144 +0 0.0743 +0 0.3631 +0 0.0640 +0 0.0672 +0 0.1663 +0 0.3643 +0 0.0753 +0 0.0696 +0 0.0984 +0 0.1357 +0 0.1013 +0 0.1407 +0 0.1113 +1 0.7876 +0 0.0629 +0 0.0814 +0 0.0466 +0 0.0726 +0 0.6666 +0 0.0745 +0 0.1155 +0 0.2615 +0 0.3471 +0 0.0658 +0 0.3175 +0 0.0896 +0 0.1214 +0 0.1348 +0 0.2427 +0 0.0549 +0 0.0612 +0 0.0812 +0 0.1081 +0 0.0834 +0 0.0926 +0 0.1317 +0 0.1739 +0 0.0673 +0 0.1193 +1 0.8423 +0 0.1416 +1 0.7912 +0 0.2811 +0 0.2885 +0 0.0956 +0 0.0749 +0 0.2576 +0 0.4207 +0 0.1492 +0 0.2454 +0 0.1016 +0 0.0866 +0 0.0706 +0 0.1515 +0 0.1509 +0 0.1040 +0 0.2249 +0 0.0660 +0 0.1363 +0 0.0648 +0 0.3009 +0 0.1451 +0 0.0573 +0 0.1442 +0 0.0764 +0 0.1956 +0 0.0899 +0 0.0900 +0 0.0935 +0 0.0932 +0 0.2039 +0 0.0879 +0 0.2552 +0 0.1091 +0 0.1294 +0 0.0652 +0 0.0585 +0 0.0835 +0 0.0909 +0 0.1321 +0 0.0811 +0 0.0460 +0 0.1840 +0 0.1273 +0 0.5545 +1 0.8370 +0 0.1709 +0 0.0641 +0 0.2117 +0 0.1941 +0 0.3030 +0 0.0398 +0 0.0450 +0 0.0638 +0 0.0904 +0 0.2194 +0 0.1113 +0 0.1265 +0 0.0830 +0 0.0504 +0 0.1507 +0 0.1194 +0 0.0488 +0 0.2737 +1 0.8605 +0 0.1233 +0 0.0547 +0 0.1229 +0 0.2055 +0 0.0626 +0 0.0531 +0 0.2348 +0 0.1917 +0 0.0525 +0 0.3039 +0 0.0801 +0 0.0546 +0 0.0568 +0 0.0705 +0 0.0663 +0 0.1046 +0 0.1952 +0 0.0471 +0 0.0906 +0 0.1665 +0 0.3557 +0 0.0696 +0 0.1067 +0 0.1625 +0 0.4265 +0 0.6652 +0 0.1176 +0 0.0700 +0 0.0993 +0 0.3026 +0 0.0498 +0 0.0643 +0 0.3432 +0 0.1424 +0 0.0861 +0 0.1009 +0 0.1294 +0 0.4275 +0 0.7343 +0 0.1513 +0 0.1944 +0 0.0371 +0 0.7232 +0 0.0930 +1 0.8686 +0 0.0531 +0 0.0972 +0 0.0412 +0 0.0989 +0 0.0716 +0 0.1067 +0 0.0861 +0 0.1089 +0 0.0823 +0 0.2831 +0 0.1503 +0 0.0517 +0 0.0657 +0 0.0543 +0 0.1756 +0 0.0536 +0 0.0932 +0 0.0769 +0 0.2688 +0 0.0751 +0 0.1754 +0 0.0716 +0 0.0709 +0 0.1209 +0 0.0708 +0 0.6687 +0 0.0962 +0 0.2023 +1 0.8842 +0 0.1928 +0 0.0531 +0 0.0950 +0 0.0839 +0 0.1600 +0 0.1344 +0 0.0929 +0 0.1275 +0 0.0578 +0 0.1995 +0 0.2045 +0 0.1772 +0 0.0715 +0 0.1116 +0 0.0353 +0 0.0476 +0 0.2788 +0 0.4116 +0 0.3079 +0 0.1701 +0 0.2001 +0 0.2422 +0 0.0470 +0 0.0695 +0 0.1290 +0 0.0492 +0 0.0711 +0 0.0741 +0 0.6875 +0 0.0624 +0 0.1372 +0 0.1245 +0 0.1220 +0 0.0877 +0 0.1128 +0 0.2074 +0 0.1818 +0 0.0364 +1 0.7896 +0 0.0584 +0 0.0387 +0 0.1077 +0 0.1058 +0 0.1180 +0 0.0759 +0 0.3597 +0 0.1265 +0 0.0918 +0 0.1318 +0 0.7376 +0 0.1255 +0 0.1057 +0 0.1596 +0 0.1834 +0 0.1145 +0 0.3158 +0 0.0699 +0 0.0480 +0 0.1014 +0 0.0699 +0 0.0844 +0 0.1340 +0 0.0836 +0 0.2199 +0 0.2451 +0 0.1300 +0 0.0362 +0 0.0510 +0 0.2050 +0 0.0615 +0 0.0347 +0 0.3880 +0 0.3628 +0 0.1524 +0 0.1017 +0 0.1635 +0 0.0412 +0 0.0992 +0 0.0513 +0 0.2558 +1 0.7782 +0 0.0912 +0 0.2558 +0 0.1270 +0 0.0610 +0 0.1084 +0 0.1472 +0 0.7453 +0 0.0483 +0 0.7498 +0 0.3026 +0 0.1551 +0 0.0279 +0 0.1242 +0 0.0751 +0 0.1111 +0 0.1757 +0 0.0417 +0 0.1120 +0 0.0977 +0 0.0820 +0 0.0646 +0 0.0754 +0 0.1144 +0 0.0850 +0 0.2254 +0 0.1863 +0 0.0804 +0 0.0810 +0 0.0460 +0 0.0549 +0 0.0888 +0 0.4298 +0 0.0448 +0 0.1703 +1 0.7798 +1 0.8423 +0 0.1027 +0 0.1675 +0 0.0860 +0 0.0952 +0 0.1792 +0 0.0495 +0 0.0318 +0 0.2881 +0 0.1642 +0 0.3455 +0 0.0669 +0 0.1074 +0 0.1963 +0 0.0441 +0 0.0762 +0 0.0730 +0 0.1849 +0 0.4128 +0 0.0732 +0 0.5676 +0 0.1291 +0 0.3526 +0 0.0697 +0 0.0503 +0 0.1831 +0 0.1234 +1 0.8101 +0 0.1936 +0 0.2014 +0 0.1002 +0 0.0999 +0 0.1123 +0 0.0743 +0 0.2381 +0 0.1713 +0 0.0690 +0 0.5422 +0 0.1784 +0 0.0396 +0 0.0626 +0 0.0944 +0 0.2314 +0 0.0959 +0 0.0867 +0 0.1155 +0 0.0634 +0 0.3144 +0 0.0987 +0 0.0973 +0 0.0497 +0 0.0884 +0 0.1611 +0 0.0672 +0 0.1213 +0 0.0369 +0 0.1506 +0 0.1882 +0 0.0586 +0 0.1123 +0 0.1180 +0 0.3243 +0 0.0622 +0 0.0479 +0 0.1392 +0 0.2199 +0 0.2963 +0 0.1715 +0 0.1843 +0 0.1339 +0 0.0605 +0 0.1889 +0 0.0507 +0 0.6402 +0 0.0943 +0 0.2552 +0 0.0583 +0 0.0646 +0 0.0395 +0 0.0332 +0 0.1099 +0 0.1973 +0 0.1000 +0 0.1148 +0 0.0732 +0 0.0685 +0 0.6075 +0 0.1177 +0 0.2031 +0 0.1049 +0 0.2214 +0 0.0980 +0 0.0994 +0 0.2725 +0 0.1668 +0 0.1859 +0 0.1681 +0 0.2549 +0 0.1593 +0 0.1378 +0 0.1219 +0 0.1270 +0 0.0934 +0 0.1611 +0 0.1798 +0 0.0436 +0 0.0580 +0 0.1858 +0 0.1017 +0 0.0615 +0 0.0335 +0 0.1725 +0 0.1362 +0 0.1496 +0 0.1785 +0 0.0806 +0 0.0569 +0 0.1619 +0 0.0373 +0 0.0770 +0 0.1270 +0 0.0538 +0 0.0860 +0 0.0630 +0 0.2596 +0 0.0845 +0 0.1133 +0 0.1600 +0 0.2011 +0 0.0664 +0 0.0973 +0 0.1563 +0 0.1165 +0 0.3279 +0 0.1062 +0 0.1301 +0 0.1032 +0 0.2582 +0 0.0825 +0 0.3027 +0 0.2148 +0 0.0589 +0 0.1458 +0 0.0564 +0 0.0652 +0 0.2139 +0 0.0614 +0 0.2047 +0 0.0914 +0 0.1176 +0 0.1520 +0 0.0630 +0 0.2213 +0 0.1338 +0 0.0691 +0 0.0405 +0 0.1141 +0 0.1716 +0 0.1208 +0 0.0637 +0 0.0719 +0 0.0439 +0 0.1749 +0 0.0718 +0 0.0861 +0 0.0579 +0 0.1211 +0 0.1221 +0 0.0738 +0 0.0563 +0 0.2329 +0 0.0556 +0 0.0634 +0 0.0398 +0 0.1336 +0 0.0614 +0 0.0632 +0 0.0753 +0 0.0943 +0 0.3592 +0 0.0972 +0 0.0570 +0 0.1594 +0 0.1526 +0 0.0478 +0 0.0277 +0 0.1456 +0 0.0857 +0 0.0407 +0 0.0870 +1 0.8704 +0 0.2155 +0 0.1207 +0 0.1305 +0 0.0671 +0 0.1005 +0 0.0633 +0 0.1196 +0 0.0900 +0 0.2817 +0 0.1076 +0 0.0752 +0 0.2221 +0 0.0988 +0 0.1476 +0 0.1922 +0 0.0983 +0 0.1043 +0 0.0487 +0 0.1294 +0 0.1658 +0 0.2293 +0 0.0849 +0 0.1327 +0 0.3747 +0 0.1521 +0 0.1778 +0 0.0861 +0 0.0650 +0 0.1875 +0 0.1590 +0 0.0775 +0 0.3308 +1 0.7896 +0 0.1865 +0 0.3775 +0 0.4362 +0 0.1103 +0 0.0414 +0 0.3645 +0 0.0604 +0 0.1229 +0 0.7365 +0 0.0571 +0 0.1345 +0 0.1098 +0 0.3036 +0 0.1305 +0 0.0452 +0 0.0430 +0 0.0620 +0 0.0943 +0 0.0507 +0 0.1566 +0 0.4483 +0 0.0724 +0 0.0544 +0 0.0634 +0 0.0553 +0 0.2870 +0 0.5117 +0 0.0770 +0 0.1216 +0 0.1366 +0 0.1288 +0 0.6587 +0 0.1573 +0 0.0983 +0 0.0656 +0 0.0731 +0 0.0979 +0 0.0350 +0 0.0899 +0 0.2142 +0 0.1306 +0 0.1280 +0 0.0860 +0 0.1042 +0 0.1419 +0 0.2578 +0 0.0461 +0 0.0361 +0 0.0427 +0 0.0819 +0 0.2096 +0 0.2401 +0 0.1940 +0 0.0687 +0 0.0819 +0 0.0921 +0 0.0641 +0 0.1128 +0 0.0609 +0 0.0604 +0 0.0699 +0 0.1923 +0 0.1933 +0 0.1328 +0 0.0458 +0 0.0645 +0 0.1275 +0 0.1228 +0 0.2139 +0 0.0768 +0 0.0651 +0 0.0848 +0 0.0806 +0 0.0620 +0 0.1018 +0 0.0788 +0 0.1163 +0 0.0606 +0 0.0829 +0 0.1570 +0 0.1571 +0 0.0957 +0 0.1124 +0 0.1150 +0 0.1835 +0 0.0722 +0 0.0741 +0 0.2023 +0 0.0764 +0 0.1080 +0 0.5890 +0 0.1649 +0 0.1392 +0 0.2062 +0 0.1072 +0 0.1411 +0 0.4516 +0 0.0646 +0 0.1136 +0 0.1373 +0 0.1040 +0 0.0618 +1 0.7645 +0 0.0798 +0 0.3231 +0 0.0876 +0 0.1385 +0 0.0726 +0 0.2793 +0 0.0936 +0 0.1446 +0 0.0504 +0 0.1004 +0 0.0676 +0 0.1189 +0 0.1367 +0 0.1101 +1 0.8688 +0 0.1598 +0 0.1147 +0 0.1444 +0 0.0686 +0 0.1320 +0 0.0688 +0 0.0572 +0 0.0315 +0 0.6424 +0 0.4370 +0 0.0746 +0 0.1283 +0 0.0798 +0 0.0594 +0 0.3833 +0 0.0921 +0 0.0785 +0 0.0831 +0 0.1629 +0 0.2013 +0 0.5336 +0 0.3581 +0 0.1060 +0 0.1060 +0 0.4914 +0 0.0937 +0 0.0832 +0 0.0789 +0 0.0778 +0 0.0457 +0 0.0859 +0 0.2093 +0 0.0699 +0 0.4755 +0 0.1791 +0 0.0963 +0 0.4201 +0 0.0502 +0 0.0484 +1 0.7636 +0 0.0903 +0 0.0848 +0 0.0975 +0 0.0768 +0 0.1099 +0 0.0457 +0 0.1259 +0 0.0453 +0 0.1554 +0 0.1130 +0 0.1525 +0 0.1093 +0 0.0738 +0 0.0440 +0 0.0812 +0 0.2826 +0 0.0521 +0 0.0770 +0 0.0705 +0 0.1939 +0 0.0944 +0 0.0760 +1 0.8405 +0 0.2310 +0 0.1764 +0 0.3366 +0 0.0988 +0 0.1258 +0 0.1171 +0 0.1737 +0 0.1231 +0 0.1614 +0 0.1107 +0 0.1335 +0 0.0666 +0 0.0602 +0 0.1869 +0 0.0663 +0 0.1178 +0 0.0711 +0 0.1606 +0 0.1795 +0 0.1033 +0 0.1028 +0 0.1186 +0 0.1048 +0 0.1437 +0 0.0872 +0 0.1538 +0 0.1006 +0 0.1156 +0 0.0531 +0 0.1213 +0 0.1753 +0 0.6171 +0 0.0677 +0 0.0943 +0 0.1832 +0 0.1488 +0 0.1288 +0 0.1910 +0 0.1195 +0 0.1004 +0 0.0480 +0 0.4800 +1 0.8336 +0 0.0714 +0 0.3805 +0 0.1400 +0 0.2973 +0 0.1375 +0 0.2141 +0 0.0853 +0 0.0363 +0 0.1260 +0 0.1227 +0 0.0497 +0 0.1609 +0 0.1834 +0 0.0595 +0 0.0543 +0 0.1510 +0 0.1075 +0 0.0975 +0 0.0690 +0 0.0993 +0 0.3985 +0 0.1098 +0 0.0454 +0 0.0921 +0 0.0883 +0 0.0779 +0 0.0970 +0 0.2416 +0 0.1512 +0 0.0928 +0 0.0797 +0 0.0522 +0 0.1096 +0 0.0602 +0 0.1861 +0 0.1031 +0 0.2145 +0 0.2005 +0 0.1057 +0 0.1072 +0 0.1168 +0 0.7141 +0 0.0786 +0 0.4695 +0 0.3378 +0 0.0804 +0 0.1117 +0 0.0785 +0 0.1023 +0 0.1087 +0 0.1143 +0 0.1914 +0 0.0383 +0 0.1639 +0 0.3176 +0 0.3831 +0 0.2596 +0 0.2214 +0 0.0994 +0 0.1399 +0 0.0660 +0 0.0902 +0 0.3596 +0 0.0587 +0 0.0891 +0 0.1561 +0 0.6655 +0 0.2607 +0 0.0968 +0 0.0414 +0 0.1178 +0 0.0610 +0 0.1238 +0 0.0394 +0 0.0782 +0 0.0677 +0 0.0925 +0 0.0467 +0 0.1218 +0 0.1406 +0 0.1184 +0 0.0957 +0 0.1268 +0 0.3046 +0 0.0888 +0 0.1489 +0 0.0620 +0 0.1114 +0 0.0586 +0 0.2184 +0 0.0563 +0 0.4364 +0 0.0655 +0 0.2366 +0 0.1965 +0 0.1368 +0 0.1468 +0 0.2776 +0 0.0850 +0 0.0915 +0 0.1170 +0 0.0870 +0 0.0910 +0 0.1442 +0 0.2728 +0 0.1054 +0 0.0869 +0 0.0827 +0 0.1200 +0 0.0921 +0 0.1348 +0 0.0991 +0 0.0436 +0 0.1872 +0 0.1855 +0 0.2980 +0 0.1409 +0 0.0590 +0 0.1185 +0 0.3890 +0 0.0998 +0 0.3701 +0 0.0950 +0 0.0378 +0 0.0584 +0 0.0578 +0 0.0826 +0 0.0928 +0 0.0631 +0 0.2371 +0 0.1849 +0 0.0643 +0 0.1950 +0 0.1824 +0 0.0650 +0 0.0994 +0 0.2085 +0 0.1993 +0 0.0748 +0 0.2366 +0 0.0707 +0 0.1232 +0 0.1275 +0 0.1039 +0 0.3741 +0 0.0575 +0 0.0779 +0 0.2285 +0 0.0594 +0 0.5660 +0 0.0418 +0 0.1050 +0 0.0726 +0 0.0947 +0 0.0890 +0 0.5228 +0 0.0552 +0 0.1863 +0 0.0946 +0 0.1625 +0 0.1239 +0 0.0681 +0 0.1041 +0 0.1520 +0 0.0339 +0 0.0296 +0 0.0676 +0 0.0634 +0 0.0915 +0 0.0517 +0 0.2321 +0 0.0861 +0 0.0848 +0 0.0537 +0 0.0466 +0 0.0582 +0 0.0761 +0 0.1050 +0 0.0553 +0 0.0935 +0 0.1361 +0 0.1632 +0 0.1477 +0 0.1290 +0 0.0685 +0 0.1347 +0 0.0944 +0 0.5293 +0 0.0858 +0 0.0484 +0 0.1151 +0 0.1175 +0 0.0492 +0 0.4066 +0 0.0882 +0 0.0316 +0 0.3439 +0 0.0962 +0 0.4145 +0 0.0343 +0 0.0388 +0 0.0656 +0 0.1008 +0 0.2118 +0 0.1765 +0 0.0741 +0 0.1084 +0 0.0518 +0 0.0675 +0 0.1280 +0 0.1676 +0 0.1191 +0 0.1277 +0 0.0660 +0 0.3797 +0 0.0625 +0 0.1103 +0 0.1060 +0 0.1238 +0 0.1398 +0 0.1309 +0 0.1801 +0 0.0507 +0 0.1170 +0 0.0619 +0 0.1541 +0 0.1681 +0 0.0463 +0 0.0636 +0 0.2942 +0 0.2294 +0 0.0450 +0 0.2021 +0 0.0893 +0 0.1360 +0 0.2780 +0 0.0531 +0 0.1338 +0 0.0777 +0 0.4520 +0 0.1528 +0 0.1349 +0 0.0387 +0 0.3783 +0 0.0798 +0 0.0894 +0 0.0483 +0 0.6979 +0 0.0994 +0 0.1573 +0 0.0933 +0 0.3985 +0 0.2416 +0 0.2009 +0 0.2005 +0 0.0409 +0 0.0529 +0 0.1124 +0 0.0650 +0 0.1452 +0 0.0924 +0 0.1138 +0 0.3684 +1 0.7930 +0 0.2190 +0 0.1146 +0 0.4516 +0 0.1234 +0 0.0521 +0 0.1357 +0 0.1099 +0 0.5402 +0 0.3397 +0 0.1285 +0 0.1889 +0 0.4260 +0 0.0730 +0 0.0354 +0 0.1164 +0 0.1761 +0 0.7479 +0 0.0385 +0 0.1257 +0 0.2056 +0 0.1726 +0 0.0571 +0 0.1197 +0 0.1803 +0 0.0689 +0 0.0378 +0 0.2233 +0 0.5446 +0 0.0489 +0 0.0480 +0 0.1965 +0 0.0730 +0 0.0917 +0 0.3921 +0 0.0490 +0 0.0978 +0 0.0877 +0 0.0602 +0 0.0799 +0 0.0995 +0 0.1439 +0 0.1931 +0 0.4245 +0 0.1597 +0 0.1014 +0 0.0918 +0 0.2605 +0 0.2499 +0 0.0975 +0 0.0348 +0 0.1769 +0 0.2414 +0 0.2294 +0 0.5264 +0 0.0534 +0 0.0421 +0 0.1146 +0 0.0973 +0 0.1016 +0 0.1228 +0 0.1798 +0 0.0530 +0 0.0727 +0 0.0986 +0 0.0832 +0 0.0902 +0 0.1745 +0 0.0651 +0 0.4252 +0 0.1265 +0 0.3765 +1 0.8447 +0 0.1445 +0 0.1022 +0 0.1173 +0 0.1493 +0 0.2306 +0 0.0386 +0 0.1038 +0 0.0948 +0 0.0979 +1 0.8439 +0 0.2104 +0 0.1288 +0 0.2306 +0 0.2432 +0 0.1014 +0 0.0752 +1 0.7930 +0 0.1837 +0 0.1621 +0 0.0542 +0 0.0915 +0 0.5432 +0 0.0815 +0 0.2658 +0 0.1487 +0 0.1421 +0 0.0799 +0 0.0912 +0 0.0926 +0 0.0848 +1 0.8448 +0 0.1263 +0 0.0847 +0 0.0714 +1 0.7621 +0 0.0373 +0 0.0918 +0 0.2467 +0 0.0832 +0 0.2864 +0 0.1445 +0 0.1352 +0 0.1020 +0 0.2750 +0 0.1704 +0 0.1743 +0 0.0597 +0 0.0776 +0 0.0959 +0 0.0496 +0 0.0665 +0 0.1774 +0 0.1376 +0 0.0864 +0 0.1565 +0 0.1251 +0 0.0831 +0 0.1052 +0 0.0628 +0 0.0421 +0 0.3979 +0 0.0834 +0 0.0751 +0 0.0508 +0 0.0407 +0 0.0499 +0 0.1008 +0 0.1175 +0 0.1157 +0 0.0808 +0 0.0355 +0 0.0441 +0 0.0674 +0 0.1027 +0 0.0761 +0 0.0607 +0 0.0523 +0 0.1787 +0 0.1644 +0 0.1405 +0 0.1796 +0 0.1946 +0 0.1039 +0 0.1430 +0 0.1204 +0 0.1751 +0 0.0894 +0 0.2962 +0 0.1346 +0 0.0788 +0 0.0602 +0 0.1110 +0 0.0875 +0 0.1230 +1 0.7573 +0 0.0740 +0 0.1025 +0 0.3578 +0 0.0854 +0 0.1421 +0 0.0821 +0 0.1687 +0 0.0673 +0 0.0445 +0 0.1187 +0 0.1129 +0 0.1105 +0 0.0638 +0 0.0832 +0 0.0719 +0 0.0546 +0 0.0904 +0 0.0550 +0 0.2315 +0 0.1728 +0 0.0736 +0 0.0884 +0 0.0610 +0 0.0770 +0 0.1007 +0 0.1577 +0 0.1329 +0 0.0302 +0 0.3048 +0 0.1386 +0 0.1201 +0 0.0774 +1 0.7660 +0 0.0344 +0 0.0801 +0 0.1051 +0 0.1155 +0 0.0964 +0 0.1040 +0 0.0615 +0 0.0529 +0 0.1344 +0 0.0811 +0 0.1483 +0 0.1330 +0 0.0574 +0 0.0863 +0 0.1787 +0 0.1143 +0 0.2363 +0 0.6206 +0 0.0853 +0 0.0704 +0 0.1181 +0 0.4979 +0 0.0800 +0 0.1050 +0 0.0537 +0 0.2220 +0 0.1341 +0 0.0390 +0 0.4189 +0 0.2126 +0 0.1540 +0 0.1234 +0 0.1452 +0 0.0574 +0 0.0755 +0 0.2474 +0 0.1979 +0 0.0668 +0 0.2390 +0 0.1027 +0 0.1100 +0 0.1041 +0 0.0434 +0 0.1428 +0 0.1431 +0 0.0542 +0 0.0715 +0 0.0490 +0 0.1213 +0 0.0774 +0 0.2726 +0 0.0517 +0 0.6556 +0 0.1008 +0 0.1050 +0 0.1056 +0 0.0504 +0 0.4539 +0 0.0652 +0 0.2777 +0 0.0550 +0 0.1195 +0 0.0823 +0 0.1722 +0 0.1768 +0 0.1718 +0 0.1142 +0 0.0947 +0 0.1292 +0 0.2734 +0 0.2015 +0 0.4194 +0 0.0735 +0 0.0849 +0 0.0744 +0 0.1183 +0 0.0321 +0 0.0899 +0 0.1118 +0 0.0958 +0 0.0980 +0 0.1754 +0 0.0936 +0 0.4914 +0 0.0742 +0 0.1358 +0 0.2576 +0 0.1086 +0 0.4636 +0 0.2616 +0 0.0928 +0 0.2319 +0 0.0794 +0 0.0846 +0 0.0400 +0 0.1354 +0 0.0802 +0 0.1306 +0 0.3778 +0 0.0973 +0 0.0806 +0 0.0701 +0 0.0580 +0 0.0598 +0 0.0378 +0 0.0704 +0 0.0659 +0 0.1571 +0 0.1484 +0 0.1653 +0 0.2078 +0 0.0887 +0 0.0627 +0 0.0671 +0 0.1782 +0 0.0522 +0 0.1636 +0 0.1624 +0 0.1530 +0 0.1128 +0 0.0670 +0 0.3073 +0 0.1645 +0 0.1731 +0 0.0969 +0 0.0491 +0 0.0590 +0 0.1233 +0 0.0749 +0 0.2634 +0 0.0886 +0 0.1332 +0 0.0960 +0 0.0533 +0 0.1467 +0 0.1328 +0 0.2028 +0 0.0527 +0 0.0550 +0 0.0850 +0 0.0766 +0 0.0444 +0 0.0920 +0 0.0690 +0 0.0317 +0 0.1121 +0 0.1827 +0 0.0641 +0 0.0639 +0 0.0966 +0 0.0980 +0 0.0826 +0 0.1149 +0 0.0432 +0 0.1293 +0 0.0652 +0 0.0560 +0 0.0498 +0 0.0751 +0 0.1763 +0 0.0735 +0 0.2102 +0 0.1734 +0 0.6098 +0 0.0588 +0 0.1588 +0 0.4090 +1 0.8071 +0 0.4953 +0 0.1347 +0 0.0665 +0 0.0630 +0 0.1160 +0 0.0517 +0 0.0916 +0 0.0619 +0 0.1419 +0 0.0494 +0 0.1303 +0 0.0883 +0 0.0956 +0 0.1456 +0 0.0855 +0 0.0667 +0 0.2122 +0 0.1590 +0 0.0731 +0 0.0880 +0 0.1951 +0 0.1140 +0 0.1543 +0 0.0666 +0 0.4014 +0 0.1551 +0 0.0696 +0 0.0864 +0 0.0774 +0 0.1211 +0 0.1887 +0 0.0822 +0 0.1196 +0 0.1411 +0 0.4386 +0 0.0509 +0 0.0886 +0 0.0466 +0 0.0680 +0 0.0916 +0 0.1076 +0 0.1054 +0 0.1640 +0 0.0731 +0 0.1573 +0 0.0757 +0 0.1197 +0 0.1336 +0 0.1650 +0 0.1502 +0 0.2370 +0 0.2005 +0 0.0467 +0 0.0598 +0 0.0332 +0 0.1976 +0 0.1527 +0 0.6775 +0 0.0827 +0 0.0903 +0 0.6595 +0 0.0975 +0 0.0905 +0 0.1983 +0 0.0534 +0 0.0746 +0 0.0437 +0 0.0739 +0 0.1099 +0 0.0992 +0 0.0955 +0 0.1334 +0 0.0357 +0 0.1733 +0 0.0695 +0 0.0640 +0 0.0688 +0 0.0433 +0 0.2405 +0 0.1011 +0 0.0459 +0 0.6764 +0 0.0563 +0 0.2788 +0 0.0739 +0 0.0882 +0 0.3419 +0 0.1288 +0 0.1373 +0 0.0831 +0 0.1446 +0 0.0883 +0 0.1370 +0 0.2182 +0 0.2247 +0 0.6760 +0 0.0496 +0 0.1211 +0 0.0791 +0 0.1068 +0 0.1335 +0 0.0695 +0 0.1100 +0 0.0835 +0 0.4995 +0 0.2800 +0 0.1052 +0 0.1333 +0 0.0803 +1 0.7300 +0 0.1828 +0 0.1877 +0 0.1561 +0 0.0900 +0 0.1379 +0 0.7484 +0 0.0820 +0 0.0398 +1 0.8730 +0 0.1462 +0 0.0424 +0 0.0626 +0 0.0699 +0 0.3050 +0 0.1627 +0 0.1485 +0 0.1558 +0 0.0297 +0 0.0645 +0 0.1045 +0 0.1023 +0 0.0489 +0 0.7304 +0 0.1688 +0 0.0459 +0 0.2277 +0 0.0438 +0 0.1021 +0 0.0731 +0 0.7028 +1 0.8330 +0 0.0479 +0 0.0774 +0 0.0450 +0 0.0791 +0 0.1662 +1 0.3033 +0 0.1763 +0 0.1269 +0 0.1745 +0 0.1035 +0 0.0736 +0 0.0867 +0 0.3914 +0 0.0941 +0 0.1580 +0 0.3490 +0 0.0912 +0 0.0366 +0 0.0344 +0 0.0331 +0 0.0548 +0 0.1078 +0 0.0685 +0 0.0627 +0 0.0411 +0 0.0584 +0 0.1799 +0 0.0721 +0 0.0835 +0 0.1589 +0 0.1918 +0 0.1219 +0 0.1288 +0 0.0525 +0 0.1236 +0 0.0776 +0 0.0854 +0 0.0653 +0 0.0438 +0 0.1601 +0 0.0400 +0 0.0741 +0 0.0981 +0 0.2285 +0 0.0466 +0 0.1568 +0 0.1802 +0 0.1218 +0 0.0833 +0 0.0981 +0 0.0768 +0 0.1392 +0 0.2381 +0 0.0656 +0 0.0709 +0 0.0566 +0 0.1727 +0 0.0600 +0 0.4261 +0 0.0899 +0 0.0817 +0 0.0703 +0 0.1337 +0 0.5965 +0 0.1147 +0 0.1387 +0 0.1004 +0 0.0355 +0 0.0931 +0 0.1755 +0 0.0513 +0 0.2995 +0 0.0774 +0 0.0878 +0 0.1335 +1 0.8022 +0 0.0600 +0 0.1431 +0 0.3060 +0 0.0619 +0 0.1384 +0 0.2315 +0 0.2115 +0 0.0849 +0 0.2610 +0 0.0848 +0 0.1284 +0 0.1489 +0 0.0713 +0 0.0502 +0 0.1063 +0 0.0837 +0 0.1097 +0 0.0795 +0 0.1629 +0 0.0798 +0 0.1222 +0 0.0597 +0 0.0351 +1 0.8222 +0 0.0395 +0 0.1095 +0 0.1712 +0 0.0564 +0 0.1246 +0 0.0416 +0 0.5210 +1 0.8593 +0 0.0581 +0 0.0856 +0 0.6915 +0 0.0602 +0 0.0890 +0 0.3006 +0 0.2017 +0 0.0893 +0 0.0750 +0 0.1649 +0 0.5655 +0 0.0396 +0 0.0654 +0 0.0699 +0 0.2112 +0 0.1900 +0 0.1154 +0 0.1405 +0 0.1556 +0 0.0481 +0 0.1473 +0 0.2162 +0 0.1243 +0 0.1948 +0 0.0873 +0 0.1677 +1 0.8698 +0 0.0547 +0 0.0774 +0 0.1265 +0 0.6584 +0 0.1351 +0 0.0688 +0 0.0431 +0 0.1255 +0 0.0457 +0 0.0882 +0 0.0680 +0 0.1136 +0 0.1653 +0 0.1611 +0 0.0651 +0 0.0549 +0 0.1146 +0 0.1645 +0 0.1437 +0 0.0435 +0 0.0431 +0 0.1206 +0 0.0805 +0 0.2347 +0 0.2166 +0 0.0754 +0 0.1523 +0 0.0845 +0 0.0538 +0 0.0931 +0 0.5726 +0 0.3046 +0 0.0335 +0 0.0687 +0 0.0984 +0 0.1728 +0 0.1790 +0 0.1008 +0 0.1307 +0 0.0680 +0 0.0433 +0 0.2067 +0 0.0786 +0 0.2214 +0 0.1567 +1 0.7824 +0 0.0728 +0 0.2650 +0 0.1740 +0 0.3083 +0 0.1034 +0 0.1917 +0 0.0467 +0 0.5830 +0 0.6174 +0 0.3526 +0 0.1500 +0 0.1056 +0 0.6743 +0 0.3624 +0 0.0460 +0 0.0758 +0 0.0701 +0 0.0701 +0 0.1892 +0 0.2293 +0 0.0821 +0 0.2840 +0 0.1667 +0 0.1817 +0 0.0509 +0 0.0457 +0 0.6449 +0 0.0918 +0 0.1873 +0 0.1032 +0 0.1155 +0 0.0767 +0 0.1003 +0 0.4194 +0 0.2231 +0 0.0654 +0 0.0630 +0 0.1281 +0 0.3315 +0 0.1120 +0 0.1270 +0 0.1080 +0 0.2094 +0 0.0472 +0 0.1412 +0 0.3123 +0 0.1019 +0 0.0987 +0 0.1529 +0 0.1194 +0 0.0939 +0 0.1506 +0 0.0599 +0 0.0633 +0 0.2127 +0 0.1521 +0 0.1942 +0 0.0754 +0 0.1158 +0 0.1098 +0 0.1058 +0 0.1772 +0 0.0850 +0 0.0588 +0 0.0943 +0 0.1384 +0 0.0857 +0 0.0776 +0 0.1375 +0 0.1423 +0 0.0419 +0 0.1908 +0 0.0369 +0 0.1043 +0 0.0844 +0 0.5031 +0 0.0697 +0 0.0754 +0 0.2026 +0 0.1492 +0 0.1403 +0 0.0787 +0 0.1357 +0 0.2044 +0 0.1667 +0 0.1251 +0 0.0642 +0 0.1618 +0 0.1644 +0 0.4178 +0 0.0901 +0 0.2185 +0 0.0711 +0 0.0704 +0 0.0730 +0 0.0611 +0 0.0986 +0 0.0744 +0 0.1336 +0 0.1575 +0 0.1405 +0 0.0541 +0 0.0928 +0 0.1796 +0 0.1370 +0 0.1936 +0 0.1126 +0 0.2107 +0 0.2990 +0 0.0375 +0 0.0617 +0 0.1772 +0 0.1253 +0 0.0731 +0 0.3261 +0 0.1374 +0 0.1086 +0 0.1231 +0 0.2171 +0 0.0383 +0 0.0915 +0 0.0594 +0 0.2572 +0 0.1523 +0 0.1709 +0 0.0992 +0 0.2360 +0 0.1198 +0 0.1571 +0 0.3179 +0 0.1844 +0 0.0436 +0 0.1021 +0 0.0904 +0 0.2580 +0 0.1731 +0 0.0659 +0 0.0785 +0 0.1009 +0 0.1076 +0 0.4984 +0 0.1100 +0 0.0799 +0 0.1594 +0 0.1461 +0 0.1468 +0 0.0429 +0 0.0689 +0 0.0790 +0 0.2070 +0 0.1866 +0 0.1624 +0 0.2440 +0 0.1181 +0 0.1655 +0 0.0658 +0 0.1704 +0 0.1553 +0 0.1918 +0 0.1267 +0 0.1798 +0 0.0445 +0 0.1227 +0 0.1525 +0 0.1199 +0 0.1740 +0 0.0986 +0 0.2155 +0 0.0563 +0 0.0752 +0 0.1819 +0 0.1327 +0 0.0913 +0 0.0449 +0 0.0845 +0 0.0639 +0 0.1222 +0 0.1029 +0 0.0772 +0 0.0277 +0 0.1607 +0 0.0787 +0 0.0533 +0 0.1518 +0 0.0614 +0 0.2054 +0 0.1941 +0 0.1882 +0 0.2011 +0 0.0839 +0 0.2220 +0 0.0998 +0 0.0912 +0 0.1129 +0 0.1312 +0 0.1107 +0 0.0514 +0 0.2386 +0 0.1877 +0 0.1351 +0 0.0982 +0 0.0805 +0 0.0732 +0 0.1533 +0 0.3699 +0 0.1611 +0 0.0533 +0 0.3738 +0 0.1211 +0 0.0701 +0 0.2140 +0 0.1728 +0 0.0715 +0 0.0771 +0 0.2217 +0 0.1347 +0 0.0604 +0 0.0775 +0 0.7282 +0 0.2066 +0 0.0861 +0 0.0916 +0 0.0631 +0 0.0710 +0 0.3963 +0 0.1160 +0 0.4738 +0 0.0879 +0 0.6512 +0 0.1457 +0 0.1933 +1 0.8038 +0 0.0863 +0 0.1209 +0 0.0929 +0 0.1059 +0 0.0465 +0 0.3887 +0 0.0736 +0 0.0438 +0 0.0754 +0 0.2198 +0 0.0732 +0 0.5610 +0 0.1572 +0 0.0649 +0 0.0995 +0 0.0964 +0 0.1000 +0 0.1134 +0 0.1299 +0 0.3221 +0 0.1935 +0 0.1086 +0 0.0903 +0 0.0939 +0 0.1826 +0 0.0744 +0 0.0834 +0 0.3845 +0 0.1252 +0 0.1133 +0 0.0681 +0 0.1492 +0 0.0660 +0 0.0892 +0 0.1897 +0 0.0912 +0 0.1421 +0 0.0959 +0 0.2554 +0 0.1001 +0 0.0540 +0 0.1110 +0 0.0974 +0 0.1487 +0 0.1266 +0 0.0276 +0 0.0585 +0 0.0743 +0 0.2185 +0 0.0991 +0 0.0542 +0 0.0871 +0 0.0896 +0 0.1568 +0 0.0925 +0 0.1360 +0 0.1169 +0 0.1403 +0 0.1155 +0 0.0847 +0 0.0859 +0 0.0813 +0 0.0945 +0 0.4073 +0 0.1787 +0 0.7144 +0 0.3747 +0 0.0702 +0 0.7435 +0 0.0703 +0 0.0881 +0 0.0812 +0 0.1074 +0 0.0775 +0 0.0585 +0 0.1915 +0 0.0504 +0 0.0921 +0 0.0643 +0 0.3014 +0 0.5063 +0 0.1137 +0 0.4150 +0 0.1153 +0 0.2181 +0 0.0768 +0 0.1403 +0 0.2792 +0 0.1782 +0 0.0969 +0 0.0943 +0 0.0868 +0 0.1252 +0 0.1694 +0 0.1867 +0 0.0712 +0 0.1526 +0 0.3702 +0 0.0441 +0 0.6678 +0 0.2443 +0 0.2599 +0 0.0599 +0 0.0912 +0 0.2211 +0 0.0529 +1 0.8349 +0 0.0637 +1 0.6847 +0 0.0805 +0 0.1738 +0 0.2094 +0 0.1154 +0 0.0822 +0 0.0480 +0 0.3051 +0 0.1458 +0 0.1350 +0 0.1065 +0 0.2140 +0 0.1119 +0 0.1839 +0 0.1304 +0 0.2326 +0 0.1412 +0 0.0707 +0 0.1978 +0 0.1158 +0 0.2696 +0 0.1540 +0 0.2043 +0 0.1188 +0 0.2466 +0 0.1636 +0 0.0765 +1 0.8861 +0 0.0546 +0 0.1758 +0 0.1320 +0 0.0485 +0 0.1104 +0 0.0560 +0 0.0994 +0 0.0782 +0 0.4385 +0 0.0616 +0 0.0711 +0 0.1014 +0 0.1120 +0 0.0621 +0 0.2839 +0 0.0697 +0 0.1516 +0 0.1549 +0 0.1977 +0 0.1819 +0 0.4559 +0 0.1483 +0 0.0979 +0 0.0794 +0 0.1251 +0 0.0651 +0 0.2200 +0 0.1842 +0 0.6360 +0 0.0968 +0 0.0328 +0 0.0479 +0 0.0975 +0 0.0577 +0 0.1473 +0 0.0752 +0 0.6811 +0 0.2455 +0 0.0783 +0 0.1244 +0 0.0588 +0 0.0670 +0 0.1310 +0 0.1092 +1 0.8571 +0 0.0885 +0 0.1056 +0 0.0874 +0 0.0491 +0 0.1766 +0 0.1687 +0 0.1270 +0 0.1564 +0 0.1630 +0 0.0373 +0 0.1267 +0 0.0320 +0 0.0977 +0 0.0791 +0 0.2617 +0 0.0986 +0 0.1117 +0 0.0546 +0 0.1319 +0 0.2709 +0 0.0854 +0 0.2002 +0 0.4447 +0 0.1074 +0 0.0947 +0 0.1663 +0 0.2150 +0 0.1015 +0 0.1189 +0 0.0721 +0 0.1696 +0 0.1260 +0 0.0639 +0 0.0527 +0 0.0765 +0 0.1191 +0 0.1141 +0 0.3029 +0 0.4417 +0 0.1203 +0 0.6761 +0 0.1657 +0 0.0966 +0 0.1580 +1 0.8034 +0 0.1247 +0 0.4065 +0 0.1005 +0 0.1889 +0 0.1748 +0 0.1864 +0 0.0853 +0 0.1314 +0 0.2752 +0 0.0912 +0 0.1381 +0 0.0916 +0 0.1209 +0 0.1846 +0 0.1182 +0 0.7472 +0 0.0518 +0 0.2828 +0 0.0965 +0 0.0650 +0 0.0846 +0 0.0739 +0 0.1178 +0 0.0916 +0 0.2052 +0 0.0946 +0 0.1044 +0 0.0312 +0 0.0676 +0 0.3624 +0 0.0640 +0 0.0588 +0 0.1563 +0 0.0569 +0 0.1147 +0 0.2136 +0 0.0289 +0 0.0815 +0 0.0921 +0 0.1348 +0 0.1150 +0 0.1233 +0 0.1192 +0 0.0985 +0 0.0747 +0 0.0670 +0 0.0565 +0 0.1216 +0 0.0417 +0 0.4256 +0 0.0416 +0 0.3549 +0 0.1485 +0 0.1533 +0 0.2306 +0 0.0726 +0 0.1409 +0 0.1299 +0 0.0800 +0 0.1198 +0 0.1543 +0 0.0819 +0 0.3267 +0 0.1631 +0 0.1696 +0 0.2037 +0 0.5564 +0 0.1825 +0 0.2206 +0 0.0652 +0 0.1089 +0 0.0589 +0 0.2643 +0 0.1120 +0 0.0965 +0 0.2778 +0 0.1561 +0 0.0474 +0 0.1244 +0 0.1691 +0 0.1758 +0 0.1590 +0 0.1647 +0 0.2332 +0 0.0634 +0 0.1985 +0 0.2573 +0 0.0496 +0 0.0883 +0 0.1346 +0 0.1633 +0 0.0825 +0 0.2066 +0 0.0510 +0 0.2667 +0 0.4214 +0 0.4618 +0 0.2759 +0 0.0370 +0 0.0635 +0 0.1234 +0 0.1631 +0 0.3168 +0 0.0340 +0 0.0704 +0 0.1642 +0 0.1520 +0 0.1748 +0 0.0885 +0 0.2456 +0 0.0947 +0 0.0995 +0 0.0688 +0 0.0571 +0 0.0910 +0 0.2746 +0 0.1490 +0 0.1486 +0 0.0823 +0 0.3489 +0 0.0561 +0 0.0967 +0 0.2821 +1 0.8115 +0 0.1955 +0 0.1270 +0 0.0960 +0 0.2073 +0 0.5974 +0 0.4043 +0 0.6860 +0 0.1912 +0 0.0604 +0 0.0777 +0 0.0707 +0 0.0822 +0 0.0645 +0 0.1212 +0 0.1487 +0 0.0896 +0 0.1844 +0 0.0414 +0 0.0740 +0 0.0381 +0 0.1355 +0 0.0758 +0 0.0749 +0 0.1885 +0 0.0756 +0 0.1216 +0 0.0412 +0 0.1505 +0 0.0793 +0 0.1833 +0 0.0644 +0 0.2281 +0 0.0775 +0 0.0838 +0 0.1757 +0 0.0551 +0 0.0719 +0 0.0839 +0 0.0765 +0 0.1165 +0 0.1719 +0 0.1456 +0 0.0788 +0 0.0825 +0 0.1961 +0 0.1146 +0 0.3399 +0 0.0503 +0 0.4246 +0 0.1146 +0 0.1999 +0 0.1610 +0 0.2690 +0 0.1513 +0 0.3753 +0 0.0457 +0 0.0462 +0 0.1931 +0 0.2796 +0 0.0357 +0 0.0778 +0 0.0676 +0 0.0706 +0 0.0419 +0 0.1646 +0 0.0909 +0 0.4985 +0 0.0707 +0 0.1021 +0 0.1429 +0 0.0662 +0 0.1756 +0 0.1791 +0 0.2295 +0 0.1300 +0 0.0651 +0 0.1070 +0 0.0446 +0 0.0495 +0 0.2918 +0 0.0879 +0 0.0932 +0 0.1002 +0 0.0600 +0 0.1162 +0 0.0804 +0 0.0486 +0 0.0684 +0 0.2964 +0 0.0542 +0 0.1352 +0 0.3510 +0 0.0759 +0 0.1123 +0 0.4208 +0 0.1884 +0 0.0720 +0 0.2200 +0 0.2492 +0 0.0370 +0 0.1064 +0 0.0429 +0 0.0830 +0 0.0674 +0 0.1498 +0 0.0713 +0 0.0700 +0 0.0567 +0 0.2124 +0 0.1968 +0 0.0983 +0 0.0482 +0 0.1570 +0 0.0600 +0 0.0581 +0 0.1054 +0 0.1393 +0 0.1329 +0 0.0525 +0 0.0543 +0 0.0763 +0 0.1358 +0 0.0858 +0 0.1205 +0 0.0681 +0 0.0881 +0 0.0492 +0 0.0791 +0 0.0664 +0 0.0683 +0 0.0674 +0 0.1906 +0 0.3233 +0 0.4423 +0 0.1355 +0 0.1560 +0 0.0483 +0 0.1973 +0 0.1114 +0 0.1555 +0 0.5873 +0 0.1912 +0 0.0711 +0 0.0495 +0 0.0777 +0 0.1416 +0 0.0819 +0 0.1373 +1 0.8625 +0 0.1069 +0 0.1039 +0 0.1274 +0 0.2100 +0 0.0800 +0 0.1661 +0 0.1783 +0 0.1916 +0 0.3995 +0 0.0578 +0 0.0575 +0 0.1042 +0 0.5922 +0 0.0686 +0 0.1347 +0 0.1187 +0 0.1267 +0 0.0504 +0 0.0941 +0 0.1473 +0 0.1001 +0 0.0926 +0 0.1460 +0 0.1484 +0 0.2181 +0 0.0569 +0 0.0614 +0 0.0529 +0 0.3805 +0 0.2668 +0 0.1143 +0 0.1423 +0 0.1586 +0 0.0811 +0 0.0731 +0 0.0607 +0 0.0535 +0 0.0657 +0 0.2335 +0 0.1777 +0 0.0961 +0 0.1003 +0 0.0815 +0 0.1349 +0 0.2414 +0 0.0625 +0 0.0979 +0 0.1318 +0 0.1881 +0 0.1031 +1 0.8112 +0 0.1397 +0 0.1422 +0 0.1015 +0 0.1150 +0 0.1071 +0 0.0553 +0 0.0800 +0 0.0463 +0 0.0997 +0 0.0684 +0 0.1213 +0 0.1058 +0 0.1313 +0 0.0711 +1 0.8642 +0 0.2072 +0 0.0797 +0 0.1251 +0 0.0891 +0 0.3648 +0 0.1059 +0 0.2129 +0 0.1444 +0 0.1769 +0 0.0603 +0 0.1317 +0 0.1955 +0 0.1613 +0 0.0991 +0 0.0662 +0 0.0721 +0 0.1030 +0 0.0760 +0 0.0611 +0 0.0704 +0 0.2495 +0 0.1844 +0 0.5366 +1 0.8649 +0 0.2554 +0 0.0539 +0 0.0804 +0 0.0728 +0 0.1095 +0 0.0839 +0 0.2370 +0 0.0705 +0 0.0696 +0 0.1123 +0 0.1967 +0 0.0647 +0 0.1147 +0 0.1294 +0 0.0528 +0 0.1081 +0 0.0807 +0 0.0625 +0 0.1286 +0 0.4675 +0 0.0548 +0 0.2371 +0 0.2657 +0 0.1196 +0 0.1568 +0 0.0982 +0 0.0692 +0 0.0781 +0 0.1129 +0 0.1618 +0 0.1224 +0 0.0868 +0 0.0775 +0 0.0405 +0 0.0426 +0 0.0456 +0 0.0465 +0 0.1033 +0 0.1009 +0 0.0603 +0 0.0435 +0 0.1502 +0 0.1732 +0 0.1536 +0 0.1327 +0 0.1155 +0 0.0891 +0 0.0858 +0 0.0713 +0 0.2034 +0 0.1286 +0 0.0856 +0 0.0916 +0 0.0715 +0 0.0630 +0 0.1385 +0 0.4877 +0 0.1838 +0 0.0959 +0 0.1043 +0 0.1628 +0 0.0493 +0 0.0675 +0 0.7096 +0 0.1159 +0 0.0611 +0 0.1014 +0 0.7115 +0 0.0724 +0 0.1388 +0 0.2694 +0 0.1598 +0 0.1078 +0 0.2107 +0 0.0908 +0 0.0459 +0 0.0951 +0 0.0847 +0 0.1658 +0 0.1075 +0 0.6888 +0 0.1092 +0 0.0771 +0 0.1111 +0 0.1114 +0 0.1245 +0 0.1819 +0 0.0511 +0 0.1123 +0 0.1386 +0 0.1904 +0 0.0903 +0 0.0539 +0 0.0834 +0 0.6854 +0 0.0940 +0 0.0888 +0 0.0707 +0 0.1377 +0 0.1739 +1 0.8023 +0 0.3417 +0 0.6122 +0 0.0718 +0 0.0700 +0 0.0802 +0 0.1913 +0 0.0994 +0 0.0769 +0 0.0881 +0 0.0924 +0 0.0595 +0 0.1195 +0 0.2115 +0 0.0597 +0 0.0528 +0 0.1000 +0 0.0962 +0 0.1238 +0 0.1035 +0 0.0451 +0 0.1013 +0 0.1000 +0 0.3885 +0 0.1423 +0 0.0899 +0 0.3820 +0 0.1752 +0 0.0555 +0 0.1691 +0 0.0929 +0 0.0689 +0 0.1062 +0 0.1600 +0 0.0905 +0 0.1238 +0 0.4990 +0 0.0963 +0 0.4570 +1 0.7797 +0 0.0712 +0 0.0732 +0 0.1125 +0 0.0928 +0 0.0650 +0 0.2239 +0 0.1843 +0 0.1996 +0 0.2071 +0 0.0287 +0 0.0702 +0 0.1011 +0 0.0999 +0 0.1133 +0 0.1335 +0 0.2018 +0 0.1029 +0 0.0928 +0 0.1940 +0 0.0355 +0 0.0928 +0 0.0705 +0 0.1554 +0 0.0639 +0 0.0606 +0 0.1046 +0 0.1931 +0 0.1224 +0 0.0454 +0 0.2434 +0 0.0601 +0 0.0663 +0 0.2276 +0 0.1250 +0 0.1023 +0 0.0986 +0 0.3070 +0 0.2242 +0 0.1050 +0 0.1066 +0 0.1984 +0 0.1000 +0 0.0815 +0 0.0809 +0 0.1521 +0 0.1035 +0 0.0712 +0 0.0424 +0 0.3014 +0 0.1550 +0 0.1215 +0 0.0764 +0 0.1037 +0 0.0788 +0 0.4976 +0 0.1972 +0 0.1008 +0 0.0693 +0 0.2013 +1 0.7877 +0 0.0653 +0 0.0747 +0 0.3812 +0 0.0652 +0 0.2178 +0 0.1119 +0 0.1098 +0 0.0529 +0 0.0989 +0 0.0732 +0 0.1248 +0 0.1445 +0 0.0976 +0 0.1285 +0 0.2468 +0 0.0851 +0 0.2325 +0 0.0364 +0 0.0802 +0 0.2682 +0 0.3582 +0 0.3691 +0 0.1384 +0 0.3570 +0 0.0907 +0 0.1479 +0 0.1492 +0 0.1419 +0 0.0973 +0 0.0645 +0 0.3833 +0 0.0864 +0 0.6902 +0 0.0736 +0 0.1082 +0 0.0373 +0 0.0843 +0 0.0647 +0 0.2174 +0 0.0696 +0 0.0927 +0 0.0724 +0 0.1455 +0 0.3328 +0 0.6833 +0 0.0892 +0 0.2282 +0 0.2545 +0 0.1337 +0 0.0845 +0 0.0347 +0 0.2016 +0 0.1374 +0 0.1029 +0 0.1753 +0 0.0707 +0 0.1495 +0 0.0866 +0 0.1384 +0 0.1118 +0 0.1159 +0 0.3801 +0 0.5536 +0 0.0517 +0 0.2401 +0 0.5169 +0 0.0781 +0 0.2150 +1 0.8551 +0 0.0837 +0 0.0692 +0 0.1512 +0 0.0610 +1 0.7881 +0 0.1024 +0 0.0967 +0 0.3912 +0 0.1437 +0 0.0662 +0 0.4355 +0 0.7302 +0 0.5443 +0 0.1039 +0 0.1509 +0 0.1492 +0 0.1226 +0 0.1957 +0 0.2935 +0 0.0511 +0 0.0600 +0 0.0834 +0 0.1385 +0 0.1462 +1 0.8218 +0 0.1252 +0 0.0306 +0 0.0953 +0 0.1181 +0 0.1045 +0 0.0337 +0 0.1485 +0 0.1791 +0 0.0618 +0 0.6274 +0 0.6897 +0 0.4312 +0 0.0907 +0 0.0702 +0 0.0444 +0 0.0734 +0 0.2877 +0 0.0476 +0 0.0894 +0 0.0832 +0 0.2066 +0 0.1383 +0 0.1076 +0 0.2138 +0 0.0844 +0 0.1260 +0 0.1725 +0 0.0441 +0 0.1429 +0 0.1233 +0 0.4656 +0 0.1514 +0 0.0877 +0 0.6161 +0 0.0472 +0 0.1454 +0 0.1565 +0 0.0456 +0 0.1214 +0 0.1682 +0 0.0462 +1 0.8569 +0 0.2730 +0 0.1789 +0 0.6420 +0 0.0949 +0 0.0498 +0 0.0782 +0 0.1595 +0 0.1215 +0 0.5695 +0 0.2193 +0 0.1331 +0 0.1256 +0 0.4625 +0 0.0726 +0 0.1109 +0 0.0945 +0 0.0707 +0 0.1308 +0 0.0972 +0 0.0989 +0 0.0985 +0 0.1396 +0 0.0535 +0 0.0826 +0 0.0397 +0 0.2132 +1 0.8166 +0 0.0749 +0 0.1856 +0 0.0422 +0 0.0681 +0 0.1588 +0 0.1178 +0 0.1628 +0 0.0999 +0 0.1191 +0 0.1600 +0 0.1833 +0 0.1654 +0 0.1365 +0 0.1230 +0 0.0531 +0 0.0519 +0 0.0695 +0 0.0446 +0 0.0795 +0 0.1470 +0 0.2231 +0 0.1078 +0 0.1157 +0 0.0716 +0 0.0845 +0 0.5307 +0 0.0933 +0 0.1823 +0 0.1312 +0 0.0634 +0 0.1048 +0 0.2164 +0 0.2495 +0 0.1639 +0 0.0338 +0 0.0672 +0 0.0835 +1 0.8536 +0 0.1826 +0 0.0469 +0 0.0518 +0 0.0528 +0 0.0706 +0 0.0553 +0 0.1957 +0 0.0580 +0 0.1265 +0 0.0852 +0 0.0623 +0 0.0562 +0 0.2125 +0 0.1123 +0 0.1279 +0 0.1196 +0 0.0970 +0 0.1323 +0 0.1472 +0 0.0759 +0 0.1761 +0 0.1363 +0 0.2042 +0 0.0844 +0 0.1109 +0 0.5289 +0 0.0673 +0 0.3336 +0 0.0788 +0 0.0566 +0 0.0663 +0 0.5833 +0 0.1209 +0 0.1307 +0 0.1004 +0 0.0962 +0 0.2756 +0 0.1485 +0 0.4555 +0 0.1821 +0 0.0678 +0 0.1138 +0 0.0818 +0 0.1204 +0 0.2148 +0 0.0867 +0 0.0898 +0 0.0567 +0 0.0601 +0 0.3410 +0 0.2151 +0 0.1480 +0 0.0377 +0 0.0651 +0 0.1327 +0 0.1788 +0 0.0824 +0 0.1185 +0 0.0590 +0 0.1007 +0 0.1249 +1 0.8403 +0 0.0441 +0 0.2139 +0 0.0782 +0 0.1049 +0 0.1061 +0 0.3734 +0 0.0635 +0 0.0711 +0 0.0336 +0 0.0406 +0 0.5005 +0 0.1299 +0 0.0762 +0 0.0825 +0 0.1723 +0 0.1102 +0 0.0546 +0 0.0955 +0 0.1500 +0 0.3640 +0 0.0523 +0 0.1077 +0 0.1195 +0 0.0972 +0 0.3180 +0 0.0618 +0 0.6388 +0 0.1456 +0 0.0503 +0 0.3445 +0 0.1689 +0 0.1245 +0 0.1063 +0 0.0328 +0 0.1368 +0 0.5588 +0 0.1903 +0 0.1274 +0 0.2528 +0 0.0995 +0 0.0611 +0 0.1925 +0 0.1354 +0 0.0969 +0 0.2594 +0 0.0613 +0 0.0972 +0 0.2446 +0 0.2785 +0 0.0615 +0 0.2840 +0 0.0577 +0 0.2056 +0 0.1579 +0 0.0874 +0 0.0881 +0 0.0671 +0 0.0829 +0 0.0336 +0 0.0873 +0 0.0534 +0 0.4298 +0 0.1462 +0 0.0845 +0 0.3268 +0 0.3638 +0 0.1335 +0 0.1376 +0 0.4681 +0 0.0554 +0 0.0673 +0 0.1165 +0 0.1368 +0 0.1918 +0 0.0753 +0 0.1323 +0 0.0569 +0 0.1599 +0 0.2084 +0 0.0837 +0 0.0729 +0 0.1116 +0 0.0809 +0 0.0973 +0 0.0924 +0 0.0611 +0 0.0890 +0 0.0919 +0 0.0678 +0 0.1231 +0 0.1423 +0 0.1376 +0 0.1607 +0 0.0865 +0 0.0738 +0 0.2077 +0 0.1946 +0 0.1299 +0 0.0776 +0 0.0891 +0 0.1781 +0 0.0783 +0 0.5275 +0 0.1689 +0 0.1930 +0 0.1641 +0 0.0794 +0 0.2050 +0 0.1588 +0 0.6722 +0 0.1374 +0 0.1424 +0 0.1453 +0 0.1023 +0 0.1122 +0 0.0612 +0 0.1767 +0 0.4640 +0 0.1157 +0 0.0807 +0 0.0999 +0 0.0870 +0 0.1397 +0 0.2006 +0 0.0721 +0 0.2303 +0 0.0947 +0 0.5085 +0 0.0534 +0 0.0573 +0 0.0777 +0 0.1130 +0 0.2167 +0 0.2361 +0 0.1466 +0 0.2251 +0 0.1238 +0 0.0584 +0 0.1304 +0 0.0501 +0 0.2775 +0 0.0528 +0 0.1895 +0 0.0519 +0 0.2404 +0 0.2075 +0 0.2407 +0 0.2904 +0 0.3959 +0 0.0869 +0 0.0731 +0 0.1898 +0 0.0805 +0 0.1043 +0 0.0919 +0 0.0853 +0 0.0422 +0 0.1562 +0 0.0465 +1 0.8499 +0 0.0637 +0 0.1825 +0 0.3370 +0 0.1665 +0 0.0989 +0 0.1286 +0 0.1006 +0 0.1765 +0 0.4511 +0 0.0946 +0 0.0821 +0 0.0661 +0 0.1427 +0 0.2007 +0 0.0985 +0 0.0824 +0 0.2611 +0 0.0903 +0 0.0852 +0 0.0616 +0 0.0596 +0 0.2773 +0 0.2752 +0 0.1287 +0 0.2414 +0 0.1644 +0 0.0991 +0 0.0561 +0 0.3354 +0 0.0806 +0 0.1714 +0 0.0411 +0 0.1130 +0 0.1271 +0 0.0519 +0 0.1056 +0 0.1777 +0 0.1762 +0 0.0827 +0 0.0528 +0 0.0732 +0 0.0920 +0 0.1223 +0 0.1247 +0 0.1027 +0 0.0766 +0 0.1403 +0 0.1736 +0 0.2119 +0 0.1065 +0 0.1438 +0 0.1254 +0 0.1030 +0 0.0679 +0 0.6880 +0 0.0462 +0 0.0615 +0 0.1807 +0 0.1170 +0 0.1706 +0 0.0569 +0 0.1032 +0 0.0736 +0 0.0633 +0 0.0800 +0 0.1936 +0 0.0860 +0 0.2491 +0 0.2162 +0 0.0860 +0 0.1790 +0 0.0915 +0 0.0877 +0 0.2486 +0 0.1619 +0 0.0527 +0 0.1287 +0 0.1165 +0 0.0874 +0 0.0949 +0 0.0580 +0 0.0813 +0 0.2394 +0 0.1184 +0 0.0632 +0 0.1138 +0 0.3092 +0 0.0529 +0 0.1292 +0 0.0778 +0 0.0746 +0 0.1313 +0 0.0661 +0 0.1318 +0 0.2560 +0 0.1531 +0 0.1683 +0 0.1157 +0 0.1188 +0 0.1722 +0 0.0393 +0 0.0853 +0 0.0854 +0 0.1978 +0 0.0371 +0 0.1045 +0 0.1820 +0 0.0570 +0 0.1071 +0 0.1620 +0 0.0828 +0 0.1533 +0 0.0671 +0 0.1797 +0 0.0675 +0 0.1306 +0 0.0791 +0 0.2262 +0 0.1216 +0 0.1998 +0 0.0416 +0 0.0603 +0 0.0886 +0 0.0934 +0 0.0736 +0 0.0814 +0 0.1025 +0 0.1038 +0 0.1538 +0 0.2370 +0 0.0679 +0 0.0969 +0 0.1499 +0 0.1668 +0 0.0773 +0 0.1407 +0 0.1722 +0 0.1938 +0 0.1000 +0 0.1600 +0 0.0394 +0 0.1365 +0 0.1724 +0 0.3789 +0 0.7060 +0 0.0822 +0 0.2321 +0 0.1767 +0 0.0518 +0 0.0468 +0 0.1098 +0 0.0793 +0 0.0464 +0 0.0853 +0 0.0704 +0 0.1528 +0 0.5278 +0 0.1901 +0 0.1278 +0 0.1584 +0 0.3523 +0 0.0944 +0 0.0545 +0 0.2165 +0 0.1022 +0 0.2512 +0 0.0437 +0 0.1516 +0 0.0602 +0 0.0761 +0 0.1177 +0 0.1665 +0 0.0909 +0 0.1248 +0 0.0900 +0 0.0790 +0 0.2054 +0 0.1254 +0 0.0767 +0 0.0554 +0 0.0578 +0 0.2859 +0 0.1781 +0 0.2504 +0 0.0853 +0 0.2360 +0 0.2850 +0 0.0809 +0 0.0478 +0 0.1472 +0 0.0749 +0 0.2123 +0 0.1187 +0 0.1104 +0 0.0546 +0 0.0753 +0 0.0694 +0 0.0857 +0 0.0792 +0 0.0978 +0 0.1015 +0 0.1634 +0 0.0522 +0 0.0722 +0 0.0814 +0 0.1596 +0 0.6892 +0 0.1147 +0 0.0743 +0 0.1107 +0 0.6737 +0 0.0838 +1 0.8483 +0 0.0874 +0 0.0472 +0 0.1125 +0 0.1325 +0 0.1855 +0 0.1433 +0 0.0590 +0 0.1220 +0 0.1350 +0 0.1634 +0 0.0903 +0 0.2268 +0 0.0657 +0 0.0809 +0 0.1251 +0 0.0974 +0 0.3006 +0 0.0929 +0 0.0860 +0 0.0956 +0 0.1072 +0 0.1299 +0 0.0732 +0 0.1298 +0 0.0778 +0 0.1381 +0 0.2137 +1 0.8129 +0 0.1007 +0 0.0448 +0 0.1503 +0 0.0624 +0 0.2151 +0 0.0474 +0 0.3317 +1 0.8504 +0 0.0711 +0 0.0439 +0 0.3102 +0 0.1163 +0 0.2601 +0 0.0639 +0 0.1580 +0 0.1063 +0 0.1670 +0 0.1278 +0 0.1355 +0 0.0330 +0 0.0995 +0 0.1257 +0 0.5513 +0 0.0621 +0 0.2245 +0 0.1086 +0 0.0725 +0 0.0987 +0 0.0476 +0 0.1224 +0 0.0654 +0 0.0894 +0 0.0625 +0 0.1365 +0 0.2057 +0 0.0551 +0 0.0741 +0 0.0546 +0 0.2621 +0 0.1084 +0 0.1232 +0 0.2712 +0 0.0484 +0 0.1280 +1 0.8104 +1 0.7961 +0 0.3668 +0 0.1180 +0 0.0971 +0 0.0943 +0 0.5353 +0 0.2712 +0 0.0860 +0 0.0849 +0 0.1456 +0 0.2834 +0 0.0770 +0 0.0460 +0 0.0401 +0 0.0354 +0 0.2205 +0 0.1085 +0 0.0742 +0 0.1894 +0 0.0729 +0 0.0396 +0 0.1334 +0 0.0746 +0 0.0713 +0 0.0377 +0 0.2098 +0 0.0980 +0 0.1604 +0 0.0757 +0 0.3214 +0 0.1463 +0 0.2289 +0 0.0879 +0 0.1450 +0 0.0862 +0 0.1024 +0 0.1825 +0 0.2110 +0 0.1063 +0 0.0687 +0 0.4139 +0 0.1021 +0 0.2009 +0 0.0394 +0 0.0918 +0 0.0923 +0 0.2093 +0 0.1389 +0 0.0895 +0 0.0529 +0 0.0830 +0 0.0758 +0 0.1074 +0 0.2312 +0 0.0843 +0 0.0770 +0 0.0605 +0 0.2944 +0 0.0748 +0 0.0540 +0 0.0980 +0 0.1373 +0 0.0588 +0 0.3039 +1 0.7601 +0 0.0780 +0 0.1611 +0 0.3484 +0 0.0571 +0 0.0827 +0 0.1705 +0 0.0583 +0 0.0752 +1 0.5233 +0 0.0992 +0 0.1006 +0 0.0879 +0 0.0806 +0 0.2132 +0 0.2235 +0 0.0721 +0 0.0554 +0 0.0849 +0 0.1121 +0 0.0906 +0 0.1386 +0 0.1446 +0 0.1473 +0 0.0815 +0 0.0719 +0 0.1366 +0 0.2629 +0 0.1074 +0 0.1008 +0 0.1113 +0 0.2080 +0 0.1539 +0 0.2408 +0 0.1176 +0 0.1315 +0 0.1136 +0 0.0636 +0 0.0879 +0 0.1374 +0 0.5250 +0 0.0635 +0 0.2481 +0 0.0651 +0 0.0662 +0 0.0570 +0 0.5219 +0 0.1538 +0 0.1450 +0 0.2816 +0 0.0525 +0 0.2437 +0 0.0774 +0 0.0838 +0 0.0991 +0 0.0884 +0 0.1090 +0 0.1170 +0 0.1122 +0 0.1074 +0 0.1753 +0 0.0485 +0 0.0947 +0 0.1195 +0 0.0998 +0 0.0863 +0 0.1533 +0 0.1549 +0 0.0732 +0 0.0291 +0 0.0562 +0 0.1528 +0 0.0555 +0 0.1821 +0 0.1300 +0 0.0619 +1 0.8681 +0 0.3420 +0 0.0961 +0 0.1780 +0 0.0861 +0 0.3428 +0 0.1274 +0 0.2508 +0 0.2731 +0 0.1787 +0 0.1764 +0 0.0401 +0 0.3768 +0 0.1604 +0 0.0870 +0 0.5069 +0 0.1065 +0 0.0697 +0 0.1566 +0 0.0340 +0 0.1076 +0 0.1339 +0 0.1894 +0 0.0645 +0 0.1166 +0 0.1177 +0 0.0789 +0 0.1310 +0 0.1364 +0 0.1769 +0 0.0693 +0 0.0834 +0 0.1442 +0 0.0580 +0 0.0882 +0 0.0812 +0 0.1109 +0 0.0785 +0 0.1049 +0 0.0733 +0 0.2719 +0 0.0555 +0 0.1037 +0 0.1162 +0 0.6652 +0 0.0764 +0 0.1958 +0 0.1975 +0 0.1532 +0 0.0855 +0 0.1426 +0 0.0679 +0 0.0574 +0 0.3141 +0 0.2237 +0 0.1397 +0 0.0911 +0 0.0382 +0 0.4051 +0 0.2441 +0 0.0847 +0 0.1438 +0 0.0700 +0 0.0784 +0 0.0632 +0 0.1077 +0 0.1000 +0 0.1873 +0 0.1097 +0 0.1337 +0 0.1919 +0 0.0820 +0 0.1366 +0 0.1219 +0 0.0963 +0 0.3046 +0 0.1746 +0 0.1340 +0 0.1069 +0 0.1586 +0 0.0872 +0 0.0463 +0 0.1565 +0 0.1574 +0 0.1927 +0 0.4253 +0 0.0674 +0 0.1162 +0 0.2096 +0 0.0674 +0 0.0827 +0 0.0378 +0 0.0623 +0 0.0500 +0 0.1640 +0 0.0870 +0 0.1382 +0 0.0899 +0 0.0658 +0 0.1226 +0 0.1564 +0 0.1294 +0 0.0781 +0 0.0926 +0 0.2613 +0 0.0710 +0 0.2097 +0 0.1805 +0 0.1672 +0 0.2586 +0 0.0774 +0 0.1101 +0 0.1292 +0 0.0779 +0 0.1021 +0 0.0524 +0 0.2244 +0 0.0599 +0 0.1188 +0 0.1834 +0 0.0455 +0 0.0505 +0 0.0747 +0 0.4062 +0 0.1855 +0 0.1191 +0 0.1006 +0 0.1235 +0 0.3075 +0 0.3719 +0 0.0895 +1 0.7837 +0 0.0692 +0 0.0637 +0 0.1166 +0 0.0867 +0 0.1582 +0 0.0803 +0 0.2637 +0 0.0544 +0 0.3657 +0 0.0536 +0 0.2241 +0 0.0662 +0 0.0639 +0 0.2611 +0 0.1160 +0 0.0657 +0 0.1543 +0 0.0738 +0 0.0513 +0 0.0950 +0 0.0778 +0 0.1006 +0 0.0595 +0 0.0547 +0 0.0914 +0 0.0823 +0 0.3231 +0 0.0836 +0 0.0422 +0 0.0632 +0 0.0303 +0 0.1012 +0 0.0499 +0 0.0675 +0 0.1051 +0 0.1945 +0 0.1644 +0 0.0427 +0 0.1251 +0 0.0900 +0 0.2960 +0 0.3174 +0 0.0428 +0 0.0696 +0 0.0342 +0 0.0448 +0 0.0525 +0 0.1095 +0 0.0629 +0 0.0948 +0 0.0686 +0 0.1901 +0 0.0565 +0 0.0956 +0 0.1581 +0 0.2868 +0 0.0622 +0 0.0324 +0 0.1366 +0 0.0884 +0 0.3412 +0 0.0650 +0 0.1214 +0 0.0760 +0 0.1151 +0 0.0335 +0 0.2198 +0 0.0711 +0 0.0696 +0 0.0796 +0 0.0853 +0 0.1088 +0 0.1320 +0 0.2225 +0 0.2322 +0 0.6135 +0 0.0905 +0 0.0916 +0 0.7392 +0 0.0962 +0 0.0973 +0 0.1028 +1 0.7575 +0 0.0750 +0 0.0411 +0 0.1889 +0 0.0922 +0 0.1180 +0 0.0561 +0 0.0964 +0 0.0612 +0 0.1239 +0 0.1048 +0 0.0577 +0 0.2562 +0 0.0745 +0 0.1457 +0 0.1622 +0 0.1314 +0 0.0784 +0 0.0616 +0 0.3697 +0 0.0367 +0 0.0567 +0 0.2121 +0 0.2116 +0 0.0412 +0 0.1232 +0 0.0891 +0 0.0648 +0 0.0988 +0 0.0774 +0 0.1547 +0 0.3405 +0 0.0507 +0 0.1369 +0 0.0689 +0 0.1238 +0 0.1240 +0 0.1327 +0 0.0605 +0 0.2436 +0 0.0883 +0 0.1283 +0 0.1500 +0 0.0835 +0 0.0932 +0 0.1337 +0 0.5765 +0 0.0472 +0 0.2219 +0 0.7193 +0 0.0735 +0 0.2028 +0 0.1850 +0 0.0364 +0 0.0330 +0 0.0982 +0 0.6823 +0 0.3143 +0 0.0501 +0 0.1224 +0 0.1743 +0 0.0495 +0 0.1048 +0 0.0410 +0 0.2940 +0 0.0725 +0 0.0594 +0 0.0990 +0 0.0537 +0 0.0613 +0 0.2577 +0 0.2247 +0 0.1369 +0 0.1050 +0 0.1746 +0 0.0991 +0 0.1000 +0 0.1631 +0 0.0562 +0 0.0904 +0 0.0753 +0 0.2430 +0 0.2351 +0 0.0646 +0 0.1811 +0 0.1496 +0 0.0884 +0 0.0790 +0 0.1273 +0 0.1797 +0 0.0930 +0 0.1254 +0 0.0487 +0 0.2373 +0 0.0422 +0 0.2444 +0 0.0526 +0 0.0806 +0 0.3322 +0 0.0483 +0 0.1175 +0 0.6072 +1 0.7630 +0 0.0962 +0 0.3561 +0 0.1578 +0 0.0671 +0 0.3266 +0 0.0828 +0 0.0837 +0 0.0857 +0 0.0626 +0 0.1318 +0 0.1021 +0 0.4367 +0 0.2965 +0 0.2629 +0 0.0939 +0 0.0853 +0 0.1308 +0 0.2226 +0 0.0617 +0 0.1376 +0 0.0573 +0 0.2652 +0 0.0780 +0 0.0499 +0 0.2801 +0 0.0540 +0 0.0637 +0 0.0632 +0 0.0586 +0 0.1229 +0 0.1115 +0 0.1228 +0 0.2341 +0 0.0590 +0 0.0720 +0 0.0638 +0 0.0925 +0 0.0959 +0 0.1566 +0 0.0541 +0 0.0588 +0 0.0846 +0 0.5202 +0 0.0699 +0 0.0777 +0 0.1580 +0 0.1667 +0 0.1425 +0 0.0819 +0 0.2680 +0 0.0811 +0 0.1251 +0 0.1179 +0 0.1132 +0 0.0629 +0 0.2053 +0 0.0574 +0 0.3444 +0 0.1924 +0 0.0550 +0 0.0478 +0 0.1460 +0 0.0755 +0 0.1890 +0 0.2336 +0 0.1595 +0 0.0335 +0 0.0754 +0 0.0714 +0 0.2193 +0 0.0704 +0 0.0892 +0 0.0692 +0 0.2076 +0 0.1917 +0 0.1185 +0 0.0370 +1 0.8923 +0 0.1495 +0 0.1640 +0 0.0406 +0 0.0805 +0 0.0913 +0 0.1457 +0 0.1618 +0 0.0737 +0 0.0350 +0 0.0938 +0 0.0388 +0 0.2187 +0 0.1704 +0 0.1187 +0 0.3450 +0 0.0666 +0 0.4315 +0 0.0699 +0 0.0813 +0 0.2255 +0 0.1333 +0 0.0576 +0 0.1813 +0 0.0399 +0 0.2421 +0 0.1064 +0 0.2223 +0 0.0467 +0 0.1051 +0 0.2218 +0 0.1730 +0 0.0855 +0 0.0778 +0 0.1189 +0 0.0400 +0 0.3223 +0 0.1420 +0 0.0564 +0 0.0848 +0 0.1776 +0 0.1244 +0 0.1117 +0 0.2404 +0 0.1793 +0 0.2379 +0 0.0434 +0 0.2440 +0 0.1693 +0 0.0931 +0 0.0865 +0 0.0647 +0 0.1975 +0 0.2454 +0 0.1943 +0 0.0735 +0 0.0814 +0 0.1013 +0 0.0352 +0 0.0448 +0 0.0674 +0 0.0937 +0 0.0883 +0 0.0848 +0 0.1408 +0 0.0750 +0 0.0770 +0 0.0542 +0 0.0703 +0 0.1469 +0 0.3107 +0 0.0660 +0 0.0802 +1 0.8469 +0 0.1654 +0 0.0504 +0 0.2750 +0 0.1758 +0 0.1126 +0 0.0733 +0 0.0645 +0 0.0977 +0 0.1045 +0 0.2248 +0 0.0704 +0 0.0774 +0 0.0896 +0 0.0906 +0 0.0987 +0 0.1027 +0 0.1823 +0 0.0870 +0 0.1235 +0 0.0780 +0 0.2635 +0 0.0977 +0 0.1093 +0 0.0923 +0 0.0720 +0 0.2629 +0 0.1096 +0 0.2143 +0 0.3774 +0 0.1109 +0 0.1197 +0 0.7050 +0 0.0801 +0 0.0662 +0 0.0588 +0 0.1193 +0 0.0478 +0 0.1200 +0 0.1743 +0 0.0476 +0 0.1429 +0 0.0938 +0 0.1529 +0 0.3270 +0 0.1293 +0 0.0758 +0 0.0712 +0 0.1726 +0 0.0869 +0 0.1393 +0 0.1654 +0 0.1557 +0 0.1529 +0 0.0496 +0 0.0603 +0 0.2551 +0 0.0794 +0 0.0801 +0 0.0971 +0 0.0673 +0 0.0827 +0 0.0807 +0 0.1935 +0 0.1315 +0 0.1920 +0 0.6666 +0 0.1056 +0 0.3424 +0 0.1424 +0 0.1614 +0 0.0695 +0 0.3913 +1 0.8340 +0 0.1447 +0 0.1374 +0 0.0797 +0 0.1688 +0 0.0519 +0 0.4624 +0 0.0797 +0 0.1580 +0 0.1075 +0 0.1318 +0 0.1551 +0 0.6417 +0 0.0506 +0 0.0453 +0 0.0717 +0 0.0972 +0 0.1708 +0 0.0609 +0 0.0432 +0 0.0784 +0 0.0729 +0 0.1575 +0 0.0314 +0 0.1230 +0 0.1299 +0 0.0617 +0 0.1352 +0 0.0788 +0 0.3255 +0 0.2271 +0 0.1808 +0 0.1618 +0 0.2743 +0 0.0483 +0 0.1171 +0 0.0960 +0 0.0745 +0 0.1048 +0 0.1980 +0 0.1452 +0 0.2401 +0 0.1572 +0 0.1160 +0 0.1191 +1 0.8608 +0 0.0838 +0 0.1855 +0 0.0750 +0 0.1215 +0 0.1271 +0 0.1283 +0 0.4223 +0 0.1065 +0 0.0496 +0 0.0373 +0 0.0754 +0 0.0702 +0 0.1530 +0 0.0740 +0 0.0793 +0 0.1556 +0 0.0707 +0 0.7178 +0 0.1691 +0 0.1125 +0 0.0784 +0 0.1561 +0 0.1561 +0 0.1909 +0 0.2107 +0 0.5988 +0 0.0788 +0 0.0760 +0 0.0868 +0 0.0890 +0 0.1024 +0 0.0657 +0 0.0793 +0 0.2580 +0 0.0973 +0 0.0744 +0 0.0933 +0 0.3136 +0 0.1848 +0 0.1854 +0 0.1031 +0 0.1280 +0 0.0678 +0 0.0661 +0 0.1262 +0 0.0589 +0 0.2960 +0 0.0577 +0 0.0657 +0 0.1404 +0 0.1801 +0 0.1063 +0 0.0710 +0 0.2692 +0 0.2863 +0 0.1810 +0 0.0794 +0 0.0718 +0 0.1024 +0 0.2801 +0 0.1212 +0 0.0743 +0 0.1741 +0 0.0809 +0 0.0702 +0 0.2281 +0 0.0628 +0 0.3979 +0 0.2047 +0 0.0993 +0 0.0772 +0 0.1070 +0 0.1120 +0 0.1896 +0 0.1491 +0 0.1485 +0 0.2249 +0 0.0990 +0 0.1793 +0 0.1670 +0 0.0627 +0 0.5835 +0 0.0541 +0 0.1730 +0 0.1992 +0 0.4417 +1 0.8295 +0 0.0647 +0 0.2022 +0 0.0617 +0 0.0878 +0 0.2477 +0 0.0645 +0 0.3702 +0 0.1791 +0 0.1282 +0 0.1684 +0 0.1532 +0 0.0488 +0 0.0628 +0 0.1988 +0 0.1705 +0 0.1287 +0 0.0639 +0 0.0684 +0 0.2522 +0 0.2351 +0 0.0883 +0 0.0983 +0 0.0432 +0 0.1875 +0 0.0537 +0 0.0833 +0 0.0845 +0 0.0888 +0 0.0759 +0 0.1205 +0 0.0719 +0 0.0520 +0 0.1679 +0 0.0651 +0 0.0542 +0 0.1695 +0 0.0463 +0 0.0875 +0 0.0662 +0 0.7220 +0 0.2657 +0 0.3001 +0 0.1749 +0 0.2807 +0 0.0720 +0 0.0960 +0 0.1519 +0 0.0665 +0 0.1434 +0 0.0718 +0 0.0382 +0 0.0513 +0 0.0372 +0 0.0675 +0 0.0560 +0 0.0580 +0 0.0764 +0 0.1340 +0 0.0611 +0 0.0885 +0 0.2691 +0 0.0718 +0 0.3088 +0 0.1232 +0 0.2777 +0 0.2393 +0 0.1699 +0 0.0861 +0 0.1522 +0 0.0775 +0 0.2855 +0 0.0532 +0 0.0487 +0 0.0661 +0 0.0494 +0 0.0739 +0 0.1414 +0 0.1801 +0 0.0538 +0 0.0395 +0 0.0388 +0 0.0657 +0 0.0955 +0 0.0286 +0 0.0381 +0 0.0486 +0 0.1308 +0 0.1766 +0 0.1665 +0 0.1524 +0 0.1496 +0 0.0668 +0 0.0814 +0 0.0543 +0 0.0493 +0 0.0560 +0 0.0278 +0 0.2433 +0 0.7405 +0 0.0647 +0 0.0556 +0 0.0518 +0 0.0914 +0 0.1286 +0 0.0543 +0 0.1723 +0 0.1991 +0 0.1016 +0 0.1434 +0 0.0929 +0 0.1972 +0 0.1437 +0 0.0640 +0 0.0455 +0 0.6167 +0 0.0792 +0 0.1070 +0 0.1299 +0 0.1593 +0 0.2997 +0 0.0602 +0 0.1161 +0 0.0879 +0 0.0565 +0 0.1373 +0 0.0947 +0 0.1143 +0 0.0929 +0 0.0997 +0 0.0911 +0 0.0669 +0 0.0696 +0 0.1466 +0 0.0703 +0 0.0893 +0 0.1367 +0 0.1185 +0 0.0938 +0 0.0354 +0 0.1350 +0 0.2030 +0 0.0982 +0 0.5380 +0 0.1122 +0 0.1782 +0 0.1406 +0 0.3191 +0 0.2598 +0 0.0833 +0 0.1291 +0 0.1021 +0 0.1374 +0 0.1753 +0 0.1061 +0 0.2384 +0 0.0990 +0 0.1477 +0 0.0544 +0 0.1028 +0 0.0724 +0 0.0632 +0 0.1512 +0 0.3174 +0 0.0803 +0 0.0960 +0 0.4401 +0 0.0653 +0 0.1477 +0 0.7240 +0 0.0850 +0 0.1559 +0 0.1733 +0 0.0673 +0 0.0854 +0 0.0579 +0 0.3160 +0 0.1581 +0 0.0988 +0 0.7320 +0 0.0757 +0 0.1641 +0 0.1036 +0 0.1040 +0 0.0668 +0 0.4600 +0 0.4652 +0 0.1728 +0 0.2236 +0 0.0606 +0 0.1051 +0 0.1821 +0 0.0837 +0 0.0295 +0 0.1196 +0 0.1373 +0 0.0733 +0 0.1497 +0 0.1486 +0 0.0557 +0 0.1116 +0 0.0472 +0 0.0746 +0 0.1817 +0 0.0595 +0 0.1072 +0 0.0590 +1 0.8684 +0 0.0964 +0 0.3735 +0 0.2081 +0 0.1649 +0 0.1316 +0 0.0542 +0 0.0758 +0 0.1081 +0 0.1300 +0 0.2556 +0 0.1007 +1 0.8157 +0 0.0569 +0 0.2339 +0 0.0657 +0 0.0948 +0 0.1115 +0 0.1822 +0 0.2482 +0 0.1265 +0 0.1062 +0 0.0808 +0 0.1115 +0 0.0493 +0 0.0658 +0 0.1115 +0 0.0738 +0 0.1114 +0 0.1259 +0 0.1049 +0 0.0850 +1 0.8535 +0 0.6650 +0 0.0637 +0 0.0897 +0 0.1049 +0 0.6964 +0 0.0963 +0 0.1795 +0 0.0843 +0 0.0422 +0 0.1288 +0 0.1219 +0 0.0836 +0 0.0668 +0 0.1731 +0 0.2842 +0 0.2604 +0 0.1147 +0 0.1204 +0 0.6568 +0 0.0377 +0 0.2974 +0 0.1765 +0 0.0972 +0 0.2606 +0 0.1305 +0 0.1739 +0 0.4822 +0 0.0427 +0 0.1522 +0 0.0969 +0 0.0514 +0 0.1358 +0 0.5697 +0 0.1611 +0 0.1304 +0 0.1737 +0 0.0699 +0 0.0791 +0 0.0650 +0 0.0795 +0 0.1074 +0 0.2098 +0 0.0973 +0 0.0684 +0 0.1786 +0 0.0972 +0 0.0657 +0 0.2605 +0 0.0341 +0 0.1711 +0 0.0540 +0 0.0894 +0 0.1064 +0 0.1326 +0 0.0834 +0 0.3667 +0 0.3461 +0 0.1002 +0 0.0702 +0 0.0976 +0 0.1641 +0 0.3116 +0 0.1240 +0 0.2788 +0 0.2056 +0 0.1152 +0 0.0941 +0 0.1138 +0 0.0922 +0 0.0832 +0 0.0803 +0 0.1318 +0 0.1006 +0 0.1548 +0 0.0856 +0 0.1007 +0 0.0581 +0 0.1512 +0 0.0708 +0 0.0709 +0 0.3417 +0 0.1370 +0 0.1238 +0 0.0984 +0 0.0625 +0 0.1563 +0 0.1663 +0 0.1290 +0 0.0979 +0 0.2128 +0 0.2827 +0 0.1013 +0 0.0682 +0 0.1260 +0 0.0555 +0 0.1090 +0 0.0980 +0 0.0975 +0 0.1411 +0 0.0613 +0 0.3170 +0 0.2127 +0 0.1053 +0 0.1222 +0 0.3236 +0 0.1946 +0 0.0788 +0 0.1087 +0 0.0777 +0 0.1268 +0 0.1586 +0 0.0634 +0 0.3857 +0 0.1521 +0 0.0835 +0 0.1335 +0 0.1445 +0 0.1231 +0 0.1089 +0 0.0446 +0 0.2460 +0 0.4894 +0 0.0603 +0 0.1874 +0 0.1421 +0 0.2945 +0 0.0820 +0 0.1171 +0 0.0829 +0 0.0967 +0 0.1716 +0 0.0557 +0 0.0726 +0 0.0404 +0 0.0492 +0 0.1529 +0 0.1444 +0 0.2565 +0 0.0588 +0 0.0916 +0 0.1388 +0 0.2510 +0 0.6178 +0 0.0491 +0 0.6694 +0 0.1517 +0 0.1359 +0 0.0639 +0 0.1026 +0 0.0561 +0 0.1564 +0 0.0785 +0 0.0970 +0 0.1478 +0 0.0506 +0 0.0950 +0 0.0678 +0 0.0796 +0 0.2256 +1 0.7934 +0 0.2709 +0 0.4618 +0 0.0596 +0 0.3643 +0 0.1279 +0 0.1571 +0 0.1507 +0 0.1890 +0 0.1199 +0 0.0480 +0 0.0611 +0 0.1066 +0 0.0918 +0 0.0761 +0 0.2710 +0 0.0648 +0 0.0464 +0 0.0936 +0 0.1212 +0 0.0796 +0 0.1850 +0 0.0633 +0 0.0721 +0 0.0654 +0 0.1967 +0 0.2256 +0 0.1361 +0 0.1308 +0 0.1301 +0 0.0459 +0 0.0820 +0 0.2623 +0 0.1355 +0 0.1719 +0 0.0593 +0 0.1021 +0 0.1401 +0 0.1531 +0 0.2918 +0 0.1573 +0 0.0428 +0 0.2858 +0 0.2095 +0 0.0664 +0 0.0866 +0 0.3435 +0 0.1974 +0 0.0707 +0 0.0457 +0 0.0705 +0 0.2398 +0 0.0781 +0 0.0473 +0 0.1473 +0 0.1692 +0 0.1616 +0 0.1135 +0 0.2040 +0 0.0687 +0 0.3186 +0 0.0650 +0 0.2171 +0 0.1344 +0 0.0764 +0 0.0546 +0 0.0724 +0 0.3228 +0 0.1091 +0 0.0937 +0 0.0936 +0 0.0951 +0 0.0504 +0 0.0594 +0 0.2691 +0 0.0620 +0 0.0507 +0 0.1054 +0 0.0722 +0 0.1601 +0 0.1389 +0 0.0581 +0 0.0969 +0 0.1232 +0 0.1086 +0 0.0446 +0 0.1654 +0 0.0843 +0 0.0496 +0 0.0500 +0 0.1061 +0 0.0799 +0 0.1965 +0 0.4058 +0 0.0701 +0 0.0750 +0 0.0931 +0 0.0655 +0 0.0784 +0 0.0649 +0 0.3636 +0 0.0518 +0 0.4630 +0 0.0721 +0 0.1600 +0 0.1867 +0 0.1193 +0 0.2140 +0 0.0998 +0 0.3367 +0 0.2955 +0 0.1421 +0 0.2517 +0 0.0695 +0 0.2017 +0 0.1561 +0 0.1900 +0 0.1187 +0 0.1144 +0 0.1017 +0 0.0879 +0 0.1265 +0 0.0664 +0 0.0863 +0 0.1232 +0 0.0767 +0 0.0847 +0 0.0591 +0 0.1194 +0 0.0719 +0 0.0614 +0 0.1548 +0 0.1230 +1 0.7791 +0 0.0658 +0 0.0763 +0 0.0687 +0 0.2397 +0 0.0760 +0 0.1602 +0 0.1242 +0 0.0684 +0 0.1128 +0 0.2912 +0 0.4643 +0 0.0600 +0 0.0521 +0 0.1381 +0 0.1191 +0 0.1002 +0 0.7401 +0 0.1845 +0 0.0778 +0 0.1200 +0 0.0877 +0 0.1010 +0 0.0974 +1 0.8329 +0 0.2371 +0 0.1182 +0 0.1568 +0 0.0813 +0 0.2352 +0 0.0844 +0 0.1077 +0 0.1130 +0 0.2015 +0 0.0663 +0 0.0528 +0 0.0785 +0 0.6302 +0 0.1230 +0 0.0504 +0 0.2125 +0 0.2275 +0 0.1271 +0 0.0536 +0 0.0623 +0 0.0747 +0 0.1707 +0 0.0428 +1 0.8064 +0 0.1015 +0 0.0498 +0 0.0703 +0 0.0745 +0 0.1066 +0 0.1522 +0 0.0477 +1 0.7924 +0 0.0759 +0 0.0896 +0 0.1025 +0 0.1667 +0 0.0396 +0 0.0403 +0 0.2824 +0 0.1469 +0 0.0628 +0 0.1441 +0 0.1049 +0 0.1093 +0 0.0875 +0 0.0431 +0 0.1531 +0 0.1040 +0 0.1633 +0 0.0870 +0 0.0833 +0 0.0609 +0 0.1495 +0 0.0859 +0 0.2048 +0 0.0576 +0 0.2130 +0 0.2124 +0 0.2538 +0 0.0832 +0 0.0627 +0 0.0888 +0 0.0895 +0 0.1058 +0 0.0958 +0 0.0397 +0 0.1911 +0 0.2827 +0 0.1028 +0 0.1348 +0 0.1916 +0 0.2098 +0 0.0741 +0 0.0695 +0 0.0490 +0 0.1084 +0 0.1321 +0 0.0655 +0 0.0786 +0 0.1357 +0 0.0725 +0 0.0457 +0 0.0867 +0 0.0956 +0 0.1766 +0 0.0460 +0 0.1441 +0 0.1243 +0 0.0546 +0 0.1273 +0 0.0532 +0 0.1655 +0 0.1301 +0 0.1100 +0 0.0584 +0 0.0935 +0 0.1717 +0 0.1027 +0 0.0701 +0 0.2075 +0 0.3413 +0 0.0891 +0 0.1057 +0 0.0652 +0 0.1458 +0 0.0629 +0 0.2968 +0 0.1311 +0 0.1000 +0 0.0659 +0 0.1299 +0 0.1511 +0 0.0990 +0 0.3321 +0 0.1087 +0 0.1422 +0 0.1084 +0 0.2531 +0 0.6387 +0 0.1170 +0 0.0780 +0 0.0644 +0 0.1675 +0 0.5752 +0 0.1544 +0 0.0931 +0 0.2325 +0 0.2824 +0 0.1122 +0 0.0780 +0 0.2084 +0 0.1268 +0 0.0727 +0 0.0656 +0 0.7131 +0 0.1274 +0 0.2677 +0 0.0764 +0 0.1382 +0 0.0642 +0 0.0361 +0 0.0851 +0 0.1088 +0 0.0594 +0 0.1280 +0 0.0981 +0 0.0543 +0 0.1243 +0 0.1514 +0 0.2038 +0 0.0602 +0 0.0970 +0 0.1768 +0 0.1219 +0 0.0532 +0 0.0952 +0 0.1092 +0 0.1505 +0 0.1012 +0 0.0847 +0 0.0586 +0 0.1868 +0 0.0442 +0 0.0819 +0 0.0878 +0 0.1529 +0 0.0528 +0 0.1013 +0 0.0813 +0 0.0657 +0 0.0380 +0 0.1716 +0 0.4172 +1 0.8315 +0 0.0567 +0 0.2018 +0 0.2106 +0 0.0479 +0 0.4013 +0 0.0780 +0 0.0650 +0 0.1375 +0 0.0845 +0 0.0959 +0 0.1916 +0 0.0975 +0 0.0674 +0 0.0388 +0 0.0986 +0 0.0917 +0 0.1226 +0 0.0665 +0 0.5562 +0 0.1554 +0 0.0708 +0 0.4386 +0 0.2942 +0 0.0821 +0 0.0972 +0 0.0595 +0 0.3693 +0 0.1675 +0 0.1711 +0 0.5026 +0 0.0672 +0 0.0454 +0 0.1124 +0 0.1046 +0 0.4350 +0 0.1380 +0 0.0732 +0 0.1310 +0 0.0961 +0 0.2247 +0 0.0535 +0 0.1981 +0 0.2175 +0 0.0686 +0 0.0379 +0 0.1012 +0 0.0687 +0 0.1001 +0 0.2280 +0 0.0566 +0 0.1619 +0 0.2085 +0 0.1283 +0 0.1291 +0 0.0596 +0 0.1742 +0 0.2576 +0 0.0385 +0 0.0692 +0 0.0588 +0 0.0861 +0 0.1284 +0 0.0704 +0 0.0780 +0 0.0962 +0 0.0980 +0 0.2480 +0 0.0650 +0 0.1706 +0 0.0398 +0 0.1225 +0 0.2114 +0 0.1153 +0 0.0522 +0 0.1386 +0 0.0532 +0 0.1912 +0 0.2015 +0 0.0782 +0 0.0404 +0 0.0731 +0 0.0731 +0 0.1194 +0 0.0975 +0 0.0735 +0 0.1887 +0 0.1407 +0 0.1413 +0 0.1098 +0 0.5057 +0 0.2790 +0 0.7238 +0 0.1071 +0 0.1171 +0 0.7132 +0 0.0496 +0 0.4161 +0 0.2645 +0 0.1405 +0 0.0732 +0 0.1722 +0 0.0659 +0 0.7389 +0 0.0927 +0 0.0681 +0 0.0656 +0 0.1137 +0 0.1429 +0 0.1177 +0 0.0704 +0 0.0642 +0 0.0714 +0 0.0794 +0 0.0635 +0 0.3808 +0 0.6761 +0 0.1236 +0 0.0509 +0 0.1125 +0 0.2750 +0 0.1463 +0 0.1582 +0 0.1255 +0 0.1325 +0 0.0679 +0 0.1072 +0 0.1394 +0 0.1515 +0 0.2751 +0 0.2271 +0 0.0678 +0 0.0446 +0 0.1207 +0 0.0494 +0 0.3250 +0 0.1217 +0 0.1210 +0 0.1636 +0 0.6588 +0 0.1065 +0 0.5120 +0 0.1618 +0 0.1702 +0 0.3137 +0 0.1672 +0 0.1628 +0 0.7342 +0 0.1729 +0 0.0491 +0 0.1217 +0 0.1195 +0 0.0844 +0 0.1056 +0 0.0790 +0 0.4076 +0 0.0494 +0 0.6509 +0 0.1782 +0 0.1907 +0 0.1485 +0 0.0888 +0 0.0866 +0 0.2369 +0 0.1000 +0 0.0521 +0 0.0672 +0 0.1973 +0 0.3517 +0 0.1938 +0 0.1585 +0 0.1295 +0 0.2836 +0 0.1084 +0 0.0741 +0 0.0642 +0 0.1062 +0 0.0546 +0 0.1359 +1 0.7857 +0 0.1542 +0 0.1568 +0 0.0733 +0 0.2664 +0 0.1802 +0 0.6226 +0 0.0831 +0 0.1717 +0 0.1255 +0 0.0849 +0 0.0691 +0 0.0620 +0 0.0597 +0 0.5881 +0 0.1049 +0 0.1710 +0 0.0582 +0 0.0943 +0 0.1235 +0 0.1100 +0 0.1349 +0 0.2790 +0 0.1914 +0 0.0988 +0 0.1017 +0 0.0770 +0 0.2785 +0 0.2664 +0 0.0814 +0 0.0805 +0 0.0685 +0 0.0751 +0 0.0540 +1 0.8349 +0 0.0702 +0 0.0631 +0 0.0576 +0 0.1245 +0 0.0608 +0 0.2157 +0 0.1061 +0 0.0614 +0 0.1082 +0 0.0721 +0 0.4416 +0 0.2310 +0 0.1160 +0 0.0521 +0 0.0523 +0 0.0846 +0 0.0997 +0 0.1889 +0 0.1165 +0 0.1208 +0 0.0388 +0 0.0665 +0 0.7187 +0 0.0953 +0 0.2581 +0 0.1554 +0 0.1419 +0 0.1082 +0 0.0794 +0 0.0617 +0 0.0849 +0 0.2673 +0 0.1451 +0 0.0869 +0 0.1244 +0 0.0505 +0 0.1242 +0 0.1179 +0 0.0668 +0 0.0771 +0 0.1016 +0 0.4119 +0 0.0819 +0 0.2204 +0 0.1129 +0 0.1898 +0 0.4098 +0 0.0507 +0 0.1349 +0 0.1201 +0 0.1487 +0 0.0921 +0 0.0449 +0 0.0649 +0 0.0806 +0 0.1878 +0 0.0895 +0 0.1314 +0 0.1023 +0 0.0957 +0 0.1011 +0 0.0568 +0 0.0811 +0 0.0328 +0 0.0882 +0 0.0612 +0 0.1417 +0 0.4538 +0 0.0917 +0 0.0779 +0 0.1573 +0 0.2522 +0 0.1411 +0 0.0871 +0 0.0736 +0 0.1505 +0 0.0447 +0 0.0947 +0 0.1036 +0 0.1360 +0 0.3177 +0 0.0783 +0 0.1081 +0 0.1128 +0 0.0457 +0 0.0763 +0 0.0843 +0 0.0972 +0 0.0866 +0 0.0518 +0 0.0809 +0 0.1346 +0 0.1396 +0 0.0822 +0 0.1079 +0 0.0716 +0 0.0939 +0 0.0626 +0 0.0993 +0 0.0717 +0 0.2522 +0 0.1060 +0 0.1082 +0 0.6701 +0 0.1212 +0 0.6750 +0 0.0703 +0 0.1023 +0 0.1022 +0 0.2016 +0 0.2114 +0 0.1150 +0 0.6363 +1 0.7825 +0 0.0458 +0 0.4664 +0 0.1547 +0 0.0644 +0 0.2649 +0 0.0540 +0 0.1356 +0 0.0668 +0 0.1333 +0 0.1889 +0 0.1508 +0 0.5979 +0 0.0780 +0 0.0567 +0 0.1569 +0 0.3805 +0 0.1025 +0 0.0959 +0 0.1708 +0 0.1285 +0 0.0843 +0 0.1218 +1 0.8344 +0 0.1127 +0 0.1600 +0 0.0386 +0 0.1346 +0 0.1028 +0 0.0915 +0 0.2019 +0 0.0498 +0 0.2193 +0 0.2885 +0 0.0584 +1 0.8502 +0 0.1034 +0 0.2968 +0 0.2085 +0 0.1631 +0 0.0973 +0 0.7458 +0 0.0661 +0 0.0758 +0 0.0888 +0 0.1192 +0 0.0362 +0 0.4284 +0 0.1532 +0 0.1053 +0 0.0351 +0 0.1201 +0 0.0563 +0 0.1075 +0 0.1241 +0 0.0516 +0 0.0676 +0 0.0568 +0 0.6237 +0 0.0593 +0 0.1421 +0 0.0656 +0 0.1614 +0 0.1038 +0 0.0754 +0 0.0820 +0 0.0637 +0 0.1473 +0 0.0835 +0 0.4610 +0 0.0471 +0 0.2506 +0 0.0545 +0 0.3222 +0 0.0728 +0 0.1604 +0 0.1233 +0 0.0697 +0 0.1428 +0 0.0702 +0 0.4150 +0 0.0861 +0 0.1770 +0 0.0625 +0 0.0413 +0 0.3574 +0 0.0713 +0 0.2003 +0 0.1394 +0 0.0665 +0 0.0517 +0 0.0876 +0 0.2724 +0 0.0957 +0 0.1113 +0 0.1438 +0 0.1254 +0 0.2226 +0 0.0602 +0 0.1702 +0 0.5099 +0 0.1840 +0 0.0895 +0 0.0949 +0 0.1192 +0 0.1220 +0 0.0386 +0 0.1372 +0 0.1134 +0 0.1207 +0 0.1370 +0 0.2009 +0 0.0875 +0 0.0768 +0 0.3454 +0 0.2237 +0 0.0743 +0 0.1448 +0 0.1251 +0 0.1252 +0 0.3120 +0 0.5472 +0 0.1071 +0 0.1524 +0 0.0648 +0 0.1427 +1 0.7580 +0 0.0821 +0 0.0556 +0 0.0727 +0 0.1255 +0 0.5486 +0 0.0667 +0 0.2362 +0 0.0612 +0 0.1412 +0 0.1687 +0 0.1302 +0 0.2118 +0 0.2461 +0 0.1195 +0 0.3233 +0 0.1538 +0 0.0716 +0 0.1238 +0 0.0815 +0 0.0927 +0 0.0588 +0 0.0690 +0 0.2059 +0 0.2068 +0 0.0389 +0 0.0969 +1 0.8081 +0 0.1032 +0 0.1128 +0 0.0902 +0 0.0959 +0 0.0628 +0 0.1832 +1 0.7534 +0 0.2308 +0 0.0746 +0 0.0985 +0 0.1137 +0 0.0876 +0 0.1795 +0 0.2375 +0 0.1004 +0 0.0432 +0 0.0590 +1 0.7611 +0 0.1598 +0 0.1711 +0 0.0805 +0 0.1369 +0 0.0658 +0 0.0409 +0 0.0438 +0 0.1439 +0 0.0567 +0 0.0453 +0 0.1857 +0 0.0903 +0 0.2560 +0 0.1347 +0 0.1417 +0 0.1182 +0 0.0508 +0 0.0713 +0 0.1210 +0 0.1002 +0 0.1792 +0 0.1217 +0 0.0760 +0 0.1145 +0 0.0964 +0 0.1073 +0 0.0975 +0 0.1216 +0 0.1160 +0 0.0876 +0 0.0832 +0 0.1863 +0 0.1059 +0 0.3561 +0 0.0503 +0 0.7430 +0 0.1578 +0 0.1346 +0 0.0342 +0 0.0603 +0 0.1161 +0 0.3989 +0 0.0962 +0 0.1604 +0 0.0606 +0 0.5414 +0 0.1381 +0 0.1066 +0 0.0911 +0 0.0910 +0 0.1079 +0 0.0454 +0 0.1331 +0 0.0982 +0 0.1093 +0 0.0940 +0 0.0601 +0 0.0937 +0 0.0606 +0 0.0564 +0 0.0768 +0 0.0712 +0 0.0304 +0 0.1767 +0 0.1014 +0 0.2652 +0 0.1066 +0 0.1133 +0 0.1280 +0 0.1731 +0 0.0626 +0 0.1166 +0 0.1304 +0 0.2201 +0 0.1153 +0 0.0748 +0 0.0373 +0 0.2866 +0 0.0380 +0 0.0678 +0 0.0361 +0 0.7421 +0 0.4228 +0 0.1882 +0 0.1200 +0 0.0726 +0 0.0499 +0 0.1822 +0 0.0658 +0 0.1003 +0 0.1063 +0 0.0924 +0 0.1298 +0 0.0689 +0 0.1240 +0 0.0456 +0 0.1093 +0 0.1726 +0 0.2153 +0 0.0588 +0 0.0975 +0 0.6480 +0 0.0463 +0 0.0683 +0 0.2294 +0 0.4419 +0 0.2581 +0 0.1301 +0 0.1824 +0 0.0695 +0 0.1083 +0 0.0440 +0 0.2099 +0 0.2215 +0 0.0417 +0 0.5119 +0 0.1312 +0 0.0565 +0 0.1221 +0 0.0480 +0 0.1895 +0 0.2541 +0 0.1008 +0 0.0585 +0 0.0676 +0 0.1347 +0 0.0719 +0 0.2242 +0 0.0670 +0 0.1082 +0 0.1917 +0 0.1619 +0 0.3446 +0 0.0968 +0 0.1415 +0 0.0742 +0 0.0596 +0 0.0537 +0 0.1241 +0 0.0820 +0 0.0957 +0 0.0355 +0 0.1102 +0 0.1111 +0 0.0690 +0 0.0869 +0 0.0524 +0 0.1510 +0 0.1487 +0 0.1008 +0 0.1646 +0 0.0878 +0 0.0834 +1 0.8155 +0 0.0895 +0 0.0305 +0 0.0927 +0 0.2008 +1 0.7669 +0 0.0403 +0 0.1009 +0 0.1642 +0 0.1104 +0 0.1338 +0 0.1157 +0 0.1947 +0 0.0587 +0 0.0794 +0 0.3033 +0 0.2050 +0 0.0516 +0 0.0662 +0 0.0977 +0 0.0999 +0 0.2595 +0 0.0445 +0 0.2137 +0 0.0632 +0 0.1300 +0 0.2976 +0 0.0851 +0 0.1519 +0 0.5741 +0 0.3495 +0 0.0617 +0 0.1175 +0 0.1269 +0 0.1339 +0 0.0612 +0 0.1407 +0 0.3413 +0 0.1133 +0 0.0865 +0 0.0337 +0 0.1016 +0 0.0636 +0 0.0707 +0 0.0807 +0 0.1292 +0 0.0998 +0 0.1681 +0 0.2288 +0 0.4257 +0 0.0515 +0 0.1166 +0 0.1373 +0 0.1398 +0 0.1575 +0 0.4431 +0 0.0756 +0 0.2115 +1 0.8270 +0 0.1702 +0 0.1154 +0 0.1028 +0 0.1132 +0 0.1145 +1 0.7808 +0 0.1240 +0 0.0951 +0 0.1012 +0 0.2126 +0 0.2290 +0 0.1207 +0 0.2783 +0 0.1738 +0 0.0728 +0 0.0424 +0 0.0983 +0 0.0724 +0 0.1155 +0 0.0577 +0 0.0959 +0 0.4570 +0 0.2146 +0 0.0806 +0 0.2065 +0 0.0500 +0 0.1157 +0 0.2102 +0 0.0700 +0 0.1903 +0 0.0970 +0 0.2066 +0 0.0704 +0 0.1745 +0 0.0444 +0 0.2279 +0 0.1208 +0 0.0826 +0 0.0458 +0 0.0980 +0 0.1566 +0 0.0789 +0 0.1028 +0 0.0533 +0 0.2147 +0 0.0795 +0 0.1549 +0 0.0848 +0 0.1309 +0 0.1838 +0 0.0853 +0 0.5510 +0 0.0989 +0 0.0845 +0 0.1844 +0 0.1711 +0 0.1231 +0 0.0783 +0 0.1052 +0 0.6699 +0 0.0626 +0 0.4549 +0 0.0395 +0 0.2785 +0 0.0714 +0 0.0681 +0 0.2824 +0 0.0766 +0 0.0774 +0 0.2796 +0 0.0487 +0 0.1294 +0 0.1012 +0 0.0590 +0 0.0459 +0 0.7086 +0 0.0471 +0 0.3599 +0 0.0706 +0 0.1638 +0 0.5027 +0 0.1315 +0 0.5181 +0 0.0392 +0 0.1112 +0 0.1245 +0 0.1038 +0 0.0938 +0 0.0839 +0 0.0904 +0 0.0665 +0 0.1225 +0 0.0642 +0 0.1344 +0 0.0823 +0 0.1532 +0 0.4232 +0 0.1722 +0 0.1931 +0 0.1769 +0 0.0803 +0 0.0886 +0 0.0721 +0 0.3132 +0 0.2122 +0 0.0378 +0 0.0598 +0 0.6681 +0 0.2408 +1 0.8686 +0 0.0753 +0 0.1102 +0 0.0539 +0 0.1275 +0 0.0500 +0 0.0514 +0 0.0399 +0 0.1614 +0 0.1758 +0 0.1018 +0 0.1933 +0 0.1518 +0 0.0600 +0 0.0916 +0 0.1222 +0 0.0862 +0 0.1245 +0 0.1701 +0 0.2211 +0 0.1243 +0 0.1104 +0 0.2746 +0 0.1076 +0 0.0873 +0 0.1262 +0 0.2012 +0 0.0710 +0 0.1143 +0 0.1006 +0 0.0459 +0 0.2240 +0 0.1604 +0 0.1070 +0 0.0901 +0 0.0763 +0 0.1684 +0 0.0423 +0 0.1258 +0 0.0695 +0 0.1053 +0 0.0764 +0 0.1129 +0 0.0851 +0 0.1166 +0 0.0632 +0 0.0632 +0 0.0767 +0 0.0885 +0 0.0865 +0 0.0561 +0 0.0438 +0 0.1518 +0 0.0690 +0 0.0484 +0 0.0550 +0 0.0393 +0 0.1608 +0 0.3549 +0 0.2331 +0 0.0569 +0 0.1065 +1 0.8616 +0 0.0469 +0 0.5772 +0 0.2403 +0 0.0615 +0 0.0943 +0 0.0913 +0 0.0345 +0 0.0685 +0 0.0634 +0 0.2075 +0 0.1063 +0 0.0578 +0 0.0411 +0 0.3248 +0 0.2210 +0 0.0838 +0 0.0485 +0 0.0745 +0 0.0751 +0 0.1126 +0 0.0642 +0 0.0498 +0 0.1340 +0 0.0873 +0 0.0570 +0 0.0530 +0 0.1441 +0 0.0544 +0 0.1383 +0 0.1098 +0 0.2648 +0 0.1603 +0 0.1080 +0 0.1430 +0 0.3191 +0 0.1130 +0 0.0502 +0 0.0765 +0 0.1115 +0 0.1175 +0 0.0457 +0 0.1005 +0 0.2876 +0 0.0827 +0 0.2317 +0 0.0839 +0 0.0500 +0 0.1541 +0 0.1117 +0 0.0739 +0 0.2116 +0 0.2855 +0 0.2166 +0 0.0905 +0 0.0348 +0 0.1032 +1 0.7581 +0 0.3675 +0 0.1364 +0 0.0891 +0 0.1503 +0 0.0842 +0 0.1301 +0 0.0689 +0 0.0877 +0 0.0440 +0 0.0600 +0 0.1144 +0 0.0593 +0 0.2740 +0 0.0589 +0 0.0943 +0 0.0467 +0 0.2209 +0 0.0942 +0 0.2751 +0 0.0791 +0 0.0405 +0 0.5050 +0 0.0610 +0 0.0526 +0 0.0790 +0 0.0647 +0 0.1412 +0 0.1011 +0 0.5878 +0 0.0602 +0 0.0790 +0 0.1016 +0 0.0399 +0 0.0446 +0 0.5152 +0 0.0623 +0 0.6623 +1 0.8246 +0 0.0669 +0 0.1488 +0 0.0637 +0 0.0841 +0 0.0516 +0 0.2221 +0 0.0976 +0 0.3684 +0 0.0450 +0 0.1272 +0 0.3230 +0 0.0595 +0 0.0820 +0 0.1689 +0 0.1254 +0 0.0773 +1 0.8558 +0 0.0878 +0 0.1387 +0 0.0746 +0 0.3183 +0 0.1624 +0 0.1568 +0 0.1268 +0 0.1568 +0 0.0927 +0 0.1088 +0 0.0982 +0 0.0740 +0 0.1361 +0 0.0745 +0 0.6231 +0 0.1246 +0 0.0746 +0 0.1127 +0 0.1446 +0 0.0452 +0 0.2721 +0 0.0718 +0 0.1574 +0 0.0916 +0 0.0833 +0 0.0737 +0 0.0952 +0 0.1169 +0 0.1260 +0 0.0395 +0 0.1059 +0 0.1079 +0 0.1231 +0 0.0643 +0 0.1187 +0 0.2034 +0 0.0791 +0 0.1260 +0 0.0358 +0 0.0468 +0 0.0721 +0 0.0744 +0 0.1078 +0 0.0528 +0 0.1147 +0 0.1356 +0 0.1302 +0 0.0788 +0 0.7120 +0 0.0609 +0 0.2408 +0 0.1672 +0 0.7256 +0 0.0797 +0 0.1122 +0 0.0506 +0 0.1805 +0 0.1115 +0 0.1240 +0 0.1972 +0 0.1527 +0 0.0940 +0 0.2327 +0 0.3450 +0 0.0973 +0 0.0827 +0 0.0847 +0 0.2457 +0 0.0711 +0 0.3077 +0 0.4817 +0 0.1076 +0 0.2226 +0 0.1571 +0 0.1227 +0 0.1402 +0 0.0760 +0 0.0769 +0 0.0681 +0 0.0557 +0 0.0976 +0 0.1215 +1 0.7976 +0 0.0879 +0 0.0849 +0 0.1159 +0 0.0670 +0 0.0418 +0 0.0299 +0 0.1711 +0 0.0576 +0 0.0858 +0 0.0834 +0 0.0327 +0 0.2512 +0 0.4002 +0 0.2389 +0 0.2464 +0 0.1840 +0 0.0818 +0 0.2201 +0 0.1736 +0 0.0754 +0 0.0862 +0 0.1170 +0 0.0750 +0 0.1645 +0 0.1305 +0 0.1582 +0 0.1104 +0 0.0477 +0 0.0852 +0 0.0812 +0 0.1046 +0 0.1060 +0 0.0832 +0 0.1209 +0 0.2337 +0 0.2833 +0 0.0370 +0 0.0727 +0 0.4027 +0 0.1221 +0 0.1801 +0 0.1583 +0 0.2504 +0 0.6381 +0 0.1306 +0 0.0432 +0 0.5442 +0 0.0494 +0 0.3599 +0 0.0680 +0 0.5025 +0 0.1179 +0 0.5943 +0 0.1361 +0 0.1761 +0 0.0395 +0 0.2449 +0 0.1272 +0 0.0655 +0 0.2469 +0 0.0667 +0 0.0987 +0 0.1207 +0 0.4508 +0 0.1698 +0 0.1066 +0 0.0943 +0 0.0704 +0 0.1752 +0 0.1143 +0 0.1241 +0 0.0894 +0 0.4534 +0 0.3606 +0 0.1517 +0 0.3070 +0 0.0948 +0 0.1738 +0 0.1018 +0 0.3417 +0 0.0733 +0 0.0851 +0 0.1302 +0 0.0641 +0 0.1000 +0 0.0372 +0 0.1061 +0 0.1179 +0 0.1106 +0 0.4284 +0 0.0959 +0 0.1076 +0 0.0497 +0 0.1080 +0 0.1369 +0 0.1202 +0 0.1086 +0 0.1022 +0 0.4152 +0 0.1695 +0 0.0580 +0 0.1143 +0 0.0980 +0 0.0424 +0 0.2155 +0 0.0732 +0 0.0613 +0 0.0538 +0 0.1097 +0 0.0772 +0 0.0836 +0 0.0647 +0 0.0492 +0 0.0498 +1 0.8840 +0 0.0822 +0 0.0848 +0 0.0858 +0 0.1429 +0 0.0620 +0 0.1353 +0 0.0501 +0 0.0406 +0 0.0707 +0 0.1045 +0 0.1109 +0 0.0703 +0 0.0732 +0 0.4434 +0 0.0368 +0 0.4366 +0 0.0828 +1 0.8115 +0 0.0941 +0 0.1389 +0 0.0907 +0 0.0963 +0 0.1110 +0 0.2586 +0 0.0704 +0 0.0682 +0 0.1771 +1 0.8159 +0 0.2066 +0 0.0826 +0 0.0603 +0 0.1573 +0 0.0599 +0 0.2196 +0 0.0771 +0 0.1345 +0 0.0898 +0 0.0657 +0 0.0986 +0 0.0553 +0 0.0587 +0 0.0565 +0 0.1676 +0 0.1567 +0 0.0613 +0 0.1071 +0 0.2729 +0 0.0453 +0 0.0479 +0 0.1243 +0 0.1688 +0 0.1552 +0 0.1064 +0 0.0508 +0 0.1442 +0 0.3268 +0 0.1731 +0 0.2671 +0 0.0953 +0 0.0980 +0 0.0951 +0 0.2485 +0 0.0887 +0 0.2814 +0 0.1639 +0 0.2774 +0 0.2382 +0 0.0786 +0 0.6471 +0 0.2098 +0 0.0891 +0 0.0563 +0 0.1132 +0 0.0957 +0 0.0488 +0 0.4642 +0 0.1721 +0 0.1036 +0 0.1416 +0 0.0883 +0 0.1386 +0 0.0832 +0 0.1129 +0 0.0911 +0 0.0987 +0 0.1248 +0 0.0832 +0 0.2187 +0 0.1044 +0 0.2048 +0 0.0396 +0 0.1202 +0 0.2074 +0 0.1026 +0 0.0799 +0 0.0640 +0 0.1190 +0 0.4460 +0 0.1000 +0 0.0394 +0 0.0648 +0 0.0331 +0 0.1374 +0 0.1202 +0 0.2417 +0 0.1355 +0 0.1408 +0 0.1547 +0 0.2532 +0 0.2036 +0 0.0988 +0 0.0811 +0 0.0569 +0 0.0697 +0 0.7216 +0 0.6814 +0 0.2251 +0 0.0975 +0 0.0777 +0 0.1624 +0 0.2416 +0 0.7137 +0 0.0692 +0 0.0919 +0 0.0476 +0 0.2563 +0 0.1959 +0 0.1476 +0 0.0935 +0 0.2216 +0 0.0744 +0 0.0642 +0 0.0693 +0 0.0796 +0 0.3105 +0 0.1155 +0 0.0722 +0 0.0504 +0 0.0683 +0 0.1707 +0 0.0719 +0 0.0573 +0 0.2201 +0 0.2142 +0 0.0749 +0 0.1605 +0 0.2062 +0 0.1770 +0 0.0687 +0 0.0517 +0 0.1164 +0 0.1511 +0 0.1181 +0 0.2462 +0 0.1006 +0 0.0782 +0 0.1887 +0 0.0653 +0 0.1234 +0 0.6911 +0 0.1602 +0 0.7102 +0 0.1444 +0 0.0768 +0 0.1364 +0 0.0661 +0 0.0854 +0 0.1005 +0 0.6072 +0 0.0674 +0 0.7040 +0 0.0588 +0 0.5882 +0 0.1631 +0 0.3936 +0 0.0633 +0 0.0605 +0 0.1600 +0 0.0399 +0 0.0667 +0 0.0493 +0 0.0377 +0 0.0625 +0 0.0803 +0 0.1359 +0 0.1048 +0 0.3977 +0 0.2092 +0 0.1408 +0 0.0816 +0 0.1418 +0 0.0924 +0 0.2285 +0 0.1044 +0 0.4157 +0 0.0887 +0 0.0961 +0 0.0864 +0 0.0687 +0 0.0876 +0 0.0659 +0 0.2259 +0 0.1071 +0 0.0394 +0 0.4334 +0 0.1839 +0 0.2193 +0 0.0312 +0 0.2966 +0 0.0412 +0 0.0698 +0 0.0912 +0 0.4772 +0 0.0984 +0 0.1386 +0 0.1023 +0 0.1690 +0 0.0397 +0 0.1057 +0 0.0758 +0 0.0530 +0 0.0646 +0 0.0785 +0 0.2511 +0 0.1961 +0 0.1385 +0 0.1920 +0 0.1040 +0 0.2376 +0 0.0961 +0 0.3278 +0 0.0885 +0 0.0609 +0 0.0770 +0 0.0408 +0 0.1234 +0 0.0898 +0 0.1859 +0 0.1631 +0 0.1484 +0 0.0611 +0 0.1075 +0 0.2582 +0 0.1256 +0 0.0629 +0 0.6681 +0 0.1594 +0 0.1129 +0 0.0565 +0 0.1729 +0 0.1597 +0 0.0511 +0 0.3535 +0 0.2604 +0 0.2513 +0 0.0881 +0 0.6756 +0 0.0682 +0 0.0726 +0 0.0638 +0 0.0619 +0 0.0509 +0 0.1139 +0 0.0563 +0 0.0874 +0 0.0860 +0 0.0551 +0 0.0772 +0 0.1238 +0 0.0823 +0 0.7099 +0 0.0779 +0 0.0511 +0 0.1474 +0 0.0497 +0 0.1166 +0 0.1442 +0 0.1038 +0 0.0860 +0 0.1010 +0 0.1326 +0 0.1864 +0 0.0582 +0 0.1037 +0 0.0772 +0 0.0685 +0 0.0608 +0 0.1176 +0 0.2292 +0 0.1209 +0 0.0843 +0 0.1313 +0 0.1623 +0 0.1242 +0 0.1860 +0 0.3011 +0 0.0400 +0 0.1195 +0 0.0308 +0 0.0976 +0 0.0997 +0 0.1126 +0 0.1048 +0 0.0669 +0 0.0940 +0 0.0861 +0 0.1411 +0 0.0795 +0 0.0835 +0 0.0833 +0 0.0645 +0 0.2483 +0 0.0801 +0 0.0696 +0 0.0533 +0 0.1116 +0 0.0596 +0 0.0584 +0 0.1301 +0 0.0620 +0 0.0958 +0 0.0716 +0 0.0398 +0 0.1667 +0 0.0575 +0 0.1885 +0 0.1095 +0 0.0553 +0 0.0673 +0 0.1015 +0 0.0917 +0 0.1835 +0 0.0677 +0 0.2124 +0 0.7409 +0 0.1059 +0 0.1083 +0 0.1210 +0 0.0571 +0 0.1716 +0 0.1834 +0 0.1164 +0 0.2321 +0 0.1687 +0 0.3748 +0 0.1154 +0 0.0772 +0 0.1983 +0 0.2379 +0 0.0752 +0 0.0793 +0 0.1223 +0 0.0562 +0 0.3122 +0 0.1836 +0 0.1371 +0 0.0341 +0 0.1061 +0 0.0691 +0 0.1336 +0 0.1476 +0 0.2363 +0 0.0412 +1 0.7690 +0 0.4310 +0 0.2130 +0 0.0849 +0 0.1092 +0 0.2742 +0 0.2357 +0 0.1348 +0 0.1297 +0 0.1724 +0 0.0852 +0 0.2104 +0 0.0913 +0 0.1315 +0 0.0687 +0 0.1036 +0 0.1456 +0 0.1991 +0 0.2431 +0 0.0888 +0 0.1875 +0 0.0498 +0 0.2624 +0 0.2645 +0 0.1578 +0 0.1198 +0 0.0742 +0 0.6652 +0 0.0954 +0 0.1596 +0 0.3091 +0 0.0668 +0 0.0940 +0 0.1002 +0 0.1185 +0 0.1008 +0 0.1268 +0 0.0803 +0 0.0502 +0 0.2483 +0 0.0804 +0 0.0447 +1 0.7882 +0 0.4351 +0 0.1054 +0 0.0705 +0 0.0655 +0 0.4557 +0 0.0804 +0 0.0384 +0 0.0875 +0 0.1003 +0 0.1013 +1 0.7543 +0 0.1278 +0 0.1102 +0 0.0845 +0 0.1053 +0 0.0470 +0 0.4484 +1 0.8017 +0 0.0812 +0 0.1648 +0 0.0739 +0 0.0541 +0 0.0588 +0 0.1036 +0 0.0902 +0 0.2077 +0 0.3515 +0 0.3937 +1 0.8430 +0 0.1459 +0 0.2031 +0 0.2027 +0 0.2874 +0 0.0639 +0 0.5147 +0 0.0762 +0 0.0973 +0 0.0465 +0 0.0835 +0 0.0583 +0 0.1024 +0 0.0363 +0 0.0569 +0 0.2469 +0 0.1115 +0 0.1346 +0 0.0336 +0 0.0706 +0 0.0782 +0 0.2626 +0 0.0613 +0 0.0730 +0 0.1584 +0 0.1283 +0 0.0712 +0 0.0840 +0 0.0895 +0 0.0817 +0 0.0644 +0 0.2144 +0 0.0720 +0 0.0644 +0 0.0818 +0 0.0720 +0 0.1742 +0 0.1140 +0 0.2089 +0 0.2391 +0 0.0399 +0 0.1136 +0 0.0455 +0 0.1764 +0 0.3803 +0 0.1026 +0 0.6609 +0 0.0436 +0 0.0406 +0 0.0716 +0 0.0732 +0 0.4002 +0 0.0748 +0 0.0864 +0 0.1335 +0 0.0484 +0 0.1304 +0 0.2062 +0 0.4179 +0 0.2598 +0 0.0700 +0 0.1687 +0 0.0748 +1 0.0939 +0 0.1548 +0 0.1035 +0 0.0583 +0 0.0827 +0 0.0883 +0 0.1615 +0 0.1142 +0 0.0687 +0 0.1548 +0 0.1268 +0 0.0587 +0 0.0619 +0 0.1229 +0 0.4072 +0 0.7297 +0 0.0991 +0 0.0645 +0 0.3126 +0 0.1387 +0 0.0830 +0 0.1060 +0 0.1008 +0 0.0669 +0 0.5732 +0 0.2931 +0 0.0976 +0 0.1690 +0 0.1467 +0 0.0712 +0 0.0851 +0 0.0749 +0 0.1494 +0 0.0884 +0 0.1304 +0 0.1562 +0 0.0726 +0 0.1873 +0 0.1750 +0 0.0487 +0 0.0369 +0 0.1164 +0 0.1114 +0 0.1011 +0 0.1364 +0 0.0660 +0 0.0568 +0 0.0918 +1 0.7646 +0 0.0596 +0 0.0703 +0 0.0938 +0 0.1450 +0 0.0646 +0 0.1633 +0 0.1043 +0 0.1958 +0 0.1875 +0 0.1162 +0 0.1098 +0 0.0657 +0 0.2105 +0 0.2056 +0 0.1125 +0 0.1028 +0 0.0432 +0 0.2955 +0 0.0565 +0 0.0868 +0 0.0870 +0 0.1887 +0 0.1123 +0 0.0632 +0 0.0842 +0 0.0881 +0 0.1030 +0 0.0615 +1 0.8463 +0 0.1796 +0 0.1529 +0 0.0591 +0 0.0599 +0 0.0381 +0 0.0441 +0 0.0503 +0 0.1591 +0 0.1928 +0 0.1446 +0 0.1240 +0 0.0562 +0 0.0990 +0 0.1209 +0 0.0747 +0 0.0883 +0 0.1064 +0 0.0373 +0 0.0417 +0 0.1027 +0 0.0833 +0 0.2478 +0 0.0693 +0 0.2056 +0 0.0495 +0 0.1458 +0 0.1743 +0 0.1925 +0 0.0803 +0 0.1545 +0 0.5792 +0 0.1278 +0 0.0922 +0 0.0436 +1 0.8559 +0 0.1038 +0 0.0587 +0 0.0573 +0 0.0564 +0 0.1784 +0 0.1428 +0 0.0744 +0 0.0910 +0 0.0856 +0 0.0499 +0 0.1221 +0 0.1073 +0 0.1607 +0 0.0755 +0 0.0776 +0 0.1097 +0 0.0537 +0 0.1722 +0 0.0730 +0 0.3156 +1 0.7776 +0 0.1144 +0 0.0458 +0 0.0603 +0 0.2183 +0 0.1687 +0 0.2035 +0 0.1101 +0 0.0320 +0 0.0520 +0 0.1189 +0 0.0655 +0 0.7446 +0 0.0999 +0 0.0533 +0 0.1185 +0 0.1026 +0 0.1157 +0 0.0732 +0 0.6652 +0 0.2214 +0 0.1054 +0 0.2138 +0 0.2587 +0 0.0624 +0 0.2490 +0 0.0761 +0 0.0809 +0 0.1830 +0 0.1117 +0 0.0847 +0 0.0407 +0 0.7413 +0 0.0780 +0 0.0783 +0 0.2497 +1 0.8609 +0 0.0400 +0 0.0817 +0 0.1066 +0 0.0432 +0 0.2745 +0 0.0692 +0 0.0600 +0 0.6361 +0 0.6692 +0 0.0760 +0 0.0922 +0 0.2654 +0 0.0637 +0 0.1176 +0 0.1109 +0 0.1578 +0 0.0588 +0 0.2080 +0 0.1019 +0 0.0729 +0 0.0508 +0 0.0627 +1 0.8476 +0 0.1101 +0 0.0601 +0 0.0657 +0 0.1542 +0 0.0808 +0 0.0904 +0 0.1119 +0 0.0400 +0 0.1261 +0 0.1437 +0 0.1271 +0 0.1079 +0 0.1072 +0 0.0847 +0 0.1192 +0 0.1674 +0 0.1399 +0 0.1543 +0 0.1533 +0 0.0964 +0 0.1809 +0 0.0782 +0 0.0837 +0 0.0906 +0 0.0537 +0 0.1028 +0 0.1172 +0 0.1887 +0 0.1871 +0 0.1277 +0 0.1297 +0 0.0888 +0 0.0940 +0 0.1042 +0 0.1814 +0 0.0544 +0 0.1481 +0 0.2146 +0 0.2453 +0 0.0761 +0 0.0638 +0 0.1361 +0 0.1075 +0 0.3675 +0 0.0690 +0 0.2235 +0 0.1295 +0 0.1129 +0 0.2369 +0 0.3633 +0 0.0295 +0 0.3005 +0 0.0938 +0 0.3190 +0 0.0838 +0 0.3773 +0 0.1138 +0 0.1522 +0 0.2087 +0 0.0530 +0 0.1230 +0 0.4555 +0 0.0854 +0 0.2439 +0 0.1088 +0 0.0458 +0 0.1613 +0 0.0763 +0 0.0521 +0 0.0726 +0 0.0761 +0 0.1226 +0 0.2297 +0 0.4125 +0 0.0469 +0 0.1572 +0 0.0497 +0 0.0718 +0 0.0851 +0 0.1073 +0 0.0693 +0 0.1316 +0 0.1000 +0 0.0859 +0 0.1117 +0 0.0885 +0 0.0831 +0 0.0452 +0 0.6860 +0 0.0716 +0 0.1780 +0 0.1934 +0 0.0912 +0 0.2347 +0 0.0526 +0 0.1491 +0 0.1698 +0 0.0348 +0 0.1558 +0 0.2056 +0 0.1955 +0 0.0487 +0 0.1138 +0 0.0521 +0 0.1670 +0 0.1231 +0 0.0690 +0 0.1250 +0 0.0781 +0 0.0990 +0 0.0517 +0 0.0576 +0 0.1817 +0 0.0490 +0 0.1404 +0 0.1506 +0 0.1320 +0 0.1085 +0 0.2900 +0 0.1000 +0 0.0563 +0 0.0903 +0 0.1369 +0 0.0526 +0 0.0507 +0 0.1260 +0 0.0937 +0 0.0862 +0 0.3009 +0 0.0674 +0 0.2513 +0 0.3143 +0 0.0606 +0 0.1027 +0 0.0690 +0 0.1273 +0 0.0882 +0 0.4170 +1 0.8716 +0 0.1396 +0 0.2858 +0 0.0803 +0 0.2788 +0 0.0596 +0 0.0848 +0 0.0593 +0 0.1163 +0 0.1479 +0 0.1041 +0 0.1770 +0 0.0314 +1 0.8393 +1 0.7607 +0 0.0639 +0 0.1782 +0 0.0525 +0 0.0567 +0 0.0555 +0 0.0780 +0 0.1119 +0 0.1769 +0 0.1344 +0 0.1182 +0 0.5639 +0 0.2253 +0 0.0769 +0 0.1902 +0 0.1587 +0 0.1504 +0 0.2380 +0 0.0812 +0 0.0814 +0 0.0897 +0 0.0888 +0 0.0949 +0 0.0480 +0 0.2401 +0 0.1551 +0 0.0857 +0 0.1367 +0 0.1497 +0 0.0387 +0 0.1016 +0 0.1800 +0 0.0753 +0 0.2810 +0 0.2781 +0 0.1275 +0 0.1946 +0 0.3145 +0 0.0891 +0 0.1557 +0 0.0428 +0 0.1914 +0 0.7481 +0 0.0807 +0 0.0565 +0 0.1881 +0 0.1141 +0 0.1825 +0 0.0543 +0 0.0614 +0 0.0632 +0 0.0945 +0 0.0878 +0 0.1019 +0 0.1355 +0 0.1365 +0 0.3577 +0 0.0495 +0 0.1445 +0 0.1826 +0 0.1130 +0 0.4417 +0 0.1308 +0 0.0616 +0 0.1086 +0 0.1298 +0 0.1166 +0 0.1330 +0 0.0860 +0 0.0381 +0 0.1117 +0 0.0915 +0 0.0607 +0 0.0482 +0 0.0367 +0 0.1127 +0 0.0695 +0 0.0498 +0 0.5816 +0 0.5904 +0 0.2749 +0 0.0934 +0 0.1468 +0 0.2133 +0 0.1998 +0 0.0798 +0 0.5141 +1 0.8143 +0 0.1007 +0 0.1690 +0 0.3835 +0 0.1234 +0 0.1528 +0 0.0458 +0 0.2770 +0 0.1527 +1 0.8691 +0 0.0418 +0 0.2718 +0 0.0905 +0 0.0615 +0 0.1609 +0 0.1158 +0 0.1248 +0 0.0671 +0 0.0479 +0 0.0981 +0 0.0883 +0 0.2868 +0 0.2572 +0 0.3306 +0 0.1688 +0 0.0751 +0 0.0824 +0 0.1031 +0 0.1984 +0 0.1538 +0 0.0652 +1 0.7832 +0 0.2870 +0 0.0388 +0 0.0432 +0 0.0489 +0 0.0838 +0 0.0535 +0 0.0937 +0 0.2266 +0 0.1317 +0 0.1378 +0 0.0771 +0 0.5890 +0 0.0917 +0 0.0913 +0 0.1400 +0 0.1063 +0 0.0865 +0 0.0471 +0 0.3092 +0 0.0922 +0 0.0768 +0 0.1027 +0 0.3581 +0 0.1904 +0 0.1267 +0 0.1423 +0 0.1269 +0 0.1135 +0 0.0820 +0 0.1802 +0 0.0372 +0 0.1332 +0 0.1558 +0 0.1755 +1 0.8531 +0 0.0904 +0 0.1095 +0 0.1837 +0 0.0797 +0 0.0734 +0 0.0688 +0 0.1625 +0 0.0786 +0 0.0920 +1 0.8579 +0 0.0396 +0 0.1697 +0 0.1145 +0 0.1011 +0 0.0766 +0 0.1170 +0 0.0588 +0 0.2358 +0 0.1818 +0 0.1027 +0 0.2280 +0 0.1084 +0 0.1384 +0 0.1550 +0 0.0980 +0 0.2545 +0 0.2195 +0 0.0488 +0 0.0426 +0 0.1541 +0 0.0858 +0 0.0767 +0 0.1719 +0 0.1348 +0 0.0627 +0 0.1052 +0 0.1077 +0 0.1524 +1 0.7989 +0 0.0683 +0 0.0961 +0 0.0595 +0 0.3142 +0 0.1220 +0 0.6053 +0 0.0427 +0 0.3947 +0 0.1309 +0 0.0630 +0 0.1949 +0 0.0992 +0 0.2920 +0 0.0731 +0 0.1801 +0 0.1325 +0 0.0358 +0 0.2967 +0 0.0555 +0 0.2090 +0 0.1270 +0 0.0856 +0 0.0379 +0 0.2273 +0 0.0584 +0 0.1867 +0 0.0423 +0 0.3916 +0 0.0705 +0 0.0780 +0 0.0473 +0 0.0900 +0 0.2314 +0 0.0883 +0 0.0726 +0 0.0651 +0 0.0980 +0 0.0921 +0 0.1353 +0 0.0507 +0 0.3121 +0 0.2094 +0 0.0626 +0 0.1422 +0 0.0653 +0 0.1561 +0 0.3965 +0 0.1768 +0 0.5854 +0 0.1680 +0 0.0603 +0 0.2063 +0 0.2176 +0 0.0648 +0 0.1654 +0 0.0959 +0 0.1502 +0 0.2235 +0 0.0849 +0 0.1475 +0 0.1172 +0 0.1924 +0 0.0659 +0 0.4057 +0 0.0939 +0 0.0745 +0 0.1135 +0 0.0349 +0 0.0957 +0 0.0931 +0 0.0575 +0 0.0666 +0 0.1714 +0 0.1988 +0 0.0901 +0 0.1056 +0 0.0373 +0 0.6357 +0 0.0683 +0 0.0496 +0 0.2493 +0 0.0830 +0 0.0746 +0 0.1277 +0 0.0416 +0 0.1397 +0 0.5603 +0 0.1601 +0 0.0447 +0 0.2042 +0 0.0870 +0 0.0637 +0 0.0836 +0 0.1233 +0 0.0425 +0 0.1947 +0 0.1020 +0 0.0638 +0 0.1111 +0 0.0425 +0 0.1967 +0 0.1249 +0 0.0734 +0 0.1484 +0 0.0622 +0 0.0375 +0 0.0766 +0 0.2302 +0 0.2599 +0 0.1978 +0 0.1258 +0 0.3365 +0 0.0517 +0 0.2574 +0 0.6858 +0 0.1064 +0 0.2505 +0 0.1216 +0 0.1642 +0 0.0620 +0 0.0394 +0 0.1464 +0 0.0619 +0 0.0580 +0 0.0726 +0 0.0331 +0 0.0799 +0 0.3943 +0 0.0470 +0 0.1600 +1 0.7667 +0 0.4695 +0 0.1898 +0 0.0526 +0 0.0544 +0 0.1462 +0 0.0927 +0 0.0772 +0 0.0791 +0 0.1566 +0 0.0715 +0 0.0792 +0 0.1071 +0 0.0512 +0 0.0867 +0 0.0556 +0 0.0870 +0 0.0802 +0 0.1028 +0 0.0630 +0 0.1494 +0 0.0392 +0 0.1985 +0 0.0518 +0 0.1206 +0 0.1412 +0 0.0547 +0 0.2644 +0 0.1613 +0 0.0469 +0 0.1737 +0 0.3251 +0 0.0429 +0 0.1037 +0 0.0373 +0 0.0653 +0 0.3529 +0 0.1143 +0 0.1907 +0 0.0538 +0 0.0497 +0 0.0655 +0 0.0849 +0 0.3509 +0 0.0649 +0 0.0685 +0 0.1254 +0 0.1690 +0 0.4640 +0 0.1264 +0 0.1511 +0 0.3709 +0 0.1193 +0 0.3238 +0 0.1899 +0 0.1199 +0 0.0819 +0 0.0866 +0 0.1526 +0 0.4093 +0 0.2735 +0 0.7406 +0 0.0975 +0 0.2814 +0 0.3165 +0 0.1066 +0 0.0712 +0 0.0763 +0 0.0994 +0 0.0999 +0 0.2077 +0 0.1110 +0 0.1444 +0 0.1371 +0 0.0554 +0 0.0425 +0 0.1456 +0 0.0646 +0 0.0653 +0 0.1418 +0 0.2261 +0 0.0443 +0 0.0499 +1 0.7976 +0 0.0490 +0 0.2610 +0 0.0782 +0 0.0742 +0 0.0945 +0 0.1165 +0 0.1229 +0 0.1435 +0 0.0694 +0 0.0896 +0 0.0882 +0 0.0613 +0 0.3234 +0 0.1730 +0 0.0668 +0 0.0443 +0 0.0496 +0 0.0529 +0 0.0424 +0 0.0690 +0 0.2454 +0 0.0943 +0 0.1079 +0 0.1032 +0 0.0774 +0 0.2134 +0 0.1187 +0 0.0768 +0 0.1493 +0 0.4073 +0 0.1832 +0 0.0624 +0 0.1673 +1 0.8720 +0 0.0837 +0 0.0834 +0 0.0733 +0 0.2858 +0 0.1109 +0 0.0356 +0 0.0740 +0 0.0862 +0 0.2948 +0 0.3961 +0 0.0666 +0 0.0815 +0 0.1839 +0 0.0570 +0 0.0492 +0 0.0997 +0 0.0691 +0 0.0680 +0 0.6919 +0 0.0387 +0 0.1007 +0 0.0706 +0 0.0735 +0 0.1250 +0 0.2211 +0 0.1366 +0 0.0838 +0 0.1028 +1 0.8466 +0 0.0587 +0 0.1266 +0 0.1432 +0 0.2399 +0 0.1216 +0 0.1311 +0 0.0608 +0 0.1571 +0 0.1987 +0 0.1157 +0 0.1656 +0 0.0723 +0 0.0527 +0 0.1654 +0 0.1220 +0 0.1111 +0 0.4674 +0 0.0585 +0 0.1061 +0 0.0987 +0 0.1630 +0 0.1255 +1 0.8169 +0 0.0605 +0 0.2966 +0 0.0781 +0 0.0674 +0 0.4242 +0 0.0577 +0 0.2242 +0 0.0770 +0 0.1135 +0 0.1711 +0 0.1280 +0 0.1415 +0 0.2010 +0 0.1537 +0 0.0849 +0 0.1692 +0 0.1192 +0 0.0727 +0 0.1293 +1 0.7643 +1 0.7528 +0 0.0671 +0 0.1430 +0 0.1877 +0 0.2960 +0 0.6761 +0 0.0567 +0 0.1251 +0 0.1258 +0 0.0464 +0 0.1972 +0 0.1461 +0 0.2490 +0 0.0756 +0 0.4826 +0 0.0701 +0 0.1104 +0 0.4673 +0 0.0885 +0 0.0616 +0 0.0456 +0 0.1773 +0 0.1330 +0 0.0467 +0 0.2102 +1 0.8367 +0 0.1036 +0 0.1644 +0 0.0812 +0 0.0617 +0 0.0887 +0 0.1199 +0 0.0744 +0 0.2754 +0 0.0480 +0 0.0765 +0 0.0970 +0 0.1533 +0 0.0494 +0 0.0383 +0 0.0866 +0 0.0805 +0 0.0796 +0 0.1286 +0 0.0650 +0 0.1773 +0 0.1289 +0 0.1159 +0 0.1002 +0 0.0627 +0 0.1000 +0 0.1212 +0 0.1468 +0 0.0652 +0 0.0999 +0 0.1300 +0 0.0451 +0 0.2170 +0 0.1292 +1 0.8050 +0 0.7142 +0 0.3502 +0 0.3941 +0 0.0587 +0 0.1293 +0 0.1394 +0 0.0632 +0 0.0840 +0 0.2117 +0 0.0608 +0 0.0733 +0 0.4944 +0 0.0972 +0 0.3497 +0 0.0859 +0 0.1375 +0 0.0413 +0 0.0697 +0 0.0967 +0 0.1151 +0 0.4539 +0 0.0540 +0 0.0911 +0 0.1141 +0 0.0867 +0 0.0403 +0 0.0438 +1 0.8464 +0 0.2863 +0 0.0940 +0 0.0471 +0 0.1280 +0 0.1517 +0 0.0558 +1 0.8028 +0 0.0939 +0 0.1085 +0 0.0977 +0 0.0828 +0 0.1124 +1 0.8034 +0 0.0945 +0 0.0721 +0 0.0710 +0 0.1225 +0 0.0892 +0 0.1197 +0 0.0502 +0 0.0752 +0 0.0560 +0 0.1654 +0 0.0898 +0 0.1655 +0 0.2593 +0 0.1707 +0 0.3919 +0 0.0834 +0 0.1403 +0 0.2294 +0 0.1488 +0 0.1442 +0 0.0720 +0 0.2075 +0 0.0524 +0 0.0352 +0 0.0474 +0 0.0647 +0 0.0516 +0 0.1145 +0 0.0307 +0 0.0938 +0 0.1201 +0 0.0887 +0 0.1489 +0 0.1248 +0 0.4797 +0 0.7067 +0 0.1011 +0 0.1079 +0 0.1261 +0 0.1930 +1 0.7940 +0 0.1505 +0 0.1391 +0 0.2349 +0 0.1459 +0 0.0734 +0 0.0888 +0 0.2329 +0 0.1237 +0 0.1198 +0 0.0661 +0 0.1630 +0 0.1065 +0 0.4291 +0 0.0727 +0 0.2888 +0 0.0709 +0 0.1217 +0 0.0538 +0 0.0376 +0 0.0876 +0 0.1076 +0 0.2995 +0 0.5500 +0 0.1308 +0 0.0568 +0 0.2177 +0 0.1767 +0 0.1466 +0 0.2639 +0 0.2340 +0 0.0933 +0 0.0839 +0 0.0661 +0 0.1033 +0 0.0899 +0 0.2551 +0 0.0954 +0 0.1525 +0 0.0781 +0 0.0537 +0 0.2116 +0 0.1830 +0 0.1091 +0 0.0459 +0 0.1751 +0 0.0913 +0 0.0855 +0 0.0535 +0 0.1279 +0 0.2735 +0 0.1050 +0 0.0890 +1 0.7536 +0 0.1712 +0 0.1577 +0 0.0678 +0 0.0789 +0 0.0944 +0 0.2073 +0 0.1013 +0 0.0731 +0 0.1568 +0 0.4635 +0 0.1516 +0 0.0685 +0 0.1145 +0 0.4970 +0 0.1110 +0 0.1001 +0 0.0539 +0 0.2185 +0 0.1107 +0 0.1829 +0 0.1420 +0 0.0636 +0 0.4017 +0 0.0968 +0 0.1583 +0 0.0565 +0 0.1250 +0 0.0748 +0 0.1006 +0 0.1046 +0 0.1384 +0 0.1721 +0 0.0724 +0 0.0766 +0 0.0841 +0 0.0956 +0 0.0677 +0 0.0328 +0 0.0845 +0 0.1269 +0 0.1995 +0 0.0423 +0 0.1709 +0 0.2442 +0 0.1076 +0 0.3413 +0 0.1645 +0 0.0674 +0 0.0737 +0 0.1235 +0 0.0391 +0 0.3537 +0 0.0446 +0 0.0684 +0 0.1090 +0 0.1057 +0 0.1498 +0 0.1083 +0 0.1026 +0 0.1300 +0 0.0929 +0 0.1337 +0 0.0951 +0 0.1381 +0 0.1109 +0 0.0840 +0 0.1082 +0 0.0993 +0 0.2306 +0 0.2482 +0 0.1224 +0 0.0935 +0 0.0678 +0 0.1213 +0 0.0637 +0 0.3271 +1 0.8027 +0 0.0677 +0 0.1901 +0 0.0946 +0 0.1280 +0 0.1955 +0 0.1451 +0 0.0580 +0 0.1059 +0 0.0533 +0 0.0954 +0 0.0558 +0 0.1765 +0 0.5073 +0 0.0870 +0 0.0708 +0 0.0850 +0 0.0790 +0 0.1505 +0 0.1671 +0 0.0410 +0 0.1889 +0 0.1078 +0 0.1378 +0 0.0642 +0 0.1168 +0 0.1056 +0 0.0841 +0 0.2053 +1 0.8792 +0 0.0669 +0 0.1218 +0 0.0754 +0 0.0856 +0 0.1260 +0 0.0643 +0 0.2243 +0 0.5935 +0 0.0664 +0 0.0974 +0 0.0564 +0 0.0763 +0 0.1330 +0 0.0494 +0 0.2288 +0 0.1064 +0 0.1684 +0 0.1032 +0 0.3284 +0 0.7008 +0 0.1448 +0 0.0662 +0 0.1055 +0 0.2413 +0 0.1167 +0 0.2383 +0 0.1163 +0 0.1164 +0 0.0706 +0 0.0697 +0 0.0821 +0 0.5509 +0 0.0453 +0 0.1614 +0 0.0514 +0 0.0403 +0 0.0569 +0 0.0528 +0 0.0983 +0 0.1415 +0 0.0806 +0 0.0684 +0 0.0453 +0 0.0667 +0 0.1890 +0 0.0900 +0 0.2105 +0 0.1911 +0 0.0606 +0 0.6083 +0 0.1229 +0 0.1079 +0 0.1131 +0 0.0874 +0 0.1172 +0 0.0641 +0 0.2014 +0 0.3116 +0 0.1799 +0 0.2093 +0 0.0629 +0 0.0496 +0 0.0590 +0 0.0330 +0 0.7218 +0 0.1776 +0 0.3314 +0 0.1752 +0 0.1147 +0 0.1377 +0 0.0500 +0 0.1331 +0 0.0901 +0 0.0415 +0 0.6759 +0 0.6565 +0 0.2761 +0 0.1873 +0 0.1105 +0 0.0715 +0 0.1283 +0 0.0816 +0 0.0687 +0 0.0633 +0 0.5599 +0 0.0943 +0 0.0970 +0 0.0941 +0 0.3121 +0 0.1338 +0 0.1154 +0 0.1046 +0 0.0962 +0 0.1149 +0 0.1216 +0 0.7086 +0 0.1189 +0 0.1002 +0 0.0549 +0 0.0779 +0 0.4167 +0 0.4341 +0 0.0988 +0 0.0500 +0 0.2198 +0 0.0723 +0 0.0680 +0 0.0601 +0 0.2265 +0 0.0750 +0 0.0703 +0 0.0760 +0 0.0562 +0 0.0919 +0 0.3191 +0 0.0676 +0 0.1629 +0 0.1053 +0 0.1341 +0 0.3626 +0 0.0759 +0 0.2201 +0 0.0939 +0 0.1178 +0 0.0744 +0 0.2354 +1 0.7990 +0 0.2872 +0 0.3390 +0 0.1129 +0 0.0698 +0 0.0461 +0 0.1098 +0 0.0455 +0 0.0721 +0 0.1310 +0 0.0597 +0 0.0896 +0 0.1172 +0 0.1433 +0 0.1168 +0 0.1337 +0 0.0997 +0 0.2046 +0 0.0619 +0 0.1216 +0 0.1253 +0 0.0987 +0 0.3629 +0 0.0516 +0 0.0490 +0 0.1301 +0 0.0769 +0 0.2709 +0 0.0730 +0 0.0660 +0 0.1246 +0 0.1401 +0 0.1384 +0 0.1877 +0 0.0617 +0 0.0994 +0 0.1283 +0 0.2135 +0 0.1327 +0 0.1990 +0 0.0777 +0 0.1254 +0 0.2107 +0 0.2024 +0 0.1904 +0 0.1031 +0 0.0577 +0 0.1230 +0 0.0941 +0 0.1589 +0 0.0710 +0 0.0740 +0 0.0351 +0 0.1184 +0 0.1512 +0 0.1682 +0 0.0787 +0 0.1113 +0 0.1429 +0 0.0761 +0 0.0937 +0 0.3105 +0 0.1031 +0 0.0695 +0 0.3690 +0 0.1777 +0 0.1199 +0 0.2130 +0 0.0719 +0 0.0712 +0 0.0756 +0 0.1156 +0 0.1033 +0 0.1872 +0 0.1923 +0 0.1494 +0 0.0565 +0 0.0760 +0 0.0920 +0 0.1968 +0 0.1615 +0 0.2036 +0 0.0643 +0 0.1283 +0 0.1170 +0 0.1096 +0 0.6985 +0 0.1061 +0 0.0633 +0 0.0573 +0 0.1459 +0 0.0826 +0 0.0716 +0 0.1090 +0 0.3374 +0 0.0502 +0 0.0852 +0 0.1930 +0 0.0418 +0 0.1428 +0 0.2008 +0 0.2442 +0 0.0811 +0 0.1414 +0 0.0667 +0 0.0464 +0 0.1118 +0 0.0554 +0 0.1044 +0 0.1834 +0 0.1743 +0 0.2076 +0 0.2897 +0 0.0710 +0 0.2145 +0 0.0879 +0 0.0708 +0 0.1240 +0 0.1263 +0 0.0859 +0 0.1771 +0 0.0765 +0 0.1105 +0 0.1167 +0 0.0945 +0 0.0907 +0 0.4152 +0 0.1664 +0 0.2132 +1 0.7690 +0 0.1422 +0 0.1491 +0 0.0788 +0 0.1735 +1 0.8536 +0 0.1818 +0 0.0861 +0 0.1072 +0 0.0712 +0 0.1346 +0 0.0922 +0 0.2193 +0 0.1959 +0 0.1047 +0 0.0966 +0 0.0882 +0 0.0888 +0 0.1127 +0 0.0985 +0 0.1878 +0 0.0734 +0 0.1017 +0 0.1314 +0 0.0727 +0 0.1386 +0 0.3574 +0 0.1230 +0 0.0565 +0 0.1127 +0 0.1254 +0 0.1243 +0 0.1351 +0 0.1148 +0 0.0963 +0 0.0702 +0 0.0721 +0 0.0457 +0 0.1773 +0 0.1006 +0 0.0772 +0 0.1603 +0 0.0734 +0 0.1271 +0 0.1272 +0 0.0793 +0 0.0473 +0 0.0533 +0 0.1416 +0 0.1359 +0 0.2236 +0 0.0792 +0 0.0731 +0 0.2813 +0 0.1188 +0 0.0555 +0 0.0868 +0 0.0700 +0 0.0804 +0 0.0962 +0 0.0865 +0 0.0696 +0 0.2536 +0 0.0674 +0 0.0645 +0 0.1033 +0 0.1419 +0 0.0586 +0 0.4262 +0 0.1736 +0 0.0560 +0 0.3546 +0 0.2430 +0 0.1913 +0 0.1928 +1 0.7910 +0 0.1090 +0 0.0580 +1 0.8586 +0 0.0977 +0 0.0785 +0 0.1377 +0 0.0870 +0 0.2894 +0 0.1873 +0 0.0757 +0 0.0341 +0 0.0667 +0 0.2599 +0 0.0291 +0 0.1197 +0 0.1250 +0 0.1378 +0 0.1505 +0 0.0826 +0 0.0493 +0 0.0647 +0 0.2118 +0 0.1818 +0 0.0448 +0 0.1119 +0 0.1163 +0 0.0570 +0 0.1054 +0 0.1563 +0 0.0657 +0 0.1223 +0 0.0805 +0 0.1032 +0 0.0933 +0 0.3754 +0 0.0691 +0 0.1765 +0 0.0766 +0 0.1845 +0 0.0797 +0 0.0752 +0 0.0611 +0 0.1129 +0 0.1956 +0 0.0628 +0 0.0395 +0 0.0781 +0 0.3986 +0 0.2012 +0 0.0911 +0 0.0719 +0 0.0541 +0 0.0597 +0 0.1638 +0 0.2438 +0 0.0564 +0 0.5640 +0 0.2636 +0 0.0610 +0 0.2852 +0 0.1079 +0 0.1117 +0 0.0331 +0 0.0833 +0 0.0501 +0 0.1049 +0 0.2434 +0 0.0885 +0 0.1657 +0 0.1650 +0 0.0926 +0 0.1604 +0 0.2721 +0 0.3739 +0 0.0784 +0 0.0786 +0 0.1364 +0 0.0330 +0 0.1328 +0 0.0944 +0 0.0995 +0 0.1998 +0 0.0675 +0 0.0536 +0 0.0742 +0 0.1244 +0 0.1066 +0 0.1222 +0 0.1371 +0 0.0874 +0 0.1353 +0 0.2017 +0 0.2493 +0 0.3616 +0 0.0700 +0 0.5010 +0 0.1264 +0 0.0821 +0 0.0717 +0 0.0773 +0 0.1497 +0 0.2120 +0 0.0713 +0 0.0368 +0 0.1106 +0 0.0704 +0 0.0684 +0 0.1932 +0 0.0749 +0 0.0559 +0 0.0818 +0 0.0901 +0 0.3423 +0 0.0756 +0 0.2081 +0 0.1421 +0 0.0915 +0 0.1555 +0 0.0978 +0 0.1772 +0 0.1828 +0 0.1188 +0 0.1732 +0 0.2155 +0 0.0920 +0 0.1595 +0 0.1175 +0 0.1146 +0 0.0641 +0 0.2315 +0 0.0538 +0 0.1203 +0 0.0757 +0 0.0544 +0 0.0737 +0 0.1048 +0 0.0539 +0 0.0465 +0 0.1278 +0 0.1332 +0 0.0658 +0 0.1366 +0 0.2094 +0 0.0372 +0 0.1462 +0 0.0559 +0 0.0603 +0 0.1454 +0 0.4648 +0 0.1554 +0 0.2417 +0 0.0954 +0 0.1124 +0 0.2073 +0 0.0728 +0 0.0880 +0 0.1620 +0 0.0630 +0 0.1031 +0 0.1504 +0 0.4203 +0 0.0962 +0 0.4825 +0 0.6541 +0 0.1564 +0 0.2663 +0 0.0628 +0 0.0906 +0 0.1327 +0 0.1070 +0 0.0755 +0 0.0674 +0 0.0782 +0 0.4016 +0 0.1097 +0 0.0653 +0 0.0958 +0 0.0832 +0 0.1793 +0 0.0500 +0 0.0859 +0 0.0727 +0 0.0862 +0 0.0463 +0 0.0455 +0 0.1207 +0 0.1402 +0 0.0745 +0 0.2988 +0 0.1556 +0 0.6955 +0 0.0637 +0 0.0877 +0 0.0709 +0 0.0539 +0 0.1531 +0 0.0322 +0 0.0359 +0 0.0919 +0 0.2038 +0 0.1678 +0 0.1476 +0 0.1030 +0 0.2457 +0 0.0765 +0 0.1325 +0 0.1353 +0 0.4232 +0 0.0897 +0 0.0970 +0 0.2324 +0 0.0853 +0 0.1298 +0 0.0484 +0 0.1090 +0 0.7194 +0 0.1514 +0 0.1104 +0 0.0781 +0 0.2664 +0 0.1467 +0 0.0939 +0 0.1046 +0 0.0452 +0 0.1384 +0 0.0814 +0 0.0643 +0 0.0768 +0 0.0426 +0 0.3132 +0 0.2184 +0 0.2746 +0 0.1073 +0 0.1246 +0 0.1444 +0 0.0701 +0 0.1193 +0 0.0595 +0 0.0956 +0 0.0895 +0 0.0698 +0 0.1998 +0 0.1194 +0 0.1012 +0 0.3247 +0 0.1706 +0 0.0572 +0 0.2713 +0 0.0661 +0 0.4727 +0 0.1594 +0 0.0920 +0 0.1956 +0 0.1103 +0 0.0608 +0 0.0703 +0 0.0549 +0 0.1482 +0 0.4704 +0 0.0431 +0 0.1596 +0 0.0656 +0 0.1336 +0 0.1737 +0 0.1252 +0 0.2082 +0 0.0824 +0 0.1151 +0 0.2376 +0 0.2030 +0 0.1295 +0 0.1501 +0 0.1937 +0 0.1515 +0 0.1902 +0 0.1341 +0 0.0463 +0 0.0676 +0 0.0727 +0 0.3853 +0 0.1057 +0 0.4305 +0 0.0383 +0 0.2099 +0 0.1226 +0 0.1657 +0 0.0509 +0 0.0451 +0 0.0869 +0 0.0619 +0 0.1229 +0 0.0837 +0 0.1544 +0 0.0690 +0 0.1156 +0 0.2553 +0 0.0662 +0 0.1178 +0 0.1156 +0 0.0788 +0 0.0958 +0 0.0433 +0 0.0611 +0 0.1211 +0 0.0696 +0 0.0740 +0 0.6640 +0 0.0662 +0 0.0702 +0 0.1355 +0 0.1207 +0 0.0948 +0 0.1780 +0 0.4400 +0 0.1937 +0 0.1480 +0 0.1691 +0 0.1650 +0 0.0800 +0 0.0725 +0 0.0729 +0 0.0999 +0 0.0909 +0 0.0653 +0 0.0884 +0 0.1977 +0 0.3593 +0 0.3500 +0 0.3229 +0 0.1723 +0 0.0574 +0 0.0761 +0 0.1386 +0 0.6154 +0 0.1519 +0 0.1508 +0 0.1257 +1 0.8695 +0 0.2747 +0 0.0710 +0 0.1775 +0 0.0900 +0 0.2023 +0 0.2123 +0 0.0682 +0 0.0806 +0 0.1484 +0 0.0495 +0 0.0816 +0 0.2213 +0 0.0467 +0 0.0818 +0 0.0787 +0 0.0567 +0 0.0507 +0 0.0886 +0 0.0542 +0 0.0719 +0 0.0994 +0 0.1130 +0 0.1231 +1 0.8168 +0 0.2467 +0 0.0946 +0 0.1102 +0 0.0457 +0 0.1368 +0 0.1069 +0 0.3289 +1 0.8094 +0 0.2371 +0 0.1086 +0 0.0618 +0 0.2130 +0 0.1107 +0 0.1030 +0 0.0690 +0 0.0692 +0 0.0654 +0 0.0385 +0 0.1168 +0 0.2685 +0 0.0667 +0 0.0783 +0 0.6842 +0 0.1070 +0 0.1247 +0 0.0522 +0 0.1311 +0 0.0575 +0 0.1524 +0 0.0854 +0 0.0950 +0 0.1273 +0 0.0823 +0 0.0989 +0 0.2205 +0 0.1383 +0 0.5942 +0 0.0828 +0 0.0958 +0 0.2732 +0 0.0505 +0 0.0383 +0 0.0745 +0 0.0549 +0 0.0840 +0 0.1648 +0 0.1534 +0 0.0855 +0 0.0567 +0 0.0550 +0 0.0529 +0 0.0597 +0 0.0904 +0 0.1776 +0 0.1000 +0 0.3852 +0 0.1114 +0 0.0908 +0 0.0497 +0 0.2722 +0 0.0553 +0 0.0886 +0 0.1040 +0 0.1472 +0 0.0580 +0 0.1590 +0 0.0801 +0 0.0834 +0 0.0611 +0 0.0616 +0 0.0923 +0 0.1759 +0 0.3596 +0 0.1602 +0 0.0592 +0 0.0768 +0 0.0558 +0 0.6020 +0 0.2865 +0 0.0868 +0 0.1764 +0 0.0600 +0 0.0757 +0 0.0683 +0 0.0321 +0 0.0659 +0 0.0767 +0 0.1118 +0 0.1928 +0 0.2383 +0 0.0983 +0 0.0936 +0 0.2418 +0 0.0500 +0 0.0599 +0 0.0608 +0 0.0677 +0 0.0566 +0 0.1319 +0 0.1720 +0 0.0838 +0 0.1813 +0 0.1231 +0 0.0817 +0 0.0676 +0 0.0565 +0 0.1304 +0 0.2179 +0 0.0618 +0 0.1468 +0 0.0843 +0 0.5184 +0 0.1425 +0 0.0804 +0 0.1023 +0 0.0956 +0 0.1729 +0 0.1169 +0 0.0705 +0 0.0511 +0 0.0661 +0 0.0658 +0 0.2589 +0 0.1409 +0 0.1518 +0 0.1285 +0 0.2585 +0 0.0385 +0 0.0365 +0 0.1496 +1 0.8547 +0 0.0878 +0 0.0796 +0 0.0624 +0 0.0941 +0 0.0577 +0 0.3764 +0 0.1157 +0 0.0522 +0 0.0798 +0 0.0449 +0 0.0585 +0 0.0960 +0 0.3634 +0 0.1437 +0 0.1558 +0 0.1806 +0 0.1132 +0 0.0984 +0 0.0561 +0 0.0635 +0 0.0557 +0 0.0849 +0 0.4703 +0 0.3590 +0 0.1379 +0 0.2720 +0 0.0658 +0 0.0848 +0 0.1414 +0 0.1209 +0 0.1228 +0 0.1329 +0 0.1390 +0 0.1237 +0 0.1402 +0 0.3252 +0 0.0676 +0 0.0948 +0 0.1198 +0 0.1315 +0 0.1897 +0 0.0712 +0 0.2702 +0 0.0782 +0 0.0422 +0 0.2029 +0 0.1859 +0 0.0742 +0 0.0750 +0 0.0861 +0 0.1222 +0 0.7343 +0 0.3010 +0 0.1676 +0 0.0949 +0 0.1103 +0 0.1312 +0 0.0833 +0 0.0729 +0 0.0511 +0 0.1542 +0 0.0542 +0 0.1276 +0 0.0757 +0 0.1187 +0 0.1279 +0 0.2030 +0 0.0837 +0 0.1843 +0 0.0476 +0 0.0915 +0 0.0923 +0 0.0676 +0 0.0623 +0 0.2480 +0 0.0990 +0 0.1523 +0 0.1436 +1 0.7679 +0 0.1121 +0 0.0933 +0 0.0973 +0 0.0450 +0 0.0893 +0 0.1052 +0 0.1185 +0 0.0860 +0 0.1601 +1 0.7979 +0 0.0535 +0 0.0840 +0 0.3037 +0 0.1223 +0 0.0879 +0 0.0691 +0 0.3902 +0 0.1813 +0 0.1156 +0 0.1142 +0 0.2941 +0 0.0756 +0 0.2085 +0 0.3303 +0 0.0402 +0 0.1058 +0 0.1905 +0 0.0855 +0 0.3334 +0 0.0750 +0 0.0864 +0 0.0979 +0 0.1933 +0 0.0568 +0 0.0526 +0 0.0662 +0 0.1531 +0 0.1227 +0 0.2628 +0 0.6001 +0 0.1825 +0 0.0768 +0 0.1016 +0 0.0885 +0 0.1677 +0 0.1724 +0 0.0890 +0 0.0829 +0 0.0911 +0 0.0979 +0 0.2541 +0 0.1781 +0 0.0943 +0 0.0836 +0 0.0868 +0 0.3022 +0 0.0924 +0 0.0420 +0 0.1095 +0 0.0735 +0 0.0660 +0 0.1201 +0 0.1571 +0 0.1649 +0 0.1009 +0 0.0556 +0 0.1580 +0 0.2697 +0 0.1049 +0 0.1209 +0 0.1864 +0 0.0957 +0 0.1009 +0 0.0986 +0 0.0543 +0 0.1126 +0 0.0642 +0 0.2863 +0 0.0903 +0 0.1168 +0 0.1135 +0 0.1360 +0 0.2236 +0 0.1729 +0 0.0996 +0 0.1761 +0 0.2473 +0 0.0843 +0 0.1028 +0 0.1046 +0 0.1071 +0 0.1616 +0 0.0704 +0 0.0762 +0 0.0841 +0 0.0783 +0 0.1700 +0 0.1405 +0 0.5979 +0 0.0742 +0 0.3886 +0 0.1345 +0 0.0811 +0 0.0666 +0 0.1534 +0 0.1012 +0 0.1395 +0 0.2428 +0 0.0603 +0 0.0515 +0 0.1799 +0 0.0706 +0 0.0986 +0 0.1091 +0 0.1896 +0 0.1136 +0 0.0910 +0 0.0848 +0 0.2024 +0 0.2909 +0 0.1016 +0 0.4191 +0 0.1300 +0 0.0426 +0 0.0999 +0 0.1824 +0 0.0665 +0 0.1591 +0 0.1034 +0 0.3169 +0 0.0379 +0 0.2934 +0 0.1137 +0 0.2308 +0 0.3307 +0 0.5442 +0 0.0920 +0 0.1697 +0 0.0855 +0 0.0611 +0 0.1535 +0 0.1102 +0 0.0686 +0 0.5177 +0 0.1046 +0 0.1221 +0 0.1331 +0 0.0489 +0 0.1146 +1 0.7689 +0 0.3202 +0 0.0920 +0 0.0930 +0 0.0835 +0 0.0551 +0 0.2069 +0 0.0964 +0 0.0865 +0 0.0689 +0 0.0967 +0 0.1562 +0 0.0575 +0 0.1910 +0 0.0829 +0 0.0897 +0 0.0990 +0 0.1558 +0 0.0512 +0 0.1299 +0 0.0603 +0 0.0595 +1 0.8673 +0 0.1511 +0 0.0693 +0 0.1133 +0 0.1068 +0 0.3360 +0 0.1374 +0 0.1019 +0 0.1297 +0 0.1124 +0 0.1992 +0 0.1148 +0 0.1633 +0 0.1307 +0 0.1513 +0 0.2297 +0 0.2189 +0 0.1578 +0 0.0536 +0 0.1760 +0 0.0459 +0 0.1659 +0 0.2714 +0 0.0658 +0 0.1027 +0 0.0694 +0 0.1087 +0 0.0849 +0 0.0682 +0 0.1441 +0 0.5010 +0 0.1110 +0 0.0509 +0 0.0846 +0 0.1189 +0 0.0580 +0 0.6212 +0 0.1130 +0 0.6865 +0 0.1281 +0 0.1019 +0 0.0907 +0 0.3074 +0 0.1682 +0 0.3616 +0 0.2468 +0 0.1291 +0 0.1023 +0 0.0907 +0 0.0667 +0 0.1354 +0 0.0928 +0 0.0809 +0 0.0957 +0 0.2300 +0 0.0503 +0 0.2200 +0 0.2290 +0 0.0736 +0 0.0914 +0 0.1424 +0 0.0511 +0 0.0684 +0 0.0854 +0 0.1887 +0 0.0697 +0 0.0588 +0 0.0664 +0 0.3554 +0 0.0602 +0 0.0853 +0 0.0438 +0 0.4198 +0 0.1641 +0 0.0665 +0 0.0397 +0 0.0920 +0 0.7221 +0 0.2222 +0 0.0731 +0 0.0787 +0 0.1487 +0 0.1325 +0 0.0732 +0 0.0793 +0 0.1101 +0 0.0895 +0 0.0535 +0 0.0620 +0 0.0706 +0 0.1286 +0 0.0327 +0 0.4487 +0 0.0641 +0 0.3231 +0 0.5867 +0 0.3176 +0 0.0538 +0 0.1672 +0 0.0457 +0 0.0673 +0 0.1530 +0 0.0770 +0 0.1259 +0 0.0581 +0 0.1215 +0 0.1521 +0 0.1157 +0 0.1173 +0 0.2489 +0 0.0995 +0 0.0487 +0 0.1251 +0 0.1708 +0 0.0997 +0 0.1106 +0 0.0738 +0 0.1907 +0 0.0674 +0 0.0834 +0 0.0799 +0 0.3254 +0 0.3940 +0 0.0898 +0 0.1359 +0 0.0704 +0 0.1046 +0 0.1266 +0 0.0829 +0 0.0900 +0 0.0756 +0 0.5371 +0 0.1024 +0 0.1819 +0 0.0536 +0 0.0652 +0 0.4823 +0 0.0643 +0 0.0719 +0 0.2779 +0 0.2033 +0 0.0763 +0 0.1099 +0 0.1003 +0 0.1146 +0 0.3090 +0 0.1442 +0 0.0933 +0 0.0866 +0 0.6396 +0 0.1718 +0 0.0787 +0 0.1177 +0 0.0528 +0 0.3099 +0 0.0613 +0 0.0857 +0 0.0449 +0 0.0601 +0 0.0917 +0 0.3722 +0 0.0372 +0 0.1005 +0 0.2541 +0 0.0849 +0 0.0886 +0 0.1007 +0 0.1273 +0 0.0886 +0 0.0975 +0 0.0812 +0 0.1273 +0 0.0831 +0 0.0891 +0 0.1004 +0 0.0725 +0 0.3552 +0 0.5041 +0 0.0790 +0 0.1067 +0 0.1036 +0 0.0867 +0 0.0658 +0 0.0818 +0 0.0709 +0 0.1965 +0 0.0881 +0 0.0551 +0 0.1025 +1 0.8912 +0 0.0502 +0 0.1501 +0 0.1658 +0 0.0711 +0 0.2476 +0 0.0813 +0 0.0893 +0 0.1251 +0 0.0552 +0 0.1600 +0 0.1077 +0 0.3426 +0 0.0883 +0 0.1098 +0 0.1429 +0 0.1713 +0 0.1681 +0 0.4734 +0 0.1058 +0 0.2576 +0 0.0321 +0 0.1527 +0 0.1516 +0 0.0719 +0 0.0534 +0 0.1639 +0 0.0742 +0 0.1734 +0 0.2051 +1 0.8609 +0 0.1370 +0 0.0725 +0 0.1381 +0 0.0892 +0 0.1638 +0 0.1043 +0 0.0992 +0 0.0905 +1 0.8213 +0 0.0973 +0 0.0349 +0 0.5251 +0 0.0743 +0 0.1621 +0 0.2072 +0 0.0814 +0 0.0941 +0 0.0381 +0 0.0477 +0 0.0412 +0 0.0677 +0 0.1248 +0 0.0974 +0 0.1085 +0 0.1022 +0 0.0707 +0 0.1137 +0 0.0805 +0 0.1424 +0 0.1190 +0 0.0612 +0 0.0953 +0 0.6182 +0 0.0722 +0 0.0835 +0 0.1515 +0 0.3451 +0 0.0477 +0 0.2063 +0 0.1355 +0 0.1302 +0 0.2268 +0 0.1343 +0 0.6354 +0 0.2830 +0 0.1636 +0 0.0789 +0 0.0764 +0 0.0869 +0 0.3026 +0 0.0432 +0 0.0592 +0 0.1663 +0 0.1102 +0 0.1253 +0 0.1708 +0 0.0625 +0 0.0340 +0 0.0472 +0 0.0650 +0 0.0909 +0 0.0442 +0 0.0976 +0 0.0802 +0 0.1757 +0 0.0622 +0 0.0878 +0 0.1162 +0 0.1593 +0 0.1706 +0 0.2140 +0 0.1281 +0 0.2738 +0 0.1177 +0 0.0891 +0 0.1333 +0 0.0552 +0 0.1080 +0 0.0956 +0 0.0665 +0 0.1412 +0 0.0982 +0 0.1313 +0 0.0702 +0 0.0471 +0 0.0851 +0 0.1378 +0 0.0652 +0 0.1597 +0 0.3953 +0 0.1136 +0 0.1341 +0 0.2091 +0 0.0394 +0 0.0576 +0 0.0945 +0 0.2833 +0 0.0823 +0 0.1461 +0 0.2045 +0 0.0773 +0 0.0409 +0 0.1285 +0 0.1749 +0 0.0891 +0 0.0599 +0 0.0482 +0 0.1999 +0 0.0998 +0 0.0487 +0 0.0856 +0 0.1743 +0 0.1429 +0 0.3096 +0 0.1691 +0 0.4304 +0 0.1499 +0 0.0528 +0 0.0733 +0 0.0901 +0 0.0506 +0 0.0426 +0 0.0701 +0 0.0589 +0 0.0805 +0 0.1314 +0 0.0369 +0 0.1159 +0 0.1240 +0 0.0736 +0 0.1694 +0 0.0950 +0 0.2718 +0 0.1014 +0 0.1650 +0 0.1217 +0 0.1725 +0 0.0856 +0 0.1148 +0 0.0961 +0 0.0897 +0 0.1320 +0 0.0616 +0 0.0724 +0 0.1758 +0 0.0958 +0 0.1270 +0 0.0963 +0 0.0867 +0 0.0912 +0 0.4318 +0 0.0707 +0 0.1641 +0 0.2810 +0 0.0675 +0 0.3512 +0 0.0835 +0 0.0630 +0 0.0828 +0 0.0719 +0 0.0649 +0 0.1727 +0 0.0576 +0 0.0575 +0 0.1859 +0 0.0710 +0 0.0835 +0 0.2646 +0 0.1609 +1 0.3666 +0 0.2186 +0 0.0738 +0 0.1086 +0 0.2180 +0 0.1177 +0 0.0711 +0 0.1228 +0 0.0750 +0 0.1188 +0 0.0446 +0 0.1183 +0 0.0906 +0 0.1009 +0 0.1468 +0 0.0900 +0 0.1528 +0 0.0948 +0 0.1007 +0 0.1223 +0 0.1924 +0 0.0612 +0 0.1372 +0 0.2983 +0 0.1270 +0 0.1372 +0 0.0552 +0 0.0544 +0 0.0866 +0 0.6661 +0 0.1174 +0 0.0808 +0 0.0894 +0 0.1089 +0 0.0706 +0 0.0986 +0 0.1392 +0 0.0465 +0 0.1427 +0 0.0717 +0 0.0736 +0 0.2102 +0 0.2133 +0 0.1337 +0 0.2870 +0 0.0820 +0 0.0977 +0 0.1852 +0 0.0980 +0 0.0620 +0 0.0519 +0 0.2973 +0 0.4054 +0 0.1769 +0 0.1922 +0 0.1000 +0 0.0718 +0 0.1146 +0 0.0793 +0 0.2029 +0 0.1011 +0 0.1709 +0 0.0653 +0 0.1087 +0 0.0761 +0 0.1415 +0 0.1338 +0 0.1456 +0 0.1703 +0 0.4034 +0 0.0613 +0 0.1295 +0 0.1982 +0 0.3171 +0 0.1181 +0 0.1862 +0 0.3585 +0 0.0302 +0 0.1885 +0 0.2051 +0 0.0676 +0 0.5200 +0 0.0934 +0 0.3099 +0 0.0396 +0 0.0359 +0 0.0495 +0 0.3047 +0 0.1148 +0 0.0801 +0 0.0830 +0 0.0501 +0 0.0544 +0 0.0367 +0 0.4313 +0 0.1409 +0 0.0673 +0 0.0710 +0 0.1484 +0 0.1109 +0 0.1614 +0 0.2105 +0 0.1874 +0 0.0714 +0 0.1023 +0 0.5908 +0 0.3263 +0 0.2641 +0 0.1586 +0 0.5404 +0 0.7467 +0 0.1187 +0 0.3296 +0 0.1014 +0 0.1178 +0 0.2081 +0 0.1690 +0 0.1784 +0 0.0925 +0 0.0551 +0 0.2211 +0 0.0779 +0 0.0850 +0 0.1369 +0 0.4205 +0 0.1178 +0 0.3264 +0 0.0817 +0 0.1375 +0 0.0439 +0 0.0691 +0 0.1735 +0 0.2901 +0 0.0456 +0 0.1874 +0 0.0823 +0 0.0442 +0 0.2000 +0 0.3101 +0 0.3880 +0 0.0486 +0 0.1741 +0 0.6923 +0 0.1697 +0 0.0471 +0 0.1410 +0 0.1413 +0 0.0802 +0 0.0864 +0 0.0924 +0 0.2760 +0 0.2134 +0 0.3969 +0 0.1885 +0 0.5823 +0 0.0743 +0 0.0602 +0 0.0414 +0 0.0525 +0 0.1767 +0 0.1100 +0 0.0390 +0 0.3228 +0 0.0540 +0 0.0980 +0 0.1900 +0 0.0587 +0 0.1359 +0 0.1332 +0 0.1991 +0 0.2613 +0 0.1275 +0 0.0870 +0 0.0620 +0 0.3118 +0 0.1323 +0 0.0559 +0 0.0599 +0 0.0772 +0 0.2450 +0 0.0634 +0 0.2564 +0 0.1006 +0 0.0412 +0 0.0549 +0 0.0764 +1 0.8419 +0 0.0781 +0 0.1089 +0 0.6672 +0 0.1052 +0 0.0929 +0 0.1977 +0 0.0474 +0 0.0988 +0 0.0698 +0 0.1664 +0 0.0331 +0 0.1170 +0 0.1109 +0 0.0705 +0 0.0813 +0 0.2357 +0 0.1678 +0 0.0748 +0 0.4412 +0 0.5111 +0 0.2141 +0 0.1737 +0 0.1721 +0 0.0964 +0 0.1043 +0 0.0751 +0 0.1899 +0 0.1221 +0 0.1653 +0 0.0749 +0 0.0518 +0 0.0696 +0 0.1095 +0 0.0833 +0 0.0519 +0 0.2770 +0 0.0871 +0 0.1567 +0 0.0506 +0 0.0641 +0 0.1170 +0 0.0560 +0 0.1843 +0 0.1683 +0 0.3129 +0 0.0895 +0 0.0331 +0 0.0600 +0 0.0736 +0 0.3679 +0 0.0740 +0 0.0715 +0 0.0514 +0 0.0540 +0 0.4261 +0 0.1170 +0 0.1278 +0 0.1173 +0 0.0910 +0 0.0366 +0 0.0633 +0 0.1111 +0 0.1613 +0 0.0400 +0 0.0570 +0 0.0365 +0 0.1352 +0 0.1038 +0 0.0955 +0 0.0573 +0 0.0783 +0 0.0995 +0 0.0848 +0 0.1406 +0 0.0779 +0 0.0704 +0 0.0711 +0 0.1258 +0 0.1655 +0 0.2296 +0 0.0843 +0 0.0848 +0 0.2199 +0 0.1202 +0 0.1711 +0 0.0705 +0 0.3758 +0 0.0412 +1 0.7545 +0 0.2200 +0 0.0899 +0 0.1878 +0 0.1886 +0 0.0685 +0 0.0908 +0 0.1725 +0 0.0541 +0 0.0723 +0 0.1906 +1 0.2139 +0 0.1533 +0 0.1023 +0 0.1728 +0 0.1366 +0 0.0962 +0 0.0590 +0 0.1465 +0 0.0611 +0 0.1825 +0 0.1656 +0 0.1427 +0 0.0844 +0 0.2062 +0 0.2100 +0 0.3166 +0 0.1055 +0 0.1376 +0 0.0943 +0 0.1149 +0 0.0333 +0 0.0938 +0 0.0704 +0 0.1990 +0 0.4358 +0 0.3282 +0 0.1119 +0 0.4864 +0 0.0991 +0 0.0633 +0 0.0894 +0 0.7494 +0 0.1846 +1 0.8269 +0 0.2718 +0 0.1166 +0 0.0774 +0 0.1246 +1 0.8236 +0 0.0423 +0 0.1373 +0 0.2263 +0 0.1676 +0 0.2456 +0 0.0797 +0 0.1166 +0 0.0817 +0 0.0652 +0 0.1039 +0 0.2683 +0 0.0897 +0 0.0443 +0 0.1914 +0 0.2296 +0 0.1137 +0 0.1725 +0 0.0813 +0 0.4090 +0 0.0409 +0 0.1659 +0 0.0764 +0 0.1585 +0 0.1200 +0 0.3401 +0 0.1311 +0 0.2835 +0 0.0482 +0 0.1300 +0 0.1279 +0 0.1062 +0 0.1434 +0 0.0442 +0 0.0921 +0 0.0996 +0 0.1292 +0 0.2223 +0 0.0559 +0 0.0778 +0 0.0966 +0 0.1665 +0 0.0853 +1 0.7890 +0 0.1519 +0 0.2881 +0 0.0889 +0 0.0810 +0 0.1152 +0 0.0961 +0 0.0701 +0 0.3645 +0 0.1185 +0 0.6587 +0 0.4816 +0 0.0930 +0 0.1290 +0 0.3135 +0 0.0807 +0 0.1034 +0 0.0665 +0 0.4499 +0 0.1218 +0 0.1848 +1 0.7558 +0 0.0681 +0 0.1056 +0 0.1610 +0 0.1315 +0 0.0711 +0 0.6055 +0 0.0754 +0 0.0663 +0 0.1476 +0 0.7070 +0 0.1024 +0 0.1418 +0 0.0848 +0 0.0512 +0 0.2565 +0 0.0952 +0 0.0410 +0 0.0991 +0 0.1283 +0 0.0831 +0 0.0529 +0 0.1298 +0 0.0827 +0 0.0555 +0 0.2950 +0 0.1133 +0 0.1357 +0 0.1337 +0 0.2895 +0 0.1217 +0 0.1862 +0 0.1155 +0 0.1378 +0 0.0729 +0 0.0890 +0 0.3357 +0 0.0375 +0 0.0942 +0 0.0772 +0 0.1367 +0 0.0517 +0 0.0384 +0 0.1088 +0 0.1028 +0 0.2175 +0 0.1233 +0 0.2112 +0 0.5480 +0 0.0498 +0 0.0827 +0 0.0594 +0 0.1151 +0 0.1851 +0 0.0842 +0 0.0863 +0 0.1647 +0 0.1670 +0 0.0671 +0 0.1314 +0 0.0825 +0 0.0764 +0 0.0437 +0 0.1522 +0 0.0785 +0 0.1742 +0 0.1055 +0 0.0632 +0 0.1442 +0 0.3694 +0 0.0933 +0 0.0774 +0 0.1155 +0 0.2255 +0 0.1443 +0 0.2722 +0 0.0586 +1 0.8483 +0 0.0562 +0 0.3926 +0 0.0560 +0 0.0397 +0 0.1985 +0 0.1205 +0 0.3306 +1 0.7551 +0 0.1425 +0 0.1149 +0 0.1558 +0 0.1184 +0 0.1294 +0 0.1380 +0 0.1587 +0 0.0469 +0 0.0431 +0 0.1808 +0 0.3812 +0 0.1131 +0 0.0376 +0 0.0590 +0 0.0898 +0 0.1611 +0 0.1514 +0 0.1561 +0 0.0899 +0 0.0407 +0 0.0963 +0 0.0944 +0 0.2000 +0 0.1120 +0 0.0904 +0 0.2253 +0 0.0933 +0 0.2516 +0 0.0677 +0 0.1753 +0 0.0692 +0 0.0917 +0 0.2106 +0 0.1658 +0 0.0744 +0 0.2289 +0 0.0676 +0 0.1251 +0 0.0903 +0 0.2475 +0 0.0616 +0 0.0662 +0 0.1659 +0 0.2158 +0 0.2692 +0 0.1255 +0 0.0346 +0 0.1452 +0 0.5429 +0 0.0838 +0 0.0558 +0 0.0710 +0 0.0904 +1 0.7514 +0 0.1195 +0 0.1774 +0 0.0674 +0 0.0928 +0 0.0963 +0 0.0642 +0 0.0689 +0 0.1245 +0 0.0575 +0 0.0360 +0 0.1025 +0 0.0882 +0 0.1009 +0 0.1285 +0 0.2537 +0 0.1287 +0 0.7414 +0 0.0526 +0 0.1214 +0 0.0982 +0 0.1316 +0 0.1005 +0 0.2956 +0 0.2263 +0 0.2062 +0 0.0460 +0 0.1250 +0 0.2538 +0 0.7452 +0 0.2027 +0 0.2079 +1 0.7967 +0 0.7074 +0 0.1592 +0 0.1488 +0 0.6198 +0 0.1116 +0 0.0824 +0 0.0563 +0 0.2851 +0 0.0411 +0 0.1181 +0 0.1135 +0 0.1112 +0 0.0908 +0 0.1799 +0 0.1849 +0 0.0525 +0 0.2545 +0 0.1905 +0 0.1451 +0 0.1087 +0 0.0987 +0 0.1073 +0 0.1262 +0 0.0428 +0 0.6684 +0 0.1674 +0 0.1344 +0 0.0529 +0 0.1488 +0 0.2293 +0 0.1394 +0 0.0640 +0 0.0949 +0 0.6058 +0 0.0884 +0 0.3872 +0 0.0898 +0 0.0572 +0 0.1561 +0 0.1151 +0 0.0598 +0 0.0817 +0 0.2286 +0 0.0765 +1 0.8305 +0 0.1640 +0 0.0490 +0 0.0946 +1 0.8529 +0 0.0799 +0 0.0960 +0 0.0833 +0 0.1151 +0 0.0838 +0 0.1164 +0 0.2364 +0 0.1227 +0 0.1018 +0 0.0892 +0 0.0746 +0 0.1504 +0 0.2671 +0 0.1225 +0 0.0348 +0 0.0961 +0 0.2851 +0 0.0778 +0 0.1325 +0 0.1032 +0 0.0797 +0 0.1979 +0 0.1271 +0 0.1897 +0 0.1823 +0 0.0892 +0 0.0819 +0 0.3798 +0 0.0711 +0 0.0931 +0 0.0490 +0 0.0990 +0 0.2646 +0 0.1014 +1 0.7738 +0 0.1082 +0 0.0577 +0 0.0484 +0 0.1037 +0 0.2858 +0 0.1704 +0 0.0529 +0 0.1922 +0 0.1217 +0 0.1257 +0 0.0816 +0 0.1216 +0 0.1069 +0 0.1361 +0 0.1389 +0 0.0579 +0 0.1629 +0 0.1122 +0 0.0784 +0 0.2081 +0 0.1233 +0 0.2321 +0 0.1821 +0 0.0717 +0 0.1148 +0 0.0756 +0 0.6037 +0 0.1094 +0 0.0662 +0 0.1426 +0 0.1127 +0 0.2080 +0 0.1899 +0 0.1162 +0 0.2259 +0 0.0440 +0 0.1043 +0 0.0720 +0 0.1080 +0 0.0882 +0 0.2420 +0 0.1547 +0 0.0399 +0 0.1149 +0 0.0921 +0 0.2123 +0 0.0658 +0 0.1459 +0 0.1102 +0 0.2698 +0 0.1265 +0 0.1001 +0 0.0752 +0 0.0983 +0 0.1520 +0 0.1749 +0 0.1613 +0 0.1221 +0 0.1304 +0 0.1461 +0 0.0900 +0 0.1137 +0 0.0852 +0 0.6912 +0 0.1728 +0 0.2098 +0 0.0802 +0 0.0714 +0 0.1453 +0 0.0871 +0 0.0787 +0 0.5345 +0 0.1367 +0 0.1024 +0 0.3318 +0 0.6618 +0 0.2758 +0 0.0683 +0 0.1125 +0 0.0844 +0 0.0762 +0 0.0597 +0 0.1011 +0 0.2809 +0 0.0587 +0 0.3357 +0 0.1475 +0 0.1932 +0 0.1736 +0 0.1787 +0 0.1401 +0 0.1216 +0 0.4476 +0 0.1063 +0 0.0772 +0 0.1693 +0 0.2668 +0 0.1303 +1 0.8268 +0 0.1125 +0 0.0982 +0 0.0872 +0 0.0927 +0 0.1542 +0 0.2051 +0 0.2980 +0 0.0728 +0 0.2214 +0 0.1079 +0 0.0763 +0 0.0758 +0 0.6305 +0 0.3182 +0 0.0829 +0 0.0553 +0 0.1752 +0 0.0806 +0 0.1077 +0 0.0690 +0 0.0738 +0 0.1295 +0 0.1457 +0 0.0951 +0 0.0750 +0 0.1264 +0 0.2486 +0 0.1162 +0 0.0499 +0 0.0800 +0 0.6582 +0 0.1255 +0 0.2640 +0 0.1178 +0 0.0855 +0 0.1104 +0 0.1082 +1 0.8562 +0 0.1022 +0 0.0391 +0 0.1775 +0 0.0885 +0 0.0933 +0 0.1000 +0 0.0809 +0 0.1198 +0 0.1160 +0 0.1378 +0 0.3726 +0 0.0338 +0 0.1021 +0 0.2171 +0 0.1818 +0 0.0991 +0 0.1260 +0 0.1133 +0 0.0778 +0 0.0747 +0 0.0971 +0 0.0783 +0 0.3208 +0 0.1168 +0 0.1303 +0 0.1095 +0 0.0558 +0 0.4051 +0 0.0778 +0 0.0909 +0 0.1492 +0 0.1282 +0 0.1996 +0 0.1191 +0 0.0757 +0 0.0803 +0 0.0891 +0 0.2136 +0 0.0561 +1 0.8426 +0 0.3233 +0 0.0484 +0 0.1411 +0 0.1018 +0 0.0761 +0 0.0857 +0 0.0588 +0 0.1261 +0 0.2889 +0 0.0884 +0 0.6709 +0 0.2221 +0 0.1447 +0 0.0610 +1 0.7809 +0 0.0820 +0 0.0750 +0 0.2886 +0 0.7285 +0 0.0780 +0 0.2537 +0 0.0325 +0 0.0790 +0 0.1608 +0 0.1178 +0 0.1323 +0 0.2660 +0 0.3143 +0 0.0789 +0 0.1574 +0 0.0482 +0 0.2212 +0 0.1424 +0 0.2755 +0 0.2019 +0 0.0763 +0 0.0924 +0 0.0760 +0 0.0474 +0 0.0742 +0 0.1067 +0 0.1713 +0 0.1369 +0 0.3119 +0 0.1412 +0 0.1228 +0 0.1443 +0 0.0543 +0 0.0681 +0 0.1596 +0 0.0790 +0 0.1051 +0 0.0691 +0 0.0590 +0 0.0805 +0 0.3209 +0 0.2265 +0 0.1251 +0 0.2149 +0 0.0589 +0 0.2108 +0 0.1403 +0 0.1247 +0 0.1493 +0 0.1091 +0 0.0810 +0 0.1079 +1 0.7668 +0 0.6434 +0 0.0590 +0 0.0401 +0 0.0654 +0 0.0689 +0 0.1145 +0 0.3333 +0 0.0768 +0 0.0783 +0 0.6655 +0 0.0752 +0 0.3379 +0 0.1033 +0 0.1421 +0 0.1010 +0 0.0652 +0 0.2652 +0 0.2831 +0 0.3859 +0 0.0675 +0 0.1487 +0 0.0774 +0 0.0786 +0 0.0575 +0 0.0436 +0 0.3021 +0 0.0999 +0 0.3278 +0 0.2556 +0 0.0696 +0 0.1273 +0 0.2249 +0 0.5100 +0 0.0785 +0 0.0434 +0 0.2196 +0 0.0913 +0 0.0667 +0 0.0955 +0 0.2263 +0 0.0942 +0 0.1064 +0 0.0548 +0 0.0896 +0 0.0812 +0 0.2132 +0 0.0531 +0 0.1391 +0 0.0891 +0 0.0717 +0 0.0626 +0 0.0860 +0 0.1150 +0 0.6015 +0 0.2827 +0 0.1157 +0 0.0979 +0 0.1900 +0 0.2532 +0 0.0913 +0 0.2324 +0 0.6350 +0 0.1646 +0 0.3672 +0 0.0507 +0 0.0440 +0 0.0425 +0 0.1297 +0 0.3366 +0 0.0785 +0 0.0620 +0 0.1197 +0 0.0505 +0 0.1505 +0 0.2413 +0 0.1764 +0 0.0811 +0 0.3182 +0 0.2124 +0 0.2122 +0 0.0802 +0 0.0783 +0 0.1552 +0 0.0478 +0 0.0850 +0 0.0858 +0 0.0746 +0 0.0448 +0 0.1218 +1 0.7659 +0 0.0727 +0 0.0999 +0 0.1135 +0 0.0873 +0 0.2219 +0 0.0525 +0 0.1177 +0 0.0578 +0 0.2071 +0 0.0717 +0 0.1289 +0 0.0674 +0 0.1659 +0 0.1055 +0 0.0740 +0 0.0531 +0 0.0464 +0 0.0766 +0 0.5318 +0 0.1569 +0 0.1462 +0 0.1376 +0 0.1354 +0 0.0640 +0 0.0686 +0 0.5609 +0 0.1097 +0 0.1973 +0 0.1536 +0 0.0917 +0 0.0645 +0 0.0799 +0 0.1048 +0 0.0753 +0 0.5014 +0 0.1112 +0 0.3200 +0 0.1294 +0 0.1366 +0 0.1865 +0 0.0587 +0 0.2134 +0 0.1547 +0 0.0864 +0 0.4315 +0 0.1542 +0 0.1064 +0 0.0938 +0 0.2690 +0 0.0802 +0 0.0841 +0 0.0313 +0 0.0535 +0 0.1045 +0 0.0858 +0 0.0748 +0 0.1564 +0 0.0936 +0 0.3558 +1 0.8192 +0 0.0655 +0 0.0811 +0 0.5257 +0 0.0338 +0 0.0866 +0 0.1700 +0 0.1066 +0 0.1656 +0 0.1398 +0 0.0680 +0 0.0706 +0 0.0589 +0 0.2701 +0 0.0441 +0 0.0516 +0 0.2172 +0 0.1837 +0 0.0729 +0 0.2317 +0 0.0505 +0 0.0700 +0 0.0557 +0 0.1144 +0 0.2047 +0 0.1403 +0 0.0603 +0 0.1832 +0 0.1100 +0 0.0508 +0 0.1429 +0 0.0987 +0 0.0790 +0 0.1110 +0 0.1487 +0 0.0560 +0 0.1191 +0 0.1646 +0 0.0804 +0 0.0890 +0 0.0631 +0 0.0842 +0 0.3912 +0 0.0497 +0 0.0959 +0 0.0752 +0 0.0795 +0 0.0925 +0 0.2716 +0 0.1882 +0 0.1684 +0 0.2566 +0 0.2558 +0 0.0711 +0 0.0445 +0 0.1520 +0 0.0933 +0 0.0441 +0 0.0398 +0 0.3339 +0 0.1054 +0 0.1657 +0 0.1306 +0 0.1054 +0 0.2467 +0 0.1241 +0 0.2110 +0 0.1831 +0 0.0540 +0 0.0908 +0 0.0588 +0 0.2226 +0 0.2816 +0 0.1009 +0 0.2446 +0 0.2065 +0 0.0567 +0 0.4980 +0 0.1172 +0 0.0503 +0 0.1594 +0 0.0411 +0 0.1257 +0 0.1333 +0 0.0615 +0 0.0434 +0 0.1336 +0 0.1218 +0 0.0640 +0 0.0382 +0 0.1606 +0 0.0801 +0 0.0808 +0 0.1304 +0 0.1184 +0 0.3597 +0 0.1022 +0 0.0507 +0 0.1612 +0 0.0543 +0 0.1357 +0 0.1740 +0 0.1879 +0 0.0502 +0 0.0938 +0 0.0454 +0 0.0951 +0 0.0819 +0 0.0932 +0 0.0790 +0 0.0674 +0 0.0396 +0 0.0658 +0 0.2764 +0 0.2544 +0 0.1038 +0 0.1960 +0 0.2331 +0 0.2043 +0 0.2326 +0 0.5682 +0 0.0366 +0 0.1606 +0 0.4225 +0 0.2521 +0 0.1683 +0 0.0574 +0 0.1319 +0 0.1237 +0 0.1117 +0 0.0574 +0 0.1121 +0 0.1324 +0 0.0637 +0 0.0371 +0 0.0761 +0 0.2106 +0 0.0621 +0 0.0725 +0 0.1364 +0 0.1537 +0 0.0960 +0 0.0747 +0 0.0815 +0 0.6069 +0 0.2430 +0 0.0774 +0 0.0864 +0 0.1209 +0 0.1814 +0 0.1150 +0 0.1207 +0 0.0746 +0 0.2070 +0 0.1162 +0 0.0920 +0 0.0820 +0 0.0876 +0 0.1654 +0 0.0681 +0 0.1571 +0 0.2124 +0 0.0655 +0 0.0540 +0 0.0717 +0 0.0403 +0 0.0703 +0 0.1343 +0 0.0611 +0 0.1614 +0 0.0488 +0 0.0569 +0 0.1705 +0 0.0650 +0 0.0783 +0 0.0919 +0 0.1202 +0 0.1177 +0 0.0829 +0 0.1433 +0 0.2499 +0 0.1495 +0 0.1061 +0 0.0736 +0 0.0737 +0 0.1139 +0 0.1093 +0 0.0458 +0 0.1124 +0 0.1577 +0 0.0958 +0 0.1266 +0 0.1602 +0 0.1300 +0 0.0781 +0 0.0926 +0 0.0649 +0 0.1467 +0 0.0737 +0 0.0640 +0 0.0554 +0 0.2342 +0 0.1148 +0 0.1244 +0 0.1124 +0 0.1229 +0 0.1608 +0 0.0897 +0 0.0963 +0 0.0934 +0 0.0598 +0 0.0959 +0 0.0524 +0 0.1941 +0 0.1062 +0 0.1834 +0 0.1724 +0 0.0359 +0 0.1678 +0 0.0517 +0 0.0616 +0 0.0874 +0 0.1727 +0 0.1392 +0 0.0792 +0 0.0712 +0 0.2048 +0 0.0944 +0 0.0401 +0 0.2604 +0 0.0598 +0 0.0886 +0 0.0919 +0 0.1071 +0 0.0812 +0 0.0393 +0 0.0801 +0 0.2201 +0 0.1817 +0 0.0833 +0 0.1374 +0 0.0681 +0 0.1244 +0 0.0892 +0 0.1257 +0 0.4024 +0 0.1282 +0 0.0951 +0 0.0805 +0 0.0772 +0 0.1953 +0 0.0521 +0 0.1178 +0 0.0788 +0 0.0403 +0 0.3287 +0 0.0668 +0 0.1185 +0 0.1257 +0 0.2336 +0 0.0879 +0 0.0470 +0 0.1181 +0 0.1138 +0 0.2202 +0 0.1472 +0 0.1115 +0 0.0798 +0 0.2608 +0 0.1347 +0 0.0997 +0 0.0607 +0 0.0629 +0 0.0972 +0 0.6550 +1 0.7695 +0 0.1106 +0 0.0755 +0 0.1629 +0 0.1043 +0 0.1174 +0 0.2827 +0 0.4911 +0 0.1897 +0 0.0822 +0 0.0493 +0 0.0453 +0 0.0993 +0 0.0575 +0 0.1428 +0 0.3684 +0 0.1551 +0 0.0708 +0 0.0862 +0 0.1993 +0 0.1314 +0 0.0463 +0 0.0552 +0 0.1789 +0 0.0864 +0 0.0411 +0 0.1073 +0 0.1000 +0 0.0836 +0 0.0922 +0 0.0895 +0 0.0564 +0 0.1036 +0 0.0853 +0 0.0732 +0 0.2376 +0 0.1011 +0 0.1019 +0 0.0675 +0 0.0759 +0 0.0629 +0 0.0775 +0 0.0881 +0 0.0752 +0 0.1675 +0 0.0817 +0 0.5078 +0 0.1989 +0 0.1503 +0 0.1555 +0 0.0602 +0 0.0930 +0 0.0580 +0 0.1038 +0 0.1724 +0 0.1976 +0 0.0552 +0 0.0941 +0 0.5117 +0 0.1235 +0 0.0954 +0 0.1497 +0 0.0654 +0 0.1617 +0 0.0507 +0 0.0640 +1 0.8338 +0 0.0560 +0 0.3234 +0 0.1221 +0 0.0461 +0 0.0513 +0 0.1210 +0 0.0834 +0 0.3387 +0 0.0603 +0 0.4118 +0 0.0504 +0 0.0616 +0 0.1681 +0 0.0643 +0 0.3997 +0 0.2572 +0 0.0613 +0 0.0655 +0 0.0965 +0 0.1533 +0 0.1282 +0 0.0774 +0 0.0841 +0 0.0923 +0 0.0514 +0 0.1194 +0 0.1093 +0 0.5639 +0 0.0674 +0 0.0353 +0 0.1424 +0 0.2107 +0 0.1538 +0 0.1053 +0 0.3445 +0 0.1038 +0 0.0544 +0 0.0845 +0 0.0744 +0 0.7152 +0 0.0487 +0 0.1026 +0 0.1132 +0 0.3394 +0 0.1844 +0 0.1753 +0 0.0375 +0 0.1018 +0 0.1213 +0 0.5270 +0 0.0737 +0 0.0793 +0 0.0795 +0 0.0673 +0 0.0796 +0 0.1014 +0 0.2318 +0 0.2002 +0 0.0637 +0 0.0513 +0 0.3822 +0 0.0370 +0 0.0954 +0 0.1334 +0 0.2941 +0 0.6294 +0 0.5076 +0 0.0902 +0 0.1706 +0 0.2177 +0 0.4029 +0 0.1172 +0 0.0535 +0 0.2730 +0 0.0647 +1 0.7694 +0 0.3586 +0 0.1118 +0 0.0952 +0 0.0777 +0 0.2220 +0 0.0687 +0 0.0712 +0 0.0470 +0 0.1657 +0 0.1609 +0 0.0395 +0 0.1111 +0 0.1005 +0 0.1468 +0 0.0657 +0 0.1270 +0 0.0898 +0 0.0631 +0 0.1416 +0 0.2106 +0 0.0339 +0 0.0892 +0 0.1950 +0 0.0860 +0 0.0641 +0 0.0864 +0 0.1831 +0 0.3122 +0 0.0619 +0 0.0567 +0 0.1178 +0 0.1368 +0 0.0529 +0 0.6296 +0 0.0526 +0 0.0565 +0 0.5957 +0 0.0355 +0 0.0646 +0 0.0697 +0 0.0714 +0 0.1211 +0 0.1486 +0 0.0954 +0 0.1207 +0 0.2539 +0 0.1473 +0 0.0516 +0 0.0905 +0 0.1017 +0 0.0480 +0 0.2593 +0 0.7308 +0 0.0718 +0 0.1082 +0 0.0770 +0 0.1546 +0 0.2132 +0 0.3348 +0 0.0903 +0 0.0403 +0 0.2368 +0 0.0474 +0 0.0988 +0 0.3174 +0 0.0303 +0 0.1460 +0 0.1548 +0 0.1837 +0 0.3288 +0 0.0837 +0 0.4168 +0 0.2352 +0 0.1125 +1 0.8905 +0 0.0497 +0 0.3217 +0 0.1419 +0 0.0655 +0 0.5569 +0 0.0871 +0 0.1111 +0 0.0595 +0 0.0697 +0 0.0510 +0 0.1319 +0 0.0771 +0 0.2123 +0 0.5320 +0 0.0522 +0 0.0457 +0 0.1490 +0 0.2395 +0 0.0572 +0 0.1643 +0 0.1308 +1 0.8480 +0 0.1388 +0 0.2972 +0 0.2046 +0 0.1549 +0 0.0463 +0 0.0789 +0 0.1322 +0 0.0653 +0 0.0591 +0 0.0663 +0 0.2294 +1 0.7563 +0 0.1452 +0 0.0407 +0 0.1789 +0 0.0446 +0 0.2282 +0 0.2012 +0 0.1094 +0 0.0579 +0 0.0849 +0 0.1777 +0 0.0524 +0 0.1801 +0 0.1409 +0 0.1061 +0 0.3538 +0 0.2129 +0 0.1655 +0 0.1277 +0 0.0433 +0 0.0824 +0 0.1206 +0 0.1422 +0 0.1053 +0 0.0919 +0 0.6804 +0 0.1458 +0 0.0985 +0 0.1389 +0 0.2698 +0 0.6437 +0 0.0659 +0 0.3623 +0 0.0881 +0 0.1406 +0 0.1098 +0 0.1216 +0 0.1128 +0 0.0849 +0 0.0702 +0 0.7133 +0 0.0654 +0 0.1045 +1 0.8989 +0 0.1448 +0 0.0897 +0 0.0608 +0 0.4098 +0 0.2384 +0 0.0771 +0 0.1003 +0 0.1391 +0 0.0924 +0 0.0428 +0 0.0744 +0 0.0868 +0 0.0670 +0 0.1261 +0 0.0925 +0 0.1192 +0 0.4306 +0 0.1221 +0 0.4062 +0 0.0614 +0 0.0754 +0 0.0629 +0 0.0815 +0 0.0805 +0 0.0440 +0 0.1326 +0 0.1033 +0 0.0660 +0 0.0818 +0 0.0629 +0 0.1140 +0 0.2079 +0 0.0447 +0 0.0336 +0 0.3703 +0 0.0734 +0 0.0836 +0 0.0802 +0 0.0907 +0 0.1745 +0 0.0913 +0 0.1034 +0 0.2007 +0 0.1116 +0 0.6714 +0 0.0454 +0 0.0897 +0 0.0752 +0 0.0366 +0 0.1891 +0 0.0713 +0 0.0475 +0 0.0384 +0 0.0534 +0 0.0610 +0 0.0856 +0 0.0790 +0 0.1050 +0 0.0818 +0 0.0562 +0 0.0578 +0 0.0519 +0 0.1941 +0 0.0935 +0 0.0959 +0 0.1137 +0 0.1014 +0 0.3723 +0 0.0677 +0 0.0445 +0 0.3080 +0 0.1018 +0 0.0784 +0 0.2838 +0 0.1321 +0 0.1110 +0 0.1110 +0 0.0948 +0 0.2918 +0 0.0796 +0 0.0749 +0 0.2028 +0 0.0834 +0 0.0476 +0 0.0420 +0 0.0816 +0 0.1576 +0 0.1047 +0 0.1011 +0 0.0743 +0 0.1167 +0 0.1283 +0 0.1307 +0 0.1926 +0 0.1430 +0 0.2350 +0 0.0669 +0 0.1111 +0 0.1723 +0 0.0955 +0 0.1390 +0 0.2054 +0 0.1773 +0 0.0684 +0 0.1475 +0 0.0950 +0 0.0808 +0 0.0879 +0 0.2201 +0 0.1551 +0 0.1218 +0 0.0286 +0 0.6908 +0 0.1284 +0 0.0978 +0 0.1082 +0 0.0565 +0 0.1096 +0 0.0601 +0 0.1109 +0 0.1137 +0 0.1080 +0 0.2041 +0 0.3478 +0 0.0817 +0 0.0902 +0 0.0968 +0 0.0560 +0 0.0573 +0 0.1196 +0 0.2169 +0 0.2195 +0 0.1236 +0 0.1038 +0 0.0869 +0 0.0846 +0 0.0607 +0 0.1196 +0 0.1382 +0 0.0362 +0 0.0933 +0 0.0882 +0 0.1891 +0 0.0588 +0 0.1152 +0 0.1788 +0 0.1007 +0 0.0394 +0 0.0856 +0 0.1284 +0 0.0794 +0 0.1024 +1 0.8230 +0 0.1721 +0 0.0618 +0 0.0914 +0 0.0940 +0 0.1380 +0 0.2153 +0 0.1177 +0 0.6370 +0 0.1889 +0 0.0819 +0 0.1525 +0 0.0406 +0 0.0662 +0 0.1512 +0 0.0547 +0 0.1190 +0 0.1163 +0 0.0508 +0 0.0930 +0 0.2585 +0 0.0638 +0 0.0920 +0 0.1013 +0 0.1047 +0 0.0704 +0 0.0770 +0 0.0664 +0 0.0544 +1 0.8418 +0 0.1040 +0 0.1922 +0 0.1378 +0 0.1207 +0 0.0852 +0 0.4572 +0 0.1401 +0 0.0430 +0 0.0951 +0 0.1247 +0 0.0690 +0 0.1297 +0 0.1929 +0 0.1674 +1 0.7915 +0 0.1027 +0 0.1094 +0 0.0853 +0 0.0581 +0 0.0881 +0 0.0830 +0 0.3320 +0 0.1406 +0 0.2657 +0 0.0451 +0 0.0924 +0 0.1045 +0 0.1151 +0 0.0945 +0 0.1073 +0 0.1845 +0 0.1238 +0 0.0814 +0 0.1348 +0 0.2242 +0 0.1492 +0 0.1273 +0 0.0790 +0 0.0718 +0 0.0811 +0 0.2683 +0 0.1777 +0 0.5453 +1 0.8421 +0 0.0667 +0 0.0340 +0 0.2323 +0 0.1780 +0 0.2249 +0 0.0763 +0 0.0705 +0 0.1132 +0 0.0885 +1 0.8491 +0 0.2424 +0 0.1732 +0 0.1358 +0 0.0627 +0 0.1426 +0 0.0940 +0 0.0596 +0 0.3543 +0 0.1836 +0 0.0946 +0 0.0475 +0 0.1177 +0 0.0732 +0 0.0722 +0 0.1401 +0 0.0646 +0 0.1880 +0 0.1583 +0 0.0453 +0 0.0764 +0 0.1192 +0 0.5915 +0 0.4435 +0 0.1103 +0 0.1310 +0 0.0882 +0 0.1055 +0 0.0802 +0 0.1104 +0 0.1053 +0 0.0414 +0 0.1750 +0 0.0993 +0 0.4923 +0 0.0753 +0 0.1123 +0 0.1497 +0 0.0907 +0 0.1120 +0 0.0862 +0 0.1535 +0 0.1309 +0 0.1130 +0 0.0306 +0 0.1870 +0 0.0488 +0 0.2669 +0 0.0568 +0 0.0982 +0 0.0553 +0 0.0903 +0 0.0623 +0 0.1149 +0 0.4198 +0 0.5237 +0 0.0516 +0 0.0514 +0 0.2287 +0 0.0791 +0 0.0876 +0 0.2607 +0 0.0774 +0 0.0412 +0 0.1354 +0 0.1100 +0 0.3450 +0 0.0605 +0 0.0658 +0 0.5213 +0 0.0732 +0 0.0772 +0 0.1167 +0 0.0902 +0 0.0638 +0 0.0536 +0 0.1728 +0 0.0587 +0 0.0458 +0 0.2377 +0 0.0859 +0 0.2516 +0 0.0946 +0 0.1476 +0 0.2154 +0 0.0886 +0 0.1135 +0 0.1551 +0 0.0502 +0 0.4348 +1 0.7592 +0 0.0557 +0 0.1672 +0 0.1087 +0 0.1974 +0 0.0344 +0 0.2476 +0 0.0601 +0 0.1269 +0 0.0936 +0 0.0718 +0 0.4282 +0 0.2331 +0 0.1067 +0 0.0597 +0 0.5487 +0 0.2002 +0 0.2031 +0 0.1378 +0 0.0975 +0 0.1311 +0 0.2662 +0 0.0943 +0 0.0477 +0 0.1217 +0 0.1339 +0 0.1320 +0 0.0818 +0 0.1201 +0 0.1009 +0 0.1273 +0 0.0413 +0 0.2153 +1 0.8484 +0 0.0924 +0 0.1413 +0 0.6649 +0 0.1369 +0 0.0550 +0 0.0595 +0 0.1437 +0 0.2066 +0 0.5699 +0 0.1299 +0 0.0610 +0 0.1639 +0 0.0811 +0 0.0812 +0 0.0862 +0 0.1390 +0 0.0727 +0 0.0729 +0 0.0831 +0 0.1202 +0 0.0751 +0 0.0975 +0 0.7012 +0 0.1671 +0 0.0705 +0 0.0853 +0 0.0942 +0 0.0701 +0 0.0505 +0 0.0572 +0 0.0802 +0 0.0597 +1 0.7871 +0 0.6309 +0 0.1273 +0 0.1249 +0 0.1232 +0 0.0672 +0 0.3659 +0 0.1832 +0 0.1064 +0 0.1688 +0 0.5978 +0 0.1127 +1 0.8347 +0 0.3580 +0 0.2013 +0 0.2121 +0 0.6109 +0 0.1563 +0 0.1669 +0 0.0550 +0 0.0450 +0 0.1993 +0 0.1183 +0 0.1735 +0 0.1006 +0 0.1627 +0 0.0706 +0 0.0862 +0 0.0757 +0 0.1770 +0 0.0671 +0 0.0632 +0 0.2590 +0 0.1027 +1 0.8608 +0 0.1067 +0 0.0719 +0 0.0791 +0 0.1403 +0 0.0428 +0 0.0754 +0 0.0897 +0 0.2510 +0 0.4301 +0 0.0694 +0 0.1238 +0 0.0670 +0 0.2890 +0 0.7427 +0 0.1155 +0 0.0862 +0 0.0871 +0 0.0917 +0 0.1288 +0 0.1794 +0 0.6894 +0 0.0888 +0 0.2439 +0 0.0551 +0 0.0765 +0 0.2045 +0 0.1389 +0 0.1447 +0 0.1682 +0 0.4426 +0 0.0552 +0 0.0949 +0 0.1839 +0 0.3540 +0 0.0746 +0 0.0683 +0 0.2419 +0 0.0861 +0 0.5733 +0 0.0471 +0 0.2314 +0 0.0576 +0 0.0489 +0 0.1631 +0 0.1620 +0 0.0813 +0 0.1046 +0 0.0508 +0 0.1498 +0 0.1283 +0 0.0530 +0 0.0324 +0 0.1629 +0 0.0735 +0 0.2146 +0 0.1788 +0 0.0554 +0 0.0992 +0 0.0905 +0 0.1949 +0 0.0576 +0 0.1116 +0 0.0621 +0 0.0440 +0 0.0637 +0 0.0665 +0 0.0732 +0 0.0492 +0 0.1329 +0 0.2117 +0 0.0647 +0 0.1148 +0 0.0523 +0 0.0875 +0 0.0884 +0 0.0316 +0 0.0706 +0 0.0930 +0 0.0557 +0 0.1376 +0 0.1112 +0 0.0423 +0 0.1715 +0 0.2051 +0 0.0610 +0 0.0437 +0 0.1337 +0 0.2018 +0 0.0871 +0 0.1786 +0 0.1124 +0 0.1442 +0 0.0811 +0 0.3939 +0 0.2118 +0 0.0630 +0 0.0934 +0 0.1924 +0 0.1047 +0 0.3107 +0 0.5281 +0 0.2412 +0 0.4070 +0 0.1085 +0 0.1018 +0 0.1213 +0 0.0434 +0 0.0611 +0 0.1554 +0 0.0984 +0 0.1046 +0 0.0571 +1 0.7977 +0 0.0453 +0 0.0775 +0 0.0733 +0 0.0708 +0 0.1394 +0 0.0666 +0 0.1928 +0 0.0990 +0 0.0776 +0 0.1121 +0 0.1176 +0 0.0915 +0 0.1102 +0 0.0878 +0 0.0531 +0 0.0464 +0 0.2456 +0 0.0717 +0 0.0628 +0 0.1512 +0 0.2415 +0 0.0812 +0 0.0542 +0 0.2620 +0 0.1577 +0 0.1028 +0 0.0844 +0 0.1385 +0 0.1135 +0 0.0695 +0 0.1436 +0 0.1532 +0 0.0846 +0 0.2529 +0 0.1583 +0 0.1165 +0 0.1044 +0 0.0872 +0 0.1347 +0 0.0349 +0 0.0571 +0 0.0567 +0 0.1063 +0 0.2549 +0 0.1961 +0 0.0726 +0 0.2493 +0 0.0926 +0 0.1712 +0 0.1660 +0 0.1063 +0 0.0995 +0 0.1390 +0 0.0772 +0 0.1081 +0 0.1620 +0 0.3096 +0 0.2899 +0 0.1460 +0 0.2169 +0 0.0565 +0 0.0583 +0 0.0841 +0 0.3044 +0 0.0829 +0 0.0398 +0 0.1298 +0 0.1246 +0 0.6767 +0 0.1539 +0 0.0803 +0 0.1322 +1 0.8492 +0 0.1655 +0 0.0526 +0 0.1431 +0 0.0825 +0 0.1293 +0 0.0917 +0 0.1153 +0 0.0857 +0 0.1170 +0 0.1314 +0 0.0908 +0 0.1622 +0 0.0647 +0 0.3543 +0 0.0949 +1 0.7522 +0 0.1304 +0 0.0738 +0 0.1443 +0 0.0672 +0 0.3990 +0 0.1179 +0 0.1374 +0 0.0520 +0 0.1522 +0 0.0489 +0 0.1694 +0 0.1480 +0 0.0800 +0 0.1977 +0 0.3002 +0 0.0707 +0 0.3098 +0 0.0741 +0 0.0365 +0 0.1029 +0 0.1013 +0 0.0626 +0 0.1304 +0 0.0931 +0 0.1006 +0 0.1001 +0 0.0383 +0 0.0732 +0 0.2347 +0 0.1213 +0 0.1255 +0 0.0843 +0 0.2479 +0 0.2888 +0 0.0547 +0 0.0870 +0 0.1061 +0 0.2465 +0 0.1996 +1 0.7837 +0 0.1569 +0 0.1476 +0 0.7352 +0 0.0843 +1 0.8014 +0 0.0891 +0 0.0683 +0 0.0729 +0 0.0760 +0 0.0786 +0 0.0661 +0 0.1783 +0 0.1029 +0 0.0933 +0 0.3484 +0 0.0783 +0 0.2526 +0 0.1534 +1 0.8286 +0 0.1348 +0 0.3777 +0 0.0725 +0 0.1123 +0 0.1350 +0 0.0614 +0 0.0954 +0 0.5387 +0 0.1652 +0 0.0692 +0 0.1732 +0 0.1083 +0 0.1565 +0 0.0854 +0 0.0404 +0 0.0305 +0 0.0996 +0 0.0735 +0 0.2311 +0 0.2285 +0 0.1461 +0 0.2130 +0 0.0585 +0 0.1494 +0 0.2144 +0 0.0963 +0 0.0876 +0 0.0753 +0 0.0800 +0 0.0468 +0 0.1281 +0 0.1008 +0 0.0881 +0 0.0960 +0 0.1847 +0 0.1149 +0 0.0917 +0 0.0869 +0 0.0810 +0 0.5923 +0 0.1982 +0 0.0367 +0 0.2631 +0 0.1119 +0 0.1411 +0 0.1348 +0 0.0387 +0 0.1069 +0 0.0888 +0 0.0968 +0 0.0352 +0 0.1246 +0 0.0738 +0 0.1049 +0 0.0546 +0 0.0712 +0 0.1042 +0 0.1250 +0 0.1024 +0 0.1156 +0 0.1015 +0 0.1134 +0 0.1064 +0 0.1288 +0 0.0738 +0 0.2569 +0 0.3038 +0 0.2232 +0 0.1086 +0 0.0797 +0 0.0894 +0 0.1345 +0 0.0852 +0 0.2787 +0 0.1902 +0 0.0646 +0 0.1030 +0 0.1560 +0 0.2862 +0 0.2441 +0 0.0514 +0 0.3092 +0 0.0554 +0 0.1495 +0 0.4928 +0 0.1863 +1 0.7760 +0 0.1330 +0 0.1039 +0 0.0744 +0 0.0963 +0 0.2827 +0 0.1013 +0 0.0643 +0 0.0765 +0 0.0782 +0 0.2840 +0 0.0938 +0 0.0477 +0 0.2903 +0 0.0904 +0 0.0977 +0 0.2487 +0 0.1695 +0 0.0750 +0 0.1456 +0 0.1106 +0 0.0513 +0 0.0801 +0 0.1799 +0 0.0673 +0 0.1346 +0 0.1002 +0 0.1158 +0 0.0521 +0 0.1400 +0 0.0619 +0 0.0418 +0 0.1671 +0 0.0792 +0 0.0913 +0 0.1480 +0 0.0763 +0 0.1152 +0 0.0572 +0 0.1715 +0 0.0589 +0 0.5103 +0 0.2759 +0 0.1197 +0 0.1484 +0 0.0818 +0 0.0589 +0 0.1278 +0 0.0812 +0 0.1854 +0 0.0600 +0 0.1521 +0 0.0944 +0 0.0905 +0 0.0843 +0 0.1843 +0 0.0602 +0 0.0710 +0 0.0443 +0 0.2241 +0 0.0619 +0 0.1144 +0 0.0755 +0 0.1370 +0 0.1732 +0 0.1426 +0 0.0729 +0 0.1260 +0 0.0996 +0 0.1344 +0 0.1938 +0 0.1493 +0 0.2227 +0 0.2642 +0 0.0444 +0 0.1653 +0 0.2409 +0 0.1494 +0 0.0638 +0 0.0936 +0 0.0576 +0 0.0824 +0 0.0801 +0 0.2398 +0 0.0766 +0 0.1039 +0 0.0878 +0 0.2539 +0 0.0372 +0 0.1013 +0 0.0599 +0 0.2558 +0 0.1142 +0 0.2366 +0 0.0893 +0 0.2800 +0 0.7498 +0 0.1069 +0 0.1954 +0 0.0486 +0 0.1434 +0 0.0639 +0 0.3651 +0 0.1335 +0 0.0327 +0 0.1976 +0 0.1843 +0 0.3042 +0 0.2969 +0 0.4520 +0 0.1465 +0 0.2766 +0 0.1150 +0 0.0569 +0 0.0737 +0 0.0819 +0 0.1277 +0 0.1046 +0 0.3065 +0 0.1061 +0 0.2735 +0 0.1132 +0 0.0933 +0 0.3039 +0 0.1891 +0 0.1328 +0 0.3224 +0 0.1121 +0 0.1061 +0 0.0705 +0 0.0906 +0 0.1956 +0 0.0580 +0 0.0606 +0 0.1202 +0 0.0480 +0 0.0837 +0 0.2217 +0 0.0282 +0 0.0969 +0 0.1021 +0 0.0877 +0 0.0279 +0 0.2255 +0 0.1285 +0 0.1901 +0 0.3345 +1 0.7848 +0 0.1780 +0 0.1525 +0 0.0597 +0 0.1030 +0 0.0726 +0 0.1157 +0 0.5479 +0 0.1536 +0 0.0505 +0 0.0971 +0 0.0705 +0 0.0743 +0 0.0706 +0 0.1074 +0 0.1090 +0 0.1006 +0 0.6952 +0 0.0886 +0 0.0667 +0 0.0652 +0 0.0388 +0 0.1080 +0 0.0874 +0 0.1246 +0 0.0449 +0 0.1463 +0 0.0787 +1 0.8613 +0 0.0676 +0 0.1492 +0 0.1726 +0 0.0483 +0 0.0800 +0 0.1164 +0 0.1708 +0 0.1870 +0 0.0840 +0 0.1601 +0 0.1208 +0 0.5776 +0 0.1231 +0 0.2221 +0 0.2223 +0 0.0859 +0 0.1120 +0 0.1674 +0 0.1729 +0 0.1164 +0 0.1829 +0 0.0399 +0 0.1350 +0 0.0551 +0 0.1025 +0 0.1233 +0 0.0413 +0 0.1112 +0 0.0610 +0 0.1328 +0 0.1050 +0 0.1593 +0 0.0956 +0 0.5371 +0 0.2317 +0 0.1053 +0 0.0782 +0 0.1024 +0 0.0356 +0 0.1075 +0 0.1297 +0 0.0746 +0 0.1197 +0 0.0615 +0 0.2841 +0 0.1233 +0 0.7084 +0 0.0438 +0 0.0999 +0 0.4869 +0 0.1647 +0 0.2357 +0 0.2360 +0 0.0489 +0 0.4926 +0 0.1306 +0 0.0732 +0 0.0577 +0 0.1100 +0 0.2787 +0 0.0819 +0 0.0608 +0 0.0662 +0 0.1130 +0 0.6829 +0 0.1454 +0 0.1791 +0 0.1928 +1 0.8192 +0 0.3247 +0 0.1590 +0 0.0390 +0 0.1104 +0 0.2717 +0 0.0876 +0 0.0454 +0 0.1852 +0 0.1631 +0 0.1883 +0 0.0623 +0 0.2017 +0 0.1242 +0 0.1698 +0 0.0972 +0 0.1286 +0 0.0685 +0 0.0917 +0 0.0819 +0 0.1323 +0 0.0880 +0 0.0364 +0 0.0464 +0 0.0704 +0 0.0744 +0 0.1019 +0 0.1086 +0 0.0897 +0 0.1171 +0 0.2778 +0 0.3929 +0 0.0924 +0 0.0703 +0 0.0578 +0 0.2104 +0 0.3275 +0 0.1828 +0 0.1792 +0 0.0891 +0 0.1131 +0 0.0842 +0 0.0675 +0 0.1007 +0 0.1959 +0 0.2993 +0 0.0611 +0 0.1506 +0 0.0828 +0 0.0541 +0 0.1121 +0 0.1016 +1 0.8262 +0 0.0765 +0 0.1210 +0 0.0497 +0 0.0860 +0 0.0531 +0 0.0874 +0 0.0598 +0 0.0731 +0 0.4532 +0 0.0831 +0 0.0643 +0 0.1276 +0 0.2024 +0 0.1297 +0 0.0643 +0 0.0558 +0 0.3477 +0 0.0539 +0 0.1097 +0 0.1133 +0 0.1573 +0 0.0393 +0 0.2505 +0 0.0750 +0 0.1726 +0 0.0577 +0 0.0817 +0 0.1442 +0 0.0805 +0 0.1345 +0 0.6567 +0 0.1154 +0 0.0803 +0 0.0687 +0 0.1139 +0 0.1053 +0 0.0612 +0 0.0750 +0 0.1743 +0 0.0707 +0 0.4940 +0 0.0996 +0 0.2691 +0 0.0680 +0 0.0968 +0 0.1245 +0 0.0973 +0 0.1486 +0 0.1482 +0 0.1413 +0 0.0645 +0 0.1211 +0 0.3662 +0 0.0640 +0 0.0497 +0 0.1482 +0 0.0622 +0 0.2051 +0 0.0557 +0 0.0661 +0 0.1401 +0 0.0920 +0 0.5737 +0 0.1935 +0 0.0809 +0 0.1652 +0 0.0711 +0 0.6451 +0 0.0600 +0 0.2148 +0 0.0675 +0 0.4456 +0 0.2225 +0 0.1184 +0 0.0906 +0 0.1600 +0 0.1096 +0 0.1498 +0 0.0594 +1 0.8213 +0 0.1001 +0 0.0504 +0 0.1397 +0 0.0822 +0 0.0951 +0 0.2057 +0 0.1530 +0 0.1464 +0 0.1815 +0 0.1384 +0 0.1133 +0 0.0793 +0 0.2723 +0 0.0759 +0 0.1190 +0 0.0985 +0 0.1081 +0 0.1032 +0 0.7143 +0 0.1844 +0 0.1041 +0 0.0441 +0 0.0485 +0 0.0375 +0 0.2845 +0 0.2076 +0 0.0713 +0 0.0913 +0 0.1666 +0 0.1727 +0 0.2079 +0 0.0634 +0 0.1285 +0 0.2164 +0 0.2125 +0 0.1773 +0 0.0536 +0 0.1029 +0 0.1224 +0 0.1424 +0 0.0569 +0 0.0641 +0 0.1112 +0 0.1067 +0 0.1061 +0 0.0438 +0 0.1097 +0 0.1012 +0 0.2709 +0 0.1240 +0 0.0863 +1 0.8075 +0 0.1468 +0 0.1339 +0 0.0722 +0 0.0678 +0 0.3611 +0 0.2328 +0 0.0471 +0 0.3858 +0 0.1244 +0 0.0452 +0 0.0319 +0 0.0987 +0 0.0749 +0 0.0815 +0 0.2071 +0 0.0872 +0 0.0755 +0 0.1163 +0 0.1087 +0 0.0480 +0 0.1260 +0 0.2533 +0 0.4008 +0 0.1083 +0 0.1456 +0 0.0942 +0 0.0710 +0 0.0943 +0 0.5376 +0 0.1584 +0 0.0905 +0 0.2167 +0 0.2757 +0 0.0877 +0 0.0597 +0 0.1056 +0 0.0389 +0 0.0886 +0 0.1650 +0 0.0688 +0 0.0495 +0 0.1266 +0 0.0518 +0 0.0874 +0 0.0432 +0 0.0767 +0 0.1316 +0 0.1077 +0 0.0715 +0 0.0578 +0 0.0969 +0 0.1152 +0 0.1529 +0 0.2146 +0 0.0751 +0 0.1846 +0 0.1801 +0 0.0928 +0 0.0714 +0 0.2875 +0 0.0600 +0 0.0372 +0 0.0778 +0 0.1007 +0 0.0957 +0 0.1080 +0 0.1671 +0 0.0889 +0 0.0687 +0 0.0746 +0 0.3269 +0 0.0796 +0 0.2341 +0 0.0388 +0 0.0835 +0 0.0472 +0 0.2140 +1 0.7677 +0 0.3927 +0 0.1835 +0 0.0590 +0 0.0892 +0 0.0602 +0 0.2245 +0 0.5306 +0 0.0950 +0 0.0844 +0 0.1671 +0 0.2562 +0 0.1207 +0 0.0387 +0 0.1696 +0 0.0450 +0 0.1229 +0 0.0940 +0 0.0754 +0 0.2851 +0 0.6801 +0 0.0332 +0 0.1275 +1 0.8364 +0 0.1112 +0 0.1515 +0 0.3652 +0 0.0605 +0 0.1299 +0 0.0413 +0 0.0633 +0 0.0894 +0 0.1940 +0 0.0568 +0 0.1170 +0 0.7283 +0 0.0773 +0 0.2258 +0 0.1841 +0 0.0353 +0 0.1443 +0 0.0566 +0 0.0457 +0 0.0409 +0 0.1644 +0 0.0485 +0 0.2146 +0 0.0954 +0 0.2128 +0 0.1537 +0 0.0479 +0 0.1074 +0 0.0740 +0 0.2964 +0 0.2655 +0 0.1397 +0 0.1138 +0 0.2179 +0 0.0487 +0 0.1018 +0 0.0434 +0 0.0446 +0 0.0697 +0 0.0600 +0 0.4979 +0 0.0360 +0 0.1532 +0 0.1519 +0 0.0653 +0 0.5026 +0 0.1661 +0 0.1553 +0 0.1604 +0 0.2177 +0 0.6440 +0 0.0589 +0 0.0746 +0 0.1533 +0 0.0390 +0 0.0743 +0 0.0523 +0 0.1213 +0 0.0705 +0 0.1875 +0 0.0532 +0 0.3746 +0 0.0772 +0 0.2347 +0 0.1443 +0 0.0875 +0 0.2135 +0 0.0532 +0 0.0902 +0 0.0744 +0 0.1204 +0 0.1484 +0 0.1115 +0 0.1615 +0 0.1423 +0 0.0846 +0 0.1066 +0 0.0552 +0 0.1284 +0 0.0996 +0 0.0510 +0 0.2439 +0 0.1720 +0 0.0733 +0 0.0404 +0 0.1555 +0 0.1797 +0 0.2618 +0 0.1234 +0 0.1745 +0 0.0514 +0 0.0514 +0 0.1241 +0 0.0960 +0 0.2495 +0 0.2145 +0 0.0341 +0 0.0710 +0 0.1843 +0 0.0891 +0 0.1394 +0 0.0649 +0 0.0649 +0 0.0718 +1 0.8728 +0 0.1575 +0 0.0928 +0 0.1058 +0 0.0953 +0 0.0707 +0 0.0866 +0 0.0436 +0 0.1910 +0 0.2483 +0 0.1828 +0 0.1085 +0 0.0723 +0 0.0426 +0 0.0568 +0 0.0839 +0 0.0621 +0 0.1444 +0 0.1086 +0 0.0368 +0 0.2136 +0 0.2203 +0 0.1137 +0 0.1226 +0 0.0511 +0 0.0808 +0 0.0999 +0 0.1661 +0 0.1111 +0 0.0696 +0 0.1028 +0 0.1291 +0 0.2267 +0 0.0345 +0 0.1134 +0 0.2010 +0 0.4884 +0 0.1466 +0 0.0483 +0 0.0517 +0 0.1053 +0 0.0470 +0 0.0988 +0 0.0958 +0 0.0518 +0 0.1441 +0 0.0412 +0 0.0575 +0 0.0722 +0 0.0642 +0 0.1269 +0 0.0719 +0 0.5719 +0 0.2437 +1 0.7918 +0 0.1052 +0 0.3114 +0 0.0997 +0 0.0363 +0 0.0865 +0 0.0496 +0 0.1502 +0 0.0828 +0 0.0662 +0 0.1177 +0 0.1084 +0 0.0611 +0 0.1324 +0 0.0845 +0 0.0466 +0 0.0385 +0 0.0445 +0 0.0909 +0 0.1548 +0 0.1378 +0 0.0447 +0 0.1910 +0 0.2976 +0 0.0874 +0 0.1521 +0 0.1060 +0 0.0664 +0 0.0778 +0 0.0827 +0 0.1416 +0 0.1939 +0 0.0475 +0 0.1306 +0 0.1086 +0 0.0820 +0 0.1445 +0 0.1015 +0 0.1012 +0 0.0926 +0 0.2474 +0 0.1895 +0 0.1243 +0 0.0624 +0 0.0986 +0 0.0582 +0 0.0599 +0 0.1285 +0 0.1930 +0 0.1021 +0 0.0739 +0 0.0724 +0 0.2186 +0 0.1195 +0 0.1137 +0 0.0734 +0 0.0326 +0 0.1142 +0 0.0810 +0 0.0672 +0 0.0972 +0 0.1062 +0 0.1061 +0 0.2145 +0 0.0879 +0 0.0660 +0 0.6310 +0 0.0951 +0 0.1440 +0 0.4848 +0 0.0748 +0 0.2881 +0 0.0863 +0 0.1138 +0 0.5260 +0 0.2076 +0 0.0857 +0 0.0854 +0 0.0723 +0 0.1945 +0 0.0803 +0 0.1965 +0 0.0896 +0 0.2040 +0 0.0926 +0 0.0593 +0 0.0801 +0 0.0473 +0 0.0808 +0 0.1680 +0 0.0672 +0 0.1610 +0 0.1150 +0 0.0702 +0 0.6336 +0 0.3979 +0 0.0600 +0 0.1656 +0 0.0804 +0 0.0829 +0 0.1974 +0 0.1994 +0 0.1885 +0 0.1556 +0 0.2460 +0 0.1017 +0 0.0618 +0 0.0656 +0 0.0578 +0 0.1558 +0 0.0621 +0 0.2099 +0 0.0564 +0 0.0495 +0 0.0473 +0 0.1029 +0 0.0899 +0 0.1176 +0 0.2643 +0 0.1099 +0 0.1411 +0 0.1316 +0 0.0700 +0 0.1039 +0 0.2175 +0 0.1470 +0 0.6449 +0 0.0624 +0 0.1357 +0 0.0915 +0 0.1114 +0 0.1385 +0 0.0907 +0 0.0689 +0 0.0506 +0 0.0711 +0 0.0732 +0 0.0551 +0 0.0363 +0 0.0922 +0 0.1814 +0 0.0543 +0 0.0965 +1 0.8424 +0 0.2404 +0 0.1013 +0 0.0624 +0 0.3049 +0 0.1152 +0 0.0730 +0 0.2062 +0 0.1649 +0 0.0652 +0 0.0452 +1 0.7982 +0 0.1522 +0 0.1790 +0 0.0397 +0 0.0483 +0 0.0954 +0 0.1155 +0 0.1169 +0 0.0921 +0 0.1604 +0 0.2364 +0 0.1547 +0 0.2736 +0 0.0404 +0 0.1088 +0 0.6692 +0 0.0368 +1 0.7668 +0 0.1129 +0 0.2474 +0 0.0949 +0 0.1158 +0 0.1778 +0 0.2498 +0 0.1119 +0 0.0590 +0 0.0657 +0 0.0796 +0 0.2452 +0 0.5007 +0 0.0907 +0 0.2754 +0 0.1977 +0 0.1542 +0 0.1067 +0 0.1153 +0 0.0718 +0 0.1783 +0 0.1176 +0 0.2135 +0 0.0837 +0 0.2193 +0 0.0975 +0 0.2082 +0 0.4186 +0 0.0568 +0 0.0763 +0 0.3192 +0 0.1737 +0 0.2383 +0 0.1131 +0 0.2073 +0 0.1677 +0 0.0538 +0 0.0722 +0 0.0463 +0 0.0622 +0 0.0724 +0 0.3206 +0 0.0830 +0 0.3791 +0 0.0931 +0 0.0360 +0 0.0914 +0 0.0665 +0 0.2600 +0 0.1754 +0 0.1149 +0 0.1996 +0 0.0766 +0 0.1544 +0 0.1754 +0 0.3521 +0 0.0880 +0 0.1595 +0 0.0629 +0 0.2174 +0 0.0945 +0 0.0617 +0 0.0370 +0 0.1128 +0 0.1218 +0 0.1390 +1 0.3129 +0 0.0532 +0 0.2482 +0 0.0851 +0 0.1659 +0 0.0947 +0 0.2099 +0 0.5571 +0 0.0982 +0 0.2165 +0 0.1031 +0 0.1145 +0 0.1151 +0 0.0957 +0 0.1136 +0 0.0630 +0 0.0607 +0 0.0823 +0 0.2127 +0 0.0875 +0 0.0574 +0 0.6503 +0 0.0997 +0 0.0936 +0 0.1986 +0 0.0417 +0 0.1207 +0 0.0864 +0 0.0469 +0 0.0347 +0 0.0722 +0 0.1207 +0 0.2315 +0 0.0431 +0 0.0984 +0 0.0737 +0 0.0515 +0 0.0591 +0 0.1270 +0 0.1064 +0 0.2169 +0 0.0685 +0 0.0648 +0 0.1533 +0 0.0888 +0 0.2032 +0 0.0394 +0 0.1046 +0 0.1841 +0 0.1138 +1 0.8153 +0 0.4575 +0 0.0635 +0 0.6082 +0 0.0495 +0 0.1270 +0 0.0493 +0 0.0605 +0 0.1035 +0 0.0827 +0 0.1946 +0 0.0391 +0 0.0772 +0 0.1750 +0 0.0943 +0 0.0491 +0 0.1102 +0 0.0884 +0 0.0884 +0 0.0729 +0 0.0934 +0 0.1333 +0 0.0359 +0 0.1913 +0 0.0925 +0 0.2301 +0 0.0337 +0 0.1493 +0 0.1459 +0 0.0961 +1 0.8593 +0 0.0836 +0 0.0485 +0 0.1394 +0 0.0561 +0 0.1402 +0 0.0821 +0 0.0547 +0 0.2492 +0 0.1272 +0 0.2431 +0 0.0540 +0 0.1528 +0 0.2068 +0 0.0685 +0 0.1324 +0 0.1352 +0 0.1526 +0 0.0554 +0 0.0442 +0 0.0823 +0 0.3651 +0 0.0874 +0 0.0605 +0 0.2492 +0 0.2227 +0 0.1217 +0 0.0911 +0 0.2808 +0 0.0748 +0 0.0654 +0 0.1035 +0 0.0943 +0 0.0642 +0 0.1060 +0 0.6840 +0 0.0699 +0 0.0891 +0 0.4434 +0 0.0781 +0 0.4690 +0 0.0754 +0 0.0594 +0 0.0787 +0 0.0558 +0 0.2584 +0 0.0653 +0 0.1096 +0 0.0731 +0 0.4068 +0 0.0415 +0 0.0742 +0 0.0899 +0 0.0453 +0 0.2585 +0 0.0847 +0 0.3110 +0 0.0885 +0 0.1094 +0 0.2853 +0 0.0978 +1 0.7508 +0 0.1204 +0 0.0509 +0 0.3351 +0 0.1112 +0 0.0973 +0 0.0844 +0 0.1413 +0 0.1006 +0 0.0437 +0 0.0582 +0 0.0508 +0 0.0456 +0 0.1017 +0 0.0501 +0 0.1709 +0 0.0734 +0 0.1110 +0 0.0682 +0 0.4610 +0 0.0503 +0 0.1223 +0 0.1913 +0 0.2524 +0 0.1432 +0 0.0732 +0 0.2638 +0 0.1385 +0 0.0868 +0 0.0748 +0 0.0955 +0 0.1397 +0 0.1381 +0 0.0997 +0 0.0674 +1 0.7811 +0 0.1545 +0 0.0611 +0 0.0870 +0 0.0972 +0 0.1255 +0 0.1643 +0 0.0488 +0 0.1156 +0 0.1049 +0 0.1084 +0 0.0662 +0 0.1817 +0 0.4001 +0 0.1262 +0 0.0713 +0 0.2934 +0 0.1434 +0 0.2556 +0 0.0497 +0 0.0736 +0 0.1596 +0 0.0965 +0 0.1877 +0 0.0735 +0 0.0852 +0 0.3964 +0 0.0791 +0 0.1442 +0 0.1066 +0 0.0808 +0 0.2380 +0 0.0919 +0 0.0963 +0 0.1095 +0 0.0985 +0 0.1322 +0 0.3142 +0 0.1351 +0 0.0675 +0 0.1547 +0 0.2113 +0 0.3873 +0 0.1281 +0 0.1500 +0 0.1722 +0 0.1465 +0 0.1297 +0 0.0901 +0 0.1264 +0 0.1529 +0 0.1321 +0 0.0813 +0 0.0898 +0 0.3175 +0 0.1667 +0 0.1266 +0 0.1587 +0 0.1150 +0 0.0632 +0 0.0595 +0 0.2145 +0 0.0539 +0 0.0837 +0 0.2248 +0 0.0815 +0 0.0845 +0 0.0423 +0 0.0531 +0 0.1451 +0 0.3295 +0 0.5342 +0 0.0973 +0 0.1458 +0 0.6036 +0 0.4146 +0 0.0464 +0 0.0385 +0 0.0613 +0 0.0779 +0 0.3117 +0 0.7190 +0 0.1059 +0 0.1572 +1 0.7866 +0 0.0842 +0 0.2565 +0 0.0863 +0 0.1050 +0 0.1713 +0 0.0449 +0 0.0998 +0 0.0529 +0 0.1847 +0 0.0641 +0 0.2140 +0 0.0922 +0 0.5926 +0 0.0929 +0 0.3997 +0 0.7193 +0 0.0669 +0 0.1091 +0 0.4289 +0 0.0609 +0 0.1418 +0 0.1567 +0 0.0322 +0 0.0976 +0 0.0829 +0 0.1217 +0 0.3256 +0 0.0930 +0 0.1288 +0 0.1167 +0 0.1163 +0 0.1881 +0 0.0842 +0 0.1013 +0 0.0858 +0 0.0790 +0 0.4905 +0 0.0659 +0 0.1382 +0 0.1315 +0 0.1066 +0 0.6696 +0 0.1899 +0 0.1019 +0 0.0361 +0 0.5625 +0 0.1613 +0 0.0910 +0 0.2002 +0 0.1207 +0 0.1215 +0 0.1228 +0 0.0949 +0 0.1039 +0 0.0625 +0 0.2801 +0 0.0723 +0 0.0836 +0 0.1418 +0 0.0507 +0 0.0796 +0 0.4696 +0 0.0944 +0 0.4358 +0 0.0623 +0 0.2598 +0 0.0835 +0 0.0526 +0 0.0450 +0 0.1512 +0 0.3785 +0 0.3861 +0 0.0635 +0 0.0619 +0 0.0714 +0 0.0685 +0 0.0485 +0 0.1824 +0 0.0790 +0 0.0842 +0 0.0346 +0 0.1165 +0 0.0622 +0 0.1939 +0 0.2110 +0 0.1028 +0 0.0932 +0 0.1032 +0 0.1489 +0 0.1082 +0 0.1278 +0 0.1993 +0 0.3412 +0 0.2895 +0 0.0565 +0 0.0639 +0 0.7275 +1 0.8582 +0 0.2737 +0 0.1012 +0 0.2640 +0 0.0844 +0 0.0839 +0 0.2575 +0 0.1395 +0 0.0873 +0 0.0707 +0 0.0662 +0 0.2020 +0 0.0588 +1 0.7586 +0 0.2006 +0 0.2416 +0 0.0646 +0 0.0801 +0 0.0809 +0 0.2873 +0 0.2862 +0 0.2191 +0 0.3626 +0 0.1131 +0 0.5894 +0 0.2318 +0 0.1663 +0 0.0395 +0 0.0989 +0 0.0791 +0 0.0658 +0 0.0886 +0 0.0548 +0 0.1638 +0 0.0716 +0 0.1389 +0 0.0785 +0 0.1060 +0 0.1400 +0 0.0431 +0 0.0849 +0 0.1067 +0 0.0441 +0 0.0730 +0 0.0976 +0 0.1382 +0 0.0733 +0 0.4141 +0 0.0684 +0 0.1852 +0 0.2315 +0 0.0870 +0 0.0977 +0 0.0586 +0 0.2084 +0 0.0494 +0 0.2867 +0 0.0685 +0 0.0766 +0 0.0474 +0 0.1062 +0 0.2023 +0 0.1786 +0 0.0681 +0 0.1055 +0 0.0631 +0 0.0449 +0 0.1209 +0 0.1190 +0 0.5836 +0 0.0603 +0 0.1308 +0 0.0794 +0 0.1259 +0 0.1043 +0 0.1344 +0 0.1044 +0 0.0609 +0 0.0750 +0 0.1061 +0 0.1850 +0 0.1121 +0 0.4140 +1 0.8706 +0 0.5433 +0 0.2956 +1 0.8064 +0 0.0891 +0 0.1146 +0 0.0770 +0 0.0993 +0 0.1553 +0 0.1497 +0 0.0447 +0 0.3480 +0 0.2469 +0 0.0922 +0 0.1748 +0 0.0807 +0 0.0797 +0 0.1080 +0 0.1454 +0 0.0415 +0 0.2610 +0 0.2789 +0 0.5630 +0 0.0519 +0 0.0701 +0 0.0826 +0 0.0571 +0 0.1177 +0 0.1109 +0 0.2175 +0 0.1406 +1 0.8230 +0 0.1997 +0 0.2064 +0 0.2090 +0 0.1351 +0 0.0632 +0 0.1951 +0 0.2991 +0 0.0882 +0 0.6210 +0 0.1455 +0 0.0838 +0 0.0773 +0 0.0937 +0 0.1147 +0 0.1046 +0 0.2014 +0 0.2256 +0 0.1386 +0 0.1302 +1 0.7794 +0 0.1018 +0 0.1479 +0 0.0775 +0 0.1506 +0 0.0662 +0 0.1527 +0 0.0851 +0 0.0530 +0 0.4938 +0 0.0787 +0 0.0533 +0 0.1511 +0 0.2603 +0 0.0955 +0 0.1186 +0 0.0785 +0 0.0792 +0 0.1421 +0 0.3793 +0 0.0470 +0 0.0531 +0 0.2118 +0 0.1508 +0 0.0774 +0 0.6725 +0 0.0853 +0 0.0911 +0 0.0832 +0 0.1454 +0 0.1634 +0 0.2869 +0 0.1504 +0 0.1261 +0 0.0370 +0 0.1419 +0 0.1347 +0 0.1502 +0 0.2214 +0 0.1429 +0 0.1337 +0 0.2975 +0 0.1206 +0 0.2338 +0 0.0884 +0 0.0934 +0 0.1283 +0 0.0969 +0 0.1359 +0 0.0774 +0 0.0633 +0 0.0457 +0 0.0667 +0 0.0757 +0 0.2739 +0 0.1574 +0 0.3389 +0 0.0506 +0 0.1297 +0 0.2193 +0 0.1203 +0 0.1541 +0 0.1529 +0 0.0710 +0 0.1022 +0 0.1565 +0 0.1086 +0 0.0920 +0 0.1509 +0 0.1396 +0 0.0580 +0 0.1430 +0 0.3307 +0 0.1018 +0 0.2020 +0 0.0894 +0 0.1202 +0 0.0896 +0 0.2748 +0 0.1342 +0 0.1399 +0 0.1333 +0 0.0679 +0 0.1426 +0 0.0927 +0 0.3214 +0 0.1409 +0 0.0438 +1 0.8428 +0 0.0648 +0 0.0738 +0 0.0726 +0 0.2819 +0 0.1208 +0 0.4046 +0 0.0951 +0 0.0940 +0 0.2286 +0 0.1044 +0 0.0400 +0 0.4582 +0 0.5177 +0 0.0925 +0 0.0919 +0 0.1744 +0 0.3144 +0 0.0981 +0 0.1551 +0 0.1812 +0 0.2552 +0 0.2497 +0 0.1670 +0 0.1481 +0 0.0489 +0 0.0824 +0 0.0995 +0 0.2142 +0 0.5638 +0 0.1262 +0 0.0811 +0 0.0883 +0 0.2156 +1 0.8421 +0 0.1083 +0 0.2982 +0 0.0949 +0 0.1156 +0 0.1180 +0 0.1434 +0 0.0283 +0 0.0644 +0 0.0499 +0 0.2347 +0 0.2684 +0 0.0889 +0 0.0676 +0 0.0669 +0 0.0319 +0 0.0755 +0 0.2039 +0 0.1489 +0 0.0895 +0 0.0403 +0 0.1585 +0 0.0412 +0 0.0897 +0 0.1276 +0 0.1784 +0 0.0987 +0 0.1456 +0 0.0965 +0 0.0633 +0 0.1568 +0 0.0806 +0 0.1046 +0 0.0822 +0 0.1429 +0 0.0830 +0 0.0981 +0 0.1019 +0 0.1871 +0 0.3057 +0 0.0829 +0 0.0819 +0 0.0675 +0 0.1292 +0 0.0625 +0 0.0570 +0 0.4588 +0 0.1066 +0 0.2116 +0 0.0991 +0 0.2054 +0 0.1048 +0 0.2026 +1 0.7558 +0 0.1252 +0 0.0564 +0 0.2143 +0 0.0971 +0 0.0704 +0 0.0779 +0 0.0585 +0 0.5373 +0 0.0512 +0 0.0405 +0 0.1247 +0 0.1834 +0 0.1532 +0 0.0783 +0 0.0978 +0 0.1359 +0 0.1205 +0 0.1595 +0 0.1974 +0 0.1415 +0 0.5949 +0 0.2687 +0 0.1530 +0 0.1367 +0 0.0847 +0 0.0764 +0 0.0610 +0 0.1312 +0 0.1753 +0 0.0728 +0 0.0676 +0 0.0285 +0 0.0768 +0 0.0978 +0 0.2904 +0 0.0661 +0 0.0979 +0 0.0484 +0 0.1901 +0 0.0639 +0 0.0682 +0 0.1102 +0 0.1760 +0 0.1512 +0 0.0659 +0 0.1614 +0 0.0512 +0 0.1284 +0 0.1024 +0 0.1460 +0 0.0823 +0 0.0876 +0 0.0698 +0 0.1427 +0 0.0648 +1 0.8050 +0 0.1291 +0 0.1432 +0 0.0823 +0 0.1110 +0 0.3029 +0 0.3202 +0 0.1891 +0 0.0744 +0 0.2245 +0 0.0712 +0 0.0742 +0 0.1941 +0 0.0968 +0 0.1898 +0 0.1760 +0 0.0391 +0 0.0640 +0 0.0672 +0 0.7174 +0 0.1157 +0 0.1061 +0 0.1013 +0 0.1830 +0 0.0281 +0 0.1480 +0 0.1127 +0 0.0892 +0 0.2764 +0 0.0677 +0 0.0625 +0 0.1096 +0 0.1348 +0 0.0840 +0 0.1028 +0 0.1822 +0 0.0696 +0 0.1088 +0 0.1649 +0 0.1326 +0 0.4540 +0 0.0830 +0 0.1980 +0 0.0631 +0 0.1880 +0 0.1918 +0 0.0312 +0 0.0755 +0 0.1305 +0 0.7211 +0 0.1193 +0 0.1733 +0 0.0903 +0 0.2465 +0 0.0937 +0 0.0969 +0 0.0515 +0 0.0590 +0 0.0272 +0 0.4620 +1 0.8219 +0 0.2018 +0 0.0365 +0 0.0753 +1 0.8555 +0 0.1171 +0 0.1415 +0 0.1439 +0 0.0579 +0 0.0445 +0 0.1755 +0 0.1304 +0 0.2454 +0 0.0699 +0 0.0670 +0 0.0995 +0 0.3607 +0 0.0986 +0 0.1067 +1 0.8060 +0 0.1607 +0 0.0561 +0 0.1027 +0 0.0592 +0 0.1305 +0 0.1224 +0 0.0403 +1 0.8289 +0 0.2304 +0 0.1175 +0 0.1056 +0 0.2881 +0 0.0752 +0 0.1312 +0 0.2746 +0 0.0622 +0 0.0706 +0 0.0439 +0 0.0966 +0 0.0786 +0 0.1865 +0 0.0476 +0 0.0870 +0 0.1680 +0 0.1224 +0 0.0811 +0 0.0857 +0 0.1693 +0 0.1025 +0 0.4360 +0 0.1193 +0 0.0715 +0 0.0836 +0 0.2959 +0 0.1106 +0 0.3083 +0 0.2145 +0 0.0811 +0 0.2043 +0 0.1771 +0 0.0825 +0 0.0462 +0 0.2161 +0 0.6898 +0 0.5784 +0 0.5713 +0 0.0471 +0 0.0582 +0 0.0628 +0 0.1197 +0 0.0438 +0 0.0937 +0 0.1343 +0 0.1778 +0 0.0785 +0 0.3672 +0 0.1688 +0 0.1845 +0 0.2261 +0 0.0451 +0 0.1367 +0 0.0923 +0 0.0574 +0 0.1012 +0 0.0331 +0 0.0756 +0 0.0569 +0 0.2750 +0 0.0705 +0 0.0611 +0 0.0764 +0 0.1683 +0 0.0428 +0 0.0675 +0 0.1011 +0 0.6141 +0 0.1630 +0 0.4465 +0 0.1239 +0 0.0388 +0 0.2057 +0 0.1236 +0 0.1359 +0 0.0651 +1 0.8598 +0 0.1438 +0 0.0999 +0 0.1000 +0 0.1037 +0 0.1152 +0 0.0915 +0 0.0325 +0 0.1130 +0 0.0946 +0 0.2215 +0 0.0600 +0 0.2214 +0 0.0587 +0 0.1050 +0 0.2725 +0 0.0496 +0 0.1340 +0 0.1148 +0 0.0875 +0 0.1121 +0 0.2348 +0 0.0999 +0 0.0882 +0 0.1095 +0 0.1099 +0 0.1406 +0 0.1084 +0 0.0473 +0 0.1053 +0 0.0776 +0 0.4203 +0 0.0405 +0 0.1331 +0 0.2068 +0 0.1758 +0 0.2586 +1 0.8163 +0 0.2364 +0 0.0546 +0 0.2613 +0 0.1350 +0 0.0936 +0 0.1157 +0 0.1005 +0 0.3408 +0 0.0474 +0 0.1095 +0 0.0804 +0 0.2283 +0 0.0895 +0 0.1206 +0 0.0702 +0 0.0557 +0 0.1033 +0 0.1110 +0 0.3531 +0 0.0561 +0 0.1848 +0 0.1776 +0 0.0477 +0 0.1252 +0 0.1508 +0 0.2179 +0 0.1453 +0 0.1145 +0 0.0713 +0 0.0801 +0 0.0801 +0 0.0872 +0 0.0784 +0 0.2092 +0 0.0696 +0 0.1064 +0 0.0551 +0 0.0808 +0 0.1294 +0 0.1170 +0 0.0804 +0 0.1037 +0 0.0730 +0 0.0469 +0 0.0568 +0 0.0687 +0 0.0542 +0 0.3386 +0 0.1846 +0 0.0873 +0 0.0785 +0 0.1230 +0 0.0437 +0 0.0674 +0 0.1402 +1 0.7614 +0 0.0786 +0 0.0670 +0 0.1016 +0 0.1302 +0 0.0420 +0 0.2081 +0 0.0553 +0 0.1478 +0 0.1524 +0 0.0590 +0 0.0548 +0 0.2879 +0 0.1292 +0 0.1354 +0 0.2090 +0 0.1607 +0 0.1334 +0 0.2243 +0 0.0379 +0 0.1107 +0 0.0910 +0 0.1606 +0 0.0682 +0 0.1051 +0 0.0580 +0 0.0489 +0 0.1927 +0 0.1143 +0 0.1054 +0 0.0636 +0 0.1206 +0 0.0863 +0 0.1295 +0 0.0647 +0 0.0832 +0 0.1687 +0 0.0847 +0 0.0749 +0 0.0925 +0 0.1283 +0 0.1163 +0 0.0798 +0 0.2649 +0 0.0715 +0 0.1685 +0 0.1480 +0 0.0395 +1 0.8317 +0 0.6946 +0 0.0766 +0 0.0706 +0 0.0469 +0 0.1820 +0 0.0652 +0 0.0884 +0 0.1937 +0 0.2069 +0 0.0575 +0 0.0803 +0 0.0940 +0 0.0893 +0 0.0468 +0 0.0665 +0 0.2488 +0 0.1376 +0 0.0662 +0 0.0921 +0 0.1150 +0 0.2027 +0 0.0782 +0 0.1131 +0 0.6900 +0 0.1218 +0 0.1468 +0 0.2166 +0 0.0941 +0 0.0961 +0 0.1193 +0 0.0819 +0 0.0879 +0 0.0795 +0 0.0449 +0 0.1567 +0 0.1316 +0 0.1764 +0 0.0940 +0 0.1124 +0 0.1219 +0 0.0717 +0 0.1150 +0 0.1155 +0 0.0603 +0 0.1222 +0 0.0904 +0 0.2127 +0 0.5955 +0 0.2207 +0 0.1197 +0 0.1628 +0 0.0483 +0 0.0405 +0 0.2739 +0 0.3759 +0 0.0516 +0 0.1045 +0 0.1560 +0 0.0898 +0 0.1302 +0 0.0482 +0 0.1467 +0 0.0405 +0 0.2993 +0 0.1262 +0 0.0505 +0 0.0678 +0 0.1091 +0 0.0696 +0 0.0732 +0 0.0634 +0 0.0981 +0 0.1017 +0 0.1361 +0 0.0754 +0 0.0968 +0 0.1212 +0 0.1436 +0 0.1373 +0 0.2649 +0 0.0456 +0 0.3214 +0 0.1493 +0 0.0428 +0 0.0531 +0 0.1285 +0 0.1129 +0 0.0641 +0 0.0891 +0 0.0474 +0 0.1354 +0 0.0686 +0 0.2300 +0 0.1002 +0 0.0567 +0 0.0702 +0 0.4864 +0 0.0690 +0 0.1884 +0 0.0964 +0 0.1316 +0 0.2180 +0 0.0573 +0 0.2905 +0 0.1231 +0 0.0477 +0 0.0820 +0 0.2422 +0 0.0729 +0 0.0951 +0 0.2600 +0 0.2281 +0 0.2034 +0 0.1224 +0 0.1308 +0 0.1845 +0 0.1795 +0 0.1281 +0 0.0756 +0 0.0848 +0 0.2478 +0 0.0517 +0 0.1259 +0 0.1606 +0 0.0986 +0 0.1942 +0 0.0531 +0 0.0485 +0 0.0920 +0 0.0965 +0 0.3566 +0 0.0538 +1 0.7798 +0 0.4208 +0 0.1299 +0 0.1359 +0 0.1571 +0 0.1108 +0 0.0978 +0 0.1220 +0 0.1042 +0 0.2673 +0 0.2381 +0 0.1211 +0 0.2032 +0 0.1257 +0 0.0629 +0 0.1785 +0 0.0737 +0 0.0883 +0 0.1542 +0 0.0529 +0 0.0857 +0 0.0969 +0 0.2566 +0 0.1173 +0 0.2627 +0 0.1385 +0 0.0790 +0 0.1060 +0 0.2048 +0 0.1174 +0 0.1123 +0 0.0771 +0 0.3840 +0 0.1678 +0 0.0408 +0 0.2554 +0 0.0442 +0 0.1424 +0 0.0812 +0 0.0439 +0 0.0663 +0 0.0847 +0 0.1183 +0 0.1209 +0 0.0602 +0 0.0816 +1 0.8349 +0 0.0551 +0 0.1191 +0 0.0400 +0 0.1800 +0 0.0883 +0 0.0555 +0 0.0493 +0 0.1795 +0 0.0771 +0 0.0488 +0 0.1457 +0 0.0769 +0 0.0906 +0 0.1638 +0 0.0892 +0 0.0716 +0 0.4509 +0 0.1315 +0 0.1166 +0 0.1323 +0 0.1349 +0 0.0792 +0 0.0598 +0 0.1556 +0 0.0941 +0 0.1420 +1 0.7871 +0 0.0616 +0 0.0978 +0 0.2087 +0 0.0734 +0 0.1834 +0 0.3093 +0 0.1914 +0 0.0580 +0 0.0741 +0 0.0894 +0 0.0802 +1 0.8933 +0 0.1026 +0 0.2805 +0 0.2866 +0 0.1973 +0 0.0562 +0 0.1014 +0 0.1357 +0 0.0632 +0 0.1166 +0 0.2501 +0 0.3415 +0 0.1535 +0 0.2981 +0 0.1344 +0 0.1206 +0 0.1276 +0 0.0777 +0 0.1189 +0 0.1126 +0 0.1387 +0 0.0390 +0 0.0518 +0 0.0486 +0 0.1255 +0 0.0457 +0 0.3559 +0 0.0566 +0 0.1326 +0 0.0860 +0 0.0776 +0 0.6191 +0 0.2848 +0 0.0881 +0 0.0797 +0 0.0643 +0 0.5472 +0 0.0578 +1 0.8277 +0 0.0805 +0 0.1079 +0 0.0856 +0 0.0498 +1 0.7780 +0 0.1112 +0 0.0669 +0 0.0582 +0 0.0861 +0 0.1117 +0 0.0550 +0 0.0711 +0 0.0907 +0 0.1374 +0 0.5811 +0 0.0803 +0 0.0417 +0 0.0704 +0 0.0833 +0 0.0707 +0 0.7161 +0 0.2188 +0 0.0919 +0 0.0705 +0 0.1045 +0 0.0718 +0 0.0936 +0 0.1308 +0 0.0617 +1 0.8120 +0 0.0765 +0 0.2412 +0 0.0949 +0 0.3342 +0 0.0546 +0 0.1061 +0 0.2104 +0 0.0957 +0 0.0830 +0 0.0896 +0 0.0408 +0 0.1089 +0 0.1954 +0 0.1531 +0 0.1401 +0 0.0834 +0 0.0918 +0 0.0954 +0 0.2704 +0 0.0759 +0 0.0728 +0 0.1367 +0 0.2420 +0 0.2321 +0 0.0950 +0 0.6119 +0 0.0605 +0 0.0428 +0 0.3475 +0 0.0629 +0 0.0483 +0 0.1050 +0 0.1126 +0 0.0561 +0 0.2221 +0 0.1632 +0 0.0694 +0 0.0551 +0 0.1223 +0 0.0509 +0 0.1262 +0 0.1726 +0 0.1026 +0 0.2514 +0 0.0676 +1 0.8365 +0 0.0989 +0 0.2296 +0 0.0627 +0 0.1062 +0 0.2954 +0 0.0855 +0 0.0704 +0 0.1380 +0 0.1539 +0 0.0565 +0 0.0781 +0 0.1141 +0 0.0569 +0 0.0816 +0 0.2177 +0 0.2477 +0 0.1751 +0 0.1414 +0 0.1492 +0 0.0469 +0 0.0769 +0 0.3261 +0 0.2176 +0 0.0402 +0 0.0642 +0 0.0666 +0 0.1579 +0 0.0615 +0 0.0597 +0 0.0609 +0 0.1156 +0 0.1646 +0 0.1016 +0 0.1622 +0 0.1076 +0 0.0609 +1 0.7634 +0 0.1223 +0 0.1109 +0 0.0645 +0 0.1235 +0 0.0958 +0 0.5716 +0 0.1561 +0 0.1453 +0 0.0996 +1 0.8526 +0 0.0930 +0 0.1236 +0 0.0699 +0 0.0580 +0 0.0979 +0 0.1599 +0 0.0674 +0 0.2105 +0 0.1379 +0 0.2124 +0 0.0698 +0 0.1272 +0 0.1225 +0 0.0918 +0 0.0591 +0 0.2172 +0 0.1256 +0 0.1323 +0 0.1154 +0 0.2656 +0 0.1077 +0 0.0968 +0 0.0689 +0 0.2109 +0 0.0571 +0 0.1070 +0 0.0470 +0 0.0779 +0 0.4095 +0 0.0414 +0 0.3666 +0 0.1424 +0 0.2931 +0 0.0584 +0 0.0361 +0 0.0802 +0 0.1360 +0 0.4179 +0 0.0381 +0 0.6748 +0 0.3232 +0 0.1351 +0 0.1253 +0 0.1312 +0 0.4943 +0 0.2469 +0 0.1452 +0 0.0509 +0 0.0715 +0 0.2263 +0 0.2412 +0 0.1857 +0 0.1363 +0 0.1972 +0 0.0895 +0 0.1743 +0 0.0773 +0 0.0665 +0 0.2631 +0 0.3482 +0 0.2302 +0 0.1342 +0 0.3432 +1 0.8055 +0 0.0499 +0 0.3113 +0 0.1262 +0 0.1070 +0 0.3625 +0 0.2955 +0 0.0631 +0 0.2677 +0 0.0545 +0 0.0846 +0 0.0602 +0 0.1021 +0 0.1056 +0 0.1751 +0 0.0463 +0 0.1037 +0 0.0981 +0 0.0446 +0 0.0565 +0 0.0654 +0 0.1104 +0 0.0927 +0 0.0773 +0 0.3116 +0 0.1379 +0 0.3867 +0 0.1120 +0 0.1079 +0 0.1487 +0 0.0866 +0 0.2043 +0 0.0751 +0 0.0906 +0 0.0793 +0 0.2564 +0 0.1202 +0 0.0598 +0 0.2165 +0 0.0769 +0 0.0702 +0 0.0916 +0 0.0905 +0 0.0850 +0 0.0842 +0 0.0715 +0 0.1533 +0 0.0422 +0 0.2700 +0 0.1055 +0 0.0677 +0 0.1514 +0 0.0539 +0 0.1507 +0 0.0441 +0 0.1195 +0 0.0633 +0 0.0288 +0 0.1113 +0 0.1066 +0 0.2394 +0 0.0734 +0 0.0415 +0 0.0637 +0 0.0827 +0 0.1308 +0 0.1685 +0 0.4334 +0 0.1433 +0 0.2370 +0 0.2020 +0 0.0737 +0 0.0470 +0 0.0873 +0 0.1217 +0 0.0748 +0 0.0767 +0 0.1491 +0 0.0338 +0 0.3735 +0 0.2390 +0 0.1427 +0 0.0621 +0 0.1404 +0 0.1397 +0 0.1884 +0 0.2848 +0 0.0877 +0 0.2503 +0 0.1168 +0 0.5590 +0 0.0386 +0 0.0941 +0 0.0781 +0 0.1118 +0 0.0807 +0 0.3555 +0 0.0490 +0 0.1087 +0 0.0784 +0 0.1054 +0 0.0885 +0 0.1731 +0 0.0583 +0 0.1001 +0 0.1507 +0 0.3682 +0 0.1081 +0 0.1862 +0 0.0559 +0 0.1061 +0 0.0992 +0 0.3377 +0 0.0341 +0 0.0334 +0 0.2781 +0 0.0485 +0 0.0535 +0 0.0837 +0 0.0666 +0 0.2650 +0 0.1353 +0 0.1049 +0 0.0501 +0 0.1229 +0 0.0498 +0 0.7349 +0 0.6595 +0 0.2582 +1 0.8332 +0 0.0614 +0 0.3713 +0 0.0513 +0 0.2065 +0 0.0455 +0 0.1766 +0 0.2115 +0 0.3729 +0 0.2553 +0 0.1878 +0 0.1599 +0 0.2720 +0 0.0424 +0 0.1706 +0 0.1080 +0 0.1132 +0 0.0589 +0 0.1206 +0 0.0997 +0 0.1397 +0 0.1589 +0 0.0754 +0 0.2713 +0 0.0867 +0 0.1900 +1 0.8533 +0 0.0625 +0 0.0430 +0 0.0977 +0 0.0743 +0 0.0564 +0 0.0931 +0 0.0597 +0 0.2368 +0 0.2003 +0 0.4718 +0 0.1967 +0 0.0689 +0 0.0775 +0 0.0674 +0 0.0799 +0 0.1114 +0 0.0661 +0 0.0459 +0 0.1586 +0 0.1704 +0 0.1141 +0 0.0696 +0 0.2039 +0 0.0722 +0 0.2673 +0 0.2552 +0 0.4621 +0 0.0479 +0 0.2967 +0 0.1687 +0 0.0934 +0 0.0501 +0 0.0514 +0 0.0641 +0 0.1539 +0 0.0698 +0 0.1882 +0 0.0871 +0 0.0913 +1 0.8355 +0 0.5332 +0 0.1045 +0 0.2876 +0 0.1717 +0 0.2989 +0 0.2204 +0 0.2226 +0 0.2434 +0 0.0467 +0 0.0588 +0 0.1058 +0 0.0683 +0 0.0495 +0 0.0846 +0 0.0845 +0 0.1546 +0 0.0430 +0 0.0424 +0 0.0901 +0 0.0566 +0 0.1239 +0 0.0496 +0 0.0443 +0 0.0626 +0 0.4653 +0 0.0815 +0 0.1074 +0 0.0682 +0 0.1198 +0 0.1342 +0 0.1417 +0 0.0486 +0 0.0796 +0 0.0536 +0 0.0956 +0 0.2042 +0 0.1650 +0 0.1160 +0 0.2310 +0 0.0551 +0 0.2351 +0 0.7415 +0 0.1351 +0 0.1388 +0 0.2067 +0 0.5288 +0 0.0524 +0 0.0777 +0 0.1328 +0 0.0350 +0 0.1728 +0 0.1761 +0 0.2392 +0 0.0891 +0 0.0916 +0 0.2262 +0 0.0609 +0 0.2145 +0 0.1103 +0 0.1007 +0 0.1749 +0 0.0716 +0 0.1482 +0 0.5650 +0 0.0754 +0 0.1059 +0 0.1083 +0 0.1595 +0 0.0951 +0 0.1025 +0 0.1250 +0 0.1743 +0 0.0817 +0 0.1816 +0 0.1281 +0 0.0994 +0 0.0852 +0 0.1363 +0 0.1009 +0 0.5675 +0 0.0522 +0 0.0884 +0 0.0362 +0 0.1394 +0 0.0944 +0 0.0406 +0 0.0882 +0 0.1664 +0 0.0913 +0 0.1368 +0 0.1107 +0 0.2277 +0 0.1106 +0 0.0699 +0 0.0923 +0 0.1217 +0 0.3682 +0 0.0616 +0 0.0739 +0 0.1396 +0 0.1414 +0 0.0856 +0 0.0488 +0 0.1136 +0 0.0751 +0 0.1259 +0 0.0716 +0 0.0394 +0 0.0733 +0 0.0698 +0 0.3204 +0 0.0674 +0 0.0505 +0 0.0366 +0 0.1580 +0 0.2247 +0 0.1525 +0 0.0903 +0 0.1091 +0 0.0740 +0 0.0864 +0 0.0866 +0 0.1320 +0 0.0458 +0 0.1366 +0 0.5836 +0 0.3417 +0 0.0319 +0 0.1595 +0 0.1119 +0 0.5028 +0 0.0661 +0 0.0362 +0 0.1785 +0 0.0754 +0 0.0980 +0 0.1412 +0 0.1299 +0 0.1107 +0 0.2066 +0 0.1010 +0 0.1785 +0 0.1320 +0 0.0728 +0 0.0794 +0 0.0588 +0 0.1026 +0 0.2195 +0 0.2496 +0 0.1161 +0 0.0565 +0 0.2127 +0 0.2033 +0 0.2557 +0 0.2097 +0 0.0947 +0 0.1725 +0 0.1235 +0 0.0792 +0 0.2097 +0 0.3256 +0 0.0348 +0 0.2810 +0 0.0777 +0 0.0878 +0 0.2132 +0 0.0540 +0 0.1119 +0 0.1829 +0 0.0968 +0 0.1518 +0 0.0462 +0 0.1334 +0 0.0862 +0 0.0864 +0 0.0998 +0 0.1353 +0 0.1503 +0 0.2884 +0 0.2020 +0 0.0927 +0 0.0510 +0 0.1555 +0 0.1531 +0 0.2925 +0 0.1669 +0 0.0835 +0 0.1021 +0 0.0369 +0 0.2042 +0 0.1474 +0 0.0656 +0 0.1098 +0 0.3285 +0 0.5700 +0 0.0956 +0 0.1533 +0 0.0961 +0 0.1785 +0 0.3894 +0 0.2232 +0 0.0403 +0 0.1185 +0 0.0872 +0 0.1963 +0 0.0712 +0 0.0861 +0 0.0702 +0 0.1108 +0 0.1625 +0 0.2422 +0 0.1691 +0 0.0939 +0 0.0542 +0 0.0999 +0 0.1072 +0 0.1451 +0 0.1942 +0 0.1162 +0 0.0452 +0 0.0777 +0 0.1241 +0 0.0372 +0 0.0830 +0 0.2733 +0 0.1129 +0 0.1158 +0 0.1371 +0 0.4375 +0 0.2224 +0 0.0983 +0 0.0741 +0 0.0526 +0 0.0562 +0 0.1959 +0 0.0856 +0 0.1415 +0 0.1276 +0 0.3354 +0 0.1124 +0 0.2759 +0 0.1944 +0 0.1056 +0 0.0785 +0 0.2295 +0 0.0966 +0 0.1727 +0 0.1125 +0 0.0876 +0 0.1178 +1 0.8887 +0 0.1171 +0 0.1073 +0 0.0743 +0 0.0583 +0 0.0743 +0 0.0562 +0 0.1758 +0 0.0672 +0 0.0659 +0 0.0608 +0 0.1266 +0 0.1863 +0 0.2576 +0 0.3346 +0 0.1434 +0 0.1221 +0 0.0789 +0 0.1194 +0 0.0762 +0 0.1200 +0 0.0390 +0 0.3942 +0 0.0867 +0 0.0771 +0 0.1080 +0 0.0895 +0 0.1138 +0 0.1781 +0 0.0616 +0 0.1719 +0 0.0911 +0 0.1789 +0 0.0909 +0 0.0536 +0 0.1716 +0 0.3472 +0 0.1471 +0 0.1173 +0 0.0965 +0 0.0878 +0 0.0674 +0 0.0524 +0 0.4295 +0 0.1614 +0 0.7243 +0 0.1233 +0 0.0786 +0 0.1617 +0 0.1261 +0 0.1639 +0 0.1451 +0 0.5937 +0 0.1174 +0 0.0633 +0 0.1401 +0 0.1135 +0 0.5576 +0 0.0973 +0 0.1921 +0 0.0843 +0 0.0700 +0 0.0792 +1 0.7840 +0 0.0632 +0 0.1400 +0 0.0943 +0 0.0958 +0 0.0859 +0 0.1166 +0 0.2434 +0 0.1513 +0 0.0589 +0 0.0718 +0 0.2550 +0 0.1036 +0 0.0648 +0 0.6882 +0 0.0808 +0 0.0833 +0 0.0812 +0 0.0349 +0 0.3436 +0 0.0647 +0 0.0805 +0 0.1288 +0 0.0348 +0 0.1068 +0 0.0498 +0 0.2692 +0 0.1290 +0 0.1473 +0 0.2089 +0 0.0532 +0 0.1383 +0 0.0604 +0 0.0748 +0 0.1725 +0 0.1458 +0 0.1236 +0 0.2879 +0 0.1034 +0 0.1147 +0 0.2644 +0 0.0927 +0 0.0718 +0 0.1381 +0 0.0731 +0 0.0610 +0 0.0632 +0 0.1062 +0 0.0640 +0 0.0903 +0 0.0959 +0 0.1777 +0 0.1727 +0 0.1582 +0 0.1285 +0 0.2060 +0 0.1076 +1 0.7635 +0 0.2248 +0 0.0845 +0 0.0810 +0 0.1436 +0 0.0856 +0 0.1027 +0 0.1783 +0 0.0734 +0 0.0487 +0 0.5582 +0 0.1892 +0 0.0661 +0 0.0815 +0 0.0420 +0 0.1194 +0 0.1027 +0 0.0593 +0 0.0843 +0 0.3965 +0 0.0686 +0 0.0506 +0 0.0943 +0 0.1006 +0 0.2715 +0 0.1560 +0 0.1342 +0 0.0450 +0 0.0372 +0 0.2169 +0 0.1779 +0 0.2379 +0 0.0986 +0 0.1791 +0 0.0946 +0 0.0664 +0 0.0859 +0 0.1179 +0 0.0422 +0 0.0709 +0 0.1133 +0 0.2210 +0 0.1321 +0 0.6716 +0 0.2823 +0 0.1741 +0 0.3942 +0 0.1038 +0 0.1606 +0 0.1467 +0 0.1104 +0 0.2837 +0 0.1165 +0 0.0633 +0 0.1615 +0 0.2904 +0 0.2342 +0 0.2833 +0 0.1124 +0 0.0510 +0 0.1485 +0 0.5315 +0 0.1497 +0 0.2516 +0 0.0871 +0 0.4415 +0 0.0897 +0 0.2289 +0 0.3674 +0 0.1040 +0 0.1720 +0 0.1303 +0 0.1242 +1 0.4475 +0 0.0673 +0 0.1083 +0 0.2638 +0 0.0428 +0 0.0490 +0 0.1182 +0 0.6812 +0 0.0833 +0 0.1213 +0 0.0371 +0 0.1944 +0 0.2537 +0 0.0901 +0 0.0431 +0 0.1804 +0 0.1487 +0 0.1316 +0 0.1758 +0 0.0928 +0 0.6514 +0 0.1212 +0 0.0720 +0 0.2134 +0 0.1190 +0 0.1016 +0 0.1541 +0 0.0809 +0 0.0873 +0 0.3189 +0 0.1128 +0 0.1179 +0 0.1612 +0 0.6583 +0 0.3676 +0 0.1357 +0 0.1187 +0 0.1546 +0 0.1009 +0 0.1524 +0 0.0749 +0 0.1029 +0 0.1121 +0 0.2269 +0 0.1241 +0 0.0672 +0 0.0844 +0 0.0725 +0 0.1975 +0 0.0744 +0 0.1245 +0 0.0988 +0 0.0997 +0 0.1092 +0 0.1735 +0 0.0690 +0 0.0769 +0 0.0475 +0 0.1682 +0 0.1332 +0 0.0875 +0 0.6207 +0 0.2724 +0 0.2282 +0 0.0725 +0 0.0924 +0 0.0901 +0 0.0847 +0 0.1805 +0 0.2355 +0 0.0953 +0 0.0830 +0 0.2111 +0 0.1120 +0 0.0676 +0 0.0720 +0 0.5593 +0 0.4232 +0 0.0991 +0 0.0829 +0 0.0869 +0 0.1092 +0 0.0997 +0 0.1112 +0 0.0967 +0 0.0475 +0 0.0984 +0 0.1000 +0 0.2468 +1 0.7893 +0 0.2632 +1 0.8417 +0 0.0717 +0 0.2646 +0 0.0424 +0 0.1477 +0 0.0402 +0 0.1571 +0 0.0593 +0 0.0837 +0 0.1637 +0 0.0327 +0 0.3088 +0 0.1659 +0 0.0874 +0 0.1726 +0 0.0880 +0 0.3940 +0 0.0756 +0 0.1083 +0 0.0803 +0 0.0844 +0 0.2090 +0 0.0695 +0 0.1530 +1 0.8097 +0 0.0984 +1 0.7670 +0 0.0801 +0 0.0802 +0 0.0823 +1 0.9021 +0 0.2384 +0 0.1091 +0 0.0995 +0 0.1611 +0 0.0727 +0 0.0987 +0 0.0684 +0 0.2362 +0 0.1412 +0 0.1984 +0 0.1122 +0 0.0628 +0 0.0677 +0 0.0954 +0 0.4080 +0 0.0650 +0 0.1409 +0 0.1034 +0 0.0772 +0 0.1182 +0 0.0502 +0 0.0466 +0 0.0825 +0 0.0524 +0 0.1365 +0 0.2565 +0 0.0847 +0 0.1189 +0 0.0989 +0 0.2054 +0 0.3261 +0 0.0835 +0 0.1195 +0 0.1496 +0 0.0417 +0 0.1535 +0 0.2099 +0 0.0972 +0 0.0943 +0 0.1416 +0 0.0421 +0 0.0352 +0 0.5771 +0 0.1206 +0 0.0611 +0 0.1474 +0 0.2324 +0 0.1042 +0 0.5643 +0 0.0494 +0 0.1141 +0 0.4669 +0 0.0731 +0 0.1459 +0 0.1125 +0 0.1769 +0 0.1656 +0 0.1224 +0 0.1048 +0 0.3984 +0 0.3058 +0 0.1274 +0 0.1016 +0 0.1451 +0 0.1269 +0 0.1165 +0 0.0488 +0 0.1291 +0 0.2064 +0 0.2150 +0 0.0852 +0 0.0889 +0 0.0779 +0 0.1508 +0 0.1221 +0 0.0394 +0 0.0524 +0 0.2519 +0 0.0652 +0 0.0816 +0 0.3972 +0 0.1505 +0 0.0721 +0 0.0793 +0 0.2947 +0 0.1016 +0 0.1494 +0 0.0499 +0 0.5440 +0 0.0474 +0 0.2145 +1 0.7803 +0 0.0467 +0 0.1600 +0 0.2848 +0 0.0526 +0 0.0667 +0 0.0984 +0 0.1245 +0 0.1075 +0 0.0427 +0 0.0362 +0 0.0688 +0 0.0533 +0 0.0334 +0 0.1821 +0 0.1716 +0 0.0653 +0 0.1602 +0 0.0652 +1 0.7671 +0 0.0915 +0 0.1258 +0 0.1335 +0 0.4504 +0 0.1282 +0 0.0666 +0 0.0518 +0 0.0489 +0 0.2137 +0 0.2779 +0 0.0501 +0 0.1167 +0 0.1050 +0 0.1399 +0 0.1225 +0 0.1206 +0 0.1411 +0 0.0542 +0 0.1283 +0 0.1425 +0 0.0815 +1 0.8785 +0 0.1405 +0 0.1534 +0 0.1134 +0 0.1320 +0 0.1198 +1 0.8175 +0 0.2188 +0 0.2792 +0 0.1655 +0 0.0675 +0 0.0848 +0 0.0637 +0 0.0657 +0 0.0623 +0 0.0764 +0 0.1379 +0 0.0847 +0 0.0366 +0 0.0727 +0 0.1581 +0 0.0358 +0 0.0778 +0 0.2037 +0 0.1992 +0 0.1595 +0 0.1190 +0 0.0515 +0 0.1293 +0 0.1199 +0 0.0909 +0 0.0782 +0 0.2655 +0 0.1117 +0 0.1907 +0 0.1002 +0 0.0591 +0 0.1357 +0 0.6498 +0 0.1230 +0 0.2282 +0 0.1953 +0 0.0852 +0 0.0892 +0 0.0886 +0 0.0616 +0 0.0747 +0 0.1006 +0 0.0833 +0 0.1937 +0 0.1725 +0 0.1504 +1 0.8027 +0 0.0778 +0 0.2362 +0 0.2660 +0 0.0576 +0 0.0426 +0 0.2631 +0 0.0723 +0 0.3141 +0 0.1360 +0 0.1189 +0 0.0716 +0 0.1034 +0 0.0766 +0 0.0768 +0 0.1856 +0 0.0899 +0 0.1657 +0 0.0481 +0 0.1797 +0 0.0824 +0 0.1298 +0 0.1201 +0 0.1177 +0 0.0954 +0 0.1129 +0 0.1422 +0 0.1079 +0 0.0925 +0 0.0828 +0 0.0956 +0 0.0399 +0 0.0484 +0 0.0730 +0 0.4733 +0 0.1298 +0 0.0901 +0 0.0884 +0 0.1162 +0 0.0791 +0 0.0978 +0 0.0969 +0 0.0369 +0 0.0644 +0 0.0440 +0 0.1052 +0 0.3839 +0 0.0760 +0 0.1203 +0 0.1446 +0 0.0730 +0 0.0825 +0 0.1386 +0 0.1136 +0 0.0811 +0 0.2198 +1 0.2329 +0 0.1383 +0 0.2590 +0 0.0890 +0 0.0767 +0 0.1257 +0 0.1246 +0 0.1432 +0 0.0760 +0 0.0697 +0 0.1212 +0 0.0855 +0 0.1614 +0 0.0643 +0 0.0497 +0 0.0667 +0 0.0478 +0 0.1014 +0 0.3645 +0 0.1164 +0 0.0862 +0 0.1211 +0 0.1167 +0 0.0554 +0 0.1094 +0 0.0493 +0 0.0544 +0 0.0893 +0 0.2216 +0 0.0733 +0 0.0460 +0 0.0685 +0 0.1874 +0 0.0498 +0 0.1208 +0 0.1196 +0 0.0793 +0 0.0761 +0 0.0892 +0 0.1462 +0 0.1194 +0 0.5574 +0 0.0726 +0 0.1746 +0 0.1221 +0 0.1253 +0 0.1540 +0 0.1336 +0 0.1202 +0 0.1389 +0 0.0814 +0 0.1112 +0 0.2198 +0 0.0776 +0 0.0625 +0 0.1547 +0 0.1518 +0 0.0880 +0 0.0749 +0 0.1040 +0 0.1672 +0 0.1439 +0 0.1381 +0 0.1404 +0 0.0728 +0 0.0591 +0 0.0525 +0 0.0636 +0 0.0918 +0 0.2536 +0 0.0975 +0 0.0583 +0 0.3134 +0 0.2826 +0 0.0380 +0 0.0492 +0 0.0602 +0 0.0912 +0 0.0779 +0 0.2416 +0 0.3106 +0 0.0892 +0 0.0910 +0 0.0678 +0 0.1758 +0 0.0791 +0 0.0524 +0 0.1795 +0 0.0505 +0 0.1962 +0 0.1018 +0 0.1351 +0 0.2199 +0 0.1595 +0 0.1622 +0 0.2272 +0 0.0346 +0 0.1514 +0 0.2344 +0 0.0936 +0 0.0776 +0 0.1233 +0 0.0855 +1 0.7643 +0 0.1822 +0 0.2092 +0 0.0493 +0 0.1220 +0 0.0443 +0 0.0808 +0 0.1029 +0 0.2286 +0 0.0749 +0 0.0760 +0 0.0830 +0 0.1221 +0 0.1183 +0 0.2886 +0 0.0426 +0 0.1648 +0 0.1092 +0 0.0618 +0 0.1411 +0 0.0853 +0 0.0745 +0 0.0523 +0 0.1463 +0 0.0769 +0 0.0853 +0 0.1275 +0 0.2461 +0 0.2818 +0 0.0880 +0 0.0699 +0 0.1543 +0 0.1692 +0 0.1559 +0 0.1729 +0 0.2230 +0 0.0693 +0 0.0700 +0 0.0911 +0 0.1816 +0 0.0781 +0 0.1007 +0 0.0444 +0 0.1677 +0 0.1651 +0 0.1274 +0 0.0587 +0 0.1233 +0 0.2851 +0 0.1434 +0 0.0516 +0 0.6808 +0 0.1101 +0 0.1985 +0 0.1068 +0 0.0969 +0 0.1538 +0 0.0993 +0 0.0604 +0 0.0484 +0 0.0615 +0 0.1600 +0 0.1174 +0 0.4472 +0 0.6088 +0 0.3579 +0 0.0834 +0 0.4143 +0 0.0695 +0 0.0699 +0 0.2292 +0 0.0441 +0 0.0410 +0 0.1012 +0 0.1025 +0 0.0875 +0 0.1490 +0 0.0566 +0 0.1714 +0 0.0473 +0 0.2555 +0 0.1378 +0 0.0874 +0 0.2238 +0 0.0973 +0 0.0427 +0 0.0677 +0 0.0685 +0 0.1248 +0 0.1132 +0 0.1101 +0 0.4429 +0 0.1292 +0 0.1857 +0 0.2784 +0 0.0864 +0 0.1215 +0 0.0741 +0 0.0657 +0 0.1044 +0 0.0423 +1 0.7960 +0 0.7132 +0 0.1451 +0 0.1229 +0 0.1175 +0 0.2721 +0 0.1688 +0 0.5748 +0 0.3215 +0 0.0979 +0 0.1186 +0 0.0842 +0 0.0423 +0 0.0876 +0 0.2052 +0 0.0811 +0 0.1446 +0 0.1502 +0 0.0598 +0 0.0826 +0 0.0987 +0 0.2921 +0 0.2392 +0 0.1707 +0 0.0693 +0 0.0530 +0 0.1799 +0 0.0337 +0 0.0718 +0 0.1212 +0 0.2591 +0 0.0684 +0 0.0516 +0 0.2648 +0 0.0757 +0 0.1785 +0 0.0744 +0 0.1821 +0 0.2796 +0 0.1098 +0 0.1237 +0 0.2013 +0 0.1036 +0 0.6829 +0 0.1480 +0 0.1043 +0 0.6217 +0 0.3165 +0 0.3170 +0 0.1349 +0 0.0804 +0 0.1024 +0 0.0636 +0 0.0447 +0 0.2037 +0 0.0707 +0 0.2202 +0 0.0684 +0 0.1020 +0 0.7298 +0 0.1297 +0 0.2274 +0 0.0786 +0 0.5082 +0 0.2008 +0 0.0658 +0 0.1177 +0 0.2038 +0 0.1031 +0 0.0989 +0 0.2174 +0 0.0304 +0 0.4047 +0 0.0602 +0 0.0806 +0 0.1143 +0 0.0659 +0 0.0932 +0 0.0872 +0 0.0864 +0 0.2919 +0 0.0927 +0 0.1170 +0 0.0925 +0 0.1006 +0 0.1052 +0 0.0540 +0 0.2506 +0 0.1138 +0 0.0594 +0 0.4890 +0 0.1166 +0 0.0803 +0 0.0888 +0 0.1113 +0 0.5498 +0 0.1128 +0 0.0526 +0 0.3346 +0 0.0674 +0 0.0993 +0 0.1197 +0 0.1161 +0 0.1106 +0 0.2310 +0 0.0544 +0 0.2881 +0 0.1242 +0 0.0907 +0 0.0664 +0 0.1398 +0 0.1333 +0 0.1028 +0 0.0663 +0 0.2176 +0 0.1078 +0 0.0636 +0 0.1058 +0 0.0686 +0 0.3071 +0 0.1339 +0 0.3227 +0 0.1063 +0 0.1002 +0 0.0697 +0 0.0916 +0 0.2560 +0 0.0657 +0 0.0604 +0 0.0753 +0 0.2106 +0 0.1191 +0 0.0953 +0 0.1301 +0 0.1660 +0 0.0563 +0 0.0675 +0 0.1142 +0 0.0971 +0 0.1018 +0 0.0697 +0 0.0909 +0 0.3068 +0 0.2033 +0 0.0813 +0 0.0777 +0 0.1024 +0 0.0659 +0 0.2562 +0 0.1151 +0 0.3452 +0 0.3727 +0 0.6863 +0 0.1020 +0 0.1071 +0 0.0503 +0 0.1895 +0 0.1729 +0 0.1929 +0 0.0939 +0 0.1198 +0 0.0360 +0 0.0911 +0 0.0462 +0 0.0823 +0 0.0704 +0 0.6014 +0 0.2489 +0 0.1677 +0 0.0367 +0 0.1158 +0 0.1174 +0 0.0595 +0 0.0908 +0 0.0708 +0 0.0775 +0 0.1109 +0 0.2084 +0 0.1045 +0 0.0334 +0 0.6568 +0 0.0829 +0 0.1506 +0 0.0641 +0 0.2923 +0 0.1508 +0 0.1218 +0 0.3150 +0 0.2628 +0 0.0865 +0 0.1590 +0 0.0948 +0 0.1023 +0 0.1913 +0 0.1028 +0 0.2584 +0 0.4674 +0 0.6160 +0 0.1478 +0 0.1281 +0 0.0926 +0 0.0633 +0 0.1394 +0 0.0767 +0 0.0962 +0 0.2219 +0 0.1825 +0 0.0398 +0 0.0603 +0 0.0482 +0 0.0355 +0 0.1937 +0 0.3100 +0 0.1212 +0 0.0665 +0 0.0665 +0 0.1155 +0 0.0626 +0 0.0964 +0 0.0767 +0 0.3084 +0 0.1215 +0 0.1802 +0 0.0881 +0 0.2750 +0 0.0938 +0 0.0667 +0 0.1040 +0 0.1808 +0 0.0867 +1 0.7676 +0 0.3534 +0 0.0954 +0 0.1042 +0 0.0774 +0 0.1022 +0 0.0984 +0 0.1328 +0 0.0680 +0 0.0646 +1 0.8655 +0 0.2075 +0 0.0852 +0 0.1749 +0 0.1338 +0 0.0713 +0 0.1468 +0 0.0430 +1 0.7650 +0 0.0974 +0 0.0903 +0 0.1310 +0 0.0502 +0 0.1562 +0 0.2433 +0 0.0722 +0 0.1242 +0 0.0891 +0 0.0664 +0 0.1111 +1 0.8313 +0 0.0914 +0 0.1705 +0 0.1735 +0 0.0757 +0 0.0845 +0 0.2005 +0 0.2308 +0 0.1530 +0 0.1828 +0 0.1979 +0 0.0554 +0 0.0896 +0 0.0551 +0 0.1318 +0 0.0900 +0 0.0907 +0 0.3881 +0 0.0625 +0 0.0580 +0 0.0891 +0 0.1043 +0 0.1244 +0 0.2080 +0 0.1776 +0 0.0347 +0 0.0609 +0 0.2163 +0 0.1019 +0 0.1596 +0 0.1501 +0 0.0889 +0 0.0628 +0 0.1166 +0 0.0575 +0 0.4777 +0 0.1256 +0 0.3157 +0 0.0850 +1 0.8034 +0 0.3158 +0 0.0713 +0 0.0792 +0 0.0743 +0 0.5239 +0 0.0526 +0 0.1037 +0 0.1592 +1 0.8662 +0 0.2212 +0 0.0383 +0 0.3172 +0 0.1000 +0 0.7453 +0 0.0754 +0 0.0694 +0 0.0473 +0 0.1553 +0 0.1021 +0 0.1368 +0 0.0357 +0 0.2509 +0 0.1913 +0 0.6415 +0 0.3620 +0 0.0794 +0 0.0982 +0 0.1310 +1 0.7721 +0 0.0830 +0 0.2735 +0 0.7432 +0 0.0715 +0 0.0625 +0 0.1193 +0 0.1882 +0 0.0661 +0 0.4327 +0 0.1069 +0 0.0594 +0 0.0754 +0 0.0470 +0 0.1035 +0 0.0470 +0 0.1512 +0 0.2365 +0 0.1026 +0 0.2427 +0 0.0836 +0 0.0668 +0 0.1323 +0 0.1609 +0 0.1161 +0 0.0394 +0 0.6567 +0 0.0716 +0 0.0442 +0 0.0463 +0 0.0557 +0 0.0930 +0 0.0899 +0 0.1470 +0 0.0749 +0 0.1604 +0 0.0763 +0 0.1506 +0 0.0378 +0 0.1002 +0 0.0389 +0 0.2133 +0 0.0482 +0 0.2015 +0 0.2243 +0 0.0814 +0 0.2277 +0 0.1948 +0 0.0542 +0 0.0684 +0 0.0426 +0 0.5966 +0 0.2769 +0 0.0908 +0 0.1151 +0 0.0547 +0 0.5802 +0 0.1293 +1 0.7632 +0 0.1103 +0 0.1070 +0 0.2093 +0 0.0740 +0 0.0596 +0 0.0781 +0 0.1315 +0 0.0577 +0 0.0896 +0 0.0845 +0 0.0606 +0 0.1362 +0 0.0898 +0 0.0915 +0 0.1013 +0 0.0978 +0 0.0681 +0 0.1983 +0 0.1863 +0 0.4298 +0 0.0681 +0 0.1005 +0 0.1173 +0 0.0789 +0 0.0992 +0 0.0999 +0 0.2443 +0 0.1398 +0 0.1280 +0 0.0864 +0 0.0776 +0 0.1418 +0 0.2775 +0 0.0639 +0 0.0692 +0 0.0686 +0 0.0571 +0 0.0694 +0 0.0987 +0 0.6454 +0 0.1459 +0 0.1393 +0 0.1058 +0 0.0662 +1 0.8559 +0 0.0786 +0 0.4101 +0 0.0985 +0 0.1153 +0 0.1998 +0 0.2044 +0 0.2032 +0 0.0714 +0 0.4324 +0 0.1198 +0 0.0953 +0 0.0468 +0 0.0725 +0 0.0505 +0 0.0881 +0 0.1259 +0 0.0691 +0 0.1479 +0 0.0365 +0 0.0808 +0 0.0357 +0 0.1205 +0 0.0669 +0 0.0633 +0 0.0793 +0 0.0895 +0 0.0933 +0 0.0875 +0 0.2499 +0 0.5931 +0 0.0944 +0 0.1680 +0 0.0529 +0 0.0860 +0 0.0984 +0 0.0478 +0 0.0417 +0 0.1578 +0 0.1547 +0 0.0568 +0 0.0472 +0 0.1437 +0 0.2638 +0 0.0610 +0 0.1868 +0 0.2087 +0 0.1927 +0 0.2369 +0 0.1082 +0 0.1583 +0 0.0378 +0 0.1425 +0 0.5933 +0 0.0979 +0 0.1730 +0 0.0959 +0 0.1226 +0 0.0542 +0 0.2638 +0 0.0888 +0 0.0412 +0 0.1420 +0 0.0744 +0 0.0531 +0 0.1077 +0 0.0794 +0 0.1685 +0 0.0409 +0 0.0868 +0 0.2105 +0 0.1956 +0 0.0623 +0 0.2001 +0 0.1333 +1 0.7734 +0 0.1918 +0 0.1535 +0 0.4058 +0 0.0955 +0 0.0855 +0 0.0730 +0 0.0665 +0 0.1399 +0 0.0516 +0 0.0756 +0 0.4515 +0 0.0855 +0 0.0568 +0 0.1000 +0 0.1043 +0 0.0694 +0 0.2349 +0 0.1585 +0 0.0743 +0 0.0820 +0 0.2054 +0 0.0379 +0 0.0472 +0 0.4304 +0 0.3729 +0 0.0851 +0 0.0669 +0 0.1737 +0 0.0817 +0 0.2752 +0 0.0939 +0 0.1459 +0 0.1400 +0 0.0576 +0 0.1272 +0 0.0563 +0 0.4538 +0 0.1228 +0 0.0881 +0 0.1049 +0 0.1456 +0 0.1974 +0 0.0602 +0 0.0457 +0 0.1724 +0 0.1161 +0 0.1789 +0 0.1463 +0 0.1015 +0 0.1876 +0 0.0901 +0 0.1596 +0 0.0619 +0 0.1056 +0 0.0422 +0 0.1912 +0 0.0739 +0 0.1049 +0 0.2573 +0 0.1239 +0 0.1068 +0 0.1156 +0 0.4015 +0 0.0526 +0 0.3320 +0 0.2708 +0 0.0498 +0 0.1615 +0 0.1612 +0 0.4328 +0 0.5220 +0 0.1330 +0 0.1268 +0 0.1021 +0 0.0638 +0 0.0402 +0 0.0652 +0 0.1076 +0 0.0695 +0 0.0666 +0 0.1188 +0 0.2289 +0 0.3061 +0 0.1496 +0 0.0977 +0 0.1025 +0 0.0587 +0 0.2049 +0 0.6971 +0 0.2112 +0 0.1200 +0 0.0797 +0 0.1162 +0 0.1982 +0 0.0647 +0 0.2000 +0 0.2316 +0 0.1071 +0 0.1547 +0 0.0553 +0 0.0762 +0 0.0745 +0 0.0780 +0 0.1541 +0 0.0583 +0 0.1038 +0 0.2767 +0 0.0662 +0 0.1350 +0 0.0899 +0 0.0958 +0 0.1078 +0 0.0830 +0 0.0794 +0 0.5360 +0 0.6634 +0 0.5698 +0 0.0740 +0 0.0515 +0 0.0897 +0 0.0947 +0 0.2609 +0 0.0814 +0 0.0505 +0 0.0896 +0 0.1206 +0 0.1498 +0 0.1278 +0 0.1250 +0 0.1655 +0 0.1373 +0 0.1701 +0 0.0726 +0 0.0469 +0 0.0787 +0 0.0443 +0 0.0781 +0 0.1318 +0 0.0594 +0 0.0367 +0 0.4497 +0 0.0694 +0 0.0840 +0 0.0637 +0 0.0826 +0 0.0989 +0 0.0558 +0 0.1332 +0 0.1040 +0 0.4524 +0 0.0589 +0 0.1896 +0 0.2004 +0 0.1197 +0 0.0524 +0 0.2613 +0 0.0666 +0 0.1052 +0 0.1251 +0 0.1180 +0 0.1187 +0 0.0943 +0 0.1344 +0 0.2008 +0 0.2869 +0 0.1743 +0 0.1884 +0 0.0669 +0 0.1959 +0 0.1273 +0 0.1718 +0 0.1091 +0 0.1074 +0 0.0531 +0 0.2250 +0 0.1112 +0 0.1457 +0 0.0877 +0 0.1089 +0 0.1200 +0 0.2717 +0 0.1844 +0 0.1521 +0 0.1054 +0 0.2188 +0 0.1368 +0 0.1097 +0 0.0503 +0 0.0505 +0 0.0667 +0 0.1122 +0 0.2174 +0 0.0786 +0 0.0684 +0 0.2606 +0 0.1559 +1 0.7618 +0 0.0979 +0 0.2098 +0 0.1111 +0 0.1259 +0 0.0757 +0 0.2037 +0 0.2053 +0 0.4826 +0 0.0816 +0 0.0630 +0 0.1227 +0 0.0541 +0 0.1839 +0 0.0742 +0 0.2472 +0 0.0810 +0 0.1312 +0 0.1407 +0 0.1628 +0 0.1013 +0 0.0799 +0 0.1171 +0 0.3291 +0 0.0809 +0 0.0994 +0 0.1382 +0 0.0536 +0 0.1284 +0 0.2230 +0 0.2138 +0 0.1379 +0 0.0658 +0 0.1091 +0 0.2545 +0 0.1211 +0 0.0366 +0 0.0929 +0 0.1070 +0 0.1081 +0 0.1875 +0 0.0850 +0 0.1322 +0 0.1579 +0 0.1316 +0 0.0836 +0 0.0512 +0 0.2700 +0 0.3489 +0 0.1253 +0 0.1692 +0 0.0638 +0 0.1079 +0 0.0934 +0 0.1584 +0 0.1150 +0 0.1407 +0 0.0494 +0 0.0924 +0 0.0991 +0 0.0609 +0 0.1566 +0 0.1315 +0 0.1336 +0 0.3286 +0 0.0563 +0 0.2165 +0 0.0501 +0 0.1357 +0 0.5960 +0 0.1585 +0 0.0642 +0 0.1499 +0 0.1186 +0 0.3330 +0 0.1444 +0 0.0769 +0 0.1681 +0 0.2859 +0 0.0893 +0 0.0712 +0 0.1251 +0 0.1815 +0 0.1030 +0 0.3030 +0 0.3007 +0 0.0870 +0 0.1213 +0 0.2172 +0 0.1869 +0 0.1648 +0 0.1208 +0 0.1026 +0 0.2550 +0 0.0494 +0 0.1734 +0 0.0363 +0 0.2109 +0 0.0355 +0 0.0820 +0 0.1728 +0 0.1303 +0 0.1416 +0 0.0934 +0 0.0689 +0 0.1148 +0 0.0674 +0 0.0879 +0 0.0408 +0 0.1214 +0 0.2545 +0 0.0921 +0 0.1186 +0 0.0883 +0 0.1667 +0 0.1105 +0 0.0550 +0 0.0692 +0 0.3932 +0 0.1619 +0 0.1096 +0 0.0595 +0 0.5512 +0 0.1706 +0 0.0413 +0 0.0929 +0 0.0574 +0 0.1011 +0 0.4863 +0 0.1778 +0 0.1970 +0 0.0780 +0 0.1033 +0 0.2015 +0 0.1479 +0 0.1602 +0 0.0554 +0 0.1362 +0 0.0933 +0 0.1321 +0 0.3447 +0 0.1774 +0 0.3946 +0 0.1089 +0 0.2196 +0 0.1565 +0 0.2515 +0 0.1089 +0 0.0730 +0 0.1799 +0 0.1937 +0 0.0318 +0 0.0561 +0 0.1077 +0 0.2560 +0 0.0818 +0 0.0709 +0 0.1203 +0 0.3468 +1 0.8461 +0 0.1269 +0 0.0639 +0 0.0824 +0 0.0672 +0 0.2771 +0 0.1158 +0 0.0841 +0 0.1026 +0 0.1683 +0 0.2013 +0 0.1593 +0 0.1764 +0 0.0697 +0 0.2036 +0 0.2108 +0 0.0851 +0 0.0879 +0 0.0676 +0 0.1227 +0 0.5218 +0 0.2258 +0 0.0571 +0 0.1328 +0 0.3706 +0 0.1369 +0 0.0892 +0 0.1143 +0 0.0364 +0 0.4760 +0 0.0364 +0 0.1205 +0 0.0605 +0 0.1086 +0 0.0765 +0 0.1041 +0 0.1117 +0 0.2091 +0 0.2059 +0 0.2993 +0 0.1728 +0 0.6569 +0 0.0923 +0 0.0893 +0 0.0631 +0 0.1634 +0 0.2550 +0 0.0743 +0 0.1770 +0 0.1397 +0 0.1778 +0 0.1213 +0 0.0561 +0 0.0948 +0 0.1661 +0 0.1129 +0 0.1285 +0 0.0629 +0 0.1656 +0 0.1648 +0 0.1362 +0 0.2476 +0 0.0797 +0 0.1675 +0 0.0760 +0 0.5066 +0 0.1062 +0 0.0742 +0 0.0550 +0 0.1557 +0 0.0989 +0 0.1271 +0 0.1825 +0 0.1485 +0 0.0893 +0 0.0832 +0 0.1332 +0 0.0684 +0 0.1256 +0 0.1083 +0 0.1040 +0 0.0487 +0 0.0919 +0 0.0815 +0 0.1678 +0 0.0495 +0 0.1039 +0 0.0852 +0 0.2434 +0 0.0870 +0 0.0748 +0 0.3098 +0 0.0897 +0 0.3832 +0 0.0352 +0 0.0561 +0 0.0703 +0 0.1223 +0 0.0766 +0 0.1271 +0 0.0404 +0 0.1189 +0 0.6115 +0 0.0696 +0 0.1060 +0 0.1073 +0 0.1212 +0 0.0595 +0 0.2722 +0 0.0735 +0 0.0435 +0 0.1024 +0 0.0845 +0 0.2975 +0 0.1641 +0 0.2170 +0 0.1251 +0 0.2116 +0 0.2281 +0 0.1188 +0 0.0673 +0 0.1159 +0 0.1624 +0 0.3573 +0 0.0952 +0 0.4906 +0 0.1493 +0 0.1544 +0 0.0761 +0 0.0850 +0 0.1064 +0 0.0752 +0 0.0706 +0 0.0391 +0 0.2279 +0 0.1212 +0 0.0926 +0 0.1642 +0 0.1683 +0 0.1980 +0 0.0631 +0 0.1190 +0 0.0489 +0 0.0988 +0 0.0504 +0 0.2328 +0 0.0594 +0 0.1404 +0 0.1119 +0 0.1143 +0 0.0920 +0 0.0426 +0 0.0778 +0 0.0736 +0 0.1075 +0 0.2006 +0 0.0614 +0 0.0627 +0 0.0969 +0 0.3506 +0 0.1191 +0 0.0522 +0 0.2026 +0 0.0624 +0 0.0790 +0 0.0849 +0 0.1445 +0 0.0948 +0 0.1136 +0 0.1417 +0 0.1342 +0 0.2176 +0 0.0493 +0 0.1704 +0 0.0688 +0 0.1197 +0 0.5693 +0 0.0625 +0 0.1234 +0 0.1575 +0 0.2010 +0 0.0790 +0 0.1083 +0 0.1289 +0 0.0766 +0 0.1414 +0 0.1657 +0 0.1820 +0 0.1389 +0 0.0390 +0 0.1469 +0 0.1364 +0 0.2511 +0 0.1184 +1 0.8346 +0 0.1832 +0 0.0975 +0 0.1060 +0 0.1134 +0 0.2919 +0 0.1676 +0 0.0969 +0 0.0979 +0 0.1903 +0 0.0965 +0 0.1672 +0 0.0413 +0 0.2409 +0 0.2087 +0 0.0520 +0 0.0564 +1 0.7628 +0 0.0468 +0 0.2054 +0 0.1228 +0 0.0364 +0 0.0923 +0 0.0540 +0 0.1198 +0 0.0978 +0 0.0550 +0 0.1774 +0 0.1963 +0 0.0661 +0 0.1200 +0 0.1083 +0 0.1162 +0 0.1372 +0 0.1439 +0 0.1957 +0 0.2816 +0 0.1610 +0 0.2094 +0 0.2482 +0 0.1957 +0 0.6518 +0 0.1590 +0 0.1332 +1 0.8139 +0 0.0993 +0 0.2209 +0 0.3119 +0 0.0905 +0 0.0502 +0 0.0671 +0 0.1591 +0 0.0689 +0 0.1594 +0 0.0732 +0 0.0792 +0 0.1050 +0 0.0936 +0 0.0793 +0 0.1870 +0 0.0837 +0 0.0604 +0 0.1096 +0 0.1695 +0 0.0552 +0 0.0914 +0 0.0759 +0 0.0784 +1 0.7832 +0 0.1322 +0 0.0673 +0 0.0708 +0 0.1277 +0 0.2287 +0 0.4927 +0 0.0714 +0 0.0714 +0 0.1000 +0 0.2157 +0 0.2299 +0 0.3001 +0 0.1258 +0 0.1052 +0 0.0814 +0 0.3449 +0 0.1825 +0 0.1184 +0 0.1210 +0 0.0696 +0 0.3440 +0 0.0490 +0 0.0848 +0 0.0438 +0 0.0939 +0 0.2253 +0 0.1104 +0 0.1160 +0 0.1146 +0 0.0666 +0 0.0689 +0 0.1601 +0 0.4048 +0 0.0691 +0 0.1355 +0 0.2502 +0 0.4534 +0 0.1227 +0 0.0589 +0 0.0822 +0 0.0426 +0 0.2877 +0 0.0995 +1 0.8449 +0 0.1982 +1 0.8058 +0 0.0466 +0 0.1511 +0 0.1343 +0 0.1389 +0 0.0717 +0 0.1134 +0 0.1041 +0 0.0834 +0 0.2214 +0 0.2548 +0 0.0577 +0 0.0691 +0 0.4691 +0 0.1326 +0 0.0758 +0 0.1698 +0 0.0848 +0 0.0661 +0 0.1304 +0 0.1045 +0 0.0719 +0 0.3429 +0 0.1652 +0 0.6867 +0 0.0723 +0 0.1934 +0 0.0657 +0 0.4621 +1 0.7874 +0 0.0836 +0 0.0807 +0 0.1803 +0 0.1204 +0 0.0593 +0 0.1009 +0 0.1026 +0 0.1922 +0 0.0872 +0 0.1922 +0 0.0883 +0 0.0482 +0 0.1828 +0 0.0813 +0 0.1172 +0 0.1550 +0 0.0989 +0 0.0914 +0 0.0902 +1 0.8200 +0 0.1991 +1 0.7736 +0 0.2147 +0 0.0783 +0 0.0746 +0 0.0608 +0 0.0565 +1 0.8098 +0 0.1392 +0 0.0901 +0 0.3354 +0 0.0459 +0 0.2199 +0 0.0633 +0 0.0773 +0 0.1164 +0 0.0860 +0 0.0848 +0 0.1282 +0 0.0842 +0 0.1933 +0 0.1096 +0 0.1116 +0 0.1193 +0 0.6782 +0 0.0794 +0 0.0654 +0 0.0644 +0 0.1994 +0 0.0551 +0 0.0725 +0 0.0546 +0 0.0571 +0 0.1749 +0 0.1206 +0 0.1114 +0 0.2743 +0 0.5741 +0 0.1053 +0 0.1306 +0 0.0782 +0 0.0895 +0 0.5741 +0 0.1265 +0 0.1998 +0 0.0416 +0 0.0915 +0 0.0914 +0 0.1180 +0 0.1274 +0 0.1451 +0 0.1180 +0 0.0612 +0 0.1088 +0 0.0628 +0 0.0757 +0 0.0667 +0 0.1047 +0 0.0729 +0 0.0738 +0 0.0966 +0 0.0753 +0 0.1265 +0 0.0561 +0 0.1375 +0 0.1867 +1 0.7895 +0 0.0741 +0 0.5580 +0 0.0720 +0 0.2573 +0 0.2859 +0 0.0870 +0 0.0825 +0 0.0896 +0 0.0470 +0 0.1433 +0 0.3597 +0 0.2549 +0 0.0963 +0 0.1013 +0 0.0855 +0 0.5906 +0 0.0446 +0 0.0836 +0 0.1727 +0 0.1308 +0 0.4873 +0 0.0540 +0 0.1373 +0 0.0861 +0 0.0335 +0 0.0555 +0 0.1720 +0 0.0574 +0 0.1511 +0 0.1600 +0 0.0720 +0 0.2089 +0 0.0777 +0 0.1306 +0 0.0874 +0 0.1270 +0 0.0955 +0 0.0791 +0 0.0600 +0 0.1167 +0 0.1230 +0 0.4742 +0 0.0785 +0 0.0597 +0 0.0587 +0 0.1974 +0 0.3141 +0 0.2297 +0 0.1638 +0 0.0607 +0 0.3722 +0 0.2427 +0 0.0623 +0 0.1283 +0 0.2560 +0 0.0991 +0 0.1717 +0 0.1832 +0 0.1021 +0 0.0927 +0 0.2495 +0 0.3159 +0 0.0316 +0 0.1106 +0 0.3243 +0 0.2948 +0 0.2340 +0 0.2335 +0 0.2229 +0 0.0931 +0 0.1290 +0 0.0348 +0 0.1595 +0 0.0336 +0 0.2037 +0 0.0762 +0 0.1365 +0 0.3244 +0 0.1452 +0 0.1330 +0 0.0798 +0 0.1186 +0 0.0549 +0 0.1345 +0 0.0721 +0 0.6181 +0 0.0777 +0 0.0805 +0 0.0464 +0 0.0759 +0 0.1162 +0 0.0944 +0 0.3369 +0 0.0484 +0 0.0421 +0 0.1532 +0 0.1201 +0 0.0659 +0 0.0894 +0 0.1874 +0 0.7053 +0 0.1188 +0 0.7285 +0 0.1701 +0 0.1819 +0 0.2680 +0 0.0636 +0 0.1118 +0 0.1109 +0 0.0498 +0 0.4446 +0 0.0578 +0 0.1810 +0 0.0784 +0 0.2224 +0 0.1341 +0 0.0500 +0 0.1160 +0 0.2152 +0 0.0573 +0 0.0759 +0 0.1826 +0 0.3075 +0 0.0904 +0 0.1695 +0 0.1261 +0 0.3513 +0 0.0809 +0 0.3119 +0 0.0525 +0 0.1453 +0 0.0944 +0 0.0838 +0 0.0957 +0 0.4190 +0 0.1492 +0 0.0760 +0 0.0410 +0 0.1668 +0 0.0721 +0 0.1563 +0 0.0840 +0 0.1290 +0 0.2169 +0 0.0970 +0 0.0750 +0 0.0838 +0 0.1496 +0 0.4323 +0 0.6722 +0 0.1940 +0 0.2111 +1 0.8290 +0 0.3172 +0 0.0721 +0 0.5002 +0 0.1945 +0 0.1095 +0 0.1705 +0 0.1402 +0 0.0680 +0 0.0565 +0 0.0967 +0 0.0409 +0 0.2672 +0 0.0511 +0 0.0535 +0 0.1103 +0 0.2350 +0 0.0676 +0 0.2112 +0 0.0798 +0 0.0581 +0 0.6838 +0 0.0377 +0 0.4238 +0 0.1100 +0 0.0663 +0 0.2310 +0 0.0834 +0 0.2394 +0 0.0615 +0 0.0402 +0 0.1327 +0 0.0510 +0 0.0589 +0 0.1039 +0 0.3723 +0 0.1623 +0 0.0609 +0 0.5152 +0 0.0594 +0 0.0765 +0 0.0383 +0 0.0506 +0 0.0315 +0 0.1182 +0 0.0997 +0 0.1280 +0 0.1127 +0 0.2853 +0 0.0747 +0 0.0562 +0 0.1949 +0 0.1224 +0 0.1035 +0 0.1342 +0 0.0863 +0 0.1306 +0 0.0895 +0 0.0638 +1 0.3453 +0 0.0733 +0 0.1608 +0 0.1783 +0 0.1089 +0 0.1578 +0 0.0566 +0 0.1909 +0 0.0757 +0 0.1159 +0 0.1093 +0 0.1181 +0 0.0523 +0 0.1251 +0 0.0397 +0 0.3500 +0 0.0816 +0 0.0586 +0 0.0694 +0 0.1150 +0 0.0881 +0 0.4654 +0 0.0316 +0 0.1216 +0 0.1241 +0 0.0977 +0 0.1298 +0 0.1171 +0 0.1068 +0 0.1564 +0 0.0415 +0 0.1638 +0 0.1519 +1 0.8541 +0 0.0565 +0 0.1587 +0 0.0484 +0 0.0546 +0 0.3102 +0 0.0910 +0 0.2032 +0 0.0537 +0 0.1830 +0 0.2218 +0 0.1966 +0 0.3085 +0 0.1188 +0 0.3012 +0 0.0897 +0 0.0757 +0 0.0966 +0 0.0812 +0 0.0950 +0 0.1890 +0 0.3736 +0 0.0379 +0 0.0530 +0 0.1236 +0 0.0770 +0 0.0832 +0 0.0609 +0 0.1293 +0 0.0505 +0 0.1381 +0 0.1490 +0 0.1318 +0 0.2265 +0 0.7114 +0 0.0396 +0 0.0858 +0 0.1301 +0 0.1074 +0 0.1262 +0 0.1000 +0 0.0620 +0 0.0563 +0 0.1115 +0 0.1251 +0 0.1121 +0 0.0593 +0 0.1860 +0 0.0548 +0 0.0975 +0 0.2371 +0 0.1350 +0 0.0825 +0 0.0881 +0 0.1614 +0 0.2174 +0 0.0923 +0 0.0962 +0 0.1863 +0 0.2067 +0 0.1461 +0 0.0782 +0 0.2736 +0 0.0653 +0 0.1386 +0 0.2252 +0 0.1958 +0 0.1773 +0 0.1926 +0 0.1174 +0 0.0609 +0 0.0810 +0 0.0990 +0 0.0806 +0 0.1559 +0 0.2172 +0 0.0333 +0 0.1340 +0 0.0666 +0 0.3483 +0 0.0674 +0 0.0474 +0 0.0728 +0 0.1412 +0 0.0857 +0 0.0320 +0 0.0832 +0 0.1300 +0 0.6643 +0 0.2271 +0 0.0530 +0 0.1881 +0 0.3405 +0 0.0978 +0 0.0405 +0 0.0828 +0 0.1022 +0 0.0897 +0 0.0824 +0 0.1261 +0 0.0870 +0 0.0529 +0 0.1282 +0 0.0454 +0 0.0934 +0 0.2078 +0 0.1174 +0 0.1257 +0 0.1327 +0 0.0687 +0 0.0954 +0 0.1695 +0 0.0772 +0 0.1760 +0 0.4446 +0 0.1218 +0 0.0632 +0 0.1384 +0 0.3405 +0 0.1401 +0 0.3521 +0 0.1120 +0 0.1043 +0 0.0636 +0 0.1480 +0 0.4479 +0 0.6611 +0 0.1063 +0 0.2001 +0 0.1009 +0 0.0536 +0 0.6805 +0 0.1844 +0 0.0916 +0 0.1550 +0 0.2468 +0 0.2069 +0 0.1274 +0 0.0686 +0 0.1419 +0 0.1140 +0 0.0627 +0 0.1314 +0 0.1234 +0 0.0902 +0 0.1292 +0 0.0728 +0 0.1456 +0 0.0507 +0 0.4538 +0 0.0757 +0 0.1238 +0 0.0377 +0 0.1398 +0 0.1054 +0 0.1884 +0 0.0578 +0 0.0900 +0 0.1967 +0 0.0941 +0 0.1595 +0 0.1422 +0 0.1320 +0 0.0807 +0 0.0968 +1 0.8622 +0 0.0666 +0 0.0854 +0 0.0835 +0 0.5333 +0 0.5921 +1 0.8616 +0 0.1783 +0 0.2003 +0 0.0588 +0 0.0993 +0 0.0545 +0 0.0592 +0 0.0812 +0 0.0731 +0 0.1214 +0 0.0505 +0 0.6025 +0 0.0518 +0 0.0733 +0 0.2545 +0 0.2343 +0 0.1998 +0 0.0728 +0 0.0976 +0 0.0695 +0 0.1686 +0 0.0801 +0 0.1359 +0 0.2920 +0 0.0901 +0 0.1022 +0 0.0789 +0 0.0737 +0 0.0601 +0 0.1763 +0 0.0369 +0 0.0705 +0 0.0822 +0 0.0498 +0 0.0746 +0 0.1004 +0 0.2618 +0 0.1533 +0 0.2950 +0 0.0726 +0 0.2383 +0 0.0523 +0 0.2604 +0 0.1968 +0 0.3444 +0 0.1159 +0 0.1123 +0 0.4309 +0 0.0414 +0 0.0768 +0 0.0936 +0 0.0471 +0 0.1160 +0 0.1206 +0 0.1193 +0 0.1453 +0 0.0618 +0 0.0745 +0 0.1730 +0 0.2494 +0 0.1300 +0 0.1151 +0 0.0465 +0 0.0592 +0 0.0764 +0 0.2864 +0 0.2301 +0 0.2375 +0 0.7106 +0 0.3272 +0 0.0899 +0 0.1352 +0 0.1981 +0 0.1800 +0 0.0737 +0 0.1570 +0 0.0845 +0 0.1638 +0 0.2434 +0 0.2326 +0 0.1002 +0 0.2360 +0 0.1698 +0 0.0600 +0 0.1001 +0 0.0397 +0 0.1306 +0 0.1198 +0 0.1128 +0 0.0670 +0 0.0454 +0 0.0503 +0 0.0823 +0 0.0570 +0 0.1397 +0 0.2240 +0 0.1708 +0 0.0360 +0 0.1059 +0 0.1928 +0 0.0434 +0 0.1007 +0 0.0441 +1 0.8537 +0 0.2318 +0 0.1970 +0 0.0812 +0 0.1116 +0 0.0645 +0 0.0710 +0 0.1456 +0 0.0547 +0 0.1161 +0 0.1348 +0 0.2158 +0 0.0634 +0 0.2773 +0 0.1893 +0 0.1558 +0 0.0542 +0 0.0704 +0 0.0898 +0 0.1111 +0 0.4094 +0 0.0600 +0 0.1010 +0 0.0809 +0 0.0933 +0 0.1164 +0 0.1819 +0 0.0562 +0 0.2222 +0 0.1852 +0 0.1133 +0 0.1470 +0 0.2849 +0 0.0749 +0 0.2230 +0 0.1066 +0 0.0994 +0 0.0715 +0 0.0991 +0 0.1026 +0 0.0597 +0 0.0980 +0 0.0546 +0 0.0372 +0 0.0718 +0 0.1438 +0 0.0711 +0 0.0992 +0 0.0705 +0 0.0427 +0 0.1310 +0 0.0891 +0 0.0765 +0 0.0641 +0 0.1083 +0 0.0548 +0 0.1902 +0 0.2240 +0 0.0639 +0 0.0679 +0 0.1085 +0 0.1347 +0 0.0588 +0 0.0745 +0 0.1171 +0 0.0775 +0 0.1540 +0 0.0745 +0 0.2123 +0 0.3704 +0 0.0610 +0 0.0887 +0 0.1425 +0 0.2526 +0 0.0619 +0 0.1494 +0 0.0830 +0 0.3002 +0 0.0549 +0 0.0298 +0 0.2428 +0 0.2485 +0 0.0907 +0 0.1014 +0 0.1035 +0 0.1290 +0 0.1273 +0 0.1951 +0 0.1241 +0 0.0598 +0 0.2169 +0 0.0872 +0 0.0790 +0 0.0333 +0 0.0527 +0 0.0451 +0 0.0655 +0 0.0659 +0 0.6239 +0 0.1219 +0 0.1147 +0 0.0704 +0 0.0875 +0 0.0406 +0 0.0975 +1 0.7967 +0 0.2572 +0 0.0789 +0 0.2300 +0 0.1021 +0 0.2722 +0 0.2544 +0 0.1045 +0 0.1474 +0 0.1878 +0 0.2372 +0 0.0566 +0 0.0654 +0 0.1330 +0 0.2243 +0 0.3104 +0 0.1219 +0 0.1672 +1 0.8476 +0 0.0485 +0 0.0668 +0 0.0347 +0 0.1207 +0 0.1331 +0 0.0503 +0 0.5905 +1 0.7699 +0 0.4791 +0 0.0467 +0 0.0836 +0 0.1660 +0 0.0308 +0 0.0707 +0 0.1084 +0 0.1948 +0 0.1080 +0 0.0419 +0 0.1419 +0 0.0665 +0 0.1827 +0 0.1969 +0 0.1238 +0 0.2347 +0 0.1965 +0 0.1476 +1 0.8749 +0 0.3375 +0 0.1591 +0 0.0975 +0 0.0820 +0 0.1640 +0 0.0903 +0 0.1344 +0 0.1426 +0 0.0849 +0 0.1122 +0 0.1797 +0 0.1821 +0 0.2496 +0 0.1417 +0 0.1079 +0 0.1344 +0 0.1870 +0 0.0830 +0 0.3624 +0 0.0697 +0 0.0803 +0 0.1009 +0 0.0513 +0 0.0615 +0 0.0989 +0 0.1083 +0 0.0529 +1 0.8425 +0 0.1976 +0 0.1209 +0 0.0707 +0 0.1216 +0 0.1261 +0 0.1843 +0 0.0874 +0 0.0487 +0 0.1176 +0 0.4993 +0 0.2818 +0 0.0910 +0 0.0614 +0 0.1042 +0 0.1026 +0 0.0783 +0 0.1312 +0 0.1090 +0 0.1056 +0 0.4443 +0 0.3064 +0 0.1044 +0 0.0547 +0 0.3075 +0 0.1392 +0 0.1714 +0 0.0862 +0 0.1204 +0 0.2183 +0 0.1029 +0 0.0965 +0 0.1750 +0 0.1324 +0 0.2012 +0 0.0611 +0 0.1786 +0 0.2762 +0 0.1287 +0 0.1274 +0 0.1023 +0 0.0532 +0 0.0684 +0 0.0454 +0 0.3314 +0 0.0467 +0 0.0639 +0 0.1952 +0 0.0686 +0 0.1231 +0 0.0408 +0 0.0822 +0 0.0693 +0 0.1284 +0 0.0753 +0 0.0495 +0 0.0836 +0 0.0684 +0 0.0911 +0 0.0912 +0 0.1717 +0 0.0894 +0 0.1203 +0 0.2122 +0 0.1270 +0 0.0375 +0 0.2024 +0 0.0636 +0 0.2261 +0 0.0806 +0 0.2235 +0 0.0494 +0 0.1522 +0 0.0711 +0 0.1466 +0 0.0347 +0 0.0394 +0 0.0436 +0 0.1505 +0 0.0931 +0 0.1092 +0 0.1723 +0 0.0963 +0 0.0699 +0 0.0494 +0 0.3771 +0 0.0935 +0 0.1296 +0 0.0565 +0 0.1557 +0 0.0542 +0 0.1613 +0 0.1808 +0 0.5501 +0 0.3564 +0 0.1919 +0 0.0545 +0 0.1309 +0 0.0551 +0 0.0548 +0 0.1333 +0 0.1483 +0 0.2808 +0 0.0816 +0 0.1092 +0 0.0639 +0 0.1099 +0 0.2686 +0 0.1066 +0 0.1950 +0 0.0955 +0 0.1832 +0 0.2942 +0 0.1166 +0 0.0513 +0 0.1813 +0 0.0650 +0 0.1192 +0 0.2265 +0 0.4977 +0 0.0422 +0 0.1014 +0 0.0801 +0 0.1011 +0 0.1404 +0 0.1921 +0 0.0695 +0 0.1570 +0 0.1430 +0 0.1152 +0 0.0521 +0 0.0435 +0 0.0583 +0 0.0760 +0 0.1989 +0 0.1034 +0 0.2397 +0 0.1159 +0 0.0540 +0 0.1207 +0 0.0754 +0 0.0884 +0 0.1313 +0 0.0579 +0 0.0861 +0 0.1257 +0 0.2360 +0 0.0969 +0 0.0741 +1 0.7733 +0 0.0833 +0 0.1005 +0 0.1013 +0 0.0964 +0 0.0966 +0 0.0963 +0 0.0783 +0 0.2205 +0 0.2210 +0 0.1110 +0 0.0419 +0 0.0636 +0 0.1101 +0 0.1110 +0 0.0977 +0 0.1910 +0 0.1914 +0 0.1388 +0 0.0839 +0 0.7130 +0 0.3337 +0 0.1214 +0 0.0936 +0 0.1065 +0 0.0666 +0 0.0723 +0 0.1323 +0 0.0617 +0 0.3059 +0 0.0807 +0 0.0694 +0 0.2053 +0 0.0441 +0 0.0959 +0 0.1007 +0 0.2770 +0 0.0853 +0 0.0885 +0 0.1748 +0 0.1720 +0 0.2659 +0 0.3879 +0 0.0938 +0 0.1386 +0 0.0511 +0 0.1271 +0 0.3167 +0 0.0960 +0 0.0865 +0 0.1552 +0 0.3993 +0 0.1481 +0 0.1356 +0 0.7067 +0 0.0948 +0 0.1455 +0 0.2623 +0 0.6634 +0 0.1193 +0 0.2786 +0 0.1003 +0 0.0859 +0 0.0573 +0 0.0558 +0 0.5217 +0 0.0527 +0 0.0976 +0 0.0873 +0 0.1671 +0 0.1501 +0 0.1018 +0 0.3138 +0 0.1057 +0 0.1942 +0 0.1305 +0 0.0772 +0 0.0872 +0 0.5253 +0 0.0809 +0 0.4413 +0 0.1523 +0 0.6523 +0 0.0611 +0 0.0786 +0 0.0658 +0 0.0830 +0 0.0650 +0 0.0882 +0 0.0547 +0 0.0614 +0 0.0880 +0 0.0939 +0 0.0667 +0 0.6913 +0 0.0943 +0 0.5005 +0 0.1212 +0 0.1706 +0 0.4133 +0 0.0516 +0 0.0804 +0 0.2280 +0 0.0697 +0 0.2196 +0 0.1164 +0 0.2045 +0 0.0862 +0 0.1804 +0 0.2172 +0 0.0890 +0 0.0375 +0 0.0945 +0 0.1134 +0 0.1104 +0 0.1506 +0 0.0738 +0 0.0532 +0 0.1887 +0 0.0976 +0 0.1017 +0 0.1140 +0 0.0689 +0 0.1013 +0 0.2075 +0 0.1396 +0 0.0862 +1 0.7854 +0 0.0806 +0 0.1737 +0 0.0586 +0 0.1840 +0 0.0672 +0 0.0793 +0 0.2357 +0 0.0696 +0 0.5567 +0 0.0720 +0 0.2420 +0 0.1300 +0 0.1714 +0 0.0612 +0 0.5546 +0 0.1858 +0 0.1139 +0 0.0908 +0 0.3784 +0 0.1775 +0 0.0820 +0 0.0927 +0 0.0703 +0 0.0572 +0 0.0395 +0 0.2073 +0 0.0804 +0 0.1015 +0 0.0610 +0 0.1616 +1 0.7842 +0 0.0807 +0 0.0394 +0 0.0924 +0 0.0798 +0 0.1225 +0 0.0461 +0 0.0468 +0 0.2866 +0 0.1597 +0 0.1302 +0 0.5696 +0 0.0679 +0 0.0949 +0 0.2218 +0 0.6386 +0 0.1086 +0 0.0334 +0 0.0568 +0 0.1723 +0 0.0827 +0 0.1077 +0 0.0607 +0 0.0740 +0 0.0605 +0 0.0852 +0 0.1986 +0 0.1010 +0 0.0792 +0 0.0840 +0 0.0981 +0 0.1275 +0 0.0417 +0 0.0622 +1 0.8394 +0 0.0727 +0 0.1059 +0 0.1479 +0 0.1671 +0 0.1413 +0 0.0408 +0 0.1613 +1 0.8284 +0 0.0524 +1 0.7699 +0 0.0960 +0 0.0941 +0 0.0770 +0 0.0768 +0 0.1430 +0 0.0662 +0 0.1991 +0 0.0557 +0 0.0546 +0 0.0787 +1 0.8239 +0 0.0472 +0 0.1353 +0 0.3137 +0 0.0663 +0 0.0901 +0 0.0795 +0 0.1598 +0 0.0706 +0 0.3472 +0 0.6004 +0 0.1268 +0 0.2220 +0 0.0957 +0 0.1047 +0 0.0411 +0 0.0446 +0 0.3079 +0 0.2037 +0 0.6181 +0 0.1785 +0 0.1311 +0 0.0777 +0 0.0879 +0 0.1192 +0 0.6849 +0 0.7302 +0 0.1198 +0 0.0798 +0 0.0636 +0 0.1221 +0 0.0589 +0 0.1298 +0 0.1964 +0 0.1588 +0 0.1762 +0 0.1616 +0 0.0862 +0 0.1731 +0 0.1634 +0 0.0710 +0 0.2757 +0 0.1104 +0 0.2779 +0 0.0922 +0 0.0594 +0 0.1419 +0 0.0798 +0 0.0817 +0 0.1241 +0 0.1233 +0 0.0778 +0 0.1357 +0 0.6798 +0 0.0369 +0 0.1768 +0 0.1304 +0 0.0739 +0 0.1529 +0 0.1316 +0 0.0683 +0 0.2551 +0 0.0943 +0 0.0440 +0 0.0795 +0 0.1055 +0 0.1332 +0 0.1094 +0 0.0608 +0 0.0958 +0 0.0633 +0 0.0604 +0 0.1073 +0 0.0850 +0 0.1344 +0 0.0652 +0 0.0640 +0 0.0542 +0 0.0769 +0 0.1614 +0 0.1658 +0 0.3962 +1 0.7649 +0 0.1186 +0 0.0473 +0 0.1007 +0 0.2085 +0 0.1176 +0 0.6573 +0 0.6845 +0 0.1220 +0 0.3584 +0 0.0641 +0 0.2160 +0 0.2409 +0 0.2294 +0 0.1306 +0 0.1004 +0 0.1057 +0 0.1875 +0 0.0811 +0 0.0600 +0 0.1352 +0 0.0696 +1 0.8503 +0 0.6909 +0 0.0449 +0 0.1330 +0 0.1188 +0 0.0533 +0 0.0535 +0 0.0403 +0 0.0391 +0 0.0657 +0 0.0943 +0 0.0869 +0 0.1275 +0 0.1502 +0 0.0694 +0 0.1055 +0 0.0456 +0 0.0646 +0 0.1616 +0 0.0717 +0 0.1569 +0 0.1047 +0 0.2847 +0 0.2286 +0 0.0759 +0 0.0742 +0 0.0949 +0 0.1374 +0 0.0403 +0 0.1108 +0 0.1424 +0 0.3445 +0 0.1563 +0 0.0420 +0 0.1364 +0 0.0741 +0 0.1310 +0 0.1537 +0 0.0796 +0 0.6774 +0 0.1626 +0 0.0895 +0 0.1802 +0 0.1348 +0 0.0990 +0 0.1040 +0 0.0490 +0 0.0466 +0 0.0741 +0 0.0901 +0 0.1403 +0 0.1990 +0 0.0643 +0 0.0680 +0 0.0701 +0 0.0656 +0 0.0992 +0 0.1268 +0 0.3194 +0 0.2605 +0 0.0613 +0 0.0497 +0 0.0873 +0 0.0724 +0 0.0976 +0 0.0852 +0 0.2018 +0 0.1114 +0 0.0966 +1 0.2998 +0 0.2115 +0 0.2171 +0 0.3126 +1 0.8789 +0 0.1076 +0 0.0840 +0 0.1328 +0 0.0627 +0 0.1184 +0 0.1463 +0 0.1469 +0 0.1073 +0 0.1646 +0 0.0740 +0 0.0580 +0 0.3481 +0 0.1241 +0 0.0433 +0 0.0625 +0 0.0798 +0 0.6361 +0 0.0915 +0 0.0997 +0 0.0627 +0 0.0926 +0 0.0353 +0 0.0687 +0 0.0611 +0 0.1306 +0 0.0796 +0 0.1308 +0 0.1109 +0 0.1906 +0 0.0577 +0 0.1407 +0 0.5980 +0 0.0775 +0 0.1162 +0 0.1686 +0 0.1010 +0 0.0760 +0 0.1556 +0 0.0723 +0 0.2529 +0 0.0551 +0 0.2298 +0 0.1627 +0 0.1439 +0 0.0869 +0 0.0744 +0 0.0871 +0 0.0558 +0 0.1210 +0 0.2691 +1 0.9047 +0 0.6842 +0 0.0863 +0 0.0904 +0 0.0924 +0 0.1163 +0 0.1454 +0 0.2218 +0 0.1293 +0 0.1396 +0 0.0827 +0 0.3347 +0 0.0595 +0 0.1364 +0 0.1234 +0 0.0719 +0 0.1408 +0 0.0451 +0 0.0670 +0 0.1102 +1 0.8118 +0 0.2621 +0 0.2340 +0 0.0957 +0 0.0484 +0 0.0491 +0 0.0899 +0 0.2220 +0 0.1024 +0 0.1492 +0 0.1464 +0 0.0729 +0 0.0912 +1 0.7917 +0 0.1444 +0 0.0331 +0 0.1301 +0 0.2022 +0 0.1450 +0 0.0812 +0 0.0764 +0 0.1308 +0 0.5974 +0 0.0928 +0 0.2076 +0 0.0682 +0 0.1718 +0 0.1823 +0 0.0668 +0 0.0641 +0 0.0899 +0 0.1239 +0 0.1910 +0 0.0922 +0 0.1259 +0 0.2394 +0 0.1606 +0 0.1386 +0 0.1091 +0 0.0617 +0 0.0763 +0 0.0613 +0 0.1791 +0 0.0411 +0 0.2782 +0 0.1632 +0 0.1438 +0 0.2004 +0 0.0788 +0 0.0324 +0 0.2093 +0 0.1591 +0 0.1611 +0 0.0589 +0 0.1921 +0 0.1102 +0 0.1090 +0 0.6946 +0 0.0943 +0 0.1427 +0 0.1236 +0 0.2159 +0 0.0393 +0 0.0691 +0 0.0778 +0 0.1058 +0 0.1072 +1 0.7588 +0 0.0593 +0 0.1288 +0 0.0644 +0 0.1050 +0 0.1246 +0 0.0675 +0 0.0895 +0 0.0661 +0 0.1923 +0 0.0484 +0 0.0786 +0 0.0640 +0 0.0444 +0 0.2248 +0 0.0734 +0 0.0705 +0 0.0869 +0 0.1194 +0 0.1461 +0 0.0538 +0 0.0525 +0 0.0547 +1 0.3300 +0 0.1574 +0 0.7157 +0 0.0902 +0 0.1030 +0 0.0632 +0 0.5256 +0 0.1098 +0 0.0779 +0 0.0583 +0 0.1146 +0 0.1589 +0 0.1887 +0 0.1812 +0 0.0743 +0 0.2844 +0 0.0321 +0 0.2497 +0 0.1985 +0 0.1804 +0 0.1264 +0 0.1354 +0 0.0520 +0 0.0434 +0 0.0479 +0 0.0955 +0 0.1259 +0 0.1378 +0 0.1033 +0 0.1792 +0 0.1231 +0 0.1571 +0 0.2135 +0 0.0290 +0 0.0852 +0 0.6834 +0 0.1251 +0 0.2040 +0 0.1203 +0 0.0735 +0 0.2218 +0 0.0730 +0 0.1078 +0 0.2427 +0 0.1372 +0 0.0777 +0 0.2373 +0 0.0910 +0 0.1229 +0 0.0959 +0 0.1455 +0 0.0661 +0 0.0638 +0 0.1385 +0 0.1007 +0 0.0978 +0 0.1534 +0 0.0368 +0 0.0899 +0 0.1274 +0 0.0709 +0 0.2776 +0 0.1039 +0 0.0499 +0 0.0708 +0 0.0982 +0 0.0605 +0 0.1576 +0 0.0592 +0 0.0818 +0 0.1218 +0 0.0578 +1 0.7827 +0 0.5761 +0 0.0471 +0 0.3265 +0 0.1597 +0 0.1253 +0 0.2264 +0 0.1879 +0 0.0498 +0 0.1285 +0 0.0711 +0 0.1317 +0 0.0824 +0 0.0702 +0 0.2125 +0 0.1947 +0 0.1300 +0 0.1569 +0 0.1220 +0 0.0462 +0 0.0825 +0 0.0855 +1 0.8108 +0 0.0455 +0 0.1022 +0 0.1481 +0 0.0844 +0 0.0479 +0 0.0726 +0 0.0399 +0 0.1023 +0 0.1856 +0 0.0911 +0 0.1445 +0 0.0464 +0 0.1485 +0 0.0853 +0 0.0392 +0 0.2894 +0 0.1549 +0 0.0889 +0 0.6563 +0 0.0687 +0 0.2646 +1 0.7704 +0 0.1458 +0 0.0659 +0 0.1375 +0 0.0935 +0 0.0850 +0 0.1321 +0 0.0795 +0 0.0780 +0 0.1054 +0 0.0996 +0 0.2313 +0 0.1008 +0 0.0726 +0 0.1224 +0 0.2367 +0 0.0872 +0 0.1350 +0 0.2988 +0 0.5486 +1 0.7594 +0 0.0604 +0 0.0930 +0 0.1151 +0 0.1765 +0 0.0925 +0 0.1385 +0 0.2107 +0 0.1568 +0 0.1252 +0 0.1126 +0 0.1321 +0 0.1220 +0 0.0699 +0 0.0732 +0 0.0978 +0 0.0794 +0 0.0770 +0 0.1053 +0 0.1243 +1 0.8270 +0 0.0990 +0 0.4924 +0 0.1253 +0 0.1140 +0 0.0619 +0 0.1567 +0 0.0486 +0 0.1990 +0 0.6335 +0 0.0804 +0 0.0541 +0 0.1980 +0 0.2033 +0 0.0743 +0 0.0651 +0 0.0856 +0 0.0676 +0 0.3199 +0 0.0965 +0 0.1435 +0 0.0770 +0 0.4233 +0 0.0728 +0 0.0620 +0 0.0847 +0 0.1297 +0 0.0675 +0 0.1527 +0 0.1564 +0 0.0862 +0 0.1754 +0 0.0993 +0 0.1416 +0 0.1641 +0 0.0851 +0 0.2228 +0 0.0577 +0 0.0605 +0 0.0912 +0 0.1504 +0 0.0482 +0 0.2805 +0 0.0933 +1 0.7892 +0 0.0951 +0 0.0320 +0 0.1731 +0 0.1344 +0 0.0883 +0 0.0903 +0 0.2907 +0 0.0592 +0 0.4123 +0 0.1453 +0 0.1568 +0 0.1282 +0 0.1031 +0 0.3930 +0 0.0814 +0 0.1006 +0 0.0759 +0 0.0890 +0 0.0448 +0 0.0575 +0 0.0654 +0 0.0636 +0 0.1567 +0 0.0919 +0 0.0580 +0 0.1946 +0 0.0787 +0 0.6631 +0 0.0792 +0 0.0664 +0 0.3129 +0 0.2029 +0 0.0689 +0 0.1690 +0 0.0434 +0 0.0848 +0 0.2629 +0 0.0576 +0 0.0290 +0 0.3346 +0 0.0838 +0 0.0611 +0 0.1265 +0 0.4594 +0 0.1969 +0 0.0572 +0 0.3320 +0 0.1785 +0 0.1590 +0 0.1454 +0 0.0622 +0 0.1103 +0 0.3169 +0 0.2731 +0 0.0412 +0 0.0377 +0 0.1003 +0 0.1582 +0 0.1998 +0 0.1327 +0 0.0803 +0 0.1150 +0 0.1672 +0 0.0672 +0 0.0616 +0 0.0901 +0 0.0819 +0 0.1358 +0 0.2823 +1 0.8663 +0 0.0500 +0 0.0704 +0 0.0629 +0 0.1623 +0 0.0877 +0 0.0838 +0 0.0576 +0 0.0862 +0 0.1465 +0 0.0497 +0 0.1349 +0 0.1880 +0 0.1064 +0 0.2378 +0 0.3058 +0 0.1321 +0 0.0934 +0 0.1930 +0 0.2483 +0 0.0991 +0 0.6118 +0 0.0731 +0 0.0863 +0 0.1322 +0 0.1621 +0 0.3039 +0 0.0595 +0 0.0827 +0 0.0353 +0 0.0896 +0 0.0511 +0 0.0600 +0 0.1234 +0 0.1459 +0 0.1607 +0 0.0888 +0 0.1525 +0 0.0806 +0 0.0419 +0 0.0910 +0 0.0517 +0 0.1685 +0 0.3173 +0 0.0865 +0 0.0929 +0 0.1367 +0 0.1775 +0 0.0439 +0 0.1976 +0 0.0782 +0 0.0662 +0 0.1699 +0 0.3365 +0 0.1218 +0 0.0522 +0 0.0799 +0 0.0359 +0 0.0833 +0 0.0389 +0 0.4569 +0 0.0639 +0 0.0504 +0 0.1031 +0 0.0830 +0 0.0888 +0 0.2180 +0 0.2893 +0 0.1033 +0 0.2272 +0 0.2129 +0 0.0762 +0 0.0794 +0 0.5753 +0 0.0488 +0 0.0692 +0 0.6472 +0 0.1560 +0 0.5998 +0 0.1307 +0 0.0542 +0 0.0531 +0 0.0408 +0 0.1243 +0 0.0529 +0 0.0988 +0 0.0364 +0 0.1017 +0 0.1227 +0 0.2369 +0 0.2588 +0 0.0808 +0 0.0405 +0 0.0589 +0 0.0895 +0 0.1005 +0 0.0727 +0 0.1171 +0 0.1064 +0 0.0838 +0 0.0578 +0 0.1607 +0 0.1360 +0 0.1023 +0 0.7020 +0 0.1188 +1 0.7565 +0 0.1241 +0 0.0976 +0 0.0586 +0 0.2205 +0 0.2186 +0 0.2482 +0 0.1147 +0 0.2562 +0 0.1225 +0 0.0555 +0 0.0660 +0 0.1417 +0 0.4932 +0 0.1331 +0 0.1121 +0 0.0809 +0 0.0561 +0 0.1567 +0 0.1145 +0 0.0900 +0 0.0624 +0 0.0638 +0 0.4220 +0 0.0768 +0 0.0734 +0 0.1367 +0 0.0942 +0 0.0419 +0 0.0940 +0 0.7103 +0 0.0835 +0 0.0492 +0 0.0823 +0 0.1316 +0 0.0870 +0 0.1071 +0 0.0676 +0 0.0570 +0 0.3000 +0 0.1689 +0 0.1901 +0 0.0336 +0 0.0923 +0 0.2395 +0 0.1356 +0 0.2538 +0 0.2063 +0 0.0793 +0 0.1520 +0 0.0703 +0 0.0995 +0 0.0797 +0 0.1197 +0 0.0999 +0 0.0989 +0 0.0724 +0 0.0510 +0 0.0830 +0 0.1760 +0 0.1069 +0 0.1884 +0 0.0692 +0 0.0553 +0 0.1117 +0 0.2345 +0 0.1365 +0 0.5049 +0 0.0981 +0 0.0639 +0 0.0736 +0 0.1262 +0 0.2051 +0 0.0760 +0 0.0431 +0 0.0621 +0 0.0647 +0 0.0566 +0 0.7174 +0 0.0972 +0 0.0883 +0 0.1512 +0 0.0851 +0 0.1138 +0 0.0600 +0 0.1016 +0 0.0774 +0 0.3550 +0 0.0963 +0 0.0637 +0 0.1288 +0 0.1769 +0 0.3316 +0 0.2041 +0 0.1290 +0 0.3644 +0 0.0988 +0 0.1564 +0 0.2224 +0 0.1444 +0 0.1056 +0 0.1300 +0 0.2566 +0 0.0685 +0 0.1084 +0 0.1045 +0 0.0807 +0 0.1255 +0 0.5542 +0 0.1450 +0 0.0626 +0 0.1122 +0 0.2175 +0 0.2468 +0 0.0829 +0 0.0756 +0 0.1671 +1 0.8237 +1 0.7575 +0 0.6892 +0 0.0768 +0 0.2482 +0 0.0622 +0 0.0340 +0 0.1243 +0 0.1637 +0 0.1288 +0 0.4932 +0 0.0610 +0 0.3491 +0 0.1884 +0 0.1927 +0 0.2216 +0 0.0845 +0 0.1244 +0 0.1110 +0 0.0745 +0 0.0512 +0 0.1056 +0 0.1393 +0 0.0712 +0 0.0687 +0 0.1532 +0 0.1209 +0 0.4859 +0 0.1709 +0 0.3978 +0 0.0649 +0 0.2756 +0 0.0712 +1 0.7905 +0 0.0807 +0 0.2914 +0 0.2230 +0 0.4031 +0 0.5220 +0 0.2859 +0 0.0888 +0 0.0896 +0 0.1071 +0 0.1337 +0 0.0933 +0 0.1924 +0 0.1089 +0 0.2123 +0 0.1494 +0 0.0479 +0 0.1130 +0 0.4217 +0 0.1624 +0 0.1627 +0 0.6118 +0 0.1192 +0 0.1137 +0 0.0637 +0 0.0981 +0 0.1757 +0 0.2777 +0 0.3441 +0 0.0689 +0 0.1817 +1 0.7656 +0 0.1248 +0 0.0560 +0 0.1038 +0 0.1745 +0 0.1463 +0 0.0868 +0 0.2691 +0 0.1661 +0 0.2472 +0 0.2315 +0 0.3218 +0 0.2654 +0 0.1156 +0 0.0914 +0 0.0434 +0 0.2152 +0 0.0504 +0 0.0807 +0 0.0609 +0 0.0421 +0 0.2494 +0 0.1433 +0 0.1119 +0 0.0669 +0 0.0973 +0 0.1341 +0 0.2371 +1 0.7963 +0 0.1416 +0 0.4164 +0 0.2845 +0 0.0989 +0 0.0419 +0 0.0692 +0 0.0804 +0 0.0501 +0 0.1291 +0 0.2456 +0 0.1132 +0 0.1326 +0 0.1379 +0 0.1221 +0 0.1775 +0 0.4342 +0 0.0567 +0 0.0907 +0 0.0495 +0 0.0648 +0 0.0997 +0 0.1453 +0 0.1238 +0 0.0666 +0 0.1630 +0 0.0712 +0 0.3597 +0 0.1117 +0 0.0687 +0 0.0934 +0 0.2003 +0 0.0748 +0 0.0554 +0 0.1308 +0 0.1636 +0 0.1571 +0 0.0652 +0 0.2345 +0 0.1118 +0 0.1154 +0 0.0681 +0 0.0761 +0 0.0702 +0 0.1630 +0 0.1130 +0 0.0797 +0 0.1896 +0 0.0641 +0 0.2759 +0 0.1055 +0 0.2321 +0 0.0676 +0 0.2619 +0 0.7192 +0 0.6823 +0 0.1059 +0 0.1406 +0 0.0793 +0 0.1363 +0 0.0478 +0 0.0837 +0 0.3994 +0 0.0499 +0 0.0930 +0 0.0696 +0 0.0284 +0 0.0577 +0 0.0658 +0 0.2203 +0 0.0629 +0 0.1542 +0 0.0426 +0 0.2105 +0 0.0799 +0 0.0914 +0 0.1516 +0 0.1036 +0 0.2430 +0 0.1022 +0 0.1065 +0 0.0925 +0 0.1108 +0 0.0776 +0 0.2090 +0 0.1071 +0 0.0863 +0 0.1288 +0 0.3461 +0 0.0606 +0 0.4037 +0 0.1282 +0 0.1786 +0 0.1114 +0 0.1190 +0 0.1304 +0 0.2130 +0 0.1665 +0 0.1520 +0 0.0704 +0 0.2134 +0 0.5207 +0 0.0426 +0 0.0976 +0 0.0926 +0 0.1052 +0 0.3789 +0 0.1206 +0 0.0745 +0 0.0853 +0 0.1029 +0 0.0727 +0 0.0570 +0 0.1314 +0 0.1181 +0 0.0687 +0 0.0476 +0 0.1301 +0 0.5146 +0 0.0973 +0 0.1519 +0 0.1999 +0 0.1901 +0 0.1081 +0 0.0532 +0 0.5672 +0 0.0437 +0 0.0804 +0 0.0928 +0 0.1013 +0 0.1960 +0 0.0770 +0 0.1320 +0 0.1403 +0 0.0638 +0 0.0785 +0 0.1163 +0 0.4507 +0 0.1757 +0 0.0707 +0 0.0939 +0 0.2383 +0 0.0479 +0 0.4244 +0 0.1440 +0 0.0910 +0 0.0825 +0 0.1594 +0 0.1802 +0 0.0744 +0 0.1277 +1 0.8504 +0 0.1150 +0 0.1348 +0 0.2452 +0 0.2512 +0 0.3757 +0 0.0579 +0 0.0441 +1 0.8077 +0 0.0877 +0 0.1414 +0 0.1246 +0 0.1923 +0 0.1243 +0 0.1371 +0 0.5317 +0 0.0653 +0 0.1444 +0 0.1255 +0 0.2006 +0 0.0571 +0 0.6482 +0 0.0931 +0 0.1691 +0 0.3460 +0 0.1365 +0 0.0582 +0 0.1747 +0 0.1714 +0 0.0913 +0 0.0589 +0 0.1578 +0 0.1475 +1 0.7588 +0 0.0351 +0 0.0944 +0 0.1049 +0 0.0662 +0 0.1223 +0 0.2990 +0 0.0899 +0 0.0892 +0 0.1797 +0 0.1635 +0 0.0587 +0 0.1114 +0 0.2794 +0 0.0744 +0 0.0856 +0 0.1251 +0 0.1420 +0 0.0327 +0 0.0719 +0 0.1086 +0 0.1101 +0 0.0535 +0 0.0839 +0 0.1650 +0 0.2380 +0 0.0562 +0 0.0668 +0 0.0887 +0 0.0826 +0 0.1374 +0 0.0788 +0 0.1902 +0 0.1379 +0 0.1464 +0 0.0644 +0 0.0924 +0 0.0592 +0 0.0521 +0 0.0362 +0 0.0467 +0 0.6497 +0 0.3092 +0 0.0441 +0 0.0422 +0 0.1176 +0 0.1419 +0 0.0916 +0 0.1298 +0 0.0835 +0 0.2382 +0 0.0787 +0 0.0914 +0 0.0818 +0 0.0777 +0 0.0704 +0 0.2677 +0 0.1850 +0 0.0821 +0 0.0622 +0 0.1244 +0 0.0805 +0 0.1331 +0 0.2322 +0 0.1328 +0 0.1773 +0 0.0506 +0 0.1717 +0 0.0690 +0 0.0513 +0 0.0803 +0 0.0754 +1 0.8157 +0 0.0578 +0 0.0837 +0 0.2831 +0 0.1011 +0 0.1012 +0 0.0978 +0 0.0969 +0 0.1055 +0 0.0731 +0 0.2568 +0 0.0637 +0 0.1564 +0 0.0378 +0 0.2280 +0 0.1961 +0 0.0956 +0 0.0974 +0 0.0380 +0 0.2538 +0 0.6697 +0 0.0682 +0 0.1001 +0 0.0702 +0 0.0820 +0 0.1547 +0 0.2679 +1 0.8016 +0 0.1231 +0 0.6643 +0 0.1074 +0 0.0513 +0 0.0788 +0 0.0619 +0 0.1008 +0 0.1726 +0 0.3755 +0 0.1712 +1 0.8243 +0 0.2450 +0 0.2446 +0 0.0908 +0 0.0582 +0 0.0880 +0 0.0563 +0 0.1717 +0 0.2307 +1 0.8589 +0 0.4093 +0 0.5103 +0 0.0600 +0 0.1632 +0 0.0605 +0 0.2355 +0 0.2693 +0 0.0921 +0 0.0677 +0 0.0960 +0 0.1058 +0 0.0980 +0 0.0666 +0 0.0656 +0 0.1447 +0 0.1950 +0 0.1765 +0 0.0515 +0 0.0990 +0 0.1658 +0 0.0944 +0 0.0693 +0 0.0515 +0 0.0860 +0 0.1640 +0 0.3665 +0 0.1867 +0 0.0865 +0 0.0839 +0 0.1421 +0 0.0640 +0 0.0866 +0 0.1180 +0 0.3307 +0 0.5128 +0 0.1508 +0 0.0864 +0 0.1326 +0 0.5741 +0 0.1494 +0 0.1628 +0 0.1001 +0 0.1511 +0 0.1483 +0 0.1435 +0 0.0564 +0 0.0522 +0 0.2163 +0 0.0794 +0 0.3277 +0 0.0463 +0 0.4230 +0 0.1349 +0 0.4591 +0 0.0953 +0 0.2032 +0 0.1139 +0 0.1083 +0 0.1546 +0 0.2200 +0 0.1069 +0 0.0782 +0 0.0732 +0 0.0527 +0 0.0802 +0 0.1285 +0 0.1097 +0 0.0826 +0 0.1848 +0 0.6996 +0 0.0630 +0 0.0536 +0 0.2630 +0 0.0777 +0 0.1127 +0 0.1364 +0 0.3794 +0 0.1378 +0 0.2009 +0 0.0921 +0 0.0652 +0 0.0654 +0 0.1182 +0 0.0775 +0 0.1244 +0 0.6623 +0 0.2159 +0 0.2505 +0 0.0463 +0 0.2632 +0 0.1256 +0 0.0929 +0 0.1580 +0 0.0592 +0 0.2061 +0 0.4707 +0 0.1859 +0 0.0767 +0 0.2377 +0 0.0311 +0 0.0777 +1 0.8597 +0 0.0945 +0 0.0730 +0 0.1780 +0 0.2271 +0 0.0732 +0 0.0392 +0 0.0787 +0 0.1149 +0 0.1579 +0 0.1436 +0 0.1184 +0 0.0622 +1 0.8589 +0 0.1018 +0 0.1326 +0 0.1611 +1 0.8505 +0 0.0775 +0 0.2980 +0 0.0663 +0 0.0778 +0 0.1401 +0 0.1025 +0 0.1054 +0 0.0993 +0 0.3168 +0 0.0532 +0 0.1341 +0 0.1728 +0 0.2150 +0 0.1237 +0 0.0446 +0 0.4657 +0 0.2368 +0 0.0729 +0 0.2407 +0 0.1202 +0 0.0636 +0 0.0709 +0 0.2075 +0 0.0600 +0 0.1179 +0 0.1064 +0 0.1030 +0 0.0506 +0 0.0828 +1 0.8195 +0 0.1237 +0 0.0354 +0 0.0808 +0 0.0840 +0 0.1583 +0 0.1059 +0 0.0972 +0 0.0509 +0 0.0520 +0 0.1047 +0 0.0688 +0 0.1163 +0 0.1577 +0 0.0700 +0 0.2429 +0 0.0937 +0 0.0598 +0 0.2388 +0 0.0961 +0 0.0455 +0 0.1399 +0 0.2141 +0 0.1100 +0 0.0901 +0 0.0621 +0 0.0563 +0 0.1369 +0 0.0871 +0 0.0902 +0 0.1155 +0 0.0798 +0 0.1550 +0 0.0536 +0 0.1038 +0 0.2758 +0 0.1310 +0 0.0642 +0 0.0485 +0 0.1642 +0 0.0523 +0 0.1013 +0 0.0750 +0 0.1128 +0 0.1318 +0 0.1752 +0 0.1984 +0 0.1731 +0 0.1456 +0 0.1406 +0 0.1697 +0 0.4697 +0 0.0543 +0 0.0941 +0 0.3767 +0 0.0573 +0 0.0537 +0 0.0676 +0 0.1258 +0 0.1210 +0 0.0739 +0 0.0625 +0 0.0539 +0 0.1486 +0 0.0790 +0 0.1556 +0 0.0541 +0 0.1356 +0 0.1432 +0 0.0811 +0 0.0723 +0 0.3886 +0 0.2374 +0 0.4863 +0 0.1055 +0 0.2198 +0 0.0878 +0 0.2092 +0 0.0626 +0 0.1247 +0 0.0616 +0 0.0633 +0 0.1342 +0 0.2396 +1 0.8287 +0 0.1098 +0 0.1073 +0 0.1098 +0 0.0595 +0 0.3502 +0 0.0524 +0 0.6789 +0 0.1039 +0 0.2140 +0 0.0962 +0 0.1379 +0 0.0460 +0 0.3539 +0 0.0836 +0 0.0950 +0 0.1783 +0 0.0791 +0 0.1234 +0 0.2861 +0 0.0994 +0 0.1153 +0 0.1041 +0 0.5966 +0 0.1048 +0 0.4196 +0 0.0539 +0 0.0661 +0 0.2446 +0 0.1814 +0 0.1032 +1 0.8327 +0 0.0797 +0 0.1836 +0 0.0924 +0 0.1252 +0 0.5134 +0 0.3017 +0 0.1058 +0 0.0683 +0 0.0460 +0 0.2643 +0 0.0767 +0 0.2087 +0 0.0680 +0 0.2740 +0 0.1498 +0 0.1515 +0 0.0342 +0 0.1159 +0 0.1144 +0 0.0606 +0 0.0638 +0 0.0932 +0 0.0914 +0 0.0874 +0 0.1241 +0 0.0732 +0 0.1654 +0 0.0479 +0 0.1296 +0 0.1023 +0 0.7261 +0 0.1834 +0 0.7387 +0 0.0647 +0 0.2373 +0 0.0590 +0 0.1244 +0 0.0982 +0 0.0789 +0 0.0856 +0 0.1130 +0 0.2558 +0 0.0641 +0 0.0900 +0 0.1413 +1 0.7926 +0 0.1919 +0 0.0845 +0 0.6993 +0 0.0771 +0 0.1030 +0 0.1819 +0 0.0539 +0 0.0811 +0 0.0755 +0 0.7103 +0 0.0927 +0 0.0485 +0 0.1638 +0 0.0597 +0 0.0586 +0 0.2214 +0 0.0673 +0 0.0485 +0 0.1651 +0 0.1195 +0 0.0720 +0 0.1638 +0 0.0726 +0 0.0404 +0 0.1294 +0 0.7272 +0 0.0837 +0 0.1417 +0 0.0666 +0 0.0775 +0 0.0718 +0 0.3773 +0 0.5343 +0 0.1082 +0 0.0597 +0 0.1778 +0 0.1177 +0 0.0972 +0 0.0466 +0 0.1201 +0 0.1099 +0 0.1401 +0 0.2641 +0 0.1631 +0 0.5343 +0 0.0529 +0 0.1978 +0 0.0678 +0 0.1386 +0 0.1047 +0 0.0886 +0 0.0499 +1 0.8552 +0 0.1230 +0 0.1425 +0 0.5376 +0 0.0827 +0 0.0659 +0 0.7367 +0 0.1518 +0 0.0732 +0 0.0548 +0 0.1349 +0 0.6734 +0 0.0628 +0 0.0903 +0 0.1421 +0 0.0730 +0 0.0818 +0 0.0366 +0 0.1385 +0 0.1400 +0 0.0570 +0 0.1089 +0 0.1390 +0 0.1240 +0 0.0524 +0 0.0934 +0 0.2191 +0 0.0746 +0 0.1239 +0 0.0730 +0 0.1499 +0 0.4194 +0 0.1133 +0 0.0556 +0 0.0688 +0 0.0767 +0 0.6001 +0 0.1958 +0 0.1224 +0 0.6116 +0 0.0777 +0 0.0585 +0 0.0640 +0 0.1104 +0 0.1452 +0 0.1068 +0 0.1185 +0 0.1454 +0 0.1446 +1 0.7640 +0 0.2675 +0 0.1327 +1 0.7831 +0 0.1202 +0 0.1132 +0 0.0481 +0 0.1631 +0 0.2354 +0 0.3557 +0 0.0943 +0 0.2458 +0 0.1441 +0 0.0797 +0 0.0861 +0 0.1650 +0 0.1405 +0 0.0590 +0 0.0778 +0 0.1156 +0 0.0914 +0 0.2601 +0 0.0731 +0 0.2911 +0 0.1419 +0 0.1832 +0 0.0942 +0 0.1928 +0 0.0855 +0 0.0894 +0 0.0498 +0 0.1669 +0 0.0653 +0 0.0506 +0 0.0416 +0 0.0810 +0 0.0733 +0 0.1722 +0 0.0852 +0 0.1679 +0 0.0669 +0 0.0994 +0 0.6506 +0 0.1416 +0 0.0447 +0 0.1414 +0 0.1236 +0 0.0699 +0 0.0528 +0 0.0835 +0 0.1117 +0 0.7008 +0 0.0648 +0 0.0284 +0 0.0990 +0 0.0970 +0 0.1256 +0 0.0928 +0 0.0455 +0 0.3269 +1 0.8346 +0 0.0962 +0 0.1004 +0 0.0633 +0 0.0625 +0 0.1234 +0 0.2236 +0 0.1009 +0 0.0442 +0 0.7247 +0 0.1173 +0 0.0487 +0 0.0548 +0 0.1246 +0 0.1178 +0 0.1434 +0 0.1086 +0 0.0910 +0 0.1032 +0 0.1256 +0 0.1090 +0 0.0877 +0 0.1203 +0 0.1295 +0 0.1629 +0 0.1696 +0 0.1733 +0 0.1625 +0 0.1225 +0 0.1141 +0 0.0447 +0 0.0871 +0 0.0855 +0 0.2710 +0 0.0654 +0 0.0666 +0 0.2431 +0 0.0847 +0 0.1979 +0 0.0483 +0 0.1175 +0 0.0656 +0 0.1499 +1 0.7878 +0 0.1335 +0 0.1897 +0 0.0860 +0 0.1010 +0 0.0817 +0 0.2088 +0 0.1122 +0 0.1440 +0 0.3021 +0 0.2711 +0 0.0552 +0 0.0847 +0 0.0971 +0 0.0756 +0 0.1158 +0 0.0714 +0 0.0625 +0 0.2061 +0 0.1721 +0 0.0747 +0 0.1285 +0 0.1314 +0 0.1520 +0 0.0465 +0 0.1283 +0 0.0981 +0 0.1128 +0 0.4212 +0 0.0653 +0 0.0843 +0 0.1047 +0 0.0392 +0 0.0961 +0 0.4147 +0 0.1100 +0 0.0933 +0 0.1558 +0 0.1275 +0 0.1076 +0 0.6581 +0 0.0926 +0 0.1336 +0 0.0848 +0 0.1024 +0 0.2063 +0 0.2130 +0 0.1614 +0 0.1411 +0 0.2915 +0 0.0766 +0 0.0700 +0 0.0435 +0 0.0365 +0 0.1077 +0 0.0853 +0 0.0721 +0 0.0670 +0 0.1203 +0 0.2379 +0 0.0920 +0 0.0525 +0 0.0673 +0 0.1294 +0 0.1503 +0 0.0829 +0 0.1730 +0 0.0756 +0 0.1141 +0 0.2415 +0 0.1131 +0 0.1184 +0 0.0942 +0 0.1468 +0 0.1139 +1 0.8661 +0 0.0422 +0 0.0785 +0 0.2054 +0 0.1056 +0 0.0756 +0 0.0591 +0 0.0909 +0 0.1532 +0 0.1442 +0 0.0699 +0 0.1380 +0 0.1241 +0 0.0621 +1 0.7825 +0 0.0873 +1 0.8939 +0 0.1118 +0 0.1887 +0 0.1187 +0 0.2285 +0 0.0936 +0 0.1116 +0 0.0441 +0 0.0892 +0 0.1291 +0 0.1959 +0 0.0786 +0 0.0927 +1 0.8178 +0 0.0876 +0 0.4917 +0 0.0823 +0 0.0968 +0 0.1004 +0 0.1902 +0 0.0539 +0 0.0757 +0 0.2102 +0 0.0655 +0 0.2828 +0 0.0467 +0 0.0604 +0 0.3153 +0 0.1734 +0 0.0595 +0 0.1115 +0 0.2458 +0 0.1533 +0 0.0426 +0 0.1020 +0 0.0726 +0 0.0918 +0 0.0681 +0 0.1407 +0 0.5919 +0 0.0685 +0 0.1779 +0 0.1048 +0 0.1500 +0 0.1443 +0 0.0653 +0 0.0477 +0 0.1300 +0 0.4082 +0 0.0539 +1 0.8188 +0 0.0826 +0 0.1496 +0 0.0905 +0 0.2166 +0 0.1698 +0 0.0769 +0 0.1444 +0 0.0940 +0 0.0885 +0 0.1947 +0 0.7491 +0 0.0890 +0 0.0997 +1 0.8514 +0 0.1546 +0 0.0787 +0 0.1132 +0 0.1839 +0 0.2680 +0 0.0745 +0 0.0614 +0 0.0859 +0 0.2376 +0 0.0326 +0 0.1760 +0 0.0612 +0 0.3268 +0 0.1678 +0 0.0735 +0 0.3087 +0 0.1436 +0 0.0460 +0 0.7062 +0 0.0594 +0 0.0685 +1 0.8711 +0 0.1055 +0 0.1651 +0 0.0405 +0 0.0695 +0 0.1247 +0 0.0697 +0 0.2277 +0 0.0628 +0 0.1222 +0 0.1848 +0 0.0415 +0 0.0443 +0 0.2177 +0 0.0408 +0 0.0829 +0 0.0967 +0 0.0547 +0 0.0648 +0 0.0598 +0 0.1081 +0 0.4974 +0 0.0659 +0 0.0656 +1 0.7753 +0 0.1143 +0 0.1159 +0 0.1313 +0 0.0720 +0 0.3767 +0 0.0477 +0 0.0596 +0 0.2130 +0 0.2066 +0 0.2357 +0 0.0522 +0 0.1562 +0 0.1213 +0 0.0504 +0 0.1248 +0 0.1851 +0 0.2105 +0 0.0590 +0 0.0575 +0 0.0408 +0 0.1375 +0 0.0368 +0 0.0437 +0 0.1353 +0 0.1125 +0 0.1492 +0 0.0862 +0 0.1629 +0 0.2305 +0 0.0643 +0 0.0831 +0 0.1217 +0 0.0710 +0 0.0629 +0 0.0787 +0 0.0580 +0 0.0543 +0 0.1843 +0 0.0935 +0 0.0489 +0 0.0874 +0 0.2921 +0 0.1091 +0 0.0583 +0 0.1155 +0 0.1368 +0 0.1282 +0 0.1379 +0 0.0388 +0 0.1179 +0 0.2152 +0 0.0580 +0 0.0734 +0 0.0761 +0 0.2724 +0 0.0731 +0 0.3668 +0 0.0560 +0 0.0818 +0 0.0580 +0 0.1013 +0 0.0719 +0 0.2500 +0 0.0957 +0 0.1291 +0 0.1750 +0 0.1310 +0 0.2209 +0 0.0905 +0 0.2896 +0 0.1232 +0 0.0977 +0 0.1523 +0 0.0823 +0 0.0996 +0 0.0540 +0 0.1012 +0 0.5814 +0 0.0582 +0 0.1360 +0 0.0960 +0 0.1196 +0 0.1340 +0 0.1183 +0 0.0940 +0 0.0582 +0 0.0678 +0 0.2747 +0 0.1239 +0 0.1050 +0 0.0577 +0 0.1931 +0 0.2209 +0 0.3168 +0 0.0688 +0 0.0910 +0 0.0827 +0 0.0863 +0 0.3435 +0 0.0917 +0 0.1689 +0 0.0707 +0 0.1102 +0 0.1250 +0 0.1110 +0 0.2337 +0 0.2077 +0 0.0877 +0 0.1472 +0 0.1743 +0 0.1995 +0 0.0879 +0 0.0902 +0 0.0788 +0 0.0932 +0 0.0700 +0 0.1495 +0 0.2094 +0 0.0656 +0 0.1009 +0 0.0690 +0 0.1498 +0 0.0520 +0 0.0518 +0 0.1059 +0 0.4875 +0 0.0538 +0 0.5322 +0 0.1508 +0 0.1971 +0 0.0978 +0 0.1159 +0 0.1187 +0 0.5801 +0 0.2481 +1 0.7751 +0 0.1255 +0 0.3335 +0 0.1919 +0 0.2363 +0 0.3119 +1 0.7703 +0 0.1080 +0 0.0995 +0 0.0873 +0 0.0908 +0 0.0749 +0 0.0528 +0 0.1611 +0 0.0645 +0 0.1165 +0 0.0762 +0 0.1053 +0 0.0910 +0 0.2311 +1 0.8340 +0 0.2900 +0 0.1844 +0 0.0718 +0 0.2034 +0 0.0901 +0 0.0725 +0 0.1542 +0 0.0917 +0 0.0738 +0 0.2232 +0 0.0719 +0 0.1762 +0 0.1332 +0 0.3145 +0 0.1264 +0 0.0754 +0 0.2049 +0 0.1871 +0 0.1302 +0 0.2847 +0 0.1517 +0 0.0772 +0 0.0597 +0 0.0893 +0 0.0996 +0 0.0666 +0 0.3622 +0 0.2347 +0 0.3506 +0 0.1603 +0 0.0658 +0 0.1081 +0 0.0516 +0 0.0769 +0 0.2129 +0 0.1060 +0 0.0735 +0 0.0574 +0 0.2134 +0 0.1182 +0 0.2324 +0 0.1495 +0 0.0889 +0 0.0482 +0 0.0548 +0 0.1574 +0 0.2115 +0 0.3946 +0 0.0758 +0 0.0887 +0 0.0870 +0 0.2268 +0 0.1000 +0 0.6139 +0 0.2020 +0 0.0890 +0 0.1709 +0 0.0719 +0 0.0652 +0 0.2270 +0 0.0695 +0 0.0751 +0 0.1109 +0 0.2779 +0 0.0810 +0 0.0445 +0 0.0953 +0 0.5187 +0 0.0800 +0 0.0577 +0 0.1205 +0 0.2824 +0 0.0859 +0 0.0511 +0 0.1503 +0 0.4167 +0 0.2560 +0 0.0407 +0 0.1277 +0 0.0829 +0 0.2676 +0 0.0574 +0 0.0690 +0 0.1012 +0 0.3096 +0 0.1110 +0 0.4752 +0 0.3969 +0 0.1262 +0 0.1779 +0 0.1244 +0 0.1148 +0 0.1826 +0 0.1864 +0 0.1401 +0 0.1715 +0 0.1419 +0 0.0799 +0 0.0499 +0 0.0643 +0 0.1122 +0 0.0963 +0 0.1145 +0 0.1382 +0 0.0749 +0 0.0644 +0 0.0412 +0 0.0851 +0 0.0470 +0 0.1162 +1 0.7553 +0 0.0432 +0 0.1015 +0 0.2213 +0 0.0554 +0 0.5675 +0 0.1517 +0 0.0824 +0 0.0656 +0 0.1030 +0 0.1582 +0 0.0614 +0 0.0652 +0 0.1021 +0 0.1027 +0 0.1659 +0 0.0924 +0 0.0955 +0 0.0624 +0 0.2898 +0 0.1825 +0 0.3213 +0 0.0776 +0 0.1186 +1 0.8654 +0 0.4992 +0 0.0674 +0 0.3399 +0 0.1238 +0 0.1435 +0 0.0898 +0 0.0808 +0 0.1549 +0 0.0447 +0 0.1245 +0 0.1897 +0 0.1211 +0 0.4425 +0 0.0690 +0 0.1333 +0 0.3665 +0 0.0363 +0 0.1275 +0 0.0766 +0 0.1662 +1 0.7608 +0 0.0474 +0 0.2866 +0 0.1698 +0 0.2955 +0 0.0968 +0 0.1026 +0 0.1548 +0 0.0947 +0 0.0813 +0 0.0999 +0 0.0893 +0 0.1853 +0 0.0414 +0 0.0674 +0 0.1222 +0 0.0950 +0 0.1255 +0 0.4874 +0 0.0867 +0 0.2434 +0 0.1020 +0 0.0967 +0 0.1833 +0 0.1956 +0 0.1239 +1 0.7751 +0 0.0751 +0 0.0774 +0 0.3968 +0 0.1122 +0 0.0882 +0 0.1408 +0 0.1670 +0 0.1035 +0 0.2080 +0 0.2172 +0 0.2983 +0 0.0809 +0 0.0646 +0 0.1343 +0 0.1561 +0 0.1163 +0 0.1120 +0 0.1054 +0 0.0611 +0 0.1773 +0 0.0995 +0 0.1754 +0 0.2237 +0 0.1138 +0 0.1214 +0 0.0876 +0 0.0849 +0 0.0870 +0 0.0635 +0 0.0449 +0 0.1013 +0 0.0796 +0 0.1016 +0 0.0508 +0 0.1346 +0 0.1371 +0 0.0372 +0 0.4750 +0 0.0860 +0 0.0852 +0 0.0916 +0 0.1994 +0 0.0892 +0 0.0947 +0 0.1320 +0 0.4716 +0 0.4833 +0 0.0911 +0 0.2447 +0 0.1680 +0 0.0658 +0 0.0533 +0 0.6470 +0 0.0886 +0 0.1113 +0 0.0418 +0 0.1260 +0 0.0695 +0 0.0686 +0 0.0707 +0 0.0982 +0 0.0469 +0 0.2909 +0 0.0638 +0 0.1880 +0 0.7251 +0 0.0648 +0 0.1945 +0 0.1784 +0 0.0456 +0 0.0824 +0 0.0667 +0 0.6716 +0 0.1383 +0 0.0617 +0 0.0662 +0 0.0882 +0 0.0530 +0 0.1799 +0 0.0393 +0 0.0575 +0 0.0678 +0 0.0721 +0 0.1849 +0 0.0530 +0 0.1345 +0 0.3249 +0 0.0493 +0 0.0423 +0 0.0783 +0 0.0733 +0 0.1176 +0 0.0975 +0 0.6476 +0 0.0571 +0 0.2700 +0 0.0953 +0 0.1423 +0 0.1144 +0 0.1898 +0 0.1905 +0 0.0991 +0 0.2198 +0 0.0516 +0 0.0485 +0 0.0838 +0 0.0441 +0 0.0354 +0 0.0686 +0 0.1110 +0 0.0628 +0 0.1760 +0 0.1941 +0 0.1503 +0 0.0722 +0 0.0836 +0 0.0900 +0 0.0968 +0 0.1626 +0 0.0371 +0 0.0804 +0 0.1164 +0 0.1338 +0 0.1489 +0 0.1688 +0 0.0872 +0 0.1584 +0 0.5892 +0 0.0642 +0 0.1999 +0 0.2169 +0 0.1735 +0 0.1297 +0 0.2182 +0 0.1632 +0 0.0398 +0 0.1034 +0 0.0552 +0 0.1612 +1 0.8455 +0 0.0687 +0 0.2118 +0 0.6053 +0 0.0397 +0 0.0822 +0 0.1084 +0 0.1271 +0 0.1562 +0 0.0686 +0 0.4136 +0 0.4353 +0 0.0876 +0 0.1045 +0 0.0874 +0 0.1077 +0 0.1273 +0 0.1193 +0 0.0792 +0 0.1242 +0 0.1201 +0 0.0543 +0 0.1021 +0 0.1159 +0 0.1329 +0 0.1833 +0 0.2114 +0 0.1278 +0 0.0405 +0 0.3107 +0 0.0823 +0 0.1085 +0 0.2295 +0 0.3441 +0 0.0682 +0 0.1406 +0 0.0920 +0 0.0993 +0 0.0548 +0 0.0691 +0 0.1115 +0 0.0652 +0 0.2108 +0 0.1061 +0 0.1226 +0 0.0465 +0 0.1158 +0 0.0590 +0 0.0711 +0 0.0551 +0 0.1918 +0 0.2960 +0 0.1905 +0 0.0794 +0 0.0895 +0 0.2207 +0 0.0961 +0 0.1581 +0 0.1297 +0 0.2279 +0 0.1597 +0 0.0561 +0 0.1572 +0 0.1027 +0 0.1344 +0 0.0652 +0 0.0730 +0 0.0788 +0 0.0473 +0 0.0723 +0 0.5284 +0 0.0759 +0 0.0555 +0 0.1876 +0 0.1830 +0 0.1791 +0 0.1180 +0 0.0968 +0 0.1896 +0 0.0416 +0 0.0504 +0 0.0503 +0 0.1392 +0 0.1907 +0 0.0407 +0 0.6938 +0 0.0591 +0 0.0890 +0 0.1532 +0 0.1071 +0 0.2612 +0 0.2532 +0 0.1332 +0 0.0429 +0 0.0749 +0 0.1739 +0 0.1374 +0 0.0517 +0 0.1082 +1 0.8463 +0 0.0424 +0 0.0744 +0 0.1078 +0 0.0922 +0 0.1389 +0 0.0705 +0 0.1639 +0 0.0944 +0 0.0680 +0 0.0789 +0 0.3854 +0 0.3102 +0 0.0968 +0 0.0923 +0 0.1147 +0 0.2581 +0 0.3109 +0 0.1706 +0 0.0997 +0 0.0652 +0 0.1718 +0 0.0697 +0 0.1204 +0 0.0855 +0 0.5657 +0 0.0668 +0 0.0870 +0 0.0676 +0 0.1935 +0 0.0393 +0 0.1656 +0 0.1283 +0 0.0889 +0 0.0490 +0 0.1103 +0 0.0466 +0 0.0870 +0 0.1388 +0 0.0764 +0 0.0737 +0 0.1759 +0 0.0714 +0 0.0572 +0 0.0828 +0 0.0534 +0 0.1664 +0 0.0713 +0 0.1075 +0 0.0645 +0 0.4249 +0 0.4240 +0 0.2276 +0 0.1382 +0 0.1000 +0 0.1067 +0 0.0820 +0 0.0790 +0 0.3455 +0 0.0578 +0 0.0672 +0 0.0683 +0 0.0783 +0 0.1825 +0 0.0545 +1 0.8233 +0 0.0565 +0 0.1908 +0 0.0447 +0 0.1311 +0 0.1707 +0 0.5964 +0 0.2007 +0 0.1035 +0 0.0424 +0 0.0410 +0 0.1553 +1 0.7817 +0 0.0892 +0 0.0637 +0 0.1851 +0 0.0703 +0 0.0493 +0 0.0640 +0 0.2920 +0 0.0618 +0 0.1709 +0 0.1466 +0 0.0641 +0 0.0416 +0 0.1337 +0 0.0944 +0 0.2683 +0 0.0810 +0 0.1228 +0 0.0884 +0 0.0334 +0 0.1106 +0 0.1074 +0 0.0933 +0 0.0682 +0 0.0830 +0 0.1241 +0 0.2491 +0 0.6207 +0 0.0882 +0 0.2622 +0 0.0813 +0 0.1488 +0 0.0883 +0 0.0792 +0 0.0824 +0 0.1064 +0 0.1309 +0 0.3224 +0 0.1718 +0 0.1057 +0 0.1903 +0 0.1291 +0 0.3964 +0 0.0971 +0 0.1069 +0 0.0623 +0 0.0920 +0 0.2763 +0 0.1145 +0 0.1408 +0 0.1663 +0 0.1716 +0 0.3796 +0 0.0953 +0 0.1128 +0 0.1462 +0 0.3688 +0 0.1631 +0 0.1429 +0 0.1722 +0 0.0479 +0 0.1708 +0 0.2091 +0 0.1224 +0 0.0560 +0 0.0717 +0 0.0642 +0 0.5439 +0 0.1529 +0 0.0774 +0 0.2854 +0 0.1521 +1 0.8319 +0 0.1444 +0 0.0553 +0 0.2939 +0 0.0779 +0 0.0455 +0 0.1619 +0 0.0894 +0 0.1872 +0 0.0566 +0 0.0977 +0 0.1484 +0 0.1827 +0 0.0730 +0 0.2327 +0 0.0753 +0 0.0541 +0 0.1314 +0 0.1284 +0 0.0997 +0 0.2581 +0 0.1622 +0 0.0990 +0 0.3919 +0 0.0579 +0 0.1679 +0 0.1347 +0 0.1781 +0 0.2179 +0 0.1297 +0 0.0519 +0 0.0443 +0 0.0897 +0 0.0752 +0 0.3837 +0 0.4235 +0 0.1740 +0 0.1037 +0 0.1101 +0 0.0574 +0 0.0594 +0 0.0906 +0 0.0484 +0 0.1481 +0 0.1219 +0 0.2122 +0 0.2096 +0 0.0805 +0 0.1564 +0 0.1056 +0 0.0399 +0 0.0730 +0 0.1806 +0 0.3457 +0 0.1107 +0 0.1879 +0 0.1550 +0 0.0627 +0 0.1986 +0 0.1932 +0 0.1130 +0 0.0675 +0 0.0798 +0 0.1085 +0 0.0886 +0 0.0888 +0 0.1010 +0 0.1419 +0 0.0809 +0 0.0534 +0 0.0951 +0 0.0894 +0 0.1956 +0 0.0868 +0 0.2600 +0 0.0588 +0 0.1864 +0 0.0814 +0 0.1698 +0 0.0560 +0 0.0319 +0 0.0956 +0 0.4837 +0 0.0916 +0 0.1875 +0 0.1975 +0 0.1029 +0 0.0560 +0 0.0719 +0 0.6801 +0 0.2092 +0 0.1730 +1 0.8266 +0 0.2357 +0 0.0594 +0 0.0565 +0 0.0877 +0 0.0908 +0 0.0673 +0 0.0646 +0 0.2092 +0 0.0634 +0 0.2947 +0 0.1168 +0 0.0839 +0 0.0785 +0 0.2410 +0 0.2406 +1 0.8322 +0 0.0882 +0 0.0936 +0 0.2843 +0 0.1688 +0 0.0460 +0 0.0907 +0 0.0922 +0 0.0636 +0 0.0703 +0 0.3015 +0 0.3466 +1 0.7558 +0 0.0437 +0 0.0886 +0 0.1917 +0 0.3057 +0 0.1607 +0 0.0478 +1 0.7803 +0 0.0552 +0 0.1403 +0 0.1507 +0 0.0733 +0 0.1508 +0 0.1057 +0 0.0573 +0 0.0979 +0 0.0557 +0 0.2359 +0 0.0566 +0 0.1363 +0 0.2535 +0 0.1081 +0 0.1523 +0 0.0712 +0 0.0446 +0 0.0522 +0 0.1506 +0 0.0660 +0 0.0923 +0 0.0981 +0 0.0572 +0 0.1007 +0 0.0882 +0 0.0801 +0 0.1738 +0 0.3321 +0 0.1166 +0 0.1400 +0 0.1071 +0 0.1703 +0 0.1732 +0 0.2011 +0 0.1845 +0 0.0942 +0 0.0982 +0 0.3446 +0 0.0907 +0 0.0614 +0 0.1275 +0 0.0862 +0 0.1348 +0 0.0616 +0 0.1178 +0 0.1305 +0 0.7209 +0 0.0460 +0 0.0888 +0 0.1459 +0 0.0482 +0 0.0878 +0 0.0776 +0 0.2890 +0 0.0929 +0 0.0642 +0 0.0753 +0 0.1135 +0 0.3691 +0 0.0946 +0 0.0658 +0 0.0737 +0 0.6936 +0 0.1432 +0 0.1340 +0 0.0907 +0 0.0866 +0 0.1769 +0 0.1187 +0 0.1799 +0 0.1567 +0 0.0493 +0 0.1934 +0 0.2781 +0 0.0804 +0 0.0777 +0 0.1285 +0 0.0782 +0 0.1655 +0 0.4201 +0 0.4250 +0 0.0495 +0 0.1068 +0 0.0417 +0 0.1795 +0 0.0927 +0 0.0670 +0 0.0915 +0 0.1802 +0 0.1318 +0 0.7181 +0 0.4422 +0 0.0544 +0 0.1263 +0 0.1808 +0 0.0463 +0 0.0666 +0 0.0718 +0 0.1517 +0 0.2072 +0 0.1444 +0 0.1025 +0 0.2669 +0 0.0521 +0 0.0639 +0 0.1709 +0 0.2170 +0 0.0423 +0 0.0774 +0 0.0329 +0 0.2096 +0 0.0609 +0 0.1312 +0 0.1664 +0 0.2291 +0 0.3855 +0 0.0566 +0 0.0920 +0 0.4239 +0 0.1541 +0 0.0498 +0 0.4316 +0 0.1240 +0 0.0729 +0 0.1551 +0 0.0685 +0 0.3248 +0 0.0886 +0 0.1036 +0 0.0878 +0 0.1088 +0 0.0871 +0 0.1040 +0 0.0592 +0 0.1391 +0 0.0955 +0 0.1072 +0 0.1165 +0 0.2842 +0 0.0895 +0 0.0900 +0 0.1873 +0 0.0840 +0 0.0972 +0 0.0872 +0 0.1371 +0 0.0875 +0 0.1517 +0 0.1152 +0 0.2219 +0 0.0415 +0 0.2548 +0 0.1464 +0 0.0960 +0 0.0626 +1 0.7950 +0 0.1780 +0 0.1513 +0 0.0759 +0 0.1279 +0 0.2084 +0 0.0706 +0 0.0775 +0 0.0958 +0 0.3043 +0 0.0845 +0 0.1280 +0 0.1406 +0 0.1539 +0 0.1902 +0 0.1059 +0 0.0837 +0 0.1353 +0 0.1722 +0 0.1309 +0 0.0493 +0 0.6295 +1 0.1766 +0 0.0734 +0 0.0612 +0 0.0488 +0 0.3234 +0 0.0652 +0 0.0515 +0 0.6908 +0 0.0917 +0 0.0583 +0 0.1650 +0 0.2583 +0 0.1024 +0 0.0688 +0 0.1172 +0 0.1451 +0 0.0698 +0 0.1285 +0 0.2298 +0 0.1106 +0 0.1112 +0 0.2000 +0 0.2149 +0 0.0939 +0 0.4351 +0 0.3433 +0 0.1027 +0 0.1794 +0 0.0411 +0 0.2128 +0 0.0530 +0 0.0751 +0 0.0862 +0 0.2044 +0 0.2537 +0 0.0635 +0 0.0390 +0 0.1068 +0 0.0465 +0 0.0565 +0 0.0530 +0 0.0365 +0 0.0628 +0 0.0793 +0 0.1189 +0 0.1589 +0 0.1286 +0 0.0658 +0 0.1396 +0 0.0949 +0 0.2821 +0 0.0907 +0 0.1291 +0 0.1024 +0 0.0909 +0 0.1804 +0 0.0427 +0 0.1106 +0 0.1102 +0 0.1645 +0 0.0671 +0 0.1859 +0 0.2037 +0 0.0855 +0 0.1640 +0 0.3008 +0 0.0671 +0 0.1124 +0 0.1108 +0 0.0933 +0 0.2488 +0 0.2541 +0 0.1107 +0 0.0773 +0 0.1386 +0 0.0669 +0 0.0622 +0 0.0756 +0 0.2206 +0 0.0512 +0 0.0881 +0 0.0762 +0 0.2781 +0 0.1594 +0 0.0816 +0 0.0992 +0 0.1704 +0 0.0442 +0 0.0647 +0 0.0694 +0 0.1317 +0 0.1119 +0 0.1466 +0 0.3306 +0 0.0864 +0 0.0630 +0 0.0800 +0 0.0669 +0 0.0729 +0 0.0489 +0 0.1055 +0 0.0789 +0 0.3091 +0 0.0482 +0 0.0802 +0 0.1100 +0 0.1129 +0 0.1070 +0 0.1259 +0 0.0482 +0 0.1053 +0 0.1038 +0 0.1037 +0 0.0439 +0 0.0433 +0 0.1558 +0 0.1790 +0 0.0793 +0 0.0874 +0 0.4667 +0 0.0738 +0 0.0324 +0 0.0382 +0 0.0829 +0 0.0567 +0 0.2893 +0 0.0750 +0 0.0824 +0 0.0525 +0 0.1003 +0 0.1176 +0 0.1316 +0 0.1085 +0 0.0439 +0 0.0921 +0 0.1059 +0 0.1016 +0 0.1328 +0 0.1268 +0 0.2421 +0 0.1444 +0 0.1901 +0 0.5111 +0 0.0803 +0 0.1615 +0 0.2248 +0 0.0333 +0 0.0790 +0 0.0793 +0 0.1145 +0 0.1230 +0 0.2708 +0 0.1216 +0 0.0633 +0 0.0394 +0 0.1051 +0 0.0843 +0 0.0450 +0 0.1301 +0 0.1823 +0 0.0932 +0 0.0675 +0 0.1810 +0 0.0695 +0 0.1786 +0 0.0580 +0 0.0636 +0 0.2468 +0 0.1027 +0 0.1841 +0 0.0671 +0 0.0735 +0 0.1579 +0 0.0848 +0 0.2036 +0 0.0591 +0 0.1111 +0 0.0866 +0 0.0861 +0 0.0663 +0 0.0384 +0 0.0559 +0 0.0799 +0 0.0469 +0 0.2680 +0 0.1612 +0 0.1018 +0 0.0954 +0 0.2172 +0 0.1351 +0 0.0907 +0 0.4918 +0 0.1547 +0 0.1508 +0 0.0846 +0 0.1282 +0 0.0374 +0 0.0967 +0 0.0474 +0 0.0566 +0 0.0875 +0 0.0625 +0 0.1912 +0 0.0871 +0 0.1180 +0 0.0595 +0 0.0682 +0 0.4995 +0 0.1114 +0 0.0838 +0 0.1263 +0 0.1988 +0 0.0682 +0 0.3636 +0 0.0904 +0 0.1938 +0 0.0495 +0 0.0807 +0 0.2175 +0 0.0686 +0 0.1303 +0 0.1227 +0 0.1121 +0 0.0867 +0 0.3455 +0 0.0827 +0 0.0612 +0 0.0684 +0 0.0701 +0 0.1215 +0 0.4840 +0 0.0547 +0 0.1839 +0 0.4065 +0 0.0777 +0 0.1064 +0 0.3745 +0 0.1058 +0 0.2832 +0 0.0761 +0 0.0950 +0 0.0611 +0 0.0848 +0 0.1948 +0 0.2081 +0 0.0580 +0 0.1000 +0 0.2037 +0 0.0401 +0 0.1632 +0 0.0863 +0 0.1344 +0 0.0913 +0 0.0718 +0 0.1328 +0 0.0884 +0 0.0838 +0 0.1707 +0 0.1677 +0 0.4451 +0 0.0457 +0 0.0719 +0 0.1253 +0 0.0705 +0 0.1655 +0 0.1959 +0 0.2779 +0 0.1501 +0 0.6831 +0 0.0819 +0 0.0582 +0 0.0698 +0 0.0946 +0 0.2335 +0 0.3589 +0 0.2454 +0 0.2285 +0 0.4814 +0 0.0690 +0 0.0403 +0 0.1174 +0 0.0773 +0 0.0791 +0 0.0960 +0 0.0777 +0 0.0886 +0 0.1958 +0 0.0478 +0 0.0794 +0 0.2665 +0 0.1845 +0 0.0950 +0 0.0755 +0 0.0718 +0 0.1986 +0 0.1016 +0 0.3339 +0 0.7455 +0 0.0875 +0 0.1317 +0 0.1350 +0 0.6095 +0 0.0975 +0 0.1735 +0 0.0457 +0 0.2084 +0 0.2590 +0 0.1323 +0 0.1024 +0 0.0885 +0 0.2382 +0 0.0601 +0 0.0597 +0 0.0763 +0 0.1822 +0 0.1147 +0 0.0822 +0 0.2009 +0 0.0592 +0 0.1473 +0 0.0832 +0 0.1359 +0 0.0321 +0 0.0555 +0 0.2810 +0 0.0524 +0 0.0513 +0 0.0672 +0 0.1156 +0 0.0440 +0 0.0829 +0 0.0490 +0 0.0769 +0 0.0416 +0 0.1016 +0 0.1394 +0 0.0543 +0 0.2112 +0 0.1005 +0 0.0430 +0 0.1146 +0 0.1302 +0 0.0963 +0 0.1254 +0 0.2068 +0 0.0681 +0 0.0750 +0 0.1024 +0 0.1344 +0 0.0759 +0 0.0977 +0 0.1123 +0 0.0277 +0 0.1799 +0 0.2035 +0 0.5640 +0 0.0381 +0 0.1089 +0 0.1796 +0 0.0558 +0 0.3441 +0 0.1491 +0 0.1400 +0 0.1639 +0 0.1357 +0 0.0528 +0 0.1364 +0 0.1075 +0 0.0880 +0 0.0855 +0 0.0818 +0 0.1408 +0 0.1760 +0 0.0666 +0 0.0721 +0 0.0690 +0 0.0825 +0 0.1700 +0 0.1328 +0 0.0654 +0 0.0672 +0 0.1038 +0 0.3050 +0 0.0664 +0 0.0920 +0 0.1515 +0 0.0438 +0 0.1038 +0 0.1358 +0 0.1074 +0 0.0865 +0 0.1612 +0 0.3420 +0 0.0473 +0 0.2374 +0 0.1183 +0 0.1164 +0 0.0865 +0 0.0992 +0 0.2082 +0 0.0685 +0 0.1994 +0 0.2698 +1 0.8503 +1 0.8367 +0 0.0401 +0 0.0556 +0 0.0581 +0 0.1046 +0 0.0542 +0 0.4930 +0 0.1029 +0 0.0883 +0 0.0538 +0 0.1773 +0 0.1412 +0 0.0732 +0 0.0693 +0 0.0832 +0 0.1155 +0 0.1713 +0 0.0591 +0 0.0680 +0 0.1349 +0 0.1867 +0 0.1523 +1 0.8534 +0 0.0739 +0 0.0617 +0 0.1335 +0 0.0543 +0 0.0478 +0 0.1608 +0 0.0897 +0 0.2898 +0 0.1062 +1 0.8228 +0 0.1353 +0 0.0561 +0 0.1930 +0 0.0714 +0 0.0976 +0 0.0624 +0 0.1930 +0 0.1146 +0 0.0669 +0 0.1060 +0 0.0467 +0 0.2716 +0 0.2470 +0 0.1100 +0 0.0655 +0 0.0838 +0 0.1377 +0 0.1344 +0 0.2780 +0 0.0876 +0 0.0964 +0 0.0741 +0 0.0727 +0 0.1356 +0 0.1077 +0 0.1784 +0 0.2878 +0 0.1577 +0 0.0841 +0 0.1168 +0 0.1827 +0 0.0856 +0 0.0964 +0 0.0622 +0 0.0516 +0 0.0367 +0 0.0886 +0 0.1332 +0 0.0926 +0 0.0809 +0 0.2683 +0 0.1295 +0 0.1103 +0 0.1481 +0 0.1109 +0 0.0543 +0 0.6266 +0 0.0276 +0 0.2288 +0 0.0711 +0 0.0408 +0 0.1709 +0 0.0551 +0 0.0594 +0 0.3194 +0 0.1000 +0 0.0831 +0 0.0837 +0 0.4211 +0 0.4245 +0 0.4266 +0 0.2322 +0 0.1535 +0 0.0727 +0 0.0748 +0 0.1608 +0 0.1368 +0 0.6788 +0 0.1687 +0 0.1921 +0 0.0790 +0 0.0701 +0 0.1484 +0 0.1005 +0 0.1283 +0 0.1474 +0 0.0902 +0 0.0645 +0 0.5439 +0 0.1210 +0 0.2433 +0 0.2551 +0 0.1160 +0 0.0378 +0 0.1543 +0 0.0764 +0 0.0786 +0 0.0637 +0 0.0499 +0 0.1555 +0 0.0771 +0 0.4234 +0 0.2357 +0 0.1782 +0 0.0787 +0 0.1205 +0 0.1380 +0 0.0393 +0 0.0967 +0 0.2300 +0 0.1324 +0 0.0571 +0 0.0995 +0 0.2437 +0 0.2327 +0 0.0634 +0 0.0772 +0 0.2796 +0 0.1778 +0 0.1577 +0 0.1656 +0 0.1006 +0 0.0972 +0 0.1239 +0 0.1723 +0 0.1643 +0 0.0861 +0 0.1063 +0 0.1513 +0 0.0676 +0 0.0842 +0 0.0832 +0 0.0931 +0 0.0926 +0 0.0818 +0 0.0900 +0 0.2470 +0 0.0852 +0 0.1220 +0 0.0714 +0 0.1263 +0 0.0467 +0 0.0551 +0 0.2518 +0 0.2527 +0 0.1751 +0 0.0415 +0 0.1434 +0 0.0811 +0 0.2378 +0 0.2643 +0 0.5042 +0 0.3445 +0 0.0988 +0 0.2668 +0 0.2092 +0 0.0363 +0 0.1611 +0 0.0619 +0 0.1002 +0 0.1162 +0 0.1759 +0 0.0557 +0 0.0952 +0 0.0617 +0 0.2639 +0 0.0746 +0 0.1246 +0 0.0993 +0 0.2266 +0 0.0462 +0 0.1885 +0 0.1949 +0 0.0520 +0 0.2755 +0 0.2182 +0 0.2767 +0 0.1135 +0 0.0892 +0 0.1467 +0 0.0545 +0 0.0472 +0 0.1066 +0 0.0671 +0 0.0635 +0 0.3122 +0 0.1083 +0 0.0937 +0 0.0375 +0 0.1262 +0 0.6375 +0 0.1595 +0 0.1271 +0 0.0464 +0 0.0565 +0 0.1398 +0 0.2184 +0 0.0653 +0 0.0549 +0 0.0306 +0 0.1362 +0 0.0639 +0 0.0622 +0 0.0675 +0 0.1337 +0 0.1359 +0 0.0450 +0 0.0930 +0 0.1313 +0 0.0817 +0 0.1126 +0 0.4088 +0 0.1234 +0 0.7445 +0 0.0400 +0 0.1000 +0 0.1060 +0 0.0708 +0 0.1240 +0 0.0573 +0 0.0991 +0 0.0983 +0 0.0337 +0 0.2076 +0 0.4476 +0 0.1016 +0 0.0570 +0 0.2143 +1 0.8666 +0 0.1282 +0 0.1197 +0 0.1956 +0 0.0452 +1 0.8547 +0 0.0509 +0 0.1307 +0 0.2858 +0 0.0774 +0 0.1322 +0 0.0659 +0 0.6776 +0 0.1947 +0 0.4394 +0 0.0622 +0 0.0412 +0 0.1156 +0 0.1540 +0 0.0727 +1 0.8233 +0 0.0689 +0 0.0861 +0 0.0565 +0 0.0925 +0 0.1728 +0 0.0656 +0 0.4374 +0 0.0903 +0 0.0900 +0 0.2406 +0 0.2849 +0 0.0630 +0 0.1324 +0 0.1080 +0 0.0898 +0 0.0586 +0 0.1385 +0 0.3249 +0 0.0699 +0 0.0756 +0 0.1645 +0 0.4034 +0 0.0501 +0 0.0932 +0 0.1399 +0 0.1424 +0 0.0781 +0 0.1981 +0 0.2596 +0 0.2300 +0 0.0587 +0 0.1321 +0 0.0970 +0 0.0689 +0 0.7168 +0 0.1662 +0 0.0636 +0 0.1104 +0 0.0822 +0 0.0793 +0 0.1230 +0 0.3112 +0 0.0643 +0 0.1541 +0 0.0785 +0 0.2642 +0 0.0725 +0 0.3238 +0 0.1911 +0 0.0699 +0 0.0635 +0 0.0888 +0 0.0676 +0 0.0954 +0 0.1420 +1 0.7786 +0 0.1106 +0 0.0806 +0 0.0528 +0 0.0872 +0 0.0738 +0 0.0535 +0 0.1203 +0 0.2221 +0 0.6519 +0 0.0832 +0 0.1130 +0 0.0340 +0 0.0386 +0 0.0523 +0 0.1338 +0 0.0659 +0 0.1462 +0 0.2564 +0 0.0883 +0 0.1145 +0 0.1792 +1 0.8127 +0 0.0900 +0 0.0442 +0 0.0781 +0 0.1077 +0 0.1180 +0 0.2904 +0 0.1524 +0 0.0778 +0 0.1355 +0 0.1975 +0 0.1092 +0 0.3181 +0 0.0567 +0 0.2252 +0 0.0962 +0 0.1251 +0 0.4234 +0 0.1165 +0 0.0637 +0 0.1768 +0 0.0751 +0 0.6853 +0 0.0562 +0 0.0993 +0 0.1651 +0 0.2223 +0 0.0681 +0 0.0395 +0 0.1114 +0 0.0848 +0 0.0661 +0 0.2843 +0 0.0620 +0 0.1053 +0 0.0926 +0 0.0589 +0 0.1294 +0 0.0841 +0 0.1234 +0 0.1138 +0 0.0507 +0 0.0814 +0 0.0581 +0 0.0648 +0 0.1864 +0 0.1287 +0 0.0842 +0 0.0977 +0 0.0666 +0 0.1201 +0 0.5198 +0 0.0988 +0 0.0827 +0 0.1838 +0 0.1456 +0 0.1882 +1 0.7612 +0 0.1314 +1 0.8615 +0 0.1326 +0 0.1603 +0 0.1825 +0 0.0993 +0 0.1286 +0 0.0685 +0 0.0532 +0 0.1629 +0 0.0579 +0 0.1038 +0 0.1413 +0 0.0939 +0 0.0922 +0 0.0776 +0 0.1514 +0 0.1477 +1 0.7714 +0 0.1892 +0 0.1453 +0 0.0844 +0 0.0775 +0 0.0703 +0 0.2115 +0 0.0878 +0 0.0546 +0 0.2245 +0 0.0983 +0 0.1978 +0 0.0575 +0 0.1074 +0 0.0424 +0 0.0647 +0 0.1865 +1 0.7671 +0 0.4028 +0 0.4244 +0 0.0635 +0 0.1600 +0 0.0606 +0 0.0502 +0 0.1466 +0 0.0986 +0 0.1830 +0 0.1552 +0 0.5317 +0 0.1429 +0 0.4535 +0 0.0775 +0 0.0842 +0 0.3569 +0 0.0591 +0 0.1722 +0 0.1173 +0 0.1781 +0 0.2802 +0 0.1327 +0 0.0479 +0 0.7456 +0 0.2315 +0 0.1415 +0 0.0677 +0 0.0609 +0 0.1265 +0 0.0502 +0 0.3105 +0 0.0860 +0 0.0671 +0 0.1305 +0 0.0797 +0 0.2019 +0 0.2210 +0 0.5369 +0 0.0599 +0 0.7194 +0 0.1199 +0 0.0644 +0 0.0748 +0 0.2010 +0 0.2655 +0 0.2234 +0 0.1384 +0 0.0513 +0 0.0638 +0 0.2537 +0 0.0514 +0 0.2759 +0 0.0651 +0 0.3100 +0 0.2660 +0 0.0952 +0 0.0689 +0 0.0696 +0 0.0728 +0 0.0970 +0 0.0663 +0 0.0567 +0 0.2410 +0 0.1729 +0 0.0476 +0 0.0953 +0 0.1419 +0 0.0764 +0 0.0610 +0 0.0779 +0 0.0972 +0 0.1663 +0 0.1027 +0 0.0509 +0 0.7442 +0 0.1450 +0 0.1041 +0 0.1944 +0 0.1241 +0 0.1039 +0 0.2232 +0 0.0960 +0 0.2036 +0 0.3207 +0 0.0740 +0 0.0658 +0 0.1787 +0 0.0722 +0 0.6117 +0 0.0397 +0 0.0735 +0 0.0501 +0 0.0636 +0 0.0378 +0 0.0976 +0 0.0319 +0 0.1292 +0 0.0839 +0 0.3409 +0 0.2856 +0 0.1979 +0 0.4299 +0 0.0477 +0 0.0797 +0 0.1655 +0 0.1881 +0 0.0785 +0 0.1881 +0 0.3187 +0 0.2334 +0 0.0679 +0 0.0794 +0 0.0863 +0 0.0791 +0 0.1136 +0 0.1521 +0 0.0465 +0 0.0865 +0 0.0557 +0 0.0392 +1 0.7770 +0 0.0666 +0 0.1093 +0 0.0696 +0 0.1002 +0 0.0646 +0 0.1353 +0 0.3558 +0 0.0401 +0 0.1098 +0 0.2414 +0 0.0342 +1 0.8096 +0 0.0933 +0 0.0555 +0 0.1700 +0 0.2142 +0 0.0695 +0 0.0892 +0 0.0855 +0 0.1422 +0 0.1676 +0 0.0876 +0 0.1348 +0 0.0544 +0 0.2395 +0 0.1311 +0 0.1465 +0 0.2432 +0 0.3893 +0 0.7227 +0 0.2094 +0 0.0707 +0 0.0592 +0 0.0914 +0 0.0755 +0 0.1424 +0 0.0572 +0 0.4163 +0 0.2013 +0 0.0920 +0 0.0584 +0 0.1668 +0 0.0968 +0 0.0930 +0 0.1601 +0 0.1357 +0 0.1085 +0 0.0833 +0 0.0735 +0 0.2267 +0 0.1727 +0 0.2071 +0 0.0394 +0 0.0363 +0 0.0624 +0 0.0964 +0 0.2296 +0 0.1141 +0 0.0412 +0 0.0698 +0 0.1678 +0 0.2066 +0 0.0633 +0 0.0891 +0 0.1134 +0 0.1603 +0 0.0978 +0 0.1423 +0 0.1063 +0 0.0337 +0 0.2139 +0 0.1516 +0 0.1344 +0 0.0670 +0 0.0460 +0 0.0438 +0 0.1878 +0 0.0882 +0 0.0697 +0 0.5807 +0 0.0468 +0 0.0566 +0 0.0426 +0 0.1928 +0 0.0800 +0 0.2218 +0 0.0858 +0 0.1381 +0 0.1311 +0 0.0516 +0 0.1373 +0 0.1236 +0 0.0587 +0 0.1199 +0 0.2923 +0 0.6156 +0 0.1090 +0 0.0644 +0 0.1019 +0 0.0631 +0 0.1484 +0 0.1096 +0 0.7253 +0 0.0531 +0 0.0761 +0 0.0941 +0 0.0865 +0 0.0630 +1 0.7711 +0 0.1588 +0 0.1821 +0 0.2224 +0 0.3266 +0 0.2433 +0 0.1453 +0 0.2363 +0 0.1094 +0 0.0965 +0 0.0524 +0 0.2536 +0 0.0800 +0 0.2574 +0 0.0532 +0 0.0593 +0 0.0608 +0 0.0733 +0 0.0648 +0 0.0792 +0 0.0846 +0 0.1623 +0 0.3645 +0 0.1206 +0 0.0297 +0 0.0451 +0 0.0724 +0 0.0614 +0 0.0972 +0 0.2278 +0 0.0783 +0 0.0687 +0 0.1097 +0 0.0355 +0 0.1023 +0 0.0829 +0 0.0452 +0 0.0451 +0 0.1675 +0 0.2325 +0 0.0913 +0 0.1228 +0 0.2797 +0 0.1684 +0 0.1147 +0 0.1641 +0 0.0910 +0 0.1552 +0 0.2444 +0 0.2608 +0 0.1626 +0 0.1203 +0 0.1631 +0 0.0850 +1 0.8749 +0 0.0825 +0 0.1818 +0 0.0970 +0 0.3344 +0 0.1121 +0 0.0605 +0 0.0631 +0 0.0844 +0 0.1129 +0 0.0602 +0 0.1228 +0 0.0628 +0 0.1497 +0 0.0635 +0 0.1416 +0 0.1046 +1 0.8070 +0 0.0927 +0 0.0727 +0 0.0744 +0 0.0633 +0 0.2634 +0 0.1722 +0 0.1376 +0 0.2041 +0 0.2445 +0 0.2494 +0 0.0446 +0 0.0888 +0 0.0787 +0 0.0470 +0 0.1147 +0 0.0390 +0 0.5480 +0 0.0707 +0 0.1204 +0 0.0747 +0 0.0976 +0 0.0628 +0 0.0953 +0 0.2669 +0 0.1755 +0 0.1275 +0 0.1020 +0 0.0598 +0 0.1803 +0 0.1211 +0 0.1393 +0 0.0755 +0 0.1338 +0 0.0546 +0 0.0930 +0 0.1541 +0 0.0500 +0 0.0408 +0 0.1251 +0 0.1427 +0 0.6175 +0 0.3231 +0 0.7044 +0 0.1043 +0 0.1415 +0 0.2579 +0 0.0989 +0 0.1069 +0 0.0866 +0 0.1534 +0 0.0944 +0 0.1090 +0 0.5080 +0 0.0661 +0 0.2171 +0 0.1055 +0 0.0380 +0 0.1200 +0 0.1723 +0 0.0558 +0 0.0788 +0 0.1226 +0 0.1081 +0 0.1017 +0 0.2378 +0 0.1460 +0 0.0620 +0 0.1886 +0 0.0728 +0 0.2878 +0 0.1404 +0 0.3532 +0 0.0968 +0 0.0392 +0 0.2167 +0 0.0852 +0 0.1801 +0 0.0585 +0 0.0844 +0 0.1865 +0 0.0969 +0 0.0746 +0 0.0641 +0 0.0805 +0 0.1956 +0 0.1735 +0 0.0646 +0 0.5607 +0 0.2112 +0 0.0593 +0 0.1973 +0 0.1328 +0 0.1490 +0 0.2035 +0 0.0814 +0 0.1747 +0 0.0560 +0 0.1163 +0 0.3796 +0 0.1386 +0 0.4728 +0 0.1062 +0 0.1174 +0 0.0337 +0 0.1062 +0 0.0707 +0 0.1259 +0 0.1078 +0 0.0780 +0 0.0927 +0 0.0793 +0 0.0504 +0 0.0459 +0 0.0965 +0 0.0969 +0 0.2250 +0 0.2256 +0 0.1009 +0 0.0442 +0 0.0445 +0 0.2055 +0 0.0356 +0 0.0807 +0 0.0708 +0 0.0739 +0 0.1226 +0 0.1357 +0 0.0310 +0 0.1033 +0 0.1107 +0 0.0710 +0 0.0621 +0 0.0962 +0 0.0530 +0 0.1067 +0 0.2144 +0 0.3050 +0 0.0390 +0 0.0993 +0 0.0587 +0 0.1593 +1 0.8693 +0 0.1611 +0 0.3215 +0 0.0529 +0 0.6843 +0 0.1486 +0 0.1004 +0 0.0519 +0 0.0646 +0 0.1262 +0 0.2059 +0 0.0512 +0 0.1509 +0 0.0950 +0 0.0945 +0 0.0648 +0 0.0717 +0 0.0996 +0 0.0578 +0 0.1939 +0 0.0887 +0 0.0612 +0 0.0398 +0 0.1747 +0 0.1909 +1 0.8450 +0 0.0352 +0 0.1764 +0 0.1678 +0 0.2144 +0 0.0576 +0 0.1354 +0 0.1771 +0 0.1578 +0 0.0724 +0 0.0592 +0 0.0546 +0 0.2201 +0 0.0956 +0 0.0691 +0 0.1036 +0 0.1046 +0 0.0547 +0 0.0552 +0 0.1748 +0 0.0466 +1 0.7849 +0 0.1708 +0 0.2204 +0 0.2707 +0 0.1978 +0 0.0903 +0 0.1974 +0 0.1427 +0 0.1581 +0 0.0577 +0 0.0770 +0 0.0596 +0 0.1266 +0 0.0906 +0 0.1570 +0 0.0396 +0 0.1908 +1 0.7655 +0 0.1075 +0 0.1933 +0 0.1385 +0 0.5560 +0 0.0452 +0 0.0402 +0 0.0483 +0 0.0683 +0 0.1127 +0 0.4676 +0 0.1100 +0 0.1643 +0 0.1450 +0 0.2292 +0 0.0966 +0 0.1220 +0 0.0453 +0 0.0729 +0 0.0388 +1 0.7665 +0 0.0919 +0 0.0844 +0 0.1198 +0 0.2766 +0 0.0281 +0 0.1757 +0 0.0761 +0 0.1370 +0 0.0903 +0 0.0563 +0 0.1133 +1 0.7971 +0 0.1256 +0 0.0383 +0 0.0735 +0 0.2547 +0 0.1014 +0 0.1113 +0 0.0740 +0 0.0821 +0 0.0986 +0 0.2035 +0 0.1259 +0 0.0801 +0 0.0568 +0 0.2110 +0 0.2586 +0 0.1759 +0 0.3245 +0 0.2990 +0 0.0971 +0 0.3217 +0 0.1344 +0 0.2141 +0 0.0626 +0 0.0707 +0 0.1624 +0 0.2471 +0 0.0538 +0 0.0587 +0 0.0708 +0 0.2928 +0 0.0526 +0 0.1490 +0 0.0414 +0 0.0842 +0 0.0640 +0 0.1617 +1 0.7732 +0 0.0911 +0 0.0656 +0 0.1033 +0 0.0969 +0 0.1077 +0 0.0995 +0 0.5120 +0 0.0855 +0 0.1648 +0 0.0790 +0 0.0617 +0 0.0469 +0 0.0381 +0 0.1384 +0 0.0756 +0 0.0851 +0 0.0962 +0 0.2551 +0 0.0783 +0 0.0765 +0 0.0809 +0 0.1758 +0 0.2537 +0 0.1356 +0 0.2863 +0 0.2224 +0 0.6928 +0 0.1246 +0 0.1250 +0 0.0376 +0 0.0648 +0 0.0985 +0 0.1579 +0 0.0521 +0 0.1014 +0 0.1351 +0 0.0933 +0 0.1469 +0 0.2250 +0 0.0514 +0 0.0725 +0 0.1294 +0 0.1202 +0 0.0965 +0 0.1540 +0 0.0579 +0 0.7188 +0 0.1013 +0 0.1020 +0 0.0414 +0 0.1021 +0 0.0726 +0 0.1504 +0 0.0964 +0 0.1019 +0 0.2320 +0 0.0778 +0 0.1280 +0 0.0704 +1 0.9060 +0 0.0434 +0 0.1052 +0 0.0835 +0 0.2258 +0 0.0526 +0 0.1155 +0 0.6016 +1 0.8781 +0 0.0726 +0 0.0786 +0 0.1492 +0 0.0663 +0 0.0505 +0 0.1533 +0 0.0885 +0 0.0504 +0 0.0466 +0 0.0611 +0 0.1380 +0 0.2569 +0 0.1015 +0 0.0978 +0 0.0973 +0 0.1373 +0 0.0470 +0 0.1208 +0 0.0521 +0 0.1030 +0 0.6967 +0 0.0952 +0 0.2953 +0 0.2067 +0 0.1061 +0 0.0866 +0 0.1731 +0 0.0657 +0 0.1504 +0 0.0733 +0 0.0964 +0 0.1537 +0 0.3195 +0 0.1233 +0 0.0992 +0 0.0643 +0 0.0502 +0 0.0644 +0 0.0848 +0 0.2393 +0 0.2123 +0 0.0674 +0 0.0729 +0 0.0953 +0 0.1278 +0 0.1225 +0 0.0972 +0 0.2070 +0 0.0983 +0 0.0790 +0 0.0963 +0 0.1816 +0 0.5921 +0 0.0887 +0 0.0652 +0 0.1091 +0 0.0500 +0 0.0692 +0 0.1181 +0 0.0703 +0 0.1125 +0 0.1706 +0 0.1141 +0 0.0634 +0 0.0968 +0 0.0681 +0 0.0307 +0 0.1008 +0 0.0796 +0 0.0949 +0 0.0505 +1 0.8583 +0 0.1357 +0 0.0738 +0 0.0626 +0 0.1652 +0 0.2337 +0 0.0887 +0 0.0739 +0 0.0622 +0 0.0814 +0 0.1023 +0 0.0479 +0 0.0710 +0 0.0698 +0 0.0806 +0 0.0713 +0 0.2643 +0 0.0776 +0 0.0608 +0 0.0923 +0 0.0776 +0 0.0974 +0 0.1759 +0 0.0562 +0 0.0511 +0 0.1017 +0 0.1027 +0 0.1270 +0 0.0921 +0 0.0794 +0 0.1572 +0 0.0527 +0 0.1412 +0 0.0960 +0 0.0656 +0 0.0934 +0 0.1348 +0 0.0495 +0 0.1193 +0 0.1708 +0 0.0735 +0 0.0512 +0 0.2530 +0 0.0499 +0 0.0422 +0 0.0326 +0 0.0548 +0 0.1484 +0 0.0759 +0 0.0619 +0 0.0954 +0 0.0974 +0 0.0968 +0 0.1879 +0 0.0687 +0 0.0745 +0 0.1269 +0 0.1355 +0 0.1340 +0 0.1183 +0 0.1325 +0 0.1358 +0 0.6724 +0 0.0440 +0 0.0836 +0 0.1776 +0 0.0969 +0 0.3193 +0 0.0529 +0 0.0765 +0 0.1290 +1 0.7978 +0 0.2036 +0 0.0924 +0 0.2264 +0 0.4780 +0 0.1252 +0 0.7250 +0 0.0691 +0 0.0859 +0 0.0925 +0 0.0640 +0 0.1072 +0 0.6914 +0 0.1612 +1 0.8639 +0 0.2913 +0 0.1794 +1 0.7564 +1 0.7661 +0 0.2340 +0 0.1435 +0 0.3251 +0 0.0904 +0 0.0665 +0 0.1227 +0 0.1471 +0 0.1342 +0 0.3412 +0 0.0885 +0 0.1236 +0 0.1113 +0 0.3828 +0 0.1059 +0 0.0937 +0 0.1443 +0 0.3972 +0 0.0749 +0 0.1165 +0 0.0477 +0 0.1003 +0 0.0924 +0 0.2009 +0 0.1118 +0 0.1139 +0 0.1059 +0 0.2793 +0 0.0856 +0 0.1265 +0 0.1652 +0 0.0965 +0 0.1560 +0 0.1276 +0 0.1265 +0 0.2042 +0 0.0875 +0 0.1895 +0 0.0382 +0 0.0663 +0 0.2156 +0 0.0623 +0 0.1147 +0 0.1151 +0 0.1159 +0 0.1496 +0 0.1054 +0 0.0820 +0 0.1140 +0 0.1256 +0 0.0453 +0 0.0977 +0 0.0773 +0 0.1641 +0 0.0521 +0 0.2454 +0 0.1213 +0 0.1512 +0 0.1809 +0 0.0531 +0 0.1443 +0 0.0940 +0 0.0803 +0 0.0676 +0 0.2102 +0 0.0785 +0 0.1972 +0 0.0589 +0 0.1214 +0 0.1425 +0 0.1484 +0 0.3112 +0 0.1018 +0 0.1722 +0 0.0854 +0 0.1172 +0 0.1204 +0 0.0929 +0 0.1072 +0 0.1017 +0 0.1092 +0 0.3072 +0 0.2292 +0 0.0829 +0 0.1666 +0 0.1412 +0 0.0641 +0 0.0680 +0 0.0654 +0 0.2632 +0 0.1048 +0 0.0530 +0 0.1948 +0 0.1504 +0 0.0601 +0 0.6732 +0 0.1813 +0 0.3223 +0 0.1629 +0 0.1063 +0 0.0843 +0 0.1577 +0 0.3337 +0 0.0565 +0 0.1362 +0 0.1440 +0 0.0672 +0 0.0938 +0 0.0917 +0 0.1218 +0 0.1138 +0 0.1446 +0 0.0838 +0 0.1258 +0 0.0563 +0 0.1366 +0 0.2197 +0 0.1254 +0 0.1076 +0 0.0409 +0 0.1453 +0 0.0862 +0 0.0414 +0 0.0947 +0 0.0898 +0 0.0822 +0 0.0507 +0 0.0624 +0 0.0994 +0 0.0588 +0 0.0560 +0 0.1425 +0 0.0698 +0 0.1162 +0 0.0717 +0 0.0987 +0 0.1350 +0 0.2977 +0 0.1054 +0 0.0676 +0 0.0489 +0 0.1428 +0 0.0739 +0 0.0962 +0 0.1619 +0 0.0898 +0 0.0687 +0 0.1012 +0 0.2772 +0 0.1489 +0 0.0870 +0 0.0618 +0 0.0730 +0 0.0617 +0 0.7211 +0 0.2201 +0 0.0589 +0 0.0652 +0 0.0884 +0 0.0513 +0 0.1048 +0 0.0899 +0 0.0960 +0 0.0488 +0 0.1258 +0 0.1870 +0 0.1695 +0 0.4261 +0 0.1228 +0 0.0794 +0 0.3464 +0 0.1271 +0 0.0832 +0 0.1477 +0 0.0726 +0 0.5249 +0 0.0692 +0 0.3125 +0 0.4854 +0 0.1085 +0 0.0527 +0 0.0506 +0 0.2179 +0 0.1887 +0 0.0636 +0 0.1093 +0 0.1341 +0 0.1585 +0 0.1605 +0 0.0617 +0 0.1006 +0 0.0643 +0 0.0538 +0 0.1876 +0 0.0431 +0 0.5390 +0 0.1032 +0 0.0330 +0 0.1445 +0 0.1388 +0 0.0964 +0 0.0987 +0 0.2316 +0 0.0497 +0 0.0712 +0 0.0382 +1 0.7517 +0 0.0538 +1 0.8241 +0 0.1202 +0 0.0421 +0 0.0380 +0 0.0838 +0 0.1349 +0 0.1378 +0 0.1507 +0 0.1698 +0 0.0670 +0 0.1878 +0 0.0504 +0 0.0533 +0 0.1675 +0 0.0602 +0 0.0923 +0 0.4503 +0 0.0897 +0 0.0802 +0 0.3032 +0 0.2603 +0 0.0576 +0 0.2066 +0 0.3279 +0 0.4327 +0 0.2638 +0 0.1469 +0 0.2272 +0 0.2019 +0 0.0495 +0 0.0533 +0 0.1339 +0 0.0677 +0 0.1060 +0 0.6641 +0 0.0992 +0 0.1172 +0 0.2594 +0 0.0810 +0 0.1420 +0 0.0772 +0 0.1362 +0 0.1397 +0 0.1861 +0 0.1288 +0 0.0509 +0 0.1213 +0 0.1779 +0 0.0512 +0 0.0770 +0 0.0459 +0 0.1598 +0 0.0855 +0 0.0788 +0 0.0409 +0 0.0557 +0 0.1443 +0 0.1799 +0 0.1501 +0 0.0977 +0 0.1434 +0 0.1533 +0 0.1417 +0 0.1365 +0 0.1297 +0 0.1077 +0 0.1332 +0 0.3323 +0 0.0721 +0 0.0816 +0 0.1863 +0 0.0854 +1 0.8070 +0 0.1251 +0 0.0520 +0 0.0674 +0 0.4206 +0 0.0881 +0 0.0378 +0 0.0962 +0 0.0886 +0 0.0801 +0 0.0484 +0 0.0961 +0 0.1223 +0 0.0339 +0 0.0878 +1 0.8096 +0 0.0725 +0 0.2883 +0 0.0714 +0 0.3327 +0 0.0766 +0 0.0338 +0 0.0852 +0 0.0809 +0 0.2085 +0 0.1443 +0 0.0468 +0 0.0757 +0 0.0680 +0 0.0746 +0 0.1340 +1 0.8354 +0 0.0716 +0 0.2356 +0 0.0750 +0 0.1698 +0 0.0595 +0 0.1193 +0 0.0791 +0 0.1560 +0 0.0397 +0 0.0770 +0 0.0420 +0 0.1159 +0 0.0728 +0 0.4154 +0 0.5598 +0 0.0832 +0 0.1091 +0 0.2792 +0 0.0566 +1 0.8880 +0 0.0446 +0 0.0825 +0 0.1095 +0 0.1420 +0 0.1551 +0 0.0752 +0 0.0862 +0 0.2796 +0 0.1863 +0 0.0909 +0 0.1097 +0 0.0393 +0 0.0947 +0 0.0511 +0 0.0882 +0 0.0519 +0 0.0669 +0 0.1148 +0 0.0631 +0 0.3400 +0 0.1034 +0 0.1292 +0 0.0560 +0 0.1099 +0 0.0528 +0 0.2221 +0 0.1744 +0 0.3362 +0 0.0449 +0 0.0989 +0 0.6580 +0 0.1020 +0 0.2424 +0 0.1642 +0 0.0413 +0 0.1158 +0 0.0712 +0 0.0465 +0 0.1105 +0 0.0811 +0 0.5301 +0 0.3293 +0 0.0538 +0 0.1401 +0 0.1074 +0 0.3530 +0 0.2079 +0 0.1630 +0 0.1824 +0 0.3498 +0 0.0780 +0 0.0643 +0 0.2082 +0 0.0759 +0 0.1494 +0 0.1177 +0 0.0947 +0 0.0430 +0 0.0751 +0 0.0584 +0 0.0993 +1 0.8255 +0 0.0690 +0 0.0652 +0 0.2104 +0 0.0684 +0 0.6966 +0 0.0583 +0 0.4726 +0 0.3698 +0 0.0784 +0 0.1559 +0 0.0888 +0 0.1167 +0 0.0621 +0 0.0583 +0 0.0388 +0 0.0706 +0 0.1005 +0 0.1391 +0 0.0497 +0 0.0852 +0 0.3105 +0 0.0759 +0 0.0798 +0 0.0542 +0 0.0507 +0 0.2387 +0 0.0948 +0 0.1267 +0 0.1464 +0 0.1288 +0 0.3635 +0 0.1828 +0 0.2626 +0 0.0793 +0 0.0848 +0 0.1346 +1 0.8630 +0 0.2202 +0 0.1214 +0 0.0674 +0 0.1309 +0 0.0836 +0 0.0933 +0 0.0511 +0 0.1814 +0 0.1375 +0 0.2047 +0 0.1843 +0 0.5017 +0 0.1246 +0 0.0485 +0 0.2622 +0 0.1923 +0 0.0933 +0 0.0598 +0 0.0798 +0 0.0946 +0 0.1139 +0 0.0717 +0 0.2221 +0 0.1049 +0 0.0867 +0 0.2215 +0 0.0575 +0 0.0625 +0 0.1228 +0 0.0882 +0 0.2260 +0 0.3279 +0 0.1112 +0 0.1140 +0 0.1015 +0 0.2190 +0 0.0775 +0 0.2053 +0 0.0711 +0 0.0615 +1 0.8679 +0 0.3582 +0 0.0595 +0 0.0336 +0 0.0639 +0 0.0820 +0 0.0825 +0 0.1930 +0 0.1781 +1 0.8045 +0 0.1096 +0 0.0508 +0 0.0322 +0 0.0417 +1 0.7940 +0 0.2406 +0 0.1499 +0 0.0782 +0 0.2626 +0 0.0918 +0 0.2212 +0 0.1807 +0 0.0637 +0 0.1152 +0 0.1935 +0 0.0747 +0 0.3259 +0 0.3118 +0 0.1160 +0 0.0650 +0 0.5169 +0 0.0668 +0 0.1662 +0 0.2632 +0 0.1859 +0 0.1528 +0 0.0980 +0 0.0601 +0 0.0947 +0 0.3843 +0 0.0462 +0 0.5938 +0 0.1563 +0 0.0609 +0 0.1799 +0 0.3877 +0 0.0652 +1 0.8615 +0 0.0918 +0 0.1508 +0 0.3317 +0 0.1483 +0 0.0434 +0 0.1291 +0 0.5456 +0 0.1638 +0 0.2830 +0 0.0707 +0 0.0474 +0 0.2280 +0 0.1059 +0 0.2150 +0 0.0630 +0 0.0707 +0 0.0939 +0 0.0955 +0 0.0679 +0 0.0700 +0 0.1499 +0 0.0935 +0 0.0852 +0 0.0771 +0 0.0830 +0 0.1260 +0 0.0760 +0 0.2337 +0 0.2603 +0 0.1264 +0 0.0982 +0 0.1638 +0 0.0902 +1 0.7805 +0 0.0967 +0 0.0642 +0 0.1153 +0 0.0466 +0 0.1389 +0 0.1579 +0 0.1819 +0 0.1177 +0 0.2309 +0 0.4850 +0 0.0761 +0 0.0673 +0 0.0654 +0 0.0585 +0 0.1341 +0 0.1754 +0 0.0946 +0 0.1120 +0 0.1574 +0 0.0982 +0 0.0911 +0 0.1010 +0 0.1743 +0 0.1849 +0 0.2068 +0 0.2014 +0 0.2470 +0 0.1163 +0 0.0742 +0 0.1459 +0 0.1088 +0 0.2958 +0 0.1430 +0 0.0712 +0 0.0648 +0 0.2368 +0 0.0713 +0 0.2104 +0 0.1123 +0 0.2044 +0 0.1640 +0 0.0541 +0 0.1162 +0 0.0521 +0 0.2168 +1 0.8628 +0 0.0751 +0 0.1238 +0 0.1892 +0 0.1193 +0 0.2076 +0 0.0450 +0 0.0790 +0 0.3852 +0 0.0845 +0 0.2909 +0 0.1268 +0 0.0542 +0 0.4486 +0 0.0857 +0 0.0785 +0 0.2891 +0 0.1580 +0 0.1538 +0 0.2093 +0 0.0809 +0 0.0680 +0 0.0934 +0 0.1356 +0 0.1088 +0 0.0952 +0 0.7477 +0 0.0703 +0 0.1383 +0 0.0516 +0 0.0676 +0 0.0563 +0 0.0892 +0 0.1116 +0 0.1148 +0 0.1116 +0 0.2125 +0 0.0821 +0 0.7133 +0 0.2200 +0 0.0991 +0 0.0730 +0 0.0839 +0 0.0746 +0 0.0838 +0 0.1658 +0 0.0536 +0 0.0990 +0 0.1081 +0 0.0635 +0 0.1984 +0 0.1503 +0 0.0875 +0 0.3864 +0 0.2125 +0 0.0654 +0 0.0855 +0 0.0816 +0 0.0760 +0 0.3683 +0 0.1030 +0 0.1891 +0 0.0828 +0 0.0874 +0 0.0849 +0 0.1038 +0 0.0843 +0 0.0877 +0 0.1757 +0 0.1807 +0 0.5217 +0 0.1235 +0 0.0888 +0 0.0625 +0 0.0840 +0 0.2075 +0 0.0939 +0 0.0763 +0 0.0809 +0 0.1120 +0 0.0828 +0 0.0511 +0 0.0789 +0 0.0914 +0 0.0649 +0 0.1367 +0 0.0770 +0 0.1034 +0 0.2270 +0 0.3485 +0 0.0535 +0 0.0607 +0 0.0893 +0 0.1016 +0 0.0909 +0 0.5079 +0 0.0917 +0 0.2023 +0 0.0874 +0 0.6842 +0 0.1972 +0 0.0408 +0 0.0880 +0 0.1127 +0 0.0846 +0 0.0776 +0 0.0650 +0 0.1272 +0 0.1175 +0 0.0681 +0 0.0871 +0 0.1228 +0 0.0953 +0 0.1301 +0 0.1480 +0 0.1011 +0 0.0617 +0 0.0964 +0 0.2934 +0 0.1467 +0 0.0752 +0 0.0919 +0 0.0380 +0 0.1387 +0 0.0462 +0 0.0793 +0 0.0545 +0 0.1047 +0 0.0498 +0 0.0402 +0 0.2510 +0 0.0434 +0 0.0759 +0 0.0939 +0 0.1809 +0 0.1065 +0 0.1191 +0 0.0397 +0 0.0748 +1 0.8653 +0 0.1921 +0 0.2142 +0 0.0377 +0 0.1875 +0 0.0781 +0 0.0603 +0 0.2031 +0 0.1182 +0 0.1032 +0 0.0874 +0 0.2152 +0 0.1468 +0 0.0782 +0 0.1034 +0 0.0595 +0 0.1010 +0 0.3680 +0 0.1860 +0 0.0713 +0 0.1769 +0 0.1781 +0 0.1147 +0 0.2484 +0 0.2858 +0 0.1162 +0 0.1429 +0 0.0711 +0 0.0753 +0 0.1076 +0 0.1182 +0 0.1206 +0 0.1623 +0 0.0578 +0 0.0590 +0 0.2122 +0 0.0801 +0 0.1560 +0 0.1333 +0 0.0662 +0 0.1164 +0 0.1128 +0 0.1824 +0 0.1200 +0 0.1831 +0 0.2121 +0 0.0637 +0 0.1606 +0 0.1004 +0 0.1224 +0 0.2235 +0 0.1635 +0 0.0752 +0 0.1384 +0 0.5703 +0 0.0766 +0 0.0489 +0 0.1325 +0 0.1012 +0 0.0803 +0 0.0699 +0 0.2606 +0 0.3190 +0 0.2155 +0 0.1716 +0 0.1924 +0 0.3048 +0 0.0682 +0 0.2420 +0 0.0955 +0 0.0835 +0 0.0595 +0 0.1397 +0 0.5611 +0 0.1552 +0 0.0905 +0 0.0791 +0 0.1104 +0 0.0503 +0 0.0648 +0 0.0947 +0 0.0619 +0 0.0589 +0 0.0588 +0 0.1121 +0 0.0830 +0 0.1224 +0 0.0636 +0 0.0553 +0 0.1189 +0 0.0457 +0 0.4067 +0 0.1554 +0 0.0733 +0 0.0699 +0 0.1581 +0 0.3371 +0 0.1049 +0 0.0447 +0 0.1350 +0 0.0823 +0 0.1102 +0 0.1577 +0 0.2165 +0 0.1266 +0 0.6585 +0 0.1617 +0 0.2126 +0 0.0789 +0 0.0981 +0 0.0598 +0 0.0508 +0 0.0875 +0 0.3139 +0 0.0894 +0 0.0773 +0 0.1232 +1 0.7732 +0 0.0901 +0 0.2059 +0 0.0568 +0 0.0753 +0 0.2014 +0 0.1188 +0 0.1717 +0 0.1227 +0 0.1532 +0 0.1265 +0 0.1157 +0 0.0795 +1 0.8561 +0 0.0398 +0 0.1432 +0 0.0652 +0 0.1927 +0 0.1022 +0 0.1664 +0 0.3868 +0 0.5063 +0 0.1233 +0 0.1474 +0 0.0460 +0 0.1456 +0 0.1814 +0 0.1253 +0 0.0496 +0 0.1830 +0 0.0451 +0 0.1258 +0 0.1442 +0 0.0537 +0 0.1358 +0 0.2065 +0 0.0570 +0 0.1038 +0 0.1235 +0 0.1469 +0 0.0625 +0 0.0377 +0 0.0616 +0 0.0871 +0 0.1472 +0 0.2056 +0 0.0944 +0 0.0739 +0 0.0621 +0 0.0634 +0 0.1684 +0 0.0489 +0 0.0941 +0 0.1347 +0 0.0926 +0 0.6513 +0 0.6692 +0 0.3259 +0 0.0632 +0 0.1653 +0 0.0782 +0 0.0504 +0 0.0657 +0 0.1449 +0 0.3052 +0 0.2793 +0 0.0967 +0 0.3514 +0 0.0488 +0 0.3173 +0 0.0486 +0 0.0557 +0 0.1320 +0 0.1094 +0 0.1070 +0 0.1034 +0 0.2088 +0 0.0643 +0 0.1216 +0 0.0610 +0 0.0679 +0 0.2804 +0 0.1250 +0 0.0484 +0 0.2172 +0 0.0788 +0 0.0685 +0 0.0728 +0 0.1499 +0 0.1414 +0 0.0429 +0 0.1439 +0 0.1247 +0 0.0360 +0 0.0908 +0 0.2355 +0 0.2837 +0 0.0760 +0 0.2145 +0 0.2317 +0 0.0356 +0 0.1832 +1 0.8453 +0 0.1119 +0 0.0932 +0 0.1101 +0 0.2239 +0 0.2831 +0 0.0413 +0 0.0743 +0 0.1011 +0 0.1960 +0 0.0844 +1 0.8509 +0 0.0620 +1 0.7898 +0 0.2087 +0 0.1031 +0 0.1355 +0 0.0660 +0 0.1641 +0 0.2657 +0 0.2006 +0 0.1886 +0 0.1084 +0 0.4300 +0 0.2098 +0 0.1087 +0 0.0549 +0 0.1309 +0 0.0539 +0 0.1440 +0 0.0636 +0 0.0601 +0 0.0823 +1 0.8164 +0 0.1465 +0 0.0687 +0 0.0764 +0 0.4416 +0 0.1068 +0 0.0534 +0 0.2935 +0 0.0364 +0 0.0802 +0 0.1836 +0 0.0767 +0 0.0725 +0 0.3023 +0 0.0894 +0 0.1202 +0 0.1380 +0 0.1589 +0 0.2672 +0 0.0456 +0 0.1655 +0 0.0733 +0 0.2652 +0 0.7160 +0 0.1268 +0 0.1514 +0 0.1521 +0 0.2674 +0 0.0903 +0 0.1058 +0 0.0528 +0 0.1646 +0 0.0979 +0 0.0341 +0 0.0966 +0 0.0868 +0 0.2613 +0 0.1036 +0 0.0495 +0 0.0890 +0 0.0774 +0 0.2815 +0 0.0631 +0 0.0520 +0 0.2137 +0 0.0967 +1 0.8331 +0 0.0775 +1 0.8243 +0 0.7327 +0 0.0385 +0 0.0597 +0 0.0677 +0 0.1671 +0 0.1466 +0 0.1060 +0 0.2891 +0 0.0705 +0 0.0660 +0 0.0800 +0 0.0419 +0 0.1413 +0 0.1725 +0 0.1050 +0 0.2820 +0 0.0406 +0 0.1057 +0 0.0470 +0 0.0686 +0 0.0720 +0 0.1283 +0 0.5007 +0 0.1667 +0 0.1161 +0 0.1241 +0 0.0581 +0 0.0711 +0 0.2088 +0 0.2043 +0 0.1566 +0 0.1016 +0 0.1234 +0 0.0492 +0 0.1347 +0 0.0681 +0 0.0763 +0 0.0671 +0 0.0703 +0 0.1093 +0 0.1195 +0 0.0300 +0 0.0625 +0 0.0383 +0 0.0745 +0 0.0852 +0 0.1029 +0 0.3838 +0 0.0765 +0 0.0521 +0 0.1653 +0 0.4550 +0 0.0777 +0 0.0862 +0 0.3351 +0 0.0564 +1 0.7914 +0 0.1211 +0 0.0687 +0 0.0881 +0 0.0821 +0 0.1003 +0 0.1342 +0 0.1545 +0 0.3957 +0 0.1168 +0 0.1237 +0 0.1122 +0 0.0717 +0 0.0989 +0 0.0476 +0 0.0925 +0 0.0664 +0 0.1035 +0 0.1304 +0 0.1724 +0 0.1202 +0 0.4856 +0 0.0758 +0 0.2084 +0 0.1885 +0 0.0791 +0 0.1542 +0 0.0915 +0 0.2114 +0 0.6058 +0 0.2174 +0 0.1896 +0 0.0820 +0 0.0772 +0 0.1082 +0 0.0733 +0 0.3565 +0 0.0992 +0 0.2830 +0 0.1103 +0 0.0629 +0 0.0984 +0 0.0502 +0 0.2016 +0 0.0375 +0 0.2262 +0 0.0728 +0 0.0803 +0 0.0924 +0 0.1069 +0 0.0861 +0 0.1200 +0 0.0583 +0 0.0415 +0 0.1440 +0 0.0746 +0 0.4076 +0 0.0691 +0 0.0486 +0 0.1332 +0 0.0610 +0 0.0756 +0 0.0812 +0 0.1156 +0 0.1034 +0 0.0781 +0 0.0748 +0 0.0676 +0 0.0431 +0 0.0686 +0 0.1154 +0 0.0593 +0 0.0571 +0 0.1655 +0 0.1362 +0 0.0832 +0 0.0782 +0 0.3424 +0 0.2590 +0 0.0740 +0 0.1418 +0 0.0809 +0 0.1459 +0 0.0767 +0 0.1805 +0 0.1240 +0 0.0889 +0 0.0810 +1 0.8084 +0 0.1613 +0 0.0896 +0 0.0806 +0 0.0367 +0 0.1004 +0 0.1619 +0 0.2054 +0 0.0864 +0 0.1201 +0 0.0820 +0 0.1988 +0 0.0374 +0 0.0626 +0 0.0963 +0 0.1591 +0 0.1247 +0 0.0902 +0 0.0940 +0 0.0695 +0 0.2020 +0 0.0467 +0 0.0522 +0 0.1648 +0 0.1973 +0 0.0685 +0 0.0635 +0 0.1218 +0 0.1000 +0 0.0407 +0 0.0490 +0 0.2348 +0 0.7146 +0 0.0914 +0 0.0983 +0 0.0439 +0 0.0703 +0 0.0470 +0 0.2161 +0 0.3692 +0 0.0568 +0 0.1119 +0 0.2674 +0 0.1384 +0 0.0359 +0 0.1206 +0 0.0506 +0 0.0814 +0 0.0367 +0 0.0833 +0 0.1002 +0 0.1711 +0 0.1469 +0 0.0751 +0 0.0752 +0 0.3457 +0 0.1442 +0 0.0683 +0 0.0978 +0 0.0980 +0 0.1017 +0 0.1499 +0 0.2479 +0 0.0805 +0 0.1471 +0 0.0946 +0 0.0708 +0 0.0545 +0 0.1968 +0 0.0457 +0 0.1145 +0 0.0801 +0 0.0824 +0 0.0808 +0 0.1097 +0 0.1721 +0 0.1977 +0 0.2231 +0 0.4164 +0 0.1057 +0 0.1375 +0 0.0761 +0 0.0719 +0 0.0802 +0 0.0602 +0 0.1692 +0 0.1489 +0 0.0779 +0 0.1002 +0 0.0660 +0 0.0694 +0 0.1351 +0 0.1301 +0 0.1499 +0 0.0995 +0 0.0396 +0 0.2698 +0 0.0701 +0 0.2098 +0 0.1297 +0 0.0658 +0 0.1079 +0 0.0665 +0 0.1259 +0 0.0766 +0 0.3303 +0 0.1785 +0 0.0781 +0 0.6326 +0 0.0844 +0 0.0905 +0 0.2360 +0 0.1005 +0 0.2383 +0 0.1083 +0 0.2923 +1 0.8457 +0 0.1230 +0 0.1014 +0 0.1239 +0 0.2012 +0 0.0452 +0 0.0572 +0 0.1964 +0 0.1046 +0 0.0784 +0 0.1226 +0 0.1111 +0 0.0741 +0 0.0647 +0 0.0495 +0 0.0484 +0 0.5880 +0 0.1479 +0 0.2907 +0 0.1178 +0 0.1586 +0 0.1783 +0 0.0949 +0 0.0955 +0 0.0447 +0 0.0884 +0 0.0531 +0 0.0687 +0 0.0918 +0 0.1240 +0 0.1266 +0 0.1789 +0 0.1384 +0 0.1525 +0 0.1408 +0 0.1985 +0 0.3337 +0 0.0982 +0 0.1137 +0 0.0680 +0 0.0720 +0 0.0552 +0 0.0608 +0 0.2536 +0 0.0373 +0 0.0464 +0 0.0611 +0 0.0987 +0 0.0652 +0 0.1620 +0 0.1693 +0 0.0864 +0 0.1017 +0 0.2362 +0 0.1034 +0 0.0937 +0 0.0396 +0 0.0618 +0 0.1449 +0 0.0922 +0 0.1037 +0 0.0852 +0 0.1006 +0 0.0774 +0 0.2494 +0 0.0576 +0 0.0989 +0 0.1379 +0 0.0848 +0 0.1049 +0 0.1366 +1 0.7738 +0 0.0381 +0 0.0655 +0 0.0901 +0 0.1132 +0 0.0683 +0 0.0742 +0 0.2223 +0 0.2831 +0 0.7322 +0 0.1232 +0 0.1619 +0 0.1008 +0 0.0572 +0 0.0889 +0 0.0876 +0 0.0754 +0 0.1881 +0 0.1517 +0 0.0880 +1 0.7561 +0 0.2048 +0 0.0913 +0 0.0782 +0 0.1070 +0 0.1720 +0 0.0572 +0 0.1090 +0 0.0907 +0 0.1604 +0 0.2254 +0 0.0630 +0 0.1319 +0 0.1183 +0 0.0490 +0 0.1079 +0 0.0334 +0 0.2848 +0 0.2769 +0 0.0930 +0 0.0655 +0 0.3831 +0 0.0852 +0 0.0780 +0 0.0759 +0 0.0439 +0 0.2812 +0 0.1470 +0 0.1190 +0 0.1181 +0 0.2612 +0 0.1538 +0 0.2001 +0 0.0411 +0 0.0793 +0 0.0533 +0 0.0878 +0 0.1771 +0 0.1713 +0 0.1400 +0 0.0810 +0 0.1141 +0 0.1057 +0 0.0479 +0 0.0564 +0 0.0644 +0 0.1046 +0 0.0659 +0 0.3841 +0 0.1470 +0 0.0399 +0 0.0582 +0 0.2036 +0 0.1636 +0 0.0607 +0 0.3043 +0 0.2001 +0 0.2249 +0 0.0500 +0 0.1204 +0 0.0295 +0 0.2416 +0 0.1142 +0 0.2460 +0 0.0535 +0 0.1411 +0 0.1682 +0 0.0560 +0 0.0363 +0 0.1464 +0 0.1718 +0 0.0702 +0 0.1203 +0 0.1545 +0 0.1284 +1 0.8256 +0 0.0599 +0 0.0278 +0 0.2456 +0 0.0710 +0 0.1599 +0 0.1658 +0 0.3298 +0 0.0568 +0 0.0659 +0 0.0454 +0 0.1785 +0 0.2032 +0 0.0315 +0 0.1610 +0 0.1680 +0 0.3063 +0 0.1184 +0 0.1027 +0 0.0889 +0 0.1469 +0 0.3395 +0 0.2117 +0 0.3173 +0 0.2330 +0 0.2385 +0 0.0622 +0 0.1524 +0 0.0721 +0 0.3522 +0 0.0961 +0 0.1196 +1 0.7703 +0 0.0674 +1 0.7673 +0 0.0949 +0 0.0874 +0 0.0976 +1 0.7863 +0 0.1374 +0 0.3595 +0 0.1388 +0 0.5939 +0 0.0976 +0 0.0922 +0 0.3544 +0 0.1254 +0 0.2322 +0 0.0432 +0 0.0741 +0 0.0851 +0 0.1725 +0 0.1333 +0 0.0768 +0 0.0995 +0 0.1079 +0 0.0457 +0 0.1830 +0 0.2564 +0 0.0577 +0 0.0907 +0 0.2146 +0 0.2068 +0 0.1077 +0 0.2150 +0 0.0776 +0 0.0588 +0 0.1232 +0 0.2225 +0 0.0513 +0 0.2094 +0 0.0900 +0 0.1387 +0 0.1660 +0 0.0977 +0 0.2758 +0 0.2293 +0 0.1485 +0 0.0855 +0 0.0576 +0 0.0882 +0 0.1579 +0 0.0410 +0 0.1120 +0 0.1344 +0 0.0875 +0 0.1427 +0 0.0632 +0 0.1713 +0 0.0506 +0 0.1092 +0 0.7174 +0 0.1468 +0 0.0716 +0 0.4796 +0 0.0885 +0 0.1430 +0 0.4314 +0 0.0837 +0 0.1432 +0 0.1082 +0 0.1282 +0 0.0777 +0 0.0803 +0 0.1104 +0 0.1467 +0 0.0747 +0 0.0610 +0 0.0986 +0 0.0691 +0 0.2341 +0 0.1316 +0 0.0788 +0 0.0634 +0 0.0932 +0 0.2074 +0 0.1268 +0 0.0880 +0 0.0879 +0 0.1088 +0 0.1610 +0 0.1534 +0 0.0421 +0 0.1946 +0 0.0900 +0 0.1049 +0 0.0783 +0 0.3191 +0 0.1467 +0 0.1376 +0 0.0618 +0 0.1580 +0 0.1089 +0 0.0979 +0 0.1388 +0 0.3118 +0 0.0657 +0 0.1712 +0 0.1096 +0 0.0437 +0 0.0685 +0 0.2942 +0 0.1108 +0 0.0974 +0 0.1258 +0 0.0989 +0 0.2783 +0 0.1786 +0 0.1250 +0 0.0303 +0 0.0445 +0 0.2555 +0 0.4427 +0 0.0704 +0 0.2054 +0 0.3692 +0 0.0730 +0 0.3428 +0 0.3455 +0 0.0904 +0 0.0842 +0 0.1203 +0 0.1033 +0 0.1605 +0 0.0805 +0 0.0514 +0 0.0738 +0 0.2973 +0 0.0996 +0 0.2353 +0 0.0556 +0 0.1893 +0 0.1523 +0 0.1186 +0 0.0592 +0 0.1614 +0 0.0430 +0 0.2595 +0 0.0984 +0 0.0525 +0 0.2048 +0 0.2071 +0 0.1078 +0 0.1481 +0 0.2117 +0 0.0790 +0 0.1244 +0 0.1010 +0 0.0958 +0 0.0747 +0 0.0398 +0 0.0860 +0 0.2020 +0 0.1510 +0 0.3161 +0 0.1288 +0 0.0706 +0 0.1559 +0 0.1460 +0 0.1114 +0 0.1801 +0 0.1814 +0 0.1418 +0 0.0897 +0 0.1195 +0 0.0924 +0 0.1126 +0 0.1114 +0 0.1468 +0 0.0872 +0 0.0722 +0 0.0870 +0 0.2976 +0 0.1491 +0 0.2402 +0 0.0760 +0 0.0682 +0 0.0544 +0 0.1450 +0 0.0378 +0 0.0512 +0 0.0641 +0 0.0710 +0 0.0389 +0 0.2199 +0 0.0445 +0 0.1152 +0 0.0976 +0 0.1044 +0 0.2668 +0 0.3046 +0 0.1536 +0 0.1448 +0 0.0469 +0 0.6609 +0 0.1167 +0 0.1755 +0 0.0949 +0 0.3259 +0 0.1518 +0 0.1268 +0 0.1859 +0 0.1033 +0 0.0727 +0 0.2265 +0 0.1466 +0 0.1460 +0 0.0877 +0 0.0511 +0 0.0568 +0 0.1296 +0 0.1981 +0 0.0441 +0 0.0735 +0 0.0670 +0 0.0823 +0 0.1470 +0 0.0867 +0 0.1325 +0 0.1616 +0 0.0908 +0 0.2084 +0 0.0604 +0 0.0659 +0 0.1248 +0 0.1012 +0 0.2090 +0 0.0615 +0 0.1292 +0 0.0638 +0 0.0747 +0 0.1985 +0 0.1013 +0 0.0897 +0 0.4042 +0 0.1170 +0 0.6924 +0 0.1691 +0 0.1443 +0 0.0964 +0 0.1183 +0 0.0501 +0 0.1892 +0 0.1250 +0 0.1317 +0 0.2711 +0 0.0655 +0 0.3228 +0 0.1176 +0 0.2417 +0 0.2237 +0 0.0958 +0 0.1567 +0 0.3393 +0 0.0834 +0 0.1385 +0 0.0907 +0 0.2748 +0 0.5858 +0 0.1481 +0 0.0957 +0 0.0468 +0 0.2397 +0 0.1379 +0 0.0462 +0 0.0887 +0 0.2065 +0 0.0476 +0 0.0849 +0 0.0786 +0 0.0454 +0 0.0853 +0 0.1739 +0 0.3093 +0 0.0823 +0 0.1208 +0 0.0485 +0 0.5342 +1 0.7992 +0 0.6997 +0 0.0635 +0 0.1693 +0 0.1429 +0 0.1407 +0 0.5044 +0 0.1853 +0 0.0943 +0 0.0713 +0 0.1072 +0 0.3158 +0 0.0857 +0 0.0879 +0 0.0993 +0 0.0445 +0 0.1786 +0 0.0702 +0 0.0427 +0 0.1006 +0 0.1712 +0 0.0782 +0 0.0667 +0 0.1149 +0 0.0444 +0 0.0854 +0 0.0571 +0 0.1223 +0 0.2068 +0 0.1193 +0 0.1067 +0 0.1747 +0 0.1030 +0 0.6540 +0 0.3781 +0 0.0448 +0 0.2134 +0 0.1192 +0 0.1660 +0 0.1548 +0 0.0927 +0 0.0773 +0 0.0504 +0 0.1186 +0 0.1191 +0 0.1158 +0 0.1193 +0 0.0613 +0 0.0635 +0 0.0606 +0 0.2922 +0 0.0996 +0 0.0593 +0 0.1743 +0 0.5593 +0 0.1310 +0 0.6342 +0 0.0858 +0 0.1598 +0 0.1252 +0 0.2126 +0 0.3875 +0 0.1097 +0 0.7307 +0 0.0850 +0 0.0880 +0 0.0685 +0 0.0698 +0 0.1269 +0 0.1060 +0 0.0385 +0 0.0723 +0 0.0727 +0 0.0364 +0 0.1676 +0 0.0774 +0 0.1105 +0 0.1890 +0 0.3060 +0 0.0607 +0 0.2378 +0 0.0640 +0 0.0580 +0 0.0486 +0 0.0872 +0 0.0676 +0 0.1322 +0 0.1608 +0 0.4816 +0 0.2068 +0 0.0668 +0 0.1016 +0 0.0937 +0 0.0336 +0 0.1643 +0 0.1068 +0 0.0726 +0 0.1272 +0 0.0988 +0 0.1896 +0 0.0402 +1 0.7640 +0 0.0642 +0 0.0510 +0 0.1187 +0 0.5631 +0 0.0556 +0 0.1519 +0 0.1168 +0 0.1002 +0 0.1800 +0 0.1232 +1 0.8257 +0 0.1182 +0 0.0758 +0 0.0786 +0 0.0926 +0 0.1678 +0 0.4033 +0 0.1111 +0 0.0541 +0 0.1358 +0 0.0563 +0 0.1631 +0 0.0673 +0 0.0850 +0 0.1087 +0 0.2160 +0 0.1559 +0 0.0984 +0 0.0921 +0 0.0649 +0 0.1691 +0 0.2264 +0 0.0430 +0 0.0438 +0 0.1751 +0 0.1735 +0 0.1101 +0 0.0409 +0 0.2904 +0 0.1032 +0 0.3084 +0 0.0413 +0 0.1167 +0 0.1610 +0 0.0801 +0 0.2053 +0 0.2314 +0 0.1612 +0 0.1505 +0 0.3109 +0 0.0864 +0 0.1563 +0 0.2406 +0 0.0683 +0 0.0809 +0 0.0733 +0 0.0527 +0 0.7358 +0 0.2815 +0 0.0592 +0 0.1325 +0 0.1098 +0 0.0870 +0 0.0491 +0 0.1176 +0 0.1637 +0 0.0832 +0 0.0777 +0 0.0741 +0 0.3881 +0 0.2913 +0 0.0878 +0 0.0927 +0 0.0509 +0 0.0899 +0 0.0300 +0 0.0901 +0 0.0564 +0 0.0374 +0 0.1633 +0 0.1781 +0 0.0554 +0 0.0595 +0 0.1006 +0 0.0867 +0 0.0507 +0 0.0591 +0 0.0472 +0 0.0559 +0 0.2865 +0 0.2173 +0 0.7359 +0 0.1110 +0 0.0635 +0 0.1477 +0 0.0557 +0 0.1983 +0 0.3205 +0 0.1961 +0 0.0547 +0 0.1295 +0 0.0816 +0 0.0928 +0 0.2844 +0 0.4487 +0 0.0651 +0 0.1268 +0 0.5625 +0 0.2942 +0 0.2278 +0 0.0634 +0 0.2774 +0 0.1046 +0 0.1159 +0 0.1148 +0 0.0695 +0 0.1643 +0 0.1287 +0 0.0780 +0 0.0840 +0 0.1637 +0 0.2487 +0 0.0668 +0 0.1104 +0 0.0981 +0 0.4146 +0 0.1056 +0 0.0802 +0 0.1102 +0 0.1326 +0 0.0549 +0 0.1408 +0 0.0881 +0 0.1115 +0 0.0511 +0 0.0675 +0 0.0504 +0 0.1472 +0 0.2152 +0 0.3481 +0 0.0926 +0 0.1751 +0 0.0938 +0 0.1665 +0 0.0378 +0 0.1080 +0 0.0451 +0 0.1575 +0 0.0782 +0 0.0760 +0 0.2105 +0 0.0403 +0 0.1450 +0 0.0681 +0 0.0894 +0 0.1259 +0 0.1111 +0 0.6714 +0 0.1077 +0 0.0986 +0 0.1459 +0 0.0527 +0 0.1223 +0 0.0735 +0 0.0682 +0 0.1101 +0 0.0563 +0 0.0803 +0 0.0610 +0 0.1943 +0 0.0381 +0 0.1250 +0 0.1393 +0 0.0751 +0 0.1826 +0 0.0385 +0 0.2611 +0 0.0567 +0 0.1033 +0 0.1636 +0 0.0655 +0 0.0972 +0 0.0724 +0 0.4777 +0 0.0927 +0 0.1471 +0 0.0666 +0 0.1241 +0 0.0884 +0 0.0880 +0 0.5070 +0 0.0632 +0 0.0961 +0 0.0949 +0 0.1642 +0 0.0724 +0 0.1409 +0 0.1149 +0 0.1773 +0 0.1033 +0 0.0925 +0 0.1343 +0 0.6257 +0 0.0932 +0 0.2108 +0 0.0386 +0 0.0960 +0 0.2127 +0 0.1543 +0 0.0969 +0 0.1549 +0 0.4280 +0 0.1379 +1 0.8387 +0 0.2610 +0 0.0954 +0 0.2403 +0 0.2430 +0 0.1438 +0 0.1905 +0 0.0531 +0 0.0659 +0 0.0932 +1 0.7961 +0 0.0840 +0 0.1628 +0 0.0488 +0 0.0786 +0 0.0950 +0 0.2023 +0 0.1750 +0 0.0895 +0 0.0701 +0 0.1070 +0 0.1171 +0 0.0484 +0 0.1017 +0 0.0987 +0 0.0580 +0 0.1263 +0 0.1133 +0 0.0850 +0 0.1635 +0 0.5816 +0 0.3396 +0 0.6756 +0 0.0969 +0 0.0609 +0 0.3652 +0 0.0785 +0 0.1155 +0 0.2105 +0 0.0812 +0 0.0475 +0 0.0942 +0 0.0863 +0 0.2074 +0 0.0543 +0 0.1325 +0 0.1510 +0 0.0949 +0 0.0966 +0 0.0669 +0 0.0902 +0 0.0719 +0 0.0912 +1 0.7829 +0 0.1360 +0 0.7091 +0 0.0673 +0 0.1434 +0 0.0520 +0 0.0561 +0 0.3633 +0 0.0768 +0 0.0263 +0 0.1069 +0 0.0556 +0 0.0630 +0 0.2167 +0 0.0746 +0 0.0630 +0 0.0844 +0 0.0685 +0 0.0445 +0 0.0791 +0 0.0820 +0 0.1129 +0 0.0825 +0 0.3401 +0 0.1630 +0 0.0819 +0 0.0664 +0 0.1434 +0 0.1928 +0 0.0602 +0 0.1301 +0 0.0869 +0 0.1819 +0 0.1295 +0 0.0726 +0 0.2403 +0 0.0456 +0 0.1724 +0 0.2927 +0 0.1406 +0 0.0456 +0 0.7166 +0 0.1015 +0 0.0586 +0 0.0676 +0 0.0452 +0 0.0728 +0 0.0797 +0 0.0506 +0 0.0628 +0 0.0884 +0 0.1776 +0 0.0757 +0 0.6589 +0 0.0441 +0 0.1013 +0 0.1814 +0 0.0859 +0 0.1715 +0 0.1384 +0 0.0781 +0 0.5042 +0 0.0844 +0 0.1803 +1 0.8653 +0 0.0386 +0 0.1056 +0 0.1424 +0 0.1264 +0 0.1033 +0 0.0840 +0 0.1560 +0 0.0464 +0 0.0616 +1 0.7533 +0 0.3819 +0 0.1191 +0 0.1515 +0 0.0541 +0 0.1452 +0 0.0854 +0 0.0766 +0 0.0422 +0 0.1483 +0 0.0809 +0 0.1698 +0 0.1294 +0 0.2529 +0 0.0860 +0 0.1238 +0 0.1088 +0 0.4152 +0 0.0657 +0 0.1211 +0 0.7069 +0 0.0829 +0 0.0617 +0 0.3391 +0 0.1287 +0 0.0670 +0 0.1466 +0 0.3148 +0 0.0989 +0 0.1280 +0 0.0904 +0 0.3178 +0 0.3130 +0 0.1250 +0 0.4031 +0 0.1113 +0 0.1189 +0 0.0962 +0 0.1634 +0 0.0409 +0 0.1389 +0 0.2115 +0 0.1161 +0 0.3463 +0 0.1904 +0 0.1207 +0 0.1537 +0 0.0947 +0 0.0804 +0 0.1230 +0 0.1576 +0 0.1098 +0 0.1202 +0 0.1558 +0 0.3142 +0 0.0723 +0 0.1646 +0 0.0679 +0 0.0712 +0 0.1311 +0 0.0860 +0 0.1473 +0 0.1260 +0 0.0854 +0 0.3620 +0 0.2205 +0 0.0830 +0 0.1295 +0 0.1261 +0 0.0377 +0 0.0912 +0 0.1161 +0 0.1510 +0 0.0438 +0 0.1959 +0 0.1084 +0 0.1429 +0 0.0716 +0 0.2263 +0 0.0697 +0 0.0455 +0 0.1048 +0 0.0594 +0 0.1190 +0 0.5153 +0 0.0925 +0 0.1064 +0 0.0565 +0 0.0827 +0 0.1066 +0 0.3209 +0 0.0651 +0 0.1049 +0 0.1285 +0 0.0804 +0 0.4857 +0 0.0631 +1 0.8548 +0 0.0680 +0 0.1056 +0 0.1097 +0 0.0830 +0 0.2725 +0 0.0862 +0 0.1486 +1 0.8184 +0 0.2610 +0 0.7105 +0 0.0893 +0 0.0668 +0 0.1468 +0 0.0978 +0 0.0924 +0 0.0915 +0 0.0850 +0 0.3613 +0 0.1708 +0 0.0686 +0 0.1110 +0 0.1533 +0 0.0717 +0 0.1112 +0 0.2602 +0 0.0730 +0 0.0938 +0 0.0662 +0 0.0956 +0 0.1959 +0 0.0741 +0 0.0875 +0 0.1700 +0 0.5996 +0 0.2209 +0 0.0851 +0 0.0709 +0 0.0757 +0 0.0879 +0 0.0634 +0 0.3978 +0 0.1496 +0 0.1391 +0 0.0573 +0 0.4611 +0 0.6900 +0 0.1260 +0 0.1545 +0 0.0401 +0 0.7107 +0 0.0880 +0 0.1890 +1 0.7679 +0 0.1906 +0 0.0492 +1 0.7871 +0 0.1670 +0 0.5438 +0 0.1202 +0 0.2081 +0 0.0407 +0 0.0543 +0 0.5012 +0 0.1398 +0 0.4206 +0 0.0791 +0 0.0747 +0 0.0943 +0 0.0888 +0 0.0826 +0 0.1280 +0 0.5677 +0 0.1244 +0 0.0924 +0 0.0921 +0 0.1524 +0 0.1724 +0 0.1220 +0 0.1872 +0 0.0909 +0 0.1048 +0 0.1512 +0 0.0898 +0 0.0729 +0 0.0958 +0 0.0923 +0 0.0797 +0 0.2051 +0 0.0796 +0 0.0873 +0 0.6773 +0 0.1120 +0 0.0639 +0 0.1157 +0 0.0869 +0 0.1882 +0 0.1438 +0 0.1267 +0 0.1132 +0 0.2074 +0 0.0578 +0 0.1398 +0 0.1022 +0 0.1391 +0 0.2464 +0 0.2795 +0 0.0595 +0 0.1995 +0 0.1109 +0 0.0566 +0 0.1112 +0 0.0811 +0 0.2557 +0 0.1294 +0 0.0681 +0 0.4029 +0 0.0415 +0 0.1010 +0 0.0843 +0 0.2235 +0 0.0661 +0 0.0698 +0 0.1456 +0 0.1630 +0 0.1424 +0 0.0493 +0 0.0732 +0 0.4667 +0 0.0667 +0 0.0761 +0 0.0852 +0 0.0861 +0 0.0644 +0 0.3075 +0 0.1246 +0 0.0938 +0 0.0682 +0 0.2060 +0 0.6056 +0 0.1197 +0 0.6779 +0 0.1093 +0 0.1643 +1 0.8225 +0 0.2930 +0 0.1135 +0 0.1196 +0 0.1100 +0 0.0352 +0 0.0955 +0 0.0546 +0 0.0503 +0 0.1687 +0 0.1514 +0 0.1922 +0 0.0630 +0 0.0641 +0 0.2245 +0 0.1132 +0 0.1029 +0 0.1742 +0 0.0532 +0 0.0656 +0 0.0857 +0 0.0720 +0 0.2109 +0 0.0926 +0 0.0706 +0 0.1575 +0 0.0481 +0 0.2192 +0 0.0735 +0 0.0675 +0 0.0366 +0 0.1100 +0 0.0389 +0 0.0563 +0 0.1059 +0 0.1017 +0 0.0923 +0 0.6184 +0 0.1147 +0 0.0481 +0 0.0825 +0 0.0601 +0 0.0657 +0 0.0972 +0 0.0503 +0 0.0802 +0 0.1447 +0 0.0411 +0 0.1585 +0 0.1212 +0 0.0491 +0 0.5872 +0 0.0373 +0 0.3251 +0 0.0674 +0 0.0920 +0 0.1035 +0 0.1354 +0 0.1701 +0 0.1020 +0 0.1423 +0 0.2414 +0 0.1546 +0 0.2431 +0 0.2777 +0 0.1211 +0 0.1263 +0 0.0459 +0 0.0447 +0 0.0937 +0 0.1181 +0 0.0722 +0 0.1793 +0 0.0463 +0 0.0958 +0 0.1507 +0 0.0698 +0 0.0710 +0 0.2247 +0 0.0490 +0 0.0811 +0 0.1397 +0 0.0682 +0 0.1035 +0 0.0525 +0 0.3017 +0 0.1441 +0 0.0826 +0 0.0830 +0 0.2984 +0 0.1004 +0 0.1066 +0 0.0618 +0 0.1497 +0 0.4366 +0 0.1249 +0 0.2343 +0 0.2478 +0 0.1370 +0 0.1924 +0 0.1635 +0 0.0764 +0 0.0847 +0 0.0612 +0 0.1389 +0 0.1815 +0 0.0976 +0 0.1062 +0 0.0432 +0 0.1219 +0 0.0357 +0 0.0546 +0 0.3846 +0 0.0370 +0 0.0746 +0 0.1841 +0 0.6475 +0 0.1325 +0 0.6344 +0 0.1772 +0 0.3038 +0 0.1656 +0 0.1703 +0 0.3635 +0 0.0836 +0 0.2067 +0 0.1659 +0 0.3810 +0 0.0430 +0 0.3775 +0 0.1097 +0 0.1361 +0 0.1095 +0 0.0468 +0 0.2683 +0 0.1397 +0 0.1260 +0 0.0647 +0 0.1279 +0 0.2973 +0 0.2156 +0 0.0441 +0 0.1059 +0 0.1655 +0 0.1410 +0 0.6144 +0 0.0331 +0 0.1906 +0 0.2481 +0 0.0545 +0 0.1392 +0 0.0683 +0 0.1019 +0 0.0899 +0 0.0466 +0 0.1209 +0 0.0792 +0 0.1332 +0 0.0751 +0 0.0860 +0 0.0412 +0 0.1400 +0 0.1829 +0 0.1462 +0 0.0804 +0 0.1555 +0 0.0738 +0 0.0532 +0 0.0683 +0 0.2122 +0 0.0932 +0 0.0499 +0 0.1504 +0 0.2895 +1 0.7662 +0 0.6479 +0 0.0536 +0 0.0835 +0 0.3896 +0 0.0545 +0 0.1540 +0 0.0450 +0 0.0593 +0 0.1598 +0 0.0563 +0 0.0594 +0 0.0687 +0 0.0822 +0 0.0994 +0 0.0834 +0 0.0944 +0 0.0840 +0 0.0541 +0 0.1562 +0 0.4045 +0 0.1109 +0 0.0587 +0 0.0980 +0 0.1010 +0 0.2866 +0 0.0658 +0 0.2115 +0 0.1338 +0 0.1117 +0 0.0896 +0 0.0957 +0 0.0592 +0 0.0558 +0 0.0748 +0 0.0576 +0 0.0971 +0 0.2367 +0 0.1416 +0 0.1329 +0 0.1103 +0 0.2580 +0 0.0863 +0 0.1639 +0 0.0396 +0 0.2157 +0 0.0496 +0 0.0944 +0 0.0559 +0 0.1026 +0 0.1132 +0 0.5132 +0 0.1121 +0 0.0543 +0 0.0786 +0 0.1074 +0 0.1234 +0 0.0860 +0 0.1299 +0 0.1290 +0 0.1227 +0 0.0678 +0 0.3365 +0 0.0932 +0 0.2104 +0 0.1168 +0 0.1959 +0 0.5611 +0 0.2052 +0 0.1288 +0 0.0872 +0 0.0973 +0 0.1205 +0 0.1430 +0 0.1399 +0 0.0892 +0 0.1145 +0 0.2373 +0 0.1785 +0 0.1298 +0 0.0834 +0 0.0700 +0 0.1559 +0 0.0797 +0 0.1919 +0 0.1307 +0 0.1164 +0 0.1067 +0 0.0803 +0 0.0702 +0 0.0527 +0 0.4244 +0 0.0407 +0 0.0431 +0 0.0620 +0 0.4913 +0 0.0763 +0 0.2450 +0 0.0877 +0 0.3156 +0 0.1175 +0 0.5529 +0 0.0547 +0 0.0805 +0 0.0410 +0 0.0951 +0 0.1123 +0 0.0634 +0 0.0784 +0 0.0815 +0 0.0619 +0 0.2342 +0 0.1154 +0 0.1536 +0 0.1851 +0 0.1472 +0 0.1225 +0 0.1657 +0 0.1444 +0 0.0496 +0 0.2166 +0 0.1115 +0 0.0821 +0 0.1057 +0 0.1077 +0 0.0625 +0 0.2214 +0 0.1482 +0 0.1109 +0 0.1332 +0 0.0793 +0 0.1690 +0 0.2420 +0 0.1216 +1 0.8202 +0 0.2049 +0 0.2597 +0 0.2478 +0 0.1003 +0 0.0983 +0 0.0852 +0 0.1067 +0 0.0917 +0 0.0746 +0 0.6972 +0 0.2145 +0 0.4613 +0 0.0875 +0 0.2389 +0 0.1691 +0 0.0929 +0 0.1156 +0 0.2996 +0 0.0902 +0 0.1713 +0 0.3860 +0 0.1512 +0 0.1662 +0 0.0741 +0 0.0968 +0 0.0495 +0 0.0357 +0 0.1847 +0 0.1643 +0 0.0826 +0 0.4715 +0 0.1402 +0 0.0888 +0 0.0916 +0 0.1127 +0 0.0929 +0 0.0526 +0 0.0788 +1 0.8260 +0 0.1277 +0 0.0394 +0 0.1400 +0 0.0794 +0 0.0846 +0 0.1007 +0 0.0993 +0 0.0990 +0 0.2743 +0 0.3358 +0 0.0567 +1 0.8593 +0 0.1207 +0 0.0618 +0 0.0697 +0 0.1029 +0 0.1594 +0 0.4150 +0 0.2288 +0 0.0610 +0 0.0890 +0 0.1459 +0 0.1091 +0 0.1094 +0 0.0483 +0 0.2714 +0 0.0998 +0 0.2193 +0 0.1461 +0 0.1119 +0 0.0498 +0 0.0626 +0 0.0975 +0 0.1933 +0 0.1134 +0 0.3839 +0 0.0705 +0 0.1410 +0 0.2080 +0 0.3176 +0 0.0781 +0 0.1867 +0 0.7140 +0 0.0460 +0 0.1031 +0 0.0723 +0 0.1459 +0 0.0483 +0 0.0750 +0 0.0540 +0 0.5004 +0 0.0675 +0 0.1119 +0 0.1015 +0 0.1237 +0 0.0709 +0 0.0742 +0 0.0752 +0 0.0931 +0 0.0648 +0 0.1809 +0 0.1396 +0 0.2766 +0 0.0530 +0 0.5422 +0 0.0745 +0 0.1371 +0 0.0898 +0 0.1888 +0 0.1163 +0 0.0381 +0 0.0719 +0 0.0982 +0 0.1767 +0 0.1038 +0 0.0765 +0 0.0995 +0 0.2162 +1 0.8637 +0 0.2057 +0 0.0651 +0 0.0686 +0 0.0618 +0 0.1735 +0 0.1209 +0 0.0831 +0 0.1813 +0 0.0408 +0 0.0747 +0 0.2371 +0 0.0457 +0 0.0572 +0 0.1145 +0 0.1135 +0 0.0815 +0 0.1284 +0 0.1027 +0 0.2556 +0 0.0753 +0 0.1710 +0 0.2994 +0 0.4839 +0 0.5975 +0 0.0958 +0 0.6048 +0 0.0716 +0 0.0921 +0 0.1104 +0 0.0991 +0 0.1440 +0 0.1259 +0 0.1266 +0 0.0618 +0 0.1628 +0 0.1058 +0 0.0569 +0 0.1256 +0 0.3394 +0 0.0495 +0 0.1373 +0 0.0454 +0 0.2354 +0 0.0913 +0 0.1531 +0 0.0573 +0 0.1126 +0 0.2521 +0 0.3742 +0 0.1022 +0 0.1965 +0 0.1238 +0 0.2087 +0 0.0668 +0 0.0716 +0 0.0721 +0 0.0738 +0 0.0457 +0 0.0812 +0 0.0968 +0 0.1481 +0 0.3385 +0 0.1673 +0 0.0523 +0 0.2026 +0 0.1176 +0 0.1053 +0 0.1291 +0 0.0556 +0 0.0865 +0 0.0610 +0 0.0632 +0 0.0424 +0 0.1171 +0 0.0850 +0 0.3368 +0 0.0973 +0 0.0882 +0 0.0827 +0 0.0735 +0 0.0667 +0 0.0877 +0 0.0968 +0 0.6443 +0 0.2428 +0 0.0332 +0 0.2581 +0 0.1069 +0 0.1285 +0 0.0340 +0 0.1274 +0 0.0942 +0 0.2420 +0 0.2045 +0 0.1007 +0 0.1730 +0 0.2387 +0 0.1700 +0 0.0975 +0 0.0492 +0 0.2308 +0 0.1054 +0 0.1452 +0 0.0759 +0 0.2527 +0 0.1319 +0 0.0374 +0 0.3346 +0 0.1067 +0 0.2022 +0 0.0834 +0 0.1150 +0 0.0434 +0 0.0652 +0 0.1289 +0 0.2263 +0 0.0734 +0 0.0685 +0 0.4880 +0 0.3066 +0 0.0674 +0 0.0608 +0 0.0471 +0 0.3519 +0 0.0566 +1 0.7580 +0 0.1333 +0 0.1105 +0 0.0907 +0 0.3758 +0 0.1177 +0 0.0658 +0 0.1951 +0 0.1322 +0 0.0674 +0 0.4070 +0 0.1262 +0 0.0882 +0 0.1468 +0 0.0604 +0 0.5310 +0 0.1124 +0 0.0562 +0 0.2110 +0 0.1363 +0 0.0926 +0 0.0395 +0 0.1199 +0 0.1034 +0 0.0892 +0 0.1024 +0 0.2524 +0 0.1501 +0 0.1500 +0 0.0876 +0 0.1057 +0 0.0877 +1 0.8365 +0 0.0442 +0 0.1644 +0 0.5672 +0 0.0804 +0 0.2840 +0 0.1601 +0 0.1398 +0 0.1250 +0 0.1621 +0 0.1229 +0 0.1230 +0 0.1104 +0 0.0746 +0 0.1133 +0 0.1662 +1 0.8170 +0 0.1326 +0 0.0958 +0 0.1298 +0 0.1449 +0 0.1082 +0 0.0892 +0 0.1108 +0 0.1879 +0 0.1405 +0 0.0317 +0 0.0581 +0 0.1545 +0 0.0599 +0 0.0614 +0 0.0671 +0 0.1372 +0 0.3321 +0 0.1049 +0 0.1428 +0 0.4057 +0 0.1041 +0 0.2282 +0 0.1075 +0 0.1843 +0 0.2219 +0 0.0525 +0 0.0925 +0 0.0834 +0 0.1261 +0 0.0734 +0 0.1261 +0 0.2252 +0 0.0932 +0 0.1303 +0 0.1315 +0 0.0456 +0 0.1047 +0 0.1498 +0 0.3345 +0 0.2106 +0 0.0870 +0 0.1433 +0 0.1302 +0 0.2092 +0 0.1112 +0 0.0999 +0 0.1510 +0 0.1022 +0 0.3031 +0 0.0413 +0 0.0805 +0 0.1090 +0 0.0567 +0 0.0796 +0 0.7049 +0 0.2551 +0 0.2823 +0 0.2054 +0 0.0533 +0 0.0864 +0 0.0994 +0 0.0427 +1 0.7800 +0 0.0698 +0 0.1671 +0 0.1231 +0 0.1072 +0 0.1153 +0 0.2069 +0 0.1663 +0 0.1163 +0 0.1067 +0 0.0926 +0 0.0594 +0 0.1718 +0 0.1395 +0 0.1292 +0 0.1173 +0 0.1456 +0 0.1588 +0 0.0273 +0 0.2015 +0 0.2903 +0 0.1410 +0 0.1080 +0 0.2273 +0 0.1821 +0 0.1674 +0 0.1026 +0 0.0690 +0 0.0844 +0 0.1329 +0 0.2194 +0 0.1148 +0 0.0809 +0 0.1444 +0 0.0901 +0 0.1037 +0 0.0952 +0 0.0798 +0 0.2573 +0 0.0678 +0 0.0555 +0 0.3638 +0 0.0725 +0 0.0579 +0 0.0661 +0 0.2652 +0 0.1829 +0 0.2406 +0 0.0490 +0 0.2091 +0 0.1691 +0 0.1619 +0 0.2769 +0 0.0609 +0 0.0589 +0 0.1485 +0 0.0806 +0 0.2698 +0 0.1147 +0 0.1184 +0 0.1566 +0 0.1139 +0 0.2398 +0 0.1265 +0 0.1526 +0 0.1683 +0 0.0931 +0 0.1662 +0 0.2032 +0 0.0734 +0 0.0338 +0 0.2571 +0 0.1332 +0 0.2751 +0 0.1978 +0 0.0722 +0 0.0916 +0 0.1086 +0 0.1160 +0 0.0576 +0 0.1846 +0 0.2156 +0 0.5029 +0 0.1957 +1 0.8630 +0 0.1058 +0 0.0896 +0 0.4297 +0 0.0817 +0 0.0922 +0 0.1826 +0 0.0706 +1 0.3357 +0 0.1448 +0 0.2686 +0 0.0409 +0 0.1300 +0 0.0717 +0 0.1010 +0 0.2361 +0 0.0338 +0 0.0452 +0 0.1277 +0 0.0567 +0 0.1407 +0 0.2602 +0 0.0407 +0 0.1698 +0 0.0681 +0 0.1108 +0 0.0909 +0 0.0716 +0 0.0674 +0 0.0559 +0 0.1930 +0 0.0329 +1 0.7738 +0 0.2587 +0 0.1283 +0 0.0925 +0 0.0856 +0 0.0800 +0 0.1299 +0 0.1704 +0 0.1454 +0 0.1111 +0 0.0739 +0 0.5921 +0 0.0550 +0 0.2710 +0 0.5745 +0 0.0800 +0 0.1010 +0 0.5372 +0 0.6155 +0 0.0668 +0 0.0566 +0 0.1999 +0 0.1528 +0 0.0886 +0 0.1177 +0 0.0957 +0 0.0914 +0 0.5312 +0 0.1435 +0 0.1732 +0 0.2859 +0 0.0695 +0 0.6131 +0 0.1462 +0 0.1108 +0 0.1843 +0 0.0865 +0 0.1328 +0 0.1786 +0 0.1327 +0 0.7441 +0 0.4143 +0 0.1310 +0 0.1606 +0 0.4215 +0 0.1657 +0 0.0554 +0 0.0574 +0 0.0558 +0 0.3428 +0 0.1515 +0 0.2171 +0 0.1272 +0 0.0705 +0 0.1004 +0 0.2608 +0 0.1545 +0 0.2374 +0 0.1847 +0 0.1534 +0 0.0820 +0 0.0418 +0 0.4089 +0 0.2335 +0 0.7454 +0 0.1421 +0 0.0876 +0 0.1178 +0 0.1240 +1 0.8414 +0 0.2598 +0 0.3150 +0 0.2292 +0 0.1081 +0 0.0575 +0 0.1006 +0 0.1670 +0 0.4013 +0 0.0625 +0 0.4144 +0 0.2200 +0 0.3907 +0 0.1277 +0 0.1142 +0 0.1195 +0 0.1926 +0 0.2031 +0 0.0487 +0 0.1335 +0 0.0938 +0 0.1522 +0 0.1489 +0 0.2462 +0 0.1092 +0 0.3000 +1 0.8519 +0 0.0960 +0 0.1748 +0 0.1013 +0 0.0611 +0 0.1371 +0 0.2950 +0 0.2817 +0 0.1092 +0 0.0766 +0 0.0659 +0 0.0707 +0 0.0901 +0 0.1094 +0 0.0840 +0 0.0753 +0 0.3310 +1 0.7986 +0 0.0665 +0 0.2077 +0 0.1046 +1 0.7857 +0 0.0818 +0 0.3597 +0 0.2471 +0 0.0705 +0 0.1253 +0 0.1387 +0 0.1108 +0 0.0578 +0 0.1044 +0 0.0783 +0 0.1800 +0 0.2311 +0 0.0474 +0 0.1454 +0 0.0937 +0 0.1060 +0 0.1521 +0 0.3350 +0 0.0587 +0 0.2505 +0 0.1446 +0 0.1430 +0 0.1490 +0 0.1211 +0 0.2173 +0 0.1115 +0 0.7304 +0 0.1640 +0 0.0680 +0 0.3098 +0 0.1317 +0 0.0869 +0 0.0827 +0 0.2294 +0 0.1091 +0 0.0694 +0 0.1932 +0 0.0904 +0 0.0956 +0 0.1620 +0 0.0775 +0 0.0512 +1 0.7628 +0 0.4404 +0 0.1704 +0 0.0804 +0 0.1590 +0 0.0697 +0 0.1748 +0 0.0688 +0 0.0819 +0 0.0841 +0 0.1328 +0 0.0648 +0 0.0598 +0 0.0987 +0 0.2020 +0 0.1593 +0 0.1597 +0 0.0530 +0 0.1646 +0 0.0946 +0 0.1691 +0 0.2023 +0 0.1397 +0 0.1579 +0 0.2307 +0 0.1164 +0 0.0571 +0 0.0935 +0 0.3630 +0 0.0478 +0 0.0487 +0 0.1024 +0 0.1191 +0 0.0344 +0 0.0879 +0 0.5021 +0 0.2430 +0 0.1049 +0 0.0456 +0 0.0465 +0 0.0857 +0 0.0548 +0 0.1602 +0 0.1527 +0 0.0602 +0 0.0997 +0 0.0478 +0 0.2381 +0 0.1132 +0 0.0941 +0 0.0435 +0 0.0632 +0 0.0439 +0 0.0850 +0 0.1020 +0 0.0856 +0 0.0938 +0 0.1977 +0 0.1194 +0 0.1059 +0 0.0862 +0 0.1817 +0 0.3325 +0 0.0772 +0 0.1896 +0 0.0441 +0 0.0716 +0 0.0756 +0 0.0608 +0 0.1301 +0 0.2169 +0 0.0767 +0 0.1176 +0 0.1008 +0 0.1253 +0 0.1284 +0 0.1060 +0 0.0617 +0 0.1373 +0 0.2162 +0 0.1911 +0 0.1479 +0 0.1262 +0 0.0960 +0 0.0650 +0 0.0689 +0 0.3054 +0 0.6411 +0 0.2325 +0 0.1072 +0 0.0956 +0 0.0293 +0 0.1792 +0 0.1155 +0 0.1859 +0 0.2948 +0 0.1316 +0 0.1064 +0 0.2144 +0 0.1142 +0 0.1512 +0 0.2475 +0 0.0682 +0 0.1433 +0 0.0719 +0 0.1027 +1 0.7890 +0 0.1038 +0 0.4194 +0 0.0901 +0 0.0686 +0 0.0754 +0 0.0454 +0 0.0557 +0 0.0661 +0 0.0920 +0 0.1297 +0 0.5987 +0 0.0350 +0 0.0994 +0 0.0780 +0 0.0662 +0 0.0593 +0 0.0769 +0 0.2924 +0 0.0966 +0 0.2429 +0 0.2439 +0 0.1246 +0 0.1249 +0 0.0499 +0 0.0511 +0 0.1270 +0 0.2008 +0 0.0889 +0 0.1721 +0 0.1829 +0 0.1390 +0 0.0851 +0 0.0490 +0 0.1501 +0 0.1505 +0 0.0726 +0 0.2212 +0 0.3065 +0 0.0948 +0 0.0965 +0 0.0412 +0 0.0930 +0 0.0760 +0 0.1511 +0 0.0956 +0 0.0565 +1 0.8388 +0 0.1154 +0 0.2498 +0 0.0630 +0 0.0579 +0 0.2000 +0 0.0928 +0 0.0271 +0 0.3019 +0 0.2390 +0 0.1877 +0 0.1788 +0 0.1208 +0 0.2187 +0 0.1165 +0 0.0566 +0 0.0676 +0 0.1116 +0 0.1038 +0 0.0484 +0 0.0475 +0 0.1079 +0 0.1175 +0 0.1463 +0 0.1903 +0 0.1403 +0 0.2372 +0 0.0644 +0 0.1181 +0 0.0520 +1 0.8589 +0 0.1851 +0 0.0795 +0 0.1293 +0 0.1166 +0 0.1268 +0 0.5596 +0 0.2278 +0 0.1358 +0 0.0992 +0 0.0507 +0 0.0435 +0 0.0809 +0 0.1115 +0 0.0505 +0 0.0846 +0 0.1640 +0 0.0731 +0 0.0685 +0 0.3387 +0 0.1440 +0 0.1492 +0 0.3802 +0 0.0631 +0 0.1162 +0 0.1209 +0 0.3600 +0 0.1014 +0 0.1091 +0 0.6223 +0 0.3402 +0 0.0983 +0 0.0595 +0 0.1117 +1 0.8134 +0 0.1876 +0 0.1065 +0 0.1284 +0 0.1748 +0 0.0890 +0 0.1481 +0 0.3924 +0 0.1139 +0 0.1110 +0 0.3229 +0 0.1723 +0 0.0753 +0 0.1336 +0 0.0861 +0 0.0805 +0 0.0963 +0 0.0935 +0 0.1957 +0 0.1924 +1 0.7690 +0 0.0638 +0 0.1180 +0 0.1373 +0 0.0929 +0 0.0746 +0 0.0798 +0 0.1865 +0 0.0937 +0 0.1169 +0 0.1418 +0 0.0639 +0 0.1556 +0 0.0964 +0 0.2387 +0 0.1672 +0 0.1472 +0 0.0424 +0 0.0422 +0 0.0709 +0 0.0581 +0 0.5636 +0 0.0630 +0 0.2435 +0 0.0903 +0 0.0470 +0 0.1508 +0 0.1686 +0 0.1452 +0 0.0509 +0 0.5562 +0 0.1227 +0 0.0664 +0 0.0716 +0 0.0796 +0 0.1171 +0 0.0779 +0 0.1671 +0 0.0799 +0 0.1944 +0 0.1305 +0 0.1285 +0 0.0487 +0 0.0838 +0 0.0801 +0 0.6740 +0 0.5524 +0 0.0455 +0 0.1308 +0 0.0764 +0 0.0758 +0 0.0763 +0 0.2405 +0 0.2432 +0 0.2727 +0 0.0762 +0 0.0832 +0 0.1012 +0 0.0574 +0 0.0838 +0 0.3434 +0 0.0838 +0 0.1087 +0 0.2363 +0 0.0344 +0 0.0511 +0 0.0748 +0 0.1172 +0 0.0462 +0 0.1118 +0 0.1681 +0 0.1671 +0 0.2267 +0 0.0641 +0 0.1224 +0 0.1055 +0 0.1803 +0 0.1001 +0 0.1061 +0 0.0461 +0 0.1811 +0 0.0657 +0 0.1184 +0 0.0804 +0 0.0451 +0 0.1860 +1 0.7511 +0 0.1006 +0 0.2486 +0 0.2045 +0 0.0434 +0 0.0652 +0 0.0594 +0 0.5657 +0 0.0700 +0 0.1272 +0 0.0988 +0 0.0989 +0 0.1701 +0 0.0685 +0 0.0760 +0 0.2332 +0 0.0888 +0 0.1128 +0 0.1628 +0 0.0830 +0 0.0758 +0 0.3631 +0 0.0711 +0 0.0487 +0 0.1605 +0 0.0848 +0 0.3113 +0 0.0821 +0 0.0626 +0 0.0511 +1 0.2267 +0 0.1549 +0 0.0615 +0 0.0919 +0 0.0508 +0 0.0667 +0 0.1464 +0 0.1167 +0 0.0315 +0 0.2425 +0 0.1716 +1 0.8659 +0 0.1120 +0 0.4422 +0 0.2877 +0 0.2518 +0 0.0822 +0 0.1290 +0 0.1037 +0 0.0702 +0 0.0443 +0 0.0519 +0 0.1170 +0 0.0806 +0 0.0999 +0 0.5913 +0 0.0667 +0 0.0373 +0 0.0479 +0 0.0850 +1 0.7901 +0 0.0985 +0 0.3378 +0 0.1797 +0 0.1505 +0 0.0848 +0 0.6699 +0 0.6426 +0 0.1048 +0 0.1159 +0 0.0970 +0 0.1454 +0 0.0730 +0 0.0733 +0 0.2027 +0 0.0439 +0 0.1647 +1 0.7630 +0 0.0861 +0 0.0759 +0 0.1235 +0 0.0379 +0 0.0727 +0 0.1969 +0 0.0911 +0 0.2214 +0 0.1102 +0 0.1685 +0 0.3397 +0 0.1012 +0 0.1595 +1 0.8666 +0 0.6961 +0 0.0537 +0 0.0368 +0 0.0665 +0 0.0487 +0 0.0954 +0 0.0954 +0 0.0410 +0 0.0589 +0 0.1302 +0 0.0642 +0 0.0743 +0 0.2151 +0 0.1488 +0 0.1151 +0 0.0418 +0 0.0634 +0 0.3560 +0 0.0910 +0 0.0684 +0 0.2020 +0 0.1428 +0 0.1582 +0 0.0608 +0 0.0909 +0 0.1190 +0 0.1152 +0 0.2565 +0 0.3625 +0 0.0943 +0 0.2401 +0 0.0997 +0 0.0999 +0 0.1571 +0 0.0634 +0 0.2783 +0 0.2226 +0 0.1851 +0 0.7037 +0 0.0828 +0 0.0982 +0 0.1391 +0 0.0615 +0 0.0735 +0 0.0673 +0 0.1763 +0 0.0994 +0 0.1399 +0 0.4163 +0 0.1458 +0 0.2836 +0 0.1969 +0 0.0362 +0 0.0975 +0 0.0504 +0 0.2016 +0 0.0576 +0 0.1704 +0 0.0989 +0 0.0975 +0 0.4133 +0 0.0554 +0 0.2034 +0 0.0522 +0 0.1278 +0 0.2541 +0 0.0412 +0 0.0912 +0 0.1108 +0 0.0674 +0 0.1562 +0 0.2693 +0 0.3043 +0 0.0475 +0 0.3012 +0 0.0821 +0 0.1115 +0 0.1128 +0 0.1767 +0 0.1703 +0 0.1315 +0 0.0524 +0 0.1691 +0 0.2093 +0 0.0798 +0 0.0586 +0 0.0714 +0 0.3987 +0 0.0578 +0 0.1813 +0 0.0459 +1 0.8211 +0 0.0724 +0 0.0476 +0 0.0523 +0 0.0539 +0 0.1016 +0 0.0583 +0 0.3921 +0 0.1225 +0 0.0760 +0 0.0834 +0 0.0791 +0 0.0928 +0 0.3071 +0 0.1169 +0 0.1048 +0 0.1429 +0 0.2684 +0 0.1922 +0 0.0598 +0 0.0813 +0 0.1620 +0 0.1252 +0 0.0442 +0 0.1385 +0 0.0727 +0 0.1378 +0 0.1156 +0 0.0741 +0 0.0635 +0 0.0797 +0 0.0519 +0 0.2685 +0 0.1462 +0 0.0858 +0 0.1392 +0 0.1263 +0 0.1369 +0 0.1047 +0 0.1253 +0 0.0600 +1 0.8149 +0 0.1473 +0 0.1220 +0 0.1400 +0 0.1427 +0 0.1108 +0 0.0831 +0 0.0892 +0 0.1526 +0 0.0778 +0 0.0463 +0 0.0738 +0 0.0464 +0 0.1853 +0 0.0533 +0 0.1043 +0 0.1285 +0 0.2808 +0 0.1405 +0 0.2280 +0 0.0744 +0 0.1819 +0 0.1900 +0 0.0807 +0 0.1458 +0 0.0471 +1 0.8601 +0 0.1905 +0 0.0958 +0 0.1583 +0 0.2086 +0 0.0353 +0 0.0897 +0 0.0636 +0 0.2643 +0 0.3908 +0 0.2029 +0 0.0915 +0 0.0837 +0 0.0923 +0 0.0930 +0 0.1252 +0 0.1836 +0 0.1880 +0 0.0716 +0 0.0493 +0 0.4073 +0 0.0678 +0 0.0799 +0 0.1513 +0 0.0595 +0 0.0592 +0 0.0871 +0 0.0563 +0 0.0479 +0 0.1027 +0 0.0592 +0 0.2657 +0 0.0498 +0 0.3079 +0 0.0636 +0 0.0905 +0 0.1368 +0 0.2270 +0 0.1339 +0 0.0800 +0 0.1040 +0 0.1907 +0 0.1791 +0 0.0699 +0 0.0532 +0 0.1343 +0 0.1028 +0 0.1669 +0 0.1247 +0 0.0825 +0 0.1067 +0 0.0549 +0 0.0759 +0 0.2455 +1 0.7925 +0 0.0786 +0 0.2565 +0 0.3998 +0 0.1814 +0 0.0541 +0 0.1346 +0 0.0501 +0 0.1376 +0 0.0791 +0 0.0878 +0 0.1431 +0 0.0786 +0 0.0323 +0 0.0525 +0 0.0738 +0 0.1745 +0 0.0851 +0 0.0600 +0 0.1175 +0 0.1406 +0 0.1406 +0 0.1602 +0 0.1141 +0 0.1261 +0 0.0359 +0 0.0716 +0 0.0692 +0 0.2515 +0 0.1324 +0 0.0756 +0 0.2361 +0 0.0897 +0 0.2308 +0 0.0724 +0 0.0460 +0 0.1053 +0 0.1184 +0 0.0794 +0 0.0534 +0 0.0938 +0 0.1204 +0 0.2168 +0 0.0766 +0 0.0717 +0 0.7080 +0 0.5422 +0 0.0815 +0 0.2748 +0 0.1091 +0 0.0523 +0 0.0771 +0 0.1073 +0 0.0877 +0 0.0959 +0 0.1267 +0 0.2136 +0 0.1921 +0 0.1166 +0 0.1390 +0 0.0623 +0 0.1421 +0 0.0563 +1 0.8477 +0 0.3873 +0 0.0714 +0 0.1201 +0 0.3704 +0 0.0610 +0 0.1138 +0 0.0652 +0 0.0977 +0 0.1008 +0 0.0925 +0 0.0317 +0 0.2798 +0 0.0532 +0 0.6492 +0 0.1031 +0 0.1218 +0 0.0725 +0 0.3387 +0 0.0877 +0 0.1291 +0 0.1507 +0 0.1825 +0 0.1325 +0 0.0956 +0 0.0837 +0 0.2061 +0 0.1692 +0 0.1012 +0 0.1201 +0 0.3744 +0 0.1081 +0 0.2237 +0 0.0342 +0 0.0610 +0 0.3606 +0 0.1320 +0 0.0819 +0 0.1323 +0 0.0604 +0 0.0470 +0 0.1743 +0 0.1079 +0 0.1007 +0 0.1551 +0 0.0474 +0 0.0795 +0 0.0577 +0 0.0591 +0 0.2097 +0 0.1488 +0 0.1870 +0 0.1232 +0 0.0951 +0 0.1165 +0 0.3103 +0 0.1283 +0 0.2128 +0 0.0528 +0 0.0541 +0 0.3090 +0 0.0694 +0 0.0492 +0 0.0702 +1 0.8752 +0 0.1646 +0 0.1172 +0 0.4428 +0 0.3063 +0 0.1555 +0 0.0919 +0 0.0477 +0 0.0916 +0 0.1514 +0 0.0825 +0 0.0551 +0 0.4073 +0 0.1548 +0 0.1086 +0 0.0553 +0 0.0955 +0 0.0710 +0 0.3275 +0 0.1214 +0 0.0711 +0 0.0453 +0 0.0481 +0 0.1097 +0 0.0650 +0 0.0365 +0 0.0854 +0 0.0634 +0 0.0674 +0 0.1088 +0 0.0995 +0 0.1968 +0 0.1740 +0 0.0543 +0 0.2138 +0 0.0884 +0 0.1512 +0 0.2078 +0 0.1064 +0 0.1251 +0 0.1754 +0 0.1778 +0 0.0727 +0 0.1289 +0 0.0837 +0 0.1433 +0 0.1604 +0 0.1507 +0 0.2145 +0 0.0822 +0 0.0912 +0 0.0494 +0 0.6292 +0 0.1167 +0 0.0711 +0 0.0924 +0 0.6976 +0 0.1267 +0 0.2326 +0 0.1033 +0 0.0760 +0 0.4074 +0 0.0633 +0 0.2145 +0 0.1592 +0 0.2878 +0 0.0555 +0 0.0797 +0 0.2004 +0 0.0470 +0 0.0894 +0 0.1935 +0 0.2186 +0 0.0655 +0 0.1510 +0 0.1164 +0 0.2638 +0 0.0473 +0 0.0369 +0 0.1517 +0 0.0755 +0 0.2715 +0 0.0468 +0 0.0652 +0 0.2519 +1 0.7547 +0 0.0641 +1 0.8090 +0 0.1292 +0 0.5811 +0 0.0862 +0 0.1890 +0 0.0928 +0 0.1082 +0 0.1263 +0 0.1365 +0 0.0586 +0 0.0822 +0 0.0371 +0 0.1082 +0 0.1005 +0 0.0506 +0 0.2212 +0 0.5849 +0 0.1551 +0 0.0675 +0 0.1295 +0 0.1214 +0 0.0584 +0 0.0897 +0 0.1016 +0 0.4447 +0 0.0885 +0 0.4681 +0 0.1884 +0 0.0600 +0 0.0819 +0 0.1007 +0 0.0907 +0 0.1327 +0 0.0565 +0 0.1777 +0 0.3512 +0 0.1370 +0 0.1227 +0 0.1965 +0 0.1956 +0 0.0501 +0 0.0991 +0 0.2295 +0 0.0423 +0 0.1515 +0 0.0677 +0 0.2508 +0 0.0636 +0 0.0609 +0 0.0839 +0 0.1839 +0 0.0788 +0 0.1624 +0 0.0624 +0 0.1257 +0 0.0467 +0 0.0942 +0 0.1123 +0 0.0872 +0 0.0644 +0 0.1756 +0 0.0526 +0 0.3619 +0 0.1414 +0 0.1111 +0 0.3889 +0 0.5113 +0 0.0999 +0 0.0536 +0 0.0700 +0 0.1629 +0 0.0381 +0 0.3619 +0 0.1114 +0 0.2338 +0 0.2296 +0 0.1111 +0 0.1468 +0 0.0351 +0 0.1710 +0 0.1267 +0 0.0495 +0 0.0640 +0 0.1844 +0 0.1162 +0 0.0845 +0 0.0527 +0 0.0797 +0 0.0788 +0 0.0720 +0 0.2420 +0 0.0725 +0 0.1582 +0 0.1399 +0 0.1555 +0 0.0543 +0 0.1382 +0 0.0526 +0 0.0406 +0 0.1230 +0 0.0873 +0 0.0940 +0 0.0547 +0 0.0780 +0 0.3048 +0 0.1154 +0 0.1382 +0 0.0945 +0 0.1072 +0 0.0725 +0 0.0442 +0 0.0720 +0 0.2240 +0 0.1042 +0 0.1370 +0 0.0738 +0 0.1489 +0 0.0712 +0 0.0517 +0 0.0650 +0 0.0742 +0 0.1382 +0 0.0912 +0 0.0896 +0 0.0604 +0 0.0364 +0 0.0734 +0 0.0497 +0 0.2210 +0 0.3329 +0 0.1235 +0 0.0590 +0 0.0751 +0 0.1028 +0 0.1015 +1 0.8684 +0 0.0616 +0 0.0620 +0 0.0846 +0 0.0956 +0 0.2319 +0 0.3483 +0 0.1256 +0 0.1423 +0 0.1077 +0 0.1803 +0 0.1181 +0 0.2627 +0 0.1657 +0 0.1892 +0 0.0979 +0 0.0652 +0 0.1134 +0 0.0856 +0 0.1097 +0 0.0565 +0 0.3841 +0 0.0426 +0 0.1724 +0 0.1915 +0 0.1024 +0 0.1409 +0 0.0821 +0 0.0596 +0 0.0967 +0 0.1562 +0 0.1010 +0 0.1790 +0 0.1674 +0 0.1023 +0 0.0355 +0 0.0575 +0 0.1740 +0 0.1352 +0 0.0956 +0 0.0981 +0 0.0628 +0 0.0990 +0 0.0591 +0 0.1695 +0 0.0717 +0 0.1149 +0 0.3163 +0 0.0684 +0 0.0543 +0 0.1705 +0 0.0850 +0 0.0327 +0 0.1921 +0 0.0785 +0 0.1428 +0 0.0821 +0 0.0386 +0 0.0636 +0 0.0543 +0 0.1103 +0 0.2750 +0 0.0847 +0 0.0574 +0 0.0806 +0 0.0688 +0 0.0884 +0 0.0745 +0 0.1378 +0 0.1290 +0 0.0534 +0 0.3222 +0 0.1306 +0 0.0979 +0 0.1405 +0 0.0308 +0 0.1844 +0 0.2169 +0 0.1025 +0 0.2340 +0 0.0402 +0 0.0855 +0 0.0673 +0 0.0805 +0 0.1014 +0 0.4099 +0 0.1157 +0 0.1123 +0 0.3748 +0 0.1781 +0 0.1380 +0 0.1090 +0 0.0706 +0 0.1838 +0 0.0794 +0 0.1419 +0 0.0437 +0 0.6634 +0 0.0847 +0 0.0734 +0 0.1167 +0 0.1616 +0 0.0739 +0 0.1162 +0 0.2786 +0 0.0475 +0 0.0642 +0 0.1627 +0 0.0732 +0 0.1536 +0 0.1291 +0 0.0764 +0 0.0966 +0 0.1040 +0 0.0886 +0 0.1448 +0 0.1201 +0 0.1113 +0 0.1419 +0 0.0660 +0 0.1500 +0 0.1109 +0 0.1226 +0 0.1596 +0 0.0744 +0 0.2108 +0 0.1549 +0 0.0574 +0 0.0965 +0 0.1506 +0 0.0906 +0 0.2411 +0 0.1713 +0 0.1856 +0 0.0521 +0 0.0870 +0 0.2967 +0 0.2195 +0 0.1466 +0 0.1774 +0 0.2578 +1 0.8328 +0 0.0473 +0 0.2803 +0 0.4042 +0 0.0717 +0 0.1209 +0 0.3620 +0 0.0893 +0 0.1928 +0 0.2222 +0 0.0790 +0 0.0938 +0 0.1252 +0 0.1915 +0 0.0861 +0 0.0725 +0 0.2126 +1 0.7732 +0 0.2806 +1 0.7795 +0 0.1732 +0 0.0856 +0 0.0796 +0 0.0812 +0 0.3740 +0 0.1396 +0 0.0479 +0 0.2908 +0 0.0600 +0 0.2236 +0 0.1453 +0 0.2581 +0 0.1438 +0 0.1282 +0 0.0814 +0 0.0655 +0 0.1111 +0 0.1344 +0 0.2692 +0 0.2159 +0 0.0719 +0 0.3728 +0 0.1002 +0 0.1572 +0 0.3984 +0 0.0555 +0 0.1555 +0 0.4880 +1 0.8168 +0 0.1527 +0 0.0694 +0 0.6083 +0 0.1522 +0 0.3668 +0 0.0954 +0 0.2337 +0 0.0960 +0 0.0886 +0 0.0491 +0 0.0522 +0 0.1691 +0 0.0695 +0 0.0616 +0 0.0734 +0 0.1224 +0 0.1552 +0 0.2845 +0 0.2030 +0 0.1497 +0 0.0864 +0 0.1694 +0 0.1319 +1 0.8465 +0 0.0641 +0 0.0998 +0 0.0510 +0 0.0828 +0 0.1175 +0 0.1767 +0 0.1503 +0 0.0627 +0 0.1151 +0 0.0558 +0 0.0643 +0 0.1113 +0 0.0415 +0 0.6446 +0 0.1073 +0 0.1088 +0 0.1125 +0 0.6196 +1 0.8265 +0 0.1134 +0 0.2331 +0 0.2219 +0 0.0518 +0 0.0648 +0 0.0858 +0 0.1047 +0 0.1350 +0 0.1446 +0 0.1991 +0 0.2207 +0 0.1336 +0 0.1114 +0 0.0536 +0 0.4740 +0 0.0851 +0 0.0685 +0 0.1063 +0 0.0943 +0 0.0983 +0 0.0985 +0 0.3415 +0 0.0619 +0 0.1762 +0 0.2119 +0 0.0651 +1 0.7668 +0 0.1015 +0 0.0907 +0 0.0680 +0 0.5876 +0 0.2276 +0 0.1628 +0 0.0868 +0 0.1611 +0 0.0423 +0 0.0787 +0 0.1194 +0 0.2506 +0 0.1160 +0 0.0432 +0 0.0907 +0 0.2036 +0 0.1364 +0 0.0990 +0 0.2860 +0 0.0894 +0 0.1043 +0 0.0420 +0 0.0345 +0 0.1170 +0 0.0510 +0 0.1045 +0 0.1686 +0 0.1687 +0 0.0860 +0 0.0566 +0 0.1571 +0 0.4636 +0 0.0573 +0 0.1456 +0 0.0553 +0 0.0720 +0 0.1097 +0 0.1878 +0 0.1256 +0 0.0825 +0 0.1913 +0 0.0690 +0 0.1286 +0 0.1832 +0 0.0599 +0 0.0634 +0 0.0841 +0 0.0448 +0 0.1745 +0 0.0670 +0 0.4538 +0 0.1000 +0 0.2477 +0 0.4355 +0 0.0914 +0 0.2022 +0 0.2416 +0 0.0426 +0 0.0578 +0 0.0788 +0 0.0750 +0 0.3469 +0 0.0899 +0 0.0530 +0 0.1358 +0 0.5603 +0 0.0660 +0 0.0622 +0 0.1295 +0 0.0910 +0 0.2408 +0 0.0708 +0 0.1675 +0 0.0580 +0 0.0671 +0 0.0666 +0 0.1231 +0 0.0782 +0 0.1269 +0 0.1649 +0 0.3495 +0 0.1813 +0 0.0343 +0 0.0850 +0 0.1026 +0 0.0618 +0 0.0663 +0 0.1095 +0 0.6402 +0 0.3907 +0 0.0873 +0 0.2258 +0 0.1671 +0 0.0888 +0 0.0764 +0 0.0733 +0 0.1668 +0 0.3626 +0 0.1546 +0 0.2009 +0 0.5264 +0 0.1583 +0 0.4324 +0 0.0985 +0 0.2185 +0 0.1091 +0 0.1771 +0 0.1295 +0 0.0322 +0 0.1322 +0 0.1226 +0 0.0766 +0 0.1390 +0 0.0871 +0 0.1947 +0 0.1504 +0 0.1770 +0 0.3874 +1 0.8293 +0 0.0862 +0 0.0484 +0 0.0844 +0 0.0780 +0 0.0700 +0 0.0591 +0 0.5879 +0 0.0629 +0 0.0376 +0 0.1143 +0 0.2351 +0 0.3945 +0 0.0923 +0 0.2176 +0 0.3306 +0 0.1248 +0 0.0934 +0 0.0708 +0 0.1228 +0 0.0604 +0 0.2669 +0 0.0776 +0 0.1899 +0 0.1087 +0 0.3134 +0 0.0520 +0 0.1886 +0 0.0819 +0 0.2289 +0 0.1248 +0 0.0752 +0 0.0451 +0 0.2406 +0 0.0970 +0 0.0975 +0 0.0757 +0 0.1047 +0 0.0979 +0 0.0568 +0 0.2238 +0 0.1571 +0 0.0686 +0 0.1140 +0 0.1333 +0 0.1818 +0 0.1254 +0 0.1592 +0 0.0558 +0 0.3195 +0 0.0602 +0 0.1438 +0 0.2079 +0 0.2359 +0 0.1032 +0 0.1637 +0 0.0411 +0 0.0725 +0 0.1902 +0 0.0439 +0 0.1184 +0 0.0685 +0 0.0426 +0 0.1129 +0 0.0616 +0 0.0629 +0 0.0556 +0 0.0766 +0 0.0678 +0 0.1019 +0 0.1035 +0 0.1449 +0 0.2300 +0 0.0756 +0 0.0454 +0 0.1341 +0 0.1050 +0 0.0655 +0 0.1083 +0 0.0942 +0 0.0903 +0 0.3746 +0 0.1462 +0 0.0795 +0 0.0569 +0 0.3465 +0 0.0333 +0 0.3107 +0 0.0563 +0 0.1033 +0 0.0611 +0 0.0432 +0 0.0939 +0 0.1128 +0 0.3692 +0 0.2038 +0 0.0887 +0 0.4353 +0 0.0675 +0 0.2170 +0 0.1414 +0 0.0754 +0 0.0763 +0 0.0735 +0 0.0439 +0 0.0883 +0 0.0835 +0 0.1528 +0 0.1372 +0 0.3733 +0 0.0475 +0 0.1411 +0 0.0495 +0 0.0789 +0 0.0880 +0 0.0816 +0 0.0643 +0 0.0734 +0 0.1495 +0 0.1585 +0 0.3181 +0 0.5103 +0 0.2153 +0 0.0863 +0 0.0782 +0 0.0895 +0 0.0710 +0 0.1137 +1 0.8473 +0 0.1083 +0 0.1038 +0 0.0514 +0 0.2300 +0 0.1561 +0 0.4626 +0 0.1059 +0 0.4643 +0 0.2182 +0 0.0834 +0 0.0461 +0 0.3066 +0 0.1566 +0 0.0755 +0 0.1179 +0 0.2884 +0 0.0983 +0 0.1806 +0 0.0493 +0 0.1370 +0 0.0969 +0 0.1374 +0 0.2799 +0 0.4844 +0 0.0791 +0 0.1416 +0 0.0723 +0 0.0689 +0 0.0701 +0 0.1460 +0 0.1277 +0 0.0510 +0 0.1003 +0 0.1290 +0 0.0956 +0 0.0529 +0 0.0505 +0 0.0931 +0 0.3304 +0 0.0481 +0 0.0965 +0 0.2440 +0 0.0474 +0 0.1332 +0 0.2217 +0 0.1881 +0 0.0440 +0 0.1193 +0 0.6560 +0 0.1249 +0 0.0850 +0 0.0805 +0 0.1161 +0 0.4950 +0 0.1190 +0 0.2117 +0 0.1042 +0 0.0696 +0 0.0855 +0 0.0701 +0 0.2796 +0 0.0847 +0 0.0742 +0 0.3390 +0 0.0508 +0 0.1694 +1 0.7775 +0 0.1040 +0 0.1780 +0 0.4218 +0 0.3067 +0 0.4605 +0 0.0508 +0 0.1350 +0 0.0784 +0 0.1066 +0 0.2828 +0 0.1603 +0 0.1657 +0 0.1207 +0 0.0862 +0 0.0657 +0 0.0656 +0 0.0816 +0 0.1160 +0 0.0812 +0 0.0684 +0 0.1387 +0 0.2095 +0 0.1077 +0 0.1090 +0 0.0426 +0 0.2494 +0 0.1235 +0 0.1086 +0 0.0862 +0 0.0570 +0 0.1610 +0 0.0425 +0 0.1183 +0 0.0570 +0 0.1363 +0 0.1035 +0 0.0450 +0 0.3903 +0 0.1412 +0 0.1051 +0 0.1105 +0 0.0738 +0 0.1041 +1 0.8636 +0 0.1116 +0 0.0827 +0 0.2227 +0 0.1366 +0 0.0966 +0 0.1125 +0 0.0782 +0 0.0738 +0 0.0614 +0 0.1334 +0 0.6505 +0 0.1234 +0 0.0557 +0 0.0861 +0 0.0428 +0 0.2757 +0 0.7224 +0 0.2575 +0 0.1256 +0 0.0502 +0 0.1138 +0 0.3372 +0 0.0887 +1 0.8749 +0 0.0754 +0 0.0424 +0 0.1103 +1 0.8040 +0 0.0630 +0 0.0642 +0 0.0921 +0 0.1536 +0 0.1566 +0 0.0761 +0 0.1058 +0 0.0491 +0 0.0845 +0 0.1428 +0 0.0967 +0 0.3498 +0 0.0755 +0 0.7103 +0 0.1289 +0 0.0563 +0 0.0788 +0 0.0743 +0 0.1482 +0 0.1107 +0 0.3615 +0 0.0571 +0 0.0694 +0 0.1683 +0 0.1097 +0 0.0621 +0 0.1218 +0 0.3023 +0 0.1061 +0 0.4709 +0 0.1298 +0 0.0634 +0 0.1328 +1 0.8036 +0 0.1238 +0 0.0565 +0 0.2739 +0 0.1042 +0 0.0790 +0 0.1194 +0 0.0569 +0 0.0904 +0 0.0439 +0 0.4314 +0 0.1923 +0 0.3824 +0 0.0815 +0 0.0727 +0 0.3235 +0 0.0823 +0 0.2019 +0 0.2859 +0 0.0979 +0 0.0708 +0 0.0387 +0 0.2500 +0 0.2971 +0 0.5508 +0 0.0515 +0 0.0610 +0 0.0740 +0 0.0756 +0 0.0872 +0 0.0749 +0 0.1363 +0 0.1326 +0 0.0873 +0 0.1087 +0 0.0665 +0 0.2136 +0 0.1524 +0 0.2780 +0 0.0510 +0 0.3051 +0 0.0792 +0 0.0721 +0 0.0442 +0 0.2682 +0 0.0804 +0 0.1916 +0 0.3616 +0 0.0365 +0 0.1015 +0 0.1296 +0 0.0658 +0 0.0950 +0 0.0573 +0 0.1277 +0 0.0947 +0 0.0876 +0 0.2408 +0 0.0554 +0 0.0467 +0 0.0667 +0 0.3321 +0 0.1330 +0 0.0710 +0 0.0557 +0 0.1929 +0 0.1047 +0 0.0339 +0 0.2517 +0 0.2067 +0 0.0651 +0 0.0690 +0 0.0924 +0 0.1310 +0 0.0566 +0 0.1365 +0 0.0760 +0 0.1827 +0 0.0888 +0 0.0712 +0 0.0652 +0 0.0911 +0 0.0597 +0 0.2323 +0 0.7309 +0 0.2526 +0 0.0941 +0 0.2405 +0 0.0790 +0 0.1240 +0 0.1833 +0 0.0927 +0 0.1667 +0 0.1463 +0 0.5509 +0 0.0912 +0 0.0469 +0 0.0296 +0 0.2726 +0 0.0632 +0 0.1879 +0 0.1130 +0 0.1340 +0 0.1536 +0 0.0732 +0 0.1873 +0 0.0542 +0 0.0530 +0 0.1141 +0 0.1559 +0 0.1497 +0 0.0566 +0 0.1325 +0 0.3903 +0 0.2842 +0 0.1577 +0 0.0394 +0 0.0791 +0 0.1815 +0 0.2221 +0 0.0550 +0 0.7313 +0 0.0714 +0 0.1181 +0 0.0647 +0 0.2699 +0 0.2021 +0 0.0367 +0 0.0855 +0 0.1554 +0 0.1073 +0 0.0873 +0 0.7173 +0 0.0828 +0 0.1766 +0 0.0910 +0 0.0840 +0 0.1488 +0 0.2581 +0 0.2782 +0 0.1133 +0 0.2898 +0 0.2293 +0 0.0952 +0 0.0733 +0 0.1050 +0 0.0582 +0 0.5396 +0 0.1237 +0 0.0505 +0 0.0755 +0 0.0673 +0 0.0651 +0 0.2098 +0 0.0806 +0 0.1112 +0 0.0712 +0 0.1694 +0 0.0491 +0 0.0710 +0 0.0969 +0 0.0754 +0 0.1243 +0 0.0597 +0 0.0817 +0 0.1593 +0 0.0777 +0 0.0754 +0 0.0740 +0 0.0557 +0 0.0935 +0 0.1444 +0 0.1534 +0 0.1963 +0 0.1319 +0 0.1793 +0 0.1234 +0 0.0525 +0 0.0833 +0 0.1342 +0 0.1166 +0 0.0630 +0 0.1456 +0 0.2421 +0 0.0548 +0 0.2299 +0 0.1174 +0 0.0436 +0 0.0701 +0 0.0481 +0 0.0541 +0 0.0540 +0 0.0971 +0 0.0839 +0 0.0984 +0 0.1422 +0 0.1957 +1 0.7716 +0 0.1297 +0 0.0580 +0 0.1800 +0 0.1086 +0 0.0723 +0 0.1005 +0 0.1705 +0 0.6257 +0 0.0588 +0 0.3141 +0 0.2169 +0 0.0981 +0 0.1002 +0 0.1622 +0 0.1098 +0 0.0922 +0 0.0887 +0 0.1960 +0 0.0406 +0 0.0797 +0 0.0561 +0 0.1089 +0 0.0937 +0 0.1811 +0 0.1167 +0 0.1890 +0 0.1095 +0 0.0358 +0 0.0688 +0 0.0942 +0 0.1776 +0 0.2951 +0 0.4469 +0 0.2870 +0 0.1774 +0 0.1255 +0 0.1123 +0 0.0846 +0 0.0836 +0 0.1879 +0 0.1874 +0 0.0562 +0 0.0756 +0 0.0700 +0 0.0806 +0 0.0737 +0 0.1992 +0 0.2418 +0 0.1278 +0 0.1917 +0 0.0673 +0 0.1476 +0 0.2168 +0 0.1354 +0 0.1756 +0 0.0868 +0 0.1867 +0 0.0346 +0 0.1008 +0 0.2688 +0 0.1808 +0 0.1170 +0 0.0667 +0 0.2087 +0 0.1191 +0 0.2191 +0 0.1018 +0 0.0523 +0 0.0614 +0 0.2152 +0 0.0847 +0 0.3410 +0 0.0825 +0 0.1140 +0 0.0445 +0 0.1009 +0 0.0494 +0 0.1238 +0 0.1262 +0 0.0558 +0 0.1233 +0 0.1124 +0 0.0658 +0 0.0949 +0 0.0715 +0 0.1022 +0 0.1233 +0 0.1835 +0 0.0574 +1 0.7893 +0 0.0723 +0 0.0702 +0 0.0777 +0 0.1385 +0 0.1652 +0 0.1320 +1 0.8237 +0 0.0735 +0 0.0571 +0 0.2265 +0 0.2596 +0 0.1082 +0 0.0980 +0 0.2557 +0 0.4655 +0 0.0413 +0 0.1031 +0 0.3119 +0 0.0368 +0 0.0630 +0 0.1080 +0 0.0503 +0 0.1465 +0 0.0593 +0 0.1048 +0 0.1512 +0 0.0479 +0 0.5084 +0 0.0839 +0 0.2789 +0 0.1407 +0 0.1088 +0 0.1533 +0 0.2441 +0 0.1235 +0 0.2147 +0 0.3125 +0 0.0602 +0 0.0492 +0 0.0684 +0 0.1177 +0 0.2003 +0 0.1105 +0 0.1228 +0 0.1471 +0 0.1909 +0 0.0428 +0 0.2801 +0 0.2553 +0 0.1057 +0 0.1047 +0 0.2992 +0 0.2277 +0 0.1535 +0 0.0830 +0 0.1555 +0 0.0979 +0 0.1437 +0 0.0761 +0 0.0744 +0 0.2934 +0 0.0828 +0 0.0829 +0 0.0830 +1 0.9013 +0 0.0610 +0 0.1049 +0 0.1581 +0 0.0782 +0 0.0464 +0 0.0532 +0 0.1161 +0 0.0819 +0 0.0461 +0 0.0527 +0 0.0889 +0 0.2105 +0 0.1278 +0 0.0404 +0 0.0737 +0 0.1574 +0 0.1012 +0 0.0958 +0 0.3130 +0 0.2325 +0 0.1079 +0 0.0501 +0 0.6920 +0 0.2215 +0 0.2274 +0 0.0686 +0 0.0603 +0 0.0372 +0 0.1963 +0 0.0589 +0 0.1768 +0 0.1702 +0 0.0570 +0 0.0754 +0 0.1385 +0 0.2315 +0 0.0717 +0 0.0446 +0 0.1881 +0 0.1488 +0 0.0371 +0 0.1528 +0 0.1875 +0 0.0492 +0 0.0403 +0 0.1031 +0 0.2302 +0 0.0756 +0 0.1191 +0 0.1887 +0 0.1326 +0 0.0822 +0 0.1693 +0 0.0652 +0 0.1496 +0 0.3863 +0 0.0483 +0 0.0896 +0 0.1464 +0 0.1054 +0 0.0683 +0 0.1613 +0 0.0777 +0 0.1333 +0 0.2617 +0 0.0641 +0 0.1542 +0 0.2808 +0 0.1135 +0 0.4363 +0 0.0517 +0 0.1674 +0 0.0944 +0 0.0771 +0 0.1132 +0 0.2452 +0 0.2592 +0 0.0542 +0 0.1148 +0 0.0809 +0 0.0651 +0 0.0406 +0 0.0441 +0 0.1868 +0 0.0530 +0 0.0787 +0 0.0963 +0 0.2200 +0 0.0758 +0 0.0427 +0 0.0888 +0 0.1086 +0 0.1326 +0 0.1822 +0 0.2631 +0 0.2436 +0 0.1103 +0 0.1575 +1 0.7538 +0 0.1142 +0 0.0488 +0 0.1154 +0 0.0971 +0 0.0884 +0 0.0681 +0 0.0600 +1 0.8467 +0 0.0423 +0 0.5221 +0 0.1908 +0 0.0522 +0 0.0847 +0 0.0335 +0 0.0585 +0 0.1171 +0 0.0355 +0 0.0775 +0 0.1603 +0 0.1221 +0 0.1358 +0 0.4642 +0 0.0765 +0 0.0892 +0 0.0806 +0 0.0791 +0 0.0408 +0 0.0874 +0 0.0892 +0 0.1992 +0 0.0822 +0 0.3035 +0 0.1254 +0 0.1934 +0 0.1899 +0 0.1795 +0 0.1220 +0 0.0785 +0 0.1116 +0 0.1039 +0 0.0849 +0 0.0677 +0 0.1028 +0 0.0675 +0 0.2347 +0 0.1020 +0 0.0652 +0 0.1998 +0 0.6757 +0 0.0585 +0 0.1959 +0 0.0630 +0 0.0637 +0 0.0623 +1 0.8587 +0 0.0387 +0 0.0897 +0 0.1010 +0 0.1461 +0 0.1365 +0 0.1451 +0 0.0961 +0 0.0998 +0 0.0550 +0 0.0719 +0 0.0539 +0 0.1734 +0 0.1252 +1 0.8405 +0 0.0871 +0 0.0609 +0 0.0989 +0 0.1614 +0 0.0645 +0 0.1626 +0 0.0788 +0 0.0787 +0 0.3015 +0 0.1727 +0 0.0667 +0 0.1205 +0 0.1489 +0 0.0300 +0 0.0852 +0 0.2332 +0 0.1047 +0 0.0375 +0 0.1591 +0 0.0740 +0 0.0508 +0 0.1391 +0 0.0539 +0 0.1124 +0 0.2842 +0 0.0964 +0 0.4583 +0 0.0946 +0 0.1238 +0 0.1940 +0 0.1375 +0 0.0684 +0 0.0493 +0 0.0510 +0 0.1035 +0 0.1202 +0 0.0518 +0 0.0652 +0 0.0492 +0 0.1911 +0 0.1189 +0 0.0556 +0 0.0821 +0 0.2284 +1 0.8317 +0 0.0438 +0 0.0539 +0 0.1578 +0 0.0817 +0 0.1724 +0 0.2376 +0 0.2072 +0 0.0847 +0 0.0765 +0 0.2957 +0 0.1275 +0 0.6088 +0 0.1663 +0 0.0968 +0 0.1695 +0 0.0499 +0 0.1959 +0 0.3010 +0 0.0903 +0 0.1931 +0 0.0920 +0 0.1752 +0 0.1943 +0 0.1012 +0 0.0432 +0 0.1657 +0 0.0786 +0 0.1752 +0 0.1571 +0 0.0936 +0 0.4922 +0 0.0615 +0 0.1789 +0 0.1850 +0 0.0741 +0 0.1423 +0 0.0726 +0 0.1986 +0 0.2690 +0 0.0943 +0 0.0936 +0 0.0543 +0 0.0554 +0 0.2648 +0 0.1710 +0 0.0464 +0 0.0686 +0 0.0964 +0 0.1207 +0 0.0532 +0 0.2960 +0 0.0515 +0 0.0919 +0 0.0887 +0 0.0842 +0 0.3348 +0 0.0582 +0 0.1128 +0 0.0459 +0 0.1540 +0 0.1174 +0 0.2130 +0 0.1859 +0 0.2039 +0 0.2102 +0 0.0788 +0 0.2460 +0 0.6863 +0 0.0914 +0 0.0909 +0 0.0929 +0 0.5004 +0 0.2473 +0 0.0691 +0 0.0908 +0 0.0494 +0 0.0442 +0 0.1895 +0 0.0533 +0 0.0412 +0 0.1098 +0 0.3576 +0 0.1249 +0 0.0674 +0 0.2067 +0 0.2789 +0 0.0728 +0 0.1278 +0 0.0740 +0 0.0798 +0 0.0898 +0 0.6740 +0 0.0771 +0 0.0708 +0 0.1084 +0 0.2662 +0 0.0901 +0 0.2254 +0 0.0526 +0 0.4152 +0 0.1532 +0 0.2204 +0 0.1615 +0 0.0460 +0 0.0351 +0 0.2926 +0 0.0480 +0 0.1460 +1 0.7695 +0 0.0902 +0 0.3494 +0 0.1421 +0 0.1189 +0 0.0937 +0 0.0924 +1 0.8335 +0 0.1941 +0 0.0688 +0 0.0544 +0 0.0802 +0 0.2309 +0 0.1049 +0 0.0786 +0 0.0769 +0 0.1796 +0 0.1586 +0 0.0990 +0 0.1538 +0 0.4176 +0 0.0455 +0 0.1127 +0 0.1722 +0 0.0809 +0 0.0923 +0 0.1640 +0 0.1641 +0 0.0920 +0 0.0711 +0 0.1616 +0 0.0506 +0 0.2278 +0 0.2435 +0 0.1338 +0 0.0776 +0 0.1135 +0 0.0589 +0 0.0658 +1 0.8087 +0 0.1805 +0 0.1345 +0 0.0965 +0 0.2645 +0 0.0370 +0 0.0507 +0 0.1424 +0 0.0972 +0 0.1055 +0 0.1027 +0 0.2092 +0 0.2044 +0 0.0757 +0 0.1312 +0 0.1176 +0 0.0629 +0 0.0798 +0 0.1924 +1 0.8415 +0 0.2559 +0 0.1618 +0 0.0988 +0 0.1236 +0 0.0849 +0 0.0657 +0 0.1113 +0 0.1741 +0 0.1675 +0 0.0917 +0 0.0597 +1 0.7681 +0 0.0546 +0 0.2105 +0 0.3532 +0 0.0599 +0 0.1278 +0 0.2748 +0 0.0369 +0 0.3046 +0 0.0399 +0 0.2197 +0 0.7310 +0 0.7094 +0 0.0674 +0 0.0563 +0 0.3317 +0 0.1162 +0 0.1567 +0 0.0732 +0 0.0932 +0 0.1925 +0 0.0627 +0 0.2423 +0 0.6865 +0 0.0670 +0 0.3606 +0 0.0575 +0 0.0944 +0 0.1157 +0 0.0470 +1 0.8712 +0 0.1952 +0 0.1419 +0 0.0424 +0 0.1496 +0 0.0774 +0 0.1089 +0 0.0920 +0 0.0942 +0 0.2540 +0 0.0524 +0 0.0854 +0 0.0609 +0 0.4392 +0 0.0543 +0 0.0686 +0 0.1225 +0 0.0559 +0 0.0715 +0 0.1231 +0 0.1050 +0 0.0366 +0 0.1378 +0 0.1814 +0 0.2147 +0 0.1026 +0 0.3929 +0 0.1127 +0 0.1136 +0 0.0801 +0 0.4802 +0 0.1105 +0 0.1281 +0 0.0991 +0 0.2165 +0 0.0677 +0 0.5076 +0 0.1283 +0 0.2604 +0 0.1054 +0 0.0547 +0 0.0481 +0 0.1022 +0 0.0884 +0 0.0738 +0 0.0945 +0 0.1040 +0 0.1413 +0 0.1167 +0 0.1033 +0 0.0496 +0 0.3812 +0 0.4246 +0 0.0684 +0 0.0630 +0 0.1562 +0 0.0577 +0 0.1112 +0 0.1249 +0 0.1360 +0 0.4187 +0 0.1089 +0 0.0674 +0 0.2137 +0 0.0363 +0 0.2031 +0 0.1454 +0 0.5639 +0 0.0702 +0 0.1119 +0 0.1438 +0 0.0451 +0 0.1267 +0 0.1412 +0 0.1073 +0 0.1185 +0 0.0587 +0 0.1691 +0 0.0626 +0 0.0941 +0 0.0792 +0 0.0321 +0 0.7160 +0 0.1048 +0 0.2741 +0 0.4067 +0 0.1192 +0 0.0454 +0 0.5098 +0 0.0882 +0 0.2535 +0 0.0842 +0 0.1551 +1 0.7871 +0 0.1436 +0 0.2530 +0 0.0758 +0 0.0550 +0 0.2840 +0 0.0539 +0 0.2255 +0 0.0526 +0 0.1898 +0 0.1289 +0 0.0910 +0 0.0562 +0 0.0761 +0 0.2967 +0 0.0488 +0 0.1907 +0 0.0718 +0 0.0904 +0 0.0594 +0 0.1886 +0 0.0732 +0 0.0499 +0 0.1790 +0 0.2557 +0 0.4887 +0 0.1011 +0 0.2564 +0 0.1450 +0 0.0797 +0 0.1017 +0 0.1540 +0 0.0642 +0 0.0589 +0 0.3219 +0 0.6691 +0 0.0335 +0 0.2762 +0 0.0998 +0 0.1143 +0 0.1057 +0 0.1517 +0 0.2426 +0 0.1412 +0 0.0495 +0 0.1150 +0 0.0415 +0 0.0782 +0 0.0886 +0 0.0508 +0 0.1790 +0 0.2239 +0 0.1782 +0 0.0878 +0 0.0868 +0 0.1705 +0 0.1106 +0 0.2507 +0 0.1253 +0 0.1420 +0 0.0347 +0 0.2398 +0 0.2976 +0 0.0735 +1 0.7770 +0 0.1195 +0 0.1976 +0 0.3123 +0 0.1449 +0 0.1563 +0 0.1048 +0 0.1106 +0 0.1585 +0 0.0894 +0 0.1113 +0 0.0558 +0 0.0383 +0 0.1312 +0 0.1209 +0 0.1490 +0 0.0950 +0 0.1452 +0 0.0732 +0 0.1589 +0 0.2346 +0 0.1253 +0 0.0697 +0 0.1177 +0 0.0476 +0 0.4299 +0 0.0761 +0 0.1819 +0 0.2943 +0 0.0543 +0 0.1586 +0 0.1759 +0 0.6728 +0 0.0699 +0 0.0828 +0 0.0483 +0 0.0771 +0 0.1710 +0 0.0672 +0 0.2000 +0 0.0873 +0 0.1880 +0 0.1613 +0 0.1397 +0 0.0834 +0 0.0316 +0 0.0583 +0 0.0403 +0 0.0854 +0 0.2329 +0 0.0405 +0 0.0708 +0 0.0811 +0 0.1073 +0 0.0870 +0 0.0857 +0 0.1346 +0 0.1960 +0 0.0782 +0 0.0582 +0 0.1622 +0 0.1586 +0 0.0845 +0 0.0616 +0 0.1181 +0 0.0463 +0 0.1064 +0 0.1682 +0 0.1054 +0 0.1013 +0 0.0521 +0 0.0793 +0 0.2062 +0 0.0825 +0 0.1716 +0 0.0551 +0 0.0816 +0 0.1756 +0 0.0928 +0 0.0918 +0 0.0309 +0 0.0833 +0 0.1293 +0 0.2747 +1 0.8865 +0 0.0715 +0 0.1310 +0 0.4261 +0 0.0558 +0 0.0461 +0 0.0977 +0 0.5514 +0 0.0993 +0 0.0605 +0 0.1753 +0 0.0611 +0 0.1995 +0 0.1727 +0 0.1400 +0 0.0395 +0 0.0684 +0 0.0822 +0 0.1209 +0 0.1238 +0 0.2032 +0 0.0591 +0 0.1267 +0 0.1148 +0 0.5852 +0 0.1192 +0 0.1124 +0 0.0472 +0 0.0789 +0 0.1227 +0 0.0552 +0 0.2224 +0 0.0814 +0 0.2061 +0 0.0746 +0 0.0920 +0 0.0778 +0 0.0493 +0 0.0859 +0 0.2248 +0 0.0855 +0 0.0503 +0 0.1639 +0 0.5430 +0 0.2210 +0 0.1151 +0 0.4247 +0 0.1856 +0 0.0774 +0 0.0703 +0 0.0455 +0 0.0849 +0 0.0870 +0 0.1695 +0 0.0655 +0 0.1258 +0 0.2973 +0 0.0369 +0 0.0883 +0 0.1263 +0 0.3481 +0 0.0882 +0 0.1007 +0 0.4906 +0 0.1494 +0 0.1070 +0 0.2012 +0 0.0544 +0 0.0627 +0 0.1222 +0 0.0485 +0 0.1354 +0 0.0851 +0 0.1366 +0 0.0948 +0 0.2158 +0 0.1447 +0 0.1565 +0 0.0661 +0 0.0546 +0 0.1696 +0 0.1760 +0 0.1465 +0 0.0554 +0 0.1786 +0 0.0513 +0 0.0679 +0 0.0777 +0 0.0682 +0 0.0661 +0 0.1470 +0 0.1342 +0 0.1526 +0 0.1661 +0 0.1313 +0 0.2635 +0 0.0658 +0 0.7017 +0 0.2134 +0 0.0580 +0 0.1466 +0 0.3466 +0 0.1186 +0 0.1317 +0 0.1395 +0 0.3404 +0 0.1794 +0 0.0986 +0 0.0958 +0 0.0615 +0 0.0991 +0 0.0760 +0 0.1840 +0 0.0800 +0 0.0705 +0 0.1203 +0 0.2716 +0 0.0762 +0 0.1259 +0 0.0876 +0 0.3681 +0 0.0716 +0 0.0663 +0 0.1394 +1 0.8997 +0 0.1095 +1 0.8659 +0 0.1385 +0 0.1012 +0 0.0803 +0 0.0993 +0 0.1250 +0 0.0465 +0 0.1147 +0 0.0362 +0 0.0820 +0 0.0769 +0 0.1552 +0 0.0516 +0 0.1144 +0 0.1249 +0 0.2144 +0 0.1394 +0 0.6752 +0 0.0831 +0 0.1877 +0 0.1837 +0 0.1733 +0 0.3392 +0 0.2041 +0 0.1126 +0 0.1423 +0 0.1709 +0 0.1725 +0 0.0496 +0 0.0621 +0 0.0624 +0 0.0690 +0 0.2915 +0 0.0920 +0 0.0859 +0 0.0751 +0 0.0910 +0 0.0894 +0 0.0564 +0 0.0446 +0 0.3277 +0 0.0422 +0 0.0829 +0 0.1159 +0 0.1762 +0 0.0552 +0 0.4008 +0 0.1316 +0 0.1460 +0 0.0791 +0 0.0486 +0 0.2066 +0 0.2734 +0 0.1708 +0 0.1104 +0 0.1422 +0 0.1019 +0 0.0850 +0 0.0820 +0 0.3543 +0 0.6798 +0 0.0565 +0 0.2029 +0 0.0518 +0 0.0777 +0 0.1001 +0 0.1206 +0 0.0649 +0 0.1118 +0 0.2443 +0 0.4741 +0 0.0750 +0 0.0682 +0 0.1286 +0 0.0550 +0 0.4229 +0 0.1262 +0 0.0566 +0 0.1033 +0 0.2149 +0 0.2644 +0 0.1447 +0 0.1054 +0 0.0616 +0 0.4083 +0 0.3884 +0 0.1759 +0 0.2914 +0 0.1167 +0 0.0689 +0 0.5315 +0 0.2516 +0 0.1588 +0 0.0494 +0 0.1695 +0 0.0904 +0 0.0975 +0 0.0678 +0 0.0985 +0 0.3133 +0 0.1193 +0 0.0313 +0 0.0540 +0 0.1275 +0 0.0744 +0 0.0637 +0 0.1173 +0 0.1877 +0 0.1216 +0 0.1337 +0 0.2166 +0 0.1617 +0 0.0501 +0 0.0536 +0 0.1035 +0 0.2530 +0 0.3212 +0 0.0777 +0 0.1589 +1 0.8346 +0 0.0517 +0 0.5002 +0 0.0997 +0 0.1661 +0 0.1308 +0 0.1139 +0 0.1737 +0 0.3219 +0 0.1537 +0 0.0771 +0 0.1398 +0 0.3563 +0 0.0516 +0 0.0675 +0 0.1499 +1 0.7881 +0 0.1021 +0 0.0540 +0 0.3945 +0 0.6953 +0 0.1207 +0 0.0662 +0 0.3063 +0 0.0703 +0 0.6567 +0 0.0696 +0 0.0872 +0 0.2891 +0 0.6228 +0 0.0581 +0 0.0953 +0 0.0812 +0 0.0806 +0 0.1655 +0 0.1859 +0 0.1260 +0 0.0823 +0 0.1566 +0 0.0644 +0 0.0653 +0 0.1396 +0 0.0701 +0 0.1450 +0 0.1220 +0 0.1755 +0 0.1136 +0 0.1287 +0 0.2307 +0 0.2164 +0 0.2609 +0 0.2995 +0 0.0752 +0 0.2000 +0 0.0772 +0 0.0833 +0 0.0750 +0 0.2701 +0 0.0416 +0 0.0837 +0 0.1754 +0 0.0501 +0 0.3188 +0 0.3475 +0 0.2238 +0 0.1778 +0 0.0897 +0 0.1673 +0 0.2538 +0 0.0463 +0 0.0534 +0 0.1049 +0 0.1364 +0 0.3434 +0 0.0831 +0 0.1028 +0 0.0498 +0 0.1485 +0 0.1771 +0 0.0816 +0 0.1031 +0 0.1059 +0 0.0841 +0 0.2086 +0 0.0640 +0 0.0399 +0 0.1055 +0 0.0402 +0 0.2656 +0 0.1388 +0 0.1850 +0 0.4085 +0 0.2788 +0 0.0829 +0 0.0838 +0 0.0441 +0 0.0561 +0 0.1704 +0 0.0770 +0 0.1099 +0 0.0665 +0 0.1543 +0 0.0738 +0 0.0633 +0 0.4235 +0 0.3091 +0 0.2829 +0 0.0650 +0 0.0718 +0 0.1881 +0 0.0679 +0 0.0750 +0 0.1648 +0 0.1358 +0 0.0345 +0 0.0568 +0 0.2262 +0 0.0638 +0 0.1912 +0 0.7139 +0 0.0808 +0 0.0763 +0 0.1180 +0 0.1458 +0 0.0744 +0 0.2452 +0 0.0906 +0 0.0745 +0 0.1389 +0 0.0593 +0 0.3081 +0 0.0471 +0 0.0655 +0 0.0550 +0 0.2009 +0 0.1014 +0 0.2092 +0 0.0539 +0 0.1490 +0 0.1584 +0 0.0732 +0 0.1997 +0 0.0981 +0 0.0861 +0 0.2749 +0 0.1737 +0 0.1415 +0 0.0769 +0 0.0479 +0 0.0713 +0 0.0649 +0 0.1837 +0 0.0697 +0 0.1097 +0 0.1235 +0 0.0839 +0 0.2047 +0 0.0846 +0 0.1075 +0 0.0369 +0 0.1857 +0 0.0753 +0 0.0909 +0 0.0607 +0 0.0712 +0 0.1208 +0 0.0368 +0 0.1187 +0 0.0483 +0 0.1050 +0 0.0662 +0 0.1854 +1 0.7983 +0 0.0701 +0 0.0705 +0 0.0882 +0 0.0681 +0 0.1993 +0 0.1471 +0 0.2745 +0 0.1019 +0 0.5901 +0 0.0867 +0 0.0535 +0 0.0650 +0 0.0643 +0 0.0745 +0 0.0422 +0 0.1387 +0 0.0956 +0 0.1070 +0 0.1034 +0 0.0508 +0 0.1645 +0 0.1551 +0 0.1741 +0 0.1124 +0 0.2044 +0 0.0789 +0 0.3824 +0 0.0665 +0 0.0498 +1 0.8223 +0 0.1078 +0 0.0713 +0 0.1456 +0 0.0497 +0 0.0490 +0 0.7035 +0 0.1012 +0 0.1251 +0 0.1148 +0 0.0667 +0 0.2113 +0 0.2306 +0 0.1520 +0 0.0477 +0 0.0443 +0 0.6091 +0 0.0442 +0 0.3722 +0 0.1211 +0 0.4374 +0 0.1102 +0 0.2174 +0 0.1400 +0 0.1284 +0 0.1520 +0 0.1006 +0 0.1289 +0 0.0733 +0 0.1577 +0 0.1658 +0 0.0716 +0 0.0630 +0 0.2256 +0 0.2570 +0 0.0971 +0 0.1364 +0 0.1087 +0 0.0824 +0 0.0650 +0 0.1281 +0 0.0692 +0 0.1294 +0 0.0832 +0 0.0496 +0 0.0454 +0 0.1092 +0 0.0871 +0 0.0681 +0 0.0288 +0 0.0658 +0 0.1212 +0 0.0901 +0 0.1289 +0 0.0973 +0 0.1501 +0 0.0784 +0 0.1072 +0 0.1454 +0 0.2459 +0 0.1081 +0 0.1023 +0 0.0824 +0 0.2220 +0 0.3414 +0 0.0544 +0 0.1398 +0 0.0756 +0 0.0571 +0 0.1328 +0 0.3242 +0 0.0563 +0 0.1079 +0 0.1698 +0 0.0580 +0 0.1612 +0 0.2388 +0 0.3145 +0 0.2273 +0 0.2952 +0 0.2868 +0 0.1873 +0 0.2589 +0 0.1365 +0 0.2073 +0 0.0670 +0 0.1558 +0 0.1319 +0 0.1272 +0 0.0959 +0 0.0706 +0 0.0621 +0 0.6088 +0 0.1054 +0 0.0650 +0 0.1059 +0 0.1650 +0 0.0548 +0 0.1555 +0 0.3086 +0 0.1373 +0 0.1118 +0 0.0650 +0 0.6663 +0 0.2410 +0 0.1075 +1 0.8453 +0 0.0697 +0 0.1511 +0 0.0624 +0 0.1035 +0 0.0559 +0 0.1877 +0 0.2670 +0 0.0522 +0 0.7336 +0 0.1758 +0 0.1387 +0 0.1735 +0 0.0435 +0 0.1170 +0 0.2706 +0 0.0509 +0 0.2481 +0 0.0880 +0 0.0631 +0 0.1874 +0 0.2338 +0 0.1124 +0 0.0527 +0 0.0525 +0 0.1196 +0 0.0865 +0 0.0437 +0 0.0472 +0 0.0907 +0 0.0792 +0 0.1009 +0 0.3284 +0 0.0373 +0 0.0479 +0 0.1362 +0 0.1583 +0 0.1644 +0 0.0923 +0 0.2856 +0 0.0951 +0 0.4069 +0 0.2689 +0 0.3733 +0 0.1760 +0 0.0918 +0 0.0487 +1 0.8404 +0 0.0626 +0 0.0592 +0 0.0722 +0 0.2046 +0 0.1138 +0 0.1345 +0 0.0628 +0 0.0664 +0 0.0932 +0 0.1853 +0 0.0974 +0 0.0530 +0 0.1616 +0 0.0514 +0 0.0528 +0 0.2544 +0 0.1971 +0 0.1129 +0 0.1730 +0 0.1774 +0 0.0621 +0 0.0328 +0 0.0639 +0 0.0378 +0 0.0746 +0 0.1004 +0 0.0526 +0 0.0644 +0 0.2177 +0 0.2965 +0 0.2796 +0 0.2631 +0 0.1135 +0 0.0960 +0 0.0458 +0 0.0546 +0 0.1209 +0 0.2626 +0 0.0969 +0 0.1467 +0 0.0699 +0 0.0681 +0 0.0827 +0 0.3533 +0 0.1796 +0 0.1381 +0 0.1255 +0 0.1012 +0 0.2912 +0 0.1390 +0 0.0878 +0 0.0966 +0 0.2267 +0 0.2358 +0 0.2822 +0 0.1499 +0 0.7267 +0 0.1225 +0 0.1117 +0 0.0926 +0 0.0525 +0 0.0811 +0 0.0994 +0 0.1880 +0 0.0751 +0 0.0848 +0 0.1081 +0 0.0404 +0 0.1776 +0 0.0890 +0 0.0729 +0 0.1375 +1 0.8347 +0 0.1340 +0 0.0692 +0 0.1948 +1 0.7529 +0 0.0769 +0 0.0433 +0 0.0731 +0 0.2292 +0 0.0701 +0 0.1017 +0 0.0817 +0 0.3660 +0 0.1745 +1 0.8154 +0 0.0513 +0 0.1067 +0 0.1114 +0 0.0420 +0 0.1520 +0 0.0674 +0 0.1053 +0 0.0632 +0 0.1673 +0 0.1248 +0 0.2050 +0 0.3830 +0 0.0835 +0 0.0636 +0 0.1604 +0 0.0605 +0 0.0646 +0 0.0834 +0 0.1001 +0 0.2666 +0 0.1852 +0 0.3080 +0 0.1203 +0 0.0868 +0 0.0884 +0 0.2492 +0 0.0746 +0 0.1475 +0 0.1025 +0 0.0733 +0 0.1319 +1 0.8028 +0 0.0345 +0 0.0622 +0 0.0394 +0 0.1384 +0 0.0974 +0 0.0616 +0 0.0828 +0 0.2282 +0 0.2851 +0 0.0605 +0 0.1138 +0 0.1096 +0 0.0920 +0 0.0406 +0 0.3300 +0 0.1839 +0 0.1276 +0 0.0591 +0 0.0710 +0 0.1494 +0 0.1125 +0 0.1941 +0 0.2910 +0 0.0487 +0 0.2945 +1 0.7822 +0 0.1595 +0 0.0757 +0 0.0635 +0 0.1547 +0 0.0355 +0 0.0522 +0 0.0669 +0 0.1568 +0 0.1937 +0 0.2939 +0 0.2236 +0 0.0855 +0 0.0772 +0 0.0987 +0 0.1323 +0 0.0952 +0 0.1107 +0 0.2287 +0 0.0737 +0 0.7034 +0 0.5001 +0 0.1699 +0 0.0828 +1 0.2476 +0 0.1610 +0 0.4181 +0 0.0733 +0 0.2430 +0 0.1140 +0 0.0462 +0 0.0405 +0 0.7488 +0 0.1937 +0 0.1858 +0 0.0543 +0 0.5790 +0 0.0935 +0 0.0774 +0 0.0825 +0 0.0612 +0 0.0881 +0 0.0751 +0 0.2334 +0 0.0828 +0 0.0675 +0 0.0806 +0 0.1311 +0 0.2375 +0 0.0893 +0 0.1296 +0 0.0594 +0 0.0825 +0 0.1704 +0 0.0821 +0 0.0585 +0 0.1076 +0 0.2698 +0 0.1228 +0 0.0659 +0 0.1704 +0 0.0933 +0 0.0448 +0 0.0800 +0 0.2363 +0 0.0965 +0 0.0678 +0 0.1242 +0 0.0585 +0 0.1228 +0 0.0614 +0 0.2413 +0 0.1765 +0 0.0389 +0 0.4197 +0 0.0719 +0 0.1435 +0 0.0659 +0 0.1394 +0 0.2784 +0 0.0945 +0 0.1372 +0 0.1195 +0 0.0773 +0 0.0520 +0 0.0421 +0 0.0523 +0 0.0663 +0 0.4409 +0 0.0925 +0 0.1417 +0 0.5836 +0 0.0684 +0 0.0892 +0 0.2437 +0 0.0620 +0 0.0923 +0 0.0691 +0 0.1214 +0 0.0645 +0 0.1245 +0 0.1806 +0 0.0916 +0 0.0816 +0 0.1101 +0 0.0726 +0 0.0767 +0 0.1637 +0 0.1041 +0 0.0752 +0 0.2163 +0 0.2031 +0 0.4580 +0 0.1440 +0 0.0675 +0 0.0603 +0 0.1001 +0 0.6687 +0 0.1210 +0 0.0727 +0 0.1138 +0 0.0644 +0 0.2243 +0 0.1663 +0 0.0704 +0 0.2713 +0 0.0684 +0 0.0810 +0 0.5940 +0 0.1645 +0 0.0768 +0 0.1448 +0 0.1750 +0 0.0908 +0 0.1895 +0 0.1671 +0 0.0832 +0 0.0944 +0 0.2739 +0 0.1193 +0 0.1456 +0 0.1260 +0 0.1486 +0 0.1357 +0 0.1609 +0 0.1988 +0 0.0518 +0 0.0761 +0 0.0799 +0 0.1832 +0 0.2108 +0 0.1077 +0 0.0448 +0 0.0723 +0 0.3117 +0 0.0708 +0 0.2810 +0 0.0430 +0 0.0557 +0 0.0687 +0 0.1003 +0 0.0902 +0 0.1304 +0 0.0561 +0 0.2857 +0 0.5541 +0 0.0567 +0 0.3444 +0 0.0570 +0 0.3986 +0 0.0957 +0 0.0825 +0 0.0974 +0 0.0769 +0 0.0837 +0 0.1282 +0 0.3285 +0 0.3082 +0 0.0597 +0 0.1305 +0 0.1269 +0 0.0751 +0 0.1264 +0 0.1273 +0 0.1189 +0 0.0716 +0 0.0520 +0 0.1415 +0 0.1758 +0 0.0903 +0 0.2087 +0 0.4453 +0 0.0512 +0 0.1559 +0 0.1624 +0 0.1279 +0 0.1409 +0 0.0278 +0 0.0478 +0 0.0780 +1 0.8512 +0 0.2369 +0 0.0792 +0 0.0893 +0 0.0600 +0 0.0696 +0 0.0450 +0 0.1143 +0 0.1277 +0 0.0814 +0 0.2508 +0 0.1632 +0 0.0840 +0 0.0775 +0 0.0411 +0 0.1416 +0 0.3159 +0 0.2687 +0 0.1309 +0 0.0615 +0 0.0580 +0 0.0717 +0 0.1566 +0 0.0809 +0 0.1740 +0 0.0717 +0 0.0865 +0 0.0824 +0 0.0764 +0 0.0410 +0 0.1124 +0 0.0943 +0 0.1122 +0 0.0690 +1 0.7733 +0 0.1444 +0 0.1674 +0 0.1489 +0 0.0398 +0 0.0930 +0 0.1179 +0 0.2147 +0 0.0889 +0 0.0473 +0 0.0969 +0 0.5404 +0 0.0817 +0 0.0535 +0 0.1043 +0 0.1178 +0 0.0666 +0 0.0529 +0 0.0471 +0 0.1016 +0 0.0848 +0 0.6518 +0 0.1390 +0 0.0810 +0 0.2126 +0 0.2654 +0 0.0571 +0 0.1639 +0 0.0375 +0 0.0838 +1 0.8513 +0 0.0931 +0 0.0820 +0 0.0865 +0 0.0423 +0 0.0777 +0 0.1199 +0 0.1176 +0 0.1377 +0 0.7465 +1 0.7827 +0 0.0578 +0 0.2529 +0 0.2767 +0 0.1071 +0 0.1218 +0 0.1418 +0 0.1171 +0 0.0876 +0 0.2035 +0 0.2602 +0 0.1254 +0 0.1242 +0 0.1479 +0 0.1445 +0 0.4033 +0 0.0628 +0 0.1047 +0 0.0799 +0 0.6416 +0 0.0727 +0 0.0942 +0 0.1058 +1 0.7513 +0 0.1345 +0 0.1380 +0 0.0696 +0 0.0490 +0 0.1134 +0 0.1514 +0 0.1634 +0 0.2153 +0 0.0483 +0 0.2016 +0 0.2570 +0 0.0464 +0 0.0964 +0 0.0759 +0 0.2930 +0 0.1135 +0 0.1040 +1 0.7783 +0 0.1046 +0 0.0651 +0 0.0991 +0 0.0638 +0 0.1000 +0 0.1595 +0 0.0440 +0 0.0946 +0 0.1390 +0 0.1861 +0 0.0848 +0 0.0669 +0 0.0924 +0 0.2095 +0 0.1885 +0 0.0886 +0 0.0999 +0 0.1827 +0 0.0739 +0 0.0326 +0 0.0779 +0 0.1028 +0 0.0708 +0 0.0822 +0 0.0756 +0 0.0991 +0 0.1273 +0 0.2029 +0 0.2510 +0 0.1213 +0 0.1769 +0 0.1639 +0 0.0929 +0 0.0598 +1 0.8089 +0 0.0642 +0 0.3225 +0 0.1529 +0 0.0630 +0 0.0858 +0 0.0526 +0 0.0688 +0 0.2574 +0 0.0631 +0 0.0711 +0 0.0707 +0 0.1613 +0 0.2170 +0 0.1118 +0 0.1679 +0 0.1711 +0 0.2039 +0 0.0518 +0 0.1279 +0 0.1450 +0 0.1534 +0 0.0494 +0 0.0611 +0 0.1030 +0 0.1299 +0 0.2010 +0 0.0842 +0 0.0568 +0 0.4484 +0 0.0898 +0 0.0928 +0 0.0874 +0 0.0794 +0 0.1103 +0 0.0578 +0 0.1232 +0 0.0822 +0 0.1576 +0 0.4107 +0 0.0470 +0 0.2965 +0 0.0776 +0 0.0739 +0 0.3426 +0 0.4599 +0 0.0685 +0 0.0604 +0 0.0817 +0 0.2260 +0 0.2058 +0 0.0789 +0 0.2072 +0 0.2637 +0 0.1511 +0 0.0761 +0 0.0390 +0 0.0940 +0 0.2507 +0 0.3172 +0 0.0622 +0 0.6713 +0 0.2121 +0 0.1165 +0 0.1306 +0 0.3053 +0 0.0923 +0 0.6486 +0 0.1311 +0 0.0736 +0 0.1209 +0 0.0500 +0 0.0758 +0 0.0426 +0 0.0776 +0 0.2043 +0 0.1282 +0 0.3420 +0 0.1044 +0 0.1172 +0 0.0561 +0 0.0870 +0 0.0582 +0 0.3474 +0 0.1145 +0 0.1636 +0 0.0489 +0 0.0662 +0 0.0398 +0 0.0738 +0 0.0729 +0 0.0937 +0 0.0892 +1 0.8642 +1 0.7996 +0 0.1099 +0 0.0527 +0 0.0720 +0 0.2487 +0 0.0819 +0 0.6523 +0 0.0717 +0 0.5388 +0 0.1286 +0 0.0546 +0 0.1390 +0 0.2274 +0 0.0705 +0 0.1186 +0 0.0467 +0 0.0726 +0 0.1315 +0 0.0600 +0 0.0702 +0 0.0658 +0 0.0648 +0 0.0797 +0 0.0419 +0 0.0792 +0 0.1092 +0 0.1323 +0 0.1412 +0 0.0413 +0 0.1462 +0 0.1232 +0 0.2347 +0 0.0513 +0 0.0815 +0 0.0997 +0 0.4294 +0 0.1836 +0 0.2756 +0 0.1167 +0 0.1463 +0 0.4278 +0 0.1370 +0 0.1120 +0 0.0832 +0 0.0927 +0 0.1222 +0 0.1685 +0 0.1529 +0 0.2926 +0 0.0468 +0 0.1069 +0 0.1190 +0 0.1218 +0 0.0768 +0 0.0382 +0 0.5016 +0 0.1470 +0 0.3028 +0 0.1306 +0 0.0440 +0 0.0770 +0 0.1006 +0 0.0739 +0 0.2172 +0 0.1286 +0 0.0594 +0 0.1645 +0 0.0954 +0 0.1529 +0 0.3581 +0 0.1041 +0 0.1196 +0 0.1153 +0 0.1508 +0 0.1004 +0 0.0520 +0 0.0834 +0 0.1359 +0 0.0570 +0 0.1096 +0 0.1214 +0 0.3625 +0 0.1106 +0 0.0529 +0 0.0880 +0 0.0731 +0 0.1447 +0 0.0826 +0 0.0778 +0 0.1752 +0 0.0540 +0 0.1358 +0 0.2174 +0 0.1518 +0 0.1322 +0 0.1034 +0 0.0648 +0 0.0556 +0 0.3739 +0 0.1319 +0 0.1235 +0 0.1330 +0 0.0522 +0 0.0517 +0 0.0653 +0 0.1164 +0 0.1014 +0 0.1051 +0 0.1251 +0 0.6052 +0 0.2301 +0 0.1134 +0 0.1020 +0 0.1253 +0 0.0726 +0 0.0557 +0 0.1872 +0 0.3030 +0 0.1511 +0 0.0994 +0 0.1474 +0 0.1451 +0 0.0705 +0 0.0944 +0 0.1325 +0 0.1388 +0 0.1003 +1 0.8558 +1 0.8071 +0 0.1758 +0 0.0680 +1 0.7693 +0 0.1645 +0 0.0614 +0 0.1953 +0 0.1684 +0 0.0902 +0 0.2531 +0 0.0759 +0 0.0644 +0 0.2013 +0 0.0849 +0 0.1202 +0 0.0802 +0 0.1696 +0 0.1689 +0 0.2207 +0 0.0395 +0 0.1265 +0 0.0456 +0 0.1245 +0 0.0549 +0 0.1441 +0 0.1965 +1 0.8028 +0 0.0852 +0 0.1250 +0 0.1406 +0 0.2566 +0 0.0387 +0 0.0749 +0 0.0895 +0 0.1733 +0 0.0970 +0 0.0516 +0 0.0652 +0 0.0571 +0 0.0751 +0 0.4096 +0 0.0642 +1 0.7608 +0 0.0989 +0 0.0989 +0 0.0814 +0 0.0900 +0 0.0766 +0 0.0993 +0 0.1482 +0 0.0727 +0 0.0983 +0 0.0755 +0 0.1148 +0 0.1653 +0 0.0581 +0 0.0934 +0 0.0491 +0 0.0366 +0 0.1437 +0 0.0695 +0 0.1298 +0 0.1032 +0 0.1518 +0 0.0587 +0 0.2248 +0 0.0640 +0 0.4693 +0 0.1031 +0 0.1087 +0 0.2102 +0 0.0630 +0 0.2098 +0 0.1112 +0 0.2128 +1 0.8138 +0 0.1785 +0 0.0478 +0 0.1053 +0 0.2815 +0 0.1272 +0 0.3136 +0 0.0624 +0 0.1340 +0 0.1204 +0 0.0772 +0 0.1804 +0 0.0944 +0 0.0942 +0 0.0535 +0 0.1066 +0 0.1869 +0 0.0568 +0 0.7029 +0 0.1117 +0 0.1072 +0 0.1773 +0 0.0713 +0 0.0538 +0 0.0475 +0 0.0825 +0 0.1853 +0 0.2078 +0 0.3094 +0 0.1717 +0 0.1745 +0 0.1422 +0 0.1269 +0 0.1379 +0 0.6496 +0 0.1040 +0 0.0848 +0 0.0756 +0 0.0892 +0 0.1388 +0 0.0969 +0 0.0565 +0 0.1137 +0 0.0954 +0 0.2469 +1 0.8370 +0 0.0482 +0 0.4620 +0 0.0871 +0 0.1136 +0 0.0867 +0 0.0503 +0 0.2629 +0 0.0780 +0 0.2180 +0 0.1211 +0 0.0602 +0 0.4401 +0 0.0718 +0 0.1112 +0 0.0982 +0 0.0651 +0 0.0569 +0 0.0383 +0 0.0645 +0 0.1733 +0 0.1014 +0 0.0531 +0 0.3313 +0 0.1227 +0 0.1246 +0 0.3459 +0 0.0379 +0 0.0734 +0 0.0764 +0 0.1351 +0 0.1617 +0 0.1271 +0 0.0655 +0 0.1655 +0 0.7485 +0 0.1474 +0 0.1880 +0 0.1176 +0 0.0732 +0 0.0899 +0 0.0928 +0 0.0604 +0 0.1009 +0 0.1831 +0 0.1310 +0 0.3302 +0 0.0641 +0 0.0790 +0 0.0474 +0 0.3692 +0 0.1274 +0 0.2007 +0 0.0994 +0 0.1271 +0 0.3268 +0 0.2554 +0 0.0679 +0 0.3764 +0 0.0989 +0 0.1329 +0 0.2534 +0 0.0928 +0 0.2601 +0 0.5314 +0 0.0561 +0 0.1324 +0 0.0784 +0 0.0835 +0 0.0543 +0 0.1204 +0 0.0652 +0 0.0984 +0 0.0593 +0 0.0413 +0 0.0786 +0 0.0893 +0 0.0859 +0 0.6364 +0 0.1258 +0 0.0688 +0 0.2154 +0 0.0597 +0 0.3025 +0 0.1149 +0 0.0667 +0 0.2373 +0 0.5137 +0 0.0584 +0 0.1746 +0 0.0673 +0 0.0606 +0 0.6065 +0 0.0889 +0 0.1092 +0 0.2869 +0 0.2124 +0 0.1098 +0 0.0837 +0 0.1968 +0 0.0770 +0 0.2219 +0 0.0574 +0 0.1049 +0 0.0519 +0 0.0557 +0 0.0502 +0 0.0735 +0 0.0505 +0 0.2087 +0 0.4865 +0 0.1059 +0 0.2228 +0 0.5853 +0 0.0681 +0 0.0420 +0 0.0538 +0 0.1940 +0 0.0785 +1 0.8566 +0 0.1661 +0 0.1339 +0 0.1822 +0 0.0933 +0 0.1374 +0 0.2616 +0 0.0559 +0 0.0404 +0 0.0656 +0 0.0624 +0 0.0689 +0 0.0886 +0 0.4218 +0 0.1498 +0 0.2768 +0 0.2376 +0 0.1974 +0 0.0518 +1 0.8421 +0 0.3045 +0 0.2012 +0 0.1145 +0 0.0784 +0 0.0881 +0 0.1067 +0 0.0956 +0 0.0403 +0 0.1402 +0 0.1297 +0 0.6467 +0 0.1898 +0 0.1346 +0 0.1035 +0 0.2169 +0 0.0376 +0 0.4701 +0 0.4770 +0 0.0473 +0 0.0997 +0 0.1105 +0 0.1779 +0 0.1493 +0 0.0898 +0 0.2599 +0 0.0923 +0 0.0598 +0 0.0805 +0 0.1034 +0 0.3923 +0 0.1668 +0 0.0944 +0 0.0961 +0 0.1062 +0 0.0836 +0 0.3319 +0 0.1523 +0 0.0804 +0 0.1171 +0 0.4953 +0 0.0837 +0 0.0877 +0 0.0746 +0 0.1066 +0 0.0984 +0 0.1192 +0 0.1281 +0 0.0742 +0 0.0494 +0 0.3139 +0 0.0786 +0 0.1422 +0 0.0768 +0 0.1020 +0 0.0752 +0 0.1269 +0 0.0975 +0 0.0806 +0 0.0566 +0 0.1214 +0 0.1077 +0 0.1063 +0 0.0577 +0 0.1000 +0 0.0740 +0 0.1092 +0 0.1963 +0 0.0695 +0 0.0992 +0 0.2142 +0 0.0963 +0 0.0845 +0 0.6405 +0 0.0961 +0 0.0505 +0 0.1152 +0 0.0609 +0 0.0429 +0 0.0998 +0 0.0835 +0 0.0926 +0 0.0428 +0 0.1037 +0 0.0438 +0 0.0583 +0 0.0921 +0 0.2137 +0 0.1185 +0 0.0956 +0 0.1260 +0 0.1832 +0 0.6853 +0 0.1620 +0 0.1744 +0 0.1731 +0 0.0839 +0 0.0515 +0 0.1316 +0 0.0777 +0 0.2840 +0 0.2671 +0 0.1514 +0 0.5385 +0 0.4305 +0 0.0842 +0 0.1607 +0 0.1355 +0 0.1414 +0 0.0672 +0 0.1181 +0 0.0910 +0 0.2625 +0 0.1952 +0 0.1012 +0 0.1897 +0 0.0735 +0 0.0765 +0 0.1605 +0 0.1589 +0 0.1123 +1 0.7826 +0 0.0616 +0 0.1866 +0 0.1573 +0 0.3189 +0 0.1654 +0 0.1951 +0 0.1974 +0 0.0869 +0 0.1494 +0 0.0907 +0 0.0619 +0 0.4648 +0 0.0947 +0 0.2314 +0 0.1511 +0 0.0482 +0 0.3989 +0 0.2298 +0 0.1720 +0 0.1087 +0 0.0619 +0 0.1035 +0 0.2529 +0 0.1779 +0 0.1407 +0 0.0599 +0 0.1088 +0 0.0950 +0 0.1398 +0 0.1125 +0 0.0545 +0 0.1382 +0 0.1662 +0 0.0647 +0 0.1372 +0 0.0393 +0 0.0694 +0 0.2165 +0 0.0734 +0 0.0404 +0 0.0768 +0 0.1522 +0 0.0814 +0 0.0973 +0 0.1914 +0 0.7163 +0 0.0814 +0 0.0495 +0 0.6264 +0 0.1469 +0 0.0576 +0 0.0595 +0 0.1233 +0 0.4044 +0 0.1899 +0 0.1166 +0 0.1121 +0 0.0981 +0 0.1697 +0 0.3629 +0 0.0658 +0 0.1017 +0 0.7401 +0 0.0516 +0 0.0437 +0 0.0579 +0 0.1460 +0 0.0873 +0 0.1523 +0 0.0339 +0 0.0567 +0 0.0424 +0 0.2673 +0 0.1980 +0 0.0749 +0 0.1583 +0 0.1455 +0 0.0722 +0 0.1670 +0 0.1706 +0 0.0998 +0 0.2510 +0 0.0444 +0 0.0487 +0 0.1146 +0 0.0620 +0 0.1548 +0 0.3205 +0 0.0930 +0 0.0331 +0 0.0764 +0 0.0700 +0 0.0615 +0 0.0565 +0 0.3155 +0 0.0399 +0 0.3772 +0 0.0973 +0 0.1076 +0 0.6483 +0 0.0640 +0 0.0850 +0 0.1067 +0 0.0973 +0 0.2443 +0 0.0696 +0 0.0709 +0 0.1201 +0 0.0696 +0 0.2539 +0 0.1689 +0 0.1260 +0 0.0846 +0 0.0657 +0 0.0974 +0 0.1553 +0 0.0700 +0 0.1364 +0 0.0909 +0 0.0695 +0 0.2435 +1 0.7547 +0 0.0658 +0 0.1385 +0 0.1289 +0 0.2091 +0 0.0882 +0 0.0901 +0 0.0356 +0 0.1639 +0 0.1072 +1 0.8717 +0 0.1791 +0 0.0960 +0 0.0874 +0 0.0687 +0 0.1241 +0 0.0663 +0 0.0470 +0 0.1275 +0 0.2614 +0 0.0461 +1 0.8633 +0 0.1026 +0 0.1105 +0 0.0779 +0 0.1380 +0 0.1641 +0 0.1024 +0 0.2974 +0 0.0742 +0 0.1122 +0 0.1270 +0 0.0726 +0 0.1154 +0 0.1068 +0 0.1591 +0 0.5959 +0 0.0970 +0 0.0592 +0 0.0841 +0 0.0614 +0 0.0653 +0 0.1810 +0 0.3356 +0 0.1399 +0 0.0932 +0 0.0881 +1 0.7793 +0 0.1564 +0 0.1618 +0 0.2417 +0 0.0279 +0 0.0665 +0 0.2457 +0 0.1538 +0 0.0374 +0 0.0975 +0 0.1792 +0 0.0535 +0 0.1055 +0 0.0609 +0 0.1233 +0 0.0800 +0 0.2808 +0 0.0412 +0 0.1201 +0 0.5509 +0 0.0716 +0 0.1903 +0 0.1086 +0 0.0637 +0 0.6305 +0 0.1141 +0 0.0521 +0 0.4798 +0 0.1164 +0 0.0538 +0 0.0839 +0 0.0588 +0 0.3559 +0 0.1235 +0 0.7187 +0 0.0457 +0 0.1659 +0 0.1301 +0 0.0899 +0 0.1461 +0 0.1210 +0 0.1779 +0 0.0547 +0 0.1462 +0 0.0576 +0 0.0626 +0 0.1978 +0 0.0481 +0 0.1563 +0 0.3439 +0 0.0610 +0 0.4059 +1 0.8462 +0 0.2009 +0 0.1363 +0 0.0987 +0 0.0885 +0 0.4701 +0 0.0643 +0 0.1461 +0 0.1067 +0 0.0361 +0 0.0829 +0 0.0605 +0 0.1753 +0 0.3118 +0 0.0521 +0 0.0758 +0 0.2099 +0 0.0337 +0 0.0595 +0 0.1267 +0 0.0488 +0 0.1032 +0 0.1429 +0 0.0777 +0 0.2092 +0 0.0343 +0 0.1162 +0 0.1355 +0 0.0916 +0 0.1161 +0 0.0981 +0 0.1087 +0 0.1440 +0 0.0393 +0 0.3741 +0 0.0417 +0 0.0480 +0 0.1401 +0 0.0814 +0 0.0989 +0 0.0507 +0 0.0759 +0 0.0627 +0 0.0845 +0 0.2338 +0 0.2246 +0 0.0727 +0 0.0730 +0 0.3360 +0 0.0648 +0 0.0920 +0 0.1060 +0 0.0895 +0 0.1093 +0 0.0900 +0 0.0919 +0 0.1329 +0 0.1015 +0 0.0476 +0 0.4039 +0 0.0872 +0 0.1265 +0 0.1429 +0 0.0761 +0 0.0640 +0 0.0878 +0 0.1957 +0 0.3582 +0 0.0614 +0 0.0351 +0 0.0831 +0 0.0422 +0 0.0620 +0 0.0501 +0 0.1450 +0 0.0608 +0 0.0756 +0 0.1725 +0 0.1138 +0 0.1030 +0 0.0996 +0 0.0687 +0 0.1200 +0 0.0675 +0 0.2381 +0 0.0765 +0 0.1463 +0 0.0976 +0 0.1349 +0 0.2760 +0 0.0777 +0 0.0694 +0 0.0535 +0 0.1347 +0 0.0619 +0 0.1797 +0 0.1120 +0 0.3404 +0 0.1317 +0 0.0641 +0 0.0955 +0 0.2894 +0 0.0871 +0 0.7315 +0 0.0634 +0 0.2510 +0 0.1067 +0 0.1388 +0 0.0563 +0 0.1241 +0 0.0806 +0 0.2202 +0 0.1192 +0 0.3360 +0 0.1642 +0 0.6633 +0 0.1047 +0 0.1118 +0 0.1532 +0 0.1945 +0 0.0735 +0 0.0772 +0 0.0800 +0 0.1545 +0 0.0732 +0 0.1244 +0 0.0712 +0 0.1207 +0 0.0512 +0 0.0881 +0 0.1249 +0 0.0619 +0 0.2182 +0 0.3557 +0 0.0825 +0 0.0462 +0 0.0729 +0 0.1907 +0 0.0762 +0 0.2400 +0 0.1815 +0 0.0583 +0 0.0615 +0 0.2097 +0 0.2495 +0 0.2060 +0 0.0577 +0 0.0851 +0 0.0634 +0 0.0787 +0 0.6005 +0 0.2080 +0 0.1843 +0 0.1928 +0 0.0595 +0 0.1051 +1 0.8393 +1 0.8346 +0 0.1398 +0 0.1948 +0 0.1066 +0 0.1180 +0 0.0426 +0 0.0529 +0 0.2427 +0 0.0999 +0 0.0713 +0 0.0831 +0 0.3940 +0 0.0506 +0 0.0630 +0 0.1500 +1 0.8429 +0 0.1221 +0 0.0624 +0 0.0959 +0 0.0647 +0 0.0821 +0 0.0873 +0 0.1004 +0 0.0822 +0 0.1022 +0 0.0809 +0 0.1144 +0 0.0923 +0 0.0754 +0 0.0774 +0 0.0824 +0 0.0489 +0 0.0911 +0 0.1070 +0 0.1368 +0 0.2506 +0 0.1351 +0 0.1438 +0 0.1161 +0 0.0517 +0 0.2407 +0 0.0949 +0 0.1013 +0 0.1317 +0 0.0950 +0 0.0458 +0 0.1657 +0 0.1020 +0 0.0823 +0 0.1250 +0 0.0947 +0 0.3882 +0 0.1763 +0 0.0530 +0 0.0893 +0 0.0777 +0 0.1441 +0 0.0579 +0 0.0772 +0 0.1404 +0 0.0674 +0 0.0837 +0 0.0599 +0 0.0491 +0 0.1403 +0 0.1338 +0 0.4174 +0 0.0444 +0 0.0528 +0 0.3537 +0 0.1908 +0 0.2555 +0 0.0457 +0 0.1411 +0 0.0543 +0 0.0759 +0 0.0588 +0 0.0535 +0 0.0890 +0 0.1027 +0 0.1957 +0 0.0744 +0 0.0392 +0 0.0944 +0 0.7309 +0 0.1403 +0 0.0913 +0 0.0497 +0 0.1540 +0 0.1080 +0 0.3505 +0 0.0733 +1 0.8396 +0 0.2672 +0 0.0835 +0 0.0856 +0 0.0504 +0 0.0682 +0 0.2556 +0 0.3381 +0 0.1114 +0 0.1300 +0 0.7392 +0 0.2000 +0 0.2410 +0 0.0941 +0 0.1191 +0 0.2397 +0 0.0771 +0 0.1595 +0 0.3681 +0 0.1916 +0 0.1158 +0 0.0463 +0 0.1211 +0 0.1017 +0 0.0618 +0 0.2425 +0 0.0656 +0 0.0327 +0 0.0878 +0 0.2985 +0 0.2249 +0 0.1464 +0 0.0644 +0 0.1034 +0 0.1575 +0 0.0707 +0 0.6470 +0 0.1100 +0 0.0796 +0 0.6465 +0 0.1656 +0 0.1919 +0 0.0447 +0 0.1181 +0 0.0741 +0 0.0697 +0 0.0995 +0 0.0888 +0 0.0341 +0 0.0688 +0 0.0739 +0 0.1112 +0 0.1182 +0 0.0653 +0 0.0390 +0 0.0767 +0 0.1255 +0 0.1015 +0 0.0443 +0 0.2055 +0 0.1140 +0 0.0675 +0 0.0764 +0 0.0380 +0 0.1532 +0 0.1064 +0 0.0928 +0 0.0597 +0 0.1076 +0 0.1457 +0 0.0929 +0 0.0358 +0 0.5026 +0 0.0474 +0 0.7044 +0 0.0812 +0 0.0448 +0 0.0977 +0 0.0731 +0 0.0733 +0 0.0431 +0 0.0888 +0 0.3570 +0 0.1031 +0 0.0905 +0 0.3586 +0 0.0728 +0 0.0870 +0 0.1033 +0 0.1144 +0 0.0849 +0 0.0764 +0 0.1054 +0 0.2343 +0 0.1366 +0 0.2014 +0 0.1832 +0 0.0541 +0 0.1370 +0 0.1434 +0 0.0649 +0 0.0569 +0 0.5373 +0 0.0741 +0 0.1926 +0 0.0731 +0 0.1826 +0 0.0786 +0 0.1053 +0 0.0667 +0 0.0870 +0 0.5866 +0 0.0576 +0 0.2479 +0 0.6644 +0 0.1555 +0 0.0874 +0 0.2154 +0 0.5711 +0 0.2713 +0 0.1783 +0 0.0378 +0 0.0719 +0 0.2207 +0 0.0964 +0 0.0507 +0 0.0862 +0 0.1924 +0 0.1637 +0 0.3291 +0 0.4680 +0 0.1865 +0 0.0576 +0 0.0638 +0 0.0992 +0 0.0571 +0 0.0552 +0 0.0688 +0 0.0417 +0 0.0931 +0 0.1387 +0 0.0822 +0 0.0757 +0 0.1302 +0 0.4544 +0 0.1034 +0 0.1399 +0 0.2707 +0 0.1036 +0 0.1074 +0 0.0815 +0 0.0644 +0 0.2133 +0 0.1221 +0 0.0889 +0 0.2092 +0 0.0833 +0 0.2109 +0 0.2546 +0 0.2158 +0 0.1636 +0 0.1284 +0 0.3142 +0 0.0405 +0 0.0691 +0 0.0966 +0 0.0427 +0 0.0736 +0 0.1284 +0 0.0429 +0 0.0577 +0 0.0450 +0 0.1085 +0 0.1839 +0 0.0829 +0 0.2193 +0 0.1297 +0 0.1131 +0 0.1082 +0 0.2004 +0 0.1043 +0 0.0892 +0 0.1242 +0 0.4792 +0 0.1080 +0 0.0468 +0 0.0889 +0 0.0763 +0 0.1043 +0 0.0885 +0 0.0930 +0 0.1052 +0 0.0646 +0 0.0759 +0 0.2271 +0 0.1239 +0 0.0973 +0 0.0686 +0 0.0819 +0 0.0911 +0 0.1123 +0 0.1462 +0 0.0391 +0 0.7323 +0 0.0804 +0 0.1427 +0 0.0840 +0 0.2028 +0 0.1064 +0 0.1346 +0 0.1278 +0 0.0736 +0 0.1554 +0 0.1086 +0 0.1021 +0 0.0847 +0 0.1028 +0 0.0673 +0 0.1723 +1 0.8510 +0 0.0930 +0 0.1279 +0 0.1391 +0 0.1436 +0 0.0752 +0 0.0808 +0 0.0872 +0 0.0508 +0 0.0559 +0 0.1161 +0 0.1315 +0 0.0406 +0 0.0922 +0 0.3321 +0 0.1751 +0 0.0877 +0 0.1093 +0 0.1503 +0 0.0368 +0 0.5849 +0 0.0797 +0 0.1491 +0 0.1298 +0 0.1057 +0 0.1139 +0 0.1855 +0 0.5514 +0 0.0346 +0 0.2077 +0 0.1236 +0 0.0698 +0 0.2178 +0 0.3398 +1 0.8844 +0 0.1008 +0 0.1644 +0 0.1549 +0 0.1754 +0 0.0340 +0 0.0941 +0 0.1028 +1 0.7520 +0 0.0711 +0 0.2279 +0 0.0789 +0 0.1151 +0 0.0586 +0 0.0996 +0 0.0579 +0 0.0736 +0 0.2359 +0 0.0922 +0 0.1047 +1 0.7724 +0 0.0591 +0 0.0519 +0 0.0981 +0 0.2628 +0 0.0414 +0 0.1017 +0 0.0773 +0 0.0448 +0 0.1996 +0 0.0931 +0 0.1074 +0 0.0562 +0 0.0696 +0 0.0961 +0 0.1179 +0 0.1921 +0 0.1678 +0 0.0945 +0 0.7433 +0 0.0655 +0 0.2147 +0 0.0689 +0 0.0535 +0 0.0842 +0 0.1091 +0 0.1278 +0 0.0678 +0 0.0754 +0 0.0994 +0 0.0854 +0 0.0769 +0 0.0951 +0 0.1295 +0 0.0766 +0 0.2233 +0 0.2438 +0 0.0788 +0 0.0671 +0 0.1030 +0 0.0573 +0 0.0808 +0 0.1754 +0 0.0559 +0 0.0587 +0 0.1757 +0 0.1866 +0 0.0545 +0 0.0714 +0 0.0661 +0 0.0454 +0 0.2266 +0 0.0515 +0 0.2347 +0 0.0877 +0 0.1125 +0 0.1947 +0 0.1038 +0 0.1371 +0 0.0861 +0 0.0799 +0 0.0670 +0 0.0981 +0 0.0382 +0 0.0830 +0 0.1010 +0 0.0597 +0 0.0796 +0 0.1574 +0 0.3457 +0 0.1265 +0 0.0926 +0 0.2609 +0 0.0747 +0 0.1101 +0 0.0551 +0 0.1685 +1 0.8640 +0 0.1300 +0 0.0748 +0 0.0511 +0 0.0949 +0 0.0965 +0 0.0935 +0 0.1111 +0 0.0950 +0 0.1153 +0 0.4299 +0 0.0845 +0 0.0583 +0 0.6382 +0 0.0932 +0 0.0800 +0 0.1264 +0 0.3610 +0 0.0847 +0 0.0544 +0 0.0705 +0 0.0557 +0 0.1310 +0 0.0392 +0 0.0637 +0 0.2255 +0 0.1024 +0 0.0917 +0 0.0863 +1 0.8117 +0 0.0903 +0 0.0732 +0 0.2847 +0 0.2287 +0 0.0629 +0 0.0710 +0 0.0842 +0 0.1213 +0 0.0671 +0 0.0660 +0 0.2395 +0 0.1065 +0 0.1569 +0 0.0926 +0 0.1125 +0 0.1987 +0 0.0701 +0 0.1082 +0 0.0820 +0 0.0990 +0 0.1338 +0 0.0734 +0 0.2075 +0 0.1554 +0 0.1139 +1 0.8099 +0 0.0652 +0 0.0858 +0 0.2505 +0 0.0929 +0 0.1363 +0 0.1553 +0 0.2699 +0 0.2087 +0 0.1012 +0 0.0939 +0 0.0825 +0 0.1281 +0 0.0663 +0 0.1862 +0 0.1614 +0 0.1270 +0 0.0535 +0 0.1895 +0 0.1304 +0 0.5145 +0 0.0575 +0 0.1273 +1 0.8865 +0 0.1453 +0 0.1272 +0 0.1963 +0 0.0847 +0 0.0907 +0 0.0518 +0 0.1072 +0 0.0496 +0 0.0887 +0 0.0948 +0 0.0628 +0 0.0616 +0 0.4225 +0 0.6824 +0 0.0661 +0 0.0643 +0 0.0622 +0 0.1057 +0 0.2337 +0 0.2871 +0 0.0600 +0 0.1877 +0 0.1413 +0 0.1944 +0 0.4107 +0 0.1023 +0 0.1557 +0 0.0637 +0 0.1598 +0 0.0816 +0 0.3155 +0 0.2273 +0 0.1255 +0 0.1109 +0 0.0527 +0 0.0621 +0 0.0909 +0 0.0647 +0 0.5370 +0 0.1396 +0 0.0677 +0 0.2742 +0 0.6897 +0 0.0863 +0 0.2781 +0 0.5324 +0 0.1345 +0 0.6049 +0 0.0805 +0 0.1337 +0 0.0388 +0 0.0818 +0 0.1296 +0 0.0939 +0 0.0561 +0 0.7327 +1 0.8403 +0 0.0505 +0 0.0726 +0 0.1150 +0 0.1437 +0 0.2058 +0 0.0581 +0 0.0667 +0 0.0625 +0 0.0676 +0 0.1019 +0 0.1460 +0 0.0394 +0 0.0810 +0 0.3237 +0 0.3227 +0 0.2476 +0 0.1443 +0 0.0565 +0 0.1097 +0 0.0501 +0 0.1547 +0 0.2654 +0 0.0561 +0 0.0685 +0 0.0942 +0 0.0990 +0 0.2741 +0 0.1477 +0 0.1849 +0 0.1639 +0 0.1205 +0 0.2366 +0 0.0568 +0 0.0942 +0 0.0998 +0 0.1009 +0 0.0412 +0 0.0532 +0 0.1501 +0 0.1699 +0 0.1283 +0 0.0690 +0 0.1879 +0 0.0548 +0 0.1052 +0 0.1594 +0 0.1421 +0 0.0608 +0 0.0319 +0 0.0667 +0 0.0737 +0 0.1567 +0 0.0932 +0 0.0599 +0 0.1020 +0 0.4004 +0 0.1081 +0 0.0542 +0 0.1196 +0 0.1092 +0 0.0984 +0 0.1235 +0 0.0855 +0 0.0775 +0 0.0821 +0 0.1773 +0 0.1226 +0 0.2356 +0 0.0505 +0 0.2349 +0 0.0672 +0 0.1886 +0 0.1573 +0 0.0906 +0 0.0838 +0 0.0615 +0 0.2358 +0 0.1153 +0 0.0754 +0 0.0994 +0 0.1718 +0 0.1948 +0 0.1601 +0 0.3172 +0 0.0351 +0 0.1892 +0 0.1692 +0 0.0449 +0 0.0799 +0 0.1212 +0 0.1322 +0 0.0890 +0 0.0994 +0 0.4485 +0 0.0672 +0 0.1354 +0 0.1059 +0 0.3799 +0 0.0546 +0 0.0827 +0 0.2709 +0 0.2827 +0 0.0343 +0 0.4054 +0 0.5193 +0 0.0639 +0 0.3278 +0 0.0436 +0 0.0557 +0 0.0664 +0 0.3820 +0 0.1355 +0 0.0413 +0 0.1956 +0 0.0470 +0 0.0728 +0 0.1787 +0 0.0454 +1 0.7615 +0 0.0892 +0 0.2381 +0 0.0479 +0 0.0763 +0 0.0533 +0 0.1476 +0 0.0294 +0 0.0614 +0 0.2029 +0 0.2025 +0 0.0599 +0 0.1070 +0 0.2314 +0 0.5981 +0 0.0390 +0 0.1787 +0 0.0834 +0 0.1201 +0 0.3170 +0 0.0466 +0 0.0583 +0 0.1219 +0 0.2676 +0 0.0771 +0 0.0909 +0 0.0923 +0 0.0375 +0 0.0656 +0 0.2188 +0 0.0898 +0 0.0671 +0 0.1754 +0 0.1099 +0 0.1236 +0 0.0893 +0 0.0823 +0 0.1075 +0 0.0908 +0 0.2006 +0 0.1324 +0 0.1063 +0 0.0780 +0 0.0713 +0 0.1078 +0 0.1386 +0 0.0725 +0 0.1166 +0 0.0674 +0 0.1653 +0 0.0919 +0 0.4807 +0 0.1366 +0 0.0614 +0 0.1164 +0 0.1774 +0 0.1291 +0 0.0632 +0 0.0364 +0 0.0916 +0 0.0550 +0 0.0696 +0 0.1196 +0 0.0665 +0 0.1657 +0 0.0754 +0 0.4039 +0 0.1029 +0 0.1289 +0 0.1771 +0 0.1204 +0 0.4552 +0 0.1955 +0 0.0759 +0 0.5311 +0 0.1170 +0 0.2158 +0 0.1320 +0 0.0691 +0 0.1026 +0 0.0655 +0 0.0325 +0 0.1963 +0 0.0361 +0 0.2228 +0 0.0858 +0 0.1274 +0 0.0675 +0 0.0804 +0 0.0880 +0 0.2858 +0 0.0790 +0 0.0497 +0 0.4580 +0 0.1397 +0 0.1291 +0 0.1923 +0 0.0955 +0 0.1416 +0 0.1093 +0 0.3360 +0 0.1016 +0 0.0931 +0 0.5771 +0 0.2399 +0 0.0712 +0 0.1136 +0 0.1811 +0 0.0582 +0 0.0631 +0 0.0434 +0 0.2850 +0 0.1170 +0 0.0616 +0 0.0772 +0 0.0392 +0 0.0806 +0 0.2806 +0 0.0604 +0 0.0736 +0 0.0858 +0 0.1114 +0 0.0964 +0 0.0631 +0 0.1099 +0 0.0778 +0 0.0674 +0 0.2015 +0 0.2760 +0 0.2214 +0 0.6929 +0 0.0456 +0 0.1124 +0 0.2104 +0 0.1449 +0 0.1025 +0 0.1154 +0 0.0915 +0 0.1256 +0 0.0915 +0 0.0579 +0 0.2025 +0 0.1347 +0 0.1147 +0 0.1086 +0 0.1588 +0 0.2378 +0 0.1681 +0 0.0767 +0 0.5259 +0 0.1376 +0 0.5136 +0 0.1769 +0 0.1325 +0 0.0895 +0 0.1289 +0 0.0678 +0 0.1295 +0 0.0770 +0 0.5889 +0 0.0612 +0 0.0919 +0 0.1870 +0 0.2026 +0 0.1903 +0 0.1299 +0 0.0762 +0 0.4108 +0 0.2856 +0 0.2013 +0 0.0472 +0 0.1766 +0 0.2779 +0 0.0733 +0 0.0771 +0 0.1838 +0 0.1205 +0 0.3766 +0 0.0591 +0 0.1159 +0 0.0844 +0 0.1123 +0 0.1151 +0 0.0840 +0 0.0515 +0 0.0808 +0 0.0542 +0 0.1470 +0 0.6709 +0 0.0980 +0 0.2390 +0 0.0620 +0 0.1094 +0 0.2172 +0 0.0932 +0 0.1538 +0 0.1270 +0 0.7328 +0 0.1953 +0 0.7113 +0 0.1499 +0 0.2145 +0 0.0705 +0 0.0781 +0 0.1405 +0 0.0605 +0 0.0896 +0 0.2161 +0 0.1801 +0 0.0692 +0 0.0547 +0 0.2874 +0 0.1311 +0 0.1506 +0 0.6514 +0 0.1543 +0 0.1863 +0 0.0725 +0 0.0535 +0 0.1790 +0 0.0560 +0 0.5200 +0 0.2200 +0 0.3318 +0 0.0738 +0 0.0634 +0 0.0885 +0 0.0972 +0 0.1378 +0 0.1549 +0 0.0788 +0 0.1940 +0 0.0775 +0 0.0746 +0 0.1601 +0 0.1319 +0 0.1806 +0 0.0836 +0 0.0756 +0 0.0476 +0 0.1571 +0 0.0659 +0 0.6147 +0 0.1111 +0 0.1390 +0 0.1111 +0 0.0822 +0 0.0721 +0 0.1083 +0 0.1000 +0 0.0789 +0 0.1157 +0 0.2315 +0 0.1001 +1 0.8477 +0 0.0949 +0 0.4889 +0 0.1550 +0 0.1721 +0 0.2447 +1 0.7718 +0 0.0953 +0 0.1124 +0 0.0757 +0 0.2285 +0 0.1251 +0 0.0939 +0 0.1213 +0 0.1130 +1 0.7508 +0 0.2841 +0 0.1204 +0 0.0608 +1 0.8070 +0 0.2924 +0 0.0607 +0 0.0519 +0 0.0998 +0 0.1297 +0 0.0515 +0 0.7294 +0 0.0696 +0 0.1567 +0 0.0706 +0 0.0498 +0 0.2274 +0 0.0631 +0 0.1525 +0 0.1374 +0 0.0493 +0 0.0376 +0 0.1020 +0 0.0552 +0 0.1397 +0 0.1687 +0 0.1149 +0 0.0734 +0 0.0717 +0 0.2663 +0 0.1646 +0 0.0466 +0 0.1166 +0 0.0992 +0 0.0746 +0 0.1721 +0 0.0693 +0 0.1674 +0 0.0417 +0 0.0558 +0 0.0615 +0 0.2052 +0 0.1290 +0 0.1032 +0 0.0673 +0 0.4455 +0 0.2766 +0 0.0891 +0 0.1771 +0 0.0796 +0 0.3076 +0 0.1003 +0 0.1226 +0 0.1311 +0 0.1110 +0 0.1383 +0 0.5195 +0 0.1247 +0 0.0668 +0 0.0840 +0 0.0612 +0 0.0748 +0 0.0307 +0 0.0633 +0 0.0727 +0 0.6840 +0 0.1430 +0 0.1214 +0 0.1517 +0 0.0370 +0 0.0884 +0 0.1129 +0 0.0450 +0 0.2615 +0 0.1239 +0 0.1285 +0 0.2088 +0 0.1747 +0 0.1631 +0 0.1414 +0 0.1477 +0 0.0390 +0 0.1209 +0 0.1647 +0 0.1897 +0 0.1537 +0 0.4373 +0 0.0804 +0 0.2746 +0 0.2567 +0 0.1733 +0 0.1806 +0 0.2658 +0 0.0650 +0 0.4993 +0 0.3537 +0 0.3186 +0 0.0392 +0 0.0549 +0 0.0574 +0 0.1926 +0 0.1577 +0 0.0533 +0 0.0817 +0 0.0778 +0 0.1147 +0 0.1815 +0 0.0617 +0 0.0650 +0 0.1247 +0 0.0768 +0 0.2466 +0 0.3128 +0 0.0686 +0 0.1106 +0 0.1000 +0 0.0894 +0 0.0747 +0 0.0670 +0 0.0743 +0 0.0879 +0 0.2258 +0 0.0552 +0 0.0956 +0 0.1348 +0 0.1004 +0 0.1237 +0 0.0872 +0 0.0731 +0 0.1567 +0 0.0639 +0 0.2454 +0 0.1147 +0 0.0546 +0 0.0468 +0 0.2644 +0 0.0702 +0 0.0963 +0 0.1652 +0 0.0381 +0 0.0640 +0 0.0734 +1 0.3616 +0 0.0993 +0 0.0516 +0 0.0520 +0 0.1060 +0 0.1188 +0 0.1333 +0 0.0769 +0 0.1795 +0 0.0662 +0 0.0528 +0 0.0847 +0 0.1407 +0 0.0574 +0 0.0937 +0 0.0455 +1 0.7693 +0 0.1523 +0 0.2206 +0 0.1274 +0 0.1337 +0 0.0745 +0 0.1377 +0 0.1145 +0 0.0886 +0 0.0848 +0 0.0616 +0 0.0828 +0 0.2011 +0 0.1020 +0 0.0806 +0 0.0680 +0 0.0600 +0 0.1379 +0 0.1729 +1 0.8369 +0 0.0999 +0 0.3943 +0 0.1578 +0 0.0798 +0 0.0728 +0 0.1477 +0 0.0414 +0 0.0742 +0 0.3117 +0 0.3672 +0 0.0835 +0 0.1128 +0 0.0867 +0 0.5950 +0 0.0886 +0 0.0525 +0 0.2530 +0 0.1377 +0 0.0772 +0 0.1644 +0 0.0798 +0 0.0803 +0 0.0671 +0 0.0635 +0 0.0573 +0 0.1205 +0 0.0930 +0 0.0745 +0 0.1314 +0 0.2634 +0 0.1388 +0 0.7484 +0 0.0980 +0 0.0500 +0 0.0754 +0 0.1479 +0 0.0861 +0 0.1754 +0 0.0482 +0 0.0951 +0 0.0488 +0 0.3744 +0 0.2219 +0 0.1004 +0 0.0503 +0 0.0668 +0 0.0380 +0 0.1532 +0 0.0906 +0 0.0641 +0 0.4689 +0 0.1953 +0 0.0862 +0 0.1713 +0 0.2786 +0 0.1452 +0 0.2481 +0 0.1983 +0 0.0648 +0 0.0717 +0 0.0512 +0 0.0816 +0 0.0819 +0 0.1502 +0 0.2112 +0 0.0573 +0 0.1299 +0 0.1674 +0 0.0573 +0 0.2668 +0 0.3581 +0 0.0650 +0 0.2134 +0 0.0674 +0 0.0371 +0 0.1881 +0 0.1819 +0 0.1920 +0 0.0571 +0 0.2679 +0 0.2259 +0 0.1060 +0 0.1133 +0 0.1074 +0 0.0351 +0 0.0716 +0 0.0929 +0 0.2775 +0 0.0499 +0 0.1583 +0 0.1376 +0 0.0301 +0 0.0575 +0 0.2586 +0 0.1070 +0 0.2236 +0 0.1981 +0 0.2499 +0 0.0658 +0 0.3052 +0 0.1348 +0 0.0411 +0 0.0752 +0 0.0624 +0 0.1105 +0 0.0695 +0 0.6245 +0 0.0754 +0 0.0872 +0 0.0588 +0 0.1332 +0 0.2240 +0 0.0631 +0 0.0516 +0 0.0733 +0 0.0784 +0 0.2584 +0 0.0668 +0 0.0663 +0 0.1554 +0 0.0891 +0 0.0471 +0 0.0691 +0 0.0816 +0 0.1157 +0 0.0927 +0 0.0836 +0 0.1610 +0 0.0982 +0 0.1120 +0 0.1216 +0 0.0806 +0 0.0685 +1 0.8372 +0 0.0854 +0 0.1264 +0 0.0967 +0 0.3432 +0 0.0769 +0 0.0827 +0 0.0455 +0 0.2898 +0 0.1114 +0 0.0923 +0 0.2216 +0 0.6409 +0 0.0677 +0 0.2418 +0 0.0840 +0 0.6514 +0 0.0583 +0 0.3787 +0 0.1745 +0 0.1244 +0 0.1329 +0 0.1209 +0 0.1028 +0 0.1056 +0 0.0876 +0 0.1220 +0 0.0672 +0 0.0678 +0 0.1019 +0 0.3189 +0 0.1129 +0 0.2191 +0 0.2156 +0 0.0747 +0 0.1040 +0 0.1133 +0 0.1230 +0 0.0774 +0 0.1227 +0 0.1057 +0 0.1546 +0 0.1424 +0 0.1154 +0 0.0593 +0 0.1424 +0 0.0752 +0 0.1981 +0 0.1887 +0 0.3798 +0 0.3221 +0 0.1395 +0 0.0575 +0 0.4389 +0 0.0343 +0 0.0999 +0 0.0813 +0 0.0858 +1 0.8052 +0 0.3251 +0 0.2019 +0 0.1390 +0 0.0707 +0 0.0961 +0 0.0878 +0 0.1173 +0 0.0676 +0 0.0949 +0 0.3199 +0 0.1152 +0 0.1004 +0 0.0852 +0 0.1311 +0 0.0540 +0 0.2451 +0 0.1175 +0 0.0422 +0 0.0659 +0 0.1441 +1 0.7525 +1 0.8726 +0 0.1584 +0 0.6645 +0 0.0982 +0 0.1115 +0 0.2138 +0 0.2583 +0 0.0967 +0 0.0631 +0 0.1699 +0 0.0930 +0 0.0985 +0 0.1857 +0 0.2334 +0 0.0753 +0 0.1032 +0 0.0496 +0 0.0429 +0 0.1061 +0 0.1238 +0 0.1378 +0 0.1052 +0 0.0940 +0 0.0626 +0 0.0603 +0 0.2664 +0 0.1214 +0 0.2496 +0 0.0475 +0 0.1680 +0 0.2035 +0 0.1165 +0 0.0517 +0 0.1029 +0 0.1262 +1 0.8768 +0 0.1189 +0 0.4241 +0 0.1960 +0 0.0769 +0 0.1948 +0 0.0584 +0 0.0777 +0 0.1126 +0 0.6023 +0 0.1909 +0 0.1404 +0 0.1087 +0 0.0661 +0 0.0660 +0 0.0372 +0 0.1697 +0 0.3183 +0 0.1251 +0 0.1425 +0 0.0768 +0 0.0608 +0 0.2165 +0 0.1918 +0 0.2905 +0 0.0841 +0 0.0916 +0 0.0833 +0 0.1630 +0 0.1053 +0 0.2520 +0 0.1585 +0 0.0881 +0 0.1074 +0 0.1064 +0 0.1026 +0 0.0725 +0 0.0723 +0 0.0928 +0 0.0832 +0 0.2198 +0 0.1310 +0 0.1349 +0 0.1880 +0 0.0546 +0 0.0393 +0 0.1420 +0 0.2890 +0 0.0652 +0 0.0908 +0 0.0944 +0 0.2008 +0 0.1672 +0 0.1885 +0 0.0826 +0 0.0743 +0 0.0496 +0 0.0685 +0 0.1610 +0 0.1142 +0 0.0781 +0 0.1301 +0 0.1823 +0 0.1035 +0 0.0511 +0 0.5227 +0 0.0621 +0 0.1467 +0 0.0699 +0 0.0475 +0 0.1011 +0 0.0693 +0 0.0798 +0 0.3054 +0 0.0786 +0 0.1266 +0 0.1033 +0 0.2001 +0 0.0383 +0 0.1537 +0 0.1238 +0 0.1218 +0 0.0765 +0 0.1176 +0 0.0995 +0 0.0472 +0 0.2525 +0 0.2087 +0 0.1409 +0 0.0508 +0 0.0581 +0 0.1329 +0 0.2026 +0 0.7031 +0 0.0715 +0 0.0988 +0 0.1378 +0 0.0663 +0 0.3732 +0 0.0669 +0 0.1382 +0 0.0738 +0 0.1245 +0 0.2113 +0 0.1135 +0 0.0919 +0 0.1062 +0 0.2090 +0 0.0934 +0 0.0837 +0 0.2257 +0 0.1104 +0 0.1025 +0 0.0683 +0 0.2184 +0 0.0616 +0 0.1018 +0 0.0985 +0 0.0525 +0 0.0954 +0 0.0591 +0 0.0380 +0 0.1307 +0 0.1422 +0 0.0932 +0 0.0778 +0 0.1242 +0 0.1169 +0 0.1396 +0 0.2190 +0 0.0620 +0 0.1052 +0 0.1361 +0 0.0851 +0 0.2780 +0 0.1838 +0 0.0815 +0 0.0455 +0 0.0668 +0 0.0363 +0 0.0531 +0 0.0792 +0 0.0955 +0 0.0351 +0 0.6601 +0 0.0678 +0 0.1384 +0 0.2321 +0 0.7305 +0 0.2029 +0 0.0390 +0 0.0840 +0 0.1681 +0 0.0799 +0 0.2538 +0 0.0883 +0 0.1773 +0 0.1329 +0 0.1398 +0 0.1479 +0 0.0931 +0 0.0572 +0 0.0419 +0 0.1871 +0 0.0504 +0 0.1680 +0 0.0662 +0 0.1593 +0 0.0964 +0 0.1044 +0 0.1168 +0 0.1178 +0 0.1155 +0 0.0655 +0 0.1658 +0 0.1148 +0 0.0850 +0 0.0496 +0 0.2592 +0 0.1314 +0 0.0851 +0 0.2191 +0 0.0659 +0 0.0414 +1 0.8299 +0 0.0809 +0 0.0863 +0 0.0791 +0 0.0409 +0 0.0789 +0 0.1391 +0 0.0600 +0 0.1116 +0 0.1328 +0 0.1024 +0 0.1185 +0 0.1740 +0 0.1117 +0 0.1423 +0 0.0854 +0 0.1171 +0 0.2344 +0 0.0473 +0 0.0904 +0 0.0995 +0 0.0602 +0 0.1467 +0 0.0558 +0 0.0926 +0 0.0894 +0 0.1316 +0 0.0482 +0 0.2486 +0 0.0819 +0 0.0935 +0 0.1637 +0 0.0729 +0 0.0528 +0 0.1075 +0 0.6129 +0 0.1862 +0 0.5166 +0 0.0742 +0 0.3895 +0 0.0627 +0 0.0995 +0 0.1535 +0 0.1547 +0 0.1247 +0 0.2040 +0 0.2638 +0 0.1266 +0 0.2009 +0 0.1134 +0 0.6573 +0 0.0984 +0 0.0956 +0 0.2186 +0 0.0676 +0 0.0916 +0 0.2075 +0 0.3450 +0 0.0436 +0 0.1221 +0 0.0945 +0 0.0882 +0 0.0843 +0 0.0967 +0 0.3299 +0 0.0806 +0 0.1684 +0 0.1047 +1 0.7756 +0 0.0382 +0 0.1132 +0 0.0512 +0 0.0776 +0 0.0956 +0 0.0885 +0 0.0562 +0 0.1025 +0 0.1220 +1 0.8369 +0 0.0583 +0 0.0597 +0 0.1172 +0 0.1004 +0 0.4103 +0 0.0593 +0 0.0874 +0 0.0642 +0 0.1464 +0 0.1083 +0 0.2336 +0 0.1391 +0 0.1083 +0 0.1027 +0 0.0901 +0 0.0381 +0 0.1495 +0 0.0729 +0 0.1263 +0 0.0896 +0 0.1872 +0 0.0665 +0 0.0645 +0 0.0907 +0 0.3477 +0 0.0812 +0 0.1454 +0 0.0688 +0 0.1174 +0 0.1691 +0 0.2214 +0 0.0624 +0 0.0869 +0 0.2376 +0 0.0903 +0 0.0660 +0 0.2204 +0 0.3756 +0 0.1976 +0 0.0632 +0 0.1072 +0 0.0935 +0 0.0909 +0 0.0748 +0 0.1753 +0 0.1111 +0 0.0498 +0 0.1097 +0 0.0779 +0 0.1883 +0 0.3666 +0 0.0802 +0 0.2328 +0 0.2700 +0 0.0575 +0 0.0738 +0 0.0710 +0 0.4242 +0 0.1093 +0 0.0664 +0 0.2792 +0 0.0361 +0 0.1386 +0 0.0555 +0 0.1074 +0 0.1085 +0 0.1362 +0 0.1269 +0 0.0840 +0 0.1630 +0 0.0667 +0 0.1107 +0 0.2021 +0 0.1078 +0 0.0657 +0 0.1083 +0 0.1441 +0 0.1632 +0 0.1590 +0 0.0559 +0 0.1461 +0 0.0894 +0 0.1106 +0 0.0652 +0 0.0789 +0 0.0723 +0 0.0988 +0 0.2260 +0 0.0771 +0 0.1085 +0 0.2000 +0 0.0940 +0 0.0606 +0 0.1132 +0 0.0709 +0 0.2553 +0 0.1388 +0 0.0933 +0 0.0759 +0 0.1880 +0 0.0948 +0 0.1279 +0 0.0866 +0 0.1186 +0 0.4516 +0 0.1911 +0 0.2178 +0 0.0625 +0 0.2124 +0 0.1410 +0 0.0796 +0 0.1149 +0 0.1641 +0 0.0674 +0 0.1433 +0 0.0951 +0 0.1153 +0 0.0551 +0 0.7398 +0 0.1238 +0 0.2187 +0 0.1083 +0 0.0615 +0 0.1691 +0 0.1050 +0 0.0863 +0 0.1998 +0 0.0469 +0 0.0740 +0 0.0999 +0 0.1724 +0 0.0473 +0 0.6914 +0 0.1010 +0 0.2061 +0 0.0482 +0 0.7276 +0 0.0526 +0 0.1620 +0 0.2563 +0 0.0638 +0 0.1316 +0 0.1185 +0 0.1109 +0 0.1347 +0 0.1744 +0 0.0613 +1 0.8865 +0 0.0490 +0 0.0662 +0 0.0512 +0 0.0774 +1 0.8121 +0 0.1078 +0 0.1049 +0 0.1922 +0 0.1374 +0 0.1003 +0 0.1160 +0 0.1172 +1 0.7758 +0 0.0624 +0 0.0858 +0 0.0977 +0 0.1849 +0 0.1599 +0 0.0342 +0 0.0593 +0 0.2550 +0 0.0940 +0 0.0623 +0 0.5654 +0 0.3209 +0 0.1090 +0 0.2299 +0 0.1230 +0 0.2600 +0 0.0391 +0 0.0817 +0 0.0906 +0 0.1578 +0 0.1029 +0 0.1434 +0 0.0931 +0 0.0969 +0 0.1452 +0 0.0572 +0 0.3391 +0 0.1278 +0 0.0883 +0 0.1104 +0 0.1276 +0 0.1588 +0 0.2310 +0 0.1373 +0 0.1991 +0 0.0549 +0 0.0973 +0 0.1078 +0 0.0505 +0 0.0963 +0 0.1802 +0 0.1712 +0 0.2438 +0 0.0889 +0 0.1407 +0 0.1344 +0 0.0847 +0 0.1023 +0 0.0477 +0 0.1810 +0 0.1086 +0 0.1678 +0 0.1027 +0 0.3597 +0 0.6846 +0 0.1588 +0 0.1440 +0 0.1416 +0 0.1276 +0 0.1738 +0 0.0972 +0 0.0961 +0 0.2282 +0 0.1875 +0 0.1716 +0 0.0704 +0 0.3890 +0 0.1709 +0 0.0885 +0 0.2012 +0 0.1759 +0 0.0709 +0 0.0940 +0 0.1278 +0 0.1504 +0 0.1805 +0 0.0626 +0 0.0339 +0 0.0691 +0 0.2020 +0 0.1180 +0 0.0695 +0 0.0583 +0 0.0530 +0 0.0470 +0 0.1788 +0 0.2501 +0 0.2097 +0 0.2153 +0 0.4911 +0 0.1767 +0 0.0425 +0 0.2624 +0 0.4398 +0 0.1368 +0 0.1015 +0 0.0414 +0 0.0560 +0 0.0878 +0 0.1398 +0 0.1906 +0 0.1386 +0 0.2000 +0 0.1493 +0 0.0582 +0 0.2168 +0 0.0294 +0 0.1710 +0 0.0824 +0 0.0889 +0 0.1030 +0 0.1635 +0 0.0428 +0 0.0998 +0 0.1346 +1 0.8386 +0 0.1532 +0 0.1684 +0 0.0463 +0 0.2219 +0 0.1275 +0 0.5849 +0 0.1001 +0 0.2210 +0 0.1187 +0 0.1089 +0 0.1017 +0 0.1047 +0 0.0669 +0 0.0605 +0 0.1531 +0 0.1378 +0 0.1056 +0 0.1059 +0 0.2654 +0 0.1259 +0 0.0420 +0 0.1141 +0 0.0670 +0 0.1838 +0 0.0673 +0 0.0703 +0 0.0851 +0 0.0862 +0 0.1814 +0 0.1955 +0 0.1126 +0 0.7416 +0 0.0959 +0 0.1341 +0 0.1339 +0 0.1209 +0 0.0969 +0 0.1223 +0 0.0894 +0 0.1125 +0 0.1471 +0 0.0616 +0 0.0666 +0 0.1772 +0 0.0917 +0 0.1271 +0 0.2584 +0 0.2326 +0 0.1094 +0 0.1950 +0 0.1002 +0 0.1355 +0 0.0536 +0 0.0890 +0 0.2382 +0 0.0560 +0 0.1741 +0 0.0335 +0 0.1408 +0 0.1041 +0 0.1091 +0 0.0708 +0 0.1551 +0 0.6430 +0 0.0992 +0 0.1744 +0 0.0622 +0 0.1185 +0 0.0711 +0 0.0513 +0 0.0413 +0 0.3075 +0 0.0786 +0 0.1218 +0 0.1118 +0 0.0748 +0 0.1001 +0 0.0622 +0 0.1436 +0 0.1320 +0 0.0886 +0 0.0924 +0 0.0767 +0 0.0848 +0 0.0645 +0 0.3138 +0 0.1687 +0 0.2626 +0 0.1625 +0 0.0938 +0 0.2349 +0 0.0895 +0 0.0280 +0 0.1043 +0 0.0630 +0 0.1886 +0 0.1070 +0 0.1105 +0 0.0677 +0 0.0453 +0 0.0392 +0 0.0820 +0 0.1362 +0 0.1821 +0 0.2548 +0 0.1276 +0 0.0611 +0 0.0833 +0 0.0588 +0 0.1880 +0 0.1341 +0 0.2942 +0 0.4306 +1 0.7912 +0 0.0587 +0 0.1003 +0 0.2843 +0 0.3977 +0 0.0858 +0 0.0818 +0 0.0587 +0 0.0805 +0 0.0745 +0 0.0964 +0 0.1930 +0 0.4072 +0 0.0608 +0 0.1021 +0 0.0667 +0 0.0641 +0 0.0649 +0 0.2111 +0 0.1196 +0 0.0473 +0 0.1502 +0 0.1414 +0 0.1310 +0 0.1489 +0 0.1868 +0 0.6405 +0 0.3648 +0 0.2263 +0 0.1842 +0 0.0581 +1 0.8296 +0 0.0821 +0 0.1636 +0 0.0791 +0 0.0763 +0 0.6254 +0 0.2393 +0 0.0654 +0 0.0490 +0 0.1145 +0 0.0491 +0 0.0906 +0 0.1270 +0 0.1151 +0 0.6649 +0 0.0997 +0 0.0812 +0 0.1963 +0 0.0794 +0 0.0566 +0 0.3732 +0 0.4225 +0 0.0805 +0 0.1114 +0 0.3809 +0 0.3531 +0 0.4004 +0 0.4021 +0 0.1135 +0 0.0651 +0 0.1236 +0 0.0922 +0 0.1195 +0 0.0847 +0 0.0883 +1 0.8106 +0 0.1128 +0 0.0837 +0 0.0828 +0 0.0951 +0 0.1119 +0 0.0613 +0 0.3253 +0 0.0720 +0 0.1080 +0 0.2214 +0 0.0786 +0 0.0870 +0 0.0697 +0 0.0792 +0 0.0441 +0 0.1685 +0 0.0973 +0 0.6035 +0 0.7186 +0 0.0688 +0 0.0753 +0 0.2762 +0 0.0622 +0 0.2462 +0 0.1108 +0 0.0510 +0 0.1282 +0 0.2074 +0 0.0922 +0 0.0984 +1 0.8598 +0 0.0776 +0 0.1830 +0 0.1721 +0 0.0880 +0 0.0442 +0 0.3968 +0 0.0644 +0 0.0736 +0 0.2507 +0 0.2094 +0 0.0556 +0 0.0476 +0 0.1226 +0 0.0787 +0 0.1773 +0 0.2343 +0 0.0997 +0 0.0497 +0 0.0742 +0 0.0929 +0 0.1215 +0 0.1117 +0 0.0699 +0 0.1170 +0 0.0692 +0 0.1108 +0 0.0895 +0 0.0548 +0 0.0565 +0 0.2691 +0 0.0736 +0 0.2047 +0 0.2947 +0 0.2269 +0 0.0803 +0 0.1565 +0 0.1039 +0 0.0318 +0 0.3379 +0 0.2168 +0 0.0410 +0 0.2744 +0 0.0740 +0 0.0575 +0 0.0868 +0 0.0838 +0 0.0491 +0 0.1147 +0 0.6259 +0 0.0421 +0 0.1349 +0 0.0930 +0 0.3586 +0 0.2310 +0 0.1725 +0 0.0766 +0 0.1066 +0 0.0572 +0 0.1495 +0 0.0627 +0 0.0643 +0 0.2236 +0 0.0589 +0 0.0733 +0 0.0516 +0 0.1236 +0 0.1227 +0 0.1207 +0 0.0873 +0 0.1345 +0 0.0864 +0 0.0892 +0 0.0752 +0 0.0786 +0 0.0794 +0 0.0802 +0 0.2132 +0 0.1632 +0 0.0752 +0 0.1888 +0 0.0704 +1 0.8347 +0 0.7107 +0 0.4016 +0 0.0724 +0 0.2495 +0 0.0459 +0 0.1903 +0 0.1399 +0 0.0859 +0 0.0998 +0 0.0742 +0 0.0680 +0 0.0986 +0 0.1012 +0 0.0643 +0 0.1265 +0 0.0508 +0 0.0901 +0 0.1372 +0 0.0535 +0 0.0750 +0 0.6269 +0 0.0803 +0 0.1228 +0 0.1333 +0 0.0523 +0 0.1814 +0 0.0859 +0 0.1132 +0 0.0985 +0 0.0364 +0 0.1988 +0 0.2046 +0 0.0619 +0 0.1131 +1 0.7726 +0 0.1411 +0 0.1063 +0 0.0627 +0 0.0308 +0 0.0706 +0 0.0433 +0 0.0522 +0 0.1904 +0 0.0801 +0 0.0941 +0 0.1263 +0 0.0721 +0 0.0990 +0 0.1110 +0 0.1297 +0 0.1795 +0 0.1439 +0 0.1745 +0 0.3139 +0 0.2841 +0 0.1013 +0 0.2321 +0 0.0903 +0 0.3739 +0 0.0550 +0 0.1424 +0 0.0839 +0 0.2724 +0 0.1748 +0 0.0781 +0 0.0939 +0 0.0890 +0 0.0696 +0 0.1024 +0 0.1408 +0 0.1629 +0 0.0548 +0 0.1166 +0 0.0802 +0 0.1178 +0 0.0789 +0 0.7187 +0 0.0725 +0 0.1237 +0 0.2226 +1 0.4481 +0 0.0462 +0 0.2198 +0 0.1496 +0 0.0707 +0 0.1855 +0 0.0692 +0 0.1134 +0 0.0899 +0 0.1368 +0 0.0608 +0 0.1024 +0 0.6538 +0 0.1093 +0 0.4341 +0 0.0788 +0 0.1630 +0 0.1119 +0 0.0979 +0 0.0829 +0 0.0355 +0 0.0526 +0 0.0628 +0 0.1446 +0 0.0436 +0 0.3147 +0 0.0567 +0 0.1053 +0 0.2326 +0 0.0942 +0 0.3174 +0 0.2753 +0 0.1332 +0 0.2426 +0 0.1026 +0 0.1472 +0 0.0901 +0 0.4283 +0 0.6085 +0 0.1301 +0 0.0708 +0 0.6041 +0 0.1168 +0 0.1552 +0 0.4402 +0 0.2547 +0 0.1042 +0 0.5809 +0 0.1347 +1 0.7847 +0 0.1124 +0 0.0880 +0 0.1073 +0 0.2286 +0 0.3180 +0 0.2549 +0 0.1583 +0 0.1893 +0 0.1432 +0 0.0812 +0 0.4447 +0 0.1614 +0 0.2850 +0 0.1484 +0 0.1437 +0 0.4811 +0 0.0523 +0 0.1429 +0 0.0913 +0 0.0730 +0 0.2356 +0 0.0711 +0 0.0569 +0 0.2083 +0 0.0746 +0 0.6504 +0 0.0731 +0 0.0469 +0 0.0949 +0 0.0670 +0 0.0724 +0 0.0758 +0 0.0758 +0 0.2996 +0 0.1558 +0 0.3005 +0 0.2192 +0 0.2092 +0 0.2611 +0 0.0879 +0 0.1555 +0 0.4120 +0 0.1305 +0 0.0802 +0 0.5449 +0 0.6978 +0 0.0704 +0 0.0763 +0 0.1779 +0 0.1042 +0 0.0960 +0 0.3613 +0 0.2518 +0 0.0993 +0 0.0770 +0 0.0447 +0 0.1013 +0 0.1317 +0 0.1874 +0 0.1260 +0 0.1737 +0 0.0788 +0 0.0587 +0 0.0428 +0 0.0381 +0 0.0813 +0 0.2009 +0 0.0762 +0 0.1535 +0 0.4737 +0 0.0761 +0 0.1481 +0 0.0418 +0 0.0837 +0 0.1752 +0 0.3453 +0 0.1242 +0 0.1752 +0 0.0678 +0 0.0849 +0 0.1181 +0 0.2067 +0 0.0717 +0 0.1199 +0 0.1270 +0 0.1023 +0 0.0756 +0 0.0318 +0 0.0726 +0 0.0801 +0 0.2830 +0 0.1324 +0 0.0520 +0 0.0690 +0 0.0460 +0 0.1107 +0 0.0544 +0 0.0710 +0 0.0981 +0 0.1243 +0 0.1174 +0 0.0774 +0 0.1447 +0 0.1190 +0 0.2788 +0 0.0810 +0 0.0998 +0 0.0833 +0 0.3284 +0 0.1028 +0 0.0501 +0 0.0955 +0 0.1721 +0 0.1346 +0 0.0864 +0 0.3202 +0 0.1781 +1 0.8293 +0 0.1440 +0 0.1411 +0 0.0787 +0 0.3830 +0 0.0814 +0 0.0922 +0 0.0595 +0 0.0858 +0 0.0546 +0 0.0461 +0 0.3185 +0 0.0928 +0 0.6904 +0 0.1358 +0 0.1699 +0 0.1136 +0 0.0462 +0 0.5173 +0 0.2492 +0 0.0998 +0 0.0909 +0 0.0700 +0 0.0742 +0 0.1415 +0 0.0951 +0 0.0946 +0 0.0889 +0 0.4523 +0 0.3518 +0 0.1154 +0 0.1868 +0 0.0919 +0 0.1019 +0 0.0816 +0 0.1290 +0 0.1286 +0 0.0646 +0 0.1328 +0 0.1610 +0 0.1427 +0 0.3687 +0 0.2407 +0 0.1238 +0 0.2077 +0 0.4112 +0 0.1590 +0 0.0639 +0 0.0393 +0 0.0737 +0 0.0693 +0 0.2068 +0 0.0867 +0 0.0535 +0 0.0630 +0 0.3953 +0 0.0612 +0 0.0692 +0 0.0927 +0 0.0563 +0 0.0538 +0 0.0836 +0 0.2840 +0 0.1644 +0 0.0623 +0 0.0776 +0 0.1422 +0 0.1097 +0 0.1023 +0 0.1276 +0 0.0776 +0 0.0587 +0 0.2320 +0 0.1209 +0 0.1134 +0 0.1645 +0 0.2472 +0 0.0609 +0 0.2641 +0 0.0720 +0 0.0692 +0 0.0620 +0 0.0879 +0 0.1640 +0 0.0541 +0 0.1518 +0 0.2134 +0 0.0755 +0 0.0974 +0 0.0738 +0 0.0543 +0 0.2973 +0 0.1865 +0 0.0805 +0 0.5687 +0 0.1025 +0 0.1030 +0 0.3002 +0 0.0791 +0 0.0779 +0 0.1766 +0 0.0971 +0 0.1132 +0 0.1101 +0 0.0979 +0 0.0942 +0 0.0988 +0 0.0577 +0 0.0755 +0 0.6761 +0 0.1021 +0 0.3021 +0 0.2770 +0 0.1092 +0 0.1733 +0 0.1045 +0 0.0718 +0 0.1584 +0 0.2373 +0 0.1021 +0 0.0608 +0 0.1012 +0 0.0857 +0 0.2320 +0 0.1150 +0 0.1375 +0 0.1270 +0 0.2538 +0 0.0472 +1 0.8247 +0 0.1170 +0 0.1128 +0 0.0617 +0 0.1075 +0 0.0812 +0 0.0879 +0 0.1064 +0 0.0961 +0 0.0915 +0 0.1623 +0 0.1009 +0 0.1159 +0 0.0988 +0 0.0562 +0 0.0385 +0 0.0617 +0 0.1424 +1 0.8600 +0 0.1784 +0 0.0913 +0 0.1278 +0 0.2820 +0 0.2713 +0 0.1449 +0 0.1175 +0 0.0560 +0 0.1699 +0 0.2029 +0 0.1482 +0 0.2979 +0 0.1731 +0 0.0417 +0 0.1047 +0 0.6614 +0 0.4814 +0 0.0548 +0 0.2781 +0 0.0954 +0 0.3233 +0 0.1711 +0 0.1893 +0 0.0762 +0 0.3204 +0 0.0955 +0 0.0997 +0 0.0924 +0 0.0560 +0 0.1995 +0 0.0913 +0 0.1028 +0 0.0476 +0 0.0856 +0 0.1057 +0 0.1383 +0 0.0693 +0 0.1168 +0 0.1062 +0 0.7174 +0 0.0667 +0 0.1779 +0 0.1877 +0 0.5207 +0 0.1141 +0 0.0541 +0 0.1692 +0 0.0748 +0 0.0634 +0 0.1996 +0 0.1420 +0 0.1901 +0 0.0362 +0 0.1193 +0 0.2170 +0 0.0998 +0 0.1074 +0 0.0518 +0 0.2561 +0 0.2761 +0 0.3164 +0 0.0613 +0 0.0788 +0 0.2615 +0 0.0521 +0 0.6344 +0 0.0437 +0 0.1027 +0 0.0805 +0 0.1880 +0 0.2668 +0 0.0694 +0 0.0803 +0 0.1117 +0 0.0577 +0 0.1986 +0 0.0803 +0 0.1020 +0 0.4085 +0 0.1086 +0 0.0883 +0 0.1256 +0 0.0624 +0 0.1324 +0 0.0977 +0 0.1066 +0 0.0851 +0 0.0593 +0 0.0630 +0 0.0805 +0 0.3301 +0 0.0648 +0 0.2123 +0 0.1197 +0 0.1074 +0 0.1786 +0 0.0556 +0 0.2504 +1 0.7625 +0 0.1325 +0 0.0738 +0 0.0543 +0 0.0387 +0 0.1039 +0 0.1124 +0 0.1325 +0 0.1556 +0 0.2375 +0 0.1696 +0 0.3144 +0 0.0807 +0 0.0597 +0 0.1432 +0 0.4143 +0 0.0916 +0 0.0383 +0 0.1015 +1 0.7611 +0 0.0774 +0 0.0937 +0 0.0991 +0 0.1028 +0 0.1280 +0 0.2508 +0 0.1871 +0 0.4417 +0 0.0890 +0 0.1124 +0 0.1274 +0 0.5975 +0 0.0925 +0 0.1290 +0 0.7496 +0 0.1562 +0 0.1487 +0 0.1600 +0 0.1338 +0 0.1779 +0 0.0974 +0 0.0618 +0 0.1204 +0 0.0460 +1 0.7741 +0 0.0842 +0 0.0761 +0 0.1734 +0 0.0609 +0 0.0455 +0 0.2152 +0 0.3987 +0 0.0925 +0 0.0650 +0 0.1061 +0 0.3124 +0 0.0939 +0 0.1327 +0 0.1153 +0 0.0726 +0 0.1856 +0 0.0939 +0 0.1208 +0 0.1627 +0 0.0785 +0 0.1759 +0 0.4446 +0 0.1087 +0 0.0835 +0 0.1348 +0 0.0713 +0 0.0533 +0 0.0620 +0 0.0682 +0 0.0973 +0 0.0824 +0 0.2056 +0 0.0778 +0 0.1278 +0 0.1404 +0 0.1945 +0 0.0822 +0 0.0623 +0 0.0847 +0 0.0745 +0 0.0659 +0 0.2205 +0 0.0902 +0 0.1384 +0 0.0974 +0 0.1041 +0 0.0726 +0 0.0976 +0 0.1993 +0 0.0798 +0 0.2559 +0 0.0582 +0 0.0827 +0 0.3167 +0 0.1319 +0 0.0781 +0 0.0400 +0 0.0526 +0 0.0897 +0 0.2910 +0 0.0807 +0 0.0848 +0 0.1632 +0 0.1538 +0 0.1677 +0 0.0649 +0 0.0992 +0 0.1592 +0 0.1129 +0 0.1318 +0 0.0844 +0 0.5557 +0 0.0409 +0 0.0987 +0 0.0433 +0 0.0977 +0 0.7254 +0 0.7062 +0 0.1670 +0 0.1729 +0 0.0539 +0 0.1085 +0 0.0835 +0 0.0435 +0 0.0660 +0 0.2846 +0 0.0584 +0 0.0732 +0 0.0567 +0 0.1003 +0 0.0679 +0 0.0819 +0 0.1056 +0 0.1664 +0 0.1394 +0 0.1009 +0 0.1403 +0 0.1197 +0 0.1654 +1 0.2216 +0 0.2091 +0 0.6868 +0 0.0721 +0 0.0895 +0 0.2559 +0 0.0493 +0 0.0494 +0 0.1393 +0 0.1228 +0 0.1076 +0 0.0686 +0 0.0641 +0 0.3244 +0 0.0411 +0 0.1012 +0 0.3849 +0 0.1064 +0 0.2483 +0 0.0606 +0 0.0868 +0 0.1504 +0 0.0838 +0 0.5813 +0 0.1378 +0 0.0802 +0 0.0686 +0 0.1176 +0 0.1349 +0 0.0990 +0 0.4359 +0 0.0843 +0 0.2708 +0 0.1774 +0 0.0929 +0 0.0720 +0 0.1534 +0 0.2375 +0 0.0853 +0 0.0540 +0 0.0543 +0 0.1147 +0 0.0785 +0 0.1310 +0 0.1086 +0 0.6061 +0 0.0871 +0 0.1326 +0 0.2144 +0 0.4069 +0 0.0580 +0 0.1650 +0 0.1105 +0 0.3562 +0 0.1922 +0 0.1573 +0 0.5367 +0 0.0463 +0 0.0896 +0 0.1645 +0 0.0601 +0 0.1683 +0 0.1316 +0 0.0666 +0 0.0462 +0 0.1795 +0 0.0691 +0 0.1684 +0 0.2710 +0 0.0982 +0 0.4779 +0 0.0540 +0 0.1362 +0 0.0955 +0 0.0932 +0 0.1448 +0 0.1240 +0 0.0800 +0 0.2132 +0 0.1909 +0 0.0911 +0 0.1100 +0 0.1889 +0 0.1267 +0 0.0999 +0 0.1159 +0 0.1611 +0 0.2672 +0 0.4282 +0 0.2222 +0 0.1728 +0 0.0528 +0 0.0951 +0 0.0554 +0 0.0568 +1 0.8906 +0 0.1357 +0 0.2249 +0 0.2584 +0 0.0822 +0 0.4806 +0 0.1593 +0 0.1532 +0 0.0932 +0 0.0522 +0 0.0878 +0 0.0725 +0 0.0741 +0 0.4047 +0 0.0693 +0 0.1921 +0 0.0766 +0 0.0844 +0 0.1888 +0 0.0469 +0 0.1134 +0 0.0531 +0 0.0797 +0 0.1220 +0 0.1042 +0 0.0718 +0 0.2879 +0 0.1184 +0 0.1238 +0 0.1296 +0 0.0861 +0 0.0389 +0 0.0484 +0 0.2540 +0 0.1014 +0 0.1571 +0 0.1244 +0 0.0767 +0 0.3409 +0 0.0442 +0 0.2462 +0 0.2707 +0 0.1277 +0 0.0518 +0 0.0762 +0 0.0401 +0 0.0865 +0 0.6526 +0 0.1341 +0 0.1922 +0 0.0471 +0 0.0706 +0 0.1721 +0 0.2324 +0 0.1066 +0 0.0839 +0 0.1368 +0 0.7085 +0 0.1141 +0 0.6167 +0 0.0501 +0 0.0755 +0 0.1315 +0 0.1687 +0 0.1195 +0 0.1964 +0 0.1565 +0 0.0391 +0 0.1696 +0 0.0570 +0 0.2628 +0 0.1165 +0 0.7316 +0 0.4799 +0 0.0729 +0 0.0591 +0 0.1150 +0 0.1333 +0 0.0784 +0 0.1314 +0 0.1384 +0 0.1159 +0 0.0780 +0 0.1596 +0 0.1128 +0 0.0819 +0 0.0838 +0 0.0444 +0 0.1521 +0 0.0873 +1 0.8434 +0 0.1398 +0 0.1057 +0 0.0593 +0 0.0902 +0 0.0704 +0 0.1689 +0 0.6548 +0 0.2252 +0 0.0756 +0 0.0854 +0 0.4118 +0 0.1398 +0 0.0933 +0 0.1590 +0 0.1808 +0 0.0351 +0 0.1393 +0 0.2011 +0 0.2546 +0 0.2057 +0 0.0868 +0 0.1156 +0 0.0316 +0 0.1010 +0 0.0998 +0 0.0954 +0 0.4371 +0 0.0725 +0 0.0410 +0 0.3001 +1 0.8176 +0 0.4453 +0 0.0714 +0 0.1642 +0 0.0942 +0 0.1423 +0 0.2726 +0 0.0747 +0 0.2420 +0 0.0393 +0 0.3967 +0 0.1515 +0 0.1663 +0 0.1664 +0 0.2301 +0 0.0366 +0 0.0323 +0 0.2526 +0 0.4550 +0 0.1408 +0 0.0710 +0 0.1466 +0 0.0918 +0 0.0825 +0 0.1162 +0 0.2913 +0 0.0575 +0 0.0680 +0 0.0867 +0 0.1106 +0 0.0503 +0 0.1026 +0 0.0558 +0 0.0874 +0 0.1126 +0 0.1445 +0 0.1403 +0 0.1454 +0 0.0993 +0 0.5624 +0 0.0903 +0 0.2245 +1 0.7845 +0 0.0846 +0 0.3112 +0 0.0962 +0 0.1339 +0 0.0968 +0 0.0807 +0 0.0982 +0 0.4951 +0 0.0797 +0 0.0661 +0 0.2085 +0 0.0743 +0 0.0749 +0 0.6899 +0 0.1315 +0 0.0464 +0 0.1451 +0 0.0625 +0 0.1563 +0 0.0799 +0 0.0605 +0 0.0458 +0 0.0901 +0 0.1773 +0 0.1844 +0 0.0488 +0 0.0594 +0 0.1247 +0 0.0791 +0 0.0394 +0 0.1031 +0 0.1426 +0 0.0843 +0 0.0918 +0 0.0923 +0 0.0804 +0 0.0555 +0 0.0654 +0 0.1240 +0 0.1035 +0 0.1975 +0 0.1111 +0 0.1433 +0 0.1780 +0 0.1500 +0 0.3470 +0 0.5081 +0 0.0906 +0 0.0936 +0 0.0752 +0 0.1057 +0 0.0460 +0 0.0841 +0 0.0696 +0 0.1076 +0 0.0548 +0 0.1029 +0 0.0416 +0 0.4746 +0 0.0848 +0 0.3565 +0 0.0651 +0 0.1022 +0 0.4121 +0 0.0751 +0 0.1480 +0 0.3902 +0 0.0724 +0 0.0678 +0 0.1907 +0 0.3121 +0 0.0629 +0 0.1213 +0 0.0922 +0 0.1226 +0 0.1761 +0 0.0745 +0 0.0628 +0 0.1482 +0 0.1358 +0 0.0500 +0 0.1461 +0 0.2347 +0 0.1038 +0 0.0960 +0 0.0759 +0 0.0804 +0 0.6887 +0 0.0828 +0 0.0823 +0 0.0355 +0 0.1295 +0 0.0405 +0 0.0952 +0 0.6572 +0 0.0664 +0 0.1337 +0 0.3365 +0 0.0411 +0 0.0809 +0 0.1628 +0 0.0883 +0 0.1200 +0 0.0830 +0 0.0706 +0 0.1882 +0 0.1014 +0 0.1029 +0 0.1006 +0 0.1567 +0 0.0954 +0 0.1367 +0 0.2518 +0 0.0910 +0 0.2038 +0 0.1618 +0 0.2174 +0 0.1229 +0 0.0590 +0 0.0412 +0 0.2566 +0 0.2775 +0 0.0969 +0 0.0382 +0 0.6186 +0 0.1999 +0 0.0661 +0 0.1154 +0 0.0676 +0 0.0609 +0 0.0528 +0 0.1368 +0 0.1365 +0 0.0759 +0 0.0935 +0 0.3827 +0 0.1267 +0 0.1491 +0 0.0699 +0 0.0632 +0 0.6551 +0 0.0852 +0 0.0642 +0 0.0965 +0 0.1941 +0 0.0708 +1 0.7931 +0 0.2382 +0 0.0504 +0 0.0893 +1 0.8399 +0 0.0845 +0 0.0603 +0 0.0694 +0 0.0629 +0 0.1171 +0 0.0694 +0 0.0867 +0 0.5020 +0 0.0549 +0 0.0516 +0 0.6601 +0 0.6155 +0 0.1964 +0 0.0947 +0 0.1226 +0 0.0968 +0 0.1635 +0 0.4105 +0 0.0837 +0 0.0975 +0 0.2713 +0 0.1251 +0 0.0765 +0 0.0624 +0 0.1173 +1 0.8290 +0 0.1488 +0 0.1924 +0 0.2088 +0 0.0524 +0 0.1680 +0 0.7371 +0 0.1726 +0 0.2519 +0 0.2596 +0 0.0582 +0 0.0937 +0 0.1423 +0 0.0521 +0 0.0740 +0 0.0599 +0 0.1427 +0 0.4154 +0 0.0686 +0 0.6365 +0 0.3315 +0 0.2049 +0 0.0871 +0 0.2507 +0 0.1392 +0 0.1510 +0 0.0972 +0 0.1219 +0 0.0893 +0 0.0872 +0 0.1331 +0 0.2665 +0 0.0991 +0 0.1424 +0 0.0857 +0 0.0328 +0 0.0713 +0 0.0426 +0 0.0658 +0 0.0732 +0 0.1662 +0 0.1278 +0 0.1499 +0 0.1618 +0 0.0603 +0 0.2128 +0 0.0505 +0 0.1030 +0 0.0338 +0 0.0682 +0 0.0652 +0 0.2250 +0 0.0860 +0 0.1097 +0 0.0887 +0 0.4438 +0 0.1217 +0 0.0856 +0 0.1334 +0 0.0794 +0 0.1371 +0 0.0806 +0 0.0462 +0 0.0861 +0 0.0993 +0 0.1227 +0 0.0470 +0 0.0658 +0 0.4400 +0 0.1745 +0 0.1805 +0 0.1386 +0 0.1451 +0 0.2188 +0 0.0847 +0 0.0553 +0 0.0549 +0 0.1253 +0 0.0408 +0 0.1815 +0 0.0784 +0 0.0795 +0 0.0441 +0 0.0660 +0 0.0838 +0 0.0471 +0 0.0878 +0 0.0841 +0 0.1539 +0 0.0650 +0 0.6390 +0 0.0682 +0 0.0977 +0 0.1764 +0 0.1027 +0 0.1186 +1 0.7629 +0 0.1443 +0 0.0836 +0 0.0986 +0 0.0989 +0 0.2930 +0 0.1800 +0 0.0937 +0 0.0894 +1 0.8828 +1 0.8680 +0 0.1010 +0 0.0802 +0 0.1728 +0 0.2583 +0 0.0984 +0 0.0757 +0 0.0642 +0 0.7008 +0 0.0427 +0 0.0788 +0 0.0452 +0 0.1508 +1 0.8903 +0 0.0939 +0 0.0821 +0 0.0381 +0 0.0611 +0 0.0465 +0 0.0934 +0 0.0833 +0 0.0488 +0 0.1083 +0 0.1184 +0 0.0850 +0 0.1798 +0 0.4621 +0 0.0932 +0 0.0964 +0 0.1269 +0 0.1470 +0 0.0980 +0 0.2300 +0 0.0441 +0 0.2515 +1 0.8723 +0 0.0525 +0 0.0896 +0 0.5471 +0 0.0662 +0 0.1871 +0 0.0832 +0 0.0584 +0 0.1439 +0 0.0506 +0 0.2172 +0 0.0910 +0 0.1869 +0 0.1874 +0 0.0460 +0 0.0719 +0 0.2508 +0 0.2464 +0 0.2021 +0 0.1490 +0 0.0837 +0 0.2023 +0 0.0989 +0 0.0446 +0 0.2264 +0 0.0556 +0 0.1420 +0 0.0589 +0 0.0531 +0 0.2090 +0 0.1103 +0 0.0409 +0 0.2183 +0 0.0638 +0 0.1832 +0 0.0920 +0 0.1998 +0 0.0550 +0 0.0952 +0 0.1267 +0 0.4119 +0 0.0568 +0 0.1014 +0 0.0529 +0 0.6773 +0 0.0874 +0 0.1662 +0 0.1692 +1 0.8173 +0 0.1538 +0 0.1229 +0 0.0825 +0 0.0866 +0 0.0652 +0 0.0655 +0 0.1345 +0 0.6737 +0 0.1104 +0 0.1729 +0 0.1081 +0 0.2953 +0 0.2713 +0 0.1258 +0 0.4074 +0 0.1123 +0 0.0821 +0 0.0933 +0 0.2698 +0 0.0681 +0 0.1422 +0 0.1043 +0 0.0782 +0 0.1143 +0 0.0940 +0 0.3220 +0 0.0515 +0 0.2645 +0 0.0378 +0 0.2117 +1 0.7826 +0 0.0569 +0 0.1251 +0 0.1547 +0 0.0937 +0 0.0556 +0 0.3079 +0 0.0599 +0 0.0937 +0 0.0922 +0 0.0726 +0 0.1079 +0 0.0863 +0 0.0792 +0 0.1302 +0 0.0855 +0 0.0776 +0 0.2739 +0 0.1286 +0 0.1125 +0 0.1622 +0 0.1281 +0 0.2336 +1 0.8475 +0 0.1099 +0 0.0711 +0 0.1135 +0 0.0443 +0 0.0570 +0 0.0512 +0 0.1058 +0 0.0474 +0 0.1699 +0 0.1934 +0 0.0517 +0 0.1500 +0 0.1582 +0 0.3475 +0 0.1321 +1 0.7867 +0 0.0667 +0 0.1263 +0 0.3210 +0 0.0644 +0 0.0449 +0 0.0666 +0 0.2032 +0 0.0435 +0 0.0919 +0 0.1801 +0 0.0946 +0 0.1076 +0 0.1207 +0 0.2480 +0 0.1438 +0 0.0528 +0 0.0753 +0 0.0863 +0 0.0561 +0 0.0873 +0 0.1961 +0 0.1155 +0 0.1063 +0 0.1175 +0 0.0668 +0 0.1659 +0 0.0867 +0 0.1582 +0 0.0523 +0 0.1457 +0 0.1348 +0 0.0528 +0 0.0934 +0 0.1403 +0 0.0839 +0 0.0487 +0 0.1497 +0 0.0626 +0 0.1456 +0 0.0780 +0 0.1872 +0 0.1362 +0 0.0534 +0 0.1834 +0 0.1086 +0 0.0937 +0 0.2656 +0 0.1207 +0 0.1962 +0 0.1542 +0 0.0958 +1 0.7569 +0 0.0637 +0 0.1273 +0 0.4646 +0 0.0924 +0 0.0690 +0 0.0778 +0 0.0540 +0 0.1818 +0 0.0706 +0 0.0667 +0 0.0518 +0 0.0644 +0 0.1560 +0 0.1880 +0 0.0916 +0 0.1267 +0 0.0572 +0 0.1745 +0 0.1291 +0 0.1151 +0 0.1483 +0 0.1077 +0 0.2682 +0 0.2959 +0 0.1610 +1 0.7621 +0 0.1849 +0 0.5588 +0 0.1006 +0 0.0793 +0 0.0693 +0 0.0593 +0 0.0955 +0 0.1650 +1 0.7960 +0 0.2430 +0 0.0778 +1 0.7745 +0 0.0549 +0 0.0485 +0 0.0871 +0 0.0531 +0 0.0873 +0 0.0629 +0 0.4804 +0 0.1206 +0 0.0665 +0 0.1552 +0 0.2213 +0 0.0656 +0 0.2388 +0 0.0686 +0 0.0967 +0 0.1566 +0 0.1095 +0 0.0697 +0 0.0925 +0 0.1028 +0 0.3023 +0 0.1665 +0 0.0504 +0 0.0969 +0 0.2969 +0 0.5112 +0 0.0323 +0 0.1544 +0 0.1472 +0 0.1367 +0 0.1958 +0 0.1129 +0 0.0651 +0 0.0856 +0 0.0792 +1 0.7710 +0 0.0685 +0 0.0713 +0 0.0803 +0 0.2562 +0 0.0842 +0 0.0653 +0 0.1674 +0 0.0695 +0 0.0448 +0 0.0691 +0 0.1371 +0 0.2865 +0 0.1750 +0 0.0507 +0 0.0758 +1 0.8059 +0 0.1357 +0 0.1601 +0 0.4595 +0 0.1117 +0 0.1010 +0 0.1095 +0 0.2763 +0 0.0680 +0 0.1105 +0 0.1500 +0 0.0809 +0 0.1077 +0 0.1251 +0 0.1372 +0 0.2591 +0 0.2142 +0 0.2219 +0 0.1014 +0 0.1003 +0 0.1200 +0 0.0739 +0 0.0922 +0 0.0713 +0 0.0925 +0 0.1130 +0 0.2447 +0 0.0779 +1 0.8069 +0 0.0801 +0 0.0641 +0 0.1097 +0 0.0841 +0 0.1333 +0 0.3530 +0 0.1197 +0 0.2281 +0 0.1235 +0 0.0854 +0 0.2745 +0 0.1242 +0 0.0563 +0 0.0795 +0 0.0427 +0 0.7485 +0 0.2742 +0 0.0602 +0 0.0705 +0 0.0717 +0 0.4985 +0 0.1113 +1 0.8689 +0 0.0855 +0 0.1015 +0 0.1729 +0 0.0452 +0 0.3191 +0 0.0595 +0 0.1680 +0 0.0617 +0 0.0351 +0 0.0720 +0 0.1102 +0 0.3203 +0 0.0603 +0 0.0434 +1 0.8243 +0 0.1401 +0 0.0537 +0 0.0646 +0 0.2566 +1 0.8555 +0 0.0646 +0 0.0460 +0 0.0866 +0 0.1324 +0 0.0744 +0 0.0540 +0 0.0394 +0 0.2803 +0 0.0741 +0 0.0789 +0 0.0614 +0 0.0630 +0 0.0942 +0 0.5095 +0 0.0910 +0 0.1145 +0 0.3419 +0 0.1764 +0 0.1116 +0 0.1887 +0 0.0957 +0 0.0831 +0 0.1432 +0 0.0816 +0 0.0533 +0 0.1810 +0 0.0719 +0 0.0494 +0 0.0662 +0 0.0584 +1 0.7779 +0 0.0482 +0 0.0940 +0 0.2313 +0 0.1160 +0 0.2841 +0 0.0403 +0 0.6290 +0 0.0704 +0 0.0700 +0 0.1031 +0 0.0615 +0 0.0722 +0 0.1772 +0 0.1082 +0 0.0417 +0 0.0681 +0 0.0679 +0 0.2734 +0 0.1412 +1 0.8793 +0 0.1089 +0 0.0643 +0 0.1423 +0 0.1087 +0 0.0653 +0 0.1980 +0 0.1112 +0 0.0984 +0 0.0709 +0 0.0898 +0 0.1014 +0 0.1779 +0 0.0511 +1 0.7968 +0 0.1112 +0 0.0663 +0 0.1587 +0 0.0663 +0 0.1991 +0 0.1782 +0 0.1462 +0 0.2038 +0 0.0755 +0 0.1577 +0 0.0726 +0 0.1295 +0 0.2283 +0 0.0987 +0 0.7317 +0 0.1458 +0 0.0870 +0 0.0620 +0 0.3995 +0 0.1697 +0 0.1287 +0 0.0872 +0 0.3251 +0 0.1810 +0 0.0527 +0 0.0362 +0 0.1341 +0 0.1945 +1 0.7908 +0 0.1293 +0 0.1178 +0 0.0673 +0 0.1370 +0 0.0619 +0 0.0795 +0 0.0714 +0 0.1551 +0 0.0902 +0 0.0726 +0 0.1050 +0 0.0859 +0 0.0878 +0 0.0894 +0 0.6614 +0 0.6658 +0 0.1714 +0 0.0347 +0 0.1541 +1 0.7926 +0 0.3566 +0 0.0651 +0 0.6288 +0 0.1008 +0 0.0740 +0 0.0947 +0 0.3160 +0 0.1738 +0 0.1099 +0 0.0735 +0 0.1214 +0 0.0499 +0 0.2179 +0 0.4834 +0 0.0395 +0 0.1024 +0 0.0962 +0 0.2287 +0 0.1610 +0 0.1066 +0 0.0884 +0 0.0612 +0 0.1329 +0 0.0804 +0 0.1830 +0 0.0603 +0 0.0788 +0 0.3608 +0 0.1257 +0 0.1121 +0 0.0643 +0 0.0841 +0 0.1204 +0 0.1034 +0 0.0684 +0 0.0818 +0 0.1209 +0 0.0526 +0 0.1675 +0 0.4411 +0 0.1669 +0 0.0969 +0 0.1472 +0 0.1930 +0 0.1216 +0 0.0688 +0 0.0712 +0 0.1499 +0 0.1340 +0 0.1156 +0 0.1580 +0 0.0434 +0 0.0899 +0 0.1818 +0 0.0817 +0 0.0778 +0 0.0886 +0 0.2665 +0 0.1496 +0 0.1326 +0 0.1008 +0 0.1553 +0 0.1212 +0 0.0817 +0 0.1714 +0 0.0509 +0 0.0473 +0 0.0353 +0 0.0975 +0 0.1011 +0 0.0679 +0 0.1321 +0 0.0893 +0 0.0871 +0 0.1147 +0 0.1139 +0 0.0921 +0 0.1327 +0 0.0787 +0 0.0797 +0 0.1050 +1 0.8252 +0 0.1366 +0 0.1951 +0 0.1030 +0 0.1032 +0 0.0873 +0 0.0606 +0 0.2067 +0 0.1747 +0 0.0752 +0 0.0682 +0 0.0445 +0 0.1729 +0 0.1036 +0 0.0566 +0 0.2296 +1 0.7778 +0 0.1077 +0 0.1166 +0 0.0588 +0 0.1170 +0 0.1098 +0 0.0691 +0 0.2765 +0 0.0684 +0 0.1698 +0 0.1167 +0 0.1015 +0 0.0825 +0 0.1289 +0 0.6914 +0 0.3069 +0 0.2188 +0 0.3918 +0 0.0496 +0 0.2152 +0 0.0700 +0 0.1292 +0 0.0490 +0 0.1194 +0 0.4321 +0 0.1087 +0 0.0557 +0 0.0975 +0 0.0994 +0 0.0931 +0 0.0673 +0 0.1000 +0 0.1425 +0 0.0650 +0 0.0843 +0 0.1446 +1 0.8292 +0 0.0723 +0 0.0934 +0 0.2260 +0 0.2432 +0 0.1283 +0 0.0819 +0 0.7086 +0 0.0603 +0 0.0801 +0 0.2873 +0 0.1171 +0 0.0578 +0 0.1231 +0 0.1031 +0 0.0679 +0 0.1209 +0 0.0537 +0 0.2704 +0 0.1325 +0 0.1586 +0 0.0807 +0 0.0354 +0 0.1009 +0 0.1551 +0 0.0973 +1 0.8025 +0 0.0639 +0 0.1258 +0 0.4110 +0 0.1871 +0 0.2423 +0 0.1134 +0 0.3119 +0 0.1201 +0 0.1097 +0 0.0720 +0 0.0597 +0 0.3443 +0 0.0661 +0 0.1471 +0 0.0471 +0 0.1004 +0 0.1035 +0 0.1357 +0 0.0434 +0 0.3012 +0 0.0530 +0 0.2855 +0 0.1886 +0 0.3927 +0 0.1370 +0 0.2274 +0 0.0888 +0 0.0426 +0 0.0434 +0 0.2106 +0 0.0684 +0 0.0690 +0 0.0593 +0 0.0986 +0 0.1045 +0 0.6662 +0 0.1053 +0 0.0737 +0 0.4352 +0 0.0733 +0 0.0767 +1 0.7880 +0 0.1112 +0 0.0876 +0 0.6242 +0 0.3670 +0 0.0528 +0 0.3154 +0 0.1797 +0 0.0792 +1 0.8876 +0 0.0661 +0 0.2838 +0 0.0795 +0 0.1397 +0 0.0727 +0 0.1517 +0 0.1622 +0 0.0884 +0 0.2068 +0 0.1944 +0 0.0825 +0 0.1269 +0 0.1218 +0 0.0991 +0 0.2058 +0 0.1411 +0 0.1201 +0 0.0817 +0 0.0790 +0 0.0939 +0 0.1864 +0 0.3051 +0 0.1185 +0 0.0976 +0 0.0691 +0 0.0743 +0 0.1095 +0 0.0426 +0 0.0906 +0 0.1008 +0 0.0800 +0 0.1024 +0 0.2743 +0 0.0981 +0 0.1358 +0 0.0717 +0 0.4302 +0 0.1139 +0 0.1735 +0 0.0714 +1 0.7872 +0 0.0291 +0 0.0789 +0 0.1034 +0 0.2427 +0 0.1268 +0 0.1118 +0 0.3402 +0 0.1947 +0 0.0737 +0 0.1725 +0 0.3256 +0 0.0513 +0 0.0819 +0 0.0701 +0 0.0820 +0 0.1401 +0 0.0814 +0 0.1438 +0 0.0686 +0 0.2262 +0 0.1128 +0 0.0596 +0 0.1519 +0 0.1002 +0 0.1519 +0 0.1004 +0 0.1332 +0 0.0826 +0 0.5521 +0 0.0681 +0 0.3717 +0 0.2344 +0 0.1279 +0 0.1193 +0 0.0769 +0 0.0911 +0 0.2609 +0 0.0851 +0 0.0606 +0 0.3258 +0 0.0583 +0 0.1465 +0 0.1370 +0 0.0644 +0 0.1766 +0 0.0602 +0 0.1264 +0 0.3087 +0 0.4247 +0 0.1126 +0 0.1829 +0 0.1243 +0 0.1460 +0 0.0628 +0 0.0983 +0 0.1889 +0 0.1363 +0 0.1327 +0 0.1307 +0 0.0894 +0 0.1935 +0 0.0474 +0 0.0884 +0 0.0321 +0 0.1070 +0 0.1036 +0 0.1996 +0 0.0595 +0 0.0571 +0 0.0903 +0 0.0681 +0 0.2902 +0 0.3510 +0 0.0765 +0 0.0952 +0 0.2632 +0 0.0572 +0 0.1500 +0 0.1048 +0 0.0907 +0 0.0965 +0 0.0978 +0 0.1941 +0 0.0589 +0 0.3548 +0 0.1814 +0 0.0558 +0 0.0428 +0 0.2501 +0 0.0543 +0 0.1332 +0 0.0998 +0 0.0762 +0 0.0906 +0 0.1061 +0 0.2365 +0 0.2039 +0 0.2400 +0 0.1638 +0 0.0977 +0 0.1010 +0 0.5855 +0 0.0730 +0 0.2187 +0 0.0818 +0 0.0697 +0 0.2069 +0 0.1566 +0 0.1358 +0 0.0820 +0 0.1607 +0 0.0415 +0 0.1630 +0 0.0388 +0 0.1063 +0 0.3185 +1 0.7861 +0 0.0731 +0 0.0876 +0 0.3399 +0 0.1466 +0 0.1140 +0 0.0950 +0 0.0770 +0 0.0658 +0 0.1225 +0 0.4698 +0 0.0980 +0 0.3674 +0 0.1037 +0 0.0712 +0 0.1287 +0 0.0433 +0 0.1127 +0 0.1411 +0 0.0421 +0 0.0604 +0 0.2114 +0 0.0515 +0 0.0847 +0 0.1245 +0 0.2550 +0 0.1406 +0 0.2163 +0 0.1091 +0 0.0597 +0 0.0919 +0 0.1106 +0 0.2775 +0 0.0981 +0 0.1409 +0 0.0570 +0 0.7070 +0 0.1231 +0 0.0660 +0 0.2725 +0 0.2683 +0 0.2798 +0 0.2031 +0 0.2017 +0 0.0702 +0 0.4102 +0 0.1141 +0 0.1288 +0 0.5203 +0 0.0850 +0 0.0743 +0 0.1026 +0 0.0451 +0 0.1107 +0 0.1263 +0 0.2924 +0 0.0803 +1 0.8406 +0 0.1026 +0 0.6746 +0 0.0586 +0 0.3360 +0 0.0893 +0 0.0919 +0 0.0947 +0 0.0945 +0 0.4502 +0 0.0574 +0 0.4671 +0 0.0557 +0 0.1033 +0 0.1423 +0 0.0891 +0 0.1356 +0 0.1683 +0 0.1276 +0 0.0696 +0 0.0767 +0 0.1093 +0 0.1266 +0 0.1881 +0 0.0910 +0 0.1108 +0 0.0814 +0 0.0540 +0 0.0512 +0 0.1438 +0 0.0763 +0 0.2697 +0 0.0721 +0 0.0774 +0 0.1034 +0 0.2417 +0 0.0709 +0 0.1114 +0 0.1866 +0 0.1051 +0 0.2017 +0 0.1249 +0 0.0687 +0 0.0362 +0 0.0566 +0 0.0638 +0 0.0732 +0 0.0462 +0 0.0549 +0 0.0709 +0 0.0894 +0 0.0862 +0 0.0473 +0 0.1403 +0 0.2887 +0 0.0633 +0 0.1013 +0 0.1070 +0 0.0620 +0 0.2464 +0 0.1216 +0 0.3436 +0 0.1079 +1 0.7670 +0 0.1195 +0 0.1868 +0 0.1137 +0 0.0973 +0 0.0911 +0 0.0733 +0 0.0903 +1 0.8592 +0 0.0736 +0 0.2440 +0 0.1115 +0 0.2493 +1 0.8648 +0 0.3514 +0 0.0797 +0 0.1710 +0 0.0861 +0 0.0955 +0 0.1959 +0 0.0924 +0 0.1965 +0 0.0577 +0 0.2254 +0 0.0577 +0 0.0676 +0 0.0452 +0 0.1037 +0 0.0958 +0 0.0995 +0 0.2110 +0 0.0974 +1 0.8406 +0 0.0453 +0 0.0964 +0 0.2351 +0 0.1294 +0 0.0606 +0 0.0613 +0 0.0604 +0 0.0546 +0 0.0573 +0 0.0801 +0 0.2087 +0 0.1114 +0 0.1325 +0 0.0505 +0 0.1518 +0 0.2847 +0 0.1877 +0 0.0705 +0 0.1642 +0 0.1480 +0 0.0774 +0 0.0951 +0 0.0554 +0 0.0718 +0 0.0507 +0 0.0513 +0 0.1432 +0 0.0450 +0 0.0511 +0 0.1669 +0 0.0598 +0 0.5313 +0 0.2448 +0 0.1512 +0 0.0888 +0 0.0758 +0 0.0499 +0 0.1472 +0 0.0953 +0 0.0995 +0 0.0638 +0 0.0967 +0 0.0846 +0 0.0784 +0 0.1105 +0 0.2979 +0 0.0801 +0 0.0736 +0 0.2066 +0 0.1357 +0 0.0544 +0 0.0571 +0 0.1222 +0 0.0619 +0 0.1206 +0 0.0963 +0 0.3572 +0 0.0762 +0 0.0593 +0 0.1736 +0 0.0697 +0 0.0953 +0 0.0612 +0 0.0494 +0 0.0620 +0 0.0309 +0 0.3242 +0 0.1474 +0 0.1999 +0 0.1328 +0 0.2520 +0 0.1294 +1 0.7740 +0 0.1281 +0 0.0566 +0 0.4762 +0 0.0449 +0 0.1061 +0 0.0451 +0 0.2168 +0 0.2488 +0 0.0694 +0 0.0495 +0 0.0569 +0 0.0928 +0 0.0628 +0 0.0700 +0 0.0490 +0 0.1222 +0 0.0629 +0 0.0483 +0 0.1387 +0 0.0956 +0 0.0821 +0 0.0997 +0 0.0704 +0 0.0593 +0 0.1010 +0 0.0886 +0 0.0477 +0 0.0564 +0 0.0625 +0 0.0460 +0 0.0495 +0 0.0680 +0 0.1054 +0 0.2463 +0 0.1060 +0 0.0992 +0 0.2161 +0 0.1404 +0 0.1179 +0 0.1294 +0 0.0470 +0 0.7489 +0 0.0745 +0 0.0982 +1 0.8420 +0 0.0505 +0 0.0866 +0 0.2278 +0 0.0911 +0 0.3725 +0 0.0684 +0 0.0710 +0 0.0784 +0 0.1287 +0 0.1241 +0 0.0980 +0 0.0964 +0 0.0564 +0 0.0930 +0 0.1467 +0 0.2713 +0 0.0318 +0 0.0969 +0 0.1327 +0 0.3172 +0 0.1552 +0 0.0497 +0 0.1752 +0 0.1396 +0 0.0582 +0 0.4740 +0 0.1386 +0 0.0728 +0 0.0776 +0 0.0619 +0 0.1081 +0 0.1383 +1 0.4651 +0 0.0904 +0 0.1082 +0 0.0819 +0 0.1192 +0 0.0984 +0 0.1085 +0 0.0624 +0 0.3773 +0 0.0878 +0 0.1473 +0 0.0978 +0 0.2039 +0 0.1183 +0 0.0949 +0 0.1840 +0 0.1205 +0 0.0923 +0 0.1236 +1 0.7923 +0 0.0593 +0 0.0513 +0 0.0753 +0 0.0959 +0 0.0431 +0 0.2519 +0 0.5255 +0 0.1417 +1 0.7753 +0 0.0896 +0 0.1931 +0 0.0873 +0 0.0480 +0 0.1057 +0 0.1305 +0 0.1775 +0 0.5609 +0 0.0651 +0 0.5575 +0 0.1351 +0 0.0561 +0 0.1287 +0 0.4441 +0 0.0911 +0 0.6962 +0 0.4086 +0 0.0622 +0 0.1310 +0 0.1955 +0 0.0854 +0 0.0669 +0 0.2033 +0 0.1539 +0 0.2586 +0 0.2085 +0 0.1263 +0 0.1652 +0 0.0491 +0 0.1802 +0 0.2575 +0 0.1154 +0 0.1439 +0 0.0719 +0 0.1916 +0 0.2825 +0 0.0874 +0 0.0687 +0 0.0672 +0 0.0692 +0 0.0836 +1 0.8265 +0 0.1063 +0 0.0752 +0 0.1825 +0 0.0794 +0 0.0741 +0 0.1149 +0 0.0624 +0 0.1568 +0 0.0983 +0 0.1106 +1 0.8206 +0 0.1266 +0 0.1294 +0 0.1656 +0 0.0657 +0 0.3362 +0 0.0845 +0 0.0661 +0 0.0932 +0 0.1160 +0 0.1792 +0 0.2228 +0 0.1079 +0 0.0554 +0 0.1180 +0 0.0962 +0 0.0812 +0 0.0537 +0 0.1448 +0 0.2260 +0 0.1576 +0 0.0656 +0 0.2265 +0 0.4554 +0 0.0809 +0 0.0882 +0 0.0616 +0 0.0585 +0 0.0914 +0 0.4623 +0 0.0976 +0 0.0998 +0 0.0453 +0 0.1225 +0 0.3241 +0 0.0510 +0 0.0901 +0 0.1078 +0 0.1930 +0 0.1100 +0 0.0858 +1 0.7927 +0 0.0655 +0 0.0639 +0 0.1422 +0 0.0590 +0 0.0791 +0 0.2408 +0 0.0447 +0 0.3292 +0 0.0479 +0 0.2998 +0 0.1069 +0 0.0998 +0 0.1389 +0 0.1060 +0 0.1528 +0 0.0492 +0 0.1330 +0 0.0504 +0 0.0535 +0 0.0573 +0 0.4426 +0 0.4372 +0 0.1018 +0 0.0471 +0 0.0506 +0 0.2044 +0 0.0857 +0 0.0703 +0 0.0452 +0 0.1148 +0 0.2870 +0 0.0735 +0 0.0793 +0 0.0624 +0 0.0708 +0 0.0690 +0 0.0514 +0 0.1459 +0 0.0972 +0 0.0495 +0 0.1050 +0 0.1465 +0 0.0619 +0 0.0649 +0 0.0750 +0 0.1118 +0 0.0790 +0 0.2409 +0 0.1651 +0 0.1089 +0 0.0771 +0 0.1136 +0 0.0415 +0 0.1185 +0 0.1720 +0 0.2221 +0 0.0596 +0 0.2657 +0 0.1082 +0 0.0530 +0 0.1197 +0 0.1879 +0 0.0851 +0 0.0933 +0 0.1128 +0 0.2308 +0 0.0901 +0 0.2517 +0 0.1420 +0 0.0988 +0 0.1512 +0 0.0531 +0 0.1715 +0 0.1494 +0 0.2109 +0 0.2406 +0 0.0646 +0 0.0544 +0 0.1901 +0 0.0902 +0 0.1743 +0 0.1008 +0 0.1650 +0 0.2518 +0 0.1799 +0 0.2708 +0 0.0537 +0 0.1498 +0 0.0912 +0 0.0883 +0 0.0503 +0 0.1100 +0 0.0622 +0 0.0546 +0 0.0687 +0 0.1153 +0 0.2051 +0 0.4121 +0 0.1625 +0 0.0830 +0 0.0989 +0 0.6512 +0 0.0763 +0 0.2280 +0 0.0946 +0 0.0880 +0 0.0948 +0 0.1189 +0 0.0637 +0 0.0746 +0 0.0695 +0 0.0379 +0 0.2063 +0 0.0674 +0 0.0562 +0 0.0983 +0 0.0810 +0 0.5975 +0 0.0956 +0 0.0579 +0 0.1282 +0 0.0868 +0 0.0755 +0 0.0463 +0 0.0904 +0 0.0981 +0 0.1530 +0 0.0777 +0 0.1212 +0 0.2228 +0 0.1182 +0 0.2500 +0 0.1298 +0 0.0479 +0 0.1243 +0 0.0697 +0 0.1073 +0 0.3146 +0 0.1201 +0 0.0556 +0 0.2195 +0 0.0312 +0 0.1229 +0 0.0573 +0 0.1099 +0 0.0619 +0 0.0814 +0 0.1442 +0 0.0662 +0 0.0720 +0 0.1634 +0 0.1103 +0 0.2033 +0 0.0748 +0 0.1479 +0 0.2630 +0 0.1026 +0 0.0663 +0 0.1411 +0 0.1748 +0 0.5971 +0 0.1792 +0 0.1112 +0 0.3790 +0 0.0641 +0 0.2521 +0 0.1271 +0 0.0756 +0 0.1834 +0 0.0553 +0 0.1030 +0 0.2123 +0 0.1361 +0 0.0944 +0 0.0295 +0 0.2520 +0 0.0950 +0 0.0452 +0 0.3215 +0 0.1149 +0 0.1955 +0 0.1841 +0 0.3622 +0 0.2062 +0 0.5589 +0 0.1498 +0 0.2427 +0 0.1358 +0 0.0594 +0 0.1270 +0 0.0931 +0 0.0727 +0 0.2072 +0 0.0564 +0 0.1006 +0 0.0969 +0 0.1094 +0 0.0509 +0 0.0740 +0 0.0581 +0 0.1748 +0 0.0952 +0 0.0522 +0 0.0986 +0 0.0976 +0 0.0710 +0 0.1459 +0 0.1180 +0 0.0568 +0 0.0421 +0 0.0723 +0 0.1481 +0 0.1078 +0 0.0541 +0 0.3524 +0 0.1250 +0 0.1097 +0 0.0709 +0 0.0741 +0 0.3059 +0 0.0955 +0 0.0442 +0 0.0947 +0 0.0607 +0 0.0690 +0 0.0481 +0 0.0876 +0 0.1110 +0 0.0986 +0 0.0501 +0 0.1170 +0 0.0762 +0 0.0958 +0 0.0908 +0 0.0435 +0 0.0519 +0 0.1132 +0 0.0893 +0 0.0588 +0 0.0632 +0 0.2909 +0 0.0870 +0 0.1082 +0 0.0509 +0 0.1680 +0 0.1242 +0 0.2871 +0 0.1004 +0 0.0328 +0 0.1109 +0 0.1156 +0 0.1997 +0 0.2079 +1 0.8454 +0 0.0738 +0 0.0713 +0 0.1117 +0 0.0732 +1 0.8395 +0 0.1016 +0 0.2195 +0 0.1522 +0 0.0712 +0 0.0528 +0 0.0869 +0 0.1381 +0 0.1829 +0 0.0593 +0 0.1892 +0 0.0591 +0 0.1582 +0 0.1018 +1 0.8424 +0 0.1531 +0 0.0667 +0 0.0591 +0 0.0651 +0 0.1016 +0 0.1023 +0 0.0928 +0 0.2223 +0 0.1066 +0 0.0753 +0 0.1006 +0 0.0793 +0 0.0879 +0 0.0407 +0 0.2756 +0 0.1579 +0 0.0596 +0 0.0488 +0 0.0729 +0 0.4143 +0 0.0924 +0 0.2461 +0 0.0828 +0 0.2883 +0 0.1450 +0 0.4142 +0 0.2675 +0 0.4898 +0 0.1664 +0 0.0433 +0 0.0825 +0 0.4829 +0 0.1381 +0 0.1278 +0 0.0612 +0 0.0955 +0 0.0445 +0 0.1127 +0 0.1201 +0 0.0521 +0 0.0698 +0 0.0572 +0 0.0817 +0 0.4275 +0 0.0818 +0 0.1495 +0 0.1366 +0 0.0440 +0 0.0932 +0 0.0995 +0 0.0975 +0 0.1127 +0 0.0803 +0 0.1248 +0 0.0657 +0 0.0633 +0 0.0426 +0 0.1141 +0 0.2524 +0 0.1029 +0 0.5049 +0 0.1146 +0 0.1056 +0 0.0823 +0 0.1878 +0 0.0679 +0 0.1015 +0 0.1457 +0 0.0609 +0 0.0714 +0 0.0626 +0 0.1478 +0 0.2941 +0 0.1765 +0 0.0720 +0 0.0488 +0 0.0399 +0 0.1130 +0 0.1502 +0 0.1782 +0 0.0419 +0 0.2013 +0 0.1660 +0 0.0872 +0 0.0814 +0 0.1129 +0 0.6518 +0 0.0938 +0 0.1200 +0 0.1108 +0 0.2222 +0 0.0635 +0 0.4486 +0 0.1295 +0 0.0829 +0 0.0428 +0 0.1128 +0 0.0602 +0 0.0949 +0 0.1114 +0 0.0725 +0 0.0618 +0 0.1050 +0 0.1436 +0 0.0900 +0 0.0405 +0 0.1052 +0 0.0606 +0 0.1008 +0 0.0805 +0 0.0909 +0 0.0968 +0 0.0471 +0 0.0336 +0 0.0555 +0 0.0907 +0 0.0699 +0 0.1183 +0 0.0558 +0 0.1548 +0 0.0867 +0 0.1572 +0 0.1384 +0 0.1052 +0 0.1310 +0 0.1805 +0 0.2676 +0 0.1019 +0 0.1844 +0 0.1786 +0 0.0775 +0 0.0370 +0 0.2795 +0 0.1020 +0 0.1881 +0 0.0676 +0 0.0605 +0 0.0667 +0 0.2244 +0 0.1244 +0 0.1101 +0 0.0780 +0 0.1279 +0 0.1678 +0 0.0866 +0 0.1948 +0 0.1311 +0 0.1343 +0 0.0660 +0 0.0717 +0 0.0434 +0 0.0881 +0 0.2089 +0 0.2172 +0 0.1652 +0 0.0902 +0 0.2180 +0 0.0556 +0 0.1700 +0 0.1299 +0 0.3807 +0 0.0491 +0 0.1597 +0 0.1025 +0 0.1472 +0 0.1197 +0 0.1022 +0 0.1649 +0 0.1386 +0 0.1254 +0 0.0953 +0 0.0588 +0 0.1934 +0 0.0876 +0 0.1152 +0 0.3387 +0 0.0370 +0 0.1085 +0 0.1340 +0 0.0914 +0 0.1419 +0 0.0775 +1 0.7551 +0 0.0885 +0 0.0596 +0 0.0776 +0 0.0852 +0 0.1762 +0 0.2082 +0 0.0897 +0 0.0493 +0 0.5953 +0 0.2405 +0 0.0371 +0 0.4317 +0 0.5661 +0 0.0613 +0 0.1642 +0 0.0401 +0 0.1487 +0 0.0986 +0 0.0550 +0 0.0522 +0 0.2209 +0 0.0757 +0 0.1045 +0 0.1643 +0 0.1963 +0 0.0896 +0 0.0891 +0 0.0469 +0 0.1268 +0 0.0988 +0 0.1667 +0 0.0775 +0 0.1552 +0 0.1174 +0 0.0944 +0 0.1789 +0 0.0445 +0 0.0947 +0 0.1387 +0 0.1556 +0 0.2255 +0 0.1666 +1 0.8248 +0 0.3769 +0 0.2918 +0 0.1352 +0 0.1033 +0 0.0846 +0 0.0799 +0 0.1158 +0 0.2092 +0 0.1594 +0 0.2797 +0 0.2487 +0 0.1252 +0 0.1062 +0 0.0699 +0 0.1531 +0 0.3682 +0 0.2897 +0 0.1366 +0 0.1345 +0 0.0727 +0 0.1345 +0 0.1785 +0 0.1116 +0 0.1110 +0 0.1990 +0 0.7380 +0 0.2239 +0 0.0818 +0 0.0852 +0 0.0556 +0 0.1160 +0 0.0820 +0 0.2521 +0 0.0944 +0 0.2357 +0 0.0870 +0 0.0861 +0 0.0424 +0 0.2137 +0 0.2906 +0 0.0604 +0 0.1693 +0 0.0553 +0 0.2524 +0 0.0653 +0 0.1051 +0 0.0762 +0 0.0862 +0 0.2819 +0 0.5650 +0 0.0528 +0 0.0804 +0 0.0427 +0 0.1400 +0 0.3913 +0 0.0767 +0 0.3637 +0 0.0908 +0 0.2937 +1 0.7737 +0 0.0837 +0 0.1560 +0 0.0885 +0 0.1476 +0 0.1518 +0 0.0715 +0 0.0498 +0 0.0888 +0 0.0584 +0 0.2001 +0 0.1085 +0 0.0824 +0 0.0427 +0 0.0687 +0 0.1286 +0 0.0619 +0 0.2572 +0 0.2239 +0 0.0859 +0 0.1362 +0 0.1931 +0 0.0516 +0 0.0611 +0 0.1873 +0 0.1590 +0 0.0965 +0 0.1479 +0 0.2461 +0 0.1905 +0 0.3131 +0 0.1637 +0 0.1719 +0 0.1539 +0 0.1099 +0 0.1116 +0 0.0599 +0 0.1761 +0 0.3204 +0 0.1036 +0 0.1742 +0 0.1520 +0 0.0411 +0 0.1905 +0 0.7186 +0 0.0839 +0 0.1369 +0 0.0720 +0 0.0950 +0 0.1166 +0 0.1073 +0 0.0713 +0 0.0528 +0 0.2124 +0 0.0522 +0 0.5320 +0 0.1672 +0 0.4714 +0 0.1030 +0 0.0808 +0 0.1600 +0 0.1026 +0 0.0972 +0 0.1528 +0 0.1289 +0 0.2826 +0 0.0842 +0 0.0926 +0 0.1505 +0 0.0559 +0 0.1109 +0 0.0418 +0 0.0838 +0 0.0577 +0 0.0616 +0 0.2233 +0 0.1032 +0 0.0910 +0 0.1984 +0 0.1387 +0 0.0959 +0 0.1569 +0 0.0702 +0 0.0832 +0 0.1003 +0 0.0575 +0 0.2570 +0 0.0826 +0 0.0864 +0 0.1206 +1 0.7652 +0 0.1235 +0 0.1584 +0 0.2941 +0 0.1724 +1 0.7751 +0 0.0513 +0 0.1758 +0 0.1472 +0 0.0785 +0 0.1042 +0 0.1382 +0 0.1039 +0 0.1905 +0 0.2028 +0 0.0908 +0 0.0801 +0 0.0850 +0 0.1073 +0 0.1354 +0 0.0358 +0 0.4200 +0 0.0899 +0 0.0774 +0 0.0372 +0 0.2985 +0 0.3148 +0 0.3843 +0 0.0829 +1 0.8640 +0 0.1039 +0 0.1138 +0 0.0429 +0 0.4733 +0 0.0985 +0 0.0896 +0 0.1972 +0 0.3562 +0 0.0772 +0 0.0529 +0 0.1666 +0 0.2058 +0 0.0557 +0 0.3425 +0 0.0583 +0 0.1201 +0 0.2076 +0 0.1086 +0 0.0948 +0 0.1636 +0 0.1150 +0 0.0558 +0 0.1529 +1 0.8456 +0 0.0910 +0 0.0727 +0 0.1076 +0 0.2081 +0 0.0884 +0 0.0780 +0 0.2721 +0 0.0739 +0 0.0459 +0 0.0809 +0 0.0528 +0 0.0555 +0 0.0527 +0 0.1049 +0 0.0588 +0 0.0717 +0 0.1121 +0 0.0691 +0 0.0773 +0 0.1611 +0 0.0679 +0 0.1029 +0 0.1931 +0 0.1168 +0 0.1151 +0 0.1136 +0 0.2955 +0 0.0657 +0 0.1293 +0 0.1347 +0 0.1468 +0 0.1030 +0 0.0614 +0 0.0353 +0 0.2877 +0 0.0270 +0 0.0555 +0 0.1010 +0 0.3400 +0 0.1237 +0 0.0964 +0 0.0635 +0 0.4414 +0 0.0731 +0 0.1361 +0 0.0364 +0 0.0694 +0 0.0761 +0 0.0812 +0 0.1143 +0 0.0889 +0 0.0308 +0 0.1270 +0 0.3763 +0 0.1128 +0 0.3082 +0 0.2050 +0 0.1607 +0 0.0834 +0 0.7123 +0 0.0767 +0 0.1580 +0 0.0754 +0 0.0849 +0 0.0929 +0 0.0650 +0 0.1770 +0 0.2445 +0 0.1224 +0 0.1353 +0 0.1896 +0 0.1116 +0 0.2149 +0 0.1021 +0 0.1105 +0 0.1536 +0 0.1798 +0 0.3645 +0 0.0899 +0 0.1434 +0 0.0726 +0 0.2443 +0 0.0429 +0 0.4945 +0 0.0871 +0 0.1437 +0 0.1165 +0 0.1815 +0 0.1896 +0 0.0696 +0 0.1588 +0 0.2194 +0 0.1035 +0 0.2573 +0 0.7288 +0 0.1384 +0 0.0697 +0 0.1777 +0 0.0538 +0 0.0800 +0 0.0426 +0 0.0476 +0 0.5255 +0 0.2236 +0 0.3880 +0 0.6567 +0 0.0862 +0 0.1161 +0 0.1439 +0 0.0547 +0 0.2692 +0 0.0833 +0 0.0599 +0 0.0715 +1 0.7650 +0 0.0768 +0 0.1096 +0 0.1022 +0 0.0843 +0 0.0713 +0 0.3770 +0 0.1002 +0 0.1540 +0 0.1891 +0 0.1657 +0 0.1973 +0 0.1858 +0 0.1245 +0 0.0808 +0 0.0858 +0 0.1106 +0 0.0701 +0 0.0681 +0 0.1825 +0 0.0385 +0 0.0414 +0 0.0765 +0 0.0374 +0 0.1183 +0 0.1074 +0 0.1746 +0 0.0871 +0 0.5410 +0 0.0694 +0 0.1136 +0 0.0906 +0 0.1332 +0 0.1380 +0 0.1210 +0 0.0470 +0 0.0832 +0 0.6858 +0 0.2490 +0 0.1773 +0 0.1027 +0 0.0810 +0 0.0883 +0 0.0543 +0 0.1375 +0 0.1167 +0 0.2536 +0 0.1173 +0 0.1596 +0 0.0434 +0 0.1332 +0 0.2213 +0 0.1318 +0 0.1072 +0 0.0883 +0 0.0434 +0 0.0902 +0 0.0927 +0 0.1648 +1 0.7924 +0 0.1199 +0 0.1118 +0 0.2811 +0 0.1097 +0 0.2248 +0 0.1138 +0 0.1411 +0 0.6060 +0 0.1264 +0 0.1236 +0 0.1187 +0 0.1224 +0 0.1414 +0 0.3388 +0 0.1229 +0 0.1764 +0 0.0308 +0 0.0788 +0 0.0630 +0 0.2259 +0 0.1041 +0 0.1389 +0 0.0805 +0 0.0299 +0 0.5783 +0 0.2729 +0 0.2050 +0 0.0890 +0 0.0716 +0 0.0715 +0 0.0791 +0 0.0642 +0 0.0806 +0 0.2432 +0 0.0852 +0 0.4092 +0 0.3767 +0 0.3711 +1 0.8593 +0 0.0529 +0 0.0744 +0 0.1045 +0 0.0884 +0 0.1045 +0 0.1758 +0 0.0845 +0 0.2784 +0 0.0858 +0 0.0845 +0 0.2005 +0 0.0761 +0 0.2586 +0 0.4086 +0 0.0710 +0 0.0948 +0 0.2235 +0 0.5490 +0 0.0450 +0 0.1003 +0 0.2381 +0 0.0597 +0 0.0519 +0 0.1133 +0 0.1425 +0 0.1472 +0 0.1466 +0 0.1026 +0 0.1469 +0 0.0889 +0 0.1185 +0 0.3065 +0 0.0735 +0 0.0941 +0 0.0864 +0 0.2335 +0 0.1314 +0 0.1101 +0 0.0538 +0 0.1434 +0 0.0683 +0 0.1392 +1 0.7920 +1 0.7793 +0 0.0537 +0 0.0743 +0 0.0677 +0 0.3168 +0 0.1164 +0 0.0856 +0 0.1444 +0 0.3959 +0 0.1037 +0 0.1005 +0 0.1689 +0 0.2434 +0 0.1048 +0 0.0751 +0 0.2445 +0 0.1054 +0 0.0401 +0 0.1129 +0 0.1701 +0 0.0929 +0 0.0953 +0 0.0888 +0 0.2619 +0 0.1286 +0 0.1883 +0 0.1922 +0 0.0747 +0 0.2675 +0 0.0673 +0 0.0889 +0 0.0655 +0 0.6589 +0 0.1186 +0 0.1391 +0 0.0674 +0 0.1721 +0 0.0403 +0 0.3075 +0 0.0741 +0 0.0632 +0 0.0792 +0 0.7290 +0 0.0825 +0 0.0709 +0 0.0821 +0 0.1003 +0 0.0670 +0 0.1505 +0 0.1704 +0 0.0783 +0 0.0514 +0 0.0467 +0 0.0892 +0 0.0967 +0 0.1172 +0 0.0601 +0 0.1568 +0 0.1084 +0 0.0683 +0 0.2092 +0 0.0658 +0 0.1615 +0 0.0897 +0 0.1586 +0 0.1252 +0 0.0955 +0 0.0380 +0 0.2571 +0 0.0890 +0 0.0824 +0 0.0759 +0 0.1300 +0 0.0450 +0 0.1116 +0 0.0955 +0 0.3455 +0 0.2494 +0 0.0747 +0 0.1914 +0 0.3539 +0 0.2392 +0 0.1024 +0 0.1363 +0 0.6413 +0 0.0497 +0 0.2017 +1 0.8086 +0 0.0926 +0 0.1208 +0 0.2786 +0 0.3116 +0 0.5837 +0 0.0879 +0 0.0544 +0 0.1370 +0 0.1620 +0 0.1273 +0 0.1209 +0 0.2665 +0 0.1236 +0 0.1349 +0 0.1464 +0 0.0979 +0 0.0570 +0 0.0672 +0 0.1169 +0 0.6500 +0 0.1514 +0 0.0948 +0 0.1970 +0 0.0742 +0 0.1828 +0 0.1435 +0 0.2652 +0 0.0992 +0 0.0683 +0 0.2718 +0 0.0770 +0 0.0513 +0 0.1673 +0 0.2236 +0 0.0698 +0 0.1186 +0 0.0750 +0 0.0991 +0 0.0830 +0 0.0567 +0 0.1319 +0 0.0844 +0 0.1568 +0 0.1439 +0 0.4873 +0 0.0595 +0 0.0467 +0 0.0858 +0 0.0813 +0 0.0977 +0 0.1022 +0 0.0801 +0 0.0562 +0 0.0548 +0 0.0428 +0 0.1187 +0 0.1528 +0 0.1542 +0 0.0835 +0 0.2267 +0 0.0675 +0 0.1481 +0 0.0841 +0 0.0539 +0 0.1031 +0 0.2217 +0 0.0600 +0 0.2720 +0 0.0684 +0 0.4173 +0 0.0688 +0 0.4367 +0 0.2149 +0 0.0662 +0 0.0976 +0 0.2897 +0 0.1941 +0 0.0948 +0 0.1600 +0 0.2221 +0 0.0576 +0 0.0898 +0 0.0856 +0 0.1122 +0 0.1713 +0 0.1427 +0 0.1333 +0 0.2513 +0 0.3020 +0 0.6124 +0 0.1285 +0 0.1555 +0 0.1427 +0 0.1291 +0 0.1702 +0 0.0563 +0 0.1209 +0 0.1400 +0 0.0714 +0 0.0828 +0 0.1603 +0 0.0652 +0 0.2586 +0 0.1760 +0 0.4101 +0 0.0471 +0 0.0535 +0 0.1028 +0 0.2080 +0 0.1186 +0 0.2376 +0 0.3353 +0 0.0595 +0 0.0489 +0 0.2096 +0 0.1470 +0 0.7036 +0 0.1118 +0 0.1124 +1 0.7949 +0 0.1113 +0 0.1134 +0 0.3998 +0 0.1138 +0 0.0465 +0 0.6440 +0 0.0588 +0 0.2527 +0 0.0713 +0 0.1482 +0 0.0955 +0 0.1052 +0 0.0558 +0 0.1682 +0 0.1991 +0 0.1060 +0 0.0609 +0 0.1719 +0 0.1046 +0 0.0833 +0 0.1100 +0 0.0717 +0 0.3462 +0 0.0604 +0 0.3115 +0 0.0892 +0 0.1966 +0 0.1223 +0 0.0548 +0 0.0839 +0 0.0797 +0 0.1612 +0 0.1296 +0 0.1407 +0 0.0688 +0 0.1436 +0 0.0430 +0 0.1391 +0 0.2021 +0 0.0696 +0 0.0975 +0 0.0898 +0 0.1364 +0 0.0571 +0 0.3021 +0 0.5598 +0 0.1077 +0 0.0984 +0 0.1429 +0 0.0995 +0 0.3142 +0 0.1405 +0 0.1868 +0 0.0974 +0 0.1083 +0 0.1381 +0 0.1322 +0 0.0776 +0 0.0912 +0 0.0698 +0 0.0805 +0 0.0810 +0 0.5809 +0 0.0635 +0 0.1628 +0 0.2662 +0 0.1290 +0 0.4520 +0 0.0859 +0 0.0731 +0 0.2348 +0 0.0835 +0 0.0495 +0 0.2123 +0 0.2063 +0 0.1139 +0 0.0372 +0 0.1720 +0 0.0609 +0 0.1566 +1 0.8232 +0 0.0819 +0 0.0884 +0 0.0989 +0 0.1088 +0 0.1744 +0 0.0633 +0 0.0885 +0 0.0592 +0 0.0956 +0 0.0615 +0 0.1069 +0 0.1532 +0 0.1555 +0 0.1829 +0 0.0861 +1 0.7905 +0 0.0676 +0 0.1752 +0 0.1047 +0 0.1697 +0 0.1068 +0 0.0383 +0 0.0754 +0 0.1113 +0 0.1418 +0 0.1099 +0 0.0774 +0 0.2065 +0 0.0568 +0 0.0498 +0 0.0798 +0 0.0959 +0 0.1328 +0 0.3866 +0 0.1248 +0 0.0724 +0 0.1349 +0 0.0622 +0 0.0993 +0 0.1399 +0 0.3237 +0 0.1425 +0 0.1040 +0 0.0470 +0 0.0551 +0 0.3229 +0 0.4052 +0 0.1890 +0 0.0981 +0 0.0777 +0 0.0535 +0 0.1306 +0 0.0543 +0 0.2880 +0 0.1809 +0 0.1035 +0 0.0741 +0 0.1238 +0 0.0458 +0 0.3752 +0 0.1276 +0 0.0921 +0 0.0783 +0 0.1269 +0 0.0975 +0 0.2085 +0 0.1044 +0 0.0620 +0 0.0740 +0 0.0871 +0 0.1103 +0 0.0714 +0 0.3733 +0 0.0626 +0 0.2179 +0 0.1156 +0 0.0718 +0 0.3362 +0 0.4163 +0 0.4101 +0 0.1794 +0 0.1308 +0 0.0910 +0 0.1396 +0 0.1142 +0 0.1724 +0 0.2125 +0 0.0474 +0 0.1067 +0 0.0801 +0 0.0767 +0 0.1008 +0 0.1870 +0 0.1948 +0 0.2149 +0 0.0718 +0 0.1511 +0 0.1537 +0 0.0434 +0 0.1440 +1 0.7941 +0 0.1500 +0 0.1294 +0 0.1221 +0 0.4363 +0 0.0503 +0 0.1109 +0 0.1018 +0 0.6410 +0 0.0798 +0 0.0458 +0 0.1010 +0 0.4794 +0 0.2989 +0 0.6610 +0 0.0862 +0 0.1339 +0 0.0922 +0 0.2680 +1 0.7671 +0 0.0952 +0 0.1244 +0 0.0653 +0 0.6944 +0 0.0919 +0 0.0383 +0 0.1648 +0 0.1402 +0 0.0796 +0 0.1297 +0 0.0720 +0 0.2295 +0 0.0452 +0 0.0853 +0 0.5443 +0 0.0695 +0 0.0373 +0 0.0664 +0 0.0552 +0 0.0980 +1 0.7800 +0 0.0820 +0 0.1730 +0 0.0432 +0 0.2065 +0 0.0608 +0 0.1084 +0 0.0867 +0 0.1323 +0 0.0533 +0 0.0406 +0 0.0727 +0 0.0514 +0 0.1438 +0 0.0989 +0 0.1193 +0 0.0833 +0 0.0573 +0 0.1182 +0 0.1404 +0 0.1223 +0 0.1293 +0 0.0506 +0 0.1088 +0 0.0774 +0 0.0490 +0 0.5340 +0 0.0980 +0 0.1001 +0 0.0491 +0 0.1869 +0 0.1750 +0 0.3766 +0 0.1717 +0 0.1627 +0 0.0864 +0 0.1706 +0 0.3498 +0 0.0449 +0 0.0932 +0 0.2429 +0 0.0772 +0 0.0608 +0 0.0410 +0 0.0930 +0 0.0659 +0 0.2256 +0 0.1594 +0 0.1405 +0 0.1693 +0 0.0911 +0 0.1299 +0 0.0435 +0 0.0831 +0 0.1551 +0 0.0743 +0 0.0437 +0 0.0861 +0 0.1231 +0 0.1810 +0 0.1264 +0 0.0557 +0 0.1649 +0 0.0503 +0 0.1952 +0 0.0384 +0 0.0746 +0 0.1231 +0 0.0645 +0 0.0772 +0 0.1028 +0 0.0501 +0 0.1531 +0 0.3415 +0 0.0483 +0 0.2199 +0 0.0498 +0 0.0951 +0 0.0627 +0 0.0424 +0 0.0658 +0 0.0829 +0 0.1052 +0 0.0826 +0 0.0945 +0 0.0386 +0 0.0837 +0 0.1106 +0 0.0922 +0 0.0477 +0 0.2517 +0 0.4651 +0 0.1341 +0 0.2080 +0 0.1049 +0 0.0675 +0 0.1400 +0 0.0495 +0 0.0923 +0 0.2038 +0 0.1242 +0 0.1215 +0 0.0945 +0 0.0971 +0 0.0665 +0 0.1250 +0 0.1113 +0 0.0697 +0 0.1396 +0 0.1069 +0 0.1106 +0 0.2253 +0 0.0702 +0 0.0775 +0 0.1794 +0 0.1468 +0 0.1349 +0 0.0695 +0 0.0499 +0 0.0858 +0 0.0727 +0 0.0573 +0 0.0856 +0 0.1128 +0 0.0561 +0 0.1396 +0 0.2477 +0 0.1309 +0 0.2591 +0 0.1031 +0 0.0682 +0 0.0707 +0 0.1962 +0 0.0834 +0 0.0798 +0 0.0930 +0 0.0882 +0 0.0778 +0 0.1109 +0 0.1270 +0 0.0967 +0 0.6885 +0 0.7235 +0 0.2233 +0 0.4961 +0 0.0826 +0 0.1031 +1 0.7543 +0 0.2637 +0 0.0395 +0 0.0650 +0 0.0833 +0 0.0908 +0 0.0817 +0 0.1344 +0 0.0436 +0 0.0561 +0 0.0766 +0 0.0344 +0 0.1599 +0 0.0869 +0 0.7358 +0 0.0379 +0 0.2243 +0 0.0773 +0 0.0777 +0 0.0352 +0 0.1218 +0 0.1444 +0 0.0619 +0 0.0609 +0 0.1005 +0 0.0597 +0 0.0654 +0 0.3420 +0 0.1480 +0 0.2499 +0 0.1007 +0 0.1647 +0 0.2000 +0 0.1054 +0 0.1025 +0 0.1133 +0 0.1105 +0 0.0418 +0 0.1043 +0 0.0570 +0 0.0788 +0 0.1242 +0 0.0859 +0 0.1102 +0 0.3050 +0 0.1378 +0 0.0356 +0 0.2629 +0 0.0550 +0 0.2344 +0 0.0836 +0 0.3033 +0 0.0757 +0 0.0829 +0 0.1253 +0 0.1601 +0 0.2610 +0 0.1671 +1 0.8384 +0 0.0511 +0 0.4384 +0 0.2496 +0 0.1211 +0 0.2194 +0 0.1460 +0 0.1652 +0 0.0780 +0 0.2471 +0 0.3181 +0 0.0969 +0 0.0687 +0 0.0496 +0 0.0402 +0 0.0796 +0 0.1413 +0 0.6529 +0 0.1843 +0 0.2375 +0 0.1628 +0 0.3634 +0 0.1321 +0 0.0536 +0 0.1114 +0 0.0958 +0 0.0802 +0 0.1251 +0 0.0604 +0 0.1154 +0 0.2104 +0 0.1124 +0 0.0825 +0 0.1420 +0 0.0643 +0 0.0354 +0 0.0473 +0 0.0634 +0 0.1025 +0 0.0898 +0 0.0670 +0 0.0691 +0 0.0691 +0 0.0710 +0 0.6814 +1 0.8509 +1 0.4110 +0 0.0590 +0 0.0972 +0 0.1822 +0 0.1241 +0 0.0348 +0 0.1544 +0 0.1540 +0 0.0630 +0 0.0905 +0 0.4848 +0 0.1084 +0 0.4550 +0 0.0670 +0 0.1041 +0 0.0567 +0 0.1009 +0 0.1684 +0 0.0330 +0 0.3769 +0 0.1382 +0 0.1258 +0 0.0461 +0 0.1185 +0 0.0451 +0 0.0437 +0 0.0565 +0 0.0595 +0 0.1249 +0 0.2400 +0 0.1311 +1 0.7519 +0 0.0941 +0 0.1012 +0 0.0810 +0 0.0815 +0 0.0433 +0 0.0594 +0 0.0847 +0 0.0659 +0 0.2914 +0 0.0490 +0 0.0540 +0 0.0504 +0 0.1354 +0 0.1414 +0 0.0984 +0 0.0850 +0 0.0408 +0 0.2728 +0 0.0506 +0 0.1661 +0 0.1147 +0 0.0691 +0 0.0712 +0 0.2370 +0 0.0801 +0 0.0680 +0 0.4658 +0 0.0926 +0 0.0981 +0 0.1673 +0 0.1003 +0 0.0617 +0 0.0636 +1 0.8070 +0 0.3744 +0 0.1205 +0 0.0985 +0 0.0862 +0 0.1004 +0 0.1899 +0 0.0638 +0 0.0509 +0 0.1100 +0 0.0730 +0 0.1342 +0 0.1178 +0 0.1806 +0 0.0767 +0 0.1525 +0 0.1649 +0 0.1621 +0 0.1219 +0 0.0598 +0 0.0570 +0 0.2218 +0 0.0546 +0 0.2459 +0 0.0765 +0 0.0359 +0 0.1555 +0 0.0861 +0 0.0780 +0 0.0911 +0 0.0914 +0 0.0565 +0 0.2382 +0 0.1090 +0 0.1148 +0 0.0276 +0 0.0682 +0 0.0812 +0 0.0850 +0 0.0394 +0 0.0454 +0 0.0981 +0 0.0791 +0 0.1142 +0 0.0567 +0 0.2160 +0 0.0732 +0 0.1383 +0 0.0765 +0 0.2972 +0 0.1075 +0 0.1067 +0 0.1875 +0 0.0422 +0 0.0771 +0 0.0759 +0 0.1406 +0 0.3502 +0 0.1787 +0 0.1420 +0 0.0643 +0 0.0787 +0 0.1142 +0 0.0739 +0 0.1613 +1 0.8647 +0 0.6491 +0 0.0753 +0 0.0749 +0 0.3559 +0 0.0723 +0 0.1448 +0 0.1410 +0 0.6583 +0 0.0921 +0 0.1669 +0 0.7159 +0 0.1485 +0 0.5538 +0 0.2172 +0 0.0969 +0 0.1190 +0 0.0764 +0 0.0527 +0 0.1893 +0 0.1116 +0 0.0648 +0 0.2821 +0 0.1685 +0 0.2504 +0 0.3653 +0 0.0845 +0 0.0663 +0 0.1125 +0 0.0659 +0 0.0576 +0 0.0657 +0 0.0638 +0 0.1394 +0 0.2340 +0 0.0979 +0 0.1956 +0 0.1568 +0 0.1469 +0 0.0777 +0 0.1242 +0 0.1230 +0 0.1387 +0 0.0775 +0 0.2806 +0 0.0939 +0 0.0580 +0 0.0669 +0 0.0948 +0 0.1957 +0 0.0596 +0 0.1088 +0 0.1239 +0 0.0471 +0 0.1504 +0 0.4804 +0 0.2823 +0 0.1905 +0 0.0812 +0 0.2130 +0 0.1444 +0 0.1326 +0 0.0742 +0 0.0840 +0 0.1087 +0 0.2879 +0 0.1167 +0 0.1155 +1 0.8430 +0 0.2547 +0 0.1356 +0 0.1075 +0 0.1127 +0 0.0599 +0 0.0776 +0 0.1183 +0 0.1173 +1 0.8079 +0 0.0992 +0 0.1512 +0 0.0988 +0 0.0558 +1 0.8440 +0 0.1731 +0 0.0571 +0 0.0681 +0 0.0972 +0 0.0506 +0 0.1010 +0 0.0628 +0 0.2024 +0 0.0701 +0 0.3255 +0 0.1003 +0 0.0843 +0 0.0882 +0 0.0767 +0 0.0750 +0 0.0445 +0 0.0690 +0 0.0602 +0 0.1898 +0 0.0926 +0 0.0946 +0 0.1448 +0 0.0642 +0 0.1626 +0 0.1564 +0 0.0803 +0 0.1230 +0 0.0808 +0 0.2432 +0 0.5676 +0 0.0706 +0 0.0528 +0 0.3286 +0 0.1264 +0 0.0513 +0 0.1195 +0 0.0724 +0 0.0838 +0 0.1568 +0 0.0414 +0 0.2565 +0 0.1546 +0 0.1180 +0 0.0546 +0 0.0801 +0 0.0962 +0 0.2163 +0 0.2980 +0 0.0845 +0 0.3635 +0 0.1156 +0 0.0636 +0 0.1176 +0 0.0382 +0 0.1729 +0 0.0473 +0 0.0720 +0 0.1980 +0 0.0811 +0 0.0983 +0 0.0646 +0 0.0313 +0 0.0919 +0 0.3385 +0 0.1711 +0 0.2169 +0 0.1477 +0 0.1394 +0 0.0835 +0 0.2395 +0 0.1469 +0 0.0835 +0 0.0892 +0 0.0725 +0 0.2373 +0 0.1334 +0 0.0756 +0 0.1064 +0 0.1025 +0 0.1827 +0 0.0437 +0 0.0860 +0 0.0671 +0 0.0529 +0 0.1119 +0 0.6981 +0 0.0369 +0 0.1016 +0 0.0373 +0 0.3166 +0 0.1799 +0 0.0547 +0 0.1402 +0 0.0538 +0 0.0567 +0 0.5032 +0 0.0720 +0 0.0746 +0 0.1440 +0 0.1662 +0 0.0588 +0 0.3330 +0 0.0820 +0 0.0864 +0 0.0709 +0 0.2314 +0 0.0921 +0 0.1124 +0 0.1280 +0 0.0802 +0 0.0775 +0 0.1395 +0 0.1421 +0 0.0900 +0 0.2326 +0 0.0725 +0 0.1023 +0 0.1142 +0 0.1067 +0 0.1210 +1 0.8369 +0 0.0607 +0 0.0866 +0 0.0751 +0 0.0304 +0 0.0806 +0 0.1102 +0 0.2575 +0 0.1151 +0 0.0427 +0 0.0856 +0 0.1233 +0 0.1825 +0 0.0996 +0 0.1019 +0 0.1651 +0 0.0594 +0 0.0592 +0 0.1513 +0 0.1497 +0 0.1070 +0 0.0530 +0 0.0487 +0 0.0639 +0 0.2027 +0 0.1414 +0 0.0597 +0 0.0912 +0 0.0840 +0 0.0940 +0 0.1756 +0 0.0541 +0 0.0887 +0 0.1201 +0 0.1324 +0 0.1603 +0 0.0509 +0 0.1476 +0 0.1497 +0 0.3645 +0 0.7494 +0 0.3484 +0 0.1705 +0 0.1367 +0 0.0726 +0 0.0938 +0 0.0570 +0 0.0780 +0 0.1189 +0 0.1954 +0 0.0582 +0 0.2046 +0 0.0540 +0 0.0428 +0 0.0872 +0 0.1679 +0 0.0761 +0 0.1640 +0 0.2472 +0 0.1726 +0 0.1203 +0 0.1760 +0 0.1101 +0 0.3360 +0 0.0863 +0 0.0811 +0 0.1109 +0 0.1995 +0 0.0860 +0 0.1861 +0 0.0880 +0 0.1017 +0 0.1044 +0 0.0846 +0 0.0750 +0 0.0743 +0 0.0483 +0 0.1566 +0 0.1248 +0 0.2447 +0 0.0798 +0 0.1428 +0 0.0985 +0 0.2019 +0 0.0896 +0 0.0984 +0 0.2679 +0 0.0624 +0 0.0728 +0 0.0760 +0 0.1152 +0 0.0804 +0 0.0588 +0 0.3096 +0 0.2025 +0 0.3483 +0 0.0845 +0 0.1317 +0 0.0562 +0 0.1369 +0 0.1967 +0 0.0288 +0 0.1589 +0 0.0747 +0 0.1872 +0 0.1122 +0 0.1076 +0 0.0696 +0 0.0633 +0 0.0470 +0 0.0778 +0 0.2568 +0 0.4466 +0 0.0974 +0 0.0976 +0 0.1537 +0 0.1177 +0 0.2768 +0 0.0526 +0 0.0869 +0 0.3743 +0 0.0704 +0 0.0729 +0 0.3534 +0 0.1951 +0 0.0806 +0 0.0852 +0 0.1671 +1 0.8152 +0 0.0845 +0 0.1052 +0 0.0765 +0 0.0613 +0 0.0798 +0 0.0791 +0 0.1430 +0 0.1993 +0 0.1331 +0 0.1081 +0 0.0608 +0 0.0673 +0 0.0593 +0 0.1879 +0 0.1889 +0 0.0883 +0 0.0536 +0 0.0582 +0 0.0283 +0 0.1862 +0 0.4003 +0 0.0828 +0 0.2017 +0 0.1207 +0 0.0977 +0 0.1825 +0 0.2119 +0 0.0524 +0 0.1033 +0 0.1210 +0 0.7095 +0 0.1102 +0 0.0666 +0 0.0579 +0 0.1001 +0 0.0659 +0 0.0758 +0 0.2000 +0 0.0755 +0 0.1229 +0 0.3118 +0 0.1241 +0 0.2673 +0 0.0801 +0 0.0540 +0 0.1183 +0 0.1632 +1 0.8441 +0 0.0631 +0 0.3210 +0 0.0798 +0 0.0555 +0 0.1169 +0 0.1541 +0 0.0928 +0 0.1385 +0 0.1672 +0 0.0495 +0 0.1198 +0 0.0436 +0 0.1172 +0 0.1070 +0 0.1028 +0 0.7180 +0 0.0865 +0 0.6275 +0 0.0827 +0 0.0737 +0 0.1148 +0 0.0862 +0 0.1265 +0 0.0946 +0 0.0830 +0 0.1013 +0 0.0843 +0 0.1886 +0 0.1541 +0 0.0536 +0 0.1745 +0 0.0900 +0 0.7463 +0 0.3110 +0 0.1483 +0 0.1429 +0 0.2697 +0 0.0811 +0 0.1543 +0 0.1209 +0 0.1244 +0 0.3134 +0 0.7038 +0 0.1501 +0 0.7393 +0 0.0754 +0 0.0601 +1 0.6361 +1 0.7665 +0 0.0751 +0 0.0737 +0 0.0416 +0 0.3088 +0 0.1105 +0 0.0819 +0 0.1221 +0 0.1726 +1 0.8189 +0 0.1668 +0 0.0440 +0 0.1535 +0 0.0677 +0 0.1498 +0 0.0865 +0 0.1214 +0 0.1524 +0 0.2476 +0 0.0834 +0 0.1120 +0 0.2670 +0 0.0636 +0 0.0450 +0 0.2671 +0 0.0806 +0 0.0801 +0 0.0966 +0 0.0478 +0 0.0834 +0 0.0804 +0 0.0939 +0 0.1438 +0 0.0557 +0 0.3331 +0 0.0716 +0 0.0808 +0 0.3166 +0 0.0709 +0 0.1048 +0 0.1164 +0 0.0494 +0 0.2402 +0 0.0688 +0 0.0676 +0 0.2206 +0 0.0706 +0 0.1931 +0 0.2617 +0 0.1240 +0 0.1056 +0 0.2609 +0 0.1977 +0 0.0964 +0 0.1444 +0 0.0941 +0 0.1009 +0 0.0987 +0 0.0850 +0 0.0713 +0 0.0972 +0 0.6618 +0 0.0997 +0 0.0874 +0 0.0679 +0 0.1386 +0 0.0820 +0 0.2354 +0 0.0991 +0 0.0858 +0 0.0811 +0 0.0373 +0 0.0750 +0 0.0735 +0 0.1208 +0 0.0997 +0 0.0724 +0 0.1039 +0 0.0481 +0 0.2393 +0 0.1388 +0 0.1615 +0 0.1208 +0 0.0973 +0 0.0939 +0 0.1007 +1 0.8377 +0 0.0391 +0 0.0883 +0 0.0837 +0 0.0718 +0 0.0335 +0 0.0474 +1 0.7525 +0 0.1917 +0 0.1857 +0 0.7256 +0 0.1443 +0 0.0496 +0 0.1221 +0 0.3474 +0 0.0822 +0 0.1153 +0 0.2113 +0 0.3475 +0 0.1138 +0 0.0963 +0 0.4111 +0 0.0728 +0 0.1413 +0 0.1092 +0 0.6606 +0 0.2009 +0 0.1324 +0 0.3097 +0 0.0905 +0 0.0848 +0 0.2710 +0 0.1184 +0 0.0287 +0 0.2284 +0 0.6226 +0 0.0810 +0 0.1201 +0 0.4440 +0 0.1682 +0 0.1121 +0 0.1403 +0 0.0775 +0 0.0553 +0 0.1583 +0 0.0776 +0 0.1158 +0 0.1262 +0 0.2048 +0 0.0734 +0 0.3278 +0 0.1536 +0 0.1386 +0 0.1368 +0 0.0495 +0 0.0541 +0 0.1184 +0 0.7351 +0 0.0457 +0 0.0775 +0 0.1150 +0 0.0750 +0 0.4927 +0 0.0750 +0 0.2548 +0 0.0945 +0 0.0602 +0 0.2111 +0 0.1990 +0 0.1927 +0 0.1177 +0 0.1730 +0 0.6377 +0 0.0979 +0 0.0505 +0 0.2450 +0 0.0974 +0 0.0582 +0 0.0485 +0 0.2462 +0 0.2228 +0 0.3248 +0 0.1069 +0 0.1096 +0 0.1427 +0 0.1243 +0 0.0761 +0 0.0838 +0 0.2031 +0 0.0598 +0 0.3279 +0 0.4269 +0 0.1300 +0 0.2230 +0 0.0631 +0 0.0651 +0 0.1947 +0 0.2048 +0 0.3494 +0 0.1330 +0 0.1350 +0 0.1984 +0 0.2637 +0 0.0997 +0 0.0623 +0 0.1236 +0 0.0882 +0 0.3938 +0 0.0654 +0 0.0546 +0 0.2073 +0 0.0667 +0 0.0869 +0 0.0578 +0 0.2067 +0 0.1995 +0 0.2546 +0 0.1754 +0 0.0937 +0 0.1142 +0 0.2616 +0 0.0631 +0 0.0660 +0 0.1403 +0 0.4225 +0 0.1131 +0 0.5250 +0 0.0847 +0 0.0731 +0 0.0538 +0 0.0665 +0 0.0423 +0 0.4530 +0 0.0546 +0 0.1580 +0 0.1444 +0 0.1308 +0 0.1706 +0 0.0860 +0 0.1235 +0 0.0481 +0 0.1252 +0 0.0907 +0 0.1853 +0 0.0991 +0 0.5127 +0 0.2229 +0 0.0678 +0 0.2259 +0 0.1549 +0 0.3328 +0 0.0815 +0 0.0697 +0 0.0559 +0 0.1921 +0 0.0726 +0 0.1168 +0 0.2154 +0 0.1206 +0 0.0834 +0 0.0969 +0 0.1008 +0 0.2387 +0 0.1452 +0 0.1388 +0 0.1267 +0 0.1375 +0 0.0406 +0 0.1822 +0 0.0698 +0 0.0732 +0 0.1797 +0 0.1024 +0 0.2349 +0 0.0636 +0 0.0964 +0 0.0906 +0 0.1527 +0 0.1145 +0 0.0668 +0 0.1329 +0 0.1043 +1 0.7743 +0 0.3520 +0 0.0960 +0 0.0583 +0 0.0590 +0 0.1285 +1 0.8361 +0 0.0717 +0 0.0490 +0 0.1947 +0 0.0714 +0 0.1304 +0 0.1064 +0 0.0390 +0 0.0804 +0 0.1509 +0 0.0895 +0 0.0685 +0 0.0772 +0 0.2091 +0 0.0682 +0 0.1549 +0 0.2385 +0 0.0590 +0 0.2233 +0 0.0612 +0 0.2744 +0 0.1211 +0 0.0690 +0 0.0664 +0 0.1496 +0 0.1282 +0 0.1319 +0 0.0517 +0 0.1084 +0 0.1286 +0 0.2010 +0 0.0965 +0 0.0453 +0 0.1021 +0 0.1401 +0 0.1481 +0 0.0600 +0 0.0738 +0 0.2133 +0 0.1932 +0 0.0958 +0 0.0850 +0 0.1029 +0 0.1156 +0 0.0945 +0 0.2017 +0 0.1255 +0 0.3225 +0 0.1332 +0 0.0655 +0 0.2344 +0 0.0815 +0 0.0650 +0 0.1113 +0 0.0953 +0 0.2141 +0 0.2097 +0 0.1064 +0 0.1245 +0 0.1448 +0 0.0530 +0 0.1027 +0 0.1081 +0 0.1213 +0 0.1600 +0 0.0672 +0 0.0803 +0 0.1620 +0 0.1690 +0 0.1802 +0 0.2256 +0 0.3385 +0 0.0685 +0 0.1399 +0 0.0611 +0 0.0929 +1 0.8042 +0 0.0576 +0 0.1370 +0 0.2084 +0 0.1143 +0 0.2397 +0 0.0729 +0 0.3022 +0 0.5943 +0 0.1835 +0 0.1868 +0 0.0639 +0 0.3254 +0 0.5332 +0 0.1357 +0 0.0811 +0 0.0752 +0 0.1170 +0 0.1151 +0 0.0717 +0 0.0403 +0 0.0493 +0 0.1589 +0 0.1092 +0 0.1190 +0 0.1360 +1 0.8525 +0 0.1535 +0 0.2232 +0 0.1296 +0 0.4275 +0 0.1048 +0 0.0828 +0 0.7220 +0 0.1311 +0 0.3223 +0 0.0666 +0 0.1905 +0 0.1198 +0 0.1503 +0 0.1855 +0 0.0940 +0 0.2202 +0 0.1981 +0 0.0565 +0 0.1022 +0 0.0801 +0 0.0712 +0 0.2143 +0 0.1206 +0 0.0952 +0 0.2144 +0 0.1594 +0 0.0769 +0 0.1745 +0 0.1185 +0 0.0603 +0 0.2943 +0 0.1115 +0 0.3265 +0 0.0788 +0 0.0750 +0 0.1076 +0 0.0670 +0 0.1401 +0 0.1265 +0 0.0637 +0 0.3511 +0 0.0842 +0 0.0643 +0 0.1004 +0 0.1329 +0 0.1179 +0 0.0620 +0 0.2966 +0 0.1012 +0 0.3496 +0 0.0949 +0 0.0951 +0 0.0616 +0 0.0724 +0 0.0835 +0 0.1672 +0 0.1271 +0 0.1042 +0 0.2248 +0 0.0601 +0 0.1153 +0 0.1764 +0 0.1907 +0 0.1291 +0 0.0758 +0 0.0791 +0 0.1230 +0 0.1099 +0 0.0523 +0 0.0792 +0 0.2754 +0 0.0657 +0 0.1090 +0 0.1994 +0 0.0632 +1 0.7852 +0 0.4763 +0 0.1516 +0 0.0798 +0 0.0573 +0 0.1931 +0 0.1635 +0 0.0579 +0 0.0762 +0 0.0796 +0 0.0575 +0 0.0724 +0 0.3183 +0 0.1648 +0 0.0692 +0 0.1500 +0 0.1147 +0 0.2301 +0 0.1088 +0 0.1034 +0 0.1073 +0 0.1723 +0 0.1470 +0 0.1211 +0 0.1057 +0 0.2967 +0 0.0907 +0 0.0839 +0 0.3629 +0 0.1658 +0 0.1278 +0 0.2654 +1 0.8032 +0 0.1827 +0 0.1315 +0 0.0421 +0 0.1100 +0 0.0468 +0 0.5639 +0 0.0776 +0 0.1189 +0 0.2067 +0 0.0629 +0 0.0768 +0 0.0652 +0 0.0485 +0 0.2368 +0 0.0594 +0 0.0823 +0 0.0431 +0 0.1996 +0 0.1511 +0 0.3103 +0 0.3153 +0 0.0687 +0 0.0597 +0 0.0342 +0 0.0942 +0 0.0818 +0 0.1714 +0 0.2912 +0 0.1917 +0 0.1031 +0 0.1057 +0 0.1312 +0 0.1129 +0 0.1156 +0 0.0436 +0 0.0466 +0 0.1169 +0 0.1696 +0 0.0416 +0 0.0726 +0 0.2283 +0 0.0662 +0 0.5024 +0 0.0547 +0 0.0960 +0 0.0415 +0 0.0726 +0 0.0479 +0 0.2730 +0 0.1203 +0 0.0440 +0 0.0609 +0 0.1394 +0 0.1167 +0 0.1653 +0 0.1540 +1 0.8732 +0 0.0778 +0 0.0341 +0 0.1054 +0 0.0618 +0 0.1103 +0 0.1296 +0 0.1167 +0 0.0689 +0 0.0387 +0 0.2257 +0 0.1489 +0 0.2535 +0 0.0504 +0 0.0504 +0 0.2048 +0 0.0819 +0 0.0784 +0 0.2715 +0 0.4170 +0 0.1899 +0 0.1064 +0 0.1943 +0 0.1696 +0 0.1037 +0 0.2181 +0 0.0608 +0 0.0710 +0 0.0900 +0 0.0728 +0 0.0817 +0 0.1226 +0 0.0550 +0 0.1141 +0 0.0536 +0 0.2248 +0 0.0592 +0 0.1604 +0 0.1284 +0 0.0576 +0 0.0783 +0 0.1831 +0 0.0786 +0 0.1021 +0 0.1664 +0 0.0553 +0 0.0830 +0 0.0945 +0 0.0584 +0 0.1208 +0 0.0482 +0 0.0956 +0 0.0988 +0 0.0729 +0 0.0713 +0 0.0571 +0 0.0484 +0 0.0702 +0 0.1095 +0 0.1655 +0 0.2406 +0 0.1080 +0 0.0658 +0 0.1020 +0 0.0682 +0 0.1161 +0 0.0338 +0 0.2390 +0 0.0906 +0 0.3452 +0 0.1700 +0 0.2562 +0 0.2429 +0 0.0952 +0 0.1053 +0 0.1531 +0 0.2009 +0 0.0820 +0 0.1982 +0 0.0807 +0 0.1104 +0 0.1832 +0 0.1991 +0 0.1130 +0 0.0678 +0 0.0785 +0 0.0543 +0 0.0708 +0 0.1698 +0 0.0858 +0 0.0967 +0 0.2796 +0 0.3140 +0 0.0746 +0 0.2647 +0 0.3890 +0 0.0806 +0 0.6120 +0 0.0884 +0 0.1456 +0 0.1485 +0 0.0925 +0 0.0315 +0 0.1144 +0 0.0480 +0 0.1550 +0 0.1744 +0 0.0408 +1 0.7663 +0 0.0791 +0 0.1013 +0 0.2981 +0 0.1261 +0 0.1371 +0 0.0611 +0 0.1106 +0 0.1097 +0 0.2161 +0 0.1694 +0 0.0800 +0 0.0903 +0 0.1462 +0 0.1934 +0 0.0667 +0 0.0770 +0 0.0510 +0 0.1337 +0 0.1443 +0 0.0780 +0 0.2072 +0 0.1382 +0 0.0766 +0 0.0671 +0 0.1174 +0 0.5649 +0 0.0907 +0 0.1292 +0 0.0543 +0 0.7495 +0 0.1584 +0 0.0497 +0 0.1512 +0 0.0908 +0 0.0392 +0 0.2745 +0 0.0828 +0 0.1191 +0 0.0943 +0 0.2289 +0 0.1696 +0 0.1657 +0 0.1938 +0 0.2775 +0 0.0752 +0 0.0841 +0 0.0399 +0 0.0769 +0 0.0406 +0 0.1654 +0 0.3652 +0 0.0640 +0 0.0902 +0 0.1055 +0 0.5042 +0 0.0659 +0 0.1528 +0 0.0846 +0 0.1150 +0 0.0476 +0 0.0496 +0 0.1940 +0 0.1024 +0 0.2315 +0 0.1988 +0 0.2370 +0 0.0869 +0 0.0662 +0 0.0763 +0 0.0696 +0 0.0579 +0 0.0973 +0 0.0596 +0 0.0684 +0 0.0614 +0 0.0457 +0 0.1367 +0 0.1268 +0 0.1117 +0 0.1089 +0 0.0774 +0 0.0330 +0 0.2295 +0 0.0654 +0 0.0879 +0 0.1504 +0 0.1120 +0 0.1181 +0 0.0972 +0 0.0948 +0 0.1185 +0 0.1217 +0 0.1172 +0 0.0368 +0 0.0661 +0 0.0789 +0 0.1834 +0 0.4276 +0 0.0783 +0 0.1548 +0 0.0825 +0 0.0878 +0 0.1629 +0 0.0579 +0 0.0743 +0 0.6993 +0 0.5544 +0 0.3101 +0 0.0543 +0 0.0627 +0 0.1197 +1 0.4966 +0 0.0659 +0 0.0636 +0 0.0564 +0 0.2255 +0 0.1361 +0 0.1942 +0 0.1565 +0 0.1037 +0 0.0788 +0 0.1073 +0 0.1128 +0 0.0792 +0 0.0952 +0 0.1015 +0 0.0634 +0 0.0803 +0 0.1773 +0 0.1066 +0 0.1178 +0 0.0636 +0 0.1158 +0 0.2082 +0 0.0919 +0 0.0718 +0 0.0799 +0 0.1600 +0 0.1275 +0 0.2222 +0 0.0918 +0 0.1203 +0 0.1458 +0 0.0784 +0 0.0606 +0 0.0557 +0 0.0893 +0 0.1454 +0 0.3792 +0 0.1073 +0 0.0943 +0 0.1958 +0 0.6887 +0 0.0607 +0 0.1283 +0 0.1739 +0 0.1859 +0 0.0983 +0 0.4006 +0 0.1846 +0 0.1114 +0 0.0701 +0 0.0712 +0 0.1005 +0 0.1356 +0 0.0904 +0 0.0487 +0 0.0968 +0 0.0435 +0 0.0975 +0 0.3231 +0 0.2153 +0 0.1729 +0 0.0996 +0 0.0672 +0 0.1326 +0 0.0944 +0 0.0731 +0 0.0944 +0 0.2490 +0 0.0909 +0 0.1630 +0 0.1661 +0 0.0410 +0 0.1157 +0 0.0363 +0 0.3239 +0 0.0896 +0 0.1667 +0 0.1802 +0 0.1166 +0 0.0784 +0 0.0655 +0 0.2147 +0 0.1351 +0 0.1475 +0 0.0945 +0 0.1309 +0 0.0569 +0 0.1259 +0 0.1060 +0 0.3471 +0 0.0523 +0 0.0301 +0 0.1022 +0 0.2044 +0 0.0939 +0 0.1420 +0 0.1044 +0 0.2981 +0 0.0563 +0 0.0682 +1 0.8784 +0 0.1225 +0 0.0458 +0 0.1248 +0 0.1504 +0 0.0641 +0 0.7460 +0 0.0667 +0 0.1589 +0 0.1659 +0 0.1141 +0 0.0574 +0 0.0794 +0 0.0983 +0 0.1277 +0 0.1001 +0 0.0837 +0 0.0704 +0 0.1773 +0 0.1138 +0 0.1301 +0 0.1713 +0 0.0691 +0 0.0383 +0 0.1440 +0 0.0912 +0 0.1032 +0 0.3314 +0 0.0749 +0 0.0379 +0 0.0403 +0 0.3929 +0 0.1049 +0 0.0770 +0 0.1470 +0 0.0406 +0 0.4962 +0 0.2377 +0 0.0609 +0 0.0934 +0 0.2138 +0 0.1034 +0 0.2528 +0 0.0898 +0 0.0632 +0 0.0621 +0 0.1282 +0 0.0661 +0 0.0670 +0 0.1183 +0 0.1364 +0 0.1133 +0 0.2469 +0 0.3624 +0 0.1363 +0 0.0852 +0 0.0981 +0 0.0910 +0 0.0748 +0 0.2016 +0 0.4036 +0 0.0696 +0 0.0736 +0 0.1617 +0 0.0924 +0 0.0323 +0 0.1417 +0 0.1679 +0 0.1164 +0 0.0747 +0 0.0798 +0 0.1283 +0 0.0333 +0 0.4996 +0 0.1794 +0 0.5919 +0 0.1354 +0 0.1095 +0 0.1173 +0 0.6674 +0 0.0911 +1 0.7704 +0 0.2198 +0 0.6737 +0 0.0584 +0 0.1766 +0 0.1432 +0 0.1867 +0 0.1824 +0 0.4995 +0 0.1757 +0 0.0839 +0 0.1008 +0 0.1595 +0 0.2308 +0 0.0469 +0 0.1801 +0 0.1115 +1 0.8467 +0 0.2115 +0 0.1750 +0 0.0965 +0 0.1044 +0 0.1585 +0 0.2032 +0 0.0985 +0 0.0736 +0 0.0599 +0 0.0496 +0 0.0778 +0 0.1255 +0 0.1063 +0 0.0873 +0 0.2046 +0 0.0704 +0 0.1230 +0 0.0995 +0 0.2662 +0 0.0559 +0 0.0566 +0 0.0764 +0 0.2769 +0 0.4058 +0 0.1943 +0 0.0546 +0 0.0903 +0 0.1136 +0 0.1626 +0 0.1014 +0 0.0810 +0 0.1545 +0 0.0872 +0 0.0604 +0 0.0633 +0 0.1784 +0 0.1489 +0 0.0663 +0 0.0385 +0 0.2675 +0 0.1198 +0 0.1517 +0 0.2533 +0 0.1765 +0 0.1409 +0 0.1323 +0 0.0570 +0 0.0712 +0 0.3037 +0 0.0857 +0 0.2282 +0 0.1328 +0 0.1728 +0 0.0579 +0 0.2207 +0 0.1490 +0 0.3396 +0 0.0807 +0 0.0780 +0 0.1726 +0 0.0825 +0 0.0790 +0 0.1854 +0 0.0871 +0 0.1045 +0 0.0681 +0 0.0714 +0 0.1311 +0 0.3448 +0 0.1071 +0 0.7282 +0 0.0968 +0 0.0828 +0 0.2309 +0 0.1996 +0 0.0805 +0 0.0449 +1 0.7864 +0 0.0544 +0 0.1385 +0 0.0601 +0 0.1196 +0 0.0523 +0 0.1663 +0 0.0542 +0 0.2696 +1 0.8128 +0 0.0408 +0 0.0944 +0 0.1395 +0 0.1866 +0 0.0789 +0 0.0583 +0 0.0918 +0 0.2974 +0 0.1667 +0 0.0979 +0 0.1199 +0 0.0817 +0 0.0600 +0 0.2869 +0 0.0596 +0 0.1839 +0 0.0834 +0 0.2500 +0 0.0755 +0 0.2430 +0 0.1480 +0 0.2549 +0 0.2491 +0 0.0806 +0 0.0883 +1 0.8127 +0 0.1839 +0 0.1718 +0 0.2342 +0 0.0416 +0 0.1057 +0 0.1219 +0 0.0800 +0 0.1834 +0 0.2302 +0 0.0913 +0 0.1189 +0 0.0805 +0 0.1782 +0 0.1796 +0 0.0716 +0 0.0949 +0 0.0851 +0 0.0933 +0 0.4099 +0 0.2497 +0 0.2165 +0 0.2182 +0 0.0555 +0 0.0518 +0 0.1318 +0 0.1246 +0 0.6759 +0 0.3281 +0 0.1065 +0 0.1002 +0 0.2889 +0 0.1112 +0 0.1281 +0 0.1931 +0 0.0680 +0 0.1068 +0 0.0448 +0 0.0961 +0 0.0848 +0 0.0326 +0 0.7147 +0 0.1923 +0 0.1063 +0 0.1777 +0 0.0695 +0 0.2170 +0 0.0674 +0 0.1182 +0 0.0317 +0 0.3871 +0 0.1389 +0 0.1051 +0 0.0834 +0 0.1549 +0 0.0602 +0 0.7455 +0 0.2187 +0 0.1196 +0 0.1126 +0 0.0554 +0 0.0453 +0 0.1619 +0 0.0399 +0 0.0421 +0 0.0653 +0 0.0999 +0 0.0716 +0 0.0571 +0 0.0686 +0 0.1591 +0 0.1165 +0 0.0412 +0 0.0745 +0 0.0798 +0 0.0906 +0 0.0941 +0 0.1308 +0 0.1102 +0 0.1403 +0 0.0594 +0 0.7355 +0 0.1472 +0 0.0458 +0 0.1334 +0 0.0537 +0 0.1384 +0 0.0913 +0 0.3771 +0 0.0773 +0 0.0340 +0 0.2299 +0 0.0676 +0 0.2418 +0 0.5822 +0 0.2296 +0 0.1074 +0 0.2137 +0 0.0820 +0 0.0770 +0 0.1753 +0 0.1311 +0 0.0883 +0 0.0661 +0 0.1509 +0 0.0572 +0 0.0838 +0 0.2943 +0 0.0532 +0 0.0640 +0 0.0752 +0 0.1293 +0 0.1408 +0 0.0792 +0 0.0522 +0 0.2142 +0 0.1777 +0 0.1112 +0 0.0653 +0 0.1940 +0 0.0933 +0 0.3851 +0 0.0811 +0 0.1261 +0 0.0394 +0 0.0951 +0 0.1034 +0 0.2000 +0 0.1017 +0 0.0494 +0 0.0457 +0 0.0921 +0 0.0643 +0 0.0723 +0 0.1988 +0 0.1076 +0 0.1037 +0 0.1624 +0 0.0586 +0 0.1944 +0 0.1915 +0 0.0842 +0 0.0936 +0 0.0801 +0 0.1311 +0 0.0853 +0 0.4727 +0 0.2708 +0 0.1373 +0 0.0739 +0 0.2107 +0 0.0810 +0 0.1057 +0 0.0435 +0 0.2621 +0 0.0589 +0 0.4589 +0 0.0853 +0 0.1604 +0 0.1702 +0 0.0707 +0 0.2609 +1 0.7535 +0 0.0790 +0 0.1815 +0 0.2953 +0 0.0954 +0 0.2230 +0 0.0919 +0 0.2717 +0 0.1913 +0 0.5399 +0 0.1521 +0 0.1670 +0 0.1352 +0 0.0759 +0 0.0694 +0 0.0830 +0 0.1657 +0 0.1844 +0 0.0456 +0 0.1576 +0 0.2173 +0 0.1126 +0 0.1162 +0 0.0492 +0 0.1831 +0 0.0731 +0 0.1181 +0 0.0694 +0 0.0569 +0 0.0795 +0 0.0395 +0 0.0994 +0 0.0789 +0 0.0514 +0 0.0673 +1 0.8070 +0 0.6881 +0 0.1236 +0 0.0846 +0 0.0800 +0 0.0847 +0 0.0694 +0 0.3567 +0 0.0852 +0 0.2361 +0 0.1072 +0 0.4651 +0 0.0636 +0 0.0793 +0 0.0865 +0 0.1318 +0 0.0978 +0 0.1078 +0 0.0287 +0 0.0434 +0 0.1163 +0 0.0588 +0 0.0616 +0 0.1506 +0 0.1132 +0 0.0858 +0 0.0813 +0 0.1504 +0 0.1020 +0 0.1049 +0 0.0493 +0 0.0768 +0 0.5217 +0 0.5806 +0 0.0623 +0 0.0520 +0 0.0926 +0 0.4055 +0 0.1704 +0 0.1475 +0 0.3213 +0 0.2251 +0 0.0460 +0 0.1392 +0 0.1809 +0 0.1006 +0 0.4129 +0 0.1155 +0 0.0876 +0 0.1157 +0 0.0759 +0 0.0898 +0 0.0362 +0 0.0892 +0 0.0501 +0 0.1168 +0 0.1484 +0 0.2311 +0 0.1949 +0 0.1078 +0 0.1487 +0 0.1165 +0 0.1983 +0 0.0540 +0 0.0979 +0 0.1589 +0 0.4412 +0 0.1302 +0 0.1529 +0 0.1007 +0 0.2621 +0 0.1319 +0 0.0789 +0 0.0785 +0 0.0476 +0 0.0715 +0 0.0624 +0 0.0498 +0 0.1237 +0 0.0912 +0 0.2048 +0 0.2377 +0 0.1164 +0 0.1493 +0 0.0821 +0 0.1210 +0 0.0756 +0 0.0486 +0 0.2027 +0 0.0371 +0 0.1050 +0 0.3087 +0 0.1692 +0 0.1190 +0 0.1040 +0 0.0461 +0 0.0868 +0 0.0752 +0 0.1654 +0 0.0505 +0 0.0392 +0 0.1099 +0 0.0862 +0 0.0951 +0 0.0809 +0 0.2009 +0 0.0891 +0 0.1157 +0 0.0982 +0 0.0987 +0 0.1534 +0 0.0895 +0 0.1479 +0 0.0958 +0 0.0656 +0 0.0795 +0 0.2034 +0 0.0795 +0 0.1923 +0 0.0766 +0 0.3276 +0 0.2813 +0 0.0559 +0 0.0459 +0 0.0884 +0 0.1770 +0 0.1142 +0 0.5741 +0 0.2055 +0 0.6645 +0 0.7024 +0 0.0611 +0 0.7072 +0 0.0937 +0 0.3344 +0 0.0563 +0 0.0643 +1 0.7622 +0 0.1973 +0 0.6746 +0 0.1809 +0 0.2703 +0 0.0544 +0 0.0759 +0 0.0568 +0 0.2018 +0 0.0738 +0 0.1260 +0 0.0597 +0 0.0898 +0 0.0863 +0 0.0852 +0 0.0956 +0 0.0836 +0 0.1650 +0 0.0712 +0 0.0358 +0 0.1116 +0 0.0904 +0 0.1054 +0 0.1994 +0 0.4236 +0 0.1286 +0 0.2793 +0 0.2015 +0 0.1093 +0 0.1620 +0 0.2255 +0 0.1316 +0 0.0803 +0 0.1651 +0 0.0752 +0 0.1657 +0 0.6727 +0 0.0751 +0 0.0666 +0 0.2820 +0 0.1340 +0 0.2974 +0 0.0959 +0 0.0686 +0 0.1193 +0 0.1215 +0 0.1175 +0 0.2503 +0 0.2085 +0 0.1297 +0 0.1082 +0 0.0982 +0 0.0355 +0 0.0888 +0 0.0784 +0 0.0965 +0 0.2817 +0 0.0852 +0 0.0526 +0 0.0459 +0 0.1604 +0 0.0519 +0 0.0954 +0 0.4152 +0 0.0657 +0 0.2919 +0 0.1051 +0 0.1172 +0 0.1394 +0 0.1949 +0 0.0696 +0 0.1979 +0 0.2589 +0 0.1201 +0 0.1142 +0 0.0700 +0 0.2295 +0 0.0541 +0 0.1828 +0 0.1035 +0 0.0786 +0 0.1339 +0 0.1567 +0 0.0799 +0 0.1909 +0 0.0799 +0 0.1292 +0 0.1377 +0 0.1301 +0 0.0748 +0 0.0908 +0 0.0895 +0 0.0703 +0 0.2169 +0 0.0684 +0 0.1436 +0 0.0652 +0 0.0844 +0 0.2563 +0 0.4619 +0 0.1110 +0 0.1697 +0 0.0563 +0 0.1160 +0 0.0664 +0 0.0785 +0 0.1356 +0 0.0518 +0 0.0720 +0 0.0568 +0 0.2170 +0 0.0871 +0 0.3171 +0 0.1609 +0 0.1825 +0 0.0552 +0 0.0966 +0 0.0733 +0 0.5859 +0 0.0716 +0 0.3831 +0 0.1161 +0 0.0526 +0 0.0464 +0 0.0634 +0 0.0903 +0 0.1872 +0 0.1236 +0 0.0775 +0 0.0999 +0 0.1346 +0 0.0524 +0 0.1651 +0 0.2027 +0 0.0541 +0 0.0663 +0 0.0436 +0 0.0633 +0 0.0550 +0 0.0637 +0 0.0991 +0 0.0663 +0 0.1167 +0 0.0901 +0 0.0545 +0 0.1046 +0 0.1073 +0 0.1447 +0 0.0896 +0 0.1632 +0 0.0907 +0 0.2261 +0 0.2115 +0 0.0976 +0 0.1086 +0 0.3994 +0 0.2553 +0 0.0471 +0 0.2707 +0 0.2327 +0 0.0744 +0 0.5173 +0 0.0827 +0 0.2127 +0 0.1405 +0 0.0597 +0 0.0893 +0 0.1387 +0 0.2327 +0 0.0795 +0 0.0825 +0 0.0579 +0 0.0696 +0 0.0835 +0 0.2297 +0 0.2018 +0 0.1171 +0 0.1961 +0 0.0648 +0 0.0721 +0 0.4621 +0 0.2260 +0 0.3129 +0 0.0693 +0 0.1859 +0 0.0961 +0 0.2016 +0 0.1324 +0 0.2962 +0 0.0651 +0 0.6609 +0 0.0509 +0 0.5595 +0 0.0963 +0 0.0560 +0 0.2205 +0 0.4026 +0 0.1910 +0 0.1804 +0 0.0689 +0 0.0365 +0 0.1155 +0 0.0533 +0 0.0445 +0 0.1531 +0 0.0524 +0 0.2878 +0 0.1429 +0 0.0598 +0 0.0828 +0 0.1633 +0 0.2164 +0 0.0734 +0 0.0741 +0 0.0831 +0 0.1113 +0 0.1531 +0 0.7242 +0 0.2136 +0 0.1532 +0 0.2642 +0 0.0839 +0 0.1376 +0 0.1337 +0 0.1337 +0 0.0881 +0 0.1813 +0 0.1950 +0 0.0684 +0 0.2694 +0 0.2061 +0 0.0816 +0 0.1032 +0 0.2385 +0 0.0975 +0 0.0640 +0 0.1104 +0 0.6136 +0 0.0770 +0 0.0356 +0 0.2216 +0 0.1575 +0 0.2817 +0 0.1606 +0 0.0424 +0 0.2526 +0 0.0569 +0 0.0429 +0 0.0869 +0 0.0798 +0 0.0755 +0 0.0845 +0 0.0842 +0 0.0899 +0 0.2105 +0 0.0862 +0 0.2458 +0 0.0950 +0 0.1475 +0 0.1533 +0 0.1024 +0 0.1123 +0 0.0931 +0 0.0684 +0 0.0518 +0 0.0660 +0 0.1437 +0 0.1303 +0 0.0893 +0 0.1022 +0 0.1698 +0 0.1268 +0 0.0973 +0 0.1575 +0 0.0995 +0 0.0393 +0 0.2144 +0 0.0818 +0 0.3895 +0 0.1334 +0 0.1219 +0 0.2344 +0 0.1263 +0 0.1503 +0 0.1379 +0 0.0859 +0 0.7445 +0 0.4784 +0 0.6383 +0 0.0589 +0 0.0981 +0 0.0605 +0 0.0525 +0 0.0726 +0 0.0917 +0 0.0678 +0 0.1675 +0 0.1599 +0 0.0970 +0 0.0738 +0 0.1461 +0 0.1000 +0 0.1956 +0 0.0878 +0 0.0875 +0 0.2129 +0 0.1107 +0 0.0655 +0 0.3591 +0 0.0920 +0 0.0896 +0 0.1879 +0 0.1212 +0 0.0726 +0 0.1762 +0 0.0718 +0 0.4504 +0 0.1664 +0 0.1147 +0 0.0947 +0 0.6020 +0 0.2682 +0 0.2148 +0 0.0833 +0 0.5944 +0 0.0279 +0 0.0900 +0 0.3688 +0 0.0676 +0 0.1192 +0 0.1514 +0 0.0619 +0 0.5436 +0 0.1030 +0 0.2428 +0 0.0446 +0 0.1603 +0 0.1065 +0 0.0382 +0 0.0619 +0 0.0895 +0 0.6258 +0 0.0647 +0 0.0824 +0 0.0840 +0 0.2183 +0 0.0725 +0 0.6627 +0 0.2719 +0 0.1150 +0 0.0892 +0 0.0753 +0 0.0914 +0 0.0502 +0 0.4479 +0 0.0940 +0 0.6193 +0 0.1378 +0 0.2251 +0 0.0813 +0 0.1476 +0 0.0465 +0 0.0765 +0 0.1441 +0 0.0715 +0 0.0577 +0 0.1675 +0 0.0848 +0 0.0963 +0 0.0967 +0 0.4393 +0 0.0788 +0 0.0442 +0 0.1881 +0 0.0850 +0 0.0937 +0 0.1684 +0 0.1153 +0 0.0412 +0 0.4374 +0 0.0608 +0 0.1260 +0 0.0452 +0 0.1446 +0 0.2766 +0 0.1285 +0 0.2768 +0 0.0769 +0 0.1152 +0 0.0326 +0 0.0748 +0 0.0638 +0 0.0668 +0 0.0545 +0 0.1224 +0 0.4094 +0 0.4844 +0 0.0642 +0 0.0628 +0 0.7107 +0 0.6226 +0 0.0835 +0 0.1161 +0 0.0731 +0 0.1274 +0 0.3621 +0 0.0698 +0 0.1610 +0 0.0657 +0 0.1315 +0 0.0744 +0 0.0748 +0 0.1179 +0 0.0495 +0 0.0695 +0 0.2254 +0 0.0766 +0 0.0988 +0 0.1351 +0 0.1069 +0 0.0606 +0 0.0482 +0 0.3362 +0 0.0983 +0 0.0810 +0 0.2083 +0 0.1487 +1 0.7661 +0 0.0526 +0 0.1753 +0 0.2041 +0 0.1484 +0 0.1604 +0 0.2831 +0 0.0752 +0 0.4876 +0 0.0619 +0 0.0966 +0 0.2381 +0 0.0415 +0 0.1781 +0 0.1106 +0 0.2505 +0 0.0631 +0 0.1310 +0 0.1109 +0 0.0378 +0 0.0991 +0 0.1560 +0 0.1123 +0 0.0508 +0 0.6742 +0 0.0334 +0 0.0769 +0 0.0796 +0 0.5977 +0 0.0837 +0 0.0307 +0 0.0636 +0 0.7401 +0 0.0466 +0 0.0877 +0 0.0731 +0 0.2145 +0 0.1987 +0 0.0617 +0 0.1823 +0 0.0401 +0 0.0890 +0 0.3036 +0 0.1021 +0 0.1296 +0 0.0551 +0 0.0710 +0 0.0975 +0 0.1280 +0 0.0852 +0 0.0606 +0 0.1357 +0 0.0513 +0 0.0807 +0 0.0430 +0 0.1348 +0 0.0804 +0 0.1286 +0 0.0943 +0 0.1418 +0 0.0684 +0 0.1002 +0 0.2613 +0 0.0959 +0 0.0384 +0 0.0582 +0 0.1990 +0 0.0729 +0 0.2057 +0 0.0893 +0 0.0981 +0 0.0857 +0 0.1463 +0 0.2158 +0 0.1288 +0 0.0583 +0 0.0462 +0 0.3230 +0 0.0540 +0 0.3751 +0 0.7144 +0 0.0923 +0 0.2733 +0 0.0993 +0 0.1790 +0 0.1709 +0 0.0956 +0 0.0448 +0 0.0694 +0 0.1218 +0 0.1542 +0 0.0415 +1 0.8612 +0 0.1018 +1 0.8511 +0 0.1267 +0 0.0878 +0 0.0685 +0 0.1003 +0 0.1776 +0 0.2437 +0 0.0831 +0 0.1372 +0 0.0538 +0 0.1100 +0 0.0757 +0 0.1928 +0 0.0440 +0 0.1510 +0 0.1708 +0 0.2510 +0 0.0722 +0 0.0697 +0 0.0463 +0 0.0721 +0 0.0893 +0 0.1477 +0 0.1829 +0 0.4962 +0 0.0982 +0 0.0340 +0 0.0818 +0 0.2196 +0 0.1103 +0 0.0960 +0 0.1811 +0 0.0742 +0 0.4534 +0 0.1779 +0 0.1370 +0 0.0525 +0 0.0774 +0 0.1987 +0 0.1084 +0 0.0903 +0 0.7360 +0 0.1694 +0 0.1031 +0 0.3130 +0 0.1852 +0 0.0562 +0 0.3866 +0 0.1807 +0 0.0927 +0 0.1221 +0 0.1691 +0 0.1376 +0 0.0657 +0 0.0991 +0 0.1604 +0 0.2820 +0 0.0768 +0 0.0759 +0 0.2111 +0 0.2802 +0 0.2234 +0 0.0979 +0 0.0791 +0 0.0519 +0 0.0409 +0 0.2360 +0 0.0811 +0 0.4857 +0 0.0474 +0 0.0716 +0 0.0886 +0 0.0954 +0 0.0562 +0 0.0629 +0 0.0814 +0 0.0434 +0 0.0800 +0 0.1202 +0 0.0647 +0 0.1540 +0 0.0773 +0 0.2136 +0 0.0550 +0 0.1319 +0 0.0851 +0 0.0873 +0 0.0521 +0 0.0658 +0 0.1590 +0 0.2379 +0 0.0333 +0 0.1753 +0 0.0699 +0 0.0787 +1 0.7875 +0 0.5013 +0 0.0439 +0 0.0731 +0 0.1309 +0 0.2105 +0 0.2125 +0 0.0434 +0 0.1903 +0 0.0542 +0 0.0589 +0 0.0516 +0 0.0688 +0 0.1404 +0 0.0560 +1 0.7849 +0 0.2349 +0 0.1265 +0 0.1281 +0 0.1585 +0 0.1002 +0 0.2612 +0 0.0771 +0 0.0831 +0 0.0916 +0 0.0718 +0 0.0557 +0 0.4158 +0 0.0898 +0 0.1762 +1 0.7773 +0 0.1596 +0 0.2241 +0 0.0572 +0 0.0739 +0 0.0946 +0 0.0724 +0 0.1779 +0 0.1293 +0 0.1211 +0 0.3223 +0 0.1814 +0 0.1042 +0 0.0770 +0 0.0488 +0 0.1871 +0 0.4898 +0 0.1753 +0 0.0515 +0 0.2651 +0 0.2358 +0 0.1280 +0 0.2471 +0 0.0904 +0 0.2258 +0 0.0950 +0 0.0931 +0 0.1115 +0 0.0680 +0 0.2113 +0 0.0832 +0 0.1013 +0 0.0777 +0 0.1153 +0 0.0852 +0 0.1157 +0 0.0462 +0 0.0731 +0 0.3326 +0 0.2425 +0 0.0740 +0 0.0537 +0 0.0883 +0 0.1587 +0 0.0648 +0 0.1363 +0 0.0921 +0 0.1165 +0 0.2934 +0 0.3115 +0 0.1287 +0 0.0688 +0 0.1002 +0 0.1390 +0 0.1714 +0 0.1086 +0 0.0488 +0 0.0657 +0 0.0942 +0 0.0661 +0 0.0538 +0 0.0908 +0 0.0761 +0 0.0742 +0 0.4455 +0 0.1011 +0 0.1446 +0 0.1366 +0 0.1790 +0 0.1616 +0 0.1599 +0 0.0987 +0 0.0718 +0 0.3920 +0 0.2002 +0 0.0642 +0 0.3672 +0 0.0846 +0 0.0934 +0 0.0446 +0 0.1114 +0 0.4061 +0 0.1030 +0 0.0378 +0 0.1056 +0 0.0660 +0 0.0920 +0 0.1221 +0 0.2172 +0 0.0595 +0 0.1260 +0 0.2530 +0 0.0786 +0 0.4262 +0 0.0549 +0 0.0885 +0 0.0384 +0 0.1022 +0 0.0444 +0 0.0845 +0 0.1447 +0 0.0856 +0 0.0896 +0 0.0839 +0 0.0713 +0 0.0829 +0 0.1033 +0 0.0713 +0 0.0765 +0 0.1461 +0 0.1513 +0 0.1554 +0 0.0858 +0 0.1361 +0 0.0646 +0 0.6348 +0 0.1785 +0 0.0640 +0 0.0775 +0 0.0612 +0 0.1489 +0 0.0636 +0 0.0787 +0 0.1325 +0 0.4231 +0 0.0767 +0 0.1503 +0 0.2782 +0 0.0698 +0 0.1286 +0 0.0585 +0 0.2384 +0 0.0547 +0 0.1697 +0 0.1816 +0 0.1156 +0 0.1663 +0 0.0996 +0 0.2357 +0 0.0858 +0 0.0932 +0 0.1120 +0 0.0847 +0 0.0662 +0 0.0552 +0 0.2628 +0 0.3746 +0 0.2333 +0 0.0849 +0 0.2368 +0 0.1327 +0 0.1988 +0 0.0755 +0 0.2580 +0 0.0618 +0 0.1580 +0 0.1192 +0 0.0771 +0 0.0604 +0 0.0748 +0 0.0752 +0 0.2512 +0 0.1242 +0 0.0895 +0 0.1398 +0 0.1710 +0 0.0930 +0 0.2060 +0 0.1724 +0 0.0554 +0 0.1066 +0 0.0467 +0 0.0379 +0 0.0651 +0 0.1014 +0 0.5410 +0 0.0919 +0 0.0969 +0 0.0762 +0 0.0934 +0 0.1420 +0 0.1745 +0 0.0908 +0 0.3689 +0 0.2142 +0 0.0485 +0 0.0945 +0 0.1566 +0 0.2683 +0 0.0853 +0 0.0823 +0 0.1335 +0 0.2073 +0 0.0300 +0 0.0886 +0 0.1703 +0 0.0717 +0 0.1689 +0 0.0739 +0 0.0850 +0 0.0924 +1 0.8521 +0 0.0659 +0 0.0712 +0 0.0518 +0 0.1595 +0 0.2544 +0 0.0621 +0 0.3260 +0 0.1876 +0 0.0684 +0 0.0888 +0 0.2130 +0 0.1108 +0 0.2203 +0 0.0823 +0 0.0422 +0 0.0512 +0 0.0858 +0 0.1165 +0 0.1365 +0 0.1682 +0 0.0741 +0 0.1204 +0 0.0836 +0 0.2499 +0 0.1797 +0 0.0953 +0 0.0467 +0 0.1698 +0 0.0707 +0 0.0760 +0 0.0945 +0 0.0675 +0 0.0682 +0 0.0997 +0 0.1170 +0 0.0749 +0 0.2105 +0 0.4275 +0 0.0774 +0 0.1137 +0 0.1304 +0 0.1349 +0 0.0837 +0 0.0572 +0 0.0953 +0 0.1858 +0 0.0977 +0 0.0999 +0 0.2643 +0 0.2220 +0 0.1168 +0 0.1836 +0 0.0535 +0 0.0899 +0 0.0807 +0 0.1199 +0 0.2579 +0 0.0978 +0 0.0766 +0 0.0644 +0 0.0944 +0 0.1224 +0 0.0735 +0 0.0926 +0 0.1408 +0 0.0908 +0 0.4775 +0 0.0550 +0 0.2749 +0 0.3643 +0 0.0867 +0 0.0746 +0 0.0802 +0 0.0893 +0 0.1195 +0 0.3858 +0 0.2889 +0 0.0736 +0 0.0561 +0 0.1133 +0 0.0672 +0 0.0991 +0 0.0582 +0 0.4373 +0 0.1324 +0 0.5517 +0 0.1283 +0 0.3200 +0 0.0604 +0 0.0788 +0 0.2896 +0 0.0389 +0 0.1284 +0 0.0685 +0 0.1714 +0 0.2265 +0 0.0364 +0 0.0583 +0 0.0475 +0 0.1819 +0 0.0526 +0 0.1138 +0 0.0664 +0 0.1084 +0 0.1080 +0 0.3578 +0 0.4124 +0 0.0795 +0 0.0643 +0 0.1913 +0 0.1154 +0 0.3746 +0 0.1080 +0 0.1490 +0 0.2167 +0 0.1347 +0 0.0366 +1 0.8338 +0 0.2477 +0 0.1219 +0 0.0643 +0 0.1233 +0 0.0799 +0 0.0700 +0 0.0767 +0 0.1310 +0 0.0484 +0 0.0901 +0 0.4259 +0 0.1243 +0 0.3138 +0 0.3000 +0 0.0561 +0 0.0665 +0 0.0466 +0 0.1004 +0 0.5425 +0 0.1069 +0 0.0825 +0 0.1737 +0 0.1620 +0 0.1216 +0 0.0580 +0 0.0392 +0 0.2427 +0 0.1132 +0 0.1673 +0 0.1344 +0 0.4108 +0 0.1233 +0 0.1427 +0 0.0327 +0 0.2492 +0 0.0490 +0 0.2107 +0 0.0861 +0 0.1127 +0 0.1345 +0 0.1147 +0 0.0894 +0 0.0499 +0 0.0519 +0 0.6227 +0 0.0471 +0 0.0819 +0 0.0991 +0 0.1266 +0 0.1492 +0 0.0582 +0 0.2163 +0 0.0491 +0 0.3020 +1 0.8489 +0 0.2482 +0 0.7463 +0 0.0635 +0 0.1002 +0 0.1497 +0 0.0595 +0 0.1649 +0 0.1012 +0 0.5039 +0 0.1020 +0 0.0647 +0 0.1306 +0 0.1852 +0 0.0962 +0 0.0388 +0 0.0607 +0 0.1415 +0 0.0540 +0 0.0449 +0 0.1394 +0 0.2533 +0 0.4264 +0 0.1640 +0 0.1401 +0 0.0725 +0 0.0521 +0 0.0446 +0 0.2412 +0 0.0601 +0 0.0930 +0 0.1860 +0 0.1294 +0 0.2683 +0 0.0754 +0 0.1382 +0 0.0554 +0 0.1107 +0 0.1382 +0 0.0622 +0 0.0737 +0 0.0814 +0 0.0882 +0 0.0824 +0 0.2474 +0 0.1621 +0 0.2114 +0 0.2877 +0 0.5755 +0 0.0983 +0 0.0715 +0 0.0733 +0 0.1372 +0 0.1509 +0 0.0734 +0 0.0970 +0 0.1518 +0 0.1823 +0 0.6995 +0 0.1613 +0 0.1050 +0 0.1526 +0 0.0731 +0 0.0500 +0 0.3975 +0 0.4306 +0 0.2557 +0 0.3381 +0 0.1047 +0 0.0533 +0 0.0924 +0 0.2340 +0 0.0879 +0 0.0631 +0 0.0650 +0 0.1834 +0 0.1082 +0 0.1674 +0 0.0737 +0 0.1147 +0 0.0419 +0 0.1029 +0 0.2142 +0 0.1269 +0 0.0944 +0 0.2039 +0 0.2230 +0 0.1350 +0 0.0518 +0 0.1391 +0 0.0787 +0 0.0861 +0 0.1391 +0 0.0797 +0 0.0957 +0 0.0729 +0 0.1239 +0 0.4832 +0 0.0722 +0 0.0679 +0 0.0844 +0 0.0615 +0 0.1829 +0 0.0888 +0 0.2397 +0 0.2536 +0 0.1966 +0 0.0704 +0 0.0771 +0 0.1231 +0 0.1279 +0 0.0864 +0 0.2355 +0 0.1371 +0 0.0655 +0 0.0713 +0 0.0770 +0 0.1161 +0 0.2040 +0 0.2608 +0 0.0704 +0 0.1347 +0 0.1140 +0 0.1454 +0 0.1165 +0 0.0702 +0 0.0575 +0 0.0768 +0 0.0496 +0 0.0783 +0 0.0467 +0 0.0404 +0 0.1420 +0 0.1074 +0 0.3349 +1 0.8466 +0 0.0958 +0 0.1752 +0 0.1322 +0 0.2184 +0 0.0787 +0 0.1005 +1 0.8497 +0 0.0823 +0 0.3557 +0 0.0956 +0 0.2957 +0 0.1007 +0 0.0451 +0 0.0946 +0 0.1065 +0 0.1707 +0 0.2315 +0 0.0424 +0 0.1666 +0 0.3128 +0 0.0736 +0 0.5572 +0 0.2505 +0 0.1465 +0 0.1197 +0 0.2362 +0 0.0471 +0 0.1330 +0 0.0300 +0 0.0485 +0 0.0830 +0 0.7428 +0 0.1632 +0 0.0607 +0 0.1578 +0 0.0843 +0 0.1337 +0 0.0644 +0 0.0430 +0 0.1506 +0 0.0585 +0 0.0946 +0 0.0675 +0 0.2418 +0 0.1435 +0 0.1111 +0 0.7072 +0 0.2815 +0 0.2903 +0 0.0892 +0 0.0465 +0 0.0773 +0 0.1336 +0 0.1228 +0 0.0861 +0 0.6650 +0 0.1594 +0 0.0422 +0 0.0954 +0 0.0610 +0 0.5093 +0 0.6786 +0 0.6370 +0 0.1632 +0 0.2882 +0 0.1387 +0 0.0783 +0 0.0650 +0 0.0969 +0 0.0497 +0 0.3428 +0 0.1047 +0 0.0846 +0 0.1027 +0 0.1191 +0 0.1793 +0 0.1671 +0 0.2512 +0 0.2998 +0 0.0522 +0 0.1022 +0 0.0565 +0 0.1177 +0 0.0873 +0 0.1453 +0 0.1179 +0 0.1597 +0 0.0334 +0 0.0664 +0 0.0556 +0 0.2318 +0 0.1690 +0 0.0662 +0 0.0659 +0 0.1185 +0 0.2436 +0 0.0791 +0 0.0287 +0 0.3242 +0 0.2278 +0 0.0447 +0 0.1001 +0 0.1143 +0 0.2112 +0 0.0744 +0 0.2298 +0 0.1075 +0 0.1540 +0 0.1082 +0 0.0493 +0 0.0602 +0 0.0976 +0 0.1165 +0 0.1025 +0 0.2724 +0 0.5672 +0 0.3677 +0 0.3484 +0 0.1621 +0 0.1210 +0 0.1222 +0 0.0979 +0 0.1502 +0 0.0779 +0 0.0368 +0 0.1519 +0 0.0964 +0 0.1381 +0 0.1093 +0 0.1931 +0 0.0512 +0 0.2023 +0 0.2850 +0 0.2570 +0 0.0632 +0 0.0846 +0 0.2434 +0 0.1012 +0 0.1030 +0 0.1589 +0 0.0562 +0 0.2248 +0 0.2307 +0 0.1100 +0 0.1573 +0 0.0728 +0 0.1278 +0 0.1940 +0 0.2240 +0 0.0492 +0 0.2009 +0 0.1037 +0 0.0907 +0 0.0397 +0 0.1218 +0 0.1090 +0 0.0787 +0 0.0613 +0 0.1452 +0 0.1604 +0 0.0829 +0 0.0751 +0 0.1103 +0 0.0903 +0 0.1204 +0 0.1081 +0 0.1428 +0 0.1903 +0 0.1051 +0 0.1080 +0 0.0931 +0 0.3871 +0 0.1260 +0 0.0768 +0 0.1092 +0 0.0623 +0 0.1439 +0 0.2118 +0 0.0973 +0 0.2378 +0 0.0700 +0 0.0659 +0 0.0719 +0 0.1372 +0 0.2611 +0 0.0553 +0 0.0631 +0 0.1199 +0 0.2922 +0 0.1997 +0 0.0577 +0 0.1751 +0 0.0782 +0 0.0879 +0 0.1499 +0 0.0389 +0 0.1113 +0 0.2003 +0 0.0385 +0 0.1433 +0 0.2585 +1 0.8088 +0 0.2112 +0 0.0980 +0 0.2176 +0 0.1027 +0 0.0530 +0 0.4351 +0 0.0904 +0 0.1600 +0 0.0509 +0 0.2270 +0 0.1190 +0 0.0638 +0 0.0413 +0 0.0539 +0 0.1039 +0 0.2281 +0 0.0556 +0 0.1362 +0 0.0747 +0 0.0906 +0 0.0918 +0 0.0424 +0 0.0666 +0 0.1095 +0 0.0792 +0 0.2655 +0 0.1206 +0 0.0624 +0 0.1231 +0 0.1380 +0 0.0864 +0 0.4517 +0 0.0984 +0 0.0809 +0 0.1131 +0 0.0770 +0 0.1017 +0 0.1334 +0 0.1164 +0 0.0465 +0 0.1464 +0 0.0781 +0 0.1189 +0 0.3844 +0 0.0392 +0 0.0942 +0 0.3806 +0 0.0786 +0 0.0970 +0 0.0937 +0 0.1748 +0 0.0797 +0 0.1089 +0 0.0624 +0 0.1059 +0 0.0585 +0 0.3494 +0 0.1351 +0 0.0817 +0 0.0667 +0 0.1853 +0 0.2197 +0 0.4079 +0 0.4380 +0 0.2866 +0 0.0533 +0 0.1237 +0 0.0993 +0 0.3015 +0 0.1003 +0 0.0470 +0 0.1506 +0 0.0819 +0 0.3069 +0 0.1158 +0 0.0523 +0 0.0672 +0 0.3915 +0 0.0685 +0 0.0663 +0 0.0913 +0 0.2343 +0 0.0824 +0 0.1218 +0 0.0612 +0 0.1105 +0 0.0705 +0 0.0695 +0 0.0335 +0 0.0936 +0 0.1433 +0 0.6399 +0 0.0781 +0 0.0542 +0 0.1480 +0 0.1728 +0 0.0517 +0 0.0792 +0 0.0663 +0 0.1535 +0 0.0405 +0 0.1295 +0 0.1436 +0 0.1554 +0 0.1124 +0 0.1043 +0 0.3519 +0 0.0837 +0 0.1227 +0 0.4975 +0 0.0441 +0 0.0872 +0 0.1910 +0 0.2446 +0 0.2829 +0 0.2115 +0 0.0503 +0 0.3538 +0 0.2192 +0 0.4811 +0 0.6215 +0 0.7465 +0 0.0888 +1 0.8267 +0 0.1077 +0 0.1071 +0 0.0698 +0 0.0582 +0 0.0444 +0 0.0870 +0 0.0913 +0 0.2158 +0 0.0950 +0 0.0526 +0 0.2430 +0 0.0500 +0 0.3536 +0 0.0889 +0 0.1132 +0 0.1698 +0 0.0889 +0 0.0659 +0 0.0647 +0 0.2925 +0 0.0834 +0 0.2720 +0 0.1050 +0 0.1172 +0 0.1617 +0 0.0624 +0 0.0792 +0 0.0653 +0 0.0696 +0 0.0569 +0 0.6851 +1 0.7827 +0 0.0753 +0 0.1291 +0 0.0563 +0 0.1299 +0 0.1279 +0 0.1616 +0 0.0693 +0 0.1365 +0 0.0707 +0 0.0411 +0 0.0955 +0 0.1230 +0 0.1000 +0 0.1109 +0 0.0495 +0 0.1360 +0 0.0651 +0 0.0869 +0 0.0867 +0 0.0367 +0 0.5759 +0 0.1377 +0 0.2002 +0 0.0578 +0 0.0561 +0 0.1199 +0 0.1671 +0 0.4037 +0 0.1703 +0 0.0926 +0 0.2218 +0 0.1003 +0 0.0539 +0 0.0918 +0 0.0782 +0 0.1722 +0 0.0767 +0 0.1109 +0 0.0546 +0 0.1861 +0 0.0978 +0 0.0385 +0 0.0439 +0 0.0790 +0 0.0982 +0 0.0939 +0 0.1832 +0 0.2202 +0 0.0510 +0 0.0969 +0 0.0598 +0 0.0837 +0 0.0509 +0 0.0770 +0 0.0862 +0 0.0992 +0 0.0633 +0 0.0887 +0 0.1802 +0 0.0502 +0 0.0541 +0 0.0938 +0 0.1200 +0 0.0957 +0 0.0768 +0 0.1639 +0 0.0470 +0 0.6765 +0 0.0369 +0 0.0953 +0 0.0624 +0 0.0720 +0 0.4907 +0 0.0762 +0 0.7198 +0 0.0802 +1 0.8267 +0 0.0803 +0 0.0519 +0 0.1883 +0 0.1073 +0 0.1409 +0 0.0828 +0 0.1798 +0 0.0681 +0 0.1300 +0 0.1019 +0 0.0384 +0 0.0792 +0 0.1073 +0 0.1252 +0 0.1271 +0 0.1539 +0 0.2488 +0 0.2567 +0 0.0666 +0 0.0746 +0 0.1853 +0 0.2225 +0 0.0553 +0 0.0640 +0 0.3549 +0 0.0717 +0 0.0567 +0 0.5780 +0 0.0734 +0 0.0990 +0 0.2173 +0 0.1072 +0 0.0456 +0 0.1336 +0 0.1102 +0 0.1600 +0 0.5536 +0 0.0722 +0 0.0975 +0 0.2396 +0 0.1567 +0 0.1988 +0 0.1125 +0 0.1145 +0 0.1393 +0 0.1464 +0 0.0510 +0 0.0615 +0 0.1798 +0 0.1672 +0 0.0930 +0 0.0913 +0 0.0909 +0 0.6369 +0 0.0701 +0 0.1225 +0 0.0468 +0 0.0909 +0 0.0853 +0 0.0547 +0 0.1038 +0 0.0611 +0 0.1106 +0 0.0717 +0 0.2038 +0 0.1985 +0 0.0729 +0 0.1274 +0 0.1753 +0 0.1139 +0 0.1983 +0 0.0939 +0 0.1832 +0 0.1064 +0 0.1727 +0 0.5739 +0 0.1059 +0 0.0490 +0 0.1329 +0 0.0870 +0 0.0548 +0 0.0621 +0 0.0830 +0 0.1416 +0 0.1323 +0 0.0669 +0 0.6172 +0 0.1547 +0 0.3227 +0 0.0469 +0 0.0613 +0 0.0777 +0 0.1193 +0 0.2075 +0 0.1216 +0 0.0793 +0 0.2706 +0 0.0918 +0 0.0886 +0 0.0841 +0 0.0941 +0 0.0692 +0 0.0761 +0 0.1177 +0 0.1448 +0 0.0618 +0 0.1301 +0 0.1341 +0 0.0496 +0 0.1270 +0 0.0392 +0 0.0718 +0 0.0445 +0 0.6012 +0 0.1810 +0 0.1410 +0 0.1450 +0 0.1336 +0 0.5947 +0 0.4467 +0 0.4325 +0 0.2412 +0 0.0516 +0 0.0679 +0 0.1124 +0 0.1583 +0 0.1006 +0 0.1543 +0 0.0474 +0 0.0954 +0 0.1536 +0 0.0974 +0 0.0886 +0 0.0633 +0 0.6349 +0 0.0698 +0 0.0889 +0 0.1294 +0 0.0803 +1 0.7891 +0 0.1981 +0 0.0461 +0 0.0833 +0 0.0779 +0 0.0834 +0 0.0412 +0 0.0910 +0 0.4265 +0 0.1646 +0 0.0634 +0 0.0760 +0 0.2264 +0 0.4916 +0 0.0721 +0 0.0831 +0 0.1124 +0 0.0451 +0 0.1786 +0 0.1033 +0 0.0965 +0 0.1093 +0 0.0913 +0 0.0721 +0 0.1178 +0 0.0930 +0 0.1092 +0 0.1117 +0 0.0637 +0 0.0349 +0 0.0669 +0 0.0579 +0 0.2411 +0 0.1872 +0 0.1636 +0 0.0623 +0 0.2739 +0 0.1144 +0 0.1132 +0 0.1243 +0 0.1492 +0 0.0481 +0 0.2444 +0 0.1405 +0 0.0667 +0 0.0342 +0 0.0700 +0 0.1278 +0 0.1915 +0 0.0614 +0 0.1485 +0 0.0853 +0 0.0861 +0 0.1363 +0 0.2760 +0 0.0805 +0 0.0858 +0 0.1555 +0 0.2204 +0 0.0478 +0 0.0704 +0 0.1774 +0 0.1243 +0 0.3198 +0 0.2414 +0 0.2626 +0 0.1200 +0 0.1173 +0 0.0853 +0 0.1352 +0 0.1191 +0 0.7435 +0 0.0954 +0 0.0522 +0 0.0536 +0 0.0668 +0 0.0897 +0 0.0948 +0 0.1239 +0 0.1355 +0 0.1456 +0 0.0763 +0 0.3098 +0 0.2668 +0 0.2347 +0 0.7119 +0 0.0655 +0 0.0802 +0 0.1044 +0 0.1773 +0 0.0611 +0 0.0858 +0 0.0610 +0 0.0876 +0 0.0740 +0 0.0419 +0 0.0768 +0 0.5264 +0 0.0902 +0 0.0454 +0 0.0676 +0 0.2677 +0 0.1240 +0 0.0857 +0 0.0540 +0 0.0996 +0 0.1161 +0 0.0660 +0 0.0460 +0 0.1251 +0 0.0573 +0 0.1837 +0 0.0460 +1 0.8480 +0 0.0760 +0 0.0750 +1 0.7773 +0 0.0812 +0 0.0738 +0 0.1321 +0 0.0588 +0 0.1540 +0 0.1541 +0 0.3757 +0 0.0906 +0 0.0470 +0 0.2246 +0 0.0704 +0 0.1566 +0 0.2336 +0 0.0410 +0 0.0484 +0 0.0646 +0 0.1652 +0 0.2045 +0 0.1898 +0 0.0401 +0 0.2904 +0 0.1059 +0 0.0615 +0 0.2769 +0 0.0838 +0 0.0806 +0 0.0788 +0 0.1872 +0 0.1619 +0 0.0665 +0 0.1850 +0 0.1119 +0 0.1084 +0 0.5113 +0 0.1919 +0 0.3405 +0 0.1111 +0 0.0496 +0 0.1486 +0 0.0771 +0 0.2758 +0 0.0969 +0 0.0817 +1 0.7945 +0 0.0841 +0 0.1234 +0 0.0699 +0 0.0441 +0 0.2947 +0 0.0435 +0 0.0582 +0 0.6476 +0 0.1015 +0 0.0849 +0 0.0842 +0 0.1043 +0 0.3402 +0 0.0961 +0 0.0747 +0 0.2524 +0 0.2307 +0 0.0792 +0 0.0781 +0 0.0401 +0 0.1998 +0 0.1013 +0 0.0597 +0 0.0647 +0 0.0917 +0 0.1635 +0 0.1266 +0 0.2350 +0 0.1609 +0 0.0816 +0 0.1084 +0 0.3363 +0 0.0358 +0 0.0570 +0 0.0872 +0 0.6711 +0 0.0418 +0 0.0798 +0 0.1836 +0 0.0426 +0 0.1656 +0 0.0633 +0 0.1280 +0 0.0959 +0 0.1793 +0 0.4364 +0 0.2818 +0 0.1102 +0 0.0719 +0 0.0582 +0 0.2967 +0 0.1821 +0 0.0473 +0 0.2211 +0 0.1157 +0 0.3214 +0 0.0515 +0 0.0742 +0 0.0601 +0 0.1812 +0 0.1535 +0 0.0875 +0 0.0992 +0 0.1580 +0 0.1724 +0 0.1575 +0 0.1075 +0 0.1119 +0 0.0566 +0 0.1950 +0 0.0784 +0 0.0569 +0 0.1197 +0 0.1165 +0 0.0864 +0 0.1854 +0 0.0671 +0 0.1160 +1 0.8008 +0 0.1691 +0 0.0952 +0 0.1319 +0 0.4988 +0 0.0699 +0 0.1421 +0 0.0471 +0 0.2091 +0 0.0652 +0 0.0801 +0 0.0939 +0 0.0743 +0 0.0743 +0 0.0769 +0 0.1598 +0 0.0921 +0 0.0855 +0 0.3375 +0 0.0642 +0 0.1223 +0 0.0914 +0 0.0729 +0 0.0940 +0 0.0740 +0 0.0728 +0 0.1709 +0 0.0708 +0 0.1015 +0 0.1470 +0 0.1127 +0 0.0564 +0 0.0604 +0 0.2035 +0 0.0637 +0 0.2889 +0 0.1318 +0 0.0902 +0 0.0672 +0 0.1029 +0 0.1914 +0 0.0893 +0 0.1075 +0 0.0622 +0 0.1249 +0 0.2136 +0 0.0639 +0 0.5230 +0 0.1033 +0 0.0689 +0 0.0714 +0 0.0573 +0 0.1786 +0 0.1691 +0 0.0491 +0 0.1190 +0 0.1467 +0 0.0620 +0 0.1007 +0 0.1875 +0 0.0937 +0 0.0670 +0 0.0707 +0 0.1547 +0 0.1030 +0 0.0647 +0 0.0730 +0 0.0507 +0 0.1280 +0 0.0929 +0 0.1627 +0 0.0512 +0 0.1322 +0 0.1205 +0 0.0518 +0 0.1401 +0 0.0835 +0 0.1677 +0 0.2296 +0 0.0747 +0 0.0840 +0 0.0507 +0 0.5605 +0 0.1216 +0 0.0693 +0 0.1336 +0 0.5738 +0 0.2939 +0 0.0796 +0 0.1956 +0 0.0827 +0 0.1284 +0 0.0792 +0 0.0921 +0 0.1502 +0 0.1598 +0 0.1027 +0 0.1138 +0 0.0767 +0 0.0951 +0 0.1048 +0 0.1647 +0 0.1457 +0 0.4114 +0 0.0629 +0 0.0931 +0 0.1556 +0 0.1848 +0 0.0905 +0 0.1539 +0 0.1188 +0 0.0780 +0 0.0420 +0 0.0687 +0 0.5819 +0 0.0813 +0 0.2340 +0 0.0499 +0 0.6130 +0 0.1587 +0 0.1588 +0 0.1150 +0 0.1365 +0 0.0710 +0 0.0409 +0 0.2571 +0 0.0419 +1 0.8570 +0 0.1020 +0 0.1039 +0 0.1165 +0 0.1833 +0 0.0542 +0 0.0555 +0 0.2256 +0 0.0837 +0 0.0614 +0 0.0394 +0 0.1428 +0 0.1902 +0 0.0962 +0 0.0386 +0 0.1256 +0 0.0659 +0 0.0686 +0 0.1217 +0 0.2567 +0 0.6779 +0 0.0961 +0 0.0667 +0 0.0384 +0 0.1067 +0 0.0723 +0 0.0964 +0 0.0490 +0 0.1190 +0 0.0686 +0 0.2425 +0 0.0992 +0 0.0710 +0 0.0969 +0 0.1925 +0 0.0602 +0 0.0790 +0 0.0457 +0 0.2283 +1 0.7923 +0 0.0638 +0 0.0829 +0 0.1732 +0 0.1245 +0 0.0637 +0 0.1672 +0 0.1038 +0 0.0507 +0 0.1508 +0 0.0568 +0 0.1404 +0 0.1790 +0 0.1283 +0 0.1426 +0 0.0580 +0 0.0588 +0 0.0875 +0 0.1063 +0 0.1096 +0 0.2840 +1 0.7563 +0 0.1089 +0 0.0704 +0 0.1947 +0 0.1171 +0 0.0911 +0 0.1736 +0 0.1937 +0 0.3853 +0 0.0375 +0 0.0405 +0 0.1853 +0 0.1491 +0 0.1252 +0 0.1024 +0 0.6755 +0 0.2991 +0 0.2053 +0 0.0946 +0 0.0876 +0 0.1905 +0 0.1307 +0 0.1272 +0 0.0861 +0 0.2838 +0 0.1797 +0 0.2949 +0 0.0946 +0 0.1004 +0 0.0661 +0 0.1668 +0 0.1519 +0 0.1234 +0 0.1437 +0 0.0547 +0 0.0796 +0 0.0450 +0 0.0915 +1 0.8207 +0 0.0360 +0 0.0400 +0 0.0898 +0 0.0917 +0 0.1416 +0 0.1095 +0 0.0756 +0 0.1280 +0 0.0628 +0 0.2317 +0 0.1204 +0 0.3961 +0 0.0575 +0 0.0456 +0 0.1093 +0 0.2552 +0 0.0464 +0 0.1757 +0 0.1439 +0 0.3973 +0 0.4593 +0 0.7360 +0 0.2255 +0 0.1128 +0 0.1019 +0 0.0971 +0 0.1748 +1 0.8176 +0 0.0957 +0 0.5204 +1 0.7861 +0 0.1831 +0 0.0408 +0 0.2420 +0 0.0656 +0 0.0778 +0 0.1316 +0 0.1884 +0 0.0520 +0 0.0777 +0 0.0656 +0 0.2721 +0 0.0617 +0 0.1405 +0 0.1163 +0 0.5234 +0 0.1217 +0 0.1385 +0 0.0841 +0 0.1081 +0 0.0657 +0 0.0926 +0 0.0909 +0 0.0684 +0 0.1038 +0 0.0670 +1 0.7554 +0 0.0868 +0 0.0946 +0 0.1231 +0 0.2935 +0 0.0574 +0 0.2499 +0 0.0759 +0 0.0953 +0 0.1334 +0 0.0752 +0 0.0688 +0 0.1016 +0 0.0468 +0 0.1436 +0 0.1215 +0 0.0518 +0 0.0756 +0 0.0908 +0 0.0550 +0 0.7126 +0 0.0838 +0 0.1795 +0 0.2403 +0 0.1303 +0 0.1126 +0 0.1010 +0 0.4534 +0 0.0539 +0 0.2960 +0 0.1859 +0 0.3314 +0 0.0660 +0 0.3128 +0 0.2782 +0 0.0742 +0 0.0959 +0 0.2126 +0 0.0825 +0 0.1236 +0 0.1137 +0 0.1248 +0 0.1144 +0 0.1052 +0 0.1092 +0 0.1500 +0 0.2479 +1 0.8079 +0 0.2069 +0 0.2576 +0 0.2917 +0 0.0942 +1 0.8467 +0 0.0886 +0 0.1373 +0 0.0426 +0 0.1297 +0 0.2397 +0 0.2469 +0 0.0841 +0 0.1759 +0 0.1291 +0 0.0607 +0 0.0660 +0 0.1964 +0 0.0973 +0 0.1524 +0 0.1407 +0 0.1486 +0 0.0519 +0 0.0483 +0 0.0449 +0 0.0483 +0 0.0474 +0 0.0752 +0 0.0432 +0 0.2693 +0 0.1258 +0 0.0841 +0 0.2307 +0 0.1814 +0 0.1454 +0 0.2125 +0 0.2349 +0 0.2374 +0 0.0702 +0 0.1208 +0 0.0484 +0 0.0671 +0 0.0609 +0 0.2675 +0 0.2339 +0 0.4898 +0 0.1431 +0 0.1363 +0 0.2299 +0 0.0708 +0 0.2319 +0 0.2576 +0 0.1387 +0 0.1940 +0 0.0576 +0 0.0476 +0 0.0516 +0 0.1404 +0 0.0521 +0 0.1024 +0 0.0686 +0 0.4206 +0 0.0799 +0 0.1452 +0 0.0336 +0 0.1142 +0 0.1473 +0 0.0714 +0 0.0522 +0 0.1511 +0 0.1163 +0 0.0396 +0 0.0549 +0 0.0739 +0 0.0751 +0 0.5604 +0 0.1659 +0 0.1772 +0 0.0839 +0 0.6594 +0 0.0812 +0 0.1401 +0 0.1083 +0 0.3010 +0 0.0486 +0 0.0803 +0 0.0917 +0 0.0671 +0 0.0696 +0 0.0357 +0 0.0384 +0 0.4940 +0 0.1050 +0 0.0560 +0 0.5691 +0 0.0762 +0 0.2265 +0 0.0917 +0 0.4360 +0 0.0872 +0 0.0728 +0 0.0704 +0 0.0467 +0 0.1078 +0 0.6853 +0 0.0438 +0 0.1374 +0 0.0984 +0 0.1287 +0 0.0761 +0 0.0755 +0 0.1204 +0 0.1153 +0 0.0723 +0 0.2003 +0 0.0412 +0 0.4346 +0 0.1456 +0 0.0508 +0 0.1425 +0 0.0494 +0 0.0928 +0 0.0867 +0 0.0371 +0 0.0497 +0 0.0855 +0 0.0868 +0 0.1177 +0 0.0477 +0 0.2447 +0 0.1212 +0 0.0408 +0 0.1227 +0 0.1646 +0 0.1103 +0 0.0933 +0 0.0729 +0 0.0867 +0 0.1253 +0 0.2611 +0 0.1096 +0 0.0718 +0 0.1085 +0 0.0901 +0 0.0602 +0 0.1292 +0 0.1061 +0 0.1027 +0 0.2546 +0 0.0775 +0 0.1003 +0 0.0939 +0 0.0911 +0 0.1373 +0 0.1088 +0 0.1969 +0 0.2815 +0 0.0772 +0 0.1232 +0 0.0836 +0 0.0849 +0 0.5382 +0 0.0502 +0 0.0957 +0 0.0545 +0 0.0460 +0 0.1272 +0 0.0910 +0 0.1019 +0 0.1079 +0 0.1449 +0 0.0763 +0 0.1651 +0 0.1369 +0 0.2749 +0 0.0641 +0 0.0574 +0 0.1059 +0 0.0928 +0 0.1615 +0 0.0668 +0 0.1062 +1 0.8728 +0 0.6721 +0 0.0443 +0 0.2001 +0 0.1119 +0 0.0627 +0 0.1310 +0 0.0786 +0 0.0644 +0 0.1318 +0 0.0629 +0 0.3751 +0 0.0829 +0 0.0953 +0 0.1248 +0 0.1206 +0 0.2672 +0 0.0452 +0 0.1773 +0 0.0520 +0 0.0509 +0 0.0746 +0 0.0782 +0 0.1304 +0 0.2120 +0 0.0963 +0 0.1955 +0 0.1067 +0 0.1212 +0 0.1432 +0 0.0498 +0 0.0396 +0 0.3242 +0 0.1064 +0 0.0963 +0 0.0805 +0 0.0724 +0 0.6384 +0 0.0591 +0 0.2902 +0 0.0795 +0 0.0577 +0 0.1631 +0 0.1157 +0 0.0557 +0 0.1542 +0 0.0747 +0 0.1111 +0 0.0857 +0 0.1775 +0 0.0841 +0 0.2066 +0 0.1432 +1 0.8291 +0 0.0693 +0 0.1665 +0 0.2120 +0 0.3750 +0 0.1163 +0 0.0579 +0 0.0729 +0 0.1446 +0 0.1434 +0 0.0678 +0 0.1252 +0 0.1612 +0 0.1979 +0 0.0561 +0 0.0849 +0 0.0615 +0 0.1670 +0 0.1907 +0 0.1143 +0 0.1410 +0 0.1234 +0 0.0742 +0 0.0877 +0 0.0841 +0 0.4182 +0 0.1682 +0 0.1661 +0 0.1724 +0 0.0478 +0 0.1728 +0 0.0926 +0 0.1888 +0 0.3120 +0 0.0574 +0 0.3316 +0 0.1457 +0 0.0514 +0 0.0547 +0 0.1307 +0 0.0929 +0 0.2827 +0 0.1106 +0 0.0977 +0 0.1432 +0 0.2360 +0 0.1552 +0 0.2848 +0 0.1360 +0 0.0635 +0 0.1390 +0 0.1916 +0 0.0513 +0 0.6825 +0 0.6347 +0 0.0743 +0 0.6517 +0 0.7366 +0 0.0968 +0 0.1106 +0 0.0492 +0 0.0992 +0 0.0936 +0 0.0773 +1 0.7725 +0 0.0712 +0 0.1928 +0 0.1369 +0 0.4895 +0 0.3319 +0 0.0667 +0 0.0982 +0 0.0950 +0 0.0462 +0 0.5796 +0 0.2707 +1 0.7712 +0 0.0932 +0 0.4773 +0 0.2118 +0 0.0588 +0 0.0687 +0 0.0603 +0 0.1683 +0 0.0888 +0 0.1176 +0 0.1380 +0 0.1254 +0 0.1131 +0 0.1380 +0 0.2642 +0 0.0673 +0 0.0802 +0 0.0436 +0 0.4021 +0 0.1163 +0 0.0782 +0 0.0805 +0 0.0744 +0 0.2227 +0 0.1411 +0 0.2274 +0 0.0808 +0 0.1102 +0 0.0957 +0 0.1506 +1 0.8772 +0 0.1108 +0 0.0789 +0 0.0418 +0 0.0516 +0 0.4292 +0 0.1719 +0 0.0684 +0 0.0929 +0 0.0901 +0 0.1013 +0 0.1883 +0 0.2496 +0 0.1531 +0 0.1404 +0 0.1670 +0 0.3124 +0 0.0934 +0 0.1219 +0 0.1319 +0 0.1941 +0 0.0877 +0 0.0675 +0 0.6742 +0 0.0876 +0 0.0619 +0 0.1159 +0 0.0584 +0 0.1912 +0 0.1730 +0 0.2071 +0 0.0392 +0 0.0453 +0 0.1921 +0 0.1704 +0 0.0511 +0 0.0374 +0 0.0620 +0 0.0805 +0 0.2130 +0 0.0772 +0 0.1222 +0 0.0880 +0 0.1341 +0 0.1381 +0 0.0901 +0 0.2669 +0 0.3499 +0 0.1755 +0 0.0900 +0 0.1051 +0 0.0643 +0 0.0973 +0 0.0530 +0 0.1842 +0 0.1020 +0 0.0860 +0 0.2214 +0 0.0610 +0 0.1503 +0 0.0535 +0 0.1106 +0 0.0926 +0 0.1627 +0 0.0564 +0 0.0828 +0 0.1487 +0 0.0580 +0 0.0450 +0 0.1604 +0 0.1317 +0 0.1656 +0 0.1739 +0 0.4604 +0 0.0574 +0 0.0883 +0 0.1091 +0 0.0684 +0 0.0954 +0 0.1745 +0 0.1270 +0 0.0854 +0 0.0654 +0 0.0655 +0 0.1250 +0 0.0685 +0 0.1134 +0 0.2476 +0 0.0917 +0 0.2107 +0 0.1467 +0 0.0485 +0 0.1335 +0 0.1081 +0 0.3597 +0 0.0616 +0 0.1518 +0 0.1253 +0 0.1244 +0 0.2221 +0 0.0670 +0 0.1259 +0 0.0878 +0 0.1001 +0 0.1845 +0 0.1700 +0 0.1680 +0 0.2062 +0 0.0855 +0 0.2567 +0 0.0690 +0 0.1243 +0 0.1086 +0 0.0797 +0 0.1188 +0 0.0680 +0 0.1543 +0 0.1528 +0 0.0425 +0 0.0970 +0 0.0886 +0 0.1460 +0 0.1246 +0 0.1455 +0 0.1218 +0 0.2975 +0 0.0434 +0 0.0985 +0 0.0585 +0 0.0810 +0 0.0584 +0 0.0845 +0 0.1330 +0 0.0629 +0 0.1058 +0 0.0687 +0 0.1012 +0 0.1958 +0 0.0777 +0 0.1032 +0 0.1702 +0 0.0899 +0 0.0486 +0 0.1610 +0 0.0421 +0 0.0401 +0 0.1048 +0 0.0916 +0 0.3861 +0 0.0840 +0 0.0449 +0 0.0720 +0 0.3085 +0 0.1062 +0 0.0403 +0 0.1615 +0 0.1105 +0 0.0789 +0 0.1096 +0 0.0456 +0 0.1018 +0 0.1608 +0 0.2725 +0 0.1131 +0 0.1051 +0 0.0571 +0 0.1373 +0 0.0912 +0 0.0553 +0 0.0850 +0 0.0720 +0 0.0950 +0 0.1465 +0 0.1563 +0 0.3503 +0 0.1338 +0 0.2113 +0 0.1406 +0 0.1117 +0 0.1520 +0 0.0972 +0 0.0386 +0 0.1191 +0 0.2548 +0 0.0994 +0 0.1875 +0 0.2052 +0 0.0733 +0 0.1212 +0 0.0724 +0 0.0476 +0 0.1249 +0 0.0509 +0 0.1029 +0 0.0627 +0 0.1018 +0 0.1353 +0 0.0642 +0 0.1437 +0 0.0597 +0 0.1207 +0 0.0815 +0 0.0442 +0 0.1445 +0 0.1614 +0 0.1379 +0 0.2186 +0 0.0908 +0 0.0411 +0 0.1354 +0 0.0347 +0 0.0857 +0 0.7178 +0 0.0737 +0 0.3921 +0 0.2507 +0 0.1728 +0 0.1463 +0 0.2843 +0 0.0520 +0 0.3444 +0 0.1797 +0 0.1490 +0 0.0740 +0 0.0578 +0 0.1783 +0 0.1795 +0 0.1594 +0 0.1031 +0 0.1238 +0 0.1107 +0 0.2388 +0 0.0708 +0 0.0632 +0 0.0928 +0 0.1463 +0 0.0807 +0 0.2160 +0 0.0604 +0 0.0976 +0 0.2950 +0 0.0677 +0 0.0707 +0 0.0934 +0 0.0600 +0 0.1466 +0 0.2491 +0 0.4664 +0 0.4840 +0 0.3460 +0 0.1662 +0 0.1014 +0 0.6884 +0 0.1509 +0 0.1091 +0 0.0833 +0 0.1001 +0 0.0955 +0 0.1619 +0 0.1715 +0 0.2064 +0 0.0536 +0 0.0854 +0 0.2081 +0 0.4893 +0 0.1549 +0 0.0739 +0 0.0999 +0 0.0923 +0 0.0658 +0 0.0615 +0 0.1466 +0 0.1091 +0 0.0647 +0 0.0683 +0 0.0989 +0 0.0537 +0 0.0838 +0 0.2126 +0 0.0891 +0 0.0499 +0 0.1320 +0 0.1125 +0 0.1039 +0 0.0433 +1 0.8204 +0 0.1224 +0 0.0838 +0 0.0581 +0 0.0754 +0 0.0442 +0 0.1265 +0 0.0687 +0 0.1496 +0 0.4901 +0 0.0749 +0 0.1084 +0 0.1223 +0 0.0894 +0 0.0818 +0 0.1417 +0 0.0706 +0 0.1876 +0 0.0479 +0 0.0873 +0 0.0519 +0 0.0817 +0 0.0626 +0 0.0942 +0 0.1506 +0 0.1142 +0 0.3171 +0 0.0740 +1 0.8022 +0 0.0747 +0 0.1883 +0 0.0590 +0 0.4519 +0 0.0583 +0 0.2181 +0 0.1256 +0 0.0664 +0 0.0994 +0 0.4347 +0 0.0492 +0 0.0946 +0 0.0618 +0 0.0558 +0 0.1270 +0 0.0338 +0 0.1544 +0 0.0953 +0 0.0967 +0 0.5289 +0 0.0860 +0 0.0864 +0 0.1665 +0 0.0856 +0 0.2675 +0 0.1451 +0 0.0579 +0 0.1118 +0 0.0837 +0 0.0835 +0 0.2699 +0 0.0854 +0 0.0948 +0 0.2920 +0 0.1280 +0 0.5452 +0 0.1114 +0 0.1587 +0 0.0764 +0 0.1414 +0 0.0805 +0 0.3264 +0 0.1116 +0 0.1372 +0 0.3227 +0 0.2512 +0 0.0452 +0 0.0732 +0 0.0798 +0 0.0422 +0 0.1845 +0 0.1124 +1 0.8413 +0 0.1250 +0 0.1029 +0 0.3987 +0 0.1173 +0 0.0428 +0 0.1128 +0 0.1378 +0 0.1080 +0 0.0690 +0 0.1002 +0 0.1009 +0 0.1715 +0 0.1259 +0 0.1485 +0 0.0693 +0 0.0664 +0 0.1832 +0 0.0710 +0 0.1405 +0 0.1783 +0 0.1967 +0 0.4145 +0 0.2014 +0 0.1229 +0 0.0483 +0 0.0730 +0 0.0556 +0 0.0924 +0 0.1007 +0 0.0645 +0 0.1004 +0 0.0838 +0 0.1453 +0 0.1734 +0 0.0332 +0 0.0597 +0 0.0719 +0 0.1442 +0 0.1009 +0 0.1217 +0 0.1567 +0 0.1531 +0 0.0734 +0 0.2864 +0 0.2252 +0 0.1561 +0 0.1694 +0 0.3352 +0 0.1532 +0 0.1124 +0 0.1121 +0 0.0776 +0 0.0851 +0 0.1369 +0 0.1049 +0 0.0941 +0 0.0696 +0 0.0448 +0 0.6619 +0 0.1373 +0 0.0613 +0 0.1928 +0 0.1155 +0 0.3998 +0 0.1044 +0 0.0486 +0 0.1197 +0 0.0801 +0 0.0721 +0 0.0948 +0 0.0823 +0 0.0859 +0 0.0299 +0 0.1211 +0 0.0859 +0 0.1024 +0 0.0553 +0 0.0591 +0 0.0872 +0 0.2297 +0 0.1632 +0 0.0722 +0 0.1051 +0 0.0630 +0 0.1027 +0 0.0480 +0 0.1088 +0 0.4039 +0 0.3113 +0 0.0914 +0 0.2931 +0 0.0741 +0 0.1478 +0 0.0840 +0 0.1131 +0 0.1082 +0 0.0934 +0 0.1350 +0 0.0651 +0 0.0483 +0 0.1171 +0 0.0920 +0 0.0618 +0 0.1025 +0 0.0618 +0 0.0977 +0 0.1372 +0 0.0705 +0 0.2758 +0 0.0810 +0 0.3107 +0 0.1167 +0 0.0873 +0 0.2259 +0 0.1147 +0 0.3690 +0 0.1060 +0 0.3667 +0 0.1818 +0 0.1067 +0 0.0717 +0 0.1037 +0 0.1068 +0 0.0689 +0 0.1016 +0 0.0924 +0 0.1175 +0 0.2573 +0 0.0837 +0 0.1129 +0 0.0364 +0 0.2305 +0 0.6843 +0 0.1778 +0 0.0941 +0 0.3210 +0 0.1787 +0 0.0719 +0 0.1351 +0 0.2635 +0 0.0991 +0 0.1046 +0 0.0600 +0 0.0676 +0 0.0846 +0 0.0784 +0 0.5847 +0 0.1416 +0 0.1431 +0 0.0905 +0 0.0897 +0 0.0406 +1 0.7663 +0 0.0696 +1 0.8500 +0 0.1381 +0 0.1865 +0 0.1213 +0 0.2717 +0 0.1291 +0 0.0607 +0 0.1691 +0 0.1202 +0 0.0889 +0 0.0763 +0 0.0904 +0 0.2174 +0 0.0631 +0 0.1668 +0 0.2451 +0 0.4071 +0 0.0884 +0 0.0978 +0 0.7007 +0 0.0608 +1 0.7805 +0 0.0797 +0 0.1164 +0 0.1566 +0 0.1001 +0 0.1282 +0 0.2566 +0 0.1076 +0 0.2388 +0 0.0536 +0 0.1013 +0 0.1311 +0 0.0621 +0 0.0884 +1 0.8052 +0 0.0942 +0 0.0843 +0 0.1847 +0 0.1109 +0 0.0843 +0 0.1205 +0 0.1055 +0 0.0723 +0 0.2253 +0 0.1861 +0 0.1317 +0 0.1180 +0 0.0910 +0 0.0566 +0 0.1413 +0 0.1176 +0 0.0686 +0 0.2122 +0 0.0576 +0 0.3316 +0 0.1340 +0 0.0896 +0 0.0765 +0 0.0934 +0 0.1107 +0 0.0605 +0 0.1581 +0 0.0706 +0 0.0753 +0 0.2338 +0 0.0544 +0 0.1490 +0 0.1253 +0 0.1030 +0 0.1492 +0 0.0491 +0 0.0821 +0 0.1702 +0 0.0910 +0 0.0642 +0 0.1386 +0 0.2172 +0 0.0402 +0 0.1482 +0 0.0697 +0 0.0726 +0 0.0886 +0 0.0787 +0 0.0457 +0 0.0432 +0 0.0870 +0 0.1731 +0 0.0450 +0 0.0432 +0 0.0953 +0 0.0915 +0 0.4950 +0 0.1100 +0 0.1543 +0 0.0608 +0 0.1064 +0 0.1050 +0 0.2163 +0 0.1476 +0 0.0994 +0 0.0552 +0 0.0560 +0 0.0632 +0 0.1096 +0 0.0733 +0 0.1792 +0 0.0888 +0 0.0765 +0 0.0890 +0 0.1151 +0 0.0957 +0 0.0418 +0 0.1592 +0 0.1003 +0 0.5744 +0 0.1268 +0 0.6335 +0 0.1035 +0 0.3331 +0 0.0598 +0 0.0682 +0 0.4856 +0 0.0689 +0 0.0759 +0 0.0738 +0 0.3407 +1 0.8394 +0 0.0711 +0 0.1037 +0 0.1554 +0 0.1103 +0 0.0807 +0 0.0426 +0 0.0872 +0 0.1678 +0 0.0831 +0 0.5699 +0 0.0394 +0 0.1205 +0 0.1053 +0 0.1154 +0 0.3897 +0 0.1083 +0 0.1066 +0 0.0999 +0 0.0904 +0 0.1088 +0 0.1433 +0 0.2414 +0 0.1800 +0 0.1578 +0 0.2451 +0 0.1132 +0 0.1573 +0 0.0784 +0 0.1029 +0 0.0998 +0 0.1094 +0 0.1203 +0 0.1018 +0 0.0696 +0 0.1040 +0 0.6214 +0 0.0727 +0 0.1020 +0 0.1296 +0 0.1177 +0 0.2831 +0 0.3180 +0 0.0874 +0 0.1390 +0 0.0540 +0 0.1215 +0 0.1296 +0 0.2369 +0 0.1072 +0 0.1149 +0 0.0514 +0 0.0807 +0 0.0561 +0 0.0923 +0 0.4674 +0 0.0959 +0 0.0541 +0 0.0425 +0 0.0734 +0 0.0740 +0 0.1848 +0 0.0905 +0 0.1419 +0 0.0933 +0 0.1376 +0 0.1637 +0 0.2324 +0 0.6005 +0 0.1691 +0 0.0747 +0 0.0653 +0 0.2917 +0 0.0619 +0 0.0967 +0 0.0712 +0 0.1987 +0 0.0896 +0 0.0737 +0 0.3638 +0 0.0768 +0 0.0621 +0 0.1497 +0 0.1434 +0 0.3684 +0 0.0735 +0 0.0912 +0 0.2441 +0 0.0454 +0 0.0891 +0 0.0826 +0 0.0681 +0 0.1227 +0 0.1676 +0 0.0569 +0 0.1293 +1 0.8443 +0 0.0457 +0 0.0793 +0 0.0624 +0 0.1050 +0 0.3520 +0 0.0619 +0 0.2026 +0 0.0534 +0 0.1337 +0 0.1332 +0 0.1147 +0 0.0510 +0 0.0761 +0 0.1608 +0 0.1017 +0 0.0335 +0 0.0948 +0 0.0777 +0 0.1629 +0 0.1257 +0 0.0555 +0 0.0403 +0 0.0894 +0 0.0425 +0 0.0607 +0 0.1437 +0 0.0831 +0 0.1719 +0 0.7477 +0 0.3041 +0 0.1404 +0 0.0535 +0 0.1532 +0 0.0927 +0 0.0880 +0 0.0415 +0 0.0923 +0 0.4495 +0 0.2413 +0 0.0569 +0 0.1504 +0 0.1009 +0 0.6145 +0 0.0674 +0 0.0880 +0 0.0818 +0 0.0952 +0 0.0866 +0 0.1139 +0 0.2097 +0 0.7287 +0 0.1161 +0 0.1313 +0 0.7271 +0 0.1397 +0 0.1489 +0 0.0982 +0 0.0780 +0 0.3284 +0 0.0794 +0 0.2608 +0 0.1691 +0 0.0546 +0 0.1022 +0 0.2951 +0 0.0438 +0 0.2595 +0 0.0623 +0 0.0878 +0 0.1534 +0 0.0556 +0 0.0495 +0 0.0391 +0 0.1050 +0 0.2221 +0 0.2065 +0 0.2648 +0 0.5196 +0 0.0808 +0 0.5543 +0 0.0916 +0 0.2044 +0 0.1300 +0 0.2779 +0 0.1605 +0 0.0855 +0 0.1291 +0 0.3801 +0 0.2657 +0 0.0445 +0 0.3425 +0 0.0449 +0 0.1176 +0 0.0426 +0 0.0545 +0 0.1562 +0 0.2167 +0 0.1108 +0 0.1403 +0 0.1234 +0 0.1091 +0 0.0790 +0 0.1454 +0 0.0583 +0 0.0500 +0 0.1063 +0 0.0997 +0 0.0882 +0 0.2103 +0 0.1685 +0 0.0898 +0 0.0844 +0 0.1172 +0 0.1118 +0 0.0441 +0 0.0946 +0 0.0927 +0 0.0365 +0 0.0853 +0 0.0731 +0 0.0937 +0 0.0812 +0 0.1997 +0 0.0688 +0 0.3865 +0 0.0834 +0 0.1210 +0 0.0976 +0 0.0784 +0 0.0877 +0 0.2344 +0 0.0780 +0 0.0676 +0 0.1004 +0 0.2298 +0 0.0454 +0 0.1089 +0 0.0981 +0 0.1119 +0 0.1627 +0 0.1688 +0 0.0391 +0 0.1321 +0 0.0553 +0 0.2117 +0 0.1579 +0 0.0721 +0 0.2493 +0 0.0851 +0 0.2219 +0 0.1095 +0 0.1444 +0 0.0859 +0 0.0654 +0 0.1119 +0 0.1233 +0 0.0616 +0 0.0569 +0 0.0741 +0 0.0702 +0 0.0719 +1 0.7631 +0 0.0383 +0 0.0461 +0 0.0644 +0 0.1791 +0 0.1099 +0 0.1140 +0 0.1128 +0 0.0620 +0 0.0661 +0 0.0287 +0 0.1262 +0 0.0889 +0 0.1019 +0 0.1812 +0 0.1469 +0 0.2015 +0 0.0980 +0 0.1035 +0 0.1380 +0 0.0836 +0 0.0779 +0 0.3280 +0 0.1001 +0 0.0522 +0 0.1094 +0 0.1114 +0 0.1332 +0 0.1025 +0 0.2428 +0 0.0888 +0 0.0809 +0 0.0725 +0 0.2648 +0 0.1583 +0 0.1264 +0 0.1220 +0 0.0789 +0 0.2872 +0 0.1898 +0 0.7439 +0 0.2620 +0 0.0749 +0 0.1043 +0 0.0916 +0 0.1356 +0 0.0728 +0 0.1780 +0 0.2630 +0 0.0582 +0 0.0482 +0 0.1184 +0 0.2772 +0 0.0582 +1 0.8385 +0 0.0385 +0 0.3191 +0 0.0765 +0 0.1884 +0 0.0995 +0 0.1468 +0 0.0673 +0 0.0959 +0 0.0887 +0 0.1762 +0 0.0774 +0 0.0922 +0 0.3328 +0 0.1424 +0 0.0344 +0 0.1331 +0 0.1351 +0 0.1902 +0 0.1813 +0 0.1292 +0 0.0981 +0 0.0594 +0 0.1289 +0 0.1008 +0 0.0524 +0 0.0936 +0 0.0462 +0 0.2202 +0 0.2234 +0 0.1698 +0 0.0944 +0 0.0810 +0 0.1008 +0 0.0700 +0 0.2551 +0 0.1295 +0 0.4837 +0 0.1204 +0 0.0578 +0 0.1022 +0 0.0647 +0 0.0355 +0 0.0950 +0 0.0931 +0 0.0385 +0 0.0539 +0 0.1100 +0 0.0825 +0 0.1538 +0 0.1003 +0 0.0818 +0 0.0862 +0 0.1904 +0 0.2288 +0 0.1431 +0 0.1929 +0 0.0619 +0 0.1129 +0 0.1237 +0 0.1988 +0 0.0623 +0 0.1124 +0 0.2911 +0 0.2360 +0 0.0604 +0 0.1930 +0 0.0704 +0 0.0774 +0 0.4582 +0 0.0314 +0 0.1078 +0 0.1417 +0 0.0685 +0 0.0819 +0 0.0977 +0 0.1413 +0 0.1021 +0 0.1021 +0 0.0701 +0 0.0757 +0 0.0618 +0 0.0778 +0 0.1603 +0 0.0581 +0 0.1095 +0 0.0499 +0 0.0769 +1 0.8409 +0 0.1315 +0 0.1157 +0 0.0610 +0 0.1216 +0 0.2051 +0 0.0928 +0 0.0584 +0 0.1781 +0 0.2890 +0 0.1506 +0 0.3924 +0 0.0621 +0 0.0878 +0 0.0813 +0 0.0465 +0 0.3554 +0 0.1628 +0 0.0758 +0 0.0879 +0 0.1377 +0 0.2301 +0 0.0770 +0 0.0448 +0 0.2995 +0 0.7203 +0 0.1095 +0 0.1496 +0 0.1993 +0 0.1017 +0 0.0708 +0 0.0647 +0 0.1835 +0 0.0610 +0 0.1046 +0 0.2622 +0 0.1846 +0 0.1518 +0 0.0699 +0 0.0700 +0 0.1000 +0 0.1221 +0 0.1277 +0 0.5563 +0 0.0825 +0 0.2037 +0 0.2549 +0 0.0730 +0 0.1363 +0 0.1255 +0 0.1648 +0 0.1844 +0 0.0837 +0 0.0787 +0 0.1529 +0 0.0467 +0 0.0758 +0 0.0634 +0 0.1149 +0 0.1275 +0 0.0493 +0 0.0606 +0 0.1291 +0 0.2264 +0 0.0549 +0 0.0748 +0 0.0738 +0 0.0952 +0 0.1013 +0 0.1000 +0 0.1048 +0 0.1366 +0 0.0644 +0 0.0663 +0 0.0833 +0 0.0371 +0 0.0851 +0 0.1974 +0 0.0731 +0 0.0898 +0 0.1615 +0 0.1446 +0 0.4870 +0 0.1868 +0 0.1374 +0 0.1201 +0 0.2683 +0 0.1306 +0 0.1105 +0 0.0403 +0 0.2372 +0 0.1461 +0 0.0458 +0 0.1834 +0 0.0509 +0 0.2476 +0 0.0683 +0 0.1506 +0 0.1819 +0 0.1064 +0 0.1608 +0 0.0400 +0 0.1194 +0 0.2367 +0 0.0491 +0 0.1514 +0 0.1117 +0 0.1075 +0 0.0582 +0 0.0861 +0 0.0518 +0 0.3061 +0 0.1486 +0 0.1199 +0 0.0437 +0 0.3292 +0 0.1405 +0 0.0819 +0 0.1909 +0 0.0641 +0 0.0485 +0 0.1839 +0 0.0880 +0 0.7222 +0 0.1726 +0 0.0689 +0 0.2330 +0 0.0919 +0 0.6981 +0 0.0754 +0 0.0382 +0 0.0946 +0 0.0535 +0 0.0540 +0 0.7003 +0 0.0830 +0 0.1544 +0 0.3126 +0 0.1135 +0 0.0801 +0 0.3115 +0 0.1881 +0 0.1019 +0 0.1207 +0 0.0705 +0 0.1471 +0 0.0990 +0 0.0675 +0 0.1080 +0 0.0354 +0 0.1292 +0 0.2849 +0 0.1229 +0 0.1259 +0 0.0638 +0 0.1130 +0 0.3414 +0 0.1064 +0 0.0727 +0 0.1692 +0 0.2226 +0 0.0846 +0 0.0865 +0 0.0774 +0 0.0999 +0 0.2637 +0 0.1151 +0 0.0715 +0 0.1322 +0 0.2657 +0 0.0379 +0 0.0633 +0 0.1002 +0 0.2459 +0 0.0781 +0 0.0906 +0 0.0509 +0 0.1256 +0 0.1189 +0 0.1198 +0 0.1486 +0 0.2865 +0 0.0506 +0 0.2215 +0 0.5745 +0 0.1570 +1 0.7794 +0 0.2069 +0 0.1946 +0 0.1550 +0 0.0683 +0 0.1005 +0 0.1304 +0 0.0879 +0 0.0587 +0 0.0538 +0 0.1029 +0 0.2300 +0 0.0639 +0 0.0812 +0 0.1329 +0 0.3341 +0 0.0911 +0 0.0852 +0 0.1010 +0 0.0535 +0 0.1079 +0 0.0694 +0 0.1160 +0 0.0940 +0 0.3076 +0 0.2049 +0 0.1513 +0 0.0888 +0 0.3235 +0 0.0550 +0 0.0837 +0 0.1119 +0 0.1553 +0 0.0975 +0 0.1456 +0 0.0507 +0 0.1553 +0 0.1067 +0 0.0534 +0 0.2512 +0 0.1242 +0 0.0924 +0 0.0781 +0 0.0915 +0 0.3680 +0 0.0900 +0 0.0732 +0 0.0563 +0 0.0664 +0 0.0839 +0 0.0730 +0 0.0950 +0 0.0669 +0 0.1042 +0 0.1963 +0 0.0620 +0 0.0784 +0 0.0598 +0 0.1783 +0 0.0605 +0 0.1043 +0 0.2629 +0 0.1037 +0 0.2403 +0 0.5468 +0 0.3922 +0 0.0931 +0 0.0557 +0 0.3300 +0 0.0503 +0 0.0797 +0 0.0946 +0 0.2086 +0 0.2617 +0 0.3048 +0 0.1064 +0 0.1181 +0 0.0758 +0 0.1140 +0 0.0762 +0 0.0478 +0 0.0640 +0 0.2777 +0 0.1169 +0 0.1504 +0 0.2514 +0 0.1093 +0 0.2055 +0 0.1113 +0 0.1180 +0 0.1595 +0 0.0697 +0 0.0947 +0 0.1343 +0 0.0651 +0 0.0587 +0 0.1913 +0 0.0626 +0 0.2307 +0 0.0884 +0 0.1784 +0 0.1290 +0 0.1164 +0 0.5862 +0 0.0630 +0 0.0437 +0 0.0810 +0 0.0802 +0 0.1222 +0 0.1998 +0 0.0504 +0 0.0877 +0 0.1170 +0 0.0683 +0 0.1102 +0 0.1317 +0 0.1353 +0 0.1339 +0 0.3994 +0 0.1096 +0 0.0507 +0 0.0634 +0 0.3714 +0 0.0591 +0 0.1236 +0 0.1065 +0 0.0498 +0 0.0967 +0 0.1155 +0 0.1555 +0 0.0964 +0 0.2200 +0 0.0986 +0 0.1882 +0 0.1824 +0 0.0931 +0 0.0808 +0 0.1154 +0 0.1196 +0 0.2598 +0 0.1351 +0 0.0774 +0 0.3316 +0 0.0902 +0 0.1128 +0 0.2749 +0 0.1578 +0 0.0686 +0 0.0791 +0 0.0610 +0 0.0575 +0 0.1131 +0 0.0644 +0 0.1607 +0 0.0923 +0 0.0299 +0 0.3791 +0 0.0780 +0 0.0733 +0 0.0751 +0 0.1340 +0 0.0668 +0 0.0881 +0 0.0564 +0 0.1013 +0 0.0449 +0 0.0619 +0 0.1112 +0 0.1407 +0 0.1125 +0 0.0766 +0 0.1327 +0 0.1326 +0 0.0728 +0 0.0890 +0 0.0894 +0 0.1598 +0 0.1254 +0 0.2341 +0 0.1089 +0 0.0535 +0 0.0552 +0 0.1212 +0 0.1020 +0 0.2012 +0 0.0632 +0 0.1061 +0 0.0624 +0 0.1277 +0 0.1421 +0 0.0829 +1 0.8793 +0 0.6597 +0 0.0552 +0 0.1782 +0 0.1800 +0 0.0651 +0 0.1712 +0 0.0641 +0 0.0840 +0 0.2043 +0 0.1097 +0 0.0649 +0 0.2151 +0 0.0556 +0 0.0535 +0 0.2656 +0 0.0683 +0 0.2271 +0 0.1023 +0 0.1616 +0 0.1191 +0 0.0548 +0 0.3552 +0 0.0543 +0 0.0733 +0 0.0991 +0 0.2304 +0 0.0994 +0 0.1296 +0 0.0889 +0 0.1382 +0 0.1833 +0 0.0655 +0 0.1442 +0 0.1102 +0 0.0659 +0 0.0904 +0 0.1287 +0 0.0846 +0 0.1189 +0 0.0766 +1 0.7795 +0 0.0530 +0 0.0734 +0 0.0927 +0 0.1175 +0 0.0993 +0 0.0909 +0 0.1780 +0 0.0966 +0 0.0649 +0 0.0982 +0 0.2236 +0 0.1306 +0 0.0482 +0 0.1786 +0 0.0617 +0 0.0777 +0 0.0718 +0 0.0954 +0 0.1409 +0 0.2436 +0 0.1371 +0 0.1589 +0 0.1057 +0 0.0935 +0 0.1397 +0 0.2424 +0 0.2223 +0 0.0712 +0 0.0767 +0 0.7241 +0 0.3115 +0 0.0854 +0 0.0817 +0 0.0876 +0 0.0558 +0 0.1766 +0 0.2424 +0 0.1131 +0 0.1383 +0 0.1979 +0 0.1543 +0 0.3391 +0 0.0836 +0 0.0429 +0 0.0944 +0 0.0759 +0 0.2095 +0 0.0939 +0 0.1023 +0 0.0623 +0 0.3249 +0 0.5478 +0 0.0647 +0 0.1483 +0 0.1508 +0 0.2500 +0 0.0940 +0 0.0451 +0 0.1654 +0 0.0624 +1 0.7580 +0 0.0366 +0 0.0492 +0 0.1556 +0 0.0466 +0 0.0973 +0 0.0504 +0 0.1807 +0 0.1171 +0 0.0594 +0 0.1770 +0 0.1737 +0 0.1233 +0 0.0681 +0 0.1260 +0 0.0819 +0 0.2134 +0 0.1260 +0 0.1774 +0 0.2488 +0 0.0560 +0 0.0800 +0 0.0656 +0 0.1729 +0 0.1653 +0 0.2307 +0 0.6704 +0 0.1162 +0 0.1807 +0 0.1039 +0 0.1350 +0 0.4562 +0 0.0754 +0 0.1166 +0 0.0771 +0 0.0887 +0 0.0432 +0 0.2603 +0 0.1007 +0 0.5872 +0 0.0883 +0 0.2986 +0 0.0794 +0 0.2050 +0 0.0948 +0 0.1308 +0 0.1130 +0 0.0718 +0 0.1280 +1 0.7896 +0 0.0670 +0 0.0404 +0 0.1105 +0 0.2789 +0 0.0993 +0 0.2299 +0 0.2365 +0 0.1390 +0 0.0622 +0 0.2490 +0 0.0854 +0 0.0669 +0 0.2618 +0 0.1174 +0 0.0832 +0 0.0875 +0 0.2189 +0 0.2576 +0 0.0933 +0 0.1304 +0 0.1683 +0 0.1394 +0 0.0986 +0 0.1023 +1 0.8346 +0 0.0525 +0 0.0656 +0 0.1037 +0 0.0838 +0 0.1236 +0 0.0431 +0 0.2541 +0 0.0838 +0 0.1652 +0 0.0629 +0 0.0808 +0 0.0915 +0 0.0698 +0 0.1457 +0 0.0596 +0 0.2626 +0 0.1212 +0 0.1415 +0 0.0493 +0 0.1275 +0 0.1359 +0 0.1749 +0 0.1192 +0 0.1141 +0 0.0653 +0 0.0890 +0 0.5157 +0 0.1283 +0 0.1028 +0 0.1776 +0 0.1249 +0 0.0814 +0 0.2057 +0 0.0467 +0 0.0736 +0 0.2161 +0 0.1144 +0 0.1015 +0 0.1227 +0 0.0675 +0 0.0429 +0 0.0584 +0 0.0511 +0 0.0540 +0 0.1782 +0 0.1584 +0 0.1477 +0 0.0773 +0 0.1181 +0 0.0438 +0 0.0912 +0 0.1588 +0 0.0858 +0 0.0980 +0 0.0980 +0 0.0572 +0 0.1510 +0 0.0536 +0 0.6627 +0 0.1583 +0 0.7318 +0 0.1451 +0 0.1626 +0 0.0606 +0 0.0424 +0 0.1773 +0 0.3395 +0 0.0596 +0 0.1178 +0 0.1198 +0 0.0601 +0 0.0940 +0 0.1501 +0 0.0502 +0 0.1340 +0 0.1087 +0 0.1050 +0 0.1077 +0 0.1017 +0 0.3013 +0 0.1093 +0 0.1410 +0 0.1573 +0 0.2543 +0 0.0799 +0 0.2586 +0 0.0681 +0 0.1239 +0 0.0616 +0 0.0531 +0 0.0642 +0 0.2838 +0 0.0891 +0 0.0948 +0 0.2024 +0 0.0726 +0 0.1703 +0 0.1255 +0 0.0805 +0 0.0713 +0 0.1443 +0 0.0661 +0 0.0865 +0 0.0497 +0 0.0630 +0 0.1335 +0 0.1223 +0 0.0795 +0 0.0626 +0 0.1035 +0 0.0609 +0 0.1490 +0 0.2556 +0 0.2300 +1 0.9041 +0 0.0687 +0 0.1467 +0 0.1232 +0 0.0886 +0 0.1151 +0 0.0568 +1 0.8188 +0 0.1238 +0 0.0731 +0 0.0317 +0 0.1018 +0 0.2381 +0 0.1532 +0 0.0450 +0 0.0598 +0 0.2184 +0 0.1163 +0 0.2243 +0 0.0813 +0 0.0989 +0 0.0749 +0 0.4052 +0 0.0838 +0 0.1059 +0 0.0789 +0 0.0697 +0 0.0388 +0 0.0419 +0 0.3388 +0 0.0808 +0 0.1828 +1 0.7677 +0 0.1216 +0 0.0898 +0 0.1995 +0 0.1611 +0 0.1202 +0 0.1035 +0 0.0493 +0 0.0501 +0 0.3600 +0 0.1116 +0 0.0545 +0 0.5820 +0 0.1142 +0 0.0411 +0 0.1468 +0 0.0447 +0 0.1326 +0 0.2102 +0 0.0764 +0 0.1504 +0 0.0863 +0 0.1476 +0 0.1178 +0 0.2483 +0 0.0957 +0 0.1283 +0 0.0824 +0 0.0725 +0 0.0867 +0 0.0798 +0 0.0664 +0 0.1301 +0 0.0687 +0 0.1970 +0 0.1089 +0 0.2567 +0 0.0577 +0 0.1047 +0 0.1136 +0 0.0867 +0 0.2172 +0 0.2443 +0 0.1670 +0 0.0488 +0 0.0645 +0 0.0717 +0 0.1682 +0 0.0488 +0 0.0946 +0 0.0358 +0 0.0781 +0 0.2717 +0 0.3831 +0 0.1481 +0 0.1563 +0 0.1072 +0 0.0726 +0 0.0447 +0 0.0631 +0 0.1347 +0 0.0628 +0 0.1171 +0 0.1988 +0 0.2250 +0 0.1043 +0 0.0636 +0 0.0933 +0 0.3040 +0 0.0684 +0 0.2612 +0 0.3875 +0 0.1277 +0 0.0605 +0 0.0945 +0 0.1949 +0 0.0893 +0 0.1268 +0 0.0467 +0 0.0892 +0 0.3166 +0 0.1096 +0 0.0429 +0 0.1260 +0 0.0736 +0 0.1147 +0 0.2903 +0 0.0574 +0 0.0774 +0 0.1260 +0 0.1538 +0 0.0812 +0 0.1246 +0 0.2467 +0 0.1096 +0 0.0577 +0 0.3549 +0 0.1834 +0 0.0991 +0 0.1224 +0 0.2235 +0 0.1331 +0 0.1192 +0 0.2321 +0 0.0842 +0 0.6952 +0 0.1601 +0 0.3251 +0 0.1286 +0 0.0818 +0 0.0951 +0 0.0638 +0 0.0478 +0 0.0995 +0 0.2020 +0 0.0769 +0 0.0824 +0 0.2690 +0 0.0882 +0 0.0753 +0 0.1200 +0 0.0895 +0 0.0953 +0 0.1373 +0 0.1762 +0 0.2368 +0 0.0792 +0 0.5957 +0 0.0731 +0 0.1608 +0 0.1154 +0 0.0463 +0 0.2084 +0 0.1251 +0 0.1077 +0 0.2237 +0 0.0537 +0 0.2033 +0 0.0566 +0 0.1149 +0 0.0885 +0 0.1340 +0 0.0933 +0 0.0674 +0 0.2498 +0 0.1035 +0 0.0690 +0 0.0898 +0 0.0789 +0 0.0702 +0 0.2231 +0 0.1312 +0 0.2741 +0 0.1897 +0 0.1563 +0 0.0366 +0 0.0905 +0 0.0832 +0 0.2618 +0 0.1414 +0 0.0986 +0 0.0563 +0 0.1914 +0 0.0814 +0 0.1192 +0 0.1071 +0 0.0739 +0 0.0536 +0 0.0587 +0 0.0911 +0 0.1342 +0 0.0606 +0 0.1310 +0 0.0955 +0 0.0398 +0 0.1174 +0 0.6200 +0 0.1663 +0 0.1943 +0 0.1142 +0 0.1219 +0 0.0567 +0 0.0497 +0 0.0606 +0 0.1855 +1 0.8200 +0 0.2104 +0 0.0551 +0 0.1078 +0 0.0804 +0 0.0726 +0 0.1038 +0 0.0626 +0 0.0374 +0 0.3576 +0 0.1942 +0 0.1360 +0 0.1254 +0 0.1739 +0 0.0451 +0 0.1626 +0 0.1197 +0 0.2073 +0 0.1206 +0 0.1205 +0 0.0960 +0 0.1253 +0 0.3559 +0 0.0425 +0 0.0804 +0 0.2456 +0 0.2148 +0 0.0664 +0 0.1067 +0 0.1172 +0 0.1050 +0 0.0924 +0 0.1552 +0 0.0471 +0 0.0779 +0 0.1716 +0 0.0988 +0 0.0806 +0 0.1101 +0 0.1214 +0 0.0682 +0 0.1058 +0 0.1594 +0 0.5031 +0 0.1913 +0 0.5449 +0 0.0806 +0 0.0557 +0 0.0769 +0 0.1032 +0 0.2709 +0 0.2386 +0 0.5266 +0 0.5175 +0 0.0763 +0 0.0616 +0 0.3889 +0 0.0700 +0 0.1334 +0 0.1345 +0 0.2978 +0 0.0994 +0 0.1195 +0 0.3624 +0 0.2596 +0 0.0699 +0 0.1672 +0 0.2193 +0 0.2557 +0 0.1179 +0 0.0713 +0 0.0978 +1 0.7990 +0 0.0405 +0 0.1112 +0 0.0975 +0 0.1224 +0 0.5464 +0 0.0830 +0 0.1593 +0 0.1023 +0 0.1806 +0 0.2034 +0 0.1803 +0 0.1639 +0 0.0558 +0 0.0507 +0 0.3616 +0 0.3483 +0 0.3826 +0 0.1083 +0 0.3415 +0 0.2540 +0 0.0581 +0 0.0840 +0 0.0741 +0 0.1597 +0 0.0651 +0 0.0841 +0 0.0368 +0 0.0879 +0 0.2054 +0 0.0924 +0 0.0364 +0 0.1804 +0 0.1529 +0 0.0738 +0 0.0481 +0 0.1984 +0 0.1072 +0 0.0925 +0 0.0920 +0 0.1631 +0 0.1353 +0 0.3483 +0 0.2299 +0 0.0888 +0 0.1817 +0 0.0959 +0 0.1436 +0 0.1526 +0 0.1816 +0 0.0465 +0 0.0835 +0 0.0784 +0 0.2147 +0 0.2925 +0 0.1862 +0 0.0502 +0 0.1402 +0 0.1216 +0 0.1078 +0 0.3028 +0 0.0977 +0 0.0711 +0 0.2399 +0 0.0491 +0 0.0654 +0 0.1948 +0 0.1127 +0 0.1052 +0 0.1091 +0 0.0941 +0 0.1299 +0 0.1152 +0 0.0861 +0 0.2784 +0 0.0976 +0 0.1023 +0 0.2041 +0 0.0575 +0 0.0711 +0 0.0896 +0 0.1855 +0 0.0756 +0 0.3787 +0 0.1085 +0 0.0933 +0 0.1122 +0 0.0800 +0 0.6323 +0 0.0526 +0 0.2212 +0 0.0846 +0 0.1429 +0 0.0494 +0 0.1040 +0 0.1930 +0 0.0346 +0 0.0561 +0 0.0899 +0 0.3248 +0 0.0415 +0 0.0949 +0 0.2623 +0 0.0913 +0 0.1836 +0 0.0679 +0 0.2449 +0 0.0972 +0 0.0748 +0 0.1380 +0 0.2683 +0 0.0383 +0 0.1205 +1 0.8322 +0 0.1409 +0 0.3551 +0 0.0330 +0 0.0778 +0 0.0886 +0 0.0844 +0 0.0779 +0 0.2416 +0 0.1179 +0 0.0482 +0 0.2823 +0 0.1050 +0 0.0931 +0 0.1389 +0 0.0899 +0 0.0880 +0 0.1245 +0 0.1231 +0 0.1059 +0 0.0940 +0 0.0390 +0 0.0669 +0 0.2169 +0 0.1018 +0 0.0485 +0 0.6384 +0 0.4602 +0 0.1276 +0 0.1006 +0 0.1972 +1 0.7706 +0 0.0535 +0 0.4080 +0 0.1046 +0 0.2803 +0 0.1754 +0 0.1475 +0 0.1083 +0 0.0854 +0 0.1127 +0 0.0876 +0 0.0928 +0 0.1475 +0 0.0430 +0 0.0766 +0 0.1109 +0 0.0675 +0 0.0565 +0 0.0646 +0 0.1218 +0 0.0768 +0 0.2989 +0 0.1217 +0 0.1681 +0 0.1340 +0 0.0898 +0 0.0903 +0 0.4848 +0 0.3124 +0 0.0532 +0 0.2281 +0 0.0971 +0 0.0654 +0 0.2589 +0 0.0562 +0 0.1767 +0 0.3613 +0 0.2023 +0 0.0843 +0 0.0930 +0 0.1299 +0 0.1146 +0 0.0786 +0 0.0834 +0 0.1076 +0 0.0999 +0 0.0676 +0 0.0513 +0 0.0722 +0 0.2038 +0 0.0912 +0 0.1033 +0 0.3459 +0 0.2561 +0 0.0409 +0 0.2854 +0 0.0586 +0 0.0767 +0 0.1795 +0 0.0767 +0 0.1376 +0 0.0521 +0 0.4451 +0 0.1785 +0 0.0643 +0 0.2299 +0 0.0828 +0 0.0942 +0 0.0783 +0 0.0554 +0 0.0975 +0 0.1068 +0 0.4413 +0 0.1238 +0 0.0490 +0 0.0666 +0 0.1937 +0 0.1582 +0 0.0844 +0 0.0660 +0 0.0672 +0 0.1804 +0 0.0473 +0 0.0492 +0 0.2277 +0 0.1417 +0 0.2084 +0 0.1070 +0 0.1376 +0 0.1184 +0 0.0529 +0 0.2307 +0 0.0677 +0 0.2813 +0 0.1298 +0 0.0882 +0 0.1057 +0 0.0651 +0 0.2207 +0 0.3940 +0 0.2117 +0 0.0633 +0 0.1630 +0 0.1653 +0 0.0439 +0 0.6168 +0 0.1233 +0 0.0452 +0 0.1068 +0 0.2024 +0 0.0836 +0 0.0769 +0 0.0885 +0 0.1011 +0 0.0858 +0 0.1095 +0 0.2507 +0 0.2024 +0 0.1058 +0 0.2406 +0 0.0935 +0 0.0845 +0 0.2648 +0 0.1798 +0 0.1690 +0 0.1501 +0 0.0731 +0 0.2395 +0 0.1128 +0 0.0853 +0 0.1538 +0 0.1618 +0 0.0689 +0 0.0863 +0 0.0869 +0 0.0908 +0 0.1165 +0 0.2001 +0 0.0893 +0 0.0910 +0 0.1503 +0 0.1717 +0 0.0819 +0 0.1067 +0 0.0795 +0 0.1349 +0 0.0671 +0 0.0963 +0 0.0670 +0 0.3218 +0 0.1209 +0 0.0622 +0 0.0750 +0 0.0838 +0 0.1369 +0 0.1015 +0 0.1257 +0 0.1007 +0 0.0660 +0 0.5289 +0 0.0876 +0 0.2925 +0 0.1124 +0 0.1171 +0 0.2008 +0 0.0841 +0 0.1040 +0 0.0718 +0 0.0669 +0 0.3353 +0 0.1488 +0 0.1664 +1 0.7904 +0 0.1792 +0 0.0650 +0 0.1742 +0 0.1128 +0 0.0741 +0 0.0451 +0 0.0452 +0 0.2065 +0 0.1318 +0 0.1454 +0 0.0639 +0 0.2721 +0 0.1106 +0 0.0516 +0 0.1004 +0 0.0806 +0 0.1184 +1 0.8067 +0 0.2480 +0 0.1509 +0 0.1718 +0 0.0893 +0 0.1536 +0 0.1393 +0 0.0564 +0 0.1263 +0 0.1602 +0 0.1142 +0 0.0968 +0 0.1607 +0 0.0803 +0 0.1423 +0 0.0973 +0 0.0840 +0 0.2017 +0 0.0544 +0 0.0891 +0 0.0986 +0 0.0613 +0 0.0639 +0 0.0487 +0 0.0862 +0 0.0740 +0 0.0702 +0 0.0723 +0 0.1193 +0 0.0625 +0 0.0979 +0 0.0521 +0 0.1060 +0 0.3731 +0 0.0637 +0 0.0418 +0 0.1429 +0 0.1512 +0 0.0729 +0 0.1142 +0 0.1154 +0 0.6291 +0 0.0587 +0 0.0742 +0 0.1073 +0 0.0835 +0 0.1021 +0 0.2700 +0 0.0334 +0 0.1402 +0 0.1082 +0 0.0757 +0 0.0553 +0 0.2379 +0 0.1267 +0 0.1452 +0 0.1304 +1 0.8406 +0 0.1505 +0 0.0758 +0 0.1130 +0 0.2502 +0 0.0668 +0 0.0666 +0 0.0652 +1 0.7895 +0 0.1620 +0 0.0397 +1 0.7792 +0 0.1117 +0 0.0947 +0 0.0456 +0 0.2732 +0 0.0713 +0 0.4122 +0 0.1221 +0 0.0273 +0 0.2836 +0 0.1097 +1 0.7872 +0 0.0408 +0 0.1379 +1 0.8199 +0 0.1341 +0 0.2022 +0 0.1474 +0 0.2670 +0 0.1478 +1 0.8505 +0 0.1199 +0 0.2230 +0 0.2319 +0 0.0473 +0 0.0544 +0 0.0704 +0 0.2742 +0 0.0563 +0 0.0655 +0 0.0359 +0 0.1391 +0 0.1231 +0 0.0828 +0 0.1488 +0 0.1603 +0 0.0315 +0 0.0654 +0 0.0935 +0 0.1364 +0 0.1253 +0 0.1794 +0 0.1187 +0 0.0626 +0 0.0726 +0 0.0459 +0 0.1725 +0 0.0676 +0 0.0763 +0 0.1330 +0 0.0928 +0 0.0792 +0 0.4502 +0 0.1096 +0 0.1500 +0 0.0965 +0 0.1326 +0 0.2389 +1 0.7833 +0 0.0379 +0 0.1653 +0 0.1270 +0 0.2202 +0 0.0672 +0 0.0889 +0 0.1700 +0 0.1923 +0 0.2378 +0 0.3944 +0 0.3261 +0 0.1825 +0 0.1923 +0 0.3927 +0 0.0435 +1 0.7692 +0 0.1501 +0 0.1236 +0 0.1267 +0 0.1863 +0 0.1181 +0 0.1057 +0 0.3393 +0 0.1385 +0 0.0399 +0 0.1225 +0 0.2085 +0 0.0941 +0 0.0580 +0 0.0695 +0 0.1191 +0 0.0820 +0 0.1054 +0 0.0886 +0 0.0748 +0 0.0529 +0 0.0984 +0 0.1889 +0 0.1981 +0 0.0615 +0 0.0765 +0 0.0715 +0 0.0733 +0 0.0743 +0 0.1433 +0 0.0903 +0 0.1265 +0 0.0756 +0 0.2151 +0 0.0872 +0 0.1513 +0 0.0427 +0 0.0946 +0 0.1150 +0 0.1297 +0 0.1089 +0 0.0614 +0 0.2438 +0 0.1555 +0 0.1454 +0 0.0484 +0 0.1231 +0 0.1147 +0 0.1134 +0 0.1446 +0 0.1413 +0 0.0449 +0 0.1382 +0 0.6253 +0 0.0362 +0 0.1390 +0 0.0972 +0 0.0876 +0 0.1234 +0 0.1880 +0 0.1191 +0 0.0354 +0 0.0847 +0 0.0852 +0 0.0632 +0 0.1231 +0 0.0949 +0 0.1795 +0 0.0663 +0 0.1497 +0 0.0369 +0 0.0685 +0 0.1951 +0 0.1484 +0 0.0674 +0 0.6539 +0 0.1284 +0 0.1791 +0 0.3470 +0 0.0392 +0 0.1007 +0 0.1029 +0 0.0466 +0 0.0574 +0 0.0552 +0 0.2234 +0 0.0372 +0 0.2358 +0 0.1109 +0 0.1569 +0 0.0579 +0 0.1126 +0 0.0535 +0 0.4523 +0 0.2471 +0 0.1235 +0 0.1467 +0 0.1548 +0 0.0635 +0 0.0601 +0 0.1425 +0 0.3848 +0 0.1493 +0 0.1198 +0 0.0948 +0 0.0616 +0 0.1129 +0 0.1304 +0 0.1248 +0 0.1036 +0 0.1234 +0 0.3133 +0 0.0867 +0 0.0479 +0 0.0393 +0 0.1491 +0 0.1387 +0 0.0959 +0 0.0637 +0 0.0641 +0 0.1345 +0 0.1673 +0 0.1814 +0 0.0966 +0 0.1439 +1 0.7894 +0 0.0677 +0 0.0465 +0 0.1647 +0 0.0889 +0 0.1122 +0 0.5675 +0 0.0330 +0 0.3832 +0 0.3010 +0 0.0799 +0 0.0467 +0 0.1144 +0 0.0894 +0 0.1195 +0 0.1129 +0 0.2582 +0 0.1962 +0 0.0646 +0 0.1525 +0 0.1607 +0 0.1552 +0 0.2264 +0 0.0867 +0 0.0593 +0 0.3182 +0 0.2894 +0 0.0559 +0 0.1413 +0 0.1993 +0 0.1382 +0 0.5511 +0 0.0602 +0 0.2276 +0 0.0766 +0 0.1147 +0 0.0959 +0 0.0377 +0 0.0956 +0 0.1624 +0 0.2562 +0 0.1942 +0 0.1910 +0 0.2416 +0 0.1280 +0 0.0699 +0 0.1426 +0 0.4840 +0 0.0737 +0 0.0948 +0 0.1553 +0 0.2963 +0 0.0911 +0 0.1943 +0 0.1455 +0 0.0833 +0 0.1871 +0 0.0669 +0 0.0923 +0 0.0605 +0 0.0812 +0 0.1301 +0 0.0753 +0 0.0850 +0 0.1347 +0 0.0667 +0 0.1415 +0 0.0443 +0 0.0372 +0 0.2918 +0 0.0947 +0 0.0789 +0 0.0705 +0 0.3902 +0 0.5982 +0 0.0450 +0 0.0575 +0 0.1351 +0 0.0792 +0 0.0902 +0 0.1093 +0 0.1056 +0 0.0586 +0 0.0762 +0 0.0700 +0 0.1337 +0 0.0335 +0 0.1469 +0 0.0811 +0 0.0746 +0 0.0790 +0 0.2694 +0 0.1438 +0 0.1019 +0 0.0803 +0 0.0889 +0 0.2554 +0 0.0755 +0 0.3627 +0 0.1495 +0 0.1120 +0 0.0661 +0 0.2355 +0 0.2227 +0 0.0836 +0 0.0580 +0 0.1067 +0 0.1005 +0 0.2049 +0 0.1601 +0 0.2849 +0 0.0666 +0 0.3399 +0 0.0728 +0 0.0943 +0 0.1077 +0 0.1055 +1 0.8234 +0 0.0308 +0 0.0721 +0 0.0546 +0 0.0473 +0 0.0709 +0 0.2618 +0 0.1638 +0 0.1137 +0 0.2536 +0 0.1213 +0 0.0891 +0 0.0458 +0 0.3308 +0 0.1762 +0 0.0554 +0 0.0887 +0 0.1063 +0 0.1468 +1 0.7856 +0 0.0987 +0 0.0831 +0 0.1020 +0 0.1853 +0 0.1131 +0 0.1201 +0 0.0357 +0 0.0999 +0 0.0993 +0 0.1733 +0 0.0534 +0 0.5471 +0 0.0407 +0 0.1592 +0 0.1710 +0 0.0844 +0 0.0653 +0 0.1858 +0 0.0511 +0 0.1180 +0 0.1045 +0 0.1439 +0 0.1188 +0 0.0982 +0 0.1156 +0 0.1100 +0 0.0423 +0 0.1999 +0 0.1134 +0 0.2985 +0 0.0648 +0 0.1631 +0 0.6591 +0 0.1929 +0 0.6500 +0 0.1249 +0 0.0781 +0 0.0816 +0 0.0674 +0 0.2497 +0 0.3090 +0 0.0764 +0 0.1877 +0 0.0779 +0 0.0933 +0 0.1074 +0 0.1438 +0 0.1302 +0 0.0711 +0 0.1466 +0 0.1940 +0 0.1502 +0 0.0642 +0 0.0632 +0 0.1088 +0 0.0948 +0 0.0720 +0 0.0389 +0 0.0774 +1 0.8418 +0 0.1750 +0 0.0778 +0 0.0428 +0 0.1594 +0 0.0347 +1 0.8243 +0 0.1070 +0 0.0714 +0 0.1058 +0 0.0570 +0 0.0865 +0 0.0647 +0 0.1105 +0 0.0756 +0 0.0678 +0 0.0676 +0 0.0324 +0 0.7277 +0 0.4164 +0 0.1262 +0 0.0660 +0 0.2070 +0 0.0762 +0 0.0835 +0 0.0405 +0 0.3587 +0 0.0869 +0 0.1068 +0 0.4563 +0 0.1584 +0 0.1069 +0 0.0404 +0 0.1920 +0 0.1597 +0 0.0553 +0 0.0673 +0 0.7459 +0 0.0961 +0 0.4736 +0 0.1008 +0 0.2903 +0 0.1587 +0 0.1076 +0 0.2079 +0 0.0744 +0 0.1247 +0 0.0704 +0 0.0974 +0 0.1614 +0 0.0887 +0 0.2010 +0 0.1414 +0 0.1437 +0 0.1087 +0 0.1330 +0 0.2648 +0 0.0873 +0 0.1467 +0 0.4690 +0 0.5452 +0 0.0545 +0 0.1468 +0 0.0566 +0 0.1002 +0 0.1471 +0 0.1138 +0 0.3818 +0 0.0674 +0 0.2924 +0 0.1703 +0 0.1832 +0 0.2713 +0 0.0827 +0 0.0804 +0 0.0761 +0 0.0956 +0 0.2363 +0 0.0537 +0 0.0490 +0 0.0542 +0 0.4323 +0 0.0499 +0 0.0673 +0 0.0407 +0 0.0860 +0 0.1902 +0 0.6363 +0 0.1037 +0 0.1218 +0 0.3213 +0 0.0898 +1 0.8425 +0 0.0802 +0 0.0615 +0 0.1165 +0 0.0965 +0 0.0681 +0 0.0542 +0 0.0848 +0 0.1397 +0 0.1417 +0 0.1051 +0 0.1755 +0 0.1759 +0 0.1528 +0 0.0501 +0 0.1051 +0 0.2185 +1 0.7757 +1 0.7584 +0 0.1160 +0 0.1894 +0 0.0693 +0 0.0627 +0 0.0670 +0 0.0542 +0 0.0868 +0 0.0616 +0 0.0897 +0 0.1586 +0 0.1685 +0 0.3757 +0 0.1012 +0 0.0774 +0 0.1285 +0 0.1611 +0 0.0609 +0 0.0811 +0 0.2580 +0 0.6326 +0 0.1288 +0 0.2391 +0 0.1618 +0 0.2426 +0 0.0933 +0 0.0661 +0 0.1857 +0 0.0565 +0 0.2166 +0 0.0423 +0 0.0876 +0 0.0689 +0 0.3831 +0 0.0469 +0 0.0596 +0 0.0683 +0 0.0698 +0 0.1042 +0 0.1344 +0 0.3366 +0 0.1101 +1 0.7662 +0 0.0766 +0 0.2293 +0 0.0821 +0 0.0864 +0 0.0788 +0 0.1151 +0 0.1520 +0 0.1624 +0 0.0713 +0 0.1261 +0 0.2807 +0 0.0908 +0 0.2923 +0 0.0878 +0 0.0561 +0 0.0771 +0 0.1091 +0 0.1012 +0 0.0732 +0 0.1104 +0 0.1093 +0 0.0603 +0 0.1245 +0 0.1669 +0 0.1616 +0 0.1296 +0 0.0756 +0 0.1958 +0 0.0432 +0 0.1328 +0 0.0832 +0 0.0485 +0 0.0615 +0 0.3265 +0 0.0523 +0 0.1088 +0 0.1861 +0 0.1011 +0 0.1396 +0 0.1059 +0 0.1070 +0 0.0381 +0 0.0807 +0 0.0754 +0 0.0764 +0 0.0975 +0 0.1269 +0 0.4119 +0 0.1248 +0 0.1474 +0 0.2588 +0 0.1070 +0 0.2101 +0 0.4436 +0 0.1430 +1 0.8291 +0 0.0788 +0 0.1159 +0 0.1049 +0 0.0731 +0 0.0788 +0 0.0860 +0 0.0407 +0 0.0508 +0 0.1675 +0 0.0921 +0 0.1069 +0 0.0871 +0 0.0532 +0 0.3168 +0 0.0605 +0 0.1566 +0 0.1387 +0 0.1153 +0 0.2126 +0 0.2301 +0 0.0714 +0 0.0503 +0 0.0852 +0 0.1161 +0 0.0430 +0 0.0936 +0 0.1189 +0 0.2038 +0 0.0630 +0 0.0449 +0 0.1638 +0 0.0890 +0 0.1133 +0 0.1127 +0 0.0441 +0 0.1049 +0 0.0995 +0 0.0437 +0 0.3057 +0 0.0597 +0 0.0495 +0 0.1760 +0 0.2565 +0 0.0870 +0 0.1167 +0 0.0647 +0 0.1117 +0 0.1328 +0 0.0720 +0 0.1153 +0 0.1165 +0 0.1837 +0 0.2856 +0 0.0828 +1 0.7910 +0 0.3167 +0 0.0935 +0 0.0351 +0 0.1101 +0 0.2093 +0 0.1116 +0 0.1958 +0 0.1048 +0 0.0414 +0 0.1233 +0 0.2320 +0 0.0364 +0 0.0712 +0 0.1434 +0 0.2071 +0 0.0599 +0 0.0481 +0 0.1129 +0 0.1410 +0 0.1072 +0 0.0701 +0 0.0811 +0 0.6308 +0 0.1502 +0 0.0362 +0 0.1077 +0 0.0865 +0 0.1713 +0 0.3310 +0 0.2801 +0 0.0969 +0 0.1123 +0 0.1078 +0 0.4376 +0 0.0984 +0 0.0929 +0 0.1035 +0 0.0818 +0 0.1153 +0 0.2194 +0 0.0816 +0 0.1557 +0 0.0404 +0 0.0478 +0 0.0867 +0 0.2783 +0 0.0563 +0 0.0710 +0 0.1014 +0 0.1258 +0 0.2910 +0 0.2718 +0 0.1444 +0 0.1248 +0 0.0645 +0 0.0594 +0 0.0914 +0 0.0981 +0 0.1325 +0 0.0334 +0 0.0725 +1 0.8299 +0 0.1209 +0 0.0854 +0 0.2862 +0 0.1400 +0 0.1971 +0 0.2356 +0 0.0636 +0 0.1297 +0 0.1754 +0 0.1113 +0 0.2729 +0 0.0792 +1 0.7538 +0 0.2512 +0 0.0594 +0 0.0606 +0 0.2035 +0 0.6337 +0 0.0638 +0 0.2582 +0 0.6166 +0 0.3729 +0 0.0732 +0 0.1475 +0 0.2940 +0 0.0479 +0 0.1123 +0 0.0445 +0 0.3460 +0 0.1054 +0 0.1827 +0 0.0807 +0 0.0571 +0 0.1175 +0 0.6833 +0 0.0944 +0 0.4825 +0 0.2587 +0 0.1209 +0 0.1624 +0 0.0580 +0 0.1187 +0 0.1193 +0 0.0443 +0 0.0937 +0 0.0948 +0 0.0743 +0 0.2014 +0 0.1415 +0 0.0848 +0 0.0576 +0 0.0650 +0 0.1145 +0 0.0577 +0 0.0794 +0 0.1514 +0 0.3875 +0 0.1088 +0 0.0597 +0 0.1286 +0 0.0471 +0 0.1107 +0 0.5639 +0 0.0829 +0 0.0351 +0 0.0637 +0 0.1192 +0 0.6205 +0 0.1203 +0 0.0855 +0 0.0389 +0 0.1120 +0 0.1450 +0 0.1684 +0 0.1013 +0 0.1121 +0 0.0718 +0 0.3585 +0 0.0696 +0 0.0586 +0 0.0900 +0 0.0639 +0 0.0614 +0 0.1229 +0 0.1701 +0 0.0969 +0 0.1868 +0 0.1691 +0 0.7497 +0 0.0713 +0 0.1367 +0 0.1638 +0 0.0591 +0 0.0861 +0 0.0524 +0 0.0925 +0 0.1778 +0 0.0861 +0 0.0682 +0 0.5513 +0 0.2251 +0 0.0825 +0 0.1420 +0 0.1883 +0 0.0716 +0 0.1095 +0 0.0981 +0 0.1274 +0 0.0490 +0 0.0680 +0 0.0523 +0 0.1133 +0 0.0775 +0 0.1612 +0 0.0705 +0 0.2921 +1 0.8586 +0 0.0494 +0 0.0754 +0 0.1157 +0 0.0830 +0 0.2381 +0 0.1896 +0 0.0637 +0 0.0739 +0 0.0682 +0 0.2561 +1 0.7866 +0 0.4016 +0 0.3104 +0 0.2684 +0 0.0568 +0 0.0804 +0 0.1233 +0 0.3141 +0 0.1711 +0 0.3935 +0 0.0690 +0 0.0782 +0 0.0692 +0 0.0277 +0 0.1689 +0 0.1223 +0 0.0865 +0 0.0674 +0 0.1222 +0 0.1358 +0 0.2311 +0 0.0910 +0 0.0775 +0 0.0850 +0 0.1035 +0 0.0922 +0 0.0717 +0 0.1398 +0 0.1715 +0 0.0367 +0 0.1162 +0 0.0790 +0 0.0526 +0 0.2153 +0 0.1151 +0 0.0706 +1 0.8429 +0 0.4441 +0 0.0713 +0 0.0493 +0 0.2152 +0 0.1218 +0 0.0865 +0 0.0926 +0 0.0796 +0 0.1414 +0 0.1120 +0 0.1592 +0 0.0862 +0 0.1850 +0 0.1147 +0 0.0556 +0 0.0557 +0 0.0849 +0 0.1092 +0 0.0657 +0 0.1046 +0 0.1001 +0 0.1263 +0 0.1177 +0 0.0648 +0 0.0961 +0 0.0617 +0 0.0764 +0 0.0575 +0 0.2023 +0 0.0800 +0 0.0960 +0 0.0416 +0 0.2369 +0 0.0611 +0 0.1438 +0 0.1546 +0 0.1620 +0 0.2066 +0 0.3636 +0 0.1029 +0 0.0582 +0 0.1627 +0 0.2644 +0 0.0692 +0 0.1606 +0 0.1087 +0 0.0829 +0 0.1890 +0 0.1321 +0 0.5315 +0 0.0468 +0 0.2100 +0 0.2621 +0 0.0299 +0 0.1174 +0 0.0709 +0 0.0840 +0 0.0927 +0 0.3475 +0 0.1032 +0 0.0745 +0 0.0902 +0 0.0514 +0 0.1187 +0 0.2254 +0 0.0592 +0 0.1047 +0 0.1541 +0 0.1070 +0 0.3167 +0 0.1766 +1 0.8634 +0 0.2319 +0 0.0826 +0 0.1397 +0 0.0837 +0 0.0489 +0 0.1433 +0 0.1509 +0 0.0913 +0 0.1392 +0 0.0776 +0 0.0364 +0 0.0736 +0 0.1623 +0 0.0425 +0 0.0883 +0 0.0596 +0 0.1304 +0 0.0719 +0 0.0952 +0 0.2919 +0 0.0524 +0 0.0332 +0 0.0863 +0 0.1389 +0 0.2294 +0 0.0934 +0 0.0518 +0 0.0742 +0 0.0634 +0 0.0999 +0 0.1142 +0 0.1853 +0 0.1505 +0 0.2573 +0 0.1151 +0 0.0984 +0 0.0819 +0 0.4199 +0 0.2653 +0 0.1386 +0 0.2564 +0 0.0625 +0 0.0861 +0 0.1349 +0 0.0722 +0 0.0675 +0 0.1801 +0 0.0893 +0 0.1751 +0 0.0623 +1 0.8368 +0 0.0673 +0 0.4699 +0 0.0987 +0 0.1849 +0 0.0468 +0 0.3437 +0 0.1209 +0 0.0580 +0 0.0784 +0 0.0705 +0 0.0969 +0 0.1157 +0 0.0897 +0 0.0954 +0 0.1425 +0 0.0778 +0 0.1055 +0 0.0583 +0 0.0842 +0 0.1094 +0 0.0837 +0 0.0593 +0 0.0826 +0 0.0496 +0 0.0721 +0 0.1518 +0 0.0981 +0 0.0563 +0 0.1170 +0 0.1149 +0 0.0560 +0 0.0377 +0 0.0735 +0 0.0593 +0 0.0676 +0 0.0833 +0 0.0787 +0 0.1492 +0 0.3147 +0 0.1110 +0 0.1608 +0 0.1880 +0 0.1381 +0 0.1323 +0 0.0750 +0 0.0996 +0 0.1306 +0 0.1242 +0 0.0730 +0 0.0556 +0 0.3085 +0 0.4101 +0 0.0658 +0 0.0813 +0 0.1547 +0 0.1676 +0 0.2001 +0 0.1084 +0 0.0317 +0 0.2144 +1 0.8432 +0 0.0416 +0 0.1146 +0 0.0446 +0 0.0694 +0 0.1518 +0 0.0765 +0 0.6496 +0 0.0719 +0 0.0605 +0 0.1720 +0 0.0745 +0 0.1695 +0 0.0725 +0 0.5414 +1 0.7660 +0 0.1469 +0 0.1673 +0 0.3825 +0 0.1474 +0 0.0489 +0 0.0642 +0 0.0692 +0 0.1228 +0 0.1186 +0 0.0838 +0 0.7422 +0 0.0637 +0 0.2163 +0 0.0962 +0 0.1307 +0 0.1707 +0 0.0621 +0 0.1060 +0 0.0641 +0 0.0691 +0 0.6943 +0 0.1233 +0 0.2293 +0 0.4353 +0 0.1255 +0 0.0967 +0 0.0661 +0 0.0995 +0 0.1999 +0 0.0329 +0 0.5003 +0 0.0456 +0 0.1475 +1 0.7820 +0 0.1398 +0 0.0515 +0 0.0446 +0 0.1742 +0 0.0948 +0 0.1744 +0 0.0442 +0 0.0848 +0 0.1144 +0 0.1084 +0 0.0612 +0 0.1152 +0 0.0740 +0 0.0638 +0 0.1034 +0 0.0844 +0 0.2190 +0 0.0723 +0 0.0519 +0 0.0882 +0 0.0626 +0 0.0543 +0 0.0494 +0 0.0999 +0 0.1656 +0 0.0696 +0 0.1096 +0 0.1422 +0 0.0837 +0 0.0650 +0 0.0792 +0 0.5976 +1 0.8401 +0 0.3197 +0 0.2458 +0 0.0836 +0 0.1575 +0 0.1095 +0 0.0858 +0 0.1408 +0 0.0510 +0 0.0469 +0 0.0707 +0 0.1040 +0 0.6632 +0 0.1300 +0 0.1954 +0 0.1464 +0 0.0720 +0 0.0482 +0 0.5587 +0 0.0776 +0 0.0358 +0 0.0942 +0 0.1484 +0 0.0411 +0 0.0369 +0 0.0413 +0 0.0412 +0 0.4436 +0 0.0483 +0 0.1103 +0 0.1825 +0 0.0472 +0 0.2203 +0 0.0770 +0 0.0479 +1 0.7899 +0 0.0703 +0 0.0351 +0 0.0502 +0 0.1828 +0 0.1779 +0 0.2136 +0 0.0627 +0 0.1180 +0 0.0645 +0 0.1028 +0 0.1066 +0 0.2113 +0 0.1161 +0 0.1790 +0 0.1913 +0 0.0695 +0 0.1066 +0 0.1213 +0 0.0534 +0 0.0494 +0 0.1606 +0 0.0892 +0 0.1175 +0 0.0886 +0 0.0986 +0 0.4892 +0 0.1315 +0 0.0844 +0 0.0892 +0 0.0722 +0 0.1443 +0 0.0522 +0 0.1277 +0 0.0649 +0 0.0957 +0 0.1612 +0 0.1134 +0 0.0522 +0 0.0949 +0 0.1003 +0 0.1415 +0 0.0957 +0 0.0825 +0 0.1227 +0 0.1008 +0 0.0988 +0 0.1656 +0 0.5970 +0 0.3195 +0 0.7117 +0 0.0804 +0 0.1087 +0 0.0833 +0 0.0837 +1 0.7773 +0 0.3101 +0 0.1687 +0 0.1020 +0 0.0638 +0 0.3655 +0 0.0960 +0 0.1024 +0 0.1205 +0 0.2932 +0 0.0703 +0 0.0514 +0 0.1166 +0 0.1576 +0 0.5542 +0 0.0585 +0 0.0964 +0 0.0666 +0 0.1763 +0 0.0882 +0 0.0833 +0 0.1183 +0 0.0876 +0 0.0734 +0 0.0966 +0 0.0577 +0 0.0695 +0 0.2352 +0 0.1099 +0 0.0980 +0 0.0815 +0 0.4418 +0 0.0844 +0 0.4477 +0 0.1477 +0 0.1540 +0 0.0405 +0 0.0720 +0 0.2752 +0 0.0891 +0 0.0992 +0 0.1897 +0 0.0457 +0 0.0381 +0 0.1376 +0 0.0651 +0 0.0877 +0 0.0727 +0 0.2074 +0 0.2708 +0 0.1116 +0 0.1023 +0 0.1254 +0 0.0823 +0 0.0650 +0 0.0782 +0 0.1436 +0 0.0561 +0 0.0418 +0 0.1679 +0 0.0400 +0 0.6488 +0 0.3246 +0 0.0994 +0 0.0894 +0 0.1238 +0 0.1013 +0 0.0537 +0 0.1043 +0 0.0512 +0 0.1360 +0 0.1252 +0 0.0954 +0 0.6811 +0 0.1063 +0 0.0594 +0 0.0605 +0 0.0824 +0 0.0412 +0 0.3600 +0 0.0502 +0 0.4387 +0 0.0495 +0 0.3043 +0 0.1186 +0 0.1283 +0 0.0613 +0 0.0719 +0 0.0328 +0 0.1388 +0 0.0817 +0 0.2080 +0 0.1079 +0 0.0512 +0 0.0966 +0 0.2493 +0 0.1061 +0 0.0729 +0 0.0575 +0 0.0599 +1 0.8664 +0 0.0650 +0 0.1651 +0 0.0587 +0 0.2511 +0 0.0742 +0 0.7057 +0 0.0512 +0 0.1168 +0 0.2364 +0 0.0469 +0 0.1751 +0 0.2106 +0 0.1086 +0 0.4534 +0 0.1007 +0 0.1654 +0 0.1552 +0 0.1318 +0 0.0993 +0 0.0880 +0 0.1192 +0 0.1005 +0 0.0957 +0 0.1262 +0 0.1237 +0 0.0671 +0 0.0518 +0 0.0657 +0 0.0680 +0 0.1619 +0 0.0729 +0 0.0856 +0 0.0499 +0 0.1468 +0 0.1176 +0 0.0899 +0 0.1370 +0 0.0717 +0 0.0476 +0 0.2090 +0 0.5168 +0 0.0592 +0 0.1352 +0 0.1431 +0 0.1861 +0 0.0841 +0 0.1502 +0 0.1055 +0 0.2031 +0 0.1724 +0 0.0560 +0 0.1705 +0 0.1103 +0 0.0788 +0 0.1303 +0 0.0998 +0 0.1792 +0 0.0619 +0 0.1763 +0 0.1153 +0 0.2279 +0 0.1253 +0 0.0886 +0 0.0574 +0 0.2863 +0 0.1107 +0 0.0739 +0 0.3357 +0 0.2267 +0 0.1029 +0 0.0666 +0 0.2788 +0 0.3331 +0 0.3514 +0 0.1440 +0 0.1752 +0 0.1012 +0 0.2363 +0 0.1854 +0 0.0741 +0 0.1347 +0 0.0940 +0 0.1310 +0 0.2010 +0 0.1469 +0 0.1655 +0 0.1232 +0 0.0640 +0 0.0939 +0 0.0808 +0 0.0494 +1 0.8867 +0 0.2009 +0 0.1156 +0 0.1347 +0 0.1566 +0 0.2732 +0 0.2150 +0 0.1172 +0 0.1305 +0 0.0830 +0 0.1476 +0 0.2085 +0 0.1585 +0 0.0893 +0 0.0715 +0 0.1271 +0 0.0880 +0 0.0744 +0 0.2346 +0 0.0891 +0 0.1828 +0 0.1396 +0 0.0428 +0 0.1053 +0 0.1401 +0 0.2759 +0 0.0606 +0 0.0894 +0 0.0865 +0 0.0951 +0 0.1104 +0 0.1988 +0 0.0523 +0 0.0550 +0 0.0806 +0 0.0953 +0 0.0591 +0 0.2251 +0 0.1990 +0 0.1283 +0 0.1199 +0 0.0967 +0 0.0692 +0 0.0806 +0 0.0426 +0 0.0972 +0 0.0919 +0 0.0957 +0 0.0832 +0 0.1509 +0 0.0973 +0 0.0512 +0 0.0845 +0 0.0633 +0 0.1579 +0 0.1225 +0 0.1334 +0 0.2202 +0 0.0942 +0 0.1364 +0 0.0740 +0 0.0529 +0 0.2116 +0 0.2387 +0 0.3621 +0 0.0768 +0 0.2210 +0 0.0700 +0 0.1284 +0 0.1063 +0 0.0913 +0 0.1985 +0 0.0410 +0 0.0484 +0 0.0940 +0 0.0980 +0 0.1020 +0 0.0328 +0 0.1983 +0 0.2267 +0 0.0772 +0 0.0676 +0 0.6223 +0 0.0421 +0 0.0563 +0 0.3548 +0 0.0994 +1 0.6274 +0 0.0620 +0 0.2298 +0 0.1022 +0 0.2062 +0 0.0941 +0 0.0417 +0 0.3807 +0 0.1258 +0 0.2073 +0 0.2292 +0 0.1087 +0 0.1360 +0 0.0541 +0 0.3477 +0 0.0689 +0 0.1035 +0 0.1138 +0 0.1124 +0 0.1225 +0 0.1071 +0 0.1851 +0 0.0616 +0 0.0539 +0 0.0520 +0 0.2047 +0 0.1542 +0 0.0642 +0 0.2127 +0 0.1556 +0 0.0717 +0 0.0690 +0 0.0920 +0 0.1844 +0 0.0540 +0 0.2585 +0 0.3587 +0 0.2358 +0 0.0579 +0 0.3888 +0 0.1384 +0 0.0475 +0 0.1899 +0 0.0707 +0 0.2279 +0 0.1246 +0 0.2382 +0 0.2480 +1 0.8537 +0 0.2205 +0 0.0979 +0 0.1041 +0 0.0665 +0 0.0865 +0 0.1175 +0 0.2600 +0 0.1372 +0 0.0665 +0 0.0684 +0 0.3483 +0 0.7109 +0 0.1803 +0 0.3725 +0 0.2908 +0 0.1059 +0 0.2166 +0 0.0755 +0 0.0917 +0 0.0832 +0 0.0614 +0 0.1330 +0 0.1863 +0 0.1358 +0 0.0769 +0 0.0614 +0 0.0858 +0 0.0789 +0 0.1036 +0 0.2538 +0 0.0759 +0 0.1247 +0 0.1547 +0 0.2050 +0 0.1002 +0 0.0651 +0 0.0404 +0 0.1125 +0 0.1216 +0 0.1730 +0 0.0581 +0 0.0808 +0 0.2475 +0 0.0981 +0 0.0507 +0 0.0943 +0 0.1594 +0 0.1191 +0 0.0983 +1 0.8110 +0 0.1322 +0 0.0543 +0 0.0363 +0 0.1212 +0 0.5452 +0 0.2052 +0 0.0984 +0 0.6856 +0 0.0883 +0 0.1512 +0 0.0866 +0 0.1020 +0 0.2514 +0 0.2426 +0 0.1413 +0 0.0664 +0 0.1519 +0 0.0665 +0 0.1264 +0 0.6664 +0 0.0659 +0 0.3341 +0 0.0875 +0 0.1339 +0 0.6665 +0 0.1081 +0 0.2138 +0 0.1149 +0 0.1286 +0 0.0775 +0 0.0942 +0 0.1495 +0 0.0881 +0 0.1491 +0 0.0814 +0 0.5234 +0 0.1778 +0 0.1240 +0 0.1704 +0 0.2427 +0 0.0609 +0 0.0799 +0 0.1186 +0 0.1383 +0 0.0861 +0 0.0843 +0 0.1967 +0 0.1108 +0 0.2523 +0 0.0635 +0 0.0724 +0 0.1921 +0 0.0819 +0 0.1302 +0 0.2569 +0 0.0493 +0 0.0609 +0 0.1706 +0 0.1424 +0 0.1008 +0 0.0808 +0 0.1233 +0 0.0511 +0 0.0770 +0 0.1044 +0 0.0621 +0 0.1476 +0 0.0736 +0 0.0478 +0 0.0387 +0 0.0349 +1 0.8584 +0 0.0587 +0 0.2202 +0 0.0652 +0 0.1005 +0 0.0963 +0 0.0553 +0 0.1132 +0 0.1294 +0 0.0880 +0 0.1255 +0 0.0932 +0 0.0918 +0 0.0710 +0 0.0646 +0 0.0535 +0 0.4369 +0 0.0860 +0 0.2090 +0 0.2411 +0 0.1335 +0 0.1005 +0 0.1018 +0 0.1211 +0 0.0489 +0 0.1175 +0 0.0457 +0 0.0650 +1 0.8528 +0 0.1104 +0 0.1218 +0 0.0689 +0 0.1468 +0 0.0638 +0 0.1116 +0 0.0858 +0 0.2270 +0 0.0771 +0 0.0956 +0 0.1875 +0 0.0581 +0 0.1453 +0 0.1140 +0 0.3053 +0 0.1039 +0 0.2189 +0 0.0552 +0 0.1321 +0 0.1456 +0 0.2104 +0 0.0717 +0 0.1508 +0 0.1091 +0 0.1260 +1 0.7644 +0 0.1932 +0 0.3844 +0 0.0715 +0 0.4543 +0 0.1935 +0 0.0795 +0 0.0900 +0 0.6985 +0 0.2371 +0 0.0689 +0 0.1164 +0 0.1492 +0 0.1076 +0 0.1376 +0 0.1141 +0 0.1209 +0 0.1029 +0 0.5780 +0 0.0886 +0 0.0800 +0 0.0440 +0 0.3569 +0 0.1023 +0 0.0885 +0 0.1150 +0 0.2401 +0 0.1150 +0 0.4021 +0 0.0999 +0 0.1042 +0 0.1285 +0 0.0811 +0 0.1067 +0 0.1188 +0 0.0653 +0 0.1072 +0 0.5201 +0 0.0565 +0 0.6938 +0 0.1646 +0 0.0796 +0 0.1856 +0 0.0620 +0 0.0820 +0 0.1957 +0 0.0761 +0 0.0712 +0 0.0916 +0 0.2831 +0 0.1031 +0 0.0650 +0 0.2046 +0 0.0881 +0 0.2033 +0 0.1525 +0 0.3194 +1 0.8065 +0 0.1973 +0 0.1133 +0 0.1933 +0 0.0406 +0 0.1573 +0 0.3555 +0 0.1359 +0 0.3572 +0 0.0671 +0 0.1315 +0 0.0374 +0 0.0704 +0 0.1079 +0 0.0761 +0 0.0754 +0 0.0454 +0 0.0543 +0 0.1582 +0 0.0552 +0 0.1703 +0 0.3975 +0 0.1155 +0 0.0621 +0 0.1603 +0 0.0847 +0 0.0950 +0 0.3012 +0 0.0574 +0 0.1634 +0 0.1041 +0 0.0834 +0 0.0595 +0 0.0788 +0 0.0644 +0 0.6494 +0 0.0850 +0 0.0611 +0 0.0810 +1 0.3004 +0 0.2551 +0 0.0647 +0 0.1510 +0 0.7246 +0 0.2299 +0 0.2307 +0 0.0667 +0 0.1325 +0 0.1170 +0 0.1574 +0 0.0570 +0 0.0613 +0 0.1791 +0 0.0888 +0 0.0331 +0 0.2349 +0 0.3358 +0 0.0896 +0 0.1686 +0 0.1108 +0 0.0701 +0 0.1311 +0 0.3870 +0 0.1780 +0 0.1033 +0 0.0836 +0 0.2885 +0 0.1419 +0 0.6530 +0 0.0535 +0 0.0574 +0 0.2173 +0 0.0652 +0 0.0483 +0 0.0398 +0 0.1897 +0 0.1458 +0 0.0549 +0 0.5952 +0 0.0965 +0 0.1491 +0 0.1599 +0 0.3367 +0 0.1322 +0 0.0832 +0 0.0680 +0 0.0992 +0 0.0638 +0 0.0834 +0 0.0685 +0 0.0757 +0 0.0824 +0 0.0684 +0 0.1421 +1 0.8311 +0 0.1310 +0 0.0941 +0 0.5739 +0 0.0524 +0 0.0882 +0 0.1510 +0 0.0452 +0 0.3123 +0 0.0407 +0 0.0655 +0 0.2371 +0 0.1040 +0 0.0531 +0 0.0459 +0 0.0556 +0 0.0716 +0 0.0432 +0 0.1666 +0 0.2117 +0 0.1540 +0 0.0739 +0 0.1436 +0 0.0524 +0 0.1230 +0 0.1906 +0 0.0534 +0 0.2408 +0 0.3468 +0 0.1414 +0 0.0961 +0 0.0371 +0 0.0672 +0 0.1749 +0 0.1117 +0 0.0418 +0 0.1846 +0 0.1166 +0 0.1435 +0 0.0832 +0 0.7486 +0 0.0737 +0 0.1217 +0 0.0489 +0 0.1481 +0 0.0354 +0 0.1372 +0 0.0432 +0 0.0603 +0 0.0473 +0 0.1252 +0 0.0800 +0 0.0849 +0 0.0806 +0 0.1450 +0 0.0924 +0 0.0831 +0 0.0850 +0 0.0338 +0 0.1362 +0 0.1785 +0 0.1316 +0 0.1052 +1 0.7535 +0 0.2746 +0 0.0833 +0 0.2327 +0 0.0644 +0 0.0311 +0 0.0690 +0 0.2371 +0 0.0497 +0 0.6060 +0 0.0545 +0 0.0550 +0 0.1260 +0 0.1300 +0 0.1073 +0 0.0854 +0 0.1585 +0 0.0971 +0 0.0832 +0 0.0802 +0 0.0472 +0 0.7210 +0 0.1201 +0 0.0957 +0 0.1215 +0 0.0583 +0 0.1514 +0 0.0812 +0 0.0797 +0 0.0751 +0 0.0547 +0 0.0884 +0 0.0514 +0 0.6595 +0 0.0740 +0 0.0548 +0 0.0778 +0 0.0600 +0 0.0688 +0 0.1005 +0 0.1637 +0 0.1406 +0 0.0770 +0 0.0872 +0 0.1582 +0 0.0777 +0 0.0585 +0 0.1102 +0 0.0671 +0 0.1018 +0 0.0746 +0 0.2392 +0 0.1734 +0 0.0621 +0 0.0847 +0 0.0845 +0 0.1107 +0 0.1032 +0 0.1657 +0 0.1050 +0 0.1830 +0 0.0491 +0 0.0587 +0 0.3942 +0 0.1333 +0 0.0726 +0 0.1235 +0 0.2328 +0 0.1804 +0 0.1044 +0 0.0999 +0 0.0700 +0 0.0828 +0 0.1245 +0 0.0791 +0 0.2725 +0 0.0564 +0 0.2261 +0 0.1854 +0 0.1599 +0 0.1154 +0 0.1669 +0 0.0696 +0 0.1243 +0 0.1532 +0 0.0737 +0 0.0713 +0 0.0874 +0 0.1383 +0 0.2373 +0 0.1447 +0 0.0702 +0 0.1357 +0 0.0970 +0 0.1612 +0 0.3253 +0 0.2224 +0 0.1648 +0 0.1384 +0 0.0743 +0 0.1009 +0 0.1620 +0 0.0440 +0 0.0814 +0 0.1002 +0 0.2403 +0 0.1939 +0 0.1740 +0 0.1187 +0 0.2096 +0 0.0985 +0 0.0826 +0 0.1823 +0 0.1026 +0 0.1423 +0 0.4101 +0 0.0789 +0 0.0912 +0 0.0320 +0 0.1133 +0 0.1305 +0 0.2436 +0 0.0768 +0 0.1466 +0 0.1372 +1 0.8422 +0 0.0434 +0 0.0790 +0 0.2440 +0 0.1357 +0 0.2260 +0 0.1459 +0 0.0331 +0 0.0753 +0 0.0482 +0 0.0907 +0 0.0707 +0 0.0736 +0 0.0503 +0 0.1749 +0 0.5085 +1 0.8239 +0 0.0666 +0 0.1409 +0 0.0662 +0 0.0759 +0 0.0984 +0 0.1287 +0 0.0997 +0 0.1768 +0 0.1207 +0 0.1668 +0 0.0677 +0 0.2393 +0 0.0672 +0 0.0832 +0 0.2130 +0 0.1813 +0 0.5204 +0 0.1026 +0 0.0557 +0 0.0774 +0 0.2342 +0 0.0859 +0 0.1840 +0 0.0843 +0 0.0569 +0 0.1668 +0 0.3159 +0 0.1501 +0 0.2783 +1 0.7839 +0 0.2637 +0 0.1815 +0 0.0386 +0 0.1219 +0 0.2100 +0 0.0592 +0 0.1303 +0 0.0577 +0 0.2138 +0 0.1009 +0 0.2377 +0 0.0750 +0 0.1011 +0 0.0599 +0 0.1214 +0 0.0738 +0 0.1136 +0 0.1142 +0 0.1762 +0 0.1496 +0 0.5213 +0 0.0582 +0 0.1023 +0 0.1020 +0 0.1357 +0 0.0880 +0 0.1077 +0 0.1859 +0 0.0702 +0 0.0805 +0 0.3565 +0 0.0935 +0 0.0921 +0 0.1107 +0 0.0536 +0 0.1017 +0 0.0926 +0 0.1345 +0 0.0706 +0 0.1411 +0 0.0455 +0 0.0556 +0 0.0711 +0 0.0911 +0 0.1249 +0 0.0845 +0 0.0688 +0 0.2173 +0 0.0530 +0 0.1202 +0 0.0381 +0 0.2519 +0 0.0999 +0 0.0787 +0 0.2296 +0 0.3968 +0 0.1673 +0 0.1512 +0 0.3854 +0 0.1875 +0 0.1195 +0 0.3040 +0 0.1469 +0 0.3587 +0 0.1010 +0 0.2452 +0 0.0778 +0 0.1075 +0 0.4654 +0 0.0622 +0 0.2242 +0 0.0961 +0 0.0695 +0 0.0715 +0 0.1702 +0 0.0570 +0 0.0925 +0 0.0456 +0 0.2345 +0 0.6277 +0 0.5323 +0 0.0559 +0 0.3495 +0 0.1968 +0 0.6062 +0 0.0832 +0 0.0775 +0 0.0709 +0 0.0782 +0 0.0902 +0 0.0649 +1 0.8382 +0 0.0971 +0 0.0719 +0 0.0755 +0 0.0570 +0 0.1413 +0 0.0486 +0 0.0913 +0 0.1297 +0 0.0877 +0 0.0430 +0 0.3285 +0 0.0737 +0 0.1107 +0 0.0735 +0 0.0561 +0 0.2382 +0 0.1979 +0 0.2214 +0 0.0577 +0 0.4837 +0 0.0944 +0 0.1185 +0 0.0983 +0 0.1046 +0 0.1115 +0 0.1591 +0 0.2513 +0 0.3818 +0 0.0361 +0 0.6269 +0 0.1203 +0 0.1101 +0 0.0944 +0 0.0431 +0 0.0703 +0 0.1426 +0 0.0798 +0 0.0735 +0 0.1900 +0 0.1571 +0 0.0736 +0 0.1153 +0 0.2299 +0 0.1580 +0 0.0669 +0 0.0541 +0 0.1656 +0 0.1404 +0 0.1033 +0 0.1509 +0 0.1220 +0 0.0470 +0 0.2584 +0 0.0481 +0 0.0751 +0 0.0860 +0 0.0728 +0 0.0696 +0 0.0594 +0 0.2249 +0 0.1646 +0 0.1469 +0 0.1066 +0 0.0378 +0 0.0761 +0 0.0395 +0 0.5395 +0 0.1103 +0 0.2258 +0 0.0803 +0 0.1039 +1 0.8370 +0 0.0645 +0 0.2389 +0 0.1085 +0 0.1235 +0 0.0558 +0 0.0805 +0 0.4484 +0 0.0652 +0 0.2652 +0 0.0719 +0 0.1508 +0 0.0464 +0 0.2652 +0 0.1284 +0 0.0990 +0 0.0748 +0 0.1386 +0 0.0704 +0 0.1333 +0 0.1809 +0 0.0625 +0 0.1385 +0 0.1068 +0 0.0988 +0 0.1008 +0 0.0722 +0 0.1557 +0 0.1054 +0 0.2524 +0 0.0418 +0 0.1181 +0 0.0658 +0 0.5908 +0 0.0645 +0 0.0708 +0 0.0981 +0 0.0814 +0 0.0819 +0 0.0468 +0 0.1190 +0 0.1156 +0 0.2460 +0 0.1586 +1 0.8633 +0 0.1731 +0 0.0557 +0 0.1285 +0 0.1682 +0 0.0769 +0 0.0730 +0 0.4380 +0 0.1527 +0 0.0648 +0 0.0437 +0 0.2082 +0 0.1179 +0 0.0525 +0 0.2382 +0 0.3144 +0 0.1203 +0 0.2297 +0 0.0930 +0 0.7232 +0 0.0818 +0 0.0976 +0 0.3262 +0 0.0666 +0 0.0837 +0 0.1200 +0 0.0304 +0 0.1746 +0 0.0510 +0 0.1157 +0 0.1502 +0 0.1973 +0 0.0348 +0 0.3342 +0 0.1181 +0 0.0513 +0 0.1530 +0 0.0487 +0 0.2902 +0 0.2068 +0 0.0810 +0 0.4511 +1 0.8585 +0 0.0781 +0 0.1434 +0 0.1793 +0 0.0537 +0 0.1456 +0 0.0832 +0 0.0576 +0 0.1121 +0 0.1992 +0 0.3365 +0 0.1113 +0 0.1074 +0 0.0600 +0 0.1002 +0 0.1162 +0 0.0364 +0 0.3369 +0 0.1204 +0 0.2710 +0 0.0463 +0 0.0411 +0 0.1458 +0 0.1082 +0 0.3276 +0 0.0688 +0 0.0792 +0 0.0928 +1 0.8693 +0 0.1028 +0 0.1558 +0 0.0669 +0 0.1146 +0 0.1308 +0 0.0831 +0 0.1408 +0 0.0836 +0 0.1059 +0 0.1265 +0 0.1114 +0 0.0888 +0 0.0982 +0 0.0757 +0 0.2679 +0 0.0942 +0 0.1755 +0 0.0824 +0 0.1182 +0 0.3160 +0 0.1474 +0 0.0978 +0 0.0874 +0 0.0902 +0 0.4423 +0 0.1313 +0 0.0996 +0 0.1961 +0 0.0843 +0 0.2465 +0 0.0776 +0 0.1603 +0 0.2482 +0 0.1321 +0 0.2350 +0 0.0694 +0 0.1388 +0 0.1023 +0 0.0395 +0 0.0954 +0 0.0508 +0 0.0589 +0 0.2047 +0 0.1997 +0 0.0695 +0 0.4584 +0 0.0948 +0 0.0941 +0 0.2847 +0 0.0598 +0 0.0471 +0 0.4472 +0 0.1283 +0 0.0921 +0 0.0722 +0 0.1039 +0 0.0968 +0 0.1909 +0 0.1220 +0 0.0702 +0 0.1280 +0 0.1628 +0 0.1026 +0 0.0426 +0 0.0618 +0 0.0423 +0 0.0932 +0 0.1176 +0 0.1004 +0 0.0597 +0 0.1508 +0 0.1934 +0 0.0568 +0 0.0570 +0 0.1949 +0 0.0647 +0 0.0650 +0 0.1443 +0 0.1505 +0 0.2193 +0 0.0720 +0 0.2564 +0 0.0981 +0 0.5014 +0 0.1276 +0 0.1014 +0 0.1426 +0 0.0994 +0 0.3233 +0 0.0452 +0 0.0512 +0 0.1336 +0 0.0656 +0 0.3060 +0 0.3402 +0 0.0410 +0 0.6289 +0 0.0621 +0 0.1012 +0 0.3724 +0 0.0375 +0 0.1023 +0 0.1392 +0 0.1458 +0 0.0845 +0 0.2921 +0 0.0543 +0 0.1199 +0 0.1607 +0 0.0463 +0 0.1734 +0 0.6990 +0 0.1405 +0 0.2060 +0 0.0676 +0 0.3056 +0 0.0450 +0 0.1945 +0 0.3244 +0 0.2828 +0 0.2049 +0 0.0401 +0 0.1531 +0 0.1824 +0 0.6549 +0 0.0325 +0 0.1946 +0 0.2148 +0 0.1802 +0 0.1258 +0 0.1006 +0 0.0468 +0 0.2474 +0 0.0526 +0 0.6007 +0 0.1856 +0 0.2017 +0 0.2677 +0 0.1816 +0 0.1209 +0 0.1047 +0 0.2736 +0 0.0737 +0 0.1109 +0 0.0921 +1 0.7929 +0 0.0496 +1 0.8624 +0 0.2721 +0 0.0356 +0 0.0646 +0 0.0414 +0 0.0676 +0 0.0317 +0 0.1559 +0 0.1133 +0 0.5345 +0 0.0366 +0 0.2836 +0 0.0850 +0 0.1532 +0 0.0665 +0 0.1199 +0 0.4101 +0 0.1405 +0 0.0357 +0 0.0808 +0 0.0540 +0 0.1725 +0 0.1534 +0 0.0778 +0 0.0634 +0 0.0529 +0 0.0942 +0 0.0680 +0 0.0395 +0 0.1347 +0 0.0769 +0 0.1094 +0 0.0774 +0 0.1244 +0 0.0737 +0 0.0811 +0 0.0662 +0 0.1113 +0 0.2448 +0 0.4972 +0 0.0342 +0 0.1392 +0 0.0458 +0 0.1367 +0 0.0773 +0 0.0575 +0 0.1040 +0 0.0849 +0 0.0274 +0 0.1953 +0 0.2768 +0 0.0648 +0 0.0601 +0 0.1226 +0 0.1243 +0 0.0623 +0 0.1121 +0 0.1537 +0 0.1663 +0 0.1258 +0 0.0513 +0 0.6668 +0 0.4386 +0 0.1323 +0 0.3163 +0 0.0610 +0 0.0788 +0 0.0860 +1 0.8194 +0 0.0429 +0 0.1162 +0 0.0709 +0 0.0547 +0 0.0664 +0 0.2018 +0 0.0919 +0 0.1436 +0 0.0899 +0 0.0697 +0 0.1484 +0 0.0616 +0 0.0770 +0 0.2030 +0 0.1343 +0 0.1722 +0 0.0980 +0 0.0777 +0 0.0820 +0 0.0618 +0 0.1126 +0 0.1443 +0 0.0910 +0 0.0506 +0 0.2987 +0 0.6841 +0 0.0570 +0 0.1725 +0 0.1009 +0 0.0969 +0 0.0988 +0 0.1060 +0 0.0870 +0 0.0479 +0 0.1566 +0 0.2010 +0 0.1038 +0 0.1439 +0 0.3817 +0 0.1679 +0 0.1464 +0 0.1488 +0 0.1898 +0 0.1186 +0 0.2134 +0 0.2882 +0 0.1029 +0 0.0480 +0 0.1859 +0 0.2642 +0 0.0673 +0 0.1898 +0 0.5660 +0 0.0723 +0 0.1115 +0 0.1015 +0 0.2877 +0 0.0558 +0 0.1771 +0 0.1870 +0 0.2395 +0 0.0842 +0 0.1194 +0 0.0886 +0 0.1542 +0 0.2031 +0 0.1906 +0 0.1087 +0 0.1523 +0 0.2080 +0 0.2293 +0 0.0546 +0 0.1308 +0 0.1680 +0 0.0941 +0 0.3877 +0 0.2419 +0 0.2345 +0 0.1237 +0 0.0903 +0 0.1047 +0 0.0729 +0 0.0483 +0 0.0576 +0 0.1106 +0 0.1397 +0 0.0549 +0 0.0413 +0 0.2278 +0 0.1078 +0 0.0267 +0 0.1072 +1 0.8586 +0 0.0694 +0 0.3445 +0 0.0583 +0 0.1696 +0 0.2081 +0 0.1366 +0 0.0637 +0 0.1408 +0 0.2094 +0 0.0859 +0 0.0628 +0 0.0893 +0 0.0589 +0 0.1337 +0 0.0505 +0 0.1722 +0 0.0698 +0 0.3541 +0 0.1166 +0 0.0514 +0 0.2175 +0 0.0715 +0 0.1295 +0 0.0528 +0 0.2076 +0 0.0834 +0 0.2223 +0 0.1067 +0 0.0522 +0 0.6908 +0 0.2207 +0 0.0437 +0 0.0508 +0 0.1203 +0 0.0928 +0 0.2244 +0 0.1429 +0 0.1592 +0 0.1660 +0 0.0431 +0 0.2678 +0 0.1264 +0 0.0527 +0 0.2057 +0 0.4509 +0 0.1282 +0 0.5828 +0 0.1415 +0 0.0974 +0 0.0765 +0 0.0358 +0 0.2814 +0 0.2643 +0 0.2439 +0 0.1340 +0 0.1072 +0 0.0945 +0 0.2219 +0 0.0595 +0 0.3138 +0 0.0570 +0 0.1535 +0 0.0428 +0 0.0644 +0 0.2523 +0 0.0769 +0 0.1225 +0 0.1086 +0 0.0624 +0 0.0732 +0 0.0914 +1 0.7681 +0 0.0876 +0 0.4072 +0 0.1424 +0 0.3113 +0 0.1010 +0 0.0495 +0 0.0859 +0 0.0434 +0 0.0822 +0 0.1467 +0 0.0411 +0 0.2069 +0 0.1382 +0 0.1022 +0 0.0680 +0 0.1294 +0 0.0706 +0 0.0979 +0 0.0435 +0 0.1169 +0 0.1093 +0 0.0771 +0 0.0467 +0 0.1185 +0 0.3155 +0 0.4318 +0 0.0927 +0 0.0910 +0 0.0889 +0 0.0948 +0 0.0771 +0 0.1507 +1 0.8745 +0 0.0795 +0 0.1473 +0 0.5259 +0 0.1165 +1 0.8115 +0 0.0764 +0 0.3113 +0 0.2307 +0 0.1188 +0 0.1139 +0 0.1249 +0 0.2756 +0 0.0993 +0 0.2015 +0 0.0790 +0 0.0367 +0 0.1064 +0 0.0936 +0 0.0923 +0 0.1756 +0 0.0330 +0 0.2590 +0 0.0737 +0 0.1509 +0 0.2162 +0 0.0942 +0 0.1177 +0 0.0799 +0 0.0427 +0 0.5547 +0 0.0773 +0 0.0776 +0 0.1287 +0 0.1117 +0 0.0721 +0 0.1439 +0 0.1007 +0 0.1821 +0 0.1180 +0 0.3322 +0 0.0841 +0 0.2125 +0 0.1096 +0 0.1112 +0 0.1205 +0 0.1397 +0 0.0945 +0 0.0801 +0 0.0809 +0 0.2666 +0 0.1050 +0 0.0453 +0 0.0584 +0 0.1035 +0 0.5525 +0 0.1413 +0 0.0610 +0 0.0635 +0 0.0841 +0 0.1245 +0 0.0785 +0 0.1676 +0 0.1166 +0 0.5598 +0 0.0462 +0 0.1393 +0 0.0594 +0 0.0420 +0 0.0498 +0 0.1595 +0 0.0812 +0 0.0687 +0 0.0666 +0 0.0963 +0 0.1025 +0 0.1681 +0 0.5241 +0 0.0859 +1 0.7782 +0 0.0427 +0 0.2006 +0 0.0738 +0 0.0661 +0 0.3661 +0 0.0513 +0 0.2408 +0 0.1810 +0 0.1768 +0 0.2502 +0 0.3011 +0 0.0860 +0 0.1274 +0 0.0620 +0 0.0732 +0 0.1381 +0 0.0607 +0 0.1562 +0 0.3944 +0 0.1040 +0 0.0773 +0 0.0396 +0 0.0839 +0 0.0759 +1 0.8206 +0 0.2290 +0 0.1025 +0 0.0457 +0 0.2289 +0 0.0456 +0 0.1470 +0 0.1315 +0 0.0915 +1 0.7680 +0 0.0363 +0 0.2492 +0 0.1615 +0 0.1045 +0 0.0965 +0 0.0429 +0 0.0848 +0 0.0913 +0 0.4276 +0 0.0487 +0 0.0858 +0 0.0877 +0 0.0792 +0 0.1782 +0 0.1205 +0 0.2289 +0 0.0412 +0 0.1091 +0 0.0392 +0 0.1178 +0 0.1567 +0 0.3216 +0 0.1873 +0 0.1254 +0 0.0746 +0 0.4573 +0 0.0431 +0 0.0866 +0 0.0941 +0 0.0694 +0 0.1828 +0 0.2282 +0 0.1497 +0 0.1946 +0 0.1051 +0 0.1044 +0 0.0389 +0 0.0681 +0 0.0521 +0 0.0493 +0 0.0766 +0 0.0854 +0 0.0987 +0 0.0987 +0 0.0719 +0 0.2073 +0 0.2369 +0 0.0840 +0 0.0870 +0 0.0710 +0 0.1729 +0 0.1377 +0 0.0718 +0 0.1422 +0 0.1050 +0 0.0690 +0 0.1754 +0 0.1165 +0 0.1407 +0 0.0555 +0 0.0787 +0 0.0576 +0 0.0816 +0 0.0474 +0 0.2959 +0 0.1199 +0 0.3678 +0 0.0982 +0 0.0945 +0 0.2141 +0 0.0815 +0 0.1421 +0 0.0440 +0 0.0488 +0 0.0643 +0 0.2294 +0 0.0756 +0 0.0551 +0 0.0768 +0 0.1107 +0 0.1877 +0 0.0451 +0 0.4267 +0 0.1383 +0 0.0818 +0 0.0630 +0 0.1505 +0 0.0672 +0 0.0949 +0 0.0772 +0 0.0781 +0 0.2115 +0 0.0989 +0 0.0796 +0 0.0566 +0 0.1137 +0 0.1034 +0 0.1032 +0 0.0761 +0 0.1004 +0 0.4304 +0 0.1558 +0 0.0639 +0 0.1254 +0 0.0451 +0 0.0907 +0 0.1482 +0 0.1032 +0 0.1286 +0 0.0733 +0 0.0753 +0 0.1659 +0 0.0334 +0 0.0956 +0 0.1661 +0 0.1619 +0 0.1803 +0 0.4640 +0 0.0938 +0 0.1163 +0 0.0947 +0 0.0865 +0 0.0448 +0 0.3281 +0 0.0891 +0 0.1187 +0 0.0867 +0 0.0457 +0 0.0416 +0 0.0918 +0 0.1048 +0 0.0708 +0 0.2740 +0 0.0801 +0 0.0834 +0 0.2131 +0 0.1069 +0 0.3118 +0 0.1175 +0 0.0867 +0 0.1632 +0 0.0978 +0 0.0942 +1 0.8275 +0 0.0386 +0 0.1111 +0 0.0956 +1 0.7862 +0 0.1211 +0 0.0765 +0 0.0597 +0 0.1927 +0 0.0949 +0 0.0710 +0 0.2597 +0 0.0901 +0 0.1469 +0 0.0474 +0 0.1412 +0 0.0474 +0 0.0511 +0 0.2133 +0 0.1099 +0 0.3918 +0 0.0654 +0 0.0907 +0 0.1340 +0 0.0506 +0 0.1582 +0 0.0535 +0 0.1419 +0 0.0499 +0 0.2263 +0 0.0716 +0 0.1249 +0 0.1393 +0 0.0684 +0 0.0639 +0 0.0822 +0 0.1176 +0 0.0829 +0 0.1281 +0 0.0764 +0 0.0583 +0 0.1633 +0 0.3539 +0 0.1182 +0 0.1265 +0 0.2169 +0 0.0832 +0 0.2169 +0 0.0971 +0 0.1130 +0 0.0582 +0 0.1366 +0 0.2019 +0 0.1113 +0 0.0686 +0 0.1918 +0 0.2056 +0 0.1281 +0 0.1016 +0 0.0887 +0 0.1447 +0 0.2731 +0 0.0786 +0 0.0840 +0 0.1273 +0 0.1455 +0 0.1389 +0 0.1895 +0 0.0807 +0 0.1918 +0 0.2143 +0 0.1082 +0 0.0977 +0 0.0821 +0 0.1090 +0 0.1158 +0 0.1154 +0 0.0315 +0 0.1586 +0 0.5057 +0 0.1001 +1 0.7805 +0 0.0647 +0 0.1169 +0 0.1128 +0 0.0538 +0 0.0940 +0 0.0958 +0 0.1182 +0 0.0735 +0 0.0817 +0 0.0523 +0 0.1395 +0 0.0882 +0 0.2907 +0 0.3299 +0 0.0678 +0 0.0697 +0 0.0900 +0 0.1571 +0 0.0966 +0 0.0578 +0 0.0695 +0 0.0703 +0 0.1008 +0 0.7316 +0 0.1033 +0 0.0730 +0 0.0612 +0 0.6104 +0 0.0566 +0 0.0974 +0 0.1717 +0 0.1508 +0 0.0916 +0 0.3972 +0 0.1346 +0 0.0671 +0 0.1115 +0 0.5360 +0 0.1267 +0 0.1851 +0 0.0950 +0 0.0606 +0 0.0454 +0 0.0530 +0 0.0693 +0 0.1473 +0 0.1080 +0 0.3259 +0 0.1980 +0 0.0557 +0 0.0853 +0 0.0876 +0 0.1397 +0 0.0439 +0 0.6380 +0 0.0718 +0 0.1354 +0 0.0891 +0 0.0870 +0 0.0509 +0 0.0856 +0 0.0774 +0 0.1032 +0 0.1623 +0 0.0683 +0 0.0823 +0 0.0943 +0 0.5435 +0 0.1069 +0 0.1561 +0 0.1320 +0 0.0745 +0 0.0976 +0 0.2242 +0 0.1827 +0 0.3221 +0 0.1230 +0 0.2939 +0 0.0659 +0 0.2132 +0 0.4217 +0 0.0507 +0 0.3453 +0 0.1001 +0 0.1188 +0 0.0515 +0 0.1391 +0 0.1921 +0 0.3440 +0 0.2421 +0 0.0588 +0 0.0540 +0 0.1410 +0 0.1576 +0 0.0342 +0 0.0606 +0 0.0975 +0 0.2927 +0 0.0819 +0 0.0378 +0 0.0815 +0 0.3914 +0 0.1053 +0 0.0634 +0 0.1225 +0 0.1229 +0 0.4278 +0 0.3393 +0 0.1718 +1 0.7677 +0 0.0408 +0 0.0869 +0 0.2169 +0 0.0497 +0 0.1292 +0 0.0794 +0 0.5372 +0 0.0473 +0 0.1221 +0 0.1660 +0 0.2867 +0 0.0956 +0 0.2266 +0 0.1647 +0 0.1363 +0 0.2307 +0 0.1094 +0 0.1997 +0 0.1018 +0 0.6106 +0 0.0920 +0 0.0994 +0 0.0332 +0 0.0648 +0 0.3274 +0 0.0789 +0 0.0946 +0 0.0643 +0 0.1839 +0 0.0841 +0 0.0842 +0 0.0926 +0 0.2216 +0 0.0836 +0 0.1112 +0 0.0825 +0 0.0840 +0 0.0937 +0 0.0373 +0 0.2822 +0 0.0871 +0 0.0659 +0 0.0846 +0 0.0461 +0 0.1410 +0 0.3656 +0 0.1355 +0 0.1971 +0 0.0837 +0 0.0543 +0 0.0828 +0 0.0919 +0 0.3836 +0 0.0563 +0 0.1136 +0 0.3131 +0 0.0972 +0 0.0847 +0 0.1193 +0 0.1667 +0 0.7247 +0 0.1869 +0 0.1327 +0 0.1152 +0 0.0758 +0 0.3745 +0 0.0674 +0 0.0728 +0 0.1753 +0 0.2661 +1 0.8187 +0 0.0968 +0 0.0873 +0 0.0812 +0 0.1674 +0 0.1047 +1 0.7695 +0 0.1384 +0 0.1244 +0 0.4138 +0 0.1648 +0 0.2436 +0 0.1869 +0 0.1745 +0 0.2506 +0 0.0889 +0 0.1126 +0 0.1100 +0 0.1536 +0 0.1414 +0 0.1713 +0 0.0556 +0 0.1012 +0 0.1222 +0 0.1059 +0 0.1137 +0 0.1037 +0 0.1738 +0 0.0788 +0 0.0750 +0 0.5347 +0 0.1779 +0 0.6483 +0 0.1355 +0 0.0850 +0 0.1108 +0 0.0499 +0 0.0814 +0 0.1669 +0 0.1405 +0 0.2701 +0 0.0431 +0 0.0470 +0 0.0824 +0 0.0965 +0 0.0680 +0 0.0654 +0 0.0369 +0 0.3414 +0 0.2538 +0 0.0972 +0 0.1152 +0 0.0970 +0 0.0584 +0 0.1177 +0 0.0380 +0 0.1010 +0 0.1572 +0 0.0560 +0 0.0547 +0 0.0543 +0 0.1864 +0 0.1106 +0 0.0481 +0 0.1500 +0 0.1681 +0 0.0762 +0 0.0432 +0 0.1209 +0 0.0776 +0 0.2040 +0 0.0429 +0 0.0895 +0 0.0981 +0 0.1327 +0 0.2080 +0 0.0764 +0 0.2072 +0 0.1111 +0 0.2285 +0 0.1353 +0 0.0691 +0 0.0401 +0 0.2280 +0 0.2418 +0 0.0724 +0 0.0783 +0 0.1327 +0 0.0558 +0 0.1514 +0 0.2695 +0 0.0790 +0 0.2066 +0 0.1053 +0 0.1388 +0 0.0668 +0 0.0987 +0 0.2146 +0 0.0967 +0 0.0965 +0 0.0393 +0 0.1919 +0 0.1038 +0 0.1511 +0 0.0944 +0 0.0395 +0 0.1632 +0 0.1083 +0 0.0927 +0 0.1359 +0 0.1010 +0 0.0857 +0 0.0913 +0 0.0844 +0 0.1238 +0 0.4894 +0 0.2609 +0 0.0784 +0 0.1522 +0 0.0831 +0 0.1538 +0 0.0988 +0 0.0899 +0 0.1467 +0 0.1397 +0 0.0811 +0 0.1258 +0 0.1941 +0 0.1025 +0 0.1422 +0 0.3880 +0 0.0426 +0 0.0884 +0 0.0882 +1 0.8467 +0 0.1287 +0 0.0438 +0 0.0634 +0 0.0568 +0 0.1925 +0 0.1125 +0 0.4264 +0 0.0614 +0 0.1637 +0 0.0352 +0 0.0416 +0 0.1634 +0 0.0494 +0 0.0404 +0 0.1303 +0 0.1733 +0 0.2040 +0 0.1110 +0 0.0604 +0 0.0691 +0 0.1559 +0 0.1009 +0 0.0969 +0 0.0466 +0 0.0634 +0 0.1167 +0 0.0974 +0 0.0955 +0 0.0787 +0 0.1174 +0 0.1358 +0 0.1038 +0 0.0487 +0 0.2843 +0 0.0797 +0 0.2266 +0 0.1169 +0 0.1359 +0 0.1167 +0 0.0799 +0 0.0530 +0 0.0839 +0 0.1168 +0 0.1670 +0 0.1093 +0 0.0374 +0 0.2115 +0 0.1587 +0 0.3316 +0 0.1082 +0 0.1837 +0 0.0846 +0 0.0435 +0 0.2133 +0 0.1689 +0 0.0819 +0 0.1122 +0 0.2300 +0 0.1032 +0 0.1096 +0 0.0926 +0 0.0732 +0 0.3150 +0 0.0766 +0 0.1005 +0 0.0598 +0 0.1658 +0 0.3815 +0 0.1304 +0 0.6786 +0 0.1572 +0 0.0375 +0 0.1055 +0 0.1864 +0 0.0982 +0 0.0922 +0 0.0686 +0 0.0448 +0 0.3789 +0 0.0545 +0 0.0986 +0 0.1067 +0 0.1097 +0 0.0851 +0 0.1540 +0 0.1266 +0 0.1677 +0 0.0807 +0 0.1177 +0 0.0765 +0 0.0481 +0 0.0694 +0 0.1736 +0 0.0655 +0 0.2096 +0 0.1703 +0 0.1215 +0 0.1389 +0 0.0994 +0 0.0459 +0 0.0958 +0 0.0502 +0 0.2763 +0 0.0352 +0 0.0713 +0 0.1108 +0 0.2171 +0 0.0709 +0 0.0711 +0 0.1115 +0 0.1282 +0 0.0971 +0 0.0741 +0 0.2207 +0 0.4320 +1 0.7797 +0 0.1395 +0 0.1752 +0 0.1778 +0 0.0759 +0 0.1243 +0 0.0792 +0 0.1607 +0 0.0632 +0 0.1557 +0 0.0585 +0 0.0500 +0 0.1898 +0 0.1372 +0 0.0806 +0 0.0819 +0 0.0411 +0 0.2447 +0 0.3051 +0 0.5624 +0 0.0589 +0 0.0905 +0 0.0514 +0 0.0670 +0 0.1572 +0 0.1752 +0 0.1368 +0 0.2815 +0 0.2027 +0 0.1557 +0 0.2571 +0 0.1740 +0 0.3181 +0 0.1552 +0 0.0862 +0 0.3619 +0 0.4823 +0 0.0748 +0 0.1812 +0 0.0628 +0 0.1674 +0 0.2492 +0 0.1249 +0 0.1124 +0 0.0552 +0 0.2112 +0 0.0542 +0 0.0658 +0 0.1112 +0 0.0686 +0 0.0437 +1 0.7764 +0 0.0421 +0 0.0751 +0 0.0919 +0 0.0993 +0 0.0530 +0 0.0953 +0 0.0539 +0 0.0629 +0 0.1970 +0 0.0491 +0 0.0836 +0 0.0972 +0 0.1391 +0 0.0443 +0 0.1258 +0 0.0843 +0 0.0991 +0 0.0541 +0 0.0719 +0 0.0545 +0 0.0319 +0 0.3948 +0 0.0863 +0 0.0521 +0 0.1592 +0 0.4461 +0 0.0622 +0 0.0736 +0 0.2649 +0 0.1097 +0 0.1033 +0 0.0630 +0 0.6137 +0 0.0767 +0 0.3111 +0 0.0681 +0 0.0626 +0 0.1681 +0 0.0504 +0 0.1328 +0 0.0784 +0 0.0728 +0 0.0972 +0 0.3655 +0 0.1097 +0 0.2039 +0 0.0412 +0 0.0989 +0 0.0646 +0 0.0661 +0 0.1513 +0 0.0802 +0 0.1576 +0 0.2176 +0 0.0844 +0 0.0696 +0 0.4243 +0 0.0950 +0 0.0912 +0 0.0855 +0 0.0496 +0 0.1415 +0 0.0963 +0 0.0841 +0 0.1908 +0 0.4931 +0 0.6422 +0 0.1967 +0 0.0842 +0 0.2014 +0 0.1369 +0 0.2388 +0 0.1269 +0 0.0686 +0 0.0920 +0 0.0391 +0 0.1367 +0 0.1771 +1 0.7773 +0 0.2414 +0 0.0468 +0 0.0513 +0 0.0784 +0 0.1888 +0 0.0456 +0 0.2620 +0 0.1013 +0 0.1307 +0 0.0712 +0 0.1308 +0 0.0748 +0 0.0762 +0 0.0738 +0 0.0409 +0 0.1501 +0 0.0464 +0 0.0739 +0 0.2384 +0 0.0875 +0 0.2444 +0 0.1560 +0 0.1961 +0 0.0611 +0 0.0903 +0 0.1054 +0 0.0550 +0 0.1306 +0 0.0795 +0 0.1548 +0 0.0941 +0 0.1278 +0 0.1130 +0 0.0556 +0 0.0945 +0 0.5824 +0 0.0429 +0 0.0984 +0 0.1183 +0 0.0384 +0 0.1370 +0 0.2280 +0 0.2027 +0 0.0877 +0 0.1958 +0 0.0726 +0 0.0351 +0 0.1079 +0 0.1718 +0 0.0796 +0 0.0373 +0 0.1794 +0 0.5923 +0 0.0926 +0 0.0964 +0 0.1707 +1 0.7729 +0 0.0484 +0 0.1670 +0 0.2859 +0 0.2382 +0 0.6432 +0 0.0640 +0 0.0435 +0 0.6853 +0 0.0460 +0 0.1762 +0 0.0785 +0 0.0475 +0 0.0615 +0 0.2299 +0 0.1686 +0 0.0738 +0 0.1533 +0 0.0966 +0 0.1968 +0 0.0862 +0 0.2203 +0 0.0559 +0 0.2011 +0 0.1227 +0 0.0443 +0 0.1790 +0 0.0645 +0 0.0544 +0 0.2974 +0 0.2462 +0 0.0502 +0 0.0608 +0 0.1858 +0 0.0922 +0 0.0800 +0 0.3337 +0 0.0786 +0 0.0507 +0 0.0715 +0 0.0656 +0 0.0967 +0 0.1457 +0 0.1769 +0 0.1233 +1 0.7819 +0 0.1145 +0 0.0936 +0 0.2555 +0 0.1573 +0 0.1315 +0 0.0919 +0 0.0576 +0 0.2007 +0 0.1260 +0 0.0492 +0 0.0518 +0 0.2219 +0 0.1502 +0 0.0727 +0 0.2042 +0 0.1467 +0 0.7299 +0 0.2608 +0 0.0896 +0 0.1119 +0 0.1001 +0 0.1012 +0 0.1745 +0 0.0314 +0 0.1428 +0 0.0859 +0 0.1035 +0 0.2280 +0 0.1490 +0 0.0548 +0 0.3152 +0 0.5389 +0 0.0936 +0 0.1856 +0 0.0435 +0 0.3624 +0 0.0503 +0 0.1099 +0 0.6044 +0 0.1221 +0 0.5371 +0 0.1239 +0 0.0839 +0 0.0604 +0 0.0588 +0 0.0711 +0 0.4592 +0 0.1188 +0 0.1168 +0 0.0834 +0 0.2733 +0 0.1174 +0 0.1257 +0 0.1497 +0 0.1687 +0 0.0518 +0 0.0516 +0 0.0414 +0 0.1364 +0 0.1211 +0 0.1463 +0 0.0875 +0 0.1106 +0 0.2021 +0 0.2415 +0 0.0482 +0 0.1186 +0 0.0865 +0 0.0556 +0 0.0642 +0 0.1326 +0 0.0568 +0 0.1136 +0 0.0327 +0 0.0563 +0 0.1640 +0 0.2028 +0 0.0663 +0 0.1826 +0 0.0548 +1 0.7794 +0 0.0736 +0 0.4825 +0 0.2266 +0 0.0895 +0 0.1074 +0 0.0428 +0 0.0471 +0 0.1780 +0 0.0822 +0 0.1030 +0 0.0650 +0 0.0512 +0 0.1217 +0 0.6120 +0 0.0651 +0 0.1318 +0 0.1205 +0 0.2613 +0 0.0532 +0 0.6975 +0 0.0853 +0 0.0622 +0 0.0723 +0 0.0890 +0 0.0974 +0 0.0704 +0 0.4245 +0 0.1317 +0 0.3370 +0 0.1214 +0 0.1009 +0 0.0664 +0 0.1618 +0 0.1810 +0 0.0464 +0 0.1328 +0 0.1478 +0 0.0992 +0 0.1166 +0 0.0614 +0 0.1257 +0 0.0950 +0 0.4371 +0 0.0893 +0 0.0489 +0 0.3208 +0 0.1314 +0 0.6702 +0 0.0896 +0 0.3538 +0 0.0441 +0 0.0497 +0 0.1460 +0 0.1260 +0 0.0781 +0 0.1037 +0 0.0554 +0 0.1458 +0 0.1226 +0 0.0792 +0 0.0771 +0 0.2578 +0 0.1171 +0 0.0912 +0 0.1232 +0 0.2653 +0 0.0735 +0 0.0603 +0 0.1040 +0 0.0956 +0 0.0660 +0 0.0868 +0 0.0877 +0 0.1091 +0 0.0750 +0 0.1231 +0 0.0407 +0 0.1375 +0 0.1415 +0 0.1188 +0 0.0842 +0 0.0451 +0 0.1334 +0 0.1361 +0 0.0440 +1 0.8406 +0 0.0950 +0 0.0631 +0 0.1746 +0 0.0978 +0 0.0740 +0 0.1352 +0 0.1823 +0 0.1328 +0 0.2706 +0 0.0465 +0 0.2331 +0 0.0763 +0 0.1213 +0 0.0823 +0 0.0704 +0 0.0603 +0 0.0479 +0 0.2286 +0 0.0929 +0 0.0418 +0 0.1319 +0 0.0733 +1 0.8351 +0 0.2035 +0 0.1004 +0 0.1637 +0 0.0534 +0 0.0410 +0 0.1532 +0 0.0935 +0 0.0794 +0 0.0482 +0 0.1169 +0 0.0641 +0 0.1444 +0 0.1830 +0 0.1007 +0 0.1339 +0 0.0594 +0 0.1281 +0 0.1731 +0 0.1040 +0 0.0679 +0 0.0479 +0 0.1956 +0 0.0542 +0 0.1105 +0 0.0927 +0 0.0583 +0 0.0637 +0 0.1352 +0 0.2844 +0 0.0561 +0 0.0715 +0 0.1227 +0 0.6738 +0 0.0807 +0 0.0565 +0 0.0738 +0 0.2501 +0 0.1061 +0 0.2129 +0 0.1235 +0 0.1247 +0 0.0789 +0 0.1202 +0 0.0825 +0 0.1578 +0 0.3418 +0 0.0466 +0 0.0564 +0 0.0980 +0 0.0428 +0 0.0940 +0 0.0729 +0 0.1216 +0 0.0928 +0 0.1743 +0 0.1847 +0 0.2298 +0 0.1401 +0 0.0926 +0 0.2654 +0 0.0478 +0 0.0672 +0 0.1831 +0 0.0741 +0 0.1607 +0 0.0897 +0 0.1469 +0 0.0962 +0 0.0635 +0 0.0742 +0 0.1253 +0 0.2178 +0 0.1617 +0 0.0831 +0 0.1479 +0 0.3704 +0 0.0967 +0 0.1102 +0 0.0465 +0 0.1468 +0 0.0780 +0 0.4597 +0 0.1138 +0 0.0946 +0 0.0697 +0 0.0995 +0 0.0444 +0 0.3685 +0 0.4860 +0 0.1135 +0 0.1298 +0 0.0793 +0 0.1241 +0 0.1409 +0 0.1227 +0 0.1049 +0 0.0796 +0 0.1814 +0 0.5828 +0 0.0477 +0 0.1161 +0 0.0941 +0 0.0728 +0 0.2520 +0 0.0358 +0 0.0787 +0 0.0818 +0 0.0783 +0 0.0691 +0 0.0702 +0 0.1194 +0 0.0944 +0 0.1315 +1 0.8409 +0 0.6169 +0 0.1031 +0 0.1885 +0 0.1302 +0 0.0793 +0 0.1489 +0 0.2017 +0 0.0802 +0 0.0598 +0 0.4858 +0 0.3556 +0 0.1405 +0 0.1103 +0 0.1023 +0 0.1076 +0 0.0784 +0 0.0518 +0 0.1944 +0 0.1667 +0 0.0419 +0 0.0406 +0 0.0588 +0 0.0667 +0 0.1004 +0 0.0992 +0 0.0733 +0 0.7184 +0 0.0682 +0 0.7231 +0 0.1112 +0 0.1366 +0 0.1646 +0 0.1371 +0 0.0640 +0 0.0918 +0 0.0935 +0 0.1136 +0 0.2407 +0 0.6161 +0 0.0413 +0 0.1453 +0 0.1801 +0 0.3781 +0 0.0733 +0 0.1279 +0 0.1198 +0 0.4181 +0 0.2283 +1 0.7948 +0 0.1064 +0 0.0723 +0 0.0764 +0 0.0773 +0 0.0644 +0 0.0442 +0 0.1504 +0 0.0467 +0 0.3383 +0 0.0577 +0 0.0505 +0 0.1067 +0 0.0901 +0 0.0470 +0 0.0875 +0 0.0732 +0 0.1102 +0 0.0839 +0 0.0549 +0 0.1786 +0 0.0373 +0 0.0461 +0 0.1874 +0 0.2198 +0 0.0665 +0 0.0377 +0 0.1078 +0 0.0663 +0 0.1860 +0 0.0976 +0 0.0630 +0 0.0420 +0 0.0743 +0 0.0730 +0 0.0605 +0 0.1018 +0 0.1548 +0 0.4614 +0 0.0863 +0 0.0946 +0 0.2233 +0 0.0925 +0 0.1062 +1 0.7731 +0 0.4002 +0 0.2125 +0 0.1104 +0 0.0690 +0 0.1777 +0 0.0524 +0 0.0350 +0 0.1577 +0 0.2203 +0 0.0617 +0 0.1047 +0 0.0821 +0 0.0681 +0 0.0575 +0 0.1304 +0 0.5330 +0 0.0916 +0 0.0532 +0 0.0719 +0 0.0787 +0 0.3076 +0 0.1682 +0 0.1051 +0 0.0725 +0 0.1346 +0 0.0489 +0 0.2696 +0 0.1606 +0 0.1262 +0 0.1429 +0 0.0705 +0 0.1525 +0 0.5762 +0 0.1347 +0 0.0948 +0 0.0447 +0 0.1616 +0 0.3003 +0 0.0628 +0 0.0838 +0 0.2611 +0 0.0820 +0 0.0844 +0 0.6793 +0 0.1179 +0 0.1993 +0 0.0978 +0 0.0333 +0 0.1324 +0 0.0949 +0 0.0546 +0 0.1557 +0 0.3168 +0 0.1505 +0 0.1629 +0 0.6559 +0 0.1398 +0 0.1172 +0 0.1119 +0 0.0539 +0 0.0567 +0 0.1450 +0 0.0409 +0 0.1359 +0 0.1237 +0 0.0488 +0 0.3064 +0 0.1732 +0 0.0876 +0 0.1997 +1 0.8476 +0 0.1353 +0 0.0886 +0 0.0539 +0 0.1133 +0 0.0736 +0 0.0530 +0 0.1954 +0 0.0908 +0 0.1701 +0 0.1229 +0 0.1063 +0 0.1105 +0 0.7471 +0 0.0564 +0 0.1833 +0 0.0720 +0 0.1504 +0 0.2005 +0 0.0966 +0 0.2809 +0 0.1428 +0 0.0756 +0 0.1797 +0 0.1237 +0 0.0544 +0 0.0902 +0 0.1205 +0 0.2370 +0 0.0655 +0 0.1437 +0 0.2069 +0 0.0478 +0 0.1606 +0 0.2029 +0 0.2440 +0 0.0837 +0 0.2905 +1 0.7957 +0 0.0560 +0 0.1140 +0 0.0875 +0 0.1138 +0 0.6541 +0 0.0670 +0 0.0709 +0 0.0673 +0 0.1415 +0 0.1711 +0 0.0438 +0 0.1214 +0 0.0701 +0 0.0490 +0 0.0473 +0 0.1008 +0 0.0684 +0 0.1167 +0 0.1065 +0 0.1244 +0 0.1223 +0 0.0904 +0 0.0818 +0 0.0472 +0 0.0930 +0 0.0789 +0 0.0695 +0 0.1608 +0 0.2878 +0 0.1929 +0 0.0620 +0 0.0856 +0 0.0451 +1 0.7805 +0 0.1051 +0 0.0450 +0 0.1452 +0 0.4779 +0 0.0918 +0 0.0728 +0 0.0985 +0 0.0684 +0 0.0757 +0 0.1012 +0 0.3003 +0 0.6303 +0 0.1128 +0 0.0894 +0 0.0946 +0 0.2710 +0 0.1304 +0 0.1738 +0 0.0919 +0 0.0853 +0 0.1478 +0 0.0499 +0 0.0911 +0 0.1791 +0 0.1692 +0 0.0420 +0 0.2136 +0 0.7086 +0 0.0555 +0 0.0787 +0 0.1130 +0 0.0703 +0 0.7235 +0 0.2799 +0 0.1632 +0 0.0886 +0 0.1168 +0 0.0515 +0 0.0460 +0 0.1205 +0 0.0793 +0 0.1239 +0 0.1368 +0 0.1095 +0 0.1420 +0 0.1049 +0 0.1989 +0 0.1060 +0 0.1298 +0 0.0739 +0 0.1029 +0 0.3012 +0 0.2456 +0 0.0868 +0 0.1051 +0 0.1026 +0 0.4296 +0 0.1299 +0 0.1321 +0 0.3086 +0 0.0769 +0 0.1450 +0 0.0603 +0 0.1507 +0 0.0403 +0 0.0418 +0 0.1155 +0 0.1930 +0 0.1688 +0 0.1127 +0 0.1448 +0 0.0546 +0 0.0514 +0 0.1016 +0 0.0744 +0 0.1061 +0 0.1922 +0 0.1374 +0 0.1885 +0 0.1855 +0 0.1769 +0 0.1272 +0 0.0719 +0 0.2876 +0 0.1590 +0 0.1439 +0 0.1090 +0 0.0572 +0 0.0508 +1 0.8466 +0 0.2022 +0 0.0945 +0 0.1560 +0 0.0708 +0 0.0577 +0 0.0429 +0 0.2237 +0 0.1935 +0 0.1050 +0 0.0903 +0 0.0919 +0 0.0924 +0 0.0670 +0 0.0669 +0 0.0954 +0 0.0523 +0 0.1045 +0 0.3199 +0 0.0724 +0 0.1066 +0 0.1338 +0 0.1484 +0 0.2320 +0 0.2636 +0 0.1642 +0 0.0690 +1 0.8297 +0 0.1686 +0 0.1234 +0 0.3044 +0 0.0569 +0 0.0771 +0 0.1074 +0 0.0847 +0 0.0542 +0 0.0902 +0 0.1820 +0 0.1545 +0 0.0630 +0 0.0510 +0 0.1834 +0 0.0431 +0 0.0814 +0 0.2213 +0 0.0287 +0 0.0803 +0 0.0583 +0 0.1286 +0 0.1562 +0 0.1373 +0 0.1553 +0 0.0756 +0 0.0669 +0 0.1368 +0 0.0603 +0 0.1269 +0 0.0655 +0 0.0425 +0 0.1374 +0 0.3849 +0 0.0976 +0 0.0800 +0 0.3735 +0 0.0991 +1 0.8010 +0 0.1403 +0 0.0985 +0 0.0683 +0 0.0979 +0 0.0919 +0 0.4810 +0 0.1381 +0 0.0773 +0 0.1124 +0 0.2098 +0 0.2166 +0 0.0595 +0 0.0618 +0 0.0443 +0 0.0753 +0 0.3004 +0 0.1777 +0 0.1478 +0 0.2318 +0 0.1343 +1 0.8084 +0 0.1674 +0 0.0792 +0 0.1799 +0 0.2027 +0 0.1000 +0 0.2082 +0 0.0604 +0 0.1808 +0 0.0584 +0 0.1160 +0 0.0571 +0 0.2866 +0 0.0508 +0 0.1577 +0 0.1849 +0 0.0482 +0 0.0980 +0 0.0768 +0 0.1567 +0 0.0620 +0 0.2160 +0 0.2044 +0 0.0520 +0 0.1924 +0 0.1664 +0 0.1325 +0 0.0656 +0 0.0608 +0 0.1982 +0 0.6375 +0 0.0583 +0 0.1968 +0 0.0428 +0 0.1640 +0 0.1908 +0 0.1075 +0 0.0332 +0 0.1843 +0 0.1963 +0 0.2540 +0 0.0890 +0 0.1007 +0 0.0931 +0 0.0959 +0 0.0953 +0 0.0642 +0 0.0593 +0 0.0569 +0 0.0553 +0 0.0508 +0 0.1843 +0 0.4632 +0 0.2066 +0 0.1035 +0 0.4850 +0 0.1220 +0 0.0652 +0 0.0592 +0 0.0747 +0 0.0702 +0 0.0721 +0 0.4729 +0 0.2259 +0 0.3548 +0 0.1183 +0 0.1112 +0 0.0861 +0 0.0587 +0 0.1293 +0 0.1701 +0 0.2946 +0 0.0648 +0 0.0718 +0 0.0777 +0 0.0932 +0 0.1021 +0 0.1382 +0 0.0617 +0 0.1761 +0 0.0738 +1 0.8256 +0 0.1754 +0 0.1263 +0 0.0423 +0 0.1101 +0 0.1457 +0 0.0801 +0 0.0987 +0 0.1034 +0 0.1699 +0 0.1289 +0 0.1015 +0 0.0661 +0 0.0740 +0 0.0859 +0 0.1762 +0 0.1588 +0 0.1492 +0 0.7461 +0 0.2382 +0 0.1343 +0 0.0896 +0 0.1440 +0 0.5150 +0 0.0776 +0 0.0899 +0 0.0625 +0 0.0414 +0 0.0904 +0 0.0402 +0 0.1531 +0 0.0604 +0 0.1724 +0 0.0386 +0 0.0929 +0 0.0758 +0 0.1444 +0 0.0792 +0 0.2039 +0 0.0503 +0 0.1220 +1 0.7705 +0 0.3951 +0 0.0414 +0 0.0332 +0 0.3777 +0 0.0861 +0 0.2602 +0 0.0830 +0 0.0490 +0 0.0765 +0 0.1409 +0 0.0826 +0 0.0729 +0 0.0481 +0 0.0768 +0 0.0683 +0 0.2109 +0 0.2691 +0 0.0778 +0 0.0731 +0 0.0343 +0 0.0543 +0 0.2431 +0 0.2034 +0 0.3553 +0 0.0699 +0 0.0834 +0 0.1498 +0 0.0667 +0 0.0811 +0 0.0415 +0 0.1141 +0 0.2762 +0 0.1375 +0 0.1636 +0 0.1027 +0 0.0571 +1 0.8673 +0 0.2145 +0 0.2680 +0 0.0657 +0 0.0677 +0 0.2224 +0 0.0994 +0 0.1293 +0 0.0657 +0 0.2100 +0 0.0741 +0 0.1161 +0 0.0636 +0 0.1422 +0 0.2260 +0 0.6054 +0 0.3842 +0 0.1425 +0 0.1931 +0 0.0480 +0 0.0600 +0 0.0776 +0 0.0796 +0 0.0978 +0 0.1973 +0 0.5629 +0 0.2072 +0 0.1558 +0 0.2587 +0 0.1103 +0 0.1458 +0 0.1954 +0 0.1231 +0 0.2359 +1 0.8934 +0 0.1351 +0 0.2174 +0 0.0821 +0 0.0641 +0 0.1499 +1 0.7579 +0 0.1036 +0 0.1592 +0 0.0658 +0 0.0615 +0 0.1060 +0 0.1525 +0 0.0733 +0 0.1804 +0 0.0458 +0 0.1944 +0 0.1145 +0 0.0736 +0 0.3053 +0 0.2034 +0 0.0976 +0 0.2637 +0 0.0801 +0 0.0705 +0 0.2567 +0 0.0815 +0 0.1251 +0 0.1598 +0 0.1761 +0 0.0450 +0 0.0582 +0 0.2036 +0 0.0855 +0 0.0806 +0 0.1316 +0 0.1257 +0 0.1022 +0 0.1515 +0 0.2222 +0 0.0556 +0 0.1036 +0 0.2941 +0 0.1753 +0 0.0535 +0 0.2307 +0 0.1616 +0 0.1915 +0 0.5641 +0 0.0779 +0 0.0934 +0 0.0796 +0 0.1256 +0 0.1335 +0 0.1272 +0 0.1404 +0 0.0862 +1 0.8016 +0 0.1906 +0 0.0693 +0 0.2403 +0 0.2549 +0 0.1413 +1 0.8111 +0 0.1322 +0 0.2169 +0 0.1157 +0 0.1855 +0 0.1419 +0 0.1171 +0 0.1011 +0 0.1175 +0 0.0638 +0 0.0904 +0 0.0872 +0 0.2443 +0 0.0585 +0 0.0542 +0 0.2383 +0 0.0906 +0 0.1222 +0 0.1486 +0 0.0513 +0 0.1344 +0 0.1403 +0 0.0478 +0 0.0672 +0 0.2299 +0 0.0728 +0 0.1268 +0 0.0648 +0 0.1407 +0 0.1121 +0 0.1419 +0 0.1466 +0 0.0969 +0 0.1365 +0 0.0444 +0 0.1218 +0 0.0774 +0 0.1168 +0 0.0640 +0 0.0840 +0 0.1520 +0 0.3052 +0 0.1898 +0 0.1048 +0 0.0998 +0 0.6087 +0 0.0624 +0 0.1412 +0 0.0679 +0 0.1724 +0 0.0585 +0 0.0791 +0 0.0501 +0 0.1633 +0 0.0999 +0 0.1036 +0 0.1308 +0 0.1129 +0 0.0739 +0 0.1490 +0 0.1591 +1 0.7955 +0 0.2145 +0 0.1704 +0 0.0577 +0 0.0764 +0 0.5047 +0 0.0925 +0 0.0575 +0 0.2241 +0 0.2229 +0 0.7304 +0 0.1750 +0 0.1106 +0 0.1503 +0 0.0492 +0 0.1089 +0 0.0481 +0 0.0699 +0 0.0741 +0 0.0896 +0 0.1018 +0 0.3023 +0 0.0407 +0 0.1399 +0 0.0660 +0 0.0902 +0 0.1138 +0 0.0781 +0 0.0479 +0 0.2718 +0 0.1669 +0 0.1482 +0 0.1602 +0 0.0762 +0 0.0525 +0 0.3981 +0 0.0674 +0 0.0681 +0 0.3622 +0 0.0779 +0 0.0576 +0 0.0975 +0 0.2537 +0 0.3530 +0 0.0463 +0 0.0932 +0 0.1171 +0 0.0785 +0 0.4905 +0 0.1439 +0 0.0866 +0 0.2804 +0 0.1249 +0 0.0659 +0 0.0470 +0 0.1548 +0 0.1727 +0 0.1559 +0 0.0982 +0 0.0850 +0 0.4411 +0 0.6041 +0 0.2259 +0 0.0879 +0 0.2158 +0 0.0809 +0 0.0996 +0 0.5051 +0 0.0435 +0 0.0692 +0 0.1478 +0 0.0857 +0 0.0908 +0 0.0357 +0 0.1668 +0 0.1788 +1 0.8148 +0 0.0681 +0 0.5454 +0 0.0355 +0 0.1239 +0 0.1044 +0 0.1119 +0 0.0921 +0 0.0642 +0 0.0464 +0 0.0733 +0 0.0885 +0 0.0981 +0 0.0691 +0 0.1417 +0 0.0524 +0 0.5223 +0 0.3336 +0 0.2557 +0 0.0546 +0 0.0712 +0 0.1808 +0 0.2611 +0 0.5794 +0 0.1346 +0 0.1619 +0 0.0527 +0 0.0720 +0 0.0398 +0 0.1852 +0 0.0523 +0 0.0584 +0 0.1149 +0 0.0870 +0 0.1365 +0 0.1600 +0 0.0948 +0 0.1689 +0 0.0743 +0 0.0688 +0 0.1748 +0 0.0565 +0 0.1015 +0 0.2196 +0 0.0707 +0 0.1520 +0 0.0740 +0 0.5734 +0 0.1224 +0 0.0906 +0 0.0712 +0 0.1839 +0 0.0817 +0 0.1308 +0 0.0743 +0 0.1128 +0 0.1096 +0 0.1034 +0 0.0738 +0 0.0763 +0 0.0580 +0 0.0933 +0 0.1479 +0 0.1068 +0 0.0283 +0 0.0444 +0 0.2429 +0 0.2131 +0 0.2133 +0 0.0508 +0 0.0581 +0 0.0747 +0 0.0930 +0 0.0778 +0 0.1095 +0 0.0602 +0 0.1141 +0 0.0622 +0 0.1277 +0 0.4138 +0 0.0864 +0 0.1623 +0 0.1207 +0 0.0690 +0 0.0365 +0 0.0510 +0 0.0784 +0 0.1821 +0 0.0821 +0 0.1167 +0 0.2368 +0 0.1177 +0 0.3367 +0 0.1299 +0 0.0508 +0 0.0937 +0 0.1132 +0 0.0582 +0 0.1756 +0 0.1047 +0 0.0823 +0 0.4185 +0 0.1983 +0 0.0655 +0 0.0881 +0 0.2362 +0 0.0786 +0 0.3939 +0 0.1255 +0 0.1502 +0 0.1745 +0 0.0940 +1 0.7753 +0 0.2070 +0 0.0615 +0 0.4879 +0 0.2598 +0 0.0446 +0 0.1680 +0 0.0846 +0 0.2965 +0 0.0595 +0 0.0972 +0 0.1341 +0 0.1236 +0 0.1157 +0 0.1001 +0 0.1394 +0 0.0645 +0 0.1648 +0 0.0454 +0 0.0927 +0 0.1013 +0 0.0655 +0 0.1384 +0 0.0778 +0 0.0904 +0 0.1762 +0 0.0484 +0 0.0811 +0 0.5855 +0 0.0574 +0 0.0933 +0 0.0875 +0 0.1026 +0 0.1786 +0 0.0640 +0 0.1737 +0 0.0806 +0 0.0571 +0 0.1090 +0 0.1142 +0 0.0840 +0 0.0671 +0 0.1305 +0 0.1041 +0 0.0829 +0 0.0427 +0 0.0682 +0 0.2121 +0 0.1646 +0 0.0558 +0 0.2341 +0 0.0739 +0 0.1428 +0 0.1207 +0 0.1401 +0 0.0622 +0 0.1272 +0 0.1707 +0 0.1205 +0 0.1195 +0 0.0470 +0 0.3647 +0 0.0603 +0 0.2289 +0 0.0604 +0 0.3051 +0 0.1173 +0 0.1246 +0 0.1976 +0 0.0944 +0 0.1694 +0 0.1251 +0 0.1137 +0 0.0558 +0 0.0441 +0 0.4588 +0 0.2708 +0 0.3173 +0 0.1043 +0 0.1226 +0 0.0592 +0 0.0281 +0 0.1098 +0 0.1159 +0 0.1034 +0 0.0560 +0 0.0791 +0 0.0679 +0 0.0575 +0 0.3693 +0 0.0999 +0 0.0935 +0 0.1362 +0 0.3933 +0 0.0984 +0 0.0632 +0 0.0927 +0 0.0537 +0 0.1278 +0 0.3066 +0 0.1085 +0 0.0535 +0 0.2467 +0 0.0976 +0 0.0425 +0 0.1000 +0 0.4882 +0 0.0582 +0 0.2050 +0 0.1276 +0 0.0605 +0 0.0962 +0 0.0926 +0 0.0445 +0 0.0619 +0 0.1731 +0 0.1913 +0 0.0744 +0 0.2688 +0 0.0820 +0 0.1740 +0 0.1057 +0 0.0503 +0 0.2394 +0 0.5907 +0 0.0505 +0 0.3361 +0 0.1766 +0 0.1623 +0 0.0815 +0 0.1185 +0 0.2451 +0 0.1667 +0 0.1070 +0 0.1305 +0 0.2820 +0 0.0682 +0 0.1193 +0 0.3334 +0 0.0787 +0 0.0969 +0 0.4936 +0 0.3043 +0 0.0538 +0 0.1274 +0 0.1185 +0 0.1635 +0 0.1129 +0 0.0954 +0 0.0943 +0 0.0527 +0 0.0745 +0 0.1094 +0 0.3260 +0 0.2030 +0 0.2306 +0 0.0694 +0 0.0652 +0 0.0894 +0 0.1021 +0 0.3514 +0 0.1941 +0 0.1074 +0 0.1455 +0 0.1191 +0 0.1222 +0 0.0447 +0 0.0566 +0 0.0784 +0 0.0500 +0 0.2374 +0 0.1703 +0 0.0438 +0 0.0615 +0 0.1116 +0 0.1780 +0 0.1827 +0 0.0645 +0 0.0950 +0 0.0985 +0 0.0692 +0 0.3516 +0 0.1146 +0 0.2555 +0 0.1589 +0 0.2233 +0 0.5811 +0 0.6813 +0 0.1982 +0 0.1753 +0 0.1238 +0 0.0737 +0 0.1802 +0 0.2072 +0 0.5952 +0 0.3616 +0 0.0349 +0 0.0996 +0 0.0709 +0 0.1285 +1 0.7777 +0 0.3038 +0 0.3510 +0 0.1593 +0 0.0735 +0 0.1062 +0 0.1818 +0 0.2223 +0 0.1835 +0 0.2654 +0 0.1449 +0 0.0997 +0 0.0595 +0 0.3438 +0 0.6503 +0 0.0934 +0 0.1487 +0 0.0608 +0 0.1512 +0 0.2106 +0 0.0893 +0 0.0702 +0 0.0525 +0 0.0928 +0 0.2071 +0 0.1418 +0 0.7042 +0 0.0669 +0 0.1793 +0 0.0729 +0 0.1663 +0 0.1009 +0 0.0901 +0 0.1018 +0 0.1522 +0 0.1291 +0 0.2741 +0 0.1290 +0 0.1203 +0 0.2081 +0 0.1405 +0 0.0938 +0 0.3857 +0 0.1145 +0 0.3010 +0 0.0514 +0 0.1713 +0 0.0660 +0 0.0768 +0 0.0545 +0 0.3796 +0 0.1305 +0 0.1701 +0 0.2192 +0 0.1250 +0 0.0692 +0 0.0588 +0 0.0659 +0 0.3020 +0 0.1118 +0 0.0522 +0 0.0846 +0 0.1062 +0 0.1454 +0 0.1063 +0 0.0994 +0 0.0539 +0 0.1764 +0 0.0754 +0 0.1359 +0 0.1195 +0 0.2441 +0 0.0621 +0 0.0667 +0 0.2612 +0 0.0828 +0 0.0658 +0 0.1808 +1 0.7859 +0 0.0657 +0 0.1536 +0 0.0878 +0 0.0926 +0 0.1261 +0 0.0990 +0 0.0898 +0 0.0788 +0 0.0614 +0 0.1055 +0 0.0798 +0 0.4158 +0 0.1354 +0 0.0843 +0 0.0738 +0 0.0842 +0 0.0623 +0 0.0558 +0 0.1199 +1 0.8132 +0 0.0478 +0 0.0717 +0 0.0418 +0 0.2341 +0 0.1513 +0 0.1067 +0 0.1201 +0 0.1150 +0 0.0766 +1 0.8742 +0 0.0989 +0 0.1008 +0 0.1088 +0 0.0365 +0 0.0961 +0 0.4229 +0 0.0999 +0 0.2510 +0 0.0823 +0 0.1240 +0 0.1556 +0 0.1284 +0 0.0521 +0 0.1383 +0 0.0995 +0 0.1967 +0 0.0787 +0 0.1525 +0 0.1521 +0 0.1631 +0 0.0454 +1 0.8664 +0 0.5003 +0 0.1288 +0 0.0487 +0 0.0745 +0 0.0596 +1 0.7903 +0 0.2316 +0 0.0797 +0 0.0399 +0 0.2111 +0 0.1577 +0 0.0812 +0 0.2409 +0 0.0699 +0 0.1243 +0 0.1833 +0 0.0813 +0 0.0514 +0 0.0772 +0 0.1227 +0 0.1075 +0 0.0724 +0 0.1197 +0 0.1701 +0 0.1271 +0 0.0944 +0 0.4147 +0 0.1899 +0 0.4254 +0 0.0814 +0 0.0482 +0 0.0704 +0 0.0383 +0 0.1002 +0 0.2226 +0 0.6346 +0 0.1189 +0 0.0533 +0 0.1866 +0 0.1101 +0 0.1079 +0 0.1770 +0 0.1129 +0 0.1082 +0 0.0800 +0 0.1108 +0 0.0808 +0 0.1263 +0 0.0753 +0 0.1181 +0 0.0675 +0 0.1197 +0 0.0750 +0 0.5923 +0 0.0977 +0 0.0686 +0 0.1002 +0 0.0692 +0 0.0712 +0 0.2036 +0 0.1140 +0 0.0954 +0 0.0629 +0 0.1054 +0 0.1789 +0 0.4124 +0 0.1769 +0 0.4424 +0 0.1189 +0 0.1158 +0 0.1497 +0 0.0967 +0 0.1892 +0 0.0799 +0 0.0514 +0 0.1930 +0 0.3533 +0 0.3524 +0 0.0950 +0 0.1377 +0 0.0503 +0 0.0594 +0 0.6168 +0 0.2590 +0 0.1521 +0 0.0376 +0 0.0872 +0 0.0983 +0 0.1456 +0 0.1095 +0 0.0397 +0 0.0720 +0 0.0710 +0 0.1454 +0 0.2172 +0 0.0792 +0 0.2167 +0 0.1171 +0 0.0802 +0 0.1045 +0 0.2010 +0 0.1037 +0 0.1057 +0 0.1333 +0 0.1023 +0 0.1828 +0 0.1206 +0 0.2313 +0 0.0907 +0 0.1174 +0 0.2378 +0 0.2621 +0 0.0714 +0 0.0648 +0 0.0371 +0 0.1903 +0 0.0927 +0 0.0742 +0 0.0621 +0 0.2322 +0 0.1344 +0 0.2530 +0 0.0810 +0 0.1547 +1 0.7757 +0 0.2443 +0 0.1872 +0 0.0795 +0 0.1254 +0 0.0885 +0 0.1940 +0 0.6500 +0 0.1530 +0 0.1180 +0 0.0967 +0 0.1395 +0 0.0736 +0 0.1418 +0 0.1469 +0 0.2626 +0 0.1133 +0 0.0455 +0 0.1490 +0 0.1481 +0 0.1807 +0 0.1692 +0 0.1137 +0 0.1034 +0 0.0959 +0 0.6761 +0 0.1185 +0 0.1943 +0 0.0579 +0 0.1587 +0 0.0898 +0 0.1850 +0 0.0849 +0 0.1535 +0 0.0732 +0 0.0426 +0 0.0634 +0 0.0413 +0 0.0736 +0 0.5862 +0 0.0836 +0 0.0580 +0 0.0867 +0 0.0711 +0 0.1807 +0 0.0531 +0 0.4455 +0 0.1813 +0 0.0843 +0 0.0827 +0 0.0612 +0 0.1027 +0 0.1176 +0 0.1833 +0 0.0669 +0 0.1798 +0 0.0544 +0 0.2045 +0 0.2909 +0 0.0604 +0 0.0594 +0 0.1212 +0 0.2029 +0 0.2303 +0 0.0960 +0 0.1425 +0 0.1098 +0 0.1239 +0 0.2483 +0 0.1707 +0 0.1432 +0 0.2287 +0 0.2518 +0 0.0985 +0 0.0580 +0 0.4373 +0 0.1101 +0 0.1202 +0 0.0521 +0 0.1374 +0 0.0793 +0 0.0906 +0 0.1025 +0 0.0348 +0 0.0614 +1 0.7528 +0 0.1899 +0 0.1959 +0 0.0453 +0 0.0537 +0 0.1576 +1 0.7856 +0 0.0800 +0 0.1940 +0 0.0486 +0 0.1833 +0 0.1019 +0 0.2325 +0 0.0822 +0 0.2656 +0 0.0599 +0 0.2262 +0 0.1410 +0 0.1500 +0 0.2158 +0 0.0440 +0 0.0803 +0 0.0837 +0 0.0757 +0 0.1222 +0 0.2785 +0 0.1301 +0 0.0546 +0 0.0973 +1 0.7958 +0 0.3444 +0 0.0597 +0 0.0694 +0 0.2643 +0 0.1239 +0 0.1134 +0 0.6795 +0 0.2028 +0 0.2810 +0 0.0467 +0 0.0433 +0 0.3174 +0 0.0750 +0 0.2059 +0 0.1636 +0 0.1533 +0 0.0431 +0 0.0889 +0 0.2066 +0 0.0999 +0 0.0669 +0 0.0675 +0 0.0598 +0 0.0917 +0 0.0752 +0 0.1647 +0 0.1604 +0 0.0811 +0 0.1180 +0 0.1204 +0 0.0806 +0 0.1074 +0 0.0929 +0 0.1040 +0 0.0966 +0 0.1607 +0 0.1068 +0 0.0839 +0 0.0906 +0 0.1149 +0 0.2489 +0 0.0713 +0 0.0864 +0 0.1775 +0 0.1267 +0 0.0580 +0 0.0468 +0 0.0688 +0 0.1483 +0 0.0666 +1 0.4023 +0 0.0513 +0 0.0588 +0 0.0437 +0 0.0410 +0 0.0969 +0 0.0726 +0 0.2384 +0 0.0746 +0 0.0782 +0 0.0783 +0 0.0409 +0 0.2462 +0 0.0441 +0 0.0893 +0 0.1007 +0 0.1711 +0 0.0875 +0 0.1012 +0 0.1197 +0 0.2013 +0 0.1087 +0 0.0453 +0 0.1034 +0 0.1015 +0 0.0598 +0 0.1470 +0 0.1765 +0 0.0804 +0 0.1151 +0 0.0852 +0 0.1423 +0 0.0414 +0 0.0574 +0 0.0684 +0 0.0959 +0 0.2040 +0 0.1373 +0 0.1654 +0 0.1559 +0 0.1238 +0 0.1973 +0 0.0923 +0 0.0785 +0 0.1609 +0 0.0668 +0 0.0442 +0 0.0927 +1 0.8046 +0 0.0854 +0 0.1708 +0 0.0524 +0 0.1628 +0 0.0590 +0 0.0777 +0 0.0712 +0 0.0527 +0 0.2876 +0 0.2341 +0 0.0935 +0 0.1402 +0 0.6946 +0 0.0726 +0 0.0800 +1 0.8225 +0 0.0612 +0 0.1264 +0 0.1391 +1 0.8672 +0 0.0486 +0 0.0524 +0 0.1155 +0 0.1154 +0 0.1329 +0 0.1355 +0 0.1559 +0 0.0949 +0 0.0469 +0 0.1422 +0 0.0709 +0 0.0455 +0 0.0577 +0 0.0573 +0 0.0426 +0 0.0442 +0 0.1747 +0 0.1148 +0 0.4983 +0 0.0902 +0 0.1376 +0 0.2231 +0 0.0850 +0 0.0633 +0 0.0672 +0 0.2373 +0 0.0369 +0 0.1295 +0 0.0794 +0 0.0639 +0 0.1609 +0 0.3762 +0 0.1207 +0 0.3669 +0 0.0292 +0 0.1041 +0 0.0723 +0 0.0542 +0 0.1348 +0 0.1320 +0 0.0642 +0 0.1687 +0 0.1412 +0 0.0945 +0 0.1060 +0 0.2219 +0 0.0544 +0 0.1048 +0 0.0928 +0 0.0546 +0 0.1179 +0 0.1814 +1 0.7526 +0 0.1098 +0 0.0963 +0 0.3156 +0 0.0518 +0 0.1396 +0 0.4105 +0 0.0664 +0 0.6064 +0 0.0406 +0 0.1579 +0 0.1906 +0 0.1946 +0 0.1076 +0 0.1355 +0 0.1380 +0 0.1003 +0 0.2090 +0 0.1495 +0 0.0475 +0 0.4417 +0 0.1711 +0 0.1800 +0 0.1313 +0 0.1055 +0 0.1110 +0 0.0670 +0 0.1988 +0 0.0499 +0 0.7192 +0 0.1520 +0 0.0546 +0 0.6570 +0 0.0785 +0 0.0914 +0 0.3258 +0 0.4541 +0 0.0407 +0 0.0382 +0 0.1196 +0 0.1655 +0 0.0704 +0 0.0654 +0 0.2551 +0 0.0859 +0 0.0597 +0 0.1074 +0 0.0705 +0 0.1197 +0 0.0870 +0 0.2450 +0 0.0354 +1 0.7824 +0 0.4424 +0 0.1213 +0 0.0814 +0 0.0549 +0 0.0454 +0 0.1403 +0 0.0543 +0 0.0546 +0 0.2847 +0 0.1218 +0 0.0620 +0 0.1150 +0 0.0891 +0 0.1602 +0 0.1868 +0 0.1806 +0 0.1504 +0 0.0507 +0 0.1102 +0 0.1097 +0 0.0913 +0 0.0338 +0 0.0728 +0 0.1023 +0 0.0851 +0 0.0943 +0 0.2822 +0 0.1431 +0 0.1167 +0 0.2006 +0 0.2212 +0 0.1933 +0 0.1055 +0 0.4515 +0 0.0981 +0 0.1422 +0 0.1133 +0 0.1375 +0 0.0927 +1 0.8165 +0 0.0879 +0 0.0371 +0 0.0764 +0 0.0851 +0 0.1617 +0 0.0772 +0 0.2900 +0 0.0723 +0 0.0935 +0 0.1225 +0 0.1963 +0 0.0558 +0 0.4662 +0 0.0975 +0 0.2622 +0 0.1651 +0 0.1678 +0 0.0915 +0 0.0784 +0 0.0645 +0 0.0341 +0 0.0920 +0 0.6753 +0 0.0975 +1 0.7936 +0 0.1447 +0 0.1439 +0 0.0453 +0 0.2653 +0 0.0523 +0 0.0744 +0 0.0769 +0 0.7127 +0 0.1310 +0 0.1772 +0 0.0667 +0 0.0691 +0 0.3801 +0 0.1255 +0 0.1144 +0 0.0920 +0 0.0448 +0 0.0728 +0 0.0485 +0 0.0641 +0 0.0879 +0 0.1119 +0 0.1820 +0 0.1469 +0 0.1453 +0 0.0696 +0 0.1064 +0 0.1012 +0 0.0828 +0 0.0887 +0 0.2555 +0 0.1206 +0 0.0739 +0 0.0466 +0 0.1117 +0 0.0538 +0 0.0966 +0 0.0958 +0 0.1451 +0 0.0997 +1 0.8521 +0 0.1764 +0 0.0730 +0 0.1364 +0 0.2750 +0 0.0575 +0 0.4124 +0 0.0819 +0 0.0572 +0 0.2137 +0 0.0540 +0 0.1187 +0 0.1635 +0 0.0626 +0 0.0994 +0 0.1480 +0 0.1208 +0 0.0870 +0 0.0848 +0 0.1173 +0 0.2257 +0 0.1338 +0 0.0895 +0 0.0624 +0 0.0602 +0 0.0777 +0 0.0797 +0 0.1050 +1 0.5341 +0 0.1646 +0 0.0819 +0 0.1200 +0 0.0982 +0 0.0461 +0 0.1644 +0 0.1035 +0 0.1338 +0 0.6440 +0 0.0648 +0 0.0481 +0 0.2948 +0 0.0555 +0 0.1063 +0 0.1085 +0 0.0527 +0 0.1226 +0 0.2820 +0 0.2952 +0 0.1357 +0 0.1030 +0 0.1740 +0 0.0562 +0 0.1018 +0 0.2853 +0 0.1254 +0 0.0572 +0 0.1178 +0 0.2202 +0 0.1904 +0 0.1538 +0 0.0906 +0 0.0797 +0 0.0386 +0 0.0648 +0 0.1505 +0 0.0997 +0 0.1020 +0 0.0832 +0 0.2615 +0 0.2573 +0 0.1060 +0 0.1074 +0 0.5526 +0 0.0683 +0 0.0585 +0 0.1336 +0 0.0548 +0 0.0687 +0 0.0496 +0 0.0800 +0 0.0841 +0 0.0700 +0 0.0793 +0 0.1747 +0 0.2049 +0 0.1408 +0 0.0949 +0 0.0972 +0 0.1706 +0 0.1729 +0 0.1302 +0 0.1562 +0 0.0568 +0 0.1079 +0 0.0810 +0 0.0652 +0 0.1928 +0 0.0926 +0 0.0974 +0 0.0328 +0 0.0501 +0 0.1035 +0 0.1544 +0 0.1123 +0 0.1131 +0 0.1835 +0 0.1603 +0 0.1199 +0 0.0533 +0 0.0698 +0 0.0986 +0 0.1286 +0 0.0797 +0 0.1651 +0 0.0564 +0 0.0436 +0 0.0879 +0 0.0734 +0 0.1201 +0 0.1373 +0 0.0989 +0 0.0526 +0 0.2216 +0 0.0576 +0 0.1965 +0 0.2263 +0 0.0597 +0 0.0698 +0 0.0517 +0 0.1024 +0 0.0815 +0 0.0700 +0 0.2035 +0 0.1411 +0 0.1041 +0 0.1155 +0 0.2625 +0 0.2629 +0 0.0454 +0 0.0737 +0 0.0620 +0 0.1330 +0 0.1672 +0 0.0785 +0 0.0423 +0 0.1449 +0 0.0873 +0 0.3005 +0 0.1641 +0 0.1171 +0 0.1904 +0 0.0364 +0 0.2390 +0 0.1957 +0 0.1463 +0 0.0945 +0 0.1559 +0 0.0583 +0 0.1901 +0 0.1601 +0 0.4754 +0 0.1923 +0 0.0866 +0 0.1452 +0 0.2196 +0 0.1804 +0 0.0636 +0 0.2164 +0 0.4101 +0 0.6984 +0 0.0671 +0 0.0537 +0 0.2744 +0 0.6127 +0 0.0720 +0 0.1601 +0 0.0660 +0 0.1686 +0 0.1090 +0 0.0676 +0 0.0621 +0 0.1842 +0 0.0491 +0 0.1145 +0 0.2321 +0 0.0634 +0 0.1262 +0 0.0787 +0 0.1961 +0 0.0716 +0 0.1914 +0 0.0513 +0 0.0823 +0 0.0559 +0 0.0596 +0 0.2776 +0 0.0881 +0 0.2130 +0 0.7219 +0 0.1945 +0 0.0706 +0 0.2200 +0 0.0751 +0 0.2509 +0 0.1092 +0 0.0665 +0 0.1377 +0 0.1058 +0 0.1332 +0 0.1233 +0 0.1065 +0 0.1692 +0 0.0688 +0 0.0759 +0 0.0639 +0 0.0415 +0 0.0992 +0 0.0908 +0 0.0721 +0 0.0460 +0 0.5617 +0 0.5941 +0 0.0568 +0 0.0515 +0 0.3220 +0 0.1691 +0 0.0933 +0 0.1531 +0 0.1614 +0 0.2418 +0 0.0490 +0 0.4700 +0 0.0697 +0 0.1627 +0 0.1307 +0 0.0551 +0 0.0757 +0 0.1137 +0 0.1853 +0 0.3271 +0 0.0571 +0 0.0698 +0 0.3278 +0 0.2763 +0 0.1339 +0 0.1623 +0 0.1528 +0 0.1353 +0 0.7310 +0 0.0899 +0 0.0618 +0 0.0651 +0 0.1317 +1 0.7842 +0 0.3003 +0 0.1430 +0 0.0911 +0 0.0830 +0 0.1394 +0 0.0585 +0 0.1056 +0 0.2528 +0 0.0340 +0 0.0435 +0 0.0351 +0 0.0480 +0 0.0937 +0 0.0970 +0 0.0737 +0 0.0900 +0 0.1200 +0 0.1800 +0 0.1679 +0 0.0901 +0 0.1438 +0 0.0490 +0 0.1552 +0 0.1247 +0 0.0390 +0 0.0958 +0 0.1346 +0 0.2587 +0 0.1323 +0 0.6969 +0 0.0319 +0 0.1005 +0 0.1049 +0 0.1074 +0 0.0630 +0 0.1147 +0 0.0824 +0 0.1336 +0 0.0623 +0 0.0971 +0 0.1264 +0 0.1354 +0 0.1841 +0 0.0904 +0 0.2376 +0 0.4395 +0 0.0957 +0 0.1197 +0 0.5468 +0 0.0703 +0 0.0832 +0 0.0692 +0 0.1497 +0 0.0843 +0 0.1556 +0 0.1086 +0 0.0907 +0 0.1287 +0 0.0982 +0 0.0990 +0 0.1101 +0 0.1036 +0 0.0566 +0 0.0860 +0 0.2826 +0 0.1688 +0 0.0309 +0 0.0886 +0 0.0783 +0 0.1705 +0 0.1731 +0 0.1327 +0 0.0366 +0 0.0424 +0 0.1284 +0 0.0724 +0 0.0502 +0 0.1109 +0 0.0758 +0 0.0884 +0 0.1335 +0 0.1289 +0 0.1846 +0 0.2300 +0 0.0781 +0 0.1536 +0 0.0687 +0 0.1585 +0 0.1468 +0 0.0923 +0 0.0987 +0 0.1731 +0 0.1426 +0 0.0905 +0 0.0998 +0 0.1523 +0 0.0618 +0 0.2796 +0 0.1605 +0 0.0614 +0 0.2930 +0 0.0730 +0 0.3083 +0 0.0689 +0 0.0588 +0 0.2328 +0 0.0920 +0 0.0954 +0 0.0658 +0 0.0569 +0 0.1010 +0 0.1224 +0 0.1369 +0 0.0962 +0 0.1568 +0 0.1934 +0 0.2036 +0 0.1138 +0 0.1215 +0 0.0963 +0 0.0553 +0 0.1085 +0 0.1714 +0 0.0973 +0 0.0956 +0 0.1715 +0 0.0484 +0 0.1594 +0 0.0657 +0 0.0599 +0 0.3504 +0 0.4459 +0 0.0855 +0 0.2440 +0 0.0879 +0 0.1901 +0 0.1430 +0 0.1299 +0 0.0759 +0 0.1827 +0 0.0878 +0 0.1364 +0 0.2911 +0 0.0866 +0 0.2172 +0 0.0492 +0 0.2401 +0 0.0665 +0 0.0348 +0 0.3128 +0 0.1247 +0 0.0829 +0 0.0904 +0 0.1451 +0 0.3949 +0 0.3536 +0 0.0452 +0 0.2707 +0 0.0512 +0 0.1839 +0 0.0594 +0 0.0520 +0 0.7248 +0 0.0710 +1 0.8022 +0 0.1212 +0 0.0480 +0 0.0444 +0 0.1508 +0 0.0477 +0 0.0734 +0 0.1514 +0 0.1460 +0 0.1065 +0 0.1301 +0 0.0691 +0 0.1992 +0 0.4559 +0 0.0695 +0 0.1563 +0 0.0853 +0 0.0578 +0 0.0802 +0 0.1525 +0 0.0708 +0 0.1572 +0 0.1316 +0 0.1852 +0 0.0859 +0 0.2197 +0 0.1187 +0 0.1307 +0 0.0425 +0 0.4013 +0 0.0787 +0 0.1122 +0 0.0529 +0 0.1099 +0 0.0639 +0 0.1397 +0 0.1020 +0 0.1109 +0 0.1686 +0 0.0865 +0 0.1288 +0 0.2423 +0 0.2993 +0 0.0485 +0 0.2048 +0 0.1332 +0 0.1154 +0 0.3997 +0 0.2599 +0 0.0427 +0 0.4448 +0 0.0988 +0 0.2443 +0 0.1120 +0 0.0792 +0 0.1017 +0 0.0841 +0 0.0786 +0 0.0669 +0 0.0801 +0 0.0432 +0 0.0415 +0 0.0841 +0 0.0435 +0 0.1347 +0 0.0728 +0 0.0975 +0 0.1589 +0 0.0509 +0 0.2772 +0 0.0540 +0 0.0456 +0 0.0988 +0 0.1477 +0 0.1082 +0 0.0965 +0 0.0748 +0 0.0819 +0 0.0987 +0 0.0989 +0 0.0580 +0 0.1652 +0 0.2320 +0 0.1164 +0 0.0581 +0 0.0934 +0 0.3165 +0 0.0928 +0 0.0541 +0 0.1598 +1 0.7762 +0 0.1423 +0 0.0649 +0 0.1080 +0 0.1283 +0 0.4027 +0 0.1005 +0 0.0555 +0 0.0979 +0 0.2721 +0 0.0887 +0 0.1111 +0 0.4095 +0 0.1144 +0 0.0641 +0 0.3145 +0 0.1090 +0 0.1429 +0 0.0826 +0 0.2019 +0 0.0844 +0 0.1972 +1 0.7548 +0 0.1087 +0 0.1078 +0 0.0415 +0 0.1546 +0 0.0518 +0 0.1376 +0 0.0565 +0 0.1421 +0 0.1290 +0 0.0817 +0 0.0591 +0 0.0839 +0 0.1187 +0 0.0615 +0 0.0919 +0 0.0806 +0 0.0707 +0 0.2529 +0 0.0735 +0 0.0572 +0 0.0420 +0 0.0601 +0 0.0948 +0 0.2572 +0 0.0614 +1 0.7650 +1 0.8791 +0 0.0399 +0 0.0931 +0 0.0673 +0 0.1424 +0 0.2848 +0 0.1931 +0 0.1366 +0 0.1547 +0 0.0732 +0 0.1274 +0 0.0446 +0 0.1168 +0 0.1737 +0 0.1498 +0 0.1720 +0 0.0986 +0 0.1309 +0 0.1118 +0 0.1270 +0 0.0464 +0 0.0918 +0 0.1226 +0 0.0909 +0 0.1002 +0 0.0318 +0 0.0494 +0 0.1196 +0 0.1329 +0 0.1395 +0 0.0972 +0 0.0697 +0 0.0522 +0 0.1764 +0 0.1282 +0 0.1767 +0 0.2175 +0 0.0720 +0 0.0929 +0 0.0681 +0 0.1835 +0 0.0904 +0 0.1200 +0 0.3006 +1 0.8333 +0 0.1055 +0 0.1029 +0 0.1184 +0 0.0894 +0 0.2170 +0 0.3866 +0 0.3353 +0 0.2197 +0 0.0862 +0 0.0941 +0 0.1202 +0 0.0687 +0 0.0849 +0 0.0419 +0 0.0922 +0 0.0572 +0 0.4096 +0 0.1235 +0 0.0577 +0 0.0584 +0 0.0388 +0 0.1279 +0 0.1800 +1 0.7768 +0 0.0648 +0 0.1374 +0 0.0492 +0 0.1238 +0 0.0932 +0 0.1633 +0 0.0659 +0 0.1400 +0 0.1395 +0 0.0734 +0 0.2173 +0 0.7415 +0 0.1229 +0 0.7461 +0 0.0815 +0 0.1340 +0 0.0471 +0 0.1136 +0 0.0983 +0 0.0646 +0 0.1787 +0 0.3129 +0 0.0726 +0 0.0840 +0 0.1122 +0 0.1193 +0 0.0448 +0 0.0596 +0 0.2149 +0 0.1214 +0 0.1422 +0 0.0689 +0 0.0692 +0 0.1491 +0 0.0972 +0 0.1458 +0 0.3293 +0 0.7025 +0 0.0913 +0 0.1636 +0 0.3909 +0 0.1021 +0 0.1234 +0 0.1319 +0 0.4584 +0 0.1220 +0 0.1131 +0 0.1267 +0 0.1356 +0 0.0953 +0 0.1357 +0 0.1063 +0 0.0858 +1 0.8306 +0 0.0835 +0 0.3097 +0 0.0886 +0 0.0516 +0 0.1064 +0 0.0562 +0 0.1383 +0 0.1076 +0 0.0597 +0 0.0680 +0 0.2387 +0 0.1406 +0 0.0414 +0 0.0402 +0 0.0628 +0 0.0409 +0 0.1122 +0 0.1060 +0 0.1262 +0 0.0730 +0 0.0492 +0 0.1025 +0 0.0578 +0 0.1069 +0 0.1012 +0 0.1292 +0 0.1807 +0 0.1178 +0 0.4072 +0 0.5193 +0 0.0887 +0 0.1582 +0 0.0595 +0 0.2135 +0 0.2326 +0 0.0667 +0 0.3058 +0 0.0561 +0 0.1320 +0 0.0974 +0 0.0472 +0 0.0611 +0 0.1007 +0 0.1173 +0 0.2114 +0 0.0482 +0 0.2292 +0 0.5249 +0 0.0925 +0 0.0809 +0 0.1040 +0 0.1620 +0 0.0850 +0 0.0457 +0 0.1965 +0 0.0875 +0 0.5146 +0 0.3154 +0 0.0987 +0 0.0564 +0 0.0696 +0 0.1091 +0 0.2002 +0 0.1653 +0 0.1679 +0 0.1910 +0 0.1124 +0 0.1366 +0 0.0688 +0 0.2749 +0 0.0604 +0 0.2128 +0 0.0981 +0 0.1059 +0 0.0514 +0 0.0713 +0 0.0962 +0 0.2803 +0 0.4391 +0 0.1063 +0 0.1117 +0 0.1126 +0 0.0529 +0 0.0549 +0 0.1227 +0 0.0987 +0 0.0393 +0 0.2298 +0 0.1676 +0 0.1647 +0 0.0593 +0 0.0824 +0 0.0448 +0 0.0765 +0 0.1711 +0 0.0703 +0 0.0606 +0 0.0882 +0 0.0878 +0 0.0447 +0 0.2788 +0 0.2068 +0 0.1281 +0 0.1082 +0 0.1813 +0 0.3501 +0 0.0783 +0 0.0358 +0 0.0654 +0 0.0686 +0 0.1030 +0 0.0673 +0 0.0801 +0 0.1287 +0 0.1885 +0 0.0560 +0 0.1061 +0 0.0803 +0 0.2225 +0 0.1710 +0 0.0316 +0 0.1904 +0 0.0972 +0 0.2076 +0 0.1203 +0 0.0675 +0 0.1282 +0 0.1096 +0 0.1659 +0 0.4835 +0 0.1023 +0 0.0438 +0 0.0734 +0 0.0532 +0 0.0875 +0 0.0593 +0 0.0409 +0 0.0777 +0 0.0609 +0 0.1291 +0 0.1294 +0 0.2044 +0 0.0700 +0 0.2086 +0 0.1479 +0 0.1429 +0 0.0640 +0 0.1917 +0 0.0543 +0 0.0970 +0 0.6603 +0 0.0707 +0 0.1579 +0 0.1075 +0 0.0878 +0 0.2228 +0 0.2865 +0 0.0917 +0 0.2023 +0 0.0943 +0 0.0543 +0 0.5035 +0 0.1699 +0 0.2653 +0 0.0876 +0 0.0629 +0 0.1596 +0 0.1252 +0 0.1668 +0 0.1526 +0 0.2253 +0 0.0579 +0 0.0615 +0 0.0540 +0 0.0588 +0 0.0830 +0 0.0730 +0 0.1012 +0 0.3992 +0 0.0644 +0 0.0631 +0 0.0649 +0 0.1513 +0 0.1733 +0 0.1196 +0 0.0590 +0 0.1631 +0 0.1420 +0 0.0889 +0 0.1081 +0 0.0444 +0 0.1185 +0 0.1479 +0 0.1150 +0 0.0438 +0 0.0504 +0 0.1049 +0 0.0784 +0 0.1489 +0 0.1745 +0 0.1010 +0 0.0675 +0 0.1039 +0 0.0923 +0 0.1878 +1 0.7886 +0 0.0938 +0 0.1524 +0 0.0800 +0 0.2060 +0 0.0889 +0 0.6129 +0 0.0783 +0 0.2432 +0 0.1995 +0 0.2129 +0 0.0946 +0 0.0830 +0 0.2543 +0 0.0546 +0 0.0620 +0 0.1340 +0 0.1299 +0 0.0783 +0 0.0817 +0 0.0911 +0 0.1435 +0 0.0688 +1 0.8547 +0 0.0646 +0 0.0369 +0 0.0788 +0 0.0406 +0 0.1171 +0 0.7173 +0 0.4287 +0 0.1440 +0 0.1711 +0 0.1024 +0 0.0830 +0 0.0906 +0 0.1136 +0 0.3034 +0 0.0996 +0 0.0408 +0 0.0865 +0 0.1221 +0 0.6834 +0 0.7172 +0 0.0434 +0 0.1465 +0 0.2425 +0 0.0607 +0 0.2048 +0 0.2948 +0 0.0988 +0 0.0911 +0 0.3202 +0 0.0660 +0 0.4709 +0 0.0672 +0 0.0827 +0 0.0712 +0 0.0499 +0 0.4083 +0 0.3142 +0 0.1202 +0 0.0737 +0 0.0952 +0 0.0364 +0 0.0928 +0 0.0976 +0 0.0863 +0 0.0903 +0 0.0724 +0 0.0716 +0 0.6442 +0 0.0672 +0 0.1604 +0 0.2064 +0 0.1161 +0 0.2238 +0 0.0695 +0 0.0759 +0 0.2027 +0 0.1135 +0 0.0687 +0 0.1215 +1 0.7562 +0 0.1016 +0 0.0615 +0 0.0668 +0 0.0992 +0 0.1046 +0 0.1082 +0 0.1283 +0 0.2543 +0 0.0551 +0 0.0746 +0 0.3191 +0 0.0717 +0 0.0829 +0 0.1027 +0 0.2439 +0 0.0675 +0 0.5688 +0 0.1495 +0 0.0384 +0 0.0941 +0 0.0674 +0 0.0643 +0 0.3743 +0 0.2374 +0 0.0864 +0 0.1141 +0 0.1005 +0 0.0526 +0 0.3804 +0 0.0496 +0 0.0812 +0 0.0801 +0 0.2021 +0 0.1096 +0 0.1501 +0 0.0977 +0 0.0827 +0 0.0981 +0 0.1898 +0 0.0672 +0 0.1877 +0 0.1171 +0 0.0641 +0 0.1052 +0 0.0531 +0 0.0943 +0 0.1889 +0 0.1663 +0 0.0846 +0 0.1513 +0 0.3338 +0 0.0914 +0 0.0684 +0 0.1315 +0 0.1773 +0 0.0385 +0 0.1104 +0 0.0746 +0 0.0826 +0 0.1196 +0 0.0974 +0 0.1442 +0 0.3735 +0 0.1170 +0 0.0986 +0 0.0904 +0 0.2142 +0 0.0845 +0 0.2034 +0 0.1355 +0 0.0762 +1 0.7927 +0 0.0963 +0 0.0697 +0 0.0484 +0 0.0638 +0 0.0835 +0 0.0639 +0 0.0750 +0 0.0816 +0 0.1688 +0 0.0626 +0 0.1222 +0 0.2245 +0 0.1810 +0 0.4390 +0 0.0592 +0 0.0565 +0 0.2517 +0 0.4104 +0 0.0494 +0 0.1601 +0 0.0728 +0 0.1229 +0 0.1117 +0 0.2291 +0 0.0848 +0 0.1699 +0 0.2712 +0 0.3272 +0 0.0518 +0 0.4452 +0 0.1225 +0 0.0846 +0 0.1507 +0 0.0551 +0 0.1475 +0 0.0607 +0 0.0481 +0 0.2360 +0 0.0971 +0 0.0690 +0 0.0471 +0 0.3899 +0 0.1528 +0 0.0765 +0 0.2932 +0 0.0956 +0 0.1486 +0 0.1961 +1 0.7601 +0 0.2303 +0 0.0875 +0 0.1218 +0 0.0596 +0 0.1538 +0 0.0524 +0 0.1672 +0 0.2536 +0 0.0882 +0 0.2067 +0 0.1048 +0 0.1018 +0 0.0800 +0 0.2240 +0 0.1490 +0 0.1426 +0 0.0814 +0 0.0765 +0 0.0393 +0 0.2488 +0 0.1354 +0 0.0745 +0 0.2421 +0 0.0825 +0 0.0836 +0 0.1068 +0 0.2256 +0 0.0672 +0 0.0390 +0 0.5909 +0 0.0722 +0 0.1254 +0 0.0920 +0 0.1673 +0 0.0976 +0 0.1202 +0 0.0952 +0 0.1215 +0 0.3349 +0 0.0489 +0 0.1463 +0 0.1628 +0 0.1203 +0 0.0633 +0 0.0421 +0 0.0555 +1 0.7675 +0 0.1911 +0 0.1244 +0 0.1337 +1 0.8045 +0 0.3125 +0 0.1081 +0 0.0852 +0 0.0700 +0 0.0360 +0 0.1314 +0 0.1137 +0 0.0407 +0 0.0908 +0 0.1125 +0 0.0484 +0 0.1139 +0 0.0447 +0 0.0970 +0 0.2132 +0 0.1125 +0 0.2101 +0 0.0593 +0 0.1367 +0 0.0668 +0 0.0372 +0 0.0903 +0 0.1474 +0 0.1439 +0 0.1336 +0 0.1582 +0 0.2169 +0 0.1621 +0 0.1122 +0 0.1885 +0 0.1680 +0 0.1496 +0 0.1803 +0 0.0333 +0 0.0717 +0 0.0810 +0 0.0639 +0 0.0902 +0 0.1331 +0 0.1543 +0 0.1082 +0 0.1652 +0 0.1464 +0 0.0544 +0 0.0462 +0 0.0969 +0 0.0646 +0 0.1174 +0 0.1206 +0 0.0874 +0 0.1739 +0 0.0603 +0 0.0349 +0 0.0616 +0 0.0910 +0 0.0864 +0 0.0957 +0 0.0690 +0 0.5277 +1 0.7954 +0 0.0840 +0 0.1321 +0 0.1013 +0 0.0649 +0 0.1127 +0 0.1120 +0 0.3596 +0 0.0623 +0 0.1143 +0 0.0477 +0 0.0350 +0 0.0612 +1 0.7857 +0 0.1157 +0 0.1239 +0 0.0846 +0 0.1296 +0 0.1832 +0 0.0500 +0 0.1070 +0 0.0987 +0 0.1103 +0 0.4750 +0 0.0646 +0 0.3132 +0 0.1349 +0 0.1384 +0 0.1133 +0 0.0983 +0 0.0506 +0 0.0968 +0 0.0596 +0 0.2765 +0 0.0599 +0 0.0835 +0 0.1941 +0 0.2229 +0 0.1593 +0 0.0990 +0 0.1803 +0 0.1439 +0 0.0712 +0 0.0536 +0 0.0760 +0 0.1220 +0 0.1038 +0 0.0844 +0 0.0896 +0 0.0990 +0 0.2781 +0 0.1214 +0 0.0370 +0 0.1897 +0 0.0878 +0 0.0975 +0 0.1124 +0 0.1602 +0 0.1719 +0 0.2266 +0 0.0795 +0 0.0578 +0 0.0623 +0 0.1101 +0 0.3274 +0 0.0813 +0 0.0846 +0 0.1066 +0 0.0964 +1 0.8193 +0 0.1956 +0 0.1546 +0 0.0925 +0 0.2856 +0 0.1051 +0 0.2065 +0 0.0920 +0 0.1100 +0 0.2503 +0 0.2179 +0 0.0476 +0 0.0939 +0 0.0492 +0 0.0885 +0 0.1032 +0 0.0500 +0 0.1044 +0 0.6043 +0 0.1267 +0 0.0463 +0 0.1024 +0 0.1550 +0 0.0551 +0 0.2199 +0 0.2518 +0 0.1615 +0 0.1480 +0 0.0751 +0 0.0956 +0 0.0768 +0 0.0781 +0 0.1229 +0 0.0544 +0 0.0618 +0 0.0753 +0 0.1792 +0 0.1042 +0 0.1571 +0 0.1782 +0 0.0911 +0 0.0940 +0 0.0677 +0 0.1280 +0 0.4964 +0 0.0949 +0 0.2701 +0 0.0509 +0 0.4287 +0 0.0601 +0 0.3075 +0 0.0886 +0 0.1291 +0 0.0384 +0 0.1173 +0 0.0756 +0 0.0932 +0 0.1195 +0 0.0591 +0 0.0871 +0 0.1556 +0 0.1204 +0 0.2316 +0 0.0483 +0 0.1864 +0 0.2297 +0 0.5040 +0 0.1148 +0 0.0306 +0 0.0432 +0 0.0426 +0 0.0405 +0 0.1012 +0 0.1255 +0 0.1344 +0 0.0718 +0 0.0597 +0 0.0687 +0 0.1691 +0 0.2669 +0 0.1538 +0 0.0510 +0 0.0957 +0 0.1159 +0 0.0725 +0 0.0491 +0 0.0719 +0 0.1581 +0 0.1720 +0 0.0798 +0 0.0658 +0 0.0888 +0 0.1001 +0 0.1106 +0 0.0556 +0 0.1196 +0 0.0976 +0 0.0639 +0 0.0577 +0 0.1173 +0 0.1660 +0 0.2023 +0 0.1520 +0 0.1648 +0 0.1022 +0 0.0455 +0 0.1179 +0 0.4660 +0 0.1295 +0 0.0870 +0 0.1242 +0 0.0990 +0 0.0456 +0 0.1020 +0 0.1530 +0 0.0986 +0 0.0832 +0 0.1241 +0 0.1010 +0 0.1822 +0 0.0949 +0 0.0708 +0 0.1452 +0 0.1481 +0 0.2295 +0 0.1130 +0 0.0757 +0 0.2732 +0 0.1016 +0 0.0949 +0 0.0812 +0 0.1194 +1 0.7912 +0 0.1492 +0 0.1818 +0 0.1163 +0 0.0727 +0 0.1887 +0 0.0616 +0 0.1468 +0 0.1231 +0 0.0464 +0 0.0803 +0 0.0702 +0 0.0572 +0 0.2044 +0 0.0856 +0 0.0604 +0 0.2137 +0 0.2689 +0 0.1052 +0 0.1067 +0 0.1237 +0 0.0611 +0 0.1428 +0 0.1443 +0 0.1672 +0 0.1035 +0 0.0496 +0 0.0471 +0 0.1620 +0 0.0762 +0 0.0609 +0 0.0641 +0 0.0950 +0 0.0606 +0 0.0635 +0 0.0650 +0 0.0920 +0 0.1551 +0 0.1286 +0 0.3141 +0 0.0822 +0 0.1723 +0 0.4932 +0 0.0989 +0 0.1083 +0 0.2388 +0 0.0394 +0 0.0932 +0 0.1827 +0 0.1276 +0 0.0492 +0 0.1597 +0 0.5109 +0 0.1808 +0 0.0565 +0 0.0575 +0 0.0734 +0 0.1037 +0 0.1708 +0 0.1526 +0 0.1735 +0 0.2238 +0 0.0580 +0 0.0797 +1 0.8124 +0 0.1922 +0 0.0991 +0 0.0676 +1 0.7775 +0 0.0317 +0 0.0682 +0 0.1714 +0 0.0989 +0 0.0927 +0 0.0771 +0 0.1728 +0 0.1721 +0 0.2169 +0 0.1171 +0 0.0483 +0 0.1188 +0 0.0696 +0 0.2263 +0 0.2381 +0 0.0636 +0 0.1064 +0 0.0867 +0 0.1471 +0 0.1772 +0 0.0915 +0 0.1376 +0 0.0733 +0 0.1552 +0 0.0451 +0 0.0933 +0 0.2186 +0 0.0777 +0 0.1060 +0 0.0855 +0 0.2748 +0 0.1614 +0 0.0800 +0 0.0776 +0 0.1153 +0 0.1045 +0 0.4331 +0 0.1168 +0 0.1897 +0 0.0715 +0 0.0834 +0 0.2235 +0 0.0656 +0 0.0528 +0 0.0582 +0 0.2436 +0 0.1458 +0 0.1053 +0 0.0888 +0 0.3261 +0 0.1642 +0 0.1347 +0 0.1237 +0 0.1151 +1 0.8309 +0 0.0867 +0 0.1256 +0 0.1303 +0 0.0683 +0 0.1448 +0 0.0760 +0 0.0723 +0 0.2459 +0 0.1179 +0 0.1371 +0 0.1210 +0 0.1314 +0 0.1414 +0 0.0772 +0 0.0793 +0 0.0592 +0 0.0466 +0 0.1401 +0 0.1398 +0 0.2191 +0 0.1526 +0 0.1188 +0 0.0821 +0 0.2380 +0 0.1388 +0 0.0887 +0 0.0843 +0 0.2671 +0 0.1484 +0 0.1018 +0 0.1293 +0 0.1699 +0 0.0606 +0 0.1307 +0 0.1716 +0 0.1921 +0 0.0920 +0 0.0539 +0 0.0584 +0 0.0994 +0 0.1578 +0 0.0851 +0 0.0705 +0 0.1757 +0 0.0829 +0 0.0958 +0 0.2243 +0 0.0706 +0 0.0839 +0 0.1785 +0 0.0630 +0 0.1323 +0 0.1118 +0 0.0666 +0 0.2113 +0 0.1041 +0 0.0629 +0 0.1175 +0 0.1933 +0 0.0597 +0 0.2616 +0 0.1322 +0 0.0781 +0 0.1038 +0 0.0647 +0 0.0673 +0 0.0425 +0 0.1624 +0 0.1683 +0 0.0675 +0 0.1130 +0 0.0672 +0 0.0766 +0 0.3148 +0 0.1081 +0 0.1707 +0 0.3906 +0 0.1209 +0 0.1354 +0 0.1034 +0 0.0542 +0 0.0851 +0 0.1889 +0 0.1000 +0 0.0865 +0 0.2792 +0 0.7164 +0 0.1155 +0 0.1557 +0 0.0812 +0 0.1164 +0 0.1262 +0 0.1534 +0 0.2727 +0 0.2698 +0 0.0538 +0 0.1656 +0 0.0556 +0 0.0542 +0 0.0437 +0 0.1700 +0 0.0814 +0 0.1402 +0 0.3129 +0 0.0581 +0 0.0926 +0 0.1438 +0 0.0787 +0 0.0655 +0 0.0792 +0 0.0435 +0 0.4350 +0 0.1889 +1 0.8321 +0 0.0971 +0 0.0497 +0 0.1133 +0 0.0885 +1 0.8365 +0 0.0734 +0 0.0722 +0 0.4795 +0 0.0809 +0 0.2408 +0 0.1108 +0 0.4168 +0 0.0660 +0 0.0907 +0 0.1572 +0 0.0699 +0 0.1725 +0 0.1902 +0 0.2124 +0 0.0794 +0 0.0861 +0 0.0870 +0 0.1379 +0 0.1153 +0 0.6508 +0 0.6032 +0 0.1231 +0 0.0526 +0 0.0836 +0 0.1161 +0 0.1481 +0 0.4982 +0 0.3329 +0 0.1871 +0 0.2855 +0 0.1672 +0 0.1082 +0 0.0722 +0 0.1711 +0 0.1438 +0 0.0508 +0 0.1385 +0 0.1123 +0 0.1503 +0 0.0378 +0 0.5574 +0 0.2665 +0 0.1300 +0 0.0731 +0 0.1800 +0 0.1017 +0 0.0806 +0 0.0455 +0 0.2030 +0 0.1110 +0 0.0845 +0 0.2565 +0 0.2247 +0 0.1026 +0 0.0514 +0 0.1543 +1 0.8346 +0 0.0962 +0 0.0383 +0 0.1106 +0 0.1604 +0 0.0416 +0 0.0479 +0 0.0784 +0 0.0894 +0 0.1036 +0 0.0436 +0 0.1651 +0 0.1449 +0 0.0457 +0 0.2938 +0 0.0548 +0 0.0860 +0 0.1050 +0 0.0628 +0 0.1614 +0 0.1252 +0 0.0826 +0 0.1659 +0 0.1977 +0 0.0821 +0 0.0709 +0 0.1951 +0 0.4666 +0 0.0522 +0 0.1311 +0 0.3455 +0 0.0643 +0 0.0524 +0 0.0913 +0 0.0644 +0 0.0317 +0 0.2957 +0 0.3686 +0 0.0420 +0 0.0805 +0 0.1892 +0 0.0942 +0 0.0825 +0 0.1688 +0 0.2114 +0 0.1695 +0 0.1554 +0 0.0612 +0 0.6661 +0 0.0533 +0 0.0819 +0 0.0745 +0 0.2879 +0 0.0546 +0 0.0409 +0 0.0616 +0 0.0690 +0 0.0474 +0 0.0691 +0 0.1211 +0 0.0972 +0 0.2154 +0 0.1555 +0 0.0818 +0 0.1166 +0 0.3366 +0 0.2196 +0 0.1489 +0 0.2341 +0 0.0439 +0 0.1803 +0 0.1003 +0 0.5254 +0 0.0717 +0 0.1034 +0 0.1246 +0 0.3204 +0 0.2092 +0 0.1379 +0 0.0668 +0 0.1224 +0 0.0827 +0 0.0635 +0 0.0541 +0 0.0523 +0 0.0643 +0 0.0619 +0 0.4401 +0 0.2164 +0 0.1490 +0 0.0816 +0 0.2476 +0 0.2564 +0 0.1919 +0 0.1331 +0 0.3223 +0 0.1835 +0 0.5313 +1 0.8023 +0 0.0760 +0 0.0740 +0 0.0597 +0 0.1472 +0 0.0779 +0 0.1322 +0 0.1037 +0 0.0694 +0 0.0336 +0 0.1417 +0 0.1076 +0 0.1202 +0 0.0839 +0 0.2092 +0 0.2154 +0 0.2600 +0 0.3970 +0 0.1449 +0 0.5068 +0 0.4138 +0 0.1086 +0 0.0480 +0 0.2407 +0 0.0572 +0 0.0883 +0 0.0324 +0 0.0744 +0 0.0791 +0 0.2048 +0 0.2989 +0 0.3523 +0 0.0399 +0 0.0733 +0 0.1116 +0 0.1467 +0 0.0660 +0 0.1391 +0 0.1083 +0 0.0385 +0 0.0848 +0 0.1957 +0 0.0553 +0 0.0891 +0 0.0778 +0 0.2571 +0 0.4182 +0 0.1299 +0 0.1476 +0 0.0670 +0 0.0604 +0 0.1817 +0 0.0748 +0 0.1754 +0 0.0388 +0 0.1319 +0 0.0996 +0 0.1476 +0 0.3979 +0 0.0826 +0 0.1731 +0 0.0784 +0 0.0927 +0 0.1036 +0 0.2713 +0 0.1582 +0 0.2606 +0 0.2689 +0 0.0863 +0 0.1493 +0 0.0590 +0 0.1199 +0 0.2373 +0 0.1199 +0 0.1759 +0 0.0884 +0 0.0552 +0 0.2064 +0 0.0774 +0 0.0947 +0 0.4893 +0 0.0903 +0 0.0810 +0 0.1733 +0 0.0521 +0 0.1048 +0 0.1567 +0 0.1425 +0 0.0339 +0 0.0860 +0 0.1183 +0 0.0949 +0 0.0483 +0 0.2264 +0 0.0936 +0 0.2855 +0 0.1704 +0 0.1561 +0 0.0637 +0 0.0459 +0 0.4093 +0 0.0829 +0 0.0900 +0 0.1063 +0 0.2240 +0 0.0669 +0 0.1896 +0 0.1383 +0 0.0873 +0 0.0879 +0 0.0751 +0 0.2787 +0 0.4407 +0 0.2158 +0 0.1181 +0 0.1248 +0 0.0861 +0 0.0758 +0 0.1750 +0 0.1773 +0 0.1568 +0 0.0680 +0 0.1699 +0 0.0550 +0 0.0625 +0 0.5065 +0 0.1009 +0 0.0887 +0 0.1659 +0 0.5758 +0 0.0855 +0 0.0614 +0 0.1036 +0 0.1142 +0 0.0601 +0 0.0986 +0 0.5648 +0 0.0995 +0 0.0942 +0 0.3295 +0 0.0961 +0 0.0840 +0 0.2440 +0 0.1637 +0 0.0893 +0 0.1596 +0 0.3215 +0 0.1244 +0 0.0957 +0 0.3260 +0 0.0992 +0 0.0659 +0 0.1068 +0 0.1416 +0 0.0543 +0 0.1178 +0 0.4550 +0 0.0580 +0 0.0561 +0 0.2092 +0 0.1632 +0 0.0465 +0 0.0850 +0 0.0542 +0 0.0858 +0 0.2089 +0 0.1000 +0 0.0917 +0 0.1528 +0 0.0799 +0 0.2075 +0 0.3194 +0 0.2241 +0 0.1183 +0 0.0422 +0 0.0903 +0 0.1297 +0 0.0661 +0 0.0726 +0 0.0939 +0 0.2912 +0 0.2495 +0 0.1017 +0 0.0366 +0 0.1085 +0 0.1141 +0 0.0503 +0 0.0634 +0 0.2249 +0 0.1535 +0 0.0377 +0 0.0544 +0 0.1187 +0 0.1997 +0 0.0837 +0 0.0922 +0 0.0838 +0 0.0887 +0 0.1786 +1 0.8192 +0 0.1264 +0 0.2672 +0 0.0662 +0 0.1787 +0 0.1740 +0 0.0977 +0 0.1820 +0 0.2311 +0 0.0593 +0 0.2291 +0 0.2271 +0 0.0581 +0 0.0990 +0 0.0692 +0 0.0625 +0 0.1369 +0 0.1063 +0 0.1000 +0 0.2485 +0 0.2871 +0 0.0532 +0 0.1505 +0 0.0745 +0 0.0398 +0 0.1578 +0 0.3030 +0 0.4172 +0 0.1373 +0 0.1602 +0 0.1025 +0 0.1321 +0 0.1411 +0 0.2181 +0 0.0317 +0 0.1105 +0 0.5258 +0 0.1047 +0 0.1957 +0 0.0537 +0 0.2538 +0 0.2810 +0 0.0639 +0 0.0827 +0 0.1441 +0 0.0850 +1 0.8425 +0 0.0718 +0 0.0826 +0 0.1365 +0 0.0680 +0 0.0617 +0 0.0557 +0 0.0645 +0 0.0646 +0 0.1899 +0 0.0518 +0 0.1471 +0 0.2595 +1 0.8239 +0 0.0716 +0 0.0679 +0 0.0845 +0 0.1507 +0 0.0831 +0 0.2557 +0 0.0444 +0 0.0998 +0 0.1224 +0 0.1488 +0 0.1124 +0 0.0451 +0 0.2520 +0 0.0621 +0 0.1022 +0 0.0768 +0 0.3264 +0 0.2297 +0 0.0645 +0 0.1276 +0 0.0596 +0 0.6446 +0 0.0329 +0 0.4876 +0 0.1732 +0 0.1064 +0 0.0389 +0 0.2984 +1 0.8059 +0 0.1248 +0 0.2280 +1 0.8062 +0 0.1187 +0 0.0938 +0 0.1273 +0 0.2680 +0 0.1169 +0 0.0679 +0 0.1092 +0 0.0340 +0 0.0866 +0 0.0585 +0 0.2035 +0 0.1259 +0 0.1258 +0 0.0466 +0 0.2102 +0 0.1378 +0 0.1341 +0 0.3978 +0 0.1440 +1 0.8684 +0 0.1112 +0 0.1341 +0 0.0514 +0 0.1544 +0 0.0722 +0 0.0656 +0 0.7140 +0 0.0586 +0 0.1135 +0 0.1114 +0 0.1338 +0 0.5701 +0 0.1190 +0 0.0408 +0 0.0653 +0 0.0854 +0 0.0979 +0 0.0515 +0 0.1559 +0 0.1144 +0 0.0725 +0 0.1541 +0 0.1673 +0 0.1942 +0 0.0778 +0 0.0446 +0 0.0461 +0 0.0608 +0 0.1153 +0 0.0645 +0 0.0878 +0 0.0824 +0 0.1722 +0 0.1729 +0 0.1664 +0 0.0638 +0 0.0786 +0 0.1203 +0 0.0547 +0 0.0555 +0 0.1639 +0 0.1999 +0 0.0976 +0 0.0531 +0 0.1522 +0 0.0731 +0 0.1011 +0 0.0752 +0 0.2126 +0 0.1307 +0 0.1072 +0 0.0801 +0 0.0678 +0 0.0772 +0 0.0848 +0 0.4970 +0 0.5007 +0 0.0491 +0 0.0594 +0 0.1465 +0 0.0576 +0 0.0547 +0 0.1113 +0 0.1095 +0 0.0739 +0 0.0477 +0 0.1203 +0 0.0879 +0 0.0359 +0 0.2550 +0 0.1233 +0 0.1831 +0 0.1842 +0 0.1363 +0 0.0805 +0 0.0729 +0 0.0781 +0 0.1478 +0 0.6567 +0 0.0492 +0 0.0457 +0 0.1033 +0 0.2135 +0 0.0753 +0 0.3714 +0 0.1031 +0 0.0775 +0 0.0899 +0 0.0719 +0 0.0652 +0 0.4910 +0 0.1764 +0 0.0379 +0 0.0783 +0 0.0859 +0 0.1575 +0 0.1861 +0 0.0541 +0 0.0888 +0 0.2848 +0 0.0574 +0 0.0993 +0 0.0451 +0 0.1314 +0 0.0641 +0 0.2255 +0 0.0779 +0 0.1806 +0 0.0944 +0 0.2498 +0 0.1128 +0 0.0830 +0 0.0786 +0 0.1296 +0 0.0624 +0 0.1889 +0 0.0737 +0 0.1102 +0 0.3922 +0 0.0609 +0 0.0362 +0 0.1368 +0 0.0829 +0 0.3903 +0 0.0903 +0 0.0955 +0 0.0998 +0 0.3266 +0 0.1780 +0 0.0705 +0 0.0637 +0 0.1669 +0 0.0956 +0 0.0928 +0 0.1530 +0 0.0561 +0 0.0719 +0 0.1259 +0 0.1066 +0 0.2317 +0 0.1487 +0 0.1317 +0 0.1167 +0 0.0628 +0 0.1360 +0 0.1638 +0 0.0490 +0 0.1646 +0 0.0885 +0 0.0345 +0 0.2184 +0 0.0534 +0 0.1576 +0 0.0602 +0 0.2114 +0 0.0882 +0 0.2774 +0 0.1076 +0 0.5766 +0 0.1175 +0 0.1203 +0 0.1024 +0 0.1259 +0 0.1180 +0 0.1912 +0 0.2665 +0 0.5398 +0 0.1458 +0 0.0943 +0 0.1237 +0 0.1247 +0 0.3521 +0 0.1641 +0 0.0657 +0 0.2432 +0 0.0570 +0 0.2001 +0 0.0515 +0 0.1283 +0 0.0715 +0 0.1558 +0 0.1331 +0 0.1062 +0 0.0833 +0 0.3945 +0 0.0873 +0 0.1906 +0 0.1006 +0 0.3492 +0 0.0759 +0 0.1066 +0 0.0644 +0 0.0801 +0 0.1584 +0 0.1054 +0 0.2617 +0 0.0317 +0 0.0942 +0 0.0601 +0 0.1690 +0 0.0620 +0 0.1041 +0 0.0764 +0 0.3808 +0 0.1169 +0 0.0956 +0 0.1177 +0 0.0896 +0 0.0827 +0 0.1886 +0 0.0617 +0 0.0832 +0 0.0583 +0 0.2374 +0 0.1764 +0 0.1006 +0 0.1211 +0 0.1020 +0 0.0924 +0 0.1023 +0 0.1077 +0 0.2348 +0 0.1201 +0 0.0839 +0 0.2315 +0 0.0407 +0 0.7407 +0 0.0833 +0 0.2524 +0 0.0626 +0 0.0755 +0 0.0978 +0 0.1867 +0 0.1285 +0 0.1349 +0 0.1133 +0 0.1336 +0 0.1506 +0 0.0934 +0 0.1195 +0 0.1819 +0 0.1545 +0 0.1486 +0 0.1186 +0 0.2442 +0 0.3483 +0 0.0800 +0 0.0667 +0 0.0571 +0 0.4382 +0 0.1741 +0 0.0469 +0 0.0653 +0 0.0954 +0 0.2021 +0 0.1293 +0 0.2383 +0 0.1475 +0 0.0417 +0 0.1161 +0 0.0843 +0 0.2958 +0 0.1303 +0 0.1506 +0 0.1412 +0 0.0742 +0 0.1643 +0 0.1899 +0 0.1573 +0 0.1042 +0 0.1313 +0 0.0620 +0 0.0707 +0 0.2105 +0 0.2615 +0 0.1561 +0 0.0772 +0 0.2366 +0 0.2272 +0 0.0565 +0 0.4849 +0 0.1134 +0 0.4814 +0 0.0808 +0 0.1087 +0 0.3500 +0 0.4851 +0 0.1680 +0 0.6901 +0 0.0643 +0 0.1100 +0 0.0850 +0 0.1023 +0 0.1515 +0 0.1258 +0 0.0888 +0 0.0851 +0 0.0736 +0 0.1615 +0 0.1846 +0 0.1567 +0 0.2551 +0 0.1657 +0 0.1615 +0 0.0956 +0 0.1356 +0 0.0723 +0 0.1063 +0 0.1306 +0 0.0833 +0 0.1101 +0 0.1437 +0 0.1512 +0 0.0970 +0 0.0646 +0 0.1453 +0 0.0384 +0 0.1126 +0 0.0493 +0 0.7086 +0 0.0621 +0 0.1100 +0 0.1106 +0 0.2222 +0 0.1194 +0 0.1255 +0 0.0588 +0 0.3311 +0 0.1718 +0 0.1146 +0 0.2386 +0 0.1867 +0 0.0426 +0 0.0581 +0 0.1924 +0 0.1371 +0 0.2210 +0 0.1000 +0 0.0565 +0 0.1180 +0 0.0745 +0 0.0728 +0 0.1133 +0 0.1206 +0 0.1445 +0 0.1895 +0 0.1805 +0 0.0584 +0 0.1693 +0 0.0817 +0 0.0965 +0 0.6133 +0 0.0998 +0 0.1348 +0 0.1716 +0 0.2826 +0 0.1091 +0 0.4120 +0 0.1413 +0 0.1378 +0 0.0844 +0 0.6826 +0 0.1061 +0 0.0454 +0 0.0510 +0 0.0672 +0 0.5271 +0 0.2443 +0 0.1086 +0 0.0622 +1 0.8578 +0 0.1795 +0 0.0955 +0 0.0909 +0 0.0771 +0 0.2366 +0 0.0811 +0 0.0356 +0 0.3357 +0 0.0626 +0 0.0427 +0 0.4383 +0 0.0952 +0 0.1024 +0 0.1619 +0 0.1265 +0 0.1925 +0 0.1160 +0 0.0781 +0 0.1003 +0 0.0908 +0 0.0740 +0 0.1016 +0 0.0878 +0 0.0498 +0 0.1640 +0 0.1816 +0 0.1742 +0 0.0797 +0 0.1791 +0 0.3566 +0 0.0847 +0 0.1848 +0 0.1040 +0 0.0975 +0 0.1245 +0 0.1586 +0 0.0865 +0 0.0567 +0 0.0457 +0 0.0787 +0 0.0796 +0 0.0528 +0 0.0692 +0 0.1893 +0 0.0608 +0 0.0483 +0 0.2330 +0 0.0706 +0 0.1516 +1 0.8501 +0 0.0709 +0 0.0693 +0 0.0681 +0 0.0663 +0 0.1629 +0 0.6129 +0 0.1017 +0 0.2618 +0 0.1241 +0 0.2020 +0 0.0979 +0 0.2458 +0 0.0647 +0 0.2404 +0 0.0694 +0 0.1266 +0 0.1140 +0 0.1093 +0 0.0878 +0 0.0386 +0 0.2246 +0 0.0890 +0 0.2278 +0 0.0583 +0 0.0794 +0 0.0626 +0 0.0981 +0 0.2496 +0 0.1146 +0 0.6679 +0 0.0430 +0 0.1358 +0 0.7282 +0 0.0396 +0 0.0440 +0 0.2922 +0 0.0496 +0 0.0743 +0 0.1127 +0 0.0486 +0 0.1087 +0 0.0802 +0 0.2218 +1 0.8137 +0 0.3940 +0 0.3397 +0 0.2186 +0 0.1214 +0 0.1081 +0 0.0677 +0 0.1239 +0 0.1828 +1 0.7767 +0 0.1829 +0 0.0778 +0 0.0951 +0 0.0916 +0 0.1294 +0 0.2844 +0 0.2344 +0 0.4217 +0 0.0955 +0 0.0787 +0 0.4528 +0 0.1206 +0 0.1084 +0 0.0669 +0 0.0831 +0 0.0658 +0 0.1021 +0 0.0539 +0 0.1831 +0 0.2525 +0 0.0933 +0 0.3800 +0 0.0805 +0 0.0608 +0 0.1974 +0 0.1405 +0 0.0949 +0 0.2062 +1 0.7583 +1 0.8514 +0 0.0854 +0 0.1426 +0 0.0635 +0 0.2470 +0 0.1255 +0 0.0513 +0 0.0399 +0 0.0380 +0 0.1359 +0 0.1517 +0 0.1174 +0 0.1125 +0 0.0474 +0 0.0683 +0 0.1701 +0 0.1036 +0 0.2407 +0 0.0866 +0 0.1287 +0 0.1431 +0 0.0446 +0 0.1265 +0 0.1042 +0 0.0802 +0 0.0882 +0 0.0559 +0 0.1404 +0 0.1257 +0 0.0760 +0 0.1450 +0 0.2344 +0 0.2375 +0 0.4168 +0 0.1484 +0 0.2571 +0 0.2183 +0 0.2004 +0 0.0574 +0 0.0925 +0 0.0721 +0 0.2300 +0 0.0913 +0 0.1042 +0 0.0438 +0 0.1117 +0 0.1725 +0 0.1158 +0 0.1289 +0 0.0767 +0 0.0757 +0 0.0396 +0 0.2470 +0 0.7040 +0 0.1740 +0 0.1968 +0 0.1629 +0 0.1413 +0 0.0438 +0 0.0630 +0 0.0558 +0 0.2143 +0 0.0652 +0 0.0572 +0 0.1192 +0 0.0757 +0 0.1107 +0 0.0541 +0 0.0785 +0 0.6787 +0 0.0947 +0 0.0732 +0 0.1768 +0 0.5916 +0 0.1175 +0 0.0917 +0 0.0281 +0 0.0968 +0 0.2026 +0 0.1654 +0 0.1167 +0 0.0931 +0 0.0780 +0 0.0615 +0 0.0762 +0 0.0836 +0 0.1521 +0 0.4782 +0 0.0974 +0 0.3874 +0 0.2646 +0 0.0883 +0 0.1646 +0 0.1764 +0 0.2375 +0 0.0741 +0 0.1260 +0 0.1268 +0 0.0597 +0 0.1225 +0 0.1247 +1 0.8543 +0 0.1493 +0 0.1378 +0 0.0950 +0 0.1170 +0 0.1649 +0 0.0780 +0 0.0607 +0 0.6328 +0 0.0571 +0 0.5404 +0 0.0730 +0 0.1728 +0 0.4978 +0 0.0883 +0 0.0617 +0 0.0719 +0 0.1198 +0 0.0520 +0 0.1671 +0 0.7337 +0 0.3018 +0 0.2635 +0 0.2013 +0 0.1377 +0 0.0669 +0 0.0790 +0 0.1586 +0 0.1096 +0 0.1508 +0 0.1094 +0 0.1340 +0 0.0854 +0 0.1854 +0 0.0630 +0 0.1564 +0 0.0945 +1 0.7638 +0 0.7318 +0 0.5756 +0 0.0887 +0 0.0489 +0 0.1103 +0 0.0971 +0 0.1265 +0 0.1027 +0 0.1312 +0 0.1284 +0 0.1204 +0 0.1590 +0 0.0739 +0 0.1079 +0 0.0715 +0 0.0562 +0 0.0687 +0 0.0778 +0 0.0624 +0 0.1371 +0 0.0700 +0 0.0355 +0 0.0701 +0 0.2318 +0 0.3399 +0 0.0588 +0 0.7493 +0 0.1318 +0 0.1068 +0 0.0543 +0 0.1388 +0 0.1338 +0 0.0669 +0 0.2120 +0 0.1333 +0 0.1400 +0 0.1809 +0 0.6812 +0 0.1208 +0 0.0993 +0 0.1771 +0 0.1059 +0 0.0691 +0 0.0682 +0 0.0865 +0 0.1168 +0 0.0812 +0 0.0869 +0 0.0584 +0 0.1716 +0 0.0721 +0 0.1784 +0 0.1828 +0 0.1285 +0 0.4079 +0 0.1074 +0 0.0993 +0 0.0657 +0 0.0603 +0 0.1374 +0 0.0445 +0 0.1944 +0 0.0606 +0 0.0643 +0 0.2784 +0 0.1408 +0 0.0455 +0 0.2132 +0 0.0599 +0 0.0866 +0 0.1118 +0 0.1478 +0 0.0743 +0 0.1413 +0 0.1508 +0 0.0322 +0 0.1070 +0 0.0784 +0 0.0925 +0 0.1144 +0 0.0714 +0 0.0903 +0 0.1411 +0 0.0787 +0 0.0550 +0 0.0825 +0 0.1707 +0 0.1493 +0 0.0662 +0 0.0792 +0 0.5448 +0 0.1585 +0 0.0914 +0 0.0472 +0 0.0587 +0 0.0751 +0 0.0545 +0 0.0938 +0 0.2475 +0 0.2718 +0 0.1440 +0 0.1128 +0 0.1533 +0 0.1232 +0 0.0698 +0 0.0712 +0 0.5684 +0 0.1146 +0 0.0866 +0 0.1354 +0 0.2336 +0 0.0624 +0 0.0694 +0 0.2309 +0 0.0990 +0 0.4170 +0 0.1128 +0 0.4663 +0 0.0517 +0 0.1297 +0 0.1120 +0 0.0695 +0 0.6525 +0 0.1465 +0 0.1338 +0 0.1690 +0 0.0405 +0 0.0693 +0 0.2782 +1 0.8736 +0 0.0729 +0 0.4206 +0 0.0836 +0 0.0339 +0 0.1222 +0 0.2429 +0 0.1065 +0 0.0905 +0 0.0879 +0 0.0758 +0 0.1116 +0 0.0672 +0 0.0810 +0 0.1010 +0 0.0928 +0 0.2407 +0 0.1325 +0 0.2703 +0 0.0803 +0 0.1036 +0 0.1951 +0 0.0411 +0 0.1052 +0 0.2907 +0 0.2249 +0 0.0745 +0 0.1312 +0 0.0676 +0 0.1742 +0 0.0564 +0 0.3341 +0 0.2961 +0 0.0979 +0 0.2463 +0 0.0492 +0 0.0526 +0 0.0704 +0 0.3130 +0 0.0767 +0 0.1033 +0 0.1005 +0 0.0671 +0 0.1671 +0 0.1068 +0 0.2796 +0 0.0945 +0 0.0917 +0 0.3319 +0 0.0740 +0 0.0879 +0 0.0529 +0 0.6201 +0 0.1073 +0 0.0751 +0 0.2987 +0 0.0444 +0 0.0876 +0 0.0764 +0 0.1008 +0 0.1428 +0 0.3598 +0 0.0900 +0 0.0967 +0 0.2086 +0 0.2109 +0 0.2280 +0 0.2645 +0 0.0744 +0 0.2255 +0 0.0717 +0 0.1317 +0 0.0500 +0 0.1218 +0 0.0857 +0 0.0726 +0 0.4467 +0 0.2927 +0 0.1116 +0 0.1355 +0 0.0819 +0 0.0403 +0 0.2238 +0 0.3908 +0 0.0585 +0 0.0952 +0 0.0512 +0 0.1481 +0 0.0784 +0 0.0452 +0 0.2419 +0 0.1155 +0 0.0599 +0 0.0639 +0 0.1298 +0 0.0678 +0 0.2895 +0 0.0817 +0 0.0994 +0 0.1633 +0 0.0883 +0 0.1108 +0 0.0917 +0 0.1417 +0 0.0651 +0 0.0924 +0 0.0801 +0 0.0984 +0 0.0579 +0 0.3604 +0 0.0808 +0 0.1904 +0 0.1964 +0 0.2205 +0 0.0654 +0 0.1096 +0 0.4103 +0 0.1430 +1 0.8604 +0 0.2373 +0 0.1237 +0 0.0865 +0 0.5187 +0 0.1135 +0 0.1435 +0 0.2033 +0 0.1808 +0 0.5590 +0 0.0797 +0 0.0324 +0 0.1083 +0 0.2400 +0 0.0819 +0 0.0934 +0 0.0485 +0 0.1038 +0 0.5889 +0 0.0841 +0 0.1386 +0 0.0873 +0 0.1496 +0 0.0738 +0 0.3776 +0 0.0552 +0 0.0938 +0 0.0788 +0 0.0339 +0 0.1804 +0 0.0466 +0 0.1090 +0 0.4932 +0 0.2448 +0 0.2043 +0 0.0948 +0 0.0415 +0 0.1475 +0 0.1849 +0 0.0746 +0 0.3620 +0 0.1346 +0 0.1188 +0 0.0717 +0 0.0835 +0 0.0606 +0 0.1115 +0 0.1220 +0 0.1417 +0 0.0786 +0 0.1194 +0 0.2081 +0 0.1912 +0 0.0575 +0 0.0923 +0 0.1622 +0 0.0756 +0 0.0698 +0 0.1554 +0 0.0812 +0 0.1446 +0 0.1541 +0 0.4017 +0 0.0683 +0 0.0669 +0 0.7146 +0 0.1916 +0 0.0835 +0 0.0794 +0 0.1573 +0 0.0795 +0 0.6022 +0 0.1129 +0 0.1358 +0 0.0494 +0 0.1269 +0 0.0384 +0 0.0819 +0 0.0595 +0 0.1973 +0 0.0607 +0 0.1138 +0 0.0648 +0 0.1488 +0 0.1056 +0 0.0670 +1 0.8417 +0 0.1931 +0 0.0617 +0 0.1489 +0 0.1623 +0 0.1488 +0 0.1786 +0 0.0935 +0 0.1188 +0 0.2936 +0 0.0631 +0 0.1706 +0 0.1449 +0 0.1211 +0 0.1190 +0 0.1823 +0 0.0396 +0 0.0926 +0 0.0526 +0 0.0809 +0 0.3564 +0 0.1026 +0 0.0851 +0 0.2614 +0 0.0836 +0 0.1600 +0 0.1012 +0 0.2614 +0 0.2314 +0 0.1973 +0 0.2095 +0 0.0761 +0 0.0949 +0 0.1408 +0 0.2373 +0 0.0748 +0 0.1635 +0 0.0590 +0 0.0520 +0 0.1767 +0 0.1398 +0 0.3101 +0 0.0558 +0 0.0726 +0 0.0719 +0 0.0609 +0 0.0582 +0 0.1405 +0 0.0982 +0 0.1757 +0 0.1693 +0 0.0778 +0 0.0756 +0 0.1302 +0 0.0878 +0 0.1017 +0 0.1074 +0 0.2648 +0 0.1073 +0 0.1517 +0 0.0801 +0 0.1231 +0 0.0490 +0 0.1072 +0 0.0441 +0 0.0834 +0 0.0895 +0 0.1103 +0 0.4638 +0 0.0645 +0 0.0332 +0 0.3306 +0 0.0941 +0 0.1841 +0 0.1086 +0 0.2568 +0 0.1049 +0 0.0829 +0 0.0423 +0 0.1610 +0 0.0617 +0 0.0807 +0 0.2015 +0 0.2270 +0 0.1516 +0 0.0422 +0 0.1874 +0 0.3819 +0 0.1022 +0 0.1175 +0 0.1730 +0 0.3353 +0 0.0489 +0 0.1831 +0 0.0760 +0 0.1611 +0 0.0583 +0 0.2889 +0 0.1248 +0 0.1527 +0 0.0404 +0 0.1341 +0 0.0954 +0 0.0561 +0 0.0765 +0 0.0570 +0 0.0375 +0 0.1034 +0 0.0866 +0 0.0896 +0 0.0778 +0 0.0454 +0 0.0971 +0 0.2802 +0 0.0520 +0 0.1292 +0 0.0513 +0 0.1315 +0 0.0579 +0 0.1122 +0 0.3561 +0 0.1966 +0 0.1430 +0 0.0971 +0 0.0627 +0 0.2262 +0 0.1660 +0 0.1217 +0 0.0529 +0 0.0740 +0 0.1855 +0 0.0696 +0 0.1236 +0 0.2210 +1 0.8206 +0 0.0602 +0 0.1307 +0 0.1117 +0 0.1268 +1 0.7698 +0 0.1395 +0 0.1232 +0 0.1740 +0 0.0926 +0 0.1351 +0 0.5349 +0 0.1523 +0 0.0862 +0 0.1081 +0 0.0503 +0 0.1243 +0 0.0515 +0 0.1283 +0 0.2036 +0 0.1796 +0 0.1479 +0 0.2443 +0 0.0797 +0 0.1564 +0 0.1114 +0 0.1423 +0 0.1767 +0 0.1096 +0 0.2258 +0 0.1362 +0 0.0721 +0 0.0511 +0 0.1494 +0 0.0937 +0 0.1580 +0 0.0624 +0 0.2194 +0 0.2187 +0 0.0559 +0 0.0619 +0 0.2209 +0 0.0594 +0 0.1289 +0 0.0885 +0 0.0711 +0 0.1309 +0 0.1188 +0 0.2011 +1 0.7660 +0 0.0721 +0 0.1867 +0 0.0610 +0 0.1306 +0 0.0760 +0 0.0546 +0 0.1130 +0 0.1744 +0 0.2384 +0 0.0742 +0 0.0414 +0 0.0806 +0 0.0896 +0 0.2858 +0 0.0790 +0 0.0702 +0 0.0633 +0 0.1655 +0 0.4356 +0 0.1153 +0 0.2369 +0 0.1022 +0 0.1324 +0 0.2619 +0 0.1470 +0 0.0728 +0 0.1206 +0 0.0901 +0 0.0673 +0 0.0657 +0 0.0952 +0 0.3122 +0 0.1812 +0 0.0482 +0 0.1215 +0 0.0469 +0 0.1314 +0 0.3577 +0 0.0853 +0 0.1465 +0 0.0630 +0 0.0734 +0 0.1001 +0 0.1607 +0 0.0543 +0 0.0565 +0 0.0434 +0 0.0783 +0 0.2051 +0 0.0823 +0 0.1372 +0 0.1331 +0 0.1402 +0 0.4088 +0 0.1516 +0 0.0586 +0 0.0626 +0 0.0637 +0 0.1150 +0 0.1327 +0 0.0783 +0 0.1818 +0 0.1526 +0 0.1262 +0 0.0972 +0 0.1047 +0 0.3290 +0 0.0523 +0 0.0788 +0 0.3009 +0 0.0863 +0 0.0749 +0 0.1107 +0 0.0549 +0 0.0777 +0 0.1277 +0 0.1323 +0 0.0589 +0 0.3401 +0 0.0519 +0 0.0359 +0 0.0864 +0 0.1687 +0 0.0850 +0 0.0692 +0 0.2142 +0 0.1021 +0 0.0637 +0 0.1841 +0 0.1220 +0 0.0828 +0 0.0654 +0 0.0662 +0 0.1158 +0 0.1113 +0 0.0883 +0 0.2111 +0 0.1383 +0 0.2717 +0 0.5437 +0 0.0705 +0 0.1022 +0 0.0749 +0 0.0613 +0 0.3034 +0 0.0550 +0 0.1033 +0 0.1013 +0 0.1102 +0 0.1687 +0 0.0620 +0 0.0845 +0 0.1061 +0 0.4160 +0 0.3387 +0 0.0803 +0 0.0563 +0 0.0939 +0 0.0672 +0 0.0556 +0 0.0610 +0 0.1733 +0 0.1240 +0 0.0914 +0 0.0751 +0 0.1143 +0 0.0396 +0 0.0641 +0 0.4100 +0 0.1903 +0 0.0319 +0 0.0854 +0 0.1934 +0 0.0853 +0 0.0842 +0 0.0335 +0 0.1265 +0 0.0678 +0 0.0899 +0 0.1210 +0 0.4683 +0 0.1133 +0 0.1178 +0 0.0480 +0 0.0437 +0 0.0922 +0 0.0793 +1 0.8476 +0 0.2127 +0 0.1603 +0 0.2226 +0 0.1527 +0 0.3739 +0 0.0424 +0 0.0864 +0 0.1402 +0 0.2330 +0 0.3383 +0 0.0732 +0 0.0482 +0 0.5165 +0 0.0827 +0 0.1108 +0 0.1019 +0 0.1558 +0 0.1878 +0 0.0452 +0 0.1390 +0 0.0524 +0 0.2477 +0 0.0478 +0 0.1258 +0 0.0840 +0 0.1077 +0 0.1739 +0 0.1415 +0 0.1071 +0 0.2840 +0 0.2146 +0 0.1067 +0 0.0598 +0 0.1160 +0 0.1228 +0 0.2167 +0 0.0838 +0 0.1414 +0 0.1112 +0 0.0433 +0 0.4611 +0 0.0384 +0 0.1441 +1 0.8136 +0 0.0969 +0 0.2094 +0 0.1413 +0 0.0454 +0 0.1660 +0 0.0734 +0 0.0994 +0 0.0447 +0 0.0499 +0 0.0542 +0 0.6005 +0 0.0491 +0 0.1906 +0 0.0816 +0 0.2261 +0 0.0947 +0 0.0903 +0 0.1476 +0 0.0995 +0 0.1633 +0 0.0546 +0 0.0977 +0 0.1564 +0 0.0803 +0 0.0968 +0 0.1224 +0 0.0360 +0 0.0998 +0 0.1310 +0 0.0798 +0 0.0821 +0 0.0975 +0 0.1636 +0 0.1305 +0 0.1076 +0 0.1479 +0 0.0838 +0 0.0784 +0 0.1262 +0 0.1360 +0 0.0578 +0 0.1444 +0 0.0434 +1 0.7501 +0 0.4564 +1 0.7942 +0 0.1481 +0 0.2589 +0 0.0995 +0 0.5470 +0 0.0548 +0 0.1693 +0 0.0982 +0 0.0555 +0 0.3428 +0 0.0803 +0 0.0901 +0 0.1742 +0 0.3155 +0 0.0720 +0 0.1210 +0 0.1179 +0 0.1905 +0 0.1104 +0 0.1783 +0 0.1605 +0 0.1056 +0 0.2256 +0 0.3187 +0 0.2269 +0 0.0909 +0 0.1374 +0 0.1074 +0 0.1643 +0 0.1289 +0 0.0765 +0 0.1840 +0 0.1217 +0 0.0774 +0 0.0475 +0 0.5971 +0 0.1533 +0 0.0395 +0 0.0524 +1 0.8450 +0 0.0896 +0 0.1190 +0 0.1449 +0 0.0896 +0 0.1580 +0 0.0464 +0 0.1483 +0 0.1401 +0 0.0515 +0 0.1216 +0 0.0782 +0 0.1509 +0 0.0851 +0 0.1280 +0 0.1609 +0 0.0561 +0 0.1005 +0 0.1698 +0 0.2689 +0 0.0961 +0 0.2192 +0 0.5613 +0 0.1136 +0 0.0972 +0 0.0375 +0 0.0790 +0 0.2108 +0 0.2317 +0 0.0715 +0 0.3733 +0 0.0829 +0 0.0735 +0 0.0787 +0 0.1232 +0 0.0760 +0 0.0715 +0 0.1815 +0 0.3120 +0 0.3407 +0 0.0738 +0 0.2921 +0 0.2202 +0 0.1049 +0 0.7156 +0 0.0807 +0 0.4658 +0 0.2040 +0 0.0561 +0 0.1390 +0 0.1738 +0 0.1666 +0 0.1634 +0 0.0974 +0 0.0459 +0 0.1082 +0 0.1168 +0 0.1359 +0 0.1387 +0 0.0756 +1 0.8505 +0 0.0844 +0 0.0829 +0 0.0598 +0 0.6403 +0 0.1878 +0 0.1201 +0 0.3630 +0 0.0630 +0 0.0798 +0 0.1316 +0 0.1272 +0 0.1367 +0 0.0763 +0 0.1524 +0 0.0661 +0 0.3975 +0 0.1381 +0 0.0832 +0 0.4045 +0 0.1872 +0 0.1178 +0 0.1039 +0 0.2094 +0 0.1177 +1 0.8349 +0 0.0582 +0 0.1358 +0 0.1001 +0 0.0789 +0 0.0736 +0 0.5645 +0 0.0644 +0 0.1232 +0 0.0683 +0 0.0900 +0 0.1226 +0 0.1701 +0 0.0775 +0 0.0439 +0 0.0673 +0 0.4038 +0 0.1750 +0 0.0576 +0 0.2690 +0 0.0579 +0 0.1881 +0 0.1269 +0 0.1843 +0 0.6643 +0 0.0622 +0 0.2194 +0 0.0536 +0 0.1006 +0 0.0951 +0 0.0916 +0 0.1557 +0 0.0990 +0 0.2674 +0 0.1840 +0 0.1657 +0 0.1923 +0 0.0867 +0 0.0937 +0 0.1002 +0 0.2288 +0 0.0715 +0 0.0712 +0 0.3238 +0 0.1325 +0 0.0834 +0 0.0733 +0 0.0672 +0 0.1809 +0 0.0441 +0 0.1053 +0 0.2767 +0 0.0482 +0 0.1014 +0 0.0925 +0 0.1891 +0 0.1043 +0 0.2340 +0 0.1130 +0 0.1801 +1 0.8610 +0 0.1432 +0 0.0858 +0 0.0659 +0 0.0474 +0 0.1049 +0 0.0517 +0 0.1369 +0 0.0504 +0 0.1520 +0 0.0730 +0 0.1301 +0 0.0775 +0 0.0817 +0 0.1302 +0 0.0647 +0 0.0718 +0 0.0655 +0 0.0672 +0 0.0447 +0 0.1229 +0 0.0877 +0 0.1393 +0 0.0588 +0 0.0987 +0 0.0968 +0 0.0710 +0 0.1915 +0 0.0682 +0 0.0852 +0 0.0537 +0 0.0558 +0 0.0705 +0 0.1934 +0 0.2902 +0 0.4195 +0 0.1944 +0 0.0470 +0 0.1022 +0 0.0442 +0 0.1884 +0 0.1639 +0 0.2511 +0 0.1726 +0 0.0910 +0 0.4520 +0 0.1928 +0 0.0765 +0 0.0626 +0 0.1382 +0 0.1815 +0 0.4148 +0 0.0961 +0 0.0675 +0 0.0851 +0 0.1431 +0 0.1021 +0 0.4067 +0 0.0680 +0 0.1548 +0 0.0933 +0 0.0710 +0 0.0543 +0 0.0769 +0 0.1039 +0 0.0571 +0 0.0458 +0 0.0520 +0 0.2001 +0 0.0509 +0 0.1048 +0 0.0674 +0 0.0784 +0 0.0695 +0 0.0988 +0 0.1040 +0 0.0826 +0 0.0976 +0 0.1528 +0 0.1062 +0 0.1329 +0 0.1519 +0 0.0467 +0 0.0515 +0 0.1603 +0 0.0749 +0 0.0843 +0 0.2090 +0 0.0847 +0 0.0947 +0 0.0987 +0 0.1032 +0 0.0451 +0 0.1101 +0 0.1598 +1 0.8150 +0 0.0558 +0 0.1194 +0 0.1513 +0 0.0598 +0 0.1129 +0 0.1316 +0 0.1338 +0 0.0694 +0 0.2059 +0 0.1030 +0 0.0676 +0 0.1313 +0 0.0998 +0 0.0778 +0 0.0585 +0 0.0526 +0 0.1222 +0 0.0572 +0 0.0858 +0 0.1987 +0 0.2597 +0 0.5961 +0 0.7155 +1 0.8197 +0 0.2033 +0 0.0651 +0 0.1807 +0 0.0361 +0 0.1287 +0 0.0671 +0 0.2310 +0 0.3399 +0 0.2046 +0 0.3754 +0 0.2371 +0 0.2133 +0 0.0801 +0 0.0435 +0 0.1756 +0 0.0892 +0 0.0371 +0 0.1878 +0 0.0665 +0 0.2612 +0 0.1077 +0 0.1582 +0 0.1402 +0 0.1607 +0 0.1193 +0 0.1879 +0 0.1757 +0 0.0966 +0 0.0899 +0 0.6386 +0 0.0568 +0 0.0597 +0 0.0999 +0 0.0961 +0 0.0618 +0 0.0818 +0 0.0597 +0 0.0857 +0 0.0733 +0 0.2141 +0 0.3002 +0 0.1223 +1 0.7818 +0 0.3312 +0 0.0602 +0 0.0535 +0 0.1158 +0 0.2450 +0 0.0759 +0 0.0571 +0 0.1029 +0 0.1690 +0 0.0990 +0 0.0804 +0 0.0711 +0 0.1432 +1 0.8242 +0 0.0870 +0 0.0908 +0 0.0717 +0 0.2488 +0 0.0986 +0 0.1652 +0 0.1307 +0 0.2639 +0 0.0821 +0 0.0491 +0 0.1638 +0 0.0854 +0 0.0525 +0 0.0652 +0 0.0363 +0 0.0873 +0 0.5133 +0 0.0704 +0 0.1437 +0 0.1546 +0 0.0775 +0 0.0992 +0 0.2013 +0 0.0873 +0 0.1371 +0 0.0419 +0 0.2103 +0 0.2595 +0 0.1600 +0 0.1557 +0 0.0607 +0 0.0575 +0 0.0612 +0 0.1208 +0 0.0481 +0 0.0813 +0 0.1165 +0 0.1058 +0 0.0762 +0 0.2109 +0 0.0794 +0 0.0426 +0 0.0452 +0 0.0905 +0 0.2440 +1 0.7913 +0 0.0622 +0 0.1049 +0 0.1598 +0 0.0623 +0 0.1199 +0 0.1618 +0 0.1750 +0 0.3799 +0 0.0894 +0 0.0604 +0 0.1806 +0 0.1794 +0 0.1137 +0 0.2439 +0 0.0329 +0 0.2125 +0 0.1384 +0 0.1041 +0 0.1357 +0 0.1585 +0 0.4693 +0 0.1233 +0 0.4859 +0 0.1707 +0 0.2133 +0 0.0685 +0 0.1615 +0 0.0815 +0 0.0977 +0 0.0728 +0 0.0410 +0 0.1114 +0 0.0682 +0 0.1741 +0 0.1074 +0 0.1502 +0 0.1173 +0 0.1508 +0 0.0551 +0 0.1096 +0 0.0946 +0 0.0662 +0 0.1127 +0 0.3720 +0 0.0805 +0 0.0553 +0 0.5352 +0 0.5026 +0 0.0653 +0 0.0732 +0 0.0468 +0 0.0973 +0 0.0680 +0 0.1361 +0 0.1157 +0 0.2463 +0 0.2544 +0 0.0513 +0 0.1219 +0 0.7262 +0 0.0794 +0 0.0550 +0 0.1983 +0 0.1970 +0 0.0558 +0 0.1156 +0 0.0531 +0 0.0505 +0 0.0643 +0 0.2698 +0 0.0937 +0 0.1403 +0 0.2820 +0 0.0928 +0 0.0964 +0 0.1205 +0 0.1499 +0 0.0509 +0 0.2969 +0 0.0805 +0 0.1492 +0 0.0941 +0 0.0899 +0 0.0754 +0 0.1500 +0 0.1257 +0 0.1499 +0 0.0990 +0 0.1655 +0 0.0652 +0 0.0963 +0 0.0490 +0 0.0564 +0 0.0848 +0 0.0915 +0 0.0922 +0 0.1063 +0 0.0430 +0 0.1492 +0 0.1269 +0 0.1017 +0 0.1403 +0 0.3696 +0 0.1157 +0 0.1476 +0 0.1876 +0 0.1650 +0 0.3749 +0 0.1464 +0 0.2000 +0 0.1511 +0 0.1058 +0 0.0808 +0 0.1034 +0 0.0894 +0 0.7157 +0 0.2229 +0 0.0793 +0 0.1226 +0 0.1087 +0 0.1669 +0 0.0591 +0 0.1037 +0 0.1284 +0 0.0815 +0 0.0576 +0 0.1092 +0 0.0878 +0 0.0880 +0 0.1098 +0 0.0883 +0 0.0731 +0 0.3179 +0 0.0630 +0 0.2584 +0 0.0583 +0 0.0452 +0 0.1098 +0 0.2051 +0 0.1037 +0 0.0575 +0 0.1353 +0 0.1861 +0 0.1101 +0 0.3517 +0 0.5230 +1 0.8898 +0 0.1062 +0 0.1118 +0 0.2277 +0 0.0736 +0 0.1212 +0 0.2862 +0 0.1619 +0 0.0846 +0 0.0621 +0 0.0647 +0 0.0511 +0 0.0873 +0 0.2482 +0 0.0913 +0 0.1706 +0 0.2209 +0 0.2472 +0 0.2905 +0 0.1545 +0 0.0748 +0 0.0576 +0 0.1063 +0 0.1045 +0 0.0911 +0 0.2934 +0 0.4079 +0 0.0980 +0 0.1394 +1 0.8245 +0 0.1235 +0 0.0790 +0 0.0954 +0 0.0378 +0 0.2431 +0 0.0656 +0 0.0729 +0 0.3402 +0 0.1506 +0 0.0570 +0 0.1346 +0 0.0915 +0 0.1103 +0 0.2973 +0 0.0632 +0 0.4491 +0 0.2337 +0 0.0686 +0 0.0911 +0 0.1543 +0 0.1547 +0 0.0479 +0 0.0695 +0 0.0838 +0 0.1007 +0 0.0661 +0 0.0960 +0 0.0910 +0 0.0770 +0 0.6365 +0 0.1675 +0 0.0931 +0 0.0468 +0 0.1037 +0 0.1155 +0 0.0367 +0 0.0794 +0 0.0918 +0 0.1694 +0 0.0693 +0 0.1685 +0 0.0624 +0 0.3333 +0 0.2875 +0 0.2242 +0 0.0481 +0 0.0827 +0 0.1113 +0 0.1029 +0 0.0990 +0 0.0662 +0 0.0521 +0 0.2634 +0 0.0548 +0 0.0377 +0 0.1623 +0 0.0436 +0 0.0499 +0 0.0631 +0 0.0757 +0 0.4947 +0 0.0386 +0 0.0833 +0 0.1690 +0 0.2435 +0 0.1120 +0 0.1304 +0 0.1590 +0 0.1924 +0 0.0817 +0 0.1056 +0 0.0719 +0 0.1336 +0 0.0335 +0 0.1296 +0 0.1339 +0 0.0471 +0 0.0485 +0 0.1195 +0 0.0728 +0 0.0762 +0 0.0819 +0 0.1152 +0 0.1293 +0 0.1454 +0 0.1094 +0 0.1915 +0 0.0738 +0 0.0975 +0 0.1901 +0 0.0422 +0 0.1006 +0 0.1398 +0 0.0962 +0 0.0455 +1 0.8829 +0 0.1611 +0 0.0917 +0 0.4779 +0 0.0377 +0 0.0666 +0 0.1604 +0 0.0808 +0 0.2124 +0 0.0776 +0 0.1631 +0 0.2536 +0 0.0723 +0 0.1328 +0 0.2895 +0 0.0572 +0 0.1453 +0 0.0840 +0 0.4786 +0 0.0384 +0 0.0394 +0 0.1603 +0 0.2339 +0 0.2240 +0 0.1260 +0 0.0541 +0 0.2448 +0 0.1638 +0 0.0665 +0 0.0839 +0 0.5481 +0 0.1483 +0 0.0780 +0 0.0311 +0 0.1361 +0 0.6524 +0 0.1363 +0 0.0539 +0 0.1009 +0 0.2017 +0 0.0915 +0 0.0474 +0 0.0607 +0 0.3271 +0 0.1491 +0 0.0975 +0 0.0987 +0 0.1306 +0 0.0789 +0 0.1456 +0 0.0366 +0 0.0452 +0 0.1814 +0 0.0743 +0 0.5985 +0 0.1197 +0 0.1424 +0 0.0380 +0 0.0413 +0 0.0717 +0 0.2383 +0 0.1366 +0 0.0607 +0 0.1249 +0 0.1158 +0 0.0715 +0 0.0793 +0 0.1515 +0 0.1106 +0 0.0987 +0 0.1334 +0 0.2360 +0 0.0789 +0 0.1230 +0 0.3036 +0 0.2047 +0 0.1026 +0 0.0774 +0 0.0696 +0 0.1707 +0 0.2028 +0 0.1298 +0 0.0459 +0 0.0894 +0 0.0719 +0 0.1946 +0 0.3017 +0 0.1238 +0 0.1272 +0 0.1059 +0 0.1313 +0 0.1449 +0 0.1072 +0 0.0731 +0 0.2287 +0 0.2769 +0 0.1336 +0 0.0783 +0 0.1505 +0 0.3430 +0 0.2304 +0 0.0950 +0 0.0914 +0 0.1076 +0 0.2464 +0 0.0677 +0 0.1530 +0 0.1772 +0 0.0725 +0 0.2606 +0 0.0591 +0 0.1476 +0 0.0834 +0 0.2027 +0 0.3840 +0 0.0728 +0 0.0586 +0 0.1617 +0 0.2516 +0 0.1152 +0 0.0843 +0 0.0538 +0 0.7044 +0 0.0585 +0 0.0378 +0 0.0848 +0 0.0731 +0 0.0868 +0 0.1326 +0 0.1219 +0 0.1502 +0 0.1035 +0 0.1357 +0 0.7238 +0 0.1158 +0 0.0808 +0 0.0825 +0 0.3023 +0 0.0994 +0 0.1472 +0 0.2268 +0 0.2634 +0 0.1585 +0 0.1639 +0 0.5347 +0 0.0923 +0 0.0940 +0 0.0348 +0 0.1483 +0 0.1045 +0 0.0673 +0 0.1266 +0 0.0756 +0 0.1873 +0 0.1558 +0 0.1258 +0 0.0389 +0 0.1955 +0 0.0913 +0 0.0735 +0 0.1089 +0 0.0454 +0 0.0455 +0 0.6940 +0 0.1093 +0 0.2235 +0 0.0416 +0 0.5808 +0 0.1471 +0 0.1059 +0 0.6291 +0 0.1472 +0 0.1785 +0 0.1097 +0 0.0666 +0 0.1477 +1 0.7696 +0 0.0560 +0 0.2168 +0 0.4952 +1 0.8129 +0 0.0923 +0 0.1759 +1 0.8188 +0 0.0775 +0 0.1015 +0 0.1768 +0 0.1742 +0 0.1047 +0 0.0904 +0 0.1560 +0 0.1702 +0 0.0788 +0 0.0509 +0 0.0579 +0 0.1680 +0 0.0882 +0 0.0775 +0 0.1595 +0 0.0557 +0 0.0489 +0 0.0828 +0 0.6574 +0 0.1071 +0 0.0916 +0 0.3975 +0 0.0756 +0 0.3547 +0 0.1620 +0 0.0797 +0 0.0651 +0 0.0742 +0 0.2977 +0 0.0869 +0 0.1820 +0 0.1271 +0 0.1476 +1 0.8015 +0 0.0972 +0 0.7208 +0 0.0473 +0 0.0572 +0 0.0522 +0 0.0448 +0 0.1094 +0 0.1359 +0 0.0734 +0 0.2465 +0 0.1466 +0 0.0378 +0 0.2292 +0 0.2093 +0 0.0634 +0 0.1842 +0 0.0716 +0 0.1465 +0 0.4083 +0 0.0793 +0 0.0841 +0 0.1022 +0 0.1691 +0 0.0798 +0 0.0511 +0 0.2259 +0 0.0871 +0 0.0873 +0 0.1271 +0 0.0566 +0 0.0936 +0 0.1014 +0 0.1072 +0 0.0722 +0 0.1257 +0 0.1124 +0 0.1212 +0 0.1236 +0 0.1208 +0 0.1635 +0 0.2625 +0 0.1202 +0 0.0925 +0 0.0549 +0 0.2013 +0 0.0800 +1 0.7976 +0 0.1259 +0 0.0791 +0 0.2480 +0 0.0844 +0 0.0989 +0 0.2675 +0 0.0706 +1 0.7667 +0 0.0886 +0 0.3442 +0 0.1292 +0 0.0888 +0 0.0763 +0 0.0884 +0 0.1887 +0 0.0555 +0 0.0744 +0 0.0832 +0 0.6206 +0 0.0842 +0 0.0725 +0 0.3324 +0 0.1213 +0 0.5185 +0 0.1446 +0 0.2584 +0 0.0421 +0 0.1420 +1 0.7780 +0 0.0797 +0 0.1108 +0 0.4467 +0 0.0689 +0 0.0514 +0 0.2340 +0 0.1333 +0 0.3322 +0 0.1817 +0 0.0778 +0 0.0962 +0 0.4275 +0 0.1239 +0 0.0763 +0 0.1080 +0 0.2219 +0 0.1384 +0 0.2523 +0 0.1861 +0 0.0585 +0 0.2349 +0 0.0443 +0 0.0667 +0 0.0586 +0 0.1281 +0 0.1307 +0 0.1856 +0 0.2455 +0 0.0811 +0 0.0889 +0 0.1955 +0 0.1894 +0 0.1772 +0 0.1067 +0 0.2446 +0 0.2050 +0 0.1440 +0 0.0848 +0 0.3151 +0 0.1333 +0 0.1562 +0 0.0861 +0 0.0586 +1 0.8485 +0 0.1939 +0 0.6428 +1 0.8255 +0 0.0549 +1 0.7976 +0 0.0826 +0 0.0985 +0 0.0457 +0 0.1030 +0 0.0706 +0 0.0519 +0 0.0435 +0 0.0873 +0 0.1532 +0 0.0867 +0 0.1178 +0 0.0981 +0 0.0998 +0 0.1421 +0 0.0628 +0 0.0608 +0 0.0731 +0 0.0708 +0 0.0609 +0 0.0939 +0 0.6907 +0 0.1075 +0 0.1132 +0 0.0730 +0 0.1401 +0 0.1079 +0 0.1863 +0 0.0387 +0 0.1438 +0 0.0870 +0 0.5699 +0 0.0576 +0 0.2637 +0 0.1967 +0 0.1574 +0 0.1518 +0 0.1015 +1 0.7784 +0 0.0920 +0 0.0978 +0 0.0907 +0 0.0522 +0 0.2476 +0 0.1183 +0 0.0633 +0 0.0934 +0 0.0754 +0 0.0656 +0 0.0590 +0 0.1889 +0 0.1164 +0 0.0395 +0 0.0720 +0 0.1190 +0 0.1182 +0 0.0984 +0 0.2188 +0 0.0553 +0 0.6777 +0 0.0844 +0 0.2169 +0 0.0845 +0 0.1702 +0 0.1557 +0 0.1853 +0 0.0575 +0 0.1173 +0 0.1559 +0 0.0383 +0 0.0475 +0 0.2427 +0 0.0457 +0 0.2142 +0 0.1065 +0 0.0950 +0 0.1800 +0 0.1256 +0 0.0851 +0 0.0774 +0 0.0835 +0 0.4134 +0 0.0554 +0 0.0575 +0 0.1167 +0 0.1378 +0 0.0767 +0 0.3581 +0 0.0960 +0 0.0874 +0 0.0635 +0 0.3036 +0 0.1115 +0 0.1284 +0 0.0838 +0 0.0620 +0 0.2753 +0 0.1604 +0 0.1049 +0 0.1244 +0 0.2434 +0 0.0866 +0 0.0918 +0 0.0964 +0 0.0389 +0 0.1711 +0 0.0796 +0 0.1095 +0 0.0905 +0 0.2249 +0 0.2299 +0 0.1262 +0 0.1537 +0 0.0753 +0 0.0869 +0 0.0731 +0 0.0753 +0 0.0536 +0 0.0981 +0 0.0840 +0 0.0690 +0 0.0951 +0 0.1299 +0 0.1015 +0 0.0868 +0 0.1645 +0 0.0565 +0 0.1470 +0 0.0688 +0 0.4343 +0 0.1884 +0 0.3038 +0 0.4675 +0 0.0580 +0 0.2887 +0 0.2102 +1 0.8661 +0 0.2613 +0 0.0439 +0 0.0355 +0 0.0922 +0 0.0913 +0 0.0646 +0 0.1743 +0 0.2329 +0 0.0562 +0 0.1750 +0 0.1640 +0 0.0584 +0 0.2196 +0 0.1405 +0 0.0553 +0 0.0494 +0 0.1620 +0 0.0855 +0 0.0378 +0 0.1203 +0 0.0740 +0 0.1133 +0 0.4426 +0 0.5226 +0 0.0640 +0 0.0836 +0 0.6193 +0 0.0771 +0 0.0914 +0 0.1642 +0 0.1050 +0 0.0610 +0 0.1560 +0 0.1338 +0 0.0635 +0 0.0550 +0 0.1594 +0 0.2432 +0 0.0753 +0 0.0637 +0 0.1635 +0 0.3071 +0 0.1365 +0 0.1659 +0 0.0465 +0 0.0633 +0 0.1622 +0 0.0566 +0 0.1286 +0 0.0442 +0 0.0337 +0 0.2082 +0 0.0565 +0 0.0654 +0 0.0955 +0 0.0590 +0 0.1089 +0 0.0830 +0 0.0595 +0 0.0603 +0 0.0562 +0 0.2380 +0 0.0934 +0 0.2044 +0 0.0427 +0 0.0857 +0 0.0977 +0 0.6448 +0 0.6899 +0 0.0870 +0 0.2371 +0 0.1344 +0 0.1628 +0 0.1760 +0 0.0536 +0 0.0818 +1 0.7674 +0 0.0768 +0 0.0955 +0 0.0932 +0 0.1128 +0 0.0924 +0 0.1669 +0 0.0981 +0 0.0875 +0 0.0518 +0 0.0616 +0 0.0786 +0 0.0637 +0 0.0629 +0 0.0775 +0 0.1807 +0 0.0421 +0 0.0706 +0 0.0641 +0 0.0550 +0 0.2198 +0 0.1220 +0 0.0430 +0 0.1521 +0 0.0508 +0 0.6289 +0 0.1066 +0 0.2282 +0 0.0524 +0 0.1073 +0 0.2769 +0 0.0946 +0 0.0777 +0 0.1487 +0 0.0940 +0 0.3532 +0 0.1462 +0 0.0549 +0 0.2279 +0 0.0714 +0 0.3008 +0 0.0716 +0 0.0768 +0 0.2992 +0 0.1264 +0 0.3435 +0 0.0768 +0 0.0832 +0 0.0519 +0 0.0931 +0 0.0640 +0 0.2269 +0 0.1570 +0 0.0562 +0 0.0644 +0 0.0418 +0 0.2629 +0 0.2180 +0 0.1347 +0 0.0825 +0 0.1337 +0 0.0898 +0 0.1658 +0 0.0827 +0 0.0847 +0 0.3457 +0 0.0429 +0 0.0797 +0 0.1199 +0 0.0556 +0 0.0503 +0 0.0689 +0 0.0342 +0 0.1195 +0 0.1658 +0 0.4636 +0 0.1042 +0 0.1283 +0 0.2343 +1 0.8363 +0 0.1564 +1 0.7869 +0 0.0884 +0 0.0900 +0 0.0810 +0 0.1177 +0 0.0861 +0 0.3115 +0 0.1738 +0 0.0849 +0 0.1262 +0 0.0772 +0 0.0998 +0 0.4901 +0 0.3845 +0 0.1049 +0 0.0801 +0 0.0790 +0 0.0410 +0 0.0812 +0 0.0634 +0 0.1025 +0 0.0728 +0 0.0807 +0 0.1757 +0 0.1156 +0 0.0626 +0 0.1712 +0 0.4483 +0 0.0421 +0 0.0730 +0 0.1263 +0 0.0534 +0 0.0652 +0 0.1198 +0 0.0814 +0 0.0438 +0 0.0948 +0 0.2849 +0 0.1356 +0 0.0424 +0 0.0725 +0 0.1160 +0 0.0905 +0 0.2075 +0 0.1855 +0 0.0452 +0 0.1843 +0 0.1071 +0 0.1073 +0 0.0759 +0 0.1286 +0 0.1172 +0 0.0736 +0 0.2428 +0 0.1765 +0 0.0825 +0 0.1006 +1 0.7793 +0 0.0403 +0 0.0678 +0 0.4686 +1 0.7646 +0 0.0337 +0 0.0632 +0 0.0817 +0 0.0762 +0 0.0805 +0 0.1100 +0 0.2540 +0 0.0731 +0 0.3023 +0 0.1656 +0 0.0563 +1 0.7718 +0 0.1134 +0 0.0945 +0 0.1436 +0 0.1564 +0 0.0714 +0 0.0858 +0 0.1121 +0 0.2278 +0 0.0563 +0 0.7374 +0 0.2036 +0 0.0702 +0 0.2542 +0 0.0777 +0 0.0883 +0 0.2907 +0 0.0709 +0 0.0817 +0 0.2148 +0 0.0415 +0 0.3337 +0 0.1909 +0 0.0890 +0 0.1446 +0 0.4380 +0 0.0590 +0 0.0877 +0 0.0842 +0 0.1091 +0 0.0452 +1 0.6939 +0 0.1237 +0 0.0714 +0 0.4342 +0 0.2423 +0 0.2142 +0 0.0956 +0 0.1629 +0 0.1348 +0 0.1316 +0 0.0885 +0 0.0503 +0 0.0579 +0 0.1047 +0 0.0534 +0 0.2149 +0 0.0764 +0 0.1632 +0 0.0636 +0 0.1337 +0 0.2105 +0 0.0679 +0 0.0350 +0 0.0744 +0 0.1847 +0 0.2319 +0 0.0733 +0 0.1157 +0 0.0835 +0 0.0602 +0 0.1705 +0 0.2464 +0 0.7094 +0 0.0649 +0 0.0950 +0 0.0564 +0 0.1559 +0 0.1089 +0 0.0648 +0 0.1834 +0 0.0504 +0 0.1219 +1 0.7537 +0 0.1269 +0 0.0980 +0 0.0975 +0 0.0545 +0 0.1868 +0 0.0743 +0 0.0828 +0 0.2869 +0 0.0830 +0 0.1094 +0 0.1382 +0 0.0938 +0 0.2601 +0 0.0473 +0 0.0639 +0 0.0594 +0 0.0743 +0 0.1368 +0 0.0661 +0 0.0402 +0 0.0784 +0 0.1720 +0 0.0873 +0 0.0685 +0 0.1996 +0 0.0980 +0 0.1547 +0 0.0359 +0 0.1373 +0 0.1117 +0 0.1038 +0 0.1515 +0 0.1087 +0 0.1143 +0 0.1693 +0 0.1218 +0 0.1493 +0 0.0633 +0 0.0706 +0 0.0440 +0 0.1916 +0 0.5771 +0 0.1279 +0 0.0761 +0 0.0910 +0 0.1539 +0 0.0686 +0 0.0826 +0 0.1178 +0 0.0498 +0 0.1305 +0 0.0630 +0 0.0452 +0 0.0903 +0 0.0580 +0 0.0844 +0 0.1616 +0 0.0593 +0 0.1260 +0 0.4323 +0 0.7150 +0 0.0634 +0 0.0529 +0 0.0912 +0 0.1200 +0 0.0467 +0 0.1077 +0 0.0472 +0 0.0573 +0 0.0918 +0 0.1846 +0 0.0903 +0 0.0693 +0 0.0555 +0 0.0566 +0 0.1027 +0 0.0701 +0 0.3088 +0 0.0895 +0 0.0861 +0 0.0526 +0 0.0926 +0 0.1097 +0 0.1700 +0 0.0917 +0 0.0850 +0 0.5119 +0 0.0448 +0 0.0660 +0 0.0590 +1 0.2149 +0 0.0754 +0 0.0564 +0 0.0782 +0 0.0794 +0 0.1708 +0 0.0379 +0 0.1134 +0 0.0763 +0 0.0446 +0 0.1472 +0 0.2345 +0 0.0703 +0 0.0723 +0 0.1943 +0 0.0619 +0 0.1292 +0 0.3127 +0 0.1584 +0 0.6693 +0 0.2946 +0 0.1297 +0 0.0421 +0 0.1965 +0 0.0643 +0 0.0977 +0 0.2746 +0 0.1133 +0 0.4039 +0 0.0567 +0 0.1261 +0 0.1110 +0 0.0567 +0 0.0656 +0 0.0866 +0 0.0399 +0 0.1127 +0 0.0781 +0 0.1858 +0 0.0947 +0 0.2668 +0 0.0681 +0 0.1213 +0 0.1762 +0 0.1745 +0 0.0712 +0 0.0963 +0 0.1169 +0 0.1184 +0 0.1949 +0 0.2523 +0 0.1559 +0 0.1336 +0 0.0387 +0 0.0594 +0 0.2476 +0 0.0423 +0 0.3959 +1 0.7653 +0 0.2610 +0 0.0991 +0 0.1566 +0 0.0749 +1 0.8576 +0 0.1343 +0 0.5646 +0 0.1759 +0 0.1103 +0 0.0881 +0 0.0629 +0 0.0853 +0 0.0520 +0 0.0534 +0 0.0595 +0 0.1978 +0 0.1790 +0 0.1141 +0 0.0912 +0 0.0528 +0 0.0831 +0 0.0847 +0 0.1242 +0 0.3278 +0 0.5406 +0 0.0602 +0 0.1575 +0 0.0854 +0 0.0698 +0 0.0883 +0 0.1531 +0 0.3859 +0 0.1421 +0 0.0537 +0 0.1180 +0 0.1072 +0 0.4830 +0 0.1056 +0 0.0711 +0 0.1001 +0 0.1611 +0 0.1657 +0 0.0640 +0 0.0645 +1 0.7965 +0 0.0485 +0 0.0459 +0 0.3032 +0 0.0790 +0 0.2000 +0 0.4116 +0 0.1251 +0 0.1568 +0 0.1408 +0 0.0685 +0 0.1242 +0 0.0518 +0 0.0434 +0 0.2571 +0 0.1480 +0 0.0683 +0 0.0803 +0 0.1736 +0 0.0680 +0 0.1046 +1 0.7839 +0 0.1145 +0 0.2582 +0 0.4929 +0 0.2091 +0 0.1161 +0 0.0869 +0 0.0914 +0 0.0766 +0 0.1143 +0 0.1552 +0 0.1161 +0 0.1826 +0 0.0807 +0 0.1570 +0 0.0745 +0 0.1482 +0 0.0614 +0 0.0390 +0 0.1985 +0 0.1107 +1 0.7933 +0 0.0425 +0 0.5499 +0 0.1569 +0 0.1461 +0 0.0853 +0 0.1892 +0 0.0570 +0 0.0382 +0 0.1316 +0 0.1148 +0 0.0722 +0 0.0628 +0 0.1212 +0 0.0608 +0 0.0907 +0 0.0652 +0 0.0358 +0 0.0850 +0 0.1778 +0 0.0915 +0 0.0836 +0 0.1483 +0 0.1564 +0 0.0845 +0 0.0956 +0 0.2585 +0 0.0671 +0 0.0448 +0 0.1996 +0 0.1614 +0 0.2308 +0 0.0561 +0 0.1083 +0 0.0504 +0 0.1203 +0 0.1036 +0 0.1594 +0 0.0400 +0 0.5289 +0 0.1039 +0 0.5482 +0 0.0486 +0 0.1675 +0 0.0509 +0 0.1111 +0 0.1096 +0 0.0548 +0 0.1020 +0 0.1174 +0 0.2171 +0 0.0686 +0 0.5509 +0 0.1526 +0 0.2287 +0 0.0853 +0 0.2116 +0 0.1008 +0 0.0308 +0 0.0717 +0 0.1032 +0 0.0396 +0 0.4478 +0 0.0789 +0 0.1026 +0 0.1309 +0 0.0281 +0 0.1418 +0 0.2163 +0 0.0971 +0 0.1987 +0 0.0847 +0 0.3166 +0 0.0831 +0 0.0807 +0 0.2987 +0 0.1498 +0 0.0853 +0 0.2097 +0 0.2889 +0 0.1049 +0 0.0461 +0 0.1169 +0 0.3930 +0 0.0891 +0 0.0790 +0 0.0936 +0 0.1172 +0 0.0612 +0 0.1602 +0 0.0714 +0 0.1194 +0 0.1271 +0 0.0786 +0 0.0997 +0 0.0912 +0 0.0614 +0 0.0714 +0 0.0615 +0 0.0579 +0 0.0906 +0 0.0557 +0 0.0760 +0 0.0770 +0 0.7255 +0 0.4610 +0 0.0955 +0 0.1259 +0 0.2071 +0 0.0760 +0 0.1267 +0 0.1173 +0 0.1137 +0 0.1258 +0 0.0539 +0 0.1951 +0 0.1478 +0 0.0892 +0 0.4717 +0 0.2506 +0 0.1069 +0 0.0571 +0 0.0618 +0 0.1973 +0 0.0446 +0 0.0814 +0 0.0811 +0 0.1014 +0 0.1326 +0 0.1024 +0 0.4996 +0 0.0593 +0 0.0972 +0 0.1843 +0 0.0520 +0 0.3011 +0 0.6613 +1 0.8176 +0 0.0366 +0 0.1076 +0 0.0525 +0 0.0930 +0 0.0650 +0 0.1073 +0 0.0572 +0 0.1615 +0 0.0873 +0 0.1156 +0 0.1322 +0 0.0858 +0 0.0632 +0 0.1056 +0 0.0633 +0 0.1741 +0 0.0968 +0 0.0723 +0 0.1020 +0 0.0876 +0 0.0638 +0 0.0708 +0 0.1074 +0 0.0611 +0 0.0542 +0 0.1951 +0 0.1358 +0 0.3866 +0 0.0896 +0 0.0721 +0 0.1273 +0 0.2144 +0 0.1028 +0 0.0905 +0 0.0334 +0 0.3539 +0 0.0928 +0 0.0642 +0 0.1878 +0 0.0528 +0 0.0801 +0 0.1950 +0 0.0449 +0 0.0882 +1 0.8444 +0 0.0683 +0 0.0739 +0 0.1249 +0 0.2348 +0 0.0881 +0 0.1765 +0 0.2003 +0 0.1173 +0 0.0934 +0 0.1714 +0 0.0678 +0 0.0829 +0 0.1636 +0 0.1193 +0 0.0636 +0 0.2281 +0 0.1560 +0 0.0553 +0 0.2889 +0 0.0553 +0 0.2105 +0 0.2741 +0 0.0857 +0 0.1037 +0 0.0703 +0 0.1062 +0 0.4146 +0 0.0533 +0 0.4261 +0 0.0449 +0 0.1253 +0 0.0920 +0 0.0408 +0 0.0712 +0 0.2241 +0 0.2697 +0 0.0716 +0 0.1329 +0 0.2298 +0 0.3747 +0 0.0715 +0 0.1001 +0 0.1644 +0 0.0541 +0 0.0594 +0 0.1390 +0 0.1743 +0 0.4998 +0 0.2133 +0 0.0738 +0 0.0781 +0 0.0784 +0 0.2017 +0 0.1585 +0 0.2264 +0 0.0515 +0 0.0517 +0 0.0770 +0 0.0609 +0 0.1857 +0 0.1593 +0 0.0870 +0 0.0747 +0 0.1121 +1 0.8346 +0 0.3543 +0 0.1092 +0 0.2836 +0 0.0541 +0 0.0844 +0 0.0945 +0 0.0668 +0 0.0807 +0 0.1200 +0 0.0787 +0 0.1103 +0 0.0663 +0 0.1067 +0 0.1037 +0 0.1393 +0 0.1908 +0 0.1516 +0 0.2338 +0 0.0639 +0 0.0521 +0 0.7468 +0 0.0937 +0 0.0679 +0 0.5399 +0 0.2582 +1 0.7722 +0 0.1202 +0 0.0739 +0 0.0957 +0 0.2465 +0 0.0551 +0 0.0611 +0 0.0897 +0 0.2347 +0 0.0831 +0 0.1926 +0 0.1571 +0 0.1084 +0 0.0573 +0 0.1073 +0 0.0661 +0 0.1743 +0 0.5790 +0 0.1929 +0 0.0718 +0 0.1632 +0 0.0549 +0 0.1086 +0 0.1452 +0 0.1169 +0 0.0968 +0 0.1007 +0 0.0541 +0 0.0826 +0 0.1458 +0 0.1175 +0 0.1865 +0 0.0650 +0 0.0493 +0 0.0784 +0 0.2325 +0 0.1747 +0 0.0688 +0 0.1015 +0 0.2048 +0 0.1451 +0 0.0660 +0 0.0943 +0 0.1581 +0 0.1587 +0 0.2258 +0 0.1600 +0 0.0558 +0 0.1678 +0 0.0595 +0 0.0813 +0 0.1112 +0 0.0946 +0 0.0888 +0 0.0828 +0 0.0544 +0 0.0722 +0 0.0368 +0 0.1711 +0 0.0575 +0 0.1383 +0 0.1309 +1 0.7778 +0 0.2099 +0 0.1185 +0 0.0663 +0 0.0462 +0 0.0973 +0 0.1699 +0 0.0617 +0 0.1942 +0 0.1734 +0 0.0698 +0 0.1897 +0 0.1553 +0 0.1428 +0 0.1189 +0 0.0890 +0 0.1634 +0 0.0519 +0 0.0826 +0 0.0556 +0 0.1078 +0 0.1163 +0 0.0703 +0 0.0873 +0 0.0687 +0 0.1591 +0 0.6249 +0 0.1498 +0 0.2538 +0 0.0772 +0 0.0334 +0 0.0463 +0 0.6635 +0 0.0560 +0 0.2826 +0 0.1860 +0 0.2376 +0 0.4270 +0 0.7426 +0 0.0618 +0 0.2375 +0 0.0697 +0 0.0758 +0 0.1845 +0 0.0599 +0 0.1492 +0 0.0767 +0 0.4238 +0 0.0782 +0 0.1225 +0 0.1663 +0 0.1330 +0 0.1174 +0 0.0940 +0 0.6727 +0 0.1002 +0 0.1513 +0 0.0606 +0 0.0884 +0 0.3768 +0 0.0735 +0 0.6549 +0 0.4381 +0 0.0566 +0 0.0799 +0 0.1399 +0 0.2461 +0 0.1913 +0 0.1391 +0 0.0978 +0 0.0451 +0 0.2151 +0 0.0448 +0 0.0538 +0 0.5903 +0 0.2928 +0 0.1408 +0 0.3321 +0 0.0593 +0 0.1086 +0 0.1767 +0 0.0476 +0 0.0446 +0 0.0533 +0 0.0539 +0 0.0589 +0 0.0800 +0 0.1190 +0 0.0350 +0 0.2200 +0 0.0884 +0 0.1998 +0 0.0666 +0 0.1379 +0 0.0922 +0 0.0989 +0 0.1253 +0 0.0882 +0 0.0743 +0 0.2281 +0 0.1123 +0 0.0439 +0 0.3828 +0 0.0476 +0 0.1234 +0 0.0601 +0 0.0962 +0 0.1761 +0 0.0828 +0 0.2303 +0 0.0719 +0 0.2101 +0 0.1383 +0 0.1848 +0 0.1162 +0 0.0844 +0 0.0760 +0 0.1041 +0 0.3334 +0 0.0593 +0 0.1181 +0 0.1272 +0 0.0831 +0 0.3950 +0 0.1269 +0 0.1520 +1 0.7816 +0 0.1156 +0 0.1000 +0 0.2955 +0 0.0862 +0 0.0888 +0 0.1312 +0 0.3949 +0 0.1313 +0 0.4674 +0 0.1408 +0 0.0956 +0 0.0923 +0 0.3533 +0 0.0451 +0 0.1088 +0 0.0743 +0 0.0904 +0 0.0711 +0 0.3114 +0 0.2520 +0 0.1513 +0 0.2922 +0 0.1378 +0 0.1353 +0 0.0692 +0 0.0497 +0 0.2867 +0 0.2419 +0 0.1092 +0 0.1921 +0 0.1065 +0 0.1572 +0 0.0529 +0 0.1024 +0 0.2211 +0 0.1070 +0 0.1499 +0 0.1172 +0 0.0884 +0 0.1988 +0 0.1457 +0 0.2451 +0 0.1435 +0 0.0872 +0 0.0939 +0 0.0699 +0 0.2240 +0 0.0524 +0 0.0413 +0 0.1554 +0 0.1289 +0 0.1300 +0 0.0982 +0 0.1320 +0 0.0830 +0 0.1257 +0 0.2125 +0 0.0487 +0 0.0398 +0 0.5784 +0 0.0561 +0 0.0871 +0 0.3805 +0 0.1176 +0 0.7402 +0 0.2108 +0 0.0514 +0 0.0699 +0 0.0304 +0 0.1218 +0 0.3658 +0 0.2076 +0 0.1677 +0 0.0739 +0 0.1139 +0 0.1410 +0 0.0736 +0 0.1702 +0 0.0303 +0 0.0496 +0 0.0564 +0 0.1690 +0 0.1216 +0 0.1367 +0 0.1110 +0 0.1172 +0 0.2178 +0 0.1306 +0 0.0380 +0 0.0827 +0 0.0608 +0 0.0724 +0 0.0909 +0 0.2428 +0 0.1241 +0 0.3678 +0 0.0634 +0 0.1447 +0 0.1558 +0 0.0606 +0 0.0393 +0 0.1258 +0 0.0694 +0 0.1601 +0 0.1029 +0 0.0622 +1 0.7999 +0 0.0407 +0 0.1049 +0 0.0649 +0 0.0993 +0 0.1537 +0 0.2441 +0 0.0602 +0 0.0717 +0 0.0811 +0 0.0818 +0 0.0963 +0 0.0990 +0 0.2298 +0 0.0559 +0 0.0871 +0 0.1262 +0 0.0726 +0 0.0761 +0 0.1590 +0 0.2128 +0 0.0726 +0 0.0894 +0 0.1989 +0 0.1319 +0 0.1173 +0 0.0540 +0 0.1050 +0 0.0696 +0 0.0538 +0 0.2397 +0 0.0957 +0 0.0853 +0 0.1264 +0 0.1217 +0 0.0825 +0 0.0820 +0 0.0533 +0 0.0910 +0 0.1043 +0 0.1364 +0 0.1416 +0 0.0598 +0 0.3953 +0 0.0723 +0 0.0756 +0 0.0960 +0 0.0686 +0 0.1331 +0 0.2737 +0 0.0914 +0 0.0587 +0 0.2798 +0 0.2821 +0 0.0549 +0 0.0724 +0 0.0762 +0 0.1397 +0 0.0772 +0 0.0447 +0 0.0851 +0 0.1003 +0 0.1391 +0 0.0658 +0 0.1210 +0 0.0664 +0 0.1097 +0 0.1277 +0 0.1522 +0 0.1539 +0 0.0716 +0 0.7356 +0 0.1384 +0 0.1097 +0 0.0588 +0 0.2492 +0 0.1362 +0 0.1029 +0 0.0782 +0 0.1004 +0 0.2658 +0 0.0580 +0 0.1471 +0 0.0921 +0 0.3195 +0 0.1835 +1 0.8414 +0 0.0857 +0 0.1514 +0 0.1242 +0 0.1876 +0 0.0471 +0 0.1322 +0 0.1289 +0 0.1479 +0 0.1154 +0 0.1164 +0 0.0842 +0 0.1034 +0 0.0663 +0 0.2605 +0 0.1228 +0 0.0960 +0 0.0840 +0 0.1033 +0 0.1379 +0 0.1578 +0 0.1053 +0 0.0695 +0 0.0778 +0 0.1127 +0 0.1691 +0 0.0432 +0 0.0543 +0 0.0638 +0 0.0945 +0 0.0564 +0 0.0510 +0 0.0828 +0 0.1172 +0 0.2864 +0 0.0919 +0 0.0781 +0 0.0783 +0 0.0421 +0 0.0486 +0 0.0354 +0 0.2115 +0 0.2515 +0 0.2523 +0 0.2353 +0 0.1209 +0 0.1566 +0 0.0478 +0 0.0878 +0 0.0637 +0 0.0331 +0 0.3156 +0 0.0510 +0 0.3841 +0 0.0594 +1 0.8120 +0 0.1655 +0 0.0696 +0 0.0939 +0 0.2181 +0 0.2892 +1 0.8277 +0 0.0457 +0 0.0601 +0 0.1383 +0 0.1789 +0 0.2361 +0 0.0983 +0 0.1065 +0 0.0580 +0 0.1544 +0 0.1162 +0 0.0768 +0 0.1202 +0 0.2764 +0 0.5076 +0 0.0407 +0 0.0875 +0 0.0465 +0 0.0268 +0 0.0676 +0 0.1377 +0 0.1075 +0 0.0425 +0 0.1251 +0 0.1052 +0 0.1332 +1 0.4098 +0 0.0492 +0 0.0684 +0 0.0723 +1 0.8328 +0 0.1827 +0 0.1046 +0 0.1527 +0 0.0535 +0 0.0422 +0 0.0717 +0 0.3893 +0 0.4751 +0 0.1787 +0 0.0839 +0 0.2380 +0 0.1063 +0 0.0543 +0 0.0476 +0 0.1711 +0 0.1189 +0 0.1021 +0 0.1149 +0 0.2024 +0 0.0499 +0 0.1857 +0 0.0840 +0 0.0472 +0 0.1032 +0 0.1381 +0 0.1376 +0 0.1385 +0 0.1668 +0 0.1612 +0 0.0607 +0 0.1046 +0 0.1096 +0 0.0935 +0 0.0677 +0 0.0735 +0 0.3918 +0 0.1496 +0 0.0686 +0 0.0836 +0 0.1545 +0 0.1041 +0 0.5157 +0 0.0927 +0 0.1418 +0 0.1080 +0 0.5339 +0 0.0558 +0 0.1251 +0 0.6751 +1 0.8396 +0 0.0644 +0 0.0823 +0 0.0733 +0 0.0554 +0 0.7163 +0 0.2216 +0 0.0864 +0 0.0701 +0 0.0524 +0 0.1512 +0 0.1013 +0 0.0691 +0 0.0919 +0 0.0904 +0 0.0710 +0 0.0704 +0 0.2677 +0 0.0458 +0 0.2189 +0 0.0795 +0 0.1305 +0 0.0923 +0 0.1485 +0 0.0835 +0 0.0831 +0 0.0816 +0 0.3038 +0 0.0859 +0 0.0872 +0 0.1422 +0 0.2698 +0 0.0887 +0 0.0417 +0 0.0920 +0 0.0741 +0 0.1052 +0 0.1340 +0 0.0969 +0 0.0981 +0 0.0770 +0 0.0636 +0 0.0480 +0 0.0459 +0 0.4773 +0 0.0548 +0 0.0295 +0 0.0976 +0 0.1060 +0 0.1502 +0 0.1186 +0 0.0515 +0 0.0374 +0 0.0474 +0 0.0499 +0 0.0521 +0 0.0624 +0 0.0829 +0 0.1424 +0 0.1504 +0 0.0484 +0 0.0747 +0 0.1988 +0 0.3607 +0 0.1098 +0 0.1155 +0 0.4325 +0 0.1792 +0 0.1633 +0 0.1336 +0 0.1956 +0 0.0707 +0 0.1991 +0 0.2094 +0 0.0739 +0 0.1824 +0 0.0939 +0 0.0968 +0 0.1620 +0 0.1308 +0 0.0704 +0 0.0699 +0 0.3856 +0 0.1226 +0 0.1585 +0 0.1680 +0 0.1549 +0 0.0686 +0 0.2396 +0 0.0634 +0 0.1295 +0 0.1119 +0 0.0900 +0 0.0969 +0 0.1521 +0 0.1455 +0 0.1255 +0 0.0561 +0 0.1321 +0 0.2582 +0 0.1435 +0 0.0617 +0 0.0389 +0 0.1863 +0 0.0858 +0 0.0834 +0 0.0691 +0 0.3335 +0 0.0599 +0 0.0776 +0 0.0719 +0 0.1422 +0 0.1521 +0 0.0470 +0 0.4718 +0 0.1560 +0 0.1430 +0 0.0389 +0 0.0855 +0 0.2356 +0 0.0669 +0 0.2736 +0 0.2835 +0 0.1522 +0 0.0431 +0 0.1260 +0 0.1586 +0 0.3993 +0 0.4403 +0 0.1159 +0 0.1178 +0 0.0511 +0 0.0877 +0 0.2503 +0 0.1193 +0 0.1660 +0 0.0556 +0 0.1399 +0 0.6898 +0 0.0824 +0 0.1506 +0 0.5316 +0 0.1262 +0 0.0920 +0 0.0910 +0 0.1030 +0 0.1022 +0 0.1940 +0 0.1130 +0 0.0967 +0 0.1126 +0 0.0604 +0 0.1288 +0 0.0662 +0 0.1446 +0 0.3524 +0 0.0343 +0 0.2244 +0 0.4265 +0 0.1084 +0 0.0415 +0 0.1101 +0 0.0650 +0 0.0972 +0 0.2109 +0 0.1462 +0 0.0515 +0 0.5757 +0 0.0946 +0 0.0679 +0 0.0684 +0 0.2520 +0 0.1479 +0 0.3374 +0 0.1302 +0 0.1066 +0 0.1275 +0 0.1064 +0 0.1474 +0 0.1267 +0 0.1722 +0 0.0762 +0 0.0476 +0 0.1161 +0 0.0546 +0 0.0812 +0 0.0777 +0 0.0450 +0 0.2359 +0 0.0394 +0 0.1470 +0 0.1192 +1 0.1919 +0 0.1106 +0 0.5323 +0 0.1446 +0 0.0914 +0 0.0597 +0 0.1016 +0 0.1810 +0 0.1814 +0 0.1049 +0 0.0690 +0 0.2232 +0 0.0558 +0 0.1115 +0 0.1853 +0 0.3144 +0 0.1534 +0 0.1808 +0 0.0896 +0 0.0457 +0 0.1871 +0 0.0770 +0 0.5492 +0 0.0925 +0 0.0434 +1 0.8451 +0 0.1055 +0 0.0818 +0 0.0699 +1 0.8133 +0 0.0717 +0 0.0813 +0 0.1407 +0 0.0694 +0 0.0490 +0 0.1063 +0 0.1143 +0 0.1433 +0 0.0843 +0 0.1521 +0 0.0843 +0 0.0978 +0 0.1512 +0 0.0672 +0 0.1453 +0 0.3068 +0 0.0602 +0 0.1847 +0 0.1748 +0 0.2034 +0 0.1090 +0 0.2295 +0 0.0596 +0 0.2632 +0 0.1720 +0 0.0995 +0 0.2244 +0 0.2373 +0 0.1072 +0 0.0840 +0 0.2109 +0 0.0806 +0 0.0461 +0 0.0698 +0 0.4376 +0 0.0706 +0 0.2032 +0 0.1253 +0 0.1100 +0 0.1826 +0 0.1203 +0 0.0866 +0 0.1032 +0 0.0666 +0 0.0924 +0 0.1778 +0 0.2721 +0 0.0779 +0 0.0410 +0 0.0894 +0 0.1836 +0 0.0751 +0 0.3257 +0 0.2608 +0 0.1037 +0 0.0606 +0 0.1420 +0 0.4851 +0 0.1243 +0 0.0907 +1 0.8761 +0 0.1297 +0 0.0913 +0 0.0458 +0 0.1378 +0 0.0758 +0 0.0369 +0 0.0738 +0 0.0805 +0 0.0867 +0 0.3077 +0 0.2805 +0 0.0897 +0 0.0383 +0 0.0862 +0 0.1477 +0 0.0820 +0 0.1222 +0 0.0609 +0 0.2071 +0 0.5727 +0 0.2775 +0 0.0868 +0 0.1245 +0 0.1425 +0 0.1126 +0 0.2202 +0 0.1055 +0 0.2357 +0 0.1535 +0 0.0686 +0 0.0374 +0 0.0974 +0 0.0497 +0 0.0554 +0 0.6631 +0 0.0889 +0 0.1021 +0 0.2886 +0 0.0764 +0 0.1520 +0 0.0449 +0 0.0673 +0 0.0688 +0 0.1007 +0 0.3459 +0 0.0702 +0 0.1313 +0 0.0825 +0 0.0633 +0 0.3727 +0 0.0461 +0 0.1240 +0 0.0792 +0 0.2133 +0 0.2058 +0 0.0752 +0 0.1250 +0 0.0560 +0 0.0777 +0 0.2991 +0 0.1262 +0 0.0871 +1 0.8125 +0 0.0643 +0 0.0617 +0 0.0762 +0 0.1995 +0 0.0700 +0 0.0482 +0 0.1704 +0 0.1002 +0 0.1785 +0 0.1009 +0 0.0940 +0 0.1524 +0 0.0658 +0 0.6869 +0 0.0801 +0 0.0468 +0 0.1457 +0 0.0612 +0 0.0602 +0 0.1374 +0 0.0750 +0 0.0517 +0 0.0744 +0 0.0820 +0 0.0425 +0 0.0738 +0 0.0622 +0 0.1275 +0 0.2520 +0 0.1864 +0 0.3924 +0 0.0605 +0 0.1353 +0 0.1087 +0 0.0672 +0 0.0786 +0 0.0594 +0 0.1422 +0 0.0323 +0 0.2374 +0 0.0567 +0 0.2841 +0 0.1850 +0 0.1169 +0 0.0862 +0 0.2086 +0 0.1982 +0 0.0941 +0 0.0358 +0 0.2630 +0 0.0428 +0 0.1141 +0 0.1998 +0 0.0677 +0 0.0939 +0 0.3203 +0 0.0746 +0 0.4651 +0 0.0845 +0 0.1137 +0 0.2972 +0 0.0974 +0 0.2667 +0 0.0874 +0 0.0916 +0 0.1385 +0 0.6421 +0 0.0740 +0 0.1930 +0 0.2677 +0 0.0383 +0 0.0803 +0 0.0683 +0 0.0852 +0 0.0872 +0 0.0873 +0 0.1002 +0 0.0512 +0 0.2756 +0 0.1907 +0 0.5117 +0 0.0858 +0 0.2124 +0 0.0422 +0 0.1014 +0 0.0950 +0 0.1227 +0 0.0452 +0 0.1957 +0 0.0420 +0 0.3332 +0 0.7207 +0 0.1406 +0 0.0878 +0 0.0705 +0 0.0563 +0 0.0559 +0 0.6789 +0 0.1372 +0 0.0689 +0 0.0812 +0 0.1236 +0 0.0663 +0 0.0555 +0 0.3751 +0 0.1890 +0 0.1012 +0 0.4132 +0 0.0953 +0 0.1196 +0 0.0613 +0 0.0616 +0 0.0844 +0 0.1280 +0 0.0891 +0 0.0881 +0 0.0622 +0 0.1103 +0 0.1980 +0 0.2079 +0 0.1596 +0 0.0473 +0 0.1089 +0 0.0806 +0 0.3485 +0 0.0786 +0 0.0931 +0 0.2623 +0 0.0785 +0 0.0448 +0 0.0358 +0 0.1016 +0 0.1731 +0 0.5776 +0 0.0713 +0 0.1007 +0 0.1288 +0 0.0902 +0 0.1398 +0 0.0729 +0 0.0965 +0 0.0811 +0 0.0383 +0 0.0727 +0 0.0531 +0 0.1248 +0 0.2373 +0 0.0468 +0 0.1495 +0 0.0713 +0 0.1779 +0 0.0603 +0 0.0726 +0 0.1022 +0 0.1040 +0 0.0885 +0 0.0539 +0 0.0840 +0 0.1724 +0 0.1523 +1 0.7935 +0 0.1441 +0 0.0842 +0 0.1015 +0 0.1518 +0 0.3755 +0 0.1528 +0 0.0859 +0 0.0972 +0 0.1057 +0 0.0809 +0 0.1230 +0 0.1302 +0 0.0915 +0 0.0865 +0 0.2609 +0 0.0599 +0 0.0346 +0 0.1014 +0 0.0508 +0 0.1115 +0 0.0963 +0 0.0730 +0 0.0868 +0 0.1464 +0 0.0804 +0 0.1278 +0 0.0505 +0 0.0486 +0 0.0730 +0 0.1288 +0 0.2121 +0 0.1104 +0 0.1303 +0 0.0316 +0 0.0900 +0 0.2575 +0 0.1161 +0 0.2036 +0 0.0754 +0 0.1404 +0 0.0817 +0 0.0872 +0 0.1827 +0 0.1107 +0 0.0598 +0 0.0618 +0 0.1122 +0 0.1868 +0 0.0555 +0 0.3018 +0 0.1879 +0 0.0572 +1 0.7921 +0 0.1090 +1 0.8049 +0 0.1114 +0 0.0697 +0 0.0979 +0 0.0843 +0 0.0549 +0 0.0933 +0 0.3234 +0 0.0728 +0 0.0823 +0 0.0702 +0 0.0414 +0 0.0631 +0 0.2164 +0 0.0412 +0 0.0801 +0 0.1706 +0 0.1526 +0 0.1525 +0 0.2844 +0 0.1073 +0 0.3184 +0 0.1230 +0 0.0973 +0 0.1778 +0 0.0770 +0 0.1037 +0 0.1561 +0 0.1860 +0 0.0622 +0 0.1148 +0 0.0976 +0 0.2556 +0 0.3382 +0 0.0771 +0 0.0513 +0 0.0913 +0 0.0800 +0 0.1080 +0 0.1011 +0 0.0970 +0 0.0786 +0 0.0888 +0 0.0900 +1 0.7529 +0 0.1072 +0 0.1218 +0 0.0551 +0 0.3550 +1 0.7667 +0 0.0871 +0 0.0864 +0 0.1545 +0 0.1146 +0 0.1567 +0 0.1493 +0 0.0657 +1 0.8793 +0 0.0549 +0 0.0739 +0 0.0957 +0 0.4273 +0 0.2234 +0 0.1068 +0 0.0965 +0 0.0881 +0 0.0555 +0 0.1868 +0 0.1062 +0 0.1899 +0 0.1581 +0 0.7162 +0 0.0584 +0 0.1475 +0 0.0958 +0 0.0695 +0 0.0859 +0 0.0861 +1 0.8788 +0 0.1858 +0 0.0551 +0 0.2332 +0 0.0572 +0 0.2561 +0 0.1131 +0 0.0492 +0 0.1092 +0 0.0799 +0 0.4142 +0 0.1182 +0 0.0738 +0 0.1468 +0 0.0322 +0 0.1403 +0 0.1621 +0 0.0898 +0 0.1397 +0 0.4537 +0 0.0340 +0 0.0679 +0 0.2426 +0 0.0729 +0 0.0572 +0 0.1863 +0 0.0662 +0 0.0717 +0 0.0862 +0 0.1184 +0 0.2682 +0 0.0771 +0 0.0909 +0 0.0465 +0 0.1729 +0 0.1416 +0 0.0849 +0 0.0600 +0 0.1482 +0 0.0883 +0 0.0700 +0 0.1801 +0 0.0487 +0 0.0908 +0 0.1725 +0 0.0850 +0 0.2434 +0 0.0741 +0 0.1232 +0 0.0878 +0 0.0592 +0 0.0793 +0 0.0738 +0 0.0715 +0 0.0517 +0 0.1187 +0 0.0993 +0 0.0478 +0 0.1974 +0 0.0676 +0 0.0589 +0 0.1946 +0 0.5043 +0 0.0304 +0 0.1036 +0 0.0836 +0 0.2352 +0 0.1529 +0 0.1180 +0 0.0669 +0 0.0755 +0 0.1152 +0 0.0468 +0 0.0683 +0 0.1743 +0 0.1057 +0 0.0658 +0 0.2343 +0 0.1438 +0 0.0601 +0 0.5117 +0 0.0615 +0 0.0435 +0 0.0449 +0 0.1379 +0 0.0768 +0 0.1170 +0 0.2356 +0 0.1057 +0 0.1379 +0 0.1814 +0 0.0906 +0 0.0492 +0 0.0443 +0 0.0794 +0 0.4773 +0 0.1618 +0 0.0746 +0 0.1084 +0 0.2702 +0 0.2091 +0 0.0542 +0 0.1345 +0 0.1898 +0 0.0725 +0 0.1126 +0 0.1334 +0 0.1371 +0 0.1804 +0 0.1042 +0 0.1404 +0 0.0930 +0 0.1042 +0 0.1213 +0 0.0854 +0 0.1919 +0 0.1743 +0 0.3157 +0 0.3120 +0 0.1621 +0 0.0632 +0 0.1590 +0 0.1542 +0 0.1855 +0 0.1475 +0 0.0661 +0 0.6739 +0 0.0571 +0 0.1026 +0 0.0458 +0 0.0918 +0 0.0716 +0 0.0592 +0 0.2566 +0 0.2086 +0 0.0879 +0 0.1011 +0 0.0690 +0 0.0838 +0 0.1913 +0 0.1591 +0 0.0344 +0 0.1202 +0 0.2223 +0 0.0744 +0 0.1168 +0 0.2148 +0 0.1340 +0 0.1495 +0 0.0699 +0 0.0938 +0 0.2183 +0 0.1328 +0 0.4947 +0 0.2778 +0 0.0668 +0 0.1863 +0 0.1363 +0 0.0908 +0 0.1787 +0 0.0817 +0 0.1173 +0 0.4442 +0 0.1534 +0 0.0583 +0 0.1730 +0 0.1219 +0 0.0619 +0 0.0457 +0 0.4040 +0 0.0930 +0 0.2559 +0 0.1313 +0 0.0680 +0 0.1507 +0 0.1400 +0 0.0661 +0 0.0502 +0 0.0840 +0 0.1116 +0 0.0950 +0 0.1558 +0 0.1021 +0 0.1887 +0 0.1182 +0 0.3941 +0 0.1409 +0 0.0413 +0 0.0539 +0 0.0947 +0 0.1629 +0 0.0783 +0 0.0692 +0 0.0467 +0 0.0901 +0 0.4324 +0 0.1751 +0 0.1204 +0 0.0455 +0 0.1993 +0 0.1477 +0 0.1127 +0 0.0850 +0 0.0518 +0 0.1019 +0 0.1427 +0 0.2041 +0 0.0681 +0 0.0544 +0 0.0507 +0 0.1094 +0 0.1120 +0 0.1827 +0 0.1638 +0 0.1391 +0 0.0608 +0 0.0493 +0 0.0997 +0 0.1224 +0 0.0581 +0 0.1594 +0 0.6258 +0 0.0448 +0 0.1965 +0 0.0504 +0 0.0507 +0 0.0883 +0 0.2360 +0 0.0934 +0 0.0531 +0 0.0720 +0 0.1310 +0 0.0960 +0 0.0734 +0 0.1502 +0 0.0941 +0 0.0788 +0 0.0635 +0 0.0562 +0 0.1142 +0 0.0351 +0 0.1494 +0 0.1115 +0 0.1472 +0 0.1003 +0 0.0519 +0 0.0656 +0 0.1719 +0 0.1120 +0 0.0470 +0 0.1001 +0 0.1083 +0 0.0607 +0 0.2851 +0 0.0367 +0 0.1489 +0 0.2865 +0 0.1577 +0 0.1063 +0 0.1003 +0 0.0749 +0 0.0479 +0 0.2062 +0 0.1004 +0 0.3393 +0 0.0701 +0 0.1341 +0 0.1396 +0 0.0435 +0 0.4350 +0 0.7266 +0 0.2164 +0 0.0609 +0 0.0525 +0 0.2473 +0 0.1167 +0 0.1906 +0 0.0783 +0 0.2430 +0 0.6181 +0 0.2823 +0 0.0583 +0 0.0446 +0 0.0822 +0 0.0685 +0 0.0489 +0 0.2112 +0 0.1036 +0 0.0793 +0 0.1626 +0 0.3181 +0 0.7495 +0 0.2611 +0 0.3419 +0 0.2513 +0 0.0707 +0 0.0797 +0 0.0922 +0 0.5170 +0 0.1104 +0 0.1769 +0 0.0726 +0 0.0499 +0 0.0832 +0 0.0543 +0 0.1707 +0 0.0611 +0 0.0906 +0 0.0694 +0 0.0824 +0 0.0772 +0 0.0638 +0 0.3693 +0 0.0777 +0 0.1064 +0 0.0860 +0 0.0565 +0 0.0871 +0 0.1320 +0 0.0530 +0 0.3203 +0 0.0344 +0 0.1483 +0 0.2589 +0 0.1282 +0 0.0940 +0 0.1872 +0 0.0683 +0 0.0647 +0 0.0918 +0 0.0559 +0 0.6643 +0 0.0961 +0 0.0914 +0 0.1370 +0 0.2647 +0 0.4673 +0 0.1227 +0 0.2357 +0 0.2693 +0 0.0963 +0 0.1533 +0 0.1125 +0 0.3925 +0 0.0770 +0 0.3770 +0 0.0850 +0 0.0712 +0 0.0770 +0 0.0538 +0 0.1029 +0 0.1148 +0 0.3146 +0 0.0707 +0 0.0698 +0 0.1899 +0 0.1191 +0 0.2672 +0 0.0708 +0 0.0692 +0 0.1388 +0 0.1834 +0 0.2204 +0 0.1224 +0 0.1159 +0 0.1009 +0 0.0489 +0 0.0455 +0 0.0938 +0 0.0569 +0 0.6175 +0 0.1813 +0 0.1896 +0 0.1729 +0 0.3000 +0 0.0764 +0 0.1405 +0 0.1061 +0 0.1004 +0 0.0628 +0 0.1518 +0 0.1771 +0 0.4569 +0 0.0301 +0 0.0385 +0 0.0540 +0 0.0799 +0 0.0836 +0 0.1088 +0 0.0829 +0 0.0678 +0 0.1680 +0 0.1601 +0 0.1455 +0 0.5852 +0 0.0492 +0 0.0897 +0 0.3737 +0 0.0820 +1 0.8085 +0 0.2201 +0 0.1306 +0 0.0562 +0 0.1427 +0 0.1171 +0 0.1197 +0 0.0726 +0 0.2301 +0 0.0957 +0 0.0940 +0 0.0532 +0 0.3443 +0 0.0584 +0 0.0913 +0 0.0729 +0 0.1746 +0 0.1637 +0 0.0536 +0 0.1931 +0 0.6777 +0 0.1749 +0 0.0764 +0 0.0858 +0 0.0812 +0 0.3064 +0 0.0554 +0 0.0621 +0 0.0654 +0 0.0707 +0 0.0656 +0 0.1018 +0 0.1190 +0 0.0502 +0 0.0541 +0 0.0613 +0 0.0652 +0 0.1070 +0 0.0382 +0 0.0593 +0 0.2576 +0 0.1257 +0 0.0792 +0 0.0958 +0 0.0861 +0 0.2720 +0 0.1743 +0 0.0525 +0 0.0610 +1 0.8158 +0 0.0659 +0 0.0999 +0 0.2323 +0 0.1359 +0 0.1142 +0 0.0534 +0 0.1614 +0 0.1429 +0 0.1166 +0 0.3009 +0 0.3156 +0 0.3173 +1 0.8277 +0 0.2154 +0 0.0839 +0 0.4365 +0 0.0472 +0 0.1239 +0 0.1084 +0 0.1291 +0 0.0991 +0 0.1115 +0 0.6887 +0 0.0633 +0 0.4754 +0 0.2116 +0 0.0702 +0 0.2952 +0 0.1182 +0 0.0895 +0 0.0769 +0 0.1135 +0 0.1345 +0 0.1319 +0 0.1180 +0 0.0908 +0 0.1630 +0 0.0605 +0 0.1475 +0 0.1612 +0 0.0880 +0 0.1925 +0 0.0389 +0 0.1033 +0 0.0496 +0 0.1364 +0 0.0991 +0 0.2957 +0 0.2191 +0 0.1690 +0 0.1776 +0 0.4272 +0 0.0437 +0 0.1167 +0 0.2165 +0 0.0854 +0 0.1134 +0 0.0728 +0 0.0711 +0 0.3830 +0 0.0422 +0 0.0545 +0 0.3828 +0 0.2138 +0 0.1589 +0 0.1879 +0 0.1201 +0 0.1999 +1 0.8053 +0 0.1359 +0 0.1890 +0 0.0547 +0 0.0349 +0 0.0724 +0 0.1469 +0 0.0559 +0 0.0852 +0 0.0782 +0 0.1211 +0 0.1184 +0 0.1053 +0 0.0792 +0 0.0756 +0 0.4000 +0 0.1429 +0 0.1610 +0 0.0632 +0 0.1321 +0 0.0464 +0 0.2157 +0 0.0651 +0 0.5400 +0 0.2485 +1 0.7907 +0 0.0811 +0 0.2577 +0 0.1177 +0 0.1064 +0 0.0619 +0 0.1402 +0 0.0715 +0 0.1580 +0 0.2091 +0 0.1871 +0 0.0632 +0 0.0384 +0 0.1474 +0 0.1784 +0 0.0822 +0 0.2993 +0 0.0829 +0 0.0711 +0 0.1813 +0 0.0591 +0 0.1996 +0 0.1098 +0 0.0942 +0 0.1503 +0 0.0997 +0 0.0801 +0 0.0360 +0 0.0828 +0 0.1068 +0 0.1373 +0 0.1661 +0 0.0697 +0 0.0447 +0 0.1643 +0 0.0665 +0 0.1006 +0 0.1940 +0 0.0724 +0 0.6052 +0 0.1686 +0 0.0585 +0 0.0676 +0 0.0562 +0 0.1060 +0 0.0528 +0 0.1357 +0 0.0653 +0 0.0721 +0 0.0906 +0 0.5390 +0 0.0617 +0 0.0503 +0 0.0637 +0 0.2472 +0 0.0881 +0 0.0606 +0 0.0871 +0 0.1468 +0 0.1970 +0 0.1326 +0 0.1682 +0 0.0627 +0 0.0522 +0 0.3770 +0 0.0568 +0 0.1878 +0 0.2195 +0 0.1067 +0 0.0328 +0 0.1114 +0 0.2178 +0 0.2254 +1 0.7894 +0 0.1114 +0 0.0440 +0 0.0893 +0 0.0616 +0 0.0698 +0 0.0858 +0 0.1461 +0 0.0745 +0 0.3512 +0 0.2117 +0 0.1251 +0 0.1621 +0 0.1344 +0 0.0572 +0 0.0718 +0 0.5903 +0 0.0724 +0 0.0572 +0 0.1476 +0 0.0857 +0 0.2032 +0 0.1477 +0 0.0566 +0 0.1152 +0 0.0831 +0 0.1033 +0 0.0897 +0 0.0691 +0 0.0515 +0 0.2857 +0 0.6694 +0 0.1924 +0 0.1064 +0 0.0690 +0 0.3118 +0 0.0887 +0 0.0688 +0 0.0719 +0 0.1612 +0 0.1542 +0 0.0474 +0 0.1051 +0 0.1016 +0 0.2224 +0 0.1816 +0 0.1631 +0 0.2420 +0 0.4341 +0 0.0353 +0 0.2247 +0 0.0526 +0 0.1785 +0 0.3562 +0 0.1100 +0 0.3927 +0 0.0942 +0 0.1038 +0 0.0873 +0 0.0553 +0 0.1685 +0 0.0973 +0 0.0888 +0 0.2049 +0 0.1312 +0 0.0952 +0 0.1100 +0 0.0606 +0 0.1760 +0 0.1257 +0 0.1495 +0 0.0816 +0 0.0818 +0 0.1089 +0 0.0535 +1 0.8451 +0 0.0517 +0 0.2038 +0 0.3220 +0 0.0938 +0 0.0786 +0 0.0714 +0 0.1004 +0 0.0932 +0 0.1305 +0 0.0428 +0 0.0672 +0 0.0425 +0 0.0987 +0 0.1347 +0 0.1387 +0 0.4701 +0 0.7118 +0 0.0544 +0 0.1254 +0 0.1035 +0 0.2050 +0 0.0837 +0 0.0681 +0 0.2515 +0 0.0358 +0 0.0587 +0 0.1452 +0 0.1001 +0 0.0794 +0 0.0796 +0 0.1512 +0 0.1026 +0 0.1754 +0 0.1157 +0 0.0517 +0 0.1117 +0 0.1198 +0 0.1181 +0 0.1173 +0 0.0797 +0 0.2183 +0 0.1841 +0 0.0902 +0 0.1066 +0 0.0628 +0 0.0805 +0 0.2346 +0 0.1002 +0 0.0465 +0 0.1336 +0 0.0929 +0 0.1376 +0 0.0838 +0 0.0586 +0 0.1274 +0 0.1245 +0 0.0451 +0 0.1425 +0 0.0405 +0 0.1154 +0 0.0647 +0 0.0657 +0 0.0345 +0 0.0824 +0 0.1270 +0 0.0924 +0 0.0690 +0 0.0320 +0 0.1562 +0 0.0846 +0 0.0828 +0 0.0846 +0 0.4820 +0 0.2153 +0 0.1102 +0 0.0918 +0 0.0805 +0 0.1318 +0 0.1922 +1 0.7863 +0 0.0919 +0 0.1345 +0 0.1127 +0 0.1316 +0 0.1112 +0 0.3212 +0 0.2910 +0 0.5803 +0 0.1238 +0 0.2532 +0 0.1527 +0 0.0821 +0 0.1144 +0 0.0548 +0 0.1217 +0 0.0534 +0 0.0870 +0 0.1549 +0 0.0425 +0 0.2195 +0 0.1389 +0 0.0558 +0 0.0610 +0 0.0518 +0 0.0604 +0 0.1015 +0 0.7409 +0 0.1007 +0 0.2637 +0 0.0401 +0 0.1208 +0 0.4580 +0 0.3064 +1 0.7617 +0 0.2697 +0 0.2413 +0 0.0526 +0 0.1051 +1 0.8128 +0 0.0783 +0 0.0820 +0 0.0626 +0 0.4117 +0 0.0633 +0 0.3195 +0 0.0722 +0 0.2089 +0 0.1073 +0 0.1855 +0 0.0892 +0 0.0678 +0 0.0795 +0 0.0823 +0 0.1551 +0 0.0931 +0 0.1534 +0 0.0544 +0 0.0941 +0 0.1653 +0 0.0975 +0 0.1400 +0 0.0753 +0 0.1851 +0 0.1337 +0 0.0902 +0 0.0737 +0 0.1952 +0 0.0991 +0 0.2066 +0 0.1044 +0 0.1009 +0 0.0863 +0 0.0755 +0 0.1300 +0 0.0891 +0 0.0702 +0 0.0709 +0 0.1501 +0 0.0984 +0 0.2109 +0 0.1531 +0 0.3595 +0 0.2310 +0 0.1190 +0 0.0485 +0 0.0767 +0 0.2598 +0 0.1059 +0 0.0772 +0 0.0820 +0 0.2249 +0 0.0857 +0 0.0783 +0 0.1539 +0 0.0584 +0 0.2280 +0 0.3243 +0 0.1054 +0 0.1055 +0 0.0858 +0 0.0901 +0 0.1069 +0 0.1500 +0 0.1756 +0 0.0878 +1 0.8485 +0 0.1259 +0 0.0907 +0 0.1349 +0 0.1670 +0 0.0534 +0 0.0897 +0 0.0975 +0 0.4306 +0 0.0783 +0 0.1888 +0 0.0795 +0 0.0984 +0 0.0591 +0 0.1064 +0 0.0824 +0 0.3243 +0 0.3086 +0 0.0629 +0 0.1038 +0 0.1348 +0 0.1381 +0 0.1680 +0 0.1528 +0 0.0595 +0 0.1788 +0 0.2227 +0 0.0362 +0 0.0842 +0 0.4225 +0 0.1937 +0 0.1393 +0 0.0456 +0 0.0925 +0 0.1400 +0 0.1565 +0 0.2943 +0 0.0598 +0 0.1449 +0 0.0979 +0 0.0582 +0 0.1096 +0 0.1260 +0 0.0911 +0 0.2410 +0 0.0592 +0 0.1204 +0 0.6246 +0 0.2284 +0 0.2905 +0 0.0816 +0 0.0548 +0 0.4077 +0 0.0531 +0 0.1174 +0 0.0935 +0 0.0859 +0 0.0511 +0 0.0584 +0 0.4363 +0 0.1559 +0 0.1057 +0 0.2477 +0 0.1330 +0 0.0780 +0 0.1110 +0 0.2656 +0 0.3257 +0 0.1195 +0 0.0538 +0 0.0562 +0 0.1345 +0 0.2011 +0 0.0895 +0 0.5024 +0 0.0626 +0 0.0561 +0 0.0904 +0 0.0573 +0 0.0599 +0 0.1112 +0 0.0982 +0 0.2172 +0 0.1043 +0 0.1136 +0 0.1916 +0 0.2400 +0 0.1766 +0 0.1021 +0 0.1402 +0 0.0717 +0 0.1533 +0 0.1955 +0 0.1427 +0 0.0933 +0 0.1048 +0 0.0891 +0 0.1236 +0 0.1369 +0 0.1384 +0 0.2114 +0 0.1657 +0 0.1111 +0 0.1270 +0 0.1969 +0 0.1258 +0 0.1282 +0 0.0514 +0 0.1558 +1 0.8352 +0 0.0679 +0 0.0882 +0 0.3208 +0 0.0760 +0 0.0624 +0 0.0584 +0 0.1754 +0 0.0658 +0 0.1100 +0 0.1507 +0 0.0780 +0 0.0936 +0 0.1197 +0 0.0960 +0 0.0613 +0 0.0459 +0 0.1276 +1 0.8197 +0 0.0574 +0 0.4156 +0 0.1929 +0 0.0774 +0 0.1554 +0 0.0536 +0 0.1807 +0 0.0589 +0 0.2223 +0 0.0831 +0 0.0541 +0 0.0726 +0 0.2837 +0 0.1777 +0 0.0852 +0 0.0891 +0 0.1321 +0 0.6281 +0 0.2746 +0 0.1103 +0 0.0887 +0 0.4171 +0 0.0957 +0 0.1570 +0 0.0580 +0 0.0562 +0 0.5313 +0 0.3815 +0 0.2070 +0 0.0818 +0 0.1564 +0 0.1427 +0 0.0676 +0 0.1351 +0 0.2629 +0 0.1314 +0 0.3464 +0 0.1606 +0 0.0612 +0 0.0770 +0 0.0365 +0 0.1066 +0 0.0460 +0 0.0634 +0 0.1205 +0 0.1247 +0 0.0941 +0 0.0433 +0 0.0522 +0 0.0917 +0 0.1770 +0 0.0941 +0 0.0912 +0 0.0811 +0 0.0882 +0 0.0838 +0 0.1104 +0 0.0747 +0 0.0460 +0 0.5009 +0 0.0993 +0 0.0578 +0 0.1081 +0 0.1874 +0 0.0794 +0 0.2268 +0 0.0583 +0 0.2447 +0 0.1550 +0 0.1140 +0 0.0470 +0 0.0857 +0 0.1589 +0 0.7447 +0 0.3718 +0 0.0879 +0 0.1155 +0 0.2045 +0 0.2106 +0 0.1336 +0 0.1202 +0 0.0604 +0 0.0624 +0 0.2255 +0 0.7379 +0 0.1022 +0 0.1387 +0 0.1030 +0 0.0653 +0 0.1610 +0 0.0648 +0 0.1665 +0 0.3484 +0 0.2298 +0 0.3209 +0 0.1189 +0 0.1673 +0 0.0590 +0 0.1056 +0 0.1128 +0 0.1036 +0 0.1032 +0 0.1247 +0 0.1441 +0 0.0523 +0 0.0652 +0 0.6824 +0 0.0613 +0 0.0725 +0 0.0849 +0 0.1225 +0 0.0876 +0 0.3869 +0 0.0930 +0 0.3251 +0 0.0843 +0 0.0598 +0 0.0921 +0 0.0700 +0 0.0634 +0 0.2096 +0 0.1331 +0 0.3844 +0 0.1804 +0 0.1158 +0 0.1147 +0 0.1272 +0 0.0759 +0 0.0475 +0 0.1175 +0 0.1009 +0 0.0648 +0 0.1482 +0 0.0854 +0 0.0824 +0 0.0579 +0 0.1561 +0 0.0658 +0 0.1507 +0 0.0485 +0 0.3016 +0 0.1418 +0 0.1152 +0 0.6973 +0 0.6601 +0 0.1402 +0 0.0512 +0 0.1430 +0 0.2425 +0 0.1370 +0 0.0968 +0 0.3004 +1 0.7903 +0 0.5695 +0 0.0471 +0 0.1196 +0 0.1046 +0 0.1229 +0 0.0503 +0 0.1354 +0 0.1696 +0 0.3584 +0 0.2810 +0 0.0606 +0 0.0900 +0 0.0535 +0 0.2494 +0 0.1611 +0 0.0464 +0 0.1638 +0 0.0511 +0 0.0817 +0 0.0538 +0 0.1295 +0 0.1118 +0 0.1365 +0 0.1465 +0 0.1712 +0 0.0557 +0 0.0896 +0 0.1469 +0 0.0978 +0 0.0971 +0 0.1080 +0 0.0498 +0 0.2226 +0 0.0355 +0 0.0710 +0 0.1420 +0 0.0800 +0 0.1784 +0 0.1090 +0 0.0731 +0 0.0893 +0 0.2028 +0 0.2176 +0 0.1339 +0 0.0760 +0 0.0529 +1 0.7804 +0 0.1488 +0 0.0630 +0 0.2014 +0 0.0514 +0 0.0840 +0 0.0625 +0 0.2912 +0 0.0742 +0 0.0926 +0 0.2788 +0 0.1024 +0 0.0709 +0 0.2505 +0 0.0585 +0 0.0519 +0 0.1266 +0 0.2491 +0 0.1973 +0 0.1152 +0 0.1326 +0 0.2066 +0 0.1051 +0 0.1042 +0 0.1072 +0 0.0884 +0 0.2366 +0 0.1028 +0 0.0672 +0 0.1380 +0 0.0359 +0 0.6545 +0 0.0610 +0 0.0923 +0 0.0984 +0 0.1079 +0 0.1882 +0 0.0485 +0 0.0721 +0 0.0602 +0 0.1589 +0 0.1272 +0 0.0838 +0 0.0974 +1 0.7867 +0 0.1359 +0 0.0604 +0 0.0841 +0 0.0676 +0 0.0434 +0 0.0729 +0 0.0476 +0 0.0667 +0 0.0861 +0 0.1046 +0 0.0797 +0 0.0710 +0 0.6844 +0 0.1710 +0 0.0639 +0 0.0658 +0 0.0603 +0 0.0613 +0 0.1565 +0 0.0783 +0 0.0446 +0 0.0608 +0 0.2026 +0 0.1388 +0 0.1645 +0 0.1950 +0 0.2454 +1 0.8588 +0 0.4825 +0 0.1963 +0 0.0936 +0 0.1652 +0 0.0737 +0 0.0734 +0 0.0426 +0 0.0879 +0 0.0378 +0 0.1499 +0 0.0878 +0 0.5335 +0 0.0547 +1 0.8277 +0 0.1433 +0 0.2827 +0 0.0888 +0 0.1555 +0 0.0968 +0 0.2474 +0 0.0831 +0 0.0613 +0 0.0437 +0 0.7422 +0 0.2103 +0 0.0945 +0 0.0923 +0 0.1149 +0 0.0679 +0 0.1644 +0 0.0552 +0 0.2383 +0 0.0698 +1 0.8308 +0 0.1099 +0 0.1428 +0 0.0647 +0 0.1707 +0 0.1024 +0 0.0719 +0 0.5597 +0 0.0933 +0 0.0398 +0 0.1290 +0 0.0922 +0 0.0700 +0 0.1053 +0 0.1279 +0 0.1477 +0 0.1162 +0 0.2074 +0 0.1990 +0 0.2496 +0 0.1956 +0 0.0633 +0 0.0838 +0 0.1280 +0 0.1583 +0 0.1133 +0 0.0520 +0 0.1026 +0 0.0757 +0 0.1290 +0 0.0535 +0 0.0668 +0 0.0603 +0 0.0555 +0 0.1556 +0 0.2330 +1 0.8195 +0 0.0661 +0 0.1579 +0 0.0582 +0 0.1268 +0 0.1721 +0 0.1716 +0 0.0741 +0 0.0656 +0 0.1179 +0 0.0742 +0 0.0965 +0 0.2393 +0 0.3160 +0 0.0887 +0 0.0767 +0 0.0701 +0 0.0462 +0 0.1206 +0 0.1107 +0 0.0406 +0 0.0857 +0 0.0648 +0 0.0520 +0 0.0732 +0 0.1208 +0 0.1596 +0 0.1006 +0 0.0707 +0 0.1137 +0 0.0883 +0 0.1471 +0 0.0447 +0 0.1180 +0 0.2539 +0 0.0625 +0 0.1060 +0 0.0670 +0 0.1505 +0 0.3226 +0 0.1231 +0 0.0607 +0 0.0709 +0 0.0938 +0 0.3009 +0 0.0655 +0 0.0529 +0 0.0441 +0 0.2360 +0 0.2012 +0 0.1335 +0 0.1265 +0 0.1586 +0 0.3020 +0 0.0474 +0 0.1095 +0 0.0372 +0 0.1647 +0 0.1084 +0 0.3189 +0 0.0771 +0 0.0696 +0 0.0805 +0 0.0386 +0 0.0591 +0 0.2274 +0 0.1322 +0 0.1078 +0 0.1228 +0 0.1238 +0 0.0501 +0 0.0788 +0 0.1105 +0 0.0890 +0 0.1131 +0 0.1272 +0 0.0702 +0 0.0449 +0 0.0838 +0 0.1027 +0 0.1518 +0 0.0900 +0 0.1118 +0 0.0937 +0 0.1092 +0 0.1734 +0 0.1473 +0 0.1286 +0 0.1127 +0 0.2115 +0 0.2301 +0 0.1203 +0 0.0687 +1 0.7994 +0 0.0382 +0 0.0415 +0 0.3185 +0 0.0603 +0 0.2228 +0 0.1971 +0 0.0574 +0 0.0632 +0 0.4380 +0 0.1406 +0 0.2054 +0 0.2103 +0 0.0510 +0 0.1358 +0 0.1821 +0 0.0750 +0 0.0996 +0 0.0753 +0 0.1213 +0 0.1229 +0 0.2187 +0 0.1050 +0 0.0663 +0 0.2034 +0 0.1692 +0 0.1433 +0 0.2568 +0 0.1169 +0 0.0442 +0 0.0785 +0 0.1727 +0 0.0827 +0 0.1219 +0 0.1563 +0 0.2060 +0 0.2544 +0 0.1852 +0 0.1170 +0 0.0907 +0 0.0946 +0 0.2157 +0 0.0838 +0 0.1748 +0 0.1450 +0 0.0573 +0 0.1792 +0 0.2674 +0 0.1241 +0 0.2253 +0 0.1274 +0 0.0607 +0 0.2136 +0 0.0645 +0 0.1949 +0 0.1264 +0 0.1743 +0 0.1008 +0 0.0695 +0 0.1134 +0 0.0753 +0 0.1789 +0 0.0546 +0 0.2560 +0 0.0670 +0 0.1770 +0 0.2716 +0 0.0816 +1 0.8351 +0 0.1018 +0 0.0649 +0 0.1073 +0 0.1206 +0 0.0459 +0 0.0682 +0 0.1682 +0 0.2220 +0 0.1819 +0 0.1255 +0 0.0294 +0 0.0578 +0 0.4136 +0 0.1656 +0 0.1091 +0 0.1966 +0 0.0620 +0 0.0745 +0 0.3632 +0 0.4443 +0 0.0524 +0 0.0387 +0 0.1079 +0 0.1204 +0 0.1157 +0 0.1027 +0 0.0748 +0 0.0752 +0 0.1243 +0 0.0660 +0 0.1107 +0 0.0938 +0 0.1036 +0 0.2669 +0 0.0845 +0 0.3495 +0 0.0542 +0 0.0695 +0 0.1103 +0 0.0701 +0 0.1767 +0 0.0947 +0 0.1886 +0 0.1437 +0 0.0565 +0 0.0870 +0 0.0478 +0 0.1185 +0 0.2197 +0 0.1812 +0 0.0651 +0 0.2438 +0 0.2771 +0 0.0979 +0 0.1385 +0 0.1564 +0 0.2329 +0 0.0733 +0 0.0934 +0 0.0474 +0 0.0744 +0 0.0501 +0 0.3638 +0 0.0690 +0 0.0523 +0 0.0636 +0 0.0354 +0 0.0544 +0 0.1479 +0 0.0838 +0 0.0666 +0 0.1167 +0 0.0724 +0 0.1693 +0 0.2275 +0 0.0578 +0 0.0723 +0 0.0782 +0 0.2429 +0 0.0605 +0 0.1158 +0 0.0844 +0 0.0593 +0 0.0555 +0 0.0747 +0 0.0964 +0 0.0791 +0 0.0856 +0 0.1496 +0 0.0689 +0 0.5021 +0 0.0569 +0 0.0889 +0 0.1075 +0 0.1440 +0 0.0609 +0 0.1364 +0 0.0449 +0 0.0697 +0 0.0711 +0 0.0649 +0 0.1893 +0 0.1542 +0 0.0481 +0 0.0625 +0 0.1184 +0 0.0490 +0 0.1405 +0 0.0613 +0 0.1361 +0 0.0838 +0 0.0681 +0 0.2375 +0 0.1114 +0 0.1210 +0 0.0475 +0 0.2590 +0 0.0838 +0 0.0594 +0 0.0502 +0 0.0671 +0 0.4979 +0 0.0491 +0 0.0779 +0 0.7225 +0 0.1285 +0 0.0721 +0 0.0917 +0 0.6702 +0 0.0688 +1 0.8484 +0 0.1574 +0 0.1341 +0 0.0884 +0 0.1293 +0 0.0441 +0 0.1985 +0 0.2899 +0 0.0992 +0 0.1179 +0 0.0831 +0 0.1540 +0 0.0641 +0 0.1511 +0 0.1823 +0 0.2033 +0 0.1004 +0 0.0590 +0 0.1049 +0 0.1438 +0 0.4490 +1 0.3311 +0 0.0932 +0 0.0661 +0 0.0556 +0 0.0926 +0 0.2687 +0 0.0505 +0 0.1692 +0 0.1172 +0 0.1437 +0 0.1292 +0 0.0433 +0 0.1092 +0 0.0757 +0 0.2734 +0 0.0456 +0 0.1489 +0 0.1396 +0 0.3881 +0 0.0520 +0 0.0707 +0 0.0646 +0 0.0695 +0 0.1395 +0 0.0358 +0 0.0880 +0 0.0920 +0 0.2123 +0 0.4283 +1 0.7964 +0 0.0707 +0 0.0406 +0 0.2990 +0 0.1035 +0 0.0771 +0 0.3281 +0 0.0719 +0 0.0863 +0 0.1527 +0 0.1118 +0 0.1416 +0 0.3964 +1 0.8096 +0 0.1713 +0 0.0757 +0 0.0365 +0 0.0778 +0 0.0975 +0 0.0447 +0 0.0431 +0 0.0683 +0 0.1133 +0 0.3501 +0 0.7363 +0 0.1600 +0 0.0584 +0 0.1017 +0 0.1432 +0 0.0487 +0 0.0373 +0 0.7295 +0 0.2306 +0 0.1241 +0 0.2897 +0 0.1366 +0 0.0526 +0 0.0778 +0 0.1629 +0 0.0754 +0 0.0388 +0 0.2686 +0 0.1074 +0 0.3983 +0 0.1054 +0 0.0655 +0 0.0959 +0 0.0596 +0 0.1373 +0 0.0713 +0 0.1016 +0 0.1944 +0 0.3726 +0 0.0798 +0 0.0853 +0 0.4830 +0 0.0844 +0 0.1330 +0 0.4454 +0 0.0990 +0 0.0425 +0 0.1368 +0 0.1940 +0 0.2071 +0 0.1637 +0 0.0779 +0 0.1708 +0 0.1934 +0 0.0470 +0 0.1980 +0 0.0700 +0 0.0605 +0 0.0626 +0 0.1892 +0 0.0456 +0 0.0840 +0 0.1084 +0 0.0907 +0 0.3417 +0 0.0589 +0 0.2848 +0 0.0914 +0 0.2084 +0 0.0763 +0 0.0886 +0 0.1125 +0 0.0546 +0 0.1134 +0 0.0518 +0 0.1220 +0 0.1219 +0 0.6309 +0 0.1297 +0 0.1299 +0 0.0635 +0 0.1448 +0 0.1620 +0 0.0431 +0 0.0963 +0 0.0788 +0 0.0821 +0 0.0882 +0 0.1245 +0 0.2280 +0 0.0759 +0 0.0737 +0 0.1453 +0 0.1096 +0 0.0715 +0 0.1042 +0 0.0832 +0 0.2584 +0 0.0708 +0 0.1304 +0 0.0707 +0 0.3603 +0 0.1410 +0 0.2214 +0 0.1108 +0 0.1127 +0 0.0663 +0 0.0987 +0 0.5037 +0 0.0840 +0 0.1380 +0 0.2737 +0 0.0762 +0 0.2485 +0 0.0968 +0 0.1541 +0 0.0728 +0 0.0694 +0 0.2312 +0 0.3363 +0 0.3614 +0 0.1612 +0 0.2163 +0 0.1074 +0 0.0641 +0 0.2521 +0 0.0856 +0 0.0357 +0 0.0601 +0 0.0748 +0 0.0577 +0 0.1434 +0 0.0508 +0 0.2004 +0 0.1410 +0 0.1009 +0 0.1193 +0 0.1805 +0 0.7239 +0 0.1874 +0 0.3123 +0 0.2814 +0 0.0931 +0 0.5029 +0 0.0568 +0 0.1208 +0 0.2413 +0 0.0806 +0 0.1712 +0 0.6916 +0 0.0624 +0 0.0925 +0 0.1045 +0 0.1167 +0 0.1165 +0 0.0539 +0 0.1592 +0 0.0552 +0 0.1446 +0 0.2031 +0 0.1635 +0 0.2305 +0 0.2047 +0 0.0907 +0 0.2779 +0 0.0517 +0 0.2218 +0 0.1210 +0 0.2807 +0 0.2497 +0 0.1695 +0 0.0285 +0 0.4694 +0 0.2760 +0 0.1084 +0 0.3147 +0 0.0678 +0 0.5851 +0 0.2028 +0 0.1059 +0 0.0565 +0 0.0689 +0 0.0779 +0 0.1032 +0 0.5572 +0 0.1510 +0 0.0909 +0 0.0641 +0 0.1311 +0 0.4339 +0 0.0324 +0 0.0604 +0 0.0833 +0 0.0461 +0 0.0563 +0 0.0623 +0 0.2701 +0 0.2916 +0 0.0570 +0 0.1259 +0 0.0472 +0 0.1143 +0 0.0575 +0 0.1860 +0 0.1058 +0 0.0556 +0 0.1296 +0 0.2471 +0 0.0632 +0 0.0854 +0 0.1471 +0 0.0661 +0 0.0744 +0 0.1030 +0 0.0889 +0 0.1607 +0 0.1356 +0 0.2371 +0 0.0707 +0 0.2289 +0 0.3692 +0 0.1969 +0 0.1009 +0 0.1152 +0 0.0911 +0 0.0960 +0 0.0762 +0 0.1174 +0 0.2038 +0 0.1174 +0 0.0664 +0 0.1297 +0 0.0790 +0 0.1073 +0 0.0870 +0 0.0388 +0 0.0593 +0 0.0412 +0 0.0334 +0 0.0884 +0 0.2587 +0 0.1082 +1 0.7744 +0 0.0931 +0 0.1130 +0 0.1733 +0 0.1215 +0 0.1947 +0 0.0354 +0 0.1021 +0 0.1232 +1 0.8167 +0 0.1810 +0 0.0756 +0 0.1298 +0 0.1027 +0 0.2896 +0 0.1362 +0 0.0541 +0 0.1414 +0 0.1814 +0 0.4258 +0 0.1459 +0 0.1931 +0 0.0728 +0 0.3024 +0 0.0587 +0 0.2242 +0 0.0417 +0 0.0875 +0 0.0675 +0 0.1409 +0 0.0893 +0 0.0685 +0 0.0931 +0 0.1270 +0 0.0959 +0 0.1529 +0 0.0390 +0 0.0446 +0 0.0641 +0 0.0445 +0 0.1434 +0 0.1107 +0 0.0851 +0 0.0699 +0 0.2285 +0 0.1591 +0 0.0630 +0 0.0924 +0 0.6026 +0 0.6945 +0 0.0661 +0 0.0539 +0 0.2993 +0 0.0574 +0 0.1057 +0 0.0781 +0 0.1142 +0 0.1347 +0 0.0879 +0 0.0587 +0 0.1452 +0 0.1463 +0 0.1316 +0 0.0633 +0 0.0861 +0 0.2413 +0 0.0744 +0 0.0442 +0 0.0911 +0 0.0956 +0 0.1691 +0 0.1601 +0 0.0431 +0 0.2942 +0 0.1183 +0 0.1324 +0 0.0747 +0 0.1213 +0 0.1651 +0 0.0814 +0 0.0649 +0 0.0701 +0 0.1526 +0 0.2740 +0 0.0821 +0 0.2294 +0 0.0494 +0 0.5868 +0 0.1050 +0 0.0753 +0 0.0581 +0 0.5107 +0 0.2496 +0 0.1434 +0 0.2270 +0 0.1574 +0 0.0560 +0 0.0895 +0 0.1229 +0 0.0584 +0 0.1885 +0 0.6737 +1 0.7681 +0 0.0982 +0 0.4489 +0 0.0728 +0 0.1858 +0 0.3020 +0 0.0958 +0 0.1021 +0 0.3795 +0 0.0990 +0 0.0650 +0 0.1107 +0 0.1130 +0 0.1387 +0 0.0636 +0 0.1249 +0 0.1513 +0 0.1168 +0 0.0616 +0 0.0820 +0 0.3773 +0 0.0661 +0 0.0888 +0 0.7256 +0 0.1444 +0 0.1062 +0 0.1495 +0 0.0533 +0 0.1399 +0 0.0776 +0 0.0372 +0 0.1311 +0 0.0888 +0 0.0611 +1 0.8200 +0 0.1086 +0 0.0641 +0 0.2329 +0 0.2862 +0 0.2289 +0 0.6143 +0 0.1271 +0 0.0942 +0 0.0617 +0 0.0593 +0 0.0653 +0 0.4044 +0 0.0631 +0 0.3295 +0 0.0443 +0 0.1205 +0 0.0997 +0 0.0604 +0 0.0462 +0 0.1257 +0 0.0800 +0 0.2551 +0 0.6624 +0 0.1211 +1 0.8479 +0 0.0986 +0 0.0687 +0 0.1054 +0 0.1145 +0 0.2719 +0 0.3585 +0 0.2152 +0 0.0399 +0 0.1286 +0 0.0669 +0 0.0712 +0 0.6491 +0 0.1700 +0 0.1109 +0 0.1185 +0 0.0758 +0 0.0908 +0 0.0694 +0 0.1303 +0 0.0732 +0 0.3806 +1 0.8094 +0 0.0594 +0 0.0738 +0 0.0650 +0 0.0534 +0 0.0685 +0 0.1761 +0 0.1153 +0 0.1289 +0 0.1484 +0 0.1400 +1 0.8614 +0 0.0737 +0 0.1104 +0 0.3439 +0 0.6867 +0 0.2154 +0 0.1873 +0 0.0421 +0 0.0588 +0 0.2901 +0 0.0593 +0 0.2222 +0 0.0826 +0 0.1504 +0 0.0974 +0 0.0884 +0 0.1876 +0 0.0822 +0 0.0842 +0 0.1296 +1 0.2341 +0 0.1953 +0 0.1095 +0 0.1322 +0 0.0806 +0 0.0339 +0 0.2612 +0 0.1133 +0 0.0682 +0 0.0396 +0 0.1287 +0 0.0881 +0 0.2111 +0 0.1333 +0 0.2238 +0 0.1168 +0 0.1069 +0 0.2327 +0 0.0924 +0 0.0923 +0 0.0827 +0 0.0934 +0 0.1320 +0 0.1576 +0 0.1317 +0 0.1339 +0 0.2315 +0 0.1671 +0 0.0625 +0 0.1793 +0 0.0889 +0 0.0777 +0 0.0710 +0 0.0448 +0 0.0753 +0 0.0688 +0 0.0979 +0 0.0610 +0 0.0635 +0 0.0816 +0 0.1799 +0 0.0447 +0 0.1492 +0 0.0979 +0 0.1645 +0 0.1503 +0 0.0857 +0 0.1356 +0 0.0725 +0 0.0465 +0 0.1261 +0 0.1141 +0 0.0969 +0 0.0801 +0 0.1266 +0 0.0855 +0 0.0570 +0 0.1739 +0 0.1114 +0 0.2234 +0 0.0893 +0 0.0855 +0 0.1836 +0 0.0917 +0 0.0501 +0 0.1123 +0 0.0932 +0 0.1957 +0 0.1191 +0 0.2286 +0 0.0658 +0 0.7437 +0 0.1047 +0 0.0629 +0 0.1067 +0 0.1075 +0 0.0466 +0 0.0457 +0 0.0659 +0 0.3039 +0 0.1477 +0 0.1056 +0 0.2481 +0 0.2503 +0 0.0748 +0 0.0683 +0 0.0896 +0 0.0683 +0 0.1481 +0 0.0940 +0 0.3350 +0 0.2626 +0 0.2580 +0 0.1151 +0 0.1491 +0 0.2435 +0 0.0657 +0 0.1802 +0 0.1340 +0 0.1018 +0 0.0573 +0 0.1627 +0 0.1282 +0 0.3219 +0 0.0872 +0 0.0751 +0 0.2933 +0 0.1212 +0 0.0588 +0 0.1163 +1 0.8601 +0 0.0902 +0 0.1050 +0 0.1333 +0 0.3161 +0 0.1071 +0 0.0371 +0 0.1029 +0 0.0895 +0 0.2511 +0 0.0776 +0 0.0399 +0 0.0925 +0 0.1064 +0 0.0572 +0 0.0696 +0 0.2294 +0 0.1155 +0 0.1050 +0 0.0504 +0 0.0644 +0 0.0827 +0 0.1698 +0 0.0684 +0 0.1219 +0 0.1928 +1 0.8099 +0 0.1647 +0 0.6696 +0 0.0671 +0 0.0806 +0 0.0570 +0 0.0591 +0 0.1247 +0 0.1145 +0 0.0550 +0 0.1124 +0 0.2126 +0 0.1857 +0 0.2379 +0 0.0658 +0 0.0850 +0 0.1385 +0 0.0473 +0 0.1735 +0 0.0882 +0 0.1354 +0 0.1024 +0 0.0380 +0 0.0962 +0 0.0540 +0 0.0841 +0 0.0522 +0 0.1227 +0 0.5015 +0 0.1229 +0 0.0925 +0 0.0984 +0 0.1122 +0 0.0898 +0 0.0777 +0 0.0955 +0 0.0685 +0 0.1489 +0 0.0998 +0 0.1756 +0 0.0871 +0 0.0647 +0 0.2970 +0 0.0869 +0 0.2664 +0 0.0734 +0 0.0943 +0 0.0798 +0 0.0736 +0 0.1352 +0 0.1915 +0 0.0907 +0 0.1441 +0 0.1222 +0 0.0531 +0 0.2216 +0 0.0935 +0 0.0654 +0 0.0724 +0 0.5537 +0 0.3703 +0 0.1824 +1 0.7937 +0 0.3256 +0 0.0678 +0 0.1087 +0 0.1562 +0 0.0730 +0 0.3675 +0 0.3666 +0 0.1329 +0 0.0883 +0 0.1771 +0 0.0916 +0 0.3027 +0 0.1102 +0 0.0920 +0 0.0558 +0 0.0796 +0 0.1028 +0 0.1813 +0 0.0973 +0 0.1111 +0 0.1728 +0 0.0585 +0 0.1272 +0 0.1644 +0 0.3703 +0 0.0952 +0 0.0838 +0 0.1202 +0 0.0706 +0 0.0903 +0 0.0951 +0 0.1666 +0 0.0769 +0 0.0863 +0 0.1817 +0 0.0818 +0 0.0911 +0 0.0664 +0 0.1909 +0 0.1699 +0 0.0991 +0 0.0625 +0 0.2006 +0 0.0606 +0 0.1236 +0 0.1006 +0 0.0545 +0 0.0903 +0 0.1549 +0 0.2819 +0 0.1611 +0 0.1350 +0 0.1885 +0 0.2180 +0 0.1287 +0 0.0493 +0 0.1120 +0 0.2821 +0 0.4972 +0 0.0629 +0 0.0659 +0 0.1756 +0 0.2168 +0 0.0727 +0 0.1521 +0 0.2153 +0 0.2692 +0 0.0818 +0 0.0555 +0 0.0905 +0 0.4655 +0 0.2309 +0 0.0754 +0 0.0862 +0 0.0678 +0 0.1581 +0 0.4047 +0 0.0735 +0 0.0705 +0 0.0489 +0 0.0433 +0 0.1213 +0 0.0419 +0 0.5588 +0 0.0611 +0 0.0693 +0 0.1102 +0 0.1837 +0 0.5627 +0 0.2396 +0 0.0751 +0 0.1870 +0 0.1660 +0 0.0800 +0 0.1631 +0 0.0807 +0 0.0382 +1 0.8525 +0 0.0439 +0 0.0586 +0 0.0956 +0 0.0826 +0 0.0950 +0 0.2325 +0 0.1306 +0 0.1988 +0 0.1542 +0 0.1264 +0 0.0975 +1 0.8546 +0 0.0867 +0 0.1217 +0 0.0880 +0 0.2096 +0 0.1287 +0 0.0654 +0 0.1324 +0 0.1066 +0 0.0830 +0 0.0974 +0 0.1482 +0 0.0433 +0 0.0785 +0 0.0755 +0 0.1012 +0 0.0728 +0 0.1724 +0 0.4811 +0 0.0852 +0 0.0744 +0 0.1577 +0 0.2453 +0 0.0829 +0 0.1654 +0 0.0708 +0 0.0671 +0 0.0775 +0 0.0606 +0 0.0589 +0 0.0508 +0 0.1133 +0 0.1648 +0 0.0676 +0 0.1248 +0 0.2651 +0 0.1663 +0 0.1983 +0 0.0916 +0 0.2806 +0 0.0572 +0 0.0914 +0 0.0953 +0 0.0757 +0 0.0715 +0 0.0500 +0 0.0504 +0 0.0486 +0 0.1884 +0 0.1740 +0 0.0350 +0 0.3058 +1 0.7682 +0 0.1498 +0 0.3169 +0 0.0892 +0 0.1225 +0 0.1140 +0 0.1000 +0 0.0865 +0 0.1439 +0 0.0977 +0 0.0817 +0 0.0430 +0 0.0775 +0 0.0415 +0 0.0476 +0 0.0702 +0 0.0764 +0 0.0765 +0 0.1207 +0 0.1222 +0 0.0877 +0 0.2508 +0 0.1364 +0 0.0722 +0 0.0815 +0 0.1359 +0 0.1501 +0 0.2545 +0 0.1140 +0 0.0755 +0 0.0839 +0 0.3673 +0 0.1194 +0 0.3021 +0 0.1341 +0 0.0816 +0 0.0761 +0 0.1374 +0 0.0946 +0 0.1004 +0 0.1335 +0 0.2076 +0 0.1234 +0 0.5589 +0 0.0904 +0 0.2271 +0 0.1388 +0 0.0520 +0 0.0891 +0 0.0927 +0 0.1326 +0 0.1864 +0 0.0835 +0 0.0810 +0 0.1462 +0 0.1789 +0 0.1927 +0 0.1258 +0 0.0491 +0 0.0423 +0 0.2085 +0 0.0517 +0 0.4130 +0 0.1193 +0 0.2615 +0 0.0996 +0 0.0729 +0 0.0834 +0 0.0738 +0 0.0460 +0 0.1458 +0 0.1744 +0 0.1297 +0 0.0742 +0 0.1973 +0 0.0666 +0 0.0533 +0 0.0995 +0 0.0559 +0 0.5497 +0 0.1583 +0 0.1069 +0 0.1282 +0 0.0888 +0 0.2359 +0 0.1144 +0 0.0528 +0 0.0524 +0 0.3421 +0 0.0715 +0 0.2676 +0 0.0424 +0 0.1290 +0 0.2242 +0 0.0872 +0 0.0362 +0 0.1495 +0 0.0465 +0 0.3095 +0 0.1054 +0 0.0351 +0 0.0718 +0 0.0658 +0 0.0507 +0 0.1208 +0 0.1725 +0 0.1517 +0 0.0639 +0 0.0529 +0 0.3363 +0 0.1268 +0 0.1374 +0 0.2563 +0 0.0728 +0 0.0893 +0 0.1468 +0 0.3289 +0 0.0671 +0 0.4187 +0 0.0442 +0 0.0858 +0 0.0643 +0 0.1320 +0 0.0822 +0 0.0699 +0 0.1420 +0 0.0985 +0 0.0739 +0 0.0813 +0 0.0829 +0 0.0444 +0 0.1175 +0 0.3352 +0 0.2603 +0 0.0742 +0 0.0976 +0 0.0682 +0 0.1612 +0 0.1612 +0 0.1003 +0 0.2057 +0 0.0854 +0 0.2350 +0 0.0931 +0 0.0472 +0 0.1176 +1 0.8149 +0 0.0990 +0 0.4318 +0 0.1244 +0 0.0639 +0 0.0764 +0 0.0506 +1 0.8917 +0 0.1533 +0 0.0799 +0 0.1627 +0 0.2129 +0 0.0866 +0 0.4396 +0 0.0751 +0 0.1110 +0 0.0643 +0 0.0593 +0 0.0833 +0 0.0495 +0 0.1677 +0 0.7178 +0 0.0575 +0 0.0709 +0 0.0723 +0 0.0631 +0 0.2125 +0 0.0722 +0 0.1039 +0 0.1497 +0 0.0449 +0 0.1409 +0 0.0966 +0 0.0838 +0 0.0734 +0 0.1050 +0 0.0874 +0 0.1156 +0 0.0877 +0 0.3107 +0 0.1820 +0 0.0944 +0 0.2502 +0 0.1515 +0 0.2181 +0 0.0698 +0 0.1143 +0 0.0825 +0 0.0448 +0 0.0808 +0 0.0974 +0 0.1366 +0 0.0492 +0 0.0747 +0 0.4854 +0 0.1289 +0 0.0922 +0 0.0645 +0 0.1050 +0 0.1192 +0 0.1011 +0 0.0736 +0 0.1049 +0 0.2091 +0 0.0431 +0 0.2077 +0 0.0731 +0 0.0714 +0 0.0416 +0 0.5453 +0 0.1293 +0 0.0594 +0 0.0383 +0 0.0474 +0 0.1345 +0 0.4582 +0 0.0799 +1 0.8181 +0 0.1117 +0 0.0907 +0 0.1031 +0 0.1576 +0 0.0558 +0 0.0566 +0 0.0931 +0 0.0496 +0 0.0996 +0 0.1904 +0 0.0622 +0 0.5875 +0 0.0593 +0 0.1582 +0 0.4938 +0 0.0457 +0 0.0918 +0 0.2320 +0 0.0783 +0 0.2395 +0 0.1604 +0 0.1851 +0 0.2703 +0 0.1994 +0 0.1209 +0 0.1019 +0 0.0868 +0 0.0954 +0 0.1328 +0 0.0711 +0 0.0705 +0 0.4834 +0 0.0936 +0 0.0886 +0 0.1239 +0 0.1048 +0 0.1081 +0 0.1192 +0 0.1105 +0 0.0574 +0 0.1975 +0 0.1304 +0 0.0674 +0 0.1804 +0 0.3183 +0 0.0682 +0 0.1060 +0 0.0680 +0 0.0841 +0 0.1449 +0 0.0428 +0 0.2193 +0 0.2328 +0 0.0690 +0 0.5484 +0 0.0860 +0 0.0541 +0 0.1374 +0 0.5128 +0 0.1678 +0 0.1383 +0 0.1793 +0 0.0979 +0 0.1075 +0 0.1061 +0 0.1098 +0 0.1977 +0 0.2583 +0 0.0834 +0 0.1619 +0 0.1658 +0 0.1133 +0 0.0971 +0 0.0996 +1 0.7823 +0 0.1026 +0 0.0831 +0 0.0636 +0 0.1910 +0 0.0628 +0 0.2580 +0 0.1904 +0 0.0653 +0 0.0656 +0 0.0501 +0 0.2644 +0 0.0875 +0 0.0674 +0 0.0613 +0 0.0736 +0 0.1476 +0 0.0844 +0 0.1104 +0 0.0573 +0 0.1382 +0 0.0534 +0 0.0552 +0 0.0554 +0 0.0478 +0 0.1454 +0 0.2103 +0 0.1757 +0 0.1397 +0 0.2117 +0 0.0929 +0 0.2936 +0 0.0829 +0 0.2141 +0 0.0495 +0 0.2955 +0 0.1213 +0 0.1083 +0 0.3666 +0 0.0575 +0 0.1100 +1 0.9108 +0 0.0935 +0 0.1370 +0 0.1613 +0 0.1270 +0 0.1339 +0 0.0369 +0 0.0789 +0 0.0812 +0 0.3993 +0 0.1386 +0 0.1316 +0 0.1003 +0 0.0571 +0 0.1698 +0 0.1359 +0 0.0851 +0 0.0621 +0 0.1032 +0 0.1178 +0 0.1510 +0 0.0909 +0 0.1490 +0 0.0931 +0 0.1144 +0 0.2061 +0 0.1322 +0 0.0488 +0 0.4989 +0 0.1211 +0 0.1134 +0 0.1729 +0 0.0931 +0 0.0826 +0 0.0881 +0 0.1197 +0 0.0756 +1 0.8534 +0 0.1919 +0 0.0667 +0 0.0465 +0 0.1151 +0 0.0651 +0 0.1906 +0 0.1548 +0 0.0662 +0 0.0776 +0 0.0835 +0 0.0630 +0 0.1317 +0 0.2492 +0 0.0569 +0 0.1036 +0 0.0631 +0 0.6992 +0 0.0560 +0 0.1091 +0 0.1031 +0 0.1459 +0 0.1139 +0 0.0449 +0 0.1687 +0 0.2117 +0 0.0743 +0 0.0336 +0 0.1789 +0 0.2087 +0 0.0919 +0 0.1275 +0 0.1529 +0 0.1076 +0 0.0497 +0 0.1381 +0 0.5554 +0 0.1533 +0 0.2150 +0 0.2271 +1 0.8008 +0 0.5616 +0 0.2542 +0 0.0855 +0 0.1646 +1 0.3097 +0 0.0511 +0 0.0476 +0 0.1652 +0 0.1094 +0 0.0386 +0 0.0571 +0 0.1357 +0 0.0406 +0 0.1223 +0 0.0340 +0 0.0796 +0 0.0869 +0 0.1952 +0 0.0706 +0 0.0556 +0 0.4653 +0 0.1898 +0 0.1531 +0 0.1322 +0 0.7097 +0 0.0913 +0 0.1261 +0 0.1002 +0 0.2773 +0 0.2774 +0 0.1249 +0 0.0396 +0 0.2056 +0 0.1651 +0 0.6316 +0 0.2436 +0 0.1191 +0 0.1812 +0 0.0402 +0 0.2934 +0 0.1848 +0 0.1422 +0 0.5605 +0 0.0777 +0 0.1640 +0 0.0676 +0 0.0678 +0 0.0790 +0 0.1230 +0 0.0885 +0 0.0982 +0 0.1373 +0 0.0904 +0 0.0533 +0 0.0793 +0 0.1438 +0 0.1317 +0 0.0902 +0 0.1174 +0 0.1252 +0 0.1309 +0 0.5336 +0 0.2460 +0 0.1095 +0 0.1028 +0 0.2278 +0 0.2162 +0 0.0375 +0 0.0706 +0 0.3468 +0 0.0584 +0 0.1392 +1 0.8076 +0 0.0934 +0 0.0866 +0 0.5886 +0 0.0473 +0 0.0542 +1 0.7773 +0 0.3138 +0 0.2492 +0 0.0696 +0 0.1407 +0 0.0837 +0 0.0761 +0 0.0947 +0 0.0974 +1 0.8033 +0 0.1012 +0 0.1225 +0 0.1491 +0 0.1066 +1 0.3403 +0 0.1488 +0 0.0909 +0 0.1828 +0 0.5546 +0 0.0800 +0 0.7352 +0 0.1660 +0 0.0728 +0 0.1980 +0 0.1937 +0 0.3169 +0 0.1441 +0 0.1063 +0 0.0560 +0 0.1425 +0 0.1065 +0 0.1870 +0 0.0872 +0 0.1110 +0 0.0757 +0 0.0640 +0 0.1605 +0 0.1159 +0 0.1391 +0 0.3857 +0 0.0654 +0 0.0374 +0 0.0937 +0 0.0398 +0 0.0462 +0 0.4399 +0 0.5559 +0 0.6740 +0 0.1568 +0 0.1214 +0 0.2087 +0 0.1032 +0 0.2390 +0 0.0882 +0 0.0872 +0 0.6071 +0 0.1259 +0 0.1511 +0 0.0788 +0 0.0848 +0 0.1548 +0 0.0715 +0 0.0389 +0 0.1040 +0 0.1882 +0 0.1041 +0 0.1247 +0 0.0622 +0 0.1161 +0 0.0881 +0 0.0769 +0 0.1169 +0 0.1204 +0 0.2331 +0 0.1439 +0 0.0768 +0 0.1339 +0 0.0732 +0 0.2490 +0 0.1034 +0 0.0826 +0 0.1522 +0 0.0787 +0 0.2483 +0 0.2316 +0 0.2080 +0 0.1226 +0 0.2054 +0 0.1220 +0 0.1300 +0 0.0780 +0 0.0750 +0 0.1013 +0 0.6883 +0 0.0693 +0 0.1488 +0 0.1362 +0 0.0673 +0 0.1033 +0 0.1483 +0 0.0769 +0 0.0289 +0 0.1094 +0 0.1197 +0 0.2139 +1 0.7886 +0 0.1334 +0 0.0946 +0 0.0631 +0 0.0860 +0 0.4052 +0 0.1103 +0 0.0867 +0 0.2474 +0 0.2116 +0 0.0867 +0 0.0569 +0 0.0415 +0 0.0779 +0 0.1492 +0 0.0884 +0 0.1488 +0 0.1681 +0 0.1075 +0 0.1004 +0 0.0620 +1 0.7956 +0 0.2158 +0 0.3222 +0 0.0852 +0 0.0990 +0 0.1401 +0 0.2548 +0 0.1044 +0 0.1105 +0 0.0967 +0 0.3294 +0 0.0633 +1 0.8028 +0 0.0455 +0 0.1050 +0 0.1695 +0 0.1424 +0 0.0301 +0 0.1102 +0 0.1324 +0 0.1758 +0 0.1623 +0 0.0760 +0 0.0841 +0 0.0828 +0 0.0458 +0 0.0854 +0 0.0489 +0 0.1197 +0 0.1431 +0 0.1075 +0 0.1175 +0 0.4202 +0 0.1351 +0 0.1476 +0 0.0923 +0 0.1855 +0 0.1338 +0 0.0885 +0 0.0747 +0 0.3877 +0 0.5057 +0 0.1549 +0 0.2199 +0 0.4325 +0 0.1221 +0 0.1703 +0 0.0734 +0 0.0823 +0 0.0984 +0 0.0895 +0 0.1608 +0 0.0861 +0 0.1841 +0 0.1080 +0 0.1513 +0 0.0876 +0 0.3440 +1 0.8239 +0 0.1037 +0 0.0619 +0 0.1965 +0 0.0855 +0 0.1178 +0 0.5695 +0 0.1236 +0 0.2281 +0 0.0528 +0 0.1788 +0 0.1253 +0 0.0472 +0 0.1296 +0 0.0934 +0 0.2165 +0 0.6122 +0 0.1980 +0 0.0921 +0 0.4314 +0 0.0580 +0 0.3895 +0 0.1063 +0 0.0733 +0 0.1407 +0 0.0538 +0 0.0696 +0 0.1735 +0 0.0726 +0 0.1580 +0 0.1079 +0 0.2950 +0 0.1264 +0 0.0974 +0 0.1915 +0 0.1232 +0 0.0915 +0 0.0998 +0 0.0584 +0 0.1586 +0 0.0610 +0 0.2634 +0 0.1161 +0 0.0374 +0 0.0629 +0 0.1227 +0 0.1235 +0 0.0384 +0 0.2032 +0 0.1115 +0 0.2713 +0 0.0538 +0 0.1769 +0 0.0511 +0 0.1216 +0 0.0930 +0 0.0959 +0 0.0630 +0 0.1034 +0 0.2762 +0 0.1794 +0 0.1376 +0 0.0599 +0 0.5009 +1 0.7986 +0 0.1413 +0 0.0571 +0 0.0975 +0 0.2052 +0 0.1308 +0 0.1414 +0 0.0721 +0 0.0946 +0 0.0932 +0 0.0460 +0 0.0465 +0 0.0909 +0 0.1379 +0 0.0954 +0 0.1147 +0 0.0678 +0 0.0552 +0 0.0528 +0 0.0808 +0 0.0816 +0 0.1059 +0 0.1771 +0 0.2555 +1 0.8056 +0 0.1457 +0 0.1273 +0 0.0915 +1 0.7804 +0 0.1498 +0 0.1157 +0 0.0669 +0 0.1489 +0 0.3013 +0 0.0981 +0 0.0794 +0 0.0746 +0 0.1411 +0 0.1189 +0 0.1667 +0 0.0488 +0 0.0836 +0 0.1277 +0 0.1117 +0 0.1567 +0 0.0710 +0 0.1245 +0 0.0698 +0 0.1123 +0 0.0598 +0 0.1550 +0 0.1352 +0 0.1469 +0 0.6959 +0 0.0689 +0 0.0803 +0 0.1198 +0 0.0605 +0 0.0567 +0 0.1326 +0 0.0408 +0 0.0857 +0 0.0624 +0 0.1632 +0 0.1700 +0 0.3432 +0 0.0916 +0 0.1165 +0 0.2580 +0 0.3205 +0 0.3526 +0 0.0869 +0 0.2449 +0 0.0895 +0 0.2125 +0 0.0991 +0 0.1432 +0 0.0956 +0 0.0936 +0 0.1744 +0 0.0855 +0 0.0784 +0 0.1478 +0 0.0827 +0 0.1172 +0 0.0462 +0 0.1149 +0 0.1160 +0 0.1014 +0 0.0494 +0 0.2632 +0 0.1249 +0 0.0668 +0 0.0814 +0 0.1885 +0 0.0720 +0 0.0332 +0 0.1205 +0 0.4115 +0 0.0834 +0 0.0946 +0 0.0940 +1 0.8152 +0 0.1706 +0 0.1374 +0 0.1087 +0 0.0715 +0 0.0632 +0 0.0495 +0 0.5723 +0 0.2289 +0 0.1806 +0 0.0592 +0 0.2081 +0 0.1118 +0 0.0848 +0 0.1224 +0 0.0702 +0 0.1309 +0 0.2403 +0 0.0591 +0 0.0560 +0 0.1644 +0 0.0930 +0 0.1331 +0 0.0629 +0 0.1913 +0 0.0401 +0 0.1122 +0 0.0964 +0 0.2381 +0 0.1097 +0 0.1549 +0 0.6984 +0 0.0400 +0 0.4987 +0 0.1166 +0 0.2015 +0 0.0923 +0 0.0622 +0 0.1310 +0 0.0828 +0 0.2140 +0 0.1728 +0 0.0608 +0 0.1050 +0 0.0749 +0 0.1541 +0 0.1151 +0 0.0591 +0 0.0736 +0 0.3405 +0 0.0357 +0 0.1281 +0 0.1008 +0 0.1015 +0 0.0689 +0 0.1067 +0 0.0396 +0 0.0499 +0 0.1239 +0 0.0983 +0 0.1164 +0 0.2274 +0 0.2526 +0 0.1199 +0 0.1583 +0 0.1860 +0 0.1824 +0 0.0880 +0 0.1116 +0 0.0646 +0 0.0480 +0 0.1545 +0 0.0558 +0 0.1100 +0 0.1006 +0 0.1050 +0 0.1029 +0 0.1661 +0 0.0722 +0 0.1467 +0 0.0424 +0 0.1492 +0 0.1094 +0 0.1219 +0 0.0662 +0 0.1432 +0 0.0667 +0 0.0904 +0 0.0966 +0 0.1516 +0 0.0595 +0 0.0851 +0 0.0974 +0 0.1531 +0 0.1137 +0 0.1176 +0 0.0504 +0 0.1253 +0 0.0545 +0 0.0627 +0 0.0681 +0 0.1511 +0 0.1956 +0 0.0421 +0 0.1756 +0 0.1952 +1 0.8162 +0 0.0879 +0 0.1463 +1 0.8065 +0 0.1239 +0 0.0467 +0 0.0633 +0 0.0838 +0 0.0739 +0 0.0934 +0 0.1149 +0 0.1329 +0 0.0431 +0 0.2881 +0 0.2952 +0 0.4055 +0 0.4600 +0 0.2016 +0 0.1857 +0 0.0552 +0 0.1163 +0 0.1203 +0 0.0853 +0 0.0655 +0 0.1181 +0 0.0683 +0 0.0466 +0 0.1316 +0 0.1288 +0 0.0994 +0 0.0894 +0 0.1229 +0 0.1078 +0 0.0409 +0 0.1329 +0 0.3437 +0 0.0503 +0 0.0308 +0 0.1199 +0 0.0706 +0 0.0595 +0 0.6996 +1 0.8792 +0 0.0891 +0 0.0964 +0 0.0486 +0 0.0753 +0 0.0486 +0 0.0555 +0 0.0897 +0 0.0783 +0 0.1824 +0 0.4766 +0 0.3021 +0 0.0560 +0 0.0697 +0 0.2536 +0 0.0349 +0 0.0587 +0 0.0630 +0 0.0378 +0 0.1480 +0 0.0940 +1 0.8209 +0 0.2178 +0 0.1298 +0 0.0608 +0 0.0837 +0 0.2716 +0 0.0493 +0 0.2465 +0 0.1051 +0 0.2388 +0 0.0332 +0 0.0897 +1 0.7672 +0 0.1765 +0 0.1926 +0 0.0759 +0 0.1773 +0 0.1458 +0 0.0976 +0 0.0530 +0 0.0770 +0 0.1207 +0 0.0676 +0 0.6504 +0 0.0418 +0 0.1237 +0 0.1359 +0 0.1161 +0 0.0679 +0 0.0501 +0 0.1069 +0 0.0704 +0 0.0693 +0 0.0369 +0 0.0695 +0 0.0652 +0 0.1771 +0 0.1118 +0 0.0550 +0 0.2296 +0 0.1787 +0 0.1026 +0 0.0401 +0 0.0517 +0 0.1767 +0 0.1199 +0 0.0801 +0 0.0697 +0 0.0827 +0 0.2369 +0 0.0736 +0 0.0757 +0 0.1583 +0 0.1136 +1 0.8119 +0 0.1223 +0 0.0928 +0 0.0854 +0 0.0729 +0 0.1586 +0 0.0355 +0 0.0536 +0 0.0441 +0 0.1211 +0 0.0462 +0 0.1080 +0 0.1191 +1 0.8587 +0 0.0713 +0 0.1094 +0 0.0817 +0 0.1261 +0 0.1753 +1 0.8586 +0 0.1760 +0 0.2178 +0 0.1150 +0 0.0705 +0 0.1494 +0 0.1117 +0 0.0661 +0 0.2677 +0 0.0897 +0 0.2158 +0 0.0712 +0 0.2711 +0 0.0628 +0 0.2237 +0 0.2931 +0 0.1126 +0 0.0733 +0 0.1232 +0 0.0632 +0 0.2004 +0 0.0800 +0 0.0442 +0 0.0421 +0 0.3015 +0 0.0409 +0 0.1814 +0 0.1218 +0 0.1224 +0 0.3621 +0 0.1079 +0 0.4965 +0 0.1664 +0 0.1692 +0 0.0721 +0 0.0905 +0 0.1046 +0 0.2158 +0 0.0654 +0 0.1693 +0 0.0863 +0 0.0711 +0 0.1653 +0 0.0853 +0 0.1820 +0 0.0607 +0 0.1602 +0 0.1229 +0 0.0785 +0 0.2361 +0 0.1067 +0 0.1450 +0 0.1029 +0 0.0969 +0 0.1494 +0 0.1350 +0 0.2689 +0 0.1556 +0 0.0509 +0 0.0593 +0 0.2429 +0 0.1068 +0 0.0650 +0 0.1233 +0 0.0662 +0 0.0994 +0 0.4103 +0 0.0964 +0 0.1336 +0 0.1062 +0 0.0706 +0 0.0909 +0 0.1621 +1 0.8144 +0 0.1079 +0 0.1647 +0 0.0669 +0 0.1267 +0 0.0414 +0 0.1863 +0 0.3276 +0 0.0605 +0 0.2236 +0 0.1289 +0 0.0555 +0 0.1431 +0 0.1593 +0 0.0374 +0 0.1355 +0 0.3243 +0 0.0842 +0 0.1457 +0 0.0707 +0 0.1243 +0 0.1646 +0 0.2204 +0 0.0546 +0 0.0784 +0 0.0732 +0 0.0909 +0 0.1671 +0 0.1688 +0 0.0949 +0 0.3105 +0 0.0474 +0 0.3665 +0 0.1346 +0 0.6931 +0 0.1869 +0 0.1190 +0 0.1598 +0 0.1172 +0 0.0980 +0 0.0905 +0 0.1792 +0 0.0643 +0 0.0584 +0 0.0662 +0 0.0867 +0 0.1108 +0 0.2324 +0 0.1392 +0 0.1199 +0 0.1700 +0 0.0482 +0 0.3241 +0 0.1669 +0 0.1206 +0 0.0438 +0 0.1350 +0 0.0914 +0 0.0374 +0 0.1792 +0 0.1249 +0 0.1413 +0 0.0991 +0 0.2254 +0 0.1209 +0 0.3184 +0 0.0555 +0 0.0960 +0 0.1033 +0 0.0364 +0 0.1293 +0 0.1124 +0 0.1147 +0 0.2070 +0 0.1403 +0 0.1188 +0 0.1638 +0 0.0854 +0 0.2314 +0 0.3292 +0 0.1192 +0 0.0325 +0 0.1383 +0 0.0781 +0 0.0701 +0 0.0408 +0 0.1587 +0 0.1305 +0 0.6000 +0 0.4827 +0 0.3476 +0 0.2252 +0 0.2885 +0 0.0863 +0 0.0817 +0 0.0871 +0 0.0579 +0 0.1381 +0 0.1780 +0 0.1134 +0 0.2495 +0 0.0476 +0 0.2696 +0 0.2529 +0 0.0778 +0 0.0688 +0 0.0768 +0 0.4715 +0 0.1007 +0 0.2097 +0 0.1291 +0 0.1157 +0 0.0670 +0 0.0862 +0 0.0574 +1 0.8301 +0 0.0510 +0 0.2987 +0 0.0551 +0 0.3505 +0 0.1174 +0 0.0460 +0 0.1018 +0 0.1107 +0 0.0483 +0 0.1099 +0 0.1528 +0 0.0776 +0 0.0983 +0 0.0968 +0 0.0525 +0 0.0806 +0 0.0653 +0 0.0594 +0 0.4337 +0 0.1381 +0 0.2135 +0 0.0854 +0 0.1725 +0 0.1474 +0 0.2074 +0 0.2877 +0 0.1296 +0 0.0630 +0 0.0613 +0 0.0992 +0 0.3793 +0 0.0450 +0 0.0655 +0 0.1308 +0 0.0390 +0 0.1147 +0 0.0871 +0 0.1458 +0 0.1297 +0 0.0844 +0 0.1072 +0 0.3059 +0 0.1912 +0 0.1435 +0 0.0944 +0 0.1478 +1 0.8055 +0 0.0759 +0 0.1054 +0 0.0453 +0 0.0885 +0 0.0467 +0 0.0891 +0 0.1410 +0 0.1329 +0 0.1686 +0 0.0452 +0 0.2153 +0 0.0515 +0 0.1945 +0 0.1142 +0 0.1867 +0 0.1875 +0 0.1263 +0 0.0389 +0 0.2044 +0 0.2919 +0 0.0525 +0 0.6260 +0 0.1288 +0 0.0945 +1 0.7621 +0 0.1621 +0 0.0651 +0 0.1378 +0 0.1277 +0 0.0614 +0 0.0698 +0 0.0953 +0 0.1720 +0 0.0758 +0 0.1121 +0 0.0967 +0 0.1807 +0 0.0752 +0 0.0907 +0 0.3830 +0 0.0561 +0 0.1476 +0 0.0903 +0 0.1160 +0 0.0680 +0 0.0793 +0 0.1766 +0 0.1373 +0 0.1345 +0 0.1138 +0 0.0500 +0 0.1583 +0 0.0991 +0 0.0533 +0 0.0904 +0 0.0910 +0 0.1427 +0 0.0592 +0 0.2008 +0 0.1110 +0 0.0417 +1 0.7918 +0 0.1569 +0 0.0767 +0 0.0964 +0 0.0636 +0 0.1040 +0 0.0403 +0 0.0473 +0 0.0588 +0 0.1661 +0 0.0835 +0 0.0676 +0 0.0620 +0 0.0395 +0 0.1824 +0 0.0882 +0 0.0831 +0 0.1477 +0 0.0848 +0 0.0439 +0 0.0572 +0 0.2173 +0 0.1280 +0 0.0452 +0 0.1792 +0 0.0700 +0 0.2189 +0 0.6930 +0 0.0323 +0 0.1435 +0 0.0794 +0 0.2357 +0 0.0580 +0 0.3848 +0 0.0559 +0 0.1610 +0 0.1834 +0 0.0886 +0 0.1452 +0 0.4322 +0 0.0786 +0 0.3067 +0 0.1611 +0 0.2101 +0 0.2896 +0 0.0965 +0 0.1486 +0 0.4093 +0 0.0574 +0 0.0521 +0 0.1283 +0 0.1388 +0 0.4488 +0 0.1562 +0 0.0933 +0 0.1048 +0 0.0656 +0 0.0783 +1 0.8457 +1 0.8633 +0 0.0472 +0 0.1399 +0 0.0714 +0 0.2347 +0 0.1146 +0 0.1704 +0 0.0810 +0 0.0812 +0 0.0866 +0 0.1557 +0 0.1743 +0 0.0783 +0 0.2442 +0 0.1273 +0 0.0949 +0 0.2008 +0 0.0397 +0 0.0694 +0 0.0940 +0 0.1000 +0 0.1628 +0 0.1733 +0 0.1166 +0 0.0736 +0 0.4379 +0 0.1305 +0 0.0886 +0 0.1114 +0 0.1416 +0 0.1019 +0 0.0759 +0 0.0771 +1 0.8179 +0 0.0615 +0 0.0563 +0 0.1279 +0 0.6688 +0 0.1212 +0 0.0853 +0 0.0871 +0 0.1431 +0 0.0977 +0 0.0679 +0 0.0674 +0 0.0689 +0 0.0852 +0 0.2038 +0 0.1080 +0 0.0514 +0 0.1775 +0 0.0952 +0 0.3129 +0 0.0803 +0 0.1412 +0 0.1017 +0 0.1560 +0 0.0528 +0 0.2242 +0 0.1072 +0 0.1640 +0 0.1378 +0 0.2175 +0 0.1272 +0 0.1516 +0 0.0451 +0 0.0521 +0 0.1604 +0 0.2577 +0 0.0515 +0 0.2987 +0 0.0407 +0 0.0651 +0 0.1667 +0 0.2162 +0 0.1411 +0 0.0908 +0 0.1475 +0 0.1006 +0 0.1051 +0 0.1437 +0 0.0919 +0 0.1241 +0 0.0725 +0 0.2794 +0 0.0930 +0 0.1081 +0 0.0461 +0 0.0530 +0 0.2121 +0 0.0745 +0 0.1269 +0 0.0604 +0 0.0517 +0 0.0604 +0 0.1327 +0 0.0478 +0 0.1237 +0 0.0931 +0 0.1277 +0 0.0861 +0 0.1142 +0 0.0865 +0 0.0730 +0 0.0685 +0 0.0678 +0 0.1493 +0 0.0699 +0 0.0673 +0 0.0845 +0 0.2129 +0 0.0566 +0 0.1047 +0 0.2556 +0 0.1020 +0 0.0428 +0 0.0944 +0 0.1008 +0 0.0924 +0 0.1296 +0 0.2521 +0 0.2149 +0 0.0892 +0 0.1623 +0 0.0815 +0 0.5059 +0 0.1236 +0 0.0374 +0 0.0543 +0 0.0856 +0 0.0573 +0 0.2595 +0 0.0819 +0 0.0654 +0 0.0593 +0 0.0849 +0 0.0719 +0 0.1217 +0 0.1651 +0 0.1416 +0 0.1002 +0 0.1611 +0 0.0707 +0 0.1032 +0 0.1108 +0 0.1569 +0 0.1320 +0 0.0510 +0 0.0835 +0 0.1065 +0 0.0602 +0 0.1286 +0 0.1055 +0 0.3214 +0 0.1295 +0 0.0614 +0 0.0633 +0 0.3453 +0 0.0752 +0 0.2940 +0 0.0560 +0 0.0855 +0 0.0921 +0 0.2313 +0 0.1403 +0 0.0895 +0 0.1739 +0 0.0681 +0 0.0748 +0 0.1495 +0 0.0614 +0 0.1652 +0 0.1076 +0 0.1199 +0 0.0744 +0 0.0504 +0 0.1112 +0 0.2740 +0 0.1987 +0 0.1364 +0 0.2523 +0 0.0704 +0 0.2290 +0 0.0693 +0 0.2514 +0 0.0986 +0 0.0981 +0 0.1013 +0 0.1209 +0 0.0627 +0 0.0640 +0 0.0976 +0 0.0889 +0 0.1598 +0 0.1022 +0 0.1526 +0 0.0794 +1 0.8320 +0 0.0692 +0 0.0408 +0 0.0954 +0 0.0447 +0 0.0686 +0 0.0576 +0 0.6793 +0 0.0823 +0 0.4207 +0 0.0496 +0 0.0644 +0 0.0897 +0 0.0942 +0 0.1748 +0 0.1215 +0 0.1859 +0 0.0766 +0 0.0541 +0 0.1053 +0 0.0834 +0 0.2715 +0 0.0945 +0 0.1450 +0 0.2213 +0 0.0504 +0 0.0455 +0 0.2595 +0 0.2533 +0 0.0597 +0 0.1417 +0 0.0369 +0 0.0524 +0 0.1942 +0 0.0845 +0 0.1568 +0 0.0803 +0 0.1565 +0 0.0938 +0 0.1772 +0 0.0565 +0 0.1204 +0 0.0723 +0 0.0952 +0 0.2762 +0 0.0815 +0 0.3238 +0 0.2298 +0 0.0907 +0 0.1571 +0 0.0621 +0 0.1361 +0 0.1723 +0 0.0500 +0 0.1767 +0 0.1950 +0 0.0766 +0 0.0614 +0 0.3113 +0 0.0786 +0 0.1103 +0 0.1645 +0 0.0395 +0 0.5143 +0 0.0682 +0 0.0456 +0 0.0368 +0 0.1062 +0 0.3153 +0 0.0703 +0 0.1085 +0 0.1612 +0 0.0504 +0 0.0402 +0 0.1473 +0 0.0622 +0 0.0734 +0 0.2799 +0 0.2751 +0 0.1220 +0 0.0874 +0 0.0460 +0 0.0380 +0 0.0794 +0 0.0828 +0 0.0576 +0 0.0894 +0 0.0813 +0 0.0596 +0 0.0850 +0 0.1480 +0 0.0995 +0 0.2461 +0 0.6035 +0 0.1235 +0 0.0876 +0 0.1066 +0 0.3506 +0 0.0488 +0 0.1296 +0 0.0789 +0 0.1176 +0 0.0300 +0 0.1443 +0 0.6516 +0 0.0723 +0 0.1407 +0 0.1071 +0 0.1207 +0 0.0519 +0 0.4143 +0 0.4120 +0 0.1268 +0 0.1022 +0 0.1280 +0 0.1337 +0 0.0785 +0 0.1497 +0 0.1791 +0 0.0951 +0 0.0514 +0 0.2919 +0 0.1457 +0 0.0674 +0 0.1332 +0 0.1020 +0 0.0893 +1 0.8166 +0 0.0762 +0 0.1151 +0 0.1309 +0 0.1089 +0 0.0835 +0 0.0891 +0 0.0816 +0 0.2492 +0 0.1119 +0 0.1049 +0 0.0536 +0 0.0573 +0 0.5385 +0 0.0763 +0 0.1512 +0 0.1156 +0 0.2534 +0 0.1842 +0 0.0818 +0 0.0941 +0 0.2551 +0 0.1320 +0 0.1379 +0 0.0626 +0 0.0705 +0 0.1441 +0 0.1869 +0 0.0743 +0 0.1246 +0 0.4237 +0 0.1131 +0 0.0892 +0 0.0878 +0 0.0731 +0 0.2120 +0 0.0876 +0 0.1189 +0 0.0981 +0 0.1939 +0 0.0532 +0 0.0728 +0 0.0743 +0 0.0874 +0 0.1828 +0 0.0651 +0 0.1472 +0 0.0525 +1 0.8243 +0 0.1259 +0 0.1439 +0 0.0748 +0 0.1335 +0 0.1165 +1 0.7719 +0 0.6359 +0 0.1850 +0 0.0788 +1 0.8275 +0 0.1328 +0 0.0655 +0 0.0626 +0 0.0838 +0 0.1913 +0 0.0752 +0 0.2134 +0 0.1186 +0 0.1229 +0 0.0598 +0 0.0976 +0 0.1563 +0 0.4110 +0 0.1771 +0 0.3650 +0 0.1127 +0 0.2969 +0 0.1537 +0 0.0829 +0 0.1233 +0 0.0670 +0 0.2541 +0 0.0825 +0 0.1056 +0 0.1628 +0 0.0740 +0 0.0999 +0 0.0909 +0 0.1009 +0 0.0992 +0 0.0793 +0 0.2237 +0 0.2022 +0 0.0865 +0 0.0767 +0 0.0567 +0 0.1466 +0 0.1603 +0 0.0536 +0 0.0887 +0 0.0601 +0 0.2263 +0 0.0702 +0 0.3046 +0 0.2137 +0 0.1738 +0 0.1078 +0 0.2512 +0 0.0755 +0 0.0522 +0 0.1110 +0 0.1408 +0 0.1239 +0 0.2620 +0 0.0843 +0 0.1391 +0 0.0576 +0 0.1405 +0 0.0656 +0 0.1194 +0 0.0926 +0 0.1288 +0 0.2352 +0 0.1428 +0 0.7456 +0 0.3650 +0 0.3311 +0 0.1980 +0 0.1053 +0 0.1424 +0 0.0603 +0 0.1265 +0 0.2620 +0 0.2793 +0 0.1556 +0 0.1536 +0 0.0349 +0 0.1418 +0 0.0996 +0 0.1486 +0 0.0705 +0 0.1762 +0 0.1034 +0 0.1651 +0 0.1890 +0 0.0480 +0 0.0610 +0 0.0590 +0 0.3764 +0 0.0749 +0 0.0904 +0 0.1610 +0 0.0719 +0 0.1441 +0 0.1237 +0 0.1458 +0 0.0575 +0 0.3169 +0 0.1445 +0 0.0922 +0 0.0604 +0 0.1121 +0 0.0905 +0 0.1090 +0 0.1006 +0 0.1753 +0 0.0662 +0 0.0671 +0 0.1932 +0 0.1114 +0 0.3210 +0 0.1027 +0 0.6492 +0 0.0670 +0 0.0989 +0 0.2881 +0 0.1069 +0 0.1351 +0 0.1033 +0 0.2618 +0 0.0459 +0 0.1960 +0 0.1862 +0 0.1804 +0 0.2713 +0 0.1974 +0 0.1525 +1 0.7633 +0 0.0920 +0 0.2997 +0 0.1029 +0 0.3018 +0 0.1861 +0 0.0694 +0 0.0915 +0 0.1201 +0 0.1579 +0 0.3348 +0 0.0759 +0 0.0991 +0 0.0765 +0 0.1434 +0 0.1166 +0 0.4245 +0 0.0704 +0 0.3209 +0 0.0613 +1 0.8842 +0 0.2679 +0 0.1543 +1 0.8270 +0 0.1259 +0 0.0354 +0 0.0996 +0 0.6182 +0 0.2518 +0 0.1556 +0 0.1702 +0 0.0894 +0 0.3052 +0 0.2325 +0 0.1540 +0 0.0649 +0 0.1110 +0 0.1831 +0 0.1529 +0 0.1126 +0 0.1148 +0 0.0710 +0 0.0530 +0 0.1362 +0 0.1302 +0 0.1133 +0 0.0423 +0 0.0938 +0 0.0467 +0 0.3112 +0 0.1398 +0 0.0910 +0 0.0920 +0 0.2038 +0 0.1614 +0 0.1047 +0 0.0995 +0 0.1894 +0 0.0491 +0 0.1905 +0 0.0603 +0 0.0662 +0 0.2138 +0 0.0453 +0 0.1088 +0 0.1050 +0 0.0863 +0 0.1047 +0 0.0900 +0 0.1484 +0 0.0675 +0 0.1015 +0 0.5418 +0 0.1175 +0 0.0761 +0 0.0902 +0 0.0766 +0 0.0730 +0 0.2638 +0 0.1317 +0 0.1980 +0 0.1807 +0 0.1388 +0 0.1047 +1 0.8655 +0 0.1146 +0 0.0803 +0 0.0563 +0 0.1195 +0 0.1102 +0 0.1170 +0 0.0761 +0 0.0718 +0 0.0540 +0 0.1122 +0 0.0662 +0 0.1084 +0 0.0843 +0 0.0760 +0 0.0902 +0 0.0867 +0 0.0495 +0 0.1450 +0 0.1006 +0 0.1457 +0 0.0790 +0 0.0921 +0 0.2066 +0 0.0457 +0 0.1506 +0 0.0763 +0 0.1232 +0 0.1542 +0 0.1639 +0 0.1262 +0 0.0604 +0 0.0604 +0 0.1838 +0 0.1067 +0 0.1665 +0 0.0592 +0 0.2793 +0 0.0417 +0 0.1074 +0 0.2020 +0 0.0698 +0 0.2397 +0 0.1729 +0 0.1187 +0 0.2944 +0 0.0872 +0 0.2063 +0 0.0665 +0 0.0784 +0 0.1889 +0 0.1361 +0 0.0743 +0 0.6923 +0 0.1563 +0 0.1032 +0 0.2058 +0 0.0502 +0 0.6328 +0 0.1053 +0 0.0687 +0 0.1125 +0 0.2214 +0 0.0977 +0 0.0586 +0 0.1589 +0 0.0949 +0 0.0592 +0 0.0558 +0 0.1997 +0 0.1425 +0 0.0769 +0 0.0738 +0 0.0774 +0 0.0595 +0 0.1509 +0 0.1027 +0 0.0553 +0 0.0928 +0 0.1283 +0 0.1322 +0 0.0973 +0 0.2082 +0 0.0585 +0 0.0631 +0 0.0623 +0 0.1250 +0 0.2100 +0 0.2453 +0 0.2204 +0 0.0643 +0 0.0928 +0 0.1023 +0 0.0871 +0 0.1629 +1 0.7977 +0 0.1124 +0 0.0455 +0 0.0507 +0 0.1161 +0 0.1349 +0 0.1549 +0 0.0602 +1 0.7567 +0 0.3750 +0 0.0890 +0 0.1357 +0 0.1252 +0 0.0810 +0 0.2622 +0 0.1818 +0 0.1233 +0 0.1263 +0 0.0643 +0 0.0949 +0 0.0774 +0 0.2170 +0 0.1989 +0 0.0471 +0 0.0475 +0 0.0510 +0 0.0572 +0 0.0544 +0 0.0937 +0 0.0546 +0 0.2631 +0 0.1374 +0 0.1891 +0 0.0363 +0 0.0907 +0 0.0726 +0 0.1274 +0 0.5345 +0 0.0576 +0 0.0958 +0 0.3742 +0 0.1284 +0 0.0663 +0 0.2269 +0 0.1711 +0 0.0591 +0 0.1185 +0 0.0944 +0 0.1660 +0 0.0770 +0 0.0902 +0 0.0984 +0 0.0686 +0 0.0600 +0 0.1944 +0 0.0923 +0 0.1790 +0 0.0399 +0 0.1247 +0 0.0506 +0 0.1583 +0 0.2073 +0 0.1704 +0 0.1525 +0 0.1707 +0 0.0858 +0 0.6462 +0 0.3557 +0 0.2418 +0 0.0772 +1 0.8136 +0 0.0451 +0 0.1866 +0 0.0541 +0 0.1498 +0 0.0860 +0 0.1263 +0 0.2021 +0 0.1453 +0 0.0920 +0 0.0774 +0 0.2239 +0 0.1029 +0 0.0578 +0 0.1466 +0 0.1404 +0 0.1120 +0 0.0596 +0 0.0932 +0 0.1017 +0 0.0815 +0 0.1334 +0 0.1513 +1 0.7734 +0 0.2807 +0 0.1114 +0 0.1754 +0 0.1500 +0 0.0869 +0 0.1096 +0 0.1792 +0 0.2922 +0 0.1413 +0 0.1338 +0 0.0767 +0 0.3105 +0 0.1853 +0 0.2342 +0 0.3404 +0 0.1708 +0 0.0402 +0 0.0970 +0 0.0616 +0 0.1663 +0 0.1016 +0 0.7385 +0 0.1078 +0 0.1194 +0 0.1214 +0 0.1775 +0 0.1172 +0 0.1140 +0 0.1170 +0 0.0895 +0 0.1070 +0 0.0967 +0 0.1920 +0 0.2070 +0 0.3397 +0 0.1638 +0 0.1036 +0 0.0650 +0 0.1972 +0 0.0504 +0 0.0824 +0 0.0826 +0 0.0821 +0 0.1756 +0 0.0371 +0 0.1138 +0 0.1086 +0 0.1749 +0 0.0766 +0 0.1283 +0 0.2823 +0 0.2053 +1 0.7580 +0 0.1460 +0 0.1065 +0 0.1248 +0 0.3378 +0 0.0823 +1 0.8883 +0 0.1062 +0 0.2010 +0 0.0463 +0 0.7288 +0 0.0734 +0 0.0468 +0 0.1049 +0 0.2116 +0 0.1784 +1 0.7662 +0 0.2304 +0 0.0703 +0 0.1410 +0 0.2351 +1 0.8250 +0 0.1025 +0 0.0808 +0 0.0623 +0 0.1333 +0 0.2008 +0 0.0737 +0 0.1859 +0 0.1532 +0 0.0433 +0 0.1688 +0 0.1236 +0 0.0802 +0 0.1155 +0 0.2258 +0 0.1382 +0 0.2142 +0 0.1705 +0 0.1086 +0 0.0842 +0 0.0844 +0 0.2126 +0 0.1311 +0 0.5627 +0 0.0770 +0 0.1422 +0 0.1327 +0 0.0885 +0 0.1001 +0 0.1590 +0 0.0882 +1 0.7881 +0 0.3047 +0 0.1322 +0 0.6980 +0 0.0853 +0 0.3023 +0 0.0735 +0 0.0682 +0 0.2415 +0 0.1441 +0 0.1445 +0 0.0414 +0 0.0518 +0 0.1230 +0 0.1078 +0 0.0594 +0 0.0527 +0 0.0948 +0 0.1061 +0 0.0618 +0 0.1302 +0 0.0507 +0 0.0705 +0 0.1078 +0 0.0434 +0 0.0641 +0 0.2565 +0 0.2947 +0 0.0829 +0 0.1062 +0 0.0820 +0 0.1158 +0 0.0709 +0 0.0631 +1 0.8579 +0 0.0729 +0 0.2328 +0 0.0860 +0 0.0798 +0 0.2175 +0 0.0834 +0 0.0449 +0 0.0539 +1 0.8544 +0 0.1049 +0 0.7159 +0 0.1872 +0 0.3661 +0 0.1811 +0 0.1115 +0 0.1562 +0 0.0312 +0 0.1275 +0 0.1915 +0 0.2337 +0 0.0694 +0 0.1221 +0 0.2404 +0 0.0366 +0 0.0777 +0 0.0574 +0 0.0860 +0 0.0575 +0 0.1166 +0 0.2982 +0 0.0785 +0 0.2127 +0 0.0571 +0 0.0408 +0 0.0573 +1 0.7899 +0 0.0950 +0 0.2353 +0 0.0468 +0 0.1048 +0 0.0698 +0 0.3344 +0 0.0965 +0 0.1919 +0 0.0564 +0 0.1818 +0 0.1638 +0 0.2336 +0 0.4500 +0 0.1296 +0 0.2369 +0 0.1994 +0 0.0755 +0 0.2819 +0 0.0609 +0 0.0535 +0 0.0466 +0 0.1149 +0 0.0782 +0 0.1644 +0 0.1288 +0 0.0833 +0 0.2622 +0 0.0890 +0 0.0791 +0 0.2562 +0 0.0928 +0 0.0656 +0 0.0885 +0 0.0545 +0 0.0718 +0 0.0507 +0 0.1027 +0 0.0953 +0 0.0722 +0 0.2803 +0 0.1727 +0 0.2396 +0 0.1378 +0 0.1398 +0 0.3518 +0 0.1565 +0 0.1512 +0 0.0700 +0 0.2532 +0 0.1354 +0 0.0968 +0 0.1637 +0 0.2275 +0 0.2160 +0 0.1618 +0 0.1131 +0 0.0863 +0 0.2043 +0 0.1362 +0 0.0880 +0 0.0667 +0 0.1196 +0 0.1995 +0 0.1189 +0 0.5588 +0 0.0586 +0 0.0575 +0 0.1603 +0 0.1277 +0 0.6262 +0 0.1317 +0 0.0504 +0 0.1292 +0 0.0579 +0 0.0807 +0 0.0866 +0 0.0971 +0 0.0777 +0 0.5644 +0 0.0880 +0 0.1807 +0 0.1747 +0 0.1178 +1 0.8078 +0 0.1112 +0 0.1836 +0 0.0586 +0 0.1131 +0 0.0913 +0 0.1883 +0 0.2447 +0 0.5001 +0 0.1238 +0 0.0778 +0 0.1459 +0 0.2187 +0 0.0989 +0 0.1420 +0 0.1832 +0 0.1783 +0 0.2293 +0 0.1175 +0 0.1824 +0 0.2432 +0 0.4179 +0 0.0681 +0 0.1063 +0 0.0595 +0 0.0705 +0 0.3465 +0 0.2035 +0 0.0816 +0 0.1133 +0 0.0746 +0 0.1191 +0 0.1299 +0 0.0687 +0 0.0977 +0 0.1440 +0 0.0943 +0 0.1699 +0 0.0584 +0 0.3106 +0 0.1439 +0 0.1091 +0 0.0680 +0 0.1720 +0 0.1535 +0 0.0905 +0 0.0719 +0 0.0502 +0 0.1982 +0 0.0794 +0 0.0378 +0 0.1022 +0 0.2931 +0 0.3680 +0 0.0733 +0 0.0689 +0 0.2104 +0 0.1145 +0 0.1203 +0 0.1148 +0 0.2966 +0 0.0510 +0 0.1521 +0 0.0649 +0 0.0874 +0 0.1511 +0 0.1170 +0 0.0736 +0 0.2440 +0 0.0423 +0 0.1132 +0 0.0980 +0 0.1897 +0 0.2792 +0 0.0892 +0 0.1510 +0 0.0621 +0 0.1844 +0 0.0517 +0 0.1893 +0 0.0554 +0 0.0830 +0 0.1499 +0 0.0581 +0 0.0543 +0 0.0852 +0 0.0989 +0 0.0942 +0 0.1015 +0 0.0930 +0 0.1279 +0 0.0976 +0 0.1874 +0 0.0585 +0 0.1165 +0 0.0935 +1 0.8187 +0 0.0548 +0 0.0634 +0 0.0864 +0 0.1289 +0 0.0812 +0 0.2820 +0 0.1285 +0 0.2795 +0 0.3174 +0 0.1586 +0 0.5298 +0 0.0539 +0 0.0546 +0 0.1403 +0 0.1091 +0 0.0968 +0 0.2601 +0 0.1082 +0 0.0740 +0 0.0441 +0 0.1239 +0 0.0451 +0 0.0987 +0 0.1916 +0 0.1286 +0 0.1712 +0 0.0572 +0 0.0356 +0 0.0857 +0 0.1485 +0 0.5023 +0 0.1685 +0 0.0749 +0 0.0423 +0 0.2420 +0 0.0782 +0 0.0866 +0 0.0614 +0 0.1016 +0 0.0701 +0 0.0527 +0 0.0624 +0 0.1970 +0 0.6995 +0 0.0512 +0 0.1293 +1 0.8280 +0 0.0641 +0 0.0920 +0 0.0887 +0 0.0906 +0 0.1940 +0 0.1278 +0 0.2305 +0 0.4177 +0 0.0462 +0 0.1143 +0 0.1040 +0 0.0653 +0 0.1778 +0 0.1328 +0 0.0897 +0 0.5109 +0 0.1286 +0 0.0952 +0 0.1383 +0 0.1071 +0 0.0936 +0 0.1868 +1 0.7942 +0 0.1967 +0 0.6328 +0 0.0677 +0 0.4203 +0 0.0863 +0 0.0517 +0 0.1629 +0 0.0551 +0 0.2022 +0 0.0363 +0 0.1452 +1 0.8298 +0 0.0543 +0 0.1054 +0 0.2642 +0 0.4149 +0 0.1795 +0 0.3523 +0 0.0347 +0 0.2870 +0 0.2484 +0 0.1154 +0 0.1046 +0 0.2507 +0 0.0462 +0 0.0673 +0 0.0341 +0 0.1472 +0 0.1240 +0 0.1247 +0 0.3701 +1 0.8544 +0 0.0878 +0 0.1093 +0 0.1820 +0 0.0366 +0 0.0859 +0 0.0327 +0 0.2957 +0 0.0669 +0 0.1231 +0 0.1968 +0 0.1095 +0 0.0658 +0 0.1112 +0 0.1453 +0 0.0733 +0 0.2108 +0 0.4982 +0 0.0517 +0 0.1818 +0 0.1015 +0 0.0664 +0 0.1687 +0 0.0373 +0 0.1353 +0 0.1235 +0 0.0987 +0 0.1338 +0 0.0443 +0 0.0990 +0 0.1414 +0 0.0580 +0 0.0572 +0 0.2422 +0 0.0463 +0 0.0529 +0 0.1387 +0 0.0936 +0 0.0651 +0 0.2447 +0 0.0813 +0 0.1045 +0 0.1525 +0 0.0855 +0 0.0854 +0 0.1390 +0 0.0863 +0 0.1416 +0 0.0675 +0 0.0933 +0 0.0827 +0 0.0445 +0 0.0411 +0 0.2688 +0 0.0886 +0 0.1473 +0 0.0856 +0 0.1997 +0 0.0627 +0 0.1953 +0 0.0703 +0 0.1592 +0 0.0844 +0 0.0614 +0 0.0909 +0 0.3542 +0 0.0960 +0 0.1238 +0 0.0720 +0 0.0831 +0 0.0907 +0 0.1486 +0 0.0601 +0 0.1432 +0 0.0701 +0 0.1549 +0 0.0947 +0 0.6064 +0 0.1341 +0 0.0780 +0 0.0999 +0 0.2431 +0 0.0825 +0 0.0857 +0 0.0686 +0 0.2378 +0 0.1296 +0 0.1637 +0 0.2691 +0 0.0711 +0 0.1406 +0 0.2475 +0 0.0485 +0 0.0999 +0 0.0629 +0 0.0782 +0 0.0945 +0 0.0671 +0 0.0951 +0 0.0528 +0 0.3247 +0 0.0795 +0 0.0978 +0 0.1071 +0 0.3123 +0 0.0892 +0 0.0677 +0 0.0467 +0 0.1528 +0 0.0704 +0 0.0402 +0 0.0445 +0 0.0412 +0 0.1073 +0 0.1428 +0 0.0593 +0 0.1636 +0 0.5493 +1 0.7774 +0 0.1380 +0 0.0939 +0 0.1706 +0 0.4160 +0 0.1866 +0 0.2116 +0 0.1272 +0 0.0768 +0 0.0789 +0 0.1874 +0 0.0905 +0 0.0794 +0 0.0355 +0 0.1023 +0 0.5383 +0 0.0873 +1 0.7579 +0 0.0457 +0 0.3191 +0 0.0740 +0 0.0813 +0 0.0398 +0 0.1166 +0 0.2851 +0 0.1272 +0 0.1557 +0 0.0730 +0 0.5129 +0 0.2405 +0 0.0813 +0 0.2684 +0 0.1092 +0 0.0662 +0 0.0835 +0 0.2036 +0 0.0577 +0 0.0820 +0 0.0554 +0 0.0900 +0 0.0971 +0 0.0685 +0 0.1307 +0 0.1017 +0 0.1570 +0 0.0779 +0 0.1573 +0 0.1740 +0 0.0877 +0 0.0725 +0 0.0391 +0 0.0873 +0 0.0493 +0 0.0848 +0 0.1264 +0 0.1501 +0 0.1426 +0 0.0656 +0 0.0576 +0 0.0960 +0 0.0756 +0 0.3371 +0 0.1586 +0 0.7035 +0 0.0584 +0 0.0549 +0 0.1378 +0 0.0798 +0 0.0583 +0 0.2142 +0 0.1556 +0 0.1031 +0 0.0667 +0 0.0377 +0 0.2534 +0 0.0541 +0 0.0595 +0 0.0755 +0 0.0533 +0 0.0677 +0 0.0991 +0 0.1946 +0 0.1196 +0 0.1023 +0 0.0665 +0 0.0860 +0 0.1957 +0 0.0533 +0 0.0570 +0 0.0775 +0 0.0532 +0 0.0450 +0 0.5131 +0 0.2732 +0 0.1614 +0 0.0931 +0 0.4091 +0 0.1927 +0 0.1079 +1 0.8034 +0 0.1586 +0 0.2025 +0 0.1454 +0 0.5321 +0 0.1599 +0 0.1011 +0 0.1158 +0 0.1040 +0 0.1027 +0 0.0785 +0 0.2005 +0 0.0698 +0 0.0345 +0 0.0648 +0 0.1437 +0 0.0729 +0 0.2037 +0 0.0491 +0 0.3107 +0 0.0539 +0 0.0982 +0 0.1604 +0 0.1128 +0 0.1299 +0 0.1025 +0 0.0833 +0 0.0530 +0 0.1204 +0 0.1299 +0 0.1561 +0 0.1368 +0 0.1750 +0 0.0967 +0 0.1035 +0 0.1085 +0 0.0405 +0 0.0377 +0 0.0446 +0 0.0568 +0 0.1261 +0 0.0501 +0 0.0778 +0 0.0593 +0 0.0788 +0 0.1043 +0 0.2302 +0 0.1320 +0 0.1641 +0 0.0890 +0 0.1184 +0 0.1227 +0 0.7073 +0 0.0647 +0 0.0579 +1 0.8148 +0 0.1972 +0 0.0509 +0 0.0693 +0 0.0825 +0 0.2737 +0 0.6999 +0 0.0764 +0 0.0818 +0 0.1064 +0 0.0455 +0 0.0922 +0 0.0603 +0 0.0459 +0 0.1090 +0 0.1989 +0 0.0671 +0 0.0710 +0 0.0756 +0 0.3428 +0 0.0755 +0 0.2432 +0 0.1127 +0 0.1064 +0 0.1514 +0 0.0608 +0 0.1248 +0 0.0676 +0 0.5387 +0 0.0955 +0 0.2357 +0 0.0508 +0 0.1814 +0 0.1009 +0 0.1237 +0 0.1477 +0 0.0993 +1 0.8144 +0 0.1120 +0 0.0770 +0 0.0749 +0 0.0465 +0 0.1208 +0 0.1133 +0 0.4061 +0 0.0417 +0 0.0759 +0 0.0456 +0 0.0701 +0 0.0776 +0 0.3561 +0 0.1638 +0 0.2519 +0 0.0493 +0 0.0470 +0 0.1774 +0 0.1326 +0 0.0799 +0 0.1440 +0 0.1076 +0 0.1339 +0 0.1978 +0 0.1638 +0 0.1895 +0 0.1891 +0 0.7450 +0 0.1214 +0 0.1425 +0 0.0798 +0 0.1227 +0 0.1423 +0 0.1881 +0 0.1384 +0 0.1129 +0 0.0759 +0 0.1173 +0 0.0594 +0 0.0513 +0 0.0758 +0 0.1085 +0 0.0650 +0 0.1481 +0 0.0556 +0 0.1343 +0 0.0821 +0 0.1913 +0 0.0686 +0 0.1126 +0 0.1336 +0 0.0784 +0 0.1533 +0 0.0651 +0 0.0627 +0 0.1395 +0 0.2097 +0 0.1667 +0 0.1229 +0 0.1076 +0 0.1067 +0 0.0877 +0 0.1003 +0 0.2516 +0 0.1771 +0 0.0769 +0 0.1142 +0 0.4046 +0 0.1846 +0 0.1110 +0 0.6292 +0 0.1153 +0 0.0631 +1 0.8008 +0 0.0720 +0 0.1017 +0 0.0859 +0 0.1155 +0 0.0604 +0 0.1595 +0 0.3399 +0 0.0967 +0 0.5201 +0 0.0676 +0 0.1850 +0 0.1488 +0 0.2246 +0 0.0492 +0 0.0544 +0 0.3102 +0 0.0897 +0 0.0754 +0 0.0761 +0 0.0565 +0 0.2187 +0 0.1570 +0 0.2325 +0 0.1992 +0 0.1073 +0 0.3857 +0 0.0895 +0 0.0876 +0 0.1379 +0 0.1367 +0 0.0804 +0 0.0801 +0 0.1274 +0 0.1052 +0 0.3323 +0 0.0855 +0 0.0932 +0 0.0747 +0 0.0889 +0 0.1648 +0 0.1083 +0 0.0490 +0 0.3324 +0 0.1469 +0 0.0610 +0 0.2245 +0 0.0754 +0 0.0716 +0 0.0641 +0 0.0545 +0 0.1031 +0 0.0349 +1 0.8772 +0 0.0673 +0 0.1456 +0 0.0390 +0 0.0797 +0 0.0876 +0 0.2300 +0 0.2131 +0 0.0461 +0 0.2897 +0 0.1254 +0 0.1410 +0 0.0549 +0 0.0834 +0 0.1128 +0 0.1956 +0 0.2178 +0 0.0443 +0 0.1156 +0 0.0990 +0 0.0599 +0 0.0815 +0 0.0683 +0 0.0609 +0 0.0618 +0 0.1958 +0 0.0678 +0 0.0513 +0 0.2008 +0 0.0985 +0 0.0611 +0 0.2068 +0 0.1408 +0 0.0863 +0 0.0544 +0 0.1427 +1 0.8325 +0 0.1221 +0 0.2544 +0 0.1154 +0 0.1670 +0 0.3650 +0 0.0846 +0 0.0345 +0 0.0628 +0 0.1601 +0 0.0838 +0 0.1752 +0 0.0577 +0 0.0967 +0 0.2943 +0 0.0633 +0 0.0944 +0 0.0591 +0 0.1318 +0 0.1022 +0 0.2406 +0 0.1464 +0 0.2080 +0 0.0973 +0 0.1103 +0 0.0843 +0 0.1537 +0 0.0782 +0 0.1859 +0 0.6904 +0 0.1416 +0 0.0981 +0 0.2507 +0 0.2216 +0 0.1311 +0 0.1434 +0 0.1125 +0 0.2663 +0 0.1199 +0 0.2298 +0 0.0522 +0 0.1548 +0 0.0344 +0 0.1502 +0 0.1989 +0 0.2523 +0 0.1367 +0 0.0865 +0 0.0987 +0 0.1551 +0 0.0985 +0 0.0754 +0 0.0869 +0 0.1356 +0 0.0446 +0 0.1482 +0 0.0959 +0 0.2161 +0 0.1507 +0 0.0995 +0 0.0841 +0 0.0813 +0 0.0446 +0 0.0641 +0 0.1223 +0 0.1163 +0 0.0801 +0 0.0933 +0 0.2001 +0 0.2121 +0 0.2543 +0 0.3070 +0 0.1751 +0 0.2664 +0 0.2462 +0 0.0989 +0 0.1882 +0 0.0983 +0 0.0587 +0 0.0857 +0 0.2202 +0 0.0682 +0 0.0526 +0 0.0464 +0 0.1104 +0 0.1741 +0 0.0839 +0 0.1870 +1 0.8337 +0 0.1347 +0 0.0498 +0 0.1132 +0 0.0906 +0 0.1123 +0 0.1871 +0 0.1077 +0 0.0350 +0 0.0960 +0 0.0538 +0 0.1278 +0 0.7167 +0 0.6812 +0 0.3658 +0 0.1327 +0 0.6089 +0 0.1163 +0 0.1019 +0 0.4396 +0 0.5890 +0 0.1985 +0 0.0506 +0 0.0956 +0 0.1062 +0 0.0628 +0 0.0517 +0 0.1861 +0 0.2173 +0 0.0816 +0 0.0782 +0 0.0428 +0 0.1156 +0 0.0686 +0 0.2115 +0 0.1174 +0 0.0850 +0 0.0677 +0 0.0542 +0 0.1243 +0 0.1022 +0 0.3861 +0 0.0660 +0 0.1679 +0 0.1514 +0 0.1109 +0 0.1572 +0 0.0945 +0 0.1666 +0 0.0985 +0 0.0715 +0 0.1809 +0 0.3597 +0 0.1816 +0 0.1659 +1 0.2214 +0 0.1839 +0 0.2080 +0 0.1768 +0 0.0588 +0 0.0783 +0 0.0627 +0 0.2067 +0 0.0579 +0 0.0870 +0 0.1337 +0 0.2074 +0 0.2121 +0 0.1924 +0 0.0963 +0 0.2345 +0 0.0391 +0 0.0474 +0 0.0449 +0 0.0659 +0 0.0834 +0 0.0801 +0 0.0642 +1 0.8534 +0 0.0514 +0 0.0485 +0 0.0605 +0 0.0468 +0 0.1035 +0 0.0605 +0 0.2146 +0 0.1410 +0 0.1177 +0 0.0895 +0 0.0865 +0 0.2131 +0 0.0638 +0 0.7015 +0 0.0781 +0 0.3101 +0 0.0623 +0 0.4293 +0 0.2336 +0 0.0664 +0 0.0771 +0 0.1232 +0 0.0394 +0 0.0685 +0 0.1175 +0 0.6538 +0 0.0985 +0 0.0641 +0 0.1316 +0 0.1691 +0 0.1106 +0 0.0506 +0 0.1727 +0 0.0564 +0 0.1498 +0 0.1884 +0 0.0438 +0 0.0507 +0 0.0429 +0 0.3256 +0 0.2384 +0 0.4117 +0 0.1082 +0 0.0337 +0 0.2922 +0 0.0664 +0 0.4331 +0 0.2766 +0 0.2393 +0 0.1219 +0 0.1752 +0 0.1053 +0 0.0565 +0 0.0873 +0 0.1740 +0 0.0768 +0 0.1722 +0 0.0396 +0 0.0716 +0 0.0590 +0 0.1924 +0 0.1596 +0 0.0897 +0 0.0575 +0 0.0609 +0 0.2154 +0 0.1034 +0 0.0550 +0 0.2224 +0 0.0986 +0 0.1109 +0 0.1290 +0 0.0470 +0 0.0489 +0 0.0681 +0 0.1195 +0 0.1028 +0 0.1348 +0 0.0607 +0 0.0849 +0 0.2694 +0 0.1072 +0 0.0947 +0 0.4847 +0 0.1749 +0 0.5950 +0 0.0589 +0 0.0734 +0 0.1652 +0 0.0736 +0 0.2228 +0 0.1245 +0 0.2116 +0 0.0656 +0 0.0584 +0 0.0918 +0 0.0532 +0 0.0681 +0 0.1053 +0 0.1099 +0 0.1939 +0 0.1654 +0 0.2279 +0 0.1109 +0 0.0529 +0 0.0882 +0 0.1096 +0 0.2730 +0 0.0376 +0 0.1078 +0 0.2518 +0 0.3733 +0 0.1240 +0 0.2658 +0 0.0892 +0 0.0824 +0 0.1240 +0 0.1645 +0 0.0382 +0 0.0648 +0 0.0533 +0 0.0905 +0 0.0914 +0 0.3166 +0 0.2134 +0 0.1725 +0 0.1288 +0 0.0832 +0 0.0538 +0 0.6128 +0 0.0397 +1 0.7989 +0 0.1459 +0 0.6366 +0 0.0891 +0 0.0478 +0 0.0809 +0 0.0594 +0 0.0842 +0 0.0802 +0 0.1936 +0 0.0560 +0 0.0673 +0 0.1073 +0 0.2342 +0 0.0684 +0 0.0457 +0 0.0755 +0 0.0922 +0 0.1143 +0 0.1041 +0 0.3885 +0 0.0473 +0 0.2671 +0 0.5510 +0 0.0698 +0 0.0737 +0 0.1092 +1 0.8610 +0 0.0637 +0 0.1838 +0 0.0391 +0 0.0930 +0 0.0818 +0 0.0615 +0 0.0958 +0 0.2071 +0 0.0780 +0 0.0689 +0 0.0859 +0 0.1256 +0 0.0488 +0 0.0368 +0 0.2237 +0 0.0711 +0 0.0776 +0 0.1150 +0 0.0726 +0 0.2578 +0 0.1263 +0 0.0530 +0 0.2026 +0 0.0830 +0 0.0941 +0 0.0449 +0 0.1468 +0 0.0455 +0 0.0417 +0 0.2251 +0 0.0874 +0 0.1974 +0 0.1182 +0 0.3741 +0 0.1028 +0 0.2484 +0 0.0987 +0 0.3657 +0 0.2267 +0 0.0294 +0 0.0447 +0 0.0782 +0 0.0422 +0 0.3261 +0 0.0963 +0 0.4531 +0 0.0672 +0 0.0716 +0 0.0445 +0 0.0771 +0 0.0923 +0 0.1632 +0 0.0445 +0 0.1093 +0 0.1868 +0 0.0683 +0 0.0487 +0 0.1087 +0 0.0639 +0 0.1418 +0 0.2169 +0 0.0982 +0 0.0934 +0 0.0967 +0 0.0831 +0 0.0448 +0 0.0817 +0 0.0852 +0 0.2543 +0 0.0308 +0 0.1160 +0 0.6522 +0 0.1332 +0 0.0917 +0 0.2546 +0 0.1444 +0 0.0804 +0 0.0775 +0 0.0663 +0 0.2305 +0 0.0542 +0 0.0871 +0 0.2895 +0 0.1660 +0 0.0365 +0 0.0577 +0 0.2257 +0 0.0788 +0 0.1877 +0 0.1500 +0 0.0629 +0 0.0391 +0 0.2826 +0 0.0526 +0 0.0314 +0 0.7179 +0 0.0955 +0 0.7437 +0 0.3571 +0 0.0790 +0 0.3427 +0 0.0917 +0 0.1567 +0 0.3319 +0 0.1227 +0 0.1125 +0 0.1052 +0 0.0435 +1 0.7917 +0 0.0987 +0 0.1716 +0 0.0950 +0 0.0679 +0 0.4646 +0 0.1307 +0 0.4637 +0 0.1283 +0 0.3311 +0 0.0992 +0 0.2113 +0 0.1251 +0 0.0742 +0 0.0442 +0 0.1399 +1 0.8445 +1 0.7785 +0 0.0859 +0 0.0985 +0 0.4449 +0 0.1478 +0 0.7153 +0 0.0648 +0 0.1405 +0 0.0736 +0 0.1476 +0 0.1487 +0 0.0552 +0 0.0813 +0 0.3000 +0 0.0938 +0 0.0394 +0 0.0746 +0 0.3698 +0 0.1043 +0 0.0331 +0 0.0668 +0 0.1389 +0 0.0746 +0 0.0757 +0 0.2634 +0 0.1122 +0 0.0726 +0 0.1594 +0 0.1131 +0 0.0439 +0 0.1070 +0 0.0539 +0 0.1546 +0 0.3134 +0 0.0793 +0 0.1046 +0 0.3669 +0 0.0778 +0 0.0731 +0 0.2037 +0 0.0654 +0 0.0542 +0 0.0549 +0 0.1146 +0 0.1620 +0 0.1248 +0 0.0534 +0 0.0697 +0 0.1203 +0 0.0844 +0 0.0529 +1 0.8519 +0 0.0457 +0 0.1404 +0 0.1094 +0 0.0516 +0 0.0359 +1 0.7999 +0 0.1953 +1 0.8181 +0 0.1168 +0 0.0740 +0 0.1255 +0 0.0762 +0 0.0927 +0 0.2928 +0 0.1415 +0 0.0696 +0 0.2114 +0 0.0552 +0 0.0697 +0 0.2958 +0 0.1053 +0 0.2649 +0 0.1024 +0 0.0597 +0 0.1104 +0 0.1297 +0 0.0543 +0 0.1468 +0 0.1021 +0 0.0590 +0 0.1774 +0 0.0421 +0 0.1789 +0 0.1723 +0 0.0957 +0 0.0827 +0 0.0736 +0 0.0467 +0 0.0841 +0 0.1961 +0 0.1410 +0 0.3980 +0 0.1650 +1 0.8315 +0 0.0712 +0 0.0548 +0 0.1150 +0 0.1405 +0 0.0389 +0 0.0919 +0 0.2807 +0 0.6914 +0 0.0692 +0 0.0470 +0 0.3096 +0 0.2298 +0 0.0491 +0 0.2044 +0 0.0883 +0 0.0671 +0 0.1312 +0 0.0403 +0 0.2125 +0 0.1317 +0 0.0929 +0 0.0384 +0 0.1137 +0 0.0608 +0 0.0830 +0 0.0722 +0 0.1076 +0 0.0860 +0 0.1104 +0 0.0776 +0 0.1146 +0 0.0526 +0 0.0726 +0 0.0879 +0 0.0789 +0 0.2011 +0 0.2533 +0 0.1796 +0 0.1942 +0 0.0409 +0 0.0396 +0 0.2735 +0 0.1175 +0 0.0692 +0 0.6534 +0 0.1495 +0 0.2894 +0 0.1552 +0 0.1998 +0 0.0949 +0 0.1378 +0 0.0923 +0 0.0772 +0 0.0871 +0 0.0786 +0 0.0628 +0 0.0646 +0 0.0517 +0 0.0837 +0 0.1096 +0 0.0615 +0 0.0804 +0 0.0827 +0 0.2547 +0 0.0703 +0 0.0491 +0 0.0819 +0 0.0925 +0 0.0618 +0 0.0543 +0 0.1181 +0 0.1417 +0 0.0628 +0 0.1320 +0 0.2447 +0 0.0667 +0 0.0863 +0 0.1094 +0 0.1577 +0 0.2678 +0 0.1178 +0 0.0633 +0 0.0766 +0 0.0822 +0 0.0690 +0 0.1145 +0 0.1423 +0 0.0552 +0 0.1095 +0 0.0901 +0 0.0485 +0 0.1134 +0 0.5551 +0 0.3694 +0 0.5031 +0 0.0473 +1 0.8127 +0 0.0546 +0 0.0823 +0 0.3767 +0 0.0826 +0 0.0546 +0 0.2231 +0 0.0664 +0 0.0739 +0 0.1318 +0 0.1065 +0 0.0729 +0 0.1171 +0 0.3823 +0 0.0639 +0 0.1206 +0 0.1207 +0 0.0847 +0 0.0792 +0 0.3330 +0 0.0531 +0 0.4154 +0 0.1602 +0 0.1044 +0 0.1195 +0 0.1304 +0 0.2269 +0 0.1906 +0 0.2091 +0 0.1715 +0 0.0461 +0 0.2695 +0 0.1095 +0 0.0666 +0 0.1500 +0 0.1883 +0 0.2953 +0 0.1293 +0 0.0851 +0 0.1080 +0 0.0869 +0 0.2574 +0 0.0882 +0 0.1317 +0 0.1235 +0 0.2195 +0 0.1682 +0 0.0303 +0 0.1115 +0 0.1149 +0 0.1617 +0 0.0741 +0 0.1713 +0 0.2235 +0 0.1047 +0 0.1231 +0 0.1696 +0 0.1097 +0 0.0548 +0 0.6307 +0 0.1384 +0 0.0766 +0 0.2711 +0 0.0362 +0 0.2593 +0 0.0896 +0 0.0759 +0 0.1040 +0 0.0851 +0 0.1339 +0 0.1097 +0 0.0649 +0 0.1045 +0 0.0535 +0 0.0389 +0 0.2949 +0 0.0488 +0 0.1151 +0 0.1025 +0 0.1443 +1 0.8316 +0 0.0426 +0 0.0454 +0 0.0361 +0 0.0738 +0 0.1670 +0 0.3281 +0 0.6744 +0 0.0688 +0 0.0781 +0 0.4333 +0 0.1237 +0 0.1173 +0 0.0633 +0 0.1143 +0 0.2698 +0 0.0529 +0 0.2471 +0 0.0870 +0 0.2233 +0 0.2322 +0 0.0807 +0 0.1290 +0 0.0960 +0 0.1932 +0 0.1389 +0 0.0699 +0 0.1036 +0 0.3629 +0 0.1655 +0 0.1892 +0 0.4444 +0 0.1282 +0 0.0887 +0 0.0867 +0 0.1474 +0 0.0866 +0 0.1427 +0 0.2196 +0 0.0531 +0 0.0945 +0 0.0682 +0 0.0738 +0 0.1146 +0 0.0830 +0 0.1423 +0 0.2899 +0 0.1069 +0 0.0955 +0 0.1709 +0 0.1336 +0 0.0784 +0 0.0482 +0 0.2192 +0 0.0603 +0 0.0696 +0 0.2361 +0 0.0635 +0 0.0379 +0 0.5708 +0 0.0911 +0 0.0482 +0 0.0798 +0 0.1987 +0 0.6573 +0 0.1438 +0 0.2573 +0 0.3658 +0 0.1468 +0 0.0591 +0 0.1082 +0 0.0446 +0 0.1334 +0 0.1453 +0 0.4383 +0 0.1291 +0 0.1046 +0 0.0470 +0 0.0489 +0 0.2917 +0 0.0687 +0 0.0871 +0 0.1789 +0 0.0963 +0 0.1186 +0 0.4082 +0 0.1903 +0 0.1307 +0 0.2492 +0 0.1375 +0 0.7204 +0 0.2423 +0 0.1096 +0 0.0696 +0 0.1233 +0 0.1985 +0 0.2129 +0 0.0977 +0 0.1221 +0 0.0709 +0 0.1203 +0 0.1144 +0 0.2364 +0 0.0535 +0 0.1295 +0 0.0840 +0 0.1134 +0 0.1102 +0 0.0377 +0 0.2260 +0 0.1537 +0 0.1861 +0 0.0522 +0 0.1455 +0 0.2351 +0 0.1317 +0 0.2564 +0 0.0720 +0 0.0900 +0 0.0761 +0 0.1522 +0 0.2790 +0 0.2322 +0 0.3162 +0 0.1471 +0 0.0760 +0 0.1093 +0 0.1335 +0 0.0719 +0 0.1271 +0 0.0920 +0 0.2592 +0 0.0920 +0 0.0596 +0 0.4488 +0 0.1089 +0 0.2567 +0 0.1339 +0 0.0682 +0 0.0508 +0 0.0947 +0 0.1000 +0 0.1752 +0 0.1568 +0 0.1944 +0 0.0936 +0 0.1021 +0 0.1356 +0 0.0866 +0 0.0719 +0 0.0624 +0 0.0792 +0 0.0663 +0 0.0644 +0 0.0486 +0 0.0967 +0 0.1115 +0 0.0702 +0 0.1896 +0 0.0742 +0 0.1321 +0 0.0480 +0 0.2252 +0 0.1318 +0 0.0517 +0 0.0947 +0 0.0840 +0 0.0690 +0 0.1825 +0 0.0570 +0 0.0562 +0 0.2955 +0 0.0394 +0 0.1440 +0 0.1033 +0 0.1397 +0 0.1368 +0 0.0835 +0 0.0425 +0 0.1691 +0 0.0484 +0 0.0501 +0 0.3978 +0 0.0725 +0 0.2701 +0 0.0880 +0 0.1121 +0 0.1466 +0 0.0699 +0 0.1467 +0 0.0953 +0 0.1376 +0 0.1384 +0 0.2583 +0 0.1099 +0 0.0831 +0 0.0362 +0 0.0880 +0 0.1125 +0 0.0866 +0 0.1287 +0 0.2060 +0 0.1675 +0 0.1304 +0 0.1097 +0 0.1268 +0 0.1544 +0 0.1932 +0 0.1642 +0 0.1687 +0 0.0570 +0 0.1505 +0 0.6608 +0 0.4191 +0 0.0744 +0 0.0821 +0 0.1105 +0 0.3541 +0 0.2055 +0 0.1574 +0 0.1271 +0 0.6005 +0 0.0423 +0 0.1153 +0 0.1481 +0 0.0548 +0 0.0746 +0 0.0715 +0 0.0962 +0 0.0967 +0 0.1399 +0 0.1790 +0 0.0917 +0 0.0737 +0 0.0605 +0 0.6530 +0 0.2211 +0 0.6154 +0 0.0688 +0 0.0710 +0 0.2212 +0 0.4973 +0 0.1574 +0 0.0588 +0 0.0415 +0 0.1476 +0 0.1350 +0 0.7343 +0 0.1114 +0 0.0678 +0 0.0647 +0 0.0782 +0 0.0404 +0 0.0662 +0 0.3942 +0 0.0744 +0 0.2098 +0 0.0640 +0 0.1631 +0 0.0710 +0 0.0535 +0 0.0897 +0 0.1311 +0 0.0972 +0 0.1147 +0 0.2076 +0 0.0449 +0 0.0505 +0 0.1448 +0 0.0474 +0 0.0690 +0 0.0440 +0 0.1492 +0 0.1049 +0 0.1227 +0 0.1525 +0 0.1467 +0 0.0385 +0 0.0723 +0 0.0430 +0 0.1465 +0 0.2393 +0 0.0892 +0 0.1103 +0 0.2875 +0 0.1374 +0 0.1577 +0 0.0992 +0 0.7328 +0 0.1257 +0 0.0745 +0 0.0922 +0 0.1046 +0 0.0958 +0 0.0615 +0 0.1937 +0 0.0776 +0 0.1130 +0 0.1269 +0 0.0403 +0 0.0381 +0 0.0698 +0 0.1108 +0 0.0520 +0 0.0610 +0 0.1305 +0 0.0597 +0 0.0850 +0 0.0845 +0 0.1359 +0 0.1013 +0 0.0749 +0 0.0666 +0 0.1063 +0 0.0726 +0 0.1096 +0 0.2697 +0 0.1318 +0 0.0464 +0 0.0427 +0 0.0788 +0 0.1167 +0 0.0340 +0 0.0920 +0 0.1031 +0 0.2036 +0 0.0377 +0 0.1003 +0 0.0580 +0 0.0887 +0 0.0935 +0 0.0637 +0 0.1776 +0 0.0730 +0 0.1584 +0 0.0836 +0 0.0625 +0 0.0736 +0 0.0759 +0 0.1561 +0 0.0517 +0 0.0288 +0 0.0970 +0 0.1298 +0 0.4161 +0 0.0757 +0 0.0674 +0 0.2238 +0 0.2638 +0 0.1355 +0 0.0770 +0 0.5660 +0 0.1253 +0 0.2134 +0 0.5159 +0 0.3731 +0 0.0530 +0 0.1332 +0 0.0877 +0 0.4876 +0 0.1875 +0 0.1114 +0 0.1118 +0 0.1030 +0 0.0474 +0 0.1074 +0 0.2231 +0 0.1441 +0 0.0852 +0 0.1217 +0 0.0876 +0 0.2653 +0 0.2044 +0 0.0479 +0 0.0561 +0 0.1220 +0 0.0973 +0 0.5632 +0 0.0336 +0 0.0924 +0 0.1138 +0 0.1507 +0 0.0950 +0 0.0816 +0 0.0622 +0 0.0691 +0 0.1343 +1 0.8047 +0 0.3865 +0 0.0633 +0 0.0809 +0 0.2650 +0 0.0709 +0 0.1027 +0 0.1149 +0 0.1493 +0 0.1498 +0 0.1074 +0 0.1662 +0 0.1501 +0 0.1571 +0 0.0769 +0 0.4588 +0 0.0562 +0 0.3846 +0 0.1765 +0 0.1569 +0 0.0414 +0 0.0914 +0 0.0686 +0 0.0956 +0 0.0528 +0 0.0987 +0 0.4605 +0 0.5675 +0 0.1018 +0 0.1150 +0 0.2375 +0 0.2012 +0 0.2348 +0 0.0990 +0 0.1096 +0 0.0941 +0 0.1140 +0 0.0603 +0 0.0792 +0 0.1971 +0 0.0428 +0 0.1286 +0 0.2675 +0 0.0614 +0 0.0652 +0 0.1028 +0 0.1449 +0 0.1067 +0 0.1079 +0 0.1035 +0 0.1679 +0 0.0628 +0 0.1638 +0 0.1942 +0 0.1248 +0 0.0388 +0 0.1158 +0 0.1049 +0 0.0830 +0 0.0760 +0 0.0791 +0 0.1735 +0 0.3073 +0 0.1602 +0 0.3455 +0 0.1228 +0 0.0542 +0 0.1016 +0 0.2549 +0 0.1010 +0 0.1647 +0 0.0596 +0 0.3864 +0 0.0762 +0 0.1453 +0 0.1355 +0 0.2191 +0 0.0842 +0 0.2012 +0 0.1740 +0 0.0357 +0 0.1514 +0 0.1245 +0 0.3412 +0 0.2262 +0 0.1022 +0 0.2730 +0 0.2940 +0 0.0338 +0 0.1619 +0 0.2928 +0 0.3151 +0 0.0915 +0 0.1128 +0 0.1022 +0 0.0661 +0 0.0834 +0 0.0373 +0 0.0887 +0 0.0554 +0 0.0896 +0 0.1626 +0 0.0743 +0 0.1278 +0 0.1090 +0 0.0796 +0 0.1079 +0 0.4199 +0 0.1379 +0 0.0842 +0 0.0916 +0 0.0487 +0 0.1518 +0 0.3532 +0 0.0734 +0 0.0831 +0 0.1648 +0 0.0913 +0 0.0727 +0 0.0782 +0 0.1024 +0 0.1280 +0 0.0920 +0 0.1390 +0 0.0350 +0 0.1044 +0 0.0856 +0 0.0457 +0 0.0773 +0 0.0681 +0 0.0427 +0 0.1955 +0 0.1108 +0 0.0712 +0 0.1150 +0 0.0307 +0 0.0483 +0 0.0926 +0 0.1209 +0 0.1442 +0 0.1136 +0 0.2001 +0 0.7497 +0 0.0572 +0 0.0716 +0 0.0778 +0 0.1139 +0 0.1272 +0 0.0531 +0 0.0747 +0 0.0471 +0 0.0595 +0 0.0822 +0 0.1518 +0 0.2273 +0 0.1530 +0 0.0594 +0 0.0871 +0 0.1207 +0 0.1098 +0 0.1737 +0 0.0910 +0 0.1286 +0 0.1150 +1 0.8423 +0 0.1214 +0 0.0713 +0 0.0885 +0 0.0566 +0 0.0679 +0 0.0356 +0 0.6921 +0 0.0532 +0 0.1316 +0 0.0909 +0 0.1432 +0 0.0957 +0 0.1047 +0 0.0345 +0 0.1246 +0 0.0524 +0 0.1479 +0 0.1399 +0 0.1428 +0 0.0656 +0 0.1095 +0 0.3661 +0 0.2360 +0 0.2799 +0 0.1967 +0 0.0721 +0 0.0573 +0 0.1220 +0 0.0888 +0 0.0886 +0 0.0395 +0 0.0596 +0 0.1730 +0 0.1533 +0 0.1809 +0 0.0514 +0 0.0878 +0 0.0447 +0 0.6887 +0 0.1286 +0 0.0741 +0 0.1442 +0 0.0748 +0 0.1640 +0 0.1311 +0 0.1934 +0 0.1392 +0 0.0745 +0 0.0574 +0 0.0917 +0 0.1315 +0 0.1590 +0 0.2379 +0 0.0843 +0 0.0995 +0 0.1550 +0 0.0933 +0 0.0424 +0 0.2295 +0 0.0792 +0 0.1082 +0 0.1260 +0 0.0768 +0 0.0659 +0 0.1155 +0 0.2252 +0 0.0787 +0 0.1394 +0 0.1751 +0 0.0749 +0 0.1161 +0 0.2515 +0 0.1265 +0 0.0684 +0 0.0825 +0 0.0641 +0 0.1225 +0 0.1654 +0 0.0375 +0 0.1615 +0 0.1403 +0 0.0379 +0 0.0423 +0 0.1134 +0 0.1168 +0 0.1455 +0 0.2038 +0 0.0916 +0 0.0473 +0 0.2322 +0 0.1707 +0 0.7405 +0 0.0703 +0 0.0564 +0 0.0704 +0 0.1151 +0 0.1012 +0 0.1432 +0 0.0824 +0 0.1481 +0 0.1741 +0 0.1353 +0 0.0442 +0 0.0994 +0 0.1210 +0 0.1739 +0 0.1207 +0 0.0560 +0 0.0676 +0 0.1218 +0 0.0446 +0 0.1263 +0 0.1036 +0 0.0746 +0 0.2637 +0 0.2735 +1 0.8167 +0 0.2198 +0 0.1742 +0 0.1267 +0 0.1021 +0 0.1106 +0 0.1765 +0 0.1206 +0 0.2059 +0 0.0267 +0 0.0790 +0 0.2246 +0 0.0532 +0 0.0570 +0 0.1237 +0 0.0584 +0 0.2865 +0 0.0350 +0 0.0485 +1 0.8575 +0 0.1776 +0 0.0872 +0 0.1851 +0 0.1347 +0 0.4619 +0 0.6687 +0 0.1310 +0 0.1565 +0 0.0991 +0 0.1701 +0 0.1920 +0 0.0529 +0 0.0894 +0 0.0854 +0 0.1598 +0 0.1163 +0 0.1341 +0 0.0962 +0 0.0513 +0 0.1257 +0 0.0878 +0 0.2797 +0 0.0570 +0 0.0448 +0 0.1016 +0 0.1600 +0 0.1741 +0 0.1563 +0 0.0665 +0 0.1091 +0 0.1068 +0 0.0984 +0 0.1383 +0 0.2246 +0 0.0530 +0 0.1160 +0 0.0428 +0 0.1123 +0 0.3321 +0 0.0690 +0 0.1214 +0 0.0588 +0 0.1816 +0 0.0387 +0 0.0926 +0 0.0965 +0 0.0446 +0 0.1096 +0 0.1299 +0 0.1694 +0 0.0995 +0 0.2014 +0 0.1863 +0 0.2162 +0 0.1333 +0 0.0634 +0 0.1578 +0 0.1350 +0 0.1120 +0 0.1626 +0 0.0755 +0 0.1021 +0 0.0422 +0 0.1859 +0 0.0670 +0 0.1477 +0 0.1301 +0 0.2119 +0 0.1696 +0 0.0747 +0 0.0714 +0 0.0742 +0 0.6065 +1 0.8245 +0 0.0737 +0 0.4318 +0 0.1841 +0 0.0863 +0 0.1170 +0 0.0945 +0 0.0870 +0 0.2157 +0 0.4285 +0 0.1682 +0 0.1246 +0 0.1116 +0 0.1318 +0 0.2255 +0 0.0820 +0 0.1368 +0 0.2403 +0 0.1572 +0 0.2703 +0 0.0332 +0 0.2513 +0 0.1158 +0 0.1066 +0 0.6995 +0 0.0487 +0 0.1090 +0 0.0729 +0 0.0655 +0 0.1268 +0 0.0531 +0 0.0596 +0 0.1118 +0 0.0782 +0 0.0329 +0 0.0828 +0 0.2050 +0 0.0692 +0 0.1165 +0 0.1343 +0 0.4851 +0 0.3793 +0 0.0892 +0 0.0986 +0 0.0723 +0 0.1516 +0 0.1266 +0 0.2693 +0 0.0852 +0 0.4272 +0 0.0398 +0 0.1269 +0 0.0592 +0 0.1098 +0 0.1115 +0 0.1354 +0 0.1260 +0 0.3066 +0 0.4202 +0 0.0719 +0 0.2486 +0 0.1222 +0 0.1777 +0 0.0865 +0 0.0649 +0 0.1341 +1 0.8155 +0 0.1261 +0 0.2766 +0 0.0873 +0 0.0932 +0 0.1475 +0 0.1105 +0 0.0967 +0 0.1395 +0 0.1811 +0 0.2062 +0 0.1474 +0 0.0966 +0 0.2280 +0 0.0810 +0 0.1243 +0 0.0620 +0 0.1078 +0 0.0697 +0 0.1153 +0 0.0743 +0 0.0995 +0 0.0515 +0 0.0314 +0 0.1005 +0 0.1866 +0 0.0528 +0 0.1559 +0 0.0887 +0 0.7404 +0 0.3915 +0 0.1152 +0 0.1117 +0 0.2777 +0 0.2096 +0 0.0515 +0 0.0790 +0 0.1221 +0 0.3592 +0 0.0446 +0 0.0742 +0 0.2397 +0 0.1003 +0 0.1758 +0 0.3223 +0 0.2901 +0 0.1008 +0 0.1402 +0 0.1336 +0 0.0734 +0 0.0571 +0 0.0343 +0 0.2497 +0 0.0739 +0 0.1403 +0 0.1184 +0 0.1128 +0 0.0346 +0 0.1019 +0 0.0553 +0 0.3885 +0 0.0782 +0 0.1932 +0 0.7374 +0 0.0604 +0 0.2361 +0 0.2474 +0 0.0667 +0 0.0897 +0 0.0453 +0 0.0837 +0 0.0739 +0 0.1471 +0 0.0896 +0 0.0672 +0 0.1224 +0 0.2728 +0 0.1483 +0 0.1064 +0 0.1094 +0 0.1737 +0 0.1141 +0 0.1056 +0 0.1214 +0 0.1106 +0 0.0937 +0 0.1020 +0 0.0940 +0 0.0612 +0 0.0733 +0 0.1467 +0 0.2771 +0 0.0632 +0 0.0457 +0 0.2539 +0 0.0609 +1 0.8291 +0 0.0568 +0 0.2739 +0 0.0689 +0 0.1032 +0 0.0743 +0 0.0315 +0 0.0725 +0 0.0884 +0 0.1231 +0 0.0814 +0 0.1036 +0 0.1081 +0 0.1248 +0 0.6694 +0 0.1000 +0 0.1679 +0 0.3249 +0 0.0638 +0 0.0955 +0 0.5653 +0 0.2020 +0 0.1801 +0 0.1470 +0 0.0838 +0 0.0676 +0 0.0744 +0 0.1737 +0 0.0580 +0 0.0668 +0 0.0756 +0 0.0507 +0 0.3633 +0 0.1526 +0 0.1353 +0 0.0429 +0 0.1041 +0 0.1285 +0 0.0677 +0 0.1256 +0 0.0816 +0 0.0573 +0 0.0906 +0 0.0919 +0 0.0827 +0 0.0400 +0 0.1500 +1 0.7622 +0 0.1608 +0 0.4830 +0 0.0609 +0 0.1305 +0 0.5588 +0 0.1271 +0 0.1118 +0 0.0743 +0 0.0477 +0 0.5192 +0 0.0822 +0 0.0726 +0 0.5786 +0 0.1167 +0 0.0791 +0 0.2226 +0 0.0509 +0 0.1501 +0 0.1113 +0 0.3742 +0 0.1265 +0 0.1171 +0 0.0899 +0 0.0611 +0 0.1421 +0 0.0496 +0 0.1225 +0 0.0506 +0 0.0971 +0 0.1484 +0 0.0817 +0 0.0841 +0 0.3658 +0 0.1085 +0 0.0637 +0 0.2670 +0 0.0722 +0 0.0974 +0 0.1256 +0 0.0537 +0 0.0789 +0 0.0978 +0 0.1547 +0 0.1352 +0 0.2793 +0 0.1552 +0 0.1051 +0 0.1644 +0 0.1721 +0 0.0586 +0 0.0936 +0 0.0748 +0 0.0982 +0 0.0792 +0 0.1069 +0 0.1022 +0 0.0617 +0 0.0781 +0 0.1628 +0 0.0665 +0 0.4088 +0 0.0391 +0 0.0801 +0 0.0757 +0 0.1012 +0 0.1679 +0 0.0445 +0 0.2429 +0 0.0816 +0 0.2765 +0 0.1491 +0 0.1144 +0 0.0469 +0 0.1198 +0 0.3919 +0 0.1475 +0 0.1477 +0 0.0742 +0 0.0767 +0 0.1160 +0 0.0747 +0 0.0974 +0 0.0847 +0 0.1501 +0 0.3295 +0 0.1447 +0 0.1165 +0 0.0699 +0 0.1118 +0 0.0942 +0 0.2144 +0 0.0605 +0 0.1473 +0 0.1750 +0 0.0902 +0 0.0589 +0 0.2589 +0 0.0380 +0 0.2384 +0 0.2405 +0 0.0875 +0 0.1481 +0 0.0631 +0 0.0667 +0 0.0744 +0 0.1346 +0 0.0679 +0 0.1421 +0 0.0763 +0 0.1039 +0 0.6215 +0 0.1540 +0 0.4832 +0 0.0588 +0 0.1188 +0 0.1204 +0 0.1290 +0 0.0487 +0 0.1677 +0 0.1058 +0 0.0669 +0 0.1107 +1 0.8173 +0 0.0780 +0 0.1134 +0 0.2052 +0 0.3900 +0 0.1817 +0 0.0890 +0 0.2481 +0 0.1161 +0 0.1120 +0 0.0832 +0 0.1328 +0 0.0495 +0 0.1153 +0 0.2874 +0 0.0693 +0 0.1628 +0 0.0418 +0 0.1989 +0 0.1057 +0 0.1044 +0 0.0872 +0 0.0412 +0 0.1693 +0 0.1467 +0 0.1561 +0 0.1230 +0 0.0737 +0 0.0487 +0 0.1325 +0 0.0597 +0 0.0593 +0 0.6500 +0 0.5199 +0 0.0860 +0 0.1198 +0 0.0726 +0 0.0843 +0 0.1237 +0 0.1210 +0 0.3080 +0 0.1573 +0 0.2347 +0 0.0719 +0 0.5086 +0 0.7033 +0 0.1200 +0 0.0624 +0 0.0919 +0 0.1051 +0 0.1417 +0 0.1004 +0 0.0539 +0 0.0847 +0 0.1225 +0 0.0708 +0 0.2233 +0 0.0326 +0 0.1198 +0 0.1038 +0 0.2103 +0 0.1075 +0 0.0599 +0 0.0938 +0 0.1612 +0 0.1357 +0 0.1543 +0 0.1783 +0 0.2444 +0 0.1675 +0 0.0586 +0 0.0828 +0 0.0435 +0 0.1220 +0 0.0479 +0 0.1437 +0 0.1180 +0 0.1016 +0 0.1513 +0 0.1558 +0 0.0863 +0 0.0661 +0 0.6990 +0 0.1878 +0 0.0759 +0 0.1849 +0 0.1290 +0 0.1983 +0 0.2225 +0 0.0909 +0 0.0897 +0 0.0664 +0 0.0748 +0 0.0840 +0 0.0557 +0 0.2642 +0 0.1383 +1 0.8651 +0 0.0799 +0 0.0763 +0 0.0720 +0 0.1124 +0 0.1515 +0 0.0632 +0 0.0731 +0 0.0591 +0 0.0623 +0 0.3949 +0 0.1155 +0 0.1368 +0 0.1236 +0 0.0891 +0 0.1564 +0 0.1264 +0 0.2946 +0 0.0484 +0 0.1462 +0 0.0950 +0 0.1590 +0 0.2946 +0 0.1228 +0 0.0504 +0 0.1390 +0 0.2973 +0 0.3779 +0 0.0721 +0 0.0878 +0 0.1155 +0 0.1415 +0 0.0409 +0 0.1413 +0 0.2195 +0 0.0551 +0 0.0817 +0 0.1941 +0 0.1774 +0 0.1295 +0 0.0834 +0 0.1195 +0 0.0913 +0 0.4097 +0 0.0514 +0 0.1296 +0 0.0937 +0 0.0489 +0 0.2041 +0 0.0879 +0 0.0925 +0 0.1989 +0 0.0661 +0 0.1800 +0 0.0781 +0 0.0937 +0 0.0523 +0 0.0805 +0 0.1314 +0 0.2770 +0 0.0683 +0 0.0988 +0 0.0972 +0 0.0576 +0 0.3203 +0 0.2681 +0 0.1562 +0 0.0659 +0 0.3636 +0 0.1439 +0 0.1481 +0 0.1207 +0 0.2362 +0 0.0892 +0 0.0651 +0 0.0473 +0 0.0837 +0 0.0743 +0 0.1553 +0 0.1192 +0 0.1253 +0 0.1116 +0 0.1036 +0 0.1988 +0 0.1038 +0 0.0861 +0 0.2866 +0 0.2560 +1 0.7531 +0 0.1004 +0 0.1898 +0 0.1986 +0 0.3218 +0 0.1289 +0 0.0612 +0 0.2329 +0 0.0452 +0 0.1628 +0 0.1082 +0 0.0914 +0 0.0472 +0 0.0458 +0 0.2581 +0 0.0789 +0 0.1285 +1 0.7996 +0 0.1987 +0 0.1067 +0 0.0899 +0 0.1473 +0 0.0412 +0 0.2635 +0 0.0965 +0 0.0599 +0 0.1756 +0 0.0353 +0 0.0713 +0 0.0430 +0 0.1177 +0 0.1749 +0 0.0814 +0 0.0774 +0 0.0641 +0 0.1047 +0 0.1102 +0 0.1034 +0 0.1050 +0 0.1562 +0 0.0491 +0 0.1655 +0 0.2140 +0 0.0911 +0 0.2376 +0 0.4591 +0 0.0765 +0 0.0911 +0 0.0863 +0 0.0515 +0 0.0976 +0 0.1164 +0 0.1513 +0 0.0630 +0 0.1194 +0 0.0617 +0 0.0558 +0 0.1035 +0 0.0888 +0 0.1468 +0 0.1044 +0 0.1892 +0 0.0767 +0 0.0632 +0 0.4258 +0 0.1136 +0 0.0894 +0 0.0581 +0 0.0575 +0 0.6653 +0 0.4129 +0 0.0789 +0 0.2564 +0 0.2321 +0 0.4116 +0 0.1456 +1 0.8550 +0 0.0715 +0 0.0917 +0 0.1123 +0 0.1543 +0 0.1132 +0 0.1061 +0 0.0931 +0 0.0587 +0 0.2080 +0 0.2300 +0 0.1870 +0 0.0913 +0 0.0669 +0 0.1063 +0 0.2159 +0 0.1306 +0 0.1195 +0 0.0434 +0 0.7233 +0 0.1479 +0 0.1986 +0 0.0980 +0 0.0638 +0 0.0494 +0 0.0713 +0 0.1696 +0 0.1917 +0 0.0765 +0 0.3097 +0 0.1088 +0 0.3525 +0 0.2994 +0 0.1119 +0 0.1823 +0 0.0467 +0 0.1270 +0 0.0975 +0 0.1134 +0 0.1705 +0 0.1447 +0 0.1028 +0 0.0640 +0 0.1399 +0 0.1391 +0 0.0948 +0 0.1095 +0 0.1705 +0 0.0399 +0 0.1667 +0 0.1579 +0 0.6561 +0 0.1439 +0 0.1002 +0 0.1259 +0 0.0928 +0 0.0748 +0 0.0495 +0 0.2122 +0 0.1634 +0 0.3953 +0 0.1477 +0 0.2062 +0 0.0856 +0 0.2591 +0 0.3224 +0 0.4401 +0 0.1174 +0 0.1208 +0 0.3468 +0 0.1232 +0 0.0819 +0 0.0510 +0 0.4173 +0 0.0698 +0 0.1502 +0 0.0539 +0 0.3346 +0 0.0660 +0 0.0541 +0 0.1919 +0 0.0946 +0 0.2416 +0 0.1017 +0 0.3086 +0 0.0942 +0 0.0791 +0 0.0622 +0 0.2691 +0 0.1871 +0 0.1057 +0 0.1371 +0 0.1447 +0 0.0402 +0 0.3478 +0 0.5858 +0 0.0957 +0 0.0772 +0 0.0493 +0 0.0790 +0 0.1075 +0 0.5343 +0 0.0637 +0 0.0368 +0 0.0603 +0 0.1072 +0 0.1708 +0 0.0801 +0 0.0623 +0 0.0356 +0 0.2026 +0 0.1067 +0 0.1476 +0 0.0767 +0 0.0761 +0 0.0692 +0 0.0576 +0 0.1110 +0 0.2073 +0 0.2069 +0 0.1071 +0 0.0685 +0 0.0477 +0 0.0965 +0 0.1997 +0 0.0759 +0 0.0700 +0 0.1040 +0 0.1090 +0 0.0926 +0 0.5752 +0 0.1474 +0 0.1425 +0 0.0942 +0 0.1527 +0 0.1548 +0 0.0938 +0 0.0459 +0 0.1517 +0 0.0617 +0 0.1613 +0 0.0711 +0 0.1585 +0 0.0816 +0 0.0689 +0 0.0918 +0 0.1009 +0 0.0889 +0 0.0828 +0 0.0668 +0 0.0772 +0 0.2196 +0 0.0611 +0 0.1388 +0 0.4508 +0 0.1388 +0 0.0928 +0 0.2064 +0 0.0764 +0 0.1530 +0 0.0727 +0 0.0650 +0 0.1128 +0 0.0985 +0 0.0881 +0 0.1389 +0 0.0811 +0 0.0545 +0 0.0481 +0 0.0778 +0 0.0614 +0 0.0439 +0 0.1414 +0 0.2289 +0 0.0658 +0 0.7234 +0 0.1409 +0 0.1578 +0 0.0523 +0 0.1120 +0 0.2167 +0 0.0816 +0 0.0355 +0 0.1599 +0 0.1111 +0 0.1309 +0 0.0300 +0 0.1415 +0 0.0481 +0 0.1612 +0 0.3314 +0 0.0592 +1 0.7699 +0 0.1035 +0 0.1038 +0 0.1636 +0 0.1052 +0 0.0487 +0 0.0574 +0 0.1727 +0 0.1380 +0 0.1935 +0 0.1323 +0 0.0702 +0 0.7043 +0 0.0429 +0 0.2276 +0 0.3246 +0 0.1403 +0 0.3085 +0 0.0855 +0 0.1485 +0 0.1247 +0 0.0947 +0 0.2714 +0 0.0382 +0 0.0405 +0 0.0394 +0 0.4722 +0 0.0811 +0 0.0841 +0 0.0789 +0 0.1128 +0 0.3005 +0 0.6359 +0 0.0663 +0 0.0537 +0 0.0978 +0 0.0590 +0 0.5021 +1 0.8533 +0 0.0828 +0 0.1702 +0 0.0651 +0 0.0952 +0 0.5943 +0 0.1484 +0 0.2334 +0 0.0740 +0 0.0619 +0 0.2262 +0 0.0722 +0 0.1024 +0 0.2407 +0 0.2889 +0 0.0402 +0 0.1527 +0 0.0602 +0 0.0829 +0 0.0865 +0 0.1122 +0 0.0963 +0 0.0628 +0 0.0634 +0 0.1921 +0 0.1029 +0 0.0512 +0 0.1505 +0 0.2897 +0 0.1361 +0 0.3746 +0 0.3993 +0 0.0460 +0 0.2036 +0 0.0692 +0 0.2955 +0 0.2062 +0 0.1082 +0 0.4865 +0 0.0768 +0 0.0939 +0 0.0526 +0 0.4663 +0 0.0641 +0 0.1416 +0 0.1584 +0 0.1164 +0 0.0772 +0 0.1494 +0 0.0947 +0 0.3802 +0 0.1241 +0 0.0519 +0 0.1055 +0 0.1058 +0 0.0802 +0 0.0948 +0 0.0619 +0 0.3498 +0 0.0630 +0 0.0716 +0 0.0468 +0 0.2178 +0 0.0777 +0 0.0975 +0 0.0474 +0 0.0583 +0 0.0901 +0 0.0761 +0 0.1005 +0 0.2123 +0 0.0639 +0 0.1793 +0 0.1588 +0 0.1528 +0 0.1593 +0 0.0647 +0 0.0616 +0 0.0483 +0 0.1126 +0 0.1486 +0 0.3577 +0 0.5824 +0 0.2648 +0 0.0842 +0 0.0570 +0 0.0747 +0 0.1432 +0 0.0404 +0 0.1169 +0 0.3586 +0 0.1573 +0 0.1226 +0 0.1472 +0 0.5938 +0 0.1745 +0 0.1566 +0 0.2057 +0 0.0759 +0 0.1367 +0 0.1033 +0 0.0842 +0 0.2851 +0 0.1572 +0 0.1114 +0 0.0947 +0 0.0825 +0 0.1111 +0 0.0801 +0 0.1232 +0 0.2045 +0 0.0915 +0 0.0448 +0 0.0886 +0 0.1190 +0 0.0990 +0 0.1059 +0 0.2253 +0 0.0993 +0 0.1418 +0 0.0424 +0 0.0869 +0 0.1136 +1 0.8007 +0 0.0970 +0 0.1125 +0 0.0463 +0 0.1112 +0 0.1177 +0 0.2152 +0 0.1569 +0 0.1101 +0 0.0442 +0 0.0796 +0 0.0468 +0 0.1895 +0 0.0623 +0 0.2116 +0 0.1528 +0 0.0514 +0 0.0767 +0 0.0963 +0 0.0311 +0 0.0651 +0 0.1144 +0 0.1606 +0 0.3584 +0 0.0754 +0 0.1823 +0 0.5195 +0 0.0673 +0 0.0947 +0 0.0578 +0 0.1312 +0 0.1406 +0 0.1386 +0 0.1012 +0 0.1156 +0 0.0739 +0 0.1682 +0 0.6001 +0 0.4895 +0 0.0566 +0 0.2138 +0 0.0809 +0 0.0928 +0 0.5531 +0 0.1750 +0 0.0532 +0 0.0466 +0 0.0355 +0 0.2813 +0 0.1606 +0 0.0831 +0 0.0899 +0 0.3114 +0 0.0991 +0 0.1400 +0 0.0513 +0 0.0542 +0 0.0659 +0 0.1011 +0 0.0914 +0 0.1329 +0 0.3591 +0 0.0613 +0 0.1169 +0 0.0861 +0 0.0884 +0 0.1287 +0 0.0856 +0 0.1198 +0 0.2492 +0 0.0952 +0 0.0865 +0 0.0665 +0 0.1119 +0 0.0821 +0 0.0712 +0 0.0651 +0 0.2065 +0 0.1133 +0 0.0560 +0 0.0400 +0 0.2323 +0 0.0384 +0 0.1644 +0 0.0487 +0 0.0448 +0 0.0967 +0 0.0669 +0 0.0812 +0 0.1543 +0 0.0545 +0 0.0575 +0 0.0625 +0 0.1255 +0 0.1602 +0 0.1017 +0 0.1549 +0 0.0308 +0 0.0908 +0 0.0715 +0 0.0758 +0 0.0813 +0 0.0470 +0 0.0656 +0 0.1032 +0 0.2509 +0 0.1116 +0 0.0455 +0 0.2480 +0 0.2222 +0 0.2183 +0 0.0398 +0 0.1129 +0 0.0469 +0 0.0865 +0 0.1416 +0 0.0820 +0 0.1538 +0 0.1217 +0 0.1835 +0 0.0555 +0 0.0742 +0 0.3140 +0 0.3938 +0 0.0427 +0 0.2643 +0 0.1200 +0 0.1039 +0 0.1608 +0 0.0400 +0 0.7293 +0 0.0555 +0 0.0683 +0 0.1411 +0 0.0945 +0 0.0364 +0 0.0655 +0 0.1140 +0 0.0921 +0 0.1061 +0 0.0784 +0 0.0764 +0 0.3084 +0 0.2123 +0 0.2405 +0 0.0582 +0 0.1547 +0 0.0793 +0 0.0614 +0 0.0798 +0 0.0619 +0 0.0833 +0 0.1153 +0 0.0868 +0 0.4144 +0 0.1978 +0 0.0780 +0 0.0677 +0 0.0705 +0 0.0522 +0 0.1524 +0 0.0875 +0 0.1891 +0 0.2023 +0 0.0792 +0 0.0840 +0 0.0687 +0 0.0651 +0 0.4324 +0 0.1570 +0 0.1582 +0 0.0603 +0 0.1239 +0 0.1155 +0 0.1656 +0 0.0606 +0 0.0282 +0 0.0996 +0 0.0522 +0 0.2052 +0 0.0545 +0 0.0819 +0 0.0574 +0 0.1063 +0 0.1655 +0 0.0611 +0 0.1098 +0 0.0851 +0 0.1405 +0 0.2305 +0 0.1346 +0 0.2525 +0 0.0857 +0 0.1342 +0 0.2189 +0 0.0514 +0 0.0550 +0 0.0626 +0 0.1894 +0 0.1383 +0 0.1351 +0 0.1367 +0 0.0507 +0 0.1977 +0 0.1395 +0 0.0462 +0 0.0812 +0 0.1387 +0 0.5832 +0 0.0427 +0 0.2876 +0 0.1523 +0 0.2121 +0 0.1079 +0 0.4208 +0 0.0669 +0 0.1328 +0 0.0923 +0 0.0871 +0 0.0714 +0 0.0456 +0 0.1041 +0 0.0817 +0 0.0963 +0 0.1860 +0 0.1518 +0 0.6914 +0 0.0500 +0 0.2301 +0 0.0898 +0 0.0684 +0 0.3175 +0 0.1051 +0 0.1191 +0 0.0430 +0 0.0581 +0 0.0664 +0 0.1009 +0 0.0518 +0 0.0875 +0 0.1164 +0 0.3328 +0 0.0816 +0 0.1110 +0 0.1173 +0 0.0579 +0 0.1375 +0 0.1345 +0 0.0921 +0 0.4434 +0 0.0404 +0 0.2057 +1 0.8723 +0 0.0892 +0 0.3184 +0 0.3641 +0 0.1395 +0 0.0610 +0 0.2179 +0 0.1878 +1 0.8484 +0 0.0453 +0 0.0796 +0 0.1453 +0 0.0542 +0 0.1433 +0 0.3047 +0 0.0693 +0 0.1090 +0 0.1297 +0 0.1964 +0 0.2066 +0 0.0884 +0 0.0743 +0 0.4134 +0 0.1127 +0 0.2762 +1 0.8162 +0 0.1348 +0 0.0585 +0 0.1334 +0 0.6651 +0 0.1847 +0 0.0948 +0 0.3118 +0 0.0885 +0 0.0772 +0 0.6416 +0 0.0995 +0 0.1627 +0 0.0973 +0 0.1630 +0 0.1159 +0 0.1881 +0 0.0771 +0 0.5424 +0 0.2430 +0 0.0822 +0 0.3530 +0 0.0545 +0 0.1542 +0 0.1058 +0 0.0761 +0 0.0485 +0 0.1096 +0 0.0378 +0 0.2126 +0 0.1254 +0 0.1561 +0 0.4321 +0 0.1132 +0 0.0505 +0 0.0885 +0 0.2531 +0 0.1048 +0 0.1320 +0 0.1979 +0 0.1018 +0 0.1355 +0 0.0796 +0 0.1413 +1 0.7500 +0 0.1046 +0 0.2190 +0 0.0987 +0 0.2222 +0 0.0866 +0 0.0733 +0 0.2316 +0 0.0507 +0 0.3263 +0 0.1428 +0 0.0560 +0 0.0660 +0 0.1158 +0 0.0622 +0 0.6808 +0 0.0301 +0 0.1008 +0 0.1137 +0 0.1141 +0 0.0734 +0 0.0930 +0 0.1567 +0 0.1644 +0 0.1921 +0 0.1488 +0 0.0762 +0 0.1067 +0 0.0899 +0 0.0661 +0 0.0978 +0 0.0951 +0 0.2690 +0 0.0982 +0 0.1456 +0 0.1318 +0 0.1809 +0 0.0967 +0 0.2003 +0 0.0762 +0 0.6831 +0 0.0724 +0 0.0640 +0 0.1091 +0 0.1550 +0 0.1328 +0 0.0615 +0 0.0780 +0 0.0785 +0 0.0574 +1 0.8577 +0 0.2190 +0 0.0717 +0 0.0884 +0 0.0937 +0 0.1652 +0 0.0730 +0 0.1949 +0 0.5209 +0 0.1013 +0 0.0632 +0 0.6465 +0 0.4817 +0 0.0438 +0 0.5271 +0 0.1153 +0 0.0836 +0 0.1523 +0 0.1106 +0 0.1732 +0 0.2581 +0 0.0846 +0 0.2129 +1 0.8120 +0 0.1225 +0 0.0502 +0 0.0966 +0 0.1504 +0 0.0617 +0 0.0933 +0 0.1405 +0 0.0904 +0 0.1404 +0 0.0609 +0 0.1229 +0 0.0593 +0 0.1559 +0 0.0701 +0 0.1204 +0 0.3501 +0 0.0537 +0 0.2456 +0 0.1136 +0 0.1103 +0 0.3507 +0 0.0699 +0 0.1831 +0 0.0642 +0 0.2405 +0 0.0924 +0 0.0785 +0 0.1123 +0 0.0665 +0 0.1412 +0 0.2041 +0 0.0644 +0 0.1861 +0 0.5741 +0 0.0747 +0 0.0607 +0 0.0641 +0 0.1058 +0 0.2555 +0 0.1434 +0 0.1683 +1 0.7559 +0 0.1450 +0 0.0317 +0 0.0388 +0 0.0984 +0 0.0558 +0 0.0405 +0 0.1060 +0 0.0389 +0 0.0945 +0 0.0624 +0 0.0516 +0 0.0977 +0 0.1303 +0 0.1409 +0 0.2586 +0 0.1576 +0 0.0489 +0 0.3037 +0 0.0896 +0 0.1487 +0 0.0382 +0 0.1203 +0 0.0620 +0 0.0407 +0 0.0376 +0 0.0752 +0 0.0593 +0 0.1828 +0 0.1319 +0 0.1542 +0 0.2345 +0 0.0797 +0 0.1060 +0 0.2516 +0 0.0753 +0 0.0365 +0 0.2017 +0 0.1365 +0 0.0607 +0 0.1093 +0 0.2031 +0 0.1623 +0 0.0941 +0 0.0962 +0 0.1811 +0 0.5956 +0 0.0965 +0 0.0768 +0 0.0958 +0 0.1391 +0 0.0767 +0 0.0976 +0 0.0993 +0 0.1230 +0 0.1542 +0 0.2253 +0 0.1095 +0 0.1000 +0 0.0811 +0 0.0585 +0 0.0879 +0 0.1309 +0 0.0752 +0 0.0650 +0 0.1545 +0 0.0353 +0 0.1659 +0 0.0475 +0 0.0615 +0 0.1200 +0 0.0722 +0 0.0592 +0 0.1426 +0 0.1305 +0 0.2213 +0 0.0460 +0 0.0585 +0 0.0454 +0 0.0952 +0 0.0571 +0 0.0563 +0 0.0951 +0 0.1315 +0 0.0817 +0 0.0985 +0 0.0981 +0 0.1150 +0 0.1134 +0 0.0706 +0 0.2977 +0 0.0807 +0 0.0756 +0 0.1189 +0 0.0923 +0 0.1510 +0 0.1108 +0 0.0714 +0 0.3969 +0 0.0519 +0 0.0883 +0 0.0998 +0 0.1211 +0 0.1492 +0 0.0652 +0 0.0831 +0 0.6029 +0 0.1271 +0 0.2703 +0 0.1012 +0 0.0585 +0 0.0520 +0 0.0715 +0 0.0991 +0 0.2190 +0 0.1479 +0 0.0816 +1 0.8356 +0 0.0443 +0 0.1856 +0 0.0490 +0 0.1793 +0 0.1356 +0 0.1589 +0 0.0613 +0 0.1195 +0 0.1063 +0 0.5639 +0 0.0638 +0 0.0602 +0 0.0727 +0 0.0802 +0 0.0872 +0 0.1764 +0 0.0722 +0 0.0637 +0 0.0588 +0 0.1388 +0 0.1335 +0 0.4056 +0 0.2666 +0 0.0484 +0 0.0863 +0 0.0453 +0 0.0988 +0 0.1286 +1 0.8049 +0 0.1275 +0 0.0875 +0 0.1968 +0 0.1654 +0 0.1120 +0 0.1664 +0 0.0686 +0 0.0605 +0 0.1311 +0 0.1368 +0 0.1621 +0 0.0715 +0 0.1174 +0 0.0592 +0 0.1247 +0 0.1149 +0 0.0604 +0 0.2951 +0 0.0438 +0 0.1724 +0 0.1523 +0 0.4508 +0 0.2989 +0 0.0855 +0 0.1174 +1 0.7629 +0 0.1890 +0 0.2535 +0 0.1192 +0 0.1076 +0 0.3073 +0 0.1726 +0 0.3009 +0 0.0519 +0 0.0944 +0 0.0806 +0 0.0538 +0 0.0414 +0 0.0443 +0 0.3465 +0 0.1053 +0 0.2524 +0 0.1505 +0 0.0586 +0 0.1044 +0 0.0446 +0 0.1235 +0 0.1058 +0 0.2125 +0 0.0915 +0 0.0653 +0 0.0984 +0 0.0945 +0 0.0762 +0 0.0384 +0 0.0532 +0 0.0865 +0 0.2314 +0 0.3693 +0 0.1678 +0 0.2481 +0 0.5158 +0 0.0444 +0 0.0982 +1 0.8666 +0 0.2011 +0 0.1061 +0 0.1679 +0 0.0811 +0 0.1616 +0 0.1196 +0 0.2351 +0 0.1366 +0 0.1749 +0 0.0645 +0 0.0462 +0 0.1697 +0 0.0609 +0 0.0686 +0 0.2585 +0 0.0736 +0 0.0858 +0 0.1299 +0 0.1987 +0 0.0935 +0 0.0537 +0 0.0325 +0 0.2141 +0 0.0529 +0 0.0676 +0 0.0740 +0 0.1985 +0 0.0945 +0 0.1758 +0 0.1679 +0 0.1301 +0 0.0971 +0 0.0618 +0 0.0715 +0 0.0645 +0 0.0889 +0 0.0767 +0 0.1912 +0 0.2128 +0 0.0630 +0 0.1116 +0 0.0583 +0 0.0522 +0 0.1681 +0 0.0584 +0 0.1239 +0 0.1548 +0 0.5093 +0 0.1203 +0 0.1136 +0 0.1697 +0 0.1717 +0 0.0522 +0 0.0959 +0 0.0823 +0 0.0744 +0 0.0683 +0 0.0686 +0 0.0417 +0 0.1004 +0 0.3232 +0 0.0690 +0 0.1052 +0 0.1810 +0 0.1151 +0 0.0785 +0 0.1884 +0 0.1493 +0 0.0652 +0 0.0672 +0 0.0542 +0 0.0719 +0 0.0721 +0 0.1994 +0 0.0776 +0 0.0576 +0 0.0741 +0 0.3189 +0 0.1527 +0 0.0518 +0 0.0466 +0 0.0739 +0 0.3798 +0 0.0421 +0 0.1885 +0 0.0733 +0 0.0860 +0 0.0874 +0 0.1239 +0 0.6159 +0 0.5879 +1 0.8853 +0 0.0384 +0 0.0548 +0 0.0621 +0 0.0809 +0 0.0803 +0 0.3504 +0 0.1019 +0 0.0412 +0 0.1526 +0 0.1204 +0 0.2623 +0 0.2514 +1 0.8341 +0 0.0866 +0 0.1071 +0 0.0705 +0 0.6668 +0 0.0921 +0 0.0464 +0 0.1928 +0 0.1854 +0 0.1487 +0 0.0814 +0 0.5321 +0 0.2154 +0 0.4735 +0 0.1322 +0 0.1835 +0 0.1111 +0 0.0749 +0 0.0769 +1 0.7816 +0 0.2771 +0 0.0692 +0 0.1168 +0 0.0594 +0 0.0925 +0 0.0564 +0 0.0344 +0 0.1227 +0 0.0683 +0 0.1165 +0 0.2388 +0 0.0812 +0 0.5407 +1 0.8244 +0 0.0596 +0 0.0912 +0 0.0800 +0 0.2634 +0 0.1345 +0 0.0861 +0 0.1323 +0 0.1004 +0 0.1094 +0 0.0698 +0 0.1227 +0 0.0839 +0 0.0964 +0 0.1162 +0 0.0564 +0 0.1247 +0 0.0590 +0 0.0791 +0 0.1857 +0 0.0698 +0 0.2651 +0 0.1162 +0 0.2780 +0 0.0577 +0 0.1102 +0 0.1010 +0 0.1992 +0 0.1602 +0 0.1119 +0 0.2058 +0 0.1085 +0 0.0598 +0 0.2469 +0 0.2242 +0 0.0885 +0 0.0521 +0 0.1194 +0 0.0840 +0 0.1474 +0 0.0948 +0 0.0451 +0 0.1389 +0 0.2086 +0 0.0627 +0 0.1312 +0 0.0978 +0 0.0739 +0 0.0463 +0 0.0648 +0 0.1881 +0 0.0754 +0 0.0566 +0 0.1272 +0 0.0732 +0 0.0806 +0 0.1828 +1 0.7696 +0 0.1328 +0 0.0804 +0 0.0364 +0 0.1600 +0 0.0988 +0 0.1668 +0 0.1695 +0 0.3630 +0 0.1286 +0 0.1372 +0 0.1003 +0 0.0445 +0 0.1482 +0 0.0430 +0 0.0966 +0 0.1399 +1 0.8444 +0 0.0515 +0 0.0544 +0 0.0544 +0 0.2441 +0 0.0794 +0 0.0940 +0 0.1043 +0 0.0958 +0 0.0679 +0 0.1509 +0 0.0461 +0 0.1589 +0 0.0785 +0 0.3724 +0 0.0731 +0 0.0844 +0 0.0566 +0 0.0687 +0 0.2720 +0 0.0796 +0 0.1381 +0 0.1007 +0 0.0389 +0 0.0748 +0 0.0799 +0 0.0816 +0 0.1097 +0 0.0353 +0 0.0706 +0 0.0724 +0 0.1331 +0 0.2456 +0 0.0652 +0 0.1248 +0 0.1106 +0 0.0897 +0 0.1349 +0 0.1766 +0 0.0447 +0 0.6296 +0 0.1182 +0 0.0724 +0 0.1866 +0 0.0626 +0 0.0765 +0 0.1025 +0 0.1084 +0 0.0435 +0 0.0413 +0 0.1579 +0 0.0468 +0 0.1286 +0 0.1553 +0 0.0983 +0 0.1071 +0 0.1472 +0 0.0888 +0 0.1203 +0 0.0831 +0 0.0553 +0 0.2411 +0 0.1116 +0 0.0856 +0 0.1654 +0 0.0948 +0 0.0901 +0 0.1262 +0 0.0849 +0 0.6089 +0 0.0593 +0 0.0546 +0 0.1389 +0 0.1828 +0 0.0977 +0 0.1690 +0 0.0680 +0 0.0516 +0 0.0636 +0 0.0660 +0 0.0679 +0 0.0798 +0 0.2783 +0 0.1382 +0 0.1509 +0 0.1151 +0 0.1262 +0 0.0696 +0 0.0954 +0 0.0392 +0 0.0961 +0 0.0653 +0 0.0818 +0 0.1132 +0 0.0555 +0 0.0833 +0 0.1623 +0 0.0604 +0 0.1350 +0 0.0404 +0 0.1113 +0 0.1444 +0 0.1584 +0 0.1297 +0 0.2897 +0 0.2878 +0 0.0909 +0 0.1861 +0 0.1802 +0 0.1844 +0 0.1451 +0 0.1178 +0 0.0992 +0 0.2035 +0 0.0768 +0 0.0914 +0 0.2000 +0 0.0666 +0 0.1173 +0 0.3206 +1 0.8054 +0 0.3417 +0 0.0553 +0 0.1395 +0 0.1561 +0 0.1781 +0 0.0695 +0 0.3432 +0 0.1460 +0 0.2777 +0 0.1023 +0 0.1205 +1 0.8224 +0 0.2261 +0 0.1267 +0 0.1264 +0 0.0583 +0 0.0948 +0 0.0759 +0 0.1663 +0 0.1783 +0 0.1587 +0 0.0987 +0 0.0608 +0 0.0678 +0 0.1205 +0 0.0614 +0 0.0952 +0 0.1253 +0 0.1029 +0 0.5899 +0 0.1038 +0 0.0840 +0 0.0688 +0 0.1390 +0 0.1484 +0 0.1678 +0 0.0711 +0 0.0953 +0 0.0794 +0 0.0405 +0 0.3015 +0 0.0964 +0 0.1100 +0 0.0819 +0 0.0311 +0 0.0860 +0 0.0952 +0 0.1276 +0 0.0893 +0 0.0784 +0 0.1656 +0 0.3507 +0 0.1413 +0 0.0670 +0 0.0943 +0 0.1448 +0 0.0941 +0 0.2242 +0 0.2745 +0 0.1868 +0 0.0535 +0 0.0435 +0 0.0466 +0 0.0633 +0 0.0976 +0 0.0855 +0 0.1575 +0 0.0898 +0 0.2055 +0 0.0787 +0 0.0302 +0 0.1043 +0 0.0537 +0 0.1057 +0 0.0925 +0 0.0761 +0 0.0743 +0 0.1302 +0 0.4769 +0 0.1298 +0 0.1221 +0 0.0467 +0 0.0601 +0 0.0873 +0 0.2794 +0 0.0537 +0 0.1881 +0 0.0975 +0 0.0976 +0 0.1470 +0 0.0656 +0 0.1836 +0 0.0881 +0 0.1624 +0 0.1168 +0 0.1901 +0 0.0678 +0 0.1098 +0 0.0617 +0 0.1287 +0 0.0754 +0 0.1388 +0 0.1588 +0 0.1220 +0 0.0792 +0 0.0993 +0 0.1062 +0 0.1326 +0 0.0846 +0 0.6427 +0 0.1085 +0 0.0388 +0 0.2794 +0 0.1258 +0 0.0822 +0 0.0914 +0 0.1432 +0 0.2264 +0 0.1687 +0 0.1367 +0 0.0668 +0 0.0451 +0 0.0520 +0 0.0729 +0 0.1491 +0 0.5029 +0 0.0440 +1 0.7534 +0 0.0655 +0 0.0806 +0 0.1875 +0 0.1836 +0 0.2098 +0 0.0927 +0 0.1137 +1 0.7962 +0 0.0595 +0 0.1967 +0 0.3894 +0 0.1157 +0 0.1046 +0 0.0901 +0 0.2066 +0 0.2135 +0 0.0914 +0 0.1028 +0 0.0733 +0 0.0641 +0 0.2159 +0 0.0377 +0 0.2713 +0 0.1622 +0 0.1733 +0 0.2272 +0 0.0783 +0 0.1715 +0 0.1209 +0 0.2418 +0 0.1344 +0 0.0451 +0 0.0605 +0 0.1110 +0 0.0650 +0 0.0454 +0 0.0854 +0 0.2038 +0 0.1032 +0 0.0537 +0 0.0955 +0 0.0625 +0 0.1505 +0 0.0655 +0 0.1055 +0 0.1052 +0 0.1445 +0 0.1144 +0 0.0642 +0 0.1277 +0 0.1247 +0 0.2979 +0 0.2543 +0 0.3713 +0 0.3196 +0 0.1266 +0 0.2348 +0 0.1201 +0 0.3214 +0 0.0992 +0 0.1620 +0 0.0444 +0 0.1012 +0 0.0569 +0 0.1017 +0 0.1023 +0 0.0940 +0 0.1005 +0 0.2542 +0 0.0754 +0 0.0610 +0 0.0679 +0 0.0906 +0 0.1506 +0 0.6086 +0 0.0418 +0 0.0636 +0 0.0983 +0 0.1249 +0 0.0932 +0 0.2854 +0 0.1040 +0 0.0583 +0 0.2900 +0 0.3018 +0 0.1797 +0 0.2505 +0 0.1367 +0 0.0385 +0 0.2078 +0 0.0634 +0 0.0562 +0 0.3410 +0 0.0487 +0 0.2622 +0 0.1628 +0 0.1527 +0 0.0486 +0 0.1183 +0 0.6321 +0 0.1424 +0 0.1420 +0 0.1662 +0 0.0639 +0 0.0971 +0 0.0660 +0 0.0851 +0 0.0525 +0 0.1065 +0 0.2749 +0 0.2448 +0 0.0710 +0 0.1160 +0 0.0644 +0 0.0588 +0 0.2142 +0 0.1952 +0 0.0448 +0 0.4339 +0 0.0861 +0 0.0986 +0 0.0724 +0 0.0780 +0 0.1049 +0 0.1615 +0 0.0653 +0 0.0716 +0 0.1705 +0 0.2113 +0 0.2443 +0 0.0693 +0 0.6294 +0 0.5137 +0 0.0891 +0 0.4506 +0 0.0466 +0 0.0858 +0 0.1018 +0 0.1295 +0 0.0699 +0 0.0698 +0 0.1022 +0 0.0998 +0 0.3235 +0 0.1125 +0 0.1511 +0 0.3516 +0 0.2202 +0 0.1525 +0 0.1809 +0 0.0801 +0 0.1215 +0 0.2094 +0 0.1053 +0 0.1315 +0 0.0677 +0 0.0698 +0 0.1679 +0 0.0591 +0 0.4748 +0 0.1692 +0 0.1172 +0 0.1631 +0 0.0414 +0 0.0813 +0 0.0390 +1 0.2391 +0 0.2790 +0 0.3504 +0 0.2368 +0 0.1210 +0 0.5070 +0 0.0579 +0 0.0500 +0 0.7374 +0 0.0497 +0 0.0671 +0 0.0639 +0 0.0726 +0 0.0401 +0 0.1343 +0 0.0739 +0 0.0722 +0 0.0898 +0 0.0813 +0 0.1339 +0 0.2955 +0 0.1000 +0 0.0607 +0 0.1251 +0 0.0978 +0 0.2178 +0 0.7107 +0 0.0734 +0 0.1546 +0 0.1568 +0 0.7240 +0 0.0639 +0 0.1487 +0 0.0570 +0 0.0808 +0 0.0972 +0 0.2394 +0 0.1233 +0 0.3971 +0 0.1694 +0 0.0784 +0 0.2196 +0 0.1379 +0 0.0791 +0 0.0529 +0 0.0670 +0 0.0950 +0 0.0834 +0 0.2426 +0 0.0792 +0 0.0682 +0 0.0772 +0 0.1215 +0 0.1224 +0 0.0645 +0 0.6016 +0 0.0726 +0 0.1186 +0 0.0966 +0 0.1085 +0 0.2183 +0 0.0744 +0 0.1503 +0 0.1578 +0 0.1689 +0 0.0639 +0 0.1001 +0 0.0766 +0 0.0348 +0 0.0600 +0 0.0901 +0 0.0601 +0 0.0425 +0 0.0578 +0 0.1142 +0 0.0824 +0 0.1424 +0 0.1892 +0 0.1132 +0 0.7261 +0 0.1261 +0 0.1106 +0 0.5496 +0 0.0876 +0 0.2022 +0 0.1888 +0 0.0636 +0 0.0417 +0 0.0608 +0 0.0450 +0 0.0799 +0 0.0635 +0 0.1935 +0 0.0584 +0 0.1195 +0 0.1378 +0 0.0425 +0 0.2085 +0 0.0623 +0 0.3077 +0 0.0462 +0 0.1673 +0 0.0632 +0 0.0476 +0 0.0572 +0 0.0843 +0 0.1374 +0 0.0821 +0 0.1368 +0 0.3198 +0 0.0632 +0 0.1515 +0 0.0693 +0 0.0968 +0 0.1371 +0 0.1001 +0 0.0964 +0 0.0789 +0 0.0927 +0 0.0936 +0 0.1264 +0 0.2122 +0 0.1240 +0 0.1653 +0 0.1878 +0 0.0666 +0 0.1029 +0 0.0682 +0 0.2836 +0 0.0395 +0 0.1765 +0 0.1037 +0 0.2028 +0 0.0839 +0 0.0801 +0 0.2035 +0 0.0577 +0 0.1405 +0 0.1533 +0 0.2613 +0 0.1136 +0 0.1001 +0 0.0862 +0 0.1357 +0 0.1423 +0 0.2950 +0 0.1234 +0 0.1907 +0 0.1916 +0 0.0955 +0 0.2651 +0 0.1465 +0 0.0709 +0 0.1323 +1 0.8751 +0 0.1835 +0 0.0375 +0 0.1972 +0 0.0648 +0 0.0898 +0 0.1711 +0 0.0681 +0 0.1749 +0 0.1260 +0 0.1732 +0 0.0689 +0 0.0471 +0 0.1178 +0 0.1694 +0 0.0359 +0 0.1471 +0 0.0891 +0 0.1071 +0 0.1495 +0 0.0803 +0 0.0962 +0 0.4357 +0 0.0440 +0 0.0990 +0 0.1103 +0 0.0556 +0 0.1448 +0 0.1394 +0 0.0428 +0 0.1724 +0 0.1995 +0 0.1516 +0 0.0390 +1 0.8928 +0 0.0822 +0 0.2343 +0 0.6529 +0 0.0409 +0 0.1903 +0 0.2160 +0 0.0878 +0 0.0443 +0 0.7458 +0 0.7040 +1 0.8467 +0 0.0939 +0 0.3137 +0 0.1326 +0 0.2891 +0 0.0578 +0 0.1144 +0 0.0670 +0 0.0883 +0 0.1276 +0 0.0829 +0 0.0679 +0 0.1399 +0 0.0685 +0 0.0533 +0 0.5644 +0 0.2384 +0 0.0396 +0 0.1236 +0 0.1935 +0 0.0575 +0 0.1074 +0 0.1102 +0 0.2572 +0 0.1110 +0 0.1639 +0 0.1387 +0 0.2929 +0 0.0607 +0 0.1977 +0 0.1321 +0 0.1687 +0 0.2878 +0 0.0490 +0 0.0916 +0 0.2012 +0 0.2045 +0 0.1559 +0 0.0537 +0 0.2243 +0 0.0539 +0 0.0640 +0 0.1551 +0 0.5708 +0 0.1797 +0 0.0405 +0 0.0485 +0 0.0643 +0 0.1895 +0 0.2199 +0 0.1637 +0 0.3789 +0 0.0674 +0 0.0652 +0 0.1224 +0 0.2066 +0 0.1164 +1 0.8567 +0 0.2234 +0 0.0845 +0 0.0796 +0 0.1327 +0 0.0394 +0 0.1409 +0 0.1583 +0 0.1000 +0 0.0495 +0 0.2744 +0 0.0681 +0 0.0904 +0 0.2405 +0 0.2370 +0 0.1297 +0 0.0994 +0 0.0489 +0 0.0659 +0 0.1723 +0 0.1039 +0 0.1153 +0 0.0879 +0 0.1426 +0 0.0570 +0 0.0971 +0 0.0850 +0 0.1903 +0 0.5664 +0 0.0523 +0 0.0854 +0 0.1360 +0 0.3104 +0 0.1338 +0 0.2741 +0 0.4365 +0 0.2245 +0 0.1332 +0 0.1015 +0 0.1159 +0 0.0963 +0 0.0799 +0 0.0787 +0 0.0472 +0 0.0711 +0 0.0949 +0 0.0732 +0 0.0587 +0 0.1650 +0 0.1558 +0 0.1124 +0 0.2220 +0 0.0669 +0 0.1372 +0 0.5933 +0 0.0753 +0 0.0667 +0 0.1859 +0 0.1157 +0 0.1802 +0 0.0833 +0 0.0524 +0 0.1639 +0 0.3161 +0 0.0932 +0 0.1740 +0 0.0460 +0 0.0725 +0 0.0692 +0 0.1445 +0 0.0596 +0 0.0419 +0 0.0879 +0 0.3832 +0 0.0843 +0 0.1197 +0 0.0570 +0 0.1324 +0 0.0959 +0 0.1022 +0 0.0694 +0 0.5560 +0 0.1786 +0 0.0843 +0 0.0713 +0 0.0840 +0 0.0758 +0 0.0291 +0 0.0909 +0 0.1411 +0 0.0591 +0 0.0559 +0 0.0605 +0 0.1476 +0 0.1652 +0 0.0699 +0 0.2100 +0 0.0569 +0 0.0325 +0 0.1086 +0 0.0924 +0 0.0770 +0 0.1643 +0 0.0978 +0 0.0949 +0 0.1161 +0 0.1064 +0 0.0844 +0 0.0772 +0 0.3263 +0 0.0738 +0 0.3787 +0 0.1161 +0 0.0827 +0 0.0399 +0 0.1958 +0 0.0613 +1 0.8388 +0 0.1072 +1 0.8525 +0 0.0778 +0 0.0483 +0 0.1173 +0 0.1598 +0 0.1344 +0 0.1178 +0 0.0544 +0 0.2265 +0 0.1419 +1 0.7923 +0 0.0737 +0 0.0905 +0 0.0327 +0 0.1517 +0 0.0453 +0 0.1518 +0 0.2625 +0 0.0810 +0 0.0693 +0 0.0895 +0 0.2026 +0 0.4897 +0 0.0776 +0 0.2692 +0 0.1150 +0 0.1849 +0 0.1050 +1 0.7932 +0 0.1494 +0 0.2653 +0 0.1066 +0 0.1481 +0 0.0797 +0 0.1386 +0 0.0603 +0 0.0724 +0 0.2129 +0 0.0766 +0 0.1140 +0 0.0378 +0 0.0473 +0 0.0675 +0 0.0677 +0 0.0427 +0 0.3066 +0 0.0474 +0 0.0828 +0 0.0557 +0 0.2453 +1 0.8260 +0 0.0829 +0 0.0995 +0 0.1256 +0 0.0457 +0 0.0869 +0 0.0876 +0 0.0926 +0 0.1802 +0 0.0901 +0 0.1385 +0 0.1352 +0 0.1903 +0 0.1257 +0 0.4752 +0 0.0344 +1 0.7890 +0 0.0904 +0 0.1350 +0 0.1766 +0 0.0579 +0 0.1209 +0 0.4289 +0 0.5966 +0 0.0679 +0 0.1872 +0 0.1875 +0 0.2299 +0 0.1486 +0 0.2158 +0 0.1018 +0 0.0424 +0 0.1214 +0 0.0590 +0 0.0676 +0 0.0559 +0 0.1045 +0 0.1537 +0 0.0704 +0 0.1352 +0 0.1341 +0 0.1071 +0 0.1286 +0 0.0713 +0 0.1782 +0 0.2464 +0 0.0818 +0 0.0891 +0 0.1186 +0 0.1451 +0 0.3130 +0 0.1509 +0 0.0437 +0 0.0596 +0 0.0449 +0 0.0895 +0 0.5028 +0 0.5075 +0 0.2369 +0 0.0811 +0 0.0971 +0 0.0525 +0 0.1234 +0 0.2836 +0 0.2291 +0 0.1206 +0 0.0567 +0 0.0679 +0 0.0625 +0 0.0984 +0 0.0815 +0 0.0429 +0 0.1213 +0 0.2117 +0 0.1394 +0 0.2182 +0 0.1828 +0 0.1272 +0 0.2278 +0 0.1830 +0 0.0561 +0 0.2544 +0 0.3101 +0 0.2542 +0 0.1283 +0 0.0641 +0 0.1558 +0 0.1668 +0 0.2214 +0 0.0901 +0 0.0588 +0 0.0687 +0 0.1287 +0 0.1156 +0 0.1250 +0 0.1057 +0 0.3067 +0 0.0436 +0 0.0469 +0 0.0535 +0 0.0695 +0 0.1335 +0 0.1956 +0 0.2522 +0 0.0858 +0 0.3293 +0 0.0556 +0 0.1225 +0 0.1019 +0 0.0429 +0 0.1309 +0 0.0689 +0 0.0670 +0 0.1935 +0 0.0403 +0 0.0990 +0 0.3919 +0 0.1940 +0 0.1380 +0 0.0749 +0 0.2169 +0 0.1476 +0 0.0644 +0 0.0647 +0 0.4895 +0 0.3594 +0 0.0749 +0 0.7288 +0 0.0844 +0 0.2299 +0 0.1787 +0 0.1851 +0 0.3081 +0 0.1188 +0 0.4305 +0 0.5222 +0 0.0947 +0 0.1320 +0 0.0796 +0 0.0736 +0 0.0767 +0 0.3470 +0 0.2652 +0 0.1321 +0 0.2556 +0 0.1916 +0 0.0828 +0 0.0408 +0 0.2330 +0 0.0851 +0 0.1863 +0 0.0814 +0 0.2089 +0 0.1129 +0 0.3431 +0 0.0965 +0 0.1080 +0 0.0985 +0 0.2248 +0 0.1296 +0 0.1037 +0 0.2080 +0 0.0828 +0 0.0992 +0 0.1173 +0 0.0325 +0 0.1085 +0 0.0463 +0 0.0837 +0 0.1752 +0 0.1023 +0 0.0929 +0 0.1075 +0 0.1032 +0 0.1956 +0 0.2526 +0 0.0476 +0 0.1201 +0 0.1994 +0 0.6540 +0 0.3405 +0 0.1471 +0 0.0722 +0 0.0897 +0 0.1218 +0 0.0609 +0 0.1445 +0 0.0866 +0 0.2087 +0 0.0847 +0 0.2341 +0 0.0910 +0 0.1111 +0 0.1486 +0 0.3539 +0 0.1952 +0 0.3127 +0 0.0355 +0 0.0618 +0 0.1078 +0 0.0414 +0 0.2183 +0 0.1871 +1 0.8010 +0 0.1672 +0 0.0894 +0 0.0670 +0 0.1169 +1 0.7542 +0 0.0555 +0 0.0649 +0 0.2957 +0 0.4798 +0 0.0979 +0 0.1262 +0 0.0740 +0 0.0996 +0 0.2125 +0 0.3117 +0 0.0913 +0 0.1263 +0 0.0787 +0 0.0869 +0 0.1274 +0 0.0718 +0 0.1804 +0 0.1151 +0 0.0628 +0 0.0874 +0 0.0804 +0 0.1284 +0 0.2149 +0 0.1419 +0 0.0370 +0 0.3207 +0 0.2537 +0 0.1753 +0 0.1878 +0 0.1615 +0 0.0599 +0 0.0816 +0 0.2002 +0 0.7298 +0 0.2693 +0 0.1201 +0 0.1014 +0 0.0948 +0 0.0790 +0 0.2300 +0 0.1043 +0 0.2517 +0 0.0910 +0 0.0753 +0 0.1320 +0 0.0786 +0 0.1601 +0 0.1204 +1 0.8496 +0 0.0391 +0 0.0672 +0 0.1625 +0 0.0887 +0 0.1135 +0 0.1703 +0 0.1455 +0 0.0933 +0 0.1232 +0 0.1172 +0 0.0854 +0 0.0773 +0 0.1163 +0 0.1381 +0 0.2115 +0 0.0571 +0 0.5655 +0 0.0539 +0 0.0726 +0 0.0676 +0 0.0474 +0 0.0407 +0 0.0383 +0 0.1272 +0 0.0713 +0 0.0615 +0 0.0755 +0 0.0654 +0 0.1091 +0 0.5797 +0 0.0852 +0 0.0712 +0 0.0498 +0 0.2131 +0 0.0405 +0 0.0513 +0 0.0693 +0 0.2350 +0 0.2771 +0 0.0546 +0 0.1577 +0 0.1432 +0 0.1361 +0 0.1089 +0 0.1579 +0 0.0850 +0 0.0973 +0 0.0951 +0 0.2151 +1 0.8438 +0 0.2813 +0 0.0673 +0 0.2362 +0 0.1562 +0 0.1270 +0 0.0867 +0 0.1960 +0 0.1828 +0 0.1364 +0 0.0446 +0 0.1102 +0 0.0807 +0 0.2462 +0 0.1285 +0 0.0562 +0 0.2072 +0 0.1309 +0 0.1277 +1 0.7692 +0 0.0836 +0 0.0796 +0 0.3880 +0 0.1305 +0 0.2976 +0 0.0692 +0 0.0922 +0 0.1619 +0 0.0892 +0 0.0627 +0 0.1305 +0 0.0957 +0 0.0878 +0 0.4497 +0 0.2072 +0 0.1598 +0 0.1448 +0 0.1207 +0 0.1430 +0 0.1130 +0 0.0704 +0 0.0758 +0 0.0568 +0 0.1446 +0 0.2224 +0 0.0888 +0 0.2115 +0 0.1355 +0 0.1095 +0 0.1047 +0 0.2341 +0 0.2011 +0 0.1010 +0 0.0679 +0 0.0862 +0 0.1064 +0 0.6984 +0 0.1654 +0 0.0774 +0 0.3490 +0 0.2338 +0 0.3234 +0 0.0643 +0 0.0375 +0 0.0951 +0 0.1040 +0 0.0776 +0 0.1264 +0 0.1270 +0 0.0941 +0 0.1240 +0 0.1183 +0 0.0785 +0 0.0900 +0 0.1998 +0 0.2935 +0 0.1358 +0 0.0696 +0 0.1859 +0 0.1308 +0 0.0952 +0 0.1329 +0 0.0405 +0 0.0857 +0 0.2993 +0 0.0947 +0 0.1035 +0 0.0799 +0 0.1788 +0 0.3530 +0 0.1694 +0 0.0799 +0 0.0755 +0 0.1134 +0 0.0956 +0 0.0553 +0 0.0881 +0 0.0839 +1 0.8567 +0 0.1439 +0 0.1668 +0 0.0796 +0 0.1753 +0 0.1950 +0 0.2118 +0 0.0977 +0 0.1052 +0 0.1479 +0 0.0386 +0 0.2923 +0 0.1005 +0 0.0863 +0 0.1387 +0 0.1729 +0 0.0975 +0 0.2711 +0 0.0509 +0 0.0927 +0 0.0693 +0 0.1262 +0 0.1114 +0 0.0812 +0 0.3413 +0 0.1520 +0 0.0643 +0 0.0878 +0 0.0880 +0 0.0565 +0 0.7422 +0 0.0627 +0 0.0860 +0 0.1415 +0 0.0877 +0 0.1721 +0 0.0872 +0 0.2757 +0 0.2277 +0 0.1904 +0 0.1390 +0 0.1104 +0 0.0571 +0 0.0483 +0 0.0814 +0 0.2745 +0 0.1714 +0 0.1108 +0 0.6926 +0 0.0784 +0 0.0999 +0 0.1999 +0 0.4094 +0 0.1334 +0 0.0716 +0 0.2180 +0 0.0811 +0 0.1687 +0 0.0822 +0 0.0727 +0 0.2003 +0 0.0829 +0 0.0792 +0 0.0497 +0 0.2571 +0 0.1840 +0 0.0558 +0 0.0600 +0 0.6219 +0 0.3546 +0 0.0500 +0 0.0968 +0 0.2057 +0 0.0785 +0 0.1581 +0 0.1578 +0 0.1006 +0 0.1064 +0 0.1190 +0 0.1448 +0 0.0951 +0 0.0455 +0 0.2993 +0 0.0862 +0 0.1426 +0 0.0406 +0 0.0383 +0 0.2734 +0 0.0573 +0 0.0717 +0 0.2226 +0 0.0709 +0 0.0950 +0 0.3274 +0 0.0526 +0 0.0843 +0 0.0973 +0 0.1520 +0 0.2479 +0 0.1491 +0 0.0587 +0 0.0944 +0 0.6006 +0 0.1049 +1 0.8479 +0 0.1173 +0 0.1741 +0 0.0894 +0 0.1644 +0 0.1450 +0 0.0516 +0 0.0995 +0 0.0867 +0 0.0575 +0 0.0569 +0 0.2639 +0 0.1602 +0 0.1573 +0 0.1012 +0 0.0746 +0 0.0877 +0 0.1062 +0 0.0689 +0 0.1406 +0 0.1912 +0 0.0654 +0 0.0954 +0 0.4373 +0 0.0842 +0 0.1249 +0 0.4680 +0 0.2402 +0 0.0524 +0 0.1325 +0 0.2251 +0 0.2113 +0 0.2371 +0 0.1029 +0 0.1083 +0 0.0825 +0 0.1176 +0 0.1201 +0 0.1643 +0 0.5605 +0 0.3603 +0 0.1165 +0 0.1516 +0 0.0694 +0 0.1338 +0 0.1253 +0 0.0998 +0 0.1415 +0 0.2024 +0 0.0486 +0 0.0867 +0 0.1853 +0 0.1385 +0 0.0706 +0 0.0987 +0 0.0443 +0 0.2404 +0 0.0592 +0 0.0997 +0 0.1064 +0 0.3263 +0 0.1268 +0 0.1626 +0 0.2331 +0 0.0684 +0 0.1400 +0 0.3962 +0 0.2525 +0 0.0903 +0 0.0672 +0 0.0460 +0 0.2347 +0 0.1041 +0 0.0499 +0 0.0597 +0 0.5739 +0 0.3974 +0 0.0768 +0 0.1289 +0 0.0515 +0 0.2062 +0 0.0562 +0 0.0991 +0 0.1833 +0 0.0979 +0 0.0864 +0 0.2263 +0 0.3479 +0 0.2855 +0 0.1459 +0 0.3162 +0 0.1375 +0 0.1277 +0 0.2100 +0 0.0923 +0 0.1560 +0 0.1006 +0 0.0871 +0 0.1006 +0 0.3002 +0 0.1048 +1 0.7717 +0 0.0635 +0 0.0700 +1 0.7547 +0 0.0749 +0 0.1031 +0 0.0616 +0 0.0488 +0 0.0826 +0 0.0614 +0 0.0639 +0 0.1038 +0 0.0982 +0 0.0931 +0 0.1478 +0 0.3138 +0 0.1692 +0 0.1123 +0 0.0868 +0 0.0393 +0 0.0810 +0 0.1828 +0 0.0568 +0 0.3967 +0 0.2076 +0 0.0722 +0 0.1081 +0 0.0688 +0 0.0596 +0 0.3567 +0 0.1183 +0 0.0516 +0 0.0367 +0 0.2793 +0 0.1096 +0 0.1200 +0 0.0857 +0 0.2322 +0 0.0629 +0 0.1870 +0 0.1182 +0 0.2481 +0 0.0531 +0 0.1056 +0 0.0727 +1 0.7899 +0 0.1725 +0 0.1472 +0 0.2009 +0 0.0761 +0 0.1406 +0 0.0692 +0 0.0387 +0 0.1449 +0 0.1225 +0 0.0733 +0 0.0652 +0 0.2982 +0 0.1403 +0 0.1349 +0 0.0410 +0 0.1212 +0 0.4313 +0 0.0437 +0 0.2496 +0 0.1465 +0 0.0871 +0 0.0599 +0 0.1114 +0 0.1747 +0 0.1547 +0 0.0742 +0 0.0991 +0 0.2053 +0 0.1436 +0 0.0917 +0 0.1045 +1 0.8072 +0 0.0990 +0 0.0320 +0 0.2174 +0 0.0606 +0 0.0913 +0 0.1971 +0 0.5423 +0 0.1389 +0 0.0409 +0 0.1031 +0 0.1070 +0 0.0990 +0 0.2058 +0 0.1228 +0 0.0600 +0 0.2589 +0 0.3467 +0 0.1010 +0 0.1378 +0 0.0780 +0 0.3313 +0 0.0440 +0 0.0609 +0 0.2082 +0 0.2102 +0 0.1002 +0 0.0810 +0 0.1702 +0 0.0811 +0 0.1706 +0 0.1279 +0 0.0781 +0 0.1640 +0 0.3302 +0 0.0588 +0 0.0602 +1 0.7766 +0 0.1183 +0 0.2350 +0 0.0903 +0 0.1159 +0 0.0730 +0 0.1034 +0 0.1063 +0 0.0939 +0 0.0742 +0 0.0744 +0 0.0655 +0 0.3516 +0 0.1440 +0 0.0970 +1 0.7918 +0 0.0421 +0 0.0441 +0 0.0358 +0 0.0501 +0 0.0461 +0 0.0673 +0 0.0638 +0 0.0435 +0 0.1286 +0 0.1343 +0 0.0927 +0 0.1064 +0 0.1613 +0 0.0992 +0 0.0396 +0 0.1163 +0 0.0655 +0 0.1979 +0 0.2012 +0 0.0546 +0 0.2281 +0 0.0506 +0 0.0415 +0 0.0790 +0 0.0733 +0 0.2097 +0 0.1194 +0 0.1286 +0 0.1418 +0 0.0813 +0 0.3346 +0 0.1312 +0 0.0925 +0 0.0859 +0 0.0419 +0 0.1065 +0 0.6935 +0 0.0398 +0 0.0486 +0 0.0888 +0 0.1651 +0 0.0860 +0 0.0924 +1 0.7960 +0 0.1119 +0 0.0910 +0 0.3640 +0 0.0562 +0 0.0383 +0 0.0792 +0 0.0388 +0 0.0519 +0 0.0604 +0 0.0945 +0 0.0711 +0 0.0420 +0 0.0884 +0 0.3619 +0 0.0989 +0 0.0394 +0 0.2757 +0 0.2117 +0 0.0617 +0 0.3463 +0 0.0525 +0 0.0734 +0 0.0584 +0 0.1861 +0 0.0641 +0 0.0866 +0 0.1721 +0 0.0646 +0 0.1449 +0 0.2389 +0 0.0599 +0 0.0892 +0 0.1334 +0 0.0741 +0 0.0525 +0 0.2036 +0 0.0806 +0 0.1276 +0 0.4226 +0 0.2269 +0 0.5480 +0 0.0825 +0 0.0543 +0 0.0768 +0 0.0758 +0 0.0403 +0 0.1669 +1 0.8068 +0 0.0345 +0 0.0738 +0 0.1131 +0 0.0428 +0 0.1171 +0 0.2650 +0 0.2628 +0 0.1588 +0 0.1418 +0 0.5485 +0 0.1202 +0 0.1365 +0 0.0692 +0 0.1342 +0 0.1613 +0 0.0766 +0 0.5964 +0 0.4750 +0 0.1331 +0 0.0683 +0 0.1991 +0 0.0836 +0 0.0700 +0 0.3167 +0 0.0998 +0 0.0797 +0 0.0709 +0 0.0740 +0 0.0936 +0 0.0555 +0 0.0848 +0 0.1042 +0 0.6835 +0 0.1962 +0 0.1536 +0 0.1413 +0 0.0710 +0 0.0531 +0 0.2468 +0 0.1242 +0 0.1359 +0 0.0664 +0 0.2367 +1 0.8269 +0 0.0983 +0 0.1092 +0 0.1040 +0 0.0712 +0 0.0584 +0 0.6533 +0 0.1523 +0 0.1930 +0 0.1979 +0 0.0874 +0 0.0745 +0 0.1414 +0 0.0725 +0 0.0915 +0 0.1027 +0 0.2144 +0 0.0407 +0 0.0531 +0 0.1260 +0 0.1107 +0 0.0590 +0 0.1443 +0 0.0907 +0 0.0571 +0 0.1181 +0 0.3374 +0 0.0781 +0 0.1742 +0 0.0593 +0 0.0735 +0 0.0702 +0 0.0934 +0 0.6892 +0 0.1732 +0 0.1008 +0 0.1673 +0 0.2483 +0 0.0736 +0 0.0975 +0 0.0983 +0 0.1570 +0 0.0803 +0 0.1025 +0 0.2010 +0 0.1718 +0 0.1251 +0 0.6826 +0 0.0793 +0 0.1112 +0 0.1108 +0 0.1002 +0 0.1331 +0 0.2101 +0 0.0771 +0 0.0524 +0 0.2725 +0 0.0768 +0 0.1299 +0 0.1641 +0 0.0715 +0 0.0751 +0 0.0751 +0 0.2167 +0 0.1219 +0 0.1717 +0 0.0789 +0 0.1000 +0 0.0911 +0 0.1241 +0 0.1003 +0 0.1193 +0 0.0943 +0 0.0335 +0 0.1159 +0 0.1996 +0 0.2644 +0 0.0452 +0 0.0789 +1 0.8224 +0 0.0922 +0 0.1268 +0 0.1676 +0 0.0643 +0 0.0968 +0 0.0727 +0 0.1235 +0 0.1212 +0 0.0576 +0 0.1134 +0 0.0759 +0 0.1248 +0 0.3793 +0 0.1941 +0 0.1370 +0 0.0787 +0 0.0949 +0 0.0702 +0 0.0949 +0 0.0946 +0 0.0912 +0 0.3068 +0 0.0760 +0 0.3130 +0 0.1204 +0 0.1548 +0 0.1104 +0 0.1056 +0 0.0752 +0 0.1428 +0 0.1768 +0 0.0311 +0 0.1609 +0 0.1384 +0 0.1160 +0 0.1652 +0 0.1723 +0 0.1420 +0 0.0563 +0 0.0777 +0 0.1774 +0 0.1015 +0 0.1001 +0 0.1385 +0 0.0577 +0 0.1808 +0 0.1105 +0 0.0875 +0 0.0769 +0 0.0855 +0 0.1041 +0 0.0819 +0 0.0695 +0 0.0990 +0 0.1937 +0 0.1026 +0 0.0760 +0 0.2410 +0 0.0855 +0 0.0972 +0 0.0475 +0 0.0887 +0 0.1067 +0 0.0615 +0 0.3688 +0 0.1222 +0 0.3619 +0 0.0839 +0 0.1140 +0 0.2027 +0 0.0768 +0 0.1362 +0 0.1703 +0 0.2627 +0 0.1097 +0 0.0841 +0 0.5012 +0 0.0440 +0 0.0995 +0 0.1181 +0 0.0931 +0 0.0378 +0 0.0832 +0 0.0658 +0 0.1716 +0 0.4727 +0 0.0675 +0 0.0736 +0 0.1078 +0 0.1591 +0 0.1068 +0 0.0693 +0 0.0603 +0 0.0837 +0 0.0916 +0 0.1083 +0 0.0709 +0 0.6290 +0 0.0582 +0 0.1514 +0 0.0504 +0 0.5081 +0 0.0807 +0 0.1527 +0 0.0543 +0 0.0808 +0 0.1254 +0 0.0321 +0 0.2444 +0 0.1073 +0 0.1142 +0 0.1134 +0 0.0843 +0 0.0893 +0 0.1255 +0 0.1067 +0 0.0837 +0 0.0722 +0 0.1541 +0 0.1261 +0 0.2686 +0 0.0643 +0 0.1173 +0 0.0311 +0 0.0479 +0 0.0903 +0 0.1856 +0 0.0874 +0 0.3994 +0 0.0916 +0 0.1456 +0 0.0842 +0 0.1305 +0 0.1297 +0 0.1841 +0 0.1456 +0 0.2739 +0 0.2105 +0 0.0397 +0 0.0769 +0 0.1149 +0 0.0816 +0 0.0541 +0 0.2510 +0 0.2087 +0 0.2605 +0 0.1897 +0 0.1345 +0 0.0401 +0 0.1079 +0 0.1109 +0 0.1742 +0 0.1145 +0 0.0998 +0 0.2850 +0 0.1169 +0 0.1750 +0 0.0417 +0 0.0792 +0 0.0442 +0 0.2506 +0 0.1780 +0 0.1069 +0 0.3420 +0 0.1323 +0 0.3134 +0 0.1478 +0 0.1253 +0 0.0815 +0 0.0472 +0 0.2530 +0 0.4410 +0 0.1973 +0 0.1122 +0 0.1419 +0 0.0420 +0 0.7415 +0 0.0723 +0 0.0806 +1 0.8521 +0 0.0478 +0 0.3748 +0 0.1005 +0 0.6001 +0 0.4646 +0 0.2230 +0 0.1109 +0 0.0433 +0 0.0490 +0 0.0591 +0 0.0727 +0 0.1379 +0 0.0864 +0 0.0320 +0 0.3238 +0 0.1153 +0 0.6128 +0 0.0755 +0 0.1626 +0 0.2401 +0 0.1621 +0 0.0696 +0 0.4184 +0 0.0802 +0 0.2203 +1 0.7587 +0 0.0537 +0 0.2054 +0 0.0860 +0 0.0840 +0 0.0767 +0 0.0640 +0 0.1099 +0 0.0461 +0 0.1096 +0 0.0653 +0 0.1334 +0 0.0893 +0 0.3752 +0 0.2558 +0 0.0899 +0 0.1033 +0 0.0547 +0 0.0414 +0 0.1752 +0 0.0890 +0 0.1707 +0 0.0777 +0 0.5617 +0 0.0786 +0 0.1043 +0 0.2881 +0 0.1498 +0 0.1745 +0 0.0412 +0 0.0717 +0 0.1238 +0 0.2262 +0 0.1337 +0 0.0476 +0 0.2004 +0 0.0817 +0 0.1184 +0 0.1548 +0 0.0703 +0 0.1877 +0 0.0779 +0 0.0784 +0 0.1306 +0 0.1194 +0 0.2001 +0 0.0387 +0 0.1751 +0 0.1392 +0 0.2202 +0 0.1169 +0 0.0704 +0 0.1782 +0 0.1606 +0 0.0652 +0 0.0657 +0 0.0824 +0 0.1883 +0 0.0684 +0 0.1356 +0 0.1167 +0 0.0596 +0 0.1255 +0 0.1022 +0 0.0932 +0 0.2252 +0 0.1222 +0 0.0855 +0 0.0714 +0 0.2912 +0 0.0473 +0 0.0660 +0 0.0977 +0 0.0646 +0 0.6458 +0 0.6496 +0 0.1215 +0 0.1982 +0 0.2428 +0 0.1298 +0 0.1120 +0 0.0997 +0 0.1506 +0 0.1104 +0 0.0690 +0 0.0739 +0 0.0513 +0 0.1986 +0 0.0807 +0 0.0654 +0 0.1086 +0 0.0834 +0 0.0887 +0 0.0691 +0 0.0926 +0 0.0357 +0 0.1191 +0 0.0652 +0 0.4135 +0 0.0335 +0 0.0983 +0 0.1632 +0 0.1281 +0 0.0527 +0 0.2244 +0 0.1450 +0 0.1684 +0 0.0465 +0 0.0961 +0 0.1146 +0 0.1768 +0 0.0645 +0 0.1142 +0 0.0681 +0 0.5084 +0 0.1537 +0 0.0879 +0 0.0440 +0 0.1019 +0 0.1498 +0 0.1064 +0 0.0437 +0 0.0495 +0 0.4890 +0 0.0471 +0 0.0535 +0 0.1877 +1 0.8312 +1 0.7667 +0 0.1658 +0 0.0694 +0 0.3854 +0 0.6931 +0 0.2085 +0 0.0486 +0 0.0693 +0 0.1070 +0 0.1738 +0 0.2266 +0 0.0657 +0 0.1451 +0 0.1206 +0 0.2152 +0 0.0736 +0 0.1097 +0 0.4187 +0 0.3028 +0 0.1278 +0 0.0619 +0 0.1250 +0 0.0805 +0 0.1000 +0 0.0411 +0 0.5983 +0 0.4250 +0 0.1739 +0 0.0301 +0 0.0724 +0 0.1059 +0 0.1315 +0 0.1805 +0 0.1127 +0 0.0822 +0 0.1736 +0 0.3896 +0 0.1509 +0 0.2376 +0 0.1116 +0 0.0562 +0 0.1756 +0 0.1261 +0 0.0839 +0 0.0851 +0 0.0500 +0 0.6984 +0 0.1076 +0 0.1959 +0 0.2563 +0 0.1398 +0 0.0531 +0 0.0540 +0 0.5229 +0 0.0911 +0 0.6270 +0 0.0903 +0 0.5167 +0 0.1868 +0 0.2118 +0 0.1647 +0 0.0810 +0 0.2141 +0 0.0754 +0 0.1639 +0 0.1187 +0 0.0663 +0 0.0863 +0 0.0708 +0 0.4229 +0 0.1047 +0 0.1027 +0 0.4513 +0 0.1062 +0 0.1106 +0 0.1182 +0 0.1824 +0 0.0423 +0 0.0649 +0 0.1219 +0 0.1221 +0 0.0838 +0 0.0943 +0 0.2572 +0 0.1216 +0 0.3751 +0 0.1981 +0 0.1645 +0 0.0995 +0 0.1891 +0 0.1056 +0 0.1861 +0 0.1854 +0 0.1147 +0 0.5493 +0 0.0455 +0 0.0611 +0 0.0776 +0 0.1226 +0 0.0977 +0 0.0834 +0 0.0618 +0 0.0581 +0 0.2076 +0 0.6574 +0 0.0782 +0 0.1271 +0 0.0613 +0 0.2583 +0 0.1621 +0 0.0779 +0 0.2157 +0 0.2183 +0 0.2185 +0 0.0472 +0 0.1330 +0 0.0566 +0 0.1413 +0 0.0608 +0 0.1250 +0 0.2234 +0 0.0638 +0 0.0468 +0 0.0866 +0 0.0776 +0 0.0488 +0 0.1437 +0 0.1276 +0 0.0703 +0 0.0797 +0 0.0765 +0 0.0921 +0 0.1638 +0 0.0371 +0 0.1450 +0 0.1420 +0 0.0574 +0 0.0828 +0 0.0376 +0 0.1149 +0 0.2384 +0 0.0483 +0 0.2665 +0 0.0619 +0 0.2172 +0 0.0581 +0 0.0441 +0 0.0825 +0 0.1286 +0 0.1461 +0 0.5994 +0 0.0949 +0 0.0750 +1 0.8646 +0 0.0857 +0 0.1180 +0 0.1026 +0 0.0486 +0 0.1372 +0 0.1037 +0 0.3800 +0 0.0911 +0 0.0759 +0 0.0675 +0 0.1034 +0 0.5030 +0 0.0917 +0 0.2119 +0 0.1866 +0 0.0875 +0 0.1925 +0 0.2735 +0 0.0813 +0 0.1409 +0 0.1677 +0 0.1769 +0 0.3481 +0 0.1757 +0 0.2269 +0 0.0744 +0 0.1012 +0 0.1272 +0 0.1737 +0 0.0961 +0 0.0843 +0 0.0653 +0 0.1800 +0 0.3870 +0 0.0864 +0 0.1363 +0 0.1030 +0 0.1048 +0 0.0952 +0 0.1605 +0 0.1142 +0 0.1268 +0 0.0765 +0 0.1475 +0 0.2212 +0 0.3386 +0 0.0388 +0 0.0741 +0 0.1847 +0 0.0988 +0 0.0923 +0 0.0708 +0 0.0755 +0 0.0756 +0 0.1284 +0 0.2364 +0 0.1812 +0 0.0551 +0 0.1187 +0 0.1232 +0 0.7210 +0 0.0818 +0 0.2273 +0 0.1838 +0 0.1559 +0 0.1886 +0 0.2379 +0 0.2065 +0 0.0793 +0 0.0507 +0 0.1629 +0 0.1789 +0 0.0803 +0 0.2317 +0 0.4462 +0 0.5029 +0 0.0808 +0 0.2367 +0 0.6135 +0 0.1420 +0 0.7125 +0 0.1603 +0 0.0881 +0 0.0566 +0 0.0699 +0 0.1043 +0 0.1087 +0 0.0662 +0 0.1590 +0 0.0664 +0 0.1230 +0 0.1058 +0 0.1297 +0 0.5650 +0 0.6166 +0 0.2215 +0 0.1209 +0 0.0538 +0 0.0440 +0 0.0370 +0 0.4117 +0 0.1018 +0 0.1107 +0 0.1322 +0 0.2405 +0 0.0873 +0 0.2575 +0 0.2822 +0 0.0306 +0 0.1373 +0 0.0398 +0 0.0876 +0 0.2397 +0 0.1282 +0 0.1130 +0 0.0845 +0 0.0568 +0 0.1293 +0 0.0855 +0 0.0700 +0 0.0699 +0 0.5888 +0 0.1631 +0 0.1056 +0 0.0643 +0 0.0522 +0 0.0736 +0 0.1254 +0 0.1112 +0 0.0347 +0 0.0978 +0 0.0734 +0 0.0542 +0 0.1800 +0 0.2305 +1 0.7797 +0 0.2417 +0 0.3389 +0 0.1389 +0 0.1221 +0 0.0814 +0 0.1333 +0 0.2883 +0 0.1673 +0 0.0366 +0 0.0505 +0 0.0377 +0 0.0809 +0 0.0981 +0 0.0363 +0 0.1796 +0 0.0541 +0 0.1631 +0 0.1553 +0 0.0784 +0 0.0421 +0 0.0677 +0 0.1973 +0 0.0663 +0 0.2296 +0 0.0577 +0 0.3358 +0 0.2034 +0 0.1140 +0 0.0781 +0 0.1215 +0 0.0659 +0 0.1422 +0 0.0596 +0 0.1876 +0 0.2974 +0 0.0917 +0 0.1237 +0 0.1913 +0 0.1913 +0 0.0407 +0 0.1822 +0 0.6448 +0 0.2299 +0 0.3875 +0 0.1557 +0 0.0896 +0 0.2992 +0 0.2484 +0 0.1306 +0 0.0941 +0 0.0786 +0 0.0679 +0 0.0910 +0 0.2061 +0 0.1753 +0 0.0821 +0 0.0427 +0 0.0914 +0 0.1058 +0 0.0633 +0 0.0502 +0 0.0552 +0 0.3313 +0 0.1839 +0 0.3187 +0 0.0822 +0 0.1015 +0 0.1420 +0 0.0760 +0 0.0730 +0 0.1290 +0 0.1340 +0 0.1383 +0 0.1145 +0 0.1182 +0 0.1176 +0 0.6773 +0 0.1693 +0 0.0390 +0 0.1425 +0 0.1015 +0 0.0788 +0 0.2200 +0 0.1134 +0 0.0552 +0 0.0848 +0 0.0989 +0 0.1569 +0 0.1049 +0 0.0927 +0 0.0933 +0 0.5108 +0 0.1977 +0 0.0803 +0 0.1685 +0 0.0914 +0 0.0820 +0 0.1641 +1 0.7607 +0 0.1113 +0 0.0488 +0 0.0933 +0 0.0414 +0 0.0372 +0 0.0560 +0 0.1175 +0 0.0970 +0 0.1038 +0 0.0754 +0 0.0557 +0 0.1025 +0 0.3722 +0 0.0443 +0 0.1148 +0 0.0434 +0 0.0434 +0 0.0887 +0 0.1297 +0 0.1291 +0 0.0701 +0 0.0723 +0 0.1352 +0 0.1211 +0 0.2106 +0 0.1351 +0 0.0514 +0 0.0892 +0 0.1012 +0 0.1745 +0 0.0939 +0 0.1182 +0 0.1083 +0 0.1558 +0 0.0775 +0 0.1273 +1 0.8222 +0 0.0428 +0 0.0580 +0 0.0373 +0 0.0420 +0 0.1315 +0 0.1709 +0 0.0970 +0 0.1657 +0 0.2152 +0 0.0668 +0 0.0572 +0 0.0326 +0 0.1359 +0 0.0732 +0 0.1020 +0 0.0853 +0 0.0801 +0 0.1789 +0 0.2502 +0 0.0886 +0 0.0753 +0 0.0884 +0 0.3366 +0 0.0403 +0 0.0455 +0 0.0822 +0 0.1009 +0 0.0869 +0 0.1231 +0 0.6853 +0 0.1234 +0 0.0971 +0 0.0630 +0 0.2367 +0 0.1809 +0 0.0523 +0 0.1777 +0 0.0613 +0 0.1156 +0 0.0414 +0 0.1697 +0 0.0922 +0 0.1044 +0 0.0423 +0 0.1822 +0 0.0527 +0 0.2515 +0 0.0653 +0 0.0989 +0 0.0927 +0 0.0708 +0 0.1646 +0 0.1002 +0 0.0554 +0 0.1087 +0 0.0634 +0 0.0622 +0 0.0713 +0 0.0373 +0 0.6404 +0 0.0808 +0 0.1805 +0 0.0688 +0 0.0489 +0 0.0395 +1 0.8032 +0 0.0731 +1 0.8246 +0 0.0979 +0 0.0768 +0 0.1260 +0 0.0983 +0 0.0807 +0 0.2680 +0 0.2077 +0 0.0887 +0 0.5591 +0 0.1045 +0 0.0874 +0 0.1351 +0 0.0484 +0 0.2349 +0 0.0323 +0 0.1872 +0 0.6999 +0 0.0832 +0 0.0527 +0 0.1817 +0 0.0375 +0 0.0766 +0 0.3256 +0 0.1015 +1 0.8420 +0 0.3270 +0 0.1480 +1 0.7703 +0 0.1199 +0 0.0957 +0 0.1082 +0 0.2081 +0 0.1321 +0 0.1033 +0 0.0410 +0 0.1611 +0 0.1240 +0 0.0615 +0 0.0678 +0 0.1576 +0 0.0917 +0 0.0774 +0 0.1934 +0 0.1916 +0 0.0627 +0 0.0455 +0 0.0672 +0 0.0888 +0 0.0662 +1 0.8555 +0 0.0769 +0 0.0592 +0 0.0399 +0 0.1865 +0 0.1280 +0 0.6741 +0 0.1721 +0 0.0539 +0 0.1149 +0 0.4908 +0 0.0861 +0 0.0486 +0 0.2098 +0 0.0677 +0 0.1619 +0 0.0768 +0 0.3042 +0 0.0727 +0 0.0486 +0 0.0759 +0 0.1589 +0 0.3738 +0 0.0702 +0 0.2897 +0 0.0521 +0 0.0821 +0 0.0516 +0 0.2172 +0 0.2232 +0 0.1100 +0 0.1566 +0 0.0417 +0 0.2462 +0 0.0780 +0 0.0988 +0 0.0945 +0 0.2446 +0 0.3078 +0 0.1940 +0 0.1757 +0 0.1085 +0 0.0918 +0 0.1145 +0 0.0782 +0 0.1585 +0 0.1845 +0 0.1081 +0 0.1387 +0 0.1025 +0 0.0763 +0 0.0697 +0 0.0567 +0 0.1185 +0 0.0778 +0 0.0474 +0 0.1099 +0 0.1175 +0 0.0412 +0 0.2143 +0 0.1266 +0 0.0725 +0 0.1060 +0 0.0985 +0 0.1306 +0 0.0584 +0 0.1128 +0 0.0715 +0 0.0793 +0 0.2723 +0 0.1836 +0 0.0679 +0 0.1145 +0 0.0425 +0 0.0913 +0 0.0803 +0 0.0494 +0 0.0670 +0 0.5210 +0 0.0895 +0 0.2281 +0 0.1244 +0 0.2221 +0 0.0683 +0 0.0668 +0 0.1329 +0 0.0905 +0 0.1028 +0 0.1233 +0 0.0485 +0 0.0356 +0 0.1781 +0 0.0973 +0 0.1001 +0 0.2308 +0 0.0373 +0 0.1023 +0 0.1288 +0 0.1418 +1 0.8112 +0 0.2238 +0 0.1858 +0 0.1943 +0 0.1338 +0 0.0901 +0 0.1232 +0 0.0660 +0 0.1348 +0 0.1297 +0 0.1666 +0 0.0798 +0 0.1168 +0 0.1963 +0 0.0816 +0 0.0950 +0 0.0488 +0 0.1572 +0 0.1292 +0 0.2846 +0 0.0542 +0 0.0415 +0 0.0292 +0 0.0838 +0 0.0403 +0 0.1326 +0 0.0787 +0 0.0518 +0 0.1437 +0 0.0862 +0 0.0830 +0 0.0656 +0 0.1581 +0 0.0828 +0 0.0795 +0 0.0805 +0 0.1555 +0 0.0773 +0 0.1458 +0 0.0719 +0 0.0614 +0 0.1279 +0 0.1716 +0 0.0941 +0 0.1539 +0 0.0749 +0 0.1713 +0 0.0441 +0 0.1222 +0 0.2302 +0 0.1699 +0 0.1504 +0 0.0735 +0 0.2596 +0 0.1795 +0 0.1043 +0 0.0615 +0 0.1450 +0 0.1362 +0 0.1523 +0 0.0735 +0 0.1504 +0 0.0835 +0 0.0994 +0 0.2362 +0 0.0904 +0 0.2046 +0 0.1378 +0 0.0691 +0 0.0733 +0 0.1041 +0 0.1005 +0 0.0817 +0 0.1191 +0 0.1845 +0 0.0994 +0 0.0824 +0 0.0491 +0 0.0872 +0 0.0529 +0 0.1127 +0 0.1092 +0 0.0487 +0 0.0934 +0 0.0545 +0 0.0762 +0 0.0880 +0 0.0706 +0 0.1799 +0 0.1209 +0 0.0806 +0 0.1068 +0 0.0832 +0 0.1736 +0 0.1299 +0 0.2223 +0 0.0848 +0 0.1315 +0 0.1819 +0 0.1450 +0 0.0483 +0 0.1061 +0 0.2037 +0 0.1910 +0 0.0779 +0 0.1488 +0 0.5293 +0 0.0573 +0 0.6010 +0 0.0809 +0 0.3275 +0 0.0858 +0 0.0928 +0 0.2089 +0 0.1286 +0 0.4548 +0 0.1450 +0 0.0897 +0 0.0721 +0 0.1377 +0 0.1213 +0 0.1295 +0 0.2461 +0 0.1633 +0 0.1423 +0 0.1865 +0 0.1544 +0 0.0804 +0 0.0735 +0 0.1284 +0 0.1047 +0 0.0865 +0 0.0473 +0 0.0952 +0 0.1084 +0 0.0678 +0 0.4610 +0 0.1008 +0 0.0691 +0 0.2106 +0 0.2867 +0 0.0845 +0 0.2285 +0 0.1064 +0 0.1889 +0 0.1200 +0 0.7476 +0 0.0969 +0 0.0875 +0 0.0875 +0 0.1462 +0 0.1106 +0 0.2512 +0 0.2866 +0 0.0644 +0 0.1086 +0 0.0653 +0 0.1410 +0 0.0703 +0 0.3071 +0 0.0455 +0 0.0884 +0 0.0398 +0 0.0754 +0 0.2433 +0 0.0803 +0 0.1319 +0 0.2764 +0 0.0483 +0 0.1013 +0 0.2632 +0 0.0784 +0 0.1493 +0 0.0471 +0 0.2109 +0 0.0723 +1 0.8081 +0 0.0542 +0 0.0423 +0 0.0712 +0 0.2270 +0 0.1376 +0 0.2149 +0 0.0688 +0 0.1743 +0 0.0774 +0 0.0658 +0 0.1470 +0 0.2117 +0 0.2121 +0 0.1150 +0 0.0581 +0 0.0717 +0 0.1876 +0 0.0779 +0 0.0826 +0 0.0796 +0 0.0577 +0 0.1186 +0 0.0550 +0 0.1250 +0 0.1517 +0 0.0697 +0 0.2721 +0 0.0855 +0 0.0730 +0 0.2327 +0 0.1791 +0 0.2199 +0 0.0521 +0 0.0387 +0 0.0646 +0 0.0672 +0 0.1015 +0 0.0996 +1 0.7531 +0 0.0622 +0 0.0561 +0 0.0564 +0 0.3879 +0 0.3842 +0 0.0984 +0 0.3341 +0 0.2575 +0 0.1011 +0 0.0695 +0 0.3415 +1 0.8555 +0 0.5174 +0 0.0712 +0 0.1524 +0 0.1093 +0 0.1084 +0 0.0745 +0 0.1121 +0 0.2230 +0 0.1193 +0 0.0531 +0 0.1624 +0 0.1345 +0 0.2720 +0 0.2651 +0 0.0715 +0 0.0527 +0 0.0721 +1 0.7839 +0 0.1245 +0 0.0715 +0 0.0483 +0 0.5170 +0 0.0697 +0 0.6665 +0 0.0669 +0 0.0779 +0 0.6521 +0 0.0821 +0 0.2639 +0 0.0821 +0 0.0394 +0 0.3174 +0 0.0718 +0 0.1134 +0 0.1534 +0 0.1206 +0 0.1305 +0 0.0532 +1 0.8712 +0 0.0761 +0 0.1942 +0 0.0921 +0 0.0593 +0 0.0580 +0 0.0849 +0 0.1147 +0 0.0379 +0 0.0647 +0 0.0590 +0 0.0968 +0 0.1898 +0 0.1891 +0 0.0987 +0 0.1185 +0 0.1577 +0 0.1000 +0 0.2434 +0 0.0635 +0 0.0378 +0 0.1026 +0 0.2466 +0 0.1613 +0 0.0952 +0 0.1843 +0 0.3288 +0 0.0879 +0 0.2043 +0 0.1143 +0 0.1297 +0 0.0740 +0 0.0558 +0 0.0663 +0 0.0574 +0 0.2629 +0 0.2216 +0 0.1019 +0 0.3763 +0 0.1048 +0 0.0812 +0 0.1052 +0 0.0464 +0 0.0875 +0 0.0645 +0 0.0934 +0 0.0668 +0 0.1619 +0 0.0472 +0 0.2293 +0 0.0845 +0 0.0421 +0 0.0951 +0 0.1705 +0 0.4431 +0 0.2326 +0 0.3181 +0 0.1349 +0 0.1181 +0 0.1499 +0 0.0731 +0 0.0782 +0 0.1631 +0 0.1268 +0 0.6449 +0 0.0990 +0 0.0952 +0 0.0570 +0 0.0712 +0 0.1398 +0 0.0928 +0 0.2551 +0 0.0944 +0 0.1766 +0 0.3219 +0 0.0658 +0 0.1396 +0 0.1253 +0 0.1401 +0 0.0883 +0 0.1556 +0 0.3790 +0 0.2402 +0 0.0529 +0 0.3427 +0 0.0948 +0 0.4268 +0 0.1267 +0 0.0933 +0 0.0812 +0 0.0855 +0 0.0808 +0 0.1104 +0 0.1304 +0 0.0443 +1 0.8065 +0 0.1045 +0 0.0946 +0 0.0783 +0 0.0765 +0 0.1000 +0 0.0728 +0 0.1948 +0 0.0769 +0 0.1042 +0 0.1386 +0 0.1781 +0 0.0816 +0 0.4102 +0 0.1412 +0 0.2415 +0 0.1292 +0 0.1321 +0 0.2166 +0 0.0453 +0 0.0671 +0 0.5397 +0 0.1657 +1 0.7556 +0 0.0922 +0 0.0466 +0 0.2475 +0 0.1031 +0 0.0989 +0 0.0646 +0 0.1726 +0 0.0787 +0 0.1473 +0 0.2481 +0 0.1261 +0 0.1178 +0 0.0663 +0 0.0768 +0 0.0499 +0 0.2877 +0 0.1656 +0 0.0671 +0 0.2019 +0 0.0410 +0 0.2426 +0 0.0365 +0 0.0571 +0 0.1047 +0 0.1343 +0 0.2005 +0 0.1227 +0 0.1483 +0 0.1059 +0 0.0899 +0 0.2500 +0 0.1351 +0 0.0728 +0 0.0882 +0 0.0753 +0 0.1047 +0 0.2116 +0 0.1118 +0 0.0974 +0 0.1116 +0 0.2844 +0 0.2870 +0 0.1194 +0 0.0638 +0 0.1280 +0 0.0590 +0 0.2661 +0 0.1198 +0 0.0377 +0 0.1584 +0 0.1443 +0 0.1371 +0 0.1993 +0 0.0621 +0 0.1095 +0 0.0929 +0 0.0505 +0 0.0774 +0 0.1223 +0 0.1021 +0 0.1371 +0 0.1704 +0 0.1041 +0 0.4281 +0 0.0901 +0 0.0831 +0 0.2166 +0 0.0787 +0 0.5349 +1 0.3635 +0 0.1637 +0 0.0458 +0 0.0788 +0 0.0822 +0 0.0786 +0 0.0916 +0 0.0928 +0 0.1778 +0 0.1024 +0 0.2639 +0 0.1016 +0 0.1389 +0 0.0621 +0 0.1423 +0 0.0583 +0 0.0506 +0 0.1148 +0 0.0392 +0 0.1017 +0 0.4675 +0 0.0775 +0 0.0556 +0 0.2056 +0 0.1307 +0 0.0730 +0 0.5654 +0 0.1592 +0 0.1001 +0 0.0543 +0 0.1343 +0 0.0743 +0 0.1007 +0 0.0985 +0 0.2458 +0 0.1679 +0 0.2299 +0 0.1680 +0 0.0998 +0 0.3242 +0 0.0836 +0 0.0637 +0 0.3486 +0 0.0534 +0 0.4473 +0 0.0557 +0 0.0794 +0 0.7009 +0 0.1369 +0 0.1944 +0 0.0479 +0 0.0781 +0 0.0909 +0 0.1291 +0 0.2485 +0 0.7457 +1 0.8261 +0 0.0651 +0 0.1418 +0 0.0968 +0 0.0606 +0 0.0746 +0 0.1042 +0 0.0705 +0 0.1248 +0 0.0967 +0 0.0837 +0 0.1153 +0 0.0524 +0 0.0934 +0 0.2118 +0 0.1297 +0 0.1253 +0 0.1993 +0 0.1237 +0 0.0946 +0 0.0755 +0 0.1347 +0 0.1846 +0 0.1237 +0 0.1612 +0 0.1415 +0 0.0738 +0 0.5120 +0 0.1783 +0 0.0883 +0 0.2007 +0 0.0546 +0 0.1415 +0 0.1484 +0 0.2141 +0 0.1973 +0 0.1045 +0 0.0761 +0 0.1212 +0 0.1202 +0 0.7161 +0 0.0914 +0 0.0958 +0 0.5075 +0 0.0724 +0 0.2631 +0 0.7278 +0 0.1575 +0 0.0641 +0 0.0788 +0 0.0544 +0 0.1162 +0 0.1122 +0 0.0775 +0 0.0697 +0 0.0409 +0 0.4564 +0 0.0957 +0 0.1262 +0 0.1468 +0 0.0516 +0 0.1558 +0 0.0595 +0 0.2593 +0 0.2262 +0 0.0639 +0 0.1055 +0 0.0994 +0 0.2825 +0 0.0710 +0 0.1000 +0 0.1670 +1 0.9131 +0 0.3708 +0 0.1121 +0 0.0547 +0 0.2495 +0 0.0880 +0 0.0795 +0 0.0534 +0 0.0980 +0 0.1992 +0 0.0902 +0 0.3162 +0 0.2663 +0 0.1412 +0 0.2483 +0 0.0851 +0 0.2444 +0 0.2773 +0 0.0928 +0 0.1175 +0 0.1043 +0 0.1487 +0 0.1025 +0 0.0395 +0 0.0435 +0 0.2919 +0 0.2961 +0 0.1147 +0 0.1342 +0 0.1886 +0 0.7116 +0 0.1586 +0 0.0480 +0 0.0463 +0 0.0691 +0 0.1802 +0 0.1239 +0 0.0843 +0 0.0815 +0 0.1620 +0 0.0596 +0 0.1239 +0 0.3079 +0 0.1508 +0 0.0778 +0 0.0573 +0 0.1045 +0 0.0926 +0 0.0807 +0 0.0759 +0 0.1753 +0 0.1364 +0 0.1171 +0 0.0465 +0 0.0895 +0 0.0877 +0 0.2782 +0 0.2037 +0 0.0875 +0 0.1299 +0 0.0546 +0 0.0736 +0 0.2087 +0 0.1128 +0 0.1555 +0 0.1620 +0 0.1960 +0 0.0277 +0 0.0486 +0 0.0790 +0 0.1437 +0 0.1162 +0 0.0746 +0 0.1399 +0 0.0931 +0 0.0636 +0 0.1155 +0 0.0268 +0 0.0715 +0 0.0516 +0 0.0560 +0 0.2063 +0 0.3966 +0 0.1026 +0 0.2049 +0 0.0552 +0 0.0895 +0 0.1280 +0 0.0723 +0 0.0850 +0 0.1182 +0 0.0788 +0 0.0847 +0 0.0967 +0 0.0718 +0 0.0819 +0 0.0851 +0 0.0825 +0 0.0554 +0 0.4339 +0 0.1254 +0 0.3737 +0 0.4323 +0 0.2689 +0 0.1194 +0 0.5808 +0 0.0774 +0 0.0800 +0 0.0770 +0 0.0928 +0 0.2186 +0 0.1331 +0 0.1622 +0 0.0462 +0 0.0411 +0 0.1071 +0 0.2192 +0 0.0330 +0 0.1367 +0 0.2015 +0 0.1272 +0 0.4646 +0 0.0328 +0 0.0708 +0 0.6528 +0 0.1131 +0 0.1621 +0 0.0653 +0 0.0956 +0 0.6051 +0 0.1565 +0 0.0874 +0 0.1149 +0 0.1205 +0 0.3238 +0 0.2182 +0 0.1187 +0 0.2721 +0 0.0977 +0 0.1551 +0 0.0906 +0 0.0903 +0 0.1480 +0 0.1319 +0 0.0573 +1 0.7822 +0 0.3089 +0 0.2447 +0 0.1609 +0 0.1116 +0 0.0506 +0 0.1024 +0 0.3274 +0 0.0921 +0 0.1410 +0 0.0651 +0 0.0695 +0 0.3666 +0 0.0947 +0 0.0678 +0 0.1088 +0 0.0905 +0 0.0816 +0 0.0952 +0 0.0868 +0 0.2214 +0 0.1329 +0 0.1347 +0 0.1473 +0 0.5624 +0 0.3744 +0 0.0537 +0 0.6082 +0 0.0377 +0 0.1912 +0 0.0574 +0 0.0789 +0 0.0818 +0 0.0794 +0 0.0670 +0 0.0718 +0 0.0851 +0 0.0728 +0 0.1808 +0 0.0963 +0 0.0757 +0 0.1595 +0 0.1042 +0 0.0337 +0 0.1224 +0 0.5487 +0 0.1392 +0 0.2580 +0 0.0716 +0 0.0525 +0 0.5042 +0 0.0728 +0 0.1022 +0 0.0826 +0 0.0576 +0 0.0685 +0 0.0359 +0 0.0571 +0 0.7428 +0 0.2966 +0 0.0797 +0 0.0613 +0 0.1503 +0 0.3018 +0 0.0494 +0 0.0601 +0 0.0994 +1 0.7839 +0 0.1732 +0 0.3087 +0 0.0686 +0 0.0846 +0 0.2642 +0 0.1723 +0 0.1903 +0 0.1725 +0 0.1241 +0 0.1041 +0 0.1108 +0 0.0430 +0 0.1195 +0 0.0619 +0 0.0646 +0 0.3866 +0 0.1191 +0 0.1374 +0 0.0966 +0 0.0787 +0 0.1321 +0 0.0957 +0 0.0836 +0 0.1960 +0 0.6220 +0 0.0916 +0 0.2659 +0 0.2205 +0 0.0774 +0 0.1215 +0 0.0417 +0 0.0349 +0 0.4815 +0 0.0868 +0 0.0967 +0 0.1718 +0 0.1106 +0 0.1359 +0 0.0767 +0 0.0962 +0 0.0889 +0 0.0840 +0 0.5969 +0 0.0930 +0 0.1050 +0 0.2026 +0 0.4955 +0 0.1332 +0 0.3376 +0 0.0932 +0 0.1846 +0 0.1576 +0 0.0682 +0 0.0976 +0 0.1076 +0 0.0645 +0 0.2121 +1 0.8513 +0 0.1299 +0 0.0829 +0 0.0926 +0 0.2400 +0 0.0583 +0 0.0742 +0 0.1830 +0 0.0663 +0 0.2584 +0 0.0750 +0 0.0779 +0 0.3433 +0 0.0528 +0 0.1128 +0 0.0772 +0 0.2346 +0 0.1373 +0 0.1266 +0 0.1992 +0 0.1583 +0 0.7440 +0 0.1238 +0 0.0513 +0 0.0444 +0 0.2393 +0 0.1141 +0 0.1220 +0 0.1335 +0 0.0904 +0 0.3330 +0 0.0650 +0 0.0760 +0 0.5658 +0 0.1509 +0 0.0569 +0 0.0964 +0 0.1722 +0 0.1220 +0 0.1442 +0 0.0311 +0 0.0679 +0 0.3508 +0 0.1304 +0 0.1099 +0 0.0826 +0 0.0734 +0 0.1659 +0 0.6977 +0 0.0337 +0 0.1288 +0 0.0685 +0 0.1789 +0 0.4226 +0 0.3762 +0 0.1000 +0 0.0450 +0 0.1680 +0 0.1243 +0 0.0822 +0 0.1091 +0 0.0593 +0 0.0589 +0 0.0795 +0 0.0621 +0 0.0339 +0 0.0823 +0 0.1337 +0 0.1112 +0 0.1151 +0 0.1905 +0 0.0659 +0 0.1515 +0 0.1172 +0 0.1059 +0 0.1331 +0 0.1243 +0 0.2459 +0 0.0878 +0 0.0863 +0 0.1017 +0 0.1277 +0 0.1074 +0 0.0484 +0 0.0881 +0 0.0989 +0 0.1042 +0 0.1254 +0 0.0703 +0 0.0618 +0 0.0616 +0 0.1790 +0 0.0688 +0 0.1238 +0 0.0665 +0 0.1765 +0 0.1757 +0 0.1415 +0 0.2236 +0 0.1588 +1 0.7949 +0 0.3845 +0 0.3861 +0 0.1643 +0 0.0434 +0 0.1228 +0 0.0491 +0 0.1113 +0 0.0888 +0 0.0959 +0 0.1827 +0 0.0912 +0 0.1054 +0 0.0679 +0 0.1580 +0 0.0846 +0 0.1067 +0 0.1137 +0 0.0675 +0 0.0367 +0 0.2044 +0 0.0823 +0 0.0899 +0 0.1104 +0 0.1015 +0 0.1273 +0 0.2808 +0 0.1553 +0 0.2957 +0 0.1217 +0 0.0770 +0 0.2356 +0 0.1867 +0 0.6726 +0 0.0838 +0 0.0921 +0 0.1007 +1 0.8097 +0 0.0649 +0 0.0566 +0 0.1866 +0 0.0943 +0 0.0672 +1 0.7639 +0 0.0786 +0 0.4892 +0 0.0698 +0 0.0731 +0 0.1020 +0 0.1584 +0 0.2361 +1 0.8034 +0 0.3040 +0 0.1087 +0 0.1175 +0 0.3447 +0 0.0932 +0 0.1437 +0 0.1146 +0 0.1792 +0 0.1045 +0 0.0600 +0 0.0410 +0 0.0463 +0 0.0509 +0 0.0335 +0 0.0701 +0 0.0360 +0 0.0791 +0 0.0356 +0 0.0811 +0 0.0963 +0 0.1442 +0 0.0826 +0 0.0454 +0 0.4979 +0 0.1407 +0 0.0937 +0 0.0522 +0 0.0687 +0 0.3286 +0 0.0665 +0 0.3675 +0 0.0823 +0 0.3810 +0 0.1829 +0 0.1359 +0 0.0395 +0 0.0855 +0 0.1400 +0 0.1478 +0 0.2004 +0 0.0820 +0 0.1298 +0 0.2323 +0 0.3491 +0 0.0631 +0 0.0410 +0 0.6790 +0 0.1132 +0 0.0429 +0 0.1209 +0 0.1582 +0 0.0452 +0 0.0713 +0 0.2216 +0 0.2041 +0 0.1238 +0 0.1059 +0 0.1938 +0 0.1003 +0 0.5106 +0 0.0548 +0 0.1127 +0 0.0844 +0 0.2444 +0 0.1008 +1 0.7911 +0 0.1328 +0 0.1695 +0 0.0719 +0 0.0694 +0 0.0508 +0 0.4811 +0 0.2759 +0 0.2111 +0 0.0914 +0 0.1673 +0 0.2111 +0 0.1144 +0 0.0899 +0 0.0862 +0 0.0371 +0 0.0722 +0 0.1507 +0 0.1009 +0 0.0568 +0 0.2437 +0 0.5392 +0 0.1085 +0 0.0685 +0 0.1897 +0 0.0988 +0 0.1638 +0 0.1859 +0 0.0728 +0 0.0838 +0 0.0523 +0 0.0608 +0 0.0795 +0 0.1118 +0 0.0879 +0 0.0757 +0 0.1183 +0 0.0831 +0 0.0753 +0 0.1173 +0 0.0678 +0 0.1591 +0 0.0816 +0 0.1418 +0 0.0657 +0 0.0573 +0 0.1131 +0 0.1199 +0 0.0843 +0 0.2013 +0 0.0702 +0 0.0995 +0 0.4043 +0 0.0818 +0 0.1666 +0 0.1258 +0 0.0596 +0 0.0787 +0 0.1003 +0 0.1227 +0 0.1569 +1 0.8328 +0 0.2483 +0 0.3240 +0 0.0560 +0 0.2234 +0 0.0762 +0 0.6744 +0 0.2513 +0 0.0457 +0 0.0647 +0 0.1201 +0 0.0812 +0 0.1334 +0 0.1374 +0 0.0843 +0 0.2724 +0 0.1031 +0 0.1128 +0 0.1977 +0 0.0803 +0 0.0637 +0 0.0365 +0 0.0872 +0 0.2107 +0 0.0706 +0 0.1410 +0 0.0555 +0 0.1281 +0 0.1832 +0 0.2989 +0 0.0742 +0 0.0814 +0 0.2404 +0 0.0989 +0 0.0642 +0 0.1389 +0 0.2014 +0 0.0698 +0 0.0922 +0 0.1482 +0 0.0689 +0 0.0855 +0 0.1238 +0 0.2482 +0 0.2525 +0 0.1467 +0 0.0615 +0 0.2452 +0 0.1327 +0 0.0992 +0 0.0899 +0 0.0489 +0 0.2463 +1 0.8211 +0 0.0523 +0 0.1102 +0 0.1814 +0 0.7454 +0 0.1033 +0 0.2128 +0 0.0813 +0 0.0627 +0 0.1833 +0 0.1144 +0 0.1012 +0 0.1065 +0 0.1555 +0 0.1192 +0 0.1730 +0 0.1366 +0 0.1168 +0 0.1821 +0 0.0450 +0 0.1140 +0 0.0927 +0 0.1297 +0 0.2243 +0 0.2348 +0 0.1412 +0 0.2889 +0 0.1745 +0 0.5221 +0 0.7293 +0 0.0444 +0 0.0964 +0 0.2469 +0 0.0565 +0 0.0539 +0 0.2426 +0 0.0799 +0 0.0898 +0 0.1465 +0 0.0510 +0 0.0404 +0 0.1709 +0 0.0407 +0 0.2790 +0 0.2586 +0 0.3408 +0 0.1087 +0 0.1314 +0 0.0818 +0 0.1052 +0 0.1155 +0 0.1445 +0 0.0710 +0 0.0876 +0 0.1112 +0 0.1015 +0 0.1882 +0 0.2185 +0 0.0745 +0 0.1238 +0 0.4780 +0 0.0654 +0 0.0290 +0 0.0402 +0 0.0540 +0 0.5702 +0 0.2303 +0 0.1171 +0 0.0573 +0 0.2004 +0 0.0385 +0 0.1660 +0 0.1986 +0 0.1093 +0 0.1270 +0 0.2002 +0 0.0687 +0 0.4955 +0 0.0982 +0 0.2919 +0 0.2057 +0 0.6869 +0 0.0506 +0 0.1709 +0 0.0719 +0 0.1686 +0 0.0996 +0 0.0422 +1 0.8145 +0 0.1087 +0 0.0558 +0 0.4509 +0 0.1631 +0 0.0873 +0 0.1904 +0 0.0898 +0 0.0912 +0 0.0365 +0 0.1560 +0 0.3910 +0 0.1169 +0 0.0446 +0 0.0987 +0 0.1956 +0 0.0474 +0 0.0840 +0 0.1221 +0 0.0431 +0 0.1331 +0 0.1303 +0 0.1110 +0 0.1007 +0 0.1792 +0 0.3546 +0 0.0699 +0 0.4662 +0 0.0810 +0 0.7371 +0 0.2934 +0 0.0889 +0 0.1131 +0 0.3468 +0 0.0724 +0 0.1516 +0 0.0521 +0 0.2083 +0 0.5085 +0 0.0932 +0 0.1281 +0 0.1169 +0 0.1154 +0 0.0759 +0 0.0727 +0 0.1442 +0 0.0936 +0 0.0557 +0 0.1214 +0 0.0628 +0 0.0810 +0 0.1659 +0 0.1384 +0 0.1034 +0 0.1153 +0 0.0411 +0 0.0772 +0 0.0607 +0 0.1786 +0 0.0843 +0 0.1616 +0 0.0810 +1 0.7971 +0 0.0881 +0 0.0736 +0 0.1808 +0 0.0542 +0 0.1312 +0 0.1005 +0 0.1177 +0 0.1748 +0 0.0475 +0 0.1469 +1 0.7710 +1 0.7871 +0 0.1140 +0 0.0989 +0 0.1172 +0 0.0530 +0 0.1473 +0 0.2299 +0 0.0720 +0 0.0502 +0 0.0680 +0 0.0499 +0 0.0429 +0 0.0679 +0 0.1350 +0 0.0988 +0 0.0304 +0 0.1263 +0 0.1171 +0 0.0519 +0 0.1617 +0 0.1279 +0 0.0648 +0 0.0510 +0 0.1415 +0 0.1297 +0 0.0804 +0 0.1181 +0 0.0611 +0 0.1801 +0 0.1168 +0 0.1692 +1 0.8175 +0 0.0793 +0 0.0882 +0 0.0747 +0 0.2428 +0 0.1783 +0 0.1354 +0 0.1808 +0 0.4569 +0 0.1989 +0 0.0724 +0 0.1556 +0 0.0521 +0 0.0958 +0 0.1418 +0 0.2799 +0 0.1486 +0 0.0858 +0 0.3367 +0 0.1342 +0 0.1690 +0 0.4796 +0 0.1393 +0 0.0591 +0 0.0870 +0 0.0596 +0 0.1073 +1 0.8531 +0 0.0657 +0 0.2558 +0 0.1910 +0 0.0674 +0 0.1929 +0 0.0758 +0 0.2538 +0 0.1065 +0 0.1578 +0 0.0554 +0 0.2571 +0 0.0692 +0 0.1151 +0 0.0744 +0 0.0463 +0 0.1271 +0 0.1277 +0 0.1476 +0 0.1226 +0 0.3054 +0 0.1692 +0 0.1622 +0 0.0500 +0 0.1912 +0 0.1150 +0 0.1113 +0 0.0671 +0 0.0415 +0 0.1518 +0 0.0954 +0 0.0464 +0 0.2075 +0 0.0907 +0 0.2304 +0 0.1832 +0 0.1650 +0 0.0412 +0 0.0622 +0 0.1237 +0 0.3092 +0 0.1198 +0 0.1194 +0 0.0991 +0 0.0723 +0 0.0827 +0 0.1426 +0 0.1010 +0 0.2659 +0 0.0788 +0 0.0966 +0 0.0412 +0 0.0621 +0 0.0823 +0 0.1155 +0 0.1336 +0 0.1513 +0 0.1017 +0 0.0989 +0 0.0832 +0 0.0696 +0 0.1096 +0 0.0994 +0 0.0793 +0 0.0710 +0 0.0481 +0 0.1618 +0 0.0825 +0 0.0684 +0 0.1565 +0 0.0631 +0 0.0748 +0 0.0756 +0 0.0975 +0 0.1878 +0 0.1930 +0 0.0364 +0 0.0898 +0 0.1874 +0 0.0752 +0 0.1523 +0 0.2188 +0 0.0428 +0 0.1872 +0 0.1987 +0 0.4024 +0 0.4547 +0 0.0685 +0 0.0719 +0 0.0542 +0 0.1418 +0 0.0380 +0 0.0638 +0 0.0882 +0 0.0594 +0 0.1556 +0 0.0749 +0 0.0374 +0 0.1260 +0 0.1368 +0 0.0690 +0 0.1159 +0 0.1220 +0 0.2364 +1 0.7848 +0 0.0721 +0 0.1403 +0 0.2408 +0 0.0937 +0 0.2560 +0 0.1134 +0 0.0780 +0 0.0769 +0 0.0582 +0 0.1182 +0 0.0879 +0 0.0959 +0 0.0903 +1 0.7811 +0 0.0529 +0 0.0942 +0 0.1125 +0 0.1287 +1 0.7803 +0 0.2643 +0 0.0957 +0 0.2303 +0 0.0420 +0 0.1293 +0 0.0487 +0 0.1999 +0 0.4424 +0 0.0580 +0 0.1550 +0 0.2606 +0 0.0718 +0 0.1043 +0 0.2049 +0 0.0827 +0 0.2015 +0 0.1598 +0 0.0480 +0 0.0506 +0 0.0815 +0 0.0807 +0 0.2647 +0 0.0992 +0 0.0658 +0 0.0816 +0 0.1164 +1 0.8265 +0 0.0920 +0 0.0780 +0 0.0959 +0 0.1237 +0 0.0455 +0 0.1558 +0 0.4177 +0 0.1779 +0 0.1105 +0 0.0926 +0 0.0597 +0 0.0570 +0 0.1179 +0 0.1547 +0 0.0393 +0 0.1167 +0 0.0674 +0 0.1036 +1 0.8749 +0 0.0927 +0 0.1040 +0 0.0894 +0 0.0539 +0 0.0479 +0 0.0632 +0 0.1106 +0 0.1650 +0 0.0792 +0 0.2190 +0 0.1676 +0 0.0917 +0 0.0778 +0 0.2419 +0 0.1681 +0 0.0606 +0 0.0727 +0 0.0516 +0 0.6885 +0 0.6645 +0 0.3686 +0 0.1071 +1 0.8487 +0 0.0360 +0 0.3470 +0 0.7127 +0 0.1242 +0 0.1974 +0 0.0726 +0 0.5299 +0 0.0899 +0 0.1371 +0 0.0903 +0 0.1559 +0 0.1800 +0 0.0461 +0 0.1383 +1 0.7594 +0 0.1404 +0 0.0843 +0 0.0746 +0 0.1197 +0 0.1172 +0 0.0745 +0 0.0856 +0 0.0753 +0 0.0724 +0 0.0738 +0 0.0398 +0 0.0717 +0 0.1194 +0 0.1414 +0 0.0789 +0 0.0539 +0 0.3497 +0 0.0827 +0 0.1513 +0 0.0657 +0 0.1234 +0 0.1349 +0 0.2098 +0 0.1064 +0 0.0753 +0 0.0555 +0 0.0597 +0 0.0553 +0 0.0975 +0 0.2916 +0 0.0690 +0 0.1636 +0 0.6676 +0 0.3619 +0 0.1575 +0 0.0613 +0 0.2162 +0 0.0742 +0 0.0736 +0 0.1760 +0 0.3100 +1 0.8060 +0 0.0383 +0 0.0717 +0 0.0808 +0 0.0398 +0 0.2955 +0 0.0824 +0 0.1452 +0 0.0626 +0 0.0781 +0 0.1145 +0 0.1735 +0 0.0893 +0 0.0755 +0 0.2676 +0 0.0724 +0 0.7340 +0 0.0487 +0 0.3671 +0 0.0722 +0 0.1069 +0 0.0670 +0 0.1041 +0 0.1835 +0 0.0636 +0 0.1890 +0 0.1092 +0 0.3642 +0 0.1373 +0 0.0494 +1 0.8474 +0 0.1276 +0 0.2552 +0 0.0785 +0 0.2444 +0 0.0925 +0 0.1871 +0 0.1545 +0 0.1113 +0 0.0313 +0 0.1053 +0 0.2573 +0 0.3578 +0 0.2957 +0 0.0467 +0 0.6626 +0 0.0346 +0 0.0941 +0 0.0359 +0 0.1306 +0 0.1851 +0 0.0753 +0 0.1126 +0 0.0858 +0 0.0653 +0 0.1173 +0 0.1873 +0 0.0645 +0 0.1816 +0 0.0385 +0 0.0805 +0 0.0624 +0 0.1025 +0 0.0563 +0 0.0792 +0 0.0532 +0 0.1200 +1 0.8948 +0 0.1477 +0 0.3427 +0 0.1014 +0 0.1167 +0 0.1040 +0 0.1581 +0 0.2896 +0 0.2305 +0 0.0688 +0 0.0888 +0 0.0407 +0 0.1032 +0 0.0598 +0 0.1067 +0 0.0875 +0 0.0900 +0 0.2177 +0 0.0617 +0 0.0836 +0 0.0589 +0 0.1874 +0 0.2563 +0 0.0966 +0 0.1076 +0 0.6276 +0 0.7082 +0 0.3451 +0 0.0526 +0 0.2338 +0 0.0500 +0 0.0767 +0 0.2366 +0 0.2153 +0 0.0731 +0 0.0667 +0 0.1070 +0 0.0519 +0 0.0738 +0 0.1077 +0 0.1061 +0 0.5344 +0 0.0581 +0 0.1257 +0 0.1442 +0 0.0900 +0 0.0899 +0 0.3670 +0 0.0755 +0 0.0625 +0 0.1192 +0 0.0558 +0 0.0751 +0 0.0712 +0 0.2282 +0 0.1206 +0 0.1342 +0 0.7173 +0 0.0746 +0 0.1005 +0 0.3563 +0 0.0699 +0 0.1119 +0 0.1992 +0 0.1229 +0 0.1339 +0 0.1070 +0 0.0730 +0 0.0875 +0 0.0908 +0 0.0429 +0 0.3402 +0 0.1453 +0 0.5675 +0 0.0810 +0 0.1444 +0 0.0855 +0 0.1233 +0 0.3303 +0 0.3833 +1 0.7719 +0 0.0685 +0 0.0837 +0 0.1442 +0 0.1033 +0 0.0479 +0 0.2418 +0 0.2240 +0 0.0422 +0 0.0496 +0 0.1009 +0 0.1275 +0 0.0854 +0 0.1616 +0 0.0785 +0 0.2932 +0 0.0921 +0 0.0890 +0 0.0617 +0 0.0690 +0 0.0401 +0 0.0967 +0 0.0583 +0 0.0573 +0 0.0385 +0 0.1037 +0 0.0935 +1 0.7929 +0 0.2390 +0 0.0563 +0 0.0443 +0 0.0613 +0 0.0899 +0 0.0480 +1 0.8416 +0 0.0891 +0 0.0995 +0 0.1185 +0 0.1655 +1 0.7737 +0 0.0360 +0 0.0680 +0 0.1064 +0 0.0507 +0 0.0699 +0 0.1161 +0 0.0610 +0 0.0714 +0 0.0425 +0 0.0868 +0 0.1097 +1 0.8002 +0 0.0928 +0 0.0370 +0 0.0996 +0 0.1310 +0 0.0803 +0 0.0961 +0 0.1952 +0 0.3752 +0 0.0631 +0 0.0521 +0 0.2424 +0 0.1148 +0 0.0481 +0 0.2331 +0 0.0600 +0 0.0967 +0 0.0346 +0 0.0648 +0 0.1158 +0 0.0585 +0 0.1296 +0 0.2455 +0 0.0839 +0 0.0561 +0 0.0566 +0 0.1658 +0 0.0789 +0 0.1499 +0 0.1138 +0 0.1152 +0 0.0579 +0 0.1567 +0 0.2284 +0 0.0993 +0 0.0861 +0 0.0724 +0 0.0855 +0 0.1009 +0 0.0459 +0 0.0954 +0 0.1905 +0 0.0993 +0 0.1010 +0 0.0887 +0 0.1485 +0 0.0702 +0 0.1953 +1 0.8720 +0 0.1686 +0 0.2142 +0 0.1621 +0 0.2211 +0 0.1727 +0 0.2691 +0 0.7256 +0 0.2450 +0 0.2249 +0 0.0777 +0 0.0755 +0 0.1407 +0 0.1502 +0 0.0831 +0 0.1471 +0 0.0972 +0 0.1471 +0 0.0475 +0 0.0914 +0 0.1475 +0 0.1702 +0 0.0576 +0 0.2018 +0 0.2382 +0 0.1383 +0 0.1112 +0 0.0943 +0 0.1268 +0 0.0446 +0 0.0705 +0 0.2612 +0 0.2903 +0 0.2239 +0 0.5965 +0 0.0873 +0 0.3332 +0 0.0885 +0 0.2030 +0 0.0520 +0 0.1082 +0 0.0486 +0 0.6050 +0 0.0739 +0 0.0678 +0 0.0377 +0 0.1476 +0 0.1924 +0 0.0871 +0 0.0724 +0 0.1029 +0 0.1244 +0 0.1016 +0 0.2149 +0 0.0592 +0 0.1602 +0 0.0968 +0 0.0757 +0 0.0676 +0 0.1133 +0 0.0720 +0 0.1739 +0 0.1595 +0 0.1182 +0 0.2262 +0 0.1744 +0 0.0663 +1 0.8665 +0 0.0695 +0 0.0416 +0 0.3182 +0 0.0684 +0 0.0445 +0 0.0709 +0 0.0643 +0 0.1311 +0 0.2260 +0 0.1511 +0 0.1384 +1 0.8775 +0 0.1009 +0 0.1111 +0 0.0815 +0 0.1043 +0 0.1940 +0 0.1058 +0 0.0716 +1 0.8574 +0 0.0393 +0 0.0985 +0 0.0741 +0 0.0620 +0 0.2139 +0 0.0780 +0 0.0735 +0 0.2127 +0 0.0802 +0 0.1026 +0 0.0927 +0 0.1142 +0 0.1301 +0 0.2525 +0 0.1696 +0 0.0495 +0 0.2867 +1 0.8341 +0 0.1155 +0 0.2123 +0 0.0410 +0 0.0664 +0 0.0609 +0 0.0830 +0 0.1573 +0 0.1513 +0 0.1061 +0 0.1842 +1 0.7892 +0 0.0443 +0 0.0489 +0 0.2200 +0 0.0656 +0 0.5777 +0 0.1151 +0 0.0939 +0 0.1470 +0 0.0431 +0 0.0539 +0 0.0598 +0 0.2999 +0 0.4203 +0 0.0839 +0 0.3790 +0 0.1090 +0 0.0888 +0 0.0630 +0 0.1107 +0 0.0605 +0 0.0593 +0 0.1751 +0 0.1299 +0 0.0717 +0 0.0437 +0 0.0426 +1 0.8101 +0 0.1266 +0 0.1365 +0 0.1278 +0 0.3260 +0 0.1964 +0 0.0943 +0 0.1706 +0 0.0703 +0 0.1106 +0 0.1776 +0 0.1072 +0 0.1102 +0 0.0631 +0 0.0750 +0 0.0766 +0 0.2765 +0 0.0483 +0 0.1739 +0 0.1780 +0 0.0618 +0 0.0630 +0 0.1289 +0 0.2988 +0 0.0990 +0 0.1121 +0 0.0686 +0 0.1025 +0 0.0588 +1 0.7630 +0 0.4185 +0 0.2145 +0 0.0731 +0 0.0439 +0 0.0734 +0 0.0575 +0 0.0618 +0 0.1091 +0 0.1414 +0 0.0584 +0 0.0576 +0 0.0660 +0 0.1476 +0 0.1394 +0 0.6512 +0 0.1089 +0 0.0905 +0 0.1993 +0 0.1534 +0 0.1523 +0 0.2466 +0 0.6191 +0 0.1889 +0 0.5757 +0 0.0514 +0 0.6784 +0 0.3111 +0 0.1820 +0 0.1315 +0 0.0867 +0 0.3169 +0 0.0440 +0 0.1130 +0 0.0754 +0 0.1009 +0 0.0882 +0 0.0986 +0 0.0926 +0 0.2009 +0 0.0618 +0 0.1022 +0 0.0486 +0 0.0667 +0 0.0899 +0 0.0386 +0 0.0589 +0 0.0799 +0 0.0670 +0 0.1475 +0 0.1494 +0 0.1748 +0 0.0821 +0 0.0538 +0 0.3815 +0 0.0363 +0 0.0915 +0 0.0437 +0 0.3523 +0 0.0963 +0 0.0938 +0 0.6470 +0 0.7305 +0 0.0781 +0 0.0554 +0 0.0481 +0 0.1462 +0 0.1678 +0 0.1183 +0 0.1126 +0 0.1197 +0 0.2962 +0 0.0619 +0 0.0585 +0 0.6882 +0 0.2757 +0 0.0592 +0 0.0964 +0 0.1160 +0 0.1016 +0 0.2633 +1 0.8626 +0 0.1011 +0 0.1361 +0 0.1246 +0 0.5606 +0 0.0471 +0 0.0757 +0 0.0743 +0 0.1195 +0 0.0407 +0 0.3282 +0 0.1408 +0 0.2059 +0 0.0858 +0 0.4033 +0 0.1041 +0 0.0825 +0 0.1122 +0 0.1601 +0 0.3602 +0 0.0579 +0 0.4766 +0 0.3805 +1 0.8093 +0 0.2400 +0 0.0788 +0 0.0707 +0 0.1459 +0 0.1793 +1 0.8603 +0 0.1420 +0 0.1578 +0 0.2418 +0 0.0533 +0 0.3228 +0 0.1051 +0 0.1258 +0 0.0731 +0 0.0481 +0 0.0918 +0 0.1162 +0 0.0775 +0 0.0749 +0 0.1419 +0 0.0817 +0 0.1053 +0 0.0543 +0 0.1701 +0 0.3089 +0 0.0782 +0 0.1623 +0 0.1259 +0 0.1640 +0 0.1005 +0 0.0844 +0 0.4212 +0 0.0830 +0 0.1269 +0 0.1035 +0 0.0976 +0 0.1566 +0 0.3414 +0 0.1517 +0 0.1342 +0 0.2214 +0 0.0645 +0 0.1169 +0 0.0725 +0 0.0822 +0 0.1030 +0 0.3969 +0 0.0743 +0 0.1315 +0 0.0980 +0 0.1144 +0 0.2118 +0 0.6197 +0 0.2257 +0 0.0930 +0 0.3548 +0 0.1423 +0 0.5462 +0 0.1128 +0 0.2125 +0 0.0660 +0 0.1200 +0 0.0861 +0 0.1132 +0 0.0785 +0 0.0445 +0 0.0868 +0 0.1086 +0 0.0460 +1 0.4577 +0 0.0382 +0 0.0345 +0 0.1291 +0 0.2920 +0 0.0744 +0 0.0796 +0 0.1615 +0 0.1583 +0 0.0710 +0 0.3365 +0 0.0747 +0 0.0980 +0 0.1062 +0 0.1626 +0 0.0686 +0 0.2662 +0 0.1021 +0 0.0831 +0 0.1003 +0 0.0311 +0 0.0380 +0 0.0723 +0 0.2052 +0 0.2364 +0 0.0910 +0 0.4089 +0 0.0549 +0 0.1755 +0 0.1074 +0 0.1329 +0 0.0494 +0 0.7088 +0 0.0867 +0 0.1629 +0 0.0907 +0 0.1571 +0 0.1540 +0 0.0684 +0 0.0713 +0 0.0432 +0 0.0866 +0 0.1709 +0 0.0828 +0 0.1140 +0 0.2072 +0 0.0656 +0 0.0859 +0 0.1541 +0 0.0849 +0 0.0916 +0 0.2441 +0 0.0702 +0 0.1039 +0 0.0535 +0 0.1178 +0 0.0747 +0 0.1213 +0 0.0412 +0 0.2144 +0 0.4072 +0 0.1576 +0 0.0711 +0 0.1135 +0 0.1227 +0 0.1689 +0 0.1513 +0 0.1552 +0 0.0429 +0 0.0560 +0 0.6610 +0 0.3155 +0 0.2204 +0 0.2158 +0 0.0772 +0 0.2086 +0 0.0666 +0 0.0699 +0 0.1016 +0 0.1334 +0 0.1024 +0 0.0548 +0 0.2132 +0 0.1978 +0 0.0715 +0 0.4167 +0 0.1173 +0 0.0379 +0 0.0865 +0 0.0996 +0 0.0823 +0 0.0756 +0 0.1009 +0 0.2116 +0 0.0519 +0 0.0686 +1 0.7532 +0 0.0549 +0 0.1025 +0 0.0623 +0 0.0476 +0 0.2404 +0 0.0540 +0 0.1035 +0 0.0911 +0 0.1051 +0 0.2340 +0 0.2992 +0 0.1312 +0 0.0595 +0 0.1926 +0 0.0409 +0 0.1473 +0 0.0681 +0 0.1249 +0 0.1011 +0 0.0915 +0 0.0692 +0 0.1024 +0 0.1583 +0 0.0889 +0 0.1128 +0 0.1059 +0 0.1605 +0 0.1874 +0 0.1380 +0 0.1966 +0 0.2479 +0 0.5158 +0 0.1179 +0 0.0882 +0 0.3225 +0 0.2080 +0 0.0580 +0 0.0901 +0 0.1709 +0 0.1006 +0 0.1008 +0 0.0656 +0 0.0878 +0 0.6874 +0 0.0675 +0 0.7106 +0 0.0579 +0 0.1833 +0 0.0577 +0 0.0868 +0 0.0684 +0 0.1412 +0 0.1969 +0 0.0831 +0 0.2987 +0 0.1365 +0 0.0617 +0 0.0833 +0 0.0879 +0 0.1276 +0 0.0866 +0 0.2153 +0 0.0949 +0 0.1258 +0 0.1740 +0 0.0626 +0 0.0525 +0 0.0578 +0 0.0718 +0 0.0674 +0 0.3424 +0 0.1362 +0 0.3954 +0 0.0495 +0 0.1971 +0 0.1769 +0 0.0996 +0 0.0505 +0 0.1956 +0 0.0526 +0 0.1167 +0 0.1185 +0 0.1522 +0 0.3517 +0 0.2084 +0 0.1965 +0 0.1935 +0 0.1013 +0 0.1651 +0 0.0913 +0 0.1279 +0 0.1583 +0 0.1121 +0 0.2474 +0 0.6890 +0 0.2255 +0 0.1730 +0 0.0710 +0 0.0474 +0 0.0507 +0 0.0773 +0 0.1035 +0 0.0638 +0 0.7408 +0 0.0616 +0 0.2919 +0 0.1920 +0 0.1499 +0 0.2326 +0 0.0725 +0 0.2693 +0 0.2548 +0 0.0666 +0 0.1150 +0 0.0620 +0 0.1396 +0 0.2861 +0 0.0857 +0 0.3146 +0 0.1582 +0 0.0494 +0 0.1507 +0 0.1206 +0 0.1083 +0 0.3245 +0 0.0440 +0 0.3525 +0 0.0716 +0 0.1081 +0 0.0874 +0 0.1023 +0 0.1048 +0 0.0924 +0 0.0686 +0 0.1906 +0 0.0750 +0 0.0945 +0 0.1633 +0 0.1868 +0 0.1555 +0 0.0609 +0 0.1420 +0 0.2170 +0 0.1157 +0 0.2327 +0 0.2556 +0 0.0560 +0 0.1153 +0 0.1162 +0 0.1256 +0 0.0927 +0 0.0564 +0 0.0880 +0 0.0838 +0 0.0990 +0 0.3481 +0 0.2153 +0 0.2369 +0 0.3881 +0 0.0364 +0 0.1698 +0 0.0541 +0 0.7437 +0 0.1498 +0 0.1151 +0 0.7043 +0 0.1744 +0 0.0886 +0 0.1585 +0 0.0703 +0 0.1117 +0 0.0546 +0 0.0662 +0 0.0821 +0 0.1255 +0 0.0913 +0 0.0946 +0 0.0974 +0 0.1268 +0 0.2539 +0 0.4265 +0 0.1064 +0 0.0368 +0 0.0688 +0 0.2620 +0 0.0488 +0 0.1873 +0 0.0701 +0 0.0491 +0 0.0390 +0 0.2879 +0 0.1510 +0 0.0929 +0 0.5550 +0 0.2872 +0 0.1474 +0 0.0871 +0 0.0487 +0 0.1792 +0 0.2217 +0 0.0735 +0 0.0365 +1 0.7671 +0 0.0897 +0 0.0577 +0 0.1116 +0 0.2549 +0 0.0587 +0 0.0534 +0 0.1435 +0 0.0684 +0 0.0577 +0 0.1490 +0 0.0760 +0 0.1991 +0 0.0628 +0 0.0711 +0 0.0773 +0 0.0598 +0 0.1942 +0 0.1102 +0 0.0857 +0 0.0882 +0 0.0743 +0 0.1627 +0 0.1025 +0 0.0353 +0 0.1849 +0 0.1187 +0 0.0696 +0 0.0969 +0 0.3876 +0 0.2747 +0 0.0931 +0 0.0932 +0 0.1121 +0 0.1050 +0 0.1331 +0 0.1258 +0 0.1206 +0 0.0643 +0 0.0634 +0 0.0936 +0 0.0524 +0 0.1418 +0 0.6104 +0 0.0588 +0 0.0637 +0 0.1334 +0 0.1136 +0 0.0636 +0 0.0647 +0 0.0653 +0 0.0965 +0 0.0588 +0 0.1669 +0 0.2319 +0 0.1556 +0 0.1034 +0 0.0476 +0 0.1062 +0 0.1374 +0 0.1426 +0 0.0832 +0 0.1453 +0 0.1175 +0 0.0895 +0 0.0650 +0 0.0630 +0 0.1328 +0 0.0560 +0 0.1504 +0 0.0546 +0 0.0898 +0 0.2106 +0 0.1193 +0 0.1401 +0 0.2254 +0 0.1384 +0 0.1232 +0 0.1007 +0 0.1582 +0 0.0888 +0 0.6100 +0 0.2853 +0 0.3322 +0 0.0729 +0 0.0992 +0 0.0543 +0 0.0589 +0 0.0474 +0 0.0617 +0 0.1003 +0 0.0897 +0 0.0904 +0 0.2025 +0 0.0847 +0 0.1583 +0 0.0829 +0 0.0703 +0 0.2132 +0 0.3294 +0 0.1182 +0 0.1830 +1 0.8292 +0 0.0870 +0 0.1126 +0 0.3050 +0 0.1199 +0 0.0359 +0 0.0792 +0 0.3536 +0 0.0963 +0 0.0617 +0 0.0503 +0 0.0608 +0 0.0353 +0 0.1699 +0 0.0988 +0 0.2336 +0 0.1033 +0 0.0843 +0 0.1177 +0 0.1053 +0 0.0904 +0 0.1037 +0 0.1057 +0 0.0458 +0 0.1143 +0 0.1371 +0 0.1242 +0 0.1156 +0 0.0747 +0 0.1106 +0 0.1841 +0 0.0500 +0 0.2764 +0 0.0912 +0 0.0876 +0 0.3197 +0 0.0413 +0 0.1236 +0 0.1646 +0 0.1442 +0 0.0948 +0 0.2686 +0 0.1548 +0 0.0673 +0 0.0603 +0 0.0477 +0 0.1358 +0 0.0437 +0 0.1762 +0 0.1089 +0 0.0755 +0 0.1220 +0 0.0789 +0 0.0630 +0 0.2138 +0 0.0907 +0 0.1028 +0 0.0798 +0 0.0978 +0 0.0885 +0 0.2575 +0 0.0639 +0 0.1004 +0 0.2041 +0 0.2307 +0 0.2091 +0 0.1099 +0 0.2348 +0 0.1037 +0 0.1591 +0 0.2696 +0 0.1614 +0 0.5548 +0 0.0755 +0 0.2608 +0 0.0839 +0 0.0963 +0 0.0709 +0 0.0911 +0 0.2105 +0 0.0445 +0 0.1531 +0 0.1050 +0 0.1454 +0 0.0570 +0 0.1629 +1 0.8440 +0 0.3641 +0 0.0759 +0 0.0447 +0 0.0626 +0 0.0610 +0 0.0412 +0 0.1254 +0 0.1294 +0 0.5760 +0 0.3526 +1 0.7781 +0 0.0540 +0 0.0661 +0 0.0435 +0 0.0487 +0 0.0693 +0 0.0741 +0 0.1111 +0 0.2586 +0 0.0819 +0 0.0814 +0 0.2780 +0 0.0625 +0 0.0918 +0 0.1485 +0 0.2278 +0 0.1414 +0 0.0921 +0 0.1655 +0 0.1276 +0 0.0883 +0 0.2783 +0 0.1272 +1 0.7617 +0 0.0850 +0 0.0705 +0 0.0397 +0 0.0892 +0 0.6045 +0 0.0597 +0 0.2535 +0 0.0436 +0 0.0387 +0 0.0765 +0 0.0687 +0 0.1193 +0 0.4001 +0 0.1932 +0 0.0831 +0 0.1565 +0 0.0866 +0 0.1261 +0 0.1951 +0 0.1302 +0 0.0362 +0 0.0814 +0 0.0708 +0 0.0719 +0 0.1139 +0 0.3380 +0 0.0901 +0 0.1249 +0 0.1189 +0 0.0675 +0 0.1443 +0 0.2634 +0 0.2581 +0 0.3164 +0 0.1159 +0 0.1350 +0 0.0572 +0 0.0894 +0 0.1502 +0 0.1084 +0 0.5942 +0 0.0980 +0 0.1394 +0 0.1537 +0 0.1591 +0 0.5293 +0 0.1513 +0 0.1817 +0 0.1157 +0 0.1311 +0 0.1411 +0 0.2174 +0 0.0991 +0 0.0570 +0 0.1558 +0 0.2257 +0 0.0456 +0 0.1549 +0 0.1033 +1 0.8074 +0 0.1554 +1 0.8115 +0 0.0757 +0 0.4346 +0 0.2721 +0 0.1478 +0 0.0831 +0 0.0879 +0 0.0561 +0 0.1365 +0 0.0370 +0 0.0563 +0 0.0886 +0 0.1169 +0 0.1970 +0 0.1641 +0 0.2989 +0 0.1357 +0 0.0640 +0 0.0479 +0 0.2617 +0 0.2476 +0 0.0816 +0 0.1673 +0 0.4506 +0 0.1076 +0 0.3046 +0 0.1282 +0 0.0838 +0 0.3475 +0 0.2321 +0 0.1274 +0 0.0614 +0 0.1084 +0 0.0539 +0 0.2726 +0 0.4628 +0 0.1504 +0 0.3312 +0 0.0489 +0 0.1869 +0 0.0651 +0 0.0408 +0 0.0820 +0 0.1610 +0 0.1079 +0 0.0859 +0 0.0762 +0 0.1109 +0 0.1355 +0 0.0326 +0 0.2819 +0 0.0776 +0 0.1259 +0 0.1063 +0 0.4632 +0 0.0640 +0 0.0892 +0 0.0485 +0 0.0720 +0 0.0771 +0 0.1249 +0 0.0399 +0 0.3913 +0 0.1925 +0 0.1015 +0 0.1060 +0 0.2325 +0 0.0577 +0 0.0994 +0 0.0485 +0 0.0662 +0 0.1702 +0 0.0934 +0 0.0792 +0 0.1129 +0 0.1409 +0 0.4436 +0 0.1392 +0 0.1136 +0 0.1500 +0 0.1376 +0 0.0844 +0 0.0791 +0 0.0980 +0 0.1230 +0 0.2254 +0 0.0607 +0 0.1598 +0 0.1183 +0 0.0907 +0 0.0791 +0 0.4403 +0 0.0671 +0 0.1420 +0 0.4668 +0 0.1654 +0 0.0363 +0 0.1145 +0 0.2700 +0 0.4034 +0 0.0647 +0 0.1155 +0 0.0952 +0 0.1686 +0 0.0946 +0 0.0583 +0 0.0828 +0 0.0644 +0 0.0621 +0 0.1672 +0 0.0892 +0 0.1555 +0 0.0464 +0 0.1106 +0 0.0810 +0 0.0606 +0 0.0774 +0 0.0610 +0 0.0633 +0 0.1394 +0 0.1444 +0 0.0483 +0 0.0647 +1 0.7515 +0 0.1002 +0 0.2517 +0 0.0733 +0 0.1084 +0 0.0785 +0 0.1269 +1 0.8422 +0 0.1814 +0 0.0896 +0 0.3569 +0 0.1179 +0 0.0940 +0 0.6744 +0 0.0693 +0 0.1716 +0 0.1483 +0 0.1926 +0 0.0674 +0 0.0470 +0 0.1001 +0 0.1005 +0 0.0476 +0 0.0769 +0 0.1767 +0 0.0440 +0 0.0477 +0 0.0848 +0 0.0535 +0 0.0853 +0 0.1969 +0 0.2259 +0 0.3145 +0 0.2345 +0 0.1145 +0 0.1483 +0 0.1904 +0 0.1820 +0 0.1809 +0 0.0516 +0 0.1255 +0 0.1083 +0 0.1727 +0 0.1365 +0 0.1727 +0 0.6479 +0 0.0522 +0 0.1055 +0 0.3107 +0 0.0380 +0 0.0670 +0 0.0419 +0 0.1388 +0 0.1116 +0 0.0873 +0 0.0870 +0 0.1895 +1 0.8512 +0 0.0695 +0 0.1032 +0 0.0364 +0 0.0608 +0 0.0853 +0 0.1229 +0 0.6474 +0 0.0571 +0 0.0828 +0 0.0954 +0 0.1192 +0 0.1350 +0 0.1204 +0 0.1599 +1 0.8366 +0 0.0515 +0 0.0860 +0 0.0504 +0 0.0354 +0 0.0579 +0 0.4971 +1 0.2564 +0 0.1075 +0 0.0698 +0 0.2374 +0 0.0956 +0 0.0646 +0 0.1452 +0 0.4278 +0 0.0931 +0 0.3440 +0 0.1067 +0 0.4120 +0 0.0568 +0 0.1806 +0 0.1118 +1 0.8158 +0 0.0974 +0 0.0584 +0 0.0994 +0 0.1511 +0 0.0807 +0 0.1575 +0 0.0399 +0 0.0597 +0 0.0951 +0 0.0975 +0 0.0581 +0 0.2798 +0 0.1663 +0 0.1091 +0 0.0767 +0 0.3940 +0 0.2605 +0 0.1054 +0 0.1527 +0 0.0678 +0 0.1194 +0 0.0771 +0 0.1716 +0 0.1108 +0 0.0976 +0 0.0679 +0 0.0593 +0 0.0452 +0 0.3955 +0 0.0996 +0 0.1592 +0 0.2764 +0 0.1170 +0 0.0814 +0 0.0825 +0 0.1534 +0 0.0796 +0 0.0873 +0 0.0756 +0 0.0488 +0 0.1647 +0 0.0506 +0 0.1303 +0 0.1100 +0 0.6649 +1 0.8248 +0 0.2791 +0 0.2085 +0 0.0583 +0 0.0994 +0 0.0315 +0 0.0943 +0 0.0524 +0 0.1238 +0 0.1369 +0 0.0632 +0 0.0767 +0 0.1559 +0 0.1208 +0 0.1216 +0 0.2906 +0 0.0606 +0 0.4194 +0 0.0668 +0 0.2000 +0 0.2034 +0 0.1130 +0 0.0914 +0 0.2260 +0 0.5197 +0 0.2001 +0 0.0612 +0 0.2103 +0 0.1754 +0 0.1054 +1 0.8660 +0 0.0476 +0 0.1198 +0 0.0609 +0 0.0573 +0 0.0588 +0 0.4264 +0 0.0722 +0 0.0932 +0 0.0854 +0 0.1169 +0 0.1477 +0 0.2215 +0 0.1250 +0 0.0724 +0 0.0965 +0 0.0710 +0 0.1652 +0 0.0289 +0 0.3004 +0 0.1702 +0 0.0987 +0 0.2913 +0 0.1831 +0 0.1717 +0 0.0675 +0 0.1149 +0 0.2587 +0 0.1452 +0 0.0683 +0 0.0777 +0 0.1618 +0 0.0595 +0 0.1267 +0 0.0912 +0 0.0568 +0 0.2055 +0 0.1341 +0 0.1394 +0 0.0912 +0 0.0599 +0 0.1319 +0 0.6680 +0 0.1585 +0 0.0753 +0 0.1080 +0 0.0472 +0 0.1090 +0 0.2507 +0 0.0613 +0 0.1266 +0 0.0799 +1 0.2560 +0 0.2500 +0 0.1553 +0 0.0381 +0 0.3804 +0 0.0687 +0 0.0741 +0 0.0912 +0 0.0633 +0 0.1227 +0 0.0502 +0 0.0395 +0 0.2269 +0 0.6685 +0 0.2302 +0 0.0585 +0 0.0578 +0 0.0971 +0 0.1052 +0 0.1012 +0 0.5765 +0 0.1539 +0 0.6715 +0 0.0838 +0 0.1223 +0 0.1158 +0 0.1043 +0 0.0588 +0 0.0427 +0 0.0982 +1 0.8999 +0 0.1084 +0 0.1059 +0 0.2246 +0 0.1342 +0 0.0540 +0 0.2128 +0 0.0982 +0 0.0936 +0 0.0403 +0 0.1232 +0 0.0323 +0 0.1767 +0 0.0785 +0 0.0409 +0 0.1982 +0 0.0931 +0 0.0972 +0 0.3866 +0 0.1441 +0 0.0860 +0 0.0695 +0 0.1647 +0 0.0658 +0 0.0934 +0 0.1850 +0 0.1054 +0 0.0738 +0 0.0688 +0 0.1291 +0 0.2362 +0 0.0779 +0 0.1240 +0 0.0704 +0 0.1273 +0 0.1307 +0 0.1445 +1 0.7897 +0 0.0683 +0 0.5903 +0 0.2327 +0 0.0721 +0 0.0976 +0 0.0331 +0 0.2072 +0 0.1327 +0 0.6690 +0 0.0683 +0 0.1400 +0 0.0706 +0 0.0878 +0 0.0630 +0 0.5133 +0 0.0494 +0 0.0355 +0 0.1173 +0 0.1185 +0 0.1603 +0 0.0440 +0 0.0384 +0 0.0662 +0 0.1039 +0 0.0727 +0 0.1566 +0 0.1400 +0 0.1072 +0 0.0789 +0 0.0883 +0 0.1637 +0 0.1435 +0 0.1421 +0 0.2220 +0 0.0473 +0 0.1756 +0 0.0685 +0 0.0939 +0 0.1132 +0 0.0922 +0 0.1107 +0 0.3405 +0 0.0516 +0 0.1726 +0 0.1453 +0 0.1663 +0 0.0838 +0 0.1548 +0 0.0882 +0 0.1405 +0 0.0989 +0 0.1369 +0 0.1103 +0 0.0948 +0 0.3608 +0 0.0727 +0 0.1080 +0 0.0841 +0 0.1356 +0 0.1345 +0 0.1698 +0 0.0851 +0 0.4853 +0 0.0988 +0 0.0907 +0 0.0974 +0 0.0966 +0 0.2328 +0 0.0806 +1 0.7837 +0 0.2736 +0 0.0780 +0 0.0653 +0 0.2387 +0 0.0555 +0 0.0814 +0 0.1834 +0 0.0591 +0 0.1454 +0 0.0832 +0 0.1295 +0 0.0588 +0 0.0852 +0 0.0995 +0 0.1190 +0 0.1323 +0 0.0600 +0 0.0657 +0 0.0945 +0 0.0951 +0 0.0754 +0 0.1563 +0 0.0698 +0 0.1234 +0 0.1068 +0 0.0758 +0 0.0527 +0 0.1715 +0 0.1262 +0 0.0586 +0 0.1083 +0 0.1326 +0 0.0568 +0 0.0889 +0 0.1218 +0 0.1259 +0 0.0418 +0 0.2046 +0 0.0615 +0 0.2049 +0 0.0738 +0 0.2027 +0 0.0635 +0 0.0534 +0 0.1301 +0 0.0420 +0 0.2177 +0 0.0521 +0 0.0472 +0 0.1068 +0 0.0959 +0 0.0436 +0 0.1314 +0 0.1583 +0 0.1425 +0 0.0699 +0 0.1775 +0 0.0738 +0 0.2965 +0 0.1174 +0 0.3091 +0 0.1530 +0 0.0782 +0 0.0999 +0 0.1691 +0 0.2204 +0 0.5135 +0 0.0744 +0 0.1609 +0 0.0843 +0 0.1421 +0 0.0365 +0 0.0337 +0 0.2727 +0 0.0951 +0 0.2888 +0 0.3329 +0 0.1203 +0 0.4900 +0 0.0564 +0 0.1546 +0 0.1028 +0 0.0425 +0 0.0391 +0 0.1343 +0 0.0699 +0 0.2258 +0 0.0682 +0 0.1326 +0 0.1860 +0 0.0768 +0 0.0826 +0 0.1485 +0 0.1070 +0 0.1589 +0 0.1629 +0 0.0562 +0 0.0638 +0 0.0587 +0 0.0938 +0 0.0909 +0 0.1526 +0 0.0367 +0 0.2787 +0 0.0594 +0 0.0713 +0 0.0530 +0 0.0874 +0 0.2333 +0 0.0965 +0 0.2066 +0 0.0725 +0 0.0792 +0 0.0667 +0 0.1771 +0 0.1083 +0 0.0368 +0 0.0361 +1 0.7981 +0 0.0534 +0 0.2672 +0 0.1494 +0 0.2034 +0 0.3562 +0 0.1019 +0 0.0524 +0 0.2707 +0 0.1209 +0 0.1588 +0 0.0695 +0 0.2989 +0 0.0913 +0 0.1184 +0 0.0534 +0 0.2050 +0 0.1066 +0 0.0643 +0 0.1591 +0 0.1570 +0 0.0608 +0 0.1969 +0 0.0885 +1 0.8137 +0 0.0931 +0 0.2520 +0 0.2197 +0 0.2246 +0 0.0929 +0 0.4172 +0 0.5459 +0 0.1064 +0 0.1981 +0 0.0415 +0 0.0485 +0 0.2026 +0 0.1937 +0 0.1744 +0 0.1398 +0 0.0613 +0 0.0638 +0 0.0818 +0 0.0949 +0 0.0614 +0 0.1973 +0 0.2212 +0 0.0732 +0 0.1602 +0 0.1429 +0 0.1465 +0 0.5688 +0 0.2893 +0 0.0903 +0 0.1881 +0 0.2158 +0 0.4432 +0 0.1238 +0 0.0944 +0 0.1653 +0 0.3072 +0 0.1314 +0 0.2856 +0 0.1851 +0 0.3707 +0 0.1204 +0 0.1291 +0 0.2365 +0 0.1312 +0 0.0724 +0 0.1910 +0 0.1733 +0 0.0676 +0 0.0795 +0 0.0873 +0 0.1583 +0 0.3001 +0 0.1722 +0 0.1610 +0 0.2012 +0 0.1310 +0 0.1110 +0 0.0465 +0 0.2817 +0 0.0945 +0 0.0695 +0 0.1516 +0 0.0761 +0 0.0682 +0 0.5631 +0 0.0487 +0 0.0454 +0 0.1155 +0 0.0807 +0 0.0338 +0 0.2158 +0 0.1426 +0 0.2738 +0 0.1460 +0 0.1050 +0 0.2129 +0 0.1205 +0 0.1101 +0 0.3789 +0 0.0526 +0 0.0630 +0 0.2460 +0 0.2612 +0 0.0657 +0 0.1348 +0 0.0836 +0 0.0939 +0 0.0371 +0 0.1348 +0 0.1458 +0 0.4867 +0 0.0976 +0 0.0779 +1 0.8700 +0 0.0968 +0 0.1296 +0 0.1384 +0 0.0785 +0 0.2166 +0 0.1368 +0 0.0726 +0 0.0775 +0 0.0937 +0 0.0591 +0 0.2012 +0 0.1875 +0 0.1289 +0 0.0809 +0 0.0609 +0 0.1305 +0 0.0963 +0 0.1543 +0 0.0466 +0 0.0404 +0 0.1236 +0 0.1492 +0 0.0943 +0 0.1967 +0 0.1194 +0 0.1624 +0 0.1862 +0 0.1129 +0 0.2602 +0 0.0449 +0 0.3997 +0 0.0316 +0 0.2538 +0 0.1128 +0 0.0732 +0 0.0512 +0 0.1488 +0 0.1229 +0 0.0467 +0 0.0508 +0 0.1909 +0 0.0610 +0 0.5007 +0 0.1087 +0 0.0622 +0 0.1300 +0 0.1676 +0 0.0591 +0 0.2335 +0 0.0661 +0 0.1735 +0 0.1406 +0 0.0633 +0 0.1611 +0 0.0919 +0 0.0774 +0 0.1695 +0 0.0393 +0 0.0645 +0 0.0731 +0 0.3008 +0 0.0807 +0 0.1820 +0 0.0972 +0 0.0864 +0 0.0585 +0 0.0710 +0 0.1015 +0 0.1426 +0 0.1427 +0 0.0543 +0 0.1874 +0 0.0700 +0 0.1085 +0 0.1224 +1 0.8649 +0 0.0438 +0 0.1555 +0 0.0631 +0 0.0966 +0 0.1049 +0 0.3233 +0 0.1058 +0 0.0656 +0 0.1091 +0 0.1271 +0 0.0660 +0 0.1846 +0 0.0474 +0 0.0795 +0 0.7325 +0 0.1917 +0 0.3530 +0 0.2345 +0 0.0544 +0 0.1045 +0 0.1245 +0 0.0833 +0 0.1106 +0 0.4627 +0 0.0862 +0 0.0666 +0 0.4647 +0 0.0626 +0 0.0662 +0 0.2479 +0 0.2187 +0 0.2285 +0 0.0850 +0 0.1394 +0 0.0997 +0 0.1791 +0 0.1427 +0 0.2056 +0 0.0521 +0 0.0685 +0 0.2376 +0 0.1584 +0 0.1066 +0 0.2739 +0 0.2379 +0 0.2105 +0 0.2204 +0 0.0522 +0 0.0631 +0 0.4480 +0 0.0743 +0 0.2392 +0 0.0805 +0 0.2440 +0 0.0534 +0 0.0758 +0 0.0501 +0 0.0409 +0 0.0875 +0 0.2034 +0 0.0937 +0 0.0535 +0 0.1181 +0 0.1572 +0 0.6500 +0 0.0948 +0 0.0599 +0 0.0809 +0 0.0821 +0 0.3476 +0 0.0755 +0 0.1053 +0 0.1011 +0 0.1776 +1 0.8348 +0 0.1528 +0 0.0550 +0 0.1414 +1 0.7900 +0 0.1733 +0 0.2085 +0 0.1638 +0 0.0714 +0 0.0942 +0 0.0713 +0 0.1257 +0 0.1220 +0 0.4208 +0 0.1393 +0 0.2026 +0 0.0786 +0 0.1608 +0 0.3620 +0 0.1547 +0 0.0609 +0 0.0303 +0 0.2529 +0 0.1493 +0 0.1244 +0 0.3338 +0 0.2771 +0 0.2733 +0 0.0840 +0 0.1086 +0 0.0575 +0 0.0716 +0 0.1247 +0 0.0504 +0 0.0952 +0 0.2915 +0 0.0858 +0 0.1765 +0 0.0780 +0 0.2799 +1 0.8108 +0 0.7267 +0 0.2357 +0 0.0792 +0 0.0589 +0 0.1751 +0 0.0918 +0 0.2889 +0 0.4395 +0 0.0322 +0 0.1919 +0 0.1019 +0 0.0450 +0 0.1072 +0 0.2149 +0 0.1731 +0 0.1374 +0 0.2247 +0 0.0367 +0 0.1182 +0 0.0912 +0 0.0718 +0 0.1026 +0 0.0653 +0 0.1539 +0 0.0482 +0 0.1949 +0 0.4436 +0 0.1869 +0 0.1463 +0 0.0901 +0 0.2330 +0 0.1406 +0 0.1086 +0 0.1049 +0 0.0435 +0 0.1354 +0 0.2244 +0 0.1022 +0 0.1396 +0 0.1978 +0 0.1008 +0 0.1138 +0 0.1772 +0 0.0997 +0 0.4912 +0 0.0582 +0 0.0994 +0 0.4701 +0 0.0604 +0 0.1422 +0 0.1244 +0 0.0950 +0 0.0916 +0 0.1149 +0 0.0612 +0 0.3012 +0 0.1225 +0 0.0767 +0 0.1083 +0 0.0623 +0 0.3047 +0 0.0988 +0 0.1016 +0 0.1145 +0 0.1650 +0 0.0632 +0 0.0934 +0 0.0919 +0 0.0637 +0 0.0750 +0 0.1912 +0 0.0498 +0 0.0861 +0 0.0776 +0 0.2030 +0 0.0695 +0 0.0691 +0 0.1218 +0 0.1036 +0 0.1148 +0 0.1078 +0 0.1032 +0 0.1127 +0 0.1517 +0 0.2493 +0 0.0726 +0 0.0687 +0 0.1398 +0 0.1362 +0 0.5785 +0 0.0439 +0 0.1284 +1 0.8189 +0 0.0958 +0 0.0812 +0 0.1616 +0 0.0526 +0 0.1305 +0 0.0429 +0 0.0581 +0 0.2330 +0 0.0451 +0 0.1008 +0 0.0513 +0 0.1096 +0 0.1237 +0 0.2498 +0 0.7035 +0 0.2170 +0 0.0880 +0 0.0641 +0 0.0888 +0 0.0660 +0 0.2282 +0 0.1077 +0 0.1154 +0 0.0512 +0 0.0522 +0 0.1084 +0 0.2100 +0 0.1392 +0 0.7428 +0 0.1144 +0 0.0760 +0 0.1858 +0 0.1341 +0 0.0669 +0 0.6083 +0 0.1077 +0 0.2423 +0 0.0835 +0 0.2884 +0 0.0698 +0 0.1191 +0 0.1360 +0 0.0685 +0 0.0943 +0 0.1454 +0 0.6618 +0 0.2100 +0 0.0567 +0 0.0915 +0 0.0560 +0 0.1425 +0 0.0835 +0 0.0450 +0 0.0622 +0 0.0795 +0 0.0373 +0 0.0391 +0 0.2189 +0 0.0769 +0 0.0692 +0 0.0883 +0 0.0718 +0 0.3136 +0 0.1392 +0 0.1457 +0 0.1079 +0 0.0380 +0 0.0790 +0 0.1595 +0 0.0737 +0 0.1459 +0 0.0994 +0 0.0734 +0 0.1898 +0 0.1640 +0 0.0722 +0 0.0656 +0 0.0665 +0 0.2632 +0 0.0383 +0 0.1113 +0 0.0760 +0 0.2724 +0 0.0786 +0 0.0719 +0 0.0371 +0 0.0963 +0 0.0772 +0 0.0554 +0 0.0777 +0 0.0942 +0 0.0709 +0 0.0613 +0 0.0509 +0 0.0892 +0 0.0346 +0 0.0639 +0 0.0535 +0 0.0790 +0 0.2833 +0 0.1141 +0 0.3121 +0 0.0562 +0 0.1112 +0 0.1088 +0 0.3223 +0 0.0686 +0 0.2041 +0 0.1415 +0 0.1121 +0 0.1280 +0 0.2228 +0 0.1197 +0 0.1473 +0 0.0763 +0 0.1429 +0 0.3106 +1 0.7928 +0 0.1071 +0 0.4141 +0 0.0614 +0 0.0948 +0 0.0554 +0 0.0754 +0 0.0587 +0 0.1915 +0 0.0982 +0 0.1833 +0 0.3476 +0 0.1559 +0 0.3092 +0 0.6852 +1 0.7524 +0 0.0665 +0 0.1670 +0 0.5226 +0 0.0512 +0 0.1797 +0 0.0869 +0 0.2580 +0 0.0647 +0 0.0671 +0 0.1265 +0 0.0879 +0 0.1350 +0 0.0626 +0 0.0860 +0 0.4474 +0 0.0861 +0 0.0766 +0 0.0786 +0 0.1380 +0 0.0882 +0 0.0912 +0 0.1912 +0 0.1652 +0 0.2074 +0 0.1846 +0 0.4423 +0 0.1486 +0 0.0601 +0 0.4482 +0 0.0569 +0 0.0806 +0 0.0591 +0 0.1139 +0 0.0517 +0 0.1853 +1 0.7695 +0 0.3075 +0 0.1266 +0 0.1167 +0 0.2059 +0 0.0543 +0 0.0560 +0 0.1177 +0 0.0743 +0 0.0732 +0 0.0924 +0 0.1309 +0 0.1513 +0 0.2956 +0 0.1915 +0 0.0672 +0 0.1094 +0 0.1013 +0 0.2484 +0 0.2987 +0 0.1009 +0 0.3012 +0 0.2737 +0 0.3348 +0 0.1624 +0 0.1760 +0 0.0626 +0 0.0409 +0 0.0596 +0 0.1722 +0 0.1214 +0 0.0685 +0 0.0812 +0 0.1557 +0 0.2481 +0 0.3107 +0 0.1162 +0 0.1114 +0 0.1068 +0 0.1461 +0 0.2592 +0 0.0408 +0 0.0384 +0 0.1200 +0 0.1700 +0 0.1385 +0 0.4549 +0 0.0818 +0 0.1181 +0 0.1478 +0 0.4329 +0 0.0405 +0 0.0274 +0 0.1218 +0 0.0787 +0 0.1346 +0 0.1887 +0 0.1126 +0 0.2844 +0 0.0548 +0 0.2101 +0 0.0657 +0 0.2681 +0 0.0604 +0 0.0757 +0 0.0970 +0 0.1887 +0 0.1163 +0 0.0337 +0 0.1564 +0 0.0712 +0 0.0676 +0 0.0499 +0 0.1431 +0 0.0352 +0 0.0788 +0 0.1517 +0 0.1039 +0 0.1072 +0 0.0881 +0 0.1792 +0 0.1174 +0 0.0622 +0 0.0441 +0 0.1679 +0 0.1502 +1 0.8089 +0 0.0879 +0 0.0819 +0 0.1068 +1 0.8871 +0 0.0638 +0 0.0556 +0 0.4448 +0 0.0432 +0 0.0813 +0 0.1625 +0 0.1552 +0 0.4176 +0 0.1305 +0 0.0576 +0 0.2609 +0 0.0492 +0 0.1022 +0 0.0831 +0 0.1449 +0 0.1244 +0 0.1209 +0 0.1096 +0 0.0590 +0 0.0824 +0 0.2367 +0 0.1077 +0 0.0511 +0 0.0430 +0 0.0798 +0 0.1307 +0 0.2274 +0 0.1685 +0 0.0742 +0 0.1875 +0 0.2226 +0 0.1285 +0 0.1027 +0 0.0701 +1 0.7530 +0 0.0910 +0 0.1169 +0 0.1022 +0 0.0561 +0 0.6745 +0 0.0611 +0 0.1240 +0 0.1870 +0 0.0376 +0 0.5663 +0 0.0932 +0 0.0820 +0 0.0589 +0 0.0699 +0 0.2962 +0 0.0912 +0 0.1840 +0 0.0976 +0 0.1450 +0 0.0855 +0 0.0868 +0 0.0505 +0 0.0424 +0 0.1227 +0 0.0877 +0 0.0668 +0 0.0799 +0 0.2284 +0 0.0646 +0 0.1209 +0 0.1221 +0 0.0760 +0 0.0825 +1 0.8043 +0 0.0817 +0 0.0558 +0 0.0927 +0 0.1546 +0 0.2021 +0 0.1085 +0 0.0946 +0 0.0941 +0 0.0882 +0 0.1018 +0 0.4904 +0 0.0429 +0 0.0607 +0 0.0904 +0 0.1152 +0 0.0562 +0 0.1404 +0 0.2826 +0 0.3363 +0 0.0489 +0 0.6179 +0 0.0620 +0 0.0957 +0 0.5288 +0 0.0661 +0 0.0529 +0 0.1351 +0 0.1196 +0 0.1383 +0 0.0925 +0 0.1213 +0 0.1353 +0 0.2706 +0 0.0620 +0 0.2591 +0 0.0797 +0 0.1021 +0 0.0950 +0 0.1212 +0 0.2377 +0 0.0935 +0 0.1328 +0 0.3167 +0 0.0503 +0 0.0602 +0 0.0794 +0 0.1540 +0 0.0463 +0 0.0464 +0 0.1103 +0 0.0702 +0 0.3347 +0 0.0962 +0 0.0567 +0 0.1130 +0 0.0769 +0 0.0403 +0 0.0476 +0 0.0909 +0 0.0602 +0 0.0483 +0 0.0366 +0 0.0399 +0 0.2324 +0 0.0443 +0 0.1821 +0 0.1790 +0 0.0632 +0 0.0790 +0 0.2798 +0 0.1180 +0 0.0830 +0 0.0594 +0 0.0960 +0 0.0812 +0 0.1046 +0 0.0785 +0 0.1403 +0 0.0987 +0 0.0977 +0 0.3016 +0 0.0766 +0 0.2358 +0 0.0784 +0 0.1289 +0 0.0619 +0 0.1803 +0 0.1427 +0 0.1496 +0 0.2262 +0 0.0494 +0 0.0902 +0 0.0718 +0 0.1678 +0 0.1682 +0 0.0895 +0 0.0808 +0 0.0685 +0 0.0658 +0 0.0874 +0 0.0719 +0 0.1431 +0 0.0630 +0 0.4249 +0 0.0513 +0 0.0817 +0 0.0515 +0 0.1651 +0 0.1458 +0 0.1495 +0 0.1232 +0 0.2853 +0 0.1039 +0 0.0658 +0 0.0567 +0 0.1112 +0 0.0604 +0 0.0912 +0 0.1402 +0 0.3171 +0 0.0895 +0 0.1636 +0 0.0949 +0 0.0630 +0 0.0576 +0 0.1600 +0 0.0869 +0 0.3276 +0 0.1108 +0 0.0778 +0 0.0767 +0 0.0927 +0 0.0582 +0 0.1808 +0 0.0515 +0 0.0764 +0 0.0481 +0 0.2280 +0 0.1392 +0 0.0731 +0 0.0576 +0 0.0699 +0 0.0897 +0 0.2327 +0 0.1059 +0 0.1540 +0 0.7276 +0 0.1290 +0 0.0829 +0 0.0972 +0 0.0700 +0 0.1152 +0 0.0931 +0 0.3097 +0 0.2296 +0 0.0738 +0 0.0705 +0 0.2116 +0 0.0677 +0 0.1278 +0 0.2174 +0 0.4826 +0 0.1612 +0 0.0435 +0 0.0546 +0 0.0780 +1 0.7839 +0 0.1527 +0 0.2038 +0 0.0526 +0 0.0486 +0 0.1490 +0 0.1068 +0 0.0364 +0 0.0919 +0 0.0849 +0 0.0764 +0 0.0613 +0 0.0775 +0 0.1049 +0 0.0616 +0 0.1123 +0 0.1232 +0 0.1294 +0 0.0907 +0 0.1544 +0 0.1989 +0 0.0701 +0 0.1091 +0 0.0848 +0 0.2361 +0 0.1148 +0 0.1847 +0 0.0569 +0 0.1333 +0 0.0886 +0 0.0402 +0 0.2595 +0 0.0948 +0 0.0646 +0 0.0851 +0 0.1069 +0 0.1207 +0 0.2239 +0 0.0757 +0 0.0351 +0 0.1011 +0 0.2154 +0 0.0562 +0 0.0753 +0 0.0783 +0 0.1588 +0 0.0776 +0 0.1320 +0 0.1097 +0 0.1188 +0 0.7080 +0 0.0918 +0 0.0914 +0 0.0706 +0 0.1782 +0 0.0815 +0 0.6855 +0 0.0696 +0 0.1407 +0 0.1576 +0 0.0876 +0 0.0981 +0 0.0910 +0 0.0671 +0 0.1041 +0 0.2476 +0 0.2036 +0 0.1180 +0 0.0539 +0 0.1554 +0 0.1608 +0 0.0744 +0 0.0993 +0 0.1687 +0 0.1169 +0 0.3950 +0 0.1317 +0 0.1036 +0 0.0471 +0 0.2462 +0 0.0765 +0 0.1562 +0 0.1970 +0 0.0619 +0 0.1078 +0 0.0525 +0 0.1099 +0 0.2250 +0 0.1235 +0 0.2953 +0 0.0328 +0 0.5051 +0 0.0928 +0 0.0945 +0 0.1413 +0 0.0974 +0 0.0505 +0 0.0872 +0 0.0659 +0 0.0781 +0 0.2493 +0 0.0533 +0 0.1168 +0 0.0731 +0 0.1498 +0 0.0745 +0 0.0581 +0 0.0972 +0 0.0747 +0 0.0670 +0 0.0351 +0 0.6667 +0 0.0822 +0 0.0707 +0 0.0713 +0 0.0672 +0 0.0625 +0 0.1213 +0 0.1214 +0 0.0416 +0 0.1512 +0 0.1139 +0 0.1185 +0 0.1494 +0 0.0793 +0 0.2291 +0 0.0922 +0 0.3051 +0 0.1893 +0 0.0929 +0 0.0417 +0 0.3266 +0 0.5949 +0 0.1239 +0 0.0671 +0 0.0553 +0 0.1448 +0 0.2003 +0 0.1805 +0 0.3605 +0 0.1640 +0 0.1310 +0 0.1040 +0 0.1793 +0 0.1724 +0 0.0646 +0 0.1032 +0 0.1302 +0 0.1272 +0 0.2291 +0 0.0668 +0 0.3720 +0 0.1263 +0 0.0731 +0 0.2812 +0 0.1254 +0 0.0523 +0 0.0563 +0 0.0571 +0 0.0939 +0 0.0746 +1 0.8864 +0 0.1984 +0 0.1332 +1 0.8231 +0 0.7387 +0 0.2135 +0 0.0622 +0 0.1693 +0 0.1952 +0 0.6350 +0 0.0801 +0 0.0538 +0 0.0927 +1 0.7546 +0 0.0913 +0 0.0804 +0 0.1350 +0 0.1397 +0 0.0963 +0 0.1731 +0 0.0336 +0 0.3199 +0 0.1170 +0 0.4196 +0 0.0620 +0 0.0338 +0 0.7350 +0 0.0862 +0 0.0621 +0 0.6487 +0 0.0678 +0 0.0830 +0 0.1079 +0 0.1403 +0 0.0893 +0 0.7126 +0 0.1669 +0 0.1179 +0 0.1000 +0 0.0747 +0 0.0762 +0 0.0698 +0 0.0601 +0 0.0758 +0 0.0512 +0 0.1933 +0 0.2589 +0 0.0854 +0 0.6996 +0 0.2926 +0 0.1305 +0 0.1240 +0 0.0745 +0 0.0884 +0 0.1180 +0 0.1515 +0 0.0913 +0 0.1108 +0 0.1757 +0 0.0861 +0 0.1883 +0 0.0589 +0 0.0492 +0 0.1687 +0 0.1994 +0 0.1033 +0 0.1063 +0 0.0603 +0 0.0654 +1 0.7880 +0 0.2446 +0 0.1372 +0 0.1726 +0 0.0635 +0 0.0577 +0 0.1158 +0 0.0442 +0 0.1832 +0 0.0929 +0 0.0948 +0 0.1382 +0 0.2626 +0 0.0859 +0 0.0508 +0 0.3800 +0 0.2461 +0 0.0936 +0 0.1175 +0 0.1155 +0 0.0883 +0 0.2040 +0 0.0430 +0 0.0415 +0 0.1110 +0 0.0662 +0 0.1018 +0 0.0644 +0 0.1189 +0 0.2394 +0 0.0507 +0 0.1352 +0 0.0934 +0 0.1059 +0 0.0490 +0 0.0442 +0 0.1079 +0 0.4492 +0 0.1644 +0 0.1578 +0 0.0570 +0 0.0965 +0 0.1449 +0 0.0407 +0 0.0827 +0 0.1259 +0 0.2775 +0 0.0594 +0 0.0667 +1 0.7927 +0 0.2326 +0 0.0543 +0 0.1292 +0 0.0564 +0 0.1559 +0 0.1191 +0 0.1279 +0 0.1149 +0 0.1489 +0 0.1967 +0 0.0719 +0 0.0554 +0 0.0940 +0 0.0729 +0 0.0864 +0 0.1104 +0 0.1010 +0 0.1762 +0 0.1770 +0 0.0514 +0 0.0900 +0 0.3277 +0 0.6375 +0 0.1350 +0 0.3360 +0 0.2928 +0 0.1739 +0 0.2520 +0 0.0721 +1 0.7989 +0 0.0970 +0 0.1816 +0 0.1377 +0 0.1011 +0 0.1196 +0 0.1854 +0 0.0795 +0 0.0960 +0 0.0628 +0 0.0779 +0 0.1764 +0 0.1902 +0 0.0541 +0 0.0788 +0 0.2350 +0 0.1144 +0 0.1078 +0 0.0908 +0 0.0688 +0 0.0668 +0 0.1221 +0 0.1834 +0 0.1076 +0 0.0686 +0 0.1309 +0 0.0547 +0 0.0864 +0 0.1594 +0 0.1663 +0 0.1740 +0 0.0946 +0 0.0716 +0 0.0867 +0 0.0671 +0 0.0612 +0 0.1068 +0 0.3616 +0 0.2304 +0 0.1307 +0 0.0685 +0 0.0548 +0 0.0956 +0 0.5038 +0 0.1380 +0 0.0919 +0 0.0768 +0 0.0951 +1 0.8753 +0 0.1314 +0 0.0606 +0 0.0983 +0 0.1946 +0 0.0687 +0 0.0689 +0 0.0501 +0 0.0498 +0 0.1233 +0 0.1190 +0 0.0564 +0 0.0872 +0 0.0649 +0 0.1175 +0 0.0739 +0 0.0707 +0 0.1371 +0 0.3639 +0 0.1365 +0 0.0480 +0 0.3408 +0 0.1044 +0 0.1236 +0 0.0709 +0 0.1043 +1 0.8004 +0 0.0936 +0 0.1151 +0 0.2122 +0 0.0813 +0 0.0762 +0 0.2004 +0 0.0420 +0 0.1183 +0 0.0720 +0 0.0918 +0 0.0621 +0 0.0562 +0 0.3674 +0 0.0974 +0 0.0560 +0 0.0507 +0 0.0654 +0 0.1310 +0 0.2474 +0 0.1362 +0 0.2157 +0 0.1126 +0 0.0685 +0 0.5873 +0 0.0502 +0 0.0875 +0 0.1261 +0 0.1682 +0 0.1196 +0 0.1396 +0 0.0884 +0 0.0729 +0 0.0570 +0 0.1211 +0 0.0804 +0 0.3602 +0 0.0806 +0 0.2007 +0 0.1551 +0 0.0710 +0 0.0634 +0 0.3679 +0 0.0965 +0 0.1965 +0 0.1074 +0 0.2446 +0 0.2334 +0 0.1310 +0 0.0651 +0 0.0813 +0 0.0936 +0 0.1018 +0 0.1511 +0 0.1745 +0 0.0960 +0 0.0595 +0 0.7257 +0 0.0628 +0 0.0650 +0 0.2367 +0 0.4473 +0 0.0696 +1 0.8309 +0 0.0815 +0 0.2547 +0 0.1486 +0 0.0930 +0 0.0664 +0 0.0994 +0 0.3272 +0 0.1713 +0 0.1448 +0 0.2549 +0 0.0726 +0 0.2694 +0 0.1013 +0 0.0545 +0 0.0545 +0 0.0451 +0 0.1658 +0 0.1117 +0 0.0883 +0 0.1242 +0 0.2662 +0 0.0948 +0 0.1384 +0 0.1065 +0 0.1077 +0 0.5989 +0 0.2338 +0 0.6016 +0 0.2937 +0 0.1003 +0 0.6043 +0 0.0469 +0 0.0674 +0 0.1174 +0 0.0906 +0 0.1569 +0 0.1536 +0 0.3563 +0 0.0728 +0 0.1307 +0 0.0938 +0 0.0845 +0 0.0792 +0 0.0503 +0 0.0685 +0 0.1202 +0 0.0966 +0 0.2878 +0 0.1947 +0 0.0883 +0 0.1117 +0 0.1632 +0 0.2778 +0 0.0612 +0 0.1731 +0 0.0607 +0 0.1059 +0 0.0807 +0 0.4863 +0 0.1312 +0 0.1026 +0 0.0554 +0 0.0843 +0 0.1984 +0 0.4548 +0 0.1323 +1 0.8447 +0 0.1092 +0 0.0714 +0 0.2255 +0 0.0432 +0 0.1437 +0 0.1215 +0 0.0660 +0 0.0907 +0 0.2413 +0 0.0648 +0 0.0726 +0 0.1732 +0 0.5513 +0 0.1123 +0 0.0695 +0 0.0895 +0 0.2658 +0 0.1255 +0 0.0688 +0 0.0967 +0 0.1584 +0 0.1878 +0 0.0452 +0 0.0729 +0 0.2323 +0 0.0882 +0 0.0840 +0 0.0910 +0 0.1702 +0 0.1113 +0 0.2611 +0 0.1077 +0 0.0749 +0 0.1462 +0 0.0300 +0 0.0645 +0 0.0509 +0 0.1268 +0 0.1006 +0 0.0694 +0 0.1372 +0 0.5742 +0 0.1127 +1 0.8588 +0 0.0521 +0 0.0633 +0 0.1480 +0 0.0385 +0 0.1214 +0 0.1299 +1 0.8699 +0 0.1375 +1 0.8235 +0 0.1887 +0 0.1979 +0 0.0922 +0 0.0743 +0 0.0803 +0 0.0707 +0 0.6531 +0 0.0584 +0 0.0500 +0 0.0974 +0 0.2645 +0 0.2218 +0 0.1357 +0 0.0399 +0 0.0601 +0 0.6080 +0 0.2585 +0 0.0928 +0 0.1232 +0 0.0626 +0 0.1599 +0 0.0909 +0 0.2803 +0 0.5309 +0 0.2421 +0 0.1242 +0 0.0682 +0 0.0443 +0 0.4316 +0 0.0507 +0 0.4597 +0 0.1835 +0 0.0825 +0 0.0432 +0 0.2103 +0 0.1168 +0 0.1415 +0 0.2594 +0 0.0607 +0 0.0865 +0 0.1153 +0 0.0824 +0 0.0839 +0 0.0658 +0 0.0412 +0 0.1731 +0 0.0748 +0 0.0813 +0 0.3531 +0 0.1280 +0 0.1206 +0 0.1809 +0 0.2650 +0 0.2848 +0 0.0842 +0 0.2402 +0 0.1634 +0 0.0979 +0 0.1763 +0 0.0713 +0 0.0705 +0 0.0823 +0 0.0909 +0 0.0467 +0 0.2246 +0 0.1411 +0 0.1548 +0 0.0998 +0 0.1931 +0 0.1128 +0 0.1079 +0 0.1044 +0 0.2502 +0 0.0556 +0 0.1368 +0 0.0913 +0 0.3050 +0 0.1157 +0 0.0553 +0 0.0855 +0 0.1147 +0 0.0929 +0 0.1108 +0 0.0812 +0 0.1151 +0 0.0547 +0 0.1132 +0 0.2270 +0 0.0528 +0 0.0796 +0 0.0697 +0 0.0854 +0 0.0870 +0 0.6873 +0 0.0500 +0 0.1398 +0 0.0333 +0 0.3533 +0 0.0500 +0 0.0493 +0 0.1980 +0 0.0627 +0 0.0716 +0 0.1016 +0 0.1063 +0 0.1660 +0 0.2852 +0 0.0599 +0 0.0622 +0 0.1886 +0 0.1961 +0 0.1207 +0 0.0911 +0 0.0727 +1 0.8389 +0 0.0502 +0 0.0565 +0 0.0583 +0 0.2198 +0 0.1833 +0 0.1757 +0 0.0348 +0 0.2644 +0 0.0909 +0 0.1660 +0 0.0450 +0 0.0710 +0 0.0706 +0 0.0622 +0 0.1256 +0 0.0984 +0 0.1682 +0 0.0963 +0 0.2494 +0 0.4429 +0 0.1738 +0 0.1352 +0 0.1705 +0 0.1919 +0 0.1615 +0 0.0995 +0 0.1668 +0 0.1465 +0 0.0782 +0 0.0359 +0 0.0751 +0 0.0830 +0 0.0953 +0 0.0760 +0 0.1173 +0 0.1010 +0 0.0674 +0 0.0687 +0 0.0578 +0 0.0761 +0 0.2247 +0 0.0835 +0 0.1136 +0 0.1146 +0 0.3755 +0 0.0840 +0 0.0777 +0 0.2369 +0 0.0548 +0 0.2230 +0 0.1166 +0 0.3253 +0 0.0782 +0 0.5313 +0 0.1294 +0 0.0634 +0 0.0713 +0 0.0865 +0 0.0945 +0 0.1059 +0 0.0594 +0 0.0732 +1 0.8590 +0 0.0777 +0 0.0906 +0 0.1752 +1 0.8680 +0 0.2384 +0 0.1226 +0 0.1703 +0 0.0952 +0 0.0639 +0 0.0398 +0 0.1287 +0 0.1195 +0 0.0619 +0 0.1108 +0 0.0840 +0 0.1330 +0 0.1582 +0 0.1804 +0 0.1721 +0 0.1244 +0 0.0766 +0 0.1120 +0 0.1515 +0 0.0648 +0 0.0761 +0 0.1572 +0 0.1624 +0 0.0685 +0 0.1096 +0 0.1254 +0 0.1082 +0 0.3403 +0 0.2188 +0 0.0676 +0 0.0564 +0 0.0654 +0 0.1280 +0 0.1320 +0 0.0578 +0 0.0961 +0 0.0962 +0 0.4214 +0 0.1079 +0 0.0369 +0 0.0501 +0 0.2815 +1 0.7901 +0 0.0630 +0 0.2838 +0 0.0431 +0 0.1037 +0 0.1481 +0 0.6312 +0 0.0339 +1 0.8467 +0 0.0919 +0 0.1011 +0 0.1143 +0 0.1059 +0 0.6859 +0 0.1165 +0 0.0487 +0 0.0894 +0 0.1367 +0 0.0840 +0 0.0746 +0 0.0580 +0 0.0441 +0 0.0490 +0 0.0430 +0 0.1218 +0 0.2192 +0 0.0972 +0 0.0894 +0 0.1887 +0 0.2307 +0 0.0580 +0 0.0810 +0 0.1038 +0 0.0823 +0 0.0467 +0 0.2641 +0 0.1517 +0 0.1137 +0 0.1096 +0 0.2356 +0 0.0615 +0 0.0655 +0 0.5136 +0 0.2170 +0 0.0634 +0 0.0637 +0 0.0982 +0 0.0810 +0 0.2337 +0 0.1227 +0 0.0886 +0 0.2526 +0 0.0894 +0 0.0404 +0 0.1131 +0 0.0620 +0 0.1414 +0 0.0726 +0 0.1205 +0 0.1204 +0 0.0628 +0 0.0872 +0 0.1073 +0 0.3791 +0 0.0831 +0 0.0523 +0 0.1382 +0 0.0787 +0 0.1827 +0 0.0617 +1 0.7893 +0 0.4328 +0 0.0411 +0 0.1165 +0 0.2268 +0 0.0493 +0 0.1030 +0 0.0666 +0 0.5424 +0 0.1442 +0 0.1072 +0 0.1972 +0 0.0680 +0 0.0644 +0 0.1652 +0 0.0810 +0 0.2077 +0 0.5164 +0 0.1399 +0 0.1228 +0 0.0822 +0 0.1689 +0 0.0541 +0 0.0846 +0 0.0899 +0 0.0661 +0 0.1996 +0 0.0441 +0 0.0592 +0 0.6120 +0 0.0538 +0 0.0809 +0 0.0763 +0 0.6489 +0 0.0691 +0 0.1992 +0 0.0966 +0 0.0755 +0 0.3557 +0 0.0661 +0 0.0940 +0 0.0813 +0 0.0980 +0 0.2290 +0 0.1167 +0 0.1972 +0 0.0611 +0 0.0684 +0 0.0717 +0 0.0849 +0 0.0433 +0 0.0378 +0 0.2251 +1 0.8514 +0 0.0702 +0 0.1585 +0 0.4402 +0 0.0636 +0 0.0998 +0 0.1364 +0 0.4085 +0 0.0878 +0 0.2824 +0 0.1411 +0 0.1157 +0 0.1717 +0 0.2273 +0 0.0920 +0 0.0868 +0 0.0574 +0 0.2095 +0 0.1259 +0 0.0906 +0 0.1419 +0 0.0517 +0 0.0976 +0 0.0709 +0 0.2558 +0 0.4516 +0 0.1936 +0 0.2027 +0 0.0669 +0 0.0880 +0 0.0896 +0 0.1500 +0 0.1375 +0 0.0972 +0 0.2716 +0 0.0759 +0 0.0951 +0 0.0827 +0 0.0435 +0 0.1278 +0 0.1524 +0 0.0970 +0 0.1002 +0 0.0802 +0 0.0586 +0 0.0704 +0 0.1230 +0 0.0980 +0 0.0706 +0 0.3580 +0 0.0748 +0 0.0983 +0 0.0638 +0 0.2894 +0 0.4599 +0 0.0696 +0 0.1849 +0 0.0762 +0 0.0778 +0 0.1047 +0 0.2509 +0 0.4955 +0 0.0490 +0 0.2047 +0 0.1559 +0 0.0786 +0 0.0823 +0 0.2688 +0 0.1220 +0 0.0902 +0 0.1442 +0 0.0462 +0 0.0850 +0 0.1448 +0 0.1133 +0 0.1026 +0 0.2429 +0 0.1139 +0 0.0866 +0 0.0994 +0 0.1213 +0 0.1120 +0 0.3434 +0 0.1488 +0 0.0931 +0 0.0929 +0 0.2692 +0 0.5832 +0 0.0444 +0 0.0576 +0 0.0549 +0 0.1359 +0 0.0880 +0 0.1619 +0 0.2261 +0 0.7051 +0 0.0515 +0 0.0801 +0 0.1345 +0 0.1156 +0 0.0954 +0 0.1464 +0 0.2195 +0 0.1003 +0 0.2777 +0 0.0489 +0 0.1164 +0 0.0689 +0 0.1010 +0 0.2898 +0 0.0631 +0 0.7360 +0 0.1214 +0 0.0387 +0 0.0472 +0 0.1380 +0 0.1697 +0 0.0358 +0 0.0764 +0 0.1316 +0 0.1596 +0 0.3021 +0 0.0624 +0 0.0843 +0 0.0310 +0 0.1091 +0 0.0860 +0 0.1966 +0 0.2432 +0 0.0911 +0 0.1817 +0 0.1011 +0 0.1141 +0 0.2016 +0 0.0760 +0 0.1140 +0 0.0627 +0 0.1026 +0 0.1738 +0 0.0887 +0 0.0591 +0 0.0690 +0 0.0646 +0 0.0475 +0 0.0640 +0 0.1056 +0 0.0737 +0 0.1391 +0 0.0732 +0 0.2276 +0 0.0906 +0 0.1081 +0 0.0683 +0 0.0499 +0 0.0618 +0 0.1184 +0 0.0684 +0 0.1190 +0 0.1636 +0 0.1275 +0 0.0386 +0 0.0781 +0 0.0587 +0 0.0839 +0 0.1088 +0 0.0833 +0 0.1340 +0 0.1527 +0 0.1382 +0 0.0791 +0 0.0393 +0 0.0622 +0 0.2130 +0 0.0685 +0 0.0738 +0 0.0649 +0 0.0445 +0 0.0526 +0 0.1566 +0 0.0989 +0 0.0802 +0 0.0505 +0 0.1134 +0 0.1019 +0 0.0871 +0 0.0767 +0 0.4992 +0 0.2096 +0 0.0596 +0 0.1188 +0 0.1830 +0 0.0802 +0 0.1960 +0 0.1686 +0 0.0775 +0 0.0720 +0 0.1032 +0 0.1469 +0 0.1516 +0 0.1631 +0 0.0394 +0 0.0796 +0 0.1222 +0 0.2953 +0 0.0616 +0 0.0667 +0 0.1204 +0 0.1464 +0 0.1257 +0 0.1465 +0 0.0651 +0 0.0900 +0 0.0763 +0 0.1243 +0 0.3842 +1 0.7703 +0 0.1901 +0 0.0369 +0 0.0912 +0 0.0745 +0 0.0929 +0 0.0553 +0 0.1464 +0 0.1101 +0 0.1259 +0 0.1028 +0 0.0706 +0 0.1182 +0 0.0980 +0 0.1166 +0 0.1330 +0 0.0563 +0 0.0604 +0 0.0698 +0 0.0389 +0 0.1425 +0 0.0784 +0 0.0944 +0 0.1502 +0 0.0440 +0 0.6893 +0 0.0937 +0 0.2271 +0 0.1098 +0 0.0982 +0 0.2083 +0 0.0552 +0 0.1811 +0 0.1015 +0 0.1881 +0 0.0919 +0 0.0700 +0 0.1606 +0 0.0587 +0 0.0459 +0 0.0791 +0 0.0670 +0 0.0619 +0 0.0814 +0 0.0409 +0 0.1485 +0 0.1246 +0 0.1010 +0 0.0642 +0 0.1967 +0 0.0855 +0 0.2572 +0 0.0638 +0 0.2329 +0 0.1102 +0 0.0453 +0 0.0854 +0 0.0482 +0 0.0977 +0 0.4257 +0 0.1654 +0 0.0642 +0 0.6900 +0 0.2049 +0 0.0469 +0 0.0663 +0 0.0516 +0 0.0653 +0 0.0797 +0 0.1298 +0 0.1017 +0 0.0538 +0 0.1098 +0 0.1631 +0 0.0896 +0 0.1428 +0 0.0606 +0 0.0815 +0 0.1809 +0 0.0877 +0 0.1048 +0 0.1193 +0 0.0877 +0 0.1739 +0 0.3291 +0 0.0866 +0 0.2117 +0 0.4926 +0 0.1647 +0 0.0451 +0 0.0977 +0 0.3346 +0 0.3668 +0 0.0601 +0 0.2669 +0 0.1921 +0 0.2054 +0 0.2330 +0 0.2119 +0 0.1480 +0 0.1253 +0 0.0488 +0 0.0514 +0 0.1454 +0 0.0395 +0 0.2087 +0 0.0715 +0 0.2565 +0 0.0614 +0 0.1787 +0 0.3295 +0 0.1063 +0 0.1091 +0 0.0398 +0 0.2460 +0 0.1129 +0 0.0899 +0 0.1290 +0 0.1552 +0 0.0741 +0 0.1131 +0 0.0627 +0 0.3646 +0 0.0703 +0 0.0722 +0 0.2219 +0 0.1546 +0 0.0663 +0 0.0854 +0 0.1003 +1 0.7801 +0 0.1493 +0 0.0863 +0 0.1407 +0 0.1675 +0 0.0391 +0 0.0485 +0 0.1125 +0 0.0953 +0 0.1264 +0 0.0933 +0 0.0955 +0 0.0598 +0 0.2129 +0 0.1993 +0 0.1537 +0 0.0634 +0 0.2251 +0 0.0595 +0 0.1033 +0 0.0951 +0 0.0536 +0 0.2335 +0 0.0668 +0 0.0812 +1 0.8175 +0 0.1345 +0 0.1031 +0 0.5616 +0 0.0346 +0 0.0390 +0 0.1220 +0 0.2440 +0 0.0861 +0 0.6308 +0 0.0623 +0 0.0599 +0 0.0458 +0 0.0913 +0 0.1234 +0 0.1434 +0 0.1085 +0 0.1831 +0 0.1834 +0 0.0853 +0 0.0904 +0 0.0999 +0 0.0879 +0 0.1885 +0 0.0341 +0 0.1435 +0 0.0889 +0 0.0466 +0 0.0896 +0 0.1492 +0 0.0667 +0 0.2122 +0 0.0694 +0 0.1190 +0 0.1007 +0 0.1566 +0 0.1061 +0 0.0717 +0 0.1563 +0 0.0963 +0 0.3468 +0 0.1023 +0 0.0774 +0 0.1525 +0 0.2940 +0 0.1789 +0 0.1124 +0 0.2590 +0 0.0487 +0 0.0662 +0 0.0902 +0 0.7497 +0 0.0901 +0 0.1936 +0 0.0573 +0 0.1737 +0 0.1059 +0 0.1242 +0 0.0604 +0 0.0971 +0 0.0636 +0 0.1842 +0 0.0770 +0 0.2143 +0 0.0769 +0 0.0793 +0 0.4904 +0 0.0500 +0 0.2492 +0 0.1259 +0 0.1963 +0 0.1202 +0 0.1720 +0 0.0945 +0 0.3070 +0 0.0638 +0 0.1296 +0 0.0370 +0 0.1308 +0 0.1004 +0 0.0439 +0 0.1103 +1 0.8366 +0 0.0711 +0 0.0826 +0 0.1082 +0 0.0861 +0 0.2174 +0 0.1346 +0 0.1092 +0 0.1161 +0 0.0668 +0 0.0984 +0 0.0769 +0 0.1687 +0 0.0785 +0 0.1316 +0 0.0575 +0 0.6487 +0 0.5316 +0 0.1375 +0 0.2197 +0 0.0561 +0 0.1382 +0 0.1581 +0 0.3087 +0 0.1532 +0 0.0614 +1 0.7673 +0 0.1461 +0 0.0870 +0 0.0877 +0 0.0625 +0 0.0507 +0 0.1249 +0 0.1391 +0 0.0422 +0 0.0833 +0 0.2455 +0 0.2511 +0 0.0770 +0 0.1810 +0 0.1473 +0 0.2764 +0 0.0492 +0 0.0384 +0 0.1255 +0 0.1069 +0 0.0394 +0 0.1127 +0 0.1142 +0 0.1196 +0 0.1627 +1 0.7998 +0 0.5465 +0 0.1038 +0 0.1078 +0 0.1459 +0 0.1190 +0 0.1462 +0 0.1139 +0 0.7386 +0 0.2197 +0 0.0800 +0 0.2854 +0 0.0507 +0 0.0996 +0 0.0682 +0 0.2018 +0 0.0565 +0 0.1765 +0 0.0571 +0 0.1810 +0 0.0565 +0 0.0778 +0 0.0994 +0 0.1040 +0 0.1922 +0 0.1164 +0 0.0780 +0 0.0455 +0 0.0577 +0 0.0728 +0 0.0765 +0 0.1041 +0 0.1725 +0 0.0842 +0 0.0855 +0 0.1051 +0 0.0548 +0 0.0755 +0 0.0604 +0 0.1238 +0 0.1592 +1 0.7891 +0 0.0927 +0 0.1779 +0 0.0655 +0 0.0620 +0 0.1328 +0 0.1551 +0 0.0530 +0 0.2783 +0 0.2270 +0 0.2660 +0 0.1826 +0 0.1586 +0 0.0531 +0 0.0986 +0 0.0889 +0 0.1877 +0 0.1391 +0 0.4477 +0 0.1299 +0 0.0628 +0 0.0622 +0 0.1187 +0 0.1482 +0 0.0502 +0 0.2065 +0 0.1286 +0 0.0791 +0 0.0670 +0 0.1242 +0 0.0671 +0 0.0450 +0 0.1074 +0 0.1469 +0 0.0988 +1 0.8266 +0 0.0927 +0 0.0913 +0 0.0758 +0 0.0628 +0 0.0784 +0 0.1561 +0 0.1153 +0 0.0779 +0 0.0651 +0 0.1491 +0 0.2739 +1 0.7544 +0 0.0737 +0 0.2542 +0 0.0833 +0 0.4981 +0 0.0565 +0 0.0508 +0 0.6324 +0 0.0692 +0 0.1292 +0 0.0444 +0 0.0371 +0 0.1308 +0 0.2416 +0 0.1553 +0 0.0961 +0 0.1186 +0 0.3455 +0 0.2797 +0 0.0772 +0 0.0612 +0 0.1710 +0 0.1070 +0 0.0700 +0 0.0840 +0 0.0919 +0 0.3431 +0 0.0467 +0 0.0848 +0 0.2216 +0 0.0867 +1 0.8330 +0 0.1488 +0 0.0831 +0 0.4008 +0 0.0980 +0 0.0420 +0 0.0609 +0 0.0718 +0 0.0368 +0 0.0944 +0 0.1367 +0 0.0728 +0 0.0623 +0 0.1290 +0 0.2461 +0 0.0523 +0 0.0867 +0 0.2528 +0 0.1355 +0 0.0684 +0 0.1536 +0 0.2063 +0 0.1217 +0 0.1003 +0 0.2899 +0 0.1003 +0 0.2116 +0 0.0649 +0 0.0728 +0 0.1074 +0 0.1549 +0 0.0480 +0 0.1193 +0 0.0674 +0 0.1758 +0 0.0368 +0 0.0625 +0 0.0445 +0 0.1244 +0 0.0953 +0 0.2072 +0 0.0500 +0 0.0506 +0 0.3743 +0 0.0716 +1 0.7900 +0 0.0719 +0 0.1138 +0 0.1069 +0 0.1395 +0 0.0961 +0 0.1687 +0 0.0659 +0 0.0960 +0 0.1162 +0 0.1140 +0 0.1207 +0 0.1106 +0 0.2103 +0 0.1575 +0 0.0566 +0 0.0677 +0 0.0487 +0 0.0618 +0 0.0650 +0 0.1020 +0 0.0751 +0 0.0693 +0 0.0601 +0 0.2101 +0 0.0487 +0 0.1041 +0 0.1810 +0 0.2117 +0 0.0676 +1 0.8120 +0 0.0600 +0 0.0954 +0 0.0622 +0 0.1171 +0 0.0777 +0 0.0740 +0 0.1025 +0 0.1534 +0 0.0635 +0 0.1417 +0 0.0752 +0 0.1723 +0 0.0393 +0 0.1150 +0 0.0690 +0 0.0540 +0 0.0587 +0 0.7178 +0 0.1470 +0 0.0391 +0 0.0478 +0 0.3726 +0 0.1360 +0 0.0823 +0 0.1355 +0 0.1610 +0 0.0793 +0 0.1404 +0 0.1212 +0 0.0491 +0 0.2575 +0 0.1385 +0 0.1023 +0 0.0715 +0 0.1122 +0 0.1480 +0 0.1942 +0 0.1974 +0 0.1450 +0 0.2164 +0 0.3619 +0 0.1967 +0 0.0793 +0 0.1521 +0 0.0827 +0 0.1539 +0 0.1250 +0 0.0366 +0 0.0626 +0 0.1495 +0 0.1315 +0 0.0820 +0 0.1322 +0 0.0798 +0 0.1421 +0 0.0518 +0 0.1175 +0 0.0842 +0 0.2415 +0 0.0762 +0 0.0777 +0 0.0701 +0 0.1374 +0 0.0744 +0 0.3611 +0 0.0431 +1 0.8676 +0 0.0980 +0 0.0776 +0 0.0710 +0 0.0730 +0 0.6880 +0 0.1316 +0 0.2208 +0 0.3797 +0 0.1076 +0 0.1556 +0 0.0792 +0 0.1313 +0 0.6816 +0 0.0854 +0 0.2159 +0 0.0775 +0 0.0478 +0 0.2517 +0 0.2278 +0 0.1581 +0 0.1782 +0 0.3232 +0 0.1791 +0 0.0903 +0 0.5396 +0 0.1376 +0 0.0347 +0 0.0856 +0 0.0784 +0 0.1479 +0 0.2027 +0 0.0966 +0 0.1249 +0 0.0427 +0 0.0562 +0 0.0411 +0 0.1078 +0 0.0528 +0 0.1697 +1 0.7996 +0 0.0947 +0 0.1765 +0 0.2908 +0 0.0746 +0 0.1672 +0 0.1085 +0 0.0678 +0 0.1746 +0 0.3189 +0 0.0505 +0 0.0993 +0 0.1136 +1 0.7671 +0 0.0741 +0 0.1079 +0 0.0629 +0 0.0900 +0 0.2307 +0 0.1065 +0 0.0807 +0 0.2179 +0 0.0913 +0 0.1258 +0 0.1189 +0 0.1041 +0 0.7133 +0 0.0584 +0 0.3403 +0 0.0813 +0 0.1012 +0 0.4151 +0 0.0773 +0 0.0396 +0 0.0745 +0 0.1017 +0 0.1314 +0 0.0495 +0 0.0660 +0 0.1854 +0 0.4754 +0 0.0880 +0 0.3637 +0 0.6032 +0 0.1306 +0 0.0593 +0 0.1613 +0 0.0800 +0 0.0926 +0 0.1195 +1 0.8385 +0 0.1364 +0 0.1296 +0 0.0995 +0 0.1501 +0 0.0730 +0 0.1390 +0 0.4558 +1 0.8322 +0 0.1302 +0 0.0732 +0 0.0433 +0 0.1250 +0 0.0514 +0 0.0829 +0 0.1063 +0 0.0660 +0 0.0652 +0 0.3725 +0 0.0944 +0 0.0758 +0 0.0840 +0 0.1082 +0 0.1316 +1 0.7912 +0 0.2261 +0 0.1260 +0 0.1365 +0 0.1005 +0 0.1475 +0 0.0748 +0 0.1245 +1 0.8285 +0 0.3672 +0 0.0929 +0 0.0562 +0 0.0595 +0 0.2431 +0 0.1232 +0 0.0810 +0 0.1830 +0 0.0364 +0 0.0954 +0 0.1067 +0 0.1388 +0 0.0860 +0 0.1075 +0 0.1337 +0 0.2304 +0 0.0844 +0 0.0575 +0 0.1058 +0 0.1943 +0 0.1314 +0 0.1208 +0 0.1887 +0 0.1591 +0 0.1506 +0 0.0790 +1 0.8506 +0 0.4196 +0 0.4618 +0 0.1649 +0 0.0615 +0 0.1296 +0 0.0703 +0 0.4533 +0 0.0811 +0 0.0958 +0 0.0741 +0 0.0869 +0 0.2505 +0 0.1753 +0 0.0764 +0 0.0539 +0 0.0680 +0 0.0835 +0 0.0723 +0 0.0812 +0 0.7442 +0 0.0861 +0 0.2100 +0 0.2506 +0 0.2737 +0 0.0536 +0 0.0493 +0 0.1003 +0 0.0686 +0 0.0697 +0 0.1164 +0 0.3226 +0 0.3322 +0 0.1905 +0 0.1220 +0 0.1066 +0 0.0923 +0 0.0356 +0 0.1231 +0 0.2465 +0 0.0585 +0 0.0928 +0 0.2115 +0 0.1011 +0 0.2080 +0 0.1186 +1 0.8088 +0 0.2107 +0 0.1248 +0 0.0938 +0 0.0896 +0 0.1814 +0 0.0688 +0 0.0811 +0 0.2146 +0 0.4829 +0 0.1586 +0 0.0625 +0 0.1521 +0 0.0385 +0 0.0822 +0 0.3774 +0 0.0493 +0 0.3014 +0 0.1703 +0 0.1990 +0 0.0377 +0 0.0696 +0 0.0835 +0 0.2351 +0 0.3849 +0 0.0562 +0 0.2172 +0 0.1033 +0 0.1296 +0 0.2928 +0 0.1688 +0 0.2112 +0 0.2422 +0 0.6966 +0 0.1661 +0 0.0398 +0 0.1239 +0 0.0486 +0 0.0869 +0 0.1193 +0 0.3564 +0 0.0611 +0 0.1614 +0 0.1029 +0 0.0680 +0 0.0682 +0 0.1722 +0 0.0685 +0 0.2138 +0 0.1927 +0 0.0606 +0 0.0613 +0 0.4189 +0 0.1053 +0 0.1359 +0 0.1513 +0 0.0497 +0 0.1049 +0 0.0995 +0 0.4281 +0 0.0808 +0 0.1066 +0 0.0998 +0 0.0794 +0 0.0963 +0 0.0957 +0 0.1967 +0 0.0900 +0 0.1261 +0 0.1914 +0 0.1999 +0 0.0884 +0 0.0671 +0 0.0837 +0 0.1246 +0 0.0804 +0 0.0651 +0 0.1323 +0 0.0521 +0 0.0761 +0 0.0756 +0 0.0706 +0 0.1159 +0 0.1293 +0 0.1040 +0 0.1279 +0 0.1781 +0 0.2325 +0 0.1033 +0 0.2881 +0 0.4587 +0 0.3104 +0 0.1548 +0 0.0754 +0 0.1672 +0 0.0705 +0 0.1379 +0 0.1279 +0 0.0595 +0 0.0732 +0 0.0684 +0 0.1489 +0 0.1259 +0 0.0846 +0 0.1054 +0 0.0557 +0 0.0443 +0 0.1939 +0 0.1957 +0 0.0793 +0 0.1011 +0 0.0341 +0 0.1059 +0 0.0669 +0 0.2794 +0 0.1011 +0 0.1142 +0 0.2803 +0 0.1605 +0 0.0979 +0 0.1099 +0 0.2541 +0 0.0785 +0 0.1669 +0 0.1346 +0 0.0860 +0 0.4389 +0 0.0821 +0 0.1580 +0 0.0316 +0 0.1777 +0 0.0315 +0 0.0741 +0 0.0687 +0 0.1642 +0 0.0707 +0 0.0790 +0 0.0613 +0 0.2495 +0 0.0947 +0 0.0904 +0 0.0695 +0 0.0366 +0 0.2069 +0 0.1180 +0 0.0412 +0 0.1272 +0 0.7500 +0 0.1293 +0 0.1178 +0 0.1358 +0 0.0777 +0 0.2455 +0 0.1119 +0 0.0524 +0 0.0578 +0 0.2885 +0 0.2623 +0 0.2183 +0 0.1040 +0 0.1308 +0 0.0815 +0 0.0687 +0 0.0539 +0 0.1712 +0 0.4675 +0 0.2595 +0 0.1214 +0 0.1015 +0 0.0924 +0 0.2475 +0 0.6500 +0 0.2006 +0 0.0983 +0 0.0575 +0 0.1169 +0 0.0624 +0 0.1183 +0 0.1302 +0 0.0365 +0 0.0423 +0 0.1357 +0 0.0607 +0 0.2295 +0 0.0959 +0 0.1828 +0 0.1677 +1 0.8255 +0 0.0743 +0 0.0890 +0 0.6726 +0 0.0584 +0 0.0653 +0 0.0420 +0 0.2003 +0 0.2227 +0 0.0880 +0 0.0707 +0 0.0915 +0 0.0512 +0 0.0748 +0 0.4213 +0 0.0584 +0 0.0907 +0 0.1515 +0 0.2392 +0 0.0752 +0 0.0657 +0 0.4535 +0 0.2047 +0 0.1087 +0 0.2738 +0 0.1711 +0 0.1188 +0 0.0498 +0 0.1808 +0 0.0782 +0 0.1218 +0 0.0748 +0 0.0844 +0 0.2649 +0 0.1004 +0 0.1332 +0 0.1623 +0 0.0731 +0 0.0751 +0 0.0574 +0 0.2132 +0 0.0741 +0 0.1269 +0 0.5058 +0 0.1689 +0 0.0801 +0 0.0456 +0 0.1661 +0 0.0952 +0 0.1456 +0 0.0829 +0 0.1691 +0 0.1791 +0 0.1158 +0 0.0544 +0 0.4514 +0 0.0832 +0 0.2146 +0 0.0477 +0 0.2814 +0 0.0805 +0 0.1394 +0 0.1808 +0 0.1977 +0 0.1237 +0 0.0736 +0 0.0665 +0 0.1323 +0 0.0774 +0 0.1395 +0 0.0784 +0 0.0909 +0 0.1534 +0 0.1120 +0 0.0613 +0 0.1295 +0 0.0491 +0 0.0937 +0 0.0842 +0 0.0770 +0 0.1008 +0 0.0800 +0 0.1287 +0 0.0398 +0 0.0677 +0 0.0948 +0 0.2051 +0 0.0839 +0 0.0664 +0 0.1143 +0 0.2582 +0 0.0818 +0 0.2707 +0 0.0513 +0 0.0543 +0 0.0885 +0 0.1187 +0 0.2051 +0 0.0677 +0 0.0823 +0 0.1189 +0 0.0618 +0 0.0610 +0 0.0903 +0 0.1782 +0 0.0615 +0 0.0497 +0 0.0824 +0 0.3329 +0 0.3543 +0 0.0880 +0 0.0355 +0 0.3592 +0 0.3679 +1 0.8505 +0 0.0711 +0 0.0545 +0 0.1663 +0 0.2871 +0 0.0635 +0 0.1533 +0 0.1068 +0 0.4745 +0 0.0706 +0 0.2003 +0 0.2226 +0 0.0717 +0 0.0593 +0 0.1127 +0 0.0813 +0 0.1009 +0 0.1762 +0 0.1933 +0 0.1446 +0 0.0656 +0 0.1004 +0 0.0583 +0 0.0516 +0 0.1237 +0 0.0915 +0 0.0427 +0 0.1652 +0 0.1136 +0 0.0859 +0 0.1279 +0 0.1085 +0 0.0685 +0 0.0706 +0 0.3100 +0 0.0802 +0 0.5864 +0 0.0654 +0 0.0818 +0 0.0913 +0 0.0377 +0 0.1124 +0 0.2548 +0 0.0647 +0 0.1855 +0 0.1248 +0 0.1059 +0 0.0420 +0 0.0819 +0 0.2521 +0 0.0955 +0 0.2387 +0 0.0527 +0 0.0592 +0 0.1110 +0 0.1401 +0 0.0406 +0 0.0372 +0 0.1239 +0 0.1856 +0 0.2336 +0 0.1571 +0 0.0472 +0 0.2096 +0 0.0792 +0 0.1040 +0 0.0497 +0 0.0647 +0 0.0469 +0 0.1503 +0 0.1441 +0 0.0495 +0 0.0552 +0 0.0758 +0 0.0959 +0 0.1435 +0 0.1175 +0 0.0557 +0 0.0493 +1 0.8461 +0 0.1059 +0 0.2471 +0 0.0842 +0 0.0592 +0 0.1523 +0 0.0614 +0 0.1050 +0 0.1804 +0 0.0352 +0 0.2878 +0 0.2103 +0 0.1238 +0 0.1132 +0 0.0635 +0 0.1043 +0 0.3076 +0 0.1507 +1 0.8298 +0 0.0740 +0 0.0763 +0 0.1208 +0 0.0494 +0 0.1256 +0 0.1437 +0 0.0578 +0 0.1878 +0 0.0907 +0 0.1950 +0 0.0606 +0 0.0719 +0 0.0389 +0 0.1088 +0 0.0615 +0 0.2738 +0 0.1383 +0 0.0574 +0 0.0629 +0 0.1229 +0 0.0630 +0 0.0502 +0 0.0537 +0 0.1550 +0 0.0583 +0 0.2262 +0 0.1483 +0 0.1216 +0 0.1458 +0 0.1109 +0 0.3152 +0 0.2293 +0 0.1422 +0 0.1415 +0 0.0798 +0 0.0452 +0 0.1047 +0 0.1055 +0 0.0536 +0 0.0531 +0 0.2481 +0 0.0766 +0 0.1206 +0 0.0797 +0 0.1726 +0 0.7355 +0 0.0479 +0 0.0435 +0 0.0759 +0 0.5995 +0 0.2532 +0 0.0895 +0 0.1302 +0 0.0877 +0 0.0756 +0 0.1416 +0 0.1376 +1 0.7892 +0 0.2283 +0 0.1533 +0 0.0601 +0 0.1593 +0 0.1378 +0 0.0782 +0 0.1850 +0 0.0527 +0 0.0476 +0 0.2310 +0 0.1258 +0 0.5871 +0 0.1222 +1 0.8193 +0 0.0555 +0 0.0887 +0 0.0420 +0 0.1266 +0 0.2189 +0 0.0771 +0 0.2050 +1 0.8422 +0 0.1619 +0 0.1779 +0 0.0421 +0 0.1492 +0 0.1407 +0 0.0772 +0 0.1016 +0 0.0623 +0 0.2351 +0 0.3124 +0 0.2597 +0 0.2737 +0 0.1223 +0 0.0843 +0 0.1080 +0 0.0505 +0 0.0527 +0 0.0722 +0 0.0950 +0 0.2304 +0 0.0507 +0 0.0603 +0 0.1595 +0 0.1901 +0 0.1058 +0 0.1367 +0 0.1758 +0 0.0848 +0 0.0694 +0 0.3026 +0 0.0822 +0 0.3476 +0 0.2125 +0 0.2562 +0 0.0838 +0 0.1108 +0 0.1350 +0 0.2673 +0 0.1810 +0 0.7032 +0 0.2124 +0 0.4021 +0 0.2995 +0 0.0929 +0 0.0967 +0 0.1159 +0 0.0601 +0 0.0605 +0 0.0906 +0 0.1079 +0 0.0454 +0 0.2439 +0 0.0878 +0 0.1453 +0 0.1226 +0 0.1436 +0 0.0852 +0 0.0679 +0 0.0448 +0 0.0517 +0 0.0562 +0 0.2207 +0 0.0678 +0 0.0945 +0 0.0798 +0 0.0743 +0 0.0961 +0 0.5684 +0 0.2289 +0 0.2303 +0 0.0441 +0 0.1129 +0 0.1420 +0 0.2060 +0 0.0497 +0 0.1451 +0 0.1410 +0 0.1412 +0 0.1687 +0 0.2392 +0 0.2001 +0 0.1575 +0 0.0780 +0 0.1658 +0 0.0855 +0 0.2864 +0 0.1065 +0 0.1177 +0 0.1839 +0 0.7092 +0 0.0807 +0 0.0649 +0 0.0766 +0 0.2773 +0 0.0611 +0 0.0748 +0 0.0696 +0 0.1547 +0 0.0640 +0 0.1934 +0 0.1502 +0 0.7399 +0 0.0903 +0 0.0701 +0 0.0813 +0 0.1181 +0 0.0437 +0 0.0979 +1 0.7590 +0 0.0509 +0 0.0894 +0 0.0693 +0 0.1448 +0 0.2464 +0 0.0778 +0 0.2088 +0 0.2771 +0 0.0669 +0 0.0872 +0 0.1736 +0 0.1540 +0 0.0541 +0 0.5565 +0 0.1071 +0 0.0739 +0 0.1153 +0 0.0357 +0 0.1180 +0 0.0937 +0 0.0658 +0 0.0945 +0 0.0962 +0 0.1253 +0 0.0952 +0 0.0614 +0 0.0422 +0 0.1340 +0 0.2318 +1 0.8254 +0 0.1141 +0 0.2155 +0 0.4416 +0 0.2128 +0 0.2078 +0 0.0987 +0 0.1005 +0 0.0504 +0 0.0637 +0 0.0766 +0 0.1177 +0 0.1085 +0 0.1115 +0 0.0870 +0 0.3261 +0 0.0730 +0 0.0981 +0 0.0599 +0 0.1447 +0 0.0414 +0 0.1433 +0 0.1021 +0 0.2272 +0 0.0321 +0 0.1215 +0 0.0804 +0 0.0918 +0 0.0380 +0 0.1402 +0 0.1259 +0 0.0455 +0 0.0891 +0 0.1299 +0 0.1599 +0 0.0594 +0 0.0392 +0 0.1531 +0 0.1456 +0 0.0604 +0 0.0910 +0 0.0941 +0 0.0514 +0 0.1528 +0 0.0898 +0 0.1395 +0 0.0762 +0 0.1005 +0 0.2988 +0 0.2027 +0 0.0556 +0 0.1065 +0 0.0825 +0 0.0549 +0 0.1637 +0 0.1220 +0 0.0787 +0 0.1627 +0 0.1333 +0 0.1136 +0 0.0895 +0 0.2131 +0 0.0948 +0 0.1936 +0 0.0720 +1 0.7790 +0 0.0430 +0 0.0559 +0 0.0906 +0 0.5221 +0 0.5408 +0 0.1773 +0 0.0652 +0 0.1075 +0 0.1039 +0 0.0995 +0 0.0686 +0 0.1788 +0 0.0822 +0 0.0848 +0 0.1624 +0 0.0565 +0 0.1825 +0 0.2488 +0 0.0889 +0 0.0780 +0 0.0337 +0 0.0727 +0 0.1127 +0 0.3408 +0 0.1766 +0 0.6421 +0 0.0829 +0 0.0595 +0 0.0872 +0 0.0769 +0 0.2135 +0 0.0633 +0 0.1707 +0 0.1016 +0 0.0658 +0 0.0762 +0 0.6151 +0 0.2141 +0 0.1710 +0 0.2119 +0 0.3813 +0 0.3089 +0 0.0748 +0 0.0554 +0 0.1860 +0 0.0573 +0 0.1525 +0 0.1008 +0 0.0857 +0 0.0745 +0 0.2104 +0 0.4058 +0 0.7363 +0 0.1565 +0 0.0819 +0 0.1223 +0 0.0924 +0 0.0986 +0 0.1331 +0 0.2750 +0 0.0989 +0 0.1068 +0 0.0881 +0 0.0511 +0 0.0585 +0 0.0885 +0 0.6040 +0 0.1363 +0 0.0937 +0 0.1114 +0 0.0349 +0 0.0585 +0 0.1512 +0 0.0881 +1 0.8577 +0 0.1766 +0 0.0878 +0 0.0879 +0 0.2012 +0 0.0877 +0 0.0706 +0 0.1130 +0 0.3197 +0 0.2261 +0 0.2465 +0 0.1015 +0 0.1128 +0 0.0959 +1 0.8198 +0 0.3072 +0 0.0884 +0 0.0509 +0 0.1005 +0 0.0855 +1 0.8702 +0 0.0807 +0 0.2323 +0 0.1535 +0 0.1034 +0 0.3430 +0 0.0377 +0 0.0790 +0 0.0682 +0 0.0858 +0 0.0800 +0 0.1403 +0 0.0692 +0 0.0574 +0 0.1383 +0 0.1179 +0 0.1233 +0 0.0465 +0 0.1009 +0 0.3969 +0 0.1439 +0 0.1268 +0 0.0950 +0 0.1073 +0 0.1112 +0 0.1676 +0 0.3260 +0 0.1445 +0 0.0950 +0 0.7044 +0 0.1166 +0 0.1291 +0 0.0796 +0 0.0752 +0 0.0828 +0 0.0707 +0 0.0648 +0 0.0578 +0 0.1245 +0 0.1366 +0 0.0868 +0 0.2137 +1 0.4534 +0 0.2391 +0 0.1395 +0 0.1264 +0 0.1028 +0 0.1052 +0 0.1277 +0 0.0571 +0 0.1165 +0 0.1819 +0 0.0553 +0 0.1786 +0 0.0799 +0 0.1786 +0 0.1293 +0 0.1785 +0 0.0859 +0 0.0686 +0 0.0673 +1 0.7648 +0 0.0675 +0 0.0702 +0 0.0539 +0 0.1991 +0 0.1384 +0 0.1417 +0 0.1028 +0 0.0455 +0 0.2054 +0 0.1237 +0 0.0765 +0 0.0634 +0 0.1244 +0 0.0865 +0 0.0870 +0 0.0457 +0 0.1646 +0 0.0604 +0 0.0725 +0 0.0675 +0 0.1569 +0 0.4066 +0 0.1276 +0 0.1285 +0 0.2155 +0 0.1444 +0 0.1037 +0 0.1128 +0 0.1665 +0 0.0622 +0 0.0941 +0 0.0885 +0 0.0776 +0 0.0651 +0 0.0563 +0 0.0512 +0 0.1079 +0 0.0578 +0 0.1441 +0 0.0791 +0 0.2376 +0 0.0652 +0 0.2690 +0 0.0977 +0 0.0534 +0 0.1574 +0 0.1782 +0 0.1017 +0 0.0546 +0 0.3237 +0 0.1014 +0 0.1253 +0 0.0688 +0 0.5276 +0 0.0757 +0 0.1898 +0 0.0374 +0 0.0484 +0 0.0983 +0 0.0506 +0 0.0751 +0 0.3148 +0 0.0593 +0 0.0336 +0 0.2349 +0 0.5824 +0 0.1218 +0 0.1603 +0 0.1336 +0 0.1382 +0 0.0948 +0 0.3823 +0 0.2634 +0 0.2080 +0 0.1076 +0 0.3288 +0 0.1311 +0 0.0993 +0 0.0514 +0 0.1017 +0 0.2117 +0 0.1264 +0 0.1221 +0 0.0445 +0 0.0477 +0 0.1938 +0 0.1056 +0 0.0527 +0 0.1762 +0 0.1075 +0 0.0803 +0 0.1451 +0 0.0814 +0 0.0776 +0 0.0587 +0 0.0586 +0 0.0557 +0 0.0961 +0 0.1326 +0 0.0703 +0 0.0956 +0 0.0677 +0 0.1738 +0 0.1217 +0 0.1757 +0 0.0646 +0 0.0305 +0 0.1394 +0 0.1147 +0 0.0948 +0 0.1137 +0 0.1929 +0 0.0566 +0 0.0932 +0 0.0671 +0 0.1069 +0 0.0737 +0 0.2149 +0 0.4464 +0 0.4850 +0 0.0424 +0 0.0648 +0 0.0814 +0 0.0433 +0 0.1070 +0 0.1655 +0 0.0502 +0 0.0873 +0 0.1460 +0 0.2682 +0 0.1796 +0 0.0665 +0 0.5170 +0 0.2205 +1 0.7987 +0 0.2341 +0 0.0516 +0 0.3005 +0 0.0923 +0 0.2135 +0 0.0614 +0 0.0736 +0 0.0617 +0 0.0672 +0 0.2290 +0 0.0766 +0 0.1854 +0 0.1698 +0 0.1370 +0 0.0819 +0 0.0769 +0 0.0798 +0 0.1095 +0 0.2131 +0 0.0448 +0 0.3112 +0 0.0528 +0 0.1555 +0 0.1722 +0 0.5233 +0 0.0568 +0 0.3383 +0 0.0735 +0 0.6021 +0 0.1361 +0 0.1230 +0 0.0414 +0 0.1375 +0 0.1453 +0 0.1426 +0 0.1570 +0 0.2680 +0 0.0536 +0 0.2110 +0 0.0664 +0 0.0488 +0 0.0609 +0 0.0626 +0 0.0420 +0 0.0980 +0 0.0888 +0 0.2805 +0 0.0567 +0 0.1531 +0 0.1200 +0 0.0602 +0 0.1067 +0 0.1658 +0 0.0589 +0 0.0664 +0 0.0647 +0 0.1417 +0 0.1381 +0 0.2775 +0 0.1749 +0 0.0572 +0 0.2887 +0 0.1205 +0 0.0790 +0 0.0400 +0 0.1281 +0 0.0466 +0 0.0717 +0 0.0598 +0 0.1628 +0 0.1480 +0 0.0310 +0 0.1340 +0 0.0575 +0 0.1477 +0 0.1807 +0 0.0646 +0 0.0368 +0 0.1356 +0 0.2003 +0 0.7323 +0 0.1995 +0 0.1326 +0 0.2578 +0 0.1470 +0 0.1165 +0 0.2814 +0 0.2254 +0 0.4162 +0 0.1491 +0 0.1372 +0 0.0991 +0 0.0862 +0 0.1106 +0 0.1000 +0 0.0499 +0 0.0441 +0 0.0511 +0 0.0949 +0 0.0850 +0 0.0814 +0 0.2145 +0 0.0682 +0 0.1242 +0 0.0805 +0 0.0605 +0 0.0820 +0 0.0834 +0 0.1173 +0 0.0486 +0 0.1337 +0 0.0915 +0 0.0656 +0 0.0981 +0 0.0941 +0 0.1317 +0 0.1487 +0 0.0546 +0 0.1076 +0 0.0519 +0 0.1736 +0 0.1051 +0 0.1339 +0 0.0490 +0 0.3201 +0 0.1508 +0 0.0419 +0 0.1090 +0 0.0818 +0 0.0951 +0 0.0714 +0 0.0834 +0 0.0789 +0 0.1451 +0 0.0837 +1 0.8320 +0 0.0692 +0 0.0425 +0 0.1665 +0 0.1180 +0 0.0616 +0 0.0881 +0 0.2391 +0 0.0666 +0 0.3250 +0 0.1092 +0 0.2265 +0 0.0827 +0 0.1042 +0 0.0454 +0 0.2259 +0 0.0428 +0 0.0619 +0 0.1644 +0 0.0681 +0 0.1157 +0 0.1205 +0 0.0666 +0 0.0646 +0 0.1177 +0 0.0571 +0 0.0542 +0 0.1973 +0 0.1075 +0 0.1563 +0 0.3596 +0 0.2847 +0 0.1210 +0 0.7001 +0 0.0664 +0 0.0905 +0 0.2312 +0 0.1472 +0 0.1539 +0 0.1731 +0 0.3210 +0 0.1119 +0 0.0726 +0 0.0576 +0 0.1524 +0 0.2422 +0 0.4985 +0 0.0764 +0 0.0416 +0 0.0718 +0 0.0432 +0 0.0608 +0 0.1429 +0 0.1101 +0 0.4466 +0 0.0688 +0 0.0853 +0 0.1490 +0 0.2716 +0 0.1505 +0 0.0673 +0 0.0697 +0 0.0834 +0 0.1131 +0 0.0906 +0 0.0496 +0 0.2056 +0 0.0722 +0 0.3357 +0 0.3451 +0 0.1693 +0 0.0809 +0 0.0690 +0 0.1063 +0 0.0782 +0 0.0546 +0 0.1087 +0 0.2361 +0 0.0788 +0 0.0615 +0 0.2378 +0 0.2285 +1 0.5642 +0 0.0450 +0 0.7061 +0 0.0996 +0 0.7375 +0 0.0586 +0 0.0407 +0 0.0844 +0 0.0572 +0 0.1281 +0 0.0437 +0 0.2298 +0 0.1628 +0 0.0705 +0 0.1693 +0 0.1119 +0 0.0544 +0 0.1115 +0 0.0963 +0 0.1431 +0 0.0483 +0 0.1141 +0 0.0377 +0 0.1023 +0 0.1342 +0 0.3171 +0 0.0960 +0 0.0758 +0 0.0520 +0 0.1050 +0 0.2129 +0 0.0662 +0 0.1174 +0 0.0874 +0 0.0924 +0 0.2471 +0 0.2042 +0 0.2286 +0 0.0782 +0 0.1646 +0 0.1479 +0 0.5436 +0 0.0828 +0 0.0722 +0 0.2778 +0 0.1734 +0 0.2861 +0 0.0893 +0 0.0840 +0 0.2012 +0 0.1020 +0 0.0752 +0 0.1721 +0 0.0471 +0 0.3023 +0 0.1251 +0 0.2123 +0 0.0784 +0 0.1973 +0 0.0785 +0 0.3489 +0 0.1375 +0 0.1629 +0 0.0608 +0 0.2175 +0 0.1330 +0 0.0415 +0 0.1580 +0 0.0825 +0 0.0481 +0 0.2994 +0 0.0944 +0 0.4961 +0 0.1533 +0 0.0678 +0 0.1053 +0 0.0515 +0 0.1064 +0 0.0781 +0 0.0909 +0 0.2393 +0 0.0902 +0 0.0864 +0 0.0757 +0 0.2460 +0 0.1153 +0 0.0730 +0 0.6608 +0 0.1645 +0 0.2161 +0 0.1430 +0 0.2951 +0 0.2954 +0 0.1940 +0 0.4568 +0 0.0826 +0 0.1113 +0 0.0959 +0 0.0879 +0 0.1838 +0 0.0666 +0 0.0682 +0 0.1666 +0 0.1105 +0 0.1061 +0 0.0840 +0 0.2077 +0 0.1545 +0 0.1134 +0 0.1879 +0 0.0530 +0 0.1846 +0 0.1425 +0 0.2165 +0 0.0442 +0 0.4415 +0 0.0613 +0 0.0499 +0 0.1736 +0 0.1212 +0 0.1125 +0 0.1736 +0 0.1131 +0 0.0996 +0 0.0545 +0 0.0941 +0 0.1624 +0 0.0555 +0 0.0861 +0 0.0536 +0 0.4125 +0 0.0788 +0 0.3228 +0 0.0650 +0 0.0581 +0 0.7264 +0 0.2880 +0 0.0634 +0 0.0711 +0 0.2338 +0 0.0902 +0 0.0887 +0 0.0955 +1 0.7614 +0 0.1117 +0 0.1544 +0 0.0668 +0 0.1107 +0 0.1802 +0 0.2443 +0 0.0689 +0 0.0706 +0 0.1270 +0 0.1135 +0 0.0715 +0 0.2707 +0 0.1238 +0 0.1653 +0 0.0304 +0 0.1201 +0 0.3821 +0 0.1979 +0 0.0915 +0 0.5641 +0 0.0585 +0 0.1844 +0 0.2065 +0 0.0703 +0 0.1330 +0 0.0869 +0 0.0622 +0 0.0879 +0 0.0493 +0 0.0501 +0 0.1315 +0 0.1016 +0 0.6273 +1 0.7705 +0 0.0674 +0 0.0939 +0 0.1126 +0 0.2085 +0 0.0635 +0 0.4632 +0 0.0686 +0 0.1933 +0 0.0646 +0 0.0454 +0 0.1215 +0 0.2056 +0 0.0803 +0 0.1128 +0 0.0863 +0 0.0613 +0 0.1410 +0 0.0298 +0 0.1101 +0 0.0890 +0 0.0633 +0 0.1518 +0 0.4041 +0 0.0646 +0 0.1618 +0 0.0967 +0 0.1184 +0 0.1276 +0 0.0831 +0 0.0573 +0 0.0563 +0 0.4617 +0 0.1088 +0 0.2487 +0 0.1165 +0 0.0556 +0 0.0899 +0 0.0912 +0 0.0959 +0 0.0988 +0 0.1468 +0 0.1097 +0 0.0947 +0 0.0540 +0 0.0883 +0 0.1281 +0 0.0752 +0 0.4563 +0 0.2515 +0 0.0564 +0 0.0532 +0 0.0964 +0 0.0941 +0 0.0727 +0 0.0899 +0 0.1267 +0 0.1506 +0 0.2811 +1 0.8125 +0 0.0635 +0 0.0678 +0 0.3825 +0 0.1494 +0 0.1041 +0 0.0906 +0 0.2660 +0 0.0929 +0 0.0358 +0 0.0707 +0 0.1273 +0 0.2092 +0 0.0872 +0 0.1342 +0 0.0774 +0 0.0511 +0 0.1028 +0 0.0463 +0 0.0743 +0 0.0340 +0 0.0822 +0 0.0768 +0 0.0503 +0 0.1131 +0 0.2431 +0 0.1141 +0 0.2608 +0 0.0509 +0 0.0997 +0 0.0660 +0 0.0534 +0 0.1550 +0 0.1117 +0 0.2662 +0 0.7031 +0 0.0703 +0 0.2168 +0 0.0786 +1 0.8088 +0 0.2049 +0 0.1562 +0 0.2982 +0 0.0848 +0 0.4140 +0 0.1647 +0 0.1745 +0 0.3510 +0 0.0490 +0 0.0505 +0 0.0441 +0 0.0905 +0 0.3395 +0 0.5696 +1 0.8307 +0 0.1647 +0 0.0632 +0 0.1168 +0 0.0676 +0 0.0656 +0 0.2027 +0 0.1671 +0 0.0638 +0 0.2260 +0 0.2166 +0 0.1063 +0 0.0992 +0 0.2582 +0 0.0394 +0 0.0619 +0 0.0496 +0 0.1379 +0 0.0681 +0 0.1648 +0 0.1006 +0 0.0561 +0 0.0287 +0 0.0696 +0 0.2278 +0 0.1343 +0 0.5141 +0 0.0536 +0 0.0518 +0 0.0952 +0 0.1276 +0 0.3656 +0 0.1189 +0 0.1159 +0 0.0692 +0 0.0625 +0 0.1778 +0 0.1897 +0 0.1117 +0 0.2248 +0 0.0742 +0 0.0669 +0 0.0497 +0 0.1027 +0 0.1056 +0 0.1075 +0 0.1145 +0 0.1576 +0 0.0534 +0 0.1428 +0 0.0512 +0 0.2012 +0 0.1029 +0 0.1166 +0 0.0603 +0 0.1201 +1 0.8988 +0 0.0808 +0 0.2031 +0 0.0404 +0 0.2042 +0 0.1133 +0 0.1171 +0 0.3115 +0 0.1020 +0 0.1102 +0 0.0481 +0 0.0866 +0 0.0856 +0 0.1151 +0 0.0828 +0 0.1351 +0 0.0869 +0 0.0817 +0 0.0605 +0 0.3406 +0 0.2477 +0 0.0734 +0 0.0784 +0 0.0799 +0 0.1107 +0 0.1746 +0 0.1004 +0 0.4057 +0 0.1481 +0 0.1493 +0 0.1026 +0 0.0657 +0 0.1114 +0 0.0401 +0 0.1655 +0 0.0931 +0 0.0550 +0 0.0874 +0 0.1790 +0 0.0782 +0 0.0484 +0 0.0992 +0 0.1033 +0 0.0591 +0 0.0631 +0 0.0405 +0 0.1050 +0 0.0832 +0 0.3558 +0 0.0926 +0 0.4260 +0 0.1137 +0 0.0988 +0 0.0973 +0 0.0875 +0 0.1140 +0 0.1002 +0 0.1267 +0 0.0845 +0 0.0697 +0 0.1716 +0 0.0970 +0 0.1690 +0 0.0798 +0 0.0737 +0 0.0341 +0 0.1464 +0 0.1554 +0 0.0892 +0 0.0785 +0 0.1389 +0 0.1888 +0 0.2321 +0 0.1145 +0 0.1431 +0 0.0656 +0 0.0616 +0 0.1045 +0 0.1440 +0 0.1221 +0 0.1206 +0 0.0566 +0 0.2030 +0 0.2151 +0 0.2329 +0 0.0832 +0 0.2225 +0 0.1379 +0 0.2040 +0 0.1125 +0 0.1738 +0 0.1088 +0 0.5950 +0 0.2262 +0 0.0442 +0 0.5108 +0 0.1748 +0 0.1407 +0 0.1840 +0 0.1384 +0 0.1733 +0 0.0772 +0 0.1051 +0 0.0989 +0 0.0644 +0 0.1402 +0 0.2514 +0 0.1292 +0 0.0815 +0 0.0720 +0 0.1699 +0 0.1650 +0 0.0632 +0 0.2409 +0 0.1563 +0 0.1625 +0 0.0598 +0 0.0674 +0 0.1815 +0 0.0744 +0 0.2770 +0 0.1401 +0 0.0505 +0 0.0416 +0 0.0787 +0 0.0805 +0 0.0416 +0 0.0700 +0 0.1908 +0 0.1860 +0 0.0592 +0 0.1378 +0 0.0804 +0 0.0561 +0 0.2449 +0 0.5846 +0 0.0432 +0 0.6020 +0 0.0686 +0 0.1023 +0 0.0772 +0 0.0451 +0 0.0696 +0 0.0704 +0 0.1484 +0 0.1441 +0 0.4376 +0 0.1248 +0 0.1303 +0 0.1702 +1 0.7599 +0 0.0524 +0 0.1407 +0 0.1196 +0 0.0476 +0 0.1289 +0 0.1064 +0 0.0759 +0 0.0477 +0 0.3320 +0 0.1357 +0 0.0650 +0 0.4819 +0 0.1576 +0 0.1015 +0 0.7283 +0 0.2202 +0 0.0991 +0 0.2446 +0 0.1019 +0 0.1072 +0 0.1203 +0 0.1042 +0 0.1018 +0 0.0660 +0 0.0880 +0 0.0377 +0 0.1610 +0 0.0867 +0 0.2102 +0 0.2497 +0 0.1812 +0 0.1515 +0 0.0579 +0 0.0664 +0 0.0829 +1 0.8746 +0 0.0447 +0 0.1016 +0 0.1061 +0 0.1223 +0 0.1269 +0 0.0845 +0 0.1088 +0 0.1691 +0 0.1176 +0 0.1037 +0 0.3403 +0 0.0961 +0 0.0861 +0 0.0756 +0 0.0750 +0 0.0829 +0 0.1445 +0 0.1103 +0 0.1003 +0 0.0885 +0 0.1096 +0 0.0670 +0 0.4740 +0 0.1059 +0 0.6448 +0 0.0704 +0 0.1628 +0 0.0534 +0 0.0878 +0 0.1257 +0 0.1540 +0 0.1085 +0 0.0958 +0 0.0806 +0 0.1124 +1 0.8335 +0 0.0472 +0 0.1012 +0 0.2632 +0 0.1342 +0 0.0469 +1 0.4295 +0 0.0898 +0 0.0449 +0 0.0892 +0 0.1173 +0 0.1258 +0 0.0675 +0 0.0686 +0 0.2008 +0 0.1509 +0 0.0650 +0 0.0506 +0 0.1179 +0 0.1343 +0 0.7302 +0 0.2368 +0 0.0668 +0 0.1635 +0 0.0954 +0 0.0829 +0 0.1329 +0 0.3216 +0 0.0757 +0 0.2545 +0 0.4662 +0 0.0883 +0 0.1017 +0 0.0423 +0 0.0831 +0 0.1227 +0 0.1007 +0 0.0855 +0 0.0700 +0 0.0857 +0 0.1082 +0 0.1542 +0 0.0473 +0 0.3350 +0 0.0760 +0 0.2054 +0 0.2763 +0 0.0636 +0 0.2004 +0 0.0869 +0 0.1255 +0 0.0717 +0 0.0752 +0 0.1808 +0 0.1177 +0 0.1324 +0 0.0551 +0 0.1466 +0 0.0608 +0 0.1481 +0 0.0607 +0 0.0699 +0 0.2305 +0 0.1783 +0 0.0396 +0 0.0890 +0 0.1040 +0 0.2788 +0 0.6331 +0 0.0694 +0 0.2173 +0 0.1599 +0 0.0792 +0 0.0912 +0 0.1308 +0 0.0706 +0 0.0755 +0 0.0654 +0 0.0817 +0 0.3503 +0 0.0752 +0 0.1772 +0 0.1161 +0 0.0355 +0 0.1875 +0 0.0945 +0 0.1582 +0 0.0989 +0 0.1129 +0 0.5970 +0 0.1109 +0 0.0689 +0 0.2851 +0 0.0917 +0 0.3008 +0 0.1459 +0 0.1396 +0 0.1036 +0 0.2350 +0 0.0771 +0 0.0677 +0 0.1136 +0 0.0958 +0 0.1119 +0 0.3759 +0 0.1368 +0 0.0694 +0 0.0664 +0 0.0744 +0 0.1289 +0 0.0963 +0 0.0626 +0 0.1192 +0 0.2025 +0 0.2898 +0 0.1611 +0 0.0704 +0 0.0827 +0 0.0749 +0 0.0790 +0 0.2016 +0 0.1226 +0 0.4179 +0 0.4047 +0 0.0749 +0 0.0653 +0 0.0920 +0 0.1607 +0 0.3974 +0 0.2358 +0 0.0756 +0 0.1931 +0 0.1567 +0 0.0956 +0 0.2082 +0 0.1731 +0 0.0800 +0 0.0744 +0 0.2170 +0 0.0737 +0 0.0586 +0 0.1229 +0 0.1300 +0 0.0534 +0 0.0388 +0 0.1153 +0 0.0731 +0 0.0916 +0 0.1490 +0 0.2223 +0 0.1451 +0 0.1970 +0 0.0655 +0 0.1985 +0 0.1255 +0 0.0527 +0 0.2125 +0 0.1441 +0 0.2406 +0 0.0411 +0 0.1218 +0 0.0744 +0 0.1249 +0 0.2498 +0 0.2278 +0 0.0648 +0 0.1927 +0 0.2473 +0 0.1045 +0 0.0768 +1 0.7967 +0 0.0767 +0 0.2018 +0 0.0832 +0 0.0806 +0 0.4110 +0 0.1212 +0 0.1106 +0 0.1623 +0 0.0799 +0 0.0951 +0 0.0943 +0 0.0431 +0 0.0316 +0 0.0923 +0 0.1575 +0 0.0846 +0 0.0502 +0 0.1095 +0 0.3903 +0 0.0876 +0 0.0515 +0 0.7041 +0 0.1067 +0 0.0978 +0 0.2267 +0 0.0579 +0 0.1871 +0 0.1170 +0 0.0749 +0 0.1703 +0 0.0471 +0 0.1632 +0 0.0481 +0 0.3735 +0 0.1470 +0 0.1083 +0 0.1015 +0 0.2030 +0 0.2431 +0 0.0687 +0 0.0326 +0 0.1606 +0 0.2184 +0 0.1936 +0 0.0780 +0 0.2442 +0 0.1532 +0 0.2322 +0 0.0856 +0 0.1670 +0 0.0960 +0 0.0549 +0 0.2545 +0 0.1090 +0 0.0854 +0 0.0514 +0 0.0949 +0 0.1055 +0 0.0797 +0 0.1082 +0 0.1019 +0 0.1119 +0 0.0480 +0 0.1442 +0 0.5617 +0 0.1067 +0 0.0666 +0 0.0674 +0 0.0807 +0 0.0697 +0 0.3017 +0 0.1300 +0 0.0748 +0 0.0596 +0 0.0337 +0 0.0703 +0 0.0717 +0 0.0536 +0 0.0988 +0 0.1011 +0 0.0972 +0 0.0546 +0 0.3939 +0 0.1797 +1 0.7603 +0 0.0831 +0 0.1283 +0 0.0962 +0 0.0427 +0 0.1416 +0 0.0945 +0 0.0700 +1 0.8012 +0 0.3999 +0 0.2893 +0 0.1933 +0 0.0912 +0 0.1927 +0 0.0460 +0 0.1147 +0 0.0789 +0 0.0706 +0 0.0948 +1 0.8001 +0 0.1065 +0 0.0412 +0 0.0639 +0 0.0701 +0 0.2251 +0 0.0816 +0 0.0816 +0 0.0407 +0 0.1087 +0 0.0499 +0 0.0725 +0 0.1343 +0 0.3627 +0 0.1434 +0 0.1029 +0 0.0724 +0 0.1098 +0 0.1683 +0 0.0564 +0 0.0824 +0 0.2316 +0 0.2106 +0 0.1231 +0 0.1083 +0 0.0845 +0 0.0898 +0 0.1324 +0 0.0735 +0 0.0825 +0 0.0764 +0 0.0702 +0 0.1338 +0 0.1200 +0 0.1730 +0 0.0474 +0 0.1214 +0 0.0670 +0 0.2452 +0 0.0810 +0 0.3754 +0 0.0693 +0 0.5621 +0 0.1099 +0 0.0916 +0 0.1136 +0 0.0577 +0 0.0967 +0 0.0642 +0 0.1139 +0 0.0785 +0 0.1010 +0 0.0920 +0 0.1342 +0 0.0476 +0 0.4553 +0 0.1493 +0 0.0938 +0 0.0849 +0 0.0523 +0 0.1257 +0 0.0456 +0 0.0959 +0 0.0673 +0 0.1026 +0 0.0796 +0 0.0781 +0 0.3383 +0 0.2716 +0 0.0495 +0 0.1258 +0 0.4570 +0 0.0450 +0 0.1024 +0 0.2921 +0 0.1098 +0 0.0867 +0 0.0683 +0 0.1546 +0 0.1352 +0 0.1869 +0 0.1243 +0 0.2963 +0 0.0390 +0 0.1431 +0 0.0601 +0 0.0788 +0 0.1128 +0 0.0949 +0 0.0565 +0 0.0504 +0 0.2739 +0 0.0624 +0 0.0966 +0 0.2991 +0 0.0729 +0 0.1764 +0 0.0891 +0 0.0765 +0 0.1886 +0 0.2132 +0 0.1174 +0 0.0638 +0 0.4088 +0 0.2020 +0 0.1362 +0 0.3205 +0 0.0486 +0 0.1196 +0 0.1156 +0 0.0555 +0 0.1082 +0 0.1213 +1 0.8558 +0 0.1333 +0 0.1732 +0 0.0991 +0 0.0895 +0 0.1038 +0 0.1777 +0 0.0780 +0 0.2116 +0 0.0693 +0 0.0897 +0 0.7148 +0 0.0621 +0 0.0552 +0 0.2480 +0 0.0825 +0 0.2235 +0 0.0689 +0 0.1768 +1 0.8545 +0 0.0450 +0 0.0661 +0 0.0689 +0 0.1322 +0 0.0928 +0 0.1184 +0 0.0490 +0 0.1923 +0 0.2956 +0 0.0753 +0 0.1353 +0 0.1137 +0 0.2924 +0 0.0464 +0 0.0764 +0 0.0625 +0 0.1973 +0 0.1367 +0 0.0759 +0 0.0869 +0 0.0316 +0 0.1300 +0 0.6052 +0 0.0677 +0 0.0532 +0 0.0852 +0 0.2332 +0 0.0778 +0 0.6803 +0 0.1184 +0 0.6672 +0 0.0349 +0 0.0553 +0 0.2799 +0 0.1088 +0 0.0723 +0 0.0780 +0 0.5600 +0 0.0507 +0 0.1464 +0 0.3073 +0 0.1923 +0 0.0603 +0 0.1365 +0 0.0893 +0 0.2166 +0 0.3434 +0 0.0905 +0 0.0583 +0 0.1089 +1 0.8358 +0 0.1620 +0 0.1718 +0 0.1357 +0 0.0614 +0 0.0879 +0 0.0674 +0 0.6849 +0 0.0719 +1 0.8229 +0 0.4212 +0 0.3561 +0 0.1106 +0 0.1173 +0 0.0821 +0 0.1548 +0 0.2029 +0 0.0719 +0 0.0847 +0 0.0774 +0 0.0755 +0 0.0775 +0 0.0694 +0 0.1120 +0 0.0975 +0 0.0480 +0 0.3661 +0 0.0709 +0 0.2517 +0 0.0360 +0 0.0906 +0 0.4943 +0 0.1598 +0 0.0765 +0 0.1395 +0 0.1144 +0 0.0452 +0 0.1049 +0 0.5824 +0 0.1099 +0 0.0497 +0 0.0712 +0 0.0815 +0 0.0769 +0 0.1777 +0 0.1553 +0 0.0651 +0 0.1171 +0 0.0712 +0 0.0526 +0 0.1622 +0 0.1476 +0 0.0604 +1 0.8151 +0 0.0858 +0 0.4270 +0 0.1184 +0 0.0429 +0 0.6573 +0 0.0989 +0 0.5653 +0 0.1740 +0 0.0474 +0 0.1226 +0 0.1918 +0 0.0801 +0 0.1052 +0 0.0613 +0 0.0634 +0 0.1439 +0 0.0737 +0 0.0740 +0 0.0738 +0 0.1210 +0 0.1988 +0 0.0382 +0 0.1138 +0 0.1661 +0 0.2524 +0 0.3714 +0 0.1218 +0 0.4725 +0 0.0667 +0 0.0934 +0 0.0871 +0 0.1885 +0 0.1231 +0 0.0875 +0 0.0735 +0 0.3957 +1 0.7769 +0 0.1029 +0 0.3177 +0 0.1051 +0 0.0324 +0 0.0826 +0 0.0663 +0 0.1640 +0 0.0769 +0 0.0881 +0 0.0705 +0 0.1289 +0 0.1332 +0 0.1347 +0 0.0551 +0 0.0942 +0 0.3624 +0 0.0780 +0 0.0497 +0 0.1185 +0 0.3471 +0 0.0735 +0 0.0922 +0 0.0693 +0 0.2169 +0 0.0756 +0 0.1709 +0 0.0905 +0 0.0881 +0 0.0843 +0 0.2615 +0 0.1049 +0 0.1694 +0 0.0413 +0 0.0817 +0 0.0882 +0 0.0471 +0 0.1916 +0 0.0938 +0 0.0580 +0 0.1727 +0 0.3556 +0 0.0704 +0 0.1562 +0 0.0862 +0 0.1044 +0 0.0967 +0 0.0813 +0 0.1070 +0 0.0490 +0 0.0633 +1 0.7635 +0 0.1299 +0 0.3209 +0 0.1250 +0 0.0579 +0 0.1172 +0 0.0824 +0 0.0683 +0 0.1228 +0 0.0410 +0 0.1727 +0 0.0636 +0 0.0610 +0 0.0342 +0 0.3574 +0 0.1138 +0 0.1148 +0 0.1868 +0 0.1369 +0 0.0606 +0 0.1238 +0 0.1934 +0 0.0871 +0 0.4460 +0 0.0858 +0 0.1221 +0 0.0841 +0 0.0846 +0 0.2239 +0 0.1235 +0 0.1388 +0 0.0548 +0 0.3477 +0 0.0816 +0 0.2210 +0 0.1254 +0 0.0689 +0 0.1090 +0 0.1576 +0 0.0336 +0 0.0921 +0 0.0770 +0 0.1795 +0 0.1175 +0 0.0692 +0 0.1399 +0 0.1445 +0 0.0839 +0 0.2554 +0 0.1087 +0 0.1377 +0 0.1619 +0 0.0557 +0 0.2105 +0 0.2730 +0 0.0748 +0 0.1765 +0 0.0957 +0 0.1316 +0 0.0964 +0 0.1252 +0 0.0719 +0 0.1321 +0 0.0702 +0 0.1401 +0 0.1728 +0 0.0557 +0 0.1224 +0 0.1525 +0 0.0893 +0 0.1058 +0 0.0652 +0 0.0600 +0 0.0628 +0 0.1340 +0 0.1570 +0 0.1739 +0 0.0849 +0 0.1243 +0 0.0640 +0 0.1542 +0 0.1151 +0 0.2089 +0 0.1778 +0 0.0885 +0 0.5025 +0 0.1942 +0 0.1487 +0 0.2492 +0 0.2750 +1 0.7818 +0 0.2437 +0 0.0788 +0 0.2108 +0 0.0453 +0 0.1359 +0 0.1457 +0 0.0590 +0 0.0656 +0 0.0519 +0 0.1032 +0 0.1325 +0 0.1084 +0 0.1402 +0 0.0399 +0 0.1410 +0 0.0650 +1 0.9021 +0 0.0969 +0 0.1194 +0 0.1392 +0 0.0408 +0 0.0770 +0 0.0409 +0 0.0700 +0 0.4944 +0 0.0478 +0 0.1670 +0 0.1131 +0 0.2689 +0 0.1563 +0 0.0709 +0 0.1856 +0 0.0953 +0 0.1033 +0 0.1837 +0 0.0690 +0 0.2787 +0 0.1522 +0 0.0902 +1 0.7674 +0 0.1604 +0 0.0947 +0 0.0556 +0 0.0985 +0 0.1200 +0 0.0589 +0 0.0706 +0 0.0822 +0 0.1590 +0 0.2501 +0 0.5682 +0 0.0738 +0 0.1716 +0 0.1338 +0 0.0618 +0 0.0719 +0 0.0626 +0 0.1282 +0 0.0712 +0 0.0564 +0 0.2083 +0 0.1681 +0 0.0928 +0 0.1551 +0 0.0768 +0 0.1136 +0 0.1764 +0 0.1426 +0 0.1426 +0 0.2154 +0 0.0672 +0 0.1504 +0 0.1086 +0 0.2005 +0 0.0423 +0 0.0752 +0 0.2600 +0 0.0842 +0 0.3875 +0 0.2981 +0 0.1418 +0 0.0678 +0 0.3082 +0 0.1703 +0 0.3898 +0 0.2827 +0 0.0955 +0 0.0915 +0 0.1990 +0 0.1164 +0 0.0757 +0 0.0921 +0 0.1988 +0 0.2628 +0 0.0806 +0 0.0697 +0 0.1504 +0 0.1066 +0 0.0888 +0 0.0893 +0 0.0552 +0 0.1421 +0 0.0488 +0 0.1660 +0 0.1070 +0 0.2955 +0 0.1092 +0 0.3846 +0 0.1033 +0 0.1704 +0 0.0702 +0 0.0628 +0 0.3231 +0 0.2159 +0 0.2832 +0 0.0822 +0 0.0693 +0 0.1437 +0 0.0531 +0 0.3666 +0 0.2093 +0 0.1920 +0 0.0564 +0 0.2057 +0 0.0361 +0 0.1309 +0 0.0822 +0 0.3607 +0 0.0857 +0 0.1572 +0 0.0656 +0 0.0595 +0 0.0376 +0 0.2069 +0 0.0791 +0 0.1220 +0 0.1209 +0 0.1725 +0 0.1704 +0 0.1867 +0 0.1118 +0 0.2100 +0 0.0861 +0 0.0781 +0 0.3800 +0 0.0706 +0 0.7470 +0 0.1521 +0 0.0812 +0 0.0699 +0 0.1104 +0 0.1704 +0 0.1078 +0 0.0581 +0 0.2118 +0 0.1291 +0 0.1115 +1 0.8058 +0 0.1868 +0 0.1135 +0 0.1885 +0 0.2963 +0 0.0702 +0 0.0883 +0 0.0503 +0 0.6452 +0 0.0974 +0 0.0823 +0 0.0629 +0 0.1012 +0 0.1350 +0 0.0725 +0 0.0542 +0 0.2117 +0 0.0764 +0 0.0820 +0 0.1547 +0 0.0851 +0 0.1006 +0 0.7477 +0 0.0937 +0 0.1269 +0 0.0878 +0 0.0995 +0 0.0960 +0 0.1238 +0 0.0653 +0 0.0341 +0 0.0561 +0 0.4649 +0 0.2079 +0 0.0542 +0 0.1522 +0 0.0688 +0 0.1417 +0 0.0880 +0 0.7146 +0 0.0816 +0 0.0812 +0 0.0923 +0 0.0736 +0 0.1509 +0 0.3320 +0 0.7166 +0 0.1863 +0 0.6587 +0 0.1247 +0 0.0773 +0 0.0701 +0 0.3773 +0 0.1301 +0 0.0904 +0 0.3012 +0 0.2174 +0 0.3618 +0 0.2253 +0 0.0759 +0 0.1270 +0 0.2523 +0 0.0974 +0 0.0425 +0 0.0468 +0 0.0542 +0 0.1672 +0 0.1785 +0 0.0502 +0 0.1018 +0 0.0626 +0 0.0852 +0 0.0534 +0 0.0805 +0 0.2387 +0 0.0687 +0 0.1070 +0 0.2723 +0 0.1178 +0 0.1167 +0 0.1599 +0 0.4928 +0 0.0610 +0 0.0365 +0 0.1182 +0 0.7470 +0 0.2522 +0 0.0533 +0 0.0591 +0 0.0793 +1 0.8314 +0 0.0558 +0 0.1234 +0 0.0861 +0 0.0688 +0 0.0582 +0 0.0665 +0 0.1403 +0 0.2855 +0 0.1161 +0 0.5851 +0 0.1600 +0 0.0986 +0 0.1094 +0 0.0549 +0 0.0951 +0 0.0560 +0 0.0667 +0 0.0757 +0 0.0509 +0 0.1120 +0 0.0558 +0 0.0656 +0 0.2207 +0 0.1191 +0 0.2599 +0 0.1505 +0 0.1178 +0 0.2288 +0 0.0945 +0 0.0455 +0 0.1022 +0 0.2183 +0 0.0413 +0 0.1261 +0 0.1041 +0 0.2210 +0 0.0878 +0 0.1359 +0 0.0602 +0 0.2475 +0 0.0851 +0 0.1052 +0 0.0954 +0 0.2166 +0 0.1437 +0 0.0803 +0 0.2238 +0 0.1048 +0 0.0828 +0 0.0419 +0 0.1820 +0 0.0738 +0 0.0516 +0 0.2991 +0 0.0751 +0 0.0597 +0 0.1137 +0 0.1029 +0 0.0704 +0 0.1000 +0 0.1370 +0 0.0500 +0 0.6553 +0 0.0407 +0 0.2771 +0 0.0892 +0 0.1307 +0 0.0863 +0 0.0355 +0 0.1589 +0 0.0988 +0 0.1431 +0 0.0638 +0 0.0579 +0 0.2180 +0 0.1030 +0 0.1903 +0 0.1215 +0 0.1119 +0 0.1189 +0 0.5247 +0 0.0630 +0 0.1692 +0 0.3059 +0 0.0679 +0 0.0715 +0 0.0571 +0 0.2282 +0 0.5771 +0 0.2257 +0 0.2931 +0 0.3059 +0 0.2402 +0 0.0879 +0 0.0818 +0 0.1750 +0 0.0924 +0 0.0781 +0 0.2352 +0 0.1306 +0 0.1299 +0 0.0854 +0 0.1493 +0 0.0776 +0 0.2489 +0 0.1930 +0 0.2100 +0 0.1215 +0 0.0838 +0 0.0355 +0 0.2689 +0 0.1268 +0 0.1195 +0 0.1044 +0 0.1724 +0 0.2101 +0 0.0769 +0 0.0773 +0 0.0547 +0 0.0644 +0 0.1181 +0 0.1340 +0 0.0529 +0 0.1220 +0 0.1893 +0 0.1063 +0 0.2501 +0 0.0796 +0 0.0743 +0 0.0667 +0 0.3249 +0 0.1349 +1 0.7518 +0 0.0680 +0 0.0685 +0 0.1963 +0 0.1850 +0 0.1208 +0 0.0976 +0 0.1196 +0 0.0499 +0 0.0774 +0 0.0977 +0 0.1131 +0 0.1577 +0 0.0681 +0 0.0773 +0 0.0884 +0 0.0756 +0 0.1446 +0 0.0956 +0 0.0571 +0 0.2645 +0 0.0393 +0 0.1748 +0 0.2704 +0 0.0684 +0 0.0803 +0 0.0556 +0 0.2608 +0 0.0464 +0 0.0741 +0 0.1830 +0 0.1357 +0 0.0900 +0 0.6770 +0 0.0888 +0 0.0802 +0 0.0779 +0 0.5075 +0 0.1085 +0 0.1257 +0 0.1293 +0 0.4194 +0 0.0544 +0 0.1968 +0 0.0618 +0 0.1579 +0 0.1980 +0 0.1439 +1 0.8043 +0 0.0987 +0 0.1522 +0 0.1021 +0 0.5158 +0 0.0595 +0 0.5193 +0 0.1009 +0 0.0969 +0 0.1536 +0 0.0717 +0 0.0980 +1 0.7877 +0 0.1143 +0 0.1001 +0 0.2738 +0 0.0472 +0 0.0469 +0 0.6398 +0 0.1552 +0 0.1259 +0 0.0715 +0 0.1213 +0 0.1089 +0 0.0870 +0 0.1328 +0 0.5633 +0 0.0474 +0 0.0592 +0 0.1104 +0 0.2390 +0 0.1794 +0 0.2433 +0 0.1106 +0 0.0996 +0 0.1164 +0 0.0410 +0 0.2327 +0 0.0831 +0 0.4922 +0 0.2719 +0 0.0782 +0 0.1700 +0 0.0420 +0 0.1308 +0 0.0878 +0 0.2820 +0 0.0771 +0 0.0784 +0 0.0818 +0 0.2344 +0 0.3656 +0 0.1657 +1 0.2523 +1 0.8708 +0 0.0759 +0 0.0456 +0 0.1280 +0 0.0612 +0 0.0821 +1 0.9020 +0 0.0694 +0 0.0937 +0 0.0922 +0 0.0462 +0 0.0602 +0 0.1241 +0 0.0581 +0 0.0867 +0 0.0997 +0 0.0807 +0 0.0864 +0 0.0654 +0 0.5393 +0 0.2409 +0 0.0933 +0 0.0782 +0 0.0891 +0 0.0398 +0 0.0846 +0 0.0856 +0 0.0934 +0 0.5010 +0 0.0653 +0 0.1357 +0 0.0550 +0 0.1511 +0 0.0773 +0 0.2500 +0 0.1017 +0 0.5525 +0 0.1312 +1 0.8697 +0 0.1881 +0 0.0512 +0 0.1173 +0 0.2458 +0 0.3983 +0 0.2289 +0 0.1242 +0 0.0933 +0 0.7131 +0 0.0986 +0 0.0512 +0 0.5868 +0 0.0513 +0 0.0520 +0 0.1101 +0 0.1129 +0 0.4032 +0 0.0615 +0 0.1206 +0 0.0816 +0 0.0856 +0 0.2369 +0 0.0759 +0 0.1230 +0 0.1223 +0 0.2900 +0 0.0902 +0 0.0963 +0 0.0903 +0 0.1437 +0 0.1416 +0 0.2202 +0 0.1510 +0 0.1091 +0 0.0588 +0 0.1029 +0 0.1493 +0 0.2738 +0 0.0830 +0 0.1483 +0 0.0731 +0 0.2229 +1 0.8237 +0 0.0681 +0 0.1171 +0 0.2276 +0 0.0919 +0 0.1499 +0 0.1976 +0 0.0694 +1 0.8251 +0 0.3174 +0 0.0527 +0 0.0910 +0 0.0834 +0 0.0438 +0 0.1744 +0 0.0506 +0 0.0715 +0 0.0393 +0 0.4117 +0 0.2179 +0 0.0687 +0 0.0812 +0 0.0740 +0 0.2189 +0 0.1168 +0 0.1067 +0 0.1297 +0 0.0852 +0 0.1601 +0 0.0534 +0 0.0987 +0 0.0632 +0 0.2350 +0 0.0920 +0 0.1327 +0 0.1420 +0 0.0505 +0 0.0693 +0 0.1468 +0 0.2214 +0 0.0476 +0 0.0476 +0 0.0559 +0 0.0932 +0 0.0626 +0 0.0801 +0 0.0783 +0 0.1244 +0 0.4925 +0 0.0664 +0 0.0740 +0 0.0684 +0 0.1276 +0 0.0617 +0 0.1504 +0 0.0821 +0 0.0530 +0 0.1918 +0 0.0771 +0 0.1764 +0 0.1019 +0 0.1636 +0 0.0705 +0 0.0475 +0 0.1283 +0 0.0488 +0 0.0674 +0 0.0608 +0 0.1292 +0 0.2016 +0 0.0794 +0 0.2585 +0 0.0957 +0 0.1732 +0 0.0872 +0 0.0667 +0 0.0639 +0 0.1683 +0 0.0614 +0 0.1863 +0 0.1826 +0 0.1144 +0 0.1885 +0 0.0759 +0 0.2741 +1 0.8458 +0 0.2836 +0 0.1201 +0 0.1119 +0 0.2188 +0 0.1098 +0 0.3072 +0 0.3350 +0 0.1943 +0 0.1338 +0 0.1445 +0 0.1480 +1 0.8049 +0 0.0524 +1 0.7839 +0 0.0473 +0 0.0857 +0 0.0632 +0 0.1087 +0 0.2003 +0 0.1125 +0 0.0627 +0 0.1065 +0 0.1583 +1 0.8618 +0 0.1394 +0 0.2025 +0 0.1088 +0 0.1984 +0 0.0928 +0 0.1109 +0 0.0337 +0 0.0610 +0 0.3846 +0 0.1124 +0 0.1203 +0 0.0650 +0 0.1145 +0 0.1197 +0 0.5001 +0 0.0743 +0 0.0686 +0 0.1306 +0 0.4200 +0 0.3486 +0 0.0585 +0 0.1144 +0 0.1044 +0 0.2041 +0 0.0420 +0 0.0884 +0 0.1685 +0 0.1171 +0 0.0531 +0 0.5055 +0 0.0591 +0 0.0915 +0 0.1888 +0 0.2092 +0 0.1940 +0 0.0452 +0 0.1524 +0 0.1164 +0 0.1895 +0 0.0455 +0 0.0569 +0 0.0853 +0 0.2439 +0 0.0438 +0 0.0647 +0 0.2764 +0 0.1740 +0 0.1622 +0 0.2197 +0 0.0567 +1 0.8146 +0 0.0905 +0 0.5942 +0 0.0710 +0 0.1762 +0 0.1501 +0 0.0906 +0 0.0831 +0 0.1192 +0 0.0644 +0 0.1203 +0 0.0579 +0 0.1011 +0 0.1147 +0 0.0810 +0 0.0868 +0 0.1812 +0 0.1080 +0 0.1698 +0 0.0910 +0 0.2127 +0 0.0407 +0 0.3121 +0 0.1451 +0 0.0645 +0 0.1003 +0 0.1204 +0 0.1187 +0 0.0609 +0 0.0498 +0 0.3289 +0 0.1453 +0 0.1126 +0 0.1011 +0 0.1043 +0 0.0991 +0 0.1634 +0 0.0666 +0 0.0625 +0 0.0749 +0 0.1879 +0 0.0449 +0 0.0730 +0 0.2550 +0 0.1168 +0 0.0465 +0 0.0897 +0 0.0977 +0 0.0988 +0 0.0800 +0 0.2834 +0 0.1741 +0 0.0735 +0 0.4388 +0 0.1774 +0 0.0840 +0 0.0992 +0 0.1001 +0 0.1308 +0 0.2278 +0 0.2140 +0 0.1376 +0 0.4003 +0 0.1414 +0 0.0849 +0 0.0772 +0 0.1887 +0 0.1061 +0 0.1121 +0 0.0887 +0 0.0826 +0 0.0799 +0 0.0753 +0 0.0423 +0 0.0745 +0 0.2677 +0 0.0348 +0 0.0996 +0 0.0831 +0 0.0590 +0 0.1099 +0 0.2080 +0 0.3223 +0 0.0765 +0 0.0760 +0 0.0919 +0 0.1218 +0 0.3642 +0 0.0873 +0 0.1053 +0 0.1313 +0 0.0481 +0 0.0712 +0 0.1212 +0 0.4640 +0 0.1537 +0 0.3129 +0 0.2342 +0 0.0841 +0 0.0611 +0 0.0506 +0 0.0571 +0 0.6537 +0 0.1724 +0 0.0809 +0 0.1096 +0 0.1873 +0 0.4305 +0 0.2233 +0 0.0791 +0 0.0828 +0 0.0449 +0 0.1838 +0 0.0856 +0 0.1363 +0 0.0308 +0 0.0350 +0 0.2289 +0 0.0460 +0 0.1214 +0 0.1160 +0 0.0573 +0 0.0799 +0 0.1728 +0 0.1427 +0 0.1755 +0 0.1817 +0 0.0298 +0 0.2192 +0 0.0868 +0 0.0914 +0 0.0722 +0 0.0889 +0 0.1427 +0 0.2823 +0 0.1272 +0 0.0487 +0 0.0961 +0 0.0945 +0 0.1018 +0 0.2759 +0 0.1095 +0 0.0333 +0 0.5928 +0 0.1175 +0 0.1479 +0 0.1708 +0 0.1094 +0 0.1670 +0 0.1062 +0 0.3351 +0 0.0357 +0 0.0468 +0 0.6959 +0 0.0918 +0 0.1162 +0 0.1315 +0 0.0945 +0 0.0850 +0 0.2728 +0 0.1068 +0 0.2762 +0 0.0841 +0 0.0857 +0 0.2147 +0 0.0751 +0 0.0791 +0 0.0852 +0 0.0598 +0 0.1247 +0 0.0824 +0 0.0968 +0 0.1161 +0 0.0467 +0 0.0650 +0 0.2619 +0 0.2947 +0 0.1456 +0 0.1459 +0 0.1381 +0 0.0435 +0 0.0589 +0 0.0725 +0 0.1948 +0 0.1876 +0 0.0851 +0 0.7075 +0 0.1391 +0 0.0816 +0 0.0975 +0 0.1082 +0 0.1305 +0 0.1167 +0 0.0797 +0 0.0707 +0 0.1460 +0 0.1710 +0 0.2953 +0 0.2281 +0 0.0963 +0 0.0858 +0 0.1308 +0 0.7047 +0 0.1054 +0 0.3175 +0 0.1098 +0 0.1915 +0 0.0415 +0 0.0660 +0 0.2018 +0 0.0919 +0 0.0429 +0 0.1042 +0 0.0958 +0 0.1131 +0 0.0799 +0 0.1005 +0 0.1215 +0 0.0642 +0 0.0762 +0 0.3327 +0 0.1222 +0 0.0882 +0 0.1155 +0 0.0528 +0 0.3051 +0 0.0791 +0 0.1790 +0 0.0650 +0 0.0362 +0 0.1924 +0 0.2847 +0 0.0565 +0 0.1443 +0 0.0430 +0 0.1320 +0 0.0910 +0 0.0788 +1 0.7590 +0 0.1912 +0 0.1416 +0 0.0800 +0 0.1190 +0 0.3718 +0 0.0303 +0 0.1315 +0 0.1331 +0 0.0912 +0 0.1572 +0 0.1946 +0 0.1795 +0 0.0432 +0 0.1028 +0 0.2696 +0 0.0687 +0 0.1805 +0 0.1123 +0 0.2757 +0 0.0777 +0 0.1819 +0 0.1291 +0 0.5329 +0 0.1657 +0 0.3023 +0 0.1104 +0 0.0646 +0 0.4135 +0 0.1366 +0 0.1868 +0 0.1301 +0 0.1252 +0 0.1060 +0 0.3132 +0 0.2251 +0 0.0763 +0 0.3366 +0 0.4042 +0 0.0474 +0 0.1033 +0 0.0444 +0 0.3387 +0 0.1553 +0 0.6628 +0 0.0877 +0 0.0788 +0 0.1547 +0 0.0889 +0 0.1231 +0 0.4204 +0 0.1021 +0 0.0805 +0 0.5313 +0 0.0432 +0 0.0455 +0 0.1251 +0 0.0690 +0 0.1096 +0 0.1551 +0 0.1260 +0 0.0853 +0 0.3259 +0 0.1563 +0 0.1511 +0 0.1372 +0 0.0864 +0 0.0978 +0 0.0487 +0 0.2378 +0 0.0377 +0 0.1011 +0 0.1996 +0 0.1623 +0 0.1523 +0 0.0981 +0 0.1343 +0 0.0876 +0 0.0835 +0 0.0797 +0 0.1849 +0 0.1551 +0 0.0680 +0 0.1487 +0 0.0561 +0 0.1260 +0 0.1261 +0 0.0857 +0 0.0813 +0 0.1072 +0 0.3027 +0 0.3873 +0 0.1638 +0 0.1170 +0 0.0542 +0 0.1070 +0 0.0541 +0 0.0999 +0 0.4000 +0 0.2100 +0 0.0869 +0 0.0691 +0 0.0803 +0 0.1657 +0 0.4854 +0 0.1331 +0 0.0613 +0 0.1194 +0 0.1977 +0 0.0548 +0 0.0900 +0 0.1348 +0 0.0636 +0 0.0448 +0 0.1302 +0 0.0997 +0 0.1209 +0 0.1291 +0 0.0498 +0 0.1031 +0 0.0970 +0 0.0723 +0 0.0492 +0 0.0763 +0 0.0799 +0 0.0719 +0 0.1099 +0 0.3737 +0 0.1675 +0 0.2186 +0 0.0605 +0 0.2183 +0 0.0389 +0 0.1705 +0 0.0757 +0 0.1634 +0 0.2153 +0 0.0623 +0 0.4411 +0 0.1698 +0 0.0817 +0 0.0975 +0 0.1315 +0 0.0713 +0 0.5269 +0 0.1259 +0 0.0936 +0 0.0901 +0 0.1679 +0 0.0990 +1 0.8160 +0 0.0870 +0 0.0592 +0 0.0620 +0 0.0705 +0 0.1068 +0 0.2750 +0 0.1820 +0 0.2169 +0 0.1075 +0 0.1509 +0 0.1080 +0 0.2456 +0 0.0423 +0 0.2419 +0 0.1467 +0 0.0438 +0 0.3175 +0 0.1876 +0 0.1083 +0 0.0921 +0 0.4625 +0 0.0956 +0 0.1307 +0 0.0806 +0 0.0901 +0 0.0975 +0 0.1377 +0 0.0849 +0 0.1133 +0 0.1277 +0 0.0678 +0 0.0595 +0 0.0785 +0 0.0733 +0 0.1105 +0 0.0743 +0 0.0449 +0 0.0444 +0 0.0647 +0 0.1043 +0 0.1569 +0 0.0921 +0 0.1809 +0 0.1553 +0 0.0877 +0 0.1037 +0 0.1211 +0 0.1087 +0 0.1297 +0 0.6706 +0 0.0490 +0 0.1570 +0 0.1195 +0 0.0946 +0 0.0781 +0 0.0591 +0 0.0919 +0 0.1264 +0 0.2613 +0 0.4739 +0 0.0330 +0 0.0749 +0 0.2874 +0 0.1954 +0 0.1801 +0 0.0727 +0 0.1035 +0 0.1867 +0 0.0923 +0 0.0605 +0 0.2538 +0 0.0839 +0 0.1181 +0 0.0964 +0 0.0730 +0 0.0347 +1 0.8509 +0 0.2757 +0 0.1305 +0 0.1203 +0 0.2151 +0 0.3559 +0 0.0634 +0 0.1427 +0 0.0748 +0 0.0910 +0 0.0479 +0 0.0684 +0 0.1739 +0 0.1006 +0 0.3143 +0 0.2523 +0 0.1058 +0 0.1189 +0 0.1570 +0 0.0613 +0 0.0871 +0 0.0450 +0 0.2717 +0 0.0980 +0 0.1508 +0 0.0561 +0 0.1376 +0 0.0521 +0 0.0393 +0 0.0965 +0 0.1250 +0 0.0569 +0 0.1033 +0 0.1005 +0 0.0871 +0 0.0999 +0 0.0910 +0 0.0982 +0 0.0687 +0 0.0831 +0 0.0450 +0 0.1956 +0 0.0617 +0 0.1759 +0 0.0490 +0 0.1090 +0 0.0729 +0 0.0310 +0 0.1497 +0 0.1511 +0 0.0936 +0 0.1139 +0 0.0647 +0 0.0740 +0 0.2138 +1 0.8062 +0 0.2038 +0 0.0449 +0 0.2238 +0 0.0683 +0 0.0669 +0 0.1066 +0 0.0780 +0 0.0644 +0 0.0406 +0 0.1203 +0 0.1718 +0 0.0946 +0 0.1410 +0 0.4080 +0 0.0547 +0 0.0959 +0 0.2096 +0 0.0926 +0 0.0960 +0 0.3299 +0 0.0582 +0 0.0850 +0 0.6095 +0 0.1349 +0 0.1237 +0 0.1447 +0 0.1233 +0 0.0590 +0 0.1150 +0 0.0738 +0 0.0988 +0 0.0586 +0 0.3007 +0 0.4975 +0 0.1059 +0 0.1455 +0 0.0641 +0 0.1249 +0 0.1065 +0 0.0873 +0 0.6504 +0 0.0510 +0 0.1226 +0 0.0445 +0 0.0920 +0 0.1723 +0 0.2141 +0 0.1794 +0 0.1263 +0 0.0359 +0 0.1176 +0 0.1729 +0 0.0703 +0 0.0797 +0 0.1202 +0 0.0772 +0 0.0814 +0 0.1510 +0 0.1862 +0 0.1411 +0 0.0443 +0 0.1250 +0 0.7318 +0 0.2064 +0 0.0441 +0 0.4377 +0 0.0440 +0 0.0888 +0 0.0878 +0 0.3063 +0 0.0640 +0 0.3268 +0 0.0964 +0 0.0683 +0 0.2537 +0 0.1524 +0 0.0577 +0 0.0994 +0 0.1774 +0 0.0845 +0 0.1186 +0 0.0732 +0 0.1517 +0 0.0593 +0 0.1191 +0 0.5681 +1 0.8977 +1 0.8713 +0 0.2190 +0 0.0957 +0 0.1078 +0 0.0803 +0 0.1740 +0 0.0833 +0 0.0511 +0 0.0531 +0 0.1006 +0 0.1261 +0 0.0335 +0 0.0491 +0 0.1823 +0 0.3512 +0 0.2957 +0 0.2568 +0 0.1000 +0 0.0696 +0 0.0479 +0 0.0504 +0 0.0894 +0 0.1698 +0 0.1739 +0 0.0452 +0 0.0683 +0 0.0904 +0 0.2426 +0 0.2180 +0 0.2907 +0 0.0729 +0 0.2856 +0 0.0316 +0 0.0828 +1 0.8185 +0 0.2272 +0 0.5117 +0 0.0992 +0 0.0566 +0 0.0533 +0 0.0604 +0 0.1815 +0 0.0662 +0 0.1327 +0 0.0790 +0 0.0866 +0 0.1134 +0 0.1011 +0 0.1049 +0 0.1684 +0 0.1044 +0 0.1022 +0 0.0926 +0 0.0632 +0 0.4867 +0 0.2369 +0 0.0683 +0 0.4328 +0 0.1332 +0 0.1972 +0 0.2075 +0 0.0837 +0 0.0606 +0 0.0849 +0 0.0777 +0 0.1212 +0 0.0506 +0 0.0466 +1 0.8415 +0 0.2181 +0 0.1785 +0 0.1195 +0 0.0961 +0 0.0521 +0 0.0894 +0 0.0406 +0 0.0710 +0 0.1083 +0 0.0547 +0 0.0549 +0 0.0743 +0 0.1907 +0 0.1112 +0 0.2262 +0 0.1567 +1 0.8272 +0 0.6615 +0 0.0997 +0 0.1236 +0 0.1281 +0 0.0750 +0 0.0707 +0 0.0388 +0 0.1617 +0 0.2139 +0 0.2754 +0 0.2889 +0 0.1017 +0 0.1037 +0 0.0375 +0 0.0912 +0 0.0953 +0 0.0732 +0 0.1227 +0 0.0562 +0 0.0683 +0 0.0972 +0 0.0612 +0 0.1352 +0 0.0557 +0 0.1661 +0 0.2351 +0 0.0593 +0 0.0417 +0 0.2400 +0 0.1360 +0 0.0738 +0 0.0733 +0 0.2787 +0 0.0738 +0 0.0506 +0 0.0818 +0 0.3119 +0 0.1429 +0 0.0381 +0 0.1948 +0 0.1669 +0 0.0697 +0 0.2342 +0 0.1137 +0 0.0450 +0 0.0817 +0 0.1978 +0 0.0812 +0 0.2622 +0 0.1047 +0 0.1213 +0 0.1501 +0 0.1439 +0 0.0504 +0 0.0914 +0 0.0792 +0 0.1852 +0 0.1285 +0 0.3016 +0 0.0827 +0 0.2175 +0 0.0695 +0 0.7327 +0 0.1926 +0 0.0512 +0 0.0850 +0 0.2240 +0 0.0763 +0 0.1735 +0 0.1334 +0 0.0892 +0 0.0986 +0 0.1279 +0 0.0828 +0 0.7043 +0 0.3150 +0 0.0768 +0 0.2286 +0 0.1675 +0 0.1265 +0 0.4292 +0 0.1241 +0 0.0631 +0 0.0517 +0 0.0595 +0 0.1531 +0 0.1041 +0 0.1407 +0 0.1020 +0 0.0485 +0 0.0838 +0 0.0745 +0 0.0859 +0 0.0357 +0 0.0742 +0 0.0757 +0 0.5759 +0 0.0859 +0 0.1277 +0 0.1922 +0 0.0782 +0 0.0565 +0 0.0944 +0 0.2849 +0 0.3706 +0 0.0447 +0 0.1939 +0 0.1231 +0 0.0712 +0 0.4147 +0 0.0602 +0 0.3388 +0 0.2574 +0 0.1978 +0 0.0965 +0 0.0908 +0 0.0682 +0 0.0957 +0 0.0599 +0 0.0677 +0 0.1313 +0 0.0681 +0 0.0371 +0 0.0666 +0 0.1584 +0 0.1676 +0 0.0731 +0 0.1794 +0 0.0992 +0 0.1064 +0 0.1534 +0 0.0403 +0 0.1161 +0 0.1031 +0 0.0445 +0 0.0456 +0 0.0671 +0 0.1049 +0 0.1043 +0 0.0663 +0 0.1158 +0 0.1712 +0 0.2899 +0 0.0789 +0 0.1218 +0 0.1356 +0 0.1163 +0 0.0546 +0 0.0684 +0 0.0673 +0 0.2405 +0 0.1623 +0 0.1830 +0 0.2444 +0 0.0567 +0 0.0567 +0 0.0596 +0 0.0405 +0 0.6842 +0 0.1617 +0 0.0589 +0 0.0921 +0 0.1556 +0 0.0586 +0 0.1457 +0 0.1041 +0 0.1011 +0 0.0457 +0 0.0735 +0 0.0471 +0 0.3586 +0 0.0786 +0 0.0805 +0 0.1434 +0 0.2273 +0 0.0632 +0 0.1223 +0 0.2655 +0 0.1841 +0 0.0591 +0 0.1001 +0 0.0667 +0 0.1281 +0 0.0904 +0 0.3465 +0 0.0857 +0 0.6421 +0 0.2286 +0 0.1208 +0 0.1263 +0 0.0966 +0 0.4169 +0 0.1127 +0 0.0493 +0 0.0991 +0 0.1884 +0 0.2940 +0 0.1725 +0 0.1438 +0 0.0500 +0 0.0832 +0 0.0917 +0 0.1774 +0 0.0703 +0 0.2875 +0 0.0861 +0 0.1426 +0 0.1422 +0 0.0672 +0 0.2498 +0 0.0829 +0 0.0633 +0 0.0737 +0 0.2334 +0 0.0585 +0 0.0861 +0 0.3176 +0 0.1501 +0 0.0919 +0 0.0763 +0 0.0512 +0 0.6594 +0 0.0734 +1 0.7949 +0 0.0398 +0 0.0842 +0 0.0502 +0 0.1803 +0 0.0614 +0 0.1889 +0 0.1308 +0 0.0500 +0 0.2319 +0 0.0985 +0 0.1739 +0 0.0758 +0 0.1644 +0 0.1976 +0 0.0673 +0 0.1089 +0 0.1245 +0 0.1299 +0 0.0778 +0 0.0813 +0 0.1955 +0 0.0731 +0 0.0590 +0 0.1993 +0 0.0519 +0 0.1230 +0 0.0900 +0 0.1564 +0 0.2151 +0 0.1681 +0 0.2864 +0 0.0700 +1 0.8639 +0 0.1526 +0 0.0531 +0 0.0670 +0 0.1322 +0 0.0691 +0 0.0627 +0 0.1168 +0 0.1855 +0 0.0525 +0 0.4620 +0 0.2671 +0 0.2046 +0 0.0749 +0 0.1004 +0 0.0873 +0 0.1582 +0 0.0822 +0 0.0768 +0 0.0721 +0 0.1228 +0 0.3393 +0 0.1538 +0 0.0732 +0 0.0541 +0 0.0698 +0 0.0685 +0 0.1206 +0 0.1260 +0 0.1087 +0 0.0764 +0 0.2935 +0 0.0891 +0 0.0370 +0 0.1264 +0 0.0499 +0 0.0777 +0 0.1740 +0 0.0829 +0 0.0603 +0 0.1582 +0 0.1267 +0 0.1122 +0 0.0724 +0 0.2213 +0 0.1311 +0 0.1088 +0 0.1341 +0 0.1164 +0 0.1075 +0 0.0849 +0 0.0758 +0 0.0550 +0 0.2010 +0 0.3389 +0 0.2190 +0 0.0598 +1 0.8363 +0 0.0904 +0 0.0947 +0 0.0706 +0 0.0885 +0 0.1069 +0 0.0707 +0 0.2920 +0 0.2044 +0 0.1306 +0 0.0947 +0 0.0573 +0 0.0877 +0 0.1949 +0 0.0620 +0 0.0739 +0 0.0896 +1 0.8162 +1 0.7976 +0 0.1992 +0 0.0901 +0 0.2454 +0 0.0990 +0 0.1426 +0 0.0464 +0 0.2127 +0 0.1353 +0 0.3444 +0 0.2053 +0 0.2307 +0 0.1173 +0 0.1732 +0 0.1314 +0 0.1386 +0 0.1069 +0 0.0654 +0 0.0955 +0 0.0378 +0 0.0641 +0 0.1497 +0 0.0769 +0 0.0397 +0 0.2445 +0 0.0908 +0 0.0588 +0 0.2466 +0 0.0874 +0 0.0873 +0 0.0817 +0 0.1301 +0 0.1698 +0 0.1927 +0 0.1988 +0 0.1798 +0 0.2442 +0 0.1654 +0 0.7052 +0 0.2016 +0 0.0624 +0 0.0993 +0 0.0906 +0 0.1342 +0 0.0583 +0 0.0940 +0 0.2634 +0 0.0635 +0 0.1050 +0 0.0867 +0 0.3773 +0 0.0545 +0 0.1187 +0 0.0842 +0 0.2445 +0 0.1082 +0 0.1135 +0 0.7166 +0 0.6553 +0 0.5032 +0 0.0983 +0 0.0472 +0 0.0681 +0 0.1100 +0 0.2594 +0 0.1675 +0 0.1137 +0 0.0818 +0 0.4027 +0 0.1184 +0 0.0988 +0 0.6924 +0 0.0800 +0 0.0660 +0 0.2934 +0 0.1077 +0 0.0784 +0 0.0425 +0 0.0804 +0 0.0996 +0 0.1863 +0 0.0370 +1 0.7651 +0 0.2383 +0 0.1267 +0 0.0438 +0 0.0395 +0 0.1450 +0 0.0381 +0 0.0429 +0 0.2599 +0 0.2238 +0 0.1030 +0 0.6513 +0 0.2757 +0 0.1077 +0 0.0826 +0 0.6670 +0 0.0946 +0 0.0555 +0 0.1589 +0 0.2262 +0 0.1371 +0 0.1342 +0 0.0700 +0 0.0951 +0 0.0874 +0 0.1064 +0 0.1363 +0 0.1380 +0 0.1249 +0 0.0500 +0 0.2597 +0 0.1907 +0 0.0467 +0 0.1343 +0 0.0792 +0 0.0511 +0 0.0570 +0 0.1916 +0 0.0947 +0 0.0861 +0 0.0734 +0 0.0915 +0 0.0994 +0 0.1708 +0 0.0683 +0 0.0598 +0 0.0882 +0 0.0803 +1 0.8397 +0 0.2329 +0 0.0330 +0 0.1289 +0 0.1307 +0 0.0537 +0 0.0998 +0 0.1137 +0 0.0935 +0 0.0609 +0 0.0830 +0 0.0702 +0 0.1213 +0 0.3050 +0 0.1242 +0 0.0785 +0 0.0782 +0 0.0456 +1 0.8302 +0 0.0826 +0 0.6841 +0 0.0529 +0 0.1590 +0 0.0954 +0 0.2953 +0 0.0655 +0 0.1118 +0 0.1249 +0 0.4110 +0 0.2176 +0 0.2036 +0 0.0491 +0 0.2733 +0 0.4072 +0 0.2494 +0 0.1722 +0 0.2757 +0 0.0352 +0 0.0583 +0 0.0810 +0 0.0452 +0 0.2635 +0 0.2793 +0 0.0950 +0 0.0612 +0 0.3841 +0 0.1287 +0 0.0467 +0 0.0709 +0 0.2425 +0 0.1423 +0 0.1238 +0 0.1741 +0 0.2524 +0 0.3795 +0 0.4304 +0 0.1281 +0 0.1220 +0 0.2035 +0 0.1283 +0 0.1434 +0 0.0754 +0 0.2943 +0 0.0977 +0 0.0395 +0 0.1784 +0 0.0833 +0 0.1577 +0 0.0357 +0 0.1288 +0 0.1224 +0 0.1634 +0 0.1181 +0 0.0837 +0 0.0602 +0 0.1138 +0 0.1146 +0 0.0757 +0 0.1161 +0 0.0358 +0 0.0428 +0 0.1545 +0 0.0984 +0 0.1896 +0 0.0835 +0 0.0977 +0 0.3487 +0 0.0905 +0 0.3164 +0 0.0861 +0 0.0608 +0 0.2220 +0 0.0679 +0 0.1789 +0 0.2125 +0 0.0998 +0 0.0973 +0 0.1627 +0 0.1144 +0 0.0378 +0 0.2347 +0 0.0695 +0 0.1230 +0 0.1314 +0 0.0552 +0 0.1907 +0 0.0783 +0 0.0587 +0 0.1333 +0 0.1276 +0 0.2357 +0 0.1383 +0 0.1243 +0 0.1488 +1 0.8163 +0 0.1418 +0 0.1111 +0 0.0875 +0 0.2905 +0 0.0412 +0 0.1030 +0 0.0793 +0 0.1743 +0 0.3464 +0 0.0782 +0 0.6178 +0 0.1067 +0 0.0605 +0 0.0978 +0 0.0716 +0 0.1936 +0 0.1253 +0 0.0576 +1 0.8291 +0 0.2491 +0 0.2016 +0 0.0599 +0 0.1180 +0 0.1116 +0 0.0941 +0 0.1168 +0 0.1585 +0 0.0761 +0 0.0951 +0 0.0591 +0 0.0796 +0 0.0722 +0 0.0539 +0 0.0716 +0 0.0613 +0 0.0889 +1 0.8588 +0 0.6152 +0 0.1058 +0 0.6540 +0 0.1322 +0 0.1989 +0 0.0935 +0 0.1238 +0 0.1443 +0 0.0728 +0 0.0588 +0 0.1047 +0 0.2807 +0 0.1102 +0 0.2366 +0 0.1649 +0 0.0874 +0 0.1239 +0 0.0764 +0 0.0620 +0 0.3732 +0 0.0583 +1 0.8124 +0 0.0345 +0 0.0670 +0 0.0923 +0 0.1547 +0 0.3238 +0 0.0801 +0 0.2033 +0 0.1037 +0 0.2151 +0 0.0652 +0 0.0357 +0 0.1640 +0 0.0420 +0 0.1191 +0 0.1310 +0 0.0534 +0 0.3380 +0 0.1622 +0 0.1030 +0 0.2038 +0 0.4078 +0 0.0554 +0 0.1349 +0 0.1704 +0 0.1976 +0 0.0501 +0 0.0810 +0 0.0680 +0 0.3433 +0 0.0740 +0 0.0575 +0 0.0737 +0 0.1689 +0 0.1926 +0 0.1324 +0 0.1985 +0 0.1817 +0 0.0560 +0 0.0724 +0 0.0611 +0 0.0683 +0 0.0936 +0 0.0794 +0 0.0480 +0 0.1122 +0 0.1209 +0 0.0665 +0 0.1874 +0 0.1493 +0 0.1201 +0 0.1740 +0 0.0575 +0 0.0799 +0 0.0999 +0 0.3587 +0 0.1390 +0 0.1385 +0 0.0730 +0 0.7120 +0 0.0770 +0 0.0792 +0 0.0664 +0 0.0655 +0 0.0666 +0 0.1125 +0 0.0641 +0 0.1552 +0 0.1134 +0 0.1601 +0 0.3543 +0 0.0475 +0 0.2934 +0 0.0739 +0 0.0486 +0 0.1731 +0 0.0377 +0 0.1179 +0 0.0822 +0 0.1291 +0 0.0626 +0 0.0542 +0 0.3797 +0 0.1016 +0 0.0486 +0 0.2352 +0 0.2203 +0 0.1149 +0 0.5720 +0 0.0402 +0 0.2301 +1 0.7746 +0 0.1061 +0 0.0695 +0 0.0532 +0 0.0745 +0 0.0807 +0 0.0632 +0 0.0636 +1 0.7534 +0 0.2279 +0 0.0745 +0 0.0830 +0 0.1466 +0 0.1320 +0 0.0663 +0 0.1363 +0 0.0859 +0 0.0591 +0 0.1196 +0 0.1943 +0 0.0801 +0 0.0905 +0 0.1709 +0 0.1597 +0 0.0554 +0 0.1136 +0 0.1722 +0 0.0805 +0 0.0935 +0 0.0504 +0 0.1779 +0 0.0748 +0 0.0651 +0 0.1576 +0 0.1647 +0 0.1689 +0 0.0452 +0 0.2734 +0 0.1114 +0 0.1524 +0 0.0963 +0 0.0831 +0 0.2247 +0 0.1425 +0 0.0990 +0 0.0692 +0 0.1502 +0 0.2171 +0 0.1270 +0 0.0589 +0 0.0646 +0 0.2351 +0 0.0753 +0 0.0943 +0 0.0979 +0 0.0971 +0 0.0923 +0 0.1021 +0 0.1521 +0 0.1813 +0 0.0777 +0 0.1377 +0 0.0732 +0 0.1284 +0 0.2570 +0 0.1009 +1 0.8691 +0 0.2690 +0 0.5821 +0 0.0637 +0 0.1354 +0 0.3208 +0 0.2537 +0 0.0793 +0 0.0764 +0 0.0886 +0 0.1427 +0 0.0478 +0 0.1949 +0 0.1356 +0 0.1492 +0 0.0487 +0 0.0466 +0 0.0871 +0 0.0566 +0 0.0998 +0 0.0937 +0 0.1043 +0 0.1444 +0 0.1719 +0 0.1511 +0 0.1034 +0 0.0439 +0 0.1506 +0 0.1113 +0 0.0524 +0 0.0798 +0 0.1919 +0 0.1953 +0 0.0552 +0 0.0987 +0 0.0886 +0 0.1215 +0 0.1096 +0 0.0825 +0 0.0604 +0 0.0532 +0 0.1077 +0 0.0816 +0 0.1346 +0 0.1142 +0 0.1215 +0 0.1055 +0 0.3557 +0 0.1651 +0 0.2042 +0 0.1212 +0 0.0563 +0 0.0670 +0 0.1360 +0 0.0731 +0 0.0693 +0 0.1033 +0 0.1128 +0 0.0410 +0 0.1402 +0 0.1396 +0 0.5109 +0 0.0568 +0 0.1685 +1 0.7853 +0 0.0586 +0 0.0814 +0 0.1605 +0 0.2113 +0 0.1713 +0 0.1138 +0 0.2010 +0 0.0835 +0 0.0457 +0 0.1921 +0 0.0544 +0 0.2383 +0 0.0444 +0 0.0820 +0 0.0853 +0 0.2245 +0 0.1472 +0 0.0420 +0 0.1083 +0 0.0976 +0 0.0882 +0 0.0579 +0 0.4079 +0 0.1185 +0 0.1165 +0 0.3492 +0 0.3001 +0 0.1006 +0 0.1238 +0 0.0823 +0 0.0583 +0 0.2593 +0 0.6942 +0 0.1342 +1 0.8452 +1 0.8357 +0 0.0644 +0 0.1104 +0 0.0759 +0 0.0977 +0 0.0639 +0 0.0766 +1 0.8366 +0 0.6813 +0 0.1121 +0 0.2570 +0 0.1639 +0 0.1773 +0 0.0628 +0 0.0715 +0 0.0713 +0 0.1420 +0 0.0631 +0 0.0907 +0 0.0801 +0 0.0874 +0 0.1563 +0 0.3691 +0 0.1391 +0 0.1050 +0 0.1152 +0 0.1371 +0 0.0638 +0 0.1034 +0 0.0641 +0 0.0446 +0 0.0907 +0 0.1018 +0 0.0695 +0 0.2031 +0 0.0848 +0 0.1667 +0 0.0746 +0 0.1848 +0 0.1595 +0 0.1550 +0 0.1570 +0 0.3959 +0 0.0511 +0 0.0498 +0 0.0843 +0 0.1131 +0 0.1030 +0 0.1727 +0 0.0662 +0 0.1173 +0 0.2075 +0 0.1178 +0 0.0468 +0 0.0756 +0 0.2207 +0 0.3940 +0 0.3104 +0 0.0623 +0 0.1128 +0 0.3712 +0 0.2272 +0 0.1567 +0 0.0489 +0 0.1043 +0 0.1416 +0 0.1981 +0 0.2595 +0 0.1421 +0 0.3091 +0 0.0860 +0 0.1287 +0 0.0762 +0 0.0392 +0 0.5177 +0 0.3528 +0 0.5678 +0 0.0934 +0 0.0786 +0 0.2031 +0 0.0581 +0 0.0664 +0 0.1754 +0 0.3556 +0 0.0910 +0 0.1245 +0 0.2414 +0 0.0923 +0 0.0836 +0 0.1949 +0 0.1056 +0 0.5868 +0 0.1084 +0 0.0312 +0 0.1004 +0 0.1076 +0 0.1437 +0 0.0815 +0 0.0362 +0 0.1302 +0 0.0545 +0 0.0723 +0 0.0793 +0 0.1125 +0 0.0809 +0 0.0690 +0 0.0530 +0 0.0755 +0 0.2533 +0 0.2293 +0 0.0517 +0 0.1359 +0 0.0803 +0 0.1307 +0 0.2211 +0 0.2440 +0 0.4422 +0 0.0810 +0 0.3522 +0 0.1199 +0 0.0678 +0 0.0838 +0 0.0704 +0 0.1346 +0 0.1234 +0 0.0830 +0 0.2195 +1 0.7768 +0 0.0856 +0 0.1162 +0 0.1205 +0 0.2236 +0 0.0709 +0 0.0494 +0 0.0913 +0 0.1073 +0 0.0673 +0 0.0724 +0 0.7486 +0 0.2091 +0 0.0366 +0 0.1200 +0 0.0808 +0 0.1750 +0 0.1246 +0 0.2487 +0 0.0679 +0 0.0858 +0 0.1409 +0 0.0856 +0 0.1174 +0 0.1976 +0 0.1541 +0 0.1258 +0 0.0657 +0 0.2554 +0 0.0877 +0 0.6546 +0 0.1150 +0 0.2102 +0 0.2224 +0 0.0636 +0 0.1193 +0 0.0888 +0 0.0714 +0 0.0757 +0 0.0707 +0 0.3780 +0 0.1496 +0 0.0712 +0 0.1607 +0 0.1571 +0 0.0687 +0 0.0933 +0 0.1346 +0 0.6122 +0 0.0992 +0 0.1692 +0 0.0776 +0 0.1548 +0 0.1811 +0 0.0753 +0 0.1883 +0 0.0986 +0 0.3206 +0 0.0546 +0 0.2282 +0 0.1672 +0 0.1932 +0 0.1080 +0 0.1076 +0 0.1495 +0 0.2751 +0 0.0848 +0 0.0708 +0 0.1424 +0 0.1130 +0 0.0874 +0 0.0907 +0 0.0904 +0 0.0975 +0 0.1285 +1 0.7815 +0 0.1148 +0 0.1057 +0 0.0618 +0 0.0450 +0 0.3088 +0 0.2064 +0 0.1065 +0 0.0762 +0 0.0831 +0 0.0819 +0 0.2269 +0 0.0751 +0 0.5048 +0 0.1230 +0 0.0850 +0 0.1146 +0 0.1223 +0 0.0431 +0 0.0407 +1 0.8314 +0 0.0683 +0 0.0910 +0 0.6627 +0 0.0728 +0 0.7137 +0 0.1024 +0 0.0850 +0 0.0777 +0 0.0503 +0 0.0576 +0 0.0390 +0 0.4926 +0 0.1957 +0 0.0899 +0 0.2571 +0 0.1133 +0 0.2324 +0 0.0977 +0 0.0911 +0 0.0670 +0 0.1915 +0 0.1875 +0 0.1208 +0 0.1711 +0 0.1622 +0 0.1081 +0 0.0796 +0 0.1545 +0 0.0408 +0 0.1478 +0 0.4968 +0 0.1148 +0 0.0690 +0 0.1378 +0 0.0637 +0 0.0456 +0 0.0553 +0 0.1467 +0 0.0471 +0 0.1291 +0 0.0793 +0 0.4632 +0 0.2577 +0 0.1361 +0 0.0855 +0 0.0463 +0 0.0940 +0 0.1780 +0 0.1188 +0 0.0971 +0 0.0978 +0 0.1035 +0 0.3196 +0 0.0882 +0 0.0817 +1 0.7633 +0 0.1084 +0 0.1734 +0 0.0554 +0 0.0796 +0 0.1079 +0 0.1631 +0 0.0937 +0 0.0761 +0 0.0520 +0 0.0736 +0 0.3074 +0 0.1597 +0 0.1173 +0 0.0793 +0 0.0804 +0 0.1459 +0 0.3184 +0 0.1334 +0 0.0998 +0 0.2168 +0 0.0560 +0 0.0935 +0 0.0514 +0 0.1579 +0 0.0848 +0 0.0908 +0 0.6261 +0 0.0543 +0 0.1191 +0 0.2273 +0 0.0686 +0 0.0913 +0 0.0955 +0 0.2079 +0 0.0667 +0 0.1215 +0 0.1896 +0 0.4440 +0 0.1332 +0 0.0941 +0 0.3278 +0 0.0586 +0 0.0998 +0 0.3990 +1 0.8085 +0 0.1067 +0 0.1399 +0 0.0556 +0 0.0635 +0 0.2630 +0 0.1222 +0 0.1581 +0 0.1900 +0 0.1151 +0 0.1236 +0 0.1194 +0 0.2465 +0 0.1552 +0 0.0960 +0 0.1586 +0 0.1012 +0 0.1739 +0 0.0546 +0 0.7239 +0 0.1085 +0 0.1414 +0 0.0625 +0 0.1925 +0 0.3016 +0 0.0630 +0 0.0940 +0 0.1074 +0 0.2604 +0 0.3898 +0 0.0749 +0 0.1288 +0 0.1876 +0 0.1278 +0 0.1445 +0 0.1440 +0 0.1158 +0 0.1259 +0 0.1418 +0 0.3462 +0 0.0804 +0 0.1100 +0 0.2928 +0 0.0667 +0 0.0872 +0 0.1439 +0 0.1195 +0 0.1180 +0 0.2977 +0 0.1637 +0 0.0858 +0 0.2590 +0 0.0957 +0 0.0691 +0 0.0753 +0 0.2811 +0 0.7056 +0 0.0840 +0 0.1508 +0 0.1138 +0 0.0503 +0 0.0721 +0 0.1116 +0 0.0848 +0 0.3569 +0 0.3344 +0 0.1010 +0 0.0611 +0 0.0728 +0 0.2096 +1 0.7525 +0 0.0679 +0 0.1003 +0 0.1489 +0 0.1567 +0 0.1951 +0 0.1607 +0 0.1761 +0 0.0867 +0 0.0816 +0 0.0605 +0 0.1512 +0 0.0428 +0 0.1017 +0 0.3610 +0 0.2119 +0 0.1213 +0 0.1436 +0 0.0618 +0 0.1373 +0 0.0992 +0 0.0603 +0 0.0639 +0 0.0887 +0 0.0847 +0 0.0752 +0 0.1549 +0 0.0841 +0 0.1050 +0 0.1217 +0 0.0363 +0 0.0617 +0 0.0550 +0 0.2420 +0 0.0441 +0 0.1475 +0 0.0658 +0 0.1084 +0 0.1121 +0 0.1570 +0 0.0771 +0 0.0416 +0 0.3116 +0 0.0727 +0 0.0347 +0 0.0789 +0 0.5624 +0 0.0724 +0 0.1737 +0 0.0590 +0 0.1030 +0 0.0581 +0 0.1085 +0 0.1776 +0 0.0891 +0 0.1059 +0 0.1742 +0 0.7298 +0 0.1987 +0 0.1157 +0 0.1107 +0 0.1565 +0 0.1007 +0 0.1068 +0 0.0890 +0 0.0840 +0 0.1537 +0 0.0955 +0 0.0485 +0 0.2152 +0 0.1305 +0 0.1055 +0 0.0578 +0 0.1303 +0 0.0350 +0 0.0464 +0 0.0445 +0 0.4321 +0 0.0732 +0 0.1650 +0 0.1225 +0 0.0857 +0 0.0988 +0 0.1122 +0 0.5233 +0 0.1467 +0 0.4292 +0 0.1168 +0 0.0941 +0 0.1946 +0 0.1473 +0 0.1572 +0 0.1202 +0 0.0918 +0 0.0616 +0 0.0975 +0 0.0669 +0 0.1169 +0 0.0473 +0 0.0398 +0 0.5111 +0 0.1159 +0 0.0657 +0 0.0793 +0 0.0785 +0 0.2494 +0 0.1168 +0 0.1352 +0 0.2121 +0 0.5920 +0 0.1611 +0 0.0427 +0 0.1327 +0 0.2175 +0 0.1167 +0 0.0825 +0 0.1112 +0 0.1651 +0 0.2871 +0 0.0927 +0 0.0385 +0 0.0726 +0 0.0920 +0 0.1743 +0 0.1597 +0 0.0845 +0 0.1202 +0 0.0793 +0 0.5743 +0 0.2103 +0 0.0884 +0 0.3146 +0 0.0877 +0 0.0827 +0 0.1409 +0 0.0818 +0 0.3397 +0 0.1495 +0 0.0754 +0 0.1441 +0 0.0390 +0 0.1572 +0 0.3033 +0 0.1433 +0 0.0995 +0 0.1656 +0 0.1115 +0 0.2498 +0 0.1875 +0 0.1163 +0 0.4045 +0 0.0887 +0 0.1064 +0 0.1310 +0 0.1015 +0 0.1684 +0 0.1035 +0 0.1711 +0 0.1017 +0 0.1132 +0 0.0740 +0 0.1162 +0 0.1647 +0 0.0439 +0 0.0359 +0 0.0810 +0 0.0782 +0 0.1352 +0 0.0400 +0 0.0518 +0 0.1927 +1 0.8062 +0 0.1035 +0 0.3139 +0 0.1062 +0 0.1096 +0 0.0410 +0 0.1042 +0 0.2022 +0 0.0666 +0 0.0766 +0 0.7478 +0 0.1899 +0 0.1229 +0 0.0854 +0 0.2536 +0 0.1828 +0 0.2046 +1 0.8654 +1 0.7949 +0 0.0765 +0 0.0648 +0 0.0793 +0 0.4073 +0 0.3628 +0 0.1522 +0 0.0838 +0 0.0971 +0 0.1781 +0 0.0881 +0 0.1254 +0 0.1255 +0 0.0320 +0 0.0826 +0 0.0660 +0 0.0453 +0 0.0775 +0 0.1285 +0 0.1277 +0 0.7144 +0 0.6646 +0 0.1013 +0 0.2938 +0 0.0937 +0 0.0476 +0 0.0888 +0 0.0399 +0 0.0994 +0 0.1074 +0 0.3039 +0 0.0392 +0 0.1230 +0 0.0459 +0 0.2220 +0 0.0998 +0 0.1191 +0 0.5211 +0 0.5948 +0 0.0596 +0 0.0612 +0 0.0828 +0 0.2093 +0 0.2057 +0 0.0922 +1 0.8715 +0 0.0927 +0 0.0753 +0 0.3522 +0 0.1387 +0 0.4321 +0 0.1671 +0 0.0879 +0 0.1075 +0 0.1687 +0 0.0934 +0 0.0612 +0 0.1298 +0 0.0721 +0 0.0369 +0 0.1558 +0 0.2470 +0 0.1028 +0 0.1212 +0 0.0949 +0 0.1036 +0 0.1219 +0 0.0702 +0 0.0839 +0 0.0396 +0 0.2039 +0 0.1130 +0 0.2050 +0 0.0783 +0 0.1687 +0 0.0403 +0 0.1844 +0 0.0863 +0 0.0744 +0 0.0815 +0 0.0860 +0 0.1495 +0 0.0908 +0 0.0749 +0 0.0398 +0 0.4880 +0 0.0709 +0 0.0872 +0 0.1454 +0 0.0630 +0 0.0986 +0 0.0637 +0 0.0430 +0 0.3065 +0 0.0608 +0 0.0490 +0 0.0966 +0 0.0984 +0 0.0776 +0 0.1460 +0 0.0616 +0 0.1586 +0 0.1510 +0 0.1105 +0 0.1485 +0 0.1456 +0 0.1154 +0 0.1077 +0 0.0810 +0 0.0374 +0 0.1026 +0 0.6833 +0 0.0572 +0 0.1102 +0 0.0792 +0 0.0696 +0 0.0526 +1 0.8453 +0 0.0509 +0 0.1563 +0 0.0817 +0 0.1482 +0 0.1351 +0 0.1466 +0 0.1562 +0 0.0736 +0 0.0771 +0 0.1929 +0 0.0837 +0 0.2642 +0 0.0697 +0 0.1241 +0 0.0609 +0 0.1039 +0 0.2151 +0 0.0892 +0 0.0934 +0 0.3219 +0 0.1301 +0 0.1766 +0 0.0946 +0 0.0879 +0 0.0960 +0 0.2314 +0 0.0610 +0 0.0376 +0 0.0357 +0 0.1124 +0 0.0645 +0 0.3523 +0 0.1106 +0 0.2029 +0 0.1422 +0 0.2131 +0 0.0596 +0 0.0828 +0 0.0581 +0 0.0765 +0 0.2901 +0 0.2554 +0 0.0823 +0 0.0382 +0 0.0832 +0 0.0605 +0 0.0669 +0 0.0732 +0 0.1518 +0 0.0833 +0 0.0403 +0 0.1360 +0 0.0983 +0 0.0726 +0 0.1038 +0 0.1774 +0 0.0963 +0 0.0711 +0 0.0763 +0 0.0771 +0 0.6551 +0 0.1533 +1 0.8306 +0 0.0788 +0 0.0494 +0 0.0544 +0 0.1027 +0 0.1196 +0 0.0488 +0 0.0828 +0 0.1691 +0 0.1316 +0 0.0771 +0 0.1306 +0 0.1761 +0 0.0842 +0 0.0950 +0 0.2527 +0 0.1047 +0 0.1746 +0 0.1377 +0 0.0732 +0 0.1344 +0 0.2223 +0 0.2687 +0 0.0939 +0 0.0685 +0 0.1174 +0 0.1772 +1 0.7857 +0 0.0663 +0 0.2570 +0 0.2263 +0 0.1489 +0 0.1950 +0 0.0332 +0 0.6730 +0 0.0392 +0 0.1119 +1 0.7824 +0 0.5619 +0 0.0711 +0 0.2525 +0 0.0413 +0 0.0884 +0 0.6033 +0 0.2681 +0 0.4667 +0 0.0860 +0 0.1858 +0 0.0694 +0 0.0878 +0 0.0636 +0 0.0611 +0 0.3631 +0 0.1413 +0 0.0597 +0 0.2299 +0 0.2101 +0 0.1087 +0 0.0805 +0 0.2361 +0 0.0626 +0 0.4317 +0 0.0652 +0 0.2527 +0 0.1560 +0 0.0969 +0 0.2068 +0 0.0465 +0 0.0758 +0 0.0716 +0 0.0902 +0 0.1179 +0 0.0843 +0 0.0717 +0 0.1218 +0 0.1189 +0 0.1786 +0 0.1198 +0 0.2127 +0 0.0756 +0 0.0832 +0 0.1820 +0 0.0573 +0 0.0778 +0 0.6594 +0 0.1161 +0 0.0652 +0 0.1282 +0 0.2217 +0 0.0633 +0 0.0462 +0 0.0871 +0 0.0675 +0 0.0547 +0 0.2420 +0 0.1120 +0 0.1689 +0 0.2775 +0 0.1156 +0 0.3182 +0 0.0783 +0 0.1151 +0 0.2249 +0 0.3798 +0 0.1521 +0 0.2440 +0 0.4274 +0 0.1788 +0 0.0793 +0 0.1392 +0 0.0702 +0 0.1090 +0 0.2541 +0 0.0492 +0 0.0563 +0 0.1037 +0 0.1358 +0 0.1070 +0 0.3900 +0 0.7448 +0 0.1987 +0 0.2281 +0 0.0684 +0 0.1521 +0 0.1022 +0 0.0549 +0 0.4620 +0 0.0919 +0 0.1113 +0 0.1750 +0 0.1743 +0 0.1163 +0 0.0833 +0 0.0892 +0 0.1098 +0 0.0860 +0 0.0687 +0 0.0695 +1 0.8488 +0 0.0288 +1 0.7702 +0 0.0759 +0 0.1770 +0 0.2703 +0 0.2727 +0 0.0814 +0 0.0790 +0 0.0882 +0 0.7361 +0 0.0296 +0 0.0812 +0 0.0835 +0 0.0609 +0 0.1162 +0 0.0362 +0 0.0640 +0 0.1545 +0 0.0624 +0 0.1708 +0 0.0948 +0 0.3983 +0 0.1420 +0 0.1238 +0 0.0674 +1 0.7922 +0 0.1485 +0 0.0747 +0 0.1762 +0 0.0684 +0 0.2222 +0 0.1045 +0 0.0678 +0 0.0593 +0 0.2217 +0 0.0390 +0 0.2143 +0 0.2023 +0 0.0667 +0 0.1244 +0 0.2600 +0 0.0440 +0 0.0490 +0 0.0692 +0 0.0869 +0 0.1617 +0 0.0416 +0 0.1204 +0 0.1037 +0 0.0899 +0 0.1901 +0 0.1447 +0 0.1582 +0 0.1891 +0 0.1033 +0 0.1713 +0 0.0827 +0 0.0715 +0 0.3325 +0 0.0582 +0 0.2427 +0 0.1113 +0 0.1277 +0 0.0444 +0 0.0438 +0 0.0908 +0 0.1743 +0 0.0800 +0 0.0608 +0 0.1331 +0 0.0570 +0 0.0725 +0 0.1199 +0 0.1035 +0 0.1392 +0 0.1266 +0 0.0600 +0 0.1699 +0 0.0341 +0 0.1343 +0 0.1468 +0 0.5440 +0 0.1164 +0 0.0487 +0 0.0671 +0 0.3241 +0 0.4029 +0 0.1224 +0 0.0603 +0 0.0989 +0 0.1118 +0 0.0439 +0 0.0990 +0 0.0911 +0 0.0728 +0 0.0497 +0 0.1048 +0 0.2354 +0 0.0671 +1 0.7790 +0 0.1072 +0 0.0834 +0 0.1666 +0 0.2330 +0 0.2785 +0 0.1237 +0 0.1394 +0 0.2614 +0 0.1438 +0 0.0571 +0 0.1254 +0 0.0617 +0 0.0792 +0 0.1511 +0 0.1714 +0 0.1021 +0 0.1744 +0 0.0509 +0 0.0547 +0 0.1221 +0 0.0961 +0 0.0724 +0 0.1152 +0 0.1328 +0 0.0646 +0 0.0778 +0 0.1381 +0 0.0962 +0 0.1448 +0 0.1357 +0 0.0788 +0 0.1060 +0 0.1010 +0 0.1039 +0 0.2183 +0 0.1850 +0 0.2054 +0 0.1428 +0 0.1616 +0 0.1630 +0 0.0417 +0 0.0469 +0 0.2480 +0 0.0812 +0 0.4144 +0 0.1291 +0 0.1022 +0 0.0898 +0 0.0814 +0 0.6091 +0 0.2014 +0 0.0970 +0 0.5909 +0 0.1159 +0 0.0856 +0 0.0675 +0 0.1329 +0 0.0950 +0 0.0586 +0 0.0935 +0 0.0965 +0 0.1775 +0 0.0904 +0 0.1127 +0 0.2276 +0 0.0585 +0 0.1191 +0 0.1350 +0 0.0685 +0 0.0986 +0 0.1020 +0 0.1834 +0 0.1236 +0 0.0554 +0 0.1128 +0 0.0389 +0 0.0459 +0 0.2009 +0 0.2457 +0 0.2032 +0 0.0523 +0 0.1308 +0 0.0822 +0 0.0783 +0 0.0942 +0 0.1808 +0 0.0771 +0 0.6879 +0 0.0949 +0 0.0701 +1 0.8283 +0 0.0588 +0 0.2448 +0 0.0900 +0 0.0548 +0 0.1492 +0 0.1219 +0 0.0765 +0 0.1345 +0 0.0706 +0 0.0972 +0 0.5113 +0 0.0867 +0 0.1046 +0 0.2709 +0 0.2061 +0 0.0421 +0 0.3865 +0 0.0532 +0 0.1104 +0 0.2168 +0 0.0655 +0 0.1192 +0 0.1732 +0 0.0918 +0 0.0675 +0 0.2642 +0 0.0908 +0 0.0491 +0 0.0512 +0 0.0583 +0 0.0649 +0 0.2085 +0 0.0553 +0 0.7393 +0 0.1130 +0 0.0822 +0 0.2452 +0 0.0514 +0 0.1381 +0 0.0579 +0 0.5138 +0 0.1466 +0 0.3696 +0 0.0587 +0 0.4692 +0 0.0924 +0 0.2152 +0 0.0693 +0 0.0560 +0 0.1169 +0 0.0672 +0 0.1967 +0 0.0959 +0 0.0835 +0 0.0483 +0 0.0691 +0 0.0881 +0 0.1926 +0 0.1893 +0 0.0836 +0 0.0424 +0 0.6426 +0 0.0914 +0 0.1672 +0 0.0453 +0 0.0668 +0 0.0549 +0 0.0974 +0 0.0817 +0 0.0776 +0 0.4811 +0 0.1822 +0 0.0896 +0 0.6957 +1 0.8284 +0 0.2439 +0 0.1368 +0 0.1185 +0 0.0670 +0 0.0461 +0 0.1890 +0 0.1089 +0 0.1300 +0 0.0890 +0 0.0766 +0 0.5999 +0 0.0884 +0 0.0609 +0 0.0887 +0 0.0960 +0 0.1961 +0 0.1020 +0 0.0478 +0 0.0859 +0 0.0735 +0 0.1575 +0 0.0825 +0 0.0877 +0 0.1099 +0 0.0706 +0 0.0992 +0 0.1004 +1 0.7989 +0 0.1430 +0 0.0785 +0 0.4532 +0 0.1945 +0 0.1569 +0 0.1779 +0 0.1067 +0 0.0644 +0 0.0781 +0 0.3512 +0 0.2523 +0 0.0682 +0 0.1410 +0 0.0564 +0 0.0756 +0 0.1968 +0 0.0834 +0 0.0447 +0 0.0535 +0 0.1075 +0 0.0998 +0 0.1076 +0 0.0469 +0 0.1341 +0 0.0678 +0 0.1299 +0 0.1983 +0 0.1749 +0 0.0508 +0 0.1559 +0 0.0746 +1 0.8213 +0 0.3358 +0 0.0447 +0 0.2343 +0 0.1416 +0 0.0897 +0 0.1456 +0 0.1178 +0 0.0616 +0 0.0842 +0 0.0432 +0 0.1269 +0 0.3082 +0 0.2438 +0 0.0611 +0 0.0784 +0 0.1111 +0 0.6749 +0 0.1667 +0 0.0601 +0 0.0397 +0 0.1714 +0 0.0610 +0 0.0622 +0 0.1176 +0 0.1296 +0 0.0549 +0 0.3287 +0 0.1968 +0 0.0999 +0 0.1713 +0 0.0871 +0 0.1453 +0 0.0661 +0 0.1282 +0 0.2006 +0 0.1342 +0 0.0827 +0 0.2458 +0 0.0512 +0 0.0420 +0 0.1963 +0 0.0688 +0 0.2193 +0 0.0504 +0 0.5209 +0 0.0381 +0 0.0358 +0 0.0645 +0 0.0833 +0 0.1489 +0 0.0531 +0 0.0743 +0 0.3200 +0 0.1418 +0 0.0601 +0 0.0811 +0 0.5596 +1 0.8712 +0 0.7319 +0 0.2380 +0 0.1065 +1 0.8260 +0 0.0734 +0 0.1295 +0 0.1040 +0 0.0950 +0 0.0402 +0 0.0599 +0 0.0866 +0 0.1165 +0 0.1116 +0 0.0942 +0 0.3618 +0 0.0718 +0 0.2003 +0 0.0432 +0 0.0687 +0 0.0962 +0 0.1982 +0 0.7389 +0 0.1916 +0 0.1062 +0 0.0863 +0 0.1526 +0 0.0872 +0 0.0868 +0 0.0775 +0 0.0636 +0 0.0983 +0 0.0611 +0 0.1361 +0 0.0521 +0 0.2310 +0 0.0661 +0 0.0599 +0 0.4599 +0 0.2928 +0 0.1043 +0 0.0724 +0 0.0482 +0 0.1342 +0 0.0577 +0 0.2358 +0 0.0789 +0 0.2349 +0 0.0729 +0 0.0341 +0 0.0530 +1 0.4571 +0 0.0777 +0 0.4243 +0 0.1826 +0 0.4919 +0 0.1200 +0 0.0393 +0 0.0633 +0 0.1054 +0 0.0741 +0 0.0845 +1 0.7599 +0 0.1409 +0 0.0578 +0 0.0592 +0 0.0695 +0 0.0548 +0 0.0795 +0 0.0399 +0 0.1043 +0 0.4891 +0 0.0457 +0 0.0704 +0 0.1317 +0 0.4914 +0 0.1468 +0 0.1414 +0 0.3980 +0 0.1917 +0 0.2128 +0 0.0838 +0 0.1986 +0 0.1682 +0 0.0563 +0 0.0381 +0 0.2531 +0 0.1025 +0 0.2168 +0 0.1289 +0 0.0851 +1 0.8153 +0 0.0601 +0 0.3328 +0 0.0881 +0 0.1446 +0 0.0890 +0 0.4054 +0 0.2667 +0 0.1214 +0 0.1212 +0 0.1139 +0 0.0292 +0 0.0990 +0 0.1176 +0 0.0901 +0 0.0988 +0 0.1420 +0 0.1479 +0 0.0917 +0 0.0835 +0 0.0751 +0 0.0510 +0 0.0750 +0 0.3003 +0 0.0355 +0 0.0888 +0 0.2355 +0 0.3104 +0 0.0469 +0 0.0424 +0 0.0574 +0 0.1257 +0 0.1717 +0 0.0754 +0 0.2380 +0 0.1800 +0 0.1363 +0 0.0534 +0 0.0740 +0 0.0627 +0 0.1520 +0 0.2232 +0 0.0558 +0 0.1423 +0 0.0787 +0 0.1500 +0 0.3777 +0 0.0529 +0 0.4593 +0 0.1856 +0 0.0570 +0 0.0961 +0 0.0827 +0 0.2100 +0 0.1033 +0 0.0466 +0 0.0778 +0 0.1189 +0 0.0495 +0 0.0771 +0 0.0524 +0 0.1507 +0 0.0424 +0 0.1053 +0 0.0622 +0 0.0533 +0 0.2090 +0 0.1372 +0 0.1271 +0 0.1303 +0 0.1443 +0 0.2602 +0 0.1675 +0 0.1246 +0 0.0773 +0 0.0745 +0 0.0881 +0 0.1178 +0 0.0860 +0 0.0658 +0 0.6823 +0 0.1580 +0 0.2049 +0 0.0585 +0 0.0799 +0 0.0475 +0 0.0998 +0 0.2029 +0 0.0940 +0 0.1693 +0 0.2441 +0 0.0451 +0 0.0514 +0 0.0884 +0 0.2103 +0 0.0600 +0 0.2385 +0 0.1574 +0 0.1926 +0 0.0576 +0 0.0675 +0 0.1062 +1 0.7630 +0 0.0621 +0 0.1300 +0 0.1102 +0 0.0499 +0 0.0671 +0 0.1456 +0 0.1077 +0 0.1106 +0 0.0889 +0 0.1226 +0 0.0953 +0 0.0729 +0 0.0562 +0 0.1755 +0 0.0507 +0 0.1988 +0 0.1465 +0 0.1473 +0 0.0643 +0 0.0547 +0 0.1074 +0 0.0691 +0 0.1845 +0 0.3168 +0 0.3400 +0 0.0850 +0 0.1073 +0 0.0804 +0 0.1903 +0 0.0740 +0 0.0864 +0 0.3251 +0 0.2166 +0 0.1218 +0 0.0519 +0 0.0712 +0 0.0626 +0 0.0787 +0 0.2165 +0 0.1582 +0 0.0649 +0 0.0601 +0 0.0858 +0 0.0865 +0 0.1551 +0 0.0768 +0 0.1657 +0 0.0937 +0 0.1388 +0 0.0954 +0 0.0898 +0 0.2740 +0 0.2319 +0 0.2410 +0 0.0617 +0 0.1042 +0 0.1301 +0 0.1980 +0 0.0723 +0 0.0920 +0 0.1390 +0 0.0730 +0 0.0523 +0 0.1980 +0 0.0652 +1 0.7843 +0 0.0766 +0 0.2328 +0 0.0977 +0 0.0678 +0 0.1022 +1 0.7680 +0 0.1801 +0 0.1146 +1 0.7731 +0 0.0640 +0 0.1268 +0 0.1540 +0 0.1200 +0 0.1345 +0 0.1972 +0 0.0602 +0 0.1081 +0 0.1844 +0 0.0651 +0 0.1888 +0 0.1046 +0 0.0540 +0 0.0570 +0 0.1109 +0 0.0859 +0 0.1416 +0 0.1184 +0 0.0611 +0 0.0831 +0 0.2876 +0 0.1330 +0 0.0458 +0 0.0385 +0 0.1532 +0 0.1290 +0 0.1227 +0 0.1045 +0 0.2134 +0 0.1254 +0 0.0973 +0 0.1727 +0 0.0505 +0 0.0744 +0 0.1403 +0 0.0798 +0 0.0941 +0 0.0746 +0 0.0637 +0 0.0648 +0 0.0712 +0 0.1154 +0 0.2798 +0 0.2238 +0 0.0959 +0 0.2702 +0 0.0942 +0 0.1088 +0 0.2819 +0 0.1060 +0 0.0997 +0 0.0361 +0 0.1199 +0 0.1809 +0 0.1002 +0 0.2007 +0 0.0930 +0 0.7434 +0 0.2182 +0 0.1118 +0 0.0574 +0 0.0476 +0 0.1034 +0 0.0961 +0 0.1710 +0 0.2530 +0 0.0589 +0 0.0850 +0 0.0783 +0 0.1322 +0 0.0910 +0 0.0437 +0 0.1402 +0 0.1250 +0 0.0588 +0 0.0555 +0 0.0829 +0 0.2290 +0 0.0550 +0 0.0803 +0 0.0900 +0 0.0835 +0 0.0931 +0 0.0704 +0 0.1484 +0 0.2254 +0 0.0943 +0 0.0562 +0 0.1113 +0 0.1890 +0 0.1826 +0 0.1085 +0 0.2410 +0 0.3593 +0 0.1447 +0 0.0759 +0 0.3709 +0 0.0705 +0 0.1209 +0 0.0563 +0 0.0718 +0 0.0882 +0 0.1361 +0 0.1185 +0 0.1312 +0 0.1822 +0 0.7450 +0 0.0548 +0 0.1103 +0 0.2423 +0 0.0582 +0 0.1301 +0 0.0668 +0 0.3098 +0 0.0903 +1 0.8755 +0 0.0777 +0 0.0852 +0 0.0727 +0 0.0889 +0 0.0698 +0 0.1460 +0 0.0755 +0 0.1012 +0 0.2253 +0 0.0986 +0 0.3784 +0 0.1473 +0 0.3519 +0 0.0280 +0 0.0423 +0 0.0794 +0 0.1888 +0 0.1159 +0 0.0466 +0 0.0558 +0 0.0690 +0 0.2281 +0 0.1297 +0 0.0878 +0 0.0738 +0 0.0422 +0 0.0759 +0 0.5116 +0 0.0448 +0 0.1388 +0 0.2084 +1 0.8558 +0 0.0654 +0 0.0417 +0 0.1331 +0 0.1669 +0 0.0457 +0 0.3097 +0 0.0847 +1 0.8326 +0 0.1218 +0 0.3172 +0 0.0936 +0 0.0878 +0 0.3166 +0 0.0573 +0 0.0910 +0 0.0430 +0 0.1036 +0 0.0769 +0 0.1176 +0 0.2058 +0 0.1894 +0 0.2115 +0 0.1381 +0 0.1332 +0 0.0799 +0 0.0911 +0 0.1309 +0 0.1220 +0 0.1279 +0 0.0881 +0 0.0996 +1 0.8270 +0 0.0537 +0 0.1042 +0 0.1586 +0 0.0706 +0 0.0403 +0 0.1205 +0 0.1261 +0 0.2131 +0 0.1194 +0 0.0995 +0 0.0706 +0 0.0745 +0 0.0637 +0 0.0645 +0 0.0761 +0 0.1697 +0 0.1005 +0 0.0581 +0 0.6661 +0 0.0831 +0 0.0885 +0 0.1285 +0 0.0701 +0 0.3003 +0 0.0887 +0 0.1334 +0 0.0928 +0 0.1527 +0 0.0500 +0 0.2294 +0 0.1461 +0 0.0678 +0 0.1081 +0 0.0620 +0 0.1233 +0 0.1967 +0 0.2318 +0 0.1645 +0 0.1879 +0 0.0956 +0 0.1644 +0 0.0623 +0 0.1103 +0 0.0866 +0 0.0518 +0 0.3189 +0 0.0650 +0 0.0861 +0 0.0746 +0 0.0605 +0 0.0936 +0 0.0964 +0 0.2038 +0 0.1928 +0 0.0405 +0 0.0736 +0 0.1231 +0 0.7266 +0 0.2963 +0 0.3811 +0 0.0784 +0 0.0510 +0 0.0650 +0 0.0423 +0 0.0382 +0 0.1165 +0 0.1351 +0 0.2001 +0 0.1524 +0 0.0728 +0 0.0556 +0 0.1548 +0 0.1474 +0 0.2697 +0 0.1994 +0 0.0501 +0 0.0516 +0 0.1477 +0 0.0639 +0 0.0495 +0 0.1455 +0 0.0856 +0 0.2086 +0 0.0575 +0 0.2284 +0 0.0482 +0 0.1393 +0 0.1001 +0 0.4632 +0 0.1183 +0 0.0972 +0 0.0406 +0 0.1452 +0 0.0601 +0 0.0623 +0 0.0755 +0 0.4080 +0 0.0471 +0 0.0868 +0 0.0404 +0 0.2225 +0 0.1319 +0 0.0687 +0 0.2056 +0 0.0693 +0 0.1096 +0 0.0715 +0 0.0852 +0 0.2742 +0 0.2738 +0 0.0460 +0 0.2254 +0 0.0781 +0 0.1104 +0 0.0530 +0 0.1713 +0 0.0773 +0 0.0791 +0 0.0679 +0 0.0471 +0 0.1663 +0 0.2327 +0 0.0959 +0 0.0528 +0 0.3532 +0 0.4364 +0 0.1572 +0 0.6737 +0 0.0972 +0 0.0956 +0 0.0613 +0 0.0827 +0 0.2174 +0 0.1652 +0 0.0548 +0 0.0926 +0 0.0898 +0 0.0910 +0 0.0856 +0 0.0858 +0 0.1555 +0 0.6738 +0 0.0892 +0 0.0718 +0 0.1716 +0 0.0718 +0 0.1326 +0 0.0944 +0 0.0581 +0 0.1527 +0 0.7426 +0 0.0583 +0 0.1722 +0 0.0431 +0 0.0590 +0 0.0589 +0 0.0416 +0 0.4162 +0 0.1654 +0 0.2340 +0 0.0843 +0 0.2064 +0 0.1590 +0 0.0494 +0 0.0757 +0 0.1366 +0 0.0889 +0 0.0461 +0 0.1607 +0 0.1131 +0 0.0892 +0 0.0709 +0 0.0596 +0 0.1547 +0 0.0859 +0 0.1560 +0 0.1414 +0 0.0867 +0 0.1929 +0 0.1477 +0 0.2882 +0 0.0957 +0 0.6273 +0 0.0636 +0 0.1228 +0 0.0514 +0 0.0421 +0 0.1957 +0 0.0379 +0 0.0525 +0 0.0579 +0 0.0420 +0 0.0964 +0 0.2183 +0 0.0644 +0 0.2906 +0 0.0667 +0 0.0891 +0 0.2439 +0 0.0812 +0 0.1102 +0 0.0551 +0 0.0798 +0 0.1008 +0 0.0748 +0 0.0791 +0 0.2271 +0 0.1457 +0 0.0476 +0 0.5311 +0 0.2156 +0 0.2807 +0 0.0644 +0 0.1273 +0 0.0777 +0 0.1419 +1 0.8881 +0 0.2804 +0 0.0602 +0 0.1015 +0 0.4611 +0 0.0703 +0 0.1171 +0 0.0414 +0 0.1244 +0 0.1891 +0 0.0859 +0 0.1346 +0 0.1191 +0 0.0654 +0 0.1363 +0 0.0412 +0 0.2295 +0 0.0993 +0 0.0331 +0 0.0876 +0 0.1427 +0 0.2068 +0 0.0717 +0 0.0716 +0 0.1540 +0 0.1006 +0 0.0864 +0 0.1809 +0 0.0791 +0 0.1093 +0 0.1413 +0 0.0854 +0 0.0767 +0 0.0942 +0 0.0770 +0 0.2098 +0 0.0548 +0 0.0838 +0 0.1710 +0 0.1297 +0 0.1188 +0 0.0655 +0 0.0642 +0 0.1615 +0 0.0742 +0 0.1029 +0 0.1313 +0 0.1282 +0 0.4940 +0 0.1297 +0 0.1588 +0 0.0391 +0 0.1172 +0 0.1352 +0 0.2481 +0 0.1939 +0 0.0545 +0 0.1753 +0 0.1307 +0 0.0906 +0 0.0967 +0 0.2064 +0 0.0965 +0 0.4195 +0 0.1293 +0 0.1750 +0 0.1283 +0 0.1095 +0 0.1567 +0 0.1233 +0 0.0702 +0 0.0534 +0 0.2372 +0 0.1314 +0 0.0880 +0 0.1595 +0 0.2277 +0 0.6645 +1 0.8716 +0 0.0534 +0 0.0971 +0 0.0821 +0 0.0649 +0 0.0802 +0 0.0345 +0 0.2128 +0 0.1088 +0 0.1357 +0 0.0656 +0 0.0789 +0 0.1272 +0 0.1195 +0 0.0605 +0 0.0959 +0 0.1127 +0 0.0453 +0 0.0871 +0 0.6155 +0 0.0606 +0 0.5834 +0 0.2136 +0 0.0942 +0 0.0503 +0 0.1120 +0 0.1403 +0 0.1278 +0 0.1303 +0 0.0923 +0 0.1494 +0 0.1390 +0 0.1565 +0 0.0671 +0 0.0506 +0 0.0633 +0 0.1572 +0 0.1125 +0 0.0875 +1 0.7769 +0 0.0769 +0 0.2448 +0 0.1440 +0 0.1088 +0 0.0484 +0 0.1548 +0 0.1266 +0 0.1506 +0 0.5031 +0 0.4614 +0 0.1932 +0 0.0594 +0 0.1431 +0 0.0684 +0 0.1295 +0 0.2212 +0 0.1340 +0 0.1226 +0 0.0587 +0 0.2844 +0 0.1375 +0 0.0567 +0 0.2261 +0 0.0703 +0 0.1422 +0 0.0341 +0 0.1128 +0 0.1308 +0 0.0924 +0 0.0943 +0 0.1485 +0 0.0946 +0 0.2710 +0 0.1663 +0 0.0693 +0 0.1561 +0 0.2288 +0 0.0732 +1 0.8565 +0 0.0658 +0 0.0957 +0 0.6566 +0 0.1359 +0 0.1415 +0 0.1209 +0 0.0969 +0 0.0916 +0 0.0482 +0 0.1274 +0 0.1582 +0 0.1078 +0 0.7232 +0 0.0669 +0 0.0742 +0 0.1186 +0 0.0998 +0 0.1746 +0 0.3036 +0 0.0401 +0 0.0602 +0 0.0601 +0 0.1051 +0 0.1926 +0 0.2075 +0 0.0413 +0 0.1765 +0 0.1807 +0 0.4062 +0 0.1390 +0 0.0889 +0 0.1665 +0 0.0637 +0 0.2183 +0 0.1327 +0 0.1160 +0 0.0989 +0 0.3002 +0 0.0483 +0 0.1064 +0 0.0752 +0 0.0501 +0 0.1280 +0 0.0996 +0 0.2856 +0 0.3121 +0 0.1012 +0 0.2771 +0 0.0536 +0 0.0907 +0 0.0985 +0 0.2323 +0 0.2916 +0 0.1005 +0 0.0755 +0 0.0833 +0 0.0580 +0 0.0581 +0 0.1043 +0 0.4387 +0 0.2130 +0 0.0980 +0 0.0795 +0 0.1210 +0 0.0909 +0 0.1714 +0 0.2711 +0 0.0528 +0 0.0651 +0 0.0624 +0 0.0796 +0 0.4605 +0 0.1757 +0 0.4894 +0 0.0678 +1 0.8165 +0 0.1559 +0 0.3550 +0 0.0586 +0 0.0861 +0 0.0413 +0 0.1089 +0 0.2033 +0 0.0366 +0 0.0443 +0 0.1456 +0 0.2373 +0 0.2307 +0 0.0789 +0 0.1624 +0 0.1273 +0 0.1151 +0 0.0957 +0 0.0563 +0 0.0583 +0 0.3745 +0 0.0953 +0 0.0739 +0 0.2248 +0 0.0813 +0 0.1201 +0 0.0823 +0 0.1493 +0 0.2648 +0 0.1472 +0 0.0932 +0 0.0843 +0 0.3275 +0 0.0852 +0 0.0735 +0 0.0687 +0 0.1689 +0 0.1617 +0 0.0740 +0 0.0717 +1 0.8011 +0 0.0581 +0 0.3113 +1 0.7959 +0 0.1115 +0 0.1269 +0 0.1727 +0 0.0646 +0 0.0548 +0 0.0842 +0 0.1058 +0 0.1246 +0 0.1142 +0 0.1062 +0 0.2673 +0 0.0577 +0 0.0695 +0 0.1298 +0 0.0611 +0 0.0950 +0 0.0758 +0 0.1224 +0 0.0523 +0 0.0642 +0 0.0488 +0 0.1003 +0 0.4712 +0 0.1158 +0 0.1694 +0 0.0586 +0 0.2741 +0 0.1298 +0 0.3976 +0 0.1951 +0 0.2629 +0 0.1133 +0 0.2043 +0 0.1424 +0 0.0866 +0 0.0536 +0 0.1208 +0 0.0621 +0 0.1047 +0 0.0538 +0 0.0713 +0 0.0352 +0 0.1454 +1 0.8582 +0 0.0335 +0 0.2304 +0 0.0516 +0 0.1437 +0 0.1000 +0 0.0761 +0 0.1275 +0 0.0587 +0 0.0902 +0 0.2303 +0 0.0545 +0 0.1281 +0 0.1005 +0 0.0660 +0 0.1941 +0 0.1894 +0 0.1629 +0 0.1847 +0 0.5093 +0 0.0687 +0 0.1886 +0 0.0548 +0 0.4568 +0 0.0923 +0 0.1024 +0 0.0682 +0 0.3749 +0 0.1393 +0 0.0818 +0 0.1319 +0 0.0722 +0 0.1314 +0 0.0920 +0 0.1547 +0 0.0298 +0 0.0557 +0 0.0509 +0 0.1668 +1 0.7654 +0 0.0449 +0 0.0648 +0 0.4864 +0 0.0587 +0 0.1194 +0 0.1473 +0 0.3401 +0 0.1210 +0 0.2092 +0 0.0678 +0 0.0473 +0 0.3280 +0 0.1266 +0 0.0858 +0 0.0906 +0 0.1073 +0 0.1177 +0 0.0808 +0 0.1230 +0 0.1868 +0 0.1166 +0 0.0843 +0 0.0505 +0 0.0865 +0 0.1332 +0 0.0951 +0 0.2547 +0 0.1325 +0 0.1610 +0 0.2093 +0 0.1960 +0 0.0772 +0 0.0616 +0 0.0637 +0 0.2155 +0 0.1114 +0 0.0470 +0 0.1078 +1 0.7780 +0 0.0842 +0 0.0589 +0 0.0991 +0 0.0762 +0 0.2701 +0 0.0745 +0 0.3410 +0 0.0885 +0 0.0620 +0 0.2032 +0 0.1712 +0 0.6679 +0 0.1700 +0 0.0460 +0 0.1551 +0 0.1040 +0 0.0820 +0 0.5546 +0 0.1581 +0 0.1828 +0 0.0814 +0 0.2314 +0 0.0894 +0 0.6749 +0 0.0785 +0 0.1151 +0 0.1520 +0 0.1018 +0 0.0374 +0 0.0613 +0 0.0720 +0 0.0373 +0 0.0789 +0 0.1296 +0 0.1258 +0 0.0613 +0 0.1317 +0 0.0400 +0 0.1282 +0 0.1267 +0 0.0922 +0 0.2205 +0 0.2360 +0 0.0755 +0 0.1922 +0 0.0804 +0 0.1426 +0 0.1682 +0 0.1073 +0 0.0757 +0 0.0949 +0 0.1178 +0 0.1203 +0 0.6794 +0 0.1032 +0 0.1605 +0 0.6682 +0 0.0855 +0 0.0945 +0 0.1551 +0 0.0710 +0 0.2913 +0 0.1417 +0 0.1050 +0 0.0657 +0 0.1099 +0 0.2617 +0 0.0959 +0 0.2203 +0 0.0448 +1 0.8377 +0 0.0470 +0 0.1469 +0 0.0717 +0 0.0921 +1 0.8367 +0 0.1707 +0 0.1954 +0 0.0431 +0 0.1220 +0 0.0467 +0 0.0974 +0 0.0803 +0 0.1351 +0 0.0510 +0 0.2798 +0 0.0574 +0 0.1319 +0 0.0632 +0 0.1161 +0 0.1212 +0 0.1121 +0 0.0615 +0 0.4568 +0 0.0526 +0 0.0778 +0 0.0393 +0 0.1849 +0 0.0981 +0 0.1060 +0 0.1270 +0 0.0582 +0 0.0523 +0 0.0947 +0 0.1408 +0 0.1392 +0 0.0585 +0 0.0865 +0 0.1557 +0 0.3104 +0 0.1053 +0 0.1585 +0 0.1566 +0 0.1395 +0 0.0786 +0 0.3782 +0 0.2169 +0 0.1266 +0 0.0573 +0 0.1514 +0 0.0967 +0 0.1465 +0 0.3113 +0 0.0987 +0 0.6835 +0 0.0470 +0 0.1102 +0 0.0747 +0 0.2303 +0 0.1105 +0 0.2167 +0 0.0807 +0 0.0494 +0 0.0703 +0 0.1186 +0 0.1765 +0 0.0688 +0 0.0438 +0 0.1145 +0 0.0601 +0 0.0993 +0 0.0831 +0 0.0674 +0 0.3067 +0 0.0559 +0 0.1042 +0 0.2478 +0 0.0612 +0 0.1001 +0 0.0579 +0 0.0643 +0 0.1830 +0 0.0683 +0 0.4090 +0 0.0914 +0 0.0639 +0 0.1171 +0 0.2457 +0 0.2367 +0 0.2903 +0 0.0659 +0 0.1063 +0 0.0519 +0 0.0534 +0 0.1758 +0 0.1450 +0 0.0928 +0 0.0472 +0 0.0903 +0 0.0639 +0 0.1944 +0 0.1593 +0 0.1934 +0 0.0932 +0 0.0978 +0 0.0463 +0 0.0526 +0 0.0740 +0 0.1055 +0 0.0766 +0 0.1436 +0 0.0888 +0 0.1060 +0 0.1134 +0 0.0883 +0 0.0725 +0 0.1260 +0 0.2438 +0 0.3117 +0 0.1898 +0 0.0932 +0 0.0744 +0 0.1319 +0 0.1039 +0 0.0405 +0 0.3996 +0 0.0725 +0 0.1945 +0 0.1589 +0 0.0698 +0 0.1707 +0 0.1173 +0 0.0491 +0 0.0824 +0 0.6547 +0 0.0895 +1 0.8057 +0 0.1706 +0 0.0478 +0 0.1959 +0 0.3862 +0 0.5944 +0 0.0630 +0 0.0629 +0 0.0518 +0 0.1455 +0 0.1943 +0 0.0937 +0 0.1430 +0 0.3457 +0 0.0579 +0 0.1327 +0 0.0439 +0 0.1210 +0 0.3003 +0 0.1241 +0 0.0847 +0 0.0702 +0 0.0978 +0 0.0762 +0 0.3164 +0 0.0507 +0 0.0541 +0 0.0604 +0 0.1013 +0 0.0299 +0 0.2018 +0 0.0910 +0 0.0708 +0 0.1528 +0 0.1607 +0 0.1070 +0 0.1038 +0 0.6714 +0 0.1421 +0 0.0797 +0 0.1281 +0 0.0559 +0 0.7422 +0 0.5785 +1 0.8115 +0 0.0429 +0 0.1083 +0 0.0538 +0 0.0961 +0 0.0441 +0 0.1833 +0 0.0522 +0 0.1782 +0 0.0762 +0 0.2082 +0 0.1178 +0 0.5357 +0 0.0708 +0 0.0678 +0 0.0698 +0 0.2246 +0 0.2016 +0 0.0361 +0 0.1396 +0 0.1014 +0 0.0542 +0 0.1298 +0 0.0755 +0 0.2577 +0 0.0554 +0 0.0650 +0 0.0503 +0 0.0786 +0 0.1621 +0 0.5625 +0 0.2254 +0 0.0680 +0 0.1189 +0 0.3124 +0 0.1506 +0 0.1415 +0 0.0401 +0 0.0690 +0 0.0631 +0 0.1019 +0 0.2124 +0 0.1358 +0 0.0880 +0 0.1258 +0 0.0368 +0 0.3617 +0 0.3181 +0 0.1232 +0 0.1044 +0 0.0558 +0 0.1561 +0 0.1929 +0 0.1445 +0 0.0317 +0 0.0702 +0 0.1558 +0 0.1225 +0 0.2032 +0 0.0540 +0 0.2320 +0 0.0448 +0 0.1051 +0 0.1847 +0 0.1546 +0 0.0662 +0 0.1143 +0 0.0619 +0 0.1970 +0 0.1691 +0 0.1282 +0 0.1246 +0 0.0709 +0 0.0457 +0 0.6834 +0 0.0857 +0 0.2317 +0 0.0617 +0 0.1475 +0 0.1598 +0 0.1750 +1 0.8164 +0 0.1308 +0 0.0407 +0 0.1457 +0 0.2394 +0 0.0903 +0 0.0917 +0 0.0587 +0 0.0800 +0 0.5756 +0 0.0512 +1 0.7565 +0 0.1277 +0 0.1385 +0 0.0735 +0 0.0842 +0 0.1519 +0 0.0512 +0 0.0705 +0 0.1738 +0 0.0748 +0 0.2142 +0 0.0618 +0 0.0602 +0 0.0954 +0 0.0893 +0 0.1396 +0 0.0425 +0 0.2640 +0 0.0828 +0 0.0505 +0 0.0594 +0 0.0991 +0 0.0556 +0 0.1246 +0 0.0725 +0 0.1245 +0 0.0772 +0 0.1631 +0 0.0798 +0 0.1501 +0 0.1141 +0 0.0723 +0 0.0455 +0 0.1066 +0 0.1509 +0 0.0558 +0 0.0892 +0 0.1406 +0 0.1797 +0 0.2495 +0 0.0680 +0 0.0670 +0 0.2085 +0 0.1261 +0 0.0656 +0 0.1370 +0 0.1487 +0 0.0486 +0 0.0847 +0 0.1264 +0 0.1139 +0 0.0616 +0 0.0290 +0 0.4533 +0 0.1109 +0 0.0845 +0 0.0838 +0 0.0521 +0 0.1873 +0 0.0457 +0 0.0897 +0 0.1123 +0 0.0799 +0 0.2552 +0 0.0752 +0 0.2238 +0 0.0776 +0 0.2723 +0 0.1654 +0 0.1960 +0 0.1450 +0 0.1125 +0 0.1653 +0 0.0463 +0 0.1163 +0 0.1014 +0 0.1731 +0 0.0912 +0 0.1133 +0 0.0910 +1 0.8209 +0 0.1456 +0 0.2635 +0 0.0995 +1 0.8673 +0 0.5813 +0 0.0883 +0 0.0554 +0 0.1018 +0 0.1622 +0 0.0700 +0 0.0947 +0 0.0764 +0 0.0884 +0 0.2942 +0 0.0992 +0 0.2216 +1 0.8094 +0 0.0797 +0 0.0944 +0 0.1414 +0 0.1528 +0 0.1692 +0 0.0335 +0 0.0688 +0 0.0747 +0 0.0978 +0 0.1388 +0 0.0828 +0 0.0596 +0 0.0488 +0 0.1082 +0 0.3210 +0 0.0861 +0 0.5145 +0 0.3520 +0 0.0721 +0 0.1315 +0 0.1275 +0 0.5945 +0 0.0582 +0 0.0529 +0 0.1368 +0 0.0512 +0 0.2082 +0 0.1837 +0 0.0620 +0 0.1678 +0 0.0310 +0 0.0484 +0 0.1221 +0 0.1771 +0 0.1346 +1 0.8744 +0 0.1718 +0 0.2143 +0 0.1025 +0 0.0596 +0 0.0957 +0 0.1579 +0 0.0762 +0 0.0439 +0 0.0528 +0 0.1501 +0 0.0660 +0 0.1503 +0 0.1401 +0 0.0965 +0 0.0936 +0 0.0776 +0 0.0327 +0 0.0992 +0 0.0357 +0 0.0994 +0 0.0656 +0 0.0683 +0 0.0649 +0 0.1544 +0 0.2080 +0 0.3099 +0 0.1837 +0 0.0733 +0 0.0731 +0 0.2608 +0 0.1062 +0 0.0986 +0 0.1937 +0 0.0830 +0 0.1892 +0 0.1030 +0 0.2790 +0 0.2261 +0 0.0910 +0 0.1583 +0 0.0474 +0 0.0774 +0 0.0569 +0 0.3200 +0 0.0823 +0 0.1837 +0 0.1849 +0 0.1205 +0 0.6324 +0 0.2841 +0 0.1826 +0 0.0603 +0 0.0727 +0 0.4678 +0 0.2758 +0 0.0741 +0 0.0907 +0 0.0974 +0 0.3418 +0 0.0722 +0 0.1251 +0 0.5546 +0 0.0439 +0 0.2573 +0 0.0914 +0 0.0750 +0 0.7095 +0 0.1117 +0 0.0602 +0 0.0632 +0 0.1144 +0 0.1980 +0 0.2121 +0 0.2117 +0 0.0605 +0 0.0495 +0 0.0632 +0 0.0553 +0 0.0635 +0 0.0860 +0 0.0666 +0 0.2856 +0 0.1318 +0 0.0907 +0 0.3378 +0 0.1214 +0 0.0798 +0 0.0501 +0 0.4400 +1 0.7733 +0 0.1814 +0 0.1005 +0 0.0924 +0 0.1118 +0 0.1992 +0 0.0679 +0 0.1602 +0 0.0478 +0 0.0881 +0 0.2487 +1 0.8155 +0 0.0386 +0 0.1340 +0 0.0690 +0 0.0570 +0 0.1099 +0 0.0924 +0 0.0488 +0 0.1446 +0 0.1417 +0 0.1153 +0 0.1002 +0 0.1257 +0 0.2034 +0 0.1062 +0 0.0723 +0 0.0798 +0 0.1264 +0 0.2871 +0 0.0558 +0 0.0666 +0 0.3633 +0 0.0967 +0 0.1119 +0 0.2101 +0 0.1351 +0 0.0838 +0 0.0698 +0 0.1048 +0 0.0797 +0 0.0464 +0 0.0919 +0 0.3639 +0 0.3924 +0 0.0973 +1 0.7935 +0 0.0573 +0 0.1208 +0 0.0413 +0 0.0631 +0 0.0655 +0 0.1862 +0 0.0639 +0 0.1761 +0 0.1429 +0 0.2805 +0 0.0899 +1 0.7923 +0 0.0645 +0 0.0881 +0 0.4389 +0 0.1318 +0 0.1853 +0 0.2138 +0 0.1636 +0 0.1409 +0 0.0807 +0 0.0511 +0 0.1450 +0 0.0546 +0 0.0785 +0 0.0487 +0 0.1054 +0 0.0480 +0 0.0850 +0 0.0960 +0 0.1024 +0 0.1853 +0 0.1197 +0 0.0473 +0 0.0666 +0 0.1091 +0 0.0485 +0 0.0556 +0 0.1813 +0 0.0551 +0 0.6545 +0 0.1355 +0 0.1010 +0 0.7026 +0 0.1283 +0 0.0826 +1 0.7522 +0 0.0656 +0 0.0952 +0 0.0992 +0 0.0955 +0 0.1229 +0 0.0955 +0 0.0400 +0 0.1016 +0 0.0877 +0 0.1354 +0 0.3849 +0 0.1097 +0 0.7268 +0 0.1124 +0 0.1333 +0 0.1670 +0 0.0883 +0 0.0620 +0 0.2798 +0 0.0503 +0 0.0757 +0 0.1537 +0 0.1137 +0 0.2312 +0 0.2359 +0 0.1752 +0 0.0712 +0 0.0783 +0 0.0551 +0 0.0850 +0 0.1007 +0 0.0787 +0 0.1055 +0 0.1525 +0 0.0295 +0 0.3068 +0 0.1844 +0 0.3547 +0 0.2081 +0 0.1261 +0 0.1402 +0 0.0999 +0 0.2075 +0 0.1507 +0 0.2030 +0 0.2893 +0 0.4368 +0 0.2141 +0 0.1208 +0 0.2067 +0 0.0756 +0 0.0508 +0 0.0874 +0 0.0619 +0 0.1380 +0 0.0581 +0 0.0592 +0 0.0456 +0 0.1567 +0 0.0497 +0 0.0683 +0 0.0825 +0 0.1758 +0 0.1222 +0 0.0708 +0 0.5315 +0 0.1554 +0 0.0739 +0 0.0752 +0 0.1897 +0 0.2211 +0 0.1794 +0 0.1446 +0 0.0779 +0 0.1782 +0 0.0514 +0 0.1344 +0 0.1233 +0 0.0830 +0 0.1359 +0 0.1186 +0 0.1947 +0 0.1925 +0 0.0779 +1 0.7583 +0 0.0589 +0 0.1303 +0 0.1000 +0 0.1285 +0 0.2210 +0 0.0721 +0 0.0521 +0 0.1404 +0 0.0532 +0 0.0581 +0 0.1124 +0 0.0461 +0 0.1760 +0 0.0681 +0 0.7216 +0 0.1481 +0 0.0451 +0 0.0894 +0 0.0684 +0 0.0726 +0 0.1746 +0 0.0669 +0 0.0885 +0 0.0586 +0 0.5032 +0 0.0773 +0 0.1012 +0 0.1577 +0 0.0975 +0 0.2312 +0 0.0481 +0 0.1808 +0 0.0390 +0 0.2324 +0 0.1606 +0 0.0515 +0 0.1576 +0 0.1196 +1 0.8123 +0 0.1611 +0 0.0422 +0 0.1851 +0 0.3003 +0 0.1107 +0 0.0477 +0 0.1456 +0 0.1995 +0 0.0884 +0 0.2319 +0 0.1366 +0 0.1234 +0 0.1452 +0 0.1034 +0 0.1508 +0 0.2632 +0 0.0493 +0 0.0923 +0 0.0776 +0 0.1090 +0 0.0977 +0 0.0739 +0 0.1734 +0 0.0336 +0 0.0545 +0 0.0588 +0 0.0727 +0 0.0907 +0 0.2107 +0 0.1521 +0 0.0660 +0 0.0968 +0 0.1292 +0 0.1832 +0 0.2155 +0 0.0584 +0 0.0810 +0 0.1827 +0 0.0896 +0 0.1923 +0 0.1836 +1 0.8416 +0 0.0832 +0 0.0669 +0 0.2168 +0 0.0984 +0 0.0974 +0 0.1422 +0 0.2356 +0 0.0609 +0 0.1357 +0 0.0869 +0 0.1900 +0 0.1790 +0 0.0689 +0 0.0897 +0 0.1051 +0 0.0979 +0 0.0412 +0 0.1096 +0 0.0975 +0 0.1227 +0 0.0975 +0 0.0866 +0 0.5189 +1 0.8291 +0 0.0396 +0 0.0814 +0 0.0733 +0 0.3291 +0 0.2141 +0 0.4839 +0 0.0658 +1 0.8037 +0 0.0736 +0 0.0678 +0 0.2726 +0 0.0996 +0 0.1098 +0 0.0512 +0 0.1519 +0 0.0524 +0 0.0832 +0 0.0687 +0 0.0830 +0 0.3056 +0 0.2377 +0 0.0809 +0 0.1419 +0 0.1244 +0 0.0804 +0 0.1487 +0 0.0789 +0 0.0719 +0 0.0923 +0 0.1665 +0 0.6672 +0 0.7258 +0 0.0716 +1 0.8196 +0 0.1729 +0 0.0633 +0 0.0429 +0 0.7260 +0 0.1156 +0 0.1115 +0 0.0793 +0 0.1762 +0 0.2440 +0 0.0729 +0 0.0622 +0 0.0694 +0 0.1577 +0 0.1206 +0 0.0732 +0 0.0533 +0 0.0853 +0 0.1522 +0 0.0884 +0 0.1380 +0 0.0460 +0 0.1277 +0 0.0727 +1 0.7798 +0 0.1211 +0 0.6750 +0 0.1103 +0 0.1143 +0 0.1389 +0 0.0956 +0 0.1286 +0 0.1751 +0 0.0914 +0 0.6717 +0 0.0998 +0 0.0662 +0 0.1042 +0 0.1178 +0 0.0662 +0 0.0786 +0 0.1249 +0 0.0483 +0 0.1686 +0 0.0484 +0 0.1210 +0 0.0741 +0 0.1072 +0 0.0481 +0 0.0715 +0 0.1419 +0 0.1704 +0 0.1049 +0 0.0919 +0 0.0404 +0 0.0730 +0 0.0862 +0 0.1946 +0 0.0492 +0 0.2707 +0 0.0635 +0 0.0845 +0 0.1590 +0 0.2023 +0 0.6064 +0 0.1583 +0 0.1104 +0 0.0348 +0 0.0769 +0 0.1196 +0 0.3999 +0 0.1758 +0 0.1216 +0 0.1529 +0 0.1179 +0 0.1993 +0 0.1858 +0 0.0757 +0 0.2771 +0 0.1276 +0 0.0503 +0 0.6064 +0 0.2707 +0 0.2331 +0 0.1862 +0 0.0787 +0 0.1416 +0 0.3665 +0 0.1969 +0 0.0740 +0 0.1143 +0 0.1567 +0 0.1137 +0 0.0709 +0 0.0672 +0 0.0566 +0 0.1022 +0 0.1038 +0 0.1063 +0 0.0567 +0 0.0648 +0 0.0547 +0 0.1398 +0 0.1386 +0 0.1140 +0 0.1349 +0 0.0632 +0 0.0782 +0 0.0750 +0 0.0883 +0 0.1262 +0 0.1457 +0 0.0638 +0 0.0887 +0 0.0967 +0 0.0799 +0 0.0681 +0 0.1086 +0 0.0771 +0 0.1742 +0 0.0623 +0 0.3415 +0 0.0936 +0 0.0414 +0 0.1264 +0 0.0963 +0 0.0969 +0 0.2248 +0 0.1254 +0 0.0727 +0 0.3278 +0 0.0984 +0 0.1158 +0 0.1460 +0 0.0984 +0 0.1855 +0 0.5739 +0 0.0519 +0 0.1873 +0 0.3475 +0 0.0674 +0 0.0353 +1 0.7919 +0 0.0731 +0 0.0639 +0 0.1038 +0 0.0626 +0 0.0553 +0 0.0680 +0 0.0652 +0 0.1515 +0 0.0645 +0 0.1102 +0 0.1111 +0 0.1397 +0 0.1537 +1 0.7717 +0 0.3202 +0 0.0538 +0 0.0679 +0 0.0965 +0 0.0680 +0 0.1430 +0 0.1325 +0 0.0859 +0 0.0774 +0 0.1834 +0 0.1199 +0 0.1862 +0 0.1222 +0 0.1634 +0 0.2397 +0 0.0760 +0 0.1441 +0 0.1777 +0 0.1330 +0 0.0567 +0 0.1675 +0 0.1016 +0 0.0824 +0 0.1863 +0 0.0964 +0 0.0653 +0 0.0635 +0 0.0645 +0 0.0815 +0 0.0775 +0 0.2622 +0 0.1298 +0 0.1553 +0 0.0645 +0 0.1081 +0 0.1785 +0 0.1316 +0 0.0701 +0 0.0355 +0 0.1483 +0 0.2239 +0 0.1246 +0 0.0439 +0 0.0755 +0 0.0473 +0 0.1874 +0 0.1049 +0 0.0885 +0 0.1669 +0 0.0545 +0 0.1223 +0 0.0989 +0 0.1192 +0 0.0951 +0 0.1150 +0 0.2162 +0 0.1084 +0 0.0641 +0 0.1443 +0 0.2726 +0 0.0704 +0 0.0740 +0 0.0685 +0 0.2009 +0 0.2024 +0 0.0444 +0 0.0385 +0 0.1903 +0 0.0852 +0 0.4127 +0 0.1149 +0 0.6275 +0 0.0699 +0 0.0938 +0 0.0520 +0 0.1492 +0 0.1102 +0 0.2073 +0 0.0447 +0 0.0491 +0 0.1320 +0 0.0844 +0 0.0899 +0 0.0407 +1 0.8240 +0 0.1232 +0 0.0738 +0 0.2641 +0 0.0694 +0 0.1973 +0 0.2939 +1 0.8324 +0 0.0558 +0 0.2892 +0 0.0884 +0 0.0994 +0 0.0905 +0 0.0761 +0 0.1537 +0 0.0936 +0 0.0866 +0 0.2670 +0 0.0704 +0 0.0855 +0 0.1019 +0 0.1880 +0 0.2103 +0 0.0931 +0 0.1401 +0 0.0669 +0 0.2794 +0 0.1508 +0 0.2741 +0 0.0354 +0 0.1240 +0 0.6871 +0 0.0677 +0 0.0822 +0 0.0860 +0 0.0559 +0 0.1723 +0 0.0976 +0 0.1021 +0 0.0713 +0 0.1461 +0 0.0898 +1 0.7621 +0 0.1068 +0 0.1234 +0 0.2653 +0 0.0634 +0 0.0483 +0 0.0983 +0 0.1166 +0 0.0699 +0 0.0663 +0 0.1048 +0 0.0496 +0 0.1397 +0 0.0645 +0 0.2717 +0 0.1661 +0 0.2216 +0 0.0814 +0 0.0460 +0 0.0612 +0 0.0730 +0 0.0705 +0 0.1411 +0 0.1180 +0 0.0677 +0 0.0463 +0 0.1075 +0 0.1034 +0 0.2062 +0 0.0628 +0 0.1883 +0 0.5190 +0 0.0761 +0 0.2964 +0 0.4895 +0 0.2060 +0 0.2249 +1 0.7646 +0 0.1512 +0 0.0640 +0 0.1640 +0 0.1095 +0 0.1833 +0 0.4453 +0 0.2366 +0 0.1036 +0 0.1454 +0 0.1031 +0 0.1734 +0 0.0944 +0 0.0485 +0 0.0952 +0 0.1035 +0 0.0982 +0 0.0375 +0 0.1208 +0 0.0985 +0 0.6798 +0 0.0514 +0 0.0617 +0 0.0540 +0 0.0804 +0 0.0607 +0 0.1636 +1 0.7570 +0 0.2071 +0 0.0658 +0 0.2453 +0 0.0991 +1 0.8351 +0 0.1376 +0 0.0920 +0 0.3006 +0 0.5907 +0 0.1155 +0 0.1645 +0 0.1648 +0 0.0471 +0 0.1739 +0 0.0762 +0 0.0825 +0 0.1413 +0 0.0659 +0 0.0396 +0 0.0592 +0 0.0895 +0 0.0741 +0 0.1819 +0 0.0420 +0 0.0832 +0 0.1264 +0 0.1079 +0 0.1562 +0 0.0644 +0 0.1832 +0 0.0680 +0 0.0953 +0 0.0762 +0 0.0688 +0 0.2095 +0 0.0681 +0 0.1958 +0 0.1440 +0 0.0445 +0 0.3313 +0 0.1081 +0 0.0701 +0 0.1058 +0 0.1807 +0 0.0613 +0 0.0606 +0 0.0303 +0 0.1056 +0 0.1232 +0 0.0836 +0 0.0882 +0 0.1670 +0 0.1431 +0 0.2344 +0 0.0634 +0 0.0988 +0 0.0682 +0 0.0590 +0 0.0910 +0 0.0993 +0 0.1078 +0 0.0960 +0 0.0653 +0 0.0822 +0 0.1277 +0 0.7362 +0 0.1018 +0 0.3483 +0 0.0928 +0 0.0920 +0 0.1603 +0 0.2221 +0 0.0587 +0 0.1309 +0 0.1395 +0 0.1435 +0 0.1752 +0 0.0949 +0 0.0568 +0 0.0310 +0 0.0655 +0 0.0722 +0 0.1507 +0 0.0664 +0 0.0794 +0 0.1336 +0 0.2502 +0 0.1437 +0 0.1345 +0 0.1042 +0 0.2829 +0 0.1008 +0 0.0648 +0 0.3041 +0 0.1182 +0 0.4671 +0 0.0630 +0 0.1170 +0 0.2492 +0 0.1107 +0 0.0425 +0 0.0909 +0 0.0482 +0 0.2118 +0 0.2524 +0 0.1477 +0 0.0700 +0 0.0762 +0 0.3497 +0 0.1637 +0 0.5980 +0 0.0783 +0 0.0565 +0 0.0840 +0 0.0790 +0 0.5980 +0 0.2499 +0 0.0959 +0 0.0837 +0 0.0867 +0 0.1045 +0 0.1906 +0 0.1442 +0 0.1170 +0 0.1133 +0 0.0636 +0 0.2700 +0 0.1417 +0 0.2654 +0 0.0890 +0 0.0740 +0 0.0962 +0 0.1985 +0 0.2897 +0 0.1458 +0 0.0510 +0 0.1302 +0 0.2195 +0 0.1796 +0 0.0743 +0 0.0766 +0 0.6131 +0 0.1785 +0 0.1685 +0 0.6398 +0 0.1435 +0 0.0865 +0 0.1219 +0 0.1862 +0 0.0838 +1 0.7770 +0 0.0542 +0 0.0568 +0 0.1780 +0 0.0559 +0 0.2603 +0 0.0739 +0 0.1843 +0 0.2387 +0 0.6100 +0 0.1236 +0 0.0752 +0 0.1088 +0 0.0640 +0 0.0983 +0 0.1205 +0 0.0698 +0 0.2641 +0 0.0764 +0 0.0375 +0 0.1195 +0 0.3031 +0 0.0877 +0 0.0528 +0 0.2017 +0 0.1583 +0 0.0895 +0 0.2613 +0 0.0923 +0 0.1105 +0 0.0795 +0 0.1640 +0 0.0850 +0 0.5306 +0 0.1237 +0 0.0996 +0 0.0866 +0 0.3426 +0 0.0899 +0 0.0952 +0 0.0307 +0 0.1640 +0 0.0938 +0 0.1024 +0 0.1125 +0 0.2263 +0 0.0552 +0 0.1271 +0 0.1183 +0 0.0780 +0 0.5600 +0 0.1035 +0 0.0773 +0 0.1105 +0 0.1800 +0 0.0453 +0 0.0741 +0 0.1180 +0 0.1863 +0 0.1065 +0 0.0686 +0 0.1073 +0 0.0732 +0 0.1991 +0 0.0728 +0 0.2092 +0 0.0949 +0 0.0566 +0 0.2360 +0 0.1597 +0 0.0854 +0 0.1205 +0 0.1701 +0 0.0710 +0 0.0682 +0 0.6298 +0 0.1057 +0 0.0489 +0 0.1699 +0 0.1074 +0 0.0809 +0 0.1013 +1 0.8726 +0 0.0715 +0 0.3066 +0 0.1725 +0 0.1630 +0 0.2712 +0 0.0576 +0 0.0690 +0 0.0755 +0 0.0636 +0 0.5911 +0 0.3319 +0 0.2001 +0 0.0957 +0 0.1930 +0 0.0850 +0 0.0707 +0 0.0537 +0 0.0633 +0 0.2888 +0 0.0633 +0 0.2303 +0 0.0497 +0 0.1323 +0 0.1076 +0 0.1533 +0 0.2458 +0 0.1489 +0 0.0373 +0 0.1189 +0 0.1600 +0 0.1383 +0 0.1101 +0 0.1051 +0 0.0658 +0 0.1013 +0 0.1125 +0 0.5134 +0 0.1809 +0 0.0971 +0 0.2221 +0 0.1597 +0 0.1406 +0 0.1084 +0 0.6936 +0 0.1345 +0 0.0717 +0 0.0653 +0 0.1530 +0 0.0520 +0 0.0888 +0 0.0859 +0 0.0853 +0 0.2243 +0 0.0551 +0 0.0617 +0 0.2215 +0 0.0427 +0 0.1320 +0 0.4885 +0 0.0657 +0 0.4816 +0 0.2088 +0 0.1866 +0 0.0366 +0 0.1393 +0 0.2451 +0 0.1290 +0 0.0934 +0 0.3437 +0 0.0599 +0 0.1477 +0 0.1440 +0 0.0983 +0 0.1785 +0 0.0828 +0 0.1594 +0 0.0550 +0 0.1257 +0 0.1205 +0 0.1106 +0 0.0857 +0 0.0421 +0 0.1148 +0 0.0508 +0 0.1475 +0 0.1576 +0 0.0761 +0 0.2183 +0 0.0917 +0 0.1251 +0 0.0489 +0 0.0917 +0 0.1583 +0 0.1243 +0 0.3060 +0 0.0772 +0 0.0901 +0 0.0770 +0 0.1019 +0 0.1171 +0 0.0958 +0 0.1369 +0 0.0418 +0 0.5298 +0 0.0639 +0 0.1127 +0 0.1425 +0 0.1327 +0 0.1705 +0 0.3265 +0 0.3118 +0 0.1615 +0 0.1181 +0 0.3113 +0 0.0908 +1 0.8688 +0 0.0873 +0 0.1366 +0 0.0505 +0 0.1053 +0 0.1323 +0 0.2856 +0 0.7292 +0 0.0532 +0 0.0452 +0 0.0840 +0 0.1298 +0 0.3022 +0 0.2851 +0 0.3936 +0 0.0780 +0 0.1337 +0 0.0843 +0 0.1346 +0 0.1475 +0 0.0780 +0 0.1301 +1 0.8086 +0 0.1160 +0 0.0687 +0 0.0608 +0 0.0833 +0 0.0528 +0 0.0798 +0 0.0824 +0 0.0646 +0 0.0403 +0 0.0611 +0 0.2067 +0 0.2510 +0 0.2606 +0 0.1000 +0 0.0891 +0 0.0735 +0 0.1482 +0 0.0563 +0 0.0712 +0 0.3080 +0 0.1063 +0 0.0639 +0 0.2701 +0 0.0994 +0 0.1902 +0 0.0804 +0 0.1022 +0 0.0950 +0 0.2717 +0 0.0921 +0 0.1250 +0 0.3756 +0 0.0971 +0 0.0613 +0 0.2107 +0 0.1228 +0 0.1537 +0 0.2203 +0 0.4043 +0 0.1028 +0 0.0671 +0 0.1444 +0 0.0712 +0 0.1011 +0 0.1532 +0 0.1188 +0 0.0875 +0 0.0550 +0 0.1377 +0 0.1767 +0 0.0800 +0 0.0680 +0 0.0508 +0 0.0883 +0 0.0904 +0 0.1490 +0 0.1042 +0 0.4512 +0 0.1413 +0 0.1200 +0 0.1090 +0 0.0451 +0 0.1405 +0 0.1197 +0 0.1409 +0 0.0744 +0 0.6393 +0 0.1033 +0 0.1139 +0 0.1341 +0 0.0502 +0 0.0994 +1 0.7663 +0 0.0971 +0 0.1051 +0 0.1395 +0 0.1703 +0 0.1923 +0 0.0621 +0 0.1075 +1 0.7731 +0 0.3048 +0 0.1891 +0 0.0751 +0 0.1676 +0 0.0991 +0 0.1210 +0 0.0833 +0 0.0660 +0 0.0732 +0 0.1282 +0 0.0697 +0 0.0936 +0 0.1642 +0 0.0834 +0 0.0830 +0 0.0680 +0 0.2285 +0 0.1280 +0 0.1294 +0 0.0875 +0 0.0618 +0 0.1121 +0 0.0919 +0 0.1132 +0 0.3374 +0 0.1433 +0 0.1058 +0 0.3935 +0 0.7389 +0 0.1404 +0 0.1603 +0 0.1033 +0 0.1820 +0 0.1726 +0 0.0633 +0 0.1492 +0 0.1118 +0 0.1564 +0 0.1167 +0 0.0369 +0 0.0475 +0 0.0502 +0 0.1299 +0 0.1209 +0 0.2894 +0 0.2010 +0 0.0732 +0 0.0667 +0 0.1128 +0 0.1703 +0 0.0842 +0 0.0985 +0 0.0704 +0 0.1801 +0 0.1358 +0 0.1602 +0 0.0631 +0 0.0641 +0 0.5810 +0 0.0729 +0 0.3478 +0 0.1421 +0 0.2028 +0 0.1620 +0 0.0457 +0 0.1058 +0 0.2618 +0 0.4676 +0 0.0918 +0 0.1083 +0 0.0684 +0 0.3232 +0 0.0578 +0 0.0379 +0 0.0546 +0 0.1078 +0 0.0737 +0 0.1910 +0 0.1682 +0 0.0769 +0 0.0719 +0 0.1033 +0 0.0712 +0 0.0650 +0 0.1685 +0 0.0909 +0 0.5662 +0 0.0441 +1 0.8488 +0 0.1241 +0 0.0877 +0 0.0771 +0 0.2063 +0 0.0445 +0 0.0578 +0 0.3148 +0 0.0567 +0 0.0631 +0 0.0472 +0 0.2026 +1 0.8084 +0 0.1456 +0 0.0739 +1 0.7944 +0 0.1392 +0 0.0770 +0 0.0778 +0 0.1444 +0 0.1040 +0 0.0312 +0 0.0574 +0 0.2820 +0 0.0670 +0 0.1072 +0 0.2219 +0 0.2767 +0 0.0870 +0 0.1182 +0 0.0918 +0 0.2450 +0 0.1513 +0 0.0505 +0 0.1513 +0 0.1379 +0 0.1448 +0 0.1902 +0 0.0999 +0 0.1331 +0 0.0562 +0 0.1097 +0 0.1178 +0 0.0412 +0 0.1865 +0 0.1684 +0 0.1391 +0 0.0804 +0 0.0951 +0 0.0854 +0 0.0750 +0 0.0752 +0 0.0324 +0 0.1672 +0 0.1514 +0 0.0965 +0 0.1858 +0 0.0998 +0 0.0464 +0 0.0944 +0 0.0453 +0 0.0910 +0 0.3311 +1 0.8342 +0 0.1814 +0 0.0486 +0 0.2539 +0 0.5791 +0 0.0589 +0 0.1692 +0 0.2189 +0 0.1627 +0 0.1117 +0 0.1280 +0 0.0592 +0 0.7317 +0 0.1764 +0 0.1741 +0 0.0459 +0 0.0536 +0 0.0648 +0 0.1247 +0 0.0682 +0 0.0767 +0 0.6466 +0 0.2202 +0 0.1736 +0 0.1027 +0 0.1503 +0 0.0700 +0 0.0899 +0 0.1740 +0 0.0735 +0 0.0926 +0 0.1589 +0 0.0997 +0 0.2139 +0 0.0812 +0 0.1614 +0 0.0406 +0 0.1162 +0 0.0649 +0 0.0603 +0 0.1279 +0 0.0648 +0 0.3650 +0 0.1248 +0 0.1185 +0 0.0470 +0 0.1094 +0 0.0971 +0 0.4704 +0 0.0481 +0 0.1196 +0 0.1332 +0 0.1733 +0 0.1603 +0 0.1742 +0 0.0927 +0 0.1311 +0 0.1161 +0 0.2328 +0 0.1532 +0 0.0480 +0 0.0545 +0 0.0902 +0 0.3555 +0 0.0519 +0 0.0883 +0 0.4114 +0 0.0680 +0 0.1791 +0 0.2482 +0 0.1015 +0 0.1246 +0 0.0757 +0 0.1495 +0 0.0870 +0 0.2134 +0 0.2301 +0 0.2131 +0 0.6433 +0 0.0870 +0 0.4107 +0 0.2481 +0 0.1004 +0 0.0875 +0 0.3679 +0 0.1614 +0 0.0903 +0 0.1613 +0 0.1220 +0 0.0714 +0 0.0678 +0 0.0759 +0 0.1854 +0 0.1254 +0 0.1036 +0 0.1133 +0 0.0987 +0 0.2555 +0 0.0877 +0 0.0394 +0 0.1568 +0 0.1424 +0 0.2459 +0 0.0937 +0 0.0798 +0 0.2612 +0 0.0997 +0 0.1360 +0 0.1198 +0 0.0706 +0 0.0451 +0 0.0918 +0 0.3821 +0 0.0544 +0 0.1266 +0 0.2192 +0 0.1108 +0 0.0674 +0 0.1150 +0 0.0811 +0 0.0824 +0 0.0749 +0 0.1051 +0 0.0634 +0 0.1896 +0 0.2382 +0 0.2695 +0 0.0797 +0 0.3248 +0 0.1017 +0 0.1779 +0 0.0715 +0 0.1288 +0 0.1857 +0 0.0384 +0 0.1585 +0 0.4086 +0 0.1113 +0 0.0579 +0 0.1131 +0 0.0970 +0 0.0914 +0 0.0622 +0 0.1175 +0 0.6447 +0 0.1024 +0 0.0446 +0 0.1521 +1 0.8070 +0 0.1580 +0 0.0655 +0 0.3661 +0 0.0527 +0 0.0743 +0 0.0521 +0 0.1101 +0 0.1547 +0 0.1722 +0 0.0381 +0 0.0557 +0 0.0852 +0 0.1849 +0 0.1070 +0 0.1378 +0 0.0748 +0 0.2491 +0 0.1125 +0 0.1193 +0 0.0871 +0 0.0918 +0 0.0598 +0 0.2424 +0 0.0654 +0 0.3575 +0 0.3509 +0 0.1376 +0 0.2357 +0 0.2795 +0 0.1024 +0 0.1208 +0 0.1845 +0 0.0798 +0 0.0544 +0 0.1051 +0 0.1602 +0 0.0605 +0 0.1411 +0 0.0674 +0 0.1895 +0 0.1313 +0 0.6921 +0 0.1900 +0 0.0885 +0 0.0714 +0 0.6292 +0 0.0860 +0 0.0942 +0 0.0655 +0 0.2584 +0 0.1911 +0 0.2875 +0 0.3588 +0 0.1098 +0 0.0392 +0 0.1595 +0 0.2766 +0 0.0634 +0 0.1069 +0 0.0796 +0 0.0957 +0 0.3201 +0 0.1204 +0 0.1113 +0 0.4504 +0 0.0822 +0 0.1245 +0 0.6853 +0 0.0866 +0 0.2341 +0 0.1514 +0 0.2673 +0 0.0869 +0 0.1803 +0 0.0637 +0 0.3122 +0 0.2272 +0 0.0570 +0 0.0489 +0 0.1166 +0 0.1912 +0 0.1654 +0 0.1116 +0 0.1066 +0 0.0652 +0 0.0724 +0 0.0797 +0 0.0681 +0 0.1074 +0 0.0468 +0 0.1318 +0 0.2199 +0 0.0636 +0 0.1091 +0 0.1076 +0 0.1206 +0 0.1017 +0 0.1574 +0 0.0546 +0 0.0743 +0 0.0989 +0 0.2233 +0 0.0858 +0 0.1062 +0 0.2239 +0 0.1018 +0 0.0980 +0 0.1258 +0 0.0547 +0 0.1983 +0 0.1303 +0 0.2371 +0 0.0915 +0 0.2071 +0 0.0765 +0 0.1751 +0 0.1627 +0 0.0559 +0 0.0821 +0 0.2903 +0 0.0813 +0 0.1463 +0 0.1576 +0 0.1620 +0 0.1537 +0 0.2126 +0 0.1450 +1 0.7909 +0 0.2587 +0 0.0569 +0 0.0655 +0 0.2111 +0 0.3604 +0 0.1099 +0 0.1016 +0 0.4743 +0 0.1014 +0 0.1980 +0 0.1533 +0 0.0381 +0 0.0473 +0 0.0678 +0 0.1082 +0 0.0801 +0 0.1767 +0 0.1081 +0 0.1058 +0 0.0869 +0 0.0748 +0 0.2491 +0 0.2478 +0 0.0771 +0 0.0458 +0 0.1527 +0 0.1159 +0 0.1571 +0 0.0879 +0 0.2588 +0 0.6214 +0 0.0777 +0 0.0943 +0 0.1820 +0 0.0712 +0 0.0495 +0 0.0966 +0 0.0614 +0 0.1190 +0 0.0545 +0 0.0476 +0 0.0497 +0 0.3055 +0 0.1653 +0 0.1375 +0 0.0678 +0 0.0868 +0 0.0685 +0 0.1657 +0 0.1387 +0 0.1768 +0 0.0749 +0 0.0477 +0 0.1435 +0 0.0646 +0 0.1562 +0 0.0666 +0 0.1439 +0 0.3319 +0 0.1515 +0 0.0647 +0 0.0526 +0 0.0642 +0 0.2466 +0 0.3729 +0 0.1001 +0 0.2149 +0 0.1803 +0 0.1440 +0 0.1009 +0 0.1390 +0 0.1029 +0 0.0760 +0 0.1246 +0 0.1034 +0 0.6938 +0 0.0393 +0 0.0419 +0 0.1892 +0 0.2293 +0 0.0973 +0 0.1954 +0 0.2322 +0 0.0798 +0 0.0596 +0 0.3294 +0 0.2687 +0 0.0802 +0 0.0888 +0 0.0999 +0 0.1352 +0 0.0954 +0 0.0558 +0 0.7066 +0 0.1837 +0 0.1373 +0 0.0619 +0 0.1422 +0 0.2618 +0 0.0873 +0 0.0613 +0 0.0651 +0 0.0529 +0 0.1307 +0 0.0746 +0 0.1110 +0 0.0504 +0 0.0639 +0 0.0955 +0 0.1387 +0 0.4620 +0 0.3268 +0 0.0599 +0 0.0598 +0 0.0555 +0 0.1619 +0 0.0839 +0 0.0852 +0 0.0878 +0 0.1004 +1 0.7947 +0 0.2054 +0 0.1844 +0 0.1488 +0 0.0724 +0 0.1208 +0 0.1336 +0 0.0830 +0 0.0920 +0 0.1364 +0 0.0746 +0 0.0384 +0 0.1621 +0 0.1023 +0 0.2019 +0 0.0732 +0 0.0872 +0 0.2377 +0 0.0470 +0 0.1058 +0 0.0713 +0 0.1727 +0 0.0510 +0 0.0913 +0 0.1071 +0 0.0356 +0 0.0563 +1 0.7673 +0 0.0898 +0 0.1140 +0 0.0527 +0 0.0912 +0 0.0546 +0 0.2114 +0 0.0775 +0 0.1743 +0 0.0685 +0 0.0999 +0 0.0879 +0 0.0677 +0 0.2614 +0 0.0733 +0 0.1353 +0 0.5306 +0 0.0911 +0 0.2883 +0 0.3039 +0 0.0769 +0 0.2191 +1 0.7956 +0 0.1421 +0 0.3760 +0 0.2350 +0 0.0529 +0 0.1305 +0 0.0995 +0 0.0936 +0 0.1929 +0 0.0739 +0 0.2434 +0 0.0426 +0 0.1083 +0 0.0435 +0 0.1231 +0 0.0774 +0 0.1719 +0 0.0828 +0 0.0808 +0 0.0994 +0 0.0649 +0 0.2103 +0 0.1185 +0 0.1288 +0 0.0717 +0 0.0966 +0 0.0402 +0 0.1725 +0 0.0810 +0 0.0687 +0 0.0987 +0 0.0429 +0 0.0998 +0 0.1026 +0 0.1049 +0 0.0680 +0 0.1528 +0 0.0474 +0 0.1712 +1 0.8359 +0 0.0990 +0 0.1853 +0 0.2116 +0 0.0929 +0 0.1161 +0 0.0579 +0 0.0903 +0 0.0677 +0 0.2069 +0 0.0381 +0 0.1136 +0 0.7013 +0 0.0614 +0 0.0781 +0 0.1796 +0 0.1429 +0 0.0631 +0 0.2564 +0 0.2320 +0 0.0595 +0 0.1336 +0 0.0816 +0 0.0829 +0 0.3921 +0 0.1151 +0 0.0886 +0 0.1180 +0 0.4559 +0 0.0666 +0 0.2009 +0 0.1139 +0 0.0371 +0 0.0610 +0 0.1132 +0 0.1554 +0 0.0740 +0 0.1908 +0 0.0391 +0 0.1712 +0 0.0784 +0 0.1083 +0 0.7098 +0 0.0975 +0 0.6229 +0 0.0986 +0 0.1027 +0 0.3344 +0 0.0663 +0 0.1508 +0 0.1164 +0 0.0785 +0 0.1175 +0 0.0813 +0 0.0431 +0 0.3206 +0 0.0688 +0 0.0870 +0 0.2747 +1 0.8385 +0 0.1741 +0 0.2888 +0 0.0473 +0 0.2485 +0 0.0871 +0 0.2935 +0 0.1374 +0 0.0574 +0 0.0686 +0 0.2242 +0 0.0524 +0 0.2357 +0 0.1142 +0 0.1041 +0 0.0915 +0 0.4055 +0 0.1683 +0 0.1176 +0 0.1484 +0 0.1118 +0 0.0488 +0 0.0997 +0 0.0996 +0 0.0435 +0 0.0677 +0 0.1974 +0 0.0766 +0 0.0907 +0 0.0619 +0 0.1071 +0 0.1052 +0 0.1638 +0 0.1102 +0 0.0456 +0 0.0440 +0 0.1643 +0 0.0724 +0 0.0780 +0 0.0550 +0 0.0575 +0 0.1172 +0 0.2022 +0 0.0708 +0 0.0542 +0 0.1013 +0 0.1094 +0 0.0511 +0 0.1016 +0 0.0516 +0 0.1600 +0 0.0903 +1 0.7841 +0 0.2527 +0 0.1857 +0 0.1084 +0 0.1127 +0 0.2986 +0 0.0654 +0 0.2056 +0 0.1543 +0 0.3569 +0 0.0837 +0 0.4601 +0 0.0494 +0 0.0792 +0 0.0529 +0 0.0464 +0 0.0887 +0 0.1306 +0 0.0582 +0 0.2168 +0 0.1038 +0 0.0878 +1 0.8169 +0 0.0718 +0 0.1239 +0 0.1076 +0 0.1236 +0 0.0461 +0 0.1179 +0 0.0867 +0 0.0901 +0 0.0856 +0 0.3642 +0 0.1211 +0 0.1009 +0 0.2273 +0 0.0738 +0 0.1578 +0 0.0948 +0 0.1577 +0 0.2533 +0 0.0836 +0 0.0593 +0 0.6091 +0 0.0926 +0 0.1306 +0 0.4583 +0 0.1331 +0 0.2099 +0 0.0773 +0 0.0416 +0 0.1102 +0 0.0864 +0 0.0692 +0 0.1525 +0 0.0467 +0 0.0915 +0 0.5923 +0 0.2032 +0 0.2212 +0 0.0806 +0 0.0901 +0 0.3534 +0 0.0968 +0 0.1717 +0 0.0985 +0 0.0561 +0 0.0791 +0 0.0448 +0 0.1374 +0 0.0874 +0 0.1056 +0 0.0616 +0 0.0545 +0 0.1042 +0 0.0704 +0 0.0680 +0 0.1289 +0 0.2922 +0 0.1481 +0 0.4819 +0 0.1050 +0 0.0954 +0 0.0392 +0 0.0958 +0 0.2581 +0 0.0671 +0 0.0530 +0 0.0586 +0 0.1514 +0 0.3198 +0 0.1703 +0 0.2576 +0 0.0748 +0 0.1781 +0 0.1662 +0 0.0940 +0 0.0499 +0 0.1648 +0 0.0928 +0 0.7164 +0 0.1761 +0 0.0967 +0 0.2525 +0 0.1078 +0 0.0934 +0 0.3217 +0 0.1077 +0 0.0551 +0 0.0937 +0 0.0542 +0 0.2308 +0 0.0827 +0 0.2274 +0 0.0643 +0 0.0446 +0 0.0525 +0 0.0923 +0 0.0488 +0 0.2432 +0 0.0606 +0 0.7422 +0 0.1451 +0 0.0999 +0 0.1872 +0 0.0565 +0 0.0404 +0 0.1579 +0 0.0442 +0 0.4761 +0 0.0852 +0 0.0987 +0 0.0830 +1 0.7912 +0 0.0715 +0 0.1248 +0 0.0596 +0 0.2458 +0 0.0703 +0 0.0402 +0 0.1206 +0 0.2178 +0 0.0608 +0 0.1132 +0 0.0563 +0 0.1862 +0 0.1882 +0 0.1765 +0 0.0791 +0 0.0618 +0 0.1911 +0 0.0988 +0 0.0745 +0 0.1182 +0 0.0536 +0 0.1600 +0 0.0615 +0 0.0790 +0 0.0792 +0 0.3490 +0 0.0834 +0 0.0918 +0 0.0616 +0 0.0687 +0 0.1025 +0 0.0868 +0 0.0753 +0 0.1269 +0 0.0632 +0 0.0568 +0 0.0833 +0 0.0399 +0 0.0639 +0 0.1175 +0 0.0538 +1 0.7565 +0 0.2294 +0 0.0569 +0 0.0799 +0 0.0508 +0 0.0913 +0 0.0573 +0 0.0533 +0 0.1501 +0 0.2950 +0 0.1082 +0 0.0460 +0 0.1031 +0 0.3972 +0 0.1178 +0 0.0954 +0 0.0531 +0 0.0441 +0 0.0814 +0 0.1250 +0 0.3664 +0 0.2240 +0 0.0979 +0 0.1130 +0 0.1311 +0 0.1726 +0 0.0998 +0 0.0625 +0 0.0337 +0 0.0802 +0 0.1094 +0 0.1403 +0 0.0950 +0 0.3714 +0 0.0807 +0 0.2080 +0 0.0851 +0 0.0607 +0 0.0440 +0 0.0896 +0 0.1045 +0 0.0969 +0 0.1466 +0 0.1433 +0 0.0645 +0 0.1965 +0 0.1467 +0 0.0604 +0 0.2318 +0 0.3469 +0 0.2515 +0 0.0804 +0 0.1567 +0 0.1005 +0 0.1907 +0 0.1204 +0 0.1087 +0 0.1120 +0 0.1342 +0 0.2250 +0 0.1181 +0 0.0757 +0 0.0701 +0 0.0856 +0 0.3601 +0 0.0722 +0 0.1873 +0 0.0309 +0 0.0647 +0 0.1522 +0 0.1186 +0 0.1150 +0 0.1450 +0 0.1084 +0 0.3874 +0 0.0882 +0 0.1234 +0 0.1754 +0 0.0906 +0 0.4739 +1 0.8663 +0 0.1798 +0 0.0967 +0 0.1223 +0 0.1151 +0 0.1316 +0 0.0828 +0 0.1223 +0 0.1085 +0 0.0436 +0 0.0732 +0 0.0855 +0 0.2009 +0 0.0416 +0 0.2776 +0 0.1097 +0 0.1934 +0 0.1007 +0 0.0908 +0 0.3471 +0 0.5811 +0 0.1488 +0 0.1038 +0 0.0783 +0 0.0747 +0 0.2804 +0 0.2784 +0 0.0466 +0 0.1284 +0 0.0565 +0 0.0437 +0 0.0604 +0 0.1130 +0 0.0323 +0 0.0694 +0 0.1536 +0 0.1899 +0 0.0869 +0 0.0950 +0 0.1762 +0 0.0464 +0 0.0940 +0 0.3309 +0 0.0434 +0 0.2507 +0 0.1161 +0 0.0504 +0 0.0589 +0 0.1495 +0 0.1324 +0 0.0804 +0 0.4761 +0 0.0603 +0 0.3640 +0 0.1063 +0 0.2994 +0 0.0731 +0 0.1169 +0 0.2067 +0 0.0763 +0 0.0744 +0 0.0959 +0 0.2054 +0 0.1596 +0 0.2141 +0 0.0585 +0 0.7232 +0 0.0696 +0 0.1420 +0 0.0478 +0 0.4344 +0 0.1102 +0 0.1015 +0 0.2881 +0 0.1390 +0 0.0571 +0 0.1236 +0 0.0861 +0 0.1218 +0 0.4003 +0 0.1938 +0 0.0609 +0 0.1691 +0 0.1123 +0 0.0823 +0 0.1329 +0 0.0391 +0 0.1019 +0 0.0812 +0 0.1061 +0 0.0832 +0 0.0869 +0 0.0880 +0 0.1015 +0 0.0701 +0 0.0836 +0 0.1536 +0 0.1033 +0 0.0997 +0 0.0458 +0 0.0729 +0 0.1748 +0 0.1664 +0 0.1014 +0 0.0712 +0 0.4110 +0 0.1618 +0 0.0762 +0 0.0568 +0 0.1432 +0 0.1091 +0 0.0940 +0 0.0438 +0 0.0916 +0 0.1147 +0 0.0362 +0 0.0786 +0 0.1458 +0 0.0648 +0 0.1101 +0 0.5417 +0 0.0517 +0 0.0742 +0 0.0669 +0 0.1500 +0 0.1543 +0 0.1930 +0 0.1422 +0 0.0732 +0 0.0922 +0 0.0657 +0 0.1509 +0 0.1199 +0 0.0517 +0 0.0602 +0 0.0654 +0 0.1907 +0 0.3005 +0 0.0951 +0 0.0527 +0 0.1256 +0 0.2958 +0 0.0713 +0 0.2006 +0 0.1666 +0 0.1178 +0 0.0936 +0 0.1229 +0 0.1206 +0 0.1021 +0 0.0998 +0 0.0599 +0 0.4130 +0 0.1451 +0 0.1121 +0 0.2006 +0 0.0760 +0 0.0541 +0 0.5289 +0 0.1523 +0 0.0891 +0 0.0685 +0 0.0995 +0 0.0615 +0 0.0723 +0 0.1328 +0 0.0837 +0 0.0749 +0 0.0556 +0 0.1147 +0 0.0667 +0 0.0637 +0 0.1929 +0 0.4069 +0 0.0548 +0 0.1149 +0 0.0825 +0 0.1195 +0 0.2081 +0 0.0841 +0 0.0908 +0 0.3632 +0 0.1230 +0 0.0374 +0 0.1141 +0 0.0409 +0 0.1233 +0 0.2824 +0 0.0578 +0 0.1816 +0 0.1642 +0 0.0786 +0 0.1389 +0 0.2302 +0 0.0994 +0 0.1232 +0 0.6953 +0 0.1473 +0 0.6052 +0 0.1391 +0 0.0482 +0 0.1861 +0 0.2498 +1 0.8116 +0 0.3549 +0 0.0655 +0 0.1603 +0 0.4892 +0 0.1218 +0 0.4449 +0 0.0955 +0 0.1307 +0 0.0960 +0 0.1171 +0 0.1361 +0 0.1789 +0 0.0717 +0 0.2492 +0 0.1417 +0 0.0766 +0 0.1381 +0 0.1339 +0 0.0765 +0 0.1996 +0 0.1802 +0 0.0478 +0 0.1093 +0 0.2339 +0 0.2789 +0 0.0879 +0 0.2949 +0 0.0730 +0 0.0459 +0 0.0882 +0 0.0760 +0 0.1939 +0 0.1719 +0 0.1118 +0 0.1171 +0 0.2301 +0 0.2611 +0 0.1532 +0 0.0776 +0 0.1007 +0 0.0759 +0 0.0393 +0 0.2932 +0 0.1215 +0 0.0789 +0 0.1385 +0 0.2338 +0 0.0714 +0 0.1221 +0 0.0692 +0 0.1110 +0 0.6712 +0 0.1209 +0 0.1111 +0 0.2648 +0 0.1255 +0 0.1091 +0 0.0502 +0 0.0414 +0 0.1660 +0 0.0778 +0 0.0978 +0 0.1369 +0 0.0539 +0 0.0774 +0 0.0773 +0 0.1121 +0 0.1364 +0 0.0993 +0 0.1972 +0 0.0781 +0 0.1054 +0 0.1278 +0 0.2536 +0 0.1225 +0 0.2215 +0 0.0531 +0 0.0692 +0 0.0947 +0 0.1092 +0 0.1022 +0 0.1292 +0 0.3119 +0 0.1232 +0 0.2379 +1 0.8398 +0 0.1623 +0 0.0721 +0 0.0814 +0 0.1419 +0 0.0565 +0 0.1730 +0 0.1146 +0 0.1595 +0 0.0695 +0 0.1138 +0 0.0794 +0 0.1159 +1 0.8097 +0 0.1097 +0 0.0644 +0 0.1412 +0 0.0642 +0 0.0504 +0 0.1469 +0 0.1264 +0 0.1671 +0 0.0587 +0 0.7143 +0 0.0459 +0 0.2839 +0 0.1579 +0 0.3189 +0 0.2794 +0 0.2175 +0 0.0701 +0 0.1948 +0 0.1064 +0 0.1304 +0 0.0864 +0 0.0430 +0 0.2840 +0 0.0510 +0 0.0860 +0 0.1777 +0 0.1173 +0 0.0933 +0 0.0705 +0 0.1283 +0 0.2243 +0 0.0570 +0 0.0909 +0 0.0717 +0 0.0537 +0 0.1144 +0 0.1235 +0 0.0604 +0 0.1196 +0 0.0737 +0 0.1189 +0 0.1517 +0 0.0590 +0 0.0928 +0 0.1500 +0 0.3874 +0 0.0624 +0 0.1792 +0 0.0898 +0 0.1219 +0 0.5935 +0 0.6484 +0 0.0669 +0 0.1101 +0 0.1214 +0 0.0851 +0 0.0866 +0 0.0695 +0 0.2449 +0 0.0457 +0 0.2691 +0 0.1139 +0 0.2823 +0 0.0894 +0 0.0556 +0 0.1306 +0 0.0867 +0 0.1624 +0 0.1065 +0 0.0451 +0 0.1782 +0 0.0892 +0 0.0974 +0 0.0389 +0 0.0717 +0 0.2318 +0 0.0508 +0 0.0483 +0 0.1214 +0 0.1005 +0 0.0728 +0 0.1317 +0 0.0938 +0 0.1993 +0 0.2584 +0 0.0778 +0 0.0747 +0 0.2209 +0 0.1291 +0 0.1200 +0 0.0660 +0 0.2065 +0 0.1012 +0 0.2535 +0 0.0555 +0 0.1021 +0 0.1733 +0 0.1927 +0 0.1118 +0 0.1238 +0 0.0808 +0 0.1318 +0 0.1195 +0 0.1115 +0 0.2563 +0 0.0659 +0 0.4427 +0 0.0973 +0 0.1823 +0 0.0477 +0 0.1947 +0 0.0551 +0 0.2366 +0 0.0813 +0 0.1116 +0 0.1557 +0 0.0500 +0 0.0624 +0 0.0756 +0 0.2747 +0 0.1476 +0 0.0832 +0 0.0610 +0 0.0582 +0 0.1384 +0 0.1160 +0 0.1035 +0 0.1292 +0 0.0739 +0 0.1779 +0 0.0562 +0 0.0521 +0 0.0660 +0 0.0729 +0 0.1892 +0 0.1932 +0 0.0400 +0 0.1241 +0 0.6323 +0 0.1684 +0 0.1074 +0 0.0718 +0 0.0724 +0 0.0679 +0 0.0818 +1 0.7765 +0 0.1050 +0 0.0606 +0 0.1153 +0 0.1366 +0 0.0925 +0 0.2324 +0 0.1276 +0 0.1949 +0 0.1265 +0 0.0315 +0 0.0897 +0 0.0549 +0 0.0779 +0 0.1393 +0 0.1610 +0 0.2108 +1 0.8014 +0 0.0980 +0 0.0790 +0 0.3134 +0 0.0928 +0 0.0594 +0 0.0507 +0 0.1206 +0 0.0771 +0 0.0595 +0 0.0755 +0 0.2837 +0 0.2549 +0 0.0934 +0 0.1007 +0 0.1684 +0 0.1562 +0 0.0992 +0 0.3147 +0 0.0569 +0 0.0958 +0 0.0891 +0 0.1691 +0 0.1711 +0 0.2001 +0 0.0676 +0 0.4077 +0 0.0705 +0 0.4183 +0 0.0360 +0 0.0662 +0 0.0630 +0 0.1677 +0 0.0986 +0 0.3038 +0 0.0953 +0 0.1090 +0 0.3587 +0 0.0558 +0 0.1595 +0 0.0544 +0 0.0990 +0 0.1140 +0 0.0855 +0 0.0686 +0 0.0688 +0 0.0583 +0 0.4219 +0 0.0699 +0 0.1255 +0 0.0406 +0 0.1259 +1 0.8067 +0 0.0423 +0 0.1368 +0 0.1667 +0 0.0758 +0 0.0705 +0 0.0683 +0 0.0781 +0 0.1240 +0 0.0839 +0 0.0679 +0 0.1143 +0 0.1454 +0 0.0891 +0 0.0802 +0 0.1976 +0 0.3221 +0 0.1124 +0 0.0845 +0 0.1111 +0 0.0671 +0 0.0840 +0 0.0708 +0 0.0947 +0 0.1218 +0 0.2070 +0 0.0683 +0 0.0352 +0 0.0716 +0 0.1693 +0 0.0784 +0 0.0947 +0 0.0501 +0 0.1768 +0 0.0407 +0 0.1493 +0 0.1174 +1 0.7667 +0 0.0761 +0 0.0685 +0 0.1150 +0 0.0797 +0 0.1153 +0 0.0934 +0 0.1996 +0 0.1295 +0 0.0808 +0 0.0689 +0 0.1167 +0 0.0774 +0 0.0699 +0 0.1672 +0 0.1735 +0 0.0462 +0 0.2203 +0 0.1118 +0 0.3226 +0 0.2825 +0 0.0474 +0 0.1359 +0 0.1365 +0 0.1563 +0 0.1444 +0 0.1012 +0 0.0361 +0 0.1257 +0 0.0983 +0 0.1341 +0 0.0939 +0 0.0860 +0 0.1665 +0 0.1818 +0 0.0884 +0 0.0785 +0 0.1699 +0 0.0704 +0 0.1605 +0 0.3422 +0 0.0944 +0 0.2070 +0 0.1675 +0 0.1120 +0 0.0482 +0 0.0644 +0 0.0940 +0 0.1796 +0 0.0754 +0 0.0977 +0 0.1216 +0 0.0921 +0 0.1709 +0 0.7313 +0 0.1099 +0 0.0654 +0 0.1553 +0 0.1016 +0 0.0993 +0 0.1781 +0 0.0918 +0 0.1149 +0 0.1017 +0 0.0979 +0 0.0701 +0 0.0840 +0 0.1204 +0 0.1631 +0 0.0626 +0 0.0296 +0 0.1593 +0 0.2016 +0 0.1123 +0 0.1470 +0 0.1158 +0 0.0995 +0 0.0605 +0 0.1055 +0 0.0702 +0 0.0733 +0 0.2874 +0 0.0755 +0 0.0625 +0 0.1817 +0 0.0808 +0 0.0489 +0 0.0602 +0 0.0893 +0 0.0319 +0 0.1005 +0 0.0951 +0 0.0957 +0 0.2345 +0 0.0324 +0 0.0330 +0 0.1116 +0 0.1046 +0 0.1848 +0 0.0753 +0 0.1287 +0 0.0955 +0 0.0568 +0 0.0830 +0 0.0418 +0 0.1464 +0 0.0766 +0 0.0860 +0 0.1173 +0 0.1078 +0 0.1152 +0 0.0762 +0 0.0518 +0 0.1095 +0 0.0574 +0 0.1759 +0 0.0600 +0 0.1203 +0 0.1751 +0 0.0805 +0 0.0976 +0 0.0975 +0 0.0822 +0 0.1512 +0 0.0681 +0 0.0844 +0 0.0566 +0 0.0667 +0 0.0564 +0 0.1245 +0 0.1251 +0 0.0534 +1 0.7565 +0 0.0744 +0 0.1441 +0 0.0776 +0 0.3011 +0 0.1505 +0 0.0844 +0 0.1545 +0 0.1208 +0 0.2163 +0 0.0872 +0 0.0633 +0 0.1941 +0 0.2949 +0 0.1861 +0 0.0676 +0 0.1029 +0 0.0924 +0 0.1415 +0 0.1605 +0 0.0753 +0 0.2836 +0 0.0999 +0 0.0842 +0 0.1438 +0 0.2645 +0 0.0844 +0 0.0932 +0 0.1122 +0 0.0595 +0 0.1255 +0 0.1635 +0 0.2320 +0 0.1117 +0 0.1492 +0 0.0995 +0 0.1337 +0 0.1630 +0 0.1311 +0 0.1589 +0 0.4136 +0 0.2064 +0 0.6839 +0 0.0877 +0 0.0843 +0 0.0865 +0 0.1592 +0 0.7106 +0 0.0918 +0 0.1221 +1 0.7628 +0 0.1847 +0 0.1322 +0 0.1447 +0 0.3350 +0 0.0860 +0 0.2521 +0 0.0496 +0 0.5957 +0 0.0547 +0 0.0897 +0 0.2022 +0 0.0756 +0 0.1462 +0 0.4234 +0 0.0771 +0 0.0952 +0 0.0985 +0 0.0460 +0 0.1010 +0 0.0940 +0 0.1170 +0 0.1911 +0 0.1531 +0 0.2893 +0 0.0672 +0 0.0805 +0 0.0381 +0 0.6207 +0 0.4633 +0 0.0624 +0 0.0546 +0 0.0861 +0 0.5509 +0 0.3177 +0 0.0760 +0 0.2524 +0 0.0372 +0 0.0895 +0 0.0669 +0 0.4872 +0 0.0803 +0 0.1201 +0 0.2819 +0 0.1601 +0 0.1714 +0 0.1204 +0 0.1567 +0 0.3130 +0 0.0658 +0 0.0809 +0 0.1376 +0 0.0533 +0 0.2353 +0 0.1842 +0 0.0983 +0 0.3645 +0 0.0765 +0 0.0424 +0 0.1002 +0 0.2646 +0 0.1137 +0 0.1782 +0 0.0482 +0 0.0944 +0 0.2037 +0 0.1108 +0 0.1018 +0 0.0604 +0 0.1551 +0 0.7318 +0 0.1185 +0 0.1270 +0 0.0651 +0 0.1256 +0 0.1558 +0 0.1276 +0 0.1270 +0 0.1002 +0 0.0544 +0 0.0468 +0 0.0870 +0 0.1634 +0 0.1045 +0 0.1565 +0 0.1006 +0 0.0643 +0 0.2320 +0 0.0416 +0 0.0980 +0 0.0585 +0 0.1853 +0 0.2054 +0 0.0850 +0 0.1296 +0 0.2270 +0 0.1371 +0 0.3406 +0 0.1126 +0 0.1044 +0 0.1873 +0 0.0457 +0 0.0759 +0 0.0508 +0 0.2425 +0 0.2180 +0 0.0753 +0 0.0965 +0 0.1232 +0 0.1720 +0 0.0950 +0 0.1013 +0 0.1202 +0 0.0406 +0 0.0947 +0 0.0524 +0 0.0658 +0 0.0449 +0 0.1010 +0 0.1198 +0 0.1899 +0 0.0514 +0 0.0576 +0 0.3393 +0 0.0846 +0 0.1409 +0 0.0678 +0 0.1095 +0 0.1007 +1 0.7971 +0 0.0918 +0 0.1380 +0 0.0731 +0 0.1112 +0 0.1564 +0 0.1203 +0 0.0601 +0 0.0749 +0 0.0610 +0 0.3218 +0 0.1369 +0 0.2559 +0 0.1411 +0 0.0646 +0 0.2907 +0 0.2011 +0 0.0777 +0 0.0320 +0 0.0429 +0 0.0539 +0 0.0860 +0 0.1365 +0 0.1188 +0 0.1940 +0 0.0364 +0 0.1047 +0 0.0630 +0 0.0840 +0 0.1246 +0 0.2007 +0 0.0514 +1 0.8627 +0 0.0434 +0 0.1200 +0 0.0314 +0 0.0993 +0 0.1912 +0 0.1090 +0 0.0337 +0 0.2134 +0 0.0899 +0 0.1577 +0 0.0999 +0 0.4718 +0 0.0650 +0 0.1395 +0 0.1320 +0 0.0944 +0 0.1370 +0 0.0993 +0 0.1291 +0 0.4953 +0 0.0544 +0 0.1158 +0 0.0668 +0 0.0546 +0 0.1295 +0 0.1516 +0 0.0794 +0 0.1268 +0 0.3107 +0 0.1875 +0 0.0591 +0 0.2420 +0 0.1322 +0 0.1658 +0 0.0866 +0 0.0479 +0 0.1617 +0 0.0641 +0 0.0860 +0 0.0804 +0 0.0756 +0 0.0967 +0 0.0506 +0 0.1065 +0 0.0972 +0 0.0925 +0 0.2868 +0 0.1126 +0 0.0852 +0 0.1635 +0 0.0896 +0 0.0563 +0 0.0816 +0 0.0862 +0 0.1023 +0 0.0784 +0 0.1625 +0 0.1011 +0 0.1016 +0 0.1083 +0 0.0909 +0 0.0796 +0 0.0524 +0 0.0869 +0 0.1282 +0 0.4154 +1 0.7767 +0 0.3272 +0 0.1251 +0 0.2397 +0 0.1136 +0 0.0659 +0 0.1160 +0 0.0981 +0 0.0922 +0 0.1097 +0 0.0998 +0 0.2182 +0 0.0616 +0 0.1082 +0 0.1157 +0 0.1880 +0 0.0696 +0 0.0474 +0 0.0392 +0 0.1073 +0 0.0618 +0 0.0581 +0 0.1955 +0 0.1356 +0 0.0365 +0 0.1384 +0 0.1003 +0 0.1466 +0 0.1076 +0 0.1406 +0 0.3870 +0 0.2115 +0 0.0598 +0 0.1553 +0 0.1072 +0 0.0827 +0 0.2193 +0 0.0674 +0 0.1469 +0 0.1102 +0 0.1090 +0 0.0456 +0 0.0591 +0 0.0533 +1 0.8313 +0 0.1111 +0 0.0970 +0 0.0938 +0 0.1339 +0 0.0558 +0 0.2109 +0 0.1366 +0 0.2765 +0 0.2042 +0 0.1474 +0 0.0461 +0 0.2244 +0 0.0598 +0 0.2538 +0 0.0802 +0 0.1669 +0 0.0613 +0 0.0882 +0 0.5727 +0 0.0564 +0 0.0959 +0 0.1012 +0 0.1967 +0 0.1587 +0 0.1495 +0 0.3086 +0 0.0977 +0 0.3027 +0 0.1102 +0 0.2739 +0 0.2019 +0 0.0532 +0 0.0669 +0 0.1128 +0 0.1316 +0 0.0457 +1 0.7898 +0 0.0902 +0 0.1929 +0 0.2011 +0 0.1325 +0 0.0616 +0 0.2539 +0 0.1291 +0 0.0660 +0 0.0604 +0 0.0891 +0 0.0678 +0 0.0405 +0 0.1205 +0 0.0435 +0 0.2737 +0 0.1634 +0 0.0829 +0 0.1198 +0 0.1006 +0 0.2204 +0 0.1769 +0 0.1814 +0 0.0529 +0 0.0945 +0 0.0751 +0 0.2385 +0 0.1182 +0 0.0878 +0 0.0574 +0 0.0659 +0 0.1355 +0 0.2232 +0 0.0876 +0 0.1033 +0 0.1291 +0 0.0666 +0 0.1768 +0 0.1111 +0 0.1532 +0 0.0627 +0 0.1779 +0 0.2325 +0 0.0803 +0 0.0506 +0 0.1614 +0 0.1167 +0 0.2027 +0 0.0642 +0 0.2557 +0 0.1147 +0 0.0495 +0 0.1699 +0 0.0720 +0 0.1506 +0 0.1442 +0 0.0750 +0 0.1318 +0 0.0716 +0 0.0755 +0 0.0723 +0 0.0847 +0 0.0509 +0 0.0864 +0 0.0714 +0 0.1628 +0 0.0499 +0 0.1696 +0 0.0779 +0 0.0321 +0 0.0884 +0 0.0864 +0 0.2361 +0 0.0480 +0 0.2192 +0 0.0693 +0 0.1184 +0 0.1115 +0 0.0522 +0 0.0829 +0 0.1813 +0 0.0595 +0 0.0452 +0 0.0766 +0 0.0593 +0 0.2001 +0 0.0799 +0 0.0751 +0 0.1005 +0 0.1186 +0 0.0696 +0 0.0801 +0 0.1241 +0 0.0959 +0 0.0833 +0 0.0592 +0 0.1684 +0 0.0474 +0 0.1289 +0 0.1279 +0 0.1149 +0 0.2121 +0 0.2199 +1 0.8238 +0 0.0853 +0 0.0689 +0 0.1359 +0 0.0671 +1 0.8421 +0 0.5192 +0 0.0833 +0 0.0843 +0 0.2720 +0 0.0936 +0 0.2302 +0 0.2170 +0 0.0780 +0 0.0731 +0 0.1474 +0 0.6608 +0 0.0769 +0 0.1708 +0 0.3387 +0 0.0783 +0 0.0757 +0 0.1733 +0 0.5802 +0 0.0865 +0 0.1481 +0 0.1678 +0 0.1601 +0 0.1092 +0 0.1425 +0 0.1155 +0 0.0962 +0 0.1744 +0 0.0409 +0 0.1809 +0 0.1514 +0 0.1408 +0 0.1770 +0 0.1803 +0 0.0971 +0 0.0966 +0 0.2201 +0 0.1581 +0 0.0880 +0 0.1181 +0 0.1011 +0 0.1007 +0 0.1323 +0 0.1013 +0 0.5524 +0 0.1569 +0 0.1548 +0 0.0805 +0 0.2207 +0 0.0427 +0 0.2015 +0 0.4041 +0 0.0681 +0 0.0817 +0 0.0702 +0 0.5164 +0 0.2209 +0 0.1787 +0 0.1051 +0 0.0694 +0 0.1976 +0 0.1123 +0 0.1512 +0 0.2043 +0 0.1555 +0 0.2182 +0 0.0527 +0 0.0847 +0 0.0594 +0 0.0739 +0 0.0635 +0 0.2605 +0 0.0968 +0 0.1485 +0 0.3159 +0 0.1191 +0 0.0607 +0 0.1743 +0 0.0891 +0 0.1245 +0 0.0721 +0 0.0820 +0 0.1372 +0 0.0395 +0 0.2143 +0 0.1193 +0 0.0725 +0 0.6796 +0 0.0782 +0 0.1133 +0 0.1715 +0 0.0700 +0 0.0874 +0 0.1133 +0 0.0710 +0 0.0982 +0 0.0430 +0 0.2218 +0 0.0604 +0 0.0680 +0 0.1043 +0 0.0788 +0 0.0975 +0 0.1537 +0 0.0625 +0 0.0636 +0 0.0849 +0 0.2048 +0 0.2794 +0 0.0697 +0 0.0362 +0 0.0615 +0 0.0690 +0 0.0851 +0 0.4232 +0 0.0807 +0 0.1087 +0 0.0940 +0 0.1667 +0 0.1962 +0 0.6300 +0 0.0464 +0 0.1611 +0 0.0705 +0 0.0789 +0 0.0768 +0 0.1875 +0 0.0555 +0 0.1324 +0 0.0603 +0 0.0622 +0 0.0947 +0 0.3132 +0 0.1201 +0 0.2735 +0 0.0835 +0 0.1638 +0 0.1641 +0 0.1773 +0 0.2357 +0 0.1273 +0 0.0683 +0 0.0571 +0 0.1253 +0 0.0584 +0 0.1969 +0 0.0462 +0 0.4353 +0 0.0906 +1 0.8935 +0 0.1500 +0 0.0960 +0 0.1754 +0 0.2531 +0 0.1944 +0 0.2199 +0 0.1558 +0 0.1297 +0 0.0801 +0 0.2610 +0 0.0556 +1 0.7772 +0 0.0351 +0 0.0621 +0 0.1403 +0 0.2165 +1 0.8198 +0 0.0801 +0 0.0554 +0 0.0606 +0 0.1031 +0 0.2146 +0 0.1291 +0 0.4019 +0 0.1629 +0 0.1448 +0 0.0517 +0 0.1661 +0 0.0486 +0 0.1932 +0 0.1517 +0 0.1017 +0 0.1333 +0 0.0634 +0 0.1911 +0 0.3817 +0 0.0971 +0 0.0622 +0 0.2221 +0 0.1586 +0 0.1050 +0 0.1123 +0 0.0800 +0 0.0947 +0 0.1007 +0 0.0605 +0 0.0685 +0 0.0429 +0 0.0528 +0 0.0976 +0 0.0561 +0 0.1557 +0 0.1285 +0 0.0871 +0 0.1494 +0 0.0864 +0 0.0784 +0 0.0829 +0 0.0797 +0 0.2967 +0 0.1440 +0 0.0623 +0 0.1205 +1 0.8094 +0 0.0877 +1 0.8545 +0 0.0986 +0 0.1105 +0 0.0885 +1 0.7711 +0 0.0922 +0 0.1880 +0 0.1059 +1 0.3010 +0 0.1272 +0 0.0647 +0 0.0587 +0 0.1205 +0 0.0723 +0 0.2516 +0 0.0927 +0 0.1043 +0 0.1078 +0 0.0450 +0 0.2317 +0 0.0831 +0 0.1397 +0 0.0527 +0 0.0369 +0 0.1679 +0 0.0341 +0 0.1630 +0 0.0732 +0 0.0403 +0 0.1559 +0 0.0495 +0 0.0415 +0 0.0437 +0 0.1302 +0 0.1002 +0 0.3998 +0 0.1439 +0 0.4032 +0 0.1499 +0 0.4714 +0 0.1128 +0 0.0945 +0 0.0834 +0 0.2358 +0 0.0552 +0 0.1073 +0 0.0864 +0 0.0825 +0 0.0416 +0 0.4518 +0 0.0783 +0 0.1092 +0 0.0656 +0 0.1527 +0 0.4725 +0 0.1026 +0 0.0806 +0 0.0634 +0 0.1179 +0 0.0458 +0 0.1197 +0 0.1101 +0 0.1395 +0 0.0938 +0 0.1811 +0 0.0387 +0 0.1989 +0 0.1215 +0 0.1382 +0 0.0858 +0 0.0821 +0 0.0770 +0 0.1991 +0 0.0740 +0 0.1926 +0 0.0904 +0 0.0487 +0 0.1120 +0 0.2227 +0 0.0553 +0 0.0470 +0 0.1506 +0 0.0807 +0 0.0677 +0 0.2345 +1 0.8129 +0 0.1513 +0 0.1166 +0 0.1879 +0 0.0602 +0 0.1463 +0 0.0959 +0 0.1433 +0 0.1967 +0 0.1570 +0 0.0676 +0 0.0787 +0 0.0672 +0 0.0819 +0 0.0491 +0 0.0731 +0 0.0750 +1 0.8307 +0 0.0966 +0 0.2684 +0 0.0353 +0 0.0533 +0 0.0575 +0 0.0852 +0 0.3265 +0 0.1768 +0 0.0542 +0 0.0907 +0 0.2464 +0 0.0781 +0 0.1626 +0 0.1413 +0 0.1016 +0 0.4000 +0 0.0332 +0 0.0390 +0 0.0823 +0 0.1456 +0 0.0724 +0 0.1380 +0 0.3156 +0 0.0629 +0 0.0658 +0 0.1321 +0 0.2343 +0 0.1666 +0 0.0457 +0 0.0500 +0 0.0653 +0 0.0684 +0 0.1676 +0 0.1454 +0 0.1521 +0 0.0580 +0 0.1400 +0 0.0628 +0 0.1455 +0 0.0566 +0 0.0755 +0 0.3268 +0 0.1455 +0 0.1856 +0 0.1650 +0 0.0670 +0 0.0459 +0 0.0888 +0 0.0619 +0 0.1604 +0 0.2015 +0 0.1662 +0 0.0627 +0 0.0655 +0 0.0762 +0 0.3400 +0 0.0694 +0 0.0721 +0 0.1273 +0 0.1166 +0 0.1210 +0 0.0341 +0 0.1476 +0 0.0568 +0 0.1512 +0 0.3308 +0 0.1555 +0 0.0885 +0 0.1152 +0 0.0850 +0 0.0896 +0 0.0528 +0 0.0816 +1 0.3920 +0 0.0933 +0 0.1189 +0 0.1608 +0 0.0865 +0 0.1061 +0 0.0385 +0 0.1336 +0 0.0911 +0 0.0894 +0 0.1306 +0 0.2842 +0 0.0374 +0 0.4945 +0 0.1063 +0 0.0903 +0 0.3971 +0 0.1114 +0 0.1216 +0 0.1037 +0 0.1271 +0 0.0402 +0 0.0709 +0 0.1094 +0 0.2505 +0 0.0871 +0 0.0523 +0 0.1001 +0 0.1117 +0 0.2158 +0 0.0647 +0 0.0708 +0 0.0384 +0 0.3600 +0 0.1484 +0 0.1466 +0 0.1313 +0 0.1162 +0 0.1158 +0 0.1894 +0 0.5899 +0 0.0952 +0 0.0421 +0 0.1048 +0 0.0982 +0 0.1734 +0 0.0578 +0 0.1791 +0 0.1078 +0 0.1209 +0 0.0700 +0 0.0474 +0 0.1161 +0 0.0711 +0 0.1259 +0 0.1091 +0 0.2254 +0 0.0644 +0 0.1959 +0 0.1953 +0 0.0918 +0 0.1795 +0 0.1471 +0 0.1425 +0 0.1893 +0 0.0604 +0 0.1393 +0 0.0982 +0 0.1968 +0 0.0533 +0 0.1509 +0 0.0555 +0 0.0624 +0 0.0635 +0 0.0607 +0 0.0899 +0 0.1737 +0 0.2414 +0 0.1961 +0 0.0783 +0 0.0924 +0 0.1298 +0 0.0766 +0 0.0511 +0 0.0975 +0 0.0565 +0 0.1772 +0 0.1379 +0 0.0921 +0 0.1152 +0 0.0552 +0 0.1000 +0 0.0522 +0 0.1011 +0 0.0749 +0 0.1722 +0 0.0411 +0 0.0979 +0 0.0398 +0 0.0706 +0 0.1014 +0 0.1128 +0 0.0959 +0 0.0556 +0 0.1411 +0 0.3205 +0 0.0541 +0 0.0943 +0 0.2372 +0 0.0944 +0 0.0689 +0 0.0696 +0 0.0810 +0 0.1884 +0 0.6581 +0 0.0538 +0 0.0680 +0 0.0572 +0 0.3162 +0 0.0762 +0 0.1538 +1 0.8541 +0 0.1672 +0 0.0896 +0 0.0956 +0 0.1120 +0 0.1864 +0 0.1277 +0 0.1752 +0 0.1337 +0 0.1908 +0 0.0754 +0 0.1385 +0 0.1260 +0 0.0740 +0 0.0906 +0 0.0798 +0 0.1624 +0 0.0574 +0 0.1344 +0 0.1662 +0 0.0699 +0 0.0610 +0 0.1052 +0 0.0421 +0 0.1132 +0 0.1234 +1 0.8081 +0 0.0571 +0 0.0388 +0 0.0939 +0 0.0791 +0 0.3494 +0 0.0904 +0 0.1054 +0 0.1063 +0 0.1013 +0 0.0438 +0 0.3319 +0 0.1313 +0 0.1194 +0 0.2575 +0 0.2632 +0 0.0515 +0 0.3084 +0 0.0962 +0 0.1283 +0 0.1216 +0 0.3806 +0 0.1674 +0 0.0977 +0 0.2450 +0 0.2076 +0 0.1039 +0 0.0672 +0 0.1126 +0 0.1740 +0 0.6923 +0 0.1016 +0 0.0951 +0 0.0478 +0 0.0499 +0 0.0915 +0 0.0810 +0 0.1097 +0 0.1490 +0 0.0455 +0 0.1015 +0 0.0642 +0 0.2905 +0 0.4267 +0 0.6882 +0 0.1066 +0 0.0661 +0 0.1040 +0 0.0414 +0 0.3779 +0 0.2176 +0 0.0544 +0 0.0636 +0 0.0642 +0 0.6352 +0 0.3361 +0 0.1290 +0 0.0478 +0 0.1114 +0 0.1019 +0 0.0687 +1 0.8431 +0 0.3147 +0 0.0667 +0 0.0606 +0 0.1001 +0 0.0861 +0 0.1514 +0 0.1772 +0 0.3826 +0 0.1348 +0 0.0984 +0 0.0383 +0 0.0623 +0 0.1279 +0 0.3262 +0 0.3145 +0 0.0701 +0 0.1465 +0 0.0964 +0 0.1521 +0 0.1419 +0 0.0806 +0 0.1863 +0 0.1040 +0 0.0814 +0 0.0502 +0 0.1527 +0 0.2703 +0 0.1359 +1 0.8696 +0 0.0513 +0 0.0694 +0 0.0630 +0 0.1364 +0 0.2205 +0 0.1033 +0 0.2912 +0 0.1203 +0 0.0632 +0 0.1250 +0 0.1592 +0 0.0875 +0 0.3685 +0 0.1273 +0 0.1745 +0 0.0460 +0 0.0516 +0 0.0739 +0 0.1653 +0 0.0462 +0 0.1001 +0 0.0909 +0 0.0921 +0 0.1030 +0 0.0874 +0 0.0829 +0 0.1428 +0 0.1419 +0 0.0663 +0 0.0823 +0 0.1706 +0 0.3671 +0 0.0450 +0 0.3204 +0 0.1290 +0 0.2608 +0 0.1209 +0 0.1867 +0 0.1083 +0 0.0569 +0 0.2491 +0 0.0733 +0 0.1388 +0 0.0750 +0 0.1145 +0 0.1532 +0 0.6698 +0 0.1477 +0 0.0996 +0 0.1879 +0 0.0688 +0 0.2376 +0 0.0656 +0 0.0859 +0 0.0961 +0 0.2682 +0 0.2115 +0 0.4337 +0 0.0972 +0 0.0960 +0 0.1048 +0 0.1085 +0 0.1651 +0 0.0686 +0 0.0832 +0 0.0570 +0 0.0522 +0 0.0644 +0 0.1165 +0 0.3195 +0 0.0756 +0 0.1483 +0 0.0470 +0 0.1401 +0 0.2910 +0 0.0696 +0 0.1719 +0 0.0675 +0 0.0895 +0 0.0917 +0 0.1023 +0 0.1086 +0 0.1268 +0 0.2891 +0 0.4795 +0 0.1831 +0 0.0650 +0 0.0522 +0 0.1361 +0 0.3511 +0 0.4528 +0 0.0764 +0 0.0788 +0 0.5120 +0 0.0789 +0 0.0883 +0 0.1430 +0 0.0465 +0 0.0867 +0 0.0907 +0 0.1696 +0 0.1188 +0 0.2844 +0 0.1072 +0 0.3199 +0 0.1679 +0 0.1149 +0 0.0749 +0 0.4722 +0 0.1849 +0 0.1633 +0 0.1705 +0 0.1744 +0 0.0867 +0 0.1013 +0 0.2166 +0 0.0689 +0 0.1096 +0 0.0694 +0 0.0535 +0 0.1117 +0 0.0923 +0 0.3025 +0 0.1052 +0 0.0411 +0 0.0699 +0 0.0556 +0 0.0970 +0 0.5744 +0 0.0578 +0 0.2460 +0 0.2351 +0 0.2232 +0 0.2087 +0 0.2159 +0 0.5079 +1 0.8190 +0 0.0532 +0 0.1055 +0 0.2010 +0 0.0856 +0 0.2584 +0 0.1597 +0 0.1385 +0 0.3038 +0 0.0692 +0 0.0921 +0 0.3246 +0 0.2458 +0 0.0949 +0 0.0845 +0 0.1319 +0 0.3623 +0 0.2256 +0 0.1065 +0 0.2364 +0 0.0326 +0 0.5286 +0 0.1288 +0 0.0979 +0 0.1026 +0 0.3851 +0 0.0388 +1 0.7836 +0 0.1453 +0 0.1879 +0 0.4831 +0 0.0755 +0 0.1456 +0 0.0994 +0 0.0540 +0 0.2416 +0 0.0374 +0 0.2560 +0 0.2903 +0 0.3032 +0 0.0746 +0 0.2023 +0 0.0543 +0 0.1215 +0 0.7216 +0 0.0643 +0 0.1806 +0 0.1009 +0 0.0661 +0 0.1165 +0 0.1215 +0 0.1389 +0 0.0347 +0 0.2181 +0 0.0813 +0 0.0832 +0 0.1189 +0 0.0595 +0 0.1116 +0 0.1242 +0 0.1056 +0 0.2407 +0 0.1540 +0 0.0951 +0 0.1381 +0 0.1021 +0 0.1101 +0 0.2251 +0 0.0662 +0 0.0576 +0 0.3566 +0 0.0395 +0 0.0469 +0 0.1149 +0 0.0689 +0 0.1116 +0 0.0502 +0 0.0894 +1 0.8106 +0 0.0468 +0 0.1508 +0 0.0995 +0 0.0511 +0 0.1241 +0 0.0840 +0 0.1561 +0 0.0645 +0 0.0935 +0 0.0781 +0 0.0604 +0 0.1622 +0 0.1838 +0 0.0298 +0 0.2348 +0 0.0810 +0 0.0893 +0 0.0814 +0 0.1069 +0 0.1388 +0 0.0838 +0 0.0351 +0 0.0851 +0 0.1270 +0 0.0582 +0 0.1995 +0 0.0491 +0 0.0470 +0 0.5136 +0 0.0732 +0 0.0805 +0 0.0968 +0 0.1184 +0 0.0735 +0 0.0832 +0 0.1083 +0 0.2095 +0 0.1050 +0 0.0328 +0 0.4735 +0 0.1333 +0 0.1609 +0 0.1947 +0 0.1724 +0 0.0776 +0 0.1422 +0 0.0433 +0 0.3397 +0 0.0572 +0 0.1387 +0 0.1873 +0 0.2144 +0 0.3113 +0 0.0686 +0 0.1405 +0 0.0757 +0 0.0553 +0 0.2288 +0 0.1175 +0 0.1942 +0 0.1943 +0 0.3465 +0 0.2603 +0 0.1774 +0 0.1022 +0 0.1467 +0 0.0876 +0 0.0969 +0 0.0583 +0 0.1019 +0 0.0895 +0 0.0718 +0 0.0892 +0 0.1485 +0 0.0984 +0 0.0618 +0 0.3012 +0 0.0612 +0 0.2335 +0 0.0863 +0 0.0343 +0 0.2565 +0 0.1603 +0 0.0803 +0 0.0426 +0 0.1315 +0 0.0645 +0 0.0676 +0 0.1653 +0 0.0824 +0 0.0660 +0 0.1178 +0 0.0962 +0 0.1060 +0 0.1157 +0 0.1415 +0 0.1489 +0 0.0483 +0 0.1840 +0 0.0833 +0 0.1163 +0 0.1194 +0 0.0913 +0 0.1429 +0 0.2779 +0 0.5594 +0 0.0793 +0 0.0716 +0 0.2707 +0 0.0556 +0 0.1378 +0 0.0458 +0 0.0490 +0 0.1173 +0 0.1532 +0 0.0468 +0 0.1884 +0 0.0679 +0 0.0437 +0 0.0643 +0 0.1708 +0 0.3298 +0 0.1170 +0 0.0938 +0 0.0395 +0 0.1249 +0 0.1124 +0 0.2376 +0 0.2233 +0 0.2190 +0 0.0550 +0 0.0992 +0 0.1298 +0 0.1396 +0 0.5556 +0 0.1086 +0 0.0791 +0 0.1665 +0 0.0900 +0 0.0836 +0 0.0877 +0 0.0858 +0 0.0627 +0 0.0951 +0 0.2113 +0 0.2855 +0 0.0527 +0 0.2447 +0 0.0771 +0 0.1286 +0 0.0825 +0 0.0698 +0 0.2926 +0 0.3055 +0 0.1478 +0 0.1020 +0 0.1940 +0 0.1300 +0 0.0959 +0 0.1859 +0 0.1083 +0 0.1261 +0 0.0603 +0 0.1765 +0 0.0636 +0 0.0436 +0 0.0926 +0 0.0895 +0 0.0476 +0 0.1127 +0 0.0926 +0 0.1558 +0 0.2226 +0 0.1837 +0 0.1636 +0 0.2422 +0 0.1284 +0 0.1212 +0 0.0978 +0 0.0635 +0 0.1857 +0 0.0716 +0 0.2995 +0 0.1381 +0 0.0462 +0 0.1086 +0 0.0519 +0 0.0844 +0 0.2379 +0 0.1476 +0 0.0787 +0 0.1392 +0 0.1159 +0 0.0538 +0 0.0439 +0 0.2253 +0 0.0486 +0 0.0777 +0 0.2195 +0 0.3442 +0 0.0611 +0 0.1314 +0 0.1812 +0 0.0512 +0 0.0447 +0 0.1659 +0 0.0854 +0 0.0668 +0 0.0891 +0 0.4164 +0 0.1486 +0 0.0359 +0 0.1317 +0 0.0857 +0 0.1221 +0 0.0977 +0 0.1932 +0 0.2132 +0 0.0917 +0 0.1908 +0 0.1054 +0 0.0470 +0 0.0623 +0 0.2524 +0 0.1872 +0 0.1053 +0 0.1353 +0 0.0479 +0 0.0714 +0 0.0895 +0 0.1128 +0 0.0514 +0 0.1526 +0 0.1060 +0 0.0509 +0 0.3318 +0 0.1107 +0 0.0676 +0 0.0567 +0 0.2171 +0 0.0823 +0 0.1331 +0 0.0776 +0 0.0832 +0 0.0743 +0 0.1974 +0 0.0765 +0 0.1489 +0 0.0943 +0 0.2325 +1 0.8146 +0 0.1934 +0 0.1045 +0 0.1624 +0 0.1209 +0 0.1037 +0 0.1643 +0 0.1113 +0 0.1080 +0 0.0827 +0 0.1041 +0 0.0635 +0 0.0899 +0 0.0862 +0 0.6516 +0 0.1065 +0 0.2261 +0 0.0800 +0 0.2062 +0 0.0544 +0 0.1305 +0 0.0538 +0 0.0648 +0 0.1104 +0 0.0594 +0 0.2039 +0 0.1339 +0 0.0575 +0 0.1931 +0 0.0516 +0 0.0811 +0 0.1423 +0 0.0893 +0 0.0549 +0 0.1238 +0 0.2475 +0 0.2536 +0 0.1054 +0 0.1759 +0 0.0304 +0 0.1765 +0 0.1057 +0 0.1002 +0 0.1632 +0 0.1291 +0 0.0678 +0 0.1556 +0 0.0558 +0 0.1815 +0 0.2275 +0 0.0681 +0 0.1428 +0 0.0585 +0 0.0618 +0 0.4039 +0 0.1062 +0 0.0830 +0 0.0407 +0 0.5936 +0 0.0495 +0 0.0983 +0 0.4270 +0 0.1801 +0 0.3697 +0 0.0404 +0 0.0997 +0 0.0547 +0 0.0821 +0 0.0883 +0 0.1285 +0 0.1521 +0 0.0695 +0 0.1353 +0 0.0630 +0 0.0779 +0 0.3489 +0 0.0723 +0 0.1074 +0 0.0626 +0 0.2412 +0 0.1168 +0 0.0617 +0 0.0560 +0 0.0801 +0 0.2482 +0 0.6326 +0 0.0596 +0 0.3324 +0 0.0510 +0 0.4844 +0 0.3999 +0 0.0895 +0 0.5752 +0 0.1036 +0 0.0690 +0 0.1089 +0 0.2552 +0 0.1312 +0 0.3774 +0 0.0760 +0 0.0429 +0 0.1149 +0 0.0337 +0 0.0718 +0 0.3769 +0 0.1640 +0 0.2241 +0 0.0608 +0 0.1023 +0 0.0380 +0 0.1636 +0 0.3648 +0 0.0662 +0 0.2009 +0 0.2745 +0 0.1140 +0 0.1607 +0 0.0820 +0 0.4897 +0 0.3365 +0 0.0513 +0 0.0552 +0 0.0586 +0 0.1308 +0 0.1491 +0 0.1184 +0 0.0792 +0 0.0561 +0 0.1472 +0 0.1494 +0 0.0894 +0 0.1760 +0 0.0992 +0 0.0950 +0 0.0976 +0 0.0757 +0 0.4351 +0 0.0547 +0 0.1504 +0 0.0622 +0 0.1504 +0 0.1198 +0 0.0655 +0 0.0790 +0 0.0680 +0 0.0816 +0 0.0561 +0 0.1057 +0 0.0450 +0 0.1074 +0 0.2042 +0 0.0633 +1 0.8916 +0 0.0842 +0 0.0832 +0 0.0832 +0 0.1190 +0 0.1851 +0 0.1618 +0 0.0612 +0 0.1235 +0 0.0690 +0 0.1625 +0 0.0957 +1 0.7984 +0 0.1491 +0 0.1002 +0 0.0773 +0 0.1151 +0 0.1088 +0 0.1337 +0 0.2868 +0 0.1766 +0 0.0777 +0 0.7025 +0 0.0726 +0 0.2324 +0 0.6759 +0 0.1327 +0 0.0810 +0 0.2081 +0 0.2027 +0 0.0790 +0 0.0752 +0 0.2964 +0 0.0592 +0 0.0658 +0 0.0438 +0 0.0970 +0 0.0880 +0 0.0589 +0 0.0981 +0 0.1032 +0 0.0745 +0 0.0914 +0 0.0383 +0 0.1857 +0 0.2638 +0 0.6742 +0 0.1186 +0 0.1263 +0 0.2684 +0 0.3350 +0 0.0818 +0 0.0983 +0 0.2197 +0 0.0788 +0 0.1288 +0 0.2493 +0 0.0907 +0 0.0575 +0 0.0951 +0 0.0849 +1 0.8622 +0 0.1613 +0 0.0693 +0 0.1091 +0 0.1675 +0 0.1446 +0 0.0717 +0 0.1695 +0 0.1556 +0 0.1442 +0 0.0596 +0 0.4159 +0 0.1518 +0 0.1011 +0 0.0476 +0 0.2330 +0 0.0405 +0 0.2526 +0 0.1124 +0 0.1377 +0 0.1074 +0 0.1069 +0 0.2266 +0 0.1136 +0 0.0455 +0 0.1596 +0 0.2484 +0 0.1531 +0 0.0526 +0 0.0896 +0 0.1234 +0 0.0476 +0 0.0913 +0 0.2642 +0 0.1078 +0 0.0748 +0 0.0880 +0 0.1102 +0 0.3109 +0 0.2278 +0 0.2157 +0 0.0612 +0 0.0400 +0 0.5865 +0 0.2380 +0 0.0959 +0 0.1373 +0 0.0690 +0 0.1001 +0 0.1626 +0 0.0443 +0 0.0869 +0 0.0720 +0 0.0635 +0 0.0616 +0 0.1395 +0 0.0484 +0 0.1838 +0 0.1181 +0 0.0803 +0 0.1880 +0 0.1298 +0 0.2147 +0 0.1283 +0 0.1088 +0 0.0765 +0 0.0992 +0 0.0461 +0 0.0886 +0 0.1167 +1 0.8123 +0 0.0893 +0 0.0441 +0 0.1131 +0 0.1243 +0 0.2086 +0 0.0622 +1 0.8423 +0 0.1100 +0 0.0848 +0 0.0687 +0 0.1048 +0 0.0606 +0 0.1330 +0 0.6114 +0 0.1628 +0 0.0721 +0 0.0465 +0 0.1889 +0 0.0595 +0 0.0466 +0 0.1260 +0 0.0565 +0 0.1165 +0 0.1623 +0 0.6077 +0 0.1108 +0 0.2052 +0 0.0553 +0 0.1065 +0 0.1392 +0 0.0499 +0 0.1112 +0 0.0913 +0 0.1157 +0 0.1030 +0 0.0386 +0 0.0857 +0 0.0433 +0 0.1669 +0 0.0292 +0 0.1682 +0 0.0428 +0 0.0867 +0 0.1157 +0 0.1885 +0 0.1192 +0 0.1157 +0 0.1102 +0 0.2750 +0 0.0581 +0 0.1017 +0 0.1593 +0 0.1571 +0 0.0545 +0 0.0883 +0 0.1396 +0 0.0807 +0 0.1218 +0 0.2212 +0 0.1252 +0 0.2283 +0 0.0918 +0 0.1585 +0 0.0782 +0 0.0879 +0 0.1955 +0 0.1747 +0 0.0658 +0 0.2323 +0 0.2001 +0 0.2149 +0 0.2351 +0 0.1144 +0 0.0986 +0 0.0353 +0 0.2167 +0 0.0923 +0 0.3198 +0 0.1300 +0 0.0827 +0 0.1408 +0 0.0846 +0 0.0791 +0 0.1933 +0 0.0765 +0 0.0845 +0 0.1178 +1 0.7839 +0 0.1619 +0 0.1963 +0 0.0659 +0 0.2777 +0 0.0706 +0 0.0868 +0 0.1375 +0 0.4498 +0 0.1044 +0 0.1495 +0 0.5658 +0 0.4391 +0 0.3054 +0 0.0448 +0 0.1707 +0 0.1466 +0 0.0455 +1 0.8621 +0 0.1797 +0 0.4707 +0 0.0777 +0 0.2012 +0 0.1210 +0 0.0813 +0 0.2946 +0 0.1237 +0 0.2180 +0 0.1392 +0 0.1068 +0 0.1471 +0 0.0373 +0 0.0742 +0 0.1530 +0 0.0373 +0 0.1154 +0 0.3021 +0 0.2951 +0 0.0605 +0 0.2547 +0 0.1371 +0 0.2388 +0 0.2552 +0 0.1679 +0 0.0754 +0 0.3280 +0 0.0611 +0 0.2498 +0 0.1577 +0 0.0783 +0 0.0491 +0 0.1531 +1 0.8001 +0 0.0678 +0 0.1340 +0 0.2207 +0 0.0783 +0 0.1047 +0 0.1212 +0 0.7492 +0 0.0677 +0 0.2062 +0 0.0887 +0 0.0872 +0 0.1089 +0 0.0980 +0 0.2510 +0 0.0611 +0 0.0823 +0 0.2348 +0 0.1943 +0 0.1062 +0 0.1581 +0 0.0330 +0 0.0719 +0 0.1795 +0 0.2132 +0 0.1102 +0 0.1491 +0 0.1369 +0 0.1465 +0 0.0785 +0 0.1631 +0 0.1064 +0 0.1000 +0 0.0964 +0 0.1057 +0 0.0368 +0 0.1663 +0 0.0491 +0 0.0582 +0 0.1000 +0 0.0470 +0 0.0507 +0 0.2856 +0 0.1031 +0 0.2211 +0 0.0526 +0 0.1019 +0 0.1148 +0 0.1471 +0 0.2567 +0 0.1072 +0 0.2518 +0 0.2956 +0 0.1520 +0 0.1012 +0 0.6853 +0 0.2136 +0 0.0959 +0 0.0875 +0 0.1241 +0 0.1585 +0 0.0743 +0 0.0586 +0 0.1576 +0 0.1557 +0 0.0657 +0 0.1104 +0 0.2232 +0 0.2486 +0 0.0731 +0 0.0920 +0 0.0405 +0 0.1106 +0 0.2280 +0 0.0766 +0 0.0545 +0 0.0598 +0 0.1631 +1 0.7687 +0 0.1792 +0 0.1318 +0 0.3771 +0 0.0429 +0 0.1024 +0 0.1923 +0 0.1509 +0 0.1350 +0 0.2613 +0 0.1744 +0 0.0959 +0 0.0745 +0 0.1449 +0 0.1534 +0 0.0380 +0 0.0604 +0 0.2025 +0 0.0604 +0 0.1499 +0 0.3638 +0 0.0889 +0 0.0947 +0 0.0798 +0 0.1033 +0 0.0833 +0 0.0875 +0 0.1613 +0 0.0990 +0 0.0635 +0 0.0775 +0 0.1564 +0 0.0869 +0 0.2270 +0 0.0703 +0 0.0580 +0 0.5010 +0 0.1078 +0 0.3004 +0 0.1346 +0 0.0715 +0 0.0680 +0 0.0837 +0 0.0501 +0 0.2779 +0 0.1187 +0 0.1428 +0 0.1475 +0 0.5991 +0 0.0407 +0 0.1341 +0 0.0285 +0 0.4130 +0 0.1857 +0 0.0908 +0 0.1051 +0 0.0846 +0 0.0998 +0 0.1340 +0 0.6911 +0 0.0825 +0 0.0868 +0 0.0599 +0 0.0624 +0 0.1335 +0 0.0459 +0 0.0893 +0 0.0696 +0 0.0436 +0 0.2417 +0 0.0882 +0 0.0965 +0 0.1656 +0 0.1264 +0 0.0469 +0 0.4997 +0 0.1372 +0 0.2795 +0 0.3873 +0 0.0853 +0 0.0456 +0 0.5301 +0 0.0691 +0 0.1533 +0 0.6610 +0 0.1146 +0 0.0615 +0 0.1736 +0 0.1546 +0 0.2267 +0 0.1568 +0 0.0555 +0 0.0659 +0 0.1818 +0 0.0843 +0 0.0950 +0 0.1259 +0 0.1199 +0 0.2739 +0 0.1522 +0 0.1417 +0 0.2989 +0 0.1294 +0 0.3675 +0 0.1284 +0 0.4060 +1 0.7550 +0 0.0626 +0 0.0872 +0 0.2545 +0 0.0699 +0 0.1714 +0 0.0921 +0 0.0503 +0 0.0578 +0 0.1904 +0 0.2679 +0 0.2902 +0 0.0649 +0 0.1775 +0 0.2100 +0 0.1465 +0 0.1099 +0 0.0952 +0 0.0683 +0 0.1467 +0 0.0644 +0 0.0903 +0 0.7305 +0 0.0550 +0 0.1350 +0 0.1968 +0 0.1716 +0 0.1202 +0 0.1369 +0 0.2029 +0 0.0514 +0 0.2008 +0 0.1517 +0 0.5092 +0 0.0730 +0 0.1649 +0 0.2015 +0 0.0976 +0 0.3634 +0 0.1801 +0 0.5469 +0 0.0582 +0 0.0582 +0 0.0874 +0 0.1104 +0 0.0931 +0 0.2239 +0 0.1486 +0 0.2152 +0 0.1235 +0 0.1168 +0 0.0758 +0 0.3409 +0 0.0455 +0 0.0871 +0 0.2389 +0 0.4637 +0 0.1051 +0 0.1144 +0 0.0832 +0 0.1139 +0 0.0837 +0 0.3716 +0 0.1306 +0 0.0893 +0 0.0525 +0 0.3566 +0 0.1348 +0 0.2232 +0 0.1597 +0 0.1155 +0 0.1934 +0 0.1060 +0 0.1920 +0 0.2651 +0 0.3248 +0 0.2679 +0 0.1354 +0 0.0616 +0 0.1593 +0 0.0609 +0 0.1004 +0 0.0745 +0 0.1024 +0 0.2330 +0 0.0694 +0 0.1192 +0 0.1971 +0 0.0593 +1 0.8645 +0 0.0443 +0 0.1456 +0 0.1227 +0 0.1228 +0 0.1836 +0 0.0862 +0 0.7265 +0 0.0684 +0 0.1239 +0 0.3129 +0 0.0739 +0 0.1155 +0 0.1956 +0 0.1802 +0 0.0439 +1 0.8199 +0 0.0926 +0 0.0457 +0 0.1716 +0 0.0965 +0 0.1348 +0 0.0972 +0 0.7251 +0 0.1652 +0 0.2816 +0 0.0727 +0 0.1128 +0 0.0908 +0 0.1372 +0 0.0653 +0 0.0817 +0 0.0565 +0 0.1194 +0 0.0897 +0 0.0676 +0 0.2130 +0 0.1750 +0 0.0864 +0 0.0434 +0 0.4506 +0 0.0360 +0 0.0366 +0 0.1203 +0 0.2644 +0 0.4967 +0 0.0529 +0 0.3849 +0 0.0434 +0 0.0460 +0 0.0758 +0 0.3475 +0 0.0892 +1 0.8997 +0 0.1294 +0 0.0693 +0 0.0848 +0 0.2401 +0 0.1308 +0 0.0461 +0 0.2339 +0 0.0802 +0 0.2247 +0 0.0810 +0 0.0709 +0 0.0463 +0 0.3263 +0 0.1169 +0 0.1371 +0 0.1386 +0 0.1305 +0 0.0374 +0 0.0803 +0 0.7253 +0 0.2062 +0 0.0973 +0 0.0795 +0 0.0885 +0 0.1021 +0 0.1272 +0 0.2155 +0 0.0616 +0 0.0903 +0 0.0780 +0 0.1513 +0 0.2133 +0 0.0517 +0 0.0306 +0 0.4121 +0 0.4388 +0 0.2464 +0 0.1177 +0 0.0984 +0 0.0815 +0 0.1202 +0 0.1717 +0 0.0610 +0 0.0963 +0 0.0911 +0 0.0631 +0 0.2300 +0 0.1002 +0 0.1576 +0 0.0645 +0 0.5199 +0 0.2420 +0 0.0869 +0 0.0592 +0 0.1835 +0 0.0626 +0 0.1429 +0 0.4011 +0 0.1806 +0 0.0999 +0 0.4777 +0 0.0651 +0 0.1205 +0 0.0630 +0 0.1652 +0 0.1583 +0 0.0734 +0 0.0851 +0 0.0864 +0 0.0965 +0 0.0546 +0 0.3251 +0 0.4542 +0 0.1550 +0 0.1081 +0 0.4482 +0 0.2179 +0 0.0518 +0 0.0530 +0 0.0680 +0 0.0547 +0 0.0648 +0 0.0563 +0 0.1187 +0 0.0571 +0 0.2598 +0 0.0709 +0 0.1464 +0 0.1152 +0 0.2787 +0 0.0678 +0 0.0847 +0 0.0904 +0 0.0849 +0 0.1071 +0 0.0502 +0 0.1042 +0 0.0896 +0 0.7108 +0 0.2270 +0 0.4548 +0 0.1965 +0 0.0558 +0 0.0666 +0 0.0841 +0 0.0878 +0 0.0830 +0 0.1595 +0 0.0940 +0 0.1141 +0 0.2106 +0 0.1206 +0 0.0740 +0 0.1284 +0 0.0477 +0 0.0707 +1 0.8727 +0 0.0552 +0 0.0870 +0 0.0583 +0 0.0665 +0 0.1089 +0 0.1464 +0 0.2105 +0 0.0796 +0 0.1869 +1 0.7725 +0 0.0822 +0 0.0989 +0 0.0737 +0 0.0631 +0 0.2705 +0 0.2055 +0 0.0462 +0 0.1165 +0 0.1245 +0 0.3963 +0 0.2879 +0 0.2588 +0 0.0986 +0 0.0540 +0 0.1764 +0 0.4559 +0 0.1517 +0 0.0582 +0 0.2000 +0 0.1977 +0 0.2955 +0 0.1359 +0 0.3057 +0 0.0824 +0 0.0981 +0 0.4148 +0 0.2169 +0 0.0581 +0 0.1179 +0 0.0747 +0 0.2676 +0 0.0553 +0 0.1764 +0 0.2676 +0 0.1550 +0 0.0807 +0 0.0415 +0 0.0741 +0 0.0884 +0 0.0999 +0 0.0873 +0 0.1531 +0 0.0740 +0 0.1130 +0 0.0808 +0 0.2200 +0 0.4556 +0 0.1276 +0 0.0498 +0 0.0560 +0 0.0809 +0 0.1479 +0 0.2018 +0 0.0590 +0 0.0693 +0 0.0759 +0 0.0833 +0 0.0903 +0 0.0519 +0 0.0569 +0 0.0499 +0 0.0759 +0 0.0970 +0 0.1050 +0 0.1695 +0 0.1408 +0 0.6315 +0 0.1441 +0 0.0613 +0 0.1266 +0 0.0963 +0 0.3528 +0 0.0566 +0 0.0632 +0 0.5840 +0 0.0743 +0 0.1284 +0 0.0388 +0 0.1543 +0 0.3983 +0 0.1204 +0 0.1198 +0 0.0755 +0 0.2080 +0 0.0890 +0 0.2000 +0 0.1717 +0 0.1513 +0 0.1681 +0 0.1034 +0 0.0418 +0 0.1170 +0 0.0480 +0 0.2841 +0 0.0853 +0 0.2242 +0 0.1481 +0 0.0868 +0 0.0796 +0 0.0810 +0 0.0465 +0 0.1197 +0 0.1232 +0 0.0889 +0 0.1003 +0 0.1374 +0 0.1249 +0 0.0798 +0 0.5739 +0 0.2483 +0 0.0726 +0 0.2530 +0 0.0863 +0 0.1823 +0 0.0979 +0 0.1044 +0 0.0795 +0 0.0580 +0 0.0457 +0 0.0567 +0 0.1528 +0 0.1901 +0 0.1143 +0 0.2786 +0 0.7056 +0 0.1310 +0 0.0623 +0 0.0603 +0 0.0709 +0 0.0592 +0 0.0649 +0 0.1592 +0 0.1234 +0 0.1332 +0 0.1130 +0 0.2350 +0 0.0587 +0 0.0710 +0 0.0672 +0 0.1082 +0 0.1807 +0 0.0940 +0 0.0876 +0 0.2057 +0 0.0730 +0 0.1060 +0 0.0654 +0 0.0758 +0 0.0400 +0 0.1776 +0 0.0857 +0 0.1411 +0 0.1060 +0 0.1513 +0 0.0768 +0 0.0713 +0 0.1133 +0 0.1081 +0 0.5493 +0 0.1472 +0 0.3101 +0 0.1681 +0 0.1099 +0 0.0621 +0 0.0543 +0 0.1779 +0 0.1305 +0 0.0753 +0 0.1493 +0 0.3783 +0 0.1012 +0 0.1646 +0 0.0723 +0 0.3106 +0 0.1533 +0 0.1531 +0 0.2389 +0 0.7471 +0 0.2272 +0 0.0763 +0 0.3079 +0 0.0444 +0 0.3349 +0 0.1356 +0 0.2041 +0 0.7407 +0 0.0843 +0 0.2174 +0 0.1545 +0 0.0790 +0 0.0656 +0 0.1238 +0 0.0562 +0 0.0612 +0 0.1884 +0 0.1141 +0 0.0582 +0 0.2470 +0 0.1331 +0 0.0942 +0 0.0766 +0 0.3643 +0 0.6048 +0 0.0650 +0 0.0418 +0 0.2767 +0 0.2379 +0 0.1705 +0 0.0774 +0 0.1406 +0 0.1046 +0 0.0611 +0 0.0646 +0 0.0797 +0 0.0748 +0 0.0832 +0 0.2445 +0 0.0566 +0 0.1309 +0 0.0702 +0 0.1146 +0 0.0610 +0 0.0892 +0 0.0778 +0 0.0894 +0 0.0387 +0 0.0680 +0 0.0870 +0 0.0909 +0 0.2052 +0 0.0875 +0 0.0350 +0 0.0607 +0 0.1222 +0 0.1209 +0 0.1472 +0 0.1035 +0 0.1239 +0 0.1386 +0 0.2128 +0 0.1311 +0 0.1581 +0 0.2216 +0 0.1446 +0 0.1308 +0 0.1022 +0 0.0832 +0 0.0542 +0 0.0792 +0 0.0638 +0 0.0445 +0 0.0679 +0 0.4333 +0 0.1171 +0 0.1234 +0 0.0732 +0 0.1121 +0 0.0474 +0 0.0573 +0 0.2712 +0 0.1514 +0 0.0768 +0 0.1134 +0 0.1070 +0 0.0476 +0 0.1477 +0 0.1121 +0 0.1566 +0 0.1790 +0 0.0815 +0 0.0755 +0 0.1096 +0 0.1137 +0 0.0824 +0 0.1684 +0 0.0806 +0 0.0950 +0 0.1264 +0 0.1010 +0 0.0990 +0 0.0428 +0 0.0796 +0 0.1012 +0 0.1076 +0 0.0505 +0 0.0964 +0 0.1203 +0 0.0312 +0 0.1562 +0 0.0531 +0 0.2321 +0 0.0451 +0 0.0827 +0 0.2541 +0 0.0882 +0 0.2196 +0 0.1526 +0 0.0839 +0 0.3206 +0 0.0436 +0 0.0939 +0 0.1510 +0 0.1052 +0 0.2966 +0 0.1658 +0 0.0385 +0 0.1301 +0 0.2922 +0 0.0353 +0 0.0757 +0 0.1812 +0 0.1081 +0 0.1073 +0 0.0619 +0 0.1494 +0 0.0635 +0 0.0857 +0 0.1950 +0 0.1297 +0 0.1665 +0 0.1013 +0 0.0709 +0 0.1219 +0 0.1271 +0 0.0379 +0 0.3290 +0 0.1285 +0 0.0539 +0 0.2296 +0 0.0555 +0 0.6850 +0 0.1008 +0 0.1947 +0 0.1345 +0 0.0616 +0 0.0602 +0 0.1374 +0 0.0720 +0 0.0972 +0 0.1701 +0 0.0539 +0 0.1017 +0 0.1056 +0 0.1314 +0 0.1093 +0 0.0447 +0 0.1662 +0 0.0414 +0 0.1048 +0 0.0731 +0 0.3755 +0 0.1089 +0 0.0888 +0 0.0889 +0 0.0429 +0 0.1834 +0 0.1113 +0 0.0663 +0 0.2887 +0 0.1599 +0 0.0950 +0 0.1075 +0 0.1555 +0 0.0993 +0 0.0329 +0 0.1380 +0 0.0773 +0 0.1520 +0 0.1515 +0 0.1296 +0 0.0645 +0 0.0895 +0 0.1170 +0 0.0475 +0 0.0873 +0 0.0603 +0 0.2743 +0 0.1173 +0 0.0916 +0 0.1883 +0 0.1526 +0 0.0509 +0 0.4981 +0 0.1868 +0 0.2013 +0 0.0891 +0 0.0529 +0 0.1196 +0 0.1809 +0 0.2442 +1 0.7615 +0 0.2078 +0 0.0550 +0 0.2215 +0 0.2277 +0 0.1587 +0 0.0606 +0 0.5011 +0 0.2987 +0 0.0660 +0 0.1179 +0 0.1094 +0 0.4966 +0 0.1600 +0 0.1472 +0 0.0828 +0 0.1339 +0 0.1119 +0 0.3171 +0 0.0995 +0 0.1156 +0 0.1191 +0 0.1580 +0 0.0841 +0 0.0521 +0 0.3536 +0 0.1484 +0 0.1049 +0 0.0934 +0 0.1217 +0 0.0628 +0 0.0845 +0 0.1000 +0 0.0556 +0 0.0927 +0 0.0731 +0 0.0895 +0 0.2351 +0 0.0693 +0 0.0424 +0 0.1321 +0 0.3143 +0 0.0643 +0 0.2445 +0 0.1640 +0 0.0820 +0 0.2203 +0 0.0846 +0 0.1441 +0 0.1206 +1 0.8234 +0 0.1227 +0 0.7324 +0 0.0389 +0 0.1559 +0 0.0930 +0 0.0735 +1 0.8644 +0 0.0760 +0 0.1408 +0 0.1231 +0 0.0426 +0 0.0470 +0 0.1366 +0 0.0848 +0 0.0273 +0 0.1180 +0 0.0765 +0 0.0407 +0 0.0486 +0 0.0379 +0 0.0437 +0 0.2096 +0 0.1000 +0 0.0809 +0 0.0513 +0 0.0686 +0 0.3043 +1 0.8189 +0 0.1999 +0 0.1994 +0 0.1242 +0 0.2240 +0 0.1059 +0 0.1721 +0 0.0520 +0 0.1420 +0 0.0739 +0 0.1086 +0 0.1308 +0 0.1837 +0 0.1609 +0 0.1253 +0 0.0999 +1 0.8815 +0 0.0699 +0 0.0816 +0 0.1903 +0 0.1549 +0 0.1805 +0 0.0629 +0 0.6902 +0 0.2360 +0 0.2080 +0 0.3594 +0 0.0700 +0 0.0736 +0 0.2352 +0 0.0492 +0 0.1344 +0 0.0983 +0 0.0743 +0 0.2095 +0 0.0894 +0 0.1048 +0 0.0756 +0 0.1457 +0 0.1568 +0 0.1111 +0 0.1356 +0 0.1067 +0 0.0704 +0 0.1254 +0 0.0362 +0 0.0426 +0 0.1133 +0 0.1152 +0 0.0676 +0 0.1507 +0 0.1028 +0 0.0750 +0 0.0637 +0 0.3277 +0 0.0616 +0 0.0890 +0 0.2765 +0 0.0898 +0 0.0346 +0 0.1244 +0 0.1210 +0 0.0550 +0 0.1436 +0 0.3120 +0 0.0815 +0 0.1557 +0 0.1888 +0 0.2301 +0 0.0492 +0 0.0435 +0 0.0390 +0 0.0872 +0 0.1577 +0 0.2122 +0 0.0796 +0 0.0944 +0 0.0702 +0 0.0695 +0 0.1223 +0 0.1408 +0 0.1192 +0 0.5012 +0 0.1655 +0 0.0777 +0 0.0828 +0 0.2555 +0 0.1492 +0 0.1907 +0 0.2186 +0 0.0544 +0 0.1715 +0 0.2213 +0 0.4185 +0 0.1363 +0 0.1058 +0 0.2179 +0 0.0612 +0 0.0971 +0 0.0748 +0 0.0684 +0 0.1249 +0 0.2402 +1 0.8324 +0 0.0913 +0 0.0779 +0 0.0516 +0 0.0645 +0 0.0502 +0 0.1071 +0 0.1223 +0 0.2117 +0 0.3042 +0 0.1250 +0 0.0792 +0 0.1355 +0 0.1921 +0 0.2438 +0 0.1587 +0 0.2366 +0 0.0713 +0 0.2008 +0 0.2053 +0 0.1746 +0 0.0402 +0 0.1712 +0 0.0559 +0 0.0690 +0 0.0332 +0 0.0649 +0 0.0340 +0 0.3276 +0 0.3637 +0 0.4932 +0 0.1609 +0 0.1665 +0 0.1263 +0 0.1466 +0 0.1702 +0 0.1158 +0 0.0549 +0 0.1516 +0 0.2889 +0 0.1779 +0 0.0326 +0 0.0560 +0 0.7033 +0 0.0562 +0 0.2680 +0 0.1497 +0 0.0630 +0 0.1828 +0 0.0402 +0 0.0535 +0 0.1138 +0 0.2409 +0 0.1732 +0 0.0505 +0 0.3697 +0 0.0811 +0 0.0916 +0 0.0850 +0 0.3463 +0 0.0844 +0 0.1357 +0 0.0400 +0 0.2041 +0 0.0778 +0 0.1168 +0 0.0545 +0 0.0629 +1 0.7839 +0 0.0931 +0 0.0617 +0 0.2078 +0 0.0831 +0 0.0298 +0 0.5678 +0 0.2688 +0 0.0680 +0 0.0623 +0 0.2962 +0 0.1080 +0 0.1803 +0 0.1446 +0 0.1171 +0 0.0400 +0 0.0935 +0 0.0617 +0 0.2579 +0 0.2624 +0 0.1090 +0 0.0672 +0 0.1826 +0 0.1404 +0 0.1182 +0 0.1325 +0 0.1427 +0 0.0991 +0 0.0658 +0 0.1060 +0 0.0588 +0 0.0514 +0 0.1490 +0 0.1300 +0 0.0522 +0 0.1083 +0 0.2662 +0 0.1419 +0 0.0549 +0 0.0640 +0 0.1198 +0 0.2061 +0 0.1095 +0 0.4093 +0 0.4193 +0 0.2268 +0 0.0366 +0 0.0391 +0 0.0933 +0 0.0701 +0 0.1936 +0 0.1184 +0 0.3803 +0 0.1544 +0 0.3282 +0 0.0655 +0 0.5576 +0 0.0987 +0 0.1632 +0 0.0848 +0 0.1110 +0 0.1896 +0 0.1305 +0 0.1247 +0 0.0448 +0 0.0862 +0 0.0838 +0 0.0654 +0 0.1584 +0 0.2446 +0 0.0891 +0 0.0887 +0 0.1011 +0 0.0581 +0 0.2358 +0 0.0919 +0 0.3041 +0 0.1524 +0 0.3914 +0 0.0771 +0 0.0556 +0 0.2036 +0 0.1950 +0 0.7319 +0 0.1665 +0 0.1187 +0 0.0935 +0 0.1307 +0 0.6891 +0 0.1224 +0 0.1324 +0 0.1175 +0 0.0764 +0 0.1278 +0 0.1457 +0 0.0317 +0 0.1392 +0 0.0604 +0 0.1249 +0 0.2068 +0 0.0529 +0 0.0603 +0 0.5634 +0 0.2939 +0 0.0849 +0 0.0842 +0 0.1091 +0 0.0885 +0 0.4070 +0 0.0822 +0 0.1407 +0 0.0798 +0 0.0930 +0 0.0653 +0 0.0797 +0 0.1498 +0 0.2112 +0 0.0634 +0 0.2426 +0 0.2825 +0 0.1290 +0 0.2656 +0 0.3538 +0 0.3196 +0 0.0609 +0 0.0693 +0 0.0853 +0 0.0937 +0 0.1148 +0 0.2485 +0 0.0604 +0 0.0575 +0 0.1476 +0 0.0725 +0 0.1044 +0 0.0874 +0 0.0681 +0 0.6389 +0 0.0428 +0 0.1201 +0 0.0961 +0 0.1275 +0 0.1132 +0 0.0724 +0 0.1412 +0 0.1088 +0 0.1395 +0 0.0759 +0 0.0660 +0 0.1912 +0 0.1501 +0 0.2203 +0 0.1078 +0 0.0587 +0 0.1697 +0 0.0795 +0 0.0485 +0 0.0530 +0 0.1581 +0 0.1512 +0 0.2670 +0 0.0575 +0 0.0969 +0 0.2227 +0 0.0642 +0 0.0859 +0 0.0900 +0 0.0509 +0 0.0583 +0 0.0639 +0 0.2056 +0 0.2699 +0 0.1678 +0 0.0422 +0 0.0971 +0 0.1206 +0 0.2067 +0 0.6619 +0 0.0915 +0 0.0348 +0 0.1902 +0 0.0574 +0 0.3974 +0 0.0468 +0 0.1314 +0 0.0993 +0 0.0799 +0 0.0956 +0 0.0693 +0 0.4149 +0 0.2578 +0 0.1449 +0 0.1106 +0 0.0783 +0 0.1184 +0 0.2538 +1 0.8615 +0 0.2482 +0 0.3233 +0 0.2530 +0 0.1493 +0 0.1531 +0 0.0851 +0 0.0948 +0 0.2258 +0 0.0656 +0 0.2354 +0 0.0874 +0 0.0831 +0 0.1417 +0 0.4313 +0 0.0325 +1 0.7515 +0 0.0883 +0 0.0439 +0 0.1462 +0 0.0951 +0 0.1154 +0 0.0719 +0 0.1531 +0 0.1307 +0 0.1124 +0 0.1158 +0 0.2390 +0 0.0929 +0 0.0935 +0 0.2739 +0 0.7372 +0 0.6458 +0 0.0780 +0 0.0823 +0 0.0990 +0 0.1166 +0 0.3771 +0 0.1298 +0 0.0719 +0 0.1046 +0 0.0762 +0 0.3321 +0 0.1098 +0 0.3142 +0 0.0712 +0 0.0485 +0 0.2354 +0 0.0432 +0 0.0561 +0 0.1805 +0 0.1166 +0 0.1007 +0 0.3685 +0 0.1164 +0 0.2900 +0 0.0581 +0 0.0561 +0 0.1037 +0 0.2549 +0 0.1029 +0 0.0976 +0 0.1895 +0 0.0601 +0 0.1188 +0 0.1093 +0 0.0883 +0 0.0444 +0 0.1386 +0 0.1477 +0 0.0323 +0 0.0620 +0 0.0398 +0 0.1584 +0 0.1100 +0 0.1359 +0 0.0654 +0 0.1059 +0 0.1079 +0 0.1814 +0 0.0615 +0 0.1404 +0 0.1102 +0 0.1281 +0 0.0974 +0 0.0381 +0 0.1161 +0 0.1045 +0 0.3636 +0 0.0734 +0 0.0454 +0 0.1032 +0 0.0926 +0 0.1704 +0 0.0672 +0 0.0725 +0 0.1411 +0 0.1072 +0 0.3687 +0 0.1157 +0 0.0505 +0 0.0884 +0 0.2333 +0 0.2290 +0 0.1181 +0 0.0519 +0 0.0865 +0 0.2597 +0 0.0485 +0 0.0948 +0 0.3641 +1 0.8195 +0 0.0436 +0 0.3386 +0 0.0782 +0 0.0350 +0 0.1319 +0 0.1286 +0 0.3164 +0 0.0886 +0 0.1596 +0 0.0573 +0 0.0660 +0 0.1990 +0 0.1597 +0 0.1578 +0 0.0945 +0 0.0945 +0 0.1113 +0 0.1329 +0 0.0415 +0 0.2409 +0 0.1172 +0 0.1287 +0 0.1968 +0 0.1258 +0 0.1766 +0 0.0646 +0 0.1065 +0 0.1211 +0 0.1761 +0 0.1115 +0 0.0811 +0 0.0910 +0 0.1539 +0 0.2217 +0 0.0857 +0 0.0949 +0 0.0487 +0 0.0627 +0 0.0763 +0 0.1835 +0 0.2782 +0 0.0712 +0 0.0998 +0 0.1848 +0 0.0833 +0 0.0581 +0 0.1543 +0 0.6344 +0 0.1167 +0 0.1193 +0 0.0735 +0 0.0662 +0 0.0820 +0 0.1614 +0 0.1357 +0 0.0685 +0 0.0845 +0 0.0653 +0 0.1610 +0 0.1685 +0 0.0768 +0 0.0462 +0 0.0963 +0 0.1523 +0 0.1835 +0 0.0467 +0 0.0918 +0 0.2321 +0 0.1477 +0 0.0664 +0 0.1124 +0 0.0912 +0 0.0631 +0 0.0602 +0 0.2159 +0 0.0741 +0 0.1369 +0 0.0541 +0 0.1482 +0 0.6387 +0 0.0879 +0 0.0938 +0 0.1627 +0 0.1336 +0 0.6019 +0 0.0832 +0 0.1065 +0 0.5057 +0 0.0809 +0 0.0390 +0 0.1998 +0 0.0884 +0 0.0937 +0 0.0880 +0 0.1399 +0 0.3189 +0 0.4893 +0 0.2904 +0 0.0404 +0 0.0828 +0 0.1081 +1 0.8925 +0 0.0619 +0 0.1346 +0 0.1294 +0 0.0805 +0 0.0880 +0 0.1235 +0 0.4191 +0 0.1617 +0 0.0683 +0 0.1094 +0 0.1295 +0 0.0685 +0 0.2642 +0 0.0424 +0 0.0356 +0 0.1470 +0 0.0953 +0 0.1062 +0 0.0586 +0 0.1459 +0 0.0771 +0 0.2517 +0 0.0326 +0 0.3508 +0 0.1362 +0 0.1388 +0 0.0310 +0 0.5848 +0 0.0492 +0 0.0834 +0 0.3850 +0 0.2189 +0 0.0617 +0 0.1599 +0 0.2109 +0 0.1570 +0 0.1743 +0 0.0863 +0 0.0788 +0 0.0704 +0 0.1382 +0 0.2894 +0 0.0979 +0 0.1292 +0 0.2226 +0 0.5733 +0 0.0816 +0 0.5752 +0 0.1018 +0 0.0364 +0 0.0829 +0 0.0484 +0 0.2224 +0 0.0670 +0 0.0963 +0 0.0730 +0 0.0333 +0 0.1571 +0 0.0735 +0 0.0837 +0 0.0764 +0 0.1690 +0 0.0643 +0 0.0589 +0 0.1451 +0 0.0417 +0 0.1568 +0 0.7356 +0 0.0930 +0 0.5292 +0 0.0387 +0 0.0632 +1 0.8498 +0 0.0932 +0 0.0638 +0 0.5910 +0 0.1003 +0 0.1216 +0 0.0617 +0 0.1698 +0 0.0807 +0 0.0764 +0 0.0724 +0 0.2900 +0 0.7227 +0 0.5744 +0 0.2056 +0 0.1174 +0 0.0529 +0 0.0661 +0 0.4867 +0 0.1856 +0 0.1173 +0 0.1122 +0 0.1008 +0 0.0442 +0 0.0988 +0 0.1193 +0 0.0765 +0 0.0443 +0 0.4711 +0 0.1249 +0 0.1857 +0 0.0952 +0 0.0772 +0 0.0891 +0 0.1123 +0 0.0720 +0 0.1125 +0 0.2332 +0 0.0936 +0 0.0653 +0 0.1195 +0 0.2003 +0 0.0379 +0 0.1200 +0 0.0380 +0 0.0946 +0 0.0613 +0 0.0723 +1 0.8575 +0 0.2361 +1 0.8617 +0 0.1099 +0 0.1682 +0 0.0889 +0 0.4271 +0 0.1189 +0 0.1791 +0 0.0553 +0 0.1045 +0 0.0559 +0 0.0875 +0 0.0863 +0 0.0438 +0 0.1406 +0 0.0567 +0 0.1112 +0 0.1278 +0 0.1036 +0 0.0708 +0 0.0665 +0 0.1921 +0 0.2634 +0 0.1479 +0 0.0403 +0 0.0358 +0 0.2072 +0 0.2075 +0 0.0477 +0 0.2135 +0 0.0697 +0 0.1590 +0 0.0940 +0 0.0985 +0 0.0965 +0 0.1093 +0 0.0543 +0 0.0569 +0 0.0828 +0 0.2392 +0 0.7216 +0 0.1936 +0 0.0489 +0 0.0631 +0 0.1045 +0 0.1744 +0 0.0489 +0 0.1240 +0 0.2059 +0 0.1198 +0 0.0751 +0 0.0650 +0 0.1123 +0 0.1006 +0 0.0479 +0 0.0588 +0 0.1414 +0 0.0784 +0 0.0695 +0 0.2920 +0 0.0870 +0 0.3570 +1 0.7510 +0 0.0422 +0 0.0824 +0 0.0920 +0 0.1348 +0 0.1841 +0 0.0486 +0 0.1339 +0 0.0535 +0 0.1024 +0 0.0609 +0 0.0644 +0 0.0768 +0 0.4870 +0 0.1767 +0 0.0815 +0 0.2365 +0 0.1654 +0 0.1773 +0 0.0649 +0 0.1583 +0 0.0798 +0 0.0548 +0 0.1183 +0 0.1175 +0 0.0980 +0 0.0317 +0 0.0950 +0 0.0644 +0 0.0628 +0 0.5960 +0 0.0490 +0 0.0925 +0 0.0769 +0 0.0825 +0 0.0831 +0 0.0955 +0 0.0788 +1 0.7866 +0 0.1662 +0 0.3580 +0 0.1063 +0 0.7359 +0 0.1155 +0 0.2708 +1 0.8392 +0 0.0992 +0 0.2442 +0 0.1346 +0 0.2121 +0 0.3129 +0 0.1578 +0 0.3641 +0 0.1474 +0 0.0550 +0 0.2599 +0 0.0734 +0 0.0631 +0 0.0531 +0 0.1023 +0 0.2008 +0 0.4691 +0 0.0943 +0 0.2195 +0 0.1220 +0 0.0592 +0 0.0576 +0 0.0989 +0 0.0731 +0 0.0497 +0 0.0515 +0 0.0796 +0 0.0369 +0 0.0542 +0 0.7286 +0 0.2309 +0 0.1499 +0 0.0899 +0 0.5013 +0 0.2108 +0 0.1160 +0 0.2065 +0 0.1869 +0 0.1036 +1 0.8581 +0 0.1377 +0 0.2389 +0 0.2018 +0 0.2037 +0 0.0829 +0 0.0625 +0 0.0399 +0 0.0904 +0 0.0690 +0 0.2371 +0 0.0652 +0 0.1915 +0 0.0667 +0 0.0404 +0 0.2099 +0 0.3116 +0 0.2168 +0 0.0642 +0 0.0912 +0 0.1326 +0 0.1093 +0 0.1835 +0 0.1201 +0 0.3917 +0 0.0747 +0 0.1252 +0 0.0921 +0 0.0578 +0 0.1658 +0 0.0992 +0 0.0707 +0 0.0804 +0 0.0767 +0 0.0668 +0 0.1975 +0 0.1033 +0 0.2961 +0 0.1475 +0 0.2246 +0 0.1001 +0 0.1144 +0 0.1973 +0 0.1312 +0 0.0861 +0 0.1275 +0 0.1709 +0 0.0861 +0 0.0594 +0 0.0924 +0 0.1258 +0 0.0454 +0 0.1380 +0 0.0954 +0 0.1529 +0 0.2026 +0 0.1907 +0 0.1011 +0 0.0810 +0 0.2092 +0 0.0771 +0 0.0482 +0 0.1001 +0 0.0800 +0 0.1682 +0 0.1060 +0 0.0921 +0 0.0681 +0 0.2045 +0 0.0527 +0 0.2607 +0 0.0647 +0 0.0674 +0 0.1385 +0 0.1161 +0 0.0998 +0 0.0920 +0 0.1952 +0 0.1625 +0 0.0912 +0 0.1022 +0 0.2222 +0 0.0739 +0 0.0739 +0 0.1514 +0 0.1197 +0 0.0889 +0 0.1987 +0 0.1109 +0 0.1267 +0 0.2560 +0 0.0945 +0 0.0912 +0 0.0844 +0 0.0945 +0 0.0628 +0 0.1195 +0 0.7236 +0 0.0441 +0 0.0897 +0 0.1521 +0 0.1243 +0 0.0777 +0 0.1080 +1 0.8397 +0 0.0559 +0 0.0841 +0 0.2410 +0 0.0628 +0 0.2936 +0 0.2348 +0 0.1198 +0 0.1053 +0 0.0441 +0 0.0600 +0 0.0855 +0 0.2008 +0 0.0939 +0 0.1760 +0 0.0998 +0 0.0484 +0 0.0407 +0 0.1684 +0 0.0488 +0 0.1121 +0 0.0605 +0 0.0993 +0 0.1867 +0 0.0900 +0 0.5673 +0 0.1291 +0 0.0832 +0 0.1316 +0 0.0805 +0 0.6145 +0 0.0739 +0 0.0567 +1 0.8621 +0 0.0501 +0 0.1139 +0 0.3981 +0 0.1148 +0 0.0906 +0 0.2060 +0 0.0640 +0 0.1865 +0 0.1011 +0 0.0361 +0 0.0446 +0 0.0777 +0 0.1179 +0 0.0764 +0 0.1070 +0 0.1077 +0 0.0764 +0 0.3045 +0 0.1406 +0 0.1141 +0 0.0717 +0 0.1975 +0 0.2530 +0 0.0841 +0 0.0922 +0 0.1832 +0 0.0678 +0 0.0686 +0 0.1633 +0 0.2349 +0 0.0379 +0 0.0792 +0 0.1009 +0 0.1039 +0 0.1223 +0 0.1417 +0 0.0495 +0 0.0916 +0 0.0715 +0 0.0657 +0 0.0388 +1 0.7844 +0 0.1298 +0 0.0681 +0 0.0839 +0 0.1968 +0 0.1022 +0 0.2346 +0 0.1655 +0 0.0709 +0 0.1660 +0 0.0634 +0 0.1136 +0 0.2112 +0 0.1921 +0 0.2047 +0 0.0996 +0 0.0975 +0 0.0478 +0 0.0612 +0 0.0960 +0 0.2016 +0 0.0409 +0 0.0542 +0 0.1209 +0 0.0497 +0 0.0518 +0 0.0469 +0 0.1667 +0 0.5148 +0 0.1325 +0 0.1117 +0 0.0643 +0 0.5201 +0 0.2099 +0 0.1227 +0 0.0951 +1 0.8779 +0 0.1045 +0 0.1312 +0 0.0522 +0 0.1165 +0 0.1053 +0 0.0699 +0 0.2600 +0 0.1618 +0 0.0760 +0 0.0792 +0 0.2069 +0 0.0818 +0 0.1095 +0 0.1289 +0 0.0964 +0 0.0619 +0 0.0522 +0 0.1126 +0 0.1523 +0 0.1078 +0 0.4421 +0 0.1376 +0 0.0461 +0 0.0790 +0 0.0709 +0 0.1314 +0 0.1234 +0 0.0684 +0 0.0514 +0 0.0817 +0 0.0667 +0 0.0904 +0 0.0996 +0 0.0970 +0 0.1511 +0 0.1111 +0 0.1091 +0 0.0530 +0 0.2608 +0 0.2004 +0 0.0359 +0 0.0342 +0 0.0636 +0 0.0690 +0 0.3287 +0 0.1714 +0 0.0659 +0 0.1194 +0 0.0871 +0 0.0790 +0 0.1092 +0 0.0462 +0 0.6681 +0 0.1410 +0 0.1207 +0 0.0601 +0 0.0591 +0 0.0351 +0 0.1053 +0 0.0428 +0 0.2263 +0 0.0794 +0 0.1539 +0 0.1034 +0 0.1976 +0 0.0923 +0 0.0540 +0 0.2527 +0 0.0531 +0 0.1121 +0 0.0617 +0 0.0649 +0 0.3310 +0 0.1063 +0 0.0707 +0 0.2783 +0 0.3379 +0 0.3693 +0 0.5034 +0 0.5117 +0 0.0818 +0 0.2082 +0 0.1288 +0 0.0620 +0 0.5072 +0 0.0787 +0 0.1347 +0 0.0830 +0 0.0575 +0 0.0995 +0 0.1309 +0 0.1496 +0 0.0542 +0 0.1951 +0 0.0603 +0 0.0804 +0 0.0726 +0 0.1014 +1 0.8263 +0 0.6516 +0 0.1674 +0 0.1332 +0 0.1900 +1 0.7672 +0 0.1133 +0 0.0815 +0 0.0665 +0 0.0924 +0 0.1175 +0 0.1174 +0 0.0856 +0 0.1509 +1 0.8056 +0 0.0710 +0 0.0398 +0 0.0928 +0 0.0755 +0 0.2065 +0 0.1142 +0 0.0984 +0 0.0852 +0 0.1190 +0 0.0579 +0 0.0661 +0 0.1408 +0 0.1107 +0 0.1036 +0 0.1856 +0 0.2331 +0 0.0404 +0 0.0687 +0 0.0416 +0 0.3164 +0 0.2157 +0 0.1168 +0 0.0684 +0 0.0744 +0 0.1633 +0 0.0740 +0 0.1720 +0 0.1861 +0 0.0300 +0 0.0699 +0 0.0827 +0 0.3127 +0 0.0828 +0 0.0850 +0 0.1041 +0 0.1659 +0 0.0659 +0 0.0509 +0 0.2006 +0 0.0578 +0 0.2894 +0 0.4791 +0 0.0798 +0 0.0717 +0 0.1635 +0 0.1332 +0 0.1254 +0 0.1100 +0 0.1776 +0 0.0745 +0 0.0670 +0 0.0345 +0 0.1758 +0 0.0649 +0 0.0543 +0 0.0440 +0 0.0841 +0 0.0676 +0 0.0479 +0 0.0901 +0 0.0416 +0 0.1011 +0 0.3590 +0 0.2020 +0 0.0954 +0 0.0813 +1 0.7906 +0 0.2395 +0 0.0655 +0 0.0677 +0 0.0989 +0 0.0786 +0 0.1609 +0 0.0476 +0 0.0350 +0 0.2534 +0 0.1235 +0 0.0416 +0 0.1417 +0 0.2551 +0 0.1385 +0 0.0818 +0 0.1204 +1 0.8363 +0 0.1821 +0 0.0849 +0 0.4818 +0 0.1142 +0 0.0654 +0 0.0866 +0 0.6659 +0 0.0866 +0 0.1264 +0 0.2547 +0 0.0379 +0 0.1218 +0 0.2534 +0 0.5243 +0 0.0690 +0 0.0801 +0 0.0762 +0 0.0808 +0 0.2211 +0 0.1718 +0 0.2297 +0 0.1030 +0 0.0845 +0 0.1084 +0 0.1130 +0 0.0853 +0 0.0680 +1 0.7764 +0 0.1531 +0 0.1466 +0 0.0620 +0 0.0550 +0 0.1417 +0 0.1553 +0 0.1092 +0 0.0928 +0 0.6994 +0 0.0535 +0 0.1054 +0 0.0523 +0 0.0563 +0 0.2446 +0 0.1138 +0 0.0727 +0 0.2609 +0 0.1628 +0 0.1145 +0 0.0507 +0 0.0459 +0 0.1438 +0 0.2393 +0 0.0705 +0 0.0999 +0 0.2122 +0 0.1269 +0 0.0938 +0 0.0586 +0 0.1473 +0 0.0644 +0 0.0869 +0 0.0582 +0 0.0644 +0 0.1014 +0 0.0344 +0 0.0755 +0 0.0811 +0 0.0814 +0 0.2070 +0 0.0729 +0 0.1439 +0 0.0965 +0 0.2013 +0 0.0606 +0 0.1447 +0 0.1611 +0 0.0545 +0 0.0534 +0 0.0477 +0 0.0374 +0 0.0751 +0 0.1947 +0 0.1396 +0 0.0927 +0 0.0677 +0 0.1210 +0 0.1782 +0 0.1526 +0 0.2288 +0 0.1251 +0 0.0694 +0 0.0646 +0 0.3759 +0 0.0681 +0 0.0769 +0 0.1071 +0 0.1649 +0 0.0555 +0 0.1241 +0 0.0837 +0 0.1150 +0 0.1582 +0 0.0804 +0 0.1111 +0 0.7446 +0 0.1364 +0 0.2273 +0 0.0992 +0 0.0409 +0 0.1630 +0 0.0832 +0 0.0815 +0 0.0483 +0 0.0513 +0 0.1662 +0 0.1074 +0 0.1947 +0 0.2444 +0 0.1787 +0 0.0978 +0 0.1003 +0 0.1413 +0 0.0549 +0 0.1874 +0 0.2423 +0 0.0866 +0 0.1252 +0 0.0561 +0 0.0927 +1 0.7539 +0 0.1270 +0 0.0671 +0 0.0932 +0 0.1756 +0 0.0929 +0 0.2258 +0 0.0947 +0 0.0475 +0 0.0565 +0 0.0356 +0 0.0534 +0 0.2556 +0 0.0751 +0 0.1001 +0 0.0833 +0 0.2603 +0 0.1067 +0 0.0868 +0 0.2378 +0 0.0545 +0 0.2134 +0 0.1154 +0 0.0532 +0 0.0889 +0 0.0714 +0 0.1032 +0 0.0955 +0 0.0413 +0 0.3465 +0 0.2260 +0 0.0665 +0 0.1788 +0 0.0707 +0 0.1054 +0 0.1146 +0 0.0896 +0 0.0511 +0 0.0483 +0 0.1039 +0 0.0770 +0 0.1186 +0 0.5263 +0 0.1127 +0 0.1097 +0 0.1873 +0 0.1312 +0 0.1558 +0 0.0738 +0 0.0461 +0 0.1114 +0 0.3079 +0 0.1380 +0 0.0633 +0 0.0982 +0 0.0901 +0 0.0688 +0 0.0704 +0 0.1325 +0 0.1356 +1 0.7921 +0 0.4361 +0 0.0345 +0 0.2398 +0 0.0547 +0 0.1332 +0 0.1639 +0 0.0816 +0 0.0735 +0 0.0402 +0 0.0794 +0 0.1087 +0 0.0864 +0 0.0557 +0 0.0959 +0 0.0841 +0 0.0698 +0 0.1676 +0 0.1795 +0 0.0988 +0 0.1165 +0 0.4059 +0 0.1963 +0 0.0657 +0 0.0892 +0 0.0656 +0 0.5439 +0 0.0655 +0 0.4886 +0 0.1861 +0 0.0875 +0 0.2457 +0 0.1925 +0 0.1207 +0 0.1258 +0 0.5209 +0 0.0737 +0 0.1052 +0 0.1965 +0 0.3044 +0 0.1360 +0 0.0618 +0 0.0576 +0 0.3204 +0 0.0500 +0 0.1860 +0 0.1008 +0 0.0905 +0 0.0711 +0 0.0520 +0 0.3055 +0 0.0940 +0 0.0922 +0 0.1801 +0 0.0473 +0 0.0689 +0 0.1088 +0 0.2853 +0 0.1514 +0 0.0560 +0 0.6559 +0 0.0925 +0 0.6122 +0 0.1448 +0 0.0612 +0 0.0577 +0 0.0960 +0 0.0943 +0 0.0925 +0 0.1798 +0 0.1697 +0 0.0585 +0 0.1178 +0 0.2955 +0 0.1290 +0 0.2597 +0 0.1601 +0 0.1189 +0 0.1109 +0 0.1659 +0 0.0842 +0 0.3079 +0 0.1200 +0 0.0501 +0 0.0497 +0 0.2451 +0 0.6509 +0 0.1952 +1 0.8023 +0 0.1149 +0 0.0874 +1 0.7650 +0 0.0415 +0 0.0724 +0 0.1784 +0 0.0740 +0 0.3522 +0 0.0963 +0 0.0773 +0 0.3313 +0 0.0407 +0 0.0836 +0 0.4402 +0 0.1235 +0 0.0838 +0 0.0713 +0 0.1252 +0 0.2620 +0 0.0578 +0 0.2179 +0 0.2065 +0 0.0513 +0 0.2144 +0 0.0871 +0 0.1064 +0 0.2270 +0 0.7162 +0 0.0593 +0 0.1086 +0 0.0941 +0 0.5855 +0 0.0680 +0 0.1514 +0 0.0962 +0 0.0428 +0 0.1097 +0 0.0925 +0 0.0925 +0 0.0571 +0 0.1117 +0 0.0694 +0 0.4136 +0 0.1684 +0 0.1192 +0 0.0792 +0 0.0974 +0 0.0621 +0 0.2770 +0 0.0556 +0 0.0935 +0 0.0567 +0 0.1338 +0 0.1353 +0 0.0527 +0 0.0621 +0 0.0585 +0 0.1202 +0 0.3909 +0 0.0453 +0 0.1805 +0 0.1145 +0 0.0872 +0 0.0622 +0 0.1987 +0 0.0848 +0 0.3150 +0 0.0895 +0 0.0395 +0 0.1043 +0 0.3901 +0 0.0853 +1 0.8282 +0 0.0631 +0 0.3543 +0 0.1409 +0 0.6288 +0 0.0806 +0 0.1222 +0 0.1134 +0 0.0618 +0 0.0705 +0 0.0797 +0 0.0483 +0 0.1125 +0 0.2060 +0 0.1237 +0 0.0611 +0 0.2678 +0 0.1856 +0 0.1803 +0 0.0600 +0 0.2041 +0 0.0393 +0 0.1606 +0 0.1503 +0 0.1545 +0 0.1071 +0 0.0444 +0 0.1238 +0 0.1496 +0 0.0532 +0 0.7270 +0 0.1395 +0 0.1130 +0 0.0890 +0 0.0514 +0 0.0775 +0 0.0550 +0 0.0695 +0 0.0992 +0 0.0772 +0 0.1124 +0 0.1325 +0 0.0924 +0 0.0994 +0 0.1789 +0 0.2653 +0 0.2258 +0 0.0359 +0 0.2075 +0 0.0678 +0 0.1098 +0 0.1323 +0 0.4554 +0 0.2595 +0 0.0818 +0 0.1147 +0 0.0314 +0 0.0532 +1 0.8307 +0 0.0816 +0 0.0490 +0 0.0657 +0 0.2201 +0 0.1252 +0 0.1011 +0 0.0632 +0 0.0769 +0 0.1187 +0 0.0743 +0 0.1093 +0 0.0551 +0 0.1321 +0 0.2661 +0 0.2398 +0 0.1339 +0 0.1301 +0 0.1784 +0 0.2129 +0 0.0694 +0 0.0610 +0 0.1003 +0 0.5006 +0 0.1134 +0 0.0608 +0 0.0685 +0 0.2609 +0 0.5896 +0 0.0727 +0 0.0864 +0 0.0876 +0 0.1344 +0 0.1627 +0 0.1378 +0 0.1800 +0 0.1837 +0 0.1457 +0 0.1363 +0 0.0906 +0 0.0654 +0 0.1412 +0 0.1768 +0 0.3607 +0 0.6130 +0 0.1686 +0 0.0817 +0 0.0487 +0 0.2739 +0 0.0983 +0 0.0837 +0 0.0880 +1 0.8458 +0 0.0991 +0 0.1074 +0 0.1013 +0 0.6128 +0 0.0499 +0 0.0758 +0 0.1195 +0 0.1113 +0 0.0651 +0 0.0821 +0 0.0404 +0 0.1060 +0 0.1067 +0 0.0949 +0 0.2625 +0 0.0557 +0 0.1390 +0 0.1203 +0 0.0937 +0 0.2112 +0 0.1049 +0 0.0902 +0 0.6509 +0 0.0502 +0 0.1799 +0 0.0744 +0 0.1859 +0 0.0470 +0 0.1050 +0 0.1528 +0 0.0819 +0 0.1486 +0 0.1292 +0 0.5960 +0 0.1367 +0 0.0517 +0 0.1928 +0 0.0868 +0 0.0383 +0 0.0671 +0 0.0728 +0 0.0823 +0 0.1019 +0 0.1091 +0 0.1294 +0 0.0695 +0 0.1140 +0 0.4389 +0 0.1044 +0 0.0944 +0 0.1830 +0 0.0509 +0 0.0789 +0 0.0874 +0 0.0706 +0 0.1252 +0 0.0619 +0 0.0484 +0 0.1613 +0 0.0694 +0 0.0620 +0 0.1338 +0 0.1973 +0 0.0716 +0 0.2233 +0 0.5387 +0 0.0491 +0 0.1198 +0 0.1310 +0 0.0536 +0 0.1365 +0 0.3353 +0 0.0650 +0 0.0629 +0 0.7194 +0 0.0610 +0 0.2057 +0 0.0990 +0 0.1017 +0 0.1927 +0 0.2571 +0 0.3006 +0 0.1647 +0 0.0829 +0 0.1025 +0 0.1061 +0 0.1664 +0 0.0857 +0 0.1187 +0 0.1461 +0 0.1201 +0 0.7030 +0 0.0531 +0 0.1993 +0 0.1813 +0 0.0639 +0 0.0984 +0 0.2571 +0 0.0952 +0 0.2957 +0 0.0715 +0 0.2736 +0 0.0473 +0 0.0902 +0 0.1958 +0 0.1127 +0 0.0564 +0 0.0434 +0 0.0422 +0 0.1176 +0 0.1066 +0 0.0907 +0 0.2206 +0 0.0535 +0 0.1056 +0 0.0795 +0 0.1068 +0 0.0553 +0 0.0306 +0 0.0765 +0 0.1287 +0 0.0702 +0 0.1680 +0 0.2613 +0 0.1000 +0 0.5473 +0 0.1403 +0 0.0468 +1 0.7936 +0 0.0612 +0 0.2219 +0 0.5421 +0 0.0664 +0 0.0873 +0 0.1210 +0 0.0838 +0 0.1596 +0 0.1488 +0 0.1402 +0 0.1799 +0 0.1587 +0 0.1099 +0 0.1120 +0 0.1012 +0 0.3007 +0 0.2386 +0 0.1000 +0 0.2180 +0 0.0562 +0 0.1150 +0 0.1570 +0 0.0947 +0 0.1561 +0 0.1733 +0 0.1071 +0 0.1392 +0 0.3379 +0 0.0903 +0 0.1007 +0 0.1101 +0 0.1044 +0 0.2207 +0 0.1645 +0 0.1376 +0 0.5692 +0 0.0747 +0 0.0683 +0 0.0771 +0 0.0995 +0 0.2553 +0 0.0788 +0 0.0876 +0 0.0956 +0 0.2357 +0 0.1218 +0 0.0666 +0 0.3952 +0 0.0438 +0 0.1744 +0 0.1180 +0 0.1461 +0 0.4177 +0 0.0472 +0 0.1651 +0 0.0741 +0 0.1501 +0 0.0643 +0 0.0718 +0 0.0354 +0 0.1089 +0 0.5377 +0 0.1177 +0 0.0277 +0 0.1028 +0 0.0389 +0 0.1970 +0 0.1119 +0 0.1475 +0 0.0877 +0 0.3302 +0 0.0557 +0 0.1481 +0 0.0896 +0 0.0362 +0 0.0655 +0 0.0473 +0 0.0441 +0 0.0775 +0 0.1417 +0 0.6804 +0 0.1278 +0 0.0643 +0 0.1513 +0 0.0985 +0 0.0815 +0 0.2212 +0 0.0355 +0 0.0742 +0 0.1762 +0 0.4112 +0 0.3822 +0 0.1222 +0 0.0965 +0 0.0423 +0 0.0875 +0 0.1881 +0 0.0747 +0 0.0781 +0 0.1696 +0 0.0938 +0 0.1341 +0 0.0982 +0 0.0666 +0 0.0833 +0 0.0574 +0 0.2356 +0 0.0595 +0 0.1671 +0 0.0551 +0 0.1089 +0 0.0812 +0 0.0910 +0 0.1211 +0 0.0426 +0 0.2242 +0 0.2614 +0 0.2042 +0 0.0722 +0 0.4883 +0 0.1182 +0 0.1699 +0 0.1426 +0 0.1201 +0 0.0851 +0 0.1099 +0 0.1068 +0 0.2847 +0 0.1833 +0 0.0653 +0 0.0806 +0 0.1256 +0 0.1623 +0 0.0504 +0 0.0649 +0 0.1309 +0 0.0620 +0 0.0872 +0 0.0561 +0 0.2630 +0 0.0620 +0 0.0392 +0 0.0577 +0 0.1507 +0 0.1060 +0 0.0497 +0 0.0491 +0 0.0849 +0 0.1743 +0 0.0497 +0 0.1431 +0 0.1110 +0 0.1554 +0 0.1459 +0 0.0442 +0 0.2922 +0 0.1083 +0 0.1083 +0 0.0712 +0 0.1007 +0 0.1564 +0 0.6671 +0 0.2303 +0 0.0702 +0 0.0695 +0 0.0698 +0 0.1922 +0 0.0917 +0 0.0628 +0 0.1196 +0 0.1015 +0 0.1192 +0 0.0661 +0 0.5763 +0 0.1178 +0 0.1230 +0 0.1449 +0 0.1187 +1 0.7975 +0 0.0592 +0 0.0617 +0 0.0752 +0 0.2206 +0 0.0809 +0 0.0495 +0 0.1717 +0 0.0888 +0 0.0524 +0 0.3553 +0 0.0957 +0 0.2403 +0 0.1101 +0 0.1126 +0 0.1997 +0 0.1402 +0 0.0867 +0 0.1019 +0 0.0886 +0 0.1199 +0 0.0563 +0 0.1031 +0 0.0851 +0 0.1227 +0 0.1839 +0 0.1109 +0 0.1181 +0 0.0793 +0 0.1748 +0 0.0851 +0 0.0568 +0 0.1337 +0 0.1037 +0 0.2411 +0 0.2303 +0 0.0341 +0 0.1037 +0 0.2281 +0 0.1486 +0 0.0633 +0 0.2239 +0 0.0612 +0 0.1123 +0 0.1287 +0 0.1917 +0 0.0816 +0 0.0988 +0 0.0541 +0 0.1560 +0 0.2373 +0 0.4869 +0 0.1390 +0 0.0944 +0 0.1811 +0 0.1514 +0 0.1823 +0 0.1825 +0 0.0833 +0 0.1105 +0 0.0674 +0 0.1630 +0 0.1636 +0 0.2086 +0 0.0460 +0 0.1156 +0 0.0275 +0 0.5631 +0 0.1726 +0 0.7313 +0 0.0895 +0 0.2959 +0 0.0915 +0 0.0594 +0 0.1510 +0 0.0940 +0 0.1256 +0 0.1131 +0 0.0770 +0 0.3878 +0 0.0714 +0 0.1528 +0 0.3029 +0 0.1700 +0 0.0924 +0 0.4832 +0 0.2608 +0 0.1033 +0 0.2553 +0 0.1252 +0 0.1276 +0 0.1600 +0 0.0460 +0 0.1156 +0 0.0402 +0 0.2172 +0 0.0565 +0 0.0396 +0 0.0618 +0 0.1586 +0 0.1071 +0 0.1474 +0 0.1307 +0 0.1156 +0 0.0477 +0 0.1116 +0 0.4086 +0 0.0654 +0 0.1745 +0 0.0718 +0 0.7175 +0 0.1005 +0 0.5067 +1 0.7827 +0 0.0455 +0 0.5859 +0 0.0949 +0 0.2170 +0 0.6026 +0 0.3468 +0 0.0559 +0 0.0558 +0 0.0440 +0 0.0451 +0 0.0781 +0 0.1166 +0 0.1437 +0 0.2394 +0 0.0694 +0 0.2904 +0 0.0496 +0 0.0748 +0 0.0639 +0 0.2325 +0 0.3871 +0 0.0579 +0 0.0943 +0 0.3366 +0 0.1150 +0 0.5301 +0 0.0769 +0 0.0979 +0 0.0752 +0 0.1098 +0 0.0766 +0 0.0921 +0 0.0956 +0 0.0671 +0 0.0616 +0 0.0877 +0 0.0718 +0 0.2238 +0 0.1355 +0 0.1643 +0 0.0946 +0 0.0638 +0 0.0873 +0 0.0851 +0 0.1195 +0 0.0804 +0 0.0618 +0 0.0649 +0 0.0546 +0 0.1197 +0 0.1927 +0 0.0768 +0 0.0780 +0 0.0767 +0 0.1910 +0 0.1335 +0 0.2343 +0 0.0984 +0 0.0655 +0 0.0572 +0 0.0716 +0 0.1057 +0 0.1064 +0 0.2859 +0 0.1441 +0 0.0796 +0 0.0748 +0 0.0425 +0 0.5465 +0 0.5909 +0 0.0725 +0 0.0716 +0 0.1077 +0 0.1110 +0 0.0589 +0 0.1152 +0 0.1993 +0 0.1188 +0 0.0660 +0 0.1161 +0 0.2768 +0 0.1626 +0 0.1285 +0 0.2334 +0 0.1079 +0 0.0956 +0 0.0995 +0 0.1408 +0 0.4034 +0 0.1988 +0 0.2813 +0 0.0699 +0 0.0633 +0 0.1075 +0 0.4034 +0 0.0652 +0 0.1737 +0 0.1076 +0 0.0454 +0 0.0687 +0 0.0595 +0 0.2021 +0 0.1228 +0 0.0596 +0 0.4070 +0 0.0719 +0 0.0549 +0 0.1196 +1 0.7661 +0 0.0947 +0 0.1300 +0 0.1242 +1 0.8217 +0 0.6554 +0 0.1449 +0 0.0741 +0 0.0709 +0 0.1275 +0 0.1379 +0 0.2292 +0 0.5078 +0 0.1334 +0 0.4174 +0 0.6238 +0 0.0717 +0 0.0492 +0 0.1417 +0 0.1458 +0 0.1904 +0 0.1298 +0 0.1609 +0 0.1331 +0 0.0985 +0 0.1297 +0 0.0489 +0 0.0316 +0 0.0608 +0 0.2717 +1 0.7949 +0 0.1021 +0 0.1073 +0 0.0918 +0 0.3507 +0 0.1548 +0 0.1541 +0 0.0377 +0 0.0916 +0 0.1044 +0 0.0819 +0 0.0627 +0 0.1505 +0 0.0546 +0 0.0475 +0 0.0963 +0 0.1316 +0 0.0686 +0 0.1066 +0 0.0677 +0 0.1409 +0 0.0376 +0 0.1321 +0 0.0655 +0 0.2516 +0 0.0553 +0 0.2739 +0 0.2779 +0 0.0671 +0 0.0834 +0 0.1250 +0 0.0894 +0 0.1139 +0 0.0743 +0 0.1018 +0 0.1048 +0 0.0795 +0 0.3806 +0 0.0764 +0 0.0747 +0 0.1318 +0 0.1550 +0 0.0438 +0 0.1283 +0 0.0615 +0 0.2059 +0 0.1848 +0 0.1124 +0 0.0886 +0 0.1024 +0 0.0694 +0 0.0948 +0 0.2670 +0 0.1855 +0 0.3084 +0 0.1467 +0 0.4136 +0 0.1305 +0 0.2187 +0 0.0884 +0 0.0463 +0 0.1083 +0 0.0961 +0 0.5042 +0 0.0711 +0 0.0390 +0 0.0648 +0 0.0529 +0 0.0953 +0 0.0564 +0 0.0842 +0 0.3867 +0 0.0973 +0 0.3289 +0 0.5336 +0 0.1171 +0 0.0813 +0 0.1595 +0 0.1560 +0 0.2010 +0 0.0794 +0 0.2965 +0 0.0945 +0 0.0698 +0 0.1472 +0 0.1303 +0 0.1184 +0 0.0587 +0 0.1377 +0 0.1780 +0 0.0972 +0 0.0969 +0 0.1355 +0 0.1716 +0 0.0905 +0 0.1267 +0 0.0946 +0 0.1131 +0 0.1402 +0 0.1976 +0 0.2307 +0 0.1251 +0 0.3731 +0 0.0525 +0 0.0893 +0 0.1454 +0 0.3508 +1 0.8665 +0 0.1075 +0 0.0373 +0 0.0756 +0 0.1950 +0 0.2371 +0 0.0599 +0 0.2678 +0 0.0825 +0 0.0718 +0 0.0788 +0 0.0596 +0 0.1548 +0 0.5786 +0 0.0649 +0 0.1167 +0 0.0920 +0 0.1099 +0 0.1237 +0 0.1191 +0 0.5699 +0 0.1136 +0 0.1394 +0 0.0966 +0 0.0633 +0 0.0861 +0 0.1176 +0 0.4388 +0 0.0858 +0 0.1068 +0 0.1201 +0 0.0981 +0 0.1535 +0 0.2354 +0 0.3966 +0 0.0537 +0 0.1260 +0 0.1066 +0 0.0998 +0 0.2792 +0 0.1276 +0 0.1002 +0 0.0469 +0 0.1479 +0 0.5328 +0 0.1691 +0 0.1008 +0 0.0634 +0 0.0777 +0 0.0920 +0 0.0978 +0 0.1620 +0 0.0690 +0 0.1362 +0 0.1331 +0 0.4716 +0 0.3108 +0 0.1273 +1 0.7776 +0 0.0601 +0 0.2555 +0 0.1068 +0 0.1163 +0 0.1398 +0 0.0607 +0 0.0933 +0 0.0365 +0 0.1624 +0 0.1437 +0 0.0489 +0 0.1149 +0 0.0990 +0 0.1231 +0 0.0458 +0 0.1803 +0 0.2552 +0 0.1092 +0 0.0674 +0 0.0984 +0 0.1547 +0 0.1459 +0 0.1187 +0 0.0919 +0 0.0538 +0 0.0635 +0 0.1287 +0 0.0570 +0 0.1224 +0 0.0869 +0 0.1002 +0 0.1275 +0 0.0537 +0 0.1831 +0 0.1012 +0 0.1369 +0 0.4283 +0 0.1196 +0 0.0643 +0 0.1101 +0 0.0941 +0 0.3585 +0 0.0971 +0 0.0672 +0 0.1167 +0 0.4074 +0 0.0853 +0 0.1004 +0 0.1597 +0 0.0946 +0 0.0780 +0 0.1319 +0 0.1052 +0 0.0723 +0 0.4214 +0 0.0400 +0 0.0963 +0 0.0513 +0 0.1494 +0 0.1282 +0 0.0738 +0 0.0478 +0 0.1580 +0 0.0598 +0 0.0711 +0 0.2563 +0 0.0850 +0 0.0933 +0 0.1598 +0 0.0828 +0 0.1146 +0 0.0583 +0 0.1367 +0 0.0312 +0 0.3829 +0 0.1456 +0 0.0707 +0 0.0748 +0 0.0504 +0 0.0901 +0 0.1447 +0 0.1993 +0 0.0601 +0 0.1587 +0 0.4835 +0 0.0964 +0 0.0859 +0 0.1587 +0 0.1724 +0 0.0408 +0 0.2414 +0 0.0653 +0 0.0537 +0 0.0520 +0 0.2464 +0 0.1325 +0 0.0845 +0 0.0844 +0 0.1173 +0 0.1712 +0 0.0651 +0 0.0559 +0 0.3039 +0 0.1133 +0 0.0601 +0 0.1944 +0 0.0622 +0 0.1875 +0 0.0955 +0 0.0748 +0 0.1051 +0 0.0676 +0 0.1454 +0 0.0901 +0 0.1409 +0 0.0976 +0 0.1761 +0 0.0854 +0 0.0802 +0 0.1679 +0 0.1101 +0 0.1367 +0 0.1419 +0 0.0644 +1 0.8769 +0 0.0695 +0 0.0416 +0 0.1262 +1 0.7713 +0 0.1145 +0 0.1010 +0 0.0903 +0 0.0823 +0 0.0981 +0 0.0949 +0 0.0387 +0 0.0461 +0 0.0957 +1 0.7907 +0 0.0927 +0 0.1415 +0 0.1249 +0 0.1013 +0 0.1400 +0 0.0885 +0 0.1456 +0 0.2586 +0 0.1547 +0 0.0562 +0 0.0776 +0 0.2877 +0 0.0471 +0 0.0510 +0 0.3200 +0 0.0808 +0 0.2356 +0 0.1836 +0 0.2066 +0 0.1024 +0 0.1010 +0 0.0661 +0 0.1784 +0 0.1055 +0 0.1014 +0 0.1424 +0 0.3800 +0 0.1060 +0 0.1137 +0 0.3447 +0 0.0601 +0 0.2171 +0 0.0942 +0 0.1165 +0 0.0936 +0 0.1046 +0 0.1131 +0 0.0791 +0 0.1228 +0 0.0888 +0 0.1123 +0 0.1407 +0 0.0732 +0 0.2568 +0 0.0659 +0 0.0825 +0 0.1474 +0 0.1037 +0 0.1792 +0 0.0534 +0 0.1361 +0 0.0617 +0 0.1645 +0 0.1534 +0 0.1457 +0 0.0482 +0 0.1484 +0 0.1032 +0 0.2361 +0 0.1724 +0 0.6548 +0 0.1977 +0 0.2067 +0 0.0441 +0 0.0678 +0 0.1012 +0 0.1434 +0 0.0594 +0 0.6603 +0 0.1056 +0 0.1985 +0 0.1749 +0 0.0698 +0 0.1661 +0 0.0655 +0 0.0801 +0 0.0628 +0 0.1672 +0 0.3210 +0 0.1404 +0 0.1009 +0 0.0523 +0 0.0898 +0 0.3280 +0 0.0860 +0 0.0761 +0 0.2041 +0 0.2257 +0 0.1455 +0 0.0904 +0 0.0592 +0 0.0925 +0 0.2079 +0 0.0410 +0 0.1867 +0 0.1037 +0 0.1005 +1 0.8837 +0 0.0872 +0 0.0515 +0 0.0382 +0 0.4689 +0 0.0725 +0 0.0653 +0 0.0799 +0 0.1725 +0 0.0740 +0 0.2118 +0 0.1182 +0 0.0879 +0 0.1326 +0 0.4119 +0 0.1091 +0 0.0412 +0 0.1677 +0 0.1322 +0 0.1706 +0 0.1135 +0 0.0845 +0 0.2257 +0 0.1251 +0 0.1164 +0 0.1502 +0 0.1880 +0 0.1243 +0 0.0664 +0 0.0650 +0 0.1402 +0 0.1136 +0 0.2283 +1 0.8762 +0 0.0430 +0 0.2484 +0 0.1336 +0 0.0585 +0 0.1911 +0 0.1401 +0 0.1220 +0 0.0984 +0 0.0380 +0 0.1391 +0 0.0441 +0 0.0974 +0 0.1367 +0 0.0482 +0 0.1072 +0 0.0777 +0 0.5402 +0 0.1833 +0 0.5271 +0 0.0381 +0 0.1953 +0 0.0642 +0 0.0733 +0 0.0747 +0 0.1525 +0 0.1926 +0 0.2227 +0 0.0935 +0 0.0534 +0 0.0690 +0 0.6862 +0 0.1306 +0 0.0809 +0 0.2387 +0 0.0982 +0 0.1044 +0 0.0426 +0 0.0874 +0 0.2011 +0 0.1057 +0 0.0526 +0 0.0680 +0 0.0826 +0 0.1124 +0 0.0673 +0 0.2000 +0 0.0833 +0 0.1079 +0 0.0884 +0 0.3672 +0 0.2011 +0 0.0794 +0 0.0773 +0 0.0678 +0 0.3100 +0 0.0636 +0 0.1979 +0 0.0554 +0 0.0712 +0 0.1967 +0 0.0641 +0 0.0827 +0 0.1233 +0 0.0521 +0 0.0474 +0 0.1250 +0 0.0476 +0 0.4800 +1 0.8191 +0 0.0866 +0 0.0694 +0 0.2430 +0 0.0471 +0 0.1512 +0 0.1518 +0 0.1557 +0 0.1948 +0 0.1064 +0 0.0967 +0 0.2191 +0 0.0945 +1 0.8563 +0 0.1503 +0 0.3986 +0 0.0849 +0 0.3841 +0 0.2108 +0 0.1278 +0 0.1637 +0 0.3219 +0 0.1011 +0 0.0725 +0 0.1074 +0 0.3449 +0 0.1082 +0 0.0563 +0 0.1240 +0 0.1533 +0 0.0871 +0 0.0920 +0 0.0771 +0 0.1674 +0 0.0793 +0 0.2314 +0 0.0772 +0 0.0586 +0 0.0709 +0 0.1442 +0 0.1926 +0 0.1481 +0 0.0566 +0 0.2013 +0 0.0637 +0 0.2702 +0 0.0811 +0 0.2087 +1 0.8298 +0 0.0635 +0 0.1133 +0 0.1325 +0 0.1003 +0 0.1372 +1 0.8649 +0 0.1168 +0 0.0499 +0 0.1478 +0 0.1751 +0 0.2384 +0 0.0635 +0 0.0799 +0 0.1862 +0 0.1293 +0 0.0510 +0 0.1525 +0 0.1328 +0 0.1110 +0 0.0660 +0 0.3073 +0 0.0661 +0 0.1009 +0 0.0876 +0 0.0930 +0 0.2089 +0 0.0893 +0 0.0966 +0 0.0752 +0 0.1287 +0 0.0783 +0 0.0618 +0 0.0459 +0 0.1836 +0 0.0795 +0 0.1064 +1 0.3178 +0 0.2083 +0 0.1026 +0 0.2541 +0 0.0507 +0 0.0751 +0 0.1207 +0 0.0963 +0 0.0491 +0 0.1124 +0 0.0946 +0 0.1148 +0 0.0559 +0 0.1337 +0 0.1181 +0 0.0762 +0 0.1167 +0 0.0558 +0 0.5433 +0 0.1748 +0 0.0686 +0 0.1576 +0 0.0788 +0 0.0633 +0 0.0823 +0 0.1277 +0 0.1393 +0 0.0436 +0 0.0575 +0 0.0469 +0 0.0554 +0 0.4244 +0 0.1431 +0 0.1049 +0 0.0786 +0 0.1102 +0 0.1208 +0 0.1799 +0 0.1104 +0 0.1239 +0 0.0837 +0 0.0877 +0 0.1665 +0 0.1678 +0 0.0646 +0 0.0749 +0 0.0551 +0 0.4513 +0 0.1194 +0 0.1474 +0 0.1531 +0 0.0764 +0 0.0505 +0 0.0521 +0 0.4799 +0 0.0402 +0 0.0647 +0 0.0847 +0 0.0309 +0 0.1290 +1 0.7713 +0 0.2678 +0 0.0430 +0 0.0551 +0 0.0890 +0 0.0612 +0 0.1516 +0 0.1352 +0 0.0916 +0 0.1672 +0 0.1424 +0 0.0730 +0 0.0788 +0 0.1947 +0 0.1479 +0 0.1193 +0 0.0703 +0 0.0688 +0 0.0735 +0 0.0519 +0 0.0915 +0 0.0965 +0 0.1608 +0 0.0751 +0 0.0899 +0 0.0461 +0 0.1989 +0 0.1329 +0 0.6358 +0 0.0696 +0 0.0929 +0 0.1556 +0 0.1432 +0 0.2405 +0 0.1597 +0 0.0753 +0 0.1183 +0 0.1329 +0 0.3835 +0 0.2627 +0 0.0718 +0 0.0951 +0 0.0818 +0 0.0506 +0 0.0633 +0 0.1058 +0 0.2025 +0 0.0628 +0 0.1044 +0 0.0331 +1 0.7844 +0 0.0930 +0 0.0542 +0 0.0909 +0 0.0741 +0 0.0609 +0 0.0399 +0 0.0796 +0 0.1829 +0 0.0912 +0 0.0490 +0 0.0891 +0 0.0885 +0 0.0538 +0 0.0717 +0 0.0681 +0 0.1735 +0 0.1843 +0 0.3142 +0 0.1178 +0 0.2326 +0 0.0466 +0 0.0843 +0 0.1217 +0 0.0750 +0 0.0534 +0 0.0888 +0 0.0513 +0 0.0702 +0 0.0806 +0 0.0834 +0 0.0757 +0 0.1034 +0 0.0717 +0 0.0985 +0 0.1317 +0 0.0599 +0 0.1734 +0 0.0825 +0 0.2052 +0 0.0639 +0 0.0429 +0 0.6489 +0 0.1849 +0 0.4527 +0 0.1472 +0 0.1038 +0 0.3179 +0 0.0940 +0 0.0587 +0 0.2502 +0 0.1109 +0 0.0500 +0 0.0645 +0 0.1710 +0 0.1045 +0 0.0689 +0 0.0585 +0 0.0961 +0 0.0930 +0 0.2371 +0 0.1911 +0 0.0675 +0 0.6934 +0 0.0918 +0 0.2004 +0 0.0770 +0 0.0931 +0 0.1104 +0 0.0750 +0 0.1143 +0 0.1948 +0 0.0659 +0 0.1553 +0 0.0821 +0 0.0768 +0 0.1512 +0 0.0494 +0 0.0741 +0 0.1294 +0 0.1470 +0 0.1587 +0 0.3392 +0 0.1015 +0 0.2486 +0 0.2844 +0 0.1103 +0 0.1353 +0 0.2064 +0 0.0946 +0 0.0496 +0 0.0616 +1 0.8238 +0 0.2069 +0 0.0677 +0 0.0638 +0 0.0731 +0 0.0561 +1 0.7994 +0 0.1345 +0 0.2071 +0 0.1784 +0 0.0849 +0 0.0885 +0 0.1099 +0 0.0473 +0 0.0570 +0 0.0753 +0 0.0411 +0 0.0878 +0 0.0751 +0 0.2229 +0 0.0810 +0 0.0408 +0 0.0552 +0 0.2039 +1 0.7997 +0 0.2553 +0 0.0594 +0 0.7229 +0 0.0580 +0 0.2154 +0 0.1266 +0 0.1124 +0 0.0476 +0 0.1247 +0 0.1004 +0 0.0590 +0 0.0839 +0 0.1295 +0 0.1426 +0 0.6869 +0 0.1580 +0 0.1037 +0 0.1091 +0 0.1163 +0 0.5147 +0 0.0953 +0 0.0912 +0 0.1263 +0 0.0987 +0 0.0763 +0 0.0945 +0 0.3231 +0 0.1971 +0 0.1619 +0 0.2034 +0 0.0895 +0 0.1431 +0 0.1080 +0 0.0946 +0 0.0683 +0 0.0838 +0 0.1668 +1 0.8176 +0 0.0986 +0 0.0913 +0 0.0378 +0 0.0816 +0 0.0784 +0 0.1360 +0 0.7350 +0 0.1429 +0 0.1719 +0 0.0403 +0 0.1014 +0 0.0699 +0 0.1106 +0 0.3265 +0 0.0464 +0 0.0782 +0 0.2939 +0 0.0965 +0 0.1196 +0 0.1367 +0 0.0459 +0 0.1000 +0 0.2345 +0 0.0485 +0 0.1796 +0 0.0522 +0 0.1827 +0 0.3369 +0 0.0578 +0 0.1021 +0 0.1066 +0 0.1069 +0 0.0689 +0 0.0813 +0 0.0928 +0 0.1713 +0 0.1149 +0 0.0761 +1 0.8529 +0 0.0585 +0 0.2110 +0 0.1591 +0 0.6013 +0 0.1643 +0 0.0455 +0 0.0608 +0 0.1223 +0 0.1908 +0 0.2697 +0 0.1963 +0 0.1718 +0 0.0888 +0 0.2224 +0 0.3294 +0 0.2815 +0 0.0600 +0 0.1832 +0 0.1373 +0 0.0404 +0 0.5585 +0 0.1012 +0 0.1577 +0 0.1647 +0 0.0717 +0 0.1248 +0 0.6943 +0 0.0929 +0 0.1055 +0 0.1273 +0 0.1203 +0 0.1198 +0 0.1417 +0 0.1470 +0 0.0459 +0 0.2201 +0 0.0934 +0 0.1415 +0 0.1531 +0 0.0797 +0 0.0844 +0 0.0716 +0 0.1938 +0 0.3524 +0 0.0911 +0 0.1857 +0 0.1101 +0 0.3056 +0 0.1375 +0 0.0778 +1 0.7900 +0 0.0613 +0 0.1052 +0 0.0446 +0 0.0946 +0 0.0435 +0 0.0643 +0 0.7276 +0 0.1220 +0 0.0421 +0 0.1889 +0 0.0853 +0 0.1031 +0 0.0415 +0 0.1939 +0 0.0877 +0 0.1061 +0 0.2198 +0 0.0832 +0 0.0652 +0 0.0415 +0 0.2554 +0 0.0988 +0 0.0908 +0 0.0536 +0 0.2709 +0 0.0835 +0 0.0444 +0 0.3780 +0 0.0759 +0 0.1029 +0 0.2782 +0 0.0528 +0 0.5943 +0 0.1848 +0 0.0517 +0 0.1017 +0 0.1203 +0 0.1621 +0 0.2866 +0 0.0967 +0 0.2451 +0 0.1253 +0 0.2901 +0 0.2724 +0 0.1148 +0 0.0680 +0 0.1395 +0 0.3611 +0 0.1454 +0 0.0904 +0 0.1255 +0 0.1255 +0 0.0571 +0 0.0957 +0 0.2166 +0 0.3512 +0 0.5986 +0 0.0871 +0 0.1844 +0 0.1211 +0 0.2632 +0 0.1611 +0 0.2378 +0 0.0934 +0 0.0676 +0 0.4020 +0 0.2157 +0 0.0954 +0 0.0716 +0 0.0724 +0 0.1111 +0 0.1740 +0 0.0661 +0 0.0513 +0 0.1257 +0 0.0801 +0 0.6437 +0 0.1159 +0 0.1659 +0 0.1789 +0 0.0595 +0 0.1347 +0 0.0569 +0 0.0499 +0 0.1141 +0 0.1286 +0 0.1133 +0 0.0572 +0 0.0826 +0 0.1168 +0 0.0785 +0 0.0728 +0 0.0813 +0 0.1440 +0 0.1136 +0 0.1062 +0 0.0510 +0 0.5807 +0 0.2487 +0 0.1234 +0 0.0632 +0 0.0738 +0 0.0436 +0 0.0617 +0 0.1072 +0 0.0701 +0 0.0583 +0 0.0724 +0 0.0516 +0 0.1550 +0 0.1119 +0 0.0854 +0 0.0633 +0 0.2905 +0 0.0909 +0 0.0938 +0 0.5848 +1 0.8590 +0 0.1856 +0 0.1126 +0 0.1280 +0 0.0932 +1 0.8629 +0 0.4928 +0 0.1825 +0 0.1647 +0 0.0687 +0 0.1437 +0 0.6604 +0 0.1614 +0 0.1038 +0 0.1136 +0 0.2185 +0 0.0592 +0 0.0564 +0 0.1787 +0 0.1209 +0 0.0733 +0 0.2290 +0 0.1906 +0 0.1008 +0 0.0812 +0 0.0576 +0 0.1345 +0 0.1112 +0 0.0568 +0 0.0393 +0 0.0518 +0 0.0704 +0 0.0782 +0 0.0418 +0 0.0948 +0 0.2594 +0 0.1289 +0 0.0427 +0 0.1152 +0 0.0741 +0 0.0739 +0 0.0922 +0 0.2175 +0 0.0821 +0 0.0996 +0 0.0665 +0 0.3127 +0 0.2006 +0 0.0776 +0 0.0812 +0 0.4676 +0 0.1092 +0 0.1187 +0 0.0528 +0 0.0911 +0 0.1693 +0 0.0381 +0 0.0818 +0 0.0810 +0 0.1062 +0 0.3047 +0 0.1503 +0 0.1087 +0 0.1166 +0 0.1128 +0 0.1264 +0 0.1010 +0 0.3030 +0 0.6941 +0 0.0651 +0 0.0681 +0 0.3170 +0 0.1065 +0 0.0788 +0 0.0685 +0 0.1203 +0 0.0881 +0 0.1378 +0 0.1692 +0 0.0784 +0 0.1068 +0 0.0786 +0 0.2396 +0 0.1497 +0 0.2302 +0 0.1968 +0 0.1039 +0 0.2605 +0 0.3793 +0 0.3945 +0 0.0903 +0 0.1087 +0 0.1383 +1 0.8663 +0 0.1163 +0 0.4012 +1 0.8130 +0 0.2365 +0 0.1287 +0 0.0380 +0 0.2360 +0 0.0504 +0 0.0309 +0 0.1878 +0 0.4409 +0 0.0860 +0 0.0917 +0 0.3263 +0 0.2364 +0 0.0929 +0 0.0436 +0 0.0692 +0 0.1364 +0 0.1678 +0 0.3028 +0 0.1022 +0 0.0456 +0 0.2489 +0 0.0952 +0 0.0704 +0 0.1258 +0 0.0773 +0 0.0642 +0 0.0617 +0 0.0511 +0 0.0849 +0 0.0508 +0 0.0589 +0 0.0537 +0 0.1121 +0 0.1297 +0 0.2130 +0 0.1069 +0 0.1192 +0 0.2534 +0 0.0913 +0 0.0668 +0 0.4792 +0 0.1210 +0 0.3713 +0 0.1574 +0 0.0726 +0 0.1239 +0 0.2718 +0 0.2920 +0 0.4960 +0 0.0738 +0 0.4570 +0 0.1373 +0 0.2930 +0 0.0671 +0 0.0657 +0 0.1713 +0 0.0411 +0 0.2463 +0 0.1766 +0 0.0475 +0 0.2126 +0 0.1524 +0 0.0634 +0 0.1335 +0 0.0822 +0 0.1422 +0 0.0851 +0 0.0682 +0 0.2551 +0 0.2802 +1 0.7860 +0 0.2902 +0 0.1049 +0 0.1857 +0 0.1035 +0 0.0305 +0 0.0647 +0 0.1044 +0 0.1738 +0 0.2459 +0 0.0874 +0 0.0631 +0 0.0978 +0 0.2169 +0 0.0743 +0 0.4050 +0 0.1208 +0 0.0885 +0 0.1293 +0 0.5627 +0 0.1671 +0 0.1066 +0 0.1969 +0 0.0491 +0 0.0668 +0 0.0490 +0 0.2965 +0 0.1906 +0 0.2231 +0 0.1828 +0 0.7075 +0 0.0712 +0 0.2526 +0 0.0723 +0 0.0368 +0 0.0897 +0 0.0477 +0 0.1568 +0 0.3709 +0 0.1773 +0 0.1116 +0 0.1100 +0 0.0897 +0 0.6964 +0 0.0577 +0 0.1198 +0 0.1812 +0 0.4967 +0 0.0549 +0 0.2155 +0 0.1199 +0 0.0547 +0 0.0369 +0 0.0914 +0 0.0397 +0 0.2447 +0 0.0613 +0 0.0785 +1 0.8185 +0 0.1224 +0 0.0564 +0 0.1087 +0 0.1539 +0 0.1379 +0 0.1664 +0 0.2368 +0 0.0764 +0 0.0864 +0 0.1305 +0 0.4593 +0 0.0833 +0 0.6095 +0 0.1130 +0 0.1278 +0 0.1016 +0 0.3667 +0 0.0761 +0 0.0954 +0 0.0723 +0 0.1320 +0 0.0617 +0 0.1878 +0 0.1130 +0 0.1870 +0 0.0392 +0 0.0498 +0 0.1679 +0 0.0782 +0 0.0354 +0 0.0731 +0 0.1071 +0 0.0458 +0 0.1721 +0 0.1346 +0 0.7344 +0 0.0706 +0 0.1173 +0 0.0929 +0 0.1242 +0 0.6712 +0 0.1043 +0 0.1487 +0 0.0873 +0 0.0987 +0 0.0733 +0 0.0856 +0 0.1125 +0 0.1513 +0 0.0702 +0 0.0940 +0 0.5949 +0 0.0998 +0 0.0969 +0 0.0848 +0 0.2625 +0 0.0781 +0 0.0603 +0 0.1559 +0 0.6252 +0 0.3146 +0 0.1646 +0 0.0607 +0 0.0674 +0 0.0794 +0 0.0395 +0 0.1795 +0 0.2510 +0 0.1202 +0 0.2351 +0 0.0613 +0 0.2633 +0 0.0849 +0 0.0780 +0 0.0886 +0 0.0546 +0 0.0661 +0 0.0480 +0 0.0876 +0 0.1167 +0 0.1050 +0 0.0763 +0 0.0623 +0 0.1177 +0 0.0672 +0 0.0523 +0 0.0670 +0 0.1866 +0 0.2374 +0 0.0511 +0 0.2002 +0 0.2049 +0 0.0850 +0 0.0692 +0 0.0790 +0 0.0657 +0 0.0550 +0 0.0596 +0 0.0497 +0 0.0399 +0 0.1548 +0 0.1058 +0 0.0459 +0 0.1107 +0 0.0824 +0 0.1148 +0 0.0694 +0 0.4511 +0 0.0798 +0 0.0570 +0 0.1707 +0 0.3647 +0 0.0729 +0 0.2022 +0 0.6702 +0 0.2683 +1 0.8292 +0 0.0473 +0 0.1014 +0 0.1287 +0 0.1672 +0 0.0435 +0 0.0814 +0 0.1570 +0 0.0760 +0 0.0525 +0 0.1436 +0 0.1167 +0 0.1508 +0 0.0771 +0 0.1307 +0 0.1873 +0 0.1293 +0 0.0402 +0 0.0765 +0 0.0705 +0 0.0888 +0 0.7201 +0 0.0994 +0 0.0683 +0 0.0847 +0 0.1114 +0 0.0830 +0 0.0838 +0 0.2953 +0 0.0853 +0 0.0783 +0 0.1331 +0 0.1852 +0 0.1000 +0 0.1029 +0 0.1332 +0 0.0819 +0 0.1102 +0 0.1988 +0 0.2109 +0 0.1029 +0 0.2075 +0 0.2081 +0 0.1634 +0 0.0328 +0 0.0848 +0 0.0542 +0 0.0656 +0 0.0756 +0 0.1700 +0 0.1932 +0 0.1535 +0 0.0399 +0 0.5078 +0 0.1815 +0 0.0840 +0 0.0662 +0 0.3454 +0 0.0614 +0 0.2047 +0 0.5983 +0 0.1621 +0 0.1845 +0 0.0976 +0 0.1397 +0 0.2461 +0 0.0735 +0 0.1891 +0 0.0457 +0 0.1066 +0 0.0753 +0 0.0936 +0 0.3890 +0 0.0589 +0 0.1018 +0 0.4232 +0 0.0844 +0 0.0894 +0 0.0643 +0 0.1147 +0 0.1357 +0 0.1296 +0 0.1611 +0 0.4451 +0 0.0978 +0 0.0716 +0 0.0974 +0 0.1210 +0 0.1282 +0 0.1011 +0 0.0761 +0 0.0369 +0 0.1432 +0 0.0716 +0 0.1635 +0 0.2372 +0 0.1058 +1 0.8072 +0 0.0377 +0 0.0542 +0 0.0904 +0 0.0785 +0 0.1083 +0 0.0888 +0 0.0780 +0 0.0420 +0 0.2637 +0 0.1120 +0 0.2841 +0 0.1963 +0 0.5100 +0 0.0971 +0 0.2358 +0 0.0841 +0 0.6546 +0 0.0511 +0 0.1411 +0 0.1074 +0 0.0753 +0 0.0712 +0 0.1640 +0 0.0986 +0 0.2439 +0 0.0684 +0 0.1628 +0 0.3450 +0 0.2907 +0 0.0714 +0 0.0722 +0 0.0778 +0 0.0698 +0 0.1622 +0 0.1850 +0 0.1274 +0 0.0404 +0 0.0409 +0 0.1008 +0 0.1209 +0 0.0616 +0 0.1143 +0 0.0823 +0 0.1112 +0 0.0910 +0 0.0463 +0 0.0888 +0 0.0616 +0 0.0667 +0 0.1985 +0 0.0648 +0 0.1370 +0 0.1362 +0 0.3664 +0 0.1345 +0 0.5143 +0 0.1308 +0 0.1102 +0 0.2773 +0 0.1012 +0 0.1002 +0 0.0826 +0 0.0613 +0 0.0699 +0 0.0703 +0 0.1613 +0 0.1267 +0 0.0780 +0 0.0866 +0 0.0729 +0 0.4124 +0 0.0697 +0 0.0388 +0 0.3187 +0 0.0440 +0 0.1045 +0 0.0994 +0 0.1287 +0 0.1132 +0 0.2343 +0 0.1301 +0 0.1029 +0 0.1163 +0 0.0752 +0 0.0427 +0 0.0630 +0 0.2980 +0 0.0705 +0 0.2383 +0 0.5157 +0 0.0738 +0 0.1168 +0 0.2297 +0 0.1966 +0 0.0568 +0 0.1936 +0 0.0648 +0 0.0706 +0 0.0789 +0 0.0416 +0 0.2587 +0 0.0821 +0 0.1284 +0 0.1193 +0 0.0701 +0 0.0856 +0 0.2372 +0 0.0670 +0 0.0611 +0 0.0707 +0 0.0971 +0 0.0847 +0 0.2468 +0 0.0697 +0 0.0630 +0 0.1022 +0 0.6560 +0 0.0986 +0 0.0638 +0 0.0561 +0 0.1431 +0 0.1069 +0 0.0434 +0 0.0565 +0 0.0418 +0 0.0670 +0 0.1481 +0 0.0439 +0 0.1740 +0 0.1490 +0 0.0842 +0 0.1365 +0 0.3733 +0 0.0828 +0 0.0653 +0 0.1269 +0 0.6085 +0 0.1029 +0 0.0642 +0 0.0965 +0 0.1400 +0 0.0813 +1 0.7902 +0 0.0856 +0 0.0856 +0 0.0556 +0 0.0514 +0 0.1059 +0 0.0681 +0 0.0869 +0 0.1196 +0 0.0528 +0 0.0965 +0 0.0766 +0 0.0812 +0 0.1342 +0 0.0533 +0 0.0476 +0 0.0849 +0 0.1487 +1 0.8162 +0 0.0760 +0 0.2822 +0 0.1151 +0 0.0863 +0 0.0442 +0 0.0743 +0 0.0809 +0 0.0577 +0 0.0733 +0 0.0982 +0 0.1843 +0 0.1007 +0 0.1438 +0 0.0525 +0 0.1471 +0 0.2041 +0 0.2321 +0 0.1909 +0 0.1165 +0 0.1620 +0 0.1533 +0 0.0712 +0 0.0764 +0 0.0738 +0 0.3160 +0 0.0675 +0 0.1430 +0 0.0824 +0 0.3243 +0 0.1069 +0 0.1169 +0 0.1102 +0 0.0356 +0 0.0506 +0 0.0894 +0 0.1133 +0 0.0568 +0 0.0288 +0 0.0698 +0 0.1170 +1 0.8231 +0 0.1367 +0 0.1497 +0 0.2076 +0 0.0689 +0 0.0496 +0 0.0805 +0 0.0763 +0 0.0609 +0 0.0825 +0 0.1067 +0 0.0983 +0 0.1455 +0 0.1736 +0 0.1427 +0 0.2152 +0 0.0697 +0 0.1016 +1 0.7689 +0 0.1627 +0 0.1575 +0 0.1910 +0 0.1183 +0 0.2082 +0 0.1118 +1 0.7699 +0 0.0560 +0 0.2205 +0 0.6454 +0 0.0831 +0 0.1973 +0 0.3862 +0 0.1367 +0 0.0744 +0 0.0895 +0 0.0807 +0 0.1273 +0 0.0828 +0 0.0342 +0 0.0855 +0 0.0354 +0 0.0637 +0 0.1126 +0 0.1250 +0 0.0747 +0 0.2817 +0 0.5433 +1 0.8215 +0 0.0676 +0 0.1560 +0 0.2365 +0 0.1127 +0 0.1114 +0 0.1166 +0 0.0516 +0 0.0674 +0 0.1936 +0 0.1434 +0 0.1497 +0 0.1583 +0 0.1220 +0 0.0770 +0 0.4554 +0 0.1035 +0 0.0591 +0 0.3674 +0 0.0646 +0 0.0818 +0 0.0751 +0 0.0780 +0 0.2808 +0 0.0918 +0 0.1844 +0 0.0934 +0 0.1259 +0 0.0597 +0 0.1781 +0 0.1036 +0 0.1558 +0 0.0418 +0 0.0387 +0 0.1863 +0 0.1149 +0 0.0903 +0 0.1066 +0 0.1151 +0 0.1494 +0 0.0783 +0 0.0664 +0 0.3574 +0 0.0946 +0 0.5248 +0 0.1578 +0 0.0999 +0 0.1557 +0 0.2227 +0 0.0882 +0 0.1112 +0 0.0550 +0 0.1138 +0 0.0561 +0 0.0707 +0 0.0972 +0 0.2086 +0 0.0983 +0 0.0867 +0 0.0734 +0 0.0628 +0 0.0574 +0 0.0623 +0 0.1120 +0 0.2139 +0 0.1748 +0 0.0514 +0 0.0693 +0 0.1306 +0 0.0523 +0 0.1028 +0 0.1288 +0 0.4855 +0 0.1747 +0 0.0955 +0 0.0316 +0 0.0690 +0 0.1093 +0 0.1109 +0 0.0635 +0 0.1313 +0 0.1101 +0 0.1772 +0 0.3107 +0 0.1040 +0 0.0909 +0 0.1607 +0 0.0670 +0 0.0821 +0 0.1437 +0 0.1551 +0 0.4987 +0 0.1205 +0 0.5062 +0 0.3516 +0 0.3230 +0 0.5081 +0 0.1041 +0 0.0820 +0 0.2457 +0 0.0857 +0 0.0630 +0 0.2331 +0 0.0593 +0 0.4158 +0 0.0772 +0 0.2656 +0 0.0940 +0 0.0576 +0 0.0617 +0 0.0458 +0 0.5812 +0 0.2587 +0 0.0968 +0 0.1595 +0 0.1228 +0 0.0504 +0 0.1269 +0 0.0535 +0 0.0637 +0 0.0785 +0 0.1108 +0 0.0995 +0 0.0494 +0 0.0841 +0 0.0932 +0 0.2327 +0 0.1181 +0 0.1135 +0 0.1038 +0 0.0565 +0 0.1344 +0 0.2527 +0 0.1803 +0 0.0786 +0 0.6224 +0 0.0836 +0 0.2599 +0 0.2863 +0 0.0716 +0 0.0499 +0 0.0877 +0 0.2168 +0 0.1981 +0 0.1494 +0 0.0646 +0 0.0592 +0 0.0889 +0 0.1640 +0 0.1334 +0 0.0777 +0 0.0834 +0 0.0761 +0 0.1145 +0 0.0741 +0 0.1057 +0 0.1769 +0 0.1268 +0 0.1119 +0 0.1507 +0 0.0911 +0 0.0812 +0 0.5055 +0 0.2229 +0 0.0931 +0 0.0898 +0 0.0995 +0 0.6201 +0 0.0524 +0 0.2715 +0 0.1099 +0 0.1129 +0 0.0642 +0 0.1064 +0 0.0890 +0 0.2713 +0 0.1312 +0 0.1973 +0 0.2223 +0 0.0839 +0 0.0775 +0 0.0719 +0 0.0720 +0 0.0770 +0 0.0872 +0 0.0289 +0 0.0745 +0 0.1124 +0 0.0647 +0 0.0880 +0 0.0763 +0 0.1265 +0 0.0964 +0 0.1836 +0 0.1333 +0 0.1499 +0 0.0699 +1 0.7704 +0 0.0715 +0 0.1069 +0 0.1732 +0 0.1040 +0 0.0604 +0 0.1003 +0 0.0534 +0 0.2258 +0 0.2791 +0 0.1375 +0 0.1838 +0 0.0919 +0 0.0890 +0 0.0952 +0 0.0721 +1 0.8161 +0 0.1282 +0 0.0761 +0 0.2297 +0 0.1727 +0 0.1170 +0 0.0880 +0 0.0519 +0 0.1283 +1 0.7584 +0 0.1705 +0 0.1994 +0 0.2319 +0 0.1151 +0 0.0408 +0 0.1780 +0 0.2265 +0 0.1992 +0 0.0674 +0 0.2823 +0 0.0498 +0 0.0690 +0 0.5898 +0 0.0439 +0 0.0634 +0 0.0593 +0 0.0625 +0 0.2108 +0 0.0863 +0 0.1524 +0 0.0640 +0 0.2479 +0 0.1062 +0 0.1589 +0 0.1134 +0 0.1953 +0 0.2847 +0 0.0629 +0 0.0971 +0 0.0587 +0 0.1514 +0 0.1063 +0 0.1350 +0 0.1660 +0 0.1193 +0 0.0440 +0 0.0838 +0 0.0471 +0 0.0612 +0 0.0900 +0 0.2149 +0 0.0596 +0 0.0560 +0 0.0872 +0 0.2878 +0 0.1045 +0 0.0693 +0 0.1201 +0 0.1962 +0 0.1879 +0 0.1028 +0 0.3571 +0 0.1149 +0 0.1180 +0 0.2223 +0 0.0900 +0 0.2263 +0 0.1332 +0 0.0905 +0 0.0612 +0 0.0360 +0 0.3357 +0 0.1346 +0 0.0629 +0 0.1312 +0 0.2164 +0 0.1114 +0 0.1557 +0 0.0616 +0 0.0758 +0 0.6845 +0 0.7312 +0 0.0791 +0 0.1158 +0 0.0965 +0 0.5388 +0 0.1920 +0 0.2136 +0 0.1107 +0 0.0898 +0 0.0542 +0 0.0810 +0 0.1447 +0 0.1616 +0 0.1225 +0 0.1467 +0 0.0705 +0 0.0494 +0 0.2286 +0 0.0550 +0 0.1229 +0 0.1495 +0 0.1561 +0 0.0588 +0 0.1774 +0 0.2140 +0 0.0431 +0 0.2075 +0 0.1431 +0 0.1730 +0 0.4325 +0 0.1313 +0 0.0680 +0 0.1051 +0 0.1740 +0 0.2265 +0 0.0409 +0 0.1359 +0 0.0486 +0 0.1188 +0 0.0457 +0 0.2358 +0 0.2580 +0 0.2827 +0 0.5358 +0 0.3028 +0 0.0512 +0 0.0479 +0 0.2803 +0 0.1046 +0 0.1189 +0 0.0870 +0 0.0503 +0 0.0499 +0 0.2262 +0 0.0681 +0 0.1056 +0 0.0805 +0 0.1468 +0 0.0756 +0 0.0619 +0 0.1151 +0 0.1713 +0 0.0717 +0 0.1653 +0 0.0636 +0 0.0659 +0 0.0650 +0 0.0580 +0 0.0504 +0 0.0554 +0 0.0657 +0 0.1004 +0 0.1047 +0 0.0443 +0 0.0817 +0 0.1319 +0 0.0324 +0 0.2319 +0 0.1164 +0 0.0501 +0 0.1053 +0 0.1302 +0 0.1261 +0 0.2776 +0 0.0551 +1 0.8208 +0 0.1135 +1 0.7800 +0 0.2494 +0 0.0865 +0 0.4747 +0 0.1414 +0 0.1251 +0 0.1725 +0 0.0948 +0 0.2212 +0 0.0336 +0 0.0673 +0 0.0771 +0 0.1285 +0 0.2580 +0 0.0369 +0 0.1636 +0 0.0769 +0 0.1086 +0 0.1005 +0 0.1341 +0 0.0707 +0 0.4285 +0 0.0978 +0 0.1842 +0 0.2267 +0 0.0709 +0 0.0419 +0 0.0899 +0 0.0425 +0 0.0652 +0 0.0333 +0 0.5370 +0 0.0530 +0 0.0783 +0 0.0535 +0 0.1095 +0 0.0860 +0 0.0869 +0 0.0829 +0 0.0414 +0 0.5418 +0 0.4257 +0 0.0589 +0 0.0672 +1 0.7717 +0 0.0886 +0 0.0929 +0 0.1271 +0 0.1204 +0 0.0539 +0 0.0829 +0 0.2069 +0 0.1579 +0 0.2169 +0 0.2013 +0 0.1326 +0 0.1431 +0 0.1730 +0 0.0406 +0 0.1361 +0 0.0831 +0 0.0600 +0 0.0660 +0 0.0910 +0 0.0826 +0 0.1782 +0 0.2640 +0 0.1140 +0 0.0700 +0 0.0782 +0 0.0678 +0 0.3565 +0 0.1039 +0 0.0810 +0 0.0571 +0 0.0445 +0 0.6474 +0 0.3705 +0 0.0752 +0 0.0732 +0 0.1838 +0 0.0602 +0 0.0797 +0 0.0884 +0 0.2569 +0 0.0694 +1 0.8264 +0 0.0800 +0 0.1834 +0 0.1040 +0 0.1596 +0 0.1413 +0 0.5188 +0 0.1146 +0 0.1862 +0 0.1204 +0 0.0622 +0 0.3592 +0 0.1604 +0 0.0748 +0 0.3174 +0 0.0730 +0 0.0943 +0 0.0982 +0 0.0932 +0 0.5254 +0 0.1145 +0 0.0524 +0 0.1165 +0 0.0791 +0 0.1808 +0 0.1211 +0 0.1502 +0 0.2261 +0 0.0928 +0 0.0543 +0 0.0942 +0 0.0838 +0 0.1669 +0 0.1233 +0 0.2794 +0 0.1682 +0 0.0761 +0 0.0869 +0 0.1621 +0 0.2179 +0 0.1453 +0 0.0554 +0 0.0457 +0 0.1662 +0 0.1762 +0 0.1577 +0 0.2309 +0 0.2093 +0 0.1243 +0 0.0914 +0 0.1396 +0 0.0511 +0 0.0760 +0 0.0531 +0 0.0807 +0 0.4115 +0 0.0604 +0 0.2263 +0 0.0724 +0 0.1420 +1 0.7622 +0 0.1008 +0 0.1655 +0 0.2200 +0 0.2059 +0 0.0947 +0 0.1278 +0 0.0712 +0 0.0537 +0 0.0876 +0 0.1069 +0 0.0701 +0 0.3295 +0 0.0733 +0 0.0314 +0 0.1717 +0 0.0446 +0 0.0793 +0 0.1259 +0 0.4976 +0 0.0626 +0 0.0994 +0 0.0754 +0 0.1393 +0 0.0922 +0 0.0472 +0 0.0400 +0 0.2697 +0 0.1189 +0 0.1669 +0 0.0683 +0 0.0496 +0 0.1717 +0 0.0628 +0 0.0753 +1 0.7816 +0 0.1518 +0 0.2522 +0 0.2447 +0 0.3447 +0 0.0691 +0 0.1020 +0 0.0822 +0 0.1439 +1 0.8848 +0 0.1635 +0 0.1304 +0 0.0846 +0 0.0670 +0 0.2167 +0 0.0931 +0 0.0703 +0 0.0650 +0 0.1112 +0 0.1052 +0 0.0889 +0 0.0842 +0 0.0848 +0 0.0838 +0 0.0571 +0 0.2491 +0 0.2863 +0 0.1559 +0 0.1986 +0 0.1045 +0 0.1908 +0 0.0552 +0 0.1134 +0 0.1980 +0 0.2417 +0 0.1291 +0 0.0754 +1 0.8777 +0 0.0671 +0 0.0631 +0 0.6193 +0 0.2142 +0 0.0687 +0 0.1070 +0 0.0629 +0 0.1719 +0 0.1003 +0 0.0527 +0 0.0885 +0 0.0470 +0 0.0908 +0 0.1364 +0 0.1898 +0 0.0592 +0 0.0848 +1 0.8438 +0 0.1647 +0 0.2257 +0 0.1436 +0 0.1008 +0 0.0988 +0 0.0908 +0 0.1085 +0 0.0591 +0 0.0792 +0 0.0601 +0 0.1901 +0 0.2046 +0 0.0442 +0 0.0528 +0 0.1046 +0 0.1308 +0 0.0624 +0 0.0788 +0 0.4194 +0 0.0876 +0 0.1407 +0 0.1007 +0 0.0524 +0 0.2254 +0 0.0801 +0 0.1090 +0 0.0440 +0 0.0561 +0 0.0820 +1 0.8284 +0 0.0336 +0 0.0953 +0 0.2117 +0 0.0559 +0 0.1024 +0 0.0572 +0 0.1127 +0 0.0783 +0 0.1214 +0 0.1463 +0 0.5184 +0 0.0640 +0 0.0457 +0 0.1446 +0 0.3216 +0 0.0974 +0 0.0928 +0 0.1125 +0 0.2591 +0 0.0330 +0 0.0851 +0 0.1098 +0 0.1040 +0 0.1045 +0 0.0966 +0 0.1459 +0 0.1219 +0 0.1555 +0 0.0548 +0 0.0705 +0 0.0396 +0 0.0575 +0 0.0672 +0 0.1883 +0 0.2610 +0 0.1048 +0 0.1062 +0 0.5589 +0 0.0652 +0 0.1616 +0 0.1606 +0 0.1241 +0 0.0374 +0 0.0866 +1 0.7936 +0 0.1376 +0 0.6906 +0 0.2383 +0 0.1085 +0 0.1167 +0 0.2030 +0 0.1770 +0 0.0418 +0 0.1062 +0 0.1721 +0 0.0682 +0 0.0541 +0 0.3577 +0 0.0326 +0 0.2725 +0 0.1306 +0 0.1257 +0 0.1540 +0 0.1719 +0 0.0800 +0 0.1077 +0 0.0974 +0 0.1530 +0 0.1238 +0 0.0842 +0 0.1152 +0 0.0643 +0 0.1538 +0 0.0626 +0 0.2385 +0 0.4084 +0 0.1264 +0 0.1018 +0 0.1713 +0 0.0960 +0 0.0929 +0 0.1017 +0 0.1190 +0 0.0832 +0 0.0662 +0 0.1870 +0 0.1438 +0 0.0844 +0 0.1309 +0 0.1591 +0 0.1534 +0 0.2445 +0 0.0419 +0 0.0869 +0 0.0574 +0 0.0553 +0 0.1801 +0 0.0891 +0 0.0538 +0 0.0788 +0 0.1317 +0 0.0353 +0 0.0635 +0 0.1596 +0 0.2489 +0 0.1247 +0 0.0655 +0 0.1267 +0 0.0333 +0 0.1675 +0 0.1625 +0 0.2067 +0 0.0854 +0 0.0757 +0 0.1595 +0 0.0900 +0 0.2029 +0 0.1179 +0 0.3201 +0 0.0454 +0 0.1635 +0 0.2014 +0 0.1046 +0 0.0460 +0 0.6406 +0 0.0512 +0 0.0965 +0 0.1313 +0 0.2620 +0 0.1066 +0 0.5767 +0 0.0771 +0 0.3049 +0 0.0958 +0 0.1964 +0 0.2496 +0 0.0714 +0 0.0648 +0 0.1013 +0 0.1028 +0 0.1680 +0 0.3030 +0 0.1531 +0 0.1355 +0 0.4738 +0 0.1337 +0 0.7324 +0 0.0578 +0 0.2630 +0 0.0951 +0 0.0317 +0 0.1451 +0 0.4182 +0 0.6528 +1 0.8440 +0 0.2121 +0 0.1175 +0 0.0498 +0 0.1367 +0 0.0921 +0 0.0567 +0 0.1379 +0 0.0612 +0 0.0765 +0 0.2002 +0 0.0673 +0 0.5433 +0 0.0865 +0 0.4104 +0 0.0412 +0 0.1256 +0 0.0813 +0 0.1116 +0 0.0887 +0 0.0589 +0 0.0863 +0 0.1045 +0 0.1079 +0 0.2046 +0 0.1366 +0 0.0614 +0 0.1814 +0 0.1124 +0 0.0601 +0 0.0750 +0 0.3570 +1 0.7998 +0 0.3461 +0 0.0649 +0 0.0966 +0 0.2315 +0 0.0549 +0 0.0695 +0 0.1013 +0 0.0679 +0 0.1401 +1 0.7794 +0 0.1762 +0 0.0874 +0 0.2320 +0 0.1103 +0 0.1043 +0 0.1058 +0 0.1131 +0 0.1786 +0 0.1008 +0 0.0812 +0 0.1009 +0 0.0972 +0 0.0896 +0 0.1140 +0 0.1097 +0 0.2870 +0 0.2083 +0 0.3740 +0 0.1866 +0 0.0969 +0 0.1092 +0 0.0554 +0 0.5070 +0 0.1560 +0 0.1198 +0 0.0763 +0 0.1231 +0 0.0755 +0 0.0583 +0 0.2504 +0 0.1885 +0 0.0688 +0 0.0599 +0 0.2540 +0 0.0981 +0 0.0661 +0 0.2514 +0 0.2197 +0 0.2770 +0 0.1895 +0 0.1036 +0 0.1362 +0 0.1478 +0 0.3925 +0 0.1029 +0 0.5758 +0 0.1171 +0 0.0732 +0 0.0429 +0 0.1700 +0 0.0431 +0 0.1238 +0 0.1351 +0 0.0827 +0 0.0849 +0 0.2455 +0 0.1431 +0 0.1195 +0 0.0685 +0 0.1282 +0 0.1084 +0 0.0479 +0 0.0962 +0 0.0821 +0 0.2060 +0 0.3201 +0 0.1806 +0 0.0376 +0 0.0388 +0 0.0925 +0 0.2163 +0 0.2262 +0 0.0518 +0 0.1234 +0 0.4465 +0 0.6538 +0 0.1026 +0 0.0773 +0 0.0575 +0 0.1040 +0 0.0508 +0 0.0833 +0 0.0782 +0 0.1741 +0 0.1349 +0 0.0491 +0 0.0742 +0 0.1672 +0 0.0927 +0 0.1489 +0 0.1149 +0 0.1070 +0 0.1097 +0 0.1134 +0 0.0635 +0 0.1229 +0 0.1440 +0 0.0573 +0 0.0485 +0 0.6264 +0 0.1141 +0 0.1744 +0 0.0746 +0 0.0700 +0 0.3965 +0 0.0839 +0 0.0741 +0 0.0844 +0 0.1731 +0 0.1032 +0 0.1950 +0 0.1136 +0 0.0437 +0 0.1162 +0 0.1949 +0 0.0952 +0 0.1022 +0 0.0736 +0 0.1364 +0 0.2656 +0 0.1514 +0 0.0850 +0 0.1766 +0 0.1115 +0 0.0844 +0 0.0753 +0 0.1063 +0 0.1511 +0 0.1213 +0 0.0536 +0 0.0613 +0 0.0620 +0 0.1284 +0 0.0729 +0 0.0768 +0 0.0805 +0 0.2336 +0 0.0617 +0 0.1011 +0 0.2145 +0 0.0809 +0 0.0419 +0 0.0651 +0 0.0856 +0 0.0707 +0 0.1638 +0 0.0870 +0 0.0901 +0 0.0745 +1 0.8174 +0 0.1410 +0 0.1023 +0 0.0740 +0 0.0292 +0 0.0741 +0 0.1003 +0 0.1057 +0 0.0376 +0 0.0685 +0 0.2232 +0 0.1448 +0 0.1281 +0 0.1721 +0 0.1557 +0 0.1906 +0 0.0812 +0 0.1640 +0 0.3642 +0 0.0549 +0 0.1420 +0 0.1506 +0 0.0406 +0 0.1156 +0 0.1205 +0 0.0607 +0 0.2170 +0 0.1843 +0 0.3016 +0 0.1734 +0 0.0459 +0 0.1110 +0 0.0432 +0 0.0886 +0 0.0798 +0 0.4198 +0 0.1916 +0 0.0634 +0 0.1093 +0 0.1664 +0 0.1791 +0 0.1734 +0 0.1583 +0 0.2348 +0 0.0606 +0 0.0988 +0 0.1177 +0 0.1086 +0 0.1981 +0 0.1100 +0 0.1431 +0 0.0750 +0 0.1214 +0 0.3483 +0 0.0713 +0 0.0604 +0 0.1896 +0 0.0628 +0 0.3728 +0 0.0579 +0 0.1318 +0 0.2149 +0 0.0853 +0 0.1007 +0 0.1504 +0 0.0845 +0 0.0755 +0 0.0393 +0 0.1859 +0 0.1344 +0 0.0586 +0 0.0632 +0 0.1188 +0 0.1224 +0 0.0717 +0 0.3406 +0 0.0496 +0 0.4843 +0 0.1428 +0 0.0561 +0 0.0550 +0 0.0816 +0 0.1207 +0 0.0787 +0 0.1961 +0 0.0931 +0 0.2095 +0 0.1577 +0 0.1324 +0 0.0576 +0 0.0886 +0 0.0930 +0 0.0451 +0 0.1287 +0 0.1138 +0 0.0906 +0 0.0491 +0 0.0574 +0 0.0814 +0 0.1237 +0 0.0532 +0 0.1372 +0 0.0539 +0 0.1240 +0 0.0317 +1 0.7583 +0 0.2613 +0 0.2377 +0 0.4944 +0 0.0905 +0 0.1087 +0 0.0518 +0 0.2373 +1 0.7705 +0 0.0414 +0 0.1640 +0 0.1386 +0 0.1220 +0 0.0744 +0 0.0820 +0 0.0674 +0 0.0979 +0 0.0719 +0 0.0935 +0 0.1370 +0 0.1011 +0 0.1426 +0 0.0497 +0 0.1038 +0 0.0866 +0 0.0861 +0 0.1475 +0 0.0735 +0 0.0489 +0 0.0824 +0 0.0911 +0 0.0643 +0 0.0823 +0 0.1545 +0 0.1165 +0 0.1001 +0 0.0759 +0 0.0566 +0 0.1162 +0 0.1880 +0 0.0725 +0 0.1121 +0 0.0621 +1 0.7549 +0 0.1417 +0 0.0654 +0 0.1059 +0 0.1244 +0 0.0839 +0 0.2039 +0 0.0976 +0 0.0809 +0 0.0935 +0 0.0645 +0 0.0547 +0 0.3055 +0 0.0344 +0 0.0701 +0 0.0971 +0 0.3746 +0 0.0588 +0 0.2044 +0 0.1465 +0 0.0878 +0 0.0736 +0 0.1748 +0 0.1410 +0 0.1989 +0 0.0516 +0 0.1075 +0 0.1194 +0 0.0954 +0 0.1380 +0 0.4084 +0 0.0561 +0 0.1144 +0 0.0670 +0 0.1590 +0 0.1866 +0 0.1324 +0 0.1412 +0 0.0690 +0 0.1049 +0 0.0778 +0 0.0515 +0 0.0791 +0 0.0707 +0 0.2741 +0 0.1302 +0 0.0986 +0 0.2091 +0 0.0336 +0 0.0604 +0 0.0925 +0 0.0907 +0 0.1666 +0 0.0810 +0 0.1207 +0 0.1203 +0 0.2018 +0 0.2545 +0 0.0612 +0 0.1006 +0 0.6600 +0 0.0641 +0 0.2504 +0 0.1980 +0 0.0953 +0 0.2223 +0 0.1420 +0 0.1083 +0 0.0804 +0 0.0814 +0 0.0735 +0 0.1553 +0 0.2379 +0 0.0662 +0 0.1344 +0 0.0553 +0 0.0957 +0 0.1223 +0 0.0670 +0 0.1022 +0 0.1933 +0 0.2593 +0 0.1011 +0 0.0966 +0 0.1317 +0 0.0981 +0 0.0440 +0 0.2851 +0 0.2712 +0 0.1309 +0 0.1201 +0 0.0579 +0 0.1507 +0 0.1061 +0 0.1222 +0 0.0822 +0 0.0680 +0 0.0813 +0 0.0474 +0 0.1382 +0 0.1657 +0 0.0499 +0 0.1346 +0 0.0826 +0 0.2341 +0 0.2734 +0 0.1319 +0 0.1532 +0 0.1704 +0 0.1718 +0 0.0986 +0 0.0977 +0 0.1361 +1 0.8881 +0 0.0855 +0 0.0910 +0 0.1105 +0 0.0962 +0 0.2564 +0 0.1039 +0 0.0534 +0 0.0553 +0 0.1857 +0 0.1852 +0 0.0739 +0 0.2157 +0 0.0408 +0 0.0726 +0 0.1385 +0 0.1846 +1 0.7741 +0 0.1551 +0 0.1214 +0 0.0903 +0 0.2006 +0 0.0473 +0 0.1499 +0 0.0418 +0 0.0997 +0 0.1131 +0 0.6050 +0 0.2268 +0 0.1021 +0 0.1492 +0 0.2442 +0 0.1172 +0 0.0397 +0 0.1139 +0 0.0479 +0 0.0636 +0 0.1120 +0 0.0445 +0 0.0711 +0 0.0918 +1 0.8403 +0 0.1078 +0 0.2171 +0 0.0430 +0 0.1240 +0 0.1116 +0 0.0708 +0 0.0881 +0 0.0752 +0 0.0794 +0 0.3203 +0 0.1223 +0 0.1500 +0 0.0884 +0 0.2392 +0 0.2249 +0 0.0913 +0 0.0745 +0 0.0989 +0 0.1368 +0 0.1027 +0 0.0787 +0 0.1383 +0 0.1146 +0 0.0450 +0 0.1890 +0 0.1059 +0 0.0642 +0 0.0904 +0 0.4015 +0 0.0688 +0 0.1012 +0 0.0645 +0 0.1019 +0 0.1461 +0 0.1594 +0 0.2123 +0 0.2140 +0 0.1042 +0 0.2350 +0 0.1719 +0 0.2420 +0 0.1447 +0 0.0571 +0 0.0590 +0 0.1635 +0 0.1015 +0 0.0603 +0 0.2197 +0 0.2169 +0 0.0863 +0 0.0513 +0 0.1014 +0 0.0610 +0 0.3843 +0 0.3479 +0 0.0805 +0 0.0985 +0 0.1607 +0 0.5602 +0 0.0411 +0 0.2545 +0 0.0920 +0 0.3120 +0 0.0425 +0 0.1826 +0 0.0511 +0 0.0981 +0 0.1247 +0 0.0612 +0 0.1356 +0 0.0835 +0 0.4598 +0 0.1812 +0 0.0564 +0 0.0932 +0 0.1335 +0 0.1319 +0 0.2835 +0 0.0723 +0 0.1286 +0 0.0923 +0 0.0619 +0 0.0720 +0 0.0351 +0 0.1263 +0 0.0614 +0 0.1233 +0 0.1974 +0 0.2455 +0 0.0906 +0 0.1271 +0 0.1271 +0 0.0679 +0 0.1886 +0 0.1124 +0 0.0593 +0 0.0610 +0 0.0615 +0 0.2169 +0 0.0508 +0 0.0875 +0 0.0866 +0 0.1206 +0 0.1245 +0 0.0819 +0 0.0611 +0 0.0641 +0 0.0629 +0 0.1689 +0 0.1031 +0 0.0609 +0 0.0644 +0 0.0356 +0 0.0639 +0 0.0510 +0 0.0882 +0 0.0402 +0 0.0854 +0 0.0993 +0 0.2193 +0 0.0760 +1 0.8056 +0 0.1303 +0 0.0806 +0 0.1320 +0 0.0791 +0 0.1156 +0 0.0936 +0 0.1346 +0 0.1369 +0 0.0723 +0 0.1835 +0 0.0729 +0 0.0750 +0 0.1073 +0 0.1795 +0 0.0629 +0 0.1464 +0 0.0722 +0 0.0736 +0 0.0868 +0 0.0672 +0 0.1593 +0 0.0900 +0 0.0556 +0 0.1565 +1 0.8630 +0 0.0725 +0 0.2084 +0 0.1178 +0 0.1548 +0 0.0466 +0 0.1779 +0 0.0787 +0 0.1006 +0 0.0744 +1 0.7566 +0 0.0456 +0 0.1013 +0 0.0972 +0 0.0979 +0 0.1616 +0 0.1477 +0 0.0569 +0 0.0409 +0 0.1319 +0 0.4804 +0 0.0561 +0 0.0942 +0 0.1156 +0 0.1305 +0 0.0916 +0 0.0547 +0 0.1041 +0 0.2220 +0 0.6969 +0 0.0942 +0 0.1467 +0 0.0570 +0 0.1444 +0 0.1470 +0 0.1602 +0 0.1925 +0 0.0780 +0 0.0520 +0 0.0837 +0 0.0674 +0 0.0807 +0 0.1347 +0 0.3492 +0 0.0773 +0 0.0410 +0 0.6877 +0 0.1711 +0 0.1471 +0 0.1656 +0 0.1252 +0 0.0559 +0 0.1337 +0 0.1377 +0 0.0769 +0 0.0746 +0 0.1664 +0 0.0369 +0 0.3551 +0 0.0671 +0 0.0555 +0 0.0969 +0 0.5561 +0 0.1394 +0 0.1176 +0 0.0893 +1 0.7861 +0 0.0991 +0 0.0757 +0 0.1054 +0 0.5047 +0 0.1830 +0 0.0628 +0 0.2134 +0 0.1076 +0 0.6435 +0 0.0792 +0 0.0700 +0 0.0575 +0 0.0471 +0 0.1423 +0 0.0475 +0 0.0906 +0 0.0381 +0 0.3292 +0 0.0630 +0 0.1385 +0 0.0726 +0 0.1683 +0 0.0780 +0 0.1043 +0 0.0551 +0 0.0641 +0 0.2063 +0 0.0658 +0 0.0537 +0 0.0736 +0 0.0936 +0 0.0841 +0 0.1543 +0 0.0636 +0 0.1916 +0 0.1589 +0 0.1402 +0 0.1105 +0 0.2580 +0 0.1931 +0 0.1070 +0 0.0758 +0 0.1494 +0 0.1832 +0 0.0644 +0 0.0615 +0 0.1702 +0 0.0843 +0 0.1620 +0 0.0374 +0 0.3596 +0 0.1521 +0 0.1019 +0 0.0915 +0 0.1032 +0 0.1627 +0 0.2213 +0 0.7357 +0 0.0486 +0 0.2981 +0 0.0772 +0 0.0647 +0 0.0628 +0 0.1247 +0 0.1154 +0 0.0830 +0 0.0848 +0 0.6044 +0 0.2418 +0 0.1696 +0 0.0691 +0 0.0769 +0 0.0658 +0 0.0765 +0 0.0749 +0 0.0377 +0 0.1962 +0 0.1053 +0 0.0715 +0 0.0887 +0 0.0576 +0 0.1461 +0 0.1448 +0 0.0719 +0 0.0435 +0 0.2680 +0 0.1037 +0 0.1199 +0 0.2108 +0 0.0567 +0 0.2208 +0 0.0606 +0 0.2321 +0 0.1576 +0 0.0567 +0 0.2007 +0 0.0749 +0 0.0980 +0 0.1027 +0 0.0682 +0 0.1719 +0 0.0786 +0 0.0658 +0 0.1037 +0 0.0666 +0 0.0321 +0 0.0778 +0 0.3635 +0 0.1027 +0 0.1118 +0 0.1239 +0 0.0930 +0 0.1227 +0 0.0833 +0 0.1629 +0 0.1074 +0 0.0628 +0 0.1088 +0 0.0634 +0 0.2913 +0 0.1047 +0 0.0337 +0 0.1335 +0 0.3462 +0 0.1246 +0 0.1111 +0 0.3285 +0 0.0704 +0 0.0382 +0 0.1400 +0 0.1087 +0 0.7345 +0 0.0585 +0 0.0519 +0 0.5901 +0 0.0975 +0 0.0838 +0 0.0792 +0 0.0815 +0 0.0593 +0 0.1162 +0 0.1934 +0 0.0547 +0 0.1206 +0 0.1417 +0 0.1738 +0 0.1489 +0 0.1528 +0 0.3378 +0 0.1863 +0 0.0769 +0 0.0594 +0 0.0992 +0 0.0739 +0 0.0468 +0 0.1484 +0 0.2064 +0 0.0800 +0 0.0505 +0 0.1430 +0 0.3407 +0 0.0428 +0 0.1633 +0 0.6233 +0 0.1099 +0 0.3478 +0 0.0865 +0 0.2374 +0 0.0700 +0 0.0471 +0 0.2913 +0 0.2244 +0 0.0925 +0 0.1208 +0 0.0722 +0 0.0544 +0 0.0972 +0 0.3952 +0 0.0655 +0 0.1356 +0 0.0643 +0 0.1403 +0 0.1515 +0 0.2313 +0 0.0759 +0 0.2283 +0 0.0928 +0 0.1929 +0 0.0905 +0 0.2368 +0 0.0923 +0 0.1513 +0 0.0852 +0 0.0763 +0 0.1125 +0 0.1908 +0 0.2036 +0 0.0821 +0 0.0971 +0 0.1592 +0 0.0529 +0 0.1165 +0 0.0991 +1 0.8122 +0 0.0871 +1 0.7595 +0 0.1305 +0 0.0959 +0 0.1497 +0 0.0792 +0 0.5538 +0 0.4182 +0 0.1257 +0 0.0569 +0 0.1175 +0 0.1076 +0 0.1132 +0 0.1650 +0 0.0519 +0 0.2212 +0 0.1387 +0 0.1201 +0 0.0891 +0 0.0527 +0 0.1089 +0 0.0787 +0 0.1082 +0 0.1571 +0 0.2391 +0 0.7320 +0 0.0629 +0 0.0967 +0 0.0893 +0 0.0739 +0 0.6378 +0 0.0978 +0 0.0897 +0 0.0849 +0 0.2831 +0 0.1350 +0 0.1475 +0 0.0627 +0 0.0558 +0 0.5167 +0 0.1090 +0 0.3769 +0 0.0699 +0 0.0673 +0 0.0487 +0 0.1614 +0 0.3360 +0 0.1095 +0 0.6772 +0 0.1866 +0 0.2136 +0 0.0775 +0 0.1843 +0 0.1022 +0 0.0592 +0 0.0706 +0 0.1508 +0 0.0947 +0 0.6249 +0 0.1064 +0 0.0934 +0 0.2327 +0 0.1727 +0 0.1109 +0 0.1019 +0 0.0768 +0 0.0458 +0 0.0952 +0 0.1019 +0 0.1067 +1 0.8217 +0 0.0780 +1 0.8540 +0 0.4720 +0 0.2765 +0 0.1422 +0 0.2161 +0 0.0509 +0 0.1276 +0 0.2111 +0 0.0627 +0 0.0969 +0 0.1757 +0 0.1095 +0 0.1656 +0 0.1857 +0 0.0562 +0 0.0601 +0 0.0536 +0 0.1015 +0 0.0671 +0 0.1131 +0 0.2589 +0 0.3056 +0 0.0987 +1 0.7900 +0 0.0630 +0 0.1621 +0 0.1027 +0 0.0978 +0 0.2454 +0 0.0555 +0 0.1374 +0 0.0658 +0 0.1407 +0 0.1454 +0 0.1222 +0 0.0910 +1 0.8689 +0 0.0488 +0 0.0523 +0 0.0840 +0 0.1301 +0 0.1099 +0 0.1224 +0 0.2502 +0 0.0679 +0 0.1562 +0 0.2634 +0 0.0876 +0 0.0701 +0 0.1143 +0 0.0981 +0 0.0744 +0 0.1249 +0 0.3870 +0 0.0346 +0 0.0793 +0 0.0934 +0 0.0371 +0 0.0747 +0 0.1199 +0 0.1667 +0 0.1179 +0 0.1339 +0 0.1123 +0 0.3623 +0 0.1388 +0 0.0813 +0 0.0635 +0 0.0829 +0 0.1087 +0 0.0606 +0 0.1523 +0 0.1619 +0 0.0646 +0 0.0607 +0 0.0494 +0 0.0799 +0 0.2204 +0 0.0738 +0 0.1140 +0 0.1248 +0 0.2005 +0 0.0730 +0 0.0791 +0 0.6265 +0 0.0649 +0 0.1210 +0 0.2205 +0 0.0815 +0 0.0606 +0 0.1309 +0 0.0636 +0 0.0954 +0 0.2010 +0 0.1107 +0 0.0956 +0 0.1200 +0 0.1587 +0 0.1021 +0 0.0497 +0 0.2544 +0 0.2386 +0 0.1055 +0 0.1621 +0 0.6763 +0 0.0635 +0 0.0872 +0 0.1007 +0 0.0654 +0 0.0471 +0 0.3595 +0 0.0687 +0 0.0723 +0 0.2012 +0 0.0956 +0 0.1405 +0 0.0673 +0 0.1451 +1 0.8610 +0 0.0842 +0 0.1226 +0 0.1106 +0 0.0631 +1 0.8367 +0 0.2818 +0 0.2123 +0 0.0686 +0 0.1110 +0 0.1628 +0 0.2419 +0 0.1777 +0 0.0916 +0 0.1966 +0 0.0693 +0 0.0887 +0 0.1524 +0 0.1929 +0 0.0989 +0 0.0581 +0 0.1199 +0 0.0920 +0 0.2802 +0 0.1451 +0 0.0640 +0 0.2742 +0 0.7391 +0 0.1210 +0 0.1476 +0 0.2917 +0 0.1074 +0 0.4470 +0 0.1163 +0 0.0833 +0 0.1054 +0 0.0964 +0 0.0820 +0 0.0494 +0 0.1313 +0 0.0353 +0 0.0836 +0 0.0642 +0 0.0800 +0 0.1330 +0 0.0989 +0 0.1293 +0 0.0793 +0 0.0529 +0 0.0641 +0 0.0497 +0 0.1294 +0 0.0799 +0 0.1296 +0 0.0809 +0 0.1987 +0 0.2964 +0 0.0930 +0 0.0791 +0 0.4582 +0 0.0799 +0 0.0504 +0 0.1706 +0 0.1246 +0 0.1657 +0 0.0807 +0 0.1357 +0 0.0601 +0 0.0661 +0 0.1524 +0 0.1063 +0 0.1532 +0 0.0421 +0 0.0783 +0 0.0659 +0 0.1186 +0 0.1285 +0 0.0789 +0 0.6805 +0 0.0407 +0 0.2270 +0 0.1028 +0 0.1395 +0 0.1121 +0 0.1470 +0 0.1020 +0 0.1474 +0 0.0856 +0 0.3502 +0 0.2426 +0 0.3437 +0 0.3317 +0 0.0766 +0 0.0630 +0 0.1276 +0 0.0889 +0 0.0892 +0 0.1447 +0 0.0735 +0 0.1923 +0 0.4809 +0 0.1205 +0 0.1354 +0 0.0477 +0 0.3059 +0 0.2446 +0 0.1377 +0 0.1369 +0 0.0740 +0 0.0791 +0 0.0754 +0 0.2977 +0 0.5865 +0 0.0752 +0 0.1011 +0 0.4253 +0 0.1297 +0 0.1098 +0 0.1218 +0 0.0446 +0 0.1871 +0 0.0726 +0 0.0451 +0 0.0473 +0 0.1523 +0 0.0876 +0 0.1035 +0 0.1163 +0 0.4529 +0 0.0807 +0 0.1321 +0 0.1027 +0 0.4039 +0 0.0597 +0 0.0883 +0 0.2224 +0 0.1094 +0 0.0936 +0 0.0936 +0 0.0683 +0 0.1106 +0 0.2022 +0 0.0895 +0 0.1166 +0 0.1082 +0 0.1142 +0 0.1025 +0 0.0496 +0 0.1003 +0 0.1277 +0 0.2315 +0 0.0662 +0 0.1576 +0 0.0527 +0 0.5773 +0 0.2024 +0 0.2207 +0 0.1263 +0 0.2472 +0 0.1863 +0 0.1180 +0 0.1114 +0 0.0774 +0 0.0744 +0 0.0826 +0 0.1484 +0 0.0538 +0 0.0755 +0 0.1031 +0 0.1007 +0 0.1335 +0 0.3494 +0 0.0981 +0 0.1833 +0 0.0501 +0 0.0684 +0 0.0642 +0 0.1165 +0 0.3180 +0 0.1292 +0 0.0740 +0 0.0993 +0 0.0650 +0 0.1589 +0 0.0555 +0 0.0834 +0 0.0748 +0 0.0732 +0 0.1111 +0 0.1208 +0 0.7456 +0 0.1293 +0 0.1126 +0 0.0610 +0 0.2775 +0 0.0727 +0 0.0642 +0 0.1472 +0 0.1167 +0 0.3340 +0 0.0437 +0 0.0864 +0 0.0714 +0 0.1197 +0 0.1565 +0 0.0533 +0 0.0722 +0 0.1092 +0 0.1625 +0 0.0500 +0 0.1479 +0 0.1844 +0 0.0782 +0 0.0841 +0 0.1392 +0 0.1904 +0 0.3712 +0 0.0602 +0 0.1064 +0 0.3826 +0 0.1037 +0 0.1153 +0 0.1701 +0 0.0869 +0 0.1543 +0 0.3246 +0 0.3136 +0 0.0621 +0 0.0411 +0 0.3687 +0 0.0826 +0 0.2231 +0 0.3430 +0 0.0873 +0 0.1084 +0 0.0784 +0 0.2149 +0 0.0507 +0 0.0354 +0 0.0740 +0 0.0868 +0 0.0472 +0 0.0329 +0 0.0542 +0 0.1056 +0 0.2196 +0 0.6221 +0 0.1599 +0 0.0984 +0 0.2199 +0 0.0926 +0 0.0779 +0 0.2171 +0 0.0603 +0 0.0573 +0 0.0822 +0 0.0999 +0 0.1890 +0 0.0869 +0 0.1548 +0 0.1598 +0 0.0679 +0 0.2453 +0 0.0937 +0 0.1617 +0 0.3516 +0 0.0949 +0 0.3499 +0 0.0373 +0 0.0999 +0 0.2967 +0 0.1901 +0 0.2403 +0 0.0553 +0 0.1877 +0 0.7347 +0 0.1616 +0 0.2669 +0 0.1122 +0 0.1201 +0 0.0652 +0 0.1844 +0 0.0703 +0 0.0519 +0 0.0534 +0 0.3640 +0 0.0885 +0 0.1462 +0 0.1294 +0 0.0931 +0 0.0459 +0 0.1035 +0 0.2242 +0 0.2820 +0 0.0823 +0 0.1510 +0 0.1652 +0 0.0754 +0 0.1038 +0 0.1241 +0 0.1487 +0 0.0957 +0 0.1219 +0 0.0829 +0 0.7382 +0 0.1071 +0 0.0726 +0 0.1108 +0 0.1575 +0 0.1203 +0 0.0430 +0 0.0720 +0 0.0648 +0 0.0936 +0 0.0556 +0 0.1187 +0 0.1205 +0 0.0873 +0 0.0548 +0 0.0517 +0 0.0705 +0 0.1662 +0 0.0727 +0 0.0730 +0 0.1008 +0 0.0742 +0 0.0929 +0 0.1780 +0 0.0868 +0 0.1471 +0 0.0583 +0 0.1474 +0 0.0440 +0 0.1552 +0 0.0874 +0 0.1323 +0 0.0674 +0 0.0631 +0 0.1057 +0 0.0472 +0 0.3616 +0 0.0871 +0 0.0749 +0 0.0578 +0 0.0405 +0 0.2057 +0 0.2141 +0 0.0642 +0 0.0865 +0 0.2101 +0 0.0776 +0 0.0508 +0 0.1151 +0 0.1097 +0 0.0902 +0 0.1083 +0 0.2322 +0 0.1109 +0 0.0478 +0 0.1389 +0 0.1594 +0 0.0758 +0 0.0701 +0 0.1023 +0 0.0744 +0 0.1679 +1 0.8053 +0 0.1060 +0 0.1498 +0 0.2751 +0 0.0724 +0 0.1353 +0 0.1188 +0 0.1402 +0 0.0973 +0 0.1028 +0 0.1163 +0 0.0573 +0 0.1995 +0 0.1110 +0 0.1991 +0 0.0787 +0 0.1982 +0 0.2779 +0 0.4757 +0 0.4885 +0 0.1877 +0 0.4124 +0 0.0613 +0 0.2238 +0 0.1163 +0 0.3417 +0 0.0660 +0 0.3092 +0 0.1972 +0 0.0920 +0 0.0756 +0 0.0578 +0 0.1311 +0 0.0866 +0 0.4335 +0 0.0669 +0 0.0739 +0 0.0585 +0 0.1041 +0 0.4313 +0 0.0906 +0 0.0454 +0 0.1487 +0 0.2376 +0 0.2594 +0 0.0540 +0 0.0957 +0 0.0539 +0 0.1184 +0 0.0653 +0 0.0957 +0 0.1673 +0 0.3153 +0 0.1607 +0 0.0581 +0 0.1556 +0 0.0949 +0 0.0509 +0 0.3671 +0 0.0455 +0 0.0832 +0 0.0755 +1 0.8169 +0 0.1020 +0 0.0519 +0 0.0441 +0 0.2702 +0 0.0494 +0 0.1959 +0 0.1147 +0 0.2091 +0 0.0969 +0 0.1187 +0 0.0746 +0 0.0463 +0 0.0460 +0 0.0853 +0 0.0448 +0 0.0499 +0 0.1498 +0 0.0960 +0 0.0765 +0 0.3042 +0 0.3523 +0 0.1134 +0 0.2774 +0 0.1377 +0 0.0639 +0 0.1151 +0 0.1714 +0 0.0574 +0 0.1212 +0 0.2439 +0 0.1788 +0 0.0584 +0 0.0832 +0 0.1146 +0 0.1628 +0 0.1139 +0 0.2135 +0 0.0853 +0 0.0574 +0 0.2055 +0 0.0686 +0 0.1061 +0 0.1423 +0 0.0648 +0 0.2132 +0 0.0828 +0 0.1001 +0 0.0873 +0 0.1020 +0 0.2902 +0 0.0407 +0 0.1267 +0 0.0625 +0 0.0861 +1 0.8183 +0 0.1253 +0 0.0936 +0 0.1455 +0 0.1129 +0 0.0422 +0 0.1734 +0 0.1326 +0 0.0498 +0 0.0584 +0 0.3554 +0 0.0986 +0 0.0772 +0 0.0708 +0 0.0460 +0 0.1179 +0 0.0417 +0 0.0406 +0 0.1118 +0 0.1350 +0 0.0430 +1 0.8643 +0 0.2071 +0 0.1331 +0 0.1130 +0 0.0482 +0 0.0744 +0 0.1033 +0 0.6648 +0 0.0460 +0 0.0741 +0 0.1807 +0 0.0686 +0 0.2254 +0 0.0920 +0 0.3285 +0 0.1100 +0 0.3109 +0 0.1351 +0 0.0823 +0 0.2422 +0 0.0644 +0 0.1296 +0 0.0400 +0 0.1062 +0 0.0684 +0 0.1403 +0 0.0668 +0 0.1189 +0 0.1131 +0 0.0589 +0 0.1062 +0 0.1338 +0 0.1533 +0 0.0760 +0 0.0669 +0 0.2794 +0 0.2249 +0 0.1525 +0 0.0779 +0 0.2072 +0 0.0963 +0 0.0459 +0 0.0914 +0 0.1310 +0 0.0397 +0 0.0550 +0 0.1270 +0 0.0857 +0 0.0752 +0 0.0478 +0 0.1851 +0 0.0505 +0 0.1126 +0 0.0602 +0 0.1491 +0 0.0519 +0 0.0733 +0 0.0642 +0 0.0705 +0 0.4170 +0 0.1523 +0 0.0344 +0 0.0869 +0 0.3058 +0 0.2868 +0 0.1560 +0 0.1245 +1 0.8231 +0 0.4501 +0 0.0979 +0 0.1011 +0 0.1434 +0 0.0534 +0 0.1592 +0 0.0417 +0 0.1488 +0 0.0440 +0 0.0567 +0 0.0943 +0 0.0622 +0 0.1168 +0 0.2017 +0 0.0578 +0 0.0896 +0 0.1319 +0 0.4647 +0 0.0889 +0 0.0710 +0 0.3878 +0 0.6966 +0 0.0688 +0 0.1754 +0 0.2473 +0 0.0951 +0 0.0705 +0 0.1088 +0 0.1028 +0 0.0779 +0 0.0654 +0 0.0686 +0 0.0600 +0 0.0546 +0 0.0949 +0 0.5094 +0 0.2889 +0 0.1110 +0 0.0684 +0 0.2090 +0 0.0927 +0 0.3101 +0 0.0777 +0 0.0908 +0 0.1112 +0 0.1910 +0 0.1486 +0 0.4464 +0 0.1471 +0 0.0969 +0 0.1615 +0 0.2123 +0 0.2554 +0 0.1633 +0 0.1093 +0 0.1978 +0 0.0510 +0 0.2146 +0 0.1939 +0 0.2670 +0 0.3522 +0 0.1005 +0 0.1843 +0 0.0823 +0 0.1200 +0 0.1016 +0 0.3510 +0 0.1458 +0 0.0388 +0 0.0721 +0 0.1053 +0 0.0538 +0 0.1420 +0 0.2455 +0 0.1062 +0 0.0780 +0 0.0416 +0 0.0848 +0 0.1303 +0 0.1390 +0 0.1041 +0 0.1110 +0 0.0964 +0 0.0616 +0 0.1209 +0 0.2442 +0 0.0635 +0 0.0987 +0 0.0578 +1 0.8079 +0 0.0726 +0 0.2502 +0 0.0789 +0 0.5768 +0 0.1838 +0 0.0481 +0 0.0692 +0 0.1258 +0 0.1953 +0 0.0876 +0 0.1421 +0 0.0506 +0 0.1382 +0 0.2130 +0 0.0759 +0 0.0614 +0 0.1178 +0 0.0291 +0 0.1427 +0 0.0507 +0 0.7092 +0 0.0617 +0 0.0709 +0 0.3045 +0 0.0510 +0 0.2517 +0 0.0925 +0 0.1150 +0 0.1723 +0 0.2219 +0 0.0651 +0 0.1444 +0 0.0616 +0 0.0827 +1 0.8733 +0 0.1872 +0 0.1056 +0 0.1333 +0 0.0447 +0 0.4010 +0 0.1678 +0 0.2776 +0 0.2683 +1 0.7599 +0 0.0873 +0 0.0969 +0 0.1314 +0 0.0416 +0 0.1323 +0 0.1499 +0 0.1528 +0 0.0536 +0 0.0733 +0 0.7243 +0 0.1102 +0 0.2483 +0 0.3599 +0 0.0385 +0 0.0649 +0 0.0841 +0 0.1859 +0 0.1028 +0 0.0910 +0 0.1193 +0 0.1650 +0 0.2089 +0 0.2037 +0 0.0855 +0 0.1051 +0 0.6210 +0 0.1330 +0 0.1460 +0 0.0671 +0 0.1211 +0 0.1109 +0 0.0953 +0 0.1129 +0 0.0412 +0 0.1372 +0 0.0972 +0 0.0462 +0 0.1069 +0 0.1629 +0 0.0596 +0 0.1878 +0 0.0520 +0 0.1854 +0 0.1306 +0 0.0554 +0 0.0725 +0 0.1044 +0 0.0750 +0 0.0820 +0 0.0871 +0 0.1234 +0 0.0941 +0 0.1509 +0 0.3650 +0 0.2450 +0 0.0791 +0 0.1294 +0 0.0762 +0 0.1442 +0 0.0927 +0 0.1992 +0 0.6287 +0 0.3944 +0 0.0667 +0 0.0595 +0 0.0567 +0 0.0914 +0 0.3828 +0 0.0776 +0 0.0760 +0 0.1126 +0 0.1630 +0 0.1123 +0 0.0841 +0 0.1330 +0 0.1284 +0 0.0624 +0 0.0849 +0 0.1278 +0 0.1661 +0 0.1569 +0 0.1317 +0 0.1521 +0 0.2418 +0 0.1090 +0 0.1158 +0 0.1023 +0 0.1486 +0 0.1342 +0 0.1285 +0 0.7254 +0 0.3438 +0 0.0532 +0 0.1327 +0 0.0564 +0 0.2860 +0 0.0861 +0 0.0673 +0 0.2390 +0 0.1410 +0 0.0577 +0 0.1819 +0 0.0548 +0 0.0715 +0 0.1148 +0 0.0614 +0 0.1298 +0 0.1144 +0 0.2554 +0 0.1325 +0 0.0699 +0 0.1136 +0 0.1374 +0 0.1371 +0 0.1643 +0 0.0689 +0 0.1467 +0 0.1725 +0 0.1721 +0 0.0566 +0 0.2103 +0 0.1845 +0 0.1446 +0 0.1147 +0 0.0698 +0 0.0693 +0 0.2161 +0 0.0634 +0 0.0505 +0 0.0851 +0 0.1200 +0 0.0549 +0 0.0753 +0 0.1138 +0 0.0605 +0 0.0942 +0 0.0657 +0 0.1002 +0 0.1189 +0 0.1634 +0 0.0423 +0 0.1370 +0 0.1539 +0 0.0740 +0 0.0289 +0 0.0456 +0 0.2870 +0 0.1083 +0 0.2505 +0 0.0394 +0 0.1141 +0 0.2212 +0 0.1167 +0 0.6963 +0 0.0793 +0 0.1936 +0 0.0545 +0 0.0344 +0 0.2797 +0 0.1475 +0 0.0410 +0 0.0801 +0 0.1413 +0 0.0865 +0 0.0949 +0 0.1067 +0 0.0381 +0 0.2224 +0 0.0631 +0 0.0827 +0 0.2596 +0 0.1050 +0 0.0633 +0 0.1381 +0 0.2422 +0 0.1114 +0 0.1205 +0 0.0763 +0 0.5566 +0 0.0427 +0 0.1352 +0 0.1091 +0 0.0634 +0 0.0878 +0 0.1136 +0 0.1211 +0 0.0481 +0 0.1846 +0 0.2724 +0 0.2992 +0 0.2115 +0 0.0383 +0 0.0528 +0 0.2418 +0 0.1117 +0 0.1555 +0 0.1581 +0 0.1374 +0 0.1072 +0 0.0670 +0 0.3068 +0 0.3909 +0 0.1883 +0 0.1055 +0 0.1116 +0 0.0989 +0 0.0703 +0 0.1232 +0 0.0735 +0 0.1461 +0 0.1068 +0 0.1484 +0 0.0525 +0 0.0980 +0 0.0821 +0 0.3070 +0 0.0799 +0 0.1085 +0 0.0963 +0 0.1408 +0 0.0973 +0 0.0838 +0 0.0510 +0 0.1639 +0 0.0829 +0 0.0467 +0 0.0945 +0 0.1615 +0 0.2921 +0 0.0955 +0 0.1353 +0 0.6371 +0 0.0863 +0 0.0742 +0 0.0764 +0 0.0822 +0 0.0670 +0 0.4615 +0 0.0677 +0 0.1281 +0 0.5784 +0 0.1201 +0 0.5271 +0 0.0946 +0 0.0881 +0 0.0683 +0 0.0642 +0 0.2415 +0 0.1065 +0 0.0809 +0 0.2320 +0 0.0769 +0 0.0653 +0 0.0935 +0 0.0583 +0 0.0431 +0 0.0872 +0 0.0710 +0 0.1333 +0 0.1331 +0 0.2260 +0 0.0877 +0 0.1713 +0 0.1365 +0 0.2239 +0 0.2323 +0 0.0882 +0 0.0788 +0 0.1256 +0 0.0945 +0 0.0644 +0 0.0977 +0 0.0900 +0 0.2953 +0 0.0877 +0 0.0761 +0 0.1241 +0 0.1005 +0 0.0695 +0 0.1421 +0 0.1139 +0 0.1002 +0 0.0916 +0 0.1945 +0 0.1032 +0 0.1123 +0 0.0648 +0 0.1988 +0 0.0918 +0 0.1873 +0 0.1449 +0 0.1991 +0 0.0544 +0 0.1388 +0 0.2731 +0 0.2956 +0 0.1688 +0 0.1191 +0 0.1259 +0 0.1372 +0 0.1328 +0 0.0378 +0 0.0595 +0 0.3530 +0 0.1751 +0 0.1833 +0 0.0857 +0 0.1390 +0 0.1652 +0 0.1706 +0 0.2075 +0 0.1483 +0 0.0688 +0 0.3417 +0 0.0864 +0 0.1294 +0 0.2280 +0 0.1031 +0 0.0395 +0 0.1020 +0 0.1046 +0 0.0689 +0 0.1311 +0 0.0532 +0 0.1552 +0 0.0459 +0 0.0695 +0 0.4415 +0 0.1001 +0 0.0356 +0 0.1158 +0 0.1833 +0 0.0505 +0 0.1290 +0 0.1559 +0 0.0739 +0 0.2204 +0 0.0316 +0 0.1155 +0 0.1077 +0 0.0422 +0 0.0609 +0 0.0697 +0 0.0737 +0 0.1589 +0 0.0757 +0 0.0756 +0 0.0363 +0 0.1726 +0 0.1129 +0 0.2273 +0 0.2265 +0 0.0694 +0 0.0710 +0 0.1279 +0 0.0820 +0 0.3840 +0 0.0739 +0 0.0975 +0 0.2339 +0 0.2019 +0 0.1433 +0 0.4884 +0 0.1195 +0 0.4868 +0 0.1122 +0 0.1190 +0 0.3028 +0 0.0614 +0 0.5925 +0 0.0794 +0 0.0862 +0 0.0988 +0 0.2022 +0 0.0432 +0 0.1000 +0 0.1925 +0 0.1633 +0 0.1315 +0 0.2317 +0 0.3679 +0 0.3603 +0 0.1174 +0 0.1550 +0 0.0724 +0 0.3235 +0 0.0636 +0 0.0660 +0 0.1094 +0 0.0839 +0 0.4287 +0 0.1645 +0 0.0414 +0 0.0766 +1 0.7603 +0 0.1155 +0 0.0811 +0 0.1158 +0 0.1272 +0 0.0852 +0 0.1198 +0 0.1492 +1 0.8183 +0 0.1202 +0 0.1518 +0 0.2526 +0 0.0524 +0 0.2234 +0 0.0851 +0 0.2649 +0 0.0455 +0 0.2074 +0 0.1004 +0 0.0857 +0 0.1263 +0 0.7152 +0 0.1148 +0 0.1534 +0 0.1048 +0 0.1684 +0 0.1395 +0 0.0910 +0 0.2487 +0 0.0916 +0 0.1985 +0 0.1533 +0 0.0791 +0 0.0782 +0 0.0564 +1 0.7767 +0 0.1172 +0 0.0737 +0 0.1497 +0 0.0872 +0 0.1159 +0 0.0739 +0 0.0862 +1 0.8672 +0 0.0894 +0 0.1141 +0 0.3773 +0 0.0777 +0 0.0542 +0 0.1446 +0 0.3121 +0 0.1116 +0 0.0847 +0 0.0476 +0 0.1460 +0 0.1225 +0 0.1872 +0 0.1126 +0 0.1209 +0 0.1615 +0 0.0820 +0 0.0971 +0 0.0946 +0 0.0685 +0 0.2040 +0 0.0734 +0 0.1490 +0 0.1303 +0 0.2319 +0 0.0636 +0 0.3872 +0 0.0928 +0 0.1247 +0 0.0634 +0 0.7354 +0 0.0951 +0 0.1042 +0 0.1108 +0 0.0896 +0 0.1391 +0 0.1519 +0 0.1348 +0 0.1374 +0 0.1585 +0 0.1167 +0 0.2043 +0 0.0787 +0 0.1655 +0 0.2055 +0 0.3892 +0 0.0860 +0 0.1576 +0 0.1626 +0 0.3274 +0 0.0845 +0 0.1675 +0 0.1021 +1 0.8520 +0 0.0342 +0 0.1489 +0 0.1435 +1 0.7742 +0 0.0763 +0 0.1460 +0 0.1733 +0 0.1581 +0 0.1482 +0 0.4408 +0 0.1257 +0 0.0361 +0 0.0747 +0 0.1089 +0 0.1006 +0 0.0654 +0 0.1911 +0 0.0496 +0 0.1440 +0 0.1486 +0 0.2032 +0 0.1432 +0 0.0508 +0 0.2701 +0 0.2561 +0 0.1005 +0 0.1146 +0 0.1469 +0 0.0914 +0 0.1495 +0 0.1346 +0 0.0856 +0 0.0781 +0 0.0921 +0 0.1080 +0 0.1274 +0 0.0330 +0 0.3031 +0 0.2456 +0 0.2260 +0 0.2922 +0 0.0803 +0 0.0465 +0 0.0624 +0 0.0435 +0 0.1333 +0 0.1398 +0 0.0976 +0 0.0876 +0 0.4623 +0 0.0665 +0 0.1472 +0 0.1796 +0 0.1683 +0 0.4367 +0 0.0951 +0 0.1173 +0 0.0860 +0 0.0994 +0 0.1084 +0 0.0967 +0 0.0525 +0 0.1086 +0 0.1519 +0 0.1312 +0 0.0839 +0 0.0848 +0 0.2517 +0 0.2337 +0 0.0616 +0 0.1010 +0 0.0881 +0 0.0682 +0 0.0628 +0 0.1315 +0 0.0449 +0 0.1191 +0 0.1565 +0 0.0777 +0 0.1141 +0 0.1637 +0 0.1427 +0 0.0959 +0 0.1708 +0 0.0918 +0 0.2322 +0 0.1771 +0 0.0700 +0 0.0560 +0 0.5001 +0 0.1358 +1 0.8312 +0 0.0818 +0 0.0987 +0 0.2972 +0 0.1408 +0 0.0648 +0 0.4994 +0 0.1956 +0 0.2225 +0 0.1205 +0 0.6518 +0 0.1307 +0 0.1784 +0 0.0686 +0 0.0972 +0 0.1045 +0 0.0734 +0 0.1181 +0 0.5731 +0 0.0879 +0 0.1270 +0 0.0430 +0 0.2551 +0 0.0862 +0 0.6746 +0 0.1393 +0 0.3344 +0 0.0670 +0 0.1379 +0 0.3780 +0 0.1345 +0 0.2181 +0 0.0380 +0 0.0800 +0 0.0480 +0 0.2473 +0 0.4876 +0 0.1946 +0 0.0349 +0 0.1012 +0 0.3092 +0 0.2301 +0 0.0759 +0 0.2213 +0 0.0478 +0 0.0522 +0 0.1366 +0 0.4550 +0 0.2431 +0 0.0915 +0 0.4034 +0 0.0486 +0 0.2673 +0 0.6694 +0 0.1275 +0 0.2167 +0 0.0841 +0 0.2757 +0 0.1015 +0 0.1225 +0 0.1248 +0 0.2611 +0 0.0849 +0 0.2787 +0 0.1270 +0 0.0455 +0 0.0742 +0 0.2712 +0 0.1418 +0 0.2750 +0 0.2095 +0 0.0779 +0 0.1057 +0 0.0930 +0 0.1036 +0 0.0462 +0 0.1687 +0 0.1360 +0 0.1182 +0 0.2719 +0 0.1051 +0 0.3121 +0 0.2500 +0 0.1067 +0 0.0611 +0 0.0766 +0 0.1373 +0 0.1164 +0 0.6804 +0 0.0915 +0 0.1487 +0 0.0389 +0 0.1193 +0 0.2277 +0 0.1532 +0 0.1127 +0 0.1717 +0 0.0937 +0 0.2092 +0 0.0351 +0 0.0631 +0 0.0739 +0 0.1021 +0 0.4992 +0 0.1262 +0 0.1397 +0 0.1584 +0 0.0674 +1 0.7755 +0 0.0831 +0 0.0606 +0 0.0825 +0 0.0697 +0 0.1774 +0 0.1432 +0 0.2692 +0 0.1586 +0 0.1921 +0 0.1188 +0 0.0890 +0 0.1120 +0 0.1272 +0 0.1697 +0 0.1191 +0 0.0902 +0 0.5688 +0 0.0874 +0 0.0566 +0 0.1020 +0 0.3935 +0 0.1034 +0 0.0897 +0 0.1948 +0 0.1574 +0 0.1152 +0 0.1807 +0 0.1374 +0 0.0860 +0 0.0589 +0 0.1144 +0 0.0418 +0 0.1013 +0 0.0683 +0 0.1145 +0 0.0362 +0 0.1184 +0 0.2348 +1 0.7989 +0 0.1233 +0 0.1448 +0 0.0564 +0 0.1355 +0 0.0900 +0 0.1638 +0 0.0552 +0 0.1001 +0 0.0799 +0 0.5763 +0 0.1600 +0 0.0640 +0 0.2229 +0 0.0510 +0 0.1033 +0 0.0481 +0 0.1688 +0 0.0517 +0 0.0581 +0 0.0469 +0 0.0416 +0 0.0575 +0 0.1112 +0 0.2851 +0 0.1590 +0 0.1549 +0 0.0684 +0 0.1670 +0 0.0739 +0 0.0611 +0 0.1085 +0 0.0727 +0 0.1329 +0 0.0751 +0 0.5759 +0 0.1524 +0 0.0919 +0 0.1063 +0 0.0930 +0 0.2415 +0 0.1014 +0 0.1007 +0 0.1022 +0 0.3307 +0 0.0805 +0 0.0449 +0 0.0909 +0 0.3619 +0 0.1198 +0 0.0895 +0 0.0497 +0 0.0952 +0 0.3641 +0 0.2469 +0 0.0623 +0 0.4778 +0 0.0866 +0 0.2122 +0 0.1311 +0 0.0763 +0 0.6475 +0 0.1191 +0 0.0835 +0 0.6304 +0 0.2431 +0 0.0624 +0 0.0418 +0 0.1391 +1 0.8245 +0 0.1949 +0 0.4819 +0 0.1342 +0 0.1101 +0 0.3479 +0 0.1298 +0 0.1636 +0 0.0943 +0 0.1020 +0 0.1973 +0 0.1166 +0 0.0460 +0 0.1884 +0 0.1770 +0 0.1972 +0 0.1514 +0 0.0742 +0 0.1659 +0 0.0588 +0 0.0888 +0 0.0432 +0 0.0598 +0 0.0948 +0 0.0724 +0 0.0604 +0 0.1003 +0 0.0415 +0 0.1502 +1 0.5039 +0 0.0802 +0 0.0575 +0 0.0522 +0 0.0822 +0 0.0876 +0 0.1412 +0 0.0782 +0 0.1059 +0 0.0680 +0 0.0913 +0 0.1260 +0 0.1004 +0 0.0601 +0 0.1364 +0 0.2275 +0 0.3244 +0 0.2411 +0 0.0976 +0 0.0728 +0 0.1258 +0 0.0713 +0 0.0907 +0 0.2525 +0 0.6968 +0 0.1035 +0 0.1371 +0 0.0732 +0 0.0792 +0 0.2308 +0 0.1407 +0 0.0285 +0 0.1945 +0 0.0490 +0 0.0657 +0 0.0878 +0 0.0769 +0 0.0602 +0 0.0496 +0 0.0850 +0 0.1434 +0 0.0884 +0 0.1763 +0 0.0681 +0 0.0602 +0 0.0417 +1 0.7587 +0 0.0543 +0 0.0583 +0 0.0557 +0 0.0600 +0 0.2315 +0 0.1266 +0 0.0453 +0 0.0952 +0 0.5019 +0 0.0971 +0 0.5676 +0 0.5104 +0 0.3688 +0 0.2363 +0 0.6131 +0 0.1877 +0 0.1460 +0 0.2000 +0 0.0743 +0 0.1733 +0 0.0470 +0 0.1386 +1 0.7629 +0 0.3016 +0 0.1657 +0 0.1536 +0 0.1219 +0 0.0344 +0 0.1091 +0 0.0951 +0 0.1380 +0 0.2483 +0 0.1209 +0 0.1013 +0 0.1750 +0 0.1793 +0 0.1015 +0 0.0686 +0 0.2275 +0 0.1247 +0 0.0690 +0 0.1053 +0 0.2332 +0 0.1069 +0 0.1841 +0 0.1048 +0 0.0790 +0 0.1879 +0 0.0843 +0 0.3863 +0 0.0504 +0 0.1063 +0 0.6074 +0 0.1145 +0 0.1634 +0 0.2704 +0 0.0878 +0 0.1225 +0 0.0448 +0 0.0809 +0 0.0884 +1 0.7559 +0 0.1164 +0 0.0747 +0 0.0598 +0 0.1097 +0 0.0589 +0 0.2036 +0 0.0637 +0 0.0461 +0 0.0922 +0 0.2079 +0 0.1199 +0 0.4743 +0 0.0746 +0 0.0745 +0 0.0403 +0 0.2856 +0 0.0637 +0 0.0695 +0 0.0388 +0 0.0745 +0 0.0525 +0 0.0510 +0 0.1413 +0 0.0967 +0 0.0846 +0 0.1328 +0 0.0962 +0 0.3229 +0 0.0876 +0 0.0812 +0 0.0633 +0 0.0892 +0 0.1079 +0 0.0648 +0 0.0557 +0 0.0459 +1 0.7758 +0 0.1335 +0 0.1752 +0 0.2179 +0 0.1466 +0 0.7025 +0 0.0805 +0 0.0925 +0 0.3208 +0 0.1296 +0 0.1444 +0 0.1567 +0 0.1031 +0 0.0583 +0 0.1945 +0 0.2930 +0 0.0607 +0 0.1400 +0 0.0705 +0 0.1422 +0 0.1189 +0 0.1177 +0 0.2551 +0 0.1011 +0 0.0818 +0 0.0986 +0 0.0583 +0 0.0888 +0 0.0602 +0 0.1158 +0 0.0496 +0 0.1706 +0 0.0641 +0 0.0948 +0 0.1320 +0 0.1383 +0 0.1007 +0 0.2443 +0 0.1322 +0 0.1033 +0 0.0694 +0 0.1457 +0 0.1251 +0 0.1663 +0 0.1341 +0 0.0720 +0 0.3571 +0 0.0703 +0 0.7278 +0 0.0592 +0 0.2765 +0 0.0983 +0 0.0789 +0 0.1361 +0 0.1089 +0 0.1864 +0 0.0667 +0 0.1035 +0 0.0711 +0 0.1158 +0 0.2630 +0 0.0749 +0 0.3097 +0 0.0657 +0 0.1212 +0 0.2958 +0 0.1255 +0 0.2205 +0 0.0689 +0 0.1490 +0 0.0784 +0 0.0756 +0 0.0783 +0 0.0701 +0 0.3082 +0 0.1132 +0 0.1345 +0 0.1545 +0 0.1370 +0 0.0760 +0 0.4453 +0 0.0923 +0 0.0361 +0 0.1167 +0 0.0784 +0 0.1790 +0 0.1351 +0 0.1081 +0 0.1105 +0 0.0835 +0 0.5905 +0 0.0597 +0 0.0974 +0 0.0961 +0 0.0706 +0 0.0546 +0 0.3066 +0 0.2406 +0 0.1442 +0 0.1100 +0 0.0920 +0 0.0904 +0 0.0568 +0 0.0955 +0 0.0479 +0 0.3176 +0 0.1002 +0 0.0973 +0 0.1017 +0 0.0597 +0 0.3590 +0 0.2037 +0 0.2582 +0 0.0487 +0 0.1266 +0 0.0863 +0 0.2020 +0 0.0714 +0 0.1927 +0 0.0579 +0 0.0678 +0 0.0924 +0 0.0543 +0 0.0748 +0 0.4435 +0 0.0962 +0 0.0845 +0 0.1322 +0 0.1608 +0 0.0579 +0 0.1030 +0 0.1121 +0 0.4600 +0 0.4293 +0 0.0518 +0 0.1452 +0 0.7471 +0 0.0846 +0 0.0457 +0 0.1414 +0 0.2226 +0 0.0822 +0 0.2255 +0 0.0824 +0 0.0967 +0 0.3258 +0 0.1153 +0 0.1578 +0 0.0733 +1 0.7882 +0 0.2274 +0 0.0493 +0 0.1164 +0 0.1407 +0 0.3225 +0 0.1893 +0 0.0687 +0 0.0826 +0 0.1803 +0 0.0443 +0 0.0461 +0 0.0609 +0 0.0944 +0 0.1656 +0 0.0928 +0 0.0949 +0 0.0593 +0 0.1120 +0 0.0548 +0 0.0713 +0 0.0900 +0 0.0744 +0 0.0466 +0 0.0825 +0 0.1314 +0 0.1195 +0 0.0856 +0 0.0642 +0 0.1347 +0 0.0859 +0 0.0518 +0 0.7243 +0 0.0523 +0 0.0869 +0 0.1363 +0 0.1682 +0 0.1513 +0 0.1474 +0 0.0533 +0 0.1404 +0 0.0982 +0 0.1230 +0 0.0825 +0 0.0858 +0 0.1959 +0 0.0458 +0 0.1154 +0 0.0478 +0 0.1293 +0 0.1071 +0 0.1177 +0 0.0356 +0 0.0806 +0 0.1085 +0 0.0647 +0 0.0555 +0 0.1526 +0 0.0722 +0 0.6396 +0 0.2149 +0 0.0682 +0 0.1518 +0 0.2652 +0 0.0543 +0 0.1572 +0 0.1050 +0 0.1133 +0 0.1769 +0 0.0516 +0 0.1781 +0 0.1513 +0 0.2626 +0 0.1091 +0 0.1113 +0 0.0777 +0 0.0471 +0 0.1052 +0 0.1206 +0 0.1293 +0 0.1674 +0 0.0678 +0 0.1176 +0 0.1891 +0 0.0685 +0 0.1839 +0 0.4181 +0 0.1777 +0 0.2536 +0 0.0697 +0 0.2379 +0 0.2563 +0 0.0895 +0 0.3095 +0 0.1057 +0 0.0760 +0 0.1171 +0 0.5419 +0 0.0963 +0 0.1355 +0 0.0868 +0 0.0989 +0 0.0796 +0 0.1598 +0 0.0961 +0 0.0344 +0 0.3298 +0 0.6516 +0 0.2556 +0 0.1651 +0 0.2485 +0 0.1628 +0 0.1624 +0 0.3521 +0 0.1445 +0 0.0612 +0 0.0694 +0 0.0893 +0 0.2306 +0 0.2304 +0 0.0853 +0 0.1909 +0 0.1646 +0 0.0692 +0 0.0865 +0 0.1719 +0 0.1166 +0 0.1734 +0 0.0652 +0 0.0588 +0 0.0832 +0 0.0379 +0 0.0635 +0 0.0751 +0 0.3482 +0 0.4535 +0 0.0994 +0 0.0990 +0 0.0920 +0 0.1850 +0 0.0672 +0 0.0963 +0 0.0870 +0 0.0725 +0 0.1147 +0 0.1044 +0 0.1885 +0 0.1125 +0 0.1002 +0 0.0456 +0 0.1133 +0 0.0886 +0 0.1054 +0 0.2592 +0 0.0708 +0 0.1464 +0 0.0670 +0 0.1946 +0 0.2667 +0 0.0672 +0 0.4251 +0 0.0650 +0 0.0782 +0 0.0706 +0 0.2076 +0 0.1333 +0 0.1032 +0 0.0932 +0 0.0347 +0 0.1987 +0 0.1078 +0 0.1574 +0 0.0560 +0 0.0598 +0 0.0435 +0 0.2335 +0 0.0656 +0 0.0961 +0 0.1217 +0 0.1277 +0 0.3327 +0 0.1429 +0 0.0604 +0 0.0591 +0 0.0956 +0 0.0352 +0 0.0449 +0 0.2021 +0 0.1135 +0 0.1978 +0 0.5118 +0 0.0987 +1 0.7682 +0 0.1791 +0 0.1040 +0 0.1139 +0 0.1703 +0 0.1118 +0 0.0479 +0 0.1244 +0 0.0888 +0 0.0687 +0 0.0708 +0 0.1254 +0 0.1605 +0 0.1551 +0 0.0526 +0 0.0580 +0 0.2186 +0 0.1818 +0 0.1008 +0 0.0439 +0 0.1016 +0 0.0578 +0 0.0691 +0 0.0835 +0 0.0530 +0 0.1112 +0 0.0428 +0 0.2073 +0 0.3416 +0 0.0621 +0 0.2589 +0 0.1066 +0 0.0867 +0 0.0847 +0 0.4223 +0 0.6035 +0 0.0564 +0 0.0445 +0 0.1877 +0 0.1392 +0 0.2406 +0 0.0796 +0 0.0462 +0 0.0964 +0 0.5702 +0 0.2042 +0 0.0696 +0 0.1423 +0 0.1700 +0 0.3445 +0 0.0785 +0 0.2198 +0 0.1429 +0 0.1566 +0 0.0611 +0 0.0355 +1 0.8525 +0 0.1532 +0 0.2519 +0 0.1250 +0 0.0921 +0 0.0406 +0 0.1868 +0 0.1013 +0 0.0406 +0 0.0594 +0 0.1631 +0 0.1180 +0 0.0936 +0 0.1174 +0 0.1248 +0 0.0428 +0 0.0459 +0 0.0484 +0 0.2368 +0 0.0614 +0 0.1034 +0 0.1643 +0 0.1666 +0 0.0358 +0 0.1053 +0 0.0619 +1 0.8279 +0 0.1028 +0 0.0754 +0 0.0860 +0 0.1176 +0 0.0835 +0 0.2342 +0 0.0968 +0 0.0728 +0 0.1338 +0 0.0663 +0 0.1581 +0 0.2066 +0 0.0819 +0 0.0409 +0 0.1190 +0 0.3761 +0 0.0868 +1 0.7969 +0 0.1330 +0 0.4079 +0 0.0413 +0 0.1125 +0 0.0894 +0 0.1622 +0 0.2627 +0 0.0859 +0 0.2609 +0 0.1467 +0 0.1022 +0 0.4696 +0 0.4309 +0 0.1075 +0 0.0930 +0 0.0749 +0 0.1597 +0 0.0540 +0 0.0441 +0 0.0987 +0 0.2886 +0 0.0720 +0 0.0576 +0 0.0574 +0 0.0684 +1 0.8173 +0 0.0561 +0 0.1889 +0 0.1667 +0 0.0945 +0 0.2227 +0 0.1280 +0 0.1600 +0 0.1005 +0 0.2353 +0 0.0579 +0 0.1881 +0 0.0946 +0 0.1497 +0 0.1360 +0 0.0984 +0 0.1599 +0 0.2086 +0 0.0968 +0 0.1423 +0 0.0782 +0 0.2213 +0 0.2805 +0 0.0585 +0 0.1574 +0 0.1121 +0 0.1023 +0 0.0495 +0 0.0887 +0 0.5406 +0 0.0931 +0 0.0716 +0 0.0964 +0 0.1138 +0 0.0767 +0 0.1100 +0 0.7299 +0 0.0631 +0 0.1786 +0 0.1219 +0 0.2089 +0 0.0660 +0 0.0755 +0 0.1181 +0 0.1221 +0 0.0330 +0 0.0619 +0 0.1135 +0 0.1874 +0 0.0970 +0 0.0515 +0 0.0887 +0 0.0548 +0 0.2203 +0 0.0839 +0 0.0356 +0 0.1591 +0 0.1204 +0 0.1606 +0 0.0607 +0 0.1871 +0 0.2437 +0 0.0648 +0 0.0688 +0 0.1577 +0 0.1557 +0 0.0376 +0 0.1776 +0 0.0921 +0 0.1361 +0 0.0989 +0 0.1816 +0 0.0633 +0 0.1230 +0 0.0770 +0 0.0315 +0 0.1350 +0 0.1402 +0 0.0751 +0 0.2036 +0 0.0460 +0 0.2863 +0 0.4872 +0 0.1293 +0 0.1197 +0 0.0681 +0 0.1442 +0 0.0672 +0 0.0639 +0 0.0735 +0 0.1950 +0 0.2112 +0 0.1068 +0 0.0754 +0 0.1060 +0 0.3234 +0 0.0733 +0 0.1008 +0 0.0785 +0 0.0743 +0 0.1315 +0 0.0807 +0 0.2111 +0 0.1955 +0 0.1760 +0 0.2265 +0 0.1700 +0 0.2418 +0 0.0575 +0 0.2285 +0 0.6261 +0 0.1572 +0 0.1325 +0 0.2237 +0 0.1858 +0 0.0709 +0 0.0964 +0 0.1308 +0 0.0473 +0 0.2938 +0 0.0611 +0 0.0837 +0 0.0547 +0 0.0722 +0 0.1020 +0 0.0611 +0 0.1153 +0 0.1323 +0 0.2027 +0 0.2958 +0 0.0520 +0 0.1503 +0 0.1409 +0 0.1049 +0 0.0768 +0 0.0719 +0 0.0761 +0 0.0567 +0 0.1552 +0 0.1811 +0 0.1058 +0 0.0897 +0 0.0423 +0 0.1163 +0 0.0927 +0 0.1391 +0 0.1282 +0 0.1191 +0 0.0827 +0 0.1575 +0 0.2169 +0 0.0948 +0 0.1117 +0 0.1750 +0 0.1672 +0 0.1193 +0 0.1189 +0 0.3186 +0 0.1072 +0 0.0713 +0 0.0444 +0 0.1091 +0 0.1075 +0 0.3831 +0 0.0720 +0 0.0633 +0 0.0329 +0 0.0816 +0 0.1104 +0 0.1531 +0 0.0959 +0 0.0981 +0 0.1107 +0 0.0872 +0 0.2194 +0 0.0982 +0 0.7192 +0 0.0774 +0 0.1311 +0 0.0448 +0 0.0862 +0 0.0691 +0 0.0896 +0 0.0838 +0 0.1810 +0 0.0701 +0 0.1244 +0 0.0730 +0 0.0867 +0 0.1213 +0 0.1071 +0 0.0590 +0 0.0454 +0 0.1785 +0 0.5957 +0 0.3160 +0 0.1489 +0 0.0785 +0 0.0647 +0 0.2307 +0 0.1693 +0 0.0736 +0 0.0623 +0 0.7496 +0 0.1036 +0 0.1795 +0 0.1633 +0 0.2795 +0 0.0716 +0 0.1264 +0 0.0865 +0 0.1001 +0 0.2027 +0 0.1435 +0 0.0909 +0 0.0701 +0 0.2918 +0 0.1400 +0 0.0410 +0 0.1806 +0 0.0798 +0 0.0735 +0 0.0901 +0 0.1311 +0 0.0607 +0 0.3053 +0 0.1512 +0 0.1726 +0 0.0538 +0 0.0712 +0 0.0851 +0 0.1957 +0 0.3608 +0 0.0424 +0 0.1170 +0 0.0598 +0 0.1105 +0 0.1039 +0 0.0610 +0 0.0777 +0 0.0750 +0 0.1613 +0 0.1272 +0 0.0794 +0 0.1363 +0 0.0759 +0 0.0397 +0 0.3130 +0 0.1325 +0 0.7134 +0 0.3182 +0 0.1115 +0 0.1912 +0 0.0659 +0 0.1208 +0 0.0808 +0 0.1092 +0 0.0983 +0 0.1281 +0 0.1329 +0 0.0702 +0 0.1104 +0 0.0773 +0 0.0814 +0 0.1687 +0 0.0700 +0 0.0452 +0 0.6971 +0 0.0592 +0 0.3662 +0 0.2170 +0 0.0769 +0 0.1984 +0 0.7071 +0 0.0808 +0 0.0806 +0 0.1519 +0 0.1407 +0 0.2520 +0 0.1265 +0 0.0776 +0 0.1678 +0 0.2234 +0 0.4166 +0 0.2356 +0 0.0640 +0 0.0686 +0 0.0626 +0 0.0846 +0 0.2683 +0 0.0793 +0 0.1334 +0 0.0884 +0 0.0732 +0 0.1552 +0 0.1804 +0 0.0839 +0 0.0716 +0 0.1593 +0 0.1230 +0 0.1151 +0 0.2492 +0 0.1669 +0 0.0925 +0 0.1296 +0 0.0629 +0 0.0803 +0 0.2014 +0 0.1429 +0 0.0590 +0 0.0519 +0 0.0892 +0 0.2362 +0 0.1003 +0 0.1011 +0 0.0602 +0 0.0360 +0 0.0627 +0 0.1253 +0 0.0397 +0 0.0645 +0 0.1038 +0 0.1241 +0 0.1095 +0 0.0546 +0 0.0534 +0 0.1063 +0 0.1123 +0 0.1157 +0 0.2196 +0 0.1260 +0 0.0982 +0 0.3900 +0 0.0734 +0 0.0606 +0 0.0535 +0 0.0664 +0 0.0694 +0 0.0983 +0 0.6288 +0 0.3986 +0 0.3268 +0 0.1102 +0 0.0422 +0 0.1001 +0 0.0732 +0 0.0844 +0 0.0491 +0 0.0780 +0 0.0814 +0 0.0720 +0 0.1101 +0 0.1702 +0 0.0636 +0 0.0629 +0 0.1155 +0 0.0619 +0 0.1743 +0 0.0568 +0 0.0949 +0 0.4934 +0 0.1936 +0 0.3457 +0 0.2026 +0 0.0754 +0 0.1052 +0 0.0851 +0 0.0920 +0 0.3528 +0 0.0470 +0 0.0395 +0 0.2395 +0 0.1306 +0 0.0446 +0 0.0622 +0 0.1446 +0 0.0818 +0 0.0928 +0 0.3247 +0 0.0958 +0 0.1858 +0 0.1002 +0 0.2737 +0 0.1429 +0 0.2781 +0 0.1612 +0 0.0576 +0 0.0341 +0 0.1182 +0 0.0643 +0 0.1565 +0 0.1287 +0 0.0562 +0 0.0637 +0 0.0600 +0 0.1193 +0 0.1631 +0 0.1207 +0 0.1168 +0 0.1327 +0 0.0520 +0 0.0797 +0 0.2129 +0 0.5189 +0 0.1278 +0 0.1305 +0 0.0666 +0 0.0647 +0 0.2817 +0 0.0822 +0 0.2044 +0 0.2023 +0 0.2877 +0 0.0610 +0 0.1481 +0 0.1953 +0 0.6537 +0 0.0842 +0 0.2484 +0 0.4368 +0 0.2342 +0 0.1438 +0 0.0639 +0 0.1421 +0 0.2110 +0 0.0849 +0 0.0781 +0 0.0730 +0 0.0924 +0 0.1472 +0 0.1697 +0 0.0610 +0 0.1039 +0 0.1004 +0 0.0502 +0 0.1105 +0 0.4234 +0 0.0719 +0 0.1462 +0 0.1365 +0 0.1261 +0 0.1795 +0 0.2164 +0 0.2473 +0 0.2426 +0 0.0534 +0 0.1227 +0 0.2482 +0 0.0480 +0 0.0770 +0 0.0904 +0 0.3028 +0 0.0514 +0 0.1161 +0 0.0595 +0 0.0409 +0 0.1321 +0 0.3047 +0 0.1165 +0 0.0849 +0 0.1251 +0 0.0831 +0 0.4749 +0 0.3721 +0 0.3311 +0 0.0923 +0 0.0811 +0 0.1346 +0 0.0381 +0 0.0925 +0 0.3667 +0 0.0494 +0 0.1180 +0 0.0545 +0 0.2303 +0 0.1248 +0 0.0636 +0 0.2068 +0 0.0767 +0 0.1585 +0 0.3874 +0 0.0911 +0 0.1024 +0 0.0525 +0 0.0976 +0 0.0655 +0 0.1465 +0 0.4444 +0 0.1258 +0 0.0957 +0 0.1143 +0 0.1499 +0 0.2429 +0 0.1124 +0 0.1912 +0 0.5264 +0 0.1017 +0 0.0827 +0 0.0828 +0 0.1643 +0 0.0599 +0 0.0729 +0 0.0879 +0 0.1563 +0 0.1255 +0 0.1599 +0 0.1180 +0 0.1483 +0 0.1310 +0 0.1165 +0 0.1981 +0 0.0625 +0 0.0805 +0 0.1069 +0 0.1601 +0 0.1689 +0 0.1200 +0 0.1933 +0 0.1790 +0 0.3615 +0 0.0647 +0 0.1234 +0 0.0887 +0 0.1842 +0 0.0843 +0 0.1562 +0 0.4381 +0 0.0639 +0 0.1504 +0 0.1239 +0 0.5886 +0 0.0647 +0 0.1779 +0 0.2046 +0 0.1318 +0 0.0829 +0 0.0730 +0 0.1039 +0 0.1024 +0 0.1084 +0 0.0680 +0 0.1470 +0 0.0756 +0 0.0993 +0 0.0945 +0 0.1979 +0 0.0888 +0 0.0968 +0 0.0826 +0 0.3236 +0 0.0306 +0 0.0507 +0 0.6979 +0 0.1511 +0 0.0838 +0 0.0540 +0 0.1788 +0 0.0886 +0 0.0830 +0 0.1432 +0 0.0401 +0 0.0631 +0 0.3867 +0 0.0854 +0 0.0407 +0 0.0797 +0 0.0447 +0 0.5835 +0 0.0397 +0 0.0830 +0 0.1655 +0 0.1351 +0 0.0416 +0 0.0707 +0 0.0616 +0 0.0456 +0 0.1130 +0 0.2435 +0 0.1274 +0 0.1093 +0 0.1025 +0 0.0967 +0 0.3127 +0 0.0991 +0 0.0823 +0 0.0862 +0 0.0725 +0 0.2072 +0 0.1133 +0 0.1817 +1 0.8635 +0 0.5516 +0 0.1463 +0 0.1558 +0 0.0852 +0 0.1485 +0 0.0438 +0 0.0797 +0 0.0585 +0 0.0766 +0 0.0794 +0 0.1131 +0 0.0700 +0 0.0342 +0 0.2440 +0 0.3647 +0 0.0953 +0 0.1381 +0 0.0838 +0 0.0434 +0 0.1612 +0 0.0648 +0 0.3764 +0 0.1095 +0 0.1219 +0 0.1082 +0 0.2404 +0 0.7173 +0 0.0856 +0 0.0843 +0 0.1232 +0 0.4113 +0 0.1099 +0 0.3499 +0 0.0432 +0 0.2680 +0 0.1167 +0 0.0635 +0 0.2277 +0 0.2187 +0 0.6188 +0 0.1192 +0 0.0513 +0 0.1535 +0 0.2620 +0 0.0958 +0 0.1161 +0 0.1216 +0 0.1156 +0 0.1019 +0 0.0906 +0 0.1099 +0 0.0660 +0 0.1235 +0 0.2270 +0 0.1372 +0 0.1351 +0 0.0811 +0 0.0452 +0 0.1951 +0 0.3826 +0 0.0618 +0 0.0649 +0 0.0970 +0 0.0753 +0 0.1198 +0 0.2469 +0 0.0685 +0 0.0616 +0 0.0881 +0 0.0698 +0 0.1291 +0 0.5196 +0 0.2716 +0 0.0501 +0 0.0481 +0 0.0476 +0 0.2667 +0 0.1421 +0 0.0589 +0 0.1415 +0 0.0783 +0 0.7215 +0 0.1108 +0 0.1840 +0 0.0566 +0 0.0743 +0 0.2030 +0 0.3106 +0 0.0778 +0 0.1599 +0 0.0689 +0 0.1738 +1 0.8062 +0 0.0808 +0 0.2268 +0 0.1088 +0 0.1293 +1 0.7628 +0 0.6551 +0 0.2914 +0 0.0948 +0 0.1319 +0 0.0806 +0 0.0449 +0 0.0723 +0 0.1451 +0 0.1189 +0 0.1772 +0 0.1249 +0 0.1165 +0 0.2250 +0 0.1981 +0 0.0401 +0 0.0763 +0 0.1096 +0 0.1202 +0 0.0647 +0 0.0911 +0 0.0597 +0 0.0786 +0 0.2887 +0 0.0964 +0 0.1297 +0 0.1289 +0 0.0580 +0 0.1062 +0 0.1401 +0 0.0929 +0 0.1659 +0 0.0427 +0 0.1657 +0 0.2243 +0 0.0770 +0 0.1006 +0 0.0778 +0 0.1163 +0 0.1275 +0 0.5804 +0 0.1640 +0 0.2801 +0 0.0757 +0 0.1826 +0 0.0954 +0 0.2337 +0 0.1069 +0 0.0637 +0 0.0642 +0 0.2916 +0 0.0784 +0 0.0964 +0 0.1221 +0 0.1070 +0 0.0796 +0 0.1766 +0 0.0858 +0 0.1620 +0 0.2879 +0 0.0903 +0 0.0568 +0 0.1237 +0 0.1055 +0 0.1109 +0 0.0783 +0 0.0895 +0 0.1023 +1 0.8624 +0 0.1756 +0 0.0865 +0 0.0628 +0 0.2022 +0 0.1810 +0 0.1798 +0 0.1450 +0 0.0698 +0 0.1984 +0 0.3106 +0 0.1565 +0 0.0521 +0 0.0674 +0 0.2252 +0 0.2568 +0 0.0858 +0 0.0672 +0 0.1298 +0 0.1836 +0 0.1030 +0 0.0815 +0 0.0613 +0 0.2075 +0 0.1835 +0 0.1651 +0 0.1969 +0 0.3281 +0 0.0635 +0 0.0503 +0 0.0601 +0 0.0652 +0 0.1932 +0 0.1220 +0 0.2447 +0 0.1007 +0 0.1281 +0 0.0648 +0 0.0517 +0 0.1525 +0 0.0593 +0 0.0689 +0 0.0840 +0 0.2007 +0 0.2659 +0 0.0635 +0 0.1841 +0 0.0452 +0 0.0817 +0 0.0795 +0 0.2260 +0 0.1453 +0 0.0907 +0 0.1027 +0 0.2730 +0 0.1158 +0 0.0508 +0 0.3997 +0 0.1915 +0 0.0761 +0 0.1406 +0 0.1241 +0 0.1893 +1 0.7762 +0 0.0581 +0 0.0714 +0 0.3543 +0 0.0688 +0 0.0821 +0 0.0355 +0 0.1425 +0 0.0892 +0 0.0886 +0 0.0842 +0 0.0889 +0 0.0990 +0 0.0672 +0 0.0555 +0 0.0739 +0 0.1260 +0 0.0668 +0 0.0704 +0 0.0930 +0 0.0457 +0 0.0628 +0 0.0577 +0 0.1553 +0 0.5782 +0 0.0422 +0 0.1388 +0 0.2046 +0 0.0425 +0 0.0614 +0 0.1571 +0 0.0722 +0 0.0868 +0 0.0670 +0 0.1529 +0 0.0946 +0 0.0870 +0 0.0813 +0 0.0819 +0 0.1305 +0 0.0666 +0 0.0381 +0 0.4364 +0 0.0924 +0 0.0597 +1 0.7804 +0 0.0968 +0 0.0665 +0 0.1142 +0 0.0354 +0 0.2050 +0 0.1983 +0 0.2143 +0 0.0902 +0 0.5415 +0 0.0831 +0 0.0463 +0 0.1942 +0 0.0667 +0 0.0687 +0 0.1549 +0 0.0653 +0 0.1466 +0 0.0752 +0 0.0676 +0 0.0769 +0 0.1277 +0 0.0959 +0 0.1349 +0 0.1843 +0 0.0569 +0 0.0710 +0 0.1448 +0 0.6706 +0 0.3350 +0 0.1178 +0 0.0543 +0 0.1506 +0 0.2110 +0 0.0811 +0 0.0771 +0 0.0476 +0 0.1373 +0 0.1267 +0 0.5651 +0 0.0839 +0 0.3680 +0 0.3422 +0 0.0802 +0 0.0672 +0 0.1158 +0 0.1485 +0 0.2308 +0 0.0397 +1 0.8581 +0 0.0611 +0 0.0805 +1 0.7798 +0 0.0348 +0 0.0704 +0 0.0419 +0 0.0601 +0 0.1062 +0 0.1002 +0 0.0550 +0 0.0943 +0 0.0980 +0 0.1756 +0 0.1476 +0 0.0572 +0 0.2556 +0 0.0447 +0 0.0979 +0 0.1622 +0 0.1094 +0 0.0453 +0 0.3208 +0 0.2258 +0 0.0694 +0 0.1165 +0 0.0683 +0 0.2358 +0 0.1234 +0 0.1355 +0 0.0595 +0 0.0736 +0 0.0483 +0 0.1346 +0 0.1518 +0 0.1819 +0 0.0742 +0 0.5417 +0 0.2978 +0 0.0972 +0 0.0624 +0 0.0577 +0 0.0645 +0 0.0878 +0 0.0460 +0 0.1840 +0 0.0608 +0 0.0633 +0 0.3628 +0 0.0547 +0 0.0862 +0 0.1538 +0 0.1084 +0 0.0591 +0 0.1211 +0 0.1310 +0 0.0517 +0 0.3944 +0 0.1344 +0 0.1061 +0 0.3978 +0 0.0669 +0 0.0762 +0 0.1154 +0 0.0674 +0 0.0778 +0 0.1204 +0 0.0606 +0 0.1844 +0 0.1108 +0 0.1017 +0 0.1558 +0 0.1630 +0 0.1234 +0 0.1200 +0 0.0856 +0 0.1185 +0 0.0626 +0 0.0472 +0 0.0614 +0 0.0683 +0 0.0669 +0 0.0735 +0 0.0933 +1 0.8528 +0 0.0439 +0 0.0712 +0 0.0804 +0 0.2251 +0 0.1356 +0 0.0458 +0 0.4446 +0 0.1554 +0 0.2136 +0 0.1056 +0 0.0354 +0 0.0821 +0 0.0868 +0 0.2194 +0 0.0421 +0 0.1257 +0 0.2028 +0 0.2003 +0 0.0499 +0 0.0724 +0 0.3513 +0 0.1240 +0 0.1043 +0 0.3098 +0 0.3979 +0 0.0397 +0 0.1464 +0 0.2061 +0 0.0576 +0 0.0670 +0 0.0660 +0 0.1617 +0 0.0975 +1 0.8379 +0 0.4704 +0 0.0614 +0 0.5840 +0 0.0484 +0 0.1397 +0 0.1941 +0 0.1248 +0 0.2471 +0 0.0395 +0 0.1369 +0 0.0521 +0 0.1154 +0 0.0736 +0 0.0631 +0 0.0861 +0 0.0910 +0 0.2327 +0 0.2966 +0 0.1265 +0 0.0475 +0 0.0825 +0 0.0831 +0 0.2385 +0 0.1258 +0 0.0607 +0 0.1505 +0 0.1303 +0 0.0941 +1 0.8221 +0 0.1425 +0 0.0646 +0 0.1673 +0 0.0905 +0 0.2452 +0 0.0896 +0 0.1923 +0 0.0632 +0 0.0327 +0 0.0522 +0 0.1657 +0 0.1067 +0 0.3106 +0 0.1947 +0 0.0485 +0 0.0498 +0 0.0433 +0 0.0642 +0 0.1557 +0 0.2726 +0 0.0835 +0 0.1870 +0 0.1115 +0 0.0759 +0 0.3348 +0 0.1791 +0 0.1243 +0 0.0781 +0 0.0653 +0 0.1076 +0 0.1534 +0 0.0903 +1 0.7982 +0 0.1547 +0 0.1577 +0 0.0593 +0 0.1398 +0 0.0928 +1 0.7514 +0 0.1130 +0 0.0765 +0 0.1240 +0 0.0430 +1 0.8633 +0 0.0407 +0 0.0837 +0 0.1217 +0 0.4643 +0 0.4238 +0 0.1679 +0 0.0739 +0 0.0639 +0 0.1321 +0 0.0504 +0 0.3012 +0 0.0669 +0 0.1976 +0 0.5969 +0 0.1135 +0 0.1120 +0 0.4895 +0 0.1695 +0 0.1908 +0 0.1216 +0 0.2041 +0 0.0730 +0 0.1146 +0 0.1750 +0 0.0700 +0 0.1683 +0 0.1101 +0 0.1840 +0 0.0878 +0 0.1529 +0 0.6644 +0 0.0880 +0 0.4589 +0 0.0793 +0 0.0696 +0 0.0577 +0 0.0998 +0 0.0638 +0 0.1377 +0 0.1195 +0 0.0914 +0 0.1455 +0 0.3857 +0 0.0630 +0 0.0968 +0 0.0451 +0 0.0466 +0 0.1947 +0 0.0803 +0 0.1312 +0 0.2460 +0 0.1115 +0 0.1042 +0 0.1049 +0 0.3121 +0 0.1570 +0 0.0709 +0 0.0879 +0 0.1036 +0 0.1350 +0 0.1862 +0 0.1429 +0 0.2234 +0 0.0764 +0 0.0796 +1 0.7890 +0 0.1426 +0 0.0376 +0 0.3093 +0 0.1227 +0 0.0436 +0 0.0893 +0 0.0814 +0 0.1079 +0 0.2658 +0 0.1082 +0 0.0692 +0 0.0457 +0 0.1816 +0 0.1228 +0 0.0896 +0 0.0773 +0 0.1825 +0 0.2763 +0 0.2729 +0 0.1699 +0 0.0645 +0 0.0662 +0 0.0948 +0 0.0868 +1 0.8213 +0 0.0822 +0 0.4175 +0 0.0838 +1 0.7764 +0 0.2137 +1 0.8351 +0 0.0577 +0 0.1205 +0 0.0866 +0 0.2114 +0 0.1094 +0 0.1606 +0 0.1142 +0 0.1286 +0 0.1294 +0 0.1407 +0 0.2214 +0 0.4740 +0 0.0778 +0 0.0720 +0 0.0551 +0 0.0487 +0 0.1148 +0 0.1685 +0 0.1019 +0 0.0650 +0 0.1478 +0 0.1355 +0 0.1356 +0 0.1669 +0 0.1163 +0 0.1181 +0 0.0364 +0 0.0385 +0 0.0897 +0 0.1432 +0 0.1081 +0 0.0912 +0 0.0814 +0 0.1652 +0 0.0587 +0 0.1437 +0 0.1572 +0 0.2812 +0 0.1534 +0 0.7070 +0 0.0490 +0 0.0633 +0 0.1360 +0 0.0757 +0 0.0767 +0 0.0593 +0 0.2095 +0 0.2375 +0 0.1379 +0 0.1156 +0 0.0526 +0 0.1093 +0 0.1165 +0 0.1152 +0 0.0977 +0 0.0513 +0 0.0519 +0 0.0952 +0 0.0652 +0 0.0579 +0 0.1226 +0 0.0376 +0 0.0628 +0 0.0654 +0 0.1747 +0 0.0630 +0 0.5752 +0 0.0533 +0 0.1686 +0 0.1764 +0 0.0591 +0 0.1294 +0 0.2157 +0 0.0402 +0 0.0852 +0 0.0892 +0 0.0473 +0 0.0695 +0 0.0549 +0 0.0556 +0 0.1245 +0 0.0554 +0 0.3062 +0 0.0883 +0 0.0431 +0 0.2223 +0 0.0855 +0 0.2300 +0 0.0511 +0 0.0731 +0 0.6624 +0 0.0820 +0 0.4066 +0 0.0602 +0 0.1343 +0 0.1003 +0 0.0739 +0 0.1772 +0 0.0846 +0 0.0939 +0 0.0658 +0 0.0901 +0 0.6502 +0 0.0655 +0 0.1554 +0 0.1151 +0 0.4568 +0 0.0417 +0 0.2409 +0 0.1374 +0 0.2351 +0 0.0718 +0 0.2531 +1 0.8081 +0 0.0760 +0 0.3278 +0 0.1226 +0 0.0805 +0 0.2608 +1 0.8030 +0 0.1640 +0 0.0843 +0 0.3684 +0 0.0707 +0 0.2339 +0 0.0580 +0 0.0895 +0 0.2665 +0 0.1119 +0 0.1142 +0 0.0683 +0 0.0760 +0 0.1776 +0 0.2065 +0 0.1068 +0 0.1244 +0 0.0684 +0 0.1126 +0 0.0440 +0 0.4183 +0 0.0714 +0 0.1106 +0 0.1077 +0 0.1141 +0 0.1959 +0 0.0543 +0 0.0487 +0 0.0921 +0 0.0626 +0 0.1304 +0 0.1356 +0 0.5279 +0 0.2022 +0 0.0613 +0 0.0740 +0 0.1938 +0 0.0776 +0 0.2927 +0 0.1723 +0 0.1084 +0 0.0621 +0 0.1804 +0 0.0408 +0 0.1123 +0 0.1530 +0 0.0724 +0 0.0563 +0 0.1375 +0 0.1084 +0 0.1319 +0 0.1037 +0 0.1197 +0 0.1278 +0 0.1548 +0 0.0685 +0 0.0635 +1 0.8487 +0 0.0880 +0 0.2044 +0 0.0764 +0 0.3853 +0 0.1068 +0 0.1409 +0 0.1215 +0 0.1136 +0 0.0945 +0 0.1063 +0 0.2036 +0 0.1163 +0 0.1433 +0 0.1335 +0 0.0850 +0 0.0973 +0 0.1690 +0 0.1565 +0 0.0961 +0 0.0427 +0 0.4985 +0 0.1845 +0 0.1218 +0 0.0993 +0 0.0445 +0 0.0670 +0 0.0775 +0 0.0649 +0 0.0680 +0 0.0752 +0 0.1487 +0 0.2050 +0 0.1616 +0 0.0743 +0 0.2145 +0 0.1893 +0 0.0710 +0 0.0608 +0 0.0993 +0 0.0578 +0 0.1434 +0 0.0870 +0 0.0979 +0 0.1328 +0 0.0786 +0 0.1035 +0 0.1387 +0 0.1028 +0 0.1007 +0 0.0816 +0 0.0543 +0 0.0785 +0 0.1256 +0 0.0579 +0 0.0927 +0 0.0424 +0 0.0399 +0 0.1075 +0 0.0683 +0 0.0556 +0 0.1122 +0 0.0793 +0 0.1541 +0 0.0656 +0 0.5288 +0 0.0419 +0 0.1653 +0 0.1704 +0 0.1177 +0 0.0598 +0 0.0564 +0 0.0526 +0 0.0389 +0 0.1146 +0 0.0752 +0 0.1638 +0 0.0534 +0 0.1962 +0 0.0798 +0 0.1605 +0 0.0396 +0 0.0508 +0 0.1322 +0 0.3036 +0 0.0620 +0 0.1464 +0 0.0627 +0 0.2083 +0 0.0484 +0 0.0882 +0 0.0368 +0 0.0720 +0 0.2411 +0 0.1017 +0 0.0882 +0 0.1016 +0 0.3054 +0 0.0509 +0 0.1374 +0 0.0589 +0 0.0641 +0 0.0535 +1 0.7783 +0 0.1428 +0 0.0430 +0 0.0955 +0 0.0748 +0 0.0334 +0 0.2313 +0 0.0787 +0 0.0661 +0 0.0725 +0 0.2195 +0 0.0625 +0 0.0661 +0 0.1540 +0 0.0974 +0 0.0758 +0 0.1126 +0 0.2224 +0 0.0920 +0 0.0511 +0 0.0469 +0 0.0435 +0 0.0690 +0 0.0850 +0 0.0968 +0 0.0947 +0 0.1309 +0 0.1261 +0 0.0579 +0 0.0518 +0 0.0801 +0 0.1275 +0 0.1020 +0 0.1237 +0 0.2468 +0 0.2920 +0 0.0740 +0 0.1793 +0 0.0639 +0 0.0882 +0 0.0308 +0 0.4708 +0 0.0766 +0 0.1855 +0 0.0786 +0 0.0641 +0 0.0506 +0 0.0577 +0 0.1222 +0 0.2567 +0 0.0469 +0 0.0600 +0 0.1447 +0 0.2097 +0 0.3354 +0 0.0760 +0 0.0791 +0 0.0422 +0 0.0914 +0 0.0464 +0 0.0953 +0 0.1461 +0 0.1881 +0 0.3607 +0 0.1052 +0 0.2103 +0 0.0871 +0 0.1041 +0 0.0560 +0 0.0992 +0 0.1048 +0 0.3878 +0 0.1807 +0 0.6871 +0 0.1071 +0 0.0603 +0 0.3732 +0 0.1866 +0 0.0784 +0 0.1896 +0 0.0855 +0 0.2434 +0 0.3438 +0 0.2673 +0 0.0401 +0 0.2326 +0 0.0968 +0 0.0399 +0 0.1274 +0 0.0461 +0 0.0892 +0 0.1273 +0 0.0585 +0 0.0592 +0 0.0750 +1 0.8194 +0 0.0921 +0 0.3035 +0 0.1638 +0 0.1339 +0 0.0888 +0 0.0613 +0 0.1317 +0 0.0728 +0 0.0709 +0 0.1698 +0 0.0854 +0 0.5914 +1 0.8214 +0 0.0581 +0 0.1187 +0 0.0819 +0 0.0775 +1 0.8137 +0 0.1803 +0 0.0910 +0 0.2688 +0 0.0473 +0 0.4621 +0 0.0917 +0 0.2281 +0 0.0836 +0 0.1840 +0 0.0439 +0 0.1577 +0 0.0916 +0 0.0813 +0 0.2400 +0 0.0847 +0 0.0683 +0 0.2312 +0 0.2272 +0 0.2463 +0 0.0515 +0 0.0616 +0 0.0710 +0 0.1459 +0 0.1408 +0 0.1724 +0 0.0635 +0 0.1425 +0 0.6904 +0 0.1589 +0 0.1243 +0 0.0668 +0 0.2795 +1 0.8352 +0 0.1778 +0 0.0851 +0 0.0593 +0 0.1202 +0 0.1424 +0 0.2492 +0 0.2320 +0 0.0776 +0 0.0902 +0 0.1423 +0 0.0921 +0 0.0760 +0 0.0675 +0 0.0393 +0 0.1040 +0 0.0907 +0 0.0986 +0 0.1270 +0 0.0931 +0 0.1029 +0 0.1816 +0 0.0762 +0 0.2431 +0 0.0968 +0 0.1696 +0 0.1833 +0 0.1727 +0 0.1188 +0 0.3174 +0 0.0661 +0 0.0954 +0 0.1253 +0 0.4217 +0 0.1273 +0 0.1583 +0 0.0972 +1 0.8031 +0 0.0703 +0 0.1905 +0 0.0675 +0 0.0816 +0 0.1557 +0 0.5444 +0 0.0988 +0 0.1301 +0 0.1155 +0 0.1090 +0 0.3419 +0 0.0497 +0 0.3830 +0 0.0474 +0 0.0849 +0 0.0742 +0 0.6655 +0 0.0683 +0 0.1180 +0 0.0845 +0 0.4071 +0 0.1310 +0 0.2940 +0 0.0595 +0 0.1163 +0 0.1183 +0 0.0707 +0 0.0526 +0 0.2115 +0 0.0612 +0 0.2037 +0 0.1881 +0 0.0509 +0 0.0719 +0 0.3132 +0 0.0524 +0 0.2131 +0 0.0649 +0 0.0849 +0 0.1423 +0 0.7310 +0 0.0409 +0 0.0669 +0 0.0910 +0 0.1129 +0 0.0684 +0 0.2830 +0 0.0530 +0 0.0740 +0 0.0827 +0 0.1033 +0 0.0883 +0 0.1224 +0 0.0821 +0 0.0964 +0 0.1433 +0 0.1300 +1 0.7620 +0 0.0807 +0 0.1016 +0 0.3408 +0 0.0514 +0 0.4703 +0 0.0919 +0 0.1931 +0 0.0643 +0 0.0742 +0 0.1915 +0 0.1481 +0 0.2212 +0 0.1375 +0 0.0946 +0 0.0784 +0 0.0745 +0 0.0996 +0 0.1084 +0 0.1673 +0 0.0424 +0 0.2041 +0 0.1054 +0 0.0659 +0 0.0435 +0 0.1092 +0 0.0571 +0 0.0581 +0 0.0624 +0 0.1188 +0 0.2575 +0 0.1195 +0 0.1828 +0 0.0943 +0 0.0805 +0 0.2453 +0 0.2493 +0 0.1250 +0 0.0524 +0 0.1574 +0 0.0597 +0 0.0526 +0 0.0465 +0 0.1352 +0 0.0874 +0 0.0527 +0 0.0869 +0 0.1129 +0 0.1456 +0 0.1863 +0 0.1146 +0 0.0637 +0 0.0837 +0 0.0760 +0 0.5968 +0 0.0705 +0 0.2116 +0 0.0574 +0 0.0784 +0 0.1310 +0 0.0954 +0 0.2502 +0 0.0666 +0 0.2361 +0 0.0969 +0 0.2320 +0 0.3043 +0 0.1085 +0 0.0377 +0 0.2176 +0 0.2052 +0 0.0875 +0 0.1613 +0 0.0624 +0 0.0707 +0 0.2557 +0 0.1896 +0 0.1924 +0 0.1068 +0 0.3890 +0 0.1188 +0 0.0401 +0 0.0495 +0 0.1814 +0 0.0653 +0 0.2231 +0 0.0688 +0 0.0924 +0 0.3424 +0 0.0416 +0 0.1148 +0 0.0675 +0 0.0842 +0 0.0711 +0 0.0628 +0 0.1184 +0 0.1623 +0 0.0740 +0 0.0416 +0 0.1580 +0 0.1370 +0 0.0938 +0 0.1375 +0 0.4949 +0 0.1922 +0 0.1602 +0 0.1555 +0 0.3678 +0 0.1107 +0 0.3114 +0 0.0748 +0 0.0527 +0 0.2475 +0 0.0931 +0 0.0373 +0 0.1451 +0 0.1015 +0 0.0501 +0 0.0774 +0 0.2031 +0 0.1488 +0 0.1424 +0 0.2501 +0 0.1021 +0 0.1756 +0 0.0557 +0 0.2521 +0 0.1885 +0 0.3914 +0 0.1116 +0 0.1798 +0 0.0871 +0 0.0904 +0 0.0391 +0 0.1429 +0 0.0965 +0 0.2155 +0 0.7218 +0 0.0512 +0 0.0801 +0 0.0567 +0 0.1331 +0 0.2669 +0 0.0386 +0 0.0394 +0 0.0491 +0 0.0897 +0 0.0745 +0 0.1796 +0 0.1285 +0 0.0903 +0 0.0597 +0 0.0975 +0 0.3388 +0 0.0777 +0 0.0908 +0 0.1194 +0 0.0814 +0 0.1616 +0 0.1545 +0 0.0853 +0 0.2475 +0 0.0600 +0 0.0777 +0 0.1636 +0 0.0579 +0 0.1008 +0 0.1944 +0 0.2550 +0 0.0787 +0 0.1553 +0 0.2453 +0 0.0799 +0 0.0587 +0 0.0983 +0 0.1938 +0 0.0618 +0 0.0344 +0 0.1388 +0 0.0795 +0 0.0939 +0 0.0487 +0 0.0648 +0 0.0989 +0 0.0480 +0 0.0943 +0 0.1253 +0 0.1527 +0 0.0842 +0 0.1454 +0 0.0835 +0 0.0602 +0 0.3047 +0 0.0940 +0 0.1183 +0 0.1353 +0 0.0937 +0 0.1065 +0 0.1544 +0 0.1248 +0 0.1469 +0 0.1172 +0 0.0892 +0 0.1656 +0 0.0665 +0 0.0386 +0 0.1070 +0 0.0846 +0 0.0818 +0 0.0453 +0 0.3172 +0 0.0474 +0 0.0576 +0 0.0759 +0 0.1233 +0 0.1097 +0 0.1738 +0 0.0463 +0 0.1197 +0 0.0926 +0 0.2363 +0 0.1205 +0 0.2760 +0 0.0871 +0 0.1239 +0 0.1173 +0 0.0965 +0 0.0635 +0 0.3196 +0 0.1969 +0 0.1186 +0 0.1167 +0 0.0331 +0 0.4713 +1 0.8145 +0 0.1413 +0 0.0919 +0 0.0421 +0 0.0560 +0 0.6519 +0 0.0607 +0 0.1486 +0 0.1804 +0 0.1364 +0 0.0678 +0 0.1604 +0 0.0372 +0 0.2153 +0 0.2088 +0 0.1130 +0 0.6878 +0 0.0752 +0 0.0845 +0 0.0773 +0 0.1191 +0 0.1078 +0 0.4038 +0 0.1476 +0 0.6488 +0 0.0885 +0 0.0503 +0 0.0917 +0 0.1246 +0 0.1057 +0 0.1100 +0 0.1403 +0 0.1032 +0 0.1496 +0 0.1048 +0 0.1200 +0 0.1535 +0 0.0823 +0 0.1549 +0 0.0752 +0 0.0561 +0 0.1145 +0 0.0953 +0 0.7221 +0 0.0738 +0 0.7291 +1 0.2940 +0 0.0528 +0 0.0789 +0 0.1483 +0 0.6440 +0 0.0904 +0 0.1386 +0 0.1536 +0 0.0600 +0 0.1294 +0 0.1769 +0 0.0655 +0 0.1198 +0 0.1177 +0 0.3185 +0 0.0788 +0 0.1329 +0 0.1500 +0 0.1150 +1 0.8714 +0 0.0660 +0 0.0673 +0 0.1032 +0 0.0770 +0 0.0788 +0 0.1100 +0 0.4250 +0 0.1393 +0 0.3383 +0 0.1151 +0 0.1290 +0 0.0796 +0 0.0721 +0 0.4063 +0 0.0753 +0 0.1137 +0 0.1751 +0 0.4557 +0 0.2020 +0 0.0831 +0 0.1531 +0 0.0858 +0 0.2319 +0 0.1574 +0 0.0887 +0 0.1078 +0 0.1339 +0 0.1057 +0 0.1489 +0 0.0787 +0 0.1302 +0 0.2108 +0 0.0849 +0 0.6176 +0 0.2596 +0 0.3997 +0 0.1416 +0 0.1099 +0 0.3145 +0 0.1791 +1 0.7711 +0 0.0516 +0 0.0679 +0 0.1021 +0 0.0534 +0 0.1366 +0 0.0636 +0 0.1142 +0 0.1159 +0 0.3004 +0 0.1009 +0 0.1129 +0 0.1008 +0 0.0630 +0 0.2426 +0 0.1462 +0 0.0649 +0 0.1493 +0 0.4994 +0 0.1984 +0 0.1098 +0 0.1919 +0 0.0512 +0 0.1339 +0 0.1153 +0 0.0812 +0 0.0628 +0 0.1301 +0 0.1394 +0 0.1037 +0 0.0552 +0 0.1685 +0 0.0665 +1 0.7592 +0 0.1151 +0 0.0714 +0 0.1016 +0 0.0395 +0 0.0780 +0 0.5387 +0 0.1123 +0 0.1562 +0 0.0862 +0 0.3723 +0 0.1100 +0 0.2418 +0 0.2462 +0 0.1148 +0 0.0847 +0 0.1619 +0 0.2326 +0 0.0922 +0 0.1687 +0 0.0852 +0 0.1006 +0 0.1305 +0 0.1338 +0 0.1391 +0 0.2047 +0 0.1038 +0 0.1795 +0 0.0770 +0 0.1458 +0 0.0834 +0 0.0379 +0 0.0532 +0 0.0812 +0 0.0610 +0 0.1248 +0 0.1041 +0 0.0942 +0 0.1250 +0 0.1164 +0 0.0536 +0 0.0566 +0 0.0810 +0 0.1154 +0 0.0648 +0 0.1694 +0 0.1902 +0 0.0907 +0 0.0859 +0 0.0451 +0 0.1570 +0 0.0837 +0 0.0561 +0 0.0658 +0 0.0399 +0 0.1657 +0 0.3048 +0 0.1114 +0 0.2226 +0 0.0581 +0 0.1011 +0 0.0442 +0 0.1244 +0 0.0543 +0 0.0654 +0 0.0525 +0 0.0584 +0 0.0391 +0 0.0674 +0 0.0754 +0 0.2160 +0 0.0596 +0 0.1969 +0 0.1732 +0 0.0615 +0 0.0378 +0 0.2201 +0 0.1164 +0 0.3173 +0 0.0591 +0 0.2689 +0 0.1004 +0 0.0591 +0 0.3479 +0 0.0622 +0 0.0703 +0 0.0906 +0 0.1891 +0 0.1216 +0 0.0935 +0 0.2369 +0 0.0299 +0 0.1697 +0 0.1411 +0 0.0427 +0 0.0910 +0 0.5709 +0 0.3584 +0 0.1463 +0 0.1771 +0 0.0500 +0 0.1817 +0 0.0817 +0 0.2143 +0 0.0321 +0 0.0635 +0 0.1825 +0 0.0834 +0 0.1000 +0 0.0767 +0 0.2057 +0 0.0617 +0 0.1949 +0 0.2486 +0 0.1402 +0 0.1870 +0 0.0961 +0 0.2742 +0 0.1932 +0 0.0588 +0 0.1324 +0 0.0996 +0 0.0602 +0 0.2346 +0 0.1768 +0 0.1123 +0 0.1329 +0 0.0682 +0 0.0842 +0 0.0870 +0 0.2125 +0 0.1382 +0 0.2879 +0 0.0389 +0 0.2225 +0 0.0513 +0 0.1264 +0 0.0684 +0 0.0446 +0 0.2282 +0 0.0847 +0 0.0854 +0 0.1412 +0 0.0335 +0 0.1749 +0 0.0760 +0 0.1127 +0 0.1996 +0 0.0715 +0 0.0691 +0 0.1727 +0 0.1496 +0 0.1050 +0 0.1010 +0 0.3521 +0 0.6000 +0 0.0537 +0 0.0782 +0 0.1093 +0 0.0807 +0 0.0708 +0 0.1285 +0 0.3184 +0 0.1005 +1 0.7524 +0 0.0383 +1 0.7646 +0 0.2627 +0 0.1923 +0 0.0672 +0 0.1277 +0 0.0768 +0 0.2330 +0 0.0681 +0 0.1928 +0 0.0552 +0 0.1403 +0 0.1164 +0 0.1178 +0 0.1247 +0 0.0931 +0 0.0585 +0 0.2790 +0 0.0987 +0 0.0761 +0 0.0395 +0 0.0667 +0 0.0897 +0 0.1770 +0 0.0767 +0 0.2820 +0 0.2363 +0 0.1124 +0 0.1680 +0 0.1889 +0 0.1806 +0 0.0597 +0 0.3524 +0 0.2475 +0 0.1764 +0 0.0551 +0 0.2356 +0 0.1109 +0 0.1164 +0 0.0931 +0 0.1230 +0 0.0660 +0 0.0747 +0 0.0599 +0 0.1980 +0 0.0720 +0 0.0649 +0 0.0590 +0 0.0529 +0 0.0586 +0 0.1517 +0 0.0994 +0 0.0788 +0 0.7017 +0 0.1227 +0 0.0454 +1 0.8405 +0 0.0327 +0 0.0536 +0 0.2844 +0 0.1204 +0 0.0944 +0 0.0523 +0 0.0719 +0 0.1460 +0 0.0635 +0 0.0876 +0 0.0619 +0 0.0625 +0 0.1532 +0 0.1297 +0 0.0715 +0 0.0956 +0 0.0704 +0 0.0780 +0 0.2640 +1 0.7813 +0 0.1968 +0 0.0688 +0 0.0735 +0 0.1386 +0 0.0743 +0 0.1358 +0 0.0401 +0 0.0438 +0 0.0737 +0 0.1398 +0 0.3429 +0 0.0936 +0 0.0801 +0 0.1106 +0 0.0946 +0 0.0895 +0 0.1916 +0 0.1717 +0 0.1132 +0 0.1297 +0 0.0898 +0 0.1383 +0 0.1163 +0 0.2381 +0 0.0469 +0 0.0864 +0 0.1703 +0 0.2234 +0 0.0906 +0 0.1043 +0 0.0819 +0 0.1164 +0 0.1168 +0 0.1416 +0 0.0584 +0 0.0458 +0 0.0993 +0 0.1966 +0 0.2398 +0 0.0995 +0 0.0879 +0 0.0678 +0 0.0679 +0 0.1166 +0 0.0747 +0 0.0787 +0 0.1241 +0 0.0351 +0 0.0652 +0 0.1225 +0 0.0837 +0 0.0919 +0 0.1603 +0 0.1081 +0 0.0473 +0 0.1943 +0 0.0549 +0 0.2470 +0 0.1243 +0 0.0826 +0 0.1356 +0 0.1013 +0 0.3263 +0 0.1044 +0 0.1032 +0 0.0543 +0 0.1541 +0 0.1201 +1 0.8737 +0 0.1433 +0 0.0837 +0 0.0441 +0 0.0926 +0 0.0676 +0 0.0655 +0 0.0721 +0 0.1034 +0 0.3191 +0 0.1196 +0 0.1053 +0 0.1705 +0 0.0934 +0 0.0737 +0 0.0560 +0 0.2442 +0 0.1455 +0 0.1479 +0 0.1899 +0 0.0382 +0 0.0457 +0 0.0622 +0 0.0711 +0 0.1463 +0 0.3194 +0 0.1137 +0 0.1354 +0 0.0988 +0 0.1420 +0 0.0656 +0 0.0992 +0 0.0607 +0 0.0703 +0 0.7087 +0 0.2279 +0 0.1503 +0 0.0976 +0 0.1514 +0 0.2774 +0 0.5844 +0 0.4787 +0 0.1334 +0 0.1973 +0 0.1242 +0 0.1449 +0 0.0737 +0 0.0915 +0 0.0693 +0 0.2493 +0 0.0798 +0 0.1422 +0 0.0562 +0 0.1526 +0 0.1201 +0 0.2003 +0 0.2350 +0 0.1244 +0 0.0947 +1 0.7887 +0 0.1790 +0 0.0457 +0 0.4115 +0 0.1185 +0 0.6031 +0 0.1241 +0 0.3260 +0 0.1243 +0 0.0808 +0 0.2432 +0 0.3574 +0 0.0608 +0 0.0728 +0 0.1784 +0 0.3800 +0 0.0909 +0 0.0656 +0 0.0565 +0 0.0435 +0 0.0444 +0 0.1041 +0 0.0704 +0 0.0640 +0 0.1453 +0 0.0479 +0 0.0940 +0 0.0588 +0 0.0965 +0 0.3368 +0 0.0787 +0 0.1335 +0 0.1102 +0 0.0666 +0 0.1581 +0 0.1607 +0 0.0826 +0 0.1790 +0 0.1412 +0 0.1570 +0 0.2659 +0 0.0623 +0 0.0897 +0 0.0857 +0 0.1170 +0 0.1130 +0 0.0932 +0 0.0544 +0 0.0603 +0 0.0657 +0 0.0437 +0 0.1141 +0 0.5413 +0 0.1159 +0 0.0669 +0 0.2201 +0 0.1846 +0 0.1449 +0 0.1177 +0 0.0791 +0 0.1470 +0 0.0909 +0 0.0907 +0 0.1007 +0 0.3153 +0 0.1824 +0 0.0438 +0 0.1522 +0 0.1095 +0 0.1854 +0 0.1961 +0 0.1018 +0 0.0905 +0 0.0921 +0 0.1492 +0 0.0777 +0 0.1232 +0 0.0917 +0 0.0565 +0 0.0918 +0 0.2882 +0 0.0315 +0 0.1014 +0 0.0721 +0 0.1074 +0 0.0542 +0 0.1094 +0 0.0851 +0 0.1854 +0 0.3064 +0 0.1253 +0 0.1192 +0 0.1087 +0 0.0686 +0 0.0434 +0 0.0661 +0 0.3030 +0 0.0902 +0 0.2625 +0 0.1520 +0 0.2723 +0 0.0915 +0 0.0815 +0 0.1310 +0 0.1018 +0 0.1292 +0 0.2970 +0 0.1040 +0 0.0976 +0 0.0791 +1 0.8117 +0 0.0400 +0 0.0543 +0 0.0906 +0 0.1594 +1 0.8577 +0 0.0940 +0 0.1638 +0 0.1982 +0 0.2100 +0 0.3061 +0 0.0630 +0 0.1312 +0 0.1326 +0 0.4281 +0 0.0903 +0 0.2636 +0 0.0680 +0 0.1004 +0 0.0944 +0 0.1995 +0 0.0361 +0 0.0611 +0 0.1258 +0 0.1940 +0 0.0863 +0 0.1838 +0 0.1104 +0 0.0546 +0 0.2071 +0 0.0847 +0 0.0672 +0 0.1175 +0 0.1050 +0 0.0784 +0 0.1184 +0 0.1035 +0 0.0772 +0 0.2490 +0 0.1929 +0 0.1293 +0 0.2704 +0 0.1116 +0 0.0733 +0 0.4837 +0 0.1955 +0 0.2004 +0 0.3664 +0 0.1101 +0 0.5395 +0 0.0820 +0 0.1835 +0 0.1036 +0 0.1445 +0 0.0519 +0 0.3133 +0 0.0687 +0 0.0832 +0 0.0588 +0 0.1792 +0 0.1204 +0 0.1584 +0 0.0414 +0 0.5910 +0 0.2163 +0 0.1930 +0 0.1689 +0 0.0530 +0 0.0545 +0 0.1201 +0 0.3086 +0 0.2122 +0 0.0985 +0 0.1982 +0 0.1704 +0 0.1378 +0 0.0757 +0 0.0725 +0 0.5001 +0 0.0483 +0 0.0526 +0 0.0643 +0 0.2937 +0 0.0953 +0 0.1164 +0 0.2342 +0 0.1470 +0 0.1092 +0 0.0690 +0 0.1122 +0 0.0943 +0 0.1569 +0 0.1045 +1 0.2950 +0 0.0949 +0 0.1055 +0 0.1109 +0 0.2968 +0 0.1084 +0 0.1337 +0 0.1857 +0 0.0701 +0 0.3432 +0 0.1004 +0 0.2539 +0 0.0483 +0 0.0965 +0 0.0541 +0 0.1138 +0 0.0941 +0 0.5452 +0 0.0904 +0 0.0487 +0 0.1056 +0 0.0348 +0 0.0861 +0 0.0452 +0 0.0716 +0 0.2523 +0 0.2767 +0 0.0466 +0 0.1070 +0 0.2313 +0 0.1440 +0 0.2621 +0 0.1802 +0 0.0941 +0 0.0805 +0 0.0369 +1 0.8298 +0 0.1725 +0 0.6782 +0 0.1156 +0 0.0652 +0 0.1722 +0 0.1305 +0 0.2854 +0 0.4650 +0 0.3488 +0 0.0638 +0 0.1212 +0 0.1192 +0 0.3383 +0 0.1931 +0 0.0874 +0 0.0372 +0 0.6531 +0 0.0812 +0 0.1162 +0 0.0672 +0 0.0374 +0 0.1351 +0 0.0842 +0 0.1070 +0 0.0528 +0 0.0416 +0 0.2405 +0 0.2403 +0 0.1010 +0 0.6487 +0 0.0761 +0 0.0980 +0 0.0981 +0 0.1271 +0 0.0940 +0 0.0676 +0 0.2251 +0 0.0426 +0 0.1804 +0 0.5917 +0 0.0507 +0 0.2661 +0 0.1621 +0 0.0399 +0 0.1895 +0 0.0888 +0 0.0874 +0 0.1052 +0 0.2757 +0 0.1028 +0 0.0657 +0 0.0614 +0 0.0555 +0 0.1497 +0 0.3226 +0 0.0669 +0 0.1897 +1 0.7708 +0 0.0479 +0 0.0390 +0 0.0691 +0 0.0693 +0 0.0751 +0 0.0661 +0 0.2311 +0 0.1214 +0 0.4406 +0 0.0636 +0 0.1389 +0 0.1292 +0 0.6954 +0 0.1163 +0 0.1423 +0 0.0552 +0 0.4062 +0 0.1077 +0 0.0855 +0 0.0850 +0 0.0818 +0 0.0566 +0 0.2383 +0 0.1634 +0 0.0501 +0 0.1536 +0 0.2467 +1 0.8808 +0 0.1816 +0 0.0985 +0 0.2691 +0 0.1338 +0 0.0845 +0 0.0647 +0 0.1676 +0 0.1892 +0 0.1812 +0 0.0829 +0 0.2534 +0 0.2838 +0 0.1324 +0 0.0791 +0 0.2810 +0 0.0564 +0 0.2398 +0 0.0887 +0 0.0652 +0 0.0918 +1 0.7839 +0 0.1282 +0 0.3555 +0 0.2470 +0 0.0734 +0 0.1204 +0 0.1729 +0 0.1689 +0 0.1063 +0 0.0983 +0 0.0783 +0 0.0461 +0 0.0440 +0 0.1844 +0 0.0609 +0 0.0464 +0 0.1372 +0 0.3479 +0 0.0652 +0 0.1332 +0 0.1062 +0 0.1106 +0 0.1822 +0 0.0614 +1 0.7602 +0 0.0769 +0 0.1534 +0 0.2515 +0 0.0628 +0 0.1023 +0 0.2299 +0 0.3270 +0 0.1655 +0 0.0850 +0 0.3836 +0 0.3857 +0 0.2991 +1 0.7653 +0 0.1090 +0 0.2871 +0 0.1741 +0 0.0371 +0 0.0393 +0 0.0367 +0 0.1546 +0 0.1288 +0 0.0729 +0 0.0683 +0 0.1668 +0 0.1367 +0 0.2934 +0 0.0516 +0 0.5267 +0 0.0620 +0 0.0598 +0 0.1032 +0 0.1377 +0 0.1790 +0 0.0856 +0 0.1375 +0 0.1349 +0 0.0682 +0 0.0653 +0 0.0383 +0 0.1941 +0 0.1685 +0 0.0616 +0 0.1177 +0 0.0736 +0 0.2012 +0 0.0717 +0 0.0449 +0 0.0385 +0 0.2418 +0 0.1140 +0 0.1768 +0 0.1709 +0 0.1784 +0 0.3139 +0 0.1000 +0 0.0819 +0 0.1226 +0 0.2949 +0 0.0919 +0 0.2488 +0 0.4589 +0 0.1215 +0 0.0484 +0 0.0956 +0 0.7425 +0 0.0757 +0 0.0611 +0 0.1229 +0 0.0558 +0 0.2089 +0 0.2104 +0 0.0523 +0 0.2451 +0 0.0704 +0 0.1329 +0 0.2109 +0 0.1711 +0 0.3454 +0 0.0673 +0 0.0915 +0 0.0609 +0 0.0670 +0 0.0720 +0 0.0954 +0 0.4367 +1 0.7921 +0 0.0466 +0 0.0659 +0 0.0705 +0 0.1358 +0 0.0848 +0 0.2999 +0 0.0458 +0 0.1783 +0 0.0612 +0 0.1082 +0 0.1364 +0 0.7363 +0 0.3576 +0 0.0784 +0 0.1051 +0 0.0565 +0 0.1082 +0 0.0920 +0 0.0584 +0 0.1470 +0 0.0631 +0 0.1371 +0 0.1565 +0 0.0393 +0 0.2594 +0 0.1161 +0 0.0543 +0 0.1078 +0 0.0580 +0 0.2164 +0 0.0788 +0 0.2923 +0 0.1477 +0 0.1008 +0 0.1109 +0 0.1202 +0 0.1134 +0 0.1462 +0 0.0470 +0 0.1640 +0 0.1153 +0 0.1483 +0 0.1039 +0 0.1348 +0 0.0875 +0 0.1074 +0 0.1981 +0 0.0711 +0 0.2309 +0 0.0598 +0 0.1277 +0 0.0795 +0 0.0854 +0 0.1934 +0 0.1277 +0 0.0967 +0 0.0641 +0 0.1218 +0 0.3958 +0 0.1916 +0 0.1392 +0 0.3982 +0 0.2290 +0 0.0595 +0 0.0511 +0 0.0986 +0 0.1547 +0 0.2049 +0 0.3245 +0 0.0768 +0 0.0706 +0 0.2569 +0 0.0382 +0 0.2181 +0 0.0877 +0 0.1536 +0 0.0991 +0 0.1232 +0 0.2689 +0 0.0744 +0 0.1326 +0 0.0624 +0 0.0692 +0 0.1569 +0 0.1603 +0 0.0768 +0 0.1455 +0 0.0735 +0 0.0500 +0 0.0787 +1 0.8764 +0 0.0820 +0 0.0609 +0 0.1016 +0 0.0599 +0 0.0822 +0 0.0791 +0 0.1360 +0 0.0858 +0 0.0553 +0 0.1143 +0 0.1213 +0 0.5521 +0 0.1023 +0 0.1677 +0 0.0767 +0 0.1655 +0 0.2476 +0 0.2940 +0 0.1207 +0 0.1143 +0 0.0562 +0 0.2396 +0 0.0907 +0 0.0946 +0 0.2536 +0 0.1361 +0 0.0844 +0 0.1103 +0 0.0369 +0 0.1403 +0 0.0658 +0 0.1340 +0 0.2430 +0 0.2377 +0 0.0973 +0 0.1058 +0 0.0868 +0 0.0935 +0 0.1023 +0 0.0821 +0 0.1741 +0 0.0589 +0 0.0557 +0 0.2743 +0 0.1025 +0 0.0658 +0 0.0850 +0 0.1309 +0 0.0745 +0 0.1619 +0 0.0927 +0 0.1508 +0 0.0912 +0 0.1157 +0 0.1085 +0 0.1370 +0 0.1463 +0 0.0830 +0 0.1441 +0 0.0816 +0 0.3356 +0 0.1299 +0 0.0517 +0 0.2029 +0 0.1411 +0 0.6356 +0 0.2609 +1 0.1882 +0 0.0774 +0 0.0751 +0 0.1465 +0 0.0595 +0 0.0816 +0 0.1607 +0 0.1650 +0 0.1412 +0 0.0943 +0 0.0457 +0 0.0563 +0 0.2149 +0 0.0521 +0 0.2217 +0 0.1138 +0 0.1096 +0 0.0859 +0 0.0640 +0 0.1451 +0 0.0917 +0 0.1000 +0 0.1401 +0 0.0822 +0 0.2088 +0 0.1257 +1 0.7979 +0 0.0557 +0 0.0531 +0 0.1068 +0 0.0576 +0 0.2426 +0 0.0507 +0 0.0910 +0 0.1800 +0 0.0851 +0 0.1603 +0 0.1363 +0 0.1411 +0 0.0487 +0 0.0532 +0 0.0789 +0 0.0923 +0 0.2531 +0 0.1382 +0 0.1850 +0 0.0568 +0 0.0616 +0 0.1870 +0 0.1140 +0 0.1096 +0 0.1624 +0 0.2982 +0 0.0934 +0 0.1218 +0 0.0866 +0 0.1564 +0 0.1058 +0 0.0833 +0 0.0457 +0 0.0715 +0 0.0687 +0 0.0460 +0 0.2176 +0 0.2200 +0 0.2511 +0 0.6666 +0 0.0337 +0 0.0804 +0 0.0761 +0 0.1317 +0 0.1774 +0 0.1581 +0 0.0743 +0 0.0857 +0 0.0367 +0 0.0714 +0 0.3570 +0 0.1560 +0 0.1047 +0 0.1502 +0 0.1028 +0 0.0474 +0 0.1016 +0 0.1060 +0 0.0467 +0 0.0624 +0 0.1139 +0 0.0748 +0 0.0588 +0 0.0603 +0 0.0585 +0 0.3405 +0 0.1632 +0 0.7178 +0 0.0918 +0 0.1528 +0 0.0837 +0 0.0615 +0 0.2040 +0 0.1575 +0 0.1556 +0 0.0715 +0 0.0413 +0 0.1636 +0 0.1855 +0 0.0743 +0 0.4739 +0 0.1538 +0 0.4834 +0 0.0669 +0 0.0595 +0 0.1315 +0 0.1362 +0 0.1339 +0 0.0733 +0 0.2142 +0 0.2984 +0 0.0676 +0 0.2866 +0 0.2330 +0 0.0577 +0 0.3077 +0 0.0374 +0 0.0604 +0 0.6964 +0 0.0616 +0 0.1033 +0 0.0858 +0 0.0711 +0 0.0694 +0 0.0491 +0 0.1146 +0 0.3522 +0 0.0519 +0 0.1387 +0 0.0975 +0 0.1149 +0 0.0716 +0 0.1817 +0 0.1672 +0 0.0936 +0 0.1843 +0 0.0788 +0 0.0543 +0 0.1229 +0 0.2823 +0 0.1833 +0 0.0935 +0 0.0564 +0 0.0560 +0 0.2031 +0 0.1443 +0 0.1221 +0 0.0786 +0 0.3283 +0 0.1081 +0 0.1616 +0 0.1194 +0 0.0470 +0 0.1135 +0 0.0983 +0 0.1387 +0 0.0610 +0 0.1032 +0 0.1853 +0 0.2154 +0 0.1732 +0 0.0802 +0 0.1077 +0 0.1140 +0 0.0945 +0 0.1647 +0 0.2306 +0 0.1724 +0 0.0772 +0 0.3115 +0 0.0721 +0 0.2021 +0 0.0982 +0 0.0824 +0 0.0389 +0 0.1004 +0 0.0433 +0 0.1094 +0 0.0946 +0 0.0619 +0 0.0935 +0 0.1009 +0 0.2666 +0 0.3281 +0 0.1347 +0 0.0333 +0 0.0681 +0 0.0593 +0 0.1177 +0 0.1148 +0 0.0539 +0 0.0673 +0 0.0657 +0 0.2225 +0 0.1660 +0 0.1287 +0 0.7150 +0 0.1789 +1 0.8552 +0 0.0862 +0 0.0670 +0 0.0707 +0 0.1604 +0 0.0405 +0 0.0861 +0 0.3754 +0 0.4083 +0 0.0842 +0 0.0996 +0 0.0663 +0 0.0380 +0 0.0680 +0 0.0562 +0 0.2135 +0 0.1476 +0 0.1268 +0 0.4213 +0 0.0857 +0 0.1116 +0 0.1496 +0 0.0712 +0 0.0325 +0 0.2388 +0 0.0578 +0 0.1765 +0 0.0710 +0 0.1425 +1 0.7836 +0 0.1181 +0 0.0849 +0 0.0366 +0 0.0374 +0 0.0989 +0 0.0622 +0 0.0594 +0 0.1436 +0 0.1896 +0 0.1576 +0 0.2589 +0 0.0832 +0 0.1588 +0 0.5220 +0 0.0992 +0 0.1381 +0 0.0967 +0 0.0744 +0 0.1211 +0 0.0888 +0 0.1861 +0 0.4901 +0 0.0773 +0 0.1728 +0 0.0726 +0 0.0570 +0 0.1735 +0 0.0621 +0 0.1240 +0 0.1719 +0 0.2146 +0 0.1508 +0 0.1035 +0 0.1182 +0 0.1131 +0 0.0969 +0 0.0470 +0 0.0859 +0 0.1167 +1 0.8399 +0 0.2211 +0 0.1095 +0 0.0460 +0 0.1307 +0 0.0648 +0 0.3755 +0 0.1075 +0 0.1167 +0 0.1697 +0 0.0582 +1 0.8700 +0 0.2101 +0 0.0650 +0 0.1356 +1 0.8094 +0 0.0680 +0 0.0444 +0 0.0567 +0 0.0531 +0 0.0574 +0 0.0656 +0 0.2032 +0 0.2428 +0 0.1101 +0 0.0682 +0 0.0737 +0 0.0990 +0 0.0583 +0 0.0732 +0 0.0990 +0 0.0955 +0 0.2889 +0 0.0485 +0 0.0657 +0 0.6384 +0 0.0679 +0 0.0923 +0 0.0900 +0 0.0637 +0 0.1367 +0 0.0482 +0 0.2640 +0 0.0760 +0 0.2283 +0 0.0569 +0 0.1053 +0 0.0818 +0 0.0697 +0 0.0923 +0 0.1051 +0 0.0608 +0 0.0712 +0 0.7384 +0 0.1131 +0 0.0454 +0 0.6232 +0 0.1822 +1 0.8597 +0 0.1049 +0 0.1050 +0 0.2000 +0 0.0767 +0 0.1348 +0 0.1359 +0 0.0875 +0 0.1620 +0 0.1195 +0 0.0972 +0 0.2734 +0 0.1458 +0 0.2003 +0 0.1291 +0 0.1110 +0 0.0465 +0 0.0958 +0 0.0705 +0 0.0624 +0 0.0672 +0 0.1471 +0 0.1471 +0 0.1122 +0 0.1880 +0 0.0931 +0 0.6280 +0 0.0635 +1 0.8511 +0 0.0813 +0 0.1925 +0 0.2124 +0 0.3672 +0 0.0802 +0 0.6461 +0 0.2615 +0 0.1665 +0 0.1156 +0 0.1059 +0 0.3183 +0 0.0748 +0 0.7091 +0 0.0835 +0 0.0750 +0 0.2344 +0 0.0611 +0 0.0645 +1 0.2398 +0 0.1103 +0 0.0735 +0 0.0508 +1 0.8192 +0 0.1135 +0 0.1269 +0 0.0565 +0 0.2198 +0 0.1384 +0 0.1494 +0 0.0794 +0 0.0356 +0 0.4139 +0 0.0737 +0 0.1008 +0 0.0694 +0 0.1041 +0 0.1071 +0 0.0499 +0 0.2255 +0 0.1814 +0 0.1269 +0 0.0448 +0 0.1398 +0 0.0999 +0 0.1196 +0 0.1442 +0 0.0549 +0 0.2648 +0 0.0835 +0 0.2443 +0 0.1035 +0 0.2105 +0 0.3108 +0 0.0789 +0 0.0569 +0 0.1898 +0 0.0467 +0 0.0720 +0 0.0620 +0 0.0906 +0 0.1177 +0 0.0900 +0 0.0374 +0 0.1010 +0 0.1985 +0 0.0982 +0 0.0424 +0 0.1705 +0 0.1531 +0 0.4250 +0 0.1103 +0 0.3594 +0 0.1313 +0 0.2225 +0 0.1678 +0 0.0561 +0 0.1315 +0 0.0920 +0 0.1032 +0 0.1684 +0 0.2980 +0 0.3108 +0 0.1116 +0 0.1897 +0 0.0639 +0 0.0866 +0 0.0734 +0 0.1871 +0 0.1692 +0 0.1199 +0 0.1077 +0 0.0734 +0 0.1374 +0 0.0933 +0 0.0637 +0 0.0837 +0 0.1794 +0 0.0838 +0 0.1589 +0 0.1071 +0 0.0725 +0 0.1235 +0 0.0895 +0 0.3556 +1 0.8047 +0 0.0683 +0 0.1109 +0 0.0862 +0 0.0644 +0 0.0460 +0 0.0542 +0 0.0579 +0 0.4735 +0 0.0889 +0 0.1022 +0 0.1687 +0 0.0631 +0 0.2438 +0 0.0650 +0 0.0415 +0 0.0777 +0 0.0561 +0 0.1949 +0 0.1097 +0 0.1051 +0 0.0640 +0 0.2640 +0 0.0712 +0 0.0571 +0 0.0878 +0 0.1012 +0 0.0837 +0 0.0406 +0 0.1317 +0 0.2581 +0 0.1182 +0 0.2959 +0 0.2150 +0 0.0393 +0 0.2189 +0 0.0725 +0 0.2236 +0 0.0366 +0 0.1404 +0 0.0639 +0 0.0865 +0 0.1548 +1 0.7757 +0 0.0565 +0 0.2257 +0 0.0887 +0 0.2233 +0 0.0940 +0 0.2210 +0 0.0934 +0 0.1070 +0 0.1337 +0 0.1976 +0 0.1228 +0 0.0915 +0 0.1698 +0 0.0727 +0 0.0846 +0 0.1081 +0 0.0518 +0 0.0734 +0 0.0790 +0 0.1971 +0 0.1291 +0 0.0710 +0 0.1069 +0 0.1125 +0 0.1176 +0 0.1314 +0 0.0772 +0 0.2191 +0 0.0779 +0 0.3023 +0 0.0377 +0 0.2269 +1 0.7715 +0 0.0537 +0 0.1827 +0 0.0973 +0 0.4188 +0 0.0837 +0 0.0959 +0 0.1634 +0 0.1465 +0 0.0903 +0 0.6572 +0 0.1829 +0 0.1038 +1 0.3677 +0 0.1842 +0 0.0701 +0 0.0623 +0 0.2700 +0 0.2362 +0 0.0584 +0 0.0726 +0 0.1981 +0 0.0929 +1 0.7705 +0 0.1127 +0 0.3181 +0 0.0984 +0 0.1188 +0 0.0676 +0 0.0909 +0 0.0690 +0 0.1293 +0 0.0607 +0 0.0404 +0 0.0924 +0 0.1178 +0 0.0761 +0 0.1620 +0 0.0599 +0 0.0624 +0 0.1754 +0 0.1574 +0 0.2087 +0 0.4888 +0 0.1157 +0 0.1230 +0 0.4212 +1 0.8660 +0 0.1513 +0 0.0655 +0 0.1451 +0 0.0726 +0 0.2970 +0 0.1287 +1 0.7761 +0 0.0538 +0 0.0378 +0 0.1274 +0 0.1127 +0 0.0521 +0 0.2611 +0 0.1073 +0 0.0784 +0 0.0760 +0 0.1388 +0 0.1049 +1 0.8530 +0 0.0820 +0 0.1279 +0 0.0443 +0 0.1662 +0 0.0669 +0 0.1028 +0 0.0830 +0 0.3159 +0 0.0539 +0 0.0967 +0 0.0815 +0 0.1745 +0 0.1750 +0 0.0544 +0 0.1271 +0 0.2270 +0 0.1241 +0 0.0980 +0 0.2435 +0 0.1365 +1 0.8317 +0 0.3871 +0 0.2092 +0 0.0390 +0 0.0974 +0 0.0605 +0 0.1082 +0 0.1785 +0 0.1121 +0 0.1026 +0 0.0774 +0 0.0760 +0 0.0837 +0 0.0363 +0 0.4735 +0 0.0903 +0 0.1136 +0 0.3336 +0 0.0895 +0 0.1206 +0 0.1423 +0 0.0984 +0 0.1106 +0 0.3034 +0 0.1913 +0 0.2531 +0 0.1119 +0 0.2184 +0 0.5942 +0 0.0475 +0 0.4951 +0 0.0505 +0 0.1244 +0 0.0642 +0 0.0478 +0 0.0545 +0 0.0441 +0 0.4949 +0 0.1723 +0 0.1389 +0 0.1543 +0 0.0480 +0 0.1028 +0 0.1862 +0 0.7046 +0 0.0740 +0 0.1390 +0 0.0861 +0 0.1435 +0 0.1624 +0 0.0734 +0 0.7411 +0 0.2771 +0 0.0938 +0 0.1945 +0 0.0521 +0 0.1880 +0 0.0782 +0 0.1394 +0 0.1668 +0 0.0683 +0 0.2129 +0 0.2733 +0 0.1694 +0 0.0627 +0 0.0876 +0 0.0708 +0 0.1666 +0 0.5321 +0 0.1449 +0 0.2443 +0 0.1120 +0 0.0643 +0 0.1551 +0 0.0792 +0 0.1686 +0 0.2342 +0 0.2266 +0 0.0826 +0 0.0844 +0 0.5419 +0 0.1469 +0 0.2538 +0 0.0897 +0 0.1352 +0 0.2279 +0 0.1820 +0 0.0569 +0 0.0477 +0 0.1354 +0 0.0515 +0 0.1175 +0 0.0555 +0 0.2992 +0 0.0706 +0 0.0566 +0 0.0810 +0 0.1487 +0 0.0635 +0 0.1453 +0 0.1151 +0 0.0757 +0 0.1040 +0 0.0871 +0 0.0661 +0 0.1585 +0 0.0730 +0 0.1573 +0 0.0420 +0 0.1098 +0 0.0582 +0 0.0840 +0 0.1447 +0 0.0873 +0 0.0885 +0 0.0466 +0 0.1180 +0 0.2493 +0 0.1862 +0 0.0975 +0 0.0647 +0 0.3600 +0 0.1950 +0 0.0720 +0 0.0480 +0 0.0491 +0 0.1609 +0 0.0408 +0 0.0695 +0 0.0815 +0 0.1033 +0 0.0805 +0 0.2687 +0 0.1008 +0 0.0849 +0 0.1755 +0 0.0712 +0 0.1050 +0 0.0535 +0 0.0928 +0 0.0678 +0 0.0741 +0 0.6251 +0 0.0992 +0 0.0812 +0 0.1412 +0 0.0981 +0 0.1916 +0 0.1110 +0 0.0642 +0 0.0720 +0 0.0705 +0 0.0667 +0 0.0561 +0 0.0469 +0 0.0500 +0 0.0971 +0 0.2854 +0 0.1178 +0 0.1620 +1 0.7676 +0 0.1298 +0 0.1866 +0 0.1304 +0 0.3044 +0 0.4650 +0 0.0951 +0 0.1490 +0 0.1161 +0 0.0340 +0 0.0618 +0 0.0441 +0 0.0901 +0 0.1055 +0 0.1774 +0 0.0477 +0 0.0692 +0 0.1299 +0 0.1876 +0 0.1448 +0 0.0433 +0 0.0437 +0 0.1211 +0 0.0940 +0 0.1935 +0 0.1165 +0 0.0718 +0 0.2238 +0 0.2036 +0 0.2038 +0 0.0959 +0 0.1173 +0 0.1461 +0 0.0511 +0 0.1827 +0 0.0872 +0 0.0708 +0 0.0825 +0 0.3437 +0 0.1259 +0 0.1107 +0 0.1227 +0 0.0842 +0 0.3307 +0 0.0696 +0 0.0988 +0 0.1324 +0 0.0629 +0 0.0799 +0 0.4082 +0 0.1853 +0 0.1514 +0 0.1424 +0 0.0796 +0 0.1003 +0 0.2688 +0 0.1056 +0 0.0832 +0 0.3955 +0 0.1668 +0 0.1963 +0 0.0576 +0 0.3073 +0 0.0720 +0 0.0632 +0 0.1720 +0 0.0686 +0 0.1142 +0 0.0608 +0 0.0648 +0 0.4447 +0 0.0877 +0 0.1301 +0 0.3115 +0 0.2232 +0 0.0819 +0 0.0738 +0 0.0968 +0 0.1198 +0 0.0844 +0 0.1357 +0 0.0472 +0 0.1286 +0 0.0786 +0 0.1121 +0 0.1236 +0 0.6415 +0 0.2595 +0 0.0995 +0 0.1600 +0 0.1285 +0 0.2757 +0 0.1234 +0 0.2328 +0 0.1692 +0 0.0792 +0 0.7214 +0 0.2347 +0 0.1251 +0 0.2089 +0 0.0832 +0 0.1507 +0 0.2524 +0 0.0984 +0 0.0557 +0 0.1283 +0 0.2155 +0 0.0672 +0 0.2319 +0 0.0782 +0 0.1110 +0 0.0539 +0 0.0595 +0 0.2615 +0 0.0829 +0 0.1518 +0 0.1439 +0 0.0751 +0 0.5096 +0 0.0977 +0 0.0991 +0 0.0825 +0 0.0822 +0 0.0555 +0 0.0900 +0 0.0565 +0 0.1245 +0 0.0905 +0 0.1319 +0 0.3449 +0 0.1956 +0 0.0726 +0 0.0933 +0 0.0882 +0 0.0885 +0 0.1605 +0 0.1134 +0 0.0364 +0 0.0623 +0 0.3800 +0 0.0915 +0 0.0701 +0 0.1055 +0 0.2243 +0 0.0634 +0 0.1395 +0 0.3107 +1 0.7678 +0 0.1129 +0 0.5818 +0 0.2221 +0 0.2010 +0 0.0788 +0 0.1185 +0 0.0661 +0 0.0573 +0 0.1136 +0 0.1065 +0 0.0533 +0 0.1098 +0 0.1035 +0 0.1220 +0 0.2113 +0 0.1476 +0 0.2870 +0 0.0696 +0 0.0794 +0 0.0780 +0 0.1031 +0 0.2598 +0 0.1307 +0 0.0777 +0 0.3136 +0 0.0291 +0 0.0884 +0 0.0517 +0 0.0911 +0 0.0542 +0 0.1558 +0 0.1299 +0 0.0640 +0 0.0650 +0 0.2093 +0 0.0383 +0 0.2157 +0 0.0896 +0 0.7432 +0 0.0812 +0 0.0699 +0 0.0506 +0 0.0642 +0 0.1089 +0 0.2780 +0 0.1118 +0 0.1713 +0 0.1481 +0 0.1305 +0 0.0692 +0 0.1612 +0 0.0818 +0 0.2491 +0 0.1341 +0 0.0517 +0 0.1065 +0 0.4430 +0 0.1355 +0 0.7316 +0 0.0740 +0 0.1086 +0 0.3047 +0 0.1003 +0 0.1733 +0 0.0741 +0 0.1098 +0 0.0541 +0 0.0971 +0 0.1802 +0 0.1653 +0 0.5755 +0 0.0934 +0 0.0883 +0 0.0548 +0 0.1244 +0 0.1770 +0 0.0780 +0 0.2736 +0 0.2424 +0 0.0895 +0 0.1564 +0 0.2812 +0 0.2599 +0 0.0726 +0 0.1588 +0 0.0624 +0 0.1068 +0 0.2156 +0 0.2408 +0 0.0453 +0 0.1800 +0 0.0506 +0 0.0821 +0 0.2315 +0 0.0881 +0 0.1351 +0 0.1016 +0 0.1372 +0 0.0680 +0 0.0611 +0 0.1413 +0 0.1140 +0 0.1481 +0 0.1255 +0 0.0911 +0 0.1379 +0 0.0553 +0 0.1488 +0 0.0814 +0 0.0800 +0 0.0506 +0 0.1282 +0 0.2155 +0 0.2759 +0 0.0606 +0 0.1416 +0 0.1169 +0 0.4311 +0 0.2274 +0 0.2474 +0 0.0879 +0 0.1042 +0 0.0584 +0 0.2214 +0 0.1659 +0 0.0509 +0 0.3369 +0 0.0355 +0 0.1419 +0 0.0628 +0 0.1490 +0 0.0890 +0 0.1559 +0 0.1064 +0 0.0948 +0 0.1500 +0 0.0923 +0 0.1248 +0 0.1040 +0 0.1508 +0 0.0548 +0 0.0444 +0 0.1104 +0 0.1816 +0 0.0995 +0 0.2330 +0 0.0665 +0 0.1980 +0 0.1709 +0 0.0735 +0 0.0536 +0 0.0990 +0 0.0964 +0 0.0660 +0 0.1339 +0 0.2810 +0 0.1251 +0 0.0739 +0 0.0447 +0 0.0510 +0 0.0413 +0 0.1328 +0 0.4238 +0 0.0519 +0 0.1763 +0 0.1927 +0 0.0497 +0 0.1821 +1 0.8350 +0 0.5464 +0 0.0617 +0 0.1521 +0 0.1077 +0 0.0728 +0 0.0923 +0 0.0751 +0 0.1374 +0 0.0953 +0 0.1207 +0 0.0741 +1 0.8042 +0 0.0483 +0 0.1118 +0 0.0855 +0 0.0890 +0 0.0933 +0 0.1563 +0 0.1281 +0 0.1383 +0 0.0843 +0 0.0840 +0 0.1202 +0 0.2032 +0 0.0334 +0 0.0865 +0 0.1102 +0 0.1733 +0 0.1144 +0 0.1156 +0 0.0782 +0 0.0870 +0 0.1433 +0 0.1980 +0 0.1839 +0 0.0742 +0 0.0619 +0 0.0781 +0 0.1343 +0 0.2196 +0 0.0672 +0 0.0944 +0 0.0487 +0 0.2995 +0 0.0832 +0 0.0611 +0 0.0760 +0 0.0842 +0 0.2347 +0 0.0878 +0 0.0401 +0 0.0858 +0 0.0991 +0 0.2606 +0 0.0779 +0 0.0633 +0 0.0896 +0 0.1627 +0 0.0545 +0 0.0732 +0 0.0942 +0 0.0932 +0 0.1415 +0 0.0734 +0 0.0385 +0 0.0713 +0 0.0964 +0 0.0704 +0 0.0676 +0 0.0735 +0 0.1480 +0 0.0826 +0 0.0580 +0 0.0746 +0 0.1760 +0 0.0552 +0 0.0801 +0 0.1850 +0 0.0636 +0 0.0581 +0 0.0794 +0 0.1028 +0 0.0563 +0 0.0447 +0 0.1219 +0 0.1104 +0 0.0917 +0 0.0550 +0 0.0656 +0 0.0384 +0 0.2112 +0 0.0901 +0 0.2832 +0 0.0581 +0 0.0475 +0 0.1276 +0 0.2410 +0 0.0596 +0 0.1252 +0 0.2108 +0 0.0802 +0 0.0755 +0 0.0855 +0 0.1401 +0 0.0983 +0 0.0478 +0 0.0802 +0 0.0681 +0 0.2047 +0 0.3233 +0 0.1198 +0 0.1552 +0 0.0926 +0 0.0602 +0 0.0429 +0 0.3344 +0 0.1961 +0 0.1407 +0 0.2063 +0 0.1166 +0 0.2926 +0 0.0948 +0 0.1344 +0 0.4675 +0 0.1210 +0 0.2647 +0 0.2030 +0 0.0944 +0 0.0999 +0 0.1048 +0 0.0343 +0 0.0627 +0 0.2843 +0 0.1212 +0 0.0666 +0 0.1631 +0 0.1579 +0 0.0878 +0 0.0972 +0 0.3011 +0 0.1010 +0 0.0706 +0 0.0714 +0 0.1136 +0 0.5805 +0 0.1269 +0 0.0937 +0 0.1208 +0 0.0841 +0 0.6875 +1 0.8655 +0 0.0631 +0 0.1554 +0 0.0483 +0 0.2945 +0 0.2113 +0 0.0769 +0 0.0711 +0 0.0398 +0 0.0839 +0 0.1699 +0 0.1005 +0 0.0706 +0 0.2990 +0 0.0714 +0 0.0418 +0 0.0721 +0 0.4916 +0 0.2464 +0 0.1625 +0 0.0338 +0 0.2478 +0 0.1468 +0 0.1702 +0 0.0715 +0 0.1052 +0 0.1400 +0 0.0500 +0 0.1091 +0 0.0355 +0 0.0588 +0 0.0437 +0 0.2132 +0 0.1691 +0 0.2275 +0 0.1184 +0 0.1595 +0 0.1780 +0 0.1161 +0 0.0993 +0 0.4783 +0 0.0572 +0 0.0404 +0 0.1078 +0 0.2023 +0 0.0569 +0 0.1444 +0 0.1358 +0 0.0782 +0 0.0624 +0 0.3341 +0 0.1872 +0 0.0718 +0 0.1895 +0 0.0843 +0 0.1698 +0 0.1268 +0 0.1461 +0 0.2028 +0 0.0673 +0 0.1155 +0 0.0931 +0 0.0949 +0 0.0782 +0 0.1467 +0 0.0535 +0 0.1217 +0 0.0638 +0 0.1800 +0 0.0503 +0 0.5341 +0 0.0810 +0 0.1298 +0 0.1081 +0 0.0797 +0 0.3013 +0 0.0740 +0 0.2528 +0 0.3466 +0 0.1420 +0 0.1256 +0 0.0985 +0 0.1253 +0 0.1200 +0 0.0955 +0 0.0722 +0 0.2709 +0 0.1036 +0 0.1596 +0 0.0447 +1 0.7614 +0 0.1083 +0 0.0534 +0 0.0652 +0 0.1004 +0 0.1521 +0 0.1488 +0 0.5119 +0 0.0586 +0 0.1241 +0 0.2850 +0 0.0636 +0 0.0730 +0 0.0651 +0 0.0530 +0 0.0932 +0 0.0927 +0 0.4769 +0 0.0478 +0 0.1097 +0 0.1133 +0 0.0926 +0 0.0474 +0 0.1546 +0 0.1627 +0 0.0786 +0 0.1932 +0 0.0705 +0 0.1699 +0 0.3549 +0 0.0771 +0 0.1108 +0 0.3228 +0 0.0426 +0 0.0794 +0 0.1506 +0 0.1905 +0 0.1096 +1 0.8565 +0 0.0754 +0 0.1807 +0 0.1293 +0 0.1634 +0 0.1081 +0 0.0443 +0 0.2562 +0 0.0943 +0 0.1631 +0 0.0842 +0 0.1673 +0 0.1871 +0 0.1913 +0 0.1440 +0 0.0372 +0 0.0478 +0 0.0823 +0 0.1080 +0 0.1454 +0 0.2140 +0 0.1099 +0 0.0985 +0 0.6644 +0 0.0444 +0 0.1721 +0 0.1466 +0 0.1805 +0 0.1212 +0 0.0816 +0 0.2562 +0 0.0739 +0 0.0717 +0 0.0864 +0 0.1155 +0 0.0666 +0 0.0384 +0 0.0793 +0 0.0799 +0 0.2689 +0 0.0932 +0 0.1480 +0 0.1535 +0 0.0761 +0 0.0795 +0 0.0617 +0 0.0571 +0 0.2625 +0 0.0378 +0 0.1044 +0 0.5001 +0 0.0832 +0 0.0508 +0 0.0740 +0 0.0576 +0 0.2293 +0 0.0802 +0 0.0643 +0 0.0799 +0 0.1639 +0 0.2451 +0 0.2186 +0 0.1089 +0 0.1131 +0 0.1041 +0 0.0775 +0 0.0817 +0 0.1297 +0 0.4184 +0 0.0924 +0 0.1188 +0 0.0807 +0 0.5444 +0 0.0972 +0 0.1611 +0 0.1017 +0 0.1502 +0 0.1090 +0 0.1028 +0 0.1248 +0 0.0687 +0 0.1476 +0 0.0647 +0 0.0690 +0 0.1849 +0 0.0492 +0 0.1157 +0 0.1319 +0 0.1206 +0 0.0614 +0 0.6292 +0 0.0781 +0 0.2898 +0 0.0564 +0 0.1257 +0 0.0611 +0 0.1006 +0 0.2548 +0 0.1389 +0 0.2665 +0 0.0472 +0 0.0938 +0 0.0482 +0 0.1248 +0 0.1235 +0 0.0940 +0 0.0573 +1 0.8174 +0 0.0739 +0 0.1457 +0 0.0635 +0 0.0479 +0 0.1856 +0 0.0513 +0 0.2552 +0 0.1531 +0 0.0602 +0 0.0669 +0 0.1623 +0 0.1325 +0 0.2782 +0 0.0748 +0 0.0647 +0 0.0738 +0 0.0695 +0 0.2630 +0 0.3699 +0 0.1173 +0 0.2116 +0 0.0992 +0 0.2460 +0 0.0737 +0 0.0560 +0 0.1780 +0 0.1811 +0 0.1228 +0 0.0890 +0 0.1232 +0 0.0828 +0 0.1986 +0 0.0460 +0 0.0673 +0 0.0511 +0 0.0941 +0 0.1895 +0 0.0633 +0 0.0833 +0 0.1345 +0 0.1790 +0 0.0593 +0 0.1199 +0 0.1168 +0 0.3443 +0 0.0433 +0 0.0632 +0 0.2615 +0 0.0367 +0 0.1098 +0 0.0718 +0 0.1227 +0 0.0909 +0 0.2324 +0 0.2084 +0 0.0855 +0 0.3481 +0 0.1465 +0 0.0686 +0 0.1078 +0 0.0887 +0 0.0552 +0 0.1076 +0 0.2529 +0 0.0546 +0 0.0509 +0 0.2458 +0 0.1320 +0 0.0444 +0 0.1065 +0 0.1102 +0 0.0348 +0 0.6899 +0 0.0327 +0 0.0539 +0 0.2340 +0 0.1249 +0 0.2233 +0 0.1704 +0 0.2014 +0 0.2236 +0 0.1163 +0 0.3980 +0 0.1165 +0 0.1529 +0 0.0550 +0 0.1181 +0 0.0458 +0 0.1382 +0 0.1788 +0 0.0727 +0 0.0769 +0 0.0861 +0 0.0644 +0 0.0694 +0 0.0956 +0 0.0583 +0 0.0686 +0 0.0397 +0 0.2260 +0 0.1708 +0 0.0537 +0 0.0450 +0 0.1683 +0 0.1160 +0 0.0894 +0 0.1111 +0 0.2186 +0 0.1213 +0 0.2227 +0 0.0869 +0 0.0985 +0 0.2950 +0 0.0532 +0 0.1228 +0 0.1090 +0 0.0536 +0 0.0915 +0 0.1386 +0 0.2067 +0 0.4075 +0 0.0398 +0 0.0746 +0 0.1041 +0 0.2421 +0 0.1792 +0 0.0468 +0 0.0975 +0 0.0906 +0 0.1098 +0 0.0783 +0 0.0668 +0 0.0817 +0 0.2612 +0 0.1285 +0 0.1492 +0 0.1363 +0 0.0547 +0 0.6495 +0 0.2103 +0 0.0814 +0 0.0461 +0 0.0703 +1 0.8479 +0 0.0713 +0 0.0608 +0 0.0979 +0 0.0311 +0 0.0603 +0 0.1100 +0 0.0675 +0 0.1440 +0 0.0567 +0 0.1542 +0 0.1070 +0 0.0796 +0 0.1014 +0 0.1701 +0 0.0730 +0 0.0907 +0 0.1236 +0 0.0827 +0 0.1237 +0 0.1032 +0 0.0475 +0 0.1416 +0 0.0900 +0 0.0389 +0 0.1851 +0 0.0570 +0 0.2474 +0 0.1139 +0 0.1279 +0 0.0781 +0 0.2030 +0 0.0561 +0 0.1501 +0 0.1125 +0 0.2203 +0 0.2571 +0 0.6550 +0 0.1283 +0 0.1053 +0 0.6882 +0 0.0570 +0 0.0430 +0 0.0991 +0 0.0934 +0 0.1440 +0 0.0476 +0 0.2691 +0 0.0719 +0 0.1182 +0 0.1067 +0 0.7283 +0 0.0848 +0 0.0661 +0 0.0704 +0 0.1402 +0 0.0677 +0 0.0591 +0 0.0936 +0 0.1390 +0 0.2468 +0 0.1898 +0 0.1029 +0 0.1118 +0 0.1272 +0 0.0757 +0 0.1974 +0 0.1133 +0 0.1218 +0 0.0941 +0 0.1253 +0 0.1333 +0 0.0417 +0 0.1271 +0 0.0735 +0 0.1398 +0 0.0605 +1 0.8133 +0 0.0677 +0 0.0715 +0 0.0760 +0 0.0876 +0 0.1124 +0 0.3560 +0 0.0554 +0 0.0535 +0 0.1256 +0 0.0998 +0 0.0632 +0 0.0760 +0 0.0661 +0 0.0621 +0 0.5318 +0 0.1719 +0 0.0751 +0 0.1742 +0 0.4049 +0 0.0860 +0 0.0606 +0 0.0728 +0 0.1755 +0 0.1403 +0 0.1835 +0 0.0747 +0 0.0402 +0 0.1028 +0 0.0934 +0 0.0806 +0 0.2030 +0 0.0684 +0 0.1751 +0 0.0853 +0 0.0692 +0 0.0826 +0 0.3272 +0 0.2328 +0 0.6447 +0 0.1340 +0 0.1663 +0 0.0850 +0 0.4845 +0 0.0360 +0 0.1409 +0 0.2148 +0 0.1718 +0 0.6702 +0 0.1995 +0 0.5222 +0 0.1211 +0 0.0621 +0 0.1105 +0 0.3290 +0 0.1601 +0 0.0919 +0 0.1596 +0 0.0720 +0 0.0331 +0 0.0587 +0 0.0755 +0 0.0778 +0 0.0879 +0 0.1226 +0 0.0683 +0 0.1149 +0 0.0494 +0 0.1573 +0 0.1297 +0 0.0943 +0 0.0725 +0 0.2388 +0 0.0984 +0 0.1701 +0 0.0628 +0 0.0459 +0 0.1383 +0 0.1800 +0 0.1493 +0 0.6057 +0 0.0785 +0 0.0941 +0 0.0784 +0 0.1105 +0 0.0749 +0 0.1629 +0 0.4898 +0 0.0975 +0 0.0381 +0 0.0711 +0 0.4041 +0 0.1397 +0 0.0734 +0 0.0971 +0 0.0621 +0 0.3450 +0 0.0989 +0 0.1727 +0 0.7386 +0 0.3068 +0 0.0835 +0 0.1046 +0 0.5594 +0 0.0841 +1 0.7668 +0 0.0273 +0 0.1481 +0 0.6727 +0 0.1298 +0 0.2253 +0 0.2598 +0 0.1448 +0 0.0988 +0 0.1328 +0 0.0663 +0 0.2064 +0 0.0965 +0 0.1414 +0 0.0601 +0 0.0840 +0 0.1222 +0 0.1055 +0 0.1062 +0 0.1832 +0 0.1001 +0 0.7394 +0 0.2909 +0 0.0852 +0 0.1182 +0 0.1417 +0 0.0668 +0 0.2813 +0 0.1229 +0 0.5091 +0 0.0806 +0 0.1094 +0 0.0495 +0 0.1710 +0 0.0481 +0 0.0438 +0 0.0516 +0 0.0652 +0 0.0393 +0 0.1124 +0 0.0877 +0 0.0538 +0 0.0983 +0 0.0860 +0 0.0517 +0 0.1717 +0 0.1317 +0 0.1148 +0 0.1262 +0 0.2246 +0 0.4620 +0 0.0996 +0 0.1584 +0 0.3387 +0 0.0609 +0 0.2442 +0 0.3486 +0 0.2629 +0 0.1564 +0 0.0969 +0 0.0708 +0 0.0357 +0 0.0837 +0 0.0786 +0 0.2663 +0 0.0856 +0 0.2090 +0 0.0780 +0 0.2747 +0 0.1866 +0 0.1288 +0 0.0949 +0 0.1170 +1 0.9020 +0 0.0530 +0 0.2219 +0 0.1380 +0 0.2754 +0 0.0907 +0 0.0872 +0 0.1358 +0 0.1004 +0 0.4931 +0 0.0855 +0 0.1737 +0 0.1778 +0 0.1472 +0 0.0618 +0 0.2279 +0 0.0797 +0 0.1119 +0 0.0843 +0 0.1153 +0 0.0580 +0 0.1662 +0 0.0342 +0 0.2632 +0 0.0543 +0 0.1420 +0 0.0707 +0 0.0977 +0 0.1315 +0 0.1447 +0 0.0897 +0 0.1123 +0 0.1590 +0 0.0774 +0 0.0422 +0 0.1023 +0 0.1021 +0 0.0549 +0 0.1235 +1 0.7554 +0 0.3398 +0 0.0954 +0 0.0541 +0 0.1740 +0 0.1243 +0 0.1635 +0 0.0434 +0 0.0913 +0 0.1247 +0 0.1180 +0 0.1354 +0 0.2020 +0 0.0519 +0 0.0864 +0 0.1147 +0 0.1045 +0 0.1037 +0 0.1735 +0 0.1036 +0 0.0598 +0 0.0416 +0 0.0798 +0 0.1428 +0 0.1835 +0 0.1189 +0 0.2128 +0 0.2929 +0 0.5518 +0 0.0754 +0 0.0845 +0 0.1174 +0 0.2219 +0 0.1365 +0 0.1193 +0 0.0421 +0 0.0515 +0 0.2126 +0 0.0709 +0 0.1229 +0 0.0830 +0 0.1441 +0 0.1403 +0 0.0838 +0 0.0756 +0 0.1859 +1 0.7820 +0 0.0904 +0 0.4247 +0 0.1014 +0 0.0544 +0 0.0929 +0 0.1250 +0 0.0695 +0 0.1205 +0 0.1889 +0 0.0485 +0 0.1246 +0 0.4873 +0 0.3435 +0 0.0735 +0 0.0568 +0 0.0790 +0 0.3001 +0 0.1085 +0 0.2047 +0 0.0980 +0 0.1337 +0 0.0736 +0 0.0566 +0 0.0747 +0 0.0729 +0 0.1310 +0 0.1250 +0 0.0655 +0 0.1964 +0 0.0685 +0 0.0851 +0 0.2574 +0 0.0953 +0 0.1263 +1 0.8805 +0 0.1858 +0 0.3155 +0 0.0933 +0 0.0846 +0 0.0786 +0 0.0419 +0 0.0629 +0 0.0598 +0 0.0525 +0 0.0818 +0 0.0600 +0 0.0730 +0 0.2611 +0 0.1366 +0 0.0726 +0 0.0991 +0 0.2786 +0 0.2545 +0 0.0875 +0 0.0859 +0 0.1230 +0 0.1856 +0 0.0993 +0 0.1037 +0 0.0853 +0 0.1291 +0 0.1646 +0 0.1330 +0 0.0355 +0 0.1152 +0 0.7201 +0 0.2815 +0 0.1607 +0 0.4068 +0 0.2753 +0 0.0698 +0 0.1354 +0 0.1814 +0 0.1656 +0 0.1571 +0 0.0732 +0 0.2289 +0 0.1049 +0 0.0861 +0 0.0474 +0 0.1151 +0 0.0647 +0 0.1314 +0 0.1240 +0 0.0427 +0 0.0765 +0 0.0965 +0 0.0451 +0 0.0498 +0 0.0462 +0 0.6796 +0 0.2275 +0 0.6376 +0 0.1849 +0 0.1293 +0 0.0835 +0 0.2409 +0 0.1291 +0 0.0297 +0 0.1379 +0 0.1614 +0 0.1019 +0 0.1374 +0 0.1035 +0 0.0618 +0 0.1319 +0 0.0551 +0 0.0486 +0 0.0486 +0 0.1629 +0 0.1338 +0 0.0908 +0 0.1710 +0 0.1405 +0 0.1257 +0 0.1413 +0 0.0910 +0 0.0712 +0 0.1963 +0 0.0401 +0 0.2559 +0 0.0746 +0 0.0641 +0 0.1556 +0 0.0967 +0 0.1897 +0 0.1022 +0 0.0810 +0 0.1494 +0 0.1002 +0 0.2283 +0 0.0738 +0 0.0649 +0 0.0414 +0 0.1564 +0 0.1104 +0 0.2054 +0 0.1088 +0 0.0630 +0 0.0907 +0 0.1726 +0 0.0450 +0 0.0304 +0 0.2188 +0 0.1458 +0 0.0459 +0 0.2053 +0 0.1922 +0 0.0872 +0 0.0811 +0 0.0841 +0 0.0889 +0 0.1374 +0 0.0947 +0 0.0956 +0 0.1031 +0 0.7086 +0 0.6255 +0 0.0448 +0 0.0739 +0 0.1901 +0 0.3016 +0 0.5281 +0 0.1136 +1 0.8735 +0 0.0875 +0 0.1223 +0 0.0841 +0 0.3668 +0 0.0693 +0 0.0915 +0 0.1038 +0 0.0750 +0 0.0296 +0 0.1368 +0 0.0821 +0 0.3958 +0 0.0958 +0 0.0760 +0 0.1231 +0 0.1146 +0 0.0694 +0 0.4031 +0 0.5054 +0 0.1134 +0 0.0849 +0 0.0777 +0 0.2154 +0 0.0846 +0 0.0596 +0 0.1231 +0 0.1545 +0 0.0593 +0 0.2144 +0 0.1013 +0 0.0924 +0 0.2071 +0 0.0872 +0 0.1677 +0 0.0596 +0 0.0538 +0 0.1413 +0 0.0421 +0 0.1262 +0 0.0324 +0 0.1071 +0 0.0795 +0 0.1629 +0 0.0449 +0 0.0790 +0 0.0993 +0 0.0935 +0 0.0514 +0 0.6841 +0 0.2873 +0 0.1442 +0 0.1047 +0 0.0728 +0 0.2623 +0 0.0627 +0 0.0431 +0 0.0594 +0 0.0458 +0 0.0783 +0 0.0887 +0 0.0608 +0 0.0878 +0 0.1107 +0 0.0535 +0 0.0853 +0 0.3409 +0 0.0800 +0 0.0798 +0 0.0622 +0 0.1648 +0 0.0578 +0 0.1980 +0 0.6860 +0 0.0854 +0 0.0400 +0 0.1336 +0 0.0445 +0 0.1885 +0 0.1493 +0 0.0414 +0 0.1873 +0 0.0575 +0 0.0801 +0 0.0275 +0 0.0362 +0 0.1433 +0 0.0557 +0 0.1301 +0 0.0785 +0 0.7338 +0 0.0688 +0 0.0680 +0 0.0627 +1 0.8287 +0 0.0630 +0 0.0658 +0 0.5966 +0 0.0876 +0 0.1161 +0 0.0863 +0 0.1391 +0 0.1617 +0 0.1009 +0 0.1348 +0 0.1574 +0 0.1153 +0 0.1204 +0 0.1692 +0 0.1392 +0 0.4282 +0 0.1281 +0 0.3153 +0 0.1508 +0 0.1458 +0 0.0986 +0 0.5206 +0 0.1335 +0 0.0792 +0 0.1678 +0 0.0392 +0 0.1147 +0 0.1342 +0 0.0548 +0 0.1023 +0 0.7290 +0 0.0696 +0 0.0493 +0 0.1091 +0 0.1512 +0 0.0886 +0 0.2639 +0 0.1737 +0 0.1802 +0 0.0752 +0 0.2118 +0 0.2675 +0 0.1173 +0 0.1555 +0 0.1814 +0 0.1601 +0 0.0705 +0 0.0502 +0 0.1994 +0 0.1172 +0 0.0740 +0 0.5450 +0 0.1762 +0 0.1109 +0 0.0977 +0 0.0634 +0 0.0869 +0 0.2419 +0 0.3092 +0 0.1771 +0 0.0590 +0 0.1449 +0 0.0396 +0 0.0582 +0 0.1353 +0 0.0857 +0 0.0887 +0 0.1396 +0 0.1652 +0 0.0323 +0 0.0961 +0 0.0742 +0 0.0993 +0 0.1299 +0 0.0524 +0 0.0366 +0 0.1042 +0 0.0514 +0 0.1468 +0 0.1051 +0 0.0831 +0 0.1738 +0 0.0874 +0 0.0847 +0 0.0396 +0 0.1208 +0 0.2372 +0 0.0776 +0 0.1786 +0 0.0853 +0 0.3220 +0 0.0677 +0 0.7262 +0 0.1570 +0 0.1583 +0 0.1263 +0 0.1201 +0 0.0560 +0 0.2327 +0 0.1214 +0 0.3194 +0 0.0565 +0 0.0690 +0 0.2500 +0 0.0611 +0 0.0496 +0 0.7429 +0 0.1140 +0 0.2836 +0 0.1597 +0 0.1343 +0 0.1096 +0 0.0692 +0 0.0589 +0 0.0617 +0 0.1784 +0 0.1013 +0 0.1765 +0 0.0618 +0 0.2377 +0 0.0928 +1 0.8223 +0 0.5220 +0 0.1801 +0 0.2589 +0 0.2727 +0 0.1071 +0 0.1334 +0 0.0928 +0 0.0806 +0 0.2458 +0 0.0889 +0 0.0717 +0 0.3137 +1 0.4336 +0 0.2714 +0 0.0355 +0 0.0574 +0 0.1011 +1 0.7902 +0 0.6042 +0 0.0801 +0 0.0722 +0 0.0356 +0 0.0637 +0 0.3209 +0 0.0688 +0 0.2350 +0 0.0870 +0 0.0674 +0 0.0751 +0 0.6016 +0 0.0723 +0 0.0629 +0 0.1029 +0 0.0809 +0 0.2726 +0 0.1777 +0 0.0549 +0 0.0815 +0 0.0660 +0 0.0794 +0 0.0594 +0 0.0304 +0 0.0741 +0 0.1432 +0 0.4298 +0 0.1333 +0 0.1086 +0 0.5022 +0 0.0664 +0 0.0669 +0 0.4456 +0 0.1008 +0 0.0451 +0 0.0406 +0 0.1959 +0 0.1079 +0 0.1474 +0 0.0797 +0 0.1648 +0 0.1520 +0 0.2103 +0 0.1457 +0 0.0993 +0 0.1385 +0 0.0752 +0 0.0725 +0 0.3703 +0 0.2937 +0 0.1100 +0 0.0532 +0 0.1319 +0 0.0896 +0 0.0533 +0 0.0638 +0 0.0895 +0 0.0763 +0 0.0542 +0 0.0490 +0 0.2458 +0 0.0619 +0 0.0604 +0 0.0781 +0 0.0671 +0 0.0853 +0 0.1728 +0 0.1075 +0 0.0983 +0 0.0890 +0 0.0463 +0 0.4001 +0 0.1096 +0 0.3449 +0 0.1303 +0 0.1273 +0 0.2745 +0 0.0716 +0 0.0693 +0 0.0688 +0 0.0720 +0 0.1646 +0 0.3071 +0 0.1439 +0 0.0995 +0 0.0787 +0 0.0523 +0 0.2215 +0 0.1355 +0 0.0453 +0 0.1990 +0 0.3994 +0 0.0526 +0 0.1615 +0 0.0421 +0 0.0762 +0 0.0813 +0 0.0511 +0 0.1493 +0 0.4063 +0 0.1761 +0 0.0956 +0 0.1495 +0 0.0563 +0 0.0867 +0 0.0774 +0 0.3527 +0 0.2743 +0 0.1513 +0 0.2446 +0 0.0499 +0 0.2134 +0 0.0594 +0 0.0552 +0 0.0943 +0 0.0479 +0 0.0491 +0 0.1216 +0 0.1120 +0 0.1497 +0 0.0703 +0 0.0530 +0 0.0729 +0 0.1335 +0 0.1165 +0 0.0403 +0 0.0717 +0 0.3074 +0 0.1097 +0 0.1503 +0 0.1127 +0 0.1743 +0 0.1094 +0 0.0642 +0 0.3906 +0 0.0724 +0 0.1675 +0 0.0762 +0 0.0753 +0 0.2354 +0 0.0439 +0 0.2354 +0 0.1229 +0 0.1307 +1 0.7583 +0 0.2505 +0 0.1130 +0 0.6442 +1 0.7881 +0 0.1080 +0 0.1526 +0 0.1129 +0 0.1042 +0 0.1134 +0 0.2385 +0 0.0931 +0 0.0567 +0 0.1064 +0 0.0764 +0 0.0990 +0 0.1144 +0 0.1734 +0 0.0938 +0 0.0954 +0 0.2356 +0 0.0953 +0 0.7338 +0 0.2230 +0 0.1191 +0 0.1003 +0 0.0391 +0 0.0858 +0 0.1031 +0 0.2270 +0 0.0940 +0 0.0853 +0 0.1253 +0 0.2744 +0 0.2011 +0 0.1495 +0 0.2439 +0 0.1401 +0 0.2313 +0 0.0640 +0 0.0700 +0 0.0792 +0 0.1046 +0 0.0830 +0 0.0848 +0 0.0897 +0 0.1198 +0 0.7438 +0 0.2869 +0 0.1007 +0 0.0462 +0 0.1499 +0 0.1478 +0 0.0726 +0 0.0337 +0 0.0636 +0 0.1149 +0 0.3509 +0 0.2011 +0 0.1318 +0 0.0779 +0 0.0324 +0 0.1146 +0 0.0708 +0 0.3046 +0 0.2020 +0 0.3812 +0 0.1936 +0 0.2689 +0 0.1225 +0 0.0530 +0 0.0497 +0 0.0380 +0 0.0962 +0 0.0478 +0 0.0820 +0 0.0904 +0 0.1675 +0 0.1628 +0 0.1448 +0 0.0593 +0 0.0748 +0 0.0399 +0 0.1948 +0 0.0987 +0 0.1246 +0 0.0884 +0 0.1745 +0 0.1458 +0 0.1168 +0 0.0597 +0 0.6188 +0 0.1666 +0 0.0631 +0 0.0745 +0 0.0548 +0 0.1236 +0 0.0509 +0 0.0710 +0 0.1316 +0 0.1465 +0 0.0685 +0 0.3740 +0 0.1323 +0 0.1466 +0 0.1101 +0 0.0765 +0 0.0395 +0 0.0848 +0 0.1375 +0 0.0340 +0 0.0888 +0 0.2238 +0 0.0805 +0 0.1024 +1 0.7589 +0 0.2713 +0 0.1817 +0 0.2470 +0 0.1015 +0 0.1471 +0 0.0793 +0 0.0767 +0 0.1496 +0 0.0799 +0 0.1294 +0 0.1253 +0 0.0869 +0 0.0635 +0 0.0601 +0 0.0538 +0 0.0848 +0 0.0859 +0 0.2194 +0 0.1335 +0 0.0535 +0 0.0845 +0 0.0965 +0 0.0968 +0 0.1108 +0 0.1898 +0 0.1245 +0 0.1186 +0 0.2142 +0 0.3053 +0 0.1122 +0 0.1695 +0 0.5918 +0 0.0512 +0 0.0976 +0 0.0917 +0 0.0937 +0 0.6110 +0 0.2275 +0 0.0479 +0 0.6238 +0 0.0597 +0 0.1681 +0 0.1059 +0 0.1234 +0 0.0647 +0 0.2495 +0 0.0882 +1 0.7858 +0 0.5179 +0 0.0776 +0 0.1673 +0 0.0954 +0 0.1261 +0 0.0764 +0 0.1780 +0 0.0682 +0 0.0721 +0 0.0616 +0 0.3439 +0 0.0393 +0 0.1767 +0 0.1356 +0 0.4352 +0 0.0822 +0 0.1034 +0 0.0764 +0 0.1431 +0 0.0811 +0 0.2170 +0 0.1117 +0 0.1849 +0 0.0969 +0 0.1687 +0 0.0810 +0 0.0582 +0 0.0764 +0 0.0717 +0 0.1669 +0 0.1999 +0 0.2781 +0 0.0381 +0 0.1537 +0 0.1058 +0 0.0709 +0 0.1433 +0 0.0579 +0 0.0421 +0 0.1602 +0 0.1662 +0 0.1128 +0 0.1476 +0 0.1074 +0 0.0599 +0 0.1065 +0 0.0366 +0 0.1281 +0 0.1794 +0 0.0871 +0 0.2085 +0 0.2088 +0 0.0989 +0 0.1635 +0 0.0396 +0 0.1652 +0 0.0975 +0 0.0885 +0 0.2192 +0 0.0738 +0 0.0423 +0 0.1021 +0 0.0992 +0 0.1447 +0 0.1255 +0 0.2128 +0 0.3699 +0 0.1016 +0 0.0889 +0 0.1013 +0 0.1029 +0 0.1187 +0 0.3342 +0 0.1281 +0 0.0818 +0 0.1984 +0 0.1766 +0 0.0836 +0 0.0638 +0 0.1847 +0 0.1960 +0 0.5252 +0 0.1681 +0 0.0654 +0 0.1812 +0 0.1580 +0 0.0891 +0 0.1617 +0 0.1216 +0 0.3150 +0 0.1165 +0 0.2040 +0 0.0750 +0 0.1187 +0 0.1242 +0 0.2017 +0 0.0469 +1 0.8199 +0 0.2069 +0 0.0635 +0 0.0661 +0 0.4170 +0 0.1254 +0 0.1631 +0 0.0810 +0 0.1342 +0 0.0948 +0 0.1001 +0 0.0680 +0 0.1310 +0 0.0305 +0 0.0987 +0 0.0812 +0 0.0993 +0 0.0494 +0 0.0735 +0 0.0681 +0 0.0383 +0 0.2456 +0 0.0476 +0 0.2512 +0 0.2048 +0 0.0744 +0 0.1753 +0 0.1386 +0 0.0946 +0 0.0569 +0 0.0609 +0 0.2277 +0 0.1013 +0 0.0929 +0 0.0754 +0 0.1180 +0 0.0677 +0 0.0896 +0 0.1221 +0 0.0518 +0 0.1256 +0 0.3109 +1 0.7991 +0 0.0567 +0 0.0550 +0 0.2108 +0 0.2429 +0 0.0301 +0 0.1051 +0 0.0587 +0 0.1053 +0 0.0971 +0 0.0675 +0 0.0619 +0 0.3998 +0 0.1244 +0 0.1116 +0 0.0685 +0 0.3773 +0 0.0464 +0 0.1232 +0 0.1099 +0 0.1679 +0 0.1592 +0 0.1469 +0 0.0940 +0 0.1699 +0 0.1802 +0 0.0833 +1 0.8099 +0 0.7373 +0 0.0804 +0 0.0791 +0 0.0812 +0 0.2198 +0 0.0854 +0 0.5160 +0 0.1421 +0 0.1495 +0 0.4148 +0 0.6135 +0 0.0936 +0 0.3253 +0 0.2057 +0 0.1596 +0 0.0329 +0 0.0932 +0 0.0712 +0 0.0908 +1 0.8369 +0 0.0842 +0 0.0618 +0 0.2176 +0 0.1230 +0 0.1242 +0 0.0605 +0 0.0675 +0 0.2195 +0 0.1094 +0 0.0970 +0 0.1432 +0 0.0511 +0 0.1294 +0 0.2829 +0 0.0936 +0 0.3623 +0 0.0847 +0 0.1134 +0 0.0712 +0 0.3229 +0 0.0725 +0 0.0837 +0 0.0912 +0 0.1867 +0 0.0696 +0 0.0688 +0 0.5041 +0 0.1312 +0 0.0871 +0 0.1025 +0 0.0464 +0 0.0726 +0 0.0527 +0 0.0882 +1 0.8555 +0 0.0452 +0 0.1974 +0 0.3654 +0 0.0896 +0 0.2132 +0 0.0840 +0 0.0715 +0 0.0668 +0 0.2367 +0 0.0587 +0 0.0636 +0 0.3234 +0 0.2816 +0 0.0892 +0 0.7033 +0 0.0630 +0 0.1481 +0 0.3183 +0 0.0987 +0 0.0875 +1 0.8510 +0 0.0651 +0 0.0726 +0 0.0529 +0 0.0805 +0 0.1408 +0 0.0989 +0 0.1415 +1 0.7747 +1 0.8481 +0 0.1684 +0 0.1547 +0 0.0781 +0 0.1547 +0 0.1185 +0 0.0590 +0 0.0756 +0 0.1499 +0 0.0904 +0 0.0852 +0 0.0353 +0 0.1450 +0 0.1054 +0 0.0744 +0 0.2733 +0 0.1060 +0 0.0455 +0 0.1155 +0 0.1815 +0 0.0690 +0 0.0479 +0 0.0669 +0 0.0947 +0 0.1318 +0 0.0777 +0 0.2511 +0 0.0641 +0 0.0941 +0 0.0789 +0 0.6009 +0 0.0889 +0 0.1106 +0 0.1316 +0 0.1015 +0 0.0488 +0 0.1116 +0 0.0724 +0 0.1174 +0 0.0925 +0 0.1962 +0 0.0368 +0 0.1266 +0 0.2000 +0 0.0775 +0 0.0501 +0 0.1353 +0 0.1441 +1 0.7952 +0 0.0634 +0 0.1349 +0 0.1389 +0 0.0734 +0 0.0706 +0 0.2951 +0 0.1266 +0 0.1118 +0 0.1030 +1 0.8112 +0 0.0901 +0 0.0536 +0 0.1064 +0 0.0614 +0 0.1053 +0 0.1089 +0 0.1958 +0 0.1562 +0 0.1041 +0 0.0734 +0 0.0516 +0 0.1769 +0 0.1113 +0 0.1397 +0 0.0460 +0 0.1282 +1 0.7854 +0 0.1174 +0 0.0807 +0 0.1140 +0 0.1342 +0 0.0375 +0 0.0979 +0 0.0546 +0 0.1279 +0 0.0640 +0 0.1044 +0 0.1678 +0 0.0780 +0 0.1801 +0 0.0786 +0 0.2698 +0 0.2261 +0 0.1014 +0 0.0862 +0 0.1134 +0 0.1629 +0 0.1072 +0 0.7310 +0 0.0998 +0 0.0940 +0 0.1953 +0 0.0793 +0 0.4263 +0 0.0770 +0 0.3343 +1 0.7628 +0 0.1865 +0 0.0750 +0 0.7343 +0 0.0409 +0 0.1143 +0 0.0998 +0 0.1592 +0 0.3593 +0 0.0691 +0 0.1882 +0 0.7105 +0 0.0361 +0 0.1395 +0 0.1639 +0 0.1357 +0 0.0504 +0 0.0491 +0 0.0465 +0 0.0612 +0 0.2454 +0 0.0795 +0 0.0782 +0 0.1419 +0 0.0528 +0 0.1433 +0 0.0424 +0 0.1492 +0 0.0773 +0 0.1073 +0 0.0357 +0 0.0924 +0 0.0513 +0 0.1910 +0 0.0741 +0 0.3472 +0 0.0482 +0 0.0496 +0 0.0912 +0 0.1703 +0 0.0888 +0 0.2097 +0 0.1280 +0 0.1179 +0 0.0685 +0 0.0925 +0 0.0779 +0 0.0655 +0 0.1585 +0 0.1074 +0 0.6357 +0 0.0618 +0 0.4572 +0 0.1206 +0 0.4525 +0 0.1388 +0 0.0753 +0 0.1041 +0 0.0506 +0 0.1442 +0 0.1540 +0 0.0349 +0 0.3274 +0 0.0831 +0 0.0943 +0 0.0936 +0 0.1972 +0 0.1239 +0 0.1146 +0 0.3357 +0 0.0876 +0 0.0941 +0 0.0678 +0 0.0805 +0 0.0549 +0 0.5646 +0 0.2290 +0 0.1326 +0 0.1539 +0 0.1302 +0 0.0725 +0 0.0852 +0 0.1251 +0 0.2855 +0 0.0464 +0 0.0523 +0 0.2094 +0 0.0665 +0 0.2517 +0 0.0969 +0 0.1149 +0 0.1216 +0 0.1892 +0 0.4487 +0 0.0979 +0 0.3905 +0 0.1497 +0 0.0781 +0 0.1680 +0 0.0641 +0 0.1065 +0 0.1389 +0 0.1792 +1 0.7971 +0 0.1267 +0 0.0778 +0 0.2374 +0 0.1069 +0 0.0853 +0 0.0333 +0 0.0879 +0 0.0692 +0 0.4405 +0 0.0575 +0 0.0415 +0 0.0532 +0 0.1041 +0 0.0628 +0 0.0681 +0 0.0840 +0 0.1485 +0 0.0681 +0 0.1375 +0 0.0933 +0 0.2627 +0 0.1087 +0 0.1951 +0 0.0718 +0 0.1248 +0 0.2091 +0 0.1605 +0 0.0685 +0 0.0527 +1 0.8671 +0 0.1253 +0 0.0891 +0 0.0836 +0 0.1320 +0 0.0567 +0 0.0368 +0 0.2715 +0 0.1294 +0 0.1071 +0 0.1859 +0 0.1186 +0 0.0617 +0 0.1168 +0 0.1291 +0 0.1904 +0 0.0420 +0 0.0617 +0 0.1451 +0 0.1166 +0 0.0466 +0 0.0833 +0 0.1295 +0 0.0537 +0 0.2554 +0 0.0891 +0 0.1093 +0 0.0823 +0 0.0974 +0 0.1592 +0 0.1384 +0 0.2996 +0 0.0926 +0 0.4024 +0 0.0692 +0 0.0659 +1 0.8511 +0 0.1728 +0 0.2003 +0 0.0554 +0 0.1207 +0 0.1346 +0 0.1215 +0 0.0424 +0 0.2247 +0 0.1237 +0 0.1031 +0 0.0522 +0 0.1581 +0 0.0856 +0 0.0693 +0 0.0824 +0 0.1555 +0 0.1430 +0 0.1729 +0 0.0772 +0 0.0484 +0 0.1591 +0 0.0500 +0 0.0663 +0 0.0689 +0 0.1812 +0 0.3790 +0 0.1798 +0 0.0825 +0 0.0603 +0 0.0852 +0 0.0945 +0 0.0984 +0 0.1571 +0 0.1946 +0 0.0797 +0 0.0713 +0 0.1368 +0 0.0490 +0 0.1295 +0 0.1763 +0 0.3958 +0 0.0963 +0 0.1009 +0 0.0747 +0 0.0701 +0 0.0728 +0 0.1348 +0 0.6594 +0 0.0851 +0 0.3816 +0 0.0673 +0 0.1088 +0 0.0551 +0 0.0393 +0 0.1057 +0 0.1003 +0 0.0755 +0 0.4066 +0 0.0918 +0 0.1868 +0 0.0676 +0 0.0614 +0 0.0496 +0 0.0839 +0 0.0649 +0 0.1043 +0 0.1411 +0 0.0810 +0 0.1252 +0 0.1462 +0 0.0431 +0 0.0869 +0 0.0740 +0 0.1096 +0 0.1652 +0 0.2084 +0 0.0601 +0 0.2483 +0 0.0754 +0 0.1440 +0 0.0563 +0 0.2342 +0 0.0755 +0 0.0694 +0 0.0768 +0 0.0631 +0 0.1590 +0 0.6225 +0 0.0521 +0 0.0563 +0 0.0749 +0 0.0648 +0 0.0881 +0 0.0540 +1 0.8500 +0 0.1496 +0 0.3703 +0 0.1219 +0 0.1454 +0 0.0565 +0 0.0651 +0 0.0810 +0 0.0981 +1 0.8814 +0 0.5749 +0 0.1229 +0 0.0433 +0 0.0476 +0 0.2112 +0 0.1134 +0 0.5362 +0 0.4968 +0 0.0842 +0 0.2249 +0 0.1512 +0 0.0573 +0 0.1245 +0 0.2427 +0 0.0628 +0 0.3428 +0 0.1558 +0 0.1529 +0 0.2142 +0 0.0879 +0 0.1338 +0 0.1635 +0 0.0873 +0 0.0543 +0 0.2089 +0 0.5873 +0 0.2822 +0 0.0450 +0 0.1634 +0 0.1650 +0 0.0483 +0 0.1247 +0 0.0980 +0 0.0422 +0 0.0691 +0 0.3852 +0 0.2095 +0 0.1499 +0 0.3388 +0 0.0654 +0 0.0440 +0 0.0702 +0 0.0626 +0 0.0769 +0 0.0794 +0 0.1333 +0 0.1807 +0 0.0994 +0 0.1916 +0 0.2637 +0 0.0849 +0 0.0983 +0 0.1154 +1 0.7942 +0 0.0493 +0 0.1682 +0 0.2012 +0 0.1163 +0 0.2073 +0 0.2625 +0 0.1525 +0 0.1724 +0 0.3090 +0 0.0738 +0 0.2346 +0 0.1549 +0 0.0750 +0 0.1384 +0 0.1581 +0 0.0991 +0 0.1216 +0 0.0482 +0 0.0408 +0 0.1683 +0 0.2236 +0 0.0918 +0 0.1105 +0 0.1767 +0 0.1694 +0 0.0957 +0 0.0739 +0 0.1494 +0 0.0567 +0 0.1244 +0 0.2125 +0 0.0599 +0 0.1369 +0 0.1829 +0 0.1303 +0 0.0662 +0 0.1634 +0 0.1752 +0 0.0975 +0 0.0610 +0 0.0846 +0 0.1270 +0 0.0408 +0 0.0962 +0 0.2428 +0 0.1907 +0 0.0578 +0 0.1126 +0 0.1518 +0 0.2647 +0 0.1888 +0 0.0747 +0 0.3980 +0 0.1021 +0 0.1350 +0 0.0997 +0 0.1173 +0 0.0798 +0 0.1510 +0 0.1671 +0 0.2375 +0 0.0958 +0 0.1215 +0 0.1567 +0 0.1513 +0 0.0822 +0 0.1235 +0 0.0454 +0 0.0836 +0 0.1273 +0 0.1084 +0 0.1105 +0 0.0671 +0 0.1945 +1 0.8565 +0 0.0821 +0 0.1114 +0 0.0432 +0 0.0525 +0 0.4486 +0 0.0582 +0 0.1355 +0 0.0742 +0 0.0439 +0 0.1604 +1 0.7568 +0 0.0361 +0 0.0649 +0 0.0994 +0 0.1318 +0 0.1735 +0 0.7134 +0 0.1866 +0 0.4046 +0 0.1394 +0 0.1109 +0 0.5084 +0 0.0950 +0 0.1374 +0 0.1118 +0 0.4287 +0 0.0905 +0 0.0722 +0 0.0718 +0 0.0956 +1 0.7792 +0 0.1585 +0 0.1089 +0 0.2297 +0 0.0884 +0 0.1262 +0 0.0339 +0 0.1280 +0 0.0382 +0 0.0510 +0 0.0733 +0 0.5519 +0 0.1168 +0 0.0573 +0 0.0653 +1 0.8609 +0 0.0536 +0 0.1143 +0 0.0594 +0 0.1583 +0 0.1102 +0 0.0731 +0 0.0747 +0 0.1951 +1 0.7915 +0 0.1233 +0 0.1290 +0 0.2252 +0 0.1858 +0 0.1427 +0 0.1272 +0 0.0921 +0 0.0808 +0 0.1442 +0 0.1225 +0 0.0665 +0 0.0701 +1 0.7548 +0 0.0759 +0 0.1132 +0 0.0695 +0 0.0597 +0 0.1225 +0 0.1079 +0 0.3771 +0 0.0493 +0 0.1138 +0 0.1379 +0 0.0610 +0 0.1472 +0 0.1706 +0 0.0411 +0 0.3547 +0 0.0898 +0 0.1552 +0 0.0421 +0 0.0427 +0 0.0497 +0 0.1175 +0 0.1183 +0 0.0514 +0 0.1716 +0 0.0660 +0 0.0793 +0 0.0469 +0 0.0580 +0 0.2946 +0 0.0539 +0 0.7331 +0 0.1768 +0 0.0584 +0 0.0513 +0 0.0558 +0 0.0713 +0 0.2848 +0 0.1295 +0 0.0640 +0 0.0361 +0 0.1482 +0 0.1031 +0 0.0824 +0 0.2350 +0 0.0789 +0 0.1142 +0 0.0424 +0 0.0622 +0 0.5583 +0 0.0962 +0 0.6119 +0 0.0943 +0 0.0375 +0 0.0473 +0 0.1432 +0 0.2625 +1 0.7876 +0 0.1306 +0 0.1406 +0 0.1343 +0 0.1531 +0 0.0942 +0 0.3407 +0 0.1048 +0 0.1148 +0 0.1234 +0 0.0923 +0 0.2515 +0 0.1476 +0 0.0720 +0 0.0617 +0 0.0618 +0 0.1240 +0 0.0833 +0 0.0945 +0 0.1086 +0 0.0654 +0 0.1327 +0 0.0546 +0 0.2088 +0 0.1789 +0 0.1835 +0 0.1074 +0 0.1330 +0 0.1129 +0 0.1674 +0 0.1768 +0 0.6868 +0 0.1398 +0 0.0828 +0 0.1254 +1 0.7968 +0 0.2454 +0 0.1012 +0 0.7275 +0 0.7133 +0 0.2135 +0 0.1749 +0 0.1049 +0 0.2799 +0 0.2124 +0 0.1631 +0 0.2548 +0 0.0738 +0 0.0996 +0 0.0322 +0 0.1665 +0 0.1637 +0 0.0941 +0 0.0918 +0 0.0648 +0 0.0414 +0 0.2867 +0 0.0526 +0 0.0678 +0 0.0690 +0 0.1013 +0 0.0752 +0 0.2822 +0 0.0612 +0 0.0988 +0 0.2296 +0 0.6130 +0 0.1745 +0 0.0702 +0 0.1290 +0 0.1111 +0 0.1648 +0 0.1245 +0 0.0765 +1 0.7648 +0 0.2631 +0 0.1196 +0 0.0531 +0 0.1456 +0 0.0674 +0 0.0684 +0 0.0544 +0 0.1008 +0 0.1731 +0 0.0581 +0 0.0449 +0 0.0469 +0 0.0918 +0 0.0811 +0 0.1661 +1 0.8379 +0 0.0849 +0 0.5953 +0 0.0617 +0 0.0573 +0 0.0668 +0 0.0993 +0 0.0819 +0 0.2785 +0 0.2104 +0 0.0706 +0 0.0894 +0 0.1082 +0 0.3651 +0 0.1091 +0 0.3979 +0 0.0752 +1 0.8130 +0 0.1268 +0 0.2134 +0 0.1347 +0 0.7047 +0 0.0621 +0 0.1616 +0 0.0933 +0 0.0891 +0 0.1374 +0 0.0529 +0 0.1468 +0 0.0278 +0 0.0419 +0 0.0487 +0 0.1146 +0 0.1213 +0 0.0857 +0 0.2925 +0 0.0685 +0 0.2112 +0 0.1011 +0 0.0805 +0 0.0775 +0 0.0696 +0 0.1367 +0 0.0561 +0 0.1002 +0 0.1990 +0 0.0342 +0 0.0987 +0 0.3051 +0 0.1569 +0 0.0904 +0 0.1053 +0 0.4414 +0 0.0842 +0 0.1969 +0 0.2490 +0 0.3299 +0 0.2252 +0 0.0820 +0 0.3616 +0 0.0632 +0 0.1164 +0 0.0591 +0 0.2842 +0 0.0736 +0 0.2726 +0 0.0653 +0 0.6997 +0 0.0972 +0 0.0576 +0 0.0886 +0 0.2459 +0 0.0590 +0 0.1618 +0 0.1084 +0 0.0825 +0 0.0342 +0 0.0757 +0 0.1783 +0 0.1080 +0 0.0695 +0 0.0815 +0 0.0506 +0 0.1090 +0 0.1263 +0 0.1060 +0 0.0953 +0 0.0617 +0 0.0711 +0 0.0889 +0 0.3561 +0 0.0972 +0 0.1037 +0 0.0388 +0 0.1024 +0 0.0585 +0 0.1206 +0 0.0801 +0 0.0408 +0 0.1683 +0 0.0717 +0 0.5098 +0 0.1016 +0 0.0577 +0 0.1051 +0 0.2520 +0 0.1517 +0 0.0369 +0 0.1555 +0 0.4175 +0 0.0540 +0 0.2173 +0 0.1266 +0 0.0775 +0 0.1230 +0 0.5645 +0 0.0756 +0 0.0589 +0 0.4989 +0 0.1048 +0 0.0726 +0 0.0668 +0 0.0963 +0 0.1100 +0 0.1542 +0 0.0813 +0 0.1208 +0 0.1126 +0 0.0895 +0 0.0593 +0 0.1474 +0 0.0764 +0 0.0839 +0 0.1703 +0 0.0659 +0 0.1331 +0 0.1208 +0 0.0709 +0 0.0915 +0 0.0681 +0 0.1232 +0 0.7335 +0 0.1592 +0 0.1380 +0 0.0440 +0 0.0714 +0 0.0841 +0 0.0945 +0 0.0398 +0 0.0989 +0 0.1603 +0 0.0520 +0 0.1385 +0 0.0571 +0 0.1444 +0 0.1193 +0 0.0802 +0 0.0611 +0 0.1476 +0 0.0520 +0 0.0641 +0 0.0543 +0 0.0594 +0 0.1769 +0 0.1521 +0 0.1408 +0 0.0734 +0 0.1173 +0 0.1198 +0 0.1589 +0 0.0459 +0 0.5081 +0 0.0685 +0 0.2463 +0 0.1034 +0 0.3863 +0 0.0714 +0 0.1408 +0 0.0530 +0 0.0673 +0 0.0402 +0 0.6702 +0 0.1344 +0 0.0789 +0 0.0734 +0 0.1025 +0 0.0690 +0 0.1139 +0 0.1457 +0 0.0688 +0 0.1237 +0 0.1365 +0 0.0834 +0 0.2887 +0 0.1261 +0 0.0926 +0 0.7070 +0 0.1849 +0 0.0802 +0 0.1298 +0 0.0761 +0 0.2327 +0 0.1682 +0 0.1770 +0 0.0730 +0 0.2245 +0 0.0512 +0 0.1015 +0 0.0582 +0 0.1723 +0 0.0818 +0 0.4715 +0 0.1871 +0 0.1177 +0 0.0861 +0 0.1046 +0 0.1189 +0 0.3143 +0 0.7429 +0 0.2098 +0 0.0856 +0 0.7358 +0 0.0503 +0 0.0903 +0 0.1484 +0 0.1640 +0 0.2963 +0 0.1501 +1 0.7879 +0 0.0544 +0 0.0720 +0 0.0675 +0 0.1001 +0 0.2520 +0 0.0472 +0 0.1528 +0 0.0639 +0 0.1500 +0 0.1521 +0 0.1981 +0 0.1014 +0 0.0898 +0 0.1463 +0 0.1438 +0 0.1236 +0 0.1031 +0 0.1589 +0 0.1772 +0 0.2133 +0 0.2025 +0 0.3692 +0 0.1821 +0 0.1434 +0 0.1380 +0 0.1683 +0 0.0788 +0 0.1488 +0 0.0543 +0 0.1207 +0 0.1525 +0 0.1659 +0 0.1609 +0 0.1751 +0 0.0712 +0 0.1110 +0 0.1235 +0 0.1463 +0 0.0395 +0 0.4105 +0 0.2268 +0 0.0415 +0 0.1371 +0 0.2029 +0 0.1762 +0 0.0734 +0 0.0840 +0 0.1004 +0 0.1216 +0 0.0985 +0 0.4224 +0 0.0977 +0 0.1694 +0 0.1322 +0 0.0559 +0 0.1078 +0 0.2660 +0 0.1728 +0 0.0424 +0 0.1264 +0 0.0753 +0 0.1750 +0 0.0907 +0 0.2377 +0 0.2529 +0 0.1221 +0 0.1602 +0 0.1059 +0 0.0969 +0 0.1278 +0 0.1369 +0 0.0796 +0 0.1234 +0 0.1001 +0 0.1324 +0 0.0846 +0 0.1595 +0 0.1472 +0 0.1130 +0 0.1229 +0 0.0884 +0 0.0537 +0 0.0785 +0 0.1047 +0 0.0966 +0 0.0772 +0 0.0734 +0 0.1103 +0 0.1192 +0 0.7324 +0 0.0825 +0 0.0832 +0 0.1344 +0 0.0690 +0 0.1303 +0 0.0656 +0 0.3030 +0 0.0706 +0 0.0710 +0 0.2693 +0 0.0619 +0 0.1083 +0 0.1513 +0 0.1470 +0 0.6621 +0 0.2595 +0 0.0762 +0 0.0977 +0 0.2599 +0 0.0545 +0 0.0933 +0 0.2896 +0 0.1292 +0 0.1269 +0 0.1592 +0 0.2221 +0 0.1023 +0 0.1656 +0 0.1174 +0 0.1488 +0 0.5108 +0 0.0792 +0 0.2492 +0 0.1562 +0 0.1084 +0 0.0795 +0 0.2739 +0 0.0601 +0 0.2116 +0 0.1691 +0 0.1112 +0 0.0571 +0 0.0861 +0 0.7460 +0 0.0814 +0 0.1900 +0 0.1692 +0 0.0603 +0 0.1487 +0 0.0630 +0 0.0746 +0 0.2607 +0 0.1334 +0 0.0516 +0 0.1214 +0 0.0876 +0 0.1567 +0 0.1255 +0 0.0914 +0 0.0971 +0 0.0861 +0 0.0531 +0 0.2750 +0 0.0803 +0 0.2592 +0 0.0969 +0 0.3954 +0 0.1229 +0 0.1413 +0 0.0449 +0 0.1159 +0 0.0953 +0 0.2122 +0 0.3848 +0 0.0441 +0 0.0653 +0 0.1155 +0 0.0750 +0 0.0756 +0 0.1369 +0 0.0912 +0 0.0525 +0 0.1267 +0 0.1368 +0 0.0948 +0 0.1401 +0 0.0485 +0 0.1934 +0 0.0891 +0 0.0552 +0 0.1170 +0 0.0629 +0 0.1787 +0 0.0342 +0 0.0954 +0 0.0793 +0 0.0705 +0 0.0697 +0 0.1769 +0 0.0789 +0 0.2208 +0 0.1408 +0 0.1403 +0 0.0571 +0 0.0887 +0 0.1056 +0 0.0409 +0 0.1091 +0 0.0950 +0 0.1818 +0 0.0726 +0 0.0684 +0 0.0959 +0 0.0372 +0 0.0770 +0 0.0624 +0 0.0874 +0 0.1077 +0 0.1077 +0 0.1665 +0 0.0815 +0 0.0626 +0 0.0774 +0 0.1892 +0 0.7401 +0 0.6165 +0 0.1371 +0 0.1686 +0 0.0816 +0 0.2194 +0 0.1288 +0 0.3598 +0 0.5317 +0 0.1459 +0 0.0669 +0 0.1803 +0 0.2238 +0 0.0817 +0 0.1095 +0 0.6765 +0 0.0407 +0 0.0608 +0 0.0912 +0 0.1227 +0 0.0665 +0 0.1058 +0 0.0923 +0 0.0805 +0 0.0573 +0 0.3791 +0 0.1423 +0 0.0730 +0 0.1638 +0 0.2847 +0 0.0920 +0 0.3732 +0 0.2634 +0 0.1993 +0 0.1112 +0 0.1211 +0 0.0910 +0 0.0772 +0 0.0631 +0 0.1281 +0 0.2972 +0 0.3185 +0 0.3354 +0 0.1684 +0 0.1345 +0 0.1303 +0 0.1224 +0 0.4977 +0 0.1499 +0 0.0645 +0 0.0837 +0 0.3044 +0 0.0616 +0 0.0683 +0 0.1593 +0 0.0541 +0 0.0676 +0 0.0560 +0 0.5749 +0 0.2009 +0 0.0494 +1 0.7839 +0 0.1439 +0 0.0534 +0 0.1089 +0 0.0569 +0 0.0930 +0 0.1691 +0 0.1474 +0 0.0719 +0 0.1379 +0 0.1324 +0 0.1105 +0 0.0679 +0 0.2401 +0 0.1120 +0 0.1266 +0 0.0420 +0 0.7244 +0 0.0483 +0 0.1944 +0 0.0748 +0 0.0655 +0 0.0450 +0 0.0738 +0 0.0872 +0 0.2681 +0 0.1119 +0 0.2178 +0 0.1613 +0 0.0628 +0 0.1093 +0 0.1853 +0 0.0712 +1 0.8334 +0 0.1073 +0 0.1301 +0 0.0810 +0 0.0710 +0 0.1699 +0 0.2289 +0 0.2211 +0 0.3986 +0 0.0571 +0 0.2000 +0 0.4383 +0 0.0794 +1 0.8423 +0 0.4263 +0 0.1208 +0 0.0980 +0 0.1552 +0 0.2852 +0 0.0564 +0 0.0903 +0 0.4239 +0 0.0476 +0 0.0989 +0 0.0626 +0 0.4158 +0 0.0568 +0 0.1080 +0 0.0805 +0 0.0467 +0 0.0859 +0 0.1150 +0 0.1296 +0 0.1880 +0 0.2160 +0 0.0519 +0 0.1235 +0 0.3091 +0 0.1839 +0 0.2454 +0 0.1229 +1 0.7897 +0 0.0877 +0 0.1173 +0 0.0914 +0 0.1143 +0 0.1335 +0 0.1464 +0 0.0810 +0 0.0905 +0 0.0777 +0 0.1769 +0 0.1438 +0 0.1053 +0 0.1213 +0 0.0865 +0 0.1292 +0 0.1382 +0 0.0655 +0 0.0645 +0 0.1228 +0 0.0601 +0 0.0417 +0 0.1007 +0 0.0812 +0 0.0678 +0 0.2038 +0 0.0661 +0 0.4396 +0 0.0603 +0 0.1372 +0 0.3870 +0 0.1449 +0 0.0878 +0 0.0762 +0 0.1694 +0 0.3019 +0 0.2215 +0 0.2115 +0 0.0659 +0 0.0398 +0 0.1271 +1 0.7962 +0 0.1070 +0 0.0433 +0 0.0521 +0 0.0884 +0 0.0475 +0 0.0599 +0 0.0645 +0 0.0487 +0 0.1266 +0 0.1023 +0 0.0975 +0 0.3564 +0 0.0780 +0 0.2998 +0 0.0529 +0 0.0371 +0 0.1657 +0 0.5883 +0 0.0592 +0 0.1780 +0 0.1514 +0 0.2209 +0 0.0725 +0 0.0849 +0 0.3780 +0 0.0937 +0 0.1283 +0 0.1703 +0 0.1459 +0 0.0639 +0 0.0647 +0 0.2906 +0 0.1638 +0 0.0674 +0 0.2425 +0 0.2678 +0 0.1333 +0 0.1223 +0 0.2206 +0 0.0757 +0 0.1035 +0 0.0675 +0 0.0764 +0 0.3007 +0 0.1708 +0 0.2367 +0 0.0567 +0 0.2189 +0 0.0806 +0 0.0754 +0 0.1114 +0 0.0997 +0 0.0793 +0 0.2998 +0 0.1278 +0 0.0982 +0 0.0346 +0 0.0742 +0 0.2263 +0 0.1386 +0 0.1786 +0 0.0756 +1 0.7905 +0 0.2493 +0 0.0983 +0 0.3000 +0 0.0681 +0 0.1241 +0 0.1110 +0 0.0932 +0 0.1019 +0 0.0448 +0 0.1802 +0 0.1482 +0 0.0625 +0 0.0878 +0 0.1093 +0 0.1109 +0 0.1340 +0 0.1424 +0 0.0567 +0 0.0946 +0 0.7479 +0 0.0668 +0 0.2185 +0 0.0530 +0 0.2457 +0 0.0730 +0 0.0802 +0 0.0344 +0 0.0712 +0 0.1998 +0 0.2681 +0 0.0494 +0 0.2924 +0 0.0653 +0 0.0950 +0 0.0901 +0 0.5379 +0 0.1820 +0 0.1626 +0 0.2470 +0 0.3558 +0 0.0826 +0 0.1628 +0 0.5890 +0 0.1520 +0 0.0850 +0 0.1513 +0 0.2066 +0 0.1288 +0 0.0982 +0 0.2279 +0 0.0793 +0 0.1991 +0 0.1368 +0 0.0919 +0 0.1258 +0 0.3853 +0 0.1769 +0 0.0753 +0 0.2570 +0 0.1282 +0 0.0546 +0 0.1015 +0 0.0958 +0 0.1316 +0 0.0683 +0 0.2378 +0 0.0591 +0 0.0667 +0 0.0800 +0 0.0456 +0 0.0894 +0 0.1464 +0 0.1127 +0 0.0887 +0 0.0584 +0 0.1139 +1 0.8568 +0 0.1276 +0 0.0442 +0 0.3216 +0 0.1040 +0 0.2893 +0 0.0643 +0 0.0501 +0 0.1394 +0 0.1268 +0 0.1603 +0 0.3522 +0 0.1189 +0 0.0917 +0 0.0752 +0 0.1416 +0 0.0928 +0 0.1970 +0 0.2199 +0 0.0505 +0 0.0707 +0 0.3258 +0 0.3587 +0 0.5296 +0 0.0835 +0 0.2267 +0 0.1280 +0 0.2575 +0 0.1261 +0 0.1075 +0 0.0794 +0 0.0595 +0 0.0474 +0 0.0697 +0 0.1227 +0 0.1778 +0 0.0709 +0 0.0877 +0 0.1793 +0 0.1353 +0 0.0808 +0 0.0697 +0 0.2044 +0 0.1333 +0 0.1579 +0 0.0512 +0 0.0957 +0 0.0471 +0 0.0578 +0 0.0496 +0 0.0868 +0 0.2052 +0 0.1328 +0 0.1705 +0 0.2251 +0 0.1395 +0 0.0825 +0 0.1041 +0 0.0485 +0 0.1724 +0 0.1327 +0 0.0796 +0 0.1264 +0 0.1736 +0 0.1847 +0 0.2828 +0 0.1301 +0 0.0999 +0 0.1178 +0 0.3249 +0 0.0739 +0 0.0636 +0 0.0461 +0 0.0596 +0 0.1027 +0 0.1346 +0 0.0683 +0 0.0728 +0 0.1316 +0 0.0677 +0 0.0933 +0 0.1144 +0 0.0577 +0 0.3753 +0 0.0843 +0 0.1427 +0 0.0603 +0 0.0730 +0 0.0454 +0 0.1525 +0 0.0841 +0 0.1226 +0 0.1206 +0 0.1129 +0 0.1085 +0 0.1189 +0 0.1892 +0 0.2165 +0 0.0845 +0 0.1507 +0 0.1060 +0 0.0436 +0 0.0816 +1 0.7567 +0 0.0627 +0 0.1080 +0 0.1037 +0 0.1378 +0 0.2003 +0 0.1390 +0 0.1723 +0 0.0739 +0 0.1062 +0 0.0857 +0 0.1327 +0 0.1859 +0 0.0655 +0 0.1290 +0 0.1079 +0 0.0366 +0 0.1868 +0 0.0926 +0 0.0804 +0 0.0813 +0 0.2096 +0 0.0966 +0 0.1138 +0 0.1127 +0 0.0597 +0 0.0705 +0 0.1429 +0 0.0847 +0 0.0920 +0 0.1725 +0 0.1974 +0 0.0508 +0 0.0766 +0 0.2280 +0 0.0743 +0 0.0709 +0 0.0946 +1 0.7976 +0 0.0935 +0 0.1124 +0 0.2708 +0 0.0588 +0 0.0969 +0 0.0868 +0 0.1319 +0 0.2065 +0 0.1650 +0 0.1212 +0 0.2663 +0 0.1121 +0 0.0659 +0 0.3310 +0 0.1188 +0 0.0882 +0 0.0818 +0 0.1042 +0 0.1341 +0 0.0755 +0 0.2332 +0 0.1242 +0 0.2493 +0 0.2969 +0 0.0612 +0 0.1174 +0 0.1379 +0 0.1387 +0 0.1288 +0 0.1035 +0 0.6854 +0 0.0927 +0 0.0649 +0 0.1057 +0 0.1224 +0 0.1214 +0 0.0799 +0 0.0990 +1 0.7898 +0 0.0832 +0 0.0851 +0 0.3353 +0 0.0330 +0 0.0930 +0 0.0746 +0 0.1017 +0 0.1574 +0 0.2100 +0 0.0790 +0 0.0793 +0 0.0900 +0 0.2129 +0 0.1747 +0 0.3707 +0 0.0947 +0 0.3418 +0 0.7199 +0 0.1037 +0 0.0744 +0 0.1609 +0 0.0676 +0 0.1648 +0 0.0547 +0 0.0729 +1 0.8577 +0 0.0845 +0 0.0647 +0 0.0734 +0 0.0662 +0 0.1729 +0 0.0510 +0 0.2266 +0 0.0835 +0 0.2233 +0 0.1670 +0 0.2729 +0 0.1476 +0 0.0571 +0 0.1185 +0 0.2016 +0 0.0905 +0 0.0766 +0 0.0800 +0 0.2158 +0 0.2023 +0 0.5257 +0 0.1114 +0 0.3300 +0 0.2319 +0 0.1303 +0 0.1175 +0 0.1124 +1 0.8424 +0 0.2533 +0 0.2421 +0 0.1466 +0 0.0521 +0 0.1983 +0 0.1186 +0 0.2437 +0 0.2676 +0 0.0627 +0 0.0824 +0 0.0605 +0 0.1479 +0 0.2759 +0 0.0442 +0 0.6592 +0 0.1034 +0 0.1033 +0 0.2031 +0 0.1101 +0 0.1390 +0 0.2084 +0 0.3459 +0 0.0543 +0 0.3726 +0 0.2748 +0 0.1640 +0 0.0776 +0 0.0513 +1 0.8074 +0 0.1881 +0 0.0746 +0 0.1526 +0 0.0991 +0 0.3715 +0 0.2868 +0 0.0943 +0 0.0642 +0 0.5244 +0 0.0711 +0 0.0703 +0 0.0845 +0 0.1714 +0 0.5194 +0 0.0865 +0 0.0666 +0 0.1060 +0 0.1108 +0 0.0429 +0 0.3928 +0 0.6301 +0 0.0874 +0 0.3592 +0 0.2379 +0 0.2284 +0 0.4262 +0 0.4858 +0 0.3602 +0 0.0822 +0 0.4194 +0 0.0771 +0 0.0623 +1 0.8552 +0 0.0583 +0 0.2068 +0 0.0964 +0 0.1743 +0 0.1300 +0 0.0524 +0 0.1221 +0 0.6149 +0 0.3254 +0 0.0955 +0 0.0802 +0 0.3658 +0 0.0486 +0 0.0871 +0 0.1023 +0 0.1475 +0 0.0526 +0 0.1012 +0 0.0803 +0 0.0983 +0 0.0595 +0 0.0429 +0 0.0743 +0 0.1682 +0 0.0363 +0 0.0904 +0 0.1148 +0 0.1624 +0 0.0548 +0 0.0558 +0 0.1777 +0 0.1650 +0 0.3171 +0 0.3740 +0 0.0741 +0 0.0556 +0 0.1197 +0 0.6130 +0 0.1750 +0 0.1585 +0 0.1161 +0 0.0984 +0 0.2136 +0 0.1899 +0 0.0691 +0 0.0545 +0 0.1244 +0 0.1428 +0 0.1075 +0 0.0885 +0 0.1252 +0 0.0892 +0 0.0366 +0 0.2522 +0 0.2479 +0 0.1778 +0 0.3095 +0 0.0658 +0 0.1356 +0 0.1475 +0 0.0882 +0 0.1337 +0 0.0859 +0 0.3108 +0 0.1844 +0 0.0768 +0 0.1507 +0 0.1465 +0 0.1335 +0 0.0470 +0 0.0474 +0 0.0439 +0 0.1283 +0 0.2047 +0 0.1130 +0 0.0604 +0 0.0866 +0 0.1080 +0 0.0495 +0 0.1225 +0 0.0599 +0 0.1129 +0 0.0492 +1 0.8057 +0 0.1803 +0 0.1511 +0 0.3066 +0 0.0810 +0 0.2385 +0 0.0757 +0 0.1964 +0 0.0571 +0 0.1176 +0 0.0528 +0 0.1457 +0 0.0814 +0 0.0655 +0 0.0783 +0 0.1547 +1 0.8252 +0 0.1189 +0 0.0888 +1 0.8735 +0 0.1763 +0 0.0688 +0 0.0676 +0 0.1614 +0 0.1501 +0 0.0758 +0 0.1016 +0 0.0882 +0 0.1302 +0 0.0784 +0 0.2477 +0 0.1560 +0 0.2549 +0 0.0865 +0 0.1801 +0 0.2020 +0 0.1442 +0 0.0851 +0 0.1390 +0 0.0591 +0 0.0506 +0 0.0669 +0 0.4424 +0 0.0878 +0 0.2065 +0 0.2052 +0 0.0859 +0 0.1310 +0 0.5328 +0 0.0681 +0 0.4165 +0 0.0953 +0 0.1459 +0 0.2201 +0 0.0628 +0 0.0904 +0 0.0434 +0 0.1829 +0 0.1237 +0 0.0582 +0 0.0573 +0 0.1024 +0 0.0624 +0 0.1125 +0 0.1172 +0 0.2615 +0 0.0730 +0 0.0963 +0 0.0521 +0 0.1389 +0 0.1604 +0 0.0757 +0 0.0533 +0 0.1496 +0 0.0875 +0 0.3238 +0 0.0810 +0 0.0773 +0 0.0803 +0 0.0654 +0 0.0993 +0 0.0694 +0 0.0802 +0 0.1908 +0 0.1274 +0 0.2616 +0 0.4941 +0 0.0915 +0 0.0577 +0 0.1622 +0 0.0496 +0 0.3593 +0 0.0520 +0 0.1054 +0 0.2387 +0 0.0762 +0 0.0913 +0 0.1336 +0 0.1047 +0 0.1243 +0 0.0639 +0 0.2323 +0 0.0928 +0 0.1287 +0 0.0803 +0 0.0997 +0 0.6154 +0 0.3132 +0 0.3733 +0 0.1137 +0 0.1103 +0 0.1460 +0 0.4254 +0 0.6371 +0 0.0473 +0 0.1142 +0 0.0844 +0 0.1472 +0 0.1401 +0 0.0355 +0 0.0433 +0 0.1632 +0 0.1613 +0 0.1088 +0 0.3887 +0 0.1680 +0 0.0546 +0 0.1361 +0 0.0751 +0 0.0983 +0 0.3590 +0 0.0651 +0 0.0798 +0 0.0342 +0 0.1137 +0 0.1265 +0 0.0784 +0 0.2565 +0 0.0985 +0 0.0591 +0 0.4323 +0 0.5713 +0 0.2113 +0 0.0989 +0 0.6981 +0 0.0994 +0 0.0543 +0 0.1052 +0 0.1747 +0 0.1087 +0 0.0806 +0 0.1820 +0 0.2854 +0 0.1293 +0 0.2790 +0 0.0469 +0 0.1217 +1 0.7977 +0 0.1100 +0 0.0982 +0 0.1004 +0 0.1151 +0 0.2496 +0 0.1036 +0 0.0657 +0 0.1066 +0 0.1305 +0 0.3282 +0 0.0375 +0 0.1171 +0 0.0565 +0 0.1861 +0 0.1923 +0 0.1205 +0 0.0945 +0 0.0755 +0 0.0515 +0 0.2417 +0 0.2169 +0 0.1547 +0 0.1082 +0 0.1269 +0 0.0581 +0 0.0793 +0 0.1544 +0 0.1501 +0 0.5091 +0 0.4545 +0 0.3320 +0 0.0768 +0 0.1744 +0 0.0470 +0 0.0486 +0 0.3763 +0 0.1275 +0 0.2238 +0 0.1451 +0 0.1866 +0 0.2384 +0 0.0682 +0 0.1681 +0 0.2539 +0 0.1003 +0 0.1225 +0 0.1495 +0 0.6203 +0 0.1575 +0 0.1229 +0 0.1179 +0 0.1340 +0 0.1071 +0 0.0517 +0 0.0630 +0 0.0914 +0 0.0549 +0 0.3683 +0 0.1196 +0 0.1549 +0 0.1497 +0 0.1034 +0 0.0995 +0 0.0591 +0 0.2350 +0 0.1246 +0 0.2417 +0 0.1671 +0 0.1570 +0 0.0810 +0 0.0582 +0 0.0636 +0 0.0572 +0 0.0562 +0 0.0724 +0 0.0971 +0 0.0656 +0 0.0787 +0 0.1409 +0 0.2166 +0 0.1049 +0 0.1099 +0 0.0791 +0 0.0701 +0 0.1767 +0 0.1967 +0 0.2019 +0 0.3207 +0 0.1077 +0 0.0841 +0 0.0627 +0 0.1858 +0 0.0518 +0 0.0804 +0 0.0678 +0 0.2872 +0 0.0806 +0 0.0989 +0 0.2449 +0 0.0537 +0 0.2012 +0 0.2095 +0 0.0926 +0 0.1174 +0 0.1426 +0 0.1342 +0 0.1160 +0 0.1402 +0 0.0586 +0 0.1120 +0 0.1191 +1 0.8160 +0 0.4810 +0 0.4482 +0 0.2239 +0 0.0499 +0 0.2942 +0 0.0700 +0 0.1792 +1 0.8036 +0 0.0924 +0 0.3576 +0 0.1596 +0 0.0471 +0 0.1026 +0 0.0776 +0 0.0395 +0 0.0992 +0 0.0518 +0 0.4066 +0 0.0862 +0 0.0701 +0 0.1477 +0 0.2423 +0 0.4068 +0 0.1613 +0 0.1288 +0 0.2717 +0 0.0644 +0 0.2444 +0 0.1504 +0 0.0775 +0 0.0529 +0 0.0991 +0 0.1918 +0 0.1374 +0 0.2321 +0 0.0688 +0 0.1652 +0 0.0909 +0 0.0691 +0 0.0747 +0 0.1189 +0 0.1239 +0 0.0595 +0 0.0667 +0 0.1274 +0 0.5898 +0 0.0745 +0 0.0618 +0 0.0596 +0 0.2057 +0 0.2661 +0 0.1507 +1 0.8170 +1 0.7731 +0 0.0710 +0 0.0605 +0 0.0500 +0 0.0743 +0 0.3308 +0 0.1987 +0 0.1492 +0 0.1128 +0 0.0567 +0 0.7060 +0 0.0648 +0 0.1787 +0 0.0870 +0 0.1283 +0 0.1065 +0 0.1212 +0 0.1061 +0 0.0563 +0 0.4500 +0 0.0665 +0 0.1395 +0 0.1549 +0 0.0768 +0 0.1308 +0 0.0818 +0 0.4126 +0 0.0695 +0 0.2947 +0 0.0618 +0 0.0639 +0 0.0385 +0 0.0535 +0 0.1030 +0 0.0706 +0 0.1803 +0 0.0942 +0 0.2412 +0 0.0956 +0 0.2026 +0 0.0505 +0 0.0723 +0 0.3010 +0 0.0931 +0 0.3270 +0 0.0770 +0 0.1108 +0 0.1417 +0 0.0763 +0 0.1411 +0 0.0714 +0 0.0854 +0 0.2075 +0 0.1541 +0 0.2066 +0 0.1071 +0 0.3915 +0 0.2676 +0 0.0461 +0 0.3279 +0 0.0696 +0 0.1141 +0 0.0943 +0 0.2987 +0 0.5814 +0 0.0832 +0 0.2250 +0 0.1958 +0 0.1411 +0 0.0796 +0 0.1530 +0 0.1493 +0 0.0555 +0 0.0684 +0 0.1620 +0 0.0834 +0 0.1405 +0 0.0828 +0 0.1088 +0 0.1023 +0 0.0433 +0 0.1025 +0 0.2417 +0 0.1890 +0 0.0868 +0 0.0814 +0 0.0608 +0 0.1430 +0 0.0497 +0 0.0929 +0 0.1499 +0 0.1591 +0 0.2118 +0 0.5729 +0 0.0517 +0 0.0368 +0 0.0988 +0 0.1104 +0 0.0498 +0 0.0546 +0 0.0833 +0 0.1545 +0 0.3006 +0 0.1945 +0 0.1432 +0 0.1391 +0 0.1588 +0 0.3319 +0 0.1543 +0 0.0777 +0 0.2217 +0 0.1122 +0 0.1213 +1 0.8614 +0 0.0673 +0 0.0453 +0 0.0856 +0 0.6202 +0 0.1316 +0 0.0989 +0 0.2708 +0 0.1191 +0 0.0936 +0 0.0971 +0 0.5118 +0 0.0640 +0 0.1057 +0 0.0464 +0 0.0865 +0 0.1430 +0 0.0502 +0 0.2798 +0 0.1544 +0 0.0910 +0 0.1021 +0 0.0412 +0 0.0641 +0 0.3364 +0 0.0496 +0 0.1612 +0 0.4410 +0 0.0473 +0 0.2158 +0 0.0480 +0 0.0792 +0 0.4851 +0 0.1907 +0 0.1064 +0 0.3722 +0 0.1076 +0 0.0817 +0 0.0421 +0 0.1874 +0 0.1058 +0 0.2529 +0 0.1724 +0 0.0642 +1 0.8058 +0 0.1842 +0 0.1322 +0 0.2578 +0 0.0740 +0 0.0738 +0 0.0663 +0 0.1521 +0 0.0678 +0 0.2738 +0 0.1498 +0 0.1478 +0 0.1064 +0 0.2030 +0 0.0880 +0 0.1179 +0 0.0912 +0 0.1258 +0 0.0813 +0 0.1143 +0 0.0950 +0 0.1423 +0 0.1508 +0 0.1089 +0 0.1028 +0 0.1451 +0 0.3310 +0 0.5411 +0 0.1072 +0 0.0588 +0 0.0948 +0 0.0680 +0 0.1849 +0 0.2078 +0 0.1821 +0 0.1397 +0 0.1326 +0 0.1214 +0 0.1256 +0 0.0846 +0 0.3244 +0 0.1651 +0 0.0608 +0 0.2691 +0 0.7457 +0 0.0716 +0 0.1001 +0 0.0624 +0 0.1014 +0 0.1171 +0 0.5710 +0 0.0863 +0 0.0420 +0 0.0404 +0 0.0919 +0 0.0818 +0 0.0360 +0 0.0902 +0 0.0970 +0 0.1426 +0 0.0775 +0 0.0871 +0 0.0558 +0 0.0571 +0 0.0770 +0 0.0487 +0 0.0624 +0 0.0882 +0 0.3082 +0 0.0460 +1 0.8108 +0 0.2632 +0 0.0934 +0 0.1051 +0 0.0950 +0 0.1030 +0 0.1267 +0 0.4392 +0 0.2938 +0 0.6183 +0 0.2141 +0 0.1404 +0 0.1548 +0 0.1370 +0 0.1076 +0 0.0584 +0 0.0448 +0 0.0523 +0 0.1411 +0 0.0994 +0 0.0791 +0 0.0973 +0 0.0578 +0 0.0397 +0 0.0756 +0 0.0740 +0 0.0763 +0 0.0689 +0 0.0502 +0 0.2720 +0 0.4716 +0 0.4174 +0 0.1534 +0 0.1115 +0 0.1223 +0 0.0488 +0 0.0929 +0 0.2459 +0 0.0964 +0 0.0871 +0 0.0661 +1 0.8346 +0 0.1272 +0 0.1966 +0 0.2670 +0 0.1568 +0 0.1437 +0 0.0567 +0 0.3196 +0 0.0926 +0 0.1432 +0 0.1243 +0 0.1550 +0 0.0364 +0 0.0537 +0 0.0585 +0 0.0667 +0 0.1322 +0 0.6676 +0 0.4828 +0 0.2428 +0 0.1735 +0 0.0883 +0 0.1025 +0 0.1056 +0 0.0375 +0 0.1913 +0 0.0674 +0 0.0693 +0 0.0527 +0 0.1093 +0 0.0632 +0 0.5314 +0 0.0736 +0 0.1363 +0 0.0465 +0 0.0973 +0 0.0746 +0 0.0769 +0 0.1224 +0 0.0968 +0 0.0432 +0 0.1221 +0 0.2468 +0 0.1907 +0 0.2167 +0 0.0652 +0 0.3394 +0 0.2019 +0 0.1483 +0 0.0694 +0 0.0826 +0 0.0340 +0 0.1058 +0 0.2525 +0 0.1145 +0 0.0762 +0 0.0819 +0 0.0590 +0 0.1680 +0 0.0743 +0 0.1308 +0 0.0382 +0 0.1317 +0 0.0671 +0 0.0328 +0 0.3919 +0 0.0443 +0 0.1172 +0 0.1393 +0 0.1623 +0 0.1959 +1 0.7702 +0 0.1060 +0 0.1132 +0 0.1624 +0 0.4737 +0 0.1426 +0 0.1588 +0 0.2164 +0 0.1886 +0 0.3137 +0 0.3673 +0 0.0566 +0 0.0843 +0 0.2443 +0 0.1094 +0 0.0648 +0 0.0819 +0 0.0566 +0 0.0556 +0 0.0895 +0 0.1007 +0 0.0373 +0 0.1388 +0 0.3434 +0 0.2590 +0 0.0352 +0 0.1243 +0 0.4720 +0 0.2741 +0 0.1633 +0 0.1130 +0 0.1933 +0 0.1097 +0 0.3266 +0 0.1682 +0 0.0914 +0 0.0914 +0 0.6059 +0 0.1767 +0 0.0865 +0 0.1503 +0 0.0665 +0 0.2376 +0 0.1028 +0 0.2781 +0 0.1104 +0 0.0416 +0 0.1229 +0 0.1482 +0 0.1865 +0 0.1522 +0 0.1554 +0 0.0812 +0 0.2840 +0 0.0651 +0 0.0452 +0 0.1045 +0 0.0810 +0 0.1082 +0 0.1322 +0 0.0516 +0 0.1197 +0 0.0553 +0 0.0755 +0 0.1115 +0 0.1614 +0 0.4099 +0 0.1474 +0 0.0596 +0 0.2670 +0 0.1206 +0 0.0506 +0 0.1586 +0 0.0810 +0 0.0737 +0 0.1393 +0 0.0674 +0 0.0980 +0 0.6397 +0 0.0974 +0 0.0700 +0 0.0882 +0 0.1396 +0 0.1302 +0 0.1096 +0 0.2629 +0 0.2175 +0 0.0807 +0 0.2562 +0 0.1058 +0 0.0970 +0 0.0643 +0 0.5371 +0 0.1133 +0 0.0847 +0 0.0860 +0 0.0411 +0 0.0436 +0 0.0471 +0 0.0922 +0 0.0906 +0 0.0710 +0 0.2045 +0 0.2255 +0 0.0918 +0 0.1131 +0 0.0962 +0 0.2040 +0 0.1072 +0 0.1115 +0 0.1044 +0 0.1205 +0 0.0870 +0 0.0776 +0 0.0958 +0 0.1931 +0 0.3152 +0 0.2541 +0 0.1338 +0 0.1612 +0 0.1698 +0 0.2917 +0 0.0890 +0 0.5987 +0 0.1811 +0 0.1893 +0 0.0460 +0 0.1063 +0 0.1460 +0 0.1648 +0 0.0831 +0 0.0865 +0 0.0562 +0 0.0618 +0 0.3549 +0 0.3091 +0 0.1275 +0 0.1264 +0 0.1848 +0 0.0750 +0 0.1633 +0 0.1342 +0 0.1428 +0 0.0802 +0 0.0771 +0 0.1011 +0 0.1055 +0 0.4080 +0 0.0693 +0 0.1716 +0 0.1529 +0 0.1024 +0 0.0830 +0 0.1332 +0 0.1342 +0 0.1191 +0 0.1404 +0 0.2686 +0 0.2517 +0 0.0572 +0 0.1221 +0 0.1509 +0 0.0818 +0 0.0499 +0 0.0954 +0 0.1861 +0 0.1479 +0 0.0439 +0 0.0639 +0 0.2610 +0 0.0706 +0 0.1583 +0 0.1022 +0 0.1653 +0 0.6804 +0 0.1029 +0 0.0710 +0 0.2002 +0 0.0542 +0 0.0558 +0 0.2118 +0 0.1562 +0 0.2106 +0 0.1024 +0 0.1750 +0 0.2858 +0 0.1049 +0 0.0854 +0 0.2419 +0 0.0407 +0 0.1212 +0 0.0733 +0 0.0467 +0 0.1347 +0 0.0439 +0 0.1004 +0 0.1055 +0 0.2241 +0 0.0711 +0 0.2896 +0 0.1163 +0 0.1674 +0 0.1244 +0 0.1876 +0 0.0570 +0 0.3193 +0 0.1265 +0 0.2379 +0 0.5471 +0 0.2408 +0 0.1313 +0 0.7191 +0 0.0838 +0 0.7213 +0 0.1018 +0 0.4063 +0 0.1051 +0 0.1280 +0 0.2532 +0 0.1348 +0 0.0427 +0 0.0993 +0 0.0727 +0 0.0585 +0 0.0349 +0 0.2040 +0 0.1507 +0 0.1064 +0 0.3241 +0 0.0308 +0 0.1420 +0 0.0371 +0 0.2214 +0 0.1645 +1 0.7801 +0 0.5410 +0 0.1212 +0 0.6523 +0 0.0842 +0 0.0768 +0 0.1090 +0 0.0866 +0 0.2739 +0 0.0479 +0 0.1945 +0 0.0980 +0 0.0881 +0 0.0523 +0 0.0856 +0 0.1954 +1 0.7593 +0 0.0958 +0 0.1124 +0 0.0635 +0 0.0624 +0 0.0505 +0 0.1269 +0 0.2179 +0 0.1192 +0 0.0989 +0 0.0429 +0 0.1085 +0 0.0999 +0 0.0749 +0 0.1132 +0 0.0630 +0 0.0722 +0 0.1488 +0 0.1335 +0 0.0986 +0 0.0697 +0 0.0556 +0 0.0577 +0 0.0764 +0 0.2593 +0 0.2119 +0 0.1567 +0 0.1077 +0 0.3919 +0 0.0835 +0 0.0444 +0 0.0853 +0 0.0523 +0 0.3142 +0 0.0999 +0 0.0555 +0 0.0852 +0 0.0655 +0 0.3275 +0 0.0777 +0 0.2320 +0 0.0699 +0 0.2270 +0 0.0788 +0 0.0859 +0 0.2310 +0 0.0784 +0 0.1007 +0 0.0529 +0 0.1187 +0 0.0752 +0 0.1032 +0 0.3252 +0 0.1673 +0 0.0937 +0 0.1597 +0 0.0610 +0 0.1795 +0 0.2221 +0 0.1513 +0 0.0494 +1 0.7610 +0 0.1146 +0 0.0739 +0 0.0686 +0 0.0587 +0 0.0718 +0 0.0767 +0 0.1637 +0 0.0755 +0 0.1183 +0 0.3433 +0 0.0927 +0 0.1247 +0 0.2383 +0 0.0367 +0 0.2817 +0 0.0749 +0 0.0937 +0 0.3448 +0 0.0538 +0 0.1310 +0 0.0709 +0 0.0501 +0 0.0503 +0 0.0759 +0 0.6671 +0 0.1102 +0 0.1050 +0 0.1310 +0 0.0775 +0 0.0498 +0 0.0375 +0 0.0425 +0 0.1033 +0 0.1088 +0 0.4662 +0 0.1610 +0 0.1377 +0 0.1198 +0 0.0801 +0 0.2729 +0 0.1054 +0 0.1432 +0 0.1100 +0 0.1843 +0 0.0665 +0 0.0799 +0 0.0672 +0 0.2490 +0 0.0842 +0 0.1277 +0 0.1168 +0 0.0383 +0 0.0386 +0 0.3400 +0 0.0836 +0 0.0976 +0 0.1766 +0 0.1242 +0 0.0968 +0 0.1572 +0 0.1048 +0 0.1089 +0 0.1616 +0 0.2014 +0 0.0714 +0 0.1258 +0 0.2148 +0 0.0731 +0 0.0620 +0 0.0697 +0 0.0702 +0 0.0857 +0 0.1478 +0 0.1720 +0 0.0941 +0 0.4271 +0 0.1006 +0 0.0824 +0 0.0694 +0 0.0907 +0 0.0845 +0 0.0498 +0 0.1150 +0 0.0436 +0 0.0706 +0 0.3824 +0 0.1734 +0 0.1524 +0 0.1039 +0 0.0722 +0 0.1175 +0 0.0574 +0 0.1857 +0 0.0869 +0 0.2681 +0 0.1303 +0 0.0583 +0 0.0406 +0 0.0481 +0 0.1075 +0 0.0759 +0 0.1139 +0 0.0461 +0 0.5184 +0 0.2712 +0 0.1208 +0 0.1947 +0 0.0939 +0 0.0370 +0 0.1070 +0 0.1649 +0 0.1486 +0 0.2307 +0 0.0973 +0 0.1097 +0 0.1093 +0 0.0676 +0 0.0303 +0 0.3411 +0 0.1358 +0 0.0589 +0 0.1024 +0 0.0782 +0 0.1277 +0 0.1896 +0 0.4386 +0 0.0717 +0 0.1246 +0 0.1607 +0 0.0409 +0 0.1385 +0 0.0659 +0 0.1776 +0 0.1116 +0 0.0560 +0 0.2064 +0 0.1130 +0 0.1032 +0 0.1257 +0 0.2024 +0 0.0799 +0 0.2780 +0 0.0793 +0 0.0681 +0 0.0849 +0 0.1812 +0 0.0752 +0 0.2402 +0 0.6873 +0 0.0570 +0 0.1164 +0 0.1236 +0 0.1288 +0 0.1476 +0 0.1783 +0 0.0781 +0 0.3543 +0 0.1393 +0 0.0391 +0 0.0989 +0 0.0601 +0 0.1035 +0 0.3148 +0 0.3667 +0 0.2419 +0 0.1324 +0 0.0913 +0 0.2109 +0 0.0981 +0 0.1369 +0 0.1851 +0 0.0859 +0 0.7485 +0 0.0594 +0 0.1935 +0 0.2522 +0 0.0712 +0 0.0546 +0 0.0817 +0 0.0606 +0 0.0679 +0 0.4348 +0 0.0298 +0 0.2203 +0 0.2578 +0 0.0714 +0 0.1346 +0 0.1998 +0 0.1119 +0 0.1181 +0 0.1959 +0 0.1023 +1 0.8903 +0 0.0883 +0 0.1906 +0 0.0583 +0 0.1268 +0 0.1186 +0 0.7153 +0 0.1430 +0 0.0799 +0 0.0949 +0 0.0829 +0 0.0518 +0 0.0639 +1 0.8758 +0 0.0684 +0 0.0632 +0 0.2930 +0 0.0868 +0 0.1313 +0 0.0592 +0 0.1146 +0 0.1815 +0 0.1074 +0 0.0801 +0 0.1144 +0 0.0827 +0 0.0739 +0 0.0936 +0 0.1955 +0 0.0335 +0 0.4872 +0 0.0659 +0 0.0938 +0 0.1259 +0 0.0643 +0 0.0628 +0 0.0894 +0 0.1901 +0 0.1451 +0 0.1625 +0 0.0419 +0 0.1784 +0 0.0640 +0 0.0879 +0 0.0541 +0 0.0893 +0 0.1607 +0 0.0557 +0 0.0760 +0 0.0500 +0 0.7286 +0 0.1553 +0 0.0678 +0 0.0871 +0 0.1250 +0 0.1171 +0 0.0621 +0 0.2451 +0 0.0582 +0 0.1425 +0 0.5929 +0 0.1178 +0 0.5417 +0 0.0723 +0 0.1553 +0 0.7235 +0 0.1633 +0 0.1216 +0 0.1201 +0 0.1504 +0 0.0698 +0 0.0674 +0 0.0715 +1 0.7688 +0 0.1977 +0 0.0719 +0 0.0348 +0 0.1808 +0 0.1819 +0 0.0591 +0 0.0732 +0 0.0736 +0 0.1282 +0 0.1033 +0 0.0436 +0 0.0439 +0 0.1024 +0 0.0839 +0 0.2008 +0 0.1199 +0 0.1184 +0 0.1444 +0 0.1908 +0 0.0687 +0 0.0729 +0 0.3728 +0 0.1005 +0 0.0420 +0 0.0469 +0 0.3369 +0 0.1285 +0 0.0714 +0 0.0752 +0 0.0493 +0 0.1987 +0 0.0584 +0 0.0844 +0 0.1175 +0 0.0956 +0 0.2351 +0 0.0986 +0 0.1112 +0 0.0396 +0 0.0520 +0 0.0847 +0 0.0923 +0 0.1419 +0 0.0583 +0 0.0394 +0 0.0923 +0 0.0579 +0 0.2332 +0 0.0545 +0 0.1051 +0 0.0979 +1 0.8091 +0 0.3023 +0 0.3076 +0 0.1236 +0 0.0503 +0 0.0750 +0 0.0434 +0 0.3280 +0 0.2074 +0 0.1012 +0 0.0725 +0 0.2550 +0 0.5552 +0 0.0411 +0 0.1246 +0 0.0539 +0 0.1519 +0 0.0738 +0 0.2746 +0 0.0662 +0 0.0423 +0 0.0908 +0 0.2934 +0 0.0583 +0 0.0599 +0 0.0757 +0 0.0454 +0 0.3111 +0 0.1115 +0 0.1950 +0 0.0769 +1 0.8176 +0 0.1323 +0 0.0707 +0 0.0427 +0 0.0918 +0 0.2752 +0 0.1490 +0 0.0821 +0 0.0455 +0 0.1659 +0 0.2033 +0 0.0388 +0 0.1055 +0 0.0624 +0 0.5874 +0 0.1841 +0 0.1533 +0 0.1638 +0 0.2511 +0 0.0568 +0 0.1989 +0 0.0648 +0 0.0727 +0 0.0864 +0 0.0735 +0 0.1299 +0 0.2625 +0 0.0771 +0 0.1702 +0 0.0882 +0 0.1291 +0 0.0591 +0 0.0708 +0 0.1525 +0 0.1181 +0 0.0792 +0 0.1501 +0 0.1490 +0 0.1726 +0 0.0646 +0 0.0924 +0 0.0507 +0 0.2003 +0 0.2900 +0 0.1696 +0 0.0916 +0 0.0651 +0 0.2007 +0 0.1017 +0 0.1286 +0 0.2555 +0 0.5095 +0 0.5616 +0 0.0911 +0 0.0812 +0 0.1540 +0 0.0962 +0 0.0691 +0 0.0680 +0 0.0840 +0 0.0872 +0 0.1275 +0 0.3402 +0 0.0914 +0 0.1410 +0 0.0635 +0 0.5376 +0 0.1394 +0 0.1694 +0 0.0928 +0 0.1583 +0 0.0685 +0 0.0591 +0 0.1491 +0 0.1619 +0 0.0588 +0 0.1035 +0 0.1056 +0 0.2013 +0 0.0394 +0 0.1440 +0 0.1608 +0 0.1342 +0 0.0947 +0 0.1045 +0 0.1275 +0 0.0632 +0 0.0868 +0 0.1898 +0 0.6531 +0 0.1434 +0 0.3071 +0 0.1600 +0 0.1930 +0 0.4383 +0 0.1911 +0 0.0463 +1 0.8463 +0 0.0757 +0 0.2728 +0 0.1489 +0 0.0736 +0 0.2123 +0 0.2089 +0 0.1110 +0 0.1200 +0 0.2331 +0 0.0973 +0 0.0905 +0 0.1138 +0 0.2382 +0 0.0641 +0 0.0342 +0 0.0788 +0 0.2220 +0 0.2538 +0 0.1158 +0 0.1145 +0 0.2647 +0 0.1008 +0 0.2580 +0 0.0848 +0 0.0656 +0 0.0744 +0 0.0553 +0 0.2549 +0 0.1061 +0 0.0835 +0 0.3883 +0 0.1325 +0 0.2462 +0 0.1428 +0 0.1353 +0 0.4483 +0 0.1207 +0 0.0711 +0 0.0601 +0 0.1287 +0 0.0857 +0 0.1475 +0 0.0837 +0 0.1186 +0 0.0960 +0 0.1389 +0 0.1587 +0 0.1961 +0 0.0632 +0 0.2444 +0 0.0487 +0 0.1112 +0 0.0555 +0 0.0633 +0 0.1122 +0 0.6269 +0 0.0535 +0 0.0735 +0 0.0905 +0 0.0737 +0 0.1508 +0 0.0762 +0 0.1973 +0 0.5218 +0 0.0742 +0 0.1188 +0 0.2439 +0 0.2010 +0 0.0808 +0 0.0870 +0 0.1795 +0 0.0771 +0 0.0998 +1 0.7794 +0 0.1058 +0 0.2169 +0 0.0946 +0 0.0608 +0 0.1207 +0 0.1612 +0 0.0719 +0 0.0937 +0 0.0703 +0 0.1971 +1 0.8536 +0 0.0593 +0 0.0374 +0 0.1342 +0 0.0951 +0 0.0728 +0 0.0810 +0 0.1004 +0 0.2174 +0 0.1057 +0 0.1954 +0 0.1264 +0 0.0763 +0 0.2674 +0 0.1141 +0 0.1572 +0 0.5624 +0 0.1334 +0 0.0674 +0 0.3100 +0 0.1069 +0 0.0673 +0 0.1316 +0 0.2088 +0 0.2138 +0 0.0683 +0 0.1502 +0 0.0918 +0 0.0737 +0 0.1229 +0 0.0982 +0 0.0520 +0 0.0891 +0 0.0493 +0 0.0858 +0 0.0699 +0 0.2804 +0 0.1629 +0 0.2827 +0 0.1581 +0 0.0554 +0 0.1644 +0 0.1306 +0 0.0688 +0 0.3595 +0 0.0348 +0 0.1382 +0 0.1430 +0 0.0578 +0 0.1191 +0 0.0465 +0 0.1028 +0 0.3351 +0 0.0587 +0 0.1074 +0 0.0888 +0 0.0970 +0 0.0835 +0 0.6920 +0 0.1882 +0 0.0325 +0 0.3621 +0 0.0750 +0 0.2867 +0 0.0767 +0 0.7043 +0 0.1219 +0 0.0471 +0 0.0808 +0 0.1520 +0 0.0869 +0 0.0484 +0 0.0702 +0 0.0787 +0 0.0486 +0 0.1291 +0 0.3947 +1 0.8549 +0 0.0937 +0 0.3150 +0 0.0586 +0 0.1485 +0 0.0740 +0 0.0735 +0 0.1451 +0 0.1733 +0 0.1280 +0 0.4405 +0 0.6012 +0 0.0466 +0 0.2865 +0 0.0494 +0 0.6529 +0 0.1171 +0 0.1471 +0 0.1596 +0 0.0656 +0 0.0396 +0 0.2492 +0 0.1799 +0 0.0734 +0 0.0734 +0 0.0680 +0 0.0639 +0 0.0790 +0 0.0694 +0 0.1010 +0 0.0579 +0 0.0362 +0 0.1800 +0 0.1240 +0 0.0672 +0 0.0791 +0 0.1307 +0 0.1775 +0 0.0754 +0 0.0781 +0 0.1245 +0 0.2297 +0 0.0633 +0 0.0872 +0 0.0634 +0 0.3582 +0 0.1257 +0 0.3758 +0 0.0641 +0 0.1285 +0 0.0684 +0 0.1639 +0 0.0364 +0 0.1802 +1 0.8424 +0 0.0788 +0 0.1898 +0 0.0493 +0 0.0927 +0 0.0598 +0 0.0690 +0 0.0975 +0 0.0464 +0 0.1762 +0 0.0332 +0 0.0757 +0 0.0878 +0 0.1758 +0 0.0908 +0 0.1666 +0 0.1117 +0 0.0761 +0 0.1255 +0 0.0808 +0 0.1756 +0 0.0994 +0 0.1802 +0 0.1664 +0 0.2368 +0 0.0413 +0 0.5328 +0 0.0289 +0 0.1115 +0 0.0834 +0 0.1361 +0 0.1740 +0 0.0764 +0 0.0760 +0 0.0907 +0 0.2858 +0 0.0513 +0 0.0488 +0 0.1889 +0 0.2428 +0 0.1465 +0 0.3150 +0 0.1169 +0 0.2619 +0 0.2535 +0 0.2015 +0 0.0653 +0 0.0929 +0 0.0636 +0 0.1084 +0 0.1365 +0 0.2317 +0 0.2119 +0 0.1577 +0 0.0887 +0 0.1637 +0 0.2537 +0 0.0995 +0 0.1414 +0 0.2456 +0 0.0962 +0 0.1484 +0 0.0634 +0 0.1105 +0 0.0685 +0 0.0630 +0 0.0579 +0 0.1163 +0 0.0783 +0 0.0689 +0 0.2055 +0 0.0879 +0 0.3445 +0 0.1516 +0 0.1253 +1 0.7978 +0 0.0973 +0 0.0393 +0 0.1353 +0 0.1363 +0 0.0468 +0 0.0665 +0 0.2091 +0 0.1127 +0 0.0705 +0 0.0780 +0 0.0990 +0 0.0871 +0 0.1869 +0 0.1171 +0 0.0667 +0 0.0426 +0 0.0353 +0 0.0753 +0 0.0612 +0 0.0962 +0 0.1193 +1 0.8107 +0 0.1140 +0 0.1060 +0 0.0635 +0 0.1192 +0 0.0779 +0 0.0355 +0 0.1709 +0 0.1408 +0 0.0430 +0 0.1539 +0 0.0363 +0 0.1058 +0 0.0406 +0 0.0506 +0 0.1498 +0 0.0836 +0 0.2018 +0 0.0823 +0 0.0996 +0 0.0918 +0 0.0444 +0 0.5265 +0 0.3375 +0 0.2387 +0 0.1399 +0 0.0490 +0 0.1266 +0 0.0446 +0 0.1044 +0 0.1631 +0 0.0660 +0 0.3557 +0 0.0320 +0 0.0603 +0 0.2335 +0 0.3181 +0 0.0905 +0 0.0927 +0 0.5585 +0 0.1489 +0 0.0547 +0 0.0509 +0 0.1017 +0 0.3157 +0 0.0955 +0 0.0961 +0 0.1389 +0 0.0759 +0 0.0758 +0 0.1218 +0 0.1138 +0 0.0815 +0 0.0628 +0 0.1847 +0 0.0867 +0 0.1666 +0 0.0424 +0 0.0755 +0 0.1251 +0 0.0649 +0 0.0779 +0 0.0673 +0 0.1580 +0 0.0971 +0 0.1405 +0 0.2675 +0 0.0476 +0 0.1421 +0 0.1248 +0 0.0766 +0 0.0559 +0 0.0742 +0 0.1643 +0 0.1952 +0 0.1490 +0 0.1908 +0 0.0916 +0 0.2003 +0 0.1118 +0 0.1399 +0 0.1156 +0 0.2038 +0 0.6925 +0 0.0711 +0 0.1148 +0 0.0876 +0 0.1057 +0 0.1676 +0 0.3235 +0 0.1116 +0 0.1632 +0 0.4243 +0 0.0723 +0 0.1485 +0 0.0702 +0 0.0761 +0 0.0711 +0 0.1487 +0 0.1157 +0 0.0793 +0 0.0641 +0 0.0598 +0 0.1153 +0 0.1959 +0 0.0872 +0 0.0625 +0 0.0742 +0 0.5569 +0 0.1288 +0 0.1172 +0 0.0960 +0 0.0719 +0 0.1740 +0 0.0730 +0 0.0802 +0 0.1922 +0 0.1047 +0 0.0364 +0 0.0828 +0 0.0861 +0 0.0486 +0 0.3394 +0 0.0624 +0 0.0732 +0 0.4633 +0 0.0968 +0 0.0532 +0 0.4750 +0 0.3047 +0 0.1540 +0 0.1406 +0 0.0579 +0 0.0543 +0 0.1095 +0 0.1557 +0 0.4146 +0 0.0722 +0 0.0832 +0 0.1851 +0 0.1475 +0 0.3541 +0 0.0821 +0 0.0991 +0 0.2714 +0 0.0837 +0 0.0607 +0 0.0632 +0 0.0786 +0 0.1200 +0 0.1870 +0 0.2900 +0 0.0744 +0 0.0575 +0 0.0806 +0 0.2290 +0 0.0833 +0 0.0616 +0 0.0973 +0 0.1138 +0 0.1111 +0 0.5084 +0 0.1324 +0 0.1097 +0 0.1468 +0 0.0580 +0 0.1057 +0 0.0470 +0 0.0874 +0 0.5113 +0 0.3856 +0 0.1893 +0 0.1552 +0 0.1381 +0 0.6080 +0 0.1022 +0 0.0375 +0 0.1336 +0 0.0622 +0 0.1396 +0 0.1208 +0 0.2154 +0 0.0979 +0 0.0486 +0 0.0927 +0 0.1163 +0 0.0496 +0 0.0814 +0 0.2052 +0 0.1840 +0 0.2322 +0 0.0603 +0 0.0908 +0 0.3814 +0 0.2609 +0 0.2199 +0 0.1840 +0 0.0715 +0 0.0599 +0 0.0978 +0 0.2324 +1 0.7855 +0 0.0512 +0 0.4065 +0 0.0587 +0 0.1552 +0 0.0611 +0 0.0949 +0 0.1691 +0 0.0527 +0 0.1055 +0 0.1369 +0 0.1566 +0 0.1579 +0 0.1541 +0 0.0908 +0 0.0698 +0 0.1398 +0 0.0610 +0 0.0870 +0 0.1037 +0 0.0868 +0 0.0737 +0 0.0971 +0 0.0552 +1 0.8403 +0 0.0733 +0 0.0938 +0 0.0612 +0 0.2047 +0 0.1060 +0 0.1269 +0 0.1056 +0 0.1043 +0 0.0945 +0 0.0572 +0 0.1693 +0 0.1779 +0 0.1151 +0 0.4123 +0 0.0903 +0 0.1311 +0 0.0618 +0 0.1032 +0 0.1137 +0 0.2101 +0 0.1639 +0 0.1499 +0 0.1190 +0 0.1097 +0 0.0390 +0 0.0623 +0 0.0852 +0 0.1335 +0 0.3935 +1 0.7912 +0 0.1225 +0 0.1155 +0 0.1104 +0 0.0898 +0 0.5047 +0 0.0817 +0 0.1246 +0 0.0809 +0 0.1846 +0 0.1653 +0 0.1183 +0 0.1797 +0 0.0654 +0 0.0484 +0 0.2371 +0 0.0840 +0 0.2066 +0 0.2699 +0 0.0642 +0 0.0733 +0 0.0352 +0 0.0295 +0 0.0843 +0 0.0822 +0 0.1233 +0 0.5149 +0 0.1278 +0 0.1030 +0 0.0783 +0 0.0727 +0 0.1138 +0 0.0607 +0 0.0490 +0 0.4865 +0 0.2161 +0 0.0829 +0 0.0490 +0 0.0758 +0 0.1041 +0 0.0810 +0 0.1288 +0 0.1502 +0 0.0599 +0 0.0474 +0 0.1142 +0 0.0851 +0 0.1410 +0 0.0593 +0 0.0908 +0 0.0443 +0 0.1172 +0 0.0552 +0 0.0765 +0 0.2642 +0 0.0775 +0 0.0407 +0 0.0761 +0 0.1190 +0 0.0574 +0 0.2059 +0 0.0618 +0 0.3334 +0 0.0854 +0 0.2214 +0 0.0590 +0 0.1192 +0 0.0628 +0 0.1218 +0 0.3255 +0 0.1254 +1 0.7850 +0 0.1406 +0 0.0853 +0 0.0885 +0 0.0590 +0 0.1472 +0 0.0727 +0 0.0566 +0 0.0400 +0 0.1826 +0 0.0553 +0 0.2239 +0 0.7495 +0 0.3107 +0 0.1397 +0 0.2120 +0 0.1002 +0 0.2881 +0 0.0631 +0 0.1635 +0 0.5087 +0 0.4060 +0 0.7073 +0 0.0569 +0 0.0567 +0 0.0667 +0 0.1702 +0 0.0595 +0 0.0596 +0 0.1346 +0 0.1711 +0 0.0605 +0 0.2868 +1 0.8430 +0 0.0960 +0 0.6412 +0 0.1291 +0 0.5525 +0 0.3627 +0 0.0563 +0 0.0383 +0 0.1610 +0 0.2118 +0 0.1301 +0 0.2804 +0 0.2832 +0 0.3177 +0 0.1561 +0 0.2626 +0 0.0484 +0 0.1298 +0 0.1133 +0 0.1067 +0 0.0877 +0 0.2019 +0 0.0382 +0 0.0900 +0 0.1499 +0 0.0463 +0 0.0562 +0 0.1481 +0 0.0979 +0 0.0851 +0 0.1382 +0 0.0678 +0 0.1457 +0 0.1974 +1 0.8194 +0 0.0823 +0 0.1139 +0 0.0807 +0 0.0669 +0 0.1275 +0 0.0367 +0 0.0845 +1 0.8626 +0 0.1810 +0 0.0659 +0 0.0677 +0 0.0582 +0 0.2035 +0 0.0808 +0 0.1986 +0 0.0451 +0 0.0529 +0 0.0993 +0 0.0513 +0 0.0642 +0 0.0522 +0 0.0932 +0 0.0771 +0 0.1782 +0 0.0741 +0 0.0648 +0 0.2874 +0 0.0652 +0 0.1200 +0 0.2067 +0 0.0772 +0 0.0609 +0 0.0603 +0 0.0598 +0 0.0579 +0 0.1250 +0 0.0690 +0 0.1062 +0 0.0637 +0 0.1609 +0 0.0836 +0 0.1171 +0 0.0364 +0 0.0644 +0 0.1051 +0 0.1190 +0 0.1131 +1 0.7786 +0 0.1386 +0 0.1285 +0 0.0873 +0 0.0594 +0 0.1278 +0 0.1149 +0 0.0801 +0 0.0524 +0 0.0545 +0 0.0780 +0 0.0510 +0 0.3709 +0 0.0438 +0 0.0773 +0 0.0934 +0 0.0342 +0 0.1399 +0 0.2032 +0 0.4404 +0 0.1187 +0 0.4094 +0 0.0675 +0 0.0881 +0 0.2593 +0 0.1309 +0 0.0650 +0 0.3552 +0 0.1637 +0 0.1109 +0 0.1066 +0 0.1046 +0 0.0554 +0 0.1553 +0 0.0785 +0 0.2627 +0 0.0682 +0 0.0772 +0 0.1294 +0 0.1147 +0 0.0943 +0 0.0464 +0 0.1070 +0 0.1120 +0 0.2089 +0 0.1237 +0 0.4696 +0 0.0730 +0 0.0874 +0 0.1102 +0 0.1131 +1 0.8464 +0 0.4961 +0 0.1671 +0 0.0943 +0 0.1257 +0 0.1470 +0 0.1707 +0 0.1184 +0 0.1307 +0 0.1051 +0 0.1978 +0 0.1724 +0 0.2286 +0 0.1250 +0 0.2949 +0 0.3896 +0 0.1065 +0 0.0872 +0 0.2608 +0 0.0544 +0 0.2519 +0 0.1357 +0 0.0871 +0 0.1046 +0 0.1337 +0 0.2333 +0 0.2622 +0 0.6072 +0 0.0951 +0 0.0759 +0 0.2694 +0 0.0780 +0 0.0627 +0 0.0994 +0 0.1048 +0 0.1217 +0 0.2642 +0 0.1041 +0 0.0488 +0 0.2149 +0 0.2253 +0 0.1650 +0 0.0821 +0 0.1550 +0 0.1376 +0 0.2068 +0 0.0752 +0 0.0680 +0 0.0874 +0 0.1201 +0 0.1495 +0 0.0488 +0 0.1120 +0 0.3791 +0 0.1474 +0 0.0525 +0 0.0734 +0 0.0540 +0 0.1307 +0 0.3931 +0 0.0723 +0 0.1551 +0 0.0620 +0 0.1215 +0 0.1386 +0 0.0578 +0 0.0633 +0 0.0658 +0 0.0912 +0 0.2874 +0 0.1100 +0 0.1598 +0 0.0782 +0 0.1423 +0 0.0781 +0 0.0689 +0 0.1539 +0 0.1639 +0 0.4244 +0 0.1008 +0 0.0842 +0 0.0512 +0 0.1887 +0 0.0716 +0 0.5782 +0 0.1466 +0 0.2444 +0 0.0675 +0 0.0755 +0 0.1435 +0 0.0612 +0 0.1160 +0 0.1548 +0 0.0849 +0 0.0843 +0 0.0428 +0 0.0630 +0 0.1702 +0 0.3237 +0 0.1927 +0 0.1803 +0 0.5406 +0 0.1716 +0 0.1170 +0 0.2468 +0 0.1168 +0 0.0640 +0 0.1198 +0 0.6813 +0 0.0939 +0 0.3517 +0 0.0826 +0 0.1113 +0 0.1876 +0 0.0820 +0 0.2682 +0 0.2368 +0 0.2044 +0 0.1290 +0 0.0589 +0 0.1509 +0 0.0719 +0 0.0331 +0 0.2162 +0 0.2015 +0 0.1265 +0 0.1131 +0 0.1404 +0 0.0760 +0 0.1702 +0 0.0590 +1 0.8710 +0 0.1019 +0 0.0570 +0 0.2724 +1 0.7816 +0 0.0641 +0 0.1163 +0 0.0630 +0 0.0662 +0 0.0625 +0 0.0997 +0 0.1043 +0 0.2438 +0 0.4361 +0 0.3321 +0 0.0894 +0 0.0836 +0 0.0759 +0 0.0901 +0 0.3844 +0 0.1454 +0 0.0671 +0 0.0322 +0 0.0636 +0 0.3304 +0 0.1645 +0 0.1097 +0 0.2273 +0 0.1731 +0 0.0381 +0 0.1115 +0 0.0861 +0 0.0768 +0 0.1469 +0 0.0969 +0 0.0781 +0 0.0847 +0 0.2274 +0 0.0811 +0 0.0775 +0 0.2580 +0 0.1064 +0 0.2095 +0 0.0930 +0 0.0548 +0 0.1217 +0 0.0802 +0 0.2361 +0 0.0654 +0 0.1260 +0 0.2937 +0 0.0979 +0 0.0992 +0 0.1039 +0 0.0654 +0 0.2111 +0 0.1123 +1 0.3158 +0 0.0966 +0 0.0395 +1 0.7593 +0 0.1720 +0 0.0566 +0 0.2140 +0 0.7075 +0 0.0592 +0 0.1315 +0 0.1052 +1 0.7962 +0 0.0801 +0 0.0810 +0 0.0892 +0 0.2475 +0 0.1548 +0 0.0627 +0 0.1525 +0 0.0814 +0 0.6773 +0 0.1169 +0 0.0911 +0 0.1640 +0 0.1400 +0 0.1025 +0 0.1027 +0 0.1226 +0 0.4834 +0 0.0580 +0 0.0513 +0 0.0789 +1 0.7682 +0 0.1059 +0 0.1272 +0 0.4931 +0 0.0571 +0 0.1026 +0 0.2502 +0 0.1878 +0 0.1956 +0 0.1235 +0 0.1402 +0 0.0769 +0 0.0916 +0 0.0968 +0 0.0543 +0 0.0804 +0 0.1104 +0 0.0341 +0 0.3929 +0 0.1690 +1 0.8280 +0 0.0630 +0 0.5637 +0 0.1085 +0 0.0887 +0 0.1156 +0 0.7407 +0 0.6801 +0 0.1554 +0 0.0671 +0 0.0481 +0 0.2405 +0 0.1158 +0 0.2477 +0 0.0454 +0 0.2557 +0 0.0624 +0 0.0468 +0 0.1820 +0 0.1203 +0 0.1954 +0 0.0668 +0 0.1023 +0 0.1329 +0 0.0871 +0 0.1114 +0 0.0941 +0 0.1091 +0 0.1116 +0 0.0418 +0 0.0751 +0 0.1098 +0 0.2021 +0 0.0576 +0 0.2575 +0 0.0314 +0 0.0541 +0 0.1223 +0 0.0962 +0 0.0466 +0 0.1169 +0 0.1218 +0 0.1006 +0 0.0717 +0 0.1533 +0 0.0776 +0 0.0923 +0 0.0743 +0 0.0722 +0 0.1165 +0 0.3074 +0 0.1545 +0 0.1217 +0 0.3976 +0 0.0395 +0 0.1020 +0 0.0905 +0 0.0880 +0 0.0790 +0 0.1305 +0 0.0755 +0 0.0933 +0 0.2501 +0 0.1654 +0 0.0490 +0 0.1096 +0 0.0792 +0 0.0430 +0 0.0770 +0 0.4801 +0 0.0552 +0 0.1220 +0 0.1644 +0 0.2305 +0 0.1126 +0 0.0701 +0 0.0648 +0 0.1846 +0 0.2144 +0 0.1390 +0 0.1214 +0 0.0660 +0 0.1258 +0 0.1283 +0 0.0958 +0 0.1669 +0 0.2130 +0 0.1697 +0 0.0720 +0 0.0766 +0 0.0823 +0 0.3171 +0 0.3447 +0 0.0765 +0 0.0414 +0 0.0838 +0 0.2169 +0 0.1654 +0 0.1093 +0 0.0935 +0 0.0720 +0 0.0588 +0 0.1343 +0 0.1065 +0 0.1437 +0 0.0701 +0 0.0616 +0 0.1117 +0 0.0671 +0 0.1521 +0 0.1270 +0 0.0579 +0 0.1538 +0 0.2302 +0 0.1288 +0 0.1736 +0 0.2477 +0 0.0536 +0 0.0520 +1 0.7757 +0 0.0978 +0 0.1185 +0 0.0482 +0 0.2344 +0 0.0636 +0 0.0991 +0 0.0401 +0 0.1799 +0 0.1237 +0 0.2099 +0 0.1096 +0 0.1179 +0 0.3914 +0 0.0434 +0 0.0463 +0 0.1173 +0 0.0993 +0 0.0846 +0 0.1286 +0 0.1725 +0 0.3691 +0 0.3767 +0 0.0902 +0 0.0601 +0 0.1274 +0 0.1239 +1 0.7876 +0 0.3290 +0 0.1296 +0 0.0816 +0 0.0795 +0 0.1611 +0 0.0676 +0 0.0407 +0 0.3432 +0 0.0826 +0 0.1317 +0 0.1643 +0 0.1163 +0 0.1143 +0 0.0521 +0 0.6490 +0 0.0853 +0 0.2508 +0 0.3808 +0 0.4385 +0 0.0986 +0 0.0799 +0 0.1314 +0 0.1380 +0 0.0874 +0 0.1061 +0 0.1983 +0 0.2125 +0 0.0411 +0 0.1078 +0 0.1209 +0 0.2742 +0 0.0504 +0 0.0514 +0 0.2133 +0 0.1344 +0 0.0616 +0 0.0936 +0 0.1987 +0 0.0974 +0 0.2372 +0 0.0696 +0 0.1973 +0 0.1324 +0 0.0841 +0 0.1124 +0 0.2714 +0 0.1612 +0 0.2853 +0 0.1051 +0 0.1599 +0 0.1473 +0 0.6126 +0 0.1345 +0 0.0942 +0 0.1040 +0 0.1185 +0 0.1876 +0 0.1108 +0 0.0848 +0 0.0659 +0 0.1167 +0 0.1350 +0 0.1110 +0 0.0573 +0 0.2666 +0 0.1385 +0 0.0500 +0 0.0867 +0 0.1008 +0 0.0691 +0 0.0922 +0 0.0790 +0 0.0751 +0 0.1809 +0 0.1178 +0 0.0662 +0 0.0986 +0 0.0565 +0 0.1766 +0 0.1104 +0 0.0662 +0 0.1489 +0 0.0852 +0 0.1893 +0 0.0863 +0 0.1027 +0 0.2423 +0 0.0672 +0 0.6654 +0 0.0371 +0 0.3639 +0 0.1412 +0 0.0350 +0 0.2141 +1 0.7656 +0 0.0779 +0 0.7234 +0 0.0793 +0 0.1083 +0 0.2466 +0 0.1825 +0 0.1169 +0 0.0768 +0 0.1131 +0 0.0511 +0 0.0771 +0 0.0575 +0 0.0996 +0 0.2425 +0 0.1268 +0 0.0422 +0 0.1050 +0 0.0683 +0 0.1282 +0 0.1631 +0 0.0807 +0 0.1598 +0 0.1090 +0 0.0550 +0 0.0865 +0 0.0757 +0 0.3542 +0 0.5543 +0 0.0773 +0 0.0941 +0 0.1235 +0 0.1461 +0 0.1439 +0 0.0723 +0 0.1069 +0 0.0965 +0 0.2367 +0 0.1495 +0 0.0909 +0 0.1851 +0 0.0874 +0 0.0524 +0 0.0549 +0 0.0842 +0 0.1478 +0 0.1285 +0 0.1830 +0 0.0762 +0 0.0847 +0 0.1008 +0 0.1006 +0 0.2368 +0 0.1492 +0 0.1384 +0 0.0571 +0 0.0431 +0 0.1809 +0 0.3631 +0 0.0458 +0 0.1593 +0 0.1961 +0 0.0885 +0 0.7111 +0 0.2668 +0 0.0368 +0 0.0379 +0 0.1190 +0 0.1393 +0 0.0804 +0 0.1572 +0 0.0735 +0 0.0761 +0 0.1133 +0 0.0338 +0 0.0791 +0 0.2398 +0 0.0950 +0 0.0309 +0 0.2751 +0 0.0850 +0 0.1626 +0 0.2403 +0 0.0396 +0 0.2411 +0 0.2603 +0 0.1410 +0 0.1069 +0 0.0580 +0 0.1140 +0 0.4522 +0 0.0839 +0 0.1626 +0 0.0713 +0 0.1360 +0 0.0549 +0 0.1751 +0 0.0718 +0 0.1486 +0 0.0433 +0 0.0481 +0 0.0595 +0 0.5288 +0 0.7433 +0 0.1094 +0 0.1202 +0 0.1224 +0 0.1536 +0 0.3404 +0 0.1523 +0 0.1764 +0 0.0850 +0 0.0869 +0 0.0636 +0 0.7200 +1 0.7845 +0 0.6602 +0 0.2240 +0 0.4155 +0 0.2179 +0 0.1704 +0 0.2431 +0 0.1349 +0 0.0763 +0 0.0862 +0 0.0419 +0 0.1265 +0 0.1056 +0 0.4241 +0 0.1702 +0 0.5872 +0 0.0538 +0 0.1323 +0 0.1526 +0 0.1464 +0 0.2829 +0 0.1177 +0 0.1309 +0 0.0416 +0 0.0745 +0 0.1198 +0 0.1079 +0 0.0764 +1 0.7796 +0 0.1055 +0 0.0750 +0 0.0644 +0 0.0605 +0 0.1367 +0 0.2527 +0 0.0433 +0 0.1246 +0 0.1404 +0 0.1215 +0 0.1921 +0 0.4096 +0 0.1828 +0 0.0543 +0 0.2583 +0 0.3179 +0 0.0690 +0 0.0348 +0 0.0932 +0 0.0552 +0 0.0517 +0 0.3353 +0 0.2296 +0 0.0697 +0 0.1522 +0 0.0672 +0 0.1628 +0 0.0660 +0 0.6573 +0 0.1077 +0 0.3187 +0 0.0903 +0 0.0666 +0 0.2813 +0 0.0375 +0 0.2011 +0 0.0604 +0 0.1861 +0 0.1207 +0 0.1248 +0 0.0378 +0 0.0804 +0 0.2793 +0 0.0801 +0 0.1911 +0 0.2814 +0 0.0725 +0 0.1424 +0 0.1575 +0 0.0958 +0 0.0876 +0 0.0794 +0 0.0893 +0 0.5291 +0 0.0666 +0 0.0465 +0 0.2125 +0 0.1690 +0 0.0572 +0 0.0513 +0 0.0668 +0 0.1524 +0 0.0481 +0 0.0876 +0 0.1210 +0 0.1066 +0 0.1053 +1 0.7990 +0 0.1340 +0 0.0838 +0 0.0824 +0 0.0829 +0 0.0490 +0 0.1081 +0 0.1826 +0 0.1558 +0 0.1214 +0 0.0436 +0 0.1144 +0 0.0393 +0 0.2070 +0 0.0937 +0 0.0750 +0 0.1295 +0 0.3494 +0 0.0634 +0 0.1941 +0 0.1526 +0 0.7408 +0 0.1637 +0 0.0978 +0 0.1111 +0 0.1409 +0 0.2005 +0 0.0620 +0 0.0598 +0 0.0403 +0 0.0715 +0 0.0629 +0 0.0964 +0 0.1281 +0 0.0574 +0 0.2208 +0 0.1585 +0 0.1549 +0 0.1196 +0 0.2239 +0 0.0711 +0 0.0605 +0 0.0778 +0 0.0625 +0 0.0666 +0 0.0794 +0 0.1125 +0 0.1968 +0 0.0585 +0 0.0543 +1 0.8201 +0 0.3376 +0 0.0761 +0 0.0540 +0 0.0580 +0 0.0871 +0 0.2175 +0 0.0721 +0 0.0687 +0 0.3601 +0 0.0629 +0 0.1040 +0 0.0991 +0 0.0940 +0 0.0789 +0 0.0406 +0 0.0545 +0 0.0822 +0 0.0652 +0 0.1730 +0 0.0309 +0 0.1196 +0 0.2192 +0 0.0714 +0 0.0352 +0 0.0622 +0 0.1853 +0 0.1334 +0 0.0749 +0 0.0651 +0 0.0849 +0 0.1856 +0 0.0540 +0 0.1013 +0 0.0507 +0 0.3750 +1 0.7736 +0 0.4525 +0 0.1354 +0 0.0832 +0 0.0386 +0 0.0465 +0 0.1318 +0 0.4322 +0 0.1339 +0 0.1362 +0 0.3110 +0 0.0795 +0 0.3076 +0 0.0777 +0 0.0574 +0 0.0873 +0 0.1058 +0 0.1561 +0 0.0950 +0 0.0728 +0 0.0631 +0 0.0653 +0 0.0876 +0 0.0648 +0 0.1025 +0 0.0896 +0 0.3124 +0 0.0678 +0 0.1701 +0 0.0863 +0 0.0713 +0 0.1308 +1 0.7563 +0 0.0713 +0 0.1698 +0 0.5135 +0 0.1745 +0 0.1361 +0 0.0340 +0 0.1349 +0 0.0885 +0 0.0888 +0 0.0807 +0 0.1715 +0 0.0612 +0 0.1060 +0 0.1838 +0 0.0994 +0 0.1575 +0 0.0525 +0 0.0879 +0 0.2632 +0 0.1189 +0 0.7327 +0 0.1086 +0 0.2006 +0 0.1210 +0 0.0666 +0 0.0441 +0 0.0532 +0 0.2470 +0 0.0773 +0 0.0942 +0 0.0554 +0 0.1468 +0 0.1083 +0 0.6621 +0 0.1870 +0 0.2148 +0 0.2096 +0 0.1041 +0 0.1003 +0 0.1440 +0 0.1680 +0 0.1152 +0 0.0746 +0 0.4840 +0 0.0395 +0 0.0460 +0 0.0771 +0 0.1449 +0 0.2961 +0 0.1522 +0 0.1378 +0 0.2335 +0 0.1047 +0 0.1141 +1 0.8622 +0 0.1155 +0 0.0754 +0 0.1343 +0 0.1045 +0 0.0757 +0 0.0862 +0 0.0568 +0 0.1463 +0 0.1837 +0 0.0479 +0 0.0618 +0 0.2110 +0 0.0486 +0 0.1075 +0 0.1048 +0 0.1905 +0 0.0756 +1 0.8716 +0 0.1454 +0 0.1611 +0 0.2080 +0 0.1568 +0 0.1876 +0 0.0456 +0 0.0520 +0 0.1334 +0 0.0916 +0 0.0889 +0 0.1712 +0 0.1658 +0 0.1919 +0 0.1658 +0 0.1083 +0 0.1885 +0 0.0360 +0 0.1507 +0 0.0878 +0 0.1968 +0 0.1617 +0 0.0363 +0 0.0598 +0 0.1281 +0 0.0440 +0 0.0791 +0 0.0418 +0 0.0901 +0 0.0810 +0 0.1222 +0 0.0707 +0 0.1960 +0 0.0936 +0 0.1086 +0 0.0734 +0 0.0886 +0 0.3763 +0 0.1022 +0 0.2151 +0 0.1467 +0 0.0672 +0 0.0778 +0 0.0565 +0 0.0849 +0 0.0714 +0 0.0495 +0 0.1774 +0 0.0593 +0 0.0615 +0 0.4300 +0 0.0598 +0 0.0938 +0 0.0847 +0 0.5737 +0 0.0609 +0 0.1153 +0 0.1264 +0 0.1353 +0 0.0590 +0 0.1167 +0 0.2525 +0 0.0720 +0 0.0893 +0 0.0673 +1 0.7814 +0 0.0607 +0 0.1208 +0 0.0929 +0 0.1863 +0 0.0815 +0 0.3605 +0 0.0948 +0 0.2066 +0 0.1754 +0 0.1156 +0 0.0576 +0 0.0566 +0 0.0761 +0 0.1062 +0 0.0772 +0 0.1134 +0 0.1257 +0 0.1379 +0 0.2378 +0 0.0536 +0 0.2187 +0 0.0895 +0 0.2494 +0 0.2068 +0 0.0749 +1 0.8431 +0 0.0938 +0 0.0378 +0 0.1340 +0 0.0909 +0 0.0673 +0 0.1362 +0 0.1318 +0 0.0936 +0 0.1283 +0 0.0880 +0 0.0603 +0 0.0840 +0 0.0800 +0 0.1998 +0 0.0747 +0 0.2188 +0 0.3175 +0 0.0689 +0 0.1785 +0 0.3999 +0 0.1381 +0 0.2214 +0 0.0504 +0 0.0468 +0 0.0464 +0 0.0408 +0 0.6077 +0 0.0691 +0 0.1934 +0 0.3181 +0 0.1010 +0 0.0930 +0 0.0956 +0 0.1146 +0 0.1388 +0 0.2062 +0 0.1385 +0 0.0763 +0 0.0721 +0 0.0446 +0 0.1327 +0 0.1141 +0 0.1038 +0 0.0846 +0 0.2815 +0 0.0635 +0 0.0864 +0 0.1731 +0 0.0805 +0 0.1080 +0 0.1141 +0 0.0746 +0 0.1465 +0 0.3827 +0 0.1074 +0 0.0431 +0 0.4622 +0 0.1031 +0 0.0524 +0 0.2440 +0 0.0537 +0 0.3408 +0 0.3388 +0 0.0879 +0 0.0831 +0 0.1530 +0 0.1146 +1 0.8194 +0 0.0484 +0 0.1314 +0 0.0417 +0 0.0697 +0 0.1239 +0 0.0802 +0 0.0992 +0 0.2124 +0 0.0490 +0 0.4993 +0 0.1435 +0 0.0432 +0 0.0403 +0 0.2749 +0 0.0439 +0 0.1791 +0 0.1063 +0 0.1243 +0 0.2406 +0 0.0667 +0 0.0860 +0 0.5884 +0 0.2784 +0 0.2007 +0 0.0322 +0 0.1113 +0 0.0901 +0 0.1196 +0 0.0332 +0 0.1499 +0 0.1887 +0 0.0969 +0 0.1218 +0 0.1056 +0 0.0754 +0 0.1450 +0 0.4967 +0 0.1152 +0 0.0705 +0 0.1200 +0 0.0617 +0 0.1852 +0 0.1809 +0 0.0878 +0 0.2827 +0 0.0927 +0 0.1119 +0 0.0406 +0 0.0676 +0 0.0949 +0 0.0950 +0 0.0826 +0 0.0991 +0 0.0480 +0 0.1523 +0 0.0317 +0 0.1027 +0 0.0964 +0 0.0794 +0 0.0659 +0 0.0777 +0 0.0822 +0 0.1031 +0 0.1199 +0 0.0553 +0 0.0776 +0 0.1614 +0 0.0528 +0 0.1305 +0 0.0380 +0 0.0905 +0 0.0867 +0 0.5123 +0 0.1624 +0 0.0457 +0 0.0805 +0 0.3101 +0 0.1790 +0 0.3065 +0 0.1058 +0 0.0574 +1 0.8734 +0 0.0828 +0 0.2363 +0 0.1504 +0 0.0710 +0 0.0431 +0 0.1551 +0 0.1943 +0 0.2701 +0 0.0848 +0 0.2321 +0 0.0495 +0 0.0979 +0 0.0741 +0 0.0980 +0 0.1034 +0 0.1118 +0 0.1187 +0 0.0866 +0 0.1150 +0 0.1357 +0 0.1006 +0 0.1322 +0 0.3930 +0 0.1992 +0 0.1055 +0 0.0302 +0 0.0895 +0 0.1787 +0 0.1279 +0 0.2731 +0 0.0985 +0 0.1000 +0 0.2663 +0 0.4222 +0 0.0589 +0 0.0508 +0 0.6954 +0 0.4004 +0 0.0819 +0 0.6683 +0 0.0528 +0 0.0611 +0 0.0895 +0 0.7253 +0 0.0759 +0 0.1555 +0 0.1361 +0 0.2708 +0 0.0855 +0 0.0672 +0 0.2229 +0 0.3153 +0 0.0896 +0 0.0526 +0 0.0677 +0 0.0594 +0 0.1087 +0 0.0699 +0 0.1175 +0 0.0539 +0 0.1290 +0 0.0739 +0 0.0402 +0 0.0691 +0 0.1999 +0 0.2741 +0 0.0420 +0 0.1378 +0 0.2145 +0 0.0953 +0 0.1305 +0 0.1682 +0 0.1510 +0 0.0713 +0 0.1015 +1 0.9138 +0 0.1213 +0 0.1834 +0 0.0930 +0 0.1028 +0 0.1243 +0 0.0491 +0 0.0595 +0 0.0807 +0 0.1788 +0 0.1230 +0 0.1623 +0 0.0389 +0 0.2425 +0 0.1469 +0 0.0565 +1 0.7753 +0 0.0946 +1 0.8838 +0 0.1051 +0 0.0800 +0 0.0941 +0 0.0643 +0 0.1710 +0 0.0473 +0 0.1760 +0 0.1258 +0 0.7018 +1 0.7711 +0 0.1020 +0 0.0507 +0 0.0441 +0 0.2159 +0 0.1409 +0 0.0676 +0 0.0605 +0 0.3546 +0 0.0633 +0 0.0631 +0 0.2711 +0 0.0940 +0 0.0899 +0 0.1397 +0 0.1217 +0 0.0832 +0 0.0772 +0 0.0715 +0 0.1736 +0 0.1512 +0 0.1893 +0 0.0599 +0 0.0502 +0 0.1144 +0 0.0698 +0 0.1425 +0 0.0736 +0 0.3377 +0 0.0388 +0 0.2509 +0 0.1716 +0 0.2006 +0 0.1429 +0 0.1700 +0 0.1083 +0 0.1075 +0 0.0448 +0 0.2032 +0 0.0616 +0 0.1142 +0 0.1364 +0 0.0893 +0 0.0843 +0 0.0510 +0 0.0683 +0 0.0612 +0 0.0667 +0 0.1165 +0 0.0995 +0 0.0893 +0 0.1729 +0 0.1424 +0 0.0800 +0 0.2054 +0 0.2162 +0 0.4176 +0 0.1221 +0 0.1351 +0 0.0816 +0 0.1442 +0 0.1808 +0 0.1681 +0 0.0908 +0 0.1600 +0 0.0801 +0 0.1758 +0 0.1640 +0 0.0843 +0 0.1092 +0 0.0912 +0 0.1130 +0 0.0610 +0 0.1183 +0 0.4934 +0 0.1167 +0 0.1003 +0 0.1150 +0 0.0717 +0 0.0719 +0 0.1602 +0 0.1602 +0 0.1701 +0 0.1004 +0 0.0962 +0 0.1804 +0 0.1367 +0 0.4583 +0 0.1615 +0 0.2275 +0 0.1429 +0 0.1895 +0 0.3354 +0 0.3066 +0 0.4542 +0 0.6699 +0 0.0564 +0 0.1363 +0 0.0932 +0 0.1336 +0 0.0609 +0 0.2234 +0 0.1385 +0 0.2484 +0 0.1468 +0 0.2451 +0 0.1041 +0 0.0835 +0 0.0612 +0 0.0583 +0 0.0626 +0 0.1018 +0 0.2328 +0 0.1904 +0 0.1082 +0 0.1236 +0 0.0746 +0 0.1483 +0 0.5184 +0 0.1340 +0 0.1014 +1 0.7784 +0 0.1715 +0 0.1375 +0 0.1457 +0 0.0665 +0 0.0695 +0 0.1312 +0 0.1004 +0 0.3246 +0 0.1109 +0 0.1059 +0 0.1436 +0 0.1751 +0 0.0472 +0 0.1348 +0 0.1010 +0 0.1382 +0 0.1414 +0 0.7395 +0 0.0373 +0 0.1141 +0 0.0839 +0 0.2204 +0 0.0779 +0 0.1098 +0 0.0817 +0 0.1050 +0 0.1446 +0 0.0458 +0 0.0996 +0 0.1022 +0 0.1110 +0 0.0392 +0 0.1014 +0 0.2178 +0 0.0781 +0 0.1051 +0 0.0996 +0 0.1467 +0 0.1255 +0 0.0993 +0 0.0571 +0 0.0750 +0 0.0777 +0 0.5062 +0 0.0652 +0 0.0486 +0 0.3475 +0 0.1001 +0 0.1811 +0 0.0621 +0 0.1916 +0 0.3282 +0 0.1096 +0 0.1193 +0 0.1303 +0 0.0954 +0 0.1012 +0 0.0658 +0 0.0355 +0 0.0574 +0 0.4560 +0 0.0978 +0 0.1125 +0 0.0851 +0 0.1074 +0 0.0537 +0 0.2306 +0 0.3260 +0 0.2611 +0 0.0681 +0 0.1716 +0 0.1598 +0 0.0938 +0 0.1203 +0 0.6781 +0 0.0745 +0 0.4333 +0 0.0779 +0 0.2301 +0 0.0823 +0 0.1517 +0 0.0804 +0 0.1464 +0 0.0875 +0 0.7391 +0 0.0654 +0 0.5124 +0 0.1285 +0 0.0428 +0 0.2666 +0 0.2148 +0 0.1599 +0 0.1750 +0 0.1253 +0 0.1131 +0 0.0370 +0 0.6206 +0 0.0978 +0 0.0845 +0 0.0969 +0 0.0637 +0 0.0954 +0 0.0734 +0 0.1042 +0 0.0646 +0 0.0700 +0 0.1048 +0 0.1388 +0 0.0889 +0 0.0730 +0 0.2087 +0 0.1025 +0 0.0596 +0 0.0552 +0 0.1122 +0 0.1560 +0 0.2830 +0 0.1072 +0 0.0741 +0 0.2117 +0 0.1115 +0 0.0654 +0 0.1005 +0 0.0965 +0 0.0702 +0 0.1979 +0 0.0477 +0 0.0857 +0 0.0867 +0 0.1348 +0 0.0946 +0 0.1868 +0 0.0845 +0 0.1437 +0 0.1589 +0 0.2195 +0 0.2147 +0 0.1786 +0 0.1065 +0 0.0449 +0 0.0955 +0 0.1386 +0 0.1708 +0 0.6318 +0 0.1002 +0 0.0435 +0 0.0520 +1 0.7652 +0 0.0568 +0 0.0416 +0 0.0812 +0 0.1252 +0 0.1980 +0 0.1050 +0 0.1220 +1 0.8494 +0 0.2290 +0 0.1445 +0 0.0472 +0 0.3225 +0 0.0928 +0 0.0760 +0 0.6019 +0 0.0532 +0 0.0607 +0 0.0958 +0 0.1464 +0 0.0594 +0 0.1436 +0 0.4577 +0 0.0774 +0 0.0753 +0 0.4315 +0 0.0671 +0 0.1153 +0 0.0824 +0 0.1144 +0 0.0893 +0 0.1379 +0 0.1445 +0 0.2211 +0 0.2500 +0 0.7009 +0 0.2064 +0 0.1158 +0 0.0642 +0 0.1797 +0 0.0624 +0 0.0769 +0 0.0660 +0 0.0714 +0 0.1654 +0 0.0606 +0 0.0563 +0 0.1107 +0 0.0756 +0 0.0750 +0 0.0642 +0 0.0688 +0 0.1315 +0 0.2415 +0 0.2477 +0 0.1856 +0 0.0787 +0 0.1838 +0 0.1339 +0 0.2343 +0 0.0954 +0 0.1111 +0 0.2093 +0 0.1059 +0 0.0796 +0 0.0457 +0 0.5034 +0 0.1511 +0 0.0811 +0 0.0917 +0 0.0442 +0 0.1278 +0 0.1865 +0 0.0589 +0 0.1474 +0 0.1251 +0 0.3093 +0 0.0751 +0 0.0578 +0 0.0571 +0 0.0622 +0 0.3175 +0 0.0655 +0 0.5617 +0 0.1236 +0 0.1268 +0 0.0553 +0 0.2680 +0 0.0293 +0 0.1162 +0 0.1592 +0 0.1047 +0 0.0838 +0 0.0906 +0 0.1439 +0 0.1346 +0 0.1489 +0 0.0607 +0 0.1936 +0 0.1488 +0 0.4159 +0 0.2070 +0 0.0391 +0 0.3425 +0 0.1027 +0 0.1040 +0 0.1410 +0 0.0769 +0 0.1070 +0 0.0523 +0 0.0684 +0 0.0608 +0 0.1154 +0 0.0653 +0 0.0989 +0 0.2244 +0 0.0431 +0 0.0662 +0 0.0795 +0 0.1249 +0 0.0661 +0 0.0610 +0 0.2432 +0 0.2434 +0 0.0604 +0 0.1642 +0 0.0479 +0 0.0908 +0 0.2689 +0 0.0775 +0 0.1001 +0 0.1110 +0 0.5145 +0 0.1259 +0 0.1720 +0 0.0965 +0 0.1717 +0 0.0826 +0 0.0901 +0 0.1211 +0 0.0587 +0 0.1390 +0 0.0590 +0 0.0801 +0 0.0865 +0 0.0855 +0 0.1413 +0 0.0621 +0 0.1049 +0 0.2262 +0 0.2157 +0 0.2750 +0 0.0460 +0 0.0394 +0 0.0448 +0 0.2516 +0 0.1555 +0 0.7050 +0 0.1406 +0 0.3010 +0 0.1561 +0 0.0661 +0 0.0744 +0 0.0624 +0 0.1929 +0 0.2500 +0 0.0715 +0 0.0784 +0 0.0782 +0 0.0617 +0 0.0830 +0 0.0961 +0 0.0855 +0 0.0451 +0 0.1422 +0 0.1200 +0 0.2778 +0 0.1162 +0 0.0659 +0 0.0691 +0 0.1188 +0 0.0388 +0 0.1364 +0 0.2566 +0 0.0984 +0 0.0991 +0 0.0660 +0 0.0760 +0 0.1984 +0 0.0939 +0 0.1221 +0 0.0968 +0 0.0479 +0 0.0621 +0 0.1171 +0 0.0503 +0 0.1878 +0 0.1056 +0 0.0804 +1 0.7873 +0 0.1241 +0 0.2240 +0 0.1460 +0 0.0923 +0 0.2024 +0 0.0897 +0 0.1183 +0 0.0516 +0 0.4988 +0 0.1400 +0 0.0751 +0 0.0967 +0 0.0854 +0 0.0933 +0 0.0708 +0 0.1096 +0 0.1265 +0 0.0655 +0 0.0875 +0 0.2250 +0 0.0812 +0 0.0413 +0 0.7489 +0 0.1379 +0 0.1220 +0 0.0617 +0 0.0963 +0 0.1142 +0 0.5831 +0 0.0977 +0 0.6412 +0 0.1386 +0 0.2220 +0 0.1230 +0 0.0814 +0 0.0656 +0 0.1012 +0 0.0914 +0 0.3013 +0 0.1399 +0 0.1122 +0 0.1198 +0 0.2827 +0 0.0635 +0 0.2040 +0 0.0787 +0 0.0945 +0 0.0602 +0 0.0727 +0 0.0569 +0 0.4798 +0 0.1681 +0 0.0927 +0 0.0572 +0 0.0990 +0 0.1197 +0 0.0514 +0 0.0894 +0 0.1461 +0 0.2444 +1 0.7882 +0 0.5184 +0 0.1771 +0 0.3627 +0 0.0555 +0 0.1288 +0 0.0890 +0 0.0804 +1 0.7544 +0 0.5983 +0 0.0566 +0 0.0772 +0 0.0559 +0 0.1168 +0 0.1417 +0 0.1158 +0 0.0754 +0 0.3756 +0 0.4012 +0 0.0643 +0 0.2965 +0 0.0654 +0 0.5432 +0 0.0955 +0 0.0612 +0 0.4044 +0 0.2632 +0 0.0582 +0 0.1366 +0 0.2202 +0 0.2216 +0 0.1151 +0 0.2834 +0 0.1219 +0 0.0582 +0 0.1199 +0 0.5193 +0 0.2680 +0 0.3434 +0 0.0712 +0 0.1626 +0 0.0675 +0 0.0452 +0 0.1743 +0 0.0890 +0 0.0462 +0 0.1063 +0 0.0856 +0 0.1282 +0 0.0565 +0 0.1062 +0 0.0335 +0 0.0405 +0 0.1341 +0 0.0895 +0 0.6982 +0 0.1208 +0 0.2115 +0 0.0403 +0 0.0564 +0 0.0828 +0 0.1021 +0 0.0566 +0 0.1094 +0 0.0681 +0 0.3240 +0 0.0740 +0 0.0856 +0 0.1514 +0 0.1474 +0 0.2999 +0 0.1453 +0 0.0687 +0 0.0779 +0 0.0736 +0 0.2368 +0 0.0593 +0 0.0793 +0 0.2307 +0 0.1286 +0 0.0803 +0 0.1264 +0 0.1219 +0 0.2010 +0 0.7167 +0 0.0641 +0 0.1873 +0 0.0575 +0 0.1116 +0 0.7372 +0 0.1105 +0 0.0584 +0 0.0361 +0 0.0716 +0 0.0834 +0 0.0651 +0 0.1219 +0 0.3351 +0 0.2992 +0 0.2742 +0 0.1179 +0 0.1228 +0 0.1591 +0 0.1424 +0 0.0689 +0 0.1829 +0 0.0961 +0 0.1644 +0 0.0631 +0 0.0701 +0 0.1237 +0 0.0838 +0 0.1079 +0 0.1719 +0 0.0335 +0 0.1014 +0 0.1613 +0 0.3391 +0 0.0989 +0 0.0453 +0 0.1529 +0 0.1580 +0 0.1270 +0 0.7407 +0 0.0682 +0 0.0527 +0 0.0599 +0 0.0669 +0 0.2860 +0 0.1361 +0 0.1336 +0 0.1755 +0 0.1098 +0 0.1281 +0 0.1239 +0 0.1356 +0 0.0721 +0 0.1803 +0 0.1933 +0 0.0925 +0 0.1362 +0 0.1730 +0 0.0717 +0 0.1946 +0 0.0665 +0 0.1669 +0 0.0482 +0 0.0680 +0 0.1698 +0 0.2368 +0 0.1187 +0 0.0569 +0 0.0678 +0 0.1145 +0 0.4422 +0 0.0868 +0 0.2423 +0 0.1487 +0 0.2057 +0 0.1621 +0 0.0991 +0 0.0680 +0 0.0858 +0 0.1033 +0 0.0613 +0 0.6814 +1 0.7878 +0 0.1625 +0 0.2749 +0 0.0500 +0 0.0777 +0 0.1597 +0 0.1714 +0 0.4021 +0 0.1210 +0 0.0943 +0 0.0795 +0 0.0716 +0 0.0910 +1 0.8263 +0 0.0490 +0 0.1210 +0 0.2526 +0 0.1167 +0 0.4808 +0 0.0807 +0 0.1036 +0 0.0952 +0 0.1100 +0 0.1171 +0 0.4284 +0 0.0996 +0 0.1456 +1 0.8175 +0 0.1010 +0 0.0755 +0 0.1496 +0 0.1525 +0 0.1498 +0 0.5325 +0 0.1821 +0 0.1038 +0 0.6043 +0 0.0548 +0 0.2185 +0 0.0813 +0 0.1311 +0 0.1812 +0 0.0885 +0 0.0935 +0 0.1078 +0 0.0728 +0 0.0718 +0 0.0839 +0 0.0597 +0 0.3255 +0 0.3433 +0 0.0739 +0 0.0663 +1 0.8764 +0 0.2133 +0 0.0973 +0 0.2208 +0 0.0806 +0 0.0682 +0 0.2526 +0 0.1199 +0 0.0521 +1 0.7927 +0 0.0477 +0 0.0692 +0 0.0805 +0 0.1944 +0 0.0811 +0 0.1269 +0 0.4428 +0 0.1233 +0 0.1761 +0 0.2198 +0 0.1092 +0 0.4413 +0 0.1052 +0 0.1140 +0 0.0786 +0 0.0659 +0 0.0669 +0 0.1582 +0 0.0924 +0 0.4459 +0 0.0681 +0 0.0868 +0 0.0676 +0 0.2358 +1 0.7733 +0 0.1492 +0 0.1179 +0 0.1002 +0 0.0853 +0 0.1605 +0 0.0403 +0 0.0833 +0 0.2419 +0 0.0832 +0 0.0642 +0 0.0777 +1 0.8131 +0 0.0933 +0 0.6823 +0 0.0410 +0 0.0374 +0 0.0859 +0 0.1613 +0 0.1505 +0 0.0381 +0 0.1984 +0 0.0660 +0 0.4180 +0 0.1593 +0 0.0997 +0 0.3811 +0 0.0885 +0 0.1084 +0 0.0938 +0 0.1731 +0 0.2486 +0 0.1124 +0 0.0755 +0 0.1204 +0 0.3243 +0 0.1545 +0 0.0606 +0 0.0547 +0 0.1359 +0 0.0607 +0 0.6311 +0 0.1003 +0 0.1216 +0 0.1110 +0 0.2008 +0 0.1269 +0 0.0752 +0 0.0481 +0 0.0927 +0 0.0797 +0 0.0461 +0 0.0770 +0 0.1505 +0 0.1373 +0 0.0956 +0 0.2995 +0 0.1159 +0 0.2588 +0 0.1284 +0 0.1065 +0 0.2201 +0 0.1078 +0 0.6956 +0 0.2515 +0 0.0433 +0 0.1878 +0 0.1561 +0 0.0836 +0 0.1239 +0 0.0630 +0 0.2978 +0 0.2793 +0 0.0998 +0 0.0911 +0 0.2590 +0 0.1405 +0 0.2107 +0 0.0584 +0 0.0927 +0 0.0625 +0 0.2492 +0 0.2245 +0 0.0805 +0 0.0667 +0 0.1552 +0 0.1754 +0 0.0887 +0 0.0737 +0 0.3412 +0 0.0912 +0 0.0734 +0 0.0492 +0 0.1719 +0 0.1317 +0 0.1203 +0 0.0939 +0 0.5066 +0 0.0477 +0 0.0986 +0 0.0754 +0 0.0573 +0 0.0709 +0 0.1122 +0 0.2068 +0 0.2499 +0 0.0800 +0 0.0556 +0 0.0983 +0 0.0814 +0 0.0777 +0 0.1011 +0 0.1824 +0 0.1033 +0 0.7130 +0 0.0874 +0 0.1218 +0 0.0732 +0 0.3620 +0 0.2030 +0 0.0838 +0 0.1042 +0 0.1797 +0 0.0581 +0 0.0993 +0 0.1337 +0 0.1190 +0 0.0701 +0 0.0702 +0 0.0762 +0 0.0703 +0 0.1650 +0 0.4120 +0 0.0729 +0 0.0732 +0 0.0853 +0 0.0978 +0 0.1364 +0 0.1047 +0 0.2249 +0 0.0816 +0 0.0508 +0 0.3222 +0 0.1088 +0 0.2705 +0 0.1192 +0 0.1692 +0 0.0571 +0 0.1359 +0 0.1551 +0 0.0906 +0 0.1659 +0 0.0705 +0 0.1111 +0 0.0839 +0 0.1519 +0 0.0998 +0 0.0922 +0 0.0671 +0 0.0734 +0 0.4575 +0 0.0921 +0 0.3837 +0 0.0842 +0 0.1129 +0 0.1165 +0 0.1423 +0 0.2463 +0 0.1049 +0 0.1887 +0 0.1177 +0 0.1233 +0 0.0770 +0 0.0743 +0 0.0478 +0 0.0623 +0 0.1616 +0 0.1201 +0 0.0415 +0 0.0920 +0 0.0608 +0 0.0951 +0 0.1154 +0 0.0729 +0 0.0449 +0 0.2052 +0 0.0712 +0 0.0600 +0 0.1148 +0 0.1198 +0 0.1328 +0 0.1095 +0 0.0788 +0 0.0557 +0 0.0765 +0 0.0974 +0 0.1040 +0 0.0894 +0 0.0827 +0 0.1243 +0 0.3695 +0 0.2325 +0 0.1214 +0 0.1144 +0 0.1551 +0 0.1218 +0 0.0812 +0 0.1737 +0 0.0694 +0 0.0615 +0 0.0955 +0 0.0711 +0 0.0533 +0 0.0477 +0 0.1202 +0 0.4714 +0 0.2158 +0 0.0508 +0 0.0370 +0 0.1096 +0 0.2203 +0 0.0897 +0 0.0912 +0 0.0920 +0 0.1700 +0 0.0707 +0 0.2331 +0 0.2110 +1 0.7851 +0 0.1280 +0 0.2529 +0 0.1405 +0 0.0640 +0 0.1561 +0 0.2959 +0 0.1115 +0 0.1386 +0 0.0987 +0 0.0556 +0 0.0390 +0 0.1531 +0 0.0566 +0 0.0722 +0 0.0555 +0 0.1521 +0 0.0879 +0 0.0796 +0 0.1183 +0 0.1532 +0 0.1242 +0 0.0921 +0 0.0603 +0 0.4951 +0 0.0761 +0 0.0487 +1 0.7812 +0 0.1174 +0 0.7306 +0 0.3538 +0 0.1056 +0 0.2285 +0 0.0460 +0 0.1162 +0 0.0479 +0 0.0921 +0 0.1213 +0 0.0519 +0 0.1394 +0 0.0821 +0 0.0786 +0 0.0385 +0 0.0553 +0 0.2178 +0 0.7326 +0 0.0763 +0 0.6911 +0 0.1348 +0 0.3050 +0 0.0851 +0 0.2176 +0 0.2708 +1 0.8571 +0 0.1133 +0 0.1045 +0 0.0470 +0 0.0536 +0 0.2718 +0 0.0634 +0 0.2252 +0 0.2353 +0 0.0408 +0 0.1229 +0 0.1426 +0 0.0334 +0 0.0755 +0 0.0391 +0 0.0518 +0 0.1328 +0 0.0900 +0 0.0596 +0 0.1692 +0 0.0315 +0 0.1444 +0 0.1279 +0 0.0696 +0 0.0531 +0 0.1304 +0 0.1020 +0 0.0832 +0 0.0663 +0 0.0454 +0 0.2082 +0 0.0891 +0 0.1168 +0 0.0567 +0 0.2397 +0 0.0988 +0 0.0704 +0 0.2132 +0 0.5246 +0 0.1081 +0 0.1288 +0 0.4006 +0 0.1417 +0 0.6361 +0 0.3381 +0 0.4234 +0 0.0391 +0 0.0386 +0 0.0720 +0 0.1559 +0 0.0607 +0 0.1733 +0 0.0680 +0 0.3089 +0 0.1669 +0 0.1972 +0 0.0753 +0 0.0592 +0 0.1200 +0 0.1966 +0 0.0696 +0 0.0610 +0 0.1528 +0 0.0510 +1 0.8580 +0 0.1048 +0 0.0974 +0 0.0720 +0 0.3049 +0 0.1522 +0 0.0621 +0 0.0824 +0 0.0798 +0 0.0696 +0 0.0394 +0 0.4592 +0 0.0618 +0 0.2299 +0 0.1681 +0 0.0503 +0 0.0719 +0 0.2213 +0 0.3959 +0 0.0685 +0 0.3813 +0 0.0902 +0 0.2612 +0 0.1387 +0 0.0812 +0 0.1014 +0 0.1108 +0 0.1979 +0 0.1817 +0 0.1035 +0 0.1079 +0 0.1173 +0 0.1213 +0 0.0561 +0 0.1665 +0 0.0570 +0 0.0891 +0 0.1902 +0 0.2065 +0 0.1121 +0 0.2460 +0 0.1043 +0 0.1458 +0 0.0713 +0 0.0596 +0 0.0734 +0 0.0873 +0 0.3158 +0 0.0873 +0 0.1130 +0 0.0552 +0 0.0719 +0 0.0403 +0 0.0629 +0 0.0679 +0 0.2369 +0 0.7414 +0 0.0977 +0 0.0425 +0 0.0432 +0 0.1986 +0 0.1075 +0 0.1022 +0 0.3410 +0 0.2594 +0 0.0773 +0 0.0957 +0 0.2453 +0 0.1632 +0 0.0892 +0 0.0948 +0 0.1008 +0 0.0768 +0 0.1854 +0 0.0845 +0 0.1858 +0 0.0997 +0 0.2945 +0 0.0559 +0 0.0646 +0 0.1960 +0 0.1282 +0 0.1192 +0 0.1144 +0 0.4671 +0 0.1729 +0 0.0400 +0 0.1030 +0 0.0391 +0 0.0568 +1 0.8577 +0 0.1225 +0 0.1023 +0 0.0647 +0 0.0745 +0 0.1258 +0 0.1191 +0 0.0709 +0 0.1113 +0 0.0656 +0 0.0544 +0 0.1535 +0 0.2025 +0 0.0550 +0 0.0579 +0 0.1092 +0 0.0442 +0 0.0647 +0 0.0680 +0 0.1004 +0 0.0568 +0 0.0501 +0 0.0922 +0 0.0518 +0 0.0609 +0 0.5021 +0 0.0427 +0 0.2347 +0 0.3721 +0 0.0587 +0 0.2857 +0 0.0360 +0 0.1354 +0 0.0938 +0 0.1200 +0 0.1215 +0 0.4679 +0 0.2468 +0 0.0674 +0 0.1187 +0 0.0379 +0 0.1743 +0 0.0623 +0 0.0757 +0 0.0985 +0 0.2390 +0 0.0602 +0 0.0414 +0 0.0848 +0 0.0633 +0 0.0943 +0 0.1287 +0 0.1304 +0 0.2684 +0 0.0987 +0 0.3190 +0 0.1421 +0 0.0377 +0 0.1320 +0 0.0400 +0 0.0897 +0 0.0935 +0 0.1290 +0 0.0826 +0 0.0522 +0 0.1085 +0 0.0494 +0 0.1266 +0 0.2174 +0 0.1081 +0 0.1502 +0 0.0992 +0 0.2337 +0 0.0616 +0 0.0808 +0 0.0665 +0 0.2146 +0 0.1562 +1 0.4481 +0 0.1098 +0 0.0396 +0 0.0887 +0 0.1753 +0 0.1214 +0 0.1561 +0 0.0643 +0 0.0764 +0 0.1245 +0 0.0706 +0 0.1239 +0 0.0668 +0 0.1158 +1 0.7922 +0 0.0421 +0 0.1000 +0 0.1755 +0 0.0487 +0 0.1756 +0 0.1116 +0 0.1149 +0 0.0402 +0 0.1244 +0 0.1426 +0 0.1176 +0 0.0993 +0 0.1304 +0 0.0977 +0 0.6387 +0 0.3161 +0 0.1812 +0 0.2938 +0 0.1757 +0 0.0726 +0 0.1269 +0 0.1825 +0 0.1319 +0 0.1104 +0 0.1289 +0 0.0785 +0 0.1083 +0 0.1882 +0 0.0976 +0 0.0666 +0 0.0476 +0 0.1815 +0 0.0815 +0 0.7429 +0 0.1081 +0 0.0621 +0 0.1070 +0 0.0826 +1 0.8276 +0 0.4409 +0 0.0549 +0 0.1185 +0 0.0661 +0 0.2515 +0 0.0761 +0 0.0538 +0 0.0978 +0 0.0726 +0 0.0536 +0 0.0591 +0 0.1055 +0 0.1615 +0 0.2104 +0 0.0638 +0 0.1950 +0 0.2599 +0 0.1587 +0 0.1140 +0 0.1232 +0 0.1880 +0 0.1854 +0 0.0612 +0 0.1127 +0 0.2574 +0 0.0622 +0 0.6754 +0 0.0765 +0 0.1083 +0 0.0717 +0 0.0839 +0 0.0669 +0 0.0626 +0 0.1477 +0 0.0712 +0 0.0694 +0 0.0625 +0 0.0745 +0 0.1881 +0 0.1033 +0 0.1704 +0 0.0578 +0 0.0438 +0 0.6462 +0 0.1308 +0 0.1601 +0 0.1141 +0 0.0637 +0 0.0568 +0 0.0403 +0 0.0735 +0 0.0832 +0 0.1144 +0 0.1217 +0 0.3956 +0 0.0975 +0 0.0474 +0 0.2895 +0 0.0872 +0 0.1265 +0 0.2045 +0 0.2144 +0 0.1813 +0 0.1773 +0 0.2222 +0 0.0375 +0 0.0798 +0 0.0951 +0 0.1414 +0 0.0810 +0 0.0564 +0 0.0817 +0 0.1691 +0 0.0891 +0 0.0697 +0 0.1656 +0 0.0565 +0 0.4330 +0 0.3056 +0 0.1173 +1 0.7709 +0 0.1603 +0 0.1462 +0 0.1648 +0 0.0472 +0 0.0835 +0 0.0827 +0 0.1583 +0 0.0876 +0 0.0782 +0 0.0869 +0 0.0897 +0 0.1536 +0 0.0610 +0 0.2257 +0 0.1504 +0 0.2159 +0 0.2078 +0 0.0758 +0 0.1213 +0 0.1178 +0 0.0510 +0 0.1251 +0 0.1906 +0 0.0422 +0 0.0852 +0 0.1284 +0 0.1023 +0 0.1156 +0 0.0647 +0 0.0722 +0 0.1134 +0 0.0740 +0 0.1435 +0 0.4881 +0 0.1245 +0 0.1242 +0 0.0781 +0 0.0774 +0 0.0409 +0 0.0544 +0 0.1179 +0 0.0350 +0 0.1301 +0 0.1381 +0 0.0312 +0 0.2169 +0 0.0760 +0 0.1419 +0 0.0451 +0 0.1381 +0 0.0557 +0 0.1375 +0 0.2723 +0 0.1607 +1 0.7751 +0 0.1590 +0 0.1884 +0 0.0860 +0 0.7208 +0 0.2199 +0 0.0512 +0 0.1143 +0 0.1444 +0 0.1476 +0 0.2479 +0 0.0450 +0 0.0586 +0 0.1127 +0 0.0643 +0 0.0565 +0 0.0674 +0 0.0519 +0 0.1178 +0 0.0640 +0 0.0780 +0 0.1689 +0 0.0901 +0 0.0732 +0 0.0971 +0 0.1290 +0 0.2049 +0 0.0841 +0 0.0664 +0 0.0728 +0 0.1028 +0 0.1139 +0 0.0945 +0 0.0674 +0 0.0335 +0 0.0937 +0 0.0352 +0 0.1102 +0 0.0660 +0 0.0815 +0 0.0985 +0 0.7054 +0 0.0810 +0 0.3036 +0 0.2971 +0 0.0914 +0 0.4210 +0 0.2407 +0 0.4898 +0 0.0861 +0 0.1403 +0 0.3168 +0 0.0874 +0 0.5195 +0 0.0575 +0 0.0914 +0 0.1372 +0 0.6440 +0 0.0796 +0 0.0926 +0 0.2321 +0 0.0708 +0 0.5317 +0 0.1197 +0 0.1096 +0 0.1535 +0 0.1348 +0 0.0382 +0 0.0509 +1 0.8056 +0 0.1126 +0 0.0501 +0 0.0613 +0 0.1609 +0 0.2175 +0 0.3721 +0 0.2253 +0 0.0846 +0 0.0384 +0 0.0411 +0 0.0833 +0 0.2048 +0 0.1895 +0 0.0866 +0 0.0932 +0 0.1058 +0 0.1125 +0 0.1302 +0 0.2056 +0 0.1090 +0 0.1471 +0 0.1881 +0 0.0926 +0 0.0471 +0 0.0824 +0 0.2581 +0 0.1203 +0 0.0746 +0 0.0764 +0 0.0486 +0 0.0996 +0 0.0960 +0 0.1346 +0 0.1144 +0 0.0888 +0 0.0607 +0 0.1024 +0 0.0544 +0 0.1058 +0 0.1214 +0 0.0402 +0 0.2564 +0 0.0693 +0 0.1886 +0 0.0585 +0 0.1222 +0 0.1570 +0 0.0409 +0 0.0991 +0 0.1139 +0 0.1721 +0 0.0874 +0 0.0338 +0 0.0561 +0 0.0849 +0 0.6066 +0 0.0669 +0 0.3312 +0 0.3280 +0 0.0886 +0 0.0876 +0 0.1406 +0 0.3421 +0 0.1674 +0 0.0424 +0 0.0854 +0 0.7492 +0 0.0676 +0 0.0983 +0 0.1527 +0 0.0846 +0 0.1226 +0 0.0773 +0 0.1327 +0 0.1611 +0 0.2969 +0 0.1025 +0 0.0481 +0 0.1368 +0 0.1609 +0 0.0956 +0 0.0504 +0 0.1196 +0 0.1146 +0 0.3243 +0 0.1369 +0 0.5062 +0 0.1158 +0 0.1051 +0 0.1251 +1 0.8622 +0 0.1131 +0 0.1094 +0 0.2237 +0 0.0624 +0 0.0772 +0 0.0819 +0 0.0750 +0 0.0923 +0 0.3325 +0 0.0355 +0 0.1373 +0 0.1039 +0 0.0802 +0 0.0753 +0 0.0941 +0 0.1195 +0 0.2573 +0 0.0856 +0 0.0774 +0 0.5694 +0 0.1638 +0 0.0956 +0 0.0766 +0 0.1617 +0 0.0547 +0 0.1600 +0 0.1553 +0 0.1428 +0 0.0590 +0 0.2250 +0 0.1548 +0 0.1408 +0 0.1954 +0 0.0592 +0 0.0779 +0 0.1003 +0 0.1038 +0 0.0912 +0 0.0748 +0 0.1373 +0 0.0964 +0 0.0903 +0 0.0459 +0 0.1098 +0 0.0864 +0 0.2758 +0 0.1164 +0 0.0997 +0 0.1753 +0 0.0741 +0 0.1508 +0 0.1624 +1 0.7557 +0 0.1764 +0 0.5179 +0 0.4558 +0 0.1970 +0 0.0821 +0 0.0786 +0 0.0964 +0 0.1422 +0 0.0646 +0 0.1186 +0 0.0485 +0 0.0560 +0 0.0633 +0 0.1173 +0 0.1442 +0 0.1119 +0 0.0923 +0 0.1047 +0 0.7487 +0 0.0846 +0 0.1502 +0 0.1153 +0 0.1023 +0 0.0383 +0 0.0860 +0 0.0834 +0 0.0648 +0 0.4180 +0 0.0590 +0 0.1541 +0 0.1442 +0 0.0728 +0 0.0944 +0 0.1569 +0 0.0831 +0 0.0378 +0 0.1875 +0 0.1323 +0 0.0401 +0 0.0526 +0 0.0928 +0 0.2316 +0 0.5796 +0 0.1075 +0 0.0928 +0 0.0489 +0 0.1037 +0 0.1008 +0 0.3627 +0 0.0781 +0 0.0753 +0 0.0640 +0 0.1086 +0 0.1934 +0 0.0542 +0 0.1574 +0 0.1902 +0 0.0603 +0 0.0475 +0 0.0486 +0 0.1237 +0 0.0325 +0 0.1163 +0 0.0733 +0 0.1517 +0 0.1072 +0 0.0356 +0 0.7441 +0 0.1182 +0 0.2034 +0 0.1042 +0 0.1572 +0 0.0596 +0 0.0667 +0 0.2113 +0 0.1161 +0 0.0907 +0 0.1611 +0 0.1584 +0 0.2090 +0 0.0559 +0 0.2465 +0 0.0955 +0 0.0931 +0 0.1612 +0 0.2034 +0 0.1918 +0 0.0687 +0 0.1376 +0 0.0775 +0 0.0935 +0 0.7255 +0 0.1248 +0 0.0746 +0 0.0519 +0 0.0853 +0 0.0580 +0 0.0735 +0 0.0969 +0 0.1029 +0 0.0679 +0 0.1899 +0 0.1825 +0 0.0835 +0 0.0542 +0 0.1484 +0 0.3872 +0 0.0914 +0 0.1865 +0 0.0666 +0 0.2073 +0 0.0524 +0 0.0610 +0 0.1217 +0 0.0778 +0 0.1474 +0 0.0330 +0 0.1400 +0 0.1034 +0 0.0529 +0 0.2459 +0 0.1995 +0 0.0344 +0 0.3750 +0 0.0501 +0 0.1257 +0 0.0424 +0 0.1060 +0 0.1403 +0 0.1174 +0 0.0516 +0 0.0815 +0 0.4510 +0 0.2796 +0 0.1026 +0 0.2589 +0 0.1153 +0 0.1288 +0 0.0682 +0 0.3096 +0 0.0587 +0 0.0709 +0 0.1127 +0 0.0755 +0 0.1011 +1 0.8747 +0 0.1601 +0 0.1935 +0 0.0567 +0 0.1745 +0 0.2508 +0 0.0829 +0 0.1522 +0 0.3122 +0 0.1267 +0 0.5670 +0 0.1426 +0 0.0898 +0 0.0936 +0 0.7103 +0 0.1079 +0 0.0773 +0 0.0797 +0 0.1614 +0 0.4789 +0 0.0545 +0 0.4074 +0 0.2143 +0 0.1018 +0 0.0560 +0 0.2590 +0 0.1376 +0 0.0774 +0 0.0980 +0 0.1132 +0 0.0732 +0 0.2213 +0 0.3302 +0 0.0913 +0 0.0392 +0 0.2724 +0 0.0519 +0 0.0945 +0 0.0779 +0 0.1249 +0 0.0793 +0 0.1055 +0 0.0632 +0 0.1019 +0 0.1859 +0 0.0933 +0 0.0834 +0 0.1317 +0 0.0545 +0 0.0661 +0 0.1027 +0 0.1210 +0 0.1146 +0 0.7455 +0 0.2616 +0 0.1214 +0 0.2085 +0 0.0437 +0 0.1259 +0 0.0629 +0 0.1379 +0 0.1148 +0 0.0694 +0 0.1446 +0 0.1008 +0 0.0701 +0 0.1292 +0 0.1088 +0 0.0604 +0 0.1263 +0 0.1919 +0 0.0716 +0 0.4132 +0 0.0682 +0 0.4055 +0 0.1118 +0 0.0816 +0 0.2010 +0 0.1127 +0 0.0929 +0 0.1423 +0 0.3072 +0 0.1366 +0 0.0985 +0 0.0777 +0 0.1261 +0 0.0624 +0 0.0768 +0 0.0669 +0 0.0869 +0 0.1170 +0 0.0653 +0 0.1650 +0 0.1965 +0 0.1202 +0 0.2561 +0 0.0911 +0 0.6397 +0 0.1741 +0 0.0734 +0 0.0964 +0 0.1616 +0 0.0698 +0 0.1506 +0 0.0984 +0 0.1996 +0 0.1233 +0 0.1739 +0 0.1422 +0 0.0881 +0 0.2425 +0 0.1428 +0 0.1310 +0 0.1902 +0 0.0310 +0 0.1052 +0 0.5177 +1 0.8548 +0 0.0646 +0 0.0607 +0 0.0801 +0 0.0644 +0 0.0613 +0 0.6852 +0 0.2590 +0 0.0530 +0 0.0544 +0 0.0764 +0 0.0612 +1 0.8626 +0 0.0821 +0 0.0993 +0 0.1300 +0 0.4882 +0 0.0590 +0 0.1248 +0 0.0562 +0 0.5907 +0 0.0442 +0 0.0684 +0 0.2202 +0 0.1164 +0 0.2781 +0 0.1520 +0 0.2541 +0 0.0949 +0 0.0372 +0 0.2182 +0 0.0840 +0 0.1824 +0 0.0884 +0 0.1477 +0 0.1328 +0 0.1199 +0 0.0337 +0 0.1507 +0 0.1025 +0 0.0953 +0 0.1331 +0 0.0621 +0 0.1889 +0 0.1278 +0 0.1030 +0 0.0494 +0 0.1935 +0 0.1229 +0 0.1026 +0 0.1125 +0 0.0848 +0 0.0531 +0 0.0502 +0 0.2347 +0 0.0530 +0 0.0893 +0 0.0714 +0 0.1139 +0 0.1732 +0 0.0850 +0 0.1250 +0 0.0604 +0 0.1743 +0 0.1563 +0 0.1072 +0 0.3402 +0 0.1495 +0 0.2804 +0 0.1361 +0 0.1313 +0 0.0997 +0 0.3788 +0 0.1481 +0 0.2625 +0 0.2291 +0 0.0630 +0 0.0456 +0 0.0820 +0 0.0777 +0 0.0612 +0 0.0673 +0 0.0501 +0 0.1563 +0 0.0699 +0 0.0853 +0 0.1919 +0 0.0495 +0 0.3132 +0 0.0513 +0 0.1653 +0 0.2478 +0 0.3335 +0 0.1203 +0 0.0888 +0 0.1105 +0 0.0577 +0 0.1039 +0 0.1968 +0 0.0856 +0 0.0898 +0 0.2465 +0 0.0431 +0 0.1232 +0 0.4234 +0 0.2127 +0 0.0690 +0 0.1690 +0 0.2784 +0 0.0670 +0 0.0714 +0 0.0829 +0 0.2087 +0 0.0810 +0 0.1333 +0 0.2856 +0 0.1566 +0 0.0600 +0 0.0373 +0 0.1180 +0 0.0906 +0 0.1328 +0 0.0786 +0 0.1015 +0 0.0998 +0 0.0869 +0 0.1185 +0 0.1886 +0 0.0571 +0 0.1922 +0 0.0981 +0 0.2895 +0 0.1690 +0 0.0874 +0 0.0495 +0 0.0851 +0 0.1257 +0 0.2452 +0 0.1554 +0 0.0381 +0 0.0542 +0 0.0871 +0 0.1092 +0 0.1166 +0 0.0511 +0 0.7309 +0 0.1490 +0 0.0730 +0 0.1145 +0 0.1749 +0 0.2212 +0 0.0571 +0 0.0583 +0 0.0541 +0 0.0788 +0 0.2505 +0 0.1010 +0 0.0656 +0 0.1437 +0 0.1053 +0 0.1237 +0 0.2044 +0 0.1481 +0 0.2984 +0 0.4969 +0 0.0795 +0 0.5649 +0 0.1117 +0 0.1048 +0 0.1150 +0 0.1302 +0 0.1391 +0 0.2271 +0 0.1050 +0 0.0452 +0 0.1109 +0 0.0971 +0 0.0612 +0 0.0982 +0 0.0730 +0 0.1123 +0 0.1237 +0 0.2537 +0 0.1230 +0 0.1266 +0 0.3829 +0 0.1513 +0 0.0979 +0 0.0793 +0 0.1540 +0 0.0878 +0 0.1221 +0 0.1899 +0 0.1290 +0 0.1268 +0 0.0999 +0 0.0508 +0 0.0626 +0 0.1212 +0 0.1482 +0 0.1068 +0 0.0675 +0 0.1051 +0 0.0618 +0 0.1500 +0 0.0509 +0 0.1660 +0 0.1021 +0 0.7027 +0 0.1152 +0 0.1615 +0 0.1222 +0 0.0801 +0 0.0626 +0 0.1542 +0 0.0759 +0 0.1057 +0 0.0563 +0 0.4816 +0 0.1934 +0 0.0544 +0 0.2049 +0 0.0545 +0 0.1543 +0 0.2587 +0 0.1561 +0 0.1173 +0 0.1225 +0 0.0782 +0 0.2338 +0 0.3350 +0 0.0774 +0 0.0565 +0 0.0730 +0 0.2181 +0 0.1082 +0 0.2214 +0 0.0736 +0 0.1277 +0 0.0863 +0 0.0451 +0 0.0923 +0 0.0803 +0 0.0878 +0 0.2576 +0 0.0640 +0 0.0770 +0 0.1885 +0 0.1639 +0 0.5707 +0 0.2511 +0 0.0705 +0 0.1196 +0 0.1072 +0 0.1550 +0 0.0337 +0 0.0361 +0 0.2412 +0 0.2381 +0 0.0873 +0 0.0754 +0 0.2334 +0 0.1133 +0 0.0757 +0 0.0649 +0 0.0595 +0 0.2106 +0 0.1234 +0 0.0840 +0 0.6117 +0 0.0951 +0 0.1800 +0 0.0970 +0 0.1288 +0 0.3484 +0 0.1871 +0 0.0811 +0 0.0407 +0 0.1261 +0 0.1431 +0 0.1598 +0 0.1728 +0 0.1766 +0 0.0730 +0 0.1328 +0 0.1031 +0 0.2013 +0 0.4012 +0 0.0508 +0 0.0465 +0 0.0472 +0 0.0973 +0 0.1017 +0 0.1508 +0 0.1408 +0 0.0526 +0 0.0816 +0 0.1099 +0 0.0578 +0 0.2658 +0 0.1783 +0 0.0751 +0 0.3971 +0 0.3450 +0 0.0603 +0 0.0581 +0 0.0509 +0 0.0779 +0 0.0447 +0 0.1057 +0 0.1799 +0 0.2510 +0 0.0818 +0 0.0840 +0 0.2265 +0 0.0628 +0 0.1746 +0 0.1645 +0 0.0410 +0 0.1542 +0 0.2033 +0 0.1422 +0 0.3363 +0 0.0827 +0 0.1395 +0 0.1210 +0 0.0932 +0 0.1483 +0 0.0823 +0 0.0416 +0 0.0600 +0 0.0584 +0 0.0717 +0 0.0326 +0 0.1807 +0 0.1514 +0 0.0702 +0 0.1285 +0 0.1255 +0 0.1446 +0 0.0613 +0 0.0396 +0 0.0823 +0 0.0952 +0 0.2168 +0 0.0873 +0 0.0444 +0 0.0474 +0 0.0724 +0 0.1485 +0 0.1143 +0 0.0932 +0 0.0524 +0 0.0811 +0 0.1114 +0 0.1188 +0 0.1058 +0 0.1005 +0 0.0392 +0 0.1544 +0 0.1892 +0 0.0482 +0 0.2230 +0 0.0583 +0 0.3162 +0 0.1656 +1 0.8063 +0 0.1746 +0 0.0955 +0 0.0751 +0 0.0432 +0 0.1078 +0 0.0727 +0 0.2170 +0 0.2024 +0 0.1984 +0 0.0532 +0 0.0462 +0 0.0831 +0 0.1322 +0 0.0790 +0 0.2686 +0 0.2771 +0 0.7237 +0 0.0905 +0 0.0804 +0 0.0804 +0 0.0559 +0 0.0492 +0 0.0695 +0 0.4410 +0 0.0694 +0 0.1650 +0 0.0550 +0 0.1317 +0 0.1956 +0 0.0539 +0 0.4742 +0 0.3354 +0 0.1107 +0 0.1838 +0 0.1213 +0 0.1039 +0 0.0839 +0 0.1622 +0 0.0489 +0 0.1136 +0 0.1393 +0 0.1305 +0 0.0684 +0 0.0971 +0 0.1502 +0 0.0489 +0 0.0730 +0 0.1289 +0 0.1820 +0 0.0433 +0 0.2041 +0 0.1038 +0 0.1371 +0 0.0553 +0 0.1959 +0 0.0642 +0 0.2185 +0 0.5280 +0 0.2893 +0 0.0602 +0 0.4344 +0 0.1817 +0 0.1470 +0 0.1254 +0 0.0603 +0 0.1601 +0 0.0730 +0 0.1264 +0 0.3099 +0 0.1173 +0 0.2037 +0 0.3866 +0 0.4272 +0 0.1419 +0 0.0674 +0 0.0463 +0 0.0515 +0 0.0749 +0 0.7055 +0 0.0718 +0 0.2977 +0 0.0690 +0 0.0917 +0 0.0978 +0 0.1757 +0 0.0852 +0 0.0707 +0 0.0487 +0 0.4292 +0 0.1977 +0 0.2263 +0 0.0634 +0 0.4592 +0 0.0558 +0 0.1098 +0 0.3345 +0 0.0427 +0 0.2135 +0 0.1301 +0 0.1627 +0 0.0756 +0 0.1635 +0 0.1202 +0 0.0627 +0 0.1334 +0 0.1944 +0 0.1353 +0 0.1138 +0 0.1200 +0 0.1914 +0 0.2081 +0 0.0591 +0 0.0916 +0 0.0465 +0 0.1277 +0 0.0444 +0 0.1387 +0 0.1355 +0 0.1752 +0 0.1115 +0 0.0857 +0 0.0873 +0 0.3237 +0 0.1293 +0 0.1788 +0 0.3035 +0 0.1514 +0 0.0564 +0 0.4046 +0 0.1419 +0 0.1248 +0 0.0803 +0 0.1425 +0 0.1216 +0 0.1096 +0 0.0931 +0 0.1761 +0 0.2567 +0 0.1496 +0 0.2493 +0 0.2753 +0 0.0648 +0 0.0865 +0 0.1127 +0 0.0856 +0 0.0803 +0 0.0396 +0 0.0934 +0 0.1606 +0 0.1544 +0 0.0817 +0 0.0638 +0 0.0650 +0 0.1086 +0 0.1227 +0 0.2682 +0 0.0945 +0 0.0950 +0 0.1106 +0 0.0985 +0 0.0433 +0 0.4857 +0 0.1077 +1 0.7643 +0 0.1478 +0 0.1334 +0 0.0704 +0 0.1991 +0 0.0691 +0 0.2828 +0 0.0522 +0 0.1014 +0 0.1151 +0 0.1466 +0 0.2395 +0 0.1068 +0 0.2257 +0 0.1065 +0 0.2505 +0 0.1027 +0 0.1668 +0 0.0631 +0 0.0823 +0 0.1363 +0 0.0812 +1 0.7535 +0 0.0893 +0 0.0979 +0 0.1563 +0 0.0866 +0 0.3645 +0 0.2270 +0 0.2117 +1 0.7697 +0 0.0828 +0 0.0811 +0 0.1225 +0 0.0541 +0 0.1410 +0 0.2533 +0 0.0743 +0 0.1012 +0 0.0337 +0 0.2296 +0 0.0889 +0 0.1739 +0 0.1614 +0 0.1342 +0 0.1174 +0 0.0537 +0 0.0817 +0 0.1643 +0 0.1192 +0 0.1040 +0 0.2486 +0 0.1193 +0 0.3230 +0 0.1631 +0 0.1886 +0 0.2765 +0 0.2941 +0 0.1930 +0 0.0769 +0 0.0630 +0 0.1435 +0 0.0637 +0 0.2060 +0 0.0578 +0 0.0915 +0 0.0589 +0 0.1084 +0 0.1868 +0 0.0593 +0 0.3857 +0 0.1020 +0 0.1086 +0 0.0500 +0 0.0551 +0 0.2027 +0 0.2328 +0 0.1375 +0 0.0526 +0 0.0656 +0 0.0815 +0 0.0996 +0 0.1202 +1 0.8047 +0 0.1139 +0 0.1639 +0 0.6549 +0 0.1018 +0 0.0446 +0 0.0752 +0 0.1849 +0 0.2990 +0 0.2087 +0 0.3297 +0 0.1340 +0 0.1341 +0 0.0538 +0 0.0830 +0 0.0301 +0 0.0694 +0 0.1030 +0 0.1135 +0 0.0422 +0 0.0637 +0 0.1482 +0 0.0839 +0 0.1840 +0 0.0785 +0 0.3237 +0 0.0370 +0 0.0581 +0 0.1265 +0 0.1274 +0 0.5407 +0 0.2282 +0 0.1446 +0 0.0396 +0 0.1259 +0 0.0725 +0 0.1413 +0 0.1961 +0 0.0837 +0 0.1595 +0 0.1025 +0 0.0476 +0 0.0572 +0 0.0742 +0 0.0872 +0 0.0733 +0 0.0466 +0 0.3618 +0 0.2057 +0 0.1778 +0 0.1909 +0 0.0357 +0 0.0403 +0 0.0498 +0 0.0804 +0 0.2763 +0 0.0976 +0 0.1065 +0 0.2301 +0 0.2957 +0 0.2597 +0 0.1336 +0 0.1383 +0 0.0510 +0 0.1032 +0 0.0614 +0 0.4293 +0 0.0893 +0 0.3441 +0 0.0362 +0 0.2947 +0 0.1185 +0 0.1818 +0 0.1459 +0 0.1141 +0 0.0562 +0 0.0447 +0 0.0883 +0 0.1737 +0 0.0803 +0 0.1671 +0 0.1240 +0 0.1063 +0 0.0828 +0 0.4030 +1 0.8561 +0 0.1338 +0 0.1320 +0 0.1375 +0 0.2359 +0 0.0962 +0 0.0750 +0 0.1885 +0 0.0732 +0 0.0527 +0 0.0944 +0 0.2424 +0 0.3305 +0 0.1611 +0 0.4182 +0 0.1105 +0 0.0998 +0 0.2200 +0 0.1991 +0 0.0790 +0 0.1280 +0 0.0471 +0 0.0760 +0 0.1654 +0 0.2741 +0 0.1003 +0 0.1076 +0 0.2033 +0 0.0408 +0 0.0624 +0 0.0776 +0 0.1887 +0 0.1568 +0 0.1893 +0 0.0343 +0 0.0742 +0 0.0436 +0 0.0980 +0 0.0929 +0 0.0707 +0 0.0853 +0 0.1343 +0 0.0444 +0 0.0491 +0 0.1739 +0 0.0851 +0 0.0890 +0 0.0683 +0 0.0538 +0 0.2480 +0 0.1391 +0 0.0957 +0 0.0963 +0 0.0485 +0 0.0875 +0 0.2100 +0 0.2546 +0 0.2916 +0 0.1208 +0 0.1174 +0 0.0588 +0 0.1551 +0 0.1526 +0 0.5471 +0 0.1861 +0 0.1804 +0 0.1251 +0 0.0861 +0 0.0449 +0 0.3282 +0 0.0529 +0 0.0632 +0 0.0765 +0 0.0330 +0 0.1246 +0 0.0736 +0 0.0737 +0 0.1061 +0 0.1610 +0 0.1711 +0 0.0695 +0 0.0689 +0 0.0553 +1 0.8620 +0 0.2853 +0 0.2314 +0 0.1951 +0 0.0441 +0 0.0882 +0 0.1052 +0 0.0422 +0 0.2860 +0 0.0615 +1 0.8212 +0 0.1527 +0 0.0625 +0 0.0981 +0 0.0607 +0 0.0989 +0 0.0593 +0 0.2337 +0 0.0943 +0 0.1924 +1 0.7774 +0 0.0643 +0 0.1469 +0 0.0886 +0 0.0662 +0 0.0730 +0 0.2924 +0 0.1889 +0 0.5791 +0 0.0842 +0 0.0478 +0 0.1946 +0 0.1430 +0 0.0546 +1 0.8761 +0 0.2073 +0 0.0817 +0 0.0317 +0 0.0973 +0 0.0610 +0 0.1658 +0 0.1207 +0 0.0753 +0 0.0273 +0 0.1381 +0 0.1683 +0 0.1278 +0 0.1224 +0 0.0453 +0 0.1676 +0 0.1333 +0 0.1219 +0 0.0379 +0 0.0551 +0 0.1339 +0 0.0947 +0 0.3087 +0 0.0787 +0 0.0799 +0 0.4332 +0 0.2204 +0 0.2743 +0 0.0683 +0 0.1136 +0 0.1211 +0 0.0854 +0 0.0993 +0 0.1720 +0 0.1246 +0 0.0887 +0 0.0471 +0 0.1215 +0 0.1079 +0 0.7193 +0 0.0671 +0 0.1123 +0 0.1023 +0 0.1745 +0 0.1099 +0 0.0532 +0 0.1152 +0 0.2825 +0 0.2350 +0 0.1454 +0 0.0706 +0 0.1514 +0 0.0508 +0 0.1105 +0 0.1347 +0 0.0382 +0 0.0778 +0 0.2221 +0 0.1315 +0 0.1042 +0 0.0873 +0 0.1234 +0 0.0869 +0 0.1712 +0 0.1318 +0 0.0635 +0 0.1390 +0 0.1359 +0 0.2037 +0 0.1394 +0 0.2617 +0 0.2312 +0 0.0620 +0 0.1635 +0 0.0793 +0 0.3732 +0 0.0867 +0 0.3349 +0 0.2096 +0 0.0526 +0 0.0584 +0 0.0848 +0 0.0932 +1 0.8006 +0 0.0899 +0 0.1015 +0 0.0521 +0 0.0700 +0 0.0695 +0 0.7194 +0 0.0526 +0 0.0603 +0 0.0312 +0 0.0502 +0 0.0821 +0 0.0802 +0 0.6950 +0 0.0915 +0 0.0424 +0 0.0593 +0 0.0943 +0 0.1157 +0 0.0952 +0 0.1040 +0 0.1401 +0 0.4004 +0 0.0588 +0 0.0616 +0 0.2524 +0 0.1108 +0 0.0979 +0 0.0765 +0 0.0472 +0 0.1431 +0 0.1671 +0 0.0612 +0 0.2096 +0 0.1247 +0 0.0893 +0 0.0811 +0 0.1042 +0 0.1121 +0 0.1840 +0 0.0894 +0 0.0945 +0 0.2538 +0 0.2700 +0 0.1926 +0 0.1315 +0 0.1342 +0 0.0899 +0 0.0474 +0 0.0550 +0 0.1064 +0 0.1948 +0 0.0407 +0 0.1175 +0 0.0604 +0 0.0974 +0 0.1984 +0 0.1943 +0 0.0900 +0 0.0656 +0 0.1520 +0 0.0887 +0 0.0775 +0 0.1534 +0 0.1384 +0 0.0864 +0 0.2959 +0 0.1097 +0 0.0965 +0 0.1631 +0 0.0818 +0 0.0911 +0 0.1733 +0 0.0857 +0 0.0889 +0 0.0668 +0 0.1511 +0 0.0919 +0 0.0675 +0 0.1899 +0 0.1345 +0 0.2034 +0 0.0721 +0 0.1327 +0 0.0760 +0 0.2013 +0 0.1400 +0 0.0811 +0 0.1387 +0 0.1508 +0 0.1471 +0 0.0773 +0 0.0418 +0 0.1588 +0 0.0382 +0 0.1115 +0 0.1824 +0 0.1811 +0 0.1225 +0 0.0452 +0 0.0794 +0 0.1113 +0 0.1346 +0 0.2601 +0 0.0794 +0 0.0999 +0 0.2174 +0 0.2353 +0 0.5659 +0 0.1016 +0 0.1116 +0 0.1060 +0 0.1172 +1 0.8892 +0 0.0724 +0 0.0863 +0 0.0631 +0 0.2681 +0 0.0997 +0 0.0844 +0 0.0857 +0 0.0887 +0 0.1032 +0 0.1644 +0 0.0601 +0 0.0691 +0 0.1082 +0 0.0797 +0 0.0804 +0 0.1825 +0 0.0415 +0 0.0766 +0 0.2795 +0 0.1427 +0 0.0502 +0 0.1566 +0 0.0934 +0 0.0975 +0 0.1438 +0 0.1588 +0 0.0662 +0 0.1323 +0 0.2498 +0 0.0698 +0 0.1103 +0 0.0730 +0 0.1031 +0 0.0570 +0 0.4833 +0 0.1038 +0 0.0767 +0 0.0888 +0 0.1096 +0 0.0715 +0 0.0779 +0 0.1090 +0 0.0665 +0 0.1098 +0 0.1067 +0 0.0485 +0 0.0894 +0 0.0997 +0 0.0565 +0 0.0852 +0 0.0597 +0 0.0525 +1 0.7516 +0 0.0855 +0 0.0370 +0 0.0794 +0 0.1321 +0 0.0959 +0 0.1210 +0 0.1090 +0 0.0828 +0 0.0730 +0 0.2058 +0 0.2692 +0 0.1616 +0 0.0883 +0 0.3830 +0 0.0911 +0 0.3898 +0 0.1120 +0 0.1705 +0 0.0505 +0 0.1571 +0 0.1489 +0 0.1561 +0 0.0887 +0 0.0759 +0 0.1039 +0 0.6456 +0 0.1178 +0 0.0427 +0 0.0960 +0 0.0514 +0 0.0767 +0 0.0576 +0 0.5162 +0 0.1526 +0 0.2303 +0 0.1159 +0 0.2129 +0 0.3256 +0 0.1769 +0 0.1187 +0 0.3337 +0 0.4166 +0 0.0483 +0 0.1087 +0 0.0660 +0 0.1281 +0 0.3687 +0 0.1182 +0 0.0903 +0 0.0604 +0 0.0650 +0 0.2073 +0 0.2511 +0 0.0821 +0 0.0584 +0 0.0551 +0 0.3718 +0 0.2680 +0 0.0791 +0 0.1367 +0 0.3506 +0 0.2180 +0 0.1723 +0 0.0959 +0 0.2357 +0 0.0750 +1 0.8727 +0 0.3921 +0 0.2448 +0 0.0489 +1 0.8253 +0 0.0911 +0 0.3829 +0 0.1036 +0 0.2910 +0 0.1127 +0 0.0831 +0 0.2239 +0 0.2769 +0 0.1505 +0 0.2996 +0 0.2483 +0 0.1890 +0 0.1170 +0 0.1643 +0 0.1079 +0 0.2034 +0 0.2882 +0 0.0749 +0 0.0809 +0 0.0868 +0 0.1418 +0 0.2053 +0 0.1710 +0 0.1644 +0 0.2259 +0 0.0410 +0 0.1430 +0 0.1181 +0 0.0702 +0 0.1834 +0 0.0589 +0 0.1037 +0 0.1007 +0 0.1368 +0 0.0917 +0 0.1089 +0 0.0969 +0 0.0711 +0 0.0652 +0 0.0420 +0 0.1217 +0 0.0999 +0 0.0524 +0 0.0780 +0 0.1461 +0 0.0963 +0 0.1491 +0 0.1435 +0 0.0448 +0 0.0486 +0 0.2108 +0 0.1320 +0 0.0634 +0 0.0622 +0 0.0873 +0 0.0725 +0 0.2677 +0 0.4325 +0 0.1360 +0 0.2597 +0 0.1896 +0 0.1669 +0 0.0969 +0 0.1041 +0 0.0961 +0 0.0436 +0 0.1668 +0 0.4463 +0 0.1593 +0 0.1186 +0 0.6627 +0 0.0967 +0 0.0652 +0 0.0703 +0 0.0575 +0 0.1225 +0 0.0844 +0 0.2119 +0 0.1343 +0 0.0928 +0 0.0897 +0 0.0733 +0 0.2825 +0 0.0620 +1 0.7524 +0 0.0748 +0 0.0875 +0 0.1400 +0 0.1366 +0 0.0921 +0 0.1376 +0 0.1168 +0 0.0692 +0 0.0751 +0 0.0591 +0 0.0570 +0 0.6718 +0 0.0896 +0 0.1671 +0 0.3192 +0 0.7464 +0 0.0525 +0 0.0904 +0 0.1229 +0 0.0609 +0 0.0933 +0 0.2729 +0 0.0335 +0 0.0324 +0 0.0514 +0 0.0709 +0 0.0869 +0 0.3083 +0 0.0609 +0 0.0803 +0 0.1128 +0 0.2414 +0 0.1751 +0 0.0690 +0 0.1384 +0 0.0819 +0 0.1088 +0 0.1750 +0 0.1492 +0 0.0865 +0 0.2305 +0 0.2011 +0 0.3460 +0 0.0977 +0 0.0928 +0 0.0629 +0 0.0812 +0 0.0767 +0 0.7359 +0 0.1407 +0 0.1035 +0 0.0432 +0 0.1480 +0 0.1166 +0 0.0587 +0 0.1217 +0 0.1677 +0 0.0424 +0 0.1440 +0 0.2522 +0 0.0760 +0 0.0719 +0 0.0771 +0 0.0697 +0 0.1920 +0 0.0539 +0 0.3040 +0 0.4642 +0 0.1099 +0 0.0788 +0 0.0901 +0 0.1229 +0 0.0628 +0 0.0845 +0 0.0581 +0 0.0690 +0 0.0702 +0 0.1125 +0 0.1072 +0 0.0508 +1 0.8396 +0 0.1421 +0 0.1083 +0 0.1091 +1 0.8574 +0 0.0464 +0 0.1355 +0 0.0521 +0 0.1578 +0 0.0786 +0 0.0611 +0 0.0902 +0 0.0953 +0 0.1550 +0 0.1024 +1 0.8521 +0 0.0804 +0 0.0943 +0 0.2160 +0 0.0477 +0 0.1971 +0 0.6206 +0 0.2347 +0 0.0401 +0 0.0501 +0 0.0837 +0 0.2596 +0 0.1097 +0 0.0524 +0 0.0644 +0 0.0621 +0 0.0941 +0 0.2920 +0 0.1032 +0 0.1325 +0 0.1488 +0 0.1559 +0 0.1322 +0 0.1489 +0 0.1467 +0 0.0439 +0 0.0930 +0 0.0775 +0 0.5123 +0 0.1962 +0 0.5600 +0 0.1034 +0 0.7401 +0 0.1280 +0 0.1821 +0 0.1007 +0 0.3653 +0 0.0750 +0 0.0576 +0 0.2309 +0 0.1420 +0 0.1608 +0 0.6742 +0 0.0869 +0 0.0753 +0 0.0884 +0 0.0793 +0 0.1554 +0 0.0990 +0 0.1242 +0 0.7317 +0 0.0814 +0 0.1054 +0 0.0705 +0 0.0855 +0 0.1292 +0 0.1125 +0 0.0387 +0 0.1023 +0 0.1328 +0 0.1492 +0 0.0535 +0 0.1369 +0 0.0571 +0 0.1835 +0 0.0737 +0 0.2666 +0 0.0833 +0 0.0491 +0 0.0704 +0 0.0430 +0 0.0921 +0 0.1245 +0 0.0715 +0 0.0631 +0 0.1064 +0 0.0652 +0 0.0628 +0 0.1053 +0 0.0422 +0 0.1136 +0 0.0882 +0 0.0577 +0 0.0750 +0 0.3979 +0 0.0411 +0 0.1942 +0 0.1390 +0 0.1618 +0 0.0685 +0 0.0839 +0 0.1069 +0 0.0931 +0 0.1021 +0 0.0726 +0 0.0414 +0 0.0513 +0 0.1029 +0 0.1841 +0 0.1378 +0 0.0499 +0 0.6345 +0 0.0608 +0 0.0360 +0 0.0803 +0 0.0484 +0 0.0653 +0 0.4171 +0 0.0298 +0 0.0609 +0 0.0684 +0 0.0999 +0 0.0856 +0 0.1151 +0 0.4063 +0 0.0655 +0 0.0756 +0 0.0700 +0 0.1042 +0 0.1298 +0 0.0429 +0 0.1186 +0 0.1275 +0 0.0993 +0 0.0874 +0 0.0553 +0 0.0725 +0 0.0992 +0 0.2198 +0 0.0634 +0 0.0960 +0 0.0953 +0 0.0815 +0 0.0510 +0 0.1734 +0 0.0794 +0 0.1872 +0 0.0878 +0 0.1002 +0 0.0825 +0 0.0528 +0 0.1586 +0 0.0751 +0 0.0532 +0 0.1629 +0 0.0962 +0 0.1359 +0 0.0734 +0 0.1477 +0 0.1640 +0 0.0679 +0 0.1643 +0 0.1711 +0 0.0977 +1 0.5135 +0 0.0669 +0 0.0998 +0 0.0673 +0 0.1437 +0 0.3485 +0 0.0690 +0 0.0859 +0 0.0835 +0 0.0746 +0 0.3979 +0 0.0748 +0 0.0874 +0 0.0762 +0 0.1500 +0 0.2531 +0 0.1702 +0 0.0677 +0 0.2113 +0 0.0342 +0 0.3840 +0 0.1431 +0 0.0432 +0 0.3509 +0 0.0493 +0 0.6925 +0 0.2993 +0 0.1000 +0 0.0948 +0 0.3270 +0 0.0752 +0 0.1398 +0 0.1065 +0 0.0602 +0 0.1924 +0 0.0433 +0 0.1284 +0 0.1977 +0 0.1416 +0 0.0372 +0 0.2785 +0 0.2297 +0 0.0524 +0 0.3599 +0 0.0878 +0 0.0681 +0 0.1570 +0 0.0419 +0 0.0607 +0 0.2803 +0 0.0596 +0 0.0794 +0 0.0767 +0 0.1378 +0 0.2336 +0 0.0685 +0 0.0718 +0 0.1450 +0 0.0810 +0 0.0733 +0 0.0766 +0 0.1682 +0 0.3089 +0 0.0708 +0 0.0432 +0 0.1937 +0 0.1343 +0 0.3558 +0 0.0778 +0 0.1580 +0 0.0900 +0 0.3912 +0 0.0952 +0 0.2716 +0 0.0679 +0 0.1156 +0 0.1127 +0 0.1849 +0 0.1078 +0 0.0648 +0 0.0799 +0 0.1613 +0 0.1283 +0 0.2369 +0 0.0800 +0 0.0531 +0 0.5370 +0 0.1211 +0 0.2100 +0 0.5274 +0 0.0344 +0 0.0651 +0 0.0899 +0 0.1500 +0 0.2729 +0 0.0983 +0 0.1566 +0 0.1152 +0 0.0513 +0 0.2981 +0 0.7476 +0 0.3107 +0 0.0893 +0 0.0694 +0 0.0869 +0 0.2359 +0 0.0442 +0 0.0715 +0 0.0643 +0 0.0882 +0 0.0403 +1 0.1178 +0 0.1244 +0 0.0707 +0 0.1133 +0 0.0620 +0 0.2875 +0 0.0678 +0 0.1059 +0 0.1657 +0 0.2782 +0 0.0726 +0 0.1757 +0 0.0489 +0 0.3000 +0 0.1001 +0 0.0829 +0 0.2286 +0 0.2299 +0 0.0880 +0 0.1116 +0 0.0674 +0 0.0453 +0 0.1462 +0 0.1259 +0 0.1181 +0 0.1006 +0 0.0933 +0 0.0967 +0 0.0667 +0 0.0605 +0 0.0588 +0 0.5685 +0 0.0799 +0 0.0816 +0 0.0972 +0 0.0860 +0 0.0776 +0 0.0962 +0 0.0752 +0 0.0951 +0 0.1324 +0 0.1617 +0 0.1493 +0 0.1574 +0 0.1069 +0 0.1485 +0 0.1410 +0 0.0914 +0 0.0527 +0 0.0608 +0 0.1040 +0 0.1947 +0 0.2506 +0 0.1035 +0 0.0713 +1 0.8244 +0 0.2151 +0 0.1181 +0 0.1045 +0 0.0573 +0 0.1211 +0 0.2736 +0 0.0936 +0 0.0731 +0 0.0406 +0 0.1168 +0 0.1300 +0 0.0714 +0 0.1255 +0 0.1840 +0 0.1034 +0 0.0412 +0 0.0759 +0 0.0628 +0 0.0359 +0 0.1044 +0 0.0703 +0 0.2192 +0 0.2034 +0 0.1285 +0 0.1006 +0 0.0905 +0 0.0617 +0 0.1221 +0 0.2437 +0 0.0634 +0 0.1516 +0 0.0462 +0 0.0656 +0 0.0976 +0 0.0582 +0 0.1034 +0 0.0427 +0 0.1353 +0 0.0919 +0 0.0929 +0 0.1788 +0 0.0617 +0 0.0469 +0 0.1275 +0 0.0812 +0 0.3209 +0 0.1182 +0 0.0554 +0 0.1128 +0 0.0627 +0 0.2108 +0 0.1169 +0 0.1364 +0 0.1985 +0 0.1312 +0 0.1207 +0 0.2192 +0 0.3615 +0 0.1356 +0 0.1323 +0 0.1842 +0 0.0700 +0 0.0660 +0 0.2516 +0 0.1355 +0 0.0447 +0 0.1583 +0 0.1670 +0 0.1566 +0 0.0498 +0 0.4384 +0 0.2449 +0 0.2719 +0 0.0826 +0 0.0859 +0 0.1111 +0 0.0856 +0 0.3986 +0 0.0534 +0 0.0605 +0 0.0987 +0 0.0977 +0 0.1271 +0 0.2516 +0 0.2063 +0 0.2514 +0 0.3050 +0 0.1687 +0 0.5088 +0 0.1277 +0 0.0656 +0 0.1863 +0 0.1544 +0 0.2360 +0 0.0789 +0 0.1800 +0 0.0451 +0 0.0766 +0 0.0706 +0 0.0768 +0 0.0776 +0 0.6081 +1 0.7746 +0 0.0916 +0 0.0949 +0 0.1935 +0 0.0718 +0 0.3576 +0 0.1607 +0 0.0964 +0 0.0712 +0 0.4689 +0 0.0979 +0 0.1074 +0 0.2440 +0 0.0610 +0 0.1949 +0 0.0664 +0 0.0703 +0 0.0500 +0 0.0843 +0 0.3078 +0 0.0786 +0 0.0761 +0 0.1301 +0 0.1160 +0 0.1050 +0 0.1176 +0 0.0655 +0 0.0528 +0 0.2255 +0 0.1883 +0 0.0639 +0 0.1601 +0 0.1093 +0 0.1191 +0 0.0780 +0 0.2585 +0 0.0278 +0 0.2151 +0 0.0653 +0 0.1009 +0 0.0488 +0 0.0865 +0 0.0787 +0 0.0845 +0 0.1563 +0 0.0548 +0 0.0359 +0 0.1227 +0 0.0627 +0 0.1296 +0 0.0534 +0 0.0631 +0 0.0663 +0 0.1593 +0 0.0773 +0 0.0510 +0 0.3719 +0 0.2500 +0 0.0416 +0 0.2914 +0 0.3764 +0 0.1196 +0 0.0713 +0 0.0711 +0 0.0704 +0 0.0809 +0 0.1133 +0 0.0594 +0 0.0911 +0 0.0869 +0 0.0733 +0 0.0995 +0 0.0845 +0 0.0607 +0 0.1704 +0 0.0457 +0 0.1609 +0 0.1215 +0 0.1030 +0 0.2553 +0 0.0522 +0 0.1110 +0 0.0910 +0 0.1013 +0 0.0766 +0 0.0421 +0 0.2903 +0 0.6823 +0 0.0865 +0 0.0935 +0 0.1599 +1 0.7604 +0 0.1041 +0 0.6385 +0 0.1381 +0 0.1341 +0 0.0589 +0 0.0528 +0 0.0922 +0 0.0899 +0 0.0807 +0 0.1388 +0 0.0871 +0 0.0556 +0 0.3943 +0 0.0794 +0 0.0481 +0 0.1488 +0 0.1755 +0 0.0393 +0 0.0897 +0 0.5755 +0 0.1259 +0 0.3153 +0 0.0848 +0 0.0745 +0 0.0528 +0 0.2495 +0 0.0821 +0 0.0809 +0 0.1024 +0 0.1910 +0 0.0607 +0 0.1973 +0 0.0665 +0 0.0985 +0 0.0515 +0 0.0878 +0 0.0472 +0 0.1386 +0 0.1104 +0 0.0743 +0 0.0635 +0 0.1268 +0 0.1272 +0 0.2280 +0 0.2404 +0 0.0839 +0 0.0587 +0 0.2552 +0 0.1619 +0 0.2171 +0 0.0852 +0 0.0849 +0 0.4198 +0 0.1347 +0 0.1155 +0 0.0571 +0 0.0933 +0 0.1496 +0 0.1344 +0 0.4881 +1 0.8510 +0 0.0542 +0 0.0646 +0 0.0470 +0 0.0615 +0 0.1530 +0 0.3355 +0 0.2128 +0 0.0870 +0 0.2045 +0 0.2443 +0 0.0618 +0 0.1404 +0 0.2247 +0 0.0546 +0 0.1020 +0 0.1831 +0 0.0286 +0 0.2446 +0 0.3562 +0 0.1089 +0 0.2695 +0 0.7022 +0 0.0771 +0 0.1955 +0 0.1011 +0 0.1031 +0 0.1878 +0 0.0824 +0 0.3030 +0 0.0422 +0 0.0609 +0 0.1118 +0 0.1402 +0 0.0729 +0 0.2578 +0 0.3216 +0 0.3552 +0 0.0523 +0 0.1270 +0 0.1597 +0 0.0491 +0 0.1420 +0 0.0513 +0 0.0653 +0 0.1873 +0 0.1681 +0 0.0880 +0 0.0920 +0 0.4032 +0 0.0773 +0 0.1288 +0 0.5035 +0 0.1139 +0 0.0289 +0 0.1459 +0 0.2911 +0 0.1003 +0 0.1366 +0 0.0831 +0 0.1055 +0 0.1057 +0 0.0949 +0 0.5648 +0 0.0718 +0 0.0719 +0 0.1054 +0 0.1149 +0 0.3685 +0 0.1449 +0 0.2898 +0 0.1443 +0 0.1261 +0 0.2073 +0 0.0745 +0 0.1326 +1 0.7867 +0 0.0844 +0 0.1824 +0 0.0648 +0 0.0723 +0 0.3926 +0 0.1469 +0 0.0981 +0 0.1306 +0 0.1243 +0 0.0489 +0 0.0436 +0 0.1534 +0 0.1084 +0 0.0952 +0 0.1423 +0 0.0892 +0 0.0740 +0 0.0513 +0 0.1520 +0 0.0492 +0 0.0888 +0 0.1074 +0 0.0515 +0 0.0848 +0 0.1364 +0 0.1063 +0 0.0509 +0 0.2316 +0 0.1577 +0 0.0875 +0 0.2732 +0 0.1584 +0 0.0961 +0 0.1856 +0 0.0908 +0 0.1044 +0 0.1880 +0 0.1821 +0 0.1310 +0 0.2101 +0 0.1333 +0 0.1656 +0 0.1333 +0 0.0799 +0 0.2275 +0 0.0961 +0 0.1686 +0 0.0712 +0 0.2138 +0 0.1085 +0 0.1221 +0 0.1002 +0 0.1170 +0 0.0513 +0 0.1527 +0 0.0439 +0 0.3170 +0 0.0611 +0 0.1158 +0 0.0619 +0 0.1487 +0 0.2246 +0 0.7177 +0 0.1198 +0 0.0682 +0 0.0792 +0 0.0940 +0 0.1185 +0 0.3119 +0 0.1655 +0 0.1067 +0 0.1772 +0 0.0607 +0 0.0364 +0 0.0647 +0 0.0620 +0 0.1772 +0 0.0965 +0 0.2472 +0 0.0948 +0 0.1571 +0 0.1215 +0 0.1022 +0 0.1966 +0 0.0464 +0 0.0855 +0 0.3707 +0 0.0536 +0 0.0714 +0 0.0897 +0 0.1479 +0 0.2761 +0 0.0621 +0 0.0673 +0 0.0719 +0 0.0370 +0 0.0738 +0 0.0519 +0 0.0345 +0 0.1720 +0 0.1033 +0 0.0615 +0 0.0670 +0 0.7174 +0 0.1026 +0 0.0606 +0 0.0928 +0 0.0509 +0 0.1484 +0 0.0620 +0 0.2093 +0 0.2119 +0 0.5251 +0 0.1196 +0 0.0756 +0 0.1176 +0 0.1031 +0 0.1495 +0 0.2102 +0 0.0979 +0 0.1916 +0 0.1972 +0 0.1146 +0 0.1146 +0 0.1483 +0 0.1650 +0 0.0754 +0 0.0725 +0 0.1580 +0 0.1678 +0 0.0554 +0 0.0865 +0 0.0925 +0 0.0488 +0 0.0532 +0 0.3999 +0 0.0757 +0 0.1017 +0 0.6864 +0 0.1416 +0 0.0983 +0 0.1027 +0 0.0799 +0 0.2221 +0 0.0447 +0 0.3404 +0 0.0810 +0 0.1204 +0 0.0626 +0 0.2903 +0 0.0595 +0 0.0902 +0 0.1290 +0 0.0918 +0 0.1037 +0 0.3169 +0 0.1616 +0 0.1226 +0 0.0698 +0 0.1216 +0 0.1768 +0 0.0568 +0 0.2180 +0 0.0941 +0 0.1316 +0 0.1065 +0 0.1128 +0 0.1663 +0 0.0993 +0 0.0757 +0 0.0944 +0 0.1015 +0 0.0592 +0 0.0443 +0 0.2046 +0 0.0884 +0 0.0620 +0 0.0589 +0 0.2806 +0 0.0375 +0 0.0726 +0 0.0554 +0 0.0625 +0 0.1718 +0 0.2077 +0 0.0482 +0 0.0720 +0 0.1057 +0 0.5894 +0 0.0578 +0 0.0894 +0 0.0947 +0 0.0920 +0 0.1028 +0 0.1397 +1 0.8336 +0 0.1447 +0 0.2808 +0 0.2523 +0 0.1595 +0 0.0624 +0 0.0764 +0 0.2763 +0 0.0901 +0 0.1087 +0 0.5442 +0 0.0743 +0 0.0896 +0 0.1923 +0 0.1039 +0 0.0533 +0 0.0782 +0 0.1579 +0 0.0776 +0 0.0472 +0 0.1209 +0 0.0298 +0 0.0817 +0 0.2585 +0 0.0556 +0 0.1087 +0 0.0842 +0 0.0613 +0 0.1202 +0 0.0664 +0 0.1692 +0 0.1088 +0 0.0975 +0 0.0888 +0 0.0974 +0 0.0931 +0 0.1584 +0 0.1424 +0 0.1822 +0 0.0944 +0 0.0811 +0 0.2900 +0 0.0792 +0 0.1872 +0 0.1439 +0 0.1762 +0 0.0551 +0 0.0779 +0 0.4497 +0 0.0932 +0 0.1474 +0 0.0441 +0 0.1190 +0 0.1831 +0 0.0988 +0 0.2196 +0 0.1859 +0 0.0396 +0 0.2617 +0 0.0458 +0 0.0593 +0 0.1002 +0 0.2722 +0 0.1493 +0 0.1515 +0 0.0573 +0 0.0971 +0 0.1183 +0 0.3182 +1 0.8000 +0 0.5080 +0 0.0748 +0 0.2845 +0 0.0524 +0 0.1153 +0 0.2528 +0 0.0505 +0 0.0349 +0 0.0593 +0 0.1172 +0 0.1407 +0 0.0831 +0 0.1283 +0 0.0992 +0 0.0661 +0 0.1489 +0 0.1008 +0 0.0758 +0 0.0402 +0 0.1030 +0 0.0443 +0 0.1024 +0 0.1173 +0 0.2092 +0 0.3571 +0 0.0818 +0 0.0489 +0 0.1109 +0 0.0609 +0 0.4288 +0 0.0898 +0 0.2193 +0 0.5150 +0 0.0352 +0 0.0816 +0 0.0868 +0 0.1363 +0 0.1234 +0 0.1676 +0 0.1457 +0 0.1478 +0 0.1121 +1 0.8774 +0 0.0592 +0 0.1129 +0 0.2406 +0 0.0708 +0 0.0755 +0 0.0710 +0 0.1409 +0 0.1086 +0 0.0361 +0 0.0574 +0 0.0841 +0 0.1765 +0 0.0762 +0 0.4246 +0 0.1904 +0 0.1257 +0 0.0584 +1 0.8801 +0 0.5404 +0 0.0843 +0 0.1119 +0 0.2997 +0 0.0882 +0 0.1071 +0 0.0660 +0 0.0452 +0 0.1436 +0 0.0853 +0 0.0776 +0 0.1245 +0 0.1884 +0 0.2213 +0 0.2191 +0 0.2421 +0 0.0904 +0 0.0972 +0 0.1166 +1 0.8422 +0 0.3687 +0 0.1785 +0 0.1067 +0 0.1675 +0 0.2804 +0 0.1369 +0 0.0769 +0 0.1053 +0 0.0997 +0 0.1661 +0 0.1271 +0 0.0601 +0 0.0807 +0 0.0350 +0 0.0845 +0 0.0835 +0 0.0535 +0 0.0830 +0 0.4256 +0 0.1976 +0 0.1486 +0 0.0872 +0 0.0702 +0 0.1119 +0 0.0941 +0 0.2502 +0 0.1276 +0 0.3115 +0 0.0920 +0 0.0490 +0 0.0715 +0 0.1503 +1 0.8087 +0 0.2082 +0 0.1051 +0 0.0668 +0 0.0597 +0 0.0714 +0 0.0627 +0 0.0581 +0 0.1056 +0 0.0816 +0 0.0478 +0 0.0590 +0 0.0356 +0 0.0700 +0 0.2947 +1 0.7993 +0 0.1292 +0 0.0935 +0 0.0477 +0 0.0625 +0 0.0687 +0 0.1417 +0 0.0616 +0 0.1023 +0 0.1165 +0 0.0513 +0 0.0926 +0 0.1049 +0 0.1164 +0 0.0745 +0 0.1141 +0 0.1342 +0 0.0601 +0 0.1049 +0 0.1252 +0 0.2127 +0 0.0866 +0 0.1220 +0 0.1169 +0 0.1132 +0 0.0569 +0 0.0794 +0 0.1570 +0 0.0473 +0 0.0822 +0 0.2225 +0 0.0559 +0 0.2163 +0 0.0576 +0 0.2115 +0 0.2718 +0 0.0826 +0 0.1076 +0 0.0391 +0 0.1587 +0 0.3090 +0 0.1569 +0 0.1357 +0 0.0801 +0 0.0688 +0 0.1281 +0 0.0766 +0 0.0893 +1 0.7519 +0 0.0824 +0 0.0796 +0 0.0715 +0 0.1363 +0 0.1317 +0 0.1904 +0 0.1467 +0 0.0416 +0 0.2014 +0 0.1471 +0 0.0733 +0 0.0727 +0 0.1215 +0 0.1791 +0 0.0739 +0 0.0393 +0 0.1936 +0 0.0621 +0 0.1195 +0 0.3709 +0 0.1908 +0 0.1040 +0 0.1106 +0 0.1899 +0 0.0783 +0 0.1005 +0 0.0809 +0 0.0757 +0 0.1109 +0 0.1050 +0 0.0933 +0 0.1147 +0 0.1441 +0 0.0908 +0 0.0713 +0 0.1081 +0 0.1205 +0 0.1567 +0 0.0951 +0 0.2184 +0 0.0798 +0 0.0429 +0 0.1537 +0 0.0658 +0 0.1417 +0 0.1747 +0 0.1311 +0 0.0965 +0 0.0917 +0 0.5898 +0 0.1131 +0 0.1715 +0 0.0564 +0 0.2400 +0 0.1937 +0 0.0908 +0 0.6274 +0 0.1059 +0 0.0581 +0 0.2191 +0 0.0754 +0 0.3720 +0 0.1258 +0 0.0880 +0 0.1575 +0 0.0484 +0 0.0566 +1 0.8061 +0 0.1005 +0 0.0950 +0 0.1011 +0 0.0678 +0 0.1086 +0 0.1003 +0 0.0722 +0 0.1895 +0 0.0871 +0 0.0808 +0 0.1174 +0 0.0663 +0 0.0355 +0 0.0834 +0 0.0826 +0 0.0840 +0 0.1113 +0 0.0807 +0 0.2807 +0 0.0834 +1 0.8047 +0 0.1969 +0 0.1611 +0 0.0979 +0 0.0550 +0 0.0571 +0 0.0861 +0 0.1359 +0 0.2036 +0 0.0645 +0 0.1356 +0 0.1024 +0 0.0860 +0 0.1085 +0 0.1799 +0 0.0881 +0 0.0821 +0 0.1291 +0 0.1406 +0 0.0662 +0 0.0413 +0 0.0904 +0 0.1135 +0 0.0995 +0 0.2341 +0 0.3277 +0 0.0854 +0 0.0767 +0 0.0859 +0 0.5044 +1 0.8098 +0 0.1281 +0 0.1158 +0 0.0666 +0 0.1609 +0 0.0752 +0 0.1367 +0 0.0783 +0 0.1493 +0 0.1112 +0 0.1693 +0 0.2772 +0 0.1099 +0 0.1731 +0 0.5103 +0 0.1517 +0 0.0566 +0 0.2238 +0 0.0772 +0 0.0922 +0 0.3964 +0 0.0493 +0 0.0520 +0 0.2140 +0 0.0638 +0 0.1601 +0 0.1128 +0 0.0576 +0 0.0790 +0 0.1541 +0 0.5368 +0 0.0939 +0 0.0716 +0 0.1394 +0 0.0763 +0 0.1393 +0 0.3556 +0 0.2008 +0 0.0558 +0 0.0743 +0 0.2031 +0 0.2935 +0 0.1959 +0 0.1713 +0 0.0809 +0 0.0584 +0 0.0524 +0 0.0383 +0 0.1698 +0 0.0936 +0 0.1046 +0 0.0424 +0 0.1021 +0 0.0647 +0 0.1715 +0 0.0953 +0 0.0758 +0 0.1809 +0 0.1374 +1 0.7960 +0 0.0868 +0 0.0646 +0 0.0728 +0 0.0868 +0 0.0764 +0 0.1315 +0 0.0810 +0 0.1255 +0 0.0790 +0 0.1121 +0 0.0796 +0 0.3548 +0 0.1469 +0 0.0473 +0 0.0476 +0 0.1095 +0 0.1258 +0 0.0907 +0 0.0943 +0 0.0704 +0 0.0721 +0 0.7209 +0 0.0690 +0 0.0882 +0 0.2188 +0 0.1721 +0 0.2017 +0 0.2958 +0 0.1585 +0 0.0524 +0 0.2208 +0 0.0970 +0 0.0443 +0 0.1243 +0 0.1564 +0 0.0717 +0 0.1478 +0 0.1028 +0 0.1431 +0 0.0406 +0 0.3545 +0 0.0400 +0 0.0666 +0 0.0868 +0 0.0775 +0 0.1204 +0 0.1104 +0 0.1101 +0 0.1417 +0 0.0352 +0 0.0904 +0 0.0960 +0 0.2097 +0 0.0750 +0 0.2087 +0 0.0389 +0 0.1224 +0 0.1512 +0 0.4116 +0 0.0550 +0 0.1381 +0 0.0542 +0 0.0904 +0 0.1048 +0 0.6886 +0 0.1019 +0 0.2112 +0 0.0690 +1 0.8103 +0 0.3907 +0 0.3485 +0 0.0669 +0 0.1057 +0 0.0646 +1 0.7555 +0 0.3690 +0 0.0778 +0 0.1954 +0 0.0707 +0 0.0730 +0 0.0481 +0 0.1790 +0 0.1577 +0 0.0801 +0 0.0542 +0 0.1169 +0 0.0988 +0 0.1267 +0 0.1827 +0 0.1550 +0 0.0675 +0 0.0446 +0 0.0601 +0 0.1658 +0 0.0638 +0 0.0393 +0 0.0913 +0 0.3668 +0 0.0948 +0 0.1301 +0 0.0522 +0 0.1154 +1 0.8639 +0 0.0848 +0 0.1273 +0 0.0503 +0 0.0734 +0 0.0831 +0 0.2024 +0 0.0879 +0 0.1048 +0 0.0919 +0 0.0485 +0 0.0721 +0 0.0978 +0 0.2047 +0 0.0692 +0 0.0883 +0 0.2245 +0 0.1301 +0 0.2713 +0 0.5295 +0 0.1959 +0 0.0953 +0 0.0681 +0 0.0734 +0 0.0852 +0 0.1433 +0 0.6184 +0 0.3442 +0 0.1287 +0 0.0961 +0 0.0933 +0 0.1841 +0 0.1353 +0 0.4223 +0 0.1172 +0 0.0564 +0 0.1557 +0 0.1977 +0 0.4021 +0 0.0931 +0 0.0725 +0 0.0357 +0 0.0899 +0 0.1277 +0 0.1898 +0 0.0593 +0 0.1269 +0 0.0587 +0 0.1973 +0 0.1935 +0 0.0947 +0 0.0658 +0 0.0646 +0 0.0569 +0 0.0429 +0 0.1584 +0 0.1382 +0 0.0536 +0 0.1230 +0 0.0777 +0 0.3273 +0 0.0355 +1 0.7805 +0 0.0558 +0 0.4430 +0 0.1070 +0 0.0763 +0 0.5163 +0 0.1269 +0 0.0506 +0 0.1060 +0 0.0728 +0 0.0755 +0 0.0758 +0 0.1547 +0 0.0449 +0 0.1689 +0 0.0459 +0 0.2036 +0 0.2558 +0 0.0548 +0 0.1304 +0 0.1686 +0 0.1105 +0 0.1038 +0 0.2727 +0 0.0568 +0 0.2783 +0 0.2206 +0 0.1241 +1 0.7765 +0 0.1670 +0 0.0610 +0 0.0620 +0 0.0491 +0 0.1046 +0 0.0920 +0 0.1127 +0 0.2321 +0 0.0705 +0 0.1717 +0 0.0944 +0 0.0606 +0 0.2345 +0 0.2604 +0 0.0836 +0 0.1458 +0 0.0521 +1 0.8230 +0 0.1019 +0 0.1823 +0 0.0785 +0 0.2793 +0 0.0465 +0 0.1647 +0 0.1534 +0 0.0680 +0 0.0904 +0 0.2875 +0 0.1552 +1 0.8443 +0 0.0636 +0 0.2424 +0 0.7413 +0 0.1597 +0 0.1523 +0 0.0490 +0 0.5050 +0 0.5507 +0 0.1047 +0 0.0469 +0 0.0766 +0 0.0763 +0 0.0915 +0 0.1350 +0 0.0584 +0 0.0958 +0 0.0451 +0 0.0892 +0 0.1089 +0 0.0518 +0 0.0819 +0 0.2270 +0 0.0318 +0 0.1259 +0 0.1278 +0 0.0431 +0 0.0316 +0 0.1438 +0 0.3428 +0 0.1014 +0 0.0500 +0 0.0723 +0 0.0568 +0 0.0775 +0 0.0566 +0 0.0546 +0 0.0688 +0 0.1604 +0 0.0527 +0 0.0709 +0 0.0330 +0 0.0594 +1 0.8652 +0 0.1518 +0 0.0653 +0 0.1619 +0 0.2544 +0 0.0359 +0 0.0951 +0 0.0664 +0 0.0465 +0 0.0809 +0 0.1057 +0 0.0988 +0 0.0542 +0 0.2014 +0 0.2971 +0 0.1266 +0 0.0614 +0 0.6378 +0 0.1120 +0 0.3096 +0 0.0866 +0 0.1585 +0 0.0300 +0 0.0692 +0 0.0441 +0 0.0910 +0 0.0918 +0 0.0968 +0 0.0844 +1 0.7678 +0 0.0885 +0 0.0513 +0 0.3131 +0 0.1668 +0 0.0509 +0 0.0646 +0 0.2235 +0 0.0904 +0 0.0834 +0 0.1805 +0 0.0711 +0 0.1135 +0 0.2001 +0 0.0562 +0 0.1787 +0 0.4583 +1 0.7656 +0 0.1740 +0 0.0515 +0 0.2119 +0 0.1555 +0 0.2721 +0 0.1224 +0 0.4013 +0 0.0615 +0 0.2614 +0 0.0819 +0 0.0800 +0 0.0867 +0 0.0707 +0 0.2465 +0 0.1602 +0 0.1490 +0 0.0560 +0 0.0820 +0 0.1811 +0 0.4927 +0 0.0430 +0 0.1778 +0 0.0464 +0 0.1128 +0 0.1221 +0 0.0585 +0 0.1420 +0 0.2347 +0 0.1438 +0 0.1297 +0 0.0879 +0 0.1223 +0 0.0797 +0 0.2485 +0 0.2015 +0 0.0439 +0 0.6363 +0 0.1092 +0 0.4751 +0 0.0661 +0 0.1422 +0 0.1265 +0 0.1508 +0 0.0549 +0 0.0846 +0 0.5497 +0 0.1240 +0 0.0808 +0 0.0782 +0 0.0642 +0 0.0442 +0 0.0701 +0 0.1055 +0 0.1029 +0 0.2084 +0 0.1235 +0 0.1562 +0 0.0620 +0 0.0599 +0 0.0460 +0 0.0695 +0 0.0835 +0 0.1602 +0 0.1150 +0 0.1679 +0 0.0938 +0 0.2536 +0 0.2010 +0 0.1543 +0 0.0534 +0 0.0986 +0 0.1027 +0 0.0914 +0 0.0456 +0 0.1238 +0 0.1227 +0 0.1059 +0 0.0811 +0 0.1333 +0 0.2948 +0 0.1425 +0 0.4032 +0 0.0812 +0 0.0481 +0 0.1211 +0 0.1497 +0 0.0724 +0 0.1403 +0 0.0941 +0 0.0725 +0 0.0671 +0 0.1463 +0 0.1169 +0 0.1640 +0 0.0562 +0 0.2042 +0 0.4998 +0 0.0849 +0 0.1382 +1 0.8178 +0 0.2355 +0 0.1275 +0 0.0502 +0 0.0786 +0 0.0803 +1 0.7831 +0 0.1340 +0 0.0576 +0 0.1027 +0 0.1495 +0 0.2075 +0 0.0798 +0 0.2984 +0 0.0670 +0 0.1473 +0 0.0927 +0 0.0901 +0 0.0966 +0 0.1561 +0 0.1129 +0 0.0790 +0 0.1996 +0 0.1083 +0 0.0510 +0 0.1923 +0 0.4294 +0 0.0922 +0 0.1366 +0 0.0574 +0 0.0540 +0 0.1994 +0 0.1556 +0 0.0574 +0 0.1010 +0 0.0771 +0 0.0969 +0 0.1322 +0 0.1226 +0 0.0960 +0 0.2070 +0 0.2186 +0 0.0481 +0 0.0816 +0 0.0605 +0 0.1046 +0 0.4605 +0 0.6478 +0 0.1991 +0 0.1638 +0 0.0968 +0 0.1250 +0 0.2174 +0 0.0758 +0 0.0539 +0 0.0677 +0 0.0268 +0 0.0743 +0 0.2213 +0 0.0423 +0 0.1909 +0 0.1554 +0 0.5178 +0 0.4022 +0 0.0714 +0 0.1223 +0 0.0779 +0 0.3806 +0 0.0957 +0 0.1801 +0 0.1828 +0 0.0431 +0 0.2275 +0 0.3245 +0 0.1131 +0 0.1073 +0 0.1255 +0 0.3896 +0 0.0597 +0 0.0791 +0 0.1061 +0 0.1103 +1 0.8343 +0 0.4096 +0 0.3010 +0 0.1744 +0 0.1746 +0 0.1291 +0 0.0465 +0 0.1507 +0 0.2687 +0 0.1595 +0 0.1007 +0 0.2540 +0 0.0849 +0 0.1387 +0 0.0964 +0 0.0672 +0 0.0931 +0 0.0700 +0 0.0760 +0 0.0742 +0 0.4081 +0 0.1856 +0 0.0859 +0 0.1437 +0 0.0605 +0 0.1772 +0 0.1466 +0 0.0689 +0 0.1970 +0 0.1518 +0 0.0984 +0 0.1820 +0 0.1258 +0 0.0804 +0 0.0373 +0 0.1233 +0 0.1092 +0 0.1683 +0 0.0672 +0 0.1497 +0 0.2178 +0 0.0953 +0 0.1134 +0 0.1878 +0 0.0405 +0 0.1513 +0 0.0917 +0 0.1448 +0 0.4105 +0 0.0628 +0 0.1613 +0 0.3963 +0 0.0718 +0 0.1468 +0 0.0829 +0 0.0925 +0 0.0991 +0 0.1077 +0 0.1724 +0 0.1219 +0 0.0623 +0 0.0917 +0 0.1350 +0 0.0585 +0 0.1472 +0 0.5612 +0 0.1420 +0 0.1872 +0 0.0874 +0 0.1164 +0 0.1314 +0 0.1330 +0 0.0451 +0 0.2169 +0 0.1396 +0 0.3608 +0 0.0372 +0 0.0988 +0 0.1385 +0 0.4465 +0 0.1128 +0 0.1289 +0 0.0778 +0 0.1331 +0 0.3245 +0 0.1593 +0 0.0531 +0 0.1189 +0 0.3905 +0 0.0656 +0 0.2348 +0 0.0859 +0 0.1928 +0 0.1406 +0 0.1438 +0 0.1297 +0 0.1141 +0 0.3339 +0 0.0714 +0 0.5095 +0 0.0685 +0 0.0823 +0 0.1364 +1 0.8286 +0 0.2014 +0 0.1090 +0 0.0367 +0 0.2132 +0 0.0917 +0 0.1243 +0 0.0355 +0 0.2511 +0 0.0976 +0 0.0386 +0 0.1339 +0 0.1174 +0 0.2434 +0 0.0951 +0 0.5199 +0 0.1849 +0 0.1011 +0 0.0669 +0 0.0697 +0 0.0896 +0 0.2037 +0 0.0607 +0 0.1269 +0 0.0656 +0 0.0668 +0 0.0537 +0 0.0840 +0 0.0731 +1 0.8545 +0 0.1414 +0 0.1647 +0 0.1677 +0 0.1213 +0 0.0708 +0 0.0984 +0 0.1831 +0 0.1733 +0 0.1035 +0 0.0420 +0 0.0636 +0 0.1849 +0 0.2951 +0 0.0521 +0 0.3803 +0 0.0761 +0 0.0441 +0 0.0911 +0 0.1786 +0 0.0940 +0 0.0854 +0 0.2569 +0 0.1387 +0 0.0867 +0 0.1121 +0 0.0742 +0 0.0644 +0 0.3041 +0 0.0499 +0 0.0704 +0 0.0826 +0 0.1140 +0 0.0906 +0 0.1086 +0 0.1661 +0 0.0930 +0 0.1515 +0 0.0882 +0 0.1485 +0 0.1400 +0 0.0756 +0 0.2078 +0 0.1180 +0 0.1210 +0 0.0333 +0 0.0374 +0 0.0925 +0 0.2083 +0 0.0486 +0 0.0983 +0 0.0744 +0 0.1014 +0 0.1912 +0 0.1750 +0 0.1183 +0 0.3264 +0 0.0894 +0 0.0894 +0 0.1926 +0 0.3139 +0 0.0540 +0 0.0337 +0 0.3393 +0 0.0852 +0 0.1633 +0 0.1328 +0 0.0716 +0 0.5738 +0 0.0714 +0 0.1179 +0 0.0644 +0 0.1166 +0 0.0613 +0 0.1037 +0 0.2008 +0 0.1574 +0 0.0925 +0 0.2611 +0 0.1393 +0 0.2345 +0 0.0597 +0 0.0964 +0 0.1885 +0 0.0594 +0 0.1181 +0 0.0542 +0 0.1308 +0 0.0628 +0 0.1356 +0 0.1100 +0 0.3280 +0 0.0508 +0 0.0679 +0 0.1810 +0 0.1833 +0 0.0771 +0 0.1474 +0 0.4143 +0 0.0699 +0 0.6601 +0 0.1976 +0 0.1751 +0 0.0812 +0 0.1228 +0 0.0656 +0 0.1055 +0 0.1124 +0 0.1338 +0 0.1061 +0 0.2267 +0 0.1362 +0 0.2130 +0 0.0527 +0 0.2093 +0 0.0827 +0 0.1729 +0 0.0345 +0 0.0677 +0 0.1106 +0 0.0927 +0 0.1308 +0 0.1116 +0 0.1450 +0 0.1320 +0 0.0781 +0 0.3294 +0 0.0582 +0 0.0944 +0 0.0678 +0 0.0636 +0 0.0783 +0 0.2146 +0 0.0780 +0 0.0514 +0 0.3038 +0 0.1279 +0 0.1964 +0 0.1826 +0 0.0674 +0 0.0422 +0 0.1202 +0 0.1464 +0 0.1485 +0 0.1094 +0 0.1810 +0 0.1072 +0 0.1614 +0 0.0321 +0 0.2075 +0 0.0339 +0 0.1002 +0 0.1198 +0 0.0747 +0 0.0460 +0 0.1975 +0 0.0456 +0 0.3106 +0 0.0641 +0 0.0520 +0 0.1164 +0 0.1820 +0 0.1265 +0 0.0605 +0 0.0616 +0 0.1415 +0 0.0859 +0 0.2276 +0 0.0474 +0 0.4225 +0 0.0499 +0 0.0474 +0 0.1519 +0 0.0350 +0 0.1444 +0 0.0649 +0 0.0696 +0 0.0595 +0 0.0536 +0 0.1208 +0 0.0708 +0 0.0878 +0 0.0650 +0 0.0777 +0 0.3305 +0 0.0742 +0 0.1004 +0 0.0855 +0 0.0482 +0 0.0996 +0 0.2316 +0 0.0657 +0 0.0307 +0 0.1709 +0 0.0482 +0 0.1437 +0 0.1547 +0 0.1510 +0 0.1089 +0 0.0902 +0 0.1154 +0 0.1022 +0 0.0468 +0 0.2008 +0 0.0848 +0 0.0669 +0 0.0484 +0 0.3815 +0 0.1523 +0 0.0736 +0 0.0459 +0 0.1355 +0 0.1870 +0 0.4097 +0 0.0864 +0 0.1706 +0 0.0541 +0 0.2318 +0 0.1203 +0 0.0740 +0 0.1742 +0 0.0752 +0 0.0629 +0 0.0680 +0 0.1534 +0 0.0538 +0 0.1126 +0 0.2218 +0 0.3627 +0 0.1357 +0 0.1186 +0 0.0735 +0 0.1567 +0 0.2160 +0 0.0678 +0 0.0944 +0 0.1255 +0 0.0936 +0 0.0702 +0 0.2899 +0 0.0843 +0 0.0889 +0 0.1007 +0 0.1616 +0 0.2355 +0 0.0598 +0 0.0427 +0 0.0769 +0 0.0472 +0 0.1843 +0 0.1688 +0 0.0746 +0 0.0791 +0 0.0461 +0 0.0916 +0 0.0603 +0 0.0602 +0 0.1205 +0 0.1281 +0 0.7037 +0 0.1691 +0 0.1836 +0 0.1854 +0 0.1166 +0 0.0756 +0 0.0866 +0 0.3100 +0 0.1043 +0 0.0346 +0 0.0650 +0 0.1350 +0 0.0768 +0 0.0410 +0 0.0435 +0 0.6644 +0 0.0811 +0 0.2751 +0 0.0738 +0 0.0884 +0 0.2983 +0 0.0829 +0 0.0974 +0 0.0502 +0 0.0963 +0 0.0985 +0 0.2010 +0 0.1017 +0 0.2665 +0 0.0687 +0 0.3472 +0 0.0928 +0 0.0592 +0 0.0478 +0 0.2805 +0 0.0872 +0 0.2784 +0 0.0461 +0 0.1583 +0 0.0573 +0 0.1289 +0 0.1187 +0 0.0472 +0 0.1657 +0 0.0490 +0 0.0542 +0 0.0934 +0 0.3325 +0 0.0546 +0 0.0719 +0 0.1042 +0 0.0670 +0 0.0421 +0 0.0407 +0 0.1407 +0 0.6401 +0 0.0725 +0 0.1779 +0 0.0519 +0 0.0846 +0 0.7184 +0 0.0535 +0 0.0608 +0 0.1746 +1 0.7581 +0 0.0858 +0 0.1504 +0 0.0723 +0 0.0606 +0 0.1201 +0 0.0488 +0 0.3595 +0 0.0866 +0 0.0905 +0 0.1307 +0 0.2145 +0 0.2210 +0 0.0771 +0 0.1080 +0 0.0662 +0 0.0854 +0 0.0381 +0 0.0473 +0 0.1053 +0 0.0918 +0 0.2625 +0 0.0443 +0 0.4703 +0 0.0966 +0 0.0650 +0 0.1512 +0 0.0821 +0 0.1246 +0 0.1093 +0 0.1417 +0 0.2416 +0 0.0838 +0 0.3045 +0 0.1369 +0 0.1588 +0 0.2053 +0 0.0296 +0 0.2059 +0 0.1117 +0 0.2713 +0 0.0779 +0 0.0952 +0 0.1050 +0 0.0875 +0 0.1735 +0 0.0741 +0 0.1029 +0 0.0422 +0 0.2195 +0 0.0604 +0 0.1237 +0 0.0789 +0 0.1172 +0 0.1166 +0 0.0844 +0 0.4157 +0 0.1216 +0 0.1032 +0 0.0973 +0 0.0654 +0 0.0591 +0 0.0375 +0 0.0536 +0 0.1469 +0 0.1342 +0 0.1052 +0 0.1939 +0 0.1362 +0 0.0898 +0 0.0728 +0 0.0395 +0 0.1893 +0 0.1012 +0 0.5577 +0 0.3163 +0 0.1216 +0 0.0663 +0 0.2181 +0 0.0880 +0 0.4501 +0 0.1044 +0 0.7441 +0 0.3579 +0 0.1821 +0 0.1557 +0 0.1963 +1 0.7696 +0 0.0710 +0 0.0423 +0 0.1096 +0 0.1023 +0 0.1207 +0 0.0797 +0 0.5079 +0 0.1045 +0 0.1102 +0 0.0948 +0 0.1309 +0 0.1098 +0 0.0596 +0 0.1118 +0 0.0868 +0 0.1754 +0 0.0446 +0 0.1389 +0 0.0438 +0 0.0630 +0 0.0523 +0 0.1794 +0 0.1341 +0 0.1112 +0 0.0698 +0 0.1586 +0 0.0319 +0 0.1096 +0 0.0882 +0 0.1413 +0 0.0346 +0 0.1256 +0 0.4485 +0 0.2273 +0 0.0806 +0 0.1064 +0 0.1239 +0 0.2414 +0 0.1250 +0 0.0409 +0 0.2573 +0 0.1689 +0 0.0519 +0 0.0508 +0 0.1379 +0 0.0520 +0 0.0764 +0 0.0628 +0 0.1032 +0 0.0399 +0 0.3517 +1 0.8320 +0 0.0844 +0 0.1320 +0 0.0666 +0 0.2321 +0 0.0593 +0 0.0630 +0 0.0428 +0 0.0980 +0 0.1038 +0 0.2648 +0 0.4026 +0 0.0492 +0 0.0929 +0 0.0544 +0 0.0638 +0 0.1146 +0 0.0661 +0 0.1184 +0 0.0617 +0 0.1216 +0 0.2164 +0 0.3451 +0 0.0421 +0 0.1522 +0 0.1540 +0 0.1026 +0 0.5035 +0 0.1002 +0 0.1518 +0 0.1525 +0 0.1278 +0 0.1022 +0 0.0902 +0 0.0538 +0 0.1220 +0 0.1032 +0 0.0560 +0 0.1985 +0 0.1283 +0 0.0665 +0 0.1720 +0 0.1323 +0 0.4147 +0 0.2017 +0 0.0947 +0 0.1145 +0 0.0621 +0 0.0769 +0 0.0786 +0 0.0764 +0 0.2385 +0 0.0857 +0 0.0869 +0 0.1211 +0 0.1430 +0 0.1262 +0 0.0956 +0 0.0687 +0 0.2611 +0 0.1213 +0 0.1975 +0 0.0466 +0 0.1443 +0 0.0877 +0 0.0802 +0 0.2510 +0 0.0859 +1 0.8749 +0 0.0647 +0 0.1012 +0 0.0692 +0 0.1506 +0 0.1152 +0 0.1082 +0 0.1188 +0 0.0590 +0 0.0632 +0 0.1051 +0 0.0971 +0 0.1082 +0 0.0919 +0 0.1574 +0 0.1662 +0 0.1267 +0 0.0963 +0 0.6482 +0 0.1655 +0 0.0643 +0 0.1305 +0 0.0918 +0 0.1443 +0 0.0760 +0 0.0911 +0 0.0988 +0 0.0602 +0 0.1787 +0 0.0425 +0 0.1358 +0 0.4541 +0 0.0623 +0 0.0871 +0 0.0851 +0 0.1071 +0 0.1035 +0 0.1752 +0 0.1746 +0 0.1165 +0 0.0399 +0 0.0325 +1 0.8032 +0 0.0837 +0 0.0461 +0 0.1578 +0 0.0587 +0 0.1559 +0 0.0900 +0 0.0612 +0 0.1184 +0 0.1681 +0 0.0982 +0 0.0748 +0 0.0722 +0 0.0784 +0 0.1324 +0 0.2157 +0 0.0662 +0 0.0889 +0 0.1035 +0 0.0826 +0 0.0497 +0 0.3191 +0 0.1046 +0 0.0928 +0 0.1075 +0 0.1700 +0 0.1125 +0 0.0994 +0 0.0703 +0 0.0798 +0 0.1256 +1 0.8332 +0 0.0726 +0 0.0839 +0 0.0421 +0 0.1494 +0 0.2480 +0 0.1199 +0 0.0526 +0 0.0564 +0 0.0844 +0 0.2578 +0 0.2053 +0 0.0939 +0 0.0711 +0 0.0580 +0 0.0845 +0 0.3869 +0 0.0975 +0 0.1595 +0 0.2773 +0 0.0861 +0 0.4083 +0 0.1335 +0 0.1531 +0 0.5587 +0 0.1111 +0 0.0658 +0 0.1242 +0 0.2620 +0 0.1085 +0 0.0502 +0 0.0779 +0 0.1466 +0 0.1252 +0 0.2873 +0 0.0847 +0 0.2742 +0 0.0826 +0 0.0573 +0 0.0824 +0 0.5516 +1 0.7897 +0 0.1737 +0 0.1894 +0 0.0586 +0 0.1130 +0 0.1416 +0 0.0307 +0 0.0682 +0 0.1153 +0 0.0545 +0 0.1143 +0 0.1072 +0 0.0764 +0 0.1021 +0 0.1633 +0 0.0968 +0 0.1835 +0 0.0887 +0 0.1025 +0 0.0448 +0 0.2290 +0 0.0839 +0 0.4701 +0 0.0651 +0 0.4320 +0 0.1977 +0 0.1596 +0 0.2356 +0 0.1735 +0 0.1967 +0 0.0933 +0 0.1237 +0 0.0628 +0 0.0878 +0 0.0909 +0 0.0704 +0 0.2335 +0 0.2377 +0 0.1418 +0 0.3387 +0 0.0886 +0 0.6864 +0 0.0928 +0 0.0612 +0 0.0486 +0 0.2154 +0 0.0554 +0 0.1126 +0 0.5743 +0 0.0843 +0 0.1032 +0 0.1043 +0 0.0823 +0 0.0705 +0 0.1616 +1 0.7844 +0 0.0710 +0 0.1614 +0 0.2105 +0 0.0856 +0 0.0742 +0 0.0940 +0 0.1887 +0 0.1068 +0 0.1283 +0 0.1928 +0 0.1286 +0 0.0738 +0 0.2654 +0 0.2031 +0 0.1083 +0 0.1420 +0 0.6321 +0 0.0841 +0 0.0606 +0 0.1393 +0 0.0743 +0 0.0696 +0 0.3407 +0 0.5838 +0 0.2153 +0 0.0812 +0 0.0953 +0 0.0594 +0 0.0699 +0 0.0744 +0 0.0657 +0 0.1310 +0 0.0689 +0 0.0854 +0 0.1760 +0 0.0744 +0 0.2211 +0 0.2283 +0 0.0427 +0 0.0835 +0 0.0956 +0 0.0359 +0 0.3190 +1 0.8079 +0 0.0459 +0 0.0409 +0 0.0764 +0 0.1160 +0 0.0930 +0 0.3429 +0 0.0716 +0 0.1007 +0 0.0522 +0 0.5915 +0 0.1919 +0 0.3114 +0 0.0953 +1 0.8241 +0 0.2846 +0 0.1879 +0 0.1748 +0 0.1273 +0 0.3416 +0 0.1493 +0 0.0448 +0 0.1870 +0 0.1201 +0 0.0662 +0 0.0456 +0 0.1127 +0 0.0690 +0 0.0660 +0 0.2106 +0 0.2253 +0 0.5757 +0 0.0620 +0 0.0833 +0 0.2062 +0 0.0652 +0 0.7488 +0 0.1480 +0 0.4539 +0 0.1166 +0 0.0661 +0 0.0642 +0 0.0509 +0 0.0719 +0 0.1154 +0 0.1290 +0 0.0455 +0 0.0888 +0 0.0974 +0 0.1870 +0 0.0872 +0 0.0801 +0 0.2549 +0 0.0667 +0 0.0663 +0 0.1390 +0 0.1806 +0 0.1149 +0 0.2788 +0 0.2669 +0 0.0528 +0 0.1786 +0 0.1573 +0 0.1112 +0 0.0630 +0 0.0553 +0 0.1838 +0 0.1455 +0 0.0938 +0 0.1093 +0 0.1428 +0 0.0558 +0 0.1468 +0 0.3367 +0 0.2126 +0 0.0496 +0 0.0667 +0 0.0765 +0 0.1816 +0 0.1862 +0 0.0905 +0 0.0529 +0 0.1157 +0 0.2281 +0 0.1356 +0 0.0740 +0 0.1084 +0 0.1065 +0 0.0992 +0 0.0554 +0 0.0816 +0 0.2179 +0 0.0691 +0 0.0914 +0 0.2160 +0 0.0476 +0 0.0484 +0 0.0566 +0 0.0673 +0 0.0702 +0 0.0899 +0 0.2863 +0 0.0648 +0 0.0935 +0 0.1506 +0 0.4500 +0 0.0870 +0 0.1617 +0 0.2341 +0 0.1526 +0 0.2374 +0 0.1615 +0 0.2012 +0 0.1452 +0 0.1428 +0 0.0948 +0 0.1377 +0 0.1107 +0 0.1779 +0 0.1318 +0 0.0336 +0 0.0679 +0 0.3451 +0 0.1309 +0 0.0813 +0 0.1485 +0 0.0626 +0 0.0905 +0 0.0727 +0 0.1159 +0 0.0999 +0 0.0763 +0 0.0907 +0 0.1811 +0 0.1028 +0 0.1704 +0 0.3738 +0 0.0549 +0 0.1705 +0 0.1031 +0 0.1652 +0 0.1601 +0 0.1021 +0 0.0903 +0 0.1116 +0 0.0644 +0 0.0733 +0 0.2018 +0 0.0655 +0 0.1194 +0 0.0617 +0 0.1852 +0 0.1077 +0 0.0726 +0 0.2973 +0 0.1439 +0 0.0608 +0 0.0328 +0 0.1220 +0 0.1157 +0 0.0440 +0 0.0605 +0 0.1166 +0 0.1556 +0 0.2858 +0 0.2523 +0 0.0488 +0 0.0768 +0 0.1028 +0 0.0701 +0 0.2066 +0 0.1773 +0 0.0465 +0 0.0931 +0 0.0819 +0 0.1669 +0 0.2208 +0 0.2361 +0 0.1593 +0 0.0985 +0 0.0812 +0 0.0663 +0 0.0476 +0 0.0887 +0 0.1922 +0 0.1212 +0 0.0453 +0 0.0649 +0 0.2249 +0 0.3755 +0 0.1188 +0 0.0445 +0 0.1943 +0 0.0486 +0 0.0859 +0 0.0451 +0 0.0512 +0 0.1297 +0 0.2730 +0 0.1510 +0 0.0942 +0 0.0823 +0 0.0800 +0 0.0743 +0 0.0442 +0 0.0625 +0 0.0909 +0 0.2395 +0 0.1000 +0 0.2624 +0 0.1086 +0 0.0953 +0 0.1112 +0 0.0903 +0 0.0667 +0 0.1484 +0 0.0644 +0 0.1867 +0 0.1759 +0 0.1017 +0 0.1461 +0 0.1309 +0 0.5956 +0 0.0907 +0 0.0768 +0 0.0604 +0 0.1057 +0 0.1134 +0 0.3105 +0 0.1018 +0 0.2642 +0 0.1505 +0 0.1805 +0 0.0789 +0 0.0857 +0 0.2650 +0 0.2053 +0 0.1542 +0 0.0778 +0 0.0704 +0 0.5126 +0 0.2926 +0 0.1284 +0 0.1113 +0 0.1214 +1 0.7564 +0 0.0810 +0 0.2307 +0 0.1140 +0 0.3323 +0 0.2581 +0 0.0850 +0 0.2233 +0 0.0432 +0 0.1996 +1 0.7619 +0 0.1253 +0 0.1986 +0 0.1942 +0 0.1559 +0 0.1079 +0 0.1247 +0 0.0458 +0 0.0782 +0 0.1780 +0 0.0857 +0 0.2379 +0 0.1053 +0 0.0405 +0 0.0792 +0 0.6300 +0 0.1549 +0 0.0904 +0 0.2153 +0 0.2580 +0 0.0630 +0 0.0438 +0 0.1781 +0 0.1474 +0 0.0915 +0 0.0772 +0 0.1026 +0 0.1440 +0 0.0830 +0 0.0724 +0 0.0529 +0 0.0773 +0 0.0807 +0 0.2672 +0 0.0858 +0 0.0567 +0 0.2161 +0 0.0902 +0 0.0370 +0 0.1286 +0 0.2697 +0 0.0911 +0 0.3089 +0 0.1548 +0 0.1086 +0 0.0507 +0 0.1643 +0 0.2100 +0 0.0404 +0 0.2273 +0 0.0426 +0 0.0973 +0 0.0691 +0 0.0949 +1 0.8293 +0 0.2174 +0 0.5525 +0 0.2172 +0 0.0807 +0 0.0424 +0 0.0597 +0 0.3346 +0 0.0583 +1 0.8647 +0 0.1212 +0 0.0964 +0 0.0848 +0 0.0670 +0 0.1481 +0 0.0767 +0 0.1885 +0 0.1453 +0 0.1214 +0 0.0784 +0 0.0986 +0 0.0516 +0 0.2515 +0 0.0603 +0 0.1773 +0 0.1335 +0 0.0880 +0 0.2174 +0 0.1088 +0 0.0948 +0 0.0751 +0 0.1123 +0 0.1072 +0 0.1406 +0 0.1110 +0 0.1029 +0 0.2257 +0 0.0841 +0 0.0618 +0 0.0911 +0 0.0498 +0 0.2907 +0 0.1102 +0 0.3727 +0 0.0664 +0 0.0982 +0 0.5717 +0 0.0687 +0 0.0641 +0 0.0875 +0 0.2040 +0 0.1640 +0 0.4918 +0 0.0733 +0 0.0498 +0 0.0835 +0 0.0691 +0 0.0810 +0 0.2143 +0 0.0524 +0 0.1514 +0 0.0988 +0 0.0965 +0 0.1956 +0 0.2103 +0 0.1348 +0 0.0990 +0 0.0484 +0 0.1170 +0 0.2229 +0 0.0966 +0 0.0665 +0 0.1520 +0 0.1083 +0 0.0702 +0 0.0469 +0 0.0604 +0 0.1065 +0 0.2966 +0 0.2101 +0 0.0413 +0 0.1555 +0 0.1835 +0 0.3442 +0 0.1078 +0 0.1122 +0 0.1872 +0 0.2127 +0 0.0928 +0 0.2335 +0 0.3848 +0 0.1556 +0 0.0631 +0 0.1114 +0 0.1093 +0 0.0825 +0 0.1032 +0 0.2595 +0 0.1298 +0 0.0849 +0 0.6174 +0 0.1884 +0 0.1080 +0 0.1177 +0 0.2329 +0 0.1032 +0 0.0882 +0 0.0506 +0 0.2121 +1 0.8347 +0 0.5236 +0 0.2058 +0 0.0582 +0 0.0763 +0 0.1890 +0 0.1882 +0 0.0734 +0 0.1178 +0 0.1000 +0 0.0559 +0 0.2061 +0 0.1192 +0 0.0801 +0 0.0926 +0 0.0363 +0 0.0698 +0 0.0708 +0 0.4549 +0 0.1444 +0 0.2503 +0 0.1078 +0 0.1733 +0 0.0350 +0 0.2527 +0 0.1827 +0 0.0859 +0 0.1313 +0 0.2257 +0 0.3128 +0 0.1781 +0 0.0882 +0 0.1220 +0 0.0978 +0 0.2909 +0 0.0703 +0 0.1179 +0 0.1598 +0 0.0762 +0 0.1515 +0 0.0669 +0 0.1080 +0 0.0614 +0 0.0923 +0 0.1192 +0 0.0737 +0 0.0498 +0 0.1573 +0 0.2490 +0 0.2428 +0 0.2851 +0 0.0885 +0 0.0865 +0 0.0543 +0 0.0755 +0 0.1045 +0 0.0942 +0 0.1102 +1 0.8124 +0 0.0492 +0 0.0679 +0 0.0925 +0 0.1119 +0 0.2110 +0 0.0692 +0 0.0622 +0 0.0352 +0 0.0552 +0 0.2537 +0 0.0562 +0 0.1593 +0 0.0522 +0 0.0782 +0 0.1087 +0 0.0805 +1 0.7657 +0 0.0977 +0 0.0839 +0 0.1066 +0 0.2033 +0 0.0957 +0 0.1568 +0 0.1925 +0 0.3770 +0 0.0357 +0 0.2612 +0 0.0562 +0 0.1214 +0 0.0669 +0 0.1489 +0 0.0968 +0 0.0764 +0 0.1341 +0 0.0712 +0 0.0460 +0 0.0704 +0 0.0460 +0 0.0663 +0 0.1243 +0 0.0866 +0 0.2606 +0 0.1365 +0 0.1041 +0 0.0461 +0 0.1840 +0 0.0984 +0 0.0658 +0 0.2126 +0 0.0430 +0 0.0618 +0 0.1464 +0 0.2817 +0 0.0778 +0 0.1921 +0 0.0896 +0 0.0997 +0 0.6044 +0 0.0503 +0 0.1144 +0 0.0816 +0 0.0850 +0 0.1183 +0 0.0771 +0 0.1067 +0 0.1186 +0 0.1059 +0 0.1813 +0 0.0437 +0 0.1077 +0 0.2150 +0 0.1234 +0 0.1956 +0 0.0482 +0 0.1662 +0 0.1140 +0 0.1629 +0 0.4389 +0 0.0505 +0 0.0976 +0 0.0726 +0 0.1389 +0 0.0694 +0 0.1052 +0 0.0776 +0 0.1193 +0 0.0981 +0 0.2459 +0 0.0453 +0 0.0848 +0 0.0804 +0 0.0965 +0 0.0482 +0 0.1044 +0 0.0585 +0 0.2135 +0 0.1992 +0 0.0550 +0 0.1841 +0 0.0835 +0 0.1545 +0 0.1042 +0 0.1415 +0 0.1012 +0 0.0602 +0 0.1723 +0 0.0922 +0 0.3254 +0 0.0650 +0 0.1404 +0 0.5841 +0 0.1164 +0 0.1125 +0 0.1125 +0 0.0775 +0 0.1147 +0 0.0675 +0 0.0474 +0 0.0340 +0 0.0925 +0 0.0854 +0 0.3449 +0 0.0642 +0 0.1284 +0 0.0797 +0 0.1572 +0 0.0501 +1 0.7861 +0 0.0516 +0 0.0948 +0 0.0989 +0 0.2118 +0 0.1644 +0 0.4266 +0 0.0992 +0 0.0731 +0 0.0567 +0 0.1322 +0 0.2695 +0 0.6145 +0 0.1020 +0 0.0668 +0 0.0840 +0 0.0411 +0 0.0945 +1 0.8686 +0 0.1554 +0 0.7166 +0 0.0695 +0 0.1736 +0 0.2127 +0 0.1285 +0 0.2004 +0 0.0702 +0 0.2048 +0 0.0645 +0 0.1359 +0 0.0387 +0 0.2177 +0 0.2368 +0 0.2284 +0 0.1892 +0 0.1389 +0 0.0607 +0 0.0873 +0 0.2275 +0 0.0635 +0 0.0993 +0 0.0544 +0 0.2181 +0 0.1291 +0 0.1006 +0 0.0641 +0 0.0832 +0 0.1536 +0 0.0602 +0 0.3450 +0 0.0347 +0 0.1143 +0 0.0561 +0 0.0479 +0 0.1136 +0 0.0924 +0 0.0912 +0 0.0866 +1 0.7769 +0 0.0768 +0 0.1422 +0 0.1214 +0 0.0837 +0 0.2954 +0 0.0635 +0 0.1322 +0 0.1220 +1 0.8617 +0 0.1028 +0 0.0538 +0 0.0662 +0 0.0544 +0 0.2131 +0 0.1266 +0 0.0444 +0 0.0703 +0 0.0646 +0 0.1923 +0 0.2471 +0 0.1068 +0 0.0618 +0 0.0665 +0 0.0504 +0 0.2443 +0 0.1678 +0 0.0831 +0 0.0662 +0 0.1020 +0 0.1302 +0 0.0629 +0 0.1679 +0 0.3999 +0 0.1282 +0 0.2279 +0 0.0724 +0 0.0831 +0 0.1617 +0 0.1014 +0 0.1869 +0 0.0727 +0 0.1416 +0 0.2064 +0 0.0504 +0 0.2082 +0 0.7323 +0 0.0426 +0 0.1083 +0 0.0752 +0 0.3581 +0 0.1092 +0 0.0676 +0 0.0558 +0 0.2021 +0 0.1521 +0 0.1234 +0 0.0932 +0 0.0488 +0 0.1110 +0 0.2195 +0 0.1057 +0 0.1110 +0 0.1220 +0 0.0462 +0 0.1877 +0 0.0801 +0 0.1062 +0 0.0384 +0 0.0485 +1 0.7652 +0 0.0780 +0 0.1285 +0 0.1061 +0 0.0937 +0 0.0692 +0 0.2597 +0 0.1101 +0 0.0942 +0 0.0579 +0 0.1648 +0 0.1008 +0 0.2750 +0 0.5322 +0 0.0860 +0 0.0694 +0 0.2431 +0 0.0778 +0 0.0786 +0 0.1131 +0 0.1349 +0 0.0924 +0 0.3443 +0 0.1834 +0 0.1291 +0 0.1460 +0 0.0637 +0 0.1082 +0 0.0811 +0 0.0598 +0 0.1187 +0 0.1465 +0 0.0685 +0 0.0326 +1 0.7539 +0 0.0587 +0 0.0976 +0 0.1106 +0 0.2289 +0 0.4409 +0 0.1376 +0 0.1470 +0 0.0723 +0 0.1110 +0 0.0983 +0 0.4590 +0 0.0634 +0 0.0682 +0 0.0564 +0 0.2081 +0 0.1773 +0 0.0678 +0 0.1029 +0 0.1011 +0 0.2570 +0 0.0890 +0 0.1024 +0 0.0870 +0 0.1102 +0 0.2376 +0 0.1043 +0 0.2759 +0 0.1298 +0 0.0967 +0 0.1187 +0 0.1253 +0 0.0849 +0 0.3305 +0 0.2331 +0 0.1822 +0 0.0475 +1 0.8568 +0 0.2644 +1 0.7652 +0 0.0806 +0 0.5633 +0 0.0746 +0 0.2058 +0 0.0661 +0 0.0765 +0 0.7466 +0 0.0912 +0 0.7198 +0 0.0911 +0 0.1118 +0 0.1268 +0 0.0727 +0 0.0611 +0 0.1177 +0 0.0471 +0 0.0767 +0 0.0692 +0 0.0826 +0 0.0589 +0 0.1096 +0 0.1921 +0 0.1022 +0 0.1369 +0 0.0738 +0 0.0844 +0 0.0835 +0 0.0732 +0 0.2478 +0 0.0964 +0 0.2493 +0 0.0998 +0 0.1020 +0 0.0853 +0 0.1307 +0 0.0430 +0 0.1543 +0 0.0480 +0 0.0705 +0 0.0629 +0 0.0872 +0 0.1342 +0 0.4709 +0 0.0818 +0 0.0774 +0 0.1161 +0 0.2619 +0 0.1038 +0 0.3613 +0 0.2099 +0 0.1742 +0 0.1182 +0 0.1661 +0 0.1146 +0 0.3538 +0 0.1463 +0 0.0478 +0 0.0473 +0 0.0621 +0 0.0483 +0 0.0619 +0 0.2075 +0 0.0875 +0 0.0904 +1 0.7557 +0 0.3450 +0 0.1470 +0 0.0862 +0 0.0436 +0 0.1358 +0 0.1005 +0 0.4363 +0 0.0940 +0 0.2562 +0 0.0670 +0 0.0884 +0 0.0902 +0 0.0911 +0 0.0501 +0 0.1343 +0 0.1081 +0 0.0568 +0 0.0632 +0 0.3012 +0 0.0554 +0 0.1670 +0 0.3565 +0 0.0698 +0 0.7465 +0 0.1033 +0 0.2217 +0 0.0800 +0 0.1478 +0 0.1617 +0 0.1281 +0 0.0814 +0 0.1483 +0 0.2386 +0 0.1177 +0 0.1544 +0 0.0535 +0 0.1034 +0 0.0439 +0 0.0658 +0 0.0789 +0 0.1379 +0 0.1229 +0 0.1278 +0 0.2353 +0 0.0411 +0 0.7027 +0 0.1856 +0 0.0499 +0 0.6162 +0 0.0545 +0 0.1447 +0 0.2021 +0 0.1851 +0 0.1011 +0 0.0397 +0 0.0792 +1 0.7733 +0 0.1242 +0 0.0620 +0 0.0625 +0 0.1079 +0 0.2823 +0 0.0572 +0 0.1041 +0 0.1959 +0 0.1841 +0 0.1862 +0 0.0754 +0 0.0775 +0 0.0418 +0 0.1131 +0 0.0850 +0 0.0506 +0 0.0951 +0 0.0392 +0 0.0818 +0 0.1247 +0 0.1051 +0 0.0855 +0 0.2142 +0 0.2061 +0 0.1244 +0 0.0707 +0 0.1506 +0 0.2773 +0 0.1138 +0 0.0895 +0 0.1567 +0 0.1693 +0 0.0697 +0 0.1067 +0 0.1008 +0 0.0763 +0 0.1003 +0 0.1227 +0 0.1328 +0 0.0382 +0 0.0868 +0 0.1080 +0 0.0972 +0 0.6489 +0 0.0671 +0 0.0452 +0 0.1482 +0 0.0419 +0 0.2411 +0 0.0864 +0 0.3806 +0 0.1626 +0 0.2950 +0 0.2530 +0 0.1015 +0 0.1803 +0 0.0961 +0 0.0716 +0 0.0816 +0 0.1238 +0 0.0815 +0 0.1315 +0 0.1325 +0 0.1890 +0 0.1335 +0 0.0778 +0 0.0657 +0 0.0618 +0 0.2288 +0 0.0633 +0 0.0993 +0 0.0912 +0 0.1614 +0 0.2014 +0 0.0965 +0 0.2030 +0 0.1100 +0 0.1335 +0 0.0736 +0 0.1086 +0 0.0395 +0 0.0801 +0 0.1043 +0 0.1576 +0 0.0947 +0 0.2640 +0 0.2288 +0 0.0648 +0 0.1489 +0 0.1587 +0 0.0310 +0 0.0894 +0 0.0647 +0 0.1704 +0 0.1209 +0 0.2390 +0 0.1575 +0 0.1941 +0 0.2284 +0 0.0750 +0 0.0723 +0 0.2915 +0 0.2299 +0 0.1522 +0 0.1997 +0 0.2629 +0 0.0895 +0 0.4126 +0 0.1253 +0 0.2105 +0 0.2012 +0 0.2029 +0 0.2665 +0 0.0760 +0 0.0361 +0 0.1753 +0 0.0764 +0 0.1353 +0 0.0950 +0 0.2016 +0 0.0955 +0 0.2824 +0 0.1386 +0 0.0507 +0 0.0905 +0 0.0821 +0 0.0854 +0 0.1889 +0 0.0969 +0 0.0655 +0 0.2658 +0 0.1705 +0 0.1998 +0 0.1827 +0 0.1630 +0 0.1137 +0 0.1197 +0 0.0456 +0 0.1023 +0 0.0842 +0 0.0929 +0 0.1482 +0 0.1935 +0 0.1227 +0 0.0464 +0 0.3419 +0 0.0468 +0 0.1176 +0 0.1122 +0 0.1840 +0 0.2197 +0 0.1802 +0 0.1196 +0 0.0664 +0 0.1426 +0 0.1830 +0 0.0514 +0 0.0392 +0 0.1357 +0 0.1729 +0 0.2176 +0 0.1240 +0 0.1395 +0 0.0396 +0 0.2026 +0 0.2656 +0 0.0721 +0 0.2717 +0 0.1431 +0 0.0644 +0 0.1110 +0 0.0886 +0 0.1080 +0 0.1892 +0 0.3848 +0 0.0614 +0 0.1417 +0 0.1942 +0 0.0472 +0 0.2670 +0 0.1238 +0 0.2447 +0 0.0652 +0 0.1102 +0 0.0742 +0 0.1686 +0 0.0778 +0 0.1512 +0 0.0701 +0 0.0431 +0 0.0790 +0 0.1635 +0 0.1421 +0 0.1034 +0 0.2183 +0 0.1375 +0 0.0537 +0 0.2617 +0 0.0889 +0 0.1351 +0 0.1229 +0 0.1928 +0 0.1775 +0 0.0551 +1 0.7712 +0 0.1284 +0 0.1422 +0 0.2344 +0 0.0959 +0 0.1187 +0 0.2048 +0 0.1758 +0 0.0475 +0 0.3831 +0 0.1167 +0 0.2234 +0 0.0804 +0 0.3967 +0 0.0799 +0 0.0439 +0 0.2682 +1 0.8197 +0 0.1391 +0 0.0364 +0 0.0648 +0 0.1030 +0 0.1846 +0 0.1455 +0 0.1245 +0 0.1784 +0 0.1416 +0 0.0568 +0 0.1111 +0 0.0412 +0 0.0790 +0 0.2184 +0 0.0576 +0 0.0715 +0 0.1233 +0 0.1122 +0 0.0500 +0 0.1704 +0 0.0605 +0 0.1289 +0 0.0727 +0 0.1047 +0 0.0688 +0 0.0930 +0 0.3112 +0 0.6957 +0 0.1868 +0 0.5009 +0 0.1185 +0 0.0886 +0 0.1104 +0 0.1091 +0 0.1488 +0 0.0748 +0 0.0506 +0 0.1680 +0 0.1788 +0 0.1681 +0 0.0900 +0 0.2939 +0 0.0734 +0 0.0812 +0 0.0846 +0 0.0893 +0 0.2539 +0 0.3758 +0 0.6900 +0 0.1880 +0 0.0662 +0 0.1020 +0 0.1609 +0 0.0905 +0 0.1066 +0 0.0967 +0 0.1936 +0 0.2558 +0 0.2091 +0 0.6524 +0 0.0468 +0 0.0811 +0 0.2075 +0 0.7302 +0 0.1256 +0 0.0863 +0 0.0990 +0 0.0590 +0 0.1652 +0 0.0740 +0 0.0720 +0 0.1334 +0 0.0988 +0 0.1730 +0 0.7494 +0 0.1283 +0 0.2033 +0 0.1981 +0 0.0933 +0 0.0765 +0 0.1047 +0 0.4790 +0 0.0738 +0 0.0949 +0 0.0867 +0 0.0547 +0 0.2747 +0 0.1753 +0 0.1039 +0 0.0792 +0 0.0935 +0 0.1089 +0 0.0993 +0 0.1068 +0 0.0914 +0 0.0877 +0 0.0975 +0 0.0931 +0 0.0544 +0 0.0692 +0 0.0918 +0 0.0496 +0 0.2367 +0 0.1666 +0 0.0846 +0 0.1692 +0 0.2159 +0 0.1007 +0 0.1080 +0 0.2383 +0 0.0621 +0 0.3234 +0 0.0791 +0 0.1423 +0 0.1196 +0 0.4833 +0 0.1314 +0 0.1648 +0 0.0456 +0 0.1280 +0 0.1588 +0 0.1241 +0 0.1613 +0 0.0887 +0 0.3424 +0 0.1912 +0 0.1181 +0 0.1553 +0 0.0564 +0 0.1531 +0 0.0700 +0 0.0881 +0 0.0661 +0 0.1811 +0 0.0691 +0 0.0879 +0 0.1620 +0 0.0377 +0 0.0733 +0 0.0965 +0 0.1734 +0 0.2236 +0 0.1014 +0 0.1013 +0 0.6981 +0 0.0635 +0 0.1601 +0 0.3077 +0 0.0629 +0 0.1177 +0 0.1753 +0 0.0848 +0 0.1289 +0 0.1794 +0 0.1797 +0 0.1020 +0 0.1589 +0 0.0889 +0 0.0470 +0 0.0640 +0 0.0519 +0 0.0874 +0 0.1159 +0 0.2379 +0 0.6175 +0 0.1622 +0 0.0601 +0 0.0823 +0 0.1016 +0 0.0815 +0 0.3144 +0 0.1268 +0 0.0864 +0 0.0643 +0 0.1972 +0 0.1537 +0 0.0689 +0 0.3264 +0 0.1057 +0 0.0776 +0 0.2984 +0 0.1270 +0 0.0888 +0 0.1768 +0 0.1163 +0 0.1999 +0 0.2508 +0 0.2267 +0 0.1594 +0 0.5562 +0 0.1435 +0 0.0808 +0 0.2404 +0 0.1626 +0 0.0968 +0 0.0665 +0 0.1326 +0 0.0908 +0 0.0529 +0 0.3681 +0 0.1058 +0 0.2781 +0 0.1308 +1 0.8833 +0 0.0528 +0 0.0343 +0 0.0593 +0 0.1760 +0 0.1790 +0 0.1541 +0 0.0816 +0 0.1073 +0 0.2332 +0 0.0717 +0 0.0943 +0 0.0563 +0 0.0496 +0 0.0510 +0 0.0782 +0 0.3524 +0 0.0678 +0 0.1414 +0 0.2543 +0 0.0405 +0 0.1169 +0 0.0628 +0 0.0581 +0 0.2559 +0 0.2598 +0 0.2102 +0 0.1608 +0 0.0424 +0 0.0680 +0 0.1065 +0 0.1047 +0 0.1970 +0 0.0408 +0 0.0985 +0 0.1072 +0 0.3583 +0 0.0902 +0 0.2618 +0 0.0622 +0 0.1172 +0 0.1211 +0 0.2017 +0 0.1765 +0 0.1222 +0 0.1315 +0 0.0671 +0 0.0967 +0 0.1581 +0 0.1832 +0 0.2066 +0 0.0939 +0 0.0564 +0 0.2587 +0 0.0973 +0 0.1467 +0 0.3770 +1 0.7863 +0 0.0578 +0 0.0707 +0 0.0475 +0 0.1496 +0 0.4832 +0 0.0802 +0 0.1029 +0 0.0637 +0 0.0576 +0 0.1139 +0 0.1289 +1 0.8374 +0 0.1200 +0 0.0768 +0 0.1688 +0 0.0532 +0 0.6047 +0 0.0979 +0 0.0759 +0 0.1396 +0 0.3925 +0 0.0878 +0 0.0361 +0 0.0480 +0 0.3096 +0 0.0766 +0 0.1796 +0 0.1266 +0 0.1575 +0 0.0851 +0 0.0400 +0 0.0441 +0 0.1525 +0 0.0968 +0 0.1446 +0 0.1262 +0 0.0840 +0 0.0885 +0 0.0598 +0 0.1164 +0 0.0724 +0 0.1491 +0 0.0811 +0 0.1412 +0 0.0772 +0 0.0965 +0 0.0945 +0 0.3960 +0 0.0896 +0 0.0916 +0 0.0640 +0 0.3565 +0 0.2474 +0 0.0613 +0 0.0356 +0 0.0666 +0 0.1433 +0 0.0384 +0 0.0863 +0 0.0938 +0 0.2753 +0 0.2804 +0 0.0515 +0 0.0539 +0 0.1763 +0 0.1659 +0 0.0826 +0 0.0887 +0 0.0760 +0 0.2262 +0 0.1496 +0 0.7091 +0 0.0321 +0 0.1964 +0 0.0832 +0 0.0768 +0 0.2179 +0 0.0928 +0 0.0509 +0 0.0770 +0 0.1447 +0 0.0589 +0 0.1783 +0 0.1461 +0 0.0949 +0 0.1790 +0 0.2358 +0 0.1289 +0 0.0737 +0 0.6478 +0 0.0662 +0 0.2743 +0 0.1958 +0 0.2426 +0 0.1769 +0 0.1129 +0 0.1988 +0 0.2211 +0 0.0643 +0 0.6842 +0 0.0657 +0 0.0679 +0 0.1236 +0 0.0788 +0 0.1482 +0 0.1162 +0 0.2976 +0 0.0811 +0 0.0924 +0 0.0957 +0 0.0356 +0 0.1948 +0 0.2517 +0 0.0586 +0 0.1035 +0 0.1782 +0 0.0322 +0 0.1451 +0 0.3157 +0 0.0943 +0 0.1778 +0 0.0894 +0 0.2768 +0 0.1062 +0 0.0978 +0 0.6828 +0 0.1381 +0 0.0567 +0 0.0928 +0 0.0898 +0 0.1124 +0 0.0888 +0 0.1648 +0 0.0529 +0 0.6136 +0 0.1547 +0 0.0903 +0 0.0545 +0 0.1000 +0 0.1366 +0 0.1467 +0 0.1077 +0 0.0850 +0 0.0523 +0 0.0967 +0 0.1257 +0 0.0674 +0 0.1599 +0 0.1155 +0 0.1386 +0 0.1794 +0 0.1584 +0 0.0723 +0 0.2322 +0 0.1408 +0 0.0685 +0 0.3378 +0 0.1813 +0 0.2357 +0 0.0288 +0 0.0554 +0 0.1105 +0 0.0894 +0 0.0496 +0 0.0509 +0 0.2809 +1 0.7505 +0 0.1005 +0 0.0852 +0 0.1541 +0 0.1064 +0 0.0445 +0 0.0655 +0 0.5736 +0 0.3939 +0 0.2387 +0 0.0431 +0 0.0429 +0 0.0757 +0 0.2699 +0 0.0849 +0 0.2058 +0 0.0497 +0 0.1963 +0 0.2943 +0 0.0848 +0 0.0718 +0 0.6642 +0 0.0771 +0 0.1190 +0 0.1111 +0 0.0749 +0 0.2538 +0 0.0774 +0 0.1283 +0 0.1768 +0 0.1020 +0 0.1538 +0 0.2351 +0 0.1130 +0 0.1221 +0 0.1249 +0 0.0811 +1 0.8151 +0 0.1524 +0 0.1815 +0 0.1209 +0 0.0571 +0 0.1601 +0 0.0981 +0 0.1723 +0 0.2792 +0 0.0747 +0 0.0778 +0 0.0690 +0 0.1114 +0 0.1548 +0 0.1410 +0 0.2581 +0 0.1398 +0 0.0897 +0 0.1066 +0 0.1569 +0 0.0959 +0 0.1314 +0 0.0827 +0 0.0782 +0 0.1871 +0 0.1027 +0 0.1586 +0 0.1525 +0 0.1990 +0 0.0947 +0 0.1833 +0 0.0978 +0 0.1873 +0 0.0885 +0 0.0773 +0 0.1234 +0 0.0619 +0 0.0805 +0 0.0866 +0 0.2375 +0 0.1086 +0 0.1308 +0 0.1403 +0 0.0779 +0 0.0430 +0 0.1144 +0 0.1873 +0 0.1799 +0 0.0360 +0 0.0895 +0 0.0630 +0 0.0874 +0 0.2318 +0 0.3898 +0 0.4921 +1 0.7570 +0 0.0644 +0 0.1739 +0 0.1930 +0 0.2290 +0 0.0883 +0 0.0373 +0 0.2856 +0 0.2313 +0 0.6280 +0 0.1977 +0 0.1902 +0 0.1525 +0 0.0737 +0 0.0422 +1 0.8671 +0 0.0838 +0 0.0694 +0 0.1886 +0 0.1699 +0 0.1026 +0 0.0726 +0 0.1730 +0 0.0542 +0 0.0426 +0 0.1368 +0 0.3626 +0 0.0765 +0 0.1081 +0 0.5537 +0 0.1208 +0 0.1227 +0 0.0706 +0 0.6063 +0 0.1368 +0 0.0834 +0 0.0493 +0 0.0649 +0 0.1215 +0 0.1671 +0 0.1670 +0 0.0951 +0 0.5412 +0 0.3104 +0 0.0685 +0 0.1087 +0 0.2742 +0 0.0637 +0 0.1320 +0 0.7486 +0 0.0846 +0 0.0906 +0 0.0516 +0 0.0843 +0 0.0494 +0 0.1316 +0 0.0876 +0 0.0864 +0 0.1482 +0 0.2278 +0 0.0462 +0 0.1154 +0 0.1728 +0 0.1488 +0 0.0403 +0 0.3453 +0 0.0922 +0 0.0701 +0 0.0514 +0 0.0528 +0 0.0335 +0 0.0775 +0 0.0487 +0 0.0797 +0 0.2457 +0 0.1649 +0 0.0940 +0 0.0735 +0 0.0840 +0 0.0672 +0 0.0510 +0 0.0735 +0 0.1442 +0 0.0679 +0 0.1189 +0 0.1467 +0 0.0894 +0 0.0940 +0 0.0705 +0 0.0862 +0 0.0455 +0 0.0809 +0 0.0991 +0 0.1153 +0 0.0403 +0 0.2876 +0 0.0921 +0 0.0584 +0 0.0419 +0 0.0864 +0 0.0890 +0 0.1834 +0 0.1635 +0 0.1531 +0 0.2298 +0 0.0780 +0 0.0622 +0 0.2715 +0 0.1205 +0 0.0829 +0 0.0487 +0 0.0537 +0 0.2068 +0 0.4687 +0 0.0571 +0 0.1080 +0 0.1081 +0 0.1674 +0 0.2711 +0 0.1657 +0 0.0492 +0 0.1216 +0 0.0917 +0 0.1008 +0 0.0770 +0 0.1049 +0 0.1897 +0 0.0774 +0 0.1268 +0 0.0832 +0 0.1222 +0 0.0966 +0 0.0977 +0 0.1354 +0 0.1068 +0 0.0948 +0 0.1320 +0 0.0763 +0 0.0880 +0 0.1401 +0 0.2220 +0 0.2424 +0 0.2769 +0 0.1193 +0 0.0562 +0 0.0811 +0 0.3312 +0 0.2050 +0 0.1972 +0 0.3874 +0 0.0841 +0 0.1280 +0 0.0878 +0 0.0866 +0 0.0717 +0 0.0590 +0 0.2478 +0 0.7388 +0 0.1280 +0 0.0700 +0 0.0366 +0 0.0888 +0 0.0724 +0 0.1189 +0 0.0557 +0 0.0859 +0 0.0771 +0 0.1621 +0 0.0681 +0 0.2868 +0 0.1116 +0 0.2943 +0 0.1263 +0 0.0734 +0 0.0830 +0 0.0838 +0 0.0483 +0 0.1298 +0 0.0810 +0 0.0849 +0 0.2519 +0 0.0741 +0 0.1122 +0 0.2886 +0 0.0580 +0 0.0730 +0 0.1140 +0 0.0561 +0 0.0499 +0 0.1002 +0 0.0721 +0 0.0714 +0 0.1271 +0 0.3427 +0 0.1623 +0 0.0882 +0 0.0678 +0 0.0695 +0 0.1308 +0 0.0750 +0 0.0785 +0 0.4450 +0 0.1297 +0 0.0572 +0 0.1419 +0 0.0524 +0 0.0637 +0 0.2360 +0 0.0901 +0 0.0566 +0 0.0763 +0 0.1366 +0 0.1945 +0 0.0535 +0 0.0680 +0 0.0896 +0 0.1256 +0 0.1055 +0 0.0751 +0 0.0769 +0 0.0653 +0 0.1533 +0 0.0648 +0 0.1040 +0 0.1923 +0 0.1562 +0 0.1106 +0 0.0644 +0 0.1190 +0 0.0639 +0 0.1072 +0 0.0842 +0 0.0785 +0 0.3739 +0 0.5867 +0 0.2924 +0 0.0873 +0 0.0473 +0 0.1268 +0 0.1733 +0 0.2156 +0 0.1711 +0 0.0762 +0 0.0528 +0 0.7399 +0 0.0971 +0 0.1787 +0 0.1325 +0 0.1062 +0 0.0812 +0 0.0476 +0 0.0690 +0 0.1386 +0 0.1653 +0 0.1827 +0 0.0983 +0 0.1695 +0 0.0438 +0 0.0848 +0 0.1564 +0 0.1216 +0 0.0770 +0 0.0528 +0 0.0927 +0 0.0597 +0 0.1554 +0 0.1049 +0 0.0477 +0 0.0764 +0 0.0438 +0 0.1392 +0 0.1041 +0 0.0717 +0 0.0960 +0 0.1675 +0 0.4218 +0 0.1519 +0 0.1436 +0 0.1174 +0 0.7300 +0 0.1365 +0 0.1282 +0 0.0971 +0 0.5528 +0 0.1280 +0 0.1834 +0 0.2688 +0 0.0939 +0 0.2211 +0 0.1252 +0 0.1384 +0 0.3305 +0 0.2231 +1 0.8418 +0 0.0769 +0 0.2544 +0 0.1123 +0 0.0597 +0 0.0944 +0 0.1206 +0 0.1525 +0 0.0509 +0 0.0534 +0 0.0807 +0 0.1413 +0 0.0653 +0 0.0515 +0 0.1390 +0 0.6374 +0 0.1485 +0 0.1503 +0 0.0684 +0 0.0597 +0 0.1428 +0 0.0682 +0 0.1948 +0 0.0991 +0 0.0468 +0 0.1047 +0 0.0737 +0 0.2505 +0 0.0594 +0 0.4168 +0 0.4598 +0 0.0717 +0 0.1592 +0 0.1584 +0 0.6903 +0 0.1158 +0 0.0804 +0 0.0423 +0 0.1063 +0 0.2873 +0 0.2726 +0 0.1200 +0 0.1573 +1 0.8664 +0 0.1579 +0 0.1389 +0 0.0741 +0 0.0659 +0 0.6285 +0 0.0736 +0 0.0750 +0 0.1239 +0 0.0713 +0 0.1571 +0 0.0689 +0 0.2204 +0 0.3630 +0 0.1635 +0 0.0832 +0 0.1677 +0 0.0797 +0 0.1056 +0 0.4163 +0 0.1061 +0 0.0903 +0 0.0561 +0 0.0934 +0 0.2496 +0 0.0394 +0 0.0599 +0 0.1122 +0 0.1037 +0 0.4769 +0 0.0775 +0 0.0960 +0 0.1575 +0 0.1017 +0 0.0566 +0 0.0807 +0 0.5127 +0 0.0809 +0 0.0762 +0 0.0638 +0 0.0371 +0 0.1154 +0 0.0800 +0 0.1396 +0 0.1255 +0 0.1150 +0 0.1028 +0 0.1524 +0 0.1203 +0 0.1166 +0 0.1079 +0 0.0722 +0 0.0813 +0 0.1300 +0 0.0499 +0 0.2721 +0 0.0758 +0 0.0327 +0 0.0664 +0 0.2231 +0 0.1019 +0 0.1331 +0 0.0934 +0 0.1559 +0 0.1865 +0 0.0505 +0 0.0827 +0 0.2737 +0 0.0689 +0 0.1365 +0 0.0416 +0 0.6735 +0 0.1782 +0 0.2298 +0 0.1181 +1 0.7556 +0 0.0702 +0 0.1929 +1 0.8430 +0 0.4698 +0 0.0509 +0 0.0885 +0 0.2535 +0 0.0864 +0 0.1348 +0 0.0661 +0 0.2908 +0 0.0815 +0 0.1799 +0 0.1786 +0 0.0677 +0 0.2019 +0 0.0932 +0 0.0424 +0 0.0616 +0 0.0856 +0 0.2386 +0 0.6581 +0 0.2708 +0 0.2755 +0 0.0810 +0 0.0963 +0 0.1656 +0 0.0568 +0 0.0459 +0 0.0791 +0 0.0920 +0 0.1046 +1 0.8031 +0 0.1278 +0 0.1065 +0 0.0970 +0 0.2203 +0 0.0685 +0 0.1653 +0 0.0880 +0 0.3240 +0 0.0539 +0 0.1485 +0 0.1511 +0 0.2261 +0 0.1772 +0 0.1893 +0 0.0780 +0 0.1513 +0 0.0912 +0 0.1250 +0 0.1048 +0 0.1390 +1 0.8695 +0 0.0932 +0 0.1134 +0 0.1331 +0 0.0819 +0 0.4307 +0 0.0533 +0 0.0714 +0 0.1375 +0 0.5077 +0 0.0673 +0 0.0941 +0 0.1617 +0 0.0910 +0 0.1295 +0 0.0481 +0 0.7203 +0 0.1659 +0 0.1691 +0 0.1731 +0 0.0730 +0 0.0667 +0 0.1110 +0 0.1020 +0 0.0871 +0 0.0653 +0 0.1850 +0 0.0599 +0 0.0875 +0 0.3268 +0 0.0469 +0 0.1068 +0 0.1022 +0 0.3922 +0 0.0471 +0 0.1944 +0 0.3615 +0 0.0879 +0 0.0751 +0 0.1758 +0 0.1707 +0 0.1114 +0 0.0742 +0 0.0996 +0 0.3450 +0 0.0990 +0 0.3232 +0 0.1424 +0 0.1366 +1 0.7666 +0 0.0985 +0 0.0730 +0 0.0930 +0 0.1224 +0 0.2694 +0 0.0912 +0 0.0907 +0 0.2584 +0 0.1908 +0 0.1241 +0 0.0468 +0 0.4069 +0 0.1860 +0 0.0817 +0 0.0668 +0 0.2365 +0 0.1647 +0 0.1193 +0 0.0908 +0 0.1453 +0 0.1024 +0 0.0931 +0 0.1172 +0 0.0722 +0 0.1372 +0 0.0464 +0 0.0446 +0 0.0884 +0 0.0382 +0 0.0790 +0 0.0632 +0 0.0901 +0 0.1602 +0 0.0360 +0 0.2093 +0 0.1241 +0 0.0622 +0 0.2810 +0 0.2479 +0 0.1239 +0 0.3217 +0 0.3252 +0 0.2150 +0 0.1460 +0 0.1338 +0 0.0758 +0 0.3881 +0 0.1388 +0 0.1200 +0 0.1524 +0 0.0833 +0 0.1018 +0 0.6062 +0 0.1285 +0 0.1377 +0 0.0423 +0 0.1670 +0 0.0877 +0 0.0639 +0 0.0491 +0 0.0679 +0 0.0597 +0 0.2954 +0 0.5036 +0 0.1386 +0 0.0626 +0 0.0594 +0 0.1535 +0 0.2420 +0 0.0864 +0 0.2337 +0 0.0372 +0 0.0574 +0 0.1762 +0 0.0699 +0 0.2149 +0 0.0539 +0 0.1218 +0 0.0974 +0 0.0878 +0 0.1441 +0 0.2117 +0 0.1139 +0 0.0826 +0 0.0591 +0 0.1010 +0 0.0513 +0 0.0640 +0 0.3522 +0 0.1909 +0 0.0630 +0 0.1146 +0 0.1253 +0 0.0675 +0 0.1927 +0 0.1383 +0 0.0647 +0 0.1741 +0 0.0731 +0 0.2440 +0 0.0572 +0 0.0670 +0 0.2048 +0 0.2248 +0 0.1767 +0 0.1095 +0 0.2062 +0 0.0623 +0 0.0957 +0 0.1812 +0 0.1100 +0 0.0769 +0 0.0573 +0 0.0371 +0 0.1960 +0 0.4159 +0 0.0606 +0 0.0990 +1 0.8194 +0 0.0525 +0 0.0543 +0 0.0621 +0 0.0915 +0 0.2596 +0 0.1896 +0 0.1289 +0 0.0576 +0 0.0937 +0 0.1137 +0 0.1645 +0 0.0582 +0 0.1179 +0 0.1064 +0 0.1302 +0 0.0644 +0 0.1156 +0 0.0995 +0 0.0687 +0 0.2575 +0 0.0795 +0 0.0654 +0 0.0617 +0 0.0430 +1 0.7589 +0 0.0636 +0 0.2287 +0 0.0746 +0 0.0380 +0 0.1089 +0 0.0527 +0 0.0835 +0 0.1385 +0 0.0759 +0 0.1653 +0 0.1658 +0 0.1007 +0 0.1337 +0 0.7341 +0 0.1405 +0 0.7031 +0 0.0516 +0 0.0651 +0 0.1273 +0 0.0445 +0 0.0730 +0 0.0429 +0 0.0693 +0 0.0437 +0 0.1363 +0 0.0791 +0 0.1644 +0 0.5456 +0 0.1564 +0 0.0687 +0 0.3083 +0 0.0679 +0 0.1070 +0 0.2009 +0 0.0824 +0 0.1140 +0 0.0595 +0 0.1147 +0 0.0400 +0 0.0844 +0 0.0648 +0 0.0689 +0 0.1432 +0 0.3215 +0 0.1173 +0 0.6689 +0 0.0972 +0 0.6701 +0 0.0725 +0 0.3010 +0 0.0842 +0 0.0660 +0 0.1043 +0 0.1110 +0 0.0468 +1 0.7909 +0 0.1549 +1 0.8087 +0 0.1367 +0 0.2882 +0 0.0459 +0 0.0968 +0 0.2589 +0 0.0711 +0 0.0622 +0 0.1085 +0 0.0804 +0 0.1953 +0 0.2394 +0 0.3043 +0 0.0681 +0 0.0657 +0 0.0708 +0 0.0371 +0 0.0514 +0 0.1053 +0 0.0530 +0 0.1668 +0 0.1283 +0 0.1350 +0 0.1333 +0 0.0726 +0 0.0759 +0 0.3399 +0 0.0620 +0 0.1760 +0 0.0651 +0 0.1449 +0 0.3115 +0 0.1850 +0 0.0594 +0 0.0537 +0 0.0957 +0 0.1283 +0 0.0900 +0 0.2018 +0 0.1080 +0 0.0566 +0 0.1354 +0 0.0643 +0 0.0616 +0 0.2502 +0 0.0505 +0 0.0918 +0 0.1317 +0 0.0667 +0 0.0531 +0 0.0470 +0 0.0434 +0 0.0867 +0 0.0685 +0 0.1002 +0 0.0667 +0 0.4365 +0 0.0879 +0 0.1124 +0 0.0834 +0 0.1558 +0 0.0600 +0 0.0748 +0 0.0699 +0 0.2313 +0 0.0800 +0 0.0404 +0 0.0693 +0 0.6362 +0 0.1099 +0 0.2242 +0 0.0751 +0 0.2149 +0 0.0578 +0 0.1023 +0 0.1208 +0 0.1906 +0 0.2720 +0 0.2894 +0 0.1074 +0 0.1486 +0 0.1507 +0 0.1174 +0 0.1359 +0 0.2975 +0 0.1024 +0 0.0338 +0 0.1006 +1 0.8262 +0 0.2381 +0 0.0943 +0 0.3370 +0 0.0862 +0 0.1255 +0 0.1047 +0 0.2327 +0 0.0898 +0 0.0910 +0 0.1133 +0 0.1100 +0 0.0983 +0 0.1214 +0 0.1102 +0 0.0542 +0 0.1398 +0 0.1512 +0 0.1110 +0 0.3208 +0 0.0603 +0 0.0729 +0 0.2719 +0 0.0958 +0 0.0917 +0 0.3461 +0 0.0723 +0 0.0998 +0 0.0722 +0 0.2044 +0 0.0919 +0 0.0694 +0 0.1755 +0 0.3698 +0 0.1046 +0 0.5436 +0 0.1843 +0 0.3125 +0 0.2013 +0 0.0857 +0 0.0932 +0 0.0848 +1 0.7569 +0 0.2048 +0 0.1315 +0 0.0845 +0 0.6034 +0 0.1483 +1 0.8503 +0 0.1033 +0 0.0605 +0 0.2238 +0 0.2778 +0 0.0742 +0 0.3040 +0 0.1258 +0 0.1376 +0 0.0354 +0 0.0550 +0 0.0758 +0 0.6825 +0 0.0536 +0 0.1066 +0 0.2497 +0 0.0565 +0 0.0345 +0 0.1620 +0 0.0655 +0 0.0496 +0 0.0848 +0 0.2556 +0 0.0868 +0 0.2570 +0 0.1161 +0 0.0710 +0 0.0491 +0 0.0969 +0 0.0996 +0 0.1734 +0 0.0787 +0 0.1487 +0 0.0930 +0 0.1212 +0 0.4552 +0 0.1126 +0 0.1658 +0 0.1703 +0 0.0360 +0 0.4497 +0 0.0714 +0 0.1343 +0 0.0759 +0 0.1963 +0 0.1830 +0 0.0907 +0 0.0682 +0 0.1629 +0 0.1611 +0 0.1099 +0 0.2044 +0 0.0604 +0 0.1923 +0 0.0486 +0 0.2221 +0 0.0651 +0 0.6017 +0 0.1020 +0 0.6727 +0 0.1180 +0 0.1110 +0 0.1092 +0 0.2403 +0 0.0912 +0 0.0796 +0 0.0772 +0 0.0867 +0 0.0707 +0 0.0570 +0 0.0510 +0 0.1132 +0 0.0982 +0 0.1432 +1 0.7976 +0 0.1269 +0 0.0769 +0 0.0757 +0 0.0800 +0 0.0999 +0 0.1594 +0 0.1823 +0 0.1855 +0 0.0736 +0 0.0439 +0 0.0662 +0 0.0566 +0 0.1019 +0 0.1795 +0 0.2979 +0 0.0789 +0 0.1775 +0 0.0505 +0 0.1097 +0 0.2294 +0 0.1541 +0 0.0795 +0 0.1515 +0 0.2365 +0 0.7416 +0 0.1129 +0 0.0623 +0 0.0916 +0 0.0906 +0 0.2543 +0 0.1438 +0 0.1760 +0 0.0560 +0 0.0568 +0 0.1126 +0 0.2719 +0 0.0435 +1 0.7881 +0 0.0629 +0 0.5001 +0 0.1173 +0 0.1836 +0 0.0932 +0 0.0936 +0 0.0373 +0 0.1072 +0 0.0941 +0 0.0699 +0 0.0952 +0 0.1842 +1 0.7687 +0 0.0605 +0 0.0960 +1 0.8798 +0 0.0733 +0 0.0590 +0 0.1137 +0 0.0956 +0 0.0515 +0 0.1401 +0 0.1188 +0 0.2666 +0 0.1029 +0 0.0726 +0 0.2393 +0 0.0665 +0 0.0591 +0 0.0475 +0 0.3228 +0 0.3167 +0 0.0808 +0 0.4048 +0 0.0886 +0 0.2008 +0 0.4088 +0 0.1218 +0 0.1080 +0 0.0822 +0 0.1216 +0 0.0450 +0 0.1281 +0 0.1208 +0 0.2339 +0 0.2374 +0 0.0671 +0 0.1552 +0 0.2133 +1 0.7963 +0 0.2146 +0 0.0878 +0 0.0856 +0 0.2547 +0 0.1023 +0 0.0868 +0 0.3010 +0 0.1810 +0 0.1150 +0 0.1283 +0 0.0922 +0 0.0926 +0 0.1941 +0 0.0779 +0 0.0976 +0 0.3641 +0 0.2005 +0 0.1244 +0 0.1668 +0 0.1808 +0 0.0645 +0 0.1576 +0 0.1810 +0 0.0488 +0 0.0518 +0 0.1247 +0 0.2192 +0 0.1224 +0 0.0573 +0 0.2735 +0 0.0920 +0 0.1741 +0 0.6130 +1 0.7585 +0 0.0436 +0 0.1138 +0 0.1000 +0 0.0956 +0 0.0479 +0 0.1165 +1 0.7633 +0 0.4811 +0 0.0751 +0 0.1105 +0 0.1422 +0 0.0655 +0 0.1114 +0 0.1152 +0 0.1666 +0 0.5041 +0 0.1984 +0 0.0593 +0 0.1431 +0 0.0479 +0 0.0915 +0 0.1876 +0 0.0882 +0 0.1573 +0 0.1615 +0 0.0466 +0 0.2252 +0 0.0538 +1 0.8323 +0 0.0710 +0 0.1620 +0 0.1655 +0 0.1758 +0 0.0971 +0 0.0556 +1 0.8704 +0 0.0908 +0 0.0569 +0 0.0960 +0 0.0549 +0 0.0407 +0 0.0866 +0 0.0519 +0 0.1871 +0 0.1057 +0 0.0552 +0 0.1016 +0 0.1106 +0 0.1343 +0 0.2570 +0 0.0702 +0 0.2720 +0 0.1659 +0 0.1497 +0 0.1683 +0 0.1667 +0 0.1171 +0 0.2666 +0 0.0933 +0 0.1087 +0 0.1315 +0 0.2210 +0 0.0647 +0 0.1668 +0 0.3922 +0 0.1147 +0 0.1222 +0 0.1497 +0 0.0935 +0 0.1644 +0 0.1636 +0 0.1130 +0 0.1120 +0 0.2690 +0 0.1434 +0 0.6285 +0 0.1185 +0 0.1668 +0 0.6346 +0 0.1270 +0 0.1336 +0 0.1685 +0 0.1261 +0 0.0676 +0 0.0664 +0 0.1191 +0 0.0650 +0 0.3422 +0 0.1584 +0 0.2431 +0 0.0941 +0 0.0814 +0 0.0922 +0 0.3404 +0 0.1139 +0 0.0509 +0 0.1871 +0 0.1014 +0 0.0697 +0 0.4403 +0 0.2140 +0 0.0343 +1 0.7815 +0 0.3164 +0 0.0474 +0 0.1350 +0 0.3240 +0 0.3782 +0 0.0858 +0 0.1611 +0 0.2085 +0 0.2240 +0 0.3184 +0 0.2924 +0 0.2014 +1 0.8019 +0 0.0738 +0 0.0692 +0 0.0614 +0 0.2229 +0 0.1576 +0 0.1241 +0 0.3415 +0 0.0591 +0 0.0704 +0 0.1336 +0 0.6315 +0 0.0649 +0 0.1463 +0 0.0845 +0 0.0704 +0 0.1038 +0 0.0971 +0 0.1078 +0 0.1100 +0 0.1976 +0 0.2223 +0 0.0537 +0 0.0513 +0 0.0936 +0 0.0976 +0 0.6912 +0 0.1306 +0 0.1311 +0 0.2640 +0 0.0816 +0 0.1405 +0 0.0649 +0 0.1053 +0 0.0456 +0 0.1378 +0 0.0777 +0 0.0833 +0 0.0766 +0 0.1298 +0 0.1445 +0 0.3294 +0 0.2007 +0 0.3825 +0 0.1387 +0 0.0982 +1 0.8580 +0 0.1280 +0 0.1737 +0 0.1185 +0 0.0812 +0 0.3528 +0 0.0500 +0 0.1000 +0 0.1270 +0 0.0958 +0 0.0536 +0 0.1555 +0 0.1419 +0 0.1396 +0 0.2190 +0 0.0719 +0 0.1429 +0 0.2002 +0 0.1133 +0 0.2071 +0 0.1502 +0 0.0587 +0 0.4101 +0 0.1241 +0 0.0624 +0 0.0611 +0 0.1722 +0 0.1071 +0 0.0647 +0 0.0538 +0 0.1084 +0 0.0505 +0 0.3700 +0 0.1848 +0 0.0852 +0 0.1636 +0 0.1024 +0 0.1408 +0 0.4338 +0 0.1182 +0 0.0917 +0 0.1116 +0 0.1161 +0 0.0749 +0 0.2498 +0 0.0849 +0 0.1713 +0 0.0721 +0 0.2049 +0 0.1163 +0 0.0809 +0 0.1116 +0 0.0346 +0 0.1213 +0 0.1555 +1 0.8054 +0 0.1207 +0 0.0557 +0 0.1027 +0 0.1563 +0 0.0633 +0 0.1675 +0 0.1369 +0 0.6094 +0 0.0326 +0 0.1150 +0 0.1174 +0 0.1505 +0 0.0844 +0 0.0758 +0 0.0574 +0 0.0728 +0 0.2747 +0 0.0338 +0 0.1408 +0 0.2170 +0 0.1531 +0 0.0438 +0 0.0756 +0 0.1118 +0 0.1094 +0 0.1716 +0 0.0760 +0 0.1016 +0 0.0872 +0 0.0927 +0 0.1330 +0 0.0736 +0 0.1609 +0 0.0798 +0 0.2482 +0 0.0574 +0 0.1107 +0 0.0544 +0 0.0772 +0 0.0917 +0 0.1243 +1 0.7980 +0 0.6523 +0 0.1063 +0 0.2059 +0 0.0536 +1 0.7561 +0 0.7322 +0 0.2296 +0 0.2473 +0 0.0564 +0 0.0933 +0 0.1512 +0 0.2288 +0 0.0825 +0 0.1667 +0 0.0882 +0 0.0833 +0 0.0715 +0 0.1155 +0 0.1229 +0 0.0855 +0 0.1028 +0 0.1791 +0 0.1035 +0 0.1861 +0 0.1009 +1 0.8242 +0 0.1890 +0 0.1421 +0 0.1505 +0 0.0758 +0 0.1344 +0 0.1439 +0 0.2613 +0 0.0736 +0 0.1723 +0 0.0980 +0 0.1281 +0 0.1222 +0 0.0736 +0 0.0546 +0 0.0424 +0 0.1116 +0 0.3949 +0 0.2341 +0 0.1283 +0 0.0635 +0 0.7143 +0 0.1142 +0 0.0529 +0 0.0886 +0 0.1222 +0 0.0935 +0 0.0694 +1 0.8376 +0 0.1420 +0 0.0483 +0 0.1284 +0 0.0952 +0 0.1025 +0 0.0328 +0 0.0683 +0 0.0969 +0 0.1391 +0 0.0802 +0 0.1537 +0 0.0768 +0 0.1053 +0 0.6722 +0 0.0673 +0 0.2882 +0 0.0430 +0 0.1860 +0 0.1115 +0 0.0705 +0 0.1597 +0 0.0662 +0 0.1326 +0 0.1001 +0 0.6747 +0 0.2028 +0 0.0316 +0 0.1022 +0 0.1544 +0 0.0997 +0 0.5541 +0 0.4476 +0 0.2104 +1 0.8427 +0 0.0819 +0 0.1722 +0 0.1651 +0 0.2378 +0 0.1180 +0 0.1834 +0 0.0715 +0 0.1167 +0 0.1450 +0 0.1291 +0 0.0872 +0 0.0938 +0 0.0832 +0 0.0782 +0 0.1910 +0 0.1666 +0 0.0955 +0 0.1435 +0 0.0563 +0 0.1558 +0 0.0658 +0 0.0602 +0 0.0875 +0 0.0630 +0 0.0586 +0 0.2239 +0 0.6985 +0 0.1558 +0 0.0917 +0 0.0748 +0 0.0605 +0 0.1690 +0 0.0358 +0 0.1179 +0 0.0705 +0 0.0631 +0 0.0840 +0 0.6695 +0 0.1311 +0 0.1272 +0 0.1030 +0 0.0931 +0 0.1362 +0 0.0525 +0 0.1532 +0 0.1810 +0 0.0850 +0 0.0375 +0 0.0934 +0 0.0551 +0 0.0346 +1 0.7637 +0 0.0600 +0 0.1683 +0 0.1117 +0 0.0747 +0 0.1013 +0 0.1039 +0 0.0756 +0 0.2387 +0 0.2691 +0 0.0491 +0 0.0921 +0 0.1484 +1 0.8089 +0 0.1105 +0 0.0539 +0 0.0452 +0 0.1502 +0 0.1571 +0 0.0612 +0 0.4243 +0 0.3133 +0 0.0886 +0 0.1202 +0 0.1369 +0 0.1139 +0 0.0699 +0 0.0631 +0 0.0992 +0 0.0434 +0 0.0783 +0 0.2034 +0 0.2121 +0 0.1046 +0 0.0863 +0 0.1580 +0 0.7415 +0 0.0967 +0 0.1019 +0 0.0683 +0 0.2587 +0 0.1657 +0 0.3535 +0 0.1312 +0 0.1049 +0 0.0825 +0 0.1086 +0 0.1321 +0 0.1614 +0 0.0506 +0 0.3087 +0 0.4730 +0 0.0716 +0 0.0474 +0 0.2799 +0 0.1539 +0 0.1034 +0 0.0317 +0 0.1067 +0 0.0411 +0 0.1380 +0 0.1462 +0 0.1206 +0 0.0423 +0 0.1150 +0 0.2875 +0 0.3536 +0 0.0814 +0 0.1126 +0 0.1559 +0 0.1569 +0 0.0511 +0 0.1596 +0 0.0397 +0 0.0999 +0 0.1978 +0 0.0686 +0 0.1197 +0 0.1850 +0 0.1731 +0 0.1150 +0 0.0781 +0 0.1700 +0 0.1298 +0 0.0748 +0 0.1235 +0 0.0501 +0 0.4841 +0 0.1822 +1 0.7625 +0 0.0331 +0 0.0793 +0 0.0868 +0 0.1407 +0 0.2034 +0 0.2249 +0 0.0383 +0 0.1386 +0 0.1719 +0 0.0620 +0 0.0843 +0 0.0922 +0 0.2097 +0 0.0644 +0 0.0386 +0 0.0653 +0 0.2117 +0 0.1706 +0 0.1162 +0 0.0637 +0 0.0516 +0 0.1812 +0 0.1272 +0 0.1280 +0 0.0470 +0 0.0751 +0 0.0566 +0 0.7351 +0 0.1703 +0 0.0552 +0 0.1134 +0 0.0590 +0 0.2258 +0 0.0484 +0 0.0653 +0 0.0759 +0 0.1016 +0 0.1084 +0 0.0574 +0 0.1821 +0 0.0877 +0 0.0318 +0 0.1040 +0 0.0672 +1 0.7954 +0 0.1133 +0 0.1321 +0 0.0574 +0 0.1090 +0 0.0437 +0 0.2895 +0 0.0874 +0 0.1776 +0 0.4023 +0 0.1260 +0 0.1494 +0 0.6744 +0 0.1684 +0 0.0988 +0 0.7307 +0 0.0923 +0 0.1029 +0 0.0624 +0 0.0557 +0 0.5567 +0 0.2527 +0 0.0537 +0 0.0897 +0 0.0701 +0 0.0658 +0 0.1110 +0 0.0959 +0 0.1315 +0 0.1575 +0 0.0308 +0 0.0953 +0 0.1136 +0 0.1567 +0 0.0514 +0 0.0937 +0 0.0710 +0 0.4530 +0 0.0831 +0 0.1199 +0 0.0512 +0 0.0801 +0 0.5132 +0 0.2293 +0 0.1573 +0 0.0739 +0 0.0627 +0 0.7438 +0 0.2967 +0 0.0487 +0 0.0626 +0 0.2055 +0 0.0999 +0 0.0842 +0 0.1550 +0 0.0730 +0 0.1206 +0 0.0670 +0 0.1206 +0 0.0708 +0 0.0523 +0 0.1213 +0 0.0854 +0 0.1213 +0 0.5356 +0 0.1305 +0 0.0802 +0 0.1568 +0 0.2080 +0 0.1459 +0 0.4613 +0 0.0571 +0 0.0720 +0 0.0688 +0 0.1490 +0 0.1319 +0 0.0898 +0 0.0601 +0 0.1238 +0 0.0706 +0 0.0394 +0 0.1069 +0 0.0496 +0 0.0881 +0 0.1505 +0 0.1733 +0 0.1924 +0 0.1067 +0 0.0708 +0 0.0655 +0 0.0637 +0 0.2642 +0 0.1907 +0 0.0693 +0 0.0865 +0 0.0598 +0 0.1899 +0 0.1201 +0 0.1322 +0 0.1536 +0 0.1102 +0 0.0433 +0 0.0842 +0 0.2145 +0 0.0433 +0 0.3431 +0 0.5904 +0 0.0787 +0 0.1512 +0 0.0568 +0 0.1602 +0 0.2455 +0 0.0368 +0 0.1746 +0 0.1494 +0 0.1259 +0 0.0438 +0 0.2137 +0 0.1057 +0 0.1850 +0 0.0585 +0 0.0820 +0 0.4196 +0 0.6081 +0 0.1542 +0 0.1418 +0 0.1542 +0 0.1106 +0 0.0716 +0 0.1249 +0 0.1233 +0 0.0768 +0 0.0421 +0 0.0730 +0 0.1293 +0 0.2309 +0 0.0948 +0 0.0637 +0 0.1629 +0 0.0773 +0 0.0788 +0 0.2240 +0 0.0925 +0 0.1000 +0 0.1068 +0 0.0606 +0 0.0765 +0 0.0827 +0 0.0842 +0 0.0972 +0 0.1274 +0 0.0458 +0 0.0895 +0 0.1086 +0 0.3242 +0 0.1073 +0 0.0622 +0 0.0667 +0 0.1072 +0 0.0869 +0 0.0770 +0 0.0504 +0 0.0458 +0 0.0646 +0 0.1679 +0 0.0672 +0 0.1011 +0 0.0554 +0 0.0476 +0 0.0508 +0 0.0430 +0 0.1279 +0 0.0936 +0 0.0999 +0 0.1019 +0 0.0741 +0 0.1617 +0 0.1177 +0 0.0547 +1 0.8586 +0 0.1021 +0 0.0694 +0 0.0681 +0 0.1029 +0 0.0922 +0 0.1226 +1 0.8406 +0 0.1194 +0 0.0690 +0 0.1308 +0 0.1263 +0 0.1501 +0 0.0375 +0 0.0996 +0 0.1005 +0 0.1067 +0 0.1459 +0 0.0744 +0 0.1169 +0 0.1620 +0 0.1023 +0 0.0754 +0 0.0413 +0 0.1519 +0 0.1204 +0 0.0457 +0 0.1388 +0 0.0523 +0 0.1288 +0 0.3734 +0 0.2284 +0 0.0707 +0 0.0994 +0 0.1596 +0 0.0888 +0 0.2389 +0 0.1170 +0 0.0640 +0 0.0719 +0 0.0638 +0 0.1614 +0 0.1609 +0 0.1075 +0 0.2322 +0 0.1407 +0 0.0786 +0 0.0506 +0 0.0936 +0 0.0653 +0 0.1749 +0 0.1263 +0 0.2096 +0 0.0711 +0 0.2556 +0 0.0493 +0 0.2263 +0 0.1426 +0 0.0860 +0 0.0966 +0 0.0513 +0 0.1031 +0 0.1901 +0 0.0953 +0 0.0604 +0 0.1470 +0 0.0672 +0 0.1262 +0 0.5956 +0 0.0521 +0 0.1357 +0 0.1032 +0 0.0787 +0 0.1255 +1 0.8160 +0 0.0667 +0 0.1303 +0 0.0611 +0 0.0529 +0 0.0724 +0 0.3695 +0 0.0704 +1 0.8005 +0 0.0851 +0 0.0484 +0 0.0866 +0 0.0587 +0 0.0344 +0 0.0566 +0 0.0927 +0 0.0597 +0 0.0915 +0 0.2147 +0 0.6483 +0 0.0635 +0 0.2109 +0 0.0549 +0 0.0999 +0 0.0590 +0 0.0652 +1 0.7177 +0 0.1248 +0 0.1894 +0 0.0796 +0 0.0493 +0 0.0521 +0 0.0604 +0 0.0943 +0 0.0836 +0 0.0638 +0 0.0417 +0 0.0625 +0 0.5876 +0 0.1164 +0 0.1347 +0 0.0765 +0 0.6984 +0 0.0729 +0 0.0836 +0 0.0464 +0 0.0902 +0 0.1296 +0 0.0787 +0 0.0638 +0 0.0467 +0 0.1986 +0 0.0736 +0 0.0953 +0 0.2344 +0 0.0751 +0 0.0672 +0 0.0799 +0 0.0752 +0 0.0981 +0 0.0916 +0 0.0996 +0 0.1384 +0 0.1127 +0 0.1302 +0 0.0331 +0 0.1176 +0 0.0839 +0 0.1365 +0 0.0671 +0 0.1962 +0 0.2048 +0 0.1082 +0 0.3404 +0 0.0616 +0 0.2170 +0 0.0997 +0 0.0406 +0 0.1121 +0 0.0581 +0 0.1024 +0 0.1515 +0 0.1063 +0 0.0665 +0 0.1700 +0 0.1600 +0 0.0783 +0 0.0851 +0 0.1012 +0 0.1243 +0 0.0439 +0 0.1155 +0 0.1923 +0 0.1272 +0 0.0790 +0 0.1577 +0 0.1089 +0 0.1233 +0 0.0561 +0 0.1447 +0 0.1510 +0 0.2322 +0 0.0789 +0 0.0793 +0 0.1134 +0 0.0863 +0 0.0444 +0 0.2247 +0 0.0657 +0 0.0856 +0 0.0892 +0 0.1077 +0 0.0684 +0 0.2939 +0 0.3419 +0 0.1408 +0 0.0458 +0 0.1911 +0 0.0625 +0 0.0428 +0 0.1509 +0 0.5906 +0 0.0626 +0 0.1873 +0 0.4445 +0 0.1316 +0 0.1259 +0 0.0412 +0 0.0921 +0 0.2353 +0 0.1206 +0 0.0815 +0 0.0856 +0 0.2652 +0 0.0793 +0 0.0830 +0 0.0705 +0 0.1080 +0 0.0582 +0 0.0817 +0 0.0647 +0 0.0386 +0 0.1938 +0 0.1167 +0 0.0475 +0 0.1001 +0 0.0649 +0 0.1542 +0 0.3439 +0 0.5674 +0 0.1025 +0 0.0593 +0 0.3332 +0 0.1131 +0 0.0741 +0 0.5951 +0 0.0886 +0 0.1414 +0 0.0338 +0 0.0664 +0 0.0746 +0 0.1308 +0 0.1045 +0 0.3089 +0 0.3574 +0 0.0523 +0 0.0839 +0 0.0739 +0 0.3170 +0 0.0576 +0 0.2706 +0 0.1116 +0 0.1144 +0 0.0713 +0 0.0990 +0 0.2819 +0 0.1642 +0 0.2132 +0 0.0913 +0 0.0583 +0 0.1040 +1 0.8078 +0 0.0951 +0 0.1161 +0 0.0816 +0 0.0424 +0 0.0721 +0 0.0312 +0 0.0358 +0 0.0385 +0 0.1719 +0 0.1028 +0 0.1305 +0 0.0516 +1 0.8254 +0 0.0819 +0 0.0696 +0 0.1250 +1 0.8623 +0 0.2998 +0 0.0452 +0 0.4375 +0 0.0598 +0 0.5505 +0 0.0674 +0 0.0476 +0 0.0448 +0 0.2345 +0 0.0545 +0 0.2091 +0 0.2571 +0 0.1337 +0 0.2478 +0 0.5724 +0 0.2399 +0 0.0382 +0 0.4627 +0 0.0755 +0 0.0719 +0 0.1075 +0 0.2490 +0 0.1512 +0 0.2324 +0 0.0961 +0 0.1020 +0 0.0798 +0 0.3635 +0 0.1021 +0 0.3027 +0 0.2549 +0 0.0551 +0 0.3032 +0 0.0849 +0 0.1352 +0 0.0838 +0 0.1790 +0 0.0646 +0 0.2952 +0 0.0620 +0 0.0691 +0 0.1044 +0 0.1196 +0 0.0834 +0 0.0467 +0 0.1417 +0 0.0864 +0 0.0688 +0 0.2757 +0 0.2165 +0 0.7213 +0 0.3185 +0 0.0608 +0 0.0749 +0 0.0650 +0 0.1125 +0 0.1745 +0 0.1879 +0 0.3151 +0 0.0780 +0 0.0552 +0 0.1030 +0 0.4135 +0 0.0854 +0 0.0546 +0 0.2764 +0 0.1945 +0 0.0510 +0 0.2028 +0 0.0608 +0 0.0729 +1 0.8828 +0 0.1230 +0 0.2113 +0 0.0950 +0 0.0662 +0 0.2724 +0 0.1276 +0 0.2008 +0 0.1260 +0 0.0730 +0 0.2098 +0 0.0728 +0 0.1925 +0 0.0615 +0 0.0577 +0 0.0908 +0 0.1815 +0 0.2225 +1 0.7932 +0 0.6989 +0 0.1617 +0 0.0707 +0 0.1236 +0 0.0921 +0 0.0708 +0 0.1494 +0 0.1230 +0 0.3064 +0 0.1003 +0 0.0629 +0 0.0691 +0 0.2483 +0 0.0964 +0 0.2460 +0 0.0688 +0 0.2063 +0 0.1793 +0 0.3085 +0 0.1270 +0 0.0858 +0 0.0870 +0 0.0564 +0 0.1356 +0 0.1537 +0 0.0736 +0 0.3364 +0 0.0891 +0 0.1107 +0 0.0883 +0 0.2474 +0 0.0674 +0 0.0929 +0 0.1284 +0 0.3799 +0 0.1035 +0 0.0956 +0 0.1799 +0 0.0827 +0 0.1038 +0 0.1192 +0 0.0728 +0 0.1393 +0 0.1252 +0 0.1158 +0 0.0967 +0 0.0724 +0 0.0853 +0 0.0688 +0 0.1547 +0 0.0449 +0 0.1552 +0 0.1031 +0 0.0925 +0 0.0847 +0 0.0575 +0 0.1610 +0 0.0635 +0 0.0785 +0 0.0555 +0 0.0808 +0 0.1120 +0 0.3459 +0 0.0764 +0 0.0568 +0 0.0671 +0 0.1803 +0 0.0640 +0 0.2310 +0 0.0672 +0 0.0435 +0 0.0620 +0 0.0535 +0 0.0764 +0 0.0614 +0 0.0955 +0 0.0942 +0 0.1029 +0 0.0579 +0 0.1461 +0 0.0654 +0 0.0990 +0 0.0691 +0 0.0694 +0 0.0830 +0 0.1923 +0 0.0545 +0 0.1202 +0 0.1341 +0 0.0857 +0 0.1362 +0 0.0671 +0 0.1261 +0 0.1128 +0 0.0870 +0 0.1133 +0 0.1137 +0 0.6564 +0 0.0886 +0 0.1051 +0 0.0641 +0 0.0572 +1 0.7565 +0 0.0501 +0 0.1215 +0 0.1298 +0 0.0800 +0 0.2979 +0 0.1489 +0 0.1463 +0 0.1266 +0 0.1258 +0 0.1220 +0 0.0516 +0 0.0964 +0 0.0499 +0 0.0527 +0 0.0984 +0 0.1493 +0 0.0855 +0 0.0603 +0 0.1270 +0 0.0763 +0 0.2408 +0 0.1714 +0 0.0867 +0 0.0718 +0 0.3437 +0 0.1924 +0 0.0748 +0 0.0950 +0 0.1819 +0 0.2248 +0 0.0881 +0 0.1601 +0 0.1972 +0 0.1093 +0 0.0982 +0 0.0779 +0 0.0909 +0 0.1169 +0 0.1403 +0 0.0356 +0 0.0847 +0 0.0917 +0 0.0468 +0 0.0696 +0 0.1370 +0 0.0708 +0 0.3112 +0 0.1336 +0 0.1073 +0 0.1407 +0 0.1166 +0 0.1083 +0 0.1722 +0 0.0457 +0 0.1187 +0 0.0765 +0 0.0843 +0 0.2111 +0 0.1318 +0 0.1117 +0 0.0824 +1 0.8724 +0 0.0599 +0 0.1007 +0 0.0669 +0 0.1264 +0 0.1708 +0 0.0793 +0 0.1368 +0 0.0436 +0 0.2210 +0 0.3078 +0 0.0674 +0 0.1180 +0 0.1140 +0 0.1825 +0 0.2242 +0 0.0669 +0 0.1319 +0 0.0877 +0 0.2659 +0 0.2532 +0 0.1076 +0 0.2155 +0 0.1538 +0 0.2510 +0 0.0600 +0 0.0619 +0 0.1724 +0 0.5829 +0 0.4062 +0 0.2198 +0 0.0708 +0 0.2107 +0 0.1078 +0 0.0982 +0 0.7257 +0 0.2076 +0 0.1252 +0 0.0689 +0 0.1022 +0 0.2352 +0 0.2303 +0 0.2242 +0 0.1307 +0 0.1775 +0 0.1000 +0 0.0694 +0 0.2290 +0 0.0394 +0 0.0892 +0 0.1473 +0 0.1403 +0 0.0620 +0 0.1544 +0 0.0978 +0 0.0544 +0 0.0727 +0 0.3476 +0 0.0815 +0 0.0918 +0 0.1001 +0 0.1243 +0 0.1407 +0 0.0655 +0 0.0954 +0 0.1132 +0 0.0354 +0 0.0591 +0 0.0952 +0 0.6977 +0 0.3164 +0 0.0582 +0 0.1775 +0 0.1279 +0 0.1748 +0 0.2030 +0 0.1924 +0 0.1155 +0 0.1538 +0 0.1245 +0 0.1522 +0 0.0571 +0 0.3371 +0 0.0867 +0 0.1956 +0 0.0814 +0 0.2539 +0 0.0745 +0 0.7020 +0 0.0462 +0 0.1004 +0 0.2032 +0 0.1317 +0 0.6524 +0 0.0895 +0 0.0621 +0 0.0709 +0 0.0811 +0 0.0605 +0 0.2075 +0 0.2227 +0 0.0922 +0 0.1268 +0 0.0874 +0 0.0543 +0 0.1580 +0 0.1177 +0 0.0954 +0 0.4283 +0 0.1414 +0 0.1398 +0 0.0413 +0 0.1193 +0 0.0765 +0 0.1592 +0 0.2161 +0 0.0369 +0 0.1440 +0 0.1159 +0 0.5157 +0 0.0433 +0 0.1202 +1 0.8073 +0 0.0746 +0 0.2198 +0 0.0474 +0 0.0602 +0 0.1057 +0 0.1296 +0 0.0594 +0 0.1117 +0 0.0792 +0 0.1011 +0 0.1176 +0 0.0674 +0 0.0384 +0 0.0744 +0 0.3609 +0 0.2215 +0 0.1454 +0 0.1467 +0 0.0715 +0 0.1018 +0 0.0547 +0 0.2127 +0 0.0328 +0 0.1391 +0 0.1497 +0 0.1510 +0 0.1500 +0 0.1083 +0 0.1001 +0 0.0847 +0 0.1168 +0 0.0924 +0 0.0929 +0 0.1246 +0 0.0671 +0 0.0816 +0 0.2042 +0 0.1341 +0 0.1899 +0 0.1408 +0 0.0509 +0 0.1118 +0 0.0846 +0 0.1041 +0 0.1399 +0 0.0884 +0 0.1718 +0 0.6076 +0 0.1227 +0 0.0975 +0 0.0487 +0 0.2038 +0 0.0408 +0 0.1104 +1 0.2368 +0 0.0773 +0 0.0757 +0 0.0804 +0 0.0948 +0 0.0645 +0 0.2996 +0 0.0787 +0 0.3508 +0 0.1419 +0 0.1897 +0 0.4019 +0 0.0682 +0 0.0784 +0 0.1590 +0 0.1745 +0 0.1757 +0 0.0657 +0 0.6240 +0 0.0876 +0 0.0437 +0 0.0576 +0 0.4959 +0 0.0805 +0 0.1766 +0 0.0860 +0 0.0811 +0 0.3250 +0 0.1421 +0 0.2112 +0 0.1992 +0 0.3187 +0 0.2342 +0 0.2821 +0 0.1842 +0 0.7265 +0 0.1714 +0 0.5797 +0 0.2077 +0 0.1022 +0 0.1043 +0 0.0707 +0 0.2255 +0 0.1240 +0 0.0763 +0 0.2268 +0 0.6906 +0 0.1949 +0 0.0641 +0 0.1512 +0 0.0648 +0 0.1802 +0 0.0900 +0 0.2345 +0 0.2560 +0 0.2685 +0 0.1190 +0 0.3107 +0 0.1051 +0 0.0608 +0 0.1270 +0 0.1068 +0 0.2910 +0 0.0536 +0 0.1124 +0 0.1336 +0 0.4915 +0 0.1583 +0 0.0486 +0 0.1728 +0 0.0377 +0 0.2461 +0 0.5104 +0 0.0889 +0 0.1024 +0 0.0379 +0 0.1216 +0 0.3017 +0 0.0565 +0 0.0912 +0 0.1469 +0 0.0431 +0 0.0471 +0 0.0748 +0 0.2721 +0 0.0870 +0 0.1188 +0 0.1585 +0 0.3036 +0 0.0779 +1 0.8516 +0 0.0993 +0 0.1473 +0 0.0367 +0 0.1867 +0 0.2413 +0 0.2287 +0 0.1319 +0 0.1089 +0 0.1031 +0 0.0869 +0 0.0519 +0 0.0850 +0 0.1035 +0 0.3243 +0 0.1252 +0 0.1936 +0 0.1970 +0 0.6027 +0 0.1083 +0 0.0535 +0 0.0775 +0 0.0766 +0 0.0569 +0 0.0485 +0 0.0796 +0 0.1122 +0 0.0722 +0 0.0785 +0 0.0707 +0 0.0645 +0 0.1214 +0 0.0522 +0 0.1256 +0 0.0953 +0 0.0996 +0 0.1608 +0 0.1383 +1 0.8238 +0 0.1132 +0 0.0787 +1 0.8460 +0 0.0781 +0 0.0829 +0 0.1101 +0 0.1700 +0 0.5567 +0 0.1439 +0 0.0489 +0 0.1884 +0 0.1723 +0 0.0959 +0 0.0699 +0 0.0950 +0 0.1385 +0 0.3877 +0 0.0863 +0 0.0819 +0 0.1128 +0 0.2345 +1 0.7689 +0 0.2590 +0 0.2106 +0 0.2210 +0 0.0629 +0 0.0513 +0 0.1176 +0 0.1340 +0 0.1228 +0 0.1045 +0 0.0451 +0 0.0876 +0 0.0922 +0 0.0737 +0 0.0578 +0 0.1220 +0 0.2255 +0 0.1382 +0 0.0556 +0 0.0711 +0 0.0819 +0 0.0543 +0 0.1045 +0 0.2107 +0 0.0638 +0 0.0527 +0 0.1443 +0 0.0912 +0 0.0967 +0 0.1068 +0 0.0974 +0 0.1568 +0 0.2215 +0 0.3340 +0 0.3976 +0 0.0820 +0 0.0921 +0 0.0368 +0 0.0652 +0 0.1544 +0 0.0610 +0 0.0829 +0 0.1344 +0 0.1487 +0 0.0586 +0 0.0742 +0 0.1191 +0 0.1227 +0 0.0579 +0 0.3699 +0 0.1060 +0 0.3153 +0 0.1037 +0 0.0467 +0 0.1043 +0 0.0710 +0 0.2407 +0 0.0381 +0 0.4073 +0 0.0997 +0 0.0666 +0 0.1130 +0 0.0823 +0 0.1593 +0 0.1146 +0 0.1147 +0 0.2359 +0 0.1605 +0 0.1034 +0 0.0589 +0 0.1550 +0 0.1848 +0 0.1145 +0 0.1447 +0 0.0854 +0 0.2687 +0 0.1196 +0 0.1215 +0 0.0923 +0 0.1478 +0 0.3721 +0 0.0740 +0 0.0968 +0 0.0927 +0 0.1103 +0 0.2367 +0 0.0784 +0 0.1532 +0 0.3861 +0 0.4043 +0 0.0633 +0 0.0528 +0 0.0752 +0 0.1955 +0 0.0428 +0 0.1968 +0 0.1173 +0 0.0577 +0 0.0943 +0 0.7040 +0 0.1729 +0 0.0610 +0 0.1079 +0 0.2232 +0 0.0636 +0 0.0520 +0 0.7396 +0 0.0772 +0 0.1668 +0 0.0847 +0 0.0838 +0 0.0486 +0 0.1151 +0 0.1233 +0 0.2187 +0 0.1267 +0 0.2584 +0 0.1275 +0 0.1646 +0 0.7414 +0 0.1506 +0 0.1285 +0 0.1754 +0 0.1390 +0 0.1508 +0 0.4420 +0 0.0362 +0 0.0651 +0 0.1265 +0 0.1961 +0 0.0885 +0 0.0824 +0 0.1538 +0 0.0950 +0 0.2371 +0 0.0773 +0 0.1820 +0 0.0928 +0 0.1472 +0 0.1019 +0 0.2688 +0 0.1656 +0 0.0869 +0 0.1087 +0 0.1125 +0 0.2206 +0 0.1537 +0 0.3082 +0 0.1130 +0 0.1745 +0 0.1186 +0 0.1669 +0 0.0529 +0 0.2873 +0 0.1735 +0 0.1559 +0 0.1135 +0 0.0797 +0 0.0761 +0 0.0591 +0 0.1507 +0 0.1025 +0 0.0804 +0 0.1521 +0 0.3506 +0 0.0523 +0 0.0860 +0 0.1552 +0 0.0580 +0 0.0735 +0 0.1114 +0 0.1547 +0 0.3434 +0 0.1407 +0 0.4650 +0 0.2390 +0 0.0856 +0 0.3384 +0 0.1243 +0 0.7082 +0 0.0524 +0 0.1062 +0 0.4979 +0 0.0775 +0 0.2851 +0 0.1040 +0 0.0755 +0 0.0617 +0 0.3342 +0 0.0772 +0 0.1371 +0 0.0598 +0 0.0546 +0 0.1522 +0 0.0742 +0 0.0529 +0 0.2147 +0 0.0768 +0 0.0662 +0 0.1461 +0 0.1229 +0 0.0464 +0 0.6965 +0 0.0725 +0 0.1012 +0 0.1570 +0 0.2250 +0 0.0487 +0 0.2542 +0 0.1591 +0 0.1007 +0 0.0735 +0 0.1301 +0 0.0860 +0 0.2340 +0 0.2031 +0 0.1431 +0 0.0504 +0 0.1621 +0 0.0766 +0 0.1960 +0 0.0786 +0 0.0578 +0 0.0339 +0 0.0906 +0 0.0574 +0 0.2224 +0 0.0771 +0 0.0561 +0 0.1666 +0 0.0581 +0 0.2221 +0 0.0445 +0 0.1293 +1 0.7676 +0 0.1045 +0 0.1248 +0 0.0937 +0 0.1137 +0 0.0930 +0 0.1565 +0 0.0964 +0 0.1079 +0 0.0467 +0 0.0688 +0 0.0306 +0 0.0890 +0 0.0523 +0 0.0563 +0 0.0563 +0 0.1788 +0 0.1833 +0 0.0769 +0 0.0442 +0 0.0975 +0 0.2662 +0 0.1169 +0 0.0475 +0 0.1079 +0 0.0544 +0 0.1604 +0 0.3027 +0 0.2598 +0 0.1540 +0 0.1148 +0 0.0397 +0 0.0830 +0 0.0943 +0 0.2757 +0 0.0871 +0 0.1182 +0 0.0853 +0 0.3307 +0 0.1183 +0 0.1245 +0 0.1268 +0 0.0792 +0 0.1401 +0 0.0507 +0 0.1079 +0 0.2408 +0 0.2140 +0 0.2239 +0 0.0447 +0 0.0689 +0 0.0479 +0 0.1741 +0 0.2849 +0 0.0875 +0 0.7241 +0 0.1494 +0 0.1088 +0 0.0991 +0 0.3456 +0 0.0603 +0 0.1449 +0 0.0419 +0 0.2077 +0 0.0712 +0 0.1872 +0 0.0727 +0 0.0578 +0 0.2782 +0 0.0552 +0 0.0853 +0 0.1216 +0 0.1207 +0 0.0673 +0 0.1157 +0 0.0803 +0 0.1101 +0 0.1126 +0 0.0589 +0 0.0960 +0 0.2889 +0 0.0372 +0 0.4738 +0 0.1492 +0 0.0638 +0 0.1206 +0 0.0393 +0 0.2332 +0 0.0933 +0 0.0435 +0 0.0857 +0 0.1849 +0 0.1725 +0 0.1252 +0 0.2005 +0 0.0496 +0 0.1323 +0 0.1156 +0 0.0623 +0 0.1049 +1 0.7804 +0 0.1414 +0 0.1065 +0 0.0460 +0 0.0949 +0 0.0447 +0 0.1900 +0 0.0698 +0 0.0674 +0 0.2104 +0 0.1189 +0 0.1509 +0 0.0787 +0 0.2425 +0 0.0760 +0 0.1144 +0 0.0663 +0 0.2068 +0 0.0662 +0 0.0493 +0 0.0583 +0 0.0700 +0 0.2654 +0 0.4927 +0 0.0816 +0 0.0494 +0 0.0636 +0 0.1732 +0 0.0632 +0 0.0701 +0 0.1742 +0 0.3525 +0 0.6128 +0 0.0758 +0 0.0887 +0 0.0564 +0 0.0670 +0 0.0628 +0 0.0950 +0 0.0995 +0 0.1228 +0 0.5300 +0 0.1913 +0 0.0776 +0 0.0566 +0 0.0985 +0 0.0652 +0 0.1079 +0 0.0601 +0 0.0406 +0 0.1235 +0 0.1151 +0 0.0513 +0 0.0515 +0 0.3546 +0 0.2116 +0 0.0529 +0 0.1090 +0 0.1449 +0 0.0479 +0 0.1316 +0 0.1668 +0 0.1214 +0 0.0386 +0 0.1789 +0 0.2425 +0 0.1043 +0 0.0600 +0 0.5784 +0 0.0485 +0 0.0954 +0 0.0996 +0 0.0755 +0 0.0552 +0 0.0865 +0 0.1489 +0 0.0424 +0 0.0439 +0 0.1861 +0 0.2165 +0 0.6134 +0 0.0597 +0 0.0538 +0 0.0729 +0 0.3769 +0 0.0673 +0 0.1094 +0 0.0566 +0 0.0830 +0 0.0725 +0 0.1189 +0 0.1775 +0 0.1197 +0 0.0645 +0 0.4519 +0 0.1664 +0 0.1700 +0 0.0505 +0 0.0755 +0 0.0425 +0 0.0865 +0 0.0470 +0 0.0645 +0 0.1669 +0 0.0878 +0 0.0824 +0 0.0727 +0 0.1802 +0 0.0986 +0 0.3684 +0 0.3084 +0 0.0568 +0 0.0437 +0 0.1436 +0 0.0626 +0 0.1699 +0 0.1063 +0 0.0435 +0 0.3098 +0 0.1043 +0 0.1015 +0 0.1462 +0 0.6179 +0 0.0578 +0 0.1698 +0 0.0927 +0 0.1126 +0 0.1539 +0 0.1009 +0 0.1416 +0 0.1957 +0 0.1036 +0 0.2582 +0 0.1228 +0 0.1455 +0 0.1310 +0 0.1327 +0 0.2304 +0 0.0360 +0 0.0942 +0 0.0646 +0 0.1096 +1 0.8367 +0 0.2073 +0 0.1658 +0 0.1324 +0 0.0848 +0 0.1354 +0 0.2735 +0 0.1212 +0 0.4316 +0 0.0719 +0 0.0446 +0 0.1873 +0 0.1026 +0 0.1152 +0 0.1024 +0 0.1651 +0 0.1110 +0 0.0827 +0 0.0540 +0 0.1295 +0 0.0454 +0 0.2718 +0 0.1017 +0 0.0659 +0 0.0523 +0 0.1268 +0 0.0747 +0 0.4401 +0 0.0913 +0 0.0911 +0 0.1004 +0 0.2595 +0 0.3803 +0 0.1421 +0 0.0594 +0 0.0318 +0 0.1373 +0 0.0920 +0 0.0634 +0 0.1480 +0 0.0702 +0 0.0830 +0 0.0629 +0 0.2818 +0 0.0467 +0 0.0876 +0 0.0625 +0 0.0483 +0 0.0880 +0 0.0721 +0 0.3918 +0 0.1231 +0 0.0625 +0 0.0800 +0 0.1074 +0 0.1568 +0 0.0607 +0 0.0880 +0 0.0961 +0 0.0735 +0 0.0938 +0 0.1378 +0 0.1379 +0 0.2916 +0 0.0724 +0 0.1271 +0 0.1287 +0 0.1228 +0 0.0880 +1 0.8778 +0 0.0769 +0 0.0768 +0 0.0631 +0 0.0421 +1 0.8600 +0 0.0999 +0 0.1865 +0 0.0998 +0 0.0570 +0 0.1544 +0 0.0757 +0 0.0611 +0 0.0758 +0 0.3537 +0 0.4934 +0 0.1482 +0 0.2313 +0 0.1567 +0 0.1588 +0 0.0492 +0 0.0731 +0 0.7248 +0 0.0767 +0 0.1652 +0 0.0639 +0 0.0705 +0 0.1472 +0 0.0901 +0 0.1059 +0 0.1617 +0 0.0521 +0 0.1160 +0 0.1178 +0 0.1293 +0 0.0806 +0 0.1565 +0 0.0646 +0 0.3187 +0 0.1299 +0 0.0573 +0 0.0367 +0 0.1222 +0 0.2361 +0 0.0485 +0 0.0512 +0 0.0860 +0 0.0932 +0 0.0607 +0 0.1389 +0 0.1031 +0 0.0535 +0 0.0476 +0 0.0626 +0 0.2175 +0 0.2869 +0 0.4221 +0 0.1382 +0 0.1227 +0 0.2693 +0 0.0812 +0 0.1002 +0 0.1212 +0 0.3641 +0 0.0456 +0 0.0755 +0 0.0576 +0 0.2043 +0 0.0874 +0 0.1139 +0 0.1234 +0 0.1299 +0 0.0728 +0 0.0677 +0 0.4365 +0 0.1053 +0 0.1786 +0 0.1415 +0 0.0945 +0 0.1755 +0 0.1366 +0 0.0911 +0 0.0706 +0 0.0782 +0 0.1396 +0 0.0771 +0 0.0698 +0 0.1399 +0 0.0663 +0 0.2505 +0 0.1237 +0 0.0572 +0 0.1094 +0 0.0808 +0 0.2387 +0 0.1024 +0 0.5939 +0 0.0303 +0 0.0832 +0 0.1142 +0 0.1193 +0 0.6127 +0 0.0646 +0 0.0683 +0 0.0872 +0 0.1163 +0 0.4792 +0 0.0405 +0 0.1896 +0 0.0508 +0 0.0340 +0 0.2589 +0 0.1094 +0 0.0691 +0 0.2170 +0 0.0893 +0 0.0487 +0 0.1489 +0 0.2276 +0 0.0830 +0 0.0750 +0 0.0610 +0 0.0522 +0 0.0812 +0 0.0666 +0 0.5285 +0 0.0468 +0 0.0723 +0 0.2274 +0 0.4033 +0 0.1958 +0 0.2863 +0 0.1032 +0 0.0515 +0 0.6185 +0 0.1296 +0 0.1263 +0 0.1041 +0 0.1207 +0 0.0990 +0 0.1264 +1 0.7865 +0 0.0850 +0 0.0994 +0 0.0433 +0 0.2072 +0 0.2294 +0 0.1046 +0 0.2870 +0 0.1438 +0 0.0586 +0 0.1260 +0 0.0850 +0 0.1629 +0 0.2204 +0 0.0415 +0 0.5154 +0 0.2484 +0 0.2899 +0 0.2320 +0 0.0760 +0 0.0821 +0 0.0566 +0 0.0603 +0 0.0774 +0 0.0870 +0 0.0844 +0 0.1481 +0 0.1054 +0 0.1457 +0 0.0664 +0 0.0590 +0 0.0854 +0 0.0862 +0 0.0587 +0 0.0810 +0 0.2211 +0 0.1112 +0 0.3745 +0 0.0765 +0 0.1555 +0 0.1134 +0 0.0731 +0 0.0673 +0 0.1282 +0 0.2070 +0 0.0425 +0 0.1056 +0 0.2164 +0 0.1030 +0 0.0844 +0 0.1333 +0 0.0674 +0 0.0813 +0 0.5390 +0 0.1155 +0 0.1029 +0 0.0771 +0 0.0998 +0 0.1519 +0 0.2465 +0 0.3400 +0 0.1622 +0 0.2201 +0 0.1392 +0 0.1038 +0 0.0594 +0 0.0983 +0 0.0558 +0 0.0825 +0 0.2146 +0 0.0736 +0 0.0725 +0 0.0884 +0 0.1353 +0 0.0674 +0 0.2102 +0 0.0410 +0 0.3786 +0 0.0852 +1 0.7927 +0 0.1130 +0 0.0786 +0 0.1358 +0 0.4125 +0 0.0721 +0 0.0726 +0 0.0856 +0 0.1999 +0 0.0414 +0 0.1347 +0 0.1982 +0 0.1532 +0 0.0570 +0 0.1473 +0 0.0721 +0 0.0643 +0 0.1248 +0 0.0558 +0 0.0684 +0 0.2054 +0 0.1016 +0 0.0938 +0 0.1158 +0 0.1012 +0 0.0653 +0 0.1763 +0 0.2059 +0 0.0531 +0 0.0515 +0 0.0537 +0 0.0751 +0 0.1779 +0 0.0429 +0 0.1118 +0 0.0946 +0 0.0972 +0 0.3642 +0 0.7341 +0 0.0895 +0 0.0851 +0 0.2944 +0 0.0451 +0 0.2813 +0 0.0857 +0 0.1087 +0 0.0522 +0 0.3255 +0 0.1007 +0 0.0929 +0 0.0949 +0 0.4723 +0 0.0984 +0 0.1367 +0 0.2314 +0 0.1534 +0 0.0901 +0 0.1216 +0 0.1233 +0 0.1024 +0 0.0558 +0 0.2165 +0 0.0984 +0 0.3621 +1 0.8341 +0 0.0716 +0 0.0773 +0 0.0752 +0 0.1715 +0 0.5278 +0 0.0887 +1 0.8106 +0 0.1420 +0 0.1748 +0 0.1956 +0 0.0972 +0 0.1208 +0 0.0623 +0 0.1039 +0 0.1343 +0 0.0688 +0 0.1046 +0 0.4467 +0 0.1653 +0 0.1269 +0 0.0724 +0 0.0691 +0 0.0840 +0 0.2427 +0 0.2851 +0 0.1307 +0 0.0532 +0 0.1261 +1 0.8326 +0 0.6810 +0 0.2478 +0 0.1303 +0 0.0475 +0 0.0482 +0 0.1149 +0 0.0622 +0 0.0664 +0 0.1466 +0 0.2794 +0 0.2461 +0 0.0509 +0 0.1359 +0 0.2225 +0 0.1105 +0 0.0991 +0 0.0738 +0 0.1300 +0 0.0774 +1 0.8209 +0 0.0687 +0 0.0812 +0 0.0968 +0 0.1257 +0 0.1577 +0 0.1272 +0 0.3847 +0 0.2729 +0 0.0931 +0 0.1065 +0 0.1657 +0 0.2717 +0 0.0705 +0 0.1809 +0 0.0415 +0 0.2253 +0 0.0673 +0 0.0601 +0 0.2912 +0 0.1308 +0 0.2946 +0 0.0732 +0 0.1481 +0 0.0600 +0 0.1342 +0 0.1378 +0 0.0674 +0 0.1096 +0 0.1397 +0 0.2104 +0 0.1185 +0 0.1072 +0 0.1804 +0 0.0393 +0 0.2980 +0 0.1747 +0 0.0659 +0 0.2174 +0 0.1207 +0 0.1346 +0 0.0987 +0 0.1611 +0 0.0939 +0 0.0931 +0 0.2165 +0 0.0763 +0 0.0911 +0 0.0576 +0 0.0489 +0 0.1102 +0 0.0704 +0 0.0766 +0 0.1799 +0 0.0873 +0 0.1269 +0 0.2795 +0 0.0391 +0 0.3361 +0 0.0604 +0 0.0958 +0 0.1319 +0 0.1328 +0 0.1010 +0 0.0621 +0 0.0645 +0 0.0497 +0 0.2593 +0 0.2984 +0 0.0798 +0 0.0697 +0 0.0631 +0 0.4512 +0 0.1309 +0 0.2857 +0 0.1299 +0 0.1530 +0 0.2813 +0 0.6299 +0 0.4793 +0 0.0934 +0 0.0432 +0 0.2724 +0 0.1044 +0 0.1362 +0 0.0841 +0 0.1011 +0 0.0939 +0 0.1176 +0 0.1231 +0 0.0307 +0 0.1287 +0 0.2186 +0 0.0360 +0 0.2053 +0 0.2570 +0 0.1389 +0 0.0715 +0 0.2394 +0 0.1609 +0 0.1245 +0 0.1273 +0 0.7362 +0 0.1526 +0 0.0528 +0 0.0696 +1 0.8244 +0 0.1381 +0 0.1638 +0 0.0628 +0 0.0904 +0 0.1538 +0 0.0596 +0 0.1832 +0 0.4146 +0 0.0783 +0 0.0611 +0 0.0932 +0 0.2043 +0 0.1396 +0 0.1459 +0 0.0805 +0 0.1150 +0 0.1361 +0 0.0605 +0 0.1356 +0 0.1230 +0 0.1031 +0 0.0706 +0 0.0664 +0 0.0453 +0 0.0538 +0 0.1275 +0 0.2052 +0 0.0988 +0 0.0934 +0 0.0817 +0 0.0587 +0 0.0992 +0 0.0415 +0 0.0949 +0 0.1787 +0 0.0517 +0 0.0714 +0 0.7411 +0 0.0564 +0 0.0999 +0 0.1897 +0 0.1437 +0 0.0774 +0 0.2917 +0 0.1809 +0 0.0846 +0 0.0459 +0 0.0565 +0 0.0914 +0 0.1647 +0 0.3141 +0 0.0741 +0 0.0925 +0 0.1059 +0 0.5952 +0 0.0747 +0 0.0772 +0 0.0792 +0 0.0719 +0 0.1159 +0 0.1531 +0 0.0289 +0 0.1756 +1 0.7601 +0 0.1826 +0 0.0632 +0 0.0447 +0 0.0745 +0 0.1006 +0 0.4472 +0 0.0766 +0 0.3081 +0 0.1349 +0 0.1724 +0 0.0555 +0 0.0595 +0 0.2816 +0 0.3409 +0 0.1627 +0 0.1029 +0 0.0994 +0 0.1837 +0 0.2597 +0 0.0971 +0 0.0891 +0 0.0706 +0 0.1910 +0 0.1205 +0 0.0886 +0 0.2939 +0 0.0783 +0 0.0572 +0 0.1038 +0 0.0863 +0 0.0868 +0 0.1527 +0 0.1237 +0 0.1757 +0 0.1227 +0 0.0479 +0 0.0442 +0 0.2133 +0 0.0560 +0 0.0969 +0 0.1817 +0 0.0599 +0 0.1457 +0 0.0509 +0 0.2459 +0 0.0405 +0 0.0687 +0 0.0677 +0 0.1839 +0 0.0928 +0 0.0758 +0 0.0700 +0 0.0569 +0 0.0625 +0 0.1316 +0 0.0913 +0 0.1311 +0 0.0958 +0 0.2681 +1 0.7546 +0 0.0839 +0 0.0683 +0 0.0455 +0 0.0921 +0 0.2336 +0 0.1124 +0 0.1270 +0 0.2382 +0 0.0614 +0 0.1158 +0 0.1825 +0 0.2058 +0 0.0489 +0 0.2260 +0 0.4542 +0 0.0655 +0 0.0568 +0 0.5240 +0 0.0634 +0 0.1556 +0 0.1241 +0 0.1851 +0 0.0829 +0 0.0938 +0 0.1191 +0 0.2067 +0 0.0624 +0 0.3079 +0 0.7467 +0 0.0835 +0 0.1271 +0 0.0960 +0 0.0613 +0 0.1562 +0 0.1240 +0 0.1133 +0 0.1168 +0 0.0586 +1 0.7724 +0 0.0841 +0 0.5317 +0 0.0591 +0 0.0575 +0 0.1300 +0 0.0777 +0 0.0765 +0 0.1838 +0 0.1058 +0 0.0457 +0 0.0359 +0 0.0829 +0 0.1276 +0 0.0551 +0 0.0577 +0 0.0999 +0 0.0458 +0 0.0708 +0 0.1453 +0 0.0462 +0 0.0912 +0 0.0683 +0 0.1358 +0 0.0685 +0 0.7496 +0 0.0417 +0 0.1855 +0 0.0814 +0 0.0702 +0 0.1645 +0 0.1611 +0 0.2439 +0 0.0793 +0 0.1224 +0 0.1710 +0 0.1664 +0 0.3017 +0 0.2946 +1 0.8414 +0 0.0983 +0 0.1435 +0 0.0560 +0 0.0586 +0 0.1551 +0 0.1744 +0 0.0849 +0 0.1060 +0 0.1634 +0 0.0731 +0 0.0952 +0 0.2076 +0 0.0631 +0 0.1567 +0 0.0526 +0 0.0661 +0 0.0776 +0 0.1198 +0 0.1383 +0 0.2121 +0 0.0704 +0 0.0777 +0 0.0831 +0 0.2948 +0 0.0417 +0 0.3364 +0 0.0698 +0 0.1469 +0 0.2312 +0 0.5582 +0 0.1016 +0 0.1185 +0 0.0635 +0 0.3426 +0 0.1692 +0 0.1805 +0 0.0692 +0 0.1141 +0 0.1197 +0 0.1241 +0 0.0874 +0 0.0837 +0 0.0977 +0 0.0506 +0 0.1662 +0 0.1673 +0 0.0607 +0 0.1122 +0 0.0591 +0 0.1877 +0 0.0563 +0 0.0601 +0 0.1535 +0 0.1530 +0 0.1580 +0 0.2782 +0 0.2234 +0 0.0794 +0 0.0948 +0 0.0664 +0 0.1582 +0 0.0811 +0 0.1559 +0 0.1578 +0 0.2306 +0 0.0700 +0 0.1434 +0 0.1582 +0 0.0603 +0 0.1282 +0 0.1853 +0 0.1994 +0 0.0678 +0 0.0854 +0 0.0630 +0 0.0492 +0 0.6378 +0 0.0676 +0 0.0935 +0 0.0367 +0 0.1051 +0 0.1024 +0 0.0862 +0 0.3809 +0 0.1040 +0 0.1030 +0 0.4878 +0 0.0791 +0 0.1437 +0 0.1250 +0 0.3880 +0 0.1176 +0 0.2590 +0 0.1801 +0 0.0961 +0 0.2770 +0 0.1815 +0 0.0823 +0 0.0563 +0 0.0776 +0 0.0537 +0 0.0569 +0 0.0928 +0 0.0549 +0 0.0555 +0 0.2561 +0 0.1030 +0 0.0476 +0 0.7284 +0 0.0363 +0 0.2329 +0 0.1962 +0 0.1577 +0 0.0686 +0 0.1236 +0 0.3128 +0 0.5621 +0 0.1173 +0 0.2091 +0 0.0885 +0 0.0751 +0 0.1727 +0 0.1423 +0 0.0598 +0 0.1606 +0 0.0813 +0 0.0648 +0 0.0897 +0 0.0795 +0 0.0680 +0 0.0435 +0 0.1069 +0 0.2656 +0 0.0632 +0 0.0764 +0 0.3904 +0 0.0479 +0 0.1201 +0 0.6867 +0 0.0916 +0 0.0659 +0 0.1046 +0 0.1851 +0 0.1929 +0 0.0673 +0 0.1124 +0 0.1131 +0 0.0720 +0 0.0889 +1 0.7619 +0 0.2598 +0 0.1591 +0 0.1706 +0 0.3227 +0 0.3518 +0 0.0536 +0 0.1011 +0 0.1413 +0 0.2813 +0 0.1243 +0 0.0562 +0 0.1541 +0 0.1272 +0 0.0808 +0 0.1440 +0 0.1099 +0 0.0633 +0 0.3843 +0 0.0503 +0 0.0904 +0 0.0632 +0 0.0762 +0 0.0537 +0 0.2810 +0 0.0429 +0 0.0689 +0 0.0811 +0 0.0633 +0 0.3570 +0 0.0506 +0 0.1872 +0 0.0742 +0 0.1007 +1 0.7735 +0 0.1897 +0 0.2154 +0 0.2603 +0 0.0744 +0 0.0589 +0 0.2275 +0 0.1001 +0 0.0575 +0 0.0898 +0 0.0460 +0 0.0946 +0 0.1460 +0 0.1220 +0 0.1856 +0 0.0698 +0 0.6054 +0 0.3172 +0 0.0863 +0 0.1000 +0 0.0549 +0 0.1736 +1 0.7664 +0 0.0631 +0 0.1193 +0 0.3059 +0 0.0922 +0 0.1011 +0 0.1160 +0 0.1468 +0 0.0518 +0 0.3633 +0 0.0672 +0 0.0531 +0 0.0748 +0 0.0741 +0 0.0627 +0 0.0794 +0 0.0678 +0 0.4296 +0 0.0808 +0 0.1078 +0 0.0333 +0 0.0531 +0 0.4229 +0 0.1537 +0 0.0949 +0 0.1679 +0 0.0664 +0 0.0422 +0 0.1941 +0 0.1205 +0 0.1024 +0 0.1760 +0 0.1026 +0 0.0909 +0 0.2796 +0 0.1541 +0 0.1664 +0 0.1637 +0 0.1127 +0 0.0668 +0 0.2280 +0 0.0693 +0 0.2061 +0 0.1755 +0 0.1224 +0 0.1801 +0 0.1071 +0 0.1120 +0 0.0442 +0 0.1879 +0 0.1177 +0 0.2249 +0 0.0968 +0 0.0958 +0 0.1550 +0 0.1930 +0 0.0916 +0 0.1441 +0 0.0830 +0 0.1227 +0 0.1362 +0 0.1065 +0 0.1660 +0 0.2653 +0 0.0968 +0 0.0966 +0 0.1526 +0 0.1946 +0 0.0712 +0 0.1450 +0 0.1245 +0 0.0948 +0 0.0645 +0 0.0830 +0 0.1584 +0 0.0678 +0 0.1262 +0 0.0965 +0 0.1006 +0 0.2574 +0 0.3981 +0 0.1204 +0 0.3513 +0 0.0639 +0 0.1286 +0 0.0848 +0 0.3090 +0 0.0360 +0 0.0499 +0 0.1018 +0 0.1098 +0 0.1084 +0 0.1443 +0 0.0297 +0 0.0394 +0 0.5943 +0 0.0920 +0 0.1138 +0 0.1669 +0 0.0749 +0 0.0653 +0 0.0715 +1 0.7651 +0 0.2321 +1 0.9003 +0 0.0886 +0 0.1971 +0 0.0699 +0 0.2121 +0 0.0448 +0 0.1254 +0 0.0730 +0 0.0836 +0 0.1050 +0 0.1900 +0 0.1193 +0 0.1388 +0 0.0990 +0 0.0890 +0 0.0548 +0 0.0745 +0 0.0578 +1 0.5239 +0 0.1076 +0 0.1551 +0 0.4946 +0 0.0814 +0 0.1759 +0 0.1432 +0 0.7462 +0 0.1586 +0 0.3336 +0 0.0916 +0 0.2667 +0 0.0779 +1 0.7966 +0 0.0575 +0 0.1369 +0 0.0904 +0 0.2640 +0 0.0701 +0 0.6738 +1 0.8178 +0 0.1352 +0 0.0783 +0 0.2796 +0 0.1058 +0 0.2030 +0 0.0676 +0 0.1315 +0 0.3867 +0 0.0565 +0 0.2358 +0 0.1144 +0 0.2179 +0 0.1932 +0 0.0808 +0 0.2106 +0 0.0977 +0 0.1841 +0 0.1021 +0 0.3521 +0 0.1101 +0 0.0672 +0 0.1712 +0 0.1288 +0 0.1170 +0 0.1189 +0 0.0439 +0 0.0610 +0 0.1337 +0 0.2696 +0 0.1216 +0 0.1180 +0 0.0697 +0 0.0852 +0 0.0908 +0 0.3699 +0 0.1408 +0 0.0557 +0 0.1180 +0 0.0376 +0 0.1477 +0 0.1795 +0 0.1903 +0 0.0790 +0 0.1041 +0 0.2011 +0 0.1017 +0 0.0758 +0 0.2248 +0 0.2371 +0 0.0604 +1 0.7827 +0 0.0683 +0 0.1959 +0 0.4412 +0 0.0893 +0 0.0364 +0 0.0676 +0 0.1437 +0 0.0461 +0 0.1395 +0 0.0383 +0 0.0883 +0 0.2936 +0 0.3797 +0 0.1608 +0 0.0853 +0 0.1471 +0 0.3170 +0 0.1611 +0 0.0711 +0 0.1021 +0 0.0625 +0 0.0486 +0 0.0443 +0 0.1897 +0 0.0656 +0 0.1054 +0 0.0605 +0 0.2380 +0 0.1804 +0 0.1157 +0 0.2005 +0 0.1212 +0 0.0435 +0 0.1338 +0 0.3214 +0 0.0530 +0 0.0350 +0 0.0945 +0 0.0650 +0 0.0762 +0 0.0350 +0 0.1978 +0 0.1097 +0 0.7008 +0 0.0851 +0 0.1682 +0 0.0664 +0 0.6533 +0 0.0612 +0 0.1148 +0 0.0627 +0 0.0765 +0 0.1061 +0 0.0725 +0 0.0449 +0 0.2271 +0 0.1993 +0 0.1816 +0 0.1068 +0 0.0585 +0 0.1889 +0 0.0424 +0 0.1032 +0 0.0474 +0 0.0653 +0 0.0486 +0 0.0534 +0 0.2899 +0 0.0902 +0 0.1076 +0 0.4124 +0 0.1650 +0 0.1118 +0 0.2759 +0 0.1413 +0 0.0722 +0 0.1089 +0 0.0468 +0 0.2860 +0 0.0993 +1 0.8374 +0 0.1747 +0 0.0329 +0 0.2059 +0 0.1031 +0 0.0802 +0 0.0872 +0 0.6877 +0 0.1016 +0 0.0428 +0 0.0685 +0 0.0565 +0 0.0983 +0 0.2558 +0 0.1059 +0 0.0577 +0 0.0487 +0 0.0940 +0 0.0886 +0 0.0577 +0 0.1001 +0 0.0617 +0 0.1077 +0 0.2091 +1 0.8445 +0 0.0653 +0 0.1931 +0 0.0853 +0 0.1911 +0 0.0593 +0 0.0646 +0 0.0450 +0 0.2871 +0 0.2636 +0 0.0637 +0 0.2237 +0 0.2174 +0 0.1696 +0 0.1183 +0 0.0825 +0 0.1156 +0 0.0954 +0 0.1029 +0 0.0985 +0 0.5211 +0 0.0338 +0 0.0811 +0 0.1851 +0 0.1437 +0 0.3012 +0 0.2621 +0 0.1164 +0 0.1981 +0 0.1467 +0 0.0437 +0 0.0718 +0 0.1133 +0 0.4227 +0 0.0654 +0 0.0467 +0 0.1487 +0 0.1144 +0 0.0591 +0 0.0441 +0 0.1166 +0 0.1978 +0 0.1064 +0 0.0882 +0 0.0723 +0 0.1547 +0 0.1041 +0 0.1030 +0 0.0769 +0 0.0708 +0 0.1430 +0 0.0448 +0 0.1072 +0 0.2381 +0 0.0503 +0 0.0687 +0 0.0488 +0 0.0686 +0 0.0549 +0 0.1008 +0 0.2300 +0 0.1301 +0 0.0838 +0 0.1003 +0 0.0984 +0 0.1019 +0 0.3930 +0 0.1847 +0 0.1585 +0 0.0827 +0 0.1159 +0 0.0590 +0 0.0681 +0 0.1084 +0 0.0398 +0 0.1745 +0 0.1618 +0 0.0553 +0 0.1332 +0 0.4366 +0 0.1351 +0 0.0494 +0 0.0691 +0 0.6748 +0 0.0535 +0 0.0536 +0 0.0444 +0 0.0690 +0 0.1000 +0 0.0894 +0 0.1777 +0 0.2404 +0 0.0696 +0 0.1960 +0 0.0774 +0 0.0695 +0 0.0815 +0 0.0519 +0 0.1061 +0 0.0553 +0 0.1491 +0 0.0614 +0 0.0625 +0 0.0829 +0 0.1971 +0 0.2194 +0 0.2216 +0 0.3106 +0 0.1369 +0 0.1093 +0 0.5647 +0 0.1387 +0 0.1773 +0 0.0370 +0 0.0817 +0 0.1128 +0 0.2705 +0 0.1176 +0 0.1031 +0 0.0716 +0 0.5178 +0 0.3105 +0 0.6611 +0 0.2772 +0 0.0993 +0 0.0556 +0 0.2099 +0 0.1134 +0 0.1276 +0 0.0862 +0 0.1253 +0 0.0773 +0 0.1374 +0 0.0707 +0 0.0849 +0 0.0775 +0 0.0795 +0 0.0831 +0 0.0470 +0 0.1049 +0 0.0807 +0 0.0438 +0 0.7283 +0 0.1105 +0 0.0889 +0 0.0708 +0 0.0469 +0 0.0963 +0 0.1197 +0 0.3988 +0 0.0905 +0 0.1384 +0 0.1436 +0 0.2445 +0 0.3189 +0 0.0554 +0 0.0931 +0 0.1537 +0 0.0531 +0 0.0430 +0 0.3338 +0 0.0387 +0 0.2591 +1 0.7657 +0 0.2681 +0 0.0429 +0 0.1601 +0 0.0852 +0 0.0661 +1 0.8738 +0 0.2313 +0 0.0840 +0 0.1372 +0 0.0905 +0 0.1168 +0 0.0863 +0 0.2590 +0 0.0947 +0 0.2517 +0 0.0891 +0 0.0923 +0 0.0857 +0 0.1474 +0 0.1067 +0 0.1211 +0 0.1001 +0 0.0913 +0 0.0641 +0 0.1560 +0 0.0694 +0 0.1084 +0 0.2226 +0 0.0357 +0 0.1770 +1 0.7644 +0 0.1263 +0 0.0904 +0 0.1232 +0 0.2123 +0 0.1218 +0 0.0684 +0 0.2953 +0 0.1078 +0 0.6549 +0 0.0316 +0 0.0748 +0 0.0576 +0 0.0683 +0 0.2034 +0 0.1450 +0 0.0512 +0 0.0985 +0 0.0749 +0 0.1593 +0 0.0804 +0 0.0514 +0 0.0784 +0 0.0973 +0 0.0597 +0 0.0984 +0 0.0772 +0 0.1513 +0 0.2616 +0 0.1892 +0 0.0778 +0 0.2150 +0 0.0773 +0 0.0898 +0 0.0820 +0 0.0888 +0 0.0686 +0 0.2013 +0 0.0649 +0 0.1861 +0 0.0978 +0 0.0946 +0 0.1401 +0 0.0340 +0 0.0588 +0 0.0502 +0 0.0676 +0 0.1020 +0 0.0741 +0 0.0932 +0 0.0760 +0 0.1259 +0 0.0816 +0 0.0891 +0 0.0890 +0 0.0836 +0 0.0858 +0 0.2131 +0 0.0518 +0 0.0821 +0 0.0583 +0 0.1863 +0 0.0516 +0 0.0712 +0 0.0950 +0 0.1573 +0 0.0867 +0 0.1105 +0 0.0626 +0 0.1050 +0 0.0416 +0 0.1387 +0 0.0890 +0 0.1161 +0 0.5251 +0 0.0408 +0 0.1010 +0 0.2275 +0 0.2126 +0 0.0780 +0 0.0978 +0 0.1268 +0 0.0920 +0 0.0828 +0 0.1892 +0 0.0882 +0 0.0922 +0 0.1306 +0 0.0884 +0 0.2074 +0 0.0534 +0 0.2685 +0 0.0869 +0 0.1016 +0 0.0798 +0 0.1760 +0 0.2669 +0 0.1083 +0 0.0578 +0 0.0926 +0 0.0554 +0 0.1924 +0 0.0697 +0 0.3608 +0 0.2682 +0 0.2652 +0 0.1196 +0 0.2101 +0 0.3662 +0 0.1224 +0 0.0638 +0 0.1017 +0 0.1268 +0 0.0887 +0 0.1296 +0 0.0685 +0 0.5310 +0 0.1408 +0 0.1770 +0 0.2106 +0 0.0902 +0 0.2493 +0 0.0732 +0 0.0992 +0 0.0558 +0 0.0905 +1 0.8375 +0 0.1112 +0 0.1936 +0 0.0531 +0 0.0893 +0 0.0942 +0 0.1518 +0 0.0556 +0 0.0561 +0 0.1442 +0 0.4786 +0 0.1964 +0 0.2100 +0 0.0844 +0 0.1410 +0 0.0792 +0 0.0737 +0 0.1233 +0 0.4174 +0 0.3286 +0 0.0671 +0 0.0328 +0 0.1763 +0 0.1417 +0 0.1038 +0 0.2183 +0 0.0677 +0 0.2272 +0 0.1491 +0 0.5795 +0 0.4926 +0 0.0426 +0 0.3557 +0 0.1693 +0 0.0656 +0 0.1197 +0 0.0597 +0 0.2166 +0 0.0723 +0 0.3945 +0 0.1923 +0 0.1502 +0 0.0733 +0 0.2189 +0 0.1156 +0 0.0513 +0 0.0659 +0 0.1880 +0 0.1136 +0 0.3986 +0 0.1050 +0 0.0651 +0 0.1470 +0 0.0850 +0 0.1140 +0 0.1018 +0 0.0604 +0 0.4610 +0 0.0548 +0 0.0597 +0 0.0703 +0 0.0586 +0 0.1733 +0 0.1574 +0 0.0864 +0 0.2324 +0 0.1621 +0 0.0827 +0 0.7430 +0 0.1326 +0 0.0970 +0 0.2674 +0 0.1077 +0 0.1393 +0 0.0786 +0 0.1197 +0 0.0852 +0 0.1801 +0 0.0807 +0 0.1264 +0 0.1018 +0 0.0502 +0 0.1062 +0 0.0621 +0 0.3894 +0 0.2331 +0 0.1497 +0 0.0661 +0 0.2487 +0 0.0555 +0 0.0891 +0 0.0982 +0 0.2132 +0 0.0664 +0 0.1194 +0 0.0828 +0 0.2611 +0 0.0806 +0 0.1018 +0 0.0802 +0 0.0754 +0 0.3293 +0 0.3332 +0 0.1099 +0 0.0432 +0 0.2713 +0 0.1005 +0 0.0937 +0 0.2634 +0 0.2512 +0 0.0786 +0 0.0309 +0 0.1569 +0 0.0958 +0 0.0374 +1 0.8672 +0 0.0755 +0 0.0519 +0 0.5732 +0 0.1278 +0 0.0794 +0 0.0389 +0 0.0524 +0 0.0981 +0 0.1236 +0 0.0491 +0 0.1097 +0 0.0583 +0 0.0679 +0 0.1209 +0 0.0709 +0 0.0638 +0 0.2081 +0 0.0718 +0 0.0370 +0 0.1403 +0 0.1240 +0 0.7035 +0 0.1314 +0 0.0689 +0 0.1328 +0 0.1066 +1 0.8278 +0 0.0897 +0 0.0477 +0 0.7488 +0 0.1022 +0 0.0918 +0 0.0811 +0 0.0685 +0 0.0799 +0 0.0706 +0 0.0734 +0 0.0968 +0 0.0854 +0 0.0667 +0 0.0964 +0 0.0830 +0 0.1371 +0 0.0485 +0 0.2892 +0 0.1283 +0 0.1368 +0 0.0511 +0 0.0635 +0 0.1087 +0 0.7324 +0 0.0574 +0 0.0835 +0 0.0816 +0 0.0475 +0 0.1807 +0 0.1602 +0 0.0623 +0 0.0947 +0 0.1026 +0 0.0788 +0 0.1035 +0 0.2623 +0 0.1027 +0 0.1171 +0 0.0836 +0 0.1430 +0 0.1230 +0 0.0938 +0 0.1235 +0 0.0457 +0 0.1856 +0 0.0812 +0 0.1028 +0 0.0906 +0 0.1682 +0 0.0912 +0 0.1020 +0 0.0489 +0 0.0803 +0 0.0550 +0 0.1286 +0 0.2358 +0 0.1636 +0 0.0689 +0 0.2895 +0 0.0866 +0 0.0558 +0 0.0574 +0 0.0765 +0 0.2506 +0 0.0551 +0 0.1476 +0 0.2040 +0 0.3011 +0 0.0468 +0 0.1162 +0 0.2362 +0 0.2154 +0 0.1742 +1 0.8200 +0 0.1003 +0 0.7167 +0 0.1733 +0 0.0762 +0 0.1927 +0 0.0520 +0 0.1419 +0 0.1429 +0 0.1900 +0 0.1135 +0 0.1581 +0 0.5526 +0 0.0742 +0 0.2918 +0 0.0942 +0 0.0808 +0 0.4315 +0 0.2692 +0 0.1077 +0 0.5858 +0 0.1226 +0 0.0727 +0 0.0846 +0 0.0372 +0 0.0708 +0 0.1478 +0 0.2424 +0 0.7110 +0 0.0953 +0 0.0587 +0 0.0950 +0 0.1772 +0 0.0783 +1 0.7641 +0 0.0754 +0 0.1216 +0 0.0430 +0 0.1098 +0 0.1069 +0 0.4366 +0 0.0850 +0 0.0781 +0 0.0951 +0 0.0458 +0 0.0844 +0 0.1021 +0 0.4061 +0 0.0943 +0 0.0726 +0 0.0960 +0 0.1000 +0 0.0861 +0 0.0740 +0 0.0472 +0 0.1067 +0 0.5305 +0 0.1638 +0 0.1423 +0 0.1248 +0 0.0924 +0 0.0606 +0 0.0804 +0 0.1522 +0 0.1357 +0 0.0654 +0 0.0928 +0 0.0809 +0 0.2635 +0 0.1073 +0 0.1059 +0 0.1079 +0 0.1935 +0 0.1227 +0 0.2594 +0 0.1093 +1 0.8359 +0 0.1927 +0 0.2243 +0 0.3041 +0 0.1261 +0 0.1187 +0 0.1030 +0 0.0614 +0 0.0745 +0 0.1590 +0 0.1574 +0 0.1102 +0 0.0472 +0 0.3184 +0 0.1130 +0 0.1177 +0 0.1511 +0 0.4137 +0 0.0948 +0 0.5442 +0 0.0484 +0 0.0819 +0 0.1155 +0 0.2763 +0 0.0510 +0 0.0431 +0 0.0517 +0 0.0864 +0 0.1825 +0 0.5670 +0 0.0527 +0 0.0351 +0 0.0830 +0 0.1333 +0 0.0445 +0 0.1107 +0 0.0544 +0 0.0704 +0 0.0978 +0 0.1417 +0 0.0799 +0 0.0546 +0 0.2396 +0 0.3897 +0 0.0656 +0 0.0709 +0 0.0346 +0 0.0645 +0 0.0510 +0 0.0740 +0 0.3845 +0 0.1104 +0 0.3670 +0 0.0686 +0 0.2376 +0 0.1695 +0 0.1590 +0 0.5485 +0 0.3371 +0 0.6503 +0 0.0566 +0 0.1322 +0 0.1695 +0 0.2394 +0 0.0707 +0 0.3165 +0 0.5994 +0 0.1455 +0 0.0532 +0 0.2816 +0 0.1509 +0 0.0836 +0 0.1145 +0 0.3915 +0 0.0907 +0 0.0768 +0 0.2040 +0 0.1641 +0 0.2088 +0 0.1109 +0 0.0691 +0 0.0739 +0 0.0775 +0 0.0784 +0 0.1153 +0 0.0450 +0 0.1332 +0 0.0749 +0 0.0774 +0 0.0797 +0 0.1196 +0 0.0961 +0 0.0625 +0 0.0866 +0 0.0630 +0 0.1570 +0 0.1101 +0 0.1331 +0 0.1352 +0 0.4895 +0 0.1735 +0 0.1077 +0 0.1794 +1 0.8258 +0 0.0523 +0 0.0719 +0 0.3233 +0 0.0437 +0 0.1576 +0 0.4393 +0 0.2632 +0 0.3435 +0 0.0805 +0 0.1269 +0 0.1248 +0 0.0962 +0 0.0488 +0 0.1352 +0 0.0674 +0 0.1252 +0 0.0715 +0 0.0459 +0 0.0585 +0 0.0608 +0 0.1005 +0 0.3512 +0 0.1385 +0 0.1381 +0 0.1618 +0 0.2142 +0 0.0506 +0 0.0814 +0 0.0583 +0 0.1115 +0 0.2644 +0 0.1048 +0 0.0455 +0 0.2312 +0 0.2460 +0 0.0526 +0 0.1225 +0 0.2994 +0 0.0996 +0 0.1924 +0 0.3600 +0 0.1151 +0 0.0659 +0 0.1565 +1 0.8372 +0 0.1100 +0 0.3309 +0 0.0916 +0 0.0696 +0 0.1700 +0 0.0789 +0 0.0786 +0 0.2182 +0 0.1082 +0 0.0942 +0 0.0491 +0 0.3451 +0 0.0914 +0 0.5290 +0 0.2195 +0 0.1741 +1 0.8195 +0 0.1200 +0 0.2341 +0 0.2213 +0 0.0602 +0 0.2612 +0 0.0752 +0 0.0840 +0 0.0380 +0 0.0684 +0 0.1504 +0 0.1031 +0 0.2434 +0 0.3291 +0 0.1152 +0 0.3518 +0 0.0586 +0 0.1660 +0 0.1125 +0 0.1197 +0 0.0470 +0 0.1987 +0 0.0980 +0 0.0754 +0 0.0845 +0 0.1526 +0 0.1689 +0 0.1792 +0 0.1523 +0 0.3280 +0 0.1018 +0 0.2284 +0 0.2928 +0 0.0581 +0 0.1208 +0 0.0513 +0 0.2279 +0 0.0706 +1 0.7618 +0 0.3254 +0 0.0773 +0 0.2002 +0 0.1408 +0 0.1215 +0 0.1381 +0 0.0953 +0 0.2327 +0 0.3448 +0 0.0746 +0 0.1030 +0 0.0745 +0 0.0901 +0 0.1772 +0 0.2785 +0 0.1090 +0 0.0928 +0 0.1024 +0 0.1370 +0 0.2326 +0 0.1144 +0 0.2845 +0 0.0329 +0 0.1885 +0 0.1175 +0 0.0977 +0 0.2824 +0 0.0454 +0 0.0958 +0 0.0947 +0 0.2357 +0 0.1432 +0 0.1249 +0 0.0840 +0 0.0726 +0 0.0888 +0 0.7374 +0 0.0548 +0 0.1783 +0 0.0587 +0 0.0576 +0 0.0984 +0 0.1704 +0 0.0972 +0 0.2199 +0 0.0545 +0 0.1744 +0 0.0457 +0 0.0717 +0 0.1292 +0 0.3743 +0 0.0382 +0 0.0724 +0 0.0378 +0 0.3478 +0 0.2741 +0 0.0569 +0 0.2444 +0 0.1310 +0 0.5731 +0 0.1304 +0 0.1085 +0 0.6391 +0 0.1222 +0 0.0727 +0 0.0819 +0 0.2236 +0 0.1816 +0 0.1281 +0 0.1040 +0 0.1390 +0 0.1688 +0 0.0531 +0 0.0744 +0 0.0727 +0 0.1337 +0 0.1002 +0 0.1660 +0 0.2823 +0 0.0935 +0 0.1014 +0 0.0563 +0 0.0750 +0 0.2850 +0 0.1728 +0 0.3525 +0 0.1717 +0 0.0878 +0 0.0949 +0 0.0600 +0 0.0825 +0 0.1102 +0 0.6475 +0 0.0775 +0 0.1471 +0 0.2926 +0 0.0740 +0 0.2788 +0 0.2097 +0 0.0413 +0 0.1243 +0 0.0957 +0 0.1458 +0 0.1102 +0 0.0720 +0 0.0953 +0 0.0692 +0 0.1706 +0 0.0652 +0 0.3893 +1 0.8708 +0 0.0512 +0 0.7263 +0 0.2650 +0 0.3026 +0 0.0762 +0 0.1424 +0 0.0905 +0 0.1087 +0 0.0743 +0 0.1002 +0 0.2802 +0 0.0881 +0 0.4439 +0 0.1390 +0 0.0711 +0 0.1924 +0 0.0536 +0 0.1744 +1 0.7954 +0 0.3747 +0 0.1225 +0 0.1885 +0 0.1396 +0 0.0574 +0 0.0719 +0 0.0570 +1 0.8229 +0 0.1234 +0 0.1239 +0 0.0766 +0 0.1245 +0 0.0333 +0 0.0760 +0 0.1102 +0 0.1991 +0 0.1170 +0 0.1150 +0 0.1241 +0 0.1640 +0 0.1530 +0 0.1876 +0 0.0405 +0 0.0780 +0 0.0770 +0 0.3749 +0 0.0863 +0 0.0554 +0 0.0603 +0 0.1086 +0 0.1396 +0 0.1055 +0 0.1423 +0 0.1491 +0 0.5005 +0 0.1000 +0 0.0588 +0 0.0682 +0 0.1062 +0 0.1570 +0 0.0562 +0 0.1842 +0 0.2471 +0 0.1810 +0 0.0673 +0 0.6177 +0 0.2969 +0 0.3497 +0 0.2447 +0 0.0827 +0 0.1369 +0 0.1294 +0 0.0537 +0 0.5896 +0 0.5901 +0 0.2081 +0 0.0959 +0 0.2702 +0 0.1500 +0 0.5612 +0 0.0984 +0 0.0892 +0 0.0555 +0 0.1015 +0 0.1130 +0 0.7272 +0 0.0841 +0 0.1049 +0 0.6015 +0 0.1410 +0 0.0811 +0 0.1422 +0 0.1478 +0 0.0604 +0 0.1261 +0 0.0457 +0 0.1100 +0 0.1277 +0 0.0926 +0 0.1073 +0 0.2714 +0 0.0889 +0 0.1357 +0 0.2314 +0 0.0514 +0 0.0908 +0 0.0691 +0 0.2519 +0 0.1076 +0 0.1073 +0 0.3622 +0 0.0791 +0 0.0734 +0 0.4247 +0 0.0674 +0 0.0619 +0 0.0864 +0 0.0672 +0 0.2280 +0 0.0824 +0 0.1689 +0 0.1251 +0 0.0707 +0 0.1193 +0 0.1870 +0 0.0690 +0 0.2025 +0 0.1081 +0 0.0832 +0 0.1778 +0 0.7003 +0 0.0819 +0 0.1246 +0 0.2385 +0 0.1712 +0 0.0934 +0 0.2487 +0 0.0487 +0 0.1357 +0 0.1610 +0 0.4402 +0 0.1008 +0 0.0604 +0 0.0893 +0 0.1219 +0 0.1474 +0 0.0894 +0 0.2077 +0 0.0714 +0 0.3750 +0 0.0610 +1 0.8707 +0 0.0406 +0 0.5838 +0 0.1179 +0 0.0534 +0 0.0543 +0 0.0897 +0 0.1412 +0 0.3068 +0 0.2893 +0 0.0607 +0 0.1226 +0 0.3932 +0 0.0744 +0 0.2212 +0 0.0468 +0 0.0873 +0 0.1250 +0 0.0760 +0 0.1736 +0 0.0600 +0 0.1585 +0 0.1610 +0 0.1332 +0 0.1177 +0 0.0545 +0 0.1982 +0 0.0639 +0 0.2494 +0 0.1887 +0 0.1924 +0 0.0829 +0 0.2148 +0 0.0381 +0 0.1272 +0 0.0869 +0 0.1833 +0 0.0631 +0 0.0908 +0 0.1004 +0 0.1483 +0 0.1596 +0 0.1450 +0 0.1564 +0 0.1553 +0 0.0707 +0 0.3278 +0 0.0564 +0 0.1542 +0 0.0705 +0 0.3227 +0 0.1201 +0 0.0964 +0 0.1636 +0 0.1810 +0 0.0464 +0 0.1655 +0 0.1769 +0 0.0502 +0 0.3345 +0 0.0422 +0 0.4957 +0 0.2661 +0 0.0954 +0 0.1350 +0 0.1517 +0 0.0837 +0 0.2895 +0 0.0512 +0 0.1181 +0 0.2294 +0 0.0855 +0 0.1024 +0 0.0944 +0 0.1366 +0 0.0814 +0 0.0677 +0 0.0896 +0 0.0791 +0 0.1043 +0 0.1530 +0 0.4635 +0 0.0346 +0 0.1360 +0 0.1487 +1 0.8443 +0 0.0819 +0 0.1210 +0 0.1854 +0 0.0801 +0 0.0772 +0 0.2066 +0 0.0811 +0 0.0814 +0 0.0510 +0 0.0619 +0 0.1008 +0 0.0482 +0 0.0588 +0 0.0754 +0 0.2065 +0 0.2531 +0 0.0645 +0 0.0585 +0 0.0766 +0 0.0853 +0 0.1084 +0 0.1436 +0 0.2246 +0 0.0817 +0 0.2846 +0 0.1116 +0 0.0862 +0 0.0685 +0 0.2689 +0 0.0567 +0 0.1256 +0 0.1397 +0 0.0437 +0 0.2823 +0 0.3270 +0 0.1007 +0 0.4090 +0 0.0711 +0 0.1680 +0 0.1510 +0 0.2346 +0 0.0593 +0 0.0608 +0 0.0841 +0 0.0479 +0 0.0928 +0 0.0757 +0 0.1067 +0 0.2501 +0 0.3621 +0 0.0800 +0 0.1933 +0 0.0520 +0 0.1939 +0 0.0463 +0 0.1229 +0 0.0765 +0 0.0427 +0 0.0776 +0 0.3014 +0 0.1087 +0 0.1440 +0 0.1985 +0 0.0783 +0 0.0587 +0 0.0642 +0 0.0762 +0 0.7171 +0 0.0403 +0 0.2986 +0 0.2240 +0 0.1340 +0 0.7267 +0 0.0565 +0 0.0329 +0 0.1386 +0 0.5788 +0 0.2464 +0 0.0774 +0 0.1067 +0 0.0750 +0 0.2177 +0 0.1148 +0 0.7155 +0 0.1104 +0 0.0618 +0 0.1189 +0 0.1104 +0 0.2034 +0 0.0592 +0 0.0635 +0 0.0647 +0 0.1277 +0 0.1371 +0 0.0553 +0 0.0539 +0 0.0635 +0 0.2774 +0 0.1175 +0 0.0711 +0 0.1276 +0 0.0732 +0 0.0987 +0 0.0582 +0 0.1860 +0 0.3212 +0 0.2238 +0 0.0479 +0 0.0547 +0 0.1068 +0 0.0725 +0 0.1615 +0 0.4666 +0 0.1275 +0 0.1020 +0 0.0902 +0 0.1131 +0 0.2756 +0 0.0579 +0 0.2509 +0 0.0748 +0 0.1044 +0 0.2057 +0 0.1447 +0 0.0481 +0 0.4510 +0 0.1833 +0 0.1922 +0 0.1282 +0 0.1430 +0 0.3189 +0 0.0980 +0 0.1755 +0 0.2070 +0 0.0580 +0 0.1062 +0 0.0684 +0 0.1640 +0 0.1502 +0 0.1105 +0 0.0893 +0 0.1361 +0 0.1498 +0 0.0470 +0 0.1446 +0 0.0956 +0 0.0382 +0 0.2188 +0 0.1107 +0 0.1146 +0 0.0812 +0 0.1397 +0 0.2623 +0 0.1167 +0 0.1110 +0 0.0648 +0 0.1072 +0 0.1656 +0 0.1792 +0 0.0985 +0 0.0727 +0 0.0471 +0 0.0640 +0 0.1059 +0 0.1822 +0 0.3435 +0 0.4255 +0 0.0503 +0 0.1515 +0 0.1505 +0 0.1741 +0 0.2408 +0 0.1369 +0 0.0797 +0 0.3659 +0 0.0857 +0 0.0502 +0 0.2566 +0 0.2990 +0 0.1091 +0 0.0782 +1 0.8001 +0 0.1349 +0 0.0721 +0 0.2571 +0 0.1984 +0 0.1015 +0 0.1411 +0 0.1235 +0 0.0813 +0 0.1020 +0 0.3022 +0 0.0674 +0 0.0576 +0 0.0940 +0 0.0362 +0 0.1174 +0 0.1239 +0 0.0894 +0 0.1470 +0 0.0744 +0 0.0711 +0 0.0527 +0 0.1981 +0 0.4090 +0 0.1021 +0 0.0837 +0 0.0942 +0 0.1153 +0 0.0774 +0 0.1085 +0 0.1334 +0 0.3207 +0 0.0956 +0 0.0619 +0 0.1741 +0 0.0979 +0 0.1970 +0 0.0806 +0 0.0634 +0 0.0651 +0 0.0810 +0 0.0860 +0 0.0727 +0 0.0975 +0 0.0535 +0 0.1312 +0 0.0477 +0 0.0711 +0 0.1170 +0 0.1688 +0 0.1232 +0 0.0400 +0 0.1587 +0 0.0806 +0 0.6171 +0 0.0670 +0 0.0564 +0 0.0678 +0 0.0655 +0 0.1155 +0 0.1813 +0 0.0818 +0 0.0958 +0 0.1060 +0 0.5994 +0 0.6229 +0 0.0554 +0 0.0873 +0 0.0915 +0 0.0919 +0 0.1256 +0 0.1040 +0 0.0747 +0 0.0847 +0 0.0950 +0 0.4630 +0 0.1209 +0 0.1181 +0 0.2122 +0 0.4159 +0 0.1122 +0 0.0626 +0 0.0786 +0 0.0976 +0 0.1414 +0 0.0605 +0 0.0398 +0 0.0922 +0 0.0965 +0 0.0596 +0 0.0860 +0 0.1042 +0 0.1447 +0 0.2181 +0 0.1023 +0 0.0788 +0 0.1034 +0 0.0696 +0 0.1631 +0 0.0667 +0 0.2097 +0 0.0750 +0 0.0782 +0 0.1286 +0 0.0338 +0 0.1042 +0 0.1113 +0 0.1649 +0 0.0987 +0 0.1355 +0 0.0913 +0 0.0992 +0 0.0451 +0 0.5281 +0 0.1017 +1 0.8332 +0 0.0990 +0 0.0976 +0 0.1776 +0 0.1769 +0 0.1669 +0 0.0735 +0 0.0502 +0 0.0366 +0 0.1090 +0 0.0999 +0 0.0687 +0 0.2531 +0 0.2045 +0 0.0582 +0 0.1282 +0 0.7248 +0 0.0793 +0 0.1463 +0 0.0872 +0 0.0807 +0 0.1572 +0 0.1149 +0 0.0827 +0 0.0608 +0 0.1145 +0 0.0476 +1 0.8206 +0 0.0720 +0 0.1839 +0 0.0832 +0 0.1153 +0 0.0403 +0 0.2560 +1 0.7563 +0 0.0647 +0 0.1616 +0 0.1473 +0 0.1148 +0 0.0951 +0 0.1532 +0 0.0668 +0 0.3475 +0 0.0738 +0 0.0593 +0 0.2126 +0 0.1898 +0 0.1629 +0 0.1476 +0 0.2767 +0 0.1048 +0 0.1022 +0 0.0567 +0 0.1498 +0 0.0616 +0 0.0534 +0 0.1255 +0 0.1600 +0 0.4178 +0 0.0875 +0 0.0934 +0 0.1654 +0 0.0824 +0 0.6234 +0 0.1083 +0 0.1143 +1 0.8233 +0 0.0494 +0 0.1662 +0 0.1615 +0 0.1805 +0 0.0742 +0 0.0608 +0 0.1083 +0 0.0967 +0 0.3106 +0 0.1275 +0 0.1091 +0 0.1302 +0 0.2015 +0 0.0758 +0 0.1552 +0 0.6398 +0 0.2635 +0 0.1193 +0 0.1102 +0 0.1880 +0 0.0667 +0 0.0757 +0 0.0460 +0 0.1166 +0 0.0991 +0 0.1049 +0 0.1705 +0 0.0737 +0 0.0545 +0 0.0836 +0 0.2056 +0 0.1008 +0 0.0894 +0 0.1321 +0 0.1462 +0 0.1032 +0 0.1270 +0 0.1283 +0 0.2256 +0 0.2259 +0 0.0566 +0 0.0886 +0 0.0696 +0 0.1049 +0 0.0945 +0 0.5967 +0 0.2038 +0 0.3724 +0 0.0992 +0 0.1758 +0 0.0391 +0 0.1159 +0 0.0733 +0 0.1553 +0 0.0714 +0 0.1406 +0 0.1225 +0 0.3209 +0 0.0870 +0 0.0845 +0 0.0506 +0 0.6356 +0 0.7094 +0 0.0889 +0 0.0491 +0 0.1710 +0 0.0489 +0 0.0898 +0 0.0456 +0 0.0939 +0 0.0786 +0 0.1101 +0 0.1066 +0 0.0600 +0 0.0513 +0 0.1636 +0 0.1937 +0 0.0744 +0 0.0940 +0 0.0686 +0 0.0949 +0 0.4279 +0 0.1295 +0 0.1639 +0 0.5042 +0 0.1320 +0 0.1826 +0 0.1648 +0 0.0824 +0 0.6612 +0 0.1742 +0 0.0686 +0 0.2569 +0 0.0562 +0 0.2976 +0 0.2267 +0 0.0699 +0 0.2029 +0 0.1812 +0 0.2595 +0 0.3267 +0 0.0687 +0 0.0753 +0 0.0834 +0 0.1111 +0 0.0545 +0 0.2408 +0 0.0852 +0 0.1306 +0 0.0445 +0 0.1265 +0 0.0600 +0 0.0561 +0 0.0867 +0 0.0744 +0 0.0600 +0 0.1336 +0 0.2505 +0 0.1742 +0 0.2055 +0 0.0871 +0 0.0936 +0 0.1021 +0 0.1153 +0 0.3155 +0 0.0916 +0 0.1903 +0 0.1342 +0 0.0503 +0 0.1292 +0 0.1672 +0 0.1633 +0 0.1641 +0 0.1136 +0 0.0985 +0 0.0852 +0 0.1099 +0 0.0870 +0 0.0872 +0 0.0695 +0 0.0684 +0 0.1419 +0 0.0860 +0 0.0347 +0 0.1400 +0 0.0771 +0 0.0709 +1 0.8396 +0 0.0693 +0 0.1309 +0 0.0887 +0 0.0430 +0 0.2825 +0 0.1513 +0 0.1040 +0 0.0969 +0 0.0962 +0 0.0405 +0 0.0458 +0 0.2702 +0 0.1435 +0 0.1008 +0 0.1281 +0 0.0584 +0 0.3453 +0 0.1260 +0 0.3863 +0 0.1804 +0 0.0648 +0 0.0865 +0 0.1366 +0 0.1293 +0 0.1180 +0 0.1547 +0 0.1709 +0 0.0790 +0 0.0911 +0 0.1403 +0 0.1111 +0 0.1485 +0 0.1601 +0 0.1803 +0 0.2743 +0 0.1002 +0 0.1381 +0 0.2118 +0 0.1834 +0 0.1272 +0 0.5559 +0 0.0780 +0 0.0722 +0 0.1992 +1 0.8282 +0 0.0920 +0 0.0966 +0 0.1824 +0 0.2309 +0 0.0688 +0 0.1508 +0 0.1362 +0 0.2019 +0 0.0740 +0 0.0802 +0 0.4334 +0 0.0686 +0 0.0892 +0 0.2150 +0 0.1142 +0 0.1438 +0 0.1231 +0 0.1170 +0 0.0616 +0 0.0999 +0 0.0971 +0 0.0702 +0 0.1090 +0 0.1400 +0 0.1550 +0 0.1274 +0 0.0607 +0 0.2159 +0 0.0687 +0 0.1657 +0 0.1625 +0 0.1547 +0 0.1734 +0 0.0362 +0 0.0716 +0 0.0880 +0 0.0414 +0 0.1613 +0 0.0812 +1 0.7981 +0 0.2277 +0 0.0788 +0 0.1563 +0 0.0929 +0 0.1688 +0 0.0826 +0 0.3631 +0 0.1664 +0 0.0484 +0 0.0730 +0 0.0429 +0 0.3399 +0 0.1133 +0 0.0817 +0 0.0458 +0 0.0906 +0 0.1961 +0 0.0848 +0 0.1362 +0 0.1616 +0 0.2667 +0 0.1001 +0 0.2444 +0 0.2784 +0 0.0861 +0 0.0676 +0 0.2261 +0 0.0869 +0 0.1114 +0 0.1686 +0 0.2426 +1 0.8072 +0 0.0580 +0 0.1502 +0 0.1534 +0 0.0489 +0 0.0963 +0 0.1526 +0 0.1219 +0 0.1335 +0 0.1223 +0 0.0982 +0 0.1015 +0 0.0606 +0 0.0834 +0 0.1098 +0 0.0768 +0 0.0386 +0 0.2578 +1 0.8348 +0 0.2355 +0 0.0622 +0 0.0904 +0 0.0689 +0 0.1084 +0 0.0350 +0 0.1725 +0 0.1849 +0 0.1641 +0 0.0626 +0 0.1443 +0 0.0714 +0 0.1246 +0 0.0988 +0 0.1472 +0 0.2537 +0 0.1054 +0 0.1546 +0 0.1319 +0 0.0662 +0 0.0857 +0 0.0301 +0 0.2221 +0 0.0769 +0 0.0849 +0 0.0734 +0 0.0331 +0 0.2938 +0 0.0868 +0 0.0781 +0 0.1281 +0 0.1801 +1 0.8445 +0 0.1079 +0 0.0997 +0 0.1125 +0 0.0825 +0 0.1216 +0 0.1227 +0 0.0907 +0 0.1769 +0 0.0465 +0 0.0673 +0 0.0477 +0 0.0926 +0 0.5288 +0 0.3422 +0 0.0750 +0 0.0916 +0 0.0510 +0 0.0827 +0 0.1182 +0 0.2525 +0 0.0851 +0 0.0679 +0 0.0467 +0 0.0525 +0 0.2625 +0 0.0603 +0 0.0805 +0 0.0698 +0 0.1073 +0 0.0563 +0 0.0513 +1 0.7831 +0 0.2103 +0 0.1775 +0 0.0682 +0 0.1015 +0 0.0658 +0 0.1891 +0 0.0656 +0 0.2455 +0 0.0714 +0 0.1457 +0 0.1651 +0 0.1151 +0 0.1061 +0 0.1125 +0 0.2722 +0 0.1543 +0 0.1275 +0 0.0888 +0 0.2023 +0 0.1191 +0 0.0531 +0 0.0723 +0 0.1066 +0 0.2524 +0 0.0832 +0 0.1209 +0 0.0918 +0 0.0528 +0 0.3137 +0 0.0407 +0 0.1024 +0 0.0727 +0 0.1540 +0 0.6469 +0 0.1706 +0 0.0467 +0 0.0678 +0 0.2091 +0 0.0694 +0 0.1501 +0 0.0792 +1 0.8677 +0 0.1518 +0 0.0544 +0 0.0809 +0 0.3178 +0 0.1707 +0 0.1010 +0 0.1407 +0 0.0602 +0 0.0808 +0 0.0397 +0 0.0716 +0 0.0799 +0 0.3021 +0 0.2604 +0 0.0517 +0 0.1692 +0 0.2457 +0 0.0706 +0 0.0455 +0 0.2556 +0 0.1193 +0 0.0717 +0 0.0577 +0 0.1775 +0 0.0812 +0 0.1254 +0 0.3130 +0 0.1708 +0 0.0895 +0 0.3188 +0 0.7186 +0 0.1117 +0 0.1112 +0 0.1214 +0 0.2600 +0 0.1336 +0 0.4165 +0 0.0712 +0 0.1407 +0 0.4443 +0 0.1164 +0 0.1531 +0 0.0812 +0 0.1805 +0 0.1632 +0 0.1390 +0 0.0852 +0 0.0375 +0 0.1300 +0 0.1121 +0 0.2884 +0 0.1845 +0 0.1383 +0 0.1883 +0 0.2366 +0 0.3323 +0 0.0775 +0 0.0937 +0 0.0760 +0 0.1474 +0 0.0563 +0 0.0756 +0 0.1259 +0 0.2301 +0 0.1257 +0 0.0931 +0 0.0908 +0 0.4816 +0 0.2505 +0 0.0599 +0 0.1740 +0 0.0395 +0 0.1221 +0 0.0454 +0 0.0851 +0 0.3997 +0 0.0908 +0 0.0912 +0 0.1195 +0 0.2562 +1 0.7960 +0 0.1231 +0 0.3507 +0 0.2214 +0 0.0845 +0 0.0739 +0 0.1106 +0 0.1413 +0 0.0439 +0 0.1291 +0 0.0941 +0 0.1414 +0 0.1700 +0 0.0910 +0 0.0812 +0 0.2450 +0 0.1185 +0 0.0962 +0 0.1528 +0 0.1093 +0 0.1043 +0 0.0623 +0 0.0615 +0 0.0842 +0 0.0930 +0 0.0736 +0 0.0961 +0 0.0698 +0 0.0804 +0 0.1428 +0 0.0564 +0 0.0942 +0 0.6991 +0 0.0343 +0 0.0574 +0 0.0931 +0 0.5057 +0 0.0573 +0 0.1320 +0 0.0528 +0 0.1463 +0 0.0873 +0 0.0966 +0 0.1177 +0 0.2158 +0 0.1001 +0 0.0354 +0 0.0721 +0 0.2863 +0 0.0675 +0 0.2695 +0 0.1063 +0 0.0729 +0 0.0610 +0 0.0815 +0 0.0444 +0 0.0524 +0 0.2609 +0 0.0930 +0 0.0542 +0 0.2448 +0 0.2023 +0 0.0608 +0 0.1746 +0 0.1627 +0 0.2500 +0 0.1145 +0 0.0713 +0 0.4027 +0 0.1146 +0 0.1729 +0 0.1712 +0 0.0932 +0 0.0549 +0 0.0811 +0 0.0977 +0 0.1369 +0 0.0744 +0 0.0856 +0 0.1163 +0 0.1127 +0 0.1469 +0 0.1045 +0 0.0416 +0 0.1355 +0 0.0853 +0 0.0519 +0 0.0680 +0 0.1496 +0 0.1535 +0 0.1012 +0 0.1120 +0 0.1259 +0 0.1176 +0 0.0819 +0 0.0877 +0 0.0648 +0 0.0370 +0 0.0556 +0 0.0749 +0 0.1359 +0 0.2032 +0 0.2016 +0 0.0837 +0 0.0861 +0 0.0619 +0 0.2143 +0 0.1149 +0 0.0945 +0 0.2919 +1 0.8413 +0 0.1911 +0 0.2213 +0 0.4196 +0 0.0761 +0 0.2372 +1 0.8361 +0 0.1428 +0 0.0680 +0 0.0589 +0 0.0833 +0 0.1218 +0 0.1291 +0 0.1518 +0 0.0309 +0 0.1506 +0 0.0516 +0 0.1231 +0 0.2617 +0 0.0557 +0 0.2242 +0 0.1026 +0 0.1608 +0 0.0755 +0 0.0780 +0 0.1037 +0 0.1883 +0 0.4396 +0 0.2064 +0 0.0794 +0 0.0393 +1 0.8718 +0 0.0551 +0 0.0893 +0 0.1155 +0 0.1020 +0 0.1130 +0 0.1467 +0 0.0624 +0 0.0983 +0 0.0899 +0 0.0707 +0 0.1952 +0 0.4204 +0 0.0787 +0 0.0703 +0 0.0953 +0 0.1136 +0 0.0609 +0 0.1388 +0 0.0666 +0 0.0826 +0 0.0675 +0 0.2452 +0 0.1669 +0 0.0795 +0 0.1076 +0 0.6860 +0 0.1699 +0 0.1226 +0 0.0382 +0 0.1424 +0 0.2122 +0 0.0791 +0 0.1055 +0 0.1182 +0 0.1275 +0 0.0822 +0 0.2692 +0 0.3687 +1 0.8006 +0 0.1295 +0 0.5604 +0 0.0790 +0 0.0938 +0 0.1043 +0 0.0896 +0 0.1348 +0 0.0572 +0 0.2976 +0 0.0555 +0 0.1274 +0 0.2224 +0 0.1309 +0 0.0576 +0 0.1291 +0 0.0923 +0 0.5620 +0 0.1061 +0 0.1282 +0 0.0608 +0 0.0733 +0 0.2458 +0 0.0647 +1 0.8431 +0 0.1134 +0 0.1419 +0 0.1246 +0 0.1309 +0 0.0640 +0 0.0380 +0 0.1411 +0 0.0517 +0 0.1126 +0 0.1345 +0 0.1385 +0 0.1635 +0 0.1631 +0 0.0901 +0 0.1083 +0 0.1865 +0 0.1056 +0 0.0759 +0 0.1909 +0 0.0629 +0 0.2044 +0 0.0801 +0 0.0540 +0 0.0944 +0 0.0632 +0 0.1236 +0 0.1746 +0 0.0776 +1 0.7636 +0 0.0949 +0 0.1711 +0 0.1014 +0 0.0437 +0 0.1211 +0 0.0546 +0 0.2389 +0 0.0876 +0 0.0877 +0 0.1232 +0 0.1256 +0 0.4147 +0 0.3183 +0 0.1265 +0 0.0709 +0 0.0577 +0 0.0768 +0 0.1046 +1 0.8484 +0 0.2023 +0 0.6015 +0 0.0657 +0 0.6352 +0 0.0847 +0 0.0660 +0 0.1875 +0 0.0831 +0 0.1456 +0 0.0358 +0 0.1412 +0 0.1912 +0 0.0361 +0 0.0826 +0 0.0764 +0 0.0769 +0 0.0851 +0 0.0510 +0 0.1013 +0 0.0667 +0 0.1560 +0 0.1319 +0 0.0851 +0 0.0818 +0 0.0979 +0 0.1200 +0 0.1139 +0 0.0810 +0 0.0840 +0 0.1396 +0 0.0997 +0 0.1955 +0 0.0658 +0 0.4258 +1 0.7808 +0 0.4545 +0 0.2333 +0 0.0914 +0 0.0439 +0 0.1641 +0 0.3755 +0 0.3729 +0 0.0948 +0 0.0795 +0 0.0890 +0 0.1407 +0 0.0574 +0 0.0399 +0 0.1635 +0 0.0584 +0 0.2360 +0 0.1171 +0 0.1186 +0 0.0846 +0 0.1648 +0 0.1658 +0 0.0391 +0 0.1337 +0 0.1602 +0 0.1750 +0 0.0650 +0 0.0804 +0 0.1021 +0 0.0747 +0 0.1550 +0 0.1160 +0 0.0575 +0 0.1240 +0 0.0784 +0 0.1334 +0 0.1424 +0 0.1301 +0 0.0664 +0 0.4209 +0 0.0592 +0 0.1237 +0 0.1357 +0 0.0873 +0 0.0749 +0 0.0906 +0 0.0440 +0 0.3149 +0 0.1114 +0 0.0846 +0 0.0769 +0 0.1011 +0 0.1261 +0 0.1571 +0 0.0807 +0 0.1436 +0 0.1158 +0 0.0507 +0 0.2169 +0 0.0371 +0 0.3144 +0 0.1195 +0 0.0772 +0 0.1476 +0 0.0655 +0 0.0507 +0 0.1295 +0 0.1524 +0 0.0434 +0 0.0502 +0 0.2092 +0 0.1721 +0 0.0566 +0 0.0500 +1 0.7934 +0 0.0838 +0 0.1764 +0 0.1526 +0 0.0841 +0 0.0465 +0 0.3317 +0 0.5700 +0 0.1011 +0 0.1850 +0 0.0503 +0 0.0745 +0 0.0721 +0 0.1045 +0 0.1480 +0 0.0681 +0 0.1017 +0 0.3745 +0 0.0950 +0 0.1209 +0 0.2051 +0 0.1275 +0 0.2596 +0 0.0478 +0 0.0602 +0 0.0618 +0 0.3234 +0 0.0731 +0 0.0896 +0 0.0460 +0 0.0961 +0 0.0420 +0 0.2172 +0 0.3327 +0 0.0700 +0 0.0846 +0 0.0842 +0 0.1085 +0 0.0783 +0 0.0430 +0 0.0511 +0 0.1866 +0 0.0780 +0 0.0861 +0 0.1312 +0 0.0561 +0 0.0554 +0 0.0751 +0 0.3778 +0 0.1717 +0 0.0956 +0 0.0864 +0 0.0407 +0 0.0876 +0 0.3286 +0 0.2213 +0 0.1392 +0 0.0856 +0 0.1161 +0 0.2142 +0 0.1988 +0 0.0963 +0 0.1351 +0 0.1867 +0 0.0559 +0 0.1122 +0 0.1296 +0 0.0646 +0 0.0758 +0 0.1280 +0 0.1115 +0 0.0585 +0 0.1286 +0 0.1209 +0 0.1636 +0 0.6583 +0 0.1248 +0 0.1135 +0 0.0962 +0 0.1439 +1 0.7711 +0 0.1466 +0 0.0963 +1 0.8194 +0 0.1996 +0 0.1048 +0 0.1184 +0 0.2016 +0 0.2955 +0 0.1385 +0 0.0991 +0 0.0679 +0 0.1264 +0 0.1427 +0 0.2129 +0 0.0478 +0 0.1111 +0 0.1232 +0 0.1149 +0 0.6347 +0 0.0539 +0 0.1176 +0 0.0584 +0 0.0559 +0 0.7185 +0 0.1116 +0 0.0705 +0 0.0593 +0 0.0654 +0 0.0712 +0 0.2152 +0 0.0329 +0 0.0800 +0 0.2231 +0 0.0490 +0 0.0347 +0 0.1500 +0 0.0732 +0 0.1050 +0 0.1412 +0 0.2026 +0 0.1777 +0 0.0737 +0 0.1246 +0 0.1997 +0 0.0477 +0 0.0567 +0 0.0667 +0 0.1086 +0 0.0603 +0 0.1673 +0 0.0769 +0 0.0312 +0 0.0545 +0 0.0747 +0 0.0612 +0 0.1161 +0 0.1039 +0 0.1303 +0 0.1261 +0 0.0543 +0 0.0729 +0 0.0912 +0 0.1836 +0 0.0606 +0 0.0406 +0 0.2069 +0 0.0491 +0 0.0932 +0 0.0569 +0 0.0463 +1 0.7772 +0 0.0700 +0 0.1275 +0 0.1409 +0 0.1053 +0 0.5610 +0 0.0663 +0 0.0594 +0 0.1596 +0 0.0913 +0 0.0498 +0 0.3128 +1 0.8033 +0 0.1571 +0 0.0693 +0 0.0493 +0 0.0921 +0 0.0614 +0 0.0677 +0 0.0782 +0 0.0925 +0 0.1829 +0 0.0695 +1 0.7715 +1 0.7894 +0 0.1014 +0 0.0835 +0 0.0587 +0 0.0389 +0 0.1069 +0 0.0404 +0 0.1345 +0 0.1379 +0 0.1991 +0 0.0347 +0 0.0931 +1 0.8111 +0 0.1398 +0 0.1293 +0 0.1912 +0 0.1091 +0 0.0979 +0 0.1433 +0 0.2240 +0 0.1021 +0 0.1338 +0 0.0956 +0 0.1607 +0 0.0501 +0 0.0842 +0 0.2250 +0 0.0906 +0 0.1630 +0 0.1294 +0 0.0955 +0 0.0587 +0 0.0855 +0 0.1199 +0 0.0852 +0 0.1246 +0 0.0513 +0 0.1407 +0 0.0995 +0 0.0669 +0 0.1142 +0 0.1277 +0 0.2406 +0 0.0845 +0 0.0988 +0 0.1109 +0 0.1390 +0 0.2160 +0 0.0918 +0 0.5085 +0 0.4578 +0 0.0579 +0 0.2126 +0 0.3081 +0 0.0728 +0 0.1346 +0 0.0588 +0 0.1049 +0 0.6323 +0 0.1740 +0 0.1861 +0 0.3547 +0 0.1355 +0 0.0853 +0 0.1048 +0 0.2538 +0 0.0512 +0 0.1018 +0 0.0607 +0 0.0820 +0 0.1147 +0 0.0737 +0 0.1248 +0 0.1353 +0 0.2380 +0 0.0946 +0 0.0758 +0 0.1685 +0 0.1627 +0 0.1669 +0 0.4730 +0 0.1309 +0 0.1709 +0 0.2567 +0 0.0730 +0 0.1741 +0 0.1008 +0 0.0613 +0 0.1029 +0 0.1707 +0 0.1184 +0 0.0763 +1 0.8335 +0 0.5526 +0 0.1763 +0 0.1328 +0 0.1281 +0 0.2099 +0 0.3072 +0 0.1734 +0 0.1179 +0 0.1012 +0 0.0443 +0 0.0609 +0 0.1065 +0 0.0983 +0 0.3208 +1 0.8420 +0 0.0910 +0 0.1671 +0 0.3635 +0 0.1397 +0 0.0792 +1 0.7837 +0 0.1343 +0 0.2060 +0 0.0998 +0 0.1002 +0 0.0953 +0 0.1627 +0 0.1059 +0 0.2638 +0 0.0403 +0 0.0691 +0 0.3386 +0 0.0720 +0 0.0546 +0 0.5769 +0 0.7201 +0 0.3775 +0 0.1782 +0 0.1333 +0 0.2031 +0 0.1501 +0 0.3353 +1 0.8553 +0 0.1170 +0 0.1871 +1 0.8757 +0 0.0681 +0 0.0761 +0 0.1603 +0 0.1942 +0 0.0585 +0 0.0975 +0 0.1089 +0 0.1304 +0 0.0868 +0 0.2165 +0 0.0612 +0 0.1675 +0 0.0695 +0 0.3222 +0 0.0994 +0 0.0687 +0 0.1546 +0 0.0539 +0 0.2401 +0 0.1117 +0 0.0664 +0 0.0577 +0 0.0691 +0 0.2465 +0 0.2978 +0 0.1016 +0 0.1038 +0 0.1292 +0 0.0915 +0 0.1600 +0 0.0382 +0 0.1263 +0 0.0816 +0 0.6110 +1 0.8262 +0 0.1112 +0 0.4802 +0 0.0524 +0 0.0591 +0 0.0767 +0 0.0384 +0 0.0545 +0 0.4400 +0 0.0511 +0 0.0720 +0 0.1265 +0 0.2424 +0 0.0798 +0 0.2883 +0 0.1469 +0 0.0852 +0 0.0802 +0 0.3049 +0 0.0862 +0 0.2814 +0 0.3278 +0 0.0779 +0 0.1031 +0 0.2077 +0 0.0612 +0 0.1483 +0 0.0383 +0 0.0693 +0 0.0340 +0 0.1854 +0 0.0655 +0 0.1519 +0 0.0942 +0 0.0984 +0 0.0416 +0 0.0728 +0 0.6035 +0 0.0486 +0 0.0611 +0 0.0962 +0 0.1394 +0 0.1397 +0 0.0731 +0 0.0625 +0 0.5161 +0 0.0534 +0 0.0661 +0 0.0668 +0 0.0870 +0 0.1195 +0 0.2150 +0 0.2844 +0 0.0683 +0 0.0380 +0 0.0804 +0 0.1348 +0 0.0656 +0 0.1700 +0 0.2294 +0 0.2903 +0 0.0419 +0 0.1537 +0 0.0712 +0 0.2240 +0 0.0492 +0 0.1218 +0 0.0361 +0 0.1044 +0 0.0815 +0 0.0728 +0 0.5471 +0 0.1810 +0 0.1032 +0 0.0947 +0 0.2358 +0 0.0994 +0 0.0807 +0 0.2211 +0 0.0374 +0 0.0781 +0 0.0505 +0 0.1986 +0 0.3591 +0 0.2495 +0 0.0523 +0 0.0466 +0 0.0890 +0 0.0794 +0 0.0743 +0 0.0871 +0 0.2395 +0 0.1857 +0 0.0782 +0 0.1623 +0 0.2202 +0 0.1132 +0 0.1970 +0 0.0709 +0 0.0512 +0 0.0467 +0 0.1148 +0 0.1369 +0 0.0811 +0 0.1236 +0 0.0997 +0 0.0535 +0 0.0908 +0 0.0945 +0 0.0975 +0 0.1375 +0 0.0427 +1 0.8353 +0 0.1774 +0 0.1621 +0 0.1782 +0 0.0680 +0 0.0960 +0 0.2691 +1 0.8495 +0 0.0374 +0 0.0913 +0 0.0886 +0 0.0430 +0 0.0735 +0 0.1357 +0 0.1030 +0 0.0972 +0 0.2043 +0 0.1730 +0 0.0990 +0 0.1665 +0 0.1009 +0 0.0948 +0 0.0476 +0 0.4053 +0 0.1329 +0 0.0508 +0 0.1292 +0 0.2003 +0 0.0555 +0 0.1216 +0 0.0736 +0 0.6773 +0 0.0645 +0 0.0628 +0 0.1458 +0 0.4686 +0 0.0396 +0 0.1042 +0 0.0549 +0 0.0755 +0 0.0664 +0 0.0629 +0 0.2377 +0 0.1624 +0 0.1936 +0 0.1223 +0 0.0932 +0 0.1950 +0 0.0716 +0 0.5042 +0 0.2032 +0 0.1605 +0 0.3053 +0 0.1153 +0 0.1034 +0 0.0691 +0 0.1453 +0 0.1157 +0 0.3065 +0 0.1369 +0 0.2926 +0 0.1235 +0 0.1194 +0 0.0485 +0 0.1055 +0 0.1108 +0 0.4547 +0 0.6597 +0 0.1728 +0 0.0564 +0 0.0559 +0 0.1228 +0 0.0685 +0 0.0792 +0 0.1455 +0 0.1073 +0 0.1180 +0 0.2353 +0 0.1354 +0 0.1182 +0 0.2925 +0 0.1853 +0 0.0563 +0 0.0724 +0 0.7387 +0 0.0932 +0 0.1079 +0 0.1386 +0 0.1739 +0 0.1368 +0 0.5685 +0 0.1581 +0 0.1120 +0 0.1108 +0 0.1633 +0 0.0867 +0 0.1133 +0 0.0792 +0 0.3223 +0 0.0977 +0 0.0745 +0 0.0775 +0 0.1460 +0 0.0996 +0 0.0608 +0 0.0584 +0 0.1994 +0 0.0548 +0 0.4941 +0 0.0949 +0 0.1531 +0 0.1514 +0 0.1505 +0 0.1441 +0 0.0719 +0 0.1249 +0 0.1504 +0 0.1343 +0 0.0665 +0 0.1705 +0 0.0575 +0 0.0885 +0 0.0585 +0 0.0893 +0 0.1358 +0 0.1465 +0 0.1145 +0 0.0766 +0 0.1686 +0 0.0998 +0 0.1583 +0 0.0492 +0 0.3267 +0 0.7305 +0 0.0500 +0 0.3074 +0 0.0494 +0 0.1131 +0 0.0565 +0 0.0423 +0 0.2670 +0 0.0940 +0 0.0533 +0 0.0890 +0 0.4189 +0 0.1714 +0 0.0518 +0 0.1453 +0 0.1589 +0 0.0813 +0 0.1169 +0 0.6807 +0 0.1074 +0 0.1261 +0 0.2347 +0 0.0557 +0 0.1739 +0 0.0973 +0 0.1866 +0 0.0751 +0 0.1978 +0 0.1490 +0 0.0553 +0 0.2421 +0 0.1187 +0 0.0905 +0 0.0821 +0 0.1202 +0 0.1374 +0 0.0917 +0 0.0572 +0 0.1170 +0 0.1482 +0 0.0628 +0 0.1860 +0 0.5244 +0 0.0720 +0 0.1142 +0 0.7250 +0 0.4410 +0 0.4076 +0 0.1779 +0 0.3672 +0 0.0865 +0 0.0756 +0 0.0730 +0 0.1272 +0 0.0517 +0 0.0792 +0 0.1706 +0 0.0723 +0 0.0742 +0 0.0768 +0 0.0703 +0 0.1520 +0 0.1110 +0 0.1451 +0 0.0833 +0 0.1801 +0 0.0940 +0 0.0485 +0 0.1266 +0 0.1416 +0 0.2055 +0 0.0730 +0 0.1937 +0 0.1534 +0 0.1124 +0 0.0440 +0 0.0851 +0 0.3546 +0 0.1506 +0 0.1287 +0 0.1415 +0 0.2629 +0 0.1859 +0 0.1831 +0 0.6688 +0 0.0931 +0 0.3750 +0 0.0475 +0 0.1460 +0 0.3786 +0 0.0674 +0 0.0452 +1 0.8129 +0 0.0503 +0 0.1290 +0 0.0452 +0 0.3188 +0 0.0533 +0 0.0842 +0 0.0929 +0 0.2044 +0 0.0969 +0 0.0984 +0 0.1115 +0 0.2283 +0 0.0486 +0 0.0453 +0 0.1070 +0 0.1850 +0 0.1934 +0 0.0448 +0 0.1500 +0 0.7035 +0 0.0697 +0 0.1835 +0 0.3900 +0 0.1332 +0 0.1057 +0 0.0934 +0 0.0870 +0 0.0455 +0 0.1009 +0 0.2648 +0 0.0524 +0 0.1428 +0 0.1571 +0 0.0522 +0 0.0964 +0 0.1044 +0 0.0949 +0 0.4664 +0 0.1073 +0 0.0590 +0 0.0591 +0 0.0579 +0 0.0611 +0 0.0756 +0 0.1392 +0 0.2962 +0 0.0592 +0 0.0953 +0 0.3378 +0 0.1147 +0 0.0568 +0 0.0876 +0 0.1419 +0 0.3197 +0 0.3257 +0 0.0838 +0 0.0911 +0 0.0685 +0 0.0836 +0 0.6930 +0 0.0923 +0 0.1929 +0 0.0544 +0 0.0799 +0 0.0587 +0 0.0771 +0 0.0853 +0 0.0642 +0 0.1511 +0 0.0492 +0 0.1561 +0 0.0543 +0 0.0687 +0 0.1944 +0 0.0669 +0 0.1622 +0 0.1271 +0 0.1053 +0 0.0377 +0 0.1106 +0 0.0920 +0 0.0579 +0 0.2281 +0 0.1369 +0 0.2686 +0 0.0606 +0 0.0983 +0 0.0809 +0 0.0508 +0 0.1287 +0 0.2598 +0 0.1001 +0 0.1364 +0 0.0870 +0 0.0746 +0 0.1151 +0 0.0884 +0 0.0509 +0 0.0950 +0 0.0983 +0 0.0943 +0 0.2905 +0 0.1068 +0 0.1204 +0 0.1296 +0 0.0994 +0 0.1577 +0 0.0416 +0 0.1944 +0 0.5194 +0 0.1763 +0 0.0621 +0 0.2757 +0 0.0339 +0 0.0719 +0 0.1109 +0 0.0640 +0 0.0621 +0 0.0610 +0 0.1413 +0 0.1100 +0 0.0876 +0 0.0534 +0 0.2050 +0 0.0932 +0 0.1214 +0 0.0612 +0 0.2839 +0 0.0402 +0 0.1104 +0 0.0814 +0 0.0614 +0 0.2429 +0 0.0618 +0 0.0475 +0 0.0478 +0 0.0542 +0 0.1845 +0 0.1335 +0 0.1456 +0 0.6754 +0 0.0573 +0 0.1407 +0 0.0626 +0 0.2355 +0 0.1029 +0 0.0375 +0 0.0615 +0 0.2983 +0 0.0811 +0 0.5477 +0 0.0785 +0 0.6367 +0 0.1132 +0 0.1151 +0 0.2175 +0 0.0731 +0 0.5392 +0 0.2526 +0 0.0733 +0 0.0755 +0 0.1684 +0 0.0584 +0 0.0869 +0 0.0882 +1 0.7675 +0 0.0451 +0 0.0577 +0 0.1277 +0 0.1708 +0 0.0955 +0 0.1764 +0 0.0908 +0 0.0751 +0 0.0964 +0 0.0874 +0 0.1134 +0 0.1080 +0 0.0803 +0 0.0912 +0 0.2987 +0 0.1693 +0 0.0483 +0 0.0978 +0 0.1992 +0 0.0707 +0 0.2649 +0 0.0747 +0 0.2531 +0 0.0559 +0 0.0714 +0 0.0717 +0 0.0732 +0 0.0366 +0 0.3498 +0 0.3356 +0 0.0805 +0 0.2133 +0 0.1685 +0 0.0669 +0 0.1468 +0 0.2112 +0 0.1940 +0 0.2810 +0 0.1726 +0 0.0556 +0 0.5625 +0 0.1397 +0 0.0717 +0 0.0651 +0 0.0625 +0 0.1195 +0 0.0690 +0 0.0921 +0 0.1156 +0 0.0574 +0 0.3928 +0 0.1302 +0 0.1340 +0 0.0574 +0 0.0895 +0 0.1693 +0 0.0635 +0 0.0825 +0 0.0679 +0 0.1868 +0 0.0693 +0 0.1640 +0 0.0350 +0 0.0599 +0 0.0491 +0 0.2597 +0 0.0536 +0 0.0804 +0 0.0509 +0 0.0656 +0 0.0877 +0 0.0553 +0 0.1494 +0 0.0857 +0 0.1943 +0 0.0990 +0 0.1525 +0 0.0787 +0 0.1357 +0 0.1142 +0 0.0625 +0 0.1710 +0 0.0743 +0 0.0998 +0 0.0587 +0 0.0670 +0 0.1823 +0 0.1283 +0 0.1802 +0 0.0667 +0 0.1809 +0 0.0774 +0 0.2862 +0 0.6742 +0 0.0921 +0 0.0853 +0 0.0952 +0 0.1128 +0 0.0903 +0 0.3535 +0 0.0966 +0 0.1414 +0 0.1505 +0 0.2467 +0 0.4017 +0 0.1150 +0 0.0368 +0 0.2640 +0 0.1022 +0 0.0955 +0 0.0509 +0 0.1534 +0 0.1141 +0 0.0345 +0 0.0632 +0 0.0509 +0 0.0780 +0 0.0689 +0 0.1122 +0 0.0447 +0 0.1551 +0 0.1360 +0 0.1138 +0 0.2445 +0 0.0436 +0 0.1876 +0 0.0757 +0 0.0862 +0 0.1731 +0 0.1325 +0 0.0634 +0 0.1289 +0 0.1294 +0 0.1098 +0 0.0622 +0 0.1848 +0 0.1244 +0 0.0982 +0 0.3009 +0 0.1674 +0 0.1864 +0 0.2349 +0 0.0868 +0 0.2274 +0 0.1154 +0 0.0882 +0 0.1104 +0 0.0863 +0 0.0891 +0 0.0943 +0 0.0994 +0 0.0978 +0 0.0758 +0 0.1563 +0 0.0957 +0 0.1596 +0 0.2009 +0 0.1539 +0 0.1140 +0 0.0715 +0 0.0520 +0 0.1676 +0 0.1885 +0 0.3123 +0 0.0866 +0 0.0886 +0 0.1650 +0 0.1010 +0 0.1030 +0 0.0918 +0 0.7456 +0 0.0507 +0 0.1520 +0 0.0563 +0 0.1069 +0 0.0955 +0 0.1492 +0 0.2927 +0 0.0694 +0 0.1381 +0 0.0619 +0 0.1331 +0 0.0722 +0 0.0990 +0 0.1232 +0 0.1737 +0 0.1399 +0 0.0693 +0 0.1160 +0 0.1097 +0 0.0874 +0 0.1740 +0 0.1548 +0 0.0515 +0 0.2671 +0 0.0787 +0 0.1163 +0 0.1189 +0 0.0375 +0 0.0711 +0 0.0813 +0 0.1147 +0 0.0926 +0 0.0892 +0 0.0955 +0 0.0865 +0 0.0526 +0 0.3691 +0 0.1712 +0 0.3401 +0 0.1481 +0 0.0535 +0 0.0783 +0 0.0450 +0 0.0897 +0 0.2293 +0 0.1588 +0 0.0592 +0 0.0765 +0 0.0937 +0 0.1414 +0 0.0630 +1 0.8242 +0 0.3807 +0 0.2421 +0 0.7395 +0 0.0592 +0 0.6712 +0 0.0932 +0 0.1912 +0 0.0436 +0 0.0691 +0 0.1979 +0 0.2433 +0 0.1874 +0 0.1119 +0 0.0573 +0 0.0420 +0 0.1579 +0 0.0581 +0 0.0966 +0 0.0534 +0 0.0535 +0 0.2197 +0 0.1642 +0 0.1753 +0 0.0487 +0 0.0467 +0 0.0766 +0 0.1952 +0 0.2876 +0 0.2685 +0 0.0373 +0 0.1087 +0 0.1109 +0 0.0788 +0 0.1283 +1 0.7917 +0 0.1731 +0 0.2163 +0 0.1336 +0 0.1150 +0 0.0645 +0 0.4879 +0 0.0502 +0 0.1136 +0 0.0897 +0 0.1103 +0 0.0704 +0 0.0508 +0 0.1871 +0 0.1142 +0 0.0387 +0 0.1264 +0 0.1304 +0 0.2183 +0 0.1123 +0 0.1224 +0 0.7079 +0 0.0972 +0 0.1049 +0 0.5277 +0 0.0294 +0 0.1549 +0 0.0343 +0 0.1913 +0 0.2735 +0 0.3946 +0 0.0592 +0 0.1232 +0 0.0897 +0 0.0610 +0 0.1603 +0 0.0942 +0 0.1155 +0 0.1113 +0 0.0947 +0 0.1626 +0 0.0432 +0 0.0505 +0 0.0744 +0 0.0530 +0 0.2478 +0 0.0818 +0 0.0549 +0 0.0590 +0 0.1343 +0 0.1145 +0 0.1053 +0 0.2201 +0 0.0660 +0 0.0592 +0 0.0602 +0 0.0357 +0 0.0948 +0 0.1189 +0 0.1400 +0 0.0705 +0 0.2990 +0 0.2680 +0 0.2057 +0 0.1396 +0 0.0995 +0 0.0442 +0 0.1240 +0 0.1734 +0 0.0803 +0 0.0877 +0 0.4959 +0 0.2470 +0 0.1853 +0 0.1600 +0 0.5179 +0 0.1333 +0 0.2016 +0 0.0740 +0 0.4939 +0 0.1997 +0 0.0724 +0 0.2865 +0 0.1252 +0 0.6586 +0 0.5707 +0 0.0545 +0 0.4622 +0 0.0566 +0 0.2785 +0 0.1083 +0 0.0538 +0 0.1297 +0 0.1811 +0 0.0795 +0 0.0989 +0 0.1048 +0 0.1117 +0 0.0489 +0 0.1008 +0 0.0989 +0 0.1001 +0 0.0872 +0 0.1844 +0 0.1164 +0 0.0918 +0 0.0579 +0 0.2552 +0 0.0466 +0 0.1049 +1 0.7934 +0 0.0892 +0 0.1393 +0 0.2803 +0 0.0469 +0 0.0904 +0 0.1219 +0 0.2150 +0 0.0989 +0 0.0498 +0 0.1481 +0 0.0365 +0 0.0894 +0 0.0784 +0 0.0704 +0 0.1941 +0 0.0462 +0 0.0717 +0 0.2423 +0 0.0807 +0 0.1307 +0 0.0515 +0 0.0502 +0 0.1761 +0 0.1186 +0 0.0785 +0 0.0642 +0 0.0664 +0 0.6664 +0 0.2608 +0 0.1652 +0 0.1471 +0 0.5559 +0 0.2042 +0 0.0566 +0 0.6075 +1 0.8534 +0 0.1235 +0 0.0685 +0 0.3764 +0 0.1047 +0 0.2037 +0 0.1641 +0 0.5628 +0 0.0989 +0 0.2686 +0 0.1325 +0 0.1179 +0 0.1290 +0 0.0902 +0 0.3136 +0 0.1130 +0 0.1816 +0 0.5646 +0 0.1685 +0 0.0770 +0 0.1612 +0 0.0750 +0 0.1231 +0 0.1468 +0 0.0757 +0 0.0450 +0 0.1937 +0 0.0676 +0 0.5308 +1 0.7772 +0 0.1035 +0 0.1066 +0 0.0931 +0 0.0908 +0 0.1314 +0 0.2163 +0 0.0905 +0 0.0701 +0 0.1033 +0 0.1681 +0 0.1737 +0 0.1983 +0 0.0774 +0 0.0708 +0 0.1109 +0 0.1703 +0 0.0471 +0 0.2168 +0 0.0485 +0 0.3319 +0 0.6772 +0 0.0717 +0 0.0450 +0 0.0858 +0 0.1692 +0 0.1319 +0 0.0607 +0 0.0464 +0 0.0929 +0 0.2173 +0 0.0850 +0 0.0676 +0 0.0879 +0 0.1469 +0 0.0808 +0 0.0755 +0 0.0947 +0 0.2320 +0 0.0753 +0 0.0753 +0 0.1324 +0 0.0361 +0 0.1026 +0 0.0889 +0 0.1003 +0 0.0375 +0 0.2958 +0 0.1175 +0 0.0846 +0 0.0760 +0 0.1234 +0 0.1723 +0 0.0995 +0 0.0633 +0 0.1505 +0 0.1700 +0 0.1112 +0 0.0636 +0 0.2549 +0 0.2203 +0 0.0767 +0 0.0453 +0 0.0809 +0 0.1793 +0 0.2345 +0 0.1695 +0 0.0426 +0 0.0786 +0 0.0847 +0 0.0527 +0 0.0719 +0 0.1653 +0 0.1624 +0 0.0463 +0 0.1001 +0 0.2356 +0 0.0784 +0 0.1172 +0 0.0881 +0 0.1033 +0 0.0596 +0 0.0701 +0 0.0801 +0 0.0832 +0 0.0356 +0 0.0390 +0 0.0877 +0 0.0409 +0 0.0652 +0 0.0644 +0 0.4133 +0 0.1690 +0 0.2387 +0 0.0589 +0 0.1330 +0 0.1737 +0 0.0881 +0 0.1267 +0 0.1628 +0 0.1072 +0 0.0685 +0 0.0613 +0 0.0499 +0 0.0511 +0 0.0469 +0 0.0587 +0 0.2157 +0 0.1071 +0 0.3369 +0 0.0906 +0 0.7271 +0 0.0590 +0 0.0495 +0 0.0725 +0 0.1029 +0 0.0647 +0 0.1293 +0 0.1251 +0 0.1895 +0 0.1172 +0 0.5541 +0 0.0695 +0 0.2354 +0 0.0822 +0 0.1148 +0 0.0596 +0 0.2612 +0 0.0968 +0 0.0483 +0 0.1666 +0 0.0962 +0 0.0742 +0 0.0566 +0 0.0809 +0 0.0439 +0 0.1141 +0 0.0683 +0 0.0768 +0 0.1091 +0 0.0863 +0 0.0612 +0 0.2241 +0 0.1703 +0 0.0634 +0 0.1660 +0 0.0640 +0 0.0712 +0 0.0447 +0 0.0632 +0 0.1718 +0 0.1687 +0 0.1017 +0 0.1373 +0 0.0577 +0 0.0747 +0 0.0554 +0 0.1193 +0 0.0901 +0 0.0917 +0 0.0485 +0 0.1252 +0 0.5064 +0 0.1053 +0 0.1495 +0 0.0735 +0 0.1351 +0 0.0443 +0 0.1868 +0 0.2137 +0 0.0414 +0 0.0662 +0 0.1636 +0 0.1476 +0 0.1046 +0 0.0309 +0 0.1360 +0 0.0824 +0 0.1421 +0 0.1531 +0 0.0710 +0 0.0972 +0 0.1973 +0 0.0891 +0 0.0800 +0 0.2224 +0 0.1421 +0 0.1957 +0 0.0543 +0 0.0682 +0 0.0664 +0 0.1958 +0 0.0709 +0 0.0777 +0 0.4214 +0 0.2388 +0 0.0977 +0 0.0611 +0 0.1429 +0 0.2756 +0 0.0504 +0 0.0458 +1 0.2718 +0 0.0853 +0 0.0445 +0 0.1109 +0 0.0975 +0 0.3258 +0 0.1476 +0 0.0792 +1 0.8882 +0 0.0532 +0 0.3049 +0 0.0877 +0 0.0958 +0 0.0504 +0 0.0871 +0 0.4136 +0 0.1496 +0 0.0708 +0 0.4359 +0 0.1309 +0 0.0455 +0 0.1034 +0 0.0385 +0 0.1511 +0 0.0571 +0 0.2574 +0 0.2303 +0 0.1442 +0 0.0694 +0 0.1121 +0 0.1498 +0 0.2601 +0 0.0840 +0 0.0830 +0 0.0514 +0 0.1415 +0 0.1302 +0 0.0398 +0 0.0573 +0 0.1032 +0 0.0678 +0 0.1331 +0 0.0777 +0 0.0913 +0 0.0883 +0 0.1060 +0 0.3329 +0 0.1265 +0 0.2321 +0 0.1387 +0 0.0837 +0 0.0873 +0 0.1562 +0 0.1250 +0 0.0523 +0 0.0533 +0 0.0635 +0 0.1371 +0 0.1358 +0 0.1364 +0 0.1661 +0 0.1703 +0 0.0919 +0 0.1120 +0 0.1027 +0 0.0756 +0 0.0376 +0 0.1576 +0 0.0758 +0 0.2806 +0 0.0771 +0 0.0509 +0 0.1988 +0 0.2104 +0 0.0747 +0 0.2764 +0 0.0537 +0 0.1708 +0 0.0607 +0 0.0675 +0 0.0814 +0 0.0887 +0 0.1547 +0 0.0405 +0 0.1361 +0 0.0950 +0 0.1997 +0 0.0692 +1 0.7694 +0 0.5911 +0 0.2149 +0 0.0658 +0 0.1041 +0 0.0972 +0 0.1142 +0 0.6600 +0 0.0929 +0 0.1100 +0 0.1331 +0 0.1520 +0 0.0663 +0 0.0788 +0 0.0695 +0 0.1250 +0 0.0325 +0 0.1239 +0 0.0970 +0 0.1165 +0 0.0847 +0 0.1163 +0 0.1940 +0 0.0551 +0 0.0902 +0 0.0897 +0 0.0470 +0 0.3296 +0 0.0566 +0 0.0728 +0 0.0930 +0 0.1087 +0 0.1024 +1 0.8450 +0 0.5101 +0 0.1234 +0 0.1287 +0 0.1604 +0 0.1494 +0 0.1024 +0 0.1384 +0 0.1417 +0 0.0488 +0 0.1920 +0 0.1014 +0 0.1514 +0 0.1379 +0 0.0712 +0 0.0549 +0 0.2211 +0 0.2940 +0 0.2686 +0 0.1517 +0 0.1292 +0 0.1634 +0 0.0546 +0 0.0792 +0 0.1010 +0 0.2968 +0 0.1184 +0 0.0582 +0 0.2102 +0 0.0929 +0 0.0926 +0 0.2791 +0 0.1703 +0 0.1376 +0 0.0854 +0 0.1014 +0 0.0580 +0 0.0627 +0 0.1195 +0 0.0655 +0 0.0493 +0 0.1139 +0 0.0394 +0 0.3553 +0 0.0850 +0 0.1092 +0 0.2850 +0 0.0482 +0 0.7122 +0 0.0559 +0 0.3526 +0 0.1764 +0 0.0865 +0 0.1008 +0 0.0644 +0 0.0694 +0 0.0766 +0 0.1667 +0 0.0857 +0 0.0714 +0 0.2168 +0 0.1140 +0 0.1184 +0 0.0425 +0 0.3127 +0 0.0627 +0 0.0479 +0 0.0467 +0 0.2858 +0 0.1955 +0 0.1045 +0 0.1483 +0 0.1013 +0 0.0550 +0 0.0616 +0 0.3396 +0 0.0340 +0 0.0492 +0 0.0877 +0 0.1587 +0 0.1296 +0 0.0909 +1 0.7896 +1 0.8561 +1 0.7927 +0 0.3387 +0 0.0682 +0 0.0453 +0 0.1387 +0 0.2681 +0 0.1730 +0 0.3043 +0 0.1640 +0 0.1606 +0 0.0570 +0 0.0409 +0 0.0766 +0 0.0986 +0 0.1262 +0 0.1219 +0 0.1432 +0 0.7316 +0 0.1117 +0 0.0387 +0 0.3839 +0 0.2987 +0 0.0777 +0 0.0674 +0 0.1095 +0 0.3600 +0 0.1196 +0 0.2016 +0 0.1731 +0 0.0996 +0 0.0957 +0 0.0899 +0 0.0782 +0 0.0800 +1 0.8306 +0 0.0965 +0 0.3250 +0 0.4106 +0 0.0425 +0 0.1147 +0 0.0514 +0 0.0842 +0 0.1484 +0 0.0647 +0 0.0569 +0 0.0385 +0 0.1885 +0 0.1385 +0 0.0736 +0 0.1084 +0 0.7495 +0 0.1232 +0 0.2381 +0 0.4922 +0 0.0960 +0 0.2679 +0 0.1244 +0 0.1329 +0 0.1177 +0 0.1547 +0 0.0906 +0 0.0470 +0 0.1108 +0 0.1611 +0 0.1414 +0 0.0730 +0 0.2148 +0 0.0935 +0 0.1826 +0 0.0552 +0 0.0492 +0 0.1824 +0 0.2206 +0 0.1163 +0 0.1614 +0 0.0542 +0 0.0685 +0 0.2169 +0 0.1235 +0 0.0811 +0 0.2452 +0 0.3423 +0 0.1974 +0 0.1769 +0 0.5291 +0 0.1981 +0 0.0330 +0 0.1141 +0 0.1919 +0 0.3684 +0 0.0941 +0 0.0762 +0 0.0858 +0 0.3207 +0 0.0936 +0 0.0495 +0 0.0717 +0 0.0373 +0 0.1105 +0 0.6717 +1 0.7894 +0 0.1141 +0 0.1418 +0 0.5314 +0 0.0384 +0 0.1009 +0 0.1265 +0 0.1336 +0 0.0626 +0 0.1502 +0 0.2286 +0 0.1420 +0 0.0702 +0 0.1049 +0 0.1698 +0 0.0888 +0 0.0567 +0 0.1477 +0 0.0642 +0 0.3764 +0 0.1738 +0 0.1019 +0 0.1481 +0 0.1141 +0 0.0615 +0 0.6832 +0 0.0835 +0 0.0535 +0 0.0997 +0 0.0615 +0 0.2066 +0 0.0877 +0 0.2473 +0 0.1256 +0 0.1159 +0 0.1939 +0 0.0963 +0 0.0549 +0 0.0980 +0 0.1158 +0 0.1176 +0 0.3009 +0 0.0366 +0 0.1431 +0 0.0908 +0 0.0721 +0 0.0570 +0 0.2247 +0 0.0708 +0 0.0639 +0 0.1068 +0 0.1778 +0 0.0963 +0 0.0948 +0 0.0824 +0 0.1674 +0 0.1253 +0 0.1873 +0 0.0726 +0 0.1928 +0 0.0553 +0 0.0801 +0 0.0857 +0 0.1445 +0 0.0869 +0 0.1180 +0 0.0824 +0 0.2377 +0 0.1034 +0 0.4325 +0 0.0573 +1 0.8491 +0 0.3577 +0 0.1734 +0 0.1451 +0 0.3011 +1 0.8617 +0 0.3191 +0 0.1442 +0 0.1156 +0 0.0401 +0 0.1067 +0 0.0539 +0 0.3183 +0 0.0713 +0 0.3830 +0 0.1052 +0 0.0696 +0 0.0498 +0 0.1279 +0 0.0958 +0 0.0841 +0 0.0904 +0 0.1845 +0 0.0408 +0 0.0730 +0 0.1254 +0 0.1087 +0 0.5749 +0 0.1381 +0 0.1287 +0 0.0690 +0 0.1390 +0 0.2156 +0 0.3475 +0 0.1576 +0 0.0303 +0 0.2833 +0 0.0728 +1 0.8501 +0 0.2718 +0 0.1214 +0 0.1256 +0 0.0987 +0 0.0526 +0 0.3036 +0 0.5684 +0 0.1723 +0 0.1052 +0 0.0577 +0 0.5902 +0 0.0952 +0 0.0557 +0 0.0611 +0 0.0767 +0 0.2155 +0 0.0527 +0 0.0785 +0 0.0476 +0 0.0383 +0 0.1266 +0 0.0900 +0 0.4983 +0 0.0725 +0 0.2329 +0 0.1186 +0 0.0820 +0 0.1337 +0 0.0794 +0 0.0890 +0 0.1400 +0 0.1002 +0 0.1431 +0 0.1598 +0 0.0473 +0 0.0576 +0 0.2363 +0 0.0774 +0 0.0419 +0 0.0997 +0 0.1377 +0 0.2538 +0 0.1936 +0 0.4073 +0 0.0348 +0 0.6465 +0 0.1921 +0 0.1218 +0 0.0835 +0 0.3930 +0 0.1838 +0 0.0766 +0 0.1411 +0 0.0851 +0 0.0667 +0 0.0874 +0 0.1577 +0 0.1080 +1 0.8137 +0 0.0658 +0 0.1179 +0 0.1017 +0 0.0362 +0 0.0506 +0 0.1164 +0 0.1677 +0 0.1174 +0 0.2725 +0 0.1015 +0 0.1381 +0 0.7426 +0 0.1298 +0 0.1197 +0 0.1532 +0 0.0701 +0 0.1246 +0 0.1157 +0 0.0551 +0 0.0385 +0 0.2304 +0 0.0641 +0 0.1386 +0 0.0428 +0 0.1335 +0 0.1023 +0 0.1620 +0 0.1748 +0 0.0699 +0 0.0687 +0 0.0830 +0 0.1555 +0 0.0741 +0 0.3643 +0 0.0781 +0 0.3399 +0 0.0992 +0 0.0663 +0 0.1212 +0 0.1099 +0 0.0523 +0 0.1791 +0 0.0344 +0 0.2538 +0 0.3327 +1 0.8273 +0 0.0766 +0 0.1086 +0 0.1002 +0 0.0833 +0 0.1800 +1 0.8703 +0 0.1091 +0 0.1205 +0 0.2007 +0 0.1297 +0 0.1945 +0 0.1375 +0 0.0496 +0 0.0525 +0 0.2240 +0 0.0850 +0 0.0493 +0 0.1038 +0 0.1874 +0 0.1478 +0 0.2442 +0 0.1145 +0 0.1356 +0 0.2309 +0 0.1191 +0 0.3705 +0 0.0946 +0 0.1600 +0 0.0785 +0 0.1188 +0 0.2225 +0 0.2039 +0 0.1310 +0 0.1641 +0 0.0492 +0 0.1748 +0 0.4571 +0 0.1325 +0 0.0919 +0 0.1118 +0 0.2400 +0 0.0630 +0 0.0588 +0 0.0574 +0 0.0726 +1 0.8033 +0 0.1776 +0 0.2115 +0 0.0599 +0 0.1301 +0 0.1032 +0 0.2223 +0 0.1019 +0 0.0794 +0 0.0508 +0 0.0579 +0 0.2602 +1 0.8378 +0 0.1278 +0 0.0900 +0 0.0644 +0 0.1440 +0 0.0816 +0 0.3053 +0 0.0462 +0 0.0975 +0 0.1495 +0 0.1353 +0 0.2541 +0 0.1733 +0 0.0701 +0 0.0951 +0 0.1078 +0 0.1039 +0 0.1789 +0 0.0878 +0 0.1581 +0 0.1554 +0 0.0705 +0 0.0755 +0 0.1157 +0 0.0740 +0 0.1323 +0 0.0491 +0 0.1002 +0 0.0795 +0 0.0912 +0 0.2352 +0 0.1880 +0 0.0368 +0 0.1493 +0 0.0378 +0 0.0583 +0 0.0692 +0 0.1242 +0 0.1405 +0 0.0837 +0 0.1568 +0 0.1225 +0 0.3266 +0 0.0829 +0 0.0414 +0 0.2431 +0 0.1492 +0 0.0744 +0 0.0457 +0 0.1362 +0 0.0495 +0 0.0745 +0 0.1130 +0 0.0822 +0 0.0913 +0 0.0899 +0 0.1243 +0 0.1179 +0 0.1358 +0 0.1298 +0 0.1126 +0 0.3257 +0 0.0856 +0 0.1557 +0 0.3013 +0 0.0640 +0 0.1641 +0 0.0437 +0 0.0891 +0 0.2595 +0 0.0908 +0 0.0602 +0 0.0939 +0 0.1247 +0 0.4860 +0 0.1475 +0 0.0499 +0 0.0915 +0 0.1345 +0 0.1927 +0 0.0696 +0 0.0409 +0 0.1776 +0 0.1974 +0 0.1710 +0 0.0586 +0 0.1661 +0 0.0392 +0 0.0921 +0 0.1502 +0 0.0462 +0 0.0898 +0 0.1032 +0 0.0371 +0 0.0570 +0 0.1145 +0 0.2092 +0 0.1634 +0 0.0894 +0 0.1417 +0 0.0840 +0 0.0692 +0 0.2652 +0 0.1412 +0 0.1612 +0 0.0735 +0 0.1332 +0 0.0897 +0 0.0733 +0 0.0617 +0 0.0522 +0 0.1934 +0 0.2362 +0 0.0626 +0 0.1107 +0 0.3185 +0 0.1078 +0 0.0456 +0 0.2025 +0 0.1323 +0 0.0843 +0 0.1399 +0 0.0367 +0 0.2110 +0 0.1012 +0 0.0675 +0 0.0476 +0 0.2065 +0 0.2057 +0 0.1695 +0 0.1238 +1 0.8084 +0 0.0974 +0 0.0970 +0 0.2122 +0 0.1148 +0 0.4202 +0 0.1227 +0 0.2977 +0 0.0680 +0 0.1131 +0 0.1944 +0 0.0987 +0 0.1574 +0 0.1437 +0 0.1179 +0 0.1280 +0 0.1652 +0 0.1368 +0 0.1420 +0 0.1324 +0 0.0483 +0 0.2388 +0 0.0501 +0 0.0411 +0 0.5030 +0 0.1186 +0 0.1119 +0 0.1116 +0 0.0912 +0 0.1138 +0 0.1071 +0 0.1507 +0 0.0707 +0 0.0427 +0 0.1807 +0 0.0366 +0 0.1945 +0 0.0696 +0 0.1199 +0 0.1137 +0 0.2612 +0 0.0904 +0 0.0487 +0 0.0945 +0 0.0602 +0 0.0955 +0 0.1491 +0 0.1092 +0 0.0921 +0 0.1398 +0 0.0597 +0 0.7355 +0 0.0696 +0 0.1896 +0 0.1731 +0 0.1003 +0 0.0733 +0 0.1235 +0 0.1002 +0 0.1515 +0 0.6761 +0 0.0729 +0 0.3091 +1 0.7561 +0 0.1015 +1 0.8276 +0 0.2153 +0 0.1029 +0 0.0796 +0 0.1610 +0 0.0819 +0 0.0707 +1 0.7756 +0 0.2474 +0 0.0923 +0 0.1679 +0 0.2810 +0 0.1199 +0 0.1103 +0 0.0700 +0 0.0813 +0 0.0645 +0 0.0840 +1 0.8899 +0 0.1322 +0 0.0363 +0 0.1900 +0 0.0576 +0 0.1051 +0 0.0413 +0 0.0384 +0 0.0889 +0 0.1091 +1 0.7752 +0 0.1823 +0 0.1473 +0 0.1884 +0 0.1728 +0 0.1366 +0 0.0551 +0 0.1801 +0 0.1326 +0 0.0990 +0 0.0457 +0 0.1138 +0 0.0691 +0 0.7237 +0 0.0465 +0 0.0500 +1 0.8671 +0 0.1637 +0 0.1084 +0 0.0877 +0 0.0789 +0 0.0695 +0 0.1052 +0 0.1308 +0 0.0770 +0 0.2879 +0 0.6359 +0 0.1988 +0 0.0846 +0 0.1147 +0 0.1157 +0 0.6290 +0 0.2641 +1 0.8603 +0 0.0489 +0 0.1405 +0 0.0735 +0 0.0672 +0 0.1227 +0 0.0939 +0 0.0824 +0 0.0684 +0 0.1098 +0 0.1410 +0 0.1101 +0 0.2306 +0 0.0794 +0 0.5865 +0 0.1432 +0 0.2461 +0 0.0810 +0 0.2927 +0 0.1861 +0 0.1831 +0 0.1432 +0 0.0609 +0 0.0909 +0 0.0633 +0 0.3726 +0 0.0905 +0 0.0865 +0 0.2757 +0 0.2347 +0 0.1267 +1 0.7969 +0 0.0915 +0 0.1681 +0 0.1918 +0 0.4039 +0 0.1673 +0 0.0530 +0 0.1640 +0 0.0833 +0 0.0790 +0 0.1523 +1 0.8569 +0 0.2632 +0 0.1178 +0 0.0483 +0 0.0894 +0 0.5964 +0 0.0614 +0 0.0764 +0 0.1410 +0 0.1065 +0 0.1563 +0 0.1274 +0 0.1156 +0 0.0628 +0 0.1626 +0 0.0780 +0 0.0933 +0 0.0587 +0 0.0547 +0 0.0594 +0 0.0914 +0 0.2353 +0 0.2628 +0 0.0641 +0 0.7234 +0 0.1326 +0 0.0530 +0 0.0720 +1 0.7863 +0 0.0570 +1 0.8150 +0 0.0973 +0 0.0578 +0 0.0789 +0 0.0589 +0 0.1338 +0 0.1282 +0 0.1462 +0 0.3432 +0 0.1449 +0 0.0556 +0 0.0485 +0 0.0984 +0 0.0806 +0 0.0555 +0 0.0436 +0 0.2950 +0 0.0570 +0 0.1275 +0 0.0747 +0 0.1002 +0 0.0837 +0 0.0896 +0 0.0602 +0 0.1191 +0 0.2619 +0 0.5200 +0 0.0552 +0 0.3533 +0 0.1733 +0 0.0646 +0 0.4397 +0 0.1430 +0 0.3569 +0 0.2964 +0 0.0614 +0 0.0988 +0 0.1503 +0 0.0584 +0 0.1972 +0 0.1357 +0 0.1030 +0 0.0562 +0 0.1094 +0 0.0818 +0 0.1430 +0 0.0441 +0 0.2170 +0 0.1771 +0 0.2936 +0 0.0369 +0 0.2587 +0 0.0820 +0 0.0912 +0 0.0549 +0 0.0398 +1 0.8936 +0 0.1518 +0 0.2794 +0 0.4299 +0 0.0335 +0 0.0627 +0 0.1802 +0 0.3767 +0 0.0822 +0 0.0590 +0 0.0805 +0 0.1435 +0 0.1673 +0 0.0661 +0 0.1815 +0 0.2218 +0 0.1352 +0 0.0898 +0 0.1790 +0 0.0636 +0 0.1483 +0 0.1584 +0 0.0877 +0 0.1883 +0 0.1002 +0 0.2136 +0 0.1097 +0 0.2926 +0 0.1723 +0 0.1254 +0 0.5499 +0 0.1629 +0 0.0631 +0 0.0956 +0 0.1173 +0 0.0841 +0 0.1884 +0 0.0655 +0 0.1177 +0 0.1425 +0 0.1119 +0 0.1999 +0 0.0397 +0 0.0486 +0 0.0995 +0 0.3382 +0 0.1051 +0 0.1576 +0 0.1672 +0 0.6219 +0 0.1352 +0 0.2728 +0 0.0847 +0 0.0996 +0 0.1079 +0 0.0638 +0 0.1552 +0 0.3374 +0 0.0960 +0 0.1706 +1 0.8168 +0 0.0764 +0 0.1282 +0 0.1279 +0 0.0999 +0 0.0809 +0 0.1061 +0 0.5233 +0 0.1450 +0 0.0647 +0 0.0441 +0 0.4716 +0 0.1314 +0 0.0644 +0 0.0797 +0 0.2535 +0 0.2083 +0 0.0716 +0 0.0747 +0 0.1066 +0 0.1697 +0 0.0312 +0 0.2583 +0 0.7320 +0 0.0399 +0 0.0407 +0 0.1683 +0 0.2437 +0 0.0931 +0 0.0472 +0 0.0384 +0 0.1767 +0 0.0713 +0 0.0866 +0 0.0471 +0 0.2617 +1 0.7603 +0 0.1504 +0 0.0661 +0 0.1237 +0 0.0740 +0 0.1483 +0 0.0591 +0 0.1104 +0 0.1344 +0 0.0971 +0 0.0797 +0 0.1813 +0 0.0738 +0 0.0685 +0 0.1616 +0 0.0697 +0 0.1035 +0 0.1103 +0 0.0496 +0 0.0644 +0 0.2799 +0 0.0469 +0 0.0529 +0 0.0620 +0 0.0821 +0 0.0849 +0 0.0839 +0 0.4735 +0 0.3170 +0 0.1766 +0 0.0912 +0 0.0813 +0 0.1494 +0 0.0966 +0 0.0819 +0 0.0913 +0 0.1087 +0 0.1253 +0 0.1187 +0 0.1709 +0 0.1203 +0 0.0648 +0 0.2890 +0 0.1931 +0 0.1244 +0 0.0744 +0 0.0555 +0 0.0836 +0 0.5334 +0 0.0731 +0 0.2614 +0 0.1085 +0 0.2629 +0 0.0832 +0 0.0755 +0 0.2266 +0 0.0708 +0 0.1314 +0 0.0534 +0 0.0597 +0 0.2114 +0 0.1130 +0 0.0637 +0 0.1937 +0 0.0849 +0 0.1371 +0 0.0971 +0 0.1013 +0 0.1012 +0 0.0463 +0 0.0685 +0 0.0906 +0 0.2092 +0 0.2062 +0 0.3322 +0 0.2377 +0 0.1750 +0 0.0351 +0 0.1890 +0 0.1032 +0 0.1137 +0 0.1191 +0 0.1219 +0 0.2236 +0 0.0955 +0 0.0533 +0 0.1414 +0 0.2696 +0 0.0779 +0 0.1482 +0 0.0967 +0 0.1816 +0 0.2103 +0 0.0979 +0 0.0420 +0 0.0807 +0 0.5609 +0 0.0571 +0 0.1295 +0 0.0419 +0 0.2566 +0 0.0705 +0 0.0829 +0 0.0677 +0 0.0842 +0 0.1139 +0 0.0859 +0 0.2789 +0 0.0341 +0 0.0392 +0 0.1750 +0 0.0829 +0 0.2601 +0 0.1142 +0 0.0596 +0 0.1301 +0 0.1026 +0 0.0788 +0 0.4490 +0 0.1820 +0 0.1124 +0 0.0772 +0 0.0484 +0 0.1087 +0 0.1861 +0 0.1150 +0 0.0417 +0 0.0779 +0 0.1803 +0 0.0536 +0 0.6436 +0 0.0914 +0 0.0560 +0 0.0686 +0 0.1125 +0 0.0695 +0 0.0787 +0 0.0989 +0 0.0474 +0 0.0497 +0 0.1271 +0 0.1857 +0 0.0656 +0 0.0962 +0 0.6762 +0 0.0708 +0 0.1028 +0 0.0631 +0 0.1674 +0 0.0565 +0 0.1640 +0 0.0654 +0 0.0539 +0 0.0560 +0 0.0905 +0 0.3887 +0 0.0931 +0 0.3726 +0 0.1332 +0 0.1024 +0 0.0481 +0 0.0882 +0 0.0684 +0 0.0912 +0 0.1569 +0 0.0496 +0 0.0722 +0 0.2135 +0 0.1478 +0 0.0953 +0 0.2000 +0 0.0557 +0 0.0655 +0 0.1789 +0 0.1391 +0 0.0709 +0 0.1447 +0 0.0654 +0 0.3205 +0 0.1336 +0 0.0859 +0 0.3041 +0 0.1720 +0 0.0971 +0 0.0884 +0 0.2408 +0 0.1135 +0 0.0987 +0 0.0746 +0 0.1315 +0 0.0620 +0 0.0855 +0 0.6642 +0 0.0483 +0 0.0786 +0 0.0553 +0 0.0483 +0 0.0926 +0 0.5232 +0 0.0557 +0 0.0387 +0 0.0862 +0 0.6903 +0 0.1539 +0 0.0907 +0 0.2913 +0 0.1257 +0 0.1007 +0 0.0740 +0 0.1345 +0 0.0853 +0 0.0936 +0 0.0895 +0 0.0846 +0 0.0935 +0 0.2288 +0 0.3241 +0 0.0899 +0 0.0622 +0 0.3554 +0 0.0780 +0 0.0476 +0 0.5380 +0 0.6340 +0 0.0750 +0 0.1121 +1 0.7691 +0 0.5681 +0 0.0611 +0 0.0795 +0 0.0760 +0 0.0603 +0 0.0501 +0 0.1080 +0 0.1417 +0 0.3558 +0 0.1309 +0 0.1243 +0 0.1483 +0 0.0696 +0 0.0501 +0 0.4149 +0 0.1048 +0 0.1723 +0 0.1375 +0 0.2342 +0 0.2611 +1 0.7558 +0 0.1153 +0 0.2434 +0 0.6668 +0 0.1613 +0 0.1377 +0 0.1685 +0 0.3313 +0 0.0912 +0 0.0310 +0 0.1164 +0 0.2737 +0 0.0568 +0 0.0419 +0 0.0534 +0 0.3044 +0 0.1768 +0 0.1121 +0 0.0694 +0 0.0940 +0 0.6171 +0 0.0741 +0 0.0984 +0 0.0449 +0 0.2818 +0 0.1025 +0 0.2295 +0 0.1442 +0 0.1013 +0 0.1073 +0 0.0637 +0 0.1093 +0 0.0977 +0 0.2273 +0 0.0345 +0 0.0635 +0 0.0824 +0 0.1338 +0 0.1152 +0 0.0740 +0 0.0364 +0 0.0459 +0 0.1741 +0 0.0705 +0 0.1030 +0 0.1269 +0 0.1978 +0 0.0670 +0 0.3113 +0 0.1222 +0 0.1394 +0 0.0624 +0 0.1068 +0 0.1005 +0 0.1108 +0 0.0557 +0 0.0886 +0 0.0708 +0 0.0391 +0 0.0865 +0 0.1955 +0 0.5788 +0 0.0542 +0 0.2273 +0 0.0903 +0 0.1065 +1 0.8098 +0 0.0980 +0 0.0700 +0 0.1107 +0 0.2218 +0 0.0915 +0 0.0872 +0 0.1414 +0 0.0885 +0 0.3180 +0 0.0466 +0 0.1012 +0 0.2682 +0 0.0674 +0 0.0823 +0 0.1910 +0 0.0799 +0 0.2835 +0 0.0873 +0 0.1027 +0 0.0647 +0 0.0414 +0 0.0784 +0 0.1441 +0 0.3126 +0 0.1315 +0 0.3565 +0 0.4357 +1 0.8261 +0 0.0707 +0 0.0758 +0 0.1728 +0 0.1044 +0 0.0872 +0 0.0764 +0 0.1810 +0 0.2052 +0 0.0575 +0 0.0381 +0 0.2982 +0 0.0932 +0 0.1854 +0 0.0474 +1 0.7581 +0 0.1557 +0 0.1823 +0 0.0777 +0 0.0646 +0 0.0533 +0 0.0860 +0 0.0740 +0 0.1865 +0 0.0637 +0 0.0928 +0 0.2635 +0 0.0722 +0 0.1257 +0 0.1909 +0 0.0654 +0 0.1167 +0 0.1448 +0 0.1070 +0 0.2299 +0 0.1624 +0 0.0875 +0 0.0942 +0 0.0497 +0 0.0712 +0 0.0608 +0 0.1138 +0 0.0754 +0 0.2100 +0 0.0329 +0 0.1262 +0 0.2063 +0 0.2283 +0 0.1348 +0 0.1485 +0 0.0706 +0 0.1245 +0 0.1566 +0 0.1738 +0 0.0988 +0 0.0718 +0 0.1065 +0 0.1015 +0 0.2539 +0 0.0988 +0 0.0527 +0 0.0872 +0 0.6300 +1 0.7814 +0 0.0934 +0 0.0767 +0 0.1581 +0 0.1660 +0 0.2086 +0 0.0739 +0 0.0797 +1 0.7697 +0 0.0605 +0 0.0570 +0 0.0619 +0 0.0709 +0 0.1034 +0 0.2039 +0 0.1457 +0 0.0890 +0 0.0697 +0 0.2078 +0 0.1331 +0 0.3518 +0 0.1250 +0 0.0595 +0 0.2518 +1 0.8357 +0 0.0442 +0 0.1508 +0 0.0812 +0 0.1745 +0 0.0846 +0 0.0652 +0 0.0815 +0 0.0699 +0 0.0453 +0 0.1675 +0 0.0588 +0 0.2333 +0 0.0665 +0 0.2786 +1 0.8055 +0 0.1492 +0 0.0372 +0 0.0368 +0 0.1626 +0 0.0833 +0 0.1897 +0 0.1193 +0 0.0541 +0 0.0572 +0 0.2907 +0 0.3340 +0 0.1199 +0 0.5095 +0 0.0900 +0 0.0812 +0 0.0682 +0 0.0382 +0 0.0850 +0 0.1005 +0 0.1092 +0 0.1676 +0 0.1286 +0 0.2492 +0 0.1013 +0 0.0633 +0 0.0324 +0 0.1496 +0 0.1002 +0 0.0932 +0 0.1872 +0 0.2578 +0 0.1150 +0 0.1188 +0 0.0951 +0 0.0981 +0 0.1096 +0 0.1638 +0 0.0726 +0 0.0355 +0 0.1391 +0 0.1163 +0 0.2219 +0 0.0516 +0 0.1374 +0 0.0843 +0 0.0558 +0 0.1795 +0 0.3392 +0 0.0711 +0 0.0899 +0 0.0488 +0 0.4360 +0 0.0641 +0 0.0841 +0 0.1408 +0 0.0853 +0 0.5890 +0 0.0889 +0 0.1326 +0 0.0860 +0 0.1377 +0 0.1097 +0 0.1050 +0 0.0711 +0 0.0662 +0 0.1016 +0 0.6601 +0 0.0749 +0 0.0738 +0 0.2724 +0 0.1214 +0 0.4488 +0 0.0674 +0 0.1117 +0 0.2010 +0 0.1299 +0 0.1443 +0 0.0665 +0 0.0462 +0 0.1201 +0 0.0518 +0 0.0632 +0 0.2309 +0 0.0437 +0 0.1304 +0 0.0742 +0 0.1087 +0 0.1374 +0 0.0433 +0 0.2496 +0 0.0744 +0 0.1583 +0 0.0661 +0 0.0635 +0 0.0622 +0 0.0718 +0 0.0719 +0 0.1212 +0 0.3266 +1 0.7819 +0 0.0706 +0 0.3198 +0 0.0397 +0 0.0596 +0 0.4106 +0 0.1362 +0 0.4539 +0 0.0606 +0 0.1442 +0 0.0659 +0 0.1161 +0 0.1174 +0 0.0622 +0 0.0781 +0 0.0735 +0 0.1687 +0 0.5625 +0 0.1658 +0 0.0797 +0 0.0372 +0 0.1325 +0 0.2287 +0 0.1169 +0 0.1072 +0 0.2598 +0 0.0553 +0 0.1328 +0 0.0834 +0 0.1078 +0 0.1805 +0 0.2150 +0 0.1552 +0 0.1951 +0 0.3048 +0 0.0647 +0 0.0740 +0 0.1122 +0 0.2683 +0 0.1101 +0 0.1362 +0 0.1456 +0 0.1299 +0 0.0938 +0 0.1852 +0 0.0577 +0 0.2793 +0 0.1458 +0 0.3785 +0 0.0760 +0 0.1064 +0 0.2529 +1 0.8492 +0 0.0983 +0 0.0674 +0 0.1520 +0 0.0833 +0 0.1518 +0 0.1743 +0 0.1676 +0 0.2158 +0 0.0836 +0 0.0896 +0 0.2336 +0 0.1130 +0 0.3206 +0 0.2122 +0 0.1432 +0 0.1093 +0 0.0588 +0 0.0756 +0 0.1537 +0 0.1424 +0 0.1239 +0 0.0601 +1 0.8709 +0 0.1572 +0 0.0776 +0 0.0841 +0 0.1306 +0 0.0950 +0 0.3554 +0 0.1082 +0 0.0845 +0 0.1293 +0 0.1219 +0 0.1647 +0 0.0622 +0 0.1580 +0 0.3261 +0 0.1359 +0 0.1675 +0 0.1831 +0 0.0412 +0 0.1712 +0 0.4548 +0 0.1143 +0 0.0804 +0 0.0612 +0 0.0528 +0 0.1067 +0 0.1558 +0 0.0595 +0 0.0754 +0 0.2169 +0 0.0806 +0 0.0767 +0 0.0730 +0 0.0910 +0 0.1838 +0 0.2683 +0 0.2305 +0 0.0772 +1 0.7757 +0 0.1160 +0 0.0561 +0 0.2418 +0 0.0781 +0 0.0698 +0 0.2081 +0 0.1498 +0 0.1462 +0 0.1308 +0 0.1400 +0 0.0749 +0 0.2428 +0 0.3529 +0 0.0551 +0 0.1341 +0 0.0936 +0 0.5975 +0 0.0532 +0 0.1288 +0 0.1230 +1 0.8549 +0 0.0509 +0 0.1070 +0 0.6493 +0 0.0545 +0 0.0600 +0 0.0787 +0 0.1047 +0 0.3319 +0 0.1387 +0 0.0795 +0 0.0553 +0 0.0559 +0 0.1558 +0 0.1205 +0 0.0923 +0 0.0863 +0 0.0543 +0 0.1847 +0 0.2730 +0 0.4083 +0 0.1221 +0 0.0500 +0 0.0669 +0 0.0784 +0 0.1318 +0 0.0928 +0 0.1254 +0 0.2462 +0 0.0898 +0 0.0500 +0 0.1868 +0 0.6873 +0 0.0846 +0 0.0461 +0 0.0487 +0 0.2988 +0 0.2757 +0 0.0342 +0 0.3261 +0 0.1273 +0 0.0423 +0 0.1641 +0 0.0947 +0 0.0610 +0 0.0545 +0 0.1850 +0 0.0757 +0 0.3116 +0 0.1411 +0 0.0873 +0 0.0805 +0 0.0897 +0 0.1078 +0 0.0972 +0 0.2364 +0 0.1953 +0 0.0315 +0 0.2178 +0 0.0426 +0 0.1821 +0 0.2430 +0 0.1878 +0 0.0704 +0 0.0743 +0 0.0655 +0 0.0476 +0 0.1611 +0 0.0995 +0 0.2826 +0 0.2170 +0 0.0718 +0 0.0970 +0 0.5181 +0 0.0988 +0 0.0798 +0 0.0941 +0 0.2442 +0 0.0462 +0 0.2658 +0 0.0526 +0 0.1811 +0 0.1210 +0 0.1423 +0 0.0715 +0 0.0696 +0 0.1243 +1 0.8561 +0 0.1023 +0 0.1311 +0 0.1296 +0 0.0712 +0 0.0740 +0 0.0500 +0 0.1621 +0 0.0687 +0 0.0611 +0 0.1559 +0 0.0623 +0 0.0650 +0 0.1045 +0 0.0821 +0 0.1085 +0 0.0489 +0 0.0504 +0 0.0775 +0 0.2496 +0 0.0823 +0 0.1849 +0 0.0692 +0 0.0959 +0 0.0878 +0 0.2628 +0 0.3748 +0 0.1697 +0 0.0938 +0 0.2214 +0 0.1927 +0 0.1366 +0 0.2434 +0 0.0953 +0 0.1429 +0 0.0964 +0 0.3398 +0 0.0730 +0 0.1744 +0 0.0889 +0 0.1610 +0 0.6236 +0 0.0725 +0 0.1455 +0 0.0806 +0 0.0599 +0 0.0746 +0 0.2128 +0 0.1195 +0 0.1307 +0 0.2021 +0 0.1172 +0 0.1814 +0 0.0639 +0 0.1947 +0 0.2150 +0 0.0712 +0 0.0864 +0 0.0502 +0 0.0668 +0 0.0820 +0 0.2403 +0 0.2042 +0 0.2068 +0 0.0820 +0 0.1167 +0 0.0947 +0 0.0936 +0 0.0855 +0 0.1172 +0 0.1753 +0 0.0478 +0 0.0957 +0 0.2592 +0 0.0741 +0 0.2216 +0 0.0635 +0 0.0652 +0 0.0555 +0 0.0336 +1 0.7670 +0 0.1307 +0 0.1436 +0 0.0857 +0 0.1738 +0 0.1452 +0 0.1268 +0 0.1443 +0 0.4797 +0 0.4251 +0 0.0786 +0 0.1126 +0 0.7356 +0 0.0668 +0 0.0952 +0 0.1316 +0 0.0344 +0 0.0625 +0 0.0457 +0 0.0998 +0 0.3139 +0 0.1857 +0 0.1377 +0 0.0974 +0 0.1829 +0 0.2489 +0 0.0564 +0 0.2896 +0 0.2887 +0 0.0763 +0 0.1721 +0 0.0785 +0 0.0820 +0 0.0434 +0 0.2332 +0 0.0515 +0 0.7483 +0 0.0546 +0 0.1740 +0 0.0792 +1 0.8845 +0 0.1003 +0 0.0764 +0 0.2323 +0 0.0725 +0 0.0653 +0 0.0868 +0 0.0497 +0 0.1350 +0 0.1244 +0 0.1016 +0 0.1116 +0 0.0584 +0 0.1126 +0 0.4656 +0 0.0546 +0 0.1198 +0 0.0656 +0 0.1148 +0 0.1091 +0 0.0746 +0 0.1641 +0 0.6740 +0 0.0753 +0 0.0563 +0 0.0803 +0 0.1262 +0 0.0533 +0 0.0644 +0 0.2083 +0 0.2083 +0 0.0933 +0 0.7191 +0 0.0925 +0 0.2191 +0 0.0552 +0 0.1410 +0 0.3655 +0 0.2286 +0 0.2157 +0 0.0639 +0 0.1806 +0 0.7370 +0 0.0501 +0 0.0471 +0 0.2410 +0 0.0711 +0 0.1340 +0 0.1278 +0 0.1861 +0 0.2278 +0 0.0481 +0 0.2952 +0 0.1230 +0 0.0495 +0 0.2749 +0 0.0535 +0 0.0791 +0 0.2161 +0 0.1699 +0 0.0912 +0 0.1663 +0 0.1190 +0 0.0796 +0 0.1386 +0 0.1680 +0 0.4495 +0 0.1363 +0 0.1131 +0 0.1296 +0 0.1063 +0 0.1439 +0 0.1158 +0 0.1011 +0 0.0366 +0 0.0352 +0 0.1072 +0 0.1503 +0 0.1950 +0 0.7347 +0 0.1950 +0 0.1478 +0 0.0662 +0 0.2820 +0 0.1097 +0 0.1267 +0 0.0786 +0 0.2426 +0 0.1058 +0 0.1228 +0 0.1630 +0 0.1093 +0 0.0999 +0 0.0628 +0 0.1155 +0 0.0889 +0 0.1381 +0 0.4263 +0 0.1865 +0 0.1150 +0 0.3210 +0 0.0573 +0 0.0641 +0 0.1187 +0 0.0770 +0 0.1327 +0 0.1017 +0 0.1568 +0 0.2101 +0 0.2020 +0 0.1618 +0 0.3577 +0 0.1840 +0 0.0989 +0 0.0672 +0 0.0718 +0 0.0456 +0 0.0775 +0 0.2270 +0 0.0857 +0 0.0506 +0 0.0760 +0 0.1443 +0 0.0844 +0 0.2141 +0 0.1610 +0 0.1086 +0 0.3324 +0 0.2614 +0 0.0432 +0 0.0910 +0 0.2618 +0 0.1225 +0 0.1123 +0 0.0862 +0 0.1163 +0 0.0585 +0 0.1343 +0 0.0481 +0 0.1641 +0 0.1070 +0 0.1362 +0 0.0629 +0 0.1144 +0 0.2194 +0 0.2832 +0 0.3419 +0 0.0649 +0 0.1025 +0 0.0469 +0 0.0741 +0 0.0963 +0 0.1287 +0 0.0569 +0 0.1226 +0 0.2610 +0 0.1677 +0 0.0925 +0 0.1113 +0 0.1785 +0 0.0837 +0 0.1209 +0 0.0956 +0 0.0893 +0 0.1072 +0 0.1009 +0 0.0723 +0 0.1794 +0 0.1890 +0 0.0515 +0 0.0609 +0 0.1143 +0 0.0485 +0 0.1880 +0 0.3023 +0 0.0933 +0 0.0417 +1 0.7542 +0 0.1281 +0 0.2231 +0 0.1793 +0 0.0776 +0 0.1397 +0 0.1530 +0 0.0536 +0 0.1212 +0 0.6626 +0 0.0993 +0 0.1884 +0 0.1078 +0 0.0922 +0 0.3024 +0 0.0542 +0 0.0990 +0 0.1687 +0 0.1723 +0 0.1154 +0 0.1038 +0 0.0981 +0 0.0833 +0 0.1661 +0 0.1220 +0 0.0584 +0 0.4959 +0 0.1244 +0 0.0686 +0 0.1030 +0 0.0494 +0 0.0619 +0 0.0651 +0 0.0470 +0 0.0661 +0 0.1392 +0 0.0776 +0 0.2141 +0 0.1287 +0 0.0428 +0 0.0825 +0 0.0876 +0 0.0464 +0 0.0601 +0 0.2135 +0 0.0462 +0 0.0699 +0 0.1400 +0 0.0948 +0 0.1661 +0 0.1338 +0 0.1190 +0 0.0900 +0 0.1915 +0 0.0671 +0 0.0992 +0 0.0786 +0 0.1860 +0 0.2582 +0 0.2540 +0 0.0714 +0 0.0907 +0 0.0697 +0 0.0755 +0 0.0608 +0 0.4860 +0 0.3085 +0 0.1100 +0 0.1093 +0 0.0979 +0 0.0710 +0 0.1082 +0 0.1234 +0 0.1244 +0 0.1404 +0 0.1008 +0 0.2557 +1 0.8480 +0 0.1597 +0 0.0479 +0 0.0475 +0 0.0989 +0 0.1284 +0 0.0702 +0 0.3886 +0 0.1421 +0 0.0572 +0 0.0795 +0 0.0517 +0 0.1041 +0 0.1120 +0 0.0498 +0 0.2047 +0 0.0447 +0 0.3319 +0 0.1176 +0 0.2120 +0 0.4708 +1 0.8727 +0 0.2612 +0 0.0448 +1 0.7767 +0 0.1159 +0 0.1011 +0 0.2222 +0 0.1432 +0 0.0858 +0 0.1406 +0 0.0954 +0 0.0334 +0 0.0517 +0 0.0649 +0 0.4596 +0 0.0679 +0 0.0721 +0 0.2272 +0 0.1393 +0 0.1849 +0 0.1750 +0 0.0364 +1 0.7978 +0 0.0665 +0 0.5084 +0 0.2676 +0 0.0866 +0 0.0717 +0 0.2515 +0 0.3263 +0 0.2216 +0 0.6109 +0 0.0703 +0 0.1185 +0 0.0779 +0 0.1250 +0 0.1238 +0 0.0696 +0 0.0698 +0 0.1219 +0 0.1301 +0 0.2813 +0 0.0469 +0 0.0951 +0 0.1139 +0 0.0859 +0 0.0914 +0 0.1449 +0 0.2431 +0 0.2220 +0 0.1584 +0 0.3813 +0 0.0796 +0 0.1328 +0 0.1185 +0 0.1560 +0 0.0892 +1 0.7970 +0 0.2570 +0 0.1593 +0 0.2033 +0 0.1458 +0 0.2886 +0 0.0705 +0 0.1147 +0 0.0817 +0 0.0522 +0 0.0923 +0 0.1120 +0 0.0690 +0 0.0385 +0 0.0793 +0 0.1276 +0 0.0973 +0 0.1324 +0 0.2997 +0 0.0490 +0 0.0469 +0 0.0907 +0 0.1104 +0 0.1063 +0 0.0702 +0 0.1335 +0 0.0834 +0 0.0628 +0 0.0771 +0 0.1337 +0 0.0773 +0 0.0868 +0 0.0544 +0 0.0458 +0 0.1091 +0 0.0750 +0 0.0470 +0 0.0941 +0 0.1475 +0 0.0464 +0 0.1514 +0 0.0873 +0 0.6139 +0 0.2411 +0 0.1707 +0 0.0511 +0 0.1374 +0 0.0732 +0 0.0504 +0 0.0818 +0 0.1870 +0 0.0697 +0 0.1545 +0 0.0624 +0 0.0726 +0 0.0630 +0 0.0561 +0 0.0503 +0 0.0775 +0 0.0567 +0 0.0687 +0 0.0941 +0 0.0746 +0 0.0578 +0 0.0912 +0 0.1713 +0 0.1240 +0 0.3047 +0 0.1011 +0 0.1019 +0 0.1028 +0 0.2213 +0 0.0972 +0 0.2737 +0 0.0453 +0 0.0709 +0 0.1136 +0 0.1020 +0 0.1599 +0 0.0988 +0 0.0746 +0 0.0454 +0 0.0437 +0 0.0908 +0 0.3065 +0 0.1353 +0 0.1762 +0 0.0474 +0 0.0517 +0 0.0799 +1 0.0868 +0 0.1248 +0 0.0877 +0 0.0530 +0 0.3106 +0 0.1377 +0 0.1931 +0 0.0756 +0 0.0796 +0 0.1330 +0 0.2487 +0 0.0785 +0 0.1496 +0 0.0744 +0 0.0560 +0 0.0539 +0 0.0682 +0 0.0464 +0 0.0904 +0 0.0390 +0 0.1471 +0 0.1761 +0 0.1747 +0 0.1461 +0 0.0948 +0 0.1330 +0 0.3414 +0 0.1812 +0 0.2053 +0 0.0482 +0 0.0613 +0 0.0481 +0 0.3687 +0 0.1256 +0 0.1853 +0 0.0708 +0 0.0803 +0 0.1720 +0 0.1089 +0 0.0718 +0 0.5536 +0 0.0839 +0 0.0717 +0 0.1411 +0 0.0818 +0 0.1612 +0 0.1824 +0 0.0585 +0 0.1735 +0 0.5166 +0 0.1370 +0 0.1087 +0 0.2464 +0 0.2183 +0 0.3862 +0 0.0553 +0 0.2551 +0 0.0660 +0 0.0809 +0 0.1036 +0 0.1458 +0 0.0938 +0 0.1376 +0 0.0873 +0 0.0846 +0 0.0713 +0 0.0646 +0 0.1963 +0 0.0647 +0 0.0953 +0 0.0753 +0 0.1069 +0 0.7318 +0 0.0813 +0 0.1100 +0 0.0878 +0 0.1936 +0 0.1583 +0 0.0687 +0 0.1506 +0 0.0894 +0 0.1106 +0 0.2352 +1 0.8474 +0 0.1676 +0 0.0680 +0 0.0374 +0 0.0485 +0 0.2517 +0 0.0934 +0 0.0581 +0 0.0767 +0 0.1338 +0 0.1195 +0 0.1058 +0 0.1901 +0 0.1181 +0 0.1744 +0 0.1431 +0 0.0828 +0 0.2280 +0 0.2175 +0 0.1574 +0 0.0491 +0 0.1512 +0 0.1559 +0 0.4197 +0 0.1202 +0 0.0532 +0 0.4846 +0 0.1143 +0 0.1604 +0 0.0766 +0 0.0832 +1 0.8345 +0 0.3800 +0 0.1003 +0 0.0598 +0 0.2292 +0 0.1576 +0 0.0786 +0 0.0652 +0 0.0884 +0 0.0503 +0 0.5314 +0 0.0541 +0 0.1974 +0 0.0856 +0 0.0530 +0 0.0704 +0 0.1406 +0 0.1344 +0 0.0775 +0 0.0853 +0 0.0343 +0 0.1812 +0 0.1195 +0 0.1950 +0 0.1261 +0 0.2175 +0 0.1069 +0 0.0281 +0 0.2205 +0 0.0921 +0 0.0696 +0 0.1162 +0 0.3368 +0 0.0553 +0 0.1315 +0 0.0578 +1 0.8675 +0 0.1109 +0 0.0747 +0 0.1040 +0 0.0931 +0 0.0778 +0 0.1246 +0 0.1459 +0 0.0383 +0 0.0490 +0 0.1183 +0 0.2426 +0 0.2530 +0 0.0641 +0 0.0488 +0 0.2436 +0 0.0761 +0 0.0834 +0 0.0826 +0 0.0813 +0 0.1935 +0 0.1256 +0 0.0595 +0 0.0513 +0 0.1446 +0 0.1931 +0 0.0774 +0 0.3370 +0 0.0982 +0 0.0702 +0 0.0756 +0 0.1408 +0 0.2041 +0 0.0707 +0 0.7316 +0 0.0564 +0 0.3031 +0 0.0887 +0 0.1174 +0 0.1335 +0 0.1090 +0 0.0867 +0 0.1885 +0 0.1707 +0 0.1689 +0 0.0761 +0 0.1431 +0 0.1670 +0 0.0568 +0 0.2795 +0 0.1491 +0 0.1142 +0 0.1605 +0 0.1029 +0 0.1049 +0 0.0697 +0 0.2424 +0 0.0896 +0 0.1617 +0 0.1058 +0 0.0547 +0 0.0730 +0 0.4944 +0 0.0475 +0 0.0702 +0 0.1376 +0 0.4140 +0 0.0934 +0 0.1958 +0 0.1355 +0 0.0713 +0 0.1509 +0 0.3429 +0 0.1222 +0 0.1481 +0 0.1288 +0 0.1180 +0 0.0775 +0 0.0574 +0 0.0455 +0 0.0901 +0 0.0648 +0 0.2815 +0 0.2547 +0 0.0755 +0 0.0648 +0 0.3206 +0 0.1056 +0 0.0638 +1 0.7930 +0 0.6338 +0 0.1027 +0 0.1314 +0 0.1246 +0 0.0872 +0 0.3532 +0 0.0684 +0 0.1525 +0 0.2009 +0 0.0647 +0 0.1527 +0 0.2632 +0 0.1733 +0 0.4042 +0 0.2020 +0 0.0389 +0 0.0749 +0 0.4093 +0 0.0554 +0 0.1540 +0 0.1160 +0 0.1917 +0 0.0766 +0 0.3248 +0 0.0774 +1 0.7794 +0 0.0649 +0 0.0867 +0 0.1222 +0 0.1148 +0 0.0741 +0 0.0573 +0 0.0660 +0 0.6210 +0 0.1247 +0 0.0473 +0 0.0527 +0 0.1056 +0 0.0922 +0 0.1542 +0 0.1491 +0 0.0933 +0 0.0673 +0 0.7065 +0 0.0598 +0 0.0790 +0 0.2175 +0 0.2145 +0 0.2243 +0 0.1364 +0 0.0555 +0 0.2243 +0 0.0814 +0 0.0495 +0 0.0952 +0 0.1932 +0 0.1589 +0 0.1327 +0 0.1854 +0 0.1330 +0 0.1862 +0 0.0677 +0 0.1488 +0 0.1610 +0 0.0738 +0 0.1038 +0 0.0538 +0 0.0372 +0 0.3243 +0 0.1147 +0 0.2419 +0 0.2510 +0 0.0928 +0 0.2382 +0 0.0724 +0 0.1115 +0 0.2174 +0 0.0335 +0 0.2723 +0 0.0999 +0 0.2325 +0 0.1700 +0 0.3343 +0 0.1602 +0 0.2866 +0 0.3699 +0 0.4607 +0 0.1022 +0 0.5618 +0 0.0550 +0 0.1417 +0 0.1234 +0 0.0865 +0 0.0961 +0 0.1281 +0 0.1203 +0 0.3140 +0 0.0589 +0 0.1641 +0 0.1669 +0 0.1226 +0 0.0896 +0 0.0985 +0 0.0477 +0 0.0436 +0 0.0587 +0 0.6640 +0 0.1156 +0 0.1964 +0 0.7285 +0 0.0310 +0 0.1096 +0 0.0832 +0 0.1164 +0 0.1511 +0 0.0439 +0 0.0471 +0 0.0472 +0 0.2587 +0 0.1060 +0 0.2522 +0 0.0870 +0 0.0802 +0 0.1175 +0 0.0728 +0 0.1695 +0 0.4634 +0 0.1257 +0 0.0967 +0 0.1575 +0 0.0748 +0 0.1922 +0 0.0696 +0 0.0612 +0 0.0929 +0 0.1669 +0 0.2696 +0 0.2371 +0 0.1370 +0 0.1686 +0 0.0553 +0 0.0922 +0 0.1407 +0 0.2157 +0 0.1427 +0 0.1087 +0 0.1245 +0 0.0974 +0 0.1263 +0 0.1294 +0 0.0818 +0 0.0988 +0 0.0714 +0 0.0926 +0 0.0533 +0 0.0807 +0 0.1096 +0 0.1092 +0 0.0653 +0 0.0993 +0 0.1505 +0 0.0947 +0 0.0626 +0 0.0967 +0 0.0655 +0 0.0517 +0 0.0656 +0 0.1614 +0 0.1181 +0 0.1350 +0 0.0760 +0 0.0737 +0 0.0553 +0 0.1506 +0 0.1051 +0 0.0914 +0 0.2312 +0 0.0452 +0 0.1214 +0 0.0971 +0 0.1269 +0 0.3557 +0 0.0780 +0 0.0845 +0 0.1592 +0 0.2569 +0 0.0982 +0 0.0503 +0 0.0614 +0 0.0391 +0 0.0673 +0 0.0968 +0 0.0585 +0 0.1801 +0 0.0868 +0 0.0914 +0 0.0682 +0 0.0963 +0 0.1918 +0 0.0357 +0 0.0820 +0 0.2446 +0 0.1753 +0 0.5017 +0 0.0683 +0 0.1158 +0 0.1302 +0 0.0617 +0 0.1135 +0 0.1536 +0 0.1430 +0 0.2016 +0 0.0534 +0 0.1191 +0 0.0509 +0 0.1076 +0 0.1245 +0 0.0413 +0 0.0778 +0 0.0918 +0 0.0431 +0 0.1360 +0 0.0942 +0 0.0922 +0 0.0822 +0 0.1169 +0 0.0709 +0 0.0968 +0 0.1103 +0 0.0536 +0 0.2829 +0 0.1010 +0 0.0948 +0 0.1118 +0 0.1925 +0 0.1574 +0 0.0680 +0 0.1477 +0 0.1610 +0 0.1026 +0 0.2959 +0 0.1952 +0 0.0715 +0 0.1028 +0 0.0650 +0 0.2418 +0 0.6652 +0 0.1688 +0 0.0724 +0 0.1713 +0 0.1615 +0 0.0517 +0 0.0946 +0 0.1305 +0 0.1224 +0 0.0515 +0 0.2173 +0 0.3789 +0 0.2098 +1 0.7718 +0 0.0754 +0 0.0874 +0 0.0497 +0 0.2543 +0 0.0862 +0 0.2306 +0 0.1316 +0 0.2472 +0 0.4363 +0 0.1325 +0 0.1239 +0 0.1100 +0 0.0549 +0 0.0782 +0 0.0646 +0 0.1566 +0 0.1929 +0 0.0592 +0 0.1019 +0 0.3671 +0 0.1385 +0 0.1440 +0 0.0562 +0 0.0697 +0 0.0993 +0 0.1317 +0 0.0666 +0 0.1316 +0 0.1049 +0 0.1014 +0 0.0684 +0 0.0978 +0 0.3131 +0 0.0709 +0 0.1389 +0 0.0504 +0 0.1212 +0 0.0572 +0 0.2096 +0 0.4715 +0 0.1486 +0 0.0549 +0 0.1258 +0 0.0807 +0 0.0970 +0 0.1694 +0 0.1276 +0 0.0718 +0 0.5818 +0 0.0880 +0 0.1711 +0 0.0659 +0 0.0671 +0 0.2553 +0 0.0846 +0 0.0875 +0 0.0633 +0 0.0573 +0 0.1347 +0 0.2211 +0 0.2155 +0 0.2133 +0 0.1241 +0 0.1605 +0 0.1736 +0 0.0929 +0 0.0447 +0 0.0554 +0 0.1198 +0 0.0870 +0 0.6022 +0 0.1596 +0 0.4342 +0 0.1236 +0 0.0561 +0 0.1911 +0 0.2114 +0 0.1811 +0 0.1662 +0 0.0487 +0 0.0519 +0 0.1294 +0 0.0586 +0 0.1784 +0 0.2014 +0 0.1511 +0 0.1532 +0 0.0497 +0 0.2192 +0 0.7183 +0 0.0612 +0 0.1393 +0 0.6937 +0 0.2677 +0 0.0402 +0 0.0703 +0 0.0914 +0 0.1780 +0 0.1994 +0 0.1185 +0 0.1199 +0 0.2588 +0 0.1375 +0 0.6455 +0 0.0937 +0 0.1666 +0 0.0545 +0 0.1208 +0 0.1065 +0 0.0730 +0 0.2353 +1 0.7671 +0 0.2143 +0 0.1203 +0 0.2961 +0 0.2040 +0 0.1823 +0 0.0314 +0 0.0623 +0 0.3500 +0 0.1280 +0 0.0790 +0 0.6096 +0 0.0481 +0 0.1645 +0 0.0921 +0 0.0954 +0 0.0794 +0 0.1344 +0 0.1432 +0 0.1125 +0 0.0772 +0 0.2546 +0 0.1549 +0 0.0836 +0 0.3348 +0 0.0828 +0 0.1860 +0 0.0638 +0 0.0770 +0 0.0680 +0 0.1045 +0 0.0612 +0 0.2742 +0 0.1031 +0 0.0904 +0 0.0936 +0 0.0991 +0 0.2678 +0 0.3848 +0 0.1089 +0 0.0959 +0 0.0721 +0 0.0820 +0 0.1396 +0 0.1674 +0 0.0528 +0 0.3470 +0 0.2466 +0 0.0429 +0 0.2219 +0 0.1960 +0 0.1617 +0 0.0874 +0 0.0956 +0 0.1840 +0 0.1124 +0 0.1476 +0 0.0926 +0 0.0713 +0 0.1268 +0 0.0750 +1 0.8125 +0 0.0885 +0 0.1141 +0 0.0596 +0 0.1344 +1 0.7947 +0 0.2303 +0 0.1815 +0 0.1153 +0 0.2526 +0 0.2623 +0 0.3467 +1 0.8118 +0 0.0816 +0 0.0695 +0 0.1332 +0 0.0576 +0 0.0717 +0 0.3883 +0 0.1219 +0 0.2740 +0 0.0953 +0 0.0955 +0 0.1215 +0 0.0706 +0 0.0766 +0 0.1112 +0 0.1524 +0 0.0656 +0 0.0899 +0 0.0652 +0 0.1254 +0 0.2033 +0 0.1146 +0 0.0621 +0 0.1761 +0 0.1095 +0 0.2342 +0 0.1569 +0 0.0900 +0 0.0533 +0 0.1020 +0 0.0946 +0 0.1666 +0 0.0597 +0 0.0909 +0 0.2390 +0 0.2115 +0 0.1093 +0 0.2889 +0 0.0673 +0 0.1696 +0 0.0942 +0 0.0645 +0 0.2663 +0 0.1144 +0 0.0747 +0 0.1304 +0 0.1382 +0 0.0673 +0 0.0898 +1 0.8218 +0 0.0373 +0 0.1850 +0 0.5726 +0 0.3487 +0 0.0988 +0 0.0619 +0 0.1323 +0 0.1752 +0 0.0847 +0 0.0716 +0 0.0612 +0 0.1749 +0 0.0621 +0 0.1053 +0 0.0924 +0 0.1066 +0 0.1008 +0 0.1663 +0 0.1337 +1 0.8255 +0 0.1327 +0 0.0901 +0 0.0690 +0 0.1122 +0 0.0500 +0 0.1321 +0 0.1059 +0 0.0909 +0 0.0824 +0 0.0436 +0 0.1189 +0 0.2002 +0 0.1535 +0 0.0682 +0 0.0779 +0 0.0728 +0 0.0609 +0 0.0395 +0 0.0941 +0 0.1246 +0 0.0522 +0 0.1525 +0 0.2014 +0 0.1025 +0 0.1171 +0 0.1038 +0 0.2156 +0 0.0931 +0 0.1643 +0 0.2614 +0 0.0434 +0 0.0968 +0 0.0618 +0 0.0636 +0 0.0529 +0 0.2181 +0 0.3800 +1 0.7876 +0 0.1144 +0 0.0725 +0 0.0457 +0 0.0636 +1 0.8472 +0 0.1675 +0 0.4693 +0 0.1065 +0 0.1541 +0 0.0557 +0 0.0808 +0 0.0646 +0 0.1306 +0 0.1196 +0 0.0961 +0 0.2527 +0 0.0563 +0 0.1092 +0 0.0523 +0 0.2980 +0 0.0999 +0 0.0764 +0 0.0501 +0 0.1087 +0 0.0998 +0 0.0395 +0 0.1764 +0 0.1192 +0 0.0356 +0 0.0951 +0 0.0552 +0 0.0894 +0 0.0783 +0 0.1231 +0 0.0627 +0 0.1385 +0 0.0976 +0 0.0608 +0 0.0802 +0 0.1087 +0 0.1247 +0 0.2465 +0 0.1424 +0 0.0695 +0 0.1442 +0 0.1322 +0 0.1301 +1 0.8081 +0 0.3130 +0 0.0649 +0 0.0500 +0 0.0493 +0 0.0544 +0 0.3149 +0 0.5896 +0 0.1922 +0 0.6673 +0 0.1188 +0 0.0490 +0 0.0784 +0 0.0477 +0 0.3098 +0 0.0483 +0 0.1261 +0 0.2313 +0 0.0751 +0 0.1859 +0 0.0977 +0 0.0468 +0 0.1699 +0 0.3349 +0 0.0740 +0 0.0885 +0 0.2889 +0 0.0519 +0 0.2367 +0 0.0840 +0 0.1301 +0 0.0416 +0 0.3317 +0 0.0664 +0 0.0778 +0 0.0996 +0 0.0497 +0 0.0689 +0 0.0863 +0 0.4074 +0 0.0913 +0 0.1560 +0 0.0455 +0 0.3281 +0 0.2254 +0 0.1222 +0 0.0669 +0 0.1517 +0 0.7353 +0 0.2052 +0 0.1008 +0 0.0906 +0 0.1986 +0 0.1894 +0 0.0727 +0 0.1163 +0 0.0529 +0 0.1734 +0 0.1202 +0 0.4708 +0 0.1219 +0 0.1556 +0 0.1262 +0 0.0833 +0 0.1325 +0 0.1434 +0 0.0604 +0 0.1087 +0 0.0673 +0 0.0697 +0 0.0567 +0 0.3442 +0 0.0636 +0 0.0402 +0 0.1879 +0 0.1454 +0 0.1309 +0 0.1682 +0 0.0554 +0 0.1586 +0 0.1386 +0 0.1280 +0 0.2083 +0 0.1267 +0 0.0439 +0 0.1267 +0 0.0817 +0 0.1076 +0 0.0700 +0 0.1367 +0 0.0446 +0 0.1333 +0 0.1337 +0 0.1007 +0 0.2302 +0 0.0646 +0 0.0803 +0 0.2023 +0 0.0981 +0 0.0788 +0 0.1292 +0 0.1215 +0 0.0596 +0 0.0300 +0 0.0977 +0 0.1113 +0 0.0936 +0 0.1310 +0 0.0658 +0 0.1189 +0 0.1413 +0 0.1646 +0 0.0625 +0 0.0686 +0 0.1165 +0 0.0629 +0 0.0794 +0 0.1782 +0 0.2677 +0 0.2209 +0 0.0639 +0 0.1008 +0 0.1022 +0 0.1103 +0 0.0537 +0 0.2240 +0 0.1305 +0 0.0808 +0 0.0763 +0 0.0550 +0 0.1857 +0 0.0547 +0 0.1339 +0 0.0886 +0 0.0674 +0 0.0808 +0 0.2725 +0 0.0847 +0 0.2055 +0 0.1412 +0 0.0603 +0 0.1537 +0 0.3154 +0 0.4588 +0 0.0688 +0 0.1825 +0 0.1719 +0 0.0483 +0 0.0696 +0 0.1037 +0 0.0554 +0 0.0616 +0 0.0979 +0 0.1031 +0 0.0520 +0 0.1499 +0 0.1899 +0 0.0892 +0 0.1477 +0 0.0427 +0 0.0685 +0 0.0699 +0 0.1047 +0 0.1220 +0 0.1270 +0 0.0961 +0 0.1292 +0 0.1359 +0 0.1318 +0 0.0727 +0 0.1035 +0 0.0905 +0 0.2380 +0 0.2677 +0 0.2052 +0 0.1521 +0 0.6162 +0 0.2757 +0 0.2013 +0 0.1289 +0 0.0388 +0 0.1598 +0 0.2720 +0 0.1139 +0 0.1862 +0 0.0965 +0 0.2952 +0 0.1594 +0 0.1215 +0 0.2024 +0 0.0416 +0 0.1963 +0 0.0387 +0 0.0595 +0 0.1537 +0 0.3907 +0 0.0374 +0 0.2815 +0 0.0367 +0 0.0668 +0 0.0505 +0 0.0295 +0 0.7003 +0 0.5185 +0 0.3045 +0 0.1282 +0 0.1301 +0 0.2136 +0 0.1330 +0 0.3519 +0 0.1097 +0 0.1288 +0 0.0977 +0 0.0629 +0 0.3012 +0 0.2320 +0 0.0836 +0 0.0460 +0 0.0927 +0 0.0887 +0 0.0626 +0 0.0451 +0 0.1681 +0 0.0805 +0 0.0749 +0 0.0412 +0 0.1345 +0 0.1475 +0 0.1031 +0 0.3877 +0 0.1073 +0 0.0776 +0 0.0537 +0 0.1895 +0 0.2716 +0 0.0530 +0 0.0935 +0 0.6952 +0 0.0971 +0 0.1864 +0 0.3642 +0 0.1412 +0 0.0796 +0 0.0328 +0 0.1078 +0 0.1833 +0 0.3230 +0 0.0877 +0 0.0869 +0 0.0810 +0 0.5291 +0 0.1343 +0 0.0374 +0 0.0784 +0 0.1494 +0 0.1091 +0 0.0622 +0 0.0941 +0 0.0719 +0 0.1893 +0 0.3708 +0 0.0490 +0 0.2258 +0 0.2492 +0 0.0713 +0 0.0633 +0 0.0939 +0 0.4228 +0 0.0670 +0 0.1330 +0 0.1062 +0 0.1107 +0 0.2726 +0 0.0975 +1 0.8642 +0 0.0775 +0 0.0467 +0 0.0687 +0 0.0849 +0 0.1805 +0 0.0463 +0 0.1426 +0 0.3576 +0 0.1493 +0 0.1596 +0 0.2177 +0 0.1089 +0 0.1861 +0 0.1032 +0 0.0853 +0 0.1821 +0 0.1817 +0 0.2047 +0 0.0791 +0 0.2085 +0 0.0783 +0 0.3593 +0 0.1169 +0 0.0933 +0 0.1498 +0 0.2297 +0 0.1957 +0 0.1420 +0 0.0606 +0 0.1311 +0 0.0831 +0 0.0581 +0 0.0577 +0 0.2340 +0 0.1683 +0 0.0950 +0 0.0910 +0 0.1432 +0 0.1602 +0 0.1188 +0 0.1217 +0 0.0573 +0 0.0633 +0 0.0319 +0 0.1898 +0 0.0747 +1 0.7589 +0 0.2616 +0 0.0772 +0 0.0883 +0 0.0738 +0 0.0976 +0 0.0661 +0 0.0849 +0 0.0855 +0 0.0952 +0 0.0820 +0 0.1223 +0 0.2961 +0 0.2469 +0 0.1920 +0 0.3168 +0 0.0905 +0 0.0774 +0 0.0728 +0 0.1048 +0 0.0768 +0 0.1792 +0 0.1112 +0 0.5650 +0 0.0542 +0 0.0854 +0 0.0932 +0 0.1602 +0 0.0896 +0 0.0868 +0 0.1612 +0 0.1028 +0 0.4965 +0 0.1578 +0 0.0386 +0 0.0730 +0 0.1434 +0 0.1590 +0 0.0508 +0 0.0853 +0 0.0557 +1 0.5094 +0 0.0627 +0 0.1090 +0 0.1120 +0 0.1406 +0 0.7171 +0 0.3958 +0 0.0522 +0 0.1088 +0 0.1228 +0 0.1284 +0 0.0867 +0 0.5123 +0 0.0701 +0 0.0562 +0 0.1316 +0 0.2919 +0 0.0828 +0 0.1041 +0 0.3242 +0 0.2777 +0 0.0826 +0 0.0540 +0 0.0650 +0 0.1415 +0 0.1281 +0 0.4138 +0 0.0400 +0 0.2569 +0 0.0363 +0 0.0950 +0 0.1319 +0 0.0824 +0 0.2124 +0 0.1252 +0 0.0823 +0 0.1319 +0 0.1588 +0 0.1139 +0 0.0571 +0 0.1394 +0 0.2093 +0 0.1904 +0 0.0822 +0 0.0446 +0 0.0876 +0 0.5074 +0 0.2093 +0 0.1398 +0 0.0951 +0 0.1094 +0 0.0804 +0 0.1075 +0 0.2115 +0 0.0931 +0 0.0606 +0 0.3110 +0 0.0769 +0 0.0737 +0 0.1600 +0 0.0397 +0 0.0383 +0 0.0884 +0 0.0925 +0 0.1915 +0 0.0586 +0 0.2396 +0 0.1138 +0 0.0875 +0 0.0308 +0 0.0417 +0 0.0759 +0 0.1069 +0 0.2735 +0 0.2019 +0 0.1036 +0 0.0768 +0 0.0981 +0 0.0972 +0 0.1534 +0 0.6868 +0 0.2395 +0 0.0909 +0 0.4025 +0 0.3505 +0 0.0606 +0 0.2057 +0 0.1589 +0 0.1708 +1 0.8691 +0 0.2531 +0 0.0988 +0 0.0679 +0 0.0842 +0 0.4231 +0 0.0797 +0 0.4239 +0 0.0832 +0 0.1201 +0 0.2352 +0 0.1961 +0 0.0986 +0 0.0429 +0 0.1046 +0 0.0993 +0 0.0662 +0 0.0771 +0 0.1175 +0 0.1918 +0 0.1177 +0 0.1237 +0 0.0431 +0 0.0959 +0 0.5990 +0 0.0559 +0 0.0608 +0 0.0420 +0 0.6964 +0 0.0544 +0 0.1079 +0 0.2091 +0 0.1642 +0 0.0635 +0 0.2004 +0 0.2158 +0 0.2157 +0 0.1454 +0 0.0619 +0 0.1007 +0 0.0967 +0 0.1340 +0 0.0753 +0 0.0467 +0 0.0685 +0 0.0962 +0 0.0788 +0 0.1193 +0 0.0700 +0 0.0918 +1 0.7980 +0 0.5591 +0 0.5842 +0 0.2224 +0 0.5490 +0 0.2260 +0 0.0829 +0 0.0761 +0 0.0776 +0 0.0716 +0 0.0719 +0 0.3829 +0 0.0855 +0 0.0502 +0 0.0566 +0 0.1335 +0 0.0639 +0 0.0591 +0 0.0661 +0 0.5601 +0 0.0503 +0 0.0885 +0 0.0593 +0 0.0705 +0 0.0695 +0 0.1765 +0 0.1389 +0 0.3162 +0 0.1282 +0 0.1116 +0 0.1946 +1 0.8342 +0 0.6729 +0 0.1458 +0 0.1547 +0 0.0542 +0 0.1885 +0 0.0619 +0 0.1420 +0 0.0930 +0 0.0917 +0 0.1393 +1 0.8012 +1 0.8593 +0 0.5930 +0 0.0649 +0 0.0941 +0 0.0672 +1 0.8692 +0 0.1414 +0 0.1022 +0 0.0837 +0 0.2082 +0 0.2244 +0 0.0785 +0 0.3093 +0 0.1086 +0 0.0568 +0 0.1576 +0 0.0749 +0 0.0612 +0 0.0542 +0 0.0676 +0 0.0906 +0 0.0941 +0 0.1433 +0 0.5422 +0 0.2161 +0 0.0730 +0 0.0525 +0 0.0530 +0 0.1025 +0 0.0975 +0 0.2896 +0 0.1335 +0 0.0619 +0 0.1649 +0 0.0613 +0 0.0736 +0 0.0314 +0 0.3928 +0 0.1845 +0 0.1171 +0 0.0901 +0 0.0586 +0 0.1015 +0 0.0434 +0 0.1343 +0 0.1901 +0 0.0730 +0 0.2136 +0 0.0644 +0 0.0882 +0 0.0517 +0 0.0649 +0 0.0690 +0 0.1061 +0 0.0936 +0 0.0771 +0 0.1420 +0 0.0899 +0 0.0624 +0 0.1287 +0 0.0705 +0 0.0834 +0 0.1444 +0 0.0300 +0 0.2022 +0 0.1322 +0 0.1139 +0 0.1183 +0 0.0951 +0 0.5012 +0 0.1071 +0 0.1999 +0 0.0741 +0 0.0636 +0 0.4557 +0 0.0904 +0 0.1097 +0 0.1036 +0 0.0878 +0 0.2315 +0 0.0745 +0 0.1617 +0 0.0403 +0 0.1167 +0 0.0835 +0 0.1150 +0 0.0965 +0 0.1479 +0 0.0584 +0 0.1101 +0 0.3148 +0 0.0981 +0 0.0906 +0 0.1343 +0 0.0965 +0 0.1183 +0 0.1051 +0 0.0796 +0 0.0495 +0 0.0673 +0 0.3217 +0 0.0900 +0 0.2179 +0 0.1580 +0 0.0863 +0 0.2413 +0 0.0597 +0 0.1556 +0 0.1000 +0 0.0757 +0 0.0892 +0 0.0689 +0 0.1464 +0 0.2245 +0 0.0990 +0 0.0925 +0 0.0983 +0 0.0840 +0 0.6571 +0 0.1928 +0 0.0744 +0 0.0588 +0 0.1436 +0 0.0587 +0 0.3017 +0 0.0779 +0 0.2302 +0 0.0816 +0 0.1176 +0 0.0821 +0 0.1009 +0 0.0665 +0 0.0548 +0 0.1891 +0 0.0951 +0 0.0770 +0 0.1901 +0 0.0346 +0 0.1050 +0 0.1142 +0 0.0624 +0 0.0750 +0 0.0748 +0 0.1530 +0 0.0714 +0 0.0888 +0 0.0726 +0 0.1006 +0 0.0769 +0 0.0652 +0 0.0918 +0 0.0956 +0 0.0804 +0 0.1188 +0 0.0612 +0 0.1143 +0 0.1789 +0 0.0516 +0 0.1114 +0 0.1537 +0 0.0609 +0 0.2155 +0 0.0855 +0 0.1317 +0 0.1342 +0 0.0477 +0 0.1513 +0 0.1163 +0 0.2875 +0 0.0374 +0 0.0852 +0 0.1807 +0 0.0587 +0 0.3013 +0 0.0654 +0 0.0996 +0 0.0889 +0 0.0742 +0 0.1621 +0 0.0738 +0 0.0620 +0 0.6756 +0 0.0815 +0 0.0913 +0 0.1427 +0 0.0470 +0 0.0886 +0 0.0510 +0 0.0578 +0 0.1796 +0 0.1184 +0 0.1674 +0 0.0471 +0 0.1093 +0 0.0748 +0 0.1698 +0 0.0567 +0 0.1422 +0 0.1079 +0 0.0776 +0 0.0545 +0 0.1324 +0 0.1666 +0 0.1928 +0 0.1170 +0 0.0711 +0 0.5262 +0 0.4843 +0 0.0724 +0 0.0556 +0 0.2717 +0 0.1086 +0 0.0918 +0 0.7138 +0 0.1585 +0 0.1818 +0 0.0622 +0 0.0814 +0 0.5212 +0 0.1802 +0 0.0583 +0 0.0404 +0 0.1197 +0 0.1038 +0 0.0395 +0 0.0409 +0 0.0813 +0 0.1054 +0 0.0688 +0 0.1202 +0 0.0472 +0 0.2403 +0 0.0735 +0 0.0721 +0 0.0933 +0 0.0506 +0 0.2151 +0 0.1360 +0 0.2704 +0 0.1163 +0 0.0953 +0 0.0823 +0 0.1186 +0 0.0610 +0 0.0651 +0 0.1153 +0 0.2043 +0 0.0477 +0 0.0707 +0 0.1234 +0 0.0646 +0 0.1799 +0 0.3414 +0 0.2117 +0 0.2053 +0 0.2089 +0 0.0518 +0 0.5053 +1 0.7515 +0 0.0723 +0 0.1020 +1 0.7875 +0 0.2064 +0 0.0857 +0 0.3572 +0 0.1054 +0 0.4867 +0 0.1263 +0 0.1082 +0 0.0742 +0 0.1095 +0 0.1275 +0 0.0369 +0 0.5395 +0 0.1112 +0 0.1087 +0 0.0822 +0 0.7203 +0 0.2002 +0 0.2252 +0 0.2579 +0 0.0831 +0 0.0699 +0 0.3746 +0 0.4943 +0 0.0567 +0 0.0927 +0 0.1030 +0 0.2123 +0 0.1644 +0 0.0650 +0 0.4788 +0 0.0695 +0 0.1263 +0 0.1982 +0 0.1110 +0 0.1272 +0 0.1757 +0 0.3150 +0 0.1222 +0 0.0904 +0 0.0798 +0 0.0579 +0 0.1302 +0 0.0772 +0 0.1118 +0 0.0682 +0 0.1411 +0 0.0867 +0 0.0800 +0 0.0875 +0 0.1085 +0 0.0912 +0 0.0365 +0 0.0449 +0 0.1086 +0 0.1068 +0 0.1843 +0 0.2089 +0 0.2089 +0 0.0684 +0 0.0599 +0 0.1164 +0 0.1514 +0 0.1279 +0 0.0824 +0 0.2596 +0 0.0631 +0 0.5104 +0 0.2675 +0 0.1517 +0 0.0741 +0 0.4889 +0 0.1105 +0 0.0785 +0 0.1367 +0 0.0479 +0 0.0473 +0 0.1315 +0 0.0523 +0 0.0807 +0 0.2850 +0 0.0789 +0 0.1814 +0 0.1049 +0 0.1264 +0 0.2000 +0 0.0749 +0 0.0943 +0 0.0795 +0 0.1999 +0 0.1735 +0 0.5568 +0 0.2021 +0 0.3864 +0 0.1237 +0 0.1522 +0 0.6749 +0 0.0788 +0 0.3266 +0 0.0692 +0 0.0795 +0 0.0634 +0 0.1374 +0 0.0636 +0 0.1214 +0 0.1028 +0 0.1912 +0 0.0696 +0 0.1165 +0 0.2205 +0 0.1197 +0 0.0729 +0 0.0851 +0 0.3189 +0 0.0882 +0 0.1036 +0 0.1162 +0 0.0672 +0 0.2134 +0 0.0664 +0 0.0774 +0 0.1962 +0 0.2134 +0 0.3013 +0 0.0795 +0 0.0812 +0 0.1421 +0 0.0722 +0 0.3376 +0 0.1323 +0 0.0608 +0 0.0944 +0 0.0962 +0 0.0798 +0 0.5298 +0 0.0609 +0 0.0499 +0 0.1637 +0 0.0883 +0 0.2352 +0 0.1004 +0 0.1179 +0 0.1756 +0 0.6904 +0 0.0653 +0 0.1253 +0 0.1532 +0 0.0458 +0 0.0396 +0 0.0624 +0 0.0692 +0 0.2254 +0 0.0415 +0 0.1144 +0 0.2023 +0 0.1760 +0 0.1265 +0 0.4661 +0 0.1099 +0 0.1344 +0 0.0934 +0 0.1073 +0 0.0565 +0 0.1001 +1 0.7977 +0 0.0345 +0 0.2634 +0 0.1711 +0 0.5341 +0 0.0625 +0 0.0389 +1 0.7612 +0 0.5469 +0 0.0466 +0 0.1238 +0 0.2329 +0 0.2455 +0 0.2647 +0 0.1056 +0 0.0802 +0 0.0492 +0 0.2922 +0 0.0636 +0 0.0368 +0 0.0798 +0 0.0766 +0 0.0812 +0 0.1456 +0 0.6865 +0 0.0503 +0 0.1636 +0 0.0846 +0 0.0614 +0 0.0335 +0 0.0982 +0 0.0450 +0 0.2078 +0 0.0943 +0 0.1784 +0 0.0902 +0 0.0897 +0 0.0799 +0 0.0916 +1 0.7913 +0 0.0766 +0 0.5315 +0 0.2187 +0 0.0561 +0 0.0541 +0 0.1817 +0 0.0345 +0 0.0837 +0 0.0663 +0 0.2280 +0 0.0562 +0 0.3413 +0 0.0450 +0 0.0796 +0 0.2496 +0 0.1957 +0 0.1280 +0 0.0739 +0 0.1456 +0 0.0928 +0 0.0766 +0 0.0841 +0 0.2880 +0 0.0941 +0 0.2055 +0 0.0824 +0 0.0756 +0 0.0869 +0 0.0848 +0 0.2041 +0 0.7026 +0 0.1627 +0 0.1881 +0 0.0409 +0 0.0863 +0 0.0821 +0 0.2369 +0 0.0895 +0 0.0822 +0 0.0650 +0 0.1519 +0 0.1542 +0 0.0686 +0 0.1088 +0 0.0402 +0 0.0812 +0 0.1652 +0 0.4616 +0 0.0596 +0 0.1363 +0 0.1373 +0 0.0637 +0 0.0631 +0 0.0427 +0 0.2191 +0 0.0800 +1 0.7542 +0 0.0438 +0 0.1057 +0 0.1498 +0 0.1841 +0 0.1015 +0 0.0599 +0 0.2040 +0 0.0536 +0 0.1089 +0 0.5211 +1 0.7738 +0 0.0736 +0 0.0535 +0 0.0962 +0 0.0762 +0 0.0739 +0 0.1100 +0 0.0874 +0 0.0639 +0 0.0782 +0 0.0829 +0 0.1879 +0 0.0865 +0 0.1230 +0 0.1190 +0 0.3037 +0 0.0733 +0 0.0779 +0 0.2216 +0 0.0480 +0 0.1295 +0 0.1079 +0 0.0827 +0 0.2442 +0 0.0986 +0 0.1514 +0 0.0911 +0 0.0652 +0 0.1172 +0 0.1868 +0 0.1482 +0 0.0834 +0 0.1084 +0 0.1283 +0 0.3271 +0 0.0635 +0 0.2244 +0 0.0660 +0 0.1132 +0 0.1509 +0 0.1076 +0 0.0468 +0 0.4454 +0 0.0910 +0 0.0909 +0 0.2627 +0 0.0630 +0 0.3824 +0 0.1654 +0 0.1161 +0 0.2729 +0 0.0965 +0 0.1027 +0 0.0533 +0 0.0544 +0 0.5906 +0 0.2149 +0 0.3223 +0 0.1530 +0 0.3053 +0 0.1274 +0 0.2649 +0 0.1064 +0 0.0933 +0 0.2121 +0 0.0889 +0 0.2301 +0 0.0609 +0 0.5058 +0 0.0889 +0 0.2640 +0 0.0879 +0 0.0602 +0 0.0762 +0 0.0825 +0 0.2482 +0 0.1156 +0 0.1714 +0 0.0571 +0 0.1305 +0 0.1133 +0 0.1946 +1 0.8277 +0 0.0850 +0 0.0764 +0 0.0582 +0 0.0429 +0 0.1053 +0 0.3919 +0 0.0782 +0 0.0954 +0 0.2271 +1 0.7825 +0 0.0673 +0 0.0577 +0 0.1397 +0 0.0814 +0 0.1455 +0 0.0782 +0 0.1157 +0 0.0816 +0 0.1724 +0 0.0646 +0 0.1339 +0 0.2286 +0 0.1134 +0 0.2099 +1 0.8606 +0 0.0700 +0 0.0833 +1 0.8173 +0 0.0504 +0 0.1181 +0 0.0861 +0 0.0481 +0 0.2514 +0 0.0500 +0 0.0799 +0 0.1577 +0 0.1063 +0 0.1358 +0 0.0469 +0 0.1155 +0 0.0638 +1 0.8399 +0 0.1033 +0 0.1152 +0 0.6255 +0 0.0719 +0 0.0725 +1 0.8751 +0 0.1563 +0 0.0835 +0 0.4191 +0 0.0934 +0 0.1298 +0 0.0548 +0 0.1949 +0 0.0681 +0 0.0849 +0 0.1557 +0 0.0696 +0 0.1342 +0 0.1035 +0 0.2714 +0 0.0670 +0 0.0930 +0 0.1092 +0 0.1652 +0 0.1214 +0 0.1130 +0 0.1779 +0 0.1664 +0 0.2435 +0 0.0705 +0 0.2220 +0 0.5360 +0 0.1008 +0 0.4193 +0 0.1324 +0 0.1009 +0 0.0917 +0 0.0852 +0 0.0606 +0 0.1056 +0 0.1844 +0 0.2874 +0 0.0821 +0 0.1125 +0 0.4089 +0 0.0701 +0 0.0601 +0 0.1617 +0 0.0567 +0 0.0849 +0 0.0679 +0 0.0830 +0 0.0959 +0 0.0675 +1 0.7627 +0 0.1122 +0 0.0728 +0 0.1893 +0 0.0627 +0 0.1095 +0 0.0732 +1 0.7991 +0 0.0997 +1 0.8452 +0 0.0925 +0 0.1107 +1 0.8354 +0 0.1353 +0 0.3446 +0 0.0625 +0 0.0706 +0 0.3299 +0 0.0376 +0 0.1082 +0 0.1756 +0 0.1233 +0 0.1262 +1 0.7610 +0 0.0776 +0 0.2815 +0 0.0784 +0 0.1241 +0 0.2108 +0 0.1042 +0 0.0477 +0 0.2429 +0 0.1662 +0 0.0823 +0 0.1077 +0 0.6104 +0 0.0511 +0 0.7276 +0 0.0872 +0 0.3642 +0 0.1039 +0 0.1477 +0 0.0830 +0 0.0865 +0 0.1242 +0 0.1873 +0 0.0934 +0 0.1340 +0 0.0486 +0 0.0520 +0 0.0754 +0 0.0722 +0 0.0463 +0 0.1165 +0 0.1346 +0 0.1487 +0 0.0409 +0 0.1599 +1 0.8265 +0 0.1316 +0 0.1260 +0 0.1616 +0 0.0699 +0 0.1261 +1 0.7711 +0 0.0835 +0 0.0718 +0 0.1115 +0 0.1103 +0 0.2176 +0 0.1147 +0 0.0742 +1 0.7661 +0 0.0954 +0 0.1159 +0 0.2491 +0 0.3010 +0 0.1420 +0 0.2260 +0 0.0970 +0 0.1673 +1 0.7708 +0 0.0981 +0 0.0381 +0 0.0617 +0 0.2935 +0 0.0563 +0 0.0384 +0 0.0697 +0 0.0926 +0 0.1594 +0 0.0357 +0 0.1101 +0 0.1609 +0 0.0413 +0 0.0748 +0 0.1284 +0 0.2026 +0 0.0810 +0 0.2512 +0 0.0886 +0 0.2837 +0 0.0422 +0 0.0644 +0 0.5059 +0 0.1090 +0 0.1247 +0 0.0784 +0 0.0708 +0 0.0542 +0 0.2475 +0 0.3599 +0 0.0638 +0 0.0708 +0 0.1397 +0 0.0548 +0 0.0387 +0 0.1620 +0 0.0804 +1 0.7760 +0 0.0844 +0 0.0976 +0 0.1593 +0 0.1242 +0 0.4094 +0 0.3177 +0 0.0467 +0 0.1019 +0 0.0602 +0 0.0654 +0 0.5561 +0 0.1411 +0 0.0690 +0 0.1010 +1 0.7893 +0 0.2159 +0 0.0958 +0 0.1620 +0 0.0810 +0 0.0370 +0 0.1536 +0 0.2386 +0 0.0464 +0 0.4458 +0 0.0702 +0 0.1634 +0 0.0799 +0 0.5260 +0 0.1268 +0 0.0689 +0 0.1416 +0 0.1848 +0 0.2017 +0 0.1380 +0 0.1860 +0 0.1657 +0 0.1132 +0 0.0651 +0 0.1248 +0 0.2137 +0 0.1580 +0 0.0499 +0 0.1072 +0 0.1693 +0 0.1104 +0 0.0755 +0 0.1217 +0 0.7045 +0 0.0767 +0 0.3829 +0 0.3065 +0 0.0422 +0 0.2537 +0 0.3365 +0 0.0759 +0 0.1241 +0 0.0952 +0 0.7327 +0 0.1023 +0 0.0475 +0 0.0886 +0 0.1140 +0 0.1416 +0 0.2820 +0 0.1992 +0 0.0567 +0 0.1143 +0 0.6502 +0 0.2212 +0 0.1499 +0 0.0482 +0 0.0755 +0 0.3504 +0 0.0694 +0 0.1346 +0 0.2096 +0 0.0360 +0 0.1503 +1 0.7906 +0 0.0905 +0 0.0764 +0 0.1970 +0 0.0457 +0 0.1084 +0 0.0738 +0 0.1379 +0 0.2922 +0 0.0470 +0 0.0844 +0 0.0480 +0 0.0665 +0 0.0963 +0 0.0873 +0 0.0713 +0 0.1428 +0 0.0900 +0 0.0560 +0 0.1335 +0 0.0991 +0 0.0610 +0 0.1160 +0 0.0882 +0 0.0421 +0 0.0683 +0 0.0542 +0 0.0272 +0 0.0991 +0 0.0636 +1 0.8101 +0 0.4870 +0 0.0786 +0 0.1266 +0 0.0414 +0 0.3963 +0 0.0616 +0 0.0656 +0 0.1505 +0 0.0751 +0 0.1571 +0 0.0846 +0 0.2834 +0 0.3378 +0 0.7300 +0 0.0761 +0 0.1001 +0 0.1134 +0 0.0585 +0 0.3669 +0 0.1393 +0 0.0638 +0 0.0409 +0 0.0965 +0 0.2129 +0 0.1627 +0 0.1349 +0 0.0843 +0 0.0860 +0 0.1137 +0 0.1318 +1 0.7843 +0 0.3176 +0 0.1694 +0 0.5870 +0 0.0614 +0 0.0406 +0 0.0391 +0 0.1802 +0 0.0474 +0 0.0781 +0 0.0372 +0 0.2500 +0 0.0418 +0 0.2010 +0 0.2417 +0 0.1586 +0 0.1287 +0 0.0957 +0 0.0725 +0 0.0887 +0 0.1440 +0 0.3824 +0 0.0835 +0 0.1587 +0 0.0763 +0 0.1136 +0 0.3167 +0 0.1288 +0 0.3232 +0 0.0850 +0 0.4086 +0 0.2743 +0 0.5415 +0 0.2634 +0 0.0828 +0 0.5346 +0 0.0506 +0 0.2409 +0 0.1413 +0 0.0798 +0 0.0572 +0 0.1255 +0 0.0934 +0 0.1066 +0 0.0719 +0 0.2125 +0 0.0553 +0 0.2103 +0 0.1384 +0 0.2354 +0 0.1666 +0 0.1252 +0 0.0879 +0 0.0496 +0 0.1425 +0 0.1151 +0 0.0874 +0 0.1059 +0 0.0544 +0 0.0680 +0 0.3310 +0 0.2083 +0 0.3270 +1 0.7516 +0 0.0784 +0 0.1619 +0 0.1313 +0 0.1684 +0 0.1384 +0 0.1140 +0 0.0786 +0 0.3995 +0 0.1330 +0 0.1020 +1 0.8121 +0 0.5681 +0 0.2684 +0 0.0973 +0 0.0727 +0 0.1806 +0 0.1072 +0 0.1228 +0 0.1119 +0 0.0857 +0 0.2193 +0 0.0626 +0 0.0695 +0 0.0618 +0 0.1424 +0 0.0578 +0 0.1957 +0 0.1868 +0 0.1481 +0 0.0931 +0 0.0688 +0 0.0951 +0 0.2202 +0 0.0865 +0 0.7071 +0 0.1271 +0 0.1593 +0 0.1422 +0 0.1114 +0 0.2673 +0 0.1134 +0 0.0747 +0 0.0517 +0 0.0523 +0 0.0517 +0 0.1341 +0 0.1504 +0 0.0568 +0 0.0470 +0 0.0758 +0 0.0577 +0 0.0791 +0 0.1117 +0 0.1303 +0 0.2489 +1 0.8486 +0 0.6785 +0 0.0485 +0 0.0784 +0 0.0618 +0 0.1269 +0 0.0804 +1 0.7768 +0 0.0995 +0 0.1041 +0 0.2304 +0 0.1722 +0 0.1407 +0 0.0682 +0 0.0951 +0 0.2254 +0 0.1084 +0 0.1558 +0 0.1182 +0 0.0925 +1 0.7942 +0 0.0438 +0 0.1179 +0 0.1059 +0 0.1468 +0 0.1202 +0 0.1686 +0 0.1014 +0 0.1543 +0 0.1104 +0 0.1201 +0 0.1554 +0 0.0947 +0 0.1395 +0 0.1333 +0 0.6861 +0 0.0373 +0 0.1446 +0 0.0424 +0 0.1914 +0 0.6352 +0 0.0688 +0 0.1694 +0 0.2754 +0 0.0782 +0 0.0330 +0 0.0878 +0 0.0955 +0 0.3653 +0 0.0463 +0 0.1058 +0 0.1339 +0 0.1403 +0 0.3342 +0 0.0485 +0 0.1015 +0 0.0910 +0 0.0391 +0 0.1238 +0 0.1456 +0 0.3121 +0 0.1343 +0 0.1146 +0 0.1754 +0 0.1254 +0 0.0974 +0 0.1357 +0 0.4742 +0 0.5323 +0 0.1992 +0 0.0814 +0 0.0657 +0 0.1419 +0 0.7474 +0 0.6238 +0 0.2650 +0 0.2352 +0 0.1076 +0 0.0420 +0 0.1047 +0 0.1050 +0 0.0680 +0 0.6133 +0 0.1068 +0 0.0837 +0 0.0599 +0 0.0957 +0 0.1248 +0 0.1222 +0 0.1071 +0 0.0978 +0 0.2083 +0 0.0884 +0 0.4357 +0 0.0953 +0 0.1562 +0 0.2052 +0 0.3387 +0 0.0661 +0 0.0864 +0 0.1338 +0 0.0736 +0 0.0475 +0 0.0741 +0 0.0953 +0 0.1385 +0 0.0343 +0 0.0715 +0 0.1173 +0 0.0752 +0 0.4633 +0 0.0601 +0 0.1177 +0 0.1210 +0 0.0695 +0 0.1105 +0 0.1150 +0 0.0660 +0 0.1052 +0 0.1361 +0 0.0719 +0 0.1283 +0 0.0709 +0 0.0515 +0 0.0810 +0 0.0691 +0 0.1141 +0 0.1021 +0 0.0852 +0 0.1808 +0 0.0848 +0 0.0980 +0 0.2842 +1 0.8682 +0 0.0558 +0 0.0438 +0 0.1301 +0 0.1628 +0 0.0409 +0 0.0537 +0 0.2795 +0 0.0900 +0 0.1172 +0 0.1152 +0 0.0730 +0 0.0614 +0 0.0794 +0 0.1307 +0 0.2688 +0 0.0922 +0 0.0538 +0 0.1168 +0 0.1716 +0 0.0596 +0 0.1161 +0 0.1047 +0 0.2211 +0 0.0697 +0 0.3760 +0 0.0598 +0 0.3211 +0 0.0771 +0 0.0525 +0 0.0971 +0 0.1120 +0 0.0691 +0 0.4092 +0 0.0740 +0 0.1707 +0 0.1280 +0 0.1230 +0 0.1645 +0 0.1224 +0 0.1990 +0 0.0975 +0 0.1603 +0 0.0988 +0 0.0745 +0 0.1346 +0 0.0675 +0 0.0423 +0 0.0918 +0 0.1563 +0 0.1537 +0 0.2463 +0 0.0770 +0 0.1035 +0 0.0846 +0 0.0762 +0 0.1455 +0 0.0738 +0 0.2413 +0 0.7350 +0 0.0818 +0 0.0332 +0 0.1029 +0 0.1055 +0 0.2430 +0 0.1044 +0 0.0739 +0 0.1814 +0 0.4486 +0 0.2210 +0 0.2495 +0 0.2135 +0 0.0612 +0 0.0566 +0 0.3830 +0 0.0609 +0 0.2459 +0 0.1129 +0 0.0743 +0 0.1286 +1 0.7561 +0 0.0800 +0 0.1316 +0 0.1573 +0 0.1536 +0 0.0735 +0 0.0872 +0 0.0786 +0 0.3282 +0 0.1694 +0 0.1224 +0 0.0866 +0 0.1987 +0 0.1473 +0 0.1156 +0 0.1859 +0 0.2149 +0 0.0603 +0 0.0711 +0 0.0745 +0 0.1671 +0 0.3232 +0 0.0761 +0 0.6744 +0 0.1561 +1 0.8376 +0 0.0775 +0 0.1043 +0 0.1072 +0 0.0646 +0 0.2739 +0 0.1415 +0 0.0677 +0 0.0458 +0 0.5015 +0 0.0802 +0 0.1725 +0 0.1080 +0 0.0376 +0 0.0850 +0 0.1033 +0 0.0901 +0 0.3658 +0 0.1019 +0 0.0727 +0 0.1948 +0 0.0831 +0 0.2906 +0 0.0745 +0 0.0648 +0 0.0910 +0 0.1179 +0 0.1282 +0 0.2021 +0 0.0971 +0 0.1115 +0 0.0911 +0 0.0557 +0 0.1443 +0 0.0784 +0 0.1312 +0 0.2765 +0 0.1916 +0 0.0693 +0 0.0695 +0 0.0949 +0 0.1440 +0 0.3131 +0 0.2159 +0 0.7011 +0 0.0968 +0 0.0454 +0 0.1814 +0 0.1962 +0 0.0578 +0 0.0763 +0 0.0579 +0 0.0759 +0 0.0673 +0 0.0610 +0 0.1076 +0 0.4020 +0 0.1034 +0 0.1199 +0 0.1987 +0 0.1006 +0 0.2395 +0 0.1708 +0 0.0744 +0 0.1338 +0 0.5200 +0 0.0788 +0 0.1167 +0 0.4929 +0 0.3669 +0 0.0731 +0 0.1587 +0 0.2350 +0 0.1715 +0 0.0670 +0 0.1428 +0 0.1037 +0 0.1439 +0 0.1139 +0 0.1314 +0 0.1319 +0 0.0643 +0 0.1656 +0 0.0569 +0 0.0913 +0 0.0505 +0 0.0576 +0 0.1001 +0 0.1703 +0 0.0807 +0 0.0452 +0 0.1644 +0 0.2057 +0 0.1967 +0 0.0731 +0 0.0958 +0 0.1043 +0 0.1239 +0 0.1004 +0 0.0724 +0 0.1009 +0 0.0503 +0 0.1422 +0 0.3277 +0 0.0977 +0 0.2743 +0 0.2851 +0 0.0567 +0 0.6641 +0 0.1363 +0 0.6753 +0 0.0660 +0 0.0647 +0 0.1215 +0 0.1301 +0 0.1192 +0 0.1054 +0 0.3950 +0 0.0877 +0 0.0632 +0 0.1032 +0 0.0713 +0 0.1298 +0 0.0959 +0 0.1206 +0 0.0551 +0 0.0640 +0 0.2371 +0 0.1210 +0 0.1324 +0 0.1326 +0 0.1574 +0 0.0713 +0 0.1730 +0 0.1005 +0 0.1242 +0 0.3805 +0 0.4011 +0 0.1363 +0 0.1033 +0 0.5039 +0 0.3061 +0 0.0733 +0 0.0791 +0 0.7275 +0 0.1362 +0 0.1732 +0 0.0563 +1 0.7695 +0 0.1195 +0 0.0491 +0 0.0697 +0 0.1398 +0 0.0716 +0 0.1322 +0 0.0611 +0 0.0765 +0 0.1294 +0 0.0736 +0 0.0902 +0 0.0946 +0 0.0542 +0 0.0839 +0 0.1798 +0 0.0566 +0 0.2634 +0 0.3556 +0 0.2903 +0 0.0293 +0 0.1064 +0 0.1910 +0 0.4253 +0 0.0555 +0 0.1374 +0 0.2379 +0 0.3035 +0 0.1287 +1 0.8577 +0 0.0742 +0 0.1263 +0 0.1476 +0 0.1248 +0 0.0671 +0 0.3119 +0 0.3519 +0 0.0752 +0 0.3333 +0 0.3022 +1 0.7716 +0 0.1755 +0 0.0728 +0 0.4519 +0 0.1234 +0 0.1938 +0 0.5620 +0 0.1841 +0 0.0822 +0 0.4417 +0 0.0740 +0 0.1397 +0 0.0640 +0 0.2172 +0 0.1238 +0 0.1065 +0 0.0700 +0 0.0916 +0 0.2861 +0 0.5757 +0 0.7033 +0 0.0883 +0 0.1023 +0 0.1013 +0 0.1394 +0 0.1550 +0 0.0878 +0 0.0845 +0 0.1952 +0 0.0673 +0 0.1141 +0 0.0608 +0 0.4079 +0 0.0431 +0 0.0828 +0 0.0482 +0 0.2410 +0 0.0941 +0 0.2734 +0 0.0684 +0 0.2617 +0 0.0503 +0 0.2915 +0 0.2476 +0 0.1273 +0 0.1731 +0 0.1183 +0 0.1744 +0 0.0819 +0 0.0980 +0 0.2251 +0 0.1617 +0 0.0726 +0 0.2023 +0 0.1327 +0 0.1434 +0 0.1498 +0 0.1750 +0 0.0325 +0 0.0477 +0 0.0733 +0 0.1131 +0 0.0822 +0 0.1613 +0 0.0448 +0 0.1372 +0 0.0788 +0 0.0581 +0 0.0656 +0 0.0656 +0 0.2109 +0 0.3563 +0 0.1033 +0 0.0777 +0 0.0904 +0 0.0889 +0 0.1012 +0 0.1488 +0 0.7214 +0 0.2356 +0 0.0855 +0 0.3792 +0 0.2300 +0 0.0749 +0 0.0740 +0 0.0570 +0 0.2991 +0 0.1059 +0 0.0711 +0 0.0633 +0 0.2806 +0 0.5570 +0 0.0573 +0 0.0635 +0 0.0482 +0 0.0338 +0 0.1075 +0 0.0525 +0 0.5400 +0 0.1427 +0 0.0965 +0 0.1820 +0 0.1080 +0 0.0685 +0 0.0501 +0 0.0416 +0 0.1266 +0 0.1124 +0 0.1793 +0 0.0690 +0 0.0975 +0 0.0478 +0 0.1494 +0 0.0856 +0 0.0670 +0 0.1073 +0 0.1575 +0 0.1014 +0 0.2489 +0 0.1261 +0 0.1061 +0 0.1179 +0 0.2629 +0 0.6201 +0 0.0418 +0 0.0366 +0 0.0803 +0 0.2324 +0 0.0872 +0 0.1556 +0 0.0525 +0 0.1097 +0 0.0417 +0 0.0814 +0 0.3260 +0 0.0435 +0 0.2021 +1 0.8506 +0 0.0674 +0 0.6844 +0 0.1771 +0 0.2050 +0 0.2631 +0 0.1074 +0 0.0648 +0 0.0474 +1 0.8147 +0 0.0455 +0 0.1492 +0 0.4047 +0 0.3830 +0 0.0861 +0 0.2247 +0 0.1433 +0 0.0804 +0 0.0714 +0 0.0348 +0 0.0630 +0 0.1070 +0 0.1908 +0 0.1292 +0 0.0577 +0 0.1911 +0 0.1730 +0 0.0580 +0 0.0783 +0 0.0738 +0 0.0542 +0 0.0949 +0 0.0861 +0 0.0824 +0 0.1078 +0 0.1349 +0 0.0672 +1 0.7677 +0 0.1177 +0 0.0929 +0 0.1013 +0 0.1913 +0 0.0435 +0 0.0666 +0 0.1754 +0 0.2224 +0 0.2671 +0 0.0608 +0 0.1647 +0 0.0507 +0 0.7018 +0 0.1163 +0 0.1795 +0 0.0977 +0 0.0838 +0 0.0782 +0 0.2023 +0 0.2524 +0 0.0672 +0 0.0879 +0 0.1097 +0 0.0752 +0 0.7482 +0 0.0797 +0 0.0486 +0 0.1728 +0 0.0478 +0 0.1025 +0 0.2169 +1 0.7986 +0 0.5315 +0 0.0904 +0 0.2168 +0 0.0630 +0 0.1174 +0 0.0825 +0 0.0457 +0 0.1159 +0 0.0393 +0 0.1327 +0 0.2608 +0 0.4373 +0 0.0912 +0 0.5786 +0 0.1425 +0 0.0637 +0 0.1548 +0 0.0453 +0 0.0660 +1 0.8564 +0 0.0513 +0 0.4585 +0 0.2058 +0 0.0433 +0 0.1763 +0 0.0801 +0 0.1153 +0 0.0495 +0 0.1684 +0 0.3442 +0 0.1023 +0 0.0999 +0 0.1828 +0 0.0506 +0 0.3709 +0 0.1861 +0 0.3532 +0 0.1626 +0 0.0507 +0 0.0798 +0 0.1836 +0 0.0979 +0 0.0571 +0 0.0736 +0 0.2405 +0 0.4341 +0 0.1178 +0 0.1226 +0 0.0653 +0 0.1580 +0 0.0803 +0 0.0752 +0 0.0555 +0 0.0598 +0 0.0946 +0 0.1503 +0 0.0976 +0 0.1992 +0 0.0633 +0 0.1104 +0 0.0545 +0 0.0573 +0 0.1975 +0 0.1576 +0 0.0487 +0 0.1752 +0 0.1610 +0 0.1092 +0 0.0715 +0 0.0582 +0 0.0726 +0 0.0461 +0 0.1108 +0 0.2801 +0 0.0902 +0 0.0684 +0 0.0719 +0 0.1129 +0 0.0580 +0 0.1051 +0 0.0412 +0 0.2372 +0 0.2123 +0 0.0548 +0 0.3365 +0 0.1766 +0 0.0862 +0 0.0659 +0 0.1782 +0 0.1376 +0 0.0439 +0 0.2107 +0 0.1508 +0 0.0697 +0 0.0842 +0 0.2572 +0 0.0630 +0 0.1503 +0 0.0858 +0 0.0292 +0 0.1316 +0 0.1201 +0 0.1821 +0 0.0719 +0 0.0826 +0 0.0681 +0 0.0484 +0 0.2323 +0 0.1958 +0 0.0830 +0 0.4862 +0 0.0945 +0 0.0756 +0 0.0755 +0 0.0703 +0 0.1201 +0 0.0667 +0 0.0624 +0 0.1317 +0 0.3397 +0 0.0808 +0 0.1960 +0 0.0843 +0 0.1803 +0 0.0596 +0 0.0913 +0 0.1014 +0 0.1106 +0 0.1422 +0 0.0804 +0 0.1253 +1 0.8186 +0 0.2314 +0 0.5352 +0 0.0919 +0 0.0748 +0 0.0895 +0 0.0896 +0 0.1568 +0 0.4309 +0 0.1008 +0 0.1827 +0 0.0792 +0 0.4496 +0 0.1240 +0 0.2973 +0 0.1179 +0 0.1576 +0 0.2484 +0 0.3449 +0 0.2297 +0 0.0469 +0 0.0708 +0 0.0746 +0 0.2147 +0 0.2088 +0 0.1449 +0 0.0883 +0 0.0816 +0 0.0980 +0 0.0978 +0 0.0682 +0 0.0616 +0 0.1230 +0 0.1215 +0 0.1607 +0 0.1035 +0 0.1806 +0 0.0806 +0 0.0944 +0 0.1230 +0 0.0542 +0 0.0542 +0 0.1864 +0 0.0751 +0 0.1923 +0 0.1882 +0 0.0959 +0 0.1510 +0 0.1086 +0 0.0850 +0 0.1037 +0 0.0668 +0 0.1898 +0 0.0737 +0 0.1128 +0 0.1179 +0 0.0412 +0 0.1631 +0 0.0490 +0 0.2493 +0 0.0632 +0 0.3062 +0 0.1331 +0 0.2066 +0 0.0979 +0 0.1987 +0 0.3666 +0 0.2096 +0 0.1556 +0 0.0417 +0 0.0482 +0 0.0796 +0 0.0463 +0 0.5096 +0 0.0763 +0 0.0850 +0 0.0734 +0 0.0425 +0 0.1201 +0 0.0618 +0 0.0960 +0 0.6303 +0 0.0782 +0 0.0784 +0 0.1339 +0 0.0647 +0 0.1138 +0 0.2076 +0 0.0490 +0 0.1310 +0 0.1705 +0 0.2135 +0 0.0894 +0 0.0673 +1 0.8243 +0 0.0499 +0 0.0426 +0 0.0914 +0 0.1321 +0 0.0836 +0 0.1089 +0 0.1257 +0 0.1193 +0 0.1261 +0 0.0673 +0 0.0599 +0 0.2012 +0 0.0488 +0 0.1776 +0 0.1977 +0 0.1567 +0 0.0399 +0 0.0800 +0 0.1773 +0 0.1496 +0 0.1601 +0 0.1740 +0 0.0921 +0 0.1094 +0 0.1230 +0 0.0835 +0 0.1097 +0 0.0557 +0 0.1922 +0 0.1252 +0 0.1727 +0 0.1053 +0 0.0716 +0 0.0948 +0 0.0940 +0 0.1310 +0 0.2583 +0 0.1284 +0 0.1982 +0 0.0772 +0 0.1253 +0 0.0731 +0 0.0975 +0 0.0782 +0 0.4265 +0 0.0669 +0 0.1155 +0 0.1520 +0 0.0814 +0 0.0699 +0 0.1133 +0 0.1690 +0 0.0597 +0 0.1482 +0 0.0917 +0 0.1825 +0 0.1602 +0 0.0682 +0 0.0931 +0 0.1431 +0 0.1563 +0 0.0812 +1 0.7956 +0 0.2222 +0 0.2543 +0 0.1328 +0 0.0857 +0 0.0644 +0 0.0389 +0 0.1044 +0 0.0874 +0 0.1099 +0 0.2960 +0 0.1065 +0 0.5203 +0 0.1518 +0 0.3385 +0 0.1229 +0 0.1248 +0 0.2589 +0 0.1813 +0 0.0944 +0 0.0399 +0 0.1287 +0 0.3631 +0 0.3093 +0 0.4874 +0 0.0567 +0 0.0718 +0 0.2424 +0 0.1220 +0 0.0724 +0 0.1843 +0 0.1289 +0 0.0850 +0 0.0798 +0 0.1012 +0 0.0668 +0 0.1280 +0 0.0711 +0 0.0451 +0 0.0747 +0 0.0685 +0 0.0773 +0 0.0698 +0 0.1491 +0 0.1907 +0 0.1993 +0 0.0795 +0 0.1463 +0 0.0520 +0 0.2810 +0 0.1819 +0 0.1025 +0 0.0415 +0 0.0981 +0 0.2782 +0 0.0722 +0 0.2801 +0 0.0728 +0 0.1456 +0 0.3511 +0 0.0705 +0 0.0765 +0 0.3009 +0 0.5842 +0 0.0688 +0 0.0944 +0 0.0956 +0 0.1112 +0 0.1665 +0 0.0921 +0 0.0617 +0 0.1317 +0 0.2039 +0 0.0756 +0 0.3189 +0 0.0838 +0 0.1214 +0 0.2172 +1 0.2295 +0 0.0500 +0 0.0559 +0 0.1540 +0 0.1495 +1 0.8700 +0 0.0979 +0 0.0369 +0 0.0430 +0 0.0929 +0 0.2144 +0 0.0771 +0 0.1592 +0 0.0647 +0 0.1564 +0 0.1024 +0 0.5273 +0 0.1050 +0 0.1454 +0 0.1518 +0 0.0501 +0 0.0806 +0 0.1540 +0 0.1334 +0 0.0598 +0 0.0484 +0 0.1311 +0 0.0529 +0 0.0390 +0 0.0959 +0 0.1366 +0 0.0666 +0 0.0374 +0 0.1296 +0 0.4167 +0 0.0397 +1 0.7730 +0 0.0693 +0 0.0880 +0 0.0786 +0 0.1119 +0 0.0660 +0 0.1179 +0 0.0526 +0 0.0874 +0 0.3097 +0 0.0928 +0 0.0629 +0 0.0747 +0 0.0375 +0 0.1311 +0 0.1880 +0 0.0814 +0 0.0905 +0 0.1393 +0 0.1512 +0 0.0954 +0 0.0645 +0 0.0841 +0 0.1453 +0 0.0582 +0 0.1330 +0 0.5360 +0 0.0843 +0 0.2426 +0 0.2160 +0 0.2936 +0 0.5597 +0 0.0738 +0 0.0986 +0 0.1056 +0 0.0969 +0 0.1273 +0 0.0586 +0 0.0469 +1 0.8289 +0 0.0721 +0 0.1302 +0 0.3055 +0 0.0853 +0 0.1006 +0 0.0648 +0 0.0577 +0 0.0735 +0 0.0596 +0 0.1202 +0 0.0680 +0 0.3506 +0 0.0432 +0 0.0666 +0 0.0605 +0 0.0952 +0 0.0889 +0 0.1078 +0 0.1346 +0 0.2440 +0 0.3374 +0 0.0471 +0 0.2219 +0 0.7479 +0 0.0790 +0 0.0382 +0 0.1659 +0 0.0843 +0 0.3361 +0 0.1170 +0 0.1583 +0 0.0539 +0 0.1517 +0 0.0775 +0 0.0825 +0 0.0830 +0 0.0908 +0 0.1608 +0 0.0623 +0 0.1256 +0 0.0623 +0 0.1531 +0 0.1294 +0 0.0439 +0 0.0875 +0 0.1750 +0 0.1040 +0 0.0717 +0 0.0915 +0 0.0588 +0 0.0863 +0 0.0959 +0 0.1051 +0 0.1299 +0 0.1161 +0 0.2185 +0 0.1847 +0 0.1935 +0 0.1612 +0 0.0657 +0 0.2355 +0 0.1115 +0 0.0982 +0 0.2827 +0 0.0640 +0 0.0961 +0 0.1258 +0 0.7133 +0 0.1362 +0 0.0582 +0 0.0653 +0 0.0669 +0 0.1404 +0 0.2251 +0 0.1008 +0 0.0824 +0 0.1014 +0 0.0407 +0 0.0885 +0 0.1898 +0 0.0475 +0 0.0668 +0 0.2538 +1 0.8089 +0 0.0885 +0 0.0880 +0 0.1080 +0 0.1937 +0 0.3058 +0 0.0390 +0 0.0935 +0 0.1579 +0 0.1216 +0 0.0812 +0 0.0760 +0 0.1837 +0 0.2785 +0 0.0809 +0 0.1136 +0 0.1002 +0 0.1169 +0 0.0724 +0 0.0591 +0 0.1144 +0 0.1181 +0 0.0706 +0 0.0826 +0 0.1107 +0 0.0943 +0 0.1746 +0 0.1303 +0 0.2156 +0 0.1376 +0 0.0747 +0 0.0897 +0 0.0978 +0 0.0920 +0 0.2276 +0 0.0878 +0 0.1531 +0 0.1778 +0 0.1244 +0 0.2478 +0 0.0733 +0 0.1119 +0 0.0687 +0 0.0392 +0 0.0998 +0 0.1343 +0 0.4948 +0 0.0741 +1 0.7659 +0 0.2173 +0 0.2029 +0 0.1227 +0 0.0701 +0 0.0911 +0 0.0561 +0 0.2630 +0 0.7320 +0 0.0757 +0 0.1267 +0 0.2907 +0 0.2803 +0 0.2153 +0 0.1430 +0 0.0805 +0 0.0301 +0 0.7045 +0 0.2146 +0 0.1420 +0 0.1522 +0 0.1087 +0 0.0757 +0 0.2819 +0 0.0825 +0 0.1763 +0 0.1127 +0 0.0417 +0 0.1091 +0 0.1163 +0 0.0865 +0 0.1057 +0 0.2223 +0 0.1116 +0 0.1132 +0 0.1203 +0 0.0938 +0 0.1161 +0 0.2550 +0 0.0779 +0 0.1154 +0 0.0494 +0 0.2926 +0 0.0790 +0 0.0860 +0 0.1763 +0 0.1400 +0 0.0781 +0 0.1255 +0 0.1919 +0 0.1339 +0 0.1089 +0 0.0879 +0 0.1478 +0 0.0626 +0 0.0512 +0 0.0767 +0 0.0828 +0 0.3182 +0 0.0751 +0 0.0796 +0 0.1692 +0 0.1472 +0 0.0649 +0 0.0834 +0 0.0912 +0 0.0660 +0 0.1787 +0 0.0435 +0 0.1374 +0 0.7362 +0 0.1907 +0 0.2032 +0 0.1893 +0 0.0702 +0 0.1029 +0 0.1699 +1 0.8290 +0 0.0707 +0 0.0395 +0 0.3454 +0 0.2363 +0 0.1094 +0 0.1276 +0 0.1146 +0 0.1533 +0 0.4301 +0 0.0945 +0 0.0466 +0 0.0816 +0 0.1251 +0 0.2582 +0 0.1638 +0 0.1020 +0 0.1018 +0 0.0831 +0 0.0731 +0 0.0714 +0 0.1037 +0 0.0698 +0 0.2899 +0 0.1459 +0 0.1108 +0 0.0981 +1 0.8409 +0 0.1386 +0 0.5313 +0 0.1768 +0 0.0672 +0 0.0444 +0 0.1183 +0 0.0674 +0 0.0452 +0 0.2192 +0 0.3254 +0 0.1408 +0 0.0610 +0 0.0867 +0 0.0570 +0 0.1545 +0 0.1038 +0 0.0752 +0 0.0600 +0 0.0757 +0 0.0781 +0 0.1491 +0 0.1023 +0 0.0749 +0 0.0924 +0 0.0481 +0 0.3923 +0 0.0473 +0 0.1248 +0 0.0919 +0 0.0812 +0 0.2053 +0 0.0704 +0 0.0875 +0 0.0580 +0 0.1230 +0 0.0979 +0 0.0672 +0 0.0401 +0 0.0804 +0 0.1309 +0 0.0961 +0 0.1552 +0 0.2899 +0 0.0355 +0 0.0845 +0 0.0694 +0 0.1841 +0 0.1976 +0 0.0648 +0 0.0429 +0 0.0953 +0 0.0520 +0 0.6071 +0 0.0911 +0 0.0710 +0 0.1233 +0 0.4512 +0 0.1000 +0 0.4841 +0 0.1004 +0 0.0925 +0 0.0616 +0 0.1388 +0 0.0971 +0 0.1290 +0 0.1669 +0 0.1037 +0 0.1039 +0 0.0856 +0 0.1274 +0 0.0497 +0 0.0822 +0 0.1859 +0 0.1280 +0 0.1081 +0 0.1588 +0 0.1868 +0 0.1286 +0 0.0845 +0 0.0542 +0 0.1085 +0 0.0464 +0 0.1816 +0 0.0553 +0 0.0867 +0 0.0592 +0 0.0810 +0 0.0518 +0 0.1845 +0 0.0762 +0 0.1724 +0 0.6163 +0 0.1236 +0 0.2822 +0 0.1361 +0 0.1977 +0 0.0491 +0 0.1370 +0 0.0696 +0 0.0460 +0 0.7297 +0 0.1184 +0 0.1236 +0 0.2479 +0 0.0773 +0 0.0742 +0 0.3673 +0 0.0629 +0 0.1613 +0 0.0716 +0 0.2645 +0 0.1321 +0 0.1404 +0 0.1270 +0 0.0672 +0 0.0565 +0 0.0674 +0 0.1075 +0 0.1083 +0 0.0560 +0 0.1269 +0 0.0858 +0 0.0707 +0 0.6443 +0 0.1003 +0 0.1411 +0 0.7312 +0 0.0966 +1 0.8354 +0 0.1138 +0 0.2301 +0 0.0736 +0 0.1660 +0 0.0746 +0 0.1371 +0 0.2578 +0 0.2170 +0 0.0527 +0 0.1859 +0 0.2639 +0 0.2039 +0 0.0557 +0 0.0767 +0 0.2449 +0 0.1511 +0 0.0458 +0 0.1268 +0 0.0629 +0 0.2020 +0 0.0616 +0 0.2463 +0 0.0542 +0 0.1090 +0 0.0608 +0 0.0859 +0 0.0417 +0 0.0675 +0 0.7253 +0 0.1421 +0 0.1034 +0 0.1585 +0 0.0440 +0 0.2031 +0 0.1740 +0 0.0658 +0 0.1145 +0 0.0538 +0 0.1271 +0 0.1459 +0 0.1377 +0 0.1013 +0 0.2961 +0 0.1139 +0 0.1430 +0 0.2592 +0 0.1412 +0 0.0635 +0 0.1131 +0 0.0664 +0 0.0696 +0 0.2151 +0 0.0947 +0 0.5692 +0 0.0757 +0 0.4205 +0 0.1573 +0 0.1400 +0 0.0881 +0 0.0569 +0 0.2127 +0 0.3627 +0 0.1335 +1 0.8434 +0 0.0529 +0 0.0835 +0 0.1288 +0 0.1133 +0 0.1100 +0 0.1072 +0 0.1891 +0 0.3799 +0 0.1816 +0 0.0503 +0 0.1171 +0 0.3462 +0 0.2175 +0 0.0779 +0 0.0642 +0 0.0882 +0 0.3846 +0 0.0622 +0 0.1275 +0 0.1342 +0 0.1492 +0 0.1562 +0 0.5443 +0 0.1217 +0 0.0489 +0 0.5210 +0 0.0560 +0 0.0916 +0 0.0511 +0 0.1611 +0 0.0441 +0 0.0731 +0 0.2628 +0 0.0638 +0 0.0588 +0 0.1470 +0 0.0636 +0 0.0682 +0 0.0616 +0 0.2999 +0 0.0683 +0 0.0692 +0 0.0946 +0 0.2495 +0 0.0963 +0 0.3090 +0 0.0695 +0 0.0376 +0 0.3006 +0 0.0730 +0 0.2818 +0 0.1296 +0 0.0535 +0 0.0819 +0 0.1114 +1 0.8303 +0 0.1827 +1 0.8495 +0 0.0740 +0 0.1249 +0 0.0612 +0 0.1417 +0 0.0897 +0 0.3583 +0 0.0986 +0 0.1702 +0 0.1574 +0 0.0922 +0 0.0442 +0 0.0618 +0 0.1986 +0 0.1839 +0 0.5604 +0 0.0434 +0 0.0553 +0 0.6354 +0 0.1352 +0 0.0695 +1 0.8119 +0 0.1103 +0 0.0936 +0 0.0815 +0 0.0594 +0 0.0625 +0 0.2330 +0 0.0514 +0 0.0484 +0 0.0822 +0 0.0675 +0 0.2228 +0 0.1453 +0 0.0926 +0 0.0589 +0 0.1433 +0 0.1484 +0 0.1160 +0 0.3054 +0 0.5821 +0 0.0977 +0 0.2591 +0 0.0660 +0 0.0623 +0 0.1277 +0 0.1220 +0 0.1276 +0 0.1685 +0 0.1131 +0 0.0640 +0 0.0729 +0 0.0905 +0 0.2432 +0 0.1159 +0 0.0378 +0 0.2641 +0 0.1087 +0 0.0794 +0 0.2027 +0 0.2005 +0 0.1032 +0 0.0570 +0 0.1962 +0 0.0801 +0 0.1356 +0 0.0945 +0 0.0777 +0 0.0839 +0 0.2369 +1 0.8099 +0 0.0856 +0 0.0845 +0 0.2927 +0 0.1179 +0 0.0816 +0 0.0965 +0 0.1899 +0 0.2157 +0 0.0917 +0 0.7226 +0 0.0629 +0 0.0373 +0 0.3381 +0 0.1009 +0 0.6480 +0 0.1780 +0 0.7377 +0 0.1264 +0 0.3948 +0 0.0660 +0 0.0790 +0 0.1299 +0 0.0491 +0 0.5134 +0 0.0849 +0 0.0724 +0 0.3454 +0 0.1116 +0 0.0812 +0 0.0685 +0 0.0964 +0 0.1166 +0 0.1244 +0 0.2667 +0 0.1545 +0 0.0967 +0 0.2415 +0 0.0510 +0 0.5053 +0 0.0950 +0 0.0664 +0 0.0855 +0 0.1006 +0 0.1769 +0 0.0852 +0 0.1864 +0 0.0753 +0 0.6984 +0 0.0945 +0 0.0525 +0 0.1710 +0 0.0621 +0 0.1090 +0 0.0326 +0 0.0837 +0 0.0814 +0 0.1713 +0 0.0809 +0 0.1686 +1 0.8220 +0 0.0841 +0 0.1253 +0 0.1007 +0 0.0550 +0 0.1316 +0 0.1728 +0 0.2571 +0 0.0677 +0 0.1801 +0 0.1817 +0 0.0958 +0 0.0492 +0 0.1409 +0 0.0669 +0 0.0737 +0 0.0785 +0 0.0991 +0 0.0643 +0 0.1782 +0 0.1592 +0 0.0520 +0 0.1218 +0 0.3263 +0 0.1407 +0 0.1532 +0 0.1796 +0 0.0836 +0 0.1708 +0 0.3009 +0 0.0814 +0 0.0794 +0 0.0790 +0 0.0653 +0 0.0760 +0 0.0765 +0 0.1212 +0 0.2152 +1 0.8147 +0 0.1641 +0 0.0977 +0 0.2628 +0 0.1427 +0 0.0971 +0 0.1492 +0 0.1655 +0 0.0606 +0 0.3332 +0 0.0681 +0 0.0567 +0 0.1036 +0 0.0428 +0 0.2101 +0 0.0873 +0 0.1184 +0 0.1343 +0 0.0907 +0 0.0879 +0 0.1404 +0 0.1491 +0 0.0661 +0 0.0950 +0 0.1508 +0 0.1226 +0 0.0861 +0 0.0857 +0 0.0738 +0 0.1159 +0 0.0435 +0 0.1734 +0 0.0895 +0 0.0842 +0 0.0743 +0 0.1441 +0 0.0981 +0 0.2638 +0 0.0812 +0 0.1102 +0 0.0971 +0 0.0964 +0 0.1907 +0 0.2985 +0 0.3223 +0 0.2027 +0 0.0626 +0 0.1063 +0 0.4486 +0 0.0780 +0 0.0925 +0 0.0991 +0 0.1701 +0 0.0858 +0 0.1729 +0 0.1044 +0 0.1104 +0 0.0506 +0 0.1689 +0 0.0993 +0 0.1546 +0 0.1017 +0 0.1139 +0 0.0452 +0 0.1360 +0 0.1167 +0 0.0606 +0 0.2607 +0 0.2360 +1 0.8558 +0 0.1792 +0 0.1097 +0 0.1781 +0 0.2233 +0 0.0694 +0 0.1295 +0 0.0409 +0 0.2624 +0 0.1526 +0 0.1417 +0 0.1466 +0 0.0662 +0 0.1427 +0 0.2510 +0 0.0950 +0 0.3857 +0 0.0658 +0 0.1931 +0 0.0574 +0 0.0801 +0 0.1792 +0 0.7001 +0 0.0693 +0 0.2197 +0 0.1475 +0 0.1929 +0 0.0952 +0 0.0681 +0 0.1099 +0 0.0793 +0 0.0638 +0 0.0457 +0 0.2188 +0 0.1606 +0 0.0838 +0 0.2172 +0 0.0726 +1 0.8499 +0 0.0580 +0 0.0899 +0 0.3165 +1 0.7899 +0 0.0992 +0 0.0616 +0 0.4068 +0 0.0554 +1 0.7970 +0 0.0364 +0 0.0815 +0 0.0703 +0 0.0947 +0 0.0507 +0 0.1187 +0 0.1036 +0 0.0496 +0 0.0594 +0 0.1215 +0 0.1857 +0 0.0777 +0 0.1521 +0 0.1135 +0 0.0921 +0 0.0979 +0 0.0700 +0 0.0981 +0 0.1934 +0 0.0720 +0 0.0673 +0 0.0968 +0 0.0401 +0 0.6555 +0 0.1988 +0 0.0507 +0 0.1329 +0 0.0549 +0 0.1657 +0 0.0683 +0 0.0568 +0 0.0643 +0 0.1107 +0 0.0745 +0 0.3350 +0 0.1856 +0 0.1202 +0 0.2168 +0 0.2112 +0 0.0999 +0 0.1077 +0 0.1365 +0 0.0907 +0 0.2229 +0 0.1102 +0 0.1051 +0 0.1360 +0 0.0656 +0 0.0695 +0 0.2810 +0 0.0427 +0 0.0994 +1 0.8260 +0 0.0849 +0 0.1090 +0 0.0872 +0 0.0430 +0 0.6760 +0 0.2155 +0 0.0636 +0 0.0453 +0 0.0860 +0 0.0619 +0 0.6415 +0 0.0516 +0 0.0492 +0 0.0939 +0 0.2092 +0 0.0838 +0 0.1467 +0 0.0466 +0 0.1136 +0 0.1966 +0 0.1328 +0 0.1566 +0 0.1227 +0 0.1219 +0 0.0761 +0 0.1548 +0 0.1345 +0 0.0789 +0 0.0584 +0 0.0987 +0 0.0398 +0 0.0790 +0 0.3118 +0 0.1033 +0 0.0714 +0 0.1618 +0 0.0746 +0 0.1186 +0 0.1007 +0 0.5303 +0 0.4374 +0 0.1470 +0 0.0630 +0 0.1049 +0 0.0896 +0 0.0990 +1 0.8121 +0 0.2423 +0 0.0555 +0 0.1609 +0 0.0925 +0 0.0482 +0 0.1538 +0 0.0769 +0 0.0764 +0 0.3707 +0 0.0677 +0 0.0660 +0 0.0698 +0 0.1511 +0 0.1741 +0 0.0711 +0 0.0872 +0 0.0451 +0 0.2632 +0 0.1711 +0 0.1813 +0 0.1591 +0 0.1547 +0 0.0931 +0 0.1278 +0 0.0468 +0 0.1135 +0 0.1048 +0 0.7322 +0 0.0683 +0 0.1651 +0 0.1867 +0 0.0792 +0 0.0698 +0 0.0491 +0 0.0488 +0 0.0685 +0 0.1158 +0 0.1034 +0 0.1443 +0 0.1342 +0 0.1002 +0 0.0764 +0 0.1347 +0 0.0674 +0 0.1395 +0 0.1079 +0 0.1134 +0 0.1579 +0 0.3011 +0 0.0892 +0 0.1096 +0 0.1226 +0 0.1774 +0 0.2153 +0 0.3867 +0 0.1115 +0 0.0372 +0 0.1842 +0 0.0409 +0 0.0709 +0 0.0735 +0 0.0866 +0 0.0848 +0 0.1584 +0 0.1074 +0 0.2286 +0 0.0827 +0 0.0331 +0 0.0929 +0 0.2231 +0 0.1071 +0 0.2462 +0 0.0737 +0 0.1008 +0 0.0945 +0 0.0589 +0 0.7224 +0 0.1735 +0 0.0510 +0 0.0354 +0 0.1093 +0 0.1050 +0 0.0529 +0 0.0703 +0 0.2468 +0 0.0688 +0 0.0831 +0 0.0816 +0 0.1334 +0 0.2404 +0 0.1746 +0 0.6253 +0 0.0776 +0 0.0493 +0 0.4814 +0 0.0728 +0 0.1349 +0 0.2069 +0 0.0994 +0 0.0711 +0 0.1147 +0 0.0523 +0 0.0847 +0 0.0442 +0 0.0593 +0 0.0969 +0 0.0404 +0 0.1597 +0 0.0713 +1 0.2711 +0 0.1414 +0 0.0551 +0 0.0511 +0 0.6059 +0 0.1251 +0 0.1608 +0 0.1046 +0 0.1340 +1 0.8326 +0 0.1042 +0 0.1075 +0 0.3040 +0 0.2362 +0 0.0556 +0 0.1404 +0 0.1094 +0 0.0611 +0 0.0862 +0 0.2219 +0 0.0801 +0 0.0959 +0 0.0848 +0 0.1577 +0 0.3171 +0 0.2087 +1 0.7813 +0 0.1408 +0 0.0938 +0 0.1983 +0 0.0684 +0 0.1730 +0 0.0577 +0 0.0596 +0 0.0670 +0 0.1253 +0 0.0853 +0 0.0440 +0 0.0708 +0 0.1768 +0 0.1743 +0 0.1086 +0 0.0715 +0 0.4903 +0 0.1360 +0 0.1506 +0 0.1450 +0 0.0925 +0 0.0700 +0 0.0523 +0 0.0838 +0 0.1884 +0 0.1543 +0 0.5307 +0 0.2216 +0 0.1029 +0 0.0924 +0 0.0376 +0 0.0616 +0 0.1312 +0 0.1637 +0 0.3342 +0 0.0580 +1 0.8012 +0 0.1525 +0 0.0323 +0 0.1282 +0 0.1283 +0 0.0639 +0 0.0622 +0 0.1598 +0 0.0765 +0 0.1578 +0 0.0843 +0 0.0689 +0 0.0581 +0 0.1220 +0 0.1812 +1 0.8044 +0 0.3366 +0 0.0874 +0 0.3450 +0 0.1831 +0 0.0353 +0 0.7024 +0 0.1893 +0 0.0500 +0 0.5284 +0 0.0502 +0 0.1688 +0 0.0419 +0 0.0844 +0 0.2615 +0 0.1023 +0 0.3280 +0 0.2349 +0 0.6615 +0 0.2415 +0 0.1577 +0 0.0939 +0 0.2404 +0 0.0796 +0 0.1996 +0 0.2212 +0 0.1009 +0 0.1250 +0 0.1128 +0 0.0615 +0 0.1265 +0 0.2034 +0 0.1185 +0 0.3307 +0 0.0741 +0 0.0464 +0 0.2291 +0 0.1268 +0 0.3369 +0 0.0736 +0 0.1569 +0 0.0701 +0 0.4986 +0 0.0523 +0 0.0724 +0 0.0584 +0 0.4179 +0 0.1942 +0 0.1719 +0 0.0519 +0 0.1765 +0 0.0511 +0 0.1009 +0 0.1064 +0 0.2059 +0 0.2082 +0 0.0984 +0 0.0579 +0 0.0789 +0 0.3224 +0 0.0907 +0 0.2032 +0 0.1017 +0 0.1814 +0 0.0882 +0 0.1053 +0 0.0413 +0 0.0473 +0 0.2088 +0 0.0876 +0 0.2668 +0 0.1071 +0 0.0883 +0 0.2734 +0 0.5834 +0 0.0652 +0 0.0474 +0 0.0529 +0 0.2636 +0 0.1172 +0 0.0864 +0 0.1330 +0 0.0873 +1 0.7849 +0 0.1858 +0 0.1548 +0 0.1084 +0 0.3929 +0 0.1246 +0 0.0843 +0 0.1276 +0 0.6001 +0 0.1665 +0 0.1734 +0 0.2733 +0 0.0882 +0 0.0475 +0 0.0374 +0 0.1231 +0 0.1167 +0 0.1995 +0 0.0847 +0 0.1862 +0 0.1427 +0 0.1972 +0 0.1492 +0 0.1311 +0 0.0415 +0 0.1838 +0 0.1487 +0 0.0482 +0 0.1838 +0 0.0414 +0 0.1429 +0 0.2176 +0 0.0956 +0 0.0745 +0 0.0669 +0 0.1671 +0 0.1610 +0 0.1954 +0 0.0803 +0 0.3933 +0 0.0564 +0 0.0618 +0 0.2325 +0 0.3619 +0 0.1752 +0 0.1416 +0 0.2462 +0 0.0993 +0 0.1411 +0 0.0880 +0 0.1122 +0 0.0710 +0 0.3629 +0 0.1845 +0 0.2191 +0 0.3249 +0 0.0500 +0 0.1031 +0 0.1276 +0 0.1026 +0 0.0638 +0 0.0825 +0 0.1090 +0 0.0434 +0 0.0680 +0 0.4738 +0 0.2395 +0 0.0518 +0 0.0852 +0 0.1916 +0 0.6127 +0 0.2531 +0 0.0716 +0 0.1725 +0 0.0648 +0 0.1014 +0 0.1239 +0 0.0778 +0 0.6578 +0 0.1330 +0 0.2330 +0 0.1036 +0 0.1661 +0 0.1931 +0 0.2000 +0 0.1507 +0 0.1318 +0 0.1813 +0 0.0558 +0 0.0766 +0 0.0858 +0 0.1497 +0 0.2142 +0 0.0508 +0 0.1386 +0 0.0493 +0 0.2663 +0 0.1190 +0 0.0520 +0 0.0822 +0 0.1137 +0 0.1548 +0 0.0567 +0 0.1191 +0 0.1383 +0 0.1850 +0 0.3782 +0 0.0652 +0 0.0885 +0 0.3530 +0 0.1261 +0 0.0752 +0 0.0700 +0 0.5245 +0 0.1890 +0 0.0808 +0 0.1075 +0 0.0439 +0 0.5212 +0 0.2764 +0 0.0712 +0 0.0415 +0 0.0501 +0 0.0652 +0 0.0555 +0 0.1876 +0 0.1717 +0 0.0969 +0 0.1757 +0 0.1084 +0 0.0854 +0 0.1520 +0 0.2375 +0 0.0650 +0 0.4763 +0 0.0639 +0 0.0789 +0 0.0674 +0 0.1027 +0 0.1451 +0 0.0843 +0 0.2294 +0 0.1614 +0 0.0575 +0 0.0739 +0 0.2113 +0 0.0453 +0 0.0536 +0 0.0774 +0 0.3082 +0 0.0704 +0 0.0820 +0 0.1235 +0 0.2843 +0 0.1066 +0 0.1826 +0 0.1085 +0 0.6519 +0 0.4132 +0 0.0497 +0 0.0937 +0 0.2697 +0 0.0898 +0 0.0387 +0 0.1458 +0 0.2476 +0 0.0570 +0 0.1073 +0 0.0691 +0 0.1647 +0 0.0590 +0 0.1385 +0 0.0765 +0 0.0787 +0 0.1586 +0 0.0782 +0 0.1448 +0 0.2368 +0 0.1145 +0 0.0966 +0 0.0618 +0 0.0829 +1 0.8014 +0 0.2378 +0 0.1456 +0 0.1921 +0 0.0628 +0 0.1411 +0 0.0586 +0 0.1298 +0 0.0548 +0 0.4240 +0 0.1006 +0 0.0725 +0 0.0747 +0 0.3345 +0 0.0953 +0 0.2945 +0 0.0645 +0 0.6834 +0 0.1897 +0 0.1202 +0 0.3696 +0 0.0741 +0 0.1467 +0 0.0622 +0 0.0710 +0 0.4615 +0 0.2107 +0 0.0849 +0 0.1619 +0 0.0756 +0 0.1980 +0 0.0825 +0 0.1160 +0 0.0667 +0 0.0919 +0 0.1738 +0 0.2065 +0 0.1464 +0 0.2924 +0 0.1263 +0 0.0734 +0 0.0621 +0 0.1358 +0 0.0938 +0 0.1330 +0 0.1993 +0 0.0373 +0 0.1411 +0 0.0514 +0 0.0822 +0 0.0731 +0 0.1547 +0 0.1627 +0 0.1725 +0 0.4035 +0 0.1024 +0 0.1722 +0 0.1133 +0 0.0878 +0 0.1204 +0 0.0768 +0 0.1075 +0 0.0713 +0 0.0428 +0 0.1820 +0 0.3164 +0 0.1144 +0 0.0728 +0 0.1394 +0 0.1671 +0 0.1560 +0 0.1557 +0 0.0418 +0 0.2055 +0 0.0509 +0 0.0974 +0 0.0553 +0 0.3535 +0 0.0842 +0 0.0579 +0 0.2347 +1 0.7770 +0 0.3578 +0 0.0549 +0 0.0918 +0 0.1212 +0 0.2346 +0 0.0678 +0 0.2813 +0 0.1365 +0 0.1593 +0 0.0504 +0 0.0991 +0 0.6369 +0 0.0974 +0 0.1416 +0 0.0647 +0 0.1371 +0 0.1090 +0 0.0617 +0 0.0597 +0 0.1288 +0 0.0465 +0 0.1829 +0 0.2110 +0 0.1592 +0 0.1226 +0 0.1511 +0 0.2076 +0 0.0398 +0 0.1777 +0 0.1570 +0 0.1685 +0 0.3188 +0 0.0634 +0 0.0312 +0 0.0467 +0 0.1774 +0 0.2189 +0 0.1199 +0 0.0877 +0 0.0598 +0 0.6982 +0 0.6353 +0 0.2536 +0 0.7454 +0 0.1105 +0 0.1394 +0 0.0616 +0 0.0724 +0 0.1180 +0 0.0697 +0 0.0660 +0 0.1967 +0 0.1203 +0 0.0801 +0 0.0978 +0 0.0689 +0 0.1574 +0 0.0737 +0 0.0661 +0 0.0971 +0 0.0919 +0 0.1473 +0 0.1874 +0 0.0424 +0 0.1018 +0 0.1317 +0 0.1674 +0 0.1017 +0 0.2438 +0 0.2701 +0 0.1971 +0 0.1506 +0 0.1296 +0 0.0946 +0 0.0762 +0 0.1046 +0 0.4079 +0 0.1076 +0 0.1836 +0 0.1632 +0 0.1537 +0 0.0781 +0 0.0585 +0 0.1214 +0 0.0879 +0 0.0597 +0 0.2787 +0 0.0603 +0 0.1413 +0 0.0586 +0 0.1867 +0 0.2459 +0 0.1405 +0 0.2481 +0 0.1039 +0 0.0810 +0 0.2320 +0 0.0854 +0 0.0366 +0 0.1181 +0 0.0885 +0 0.0773 +0 0.2421 +0 0.4634 +0 0.1875 +0 0.7251 +0 0.2219 +0 0.0988 +0 0.0692 +0 0.0468 +0 0.2561 +0 0.0705 +0 0.0620 +0 0.0717 +1 0.7939 +0 0.0540 +0 0.1511 +0 0.6474 +0 0.2287 +0 0.0835 +0 0.1071 +0 0.1529 +0 0.1146 +0 0.2052 +0 0.0551 +0 0.0783 +0 0.1002 +0 0.2526 +0 0.2051 +0 0.5920 +0 0.0815 +0 0.0914 +0 0.6295 +0 0.2870 +0 0.2428 +0 0.1398 +0 0.1730 +0 0.2196 +0 0.4274 +0 0.0841 +0 0.1823 +0 0.1610 +0 0.1208 +0 0.1084 +0 0.1701 +0 0.2507 +0 0.1112 +0 0.1015 +0 0.1337 +0 0.2987 +0 0.2326 +0 0.1145 +0 0.0752 +0 0.0808 +0 0.0585 +0 0.1883 +0 0.0722 +0 0.0905 +0 0.0918 +0 0.1383 +0 0.1456 +0 0.6471 +0 0.0491 +0 0.0977 +0 0.0587 +0 0.1013 +0 0.0871 +0 0.1232 +0 0.0610 +0 0.1928 +0 0.1884 +0 0.0992 +0 0.0460 +0 0.7167 +1 0.8596 +0 0.1164 +0 0.2434 +0 0.0620 +0 0.2684 +0 0.0714 +0 0.0975 +0 0.1169 +0 0.3542 +0 0.2937 +0 0.0942 +0 0.1901 +0 0.0726 +0 0.0608 +0 0.0374 +0 0.0689 +0 0.0932 +0 0.1021 +0 0.1333 +0 0.1159 +0 0.2197 +0 0.1041 +0 0.0705 +0 0.0851 +0 0.0434 +0 0.3047 +0 0.0768 +0 0.0954 +0 0.1941 +0 0.1446 +0 0.0588 +0 0.1300 +0 0.0906 +0 0.4954 +0 0.1082 +0 0.0772 +0 0.0790 +0 0.0730 +0 0.0521 +0 0.0709 +0 0.0548 +0 0.0857 +0 0.1098 +0 0.0397 +0 0.0629 +0 0.0941 +0 0.1840 +0 0.1020 +1 0.8017 +0 0.0993 +0 0.1201 +0 0.0557 +0 0.4820 +0 0.1994 +0 0.0506 +0 0.1846 +0 0.1257 +0 0.1620 +1 0.8534 +0 0.2292 +0 0.3877 +0 0.1120 +0 0.0742 +0 0.1167 +0 0.0989 +0 0.0963 +0 0.0709 +0 0.1150 +0 0.0646 +0 0.1238 +0 0.0822 +0 0.1096 +0 0.6004 +0 0.0391 +0 0.0457 +0 0.0741 +0 0.1395 +0 0.1624 +0 0.1351 +0 0.0943 +0 0.0998 +0 0.0862 +0 0.1579 +0 0.3359 +0 0.0758 +0 0.0714 +0 0.3363 +0 0.0929 +0 0.1403 +0 0.1534 +0 0.3865 +0 0.1413 +0 0.0888 +0 0.6032 +0 0.1731 +0 0.2331 +0 0.1535 +0 0.1633 +0 0.2994 +0 0.1266 +0 0.1557 +0 0.1288 +0 0.0580 +0 0.2242 +0 0.1077 +0 0.0907 +0 0.1483 +0 0.1135 +0 0.1275 +0 0.0833 +0 0.1067 +0 0.0431 +0 0.0680 +0 0.2709 +0 0.1179 +0 0.0559 +0 0.2999 +0 0.0706 +0 0.0823 +0 0.0943 +0 0.1612 +0 0.0909 +0 0.1348 +0 0.0738 +0 0.0628 +0 0.0875 +0 0.1349 +0 0.1405 +0 0.0805 +0 0.0796 +0 0.0400 +0 0.0733 +0 0.0510 +0 0.1077 +0 0.0664 +0 0.4653 +0 0.0688 +0 0.1529 +0 0.1757 +0 0.1282 +0 0.1921 +0 0.2619 +0 0.0693 +0 0.1121 +0 0.1028 +0 0.1014 +0 0.0506 +0 0.1316 +0 0.2844 +0 0.1508 +0 0.0627 +0 0.0839 +0 0.0607 +0 0.1176 +0 0.3153 +0 0.1483 +0 0.0462 +0 0.2591 +0 0.1051 +0 0.1009 +0 0.0812 +0 0.0789 +0 0.1294 +0 0.0845 +0 0.2760 +0 0.0830 +0 0.0800 +0 0.2827 +0 0.0698 +0 0.0722 +0 0.0998 +0 0.0647 +0 0.0929 +0 0.1605 +0 0.2182 +0 0.2786 +0 0.2618 +0 0.3922 +0 0.0451 +0 0.0671 +0 0.1310 +0 0.0905 +0 0.3277 +1 0.7686 +0 0.0758 +0 0.1136 +0 0.0535 +0 0.0929 +0 0.0800 +0 0.0799 +0 0.1149 +0 0.1202 +0 0.2384 +0 0.5420 +0 0.1953 +0 0.0714 +0 0.1846 +0 0.0541 +0 0.4564 +0 0.0608 +0 0.2218 +0 0.0792 +0 0.0639 +0 0.2440 +0 0.0553 +0 0.1096 +0 0.1378 +0 0.7488 +0 0.1077 +0 0.0870 +0 0.0599 +0 0.0965 +1 0.8588 +0 0.1946 +0 0.1606 +0 0.2909 +0 0.0591 +0 0.0614 +0 0.1518 +0 0.1244 +0 0.4291 +0 0.0490 +0 0.6523 +0 0.1193 +0 0.0900 +0 0.1685 +0 0.0554 +0 0.0510 +0 0.1541 +0 0.2206 +0 0.2671 +0 0.1267 +0 0.1007 +0 0.0568 +0 0.0551 +0 0.0705 +0 0.2088 +0 0.1089 +0 0.5147 +0 0.2528 +0 0.1130 +0 0.1671 +0 0.0804 +0 0.0980 +0 0.0443 +0 0.0693 +0 0.0375 +0 0.1201 +0 0.0787 +0 0.2607 +0 0.0733 +0 0.5128 +0 0.0892 +0 0.0974 +0 0.0429 +0 0.7236 +0 0.0787 +0 0.0308 +0 0.0560 +0 0.4252 +0 0.0522 +0 0.4425 +0 0.0414 +0 0.0640 +0 0.1463 +0 0.1925 +0 0.0535 +0 0.0764 +0 0.2630 +0 0.2107 +0 0.0748 +0 0.1389 +0 0.2367 +0 0.0547 +0 0.0499 +0 0.2489 +0 0.0742 +0 0.1024 +0 0.1439 +0 0.1182 +0 0.0459 +0 0.0993 +0 0.1038 +0 0.0775 +0 0.0888 +0 0.1207 +0 0.0478 +0 0.0536 +0 0.0946 +0 0.0837 +0 0.1319 +0 0.0627 +0 0.1955 +0 0.0745 +0 0.0355 +0 0.1301 +0 0.2786 +0 0.0617 +0 0.0949 +0 0.2991 +0 0.0698 +1 0.9107 +0 0.0766 +0 0.0572 +0 0.2761 +0 0.1357 +0 0.0569 +0 0.6137 +0 0.0980 +0 0.1402 +0 0.0721 +0 0.1067 +0 0.1046 +0 0.3216 +0 0.0552 +0 0.1735 +0 0.1134 +0 0.1785 +0 0.3812 +0 0.0948 +0 0.2163 +0 0.1895 +0 0.0984 +0 0.1361 +0 0.0941 +0 0.1430 +0 0.0645 +0 0.0704 +0 0.0877 +0 0.2527 +0 0.3907 +0 0.2561 +0 0.1022 +0 0.5040 +1 0.7590 +0 0.2638 +0 0.0947 +0 0.2370 +0 0.0790 +0 0.0508 +0 0.2122 +0 0.1469 +0 0.5065 +0 0.1792 +0 0.1142 +0 0.0561 +0 0.0860 +0 0.0890 +0 0.3147 +0 0.0665 +0 0.1998 +0 0.2596 +0 0.2441 +0 0.2339 +0 0.0973 +0 0.3597 +0 0.0444 +0 0.1782 +0 0.1462 +0 0.2019 +0 0.0892 +0 0.7058 +0 0.0661 +0 0.0735 +0 0.0921 +0 0.1260 +0 0.0660 +0 0.0530 +0 0.3569 +0 0.0974 +0 0.0961 +0 0.1611 +0 0.0633 +0 0.1040 +0 0.0344 +0 0.1440 +0 0.1055 +0 0.1117 +0 0.0833 +0 0.2321 +0 0.4899 +0 0.0307 +0 0.1612 +0 0.0667 +0 0.2841 +0 0.0629 +0 0.0614 +0 0.0940 +1 0.7588 +0 0.2322 +0 0.1034 +0 0.1305 +0 0.0954 +0 0.1457 +0 0.1531 +0 0.1009 +0 0.1763 +0 0.1112 +0 0.0723 +0 0.0832 +0 0.0597 +0 0.1447 +0 0.0300 +0 0.3142 +0 0.2489 +0 0.1554 +0 0.0347 +0 0.2225 +0 0.2308 +0 0.0693 +0 0.1032 +0 0.1698 +0 0.1017 +0 0.0733 +0 0.0930 +0 0.0680 +0 0.0962 +0 0.0570 +0 0.1053 +0 0.0824 +0 0.0634 +0 0.0571 +0 0.2194 +0 0.0802 +0 0.2312 +0 0.3948 +0 0.2769 +0 0.0542 +0 0.0471 +0 0.0466 +0 0.1146 +0 0.0791 +0 0.1001 +0 0.1484 +0 0.0922 +0 0.0536 +0 0.0930 +0 0.1210 +0 0.1260 +0 0.1706 +0 0.1202 +0 0.0997 +0 0.1874 +0 0.0863 +0 0.0846 +0 0.5677 +0 0.0432 +0 0.1374 +0 0.4019 +0 0.1049 +0 0.1002 +0 0.1036 +0 0.0410 +0 0.2122 +0 0.6696 +0 0.0711 +0 0.2693 +0 0.2811 +0 0.0969 +0 0.0715 +0 0.0541 +0 0.1690 +0 0.0592 +0 0.2561 +0 0.0621 +0 0.0625 +0 0.1178 +0 0.0843 +0 0.1276 +0 0.0417 +0 0.4949 +0 0.1917 +0 0.1079 +0 0.0926 +0 0.2973 +0 0.3405 +0 0.0680 +0 0.2224 +0 0.1193 +0 0.0752 +0 0.0878 +0 0.0914 +0 0.1103 +0 0.0599 +0 0.0860 +0 0.0732 +0 0.3731 +0 0.0712 +0 0.0648 +0 0.1186 +0 0.2484 +0 0.0620 +0 0.2193 +0 0.0408 +0 0.0623 +0 0.0954 +0 0.3033 +0 0.1000 +0 0.1578 +0 0.0974 +0 0.0422 +0 0.0485 +0 0.0558 +1 0.8320 +0 0.1183 +0 0.0852 +0 0.2032 +0 0.1738 +0 0.2469 +0 0.2549 +0 0.2255 +0 0.6179 +0 0.2251 +0 0.0407 +0 0.0644 +0 0.1928 +0 0.1573 +0 0.2539 +0 0.0961 +0 0.3000 +0 0.0353 +0 0.5422 +0 0.0675 +0 0.2305 +0 0.0374 +0 0.1492 +0 0.1695 +0 0.0504 +0 0.0681 +0 0.0824 +0 0.1384 +0 0.6036 +0 0.0757 +0 0.4502 +0 0.1294 +0 0.4517 +0 0.0588 +0 0.0433 +0 0.1913 +0 0.1467 +0 0.0426 +0 0.4485 +0 0.1940 +0 0.1742 +0 0.0852 +0 0.1585 +0 0.0532 +0 0.1712 +0 0.0761 +0 0.0888 +0 0.1704 +0 0.2144 +0 0.0630 +0 0.0444 +0 0.1134 +0 0.0909 +0 0.0832 +0 0.2211 +0 0.6882 +1 0.8062 +0 0.1052 +0 0.0929 +0 0.0619 +0 0.0556 +0 0.1936 +0 0.0294 +0 0.1919 +0 0.0782 +0 0.0671 +0 0.1645 +0 0.2146 +0 0.1036 +0 0.0851 +0 0.1384 +0 0.2985 +0 0.1625 +0 0.1120 +0 0.0830 +0 0.0997 +0 0.1279 +0 0.0563 +0 0.1117 +0 0.0822 +0 0.2006 +0 0.2928 +0 0.0800 +0 0.0487 +0 0.1243 +0 0.0731 +0 0.0443 +0 0.1670 +0 0.1092 +0 0.0564 +0 0.0877 +0 0.1231 +0 0.0484 +0 0.1709 +0 0.1197 +0 0.1844 +0 0.0629 +0 0.0613 +0 0.2411 +0 0.1338 +0 0.0652 +0 0.0538 +0 0.0998 +0 0.1954 +0 0.0689 +0 0.0977 +0 0.0950 +0 0.0462 +0 0.0600 +0 0.0778 +0 0.1503 +0 0.0490 +0 0.0881 +0 0.2196 +0 0.2070 +0 0.0482 +0 0.0821 +0 0.2347 +0 0.1099 +0 0.1469 +0 0.2422 +0 0.1165 +0 0.1896 +0 0.1351 +0 0.0504 +0 0.1143 +0 0.1046 +0 0.0775 +0 0.0988 +0 0.1234 +0 0.0594 +0 0.1876 +0 0.1643 +0 0.1172 +0 0.1075 +0 0.1988 +0 0.0975 +0 0.0912 +0 0.1243 +0 0.0743 +0 0.4177 +0 0.0595 +0 0.0979 +0 0.0608 +0 0.0689 +0 0.1128 +0 0.1076 +0 0.3433 +0 0.1135 +0 0.0531 +0 0.0604 +0 0.0540 +0 0.1003 +0 0.0978 +0 0.0714 +0 0.1454 +0 0.0962 +0 0.1264 +0 0.0582 +0 0.0768 +0 0.0837 +0 0.0466 +0 0.1923 +0 0.0813 +0 0.4291 +0 0.1526 +0 0.0740 +0 0.1526 +0 0.1328 +0 0.1796 +0 0.1076 +1 0.8371 +0 0.0839 +0 0.1343 +0 0.0618 +0 0.2685 +0 0.0455 +0 0.1041 +0 0.0949 +0 0.5117 +0 0.0380 +0 0.1401 +0 0.4941 +0 0.1096 +0 0.0517 +0 0.1055 +0 0.0982 +0 0.1219 +0 0.1395 +0 0.0678 +0 0.0927 +0 0.0997 +0 0.1062 +0 0.2686 +0 0.1109 +0 0.0553 +0 0.7007 +0 0.0334 +0 0.1125 +0 0.4648 +1 0.8755 +0 0.0862 +0 0.0459 +0 0.2186 +0 0.1535 +0 0.1096 +0 0.1085 +0 0.0643 +0 0.2167 +0 0.0960 +0 0.2964 +0 0.1702 +0 0.2269 +0 0.1135 +0 0.1670 +0 0.0459 +0 0.1163 +0 0.7437 +0 0.2563 +0 0.0560 +0 0.2080 +0 0.1099 +0 0.2350 +0 0.0684 +0 0.3226 +0 0.0669 +0 0.0943 +0 0.1662 +0 0.0627 +0 0.3708 +0 0.0834 +0 0.0617 +0 0.0865 +0 0.0425 +0 0.1335 +0 0.1741 +0 0.0501 +0 0.2900 +0 0.1010 +0 0.1424 +0 0.3141 +0 0.1027 +0 0.6343 +0 0.0425 +0 0.0860 +0 0.2131 +0 0.0555 +0 0.1717 +0 0.1886 +0 0.0412 +0 0.2335 +0 0.0599 +0 0.0589 +0 0.1154 +0 0.0670 +0 0.1007 +0 0.0658 +1 0.8546 +0 0.1114 +0 0.1237 +0 0.2958 +0 0.0640 +0 0.0868 +0 0.1430 +0 0.1563 +0 0.0610 +0 0.1625 +0 0.0703 +0 0.6611 +0 0.0851 +0 0.1332 +0 0.0932 +0 0.1369 +1 0.7774 +1 0.7942 +0 0.0543 +0 0.1853 +0 0.1097 +0 0.0612 +0 0.1615 +0 0.1584 +0 0.6967 +0 0.0663 +0 0.0459 +0 0.1035 +0 0.0870 +0 0.0766 +0 0.7369 +0 0.1024 +0 0.0862 +0 0.0647 +0 0.2942 +0 0.1325 +0 0.0637 +0 0.1175 +0 0.0746 +0 0.0692 +0 0.7368 +0 0.0937 +0 0.6613 +0 0.1361 +0 0.1037 +0 0.4638 +0 0.1736 +0 0.0545 +0 0.0659 +0 0.0552 +0 0.2377 +0 0.0998 +0 0.0658 +0 0.1465 +0 0.0856 +0 0.0801 +0 0.0458 +0 0.1251 +0 0.0584 +0 0.0911 +0 0.0593 +0 0.2732 +0 0.0590 +0 0.1232 +0 0.1073 +0 0.1589 +0 0.0453 +0 0.0790 +0 0.0674 +0 0.1798 +0 0.1519 +0 0.6825 +0 0.2717 +0 0.0659 +0 0.1444 +0 0.0897 +0 0.1559 +0 0.1435 +0 0.1000 +0 0.2443 +0 0.2436 +0 0.0771 +0 0.0712 +0 0.0711 +0 0.0791 +0 0.2324 +0 0.3775 +0 0.0987 +0 0.0497 +0 0.0567 +0 0.1857 +0 0.0958 +0 0.1008 +0 0.1256 +0 0.2758 +0 0.1420 +0 0.1052 +0 0.2741 +0 0.2524 +0 0.2209 +0 0.2148 +0 0.5225 +0 0.1113 +0 0.0646 +0 0.0546 +0 0.0676 +0 0.0537 +0 0.1355 +0 0.0389 +0 0.1314 +0 0.1486 +0 0.0787 +0 0.0526 +0 0.1156 +0 0.2172 +0 0.1335 +0 0.1756 +0 0.0674 +0 0.2078 +0 0.5416 +0 0.1045 +0 0.0757 +0 0.1942 +0 0.1221 +0 0.2568 +0 0.1561 +0 0.0766 +0 0.0672 +0 0.1681 +0 0.1392 +0 0.1117 +0 0.0802 +0 0.6608 +0 0.1507 +0 0.1154 +0 0.0987 +0 0.0851 +0 0.1420 +0 0.0550 +0 0.2581 +0 0.0745 +0 0.1263 +0 0.0689 +0 0.0753 +0 0.0982 +0 0.1771 +0 0.0821 +0 0.0759 +0 0.1280 +0 0.2235 +0 0.1163 +0 0.0671 +0 0.1234 +0 0.0573 +0 0.1163 +0 0.1147 +0 0.2259 +0 0.4626 +0 0.1068 +0 0.0867 +0 0.5992 +0 0.0817 +0 0.1605 +0 0.0954 +0 0.0669 +0 0.1040 +0 0.0549 +0 0.0799 +0 0.1909 +0 0.0617 +0 0.0760 +0 0.0603 +0 0.1326 +0 0.0749 +0 0.1634 +0 0.2263 +0 0.1227 +0 0.1319 +0 0.1388 +0 0.1909 +0 0.0732 +0 0.1288 +0 0.2833 +0 0.1150 +0 0.1565 +0 0.1429 +0 0.1276 +0 0.1177 +0 0.1429 +0 0.2624 +0 0.0949 +0 0.2240 +0 0.2216 +0 0.0919 +0 0.1301 +0 0.1018 +0 0.5554 +0 0.2555 +0 0.0386 +0 0.0947 +0 0.0700 +0 0.4640 +0 0.3920 +0 0.1158 +0 0.1242 +0 0.0749 +0 0.0782 +0 0.1199 +0 0.1301 +0 0.2556 +0 0.1705 +0 0.0629 +0 0.2033 +0 0.2173 +0 0.1529 +0 0.0651 +0 0.1381 +0 0.0390 +0 0.0732 +0 0.0961 +0 0.4406 +0 0.0478 +0 0.0588 +0 0.2330 +0 0.2037 +0 0.0722 +0 0.2976 +0 0.0865 +0 0.1316 +0 0.0842 +0 0.3473 +0 0.0701 +0 0.1067 +0 0.3078 +0 0.2538 +0 0.0629 +0 0.0459 +0 0.0421 +0 0.2571 +0 0.1352 +0 0.4627 +0 0.1198 +0 0.0559 +0 0.0558 +0 0.0628 +0 0.0581 +0 0.1330 +0 0.1288 +0 0.0427 +0 0.1047 +0 0.1691 +0 0.0719 +0 0.0813 +0 0.1220 +0 0.0906 +0 0.1312 +0 0.0902 +0 0.2290 +0 0.1246 +0 0.2913 +0 0.2481 +0 0.1167 +0 0.1165 +0 0.0682 +0 0.0847 +0 0.1210 +0 0.0839 +0 0.1544 +0 0.0680 +0 0.0500 +0 0.0732 +0 0.0719 +0 0.0411 +0 0.0941 +0 0.2136 +0 0.1044 +0 0.2544 +0 0.1011 +0 0.0655 +0 0.0510 +0 0.1541 +0 0.1470 +0 0.0980 +1 0.8402 +0 0.0795 +0 0.0594 +0 0.2809 +0 0.0664 +0 0.1896 +0 0.3221 +0 0.1370 +0 0.0596 +0 0.0471 +0 0.2725 +0 0.1437 +0 0.0615 +0 0.1613 +0 0.1154 +0 0.1447 +0 0.1035 +0 0.3304 +0 0.0345 +0 0.0562 +0 0.0435 +0 0.1086 +0 0.0712 +0 0.7380 +0 0.1085 +0 0.0501 +0 0.0849 +0 0.0723 +0 0.2226 +0 0.1014 +0 0.7403 +0 0.0633 +0 0.0751 +0 0.1776 +0 0.0747 +0 0.1804 +0 0.0559 +0 0.1017 +0 0.0722 +0 0.7301 +0 0.1252 +0 0.1205 +0 0.2374 +0 0.1359 +1 0.8424 +0 0.1221 +1 0.7779 +0 0.1092 +0 0.1076 +0 0.1132 +0 0.0905 +0 0.2029 +0 0.2247 +0 0.3073 +0 0.0493 +0 0.0672 +0 0.1649 +0 0.0954 +1 0.5752 +0 0.1361 +0 0.0660 +0 0.0718 +0 0.2779 +0 0.2258 +0 0.0784 +0 0.3765 +0 0.0683 +0 0.0640 +0 0.0930 +0 0.0783 +0 0.2036 +0 0.1236 +0 0.0578 +0 0.1284 +0 0.0440 +0 0.0415 +0 0.0810 +0 0.0760 +0 0.0864 +0 0.2025 +0 0.0791 +0 0.1016 +0 0.0519 +0 0.0536 +0 0.1733 +0 0.1262 +0 0.1634 +0 0.1266 +0 0.1312 +0 0.1466 +0 0.0635 +0 0.0617 +0 0.0490 +0 0.0813 +0 0.0867 +0 0.0894 +0 0.1341 +0 0.1402 +0 0.1126 +0 0.0611 +0 0.3686 +0 0.0747 +0 0.1549 +0 0.7489 +0 0.0511 +0 0.0947 +0 0.1639 +0 0.0783 +0 0.3120 +0 0.2062 +0 0.4814 +0 0.0981 +0 0.0646 +0 0.2154 +0 0.0888 +0 0.0483 +0 0.0511 +1 0.7754 +0 0.0921 +0 0.1261 +0 0.0961 +0 0.0641 +0 0.1155 +0 0.1364 +0 0.1571 +0 0.0895 +0 0.0770 +0 0.2024 +0 0.1205 +0 0.0502 +0 0.0733 +0 0.2154 +0 0.1342 +0 0.2020 +0 0.0756 +0 0.1700 +0 0.1454 +0 0.0549 +0 0.0805 +0 0.0528 +0 0.0938 +0 0.1437 +0 0.1296 +0 0.0710 +0 0.0754 +0 0.1028 +0 0.0895 +0 0.0861 +0 0.3572 +0 0.1670 +0 0.0867 +0 0.0488 +0 0.4432 +0 0.1099 +0 0.1813 +0 0.0774 +0 0.1692 +0 0.1193 +0 0.1328 +0 0.0678 +0 0.1497 +0 0.1081 +0 0.1033 +0 0.1332 +0 0.0987 +0 0.1841 +0 0.2219 +0 0.0746 +0 0.1319 +0 0.1017 +0 0.0569 +0 0.1367 +0 0.1530 +0 0.0562 +0 0.1059 +0 0.0523 +0 0.2274 +0 0.1206 +0 0.0583 +0 0.0717 +0 0.0746 +0 0.0513 +0 0.0670 +0 0.0743 +0 0.1141 +0 0.0462 +0 0.1293 +0 0.4053 +0 0.0367 +0 0.0650 +0 0.0327 +0 0.2204 +0 0.1051 +0 0.1015 +0 0.1182 +0 0.0695 +0 0.0481 +0 0.1705 +0 0.0772 +0 0.1411 +0 0.0913 +0 0.2168 +0 0.1137 +0 0.1537 +0 0.1087 +0 0.0968 +0 0.0736 +0 0.1216 +0 0.2376 +0 0.2894 +0 0.3167 +0 0.1237 +0 0.1789 +0 0.2873 +0 0.0725 +0 0.1621 +1 0.8469 +0 0.1409 +0 0.1119 +0 0.0665 +0 0.0997 +0 0.1080 +0 0.1546 +0 0.1205 +0 0.0992 +0 0.1059 +0 0.0770 +0 0.1028 +0 0.0797 +0 0.0766 +0 0.1530 +0 0.1613 +0 0.0940 +0 0.1562 +0 0.0993 +0 0.1132 +0 0.0890 +0 0.2571 +0 0.0831 +0 0.0843 +1 0.8172 +0 0.1978 +0 0.0501 +0 0.1280 +0 0.1041 +0 0.1125 +0 0.2207 +0 0.0734 +0 0.0476 +0 0.1360 +0 0.1101 +0 0.0406 +0 0.1461 +0 0.0888 +0 0.0732 +0 0.0703 +0 0.4056 +0 0.3775 +0 0.1438 +0 0.1122 +0 0.1868 +0 0.2297 +0 0.0834 +0 0.1189 +0 0.0922 +0 0.0831 +0 0.0889 +0 0.1635 +0 0.0760 +0 0.0901 +0 0.6357 +0 0.1927 +0 0.1186 +0 0.0697 +0 0.4096 +0 0.1523 +0 0.0677 +0 0.2748 +0 0.1094 +0 0.5309 +0 0.2225 +0 0.0873 +0 0.0803 +0 0.0758 +0 0.1994 +0 0.0607 +0 0.2623 +0 0.2466 +0 0.1316 +0 0.0986 +0 0.0871 +0 0.0913 +0 0.0892 +0 0.1086 +0 0.0595 +0 0.1560 +0 0.0405 +0 0.1099 +0 0.1118 +0 0.1395 +0 0.0787 +0 0.0561 +0 0.0511 +0 0.1138 +0 0.0481 +0 0.0974 +0 0.1630 +0 0.0508 +0 0.0957 +0 0.1094 +0 0.1566 +0 0.1679 +0 0.1514 +0 0.0874 +0 0.0515 +0 0.0645 +0 0.0490 +0 0.0683 +0 0.1734 +0 0.0889 +0 0.1238 +0 0.1101 +0 0.0962 +1 0.8035 +0 0.1162 +0 0.3089 +0 0.1263 +0 0.1031 +0 0.0848 +0 0.2030 +0 0.1613 +0 0.1472 +0 0.2458 +0 0.0944 +0 0.2124 +0 0.2585 +0 0.0436 +0 0.0705 +0 0.0908 +0 0.0793 +0 0.3919 +0 0.0789 +0 0.1606 +0 0.0695 +0 0.0374 +0 0.5715 +0 0.0742 +0 0.0615 +0 0.0883 +0 0.1739 +0 0.1271 +0 0.0526 +0 0.2366 +0 0.0831 +0 0.2640 +0 0.0543 +0 0.0912 +0 0.0923 +0 0.2662 +0 0.1183 +0 0.1035 +0 0.0876 +0 0.1622 +0 0.1177 +0 0.1019 +0 0.1980 +0 0.0604 +0 0.1607 +0 0.0597 +0 0.3397 +0 0.2579 +0 0.0803 +0 0.0907 +0 0.0344 +0 0.0694 +0 0.1344 +0 0.2778 +0 0.1244 +0 0.1247 +0 0.1396 +0 0.0966 +0 0.1027 +0 0.2288 +0 0.1314 +0 0.0862 +0 0.1067 +0 0.1425 +0 0.1348 +0 0.0832 +0 0.1051 +0 0.0310 +0 0.0518 +0 0.0585 +0 0.0571 +0 0.1055 +0 0.0492 +0 0.1510 +0 0.0927 +0 0.3875 +0 0.0984 +0 0.4801 +0 0.1239 +0 0.1341 +0 0.0847 +0 0.2356 +0 0.1693 +0 0.0988 +0 0.0734 +0 0.1891 +0 0.0594 +0 0.0470 +0 0.2078 +0 0.0691 +0 0.1185 +0 0.4467 +0 0.1023 +0 0.1691 +0 0.1393 +0 0.1101 +0 0.0961 +0 0.0882 +0 0.0434 +0 0.0402 +0 0.2261 +0 0.1021 +0 0.0882 +0 0.0892 +0 0.1845 +0 0.0803 +0 0.1473 +0 0.0650 +0 0.4836 +0 0.0287 +0 0.0945 +0 0.1474 +0 0.1013 +0 0.1229 +0 0.0998 +0 0.0550 +1 0.8049 +0 0.0409 +0 0.0723 +0 0.0741 +0 0.3590 +0 0.0514 +0 0.0457 +0 0.1734 +0 0.2012 +0 0.4244 +0 0.1162 +0 0.3036 +0 0.1020 +0 0.4274 +0 0.1252 +0 0.2261 +0 0.3665 +0 0.0816 +0 0.0955 +0 0.0655 +1 0.8371 +0 0.0972 +0 0.2669 +0 0.1708 +0 0.1012 +0 0.3196 +0 0.0680 +0 0.0715 +0 0.0741 +0 0.1706 +0 0.0679 +0 0.0820 +0 0.7454 +0 0.1161 +0 0.0892 +0 0.0338 +1 0.8503 +0 0.1275 +0 0.6907 +0 0.0344 +0 0.1467 +0 0.0917 +0 0.2649 +0 0.1734 +0 0.1053 +0 0.1839 +0 0.0923 +0 0.1074 +0 0.0709 +0 0.6811 +0 0.1671 +0 0.1038 +0 0.0643 +0 0.0561 +0 0.1558 +0 0.3687 +0 0.0607 +0 0.0800 +0 0.2250 +1 0.8156 +0 0.0905 +0 0.0961 +0 0.2226 +0 0.0832 +0 0.1762 +0 0.0739 +0 0.0566 +0 0.1578 +0 0.1175 +0 0.0983 +1 0.8550 +0 0.1051 +0 0.0734 +0 0.0824 +0 0.3678 +0 0.0675 +0 0.2522 +0 0.1279 +0 0.0630 +0 0.0737 +0 0.1101 +0 0.0766 +0 0.1839 +0 0.0824 +0 0.1116 +0 0.1184 +0 0.1222 +0 0.1074 +0 0.1264 +0 0.0841 +0 0.0695 +0 0.0484 +0 0.2688 +0 0.0998 +0 0.1320 +0 0.0807 +0 0.0443 +0 0.1706 +0 0.2015 +0 0.2445 +0 0.3301 +0 0.2671 +0 0.1199 +0 0.0754 +0 0.1363 +0 0.0626 +0 0.1102 +0 0.0989 +0 0.1244 +0 0.0831 +0 0.1141 +0 0.0835 +0 0.1108 +0 0.1212 +0 0.3066 +0 0.3898 +0 0.1225 +0 0.1039 +0 0.0553 +0 0.0666 +0 0.1040 +0 0.1338 +0 0.0937 +0 0.0608 +0 0.2868 +0 0.1442 +0 0.0379 +0 0.3970 +0 0.1693 +0 0.1635 +0 0.3661 +0 0.0751 +0 0.1222 +0 0.0863 +0 0.2880 +0 0.1170 +0 0.0514 +0 0.0625 +0 0.1522 +0 0.1473 +0 0.1352 +0 0.0704 +0 0.0521 +0 0.1137 +0 0.1122 +0 0.0922 +0 0.1205 +1 0.7722 +0 0.0544 +0 0.1781 +0 0.1138 +0 0.0901 +0 0.0633 +0 0.0841 +0 0.0452 +0 0.0778 +0 0.0514 +0 0.1251 +0 0.0763 +0 0.0484 +0 0.0756 +1 0.8110 +0 0.3760 +0 0.0839 +0 0.0812 +0 0.2103 +0 0.1428 +0 0.1515 +0 0.3129 +0 0.6839 +0 0.0865 +0 0.0571 +0 0.1466 +0 0.5538 +0 0.0408 +0 0.1623 +0 0.0783 +0 0.1969 +0 0.0645 +0 0.1040 +0 0.0857 +0 0.0529 +0 0.1012 +0 0.3113 +0 0.1919 +0 0.1331 +0 0.1800 +0 0.1124 +0 0.0591 +0 0.0784 +0 0.0837 +0 0.6164 +0 0.1092 +0 0.2437 +0 0.1921 +0 0.0837 +0 0.1836 +0 0.1763 +0 0.5436 +0 0.2646 +0 0.0925 +0 0.0908 +0 0.0502 +0 0.0960 +0 0.1040 +0 0.6765 +0 0.0762 +0 0.0680 +0 0.1277 +0 0.2905 +0 0.0793 +0 0.1433 +0 0.0799 +0 0.0919 +0 0.1446 +1 0.8462 +0 0.0643 +0 0.2619 +0 0.2066 +0 0.1246 +0 0.0732 +0 0.1097 +0 0.0604 +0 0.1134 +0 0.2126 +0 0.1527 +0 0.0948 +0 0.2224 +0 0.1232 +0 0.0570 +0 0.1392 +0 0.1353 +0 0.1010 +0 0.0796 +0 0.1100 +0 0.0370 +0 0.3809 +0 0.0362 +0 0.0674 +0 0.0712 +0 0.0837 +0 0.0416 +0 0.0486 +0 0.0601 +0 0.1044 +0 0.1912 +0 0.1329 +0 0.1065 +1 0.1068 +0 0.2316 +0 0.0347 +0 0.1159 +0 0.2703 +0 0.2591 +0 0.1321 +0 0.2650 +0 0.1324 +0 0.0984 +0 0.0710 +0 0.1251 +0 0.1449 +0 0.1370 +0 0.2398 +0 0.3936 +0 0.0767 +0 0.2938 +0 0.0790 +0 0.0963 +0 0.0642 +0 0.4510 +0 0.0840 +1 0.8250 +0 0.0855 +0 0.2028 +0 0.0839 +0 0.1110 +0 0.0686 +0 0.0466 +0 0.0391 +0 0.2509 +0 0.0816 +0 0.0605 +0 0.3234 +0 0.0599 +0 0.1148 +0 0.0470 +0 0.0798 +0 0.0302 +0 0.2983 +0 0.0651 +0 0.6702 +0 0.0362 +0 0.0928 +0 0.2825 +0 0.1014 +0 0.1415 +0 0.0591 +0 0.1608 +0 0.2287 +0 0.0825 +0 0.1150 +0 0.0752 +0 0.3831 +0 0.4249 +0 0.1495 +0 0.0754 +0 0.1855 +0 0.2267 +0 0.0908 +0 0.0709 +0 0.0631 +0 0.1551 +0 0.2227 +0 0.5862 +0 0.7312 +0 0.0740 +0 0.0869 +0 0.1195 +0 0.2151 +0 0.1056 +1 0.8664 +0 0.1073 +0 0.1405 +0 0.2058 +0 0.0969 +0 0.1088 +0 0.0913 +0 0.1131 +0 0.1849 +0 0.5052 +0 0.7052 +0 0.0919 +0 0.1649 +0 0.2713 +0 0.0815 +0 0.2309 +0 0.0637 +0 0.0866 +0 0.0621 +0 0.2716 +0 0.0727 +0 0.2401 +0 0.0894 +0 0.1106 +0 0.1058 +0 0.1022 +0 0.0674 +0 0.1892 +0 0.3128 +0 0.1059 +0 0.0596 +0 0.1527 +0 0.0526 +0 0.0510 +0 0.1205 +0 0.2047 +0 0.1072 +0 0.0477 +0 0.1436 +0 0.1424 +0 0.4270 +0 0.3276 +0 0.0726 +0 0.1770 +0 0.0585 +0 0.0492 +0 0.2094 +0 0.0815 +0 0.1613 +0 0.2354 +0 0.0484 +0 0.1518 +0 0.0685 +0 0.0467 +0 0.1019 +0 0.0733 +0 0.0902 +0 0.0580 +0 0.1370 +0 0.0939 +0 0.1623 +0 0.0457 +0 0.0476 +0 0.1192 +0 0.2736 +1 0.8012 +0 0.1280 +0 0.1244 +0 0.1713 +0 0.0920 +0 0.1365 +0 0.1206 +0 0.0650 +0 0.0950 +0 0.1618 +1 0.8039 +0 0.0574 +0 0.3003 +0 0.3273 +0 0.1855 +0 0.4467 +0 0.0423 +0 0.0518 +0 0.1555 +0 0.1165 +0 0.2883 +0 0.0585 +1 0.7513 +0 0.4757 +0 0.1031 +0 0.1202 +0 0.0678 +0 0.1037 +0 0.5109 +0 0.1091 +0 0.1486 +0 0.1203 +0 0.0516 +0 0.0916 +0 0.1624 +0 0.0953 +0 0.0364 +0 0.4888 +0 0.1232 +0 0.0926 +0 0.1464 +0 0.1814 +0 0.1153 +0 0.0802 +0 0.0384 +0 0.0654 +0 0.1906 +0 0.1213 +0 0.1358 +0 0.1292 +1 0.8806 +0 0.0568 +0 0.0591 +0 0.0887 +0 0.0892 +0 0.0806 +0 0.1229 +0 0.1794 +0 0.1911 +0 0.3609 +0 0.3545 +0 0.1244 +0 0.1924 +0 0.1177 +0 0.0373 +0 0.0310 +0 0.2893 +0 0.1477 +0 0.0788 +0 0.1533 +0 0.0509 +0 0.1969 +0 0.0925 +0 0.0889 +0 0.1586 +0 0.3665 +0 0.2830 +0 0.2263 +0 0.0768 +0 0.1071 +1 0.7620 +0 0.0975 +0 0.1903 +0 0.0573 +0 0.0757 +1 0.8546 +0 0.1340 +0 0.0524 +0 0.1176 +0 0.1564 +0 0.1401 +0 0.2407 +0 0.1126 +0 0.2770 +0 0.2218 +0 0.2309 +0 0.0771 +0 0.1075 +0 0.0648 +0 0.0913 +0 0.0868 +0 0.0871 +0 0.0400 +0 0.0796 +0 0.1462 +0 0.0350 +0 0.0649 +0 0.0836 +0 0.1069 +0 0.2155 +0 0.1182 +0 0.0633 +0 0.0723 +0 0.2601 +0 0.2132 +0 0.1265 +0 0.1428 +0 0.2493 +0 0.0694 +0 0.0366 +0 0.0812 +0 0.0680 +0 0.1138 +0 0.1948 +0 0.0421 +0 0.1896 +0 0.1008 +0 0.1598 +0 0.1142 +0 0.3183 +0 0.0740 +0 0.2068 +0 0.1512 +0 0.1141 +0 0.0845 +0 0.1497 +0 0.2562 +0 0.0718 +0 0.1524 +0 0.1237 +0 0.1459 +0 0.0597 +0 0.0641 +0 0.0672 +0 0.1149 +0 0.0324 +0 0.1816 +0 0.0559 +0 0.0979 +0 0.1373 +0 0.0800 +0 0.0623 +0 0.1551 +0 0.0920 +0 0.0593 +0 0.0895 +0 0.0520 +0 0.0568 +0 0.3185 +0 0.0631 +0 0.0825 +0 0.1530 +0 0.0566 +0 0.0955 +0 0.0801 +0 0.4573 +0 0.1434 +0 0.1485 +0 0.5239 +0 0.0559 +0 0.2229 +0 0.0774 +0 0.1270 +0 0.0712 +0 0.0296 +0 0.0960 +0 0.1287 +0 0.0371 +0 0.0918 +0 0.1733 +0 0.1695 +0 0.3340 +0 0.2029 +0 0.1107 +0 0.0831 +0 0.0964 +0 0.1034 +0 0.0606 +0 0.0373 +0 0.1036 +0 0.1155 +0 0.0454 +0 0.1529 +0 0.1055 +0 0.0855 +0 0.3399 +0 0.1300 +0 0.0689 +0 0.2064 +0 0.1454 +1 0.7504 +0 0.0811 +0 0.1149 +0 0.1091 +0 0.2314 +0 0.1535 +0 0.1415 +0 0.0728 +0 0.0918 +0 0.0781 +0 0.2475 +0 0.4195 +0 0.0568 +0 0.2533 +0 0.1622 +0 0.1436 +0 0.0830 +0 0.0893 +0 0.1648 +0 0.0520 +0 0.0859 +0 0.0608 +0 0.0867 +0 0.0847 +0 0.1021 +0 0.0697 +0 0.0747 +0 0.0972 +0 0.0913 +0 0.0581 +0 0.0489 +0 0.2329 +0 0.0559 +0 0.2850 +0 0.0581 +0 0.1522 +0 0.2983 +0 0.0635 +0 0.2168 +0 0.1294 +0 0.0775 +0 0.0479 +0 0.1329 +0 0.3504 +0 0.0328 +0 0.2735 +0 0.0835 +0 0.1177 +0 0.1680 +0 0.1015 +0 0.0846 +0 0.0666 +0 0.0671 +0 0.0807 +0 0.1369 +0 0.3214 +0 0.2305 +0 0.1034 +0 0.0765 +0 0.0380 +0 0.0713 +0 0.2193 +0 0.0774 +0 0.6011 +0 0.0742 +0 0.1741 +0 0.0759 +0 0.0577 +0 0.1060 +0 0.1159 +0 0.1104 +0 0.1156 +0 0.0826 +0 0.0404 +0 0.6373 +0 0.0662 +0 0.1113 +0 0.3139 +0 0.4203 +0 0.0546 +0 0.0859 +0 0.0653 +0 0.0682 +0 0.1106 +0 0.1241 +0 0.0719 +0 0.0948 +0 0.3917 +0 0.0737 +0 0.1661 +0 0.1816 +0 0.1989 +0 0.1836 +0 0.1011 +0 0.4707 +0 0.1366 +0 0.2407 +0 0.0374 +0 0.3892 +0 0.0502 +0 0.0793 +0 0.0592 +0 0.1532 +0 0.0697 +0 0.3764 +0 0.0745 +0 0.1174 +0 0.1516 +0 0.2328 +0 0.0655 +0 0.0663 +0 0.0620 +0 0.2768 +0 0.1189 +0 0.1964 +0 0.0859 +0 0.0531 +0 0.1100 +0 0.0932 +0 0.1279 +0 0.1555 +0 0.0871 +0 0.2871 +0 0.2394 +0 0.1046 +0 0.1362 +0 0.1142 +0 0.1384 +0 0.0483 +0 0.2586 +0 0.3166 +0 0.1287 +0 0.1730 +0 0.1752 +0 0.1784 +0 0.0654 +0 0.1443 +0 0.2549 +0 0.0582 +0 0.4326 +0 0.0408 +0 0.1522 +0 0.0815 +0 0.0894 +0 0.0828 +0 0.0847 +0 0.0506 +0 0.2216 +0 0.1188 +0 0.2631 +0 0.0667 +0 0.1505 +0 0.0789 +0 0.1195 +0 0.7257 +0 0.0979 +0 0.0970 +0 0.1498 +0 0.1844 +0 0.3333 +0 0.6614 +0 0.1175 +0 0.1094 +0 0.0467 +0 0.0368 +0 0.1794 +0 0.0650 +0 0.1210 +0 0.4885 +0 0.0666 +0 0.1453 +0 0.1401 +0 0.1014 +0 0.0740 +0 0.0871 +0 0.0993 +1 0.8643 +0 0.2624 +0 0.0720 +0 0.2086 +0 0.1045 +0 0.0834 +0 0.0462 +0 0.1463 +0 0.7177 +0 0.0658 +0 0.0455 +0 0.0465 +0 0.0908 +0 0.0574 +0 0.0756 +0 0.0863 +0 0.0540 +0 0.0907 +0 0.0827 +0 0.0743 +0 0.0798 +0 0.0489 +0 0.0721 +0 0.0952 +0 0.3444 +0 0.0440 +0 0.0492 +0 0.1395 +0 0.0761 +0 0.1437 +0 0.0635 +0 0.1176 +0 0.0885 +0 0.1287 +0 0.1666 +0 0.1079 +0 0.3716 +0 0.1982 +0 0.2886 +0 0.1015 +0 0.1784 +0 0.0854 +0 0.0995 +0 0.1161 +0 0.0580 +0 0.3020 +0 0.0629 +0 0.1351 +0 0.0859 +0 0.0997 +0 0.0659 +0 0.5460 +0 0.0728 +0 0.2299 +0 0.0580 +0 0.1202 +0 0.1076 +0 0.1520 +0 0.0706 +0 0.1972 +0 0.1179 +1 0.8063 +0 0.3590 +0 0.0440 +0 0.0472 +0 0.0838 +0 0.0649 +0 0.0999 +0 0.0716 +0 0.1997 +0 0.2068 +0 0.0890 +0 0.2406 +0 0.0769 +0 0.0701 +0 0.0638 +0 0.0580 +0 0.0751 +0 0.2916 +0 0.2342 +0 0.0831 +0 0.0590 +0 0.0368 +0 0.0967 +0 0.1166 +0 0.1287 +0 0.1824 +0 0.1650 +0 0.1689 +0 0.0834 +0 0.0824 +0 0.1387 +0 0.0735 +0 0.0912 +0 0.0701 +0 0.0492 +0 0.1011 +0 0.0778 +0 0.1021 +0 0.0417 +1 0.7913 +0 0.1025 +0 0.0965 +0 0.1602 +0 0.2045 +0 0.2487 +0 0.0477 +0 0.2230 +0 0.1730 +0 0.0681 +0 0.0605 +0 0.1037 +0 0.3746 +0 0.0658 +0 0.0957 +0 0.0825 +0 0.0477 +0 0.0847 +0 0.0995 +0 0.0711 +0 0.0921 +0 0.0889 +0 0.2045 +0 0.0623 +0 0.0886 +0 0.2169 +0 0.1593 +0 0.0613 +0 0.3953 +0 0.0897 +0 0.1471 +0 0.2312 +0 0.0915 +0 0.1047 +0 0.0585 +0 0.0754 +0 0.0517 +1 0.7875 +0 0.0743 +0 0.1315 +0 0.0912 +0 0.0974 +0 0.0421 +0 0.0780 +0 0.0605 +0 0.0429 +0 0.1430 +0 0.0917 +0 0.2657 +0 0.0956 +0 0.1111 +0 0.0651 +0 0.2748 +1 0.8596 +0 0.1032 +0 0.0938 +0 0.2035 +0 0.0893 +0 0.1003 +0 0.0576 +1 0.8142 +0 0.1480 +0 0.0494 +0 0.0745 +0 0.0956 +0 0.1598 +0 0.0929 +0 0.3044 +0 0.1200 +1 0.7678 +0 0.2897 +0 0.1229 +0 0.1590 +0 0.1898 +0 0.1066 +0 0.0560 +0 0.0634 +0 0.2269 +0 0.0445 +0 0.0777 +0 0.2247 +0 0.1141 +0 0.0739 +0 0.0733 +0 0.1194 +0 0.0508 +0 0.0960 +0 0.1606 +0 0.1505 +0 0.1617 +0 0.0393 +0 0.1358 +0 0.2307 +0 0.0919 +0 0.0857 +0 0.1775 +0 0.0502 +0 0.1201 +0 0.1329 +0 0.1137 +0 0.0653 +0 0.0719 +0 0.1902 +0 0.4059 +0 0.0813 +0 0.0686 +0 0.0769 +0 0.0790 +0 0.0621 +0 0.0752 +0 0.1218 +0 0.5057 +0 0.0830 +0 0.1510 +0 0.1951 +0 0.1670 +0 0.0886 +0 0.4930 +0 0.0875 +0 0.1271 +0 0.0995 +0 0.0814 +0 0.1467 +1 0.8756 +0 0.1653 +1 0.7977 +1 0.8211 +0 0.2839 +0 0.3555 +0 0.1791 +0 0.2127 +0 0.2424 +0 0.1818 +0 0.2759 +0 0.2058 +0 0.1796 +0 0.1571 +0 0.0882 +0 0.2139 +0 0.1937 +0 0.1249 +0 0.2138 +0 0.2445 +0 0.1621 +0 0.0437 +0 0.1131 +0 0.0602 +0 0.2680 +0 0.0424 +0 0.1105 +0 0.3027 +1 0.8119 +0 0.0844 +0 0.1331 +0 0.0789 +0 0.0993 +0 0.0808 +0 0.0975 +0 0.2640 +0 0.2172 +0 0.0398 +0 0.1719 +0 0.0512 +0 0.0316 +0 0.2450 +0 0.2016 +0 0.1336 +0 0.0815 +0 0.1333 +0 0.0329 +0 0.2495 +0 0.0726 +0 0.1221 +0 0.2064 +0 0.1997 +0 0.1048 +0 0.4127 +0 0.0799 +0 0.2141 +0 0.2429 +0 0.0900 +0 0.0826 +0 0.2945 +0 0.0896 +0 0.1385 +0 0.0532 +0 0.2415 +0 0.2255 +0 0.1587 +0 0.0957 +0 0.2013 +0 0.3294 +0 0.1574 +0 0.1568 +0 0.0979 +0 0.1346 +0 0.0545 +0 0.1024 +0 0.0436 +0 0.0640 +0 0.1830 +0 0.1335 +0 0.0991 +0 0.1570 +0 0.0800 +0 0.0532 +0 0.0792 +0 0.1801 +0 0.0639 +0 0.0646 +0 0.0971 +0 0.2145 +0 0.1267 +0 0.0814 +0 0.0387 +0 0.1150 +0 0.1993 +0 0.1223 +0 0.1036 +0 0.1052 +0 0.0833 +0 0.6012 +0 0.0465 +0 0.2368 +0 0.0884 +0 0.6769 +0 0.0506 +0 0.0660 +0 0.0637 +0 0.0550 +0 0.0463 +0 0.3768 +0 0.0654 +0 0.1181 +0 0.0616 +0 0.0889 +0 0.0825 +0 0.2717 +0 0.0588 +0 0.6463 +0 0.1494 +0 0.0659 +0 0.0725 +0 0.1655 +0 0.2668 +0 0.0336 +0 0.1768 +0 0.0617 +0 0.1169 +0 0.1540 +0 0.1194 +0 0.1896 +0 0.0826 +0 0.1115 +0 0.0558 +0 0.1292 +0 0.1710 +0 0.0806 +0 0.0852 +0 0.0916 +0 0.0630 +0 0.0519 +0 0.1411 +0 0.1276 +0 0.0979 +0 0.4223 +0 0.1478 +0 0.2074 +0 0.1000 +0 0.2699 +0 0.0566 +0 0.0616 +0 0.0772 +0 0.0496 +0 0.5910 +0 0.2741 +0 0.0543 +0 0.1701 +0 0.0672 +0 0.0404 +0 0.1312 +0 0.0630 +0 0.1421 +0 0.1593 +0 0.2331 +0 0.0631 +0 0.0648 +0 0.1819 +0 0.2211 +0 0.6184 +0 0.1436 +0 0.0401 +0 0.0788 +0 0.2334 +0 0.0736 +0 0.2081 +0 0.0638 +1 0.7617 +0 0.0877 +0 0.1600 +0 0.1054 +0 0.1333 +0 0.0828 +0 0.2571 +0 0.1620 +0 0.2133 +0 0.0802 +0 0.0803 +0 0.4322 +0 0.2077 +0 0.1307 +0 0.0711 +0 0.1157 +0 0.0739 +0 0.0950 +0 0.0487 +0 0.0591 +0 0.1354 +0 0.0865 +0 0.3311 +0 0.1969 +0 0.0695 +0 0.0402 +0 0.0938 +0 0.1222 +0 0.1043 +0 0.1359 +1 0.8586 +0 0.1941 +0 0.0752 +0 0.0361 +0 0.1182 +0 0.1124 +0 0.1337 +0 0.1060 +0 0.0357 +0 0.0920 +0 0.1316 +0 0.3568 +0 0.0789 +0 0.0527 +0 0.1932 +0 0.2879 +0 0.1047 +0 0.0670 +0 0.0898 +0 0.1249 +0 0.0430 +1 0.8273 +0 0.1667 +0 0.1703 +0 0.0908 +0 0.0975 +0 0.1048 +0 0.1689 +0 0.1770 +0 0.1102 +0 0.0517 +0 0.0905 +0 0.0933 +0 0.3906 +0 0.1266 +0 0.1121 +0 0.1542 +0 0.0823 +0 0.0921 +0 0.0805 +0 0.6737 +0 0.2170 +0 0.0676 +1 0.8049 +0 0.2104 +0 0.0418 +0 0.0647 +0 0.0683 +0 0.0653 +0 0.0615 +0 0.1945 +0 0.0842 +0 0.1371 +0 0.4219 +0 0.0966 +0 0.0812 +0 0.0421 +0 0.0384 +0 0.7232 +0 0.1423 +0 0.1123 +0 0.4840 +0 0.0959 +0 0.6202 +0 0.1626 +0 0.0818 +0 0.4205 +0 0.0424 +0 0.2572 +0 0.0406 +0 0.0843 +0 0.1644 +0 0.1001 +0 0.1874 +0 0.1293 +0 0.1217 +0 0.0606 +0 0.1055 +0 0.0627 +0 0.0790 +0 0.2640 +0 0.1031 +0 0.0432 +0 0.0641 +0 0.0797 +0 0.1282 +0 0.0448 +0 0.1791 +0 0.0491 +0 0.1707 +0 0.2311 +0 0.1201 +0 0.2180 +0 0.0805 +0 0.0851 +0 0.0762 +0 0.1401 +0 0.1611 +0 0.3243 +0 0.0980 +0 0.0732 +0 0.1897 +0 0.3871 +0 0.2049 +0 0.0858 +0 0.0787 +0 0.1169 +0 0.1898 +0 0.3775 +0 0.0519 +0 0.1102 +0 0.0400 +0 0.1225 +0 0.1116 +0 0.1969 +0 0.0336 +0 0.1841 +0 0.1281 +0 0.0468 +0 0.1499 +0 0.0805 +0 0.0829 +0 0.0775 +0 0.0983 +0 0.2282 +0 0.0791 +0 0.0900 +0 0.1840 +0 0.0924 +0 0.1435 +0 0.0283 +0 0.1237 +0 0.1742 +0 0.1706 +0 0.0616 +0 0.0811 +0 0.0464 +0 0.0678 +0 0.0813 +0 0.0726 +0 0.0818 +0 0.0532 +0 0.1781 +0 0.1010 +0 0.0775 +0 0.1016 +0 0.0360 +0 0.0802 +0 0.1266 +0 0.0709 +0 0.0741 +0 0.0671 +0 0.1357 +0 0.1410 +0 0.1266 +0 0.1154 +0 0.2168 +0 0.0824 +0 0.3374 +0 0.0843 +0 0.0640 +0 0.1663 +0 0.0742 +0 0.0703 +0 0.1937 +0 0.1462 +0 0.0895 +0 0.1834 +0 0.1464 +0 0.1028 +0 0.1056 +0 0.0729 +0 0.0804 +0 0.0918 +0 0.1283 +0 0.1346 +0 0.1165 +0 0.0826 +0 0.3450 +0 0.0763 +0 0.0629 +0 0.0766 +0 0.1591 +0 0.1469 +0 0.1056 +0 0.4107 +0 0.0502 +0 0.0928 +0 0.5278 +0 0.1558 +0 0.0887 +0 0.0577 +0 0.0602 +0 0.0815 +0 0.2164 +0 0.0644 +0 0.0603 +0 0.0902 +0 0.0946 +0 0.1056 +0 0.2287 +0 0.0550 +0 0.0918 +0 0.0347 +0 0.1482 +0 0.2121 +0 0.2336 +0 0.1261 +0 0.0717 +0 0.0894 +0 0.1255 +0 0.1296 +0 0.2005 +0 0.0650 +0 0.1276 +0 0.3589 +0 0.1751 +0 0.1015 +0 0.0412 +0 0.1430 +0 0.0736 +0 0.1075 +0 0.2255 +0 0.0646 +0 0.0518 +0 0.1229 +0 0.3032 +0 0.1685 +0 0.1217 +0 0.1747 +0 0.0444 +0 0.1727 +0 0.1181 +0 0.3177 +0 0.1093 +1 0.8580 +0 0.0932 +0 0.0980 +0 0.1249 +0 0.7023 +0 0.1275 +0 0.0735 +0 0.1585 +0 0.0480 +0 0.3886 +0 0.0599 +0 0.1793 +0 0.1251 +0 0.1109 +0 0.1236 +0 0.0644 +0 0.0382 +0 0.0473 +0 0.1404 +0 0.0965 +0 0.1159 +0 0.1137 +0 0.2734 +0 0.0828 +0 0.1188 +0 0.1600 +0 0.1271 +0 0.3374 +0 0.1098 +0 0.1157 +0 0.2480 +0 0.1400 +0 0.2665 +0 0.2512 +0 0.3167 +0 0.0633 +0 0.1267 +0 0.0622 +0 0.0521 +0 0.1713 +0 0.0841 +0 0.0552 +0 0.1068 +0 0.0585 +0 0.1070 +0 0.1033 +0 0.1608 +0 0.0837 +0 0.1745 +0 0.1175 +0 0.0667 +0 0.1591 +0 0.0880 +0 0.0952 +0 0.0666 +0 0.1396 +0 0.0861 +0 0.0341 +0 0.2299 +0 0.1098 +0 0.0796 +0 0.1003 +0 0.0888 +0 0.1819 +0 0.1496 +0 0.0955 +0 0.0515 +0 0.0943 +0 0.0441 +0 0.0370 +0 0.0874 +0 0.1127 +0 0.2125 +0 0.2831 +0 0.2424 +0 0.0967 +0 0.1509 +0 0.0798 +0 0.0615 +0 0.0797 +0 0.1770 +0 0.1076 +0 0.0638 +0 0.2084 +0 0.0277 +0 0.1457 +0 0.0525 +0 0.0659 +0 0.2484 +0 0.1436 +0 0.1798 +0 0.4864 +0 0.0833 +0 0.0878 +0 0.1902 +0 0.2764 +1 0.7545 +0 0.0759 +0 0.0362 +0 0.1066 +1 0.7884 +0 0.1013 +0 0.0873 +0 0.0824 +0 0.2839 +0 0.1131 +0 0.1142 +0 0.0682 +0 0.0352 +0 0.0484 +0 0.1969 +0 0.1145 +0 0.2741 +0 0.0667 +0 0.0465 +0 0.1168 +0 0.1237 +0 0.0377 +0 0.0907 +0 0.1308 +0 0.0528 +0 0.0621 +0 0.3399 +0 0.0525 +0 0.1308 +0 0.1120 +0 0.1829 +0 0.1097 +0 0.0973 +1 0.8206 +0 0.2860 +0 0.1121 +0 0.0588 +0 0.2349 +0 0.1051 +0 0.1941 +0 0.1662 +0 0.0971 +0 0.3250 +0 0.2111 +0 0.2356 +0 0.1302 +0 0.0783 +0 0.2441 +0 0.0365 +0 0.2660 +0 0.0586 +0 0.1358 +0 0.0532 +0 0.1361 +0 0.0504 +0 0.0816 +0 0.1511 +0 0.0516 +0 0.1342 +0 0.0654 +0 0.2373 +0 0.1771 +0 0.0417 +0 0.0649 +0 0.0913 +0 0.1315 +0 0.2321 +0 0.0484 +0 0.0880 +0 0.1495 +0 0.2404 +0 0.0911 +1 0.7602 +0 0.0575 +0 0.0473 +0 0.2657 +0 0.0655 +0 0.2474 +0 0.1364 +0 0.0647 +0 0.3120 +0 0.1644 +0 0.1519 +0 0.1321 +0 0.0526 +0 0.1129 +0 0.0835 +0 0.0599 +0 0.1942 +0 0.0819 +0 0.4547 +0 0.2017 +0 0.0836 +0 0.0604 +0 0.6972 +0 0.1800 +0 0.0703 +0 0.0709 +0 0.1687 +0 0.1390 +0 0.1365 +0 0.1759 +0 0.0865 +0 0.1978 +0 0.2746 +0 0.1782 +0 0.1945 +0 0.0762 +0 0.0702 +0 0.1222 +0 0.1219 +0 0.0760 +0 0.0415 +1 0.8108 +0 0.0938 +0 0.0735 +0 0.1882 +0 0.1098 +0 0.1972 +0 0.2484 +0 0.1317 +0 0.1522 +0 0.0494 +0 0.0920 +0 0.0798 +0 0.1765 +0 0.0368 +0 0.0709 +0 0.7232 +0 0.2180 +1 0.7831 +0 0.1606 +0 0.2172 +0 0.2790 +0 0.1296 +0 0.0434 +0 0.2397 +0 0.6782 +0 0.0676 +0 0.1045 +1 0.8117 +0 0.1270 +0 0.1780 +0 0.2379 +0 0.0966 +0 0.0612 +0 0.0741 +0 0.0833 +0 0.1296 +0 0.1418 +0 0.1012 +0 0.0938 +0 0.1074 +0 0.0917 +0 0.4246 +0 0.1023 +0 0.0441 +0 0.1622 +0 0.0360 +0 0.2722 +0 0.0606 +0 0.0578 +0 0.0595 +0 0.1438 +0 0.1183 +0 0.0911 +0 0.1575 +0 0.1054 +0 0.1059 +0 0.1348 +0 0.0530 +0 0.0721 +0 0.0927 +0 0.3435 +0 0.0763 +0 0.0763 +0 0.0629 +0 0.1757 +0 0.0870 +0 0.0659 +0 0.0694 +0 0.0517 +0 0.1234 +0 0.0701 +0 0.0560 +0 0.0992 +0 0.1503 +0 0.1098 +0 0.0594 +0 0.1057 +0 0.2920 +0 0.0698 +0 0.1842 +0 0.1082 +0 0.0683 +0 0.0654 +0 0.0920 +0 0.0584 +0 0.0746 +0 0.3390 +0 0.0592 +0 0.0780 +0 0.1366 +0 0.0650 +0 0.1250 +0 0.6320 +0 0.2442 +0 0.0846 +0 0.2068 +0 0.1232 +0 0.0786 +0 0.0858 +0 0.1661 +0 0.1055 +0 0.3400 +0 0.0989 +0 0.1022 +0 0.0635 +0 0.1369 +0 0.2317 +0 0.1623 +0 0.0517 +0 0.1694 +0 0.0836 +0 0.1066 +0 0.0611 +0 0.5509 +0 0.0986 +0 0.0703 +0 0.1341 +0 0.2249 +0 0.1597 +0 0.0541 +0 0.1599 +0 0.0908 +0 0.4184 +1 0.7740 +0 0.1680 +0 0.1398 +0 0.1729 +0 0.1828 +0 0.1148 +0 0.0360 +0 0.7408 +0 0.0954 +0 0.0701 +0 0.1071 +0 0.0533 +0 0.0998 +0 0.0512 +0 0.3073 +0 0.0620 +0 0.1273 +0 0.1145 +0 0.3160 +0 0.0647 +0 0.1008 +0 0.1417 +0 0.7298 +0 0.1938 +0 0.0486 +0 0.1188 +0 0.3793 +0 0.1097 +0 0.2568 +0 0.0440 +0 0.1244 +0 0.2134 +0 0.4807 +0 0.0822 +0 0.1852 +0 0.1488 +0 0.1365 +0 0.0740 +0 0.0753 +0 0.1420 +0 0.2443 +0 0.0482 +0 0.1913 +0 0.2047 +0 0.0577 +0 0.0379 +0 0.0787 +0 0.1192 +0 0.0563 +0 0.1431 +0 0.4318 +0 0.0812 +0 0.3226 +1 0.2604 +0 0.3352 +0 0.0808 +0 0.0409 +0 0.2791 +0 0.1522 +0 0.2854 +0 0.1129 +0 0.0702 +0 0.0987 +0 0.3188 +0 0.0714 +0 0.1890 +0 0.1679 +0 0.0928 +0 0.2130 +0 0.0943 +0 0.1983 +0 0.0602 +0 0.1806 +0 0.1776 +0 0.0909 +0 0.2564 +0 0.0853 +0 0.0996 +0 0.0700 +0 0.1011 +0 0.0717 +0 0.0431 +0 0.1214 +0 0.0428 +0 0.0962 +0 0.0797 +0 0.0582 +0 0.1349 +0 0.0996 +0 0.1073 +0 0.0857 +0 0.2269 +0 0.1593 +0 0.0639 +0 0.0858 +0 0.0722 +0 0.0761 +0 0.0418 +0 0.1348 +0 0.1059 +0 0.0961 +0 0.2378 +0 0.0460 +0 0.0827 +0 0.1416 +0 0.1768 +0 0.0647 +0 0.1669 +0 0.0776 +0 0.6270 +0 0.2448 +0 0.2656 +0 0.0591 +1 0.8210 +0 0.1341 +0 0.0551 +0 0.0547 +0 0.0671 +0 0.1234 +0 0.0824 +0 0.1569 +0 0.2704 +0 0.2533 +0 0.0609 +0 0.0713 +0 0.0660 +0 0.0578 +0 0.1647 +0 0.2219 +0 0.0856 +0 0.2075 +0 0.0708 +0 0.1339 +0 0.0811 +0 0.0877 +0 0.1571 +0 0.1462 +0 0.1053 +0 0.0509 +0 0.0783 +0 0.1873 +0 0.2224 +0 0.0623 +0 0.4020 +0 0.1577 +0 0.1577 +0 0.0841 +0 0.1645 +0 0.1146 +0 0.0909 +0 0.0516 +0 0.1579 +0 0.0674 +1 0.7973 +0 0.1385 +0 0.3070 +0 0.1008 +0 0.0788 +0 0.0690 +0 0.1765 +0 0.1847 +0 0.3389 +0 0.1561 +0 0.0653 +0 0.1117 +0 0.2515 +0 0.0798 +0 0.0862 +0 0.0713 +0 0.0973 +0 0.1209 +0 0.3133 +0 0.2478 +0 0.0462 +0 0.0521 +0 0.0650 +0 0.0343 +1 0.7716 +0 0.0747 +0 0.1221 +0 0.1776 +0 0.0609 +0 0.2170 +0 0.1807 +0 0.0677 +0 0.0384 +0 0.0924 +0 0.3211 +0 0.1552 +0 0.0644 +0 0.1022 +0 0.1087 +0 0.0627 +0 0.2137 +0 0.0634 +0 0.1407 +0 0.0687 +1 0.7649 +0 0.0839 +0 0.0847 +0 0.2107 +0 0.1183 +0 0.1051 +0 0.1533 +0 0.0910 +0 0.1047 +0 0.1221 +0 0.0734 +0 0.1309 +0 0.1213 +0 0.7173 +0 0.0943 +0 0.1215 +0 0.0566 +0 0.1015 +0 0.0474 +0 0.0609 +0 0.3220 +0 0.2335 +0 0.1880 +0 0.0730 +0 0.1421 +0 0.1119 +0 0.1051 +0 0.0878 +0 0.0559 +0 0.1140 +0 0.0454 +0 0.0868 +0 0.0833 +0 0.1949 +0 0.0971 +0 0.0478 +0 0.0422 +0 0.0918 +0 0.1432 +0 0.0398 +0 0.0840 +0 0.2191 +0 0.1701 +0 0.4934 +0 0.0809 +0 0.1323 +0 0.1028 +0 0.0596 +0 0.1530 +0 0.4840 +0 0.1239 +0 0.2463 +0 0.2195 +0 0.1245 +0 0.4178 +0 0.1224 +0 0.1027 +0 0.0394 +0 0.0416 +0 0.0768 +0 0.1529 +0 0.0767 +0 0.1124 +0 0.0573 +0 0.0465 +0 0.0665 +0 0.1333 +0 0.5765 +0 0.0417 +0 0.0878 +0 0.0720 +0 0.0422 +0 0.4502 +0 0.1131 +0 0.0522 +0 0.0400 +0 0.1238 +0 0.0687 +0 0.1132 +0 0.0798 +0 0.0994 +0 0.1267 +0 0.1180 +1 0.7833 +0 0.0666 +0 0.1120 +0 0.1419 +0 0.1868 +0 0.0728 +0 0.1131 +0 0.0861 +0 0.0834 +0 0.1681 +0 0.1383 +0 0.3059 +0 0.1872 +0 0.5959 +0 0.1346 +0 0.3085 +0 0.0671 +0 0.0819 +0 0.1381 +0 0.2414 +0 0.0928 +0 0.0892 +0 0.0887 +0 0.0930 +0 0.1019 +0 0.1277 +0 0.0808 +0 0.1916 +0 0.1517 +0 0.0473 +0 0.0810 +0 0.1146 +0 0.0949 +0 0.0929 +0 0.2007 +0 0.0404 +0 0.0894 +0 0.1729 +0 0.2681 +0 0.0589 +0 0.1143 +0 0.1114 +0 0.0910 +0 0.1983 +0 0.2135 +0 0.1296 +0 0.1800 +0 0.5048 +0 0.1017 +0 0.0521 +0 0.1690 +0 0.2649 +0 0.0888 +0 0.0690 +0 0.1477 +0 0.0681 +0 0.0627 +0 0.0616 +0 0.1538 +0 0.0764 +0 0.2361 +0 0.0545 +0 0.0529 +0 0.1984 +0 0.0650 +0 0.0838 +0 0.0641 +0 0.0781 +0 0.1240 +0 0.1136 +0 0.0741 +0 0.0769 +0 0.0746 +0 0.1919 +0 0.0350 +0 0.0735 +0 0.1286 +0 0.0684 +0 0.1384 +0 0.0781 +0 0.6779 +0 0.1074 +0 0.0781 +0 0.6056 +0 0.1133 +0 0.0342 +0 0.1856 +0 0.4742 +0 0.0421 +0 0.0913 +0 0.0477 +0 0.0534 +0 0.1921 +0 0.0898 +0 0.0565 +0 0.0902 +0 0.2245 +0 0.0904 +0 0.0905 +0 0.3723 +0 0.1039 +0 0.2825 +0 0.3020 +0 0.1470 +0 0.1510 +0 0.1117 +0 0.0591 +0 0.1373 +0 0.1607 +0 0.1886 +0 0.0550 +0 0.1263 +0 0.1875 +0 0.4403 +0 0.1457 +0 0.1180 +0 0.0601 +0 0.0931 +0 0.0376 +0 0.0284 +0 0.1375 +0 0.0574 +0 0.6068 +0 0.0857 +0 0.1047 +0 0.1984 +0 0.0763 +0 0.0605 +0 0.0391 +0 0.0759 +0 0.1201 +0 0.0638 +0 0.2360 +0 0.1887 +0 0.0761 +0 0.0656 +0 0.0789 +0 0.0963 +0 0.1079 +0 0.0893 +0 0.2782 +0 0.2220 +0 0.0983 +0 0.1998 +0 0.0782 +0 0.0659 +0 0.0878 +0 0.2613 +0 0.1201 +0 0.0679 +0 0.0565 +0 0.1905 +0 0.1695 +0 0.3258 +0 0.0821 +0 0.6538 +0 0.1714 +0 0.1460 +0 0.1906 +0 0.2772 +0 0.0755 +0 0.0977 +0 0.1902 +0 0.0712 +0 0.1000 +0 0.3862 +0 0.1740 +0 0.1048 +0 0.2052 +0 0.0510 +0 0.0770 +0 0.0672 +0 0.4973 +0 0.1218 +0 0.1369 +0 0.2379 +0 0.1430 +0 0.0543 +0 0.0583 +0 0.0284 +0 0.1561 +0 0.0888 +0 0.1160 +0 0.1022 +0 0.1485 +0 0.0863 +0 0.3672 +0 0.0784 +0 0.0503 +0 0.1117 +1 0.8863 +0 0.3504 +0 0.0754 +0 0.0795 +0 0.0453 +0 0.1349 +0 0.2055 +0 0.1190 +0 0.0990 +0 0.0917 +0 0.1694 +0 0.1460 +0 0.1388 +0 0.0465 +0 0.1222 +0 0.1344 +0 0.0777 +0 0.0740 +0 0.0970 +0 0.0650 +0 0.3507 +0 0.0855 +0 0.0488 +0 0.1211 +0 0.0620 +0 0.0515 +0 0.0902 +0 0.1006 +0 0.0692 +0 0.1237 +0 0.2578 +0 0.1446 +0 0.0657 +0 0.1376 +0 0.0625 +0 0.0773 +0 0.1261 +0 0.0604 +0 0.0447 +0 0.0703 +1 0.7944 +0 0.2099 +0 0.5022 +0 0.0805 +0 0.0593 +0 0.0481 +0 0.4620 +0 0.1139 +0 0.1519 +0 0.1471 +0 0.6165 +0 0.0675 +0 0.0979 +0 0.0642 +0 0.7179 +0 0.1955 +0 0.2905 +0 0.0915 +0 0.1089 +1 0.7651 +0 0.0860 +0 0.0508 +1 0.7683 +0 0.1163 +0 0.0382 +0 0.0987 +0 0.0491 +0 0.2633 +0 0.1152 +0 0.1111 +0 0.5153 +0 0.0706 +0 0.0622 +0 0.3230 +0 0.1267 +0 0.0642 +0 0.0593 +0 0.0717 +0 0.1892 +0 0.3980 +0 0.5780 +0 0.1051 +0 0.0859 +0 0.0710 +0 0.0855 +0 0.2031 +0 0.0634 +0 0.1389 +0 0.5909 +0 0.0398 +0 0.0639 +0 0.0909 +0 0.0882 +0 0.2608 +0 0.1413 +0 0.0960 +1 0.8198 +0 0.1063 +0 0.1876 +0 0.0967 +0 0.0744 +0 0.0799 +0 0.2694 +0 0.0599 +0 0.1371 +0 0.0704 +0 0.1324 +0 0.0524 +0 0.1150 +0 0.1273 +0 0.1109 +0 0.2311 +0 0.0626 +0 0.1048 +0 0.1433 +0 0.1907 +0 0.2571 +0 0.5871 +0 0.0745 +0 0.0871 +0 0.0501 +0 0.0498 +0 0.0980 +0 0.2022 +0 0.1239 +0 0.0894 +0 0.0308 +0 0.1034 +0 0.1822 +0 0.1725 +0 0.1426 +0 0.1303 +0 0.0879 +0 0.1100 +0 0.0812 +0 0.4720 +0 0.0644 +0 0.0680 +0 0.2123 +0 0.1135 +0 0.0336 +0 0.0318 +0 0.1601 +0 0.1017 +0 0.2823 +0 0.1497 +0 0.0365 +0 0.2673 +0 0.0965 +0 0.6494 +0 0.1205 +0 0.1089 +0 0.0899 +0 0.1430 +0 0.1040 +0 0.1103 +0 0.1518 +0 0.1169 +0 0.1460 +0 0.1179 +0 0.0842 +0 0.1166 +0 0.0822 +0 0.0495 +0 0.1447 +0 0.3688 +0 0.2596 +0 0.0796 +0 0.0543 +0 0.0666 +0 0.4191 +0 0.0647 +0 0.0958 +0 0.2247 +0 0.0537 +0 0.1845 +1 0.8529 +0 0.1064 +0 0.0900 +0 0.0791 +0 0.0817 +0 0.0820 +0 0.0869 +0 0.3254 +0 0.0532 +0 0.0704 +0 0.2315 +0 0.0574 +0 0.1426 +0 0.1411 +0 0.1309 +0 0.0647 +0 0.0592 +0 0.1999 +0 0.2605 +0 0.1064 +0 0.1026 +0 0.1303 +0 0.1273 +0 0.0570 +0 0.2213 +0 0.0640 +0 0.0305 +0 0.2124 +0 0.1385 +0 0.0714 +0 0.0869 +0 0.1474 +0 0.0572 +0 0.0548 +0 0.0617 +0 0.1179 +0 0.1684 +0 0.0458 +0 0.0605 +0 0.2066 +0 0.1971 +0 0.1483 +0 0.1848 +0 0.1486 +0 0.2907 +0 0.1365 +0 0.0760 +0 0.1068 +0 0.1155 +0 0.0802 +0 0.1008 +0 0.1093 +0 0.0658 +0 0.1861 +0 0.1025 +0 0.5907 +0 0.0640 +0 0.0941 +1 0.7526 +0 0.2493 +0 0.1690 +0 0.0506 +0 0.0783 +0 0.3488 +0 0.1010 +1 0.7949 +0 0.0735 +0 0.2116 +0 0.0729 +0 0.1162 +0 0.0502 +0 0.1910 +0 0.0403 +0 0.0534 +0 0.1689 +0 0.1577 +0 0.6206 +0 0.1854 +0 0.0747 +0 0.0695 +0 0.0733 +1 0.7751 +0 0.1501 +0 0.0937 +0 0.0966 +0 0.1173 +0 0.3084 +0 0.0691 +0 0.0531 +0 0.0794 +0 0.0958 +0 0.1386 +0 0.0519 +0 0.0953 +0 0.2076 +0 0.1605 +0 0.7321 +0 0.1419 +0 0.1158 +0 0.0724 +0 0.1738 +0 0.2210 +0 0.0653 +0 0.0702 +0 0.0878 +0 0.1547 +0 0.1600 +0 0.1316 +0 0.1276 +0 0.0877 +0 0.0711 +0 0.0412 +0 0.0517 +0 0.2030 +0 0.1328 +0 0.1084 +0 0.3932 +0 0.0839 +0 0.0882 +0 0.0676 +0 0.0683 +0 0.1047 +0 0.2260 +0 0.6148 +0 0.1386 +0 0.6767 +0 0.2409 +0 0.1114 +0 0.0898 +0 0.1532 +0 0.3973 +0 0.0780 +0 0.0931 +0 0.0632 +0 0.0996 +0 0.1456 +0 0.1925 +0 0.1061 +0 0.1289 +0 0.0822 +0 0.0611 +0 0.1043 +0 0.0721 +0 0.1305 +0 0.3050 +0 0.0531 +0 0.2257 +0 0.0586 +0 0.0547 +0 0.0480 +0 0.1372 +0 0.1006 +0 0.2036 +0 0.0358 +0 0.1342 +0 0.2370 +0 0.1900 +0 0.0920 +0 0.1803 +0 0.0922 +0 0.1132 +0 0.1177 +0 0.0830 +0 0.2172 +0 0.1501 +0 0.1701 +0 0.0636 +0 0.0581 +0 0.0464 +0 0.1746 +0 0.2732 +0 0.6949 +0 0.0872 +0 0.0333 +0 0.0530 +0 0.1945 +0 0.0827 +0 0.1769 +0 0.3265 +0 0.0711 +0 0.1053 +0 0.0626 +0 0.2069 +0 0.1004 +0 0.0863 +0 0.0516 +0 0.0869 +0 0.6932 +0 0.0716 +0 0.3401 +0 0.1812 +0 0.1881 +0 0.0763 +0 0.1095 +0 0.0964 +0 0.1448 +0 0.0678 +0 0.1659 +0 0.0463 +0 0.0993 +0 0.1029 +0 0.0773 +0 0.0856 +0 0.1163 +0 0.2356 +0 0.2002 +0 0.1640 +0 0.4319 +0 0.0651 +0 0.2293 +0 0.0834 +0 0.1547 +0 0.1819 +0 0.1392 +0 0.0323 +0 0.0434 +0 0.0566 +0 0.1173 +0 0.1514 +0 0.0867 +0 0.2373 +0 0.0760 +0 0.0565 +0 0.0794 +0 0.6797 +0 0.0416 +0 0.0839 +0 0.2265 +0 0.2157 +0 0.1013 +0 0.0920 +0 0.0922 +0 0.0366 +0 0.1629 +0 0.1131 +0 0.1981 +0 0.1733 +0 0.7078 +0 0.1532 +0 0.1448 +0 0.1073 +0 0.0448 +0 0.0601 +0 0.1265 +0 0.1258 +0 0.2092 +0 0.1063 +0 0.0957 +0 0.0817 +0 0.0565 +0 0.2043 +0 0.1079 +0 0.3614 +0 0.0450 +0 0.0863 +0 0.0494 +0 0.1539 +0 0.0592 +0 0.1483 +0 0.1807 +0 0.0922 +0 0.0498 +0 0.0532 +0 0.0906 +0 0.0673 +0 0.3660 +0 0.0793 +0 0.0516 +0 0.0667 +0 0.4428 +0 0.6052 +0 0.0781 +0 0.0794 +0 0.3194 +0 0.1400 +1 0.7998 +0 0.2006 +0 0.0546 +0 0.0955 +0 0.1224 +0 0.0606 +0 0.1246 +0 0.2975 +0 0.2080 +0 0.0778 +0 0.1355 +0 0.0870 +0 0.0760 +0 0.1240 +0 0.1702 +0 0.1537 +0 0.1028 +0 0.1746 +0 0.2607 +0 0.0909 +0 0.0687 +0 0.2300 +0 0.0832 +0 0.1971 +0 0.4871 +0 0.2090 +0 0.1810 +0 0.1583 +0 0.1102 +0 0.1547 +0 0.0789 +1 0.8163 +0 0.0855 +0 0.1334 +0 0.0586 +0 0.1081 +0 0.1750 +0 0.1650 +0 0.0936 +0 0.0695 +0 0.1844 +0 0.2474 +0 0.0825 +0 0.1092 +0 0.0603 +0 0.0455 +0 0.0651 +0 0.1684 +0 0.0681 +0 0.3892 +0 0.0445 +0 0.2895 +0 0.1013 +0 0.0511 +0 0.3230 +0 0.0558 +0 0.0797 +0 0.0821 +0 0.1870 +0 0.1060 +0 0.0834 +0 0.0995 +0 0.0937 +0 0.1199 +0 0.1218 +0 0.0835 +0 0.0610 +0 0.1319 +0 0.1773 +0 0.0677 +0 0.0435 +0 0.1115 +0 0.0628 +0 0.1592 +0 0.4386 +0 0.1231 +0 0.0528 +0 0.1196 +0 0.1229 +0 0.2095 +0 0.1005 +0 0.1108 +0 0.0684 +0 0.0529 +0 0.1549 +0 0.3151 +0 0.1331 +0 0.0679 +0 0.0834 +0 0.1072 +0 0.2461 +0 0.1992 +0 0.0577 +0 0.1473 +0 0.0932 +0 0.1076 +0 0.2249 +0 0.0909 +0 0.0878 +0 0.0600 +0 0.0902 +0 0.1370 +0 0.0431 +0 0.1837 +0 0.1153 +0 0.1184 +0 0.0537 +0 0.2283 +0 0.0747 +0 0.2609 +0 0.1261 +0 0.1449 +0 0.1437 +0 0.0688 +0 0.4209 +0 0.1051 +0 0.1930 +0 0.0510 +0 0.2288 +0 0.0761 +0 0.0615 +0 0.0910 +0 0.0777 +0 0.1539 +0 0.1264 +0 0.0738 +0 0.2757 +0 0.1053 +0 0.0303 +1 0.7665 +0 0.0405 +0 0.1702 +0 0.2503 +0 0.0736 +0 0.0784 +0 0.0546 +0 0.0802 +0 0.0577 +0 0.2397 +0 0.0935 +0 0.0991 +0 0.0806 +0 0.0587 +0 0.0595 +0 0.3119 +0 0.1971 +0 0.0497 +0 0.0806 +1 0.8081 +0 0.1776 +0 0.1053 +0 0.1694 +0 0.1273 +0 0.1543 +0 0.0519 +0 0.1900 +0 0.1321 +0 0.1068 +0 0.1242 +0 0.1304 +0 0.0567 +0 0.2946 +0 0.0382 +0 0.1719 +0 0.0939 +0 0.0420 +0 0.1265 +0 0.0354 +0 0.0705 +0 0.0963 +0 0.2032 +0 0.1289 +0 0.0527 +0 0.1302 +0 0.0962 +0 0.1322 +0 0.0363 +0 0.1393 +0 0.0996 +0 0.0327 +0 0.3673 +0 0.0575 +0 0.1686 +0 0.0908 +0 0.0635 +0 0.1215 +0 0.0833 +0 0.1379 +0 0.0635 +0 0.0697 +0 0.0794 +0 0.1215 +0 0.0648 +0 0.0975 +1 0.7924 +0 0.0591 +0 0.4213 +0 0.0914 +0 0.1472 +0 0.7235 +0 0.1534 +0 0.0831 +0 0.0492 +0 0.1603 +0 0.1009 +0 0.2184 +0 0.4211 +0 0.1859 +0 0.2088 +0 0.2217 +0 0.0767 +0 0.0547 +0 0.1861 +0 0.1656 +0 0.0709 +0 0.0410 +0 0.0886 +0 0.1308 +0 0.0947 +0 0.1897 +0 0.1059 +0 0.2076 +0 0.1386 +0 0.0897 +0 0.2963 +0 0.1381 +0 0.0422 +0 0.0797 +0 0.0585 +0 0.2382 +0 0.1646 +0 0.1705 +0 0.0597 +0 0.0743 +0 0.1532 +0 0.1056 +0 0.1295 +0 0.0813 +0 0.2205 +0 0.1753 +0 0.2195 +0 0.1185 +0 0.1777 +0 0.0826 +0 0.1310 +0 0.0800 +0 0.2197 +0 0.1058 +0 0.1217 +0 0.1106 +0 0.0793 +0 0.1019 +0 0.0795 +0 0.0613 +0 0.2086 +0 0.2386 +0 0.0743 +0 0.0472 +0 0.0873 +0 0.2014 +0 0.0504 +0 0.1867 +0 0.0823 +0 0.0665 +0 0.0809 +0 0.0845 +0 0.6391 +0 0.2284 +0 0.2102 +0 0.0799 +0 0.1502 +0 0.1028 +0 0.0538 +0 0.0423 +0 0.0709 +0 0.1309 +0 0.0623 +0 0.1803 +0 0.0470 +0 0.0834 +0 0.5596 +1 0.8821 +0 0.1478 +1 0.7606 +0 0.2788 +0 0.0848 +0 0.0616 +0 0.1288 +0 0.0373 +0 0.0757 +0 0.0923 +0 0.0894 +0 0.1178 +0 0.2353 +0 0.1517 +0 0.1291 +0 0.0818 +0 0.0810 +0 0.1873 +0 0.0689 +0 0.0544 +0 0.0839 +0 0.1011 +0 0.6812 +0 0.4154 +0 0.0389 +0 0.0612 +0 0.1659 +0 0.0876 +0 0.1300 +0 0.0671 +0 0.0880 +0 0.0910 +0 0.1091 +0 0.1019 +0 0.0971 +0 0.0363 +0 0.4120 +0 0.0862 +0 0.1564 +0 0.0499 +0 0.3777 +0 0.0389 +0 0.2046 +0 0.0475 +0 0.2307 +0 0.0727 +0 0.0541 +0 0.0989 +0 0.0614 +0 0.1683 +0 0.0815 +0 0.3429 +1 0.7762 +0 0.4190 +0 0.1761 +0 0.0787 +0 0.1060 +0 0.1070 +0 0.0689 +0 0.2383 +0 0.1242 +0 0.1730 +0 0.1158 +0 0.2720 +0 0.4436 +0 0.1303 +0 0.0864 +0 0.1077 +0 0.1012 +0 0.0871 +0 0.3483 +0 0.1060 +0 0.7055 +0 0.1152 +0 0.0527 +0 0.1980 +0 0.0665 +0 0.0564 +0 0.2151 +0 0.1323 +1 0.7846 +0 0.1201 +0 0.1826 +0 0.0846 +0 0.0682 +0 0.0811 +0 0.0652 +0 0.1021 +0 0.0670 +0 0.2066 +0 0.1659 +0 0.1713 +0 0.1207 +0 0.0490 +0 0.0671 +0 0.1091 +0 0.0581 +0 0.1219 +0 0.0752 +0 0.0702 +0 0.0780 +0 0.3805 +0 0.0900 +0 0.0470 +0 0.0672 +0 0.1361 +0 0.0354 +0 0.0713 +0 0.1004 +0 0.0702 +0 0.1109 +0 0.1301 +0 0.3417 +0 0.0820 +0 0.2296 +0 0.0672 +0 0.1072 +0 0.0683 +0 0.2326 +0 0.0415 +0 0.0437 +0 0.1655 +0 0.0592 +0 0.0705 +0 0.1449 +0 0.0951 +0 0.1156 +0 0.1468 +0 0.1049 +0 0.3099 +0 0.1345 +0 0.1627 +0 0.0345 +0 0.1229 +0 0.0527 +0 0.0906 +0 0.0806 +0 0.1056 +0 0.2122 +0 0.0771 +0 0.0632 +0 0.0976 +0 0.0693 +0 0.2262 +1 0.7790 +0 0.1402 +0 0.1370 +0 0.1965 +0 0.0712 +0 0.1003 +0 0.1098 +0 0.1336 +0 0.0771 +0 0.0679 +0 0.1342 +0 0.2401 +0 0.0452 +0 0.0624 +0 0.0413 +0 0.0935 +0 0.0893 +0 0.1007 +0 0.1762 +0 0.1465 +0 0.1779 +0 0.1909 +0 0.2519 +0 0.0860 +0 0.0778 +0 0.2532 +0 0.0710 +0 0.1302 +0 0.1050 +0 0.0979 +0 0.2753 +0 0.0726 +0 0.0913 +0 0.0970 +0 0.0494 +0 0.1017 +0 0.0635 +0 0.2992 +0 0.2236 +0 0.0831 +0 0.1691 +0 0.1090 +0 0.1179 +0 0.1249 +0 0.0930 +0 0.1216 +0 0.0661 +0 0.1603 +0 0.0323 +0 0.1045 +0 0.0809 +0 0.0922 +0 0.1560 +0 0.1293 +0 0.0479 +0 0.1261 +0 0.1517 +0 0.1338 +0 0.1100 +0 0.2208 +0 0.1303 +0 0.0849 +0 0.1103 +0 0.1825 +0 0.1970 +0 0.1139 +0 0.0419 +0 0.1638 +0 0.3752 +0 0.0643 +0 0.1561 +0 0.1622 +0 0.1060 +0 0.0582 +0 0.1335 +0 0.1273 +0 0.0638 +0 0.0582 +0 0.1099 +0 0.0696 +0 0.1209 +0 0.1062 +0 0.1130 +0 0.1450 +0 0.1106 +0 0.0998 +0 0.0572 +0 0.1077 +0 0.0675 +0 0.4800 +0 0.3540 +0 0.1941 +0 0.1054 +0 0.0886 +0 0.1083 +0 0.0727 +0 0.1219 +0 0.7106 +0 0.3494 +0 0.0912 +0 0.2341 +0 0.1019 +0 0.3279 +0 0.0872 +0 0.0604 +0 0.1934 +0 0.2135 +0 0.1143 +0 0.1399 +0 0.1367 +0 0.0705 +0 0.1037 +0 0.1427 +0 0.1368 +0 0.1017 +0 0.0865 +0 0.1365 +0 0.1280 +0 0.0876 +0 0.0558 +0 0.0706 +0 0.1248 +0 0.0571 +0 0.1193 +0 0.1142 +0 0.0841 +0 0.6748 +0 0.3151 +0 0.0416 +0 0.0797 +0 0.1359 +0 0.1094 +0 0.0819 +0 0.2908 +0 0.1033 +0 0.0558 +0 0.1035 +0 0.0759 +0 0.1210 +0 0.0799 +0 0.0778 +0 0.1085 +0 0.2960 +0 0.1228 +0 0.1130 +0 0.0917 +0 0.1529 +0 0.0604 +0 0.1797 +0 0.1199 +0 0.7135 +0 0.1385 +0 0.1054 +0 0.2934 +0 0.0509 +0 0.2086 +0 0.2796 +0 0.1393 +0 0.1056 +0 0.0380 +0 0.1313 +0 0.3526 +0 0.0546 +0 0.6328 +0 0.2020 +0 0.5313 +0 0.1168 +0 0.1303 +0 0.1292 +0 0.0816 +0 0.0745 +0 0.1093 +0 0.0599 +0 0.2594 +0 0.2543 +0 0.0801 +0 0.3862 +0 0.0896 +0 0.2712 +0 0.0717 +1 0.8087 +0 0.0995 +0 0.0845 +0 0.1216 +0 0.4068 +0 0.0327 +0 0.1208 +0 0.0832 +0 0.2557 +0 0.2170 +0 0.1777 +0 0.0742 +0 0.6476 +0 0.0815 +0 0.1306 +0 0.0368 +0 0.1903 +0 0.0977 +0 0.0489 +0 0.0834 +0 0.0589 +0 0.1951 +0 0.0763 +0 0.0384 +0 0.1168 +0 0.1112 +1 0.8348 +0 0.0964 +0 0.1118 +0 0.0440 +0 0.0617 +0 0.2191 +0 0.0498 +0 0.0973 +0 0.1990 +0 0.1546 +0 0.0771 +0 0.1144 +0 0.0805 +0 0.0705 +0 0.1369 +0 0.1111 +0 0.4023 +0 0.0796 +0 0.1175 +0 0.1121 +0 0.0772 +0 0.2377 +0 0.0547 +0 0.1184 +0 0.0792 +0 0.1495 +0 0.1122 +0 0.0451 +0 0.0594 +0 0.2337 +0 0.0587 +0 0.1549 +0 0.1487 +0 0.0652 +0 0.1110 +0 0.0571 +0 0.1953 +0 0.4297 +0 0.1820 +0 0.1222 +0 0.1457 +0 0.1237 +0 0.1110 +0 0.0460 +0 0.1380 +0 0.2377 +0 0.0882 +0 0.0865 +0 0.1074 +0 0.0921 +0 0.0600 +0 0.0491 +0 0.1189 +0 0.1056 +0 0.0456 +0 0.1064 +0 0.1161 +0 0.0888 +0 0.1253 +0 0.0626 +0 0.1274 +0 0.1451 +0 0.1128 +0 0.0901 +0 0.0969 +0 0.0780 +0 0.2840 +0 0.0897 +0 0.1480 +0 0.1376 +0 0.1224 +0 0.0689 +0 0.1414 +0 0.0752 +0 0.3829 +0 0.1826 +0 0.1165 +0 0.0754 +0 0.1611 +0 0.0678 +1 0.7558 +0 0.1120 +0 0.2165 +0 0.0968 +0 0.2322 +0 0.1526 +0 0.0526 +0 0.0527 +0 0.1234 +0 0.0793 +0 0.2362 +0 0.0851 +0 0.0850 +0 0.0539 +0 0.1359 +0 0.1526 +0 0.0702 +0 0.1233 +0 0.1019 +0 0.1071 +0 0.0719 +0 0.0802 +0 0.0983 +0 0.0799 +0 0.0653 +0 0.0634 +0 0.0918 +0 0.1119 +0 0.1697 +0 0.1213 +0 0.1426 +0 0.1035 +0 0.0500 +0 0.1521 +0 0.0750 +0 0.0791 +0 0.1134 +0 0.2374 +0 0.0852 +0 0.1436 +0 0.2053 +0 0.1183 +0 0.1525 +0 0.1470 +0 0.2178 +0 0.2216 +0 0.2938 +0 0.1099 +0 0.1596 +0 0.1473 +0 0.0964 +0 0.1447 +0 0.4664 +0 0.2647 +0 0.0656 +0 0.1154 +0 0.1254 +0 0.0898 +0 0.4010 +0 0.0359 +0 0.0397 +0 0.2434 +0 0.6444 +0 0.1677 +0 0.0565 +0 0.1593 +0 0.0842 +0 0.1498 +0 0.0531 +0 0.1280 +0 0.0937 +0 0.0790 +0 0.1449 +0 0.1966 +0 0.1558 +0 0.0813 +0 0.0782 +0 0.0729 +0 0.1348 +0 0.0807 +0 0.0871 +0 0.0519 +0 0.0746 +0 0.0878 +0 0.1376 +0 0.1364 +0 0.1057 +0 0.1432 +0 0.1302 +0 0.0387 +0 0.1176 +0 0.0738 +0 0.1145 +0 0.0849 +0 0.1613 +0 0.2089 +0 0.1554 +0 0.3082 +0 0.2242 +0 0.0344 +0 0.1442 +0 0.1342 +0 0.1895 +0 0.0400 +0 0.1932 +0 0.0651 +0 0.5503 +0 0.1111 +0 0.1404 +0 0.0803 +0 0.1814 +0 0.1462 +0 0.1960 +0 0.0829 +0 0.1764 +0 0.0729 +0 0.0568 +0 0.1419 +0 0.0838 +0 0.1496 +0 0.0768 +0 0.2460 +0 0.1139 +0 0.0553 +0 0.1615 +0 0.1207 +0 0.0424 +0 0.0611 +0 0.2329 +0 0.0328 +0 0.1809 +0 0.0566 +0 0.0687 +0 0.1105 +0 0.2076 +0 0.1486 +0 0.1486 +0 0.2416 +0 0.1065 +0 0.0696 +0 0.2033 +0 0.7068 +0 0.0905 +0 0.0679 +0 0.2579 +0 0.2518 +0 0.0500 +0 0.0932 +0 0.0806 +0 0.1460 +0 0.1120 +0 0.1856 +0 0.1764 +0 0.2196 +0 0.1741 +0 0.3022 +0 0.1105 +0 0.2361 +0 0.0692 +0 0.1422 +0 0.0384 +0 0.0774 +0 0.1377 +0 0.0869 +0 0.0828 +0 0.0562 +0 0.1173 +0 0.1713 +0 0.1073 +0 0.0675 +0 0.1123 +0 0.1242 +0 0.1269 +0 0.1400 +0 0.2806 +0 0.1609 +0 0.2105 +0 0.2374 +0 0.0713 +0 0.0811 +0 0.0893 +0 0.0509 +0 0.0696 +0 0.0698 +0 0.1306 +0 0.1472 +0 0.2515 +0 0.1248 +1 0.8038 +0 0.1639 +0 0.0671 +0 0.1599 +0 0.1248 +0 0.0968 +0 0.2477 +0 0.0419 +0 0.0656 +0 0.0884 +0 0.1634 +0 0.1415 +0 0.0815 +0 0.0676 +0 0.0740 +0 0.1166 +0 0.2186 +0 0.0695 +0 0.0583 +0 0.0780 +0 0.0448 +0 0.0865 +0 0.0495 +0 0.0895 +0 0.2943 +0 0.0507 +0 0.1969 +0 0.1137 +0 0.0891 +0 0.0769 +0 0.0635 +0 0.1071 +0 0.0598 +0 0.4470 +0 0.1406 +0 0.1213 +0 0.2202 +0 0.4200 +0 0.2579 +0 0.0749 +0 0.1503 +0 0.1991 +0 0.1156 +0 0.1082 +0 0.0824 +0 0.2559 +0 0.0481 +0 0.1071 +0 0.1346 +0 0.1056 +0 0.0528 +0 0.0630 +0 0.0825 +0 0.0998 +0 0.1257 +0 0.0881 +0 0.1162 +0 0.0453 +0 0.0531 +0 0.0419 +0 0.0859 +0 0.0722 +0 0.0546 +0 0.1737 +0 0.1171 +0 0.1422 +0 0.0475 +0 0.1119 +0 0.0721 +0 0.0830 +1 0.7992 +0 0.0869 +0 0.0645 +0 0.0689 +0 0.0427 +0 0.1050 +0 0.1234 +0 0.1792 +0 0.1114 +0 0.0864 +0 0.0991 +0 0.0686 +0 0.1750 +0 0.1181 +0 0.1527 +0 0.0559 +0 0.0683 +0 0.0553 +0 0.1107 +0 0.1786 +0 0.0692 +0 0.2350 +0 0.2506 +0 0.0642 +0 0.0424 +0 0.1831 +0 0.0688 +0 0.1138 +0 0.0855 +0 0.0862 +0 0.6734 +0 0.0565 +0 0.1636 +0 0.1000 +0 0.0348 +0 0.0912 +0 0.2553 +0 0.0739 +0 0.1592 +0 0.0317 +0 0.1979 +0 0.0982 +0 0.0670 +0 0.0636 +0 0.1901 +0 0.0692 +0 0.0721 +0 0.1498 +0 0.0990 +0 0.0869 +0 0.0686 +0 0.0734 +0 0.0747 +0 0.1719 +0 0.1641 +0 0.0500 +0 0.0770 +0 0.1691 +0 0.0899 +1 0.8484 +0 0.4113 +0 0.0911 +0 0.0404 +0 0.1562 +0 0.1929 +0 0.0642 +0 0.1297 +0 0.1191 +0 0.0889 +0 0.0738 +0 0.0446 +0 0.1238 +0 0.1796 +0 0.0961 +0 0.0885 +0 0.0672 +0 0.0647 +0 0.0551 +0 0.2445 +0 0.0687 +0 0.1034 +0 0.1010 +0 0.0836 +0 0.0326 +0 0.1009 +0 0.0762 +0 0.1704 +0 0.0459 +0 0.1075 +0 0.0704 +0 0.0879 +0 0.1258 +0 0.0692 +0 0.0547 +0 0.2258 +0 0.1331 +0 0.1808 +0 0.4111 +0 0.2422 +0 0.3070 +0 0.2017 +0 0.2496 +0 0.1948 +1 0.8628 +0 0.3024 +0 0.1200 +0 0.0777 +0 0.0921 +0 0.0620 +0 0.1099 +0 0.0885 +0 0.1225 +0 0.3022 +0 0.1040 +0 0.1222 +0 0.1093 +0 0.3207 +0 0.1585 +0 0.2125 +0 0.0682 +0 0.0439 +0 0.1055 +0 0.5483 +0 0.0778 +0 0.0693 +0 0.0586 +0 0.7400 +0 0.0849 +0 0.1730 +0 0.1193 +0 0.0852 +0 0.0487 +0 0.1217 +0 0.1459 +0 0.0618 +0 0.1590 +0 0.0586 +0 0.2130 +0 0.0300 +0 0.1229 +0 0.1103 +0 0.2059 +0 0.2388 +0 0.1941 +0 0.1113 +0 0.0472 +0 0.1047 +0 0.3325 +0 0.1794 +0 0.2214 +0 0.1871 +1 0.8344 +0 0.0869 +0 0.1030 +0 0.0950 +1 0.7913 +0 0.0714 +0 0.1779 +1 0.7582 +0 0.0552 +0 0.0942 +0 0.0551 +0 0.0763 +0 0.1183 +1 0.8559 +0 0.0650 +0 0.1554 +0 0.1398 +0 0.3171 +0 0.1729 +0 0.0456 +0 0.1071 +0 0.0799 +0 0.2131 +0 0.1176 +0 0.0680 +0 0.0812 +0 0.0535 +0 0.7037 +0 0.1203 +0 0.1862 +0 0.2670 +0 0.0728 +0 0.1713 +0 0.0890 +0 0.1075 +0 0.3468 +0 0.1661 +0 0.2616 +0 0.0892 +0 0.1213 +0 0.0563 +0 0.0527 +0 0.1105 +0 0.1280 +0 0.0578 +0 0.0994 +0 0.0922 +0 0.1701 +0 0.0372 +0 0.2341 +0 0.0812 +0 0.0803 +0 0.5993 +0 0.1112 +0 0.1270 +0 0.3337 +0 0.1350 +0 0.0699 +0 0.0901 +0 0.1067 +0 0.0943 +0 0.0889 +0 0.0900 +0 0.0509 +0 0.2505 +0 0.1075 +0 0.1591 +0 0.0772 +0 0.1095 +0 0.0735 +0 0.0643 +0 0.0812 +0 0.0696 +0 0.0447 +0 0.0920 +0 0.5243 +1 0.8170 +0 0.2378 +1 0.8791 +1 0.8169 +0 0.3074 +0 0.5667 +0 0.1056 +0 0.0952 +0 0.0542 +0 0.1788 +0 0.0819 +0 0.0744 +0 0.0980 +0 0.0799 +0 0.1425 +0 0.0411 +0 0.1408 +0 0.3328 +0 0.0906 +0 0.0803 +0 0.2939 +0 0.2214 +0 0.0866 +0 0.0784 +0 0.1682 +0 0.1375 +0 0.1103 +0 0.1281 +0 0.0850 +0 0.6252 +0 0.1056 +0 0.1320 +0 0.0679 +0 0.1529 +0 0.1335 +0 0.2894 +0 0.0735 +0 0.1874 +0 0.0860 +0 0.1144 +0 0.1738 +0 0.2780 +0 0.0476 +0 0.2910 +0 0.1906 +0 0.4066 +0 0.1207 +0 0.0368 +0 0.1032 +1 0.8215 +0 0.6879 +0 0.2466 +0 0.2534 +0 0.1449 +0 0.1244 +0 0.1073 +0 0.7153 +0 0.2497 +0 0.0828 +0 0.0706 +0 0.1377 +0 0.0575 +0 0.1954 +0 0.1957 +0 0.1202 +0 0.5195 +0 0.1282 +0 0.1560 +0 0.1747 +0 0.1331 +0 0.1235 +0 0.1033 +0 0.1126 +0 0.3889 +0 0.2962 +0 0.1493 +0 0.2981 +0 0.1438 +0 0.0571 +0 0.0965 +0 0.0569 +0 0.1514 +0 0.2915 +0 0.0507 +0 0.0733 +0 0.1152 +0 0.1210 +0 0.4062 +0 0.0426 +0 0.2561 +0 0.0581 +0 0.1605 +0 0.0730 +0 0.1242 +0 0.0613 +0 0.0455 +0 0.2104 +0 0.2271 +0 0.0815 +0 0.1928 +0 0.1541 +0 0.0443 +0 0.1133 +0 0.0617 +0 0.0925 +0 0.2305 +0 0.1213 +0 0.0530 +0 0.0796 +0 0.0796 +0 0.1281 +0 0.0986 +0 0.2111 +0 0.0675 +0 0.0689 +0 0.1465 +0 0.0982 +0 0.7070 +0 0.0610 +0 0.1186 +0 0.2620 +0 0.0523 +0 0.1203 +0 0.0479 +0 0.1200 +0 0.0691 +0 0.1389 +0 0.6691 +0 0.0984 +0 0.1946 +0 0.1309 +0 0.0783 +0 0.0436 +0 0.6586 +0 0.2074 +0 0.1326 +0 0.1142 +0 0.1174 +0 0.0572 +0 0.1065 +0 0.1287 +0 0.0490 +0 0.2165 +0 0.0722 +0 0.1009 +0 0.0539 +0 0.0671 +0 0.1254 +0 0.0360 +0 0.1356 +0 0.0696 +0 0.0568 +0 0.1445 +0 0.0617 +0 0.0997 +1 0.8309 +0 0.0536 +0 0.1112 +0 0.1207 +1 0.8266 +0 0.1893 +0 0.0476 +0 0.0900 +0 0.0700 +0 0.1671 +0 0.0675 +0 0.1380 +0 0.0430 +0 0.0664 +0 0.1884 +1 0.8694 +0 0.0993 +0 0.2076 +0 0.2489 +0 0.0918 +0 0.0546 +0 0.0502 +0 0.0663 +0 0.4252 +0 0.0721 +0 0.2231 +0 0.2788 +0 0.0457 +0 0.1128 +0 0.1162 +0 0.3865 +0 0.1269 +0 0.0627 +0 0.3593 +0 0.0820 +0 0.0710 +0 0.0741 +0 0.1285 +0 0.0927 +0 0.0745 +0 0.0957 +0 0.2981 +0 0.0707 +0 0.1626 +0 0.2729 +0 0.1088 +0 0.0763 +0 0.4729 +0 0.0719 +0 0.0587 +0 0.2983 +0 0.0568 +0 0.1468 +0 0.1101 +0 0.1168 +0 0.0542 +0 0.0522 +0 0.0552 +0 0.1611 +0 0.0878 +0 0.0541 +0 0.1939 +0 0.0441 +0 0.0432 +0 0.1793 +0 0.2815 +0 0.1622 +0 0.0436 +0 0.0883 +0 0.0773 +0 0.3393 +0 0.1413 +0 0.1053 +0 0.0855 +0 0.3160 +0 0.1025 +0 0.2329 +0 0.3237 +0 0.2745 +0 0.1009 +0 0.1539 +0 0.0681 +0 0.1105 +0 0.3238 +0 0.0796 +0 0.0855 +0 0.0627 +0 0.1073 +0 0.3974 +0 0.0847 +0 0.4023 +0 0.1346 +0 0.0647 +1 0.7654 +0 0.0413 +0 0.1592 +0 0.0653 +0 0.0552 +0 0.2292 +0 0.0376 +0 0.2507 +0 0.2991 +0 0.1106 +0 0.0672 +0 0.0511 +0 0.1527 +0 0.0544 +0 0.2136 +0 0.1337 +0 0.1923 +0 0.1483 +0 0.0607 +1 0.7618 +0 0.1717 +0 0.1731 +0 0.2759 +0 0.0985 +0 0.1221 +0 0.2186 +0 0.1060 +0 0.1231 +0 0.1215 +0 0.0971 +0 0.1210 +0 0.2508 +0 0.0550 +0 0.0587 +0 0.3991 +0 0.0405 +0 0.1457 +0 0.2314 +0 0.1690 +0 0.0696 +0 0.2123 +0 0.1088 +0 0.0733 +0 0.1255 +0 0.2465 +0 0.0630 +0 0.0682 +0 0.1835 +0 0.1032 +0 0.0493 +0 0.1176 +0 0.0780 +0 0.0581 +0 0.1068 +0 0.1968 +0 0.1034 +0 0.3138 +0 0.0505 +0 0.0633 +0 0.1477 +0 0.1105 +0 0.2140 +0 0.0466 +0 0.1334 +0 0.6617 +0 0.1242 +0 0.1607 +0 0.1001 +0 0.0823 +0 0.2037 +0 0.1009 +0 0.0424 +0 0.0653 +0 0.0782 +0 0.1264 +0 0.2829 +0 0.1849 +0 0.2587 +0 0.0803 +0 0.0342 +0 0.1321 +0 0.0598 +0 0.4593 +0 0.1245 +0 0.1690 +0 0.0625 +0 0.0728 +0 0.0813 +0 0.1489 +0 0.0430 +0 0.3173 +0 0.0954 +0 0.1033 +0 0.0726 +0 0.4069 +0 0.0641 +0 0.1256 +0 0.1746 +0 0.0724 +0 0.0555 +0 0.6943 +0 0.1902 +0 0.1846 +0 0.0592 +0 0.1126 +0 0.2679 +0 0.0981 +0 0.1423 +0 0.1160 +0 0.0736 +0 0.0780 +0 0.0496 +0 0.0790 +1 0.8355 +1 0.8860 +0 0.1654 +0 0.1094 +0 0.1049 +0 0.0732 +0 0.4445 +0 0.1117 +0 0.2972 +0 0.1273 +0 0.1682 +0 0.1006 +0 0.6411 +0 0.0793 +0 0.1974 +0 0.1067 +0 0.1216 +0 0.0574 +0 0.2980 +0 0.0915 +0 0.0556 +0 0.0944 +0 0.1001 +0 0.1691 +0 0.1402 +0 0.1288 +0 0.1643 +0 0.1118 +0 0.0636 +0 0.0549 +0 0.1298 +0 0.0492 +1 0.7667 +1 0.4780 +0 0.1296 +0 0.1590 +0 0.0593 +1 0.8424 +0 0.0918 +0 0.5257 +0 0.0584 +0 0.1280 +0 0.1645 +0 0.2012 +1 0.7925 +0 0.0503 +0 0.0945 +0 0.0874 +0 0.0513 +0 0.1686 +0 0.0725 +0 0.0807 +0 0.1971 +0 0.0349 +0 0.0569 +0 0.5221 +0 0.1469 +1 0.8634 +0 0.0788 +0 0.0794 +0 0.0863 +0 0.0832 +0 0.0775 +0 0.0535 +0 0.0669 +0 0.0443 +0 0.0943 +0 0.0443 +0 0.1061 +0 0.1234 +0 0.2431 +0 0.0606 +0 0.3072 +0 0.1155 +0 0.5631 +0 0.1244 +0 0.0777 +0 0.0931 +1 0.7893 +0 0.0581 +0 0.0708 +0 0.1301 +0 0.1229 +0 0.0543 +0 0.2278 +0 0.0599 +0 0.0389 +0 0.3698 +0 0.1690 +0 0.0813 +0 0.0958 +0 0.2151 +0 0.0850 +0 0.0789 +0 0.2116 +0 0.0798 +0 0.2630 +0 0.1813 +0 0.2173 +0 0.0809 +0 0.0619 +0 0.3604 +0 0.0919 +0 0.1560 +0 0.1112 +0 0.0570 +0 0.0760 +0 0.0959 +0 0.0617 +0 0.1101 +0 0.0902 +1 0.7520 +0 0.1313 +0 0.0346 +0 0.0633 +0 0.0413 +0 0.1583 +0 0.0731 +0 0.1685 +0 0.1193 +0 0.1868 +0 0.0551 +0 0.0934 +0 0.1160 +0 0.0816 +0 0.3968 +0 0.1407 +0 0.0426 +0 0.1152 +0 0.1565 +0 0.0754 +0 0.0667 +0 0.2675 +0 0.0914 +0 0.0733 +0 0.0500 +0 0.1966 +0 0.1149 +0 0.0821 +0 0.3895 +0 0.2422 +0 0.3277 +0 0.0576 +0 0.1088 +0 0.1637 +0 0.1186 +0 0.0839 +0 0.1137 +0 0.0369 +0 0.0974 +0 0.1211 +0 0.1353 +0 0.0449 +0 0.0956 +0 0.0646 +0 0.1146 +0 0.1810 +0 0.1173 +0 0.0982 +0 0.0377 +0 0.7036 +0 0.0771 +0 0.0698 +0 0.0977 +0 0.0805 +0 0.3229 +0 0.0515 +0 0.0609 +0 0.2228 +0 0.0565 +0 0.0877 +0 0.0381 +0 0.1825 +0 0.0620 +0 0.1277 +0 0.5008 +0 0.1514 +0 0.1610 +0 0.1032 +0 0.1467 +0 0.0724 +0 0.0980 +0 0.1963 +0 0.4062 +0 0.0981 +0 0.6490 +0 0.3169 +0 0.2531 +0 0.0789 +0 0.0825 +0 0.0514 +0 0.2989 +0 0.4440 +0 0.1416 +0 0.1922 +0 0.1080 +0 0.0775 +0 0.2997 +0 0.1104 +0 0.4219 +0 0.1983 +0 0.1981 +0 0.2148 +0 0.0855 +0 0.1158 +0 0.0440 +0 0.0489 +0 0.0350 +0 0.3163 +0 0.0974 +0 0.1265 +0 0.1130 +0 0.0495 +0 0.1256 +0 0.0573 +0 0.7063 +0 0.1588 +0 0.1257 +0 0.0601 +0 0.0533 +0 0.0724 +0 0.1358 +0 0.0979 +0 0.0575 +0 0.1646 +0 0.0879 +0 0.0665 +0 0.0447 +0 0.1864 +0 0.1117 +0 0.0515 +1 0.7628 +0 0.1206 +0 0.1097 +0 0.0702 +0 0.0792 +0 0.0592 +0 0.2640 +0 0.1023 +0 0.1510 +0 0.0930 +0 0.0810 +0 0.0849 +0 0.0941 +0 0.0967 +0 0.1464 +0 0.2176 +0 0.0737 +0 0.2141 +0 0.2992 +0 0.0818 +0 0.0617 +0 0.5061 +0 0.0914 +0 0.0699 +0 0.0738 +0 0.0701 +0 0.2005 +0 0.0870 +0 0.0917 +0 0.0926 +0 0.0632 +0 0.2191 +0 0.0534 +0 0.1472 +0 0.0939 +0 0.1207 +0 0.0676 +0 0.2030 +0 0.0638 +0 0.2220 +0 0.0478 +0 0.1014 +0 0.0808 +0 0.0753 +0 0.2629 +0 0.1169 +0 0.0680 +0 0.0950 +0 0.0868 +0 0.0855 +0 0.0784 +0 0.1571 +0 0.1187 +0 0.1750 +0 0.1533 +0 0.7291 +0 0.0830 +0 0.0856 +0 0.1160 +0 0.1910 +0 0.0678 +1 0.8168 +0 0.0352 +0 0.0455 +0 0.1631 +0 0.0415 +0 0.0856 +0 0.0493 +0 0.1558 +0 0.0784 +0 0.7194 +0 0.0681 +0 0.0522 +0 0.0410 +0 0.4387 +0 0.1462 +0 0.0625 +0 0.0812 +0 0.0838 +0 0.0418 +0 0.0693 +0 0.0853 +0 0.0864 +0 0.0542 +0 0.6936 +0 0.1324 +0 0.0445 +0 0.1214 +0 0.0939 +0 0.0915 +0 0.2365 +0 0.1097 +0 0.0533 +0 0.0726 +0 0.0480 +0 0.0852 +1 0.8470 +0 0.2556 +0 0.0918 +0 0.1245 +0 0.1549 +0 0.1657 +0 0.1807 +0 0.0972 +0 0.1504 +0 0.2181 +0 0.2998 +0 0.1246 +0 0.0648 +0 0.0443 +0 0.0354 +0 0.0631 +0 0.3984 +0 0.0983 +0 0.0893 +0 0.3203 +0 0.1160 +0 0.2159 +0 0.0554 +0 0.1233 +0 0.2035 +0 0.0847 +0 0.0762 +0 0.1469 +0 0.4710 +0 0.0527 +0 0.0603 +0 0.1003 +0 0.1688 +0 0.7080 +0 0.1131 +0 0.0489 +0 0.1045 +0 0.0671 +0 0.4855 +0 0.0601 +0 0.0575 +0 0.1950 +0 0.0886 +0 0.0772 +0 0.0465 +0 0.1170 +0 0.1787 +0 0.1854 +0 0.0352 +0 0.0969 +0 0.1171 +0 0.2299 +0 0.3988 +0 0.2010 +0 0.0308 +0 0.0940 +0 0.1117 +0 0.0683 +0 0.0712 +0 0.1576 +0 0.0922 +0 0.1388 +0 0.2400 +0 0.0339 +0 0.4207 +0 0.1564 +0 0.0947 +0 0.1609 +0 0.0332 +0 0.1482 +0 0.0849 +0 0.1522 +0 0.0696 +0 0.1985 +0 0.0839 +0 0.1016 +1 0.8931 +0 0.6651 +0 0.1929 +0 0.0836 +0 0.1566 +0 0.1467 +0 0.1291 +0 0.1366 +0 0.1055 +0 0.0815 +0 0.0412 +0 0.0564 +0 0.0710 +0 0.5279 +0 0.1470 +0 0.0715 +0 0.0977 +0 0.3287 +0 0.0688 +0 0.2193 +0 0.1687 +0 0.1413 +0 0.1385 +0 0.0465 +0 0.0935 +0 0.1764 +0 0.0686 +0 0.0772 +0 0.0802 +0 0.0342 +0 0.1346 +0 0.0902 +0 0.1219 +0 0.0355 +0 0.1985 +0 0.3600 +0 0.5832 +0 0.1224 +0 0.0613 +1 0.8079 +0 0.3298 +0 0.0722 +0 0.1479 +0 0.0870 +0 0.0639 +0 0.1405 +0 0.1644 +0 0.3725 +0 0.1619 +0 0.0635 +0 0.3023 +0 0.0738 +0 0.2788 +0 0.0873 +1 0.8879 +0 0.1504 +0 0.1444 +0 0.1116 +0 0.0769 +0 0.0996 +0 0.0682 +0 0.1321 +0 0.1039 +0 0.1039 +0 0.3098 +0 0.0756 +0 0.0733 +0 0.2937 +0 0.1154 +0 0.2229 +0 0.2111 +0 0.2658 +0 0.0916 +0 0.1386 +0 0.2454 +0 0.1137 +0 0.0352 +0 0.0881 +0 0.2277 +0 0.1116 +0 0.3248 +0 0.0788 +0 0.0752 +0 0.1341 +0 0.0541 +0 0.0618 +0 0.2099 +0 0.0475 +0 0.0667 +0 0.0953 +0 0.1990 +0 0.1601 +0 0.0904 +0 0.0687 +0 0.0371 +0 0.2124 +0 0.1752 +0 0.0610 +0 0.1243 +0 0.0925 +0 0.1439 +0 0.1000 +0 0.1602 +0 0.0485 +0 0.4082 +0 0.1753 +0 0.0833 +0 0.1647 +0 0.0632 +0 0.0509 +0 0.2239 +0 0.0927 +0 0.5662 +0 0.0681 +0 0.0482 +0 0.0713 +0 0.1420 +0 0.1457 +0 0.1672 +0 0.3130 +0 0.0647 +0 0.0437 +0 0.2294 +0 0.0834 +0 0.0576 +0 0.0712 +0 0.0407 +0 0.4714 +0 0.1784 +0 0.0643 +0 0.1271 +0 0.0836 +0 0.1040 +0 0.0463 +0 0.1707 +0 0.1092 +0 0.4115 +0 0.0582 +0 0.2798 +0 0.1344 +0 0.1818 +0 0.1335 +0 0.0945 +0 0.0398 +0 0.1867 +0 0.0900 +0 0.0676 +0 0.0568 +0 0.0785 +0 0.0535 +0 0.0348 +0 0.0861 +0 0.2038 +0 0.0482 +0 0.1740 +0 0.1758 +0 0.1489 +0 0.0656 +0 0.0339 +0 0.0623 +0 0.2049 +0 0.0609 +0 0.1891 +0 0.0983 +0 0.3720 +0 0.0831 +0 0.0842 +0 0.1638 +0 0.3483 +0 0.2284 +0 0.1039 +0 0.0635 +0 0.0613 +0 0.0461 +0 0.1141 +0 0.0913 +0 0.6628 +0 0.1289 +0 0.1403 +0 0.0972 +0 0.1833 +0 0.0914 +0 0.0713 +0 0.1200 +0 0.2680 +0 0.1281 +0 0.0808 +0 0.0576 +0 0.1088 +0 0.1330 +0 0.1139 +0 0.0636 +0 0.7347 +0 0.1800 +0 0.2300 +0 0.1426 +0 0.1489 +0 0.1119 +0 0.0420 +0 0.0683 +0 0.0822 +0 0.6387 +0 0.2057 +0 0.0865 +0 0.6202 +0 0.1148 +0 0.1067 +0 0.0546 +0 0.0848 +0 0.1823 +0 0.0568 +0 0.0681 +0 0.7240 +0 0.0820 +0 0.2315 +0 0.0870 +0 0.2233 +0 0.0620 +0 0.0782 +0 0.0970 +0 0.1001 +0 0.0768 +0 0.1193 +0 0.0544 +0 0.0613 +0 0.1009 +0 0.1208 +0 0.1780 +0 0.4562 +0 0.1294 +0 0.1125 +0 0.0791 +0 0.2889 +0 0.0461 +0 0.0553 +0 0.0597 +0 0.1262 +0 0.0871 +0 0.0893 +0 0.1363 +0 0.0574 +0 0.0689 +0 0.0841 +0 0.1129 +0 0.0900 +0 0.0681 +0 0.1475 +0 0.1062 +0 0.1050 +0 0.2251 +0 0.0822 +0 0.0958 +0 0.1617 +0 0.1159 +0 0.1433 +0 0.1662 +0 0.0893 +0 0.0924 +0 0.0516 +0 0.2604 +0 0.0788 +0 0.1022 +0 0.1251 +0 0.0447 +0 0.2331 +0 0.0649 +0 0.1688 +0 0.7475 +0 0.3976 +0 0.1122 +0 0.1219 +0 0.0985 +0 0.1500 +0 0.0780 +0 0.2205 +0 0.1929 +0 0.2620 +0 0.3333 +0 0.0671 +0 0.1477 +0 0.1064 +0 0.0852 +0 0.1465 +0 0.1360 +0 0.2704 +0 0.1320 +0 0.0643 +0 0.1087 +0 0.1057 +0 0.7395 +0 0.0491 +0 0.0846 +0 0.2025 +0 0.0405 +0 0.1276 +0 0.0633 +0 0.1751 +0 0.0975 +0 0.4823 +0 0.2000 +0 0.0531 +0 0.0749 +0 0.0863 +0 0.1113 +0 0.2266 +0 0.0437 +0 0.2165 +0 0.0400 +0 0.1857 +0 0.5780 +0 0.0985 +0 0.0544 +0 0.0648 +0 0.0462 +0 0.0769 +0 0.1204 +0 0.0792 +0 0.0890 +0 0.1188 +0 0.0492 +0 0.0465 +0 0.1369 +0 0.3391 +0 0.2166 +0 0.0749 +0 0.1195 +0 0.1577 +0 0.1161 +0 0.1610 +0 0.0991 +0 0.1174 +0 0.1336 +0 0.0565 +0 0.1691 +0 0.0793 +0 0.2110 +0 0.1007 +0 0.5690 +0 0.0823 +0 0.0985 +0 0.0629 +0 0.1130 +0 0.0991 +0 0.0311 +0 0.1099 +0 0.0650 +0 0.0404 +0 0.1721 +0 0.1107 +0 0.0654 +0 0.0575 +0 0.1052 +0 0.0749 +0 0.4482 +0 0.0812 +0 0.1640 +0 0.1523 +0 0.0616 +0 0.1367 +0 0.0306 +0 0.1345 +1 0.8495 +0 0.1041 +0 0.0762 +0 0.7450 +0 0.1550 +0 0.1677 +0 0.1097 +0 0.1970 +0 0.1558 +0 0.3271 +0 0.1135 +0 0.0523 +0 0.2821 +0 0.0869 +0 0.0484 +0 0.1613 +0 0.2361 +0 0.0403 +0 0.0682 +0 0.0723 +0 0.1391 +0 0.0765 +0 0.1400 +0 0.4506 +0 0.0767 +0 0.0564 +0 0.1719 +0 0.6374 +0 0.1482 +0 0.1217 +0 0.0560 +0 0.0761 +0 0.0567 +0 0.1006 +0 0.0939 +0 0.2850 +0 0.1860 +0 0.1117 +0 0.0453 +0 0.2313 +0 0.0641 +0 0.0786 +0 0.2618 +0 0.0601 +0 0.1803 +0 0.0908 +0 0.0825 +0 0.1975 +0 0.0789 +0 0.7326 +0 0.0836 +0 0.0567 +0 0.0351 +0 0.0901 +0 0.2463 +0 0.0804 +0 0.3039 +0 0.1162 +0 0.0767 +0 0.0949 +0 0.0448 +0 0.1015 +0 0.1336 +0 0.2630 +0 0.0711 +1 0.7684 +0 0.3369 +0 0.2185 +0 0.1077 +0 0.2716 +0 0.0592 +1 0.8317 +0 0.1351 +0 0.0634 +0 0.0463 +0 0.1702 +0 0.1046 +0 0.0717 +0 0.0484 +0 0.1997 +0 0.2308 +0 0.1673 +0 0.1599 +0 0.0817 +0 0.1065 +0 0.1522 +0 0.0691 +0 0.2515 +0 0.1135 +0 0.2780 +0 0.1380 +0 0.2351 +0 0.1167 +0 0.1170 +0 0.0700 +0 0.0913 +0 0.1043 +0 0.1334 +0 0.0633 +0 0.0618 +0 0.0902 +0 0.1057 +0 0.0726 +0 0.0716 +0 0.0535 +0 0.2184 +0 0.0854 +0 0.2054 +0 0.0892 +0 0.0807 +0 0.2922 +0 0.1168 +0 0.0700 +0 0.0941 +0 0.0656 +0 0.1342 +0 0.1097 +0 0.1162 +0 0.0832 +0 0.0854 +0 0.0625 +0 0.0329 +0 0.4039 +0 0.4767 +0 0.1715 +0 0.1157 +0 0.1122 +0 0.0375 +0 0.0811 +0 0.0730 +0 0.0760 +0 0.0600 +0 0.0428 +0 0.1849 +0 0.1973 +0 0.2477 +0 0.1100 +0 0.0821 +0 0.0459 +0 0.2072 +0 0.6956 +1 0.8934 +0 0.1848 +0 0.0591 +0 0.2256 +0 0.0557 +0 0.0993 +0 0.0933 +0 0.0533 +0 0.2914 +0 0.0896 +0 0.1513 +0 0.4361 +0 0.0517 +0 0.1300 +0 0.1005 +0 0.0776 +0 0.0422 +0 0.0674 +0 0.3536 +0 0.0519 +0 0.1109 +0 0.0697 +0 0.1719 +0 0.0989 +0 0.0381 +0 0.0614 +0 0.1645 +0 0.3243 +0 0.1488 +0 0.1753 +0 0.1125 +0 0.0622 +0 0.0710 +0 0.3352 +0 0.1203 +0 0.1077 +0 0.0452 +0 0.0355 +0 0.0491 +0 0.2035 +0 0.1665 +0 0.0822 +0 0.0793 +0 0.0724 +0 0.0389 +0 0.1564 +0 0.0844 +0 0.1146 +0 0.0481 +0 0.1105 +0 0.2381 +0 0.3673 +0 0.0831 +0 0.1384 +0 0.0394 +0 0.1567 +0 0.1679 +0 0.2419 +0 0.1677 +0 0.0871 +0 0.2682 +0 0.0808 +0 0.0444 +0 0.0678 +0 0.1161 +0 0.0688 +0 0.2308 +0 0.2526 +0 0.0899 +0 0.1811 +0 0.0360 +0 0.0537 +0 0.0781 +0 0.0612 +0 0.0583 +0 0.0928 +0 0.0504 +0 0.3319 +0 0.1907 +0 0.1918 +0 0.0918 +0 0.1218 +0 0.1699 +0 0.0426 +0 0.0674 +0 0.1318 +0 0.1551 +0 0.1133 +0 0.1457 +0 0.0802 +0 0.1048 +0 0.2885 +0 0.0695 +0 0.1942 +0 0.6536 +0 0.1672 +0 0.1634 +0 0.0829 +0 0.0528 +0 0.0358 +0 0.0362 +0 0.4036 +0 0.1346 +0 0.0716 +0 0.2231 +0 0.0673 +0 0.1253 +0 0.2205 +1 0.8209 +0 0.0937 +0 0.0691 +0 0.0523 +0 0.7207 +0 0.1144 +0 0.1336 +0 0.2540 +0 0.1030 +0 0.0894 +0 0.0684 +0 0.0734 +0 0.1526 +0 0.0874 +0 0.0805 +0 0.1741 +0 0.3240 +0 0.1208 +0 0.0868 +0 0.0910 +0 0.0455 +0 0.0484 +0 0.0404 +0 0.1129 +0 0.1147 +0 0.0829 +0 0.0489 +0 0.0625 +0 0.2463 +0 0.5500 +0 0.0529 +0 0.0947 +0 0.0845 +0 0.0856 +0 0.0569 +0 0.1378 +0 0.0958 +0 0.2360 +0 0.1301 +0 0.1052 +0 0.1366 +1 0.8504 +0 0.0566 +0 0.1951 +0 0.0869 +0 0.0652 +0 0.1556 +0 0.0540 +0 0.1735 +0 0.0599 +0 0.3331 +0 0.1948 +0 0.0410 +0 0.2760 +0 0.1964 +0 0.1700 +0 0.0804 +0 0.6983 +0 0.0937 +0 0.1213 +1 0.8185 +0 0.2009 +0 0.0658 +0 0.1051 +0 0.0921 +0 0.0769 +0 0.7489 +0 0.3431 +0 0.3588 +0 0.0691 +0 0.1643 +0 0.0601 +0 0.0606 +0 0.0765 +0 0.1217 +0 0.1388 +0 0.1535 +0 0.0637 +0 0.0803 +0 0.0675 +0 0.2445 +0 0.1149 +0 0.1145 +0 0.0806 +0 0.0712 +0 0.0789 +0 0.0978 +0 0.1033 +0 0.1022 +0 0.1428 +0 0.1658 +0 0.1124 +0 0.1687 +0 0.0766 +0 0.6595 +1 0.7668 +0 0.0473 +0 0.0389 +0 0.3972 +0 0.0796 +0 0.0728 +0 0.0476 +0 0.1027 +0 0.0798 +0 0.0520 +0 0.1664 +0 0.0855 +0 0.7398 +0 0.0911 +0 0.0787 +0 0.0625 +0 0.1044 +0 0.6189 +0 0.0651 +0 0.0484 +0 0.0452 +0 0.1137 +0 0.0556 +0 0.0512 +0 0.1324 +0 0.0561 +0 0.0917 +0 0.2044 +0 0.1098 +0 0.0967 +1 0.3517 +0 0.1702 +0 0.1360 +0 0.1692 +0 0.0732 +0 0.0880 +0 0.0691 +0 0.1098 +0 0.0876 +0 0.0398 +0 0.0772 +0 0.0550 +0 0.2655 +0 0.0654 +0 0.0708 +0 0.1169 +0 0.5262 +0 0.1286 +0 0.0550 +0 0.1389 +0 0.0890 +0 0.0532 +0 0.1676 +0 0.2112 +0 0.1382 +0 0.1452 +0 0.0754 +0 0.0613 +0 0.0543 +0 0.1132 +0 0.1370 +0 0.0804 +0 0.0844 +0 0.2859 +0 0.3097 +0 0.0712 +0 0.2097 +0 0.1084 +0 0.0697 +0 0.2249 +0 0.0926 +0 0.0913 +0 0.1630 +0 0.0627 +0 0.1169 +0 0.0809 +0 0.0912 +0 0.1393 +0 0.0522 +0 0.0728 +0 0.1038 +0 0.2585 +0 0.0730 +0 0.0459 +0 0.1069 +0 0.1648 +0 0.5506 +0 0.0634 +0 0.0666 +0 0.0856 +0 0.1283 +0 0.1274 +0 0.1388 +0 0.0412 +0 0.1445 +0 0.1802 +0 0.2744 +0 0.0957 +0 0.2594 +0 0.1299 +0 0.1331 +0 0.0623 +0 0.0735 +0 0.0686 +0 0.5872 +0 0.5493 +0 0.2620 +0 0.1617 +0 0.1561 +0 0.0578 +0 0.0353 +0 0.1945 +0 0.0798 +0 0.0886 +0 0.0895 +0 0.0684 +0 0.2315 +0 0.1929 +0 0.0915 +0 0.1140 +0 0.1938 +0 0.1237 +0 0.0930 +0 0.0890 +0 0.1093 +0 0.0992 +0 0.0659 +0 0.0947 +0 0.0913 +0 0.1732 +0 0.3258 +0 0.0812 +0 0.1637 +0 0.0801 +0 0.1539 +0 0.0873 +0 0.3607 +0 0.0604 +0 0.0926 +0 0.0842 +0 0.0580 +0 0.0531 +0 0.0821 +0 0.5363 +0 0.0490 +0 0.0528 +0 0.0940 +0 0.0537 +0 0.0812 +0 0.0584 +0 0.1150 +0 0.0814 +0 0.1557 +0 0.2135 +0 0.0456 +0 0.0466 +0 0.3696 +0 0.1463 +0 0.0506 +0 0.0609 +0 0.1007 +0 0.1830 +0 0.2172 +0 0.7067 +0 0.2551 +0 0.1567 +0 0.0484 +0 0.0695 +0 0.7215 +0 0.0958 +0 0.0854 +0 0.0955 +0 0.0700 +0 0.0642 +0 0.1402 +0 0.3099 +0 0.0506 +0 0.0675 +0 0.1791 +0 0.0951 +0 0.2353 +0 0.0555 +0 0.1054 +0 0.1831 +0 0.1072 +0 0.0644 +1 0.7670 +0 0.1252 +0 0.1605 +0 0.0619 +0 0.1080 +0 0.1484 +0 0.0539 +0 0.3060 +0 0.2291 +0 0.1897 +0 0.2873 +0 0.1899 +0 0.1065 +0 0.1749 +0 0.1020 +0 0.2158 +0 0.0384 +0 0.2267 +0 0.1312 +0 0.1506 +0 0.1409 +0 0.0523 +0 0.1558 +0 0.4844 +0 0.0487 +0 0.1863 +0 0.0526 +0 0.0681 +0 0.2253 +0 0.0827 +0 0.0641 +0 0.0820 +0 0.1999 +0 0.2537 +0 0.1575 +0 0.0803 +0 0.1187 +0 0.1629 +0 0.1164 +0 0.0815 +0 0.1685 +0 0.1124 +0 0.0728 +0 0.0660 +0 0.6733 +0 0.0699 +0 0.0838 +0 0.0569 +0 0.1499 +0 0.0723 +0 0.0752 +0 0.0977 +0 0.1023 +0 0.0502 +0 0.0550 +0 0.5051 +0 0.1277 +0 0.0519 +0 0.2187 +0 0.0519 +0 0.2008 +0 0.1575 +0 0.0773 +0 0.1049 +0 0.2112 +0 0.1414 +0 0.2432 +0 0.1164 +0 0.1557 +0 0.0425 +0 0.0706 +0 0.0571 +0 0.1212 +0 0.1129 +0 0.0355 +0 0.0939 +0 0.0361 +0 0.1460 +0 0.1319 +0 0.0827 +0 0.0665 +0 0.0736 +0 0.1065 +0 0.0668 +0 0.0640 +0 0.0972 +0 0.0718 +0 0.1068 +0 0.7035 +0 0.0456 +0 0.1260 +0 0.1021 +0 0.0544 +0 0.1378 +0 0.0949 +0 0.0676 +0 0.1143 +0 0.5656 +0 0.1241 +0 0.1386 +0 0.1159 +0 0.1631 +0 0.1060 +0 0.0515 +0 0.0336 +0 0.0867 +0 0.1854 +0 0.0725 +0 0.0331 +0 0.0798 +0 0.0797 +0 0.2620 +0 0.0668 +0 0.1290 +0 0.1114 +0 0.1449 +0 0.1241 +0 0.0898 +0 0.2338 +0 0.1875 +0 0.6676 +0 0.1263 +0 0.0406 +0 0.0467 +0 0.0940 +0 0.1575 +0 0.0733 +0 0.1004 +0 0.0936 +0 0.1692 +0 0.0311 +0 0.0612 +0 0.0632 +0 0.1024 +0 0.0788 +0 0.7427 +0 0.2617 +0 0.1342 +0 0.1512 +0 0.0727 +0 0.2253 +0 0.0632 +0 0.0652 +0 0.0602 +0 0.2521 +0 0.1178 +0 0.1004 +0 0.0916 +0 0.1015 +0 0.0360 +0 0.1075 +0 0.1257 +0 0.1096 +0 0.1446 +0 0.0914 +0 0.1029 +0 0.1908 +0 0.1102 +0 0.1224 +0 0.0543 +0 0.1019 +0 0.0672 +0 0.0457 +0 0.1466 +0 0.0983 +0 0.3351 +0 0.0943 +0 0.0356 +0 0.1957 +0 0.1326 +0 0.2624 +0 0.1428 +0 0.1439 +0 0.0786 +0 0.1509 +0 0.1133 +0 0.0908 +0 0.2284 +0 0.3148 +0 0.0965 +0 0.1506 +0 0.1014 +0 0.1070 +0 0.1031 +0 0.1615 +0 0.0468 +0 0.0713 +0 0.1319 +0 0.0878 +0 0.1042 +0 0.0579 +0 0.1227 +0 0.1599 +0 0.1061 +0 0.0442 +0 0.0808 +0 0.1151 +0 0.1591 +0 0.7163 +0 0.2856 +0 0.1050 +0 0.2663 +0 0.0799 +0 0.1255 +0 0.1238 +0 0.0749 +0 0.1774 +0 0.5716 +0 0.0702 +0 0.0771 +0 0.0637 +0 0.0626 +0 0.0813 +0 0.0642 +0 0.1242 +0 0.0918 +0 0.1062 +0 0.0361 +0 0.0898 +0 0.1273 +0 0.1438 +0 0.0683 +0 0.0927 +0 0.1440 +0 0.0278 +0 0.0963 +0 0.1791 +0 0.2520 +0 0.2312 +0 0.4139 +0 0.0907 +0 0.1992 +0 0.0504 +0 0.3650 +0 0.0640 +0 0.2835 +0 0.0484 +0 0.1158 +0 0.0915 +0 0.1411 +0 0.0603 +0 0.0505 +0 0.1170 +0 0.0928 +0 0.2460 +0 0.1053 +0 0.1134 +0 0.2064 +0 0.2470 +0 0.0660 +0 0.0778 +0 0.0564 +0 0.1212 +0 0.1365 +0 0.0451 +0 0.0796 +0 0.4309 +0 0.0729 +0 0.0610 +0 0.1472 +0 0.2445 +0 0.0679 +0 0.0581 +0 0.0636 +1 0.9032 +1 0.8420 +0 0.0505 +0 0.1064 +0 0.0979 +0 0.0532 +0 0.1081 +0 0.0350 +0 0.0682 +0 0.3339 +0 0.0661 +0 0.0623 +0 0.0533 +0 0.1138 +0 0.0661 +0 0.1357 +0 0.1394 +0 0.0926 +0 0.1883 +0 0.2279 +0 0.0513 +0 0.6296 +0 0.0465 +0 0.5729 +0 0.0955 +0 0.0897 +0 0.1064 +0 0.1662 +0 0.1490 +0 0.2830 +0 0.1445 +0 0.0784 +0 0.0527 +0 0.0860 +0 0.4060 +0 0.0517 +0 0.1073 +0 0.0780 +0 0.2713 +0 0.0716 +0 0.4337 +0 0.0801 +0 0.0978 +0 0.1546 +0 0.7138 +0 0.1065 +0 0.1532 +0 0.2160 +0 0.0686 +0 0.0672 +0 0.1449 +0 0.2893 +0 0.0718 +0 0.0939 +0 0.0833 +1 0.8015 +0 0.0994 +0 0.1442 +0 0.1418 +0 0.2538 +0 0.1011 +0 0.0551 +0 0.0645 +0 0.1315 +0 0.0633 +0 0.0579 +0 0.1625 +0 0.1075 +0 0.1016 +0 0.1017 +0 0.0832 +0 0.0459 +0 0.0945 +0 0.2013 +0 0.1961 +0 0.1504 +0 0.1637 +0 0.1923 +0 0.1791 +0 0.0764 +0 0.0783 +0 0.0370 +0 0.1162 +0 0.0497 +0 0.0507 +0 0.0992 +0 0.1869 +0 0.0938 +0 0.0941 +0 0.1472 +0 0.0470 +0 0.1213 +0 0.3159 +0 0.1327 +0 0.1576 +0 0.0811 +0 0.1551 +0 0.0383 +0 0.2015 +0 0.1063 +1 0.8561 +0 0.0424 +0 0.1364 +0 0.0665 +0 0.1518 +0 0.1294 +0 0.0646 +0 0.0933 +0 0.1123 +0 0.0773 +0 0.0702 +0 0.3012 +0 0.1204 +0 0.1220 +0 0.2609 +0 0.0477 +0 0.1172 +0 0.2387 +0 0.0901 +0 0.2602 +0 0.1958 +0 0.3320 +0 0.0693 +0 0.1189 +0 0.1158 +0 0.0920 +0 0.1313 +0 0.0543 +0 0.1523 +0 0.1004 +0 0.0463 +0 0.0833 +0 0.0888 +0 0.1349 +0 0.2105 +0 0.1834 +0 0.1372 +0 0.4246 +0 0.1223 +0 0.3011 +0 0.0802 +0 0.0451 +0 0.0731 +0 0.2844 +0 0.0556 +0 0.1264 +0 0.1485 +0 0.2198 +0 0.0655 +0 0.1455 +0 0.0804 +0 0.1080 +0 0.0774 +0 0.0895 +0 0.5592 +0 0.2086 +0 0.1432 +0 0.1822 +0 0.1513 +0 0.2489 +0 0.0845 +0 0.0574 +0 0.1116 +0 0.0824 +0 0.0816 +0 0.1460 +0 0.1044 +0 0.0659 +0 0.0902 +0 0.1007 +0 0.0606 +0 0.0358 +0 0.2166 +0 0.0837 +0 0.2236 +0 0.1785 +0 0.1138 +0 0.1209 +0 0.0822 +0 0.1457 +0 0.1118 +0 0.0805 +0 0.0860 +0 0.0633 +0 0.1748 +0 0.1944 +0 0.2672 +0 0.0731 +0 0.1226 +0 0.1166 +0 0.0737 +0 0.1590 +0 0.0986 +0 0.1101 +0 0.2327 +0 0.0890 +0 0.0410 +0 0.1506 +0 0.3154 +0 0.2216 +0 0.3755 +0 0.1210 +0 0.0530 +0 0.0517 +0 0.0792 +0 0.0427 +0 0.1664 +0 0.0829 +0 0.1476 +0 0.1957 +0 0.0794 +0 0.2227 +0 0.0851 +0 0.1626 +0 0.1861 +0 0.1929 +0 0.6945 +0 0.1266 +0 0.0847 +0 0.0691 +0 0.0929 +0 0.2293 +0 0.0928 +0 0.1249 +0 0.2140 +0 0.1997 +0 0.1252 +0 0.0503 +0 0.1389 +0 0.1754 +0 0.1263 +0 0.1069 +0 0.1921 +0 0.7001 +0 0.2623 +0 0.0906 +0 0.1434 +0 0.1446 +0 0.1841 +0 0.0621 +0 0.0427 +0 0.2011 +0 0.5404 +0 0.0739 +0 0.1617 +0 0.0690 +0 0.1567 +0 0.2142 +0 0.0655 +0 0.0712 +0 0.0743 +0 0.0608 +0 0.1880 +0 0.1166 +0 0.1077 +0 0.6016 +0 0.0767 +0 0.2161 +0 0.2333 +0 0.0646 +0 0.1061 +0 0.1054 +0 0.1087 +0 0.3003 +0 0.1293 +0 0.0586 +0 0.0897 +0 0.1163 +0 0.1725 +0 0.0884 +0 0.2603 +0 0.0827 +0 0.0518 +0 0.1052 +0 0.0679 +0 0.3113 +0 0.3081 +0 0.0870 +0 0.1409 +0 0.1794 +0 0.4542 +0 0.3442 +0 0.0814 +0 0.1753 +0 0.0816 +0 0.0668 +0 0.2234 +0 0.0888 +0 0.2246 +0 0.0640 +0 0.0707 +0 0.1733 +0 0.1416 +0 0.1239 +0 0.1287 +0 0.1725 +0 0.1832 +0 0.1211 +0 0.2206 +0 0.1266 +0 0.0501 +0 0.2043 +0 0.0581 +0 0.0986 +0 0.0873 +0 0.0792 +0 0.0868 +1 0.9139 +0 0.1232 +0 0.6499 +0 0.2886 +0 0.0523 +0 0.0645 +0 0.0675 +0 0.0628 +0 0.7498 +0 0.1518 +1 0.7814 +0 0.2259 +0 0.0997 +0 0.0644 +0 0.1289 +0 0.1079 +0 0.0810 +0 0.2248 +0 0.1882 +0 0.0892 +0 0.0962 +0 0.0944 +0 0.1155 +0 0.0651 +0 0.0799 +0 0.1639 +0 0.0709 +0 0.1440 +0 0.1303 +0 0.1155 +0 0.0984 +0 0.1108 +0 0.0629 +0 0.2953 +0 0.1412 +0 0.1508 +0 0.0435 +0 0.1099 +0 0.2130 +0 0.2373 +0 0.1215 +0 0.0879 +0 0.7373 +0 0.1302 +0 0.1016 +0 0.1369 +1 0.8484 +0 0.1991 +0 0.1646 +0 0.0655 +0 0.4920 +0 0.2255 +0 0.0647 +0 0.0860 +0 0.0659 +0 0.1436 +0 0.1309 +0 0.0899 +0 0.0684 +0 0.0900 +0 0.2536 +0 0.2697 +0 0.0341 +0 0.0586 +0 0.1738 +0 0.1527 +0 0.1484 +0 0.4564 +0 0.3218 +0 0.1244 +0 0.2308 +0 0.0984 +0 0.1132 +0 0.0871 +0 0.0436 +0 0.1203 +0 0.0755 +0 0.0622 +0 0.1026 +0 0.4163 +0 0.0842 +0 0.1842 +0 0.0361 +0 0.3373 +0 0.5191 +0 0.1723 +0 0.2793 +0 0.1068 +0 0.2252 +0 0.1940 +0 0.0370 +0 0.1093 +0 0.1528 +0 0.1052 +0 0.2245 +0 0.0975 +0 0.1370 +0 0.0311 +0 0.1524 +0 0.0721 +0 0.0457 +0 0.1109 +0 0.0369 +0 0.3368 +0 0.1061 +0 0.5345 +0 0.2438 +0 0.0766 +0 0.2431 +0 0.2158 +0 0.2497 +0 0.1863 +0 0.1372 +0 0.1316 +0 0.0789 +0 0.2411 +0 0.0956 +0 0.0684 +0 0.0728 +0 0.0712 +0 0.1372 +0 0.0847 +0 0.1790 +0 0.1499 +0 0.5161 +0 0.1026 +0 0.1713 +0 0.1773 +0 0.1002 +0 0.3266 +0 0.1862 +0 0.1660 +0 0.1105 +0 0.0403 +0 0.0551 +0 0.0658 +0 0.0993 +0 0.1454 +0 0.4162 +0 0.1134 +0 0.0606 +0 0.1382 +0 0.5937 +0 0.1811 +0 0.0510 +0 0.2455 +0 0.1535 +0 0.2012 +0 0.0808 +0 0.0541 +0 0.1092 +0 0.3186 +0 0.1548 +1 0.8217 +0 0.2231 +0 0.0795 +0 0.4373 +0 0.0894 +0 0.1119 +0 0.0413 +0 0.0542 +0 0.0935 +0 0.2071 +0 0.0715 +0 0.1105 +0 0.1165 +0 0.1074 +0 0.1946 +0 0.1282 +0 0.0612 +0 0.0727 +0 0.1527 +0 0.3715 +0 0.0863 +0 0.0640 +0 0.0516 +0 0.1294 +0 0.0848 +0 0.0524 +0 0.1871 +0 0.1708 +0 0.4661 +0 0.0390 +0 0.1871 +0 0.2598 +0 0.0614 +0 0.2360 +0 0.0927 +0 0.1135 +0 0.0959 +0 0.1159 +0 0.1479 +0 0.0682 +0 0.1753 +0 0.0605 +0 0.1094 +0 0.1211 +0 0.3362 +0 0.0361 +0 0.2419 +0 0.0873 +0 0.0804 +1 0.7626 +0 0.0722 +0 0.3671 +0 0.1112 +0 0.0736 +0 0.0891 +0 0.1558 +0 0.1020 +0 0.0978 +0 0.1891 +0 0.0845 +0 0.1012 +0 0.1894 +0 0.0804 +0 0.0950 +0 0.1202 +0 0.0988 +0 0.0487 +0 0.1180 +0 0.0937 +0 0.0589 +0 0.1517 +0 0.4107 +0 0.1713 +0 0.3994 +0 0.1265 +0 0.0544 +0 0.0947 +0 0.1001 +0 0.0642 +0 0.1024 +0 0.1059 +0 0.1062 +0 0.2099 +0 0.6971 +0 0.0527 +0 0.1688 +0 0.1029 +0 0.0614 +0 0.1010 +0 0.1621 +0 0.1390 +0 0.0623 +0 0.1619 +0 0.0695 +0 0.0865 +0 0.0390 +0 0.1657 +0 0.1852 +0 0.1041 +0 0.1315 +0 0.0692 +0 0.1715 +0 0.0504 +0 0.0273 +0 0.3169 +0 0.2785 +0 0.0906 +0 0.1915 +0 0.0539 +0 0.0405 +0 0.6885 +0 0.1822 +0 0.0550 +0 0.2117 +0 0.1796 +0 0.3725 +0 0.0401 +0 0.1204 +0 0.1485 +0 0.0650 +0 0.0715 +0 0.0489 +0 0.2001 +0 0.0928 +0 0.1479 +0 0.0427 +0 0.0832 +0 0.1462 +0 0.1681 +0 0.2427 +0 0.0402 +0 0.1141 +0 0.0595 +0 0.0613 +0 0.0830 +0 0.0554 +0 0.2168 +0 0.2602 +0 0.0513 +0 0.0457 +0 0.1491 +0 0.1703 +0 0.0741 +0 0.0400 +0 0.1048 +0 0.2797 +0 0.0872 +0 0.1016 +0 0.1083 +0 0.1077 +0 0.0422 +0 0.0722 +0 0.0583 +0 0.0807 +0 0.0754 +0 0.1165 +0 0.2023 +0 0.1198 +0 0.0648 +0 0.2104 +0 0.0432 +0 0.0577 +0 0.1564 +0 0.1165 +0 0.3422 +0 0.0949 +0 0.2828 +0 0.1876 +0 0.2432 +0 0.0918 +0 0.1081 +0 0.1570 +0 0.0692 +0 0.0642 +0 0.1729 +0 0.0441 +0 0.0484 +0 0.1074 +0 0.2115 +0 0.1270 +0 0.1110 +0 0.2330 +0 0.1016 +0 0.1835 +0 0.1027 +0 0.0805 +0 0.1098 +0 0.1695 +0 0.1859 +0 0.1921 +0 0.1519 +0 0.1001 +0 0.0812 +0 0.0908 +0 0.1302 +0 0.0814 +0 0.1468 +0 0.0611 +0 0.1898 +0 0.0428 +0 0.0474 +0 0.0538 +0 0.0898 +0 0.1334 +0 0.0560 +0 0.0726 +0 0.1505 +0 0.0663 +0 0.0809 +0 0.1842 +0 0.1526 +0 0.1069 +0 0.1921 +0 0.0561 +0 0.0438 +0 0.1747 +0 0.1667 +0 0.0628 +0 0.0994 +0 0.0512 +0 0.0533 +0 0.1839 +0 0.0589 +0 0.0863 +0 0.3058 +0 0.1207 +0 0.5728 +0 0.0714 +0 0.0606 +0 0.1166 +0 0.1963 +0 0.1030 +0 0.2134 +0 0.1027 +0 0.0632 +0 0.0574 +1 0.7586 +0 0.0948 +0 0.2281 +0 0.1649 +0 0.2498 +0 0.0598 +0 0.0887 +0 0.0766 +0 0.0889 +0 0.1391 +0 0.1330 +0 0.3672 +0 0.0760 +0 0.1396 +0 0.0381 +0 0.1279 +0 0.1544 +0 0.1769 +0 0.4270 +0 0.1024 +0 0.4547 +0 0.0791 +0 0.1843 +0 0.2605 +0 0.0959 +0 0.1115 +0 0.0490 +0 0.1639 +0 0.3278 +0 0.0784 +0 0.0724 +0 0.1902 +0 0.3533 +0 0.0778 +0 0.0717 +0 0.0479 +0 0.0817 +1 0.8662 +0 0.0843 +0 0.0636 +0 0.1412 +0 0.2163 +0 0.0669 +0 0.0738 +0 0.1106 +0 0.6672 +0 0.0663 +0 0.0630 +0 0.1127 +0 0.1581 +0 0.1642 +0 0.7471 +0 0.0514 +0 0.0502 +0 0.0576 +0 0.1683 +0 0.0964 +0 0.0703 +0 0.1313 +0 0.1111 +0 0.0720 +0 0.2951 +0 0.1451 +0 0.1279 +0 0.0659 +0 0.0922 +0 0.2174 +0 0.1034 +0 0.2466 +0 0.0800 +0 0.0415 +0 0.1537 +0 0.0599 +0 0.1438 +0 0.1119 +0 0.0580 +0 0.1421 +0 0.1467 +0 0.1241 +0 0.2370 +0 0.0489 +0 0.0540 +0 0.1077 +0 0.1516 +0 0.4385 +0 0.0597 +0 0.2128 +0 0.2232 +0 0.3195 +0 0.1150 +0 0.0998 +0 0.0839 +0 0.6605 +0 0.0698 +0 0.2392 +0 0.1730 +0 0.1766 +0 0.1201 +0 0.0774 +0 0.2632 +0 0.2907 +0 0.0503 +0 0.1023 +0 0.0954 +0 0.0592 +0 0.1328 +0 0.3794 +0 0.1295 +0 0.1042 +0 0.2057 +0 0.0567 +0 0.2226 +0 0.1236 +0 0.0934 +0 0.0317 +0 0.1633 +0 0.0680 +0 0.2460 +0 0.1800 +0 0.1115 +0 0.2896 +0 0.2397 +0 0.0888 +0 0.0649 +0 0.1187 +0 0.1133 +0 0.1338 +1 0.7849 +0 0.0707 +0 0.5003 +0 0.2323 +0 0.1031 +0 0.2743 +0 0.0586 +0 0.3786 +0 0.0506 +0 0.1961 +0 0.0753 +0 0.2310 +0 0.0524 +0 0.1085 +0 0.1746 +0 0.4080 +0 0.0703 +0 0.2138 +1 0.8154 +0 0.0392 +0 0.1913 +0 0.3242 +0 0.1948 +0 0.1565 +0 0.0859 +0 0.0647 +0 0.1094 +0 0.1341 +0 0.0943 +0 0.2265 +0 0.0534 +0 0.0501 +0 0.0902 +0 0.1463 +0 0.0347 +0 0.1125 +0 0.0466 +0 0.0805 +0 0.0745 +0 0.0603 +0 0.0894 +0 0.0483 +0 0.0792 +0 0.3405 +0 0.3324 +0 0.0562 +0 0.0550 +0 0.0685 +0 0.0624 +0 0.0768 +0 0.0775 +0 0.0612 +0 0.2207 +0 0.3533 +0 0.1575 +0 0.1252 +0 0.0653 +0 0.0841 +0 0.0734 +0 0.7393 +0 0.4894 +0 0.1080 +0 0.0704 +0 0.2204 +0 0.0930 +0 0.5560 +0 0.1396 +0 0.2100 +0 0.0866 +0 0.0971 +0 0.0595 +0 0.0772 +0 0.1310 +0 0.2004 +0 0.0912 +0 0.0925 +0 0.0884 +0 0.1036 +0 0.1895 +0 0.0871 +0 0.1621 +0 0.2005 +0 0.0914 +0 0.1508 +0 0.0957 +0 0.0545 +0 0.1881 +0 0.2798 +0 0.2096 +0 0.0837 +0 0.0947 +0 0.0428 +0 0.6600 +0 0.2598 +0 0.0704 +0 0.2608 +0 0.1012 +0 0.3287 +0 0.0732 +0 0.1477 +0 0.0986 +1 0.8437 +0 0.0678 +0 0.1988 +0 0.0775 +0 0.1786 +0 0.0873 +0 0.0352 +0 0.1308 +0 0.0994 +0 0.1362 +0 0.2496 +0 0.1166 +0 0.2500 +1 0.8788 +0 0.2232 +0 0.0589 +0 0.0754 +0 0.0721 +0 0.1502 +0 0.1096 +0 0.1054 +0 0.0416 +0 0.1496 +0 0.0877 +0 0.0986 +0 0.0541 +0 0.0698 +0 0.0940 +0 0.0498 +0 0.7150 +0 0.0623 +0 0.0723 +0 0.1942 +0 0.1391 +0 0.0529 +0 0.0378 +0 0.1044 +0 0.1260 +0 0.0468 +0 0.0606 +0 0.2089 +0 0.1315 +0 0.1207 +0 0.2360 +0 0.0812 +0 0.1203 +0 0.1026 +0 0.0831 +0 0.1797 +0 0.0939 +0 0.1457 +0 0.0804 +0 0.2376 +0 0.2902 +0 0.0597 +0 0.0792 +0 0.4349 +0 0.0552 +0 0.7222 +0 0.0898 +0 0.1813 +0 0.0579 +0 0.0558 +0 0.1324 +0 0.1883 +0 0.0379 +0 0.0684 +0 0.0601 +0 0.2919 +1 0.8437 +0 0.2836 +0 0.0865 +0 0.1049 +0 0.4320 +0 0.0831 +0 0.2611 +0 0.0447 +0 0.0791 +0 0.1548 +0 0.2326 +0 0.2225 +0 0.0754 +0 0.2139 +0 0.6605 +0 0.0346 +0 0.1034 +0 0.0705 +0 0.0962 +0 0.0548 +0 0.1499 +0 0.0402 +0 0.0814 +0 0.0540 +0 0.1172 +0 0.0763 +0 0.4873 +0 0.1237 +0 0.0497 +0 0.0654 +0 0.0657 +0 0.1352 +0 0.0589 +0 0.2990 +0 0.1292 +0 0.0658 +0 0.1396 +0 0.1572 +0 0.1398 +0 0.0753 +0 0.0995 +0 0.1339 +0 0.0550 +0 0.2247 +0 0.2240 +0 0.1552 +0 0.0361 +0 0.1268 +0 0.0888 +0 0.0694 +0 0.1602 +0 0.0639 +0 0.0971 +0 0.0610 +0 0.0719 +0 0.2138 +0 0.1152 +0 0.0953 +0 0.0525 +0 0.6423 +0 0.1813 +0 0.0567 +0 0.1509 +0 0.1153 +0 0.0524 +0 0.1498 +0 0.1058 +0 0.2506 +0 0.2333 +0 0.1491 +0 0.1153 +0 0.0365 +0 0.0937 +0 0.0665 +0 0.0785 +0 0.0862 +0 0.0540 +0 0.7468 +0 0.1866 +0 0.3286 +0 0.1802 +0 0.1504 +0 0.1450 +0 0.0597 +0 0.4528 +0 0.2265 +0 0.2828 +0 0.1428 +0 0.1281 +0 0.1481 +0 0.1147 +0 0.2219 +0 0.1150 +0 0.0883 +0 0.2156 +0 0.1955 +0 0.0853 +0 0.0772 +0 0.2778 +0 0.0589 +0 0.0706 +0 0.1298 +0 0.0562 +0 0.0733 +0 0.0734 +0 0.0601 +0 0.1063 +0 0.1004 +0 0.0599 +0 0.1264 +0 0.0643 +0 0.0920 +0 0.1334 +0 0.1203 +0 0.0970 +0 0.2324 +0 0.2958 +0 0.1342 +0 0.0692 +0 0.0722 +0 0.0759 +0 0.0638 +0 0.2472 +0 0.1518 +0 0.1651 +0 0.2352 +0 0.0906 +0 0.0534 +0 0.0611 +0 0.0857 +0 0.0971 +0 0.2006 +0 0.0852 +0 0.1818 +0 0.1008 +0 0.0534 +0 0.0917 +0 0.2492 +0 0.2758 +0 0.0358 +0 0.2102 +0 0.3930 +0 0.1056 +0 0.2798 +0 0.0409 +0 0.0703 +0 0.0582 +0 0.5877 +0 0.2057 +0 0.1172 +0 0.3728 +0 0.2587 +0 0.1918 +0 0.2281 +0 0.0577 +0 0.0899 +0 0.1129 +0 0.0596 +0 0.1021 +0 0.1643 +0 0.4405 +0 0.1002 +0 0.0475 +0 0.0783 +0 0.1344 +0 0.1435 +0 0.1157 +0 0.1484 +0 0.0801 +0 0.2312 +0 0.3703 +0 0.0565 +0 0.1362 +0 0.1198 +0 0.0717 +0 0.1056 +0 0.4483 +0 0.1240 +0 0.0579 +0 0.0629 +0 0.1016 +0 0.0977 +0 0.0589 +0 0.0985 +0 0.0430 +0 0.1437 +0 0.0652 +0 0.1225 +0 0.3346 +0 0.1247 +0 0.0720 +0 0.1949 +0 0.7131 +0 0.6857 +0 0.0756 +0 0.0517 +0 0.0950 +0 0.0789 +0 0.1875 +0 0.0499 +0 0.1108 +0 0.1203 +0 0.1800 +0 0.2090 +0 0.1097 +0 0.0481 +0 0.0547 +0 0.0389 +0 0.0650 +0 0.1092 +0 0.2764 +0 0.1110 +0 0.1216 +0 0.1994 +0 0.0577 +0 0.4290 +0 0.0728 +0 0.0632 +0 0.0487 +0 0.1126 +0 0.1369 +0 0.0875 +0 0.1326 +0 0.1575 +0 0.0762 +0 0.0591 +0 0.0459 +0 0.0834 +1 0.7750 +0 0.0694 +0 0.0966 +0 0.1054 +0 0.0729 +0 0.0823 +0 0.1056 +0 0.1224 +0 0.5229 +0 0.0858 +0 0.0625 +0 0.0980 +0 0.1621 +0 0.1169 +0 0.0623 +0 0.1395 +0 0.1514 +0 0.0838 +0 0.0818 +0 0.2889 +0 0.1057 +0 0.1811 +0 0.0846 +0 0.0494 +0 0.1332 +0 0.1888 +0 0.2301 +1 0.8149 +0 0.1101 +0 0.0876 +0 0.0409 +0 0.1367 +0 0.0667 +0 0.0768 +0 0.1108 +0 0.1067 +0 0.0738 +0 0.1245 +0 0.4340 +0 0.0552 +0 0.2977 +0 0.1719 +0 0.1327 +0 0.0815 +0 0.0773 +0 0.2924 +0 0.1439 +0 0.1625 +0 0.0850 +0 0.0935 +0 0.0962 +0 0.1054 +0 0.0578 +0 0.1305 +0 0.1562 +0 0.1236 +0 0.0373 +0 0.0460 +0 0.2309 +0 0.1591 +0 0.0600 +0 0.3224 +0 0.0581 +0 0.2774 +0 0.5314 +0 0.0737 +0 0.0434 +0 0.2092 +0 0.0587 +0 0.0710 +0 0.4512 +0 0.2478 +0 0.0837 +0 0.3384 +0 0.0754 +0 0.2260 +0 0.1689 +0 0.1586 +0 0.2087 +0 0.0914 +0 0.0493 +0 0.0380 +0 0.1170 +0 0.0416 +0 0.1296 +0 0.1528 +0 0.1172 +0 0.1277 +0 0.2876 +0 0.2111 +0 0.0578 +0 0.2017 +0 0.2050 +0 0.0772 +0 0.1126 +0 0.1273 +0 0.0803 +0 0.0477 +0 0.0755 +0 0.0902 +0 0.2056 +0 0.1252 +0 0.0524 +0 0.1080 +0 0.0817 +0 0.0619 +0 0.0737 +0 0.2850 +0 0.0920 +0 0.0393 +0 0.1343 +0 0.0520 +1 0.8669 +0 0.0860 +0 0.2011 +0 0.1493 +0 0.0664 +0 0.1459 +0 0.0793 +0 0.0659 +0 0.0471 +0 0.1804 +0 0.1208 +0 0.0656 +0 0.1559 +0 0.1674 +0 0.1524 +0 0.6218 +0 0.0840 +0 0.0673 +0 0.6172 +0 0.0827 +0 0.1141 +0 0.0725 +0 0.2310 +0 0.0662 +0 0.2112 +0 0.0950 +0 0.1383 +0 0.0660 +0 0.0942 +0 0.0548 +0 0.0715 +0 0.2667 +0 0.1249 +0 0.0406 +0 0.1505 +0 0.1452 +0 0.0665 +0 0.0928 +0 0.0426 +0 0.1116 +0 0.2207 +1 0.8326 +0 0.0585 +0 0.0655 +0 0.4866 +0 0.1394 +0 0.5953 +0 0.1409 +0 0.0766 +0 0.2460 +0 0.1350 +0 0.1445 +0 0.1013 +0 0.1008 +0 0.2020 +0 0.1040 +0 0.0714 +0 0.0730 +0 0.2191 +0 0.1181 +0 0.0889 +0 0.0398 +0 0.1417 +0 0.0848 +0 0.0802 +0 0.0767 +0 0.1101 +0 0.0742 +0 0.1876 +0 0.1245 +0 0.0619 +0 0.1279 +0 0.1406 +0 0.0852 +0 0.0533 +0 0.0697 +1 0.3703 +0 0.1156 +0 0.1450 +0 0.1424 +0 0.0426 +0 0.0339 +0 0.0449 +0 0.0892 +0 0.1563 +0 0.0772 +0 0.1570 +0 0.1464 +0 0.0633 +0 0.0609 +0 0.0814 +0 0.0612 +0 0.0434 +0 0.0941 +0 0.2155 +0 0.1887 +0 0.3272 +0 0.1511 +0 0.0846 +0 0.4541 +0 0.1260 +0 0.1317 +0 0.0843 +0 0.0578 +0 0.3648 +0 0.1246 +0 0.0971 +0 0.0933 +0 0.1056 +0 0.5036 +0 0.1338 +0 0.1645 +0 0.1177 +0 0.2859 +0 0.0742 +0 0.1269 +0 0.0539 +0 0.1186 +0 0.1305 +0 0.1413 +0 0.2047 +0 0.1883 +0 0.1723 +0 0.0575 +0 0.0421 +0 0.0597 +0 0.0444 +0 0.0655 +0 0.0657 +0 0.1580 +0 0.1888 +0 0.0559 +0 0.0562 +0 0.0991 +0 0.0736 +0 0.0893 +0 0.2537 +0 0.0845 +0 0.3479 +0 0.1304 +0 0.2345 +0 0.0630 +0 0.1285 +0 0.1655 +0 0.0424 +0 0.0855 +0 0.0931 +0 0.1711 +0 0.2355 +0 0.0733 +0 0.0565 +1 0.8455 +0 0.0343 +0 0.0571 +0 0.7221 +0 0.1099 +0 0.3949 +0 0.1222 +0 0.1787 +0 0.1988 +0 0.1065 +0 0.2485 +0 0.3610 +0 0.1429 +0 0.1093 +0 0.2560 +0 0.0906 +0 0.0886 +0 0.3339 +0 0.0881 +0 0.1440 +0 0.0516 +0 0.1041 +0 0.1410 +0 0.1069 +0 0.2485 +0 0.0839 +0 0.2745 +0 0.2136 +0 0.0492 +0 0.0433 +0 0.2120 +0 0.1293 +0 0.2002 +0 0.1309 +0 0.1994 +0 0.2520 +0 0.1430 +0 0.1456 +0 0.0487 +0 0.2546 +0 0.1162 +0 0.0879 +0 0.1521 +0 0.0483 +0 0.2945 +0 0.0720 +0 0.0841 +0 0.0667 +0 0.0443 +0 0.2118 +0 0.0712 +0 0.1039 +0 0.0807 +0 0.1483 +0 0.0885 +0 0.0686 +0 0.1144 +0 0.1997 +1 0.8740 +0 0.0911 +0 0.1611 +0 0.0797 +0 0.1080 +0 0.1057 +0 0.1201 +0 0.2172 +0 0.2045 +0 0.0792 +0 0.0526 +0 0.0324 +0 0.0927 +0 0.0985 +0 0.0762 +0 0.3387 +0 0.0650 +0 0.1289 +0 0.0391 +0 0.1265 +0 0.0330 +0 0.3746 +0 0.0855 +0 0.1221 +0 0.1057 +0 0.1777 +0 0.1107 +0 0.0588 +0 0.0841 +0 0.0965 +0 0.1627 +0 0.1612 +0 0.1120 +0 0.2896 +0 0.0501 +0 0.0861 +0 0.0846 +0 0.1682 +0 0.0943 +0 0.2300 +0 0.1189 +0 0.1301 +0 0.2747 +0 0.0864 +0 0.2004 +0 0.5015 +0 0.1168 +0 0.0732 +0 0.0450 +0 0.0941 +0 0.1692 +0 0.1424 +0 0.0902 +0 0.1107 +0 0.2127 +0 0.0451 +0 0.1470 +0 0.1554 +0 0.0639 +0 0.2332 +0 0.1232 +0 0.0743 +0 0.2241 +0 0.2358 +0 0.0650 +0 0.1002 +1 0.8421 +0 0.0618 +0 0.1303 +0 0.0945 +0 0.0619 +0 0.2059 +0 0.2068 +0 0.1865 +0 0.0652 +0 0.1974 +0 0.7441 +0 0.0823 +0 0.0601 +0 0.0663 +0 0.0938 +0 0.1051 +0 0.0566 +0 0.1817 +0 0.1308 +0 0.1393 +0 0.0691 +0 0.1094 +0 0.0718 +0 0.0644 +0 0.1109 +0 0.1222 +0 0.2490 +0 0.2397 +0 0.3834 +0 0.0850 +0 0.7475 +0 0.0715 +0 0.0734 +0 0.0983 +0 0.2536 +0 0.0456 +0 0.0333 +0 0.0575 +0 0.0597 +0 0.4962 +0 0.2968 +0 0.0712 +0 0.1104 +0 0.0597 +0 0.1586 +0 0.1649 +0 0.0934 +0 0.1281 +0 0.0999 +0 0.0644 +0 0.1343 +0 0.1148 +0 0.1078 +0 0.1115 +0 0.1619 +0 0.2592 +0 0.1444 +0 0.1864 +0 0.0706 +0 0.1025 +0 0.0707 +0 0.0722 +0 0.0776 +0 0.1370 +0 0.1436 +0 0.0782 +0 0.1593 +0 0.0570 +0 0.1769 +0 0.0757 +0 0.2482 +0 0.3147 +0 0.1524 +0 0.0397 +1 0.7522 +0 0.6291 +0 0.1681 +0 0.0456 +0 0.2420 +0 0.0557 +0 0.2987 +0 0.1083 +0 0.0611 +0 0.1193 +0 0.1737 +0 0.0628 +0 0.5189 +0 0.0992 +0 0.0921 +0 0.0749 +0 0.1743 +0 0.0905 +0 0.0946 +0 0.1478 +0 0.0475 +0 0.0932 +0 0.3238 +0 0.0638 +0 0.1373 +0 0.1002 +0 0.2203 +0 0.0637 +0 0.2014 +0 0.0592 +0 0.0778 +0 0.0579 +0 0.0758 +0 0.6944 +0 0.0702 +0 0.0497 +0 0.1560 +0 0.3030 +1 0.8399 +0 0.1333 +0 0.1712 +0 0.2377 +0 0.1242 +0 0.2354 +0 0.0710 +0 0.1523 +0 0.0658 +0 0.5134 +0 0.0637 +0 0.3541 +0 0.0732 +0 0.2514 +0 0.2072 +0 0.6794 +0 0.3165 +0 0.2243 +0 0.0777 +0 0.0862 +0 0.0575 +0 0.2622 +0 0.0779 +0 0.3300 +0 0.0650 +0 0.0713 +0 0.1731 +0 0.1429 +0 0.2198 +0 0.0797 +0 0.0585 +0 0.0499 +0 0.1023 +0 0.2352 +0 0.1274 +0 0.1553 +0 0.1007 +0 0.0773 +0 0.1085 +0 0.0714 +0 0.3559 +0 0.2578 +1 0.7506 +0 0.0910 +0 0.6996 +0 0.0704 +0 0.2507 +0 0.0290 +0 0.1292 +0 0.1808 +0 0.0735 +0 0.2964 +1 0.8713 +0 0.1545 +1 0.7587 +0 0.0545 +0 0.0469 +0 0.1059 +0 0.0993 +0 0.5221 +0 0.0609 +0 0.0614 +0 0.3609 +0 0.0880 +0 0.0628 +0 0.0444 +0 0.0916 +0 0.2755 +0 0.0735 +0 0.1989 +0 0.1726 +0 0.0540 +0 0.0762 +0 0.0563 +0 0.1228 +0 0.1196 +0 0.1216 +0 0.0906 +0 0.1764 +0 0.1795 +0 0.0527 +0 0.1475 +0 0.0641 +0 0.2884 +0 0.1149 +0 0.0497 +0 0.1188 +0 0.0815 +0 0.1005 +0 0.2116 +0 0.0721 +0 0.0924 +0 0.0473 +0 0.2499 +0 0.2507 +0 0.6472 +0 0.0918 +0 0.2040 +0 0.1516 +0 0.1547 +0 0.1134 +0 0.0469 +0 0.1348 +1 0.7950 +0 0.0892 +0 0.1628 +0 0.0561 +0 0.1185 +0 0.2340 +0 0.3265 +0 0.0704 +1 0.7726 +0 0.1269 +0 0.1482 +0 0.1943 +0 0.0770 +0 0.1322 +0 0.0537 +0 0.2320 +0 0.1329 +0 0.1173 +0 0.0943 +0 0.0473 +0 0.0463 +0 0.1605 +0 0.1137 +0 0.0818 +0 0.1329 +0 0.1681 +0 0.1753 +0 0.0859 +0 0.1383 +0 0.0793 +0 0.2118 +0 0.1700 +0 0.1388 +0 0.2585 +0 0.0897 +0 0.0693 +0 0.0849 +0 0.3165 +0 0.1076 +0 0.1381 +0 0.1014 +0 0.0810 +0 0.3706 +0 0.1608 +0 0.6632 +0 0.1280 +0 0.1030 +0 0.6120 +0 0.1081 +0 0.0417 +1 0.7816 +0 0.2196 +0 0.1241 +0 0.6038 +0 0.1185 +0 0.1780 +0 0.0964 +0 0.0616 +0 0.2357 +0 0.1148 +0 0.1086 +0 0.1530 +0 0.0943 +0 0.2691 +0 0.1145 +0 0.1964 +0 0.0602 +0 0.0846 +0 0.0922 +0 0.1226 +0 0.0599 +0 0.0695 +0 0.1815 +0 0.0598 +0 0.1269 +0 0.0638 +0 0.0546 +0 0.0872 +0 0.0671 +0 0.0933 +0 0.2213 +0 0.1179 +0 0.2930 +0 0.1191 +0 0.0994 +0 0.2896 +0 0.1139 +0 0.0732 +0 0.0826 +0 0.0438 +0 0.0766 +0 0.0319 +0 0.1058 +0 0.0489 +0 0.0776 +0 0.0456 +0 0.0956 +0 0.5739 +0 0.1864 +0 0.0952 +0 0.1044 +0 0.0438 +0 0.0458 +0 0.1991 +0 0.0932 +0 0.1276 +0 0.0608 +0 0.0839 +0 0.0794 +0 0.1138 +0 0.3666 +0 0.2693 +0 0.0761 +0 0.0968 +0 0.0981 +0 0.0624 +0 0.5062 +0 0.1638 +0 0.0990 +0 0.1304 +0 0.1953 +0 0.2417 +0 0.1906 +0 0.0691 +0 0.0963 +0 0.0689 +0 0.0599 +0 0.0882 +0 0.3031 +0 0.0644 +0 0.1367 +0 0.2091 +0 0.1480 +0 0.0637 +0 0.1413 +0 0.1351 +0 0.0904 +0 0.0723 +0 0.1023 +0 0.0487 +0 0.0690 +0 0.0972 +0 0.2708 +0 0.0500 +0 0.0721 +0 0.0938 +0 0.1206 +0 0.2348 +0 0.0420 +0 0.2048 +0 0.2259 +0 0.1549 +0 0.0416 +0 0.1051 +0 0.1588 +0 0.0622 +0 0.0681 +0 0.2429 +0 0.0303 +0 0.0686 +0 0.1664 +0 0.0808 +0 0.0719 +0 0.0760 +0 0.0552 +0 0.2375 +0 0.0931 +0 0.0847 +0 0.0437 +0 0.0541 +0 0.0938 +0 0.0609 +0 0.2744 +0 0.0914 +0 0.0469 +0 0.0928 +0 0.0350 +0 0.0358 +0 0.0967 +0 0.0637 +0 0.1769 +0 0.1540 +0 0.1563 +0 0.1854 +0 0.0777 +0 0.0781 +0 0.1734 +0 0.2735 +0 0.1044 +0 0.2819 +0 0.0881 +0 0.0882 +0 0.1898 +0 0.0791 +0 0.1275 +0 0.2382 +0 0.0329 +0 0.2154 +0 0.0697 +0 0.2390 +0 0.1885 +0 0.1833 +0 0.0793 +0 0.1349 +0 0.0613 +0 0.1251 +0 0.0909 +0 0.6208 +0 0.1632 +0 0.0932 +0 0.1070 +0 0.3243 +0 0.0360 +0 0.0505 +0 0.0672 +0 0.1689 +0 0.0469 +0 0.0866 +0 0.0697 +0 0.0916 +0 0.0716 +0 0.1749 +0 0.2631 +0 0.0827 +0 0.2323 +0 0.0828 +0 0.0542 +0 0.1549 +0 0.1861 +0 0.0723 +0 0.0586 +0 0.1574 +0 0.0653 +0 0.1153 +0 0.0890 +0 0.5904 +0 0.0747 +0 0.1110 +0 0.1055 +0 0.0478 +0 0.7128 +0 0.0445 +0 0.2060 +0 0.5256 +0 0.1441 +0 0.0464 +0 0.0793 +0 0.1274 +0 0.1651 +0 0.1196 +0 0.0675 +0 0.0830 +0 0.0641 +0 0.1701 +0 0.0410 +0 0.2917 +0 0.0652 +0 0.1467 +0 0.0595 +0 0.0403 +0 0.0828 +0 0.0896 +0 0.0411 +0 0.0887 +0 0.0629 +0 0.2275 +0 0.1413 +0 0.5411 +0 0.2633 +0 0.2078 +0 0.0802 +0 0.0775 +0 0.1126 +0 0.0713 +0 0.0652 +0 0.0849 +0 0.0843 +0 0.0330 +0 0.0547 +0 0.0446 +0 0.0618 +0 0.0589 +0 0.0885 +0 0.0391 +0 0.0919 +0 0.3257 +0 0.1269 +0 0.1636 +0 0.1250 +0 0.0594 +0 0.0938 +0 0.0915 +0 0.0937 +0 0.0983 +0 0.0825 +0 0.1056 +0 0.1955 +0 0.0827 +0 0.0926 +0 0.0637 +0 0.2066 +0 0.1429 +0 0.1597 +0 0.5909 +0 0.1099 +0 0.1302 +0 0.0742 +0 0.3159 +0 0.1058 +0 0.0855 +0 0.0501 +0 0.0574 +0 0.0784 +0 0.1923 +0 0.0644 +0 0.1011 +0 0.0723 +0 0.0818 +0 0.1657 +0 0.0888 +0 0.0564 +0 0.4267 +0 0.0680 +0 0.0709 +0 0.0846 +0 0.0899 +0 0.4124 +0 0.0762 +0 0.0617 +0 0.1673 +0 0.4048 +0 0.6352 +0 0.0707 +0 0.1495 +0 0.3723 +0 0.0583 +0 0.0404 +0 0.1106 +0 0.0401 +1 0.8189 +0 0.0930 +0 0.0593 +0 0.0511 +0 0.0523 +0 0.1259 +0 0.1049 +0 0.0672 +0 0.0989 +0 0.0768 +0 0.0977 +0 0.0811 +0 0.0974 +0 0.0857 +0 0.0695 +0 0.0650 +0 0.0745 +0 0.2539 +0 0.0897 +0 0.1982 +0 0.0974 +0 0.0962 +0 0.2509 +0 0.0870 +1 0.8201 +0 0.0742 +0 0.0473 +0 0.2145 +0 0.1672 +0 0.0960 +0 0.0801 +0 0.0790 +0 0.1123 +0 0.0573 +0 0.1993 +0 0.0808 +0 0.1348 +0 0.1156 +0 0.1146 +0 0.1196 +0 0.1456 +0 0.0728 +1 0.8606 +0 0.0710 +0 0.0693 +0 0.2141 +0 0.2545 +0 0.0750 +0 0.0900 +0 0.0363 +0 0.1389 +0 0.1257 +0 0.0919 +0 0.0575 +0 0.2473 +0 0.1761 +0 0.1654 +0 0.1655 +0 0.0846 +0 0.0530 +0 0.1759 +0 0.1067 +0 0.1842 +0 0.0821 +1 0.8444 +0 0.0692 +0 0.0434 +0 0.1544 +0 0.0508 +0 0.2098 +0 0.0966 +0 0.0637 +0 0.2240 +0 0.1157 +0 0.4394 +0 0.0476 +0 0.0704 +0 0.4342 +0 0.1034 +0 0.7203 +0 0.1393 +0 0.1961 +0 0.1035 +0 0.0623 +0 0.0434 +0 0.4989 +0 0.0339 +0 0.1180 +0 0.0894 +0 0.2353 +0 0.1018 +0 0.1084 +0 0.3482 +0 0.0729 +0 0.1264 +0 0.0777 +0 0.1610 +0 0.0627 +0 0.1273 +0 0.1825 +0 0.0848 +0 0.3161 +0 0.0817 +0 0.0357 +0 0.1392 +0 0.1450 +0 0.1494 +0 0.1924 +0 0.0769 +0 0.2209 +1 0.7831 +0 0.1157 +0 0.0518 +0 0.2503 +0 0.0505 +0 0.3110 +0 0.0915 +0 0.2271 +0 0.0742 +0 0.0965 +0 0.1471 +0 0.1701 +0 0.0811 +0 0.0509 +0 0.1049 +1 0.7556 +0 0.1343 +0 0.2798 +0 0.1104 +0 0.0664 +0 0.0597 +0 0.2055 +0 0.2107 +0 0.0686 +0 0.0748 +0 0.0379 +0 0.0686 +0 0.1017 +0 0.2297 +0 0.0676 +0 0.0904 +0 0.0703 +0 0.1192 +0 0.0507 +0 0.0701 +0 0.0773 +0 0.0707 +0 0.3356 +0 0.1703 +0 0.1501 +0 0.1223 +0 0.0968 +0 0.5418 +0 0.0441 +0 0.2090 +0 0.0859 +0 0.1949 +0 0.3347 +0 0.0730 +0 0.0384 +0 0.0583 +0 0.1495 +0 0.7244 +0 0.0764 +0 0.0875 +0 0.2657 +0 0.0613 +0 0.0752 +0 0.1129 +0 0.0623 +0 0.0844 +0 0.1096 +0 0.1140 +0 0.1645 +0 0.1501 +0 0.1257 +0 0.0379 +0 0.0593 +0 0.1515 +0 0.1072 +0 0.2592 +0 0.1458 +0 0.3094 +0 0.0745 +0 0.0869 +0 0.1784 +0 0.0494 +0 0.0872 +0 0.0511 +0 0.0283 +0 0.1225 +0 0.0996 +0 0.1469 +0 0.1852 +0 0.0904 +0 0.1248 +0 0.0720 +0 0.1685 +0 0.1681 +0 0.0402 +0 0.0822 +0 0.1458 +0 0.2277 +0 0.1255 +0 0.1048 +0 0.0644 +0 0.0632 +0 0.2137 +0 0.1256 +0 0.0515 +0 0.0927 +0 0.0629 +0 0.0756 +0 0.1873 +0 0.1880 +0 0.1343 +0 0.0407 +0 0.1314 +0 0.1173 +0 0.0801 +0 0.1751 +0 0.1245 +0 0.2783 +0 0.1450 +0 0.0699 +0 0.0678 +0 0.0698 +0 0.1889 +0 0.1295 +0 0.0483 +0 0.0547 +0 0.1042 +0 0.0933 +0 0.4890 +0 0.0777 +0 0.0781 +0 0.0782 +0 0.0699 +0 0.2562 +0 0.1027 +0 0.0533 +0 0.1289 +0 0.0772 +0 0.1652 +0 0.0819 +0 0.1049 +0 0.0612 +0 0.2257 +0 0.5417 +0 0.0705 +0 0.5219 +0 0.0833 +0 0.1354 +0 0.7210 +0 0.0558 +0 0.0988 +0 0.1418 +0 0.0629 +0 0.0355 +0 0.1227 +0 0.5718 +0 0.0658 +0 0.1222 +0 0.0952 +0 0.0967 +0 0.1320 +0 0.1683 +0 0.0996 +0 0.0903 +0 0.0895 +0 0.0848 +0 0.1590 +0 0.1637 +0 0.1350 +0 0.1954 +0 0.2941 +0 0.0867 +0 0.2170 +0 0.1731 +0 0.0824 +0 0.0995 +0 0.1608 +0 0.3151 +0 0.1839 +1 0.8338 +0 0.5370 +0 0.5472 +0 0.0807 +0 0.1240 +0 0.0664 +0 0.0996 +0 0.0564 +0 0.2184 +0 0.2538 +0 0.2162 +0 0.1162 +0 0.1988 +0 0.1096 +0 0.2163 +0 0.2376 +0 0.1022 +0 0.0590 +0 0.1032 +0 0.0699 +0 0.0728 +0 0.2279 +0 0.1233 +0 0.1882 +0 0.0492 +0 0.4586 +0 0.1418 +0 0.1578 +0 0.1925 +0 0.0727 +0 0.1607 +0 0.1680 +0 0.0718 +0 0.3168 +0 0.2871 +0 0.1456 +0 0.0625 +0 0.1644 +0 0.0283 +0 0.0579 +0 0.0405 +0 0.1279 +0 0.0478 +0 0.0338 +0 0.1825 +0 0.4143 +0 0.0514 +0 0.1673 +0 0.2106 +0 0.0651 +0 0.0951 +0 0.0542 +0 0.1342 +0 0.0958 +0 0.1600 +0 0.0509 +0 0.1935 +0 0.2097 +0 0.0880 +0 0.2269 +0 0.2514 +0 0.0702 +0 0.0724 +0 0.0865 +0 0.1989 +0 0.1203 +0 0.0883 +0 0.0682 +0 0.2148 +0 0.1164 +0 0.0721 +0 0.1876 +0 0.2217 +0 0.1656 +0 0.0692 +0 0.1341 +0 0.0492 +0 0.0434 +1 0.7514 +0 0.2768 +0 0.0896 +0 0.1471 +0 0.1188 +0 0.0660 +0 0.1004 +0 0.2060 +0 0.0869 +0 0.1340 +0 0.1411 +0 0.0551 +0 0.1133 +0 0.0775 +0 0.0652 +0 0.1066 +0 0.1344 +0 0.1627 +0 0.2636 +0 0.0537 +0 0.4278 +0 0.0924 +0 0.0610 +0 0.5259 +0 0.0778 +0 0.0999 +0 0.0842 +0 0.0688 +0 0.1756 +0 0.2406 +0 0.0686 +0 0.1011 +0 0.0436 +0 0.1333 +0 0.1331 +0 0.6655 +0 0.1285 +0 0.0394 +0 0.0799 +0 0.1074 +0 0.7416 +0 0.1276 +0 0.1464 +0 0.1256 +0 0.0456 +0 0.0433 +0 0.1455 +0 0.1117 +0 0.1408 +0 0.1127 +0 0.1160 +0 0.0689 +0 0.1359 +0 0.0725 +0 0.1029 +0 0.0623 +0 0.0948 +0 0.0995 +0 0.0919 +0 0.0579 +0 0.0589 +0 0.0821 +0 0.0923 +0 0.3986 +0 0.0763 +0 0.1004 +0 0.3009 +0 0.0573 +0 0.3037 +0 0.0858 +0 0.0439 +0 0.1032 +0 0.0504 +0 0.0535 +0 0.0724 +0 0.0723 +0 0.0980 +0 0.0798 +0 0.1481 +0 0.0708 +0 0.3268 +0 0.1729 +0 0.2164 +0 0.2591 +0 0.2111 +0 0.0986 +0 0.0689 +0 0.2263 +0 0.1054 +0 0.1217 +0 0.0734 +0 0.1249 +0 0.0824 +0 0.1213 +0 0.3477 +0 0.0913 +0 0.0855 +0 0.1738 +0 0.1721 +0 0.1650 +0 0.1205 +0 0.1210 +0 0.0421 +0 0.0973 +0 0.0768 +0 0.1214 +0 0.0327 +0 0.1142 +0 0.3662 +0 0.1103 +0 0.1759 +0 0.1587 +0 0.0824 +1 0.7580 +0 0.0945 +0 0.1420 +0 0.0629 +0 0.3155 +0 0.0996 +0 0.2758 +0 0.3417 +0 0.1058 +0 0.2229 +0 0.1021 +0 0.1520 +0 0.0825 +0 0.0536 +0 0.0836 +0 0.0607 +0 0.0557 +0 0.1067 +0 0.3067 +0 0.1601 +0 0.1715 +0 0.5747 +0 0.0410 +0 0.0758 +0 0.0651 +0 0.2216 +0 0.0603 +0 0.1076 +0 0.3032 +0 0.0712 +0 0.1343 +0 0.1219 +0 0.7218 +0 0.1750 +0 0.1613 +0 0.1324 +0 0.1947 +0 0.0582 +0 0.2725 +0 0.0584 +0 0.0467 +0 0.1761 +0 0.0674 +0 0.1332 +0 0.2199 +0 0.1842 +0 0.0867 +0 0.1450 +0 0.1309 +0 0.1224 +0 0.0816 +0 0.0516 +0 0.2316 +0 0.3763 +0 0.0927 +0 0.0898 +0 0.2118 +0 0.0894 +0 0.5107 +0 0.1110 +0 0.0882 +0 0.2906 +0 0.4801 +0 0.2466 +0 0.0701 +0 0.1905 +0 0.1370 +0 0.1106 +0 0.3959 +0 0.0673 +0 0.2213 +0 0.1808 +0 0.1022 +0 0.1411 +0 0.1533 +0 0.1889 +0 0.2105 +0 0.1932 +0 0.1146 +0 0.0377 +0 0.1688 +0 0.1289 +0 0.4613 +0 0.0725 +0 0.1060 +0 0.0357 +0 0.0349 +0 0.1664 +0 0.0381 +0 0.1773 +0 0.1680 +0 0.0801 +0 0.3752 +0 0.1947 +0 0.1898 +0 0.1300 +0 0.1045 +0 0.0659 +0 0.1377 +0 0.1389 +0 0.1368 +0 0.6176 +0 0.0448 +0 0.0974 +0 0.0763 +0 0.0847 +0 0.1193 +0 0.0848 +1 0.7588 +0 0.0467 +0 0.0856 +0 0.0863 +0 0.0964 +0 0.0851 +0 0.0870 +0 0.0460 +0 0.0386 +0 0.1398 +0 0.0701 +0 0.0635 +0 0.1589 +0 0.2577 +0 0.1513 +0 0.0812 +0 0.0937 +0 0.1095 +0 0.0660 +0 0.0649 +0 0.0317 +0 0.1024 +0 0.1566 +0 0.4750 +0 0.1768 +0 0.2692 +0 0.0911 +0 0.2038 +0 0.1845 +0 0.2525 +0 0.0922 +0 0.1486 +0 0.0541 +0 0.1181 +0 0.1662 +0 0.0539 +0 0.0913 +0 0.0975 +0 0.1868 +0 0.0397 +0 0.1479 +0 0.1689 +0 0.0601 +0 0.0662 +0 0.1271 +0 0.1537 +0 0.0810 +0 0.0602 +1 0.7883 +0 0.2506 +0 0.1000 +0 0.3613 +0 0.2000 +0 0.1205 +0 0.0698 +0 0.1380 +0 0.1053 +0 0.0746 +0 0.1055 +0 0.0711 +0 0.0745 +0 0.1734 +0 0.2713 +0 0.0758 +0 0.0590 +0 0.1648 +0 0.1204 +0 0.1345 +0 0.0982 +0 0.0851 +0 0.1111 +0 0.4420 +0 0.0555 +0 0.0664 +0 0.3633 +0 0.1075 +0 0.1043 +0 0.1540 +0 0.1043 +0 0.1135 +0 0.0470 +0 0.7087 +0 0.1061 +0 0.0944 +0 0.1171 +0 0.0966 +0 0.0906 +0 0.1222 +0 0.0643 +0 0.0605 +0 0.3263 +0 0.1420 +0 0.0506 +0 0.1260 +0 0.0472 +0 0.7275 +0 0.0769 +0 0.0901 +0 0.1430 +0 0.2942 +0 0.0955 +0 0.0699 +0 0.0948 +0 0.2564 +0 0.0821 +0 0.0892 +0 0.1432 +0 0.1045 +0 0.0634 +0 0.0586 +0 0.1224 +0 0.0453 +0 0.0648 +0 0.0612 +0 0.1211 +0 0.5558 +0 0.3461 +0 0.2595 +0 0.0856 +0 0.1912 +0 0.6441 +0 0.0942 +0 0.0775 +0 0.0838 +0 0.1136 +0 0.0905 +0 0.1151 +0 0.1190 +0 0.4457 +0 0.0879 +0 0.0632 +0 0.1747 +0 0.0469 +0 0.1834 +0 0.1329 +0 0.0499 +0 0.1041 +0 0.1664 +0 0.0526 +0 0.3481 +0 0.0552 +0 0.2019 +0 0.0385 +0 0.1403 +0 0.0922 +0 0.0796 +0 0.0781 +0 0.0580 +0 0.0650 +0 0.0692 +0 0.0801 +0 0.1031 +0 0.7148 +0 0.1096 +0 0.0810 +0 0.1111 +0 0.2416 +0 0.0952 +0 0.1364 +0 0.1491 +0 0.2126 +0 0.1074 +0 0.1436 +0 0.1240 +0 0.0543 +1 0.8511 +0 0.0635 +0 0.1847 +0 0.1143 +0 0.0759 +0 0.1813 +0 0.1304 +0 0.0839 +0 0.0803 +0 0.1317 +0 0.2543 +0 0.0486 +0 0.1039 +0 0.0377 +0 0.1205 +0 0.2347 +0 0.1435 +1 0.7829 +0 0.1222 +0 0.0623 +0 0.0849 +0 0.5953 +0 0.2049 +0 0.0879 +0 0.1219 +0 0.1598 +0 0.2017 +0 0.1586 +0 0.0769 +0 0.1282 +0 0.2304 +0 0.0374 +0 0.1192 +0 0.1170 +1 0.8704 +0 0.2273 +0 0.1453 +0 0.2125 +0 0.2387 +0 0.2333 +0 0.4122 +0 0.0348 +0 0.2236 +0 0.0807 +0 0.1499 +0 0.0796 +0 0.1015 +0 0.1156 +0 0.1827 +0 0.2889 +0 0.0951 +0 0.3432 +0 0.0760 +0 0.1431 +0 0.0871 +0 0.1009 +0 0.0804 +0 0.2440 +0 0.2044 +0 0.2417 +0 0.0834 +0 0.0692 +0 0.1349 +0 0.0739 +0 0.1364 +0 0.2224 +0 0.0595 +0 0.0974 +0 0.0925 +0 0.6297 +0 0.7221 +0 0.0867 +0 0.1587 +0 0.1379 +0 0.2251 +0 0.2170 +0 0.3082 +0 0.0881 +0 0.0610 +0 0.0507 +0 0.0780 +0 0.0801 +0 0.2510 +0 0.0551 +0 0.0422 +0 0.1147 +0 0.0778 +0 0.1937 +0 0.0597 +0 0.1406 +0 0.0417 +0 0.3361 +0 0.3562 +1 0.8596 +0 0.0709 +0 0.1840 +0 0.3230 +0 0.1243 +0 0.1185 +0 0.1229 +0 0.0480 +0 0.1493 +0 0.0517 +0 0.4757 +0 0.0705 +0 0.0393 +0 0.0849 +0 0.2232 +0 0.1756 +0 0.0993 +0 0.0831 +0 0.0860 +0 0.1980 +0 0.1125 +0 0.6041 +1 0.8332 +0 0.3707 +0 0.1896 +0 0.0619 +0 0.0995 +0 0.0808 +0 0.1894 +0 0.0887 +0 0.0540 +0 0.0576 +0 0.1571 +0 0.6545 +0 0.1090 +0 0.1082 +0 0.0861 +0 0.6800 +0 0.0535 +0 0.0583 +0 0.7476 +0 0.1339 +0 0.3217 +0 0.0821 +0 0.0655 +0 0.0749 +0 0.4731 +0 0.0670 +0 0.1416 +0 0.1093 +0 0.0739 +0 0.1665 +0 0.0423 +0 0.1072 +0 0.0891 +0 0.0513 +0 0.0713 +0 0.0604 +0 0.1559 +0 0.1529 +0 0.1111 +0 0.0797 +0 0.0765 +0 0.1507 +0 0.0536 +0 0.1685 +0 0.1413 +0 0.2760 +0 0.2239 +0 0.2162 +0 0.1109 +0 0.1200 +0 0.2507 +0 0.3913 +0 0.0644 +0 0.0710 +0 0.0692 +0 0.2437 +0 0.0404 +0 0.0511 +0 0.2451 +0 0.2018 +0 0.1046 +0 0.0360 +0 0.0609 +0 0.1007 +0 0.1601 +0 0.1106 +0 0.1260 +0 0.2498 +0 0.0976 +0 0.0475 +0 0.1046 +0 0.1259 +0 0.2330 +0 0.4023 +0 0.1532 +0 0.1086 +0 0.0963 +0 0.2211 +0 0.0954 +0 0.0689 +0 0.0626 +0 0.0724 +0 0.1130 +0 0.0537 +0 0.0459 +0 0.2019 +0 0.0699 +0 0.0816 +0 0.1089 +0 0.0494 +0 0.6055 +0 0.1006 +0 0.0985 +0 0.1716 +0 0.0943 +0 0.1069 +0 0.0500 +0 0.1421 +0 0.1770 +0 0.2006 +0 0.0755 +0 0.2382 +0 0.0844 +0 0.1001 +0 0.0813 +0 0.0839 +0 0.1667 +0 0.0978 +0 0.0838 +0 0.1070 +0 0.0937 +0 0.1760 +0 0.0837 +0 0.1067 +0 0.0704 +0 0.0875 +0 0.0793 +0 0.0936 +0 0.0653 +0 0.0753 +0 0.0486 +0 0.1394 +0 0.2537 +0 0.0557 +0 0.0836 +0 0.1063 +0 0.0427 +0 0.0826 +0 0.3983 +0 0.0842 +0 0.1194 +0 0.1415 +0 0.0652 +0 0.0827 +0 0.6744 +0 0.0738 +0 0.2074 +0 0.1009 +0 0.0705 +0 0.1655 +0 0.1479 +0 0.1997 +0 0.0844 +0 0.1566 +0 0.1152 +0 0.1545 +0 0.0774 +0 0.2270 +0 0.1213 +0 0.0868 +0 0.0865 +0 0.1428 +0 0.1262 +0 0.0755 +0 0.0907 +0 0.1451 +0 0.0912 +0 0.0678 +1 0.8316 +0 0.1106 +0 0.1774 +0 0.1449 +0 0.1747 +0 0.1013 +0 0.5727 +0 0.1416 +0 0.1523 +0 0.1707 +0 0.0987 +0 0.0649 +0 0.3375 +0 0.1461 +0 0.0734 +0 0.0509 +0 0.1497 +0 0.0707 +0 0.0880 +0 0.0383 +0 0.1446 +0 0.1461 +0 0.0874 +0 0.0866 +0 0.0836 +0 0.0881 +0 0.0841 +0 0.0745 +0 0.1149 +0 0.0771 +0 0.2023 +0 0.1756 +1 0.8076 +0 0.1541 +0 0.0382 +0 0.0751 +0 0.1646 +0 0.0508 +0 0.0735 +0 0.0902 +0 0.2806 +0 0.0445 +0 0.1230 +0 0.0480 +0 0.0750 +0 0.0608 +0 0.0340 +0 0.2111 +0 0.1788 +0 0.7489 +0 0.6179 +0 0.1127 +0 0.2345 +0 0.1213 +0 0.0935 +0 0.0851 +0 0.0747 +0 0.0949 +0 0.0855 +0 0.1076 +0 0.0882 +0 0.1576 +0 0.5771 +0 0.1061 +0 0.4104 +0 0.1300 +0 0.0809 +0 0.1771 +0 0.0913 +0 0.0680 +0 0.1057 +0 0.0509 +0 0.2269 +0 0.0932 +0 0.1025 +0 0.6805 +0 0.0877 +0 0.2454 +0 0.2183 +0 0.0843 +0 0.3043 +0 0.0695 +0 0.1156 +0 0.0978 +0 0.2005 +0 0.1747 +0 0.1413 +0 0.0569 +0 0.0912 +0 0.0363 +0 0.1034 +0 0.2839 +0 0.0565 +0 0.2338 +0 0.1267 +0 0.1041 +0 0.1810 +0 0.0368 +0 0.1148 +0 0.2896 +0 0.0832 +0 0.1296 +0 0.0464 +0 0.0711 +0 0.0941 +0 0.7128 +0 0.2186 +0 0.6390 +0 0.0693 +0 0.3421 +0 0.0828 +0 0.0627 +0 0.1065 +0 0.0742 +0 0.2162 +0 0.0606 +0 0.1085 +0 0.5323 +0 0.0518 +0 0.0654 +0 0.1430 +0 0.7389 +0 0.0594 +0 0.0450 +0 0.2197 +0 0.1999 +0 0.1806 +0 0.0654 +0 0.0822 +0 0.0537 +1 0.8682 +0 0.1242 +0 0.0780 +0 0.0834 +0 0.0941 +0 0.0675 +0 0.0823 +0 0.3318 +0 0.0886 +0 0.1963 +0 0.2028 +0 0.0561 +0 0.0631 +0 0.1344 +0 0.0960 +0 0.1357 +0 0.3513 +0 0.2283 +0 0.1420 +0 0.0617 +0 0.0522 +0 0.1332 +0 0.0827 +0 0.1109 +0 0.1333 +0 0.1213 +0 0.0781 +0 0.0506 +0 0.1586 +0 0.1421 +0 0.0793 +0 0.0929 +0 0.1043 +0 0.0699 +0 0.0592 +0 0.1482 +0 0.1477 +0 0.4926 +0 0.1097 +0 0.1022 +0 0.0379 +0 0.1570 +0 0.1447 +0 0.0606 +0 0.0525 +0 0.0919 +0 0.6152 +1 0.8209 +0 0.0689 +0 0.1978 +0 0.0939 +0 0.0989 +0 0.1608 +0 0.0772 +0 0.5186 +0 0.0836 +0 0.1058 +0 0.1987 +0 0.5106 +0 0.2731 +0 0.0518 +0 0.1648 +0 0.0622 +0 0.0744 +0 0.0393 +0 0.0669 +0 0.1768 +0 0.0709 +0 0.1276 +0 0.2897 +0 0.3155 +0 0.1116 +0 0.0429 +0 0.1098 +0 0.0707 +0 0.0742 +0 0.1234 +0 0.1441 +0 0.1713 +0 0.1472 +0 0.0519 +0 0.0685 +0 0.1110 +0 0.1017 +0 0.0994 +0 0.2729 +0 0.0554 +0 0.3189 +0 0.1661 +0 0.1604 +0 0.0745 +0 0.2155 +0 0.0761 +0 0.1108 +0 0.0475 +0 0.3085 +0 0.1215 +0 0.1109 +0 0.1030 +0 0.2996 +1 0.8390 +0 0.1339 +0 0.0779 +0 0.3112 +0 0.0826 +0 0.2458 +0 0.1301 +0 0.1523 +0 0.1430 +0 0.0458 +0 0.0956 +0 0.0467 +0 0.0793 +0 0.1338 +0 0.1877 +0 0.1047 +0 0.0813 +0 0.1205 +0 0.6862 +1 0.7811 +0 0.1029 +0 0.3569 +0 0.0597 +0 0.6179 +0 0.1322 +0 0.0743 +0 0.0377 +0 0.7335 +0 0.2467 +0 0.0723 +0 0.0669 +0 0.3999 +0 0.1781 +0 0.1015 +0 0.3006 +0 0.1086 +0 0.2417 +0 0.1217 +0 0.0693 +0 0.3105 +0 0.0615 +0 0.0804 +0 0.1738 +0 0.1301 +0 0.1415 +0 0.1328 +0 0.1576 +0 0.2985 +0 0.1018 +0 0.1318 +0 0.1381 +0 0.0456 +0 0.1208 +0 0.2120 +0 0.2059 +0 0.0641 +0 0.0987 +0 0.3674 +0 0.1598 +0 0.0904 +0 0.1559 +0 0.2765 +0 0.1147 +0 0.0828 +0 0.1913 +0 0.1234 +0 0.0705 +0 0.0299 +0 0.0808 +0 0.1054 +0 0.0423 +0 0.1211 +0 0.2052 +0 0.1369 +0 0.0535 +0 0.0775 +0 0.1019 +0 0.0471 +0 0.1237 +0 0.1327 +0 0.1217 +0 0.0600 +0 0.1052 +1 0.8580 +1 0.8550 +0 0.1137 +0 0.2794 +0 0.0869 +0 0.2704 +0 0.0506 +0 0.1007 +0 0.0751 +0 0.4339 +0 0.1152 +0 0.0886 +0 0.2776 +0 0.1364 +0 0.1148 +0 0.0639 +0 0.2577 +0 0.1296 +0 0.0705 +0 0.5963 +0 0.7292 +0 0.1017 +0 0.1286 +0 0.0728 +0 0.0813 +0 0.0551 +0 0.4271 +0 0.2441 +0 0.0648 +0 0.0940 +0 0.0904 +0 0.0537 +0 0.2601 +0 0.3544 +0 0.0324 +0 0.0713 +0 0.0696 +0 0.0694 +0 0.0691 +0 0.0594 +0 0.1122 +0 0.0574 +0 0.1141 +0 0.0696 +0 0.4324 +0 0.2472 +0 0.1745 +0 0.1936 +0 0.0671 +0 0.0882 +0 0.0732 +0 0.1150 +0 0.1101 +0 0.0962 +0 0.7378 +0 0.0425 +0 0.1166 +0 0.1176 +0 0.0859 +0 0.1696 +0 0.1329 +0 0.4301 +0 0.1535 +0 0.1146 +0 0.1169 +0 0.0464 +0 0.5264 +0 0.1438 +0 0.1817 +0 0.0960 +0 0.1793 +0 0.0986 +0 0.1757 +0 0.1569 +0 0.0790 +0 0.1380 +0 0.0814 +0 0.0953 +0 0.1518 +0 0.2017 +0 0.3049 +0 0.0835 +0 0.7366 +0 0.0938 +0 0.0916 +0 0.1383 +0 0.1293 +0 0.0823 +1 0.7662 +0 0.1790 +0 0.0944 +0 0.2624 +0 0.0688 +0 0.1096 +0 0.0698 +0 0.0451 +0 0.2059 +0 0.1053 +0 0.0864 +0 0.2496 +0 0.0382 +0 0.1066 +0 0.1824 +0 0.0740 +0 0.0697 +0 0.2172 +0 0.2515 +0 0.1085 +0 0.1002 +0 0.0686 +0 0.0916 +0 0.1404 +0 0.0639 +0 0.1825 +0 0.6423 +0 0.1156 +0 0.0988 +0 0.0759 +0 0.1041 +0 0.1020 +0 0.1248 +0 0.4261 +0 0.0805 +0 0.1041 +0 0.0895 +1 0.8133 +0 0.1142 +0 0.1869 +0 0.1138 +0 0.0970 +0 0.2373 +0 0.3618 +0 0.3171 +0 0.1612 +0 0.1971 +0 0.1199 +0 0.0676 +0 0.0737 +0 0.0353 +0 0.1741 +0 0.0840 +0 0.0782 +0 0.1111 +0 0.0555 +0 0.0806 +0 0.3785 +0 0.1396 +0 0.3020 +0 0.0654 +0 0.4286 +0 0.2578 +0 0.0466 +0 0.5591 +0 0.0873 +1 0.7549 +0 0.0926 +0 0.1324 +0 0.2816 +0 0.0774 +0 0.0888 +0 0.1249 +0 0.3235 +0 0.1430 +0 0.0804 +0 0.0626 +0 0.0573 +0 0.1523 +0 0.0783 +0 0.0790 +0 0.2248 +0 0.0415 +0 0.1908 +0 0.0734 +0 0.1037 +0 0.0703 +0 0.0909 +0 0.1026 +0 0.1921 +0 0.5599 +0 0.1564 +0 0.0642 +0 0.0399 +0 0.0855 +0 0.1329 +0 0.0903 +0 0.1381 +1 0.8696 +0 0.1089 +0 0.0532 +0 0.0796 +0 0.5486 +0 0.0668 +0 0.3487 +0 0.0713 +0 0.0606 +0 0.0579 +0 0.1708 +0 0.3458 +0 0.0602 +0 0.1844 +0 0.0803 +0 0.0606 +0 0.0860 +0 0.0598 +0 0.0805 +0 0.1663 +1 0.8024 +0 0.0543 +0 0.2281 +0 0.0950 +0 0.1087 +0 0.0672 +0 0.0940 +0 0.1184 +0 0.0590 +0 0.1978 +0 0.0604 +0 0.0489 +0 0.2073 +0 0.1276 +0 0.0728 +0 0.0799 +0 0.0721 +0 0.0637 +0 0.2057 +0 0.0590 +0 0.1085 +0 0.1436 +0 0.0981 +0 0.0325 +0 0.1282 +0 0.1289 +0 0.1513 +0 0.0510 +0 0.1445 +0 0.0339 +0 0.1201 +0 0.0873 +0 0.2134 +0 0.1484 +0 0.0614 +0 0.0618 +0 0.0934 +0 0.1058 +1 0.8627 +0 0.7049 +0 0.0503 +0 0.0886 +0 0.1291 +0 0.0941 +0 0.1601 +0 0.1459 +0 0.0519 +0 0.0514 +0 0.0838 +0 0.1257 +0 0.1033 +0 0.0953 +0 0.3710 +0 0.0643 +0 0.2200 +0 0.0945 +0 0.2639 +0 0.0868 +0 0.0530 +0 0.1689 +0 0.2126 +0 0.0564 +0 0.2455 +0 0.0982 +0 0.0550 +0 0.0625 +0 0.0467 +0 0.0742 +0 0.1146 +0 0.0690 +0 0.5585 +0 0.1154 +0 0.0634 +0 0.0943 +0 0.0878 +0 0.0630 +0 0.0620 +0 0.1204 +0 0.1759 +0 0.0800 +0 0.0747 +0 0.1421 +0 0.1017 +0 0.1927 +0 0.1869 +0 0.4383 +0 0.0558 +0 0.1866 +0 0.0317 +0 0.0637 +0 0.1551 +0 0.5606 +0 0.2049 +0 0.0651 +0 0.0916 +0 0.0807 +0 0.1588 +0 0.0852 +0 0.0727 +0 0.0953 +0 0.4994 +0 0.0550 +0 0.4687 +0 0.1666 +0 0.1634 +0 0.0808 +0 0.0714 +0 0.1832 +0 0.0517 +1 0.7841 +0 0.6725 +0 0.1325 +0 0.1838 +0 0.0982 +0 0.0515 +0 0.1069 +0 0.1863 +0 0.0760 +0 0.3071 +0 0.1741 +0 0.0630 +0 0.1687 +0 0.1028 +0 0.3255 +0 0.1609 +0 0.0332 +0 0.0842 +0 0.1102 +0 0.1512 +0 0.0847 +0 0.2817 +0 0.0745 +0 0.0855 +0 0.1665 +0 0.1095 +0 0.1119 +0 0.0544 +0 0.0774 +0 0.0764 +0 0.0650 +0 0.0903 +0 0.6798 +0 0.2341 +0 0.0381 +0 0.1123 +0 0.0673 +0 0.2664 +0 0.0411 +0 0.1155 +0 0.1162 +0 0.1125 +0 0.0761 +0 0.0603 +0 0.1325 +0 0.1125 +0 0.5230 +0 0.0993 +0 0.1445 +0 0.1376 +0 0.0699 +0 0.1268 +0 0.1887 +0 0.1383 +0 0.1273 +0 0.1125 +0 0.0823 +0 0.3440 +0 0.1219 +0 0.1647 +0 0.2123 +0 0.0550 +0 0.0512 +0 0.0843 +0 0.5072 +0 0.0609 +0 0.1277 +0 0.1419 +0 0.1351 +0 0.0869 +0 0.0667 +0 0.0736 +0 0.0690 +0 0.0740 +0 0.7241 +0 0.0502 +0 0.1034 +0 0.0834 +0 0.0858 +0 0.1000 +0 0.0608 +0 0.0977 +0 0.0727 +0 0.2095 +0 0.1147 +0 0.1424 +0 0.1060 +0 0.0761 +0 0.2112 +0 0.1751 +0 0.0586 +0 0.3381 +0 0.0889 +1 0.7775 +0 0.0955 +0 0.1624 +0 0.1039 +0 0.1177 +0 0.2747 +0 0.0552 +0 0.0496 +0 0.0832 +0 0.0727 +0 0.0761 +0 0.2390 +0 0.0765 +0 0.1503 +0 0.0938 +0 0.0639 +0 0.0731 +0 0.0587 +0 0.1045 +0 0.1885 +0 0.0757 +0 0.1286 +0 0.1179 +0 0.2526 +0 0.1546 +0 0.0931 +0 0.1632 +0 0.0780 +0 0.0831 +0 0.0853 +0 0.1955 +0 0.0890 +0 0.1086 +0 0.0829 +0 0.0558 +0 0.0840 +0 0.1616 +0 0.0960 +0 0.0792 +0 0.1150 +0 0.0935 +0 0.0632 +0 0.1863 +0 0.0610 +0 0.0979 +0 0.0458 +0 0.0747 +0 0.0770 +0 0.0755 +0 0.0895 +0 0.0728 +0 0.1159 +0 0.0628 +0 0.0630 +0 0.2332 +0 0.1157 +0 0.0748 +0 0.1144 +0 0.1576 +0 0.1160 +0 0.0478 +0 0.0620 +0 0.0683 +0 0.1469 +0 0.4496 +0 0.1296 +0 0.0494 +0 0.0360 +0 0.2392 +0 0.2859 +0 0.0842 +0 0.0732 +0 0.1692 +0 0.1290 +0 0.0688 +0 0.1042 +0 0.0588 +0 0.3258 +0 0.1989 +0 0.1280 +0 0.1021 +1 0.7960 +0 0.0619 +0 0.0410 +0 0.0474 +0 0.1153 +0 0.0675 +0 0.1445 +0 0.0636 +0 0.0649 +0 0.1561 +0 0.2953 +0 0.1025 +0 0.7166 +0 0.1036 +0 0.0642 +0 0.4752 +0 0.1830 +0 0.0698 +0 0.0956 +0 0.0981 +0 0.5987 +0 0.0713 +0 0.4289 +0 0.1468 +0 0.1201 +0 0.1893 +0 0.0709 +0 0.0694 +0 0.0697 +0 0.0789 +0 0.3295 +0 0.0589 +1 0.7659 +0 0.0739 +0 0.0879 +0 0.0391 +0 0.1136 +0 0.0850 +0 0.0906 +0 0.0446 +0 0.4622 +0 0.2174 +0 0.0892 +0 0.0688 +0 0.2222 +0 0.0682 +0 0.0627 +0 0.0944 +0 0.0572 +0 0.2008 +0 0.0705 +0 0.0565 +0 0.0722 +0 0.3310 +0 0.1317 +0 0.0606 +0 0.0809 +0 0.1071 +0 0.0767 +0 0.1422 +0 0.0680 +1 0.7705 +0 0.2745 +0 0.1265 +0 0.0747 +0 0.1151 +0 0.0839 +0 0.1733 +0 0.1628 +0 0.0797 +0 0.1054 +0 0.1141 +0 0.0928 +0 0.0559 +0 0.1130 +0 0.0688 +0 0.1022 +0 0.1703 +0 0.0875 +0 0.3387 +0 0.0375 +0 0.1450 +0 0.0963 +0 0.0863 +0 0.0854 +0 0.0594 +0 0.0796 +0 0.1289 +0 0.1193 +0 0.0613 +0 0.0819 +0 0.0451 +0 0.0694 +0 0.0977 +0 0.1395 +0 0.1379 +0 0.1339 +0 0.1225 +0 0.0933 +0 0.0489 +0 0.0710 +0 0.0542 +0 0.1272 +0 0.1216 +0 0.1325 +0 0.5616 +0 0.1282 +0 0.1923 +0 0.0648 +0 0.1785 +0 0.0954 +0 0.1362 +0 0.0909 +0 0.1010 +0 0.0606 +0 0.1083 +0 0.1094 +0 0.1316 +0 0.0558 +0 0.1874 +0 0.1408 +0 0.0772 +0 0.1594 +0 0.1289 +0 0.0645 +0 0.0947 +0 0.1803 +0 0.1162 +0 0.0900 +0 0.0998 +0 0.1062 +0 0.0728 +0 0.0650 +0 0.0853 +0 0.0746 +0 0.1483 +0 0.1320 +0 0.0597 +0 0.0661 +0 0.0707 +0 0.1530 +0 0.1198 +0 0.1259 +0 0.0850 +0 0.6434 +0 0.0649 +0 0.1031 +0 0.1240 +0 0.0773 +0 0.1852 +0 0.1031 +0 0.0668 +0 0.1292 +0 0.1794 +0 0.0870 +0 0.3053 +0 0.1883 +0 0.1239 +0 0.2645 +0 0.6784 +0 0.1619 +0 0.2674 +0 0.6160 +0 0.1298 +0 0.1089 +0 0.0824 +0 0.3718 +0 0.0814 +0 0.1021 +0 0.0890 +0 0.1448 +0 0.0758 +0 0.0950 +0 0.1206 +0 0.0929 +0 0.1184 +0 0.0833 +0 0.2184 +0 0.0961 +0 0.0979 +0 0.0424 +0 0.0999 +0 0.0636 +0 0.1196 +0 0.1203 +0 0.1088 +0 0.0798 +0 0.2155 +0 0.0613 +0 0.1096 +0 0.2035 +0 0.1730 +0 0.2058 +0 0.1045 +0 0.1534 +0 0.1118 +0 0.0824 +0 0.0468 +0 0.0521 +0 0.0677 +0 0.2865 +0 0.0792 +0 0.0785 +0 0.2769 +0 0.1626 +0 0.1477 +0 0.1092 +0 0.0751 +0 0.0346 +0 0.0566 +0 0.0587 +0 0.1329 +0 0.5262 +0 0.0735 +1 0.7892 +0 0.1229 +0 0.2193 +0 0.0430 +0 0.0684 +0 0.0758 +0 0.0723 +0 0.0530 +0 0.1150 +0 0.0763 +0 0.1043 +0 0.5791 +0 0.0935 +0 0.0939 +0 0.0870 +0 0.1376 +0 0.1556 +0 0.1245 +0 0.1674 +0 0.2021 +0 0.0584 +0 0.1535 +0 0.0806 +0 0.0661 +0 0.1021 +0 0.0609 +0 0.2378 +0 0.0738 +0 0.0673 +0 0.0571 +0 0.0527 +0 0.0872 +0 0.2098 +0 0.1093 +0 0.0463 +0 0.1532 +0 0.1417 +0 0.1154 +0 0.0698 +0 0.1044 +0 0.2015 +0 0.4654 +0 0.0683 +0 0.0448 +0 0.0411 +0 0.1189 +0 0.1088 +0 0.1078 +0 0.0818 +0 0.0636 +0 0.1360 +0 0.2238 +0 0.1833 +0 0.0713 +0 0.0725 +0 0.3058 +0 0.1234 +0 0.1514 +0 0.0972 +0 0.3085 +0 0.0429 +0 0.1530 +0 0.0600 +0 0.6628 +0 0.1070 +0 0.0393 +0 0.1065 +0 0.0612 +0 0.0573 +0 0.1170 +0 0.0848 +0 0.1746 +0 0.1689 +0 0.2093 +0 0.0488 +0 0.2114 +0 0.0713 +0 0.0570 +0 0.0764 +0 0.0740 +0 0.0875 +0 0.1680 +0 0.0621 +0 0.0576 +0 0.1780 +0 0.1191 +0 0.0382 +0 0.1899 +0 0.0969 +0 0.0745 +0 0.0461 +0 0.6940 +0 0.6945 +0 0.1806 +0 0.0514 +0 0.2555 +0 0.0965 +0 0.0382 +0 0.0875 +0 0.2157 +0 0.4176 +0 0.0529 +0 0.1364 +0 0.1965 +1 0.7712 +0 0.1533 +0 0.0888 +0 0.3486 +0 0.0663 +0 0.0853 +0 0.1013 +0 0.1212 +0 0.0680 +0 0.0706 +0 0.0460 +0 0.0771 +0 0.1826 +0 0.0842 +1 0.7894 +0 0.0794 +0 0.1845 +0 0.5255 +0 0.1034 +0 0.3444 +0 0.0582 +0 0.0634 +0 0.0447 +0 0.1630 +0 0.0955 +0 0.0889 +0 0.1059 +0 0.0593 +0 0.1431 +0 0.1670 +0 0.1508 +0 0.0518 +0 0.0511 +0 0.1283 +0 0.1092 +0 0.1309 +0 0.0515 +0 0.1096 +0 0.0873 +0 0.0859 +0 0.3587 +0 0.1426 +0 0.0677 +0 0.0483 +0 0.0839 +0 0.0770 +0 0.0823 +0 0.1305 +0 0.1236 +0 0.1713 +0 0.0521 +0 0.1187 +0 0.1688 +0 0.7011 +0 0.0819 +0 0.1184 +0 0.0379 +0 0.0740 +0 0.0907 +0 0.1002 +0 0.5069 +0 0.1213 +0 0.0411 +0 0.0929 +0 0.4488 +0 0.1472 +0 0.1107 +0 0.1182 +0 0.0904 +0 0.1529 +0 0.0575 +0 0.1712 +0 0.1056 +0 0.3464 +0 0.1162 +0 0.6292 +0 0.0752 +0 0.0877 +0 0.1931 +0 0.0899 +0 0.0916 +0 0.1720 +0 0.4856 +0 0.0424 +0 0.0861 +0 0.0502 +0 0.0650 +0 0.0351 +0 0.1333 +0 0.2224 +0 0.0550 +0 0.0916 +0 0.1253 +0 0.1385 +0 0.2078 +0 0.2122 +0 0.0753 +0 0.2397 +0 0.1544 +0 0.1247 +0 0.1195 +0 0.0997 +0 0.0393 +0 0.1243 +0 0.1256 +0 0.2269 +0 0.0480 +0 0.1213 +0 0.1056 +0 0.1534 +0 0.0880 +0 0.0412 +0 0.0623 +0 0.2732 +0 0.0876 +0 0.1173 +0 0.1068 +0 0.0571 +0 0.2104 +0 0.1182 +0 0.1226 +0 0.6066 +0 0.0787 +0 0.6671 +0 0.0550 +0 0.1870 +0 0.0748 +0 0.3649 +0 0.1054 +0 0.2216 +0 0.1850 +0 0.1391 +0 0.0506 +0 0.1726 +0 0.0448 +0 0.0847 +0 0.0706 +0 0.2847 +0 0.0842 +0 0.1487 +0 0.1089 +0 0.1938 +0 0.0657 +0 0.2895 +0 0.0992 +0 0.0956 +0 0.1061 +0 0.1233 +0 0.0419 +0 0.3409 +0 0.0876 +0 0.1004 +0 0.0907 +0 0.1128 +0 0.1027 +0 0.0894 +0 0.1252 +0 0.1706 +0 0.1067 +0 0.6112 +0 0.1395 +0 0.1592 +0 0.1592 +0 0.1684 +0 0.1090 +0 0.2141 +0 0.1421 +0 0.0616 +0 0.0875 +0 0.1892 +0 0.1968 +0 0.0680 +0 0.1600 +0 0.0642 +0 0.1951 +0 0.7193 +0 0.4629 +0 0.0801 +0 0.0766 +0 0.0812 +0 0.0714 +0 0.0578 +0 0.1534 +0 0.1952 +0 0.1502 +0 0.1207 +0 0.0602 +0 0.0408 +0 0.0755 +0 0.0782 +0 0.1165 +0 0.0529 +0 0.0380 +0 0.1901 +0 0.0981 +0 0.2412 +0 0.0724 +0 0.0894 +0 0.1439 +0 0.1134 +0 0.1433 +0 0.1960 +0 0.1095 +0 0.1936 +0 0.0991 +0 0.1074 +0 0.1366 +0 0.1131 +0 0.3626 +0 0.1034 +0 0.1229 +0 0.0672 +0 0.2397 +0 0.1094 +0 0.1153 +0 0.0740 +0 0.1314 +0 0.1629 +0 0.0883 +0 0.0599 +0 0.1442 +0 0.2119 +0 0.0634 +0 0.0865 +0 0.1340 +0 0.1212 +0 0.0893 +0 0.1631 +0 0.0642 +0 0.6090 +0 0.0796 +0 0.0701 +0 0.0443 +0 0.1198 +0 0.0548 +0 0.3678 +0 0.1100 +0 0.0771 +0 0.1278 +0 0.0639 +0 0.1477 +0 0.1807 +0 0.4370 +0 0.0481 +0 0.2157 +0 0.1287 +0 0.0498 +0 0.1136 +0 0.1274 +0 0.1735 +0 0.2221 +0 0.0777 +0 0.0601 +0 0.2507 +0 0.1167 +0 0.0695 +0 0.2186 +0 0.6960 +0 0.1159 +0 0.0527 +0 0.1269 +0 0.1073 +0 0.0729 +0 0.4184 +0 0.1051 +0 0.1622 +0 0.0546 +0 0.0913 +0 0.1860 +0 0.1111 +0 0.1125 +0 0.0675 +0 0.0703 +0 0.6997 +0 0.2032 +0 0.1633 +0 0.2028 +0 0.1126 +0 0.1173 +0 0.2418 +0 0.0849 +0 0.0403 +0 0.0544 +0 0.5618 +0 0.0821 +0 0.0863 +0 0.2505 +0 0.0845 +1 0.8242 +0 0.0915 +0 0.1218 +0 0.1106 +0 0.1233 +0 0.1730 +0 0.3005 +0 0.0708 +0 0.1838 +0 0.0497 +0 0.2789 +0 0.0750 +0 0.0900 +0 0.2060 +0 0.3977 +0 0.5219 +0 0.1042 +0 0.0436 +1 0.7759 +0 0.0401 +0 0.1444 +0 0.0460 +0 0.1588 +0 0.0737 +0 0.0827 +0 0.1844 +0 0.2952 +0 0.0791 +0 0.0959 +0 0.1765 +0 0.1728 +0 0.3474 +0 0.1744 +0 0.1686 +0 0.1229 +1 0.7582 +0 0.3427 +0 0.0725 +0 0.1166 +0 0.0880 +0 0.2081 +0 0.1359 +0 0.2394 +0 0.1224 +0 0.0939 +0 0.4716 +0 0.0666 +0 0.1478 +0 0.0841 +0 0.1519 +0 0.0684 +0 0.6553 +0 0.0390 +0 0.1014 +0 0.0933 +0 0.0863 +0 0.0682 +0 0.1194 +0 0.2687 +0 0.2110 +0 0.0962 +0 0.1420 +0 0.0708 +0 0.1164 +0 0.4520 +0 0.3924 +0 0.4052 +0 0.0794 +0 0.1155 +0 0.0751 +0 0.1547 +0 0.2177 +0 0.0432 +0 0.1310 +0 0.0448 +0 0.1072 +0 0.0608 +0 0.0726 +0 0.0813 +0 0.3774 +0 0.1204 +0 0.1141 +0 0.0819 +0 0.5049 +0 0.4427 +0 0.1135 +0 0.1054 +0 0.0840 +0 0.1644 +0 0.1212 +0 0.1478 +0 0.1180 +0 0.0682 +0 0.2397 +0 0.0769 +0 0.1092 +0 0.1277 +0 0.0750 +0 0.0452 +0 0.5906 +0 0.1576 +0 0.0988 +0 0.0601 +0 0.0688 +0 0.0971 +0 0.0714 +0 0.0794 +0 0.0805 +1 0.7968 +0 0.0674 +0 0.2166 +0 0.1343 +0 0.1228 +0 0.4053 +0 0.3406 +0 0.1156 +1 0.7625 +0 0.0634 +0 0.1210 +0 0.1034 +0 0.1914 +0 0.2122 +0 0.0338 +0 0.0570 +0 0.1033 +0 0.1192 +0 0.1768 +0 0.2017 +0 0.2671 +0 0.0812 +0 0.1182 +0 0.1338 +0 0.1536 +0 0.0639 +0 0.0728 +0 0.1667 +0 0.0839 +0 0.0736 +0 0.0463 +0 0.3367 +0 0.1427 +0 0.2005 +0 0.6497 +0 0.4443 +0 0.0659 +0 0.1032 +0 0.0516 +0 0.1786 +0 0.0963 +0 0.0898 +0 0.0653 +0 0.2328 +0 0.3272 +0 0.0852 +0 0.1391 +0 0.1580 +0 0.2180 +0 0.0997 +0 0.1516 +0 0.1445 +0 0.0835 +0 0.1095 +0 0.1183 +0 0.0820 +0 0.0852 +0 0.1081 +0 0.0987 +0 0.1087 +0 0.0646 +0 0.1149 +0 0.1355 +0 0.1546 +0 0.1046 +0 0.3618 +0 0.2155 +0 0.0932 +0 0.1088 +0 0.0728 +0 0.0666 +0 0.0578 +0 0.0465 +0 0.1589 +0 0.1178 +0 0.0516 +0 0.0689 +0 0.0520 +0 0.3768 +0 0.0754 +0 0.0390 +0 0.1540 +0 0.2520 +0 0.3938 +0 0.0850 +0 0.1537 +0 0.0490 +0 0.0921 +0 0.2537 +0 0.0840 +0 0.6838 +0 0.0846 +0 0.1043 +0 0.0994 +0 0.4968 +0 0.1300 +0 0.3030 +0 0.2807 +0 0.0834 +0 0.1679 +0 0.0747 +0 0.0932 +0 0.0871 +0 0.1001 +0 0.1259 +0 0.1420 +0 0.4228 +0 0.0635 +0 0.0475 +0 0.0965 +0 0.0445 +0 0.0610 +0 0.1861 +0 0.0779 +0 0.0690 +0 0.1706 +0 0.0724 +0 0.1802 +0 0.0344 +0 0.1848 +0 0.0627 +0 0.3130 +0 0.0399 +0 0.6297 +0 0.0499 +0 0.1595 +0 0.1572 +0 0.4074 +0 0.1633 +0 0.1531 +0 0.1923 +0 0.0810 +0 0.0639 +0 0.1662 +0 0.0955 +0 0.0968 +0 0.1070 +0 0.1070 +0 0.2124 +0 0.1778 +0 0.0572 +0 0.0685 +0 0.1914 +0 0.0485 +0 0.0560 +0 0.0806 +0 0.0578 +0 0.1088 +0 0.0882 +0 0.0632 +0 0.0993 +0 0.1283 +0 0.0649 +0 0.3391 +0 0.0925 +0 0.0503 +0 0.0914 +0 0.0738 +0 0.0486 +0 0.0783 +0 0.0546 +0 0.0651 +0 0.1169 +0 0.2728 +0 0.0783 +0 0.1823 +0 0.0520 +0 0.0888 +0 0.0565 +0 0.0941 +0 0.0750 +0 0.1228 +0 0.1559 +0 0.0790 +0 0.1263 +0 0.0886 +0 0.2671 +0 0.0610 +0 0.0748 +0 0.0968 +0 0.0457 +0 0.1270 +0 0.0734 +0 0.0601 +0 0.1682 +0 0.0874 +0 0.1354 +0 0.1215 +0 0.0797 +0 0.3214 +0 0.0402 +0 0.0914 +0 0.3531 +0 0.0573 +0 0.1257 +0 0.1235 +0 0.0906 +0 0.0548 +0 0.0661 +0 0.2148 +0 0.1721 +1 0.8358 +0 0.0907 +0 0.0551 +0 0.2422 +0 0.2109 +0 0.3516 +0 0.0876 +0 0.0752 +0 0.2248 +0 0.0852 +0 0.1236 +0 0.0530 +0 0.5264 +0 0.1196 +0 0.0799 +0 0.0472 +0 0.0593 +0 0.1032 +0 0.1457 +0 0.0813 +0 0.0637 +0 0.0652 +0 0.0990 +0 0.1059 +0 0.1320 +0 0.0463 +0 0.1570 +0 0.1261 +0 0.0443 +0 0.0705 +0 0.1912 +0 0.1988 +0 0.0591 +0 0.1317 +0 0.1198 +0 0.1033 +0 0.0701 +0 0.1151 +0 0.0759 +1 0.7574 +0 0.1023 +0 0.4142 +0 0.3809 +0 0.1269 +0 0.0364 +0 0.3415 +0 0.1062 +0 0.1900 +0 0.0729 +0 0.2465 +0 0.0859 +0 0.0678 +0 0.0709 +0 0.2873 +0 0.0428 +0 0.0755 +0 0.2760 +0 0.0970 +0 0.0626 +0 0.1523 +0 0.1283 +0 0.1610 +0 0.1236 +0 0.1069 +0 0.4870 +0 0.0936 +0 0.0705 +0 0.0768 +0 0.0635 +0 0.0756 +0 0.0614 +0 0.0954 +0 0.2581 +0 0.1378 +0 0.1633 +0 0.0538 +0 0.0707 +0 0.1563 +0 0.1014 +0 0.1482 +0 0.2040 +0 0.1117 +0 0.1081 +0 0.0544 +0 0.1728 +0 0.1483 +0 0.0449 +0 0.0873 +0 0.1822 +0 0.2920 +0 0.0334 +0 0.1225 +0 0.1184 +0 0.1563 +0 0.1854 +0 0.1519 +0 0.1748 +0 0.2044 +0 0.0541 +0 0.0410 +0 0.1614 +0 0.0760 +0 0.0780 +0 0.2168 +0 0.1097 +0 0.0709 +0 0.1809 +0 0.0603 +0 0.0965 +1 0.7979 +0 0.2353 +0 0.2834 +0 0.1080 +0 0.6967 +0 0.1935 +0 0.0603 +0 0.0953 +0 0.1714 +0 0.2066 +0 0.0818 +0 0.0657 +0 0.6683 +0 0.0889 +0 0.0639 +0 0.7418 +0 0.0889 +0 0.0855 +0 0.0512 +0 0.2986 +0 0.1482 +0 0.1775 +0 0.0416 +0 0.1061 +0 0.1515 +0 0.0823 +0 0.1468 +0 0.4256 +0 0.0783 +0 0.0821 +0 0.0914 +0 0.0969 +0 0.1258 +0 0.1060 +0 0.1550 +0 0.0519 +0 0.1303 +0 0.0982 +0 0.1457 +0 0.1183 +0 0.1244 +0 0.2417 +0 0.3991 +0 0.0905 +0 0.1050 +0 0.0879 +0 0.1307 +0 0.1133 +0 0.1162 +0 0.1045 +0 0.0671 +0 0.2308 +0 0.0731 +0 0.1284 +0 0.0543 +0 0.1242 +0 0.0951 +0 0.1277 +0 0.1299 +0 0.0448 +0 0.0945 +0 0.1432 +0 0.1130 +0 0.0834 +0 0.0789 +0 0.0817 +0 0.0770 +0 0.0985 +0 0.0802 +0 0.0554 +0 0.0621 +0 0.0914 +0 0.0828 +0 0.1058 +0 0.0812 +0 0.0797 +0 0.3540 +0 0.6254 +0 0.1047 +0 0.0857 +0 0.1267 +0 0.1416 +0 0.2601 +0 0.6109 +0 0.0834 +0 0.0848 +0 0.1074 +0 0.0963 +0 0.0620 +0 0.1808 +0 0.0677 +0 0.1996 +0 0.1030 +0 0.6651 +0 0.1648 +0 0.0786 +0 0.1113 +0 0.0881 +0 0.0827 +0 0.1812 +0 0.0643 +0 0.0553 +0 0.2662 +0 0.1002 +0 0.1338 +0 0.1343 +0 0.0775 +0 0.3116 +0 0.0300 +0 0.2188 +0 0.0477 +0 0.0398 +0 0.1371 +0 0.1299 +0 0.0830 +0 0.1469 +0 0.2015 +0 0.0954 +0 0.1028 +0 0.0815 +0 0.0616 +0 0.1825 +0 0.1358 +0 0.1163 +0 0.0690 +0 0.3112 +0 0.1150 +0 0.0601 +0 0.2606 +0 0.1883 +0 0.0574 +0 0.2027 +0 0.2345 +0 0.0520 +0 0.1232 +0 0.0890 +0 0.2426 +0 0.1076 +0 0.0424 +0 0.1412 +0 0.0388 +0 0.0410 +0 0.0789 +0 0.1443 +0 0.0810 +0 0.0777 +0 0.3810 +0 0.1258 +0 0.2637 +0 0.2003 +0 0.0725 +0 0.1746 +0 0.0634 +0 0.0836 +0 0.0889 +0 0.0878 +0 0.0625 +0 0.0561 +0 0.1157 +0 0.0583 +0 0.2090 +0 0.0823 +0 0.2454 +0 0.1908 +0 0.3017 +0 0.1158 +0 0.1555 +0 0.1050 +0 0.0841 +0 0.0784 +0 0.1671 +0 0.0691 +0 0.0660 +0 0.2397 +0 0.1113 +0 0.1017 +0 0.1461 +0 0.0756 +0 0.2008 +0 0.0847 +0 0.3695 +0 0.0673 +0 0.0461 +0 0.0949 +0 0.2324 +0 0.6833 +0 0.0806 +0 0.1971 +0 0.0855 +0 0.0904 +0 0.4694 +0 0.1361 +0 0.1293 +0 0.1498 +0 0.0548 +0 0.0476 +0 0.0891 +0 0.0699 +0 0.3197 +0 0.2420 +0 0.0676 +0 0.1025 +0 0.3219 +0 0.1236 +0 0.3096 +0 0.0504 +1 0.7646 +0 0.3202 +0 0.1118 +0 0.0466 +0 0.4056 +0 0.0862 +0 0.1022 +0 0.1376 +0 0.1102 +1 0.8098 +0 0.1975 +0 0.0566 +0 0.1354 +0 0.1519 +0 0.1263 +0 0.0856 +0 0.0736 +0 0.2009 +0 0.1471 +0 0.2537 +0 0.3680 +0 0.0816 +0 0.1174 +0 0.4751 +0 0.1428 +0 0.0690 +0 0.1125 +0 0.1366 +0 0.0903 +0 0.1495 +0 0.1462 +0 0.0673 +0 0.0800 +0 0.3416 +0 0.0659 +0 0.2183 +0 0.0512 +0 0.2164 +0 0.0897 +0 0.1425 +0 0.4814 +0 0.1761 +0 0.3493 +0 0.1398 +0 0.2609 +0 0.2122 +0 0.1751 +0 0.0851 +0 0.3141 +0 0.1047 +0 0.1650 +0 0.0775 +0 0.0351 +0 0.4691 +0 0.1352 +0 0.1304 +0 0.6914 +0 0.1099 +0 0.0914 +0 0.0990 +0 0.1496 +0 0.1750 +0 0.1238 +0 0.0473 +0 0.0671 +0 0.1687 +0 0.1049 +0 0.0984 +0 0.0496 +0 0.2224 +0 0.0445 +0 0.0439 +0 0.0778 +0 0.1035 +0 0.0369 +0 0.0768 +0 0.0601 +0 0.0837 +0 0.1024 +0 0.0417 +0 0.2146 +0 0.0850 +1 0.8030 +0 0.1056 +0 0.2963 +0 0.2040 +0 0.2699 +0 0.1263 +0 0.3528 +0 0.0438 +0 0.0506 +0 0.0764 +0 0.6087 +0 0.0525 +0 0.0612 +0 0.2101 +0 0.0913 +0 0.0501 +0 0.0951 +0 0.0432 +0 0.3269 +0 0.1337 +0 0.4226 +0 0.1142 +1 0.8466 +0 0.1095 +0 0.0393 +0 0.1277 +0 0.1467 +0 0.1683 +0 0.0739 +0 0.1152 +0 0.2489 +0 0.1059 +0 0.0443 +0 0.0757 +0 0.0446 +0 0.0700 +1 0.9025 +0 0.0427 +0 0.1685 +0 0.1242 +0 0.1256 +0 0.0872 +0 0.0733 +0 0.3087 +0 0.1747 +0 0.0779 +0 0.1434 +0 0.0685 +0 0.1349 +0 0.2039 +0 0.1952 +0 0.1213 +0 0.2703 +0 0.0759 +0 0.1998 +0 0.0406 +0 0.1425 +0 0.0561 +0 0.0656 +0 0.1611 +0 0.1407 +0 0.0650 +0 0.0590 +0 0.0547 +0 0.1782 +0 0.0570 +0 0.0534 +0 0.0954 +0 0.1298 +0 0.0543 +0 0.0654 +0 0.1690 +0 0.0730 +0 0.2831 +0 0.1427 +0 0.0687 +0 0.0504 +0 0.0735 +1 0.7754 +0 0.0846 +0 0.0530 +0 0.0879 +0 0.1144 +0 0.3093 +0 0.1315 +0 0.0866 +1 0.7885 +0 0.0806 +0 0.2719 +0 0.0742 +0 0.0738 +0 0.1465 +0 0.0567 +0 0.1729 +0 0.1162 +0 0.2344 +0 0.1191 +0 0.0694 +0 0.5889 +0 0.1123 +0 0.0907 +0 0.3100 +0 0.0624 +0 0.1958 +0 0.1400 +0 0.0663 +0 0.1381 +0 0.1888 +0 0.1047 +0 0.2742 +0 0.0652 +0 0.2114 +0 0.2118 +0 0.1088 +0 0.0895 +1 0.7607 +0 0.0966 +0 0.0832 +0 0.4873 +0 0.0925 +0 0.2925 +0 0.0880 +0 0.1154 +0 0.1648 +0 0.1983 +0 0.0788 +0 0.0440 +0 0.0413 +0 0.0420 +0 0.2298 +0 0.0999 +0 0.1221 +0 0.2005 +0 0.1850 +0 0.1535 +0 0.0466 +0 0.0836 +0 0.1281 +0 0.1296 +0 0.1112 +0 0.0614 +0 0.1119 +0 0.1970 +0 0.1588 +0 0.2409 +0 0.1087 +0 0.0830 +0 0.0710 +0 0.1618 +0 0.0470 +0 0.1178 +0 0.6995 +0 0.1171 +0 0.3374 +0 0.0586 +0 0.2154 +0 0.1470 +0 0.0889 +0 0.1844 +0 0.0722 +0 0.1286 +0 0.0941 +0 0.1178 +0 0.1763 +0 0.0611 +0 0.0758 +0 0.1250 +0 0.1435 +0 0.1035 +0 0.1407 +0 0.3339 +1 0.8294 +0 0.2620 +0 0.1307 +0 0.1108 +0 0.0664 +0 0.0574 +0 0.1408 +0 0.0760 +0 0.0683 +0 0.1931 +0 0.0907 +0 0.0877 +0 0.0429 +0 0.2012 +0 0.2257 +0 0.1437 +0 0.1331 +0 0.0889 +0 0.3193 +0 0.3419 +0 0.2300 +0 0.1663 +0 0.0790 +0 0.0583 +0 0.0547 +0 0.1207 +0 0.0469 +0 0.1326 +0 0.0697 +0 0.1829 +0 0.1205 +0 0.0367 +0 0.1631 +0 0.1196 +0 0.1405 +0 0.7177 +0 0.1471 +0 0.0941 +0 0.6832 +0 0.0642 +0 0.1121 +0 0.0804 +0 0.0310 +0 0.1308 +0 0.0926 +0 0.0758 +0 0.0870 +0 0.0850 +0 0.1132 +0 0.1525 +0 0.0628 +0 0.0845 +1 0.7688 +0 0.0660 +0 0.1319 +0 0.0686 +0 0.1216 +0 0.1237 +1 0.8083 +0 0.1583 +1 0.8709 +0 0.0570 +0 0.0793 +0 0.0670 +0 0.0365 +0 0.7483 +0 0.0764 +0 0.1127 +0 0.0530 +0 0.1164 +0 0.1997 +0 0.0694 +0 0.1351 +0 0.2750 +0 0.1270 +0 0.0722 +0 0.2801 +0 0.1184 +0 0.2161 +0 0.7492 +0 0.1055 +0 0.0980 +0 0.4545 +0 0.0705 +0 0.1769 +0 0.1665 +0 0.0657 +0 0.1520 +0 0.0944 +0 0.0476 +0 0.0768 +0 0.0553 +0 0.1843 +0 0.0491 +1 0.8055 +0 0.1573 +0 0.1948 +0 0.1578 +0 0.0843 +0 0.1167 +0 0.0688 +0 0.1150 +0 0.1091 +0 0.0825 +0 0.2191 +0 0.0579 +0 0.0464 +0 0.1566 +0 0.0764 +0 0.1635 +0 0.1103 +0 0.2456 +0 0.2220 +0 0.0756 +0 0.1088 +0 0.3419 +0 0.0693 +0 0.0499 +0 0.1562 +0 0.0978 +0 0.1224 +0 0.0998 +0 0.0556 +0 0.3435 +0 0.0682 +0 0.0660 +0 0.1213 +0 0.1260 +0 0.0934 +0 0.0741 +0 0.0966 +0 0.0686 +0 0.1087 +0 0.1381 +0 0.0604 +0 0.1180 +0 0.4203 +0 0.0478 +0 0.1566 +0 0.0985 +0 0.1215 +0 0.0302 +0 0.0833 +0 0.0436 +0 0.1878 +0 0.0678 +0 0.0675 +0 0.0815 +0 0.3725 +0 0.1249 +0 0.0508 +0 0.1865 +0 0.3082 +0 0.3725 +0 0.3042 +0 0.0545 +0 0.3216 +0 0.1715 +0 0.0615 +0 0.0744 +0 0.1251 +0 0.1819 +0 0.0725 +0 0.0610 +0 0.1460 +0 0.0956 +0 0.0971 +0 0.0451 +0 0.0377 +0 0.1051 +0 0.1383 +0 0.2199 +0 0.0595 +0 0.1462 +0 0.0648 +0 0.3268 +0 0.0926 +0 0.1687 +0 0.2532 +0 0.0725 +0 0.0404 +1 0.7665 +0 0.2753 +0 0.1585 +0 0.0840 +0 0.1834 +0 0.1524 +0 0.2981 +0 0.2293 +0 0.1869 +0 0.1196 +0 0.0499 +0 0.1687 +0 0.0818 +0 0.0615 +0 0.4364 +0 0.0697 +0 0.0784 +0 0.0607 +0 0.4893 +0 0.1342 +0 0.1204 +0 0.2988 +0 0.0994 +0 0.0868 +0 0.1018 +0 0.2684 +0 0.0841 +0 0.0758 +0 0.0771 +0 0.1695 +0 0.1113 +0 0.0438 +0 0.0984 +0 0.0819 +0 0.1381 +0 0.1624 +0 0.2855 +0 0.0898 +0 0.3895 +0 0.2363 +0 0.0438 +0 0.0726 +0 0.3569 +0 0.1862 +0 0.6544 +0 0.1351 +0 0.0519 +0 0.5982 +1 0.8324 +0 0.1274 +0 0.0754 +0 0.1982 +0 0.1254 +0 0.1003 +0 0.1708 +0 0.1145 +0 0.3167 +0 0.0848 +0 0.0860 +0 0.0745 +0 0.0480 +0 0.0502 +1 0.7997 +0 0.2432 +0 0.1932 +0 0.0552 +0 0.4337 +0 0.0476 +0 0.0358 +0 0.1169 +0 0.0596 +0 0.1524 +0 0.0680 +0 0.1216 +0 0.1347 +0 0.0677 +0 0.2287 +0 0.2333 +0 0.1269 +0 0.1912 +0 0.0639 +0 0.6850 +0 0.0619 +0 0.0868 +0 0.1414 +0 0.1099 +0 0.0900 +0 0.2067 +0 0.1066 +0 0.0699 +0 0.0583 +0 0.0770 +0 0.1094 +0 0.0717 +0 0.1550 +0 0.0833 +0 0.5464 +0 0.0787 +0 0.1178 +0 0.1640 +0 0.0581 +1 0.8185 +0 0.0789 +0 0.0487 +0 0.0724 +0 0.0956 +0 0.0789 +0 0.0698 +0 0.1934 +0 0.3646 +0 0.0981 +0 0.0861 +0 0.3833 +0 0.0988 +0 0.1290 +0 0.0732 +0 0.0740 +0 0.0653 +0 0.2506 +0 0.1505 +0 0.2148 +0 0.0823 +0 0.2147 +0 0.1707 +0 0.0824 +0 0.0953 +0 0.1462 +0 0.0609 +0 0.1149 +0 0.0573 +0 0.1621 +0 0.0504 +0 0.1514 +0 0.1264 +0 0.2134 +0 0.1490 +1 0.8239 +0 0.1437 +0 0.1143 +0 0.2331 +0 0.0506 +0 0.0870 +0 0.1001 +0 0.0847 +0 0.3556 +0 0.1247 +0 0.2748 +0 0.0976 +0 0.1925 +0 0.1110 +0 0.0769 +0 0.1064 +0 0.2139 +0 0.1446 +0 0.2038 +0 0.1344 +0 0.2290 +0 0.0432 +0 0.0660 +0 0.2140 +0 0.1617 +1 0.8412 +0 0.0623 +0 0.1428 +0 0.0887 +0 0.0523 +0 0.1858 +0 0.1578 +0 0.1073 +0 0.0628 +0 0.1300 +0 0.1095 +0 0.1492 +0 0.3121 +0 0.1174 +0 0.5397 +0 0.0778 +0 0.0968 +0 0.1290 +0 0.5191 +0 0.0557 +0 0.0872 +0 0.0688 +0 0.1372 +0 0.2322 +0 0.0574 +0 0.1257 +0 0.1636 +0 0.0627 +0 0.4542 +0 0.0453 +0 0.1930 +0 0.0407 +0 0.1012 +0 0.4140 +0 0.0880 +0 0.2766 +0 0.0941 +0 0.0999 +0 0.2296 +0 0.0944 +0 0.1297 +0 0.6877 +0 0.0946 +0 0.0736 +0 0.1101 +0 0.0869 +0 0.1043 +0 0.1672 +0 0.0735 +0 0.0952 +0 0.1452 +0 0.1167 +0 0.3153 +0 0.2446 +0 0.0826 +0 0.0740 +0 0.1503 +0 0.1588 +0 0.0985 +0 0.0531 +0 0.1205 +0 0.1089 +0 0.2361 +0 0.1038 +0 0.0735 +0 0.1363 +0 0.1023 +0 0.1227 +0 0.0763 +0 0.1541 +0 0.0578 +0 0.3317 +0 0.0999 +0 0.1169 +0 0.1399 +0 0.2075 +0 0.0694 +0 0.2062 +0 0.1173 +0 0.0751 +0 0.1066 +0 0.1208 +0 0.0987 +0 0.1112 +0 0.0775 +0 0.3924 +0 0.1421 +0 0.1808 +0 0.1166 +0 0.2045 +0 0.1841 +0 0.2023 +0 0.3511 +0 0.4370 +0 0.0462 +0 0.0629 +0 0.1051 +0 0.1293 +0 0.0925 +0 0.1492 +0 0.1049 +0 0.1819 +0 0.1457 +0 0.0893 +0 0.1254 +0 0.0884 +0 0.0820 +0 0.0915 +0 0.1117 +0 0.1555 +0 0.0450 +0 0.2030 +0 0.0580 +1 0.8358 +0 0.2312 +0 0.0884 +0 0.1007 +0 0.1465 +0 0.1189 +0 0.0976 +0 0.1140 +0 0.1652 +0 0.1076 +0 0.4672 +0 0.2049 +0 0.3870 +0 0.1727 +0 0.0758 +0 0.2479 +0 0.0502 +0 0.3302 +0 0.0885 +0 0.1058 +0 0.1934 +0 0.1194 +0 0.1198 +0 0.0674 +0 0.1315 +0 0.1928 +0 0.1184 +0 0.0492 +0 0.0338 +0 0.1053 +0 0.1598 +1 0.7734 +0 0.0801 +0 0.0983 +0 0.0642 +0 0.0833 +0 0.1108 +0 0.1066 +0 0.2378 +0 0.0936 +0 0.1869 +0 0.0711 +0 0.0697 +0 0.0973 +0 0.1085 +0 0.0751 +0 0.2070 +0 0.3097 +0 0.1089 +0 0.0914 +0 0.1047 +0 0.1532 +0 0.0797 +0 0.0421 +0 0.0420 +0 0.1822 +0 0.1321 +0 0.0791 +0 0.1175 +0 0.2508 +0 0.2190 +0 0.0650 +0 0.2267 +0 0.6299 +0 0.1942 +0 0.0458 +0 0.3620 +0 0.1584 +0 0.2431 +0 0.0492 +0 0.0661 +0 0.2881 +0 0.0372 +0 0.0544 +0 0.1208 +0 0.0871 +0 0.0886 +0 0.1427 +0 0.0629 +0 0.1693 +0 0.1161 +0 0.0442 +0 0.0997 +0 0.1483 +0 0.1562 +0 0.0750 +0 0.1058 +0 0.0900 +0 0.1036 +0 0.1317 +1 0.7714 +0 0.2026 +0 0.0536 +0 0.0853 +0 0.0933 +0 0.4249 +0 0.1050 +0 0.4522 +0 0.0691 +0 0.0575 +0 0.1215 +1 0.8161 +0 0.3811 +0 0.1282 +0 0.1901 +0 0.0857 +0 0.0643 +0 0.0671 +0 0.0790 +0 0.0824 +0 0.1036 +0 0.0826 +0 0.4753 +0 0.0513 +0 0.1070 +0 0.1617 +0 0.1512 +0 0.0396 +0 0.1121 +0 0.0472 +0 0.0521 +1 0.7798 +0 0.1231 +0 0.0954 +0 0.0832 +0 0.1515 +0 0.1763 +0 0.1190 +0 0.1994 +1 0.8088 +0 0.6033 +0 0.4794 +0 0.0373 +0 0.1727 +0 0.0612 +0 0.1580 +0 0.0691 +0 0.1072 +0 0.0462 +0 0.1056 +0 0.1000 +0 0.1143 +1 0.7818 +0 0.0697 +0 0.2025 +0 0.0883 +0 0.0766 +0 0.1480 +0 0.3583 +0 0.0659 +0 0.2089 +0 0.1562 +0 0.0676 +0 0.2586 +0 0.1426 +0 0.1006 +0 0.1397 +0 0.0822 +0 0.1297 +0 0.0912 +0 0.1087 +0 0.0785 +0 0.1039 +0 0.1080 +0 0.1084 +0 0.2695 +0 0.1618 +0 0.0715 +0 0.0873 +0 0.4307 +0 0.0511 +0 0.1637 +0 0.0886 +0 0.0778 +0 0.0875 +0 0.0698 +0 0.0583 +0 0.1173 +0 0.0444 +0 0.0863 +0 0.1146 +0 0.2105 +0 0.2738 +0 0.1216 +0 0.1322 +0 0.1210 +0 0.0850 +0 0.0417 +0 0.0805 +0 0.1707 +0 0.1008 +0 0.1076 +0 0.0833 +0 0.0647 +0 0.0610 +0 0.1303 +0 0.0715 +0 0.0751 +0 0.0554 +0 0.0413 +0 0.1110 +0 0.1366 +0 0.0843 +0 0.1404 +0 0.0498 +0 0.2770 +0 0.1672 +0 0.1246 +0 0.1135 +0 0.0875 +0 0.0330 +0 0.1439 +0 0.2149 +0 0.1247 +0 0.0740 +0 0.0971 +0 0.0453 +0 0.5350 +0 0.1831 +0 0.1130 +0 0.2084 +0 0.0574 +0 0.0635 +0 0.0890 +0 0.1882 +0 0.2475 +0 0.1137 +0 0.1051 +0 0.0642 +0 0.0686 +0 0.6308 +0 0.1506 +0 0.0904 +0 0.0946 +0 0.5814 +0 0.5381 +0 0.0891 +0 0.1037 +0 0.1856 +0 0.0675 +0 0.0974 +0 0.0853 +0 0.1779 +0 0.0443 +0 0.0807 +0 0.0634 +0 0.1419 +0 0.1191 +0 0.0477 +0 0.5475 +0 0.1388 +0 0.0621 +0 0.0644 +0 0.1024 +0 0.2560 +0 0.0911 +0 0.3001 +0 0.0790 +0 0.1737 +0 0.0880 +0 0.0844 +0 0.0607 +0 0.6684 +0 0.0487 +0 0.1686 +0 0.5048 +0 0.1129 +0 0.1294 +0 0.1458 +0 0.1915 +0 0.0703 +1 0.8379 +0 0.1658 +0 0.1368 +0 0.0411 +0 0.2220 +0 0.0923 +0 0.7132 +0 0.0655 +0 0.0795 +0 0.0893 +0 0.2007 +0 0.0378 +0 0.1098 +0 0.1196 +0 0.1493 +0 0.1165 +0 0.0723 +0 0.0758 +0 0.0779 +0 0.1296 +0 0.4208 +0 0.0810 +0 0.2482 +0 0.0882 +0 0.4858 +0 0.0776 +0 0.1068 +0 0.3180 +0 0.0371 +0 0.0493 +0 0.0683 +0 0.0811 +0 0.1906 +0 0.0915 +0 0.2749 +0 0.1147 +0 0.2332 +0 0.0515 +0 0.0859 +0 0.2037 +0 0.1222 +0 0.1260 +0 0.0940 +0 0.1413 +0 0.0716 +0 0.0690 +0 0.0878 +0 0.0607 +0 0.0526 +0 0.1198 +0 0.0910 +0 0.0688 +0 0.2169 +0 0.1000 +0 0.2229 +0 0.0621 +1 0.7551 +0 0.0865 +0 0.1115 +0 0.0381 +0 0.2242 +0 0.0664 +0 0.1170 +0 0.1918 +0 0.0580 +1 0.7602 +0 0.0807 +0 0.0466 +0 0.0958 +0 0.1007 +0 0.1980 +0 0.2296 +0 0.0934 +0 0.1060 +0 0.1721 +0 0.1237 +0 0.0738 +0 0.0539 +0 0.1112 +0 0.1963 +0 0.1009 +0 0.1514 +0 0.1043 +0 0.1252 +0 0.1033 +0 0.0773 +0 0.0532 +0 0.1280 +0 0.0703 +0 0.1215 +0 0.0657 +0 0.0549 +0 0.2750 +0 0.0654 +0 0.0652 +0 0.1165 +0 0.0824 +0 0.0615 +0 0.0406 +0 0.0922 +0 0.0659 +0 0.0619 +0 0.1309 +0 0.0553 +0 0.2580 +0 0.1706 +0 0.0942 +0 0.1879 +0 0.0998 +0 0.1313 +0 0.0923 +0 0.0532 +0 0.0394 +0 0.4390 +1 0.8439 +0 0.1020 +0 0.1287 +0 0.0748 +0 0.1465 +0 0.1307 +0 0.0606 +0 0.0814 +0 0.0949 +0 0.1022 +0 0.0778 +0 0.0817 +0 0.0860 +0 0.0561 +0 0.0967 +0 0.0540 +0 0.0781 +0 0.2142 +0 0.1170 +0 0.0473 +0 0.1715 +0 0.1075 +0 0.0958 +0 0.2262 +0 0.0838 +0 0.0705 +0 0.0671 +0 0.1216 +0 0.0637 +0 0.0808 +0 0.2180 +0 0.1678 +0 0.0906 +0 0.0998 +0 0.0770 +0 0.0591 +0 0.1010 +0 0.0846 +0 0.1110 +0 0.0886 +0 0.1852 +0 0.1165 +0 0.0926 +0 0.1019 +0 0.1658 +0 0.0498 +0 0.2333 +0 0.1036 +0 0.1448 +0 0.1420 +0 0.0725 +0 0.1532 +0 0.1462 +0 0.1023 +0 0.0744 +0 0.0848 +0 0.1162 +0 0.0770 +0 0.3921 +0 0.0995 +0 0.4040 +0 0.0663 +0 0.0661 +0 0.1616 +0 0.0364 +0 0.0337 +0 0.1233 +0 0.1708 +0 0.0633 +0 0.1654 +0 0.1193 +0 0.0669 +0 0.0655 +0 0.1835 +0 0.0823 +0 0.0898 +0 0.0845 +0 0.1293 +0 0.6403 +0 0.0747 +0 0.0921 +0 0.0499 +0 0.1328 +0 0.0570 +0 0.0676 +0 0.0582 +0 0.0949 +0 0.0560 +0 0.0696 +0 0.0886 +0 0.2624 +0 0.0861 +0 0.1301 +0 0.0772 +0 0.1019 +0 0.1419 +0 0.1148 +0 0.2084 +0 0.0642 +0 0.5033 +0 0.3374 +0 0.1374 +0 0.0990 +0 0.2145 +0 0.1257 +0 0.0898 +0 0.1384 +0 0.0750 +0 0.1571 +0 0.0973 +0 0.1647 +0 0.1555 +0 0.0737 +0 0.1224 +0 0.0679 +0 0.1141 +0 0.2810 +0 0.2012 +0 0.1024 +0 0.2832 +0 0.1786 +0 0.1096 +0 0.1320 +0 0.0522 +0 0.0846 +0 0.1016 +0 0.3050 +0 0.1995 +0 0.0757 +1 0.7697 +0 0.1865 +0 0.1208 +0 0.0958 +0 0.0590 +0 0.1181 +0 0.0782 +0 0.1995 +0 0.1303 +0 0.1185 +0 0.0780 +0 0.0828 +0 0.2089 +0 0.1307 +0 0.1479 +0 0.1967 +0 0.1245 +0 0.7418 +0 0.5659 +0 0.0808 +0 0.1181 +0 0.1034 +0 0.1121 +0 0.1022 +0 0.1194 +0 0.0933 +0 0.1845 +0 0.0808 +0 0.0717 +0 0.0999 +0 0.0813 +0 0.0897 +0 0.1088 +0 0.0942 +0 0.1308 +0 0.1052 +0 0.2363 +0 0.0399 +0 0.1202 +0 0.1839 +0 0.0847 +0 0.2196 +0 0.1018 +0 0.3360 +0 0.1503 +0 0.1655 +0 0.0485 +0 0.1883 +0 0.0800 +0 0.6401 +0 0.2506 +0 0.1024 +0 0.0654 +0 0.1444 +0 0.2099 +0 0.1267 +0 0.0874 +0 0.2087 +0 0.0486 +0 0.0492 +0 0.0873 +0 0.1275 +0 0.1989 +0 0.1531 +0 0.1158 +0 0.0700 +0 0.1134 +0 0.0603 +0 0.0380 +0 0.0840 +0 0.1688 +0 0.0642 +0 0.0571 +0 0.1798 +0 0.3084 +0 0.0575 +0 0.1034 +0 0.0505 +0 0.2237 +0 0.0577 +0 0.7024 +0 0.1186 +0 0.2757 +0 0.0966 +0 0.0598 +0 0.2634 +0 0.0788 +0 0.1920 +0 0.3131 +0 0.0649 +0 0.1426 +0 0.0701 +0 0.1544 +0 0.0712 +0 0.0494 +0 0.1627 +0 0.5178 +0 0.2935 +0 0.1798 +0 0.1485 +0 0.0649 +0 0.0588 +0 0.0455 +0 0.1888 +0 0.0762 +0 0.0689 +1 0.8353 +0 0.3217 +0 0.0829 +0 0.0799 +0 0.0782 +0 0.0430 +0 0.1027 +0 0.1897 +0 0.1152 +0 0.0945 +0 0.1099 +0 0.0643 +0 0.1847 +0 0.1743 +0 0.1166 +0 0.1235 +0 0.0957 +0 0.0542 +0 0.1005 +0 0.0694 +0 0.0765 +0 0.3541 +0 0.2217 +0 0.0893 +0 0.4665 +0 0.0857 +0 0.1333 +0 0.1559 +0 0.1467 +0 0.1929 +0 0.0721 +0 0.2400 +0 0.0782 +0 0.0407 +0 0.0795 +0 0.2623 +0 0.1064 +0 0.1436 +0 0.0860 +0 0.4910 +0 0.0869 +0 0.0986 +0 0.1557 +0 0.1435 +0 0.0959 +0 0.0932 +0 0.1926 +0 0.1056 +0 0.0520 +0 0.0536 +0 0.1999 +0 0.1244 +0 0.0790 +1 0.8421 +0 0.0632 +0 0.1463 +0 0.1271 +0 0.0420 +0 0.1281 +0 0.0896 +0 0.0732 +0 0.1317 +0 0.0518 +0 0.0542 +0 0.0789 +0 0.1975 +0 0.0752 +0 0.0691 +0 0.1535 +0 0.0903 +0 0.1239 +0 0.1625 +0 0.1307 +0 0.0910 +0 0.1007 +0 0.0394 +0 0.0729 +0 0.0991 +0 0.1557 +0 0.0815 +0 0.0987 +0 0.4846 +0 0.0685 +0 0.0729 +0 0.1024 +0 0.1379 +0 0.0563 +0 0.0501 +0 0.0740 +0 0.1484 +0 0.3017 +0 0.0509 +0 0.0766 +0 0.0530 +0 0.1102 +0 0.0660 +0 0.0981 +0 0.2291 +0 0.0515 +0 0.0874 +0 0.2409 +0 0.0946 +0 0.0757 +0 0.0642 +0 0.0608 +0 0.2684 +0 0.0965 +0 0.5379 +0 0.3575 +0 0.0540 +0 0.1441 +0 0.1167 +1 0.8614 +0 0.5730 +0 0.1057 +0 0.6566 +0 0.1623 +0 0.0577 +0 0.0532 +0 0.0616 +0 0.0702 +0 0.0463 +0 0.1969 +0 0.1010 +1 0.8464 +0 0.1207 +0 0.2514 +0 0.0927 +0 0.1952 +0 0.0835 +0 0.3242 +0 0.4120 +0 0.0407 +0 0.0503 +0 0.1722 +0 0.0598 +0 0.0694 +0 0.0713 +0 0.1166 +0 0.0884 +0 0.1435 +0 0.2096 +0 0.0482 +0 0.0717 +0 0.1068 +0 0.0539 +0 0.1533 +0 0.1243 +0 0.1291 +0 0.2951 +0 0.7014 +0 0.2228 +0 0.0917 +0 0.1351 +0 0.1194 +0 0.0691 +0 0.1038 +0 0.1590 +0 0.0540 +0 0.0915 +0 0.0625 +0 0.1559 +0 0.0982 +0 0.0838 +0 0.0693 +0 0.0912 +0 0.0708 +0 0.0792 +0 0.0471 +0 0.2544 +0 0.5670 +0 0.4108 +0 0.1092 +0 0.0455 +0 0.1603 +0 0.1103 +0 0.1323 +0 0.2999 +0 0.0510 +0 0.0661 +0 0.0680 +0 0.0639 +0 0.0495 +0 0.2381 +0 0.1105 +0 0.1528 +0 0.0665 +0 0.0389 +0 0.4268 +0 0.0785 +0 0.1393 +0 0.0538 +0 0.2543 +0 0.1738 +0 0.3239 +0 0.1012 +0 0.3316 +0 0.1805 +0 0.2589 +0 0.0530 +0 0.3359 +0 0.0724 +0 0.0883 +0 0.1647 +0 0.1762 +0 0.0717 +0 0.0819 +0 0.0691 +0 0.3948 +0 0.0834 +0 0.0721 +0 0.0818 +0 0.0563 +0 0.0777 +0 0.1359 +0 0.2046 +0 0.0677 +0 0.0486 +0 0.1585 +0 0.0827 +0 0.1337 +0 0.2436 +0 0.1758 +0 0.0822 +0 0.7270 +0 0.0826 +0 0.1628 +0 0.0784 +0 0.0737 +0 0.1829 +0 0.0939 +1 0.8513 +0 0.1615 +0 0.3262 +0 0.0363 +0 0.0704 +0 0.2606 +0 0.0692 +0 0.1803 +0 0.0970 +0 0.3187 +0 0.1566 +0 0.2133 +0 0.2244 +0 0.1116 +0 0.3495 +0 0.0644 +0 0.1408 +0 0.0485 +0 0.1072 +0 0.2981 +0 0.0692 +0 0.0370 +0 0.2020 +0 0.1400 +0 0.2027 +0 0.1091 +0 0.1045 +0 0.2025 +0 0.1222 +0 0.2931 +0 0.1089 +0 0.3607 +0 0.0599 +0 0.1518 +0 0.0573 +0 0.2000 +0 0.1744 +0 0.1358 +0 0.2712 +0 0.1168 +0 0.0415 +0 0.1210 +0 0.0538 +0 0.0556 +1 0.7666 +0 0.2984 +0 0.2964 +0 0.2859 +0 0.1906 +0 0.1335 +0 0.1001 +0 0.0742 +0 0.1685 +0 0.2219 +0 0.1606 +0 0.2499 +0 0.0906 +0 0.2055 +0 0.0773 +0 0.0766 +0 0.0813 +0 0.0647 +0 0.2081 +0 0.7360 +0 0.0839 +1 0.7509 +0 0.1745 +0 0.0781 +0 0.1410 +0 0.2464 +0 0.0769 +0 0.2300 +0 0.0612 +0 0.2213 +0 0.0538 +0 0.1063 +0 0.0998 +0 0.0914 +0 0.4474 +0 0.1885 +0 0.1540 +0 0.0975 +0 0.0836 +0 0.0902 +0 0.1488 +0 0.0449 +0 0.0638 +0 0.0500 +0 0.4564 +0 0.1580 +0 0.2262 +0 0.0788 +0 0.0652 +0 0.1458 +0 0.0517 +0 0.0501 +0 0.0921 +0 0.1565 +0 0.7228 +0 0.4765 +0 0.2084 +0 0.1397 +0 0.0513 +0 0.0627 +0 0.0903 +0 0.5285 +0 0.0743 +0 0.0915 +1 0.7629 +0 0.0813 +0 0.0680 +0 0.0960 +0 0.0925 +0 0.0417 +0 0.0660 +0 0.2370 +0 0.4224 +0 0.1185 +0 0.0791 +0 0.1242 +0 0.0452 +0 0.2715 +0 0.2615 +0 0.1720 +0 0.0526 +0 0.2182 +0 0.3502 +0 0.0752 +0 0.0820 +0 0.0580 +0 0.0734 +0 0.6293 +0 0.0644 +0 0.3543 +0 0.0988 +0 0.0994 +0 0.1084 +0 0.0748 +1 0.8059 +0 0.0873 +0 0.2774 +0 0.0812 +0 0.2077 +0 0.2645 +0 0.0713 +0 0.0624 +0 0.1664 +0 0.1595 +0 0.0888 +0 0.1362 +0 0.0473 +0 0.0845 +0 0.1785 +0 0.1116 +0 0.2808 +0 0.0523 +0 0.0801 +0 0.1212 +0 0.0885 +0 0.1824 +0 0.1054 +0 0.1488 +0 0.0844 +0 0.1849 +0 0.0594 +0 0.1398 +0 0.1420 +0 0.0562 +0 0.0766 +0 0.0949 +0 0.4315 +0 0.2032 +0 0.1967 +0 0.1070 +0 0.0638 +0 0.5435 +0 0.1026 +0 0.1641 +0 0.1030 +0 0.2058 +0 0.1340 +0 0.1865 +0 0.0982 +0 0.1817 +0 0.0907 +0 0.2173 +1 0.8257 +0 0.1931 +0 0.3614 +0 0.1516 +0 0.0692 +0 0.1483 +0 0.1426 +0 0.0652 +0 0.0876 +1 0.7502 +0 0.1997 +0 0.0936 +0 0.1389 +0 0.0613 +0 0.0507 +0 0.1345 +0 0.0445 +0 0.0550 +0 0.1598 +0 0.0431 +0 0.1483 +0 0.1983 +0 0.0778 +0 0.0487 +0 0.0458 +0 0.0498 +0 0.1570 +0 0.0438 +0 0.1307 +0 0.1554 +0 0.1120 +0 0.0442 +0 0.0775 +0 0.0571 +0 0.0438 +0 0.0705 +0 0.1033 +0 0.0948 +0 0.1340 +0 0.0481 +0 0.0567 +0 0.1482 +0 0.2557 +0 0.0778 +0 0.1224 +0 0.0876 +0 0.1436 +0 0.0345 +0 0.1073 +0 0.2234 +0 0.0895 +0 0.1045 +0 0.0436 +0 0.0826 +0 0.0895 +0 0.1056 +0 0.2436 +0 0.1583 +0 0.1229 +0 0.0410 +0 0.1464 +0 0.1745 +0 0.0743 +0 0.6562 +0 0.0874 +0 0.0851 +0 0.1661 +0 0.0945 +0 0.1203 +0 0.0969 +0 0.0914 +0 0.0757 +0 0.1446 +0 0.0799 +0 0.0608 +0 0.5165 +0 0.1748 +0 0.7239 +0 0.0968 +0 0.1118 +0 0.1428 +0 0.0806 +0 0.2264 +0 0.2296 +0 0.0687 +0 0.0392 +0 0.2405 +0 0.3666 +0 0.6577 +0 0.1216 +0 0.1288 +0 0.3807 +0 0.1232 +0 0.1728 +0 0.0841 +0 0.1379 +0 0.1460 +0 0.0790 +0 0.1417 +0 0.1593 +0 0.0924 +0 0.2039 +0 0.0600 +0 0.2841 +0 0.1486 +0 0.1319 +0 0.1069 +0 0.2591 +0 0.1405 +0 0.1764 +0 0.3270 +0 0.1399 +0 0.0544 +0 0.0487 +0 0.4681 +0 0.1656 +0 0.1554 +0 0.0476 +0 0.1072 +0 0.1130 +0 0.0831 +0 0.0868 +0 0.1055 +0 0.1202 +0 0.0462 +0 0.2450 +0 0.1955 +0 0.0614 +0 0.0771 +0 0.0824 +0 0.0455 +0 0.2505 +0 0.2064 +0 0.1130 +0 0.1077 +0 0.1599 +0 0.0833 +0 0.0751 +0 0.0767 +0 0.0590 +0 0.0519 +0 0.6748 +0 0.0919 +0 0.0750 +0 0.7171 +0 0.1633 +0 0.1454 +0 0.0780 +0 0.1836 +0 0.0667 +0 0.0617 +0 0.0822 +0 0.0787 +0 0.1176 +0 0.3460 +0 0.0977 +0 0.1558 +0 0.1227 +0 0.1190 +0 0.0500 +0 0.1190 +0 0.4319 +0 0.1261 +0 0.0384 +0 0.2517 +0 0.1354 +0 0.1773 +0 0.0802 +0 0.0919 +0 0.1764 +0 0.0443 +0 0.2698 +0 0.1418 +0 0.0650 +0 0.0715 +0 0.0949 +0 0.0708 +0 0.1752 +0 0.1031 +0 0.3191 +0 0.0578 +0 0.1719 +0 0.0907 +0 0.0699 +0 0.0968 +0 0.0831 +0 0.1053 +0 0.0474 +0 0.1811 +0 0.2273 +0 0.1309 +0 0.1071 +0 0.0406 +0 0.0448 +0 0.0634 +0 0.0695 +0 0.0986 +0 0.2027 +0 0.1780 +0 0.1000 +0 0.0942 +0 0.0584 +0 0.3915 +0 0.0437 +0 0.0385 +0 0.3968 +0 0.3656 +0 0.0426 +0 0.0536 +0 0.2870 +0 0.0509 +0 0.2027 +0 0.1079 +0 0.0874 +0 0.1652 +0 0.1158 +0 0.2621 +0 0.1271 +0 0.1322 +0 0.1409 +0 0.1204 +0 0.0701 +0 0.1041 +0 0.1872 +0 0.0940 +0 0.1296 +0 0.0763 +0 0.0460 +0 0.0891 +0 0.0799 +0 0.0698 +0 0.1555 +0 0.2583 +0 0.1457 +0 0.0807 +0 0.1525 +0 0.1267 +0 0.1241 +0 0.1295 +0 0.4946 +0 0.1030 +0 0.1619 +0 0.0837 +0 0.1365 +0 0.6147 +0 0.1112 +0 0.0641 +0 0.4253 +0 0.3049 +0 0.1346 +0 0.0770 +0 0.0843 +0 0.1517 +0 0.0824 +0 0.2645 +0 0.1010 +0 0.3093 +0 0.1109 +0 0.0679 +0 0.1725 +0 0.0619 +0 0.1157 +0 0.1981 +0 0.0660 +0 0.1786 +0 0.2839 +0 0.0392 +0 0.1137 +0 0.1073 +0 0.0936 +0 0.1189 +0 0.2614 +0 0.1229 +0 0.0710 +0 0.0632 +0 0.0474 +0 0.1485 +0 0.0728 +0 0.0531 +0 0.0997 +0 0.2595 +0 0.6515 +0 0.0953 +0 0.1381 +0 0.0916 +0 0.1776 +0 0.0778 +0 0.0511 +0 0.0878 +0 0.2296 +0 0.1665 +0 0.1463 +0 0.1039 +0 0.0677 +0 0.0872 +0 0.0619 +0 0.1488 +0 0.1067 +0 0.1211 +0 0.2548 +0 0.1366 +0 0.5228 +0 0.0653 +0 0.0734 +0 0.0694 +0 0.0910 +0 0.2805 +0 0.0752 +0 0.2660 +0 0.1607 +0 0.0730 +0 0.0535 +0 0.0517 +0 0.1691 +0 0.1462 +0 0.1269 +0 0.1578 +0 0.1957 +0 0.1727 +0 0.1136 +0 0.0938 +0 0.1311 +0 0.1340 +0 0.0927 +0 0.0543 +0 0.0679 +0 0.1824 +0 0.2109 +0 0.2516 +0 0.2070 +0 0.2516 +0 0.1035 +0 0.1089 +0 0.0548 +0 0.0437 +0 0.0719 +0 0.0752 +0 0.1262 +0 0.0817 +0 0.1402 +0 0.1119 +0 0.2319 +0 0.0408 +0 0.2172 +0 0.0807 +0 0.0855 +0 0.1264 +0 0.2902 +0 0.1758 +0 0.0781 +0 0.1655 +0 0.1790 +0 0.0964 +0 0.0954 +0 0.1325 +0 0.4773 +0 0.2230 +0 0.0726 +0 0.0796 +0 0.0497 +0 0.1037 +0 0.1315 +0 0.1422 +0 0.0519 +0 0.1267 +0 0.1706 +0 0.1180 +0 0.5590 +0 0.2410 +0 0.0760 +0 0.1583 +0 0.2683 +0 0.1740 +0 0.0627 +0 0.0785 +0 0.0396 +0 0.0944 +0 0.1699 +0 0.0527 +0 0.1496 +0 0.1613 +0 0.0801 +0 0.0560 +0 0.0479 +0 0.0562 +0 0.0521 +0 0.1934 +0 0.1456 +0 0.2624 +0 0.1460 +0 0.1398 +0 0.0969 +0 0.0780 +0 0.0848 +0 0.0785 +0 0.0826 +0 0.0918 +0 0.0635 +0 0.1024 +0 0.0588 +0 0.0825 +0 0.1722 +0 0.1115 +0 0.0900 +0 0.1176 +0 0.3662 +0 0.1146 +0 0.1170 +0 0.0496 +0 0.0948 +0 0.0651 +0 0.2018 +0 0.1392 +0 0.0354 +0 0.3237 +0 0.1661 +0 0.1365 +0 0.1161 +0 0.0930 +0 0.0563 +0 0.0569 +0 0.0824 +0 0.0737 +0 0.0876 +0 0.1713 +0 0.1099 +0 0.3933 +0 0.0749 +0 0.1221 +0 0.1657 +0 0.2425 +0 0.0678 +0 0.7142 +0 0.1028 +0 0.3109 +0 0.1303 +0 0.1410 +0 0.0642 +0 0.0789 +0 0.1683 +0 0.2159 +0 0.0609 +0 0.1397 +0 0.0351 +0 0.0940 +0 0.3868 +0 0.0649 +0 0.0600 +0 0.1012 +0 0.1060 +0 0.1519 +0 0.0474 +0 0.0600 +0 0.0649 +0 0.4227 +0 0.1229 +0 0.1467 +0 0.0537 +0 0.0566 +0 0.0974 +0 0.1070 +0 0.1032 +0 0.1336 +0 0.0605 +0 0.0420 +0 0.1166 +0 0.1511 +0 0.1754 +0 0.0551 +0 0.1024 +0 0.2549 +0 0.1088 +0 0.0936 +0 0.2256 +0 0.0943 +0 0.1113 +0 0.0887 +0 0.0597 +0 0.0836 +0 0.0758 +0 0.2849 +0 0.1585 +0 0.1526 +0 0.0427 +0 0.0759 +0 0.0713 +0 0.0536 +0 0.6616 +0 0.1214 +0 0.3583 +0 0.2204 +0 0.0490 +0 0.0415 +0 0.1153 +0 0.1288 +0 0.0678 +0 0.0850 +0 0.1069 +0 0.0641 +0 0.1161 +0 0.0754 +0 0.0502 +0 0.0730 +0 0.1233 +0 0.0693 +0 0.1864 +0 0.0561 +0 0.0839 +0 0.0880 +0 0.2851 +0 0.1276 +0 0.2261 +0 0.0736 +0 0.0579 +0 0.1398 +0 0.1220 +0 0.0610 +0 0.0523 +0 0.0441 +0 0.0875 +0 0.1124 +0 0.1649 +0 0.0818 +0 0.0883 +0 0.0624 +0 0.4481 +0 0.2382 +0 0.2662 +0 0.1050 +0 0.0995 +0 0.3100 +0 0.0497 +0 0.0827 +0 0.3723 +0 0.2150 +0 0.1719 +0 0.0676 +0 0.1370 +0 0.0851 +0 0.1106 +0 0.0597 +0 0.3866 +0 0.1018 +0 0.1066 +1 0.8421 +0 0.2021 +0 0.0515 +0 0.0469 +0 0.1299 +0 0.2054 +0 0.1237 +0 0.0687 +0 0.0532 +0 0.0497 +0 0.3853 +0 0.0878 +0 0.0739 +0 0.0445 +0 0.1256 +0 0.0900 +0 0.4805 +0 0.3433 +0 0.0809 +0 0.0778 +0 0.0420 +0 0.0804 +0 0.2258 +0 0.0559 +0 0.1345 +0 0.1391 +0 0.0739 +0 0.1225 +0 0.1975 +0 0.1083 +0 0.1020 +0 0.0659 +0 0.1198 +0 0.1010 +0 0.0964 +0 0.1581 +0 0.6655 +0 0.1081 +0 0.1651 +0 0.1335 +0 0.1090 +0 0.0665 +0 0.0888 +0 0.1382 +0 0.0937 +0 0.0943 +0 0.0932 +0 0.0634 +0 0.1455 +0 0.1341 +0 0.1991 +0 0.0960 +0 0.0733 +0 0.0938 +0 0.2413 +0 0.0595 +0 0.0556 +0 0.0972 +0 0.1192 +0 0.1124 +0 0.1377 +0 0.2414 +0 0.2932 +0 0.0889 +0 0.0620 +0 0.0642 +0 0.1175 +0 0.0835 +0 0.1581 +0 0.0598 +0 0.0670 +0 0.0736 +0 0.0654 +0 0.1174 +0 0.0992 +0 0.0945 +0 0.0580 +1 0.8746 +0 0.1409 +0 0.1094 +0 0.0917 +0 0.1906 +0 0.1999 +0 0.0715 +0 0.0988 +0 0.1325 +0 0.1215 +0 0.0328 +0 0.7433 +0 0.2667 +0 0.1475 +0 0.0829 +0 0.1216 +0 0.1481 +0 0.1047 +0 0.0655 +0 0.0886 +0 0.2022 +0 0.2112 +0 0.0599 +0 0.4863 +0 0.1052 +0 0.0991 +0 0.0537 +0 0.1673 +0 0.1026 +0 0.1379 +1 0.7571 +0 0.0748 +0 0.0610 +0 0.0779 +0 0.1737 +0 0.0344 +0 0.0690 +0 0.0614 +0 0.1406 +0 0.1032 +0 0.0939 +0 0.0765 +0 0.0501 +0 0.0457 +0 0.1492 +0 0.0861 +0 0.3335 +0 0.3488 +0 0.1079 +0 0.1084 +0 0.3315 +0 0.0901 +0 0.1386 +0 0.0952 +0 0.0756 +0 0.1435 +0 0.1785 +0 0.3068 +0 0.0996 +0 0.0815 +0 0.1054 +0 0.0743 +0 0.0879 +0 0.2824 +0 0.2161 +0 0.0693 +0 0.1193 +0 0.1365 +0 0.2606 +0 0.1292 +0 0.0968 +0 0.0575 +0 0.1537 +0 0.1303 +0 0.1999 +0 0.0894 +0 0.1145 +0 0.2975 +0 0.0805 +0 0.0955 +0 0.0867 +0 0.1003 +0 0.4635 +0 0.0887 +0 0.0666 +0 0.0984 +0 0.0837 +0 0.0822 +0 0.1011 +0 0.0985 +0 0.0388 +0 0.1788 +0 0.0409 +0 0.1006 +0 0.5455 +0 0.3971 +0 0.0491 +0 0.0813 +0 0.0501 +0 0.3352 +0 0.1647 +0 0.1382 +0 0.5979 +0 0.0489 +0 0.1445 +0 0.0284 +0 0.2377 +0 0.1680 +0 0.0638 +0 0.2243 +0 0.1251 +0 0.0863 +0 0.0973 +0 0.0490 +0 0.0599 +0 0.1928 +0 0.1737 +0 0.1611 +0 0.0813 +0 0.0741 +0 0.2086 +0 0.1133 +0 0.0954 +0 0.2793 +0 0.0856 +0 0.0713 +0 0.0798 +0 0.0450 +0 0.0914 +0 0.0763 +0 0.1293 +0 0.1185 +0 0.1416 +0 0.0560 +0 0.1268 +0 0.0511 +0 0.4030 +0 0.0952 +0 0.0707 +0 0.0798 +0 0.0812 +0 0.0715 +0 0.1546 +0 0.1496 +0 0.1319 +0 0.1053 +0 0.0599 +0 0.0951 +0 0.2632 +0 0.1861 +0 0.1146 +0 0.0567 +0 0.1592 +0 0.1053 +0 0.1147 +0 0.2992 +0 0.0687 +0 0.1938 +0 0.1717 +0 0.1254 +0 0.1591 +0 0.0930 +0 0.1345 +0 0.1268 +0 0.1075 +0 0.0559 +0 0.2015 +0 0.5588 +0 0.3119 +0 0.2258 +0 0.0821 +1 0.8521 +0 0.1291 +0 0.0911 +0 0.0812 +0 0.1796 +0 0.1969 +0 0.1087 +0 0.2194 +1 0.8539 +0 0.0901 +0 0.0917 +0 0.0481 +0 0.0627 +0 0.0394 +0 0.2398 +0 0.3542 +0 0.0680 +0 0.0686 +0 0.3547 +0 0.1880 +0 0.7366 +0 0.1645 +0 0.1876 +0 0.1268 +0 0.1308 +0 0.1489 +0 0.0725 +0 0.0603 +0 0.1408 +0 0.0777 +0 0.0412 +0 0.0656 +0 0.1266 +0 0.0774 +0 0.0693 +0 0.2645 +0 0.3571 +0 0.0514 +0 0.2012 +0 0.0405 +0 0.0592 +0 0.0487 +0 0.1698 +0 0.1318 +0 0.1321 +1 0.8882 +0 0.0889 +0 0.4201 +0 0.6011 +0 0.0869 +0 0.1241 +0 0.2414 +0 0.0470 +0 0.0751 +0 0.1035 +0 0.1418 +0 0.7326 +0 0.0568 +0 0.0539 +0 0.3235 +0 0.0988 +0 0.1055 +0 0.1388 +0 0.0439 +0 0.0867 +0 0.1142 +0 0.0797 +0 0.0796 +0 0.0718 +0 0.0739 +0 0.1763 +0 0.0539 +0 0.0748 +0 0.0688 +0 0.0885 +0 0.1565 +0 0.1267 +0 0.0359 +0 0.0759 +0 0.2260 +0 0.6352 +0 0.0509 +0 0.3389 +0 0.1296 +0 0.1459 +0 0.1240 +0 0.0651 +0 0.0889 +0 0.0726 +0 0.1095 +0 0.3892 +0 0.0539 +0 0.0677 +0 0.2239 +0 0.1645 +0 0.0565 +0 0.1271 +0 0.0592 +0 0.0627 +0 0.1888 +0 0.1253 +0 0.2126 +0 0.2311 +0 0.0850 +0 0.2299 +0 0.1668 +0 0.0761 +0 0.0669 +0 0.0744 +0 0.1274 +0 0.0544 +0 0.2780 +0 0.1085 +0 0.2663 +0 0.2148 +0 0.0671 +0 0.0521 +0 0.0817 +0 0.0368 +0 0.0666 +0 0.0884 +0 0.7105 +0 0.0922 +0 0.2461 +0 0.0540 +0 0.0515 +0 0.1175 +0 0.3422 +0 0.2161 +0 0.3418 +0 0.0960 +0 0.0404 +0 0.1301 +0 0.1081 +0 0.1046 +0 0.1580 +0 0.3618 +0 0.1109 +0 0.1052 +0 0.1338 +0 0.0866 +0 0.5653 +0 0.1932 +0 0.0578 +0 0.1321 +0 0.1039 +0 0.3440 +0 0.0383 +0 0.0381 +0 0.0409 +0 0.0606 +0 0.0851 +0 0.0600 +0 0.0658 +0 0.1243 +0 0.0721 +0 0.0501 +0 0.1185 +0 0.1290 +0 0.0860 +0 0.2311 +0 0.1238 +0 0.0794 +0 0.1168 +0 0.1076 +0 0.0637 +0 0.1204 +1 0.8568 +0 0.1363 +0 0.0836 +0 0.3210 +0 0.2159 +0 0.0724 +0 0.1283 +0 0.3052 +0 0.0877 +0 0.0851 +0 0.1213 +0 0.0879 +0 0.1602 +1 0.8455 +0 0.0880 +0 0.1069 +0 0.0803 +0 0.1012 +0 0.0945 +0 0.0776 +1 0.8098 +0 0.1218 +0 0.1463 +1 0.8427 +0 0.0714 +0 0.1548 +0 0.1622 +0 0.1104 +0 0.0588 +1 0.8398 +0 0.0850 +0 0.0618 +0 0.0543 +0 0.0694 +0 0.1563 +0 0.2578 +0 0.1556 +0 0.1514 +0 0.0590 +0 0.1161 +0 0.0879 +0 0.1168 +0 0.1417 +0 0.0722 +0 0.1380 +0 0.0570 +0 0.0722 +0 0.1120 +0 0.1006 +0 0.1131 +0 0.1966 +0 0.1166 +0 0.0361 +0 0.1947 +0 0.0357 +0 0.2060 +0 0.0716 +0 0.2353 +0 0.0844 +0 0.0460 +0 0.0671 +0 0.0786 +0 0.0453 +0 0.1105 +0 0.2597 +0 0.1013 +0 0.0818 +0 0.0984 +0 0.1114 +0 0.3126 +0 0.0656 +0 0.0989 +0 0.0808 +0 0.1656 +1 0.8782 +0 0.0539 +0 0.4227 +0 0.2144 +0 0.1641 +0 0.0555 +0 0.1147 +0 0.1616 +0 0.0397 +0 0.0908 +0 0.0423 +0 0.1303 +0 0.0991 +0 0.0876 +0 0.0593 +0 0.0781 +0 0.3166 +0 0.0900 +0 0.1130 +0 0.0834 +0 0.2160 +0 0.0905 +0 0.0570 +0 0.1288 +0 0.0712 +0 0.1215 +0 0.0378 +0 0.0588 +0 0.0774 +0 0.0717 +0 0.1781 +0 0.1031 +0 0.0524 +0 0.0976 +0 0.1180 +0 0.2772 +0 0.1203 +0 0.0646 +0 0.1109 +0 0.0758 +0 0.0626 +0 0.3405 +0 0.0630 +0 0.1662 +0 0.0641 +0 0.0888 +0 0.0905 +0 0.1279 +0 0.1152 +0 0.0627 +0 0.0769 +0 0.0806 +0 0.1209 +0 0.1290 +0 0.0442 +0 0.1471 +0 0.0929 +0 0.1466 +0 0.0545 +0 0.1335 +0 0.3831 +0 0.2767 +0 0.0650 +0 0.1587 +0 0.0381 +0 0.0914 +0 0.0885 +0 0.4686 +1 0.8102 +0 0.0394 +0 0.1013 +0 0.3435 +0 0.2078 +0 0.3389 +0 0.1184 +0 0.0796 +0 0.1208 +0 0.1334 +0 0.1570 +0 0.1927 +0 0.4348 +0 0.0661 +0 0.0819 +0 0.1670 +0 0.4209 +0 0.0493 +0 0.1996 +0 0.1701 +0 0.0915 +0 0.0887 +0 0.1281 +0 0.1218 +0 0.2236 +0 0.0621 +0 0.1309 +0 0.1314 +0 0.0833 +0 0.1136 +0 0.1315 +0 0.1345 +0 0.5840 +0 0.0646 +0 0.1248 +0 0.0956 +0 0.0506 +0 0.0627 +0 0.1953 +0 0.0563 +0 0.0767 +0 0.0423 +0 0.1225 +0 0.1225 +0 0.0918 +0 0.1163 +0 0.1181 +0 0.1317 +1 0.7946 +0 0.0780 +0 0.1220 +0 0.0368 +0 0.0835 +0 0.0653 +0 0.0926 +0 0.1159 +0 0.2612 +0 0.3697 +0 0.1803 +0 0.0978 +0 0.0908 +0 0.0805 +0 0.0805 +0 0.1288 +0 0.0485 +0 0.3482 +0 0.0587 +0 0.0978 +0 0.2418 +0 0.0451 +0 0.0433 +0 0.0909 +0 0.0842 +0 0.0428 +0 0.0928 +0 0.1159 +0 0.0486 +0 0.0880 +0 0.2287 +0 0.1096 +0 0.1641 +0 0.1108 +0 0.0968 +0 0.0597 +0 0.1790 +0 0.2450 +0 0.0961 +0 0.0991 +0 0.2093 +0 0.0583 +0 0.0726 +0 0.0445 +0 0.0816 +0 0.0808 +0 0.0936 +0 0.2250 +0 0.0473 +0 0.0489 +0 0.2423 +0 0.0731 +0 0.1012 +0 0.0725 +1 0.8198 +0 0.3644 +0 0.1028 +0 0.2193 +0 0.0372 +0 0.1313 +0 0.0363 +0 0.0989 +0 0.0727 +0 0.2965 +0 0.0431 +0 0.1744 +0 0.0740 +0 0.1018 +0 0.0493 +0 0.4510 +0 0.0970 +0 0.4210 +1 0.7963 +0 0.0860 +0 0.1259 +0 0.1782 +0 0.0833 +0 0.0521 +0 0.2395 +0 0.1043 +0 0.0738 +0 0.0667 +0 0.0885 +0 0.0839 +0 0.1274 +0 0.0532 +0 0.1867 +0 0.0788 +0 0.4058 +0 0.0765 +0 0.0705 +0 0.3861 +0 0.4348 +0 0.0884 +0 0.1021 +0 0.1903 +0 0.0912 +0 0.3378 +0 0.1168 +0 0.1874 +0 0.0994 +0 0.1075 +0 0.0480 +0 0.0481 +0 0.1115 +1 0.8233 +0 0.0702 +0 0.2167 +0 0.0537 +0 0.0655 +0 0.0923 +1 0.5720 +0 0.2285 +0 0.1512 +0 0.1867 +0 0.0733 +0 0.0788 +0 0.0672 +0 0.0825 +0 0.6200 +0 0.0637 +0 0.0506 +0 0.1768 +0 0.1640 +0 0.0576 +0 0.0518 +0 0.0742 +0 0.2970 +0 0.1274 +0 0.0490 +0 0.3281 +0 0.0793 +0 0.1237 +0 0.0808 +0 0.0281 +0 0.0837 +0 0.0974 +0 0.0672 +0 0.1203 +0 0.0774 +1 0.3993 +0 0.0951 +0 0.1360 +0 0.1461 +0 0.1718 +0 0.0747 +0 0.0744 +0 0.5955 +0 0.1285 +0 0.2549 +0 0.0811 +0 0.0323 +0 0.0603 +0 0.1473 +0 0.1779 +0 0.2059 +0 0.0387 +0 0.1489 +0 0.1238 +0 0.0515 +0 0.0883 +0 0.0755 +0 0.0587 +0 0.1958 +0 0.1476 +0 0.0797 +0 0.1683 +0 0.0567 +0 0.0667 +0 0.2166 +0 0.0835 +0 0.0960 +0 0.0564 +0 0.0849 +0 0.1278 +0 0.0788 +0 0.1291 +0 0.0716 +0 0.0591 +0 0.1078 +0 0.0795 +0 0.1408 +0 0.1334 +0 0.0766 +0 0.1183 +0 0.0655 +0 0.1346 +0 0.1094 +0 0.1785 +0 0.1388 +0 0.1225 +0 0.1655 +0 0.0976 +0 0.0536 +0 0.2079 +0 0.1532 +0 0.2407 +0 0.0539 +0 0.0865 +0 0.1921 +0 0.1085 +0 0.0655 +0 0.2546 +0 0.0738 +0 0.0996 +0 0.1276 +0 0.6604 +0 0.0964 +0 0.1240 +0 0.2321 +0 0.0702 +0 0.1314 +0 0.1524 +0 0.0892 +0 0.1354 +0 0.0918 +0 0.0721 +0 0.2489 +0 0.0824 +0 0.0913 +0 0.3320 +0 0.0634 +0 0.0822 +0 0.1071 +0 0.0488 +0 0.0574 +0 0.0973 +0 0.1997 +0 0.0479 +0 0.2004 +0 0.0725 +0 0.2229 +0 0.0516 +0 0.0736 +0 0.1155 +0 0.0840 +0 0.0566 +0 0.0629 +0 0.1883 +0 0.1097 +0 0.1277 +0 0.1246 +0 0.0661 +0 0.1193 +0 0.0944 +0 0.2408 +0 0.1352 +0 0.0620 +0 0.1362 +0 0.7358 +0 0.0508 +0 0.1780 +0 0.0502 +0 0.1237 +0 0.1207 +0 0.1453 +1 0.7875 +0 0.4149 +0 0.1009 +0 0.2262 +0 0.1567 +0 0.0814 +0 0.1211 +0 0.0649 +0 0.0571 +0 0.1619 +0 0.1836 +0 0.0644 +0 0.0826 +0 0.0772 +0 0.0847 +0 0.1795 +0 0.1269 +0 0.1210 +0 0.0869 +0 0.2011 +0 0.1076 +0 0.2912 +0 0.0674 +0 0.0777 +0 0.1546 +0 0.2305 +0 0.0930 +0 0.3463 +0 0.0582 +0 0.2181 +0 0.1317 +0 0.2137 +0 0.0724 +0 0.1052 +0 0.1629 +0 0.0635 +0 0.1170 +0 0.0934 +0 0.0657 +0 0.0760 +0 0.1306 +0 0.7014 +0 0.0796 +0 0.0390 +0 0.0862 +0 0.0586 +0 0.0806 +0 0.1169 +1 0.7947 +0 0.1972 +0 0.3211 +0 0.1578 +0 0.0361 +0 0.2919 +0 0.0385 +0 0.4052 +0 0.1172 +0 0.1184 +0 0.0858 +0 0.2135 +0 0.3047 +0 0.1014 +0 0.0979 +0 0.1443 +0 0.1742 +0 0.2670 +0 0.0496 +0 0.0900 +0 0.0719 +0 0.2271 +0 0.0826 +0 0.0821 +0 0.1404 +0 0.0424 +0 0.0420 +0 0.1354 +0 0.1418 +0 0.1279 +0 0.1312 +0 0.0917 +0 0.0485 +0 0.0643 +0 0.0776 +0 0.0724 +0 0.0476 +0 0.2707 +0 0.1298 +0 0.0746 +0 0.0986 +0 0.1004 +0 0.0506 +0 0.1404 +0 0.0855 +0 0.3098 +0 0.2904 +0 0.0685 +0 0.0792 +0 0.0609 +0 0.0651 +0 0.1114 +0 0.0713 +0 0.1063 +0 0.2564 +0 0.1572 +0 0.2161 +0 0.0406 +0 0.1410 +0 0.1117 +0 0.0606 +0 0.2906 +0 0.6200 +0 0.1592 +0 0.1200 +0 0.0900 +0 0.0661 +0 0.0901 +0 0.1172 +0 0.1379 +0 0.1878 +0 0.1524 +0 0.0842 +0 0.0535 +0 0.1284 +1 0.7749 +0 0.1183 +0 0.2162 +0 0.0779 +0 0.0796 +0 0.1496 +0 0.7299 +0 0.0802 +0 0.0849 +0 0.1882 +0 0.1515 +0 0.0660 +0 0.0997 +0 0.0967 +0 0.0949 +0 0.1676 +0 0.0814 +0 0.2307 +0 0.1228 +0 0.0761 +0 0.0529 +0 0.0773 +0 0.1605 +0 0.1201 +0 0.0706 +0 0.7398 +0 0.1691 +0 0.1999 +0 0.0381 +0 0.0519 +0 0.1150 +0 0.0589 +0 0.0578 +0 0.1283 +0 0.1378 +0 0.0943 +0 0.0946 +0 0.0474 +0 0.1769 +0 0.3192 +0 0.2250 +0 0.2070 +0 0.1795 +0 0.0955 +0 0.0655 +0 0.0970 +0 0.0723 +0 0.3130 +0 0.0902 +0 0.1276 +0 0.1377 +0 0.1020 +0 0.0668 +0 0.1659 +0 0.2568 +0 0.1386 +0 0.0659 +0 0.0645 +0 0.1006 +0 0.2210 +0 0.0864 +0 0.0812 +0 0.1147 +0 0.1164 +0 0.0582 +0 0.1130 +0 0.0562 +0 0.1022 +0 0.1022 +0 0.0694 +0 0.0892 +0 0.0408 +0 0.1251 +0 0.2185 +0 0.3107 +0 0.1654 +0 0.0721 +0 0.0768 +0 0.1142 +0 0.1058 +0 0.1081 +0 0.1184 +0 0.0962 +0 0.1454 +0 0.1521 +0 0.2471 +0 0.0412 +0 0.0708 +0 0.1868 +0 0.0957 +0 0.0699 +0 0.0646 +0 0.0904 +0 0.0570 +0 0.2247 +0 0.0989 +0 0.4287 +0 0.1544 +0 0.0764 +0 0.0497 +0 0.0942 +0 0.0559 +0 0.1408 +0 0.0950 +0 0.0470 +0 0.3271 +0 0.5264 +0 0.0869 +0 0.0430 +0 0.1854 +0 0.0752 +0 0.1473 +0 0.1797 +0 0.0953 +0 0.0656 +0 0.1296 +0 0.0707 +0 0.0493 +0 0.0573 +0 0.0879 +0 0.1041 +0 0.0942 +0 0.2016 +0 0.2265 +0 0.0888 +0 0.2336 +0 0.0753 +0 0.1080 +0 0.0472 +0 0.0453 +0 0.0662 +0 0.0967 +0 0.0967 +0 0.1237 +0 0.0631 +0 0.2304 +0 0.1375 +0 0.2955 +0 0.1184 +0 0.0831 +0 0.0811 +0 0.0928 +0 0.0904 +0 0.1773 +0 0.0666 +0 0.1938 +0 0.1532 +0 0.0770 +0 0.1933 +0 0.0477 +0 0.1971 +0 0.1368 +0 0.0880 +0 0.1664 +0 0.0981 +0 0.3388 +0 0.0626 +0 0.0490 +0 0.0733 +0 0.0570 +0 0.7311 +0 0.1332 +0 0.0836 +0 0.1165 +1 0.8374 +0 0.1305 +0 0.0893 +0 0.0885 +0 0.0495 +0 0.1039 +0 0.1561 +0 0.0382 +0 0.6612 +0 0.1146 +0 0.1076 +0 0.1904 +0 0.2691 +1 0.8212 +0 0.0583 +0 0.0578 +0 0.1788 +0 0.4606 +0 0.2219 +0 0.0618 +0 0.3829 +0 0.1895 +0 0.2145 +0 0.0549 +0 0.2032 +0 0.1500 +0 0.0417 +0 0.0500 +0 0.1095 +0 0.0534 +0 0.1413 +0 0.0749 +0 0.1416 +0 0.1060 +0 0.0852 +0 0.0648 +0 0.0976 +0 0.0501 +0 0.1675 +0 0.1365 +0 0.0777 +0 0.1337 +0 0.1152 +0 0.1927 +0 0.0902 +0 0.0545 +0 0.1087 +0 0.0698 +0 0.2008 +0 0.1399 +0 0.2309 +0 0.0849 +0 0.1091 +0 0.1647 +0 0.0777 +0 0.3228 +0 0.1438 +0 0.1506 +0 0.0598 +0 0.1207 +0 0.0962 +0 0.1295 +0 0.1007 +0 0.2556 +0 0.2718 +1 0.7683 +0 0.0626 +0 0.1850 +0 0.1302 +0 0.1264 +0 0.1823 +0 0.0464 +0 0.1436 +0 0.0899 +0 0.0799 +0 0.0604 +0 0.1450 +0 0.1068 +0 0.0495 +0 0.6000 +0 0.1210 +0 0.5039 +0 0.0793 +0 0.1307 +0 0.1115 +0 0.1504 +0 0.1110 +0 0.0772 +0 0.0863 +0 0.0604 +1 0.8358 +0 0.2252 +0 0.1055 +0 0.0672 +0 0.4310 +0 0.0532 +0 0.0449 +0 0.1303 +0 0.3122 +0 0.1007 +0 0.2126 +0 0.0521 +0 0.0946 +0 0.0967 +0 0.0942 +0 0.3394 +1 0.8507 +0 0.2021 +0 0.2337 +0 0.2122 +0 0.0644 +0 0.3399 +0 0.0947 +0 0.0932 +0 0.1058 +0 0.0605 +1 0.8789 +0 0.0696 +0 0.0656 +0 0.1222 +0 0.2048 +0 0.0882 +0 0.1934 +0 0.0815 +0 0.1321 +0 0.3218 +0 0.0882 +0 0.0785 +0 0.0898 +0 0.0545 +0 0.0680 +0 0.0754 +0 0.1208 +0 0.1059 +0 0.1511 +1 0.7752 +0 0.0776 +0 0.0890 +0 0.1134 +0 0.2011 +0 0.1363 +0 0.1296 +0 0.0846 +0 0.1065 +0 0.0653 +0 0.1290 +0 0.1003 +0 0.0756 +0 0.0926 +0 0.1604 +0 0.0412 +0 0.0392 +0 0.1130 +0 0.1296 +0 0.0809 +0 0.0500 +0 0.0984 +0 0.1129 +0 0.0452 +0 0.0540 +0 0.1303 +0 0.0723 +1 0.8416 +0 0.1983 +0 0.0775 +0 0.0775 +0 0.1285 +0 0.0698 +0 0.1172 +0 0.1435 +0 0.0638 +0 0.0889 +0 0.1025 +0 0.0956 +0 0.0519 +0 0.0425 +0 0.2062 +0 0.0984 +0 0.0410 +0 0.0891 +0 0.0894 +0 0.1307 +0 0.1327 +0 0.1110 +0 0.0860 +0 0.0755 +0 0.0792 +0 0.1985 +0 0.1126 +0 0.3377 +0 0.1345 +0 0.0949 +1 0.7946 +0 0.0718 +0 0.0732 +0 0.1024 +0 0.0637 +0 0.1051 +0 0.0889 +0 0.0860 +0 0.0947 +0 0.0462 +0 0.1857 +0 0.1025 +0 0.1575 +0 0.1609 +0 0.0793 +0 0.0456 +0 0.0615 +0 0.0567 +0 0.0730 +0 0.1845 +0 0.0986 +0 0.1040 +0 0.0741 +0 0.0448 +0 0.0841 +0 0.1838 +0 0.1358 +0 0.1000 +0 0.0671 +0 0.0667 +0 0.0850 +0 0.1755 +0 0.0564 +0 0.0845 +0 0.2307 +0 0.2470 +0 0.1931 +0 0.1317 +0 0.0611 +0 0.0747 +0 0.0690 +0 0.1259 +0 0.0554 +0 0.5725 +0 0.2958 +0 0.7191 +0 0.1870 +1 0.8308 +0 0.0656 +0 0.0492 +0 0.0683 +0 0.2972 +0 0.2624 +0 0.0987 +0 0.0636 +0 0.6775 +0 0.0840 +0 0.0911 +1 0.7585 +0 0.1040 +1 0.8193 +0 0.2078 +0 0.1313 +0 0.0801 +0 0.0661 +0 0.1051 +0 0.1095 +0 0.0935 +1 0.8602 +0 0.1473 +0 0.0567 +0 0.7252 +0 0.3053 +0 0.0541 +0 0.2964 +0 0.0623 +0 0.7048 +0 0.0729 +0 0.0800 +0 0.2201 +0 0.1234 +0 0.0599 +0 0.1058 +0 0.0392 +0 0.0743 +0 0.1702 +0 0.1478 +0 0.1162 +0 0.1624 +0 0.3176 +0 0.0549 +0 0.0760 +0 0.1586 +1 0.8270 +0 0.0543 +0 0.2333 +0 0.0423 +0 0.0757 +0 0.1382 +0 0.0934 +0 0.0495 +0 0.0417 +0 0.0357 +0 0.1192 +0 0.0931 +0 0.2368 +0 0.0746 +0 0.2116 +0 0.1034 +0 0.0809 +0 0.1113 +0 0.0735 +0 0.0336 +0 0.1450 +0 0.0600 +0 0.0600 +0 0.1927 +1 0.7880 +0 0.0627 +0 0.0579 +0 0.0838 +0 0.1640 +0 0.0689 +0 0.1106 +0 0.1581 +0 0.0982 +0 0.1311 +0 0.0960 +0 0.1018 +0 0.3691 +0 0.0970 +0 0.0891 +0 0.2501 +0 0.1824 +0 0.0797 +0 0.0535 +0 0.5942 +0 0.1132 +1 0.8707 +0 0.1236 +0 0.0604 +0 0.0557 +0 0.0518 +0 0.1334 +0 0.2081 +0 0.0814 +0 0.1515 +0 0.0481 +0 0.1343 +0 0.2185 +0 0.0707 +0 0.0849 +0 0.3586 +0 0.1266 +0 0.0611 +0 0.1301 +0 0.2338 +0 0.1034 +0 0.0978 +0 0.0855 +0 0.0901 +0 0.7289 +0 0.0984 +0 0.1156 +0 0.1826 +0 0.0849 +0 0.2126 +0 0.2299 +0 0.0863 +0 0.0891 +0 0.0709 +0 0.2228 +0 0.1305 +0 0.0857 +0 0.0832 +0 0.0910 +0 0.2726 +0 0.0896 +0 0.0514 +0 0.0989 +0 0.0555 +0 0.1122 +0 0.0611 +0 0.0993 +0 0.1708 +0 0.0498 +0 0.2249 +0 0.2686 +0 0.0721 +0 0.1077 +0 0.0380 +0 0.0822 +0 0.2468 +0 0.1084 +0 0.0651 +0 0.0565 +0 0.1029 +0 0.0780 +0 0.0806 +0 0.0401 +0 0.1864 +0 0.0796 +0 0.1391 +0 0.3815 +0 0.1593 +0 0.0557 +0 0.1196 +0 0.0385 +0 0.1774 +0 0.2467 +0 0.1595 +0 0.4300 +0 0.1028 +0 0.1174 +0 0.0951 +0 0.1330 +0 0.1730 +0 0.2999 +0 0.0528 +0 0.1755 +0 0.0827 +0 0.1060 +0 0.0770 +0 0.0912 +0 0.0619 +0 0.0804 +0 0.1426 +0 0.1546 +0 0.0714 +0 0.1090 +0 0.2259 +0 0.0683 +0 0.1349 +0 0.0571 +0 0.0998 +0 0.0867 +0 0.0799 +0 0.2452 +0 0.0803 +0 0.0357 +0 0.0919 +0 0.5816 +0 0.1900 +0 0.1448 +0 0.0449 +0 0.0885 +0 0.0639 +0 0.0945 +0 0.0521 +0 0.2017 +0 0.1335 +0 0.1280 +0 0.1218 +0 0.0676 +0 0.2004 +0 0.2183 +0 0.2231 +0 0.0536 +0 0.1047 +0 0.1098 +0 0.0541 +0 0.1308 +0 0.0676 +0 0.0796 +0 0.1888 +0 0.1881 +0 0.0753 +0 0.0613 +0 0.0555 +0 0.0523 +0 0.5969 +0 0.1661 +0 0.1181 +0 0.0341 +0 0.1764 +0 0.0824 +0 0.1633 +0 0.1905 +0 0.2531 +0 0.1047 +0 0.0573 +0 0.0676 +0 0.0711 +0 0.1143 +0 0.1453 +0 0.1660 +0 0.0836 +0 0.0868 +0 0.1660 +0 0.0678 +0 0.0651 +0 0.1407 +0 0.2161 +0 0.1575 +0 0.1292 +0 0.3891 +0 0.1107 +0 0.0744 +0 0.0983 +0 0.0439 +0 0.1309 +0 0.1070 +0 0.1246 +0 0.0739 +0 0.6305 +0 0.0822 +0 0.1155 +0 0.3407 +0 0.1975 +0 0.2230 +0 0.0616 +0 0.2859 +0 0.0675 +0 0.1204 +0 0.0970 +0 0.1781 +0 0.3783 +0 0.1653 +0 0.0785 +0 0.0773 +0 0.2496 +0 0.2113 +0 0.1270 +0 0.1025 +0 0.1238 +0 0.0492 +0 0.1841 +0 0.1029 +0 0.2384 +0 0.0595 +0 0.0775 +0 0.1096 +0 0.0486 +0 0.0495 +0 0.1823 +0 0.3889 +0 0.1675 +0 0.0745 +0 0.1985 +0 0.1266 +0 0.1721 +0 0.2281 +0 0.1056 +0 0.0924 +0 0.1787 +0 0.0912 +0 0.0900 +0 0.1629 +0 0.1792 +0 0.1152 +0 0.1021 +0 0.0683 +0 0.1738 +0 0.1006 +0 0.7003 +0 0.0747 +0 0.0673 +0 0.2516 +0 0.1374 +0 0.1073 +0 0.0425 +0 0.1168 +0 0.0584 +0 0.0644 +1 0.7970 +0 0.0848 +0 0.1060 +0 0.0898 +0 0.0485 +0 0.1334 +0 0.1413 +0 0.2032 +0 0.2698 +0 0.2138 +0 0.0989 +0 0.0867 +0 0.0686 +0 0.3708 +0 0.0689 +0 0.1511 +0 0.3958 +0 0.0797 +0 0.2633 +0 0.2275 +0 0.1559 +0 0.1203 +0 0.0411 +0 0.0591 +0 0.0877 +0 0.1191 +0 0.2068 +0 0.2738 +0 0.0859 +0 0.1549 +0 0.0671 +0 0.1930 +0 0.1907 +0 0.6196 +0 0.1188 +0 0.2416 +0 0.1603 +0 0.1133 +0 0.0955 +0 0.0813 +0 0.1412 +0 0.0860 +0 0.0863 +0 0.3173 +0 0.0823 +0 0.0652 +0 0.0945 +1 0.8964 +0 0.0971 +0 0.0748 +0 0.0528 +0 0.0703 +0 0.2000 +0 0.0730 +0 0.0906 +0 0.0986 +0 0.0838 +0 0.1586 +0 0.1049 +0 0.0607 +0 0.1686 +0 0.1149 +0 0.0602 +0 0.1078 +0 0.0999 +0 0.2948 +0 0.1536 +0 0.0580 +0 0.0818 +0 0.2443 +0 0.1003 +0 0.2956 +0 0.0919 +0 0.1462 +0 0.1113 +0 0.1876 +0 0.0532 +0 0.2501 +0 0.2840 +0 0.1558 +0 0.0660 +0 0.0709 +0 0.0356 +0 0.1077 +0 0.1045 +0 0.1619 +0 0.0751 +0 0.1475 +0 0.6712 +0 0.1019 +1 0.7502 +0 0.0719 +0 0.1180 +0 0.1643 +0 0.0718 +0 0.2789 +0 0.0608 +0 0.0804 +0 0.0822 +0 0.0757 +0 0.0967 +0 0.1653 +0 0.0776 +0 0.1813 +0 0.1213 +0 0.1423 +0 0.1279 +0 0.1109 +0 0.1002 +0 0.1457 +0 0.0762 +0 0.3466 +0 0.0520 +0 0.1211 +0 0.0994 +0 0.0569 +0 0.1252 +0 0.0848 +0 0.0946 +0 0.1556 +0 0.3234 +0 0.1645 +1 0.8416 +0 0.1578 +0 0.0734 +0 0.3178 +0 0.0808 +0 0.0888 +0 0.1114 +0 0.2115 +0 0.4280 +0 0.0984 +0 0.0686 +0 0.3895 +0 0.1770 +0 0.1279 +0 0.0663 +0 0.1275 +0 0.1502 +0 0.1013 +0 0.1421 +0 0.1477 +0 0.2540 +0 0.0823 +0 0.3161 +0 0.0555 +0 0.1004 +0 0.1033 +0 0.0786 +0 0.1066 +0 0.0817 +0 0.0923 +0 0.1265 +0 0.0358 +0 0.0719 +0 0.1605 +0 0.0902 +0 0.2266 +0 0.0728 +0 0.0752 +0 0.0566 +0 0.0660 +0 0.1238 +0 0.0718 +0 0.1809 +0 0.0684 +0 0.1090 +0 0.3047 +0 0.0756 +0 0.0620 +0 0.1173 +0 0.0572 +0 0.0950 +0 0.1522 +0 0.0881 +0 0.0574 +0 0.0665 +0 0.0932 +0 0.0626 +0 0.0848 +0 0.0582 +1 0.3642 +0 0.1037 +0 0.0588 +0 0.0684 +0 0.1404 +0 0.1329 +0 0.0360 +0 0.0847 +0 0.3462 +0 0.0523 +0 0.1720 +0 0.0570 +0 0.0784 +0 0.1038 +0 0.0562 +0 0.1226 +0 0.0405 +0 0.0664 +0 0.2993 +0 0.0500 +0 0.1634 +0 0.1693 +0 0.1009 +0 0.0803 +0 0.0843 +0 0.1365 +0 0.0519 +0 0.1530 +0 0.1286 +0 0.6003 +0 0.5887 +0 0.0428 +0 0.0829 +0 0.0588 +0 0.1052 +0 0.1121 +0 0.0976 +0 0.0520 +0 0.2197 +0 0.0806 +0 0.1326 +0 0.0507 +0 0.0685 +0 0.1617 +0 0.1702 +0 0.0690 +0 0.0528 +0 0.2189 +0 0.1171 +0 0.1087 +0 0.0651 +0 0.0525 +0 0.1885 +0 0.0434 +0 0.0558 +0 0.1724 +0 0.0532 +0 0.0859 +0 0.1022 +0 0.0712 +0 0.0999 +0 0.0830 +0 0.1511 +0 0.4097 +0 0.1261 +0 0.1250 +0 0.0374 +0 0.1183 +0 0.0764 +0 0.2523 +0 0.0903 +1 0.8673 +0 0.1017 +0 0.1240 +0 0.1016 +0 0.1135 +0 0.0402 +0 0.1469 +0 0.0348 +0 0.0319 +0 0.1481 +0 0.2467 +0 0.2070 +0 0.0975 +0 0.1431 +0 0.3384 +0 0.0616 +0 0.0608 +0 0.2556 +0 0.1300 +0 0.4034 +0 0.0729 +0 0.0749 +0 0.1801 +0 0.0880 +0 0.0991 +0 0.2394 +0 0.3200 +0 0.0859 +0 0.0924 +0 0.0567 +0 0.0579 +0 0.0949 +0 0.1006 +0 0.2208 +0 0.2520 +0 0.1196 +0 0.1823 +0 0.1968 +0 0.0545 +0 0.1299 +0 0.1098 +0 0.0885 +0 0.1411 +0 0.1169 +0 0.3319 +0 0.6398 +0 0.2644 +0 0.2119 +0 0.1133 +0 0.0507 +1 0.7635 +0 0.2524 +0 0.0459 +0 0.0696 +0 0.1549 +0 0.1382 +0 0.1441 +0 0.0857 +0 0.1084 +0 0.2094 +0 0.0943 +0 0.4333 +0 0.0741 +0 0.3754 +0 0.1656 +0 0.1702 +0 0.1428 +0 0.0649 +0 0.0798 +0 0.1972 +0 0.1369 +0 0.1195 +0 0.1128 +0 0.0995 +0 0.0843 +0 0.1842 +0 0.0431 +0 0.6693 +0 0.1171 +0 0.1411 +0 0.1511 +0 0.0929 +0 0.0863 +0 0.4133 +0 0.3548 +0 0.1951 +0 0.0880 +1 0.8714 +0 0.0596 +0 0.0692 +0 0.0708 +0 0.1594 +0 0.0740 +0 0.0415 +0 0.0818 +0 0.1385 +0 0.0631 +0 0.0514 +0 0.0904 +0 0.2465 +0 0.0868 +0 0.1554 +0 0.1487 +0 0.1330 +0 0.0903 +0 0.1100 +0 0.1236 +0 0.1845 +0 0.0841 +0 0.0993 +0 0.1782 +0 0.0573 +0 0.1553 +0 0.3015 +0 0.1868 +0 0.0616 +0 0.0820 +0 0.2614 +0 0.3590 +0 0.1839 +0 0.0538 +0 0.0489 +0 0.1217 +0 0.2437 +0 0.0633 +0 0.0637 +0 0.0454 +0 0.0690 +0 0.1564 +0 0.0878 +0 0.1064 +0 0.2360 +0 0.0682 +0 0.0589 +0 0.0702 +0 0.4175 +0 0.1236 +0 0.1175 +0 0.2396 +0 0.1003 +0 0.0983 +0 0.1550 +0 0.1359 +0 0.2140 +0 0.0575 +0 0.0989 +0 0.1125 +0 0.1520 +0 0.0554 +0 0.1579 +0 0.0769 +0 0.0883 +1 0.7507 +0 0.0987 +0 0.0824 +0 0.2115 +0 0.0817 +0 0.0816 +0 0.1334 +0 0.0779 +0 0.1299 +0 0.1103 +0 0.1487 +0 0.0698 +0 0.1042 +0 0.0469 +0 0.4522 +0 0.1109 +0 0.1284 +0 0.0651 +0 0.0522 +0 0.1472 +0 0.1819 +0 0.2206 +0 0.1726 +0 0.1103 +0 0.1562 +0 0.0897 +0 0.0841 +0 0.1032 +0 0.0788 +1 0.8297 +0 0.1759 +0 0.2717 +0 0.2764 +0 0.3201 +0 0.1043 +0 0.1955 +0 0.0646 +0 0.1448 +0 0.6763 +0 0.0741 +0 0.1768 +0 0.0440 +0 0.0861 +0 0.1865 +0 0.0693 +0 0.0953 +0 0.0529 +0 0.0645 +0 0.0709 +0 0.0589 +0 0.3218 +0 0.2179 +0 0.0905 +0 0.1458 +0 0.1356 +0 0.1430 +0 0.1674 +0 0.0417 +0 0.2553 +0 0.1284 +0 0.1240 +0 0.3071 +0 0.1053 +0 0.0748 +0 0.2729 +0 0.1981 +0 0.0883 +0 0.0782 +0 0.3719 +0 0.5602 +0 0.2442 +0 0.1191 +0 0.0826 +0 0.1248 +0 0.0974 +0 0.1918 +0 0.2920 +0 0.0468 +0 0.1207 +0 0.0423 +0 0.2009 +0 0.0556 +0 0.2628 +0 0.1102 +0 0.0578 +0 0.1116 +0 0.1074 +0 0.3111 +0 0.3159 +0 0.2690 +0 0.2160 +0 0.1756 +0 0.0493 +0 0.2039 +0 0.0766 +1 0.8417 +0 0.0977 +0 0.0810 +0 0.3832 +0 0.3535 +0 0.2307 +0 0.2015 +0 0.1115 +0 0.2244 +0 0.2775 +0 0.1059 +0 0.0551 +0 0.0449 +0 0.3078 +0 0.0969 +0 0.1263 +0 0.0872 +0 0.2017 +0 0.1633 +0 0.0630 +0 0.1456 +0 0.0930 +0 0.0631 +0 0.1726 +0 0.0403 +0 0.0315 +0 0.2753 +0 0.1531 +0 0.2572 +0 0.1348 +0 0.1214 +0 0.1432 +0 0.1202 +0 0.0623 +0 0.0503 +0 0.1192 +0 0.0516 +1 0.8305 +0 0.0699 +1 0.7567 +0 0.4606 +0 0.0879 +0 0.1026 +0 0.1586 +0 0.0905 +0 0.0739 +0 0.0624 +0 0.0488 +0 0.2023 +0 0.1080 +0 0.0886 +0 0.0491 +0 0.0762 +0 0.1019 +0 0.0849 +0 0.0660 +1 0.8106 +0 0.0661 +0 0.1122 +0 0.0997 +0 0.1094 +1 0.8048 +0 0.1095 +0 0.1644 +0 0.0645 +0 0.2306 +0 0.1563 +0 0.2062 +0 0.1012 +0 0.2355 +0 0.7111 +0 0.0792 +0 0.2892 +0 0.2817 +0 0.2547 +0 0.1727 +0 0.0913 +0 0.1138 +0 0.1020 +0 0.2159 +0 0.2142 +0 0.0591 +0 0.2159 +0 0.0607 +0 0.0909 +0 0.1420 +0 0.1153 +0 0.0807 +0 0.0870 +0 0.4929 +0 0.1213 +0 0.0638 +0 0.2046 +0 0.0601 +0 0.0743 +0 0.0399 +0 0.1082 +0 0.3852 +0 0.2607 +0 0.1843 +0 0.1189 +0 0.3165 +0 0.1976 +0 0.1222 +0 0.0895 +0 0.1312 +0 0.1264 +0 0.1128 +0 0.1157 +0 0.0735 +0 0.1941 +0 0.1076 +0 0.0826 +0 0.0407 +0 0.0458 +0 0.1763 +0 0.2270 +0 0.1421 +0 0.0724 +0 0.1404 +0 0.0582 +0 0.1811 +0 0.0966 +0 0.1334 +0 0.0441 +0 0.1699 +0 0.0476 +0 0.0885 +0 0.0861 +0 0.1414 +0 0.1133 +0 0.0751 +0 0.1080 +0 0.1997 +0 0.0569 +0 0.1483 +0 0.0791 +0 0.1439 +0 0.0562 +0 0.1079 +0 0.2124 +0 0.4014 +0 0.1690 +0 0.1302 +0 0.0894 +0 0.1635 +0 0.2864 +0 0.0869 +0 0.0653 +0 0.0829 +0 0.0586 +0 0.0870 +1 0.8195 +0 0.0863 +0 0.0965 +0 0.1449 +0 0.0384 +0 0.1003 +0 0.0661 +0 0.1171 +1 0.7686 +0 0.0624 +0 0.1687 +0 0.1192 +0 0.1722 +0 0.5851 +0 0.1427 +0 0.0735 +0 0.1286 +0 0.5758 +0 0.2139 +0 0.0844 +0 0.1150 +0 0.2955 +0 0.7120 +0 0.0523 +0 0.2286 +0 0.0283 +0 0.2037 +0 0.2359 +0 0.0957 +0 0.0736 +0 0.1946 +0 0.1367 +0 0.3204 +0 0.1003 +0 0.0680 +0 0.2397 +0 0.0959 +0 0.0812 +0 0.1648 +0 0.0329 +0 0.1377 +0 0.1678 +0 0.1714 +1 0.7969 +0 0.4747 +0 0.1353 +0 0.1140 +0 0.1567 +0 0.0936 +0 0.1346 +0 0.2273 +0 0.1482 +0 0.2423 +0 0.0456 +0 0.1153 +0 0.0418 +0 0.0585 +0 0.2451 +0 0.5629 +0 0.0826 +0 0.2272 +0 0.1379 +0 0.1449 +0 0.1257 +0 0.0733 +0 0.0515 +0 0.3140 +0 0.1241 +0 0.1452 +0 0.0517 +0 0.0492 +1 0.7518 +0 0.0890 +0 0.0972 +0 0.0602 +0 0.1178 +0 0.0559 +0 0.0628 +0 0.1675 +0 0.1946 +0 0.0912 +0 0.1319 +0 0.0349 +0 0.2551 +0 0.0749 +0 0.1099 +0 0.0482 +0 0.1254 +0 0.0429 +0 0.0673 +0 0.0504 +0 0.1593 +0 0.0399 +0 0.0919 +0 0.1193 +0 0.1070 +1 0.7531 +0 0.0748 +0 0.0762 +0 0.1422 +0 0.2517 +0 0.7162 +0 0.0641 +0 0.4591 +0 0.0587 +0 0.0970 +0 0.0776 +0 0.0778 +1 0.7914 +0 0.0489 +0 0.0440 +0 0.1112 +0 0.0729 +0 0.0634 +0 0.0646 +0 0.1360 +0 0.0739 +0 0.0735 +0 0.1350 +0 0.0791 +0 0.1419 +0 0.0617 +0 0.1233 +0 0.1193 +0 0.1260 +0 0.3073 +0 0.0592 +0 0.1281 +0 0.1358 +0 0.0927 +1 0.4330 +0 0.1353 +0 0.1405 +0 0.0708 +0 0.7283 +0 0.2870 +0 0.2171 +0 0.1908 +0 0.1265 +0 0.2233 +0 0.0778 +0 0.2865 +0 0.1025 +0 0.2750 +0 0.2504 +0 0.3519 +0 0.1114 +0 0.0446 +0 0.1243 +0 0.0629 +0 0.0912 +0 0.0796 +0 0.2122 +0 0.1017 +0 0.0914 +0 0.1843 +0 0.1088 +0 0.0883 +0 0.2654 +0 0.0450 +0 0.0577 +0 0.0714 +0 0.2922 +0 0.1493 +0 0.1333 +0 0.1375 +0 0.0677 +0 0.1512 +0 0.0382 +0 0.1682 +0 0.0351 +0 0.4415 +0 0.0316 +0 0.0621 +0 0.0455 +0 0.3271 +0 0.1442 +1 0.8390 +0 0.0626 +0 0.1052 +0 0.0737 +0 0.1117 +0 0.2423 +0 0.0674 +0 0.1242 +0 0.1184 +0 0.0955 +0 0.2679 +0 0.1353 +0 0.1932 +0 0.3423 +0 0.2143 +0 0.4966 +0 0.1060 +0 0.2763 +0 0.0468 +0 0.0588 +0 0.0827 +0 0.4002 +0 0.1514 +0 0.1111 +0 0.0908 +0 0.1191 +0 0.0986 +0 0.4956 +0 0.0984 +0 0.1425 +0 0.0999 +0 0.0915 +0 0.1308 +0 0.1633 +0 0.0880 +0 0.3241 +0 0.1094 +0 0.1144 +0 0.0729 +0 0.0614 +0 0.0759 +0 0.0659 +0 0.1532 +0 0.0522 +0 0.1197 +0 0.0986 +0 0.0797 +0 0.0903 +0 0.0614 +0 0.0769 +0 0.3236 +0 0.1190 +0 0.2050 +0 0.0731 +0 0.0831 +0 0.0796 +0 0.1283 +0 0.2750 +0 0.1033 +0 0.0453 +0 0.1220 +1 0.8103 +0 0.0738 +0 0.0799 +0 0.1036 +0 0.1444 +0 0.0581 +0 0.0645 +0 0.0557 +0 0.0671 +0 0.0734 +0 0.0798 +0 0.0545 +0 0.0881 +0 0.0956 +0 0.1655 +0 0.0954 +0 0.1663 +0 0.1107 +0 0.0830 +0 0.0843 +0 0.1547 +0 0.0697 +0 0.2998 +0 0.0868 +0 0.1369 +0 0.1622 +0 0.2276 +0 0.1008 +0 0.0524 +0 0.1664 +0 0.1232 +0 0.1237 +0 0.3104 +0 0.1136 +0 0.0850 +0 0.5555 +0 0.1282 +0 0.0597 +0 0.0799 +0 0.1679 +0 0.5188 +0 0.1634 +0 0.0499 +0 0.1449 +0 0.4361 +0 0.0961 +0 0.2339 +0 0.0612 +0 0.1006 +0 0.2780 +0 0.0514 +0 0.1545 +0 0.1148 +0 0.0863 +0 0.1411 +0 0.0839 +0 0.0445 +0 0.0886 +0 0.1401 +1 0.7830 +0 0.4390 +0 0.1275 +0 0.1184 +0 0.2003 +0 0.0739 +0 0.1305 +0 0.2260 +0 0.0794 +0 0.0733 +0 0.1684 +0 0.1505 +0 0.1049 +0 0.0649 +0 0.0513 +0 0.0806 +0 0.0620 +0 0.2473 +0 0.1418 +0 0.1271 +0 0.1364 +0 0.4363 +0 0.1503 +0 0.0499 +0 0.0897 +0 0.0345 +0 0.1306 +0 0.1612 +0 0.0572 +0 0.1579 +0 0.1888 +0 0.2032 +0 0.0854 +0 0.0579 +0 0.0546 +0 0.1026 +0 0.0689 +0 0.0670 +0 0.1867 +0 0.1223 +0 0.0678 +0 0.0866 +0 0.3193 +0 0.2740 +0 0.2028 +0 0.0879 +0 0.0780 +0 0.6194 +0 0.3122 +0 0.1145 +0 0.1551 +0 0.1329 +0 0.1177 +0 0.1273 +0 0.0621 +0 0.0978 +0 0.0400 +0 0.0720 +0 0.2526 +0 0.0778 +0 0.1797 +0 0.1125 +0 0.0716 +0 0.0648 +0 0.1333 +0 0.0903 +0 0.0844 +0 0.1015 +0 0.2098 +0 0.0635 +0 0.1461 +0 0.0763 +0 0.1651 +0 0.0854 +0 0.0803 +0 0.1212 +0 0.0590 +0 0.1064 +0 0.3403 +0 0.1211 +0 0.0699 +0 0.0585 +0 0.1491 +0 0.0677 +0 0.3632 +0 0.1438 +0 0.1945 +0 0.0642 +0 0.0926 +0 0.2021 +0 0.0732 +0 0.2122 +0 0.1678 +0 0.2629 +0 0.2062 +0 0.0630 +0 0.1062 +0 0.2282 +0 0.0796 +0 0.0957 +0 0.1216 +0 0.1130 +0 0.1353 +1 0.8706 +0 0.0948 +0 0.1152 +0 0.1043 +0 0.3314 +0 0.1406 +0 0.1366 +0 0.0846 +0 0.1987 +0 0.3426 +0 0.1221 +0 0.0500 +0 0.1376 +0 0.0724 +0 0.0576 +0 0.1191 +0 0.0368 +0 0.1404 +0 0.2091 +0 0.1357 +0 0.1601 +0 0.0520 +0 0.0841 +0 0.1998 +0 0.0770 +0 0.0464 +0 0.0854 +0 0.0595 +0 0.0845 +0 0.1239 +0 0.3129 +0 0.0616 +0 0.0813 +0 0.0575 +0 0.0705 +0 0.1033 +0 0.0669 +0 0.1396 +0 0.1122 +1 0.7856 +0 0.6091 +0 0.1534 +0 0.0789 +0 0.0572 +0 0.0942 +0 0.6491 +0 0.1569 +0 0.1058 +1 0.8580 +0 0.0754 +0 0.0964 +1 0.7834 +1 0.8530 +1 0.7960 +0 0.1239 +0 0.0417 +0 0.0974 +0 0.0549 +0 0.0981 +0 0.1665 +0 0.0842 +0 0.0815 +0 0.0853 +0 0.1758 +0 0.1283 +0 0.1031 +0 0.3603 +0 0.3216 +0 0.1431 +0 0.3799 +0 0.0708 +0 0.0952 +1 0.8487 +0 0.1376 +0 0.2005 +0 0.0797 +0 0.0832 +0 0.0622 +0 0.0540 +1 0.7756 +0 0.3553 +0 0.2091 +0 0.3552 +0 0.1389 +0 0.1994 +0 0.3329 +0 0.0788 +0 0.0999 +0 0.3272 +0 0.0992 +0 0.4521 +0 0.0488 +0 0.0529 +0 0.1055 +0 0.1870 +0 0.0784 +0 0.1419 +0 0.1685 +0 0.0787 +0 0.1345 +0 0.0877 +0 0.1846 +0 0.0895 +0 0.1831 +0 0.0633 +0 0.0860 +0 0.0814 +0 0.3383 +0 0.0818 +0 0.0753 +0 0.1013 +0 0.1604 +0 0.1357 +0 0.2050 +0 0.3892 +0 0.0365 +0 0.0678 +0 0.0793 +0 0.0872 +0 0.3211 +0 0.0639 +0 0.0498 +0 0.0523 +0 0.0951 +1 0.7706 +0 0.0677 +0 0.5197 +0 0.4997 +0 0.2181 +0 0.0885 +0 0.0710 +0 0.1600 +0 0.0644 +0 0.0347 +0 0.0419 +0 0.0384 +0 0.2099 +0 0.0650 +0 0.7095 +0 0.2043 +0 0.0621 +0 0.1764 +0 0.1525 +0 0.1097 +0 0.0478 +0 0.0688 +0 0.0528 +0 0.1595 +0 0.0675 +0 0.1771 +0 0.2520 +0 0.0535 +0 0.0968 +0 0.0405 +0 0.1165 +0 0.0418 +0 0.1091 +0 0.1559 +0 0.2214 +0 0.0783 +0 0.1182 +0 0.0880 +0 0.1423 +0 0.0523 +0 0.0643 +0 0.2047 +0 0.1302 +0 0.1127 +0 0.3936 +0 0.0699 +0 0.2385 +0 0.1288 +0 0.3375 +0 0.3919 +0 0.1126 +0 0.1420 +0 0.0499 +0 0.2735 +0 0.0637 +0 0.5003 +0 0.1018 +0 0.0755 +0 0.1554 +0 0.1708 +0 0.1149 +0 0.0975 +0 0.1219 +0 0.3135 +0 0.0799 +0 0.1068 +0 0.0613 +0 0.2770 +0 0.2027 +0 0.0668 +0 0.0704 +0 0.0627 +0 0.0556 +0 0.1243 +0 0.3002 +0 0.1014 +0 0.1806 +0 0.0611 +0 0.0346 +0 0.0955 +0 0.3867 +0 0.1548 +0 0.0982 +0 0.1821 +0 0.0962 +0 0.1456 +0 0.2192 +0 0.0665 +0 0.1557 +0 0.0373 +0 0.1825 +0 0.1099 +0 0.0910 +0 0.0966 +0 0.1824 +0 0.0811 +0 0.0398 +0 0.0767 +0 0.0575 +0 0.0575 +0 0.2315 +0 0.1232 +0 0.0775 +0 0.2804 +0 0.0900 +0 0.1241 +0 0.0337 +0 0.3190 +0 0.1199 +0 0.0916 +0 0.1284 +0 0.1415 +0 0.0945 +0 0.0697 +0 0.1483 +0 0.3339 +0 0.2106 +0 0.1481 +0 0.0990 +0 0.1579 +0 0.1699 +0 0.0928 +0 0.0946 +0 0.1442 +0 0.0741 +0 0.0956 +0 0.0879 +0 0.1620 +0 0.1361 +0 0.0957 +0 0.0683 +0 0.1192 +0 0.0429 +0 0.5503 +0 0.2431 +0 0.1262 +0 0.0639 +0 0.1565 +0 0.1705 +0 0.0647 +0 0.1314 +0 0.0571 +0 0.2350 +0 0.1446 +0 0.0762 +0 0.1296 +0 0.0650 +0 0.2853 +0 0.1500 +0 0.2624 +0 0.0517 +0 0.3185 +0 0.1561 +0 0.4679 +0 0.2087 +0 0.0610 +0 0.0653 +0 0.0800 +0 0.0868 +1 0.8108 +0 0.2862 +0 0.1023 +0 0.1624 +0 0.1149 +0 0.1042 +0 0.0886 +0 0.1288 +0 0.2177 +0 0.1810 +0 0.1477 +0 0.0756 +1 0.8409 +0 0.3103 +0 0.0864 +0 0.0867 +0 0.0625 +0 0.1603 +0 0.1154 +0 0.0417 +0 0.0905 +0 0.0825 +0 0.2622 +0 0.0848 +0 0.1346 +0 0.1912 +0 0.0520 +0 0.0587 +0 0.0436 +0 0.2466 +0 0.2012 +0 0.1491 +0 0.0823 +0 0.3637 +0 0.1301 +0 0.1380 +0 0.0570 +0 0.0923 +0 0.0650 +0 0.2661 +0 0.1270 +0 0.0405 +0 0.0668 +0 0.0701 +0 0.2253 +0 0.1091 +0 0.0917 +0 0.0968 +0 0.7175 +0 0.5191 +0 0.1034 +0 0.1949 +0 0.1023 +0 0.2051 +0 0.0341 +0 0.2402 +0 0.0732 +0 0.0713 +0 0.0732 +0 0.0344 +0 0.0886 +0 0.3644 +0 0.0973 +0 0.1083 +0 0.0689 +0 0.2129 +0 0.7221 +0 0.1397 +0 0.1272 +0 0.4878 +0 0.0665 +0 0.0890 +1 0.8411 +0 0.2987 +0 0.0739 +0 0.2058 +0 0.1352 +0 0.1051 +0 0.0397 +0 0.0667 +0 0.2908 +0 0.1705 +0 0.0495 +0 0.0494 +0 0.1743 +0 0.1830 +0 0.0692 +0 0.1206 +0 0.1284 +0 0.0594 +0 0.0903 +0 0.1748 +0 0.1005 +0 0.0769 +0 0.0656 +0 0.0664 +0 0.1840 +0 0.0656 +0 0.2794 +0 0.1063 +0 0.0536 +0 0.1180 +0 0.0793 +0 0.2720 +0 0.1124 +0 0.0346 +0 0.0801 +0 0.0893 +0 0.0620 +0 0.2121 +0 0.1091 +0 0.0342 +0 0.0751 +0 0.1844 +0 0.0757 +0 0.1253 +0 0.3527 +0 0.1121 +0 0.0738 +0 0.1040 +0 0.0970 +0 0.0703 +0 0.1489 +0 0.0486 +0 0.1287 +0 0.0658 +0 0.0527 +0 0.0922 +0 0.1108 +0 0.1162 +0 0.1735 +0 0.0647 +0 0.4769 +1 0.7546 +0 0.0959 +0 0.0966 +0 0.0559 +0 0.0492 +0 0.2791 +0 0.0692 +0 0.0814 +0 0.0608 +0 0.0917 +0 0.1766 +0 0.1061 +0 0.0962 +0 0.0971 +1 0.8112 +0 0.1143 +0 0.1825 +0 0.1434 +0 0.2077 +0 0.1294 +0 0.0636 +0 0.0447 +0 0.1476 +0 0.0465 +0 0.1037 +0 0.2646 +0 0.1209 +0 0.0650 +0 0.1288 +0 0.0560 +0 0.1499 +0 0.1021 +0 0.1496 +0 0.2205 +0 0.0387 +0 0.0589 +0 0.0614 +0 0.0417 +0 0.1679 +0 0.1211 +0 0.2655 +0 0.1261 +0 0.0596 +0 0.0428 +0 0.1049 +0 0.0353 +0 0.0817 +0 0.1575 +0 0.1335 +0 0.0861 +0 0.2656 +0 0.1127 +0 0.0515 +0 0.1029 +0 0.1005 +0 0.0375 +0 0.1371 +0 0.1067 +0 0.3057 +0 0.0580 +0 0.1558 +0 0.1020 +1 0.8182 +0 0.4052 +0 0.0488 +0 0.0459 +0 0.0459 +0 0.2614 +0 0.1242 +0 0.1034 +0 0.0385 +0 0.0573 +0 0.0855 +0 0.0666 +0 0.0812 +0 0.2340 +0 0.0800 +0 0.0767 +0 0.3678 +0 0.3293 +0 0.3329 +0 0.0461 +0 0.1403 +0 0.1576 +0 0.0778 +0 0.2307 +0 0.0405 +0 0.0698 +0 0.0914 +1 0.8613 +0 0.2616 +0 0.2431 +0 0.3147 +0 0.3176 +0 0.0803 +0 0.0716 +0 0.0407 +0 0.1446 +0 0.1639 +0 0.2538 +0 0.3666 +0 0.0755 +0 0.0789 +0 0.0588 +0 0.0511 +0 0.0683 +0 0.0661 +0 0.0965 +0 0.0411 +0 0.0434 +0 0.1175 +0 0.1116 +0 0.0749 +0 0.7242 +0 0.2454 +0 0.2822 +0 0.0978 +0 0.0690 +0 0.0519 +0 0.3520 +0 0.0452 +0 0.0486 +0 0.1304 +0 0.1010 +0 0.1095 +0 0.2010 +0 0.1698 +0 0.0611 +0 0.1273 +0 0.0893 +0 0.0624 +0 0.2530 +0 0.1806 +0 0.2318 +0 0.1015 +0 0.2511 +0 0.1113 +0 0.0495 +0 0.0761 +0 0.2271 +0 0.1728 +0 0.0872 +0 0.0479 +0 0.0422 +0 0.1296 +0 0.2110 +0 0.1125 +0 0.0629 +0 0.1196 +0 0.1867 +0 0.0781 +0 0.1184 +0 0.0953 +0 0.1431 +0 0.0763 +0 0.0825 +0 0.1057 +0 0.1327 +0 0.1479 +0 0.0340 +0 0.0424 +0 0.0463 +0 0.0428 +0 0.1295 +0 0.1555 +0 0.0649 +0 0.1326 +0 0.0663 +0 0.0786 +0 0.1043 +0 0.0707 +0 0.1011 +0 0.1592 +0 0.6420 +0 0.3259 +0 0.0985 +0 0.1030 +0 0.1894 +0 0.5254 +0 0.0486 +0 0.1371 +0 0.3721 +0 0.3930 +0 0.1058 +0 0.0996 +0 0.0676 +0 0.0754 +0 0.1191 +0 0.1260 +0 0.0649 +0 0.0579 +0 0.0915 +0 0.1416 +0 0.2681 +0 0.1110 +0 0.0798 +0 0.0553 +0 0.0667 +0 0.0512 +0 0.0794 +0 0.2005 +0 0.0797 +0 0.1110 +0 0.0682 +0 0.4304 +0 0.0774 +0 0.1096 +0 0.0467 +0 0.1513 +0 0.0905 +1 0.8674 +0 0.0595 +0 0.0439 +0 0.0627 +0 0.0873 +1 0.8085 +0 0.0351 +0 0.0719 +0 0.3167 +0 0.0840 +0 0.0586 +0 0.1532 +0 0.0889 +0 0.1269 +0 0.1753 +0 0.0523 +0 0.0754 +1 0.8352 +0 0.1243 +0 0.1082 +0 0.1500 +0 0.5191 +0 0.1974 +0 0.0469 +0 0.0350 +0 0.0542 +1 0.8505 +0 0.1603 +0 0.0937 +0 0.0719 +0 0.1604 +0 0.0341 +0 0.0592 +0 0.0478 +0 0.2714 +0 0.1753 +0 0.1609 +0 0.6389 +0 0.0681 +0 0.0740 +0 0.1705 +0 0.2285 +0 0.6786 +0 0.0659 +0 0.0766 +0 0.1837 +0 0.5095 +0 0.0473 +0 0.0836 +0 0.0580 +0 0.1402 +0 0.1356 +0 0.1038 +0 0.0611 +0 0.0998 +0 0.1517 +0 0.1593 +0 0.0902 +0 0.1150 +0 0.1306 +0 0.1538 +0 0.0429 +0 0.1367 +0 0.0589 +0 0.0716 +0 0.0678 +0 0.1268 +0 0.2336 +0 0.0712 +0 0.1812 +0 0.0926 +0 0.0341 +0 0.0362 +0 0.0538 +0 0.0553 +0 0.0739 +0 0.0858 +0 0.1755 +0 0.1017 +0 0.0654 +0 0.4746 +0 0.0868 +0 0.0925 +0 0.1017 +0 0.0487 +0 0.0740 +0 0.3035 +0 0.0973 +0 0.1250 +0 0.3094 +0 0.0958 +0 0.0965 +0 0.1581 +0 0.0722 +0 0.0442 +0 0.0664 +0 0.0740 +0 0.1525 +0 0.1093 +0 0.3849 +0 0.1287 +0 0.2080 +0 0.0823 +0 0.0723 +0 0.2097 +0 0.0942 +0 0.1505 +0 0.0426 +0 0.5208 +0 0.1999 +0 0.0836 +0 0.1656 +0 0.3063 +0 0.0492 +0 0.1785 +0 0.1324 +0 0.0477 +0 0.0549 +0 0.1406 +0 0.2240 +0 0.1225 +0 0.1717 +0 0.0365 +0 0.0760 +0 0.1844 +0 0.0952 +0 0.4283 +0 0.1363 +0 0.0422 +0 0.6215 +0 0.1411 +0 0.0449 +0 0.4233 +0 0.1593 +0 0.0588 +0 0.4969 +0 0.0944 +0 0.1869 +0 0.0902 +0 0.0507 +0 0.2744 +0 0.5902 +0 0.1428 +0 0.1346 +0 0.1020 +0 0.4594 +0 0.0874 +0 0.0669 +0 0.5532 +0 0.1143 +0 0.3746 +0 0.2145 +0 0.1764 +0 0.1892 +0 0.3715 +0 0.0745 +1 0.7942 +0 0.0537 +0 0.1348 +0 0.1329 +0 0.0461 +0 0.4243 +0 0.1160 +0 0.2722 +0 0.1082 +0 0.1073 +0 0.1036 +0 0.1159 +0 0.1164 +0 0.0777 +0 0.0519 +0 0.2874 +0 0.0784 +0 0.0465 +0 0.1776 +0 0.0636 +0 0.3122 +0 0.1105 +0 0.0455 +0 0.0632 +0 0.1113 +0 0.2135 +0 0.1053 +0 0.2252 +0 0.7313 +0 0.1230 +0 0.0768 +0 0.0809 +0 0.0579 +0 0.0551 +0 0.0933 +0 0.2125 +0 0.0361 +0 0.0584 +0 0.1084 +0 0.2319 +0 0.1045 +0 0.0945 +0 0.0615 +0 0.2944 +0 0.1960 +0 0.1475 +0 0.0750 +0 0.1594 +0 0.1487 +0 0.1460 +0 0.2288 +0 0.1280 +0 0.1993 +0 0.0815 +0 0.0417 +0 0.0892 +0 0.0723 +0 0.0566 +0 0.0964 +0 0.3246 +0 0.1124 +0 0.1496 +0 0.1867 +0 0.1894 +0 0.0983 +0 0.0596 +0 0.1062 +0 0.1157 +0 0.1667 +0 0.0856 +0 0.2008 +0 0.1495 +1 0.7974 +0 0.0840 +1 0.7600 +0 0.1644 +0 0.1800 +0 0.1466 +0 0.1415 +0 0.2035 +0 0.1072 +0 0.0613 +0 0.0794 +0 0.0478 +0 0.1752 +0 0.0989 +0 0.0888 +0 0.0404 +0 0.0381 +0 0.1253 +0 0.3657 +0 0.1323 +0 0.1032 +0 0.1089 +0 0.0967 +0 0.0633 +0 0.1475 +0 0.1022 +0 0.1759 +0 0.1718 +0 0.0848 +0 0.1728 +0 0.0753 +0 0.0498 +0 0.0895 +0 0.1555 +0 0.2127 +0 0.1018 +0 0.5610 +0 0.0622 +0 0.1643 +0 0.0820 +0 0.0891 +0 0.2410 +0 0.1961 +0 0.6464 +0 0.2251 +0 0.1097 +1 0.8592 +0 0.0408 +0 0.0701 +0 0.5570 +0 0.1164 +0 0.0932 +0 0.0785 +0 0.0646 +0 0.0902 +0 0.1070 +0 0.1443 +0 0.2261 +0 0.1040 +0 0.1160 +0 0.0812 +0 0.1753 +0 0.0693 +0 0.1445 +0 0.0833 +0 0.0403 +0 0.3140 +0 0.2106 +0 0.2413 +0 0.2336 +0 0.1219 +0 0.2904 +0 0.0399 +0 0.1536 +0 0.1421 +0 0.6748 +0 0.0611 +0 0.3053 +0 0.1540 +0 0.0711 +0 0.2254 +0 0.0548 +0 0.0949 +0 0.0982 +0 0.0986 +0 0.1123 +0 0.1216 +0 0.1187 +0 0.0330 +0 0.0554 +0 0.0647 +0 0.1155 +0 0.0801 +0 0.0653 +0 0.0882 +0 0.2627 +0 0.7341 +0 0.1112 +0 0.0647 +0 0.0487 +0 0.0925 +0 0.0375 +0 0.1811 +0 0.0768 +0 0.2186 +0 0.1210 +0 0.0915 +0 0.0564 +0 0.1468 +0 0.6217 +0 0.0996 +0 0.3013 +0 0.1023 +0 0.0851 +0 0.2072 +0 0.1574 +0 0.0723 +0 0.1779 +0 0.1978 +0 0.1983 +0 0.1099 +0 0.0960 +0 0.0788 +0 0.1393 +0 0.1900 +0 0.0462 +0 0.0886 +0 0.1005 +0 0.2909 +0 0.2583 +0 0.1241 +0 0.2281 +0 0.1802 +0 0.1875 +0 0.2280 +0 0.5129 +0 0.1452 +0 0.1541 +0 0.1847 +0 0.1371 +0 0.1734 +0 0.0941 +0 0.0780 +0 0.0939 +0 0.1770 +0 0.0629 +0 0.0576 +0 0.1399 +0 0.0811 +0 0.2731 +0 0.2709 +0 0.0447 +0 0.0535 +0 0.0780 +0 0.0671 +0 0.1329 +0 0.1353 +0 0.0978 +0 0.1499 +0 0.0759 +0 0.1466 +0 0.0790 +0 0.1535 +0 0.0850 +0 0.1620 +0 0.0955 +0 0.0837 +0 0.1752 +0 0.1065 +0 0.2853 +1 0.8306 +0 0.0649 +0 0.0670 +0 0.0847 +0 0.1138 +0 0.0823 +0 0.0661 +0 0.0866 +0 0.0886 +0 0.0488 +0 0.1016 +0 0.0722 +0 0.0707 +0 0.0552 +0 0.0798 +0 0.1891 +0 0.1702 +0 0.1544 +0 0.0713 +0 0.0958 +0 0.2986 +0 0.0757 +0 0.1168 +0 0.0676 +0 0.0905 +0 0.0427 +0 0.0820 +0 0.1516 +0 0.1043 +0 0.1463 +0 0.1103 +0 0.0422 +0 0.2612 +0 0.0556 +0 0.0790 +0 0.0656 +0 0.0533 +0 0.0675 +0 0.1645 +0 0.2116 +0 0.1137 +0 0.1096 +1 0.7905 +0 0.0969 +0 0.0983 +0 0.0567 +0 0.1562 +0 0.2012 +0 0.0483 +0 0.3984 +0 0.1749 +0 0.2848 +0 0.2219 +1 0.7653 +0 0.1097 +0 0.1459 +0 0.0521 +0 0.0468 +0 0.2599 +0 0.1468 +0 0.0874 +0 0.0965 +0 0.0821 +0 0.1016 +0 0.1768 +0 0.1547 +0 0.2647 +0 0.0703 +0 0.1242 +0 0.0939 +0 0.3596 +0 0.0972 +0 0.0741 +0 0.2022 +0 0.0474 +0 0.0395 +0 0.0974 +0 0.0691 +0 0.0414 +0 0.1155 +0 0.0644 +0 0.1038 +0 0.0622 +0 0.0913 +0 0.1770 +0 0.1737 +0 0.0775 +0 0.0447 +0 0.0552 +0 0.0563 +0 0.1038 +0 0.2560 +0 0.1200 +0 0.4001 +0 0.1206 +0 0.0667 +0 0.0593 +0 0.1154 +0 0.0995 +0 0.2257 +0 0.2142 +0 0.0743 +0 0.1032 +0 0.1031 +0 0.0675 +0 0.1639 +0 0.0445 +0 0.0581 +0 0.1959 +0 0.1334 +0 0.0782 +0 0.0853 +0 0.0999 +0 0.1028 +0 0.0804 +0 0.2106 +0 0.5624 +0 0.1012 +0 0.4699 +0 0.1177 +0 0.0488 +0 0.0937 +0 0.1230 +0 0.0979 +0 0.0921 +0 0.2583 +0 0.1376 +0 0.0658 +0 0.0650 +0 0.0555 +0 0.0697 +0 0.2004 +0 0.0950 +0 0.4857 +0 0.0557 +0 0.2067 +0 0.2246 +0 0.1179 +0 0.1083 +0 0.1399 +0 0.0629 +0 0.0634 +0 0.2509 +0 0.2493 +0 0.0830 +0 0.1860 +0 0.0338 +0 0.0552 +0 0.0717 +0 0.0483 +0 0.0543 +0 0.1531 +0 0.0539 +0 0.6141 +0 0.0935 +0 0.0760 +0 0.1242 +0 0.0555 +0 0.0517 +0 0.0704 +0 0.1792 +0 0.0807 +0 0.1349 +0 0.1194 +0 0.0616 +0 0.0674 +0 0.0509 +0 0.1068 +0 0.1248 +0 0.1010 +0 0.1803 +0 0.1411 +0 0.1954 +0 0.0766 +0 0.1366 +0 0.1242 +0 0.1097 +0 0.1501 +0 0.1054 +0 0.0919 +0 0.1323 +0 0.1440 +0 0.1313 +0 0.0394 +0 0.1566 +0 0.1020 +0 0.4159 +0 0.0670 +0 0.0509 +0 0.2011 +0 0.4187 +0 0.0623 +0 0.3854 +0 0.0335 +0 0.1348 +0 0.1687 +0 0.0857 +0 0.0752 +0 0.1050 +0 0.0890 +0 0.1645 +0 0.1027 +0 0.1081 +0 0.0916 +0 0.1658 +0 0.1306 +0 0.0920 +0 0.0324 +0 0.0340 +0 0.7013 +0 0.1064 +0 0.1139 +0 0.1298 +0 0.2264 +0 0.0765 +0 0.1213 +0 0.0512 +0 0.0731 +0 0.0683 +0 0.0908 +0 0.1240 +0 0.3046 +0 0.1321 +0 0.2479 +0 0.3059 +0 0.1810 +0 0.1250 +0 0.0634 +0 0.0414 +0 0.0655 +0 0.1431 +0 0.1043 +0 0.0538 +0 0.2393 +0 0.3485 +0 0.2560 +0 0.1108 +0 0.1483 +0 0.2301 +0 0.2854 +0 0.1500 +0 0.0372 +0 0.2357 +0 0.0778 +0 0.2727 +0 0.0852 +0 0.0889 +0 0.2022 +0 0.0710 +0 0.0598 +0 0.1506 +0 0.0708 +0 0.3127 +0 0.0546 +0 0.1058 +0 0.1811 +0 0.3971 +0 0.0703 +0 0.0725 +0 0.1467 +0 0.1300 +0 0.0510 +0 0.2002 +0 0.0758 +0 0.1311 +0 0.4226 +1 0.8244 +0 0.0937 +0 0.1897 +0 0.3244 +0 0.1585 +0 0.1675 +0 0.0575 +0 0.1921 +0 0.0655 +0 0.1037 +0 0.0532 +0 0.0758 +0 0.0672 +0 0.0743 +0 0.0875 +0 0.0575 +0 0.0735 +0 0.0454 +0 0.0657 +0 0.1668 +0 0.1201 +0 0.0605 +0 0.1220 +0 0.0590 +0 0.2305 +0 0.0625 +0 0.0659 +0 0.1274 +0 0.1155 +0 0.0638 +0 0.1092 +0 0.0739 +0 0.0938 +0 0.0813 +0 0.0670 +0 0.0777 +0 0.0336 +0 0.0514 +0 0.1595 +0 0.1034 +0 0.0670 +0 0.0402 +0 0.0612 +0 0.0959 +0 0.0418 +1 0.7558 +0 0.1900 +0 0.3465 +0 0.1187 +0 0.0614 +0 0.2037 +0 0.0602 +0 0.2347 +0 0.1759 +0 0.0511 +0 0.1593 +0 0.0761 +0 0.1386 +0 0.0676 +0 0.1414 +0 0.0655 +0 0.0492 +0 0.0695 +0 0.0461 +0 0.0659 +0 0.1414 +0 0.0874 +0 0.0764 +0 0.1834 +0 0.1780 +0 0.2279 +0 0.1023 +0 0.1243 +0 0.2250 +0 0.2152 +0 0.1368 +0 0.0751 +0 0.0450 +0 0.0609 +0 0.1138 +0 0.1013 +0 0.0934 +0 0.1215 +0 0.1300 +0 0.2012 +0 0.1000 +0 0.1033 +0 0.0582 +0 0.2822 +0 0.1169 +0 0.2458 +0 0.0400 +0 0.1098 +0 0.0803 +0 0.1472 +0 0.0375 +0 0.1425 +0 0.0908 +0 0.6774 +0 0.0566 +0 0.1794 +0 0.0638 +0 0.1726 +0 0.0654 +0 0.0855 +0 0.0633 +0 0.0464 +0 0.0579 +0 0.1730 +0 0.1847 +0 0.0944 +0 0.0654 +0 0.2293 +0 0.5551 +0 0.2518 +0 0.0708 +0 0.0776 +0 0.1403 +0 0.1355 +0 0.0962 +0 0.0489 +0 0.2755 +0 0.0997 +0 0.3755 +0 0.1105 +0 0.0749 +0 0.0936 +0 0.0788 +0 0.1032 +0 0.0535 +0 0.0978 +0 0.0691 +0 0.1355 +0 0.0898 +0 0.0883 +0 0.1387 +0 0.0858 +0 0.0842 +0 0.1701 +0 0.3636 +0 0.0961 +0 0.1209 +0 0.1190 +0 0.1913 +0 0.1228 +0 0.0292 +0 0.0910 +0 0.1020 +0 0.0722 +0 0.0709 +0 0.1066 +0 0.0904 +0 0.0631 +0 0.2447 +0 0.0355 +0 0.2376 +0 0.0750 +0 0.1652 +0 0.1483 +0 0.0622 +0 0.1361 +0 0.1031 +0 0.0756 +0 0.1874 +0 0.1246 +0 0.0680 +0 0.0748 +0 0.3365 +0 0.2768 +0 0.0819 +0 0.0403 +0 0.1595 +0 0.0688 +0 0.0601 +0 0.0716 +0 0.0946 +0 0.0737 +0 0.1095 +0 0.0870 +0 0.0873 +0 0.1330 +0 0.0449 +0 0.1055 +0 0.2828 +0 0.1707 +0 0.0787 +0 0.0891 +0 0.2959 +0 0.0631 +0 0.0722 +0 0.0939 +0 0.0798 +0 0.0626 +0 0.1073 +0 0.7405 +0 0.1344 +0 0.1738 +0 0.0549 +0 0.1208 +0 0.0582 +0 0.3303 +0 0.0774 +0 0.2640 +0 0.1016 +0 0.0613 +0 0.0470 +0 0.3213 +0 0.0858 +0 0.1491 +0 0.0971 +0 0.1341 +0 0.1789 +0 0.0684 +0 0.6678 +0 0.5488 +0 0.1275 +0 0.0851 +0 0.1470 +0 0.3224 +0 0.2829 +0 0.0594 +0 0.1283 +0 0.3607 +0 0.0851 +0 0.0528 +0 0.1493 +0 0.2320 +0 0.1188 +0 0.1676 +0 0.1024 +1 0.7921 +0 0.2206 +0 0.0892 +0 0.1049 +0 0.0366 +0 0.0458 +0 0.0708 +0 0.1017 +0 0.0987 +0 0.0931 +0 0.0706 +0 0.3015 +0 0.0466 +1 0.8051 +0 0.0795 +0 0.1281 +0 0.0608 +0 0.1327 +0 0.0752 +0 0.0324 +0 0.0704 +0 0.5693 +0 0.0374 +0 0.2073 +0 0.1710 +0 0.0684 +0 0.0668 +0 0.1893 +0 0.1026 +0 0.1174 +0 0.5705 +0 0.0427 +0 0.0754 +0 0.0707 +0 0.0796 +0 0.2541 +0 0.0549 +0 0.0691 +0 0.2638 +0 0.3648 +0 0.0739 +0 0.1106 +0 0.0371 +0 0.1741 +0 0.1379 +0 0.1715 +0 0.2573 +0 0.1521 +0 0.0536 +0 0.1815 +0 0.0594 +0 0.0993 +0 0.1203 +0 0.0725 +0 0.1498 +0 0.1650 +0 0.7038 +0 0.1243 +0 0.3086 +0 0.2256 +0 0.0544 +0 0.1550 +0 0.7189 +0 0.1305 +0 0.1343 +0 0.1192 +0 0.7013 +0 0.2449 +0 0.0712 +0 0.0725 +0 0.1000 +0 0.5622 +0 0.1640 +0 0.0733 +0 0.0484 +0 0.1679 +0 0.1662 +0 0.0442 +0 0.0533 +0 0.1187 +0 0.0750 +0 0.0957 +0 0.0619 +0 0.1290 +0 0.1698 +0 0.4421 +0 0.1451 +0 0.0692 +0 0.1685 +0 0.1266 +0 0.0851 +0 0.7153 +0 0.1266 +0 0.0981 +0 0.0597 +0 0.0385 +0 0.0495 +0 0.0452 +0 0.0626 +0 0.0526 +0 0.0623 +0 0.1635 +0 0.1241 +0 0.1016 +0 0.2760 +0 0.7386 +0 0.4795 +0 0.1362 +0 0.0975 +0 0.2102 +0 0.0327 +0 0.1647 +0 0.1384 +0 0.0696 +0 0.1734 +0 0.0825 +0 0.0682 +0 0.1250 +0 0.2264 +0 0.1367 +0 0.0534 +0 0.0586 +1 0.7956 +0 0.0439 +0 0.1829 +0 0.0645 +0 0.3580 +0 0.1162 +0 0.0689 +0 0.1170 +0 0.0777 +0 0.0796 +0 0.0538 +0 0.4194 +0 0.1141 +0 0.1469 +0 0.2051 +0 0.0529 +0 0.5778 +0 0.1110 +0 0.0666 +0 0.1732 +0 0.0859 +0 0.1705 +0 0.1212 +1 0.8641 +0 0.0748 +0 0.0931 +0 0.0748 +0 0.0397 +0 0.1348 +0 0.0685 +0 0.0511 +0 0.0390 +0 0.0731 +0 0.0572 +0 0.0681 +0 0.0667 +0 0.0872 +0 0.1224 +1 0.7710 +0 0.1750 +0 0.0950 +0 0.1042 +0 0.0672 +0 0.3722 +0 0.0668 +0 0.1445 +0 0.1090 +0 0.1906 +0 0.1582 +0 0.0821 +0 0.0801 +0 0.0870 +0 0.0925 +0 0.1032 +0 0.5625 +0 0.3989 +0 0.0796 +0 0.1940 +0 0.1012 +0 0.1359 +1 0.7645 +0 0.0698 +0 0.1011 +0 0.1159 +0 0.0945 +0 0.0810 +0 0.0688 +0 0.1946 +0 0.1015 +0 0.1038 +0 0.1226 +0 0.1903 +0 0.1150 +0 0.3864 +0 0.0698 +0 0.2047 +0 0.1100 +0 0.0713 +0 0.1120 +0 0.1089 +0 0.0580 +0 0.3147 +0 0.1367 +0 0.0845 +0 0.0505 +0 0.0684 +0 0.0591 +0 0.0384 +0 0.6422 +0 0.2846 +0 0.1385 +0 0.0454 +0 0.1287 +0 0.0457 +0 0.2130 +0 0.0882 +0 0.7470 +0 0.0774 +0 0.0557 +0 0.0795 +0 0.1452 +0 0.1318 +0 0.0774 +0 0.1946 +0 0.1918 +0 0.0473 +0 0.1543 +0 0.1713 +0 0.1571 +0 0.0458 +0 0.1825 +0 0.1868 +0 0.0881 +0 0.1811 +0 0.0485 +0 0.0966 +0 0.1688 +0 0.0407 +1 0.8768 +0 0.1209 +0 0.1169 +0 0.0464 +0 0.0667 +0 0.2385 +0 0.1822 +0 0.0900 +0 0.1053 +0 0.2045 +0 0.0684 +0 0.0427 +0 0.0978 +0 0.0904 +0 0.0806 +0 0.1024 +0 0.0680 +0 0.0439 +0 0.2180 +0 0.1138 +0 0.0597 +0 0.1350 +0 0.1372 +0 0.1288 +0 0.0571 +0 0.7473 +0 0.0854 +0 0.0761 +0 0.1418 +0 0.1243 +0 0.0932 +0 0.1270 +0 0.1106 +0 0.1410 +0 0.0538 +0 0.1633 +0 0.1258 +0 0.5417 +0 0.1253 +1 0.8506 +0 0.1429 +0 0.1158 +0 0.4620 +0 0.1143 +0 0.1177 +0 0.1263 +0 0.0824 +0 0.6700 +0 0.1490 +0 0.0570 +0 0.0490 +0 0.2342 +0 0.0777 +0 0.0388 +0 0.1860 +0 0.1337 +0 0.0742 +0 0.0524 +0 0.0605 +0 0.0822 +0 0.1475 +0 0.1863 +0 0.0975 +0 0.1784 +0 0.0769 +0 0.1231 +0 0.0453 +0 0.0946 +0 0.1021 +0 0.0516 +0 0.1734 +0 0.1103 +0 0.0468 +0 0.2010 +0 0.0627 +0 0.0377 +0 0.0881 +0 0.0680 +0 0.0864 +0 0.0662 +0 0.2115 +0 0.2009 +0 0.0668 +0 0.0723 +0 0.4942 +0 0.1313 +0 0.4308 +0 0.0808 +0 0.0894 +0 0.0977 +0 0.1483 +0 0.1094 +0 0.0423 +0 0.0689 +0 0.1401 +0 0.0389 +0 0.0341 +0 0.0871 +0 0.0394 +0 0.1083 +0 0.2118 +0 0.2260 +0 0.5521 +0 0.1358 +0 0.1234 +0 0.0318 +0 0.5806 +0 0.0731 +0 0.1731 +0 0.1389 +0 0.0491 +0 0.1136 +0 0.1991 +0 0.0671 +0 0.0831 +0 0.1466 +0 0.0570 +0 0.4195 +0 0.1735 +0 0.0932 +0 0.0709 +0 0.1949 +0 0.0514 +0 0.1206 +0 0.6504 +0 0.0833 +0 0.1255 +0 0.2450 +0 0.3172 +0 0.2195 +0 0.0949 +0 0.0450 +0 0.0654 +0 0.0590 +0 0.0778 +0 0.0375 +0 0.0631 +0 0.0595 +0 0.4818 +0 0.1463 +0 0.0598 +0 0.3236 +0 0.0630 +0 0.0654 +0 0.0647 +0 0.0881 +0 0.2140 +0 0.2274 +0 0.0987 +0 0.0558 +0 0.1556 +0 0.1136 +0 0.1797 +0 0.0591 +0 0.0747 +0 0.0779 +0 0.0529 +0 0.0765 +0 0.0407 +0 0.0720 +0 0.1456 +0 0.1195 +0 0.1303 +0 0.0971 +0 0.0999 +0 0.1070 +0 0.0713 +0 0.1683 +0 0.0758 +0 0.0858 +0 0.2011 +0 0.1669 +0 0.0418 +0 0.0904 +0 0.2562 +0 0.2925 +0 0.5406 +0 0.1024 +0 0.1294 +0 0.0552 +0 0.0373 +0 0.1395 +0 0.0846 +0 0.0860 +0 0.2290 +0 0.1980 +0 0.0775 +0 0.0906 +0 0.3815 +0 0.1502 +0 0.0741 +0 0.1728 +0 0.0915 +0 0.0571 +0 0.1277 +0 0.1481 +0 0.0909 +0 0.0572 +0 0.1230 +0 0.1853 +0 0.2247 +0 0.0716 +0 0.1369 +0 0.0539 +0 0.1405 +0 0.1153 +0 0.1227 +0 0.0865 +0 0.0694 +1 0.8467 +0 0.0556 +0 0.0782 +0 0.1652 +0 0.3262 +0 0.0711 +0 0.1048 +0 0.0878 +0 0.0718 +0 0.0975 +0 0.1930 +0 0.2347 +0 0.1715 +0 0.0797 +0 0.1154 +0 0.1489 +0 0.1001 +0 0.1495 +0 0.2264 +0 0.3943 +0 0.0596 +0 0.0974 +0 0.5583 +0 0.0609 +0 0.0801 +0 0.2607 +0 0.0836 +0 0.0882 +0 0.1006 +0 0.1955 +0 0.0437 +0 0.0810 +0 0.0622 +0 0.0557 +0 0.2108 +0 0.0724 +1 0.7820 +0 0.1459 +1 0.8094 +0 0.1519 +0 0.1743 +0 0.0796 +0 0.0642 +0 0.0450 +0 0.0739 +0 0.0630 +0 0.0671 +0 0.0809 +0 0.0666 +0 0.0672 +0 0.0760 +0 0.1453 +0 0.0632 +0 0.2793 +0 0.0616 +0 0.0517 +0 0.1113 +0 0.0937 +0 0.0775 +0 0.0928 +0 0.7468 +0 0.1261 +0 0.0516 +1 0.8979 +0 0.1082 +0 0.0640 +0 0.0465 +0 0.4273 +0 0.0898 +0 0.0529 +0 0.0652 +0 0.0968 +0 0.1779 +0 0.1254 +0 0.2981 +0 0.1842 +0 0.0915 +0 0.0723 +0 0.1301 +0 0.0758 +0 0.1234 +1 0.8720 +0 0.5992 +0 0.1932 +0 0.2142 +0 0.2483 +0 0.0813 +0 0.0821 +0 0.0582 +0 0.0717 +0 0.0550 +0 0.1162 +0 0.2337 +0 0.0789 +0 0.0761 +0 0.7219 +0 0.0596 +0 0.0910 +0 0.1344 +0 0.0594 +0 0.2391 +0 0.0883 +0 0.0933 +0 0.1222 +0 0.0894 +0 0.1602 +0 0.1178 +0 0.1621 +0 0.1320 +0 0.1987 +0 0.1175 +0 0.1140 +0 0.0897 +0 0.0932 +0 0.0822 +0 0.1075 +0 0.1317 +0 0.3010 +0 0.1070 +0 0.0574 +0 0.2209 +0 0.2274 +0 0.1992 +0 0.0796 +0 0.1820 +0 0.0662 +0 0.3179 +0 0.1501 +0 0.0854 +0 0.2412 +0 0.0677 +0 0.1045 +0 0.1228 +0 0.0977 +0 0.0516 +0 0.1182 +0 0.1469 +0 0.1697 +0 0.1140 +0 0.2459 +0 0.0813 +0 0.0811 +0 0.0751 +0 0.0685 +0 0.1590 +0 0.0928 +0 0.0942 +0 0.2031 +0 0.1187 +0 0.0617 +0 0.2015 +0 0.0945 +0 0.1710 +0 0.1034 +0 0.0653 +0 0.1081 +0 0.0759 +0 0.5893 +0 0.0663 +0 0.2121 +0 0.1042 +0 0.0566 +0 0.0783 +0 0.1303 +0 0.0647 +0 0.1472 +0 0.1177 +0 0.1277 +0 0.0394 +0 0.1126 +0 0.1297 +0 0.0774 +0 0.0894 +0 0.0380 +0 0.0748 +0 0.1394 +0 0.1103 +0 0.0719 +1 0.8829 +0 0.0558 +0 0.0351 +0 0.1777 +0 0.1058 +0 0.0957 +0 0.1063 +0 0.1092 +0 0.0737 +0 0.0269 +0 0.3386 +0 0.0605 +0 0.0350 +0 0.1093 +0 0.1417 +0 0.3300 +0 0.0604 +0 0.0766 +0 0.5535 +0 0.0908 +0 0.4342 +0 0.0736 +0 0.0848 +0 0.1409 +0 0.0680 +0 0.1044 +0 0.7094 +0 0.1034 +0 0.0515 +0 0.2464 +0 0.0683 +0 0.0617 +0 0.0921 +0 0.1145 +0 0.1537 +0 0.0356 +0 0.1215 +0 0.1582 +0 0.0567 +0 0.0602 +0 0.0655 +0 0.2084 +0 0.1342 +0 0.1228 +0 0.1072 +0 0.1609 +0 0.4006 +0 0.0593 +0 0.1967 +0 0.3214 +0 0.2523 +0 0.0907 +0 0.0394 +0 0.0720 +0 0.1387 +0 0.0549 +0 0.1875 +0 0.0785 +0 0.1316 +0 0.1331 +0 0.0927 +0 0.0770 +0 0.1428 +0 0.0939 +0 0.1079 +0 0.1003 +0 0.1269 +0 0.0617 +0 0.3034 +0 0.1135 +0 0.1193 +0 0.2595 +0 0.1701 +0 0.2124 +0 0.1232 +0 0.0687 +0 0.0636 +0 0.0637 +0 0.1282 +0 0.1129 +0 0.2623 +0 0.0739 +0 0.0672 +0 0.1350 +0 0.1352 +0 0.0760 +0 0.1061 +0 0.1131 +0 0.1965 +0 0.4071 +0 0.3476 +0 0.0938 +0 0.1442 +0 0.0647 +0 0.1917 +0 0.4003 +0 0.0453 +0 0.0847 +0 0.0603 +0 0.3752 +0 0.2062 +0 0.1042 +0 0.0694 +0 0.1153 +0 0.4860 +0 0.0479 +0 0.1687 +0 0.1509 +0 0.2144 +0 0.0612 +0 0.0537 +0 0.1854 +0 0.2131 +0 0.0713 +0 0.0634 +0 0.2751 +0 0.1532 +0 0.0653 +0 0.2702 +0 0.1472 +0 0.0486 +0 0.0570 +0 0.0753 +0 0.0911 +0 0.1119 +0 0.2321 +0 0.0598 +0 0.0613 +0 0.1307 +0 0.0432 +0 0.2052 +0 0.1315 +0 0.0766 +0 0.0692 +0 0.1535 +0 0.1896 +0 0.0611 +1 0.8564 +0 0.4037 +0 0.0999 +0 0.1169 +0 0.1460 +0 0.4323 +0 0.1339 +0 0.1241 +0 0.0458 +0 0.1559 +0 0.0969 +0 0.0386 +0 0.1285 +0 0.0902 +0 0.6376 +0 0.0602 +0 0.0318 +0 0.3929 +0 0.0691 +0 0.0724 +0 0.2692 +0 0.0644 +0 0.1120 +0 0.1951 +0 0.1168 +0 0.0641 +0 0.0822 +0 0.0551 +0 0.0920 +0 0.0409 +0 0.2630 +0 0.1877 +0 0.1335 +0 0.1764 +0 0.2116 +0 0.1706 +0 0.2497 +0 0.5040 +0 0.0732 +0 0.1122 +0 0.0752 +0 0.1534 +0 0.1645 +0 0.2102 +0 0.0734 +0 0.0859 +0 0.0456 +0 0.3495 +0 0.1629 +0 0.0703 +0 0.1092 +0 0.1127 +0 0.1350 +0 0.0509 +0 0.0970 +0 0.0920 +0 0.1824 +0 0.1655 +0 0.1257 +0 0.0803 +0 0.0870 +0 0.0450 +0 0.0732 +0 0.0718 +0 0.1137 +0 0.1843 +0 0.1905 +0 0.1090 +0 0.0418 +0 0.0941 +0 0.0539 +0 0.0581 +0 0.1221 +0 0.0665 +0 0.0548 +0 0.0807 +0 0.0638 +0 0.0998 +0 0.1426 +0 0.0535 +0 0.0493 +0 0.0714 +0 0.3004 +0 0.2899 +0 0.1300 +0 0.1559 +0 0.0981 +0 0.0718 +0 0.4137 +0 0.2586 +0 0.7021 +0 0.3942 +0 0.0695 +0 0.0611 +0 0.0739 +0 0.2105 +0 0.0675 +0 0.0338 +0 0.0482 +0 0.2074 +0 0.0586 +0 0.0702 +0 0.1203 +0 0.1378 +0 0.1256 +0 0.1639 +1 0.3097 +0 0.0855 +0 0.1878 +0 0.0681 +0 0.0879 +0 0.0719 +0 0.1930 +0 0.1335 +0 0.1769 +0 0.1203 +0 0.2026 +0 0.4434 +0 0.0853 +0 0.1934 +0 0.0958 +0 0.2408 +0 0.0515 +0 0.0488 +0 0.0574 +0 0.0958 +0 0.3850 +0 0.1083 +0 0.1585 +0 0.0573 +0 0.0854 +0 0.0947 +0 0.0477 +0 0.2006 +0 0.1454 +0 0.0564 +0 0.1012 +0 0.2122 +0 0.0705 +0 0.1240 +0 0.0667 +0 0.1936 +0 0.0765 +0 0.2976 +0 0.1806 +0 0.1066 +0 0.3673 +0 0.1936 +0 0.1304 +0 0.0361 +0 0.1652 +0 0.0538 +0 0.2645 +0 0.1108 +0 0.1777 +0 0.6076 +0 0.1573 +0 0.2249 +0 0.0769 +0 0.0479 +0 0.1137 +0 0.4217 +0 0.0635 +0 0.0782 +0 0.0512 +0 0.0481 +0 0.0482 +0 0.1008 +0 0.4567 +0 0.0540 +0 0.3352 +0 0.0723 +0 0.1509 +0 0.1362 +0 0.1950 +0 0.0928 +0 0.1161 +0 0.2127 +0 0.5624 +0 0.1116 +0 0.1367 +0 0.2943 +0 0.5293 +0 0.0634 +0 0.2360 +0 0.0843 +0 0.0650 +0 0.1337 +0 0.2212 +1 0.7910 +0 0.2249 +0 0.1288 +0 0.2194 +0 0.0465 +0 0.1602 +0 0.1904 +0 0.1192 +0 0.1029 +0 0.0805 +0 0.0729 +0 0.1206 +0 0.2377 +1 0.7814 +0 0.4343 +0 0.0688 +0 0.0976 +0 0.1093 +0 0.1596 +0 0.0910 +0 0.0722 +0 0.0582 +0 0.0646 +0 0.3623 +0 0.0770 +0 0.1159 +0 0.0810 +0 0.1158 +0 0.1406 +0 0.2568 +0 0.1229 +0 0.1435 +0 0.0551 +0 0.1120 +0 0.0845 +0 0.0924 +0 0.1294 +0 0.0717 +0 0.1216 +0 0.0654 +0 0.0952 +0 0.0848 +0 0.0974 +0 0.0590 +0 0.0564 +0 0.0669 +0 0.0724 +0 0.0599 +0 0.0922 +0 0.1275 +0 0.0855 +0 0.1112 +0 0.0685 +0 0.0890 +0 0.1794 +0 0.0760 +0 0.1127 +0 0.2259 +0 0.1415 +0 0.0739 +0 0.7499 +0 0.0924 +1 0.8261 +0 0.1163 +0 0.1174 +0 0.3489 +0 0.6761 +0 0.0542 +0 0.0493 +0 0.1067 +0 0.1156 +0 0.0977 +0 0.1916 +0 0.0566 +0 0.1445 +0 0.1155 +0 0.0890 +0 0.1104 +0 0.1360 +0 0.4623 +1 0.7824 +0 0.0878 +0 0.2277 +0 0.0884 +0 0.1846 +0 0.1972 +0 0.0678 +0 0.1263 +0 0.1849 +0 0.2257 +0 0.1652 +0 0.0883 +0 0.1491 +0 0.0713 +0 0.1885 +0 0.2563 +0 0.1939 +0 0.2162 +0 0.1665 +0 0.1411 +0 0.1059 +0 0.0648 +0 0.1402 +0 0.1658 +0 0.1270 +0 0.1072 +0 0.1200 +0 0.1782 +0 0.1185 +0 0.1105 +0 0.0545 +0 0.1700 +0 0.1113 +0 0.0509 +0 0.0378 +0 0.0402 +0 0.1353 +0 0.0468 +0 0.3924 +0 0.0998 +0 0.2552 +0 0.1692 +0 0.0687 +0 0.0830 +0 0.0779 +0 0.1245 +0 0.1410 +0 0.1010 +0 0.1332 +0 0.0845 +0 0.1594 +0 0.0926 +0 0.0795 +0 0.0849 +0 0.0622 +0 0.1221 +0 0.0769 +0 0.1600 +0 0.1229 +0 0.0770 +0 0.0767 +0 0.1018 +0 0.0971 +0 0.0795 +0 0.1117 +0 0.1311 +0 0.1011 +0 0.0751 +0 0.0801 +0 0.1097 +0 0.1519 +0 0.0877 +0 0.0471 +0 0.1226 +0 0.3023 +0 0.6388 +0 0.0724 +0 0.0880 +0 0.1735 +0 0.0360 +0 0.1446 +0 0.1075 +0 0.1116 +0 0.2183 +0 0.2301 +0 0.0447 +0 0.0736 +0 0.0495 +0 0.0696 +0 0.1305 +0 0.1992 +0 0.1378 +0 0.2444 +0 0.1088 +0 0.4267 +0 0.1084 +0 0.0961 +0 0.4001 +0 0.0586 +0 0.1226 +0 0.1367 +0 0.1191 +0 0.0649 +0 0.0981 +0 0.0540 +0 0.0991 +0 0.1550 +0 0.2556 +0 0.0596 +0 0.1295 +0 0.2003 +0 0.3665 +0 0.0408 +0 0.0558 +0 0.1214 +0 0.2998 +0 0.0808 +0 0.0877 +0 0.1509 +0 0.0757 +0 0.1749 +0 0.1298 +0 0.6746 +0 0.0864 +0 0.0696 +0 0.1399 +0 0.0905 +0 0.4435 +0 0.0706 +0 0.0835 +0 0.0859 +0 0.0709 +0 0.0547 +0 0.0536 +1 0.7628 +0 0.1263 +0 0.1954 +0 0.0588 +0 0.1028 +0 0.0938 +0 0.0619 +0 0.1335 +0 0.7171 +0 0.4654 +0 0.0987 +0 0.0391 +0 0.1540 +0 0.0985 +0 0.0802 +0 0.0836 +0 0.1046 +0 0.0563 +0 0.0697 +0 0.2682 +0 0.3740 +0 0.1864 +0 0.0904 +0 0.1645 +0 0.1304 +0 0.1058 +0 0.0786 +0 0.0377 +0 0.1239 +0 0.2004 +0 0.1282 +0 0.0674 +0 0.1993 +0 0.0770 +0 0.0734 +0 0.1412 +0 0.0879 +0 0.0743 +0 0.1180 +0 0.0813 +0 0.3320 +0 0.0460 +0 0.1068 +0 0.1277 +0 0.0978 +0 0.0560 +0 0.2208 +0 0.1313 +0 0.0846 +0 0.0671 +0 0.0427 +0 0.0349 +0 0.1181 +0 0.0731 +0 0.0401 +0 0.1797 +0 0.3077 +0 0.1270 +0 0.1216 +0 0.2780 +0 0.0912 +0 0.0657 +0 0.3100 +0 0.1217 +0 0.1273 +0 0.3337 +0 0.0406 +0 0.1407 +0 0.3684 +0 0.1764 +0 0.1008 +0 0.2557 +1 0.8666 +0 0.1070 +0 0.1463 +0 0.1926 +0 0.2940 +0 0.0981 +0 0.2575 +0 0.1515 +0 0.4919 +0 0.5047 +0 0.1102 +0 0.2460 +0 0.0805 +0 0.1081 +0 0.0799 +0 0.0793 +0 0.2135 +0 0.1065 +0 0.2019 +0 0.0372 +0 0.1036 +0 0.1783 +0 0.0379 +0 0.1934 +0 0.2223 +0 0.1551 +0 0.7092 +0 0.0472 +0 0.0885 +0 0.1865 +0 0.0970 +0 0.1642 +0 0.3924 +0 0.1645 +0 0.1095 +0 0.0525 +0 0.6606 +0 0.1182 +0 0.0513 +0 0.2724 +0 0.1039 +0 0.1133 +0 0.0757 +0 0.0600 +0 0.0754 +0 0.0642 +0 0.0778 +0 0.0660 +0 0.0794 +0 0.1462 +0 0.0672 +0 0.0606 +1 0.3626 +0 0.1586 +0 0.1140 +0 0.1125 +0 0.2231 +0 0.0637 +0 0.0351 +0 0.6077 +0 0.0838 +0 0.1127 +0 0.1111 +0 0.1326 +0 0.1052 +0 0.0815 +0 0.1442 +0 0.0877 +0 0.1217 +0 0.0531 +0 0.1878 +0 0.2319 +0 0.1152 +0 0.0698 +0 0.0710 +0 0.1403 +0 0.2440 +0 0.0776 +0 0.0414 +0 0.0435 +0 0.0519 +0 0.1108 +0 0.0463 +0 0.1409 +0 0.1365 +0 0.0961 +0 0.1058 +0 0.1664 +0 0.2703 +0 0.1206 +0 0.0605 +0 0.1719 +0 0.2094 +0 0.3047 +0 0.0975 +0 0.0911 +0 0.0945 +0 0.2040 +0 0.0533 +0 0.1420 +0 0.1017 +0 0.1513 +0 0.1235 +0 0.0657 +0 0.3188 +0 0.1912 +0 0.1136 +0 0.1127 +0 0.1737 +0 0.0995 +0 0.1920 +0 0.1679 +0 0.0882 +0 0.2836 +1 0.7917 +0 0.0538 +0 0.1318 +0 0.1216 +0 0.2133 +0 0.2309 +0 0.0756 +0 0.7337 +0 0.0799 +0 0.1446 +0 0.3069 +0 0.0532 +0 0.1104 +0 0.0608 +0 0.5124 +0 0.0813 +0 0.0778 +0 0.3293 +0 0.1036 +0 0.3715 +0 0.1053 +0 0.1229 +0 0.0932 +0 0.0498 +0 0.1976 +0 0.6999 +0 0.2958 +0 0.0508 +0 0.0585 +0 0.0662 +0 0.4412 +0 0.0577 +0 0.0559 +0 0.0870 +0 0.1179 +0 0.0804 +0 0.1979 +0 0.0887 +0 0.1259 +0 0.1489 +0 0.1470 +0 0.0354 +0 0.0790 +0 0.2563 +0 0.0599 +0 0.1266 +0 0.1257 +0 0.1241 +0 0.0727 +0 0.1096 +0 0.1793 +0 0.1022 +0 0.6046 +0 0.1853 +0 0.1159 +0 0.1113 +1 0.8955 +0 0.1059 +0 0.0701 +0 0.0688 +0 0.0722 +0 0.1883 +0 0.2539 +0 0.1301 +0 0.2363 +0 0.0929 +0 0.2200 +0 0.0778 +0 0.3550 +0 0.1369 +0 0.0904 +0 0.1071 +0 0.2529 +0 0.2183 +0 0.2226 +0 0.1273 +0 0.1983 +0 0.1570 +0 0.0505 +0 0.0928 +0 0.1921 +0 0.6698 +0 0.1445 +0 0.1206 +0 0.0949 +0 0.2194 +0 0.0932 +0 0.0736 +0 0.0561 +0 0.1285 +0 0.1741 +0 0.3088 +0 0.0836 +0 0.1360 +0 0.1409 +0 0.0581 +0 0.1279 +0 0.0831 +0 0.0959 +0 0.1837 +0 0.2079 +0 0.0723 +0 0.0422 +0 0.1214 +0 0.0521 +0 0.1116 +0 0.3576 +0 0.1797 +0 0.0629 +0 0.1052 +0 0.0719 +0 0.1475 +0 0.0727 +0 0.0535 +0 0.1905 +0 0.2351 +1 0.8933 +0 0.2443 +0 0.0549 +0 0.0696 +0 0.0882 +0 0.0991 +0 0.0420 +0 0.1626 +0 0.1200 +0 0.1875 +0 0.0694 +0 0.0350 +0 0.0870 +0 0.4613 +0 0.0663 +0 0.0927 +0 0.2157 +0 0.7118 +0 0.6472 +0 0.3761 +0 0.1375 +0 0.2254 +0 0.0709 +0 0.1233 +0 0.7356 +0 0.0491 +0 0.1424 +0 0.1221 +0 0.0922 +0 0.0939 +0 0.6702 +0 0.0571 +0 0.0312 +0 0.1682 +0 0.1853 +0 0.1085 +0 0.0572 +0 0.0743 +0 0.1873 +0 0.1842 +0 0.2097 +0 0.0588 +0 0.1007 +0 0.0725 +0 0.0771 +0 0.0766 +0 0.0574 +0 0.1135 +0 0.0806 +0 0.2200 +0 0.0453 +0 0.0420 +0 0.0977 +0 0.1338 +0 0.1112 +0 0.2177 +0 0.1268 +0 0.0861 +0 0.2822 +0 0.0765 +0 0.1033 +0 0.0718 +0 0.1169 +0 0.1099 +0 0.0871 +0 0.0459 +0 0.1397 +0 0.2949 +0 0.0325 +0 0.0445 +0 0.2020 +0 0.2105 +0 0.2432 +0 0.1923 +0 0.0472 +0 0.0762 +0 0.1157 +0 0.2883 +0 0.0742 +0 0.0678 +0 0.1594 +0 0.0729 +0 0.0681 +0 0.1855 +0 0.1120 +0 0.0998 +0 0.0479 +0 0.0848 +0 0.1885 +0 0.0343 +0 0.3546 +0 0.1110 +0 0.1294 +0 0.1443 +0 0.2179 +0 0.1092 +0 0.0790 +0 0.1113 +0 0.1544 +0 0.0995 +0 0.1450 +0 0.2212 +0 0.2857 +0 0.1903 +0 0.2425 +0 0.0666 +0 0.1472 +0 0.2630 +0 0.0917 +0 0.2063 +0 0.0861 +0 0.1119 +1 0.7968 +0 0.0470 +0 0.1562 +0 0.3225 +0 0.0450 +0 0.0700 +0 0.2475 +0 0.1081 +0 0.0812 +0 0.2459 +0 0.2464 +0 0.0915 +0 0.0601 +0 0.0732 +0 0.0671 +0 0.0453 +0 0.1168 +0 0.3562 +0 0.1473 +0 0.3651 +0 0.0657 +0 0.1898 +0 0.0886 +0 0.0311 +0 0.1497 +0 0.0565 +0 0.0503 +0 0.0980 +0 0.0879 +0 0.2813 +0 0.1272 +0 0.0626 +0 0.2889 +0 0.1734 +0 0.2786 +0 0.0487 +0 0.0772 +0 0.5769 +1 0.7983 +0 0.0783 +0 0.0378 +0 0.0791 +0 0.0811 +0 0.0640 +0 0.1741 +0 0.0871 +0 0.1203 +0 0.2072 +0 0.0540 +0 0.1391 +0 0.1199 +1 0.7804 +0 0.0773 +0 0.1103 +0 0.1389 +0 0.0642 +0 0.1122 +0 0.1389 +0 0.1132 +0 0.2533 +0 0.0507 +0 0.1171 +0 0.0888 +0 0.1017 +0 0.2204 +0 0.1698 +0 0.1118 +0 0.1061 +0 0.0616 +0 0.1271 +0 0.0563 +0 0.0706 +0 0.1253 +0 0.1554 +1 0.8536 +0 0.0696 +0 0.1253 +0 0.0494 +0 0.1974 +0 0.0807 +0 0.1720 +0 0.6851 +0 0.1217 +0 0.0382 +0 0.0519 +0 0.2887 +0 0.1991 +0 0.1024 +0 0.1349 +0 0.1661 +0 0.2319 +0 0.2830 +0 0.1019 +0 0.1110 +0 0.2325 +0 0.1417 +0 0.0660 +0 0.0674 +0 0.0652 +0 0.0610 +0 0.1038 +0 0.6284 +0 0.0821 +0 0.0612 +0 0.0931 +0 0.0772 +0 0.0922 +0 0.2484 +0 0.2459 +0 0.0649 +0 0.0909 +0 0.1904 +0 0.0585 +0 0.0475 +1 0.7632 +0 0.1358 +0 0.1177 +0 0.1195 +0 0.1530 +0 0.1933 +0 0.0531 +0 0.0591 +0 0.1832 +0 0.0494 +0 0.3435 +0 0.0895 +0 0.7162 +0 0.2110 +0 0.1435 +0 0.6610 +0 0.5152 +0 0.0668 +0 0.0935 +0 0.0808 +0 0.0462 +0 0.2015 +0 0.0381 +0 0.1713 +0 0.0787 +0 0.0903 +0 0.1345 +0 0.7071 +0 0.1075 +0 0.1852 +0 0.0882 +0 0.0825 +0 0.0445 +0 0.0892 +0 0.1459 +0 0.0534 +0 0.2263 +0 0.1330 +1 0.8729 +0 0.1281 +0 0.0509 +0 0.0878 +0 0.1195 +0 0.1193 +0 0.1359 +0 0.5858 +0 0.1118 +0 0.1961 +0 0.1183 +0 0.0456 +0 0.1061 +0 0.0847 +0 0.0562 +0 0.2104 +0 0.0881 +0 0.0493 +0 0.1461 +0 0.1463 +0 0.0792 +0 0.2442 +0 0.2059 +0 0.0446 +0 0.1717 +0 0.1307 +0 0.1065 +0 0.0896 +0 0.0902 +0 0.0933 +0 0.1627 +0 0.0461 +0 0.1997 +0 0.0929 +0 0.0339 +0 0.1563 +0 0.1121 +0 0.1994 +0 0.2350 +0 0.0644 +0 0.2139 +0 0.0879 +0 0.0647 +0 0.2456 +0 0.1101 +0 0.0865 +0 0.1008 +0 0.0803 +0 0.0827 +0 0.0863 +0 0.0967 +0 0.0985 +0 0.1602 +0 0.2028 +0 0.1788 +0 0.0470 +0 0.3044 +0 0.0638 +0 0.1331 +0 0.1850 +0 0.0565 +0 0.0450 +0 0.0967 +0 0.1311 +0 0.1612 +0 0.1863 +0 0.0920 +0 0.1255 +0 0.0652 +0 0.0715 +0 0.4995 +0 0.0997 +0 0.0548 +0 0.1226 +0 0.0646 +0 0.2408 +0 0.0570 +0 0.0529 +0 0.0847 +0 0.2940 +0 0.0689 +0 0.1803 +0 0.1331 +0 0.2344 +0 0.1400 +0 0.2627 +0 0.0724 +0 0.5512 +0 0.0799 +0 0.1075 +0 0.2647 +0 0.1754 +0 0.0645 +0 0.0770 +0 0.1935 +0 0.2301 +0 0.1004 +0 0.1205 +0 0.1145 +0 0.1516 +0 0.1049 +0 0.0928 +0 0.0610 +0 0.0948 +0 0.1593 +0 0.1094 +0 0.0469 +0 0.6407 +0 0.3091 +0 0.0987 +0 0.1497 +0 0.1401 +0 0.0709 +0 0.0731 +0 0.1163 +0 0.0821 +0 0.0668 +0 0.1079 +0 0.0616 +0 0.0880 +0 0.3032 +0 0.7357 +0 0.1078 +0 0.1450 +0 0.0489 +0 0.1590 +0 0.2591 +0 0.0525 +0 0.0843 +0 0.1404 +0 0.1652 +0 0.0631 +0 0.0852 +0 0.1003 +0 0.1260 +0 0.0997 +0 0.1553 +0 0.1626 +0 0.4905 +0 0.1377 +0 0.0797 +0 0.1082 +0 0.2822 +0 0.0679 +0 0.1453 +0 0.0449 +0 0.0741 +0 0.2047 +0 0.0449 +0 0.0916 +0 0.1280 +0 0.0865 +1 0.8042 +0 0.1397 +0 0.1698 +0 0.0653 +0 0.0537 +0 0.1225 +0 0.0977 +0 0.0991 +0 0.1624 +0 0.0605 +0 0.1835 +0 0.0647 +0 0.1386 +0 0.1514 +0 0.0791 +0 0.0543 +0 0.1182 +0 0.0722 +0 0.0412 +0 0.0390 +0 0.0814 +0 0.1917 +0 0.0533 +0 0.0839 +0 0.0856 +0 0.2383 +0 0.0451 +0 0.0814 +0 0.0852 +0 0.0957 +0 0.1080 +0 0.0918 +0 0.2073 +0 0.0943 +0 0.0857 +0 0.0587 +0 0.0851 +0 0.1002 +0 0.3102 +0 0.0782 +0 0.0663 +0 0.3445 +0 0.0948 +0 0.1490 +0 0.1458 +0 0.0811 +0 0.0801 +0 0.0466 +0 0.1455 +0 0.1930 +0 0.0664 +1 0.7966 +0 0.1495 +0 0.4899 +0 0.1352 +0 0.1302 +0 0.2739 +0 0.0924 +0 0.0558 +0 0.1238 +0 0.2938 +0 0.0521 +0 0.0565 +0 0.0583 +0 0.2232 +0 0.3108 +0 0.0757 +0 0.0749 +0 0.2206 +0 0.1058 +0 0.0411 +0 0.0956 +0 0.0705 +0 0.1053 +0 0.0412 +0 0.0969 +0 0.1925 +0 0.0474 +0 0.0768 +0 0.0921 +0 0.1704 +0 0.0856 +0 0.0890 +0 0.0491 +0 0.0414 +0 0.4112 +0 0.1681 +0 0.1454 +0 0.0895 +0 0.0434 +0 0.1438 +0 0.1916 +0 0.1211 +0 0.2999 +0 0.1221 +0 0.1161 +0 0.1524 +0 0.0672 +0 0.0649 +0 0.1082 +0 0.1573 +0 0.1206 +0 0.3140 +0 0.1673 +0 0.2321 +0 0.1610 +0 0.1884 +0 0.1275 +0 0.0653 +0 0.0870 +0 0.1780 +0 0.1470 +0 0.2512 +0 0.0813 +0 0.0737 +0 0.7390 +0 0.2530 +0 0.0777 +0 0.3711 +0 0.3481 +0 0.0881 +0 0.0641 +0 0.0736 +0 0.0669 +0 0.3112 +0 0.0693 +0 0.0906 +0 0.0609 +0 0.1042 +0 0.1428 +0 0.1034 +0 0.2071 +0 0.0457 +0 0.0580 +0 0.1868 +0 0.1559 +0 0.0873 +0 0.0648 +0 0.1946 +0 0.1669 +0 0.0668 +0 0.0631 +0 0.6674 +0 0.2444 +0 0.0719 +0 0.7458 +0 0.7110 +0 0.0815 +0 0.1019 +0 0.0828 +0 0.3434 +0 0.1903 +0 0.0694 +0 0.0595 +0 0.0386 +0 0.0336 +0 0.1643 +0 0.1294 +0 0.1024 +0 0.1385 +0 0.0750 +0 0.1160 +0 0.3430 +0 0.0548 +0 0.1063 +0 0.5509 +0 0.1312 +0 0.1858 +0 0.0789 +0 0.2265 +0 0.0363 +0 0.1593 +0 0.6183 +0 0.0962 +0 0.0571 +0 0.0870 +0 0.0455 +0 0.0492 +0 0.0520 +0 0.6057 +0 0.1389 +0 0.0495 +0 0.0730 +0 0.2530 +0 0.1066 +0 0.1103 +0 0.2969 +0 0.1503 +0 0.1189 +0 0.1250 +0 0.0725 +0 0.0622 +0 0.1426 +0 0.1233 +0 0.1326 +0 0.0975 +0 0.2015 +0 0.1669 +0 0.0945 +0 0.1744 +0 0.1730 +0 0.0926 +0 0.0429 +0 0.1953 +0 0.2990 +0 0.1022 +0 0.1194 +0 0.5448 +0 0.2192 +0 0.0954 +0 0.0606 +0 0.1654 +0 0.0413 +0 0.1046 +0 0.1691 +0 0.0946 +0 0.0626 +0 0.1343 +0 0.2208 +0 0.0718 +0 0.1058 +0 0.1072 +0 0.0712 +0 0.1646 +0 0.0555 +1 0.8405 +0 0.1109 +0 0.0768 +0 0.0994 +0 0.0706 +0 0.0633 +0 0.0390 +0 0.0867 +0 0.1202 +0 0.1338 +0 0.4676 +0 0.1070 +0 0.1005 +0 0.1703 +0 0.1141 +0 0.1229 +1 0.7696 +0 0.4094 +0 0.0801 +0 0.0841 +0 0.1368 +0 0.1510 +0 0.0354 +0 0.1177 +0 0.2126 +0 0.1632 +0 0.2281 +0 0.0642 +0 0.0568 +0 0.1275 +0 0.1417 +0 0.0647 +0 0.1004 +0 0.0762 +1 0.9061 +0 0.1373 +1 0.8541 +0 0.1793 +0 0.1087 +0 0.0453 +0 0.0680 +0 0.1273 +0 0.0707 +0 0.2880 +0 0.1207 +0 0.1594 +0 0.0922 +0 0.1088 +0 0.0623 +0 0.0504 +0 0.0948 +0 0.1394 +0 0.0891 +0 0.0979 +0 0.0808 +0 0.0928 +0 0.0592 +0 0.1762 +0 0.0755 +0 0.1700 +0 0.3000 +0 0.1121 +1 0.8116 +0 0.0473 +0 0.0665 +0 0.1019 +0 0.1816 +0 0.0972 +0 0.2780 +0 0.1743 +0 0.0697 +0 0.0846 +0 0.0501 +0 0.0664 +0 0.6966 +0 0.0751 +0 0.2182 +0 0.1927 +0 0.1176 +0 0.0599 +0 0.0537 +0 0.1463 +0 0.0919 +0 0.3285 +0 0.1080 +0 0.2413 +0 0.0388 +0 0.2528 +0 0.0426 +0 0.2744 +0 0.1355 +0 0.5681 +0 0.0418 +0 0.1020 +0 0.1497 +0 0.1004 +0 0.0911 +0 0.3027 +0 0.0572 +0 0.0687 +0 0.0633 +0 0.1302 +0 0.4111 +0 0.0728 +0 0.0636 +0 0.0558 +0 0.1637 +0 0.1363 +0 0.0864 +0 0.0545 +0 0.0621 +0 0.1677 +0 0.0772 +0 0.1002 +0 0.0763 +0 0.0818 +0 0.1792 +0 0.1380 +0 0.0830 +0 0.3876 +0 0.0506 +0 0.0752 +0 0.2058 +0 0.3480 +0 0.0556 +0 0.2033 +0 0.0629 +0 0.2394 +0 0.0532 +0 0.0689 +0 0.0900 +0 0.3687 +0 0.2128 +0 0.0901 +0 0.0860 +0 0.0972 +0 0.1374 +0 0.1526 +0 0.0650 +0 0.1388 +0 0.0678 +0 0.1259 +0 0.0508 +0 0.2625 +0 0.1480 +0 0.1520 +0 0.6725 +0 0.0666 +0 0.0786 +0 0.0952 +0 0.1446 +0 0.0787 +0 0.1119 +0 0.0934 +0 0.0821 +0 0.2614 +0 0.1853 +0 0.0608 +0 0.0394 +0 0.1578 +0 0.0979 +0 0.1416 +0 0.1461 +0 0.4257 +0 0.1478 +0 0.1189 +0 0.1314 +0 0.0931 +0 0.1045 +0 0.0526 +0 0.0539 +0 0.1773 +0 0.1673 +0 0.1436 +0 0.1380 +0 0.0933 +0 0.3125 +0 0.0577 +0 0.0553 +0 0.0846 +0 0.1540 +0 0.1125 +0 0.0671 +0 0.1216 +0 0.0689 +0 0.1120 +0 0.1254 +0 0.0607 +0 0.1704 +0 0.1396 +0 0.1640 +0 0.1007 +0 0.0708 +0 0.5033 +0 0.0749 +0 0.0431 +0 0.1096 +0 0.0675 +0 0.1160 +0 0.1252 +0 0.2446 +0 0.1160 +0 0.1179 +0 0.0739 +0 0.1663 +0 0.1512 +0 0.0637 +0 0.1192 +0 0.2992 +0 0.1488 +0 0.0741 +0 0.2409 +0 0.0882 +0 0.1178 +0 0.1713 +0 0.0681 +0 0.2550 +0 0.0621 +0 0.0691 +0 0.0555 +0 0.0727 +0 0.0867 +0 0.1103 +0 0.3206 +0 0.1064 +0 0.0678 +0 0.0643 +0 0.1816 +0 0.3217 +0 0.0867 +0 0.0713 +0 0.0514 +0 0.1380 +0 0.1996 +0 0.0767 +0 0.1231 +0 0.1965 +0 0.2356 +0 0.0491 +0 0.1855 +0 0.1646 +0 0.0580 +0 0.0360 +0 0.1224 +0 0.2651 +0 0.1315 +0 0.2511 +0 0.1104 +0 0.0486 +0 0.0517 +0 0.1534 +0 0.0863 +0 0.0578 +0 0.2297 +0 0.0887 +0 0.2057 +0 0.0939 +0 0.0627 +0 0.1984 +0 0.4001 +0 0.0501 +0 0.0655 +0 0.1087 +0 0.0407 +0 0.0541 +0 0.0935 +0 0.0816 +0 0.0656 +0 0.2256 +0 0.1115 +0 0.1025 +0 0.4266 +0 0.0449 +0 0.1045 +0 0.0578 +0 0.2314 +0 0.0335 +0 0.2255 +0 0.0898 +0 0.0638 +1 0.7979 +0 0.1794 +0 0.0738 +0 0.1101 +0 0.1070 +0 0.0837 +0 0.1272 +0 0.0430 +0 0.0596 +0 0.3522 +0 0.0543 +0 0.2056 +0 0.0929 +0 0.1027 +0 0.2369 +0 0.0989 +0 0.2275 +0 0.1165 +0 0.1453 +0 0.3000 +0 0.2416 +0 0.1378 +0 0.0641 +0 0.0792 +0 0.1452 +0 0.0404 +0 0.3049 +0 0.0636 +0 0.0812 +0 0.0876 +0 0.2121 +0 0.0555 +0 0.1046 +0 0.4237 +0 0.0600 +0 0.0569 +0 0.0978 +0 0.1882 +0 0.1435 +0 0.0659 +0 0.0502 +0 0.0516 +0 0.1058 +0 0.0788 +0 0.1039 +0 0.0873 +0 0.4139 +0 0.3946 +0 0.1192 +0 0.0953 +0 0.7062 +0 0.0877 +0 0.1628 +0 0.0338 +0 0.1268 +0 0.1114 +0 0.0571 +0 0.0720 +0 0.1199 +0 0.0539 +0 0.1508 +0 0.1716 +0 0.1405 +0 0.0534 +0 0.0639 +0 0.0648 +0 0.0963 +0 0.0722 +0 0.1106 +0 0.0554 +0 0.1518 +0 0.0967 +0 0.2881 +0 0.2348 +0 0.2473 +0 0.1065 +0 0.0458 +0 0.1047 +0 0.2408 +0 0.0464 +0 0.0717 +0 0.1443 +0 0.0958 +0 0.0430 +0 0.1023 +0 0.1019 +0 0.2478 +0 0.0628 +0 0.6887 +0 0.1196 +0 0.1475 +0 0.0914 +0 0.0784 +0 0.2653 +0 0.0790 +0 0.0501 +0 0.1297 +0 0.1193 +0 0.0587 +0 0.0875 +0 0.1610 +0 0.0481 +0 0.0823 +0 0.1494 +0 0.0789 +0 0.0643 +0 0.5870 +0 0.1632 +0 0.0517 +0 0.0855 +0 0.2638 +0 0.1428 +0 0.0500 +0 0.0913 +0 0.0497 +0 0.0928 +0 0.1464 +0 0.0763 +0 0.1034 +0 0.1677 +0 0.0747 +0 0.5848 +0 0.5041 +0 0.2195 +0 0.1135 +0 0.1015 +0 0.1450 +0 0.1347 +0 0.0626 +0 0.0771 +0 0.2193 +0 0.1616 +0 0.2089 +0 0.0377 +0 0.0350 +0 0.1320 +0 0.1463 +0 0.2888 +0 0.2440 +0 0.0673 +0 0.0972 +0 0.2752 +0 0.0587 +0 0.0800 +0 0.1556 +0 0.1854 +0 0.1681 +0 0.3116 +0 0.1255 +0 0.1708 +0 0.0990 +0 0.0629 +0 0.0553 +0 0.1618 +0 0.1192 +0 0.3697 +0 0.0904 +0 0.0748 +0 0.3245 +0 0.0823 +0 0.0455 +0 0.2024 +0 0.1044 +0 0.3055 +0 0.1619 +0 0.1856 +0 0.3166 +0 0.0898 +0 0.1679 +0 0.1030 +0 0.1123 +0 0.0920 +0 0.0530 +0 0.2109 +0 0.0846 +0 0.0960 +0 0.0946 +0 0.0994 +0 0.0574 +0 0.0849 +0 0.0414 +0 0.1155 +0 0.0880 +0 0.7278 +0 0.1192 +0 0.7125 +0 0.0975 +0 0.0900 +0 0.0908 +0 0.0894 +0 0.1711 +0 0.0851 +0 0.1298 +0 0.3112 +0 0.1163 +0 0.1851 +0 0.0973 +1 0.7941 +0 0.1021 +0 0.2423 +0 0.0625 +0 0.1712 +0 0.0743 +0 0.1642 +0 0.2257 +0 0.0567 +0 0.1290 +0 0.0785 +0 0.0413 +0 0.2905 +0 0.0742 +0 0.1580 +0 0.1203 +0 0.1135 +0 0.0792 +0 0.1950 +0 0.2785 +0 0.0835 +0 0.1449 +0 0.0562 +0 0.3149 +0 0.0470 +0 0.4590 +0 0.0723 +0 0.0714 +0 0.0766 +0 0.0534 +0 0.0947 +0 0.1710 +0 0.4974 +1 0.8218 +0 0.0454 +0 0.0607 +0 0.3281 +0 0.0564 +0 0.0670 +0 0.0434 +0 0.0840 +0 0.0767 +0 0.0961 +0 0.0902 +0 0.1324 +0 0.0998 +0 0.0557 +0 0.0524 +0 0.1173 +0 0.0518 +0 0.2609 +0 0.0568 +0 0.0622 +0 0.0723 +0 0.7485 +0 0.4149 +0 0.1314 +0 0.0331 +0 0.5049 +0 0.1759 +0 0.3190 +0 0.1536 +0 0.0764 +0 0.0576 +0 0.0921 +0 0.2043 +0 0.1006 +0 0.2674 +0 0.0766 +0 0.0699 +0 0.1152 +0 0.0526 +0 0.1028 +0 0.0970 +0 0.1274 +0 0.1356 +0 0.0787 +0 0.0440 +0 0.1843 +0 0.1375 +0 0.0893 +0 0.0647 +0 0.1399 +0 0.0489 +0 0.1998 +0 0.0744 +0 0.1071 +0 0.0537 +0 0.2455 +0 0.1250 +0 0.1629 +0 0.0690 +0 0.2325 +0 0.3498 +0 0.1482 +0 0.1398 +0 0.0507 +0 0.2020 +0 0.0787 +0 0.0902 +0 0.1062 +0 0.0485 +0 0.0653 +0 0.0965 +0 0.1710 +0 0.1928 +0 0.2931 +0 0.0297 +0 0.1043 +0 0.1565 +0 0.1139 +0 0.1627 +0 0.0473 +0 0.2073 +0 0.1812 +0 0.0875 +0 0.0481 +0 0.0874 +0 0.0926 +0 0.0858 +0 0.0768 +0 0.1573 +0 0.1288 +0 0.1079 +0 0.0743 +0 0.1185 +0 0.0842 +0 0.0714 +0 0.4359 +0 0.0933 +0 0.0399 +0 0.1053 +0 0.1387 +0 0.0977 +0 0.0436 +0 0.0839 +1 0.8170 +0 0.1402 +0 0.0860 +0 0.1502 +0 0.0663 +0 0.0401 +0 0.0472 +0 0.1189 +0 0.0472 +0 0.2066 +0 0.1535 +0 0.2041 +0 0.0661 +0 0.0785 +0 0.0404 +0 0.0515 +0 0.0808 +0 0.3749 +0 0.2373 +0 0.2897 +0 0.1104 +0 0.0928 +0 0.1028 +0 0.0726 +0 0.1630 +0 0.0948 +0 0.0744 +1 0.7874 +0 0.3308 +0 0.0603 +0 0.0945 +0 0.2008 +0 0.1212 +0 0.0635 +0 0.0505 +0 0.0863 +0 0.1123 +0 0.0770 +0 0.1056 +0 0.1866 +0 0.1003 +0 0.2324 +0 0.1063 +0 0.2105 +0 0.0611 +0 0.1135 +0 0.0590 +0 0.1061 +0 0.0640 +0 0.0532 +0 0.0921 +0 0.1811 +0 0.0596 +0 0.1110 +0 0.1309 +0 0.1386 +0 0.3063 +0 0.0807 +0 0.0527 +0 0.0594 +0 0.1132 +0 0.2564 +0 0.1059 +0 0.1194 +1 0.8938 +0 0.2291 +0 0.1708 +0 0.1800 +0 0.1440 +0 0.0901 +0 0.1487 +0 0.0478 +0 0.1153 +0 0.0613 +0 0.0757 +0 0.3371 +0 0.1744 +0 0.0895 +0 0.1569 +0 0.1248 +0 0.0761 +0 0.1331 +0 0.1200 +0 0.2278 +0 0.0888 +0 0.0706 +0 0.0864 +0 0.2648 +0 0.0846 +0 0.1307 +0 0.1279 +0 0.0478 +0 0.1402 +0 0.0914 +0 0.0589 +0 0.1233 +0 0.0900 +0 0.1709 +0 0.0673 +0 0.3520 +0 0.0882 +0 0.0602 +1 0.8105 +0 0.0410 +0 0.1716 +0 0.2046 +0 0.0947 +0 0.0428 +0 0.1034 +0 0.1010 +0 0.0999 +0 0.0606 +0 0.1857 +0 0.0847 +0 0.0488 +0 0.0931 +0 0.0702 +0 0.1121 +0 0.0596 +0 0.0931 +0 0.2157 +0 0.0521 +0 0.1405 +0 0.0857 +0 0.1971 +0 0.0923 +0 0.1066 +0 0.0537 +0 0.1697 +0 0.0673 +0 0.0522 +0 0.1015 +0 0.2264 +0 0.1358 +0 0.2342 +0 0.0925 +0 0.1083 +0 0.0444 +0 0.1214 +0 0.2136 +0 0.2011 +0 0.1778 +0 0.3426 +0 0.1889 +0 0.0944 +0 0.1549 +0 0.0676 +0 0.0595 +0 0.0732 +0 0.0568 +0 0.0623 +0 0.0779 +0 0.0428 +0 0.1568 +0 0.1724 +0 0.1120 +0 0.0728 +0 0.2486 +0 0.2283 +0 0.0511 +0 0.1967 +0 0.3181 +0 0.3095 +0 0.0847 +0 0.1236 +0 0.0646 +0 0.0487 +0 0.5296 +0 0.0475 +0 0.1398 +0 0.0425 +0 0.1074 +0 0.1713 +0 0.0438 +0 0.1639 +0 0.1538 +0 0.1917 +0 0.0577 +0 0.1309 +0 0.0835 +0 0.2619 +0 0.4520 +0 0.1668 +0 0.0947 +0 0.1084 +0 0.0736 +0 0.0777 +0 0.0378 +0 0.5205 +0 0.0925 +0 0.0619 +0 0.1211 +0 0.1990 +0 0.1125 +0 0.0840 +0 0.0619 +0 0.3138 +0 0.1310 +0 0.1977 +0 0.0930 +0 0.1306 +0 0.0710 +1 0.7551 +0 0.0681 +0 0.4565 +0 0.0491 +0 0.1155 +0 0.1831 +0 0.1503 +0 0.0485 +0 0.1474 +0 0.0737 +0 0.0785 +0 0.0741 +0 0.3484 +0 0.0611 +0 0.0854 +0 0.0620 +0 0.2106 +1 0.7525 +0 0.1381 +0 0.0994 +0 0.1177 +0 0.0652 +0 0.2932 +0 0.2252 +0 0.1551 +0 0.1161 +0 0.0743 +0 0.1246 +0 0.1812 +0 0.2224 +0 0.1097 +0 0.2551 +0 0.0974 +0 0.1615 +0 0.0879 +0 0.0541 +0 0.1163 +0 0.0667 +0 0.2348 +0 0.0561 +0 0.0605 +0 0.0656 +0 0.0956 +0 0.1872 +0 0.0412 +0 0.0868 +0 0.0644 +0 0.1994 +0 0.2858 +0 0.0527 +0 0.1210 +0 0.2802 +0 0.1136 +0 0.0857 +0 0.1198 +0 0.1204 +0 0.1330 +0 0.0903 +0 0.0850 +0 0.1116 +0 0.1319 +0 0.0671 +0 0.1712 +0 0.0499 +0 0.1332 +0 0.0930 +0 0.0785 +0 0.0643 +0 0.0421 +0 0.1508 +0 0.1477 +0 0.0611 +0 0.2169 +0 0.1027 +0 0.0675 +0 0.1631 +0 0.1315 +0 0.2447 +0 0.6333 +0 0.0614 +0 0.2507 +0 0.0693 +0 0.0691 +0 0.2892 +0 0.1649 +0 0.1115 +0 0.0824 +0 0.0870 +0 0.0764 +0 0.0671 +0 0.0883 +0 0.1809 +0 0.2988 +0 0.1987 +0 0.1514 +0 0.1184 +0 0.1611 +0 0.1596 +0 0.0525 +0 0.2483 +0 0.1034 +0 0.1355 +0 0.1026 +0 0.0847 +0 0.1043 +0 0.1951 +0 0.2666 +0 0.1054 +0 0.2884 +0 0.2560 +0 0.1509 +1 0.7899 +0 0.0758 +0 0.0593 +0 0.0684 +0 0.1313 +0 0.1592 +0 0.7127 +0 0.0757 +0 0.0815 +0 0.2041 +0 0.2521 +0 0.0764 +0 0.0815 +0 0.1041 +0 0.0838 +0 0.4223 +0 0.0996 +0 0.0760 +0 0.7443 +0 0.0983 +0 0.0861 +0 0.0961 +0 0.6539 +0 0.1058 +1 0.8226 +0 0.1017 +0 0.1099 +0 0.0700 +0 0.2794 +0 0.1022 +0 0.0957 +0 0.0959 +0 0.1247 +0 0.1117 +0 0.0974 +0 0.0610 +0 0.1588 +0 0.0894 +0 0.1520 +0 0.1380 +0 0.0932 +0 0.0623 +0 0.2237 +0 0.2033 +0 0.0985 +0 0.1715 +0 0.1476 +0 0.0534 +0 0.1012 +0 0.0965 +0 0.1475 +0 0.1091 +0 0.1811 +0 0.0913 +0 0.1902 +0 0.1479 +0 0.0918 +0 0.5908 +0 0.1058 +0 0.1645 +0 0.0815 +0 0.2096 +0 0.1623 +0 0.0547 +0 0.0832 +0 0.0718 +1 0.7703 +0 0.0519 +0 0.1083 +0 0.2108 +0 0.0758 +0 0.1768 +0 0.0846 +0 0.0581 +0 0.0840 +0 0.0505 +0 0.0737 +0 0.1678 +0 0.0756 +0 0.0951 +0 0.2014 +0 0.0822 +0 0.1785 +0 0.2051 +0 0.0482 +1 0.7921 +0 0.0953 +0 0.0511 +0 0.2939 +0 0.0744 +0 0.2479 +0 0.2279 +0 0.1534 +0 0.0637 +0 0.0907 +0 0.0807 +0 0.0959 +0 0.0549 +0 0.1274 +0 0.1690 +0 0.0789 +0 0.2637 +1 0.7682 +0 0.0582 +0 0.0767 +0 0.0362 +0 0.1890 +0 0.1594 +0 0.1400 +0 0.1205 +0 0.0831 +0 0.1329 +0 0.2204 +0 0.1724 +0 0.1196 +0 0.0876 +0 0.0660 +0 0.1641 +0 0.1045 +0 0.2074 +0 0.1490 +0 0.0920 +0 0.1101 +0 0.1194 +0 0.0554 +0 0.1342 +0 0.2901 +0 0.2689 +0 0.1133 +0 0.0358 +0 0.1855 +0 0.0924 +0 0.1966 +0 0.0881 +0 0.0767 +0 0.0700 +0 0.1410 +0 0.0667 +0 0.0801 +0 0.0743 +0 0.0854 +0 0.0675 +0 0.1539 +0 0.0933 +0 0.1116 +0 0.1087 +0 0.2015 +0 0.0926 +0 0.1903 +0 0.1253 +0 0.2152 +0 0.0807 +0 0.0762 +0 0.0913 +0 0.1037 +0 0.0677 +0 0.5575 +0 0.1552 +0 0.1832 +0 0.1244 +0 0.0725 +0 0.0663 +0 0.0919 +0 0.1132 +0 0.1119 +0 0.0959 +0 0.2143 +0 0.7196 +1 0.7758 +0 0.2242 +0 0.0734 +0 0.1879 +0 0.1656 +0 0.0488 +0 0.0392 +0 0.0842 +0 0.0459 +0 0.1614 +0 0.0560 +0 0.2064 +0 0.0862 +0 0.1203 +0 0.0613 +0 0.0399 +0 0.1221 +0 0.0794 +0 0.2420 +0 0.1020 +0 0.0536 +0 0.3946 +0 0.2123 +0 0.0632 +0 0.1083 +0 0.0861 +0 0.1244 +0 0.0775 +0 0.1175 +0 0.1317 +0 0.1246 +0 0.1198 +0 0.0745 +0 0.1902 +0 0.1267 +0 0.0836 +0 0.1569 +0 0.0864 +0 0.1110 +1 0.7961 +0 0.2068 +0 0.0746 +0 0.1652 +0 0.1379 +0 0.1758 +0 0.0934 +0 0.0716 +0 0.0664 +0 0.1026 +0 0.0503 +0 0.0308 +0 0.4556 +0 0.2436 +0 0.1161 +0 0.0998 +0 0.0877 +0 0.0639 +1 0.8631 +0 0.0527 +0 0.1168 +0 0.0752 +0 0.0320 +0 0.2533 +0 0.0784 +0 0.0545 +0 0.1234 +0 0.0849 +0 0.2522 +0 0.1654 +0 0.0423 +0 0.0963 +0 0.0640 +0 0.1512 +0 0.0624 +0 0.0611 +0 0.0654 +0 0.1277 +0 0.0860 +0 0.0839 +0 0.1388 +0 0.0816 +0 0.1008 +0 0.0630 +0 0.0592 +0 0.2699 +0 0.0741 +0 0.1982 +0 0.1065 +1 0.8487 +1 0.7575 +0 0.1514 +0 0.1832 +0 0.1514 +0 0.1469 +0 0.0521 +0 0.0570 +0 0.1047 +0 0.1159 +0 0.3292 +0 0.1475 +0 0.0455 +0 0.0816 +0 0.0628 +0 0.0666 +0 0.0458 +0 0.0765 +0 0.0696 +0 0.1064 +0 0.0398 +0 0.0628 +0 0.0928 +0 0.0978 +0 0.1330 +0 0.0917 +0 0.2995 +0 0.7184 +0 0.1303 +0 0.0737 +0 0.1779 +0 0.1224 +0 0.1499 +0 0.0918 +0 0.1807 +0 0.1684 +0 0.4856 +0 0.2487 +0 0.2962 +0 0.0971 +0 0.1203 +0 0.1467 +0 0.1544 +0 0.2880 +0 0.1780 +0 0.2249 +0 0.0973 +0 0.0967 +0 0.3018 +0 0.1049 +0 0.0569 +0 0.1377 +0 0.2440 +0 0.1446 +0 0.0967 +0 0.0874 +0 0.0990 +0 0.0869 +0 0.5200 +0 0.0770 +0 0.0868 +0 0.0957 +0 0.1011 +0 0.1534 +0 0.0873 +0 0.0564 +0 0.3860 +0 0.1945 +0 0.0658 +0 0.0487 +0 0.0820 +0 0.1903 +0 0.0787 +0 0.2358 +0 0.3283 +0 0.0650 +0 0.1543 +0 0.0999 +0 0.1226 +0 0.1521 +0 0.0394 +0 0.1052 +0 0.0635 +0 0.0775 +0 0.1633 +0 0.1802 +0 0.2482 +0 0.1887 +0 0.0617 +0 0.0629 +0 0.4612 +0 0.1517 +0 0.1073 +0 0.1206 +0 0.3064 +0 0.1879 +1 0.8430 +0 0.1451 +0 0.1634 +0 0.1642 +0 0.0465 +0 0.1097 +0 0.0535 +0 0.0768 +0 0.1830 +0 0.1205 +0 0.1325 +0 0.0856 +0 0.1935 +0 0.1334 +0 0.2555 +0 0.1336 +0 0.6525 +0 0.0697 +0 0.0657 +0 0.0443 +0 0.1468 +0 0.0563 +0 0.0611 +0 0.0697 +0 0.4964 +0 0.0451 +0 0.0708 +1 0.9085 +0 0.1347 +0 0.0547 +0 0.0909 +0 0.0935 +0 0.1464 +0 0.1010 +0 0.0896 +0 0.0828 +0 0.0906 +0 0.1014 +0 0.1533 +0 0.0553 +0 0.1369 +0 0.0978 +0 0.0779 +0 0.0716 +0 0.1242 +0 0.0437 +0 0.1077 +0 0.1459 +0 0.1122 +0 0.0859 +0 0.1175 +0 0.1034 +0 0.0945 +0 0.0904 +0 0.2206 +0 0.0755 +0 0.0511 +0 0.0541 +0 0.1924 +0 0.0999 +0 0.1360 +0 0.1524 +0 0.1253 +0 0.0727 +0 0.0870 +0 0.2401 +0 0.1682 +0 0.1618 +0 0.3296 +0 0.1348 +0 0.0883 +0 0.1171 +0 0.1565 +0 0.0876 +0 0.1121 +0 0.1975 +0 0.2340 +0 0.1155 +0 0.1967 +0 0.0622 +0 0.1402 +0 0.1491 +0 0.5744 +0 0.1272 +0 0.0774 +0 0.4889 +0 0.0466 +0 0.2605 +0 0.0597 +0 0.0669 +0 0.1138 +0 0.0993 +0 0.0418 +0 0.0939 +0 0.2279 +0 0.2248 +0 0.2051 +0 0.0548 +0 0.0755 +0 0.1670 +0 0.0553 +0 0.0665 +0 0.1921 +0 0.3055 +0 0.0976 +0 0.0831 +0 0.2263 +0 0.3458 +0 0.0500 +0 0.0372 +0 0.1756 +0 0.1538 +0 0.2063 +0 0.0662 +0 0.0686 +0 0.0697 +0 0.1405 +0 0.1441 +0 0.0442 +0 0.1286 +0 0.4031 +0 0.0454 +0 0.1268 +0 0.1371 +0 0.0709 +0 0.1034 +0 0.0632 +0 0.2892 +0 0.1588 +0 0.0400 +0 0.4155 +0 0.0475 +0 0.2624 +0 0.0561 +0 0.1077 +0 0.1164 +0 0.2274 +0 0.2360 +0 0.1320 +0 0.0929 +0 0.3903 +0 0.0811 +0 0.0861 +0 0.0901 +0 0.0748 +0 0.0906 +0 0.1058 +0 0.0828 +0 0.0888 +0 0.0760 +0 0.3908 +0 0.2800 +0 0.3572 +0 0.1128 +0 0.5008 +0 0.0672 +0 0.6308 +0 0.5130 +0 0.0496 +0 0.1409 +0 0.0499 +0 0.2714 +0 0.0609 +0 0.0394 +0 0.0458 +0 0.1657 +0 0.5647 +0 0.0957 +0 0.0721 +0 0.1189 +0 0.1120 +0 0.0674 +0 0.2104 +0 0.0828 +0 0.0849 +0 0.1570 +0 0.0437 +0 0.0546 +0 0.1478 +0 0.1705 +0 0.1215 +0 0.0583 +0 0.1821 +0 0.1901 +0 0.1778 +0 0.1099 +0 0.0425 +0 0.0951 +0 0.0717 +0 0.0323 +1 0.7954 +0 0.0891 +0 0.0812 +0 0.1230 +0 0.6326 +0 0.0850 +0 0.0674 +0 0.1977 +0 0.0703 +0 0.2976 +0 0.1156 +0 0.1322 +0 0.0966 +0 0.1270 +0 0.6975 +0 0.0746 +0 0.1272 +0 0.0903 +0 0.0571 +0 0.0636 +0 0.0693 +0 0.3198 +0 0.0716 +0 0.0553 +0 0.1713 +0 0.0562 +0 0.0583 +0 0.4364 +0 0.3386 +0 0.1567 +0 0.0466 +0 0.4397 +0 0.0856 +0 0.7080 +0 0.0887 +0 0.1044 +0 0.0809 +0 0.0671 +0 0.0619 +0 0.0851 +0 0.2194 +0 0.0861 +0 0.1044 +0 0.0949 +0 0.1414 +0 0.1092 +0 0.1638 +1 0.7675 +0 0.6011 +0 0.0618 +0 0.1064 +0 0.1915 +0 0.0692 +0 0.2004 +0 0.1423 +0 0.0502 +0 0.1276 +0 0.1645 +0 0.0465 +0 0.0831 +0 0.1618 +0 0.0632 +0 0.0720 +0 0.1695 +0 0.0953 +0 0.5697 +0 0.0542 +0 0.1561 +0 0.1764 +0 0.0753 +0 0.1040 +0 0.0456 +0 0.3046 +0 0.0540 +0 0.0937 +0 0.0773 +0 0.1579 +0 0.1431 +0 0.0503 +0 0.0483 +0 0.1634 +0 0.0670 +0 0.0708 +0 0.2279 +0 0.0526 +0 0.1135 +0 0.2893 +0 0.1668 +0 0.1456 +0 0.1219 +0 0.0802 +0 0.1279 +0 0.1428 +0 0.0623 +0 0.3181 +0 0.0375 +0 0.0623 +0 0.2335 +0 0.1526 +1 0.8559 +0 0.1603 +0 0.0594 +0 0.0411 +0 0.4146 +0 0.0930 +0 0.1614 +0 0.0902 +0 0.1078 +0 0.2013 +0 0.0862 +0 0.0633 +0 0.1210 +0 0.3178 +0 0.0903 +0 0.1890 +0 0.2519 +0 0.0981 +0 0.1263 +0 0.1315 +0 0.2089 +0 0.0380 +0 0.0688 +0 0.1225 +0 0.1227 +0 0.0840 +0 0.0614 +0 0.0905 +0 0.0980 +0 0.0709 +0 0.1137 +0 0.1311 +0 0.0504 +0 0.0578 +0 0.1062 +0 0.2187 +0 0.0952 +0 0.0758 +1 0.8641 +0 0.1318 +0 0.1344 +0 0.0866 +0 0.1706 +0 0.1429 +0 0.2100 +0 0.1283 +0 0.1472 +0 0.1267 +0 0.2838 +0 0.0634 +0 0.6666 +0 0.1147 +0 0.1080 +0 0.1285 +0 0.7221 +0 0.7255 +0 0.1090 +0 0.0728 +0 0.2759 +0 0.2150 +0 0.0891 +0 0.0845 +0 0.0601 +0 0.0768 +0 0.1218 +0 0.0639 +0 0.0809 +0 0.1827 +0 0.0973 +0 0.0941 +0 0.0606 +0 0.1206 +0 0.1722 +0 0.0552 +0 0.1513 +0 0.1903 +0 0.0828 +0 0.0909 +0 0.0434 +0 0.0535 +0 0.2849 +0 0.0995 +0 0.6199 +0 0.1056 +0 0.3041 +0 0.0655 +0 0.0761 +0 0.0700 +0 0.0737 +0 0.1333 +0 0.0708 +0 0.2676 +0 0.1369 +0 0.1839 +0 0.2308 +0 0.2624 +0 0.0707 +0 0.5335 +0 0.0815 +0 0.1237 +0 0.0734 +0 0.0558 +0 0.0627 +0 0.0940 +0 0.0586 +0 0.0991 +0 0.1560 +0 0.1929 +0 0.0922 +0 0.1566 +0 0.1022 +0 0.4064 +0 0.0546 +0 0.0667 +0 0.1504 +0 0.1190 +0 0.0275 +0 0.1410 +0 0.2444 +0 0.0812 +0 0.0952 +0 0.0656 +0 0.0569 +0 0.1903 +0 0.0761 +0 0.0593 +0 0.1198 +0 0.3266 +0 0.0780 +0 0.1221 +0 0.2571 +0 0.1475 +0 0.0720 +0 0.1382 +0 0.1208 +0 0.2189 +0 0.7061 +0 0.1409 +0 0.0741 +0 0.0581 +0 0.1446 +0 0.0891 +0 0.1380 +1 0.8584 +0 0.1175 +0 0.4615 +0 0.1097 +0 0.1215 +0 0.1204 +0 0.4344 +1 0.7524 +0 0.4754 +0 0.2321 +0 0.0951 +0 0.1685 +0 0.1522 +0 0.1618 +0 0.2226 +0 0.0539 +0 0.0787 +0 0.1643 +0 0.3309 +0 0.1105 +0 0.1509 +0 0.1056 +0 0.1258 +0 0.1397 +0 0.0790 +0 0.0458 +0 0.0702 +0 0.0811 +0 0.1110 +0 0.1092 +0 0.3544 +0 0.0988 +0 0.0753 +0 0.1059 +0 0.1795 +0 0.6145 +0 0.0585 +0 0.0947 +0 0.0855 +0 0.1108 +0 0.1800 +0 0.0461 +0 0.0657 +0 0.1191 +0 0.1123 +0 0.1195 +0 0.0582 +0 0.0573 +0 0.1793 +0 0.0443 +0 0.1744 +0 0.0754 +0 0.0623 +0 0.1010 +0 0.2700 +0 0.1028 +0 0.1350 +0 0.1623 +0 0.0900 +0 0.5657 +0 0.0975 +0 0.0970 +0 0.0855 +0 0.1778 +0 0.1242 +0 0.0922 +0 0.1440 +0 0.5566 +0 0.0608 +0 0.1204 +0 0.1385 +0 0.1508 +0 0.1821 +0 0.0729 +0 0.2771 +0 0.0393 +0 0.1684 +0 0.0553 +0 0.2103 +0 0.2550 +0 0.2887 +0 0.0755 +0 0.1080 +0 0.0950 +0 0.0517 +0 0.1084 +0 0.0576 +0 0.2528 +0 0.0563 +0 0.0659 +0 0.0913 +0 0.0926 +0 0.3055 +0 0.1119 +0 0.0829 +0 0.0381 +1 0.7779 +0 0.0673 +0 0.1827 +0 0.0529 +0 0.0467 +0 0.0310 +0 0.0774 +0 0.1492 +0 0.2016 +0 0.2719 +0 0.1347 +0 0.1392 +0 0.1704 +0 0.0479 +0 0.0743 +0 0.0707 +0 0.0788 +0 0.0367 +0 0.1232 +0 0.1425 +0 0.0826 +0 0.0656 +0 0.0522 +0 0.1068 +0 0.0601 +0 0.3278 +0 0.2258 +0 0.6412 +0 0.1197 +0 0.0755 +0 0.1521 +0 0.0904 +0 0.0439 +0 0.1988 +0 0.0497 +0 0.0544 +0 0.1633 +0 0.0792 +0 0.1077 +0 0.0425 +0 0.2680 +0 0.0659 +0 0.0631 +0 0.1012 +0 0.1921 +0 0.0550 +0 0.0317 +0 0.1676 +0 0.0809 +0 0.5748 +0 0.2097 +0 0.1543 +0 0.0630 +0 0.1788 +0 0.3800 +0 0.0477 +0 0.1059 +0 0.0482 +0 0.0609 +0 0.1057 +0 0.1244 +0 0.6025 +0 0.0562 +0 0.0649 +0 0.0776 +0 0.2709 +0 0.1108 +0 0.0660 +0 0.0895 +0 0.2533 +0 0.0946 +0 0.0583 +0 0.0661 +0 0.1525 +1 0.8041 +0 0.0821 +0 0.0717 +0 0.1004 +0 0.1066 +0 0.0521 +0 0.0569 +0 0.0723 +0 0.1361 +0 0.1058 +0 0.1052 +0 0.1426 +0 0.2180 +0 0.4236 +0 0.1178 +0 0.5032 +0 0.0950 +0 0.0534 +0 0.1146 +0 0.3001 +0 0.1172 +0 0.1291 +0 0.0789 +0 0.0633 +0 0.2349 +0 0.1187 +0 0.1662 +0 0.1151 +0 0.3016 +0 0.0749 +0 0.0768 +0 0.1279 +0 0.0805 +0 0.0293 +0 0.0513 +0 0.0651 +0 0.1159 +0 0.1317 +0 0.2981 +0 0.1696 +0 0.0831 +0 0.0920 +0 0.0406 +0 0.1560 +1 0.8586 +0 0.7110 +0 0.0678 +0 0.2273 +0 0.1533 +0 0.0863 +0 0.0559 +0 0.1088 +0 0.1116 +0 0.1467 +0 0.0839 +0 0.1007 +0 0.1496 +0 0.0992 +0 0.1282 +0 0.0944 +0 0.1092 +0 0.0680 +0 0.1792 +0 0.1831 +0 0.0804 +0 0.1156 +0 0.0543 +0 0.1457 +0 0.1900 +0 0.2162 +0 0.1460 +0 0.0781 +0 0.0843 +0 0.1252 +0 0.1429 +0 0.0843 +0 0.5047 +0 0.0602 +0 0.1787 +0 0.0620 +0 0.0489 +0 0.0755 +0 0.3504 +0 0.1076 +0 0.0531 +0 0.0687 +0 0.1191 +0 0.1496 +0 0.0414 +0 0.0596 +0 0.1007 +0 0.1576 +0 0.1884 +0 0.1260 +0 0.3170 +0 0.0427 +0 0.7322 +0 0.0535 +0 0.1037 +0 0.2464 +0 0.0541 +0 0.1489 +0 0.2043 +0 0.0967 +0 0.6210 +0 0.0530 +0 0.0974 +0 0.0668 +0 0.0656 +0 0.0487 +0 0.1917 +1 0.7662 +1 0.7049 +0 0.0513 +0 0.1395 +0 0.2689 +0 0.0543 +0 0.1171 +0 0.2802 +0 0.2266 +0 0.1310 +0 0.1480 +0 0.0337 +0 0.1935 +1 0.8263 +0 0.0512 +0 0.3702 +0 0.2201 +0 0.0341 +0 0.0779 +0 0.1250 +0 0.0737 +0 0.4482 +0 0.2057 +0 0.1103 +0 0.1129 +0 0.1228 +0 0.0806 +1 0.8278 +0 0.2051 +0 0.0901 +0 0.2352 +0 0.0743 +0 0.1087 +0 0.1255 +0 0.1286 +0 0.0622 +0 0.0992 +0 0.1458 +0 0.0634 +0 0.1436 +0 0.1671 +0 0.1002 +0 0.2609 +0 0.0721 +0 0.0561 +0 0.1460 +0 0.0582 +0 0.0637 +0 0.2953 +0 0.0698 +0 0.1036 +0 0.0589 +0 0.0856 +0 0.1220 +0 0.1637 +0 0.2181 +0 0.0634 +0 0.0517 +0 0.1350 +0 0.1575 +0 0.0775 +0 0.2100 +0 0.0790 +0 0.0509 +0 0.2093 +0 0.1221 +0 0.1170 +0 0.1120 +0 0.0749 +0 0.3336 +0 0.1011 +0 0.0739 +0 0.1026 +0 0.3702 +0 0.0832 +0 0.1419 +0 0.1033 +0 0.0915 +0 0.2792 +0 0.0418 +0 0.0768 +0 0.2390 +0 0.0757 +0 0.0659 +0 0.1348 +0 0.1850 +0 0.1737 +0 0.1089 +0 0.0816 +0 0.2023 +0 0.1009 +0 0.0946 +0 0.0344 +0 0.1590 +0 0.1833 +0 0.1894 +0 0.0731 +0 0.0994 +0 0.1072 +0 0.1061 +0 0.3262 +0 0.0432 +0 0.1168 +0 0.2536 +0 0.0407 +0 0.0505 +0 0.1455 +0 0.0659 +0 0.1236 +0 0.1518 +0 0.5428 +0 0.0891 +0 0.1831 +0 0.0874 +0 0.2156 +0 0.1881 +0 0.1194 +0 0.0967 +0 0.1826 +0 0.1429 +0 0.1734 +0 0.1340 +0 0.0961 +0 0.0594 +0 0.0630 +0 0.0571 +0 0.0586 +0 0.1015 +0 0.2370 +0 0.0586 +0 0.0491 +0 0.0594 +0 0.3898 +0 0.0770 +0 0.0936 +0 0.6788 +0 0.0380 +1 0.8177 +0 0.1167 +0 0.1258 +0 0.0665 +0 0.0408 +0 0.1171 +0 0.0459 +0 0.1158 +0 0.0482 +0 0.1393 +0 0.1431 +0 0.3794 +0 0.0983 +0 0.1704 +0 0.0734 +0 0.0578 +0 0.0608 +0 0.2605 +0 0.1501 +0 0.0903 +0 0.1404 +0 0.1263 +0 0.0701 +0 0.5730 +0 0.1857 +0 0.0970 +0 0.1221 +0 0.0462 +0 0.0699 +0 0.1876 +0 0.1546 +0 0.1752 +0 0.1226 +0 0.1089 +0 0.1120 +0 0.0514 +0 0.0819 +0 0.0678 +0 0.0412 +0 0.6109 +0 0.0599 +0 0.0841 +0 0.1715 +0 0.0404 +0 0.0880 +0 0.1302 +0 0.1463 +0 0.0564 +0 0.0790 +0 0.1020 +0 0.0934 +0 0.0727 +0 0.1606 +0 0.0917 +0 0.3721 +0 0.0905 +0 0.0702 +0 0.0652 +0 0.1989 +0 0.0871 +0 0.0843 +0 0.1053 +0 0.2118 +0 0.0890 +1 0.7775 +0 0.2117 +0 0.1193 +0 0.0972 +0 0.0408 +0 0.4824 +0 0.1149 +0 0.1119 +0 0.1922 +0 0.0981 +0 0.0948 +0 0.0901 +0 0.1615 +0 0.1277 +0 0.1709 +0 0.1149 +0 0.2382 +0 0.1377 +0 0.0786 +0 0.0514 +0 0.0736 +0 0.1009 +0 0.0933 +0 0.0763 +0 0.0885 +0 0.2286 +0 0.1217 +0 0.1357 +0 0.4838 +0 0.1262 +0 0.0663 +0 0.2367 +0 0.0939 +0 0.1079 +0 0.0756 +0 0.1610 +0 0.0741 +0 0.3455 +0 0.1115 +0 0.2071 +0 0.0566 +0 0.0988 +0 0.1831 +0 0.2083 +0 0.0919 +0 0.1152 +0 0.1855 +0 0.1160 +0 0.0766 +0 0.1359 +0 0.0491 +0 0.3914 +0 0.1854 +0 0.1847 +0 0.0889 +0 0.1700 +0 0.0920 +0 0.0340 +0 0.0871 +0 0.0697 +0 0.2095 +0 0.0683 +0 0.1957 +0 0.0725 +0 0.1365 +0 0.0998 +0 0.1727 +0 0.1194 +0 0.1023 +0 0.1288 +0 0.3327 +0 0.2344 +0 0.1376 +0 0.1276 +0 0.1307 +0 0.1452 +0 0.4979 +0 0.1189 +0 0.0698 +0 0.0490 +0 0.1536 +0 0.1251 +0 0.0970 +0 0.1190 +0 0.0538 +0 0.1118 +0 0.0651 +0 0.1680 +0 0.0451 +0 0.0560 +0 0.0616 +0 0.0874 +0 0.0453 +0 0.1135 +0 0.0513 +0 0.0576 +0 0.0350 +1 0.8490 +0 0.0649 +0 0.1492 +0 0.0816 +0 0.0397 +0 0.1541 +0 0.6041 +0 0.1378 +0 0.1272 +0 0.0626 +0 0.0480 +0 0.1375 +0 0.2009 +0 0.1508 +0 0.0821 +0 0.0700 +0 0.0496 +0 0.4051 +0 0.0332 +0 0.0756 +0 0.1750 +0 0.1005 +0 0.0715 +0 0.1282 +1 0.7922 +0 0.2866 +0 0.0839 +0 0.1090 +0 0.1146 +0 0.6747 +0 0.0620 +0 0.1569 +0 0.1346 +0 0.1254 +0 0.1345 +0 0.2393 +0 0.0782 +0 0.2704 +0 0.0706 +1 0.7642 +0 0.0479 +0 0.0516 +0 0.0523 +0 0.2875 +0 0.2167 +0 0.0749 +0 0.1368 +0 0.0818 +0 0.0945 +0 0.1023 +0 0.0893 +0 0.1283 +0 0.1208 +0 0.0914 +0 0.1487 +0 0.1075 +0 0.0450 +0 0.0802 +0 0.1719 +0 0.2706 +0 0.0846 +0 0.0749 +0 0.1988 +0 0.0674 +0 0.0811 +1 0.7652 +0 0.0710 +0 0.0655 +0 0.0675 +0 0.1254 +0 0.2133 +0 0.1648 +0 0.2274 +0 0.0911 +0 0.1037 +0 0.0708 +0 0.0397 +1 0.8501 +0 0.1005 +0 0.0784 +0 0.1501 +0 0.0724 +0 0.1185 +0 0.0500 +0 0.1215 +0 0.0693 +0 0.2322 +0 0.1093 +0 0.3897 +0 0.1370 +0 0.0672 +0 0.0734 +0 0.0567 +0 0.0337 +0 0.2472 +0 0.0683 +0 0.0880 +0 0.0889 +0 0.1846 +0 0.0793 +0 0.3515 +0 0.1318 +0 0.0716 +0 0.1490 +0 0.3047 +0 0.0774 +0 0.0483 +0 0.0725 +0 0.0615 +0 0.2717 +0 0.6033 +0 0.0682 +0 0.2805 +1 0.8015 +0 0.1338 +0 0.3879 +0 0.1413 +0 0.1626 +0 0.1233 +0 0.1433 +0 0.0911 +0 0.1026 +0 0.1428 +0 0.0860 +0 0.1689 +0 0.2491 +0 0.0853 +0 0.1358 +0 0.1313 +0 0.0973 +0 0.0629 +0 0.1273 +0 0.4179 +0 0.0814 +0 0.0809 +0 0.0646 +0 0.3232 +0 0.4324 +0 0.0944 +0 0.2657 +0 0.0590 +0 0.3300 +0 0.1466 +0 0.0844 +0 0.1766 +0 0.1090 +0 0.1109 +0 0.1023 +0 0.1738 +0 0.0730 +0 0.0742 +0 0.1353 +0 0.0366 +0 0.2497 +0 0.1270 +0 0.7146 +0 0.0834 +0 0.1069 +0 0.1204 +0 0.0806 +0 0.0699 +0 0.1106 +0 0.0731 +0 0.1246 +0 0.0692 +0 0.1391 +0 0.1232 +0 0.0671 +0 0.0853 +0 0.0581 +0 0.1842 +0 0.0810 +0 0.0736 +0 0.0913 +0 0.1900 +0 0.0764 +0 0.0319 +0 0.0498 +0 0.2544 +0 0.0908 +0 0.0451 +0 0.0848 +0 0.3061 +0 0.1997 +0 0.1583 +0 0.1272 +0 0.0752 +0 0.3225 +0 0.0694 +0 0.0442 +0 0.0642 +0 0.5384 +0 0.1399 +0 0.1028 +0 0.1829 +0 0.1084 +0 0.4663 +0 0.1879 +0 0.0548 +0 0.0775 +0 0.0905 +0 0.1963 +0 0.0422 +0 0.1244 +0 0.1515 +0 0.2346 +1 0.8250 +0 0.0842 +0 0.3184 +0 0.2138 +0 0.1139 +0 0.0509 +0 0.0919 +0 0.0626 +0 0.1244 +0 0.1197 +0 0.0702 +0 0.1302 +0 0.0749 +0 0.1232 +0 0.0903 +0 0.0955 +0 0.0544 +0 0.2745 +0 0.1667 +0 0.1489 +0 0.1025 +0 0.0966 +0 0.1785 +0 0.2138 +0 0.0581 +0 0.1185 +0 0.0907 +0 0.1176 +0 0.1363 +0 0.5674 +0 0.1708 +0 0.0625 +0 0.6247 +0 0.0813 +0 0.1034 +0 0.1385 +0 0.1538 +0 0.4178 +0 0.1221 +0 0.4441 +0 0.0498 +0 0.0743 +0 0.0739 +0 0.0587 +0 0.1168 +0 0.0690 +0 0.0669 +0 0.1234 +0 0.0432 +0 0.0637 +0 0.1038 +0 0.0362 +0 0.0989 +0 0.1378 +0 0.0494 +0 0.0809 +0 0.0891 +0 0.0598 +0 0.1510 +0 0.2213 +0 0.2237 +0 0.0714 +0 0.1489 +0 0.0390 +0 0.1929 +0 0.2554 +0 0.2273 +0 0.0928 +0 0.0547 +0 0.0954 +0 0.0929 +0 0.1150 +0 0.0344 +0 0.0938 +0 0.1414 +0 0.4257 +0 0.0771 +0 0.1351 +0 0.1013 +0 0.1784 +0 0.0541 +0 0.5106 +0 0.0661 +0 0.1726 +0 0.1146 +0 0.2907 +0 0.0489 +0 0.1077 +0 0.1751 +0 0.4487 +0 0.0576 +0 0.0912 +0 0.2042 +0 0.0973 +0 0.1443 +0 0.0707 +0 0.1208 +0 0.2633 +0 0.0766 +0 0.0526 +0 0.2749 +0 0.0802 +0 0.1658 +0 0.0632 +0 0.2524 +0 0.1523 +0 0.2588 +0 0.0414 +0 0.3090 +0 0.0936 +0 0.2648 +0 0.5626 +0 0.0792 +0 0.0980 +0 0.1001 +0 0.0637 +0 0.0848 +0 0.0931 +0 0.1763 +0 0.2483 +0 0.2446 +0 0.1155 +0 0.1108 +0 0.0563 +0 0.6277 +0 0.3872 +0 0.1612 +0 0.1211 +0 0.1794 +0 0.0819 +0 0.1238 +0 0.0814 +0 0.1211 +0 0.0740 +0 0.1177 +0 0.0864 +0 0.0974 +0 0.2752 +0 0.1024 +0 0.0662 +0 0.1244 +0 0.0408 +0 0.0710 +0 0.4617 +0 0.0919 +0 0.0773 +0 0.1669 +0 0.1161 +0 0.0895 +0 0.1879 +0 0.0786 +0 0.2345 +0 0.0878 +0 0.0558 +0 0.1082 +0 0.1030 +0 0.0913 +0 0.1339 +0 0.0849 +0 0.0820 +0 0.2167 +0 0.1117 +0 0.0889 +0 0.0843 +0 0.3091 +0 0.1133 +0 0.0585 +0 0.1116 +0 0.1595 +0 0.0741 +0 0.1029 +0 0.0419 +1 0.8711 +0 0.1830 +0 0.2129 +0 0.1414 +0 0.2962 +0 0.1419 +0 0.1446 +0 0.3111 +0 0.1224 +0 0.0654 +0 0.0874 +0 0.0679 +0 0.0689 +1 0.7851 +0 0.0575 +0 0.0796 +1 0.8197 +0 0.2102 +0 0.0985 +0 0.0829 +0 0.0956 +0 0.1930 +0 0.0549 +0 0.4578 +0 0.0875 +0 0.4773 +0 0.4254 +0 0.0588 +0 0.0569 +0 0.0802 +0 0.1423 +0 0.1529 +0 0.1471 +0 0.1111 +0 0.1387 +0 0.0492 +0 0.1109 +0 0.1384 +0 0.1421 +0 0.0770 +0 0.0893 +0 0.1099 +0 0.1528 +0 0.0808 +0 0.5070 +0 0.7112 +0 0.1541 +0 0.2941 +0 0.1033 +0 0.1242 +0 0.2191 +0 0.0724 +0 0.1882 +0 0.1194 +0 0.0533 +0 0.2404 +0 0.2465 +0 0.0773 +0 0.3698 +0 0.0557 +0 0.1901 +0 0.4421 +0 0.4301 +0 0.2247 +0 0.1039 +0 0.2311 +0 0.2871 +0 0.1272 +0 0.0711 +0 0.0895 +1 0.7588 +0 0.1202 +0 0.2523 +0 0.2383 +0 0.1107 +0 0.0425 +0 0.3166 +0 0.1775 +0 0.0347 +0 0.2138 +0 0.0952 +0 0.0846 +0 0.2318 +0 0.0408 +0 0.1086 +0 0.7095 +0 0.0672 +0 0.0507 +0 0.1652 +0 0.0791 +0 0.1862 +0 0.1507 +0 0.0430 +0 0.2015 +0 0.0931 +0 0.1201 +0 0.0538 +0 0.1338 +0 0.0509 +0 0.0995 +0 0.0424 +0 0.0646 +0 0.1127 +0 0.1273 +0 0.2062 +0 0.0680 +0 0.0688 +0 0.2642 +0 0.1395 +0 0.4619 +0 0.1123 +0 0.3192 +0 0.4534 +0 0.2284 +0 0.2583 +0 0.2204 +0 0.1515 +0 0.0371 +0 0.3638 +0 0.0891 +0 0.0682 +0 0.0370 +0 0.0927 +0 0.1526 +0 0.0533 +0 0.4807 +0 0.1222 +0 0.1456 +0 0.1703 +0 0.2635 +0 0.1297 +0 0.1180 +1 0.8541 +0 0.3067 +0 0.0514 +0 0.0429 +0 0.1384 +0 0.0923 +0 0.0653 +0 0.0644 +0 0.1164 +0 0.1182 +0 0.1055 +0 0.1429 +0 0.3070 +0 0.1782 +0 0.3528 +0 0.0969 +0 0.0816 +0 0.1347 +0 0.0389 +0 0.0706 +0 0.1894 +0 0.1313 +0 0.0722 +1 0.8036 +0 0.0989 +0 0.1052 +0 0.1865 +0 0.1127 +0 0.0673 +0 0.0929 +0 0.2150 +0 0.0489 +0 0.6753 +0 0.4817 +0 0.2038 +0 0.1029 +0 0.1388 +0 0.0899 +0 0.0414 +0 0.0735 +0 0.1432 +0 0.0865 +0 0.0710 +0 0.4612 +0 0.1701 +0 0.0727 +0 0.0686 +0 0.0796 +0 0.0902 +0 0.1258 +0 0.0501 +0 0.4036 +0 0.2102 +0 0.0798 +0 0.0676 +0 0.0669 +0 0.1118 +0 0.0804 +0 0.0715 +0 0.1151 +0 0.6947 +0 0.1091 +0 0.2519 +0 0.0576 +0 0.0368 +0 0.0787 +0 0.1625 +0 0.2148 +0 0.1661 +0 0.1444 +0 0.3091 +0 0.0505 +0 0.1497 +0 0.0925 +0 0.1167 +1 0.7810 +0 0.0589 +0 0.0459 +0 0.0624 +0 0.0736 +0 0.1286 +0 0.1128 +0 0.0726 +0 0.0943 +0 0.2395 +0 0.1172 +0 0.1668 +0 0.0607 +0 0.0790 +0 0.0911 +0 0.2710 +0 0.1810 +0 0.0779 +0 0.0536 +0 0.0550 +0 0.1637 +0 0.0880 +0 0.0538 +0 0.0706 +0 0.0871 +0 0.0544 +0 0.1539 +0 0.0744 +0 0.1327 +0 0.1438 +0 0.0897 +0 0.0306 +0 0.0817 +0 0.6396 +0 0.0633 +0 0.1026 +0 0.1066 +0 0.0970 +0 0.0977 +0 0.2091 +0 0.2189 +0 0.3881 +0 0.1962 +0 0.1697 +0 0.1185 +0 0.2215 +0 0.0689 +0 0.0755 +0 0.2778 +0 0.0673 +0 0.0712 +0 0.1121 +0 0.1065 +0 0.6438 +0 0.1021 +0 0.1218 +0 0.0809 +0 0.1344 +0 0.0592 +0 0.0783 +0 0.0725 +0 0.1735 +0 0.1102 +0 0.0848 +0 0.3486 +0 0.1436 +0 0.0351 +0 0.1139 +0 0.1500 +0 0.1877 +0 0.0992 +0 0.0339 +0 0.1349 +0 0.1747 +0 0.0435 +0 0.1710 +0 0.0474 +1 0.8019 +0 0.0845 +0 0.1638 +0 0.1427 +0 0.0837 +0 0.1169 +0 0.0785 +0 0.1485 +0 0.1574 +0 0.1550 +0 0.0490 +0 0.1275 +0 0.1074 +0 0.0444 +0 0.2773 +0 0.0990 +0 0.1013 +0 0.1811 +0 0.0776 +0 0.0321 +0 0.0416 +0 0.1112 +0 0.1958 +0 0.1153 +0 0.0831 +0 0.1564 +0 0.1093 +0 0.2228 +0 0.1389 +0 0.0663 +0 0.1448 +0 0.0760 +0 0.0971 +0 0.0465 +0 0.0555 +0 0.1015 +0 0.0691 +0 0.2603 +0 0.0817 +0 0.1912 +0 0.1408 +0 0.2142 +0 0.1061 +0 0.1306 +0 0.2499 +0 0.0622 +0 0.1078 +0 0.0331 +0 0.2018 +0 0.0362 +0 0.0835 +0 0.0817 +0 0.1194 +0 0.0840 +0 0.1178 +0 0.0782 +0 0.2731 +0 0.0593 +0 0.1064 +0 0.0372 +0 0.0502 +0 0.0815 +0 0.1698 +0 0.0581 +0 0.0700 +0 0.2938 +0 0.0740 +0 0.2183 +0 0.1332 +0 0.0990 +0 0.1424 +0 0.1059 +0 0.0821 +0 0.4917 +0 0.1015 +0 0.2885 +0 0.1133 +0 0.1159 +0 0.7496 +0 0.1420 +0 0.2107 +0 0.0837 +0 0.0585 +0 0.3981 +0 0.0681 +0 0.1607 +0 0.1899 +0 0.1024 +0 0.1181 +0 0.1349 +0 0.5282 +0 0.1025 +0 0.1358 +0 0.1460 +0 0.1824 +0 0.1425 +0 0.1149 +0 0.1651 +0 0.2778 +0 0.0717 +0 0.1849 +0 0.2274 +0 0.4966 +0 0.3060 +0 0.1017 +0 0.1386 +0 0.0525 +0 0.0897 +0 0.0345 +0 0.1095 +0 0.1021 +0 0.0813 +0 0.0953 +0 0.0980 +0 0.0901 +0 0.0551 +0 0.3488 +0 0.2125 +0 0.1407 +0 0.0500 +0 0.1153 +0 0.1004 +0 0.0409 +0 0.1598 +0 0.0895 +0 0.6314 +0 0.0933 +0 0.4857 +0 0.1879 +0 0.1477 +0 0.0473 +0 0.0879 +0 0.1248 +0 0.0468 +0 0.7493 +0 0.1170 +0 0.0686 +0 0.0722 +0 0.0820 +0 0.1990 +0 0.1090 +0 0.1652 +0 0.1115 +0 0.0735 +0 0.1252 +0 0.0699 +0 0.0902 +0 0.0577 +0 0.1133 +0 0.0447 +0 0.1152 +0 0.0826 +0 0.0885 +0 0.6085 +0 0.1620 +1 0.7628 +0 0.0574 +0 0.0470 +0 0.0575 +0 0.3063 +0 0.1204 +0 0.0948 +0 0.0972 +0 0.0761 +0 0.1422 +0 0.4234 +0 0.0985 +0 0.1165 +0 0.1410 +0 0.0861 +0 0.3287 +0 0.1207 +0 0.0927 +0 0.2725 +0 0.0941 +0 0.0583 +0 0.0554 +0 0.2027 +0 0.1185 +0 0.1193 +0 0.2444 +0 0.2254 +0 0.2479 +0 0.0994 +0 0.0863 +0 0.1461 +0 0.1327 +0 0.0481 +0 0.0570 +0 0.0457 +0 0.3431 +0 0.7174 +0 0.1132 +0 0.0895 +0 0.0650 +0 0.1478 +0 0.0787 +0 0.1541 +0 0.1125 +0 0.0713 +0 0.1245 +0 0.1079 +0 0.0594 +0 0.0622 +0 0.0695 +0 0.1725 +0 0.1631 +1 0.8068 +0 0.0813 +0 0.0851 +0 0.1116 +0 0.0771 +0 0.1814 +0 0.4500 +0 0.6534 +0 0.1375 +0 0.5941 +0 0.1865 +1 0.7845 +0 0.0644 +0 0.0869 +0 0.0790 +0 0.3712 +0 0.3262 +0 0.1792 +0 0.3477 +0 0.2510 +0 0.0580 +0 0.1934 +0 0.0699 +0 0.0833 +0 0.0525 +0 0.1984 +0 0.0921 +0 0.1038 +0 0.0748 +0 0.1568 +0 0.0681 +0 0.0514 +0 0.0546 +0 0.1094 +0 0.1023 +0 0.0930 +0 0.0399 +0 0.1654 +0 0.0498 +0 0.2107 +0 0.1752 +0 0.2259 +0 0.0618 +0 0.1096 +0 0.1129 +0 0.0547 +0 0.0589 +0 0.0829 +0 0.0683 +0 0.0969 +0 0.1143 +0 0.0457 +0 0.0658 +0 0.0668 +0 0.1113 +0 0.1266 +0 0.0803 +0 0.1986 +0 0.1303 +0 0.1398 +0 0.1101 +0 0.0949 +0 0.0538 +0 0.0657 +0 0.1947 +0 0.0688 +0 0.2182 +0 0.0778 +0 0.0533 +0 0.0747 +0 0.0434 +0 0.0761 +0 0.1336 +0 0.0964 +0 0.1349 +0 0.0916 +0 0.0846 +0 0.1603 +0 0.0974 +0 0.1119 +0 0.3358 +0 0.0540 +0 0.0488 +0 0.1214 +0 0.0721 +0 0.1243 +0 0.0582 +0 0.0971 +0 0.0815 +0 0.1350 +0 0.1367 +0 0.1064 +0 0.1148 +0 0.0349 +0 0.1851 +0 0.6264 +0 0.0743 +0 0.0655 +0 0.0925 +0 0.1360 +0 0.2486 +0 0.1641 +0 0.1784 +0 0.0339 +0 0.1433 +0 0.0996 +0 0.1336 +0 0.0477 +0 0.2486 +0 0.2111 +0 0.1446 +0 0.1887 +0 0.4448 +0 0.2793 +0 0.0841 +0 0.0656 +0 0.1558 +0 0.0908 +0 0.0890 +0 0.1295 +0 0.1113 +0 0.0993 +0 0.0562 +0 0.5822 +0 0.1086 +0 0.0996 +0 0.1174 +0 0.1667 +0 0.2345 +0 0.1073 +0 0.2335 +0 0.0577 +0 0.1667 +0 0.1045 +0 0.1215 +0 0.0808 +0 0.0840 +0 0.1205 +0 0.0578 +0 0.3529 +0 0.1819 +0 0.0806 +0 0.0494 +0 0.1141 +0 0.2511 +0 0.0455 +0 0.0565 +0 0.1409 +0 0.0895 +0 0.0818 +0 0.0640 +0 0.1437 +0 0.0852 +0 0.1635 +0 0.0619 +0 0.2033 +0 0.1134 +0 0.1546 +0 0.1589 +0 0.0603 +0 0.1152 +0 0.1252 +0 0.0723 +0 0.0594 +0 0.1673 +0 0.0615 +0 0.1427 +0 0.0969 +0 0.0571 +0 0.0519 +0 0.0412 +0 0.0376 +0 0.0737 +0 0.1303 +0 0.0407 +0 0.4529 +0 0.2300 +0 0.0568 +0 0.0702 +0 0.3204 +0 0.0781 +0 0.1190 +0 0.1270 +0 0.0435 +0 0.1425 +0 0.2472 +0 0.1013 +0 0.1924 +0 0.2415 +0 0.0830 +0 0.1535 +0 0.1349 +0 0.0510 +0 0.0993 +0 0.1005 +0 0.1065 +0 0.0750 +0 0.0811 +0 0.2081 +0 0.2767 +0 0.0962 +0 0.0962 +0 0.0990 +0 0.0694 +0 0.1610 +0 0.1069 +0 0.0527 +0 0.1350 +0 0.0664 +0 0.0553 +0 0.1461 +0 0.0636 +0 0.0337 +0 0.1571 +0 0.0898 +0 0.1448 +0 0.2552 +0 0.0796 +0 0.0947 +0 0.1578 +0 0.0439 +0 0.1086 +0 0.2619 +0 0.2006 +0 0.2331 +0 0.0779 +0 0.1193 +0 0.1183 +0 0.1249 +0 0.0489 +0 0.0291 +0 0.0777 +0 0.2184 +0 0.3619 +0 0.0702 +0 0.0823 +0 0.0948 +0 0.2721 +0 0.0944 +0 0.1715 +0 0.0848 +0 0.0839 +1 0.7767 +0 0.0591 +0 0.0528 +0 0.2608 +0 0.1403 +0 0.1714 +0 0.2337 +0 0.0829 +0 0.7234 +0 0.0806 +0 0.1589 +0 0.0721 +0 0.1813 +0 0.0938 +0 0.0738 +0 0.1284 +0 0.0695 +0 0.0856 +0 0.4479 +0 0.1640 +0 0.1238 +0 0.4031 +0 0.0598 +0 0.3221 +0 0.2747 +0 0.0914 +0 0.0560 +0 0.0487 +1 0.7894 +0 0.0619 +0 0.3766 +0 0.3361 +0 0.1149 +0 0.0536 +0 0.0849 +0 0.0418 +0 0.3219 +0 0.0777 +0 0.1964 +0 0.1325 +0 0.0515 +0 0.0547 +0 0.1506 +0 0.1589 +0 0.1055 +0 0.5987 +0 0.0563 +0 0.1412 +0 0.1202 +0 0.0611 +0 0.1001 +0 0.1887 +0 0.1381 +0 0.1458 +0 0.0516 +0 0.0409 +0 0.2171 +0 0.0526 +0 0.0847 +0 0.2770 +0 0.0951 +0 0.2644 +0 0.0640 +0 0.1038 +0 0.2443 +0 0.3477 +0 0.1121 +0 0.1017 +0 0.0815 +0 0.1142 +0 0.0932 +0 0.1550 +0 0.0941 +0 0.1843 +1 0.7804 +0 0.1169 +0 0.3287 +0 0.0902 +0 0.0741 +0 0.0887 +0 0.0634 +0 0.0972 +0 0.2525 +0 0.1244 +0 0.0969 +0 0.2769 +0 0.1080 +0 0.3806 +0 0.0894 +0 0.0434 +0 0.1366 +0 0.0708 +0 0.0899 +0 0.0931 +0 0.1523 +0 0.1865 +1 0.8742 +0 0.1495 +0 0.1267 +0 0.2327 +0 0.3288 +0 0.1489 +0 0.7438 +0 0.1162 +0 0.1277 +0 0.0812 +0 0.0630 +0 0.1129 +0 0.1357 +0 0.0362 +0 0.0976 +0 0.5285 +0 0.1221 +0 0.1071 +0 0.0579 +0 0.0632 +0 0.1275 +0 0.0567 +0 0.0347 +0 0.1116 +1 0.7877 +0 0.1067 +0 0.0860 +0 0.0930 +0 0.0805 +0 0.0720 +0 0.0444 +0 0.1346 +0 0.0720 +0 0.0678 +0 0.1928 +0 0.1030 +0 0.0937 +0 0.2445 +0 0.3043 +0 0.0907 +0 0.1270 +0 0.0698 +0 0.0712 +0 0.1133 +0 0.1659 +0 0.0898 +0 0.3483 +0 0.1289 +0 0.7403 +0 0.0862 +0 0.1159 +0 0.0481 +0 0.0839 +0 0.1098 +0 0.0463 +0 0.1511 +0 0.2345 +0 0.2113 +0 0.3456 +0 0.0419 +0 0.0613 +0 0.1270 +0 0.1051 +0 0.0494 +0 0.1418 +0 0.1500 +0 0.5730 +0 0.0830 +0 0.0807 +0 0.1263 +0 0.0995 +0 0.1203 +0 0.0594 +0 0.1001 +0 0.1365 +0 0.1212 +0 0.0793 +0 0.0904 +0 0.1943 +0 0.0555 +0 0.0534 +0 0.0498 +0 0.3834 +0 0.0671 +0 0.0323 +0 0.0716 +0 0.0632 +0 0.2120 +0 0.0568 +0 0.0892 +0 0.1519 +0 0.1216 +0 0.0571 +0 0.1256 +0 0.1560 +0 0.0385 +0 0.1827 +0 0.1819 +0 0.0971 +0 0.0695 +0 0.3177 +0 0.0929 +0 0.0905 +0 0.1337 +0 0.1243 +0 0.0888 +0 0.3540 +0 0.1595 +0 0.2226 +0 0.1221 +0 0.1830 +0 0.2110 +0 0.0855 +0 0.1536 +0 0.2575 +0 0.0775 +0 0.2429 +0 0.1423 +0 0.0762 +0 0.0658 +0 0.0705 +0 0.0523 +0 0.0825 +0 0.0591 +0 0.1605 +0 0.1398 +0 0.0776 +0 0.0915 +0 0.1061 +1 0.3493 +0 0.1488 +0 0.1012 +0 0.1595 +0 0.1090 +0 0.2132 +0 0.0996 +0 0.0681 +0 0.1007 +0 0.0680 +0 0.0478 +0 0.2425 +0 0.0726 +0 0.1143 +0 0.1170 +0 0.0395 +0 0.1681 +0 0.0418 +0 0.1208 +0 0.1182 +0 0.1828 +0 0.0555 +0 0.1338 +0 0.0705 +0 0.1352 +0 0.0902 +0 0.0952 +0 0.0871 +0 0.0518 +0 0.1130 +0 0.1039 +0 0.1107 +0 0.1325 +0 0.1754 +0 0.1601 +0 0.0884 +0 0.0518 +0 0.0605 +0 0.1851 +0 0.0827 +0 0.0913 +0 0.0973 +0 0.0559 +0 0.1068 +0 0.0770 +0 0.2876 +0 0.1057 +0 0.1657 +0 0.0804 +0 0.0705 +0 0.2434 +0 0.0639 +0 0.0414 +0 0.1015 +0 0.6771 +0 0.0948 +0 0.1162 +0 0.1439 +0 0.0607 +0 0.1003 +0 0.1230 +0 0.1144 +0 0.1231 +0 0.1658 +0 0.2970 +0 0.0403 +0 0.0567 +0 0.1454 +0 0.0789 +0 0.1495 +0 0.1196 +0 0.2206 +0 0.0670 +0 0.0676 +0 0.1037 +0 0.0894 +0 0.1238 +0 0.1178 +0 0.0314 +0 0.2258 +0 0.1141 +0 0.0428 +0 0.1442 +0 0.1416 +0 0.2239 +0 0.0539 +0 0.0548 +0 0.0322 +0 0.0834 +0 0.1559 +0 0.0976 +0 0.0855 +0 0.3199 +0 0.0770 +0 0.0961 +0 0.1845 +0 0.1108 +0 0.1362 +0 0.1019 +0 0.1472 +0 0.0709 +0 0.1726 +1 0.7990 +0 0.2052 +0 0.1552 +0 0.1316 +0 0.1089 +0 0.1343 +0 0.1398 +0 0.0892 +0 0.1797 +0 0.1271 +0 0.5571 +0 0.4353 +0 0.1855 +0 0.5962 +0 0.1657 +0 0.0881 +0 0.4455 +0 0.0569 +0 0.1030 +0 0.1012 +0 0.1903 +0 0.0684 +0 0.0928 +0 0.2480 +0 0.2171 +0 0.2280 +0 0.0974 +0 0.1220 +0 0.1204 +0 0.0735 +0 0.1732 +0 0.0730 +0 0.0546 +0 0.0969 +0 0.1029 +0 0.0718 +0 0.2141 +0 0.4462 +0 0.1482 +0 0.7199 +0 0.0500 +0 0.0948 +0 0.1084 +0 0.0575 +0 0.6943 +0 0.1616 +0 0.1312 +0 0.0594 +0 0.0352 +0 0.4330 +0 0.1010 +0 0.0797 +0 0.6150 +0 0.0813 +0 0.0856 +0 0.0665 +0 0.1158 +0 0.0563 +0 0.5606 +0 0.1022 +0 0.0969 +0 0.2605 +0 0.1305 +0 0.0537 +0 0.2889 +0 0.1222 +0 0.2153 +0 0.0756 +1 0.8796 +0 0.4304 +0 0.0950 +0 0.1165 +0 0.0857 +0 0.1624 +0 0.1064 +0 0.1093 +0 0.1079 +0 0.2341 +0 0.1210 +0 0.0634 +0 0.0940 +0 0.1828 +0 0.1047 +0 0.0519 +0 0.0852 +0 0.1921 +0 0.1611 +0 0.0830 +0 0.1647 +0 0.2149 +0 0.2938 +0 0.2332 +0 0.0865 +0 0.1614 +0 0.1104 +0 0.1010 +0 0.0783 +0 0.0600 +0 0.0809 +0 0.1346 +0 0.4738 +0 0.0817 +0 0.0387 +0 0.2425 +0 0.1094 +1 0.8108 +0 0.2493 +0 0.0386 +0 0.1239 +0 0.0739 +0 0.0378 +1 0.8056 +0 0.0727 +0 0.0787 +0 0.1009 +1 0.8305 +0 0.2023 +0 0.4981 +0 0.0988 +0 0.4064 +0 0.0611 +0 0.1507 +0 0.0680 +0 0.3520 +0 0.0411 +0 0.1532 +0 0.1763 +0 0.1120 +0 0.1142 +0 0.1759 +0 0.0613 +0 0.1691 +0 0.0918 +0 0.1168 +0 0.1844 +0 0.2189 +0 0.0931 +0 0.0590 +0 0.0969 +1 0.8357 +0 0.1464 +0 0.1740 +0 0.0693 +0 0.0686 +0 0.0818 +0 0.1242 +0 0.0651 +0 0.1728 +0 0.0509 +0 0.0612 +0 0.2021 +0 0.0652 +0 0.1227 +0 0.5870 +0 0.1050 +0 0.0732 +0 0.1933 +0 0.4600 +0 0.0329 +0 0.1144 +0 0.0916 +0 0.1239 +0 0.1277 +0 0.0357 +0 0.0909 +0 0.2036 +0 0.1164 +0 0.2734 +0 0.2164 +0 0.0808 +0 0.0856 +0 0.1469 +0 0.1223 +0 0.1183 +0 0.2128 +0 0.0852 +0 0.2860 +0 0.4742 +0 0.1087 +0 0.0904 +0 0.1638 +0 0.1389 +0 0.1634 +0 0.0885 +0 0.3104 +0 0.0711 +0 0.3477 +0 0.1442 +0 0.2985 +0 0.1633 +0 0.2577 +0 0.0883 +0 0.2266 +0 0.0866 +0 0.0612 +0 0.2347 +0 0.2156 +0 0.1896 +0 0.1293 +0 0.0680 +0 0.1663 +0 0.1074 +0 0.0551 +0 0.2552 +0 0.1936 +0 0.2120 +0 0.0814 +0 0.0719 +0 0.0866 +0 0.0692 +0 0.0426 +0 0.0649 +0 0.1135 +0 0.2469 +0 0.1260 +0 0.1763 +0 0.1056 +0 0.0885 +0 0.0723 +0 0.1574 +0 0.1586 +0 0.0434 +0 0.0740 +0 0.0815 +0 0.4321 +0 0.0977 +0 0.1166 +0 0.0720 +0 0.1069 +0 0.1130 +0 0.6101 +0 0.0671 +0 0.0625 +0 0.1098 +0 0.0409 +0 0.1425 +0 0.0916 +0 0.1466 +0 0.0932 +0 0.0508 +0 0.2428 +0 0.0528 +0 0.0754 +0 0.1136 +0 0.1211 +0 0.0609 +0 0.1159 +0 0.1121 +0 0.1190 +0 0.0935 +0 0.0935 +0 0.2481 +0 0.0595 +0 0.2451 +0 0.2034 +0 0.1505 +0 0.0585 +0 0.1106 +0 0.1589 +0 0.3132 +0 0.1156 +0 0.1770 +0 0.0471 +0 0.0415 +0 0.0454 +0 0.1802 +0 0.0941 +0 0.0646 +0 0.0796 +0 0.0608 +0 0.0400 +0 0.0934 +0 0.0524 +0 0.1075 +0 0.0814 +0 0.1783 +0 0.0560 +0 0.0566 +0 0.1134 +0 0.1525 +0 0.1606 +0 0.1030 +0 0.0689 +0 0.0972 +0 0.0994 +1 0.7705 +0 0.1756 +0 0.1264 +0 0.1329 +0 0.2111 +0 0.1815 +0 0.1152 +0 0.2809 +0 0.0455 +0 0.0976 +0 0.0439 +0 0.0764 +0 0.1055 +0 0.0847 +0 0.0975 +1 0.8071 +0 0.2185 +0 0.0780 +0 0.0729 +0 0.0679 +0 0.1225 +0 0.1289 +0 0.0371 +0 0.2130 +0 0.0434 +0 0.0862 +0 0.0925 +0 0.2355 +1 0.8683 +0 0.1310 +0 0.5884 +0 0.0854 +0 0.0834 +0 0.0813 +0 0.0734 +0 0.0814 +0 0.2043 +0 0.0845 +0 0.0656 +0 0.1668 +0 0.1035 +0 0.0543 +0 0.1343 +0 0.0604 +0 0.1094 +0 0.0938 +0 0.1495 +0 0.0397 +0 0.1161 +0 0.1285 +0 0.1208 +1 0.8246 +0 0.0428 +1 0.7899 +0 0.1369 +0 0.1955 +0 0.0978 +0 0.0381 +1 0.8065 +0 0.0408 +0 0.3170 +0 0.0970 +0 0.0967 +0 0.0991 +0 0.2017 +0 0.1381 +0 0.0759 +0 0.0696 +0 0.0990 +0 0.1273 +0 0.0557 +0 0.4058 +0 0.0526 +0 0.2212 +0 0.0817 +0 0.1032 +0 0.1795 +0 0.1280 +0 0.1926 +0 0.0678 +0 0.1541 +0 0.0799 +0 0.0719 +0 0.1248 +0 0.0876 +0 0.0988 +0 0.0593 +0 0.3977 +0 0.0753 +0 0.1394 +0 0.0959 +0 0.0835 +0 0.0692 +0 0.0547 +0 0.0882 +0 0.0547 +0 0.1016 +0 0.0496 +0 0.0706 +0 0.1713 +0 0.1053 +0 0.3270 +0 0.0830 +0 0.1392 +0 0.3976 +0 0.1113 +0 0.4522 +0 0.1354 +0 0.0729 +0 0.1114 +0 0.2519 +0 0.0565 +0 0.1221 +0 0.0544 +0 0.1451 +0 0.0938 +0 0.0753 +0 0.1113 +0 0.0670 +0 0.0950 +0 0.1969 +0 0.1974 +0 0.0785 +0 0.1360 +0 0.0784 +0 0.0655 +0 0.0616 +0 0.1752 +0 0.1081 +0 0.1456 +0 0.0994 +0 0.1882 +0 0.0690 +0 0.0984 +0 0.2241 +0 0.2196 +0 0.1280 +1 0.7936 +0 0.0696 +0 0.0965 +0 0.2326 +0 0.0750 +0 0.0823 +0 0.2044 +0 0.1468 +0 0.2278 +0 0.5450 +0 0.1380 +0 0.1007 +0 0.0808 +0 0.0753 +0 0.1116 +0 0.0936 +0 0.0503 +0 0.1548 +0 0.0974 +0 0.1651 +0 0.6852 +0 0.0577 +0 0.0651 +0 0.3649 +0 0.1298 +0 0.1197 +0 0.0804 +0 0.0641 +0 0.0748 +0 0.1309 +0 0.1650 +0 0.1295 +0 0.1030 +0 0.1104 +0 0.6859 +0 0.0547 +0 0.1058 +0 0.0574 +0 0.1065 +0 0.0953 +0 0.0435 +0 0.1001 +0 0.0587 +0 0.0775 +0 0.1185 +0 0.6830 +0 0.5446 +0 0.0798 +0 0.1868 +0 0.0683 +0 0.0606 +0 0.0764 +0 0.0447 +0 0.1025 +0 0.1784 +0 0.1807 +0 0.2325 +0 0.1646 +0 0.1137 +0 0.0975 +0 0.0418 +0 0.2144 +0 0.0665 +0 0.0540 +0 0.1685 +0 0.1221 +0 0.0743 +0 0.0807 +0 0.0530 +0 0.0456 +0 0.3210 +0 0.0644 +0 0.0822 +0 0.1264 +0 0.0713 +0 0.1358 +0 0.3441 +0 0.1145 +0 0.0747 +0 0.0982 +0 0.0454 +0 0.0345 +0 0.0857 +0 0.0968 +0 0.0945 +0 0.3102 +0 0.5345 +0 0.1740 +0 0.0712 +0 0.1268 +0 0.1551 +0 0.1571 +0 0.2410 +0 0.0694 +0 0.0850 +0 0.0376 +0 0.0588 +0 0.1010 +0 0.0904 +0 0.0855 +0 0.0633 +0 0.0995 +0 0.1556 +0 0.0761 +0 0.0566 +0 0.1054 +0 0.5514 +0 0.0572 +0 0.2413 +1 0.8394 +0 0.0656 +1 0.7848 +0 0.1172 +0 0.0980 +0 0.0927 +0 0.1288 +0 0.0883 +0 0.1349 +0 0.1330 +0 0.0638 +0 0.4756 +0 0.0482 +0 0.0596 +0 0.0886 +0 0.0996 +0 0.1003 +0 0.1084 +0 0.1388 +0 0.1346 +0 0.7016 +0 0.1299 +0 0.1131 +0 0.0374 +0 0.1055 +0 0.0415 +0 0.1498 +0 0.0645 +0 0.0749 +0 0.1746 +0 0.0566 +0 0.1009 +0 0.1148 +0 0.0747 +1 0.8202 +0 0.0999 +0 0.3049 +0 0.1035 +0 0.1728 +0 0.0820 +0 0.1303 +0 0.1340 +0 0.0880 +0 0.0957 +0 0.0959 +0 0.0687 +0 0.0288 +0 0.1626 +0 0.1299 +0 0.0911 +0 0.2137 +0 0.0836 +0 0.6887 +0 0.0494 +0 0.0545 +0 0.1383 +0 0.0904 +0 0.0852 +0 0.0728 +0 0.0807 +0 0.1380 +0 0.0664 +0 0.1036 +0 0.1095 +0 0.0872 +0 0.1416 +0 0.1062 +0 0.3544 +0 0.0929 +0 0.2129 +0 0.1108 +0 0.1049 +0 0.0551 +0 0.0735 +0 0.1254 +0 0.0426 +0 0.2384 +0 0.6780 +0 0.1502 +0 0.1440 +0 0.0616 +0 0.0921 +0 0.1238 +1 0.8335 +0 0.0460 +0 0.1008 +0 0.0819 +0 0.1088 +0 0.0441 +0 0.0562 +0 0.0874 +0 0.1868 +0 0.3348 +0 0.0558 +0 0.1237 +0 0.0632 +0 0.0658 +0 0.0806 +0 0.0563 +0 0.1247 +0 0.0871 +0 0.0916 +0 0.0334 +0 0.1685 +0 0.2954 +0 0.0660 +0 0.0650 +0 0.2861 +0 0.0303 +0 0.0373 +0 0.1098 +0 0.2414 +0 0.0445 +0 0.0848 +0 0.0723 +0 0.1072 +0 0.1322 +0 0.0967 +0 0.1299 +0 0.0711 +0 0.2116 +0 0.0695 +0 0.0673 +0 0.0743 +0 0.2080 +0 0.0679 +0 0.1500 +0 0.0668 +0 0.1168 +0 0.1980 +0 0.1382 +0 0.3213 +0 0.0950 +0 0.0889 +0 0.1182 +0 0.0980 +0 0.0828 +0 0.4459 +0 0.1210 +0 0.0514 +0 0.1414 +0 0.1193 +0 0.0388 +0 0.0539 +0 0.0645 +0 0.1811 +0 0.0506 +0 0.0844 +0 0.1109 +0 0.0394 +0 0.1051 +0 0.1082 +0 0.0926 +0 0.1811 +0 0.0526 +0 0.1770 +0 0.3391 +0 0.0763 +0 0.1130 +0 0.1467 +0 0.2384 +0 0.0700 +0 0.1036 +1 0.7992 +0 0.0885 +0 0.5605 +0 0.2407 +0 0.4076 +0 0.1097 +0 0.1154 +0 0.1104 +0 0.0989 +0 0.0997 +0 0.1017 +0 0.0839 +0 0.0990 +0 0.0466 +0 0.1918 +0 0.2198 +0 0.2403 +0 0.4776 +0 0.1754 +0 0.0929 +0 0.0949 +1 0.8485 +0 0.1058 +0 0.2179 +0 0.1032 +0 0.0655 +0 0.0875 +0 0.2585 +0 0.0474 +0 0.0814 +0 0.0465 +0 0.1398 +0 0.0817 +0 0.0612 +0 0.1219 +0 0.1211 +0 0.0421 +0 0.0482 +0 0.1259 +0 0.0473 +0 0.2083 +0 0.1758 +0 0.1390 +0 0.1655 +0 0.1103 +0 0.1132 +0 0.1259 +0 0.2015 +0 0.1101 +0 0.0483 +0 0.2497 +0 0.6013 +0 0.1070 +0 0.2008 +0 0.0736 +0 0.1328 +0 0.1231 +0 0.0586 +0 0.2293 +0 0.1588 +0 0.0913 +0 0.0686 +0 0.1391 +0 0.0341 +0 0.1458 +0 0.0675 +0 0.0565 +0 0.2683 +0 0.0647 +0 0.0741 +0 0.0445 +0 0.0608 +0 0.1860 +0 0.0837 +0 0.0489 +0 0.0497 +0 0.0973 +0 0.1670 +1 0.7663 +0 0.0769 +0 0.2080 +0 0.2424 +0 0.0830 +0 0.0345 +0 0.1465 +0 0.0324 +0 0.0549 +0 0.0646 +0 0.0542 +0 0.4827 +0 0.2366 +0 0.0783 +0 0.0901 +0 0.1111 +0 0.1455 +0 0.3602 +0 0.0412 +0 0.1651 +0 0.0528 +0 0.1199 +0 0.6148 +0 0.0874 +0 0.1671 +0 0.2237 +0 0.1140 +0 0.0533 +0 0.0473 +0 0.3149 +0 0.0702 +0 0.2438 +0 0.0703 +0 0.0924 +0 0.0708 +0 0.0791 +0 0.0415 +0 0.0518 +0 0.0876 +0 0.0931 +0 0.0959 +0 0.2549 +0 0.0885 +0 0.0746 +0 0.1457 +0 0.0705 +0 0.1085 +0 0.0542 +0 0.0882 +0 0.1659 +0 0.1369 +0 0.0650 +0 0.0975 +0 0.6440 +0 0.2134 +1 0.8373 +0 0.7140 +0 0.4684 +0 0.0424 +0 0.1050 +0 0.0873 +0 0.1353 +0 0.0383 +0 0.2204 +1 0.8614 +0 0.0749 +0 0.2235 +0 0.0392 +0 0.0857 +0 0.1650 +0 0.1240 +0 0.0494 +0 0.2851 +0 0.1536 +0 0.1101 +0 0.0774 +0 0.2186 +0 0.0452 +0 0.0721 +0 0.0469 +0 0.0630 +0 0.1163 +0 0.3625 +0 0.0437 +0 0.1133 +0 0.3072 +0 0.1547 +0 0.0565 +0 0.0810 +0 0.2162 +0 0.1282 +0 0.0750 +0 0.0573 +0 0.0875 +0 0.1413 +0 0.2519 +0 0.1837 +0 0.0728 +0 0.0812 +0 0.3180 +0 0.0992 +0 0.1811 +0 0.1293 +0 0.1019 +0 0.1594 +1 0.8700 +0 0.5489 +0 0.1118 +0 0.1469 +0 0.4049 +0 0.0937 +0 0.1734 +0 0.0453 +0 0.0654 +0 0.1759 +0 0.0899 +0 0.1045 +1 0.8288 +0 0.2028 +0 0.0555 +0 0.1176 +0 0.1084 +0 0.1434 +0 0.0936 +0 0.2070 +0 0.0731 +0 0.1080 +0 0.1219 +0 0.1468 +0 0.1129 +0 0.1469 +0 0.0576 +0 0.1499 +0 0.7406 +0 0.0936 +1 0.8286 +1 0.8819 +0 0.1929 +0 0.0424 +0 0.2253 +0 0.0506 +0 0.2756 +0 0.0529 +0 0.0437 +0 0.2814 +0 0.1232 +0 0.0492 +0 0.1374 +0 0.1294 +0 0.1925 +0 0.5800 +0 0.0801 +0 0.0936 +0 0.1762 +0 0.1336 +0 0.2108 +0 0.1300 +0 0.2556 +0 0.1980 +0 0.2143 +0 0.0966 +0 0.0491 +0 0.1720 +0 0.0829 +0 0.0398 +0 0.2188 +0 0.0816 +0 0.0760 +0 0.2148 +0 0.1504 +0 0.1839 +0 0.0796 +0 0.1044 +0 0.0565 +1 0.2617 +0 0.1052 +0 0.0833 +0 0.0433 +0 0.1708 +0 0.1713 +0 0.1873 +0 0.0857 +0 0.2777 +0 0.3183 +0 0.4679 +0 0.1754 +0 0.0490 +0 0.1573 +0 0.3399 +0 0.4321 +0 0.2542 +0 0.2056 +0 0.0510 +0 0.1720 +0 0.0667 +0 0.2075 +0 0.0312 +0 0.0677 +0 0.4087 +0 0.1035 +0 0.0515 +0 0.1257 +0 0.0793 +0 0.0838 +0 0.1598 +0 0.1822 +0 0.2346 +0 0.0880 +0 0.0769 +0 0.2239 +0 0.0868 +0 0.0769 +0 0.1317 +0 0.0885 +0 0.0792 +0 0.0653 +0 0.2100 +0 0.1150 +0 0.0789 +0 0.1583 +0 0.0350 +0 0.3196 +1 0.8128 +0 0.1422 +0 0.0773 +0 0.0758 +0 0.0729 +0 0.1845 +0 0.1049 +0 0.0653 +0 0.1488 +1 0.8643 +0 0.3119 +0 0.3813 +0 0.1122 +0 0.1388 +0 0.1800 +0 0.0990 +0 0.2686 +0 0.0916 +0 0.1410 +0 0.1810 +0 0.0711 +0 0.3857 +1 0.7813 +0 0.1253 +0 0.2480 +0 0.1840 +0 0.1109 +0 0.0910 +0 0.2935 +0 0.0523 +0 0.0986 +0 0.1644 +0 0.0741 +0 0.1139 +0 0.6675 +0 0.1770 +0 0.0855 +0 0.0573 +0 0.2246 +0 0.4934 +1 0.8261 +0 0.2029 +0 0.0729 +0 0.2136 +0 0.0977 +0 0.1964 +0 0.2116 +0 0.0494 +0 0.0984 +0 0.0761 +0 0.1085 +0 0.0400 +0 0.2710 +0 0.0738 +0 0.2848 +0 0.0921 +0 0.0673 +0 0.1088 +0 0.1065 +0 0.2050 +0 0.0516 +0 0.1343 +0 0.1399 +0 0.3104 +0 0.0885 +0 0.2292 +0 0.0579 +0 0.1528 +0 0.1196 +1 0.2806 +0 0.4344 +0 0.0721 +0 0.1478 +0 0.2675 +0 0.1272 +0 0.0478 +0 0.1621 +0 0.3558 +0 0.0930 +0 0.1304 +0 0.1528 +0 0.0538 +0 0.0554 +0 0.0773 +0 0.1582 +0 0.0447 +0 0.1363 +0 0.1310 +0 0.0583 +0 0.0311 +0 0.0810 +0 0.1592 +0 0.1070 +0 0.0767 +0 0.1544 +0 0.2851 +0 0.2057 +0 0.1291 +0 0.0774 +0 0.0585 +0 0.0493 +0 0.1461 +0 0.1837 +0 0.2192 +0 0.2399 +0 0.1060 +0 0.4675 +0 0.2381 +0 0.0755 +0 0.1233 +0 0.1646 +0 0.0780 +0 0.0920 +0 0.1668 +0 0.0415 +0 0.0859 +0 0.1006 +0 0.6648 +0 0.0958 +0 0.1775 +0 0.1065 +0 0.1197 +0 0.1309 +0 0.2695 +0 0.1050 +0 0.0833 +0 0.0971 +0 0.1847 +0 0.0684 +0 0.1510 +0 0.1132 +0 0.0505 +0 0.0730 +0 0.0816 +0 0.1808 +0 0.0530 +0 0.7424 +0 0.0287 +0 0.0974 +0 0.0976 +0 0.0841 +0 0.1104 +0 0.1331 +0 0.0696 +0 0.1628 +0 0.1744 +0 0.1947 +0 0.1169 +0 0.1946 +0 0.1072 +0 0.0698 +0 0.7352 +0 0.0690 +0 0.2634 +0 0.4673 +0 0.1556 +0 0.1660 +0 0.0883 +0 0.1118 +0 0.1208 +0 0.0954 +0 0.1854 +0 0.0422 +0 0.0413 +0 0.1575 +0 0.1907 +0 0.0685 +0 0.1675 +0 0.1423 +0 0.0603 +0 0.1107 +0 0.0934 +0 0.1500 +0 0.5158 +0 0.0485 +0 0.0801 +0 0.2633 +0 0.0897 +0 0.1423 +0 0.1702 +0 0.7473 +0 0.1740 +0 0.1964 +0 0.0912 +0 0.0555 +0 0.0798 +0 0.0613 +0 0.0492 +0 0.1079 +0 0.2382 +0 0.0792 +0 0.1265 +0 0.2222 +0 0.0958 +0 0.2085 +0 0.1181 +0 0.1859 +0 0.1827 +0 0.0843 +0 0.1212 +0 0.0936 +0 0.0358 +0 0.1234 +0 0.0717 +0 0.3464 +0 0.2737 +0 0.0765 +0 0.1209 +0 0.0960 +0 0.0449 +0 0.0663 +0 0.0998 +0 0.0597 +0 0.0406 +0 0.5204 +0 0.0716 +0 0.0579 +0 0.0530 +0 0.0524 +0 0.1685 +0 0.0542 +0 0.1471 +0 0.7430 +0 0.0542 +0 0.0437 +0 0.3853 +0 0.2919 +0 0.0996 +0 0.0295 +0 0.0402 +0 0.3638 +0 0.0480 +0 0.0987 +0 0.0762 +0 0.1111 +1 0.7504 +0 0.1633 +0 0.0603 +0 0.0967 +0 0.1692 +0 0.1122 +0 0.1429 +0 0.0762 +0 0.0847 +0 0.0580 +0 0.0851 +0 0.1470 +0 0.2546 +0 0.0826 +0 0.1419 +0 0.0805 +0 0.3358 +0 0.1270 +0 0.1857 +0 0.0821 +0 0.1375 +0 0.0786 +0 0.1730 +0 0.1798 +0 0.0785 +1 0.7805 +0 0.1397 +0 0.1789 +0 0.1344 +0 0.0807 +0 0.1351 +0 0.1344 +0 0.0337 +0 0.2465 +0 0.0508 +0 0.0816 +0 0.0508 +0 0.1946 +0 0.2360 +0 0.6573 +0 0.2640 +0 0.1244 +0 0.0453 +0 0.0958 +0 0.3914 +0 0.1001 +0 0.1535 +0 0.1444 +0 0.1347 +0 0.3210 +0 0.0734 +0 0.0641 +0 0.0886 +0 0.0793 +0 0.0743 +0 0.0799 +0 0.0510 +0 0.2417 +0 0.1358 +0 0.1241 +0 0.0499 +0 0.2729 +0 0.0595 +0 0.0767 +0 0.1132 +0 0.1754 +0 0.1084 +0 0.0526 +0 0.1210 +0 0.1474 +0 0.0612 +0 0.1184 +0 0.1073 +0 0.0939 +0 0.0771 +0 0.1119 +0 0.1456 +0 0.1641 +0 0.0856 +0 0.1833 +0 0.1739 +0 0.1434 +0 0.0357 +0 0.3519 +1 0.7978 +0 0.5242 +0 0.3494 +0 0.1184 +0 0.1449 +0 0.0548 +0 0.0450 +0 0.1509 +0 0.1195 +0 0.1398 +0 0.0760 +0 0.0767 +0 0.0987 +0 0.1422 +0 0.1173 +0 0.1530 +0 0.0995 +0 0.0872 +0 0.0332 +0 0.0652 +0 0.1897 +0 0.0560 +0 0.3282 +0 0.3766 +0 0.0627 +0 0.3169 +0 0.2708 +0 0.0511 +0 0.1006 +0 0.0867 +0 0.1314 +0 0.3494 +0 0.1267 +0 0.0449 +0 0.0748 +0 0.0790 +0 0.2771 +0 0.7487 +0 0.1273 +0 0.0976 +0 0.0550 +0 0.0687 +0 0.0923 +0 0.5929 +0 0.0710 +0 0.1954 +0 0.0903 +0 0.0420 +0 0.1019 +0 0.3635 +0 0.2479 +0 0.1527 +0 0.1440 +0 0.1701 +0 0.1000 +0 0.0471 +0 0.0404 +0 0.7413 +0 0.0687 +0 0.1522 +0 0.0502 +0 0.1221 +0 0.0953 +0 0.0599 +0 0.1063 +0 0.1416 +0 0.0590 +0 0.0447 +0 0.0671 +0 0.1195 +0 0.0965 +0 0.1465 +0 0.0599 +0 0.1264 +0 0.0708 +0 0.0718 +0 0.1416 +0 0.1036 +0 0.0708 +0 0.0961 +0 0.0792 +0 0.7163 +0 0.1224 +0 0.0755 +0 0.1208 +0 0.1622 +0 0.1378 +0 0.3327 +0 0.1540 +0 0.1122 +0 0.0681 +0 0.0844 +0 0.0465 +0 0.3015 +0 0.0400 +0 0.3079 +0 0.0889 +0 0.1319 +0 0.0710 +0 0.0766 +0 0.1409 +0 0.0620 +0 0.1064 +0 0.1966 +0 0.0556 +0 0.1428 +0 0.1467 +0 0.1102 +0 0.0580 +0 0.1348 +0 0.0820 +0 0.0995 +0 0.1588 +0 0.1178 +0 0.1069 +0 0.0565 +0 0.6320 +0 0.0598 +0 0.1062 +0 0.0944 +0 0.0728 +0 0.1949 +1 0.8194 +0 0.1137 +0 0.0902 +0 0.0597 +0 0.1387 +0 0.0978 +0 0.0779 +0 0.0578 +0 0.2515 +0 0.1619 +0 0.0773 +0 0.0628 +0 0.0890 +0 0.0562 +0 0.1204 +0 0.7050 +0 0.1923 +0 0.2403 +0 0.3363 +0 0.1166 +0 0.1787 +0 0.0434 +0 0.0295 +0 0.1445 +0 0.1010 +0 0.3180 +0 0.1245 +0 0.7396 +0 0.0703 +0 0.0516 +0 0.0745 +1 0.8131 +0 0.1076 +0 0.0575 +0 0.1611 +0 0.1197 +0 0.0737 +0 0.0966 +0 0.1031 +0 0.1171 +0 0.1622 +0 0.1692 +0 0.1276 +0 0.1236 +0 0.2241 +0 0.0748 +0 0.0896 +0 0.6925 +0 0.2047 +0 0.1025 +0 0.0594 +0 0.1294 +0 0.0416 +0 0.2027 +0 0.1453 +0 0.2002 +0 0.0962 +0 0.0881 +0 0.2091 +0 0.7309 +0 0.0510 +0 0.0603 +0 0.0751 +0 0.1796 +0 0.1512 +0 0.0855 +0 0.1300 +0 0.0722 +0 0.2466 +0 0.1078 +0 0.0466 +0 0.1195 +0 0.6268 +0 0.1451 +0 0.6862 +0 0.0666 +0 0.0925 +0 0.0685 +0 0.1414 +0 0.0714 +0 0.1816 +0 0.0780 +0 0.0448 +0 0.0768 +0 0.0651 +0 0.2728 +0 0.0557 +0 0.1286 +0 0.0406 +0 0.0923 +0 0.0790 +0 0.0607 +0 0.0577 +0 0.3030 +0 0.3101 +0 0.1258 +0 0.5790 +0 0.0790 +0 0.0621 +0 0.1794 +0 0.1420 +0 0.2436 +0 0.2755 +0 0.3935 +0 0.0775 +0 0.0445 +0 0.1860 +0 0.1110 +0 0.0647 +0 0.1749 +0 0.1298 +0 0.2101 +0 0.2867 +0 0.3549 +0 0.0866 +0 0.0585 +0 0.3682 +0 0.0715 +0 0.1986 +0 0.0543 +0 0.3755 +0 0.1790 +0 0.6602 +0 0.1966 +0 0.1244 +0 0.2312 +0 0.2468 +0 0.1141 +0 0.2428 +0 0.1103 +0 0.1542 +0 0.2182 +0 0.0955 +0 0.2181 +0 0.3754 +0 0.1048 +0 0.1014 +0 0.0376 +0 0.0745 +0 0.0479 +0 0.0886 +0 0.1131 +0 0.6981 +0 0.1103 +0 0.1796 +0 0.2868 +0 0.0875 +0 0.2851 +0 0.1072 +0 0.0844 +0 0.1792 +0 0.0873 +0 0.0512 +0 0.2031 +0 0.1107 +0 0.1113 +0 0.5633 +0 0.1175 +0 0.0363 +0 0.6306 +0 0.1585 +1 0.8634 +0 0.0825 +0 0.1370 +0 0.0939 +0 0.1476 +0 0.0712 +0 0.1773 +0 0.1357 +0 0.1014 +0 0.0441 +0 0.1971 +0 0.1374 +0 0.0549 +0 0.1686 +0 0.2479 +0 0.0827 +0 0.2019 +0 0.0711 +0 0.1739 +0 0.0663 +0 0.1511 +0 0.1057 +0 0.1085 +1 0.7771 +0 0.1641 +0 0.0856 +0 0.0858 +0 0.0937 +0 0.0851 +0 0.4656 +0 0.1119 +0 0.1327 +0 0.2338 +0 0.1118 +0 0.6082 +0 0.0862 +0 0.0713 +0 0.4305 +0 0.0911 +0 0.1187 +0 0.0948 +0 0.1836 +0 0.0605 +0 0.0921 +0 0.2184 +0 0.2818 +0 0.2363 +0 0.1262 +0 0.3450 +0 0.1422 +0 0.6981 +0 0.0605 +0 0.1324 +0 0.0537 +0 0.3041 +0 0.0378 +0 0.0724 +0 0.0908 +0 0.1428 +0 0.0524 +0 0.1617 +0 0.0999 +0 0.3232 +0 0.1030 +0 0.1274 +0 0.0822 +0 0.0747 +0 0.0968 +0 0.1221 +0 0.3623 +0 0.1309 +0 0.0571 +1 0.7731 +0 0.0666 +0 0.1693 +0 0.1870 +0 0.0570 +0 0.0609 +0 0.1568 +0 0.1687 +0 0.0633 +0 0.1427 +0 0.0540 +0 0.1255 +0 0.2017 +0 0.0382 +0 0.0876 +0 0.0389 +0 0.0747 +0 0.0535 +0 0.0539 +0 0.1382 +0 0.2363 +0 0.1411 +0 0.7153 +0 0.1585 +0 0.0323 +0 0.0518 +0 0.0563 +0 0.4175 +0 0.1526 +1 0.8475 +0 0.0955 +0 0.0688 +0 0.1169 +0 0.0356 +0 0.0724 +0 0.0758 +0 0.0801 +0 0.1465 +0 0.0468 +0 0.1029 +0 0.3469 +0 0.1206 +0 0.1934 +0 0.0361 +0 0.0811 +0 0.0985 +0 0.1627 +0 0.1606 +0 0.0507 +0 0.0958 +0 0.2049 +0 0.1531 +0 0.2031 +0 0.0924 +0 0.1829 +0 0.1312 +0 0.0768 +0 0.0389 +0 0.0992 +0 0.1831 +0 0.1572 +0 0.0775 +0 0.2323 +0 0.0754 +0 0.0862 +0 0.0528 +0 0.2985 +0 0.0988 +0 0.1602 +0 0.1391 +0 0.0527 +0 0.0573 +0 0.2465 +0 0.0833 +0 0.1478 +0 0.0944 +0 0.1184 +0 0.1458 +0 0.0605 +0 0.1520 +0 0.1279 +0 0.0720 +0 0.0851 +0 0.0754 +0 0.1095 +0 0.2625 +0 0.0691 +0 0.0585 +0 0.1150 +0 0.2923 +0 0.1777 +0 0.0956 +0 0.1051 +0 0.0815 +0 0.0844 +0 0.1117 +0 0.2014 +0 0.0451 +0 0.1182 +0 0.2635 +0 0.1700 +0 0.0953 +0 0.0837 +0 0.1783 +0 0.1115 +0 0.0730 +0 0.1204 +0 0.2004 +0 0.0391 +0 0.1296 +0 0.0517 +0 0.0909 +0 0.1741 +0 0.0680 +0 0.1428 +0 0.2242 +0 0.0556 +0 0.0936 +0 0.1066 +0 0.0695 +0 0.1875 +1 0.7579 +0 0.0972 +0 0.3223 +0 0.1491 +0 0.0955 +0 0.1328 +0 0.1063 +0 0.0681 +0 0.1154 +0 0.1256 +0 0.0603 +0 0.0767 +0 0.0917 +0 0.0594 +0 0.4363 +0 0.0815 +0 0.0358 +0 0.2679 +0 0.1372 +0 0.0667 +0 0.1059 +0 0.3638 +0 0.0442 +0 0.2117 +0 0.0455 +0 0.3681 +0 0.1359 +0 0.1500 +0 0.0883 +0 0.0835 +0 0.0981 +0 0.0522 +0 0.4348 +0 0.1054 +0 0.0730 +0 0.1667 +0 0.1045 +0 0.2061 +0 0.1768 +0 0.0803 +0 0.0983 +0 0.0429 +0 0.1090 +0 0.1181 +0 0.0626 +0 0.0633 +0 0.1298 +0 0.0516 +0 0.1005 +0 0.0453 +0 0.1758 +0 0.1550 +1 0.7944 +0 0.0801 +0 0.0750 +0 0.3377 +0 0.2006 +0 0.1097 +0 0.0977 +0 0.3221 +0 0.0840 +0 0.0686 +0 0.0809 +0 0.0485 +0 0.1214 +0 0.0998 +0 0.1960 +0 0.6063 +0 0.1011 +0 0.0602 +0 0.1146 +0 0.0760 +0 0.1299 +0 0.1017 +0 0.1734 +0 0.0789 +0 0.0733 +0 0.2032 +0 0.1034 +0 0.3803 +0 0.0951 +0 0.0730 +0 0.1820 +0 0.0660 +0 0.2300 +0 0.1317 +0 0.1388 +0 0.1412 +0 0.1400 +0 0.7002 +0 0.0497 +0 0.4562 +0 0.1275 +0 0.0724 +0 0.0653 +0 0.1069 +0 0.0648 +0 0.0333 +0 0.0680 +0 0.1160 +0 0.0587 +0 0.1592 +0 0.1696 +0 0.1041 +0 0.3305 +0 0.1095 +0 0.3923 +0 0.0846 +0 0.0688 +0 0.1747 +0 0.1590 +0 0.0726 +0 0.1166 +0 0.0616 +0 0.0973 +0 0.3411 +0 0.1390 +0 0.0847 +0 0.1556 +0 0.0896 +0 0.2868 +0 0.0415 +0 0.0544 +0 0.0829 +0 0.0748 +0 0.6822 +0 0.1581 +0 0.1064 +0 0.1383 +0 0.0833 +0 0.0903 +0 0.0841 +0 0.1242 +0 0.0332 +0 0.3031 +0 0.0747 +0 0.1520 +0 0.0625 +0 0.2614 +0 0.1090 +0 0.1068 +0 0.0543 +0 0.0990 +0 0.1619 +0 0.0800 +0 0.6851 +0 0.1070 +0 0.1562 +0 0.0370 +1 0.7556 +0 0.2115 +0 0.1273 +0 0.1276 +0 0.0679 +0 0.1717 +0 0.1593 +0 0.0724 +0 0.2638 +0 0.1254 +0 0.1679 +0 0.0970 +0 0.0969 +0 0.2429 +0 0.0617 +0 0.0956 +0 0.2787 +0 0.1701 +0 0.0737 +0 0.1332 +0 0.1657 +0 0.1147 +0 0.1005 +0 0.1811 +0 0.0917 +0 0.1130 +0 0.0441 +0 0.0990 +0 0.0608 +0 0.0799 +0 0.0917 +0 0.1005 +0 0.0614 +0 0.7248 +0 0.0844 +0 0.0391 +0 0.0771 +0 0.0418 +0 0.0734 +0 0.1127 +0 0.1532 +0 0.1534 +0 0.2699 +0 0.0723 +0 0.1663 +0 0.0500 +0 0.3337 +0 0.4134 +0 0.1466 +0 0.1253 +0 0.0902 +0 0.1300 +0 0.0523 +0 0.7267 +0 0.0733 +0 0.4363 +0 0.0585 +0 0.0789 +0 0.2724 +0 0.0893 +1 0.8079 +0 0.0976 +0 0.1206 +0 0.3036 +0 0.1253 +0 0.6609 +0 0.0460 +0 0.1098 +0 0.3008 +0 0.1364 +0 0.1030 +0 0.0998 +0 0.0730 +0 0.0543 +0 0.0653 +0 0.0619 +0 0.3898 +0 0.0497 +0 0.1899 +0 0.0826 +0 0.0903 +0 0.0840 +0 0.1354 +0 0.1264 +0 0.0636 +0 0.1316 +0 0.1215 +0 0.1102 +0 0.1285 +0 0.0860 +0 0.0896 +0 0.1679 +0 0.0822 +0 0.0966 +0 0.1844 +0 0.1844 +0 0.1698 +0 0.1128 +0 0.2576 +0 0.1389 +0 0.1715 +0 0.0735 +0 0.0960 +0 0.1921 +0 0.0981 +0 0.0768 +0 0.0619 +0 0.0579 +0 0.0385 +0 0.2695 +0 0.1247 +0 0.0345 +0 0.1547 +0 0.3019 +0 0.0668 +0 0.4550 +0 0.1536 +0 0.1160 +0 0.0782 +0 0.3482 +0 0.1884 +0 0.1085 +0 0.0624 +0 0.2007 +0 0.1710 +0 0.1172 +0 0.0636 +0 0.1700 +0 0.2090 +0 0.1216 +0 0.0856 +0 0.0833 +0 0.0697 +0 0.1069 +0 0.1339 +0 0.0477 +0 0.1026 +0 0.0704 +0 0.0527 +0 0.0863 +0 0.1377 +0 0.0564 +0 0.0757 +0 0.2155 +0 0.1754 +0 0.2097 +0 0.1322 +0 0.0505 +0 0.0665 +0 0.0539 +0 0.1199 +0 0.1910 +0 0.0887 +0 0.4573 +0 0.1156 +0 0.1495 +0 0.0541 +0 0.1001 +0 0.1458 +0 0.0762 +0 0.0351 +0 0.2021 +0 0.0871 +0 0.4428 +0 0.0538 +0 0.1169 +0 0.2221 +0 0.1061 +0 0.0550 +0 0.0817 +0 0.0948 +0 0.1585 +0 0.2016 +0 0.1071 +0 0.1069 +0 0.1427 +0 0.1420 +0 0.3644 +0 0.0777 +0 0.0741 +0 0.0711 +0 0.0443 +0 0.1245 +0 0.1210 +0 0.0709 +0 0.0372 +0 0.4854 +0 0.2224 +0 0.1274 +0 0.0477 +0 0.1037 +0 0.0942 +0 0.2137 +0 0.0776 +0 0.1063 +0 0.0437 +0 0.0748 +0 0.1303 +0 0.1606 +0 0.0651 +0 0.0888 +0 0.1153 +0 0.2195 +0 0.0835 +0 0.1375 +0 0.0906 +0 0.2144 +0 0.0989 +0 0.1611 +0 0.0863 +0 0.0913 +0 0.1316 +0 0.1071 +0 0.0540 +1 0.7774 +0 0.1526 +0 0.1953 +0 0.0705 +0 0.1910 +0 0.1124 +0 0.1309 +0 0.2203 +0 0.1642 +0 0.0876 +0 0.0982 +0 0.0789 +0 0.0756 +0 0.1738 +0 0.0495 +0 0.0653 +0 0.0804 +0 0.0376 +0 0.2314 +0 0.0694 +0 0.0510 +0 0.1001 +0 0.0804 +0 0.0829 +0 0.0434 +0 0.1659 +0 0.1720 +0 0.1664 +0 0.0441 +0 0.0800 +0 0.1276 +0 0.0878 +0 0.1286 +0 0.0696 +0 0.1285 +0 0.0474 +0 0.0688 +0 0.0559 +0 0.4106 +0 0.0641 +0 0.1184 +0 0.1618 +0 0.2265 +1 0.7844 +0 0.2224 +1 0.2985 +0 0.0883 +0 0.0693 +0 0.1297 +0 0.0375 +0 0.1358 +0 0.0950 +0 0.1476 +0 0.0720 +0 0.3622 +0 0.1268 +0 0.2731 +0 0.1858 +0 0.0677 +1 0.7757 +0 0.1833 +0 0.0884 +0 0.3453 +0 0.0946 +0 0.0922 +0 0.0656 +1 0.8781 +0 0.0568 +0 0.1459 +0 0.1340 +0 0.0677 +0 0.1084 +0 0.1032 +0 0.1669 +0 0.1267 +0 0.7188 +0 0.1393 +0 0.1507 +0 0.3542 +0 0.1012 +0 0.2176 +0 0.0415 +0 0.0476 +0 0.2506 +0 0.0915 +0 0.0788 +0 0.1087 +0 0.0985 +0 0.1308 +0 0.0358 +0 0.1814 +0 0.0502 +0 0.0805 +0 0.3180 +0 0.1320 +0 0.2333 +0 0.1702 +0 0.1872 +0 0.0812 +0 0.0596 +0 0.0574 +0 0.1009 +0 0.1495 +0 0.0468 +0 0.3773 +0 0.1326 +0 0.1154 +0 0.0410 +0 0.1229 +0 0.0929 +0 0.0541 +0 0.0447 +0 0.0764 +0 0.0337 +0 0.0991 +0 0.0682 +0 0.1052 +0 0.0785 +0 0.1198 +0 0.0967 +0 0.1232 +0 0.1145 +0 0.2827 +0 0.7354 +0 0.0895 +0 0.1007 +0 0.0699 +0 0.0989 +0 0.1377 +0 0.1218 +0 0.1025 +0 0.0625 +0 0.2318 +0 0.1972 +0 0.2836 +0 0.5059 +0 0.1173 +0 0.0605 +0 0.0845 +0 0.3569 +0 0.3276 +0 0.1270 +0 0.0701 +0 0.3115 +0 0.6593 +0 0.1088 +0 0.1767 +0 0.1122 +0 0.0710 +0 0.0765 +0 0.0847 +0 0.1785 +0 0.1477 +0 0.0471 +0 0.0755 +0 0.0425 +0 0.0417 +0 0.1604 +0 0.2173 +0 0.0691 +0 0.0890 +0 0.0588 +0 0.1483 +0 0.0634 +0 0.2597 +0 0.1064 +0 0.0479 +0 0.2253 +0 0.1067 +0 0.2073 +0 0.0710 +1 0.8017 +0 0.3463 +0 0.2992 +0 0.1068 +0 0.1143 +0 0.2849 +0 0.1833 +0 0.0548 +0 0.1886 +0 0.1172 +0 0.0803 +0 0.0505 +0 0.1213 +0 0.4179 +0 0.1592 +0 0.0650 +0 0.0426 +1 0.8080 +0 0.0372 +0 0.0657 +0 0.0427 +0 0.2335 +0 0.2114 +0 0.0870 +0 0.1074 +0 0.0997 +0 0.3263 +0 0.1461 +0 0.1227 +0 0.0854 +0 0.2856 +0 0.2504 +0 0.0531 +0 0.0610 +0 0.1356 +0 0.0870 +0 0.0899 +0 0.0993 +0 0.0768 +0 0.1120 +0 0.3148 +0 0.0496 +0 0.0754 +0 0.1269 +0 0.2311 +0 0.0544 +0 0.0828 +0 0.0772 +0 0.0728 +0 0.0693 +0 0.3755 +0 0.1269 +0 0.1207 +0 0.1398 +0 0.1819 +0 0.0950 +0 0.0574 +0 0.1417 +0 0.0814 +0 0.2559 +0 0.1214 +0 0.0870 +0 0.0505 +0 0.1845 +0 0.1074 +0 0.2336 +0 0.1407 +0 0.0897 +0 0.0778 +0 0.2193 +0 0.1081 +0 0.2063 +0 0.0625 +0 0.0623 +0 0.1311 +0 0.1007 +0 0.0502 +0 0.2717 +0 0.1325 +0 0.1840 +0 0.1394 +0 0.0800 +0 0.0927 +0 0.1725 +0 0.1195 +0 0.0851 +0 0.0450 +0 0.1300 +0 0.1997 +0 0.0388 +0 0.0762 +0 0.2401 +0 0.1084 +0 0.1027 +0 0.1897 +0 0.0669 +0 0.1695 +0 0.0865 +0 0.0715 +0 0.0418 +0 0.1637 +0 0.3031 +0 0.1033 +0 0.0972 +0 0.5752 +1 0.8096 +0 0.7412 +0 0.1078 +0 0.1206 +0 0.0724 +0 0.3510 +0 0.1425 +0 0.0936 +0 0.6929 +0 0.0530 +0 0.1438 +0 0.1332 +0 0.0555 +0 0.1845 +0 0.2421 +0 0.0728 +0 0.0614 +0 0.1345 +0 0.2263 +0 0.0940 +0 0.0715 +0 0.0793 +0 0.0608 +1 0.7719 +0 0.0986 +0 0.2264 +0 0.1325 +0 0.2231 +0 0.1938 +0 0.1565 +0 0.0824 +0 0.1184 +0 0.1432 +0 0.2022 +0 0.0580 +0 0.0576 +0 0.0699 +0 0.1821 +0 0.1550 +0 0.0379 +0 0.0688 +0 0.3086 +0 0.2122 +0 0.1112 +0 0.2164 +0 0.0772 +0 0.2268 +0 0.1017 +0 0.1528 +0 0.0725 +0 0.2041 +0 0.0591 +0 0.0707 +0 0.0551 +0 0.0488 +0 0.1581 +0 0.1335 +0 0.2160 +0 0.0715 +0 0.2153 +0 0.0496 +0 0.1196 +0 0.1592 +0 0.1892 +0 0.3309 +0 0.0384 +0 0.0904 +0 0.0616 +0 0.3864 +0 0.0738 +0 0.0657 +0 0.2471 +1 0.8563 +0 0.1122 +0 0.0947 +0 0.0887 +0 0.0733 +0 0.0771 +0 0.0992 +0 0.0724 +0 0.5172 +0 0.3438 +0 0.1342 +0 0.2322 +0 0.2345 +0 0.0796 +0 0.0816 +0 0.0980 +0 0.1414 +0 0.1035 +0 0.1934 +0 0.1563 +0 0.1387 +0 0.0835 +0 0.2879 +0 0.1595 +0 0.1966 +0 0.1458 +0 0.2210 +0 0.2547 +0 0.1280 +0 0.0886 +0 0.1446 +0 0.6655 +0 0.2230 +0 0.1650 +0 0.1565 +0 0.1372 +0 0.0889 +0 0.0669 +0 0.6445 +0 0.0827 +0 0.0581 +0 0.1404 +0 0.0713 +0 0.0614 +0 0.0823 +0 0.1752 +0 0.0586 +1 0.7956 +0 0.1052 +0 0.0996 +0 0.0979 +0 0.1829 +0 0.4139 +0 0.0801 +0 0.1325 +0 0.1348 +0 0.0647 +0 0.2719 +0 0.1142 +0 0.2260 +0 0.4357 +0 0.0913 +0 0.1331 +0 0.5694 +0 0.1979 +0 0.1115 +0 0.0930 +0 0.1722 +0 0.1203 +0 0.0533 +0 0.1986 +0 0.1122 +0 0.1363 +0 0.0442 +0 0.0792 +0 0.6706 +0 0.1118 +0 0.0626 +0 0.1358 +0 0.0894 +0 0.1583 +0 0.1728 +0 0.0601 +0 0.1100 +0 0.1099 +0 0.1410 +0 0.0869 +0 0.2102 +0 0.4120 +0 0.0836 +0 0.1468 +0 0.0341 +0 0.0573 +0 0.0781 +0 0.1342 +0 0.1383 +0 0.1225 +0 0.0940 +0 0.0602 +1 0.8749 +0 0.0949 +0 0.0383 +0 0.3629 +0 0.0717 +0 0.1278 +0 0.1498 +0 0.1354 +0 0.1409 +0 0.0751 +0 0.0775 +0 0.1539 +0 0.2531 +0 0.1356 +0 0.1090 +0 0.0907 +0 0.3048 +0 0.1066 +0 0.1471 +0 0.2504 +0 0.0393 +0 0.0345 +0 0.0887 +0 0.1225 +0 0.0491 +0 0.1751 +0 0.2193 +0 0.1610 +0 0.0793 +0 0.0538 +0 0.0416 +0 0.1982 +0 0.2526 +0 0.1199 +0 0.1696 +0 0.2916 +0 0.0870 +0 0.1447 +0 0.0802 +0 0.0838 +0 0.0939 +0 0.0598 +0 0.1237 +0 0.0642 +0 0.0763 +0 0.1350 +0 0.0692 +0 0.0558 +0 0.0977 +0 0.0801 +0 0.2207 +0 0.0690 +0 0.1795 +0 0.0298 +0 0.0670 +0 0.1871 +0 0.1090 +0 0.0620 +0 0.0719 +0 0.6577 +0 0.1454 +0 0.1167 +0 0.0773 +0 0.1032 +0 0.0584 +0 0.2706 +0 0.5952 +0 0.1561 +0 0.2295 +0 0.0818 +0 0.1205 +0 0.1121 +0 0.0870 +0 0.0930 +0 0.0591 +0 0.1006 +0 0.2444 +0 0.1240 +0 0.0770 +0 0.1405 +0 0.1127 +0 0.2114 +0 0.2242 +0 0.0944 +0 0.0998 +0 0.0784 +0 0.1201 +0 0.2689 +0 0.1858 +0 0.0863 +0 0.1195 +0 0.0717 +0 0.1254 +0 0.0747 +0 0.1251 +0 0.2541 +0 0.1237 +0 0.1283 +0 0.1255 +0 0.1552 +0 0.1495 +0 0.0672 +0 0.1489 +0 0.0758 +0 0.1504 +0 0.0904 +0 0.1100 +0 0.0912 +0 0.2631 +0 0.1410 +0 0.1473 +0 0.0647 +0 0.1096 +0 0.0648 +0 0.1636 +0 0.1373 +0 0.0801 +0 0.0741 +0 0.0529 +0 0.1100 +0 0.0615 +0 0.1050 +0 0.0676 +0 0.1808 +0 0.1097 +0 0.1637 +0 0.1100 +0 0.1301 +0 0.1030 +0 0.0697 +0 0.0775 +0 0.0752 +0 0.0706 +0 0.0620 +0 0.1845 +0 0.0859 +0 0.0774 +0 0.1315 +0 0.1043 +0 0.7451 +0 0.3111 +0 0.0494 +0 0.1189 +0 0.0678 +0 0.1292 +0 0.1048 +0 0.0304 +0 0.1444 +0 0.1936 +0 0.0554 +0 0.0644 +0 0.1141 +0 0.1227 +0 0.0626 +0 0.0787 +0 0.1356 +0 0.2196 +0 0.0400 +0 0.1025 +0 0.0662 +0 0.0490 +0 0.1571 +0 0.0906 +0 0.0666 +0 0.0522 +0 0.0498 +0 0.1278 +0 0.1869 +0 0.1718 +0 0.0337 +0 0.0907 +0 0.0698 +0 0.1695 +0 0.3245 +0 0.0560 +0 0.1347 +0 0.4996 +0 0.6066 +0 0.0598 +0 0.0723 +0 0.1773 +0 0.7147 +0 0.1496 +0 0.1341 +0 0.1839 +0 0.1170 +0 0.0622 +0 0.0935 +0 0.0535 +0 0.0420 +0 0.0669 +0 0.1172 +0 0.2045 +0 0.0622 +0 0.1574 +0 0.1954 +0 0.0727 +0 0.1140 +0 0.4923 +0 0.2692 +0 0.1165 +0 0.0503 +0 0.1311 +0 0.6879 +0 0.0606 +0 0.3203 +0 0.1347 +0 0.0863 +1 0.7904 +0 0.2025 +0 0.2105 +0 0.1538 +0 0.0750 +0 0.1609 +0 0.2416 +0 0.1747 +0 0.1181 +0 0.1907 +0 0.1026 +0 0.2751 +0 0.1754 +0 0.0900 +0 0.0629 +0 0.1598 +0 0.3577 +0 0.0908 +0 0.0833 +0 0.0902 +0 0.3169 +0 0.1495 +0 0.1022 +0 0.2941 +0 0.1522 +0 0.1054 +0 0.0890 +0 0.1111 +0 0.1585 +0 0.0791 +0 0.2778 +0 0.1137 +0 0.0985 +0 0.1403 +0 0.1187 +0 0.1943 +0 0.1158 +0 0.1069 +0 0.1031 +0 0.0840 +0 0.1516 +0 0.0712 +0 0.1073 +0 0.3462 +0 0.0566 +0 0.1004 +0 0.3115 +0 0.0562 +0 0.1740 +0 0.2765 +0 0.0734 +0 0.1710 +0 0.0596 +0 0.0933 +0 0.0953 +0 0.0930 +0 0.1211 +0 0.1367 +0 0.0893 +0 0.0774 +0 0.0666 +0 0.1626 +0 0.2691 +0 0.0541 +0 0.0876 +0 0.1300 +0 0.1150 +0 0.0665 +0 0.2334 +0 0.0962 +0 0.3614 +0 0.3248 +0 0.0433 +0 0.1162 +0 0.1761 +0 0.1098 +0 0.0841 +0 0.0612 +0 0.0735 +0 0.0789 +0 0.0814 +0 0.0634 +0 0.1400 +0 0.1294 +0 0.1450 +0 0.1270 +0 0.0822 +0 0.1074 +0 0.1045 +0 0.5584 +0 0.1470 +0 0.1012 +0 0.0607 +0 0.0984 +0 0.1291 +0 0.0978 +0 0.3600 +0 0.1022 +0 0.2168 +0 0.0925 +0 0.2095 +0 0.0800 +0 0.0385 +0 0.0712 +0 0.0482 +0 0.1578 +0 0.1550 +0 0.0887 +0 0.0481 +0 0.0703 +1 0.7628 +0 0.1749 +0 0.0632 +0 0.0659 +0 0.0549 +0 0.1994 +0 0.1076 +0 0.1198 +0 0.1078 +0 0.0833 +0 0.1557 +0 0.0776 +0 0.2643 +0 0.0448 +0 0.0464 +0 0.0762 +0 0.1454 +0 0.0518 +0 0.0716 +0 0.0512 +0 0.1204 +0 0.1446 +0 0.0735 +0 0.0858 +0 0.7388 +0 0.0851 +0 0.0605 +0 0.2266 +0 0.0770 +0 0.0559 +0 0.1474 +0 0.0700 +0 0.1145 +0 0.1818 +0 0.2149 +0 0.0763 +0 0.3714 +0 0.1869 +0 0.0757 +0 0.1057 +0 0.3443 +0 0.0760 +0 0.0314 +0 0.0899 +0 0.4773 +1 0.8665 +0 0.1025 +0 0.0893 +0 0.1200 +0 0.0709 +0 0.1772 +0 0.0784 +0 0.2896 +0 0.0564 +0 0.1228 +0 0.2515 +0 0.1765 +0 0.0650 +0 0.0883 +0 0.2864 +0 0.1072 +0 0.0930 +0 0.1669 +0 0.0600 +0 0.1182 +0 0.0805 +0 0.4670 +0 0.2127 +0 0.0937 +0 0.1736 +0 0.0797 +0 0.2510 +0 0.2232 +0 0.0792 +0 0.0853 +0 0.0755 +0 0.2217 +0 0.0734 +0 0.2232 +0 0.1044 +0 0.0984 +0 0.2120 +0 0.1323 +0 0.2181 +0 0.1426 +0 0.1381 +0 0.1090 +0 0.0616 +0 0.2809 +0 0.3146 +0 0.0926 +0 0.0521 +0 0.0671 +0 0.0901 +0 0.1246 +0 0.1502 +0 0.0932 +0 0.0896 +0 0.0801 +0 0.1180 +0 0.0542 +0 0.0667 +0 0.1660 +0 0.1916 +0 0.1164 +0 0.1523 +0 0.1620 +0 0.1341 +0 0.1334 +0 0.1071 +0 0.1246 +0 0.1934 +0 0.1126 +0 0.1770 +0 0.0577 +0 0.0339 +0 0.0516 +0 0.4112 +0 0.2024 +0 0.2809 +0 0.2327 +0 0.4306 +0 0.0403 +0 0.0845 +0 0.1714 +0 0.1889 +0 0.2445 +0 0.1970 +0 0.0871 +0 0.1586 +0 0.0606 +0 0.1740 +0 0.0470 +0 0.3925 +0 0.0749 +0 0.0511 +0 0.0635 +0 0.2752 +0 0.0736 +0 0.1147 +0 0.2767 +0 0.1010 +0 0.1738 +0 0.1059 +0 0.0662 +0 0.0827 +0 0.0431 +0 0.0942 +0 0.0606 +0 0.1105 +0 0.1424 +0 0.1759 +0 0.1476 +0 0.0676 +0 0.0880 +0 0.1299 +0 0.0835 +0 0.0912 +0 0.0792 +0 0.1989 +0 0.1272 +0 0.0861 +0 0.2277 +0 0.0786 +0 0.1073 +0 0.0892 +0 0.1718 +0 0.0948 +0 0.2118 +1 0.8674 +0 0.0578 +0 0.0577 +0 0.2949 +0 0.1415 +0 0.2432 +0 0.1949 +0 0.1236 +0 0.0805 +0 0.1341 +0 0.0541 +0 0.3416 +1 0.7939 +0 0.1845 +0 0.0749 +0 0.0814 +0 0.1092 +0 0.0603 +0 0.4541 +0 0.0955 +0 0.1418 +0 0.1110 +0 0.0548 +0 0.1384 +0 0.1924 +0 0.2230 +1 0.8091 +0 0.2527 +0 0.0527 +0 0.1065 +0 0.0911 +0 0.0994 +0 0.1373 +0 0.1893 +0 0.0833 +0 0.1416 +0 0.1357 +0 0.1934 +0 0.1666 +0 0.0787 +0 0.1193 +0 0.2816 +0 0.1010 +0 0.1331 +0 0.2408 +0 0.1262 +0 0.1046 +0 0.3568 +0 0.1200 +0 0.1153 +0 0.0794 +0 0.1615 +0 0.1050 +0 0.6838 +0 0.1654 +0 0.0399 +0 0.0477 +0 0.1706 +0 0.0332 +0 0.1361 +1 0.8027 +0 0.0488 +0 0.1548 +0 0.0764 +0 0.0898 +0 0.0951 +0 0.1345 +0 0.0891 +0 0.0969 +0 0.0582 +0 0.0357 +0 0.0445 +0 0.0610 +0 0.0488 +0 0.1119 +0 0.0914 +0 0.0507 +0 0.0389 +0 0.0859 +0 0.0845 +0 0.0621 +0 0.0982 +0 0.3415 +0 0.1399 +0 0.1319 +0 0.0962 +0 0.2888 +0 0.1734 +0 0.0952 +0 0.0686 +0 0.0598 +0 0.1799 +0 0.3958 +0 0.1450 +0 0.0552 +0 0.1314 +0 0.1496 +0 0.1512 +0 0.0867 +0 0.2852 +0 0.3726 +1 0.8699 +0 0.0370 +0 0.1114 +0 0.0437 +0 0.1604 +0 0.0729 +0 0.0592 +0 0.0554 +0 0.0761 +0 0.1380 +0 0.1358 +0 0.0584 +0 0.0673 +0 0.1290 +0 0.1053 +0 0.1156 +0 0.0481 +0 0.2880 +0 0.0985 +0 0.0661 +0 0.1731 +0 0.1394 +0 0.2845 +0 0.1560 +0 0.1007 +0 0.0496 +0 0.3515 +0 0.0752 +0 0.2861 +0 0.1367 +0 0.0582 +0 0.0656 +0 0.1205 +0 0.0872 +0 0.1081 +0 0.1536 +0 0.0409 +1 0.8318 +0 0.2019 +0 0.0789 +0 0.2953 +0 0.0612 +0 0.0896 +0 0.1691 +0 0.0613 +0 0.2143 +0 0.1563 +0 0.0959 +0 0.0775 +0 0.1105 +0 0.0819 +0 0.3346 +0 0.4375 +0 0.1694 +0 0.3179 +0 0.1684 +0 0.0928 +0 0.2153 +0 0.1481 +0 0.1887 +0 0.0508 +0 0.0574 +0 0.1409 +0 0.2098 +0 0.0654 +0 0.1191 +0 0.0434 +0 0.1246 +0 0.2087 +0 0.1271 +0 0.1556 +0 0.0549 +0 0.1314 +1 0.8000 +0 0.2935 +0 0.0496 +0 0.1810 +0 0.1396 +0 0.0757 +0 0.1223 +0 0.4205 +0 0.1098 +0 0.1745 +0 0.1495 +0 0.0945 +0 0.0567 +0 0.1056 +0 0.1060 +1 0.7504 +0 0.0487 +0 0.1255 +0 0.0507 +0 0.0781 +0 0.0352 +0 0.2668 +0 0.0864 +0 0.1334 +0 0.4011 +0 0.4138 +0 0.1487 +0 0.2680 +0 0.1737 +0 0.1830 +0 0.2791 +0 0.0413 +0 0.0443 +0 0.5475 +0 0.0695 +0 0.2615 +0 0.0521 +0 0.1952 +0 0.0561 +0 0.1014 +0 0.1591 +0 0.1416 +0 0.0540 +0 0.0673 +0 0.1352 +0 0.4408 +0 0.0857 +0 0.0549 +0 0.0599 +1 0.8023 +0 0.0888 +0 0.0850 +0 0.1392 +0 0.0384 +0 0.2245 +0 0.0941 +0 0.1729 +0 0.0458 +0 0.0414 +0 0.0851 +0 0.0393 +0 0.0839 +0 0.1098 +0 0.0909 +0 0.5597 +0 0.3283 +0 0.0798 +0 0.1240 +0 0.0407 +0 0.0877 +0 0.1263 +0 0.0850 +0 0.2091 +0 0.0806 +0 0.0634 +0 0.1008 +0 0.2868 +0 0.2697 +1 0.7711 +0 0.1227 +0 0.0625 +0 0.4619 +0 0.0662 +0 0.2494 +0 0.0923 +0 0.0776 +0 0.0850 +0 0.1117 +0 0.0806 +0 0.1679 +0 0.0837 +0 0.0689 +0 0.0936 +0 0.1188 +0 0.2395 +0 0.0530 +0 0.0759 +0 0.1412 +0 0.0885 +0 0.1159 +0 0.1592 +0 0.2097 +0 0.0827 +0 0.0311 +0 0.0727 +0 0.1090 +0 0.1964 +0 0.2035 +0 0.0646 +0 0.0948 +0 0.0946 +0 0.1200 +0 0.0604 +0 0.1173 +0 0.1552 +0 0.0712 +0 0.0953 +0 0.0667 +0 0.0815 +0 0.1331 +0 0.1265 +0 0.1472 +0 0.1273 +0 0.0910 +1 0.7773 +0 0.0766 +0 0.0863 +1 0.8227 +0 0.0875 +0 0.2079 +0 0.2189 +0 0.1424 +0 0.0920 +0 0.2056 +0 0.3335 +0 0.2159 +0 0.1065 +0 0.1434 +0 0.0981 +1 0.8331 +0 0.2214 +0 0.0901 +0 0.0777 +0 0.2183 +0 0.1800 +0 0.0447 +0 0.0804 +0 0.1617 +0 0.1587 +0 0.0799 +0 0.0939 +0 0.0624 +0 0.2714 +0 0.0884 +0 0.0498 +0 0.1495 +0 0.3747 +0 0.1038 +0 0.0690 +0 0.1264 +0 0.1351 +0 0.0913 +0 0.0777 +0 0.0827 +0 0.1027 +0 0.1602 +0 0.3055 +0 0.1319 +0 0.0822 +0 0.0691 +0 0.2069 +0 0.1621 +0 0.1357 +0 0.2661 +0 0.0595 +0 0.0552 +0 0.1090 +0 0.0596 +0 0.0819 +0 0.1152 +0 0.0924 +0 0.0642 +0 0.1526 +0 0.0637 +0 0.0737 +0 0.1302 +0 0.0788 +0 0.1091 +0 0.0934 +0 0.0752 +0 0.1921 +0 0.4006 +0 0.0845 +0 0.1121 +0 0.2947 +0 0.0971 +0 0.1543 +0 0.1141 +0 0.0832 +0 0.0969 +0 0.0790 +0 0.7026 +0 0.0366 +0 0.0822 +0 0.0994 +0 0.0930 +0 0.0558 +0 0.1450 +0 0.2859 +0 0.1640 +0 0.2147 +0 0.0597 +0 0.1326 +0 0.0650 +0 0.5313 +0 0.0693 +0 0.3638 +0 0.1158 +0 0.0594 +0 0.2189 +0 0.2533 +0 0.1024 +0 0.1382 +0 0.5457 +0 0.1590 +0 0.1538 +0 0.1588 +0 0.6978 +0 0.0983 +0 0.2858 +0 0.0596 +0 0.0551 +0 0.2426 +0 0.0846 +0 0.0472 +0 0.2021 +0 0.2396 +0 0.0605 +0 0.0945 +0 0.1889 +0 0.1354 +0 0.0403 +0 0.0602 +0 0.2122 +0 0.1150 +0 0.3842 +0 0.0653 +0 0.1824 +0 0.0515 +0 0.4861 +0 0.0754 +0 0.1313 +0 0.0562 +0 0.0433 +0 0.1243 +0 0.1166 +0 0.2315 +0 0.1082 +0 0.1071 +1 0.8053 +0 0.1814 +0 0.0913 +0 0.1162 +0 0.1553 +0 0.1222 +0 0.0927 +0 0.0752 +0 0.1090 +0 0.1392 +0 0.1846 +0 0.1200 +0 0.0906 +0 0.1064 +0 0.1530 +0 0.0630 +0 0.0399 +0 0.1444 +0 0.0437 +0 0.0543 +0 0.0767 +0 0.1069 +0 0.0567 +0 0.2391 +0 0.1836 +0 0.1979 +0 0.0757 +0 0.0441 +0 0.0837 +0 0.1585 +0 0.0965 +0 0.0729 +0 0.0683 +0 0.1911 +0 0.0500 +0 0.0553 +0 0.1167 +0 0.0948 +0 0.1094 +0 0.1934 +0 0.0560 +0 0.0387 +0 0.0333 +0 0.1504 +0 0.0475 +0 0.2011 +0 0.0927 +0 0.1856 +0 0.1612 +0 0.0764 +0 0.0536 +0 0.1464 +1 0.8522 +0 0.0842 +0 0.3641 +0 0.1166 +0 0.1010 +0 0.1484 +0 0.1617 +0 0.0650 +0 0.0686 +0 0.0665 +0 0.0795 +0 0.0581 +0 0.0661 +1 0.8061 +0 0.1001 +0 0.1258 +0 0.0793 +0 0.0621 +0 0.1909 +0 0.0569 +1 0.8459 +0 0.1538 +0 0.0611 +0 0.1237 +1 0.8318 +0 0.0903 +0 0.0645 +0 0.1201 +0 0.0841 +0 0.1683 +1 0.7558 +0 0.0594 +0 0.0812 +0 0.0957 +0 0.0306 +0 0.1090 +0 0.1212 +0 0.0397 +0 0.1844 +0 0.0910 +0 0.1910 +0 0.0937 +0 0.1964 +0 0.1788 +0 0.0944 +0 0.1349 +0 0.1847 +0 0.0609 +0 0.0816 +0 0.1807 +1 0.8622 +0 0.0537 +0 0.1613 +0 0.3150 +0 0.0464 +0 0.7480 +0 0.2525 +0 0.1041 +0 0.1020 +0 0.1117 +0 0.1213 +0 0.0424 +1 0.7796 +0 0.4902 +0 0.0473 +0 0.4177 +0 0.1711 +0 0.1747 +0 0.2219 +0 0.0474 +0 0.1810 +0 0.1358 +0 0.0960 +0 0.0566 +0 0.2272 +0 0.2262 +0 0.1959 +0 0.0744 +0 0.0722 +0 0.1078 +0 0.0567 +0 0.2483 +0 0.3229 +0 0.0967 +0 0.1704 +0 0.0983 +0 0.1442 +0 0.0672 +0 0.0723 +0 0.1712 +0 0.2671 +0 0.1870 +0 0.1440 +0 0.1672 +0 0.2907 +0 0.1708 +0 0.0852 +0 0.2579 +0 0.0695 +0 0.1275 +0 0.0748 +0 0.1981 +0 0.0620 +0 0.1577 +0 0.0496 +0 0.1949 +0 0.0937 +0 0.1006 +0 0.0789 +0 0.1088 +0 0.1674 +0 0.1647 +0 0.1972 +0 0.2271 +0 0.2582 +0 0.0592 +0 0.1010 +0 0.1858 +0 0.0912 +0 0.1374 +0 0.1766 +0 0.1232 +0 0.1487 +0 0.6864 +0 0.0995 +0 0.0554 +0 0.1535 +0 0.0827 +0 0.1021 +0 0.0386 +0 0.1613 +0 0.2476 +1 0.8400 +0 0.1043 +1 0.8744 +0 0.1135 +0 0.1799 +0 0.0751 +0 0.4555 +0 0.3783 +1 0.8649 +0 0.0470 +0 0.3000 +0 0.0754 +0 0.3666 +0 0.0633 +0 0.0623 +0 0.0424 +0 0.1356 +0 0.3029 +0 0.1177 +0 0.0628 +0 0.0310 +0 0.0430 +0 0.5066 +0 0.2302 +0 0.0826 +0 0.1569 +0 0.0805 +0 0.0556 +0 0.1036 +0 0.1460 +0 0.2547 +0 0.2133 +0 0.0425 +0 0.1441 +0 0.0693 +0 0.3373 +0 0.1334 +0 0.4444 +0 0.1542 +0 0.1897 +0 0.0569 +0 0.0984 +0 0.1800 +0 0.2245 +0 0.0550 +0 0.0465 +0 0.1441 +0 0.2384 +0 0.0925 +0 0.1734 +0 0.0898 +0 0.0804 +0 0.1128 +0 0.1373 +0 0.0360 +0 0.1333 +0 0.0492 +0 0.0888 +0 0.0742 +0 0.2370 +0 0.1394 +0 0.0634 +0 0.2673 +0 0.0658 +0 0.1192 +0 0.0506 +0 0.0881 +0 0.7070 +0 0.0821 +0 0.6952 +0 0.0558 +0 0.1783 +0 0.1425 +0 0.0665 +0 0.1670 +0 0.0977 +0 0.0684 +0 0.6932 +0 0.0864 +0 0.1172 +0 0.2842 +0 0.0780 +0 0.0830 +0 0.2138 +0 0.0604 +0 0.1047 +0 0.0522 +0 0.1082 +0 0.1250 +0 0.0793 +0 0.1174 +0 0.1111 +0 0.1811 +0 0.0864 +0 0.3431 +0 0.0725 +0 0.1413 +0 0.0468 +0 0.1813 +0 0.0821 +0 0.0679 +0 0.0617 +0 0.0671 +1 0.8138 +0 0.1892 +0 0.0727 +0 0.2130 +0 0.2140 +0 0.1303 +1 0.7709 +0 0.1457 +0 0.1865 +0 0.0674 +0 0.1049 +0 0.2053 +0 0.0891 +0 0.2832 +0 0.1178 +0 0.1899 +0 0.0911 +0 0.1376 +0 0.2267 +0 0.4795 +1 0.7535 +0 0.1460 +0 0.0419 +0 0.2073 +0 0.0537 +0 0.3683 +0 0.4678 +0 0.0485 +0 0.0981 +0 0.1417 +0 0.1932 +0 0.0670 +0 0.3561 +0 0.0582 +0 0.1059 +0 0.2109 +0 0.0812 +0 0.0611 +0 0.0844 +0 0.1341 +0 0.0629 +0 0.1043 +0 0.2448 +0 0.1289 +0 0.1466 +0 0.0677 +0 0.1034 +0 0.1521 +0 0.1436 +0 0.7235 +0 0.2158 +0 0.0932 +0 0.0607 +0 0.0426 +0 0.0778 +0 0.1210 +0 0.0855 +0 0.1459 +0 0.0654 +0 0.1078 +0 0.1141 +0 0.2886 +0 0.1965 +0 0.0355 +0 0.7216 +0 0.0902 +0 0.0363 +0 0.1465 +0 0.0743 +0 0.0897 +0 0.0615 +0 0.0548 +0 0.1365 +0 0.3461 +0 0.1121 +0 0.0509 +0 0.0642 +1 0.8097 +0 0.1043 +0 0.0453 +0 0.0431 +0 0.0508 +0 0.0403 +0 0.0384 +0 0.0532 +0 0.1473 +0 0.0580 +0 0.0934 +0 0.0425 +0 0.6139 +0 0.0802 +0 0.0581 +0 0.1348 +0 0.0957 +0 0.0929 +0 0.0455 +0 0.1263 +0 0.2143 +0 0.0607 +0 0.5251 +0 0.0767 +0 0.1722 +0 0.0863 +0 0.1514 +0 0.5613 +0 0.4061 +1 0.7874 +0 0.0618 +0 0.0847 +0 0.1925 +0 0.1021 +0 0.0432 +0 0.1326 +0 0.0598 +0 0.0855 +0 0.2460 +0 0.1234 +0 0.1633 +0 0.1301 +1 0.8204 +0 0.0798 +0 0.0677 +0 0.0809 +0 0.0535 +0 0.2195 +0 0.0561 +0 0.1108 +0 0.1398 +0 0.0516 +0 0.1134 +0 0.0604 +0 0.1050 +0 0.2116 +0 0.1225 +0 0.1517 +0 0.1834 +0 0.2006 +0 0.1503 +0 0.0775 +0 0.1350 +0 0.0692 +0 0.1136 +0 0.3960 +0 0.1003 +0 0.0669 +0 0.0772 +0 0.0596 +0 0.0708 +0 0.0575 +0 0.1038 +0 0.0741 +0 0.1069 +0 0.0475 +0 0.0506 +0 0.0913 +0 0.1926 +0 0.1400 +0 0.0858 +0 0.0535 +0 0.1528 +0 0.1192 +0 0.0818 +0 0.1055 +0 0.0612 +0 0.0985 +0 0.1299 +0 0.0586 +0 0.1034 +0 0.0995 +0 0.1524 +0 0.1480 +0 0.2393 +0 0.0423 +0 0.1420 +0 0.2671 +0 0.0969 +0 0.0950 +0 0.1450 +0 0.1564 +0 0.1201 +0 0.5480 +0 0.2635 +0 0.0442 +0 0.0954 +0 0.7161 +0 0.0787 +0 0.0446 +0 0.1421 +0 0.2038 +0 0.0612 +0 0.2478 +0 0.0891 +0 0.0623 +0 0.0830 +0 0.2534 +0 0.0405 +0 0.1473 +0 0.0682 +0 0.0500 +0 0.1510 +0 0.1148 +0 0.1136 +0 0.2484 +0 0.0735 +0 0.1515 +0 0.0930 +0 0.2817 +0 0.0497 +0 0.0531 +0 0.0353 +0 0.1170 +0 0.1085 +0 0.2318 +0 0.1210 +0 0.1338 +0 0.0785 +0 0.1295 +0 0.0597 +0 0.0864 +0 0.1425 +0 0.0535 +0 0.0925 +0 0.0983 +0 0.0696 +0 0.0970 +0 0.0775 +0 0.3469 +0 0.2791 +0 0.0984 +0 0.0725 +0 0.0442 +0 0.2399 +0 0.0733 +0 0.3577 +0 0.0812 +0 0.2664 +0 0.1325 +0 0.1455 +0 0.0801 +0 0.2126 +0 0.0579 +0 0.0847 +0 0.0960 +0 0.1622 +0 0.1053 +0 0.0829 +0 0.1405 +0 0.3531 +0 0.1156 +0 0.0609 +0 0.0619 +0 0.0890 +0 0.1597 +0 0.0704 +0 0.1234 +0 0.2354 +0 0.0622 +0 0.0878 +0 0.0889 +0 0.1326 +0 0.0995 +0 0.3167 +0 0.0896 +0 0.1451 +0 0.0715 +0 0.0533 +0 0.1858 +0 0.0526 +0 0.2515 +0 0.4980 +0 0.0878 +0 0.3003 +0 0.2365 +0 0.0551 +0 0.1189 +0 0.2857 +0 0.0885 +1 0.8054 +0 0.0802 +0 0.1502 +0 0.0765 +0 0.1686 +0 0.1184 +0 0.3540 +0 0.0614 +0 0.1702 +0 0.0750 +0 0.0892 +0 0.2514 +0 0.2389 +0 0.2040 +0 0.0987 +0 0.1176 +0 0.1070 +0 0.2824 +0 0.1579 +0 0.1932 +0 0.2287 +0 0.2717 +0 0.1427 +0 0.0785 +0 0.1450 +0 0.0779 +0 0.1017 +0 0.3702 +0 0.1701 +0 0.0929 +0 0.2257 +0 0.0689 +0 0.1245 +0 0.4883 +0 0.0803 +0 0.1465 +0 0.0384 +0 0.0558 +0 0.0697 +0 0.0683 +0 0.0568 +0 0.1179 +0 0.0475 +0 0.2787 +0 0.1059 +0 0.0805 +0 0.1317 +0 0.1891 +0 0.1838 +0 0.0842 +0 0.0698 +0 0.1230 +0 0.0891 +0 0.1372 +0 0.0954 +0 0.0783 +0 0.0844 +0 0.2091 +0 0.0951 +0 0.1105 +0 0.0891 +0 0.0891 +0 0.1062 +0 0.0804 +0 0.0828 +0 0.0839 +0 0.0793 +0 0.1123 +0 0.0801 +0 0.4186 +0 0.2497 +0 0.1272 +0 0.3903 +0 0.1049 +0 0.1148 +0 0.1253 +0 0.0374 +0 0.3238 +0 0.1250 +0 0.0790 +0 0.0703 +0 0.0893 +1 0.8546 +0 0.0738 +0 0.1010 +0 0.0890 +0 0.0650 +0 0.0587 +0 0.1036 +0 0.1490 +0 0.0825 +0 0.0813 +0 0.1801 +0 0.1047 +0 0.0661 +0 0.0880 +0 0.1501 +0 0.1235 +0 0.0752 +0 0.0908 +0 0.0920 +0 0.1693 +0 0.0590 +0 0.0920 +0 0.1207 +0 0.1314 +0 0.1002 +0 0.0701 +0 0.0697 +0 0.0725 +0 0.1003 +0 0.0671 +0 0.2556 +0 0.0569 +1 0.8716 +0 0.0490 +0 0.0954 +0 0.0893 +0 0.1809 +0 0.1561 +0 0.2109 +0 0.1351 +0 0.1649 +0 0.0868 +0 0.1039 +0 0.1642 +0 0.1071 +0 0.0963 +0 0.1044 +0 0.1686 +0 0.1770 +0 0.1828 +0 0.0534 +0 0.0847 +0 0.3210 +0 0.0969 +0 0.0848 +0 0.1131 +0 0.3015 +0 0.0595 +0 0.0542 +0 0.0924 +0 0.0920 +0 0.0914 +0 0.3566 +0 0.1216 +0 0.1992 +0 0.1904 +0 0.0614 +0 0.3067 +0 0.0607 +0 0.0457 +0 0.0841 +0 0.1540 +0 0.0717 +0 0.7313 +0 0.6442 +0 0.0737 +0 0.0999 +0 0.0688 +0 0.1090 +0 0.2561 +0 0.2371 +0 0.1294 +0 0.2399 +0 0.1237 +0 0.1288 +0 0.3996 +0 0.1370 +0 0.3478 +0 0.1325 +0 0.1378 +0 0.1009 +0 0.1766 +0 0.2413 +1 0.8060 +0 0.1274 +0 0.2783 +0 0.0526 +0 0.2027 +0 0.1481 +0 0.1317 +0 0.0668 +0 0.0429 +0 0.0952 +0 0.1804 +0 0.1674 +0 0.2386 +0 0.0489 +0 0.1368 +0 0.0610 +0 0.0644 +0 0.0663 +0 0.1861 +0 0.1397 +0 0.0388 +0 0.1085 +0 0.1325 +0 0.1099 +0 0.0606 +0 0.1140 +0 0.1147 +0 0.3964 +0 0.0584 +0 0.0798 +0 0.1667 +0 0.2744 +0 0.0447 +0 0.1288 +0 0.0310 +0 0.0718 +0 0.0772 +0 0.1025 +0 0.0960 +0 0.0758 +0 0.1056 +0 0.0647 +0 0.2312 +0 0.1440 +0 0.2136 +0 0.0780 +0 0.0479 +0 0.1561 +0 0.1229 +0 0.1041 +0 0.2575 +0 0.1113 +0 0.0538 +0 0.0682 +0 0.1681 +0 0.0581 +0 0.0846 +0 0.1218 +0 0.0476 +0 0.0896 +0 0.1356 +0 0.0663 +0 0.0904 +0 0.1021 +0 0.3019 +0 0.1339 +0 0.0723 +0 0.1142 +0 0.0509 +0 0.2219 +0 0.0999 +0 0.0718 +0 0.0815 +0 0.1157 +0 0.1329 +0 0.0596 +0 0.0912 +0 0.3236 +0 0.0570 +0 0.6148 +0 0.0735 +0 0.1216 +0 0.1539 +0 0.3071 +0 0.6055 +0 0.2917 +0 0.0404 +0 0.1658 +0 0.0680 +0 0.1474 +1 0.8095 +0 0.0418 +0 0.0514 +0 0.0823 +0 0.0592 +0 0.1059 +0 0.0445 +0 0.3138 +0 0.1405 +0 0.2298 +0 0.2133 +0 0.1252 +0 0.1788 +0 0.0556 +0 0.2653 +0 0.1941 +0 0.0464 +0 0.3554 +0 0.2529 +0 0.4476 +0 0.1029 +0 0.1628 +0 0.3378 +0 0.0379 +0 0.1095 +0 0.0737 +0 0.0530 +0 0.0614 +0 0.0419 +0 0.1247 +0 0.3072 +0 0.1416 +0 0.1003 +0 0.1687 +0 0.0600 +0 0.0821 +0 0.1176 +0 0.1739 +0 0.1020 +0 0.0717 +0 0.1534 +0 0.1371 +0 0.2139 +0 0.1393 +0 0.0452 +0 0.1201 +0 0.0997 +0 0.0592 +0 0.1336 +0 0.0922 +0 0.0511 +0 0.0614 +0 0.1876 +0 0.0942 +0 0.0377 +0 0.1592 +0 0.0934 +0 0.0693 +0 0.0476 +0 0.0766 +0 0.0922 +0 0.2927 +0 0.0643 +0 0.1430 +0 0.2350 +0 0.1199 +0 0.0759 +0 0.1089 +0 0.1715 +0 0.0535 +0 0.0751 +0 0.1831 +0 0.0458 +0 0.1686 +0 0.1642 +0 0.0843 +0 0.0874 +0 0.1722 +0 0.0656 +0 0.5089 +0 0.1246 +0 0.0873 +0 0.1536 +0 0.2083 +0 0.0973 +0 0.0844 +0 0.5729 +0 0.2570 +0 0.3418 +0 0.3210 +0 0.1287 +0 0.1941 +0 0.2219 +0 0.0667 +0 0.1157 +0 0.1931 +0 0.1087 +0 0.7328 +1 0.4987 +0 0.1491 +0 0.0641 +0 0.0365 +0 0.1269 +0 0.0998 +0 0.0742 +0 0.6122 +0 0.1597 +0 0.0658 +0 0.1137 +0 0.0816 +0 0.2035 +0 0.2169 +0 0.1057 +0 0.0589 +0 0.1498 +0 0.3569 +0 0.0550 +0 0.1420 +0 0.1417 +0 0.3107 +0 0.0596 +0 0.1142 +0 0.0942 +0 0.1222 +0 0.0876 +0 0.1097 +0 0.1800 +0 0.7315 +0 0.2287 +1 0.8054 +0 0.2415 +0 0.0365 +0 0.2462 +0 0.0692 +0 0.0875 +0 0.2139 +0 0.0940 +0 0.1856 +0 0.0340 +0 0.2152 +0 0.7080 +0 0.3217 +0 0.1137 +0 0.2381 +0 0.1471 +1 0.8494 +0 0.1459 +0 0.1479 +0 0.0855 +0 0.0578 +0 0.0916 +0 0.1409 +0 0.1242 +0 0.0646 +0 0.0838 +0 0.1362 +0 0.0747 +0 0.1438 +0 0.3206 +0 0.0870 +0 0.0658 +0 0.2411 +0 0.0724 +0 0.0807 +0 0.0844 +0 0.1716 +0 0.1708 +0 0.0614 +0 0.0981 +0 0.1078 +0 0.2033 +0 0.2276 +0 0.2383 +0 0.0556 +0 0.0403 +1 0.7813 +0 0.1288 +0 0.0482 +0 0.0715 +0 0.0640 +0 0.0828 +0 0.1518 +0 0.2300 +0 0.0523 +0 0.3921 +0 0.1310 +0 0.1390 +0 0.0374 +0 0.0816 +0 0.1009 +0 0.1207 +0 0.0954 +0 0.0547 +0 0.1980 +0 0.0970 +0 0.2418 +0 0.0888 +0 0.0743 +0 0.0535 +0 0.1677 +0 0.2891 +0 0.0948 +0 0.1106 +0 0.3054 +0 0.2094 +0 0.1251 +0 0.0708 +0 0.0975 +0 0.1553 +0 0.2872 +0 0.1277 +0 0.0729 +0 0.0725 +0 0.0903 +0 0.0927 +0 0.0901 +0 0.0571 +0 0.1216 +0 0.0820 +0 0.1562 +0 0.0623 +0 0.1194 +0 0.2500 +0 0.0356 +0 0.1845 +0 0.2632 +0 0.0802 +0 0.0736 +0 0.0458 +0 0.0746 +0 0.1140 +0 0.2163 +0 0.1664 +0 0.1776 +0 0.1514 +0 0.1348 +0 0.1089 +0 0.2024 +0 0.0619 +0 0.1153 +0 0.5595 +0 0.2275 +0 0.0711 +0 0.0525 +0 0.0778 +0 0.0913 +0 0.6277 +0 0.0378 +0 0.0423 +0 0.1462 +0 0.1067 +0 0.1501 +0 0.0372 +0 0.1697 +0 0.1070 +0 0.3120 +0 0.1399 +0 0.1387 +0 0.7283 +0 0.0952 +0 0.1411 +0 0.4137 +0 0.0711 +0 0.0986 +0 0.1329 +0 0.0868 +0 0.0970 +0 0.0522 +0 0.0626 +0 0.0775 +0 0.2471 +0 0.0909 +0 0.0914 +0 0.1073 +0 0.2386 +0 0.1871 +0 0.1286 +0 0.1029 +0 0.1182 +0 0.1119 +0 0.1384 +0 0.0803 +0 0.2701 +0 0.0620 +0 0.0756 +0 0.2013 +0 0.0818 +0 0.0613 +0 0.0853 +0 0.0930 +0 0.1284 +0 0.0687 +0 0.3512 +0 0.1180 +0 0.1597 +0 0.0749 +0 0.1706 +0 0.0715 +0 0.2444 +0 0.3386 +0 0.1467 +0 0.1155 +0 0.1056 +0 0.1307 +0 0.0712 +0 0.1599 +0 0.1092 +0 0.1589 +0 0.0579 +0 0.0534 +0 0.2055 +0 0.2792 +0 0.0412 +0 0.0728 +0 0.0568 +0 0.0687 +0 0.1084 +0 0.1133 +0 0.1096 +0 0.0820 +0 0.0688 +0 0.6224 +0 0.1157 +0 0.1387 +0 0.5269 +0 0.0838 +0 0.2529 +0 0.0855 +0 0.2831 +0 0.1221 +0 0.1914 +0 0.0439 +0 0.0518 +0 0.3080 +0 0.0636 +0 0.1444 +0 0.1231 +0 0.0638 +0 0.1252 +0 0.0938 +0 0.1224 +0 0.0873 +0 0.0571 +0 0.0457 +0 0.0432 +0 0.1332 +0 0.0513 +0 0.5086 +0 0.1990 +0 0.0558 +0 0.2466 +0 0.2053 +0 0.0415 +0 0.6785 +0 0.1386 +0 0.1745 +0 0.0578 +0 0.1161 +0 0.0910 +0 0.0808 +0 0.0979 +0 0.1421 +0 0.0640 +0 0.1114 +0 0.1619 +0 0.0569 +0 0.2312 +0 0.2522 +0 0.0984 +0 0.0902 +0 0.0448 +0 0.1621 +0 0.2508 +0 0.0999 +0 0.0333 +0 0.1110 +0 0.0920 +0 0.0915 +0 0.1085 +0 0.0703 +0 0.0857 +0 0.1818 +0 0.0899 +0 0.0968 +0 0.0371 +0 0.4992 +0 0.0445 +0 0.0638 +0 0.4843 +0 0.1011 +0 0.1046 +0 0.1173 +0 0.3375 +0 0.0605 +0 0.0876 +0 0.1672 +0 0.0977 +0 0.1076 +0 0.0800 +0 0.0418 +0 0.2579 +0 0.0744 +0 0.1504 +0 0.1604 +0 0.0697 +0 0.0761 +0 0.1462 +0 0.2303 +0 0.0593 +0 0.0698 +0 0.1124 +0 0.0856 +0 0.2442 +0 0.0660 +0 0.0923 +0 0.1271 +0 0.0840 +0 0.1899 +0 0.0535 +0 0.1284 +0 0.1418 +0 0.0552 +0 0.0835 +0 0.5970 +1 0.7787 +0 0.2062 +0 0.0564 +0 0.1853 +0 0.1408 +0 0.0620 +0 0.4712 +0 0.2133 +0 0.1995 +0 0.0491 +0 0.2333 +0 0.1017 +0 0.0999 +0 0.1211 +0 0.1288 +0 0.1108 +0 0.1648 +0 0.1467 +0 0.0872 +0 0.2043 +0 0.3379 +0 0.0661 +0 0.2219 +0 0.2104 +0 0.0810 +0 0.1496 +0 0.0526 +0 0.7473 +0 0.0815 +0 0.1325 +0 0.0858 +0 0.0847 +0 0.1043 +0 0.2242 +0 0.2389 +0 0.1003 +0 0.1972 +0 0.0972 +0 0.1195 +0 0.1183 +0 0.0512 +0 0.1825 +0 0.3451 +0 0.3458 +0 0.2384 +0 0.3332 +0 0.0927 +0 0.1990 +0 0.1070 +0 0.1622 +0 0.0482 +0 0.0844 +0 0.0562 +0 0.3339 +0 0.1590 +0 0.0945 +0 0.0625 +0 0.6724 +0 0.1501 +0 0.1096 +0 0.0768 +0 0.0661 +0 0.1420 +0 0.0908 +0 0.0723 +0 0.0516 +0 0.1078 +0 0.0737 +0 0.0971 +0 0.3028 +0 0.2408 +0 0.0755 +0 0.3050 +0 0.1005 +0 0.2696 +0 0.2892 +0 0.0552 +0 0.2122 +0 0.1146 +0 0.1821 +0 0.1629 +0 0.0911 +0 0.0681 +0 0.1443 +0 0.3311 +0 0.1037 +0 0.0317 +0 0.0508 +0 0.1058 +0 0.1242 +0 0.1336 +0 0.3401 +0 0.0611 +0 0.1548 +0 0.4017 +0 0.1520 +0 0.1849 +0 0.3466 +0 0.0396 +0 0.1307 +0 0.2055 +0 0.0954 +0 0.0778 +0 0.0841 +0 0.2263 +0 0.5213 +0 0.1209 +0 0.2980 +0 0.0487 +0 0.2362 +0 0.0635 +0 0.1179 +0 0.1217 +0 0.1951 +0 0.2583 +0 0.1401 +0 0.0777 +0 0.1504 +0 0.0678 +0 0.7490 +0 0.0789 +0 0.1605 +0 0.2474 +0 0.0679 +0 0.1108 +0 0.0775 +0 0.1292 +1 0.8268 +0 0.0988 +0 0.0531 +0 0.0705 +0 0.1096 +0 0.2343 +0 0.1369 +0 0.0848 +0 0.0964 +0 0.0772 +0 0.0545 +0 0.1055 +0 0.0922 +0 0.0566 +0 0.1561 +0 0.1059 +0 0.0766 +0 0.0424 +0 0.1565 +0 0.1297 +0 0.0644 +0 0.0951 +0 0.1152 +0 0.0609 +0 0.1105 +0 0.0524 +0 0.0733 +0 0.7281 +0 0.1190 +0 0.1228 +0 0.1212 +0 0.1237 +0 0.0800 +0 0.1167 +0 0.3286 +0 0.1187 +0 0.1426 +0 0.1033 +0 0.1371 +0 0.0914 +0 0.4150 +0 0.0707 +0 0.0408 +0 0.0649 +0 0.0868 +0 0.1000 +0 0.1548 +0 0.0513 +0 0.0897 +0 0.0742 +0 0.0946 +0 0.0850 +0 0.1418 +0 0.1256 +0 0.0975 +0 0.0490 +0 0.0731 +0 0.1670 +0 0.1204 +0 0.1243 +0 0.0683 +0 0.0792 +0 0.0500 +0 0.2115 +0 0.1361 +0 0.0936 +0 0.0999 +0 0.1493 +0 0.0632 +0 0.0972 +0 0.0684 +0 0.0786 +0 0.4090 +0 0.1177 +0 0.2288 +0 0.1813 +0 0.1974 +0 0.0803 +0 0.1506 +0 0.0737 +0 0.4445 +0 0.0676 +0 0.3832 +0 0.2409 +0 0.2635 +0 0.0794 +0 0.1409 +0 0.1065 +0 0.0856 +0 0.0986 +0 0.1588 +0 0.0525 +0 0.0556 +0 0.7317 +0 0.1266 +0 0.0705 +0 0.0709 +0 0.0465 +0 0.1236 +0 0.0701 +0 0.1200 +0 0.1018 +0 0.1262 +0 0.1969 +0 0.1094 +0 0.1561 +0 0.0714 +0 0.0865 +0 0.0903 +0 0.0460 +0 0.0957 +0 0.0646 +0 0.1422 +0 0.4777 +0 0.2670 +0 0.0796 +0 0.0314 +0 0.1067 +0 0.0908 +1 0.8190 +0 0.0892 +0 0.0376 +0 0.2795 +0 0.1379 +0 0.1329 +0 0.0679 +0 0.0885 +0 0.0713 +0 0.1326 +0 0.0951 +0 0.0908 +0 0.0986 +0 0.2338 +0 0.4169 +0 0.1481 +0 0.0439 +0 0.3610 +0 0.2521 +0 0.2427 +0 0.1482 +0 0.0975 +0 0.0689 +0 0.1642 +0 0.1496 +0 0.2783 +0 0.1244 +0 0.0756 +0 0.2106 +0 0.0580 +0 0.1894 +0 0.0547 +0 0.2780 +0 0.0498 +0 0.1162 +0 0.0606 +0 0.0511 +0 0.2239 +0 0.1228 +0 0.0818 +0 0.0715 +0 0.1295 +0 0.0579 +0 0.4003 +0 0.1121 +0 0.0714 +0 0.0485 +0 0.0629 +0 0.0630 +0 0.0696 +0 0.0747 +0 0.0764 +0 0.1235 +1 0.7987 +0 0.0544 +0 0.5185 +0 0.0688 +0 0.1149 +0 0.1577 +0 0.0682 +0 0.0533 +0 0.2715 +0 0.1766 +0 0.1990 +0 0.1081 +0 0.3465 +0 0.2203 +0 0.4026 +0 0.0813 +0 0.0619 +0 0.1966 +0 0.0843 +0 0.1252 +0 0.0435 +0 0.0727 +0 0.1434 +0 0.1431 +0 0.1693 +0 0.0436 +0 0.5926 +0 0.3011 +0 0.1111 +0 0.0651 +0 0.0699 +0 0.2089 +0 0.0890 +0 0.2812 +0 0.1221 +0 0.2209 +0 0.1283 +0 0.0532 +0 0.1680 +0 0.1221 +0 0.1479 +0 0.1698 +0 0.0945 +0 0.0738 +0 0.2866 +0 0.2281 +0 0.1581 +0 0.0778 +0 0.0871 +0 0.1192 +0 0.0738 +0 0.0944 +0 0.1747 +0 0.1516 +0 0.1131 +0 0.0929 +0 0.0490 +0 0.0993 +0 0.0788 +0 0.1609 +0 0.2608 +0 0.1925 +0 0.1206 +0 0.1290 +0 0.0907 +0 0.1562 +0 0.0667 +0 0.0822 +0 0.4256 +0 0.1734 +0 0.1709 +0 0.2683 +0 0.0505 +0 0.0775 +0 0.1314 +0 0.3436 +0 0.0895 +0 0.1015 +0 0.0866 +0 0.0756 +0 0.0476 +0 0.2599 +0 0.0650 +0 0.0811 +0 0.0687 +0 0.0902 +0 0.1978 +0 0.2167 +0 0.1618 +0 0.0409 +0 0.2698 +0 0.1690 +0 0.2728 +0 0.2066 +0 0.0544 +0 0.3365 +0 0.6550 +0 0.0770 +0 0.1072 +0 0.0599 +0 0.0734 +0 0.0634 +0 0.2081 +0 0.0841 +0 0.0774 +0 0.2036 +0 0.0856 +0 0.1285 +0 0.0729 +0 0.0536 +0 0.0697 +0 0.0922 +0 0.0915 +0 0.0980 +0 0.5634 +0 0.1083 +0 0.2711 +0 0.1915 +0 0.1680 +0 0.1939 +0 0.0957 +0 0.1224 +0 0.1366 +0 0.0724 +0 0.1090 +0 0.0733 +0 0.0845 +0 0.0869 +0 0.2100 +0 0.3393 +0 0.0820 +0 0.1596 +0 0.0932 +0 0.0459 +0 0.0631 +0 0.2709 +0 0.1533 +0 0.3113 +0 0.1015 +0 0.0400 +0 0.1493 +0 0.1588 +0 0.1159 +0 0.1069 +0 0.1596 +0 0.0865 +0 0.1173 +0 0.0752 +0 0.0402 +0 0.0433 +0 0.1604 +0 0.1084 +0 0.1383 +0 0.1715 +0 0.0817 +0 0.1315 +0 0.0670 +0 0.1133 +0 0.0513 +0 0.1757 +0 0.1245 +0 0.1393 +0 0.1545 +0 0.4307 +0 0.0492 +0 0.1694 +0 0.0827 +0 0.1176 +0 0.2699 +0 0.0843 +0 0.0440 +0 0.1462 +0 0.0471 +0 0.1143 +0 0.0780 +0 0.0615 +0 0.0430 +0 0.0907 +0 0.1427 +0 0.0505 +0 0.1252 +0 0.1007 +0 0.0587 +0 0.1024 +0 0.1136 +0 0.0631 +0 0.0750 +0 0.1094 +0 0.0772 +0 0.1034 +0 0.0531 +0 0.1753 +0 0.0438 +0 0.2185 +0 0.0726 +0 0.0774 +0 0.0563 +0 0.0710 +0 0.0611 +0 0.0559 +0 0.1434 +0 0.1912 +0 0.0624 +0 0.1574 +0 0.3168 +0 0.1110 +0 0.0967 +0 0.0724 +0 0.0307 +0 0.2028 +0 0.1493 +0 0.1507 +0 0.0547 +0 0.1151 +0 0.0493 +0 0.0699 +0 0.0685 +0 0.1395 +0 0.1286 +0 0.0536 +0 0.1091 +0 0.0752 +0 0.0936 +0 0.0942 +0 0.1268 +0 0.2755 +0 0.0530 +0 0.0827 +0 0.1442 +0 0.2179 +0 0.1553 +0 0.0558 +0 0.1630 +0 0.3410 +0 0.0792 +0 0.1809 +0 0.1551 +0 0.1056 +0 0.0769 +0 0.3582 +0 0.1169 +0 0.7484 +0 0.0424 +0 0.0585 +0 0.0860 +0 0.3576 +0 0.0795 +0 0.7370 +0 0.1019 +0 0.1604 +0 0.0900 +0 0.2650 +0 0.1271 +0 0.1701 +0 0.0729 +0 0.2088 +0 0.1466 +0 0.2402 +0 0.1082 +0 0.0701 +0 0.0737 +0 0.1111 +0 0.1869 +0 0.3599 +0 0.0397 +0 0.0641 +0 0.1677 +0 0.0389 +0 0.1429 +0 0.1256 +0 0.0669 +0 0.0503 +0 0.0565 +0 0.1054 +0 0.0623 +0 0.0953 +0 0.3676 +0 0.0852 +0 0.0986 +0 0.2172 +0 0.1361 +0 0.0918 +0 0.1065 +0 0.0411 +0 0.1346 +0 0.1127 +0 0.6584 +0 0.0597 +1 0.3334 +0 0.1442 +0 0.6873 +0 0.0855 +0 0.1535 +0 0.0590 +0 0.0791 +0 0.0572 +0 0.1324 +0 0.2558 +0 0.1122 +0 0.1517 +0 0.1948 +0 0.1736 +0 0.1095 +0 0.0938 +0 0.1280 +0 0.0725 +0 0.1003 +0 0.1284 +0 0.0900 +0 0.0520 +0 0.3039 +0 0.1246 +0 0.2472 +0 0.0709 +0 0.0659 +0 0.1022 +0 0.1369 +0 0.1146 +0 0.1591 +0 0.0433 +0 0.1142 +0 0.1273 +0 0.0995 +0 0.1066 +0 0.0683 +0 0.1874 +0 0.0987 +0 0.0983 +0 0.0612 +0 0.4380 +0 0.2330 +0 0.0518 +0 0.0675 +0 0.2183 +0 0.1123 +0 0.1360 +0 0.0707 +0 0.0838 +0 0.1811 +0 0.0886 +0 0.1100 +0 0.0661 +0 0.1215 +0 0.1165 +0 0.1188 +0 0.1695 +0 0.0858 +0 0.0547 +0 0.1157 +0 0.1339 +0 0.0955 +0 0.1068 +0 0.0814 +0 0.0696 +0 0.1571 +0 0.4668 +1 0.8585 +0 0.0781 +0 0.0631 +0 0.0811 +0 0.1668 +0 0.0290 +0 0.0896 +0 0.2516 +0 0.1740 +0 0.0353 +0 0.1545 +0 0.1895 +0 0.1854 +1 0.8559 +0 0.1010 +0 0.1132 +0 0.0615 +0 0.0728 +0 0.0687 +0 0.0680 +0 0.0932 +0 0.1527 +0 0.0504 +0 0.0655 +0 0.4006 +0 0.1061 +0 0.0588 +0 0.0789 +0 0.0393 +0 0.2506 +0 0.0760 +0 0.0799 +0 0.0476 +0 0.5083 +0 0.0405 +0 0.1386 +0 0.1874 +0 0.1310 +0 0.1993 +0 0.0632 +0 0.0990 +0 0.2514 +0 0.1958 +0 0.4444 +0 0.0904 +0 0.1167 +0 0.2178 +0 0.0902 +0 0.0398 +0 0.0654 +0 0.0740 +0 0.0820 +0 0.0962 +0 0.0455 +0 0.0611 +0 0.3577 +0 0.0723 +0 0.1111 +0 0.0789 +0 0.0934 +0 0.1051 +0 0.1973 +0 0.1251 +0 0.0892 +0 0.0778 +0 0.1392 +0 0.0573 +0 0.0797 +0 0.0488 +0 0.1474 +0 0.0408 +0 0.1727 +0 0.1463 +0 0.2276 +0 0.2353 +1 0.2556 +0 0.0703 +0 0.0658 +0 0.1582 +0 0.0827 +0 0.0910 +0 0.0827 +1 0.8070 +0 0.0548 +0 0.0576 +0 0.1344 +0 0.7050 +0 0.0673 +0 0.0995 +0 0.1438 +0 0.2292 +0 0.0869 +0 0.0527 +0 0.1429 +0 0.0526 +0 0.2842 +0 0.1102 +0 0.0549 +0 0.1174 +0 0.0669 +0 0.3911 +0 0.1851 +0 0.0830 +0 0.0898 +0 0.1211 +0 0.1911 +0 0.0702 +0 0.0771 +0 0.1324 +0 0.1483 +0 0.2293 +0 0.1817 +0 0.0563 +0 0.0993 +0 0.0455 +0 0.0770 +0 0.1177 +0 0.1120 +0 0.0701 +0 0.0482 +0 0.0979 +0 0.0440 +0 0.0623 +0 0.1245 +0 0.1156 +0 0.0880 +0 0.1124 +0 0.0511 +0 0.0999 +0 0.1638 +0 0.0572 +0 0.0722 +0 0.1128 +0 0.1643 +1 0.8027 +0 0.1164 +0 0.1549 +0 0.3017 +0 0.4089 +0 0.6730 +0 0.1435 +0 0.0955 +0 0.0722 +1 0.7675 +0 0.1529 +0 0.3874 +0 0.1147 +0 0.2133 +0 0.0657 +0 0.1032 +0 0.0767 +0 0.1220 +0 0.1574 +0 0.0677 +0 0.0401 +0 0.7340 +0 0.0914 +0 0.0417 +0 0.1229 +0 0.3725 +0 0.1184 +0 0.1789 +0 0.0559 +0 0.2285 +0 0.0834 +0 0.1018 +0 0.0421 +0 0.1379 +0 0.0821 +0 0.0416 +0 0.1422 +0 0.3944 +0 0.1803 +0 0.3401 +0 0.2144 +0 0.1681 +0 0.1235 +0 0.0839 +0 0.0540 +0 0.0399 +0 0.1426 +0 0.0685 +0 0.0820 +0 0.1140 +0 0.0615 +0 0.3422 +0 0.1369 +0 0.1256 +0 0.1095 +0 0.1540 +0 0.0533 +0 0.1392 +0 0.0580 +0 0.2681 +0 0.0968 +0 0.1329 +0 0.0351 +0 0.0477 +0 0.0909 +0 0.0979 +0 0.0600 +0 0.1979 +0 0.0874 +0 0.0786 +0 0.1018 +0 0.1208 +0 0.6244 +0 0.1021 +0 0.0718 +0 0.0878 +0 0.1350 +0 0.0715 +0 0.0695 +0 0.3248 +0 0.1451 +0 0.0470 +0 0.1485 +0 0.1662 +0 0.3524 +0 0.0692 +0 0.0750 +0 0.0669 +0 0.2897 +0 0.0847 +0 0.1203 +0 0.1674 +0 0.0672 +0 0.0624 +0 0.0478 +0 0.2309 +0 0.0508 +0 0.2568 +0 0.0414 +0 0.0983 +0 0.0946 +0 0.0587 +0 0.0720 +0 0.1111 +0 0.0975 +0 0.1915 +0 0.1419 +0 0.1038 +0 0.1264 +0 0.5257 +0 0.0655 +0 0.3862 +0 0.0408 +0 0.1227 +0 0.1408 +0 0.0875 +0 0.0725 +0 0.0634 +0 0.0666 +0 0.0441 +0 0.1082 +0 0.1024 +0 0.1021 +0 0.3161 +0 0.1246 +0 0.2036 +0 0.2644 +0 0.0978 +0 0.0729 +0 0.0752 +0 0.0553 +0 0.0810 +0 0.2162 +0 0.0768 +0 0.0552 +0 0.5470 +0 0.1550 +1 0.8563 +0 0.1124 +0 0.0787 +0 0.0776 +0 0.1427 +0 0.0488 +0 0.1667 +0 0.1202 +0 0.1518 +0 0.0701 +0 0.0312 +0 0.4003 +0 0.1349 +0 0.1194 +0 0.1871 +0 0.0497 +0 0.0430 +0 0.1508 +0 0.0608 +0 0.0956 +0 0.0784 +0 0.1152 +0 0.0671 +0 0.1352 +0 0.7099 +0 0.0446 +0 0.0936 +0 0.1558 +0 0.0794 +0 0.2616 +0 0.1228 +0 0.0732 +0 0.1235 +0 0.0591 +0 0.0703 +0 0.2680 +0 0.2208 +0 0.1558 +0 0.5950 +0 0.0947 +0 0.0930 +0 0.1238 +0 0.1408 +0 0.0950 +0 0.2312 +0 0.3037 +0 0.1743 +0 0.0612 +0 0.1318 +0 0.1440 +0 0.4725 +0 0.0476 +0 0.0622 +0 0.0987 +0 0.2316 +0 0.1374 +0 0.0701 +0 0.1424 +0 0.6564 +0 0.0831 +0 0.1048 +0 0.0650 +0 0.0568 +0 0.0758 +0 0.1784 +0 0.0673 +0 0.0499 +0 0.0880 +0 0.0683 +0 0.1347 +0 0.2258 +0 0.0935 +0 0.0777 +0 0.0896 +0 0.0900 +0 0.1875 +0 0.1742 +0 0.1123 +0 0.1932 +0 0.1429 +0 0.1017 +0 0.1222 +0 0.3245 +0 0.0717 +0 0.1359 +0 0.1050 +0 0.0654 +0 0.0543 +0 0.0571 +0 0.2355 +0 0.0823 +0 0.4976 +0 0.0416 +0 0.0675 +0 0.0568 +0 0.0380 +0 0.1316 +0 0.0609 +0 0.1544 +0 0.6509 +0 0.0467 +0 0.1453 +0 0.0869 +0 0.0704 +0 0.2020 +0 0.0833 +0 0.0998 +0 0.2404 +0 0.1775 +0 0.0871 +0 0.1553 +0 0.1370 +0 0.2443 +0 0.1133 +0 0.2186 +0 0.1264 +0 0.2478 +0 0.0753 +0 0.1133 +0 0.2828 +0 0.0386 +0 0.1675 +0 0.0711 +0 0.0711 +0 0.1056 +0 0.0347 +0 0.0750 +0 0.0528 +0 0.1518 +0 0.1836 +0 0.1887 +0 0.0627 +0 0.3283 +0 0.2840 +0 0.1701 +0 0.2121 +0 0.1350 +0 0.0544 +0 0.0971 +0 0.1962 +0 0.0858 +0 0.0770 +0 0.1141 +0 0.0703 +0 0.0631 +0 0.0717 +0 0.0732 +0 0.0649 +0 0.0835 +0 0.0682 +0 0.1023 +0 0.1070 +0 0.0536 +0 0.0579 +0 0.2459 +0 0.1315 +0 0.2456 +0 0.0830 +0 0.0483 +1 0.8054 +0 0.1028 +0 0.1053 +0 0.0756 +0 0.1624 +0 0.0878 +0 0.0937 +0 0.1270 +0 0.0905 +0 0.0944 +0 0.0708 +0 0.0775 +0 0.0620 +0 0.4211 +0 0.1489 +0 0.0601 +0 0.0890 +0 0.0503 +0 0.1544 +0 0.1565 +0 0.1844 +0 0.2027 +0 0.1188 +0 0.1827 +0 0.1162 +0 0.0599 +0 0.2109 +0 0.0964 +0 0.0808 +0 0.1470 +0 0.0743 +0 0.0989 +0 0.1205 +0 0.1462 +0 0.1173 +0 0.1617 +0 0.0605 +0 0.0544 +0 0.5737 +0 0.1455 +0 0.0761 +0 0.0497 +0 0.0635 +0 0.3871 +0 0.0650 +0 0.0324 +0 0.1118 +0 0.2153 +0 0.2058 +0 0.0668 +0 0.0834 +0 0.1847 +0 0.1366 +0 0.2870 +0 0.0553 +0 0.2011 +0 0.2076 +0 0.1890 +0 0.0869 +0 0.0716 +0 0.2476 +0 0.0545 +0 0.3058 +0 0.0693 +0 0.0495 +0 0.0891 +0 0.2594 +0 0.1157 +0 0.0542 +0 0.1620 +0 0.1751 +0 0.0877 +0 0.1753 +0 0.1081 +0 0.0679 +0 0.0749 +0 0.4849 +0 0.1257 +0 0.2198 +0 0.1381 +0 0.0784 +0 0.1250 +0 0.3162 +0 0.0556 +0 0.1290 +0 0.0499 +0 0.0873 +0 0.1926 +0 0.1528 +0 0.0512 +0 0.1098 +0 0.0675 +0 0.0786 +0 0.0748 +0 0.1597 +0 0.1057 +0 0.0721 +0 0.0877 +0 0.0890 +0 0.2402 +0 0.0691 +0 0.0343 +0 0.0896 +0 0.0922 +0 0.0349 +0 0.3965 +0 0.2443 +0 0.2066 +0 0.1011 +0 0.0915 +0 0.1883 +0 0.0879 +0 0.0829 +0 0.1235 +0 0.2108 +0 0.0665 +0 0.0431 +0 0.1533 +0 0.2127 +0 0.0782 +0 0.1022 +0 0.0685 +0 0.1733 +0 0.0893 +0 0.1096 +0 0.0875 +0 0.1471 +0 0.0702 +0 0.0889 +0 0.0436 +0 0.0304 +0 0.2970 +0 0.0830 +0 0.0671 +0 0.3128 +0 0.2020 +0 0.0920 +0 0.0447 +0 0.1376 +0 0.0681 +0 0.1072 +0 0.2417 +0 0.0386 +0 0.3140 +0 0.0792 +0 0.0781 +0 0.1291 +0 0.0755 +0 0.1167 +0 0.0876 +0 0.0714 +0 0.0970 +0 0.0774 +0 0.0959 +0 0.1106 +0 0.0785 +0 0.1386 +0 0.0956 +0 0.0834 +0 0.0408 +0 0.1045 +0 0.0430 +0 0.2706 +0 0.1771 +0 0.0816 +0 0.0585 +0 0.0612 +0 0.1115 +0 0.2355 +0 0.1537 +0 0.0355 +1 0.8077 +0 0.1359 +0 0.3139 +0 0.1149 +0 0.1763 +0 0.0827 +0 0.1465 +0 0.0647 +0 0.0868 +0 0.0674 +0 0.1811 +0 0.2008 +0 0.1286 +0 0.0403 +0 0.1233 +0 0.0473 +0 0.0887 +0 0.0814 +0 0.0642 +1 0.8351 +0 0.0660 +0 0.0873 +0 0.1402 +0 0.0682 +0 0.5551 +0 0.3533 +0 0.0678 +0 0.2119 +0 0.0729 +0 0.0603 +0 0.0992 +0 0.3817 +0 0.0766 +0 0.1175 +0 0.2165 +0 0.0940 +0 0.0950 +0 0.0455 +0 0.0346 +0 0.0688 +0 0.2696 +0 0.1364 +0 0.0908 +0 0.0855 +0 0.0956 +0 0.0844 +0 0.1033 +0 0.0306 +0 0.1781 +0 0.6591 +0 0.0990 +0 0.1228 +0 0.0531 +0 0.6606 +0 0.0605 +0 0.1010 +0 0.3161 +0 0.1360 +0 0.1338 +0 0.1872 +0 0.1610 +0 0.1283 +0 0.0999 +0 0.0322 +0 0.1561 +0 0.0629 +0 0.0671 +0 0.0766 +0 0.0736 +1 0.7521 +0 0.0700 +0 0.1750 +0 0.0564 +0 0.0631 +0 0.0646 +0 0.2250 +0 0.0670 +0 0.1289 +0 0.0985 +0 0.0453 +0 0.0849 +0 0.0822 +0 0.2504 +0 0.1108 +0 0.1407 +0 0.1190 +0 0.1040 +0 0.1693 +0 0.0564 +0 0.1953 +0 0.1136 +0 0.0519 +0 0.0987 +0 0.1121 +0 0.0600 +0 0.1317 +0 0.0926 +0 0.1691 +0 0.1997 +0 0.2748 +0 0.2310 +0 0.3320 +0 0.0793 +0 0.0538 +0 0.1264 +0 0.1144 +0 0.7474 +0 0.0783 +0 0.1846 +0 0.1018 +0 0.0888 +0 0.0851 +0 0.2276 +0 0.0417 +0 0.2649 +0 0.2212 +0 0.0817 +0 0.1265 +0 0.1507 +0 0.0880 +0 0.0486 +0 0.6013 +0 0.1353 +0 0.1218 +0 0.0990 +0 0.0859 +0 0.0728 +0 0.0360 +0 0.1685 +0 0.3810 +0 0.1349 +0 0.1810 +0 0.0791 +0 0.0726 +0 0.3972 +1 0.7897 +0 0.0813 +0 0.1224 +0 0.1675 +0 0.0477 +0 0.3258 +0 0.2958 +0 0.0479 +0 0.1056 +0 0.1025 +0 0.0525 +0 0.0671 +0 0.3124 +0 0.1966 +1 0.8451 +0 0.0851 +0 0.0822 +0 0.3997 +0 0.0490 +0 0.1021 +0 0.0650 +0 0.3336 +0 0.0934 +0 0.1234 +0 0.0653 +0 0.3248 +0 0.2511 +0 0.2668 +0 0.1304 +0 0.1337 +0 0.1729 +0 0.2658 +0 0.1927 +0 0.1822 +0 0.0871 +0 0.0339 +0 0.0492 +0 0.1679 +0 0.0624 +0 0.1043 +0 0.1307 +0 0.0612 +0 0.1210 +0 0.3744 +0 0.1788 +0 0.1577 +0 0.1705 +0 0.0904 +0 0.0868 +0 0.2124 +0 0.1410 +0 0.0881 +0 0.1293 +0 0.0898 +0 0.1282 +0 0.0821 +0 0.0830 +0 0.1381 +0 0.0980 +0 0.1030 +0 0.1362 +0 0.2135 +0 0.3908 +0 0.0981 +0 0.2353 +0 0.0701 +0 0.1023 +0 0.1336 +0 0.0716 +0 0.1445 +0 0.2407 +0 0.0541 +0 0.0943 +0 0.3030 +0 0.0934 +0 0.0851 +0 0.0769 +0 0.1510 +0 0.1381 +0 0.1086 +0 0.2460 +0 0.0925 +0 0.0796 +0 0.0902 +0 0.2767 +0 0.0784 +0 0.1566 +0 0.1564 +0 0.6170 +0 0.3235 +0 0.0488 +0 0.4569 +1 0.7539 +0 0.2146 +0 0.0976 +0 0.1082 +0 0.0503 +0 0.2851 +0 0.2589 +0 0.1155 +0 0.0858 +0 0.1428 +0 0.0464 +0 0.1539 +0 0.1285 +0 0.0910 +0 0.0852 +0 0.2024 +0 0.1439 +0 0.0409 +0 0.0792 +0 0.0583 +0 0.1150 +0 0.0987 +0 0.0916 +0 0.0870 +0 0.0811 +0 0.1244 +0 0.0590 +0 0.1223 +0 0.1126 +0 0.0495 +0 0.1673 +0 0.0356 +0 0.1725 +0 0.1315 +0 0.1104 +0 0.0789 +0 0.0713 +0 0.1125 +0 0.1921 +0 0.1719 +0 0.1723 +0 0.0528 +0 0.6716 +0 0.0766 +0 0.1864 +0 0.0529 +0 0.0884 +0 0.1338 +0 0.5567 +0 0.0878 +0 0.1023 +0 0.2604 +0 0.1727 +0 0.0624 +0 0.0741 +0 0.2099 +0 0.1002 +0 0.2936 +0 0.1418 +0 0.0419 +0 0.0711 +0 0.0545 +0 0.0981 +0 0.0761 +0 0.0476 +0 0.0720 +0 0.0599 +0 0.0527 +0 0.0801 +0 0.1198 +0 0.0702 +0 0.0651 +0 0.1060 +0 0.5161 +0 0.1656 +0 0.1646 +0 0.3125 +0 0.0913 +0 0.0985 +0 0.1561 +0 0.1234 +0 0.1712 +0 0.1318 +0 0.2134 +0 0.7053 +0 0.0947 +0 0.0844 +0 0.2681 +0 0.0895 +0 0.0684 +0 0.1966 +0 0.1002 +0 0.1136 +0 0.0769 +0 0.0919 +0 0.0930 +0 0.2501 +0 0.1607 +0 0.6228 +0 0.1097 +0 0.2035 +0 0.0432 +0 0.1827 +0 0.0634 +0 0.1620 +0 0.1331 +0 0.0499 +0 0.4234 +0 0.2839 +0 0.0557 +0 0.0742 +0 0.0711 +0 0.0824 +0 0.0468 +0 0.0792 +0 0.1673 +0 0.0411 +0 0.0729 +0 0.2613 +0 0.2609 +0 0.1070 +0 0.2340 +0 0.0764 +0 0.3648 +0 0.0595 +0 0.1010 +0 0.0706 +0 0.1166 +0 0.0458 +0 0.0799 +0 0.1308 +0 0.0440 +0 0.6680 +0 0.1004 +0 0.2656 +0 0.1264 +0 0.0430 +0 0.0901 +0 0.0330 +0 0.6026 +0 0.0984 +0 0.2645 +0 0.0712 +0 0.0864 +0 0.2073 +0 0.1753 +0 0.0650 +0 0.1282 +0 0.2817 +0 0.0604 +0 0.1029 +0 0.0589 +0 0.0698 +0 0.1361 +0 0.0720 +0 0.1449 +0 0.3400 +0 0.1448 +0 0.1350 +0 0.0724 +0 0.2578 +0 0.0907 +0 0.2427 +0 0.1742 +0 0.0670 +0 0.0950 +0 0.1172 +0 0.1173 +0 0.1456 +0 0.0782 +0 0.0361 +0 0.0780 +0 0.0863 +0 0.0600 +0 0.1094 +0 0.0901 +0 0.2010 +0 0.1052 +0 0.1229 +0 0.0918 +0 0.1077 +0 0.1067 +0 0.1135 +0 0.0744 +0 0.1701 +0 0.2945 +0 0.1170 +0 0.0629 +0 0.5271 +0 0.1507 +0 0.0790 +0 0.2142 +0 0.1446 +0 0.0480 +0 0.1797 +0 0.1413 +0 0.0700 +0 0.1802 +0 0.0825 +0 0.0906 +0 0.0677 +1 0.8595 +0 0.1585 +0 0.1413 +0 0.0565 +0 0.0756 +0 0.0405 +0 0.0776 +0 0.0514 +0 0.1174 +0 0.2033 +0 0.2764 +0 0.6251 +0 0.0772 +0 0.1566 +0 0.0402 +0 0.1114 +0 0.0547 +0 0.1031 +0 0.4789 +0 0.0688 +0 0.1065 +0 0.0886 +0 0.1184 +0 0.1283 +0 0.2683 +0 0.0462 +0 0.2534 +0 0.0893 +0 0.2839 +0 0.1042 +0 0.1378 +0 0.0596 +0 0.1147 +0 0.1181 +0 0.0813 +0 0.1934 +0 0.1404 +0 0.1678 +0 0.2425 +0 0.1076 +0 0.2026 +0 0.0682 +0 0.1157 +0 0.1013 +0 0.2634 +0 0.1468 +0 0.0815 +0 0.1783 +0 0.0523 +0 0.1495 +0 0.0712 +0 0.1244 +0 0.1173 +0 0.0837 +0 0.0704 +0 0.1093 +0 0.2590 +0 0.0728 +0 0.1142 +0 0.2957 +0 0.1328 +0 0.4100 +0 0.0499 +0 0.1009 +0 0.0944 +0 0.1177 +0 0.1413 +0 0.1113 +0 0.6944 +0 0.0397 +0 0.0853 +0 0.4353 +0 0.0975 +0 0.0493 +0 0.0682 +0 0.2849 +0 0.2973 +0 0.0711 +0 0.0722 +0 0.0892 +0 0.6795 +0 0.0596 +0 0.1202 +0 0.6865 +0 0.0951 +0 0.1036 +0 0.7109 +0 0.1018 +0 0.1823 +0 0.0798 +0 0.1064 +0 0.1061 +0 0.1031 +0 0.1016 +0 0.0771 +0 0.1328 +0 0.0987 +0 0.0966 +0 0.2064 +0 0.0746 +0 0.0821 +0 0.1852 +0 0.0900 +0 0.0451 +0 0.1219 +0 0.1348 +0 0.0708 +0 0.1699 +0 0.3016 +0 0.1918 +0 0.0750 +0 0.2203 +0 0.1612 +0 0.0617 +0 0.0506 +0 0.1462 +0 0.1343 +0 0.0663 +0 0.1797 +0 0.2292 +0 0.1992 +0 0.1458 +0 0.1375 +0 0.2269 +0 0.0668 +0 0.1118 +0 0.0524 +0 0.1416 +0 0.1008 +0 0.1751 +0 0.0870 +0 0.0307 +0 0.2258 +0 0.1136 +0 0.0763 +0 0.1185 +0 0.1112 +0 0.0880 +0 0.2571 +0 0.0554 +0 0.2169 +0 0.2467 +0 0.1997 +0 0.3588 +0 0.0559 +0 0.2859 +0 0.0384 +0 0.7262 +0 0.1478 +0 0.0632 +0 0.1622 +0 0.1796 +0 0.0759 +0 0.1376 +0 0.1067 +0 0.1092 +0 0.1618 +0 0.0692 +0 0.1069 +0 0.1153 +0 0.1408 +0 0.1396 +0 0.0416 +0 0.0716 +0 0.1926 +0 0.1111 +0 0.0936 +0 0.1099 +0 0.1223 +0 0.1060 +0 0.1851 +0 0.1486 +0 0.0609 +0 0.0633 +0 0.0651 +0 0.0956 +0 0.3964 +0 0.0915 +0 0.6621 +0 0.1187 +0 0.1134 +0 0.0561 +0 0.1787 +0 0.1555 +0 0.1228 +0 0.1152 +0 0.1183 +0 0.1067 +0 0.2337 +0 0.0402 +0 0.0386 +0 0.6754 +0 0.2046 +0 0.0366 +0 0.4783 +0 0.0949 +0 0.1404 +0 0.1394 +0 0.3274 +0 0.0404 +0 0.1304 +0 0.0764 +0 0.1207 +0 0.0920 +0 0.0560 +0 0.1605 +0 0.1097 +0 0.4207 +0 0.1944 +0 0.1786 +0 0.0980 +0 0.1709 +0 0.2434 +0 0.1022 +0 0.0363 +0 0.1799 +0 0.0822 +0 0.3710 +0 0.2401 +0 0.1076 +0 0.0873 +0 0.3064 +0 0.1767 +0 0.3037 +0 0.1349 +0 0.0723 +0 0.2590 +0 0.0724 +0 0.0536 +0 0.0997 +0 0.0723 +0 0.1824 +0 0.0678 +0 0.2228 +0 0.1389 +0 0.0668 +0 0.1230 +0 0.0952 +0 0.1389 +0 0.0591 +0 0.0622 +0 0.0762 +0 0.2598 +0 0.0613 +0 0.1668 +0 0.1558 +0 0.0867 +0 0.1390 +0 0.0591 +0 0.1691 +0 0.0998 +0 0.0357 +0 0.2041 +0 0.1836 +0 0.1417 +0 0.1053 +1 0.7741 +0 0.0603 +0 0.0431 +0 0.2491 +1 0.8280 +0 0.0566 +0 0.3689 +0 0.1245 +0 0.1236 +0 0.1003 +0 0.1823 +0 0.2267 +0 0.5926 +0 0.2041 +0 0.1981 +0 0.2257 +0 0.1182 +0 0.1206 +0 0.5641 +0 0.5843 +0 0.3126 +0 0.6716 +0 0.1543 +0 0.0612 +0 0.0565 +0 0.0750 +0 0.1267 +0 0.0806 +0 0.1312 +0 0.0634 +0 0.1166 +0 0.2967 +0 0.1135 +0 0.1069 +0 0.0765 +0 0.1187 +0 0.1155 +0 0.1754 +0 0.0557 +0 0.1900 +0 0.0680 +1 0.2980 +0 0.2172 +0 0.1670 +0 0.1745 +0 0.1572 +0 0.3404 +0 0.0523 +0 0.1475 +0 0.0803 +0 0.2601 +0 0.1404 +0 0.1232 +0 0.1408 +0 0.0589 +0 0.0846 +0 0.1151 +0 0.2880 +0 0.0528 +0 0.0727 +0 0.0780 +0 0.0939 +0 0.1120 +0 0.0750 +0 0.0946 +0 0.1122 +0 0.1264 +0 0.0901 +0 0.1169 +0 0.0941 +0 0.1961 +0 0.1612 +0 0.1147 +0 0.1623 +0 0.0485 +0 0.1827 +0 0.1386 +0 0.1065 +0 0.1345 +0 0.0705 +0 0.0923 +0 0.1184 +0 0.0670 +0 0.2137 +0 0.1492 +0 0.1245 +0 0.1186 +0 0.1400 +0 0.0468 +0 0.1464 +0 0.0944 +0 0.1687 +0 0.4404 +0 0.0501 +0 0.1273 +0 0.0534 +0 0.3060 +0 0.2417 +0 0.2764 +0 0.2331 +0 0.1247 +0 0.1586 +0 0.0543 +0 0.0873 +0 0.2305 +0 0.0677 +0 0.0944 +0 0.1004 +0 0.0370 +0 0.1003 +0 0.1530 +0 0.1864 +0 0.2560 +0 0.0497 +0 0.1692 +0 0.2730 +0 0.1243 +0 0.0660 +0 0.1143 +0 0.0767 +0 0.1984 +0 0.3083 +0 0.0658 +0 0.1318 +0 0.0545 +0 0.0942 +0 0.4398 +0 0.1050 +0 0.0812 +0 0.0757 +0 0.3104 +0 0.0589 +0 0.2883 +0 0.1135 +0 0.2293 +0 0.1513 +0 0.1739 +0 0.0600 +0 0.0536 +0 0.0933 +0 0.1889 +0 0.0986 +0 0.1910 +0 0.0722 +0 0.3322 +0 0.0887 +0 0.0954 +0 0.0788 +0 0.0942 +0 0.0911 +0 0.1282 +0 0.1295 +0 0.2529 +0 0.0548 +0 0.1089 +0 0.0779 +0 0.3079 +0 0.0933 +0 0.0689 +0 0.1454 +0 0.0837 +0 0.0627 +0 0.0903 +0 0.1203 +0 0.2223 +0 0.1980 +0 0.1606 +0 0.1109 +0 0.0580 +0 0.1280 +0 0.6821 +0 0.1544 +0 0.2337 +0 0.0552 +0 0.4609 +0 0.1209 +0 0.2602 +0 0.0625 +0 0.1338 +0 0.2609 +0 0.0487 +0 0.2237 +0 0.0958 +0 0.1445 +0 0.0892 +0 0.0426 +0 0.1353 +1 0.8183 +0 0.1563 +0 0.0954 +0 0.0870 +0 0.0403 +0 0.1069 +0 0.0546 +0 0.1551 +0 0.0902 +0 0.2216 +0 0.2414 +0 0.1957 +0 0.2274 +0 0.1466 +0 0.1237 +0 0.1955 +0 0.0998 +0 0.2379 +0 0.2250 +0 0.1032 +0 0.1174 +0 0.1320 +0 0.0464 +0 0.0765 +0 0.1692 +0 0.0965 +0 0.0639 +0 0.0548 +0 0.1186 +0 0.0956 +0 0.1822 +0 0.0924 +0 0.0701 +0 0.1106 +0 0.1236 +0 0.0897 +0 0.2893 +0 0.0913 +0 0.0742 +1 0.7761 +0 0.2047 +0 0.0921 +0 0.0402 +1 0.8299 +0 0.0789 +0 0.0531 +0 0.0681 +0 0.0468 +0 0.1523 +0 0.0732 +0 0.0698 +0 0.0819 +0 0.0443 +0 0.1135 +0 0.1475 +0 0.0482 +0 0.1225 +0 0.3822 +0 0.3773 +0 0.2520 +0 0.0410 +0 0.0714 +0 0.0756 +0 0.0775 +0 0.0812 +0 0.6546 +0 0.1140 +0 0.2396 +0 0.0688 +0 0.0908 +0 0.0453 +0 0.0997 +0 0.0432 +0 0.0906 +0 0.1360 +0 0.0560 +0 0.1157 +0 0.1392 +0 0.0963 +0 0.1556 +0 0.0690 +0 0.0753 +0 0.0902 +0 0.0926 +0 0.0753 +0 0.1478 +0 0.0530 +0 0.1113 +0 0.3651 +0 0.0431 +0 0.0807 +0 0.1176 +0 0.0654 +0 0.0685 +0 0.2528 +0 0.0352 +0 0.1840 +0 0.0636 +0 0.0406 +0 0.0776 +0 0.0740 +0 0.1207 +0 0.0770 +0 0.0764 +0 0.1757 +0 0.2028 +0 0.0939 +0 0.2697 +0 0.0785 +0 0.0962 +0 0.0912 +0 0.0470 +0 0.0711 +0 0.1930 +0 0.0877 +0 0.0340 +0 0.0931 +0 0.0856 +0 0.0392 +0 0.0520 +0 0.2375 +0 0.0618 +0 0.6304 +0 0.2524 +0 0.0483 +0 0.0814 +0 0.2466 +0 0.0601 +0 0.0448 +0 0.0976 +0 0.0799 +0 0.3208 +0 0.0518 +0 0.2820 +0 0.0628 +0 0.0577 +0 0.0542 +0 0.1933 +0 0.1164 +0 0.1144 +0 0.0894 +0 0.1012 +0 0.1378 +0 0.0819 +0 0.0827 +0 0.0733 +0 0.0666 +0 0.1041 +0 0.0419 +0 0.1272 +0 0.1418 +0 0.0467 +0 0.0417 +0 0.2485 +0 0.0920 +0 0.0695 +0 0.0513 +0 0.0374 +0 0.0805 +0 0.0581 +0 0.2020 +0 0.0833 +0 0.0561 +0 0.1406 +0 0.1705 +0 0.2203 +0 0.1032 +0 0.1239 +0 0.1246 +0 0.0881 +0 0.1291 +0 0.1271 +0 0.0837 +0 0.1447 +0 0.0447 +0 0.3004 +0 0.1098 +0 0.2700 +0 0.1224 +0 0.3535 +0 0.6691 +0 0.1056 +0 0.0938 +0 0.1705 +0 0.0707 +0 0.0467 +0 0.0613 +0 0.3130 +0 0.6998 +0 0.1199 +0 0.0446 +0 0.0791 +0 0.0494 +0 0.0391 +0 0.2071 +0 0.1851 +0 0.0794 +0 0.1323 +0 0.2721 +0 0.0646 +0 0.4285 +0 0.0931 +0 0.1915 +0 0.1464 +0 0.2296 +0 0.0542 +0 0.7321 +0 0.1342 +0 0.1516 +0 0.1059 +0 0.1207 +0 0.2785 +0 0.0707 +0 0.1762 +0 0.0958 +0 0.2663 +0 0.1571 +0 0.2094 +0 0.0578 +0 0.1157 +0 0.2423 +0 0.1424 +0 0.1515 +0 0.1657 +0 0.0506 +0 0.0978 +0 0.2202 +0 0.1848 +0 0.1048 +0 0.0710 +0 0.1125 +0 0.3688 +0 0.0593 +0 0.1034 +0 0.5091 +0 0.3602 +0 0.1890 +0 0.0650 +0 0.0818 +0 0.0567 +0 0.0712 +0 0.2210 +0 0.1258 +0 0.0844 +0 0.0808 +0 0.0609 +0 0.0739 +0 0.1279 +0 0.2041 +0 0.1750 +0 0.0784 +0 0.0537 +0 0.1077 +0 0.0489 +0 0.1197 +0 0.1825 +0 0.0593 +0 0.0968 +0 0.2197 +0 0.0402 +0 0.0904 +0 0.0876 +0 0.0841 +0 0.4061 +0 0.0631 +0 0.1105 +0 0.0371 +0 0.0559 +0 0.0373 +1 0.7777 +0 0.1280 +0 0.1460 +0 0.3034 +0 0.0867 +0 0.1991 +0 0.2503 +0 0.0822 +0 0.0787 +0 0.0713 +0 0.0683 +0 0.0767 +0 0.1156 +0 0.2728 +0 0.2572 +0 0.0560 +0 0.0877 +0 0.1068 +0 0.1697 +0 0.1038 +0 0.2043 +0 0.2518 +1 0.7905 +0 0.3599 +0 0.0906 +0 0.1130 +0 0.0821 +0 0.0409 +0 0.0502 +0 0.1736 +0 0.1213 +0 0.0858 +0 0.0688 +0 0.0491 +0 0.2937 +0 0.1367 +0 0.0731 +0 0.1737 +0 0.3229 +0 0.3146 +0 0.1558 +0 0.0908 +0 0.1739 +0 0.0500 +0 0.0916 +0 0.0949 +0 0.4919 +0 0.3144 +0 0.1227 +0 0.0916 +0 0.1257 +0 0.1182 +0 0.0908 +0 0.0863 +0 0.0669 +0 0.2585 +0 0.1415 +0 0.3877 +0 0.2711 +0 0.4726 +0 0.0440 +0 0.0420 +0 0.1637 +0 0.0636 +0 0.0462 +0 0.1146 +0 0.0868 +0 0.2236 +0 0.0409 +0 0.3778 +0 0.1821 +0 0.0907 +0 0.2885 +0 0.1223 +0 0.1117 +0 0.1564 +0 0.1229 +0 0.0494 +0 0.0758 +0 0.0607 +0 0.1031 +0 0.1873 +0 0.0504 +0 0.1895 +0 0.0668 +0 0.0545 +0 0.4545 +0 0.0775 +0 0.0993 +0 0.0644 +0 0.2152 +0 0.2637 +0 0.1282 +0 0.2868 +0 0.1169 +0 0.1667 +0 0.0644 +0 0.1364 +0 0.2582 +0 0.1132 +0 0.0945 +0 0.0788 +0 0.3421 +0 0.0753 +0 0.0628 +0 0.1206 +0 0.1346 +0 0.3238 +0 0.2305 +0 0.1019 +0 0.0863 +0 0.2953 +0 0.1353 +0 0.1247 +0 0.2679 +0 0.2737 +0 0.0963 +0 0.2039 +0 0.1288 +0 0.0645 +0 0.1511 +0 0.1227 +0 0.0697 +0 0.0541 +0 0.0779 +0 0.1048 +0 0.0921 +0 0.1556 +0 0.0573 +0 0.0876 +0 0.2326 +0 0.0451 +0 0.1518 +0 0.1124 +0 0.2583 +0 0.1212 +0 0.1064 +0 0.1862 +0 0.0375 +0 0.1409 +0 0.1588 +0 0.0735 +0 0.0433 +0 0.3751 +0 0.2432 +0 0.1372 +0 0.0853 +0 0.0523 +0 0.1593 +0 0.0923 +0 0.2717 +0 0.2544 +0 0.1123 +0 0.4620 +0 0.0631 +0 0.0499 +0 0.2591 +0 0.4102 +0 0.1954 +0 0.2435 +0 0.1351 +0 0.0743 +0 0.1138 +0 0.1066 +0 0.0440 +0 0.1423 +0 0.0645 +0 0.3215 +0 0.1058 +0 0.0876 +0 0.1529 +0 0.0609 +0 0.0954 +0 0.0873 +0 0.0823 +0 0.1444 +0 0.0774 +0 0.1208 +0 0.0921 +0 0.1799 +0 0.0782 +0 0.2028 +0 0.0651 +0 0.0863 +0 0.0746 +0 0.0669 +0 0.1765 +0 0.0771 +0 0.0776 +0 0.0724 +0 0.0814 +0 0.1238 +0 0.1364 +0 0.0906 +0 0.1509 +0 0.0996 +0 0.2356 +0 0.1004 +0 0.5726 +0 0.3259 +0 0.0607 +0 0.2940 +0 0.1997 +0 0.2247 +0 0.1454 +1 0.7985 +0 0.0918 +0 0.1157 +0 0.0543 +0 0.1144 +0 0.2472 +0 0.0747 +0 0.1553 +0 0.1071 +0 0.1240 +0 0.0814 +0 0.1487 +0 0.1212 +0 0.1190 +0 0.0701 +0 0.2341 +0 0.0664 +0 0.0467 +0 0.1197 +0 0.0631 +0 0.2449 +0 0.0517 +0 0.1145 +0 0.4505 +0 0.0964 +0 0.1580 +0 0.1051 +0 0.0398 +0 0.2172 +0 0.1941 +0 0.0419 +0 0.0814 +0 0.1057 +0 0.0705 +0 0.1498 +0 0.1359 +0 0.1387 +0 0.1413 +0 0.1225 +0 0.0831 +0 0.0421 +0 0.0367 +0 0.2231 +0 0.0829 +0 0.0364 +0 0.1038 +0 0.0608 +0 0.0517 +0 0.1121 +0 0.1537 +0 0.1676 +0 0.1212 +0 0.0776 +0 0.1413 +0 0.0833 +0 0.2049 +0 0.0561 +0 0.1398 +0 0.0883 +0 0.1425 +0 0.0637 +0 0.0987 +0 0.1148 +0 0.1104 +0 0.2558 +0 0.1061 +0 0.0625 +0 0.0939 +0 0.1069 +0 0.1973 +0 0.1339 +0 0.0710 +0 0.0957 +0 0.1189 +0 0.0626 +0 0.1928 +0 0.1720 +0 0.1645 +0 0.1788 +0 0.0780 +0 0.0838 +0 0.0964 +0 0.0626 +0 0.2349 +0 0.1817 +0 0.0447 +0 0.1705 +0 0.4728 +0 0.2248 +0 0.2702 +0 0.7354 +0 0.0703 +0 0.0826 +0 0.0680 +0 0.0701 +0 0.3868 +0 0.0547 +0 0.0767 +0 0.0536 +0 0.2654 +0 0.1737 +0 0.1376 +0 0.0467 +0 0.1401 +0 0.2523 +0 0.1272 +0 0.3501 +0 0.1001 +0 0.1049 +0 0.0709 +0 0.1122 +0 0.0419 +0 0.1382 +0 0.1391 +0 0.1981 +0 0.0923 +0 0.1128 +0 0.0441 +0 0.0905 +0 0.2101 +0 0.1461 +0 0.0559 +0 0.1020 +0 0.1423 +0 0.1361 +0 0.1344 +0 0.0734 +0 0.3106 +0 0.0565 +0 0.1399 +0 0.1435 +0 0.0680 +0 0.0898 +0 0.1424 +0 0.2483 +0 0.0374 +0 0.0992 +0 0.1176 +0 0.2860 +0 0.1234 +0 0.4791 +0 0.1196 +0 0.0385 +0 0.1152 +0 0.1187 +0 0.1386 +0 0.5932 +0 0.3270 +0 0.0490 +0 0.1888 +0 0.0971 +0 0.0889 +0 0.1759 +0 0.2307 +0 0.2428 +1 0.8289 +0 0.2468 +0 0.1157 +0 0.0777 +0 0.1320 +0 0.1463 +0 0.0480 +0 0.1800 +0 0.0501 +0 0.1524 +0 0.0700 +0 0.2038 +0 0.0845 +0 0.0616 +0 0.0565 +0 0.0699 +0 0.0598 +0 0.2221 +0 0.2462 +0 0.0718 +0 0.0653 +0 0.2993 +0 0.0483 +0 0.0360 +0 0.1983 +0 0.6550 +0 0.1316 +0 0.0708 +0 0.1549 +0 0.0992 +0 0.2440 +0 0.4673 +0 0.0505 +0 0.1750 +0 0.1537 +0 0.0831 +0 0.1704 +0 0.1646 +0 0.0552 +0 0.2445 +0 0.1323 +0 0.0585 +0 0.0486 +0 0.1122 +0 0.1013 +0 0.0583 +0 0.0543 +0 0.1019 +0 0.0481 +0 0.0845 +1 0.8241 +0 0.3205 +0 0.0629 +0 0.0716 +0 0.5027 +0 0.1709 +0 0.1038 +0 0.1073 +0 0.6958 +0 0.4825 +0 0.2403 +0 0.5685 +0 0.0645 +0 0.1004 +0 0.0745 +0 0.1929 +0 0.1236 +0 0.0488 +0 0.3040 +0 0.0905 +0 0.4465 +0 0.0597 +0 0.1188 +0 0.0974 +0 0.2221 +0 0.1081 +0 0.0673 +0 0.1942 +0 0.1066 +0 0.0762 +0 0.3493 +0 0.0517 +0 0.2307 +0 0.0721 +0 0.0989 +0 0.0753 +0 0.2684 +0 0.0664 +0 0.1657 +0 0.0472 +0 0.2038 +0 0.0916 +0 0.0884 +0 0.2316 +0 0.1110 +0 0.1078 +0 0.0854 +0 0.1227 +0 0.1050 +0 0.2187 +0 0.1182 +0 0.2161 +0 0.1134 +0 0.0302 +0 0.1076 +0 0.0363 +0 0.6110 +0 0.1326 +0 0.7493 +0 0.0678 +0 0.0810 +0 0.1138 +0 0.1986 +0 0.0743 +0 0.1528 +0 0.1394 +0 0.1476 +0 0.1454 +0 0.0878 +0 0.2161 +0 0.3812 +0 0.0696 +0 0.1075 +0 0.0574 +0 0.2215 +0 0.0774 +0 0.0917 +0 0.1563 +0 0.0369 +0 0.1046 +0 0.0755 +0 0.1978 +0 0.1518 +0 0.0585 +0 0.0822 +0 0.1478 +0 0.1950 +0 0.1586 +0 0.2936 +0 0.1336 +0 0.0605 +0 0.0447 +0 0.1158 +0 0.0702 +0 0.2622 +0 0.1748 +0 0.1067 +0 0.2559 +0 0.2224 +0 0.3876 +0 0.2073 +0 0.0716 +0 0.1597 +0 0.1435 +0 0.0946 +0 0.1861 +0 0.1065 +0 0.4414 +0 0.2266 +0 0.3608 +0 0.1200 +0 0.7421 +0 0.0696 +0 0.0559 +0 0.0969 +0 0.0694 +0 0.7464 +0 0.0995 +0 0.2626 +0 0.1624 +0 0.1314 +0 0.0805 +0 0.1054 +0 0.0997 +0 0.0568 +0 0.2064 +0 0.1030 +0 0.1068 +0 0.1663 +0 0.2081 +0 0.1924 +0 0.1333 +0 0.0873 +0 0.0684 +0 0.1167 +0 0.0838 +0 0.3275 +0 0.1187 +0 0.0383 +0 0.0632 +0 0.2370 +0 0.0783 +0 0.6480 +0 0.0639 +0 0.1952 +0 0.0648 +0 0.0681 +0 0.0359 +0 0.1295 +0 0.1487 +0 0.0810 +0 0.0653 +0 0.1657 +0 0.1096 +0 0.1097 +0 0.2133 +0 0.0867 +0 0.0570 +0 0.1003 +0 0.1955 +0 0.1164 +0 0.1134 +0 0.0708 +0 0.1340 +0 0.1871 +0 0.1330 +0 0.0636 +0 0.1125 +0 0.0711 +0 0.1500 +0 0.0807 +0 0.1939 +0 0.1068 +0 0.2501 +0 0.0830 +0 0.0928 +0 0.0772 +0 0.1005 +0 0.2629 +1 0.8709 +0 0.2729 +0 0.5643 +0 0.0677 +0 0.0873 +0 0.0858 +0 0.2382 +0 0.1858 +0 0.1244 +0 0.1013 +0 0.0800 +0 0.2677 +0 0.1191 +0 0.0520 +0 0.0523 +0 0.1427 +0 0.1801 +0 0.2171 +0 0.1495 +1 0.7887 +0 0.1475 +0 0.6208 +0 0.0776 +0 0.0496 +0 0.0633 +0 0.1460 +0 0.0956 +0 0.0670 +0 0.0779 +0 0.0841 +0 0.0596 +0 0.0498 +0 0.1272 +1 0.8683 +0 0.0622 +0 0.3281 +0 0.1862 +0 0.1873 +0 0.2168 +0 0.1251 +0 0.0953 +0 0.1224 +0 0.1856 +0 0.1068 +0 0.1449 +0 0.2324 +0 0.6479 +0 0.2075 +0 0.0566 +0 0.7212 +0 0.7071 +0 0.1394 +0 0.1425 +0 0.1072 +0 0.0445 +0 0.3583 +0 0.0778 +0 0.5193 +0 0.0393 +0 0.3728 +0 0.1234 +0 0.0525 +0 0.1248 +0 0.0908 +0 0.1965 +0 0.1735 +0 0.2951 +0 0.0679 +0 0.0524 +0 0.1281 +0 0.1071 +0 0.0861 +0 0.0369 +0 0.2457 +0 0.2802 +0 0.1140 +0 0.0994 +0 0.1027 +0 0.1425 +0 0.0394 +0 0.0371 +0 0.2147 +0 0.0864 +0 0.2807 +0 0.2626 +0 0.1104 +0 0.1446 +0 0.0485 +0 0.1072 +0 0.0993 +0 0.1063 +0 0.0620 +0 0.0961 +0 0.2223 +0 0.0717 +0 0.0440 +0 0.0446 +0 0.2648 +0 0.0515 +0 0.1336 +0 0.1527 +0 0.2153 +0 0.2760 +0 0.0852 +0 0.0553 +0 0.1230 +0 0.7087 +0 0.0700 +0 0.0779 +0 0.0387 +0 0.2257 +0 0.0534 +0 0.0686 +0 0.0861 +0 0.1237 +0 0.6663 +0 0.1286 +0 0.1678 +0 0.0524 +0 0.4265 +0 0.1612 +0 0.1097 +0 0.1824 +0 0.1434 +0 0.2423 +0 0.1928 +0 0.2320 +0 0.1084 +0 0.1340 +0 0.1040 +0 0.1683 +0 0.2682 +0 0.0589 +0 0.0483 +0 0.1498 +0 0.1034 +0 0.0933 +0 0.1164 +0 0.2273 +0 0.1456 +0 0.2619 +0 0.1123 +0 0.2476 +0 0.0981 +0 0.1009 +0 0.0503 +0 0.0862 +0 0.1665 +0 0.0825 +0 0.0396 +0 0.2248 +0 0.0724 +0 0.0769 +0 0.0719 +0 0.1334 +0 0.1254 +0 0.0874 +0 0.0845 +0 0.1442 +0 0.0696 +0 0.7497 +0 0.0913 +0 0.0762 +0 0.2115 +0 0.1282 +0 0.2628 +0 0.2366 +0 0.0501 +0 0.1958 +0 0.1985 +0 0.1491 +0 0.1014 +0 0.1017 +0 0.1419 +0 0.0702 +0 0.1697 +0 0.0680 +0 0.0987 +0 0.0419 +0 0.1329 +0 0.0339 +1 0.8155 +0 0.2550 +0 0.0508 +0 0.0974 +0 0.0699 +0 0.1529 +0 0.2139 +0 0.0744 +1 0.8021 +0 0.0781 +0 0.1416 +0 0.1718 +0 0.0660 +0 0.6417 +0 0.1347 +0 0.2407 +0 0.1391 +0 0.0894 +0 0.1728 +0 0.0846 +0 0.2214 +0 0.0811 +0 0.1368 +0 0.2586 +0 0.0860 +0 0.1018 +0 0.1267 +0 0.0880 +0 0.2475 +0 0.1423 +0 0.0379 +0 0.0375 +0 0.0716 +1 0.8392 +0 0.1464 +0 0.1431 +0 0.1398 +0 0.1730 +0 0.1104 +0 0.2067 +0 0.0724 +0 0.0645 +0 0.1150 +0 0.0823 +0 0.2198 +0 0.2012 +0 0.2188 +0 0.1351 +0 0.1074 +0 0.1310 +0 0.1198 +0 0.2684 +0 0.0565 +0 0.1828 +0 0.1259 +0 0.0890 +0 0.2441 +0 0.0663 +0 0.1039 +0 0.0482 +0 0.0927 +0 0.1337 +0 0.0707 +0 0.0977 +0 0.0645 +0 0.0462 +0 0.1083 +0 0.0584 +0 0.2223 +0 0.1023 +0 0.1746 +0 0.1036 +0 0.1624 +0 0.0598 +0 0.0393 +0 0.0484 +0 0.5619 +0 0.0783 +0 0.0937 +0 0.1519 +0 0.1775 +0 0.7285 +0 0.4472 +0 0.0592 +0 0.0664 +0 0.1035 +0 0.1390 +0 0.2499 +0 0.1727 +0 0.3663 +0 0.0731 +0 0.0423 +0 0.2175 +0 0.0583 +0 0.2654 +0 0.0486 +0 0.1607 +0 0.1803 +1 0.8486 +0 0.0387 +0 0.2891 +0 0.0804 +0 0.2458 +0 0.0734 +0 0.0733 +0 0.4801 +0 0.0663 +0 0.0448 +0 0.1137 +0 0.0513 +0 0.4192 +0 0.0376 +0 0.0845 +0 0.0980 +0 0.1101 +0 0.1346 +0 0.2538 +0 0.0600 +0 0.0861 +0 0.0839 +0 0.1605 +0 0.0878 +0 0.1140 +0 0.1058 +0 0.2344 +0 0.1253 +0 0.1426 +0 0.1444 +0 0.0365 +0 0.0822 +0 0.0610 +0 0.1231 +0 0.0544 +0 0.1007 +0 0.1198 +0 0.1118 +0 0.0674 +0 0.0906 +0 0.1739 +0 0.0763 +0 0.0443 +0 0.0823 +0 0.0922 +0 0.0673 +0 0.1399 +0 0.3028 +0 0.2279 +0 0.0862 +0 0.0796 +1 0.7992 +0 0.0594 +0 0.1225 +0 0.0721 +0 0.0850 +0 0.0972 +0 0.0561 +0 0.0845 +0 0.1053 +0 0.1140 +0 0.1162 +0 0.0790 +0 0.1255 +0 0.2972 +0 0.0838 +0 0.0560 +0 0.0768 +0 0.1831 +0 0.0551 +0 0.0826 +0 0.0993 +0 0.0611 +0 0.0360 +0 0.0831 +0 0.0407 +0 0.1340 +0 0.0845 +0 0.1161 +1 0.6712 +0 0.1774 +0 0.0565 +0 0.0907 +0 0.0991 +0 0.0704 +0 0.1311 +0 0.1078 +0 0.0598 +0 0.0967 +0 0.0741 +0 0.0859 +0 0.2014 +0 0.2623 +0 0.0579 +0 0.2613 +0 0.1333 +0 0.2202 +0 0.1752 +0 0.1556 +0 0.0989 +0 0.1809 +0 0.1326 +0 0.0770 +0 0.0668 +0 0.0692 +0 0.0770 +0 0.2207 +0 0.0578 +0 0.0955 +0 0.0350 +0 0.1099 +0 0.1683 +0 0.0783 +0 0.0751 +0 0.1324 +0 0.0501 +0 0.0863 +0 0.0475 +0 0.0555 +0 0.0725 +0 0.1847 +0 0.1831 +0 0.1671 +0 0.1538 +0 0.2455 +0 0.3059 +0 0.1071 +0 0.1014 +0 0.1384 +0 0.0739 +0 0.6340 +0 0.0465 +0 0.1710 +0 0.0583 +0 0.4250 +0 0.0650 +0 0.1129 +0 0.0730 +0 0.1656 +0 0.0732 +0 0.1608 +0 0.0903 +0 0.0777 +0 0.0485 +0 0.1907 +0 0.1963 +0 0.0854 +0 0.1090 +0 0.1557 +0 0.1570 +0 0.2713 +0 0.1319 +0 0.0452 +0 0.0788 +0 0.0701 +0 0.1410 +0 0.1337 +0 0.0325 +0 0.1873 +0 0.3316 +0 0.0768 +0 0.1098 +0 0.1624 +0 0.0908 +0 0.0617 +0 0.0530 +0 0.0665 +0 0.1177 +0 0.0757 +0 0.1159 +0 0.0586 +0 0.0559 +0 0.2172 +0 0.1731 +0 0.0846 +0 0.2680 +0 0.6428 +0 0.0572 +0 0.1067 +0 0.0789 +0 0.1490 +0 0.1158 +0 0.2578 +0 0.1086 +0 0.1507 +0 0.0968 +0 0.0633 +0 0.3661 +0 0.1733 +0 0.1403 +0 0.0505 +0 0.1623 +0 0.0868 +0 0.2005 +0 0.5062 +0 0.1379 +0 0.0330 +0 0.2381 +0 0.0521 +0 0.1516 +0 0.1459 +0 0.0585 +0 0.1123 +0 0.0634 +0 0.3065 +0 0.1447 +0 0.1744 +0 0.1310 +0 0.0372 +0 0.1329 +0 0.0691 +0 0.1291 +0 0.1355 +0 0.7404 +0 0.1159 +0 0.1432 +0 0.1770 +0 0.0493 +0 0.1059 +0 0.1065 +0 0.1456 +0 0.1757 +0 0.0941 +0 0.1465 +0 0.2421 +0 0.3707 +0 0.0653 +0 0.0886 +0 0.5898 +0 0.0776 +1 0.7542 +0 0.0755 +0 0.0868 +0 0.2945 +0 0.0691 +0 0.1042 +0 0.0696 +0 0.0972 +0 0.2687 +0 0.1211 +0 0.0994 +0 0.2054 +0 0.3010 +0 0.0758 +0 0.1485 +0 0.1088 +0 0.0454 +0 0.2727 +0 0.0657 +0 0.0552 +0 0.2272 +0 0.1061 +0 0.0742 +0 0.1078 +0 0.1367 +0 0.0818 +0 0.3134 +0 0.0507 +0 0.0819 +0 0.0748 +0 0.2238 +0 0.0605 +0 0.0681 +0 0.0517 +0 0.1343 +0 0.0697 +0 0.0941 +0 0.0574 +1 0.7856 +0 0.0775 +0 0.3558 +0 0.0442 +0 0.0781 +0 0.1066 +0 0.0967 +0 0.0716 +0 0.6433 +0 0.1106 +0 0.0518 +0 0.1065 +0 0.1836 +0 0.0717 +0 0.0784 +0 0.0969 +0 0.0655 +0 0.0400 +0 0.0555 +0 0.0923 +0 0.0510 +0 0.0660 +0 0.0822 +0 0.0671 +0 0.5233 +0 0.0936 +0 0.1708 +0 0.1314 +0 0.1418 +0 0.1361 +0 0.1984 +0 0.0699 +0 0.1012 +1 0.7747 +1 0.8468 +0 0.1112 +0 0.0930 +0 0.0503 +0 0.1520 +0 0.1590 +0 0.1231 +1 0.8405 +0 0.0966 +0 0.0557 +0 0.0883 +0 0.2217 +0 0.3855 +0 0.0690 +0 0.1218 +0 0.1849 +0 0.6169 +0 0.4702 +0 0.0778 +0 0.2781 +0 0.1170 +0 0.0949 +0 0.1006 +0 0.1145 +0 0.0722 +0 0.0343 +0 0.0649 +0 0.0611 +0 0.2010 +0 0.2305 +0 0.0891 +0 0.0936 +0 0.4561 +0 0.1061 +0 0.0688 +0 0.6070 +0 0.0780 +0 0.0556 +0 0.4354 +0 0.2236 +0 0.2719 +0 0.1281 +0 0.1408 +0 0.0931 +0 0.4443 +0 0.1416 +0 0.0736 +0 0.1004 +0 0.1194 +0 0.1794 +0 0.0707 +0 0.2605 +0 0.0638 +0 0.2132 +0 0.0786 +0 0.2969 +0 0.3467 +0 0.1102 +0 0.1673 +0 0.0645 +0 0.1240 +0 0.3102 +0 0.5674 +0 0.0836 +0 0.1299 +0 0.1320 +0 0.1246 +0 0.1197 +0 0.1701 +0 0.0595 +0 0.1142 +0 0.3277 +0 0.0459 +0 0.1494 +0 0.1600 +0 0.1233 +0 0.1149 +0 0.1144 +0 0.1261 +0 0.1388 +0 0.2124 +0 0.1089 +0 0.0786 +0 0.1763 +0 0.0501 +0 0.1421 +0 0.0789 +0 0.0780 +0 0.0552 +0 0.0676 +0 0.0734 +0 0.0643 +0 0.0966 +0 0.1578 +0 0.6299 +0 0.1036 +0 0.0667 +0 0.1295 +0 0.1336 +0 0.1193 +0 0.0445 +0 0.0675 +0 0.0725 +0 0.0826 +0 0.1110 +0 0.0965 +0 0.1047 +0 0.0981 +0 0.1167 +0 0.0686 +0 0.0477 +0 0.0574 +0 0.1277 +0 0.0423 +0 0.1251 +0 0.1199 +0 0.1068 +0 0.1404 +0 0.3032 +0 0.0449 +0 0.2230 +0 0.0564 +0 0.0908 +0 0.0578 +0 0.1287 +0 0.0691 +0 0.3700 +0 0.0951 +0 0.1594 +0 0.0632 +0 0.2575 +0 0.4831 +0 0.1113 +0 0.0454 +0 0.1142 +0 0.0563 +0 0.1843 +0 0.0858 +0 0.3426 +0 0.3852 +0 0.0935 +0 0.0875 +0 0.0312 +0 0.0862 +0 0.0363 +0 0.1674 +0 0.1124 +0 0.0608 +0 0.0749 +0 0.0434 +0 0.1937 +0 0.0667 +0 0.2301 +0 0.0561 +0 0.1652 +0 0.1290 +0 0.0533 +0 0.0798 +0 0.0864 +0 0.1426 +0 0.0644 +0 0.1077 +0 0.1325 +0 0.1529 +0 0.0617 +0 0.0803 +0 0.1676 +0 0.3023 +0 0.0582 +0 0.0777 +0 0.0603 +0 0.0625 +0 0.1410 +0 0.1219 +0 0.0917 +0 0.4122 +0 0.1364 +0 0.0555 +0 0.1044 +0 0.2125 +0 0.1000 +0 0.0683 +0 0.1231 +0 0.1555 +0 0.2048 +0 0.1527 +0 0.0875 +0 0.0730 +0 0.1844 +0 0.0808 +0 0.0836 +0 0.1271 +0 0.0598 +0 0.3791 +0 0.0515 +0 0.0743 +0 0.0603 +0 0.0841 +0 0.2382 +0 0.0962 +0 0.1048 +0 0.0987 +0 0.2631 +0 0.0614 +0 0.1552 +0 0.1280 +0 0.1196 +0 0.1956 +0 0.0660 +0 0.1459 +0 0.1303 +0 0.1031 +0 0.1531 +0 0.0384 +0 0.1366 +0 0.0800 +0 0.0395 +0 0.1123 +0 0.1650 +0 0.0743 +0 0.2013 +0 0.0370 +0 0.0614 +0 0.0742 +0 0.0429 +0 0.1782 +0 0.2016 +0 0.0469 +0 0.0391 +0 0.0677 +0 0.0701 +0 0.0445 +0 0.0845 +0 0.1186 +0 0.1309 +0 0.0615 +0 0.0624 +0 0.1100 +0 0.0707 +0 0.1087 +0 0.1210 +0 0.3111 +0 0.1789 +0 0.0693 +0 0.7047 +0 0.0592 +0 0.1511 +0 0.3871 +0 0.0723 +0 0.2915 +0 0.2454 +0 0.1809 +0 0.1166 +0 0.2612 +0 0.0983 +0 0.2565 +0 0.2842 +0 0.0970 +0 0.1220 +0 0.2037 +0 0.3675 +0 0.1064 +0 0.0571 +0 0.1020 +0 0.0395 +0 0.0419 +0 0.1213 +0 0.2972 +0 0.2442 +0 0.0561 +0 0.0733 +0 0.2258 +0 0.2938 +0 0.2024 +0 0.0738 +0 0.1279 +0 0.1646 +0 0.1712 +0 0.1114 +0 0.1750 +0 0.1195 +0 0.3879 +0 0.2595 +0 0.1107 +0 0.0845 +0 0.0593 +0 0.1474 +0 0.0761 +0 0.2056 +1 0.8211 +0 0.1994 +0 0.1050 +0 0.2293 +0 0.1113 +0 0.1536 +0 0.1055 +0 0.1089 +0 0.0837 +0 0.1046 +0 0.1518 +0 0.1872 +0 0.0990 +0 0.6264 +0 0.1633 +1 0.7841 +0 0.0471 +0 0.0893 +0 0.0694 +0 0.1228 +0 0.0564 +0 0.0629 +0 0.1028 +0 0.0626 +0 0.0505 +0 0.0726 +0 0.1303 +0 0.0739 +0 0.0684 +0 0.1708 +0 0.0876 +0 0.0757 +0 0.0584 +0 0.1044 +0 0.2172 +0 0.0723 +0 0.1082 +0 0.1285 +0 0.0900 +0 0.1128 +0 0.0688 +0 0.0552 +0 0.0714 +0 0.0533 +0 0.0722 +0 0.0972 +0 0.0508 +0 0.0600 +0 0.1854 +0 0.0578 +0 0.1431 +0 0.1019 +0 0.1891 +0 0.0989 +0 0.0783 +0 0.0766 +0 0.0515 +0 0.0751 +0 0.0749 +0 0.1324 +0 0.1573 +0 0.0461 +0 0.6767 +0 0.1524 +0 0.0980 +0 0.0765 +0 0.0599 +0 0.0538 +0 0.1272 +0 0.0712 +0 0.0408 +0 0.1126 +0 0.0614 +0 0.0640 +0 0.0912 +0 0.3547 +0 0.1191 +0 0.0522 +0 0.1272 +0 0.0658 +0 0.7028 +0 0.1028 +0 0.1165 +0 0.1321 +0 0.0813 +0 0.0507 +0 0.0489 +0 0.1205 +0 0.3808 +0 0.2039 +0 0.1448 +0 0.5184 +0 0.3339 +0 0.1758 +0 0.0918 +0 0.3804 +0 0.2727 +0 0.0884 +0 0.3175 +0 0.1237 +0 0.0777 +0 0.0747 +0 0.2186 +0 0.1915 +0 0.0866 +0 0.0342 +0 0.0857 +0 0.0700 +0 0.1377 +0 0.1054 +0 0.1160 +0 0.0663 +0 0.0568 +0 0.1627 +0 0.0514 +0 0.0532 +0 0.1179 +0 0.0619 +0 0.2283 +0 0.1195 +0 0.2319 +0 0.4765 +0 0.1125 +0 0.1812 +0 0.1003 +0 0.0508 +0 0.0931 +0 0.1667 +0 0.0569 +0 0.0931 +0 0.0744 +0 0.1438 +0 0.0705 +0 0.1078 +0 0.0770 +0 0.1084 +0 0.0903 +0 0.1654 +0 0.0657 +0 0.0621 +0 0.1272 +0 0.1065 +0 0.0536 +0 0.1495 +0 0.0813 +0 0.1563 +0 0.1361 +1 0.7535 +0 0.0661 +0 0.1837 +0 0.0784 +0 0.0848 +0 0.0467 +0 0.3933 +0 0.1610 +0 0.0676 +0 0.5860 +0 0.3128 +0 0.1006 +0 0.0544 +0 0.1563 +0 0.0980 +0 0.0574 +0 0.1109 +0 0.2184 +0 0.0524 +0 0.2474 +0 0.0480 +0 0.1691 +0 0.0998 +0 0.1113 +0 0.0357 +0 0.0581 +0 0.1978 +0 0.1122 +0 0.0864 +0 0.6582 +0 0.2519 +0 0.1633 +0 0.1999 +0 0.1060 +0 0.0792 +0 0.2891 +0 0.1703 +0 0.3153 +0 0.1466 +0 0.1005 +0 0.1968 +0 0.1166 +0 0.2321 +0 0.0602 +0 0.1647 +0 0.0473 +0 0.1227 +0 0.2920 +0 0.2188 +0 0.0761 +0 0.1611 +0 0.0736 +0 0.0917 +0 0.4234 +0 0.1138 +0 0.0403 +0 0.6740 +0 0.2276 +0 0.2073 +0 0.1413 +0 0.1324 +0 0.5432 +0 0.0548 +0 0.0673 +0 0.0431 +0 0.1325 +0 0.2294 +0 0.3025 +0 0.1072 +0 0.2703 +0 0.0744 +0 0.5339 +0 0.0340 +0 0.1610 +0 0.0710 +1 0.7799 +0 0.1398 +0 0.0764 +0 0.3294 +0 0.0737 +0 0.0823 +0 0.0867 +0 0.1282 +0 0.0713 +0 0.0707 +0 0.0668 +0 0.1055 +0 0.0884 +0 0.1446 +0 0.0540 +0 0.2431 +0 0.0465 +0 0.1583 +0 0.0532 +0 0.0716 +0 0.1842 +0 0.0728 +0 0.0469 +0 0.0691 +0 0.0930 +0 0.0825 +0 0.3991 +0 0.1322 +0 0.1442 +0 0.0971 +0 0.0581 +0 0.2126 +0 0.2161 +0 0.0893 +0 0.0579 +0 0.0644 +0 0.2367 +0 0.1914 +0 0.1968 +0 0.0773 +0 0.0511 +0 0.0861 +0 0.2057 +0 0.1259 +0 0.1163 +0 0.1500 +0 0.0528 +0 0.1191 +0 0.0704 +0 0.2037 +0 0.0446 +0 0.2213 +0 0.1386 +0 0.2458 +0 0.0993 +0 0.1040 +0 0.0996 +0 0.1028 +0 0.0565 +0 0.1138 +0 0.6804 +0 0.0884 +0 0.0530 +0 0.0672 +0 0.0758 +0 0.0636 +0 0.0631 +0 0.0735 +0 0.3851 +0 0.0785 +0 0.1655 +0 0.1511 +0 0.0580 +0 0.2692 +0 0.0885 +0 0.0709 +0 0.0453 +0 0.1472 +0 0.1130 +0 0.1315 +0 0.1203 +0 0.0525 +0 0.3146 +0 0.0632 +0 0.1203 +0 0.1543 +0 0.1696 +0 0.1460 +0 0.0353 +0 0.0414 +0 0.0563 +0 0.0876 +0 0.0459 +0 0.6011 +0 0.1189 +0 0.0989 +0 0.1270 +0 0.3335 +0 0.1097 +0 0.0930 +0 0.0932 +0 0.1603 +0 0.0952 +0 0.1329 +0 0.2058 +0 0.1537 +0 0.1114 +0 0.5795 +0 0.1847 +0 0.4027 +0 0.0821 +0 0.0722 +0 0.0957 +0 0.0663 +0 0.0381 +0 0.1147 +0 0.0580 +0 0.0825 +0 0.0885 +0 0.0552 +0 0.1644 +0 0.1761 +0 0.0809 +0 0.1200 +0 0.1194 +0 0.1290 +0 0.1241 +0 0.0402 +0 0.0766 +0 0.0614 +0 0.1375 +0 0.1773 +0 0.1998 +0 0.0592 +0 0.0773 +0 0.1468 +0 0.0372 +0 0.1109 +0 0.0332 +0 0.0918 +0 0.2246 +0 0.0741 +0 0.1384 +0 0.0476 +0 0.0570 +0 0.0961 +0 0.1811 +0 0.1793 +0 0.4313 +0 0.0806 +0 0.1042 +0 0.1051 +0 0.0849 +0 0.0874 +0 0.1345 +0 0.2602 +0 0.1307 +0 0.0442 +0 0.1858 +0 0.1567 +0 0.0723 +0 0.2170 +0 0.0440 +0 0.1221 +0 0.0576 +0 0.0793 +0 0.0798 +0 0.0916 +0 0.1531 +0 0.2483 +0 0.0861 +0 0.2235 +0 0.2619 +0 0.0845 +0 0.1022 +0 0.2258 +0 0.2275 +0 0.0974 +0 0.1596 +0 0.0991 +0 0.0576 +0 0.1952 +0 0.0602 +0 0.1673 +0 0.1600 +0 0.1520 +0 0.0942 +0 0.1062 +0 0.1408 +0 0.0659 +0 0.1065 +0 0.6282 +0 0.0567 +0 0.1110 +0 0.1193 +0 0.0579 +0 0.3887 +0 0.0623 +0 0.0615 +0 0.1093 +0 0.2456 +0 0.1481 +0 0.0500 +0 0.2658 +0 0.0885 +1 0.7870 +0 0.0907 +0 0.2205 +0 0.2635 +0 0.2187 +0 0.0479 +0 0.3634 +0 0.1206 +0 0.1678 +0 0.0852 +0 0.0697 +0 0.2041 +0 0.3211 +0 0.0675 +0 0.2372 +0 0.4563 +0 0.1367 +0 0.1764 +0 0.0407 +0 0.2089 +0 0.0951 +0 0.1927 +0 0.1082 +0 0.1162 +0 0.1209 +0 0.6035 +0 0.3283 +0 0.0987 +0 0.0726 +0 0.1861 +0 0.1776 +0 0.0511 +0 0.1817 +0 0.1402 +0 0.3352 +0 0.1856 +0 0.0968 +0 0.0950 +0 0.0777 +0 0.0711 +0 0.0906 +0 0.0614 +0 0.0685 +0 0.1594 +0 0.1021 +0 0.0983 +0 0.0607 +0 0.1254 +0 0.0510 +0 0.5209 +0 0.0936 +0 0.1470 +0 0.1064 +0 0.1718 +0 0.0517 +0 0.1088 +0 0.1122 +0 0.0483 +0 0.1283 +0 0.0458 +0 0.1176 +0 0.0345 +0 0.3239 +0 0.2527 +0 0.0650 +0 0.1100 +0 0.2110 +0 0.3250 +0 0.0672 +0 0.2075 +0 0.0938 +0 0.0395 +0 0.0481 +0 0.0765 +0 0.0401 +0 0.0437 +0 0.0761 +0 0.1319 +0 0.2419 +0 0.0716 +0 0.1001 +0 0.0361 +0 0.2625 +1 0.7876 +0 0.0491 +0 0.5176 +0 0.1038 +0 0.0754 +0 0.1186 +0 0.1857 +0 0.0652 +0 0.1710 +0 0.1571 +0 0.0842 +0 0.0893 +0 0.1494 +0 0.0592 +0 0.1111 +0 0.0978 +0 0.1374 +0 0.1326 +0 0.1340 +0 0.0727 +0 0.1939 +0 0.0980 +0 0.0375 +0 0.1622 +0 0.1364 +0 0.0767 +0 0.0906 +0 0.0763 +0 0.2539 +0 0.1482 +0 0.1025 +0 0.4452 +0 0.0664 +0 0.0692 +0 0.0828 +0 0.0899 +0 0.0642 +0 0.2412 +0 0.0396 +0 0.1056 +0 0.0727 +0 0.1166 +0 0.0624 +0 0.0570 +0 0.1221 +0 0.7026 +0 0.0997 +0 0.0763 +0 0.1039 +0 0.0465 +0 0.3285 +0 0.2133 +0 0.5482 +0 0.1252 +0 0.3345 +0 0.0540 +0 0.0771 +0 0.1084 +0 0.1448 +1 0.7875 +0 0.0793 +0 0.0677 +0 0.0374 +0 0.0586 +0 0.1274 +0 0.1269 +0 0.7462 +0 0.2221 +0 0.1518 +0 0.7037 +0 0.0973 +0 0.0945 +0 0.0714 +0 0.0402 +0 0.2280 +0 0.0758 +0 0.0533 +0 0.3635 +0 0.1331 +0 0.1343 +0 0.0937 +0 0.0952 +0 0.2777 +0 0.0848 +0 0.0937 +0 0.0923 +0 0.1404 +0 0.0971 +0 0.1101 +0 0.2042 +0 0.0931 +0 0.1792 +0 0.0420 +0 0.3636 +0 0.0715 +0 0.1601 +0 0.0576 +0 0.7277 +0 0.0418 +0 0.2352 +0 0.0530 +0 0.3322 +0 0.1337 +0 0.0834 +0 0.3521 +0 0.6562 +0 0.5546 +0 0.0929 +0 0.2099 +1 0.8659 +0 0.1166 +0 0.2263 +0 0.1517 +0 0.0966 +0 0.1711 +0 0.1208 +0 0.1185 +0 0.1507 +0 0.0584 +0 0.1806 +0 0.2084 +0 0.0505 +0 0.0375 +0 0.0437 +0 0.1156 +0 0.1283 +0 0.2699 +0 0.2342 +0 0.1172 +0 0.1093 +0 0.2059 +0 0.0806 +0 0.0588 +0 0.0753 +0 0.1055 +1 0.7520 +0 0.1178 +0 0.0683 +0 0.1545 +0 0.0575 +0 0.1826 +0 0.0716 +0 0.1804 +0 0.0441 +0 0.1171 +0 0.1561 +0 0.0592 +0 0.0674 +0 0.0967 +0 0.0423 +0 0.0890 +0 0.2742 +0 0.0817 +0 0.3830 +1 0.8000 +0 0.0792 +0 0.0718 +0 0.1600 +0 0.0869 +0 0.0568 +0 0.1928 +0 0.2718 +0 0.1591 +0 0.0841 +0 0.0789 +0 0.0792 +0 0.0780 +0 0.0975 +0 0.0918 +0 0.0461 +0 0.1037 +0 0.1237 +0 0.3135 +0 0.0778 +0 0.0741 +0 0.1666 +0 0.1422 +0 0.5311 +0 0.1032 +0 0.1244 +0 0.1355 +0 0.5073 +0 0.0712 +0 0.0725 +0 0.0955 +0 0.1411 +0 0.1880 +0 0.0769 +0 0.0735 +0 0.5320 +0 0.4135 +0 0.0953 +0 0.6604 +0 0.1062 +0 0.0886 +0 0.4914 +1 0.7968 +0 0.1271 +0 0.2402 +0 0.0655 +0 0.1247 +0 0.0855 +0 0.0601 +0 0.0583 +0 0.1114 +0 0.3389 +0 0.1030 +0 0.1289 +0 0.0318 +0 0.1276 +0 0.1504 +0 0.1635 +0 0.1035 +0 0.1624 +0 0.0883 +0 0.0975 +0 0.0459 +0 0.0413 +0 0.0561 +0 0.1620 +0 0.1377 +0 0.1798 +0 0.0893 +0 0.0884 +0 0.0480 +0 0.0673 +0 0.3673 +0 0.1991 +0 0.1616 +0 0.0968 +0 0.1278 +0 0.3296 +0 0.1161 +0 0.1828 +0 0.0417 +0 0.1203 +0 0.1593 +0 0.0434 +0 0.1632 +0 0.4451 +0 0.1933 +0 0.0928 +0 0.0564 +0 0.1466 +0 0.1142 +0 0.1134 +0 0.2989 +0 0.1493 +0 0.0822 +0 0.0696 +0 0.1973 +0 0.0624 +0 0.0710 +0 0.2253 +0 0.0451 +0 0.1030 +0 0.0788 +0 0.1010 +0 0.1548 +0 0.0693 +0 0.1363 +0 0.1275 +0 0.0734 +0 0.0960 +0 0.1116 +0 0.1603 +0 0.0763 +0 0.0949 +0 0.1030 +0 0.0378 +0 0.0392 +0 0.0850 +0 0.0741 +0 0.0727 +0 0.4327 +0 0.0679 +0 0.0932 +0 0.1486 +0 0.0709 +0 0.0463 +0 0.0998 +0 0.0618 +0 0.0909 +0 0.1227 +0 0.3987 +0 0.1049 +0 0.0520 +0 0.1336 +0 0.3414 +0 0.1579 +0 0.1779 +0 0.1889 +0 0.3052 +0 0.1001 +0 0.0814 +0 0.1371 +0 0.0567 +0 0.1268 +0 0.0659 +0 0.0808 +0 0.1001 +0 0.0554 +0 0.0546 +0 0.0886 +0 0.0468 +0 0.0573 +0 0.0803 +0 0.0953 +0 0.0756 +0 0.1912 +0 0.1267 +0 0.1497 +0 0.1713 +0 0.0927 +0 0.1599 +0 0.1271 +0 0.3558 +0 0.1577 +0 0.1001 +0 0.4832 +0 0.1641 +0 0.1070 +0 0.1381 +0 0.0721 +0 0.2672 +0 0.0917 +0 0.6799 +0 0.0955 +0 0.0815 +0 0.1097 +0 0.1216 +0 0.0657 +0 0.0440 +0 0.0595 +0 0.1392 +0 0.1977 +0 0.1211 +0 0.3578 +0 0.0572 +0 0.0927 +0 0.1783 +0 0.1071 +0 0.0472 +0 0.0857 +0 0.2004 +0 0.4184 +0 0.2848 +0 0.2974 +0 0.3871 +0 0.5210 +0 0.1388 +0 0.0946 +0 0.0453 +0 0.0950 +0 0.0487 +0 0.0342 +0 0.1864 +0 0.1720 +0 0.1022 +0 0.0954 +0 0.0738 +0 0.1261 +0 0.0626 +0 0.0716 +0 0.1466 +0 0.1357 +0 0.1308 +0 0.2150 +0 0.1090 +0 0.0568 +0 0.2902 +0 0.3025 +0 0.0718 +0 0.2305 +0 0.2049 +0 0.0830 +0 0.0712 +0 0.4414 +0 0.1081 +0 0.1251 +0 0.0673 +0 0.1017 +0 0.7305 +0 0.1195 +0 0.1388 +0 0.1317 +0 0.2661 +0 0.3667 +0 0.6021 +0 0.1283 +0 0.2454 +0 0.1002 +0 0.0715 +0 0.0587 +0 0.0994 +0 0.7428 +0 0.1326 +0 0.0683 +0 0.1070 +0 0.2586 +0 0.1744 +0 0.0427 +0 0.0649 +0 0.0652 +0 0.1448 +0 0.1029 +0 0.0644 +0 0.1021 +0 0.0555 +0 0.0773 +0 0.2194 +0 0.2572 +0 0.0643 +0 0.3152 +0 0.2434 +0 0.1785 +0 0.0943 +0 0.0750 +0 0.1205 +0 0.0581 +0 0.0788 +0 0.0862 +0 0.0784 +0 0.1181 +0 0.0938 +0 0.1867 +0 0.0521 +0 0.1420 +0 0.0487 +0 0.1889 +0 0.0872 +0 0.1054 +0 0.1529 +0 0.1584 +0 0.1890 +0 0.1003 +0 0.1859 +0 0.1694 +0 0.0505 +0 0.1636 +0 0.0470 +0 0.0427 +0 0.3145 +0 0.0387 +0 0.0976 +0 0.1180 +0 0.2117 +0 0.2938 +0 0.0671 +0 0.0977 +0 0.0657 +0 0.0544 +0 0.0360 +0 0.6394 +0 0.0351 +0 0.1274 +0 0.1611 +0 0.0986 +0 0.0326 +0 0.3590 +0 0.0412 +0 0.0714 +0 0.0869 +0 0.1370 +0 0.0985 +0 0.0742 +0 0.0795 +0 0.1639 +0 0.1151 +0 0.2534 +0 0.1204 +0 0.0610 +0 0.4749 +0 0.0659 +0 0.7439 +0 0.0740 +1 0.8582 +0 0.0903 +0 0.0530 +0 0.0891 +0 0.2786 +0 0.1061 +0 0.0405 +0 0.1175 +0 0.0828 +0 0.0936 +0 0.6209 +0 0.1550 +0 0.1927 +0 0.0820 +0 0.0684 +0 0.0356 +0 0.1697 +0 0.1096 +0 0.1021 +0 0.1427 +0 0.0758 +0 0.1365 +0 0.1682 +0 0.1604 +0 0.0501 +0 0.0691 +0 0.1293 +0 0.0750 +0 0.7491 +0 0.0771 +0 0.0907 +0 0.1887 +0 0.1434 +0 0.0650 +0 0.0585 +0 0.2296 +0 0.1092 +0 0.1313 +0 0.2831 +0 0.2754 +0 0.1385 +0 0.1082 +0 0.7097 +0 0.0865 +0 0.0565 +0 0.0688 +0 0.0859 +0 0.2302 +0 0.1110 +0 0.0688 +0 0.1223 +0 0.1780 +0 0.0417 +0 0.4008 +0 0.0672 +0 0.0477 +0 0.1804 +0 0.0299 +0 0.1523 +0 0.0937 +0 0.1323 +0 0.0746 +0 0.1799 +0 0.0979 +1 0.8514 +0 0.1132 +0 0.0989 +0 0.0402 +0 0.1174 +0 0.1058 +0 0.1743 +0 0.3044 +0 0.0948 +0 0.1217 +0 0.1234 +0 0.1762 +0 0.3796 +0 0.0761 +0 0.1385 +0 0.3422 +0 0.0936 +0 0.0428 +0 0.1001 +0 0.0667 +0 0.0741 +0 0.1663 +0 0.0728 +0 0.5250 +0 0.0874 +0 0.1670 +1 0.8038 +0 0.1148 +0 0.1904 +0 0.1984 +0 0.1741 +0 0.6739 +0 0.1015 +0 0.0520 +0 0.2743 +0 0.1549 +0 0.0904 +0 0.0670 +0 0.0771 +0 0.1131 +0 0.1758 +0 0.0483 +0 0.0429 +0 0.1104 +0 0.2151 +0 0.0877 +0 0.0941 +0 0.0985 +0 0.1263 +0 0.5268 +0 0.1673 +0 0.0997 +0 0.0888 +0 0.0507 +0 0.0530 +0 0.6191 +0 0.0980 +0 0.0481 +0 0.0736 +0 0.2822 +0 0.0478 +0 0.1219 +0 0.2236 +0 0.1134 +0 0.0616 +0 0.0582 +0 0.1142 +1 0.8684 +0 0.0944 +0 0.0723 +0 0.1211 +0 0.1522 +0 0.1909 +0 0.1543 +0 0.0593 +0 0.0694 +0 0.2574 +0 0.0572 +0 0.1068 +0 0.1950 +0 0.1215 +0 0.0630 +0 0.1979 +0 0.1115 +0 0.0796 +0 0.1183 +0 0.1308 +0 0.0952 +0 0.1130 +0 0.3481 +0 0.4958 +0 0.1635 +0 0.2489 +0 0.0729 +0 0.0996 +0 0.1014 +0 0.2390 +0 0.0709 +0 0.0803 +0 0.1107 +0 0.1527 +0 0.1181 +0 0.2005 +0 0.1264 +0 0.0779 +0 0.0964 +0 0.6444 +0 0.1951 +0 0.1166 +0 0.0923 +0 0.0635 +0 0.0505 +0 0.0629 +0 0.0724 +0 0.0574 +0 0.1069 +0 0.0626 +0 0.1499 +0 0.0739 +0 0.0463 +0 0.1650 +0 0.0845 +0 0.3101 +0 0.0454 +0 0.1422 +0 0.1178 +0 0.0703 +0 0.0719 +0 0.0759 +0 0.0731 +0 0.4229 +1 0.7863 +0 0.1005 +0 0.2358 +0 0.2331 +0 0.1687 +0 0.0628 +0 0.1324 +0 0.1473 +0 0.1306 +0 0.2952 +0 0.1197 +0 0.0948 +0 0.3893 +0 0.1542 +0 0.0944 +0 0.0981 +0 0.1758 +0 0.1243 +0 0.1429 +0 0.1355 +0 0.0685 +0 0.0943 +0 0.1053 +0 0.2152 +0 0.0926 +0 0.0492 +0 0.0952 +0 0.2423 +0 0.0491 +0 0.0706 +0 0.0869 +0 0.2346 +0 0.0733 +0 0.0989 +0 0.0819 +0 0.6506 +0 0.1086 +0 0.1040 +0 0.0991 +0 0.2179 +0 0.1224 +0 0.0893 +0 0.0761 +0 0.1125 +0 0.0809 +0 0.2131 +0 0.2066 +0 0.0776 +0 0.1122 +0 0.1994 +0 0.1242 +0 0.1319 +0 0.0671 +0 0.2757 +0 0.0961 +0 0.1129 +0 0.0397 +0 0.1727 +0 0.1306 +0 0.0354 +0 0.0971 +0 0.3182 +0 0.2907 +0 0.0687 +0 0.2742 +0 0.0562 +0 0.1584 +0 0.1009 +0 0.1421 +0 0.2045 +0 0.2042 +0 0.0418 +0 0.6769 +0 0.1110 +0 0.0457 +0 0.1043 +0 0.1014 +0 0.0634 +1 0.7783 +0 0.1304 +0 0.0562 +0 0.0983 +0 0.1903 +0 0.0745 +0 0.0795 +0 0.3672 +0 0.0888 +0 0.0846 +0 0.0889 +0 0.1083 +0 0.1356 +0 0.0614 +0 0.1084 +0 0.1263 +0 0.0816 +0 0.0979 +0 0.2161 +0 0.1094 +0 0.0526 +0 0.2419 +0 0.1176 +0 0.0540 +0 0.0726 +0 0.3074 +0 0.0803 +0 0.0676 +0 0.0890 +0 0.1716 +0 0.1452 +0 0.0769 +0 0.0893 +0 0.2533 +0 0.0843 +0 0.0600 +0 0.1015 +0 0.1292 +0 0.0683 +0 0.4697 +0 0.0523 +0 0.0837 +0 0.3351 +0 0.1789 +0 0.5519 +0 0.0666 +0 0.0696 +0 0.0682 +0 0.0923 +0 0.2028 +0 0.1022 +0 0.0524 +0 0.0913 +0 0.1050 +0 0.1326 +0 0.1558 +0 0.1092 +0 0.0490 +0 0.0728 +0 0.0944 +0 0.0955 +1 0.8586 +0 0.0595 +0 0.1626 +0 0.2697 +0 0.0671 +0 0.0644 +0 0.2621 +0 0.0940 +0 0.1063 +0 0.1314 +0 0.0999 +0 0.0576 +0 0.0795 +0 0.1290 +0 0.0736 +0 0.1321 +0 0.0818 +0 0.1058 +0 0.1214 +0 0.0891 +0 0.1246 +0 0.1191 +0 0.0499 +0 0.3234 +0 0.1947 +0 0.0748 +0 0.1220 +0 0.0826 +0 0.6305 +0 0.1189 +0 0.3392 +0 0.0557 +0 0.0955 +0 0.0993 +0 0.0662 +0 0.0560 +0 0.1623 +0 0.0964 +0 0.0911 +0 0.0992 +0 0.0557 +0 0.1249 +0 0.3159 +0 0.1068 +1 0.8363 +0 0.2731 +0 0.0939 +0 0.1454 +0 0.1379 +0 0.2735 +0 0.0568 +0 0.1008 +0 0.1332 +0 0.0510 +0 0.0975 +0 0.0305 +0 0.0794 +0 0.0832 +0 0.1366 +0 0.4091 +0 0.3778 +0 0.2927 +0 0.0668 +0 0.1251 +0 0.0711 +0 0.2457 +0 0.4855 +0 0.0724 +0 0.1587 +0 0.1098 +0 0.1121 +0 0.1171 +0 0.0775 +0 0.0894 +0 0.2484 +0 0.7183 +0 0.0663 +0 0.5000 +0 0.1289 +0 0.0639 +0 0.1722 +0 0.1555 +0 0.1999 +0 0.1292 +0 0.1061 +0 0.1717 +0 0.1257 +0 0.0929 +0 0.0789 +0 0.0545 +0 0.0447 +0 0.1013 +0 0.0301 +0 0.0632 +1 0.7841 +0 0.0983 +0 0.1103 +0 0.4441 +0 0.2912 +0 0.0661 +0 0.1104 +0 0.1764 +0 0.1242 +0 0.0438 +0 0.1573 +0 0.2945 +0 0.0609 +0 0.3857 +0 0.1343 +0 0.3711 +0 0.0381 +0 0.1214 +0 0.0841 +0 0.5752 +0 0.1463 +0 0.1227 +0 0.0819 +0 0.1456 +0 0.1629 +0 0.0795 +0 0.0676 +0 0.1565 +0 0.5997 +0 0.1006 +0 0.0534 +0 0.0520 +0 0.1248 +0 0.0697 +0 0.4527 +0 0.1602 +0 0.0920 +0 0.0815 +0 0.0898 +0 0.0500 +0 0.2183 +0 0.1101 +0 0.0737 +0 0.1164 +0 0.0722 +0 0.0723 +0 0.1706 +0 0.1472 +0 0.0966 +0 0.2465 +0 0.0489 +0 0.1328 +0 0.0556 +0 0.1824 +0 0.0842 +1 0.8434 +0 0.1139 +0 0.1723 +0 0.0936 +0 0.0641 +0 0.5946 +0 0.0750 +0 0.0980 +0 0.1338 +0 0.1638 +0 0.2187 +0 0.1212 +0 0.0901 +1 0.7817 +0 0.1011 +0 0.1567 +0 0.0845 +0 0.1262 +0 0.0580 +0 0.1246 +0 0.1716 +0 0.0323 +0 0.0468 +0 0.0543 +0 0.1102 +0 0.2278 +0 0.1933 +0 0.1171 +0 0.0679 +0 0.0759 +0 0.2547 +0 0.2471 +0 0.1439 +0 0.0820 +0 0.0884 +0 0.2270 +0 0.0663 +0 0.0806 +0 0.1280 +0 0.1055 +0 0.0504 +0 0.0887 +0 0.0962 +0 0.2526 +0 0.3856 +0 0.2163 +0 0.0417 +0 0.1810 +0 0.1944 +0 0.1532 +0 0.0623 +0 0.4240 +0 0.1322 +0 0.1851 +0 0.1231 +0 0.0797 +0 0.0750 +0 0.1371 +0 0.1088 +1 0.8170 +0 0.0939 +0 0.1410 +0 0.5502 +0 0.0997 +0 0.1574 +0 0.0418 +0 0.0955 +0 0.0854 +0 0.1758 +0 0.1964 +0 0.0991 +0 0.0779 +0 0.3987 +0 0.0665 +0 0.3441 +0 0.2348 +0 0.0813 +0 0.1865 +0 0.7274 +0 0.1283 +0 0.1015 +0 0.1016 +0 0.0608 +0 0.0335 +0 0.1847 +0 0.1468 +0 0.1526 +0 0.0805 +0 0.1098 +0 0.2115 +0 0.0696 +0 0.1015 +0 0.0762 +0 0.3645 +0 0.0784 +0 0.1145 +0 0.1006 +0 0.0539 +0 0.2591 +0 0.3144 +0 0.1363 +0 0.1177 +0 0.1325 +0 0.0775 +0 0.1171 +0 0.0980 +0 0.1939 +0 0.1674 +0 0.0538 +0 0.0659 +0 0.1921 +0 0.0643 +0 0.0866 +0 0.1655 +0 0.1253 +0 0.0720 +0 0.0693 +0 0.0855 +0 0.1116 +0 0.0814 +0 0.1159 +0 0.2040 +0 0.1177 +0 0.1782 +0 0.1167 +0 0.2782 +0 0.1462 +0 0.1752 +0 0.1858 +0 0.0891 +0 0.6709 +0 0.3906 +0 0.1962 +0 0.5567 +0 0.1832 +0 0.1091 +0 0.0631 +0 0.1358 +0 0.1917 +0 0.2692 +0 0.0744 +0 0.0975 +0 0.2465 +0 0.1051 +0 0.1175 +0 0.0339 +0 0.1096 +0 0.1501 +0 0.0455 +0 0.0664 +1 0.8123 +0 0.7363 +0 0.1452 +0 0.0977 +0 0.1449 +0 0.0905 +0 0.2546 +0 0.0430 +0 0.1655 +0 0.0486 +0 0.3748 +0 0.0884 +0 0.1002 +0 0.2675 +0 0.0728 +0 0.0461 +0 0.1995 +0 0.0340 +0 0.0790 +0 0.1161 +0 0.0616 +0 0.4494 +0 0.0994 +0 0.0418 +0 0.0897 +0 0.2042 +0 0.0586 +0 0.0729 +0 0.0861 +0 0.0539 +0 0.1135 +0 0.2513 +1 0.8660 +0 0.0347 +0 0.1342 +0 0.0742 +0 0.1390 +0 0.2964 +0 0.1402 +0 0.1662 +0 0.1813 +0 0.0770 +0 0.5768 +0 0.0640 +0 0.1382 +1 0.8102 +0 0.1928 +0 0.0658 +0 0.1292 +0 0.0927 +0 0.0479 +0 0.0571 +0 0.0726 +0 0.0816 +0 0.1146 +0 0.2465 +0 0.2903 +0 0.0525 +0 0.1502 +0 0.2163 +0 0.1412 +0 0.1062 +0 0.0521 +0 0.1463 +0 0.1454 +0 0.0780 +0 0.0692 +1 0.7842 +0 0.1983 +0 0.1251 +0 0.1681 +0 0.0656 +0 0.1843 +0 0.1402 +0 0.1432 +0 0.0960 +0 0.0668 +0 0.1046 +0 0.0784 +0 0.2273 +0 0.0840 +0 0.0759 +0 0.0843 +0 0.0945 +0 0.1590 +0 0.0521 +0 0.1271 +0 0.0529 +0 0.0548 +0 0.1489 +0 0.1104 +0 0.0999 +0 0.7111 +0 0.1434 +0 0.1047 +0 0.0759 +0 0.0980 +0 0.0928 +0 0.1706 +0 0.1168 +0 0.1563 +0 0.0800 +0 0.6290 +0 0.0698 +0 0.0533 +0 0.0675 +0 0.1379 +0 0.0760 +0 0.0862 +0 0.0756 +0 0.0538 +0 0.0562 +0 0.1660 +0 0.0816 +0 0.0773 +0 0.0531 +0 0.0835 +0 0.1186 +0 0.0469 +0 0.1495 +0 0.0740 +0 0.0999 +0 0.0735 +0 0.0749 +0 0.0892 +0 0.0616 +0 0.1029 +0 0.0841 +0 0.0611 +0 0.1494 +0 0.1897 +0 0.0379 +0 0.1270 +0 0.0672 +0 0.0760 +0 0.0631 +0 0.1812 +0 0.0849 +0 0.2479 +0 0.1624 +0 0.2849 +0 0.0807 +0 0.0482 +0 0.2212 +0 0.0532 +0 0.1328 +0 0.1023 +0 0.1385 +0 0.0890 +0 0.1058 +0 0.0836 +1 0.8032 +0 0.1002 +0 0.0803 +0 0.1072 +0 0.1925 +0 0.1696 +0 0.1178 +0 0.5316 +0 0.1423 +0 0.1771 +0 0.1792 +0 0.0509 +0 0.0568 +0 0.1036 +0 0.0925 +0 0.0809 +0 0.0974 +0 0.1729 +0 0.1450 +0 0.1475 +0 0.1481 +0 0.1616 +0 0.0465 +0 0.0826 +0 0.1442 +0 0.0643 +0 0.1455 +0 0.0950 +0 0.3292 +0 0.0914 +0 0.4088 +0 0.2062 +0 0.1209 +0 0.0899 +0 0.3408 +0 0.2228 +0 0.0968 +0 0.1727 +0 0.3416 +0 0.0746 +0 0.0998 +0 0.1817 +0 0.0687 +0 0.3109 +1 0.8526 +0 0.1015 +0 0.1055 +0 0.1173 +0 0.4104 +0 0.0393 +0 0.1137 +0 0.0911 +0 0.0429 +0 0.0433 +0 0.1406 +0 0.0558 +0 0.2290 +0 0.1065 +0 0.0870 +0 0.0833 +0 0.1333 +0 0.1436 +0 0.2185 +0 0.0874 +0 0.0822 +0 0.0342 +0 0.1831 +0 0.1778 +0 0.1019 +0 0.0681 +0 0.0549 +0 0.1598 +0 0.0838 +0 0.1147 +0 0.5483 +0 0.0776 +0 0.2541 +0 0.1725 +0 0.0899 +0 0.0702 +0 0.1338 +0 0.0700 +0 0.1636 +0 0.1240 +0 0.0337 +0 0.0980 +0 0.0934 +0 0.1169 +0 0.0633 +0 0.0862 +0 0.3196 +0 0.0742 +0 0.1053 +0 0.0728 +0 0.0500 +0 0.0790 +0 0.1198 +0 0.0543 +0 0.0787 +0 0.0724 +0 0.0694 +0 0.1492 +0 0.0775 +0 0.0519 +0 0.1202 +0 0.1507 +0 0.0897 +0 0.1186 +0 0.1269 +0 0.0739 +0 0.1354 +0 0.0519 +0 0.0723 +0 0.4738 +0 0.2342 +0 0.1077 +0 0.0322 +0 0.0684 +0 0.1590 +0 0.0839 +0 0.0390 +0 0.0510 +0 0.0860 +0 0.0678 +0 0.4751 +0 0.1163 +0 0.4840 +0 0.0768 +0 0.0594 +0 0.1874 +0 0.0762 +0 0.0857 +0 0.0546 +0 0.1361 +0 0.0688 +0 0.0814 +0 0.2350 +0 0.2024 +0 0.0474 +0 0.2194 +0 0.0671 +0 0.1530 +0 0.1057 +0 0.0820 +0 0.1844 +0 0.0754 +0 0.1256 +0 0.1960 +0 0.1095 +0 0.1143 +0 0.0921 +0 0.0563 +0 0.1071 +0 0.1236 +0 0.0750 +0 0.1377 +0 0.1317 +0 0.3637 +0 0.5844 +0 0.2600 +0 0.1219 +0 0.2116 +0 0.1591 +0 0.0913 +0 0.2934 +0 0.1185 +0 0.7290 +0 0.2306 +0 0.1620 +0 0.0816 +0 0.0901 +0 0.2320 +0 0.0640 +0 0.0421 +0 0.0754 +0 0.0390 +0 0.0415 +0 0.0708 +0 0.1530 +0 0.2192 +0 0.0283 +0 0.1603 +0 0.0667 +0 0.1432 +0 0.0783 +0 0.1098 +0 0.2966 +0 0.0372 +0 0.0521 +0 0.4388 +0 0.4206 +0 0.1072 +0 0.0532 +0 0.0548 +0 0.0887 +0 0.0799 +0 0.1929 +0 0.0930 +0 0.1166 +0 0.0612 +1 0.7985 +0 0.1068 +0 0.1656 +0 0.1786 +0 0.6618 +0 0.1087 +0 0.1052 +0 0.3867 +0 0.0577 +0 0.5125 +0 0.1439 +0 0.0876 +0 0.2320 +0 0.3061 +0 0.1166 +0 0.1088 +0 0.1382 +0 0.0931 +0 0.1022 +0 0.1233 +0 0.0831 +0 0.0779 +0 0.0442 +0 0.1209 +0 0.1244 +0 0.2123 +0 0.0729 +0 0.0447 +0 0.0362 +0 0.1028 +0 0.1967 +0 0.0639 +0 0.1720 +0 0.0708 +0 0.0911 +0 0.0841 +0 0.0909 +0 0.3607 +0 0.0442 +0 0.1348 +0 0.2014 +0 0.0821 +0 0.1464 +0 0.2533 +0 0.0964 +0 0.2219 +0 0.0892 +1 0.8528 +0 0.1925 +0 0.0779 +0 0.1170 +0 0.1543 +0 0.1193 +0 0.0886 +0 0.0646 +0 0.1108 +0 0.2822 +0 0.0806 +0 0.0658 +1 0.7879 +0 0.1474 +0 0.0911 +0 0.2902 +0 0.1092 +0 0.0463 +0 0.1224 +0 0.3511 +0 0.0928 +1 0.7900 +0 0.0898 +0 0.1754 +0 0.0997 +0 0.0948 +0 0.0474 +0 0.0399 +0 0.0932 +0 0.0600 +0 0.0923 +0 0.2060 +0 0.1694 +0 0.0677 +0 0.0486 +0 0.2172 +0 0.0491 +0 0.1394 +0 0.0896 +0 0.1002 +0 0.1831 +0 0.0547 +0 0.0750 +0 0.0765 +0 0.1414 +0 0.1861 +0 0.0650 +0 0.2275 +0 0.3481 +0 0.0610 +0 0.0707 +0 0.0853 +0 0.6529 +0 0.0612 +0 0.0569 +0 0.0722 +0 0.0411 +0 0.0598 +0 0.0712 +0 0.1724 +0 0.0695 +0 0.0480 +0 0.1299 +1 0.7928 +0 0.0466 +0 0.4551 +0 0.0395 +0 0.0844 +0 0.0446 +0 0.1155 +0 0.0653 +0 0.1229 +0 0.0807 +0 0.0943 +0 0.2247 +0 0.2802 +0 0.0709 +0 0.0878 +0 0.1280 +0 0.0575 +0 0.1833 +0 0.0505 +0 0.0964 +0 0.2327 +0 0.6591 +0 0.1270 +0 0.1852 +0 0.1310 +0 0.0900 +0 0.1793 +0 0.0789 +0 0.1551 +0 0.0863 +0 0.2092 +0 0.0764 +0 0.1769 +0 0.0692 +0 0.1908 +0 0.1520 +0 0.0870 +0 0.3049 +0 0.0538 +0 0.0511 +0 0.2362 +0 0.1212 +0 0.1743 +0 0.3570 +1 0.8038 +0 0.2304 +0 0.1169 +0 0.1176 +0 0.3478 +0 0.1860 +0 0.1528 +1 0.7904 +0 0.0765 +0 0.2893 +0 0.2084 +0 0.2547 +0 0.1419 +0 0.2039 +0 0.2034 +0 0.2138 +0 0.1405 +0 0.0440 +0 0.0427 +0 0.3285 +0 0.0958 +0 0.0534 +0 0.2004 +0 0.1588 +0 0.0391 +0 0.2312 +0 0.0623 +0 0.1187 +0 0.0511 +0 0.0866 +0 0.0531 +0 0.0352 +0 0.1122 +0 0.0932 +0 0.0790 +0 0.1535 +0 0.1376 +0 0.1291 +0 0.3243 +0 0.3818 +0 0.0794 +0 0.0693 +0 0.2231 +0 0.0919 +0 0.1104 +0 0.1031 +0 0.1015 +0 0.0875 +0 0.0837 +0 0.0689 +0 0.1517 +0 0.2143 +0 0.1147 +0 0.1477 +0 0.0546 +0 0.0586 +0 0.0582 +0 0.0596 +0 0.3351 +0 0.1063 +0 0.1001 +0 0.5288 +0 0.0668 +0 0.0987 +0 0.0682 +0 0.1138 +0 0.2123 +0 0.1204 +0 0.1535 +0 0.0873 +0 0.1583 +0 0.0722 +0 0.1202 +0 0.0686 +0 0.0928 +0 0.2533 +0 0.0859 +0 0.0854 +0 0.0882 +0 0.1018 +0 0.1083 +0 0.1609 +0 0.0748 +0 0.1635 +0 0.0881 +0 0.0416 +0 0.1049 +0 0.0808 +0 0.0747 +0 0.1140 +0 0.2661 +0 0.3195 +1 0.8373 +0 0.1255 +0 0.6793 +0 0.1939 +1 0.8655 +0 0.1357 +0 0.0747 +0 0.1832 +0 0.1196 +0 0.6413 +0 0.2823 +0 0.1313 +0 0.2017 +0 0.0915 +0 0.0484 +0 0.5800 +0 0.1396 +0 0.1017 +0 0.4344 +0 0.0909 +0 0.1022 +0 0.0482 +0 0.1484 +0 0.1266 +0 0.1128 +0 0.1891 +0 0.1402 +0 0.1760 +0 0.1398 +0 0.1160 +0 0.0614 +0 0.0672 +0 0.1733 +1 0.7556 +0 0.1320 +0 0.1212 +0 0.1250 +0 0.1738 +0 0.0809 +0 0.0839 +0 0.0827 +0 0.1876 +0 0.0797 +0 0.2008 +0 0.0596 +0 0.0648 +0 0.2009 +0 0.3165 +0 0.0578 +0 0.1164 +0 0.0709 +0 0.0788 +0 0.0848 +0 0.1700 +0 0.1030 +1 0.7912 +0 0.0901 +0 0.1184 +0 0.0605 +0 0.0916 +0 0.1082 +0 0.1361 +0 0.0521 +0 0.0618 +0 0.1479 +0 0.1399 +0 0.0505 +0 0.0613 +0 0.1783 +0 0.0920 +0 0.0995 +0 0.4645 +0 0.0768 +0 0.0722 +0 0.0785 +0 0.1620 +0 0.1602 +0 0.0460 +0 0.1122 +0 0.0748 +0 0.2101 +0 0.1924 +1 0.8196 +0 0.0576 +0 0.1028 +0 0.0745 +0 0.0730 +0 0.0871 +0 0.2847 +0 0.2074 +0 0.0548 +0 0.0626 +0 0.1982 +0 0.4265 +0 0.5412 +0 0.0540 +0 0.0896 +0 0.0476 +0 0.1615 +0 0.0925 +0 0.1304 +0 0.0811 +0 0.0417 +0 0.1829 +0 0.1047 +0 0.2190 +0 0.2462 +0 0.0469 +0 0.0739 +0 0.2881 +0 0.1071 +0 0.0615 +0 0.4777 +0 0.0665 +0 0.1332 +0 0.1262 +0 0.1841 +0 0.0644 +0 0.0966 +0 0.0369 +0 0.2441 +0 0.2029 +0 0.0942 +0 0.2662 +0 0.1310 +0 0.7198 +0 0.1382 +0 0.0469 +0 0.1844 +0 0.1705 +0 0.0475 +0 0.0882 +0 0.0524 +0 0.0712 +0 0.0656 +0 0.1671 +0 0.1251 +0 0.0681 +0 0.2186 +0 0.0479 +0 0.0516 +0 0.1508 +0 0.0652 +0 0.1246 +0 0.0919 +0 0.0397 +0 0.0472 +0 0.1258 +0 0.0419 +0 0.0358 +0 0.1204 +0 0.0653 +0 0.0970 +0 0.1211 +0 0.0708 +0 0.0469 +0 0.4450 +0 0.1146 +0 0.1247 +0 0.0945 +0 0.0691 +0 0.0890 +0 0.2211 +0 0.0657 +0 0.1200 +0 0.1048 +0 0.2198 +0 0.0421 +0 0.0427 +0 0.0551 +0 0.1775 +0 0.1091 +0 0.6626 +0 0.0891 +0 0.0697 +0 0.1860 +0 0.0715 +0 0.1957 +0 0.0997 +0 0.1200 +0 0.0574 +0 0.1378 +0 0.0454 +0 0.1362 +0 0.2900 +0 0.0736 +0 0.1569 +0 0.0524 +0 0.3324 +0 0.1500 +0 0.0542 +0 0.1297 +0 0.0834 +0 0.2593 +0 0.1142 +0 0.2395 +0 0.0738 +0 0.0984 +0 0.2534 +0 0.0956 +0 0.2586 +0 0.1713 +0 0.0531 +0 0.1045 +0 0.2584 +0 0.0974 +0 0.0562 +0 0.0791 +0 0.0920 +0 0.0461 +0 0.0520 +0 0.0802 +0 0.0760 +0 0.0677 +0 0.0817 +0 0.1018 +0 0.1508 +0 0.1015 +0 0.1106 +0 0.1494 +0 0.2156 +0 0.5517 +0 0.0807 +0 0.1086 +0 0.1122 +0 0.0539 +0 0.1413 +0 0.0734 +1 0.8161 +0 0.0600 +0 0.1112 +0 0.0771 +0 0.1476 +0 0.1059 +0 0.0886 +0 0.0771 +0 0.1444 +0 0.5085 +0 0.0986 +0 0.0728 +0 0.4613 +0 0.0698 +0 0.1210 +0 0.1409 +0 0.1370 +0 0.0977 +0 0.1126 +0 0.1283 +0 0.1388 +0 0.0697 +0 0.0833 +0 0.3181 +0 0.1055 +0 0.2878 +0 0.0994 +0 0.1108 +0 0.0797 +0 0.1483 +0 0.4697 +0 0.1312 +0 0.0488 +0 0.0619 +0 0.1529 +0 0.2836 +0 0.0845 +0 0.0706 +0 0.1049 +0 0.2519 +0 0.1505 +0 0.1204 +0 0.2522 +0 0.0955 +0 0.1329 +0 0.0939 +0 0.0967 +0 0.0359 +0 0.1990 +0 0.2373 +0 0.2039 +0 0.1487 +0 0.0793 +0 0.0937 +0 0.1289 +0 0.0705 +0 0.1599 +0 0.7371 +0 0.0430 +0 0.2093 +0 0.0877 +0 0.1007 +0 0.0551 +0 0.1144 +0 0.0681 +0 0.1608 +0 0.2697 +0 0.1175 +0 0.5668 +0 0.1030 +0 0.1045 +0 0.0489 +0 0.1488 +0 0.0761 +0 0.1021 +0 0.1003 +0 0.4862 +0 0.1676 +0 0.0354 +0 0.0439 +0 0.0474 +0 0.0759 +0 0.0900 +0 0.0542 +0 0.0552 +0 0.1221 +0 0.1270 +0 0.0512 +0 0.1634 +0 0.0758 +0 0.1118 +0 0.0896 +0 0.0420 +0 0.1265 +0 0.1583 +0 0.1316 +0 0.1058 +0 0.4701 +0 0.0738 +0 0.0753 +0 0.0842 +0 0.1058 +0 0.1443 +0 0.2125 +0 0.0817 +0 0.3579 +0 0.0343 +0 0.0610 +0 0.1573 +0 0.1813 +0 0.1085 +0 0.1211 +0 0.1839 +0 0.0731 +0 0.1898 +0 0.1303 +0 0.1471 +0 0.0695 +0 0.1483 +0 0.1077 +0 0.0861 +0 0.7388 +0 0.0681 +0 0.0682 +0 0.1846 +1 0.8795 +0 0.1751 +0 0.1172 +0 0.0470 +0 0.0732 +0 0.0368 +0 0.0968 +0 0.3375 +1 0.2653 +0 0.1071 +0 0.1405 +0 0.1032 +0 0.1148 +0 0.1304 +0 0.0649 +0 0.1869 +0 0.0692 +0 0.2056 +0 0.2055 +0 0.0462 +0 0.1090 +0 0.1673 +0 0.1465 +0 0.3052 +0 0.1188 +0 0.0801 +0 0.1857 +0 0.1295 +0 0.0830 +0 0.1557 +0 0.1083 +0 0.0305 +0 0.0388 +0 0.1322 +0 0.0805 +0 0.1451 +0 0.0538 +0 0.1254 +0 0.1598 +0 0.1298 +0 0.0409 +0 0.1556 +0 0.1052 +0 0.1164 +0 0.2183 +0 0.0908 +0 0.3801 +0 0.1878 +0 0.0733 +0 0.0760 +0 0.0819 +0 0.0782 +0 0.1255 +0 0.1388 +0 0.0528 +0 0.0464 +0 0.0507 +0 0.0699 +0 0.3154 +0 0.0969 +0 0.0389 +0 0.2523 +0 0.6141 +0 0.3992 +0 0.0940 +0 0.1475 +0 0.1080 +0 0.3822 +0 0.0561 +1 0.8596 +0 0.0957 +0 0.0910 +0 0.4767 +0 0.0825 +0 0.1791 +0 0.0445 +0 0.2293 +0 0.0628 +0 0.2700 +0 0.0405 +0 0.0699 +0 0.0636 +0 0.1079 +0 0.1690 +0 0.1391 +0 0.2193 +0 0.1714 +0 0.0915 +0 0.1460 +0 0.0755 +0 0.4956 +0 0.0814 +0 0.2704 +0 0.1351 +0 0.0777 +0 0.1108 +0 0.1296 +0 0.0401 +0 0.0509 +0 0.0635 +0 0.0679 +0 0.4189 +0 0.1093 +0 0.2467 +0 0.0591 +0 0.0641 +0 0.1207 +0 0.1713 +0 0.0918 +0 0.0924 +0 0.1826 +0 0.2274 +0 0.1467 +0 0.0593 +0 0.2774 +0 0.1353 +0 0.2622 +0 0.2977 +0 0.1188 +0 0.0653 +0 0.1011 +0 0.1632 +0 0.1302 +0 0.0507 +0 0.4601 +0 0.1638 +0 0.1835 +0 0.0417 +0 0.0886 +0 0.1302 +0 0.0847 +0 0.7367 +0 0.0665 +0 0.1616 +0 0.2353 +0 0.1673 +0 0.1365 +0 0.0549 +0 0.0665 +0 0.1913 +0 0.1215 +0 0.2999 +0 0.0811 +0 0.0911 +0 0.2276 +0 0.0919 +0 0.0492 +0 0.0887 +0 0.1140 +0 0.1804 +0 0.1345 +0 0.1044 +0 0.6055 +0 0.0918 +0 0.0648 +0 0.0413 +1 0.7639 +0 0.0712 +0 0.0962 +0 0.0902 +0 0.2146 +0 0.1973 +0 0.5650 +0 0.2000 +0 0.1009 +0 0.2031 +0 0.1074 +0 0.0721 +0 0.0951 +0 0.1314 +0 0.0909 +0 0.1671 +0 0.1093 +0 0.0872 +0 0.2453 +0 0.0600 +0 0.0902 +0 0.2454 +0 0.0939 +0 0.0608 +0 0.0711 +0 0.1327 +0 0.1032 +1 0.7837 +0 0.0635 +0 0.1502 +0 0.2068 +0 0.1612 +0 0.2066 +0 0.2698 +0 0.3206 +0 0.0603 +0 0.0639 +0 0.0577 +0 0.0811 +0 0.0447 +0 0.0850 +0 0.1288 +0 0.2006 +0 0.2908 +0 0.0543 +0 0.1041 +0 0.1211 +0 0.2823 +0 0.0643 +0 0.1535 +0 0.1060 +0 0.0699 +0 0.0758 +0 0.0599 +0 0.1378 +0 0.1147 +0 0.3675 +0 0.0681 +0 0.0955 +0 0.1235 +0 0.2522 +0 0.5111 +0 0.2054 +0 0.0819 +0 0.0932 +0 0.1631 +0 0.0732 +0 0.1343 +0 0.1502 +0 0.0867 +0 0.3543 +0 0.0757 +0 0.0917 +0 0.0485 +0 0.0588 +0 0.0620 +0 0.1887 +0 0.1406 +0 0.1108 +0 0.0808 +0 0.4166 +0 0.1764 +0 0.0771 +0 0.0669 +0 0.0821 +0 0.1705 +0 0.0561 +0 0.0858 +0 0.1183 +0 0.0805 +0 0.0407 +0 0.1411 +0 0.0304 +0 0.1094 +0 0.1018 +0 0.1588 +0 0.1945 +0 0.1092 +0 0.0721 +0 0.0414 +0 0.1481 +0 0.0794 +0 0.0622 +0 0.0556 +0 0.0827 +0 0.0822 +0 0.1344 +1 0.8616 +0 0.1224 +0 0.0845 +0 0.6405 +0 0.4823 +0 0.4072 +0 0.1418 +0 0.0812 +0 0.2609 +0 0.0962 +0 0.1430 +1 0.8856 +0 0.1283 +0 0.1380 +0 0.0885 +0 0.1232 +0 0.1067 +0 0.4257 +0 0.1138 +1 0.8609 +0 0.0591 +0 0.0796 +0 0.7197 +0 0.2139 +0 0.1798 +0 0.1721 +0 0.1049 +0 0.0393 +0 0.2026 +0 0.3025 +0 0.0552 +0 0.1389 +0 0.0747 +0 0.1159 +0 0.1216 +0 0.1015 +0 0.0677 +0 0.1115 +0 0.2463 +0 0.0892 +0 0.1222 +0 0.0423 +0 0.1658 +0 0.1195 +0 0.0519 +0 0.0759 +0 0.0758 +0 0.1340 +1 0.7935 +0 0.0600 +0 0.0747 +0 0.2160 +0 0.1436 +0 0.0465 +0 0.0849 +0 0.2451 +0 0.0454 +0 0.0886 +0 0.0591 +0 0.1101 +0 0.0854 +0 0.4132 +0 0.0447 +0 0.0514 +0 0.0670 +0 0.2096 +0 0.0363 +0 0.0593 +0 0.2299 +0 0.1062 +0 0.2411 +0 0.0603 +0 0.0496 +0 0.0842 +0 0.1947 +0 0.1243 +0 0.2003 +0 0.7098 +0 0.2086 +0 0.1039 +0 0.1274 +0 0.3905 +0 0.0594 +0 0.0291 +0 0.1312 +0 0.1245 +0 0.0533 +0 0.6790 +0 0.1091 +0 0.0443 +0 0.6788 +0 0.2217 +0 0.4923 +0 0.1063 +0 0.0419 +0 0.0875 +0 0.0784 +0 0.1640 +0 0.0887 +0 0.2888 +0 0.1078 +0 0.1339 +0 0.1112 +0 0.1748 +0 0.0912 +0 0.0820 +0 0.2101 +0 0.1089 +0 0.0624 +0 0.0789 +0 0.1469 +0 0.2205 +0 0.2145 +0 0.1601 +0 0.1314 +0 0.3448 +0 0.2029 +0 0.0515 +0 0.0423 +0 0.1182 +0 0.0829 +0 0.0873 +0 0.1731 +0 0.1223 +1 0.7656 +0 0.1911 +0 0.0442 +0 0.1163 +0 0.0505 +0 0.0769 +0 0.7396 +0 0.0885 +1 0.7534 +0 0.1521 +0 0.0820 +0 0.1247 +0 0.0334 +0 0.0751 +0 0.0761 +0 0.1725 +0 0.0612 +0 0.2371 +0 0.1492 +0 0.0855 +0 0.2327 +0 0.3971 +0 0.2306 +0 0.1100 +0 0.0430 +0 0.2081 +0 0.0659 +0 0.0698 +0 0.0515 +0 0.0622 +0 0.0565 +0 0.1021 +0 0.1995 +0 0.6946 +0 0.0783 +0 0.1432 +0 0.1149 +0 0.2152 +0 0.2177 +0 0.1060 +0 0.0441 +0 0.1557 +0 0.0621 +0 0.1523 +0 0.1264 +0 0.2063 +0 0.0762 +0 0.0621 +0 0.0430 +0 0.2480 +0 0.0901 +0 0.1625 +0 0.2164 +0 0.0675 +0 0.1293 +0 0.0771 +0 0.1383 +0 0.4436 +0 0.7318 +0 0.1086 +0 0.3569 +0 0.0355 +0 0.1419 +0 0.1069 +0 0.3950 +0 0.0781 +0 0.2436 +0 0.0319 +0 0.0964 +0 0.0992 +0 0.1581 +0 0.0751 +0 0.2078 +0 0.1032 +0 0.0913 +0 0.0649 +0 0.2689 +0 0.1314 +0 0.1215 +0 0.1449 +0 0.1866 +0 0.0835 +0 0.2537 +0 0.1092 +0 0.0841 +0 0.1890 +0 0.0850 +0 0.0518 +0 0.0753 +0 0.2244 +1 0.7569 +0 0.1083 +0 0.1243 +0 0.2957 +0 0.0522 +0 0.0699 +0 0.1883 +0 0.0757 +0 0.1140 +0 0.2238 +0 0.1946 +0 0.0477 +0 0.2839 +0 0.0507 +0 0.1268 +0 0.1531 +0 0.1291 +0 0.0726 +0 0.0498 +0 0.0978 +0 0.0776 +0 0.1105 +0 0.0786 +0 0.1015 +0 0.1357 +0 0.0502 +0 0.1920 +0 0.1043 +0 0.0612 +0 0.2192 +0 0.0728 +0 0.1020 +0 0.0701 +0 0.1553 +0 0.1335 +0 0.1291 +0 0.3408 +0 0.0879 +0 0.1140 +0 0.1197 +0 0.0698 +0 0.0913 +0 0.0596 +0 0.0819 +0 0.1269 +0 0.2818 +0 0.1236 +0 0.0616 +0 0.0396 +0 0.3116 +0 0.5055 +0 0.1313 +0 0.1989 +0 0.2394 +0 0.0771 +0 0.0435 +0 0.2104 +0 0.1251 +0 0.0872 +0 0.2221 +0 0.0732 +0 0.0786 +0 0.1561 +0 0.1005 +0 0.2854 +0 0.1890 +0 0.0622 +0 0.1674 +0 0.0415 +0 0.1294 +0 0.0381 +0 0.3390 +1 0.7900 +0 0.1120 +0 0.1217 +0 0.0569 +0 0.0891 +0 0.2925 +0 0.0667 +0 0.4928 +0 0.0920 +0 0.2611 +0 0.4648 +0 0.0912 +0 0.0586 +0 0.1114 +0 0.1475 +0 0.1845 +0 0.0641 +0 0.1290 +0 0.2677 +0 0.1782 +0 0.1014 +0 0.2173 +0 0.0606 +0 0.1502 +0 0.2140 +0 0.2807 +0 0.0371 +0 0.1326 +0 0.1234 +0 0.1218 +0 0.0364 +0 0.2516 +0 0.2688 +0 0.0824 +1 0.7573 +0 0.0493 +0 0.0745 +0 0.0398 +0 0.1278 +0 0.1163 +0 0.0755 +0 0.0979 +0 0.1267 +0 0.1684 +0 0.1427 +0 0.1149 +0 0.0485 +0 0.0680 +0 0.1458 +0 0.1205 +0 0.2108 +0 0.0881 +0 0.1505 +0 0.3051 +0 0.0481 +0 0.1619 +0 0.2040 +0 0.1506 +0 0.0977 +0 0.2172 +0 0.0788 +0 0.0869 +0 0.1640 +0 0.1492 +0 0.1311 +0 0.0425 +0 0.1404 +0 0.0794 +0 0.0463 +1 0.8569 +0 0.0419 +0 0.0546 +0 0.0901 +0 0.1759 +0 0.0442 +0 0.1357 +0 0.2463 +0 0.0913 +0 0.1301 +0 0.0352 +0 0.0285 +0 0.0900 +0 0.1215 +0 0.0497 +0 0.0962 +0 0.6229 +0 0.0508 +0 0.0613 +0 0.1140 +0 0.1911 +0 0.0937 +0 0.0713 +0 0.1055 +0 0.2762 +0 0.1296 +0 0.7472 +0 0.0881 +0 0.0879 +0 0.7292 +0 0.0795 +0 0.0719 +0 0.1827 +0 0.0723 +0 0.1209 +0 0.1347 +0 0.1836 +0 0.3897 +0 0.0680 +0 0.0817 +0 0.5080 +0 0.0882 +0 0.1079 +0 0.1438 +0 0.0851 +0 0.0731 +0 0.0938 +0 0.0869 +0 0.1615 +0 0.1301 +0 0.1609 +0 0.4993 +0 0.3931 +0 0.1771 +0 0.0562 +0 0.1972 +0 0.0793 +0 0.2881 +0 0.1616 +0 0.1623 +0 0.1314 +0 0.1500 +0 0.0666 +0 0.0870 +0 0.1085 +0 0.1028 +0 0.1099 +0 0.1020 +0 0.4119 +0 0.4431 +0 0.1395 +0 0.1924 +0 0.0813 +0 0.2914 +0 0.0521 +0 0.2920 +0 0.0834 +0 0.0941 +0 0.2778 +0 0.0722 +0 0.1702 +0 0.1023 +0 0.2025 +0 0.0743 +0 0.7079 +0 0.1609 +0 0.1232 +0 0.0795 +0 0.1613 +0 0.1235 +0 0.0770 +0 0.0367 +0 0.0378 +0 0.1358 +0 0.1765 +0 0.1140 +0 0.0876 +0 0.1215 +0 0.0995 +1 0.8370 +0 0.0807 +0 0.1924 +0 0.2510 +0 0.1135 +0 0.1548 +0 0.1968 +0 0.0985 +0 0.0740 +0 0.2944 +0 0.1002 +0 0.1205 +0 0.0687 +0 0.0381 +0 0.2845 +0 0.6510 +0 0.0833 +0 0.0901 +0 0.0843 +0 0.1731 +0 0.1877 +0 0.3869 +0 0.1970 +0 0.0535 +0 0.0557 +0 0.0900 +0 0.2352 +0 0.0965 +0 0.1636 +0 0.1157 +0 0.2817 +0 0.0811 +0 0.1606 +0 0.1080 +0 0.0757 +0 0.1389 +0 0.0307 +0 0.1054 +0 0.1525 +0 0.3203 +0 0.1846 +0 0.2972 +0 0.1095 +0 0.0596 +0 0.3178 +0 0.0763 +0 0.1710 +0 0.0678 +0 0.6772 +0 0.2378 +0 0.2381 +0 0.0690 +0 0.1800 +0 0.3910 +0 0.1202 +0 0.0802 +0 0.0616 +0 0.2371 +0 0.1297 +0 0.1784 +0 0.1035 +0 0.6460 +0 0.1439 +0 0.4039 +0 0.1796 +0 0.0929 +0 0.0981 +0 0.2548 +0 0.1307 +0 0.1577 +0 0.1786 +0 0.0955 +0 0.1419 +0 0.0758 +0 0.0921 +0 0.1418 +0 0.2637 +0 0.0690 +0 0.1578 +0 0.0813 +0 0.1196 +0 0.0435 +0 0.0982 +0 0.0497 +0 0.1107 +0 0.0492 +0 0.0926 +0 0.1232 +0 0.1000 +0 0.1361 +0 0.1710 +0 0.0943 +0 0.1058 +0 0.0975 +0 0.1394 +0 0.0725 +0 0.1255 +0 0.0836 +0 0.0634 +0 0.5720 +0 0.1672 +0 0.0577 +0 0.0965 +0 0.0897 +0 0.0840 +0 0.3685 +0 0.1151 +1 0.8505 +0 0.0695 +0 0.0820 +0 0.1484 +0 0.0877 +0 0.3782 +0 0.1134 +0 0.1947 +0 0.0822 +0 0.1601 +0 0.2428 +0 0.1096 +0 0.2682 +0 0.1429 +0 0.1464 +0 0.0778 +0 0.0566 +0 0.1426 +0 0.0384 +0 0.1241 +0 0.0681 +0 0.0701 +0 0.0866 +0 0.1057 +0 0.0698 +0 0.2005 +0 0.2014 +0 0.0710 +0 0.2876 +0 0.0636 +0 0.2267 +0 0.0886 +0 0.1170 +0 0.0508 +1 0.7682 +0 0.1461 +0 0.2030 +0 0.2718 +0 0.4004 +0 0.1206 +0 0.1455 +0 0.1139 +0 0.3182 +0 0.1264 +0 0.1229 +0 0.0508 +0 0.0496 +0 0.0583 +0 0.0435 +0 0.1558 +0 0.1984 +0 0.1979 +0 0.0892 +0 0.1017 +0 0.0803 +0 0.1487 +0 0.0425 +0 0.0915 +0 0.0475 +0 0.0932 +0 0.0449 +0 0.5573 +0 0.0879 +0 0.0483 +0 0.0806 +0 0.2233 +0 0.0469 +0 0.2227 +0 0.1123 +0 0.2205 +0 0.0525 +0 0.1242 +0 0.1020 +0 0.0815 +0 0.7122 +0 0.0509 +0 0.0915 +0 0.1013 +0 0.0584 +0 0.0743 +0 0.2357 +0 0.2118 +0 0.0825 +0 0.0798 +0 0.5701 +1 0.7608 +0 0.0682 +0 0.1837 +0 0.0833 +0 0.1748 +0 0.2055 +0 0.1987 +0 0.1436 +0 0.0924 +0 0.7110 +0 0.1175 +0 0.0567 +0 0.0605 +0 0.0627 +0 0.0613 +0 0.1660 +0 0.1764 +0 0.1031 +0 0.0457 +0 0.0801 +0 0.0738 +0 0.1195 +0 0.0419 +0 0.0766 +0 0.0607 +0 0.0590 +0 0.0634 +0 0.4515 +0 0.0952 +0 0.2770 +0 0.5591 +0 0.1309 +0 0.1257 +0 0.1426 +0 0.0538 +0 0.0998 +0 0.0540 +0 0.1395 +0 0.1020 +0 0.0935 +0 0.0838 +0 0.0477 +0 0.0662 +0 0.0915 +0 0.2889 +0 0.2477 +0 0.2703 +0 0.3242 +0 0.2443 +0 0.1361 +0 0.0955 +0 0.0353 +0 0.0364 +0 0.2563 +0 0.0860 +1 0.8280 +0 0.1839 +0 0.0696 +0 0.1033 +0 0.0378 +0 0.1302 +0 0.1635 +0 0.1429 +0 0.0386 +0 0.2283 +0 0.0420 +0 0.1423 +0 0.0967 +0 0.1662 +0 0.1212 +0 0.0949 +0 0.1903 +0 0.1164 +0 0.1590 +0 0.0711 +0 0.0696 +0 0.0601 +0 0.3662 +0 0.1140 +0 0.0996 +0 0.0884 +0 0.1064 +0 0.1678 +0 0.0638 +0 0.0884 +0 0.1562 +0 0.1619 +0 0.0617 +0 0.4062 +0 0.0371 +0 0.2292 +0 0.1087 +0 0.4324 +0 0.1741 +0 0.1037 +0 0.0921 +1 0.8358 +0 0.2250 +0 0.1621 +0 0.1669 +0 0.0856 +0 0.0931 +0 0.0513 +0 0.0318 +1 0.8464 +0 0.0849 +0 0.2286 +0 0.2449 +0 0.0956 +0 0.2742 +0 0.0667 +0 0.1005 +0 0.0771 +0 0.1458 +0 0.0760 +0 0.1154 +0 0.0366 +0 0.0512 +0 0.1011 +0 0.3014 +0 0.0375 +0 0.2457 +0 0.0657 +0 0.0502 +0 0.0555 +1 0.8628 +0 0.2865 +0 0.3654 +0 0.0701 +0 0.0816 +0 0.0952 +0 0.0328 +0 0.0544 +0 0.1143 +0 0.2124 +0 0.1029 +0 0.2981 +0 0.1716 +0 0.0666 +0 0.1275 +0 0.0790 +0 0.0358 +0 0.1438 +0 0.1274 +0 0.0489 +0 0.0520 +0 0.1312 +1 0.8255 +0 0.2903 +0 0.1726 +0 0.3411 +0 0.0521 +0 0.0648 +0 0.0500 +0 0.1372 +0 0.0627 +0 0.2580 +0 0.5323 +0 0.1725 +0 0.1250 +0 0.2377 +0 0.3184 +1 0.8195 +0 0.0615 +0 0.2743 +0 0.0897 +0 0.4456 +0 0.1769 +0 0.0553 +0 0.1508 +0 0.1200 +0 0.0600 +0 0.2305 +0 0.0735 +0 0.0667 +0 0.0581 +0 0.1194 +0 0.1073 +0 0.1752 +0 0.1884 +0 0.1323 +0 0.2898 +0 0.2882 +0 0.0628 +0 0.0574 +0 0.2497 +0 0.1162 +0 0.1010 +0 0.0687 +0 0.2319 +0 0.0918 +0 0.2699 +0 0.1660 +0 0.0540 +0 0.0697 +0 0.0640 +0 0.0612 +0 0.0731 +0 0.1000 +0 0.1872 +0 0.0605 +0 0.1497 +0 0.0409 +0 0.1644 +0 0.0485 +0 0.0692 +0 0.0744 +0 0.0472 +0 0.6849 +0 0.0709 +0 0.0817 +0 0.0740 +0 0.0777 +0 0.0774 +0 0.1025 +0 0.1185 +0 0.1353 +0 0.0983 +0 0.0738 +0 0.1064 +1 0.8527 +0 0.1288 +0 0.0629 +0 0.0491 +0 0.1972 +0 0.0649 +0 0.0904 +0 0.5512 +0 0.2128 +0 0.1025 +0 0.1150 +0 0.1868 +0 0.0496 +0 0.1183 +0 0.0716 +0 0.1506 +0 0.1518 +0 0.0576 +0 0.1522 +0 0.0676 +0 0.0815 +0 0.2848 +0 0.0653 +0 0.1214 +1 0.7714 +0 0.0767 +0 0.4196 +0 0.1910 +0 0.0990 +0 0.1475 +0 0.1446 +0 0.0830 +0 0.2362 +0 0.1052 +0 0.2136 +0 0.0340 +0 0.0908 +0 0.1918 +0 0.1432 +0 0.1387 +0 0.4000 +0 0.2074 +0 0.1491 +0 0.0599 +0 0.0617 +0 0.0932 +0 0.0440 +0 0.2724 +0 0.1379 +0 0.1246 +0 0.1649 +0 0.2606 +0 0.0337 +0 0.0492 +0 0.0830 +0 0.0995 +0 0.2262 +0 0.5776 +0 0.5159 +0 0.1365 +0 0.1094 +0 0.0939 +0 0.0681 +0 0.6144 +1 0.8880 +0 0.1430 +0 0.1113 +0 0.1085 +0 0.0569 +0 0.0592 +0 0.0822 +0 0.1196 +0 0.0820 +0 0.1068 +1 0.8092 +0 0.3135 +0 0.2147 +0 0.2358 +0 0.1408 +0 0.1278 +0 0.1147 +0 0.3346 +0 0.1047 +0 0.0715 +0 0.0896 +0 0.0658 +0 0.1072 +0 0.1235 +0 0.1782 +0 0.5834 +0 0.0829 +0 0.0983 +0 0.0951 +0 0.1912 +0 0.1798 +0 0.4335 +0 0.0920 +0 0.1050 +0 0.1089 +0 0.0618 +0 0.1052 +0 0.0619 +0 0.1600 +0 0.1741 +0 0.0614 +0 0.0925 +0 0.1288 +0 0.1056 +0 0.0718 +0 0.0910 +0 0.1978 +0 0.1768 +0 0.0904 +0 0.1669 +0 0.1958 +0 0.0907 +0 0.1090 +0 0.3454 +0 0.3478 +0 0.0612 +0 0.2901 +0 0.0935 +0 0.0610 +0 0.0985 +0 0.0727 +0 0.0404 +0 0.0663 +1 0.8185 +0 0.0719 +0 0.1015 +0 0.2137 +0 0.5498 +0 0.0407 +0 0.1078 +0 0.0469 +0 0.0580 +0 0.0863 +0 0.0648 +0 0.0733 +0 0.0588 +0 0.1662 +0 0.1428 +0 0.0726 +0 0.0693 +0 0.0903 +0 0.1690 +0 0.1319 +0 0.0880 +0 0.1133 +0 0.1363 +0 0.0534 +0 0.1168 +0 0.0681 +0 0.0716 +0 0.0694 +0 0.1158 +0 0.0799 +0 0.1111 +0 0.1076 +0 0.0823 +0 0.2091 +0 0.0653 +0 0.4345 +0 0.0470 +0 0.1107 +0 0.0607 +0 0.1820 +0 0.0741 +0 0.0894 +0 0.0498 +0 0.1482 +0 0.2121 +0 0.0599 +0 0.4197 +0 0.1128 +0 0.2443 +0 0.0670 +0 0.0775 +0 0.0706 +0 0.1344 +0 0.0654 +0 0.0953 +0 0.0644 +0 0.3780 +0 0.0916 +0 0.2224 +0 0.1092 +0 0.0570 +0 0.5559 +0 0.0766 +0 0.0744 +0 0.1612 +0 0.1192 +0 0.0775 +0 0.0564 +0 0.0904 +0 0.5848 +0 0.0955 +0 0.0878 +0 0.2540 +0 0.0697 +0 0.1056 +0 0.0588 +0 0.1427 +0 0.1255 +0 0.1533 +0 0.0570 +0 0.2741 +0 0.0962 +0 0.0943 +0 0.1186 +0 0.0685 +0 0.1473 +0 0.0768 +0 0.0351 +0 0.0812 +0 0.0542 +0 0.1668 +0 0.1198 +0 0.1892 +0 0.1903 +0 0.1047 +0 0.2393 +0 0.0798 +0 0.2359 +0 0.2095 +0 0.1012 +0 0.1440 +0 0.0820 +0 0.0358 +0 0.1089 +0 0.2106 +0 0.2562 +0 0.0779 +0 0.1008 +1 0.7720 +0 0.1427 +0 0.1087 +0 0.4282 +0 0.2534 +0 0.0851 +0 0.0986 +0 0.0828 +0 0.1523 +0 0.6504 +0 0.0663 +0 0.1021 +0 0.4381 +0 0.0805 +0 0.1573 +0 0.1989 +0 0.1310 +0 0.0522 +0 0.0859 +0 0.1817 +0 0.0661 +0 0.0540 +0 0.1329 +0 0.0895 +0 0.0674 +0 0.0712 +0 0.1531 +0 0.0560 +0 0.0747 +0 0.0657 +0 0.7001 +0 0.0515 +0 0.0363 +0 0.1025 +0 0.2410 +0 0.2649 +0 0.2260 +0 0.1212 +0 0.0964 +0 0.0743 +0 0.0930 +0 0.1127 +0 0.1137 +0 0.0866 +0 0.4437 +0 0.0490 +0 0.1032 +0 0.1199 +0 0.0616 +0 0.4533 +0 0.0633 +0 0.0970 +0 0.0595 +0 0.0539 +0 0.1086 +0 0.1534 +0 0.0707 +0 0.2018 +0 0.2972 +0 0.2764 +0 0.0917 +0 0.0610 +0 0.0968 +0 0.1289 +0 0.0806 +0 0.1029 +0 0.0705 +0 0.2301 +0 0.0938 +0 0.0802 +0 0.2239 +0 0.1612 +0 0.1479 +0 0.1003 +0 0.1637 +0 0.1464 +0 0.0733 +0 0.1410 +0 0.1642 +0 0.2542 +0 0.3767 +0 0.0436 +0 0.1513 +0 0.1952 +1 0.7807 +0 0.0997 +1 0.8580 +0 0.0923 +0 0.2835 +0 0.1467 +0 0.1717 +0 0.1730 +0 0.0522 +0 0.2085 +0 0.4583 +0 0.1124 +0 0.1433 +0 0.0812 +0 0.1554 +0 0.0944 +0 0.1202 +0 0.1398 +0 0.1090 +0 0.0543 +0 0.1735 +0 0.1290 +0 0.0464 +0 0.3308 +0 0.0909 +0 0.2867 +0 0.1034 +0 0.1627 +0 0.1538 +0 0.6517 +0 0.1843 +0 0.3655 +0 0.0612 +0 0.0666 +0 0.1373 +0 0.0849 +0 0.0726 +0 0.1429 +0 0.0402 +0 0.0877 +0 0.7420 +0 0.1341 +0 0.1302 +0 0.0486 +0 0.0911 +0 0.0604 +0 0.0846 +0 0.1193 +0 0.2543 +0 0.1377 +0 0.1905 +0 0.0821 +0 0.1393 +0 0.1715 +0 0.1823 +0 0.3010 +0 0.1044 +0 0.1121 +0 0.2682 +0 0.0741 +0 0.0749 +0 0.1312 +0 0.0553 +0 0.0744 +0 0.0602 +1 0.7742 +0 0.0373 +0 0.0733 +0 0.0668 +0 0.1392 +0 0.3041 +0 0.0980 +0 0.0684 +0 0.1279 +0 0.0460 +0 0.0644 +0 0.0603 +0 0.1000 +0 0.1588 +0 0.0906 +0 0.0769 +0 0.1918 +0 0.0694 +0 0.0469 +0 0.0659 +0 0.0544 +0 0.1076 +0 0.1790 +0 0.3179 +0 0.0979 +0 0.0851 +0 0.0520 +0 0.0860 +0 0.7342 +0 0.0577 +0 0.0500 +0 0.1553 +0 0.0616 +0 0.3578 +0 0.0941 +0 0.0872 +0 0.0593 +0 0.1027 +0 0.0770 +0 0.0498 +1 0.8209 +0 0.0457 +0 0.1054 +0 0.1586 +0 0.1163 +0 0.1478 +0 0.0487 +0 0.0613 +0 0.0641 +0 0.0885 +0 0.0825 +0 0.1466 +0 0.1339 +0 0.0529 +0 0.1194 +0 0.1166 +0 0.1403 +0 0.2337 +0 0.0580 +0 0.0886 +0 0.0697 +0 0.1248 +0 0.0986 +0 0.0802 +0 0.1072 +0 0.0986 +0 0.0811 +1 0.8457 +0 0.1793 +0 0.1108 +0 0.1001 +0 0.1041 +0 0.0791 +0 0.6320 +0 0.0641 +0 0.2004 +0 0.0454 +0 0.0877 +0 0.0616 +0 0.1423 +0 0.2804 +0 0.0870 +0 0.1164 +0 0.2359 +0 0.1491 +0 0.0649 +0 0.2988 +0 0.1142 +0 0.6226 +0 0.0709 +0 0.1323 +0 0.0963 +0 0.1928 +0 0.0917 +0 0.0969 +0 0.0463 +0 0.1131 +0 0.0767 +0 0.0334 +0 0.0870 +0 0.3647 +0 0.1925 +0 0.0678 +0 0.0880 +0 0.1804 +0 0.0597 +0 0.1193 +0 0.0383 +0 0.1870 +0 0.2641 +0 0.0889 +0 0.0483 +0 0.4676 +0 0.1556 +0 0.0944 +0 0.0433 +0 0.1003 +0 0.0633 +0 0.1105 +0 0.0702 +0 0.1056 +0 0.0685 +0 0.0760 +0 0.1585 +0 0.0795 +0 0.0680 +0 0.0605 +0 0.3202 +0 0.1560 +0 0.0526 +0 0.0662 +0 0.0816 +0 0.0699 +0 0.0997 +0 0.0897 +0 0.1738 +0 0.0778 +0 0.0721 +0 0.0514 +0 0.1889 +0 0.0745 +0 0.0484 +0 0.0353 +0 0.2124 +0 0.1512 +0 0.0775 +0 0.1259 +0 0.0604 +0 0.0346 +0 0.1164 +0 0.0434 +0 0.1125 +0 0.2228 +0 0.1155 +0 0.3149 +0 0.1055 +0 0.2924 +0 0.1948 +0 0.0874 +0 0.5870 +0 0.0747 +0 0.0633 +0 0.0544 +0 0.1494 +0 0.5232 +0 0.0792 +0 0.0347 +0 0.0805 +0 0.2073 +0 0.2019 +0 0.0914 +0 0.5321 +0 0.1980 +1 0.7963 +0 0.1798 +0 0.4167 +0 0.1084 +0 0.3162 +0 0.0765 +0 0.1515 +0 0.0545 +0 0.1416 +0 0.0800 +0 0.3076 +0 0.0749 +0 0.0908 +0 0.1277 +0 0.2241 +0 0.0850 +0 0.0796 +0 0.4091 +0 0.1834 +0 0.1323 +0 0.1272 +0 0.1515 +0 0.1202 +0 0.2159 +0 0.2771 +0 0.0970 +1 0.7568 +0 0.1921 +0 0.4876 +0 0.1799 +0 0.1717 +0 0.0833 +0 0.0970 +0 0.0558 +0 0.0716 +0 0.1816 +0 0.1155 +0 0.1530 +0 0.1740 +0 0.0440 +0 0.1827 +0 0.0850 +0 0.1513 +0 0.0738 +0 0.0585 +0 0.1600 +0 0.1418 +0 0.0842 +0 0.0733 +0 0.0630 +0 0.1392 +0 0.0718 +0 0.0857 +0 0.1650 +0 0.2254 +0 0.1423 +0 0.0599 +0 0.1137 +0 0.3890 +0 0.0652 +0 0.0600 +0 0.0591 +0 0.4199 +1 0.8612 +0 0.2092 +0 0.0673 +0 0.1446 +0 0.0395 +0 0.0829 +0 0.1080 +0 0.0493 +0 0.1676 +0 0.0683 +0 0.1118 +0 0.1062 +0 0.0918 +0 0.0945 +0 0.1757 +0 0.1539 +0 0.1290 +0 0.7163 +0 0.1307 +0 0.2330 +0 0.0982 +0 0.1398 +0 0.1410 +0 0.0758 +0 0.1515 +0 0.1265 +0 0.0893 +0 0.0543 +0 0.0703 +0 0.0948 +0 0.0673 +0 0.2130 +0 0.0491 +0 0.0830 +0 0.0622 +0 0.1811 +0 0.1983 +0 0.2559 +0 0.2581 +0 0.1824 +1 0.8100 +0 0.0754 +0 0.1333 +0 0.1040 +0 0.0544 +0 0.0842 +0 0.0897 +0 0.1347 +0 0.0735 +0 0.1319 +0 0.0665 +0 0.3015 +0 0.1488 +0 0.1499 +0 0.0616 +0 0.1087 +0 0.0964 +0 0.0677 +0 0.0860 +0 0.0481 +0 0.0551 +0 0.1277 +0 0.0985 +0 0.1090 +0 0.0413 +0 0.3329 +0 0.1777 +0 0.0511 +0 0.1432 +0 0.1853 +0 0.1272 +0 0.0812 +0 0.0858 +0 0.1447 +0 0.0688 +0 0.0642 +0 0.1056 +0 0.0893 +0 0.1228 +0 0.1847 +0 0.1466 +0 0.0699 +0 0.1742 +0 0.1347 +0 0.2005 +0 0.0737 +0 0.1904 +0 0.0461 +0 0.0840 +0 0.1215 +0 0.1342 +0 0.7213 +0 0.1306 +0 0.4549 +0 0.4170 +0 0.2154 +0 0.1740 +0 0.2215 +0 0.1167 +0 0.0400 +0 0.1347 +0 0.1217 +0 0.1712 +0 0.1380 +0 0.0461 +0 0.0457 +0 0.1250 +0 0.1286 +0 0.0852 +0 0.1793 +0 0.1018 +0 0.1836 +0 0.1968 +0 0.1598 +0 0.1024 +0 0.0625 +0 0.1384 +0 0.1793 +0 0.0519 +1 0.9061 +0 0.0988 +0 0.0579 +0 0.1355 +0 0.1181 +0 0.0779 +0 0.0726 +0 0.0642 +0 0.0548 +0 0.0947 +0 0.0723 +0 0.1024 +0 0.0804 +0 0.3543 +0 0.0637 +0 0.0725 +0 0.1454 +0 0.1495 +0 0.1356 +0 0.1088 +0 0.0854 +0 0.0827 +0 0.1222 +0 0.0899 +0 0.0680 +0 0.0821 +0 0.2500 +0 0.0834 +0 0.0721 +0 0.0564 +0 0.0576 +0 0.0730 +0 0.2855 +0 0.1881 +0 0.1716 +0 0.5380 +0 0.1609 +0 0.0438 +0 0.0916 +0 0.1476 +0 0.0689 +0 0.7154 +0 0.2219 +1 0.8138 +0 0.1263 +0 0.2941 +0 0.0632 +0 0.1208 +0 0.0853 +0 0.1091 +0 0.0804 +0 0.1558 +0 0.0930 +0 0.0629 +0 0.1257 +0 0.0732 +0 0.2253 +0 0.1023 +0 0.0718 +0 0.0687 +0 0.0587 +0 0.1141 +0 0.0798 +0 0.0597 +0 0.0538 +0 0.3128 +0 0.1866 +0 0.0849 +0 0.4067 +0 0.1729 +0 0.1811 +0 0.3973 +0 0.1683 +0 0.1081 +0 0.0756 +0 0.1134 +0 0.0515 +0 0.1327 +0 0.1413 +0 0.1248 +0 0.1091 +0 0.0790 +0 0.0966 +0 0.0564 +0 0.0801 +0 0.2385 +0 0.0792 +0 0.1289 +0 0.0793 +0 0.0689 +0 0.1625 +0 0.4994 +0 0.1284 +0 0.1973 +0 0.0999 +0 0.0539 +0 0.0944 +0 0.0944 +0 0.0780 +0 0.3156 +0 0.0496 +0 0.0977 +0 0.0404 +0 0.0777 +0 0.1513 +0 0.4813 +0 0.0735 +0 0.0567 +0 0.0845 +0 0.0986 +0 0.0722 +0 0.0477 +0 0.0884 +0 0.0629 +0 0.0888 +0 0.3253 +0 0.1998 +0 0.3490 +0 0.0632 +0 0.0627 +0 0.1864 +0 0.2960 +0 0.1589 +0 0.1523 +0 0.1014 +0 0.1942 +0 0.0762 +0 0.0453 +0 0.0882 +0 0.1124 +0 0.0629 +0 0.1051 +0 0.0856 +0 0.5857 +0 0.0973 +0 0.1534 +0 0.1547 +0 0.1222 +0 0.1397 +0 0.1001 +0 0.1120 +0 0.0561 +0 0.0843 +0 0.5846 +0 0.0912 +0 0.0699 +0 0.1293 +0 0.2058 +0 0.0387 +0 0.1726 +0 0.0457 +0 0.2513 +0 0.0388 +0 0.2095 +0 0.2481 +0 0.0893 +0 0.2914 +0 0.1366 +0 0.0923 +0 0.1105 +0 0.3399 +0 0.0532 +0 0.1276 +0 0.1354 +0 0.1280 +0 0.0346 +0 0.0870 +0 0.0825 +0 0.1878 +0 0.0813 +0 0.0768 +0 0.0496 +0 0.0609 +0 0.0778 +0 0.0853 +0 0.2280 +0 0.1225 +0 0.0771 +0 0.2835 +0 0.0275 +0 0.1734 +0 0.2489 +0 0.0796 +0 0.0994 +0 0.2238 +0 0.0693 +0 0.3491 +0 0.0734 +0 0.0476 +0 0.2438 +0 0.0578 +0 0.2544 +0 0.0558 +0 0.0716 +0 0.0493 +0 0.0649 +0 0.0701 +0 0.0978 +0 0.0868 +0 0.0633 +0 0.1634 +0 0.0859 +0 0.0976 +0 0.1064 +0 0.2146 +0 0.0761 +0 0.4182 +0 0.1006 +0 0.0642 +0 0.0830 +0 0.0621 +0 0.3406 +0 0.0526 +0 0.0364 +0 0.0435 +0 0.1529 +0 0.1546 +0 0.0671 +0 0.0548 +0 0.0457 +0 0.2771 +0 0.0983 +0 0.0570 +0 0.0523 +0 0.2725 +0 0.1606 +0 0.1130 +0 0.1594 +0 0.1826 +0 0.2602 +0 0.3069 +0 0.0687 +0 0.1411 +0 0.1064 +0 0.1386 +0 0.6800 +0 0.1340 +0 0.0479 +0 0.1026 +0 0.0938 +0 0.1687 +0 0.1350 +0 0.3084 +0 0.0509 +0 0.0618 +0 0.0610 +0 0.1407 +0 0.0489 +0 0.1302 +0 0.0446 +0 0.4050 +0 0.0832 +0 0.2254 +0 0.1608 +0 0.1785 +0 0.0979 +0 0.1444 +0 0.1487 +0 0.1546 +0 0.1598 +0 0.3097 +0 0.1025 +0 0.0933 +0 0.2504 +0 0.2750 +0 0.1765 +0 0.0960 +0 0.0994 +0 0.0537 +0 0.1278 +0 0.1178 +0 0.0448 +0 0.1017 +0 0.0400 +0 0.2711 +0 0.0773 +0 0.0540 +0 0.1049 +0 0.0458 +0 0.2419 +0 0.1359 +0 0.0815 +0 0.1329 +0 0.1945 +0 0.4240 +0 0.2685 +0 0.3403 +0 0.0495 +0 0.0744 +0 0.0877 +0 0.0829 +0 0.1686 +0 0.0944 +0 0.1178 +0 0.0800 +0 0.0413 +0 0.7204 +0 0.1191 +0 0.0577 +0 0.2764 +0 0.0753 +0 0.3123 +0 0.0707 +0 0.0704 +0 0.2814 +0 0.1198 +0 0.1546 +0 0.1069 +0 0.3364 +0 0.0944 +0 0.0397 +0 0.0615 +0 0.0977 +0 0.0917 +0 0.3130 +0 0.0804 +0 0.0978 +0 0.2067 +0 0.0914 +0 0.1762 +0 0.2059 +0 0.2512 +0 0.1920 +0 0.1760 +0 0.0844 +0 0.2212 +0 0.0798 +0 0.0371 +0 0.1282 +0 0.1485 +0 0.0616 +0 0.2763 +0 0.0354 +0 0.1199 +0 0.0797 +0 0.1901 +0 0.0931 +0 0.0615 +0 0.1028 +0 0.1801 +0 0.3276 +0 0.0839 +0 0.1210 +0 0.1203 +0 0.0803 +0 0.0646 +0 0.1689 +0 0.2924 +0 0.1156 +0 0.0742 +0 0.0808 +0 0.1115 +0 0.0563 +0 0.1572 +0 0.1295 +0 0.0721 +0 0.0931 +0 0.0695 +0 0.2058 +0 0.2038 +0 0.0670 +0 0.0857 +0 0.1532 +0 0.0405 +0 0.0610 +0 0.1799 +0 0.1366 +0 0.0594 +0 0.2444 +0 0.0952 +0 0.1124 +0 0.1045 +0 0.3341 +0 0.7048 +0 0.0786 +0 0.1737 +0 0.1255 +0 0.0562 +0 0.1822 +0 0.0446 +0 0.3979 +0 0.0792 +0 0.3396 +0 0.0566 +0 0.3011 +0 0.1224 +0 0.0777 +0 0.3037 +0 0.1460 +0 0.1577 +0 0.0656 +0 0.1511 +0 0.0819 +0 0.1017 +0 0.1510 +0 0.0963 +0 0.1330 +0 0.2397 +0 0.3177 +0 0.1173 +0 0.1726 +0 0.1406 +0 0.0823 +0 0.0933 +0 0.0877 +0 0.1270 +0 0.0653 +0 0.0608 +0 0.1043 +0 0.1189 +0 0.2118 +0 0.3013 +0 0.2339 +0 0.0743 +0 0.1709 +0 0.1378 +0 0.1665 +0 0.1254 +0 0.0673 +0 0.0483 +0 0.2202 +0 0.5859 +0 0.0486 +0 0.0857 +0 0.0881 +0 0.1097 +0 0.0885 +0 0.0970 +0 0.1431 +0 0.0921 +0 0.1427 +0 0.0828 +0 0.0944 +0 0.0768 +0 0.0588 +0 0.1164 +0 0.2926 +0 0.0504 +0 0.1118 +0 0.1969 +0 0.0855 +0 0.0709 +0 0.1176 +0 0.6648 +0 0.3121 +0 0.1353 +0 0.0755 +0 0.2178 +0 0.2244 +0 0.0739 +0 0.0967 +0 0.0393 +0 0.0944 +0 0.0760 +0 0.0740 +0 0.0838 +0 0.1165 +1 0.8404 +0 0.0823 +0 0.0957 +0 0.0747 +0 0.0988 +0 0.0846 +0 0.3304 +0 0.0777 +0 0.6110 +0 0.0350 +0 0.1273 +0 0.2048 +0 0.0340 +0 0.1625 +0 0.0943 +0 0.0961 +0 0.0596 +0 0.0517 +0 0.1035 +0 0.2413 +0 0.1004 +0 0.1465 +0 0.1204 +0 0.1032 +0 0.0611 +0 0.1389 +1 0.8587 +0 0.1727 +0 0.0648 +0 0.2525 +0 0.0696 +0 0.0890 +0 0.1227 +1 0.8154 +0 0.2728 +0 0.0581 +0 0.1711 +0 0.0617 +0 0.1015 +0 0.0600 +0 0.0765 +0 0.0596 +0 0.3690 +0 0.0515 +0 0.0418 +0 0.0818 +0 0.0940 +0 0.0476 +0 0.0800 +0 0.1249 +0 0.1119 +0 0.6476 +0 0.1828 +0 0.0721 +1 0.8174 +0 0.0549 +0 0.0660 +0 0.2999 +0 0.1899 +0 0.2239 +0 0.1732 +0 0.1594 +0 0.0777 +0 0.0756 +0 0.3415 +0 0.2875 +0 0.2367 +0 0.0578 +0 0.0461 +0 0.2612 +0 0.0873 +0 0.1325 +0 0.1280 +1 0.8265 +0 0.0373 +0 0.0618 +0 0.0883 +0 0.0947 +0 0.0766 +0 0.0848 +0 0.6464 +1 0.7768 +0 0.0849 +0 0.1619 +0 0.1487 +0 0.1248 +0 0.1444 +0 0.1700 +0 0.0445 +0 0.1013 +0 0.4085 +0 0.0872 +0 0.0857 +0 0.1262 +0 0.0840 +0 0.0737 +0 0.0879 +0 0.1794 +0 0.0781 +0 0.0399 +0 0.0559 +0 0.1090 +0 0.1006 +0 0.0811 +0 0.0867 +0 0.1057 +0 0.2207 +0 0.0562 +0 0.7343 +0 0.1934 +0 0.0959 +0 0.0979 +0 0.2745 +0 0.2520 +0 0.0536 +0 0.0429 +0 0.4259 +0 0.0447 +0 0.0581 +0 0.1385 +0 0.0576 +0 0.0451 +0 0.0680 +0 0.0358 +0 0.1583 +0 0.1105 +0 0.1179 +0 0.0558 +0 0.0426 +0 0.0601 +0 0.2325 +0 0.0760 +0 0.3192 +0 0.6946 +1 0.8132 +0 0.0710 +0 0.0802 +0 0.1980 +0 0.0849 +0 0.1570 +0 0.1035 +0 0.0971 +0 0.0645 +0 0.2292 +0 0.0791 +0 0.0551 +0 0.0389 +0 0.1167 +0 0.2414 +0 0.3179 +0 0.0780 +0 0.1025 +0 0.2836 +0 0.1119 +0 0.4738 +0 0.1326 +0 0.0798 +0 0.1930 +0 0.2283 +0 0.1435 +0 0.0965 +0 0.0858 +0 0.0495 +0 0.1747 +0 0.1171 +0 0.2176 +0 0.1723 +0 0.0435 +0 0.6856 +0 0.0863 +0 0.4141 +0 0.0579 +0 0.1679 +0 0.0605 +0 0.0729 +0 0.1323 +1 0.7523 +0 0.1485 +0 0.0673 +0 0.1308 +0 0.1038 +0 0.1243 +0 0.1448 +0 0.2012 +0 0.0672 +0 0.1686 +0 0.1327 +0 0.0889 +0 0.1373 +0 0.1639 +0 0.1693 +0 0.1499 +0 0.1171 +0 0.5085 +0 0.0909 +0 0.1289 +0 0.0672 +0 0.1016 +0 0.0536 +0 0.0965 +0 0.0514 +0 0.1576 +0 0.1510 +0 0.0711 +0 0.0789 +0 0.0854 +0 0.2156 +1 0.7583 +0 0.0729 +0 0.0608 +0 0.1945 +0 0.0641 +0 0.0900 +0 0.0617 +0 0.0460 +0 0.0802 +0 0.0855 +0 0.1191 +1 0.8728 +0 0.1339 +0 0.0961 +0 0.0871 +0 0.1093 +0 0.1500 +0 0.0625 +0 0.0894 +0 0.2371 +0 0.4310 +0 0.0551 +0 0.2644 +0 0.0652 +0 0.1289 +0 0.0844 +0 0.0910 +0 0.0676 +0 0.3087 +0 0.0771 +0 0.0786 +0 0.0720 +0 0.0721 +0 0.0615 +0 0.0920 +1 0.8908 +0 0.0878 +0 0.0733 +0 0.0728 +0 0.1736 +0 0.0496 +0 0.1886 +0 0.1544 +0 0.1332 +0 0.1578 +0 0.1568 +0 0.0719 +0 0.3298 +0 0.0989 +0 0.0894 +0 0.1106 +0 0.0654 +0 0.0819 +0 0.0724 +0 0.5388 +0 0.0465 +0 0.2979 +0 0.2031 +0 0.0852 +0 0.0848 +0 0.0468 +0 0.4812 +0 0.0934 +0 0.1123 +0 0.1440 +0 0.0769 +0 0.0826 +0 0.1078 +0 0.4234 +0 0.0435 +0 0.3560 +0 0.1515 +0 0.0853 +0 0.1243 +0 0.2447 +0 0.2269 +0 0.1972 +0 0.1016 +0 0.0996 +0 0.1517 +0 0.1472 +0 0.0988 +0 0.0597 +0 0.1077 +0 0.0677 +0 0.1430 +0 0.0587 +0 0.1307 +0 0.2433 +0 0.0688 +0 0.1108 +0 0.1923 +0 0.1571 +0 0.1436 +0 0.2414 +0 0.0465 +0 0.3182 +0 0.2013 +0 0.0724 +0 0.1569 +0 0.1034 +0 0.5208 +0 0.0384 +0 0.0636 +0 0.1158 +0 0.1137 +0 0.3065 +0 0.0763 +0 0.1379 +0 0.0323 +0 0.2945 +0 0.1098 +0 0.0727 +0 0.1531 +0 0.2194 +0 0.1380 +0 0.0938 +0 0.0628 +0 0.0773 +0 0.0651 +0 0.1097 +0 0.0890 +0 0.0907 +0 0.0803 +0 0.0907 +0 0.0634 +0 0.7291 +0 0.0438 +0 0.1372 +0 0.0707 +0 0.2101 +1 0.8675 +0 0.1488 +0 0.1804 +0 0.1129 +0 0.0343 +0 0.0818 +0 0.0924 +0 0.2354 +0 0.0776 +0 0.0804 +0 0.0636 +0 0.0534 +0 0.1717 +0 0.2332 +0 0.0761 +0 0.1034 +0 0.2214 +0 0.1342 +0 0.0755 +0 0.2160 +0 0.0852 +0 0.1474 +0 0.0858 +0 0.0445 +1 0.8336 +0 0.1045 +0 0.1061 +0 0.1544 +0 0.3607 +0 0.1009 +0 0.0570 +0 0.1244 +0 0.2348 +0 0.0647 +0 0.1171 +0 0.3576 +0 0.0535 +0 0.0825 +0 0.1635 +0 0.0757 +0 0.6946 +0 0.0970 +0 0.0985 +0 0.0955 +0 0.1269 +0 0.0885 +0 0.1165 +0 0.1655 +0 0.0395 +0 0.1931 +0 0.0786 +0 0.1801 +0 0.1480 +0 0.0771 +0 0.2016 +0 0.1840 +0 0.2642 +0 0.1205 +0 0.0443 +0 0.0812 +0 0.1484 +0 0.1011 +0 0.0595 +0 0.0981 +0 0.1721 +0 0.1535 +0 0.0863 +0 0.0897 +0 0.1229 +0 0.0611 +0 0.3323 +0 0.1652 +0 0.3184 +0 0.0678 +0 0.1201 +0 0.4586 +0 0.1998 +0 0.0826 +0 0.0689 +0 0.1199 +0 0.0409 +0 0.1245 +0 0.1815 +0 0.4443 +0 0.1102 +0 0.2284 +0 0.1090 +0 0.1513 +0 0.0473 +0 0.1654 +0 0.2150 +0 0.1393 +0 0.0983 +0 0.0324 +0 0.1135 +0 0.0662 +0 0.0645 +0 0.1071 +0 0.0791 +0 0.1302 +0 0.5332 +0 0.0803 +0 0.0719 +0 0.0881 +0 0.0566 +0 0.2432 +0 0.1602 +0 0.1941 +0 0.2872 +0 0.0514 +0 0.3500 +1 0.8274 +0 0.1597 +0 0.2668 +0 0.0838 +0 0.0641 +0 0.1682 +0 0.1226 +0 0.1333 +0 0.1518 +0 0.1546 +0 0.0709 +0 0.0844 +0 0.0584 +0 0.0798 +0 0.4289 +0 0.0776 +0 0.0666 +0 0.0489 +0 0.1212 +0 0.2777 +0 0.1463 +0 0.1849 +0 0.6497 +0 0.0712 +0 0.3550 +0 0.0755 +0 0.0467 +0 0.0547 +0 0.2144 +0 0.1199 +0 0.0381 +0 0.0471 +0 0.1322 +0 0.1170 +0 0.0697 +0 0.1037 +0 0.0952 +0 0.1128 +0 0.2230 +0 0.0496 +0 0.2285 +0 0.1604 +0 0.1322 +0 0.3292 +0 0.0714 +0 0.2097 +0 0.1099 +0 0.2241 +0 0.0518 +0 0.0707 +0 0.2339 +0 0.1237 +0 0.0454 +0 0.3707 +0 0.0475 +0 0.1118 +0 0.0544 +0 0.1734 +0 0.1224 +0 0.2331 +0 0.1826 +0 0.2796 +0 0.1564 +0 0.2256 +0 0.0570 +0 0.1024 +0 0.0468 +0 0.6238 +0 0.1458 +0 0.2627 +0 0.1607 +0 0.0546 +0 0.2162 +0 0.0959 +0 0.0716 +0 0.2733 +0 0.2304 +0 0.0956 +0 0.1041 +0 0.0507 +0 0.1367 +0 0.0848 +0 0.2295 +0 0.1324 +0 0.0452 +0 0.1283 +0 0.0499 +0 0.6701 +0 0.0482 +0 0.0500 +0 0.0954 +0 0.0611 +0 0.0423 +0 0.1070 +0 0.1018 +0 0.0651 +0 0.0493 +0 0.1547 +0 0.1524 +0 0.0646 +0 0.0592 +0 0.0925 +0 0.0545 +0 0.2198 +0 0.0353 +0 0.1107 +0 0.0711 +0 0.0861 +0 0.7166 +0 0.0681 +0 0.1408 +0 0.4277 +0 0.2031 +0 0.7384 +0 0.1110 +0 0.0890 +0 0.0614 +1 0.7644 +0 0.0995 +0 0.0891 +0 0.0902 +0 0.0809 +0 0.1086 +0 0.5434 +0 0.0447 +0 0.1125 +0 0.0504 +0 0.0950 +0 0.0784 +0 0.7307 +0 0.0823 +0 0.2370 +0 0.1442 +0 0.0868 +0 0.1360 +0 0.0833 +0 0.1013 +0 0.0606 +0 0.0531 +0 0.0621 +0 0.0645 +0 0.1072 +0 0.2931 +0 0.2386 +0 0.0396 +0 0.1393 +0 0.1335 +0 0.0792 +0 0.3925 +0 0.1739 +0 0.1019 +0 0.1499 +0 0.0881 +0 0.3198 +0 0.1283 +0 0.1305 +0 0.7467 +0 0.0713 +0 0.0436 +0 0.4495 +0 0.0820 +0 0.2403 +0 0.0991 +0 0.0706 +0 0.3990 +0 0.0724 +0 0.1669 +0 0.1779 +0 0.1019 +0 0.0668 +0 0.1248 +0 0.4569 +0 0.0378 +0 0.1962 +0 0.0607 +0 0.0947 +0 0.1496 +0 0.0387 +0 0.1648 +0 0.2254 +0 0.1639 +0 0.0843 +0 0.0994 +0 0.2093 +0 0.2133 +0 0.2408 +0 0.1259 +0 0.1629 +0 0.2552 +0 0.1051 +0 0.1022 +0 0.0712 +0 0.0556 +0 0.1764 +0 0.1324 +0 0.1208 +0 0.1942 +0 0.2050 +0 0.1444 +0 0.0655 +0 0.0700 +0 0.0356 +0 0.1876 +0 0.0551 +0 0.7060 +0 0.0746 +0 0.1110 +0 0.1146 +0 0.1019 +0 0.1995 +0 0.1485 +0 0.0321 +0 0.0572 +0 0.0809 +0 0.0905 +0 0.1657 +0 0.1773 +0 0.0650 +0 0.1133 +0 0.1671 +0 0.0758 +1 0.7533 +0 0.0388 +0 0.0486 +0 0.0350 +0 0.0982 +0 0.0545 +0 0.1968 +0 0.1340 +0 0.5814 +0 0.0531 +0 0.1200 +0 0.1381 +0 0.4447 +0 0.1995 +0 0.0522 +0 0.0862 +0 0.5262 +0 0.1259 +0 0.0635 +0 0.0646 +0 0.2345 +0 0.1135 +0 0.1147 +0 0.1088 +0 0.1449 +0 0.0704 +0 0.0668 +0 0.1174 +0 0.0920 +0 0.1431 +0 0.0797 +0 0.1758 +0 0.0534 +0 0.0779 +0 0.0442 +0 0.0380 +0 0.1785 +0 0.1821 +0 0.1771 +0 0.1957 +0 0.0859 +0 0.1722 +0 0.0945 +0 0.0593 +0 0.0478 +0 0.4992 +0 0.1085 +0 0.0738 +0 0.0836 +0 0.1059 +0 0.0716 +0 0.1421 +0 0.1356 +0 0.2008 +0 0.2339 +0 0.0990 +0 0.1199 +0 0.1060 +0 0.1353 +0 0.1804 +0 0.1412 +0 0.1938 +0 0.1106 +0 0.0370 +0 0.0874 +0 0.0807 +0 0.1653 +0 0.0870 +0 0.0595 +0 0.0927 +0 0.3094 +0 0.0692 +0 0.0987 +0 0.3041 +0 0.0839 +0 0.1658 +0 0.0858 +0 0.1505 +0 0.3698 +0 0.1574 +0 0.1253 +0 0.1247 +0 0.1501 +0 0.0945 +0 0.1107 +0 0.1346 +0 0.1735 +0 0.0986 +0 0.1292 +0 0.1269 +0 0.0825 +0 0.2262 +0 0.1290 +0 0.1203 +0 0.0494 +0 0.1558 +0 0.1180 +0 0.0972 +0 0.0527 +0 0.0807 +0 0.0643 +0 0.1354 +0 0.1627 +0 0.0901 +0 0.0850 +0 0.0565 +0 0.0598 +0 0.1451 +0 0.1751 +0 0.1016 +0 0.1397 +0 0.1072 +0 0.2899 +0 0.1506 +0 0.0768 +0 0.2416 +0 0.1321 +0 0.0719 +0 0.0455 +0 0.1753 +0 0.0683 +0 0.0447 +0 0.0614 +0 0.0843 +0 0.3353 +0 0.1073 +0 0.7361 +0 0.0745 +0 0.0729 +0 0.0580 +0 0.0702 +0 0.1992 +0 0.0850 +0 0.0993 +0 0.0728 +0 0.1948 +0 0.2390 +0 0.0758 +0 0.0539 +0 0.0484 +0 0.1291 +0 0.1767 +0 0.0329 +0 0.1013 +0 0.0817 +0 0.1247 +0 0.0797 +0 0.1319 +0 0.1170 +0 0.1253 +0 0.0625 +0 0.3419 +0 0.0519 +0 0.0636 +0 0.0911 +0 0.4366 +0 0.0967 +0 0.0714 +0 0.1001 +0 0.0363 +0 0.0866 +0 0.0944 +1 0.7675 +0 0.0645 +0 0.0382 +0 0.1811 +0 0.4571 +0 0.0507 +0 0.1413 +0 0.0628 +1 0.8005 +0 0.1669 +0 0.1066 +0 0.0635 +0 0.6651 +0 0.1404 +0 0.4746 +0 0.1536 +0 0.1826 +0 0.2176 +0 0.1501 +0 0.1339 +0 0.1086 +0 0.0620 +0 0.1082 +1 0.8235 +0 0.2722 +0 0.2614 +0 0.2302 +0 0.1471 +0 0.1020 +0 0.0613 +0 0.1561 +0 0.0945 +0 0.5621 +0 0.0838 +0 0.1753 +0 0.0997 +0 0.1116 +0 0.0704 +0 0.7153 +0 0.1363 +0 0.1075 +0 0.0914 +0 0.1497 +0 0.3004 +0 0.0622 +0 0.0776 +1 0.7758 +0 0.0771 +0 0.1127 +0 0.1541 +0 0.2085 +0 0.2014 +0 0.0830 +0 0.1106 +0 0.1628 +1 0.7966 +0 0.0927 +0 0.1076 +0 0.1562 +0 0.1068 +0 0.7183 +0 0.6806 +0 0.1859 +0 0.1103 +0 0.1183 +0 0.1979 +0 0.1025 +0 0.1360 +0 0.0905 +0 0.1780 +0 0.0767 +0 0.0938 +0 0.0879 +0 0.2209 +0 0.0696 +0 0.1435 +0 0.0922 +0 0.1963 +0 0.0391 +0 0.1351 +0 0.0633 +0 0.4163 +0 0.6625 +0 0.0787 +0 0.1043 +0 0.1186 +0 0.0782 +0 0.1104 +0 0.0498 +0 0.0695 +0 0.1106 +0 0.0803 +0 0.0825 +0 0.1203 +0 0.0817 +0 0.1312 +0 0.0755 +0 0.2821 +1 0.7934 +0 0.3423 +0 0.0958 +0 0.1637 +0 0.1667 +0 0.0795 +0 0.0771 +0 0.1709 +0 0.2166 +0 0.1571 +0 0.1220 +0 0.0823 +0 0.0677 +0 0.1165 +0 0.1828 +0 0.0840 +0 0.0825 +0 0.0644 +0 0.0934 +0 0.1060 +0 0.2611 +0 0.1231 +0 0.0528 +0 0.2668 +0 0.1497 +0 0.0675 +0 0.1504 +0 0.1237 +0 0.2728 +0 0.1288 +0 0.1369 +0 0.1544 +0 0.1462 +0 0.0922 +0 0.3180 +0 0.0313 +0 0.0457 +0 0.1093 +0 0.0918 +0 0.0461 +0 0.3361 +0 0.0394 +0 0.1468 +0 0.0457 +0 0.0629 +0 0.1503 +0 0.1057 +0 0.0329 +0 0.1023 +0 0.1694 +0 0.1933 +0 0.1849 +0 0.2255 +0 0.0643 +0 0.1093 +0 0.0529 +0 0.0831 +0 0.2796 +0 0.1428 +0 0.0608 +0 0.0817 +0 0.0510 +0 0.0425 +0 0.6007 +0 0.0978 +0 0.1098 +0 0.0889 +0 0.3147 +0 0.7205 +0 0.1747 +0 0.0738 +0 0.1248 +0 0.1170 +0 0.3208 +0 0.1128 +0 0.2203 +0 0.0804 +0 0.0730 +0 0.1126 +0 0.0598 +0 0.1376 +0 0.0570 +0 0.1162 +0 0.0492 +0 0.0406 +0 0.1139 +0 0.1237 +0 0.1666 +0 0.1154 +0 0.2261 +0 0.0812 +0 0.0975 +0 0.1265 +0 0.1026 +0 0.1243 +0 0.0556 +0 0.1740 +1 0.8347 +0 0.1781 +0 0.0897 +1 0.8590 +0 0.0661 +0 0.0720 +0 0.0896 +0 0.1592 +0 0.1344 +0 0.1955 +0 0.4438 +0 0.0660 +0 0.1019 +0 0.2175 +0 0.1076 +0 0.2173 +0 0.1331 +0 0.2962 +0 0.0778 +0 0.0786 +0 0.0473 +0 0.0360 +0 0.0481 +0 0.0446 +0 0.1154 +1 0.8005 +0 0.1176 +0 0.1041 +0 0.0505 +0 0.0948 +0 0.0722 +0 0.0543 +0 0.2441 +0 0.1501 +0 0.0636 +0 0.0948 +0 0.0931 +0 0.5409 +0 0.1275 +0 0.0711 +0 0.0748 +0 0.0312 +0 0.1325 +0 0.0804 +0 0.1153 +0 0.2115 +0 0.1157 +0 0.0470 +0 0.0737 +0 0.0872 +0 0.1293 +0 0.0698 +0 0.3698 +0 0.0710 +0 0.0797 +0 0.0947 +0 0.1282 +0 0.0912 +0 0.0690 +0 0.1372 +0 0.0631 +0 0.0475 +0 0.0675 +0 0.3688 +0 0.2167 +0 0.1580 +0 0.5480 +0 0.1640 +1 0.8571 +0 0.0424 +0 0.1260 +0 0.1612 +0 0.0576 +0 0.1723 +0 0.0514 +0 0.0752 +0 0.0583 +0 0.1065 +0 0.0842 +0 0.1372 +0 0.0995 +0 0.7402 +0 0.6950 +0 0.0976 +0 0.0547 +0 0.0848 +0 0.2539 +0 0.1108 +0 0.4911 +0 0.0932 +0 0.1341 +0 0.0435 +0 0.7236 +0 0.1239 +0 0.2176 +0 0.2213 +0 0.0669 +0 0.0887 +0 0.1516 +0 0.1390 +0 0.2457 +0 0.1901 +0 0.1673 +0 0.1532 +0 0.0512 +0 0.0889 +0 0.1618 +1 0.8133 +0 0.1778 +0 0.0623 +0 0.0505 +0 0.0658 +0 0.0699 +0 0.0318 +0 0.2284 +0 0.2145 +0 0.1090 +0 0.1575 +0 0.0452 +0 0.1214 +0 0.0653 +0 0.1782 +0 0.1163 +0 0.0329 +0 0.1178 +0 0.1816 +0 0.1067 +0 0.0865 +0 0.0638 +0 0.2002 +0 0.0800 +0 0.0376 +0 0.1668 +0 0.0654 +0 0.0619 +0 0.5081 +0 0.2246 +0 0.0800 +0 0.3003 +0 0.1195 +0 0.1470 +0 0.0748 +0 0.1648 +0 0.0435 +0 0.1527 +0 0.6632 +0 0.0483 +0 0.1001 +0 0.1093 +1 0.8040 +0 0.5149 +0 0.0591 +0 0.0770 +0 0.0644 +0 0.1882 +0 0.1370 +0 0.1484 +0 0.0572 +0 0.0612 +0 0.1435 +0 0.0597 +0 0.1154 +0 0.0688 +0 0.0981 +0 0.4708 +0 0.0914 +0 0.2236 +0 0.1216 +0 0.1430 +0 0.0883 +0 0.0363 +0 0.0859 +0 0.0625 +0 0.0562 +0 0.1628 +0 0.1302 +0 0.1434 +0 0.0623 +0 0.3333 +0 0.4339 +0 0.0809 +0 0.1473 +0 0.0455 +0 0.1280 +0 0.0750 +0 0.0766 +0 0.0976 +0 0.0686 +0 0.1483 +0 0.0760 +0 0.1421 +0 0.1218 +0 0.1578 +0 0.0439 +0 0.0814 +0 0.1578 +0 0.5635 +0 0.1267 +0 0.1293 +0 0.0991 +0 0.3615 +0 0.1127 +0 0.1743 +0 0.1007 +0 0.0703 +0 0.1399 +0 0.1436 +0 0.2417 +0 0.3555 +0 0.1407 +0 0.1396 +0 0.0373 +0 0.1933 +0 0.1101 +0 0.0983 +0 0.0629 +0 0.0965 +0 0.0713 +0 0.1276 +0 0.0841 +0 0.0906 +0 0.1581 +0 0.0480 +1 0.8880 +0 0.2370 +0 0.0804 +0 0.1279 +0 0.0832 +0 0.1308 +0 0.0686 +0 0.0682 +0 0.3843 +0 0.2407 +0 0.1363 +0 0.1308 +0 0.2317 +0 0.0800 +0 0.1669 +0 0.2674 +0 0.0935 +0 0.1559 +0 0.0893 +0 0.2261 +0 0.0916 +0 0.1448 +0 0.1433 +0 0.0560 +0 0.1485 +0 0.1036 +0 0.2413 +0 0.0397 +0 0.1614 +0 0.0534 +0 0.1999 +0 0.1509 +0 0.1017 +0 0.2284 +0 0.0421 +0 0.2908 +0 0.2040 +0 0.1495 +0 0.0962 +0 0.0379 +0 0.1374 +0 0.0670 +0 0.2160 +1 0.8378 +0 0.5609 +0 0.2197 +0 0.0991 +0 0.2681 +0 0.1743 +0 0.1447 +0 0.1732 +0 0.0661 +0 0.1345 +0 0.1675 +0 0.1108 +0 0.0531 +0 0.1896 +0 0.1459 +0 0.0981 +0 0.0549 +0 0.0609 +0 0.0785 +0 0.1147 +0 0.1864 +0 0.1340 +0 0.1039 +0 0.0651 +0 0.0898 +0 0.1831 +0 0.0959 +0 0.0825 +0 0.0560 +0 0.0738 +0 0.0644 +0 0.0791 +0 0.1307 +0 0.0743 +0 0.0899 +0 0.0811 +0 0.1922 +0 0.2181 +0 0.0978 +0 0.0871 +0 0.0736 +0 0.6513 +0 0.0556 +0 0.2156 +0 0.1442 +0 0.2203 +0 0.1354 +0 0.0746 +0 0.0506 +0 0.6102 +0 0.1541 +0 0.1031 +0 0.0927 +0 0.2018 +0 0.0745 +0 0.0735 +0 0.0442 +0 0.2033 +0 0.0803 +0 0.1175 +0 0.1000 +0 0.1693 +0 0.3672 +0 0.1102 +1 0.7796 +0 0.0826 +0 0.0959 +0 0.0593 +0 0.0714 +0 0.1689 +0 0.3865 +0 0.0454 +0 0.0621 +0 0.0585 +0 0.0587 +0 0.0613 +0 0.1757 +0 0.0731 +0 0.0717 +0 0.1104 +0 0.0805 +0 0.2507 +0 0.1537 +0 0.0800 +0 0.0811 +0 0.1264 +0 0.1018 +0 0.0707 +0 0.1230 +0 0.1045 +0 0.4087 +0 0.2180 +0 0.4851 +0 0.0858 +0 0.1684 +0 0.1122 +0 0.0542 +0 0.1359 +0 0.1321 +0 0.4028 +0 0.1229 +0 0.0811 +0 0.1347 +0 0.7420 +0 0.0662 +0 0.0614 +0 0.2073 +0 0.1368 +0 0.1768 +0 0.0879 +0 0.0781 +0 0.0569 +0 0.0853 +0 0.2146 +0 0.0980 +0 0.0827 +0 0.3071 +0 0.0657 +0 0.1328 +0 0.0832 +0 0.2232 +0 0.0709 +0 0.5123 +0 0.1418 +0 0.0768 +0 0.0976 +0 0.0977 +0 0.0993 +0 0.2014 +0 0.0499 +0 0.2719 +0 0.1099 +0 0.0684 +0 0.1215 +0 0.0569 +0 0.4535 +0 0.1676 +0 0.0778 +0 0.0853 +0 0.0802 +0 0.0309 +0 0.0736 +0 0.0713 +0 0.0474 +0 0.0478 +0 0.0489 +0 0.0892 +0 0.0538 +0 0.0793 +0 0.0939 +0 0.2196 +0 0.2553 +0 0.7418 +0 0.2480 +0 0.1175 +0 0.0374 +0 0.1465 +0 0.0892 +0 0.3331 +0 0.0822 +0 0.0635 +0 0.1320 +0 0.0952 +0 0.1192 +0 0.1619 +0 0.1257 +0 0.2046 +0 0.0544 +0 0.1055 +0 0.1464 +0 0.0537 +0 0.0512 +0 0.1651 +0 0.0455 +0 0.1875 +0 0.1043 +0 0.2383 +0 0.0850 +0 0.0838 +0 0.1486 +0 0.0442 +0 0.0787 +0 0.0883 +0 0.1275 +0 0.0674 +0 0.0830 +0 0.1788 +0 0.0618 +0 0.0887 +0 0.1709 +0 0.1881 +0 0.0819 +0 0.6811 +0 0.1505 +0 0.1164 +0 0.4603 +0 0.7290 +0 0.1010 +0 0.0566 +0 0.1016 +0 0.0625 +0 0.0539 +0 0.1291 +0 0.1094 +0 0.0814 +0 0.1341 +0 0.3103 +0 0.0618 +0 0.0408 +0 0.1274 +0 0.0673 +0 0.3944 +0 0.0961 +0 0.2157 +0 0.0659 +0 0.0944 +0 0.1496 +0 0.0745 +0 0.0421 +0 0.0764 +0 0.3818 +0 0.0793 +0 0.1499 +0 0.0988 +0 0.1329 +0 0.0835 +0 0.1388 +0 0.1102 +0 0.0937 +0 0.1635 +0 0.6206 +0 0.0476 +0 0.0365 +0 0.1015 +0 0.1718 +0 0.0878 +0 0.1614 +0 0.1371 +0 0.2194 +0 0.0686 +0 0.0918 +0 0.0517 +0 0.0599 +0 0.1206 +0 0.0711 +0 0.1282 +0 0.0975 +0 0.3871 +0 0.1365 +0 0.1818 +0 0.0784 +0 0.1657 +0 0.0544 +0 0.0539 +0 0.0362 +0 0.0930 +0 0.2649 +0 0.1653 +0 0.0975 +0 0.1308 +0 0.0494 +0 0.1076 +0 0.1905 +0 0.2285 +0 0.1333 +0 0.0627 +0 0.0997 +0 0.0507 +0 0.0640 +0 0.0998 +0 0.3460 +0 0.0648 +0 0.2168 +0 0.1503 +0 0.0656 +0 0.0398 +0 0.0855 +0 0.5726 +0 0.0533 +0 0.0618 +0 0.0895 +0 0.1117 +0 0.0384 +0 0.0815 +0 0.0678 +0 0.2202 +0 0.5534 +0 0.0339 +0 0.0698 +0 0.1397 +0 0.0531 +0 0.0543 +0 0.0479 +0 0.1700 +0 0.2613 +0 0.0729 +0 0.0606 +0 0.1076 +0 0.0674 +0 0.0703 +0 0.4311 +0 0.0979 +0 0.0677 +0 0.1415 +0 0.1449 +0 0.1122 +0 0.0640 +0 0.1186 +0 0.2947 +0 0.0714 +0 0.0797 +0 0.3847 +0 0.1171 +0 0.2622 +0 0.1820 +0 0.1059 +0 0.1034 +0 0.1229 +0 0.1811 +0 0.0773 +0 0.0754 +0 0.5910 +0 0.1715 +0 0.0653 +0 0.0807 +0 0.1854 +0 0.0880 +0 0.0540 +0 0.1748 +0 0.0623 +0 0.1165 +0 0.0557 +0 0.0466 +0 0.2777 +0 0.1328 +0 0.2878 +0 0.2754 +0 0.1759 +0 0.1482 +0 0.3699 +0 0.0544 +0 0.0560 +0 0.0760 +0 0.0521 +0 0.0980 +0 0.1006 +0 0.0821 +0 0.1740 +0 0.0672 +1 0.7766 +0 0.0901 +0 0.0566 +0 0.0746 +0 0.0504 +0 0.1078 +0 0.1101 +0 0.2946 +0 0.2281 +0 0.2883 +0 0.1521 +0 0.0572 +0 0.1767 +0 0.2293 +0 0.1394 +0 0.0632 +0 0.0531 +0 0.1590 +0 0.1747 +0 0.0444 +0 0.0552 +0 0.1623 +0 0.2175 +0 0.1165 +0 0.0460 +0 0.1605 +0 0.0420 +0 0.2410 +0 0.0966 +0 0.1038 +0 0.1155 +0 0.1357 +0 0.0551 +0 0.0916 +0 0.2090 +0 0.1828 +0 0.1946 +0 0.1264 +0 0.1123 +0 0.0605 +0 0.0692 +0 0.1298 +0 0.1203 +0 0.0868 +0 0.1913 +0 0.0798 +0 0.0444 +0 0.1067 +0 0.2949 +0 0.0814 +0 0.1342 +0 0.2000 +0 0.0710 +0 0.1947 +0 0.1125 +0 0.0392 +0 0.0603 +0 0.0999 +0 0.0407 +0 0.0477 +0 0.0951 +1 0.8515 +0 0.1392 +0 0.1016 +0 0.0927 +0 0.1201 +0 0.0447 +0 0.3525 +0 0.0569 +0 0.0818 +0 0.2423 +0 0.0998 +0 0.0693 +0 0.1062 +0 0.1100 +0 0.1346 +0 0.0472 +0 0.0591 +0 0.0767 +0 0.1181 +0 0.1279 +0 0.0667 +0 0.1245 +0 0.0917 +0 0.6638 +0 0.0890 +0 0.0717 +0 0.1994 +0 0.0921 +0 0.0412 +0 0.1046 +0 0.1024 +0 0.1250 +0 0.0867 +0 0.0436 +0 0.0675 +0 0.2747 +0 0.0413 +0 0.1733 +0 0.1145 +0 0.0707 +1 0.8631 +0 0.0649 +0 0.1150 +0 0.0956 +0 0.1960 +0 0.0844 +0 0.3801 +0 0.4059 +0 0.1639 +0 0.2033 +0 0.0947 +0 0.0663 +0 0.1261 +0 0.1910 +0 0.1461 +0 0.0954 +0 0.0509 +0 0.0539 +0 0.0858 +0 0.0543 +0 0.0914 +0 0.2237 +0 0.0995 +0 0.0602 +0 0.1547 +0 0.0783 +0 0.0973 +0 0.2786 +0 0.1020 +0 0.0888 +0 0.2919 +0 0.0378 +0 0.0409 +0 0.1026 +0 0.1897 +0 0.0968 +0 0.0516 +0 0.0469 +0 0.1890 +0 0.1453 +0 0.2080 +0 0.0671 +0 0.0516 +0 0.1653 +0 0.2384 +0 0.6981 +0 0.2249 +0 0.0841 +0 0.1044 +0 0.2820 +0 0.1058 +0 0.0656 +0 0.0317 +0 0.0523 +0 0.1087 +0 0.2646 +0 0.2606 +0 0.1120 +0 0.1019 +0 0.0959 +0 0.1082 +0 0.0469 +0 0.0599 +0 0.3248 +0 0.3299 +0 0.0765 +0 0.1192 +0 0.3548 +0 0.0811 +1 0.8589 +0 0.2512 +0 0.1488 +0 0.2001 +0 0.1530 +0 0.0404 +0 0.3038 +0 0.1241 +0 0.3349 +0 0.0374 +0 0.1132 +0 0.7245 +0 0.0858 +0 0.1083 +0 0.0509 +0 0.0965 +0 0.1175 +0 0.2693 +0 0.0891 +0 0.1847 +0 0.0862 +0 0.0663 +0 0.2961 +0 0.5455 +0 0.1373 +0 0.1115 +0 0.1533 +0 0.1320 +0 0.1643 +0 0.0694 +0 0.1120 +0 0.0640 +0 0.2708 +0 0.0717 +0 0.0690 +0 0.0748 +0 0.0808 +0 0.0818 +0 0.1487 +0 0.1069 +0 0.0322 +0 0.1125 +0 0.0618 +0 0.0955 +0 0.2784 +0 0.1264 +0 0.0507 +0 0.2054 +0 0.0799 +0 0.1939 +0 0.0481 +0 0.0559 +0 0.4947 +0 0.0922 +0 0.3186 +0 0.0580 +0 0.0761 +0 0.1348 +0 0.1006 +0 0.0473 +0 0.1444 +0 0.2471 +0 0.2218 +0 0.0637 +0 0.2187 +0 0.2247 +0 0.0849 +0 0.0563 +0 0.1138 +0 0.0767 +0 0.0727 +0 0.2728 +0 0.1461 +0 0.2136 +0 0.1911 +0 0.1976 +0 0.0541 +0 0.1613 +0 0.1947 +0 0.0747 +0 0.0771 +0 0.0616 +0 0.0563 +0 0.1205 +0 0.1137 +0 0.0656 +0 0.1920 +0 0.1003 +0 0.0955 +0 0.0842 +0 0.0555 +0 0.0986 +0 0.0793 +0 0.6963 +0 0.1580 +0 0.3923 +0 0.0878 +0 0.0619 +0 0.2562 +0 0.2558 +0 0.1804 +0 0.2808 +0 0.0989 +0 0.0432 +0 0.1163 +0 0.1195 +0 0.0560 +0 0.0685 +0 0.1153 +0 0.1374 +0 0.1162 +0 0.1231 +0 0.0698 +0 0.0750 +0 0.2637 +0 0.1117 +0 0.1179 +0 0.2514 +0 0.1047 +0 0.2138 +0 0.2076 +0 0.0798 +0 0.2274 +0 0.3640 +0 0.0659 +0 0.3050 +0 0.1478 +0 0.2471 +0 0.1964 +0 0.2741 +0 0.0427 +0 0.2626 +0 0.1746 +0 0.0774 +0 0.1634 +0 0.1951 +0 0.1144 +0 0.1087 +0 0.0923 +0 0.0502 +0 0.1265 +0 0.6517 +0 0.1669 +0 0.0691 +0 0.0519 +0 0.0933 +0 0.2515 +0 0.0515 +0 0.0334 +1 0.7527 +0 0.0443 +0 0.0569 +0 0.0699 +0 0.2183 +0 0.2553 +0 0.0864 +0 0.1089 +0 0.0404 +0 0.0559 +0 0.1576 +0 0.0670 +0 0.0610 +0 0.1817 +0 0.0529 +0 0.1076 +0 0.0647 +0 0.1282 +0 0.1071 +0 0.2975 +0 0.2264 +0 0.0807 +0 0.3607 +0 0.0686 +0 0.1479 +0 0.1475 +0 0.0598 +0 0.1388 +0 0.1407 +0 0.2247 +0 0.0672 +0 0.1132 +0 0.1081 +0 0.2419 +0 0.0756 +0 0.6209 +0 0.0981 +0 0.3452 +0 0.1503 +0 0.0949 +0 0.0584 +0 0.1159 +0 0.1554 +0 0.5575 +0 0.1126 +0 0.0542 +1 0.7582 +0 0.1422 +0 0.4076 +0 0.2266 +0 0.1637 +0 0.3264 +0 0.0673 +0 0.0502 +0 0.0831 +0 0.0761 +0 0.0749 +0 0.1057 +0 0.1233 +0 0.0476 +0 0.2496 +0 0.1045 +0 0.1100 +0 0.1001 +0 0.0851 +0 0.1810 +0 0.0911 +0 0.1111 +0 0.0425 +0 0.2404 +0 0.0912 +0 0.1355 +0 0.0548 +0 0.0491 +0 0.0892 +0 0.1299 +0 0.1935 +0 0.0507 +0 0.1080 +0 0.0879 +0 0.0793 +0 0.0820 +0 0.0528 +0 0.4617 +0 0.0778 +0 0.1610 +0 0.2031 +0 0.1743 +0 0.1009 +0 0.2116 +0 0.2102 +0 0.1762 +0 0.0876 +0 0.1082 +0 0.2312 +0 0.1240 +1 0.7832 +0 0.1222 +0 0.1892 +0 0.1411 +0 0.1075 +0 0.1100 +0 0.0764 +0 0.0668 +1 0.8615 +0 0.0833 +0 0.0889 +0 0.1244 +0 0.0660 +0 0.2745 +0 0.1807 +0 0.1115 +0 0.0719 +0 0.3452 +0 0.1010 +0 0.2543 +0 0.0588 +0 0.2409 +0 0.1210 +0 0.1915 +0 0.1701 +1 0.8601 +0 0.1539 +0 0.0736 +0 0.1256 +0 0.0457 +0 0.0839 +0 0.0779 +0 0.1999 +0 0.0879 +0 0.0440 +0 0.1583 +0 0.2426 +0 0.1267 +0 0.1130 +0 0.0649 +0 0.0858 +0 0.1735 +0 0.0754 +0 0.1341 +0 0.1463 +0 0.0837 +0 0.1484 +0 0.0800 +0 0.1414 +0 0.1834 +0 0.0588 +0 0.0390 +0 0.0642 +0 0.1390 +0 0.0576 +0 0.0407 +0 0.1278 +0 0.1503 +0 0.0652 +0 0.1680 +0 0.1686 +0 0.1138 +0 0.1791 +0 0.0977 +0 0.2149 +0 0.0623 +0 0.0882 +0 0.1118 +0 0.0966 +0 0.0950 +0 0.1025 +0 0.1223 +0 0.0664 +0 0.3108 +0 0.5225 +0 0.1230 +0 0.0693 +0 0.1390 +0 0.0833 +0 0.0980 +0 0.1875 +1 0.7853 +0 0.1111 +0 0.1405 +0 0.0433 +0 0.1151 +0 0.1175 +0 0.2685 +0 0.0669 +0 0.0538 +0 0.0784 +0 0.1155 +0 0.2744 +0 0.1825 +0 0.0981 +0 0.1254 +0 0.1470 +0 0.0975 +0 0.2337 +0 0.0805 +0 0.0990 +0 0.0833 +0 0.0892 +0 0.0435 +0 0.0412 +0 0.1380 +0 0.0605 +0 0.0530 +0 0.1204 +0 0.6902 +0 0.1323 +0 0.2214 +0 0.1250 +0 0.1194 +0 0.1125 +0 0.0469 +0 0.0872 +0 0.0719 +0 0.0810 +0 0.0539 +0 0.0926 +0 0.0553 +0 0.0962 +0 0.1844 +0 0.7162 +0 0.1002 +0 0.0627 +0 0.0701 +0 0.1921 +0 0.0726 +0 0.1756 +0 0.1127 +0 0.0750 +0 0.1854 +0 0.1041 +0 0.6933 +0 0.1233 +0 0.0470 +0 0.0579 +0 0.0668 +0 0.2959 +0 0.0878 +0 0.0319 +0 0.0522 +0 0.1388 +0 0.5925 +0 0.2657 +0 0.0633 +0 0.0789 +0 0.0887 +0 0.2420 +0 0.3412 +0 0.0440 +0 0.1840 +0 0.1605 +0 0.0762 +0 0.1185 +0 0.0826 +0 0.1025 +0 0.2138 +0 0.5277 +0 0.2682 +0 0.0355 +0 0.0649 +0 0.3746 +0 0.1742 +0 0.1079 +0 0.1000 +0 0.2496 +0 0.4421 +0 0.0888 +0 0.1236 +0 0.5457 +0 0.0829 +0 0.4247 +0 0.0493 +0 0.7277 +0 0.0896 +0 0.0679 +0 0.1323 +0 0.0512 +0 0.0411 +0 0.3269 +0 0.2221 +0 0.2102 +0 0.1309 +0 0.0873 +0 0.0401 +0 0.5628 +0 0.0447 +0 0.1136 +0 0.0765 +0 0.1614 +0 0.0852 +0 0.1119 +0 0.2303 +0 0.1056 +0 0.0454 +0 0.1591 +0 0.6111 +0 0.2332 +0 0.0868 +0 0.4908 +0 0.0871 +1 0.7692 +0 0.0422 +0 0.1187 +0 0.3406 +0 0.0897 +0 0.1144 +0 0.1601 +0 0.0842 +0 0.0620 +0 0.0848 +0 0.0895 +0 0.0549 +0 0.1106 +0 0.0689 +0 0.1175 +0 0.1225 +0 0.0890 +0 0.1156 +0 0.1180 +0 0.0843 +0 0.1114 +0 0.2136 +0 0.3817 +0 0.0839 +0 0.1348 +0 0.1308 +0 0.0854 +0 0.1779 +0 0.0697 +0 0.1238 +0 0.1136 +0 0.1599 +0 0.0915 +0 0.2473 +0 0.0856 +0 0.1302 +0 0.0800 +0 0.0395 +0 0.0939 +0 0.1750 +0 0.1292 +0 0.5280 +0 0.1590 +0 0.0505 +0 0.2127 +0 0.6510 +0 0.4001 +1 0.8575 +0 0.0488 +0 0.1830 +0 0.0565 +0 0.3357 +0 0.0964 +0 0.2399 +0 0.1003 +0 0.0973 +0 0.0714 +0 0.0722 +0 0.2851 +0 0.1704 +0 0.1643 +0 0.1674 +0 0.0521 +0 0.0376 +0 0.1457 +0 0.0773 +0 0.0737 +0 0.1076 +0 0.0836 +0 0.0911 +0 0.7215 +0 0.0655 +0 0.0723 +0 0.0914 +0 0.1235 +0 0.0924 +0 0.1890 +0 0.0737 +0 0.0713 +0 0.1747 +0 0.6413 +0 0.0630 +0 0.0978 +0 0.1034 +0 0.0590 +0 0.0416 +0 0.1847 +0 0.2290 +0 0.0553 +0 0.2239 +0 0.2285 +0 0.2238 +0 0.0682 +0 0.1458 +0 0.0853 +0 0.0629 +0 0.1941 +0 0.1067 +0 0.0979 +0 0.0982 +0 0.1361 +0 0.0784 +0 0.0702 +0 0.0598 +0 0.0976 +0 0.0951 +0 0.1217 +0 0.1946 +0 0.0594 +0 0.1581 +0 0.4897 +0 0.2934 +0 0.0867 +0 0.0649 +0 0.0717 +0 0.1141 +0 0.0674 +0 0.0994 +0 0.1412 +0 0.0871 +0 0.1583 +0 0.1546 +0 0.0941 +0 0.0979 +0 0.0638 +0 0.3691 +0 0.1435 +0 0.0616 +0 0.1222 +0 0.1160 +0 0.0616 +0 0.2619 +0 0.0493 +0 0.2902 +0 0.0783 +0 0.0995 +0 0.1429 +0 0.1279 +0 0.1735 +0 0.1149 +0 0.1325 +0 0.0768 +0 0.0414 +0 0.0999 +0 0.0646 +0 0.1322 +0 0.0518 +0 0.0950 +0 0.0835 +0 0.1060 +0 0.0702 +0 0.0899 +0 0.0462 +0 0.1191 +0 0.1948 +0 0.0364 +0 0.0478 +0 0.1376 +0 0.0954 +0 0.0878 +0 0.2068 +0 0.0504 +0 0.1446 +0 0.1843 +0 0.6154 +0 0.1276 +0 0.0562 +0 0.1315 +0 0.0744 +0 0.0523 +0 0.2139 +0 0.2400 +0 0.5693 +0 0.0706 +0 0.1606 +0 0.0524 +0 0.1222 +0 0.1396 +0 0.0652 +0 0.2375 +0 0.0375 +0 0.0397 +0 0.0452 +0 0.2055 +0 0.0451 +0 0.1898 +0 0.1258 +0 0.0539 +0 0.1086 +0 0.2679 +0 0.0745 +0 0.1307 +0 0.0642 +0 0.0620 +0 0.1266 +0 0.2295 +0 0.0580 +0 0.1120 +0 0.0915 +0 0.3736 +0 0.1579 +0 0.1843 +0 0.0705 +0 0.1930 +0 0.3764 +0 0.6154 +0 0.0416 +0 0.1824 +0 0.1141 +0 0.0608 +0 0.0813 +0 0.1641 +0 0.3459 +0 0.1265 +0 0.0780 +0 0.3946 +0 0.0585 +0 0.3308 +0 0.1312 +0 0.0661 +0 0.1529 +0 0.2169 +0 0.1226 +0 0.1836 +0 0.1414 +0 0.1316 +0 0.1239 +0 0.0946 +0 0.0702 +0 0.1283 +0 0.0480 +0 0.0882 +0 0.0834 +0 0.0944 +0 0.0720 +0 0.0946 +0 0.0557 +0 0.1310 +0 0.2535 +0 0.5531 +0 0.1894 +0 0.1661 +0 0.0581 +0 0.2461 +0 0.0531 +0 0.0599 +0 0.0532 +0 0.1691 +0 0.2085 +0 0.0729 +0 0.1782 +0 0.6462 +0 0.2551 +0 0.1083 +0 0.1954 +0 0.0715 +0 0.0671 +0 0.0995 +0 0.0413 +0 0.0392 +0 0.0511 +0 0.3185 +0 0.0977 +0 0.2016 +0 0.0615 +0 0.7480 +0 0.1724 +0 0.6485 +0 0.1322 +0 0.0590 +0 0.1164 +0 0.1036 +0 0.1990 +0 0.1141 +0 0.1327 +0 0.3293 +0 0.0899 +0 0.2254 +0 0.0573 +0 0.2023 +0 0.0593 +0 0.1587 +0 0.6736 +0 0.2192 +0 0.0774 +0 0.1585 +0 0.0810 +0 0.0731 +0 0.0424 +0 0.0781 +0 0.0770 +0 0.1875 +0 0.0481 +0 0.1321 +0 0.3195 +0 0.1712 +0 0.1502 +0 0.0838 +0 0.1605 +0 0.1737 +0 0.6444 +0 0.1365 +0 0.0589 +0 0.1358 +0 0.2000 +0 0.0618 +0 0.1107 +0 0.0845 +0 0.2867 +0 0.7048 +0 0.2359 +0 0.0805 +0 0.1031 +0 0.1068 +0 0.0981 +0 0.1418 +0 0.2850 +0 0.0420 +0 0.2434 +0 0.1561 +1 0.7955 +0 0.4395 +0 0.1672 +0 0.0596 +0 0.2005 +0 0.0848 +0 0.1343 +0 0.0691 +0 0.1391 +0 0.1323 +0 0.0839 +0 0.1393 +0 0.0450 +0 0.1122 +0 0.4068 +0 0.0760 +0 0.1671 +0 0.2414 +0 0.1331 +0 0.1113 +0 0.0584 +0 0.1152 +0 0.1333 +0 0.1219 +0 0.0514 +0 0.1280 +0 0.0868 +0 0.5275 +0 0.1025 +0 0.1060 +0 0.5065 +0 0.1357 +0 0.0410 +0 0.0650 +0 0.5616 +0 0.0409 +0 0.1728 +0 0.3002 +0 0.0884 +0 0.0630 +0 0.0740 +1 0.8792 +0 0.1129 +0 0.1468 +0 0.0572 +1 0.7765 +0 0.0800 +0 0.0540 +0 0.1266 +0 0.0924 +0 0.1476 +0 0.1283 +0 0.1176 +0 0.0702 +0 0.1147 +0 0.1677 +0 0.0782 +0 0.0587 +0 0.6418 +0 0.1278 +0 0.1402 +0 0.0880 +0 0.0395 +0 0.0400 +0 0.2088 +0 0.0607 +0 0.1282 +0 0.0790 +0 0.0565 +0 0.2382 +0 0.0383 +0 0.0660 +0 0.0464 +0 0.3868 +0 0.0990 +0 0.3026 +0 0.1361 +0 0.5602 +0 0.1719 +0 0.1073 +0 0.0878 +0 0.2425 +0 0.0796 +0 0.0791 +0 0.1083 +0 0.0852 +0 0.1541 +0 0.1192 +0 0.1071 +0 0.0813 +0 0.7083 +0 0.1626 +0 0.0674 +0 0.4500 +0 0.0598 +0 0.4020 +0 0.5911 +0 0.0707 +0 0.0816 +0 0.1665 +0 0.1211 +0 0.0355 +0 0.1036 +0 0.0983 +0 0.2582 +0 0.0456 +0 0.1168 +0 0.1046 +0 0.1423 +0 0.1932 +0 0.1168 +0 0.0796 +0 0.0887 +0 0.0623 +0 0.0508 +0 0.0892 +0 0.1154 +0 0.1124 +0 0.0688 +0 0.0501 +0 0.0932 +0 0.0443 +0 0.0836 +0 0.0814 +0 0.0378 +0 0.1125 +0 0.0751 +0 0.1231 +0 0.0667 +0 0.1165 +0 0.0342 +0 0.1068 +0 0.1633 +0 0.1201 +0 0.1760 +0 0.3189 +0 0.0569 +0 0.2398 +0 0.2189 +0 0.0886 +0 0.1767 +0 0.0925 +0 0.0670 +0 0.0629 +0 0.1763 +0 0.1118 +0 0.1032 +0 0.6545 +0 0.1594 +0 0.3475 +0 0.0932 +0 0.0545 +0 0.0982 +0 0.1104 +0 0.0802 +0 0.1362 +0 0.1380 +0 0.0666 +0 0.0725 +0 0.0660 +0 0.1436 +0 0.0647 +0 0.1322 +0 0.2911 +0 0.0831 +0 0.0654 +0 0.1574 +0 0.3569 +0 0.1255 +0 0.1043 +0 0.1700 +0 0.0533 +0 0.0945 +0 0.0769 +0 0.0645 +0 0.1725 +0 0.0636 +0 0.2519 +0 0.1884 +0 0.0667 +0 0.1195 +0 0.1069 +0 0.1541 +0 0.0541 +0 0.0371 +0 0.0484 +0 0.1182 +0 0.0861 +0 0.0769 +0 0.0478 +0 0.0940 +0 0.1150 +0 0.2375 +0 0.0491 +0 0.0509 +0 0.0968 +0 0.3779 +0 0.0665 +0 0.0448 +0 0.1138 +0 0.0541 +0 0.0669 +0 0.1574 +0 0.0556 +0 0.3172 +0 0.0410 +0 0.0388 +0 0.1644 +0 0.3172 +0 0.1070 +0 0.2033 +0 0.0799 +0 0.1132 +0 0.0842 +0 0.0903 +0 0.0830 +0 0.0963 +0 0.2063 +0 0.0548 +0 0.1722 +0 0.1444 +0 0.0638 +0 0.1223 +0 0.1248 +0 0.0518 +0 0.1622 +0 0.7314 +0 0.1092 +0 0.1014 +0 0.1047 +0 0.1320 +0 0.1533 +0 0.1092 +0 0.0967 +0 0.2783 +0 0.1304 +0 0.0777 +0 0.0844 +0 0.0494 +0 0.1343 +0 0.0635 +0 0.1268 +0 0.0910 +0 0.0567 +0 0.1134 +0 0.2140 +0 0.2128 +0 0.2005 +0 0.1514 +0 0.1774 +0 0.4861 +0 0.0963 +0 0.0779 +0 0.1153 +0 0.1859 +0 0.0756 +0 0.0841 +0 0.2790 +0 0.0424 +0 0.0850 +0 0.0848 +0 0.0382 +0 0.0288 +0 0.0636 +0 0.0887 +0 0.1186 +0 0.1336 +0 0.1005 +0 0.0839 +0 0.0999 +0 0.1633 +0 0.1500 +0 0.0415 +0 0.0605 +0 0.2132 +0 0.1787 +0 0.0571 +0 0.1173 +0 0.0552 +0 0.0970 +0 0.0792 +0 0.0542 +0 0.5135 +0 0.0738 +0 0.0431 +0 0.1071 +0 0.0630 +0 0.0787 +0 0.0640 +0 0.0487 +0 0.1035 +0 0.2119 +0 0.0918 +0 0.4497 +0 0.2455 +0 0.0788 +0 0.0837 +0 0.1259 +0 0.0525 +0 0.0901 +0 0.2197 +0 0.0903 +0 0.2262 +0 0.2089 +0 0.0464 +0 0.1627 +0 0.0707 +0 0.0574 +0 0.6291 +0 0.0586 +0 0.1459 +0 0.2628 +0 0.1972 +0 0.0867 +0 0.0894 +0 0.2522 +0 0.0804 +0 0.1138 +0 0.1481 +0 0.1274 +0 0.0652 +0 0.5980 +0 0.1769 +0 0.1323 +0 0.1134 +0 0.0956 +0 0.1124 +0 0.1193 +0 0.0723 +0 0.0480 +0 0.0678 +0 0.1465 +0 0.1355 +0 0.0954 +0 0.0875 +0 0.0949 +0 0.2645 +0 0.0620 +0 0.1117 +0 0.0426 +0 0.2307 +0 0.1919 +0 0.3710 +0 0.1019 +0 0.0377 +0 0.1375 +0 0.1165 +0 0.0322 +0 0.0798 +0 0.0929 +0 0.0739 +0 0.1885 +0 0.0938 +0 0.1025 +0 0.3399 +0 0.0557 +0 0.0635 +0 0.0547 +0 0.2096 +0 0.0844 +0 0.0695 +0 0.1223 +0 0.1040 +0 0.2085 +0 0.2444 +0 0.1045 +0 0.2432 +0 0.0884 +0 0.1236 +0 0.0998 +0 0.2407 +0 0.1162 +0 0.1003 +0 0.0903 +0 0.0884 +0 0.0893 +0 0.0943 +0 0.0449 +0 0.0652 +0 0.1625 +0 0.1255 +0 0.1171 +0 0.1373 +0 0.0722 +0 0.0369 +0 0.0586 +0 0.0745 +0 0.1008 +0 0.1906 +0 0.1019 +0 0.2284 +0 0.0564 +1 0.8359 +0 0.4683 +0 0.0653 +0 0.0498 +0 0.0736 +0 0.1366 +0 0.3202 +0 0.0657 +0 0.0945 +0 0.0936 +0 0.1438 +0 0.2073 +0 0.2259 +0 0.1624 +0 0.1128 +0 0.0838 +0 0.1374 +0 0.1808 +0 0.1427 +0 0.1131 +0 0.0856 +0 0.1551 +0 0.3213 +0 0.0933 +0 0.0856 +0 0.0993 +0 0.1049 +0 0.0887 +0 0.1382 +0 0.1860 +1 0.8537 +0 0.1100 +0 0.3440 +0 0.0900 +0 0.1214 +0 0.1414 +0 0.1297 +0 0.0741 +0 0.1218 +0 0.0652 +0 0.1676 +0 0.0830 +0 0.1142 +0 0.1123 +0 0.0714 +0 0.1411 +0 0.1726 +0 0.0492 +0 0.5544 +0 0.4933 +0 0.0894 +0 0.2848 +0 0.1299 +0 0.1070 +0 0.0840 +0 0.1227 +0 0.1335 +0 0.1752 +0 0.1350 +0 0.5195 +0 0.1277 +0 0.0925 +0 0.0987 +0 0.2281 +0 0.1316 +0 0.1073 +0 0.0789 +0 0.1670 +0 0.4658 +0 0.1508 +0 0.0667 +0 0.0495 +0 0.1285 +0 0.0955 +0 0.0558 +0 0.2801 +0 0.0433 +0 0.0829 +0 0.0978 +0 0.1169 +0 0.1222 +0 0.0496 +0 0.0827 +0 0.0703 +0 0.2193 +0 0.0808 +0 0.1000 +0 0.7270 +0 0.0687 +0 0.1159 +0 0.1615 +0 0.0770 +0 0.0786 +0 0.0679 +0 0.2106 +0 0.0692 +0 0.6551 +0 0.0782 +0 0.0833 +0 0.4836 +0 0.0750 +0 0.2985 +0 0.1058 +0 0.0745 +0 0.1266 +0 0.0943 +0 0.0782 +0 0.1413 +0 0.2619 +0 0.0521 +0 0.0587 +0 0.0741 +0 0.0821 +0 0.0620 +0 0.1035 +0 0.1136 +0 0.1161 +0 0.0425 +0 0.0539 +0 0.1411 +0 0.1584 +0 0.1156 +0 0.0638 +0 0.0736 +0 0.1320 +0 0.0444 +0 0.0739 +0 0.0483 +0 0.0824 +0 0.1293 +0 0.2813 +0 0.2265 +0 0.1068 +0 0.1034 +0 0.0677 +0 0.1773 +0 0.1230 +0 0.4031 +0 0.2334 +0 0.0999 +0 0.2182 +0 0.1187 +0 0.0921 +0 0.1949 +0 0.0894 +0 0.1323 +0 0.0695 +0 0.1902 +0 0.0518 +0 0.2037 +0 0.1105 +0 0.0754 +0 0.1066 +0 0.0369 +0 0.1031 +0 0.1974 +0 0.0726 +0 0.1878 +0 0.0591 +1 0.7869 +0 0.0787 +0 0.1013 +0 0.1354 +0 0.0683 +0 0.1410 +0 0.0962 +0 0.1609 +0 0.1095 +0 0.3024 +0 0.7437 +0 0.0852 +0 0.0718 +0 0.1420 +0 0.1690 +0 0.1225 +0 0.1391 +0 0.1099 +0 0.2278 +0 0.1817 +0 0.0971 +0 0.0338 +0 0.1261 +0 0.1775 +0 0.1656 +0 0.1353 +0 0.1677 +0 0.0610 +0 0.1595 +0 0.1777 +0 0.1108 +0 0.2394 +0 0.1597 +0 0.1079 +0 0.1253 +0 0.0479 +0 0.0719 +0 0.1269 +0 0.2306 +0 0.0938 +0 0.1175 +0 0.0607 +0 0.1324 +0 0.0932 +0 0.1203 +0 0.0635 +0 0.2224 +0 0.2716 +0 0.1612 +0 0.1784 +0 0.1610 +0 0.1309 +0 0.3660 +0 0.1555 +0 0.2745 +0 0.1656 +0 0.3492 +0 0.0774 +0 0.0728 +0 0.1694 +0 0.0426 +0 0.1833 +0 0.1182 +0 0.0345 +0 0.1325 +0 0.0806 +0 0.4061 +0 0.1311 +0 0.0867 +0 0.0592 +0 0.1232 +0 0.1262 +0 0.0812 +0 0.0862 +0 0.0625 +0 0.0338 +0 0.1050 +0 0.1847 +1 0.6956 +0 0.3079 +0 0.0684 +0 0.1389 +0 0.0820 +0 0.0884 +0 0.2535 +0 0.2285 +0 0.1557 +0 0.0788 +0 0.1298 +0 0.3844 +0 0.0494 +0 0.0476 +0 0.1734 +0 0.1380 +0 0.1102 +0 0.0729 +0 0.0700 +0 0.0892 +0 0.1823 +0 0.1095 +0 0.3465 +0 0.1048 +0 0.1715 +0 0.2503 +0 0.1102 +0 0.1025 +0 0.0870 +0 0.0988 +0 0.0850 +0 0.2920 +0 0.1877 +0 0.1949 +0 0.1674 +0 0.0725 +0 0.1082 +0 0.1023 +0 0.1402 +0 0.0725 +0 0.1344 +0 0.2676 +0 0.1138 +0 0.2239 +0 0.2320 +0 0.4267 +0 0.5058 +0 0.2366 +0 0.1420 +0 0.1582 +0 0.1781 +0 0.2919 +0 0.0614 +1 0.8065 +0 0.1945 +0 0.1423 +0 0.1964 +0 0.3369 +0 0.0505 +0 0.2783 +0 0.1025 +0 0.2200 +0 0.2334 +0 0.2376 +0 0.1725 +0 0.1270 +0 0.0748 +0 0.0813 +0 0.0631 +0 0.3376 +0 0.1333 +0 0.1899 +0 0.1553 +0 0.0991 +0 0.3859 +0 0.0929 +0 0.0399 +0 0.2113 +0 0.2275 +0 0.0818 +0 0.5304 +0 0.1012 +0 0.0880 +0 0.0710 +0 0.1290 +1 0.7616 +0 0.1805 +0 0.2755 +0 0.0778 +0 0.0620 +0 0.0752 +0 0.0468 +0 0.1431 +1 0.7687 +0 0.0816 +0 0.2305 +0 0.5517 +0 0.2149 +0 0.0316 +0 0.1255 +0 0.2170 +0 0.0627 +0 0.0873 +0 0.0934 +0 0.1865 +0 0.1988 +0 0.0709 +0 0.0859 +0 0.0650 +0 0.1549 +0 0.1412 +0 0.3202 +0 0.1003 +0 0.3125 +0 0.0819 +0 0.1634 +0 0.0839 +0 0.0822 +0 0.7075 +0 0.1617 +0 0.1057 +0 0.1310 +0 0.0822 +0 0.2048 +0 0.0582 +0 0.1941 +0 0.1536 +0 0.0457 +0 0.0805 +0 0.0684 +0 0.1088 +0 0.0714 +0 0.1670 +0 0.0949 +0 0.1985 +0 0.1547 +0 0.0918 +0 0.1450 +0 0.0767 +0 0.0505 +0 0.2028 +0 0.0659 +0 0.0886 +0 0.0920 +0 0.1657 +1 0.8512 +0 0.1397 +0 0.1259 +0 0.1777 +0 0.0780 +0 0.1422 +0 0.2780 +0 0.0374 +0 0.1365 +0 0.1332 +0 0.1971 +0 0.0958 +0 0.0573 +0 0.0993 +0 0.1217 +0 0.1042 +0 0.1188 +0 0.1456 +0 0.0738 +0 0.2515 +0 0.4254 +0 0.0784 +0 0.0514 +0 0.1865 +0 0.1161 +0 0.0462 +0 0.1811 +0 0.0832 +0 0.0671 +0 0.3292 +0 0.2560 +0 0.1569 +0 0.0679 +0 0.0716 +0 0.2365 +0 0.1753 +0 0.0785 +0 0.0796 +0 0.1327 +0 0.0473 +0 0.0926 +0 0.0986 +0 0.0665 +0 0.1189 +1 0.7708 +0 0.1914 +0 0.0941 +0 0.1296 +0 0.1606 +0 0.1087 +0 0.3376 +0 0.2095 +0 0.1317 +0 0.1084 +0 0.2250 +0 0.1302 +0 0.2155 +0 0.0649 +0 0.0517 +0 0.1532 +0 0.3061 +0 0.0675 +0 0.6437 +0 0.1369 +0 0.0939 +0 0.1464 +0 0.1601 +0 0.0538 +0 0.1529 +0 0.1117 +0 0.0918 +0 0.1371 +0 0.2149 +0 0.0445 +0 0.1777 +0 0.5080 +0 0.1432 +0 0.0900 +0 0.0994 +0 0.0836 +0 0.0781 +0 0.0598 +0 0.0841 +0 0.0405 +0 0.0693 +0 0.0511 +0 0.1357 +0 0.0765 +0 0.2256 +0 0.1082 +0 0.0620 +0 0.1405 +0 0.0654 +0 0.0612 +0 0.0506 +0 0.1190 +0 0.1597 +0 0.0776 +0 0.1145 +0 0.1019 +0 0.1268 +0 0.1388 +0 0.0839 +0 0.0726 +0 0.1322 +0 0.0923 +0 0.0727 +0 0.1827 +0 0.0814 +0 0.0934 +0 0.0773 +0 0.1047 +0 0.2119 +0 0.1223 +0 0.1153 +0 0.1755 +0 0.1110 +0 0.1119 +0 0.1608 +0 0.1527 +0 0.4640 +0 0.1838 +0 0.2030 +0 0.2851 +0 0.3081 +0 0.1236 +0 0.1975 +0 0.0757 +0 0.1518 +0 0.0944 +0 0.2151 +0 0.2194 +0 0.1005 +0 0.1562 +0 0.1203 +0 0.1723 +0 0.1644 +0 0.0668 +0 0.0932 +0 0.3856 +0 0.2108 +0 0.1160 +0 0.1782 +0 0.1488 +0 0.0638 +0 0.0855 +0 0.1269 +0 0.0969 +0 0.1354 +0 0.1826 +0 0.1168 +0 0.1077 +0 0.2067 +0 0.2145 +0 0.0947 +0 0.1605 +0 0.1032 +0 0.0685 +0 0.1146 +0 0.1102 +0 0.0694 +0 0.1201 +0 0.1029 +0 0.1155 +0 0.0915 +0 0.0770 +0 0.0641 +0 0.0917 +0 0.0683 +0 0.0629 +0 0.0969 +0 0.0621 +0 0.1523 +0 0.0883 +0 0.0576 +0 0.1196 +0 0.0967 +0 0.1156 +0 0.0826 +0 0.1430 +0 0.0801 +0 0.0544 +0 0.0645 +0 0.0725 +0 0.0809 +0 0.1578 +0 0.0607 +0 0.1771 +0 0.0618 +0 0.0438 +0 0.1041 +0 0.1253 +0 0.0446 +0 0.2283 +1 0.8646 +0 0.1117 +0 0.0824 +0 0.3127 +0 0.1688 +0 0.0756 +0 0.0843 +0 0.1286 +0 0.0716 +0 0.0897 +0 0.0755 +0 0.1289 +0 0.2422 +0 0.1372 +0 0.1004 +0 0.0903 +0 0.1301 +0 0.4162 +0 0.0506 +0 0.0884 +0 0.2037 +0 0.0725 +0 0.0990 +0 0.4590 +0 0.1229 +0 0.1194 +0 0.0506 +0 0.0781 +0 0.1753 +0 0.0485 +0 0.1368 +0 0.1242 +0 0.1330 +0 0.1034 +0 0.0606 +0 0.0705 +0 0.1493 +0 0.1519 +0 0.1503 +0 0.2006 +1 0.7728 +0 0.0528 +0 0.0509 +0 0.1055 +0 0.0885 +0 0.1214 +0 0.1973 +0 0.0618 +0 0.4267 +0 0.0573 +0 0.1118 +0 0.2077 +0 0.1091 +0 0.0988 +0 0.0705 +0 0.1443 +0 0.1189 +0 0.5515 +0 0.0424 +1 0.8273 +0 0.1104 +0 0.1714 +0 0.1486 +0 0.0896 +0 0.0577 +0 0.1579 +0 0.0551 +0 0.1101 +0 0.1110 +0 0.0913 +0 0.2312 +0 0.0818 +0 0.0865 +0 0.0883 +0 0.0452 +0 0.1570 +0 0.1481 +0 0.1146 +0 0.2740 +0 0.1311 +0 0.0622 +0 0.1062 +0 0.1074 +0 0.0615 +0 0.0797 +0 0.0906 +0 0.7415 +0 0.1316 +0 0.1043 +0 0.1389 +0 0.1637 +0 0.0647 +0 0.0982 +0 0.0750 +0 0.4885 +0 0.2079 +0 0.0565 +0 0.4816 +0 0.0806 +0 0.1449 +0 0.1253 +0 0.0748 +0 0.1342 +0 0.5747 +0 0.0741 +0 0.0815 +0 0.0757 +0 0.1966 +0 0.1213 +0 0.1791 +0 0.0878 +0 0.2873 +0 0.1058 +0 0.0767 +0 0.0420 +0 0.1024 +0 0.0542 +0 0.0530 +1 0.8068 +0 0.0523 +0 0.0824 +0 0.1216 +0 0.0513 +0 0.0714 +0 0.6126 +0 0.1279 +0 0.0762 +0 0.0887 +0 0.1579 +0 0.0814 +0 0.2915 +0 0.3852 +0 0.0597 +0 0.1294 +0 0.1130 +0 0.0392 +0 0.1564 +0 0.0601 +0 0.1669 +0 0.2282 +0 0.7435 +0 0.0952 +0 0.0724 +0 0.1249 +0 0.0927 +0 0.5465 +0 0.1905 +0 0.0649 +0 0.0545 +0 0.1887 +0 0.0535 +0 0.0833 +0 0.0554 +0 0.1042 +1 0.7603 +0 0.1330 +0 0.1176 +0 0.1463 +0 0.0880 +0 0.0772 +0 0.0420 +0 0.2958 +0 0.2264 +0 0.1092 +0 0.0864 +0 0.1806 +0 0.0511 +0 0.0610 +0 0.0796 +0 0.0713 +0 0.5061 +0 0.1455 +0 0.1774 +0 0.1778 +0 0.1523 +0 0.0787 +0 0.3114 +0 0.3168 +0 0.3322 +0 0.1421 +0 0.0783 +0 0.0473 +0 0.1286 +0 0.0990 +0 0.0507 +0 0.1450 +0 0.0654 +0 0.2930 +0 0.0968 +0 0.0795 +0 0.1370 +0 0.1137 +0 0.1991 +0 0.1373 +0 0.1346 +0 0.6703 +0 0.0793 +0 0.0508 +0 0.0620 +0 0.1214 +0 0.0416 +0 0.1278 +0 0.0777 +0 0.5588 +0 0.0366 +0 0.2077 +0 0.2576 +0 0.0710 +0 0.1026 +0 0.0848 +0 0.0953 +0 0.0701 +0 0.2608 +0 0.0558 +0 0.2301 +0 0.5105 +0 0.0560 +0 0.0999 +0 0.1887 +0 0.1663 +0 0.0882 +0 0.1575 +0 0.0891 +0 0.0574 +0 0.2489 +0 0.0735 +0 0.1099 +0 0.4067 +0 0.0692 +0 0.1435 +0 0.1036 +0 0.2699 +0 0.1583 +0 0.1858 +0 0.0850 +0 0.1440 +0 0.0948 +0 0.4392 +0 0.1163 +0 0.0532 +0 0.2991 +0 0.1017 +0 0.1685 +0 0.0708 +0 0.0716 +0 0.0916 +0 0.0574 +0 0.0395 +0 0.0653 +0 0.1082 +0 0.1019 +0 0.0547 +0 0.0917 +0 0.0655 +0 0.0881 +0 0.3989 +0 0.0776 +0 0.1603 +0 0.1012 +0 0.0784 +0 0.0921 +0 0.1307 +0 0.0499 +0 0.0428 +0 0.0385 +0 0.0784 +0 0.0948 +0 0.1931 +0 0.0835 +0 0.2549 +0 0.0906 +0 0.0829 +0 0.1515 +0 0.1927 +0 0.0398 +0 0.7006 +0 0.0391 +0 0.1037 +0 0.1496 +0 0.1579 +0 0.1690 +0 0.1241 +0 0.1002 +0 0.0882 +0 0.1324 +0 0.0507 +0 0.0550 +0 0.0896 +0 0.0779 +0 0.0501 +0 0.1598 +0 0.3098 +0 0.1382 +0 0.1289 +0 0.0451 +1 0.8167 +0 0.0792 +0 0.2376 +0 0.0464 +0 0.0479 +0 0.1530 +0 0.1510 +0 0.2103 +0 0.0779 +0 0.1255 +0 0.1011 +0 0.1086 +0 0.0867 +0 0.2743 +0 0.0630 +0 0.0420 +0 0.2875 +0 0.1541 +0 0.1645 +0 0.0822 +0 0.1472 +0 0.0733 +0 0.0619 +0 0.0524 +0 0.0694 +0 0.0370 +0 0.0614 +0 0.0696 +0 0.1659 +0 0.1079 +0 0.0530 +0 0.1147 +0 0.0740 +0 0.1055 +0 0.0870 +1 0.8593 +0 0.2266 +0 0.0547 +0 0.0658 +0 0.3208 +0 0.1577 +0 0.5809 +0 0.1283 +0 0.5776 +0 0.0901 +0 0.1258 +0 0.0856 +0 0.1920 +0 0.3144 +0 0.6941 +0 0.0932 +0 0.4851 +0 0.6777 +0 0.0943 +0 0.0722 +0 0.0586 +0 0.0520 +0 0.1036 +0 0.3396 +0 0.3652 +0 0.0728 +0 0.0800 +0 0.0516 +0 0.6633 +0 0.1298 +0 0.2238 +0 0.0468 +0 0.1051 +0 0.1864 +0 0.0935 +0 0.0801 +0 0.0419 +0 0.0559 +0 0.0525 +0 0.0745 +0 0.0972 +0 0.1211 +0 0.0487 +0 0.0640 +0 0.1173 +0 0.1562 +0 0.0965 +0 0.0465 +0 0.0322 +0 0.1076 +0 0.1359 +0 0.0956 +0 0.0907 +0 0.0871 +1 0.8295 +0 0.0646 +0 0.1809 +0 0.1364 +0 0.0539 +0 0.2507 +0 0.1446 +0 0.0612 +0 0.1401 +0 0.1184 +0 0.0805 +0 0.0801 +0 0.1212 +0 0.0743 +0 0.0840 +0 0.0834 +0 0.0570 +0 0.1052 +0 0.1413 +0 0.1540 +0 0.2895 +0 0.0491 +0 0.1628 +0 0.1828 +0 0.1083 +0 0.0466 +0 0.0759 +0 0.0772 +0 0.1943 +0 0.1137 +0 0.0740 +0 0.0579 +0 0.1768 +0 0.0434 +0 0.3531 +0 0.0705 +0 0.0761 +0 0.0814 +0 0.2085 +0 0.1349 +0 0.2030 +0 0.1223 +0 0.3952 +0 0.1500 +0 0.1913 +0 0.1359 +0 0.0793 +0 0.0817 +0 0.0535 +0 0.0477 +0 0.0891 +0 0.0910 +0 0.0710 +0 0.0681 +0 0.1956 +0 0.0781 +0 0.0842 +0 0.0838 +0 0.2341 +0 0.0925 +0 0.2271 +0 0.0885 +0 0.0740 +1 0.8424 +0 0.0673 +1 0.8243 +0 0.0762 +0 0.1009 +0 0.1194 +0 0.0913 +0 0.1274 +0 0.3212 +0 0.1252 +0 0.2034 +0 0.0767 +0 0.0827 +0 0.2104 +0 0.0953 +0 0.1208 +0 0.1038 +0 0.0754 +0 0.1013 +0 0.1727 +0 0.0776 +0 0.0632 +0 0.2811 +0 0.0457 +0 0.1830 +0 0.2552 +0 0.0831 +0 0.3329 +0 0.0565 +0 0.1315 +0 0.6230 +0 0.0776 +0 0.0977 +0 0.2606 +0 0.1073 +0 0.1169 +0 0.2253 +0 0.0889 +0 0.1385 +0 0.0517 +0 0.0568 +0 0.1210 +0 0.0916 +0 0.0802 +0 0.6163 +0 0.1207 +0 0.0678 +0 0.0687 +0 0.1327 +0 0.1090 +0 0.1347 +0 0.1035 +0 0.2525 +0 0.1062 +0 0.1821 +0 0.0900 +0 0.1222 +0 0.2126 +0 0.1410 +0 0.0445 +0 0.1818 +0 0.0893 +0 0.0505 +0 0.2903 +0 0.0442 +0 0.0948 +0 0.1056 +0 0.3378 +0 0.0719 +0 0.0457 +0 0.1148 +0 0.0670 +0 0.0928 +0 0.1400 +0 0.0880 +0 0.0853 +0 0.1078 +0 0.0593 +0 0.1004 +0 0.0753 +0 0.0638 +0 0.0940 +0 0.4252 +0 0.0472 +0 0.2188 +0 0.2694 +0 0.0975 +0 0.0811 +0 0.0400 +0 0.1021 +0 0.1382 +0 0.0907 +0 0.0489 +0 0.0696 +0 0.0553 +0 0.1780 +0 0.0894 +0 0.2014 +0 0.1163 +0 0.0483 +0 0.2235 +0 0.1047 +0 0.0774 +0 0.1115 +0 0.0431 +0 0.0656 +0 0.4487 +0 0.0748 +0 0.1470 +0 0.0808 +0 0.0848 +0 0.6139 +0 0.1563 +0 0.0932 +0 0.1663 +0 0.1652 +0 0.1857 +0 0.1831 +0 0.0437 +0 0.2414 +0 0.0935 +1 0.8062 +0 0.1042 +1 0.7712 +0 0.1069 +0 0.1483 +0 0.2358 +0 0.1408 +0 0.0868 +0 0.1173 +0 0.0670 +0 0.1538 +0 0.1874 +0 0.2313 +0 0.2154 +0 0.2199 +0 0.0858 +0 0.2361 +0 0.1979 +0 0.1889 +0 0.0713 +0 0.0679 +0 0.0818 +0 0.1534 +0 0.1386 +0 0.1698 +0 0.0761 +0 0.1659 +0 0.1487 +1 0.8509 +0 0.1121 +0 0.1079 +0 0.0895 +0 0.1115 +0 0.1406 +0 0.0560 +0 0.0478 +0 0.0864 +0 0.1127 +0 0.0594 +0 0.1784 +0 0.0869 +0 0.2371 +0 0.1090 +0 0.1096 +0 0.1253 +0 0.1223 +0 0.0456 +0 0.0418 +0 0.2644 +0 0.1354 +0 0.0596 +0 0.0841 +0 0.1617 +0 0.3034 +0 0.0661 +0 0.0884 +0 0.1405 +0 0.1149 +0 0.2020 +1 0.7553 +0 0.1418 +0 0.1459 +0 0.0707 +1 0.8105 +0 0.0879 +0 0.0673 +0 0.5297 +0 0.0766 +0 0.2136 +0 0.0566 +0 0.1233 +0 0.0678 +0 0.1531 +0 0.1091 +0 0.1049 +0 0.0866 +0 0.1011 +0 0.0691 +0 0.1407 +0 0.0556 +0 0.2215 +0 0.0552 +0 0.0691 +0 0.1261 +0 0.2014 +0 0.1389 +0 0.2334 +0 0.0956 +0 0.1091 +0 0.5847 +0 0.0679 +0 0.0463 +0 0.0846 +0 0.2019 +0 0.0758 +0 0.4424 +0 0.0839 +0 0.1018 +0 0.1159 +0 0.0602 +0 0.1722 +0 0.2575 +0 0.0657 +0 0.0930 +0 0.0838 +0 0.0637 +0 0.0648 +0 0.6164 +0 0.0967 +0 0.2798 +0 0.0513 +0 0.1272 +0 0.0768 +0 0.2207 +0 0.2225 +0 0.1619 +0 0.2184 +0 0.2519 +0 0.0824 +0 0.1001 +0 0.0787 +0 0.0518 +0 0.2507 +0 0.4744 +0 0.1574 +0 0.0741 +0 0.0840 +0 0.0722 +0 0.0689 +0 0.0722 +0 0.1234 +0 0.0430 +0 0.0827 +0 0.0976 +0 0.2703 +0 0.0776 +0 0.0747 +0 0.0653 +0 0.1213 +0 0.1638 +0 0.1316 +0 0.1225 +0 0.2293 +0 0.1133 +0 0.0441 +0 0.0574 +0 0.4832 +0 0.1363 +0 0.0609 +0 0.0544 +0 0.2064 +0 0.1251 +0 0.1673 +0 0.1165 +0 0.0726 +0 0.0541 +0 0.0924 +0 0.1001 +0 0.1030 +1 0.7581 +0 0.1135 +0 0.0433 +0 0.6176 +0 0.0591 +0 0.1477 +0 0.1857 +0 0.0382 +0 0.0902 +0 0.1266 +0 0.1028 +0 0.1622 +0 0.1113 +0 0.0669 +0 0.1195 +1 0.8041 +0 0.1096 +0 0.1440 +0 0.3672 +0 0.2640 +0 0.1051 +0 0.2518 +0 0.7145 +0 0.0311 +0 0.2583 +0 0.2743 +0 0.5905 +0 0.1836 +0 0.0701 +0 0.1287 +0 0.0980 +0 0.0767 +0 0.0692 +1 0.7827 +0 0.0568 +0 0.1747 +0 0.5571 +1 0.8490 +0 0.0880 +0 0.0557 +0 0.0415 +0 0.0894 +0 0.1332 +0 0.1796 +0 0.0738 +0 0.0847 +0 0.1182 +0 0.0896 +0 0.1260 +0 0.1476 +0 0.2218 +0 0.0818 +0 0.2252 +0 0.6226 +0 0.0465 +0 0.0427 +0 0.7077 +0 0.1485 +0 0.1961 +0 0.1226 +0 0.1393 +0 0.0466 +0 0.0785 +0 0.0764 +0 0.1036 +0 0.0850 +0 0.1262 +0 0.1076 +0 0.1701 +0 0.0768 +0 0.1212 +0 0.0401 +0 0.0928 +0 0.0968 +0 0.1379 +0 0.0875 +0 0.1618 +0 0.2322 +0 0.1439 +0 0.3334 +0 0.0791 +0 0.0954 +0 0.0475 +0 0.4107 +0 0.1846 +0 0.0644 +0 0.1063 +0 0.0417 +0 0.2874 +0 0.1313 +0 0.1170 +0 0.0662 +0 0.1046 +0 0.0962 +0 0.1803 +0 0.0547 +0 0.0865 +0 0.1589 +0 0.0745 +0 0.2471 +0 0.1009 +0 0.0702 +0 0.1025 +0 0.0777 +0 0.2477 +0 0.0873 +0 0.1181 +0 0.0633 +0 0.0439 +0 0.2101 +0 0.1211 +0 0.2194 +0 0.2073 +0 0.1399 +0 0.0782 +0 0.0803 +0 0.1187 +0 0.1923 +0 0.1361 +0 0.0378 +0 0.1049 +0 0.1382 +0 0.0732 +0 0.0783 +0 0.2770 +0 0.1426 +0 0.0715 +0 0.0373 +0 0.2261 +0 0.0444 +0 0.1688 +0 0.0952 +0 0.2626 +0 0.2096 +0 0.2797 +0 0.1216 +0 0.0680 +0 0.0495 +0 0.0533 +0 0.1457 +0 0.1004 +0 0.1432 +0 0.0747 +0 0.1305 +0 0.0829 +0 0.0805 +0 0.1382 +0 0.0630 +0 0.0526 +0 0.0653 +0 0.1102 +0 0.1319 +0 0.2045 +0 0.1196 +0 0.0733 +0 0.1167 +0 0.2786 +0 0.0896 +0 0.2128 +0 0.0495 +0 0.1314 +0 0.0481 +1 0.8248 +0 0.0524 +0 0.2640 +0 0.2072 +0 0.1739 +0 0.4382 +0 0.0468 +0 0.2026 +1 0.7797 +0 0.1673 +0 0.0562 +0 0.1206 +0 0.0584 +0 0.1329 +0 0.0676 +0 0.1375 +0 0.0779 +0 0.1174 +0 0.0800 +0 0.1151 +0 0.0886 +0 0.2850 +0 0.1351 +0 0.3701 +0 0.1383 +0 0.3209 +0 0.2292 +0 0.0540 +0 0.0375 +0 0.0812 +0 0.1555 +0 0.1359 +0 0.6838 +0 0.1427 +0 0.1054 +0 0.1361 +0 0.0849 +0 0.1245 +0 0.2189 +0 0.0596 +0 0.0993 +0 0.0527 +0 0.2837 +0 0.1528 +0 0.1058 +0 0.1014 +0 0.1014 +0 0.3011 +0 0.0603 +0 0.0783 +0 0.2551 +0 0.0564 +0 0.0994 +0 0.1729 +0 0.6031 +0 0.1862 +0 0.2281 +0 0.0726 +0 0.1635 +0 0.0883 +0 0.1079 +0 0.1021 +0 0.1144 +0 0.6701 +0 0.7219 +0 0.0711 +0 0.2437 +0 0.0371 +0 0.2557 +0 0.1065 +0 0.6375 +0 0.1149 +0 0.1135 +0 0.1625 +0 0.2561 +0 0.4918 +0 0.2817 +0 0.0886 +0 0.2711 +0 0.0794 +0 0.1714 +0 0.0919 +0 0.0682 +0 0.1848 +0 0.0900 +0 0.0851 +0 0.6494 +0 0.0394 +0 0.0821 +0 0.0749 +0 0.0408 +0 0.1164 +0 0.2528 +0 0.0780 +0 0.0906 +1 0.8339 +0 0.0821 +0 0.2939 +0 0.0386 +0 0.1374 +0 0.3892 +0 0.0506 +0 0.0492 +0 0.1233 +0 0.0561 +0 0.0860 +0 0.1055 +0 0.2603 +0 0.0850 +0 0.1360 +0 0.0690 +0 0.1445 +0 0.0756 +0 0.0735 +0 0.0745 +0 0.1197 +0 0.0978 +0 0.0824 +0 0.1029 +0 0.0733 +0 0.0892 +0 0.0819 +0 0.0945 +0 0.0632 +0 0.2047 +0 0.0862 +0 0.0918 +0 0.0989 +0 0.1249 +0 0.0770 +0 0.1169 +0 0.1292 +0 0.0620 +0 0.0606 +0 0.1700 +0 0.1387 +0 0.0664 +0 0.2951 +0 0.0968 +0 0.0822 +0 0.1910 +0 0.0587 +0 0.0931 +0 0.1576 +0 0.0746 +0 0.1071 +0 0.1902 +0 0.1512 +0 0.1320 +0 0.0917 +0 0.1598 +0 0.2768 +0 0.1375 +0 0.1845 +0 0.1552 +0 0.0665 +0 0.3636 +0 0.1136 +0 0.0845 +0 0.1391 +0 0.0434 +0 0.0468 +0 0.0617 +0 0.1664 +0 0.0590 +0 0.0941 +0 0.0970 +0 0.0824 +0 0.2615 +0 0.0693 +0 0.2065 +0 0.1899 +0 0.0826 +0 0.0528 +0 0.1854 +0 0.2205 +0 0.0481 +0 0.0543 +0 0.0637 +1 0.8294 +0 0.4966 +0 0.0891 +0 0.0935 +0 0.2855 +0 0.5514 +0 0.0629 +0 0.1021 +0 0.0649 +0 0.0957 +0 0.2013 +0 0.2494 +0 0.0823 +0 0.0771 +0 0.2211 +0 0.2754 +0 0.0818 +0 0.1731 +0 0.1095 +0 0.0915 +1 0.8315 +0 0.1280 +0 0.0795 +0 0.0875 +0 0.1204 +0 0.1127 +0 0.0526 +0 0.0741 +0 0.1722 +0 0.0747 +0 0.0938 +0 0.0547 +0 0.1027 +0 0.0957 +1 0.7719 +0 0.0779 +0 0.0887 +0 0.0611 +0 0.0926 +0 0.0849 +0 0.0837 +0 0.0883 +0 0.0899 +0 0.0896 +1 0.8616 +0 0.1267 +0 0.0577 +0 0.1005 +0 0.2521 +0 0.0367 +0 0.0876 +0 0.2768 +0 0.1434 +0 0.0631 +0 0.1892 +0 0.0563 +0 0.1470 +0 0.0978 +0 0.0967 +0 0.1986 +0 0.0842 +0 0.0672 +0 0.1709 +0 0.0623 +0 0.0451 +0 0.1322 +0 0.3620 +0 0.0762 +0 0.1273 +0 0.4030 +1 0.7936 +0 0.1141 +0 0.1728 +0 0.0760 +0 0.0569 +0 0.1348 +0 0.1506 +0 0.1235 +0 0.0691 +0 0.0759 +0 0.2049 +0 0.1076 +0 0.0687 +0 0.0896 +0 0.1282 +0 0.1181 +0 0.1106 +0 0.0867 +0 0.0460 +0 0.0593 +0 0.0921 +0 0.4875 +0 0.0677 +0 0.0975 +0 0.0799 +0 0.0889 +0 0.0546 +0 0.0836 +0 0.0593 +0 0.4991 +0 0.2361 +0 0.1304 +1 0.7606 +0 0.1682 +0 0.0671 +0 0.1378 +0 0.0540 +0 0.0419 +0 0.0870 +0 0.0803 +0 0.0873 +0 0.0726 +0 0.1493 +0 0.0484 +0 0.1449 +0 0.1678 +0 0.1684 +0 0.4253 +0 0.1292 +0 0.5382 +0 0.1077 +0 0.0644 +0 0.2571 +0 0.0893 +0 0.0695 +0 0.1140 +0 0.0767 +0 0.1860 +0 0.0600 +0 0.0869 +0 0.2565 +0 0.1545 +0 0.0289 +0 0.2584 +0 0.1060 +0 0.0617 +0 0.1166 +1 0.7722 +0 0.2396 +0 0.0591 +1 0.5653 +0 0.6367 +0 0.1977 +0 0.1941 +0 0.2949 +0 0.2546 +0 0.0712 +0 0.3188 +0 0.5246 +0 0.0926 +0 0.0683 +1 0.7536 +0 0.2055 +0 0.4474 +0 0.2389 +0 0.0530 +0 0.1744 +0 0.1173 +0 0.0831 +0 0.0929 +0 0.0934 +0 0.1313 +0 0.3022 +0 0.1615 +0 0.7443 +0 0.1658 +0 0.3039 +0 0.0989 +0 0.2304 +0 0.0689 +0 0.1465 +0 0.0684 +0 0.0976 +0 0.3318 +0 0.0859 +0 0.2315 +0 0.0811 +0 0.5505 +0 0.0432 +0 0.0515 +0 0.4956 +0 0.0820 +0 0.1016 +0 0.3129 +0 0.1251 +0 0.0609 +0 0.7274 +0 0.2424 +0 0.1661 +0 0.1851 +0 0.0597 +0 0.0735 +0 0.0734 +0 0.0730 +0 0.1035 +0 0.1390 +0 0.1404 +0 0.0938 +0 0.1756 +0 0.0525 +0 0.4945 +0 0.2604 +0 0.3123 +0 0.0406 +0 0.0636 +0 0.1694 +0 0.1386 +0 0.3207 +0 0.0598 +0 0.1702 +0 0.2816 +0 0.3576 +0 0.0337 +0 0.1338 +0 0.1519 +0 0.0925 +0 0.0506 +0 0.1437 +0 0.1574 +0 0.0506 +0 0.0847 +0 0.0774 +0 0.2633 +0 0.2233 +0 0.1354 +0 0.0744 +0 0.1720 +0 0.0699 +0 0.3781 +0 0.0347 +0 0.0866 +0 0.1692 +0 0.1096 +0 0.0956 +0 0.1698 +0 0.4098 +0 0.2046 +0 0.2157 +0 0.1855 +0 0.1684 +1 0.8575 +0 0.3020 +0 0.1227 +0 0.0741 +0 0.0680 +0 0.0842 +0 0.0727 +0 0.0843 +0 0.0671 +0 0.0640 +0 0.0691 +0 0.0506 +0 0.1278 +0 0.1288 +0 0.0918 +1 0.8550 +0 0.0943 +0 0.3899 +0 0.1796 +0 0.1494 +0 0.1384 +0 0.1145 +0 0.0556 +0 0.0616 +0 0.0610 +0 0.0741 +0 0.4028 +0 0.0624 +0 0.1179 +0 0.0423 +0 0.1705 +0 0.0880 +0 0.2489 +0 0.0929 +0 0.0872 +0 0.0485 +0 0.1526 +0 0.2537 +0 0.1963 +0 0.0769 +0 0.0870 +0 0.0961 +0 0.1013 +0 0.2009 +0 0.1074 +0 0.1366 +0 0.0711 +0 0.2098 +0 0.3489 +0 0.0639 +0 0.0916 +0 0.3433 +0 0.0791 +0 0.1687 +0 0.1276 +0 0.2303 +0 0.1607 +0 0.1164 +0 0.2494 +0 0.1148 +0 0.0645 +0 0.1728 +0 0.0647 +0 0.1084 +0 0.0968 +0 0.0828 +0 0.5152 +0 0.0529 +0 0.1031 +0 0.0505 +0 0.1431 +0 0.0817 +0 0.0964 +0 0.1220 +0 0.1096 +0 0.1210 +0 0.1188 +0 0.2134 +0 0.0520 +0 0.0909 +0 0.1660 +0 0.1212 +0 0.0622 +0 0.3020 +0 0.0321 +0 0.0751 +0 0.1106 +0 0.0699 +0 0.1614 +0 0.4110 +0 0.1493 +0 0.0528 +0 0.0428 +0 0.4712 +0 0.0858 +0 0.1297 +0 0.3204 +0 0.1154 +0 0.0518 +0 0.0944 +0 0.2788 +0 0.1246 +0 0.1140 +0 0.0631 +0 0.1211 +0 0.4207 +0 0.1651 +0 0.3574 +0 0.0682 +0 0.0790 +0 0.2365 +0 0.6910 +0 0.0745 +0 0.0515 +0 0.0920 +0 0.0470 +0 0.0400 +0 0.0670 +0 0.0624 +0 0.0702 +0 0.7383 +0 0.1242 +0 0.0308 +0 0.3211 +0 0.0525 +0 0.1209 +0 0.1222 +0 0.0896 +0 0.1116 +0 0.1009 +0 0.1164 +0 0.0557 +1 0.7918 +0 0.0806 +0 0.1206 +1 0.7706 +0 0.1939 +0 0.1275 +0 0.0782 +0 0.0412 +0 0.0622 +0 0.2468 +0 0.1229 +0 0.0829 +0 0.1301 +0 0.0653 +0 0.1528 +0 0.0766 +0 0.1238 +0 0.3206 +0 0.0732 +0 0.1210 +0 0.1336 +0 0.0634 +0 0.7087 +0 0.0372 +0 0.2403 +0 0.0784 +0 0.0369 +0 0.0721 +0 0.1372 +0 0.0910 +0 0.0913 +0 0.0347 +0 0.1038 +0 0.2124 +0 0.0800 +0 0.1368 +0 0.1361 +0 0.2588 +0 0.1341 +1 0.8152 +0 0.1498 +0 0.3336 +0 0.0507 +0 0.0654 +0 0.1603 +0 0.0419 +0 0.4856 +0 0.0875 +0 0.0407 +0 0.0572 +0 0.2487 +0 0.0938 +0 0.0624 +0 0.0989 +0 0.1162 +0 0.0637 +0 0.0677 +0 0.3555 +0 0.0683 +0 0.1000 +0 0.0855 +0 0.0646 +0 0.1006 +0 0.1714 +0 0.2307 +0 0.4424 +0 0.1908 +0 0.2213 +0 0.2980 +0 0.1694 +0 0.0933 +0 0.0812 +0 0.1795 +0 0.0948 +0 0.0898 +0 0.0885 +0 0.1757 +0 0.0637 +0 0.0660 +0 0.0889 +0 0.1363 +0 0.1618 +0 0.1000 +0 0.2068 +0 0.0679 +0 0.1004 +0 0.1108 +0 0.0617 +0 0.0561 +0 0.2177 +0 0.2078 +0 0.2139 +0 0.1437 +0 0.1999 +0 0.2462 +0 0.1176 +0 0.1681 +0 0.0616 +0 0.1413 +0 0.0486 +0 0.0558 +0 0.1210 +0 0.0817 +0 0.1033 +0 0.1309 +0 0.0814 +0 0.3032 +0 0.0894 +0 0.5949 +0 0.0825 +0 0.1071 +0 0.0627 +0 0.1146 +0 0.0687 +0 0.1090 +0 0.0483 +0 0.0959 +0 0.2012 +0 0.0607 +0 0.1544 +0 0.1096 +0 0.1252 +0 0.1284 +0 0.0487 +0 0.0881 +0 0.1565 +0 0.0564 +0 0.0593 +0 0.2285 +0 0.0711 +0 0.2450 +0 0.0570 +0 0.1168 +0 0.2647 +0 0.0552 +0 0.1389 +0 0.0694 +0 0.0732 +0 0.0537 +0 0.0826 +0 0.1336 +0 0.1238 +0 0.1873 +0 0.0873 +0 0.1140 +0 0.1444 +1 0.7633 +0 0.1385 +0 0.0590 +0 0.1071 +0 0.0650 +0 0.1053 +0 0.1710 +0 0.2274 +0 0.0627 +0 0.0941 +0 0.0944 +0 0.0305 +0 0.0577 +0 0.0922 +0 0.0775 +0 0.2266 +0 0.1020 +0 0.0591 +0 0.1183 +0 0.2033 +0 0.0816 +0 0.7039 +0 0.1105 +0 0.1184 +0 0.1613 +0 0.0696 +0 0.1774 +0 0.0436 +0 0.1249 +0 0.1800 +0 0.1554 +0 0.1213 +0 0.1450 +0 0.0756 +0 0.6045 +0 0.1448 +0 0.4023 +0 0.0814 +0 0.2347 +0 0.1377 +0 0.0911 +0 0.0406 +0 0.0536 +0 0.3336 +0 0.2093 +0 0.1234 +0 0.1362 +0 0.1828 +0 0.4531 +0 0.1090 +0 0.4054 +0 0.3399 +0 0.2139 +0 0.0600 +0 0.0611 +0 0.1098 +0 0.1378 +0 0.0609 +0 0.0952 +0 0.1482 +0 0.0532 +0 0.1472 +0 0.2073 +0 0.3075 +0 0.1285 +0 0.0908 +0 0.0532 +0 0.0912 +0 0.0512 +0 0.0593 +0 0.0478 +0 0.0953 +0 0.0663 +0 0.0601 +0 0.1325 +0 0.1020 +0 0.0424 +0 0.0560 +0 0.4708 +0 0.0956 +0 0.0495 +0 0.0563 +0 0.0839 +0 0.1957 +0 0.3019 +0 0.1659 +0 0.1576 +0 0.1535 +0 0.1545 +0 0.2485 +0 0.1292 +0 0.0457 +0 0.1572 +0 0.5535 +0 0.0654 +0 0.1195 +0 0.1446 +0 0.3551 +0 0.0626 +0 0.0641 +0 0.0721 +0 0.1416 +0 0.1219 +0 0.1440 +0 0.1059 +0 0.1307 +0 0.1199 +0 0.1253 +0 0.3153 +0 0.3349 +0 0.0731 +0 0.1856 +0 0.2070 +0 0.0659 +0 0.1524 +0 0.1289 +0 0.0631 +0 0.0892 +0 0.0873 +0 0.0968 +0 0.0999 +0 0.0820 +0 0.0719 +0 0.2001 +0 0.1854 +0 0.3608 +0 0.0718 +0 0.0447 +0 0.1355 +0 0.1124 +0 0.0928 +0 0.1233 +0 0.2365 +0 0.1498 +0 0.2011 +0 0.0601 +0 0.0897 +0 0.0641 +0 0.0601 +0 0.0911 +0 0.1441 +0 0.1008 +0 0.0548 +0 0.2244 +0 0.1121 +0 0.0899 +0 0.1122 +0 0.0587 +0 0.1661 +0 0.0970 +0 0.1111 +0 0.0660 +0 0.1112 +0 0.1270 +0 0.0738 +0 0.0895 +0 0.1207 +0 0.1474 +0 0.1140 +0 0.1731 +0 0.0958 +0 0.0646 +0 0.0519 +0 0.0535 +0 0.0408 +0 0.1237 +0 0.0458 +0 0.2285 +0 0.0780 +0 0.1399 +0 0.2227 +0 0.0851 +0 0.0393 +0 0.0542 +0 0.2021 +0 0.0821 +0 0.0358 +0 0.4100 +0 0.1062 +0 0.0567 +0 0.0576 +0 0.0756 +0 0.4542 +0 0.1263 +0 0.0933 +0 0.1845 +0 0.1559 +0 0.0972 +0 0.0690 +0 0.2650 +0 0.0723 +0 0.1504 +0 0.3758 +0 0.6181 +0 0.0639 +0 0.1369 +0 0.0389 +0 0.0748 +0 0.0535 +0 0.2430 +0 0.1183 +0 0.0839 +0 0.0388 +0 0.0855 +0 0.2689 +0 0.1015 +0 0.0498 +0 0.0914 +0 0.2506 +0 0.1000 +0 0.0922 +0 0.0763 +0 0.1648 +0 0.0617 +0 0.0334 +0 0.0787 +0 0.1716 +0 0.0721 +0 0.0594 +0 0.0950 +0 0.1003 +0 0.0893 +0 0.1034 +0 0.0564 +0 0.1064 +0 0.0849 +0 0.2357 +0 0.1095 +0 0.1168 +0 0.0338 +0 0.0796 +0 0.1601 +0 0.1880 +0 0.1010 +0 0.1294 +0 0.0831 +0 0.4491 +0 0.0734 +0 0.0561 +0 0.0789 +0 0.1417 +0 0.0835 +0 0.3307 +0 0.0504 +0 0.0563 +0 0.4613 +0 0.0812 +0 0.1268 +0 0.0871 +0 0.2392 +0 0.1910 +0 0.1566 +0 0.2367 +0 0.1653 +0 0.2227 +0 0.0459 +0 0.1324 +0 0.1303 +0 0.1680 +0 0.0554 +0 0.1384 +0 0.1243 +0 0.0333 +0 0.0678 +0 0.1405 +0 0.2057 +0 0.1309 +0 0.1679 +0 0.0722 +0 0.0878 +0 0.1261 +0 0.0625 +0 0.1984 +0 0.0501 +0 0.1855 +0 0.2611 +0 0.2624 +0 0.0592 +0 0.0317 +0 0.0996 +0 0.0685 +0 0.1037 +0 0.1765 +0 0.1663 +0 0.1220 +0 0.1184 +0 0.3071 +0 0.6366 +0 0.2618 +0 0.0647 +0 0.1044 +0 0.1299 +0 0.0889 +0 0.0984 +0 0.0647 +0 0.1372 +0 0.3073 +0 0.0712 +0 0.3553 +0 0.1791 +0 0.0973 +0 0.0384 +0 0.0839 +0 0.0513 +0 0.0671 +0 0.1185 +0 0.1605 +0 0.0701 +0 0.0898 +0 0.5898 +0 0.0517 +0 0.1042 +0 0.0593 +0 0.1790 +0 0.0452 +0 0.1013 +0 0.1480 +0 0.0762 +0 0.1002 +0 0.2214 +0 0.1528 +0 0.1229 +0 0.1679 +0 0.2187 +0 0.0836 +0 0.0401 +1 0.7666 +0 0.2345 +0 0.1787 +0 0.0795 +0 0.1071 +0 0.4654 +0 0.0996 +0 0.0859 +0 0.2887 +0 0.3001 +0 0.1131 +0 0.2047 +0 0.3064 +0 0.1850 +0 0.0537 +0 0.1328 +0 0.1319 +0 0.0500 +0 0.2126 +0 0.2906 +0 0.0468 +0 0.6470 +0 0.0421 +0 0.3451 +0 0.7077 +0 0.1658 +0 0.2155 +0 0.2152 +0 0.2134 +0 0.0635 +0 0.1523 +0 0.1546 +0 0.1720 +0 0.0940 +0 0.1031 +0 0.1792 +0 0.1025 +0 0.1519 +0 0.1831 +0 0.0780 +0 0.0800 +0 0.0760 +0 0.0728 +0 0.5597 +0 0.2377 +0 0.6796 +0 0.0782 +0 0.1928 +0 0.0601 +0 0.0556 +0 0.1276 +0 0.0533 +0 0.0602 +0 0.0961 +0 0.1131 +0 0.0786 +0 0.1049 +0 0.7161 +0 0.2250 +0 0.1160 +0 0.0916 +0 0.1463 +0 0.0833 +0 0.1051 +0 0.1344 +0 0.2041 +0 0.4432 +0 0.1425 +0 0.0514 +0 0.0879 +0 0.0913 +0 0.0686 +0 0.0492 +0 0.3390 +0 0.0505 +0 0.1672 +0 0.0731 +0 0.1499 +0 0.1388 +0 0.0587 +0 0.0510 +0 0.1826 +0 0.2309 +0 0.0579 +0 0.0587 +0 0.5145 +0 0.0572 +0 0.0690 +0 0.1115 +0 0.1518 +0 0.0662 +0 0.2913 +0 0.0485 +0 0.0979 +0 0.0602 +0 0.0581 +0 0.0839 +0 0.0768 +0 0.0945 +0 0.0780 +0 0.1771 +0 0.1004 +0 0.0577 +0 0.0837 +0 0.0959 +0 0.2211 +0 0.0884 +0 0.0528 +0 0.1081 +0 0.0561 +0 0.0447 +0 0.1688 +0 0.0630 +0 0.1049 +0 0.0643 +0 0.0882 +0 0.2351 +0 0.1378 +0 0.0729 +0 0.0543 +0 0.0960 +0 0.1429 +0 0.0857 +0 0.1777 +0 0.0740 +0 0.0779 +0 0.0810 +0 0.5980 +0 0.0497 +0 0.0604 +0 0.4079 +0 0.0810 +0 0.0700 +1 0.3829 +0 0.1641 +0 0.0535 +0 0.0445 +0 0.2405 +0 0.0816 +0 0.3112 +0 0.0887 +0 0.1318 +0 0.0736 +0 0.3423 +0 0.0879 +0 0.3842 +0 0.6801 +1 0.8525 +0 0.0810 +0 0.1946 +0 0.7425 +0 0.0523 +0 0.2813 +0 0.0548 +0 0.2142 +0 0.0586 +0 0.1525 +0 0.0707 +0 0.0966 +0 0.1373 +0 0.1888 +0 0.0894 +0 0.0471 +0 0.1075 +0 0.0937 +0 0.1692 +0 0.0461 +0 0.2250 +0 0.1248 +0 0.1448 +0 0.1701 +0 0.2389 +0 0.1293 +0 0.0711 +0 0.0904 +0 0.0867 +0 0.0608 +0 0.1183 +0 0.1428 +0 0.0900 +0 0.0793 +0 0.1033 +0 0.1371 +0 0.2423 +1 0.8399 +0 0.0919 +0 0.0711 +0 0.0477 +0 0.1157 +1 0.7501 +0 0.2206 +0 0.0443 +0 0.0390 +0 0.5244 +0 0.1828 +0 0.1490 +0 0.3743 +0 0.1912 +0 0.0588 +0 0.1768 +0 0.1478 +0 0.0607 +1 0.8114 +0 0.1239 +0 0.0880 +0 0.1326 +0 0.0553 +0 0.1044 +0 0.0969 +0 0.0990 +0 0.0921 +0 0.0680 +0 0.1050 +0 0.3738 +0 0.5623 +0 0.1530 +0 0.1855 +0 0.0570 +0 0.0450 +0 0.2047 +0 0.0552 +0 0.0978 +0 0.0500 +0 0.1245 +0 0.0301 +0 0.1171 +0 0.1321 +0 0.1317 +0 0.1484 +0 0.0898 +0 0.1862 +0 0.1294 +0 0.1219 +0 0.3394 +0 0.0640 +0 0.1221 +0 0.0307 +0 0.1928 +0 0.0636 +0 0.1076 +0 0.0779 +0 0.0928 +0 0.1108 +0 0.0786 +0 0.0435 +0 0.0334 +0 0.0805 +0 0.2310 +0 0.0918 +0 0.0643 +0 0.2234 +0 0.0798 +0 0.1402 +0 0.0588 +0 0.0657 +0 0.7500 +0 0.1093 +0 0.1237 +0 0.1463 +0 0.0527 +0 0.1478 +0 0.0624 +0 0.1363 +0 0.1482 +0 0.1264 +1 0.8038 +0 0.1435 +0 0.0854 +0 0.1507 +0 0.1072 +0 0.1054 +0 0.0933 +0 0.0938 +0 0.0464 +0 0.0371 +0 0.0986 +0 0.2046 +0 0.0846 +0 0.2394 +0 0.1905 +0 0.0439 +0 0.0755 +0 0.1140 +0 0.0766 +0 0.0861 +0 0.0625 +0 0.0976 +0 0.2257 +0 0.0427 +0 0.0916 +0 0.3188 +0 0.0781 +0 0.0794 +0 0.1814 +0 0.0344 +0 0.1399 +0 0.4641 +0 0.2169 +0 0.1772 +0 0.1797 +0 0.1725 +0 0.0985 +0 0.0931 +0 0.0773 +0 0.0799 +0 0.2302 +0 0.1113 +0 0.2365 +0 0.2510 +0 0.0849 +0 0.1579 +0 0.0815 +0 0.0544 +0 0.0554 +0 0.1096 +0 0.0503 +0 0.1438 +0 0.2638 +0 0.1651 +0 0.1395 +0 0.0781 +0 0.2240 +1 0.7924 +0 0.0876 +0 0.0453 +0 0.0507 +0 0.5967 +0 0.1777 +0 0.0382 +0 0.1395 +0 0.1021 +0 0.0955 +0 0.0751 +0 0.1286 +0 0.2458 +0 0.0539 +0 0.0558 +0 0.1225 +0 0.0585 +0 0.0477 +0 0.0769 +0 0.2121 +0 0.2836 +1 0.8108 +0 0.1311 +0 0.1564 +0 0.0946 +0 0.1006 +0 0.1177 +0 0.0865 +0 0.0345 +0 0.1641 +0 0.1217 +0 0.1007 +0 0.1089 +0 0.1512 +0 0.1813 +0 0.0710 +0 0.1633 +0 0.1342 +0 0.0863 +0 0.0773 +0 0.1795 +0 0.3610 +0 0.0764 +0 0.1110 +0 0.0905 +0 0.0559 +0 0.0834 +0 0.0849 +0 0.0965 +0 0.0691 +0 0.1833 +0 0.1211 +0 0.0639 +0 0.0943 +0 0.1614 +0 0.1041 +0 0.1541 +0 0.1337 +0 0.0672 +0 0.0749 +0 0.1644 +0 0.1144 +0 0.0834 +0 0.0513 +0 0.0395 +0 0.0799 +0 0.0972 +0 0.1091 +0 0.0911 +0 0.0493 +1 0.7609 +0 0.1198 +0 0.1064 +0 0.0981 +0 0.0992 +0 0.1131 +0 0.0621 +0 0.1040 +0 0.0519 +0 0.1343 +0 0.1444 +0 0.0656 +0 0.0352 +0 0.1976 +0 0.0461 +0 0.1842 +0 0.0657 +0 0.1306 +0 0.0858 +0 0.1260 +0 0.2631 +0 0.1384 +0 0.1278 +0 0.1241 +0 0.2070 +0 0.0930 +0 0.1754 +0 0.0779 +0 0.1188 +0 0.1229 +0 0.2007 +0 0.1907 +0 0.1931 +0 0.0787 +0 0.1957 +0 0.0613 +0 0.0928 +0 0.1865 +0 0.0712 +0 0.2074 +0 0.0677 +0 0.1643 +0 0.1430 +0 0.0723 +0 0.1136 +0 0.1309 +0 0.4568 +0 0.1869 +0 0.0754 +0 0.0719 +0 0.0972 +1 0.8499 +0 0.0574 +0 0.0866 +0 0.5455 +0 0.0724 +0 0.0590 +0 0.0803 +0 0.0864 +0 0.0455 +0 0.1186 +0 0.0746 +0 0.0614 +0 0.3402 +0 0.7130 +0 0.2001 +0 0.1693 +0 0.1267 +0 0.1571 +0 0.0770 +0 0.1391 +0 0.3131 +0 0.1284 +0 0.0502 +0 0.1939 +0 0.2053 +0 0.1526 +0 0.2201 +0 0.1878 +0 0.5317 +0 0.0383 +0 0.1456 +0 0.1205 +0 0.1446 +0 0.1043 +0 0.0737 +0 0.1208 +0 0.1736 +0 0.1389 +0 0.1185 +0 0.6532 +0 0.5946 +0 0.0773 +0 0.0938 +0 0.2668 +0 0.0927 +1 0.8070 +0 0.1815 +0 0.0846 +0 0.1104 +0 0.0574 +0 0.1514 +0 0.0818 +0 0.0837 +0 0.0711 +0 0.0649 +0 0.0955 +0 0.1428 +0 0.1048 +0 0.0784 +0 0.1135 +0 0.1763 +0 0.0740 +0 0.0787 +0 0.0695 +0 0.1483 +0 0.4140 +0 0.0692 +0 0.1123 +0 0.1702 +0 0.0441 +0 0.1387 +0 0.2211 +0 0.5403 +0 0.1743 +0 0.7482 +0 0.0859 +0 0.0581 +0 0.0685 +0 0.0304 +0 0.1098 +0 0.3003 +0 0.0658 +1 0.8611 +0 0.1065 +0 0.0898 +0 0.1342 +0 0.0993 +0 0.0549 +0 0.0815 +0 0.1653 +0 0.0737 +0 0.2259 +0 0.0950 +0 0.0826 +0 0.1000 +0 0.0974 +0 0.1260 +0 0.3888 +1 0.8103 +0 0.2284 +0 0.1939 +0 0.0945 +0 0.1993 +0 0.0940 +0 0.0660 +0 0.0803 +0 0.1873 +0 0.0613 +0 0.1871 +0 0.0837 +0 0.0992 +0 0.0804 +0 0.0571 +0 0.2139 +0 0.1265 +0 0.0871 +0 0.0691 +0 0.0867 +0 0.4424 +0 0.0765 +0 0.0396 +0 0.0469 +0 0.1956 +0 0.1754 +0 0.1568 +0 0.0760 +0 0.0688 +0 0.2477 +0 0.1519 +0 0.2925 +0 0.1340 +0 0.1286 +0 0.0550 +0 0.1963 +0 0.1467 +0 0.1236 +0 0.2973 +0 0.0700 +0 0.1570 +0 0.2681 +0 0.1027 +0 0.0637 +0 0.3261 +0 0.2021 +0 0.0807 +0 0.0566 +0 0.2309 +0 0.1394 +0 0.1836 +0 0.1772 +0 0.0805 +0 0.2056 +0 0.0706 +0 0.0648 +0 0.1484 +0 0.0577 +0 0.0495 +0 0.0269 +0 0.0788 +0 0.1193 +0 0.0952 +0 0.1075 +0 0.1737 +0 0.1401 +0 0.0922 +0 0.0550 +0 0.1092 +0 0.0831 +0 0.1385 +0 0.0637 +0 0.2617 +0 0.1147 +0 0.0752 +0 0.0438 +0 0.1510 +0 0.0753 +0 0.1809 +0 0.0406 +0 0.1348 +0 0.1671 +0 0.0369 +0 0.0774 +0 0.3933 +0 0.0458 +0 0.0705 +0 0.1022 +0 0.0840 +0 0.1969 +0 0.0438 +0 0.2061 +0 0.0872 +0 0.0679 +0 0.0921 +0 0.0920 +0 0.2362 +0 0.0536 +0 0.1155 +0 0.0768 +1 0.8169 +0 0.0339 +0 0.2306 +0 0.0677 +0 0.0674 +0 0.6445 +0 0.1325 +0 0.0667 +0 0.1525 +0 0.2029 +0 0.1204 +0 0.0987 +0 0.1018 +0 0.1342 +0 0.5681 +0 0.1351 +0 0.1838 +0 0.2680 +0 0.1720 +0 0.0594 +0 0.0870 +0 0.1200 +0 0.1036 +0 0.2015 +0 0.1206 +0 0.0414 +0 0.1904 +0 0.1099 +0 0.0425 +0 0.0921 +0 0.0755 +0 0.1163 +0 0.0416 +0 0.0949 +0 0.0591 +0 0.0902 +0 0.0440 +0 0.1189 +0 0.1208 +0 0.3330 +0 0.2341 +0 0.1204 +0 0.3242 +0 0.1515 +0 0.0939 +0 0.1274 +0 0.0793 +0 0.1871 +0 0.0909 +0 0.0761 +0 0.0682 +0 0.0446 +0 0.1097 +0 0.1350 +0 0.2541 +0 0.1070 +0 0.0416 +0 0.0786 +0 0.2889 +1 0.8078 +0 0.3138 +1 0.8397 +0 0.0884 +0 0.6888 +0 0.6069 +0 0.0369 +0 0.0747 +0 0.1987 +0 0.0863 +0 0.1213 +0 0.1741 +0 0.2033 +0 0.0879 +0 0.0947 +0 0.0765 +0 0.1992 +0 0.0978 +0 0.0817 +0 0.5493 +0 0.0581 +0 0.0672 +0 0.1047 +0 0.1235 +0 0.0918 +0 0.1007 +0 0.0638 +0 0.0783 +0 0.0970 +0 0.0431 +0 0.1666 +0 0.1098 +0 0.0937 +0 0.2844 +0 0.0627 +0 0.2217 +0 0.1550 +0 0.0485 +0 0.1122 +0 0.1091 +0 0.0952 +0 0.3581 +1 0.8361 +0 0.1134 +0 0.0857 +0 0.1237 +1 0.7949 +0 0.1417 +0 0.1208 +0 0.0756 +0 0.0546 +0 0.3404 +0 0.0615 +0 0.1258 +0 0.0761 +0 0.1690 +0 0.1304 +0 0.0777 +0 0.1624 +0 0.0643 +0 0.2903 +0 0.2114 +0 0.1209 +0 0.0445 +0 0.2097 +0 0.0413 +0 0.0530 +0 0.0718 +0 0.0868 +0 0.0943 +0 0.0474 +0 0.1328 +0 0.0803 +0 0.1473 +0 0.0741 +0 0.0781 +0 0.1227 +0 0.1151 +0 0.0813 +0 0.0799 +0 0.0879 +0 0.0774 +0 0.0506 +0 0.3398 +0 0.0800 +0 0.1605 +0 0.0603 +0 0.3181 +0 0.1846 +0 0.1700 +0 0.1319 +0 0.0782 +0 0.1610 +0 0.0677 +0 0.0671 +0 0.0855 +0 0.1111 +1 0.8054 +0 0.2859 +0 0.2617 +0 0.0788 +0 0.1208 +0 0.0880 +0 0.0865 +1 0.7801 +0 0.0783 +0 0.0790 +0 0.0431 +0 0.0551 +0 0.2993 +0 0.2023 +0 0.1737 +0 0.1300 +0 0.1004 +0 0.1455 +0 0.1779 +0 0.1019 +0 0.1784 +0 0.1054 +0 0.2201 +0 0.1682 +0 0.1046 +0 0.1658 +0 0.0441 +0 0.1741 +0 0.0839 +0 0.1824 +0 0.0504 +0 0.1047 +0 0.0995 +0 0.1093 +0 0.0560 +0 0.0913 +0 0.1801 +0 0.0560 +0 0.2029 +0 0.0856 +0 0.1435 +0 0.0638 +0 0.0805 +0 0.0438 +0 0.0848 +0 0.1075 +0 0.1015 +0 0.1923 +0 0.0734 +1 0.7694 +0 0.4818 +0 0.0941 +0 0.1010 +0 0.3523 +0 0.0977 +0 0.0557 +0 0.0994 +0 0.0801 +0 0.0983 +0 0.0774 +0 0.1247 +0 0.2116 +0 0.0791 +0 0.2331 +0 0.1229 +0 0.0816 +0 0.0846 +0 0.0465 +0 0.1625 +0 0.1417 +0 0.2319 +0 0.0339 +0 0.2635 +0 0.0554 +0 0.0776 +0 0.0967 +0 0.2647 +0 0.0766 +0 0.0660 +0 0.1472 +0 0.0593 +0 0.0547 +0 0.1170 +0 0.1156 +0 0.1192 +0 0.0680 +0 0.0721 +0 0.1025 +0 0.1457 +1 0.7828 +0 0.1716 +0 0.0550 +0 0.0740 +0 0.1409 +0 0.2946 +0 0.2003 +0 0.1598 +0 0.1958 +0 0.0549 +0 0.0731 +0 0.1142 +0 0.6165 +0 0.1053 +0 0.1031 +0 0.1831 +1 0.7746 +0 0.1801 +0 0.1949 +0 0.0872 +0 0.0805 +0 0.2140 +0 0.2160 +0 0.1344 +0 0.2654 +0 0.6283 +0 0.2392 +0 0.5373 +0 0.0673 +0 0.0704 +0 0.0867 +0 0.0836 +0 0.0710 +0 0.1529 +0 0.0433 +0 0.1201 +0 0.0980 +0 0.0553 +0 0.0997 +0 0.1235 +0 0.3965 +0 0.1636 +0 0.1340 +0 0.0948 +0 0.1132 +0 0.2494 +0 0.1479 +0 0.0587 +0 0.0646 +0 0.0611 +0 0.0842 +0 0.0658 +0 0.1258 +0 0.0646 +0 0.0928 +1 0.7924 +0 0.2061 +0 0.1085 +0 0.0773 +0 0.1848 +0 0.0678 +0 0.2202 +0 0.0438 +0 0.0776 +0 0.1885 +0 0.1896 +0 0.0506 +0 0.1905 +0 0.7481 +0 0.0332 +0 0.0468 +0 0.3151 +0 0.0829 +0 0.0966 +0 0.0906 +0 0.0551 +0 0.0655 +0 0.0650 +1 0.8150 +0 0.1248 +0 0.1843 +0 0.0477 +0 0.7455 +0 0.0298 +0 0.1617 +0 0.1104 +0 0.1958 +0 0.1939 +0 0.0943 +0 0.0671 +0 0.0503 +0 0.1740 +0 0.2016 +0 0.2962 +0 0.2061 +0 0.0784 +0 0.0698 +0 0.2389 +0 0.3662 +0 0.1243 +0 0.1649 +0 0.3398 +0 0.2733 +0 0.1489 +0 0.0880 +0 0.0769 +0 0.0928 +0 0.7267 +0 0.0599 +0 0.1129 +0 0.1561 +0 0.1724 +0 0.1568 +0 0.1774 +0 0.3748 +0 0.1482 +0 0.2165 +0 0.1368 +0 0.1297 +0 0.0938 +0 0.0842 +0 0.1418 +0 0.2918 +0 0.2000 +0 0.1169 +0 0.1974 +0 0.1104 +0 0.0646 +0 0.0675 +0 0.2930 +0 0.2781 +0 0.3184 +0 0.0829 +0 0.0549 +0 0.0951 +0 0.0519 +0 0.2306 +0 0.0775 +0 0.0594 +0 0.2375 +0 0.0873 +0 0.1126 +0 0.0466 +0 0.0836 +0 0.1021 +0 0.2840 +0 0.0593 +0 0.1079 +0 0.1144 +0 0.0779 +0 0.0852 +0 0.0560 +0 0.0605 +0 0.2872 +0 0.0820 +0 0.0770 +0 0.1028 +0 0.1604 +0 0.0464 +0 0.4067 +0 0.0598 +0 0.1236 +0 0.0917 +0 0.1542 +0 0.0530 +0 0.1161 +0 0.1222 +0 0.1062 +0 0.0634 +0 0.1677 +0 0.0903 +0 0.0766 +0 0.0675 +0 0.7486 +0 0.0622 +0 0.1018 +0 0.0709 +0 0.0592 +0 0.0569 +0 0.0726 +0 0.2498 +0 0.1955 +0 0.0560 +0 0.1515 +0 0.1093 +0 0.1320 +0 0.1209 +0 0.1565 +0 0.1253 +0 0.0354 +0 0.1498 +1 0.7821 +0 0.0626 +0 0.1472 +0 0.4257 +0 0.0506 +0 0.0714 +0 0.1140 +0 0.0639 +0 0.0423 +0 0.0404 +0 0.1799 +0 0.0903 +0 0.2077 +0 0.1492 +0 0.1639 +0 0.0636 +0 0.0435 +0 0.6384 +0 0.0744 +0 0.1990 +0 0.0611 +0 0.1051 +0 0.0331 +0 0.1223 +0 0.1327 +0 0.0680 +0 0.1203 +0 0.1396 +0 0.2098 +0 0.2204 +0 0.0556 +0 0.3809 +0 0.1778 +0 0.0515 +0 0.1003 +0 0.0452 +0 0.0815 +0 0.0983 +0 0.3234 +0 0.0952 +0 0.0793 +0 0.0868 +0 0.7178 +0 0.0660 +0 0.1289 +0 0.0351 +0 0.1006 +0 0.2147 +0 0.1680 +0 0.7486 +0 0.1176 +0 0.1249 +0 0.2604 +0 0.3066 +0 0.0797 +0 0.0915 +0 0.0505 +0 0.0900 +0 0.1978 +0 0.0802 +0 0.2597 +0 0.0849 +0 0.0756 +0 0.0853 +0 0.0844 +0 0.1671 +0 0.2678 +0 0.1385 +0 0.1006 +0 0.1878 +0 0.0702 +0 0.0562 +0 0.0654 +0 0.0694 +0 0.1130 +0 0.0665 +0 0.0798 +0 0.0752 +0 0.0802 +0 0.2350 +0 0.2215 +0 0.0634 +0 0.0888 +0 0.0936 +0 0.0505 +0 0.1624 +0 0.0406 +0 0.0454 +0 0.2365 +0 0.0427 +0 0.2346 +0 0.0877 +0 0.0966 +0 0.1192 +0 0.2458 +0 0.0726 +0 0.1533 +0 0.0991 +0 0.1012 +0 0.1176 +0 0.0738 +0 0.2671 +0 0.2118 +0 0.1503 +0 0.1957 +0 0.0522 +0 0.1733 +0 0.0705 +0 0.1912 +0 0.0704 +0 0.0705 +0 0.1062 +0 0.0888 +0 0.0757 +0 0.0702 +0 0.2072 +0 0.0537 +0 0.2372 +0 0.0606 +0 0.1351 +0 0.0706 +0 0.0820 +0 0.1026 +0 0.1005 +0 0.0774 +0 0.0549 +0 0.2231 +0 0.1146 +0 0.0751 +0 0.0452 +0 0.6620 +0 0.0619 +0 0.0494 +0 0.7456 +0 0.3266 +0 0.0883 +0 0.3758 +0 0.2466 +0 0.1465 +0 0.1637 +0 0.0504 +0 0.0521 +0 0.0548 +0 0.0933 +0 0.3611 +0 0.0869 +0 0.7247 +0 0.0482 +0 0.0657 +0 0.1655 +0 0.0698 +0 0.0877 +0 0.1481 +0 0.0634 +0 0.0821 +0 0.0889 +0 0.1824 +0 0.1184 +0 0.1343 +0 0.1146 +0 0.2388 +0 0.1183 +0 0.2451 +0 0.0399 +0 0.1322 +0 0.1800 +0 0.5513 +0 0.6434 +0 0.0888 +0 0.1543 +0 0.0407 +0 0.1239 +0 0.1580 +0 0.1485 +0 0.0659 +0 0.1924 +0 0.0657 +0 0.1571 +0 0.3091 +0 0.1788 +0 0.1030 +0 0.1683 +0 0.0686 +0 0.4217 +0 0.3051 +0 0.0438 +0 0.0690 +0 0.0585 +0 0.2450 +0 0.0497 +0 0.1342 +0 0.1163 +0 0.0472 +0 0.4632 +0 0.0627 +0 0.2455 +0 0.0434 +0 0.2436 +0 0.0693 +0 0.1567 +0 0.0422 +0 0.0706 +0 0.1498 +0 0.4948 +0 0.0807 +0 0.1656 +0 0.0369 +0 0.1964 +0 0.0846 +0 0.0984 +0 0.3492 +0 0.0889 +0 0.1113 +0 0.0652 +0 0.1523 +0 0.1643 +0 0.0693 +0 0.1425 +0 0.1820 +0 0.0676 +0 0.0681 +0 0.0996 +0 0.1058 +0 0.1214 +0 0.2277 +0 0.0875 +0 0.1519 +0 0.2084 +0 0.1272 +0 0.2582 +0 0.0992 +0 0.1977 +0 0.2411 +0 0.0755 +0 0.1386 +0 0.0996 +0 0.1999 +0 0.0900 +0 0.0951 +1 0.8845 +0 0.1374 +0 0.1391 +1 0.7541 +0 0.1440 +0 0.1768 +0 0.2148 +0 0.0802 +0 0.1589 +0 0.1298 +0 0.0918 +1 0.7925 +0 0.0398 +0 0.0910 +0 0.1981 +0 0.0351 +0 0.0922 +0 0.1794 +0 0.0989 +0 0.0704 +0 0.0969 +0 0.0928 +0 0.1052 +0 0.1515 +0 0.1230 +0 0.0609 +0 0.4700 +0 0.0747 +0 0.1828 +0 0.0345 +0 0.2976 +0 0.0814 +0 0.2113 +0 0.0920 +0 0.0940 +0 0.1616 +0 0.2761 +0 0.0664 +0 0.1838 +0 0.0917 +0 0.0786 +0 0.0496 +0 0.2123 +0 0.2181 +0 0.0700 +0 0.7345 +0 0.0637 +0 0.0603 +0 0.1216 +0 0.0593 +0 0.0761 +0 0.1657 +0 0.2058 +0 0.0847 +0 0.1171 +0 0.1482 +0 0.0940 +0 0.0606 +0 0.1146 +0 0.2043 +0 0.0751 +0 0.1559 +0 0.2899 +0 0.1107 +0 0.0546 +0 0.0600 +0 0.3193 +0 0.1502 +0 0.0729 +0 0.0493 +0 0.1979 +0 0.1036 +0 0.1004 +0 0.0690 +0 0.1793 +0 0.1996 +0 0.0792 +0 0.2084 +0 0.0906 +0 0.0460 +0 0.1436 +0 0.0709 +0 0.1330 +0 0.1617 +0 0.1623 +0 0.0632 +0 0.1094 +0 0.1057 +0 0.1001 +0 0.1391 +0 0.0934 +0 0.0759 +0 0.1222 +0 0.0854 +1 0.8638 +0 0.0967 +0 0.1136 +0 0.1174 +0 0.1749 +0 0.1626 +0 0.0772 +0 0.1538 +0 0.0834 +0 0.0823 +0 0.6757 +0 0.2383 +1 0.8575 +0 0.0918 +0 0.2423 +0 0.0992 +0 0.0328 +0 0.0603 +0 0.1348 +0 0.1365 +0 0.0681 +0 0.1402 +0 0.3429 +0 0.0882 +0 0.1308 +0 0.0617 +0 0.2029 +0 0.1606 +0 0.1317 +0 0.1294 +0 0.1524 +0 0.0760 +0 0.0660 +0 0.1906 +0 0.0973 +0 0.0674 +0 0.0506 +0 0.1223 +0 0.0942 +0 0.1961 +0 0.1717 +0 0.0487 +0 0.0835 +1 0.8184 +0 0.0462 +0 0.0494 +0 0.0913 +0 0.1842 +0 0.1857 +0 0.1308 +0 0.0595 +0 0.2271 +0 0.0763 +0 0.1046 +0 0.1208 +0 0.0406 +0 0.1196 +0 0.0339 +0 0.1101 +0 0.1111 +0 0.2605 +0 0.1184 +0 0.0847 +0 0.0776 +0 0.1169 +0 0.1489 +0 0.0835 +0 0.1014 +0 0.0640 +0 0.1716 +0 0.0879 +0 0.0951 +0 0.2060 +0 0.2364 +0 0.0706 +0 0.1505 +0 0.1195 +0 0.1103 +1 0.8615 +0 0.0446 +0 0.1368 +0 0.2263 +0 0.0736 +0 0.0898 +0 0.1132 +0 0.0998 +0 0.1621 +0 0.3809 +0 0.1051 +0 0.1952 +0 0.1891 +0 0.1001 +0 0.0926 +0 0.1175 +0 0.1547 +0 0.2835 +0 0.0838 +0 0.0920 +0 0.0629 +0 0.3470 +0 0.5013 +0 0.0780 +0 0.1737 +0 0.1017 +0 0.2458 +0 0.2125 +0 0.0933 +0 0.1850 +0 0.5094 +0 0.0777 +0 0.0931 +0 0.2227 +0 0.2127 +0 0.1150 +1 0.7679 +0 0.1577 +0 0.0498 +0 0.1144 +0 0.1278 +0 0.0789 +0 0.0973 +0 0.0626 +0 0.2966 +0 0.0911 +0 0.0527 +0 0.2233 +0 0.1014 +0 0.1423 +0 0.0965 +0 0.1438 +0 0.0412 +0 0.0438 +0 0.0721 +0 0.7229 +0 0.5319 +0 0.0912 +0 0.1544 +0 0.2002 +0 0.0968 +0 0.1011 +1 0.8014 +0 0.0789 +0 0.2346 +0 0.0887 +0 0.0765 +0 0.1451 +1 0.8474 +0 0.1288 +0 0.0794 +0 0.0768 +1 0.8287 +0 0.2710 +0 0.0920 +0 0.3693 +0 0.0885 +0 0.0975 +0 0.2472 +0 0.0754 +0 0.2027 +0 0.0812 +0 0.0875 +0 0.2099 +0 0.2354 +0 0.0839 +0 0.0933 +0 0.1155 +0 0.0923 +0 0.1913 +0 0.0587 +0 0.1609 +0 0.0527 +0 0.1122 +0 0.2223 +0 0.3363 +0 0.0881 +0 0.0661 +0 0.0441 +0 0.1085 +0 0.0704 +0 0.0522 +0 0.0479 +0 0.1035 +0 0.0448 +0 0.0583 +0 0.0833 +0 0.0929 +0 0.0922 +0 0.1252 +0 0.0815 +0 0.1211 +0 0.1571 +0 0.1156 +0 0.1064 +0 0.2504 +0 0.0809 +0 0.0699 +0 0.1541 +0 0.1874 +0 0.0618 +0 0.1656 +0 0.0644 +0 0.0863 +0 0.1893 +0 0.1116 +0 0.1757 +0 0.0709 +0 0.3531 +0 0.1697 +0 0.0623 +0 0.0620 +0 0.0854 +0 0.0713 +0 0.0748 +0 0.2307 +1 0.7545 +0 0.0759 +0 0.0896 +0 0.0559 +0 0.0906 +0 0.0667 +0 0.3164 +0 0.1959 +0 0.0816 +0 0.1761 +0 0.1452 +0 0.1621 +0 0.0738 +0 0.0982 +0 0.3299 +0 0.1745 +0 0.1441 +0 0.0822 +0 0.0510 +0 0.2394 +0 0.0894 +0 0.0472 +0 0.3707 +0 0.0522 +0 0.1729 +0 0.5158 +0 0.0696 +0 0.1580 +0 0.0762 +0 0.1130 +0 0.3458 +0 0.0939 +0 0.1539 +0 0.1099 +0 0.1421 +0 0.0566 +0 0.1795 +0 0.0647 +0 0.0842 +0 0.1011 +0 0.0941 +0 0.1248 +0 0.0984 +0 0.1464 +1 0.7872 +0 0.0881 +0 0.1062 +0 0.1685 +0 0.1453 +0 0.1005 +0 0.0887 +0 0.0432 +0 0.0821 +0 0.0694 +0 0.0452 +0 0.1402 +0 0.0603 +0 0.0595 +0 0.1109 +0 0.0566 +0 0.0530 +0 0.0425 +0 0.2269 +0 0.0408 +0 0.1129 +0 0.0843 +0 0.1589 +0 0.2196 +0 0.0598 +0 0.0772 +0 0.2457 +0 0.0778 +0 0.0583 +0 0.1249 +0 0.1492 +0 0.2470 +0 0.1045 +0 0.1958 +0 0.1094 +0 0.0290 +0 0.0500 +0 0.1780 +0 0.1588 +0 0.1057 +0 0.0479 +0 0.1364 +0 0.1517 +1 0.7848 +0 0.2031 +0 0.0749 +0 0.0435 +0 0.0795 +0 0.0628 +0 0.1221 +0 0.3250 +0 0.0743 +0 0.0636 +0 0.0647 +0 0.0763 +0 0.0911 +0 0.2075 +0 0.2729 +0 0.0980 +0 0.0872 +0 0.0915 +0 0.1013 +0 0.0522 +0 0.0619 +1 0.7797 +0 0.1743 +0 0.1203 +0 0.0571 +0 0.1699 +0 0.1618 +0 0.1874 +0 0.0423 +0 0.0669 +0 0.1156 +0 0.3009 +0 0.1445 +0 0.0645 +0 0.0979 +0 0.2163 +0 0.0770 +0 0.2136 +0 0.0824 +0 0.0756 +0 0.2044 +0 0.1649 +0 0.0792 +0 0.2134 +0 0.0738 +0 0.0588 +0 0.0398 +0 0.0781 +0 0.1071 +0 0.0918 +0 0.0791 +0 0.0915 +0 0.0739 +0 0.6678 +0 0.1359 +0 0.0761 +0 0.5747 +0 0.1326 +0 0.1311 +0 0.0990 +0 0.0463 +0 0.0922 +0 0.0568 +0 0.2710 +0 0.1826 +0 0.0716 +0 0.0474 +0 0.0860 +0 0.0869 +0 0.1284 +0 0.1323 +0 0.1182 +0 0.4774 +0 0.1032 +0 0.1038 +0 0.2191 +0 0.1271 +0 0.3092 +0 0.1242 +0 0.6270 +0 0.2666 +0 0.0673 +0 0.1350 +0 0.0998 +0 0.0627 +0 0.1219 +0 0.1364 +0 0.0456 +0 0.0953 +0 0.1949 +0 0.2142 +0 0.1040 +0 0.0634 +0 0.0928 +0 0.0834 +0 0.2124 +0 0.0936 +0 0.1032 +0 0.0980 +0 0.3336 +0 0.0668 +0 0.1263 +0 0.1310 +0 0.0781 +0 0.3704 +0 0.1274 +0 0.1290 +0 0.0500 +0 0.1630 +1 0.7645 +0 0.0597 +0 0.1419 +0 0.1250 +0 0.0553 +0 0.1758 +0 0.0921 +0 0.1599 +0 0.0598 +0 0.1737 +0 0.1219 +0 0.0805 +0 0.0410 +0 0.0853 +0 0.2014 +0 0.1533 +0 0.0934 +0 0.2634 +0 0.1693 +0 0.0997 +0 0.3177 +0 0.1585 +0 0.1860 +0 0.0380 +0 0.0856 +0 0.0892 +0 0.0588 +0 0.0777 +0 0.1509 +0 0.0997 +0 0.5874 +0 0.1833 +0 0.2540 +0 0.0696 +0 0.0432 +0 0.4515 +0 0.0725 +0 0.2470 +0 0.0763 +0 0.2249 +0 0.0965 +0 0.1710 +0 0.1999 +0 0.0505 +0 0.0953 +0 0.7266 +0 0.0443 +0 0.1430 +0 0.0804 +0 0.1052 +0 0.0615 +0 0.0668 +0 0.0342 +0 0.0607 +0 0.0447 +0 0.0959 +1 0.8583 +0 0.0434 +0 0.0944 +0 0.3099 +0 0.0544 +0 0.2396 +0 0.0613 +0 0.1064 +0 0.2632 +0 0.1378 +0 0.0573 +0 0.0444 +0 0.0365 +0 0.3691 +0 0.0929 +0 0.1035 +0 0.1859 +0 0.0975 +0 0.0985 +0 0.1089 +1 0.8375 +0 0.1588 +0 0.1061 +0 0.0610 +0 0.3470 +0 0.0962 +0 0.0767 +0 0.1193 +0 0.0931 +0 0.2643 +0 0.1493 +0 0.4479 +0 0.1887 +0 0.0680 +0 0.1235 +0 0.0691 +0 0.1861 +0 0.0526 +0 0.0865 +0 0.1190 +1 0.8374 +0 0.1605 +0 0.0780 +0 0.1965 +0 0.0330 +0 0.0825 +0 0.2151 +0 0.1379 +0 0.1680 +0 0.1487 +0 0.0700 +0 0.0844 +0 0.0969 +0 0.1071 +0 0.0726 +0 0.1371 +0 0.1179 +0 0.1492 +0 0.0509 +0 0.0784 +0 0.0477 +0 0.0982 +0 0.1193 +0 0.0477 +0 0.1564 +0 0.1268 +0 0.1134 +0 0.0843 +0 0.2769 +0 0.2426 +0 0.0538 +0 0.0856 +0 0.2692 +0 0.1252 +0 0.0897 +0 0.1888 +0 0.1149 +0 0.0995 +0 0.3188 +0 0.1226 +0 0.1847 +0 0.1400 +0 0.1113 +0 0.0391 +0 0.1833 +0 0.1540 +0 0.1971 +1 0.8062 +0 0.1324 +0 0.1709 +0 0.0671 +0 0.0850 +0 0.2980 +0 0.0610 +0 0.1044 +0 0.3825 +0 0.1510 +0 0.0589 +0 0.1713 +0 0.1383 +0 0.2186 +0 0.7154 +0 0.1200 +0 0.5115 +0 0.0489 +0 0.1649 +0 0.0677 +0 0.5458 +0 0.1446 +0 0.2317 +0 0.1872 +0 0.1091 +0 0.0598 +0 0.0959 +0 0.1986 +0 0.2328 +0 0.0584 +0 0.0780 +0 0.0604 +0 0.1477 +0 0.0867 +0 0.0647 +0 0.0456 +0 0.0864 +0 0.1443 +0 0.3969 +0 0.0738 +0 0.1398 +0 0.1574 +0 0.1127 +0 0.0668 +0 0.1129 +0 0.1111 +0 0.1108 +0 0.0669 +0 0.1534 +0 0.3392 +0 0.1114 +0 0.1119 +0 0.2455 +0 0.0628 +0 0.0666 +0 0.1724 +0 0.0835 +0 0.0823 +0 0.1984 +0 0.0487 +0 0.0638 +0 0.1194 +0 0.1017 +0 0.1978 +0 0.1417 +0 0.2323 +0 0.0754 +0 0.2448 +0 0.1232 +0 0.0699 +0 0.0689 +0 0.0585 +0 0.0820 +0 0.3516 +0 0.2733 +0 0.2136 +0 0.0699 +0 0.0774 +0 0.1322 +0 0.0807 +0 0.1134 +0 0.0554 +0 0.0798 +0 0.1180 +0 0.1324 +0 0.0568 +0 0.0720 +0 0.0710 +0 0.1552 +0 0.1711 +0 0.0621 +0 0.1636 +0 0.2327 +0 0.0464 +0 0.1572 +0 0.0418 +0 0.2689 +0 0.0540 +0 0.0546 +0 0.0705 +0 0.1261 +0 0.0711 +0 0.1781 +0 0.3489 +0 0.1478 +0 0.1415 +0 0.1003 +0 0.1060 +0 0.0857 +0 0.0832 +0 0.1918 +0 0.1305 +0 0.2481 +0 0.1678 +0 0.2426 +1 0.7559 +0 0.1034 +0 0.0957 +0 0.1455 +0 0.0698 +0 0.0772 +0 0.1079 +0 0.0990 +0 0.1054 +0 0.1222 +0 0.0883 +0 0.0366 +0 0.0413 +0 0.1934 +0 0.3423 +0 0.1083 +0 0.0935 +0 0.0975 +0 0.1110 +0 0.0569 +0 0.1321 +0 0.1361 +0 0.1186 +0 0.0922 +0 0.2143 +0 0.3063 +0 0.0563 +0 0.1963 +1 0.7651 +0 0.1142 +0 0.1979 +0 0.0494 +0 0.1822 +0 0.3975 +0 0.5101 +0 0.1208 +0 0.0577 +0 0.2972 +0 0.1010 +0 0.1188 +0 0.0746 +0 0.1665 +0 0.1511 +0 0.0943 +0 0.1579 +0 0.1510 +0 0.0921 +0 0.0541 +0 0.1101 +0 0.0853 +0 0.1152 +0 0.1655 +0 0.2123 +0 0.1316 +0 0.0721 +0 0.1336 +1 0.8129 +0 0.1624 +0 0.0813 +0 0.0564 +0 0.0960 +0 0.0531 +0 0.0367 +0 0.0822 +0 0.0495 +0 0.1177 +0 0.1377 +0 0.1511 +0 0.3196 +0 0.0807 +0 0.0707 +0 0.1423 +0 0.0356 +0 0.0736 +0 0.0892 +0 0.2356 +0 0.6663 +0 0.1311 +0 0.1045 +0 0.0336 +0 0.0406 +0 0.0795 +0 0.0427 +0 0.0432 +0 0.0397 +0 0.2436 +0 0.0588 +0 0.1836 +0 0.1133 +0 0.2406 +0 0.0425 +0 0.1328 +0 0.1788 +0 0.0882 +0 0.1964 +0 0.0598 +0 0.0542 +0 0.0886 +0 0.1829 +0 0.0979 +0 0.6978 +0 0.1601 +0 0.4077 +0 0.0492 +0 0.1440 +0 0.1313 +0 0.0731 +0 0.1071 +0 0.0763 +0 0.0542 +0 0.1194 +0 0.1448 +0 0.3524 +0 0.1726 +0 0.0584 +0 0.0725 +0 0.1090 +0 0.1299 +0 0.1067 +0 0.1213 +0 0.2088 +0 0.2431 +1 0.7915 +0 0.0570 +0 0.1016 +0 0.0982 +0 0.0805 +0 0.1656 +0 0.1325 +0 0.0786 +0 0.0873 +0 0.1916 +0 0.0835 +0 0.1008 +0 0.1868 +0 0.1698 +0 0.0544 +0 0.0619 +0 0.1628 +0 0.0769 +0 0.0416 +0 0.0979 +0 0.0637 +0 0.0458 +0 0.0517 +0 0.0877 +0 0.1263 +0 0.1668 +0 0.1836 +0 0.1034 +0 0.4238 +0 0.1592 +0 0.1786 +0 0.1668 +0 0.0845 +0 0.0867 +0 0.1238 +0 0.4317 +0 0.2109 +0 0.0921 +0 0.7375 +0 0.0738 +0 0.0798 +0 0.0480 +0 0.0743 +0 0.1626 +0 0.0565 +0 0.1319 +0 0.1104 +0 0.1921 +0 0.1010 +0 0.2076 +0 0.2053 +0 0.0763 +0 0.1638 +0 0.2156 +0 0.0946 +0 0.0873 +0 0.2156 +0 0.0803 +0 0.0690 +0 0.0911 +0 0.1306 +0 0.1645 +0 0.1013 +0 0.1762 +0 0.0559 +0 0.0540 +0 0.1064 +0 0.4126 +1 0.8205 +0 0.1447 +0 0.1064 +0 0.3023 +0 0.0576 +0 0.1327 +0 0.2313 +0 0.0832 +0 0.0678 +0 0.4660 +0 0.1064 +0 0.0998 +0 0.3050 +0 0.0602 +0 0.0673 +0 0.1276 +0 0.0389 +0 0.0924 +0 0.0728 +0 0.0878 +0 0.2157 +0 0.2643 +0 0.0618 +0 0.0857 +0 0.0639 +0 0.0602 +0 0.1902 +0 0.1604 +0 0.0709 +0 0.0663 +0 0.1290 +0 0.2724 +0 0.2575 +0 0.2394 +0 0.0627 +0 0.1195 +0 0.2024 +0 0.1082 +0 0.0794 +0 0.0737 +0 0.0662 +0 0.1737 +0 0.0737 +0 0.0650 +0 0.0489 +0 0.0823 +0 0.0477 +0 0.1983 +0 0.0709 +0 0.1341 +0 0.1072 +0 0.1109 +0 0.3812 +0 0.1414 +0 0.1091 +0 0.1093 +0 0.1650 +0 0.1228 +0 0.0330 +0 0.4778 +0 0.1041 +0 0.2274 +0 0.1713 +0 0.0891 +0 0.0471 +0 0.0712 +0 0.2137 +0 0.1106 +0 0.0940 +0 0.1952 +0 0.0535 +0 0.3427 +0 0.0825 +0 0.1212 +0 0.0627 +0 0.0963 +0 0.4271 +0 0.1550 +1 0.8207 +0 0.0624 +0 0.0490 +0 0.0441 +0 0.0934 +0 0.0509 +0 0.1057 +0 0.1012 +0 0.0612 +0 0.0498 +0 0.2092 +0 0.1902 +0 0.1292 +0 0.2925 +0 0.0705 +0 0.0717 +0 0.7126 +0 0.2130 +0 0.2566 +0 0.5875 +0 0.3949 +0 0.2326 +0 0.2284 +0 0.1272 +0 0.2120 +0 0.1807 +0 0.0906 +0 0.1124 +0 0.0924 +0 0.0575 +0 0.1101 +0 0.1055 +0 0.0513 +0 0.1490 +0 0.0904 +0 0.0737 +0 0.0572 +0 0.0692 +0 0.1675 +0 0.1113 +0 0.1148 +0 0.0682 +0 0.1359 +0 0.1036 +0 0.0901 +0 0.1428 +0 0.1474 +0 0.0660 +0 0.1812 +0 0.1008 +0 0.0377 +0 0.1127 +0 0.6300 +0 0.0834 +0 0.1852 +0 0.0734 +0 0.0652 +0 0.3402 +0 0.1774 +0 0.1405 +0 0.1375 +0 0.1950 +0 0.0703 +0 0.1302 +0 0.2115 +0 0.0337 +0 0.0782 +0 0.1251 +0 0.5550 +0 0.6919 +0 0.2232 +0 0.0521 +0 0.0978 +0 0.0830 +0 0.0896 +0 0.0900 +0 0.1681 +0 0.2477 +0 0.0906 +0 0.1197 +0 0.2334 +0 0.0739 +0 0.0750 +0 0.3709 +0 0.1281 +0 0.0766 +0 0.1383 +0 0.0826 +0 0.0538 +0 0.0653 +0 0.4829 +0 0.0850 +0 0.1146 +0 0.0459 +0 0.0730 +0 0.0519 +0 0.1075 +0 0.1271 +0 0.0721 +0 0.0482 +0 0.1081 +0 0.0837 +0 0.1059 +0 0.0939 +0 0.0977 +0 0.1389 +0 0.1255 +0 0.0462 +0 0.0782 +0 0.2358 +0 0.0706 +0 0.1168 +0 0.1035 +0 0.0648 +0 0.0803 +0 0.0446 +0 0.0530 +0 0.1206 +0 0.1215 +0 0.0841 +0 0.1455 +0 0.1278 +0 0.1475 +0 0.2981 +0 0.0590 +0 0.0533 +0 0.2346 +0 0.4025 +0 0.0627 +0 0.0769 +0 0.2039 +0 0.1133 +0 0.0852 +0 0.0485 +0 0.0703 +0 0.0600 +0 0.1335 +0 0.0635 +0 0.0920 +0 0.1273 +0 0.0771 +0 0.0813 +0 0.1990 +0 0.0658 +0 0.0586 +0 0.2282 +0 0.0645 +0 0.0437 +0 0.1018 +0 0.2397 +0 0.0532 +0 0.1286 +0 0.0502 +0 0.2031 +0 0.0902 +0 0.1483 +0 0.0915 +0 0.0527 +0 0.0704 +0 0.0558 +0 0.1290 +0 0.0552 +0 0.1334 +0 0.0585 +0 0.2058 +0 0.1720 +0 0.0447 +0 0.0734 +1 0.8215 +0 0.2011 +0 0.2134 +0 0.1920 +0 0.2022 +0 0.0770 +0 0.0515 +1 0.8643 +0 0.5559 +0 0.1305 +0 0.1265 +0 0.2564 +0 0.1628 +0 0.0445 +0 0.6987 +0 0.0884 +0 0.0962 +0 0.0896 +0 0.0734 +0 0.0889 +0 0.0642 +0 0.3242 +0 0.0816 +0 0.0482 +0 0.1611 +0 0.2515 +0 0.0440 +0 0.0888 +0 0.3042 +0 0.0664 +0 0.2511 +0 0.0848 +0 0.0995 +0 0.1252 +0 0.2778 +0 0.1658 +0 0.6874 +0 0.0776 +0 0.1179 +0 0.1453 +0 0.0628 +0 0.2899 +0 0.0822 +0 0.0942 +0 0.0635 +0 0.4476 +0 0.3092 +0 0.0657 +0 0.0637 +0 0.0855 +0 0.0869 +0 0.1532 +0 0.0970 +0 0.1550 +1 0.7967 +0 0.1411 +0 0.0660 +0 0.7003 +0 0.1880 +0 0.1304 +0 0.2037 +0 0.0838 +0 0.1154 +0 0.2882 +0 0.3139 +0 0.2974 +0 0.0802 +0 0.1062 +0 0.0795 +0 0.1357 +0 0.1201 +0 0.2160 +0 0.1079 +0 0.1859 +0 0.1524 +0 0.1197 +0 0.1949 +0 0.0658 +0 0.0819 +0 0.1368 +0 0.1240 +0 0.1406 +0 0.0908 +0 0.0755 +0 0.1061 +0 0.0983 +0 0.1198 +0 0.0846 +0 0.0636 +0 0.1349 +0 0.0819 +0 0.7441 +0 0.0830 +0 0.0519 +0 0.1237 +0 0.1492 +0 0.1333 +0 0.0559 +0 0.1623 +0 0.1024 +0 0.1065 +0 0.0900 +0 0.1849 +0 0.0809 +0 0.0700 +0 0.0533 +0 0.0566 +0 0.0588 +0 0.0929 +0 0.0684 +0 0.2065 +0 0.0514 +0 0.4006 +0 0.2158 +0 0.6386 +0 0.1306 +0 0.1190 +0 0.1260 +0 0.1132 +0 0.3025 +0 0.0986 +0 0.0858 +0 0.0974 +0 0.0729 +0 0.2763 +0 0.4193 +0 0.1582 +0 0.1824 +0 0.2483 +0 0.1491 +0 0.1170 +0 0.0412 +0 0.3015 +0 0.0805 +0 0.0557 +0 0.1519 +0 0.0490 +0 0.0476 +0 0.0659 +0 0.0977 +0 0.0642 +0 0.1339 +0 0.0868 +0 0.1449 +0 0.1104 +0 0.0838 +1 0.7633 +0 0.2910 +0 0.0513 +0 0.1900 +0 0.1123 +0 0.0656 +0 0.0504 +0 0.2724 +0 0.1398 +0 0.1818 +0 0.0682 +0 0.0673 +0 0.5512 +0 0.0607 +0 0.1061 +0 0.0799 +0 0.0936 +0 0.0890 +0 0.0622 +0 0.0936 +0 0.1301 +0 0.2812 +0 0.1723 +0 0.6530 +0 0.0590 +0 0.0471 +0 0.0954 +0 0.2000 +0 0.0898 +0 0.1029 +0 0.6963 +0 0.1942 +0 0.0940 +0 0.0886 +0 0.1018 +0 0.0652 +0 0.0997 +0 0.1802 +0 0.0773 +0 0.0421 +0 0.0751 +0 0.2644 +0 0.0956 +0 0.0762 +0 0.1075 +0 0.0831 +0 0.0924 +0 0.1563 +0 0.0513 +0 0.0406 +0 0.0924 +0 0.0753 +0 0.0650 +0 0.0567 +0 0.2685 +0 0.1732 +0 0.1049 +0 0.0932 +0 0.0535 +0 0.2423 +0 0.1281 +0 0.1394 +0 0.1059 +0 0.0512 +0 0.3118 +0 0.0901 +0 0.0910 +0 0.0956 +0 0.0859 +0 0.0909 +0 0.1780 +0 0.1168 +0 0.0767 +0 0.1279 +0 0.0560 +0 0.0682 +0 0.1279 +0 0.0392 +0 0.1152 +0 0.3893 +0 0.0982 +0 0.1128 +0 0.1289 +0 0.2683 +0 0.1265 +0 0.1121 +0 0.1237 +0 0.3554 +0 0.1324 +0 0.1067 +0 0.0424 +0 0.0410 +0 0.0534 +0 0.2367 +0 0.0841 +0 0.1158 +0 0.1245 +0 0.0741 +0 0.0811 +0 0.0711 +0 0.1637 +0 0.0878 +0 0.0993 +0 0.0484 +0 0.0775 +0 0.1265 +0 0.1154 +0 0.0441 +0 0.1600 +0 0.0502 +0 0.1113 +0 0.1241 +0 0.1191 +0 0.1142 +0 0.1325 +0 0.0596 +0 0.1644 +0 0.0779 +0 0.0593 +0 0.1245 +0 0.6596 +0 0.0527 +0 0.2652 +0 0.1124 +0 0.1387 +0 0.1257 +0 0.0689 +0 0.1053 +0 0.1225 +0 0.0977 +0 0.1473 +0 0.1576 +0 0.0724 +0 0.0746 +0 0.1780 +0 0.0850 +0 0.0712 +0 0.1079 +0 0.0796 +0 0.0437 +0 0.0811 +0 0.2923 +0 0.4059 +0 0.2873 +0 0.0657 +0 0.4141 +0 0.1237 +0 0.3852 +0 0.2526 +0 0.1000 +0 0.3144 +0 0.0611 +0 0.0674 +0 0.1023 +0 0.2104 +0 0.1623 +0 0.2033 +0 0.0420 +0 0.0897 +0 0.1018 +0 0.0951 +0 0.1343 +0 0.2153 +0 0.0348 +0 0.1866 +0 0.3062 +0 0.0986 +0 0.0765 +0 0.0727 +0 0.0884 +0 0.0873 +0 0.1319 +0 0.0783 +0 0.0725 +0 0.0723 +0 0.0821 +0 0.2089 +0 0.5795 +0 0.1333 +0 0.0919 +0 0.1009 +0 0.0289 +0 0.1594 +0 0.0464 +0 0.1745 +0 0.5292 +0 0.1224 +0 0.1609 +0 0.1310 +0 0.0857 +0 0.3548 +0 0.0603 +0 0.0608 +0 0.1436 +0 0.1836 +0 0.1072 +0 0.0820 +0 0.1696 +0 0.2708 +1 0.8660 +0 0.0990 +0 0.1858 +0 0.0563 +0 0.6265 +0 0.1943 +0 0.0421 +0 0.0728 +0 0.1880 +0 0.0787 +0 0.0878 +0 0.2313 +0 0.1038 +0 0.0813 +0 0.0588 +0 0.1923 +0 0.0697 +0 0.2692 +0 0.1053 +0 0.0690 +0 0.0825 +0 0.0748 +0 0.1074 +0 0.1937 +0 0.0753 +0 0.0552 +0 0.1512 +0 0.0977 +0 0.1295 +0 0.1091 +0 0.0857 +0 0.1139 +0 0.1277 +0 0.1150 +0 0.2981 +0 0.0908 +0 0.0423 +0 0.0855 +0 0.0751 +0 0.0920 +0 0.0920 +0 0.1856 +0 0.1246 +0 0.3091 +0 0.0633 +0 0.0883 +0 0.1199 +0 0.1180 +0 0.0626 +0 0.1066 +0 0.0965 +0 0.0690 +0 0.1880 +0 0.2208 +0 0.1224 +0 0.2046 +0 0.0752 +0 0.1474 +0 0.1479 +0 0.0386 +0 0.1694 +0 0.0807 +1 0.8413 +0 0.0716 +0 0.1006 +0 0.2097 +1 0.7991 +0 0.1187 +0 0.1453 +0 0.1063 +0 0.0985 +0 0.0634 +0 0.1544 +0 0.0898 +0 0.2096 +0 0.0445 +0 0.1130 +0 0.0754 +0 0.0996 +1 0.8383 +0 0.0874 +0 0.0728 +0 0.0735 +0 0.6383 +0 0.3014 +0 0.0859 +0 0.2614 +0 0.0615 +0 0.2613 +0 0.0785 +0 0.1748 +0 0.1085 +0 0.0886 +0 0.2762 +0 0.0557 +0 0.1333 +0 0.1432 +0 0.1137 +0 0.0754 +0 0.0881 +0 0.0479 +0 0.0744 +0 0.7323 +0 0.1367 +0 0.1264 +0 0.0416 +0 0.1519 +0 0.5308 +0 0.1171 +0 0.1200 +0 0.2460 +0 0.0868 +0 0.0875 +0 0.1549 +0 0.1614 +0 0.0614 +0 0.2153 +0 0.1735 +0 0.0891 +0 0.0599 +0 0.1455 +0 0.2360 +0 0.1442 +0 0.0445 +0 0.3663 +1 0.7597 +0 0.1137 +0 0.1515 +0 0.1194 +0 0.2341 +0 0.2367 +0 0.2041 +0 0.4404 +0 0.3324 +0 0.1619 +0 0.0534 +0 0.0936 +0 0.0497 +0 0.1623 +0 0.0649 +0 0.0804 +0 0.0680 +0 0.0939 +0 0.0822 +0 0.1528 +0 0.1186 +0 0.0826 +0 0.1239 +0 0.2380 +0 0.2360 +0 0.3047 +1 0.7871 +0 0.1045 +0 0.0824 +0 0.1115 +0 0.0735 +0 0.0602 +0 0.2648 +0 0.1498 +0 0.0608 +0 0.0836 +0 0.1760 +0 0.0374 +0 0.1575 +0 0.0537 +0 0.1070 +0 0.0547 +0 0.0973 +0 0.0655 +0 0.4048 +0 0.2854 +1 0.7694 +0 0.1858 +0 0.3529 +0 0.1118 +0 0.0668 +0 0.1968 +0 0.6743 +0 0.1424 +0 0.1790 +0 0.0923 +0 0.1928 +0 0.1047 +0 0.0889 +0 0.1628 +0 0.0739 +0 0.1209 +0 0.0613 +0 0.2883 +0 0.0862 +0 0.3483 +0 0.0957 +0 0.0623 +0 0.2802 +0 0.0900 +0 0.0420 +0 0.1399 +0 0.5378 +0 0.0614 +0 0.6163 +0 0.1147 +0 0.5463 +0 0.1413 +0 0.1608 +0 0.1814 +1 0.8063 +0 0.0827 +0 0.1549 +0 0.1439 +0 0.0972 +0 0.1899 +0 0.4932 +0 0.1416 +0 0.0704 +0 0.0792 +0 0.0805 +0 0.1656 +0 0.1138 +0 0.0388 +0 0.1688 +0 0.2233 +0 0.1807 +0 0.1072 +0 0.1446 +0 0.0566 +0 0.2383 +0 0.0551 +0 0.0960 +0 0.0962 +0 0.1844 +0 0.2056 +0 0.1030 +0 0.0811 +0 0.2301 +0 0.0322 +0 0.0668 +0 0.1697 +0 0.1890 +0 0.2999 +0 0.2381 +0 0.6586 +0 0.2441 +0 0.1265 +0 0.1383 +0 0.0635 +0 0.1720 +0 0.0662 +0 0.0725 +0 0.2001 +0 0.0710 +0 0.3063 +0 0.0579 +0 0.1608 +0 0.0650 +0 0.0840 +0 0.1856 +0 0.1195 +0 0.1457 +0 0.0860 +0 0.2619 +0 0.0527 +0 0.1978 +0 0.1209 +0 0.3980 +0 0.0977 +0 0.0687 +0 0.0336 +0 0.0542 +0 0.2148 +0 0.0520 +0 0.5469 +0 0.0802 +0 0.1484 +0 0.1158 +0 0.0617 +0 0.1031 +0 0.1898 +0 0.0793 +0 0.2074 +0 0.0743 +0 0.0897 +0 0.0853 +0 0.0870 +0 0.2353 +0 0.0740 +0 0.1307 +0 0.0370 +0 0.1419 +0 0.0838 +0 0.1351 +0 0.2693 +0 0.2153 +0 0.0628 +0 0.2207 +0 0.1418 +0 0.1041 +0 0.1287 +0 0.1067 +0 0.0459 +0 0.1813 +0 0.0686 +0 0.1046 +0 0.1093 +0 0.0867 +0 0.0468 +0 0.1024 +0 0.2357 +0 0.2104 +0 0.2215 +0 0.1648 +0 0.0937 +0 0.2341 +0 0.0833 +0 0.2042 +0 0.2529 +0 0.0823 +0 0.0898 +0 0.0796 +0 0.0795 +0 0.1681 +0 0.1395 +0 0.0980 +0 0.1522 +0 0.0802 +0 0.1436 +0 0.2553 +0 0.1331 +0 0.0651 +0 0.0613 +0 0.2534 +0 0.0362 +0 0.1202 +0 0.1496 +0 0.0999 +0 0.0954 +0 0.0805 +0 0.1783 +0 0.0833 +0 0.0972 +0 0.0915 +0 0.1638 +0 0.0733 +0 0.3128 +0 0.1358 +0 0.0894 +0 0.0930 +0 0.0659 +0 0.3780 +0 0.0881 +1 0.8118 +0 0.3626 +0 0.1794 +0 0.2296 +0 0.1647 +0 0.1053 +0 0.0391 +0 0.2375 +0 0.1388 +0 0.4021 +0 0.1119 +0 0.1012 +0 0.0616 +0 0.1569 +0 0.3860 +0 0.0419 +0 0.0596 +0 0.2275 +0 0.0693 +0 0.1445 +0 0.0494 +0 0.0429 +0 0.1463 +0 0.2725 +0 0.0457 +0 0.0873 +0 0.0784 +0 0.1851 +0 0.0783 +0 0.2488 +0 0.1078 +0 0.0482 +0 0.0935 +0 0.3777 +0 0.3838 +0 0.0545 +0 0.2277 +0 0.0523 +0 0.1112 +0 0.0577 +0 0.0997 +0 0.1403 +0 0.1773 +0 0.1290 +0 0.0730 +0 0.0524 +0 0.1734 +0 0.1927 +0 0.1150 +0 0.1064 +0 0.1165 +0 0.0743 +0 0.0657 +0 0.0589 +0 0.1575 +0 0.1330 +0 0.0520 +0 0.0960 +0 0.1482 +0 0.4378 +0 0.1174 +0 0.0809 +0 0.1356 +0 0.1284 +0 0.2426 +0 0.0945 +0 0.3162 +0 0.2072 +0 0.1371 +0 0.2669 +0 0.1556 +0 0.2071 +0 0.0455 +0 0.0884 +0 0.0763 +0 0.0932 +0 0.0874 +0 0.1511 +0 0.1040 +0 0.0559 +0 0.2153 +0 0.1257 +0 0.0654 +0 0.0496 +0 0.2019 +0 0.2010 +0 0.2465 +0 0.2363 +0 0.1952 +0 0.1552 +0 0.0975 +0 0.0980 +0 0.0626 +0 0.0396 +0 0.1098 +0 0.1598 +0 0.0627 +0 0.1472 +0 0.5423 +0 0.0689 +0 0.1186 +0 0.1205 +0 0.0516 +0 0.2269 +0 0.2737 +0 0.2293 +0 0.1441 +0 0.1104 +0 0.1626 +0 0.1219 +0 0.0744 +0 0.1906 +0 0.1016 +0 0.0696 +0 0.0967 +0 0.2738 +1 0.7937 +0 0.0963 +0 0.1090 +0 0.1053 +0 0.1067 +0 0.4798 +0 0.1985 +0 0.1092 +0 0.0496 +0 0.3060 +0 0.1890 +0 0.1173 +0 0.1944 +0 0.1502 +0 0.3099 +0 0.0728 +0 0.0620 +0 0.4925 +0 0.0692 +0 0.3118 +0 0.1109 +0 0.1046 +0 0.1432 +0 0.1171 +0 0.1351 +0 0.1024 +0 0.1053 +0 0.2664 +0 0.1183 +0 0.5368 +0 0.0616 +0 0.0700 +0 0.1620 +0 0.0438 +0 0.0930 +0 0.0840 +0 0.0513 +0 0.5318 +0 0.1372 +0 0.1657 +0 0.1805 +0 0.0402 +0 0.3408 +0 0.0503 +0 0.1616 +0 0.1066 +0 0.1090 +0 0.1206 +0 0.0987 +1 0.7943 +0 0.0853 +0 0.2509 +0 0.0453 +0 0.1489 +0 0.0284 +0 0.0502 +0 0.2259 +0 0.0916 +0 0.0870 +0 0.1326 +0 0.0966 +0 0.1116 +0 0.0627 +0 0.1297 +0 0.0516 +0 0.3446 +0 0.0879 +0 0.1864 +0 0.1668 +0 0.1461 +0 0.1208 +0 0.1248 +0 0.0885 +0 0.2359 +0 0.0529 +0 0.0978 +0 0.1799 +0 0.1427 +0 0.0452 +0 0.0629 +0 0.6714 +0 0.0731 +0 0.1008 +0 0.0983 +0 0.1495 +0 0.1248 +0 0.0561 +0 0.0772 +0 0.0683 +0 0.0817 +0 0.0943 +0 0.2732 +0 0.1121 +0 0.1006 +0 0.2816 +0 0.1065 +0 0.0778 +0 0.1105 +0 0.1616 +0 0.2976 +0 0.1539 +0 0.0719 +0 0.0750 +0 0.0410 +1 0.8460 +0 0.3616 +0 0.0560 +0 0.0654 +0 0.2726 +0 0.0632 +0 0.0732 +0 0.0855 +0 0.0813 +0 0.2409 +0 0.2196 +0 0.0472 +0 0.1128 +0 0.0406 +0 0.1203 +0 0.0998 +0 0.1046 +0 0.0809 +0 0.3747 +0 0.0943 +0 0.1044 +0 0.0859 +0 0.1975 +0 0.0453 +0 0.0791 +0 0.0465 +0 0.1117 +0 0.0418 +0 0.2256 +0 0.0781 +0 0.0744 +0 0.0601 +0 0.0865 +0 0.1094 +0 0.2407 +0 0.0896 +0 0.1006 +0 0.1405 +0 0.0789 +0 0.5822 +0 0.1337 +0 0.1882 +0 0.0643 +0 0.0800 +0 0.1165 +0 0.0991 +0 0.0999 +0 0.0855 +0 0.0584 +0 0.0506 +0 0.1351 +0 0.0682 +0 0.0634 +0 0.2812 +0 0.0750 +0 0.0909 +0 0.0864 +0 0.0879 +0 0.4091 +0 0.1443 +0 0.1339 +0 0.0791 +0 0.1623 +0 0.5646 +0 0.2114 +0 0.0577 +0 0.0825 +0 0.0994 +0 0.2606 +0 0.3491 +0 0.0537 +0 0.1470 +0 0.0577 +0 0.1291 +0 0.4068 +0 0.1090 +0 0.0485 +0 0.0591 +0 0.2268 +0 0.1785 +0 0.1023 +0 0.1592 +0 0.2538 +0 0.1214 +0 0.0622 +0 0.1728 +0 0.0431 +0 0.0731 +0 0.0655 +0 0.0752 +0 0.5178 +0 0.0973 +0 0.1887 +0 0.1331 +0 0.0976 +0 0.7013 +0 0.1017 +0 0.0833 +0 0.2711 +0 0.0850 +0 0.5798 +0 0.0790 +1 0.8281 +0 0.0777 +0 0.0549 +0 0.7387 +1 0.8711 +0 0.1540 +1 0.8664 +0 0.1215 +0 0.1766 +0 0.1555 +0 0.0947 +0 0.2733 +0 0.0842 +0 0.2523 +0 0.0645 +0 0.0929 +0 0.0601 +0 0.1196 +0 0.0723 +0 0.0937 +0 0.1377 +0 0.0666 +0 0.1532 +0 0.5492 +0 0.6837 +0 0.2080 +0 0.1453 +0 0.5696 +0 0.0947 +0 0.1404 +0 0.3453 +0 0.1185 +0 0.1884 +0 0.0439 +0 0.0575 +0 0.2857 +0 0.1210 +0 0.3270 +0 0.2854 +0 0.1662 +0 0.0756 +0 0.1191 +0 0.0597 +0 0.1931 +0 0.0577 +0 0.2727 +0 0.1984 +0 0.1783 +0 0.0855 +0 0.0880 +0 0.0721 +0 0.2433 +0 0.2761 +0 0.0590 +0 0.0714 +0 0.0681 +0 0.0741 +0 0.0825 +0 0.0963 +0 0.1040 +0 0.0612 +0 0.1181 +0 0.1724 +0 0.3186 +0 0.0647 +0 0.0784 +0 0.1194 +0 0.1021 +0 0.0537 +0 0.1042 +0 0.0949 +0 0.0946 +0 0.1438 +0 0.1456 +0 0.0730 +0 0.0644 +0 0.0910 +0 0.1715 +0 0.1618 +0 0.1987 +0 0.0997 +0 0.0808 +0 0.0972 +0 0.1321 +0 0.1995 +0 0.1548 +0 0.0994 +0 0.2351 +0 0.1734 +0 0.1699 +0 0.0400 +0 0.1008 +0 0.0536 +0 0.0993 +0 0.3426 +0 0.0445 +0 0.1300 +0 0.1543 +0 0.0942 +0 0.2578 +0 0.0596 +0 0.7495 +0 0.1584 +0 0.1626 +0 0.0939 +0 0.0691 +0 0.3248 +0 0.0602 +0 0.0589 +1 0.7691 +0 0.0932 +0 0.0614 +0 0.1012 +0 0.0576 +0 0.2374 +0 0.2015 +0 0.2339 +0 0.0426 +0 0.1282 +0 0.1547 +0 0.2704 +0 0.1184 +0 0.1212 +0 0.1114 +0 0.1385 +0 0.0734 +0 0.1106 +0 0.0856 +0 0.0835 +0 0.1648 +0 0.0503 +0 0.0431 +0 0.0495 +0 0.1495 +0 0.0857 +0 0.0935 +0 0.1507 +0 0.0753 +0 0.0808 +0 0.2746 +0 0.1083 +0 0.1084 +0 0.0861 +0 0.0502 +0 0.1817 +0 0.1720 +0 0.2257 +0 0.1748 +1 0.7941 +0 0.1546 +0 0.2243 +0 0.3171 +0 0.0480 +0 0.1262 +0 0.0499 +0 0.1949 +1 0.8614 +0 0.0681 +0 0.0640 +0 0.0634 +0 0.0547 +0 0.1595 +0 0.0928 +0 0.2091 +0 0.2885 +0 0.1892 +0 0.0827 +0 0.1596 +0 0.1405 +0 0.1450 +0 0.0703 +0 0.0667 +0 0.2200 +0 0.0713 +0 0.0456 +0 0.3276 +0 0.0793 +1 0.8267 +0 0.0463 +0 0.2020 +0 0.1900 +0 0.1990 +0 0.0511 +0 0.0557 +0 0.0911 +0 0.1142 +0 0.0699 +0 0.0829 +0 0.1034 +0 0.0821 +0 0.1150 +0 0.1633 +0 0.0536 +1 0.8676 +0 0.1720 +0 0.1398 +0 0.1627 +0 0.2342 +0 0.1030 +0 0.1436 +0 0.0888 +0 0.0904 +0 0.2379 +0 0.1002 +0 0.0907 +0 0.0777 +0 0.2997 +0 0.2255 +0 0.0798 +0 0.1239 +0 0.0664 +0 0.0855 +0 0.1719 +0 0.0321 +0 0.0480 +0 0.1356 +0 0.1084 +0 0.1355 +0 0.0683 +0 0.0656 +0 0.7109 +0 0.1730 +0 0.1410 +0 0.5442 +0 0.1032 +0 0.0410 +0 0.0906 +0 0.1746 +0 0.1016 +0 0.1180 +0 0.0581 +0 0.0978 +0 0.0577 +0 0.0710 +0 0.1094 +0 0.4651 +0 0.1004 +0 0.1501 +0 0.0866 +0 0.1184 +0 0.0948 +0 0.1928 +0 0.1488 +0 0.3789 +0 0.0600 +0 0.2036 +0 0.4788 +0 0.0688 +0 0.3851 +0 0.1436 +1 0.7827 +0 0.0364 +0 0.1219 +0 0.1061 +0 0.0876 +0 0.1251 +0 0.0614 +0 0.0486 +0 0.0823 +0 0.2324 +0 0.0601 +0 0.0753 +0 0.2718 +0 0.0541 +0 0.1069 +0 0.0512 +0 0.1230 +0 0.2072 +0 0.1129 +0 0.0682 +0 0.6151 +0 0.0518 +0 0.1457 +0 0.1002 +0 0.1746 +0 0.0685 +0 0.1881 +0 0.1407 +0 0.0774 +0 0.4251 +0 0.0733 +0 0.0915 +0 0.1964 +0 0.1485 +0 0.0943 +0 0.0587 +0 0.6992 +0 0.1773 +0 0.1861 +1 0.7943 +0 0.2247 +0 0.1548 +0 0.1022 +0 0.1791 +0 0.2285 +0 0.2607 +0 0.3206 +0 0.0729 +0 0.0692 +0 0.0958 +0 0.1041 +0 0.2754 +0 0.1139 +0 0.0932 +0 0.1771 +0 0.0528 +0 0.0561 +0 0.0684 +0 0.0818 +0 0.1068 +0 0.0724 +0 0.6376 +0 0.1014 +0 0.2421 +0 0.2864 +0 0.0588 +0 0.0927 +0 0.0805 +0 0.0839 +0 0.0743 +0 0.0810 +0 0.0418 +0 0.0951 +0 0.2453 +0 0.0758 +1 0.8038 +0 0.0344 +0 0.0850 +0 0.1163 +0 0.2208 +0 0.0536 +0 0.0836 +0 0.2652 +0 0.3239 +0 0.7488 +0 0.1689 +0 0.0437 +0 0.1325 +0 0.0655 +0 0.0636 +0 0.1366 +0 0.1918 +0 0.1271 +0 0.0491 +0 0.0745 +0 0.0996 +0 0.1217 +0 0.2051 +1 0.7884 +0 0.0766 +0 0.2541 +0 0.0342 +0 0.1135 +0 0.1443 +0 0.0677 +0 0.1107 +0 0.1370 +1 0.8627 +0 0.2984 +0 0.1406 +0 0.1019 +0 0.1714 +0 0.1377 +0 0.1327 +0 0.2213 +0 0.2580 +0 0.1255 +0 0.1072 +0 0.1634 +0 0.1366 +0 0.0640 +0 0.1020 +0 0.2496 +0 0.0429 +0 0.2736 +0 0.0920 +0 0.0712 +0 0.1380 +0 0.0587 +1 0.7589 +0 0.0914 +0 0.0827 +0 0.0759 +0 0.0851 +0 0.0556 +0 0.1709 +0 0.1233 +0 0.1485 +0 0.0963 +0 0.2497 +0 0.1904 +0 0.1607 +0 0.0786 +0 0.1923 +0 0.0650 +0 0.0726 +0 0.0416 +0 0.1678 +0 0.1569 +0 0.1313 +0 0.0559 +0 0.1538 +0 0.2019 +0 0.1982 +0 0.1110 +0 0.0856 +0 0.2501 +0 0.1311 +0 0.1776 +0 0.1972 +0 0.0409 +0 0.1554 +0 0.1972 +0 0.0757 +0 0.0904 +0 0.0927 +0 0.0383 +0 0.1409 +0 0.2324 +0 0.0658 +0 0.3167 +0 0.2424 +0 0.0909 +0 0.1170 +0 0.0873 +0 0.0998 +0 0.1959 +0 0.1608 +0 0.2120 +1 0.8269 +0 0.6929 +0 0.0764 +0 0.2430 +0 0.0945 +0 0.0529 +1 0.8192 +0 0.0727 +0 0.2192 +0 0.0883 +0 0.0755 +0 0.0484 +0 0.5776 +0 0.0501 +0 0.1500 +0 0.0953 +0 0.0564 +0 0.2901 +0 0.1665 +0 0.2005 +0 0.0499 +0 0.1485 +0 0.0570 +0 0.2124 +0 0.6375 +0 0.0363 +0 0.0470 +0 0.0736 +0 0.0558 +0 0.0512 +0 0.0808 +0 0.3128 +0 0.0730 +0 0.0473 +0 0.3362 +0 0.0630 +0 0.0643 +0 0.1209 +0 0.0648 +0 0.1251 +0 0.0695 +0 0.0955 +0 0.0962 +0 0.2329 +0 0.1141 +0 0.3923 +0 0.0561 +0 0.1668 +0 0.2498 +0 0.2757 +0 0.1548 +0 0.1119 +0 0.1866 +0 0.1618 +0 0.1053 +0 0.0634 +0 0.0553 +0 0.2583 +0 0.1762 +0 0.0486 +0 0.2138 +0 0.0877 +0 0.0990 +0 0.4941 +0 0.2297 +0 0.0766 +0 0.0493 +0 0.1538 +0 0.0792 +0 0.0607 +0 0.2436 +0 0.1600 +0 0.0291 +0 0.1056 +0 0.2015 +0 0.1232 +0 0.1492 +0 0.0779 +0 0.1764 +0 0.3490 +0 0.1494 +0 0.1753 +1 0.8114 +0 0.0452 +0 0.1155 +0 0.0841 +1 0.8627 +0 0.0859 +0 0.2818 +0 0.0551 +0 0.2066 +0 0.0795 +0 0.0462 +0 0.2400 +0 0.1130 +0 0.0713 +0 0.0336 +0 0.2696 +0 0.1888 +0 0.0619 +0 0.1789 +0 0.0331 +0 0.0721 +0 0.2044 +0 0.1544 +0 0.0844 +0 0.1362 +0 0.0595 +0 0.0420 +0 0.0935 +0 0.1146 +0 0.2855 +0 0.0798 +0 0.2678 +0 0.0827 +0 0.2241 +0 0.0857 +0 0.0995 +0 0.0505 +0 0.0647 +0 0.1304 +0 0.0870 +0 0.0831 +0 0.0771 +0 0.0804 +0 0.2503 +0 0.0802 +0 0.0847 +0 0.0474 +0 0.2184 +0 0.0617 +0 0.0344 +0 0.2759 +0 0.1492 +0 0.1411 +0 0.0780 +0 0.1884 +0 0.0928 +0 0.0493 +0 0.0330 +0 0.7211 +0 0.1556 +0 0.1951 +0 0.5170 +1 0.8193 +0 0.1018 +0 0.0836 +0 0.1222 +0 0.1028 +0 0.1137 +0 0.0446 +0 0.1670 +0 0.0276 +0 0.1659 +0 0.1420 +0 0.2344 +0 0.5490 +0 0.0898 +0 0.3463 +0 0.3600 +0 0.1186 +0 0.1259 +0 0.1778 +0 0.0470 +0 0.0902 +0 0.1301 +0 0.0559 +0 0.1563 +0 0.1385 +0 0.0807 +0 0.0614 +0 0.0631 +0 0.1121 +0 0.1482 +0 0.0945 +0 0.1731 +0 0.2254 +0 0.0534 +0 0.1168 +0 0.1888 +0 0.1057 +0 0.2105 +0 0.0672 +0 0.0549 +0 0.1798 +0 0.6450 +0 0.0628 +0 0.4714 +0 0.1290 +0 0.0337 +0 0.1493 +0 0.1035 +0 0.1402 +0 0.1810 +0 0.1685 +0 0.0831 +1 0.7525 +0 0.1140 +0 0.0924 +0 0.0819 +0 0.1213 +0 0.1000 +0 0.1670 +0 0.0388 +0 0.1680 +0 0.5500 +0 0.1906 +0 0.0423 +0 0.0713 +0 0.1414 +0 0.0906 +0 0.0525 +0 0.0621 +0 0.1453 +0 0.1080 +0 0.2100 +0 0.0899 +0 0.1185 +0 0.0593 +0 0.2172 +0 0.2182 +0 0.0570 +0 0.0876 +0 0.0946 +0 0.1867 +0 0.0728 +1 0.7834 +0 0.0840 +0 0.0624 +0 0.2948 +1 0.7911 +0 0.0660 +0 0.1534 +0 0.1433 +0 0.0598 +0 0.0730 +0 0.1427 +0 0.1408 +0 0.0850 +0 0.1056 +0 0.0661 +0 0.1316 +0 0.1392 +0 0.0874 +1 0.8216 +0 0.0975 +0 0.0436 +0 0.2600 +0 0.0594 +0 0.0887 +0 0.0528 +0 0.0869 +0 0.1304 +0 0.0570 +0 0.0682 +0 0.0933 +0 0.0418 +0 0.0443 +0 0.1456 +0 0.1177 +0 0.0924 +0 0.1877 +0 0.0447 +0 0.0414 +0 0.1308 +0 0.1422 +0 0.4501 +0 0.0356 +0 0.1130 +0 0.2474 +0 0.1263 +0 0.1290 +0 0.0777 +0 0.0394 +0 0.1917 +0 0.1064 +0 0.0457 +0 0.2551 +0 0.0933 +0 0.0947 +0 0.0770 +0 0.1318 +0 0.6774 +0 0.0906 +0 0.1794 +0 0.6255 +0 0.0708 +0 0.0858 +0 0.1019 +0 0.0568 +0 0.1358 +0 0.1733 +0 0.0667 +0 0.1156 +0 0.1288 +0 0.0494 +0 0.0785 +0 0.0745 +0 0.0823 +0 0.0490 +0 0.2679 +0 0.0985 +0 0.0936 +0 0.0896 +0 0.0462 +0 0.0961 +0 0.2421 +0 0.0936 +0 0.2253 +0 0.0627 +0 0.3002 +0 0.0694 +0 0.1074 +0 0.1277 +0 0.0493 +0 0.0993 +0 0.1527 +0 0.1103 +0 0.0998 +0 0.1642 +0 0.0405 +0 0.2408 +0 0.0507 +0 0.1313 +0 0.0449 +0 0.4262 +0 0.0919 +0 0.0556 +0 0.0840 +0 0.0850 +0 0.0719 +0 0.0735 +0 0.0683 +0 0.0813 +0 0.1788 +0 0.1330 +0 0.0849 +0 0.0751 +0 0.0950 +0 0.0910 +0 0.1340 +0 0.0841 +0 0.1282 +0 0.0624 +0 0.1092 +0 0.1515 +0 0.0741 +0 0.0639 +0 0.0511 +0 0.1825 +0 0.1659 +0 0.5847 +0 0.1105 +0 0.0781 +0 0.0757 +0 0.0713 +0 0.0992 +0 0.3286 +0 0.0684 +0 0.0749 +0 0.0401 +0 0.0676 +1 0.7743 +0 0.0794 +0 0.1538 +0 0.0950 +0 0.1481 +0 0.0701 +0 0.4998 +0 0.0889 +0 0.1219 +0 0.0893 +0 0.0727 +0 0.1415 +0 0.0587 +0 0.0842 +0 0.2668 +0 0.0638 +0 0.1350 +0 0.2381 +0 0.0457 +0 0.0653 +0 0.0551 +0 0.0809 +0 0.2433 +0 0.0499 +0 0.0490 +0 0.0823 +0 0.1047 +0 0.1144 +0 0.2913 +0 0.0683 +0 0.1017 +0 0.0758 +0 0.2407 +0 0.3118 +0 0.2868 +0 0.0781 +0 0.0773 +0 0.1673 +0 0.0574 +0 0.2335 +1 0.8015 +0 0.1893 +0 0.1028 +0 0.0305 +0 0.1122 +0 0.0872 +0 0.4015 +0 0.1221 +0 0.5673 +0 0.0887 +0 0.0537 +0 0.1567 +0 0.2027 +0 0.0576 +0 0.2357 +0 0.0621 +0 0.0964 +0 0.0512 +0 0.1092 +0 0.1069 +0 0.0562 +0 0.1156 +0 0.1031 +0 0.1125 +0 0.4918 +0 0.0441 +0 0.0870 +0 0.1040 +0 0.0923 +0 0.1481 +0 0.0473 +0 0.1015 +0 0.0370 +0 0.2067 +0 0.2416 +0 0.1324 +0 0.1655 +0 0.0613 +0 0.1014 +0 0.1457 +0 0.3641 +0 0.0762 +0 0.1799 +0 0.3677 +0 0.0935 +0 0.3504 +0 0.0741 +0 0.7098 +0 0.3848 +0 0.0840 +0 0.2406 +0 0.1159 +0 0.1424 +0 0.0871 +0 0.1278 +0 0.0339 +0 0.1364 +0 0.1185 +0 0.4526 +0 0.0813 +0 0.1698 +0 0.0545 +0 0.0603 +0 0.1175 +0 0.1619 +0 0.1681 +0 0.1973 +0 0.0800 +0 0.1112 +0 0.0334 +0 0.1043 +0 0.0423 +0 0.0766 +0 0.0979 +0 0.1092 +0 0.2196 +0 0.1301 +0 0.0927 +0 0.0460 +0 0.1266 +0 0.0899 +1 0.8191 +0 0.1579 +0 0.1702 +0 0.0680 +0 0.1186 +0 0.0355 +0 0.1768 +0 0.0361 +0 0.6988 +0 0.0646 +0 0.0695 +0 0.0462 +0 0.4267 +0 0.1168 +0 0.1255 +0 0.1983 +0 0.1400 +0 0.0423 +0 0.0809 +0 0.0863 +0 0.0358 +0 0.1515 +0 0.1920 +0 0.0483 +0 0.0836 +0 0.1111 +0 0.0894 +0 0.4004 +0 0.0353 +0 0.0620 +0 0.1549 +0 0.0594 +0 0.1684 +0 0.3142 +0 0.0954 +0 0.1622 +0 0.1600 +0 0.0823 +0 0.0867 +0 0.1211 +0 0.0740 +0 0.0607 +0 0.0991 +0 0.1542 +0 0.0831 +0 0.2464 +0 0.2476 +0 0.1004 +0 0.0367 +0 0.1200 +0 0.1462 +0 0.0654 +0 0.0956 +0 0.0840 +0 0.3204 +0 0.0602 +0 0.6729 +0 0.0629 +0 0.1591 +0 0.0966 +0 0.0547 +0 0.1074 +0 0.0474 +0 0.1539 +0 0.0667 +0 0.0626 +0 0.1982 +0 0.0569 +0 0.0863 +0 0.0972 +0 0.2020 +0 0.0881 +0 0.0411 +0 0.1269 +0 0.1412 +0 0.0855 +0 0.1155 +0 0.2890 +0 0.1493 +0 0.1353 +0 0.1005 +0 0.0850 +0 0.1676 +0 0.2251 +0 0.1984 +0 0.0942 +0 0.2313 +1 0.8341 +0 0.2119 +0 0.1214 +0 0.0717 +0 0.0793 +0 0.1042 +0 0.2477 +0 0.1192 +0 0.0777 +0 0.1899 +0 0.1913 +0 0.1546 +0 0.1381 +0 0.0809 +0 0.1313 +0 0.2102 +0 0.3215 +0 0.0797 +0 0.0727 +0 0.0630 +0 0.0572 +0 0.0983 +0 0.0950 +0 0.0555 +0 0.0335 +0 0.0662 +0 0.1205 +0 0.1283 +0 0.1482 +0 0.0626 +0 0.0717 +0 0.1784 +0 0.3127 +0 0.1528 +0 0.1594 +0 0.0846 +0 0.0622 +0 0.1032 +0 0.1119 +0 0.1255 +0 0.0912 +0 0.1086 +0 0.1104 +0 0.1369 +0 0.2643 +0 0.1182 +0 0.5473 +0 0.1606 +0 0.2225 +0 0.0820 +0 0.1842 +0 0.3002 +0 0.4505 +0 0.2875 +0 0.1594 +0 0.1626 +0 0.0760 +0 0.1669 +0 0.0375 +0 0.0612 +0 0.2534 +0 0.2474 +0 0.0524 +0 0.0764 +0 0.0723 +0 0.1485 +0 0.0851 +0 0.0502 +0 0.0661 +0 0.1269 +0 0.1402 +0 0.0542 +0 0.1051 +0 0.0981 +0 0.1026 +0 0.1255 +0 0.0928 +0 0.1002 +0 0.1266 +0 0.0850 +0 0.0644 +0 0.0946 +0 0.1432 +0 0.0582 +1 0.8282 +0 0.2407 +0 0.0796 +0 0.1008 +0 0.0523 +0 0.0733 +0 0.1114 +0 0.2025 +0 0.3453 +0 0.1206 +0 0.1240 +0 0.0715 +0 0.3898 +0 0.7490 +0 0.0587 +0 0.1088 +0 0.0325 +0 0.0669 +0 0.3636 +0 0.1564 +0 0.0670 +0 0.1146 +0 0.0738 +0 0.1502 +0 0.0584 +0 0.1233 +0 0.0834 +0 0.1306 +0 0.0820 +0 0.0989 +0 0.1221 +0 0.0667 +0 0.0939 +0 0.1223 +0 0.1243 +0 0.1366 +0 0.0776 +1 0.8862 +0 0.1123 +0 0.0633 +0 0.3635 +0 0.1401 +0 0.1115 +0 0.1674 +0 0.1665 +0 0.1426 +0 0.2797 +0 0.1708 +0 0.0993 +0 0.2643 +0 0.0620 +0 0.6129 +0 0.0928 +0 0.0943 +0 0.1228 +0 0.1117 +0 0.0417 +1 0.8300 +0 0.5293 +0 0.0973 +0 0.1470 +0 0.0718 +0 0.1869 +0 0.2087 +0 0.1858 +0 0.4749 +0 0.0627 +0 0.0677 +0 0.0523 +0 0.0769 +0 0.0780 +0 0.0788 +0 0.1225 +1 0.8471 +0 0.1846 +0 0.0531 +0 0.0865 +0 0.1069 +0 0.1406 +0 0.0421 +0 0.1043 +0 0.2368 +0 0.1596 +0 0.1463 +0 0.1235 +0 0.3769 +0 0.0466 +0 0.0586 +0 0.1570 +0 0.0601 +0 0.0391 +0 0.1257 +0 0.2630 +0 0.1011 +0 0.0592 +0 0.1902 +0 0.0781 +0 0.1484 +0 0.1646 +0 0.1803 +0 0.0678 +0 0.3723 +0 0.0675 +0 0.0458 +0 0.2424 +0 0.0620 +0 0.1042 +0 0.1887 +0 0.1631 +0 0.1382 +0 0.0811 +0 0.1134 +0 0.0964 +0 0.1635 +0 0.4196 +0 0.0794 +0 0.1990 +0 0.4843 +1 0.8169 +0 0.3653 +0 0.1188 +0 0.2068 +0 0.2126 +0 0.1717 +0 0.0654 +0 0.1565 +0 0.2773 +0 0.1206 +0 0.1652 +0 0.2803 +0 0.2741 +0 0.1127 +0 0.0549 +0 0.0799 +0 0.1637 +0 0.1219 +0 0.1355 +0 0.1036 +0 0.1121 +0 0.0943 +0 0.0837 +0 0.1916 +0 0.0918 +0 0.1804 +0 0.0939 +0 0.2228 +0 0.5897 +0 0.0698 +0 0.0727 +0 0.1254 +0 0.0470 +0 0.1246 +0 0.1667 +0 0.7493 +0 0.2562 +0 0.1490 +0 0.0836 +0 0.1306 +0 0.2128 +0 0.2922 +0 0.2265 +0 0.1776 +0 0.0658 +0 0.0953 +0 0.1312 +0 0.1270 +0 0.1989 +0 0.1259 +0 0.0690 +0 0.0987 +0 0.0643 +0 0.1458 +0 0.0807 +0 0.1174 +0 0.2166 +0 0.1328 +0 0.0903 +0 0.1866 +0 0.1363 +0 0.0642 +0 0.4241 +0 0.0700 +0 0.2291 +0 0.5118 +0 0.1380 +0 0.1589 +0 0.1181 +0 0.0476 +0 0.0447 +0 0.0639 +0 0.1636 +0 0.1298 +0 0.4879 +0 0.0832 +0 0.1613 +0 0.0958 +0 0.0807 +0 0.1788 +0 0.0518 +0 0.0627 +0 0.0514 +0 0.2153 +0 0.2224 +0 0.2075 +0 0.1058 +0 0.1205 +0 0.1731 +0 0.0670 +0 0.0869 +0 0.4739 +0 0.4553 +0 0.1803 +0 0.1589 +0 0.0833 +0 0.1121 +0 0.0881 +0 0.1830 +0 0.0591 +0 0.2037 +0 0.2646 +0 0.1050 +0 0.0625 +0 0.3445 +0 0.3643 +0 0.1076 +0 0.1026 +0 0.0538 +0 0.4285 +0 0.0435 +0 0.0519 +0 0.0547 +0 0.0957 +0 0.0816 +0 0.0440 +0 0.1951 +0 0.0812 +0 0.1867 +0 0.2212 +0 0.0881 +0 0.0773 +0 0.2480 +0 0.1148 +0 0.1241 +0 0.0966 +0 0.0763 +0 0.2237 +1 0.8491 +0 0.0582 +0 0.0552 +0 0.0831 +0 0.1141 +0 0.0689 +0 0.3749 +0 0.0772 +0 0.0843 +0 0.0888 +0 0.1116 +0 0.0656 +0 0.0462 +0 0.1263 +0 0.0530 +0 0.0972 +0 0.0950 +0 0.0672 +0 0.2339 +0 0.1206 +0 0.4603 +0 0.0534 +0 0.6038 +0 0.0450 +0 0.0984 +0 0.1435 +0 0.1574 +0 0.0992 +0 0.0605 +0 0.1385 +0 0.1556 +0 0.0661 +0 0.0726 +0 0.0789 +0 0.0929 +0 0.0634 +0 0.0840 +0 0.0860 +0 0.1448 +0 0.0931 +0 0.0345 +0 0.2778 +1 0.8308 +0 0.0810 +0 0.1001 +0 0.0607 +0 0.0474 +0 0.1154 +0 0.1296 +0 0.0740 +0 0.5704 +0 0.0939 +0 0.1146 +0 0.1212 +0 0.2202 +0 0.1346 +0 0.2752 +0 0.0423 +0 0.0620 +0 0.1021 +0 0.0504 +0 0.5096 +0 0.1149 +0 0.0780 +0 0.0499 +0 0.0853 +0 0.2751 +0 0.0720 +0 0.0765 +0 0.3293 +0 0.0760 +0 0.0788 +0 0.1926 +0 0.1525 +0 0.0660 +0 0.1143 +0 0.3704 +0 0.1037 +0 0.1176 +0 0.1698 +0 0.0679 +0 0.1087 +0 0.1309 +0 0.2366 +0 0.1552 +0 0.2252 +0 0.1399 +0 0.1607 +0 0.1998 +0 0.0630 +0 0.1092 +0 0.1450 +0 0.1895 +1 0.7595 +0 0.3317 +0 0.0622 +0 0.1696 +0 0.1326 +0 0.1217 +0 0.1044 +0 0.0846 +0 0.0983 +0 0.0497 +0 0.0495 +0 0.1545 +0 0.0509 +0 0.0930 +0 0.0568 +0 0.3201 +0 0.2666 +0 0.0519 +0 0.0930 +0 0.1068 +0 0.0359 +0 0.1677 +0 0.0520 +0 0.0506 +0 0.1180 +0 0.0654 +0 0.0657 +0 0.0901 +0 0.1939 +0 0.1045 +0 0.0894 +0 0.0934 +0 0.1123 +0 0.0710 +0 0.1006 +1 0.8199 +0 0.0972 +0 0.1076 +0 0.0562 +0 0.6937 +0 0.1920 +0 0.1452 +0 0.1481 +0 0.0590 +0 0.1032 +0 0.1956 +0 0.1438 +0 0.0858 +0 0.0911 +0 0.0510 +0 0.2698 +0 0.0532 +0 0.1737 +0 0.0732 +0 0.1490 +0 0.5189 +0 0.0711 +0 0.0610 +0 0.0915 +0 0.2139 +0 0.0461 +0 0.0786 +0 0.2860 +0 0.5918 +0 0.1462 +0 0.1483 +0 0.1784 +0 0.2394 +0 0.0691 +0 0.0847 +0 0.0638 +0 0.1886 +0 0.0813 +0 0.2414 +0 0.0795 +0 0.2364 +0 0.4067 +0 0.1192 +0 0.1023 +0 0.2988 +0 0.0993 +0 0.1081 +0 0.0670 +0 0.0718 +0 0.0613 +0 0.0525 +0 0.1088 +0 0.1610 +0 0.1244 +0 0.1250 +0 0.1349 +0 0.1431 +0 0.0676 +0 0.1976 +0 0.0750 +0 0.1686 +1 0.8336 +0 0.1869 +0 0.1012 +0 0.0631 +0 0.0459 +0 0.0746 +0 0.0948 +0 0.1249 +0 0.0911 +0 0.2536 +0 0.0709 +1 0.8751 +0 0.0747 +0 0.0666 +0 0.1035 +1 0.7508 +0 0.0896 +0 0.0598 +0 0.1616 +0 0.0646 +0 0.2099 +0 0.0871 +0 0.1995 +0 0.3287 +0 0.0617 +0 0.1580 +0 0.0628 +0 0.1627 +0 0.0611 +0 0.0619 +0 0.0895 +0 0.1115 +0 0.0513 +0 0.1004 +0 0.1195 +0 0.3633 +0 0.1800 +0 0.0381 +0 0.0488 +0 0.0806 +0 0.1007 +0 0.0359 +0 0.1416 +0 0.1409 +0 0.2097 +0 0.2470 +0 0.0567 +0 0.2760 +0 0.4999 +0 0.1673 +0 0.0761 +0 0.1107 +0 0.0408 +0 0.0721 +0 0.0969 +0 0.1324 +0 0.1327 +0 0.1032 +0 0.0794 +0 0.1060 +0 0.3411 +0 0.1744 +0 0.0792 +0 0.1287 +0 0.2876 +0 0.7497 +0 0.0585 +0 0.0371 +0 0.0532 +0 0.1652 +0 0.0463 +0 0.1773 +0 0.1254 +0 0.0767 +0 0.0982 +0 0.0963 +0 0.1438 +0 0.1131 +0 0.0555 +0 0.4649 +0 0.0530 +0 0.1480 +0 0.1117 +0 0.1198 +0 0.0382 +0 0.2876 +0 0.1262 +1 0.8077 +0 0.0625 +0 0.6801 +0 0.1161 +0 0.0748 +0 0.1514 +0 0.0818 +0 0.0750 +0 0.0785 +0 0.4852 +0 0.0799 +0 0.0652 +0 0.0798 +0 0.0612 +0 0.0557 +0 0.2118 +0 0.3111 +0 0.1060 +0 0.2137 +0 0.1434 +0 0.1803 +0 0.0351 +0 0.1013 +0 0.1234 +0 0.0942 +0 0.0764 +0 0.0868 +0 0.1318 +0 0.0448 +0 0.0668 +0 0.0699 +0 0.0638 +0 0.1398 +0 0.1571 +0 0.0727 +0 0.2643 +0 0.0728 +0 0.1326 +0 0.0576 +0 0.0698 +0 0.1664 +0 0.0821 +0 0.0967 +0 0.2464 +0 0.0701 +0 0.1290 +0 0.1293 +0 0.1038 +0 0.0811 +0 0.0808 +0 0.0989 +0 0.0917 +0 0.2879 +0 0.0619 +0 0.0585 +0 0.1043 +0 0.0456 +0 0.0899 +0 0.0355 +0 0.1010 +0 0.2085 +0 0.0695 +1 0.8990 +0 0.1216 +0 0.0739 +0 0.2055 +0 0.0520 +0 0.0489 +0 0.1622 +0 0.0702 +0 0.6681 +0 0.0883 +0 0.6277 +0 0.2563 +0 0.1205 +0 0.0889 +0 0.0740 +0 0.2261 +0 0.0368 +0 0.1428 +0 0.0639 +0 0.5848 +0 0.2202 +0 0.0693 +0 0.1028 +0 0.0755 +0 0.0668 +0 0.1268 +0 0.0394 +0 0.3150 +0 0.2625 +0 0.0913 +0 0.2225 +1 0.8180 +0 0.0647 +0 0.0735 +0 0.0812 +0 0.0710 +0 0.0979 +0 0.1402 +0 0.0374 +0 0.1561 +0 0.1045 +0 0.3252 +0 0.0842 +0 0.0614 +0 0.1394 +0 0.0669 +0 0.1202 +0 0.0653 +0 0.1885 +0 0.0457 +0 0.1296 +0 0.0561 +0 0.1610 +0 0.0492 +0 0.0617 +0 0.0759 +0 0.1172 +0 0.0517 +0 0.1061 +0 0.0503 +0 0.1023 +0 0.0922 +0 0.0604 +0 0.5362 +0 0.1213 +0 0.1241 +0 0.0789 +0 0.0777 +0 0.0848 +0 0.1471 +0 0.0948 +0 0.0888 +0 0.1380 +0 0.5179 +0 0.1162 +0 0.0642 +0 0.1067 +0 0.0824 +0 0.6421 +0 0.2080 +0 0.0724 +0 0.3094 +0 0.0475 +0 0.0672 +0 0.0636 +0 0.0497 +0 0.1623 +0 0.0679 +0 0.0653 +0 0.1086 +0 0.1607 +0 0.0930 +0 0.0767 +0 0.3025 +0 0.0517 +0 0.0902 +0 0.1564 +0 0.0692 +0 0.1321 +0 0.1038 +0 0.2133 +0 0.0466 +0 0.2538 +0 0.0359 +0 0.2169 +0 0.0707 +0 0.0461 +0 0.0669 +0 0.0619 +0 0.1124 +0 0.0975 +0 0.0954 +0 0.0699 +0 0.0780 +0 0.1377 +0 0.0472 +0 0.0734 +0 0.0712 +0 0.0719 +0 0.1061 +0 0.0915 +0 0.1360 +0 0.1989 +0 0.0464 +0 0.0812 +0 0.1359 +0 0.2807 +0 0.1110 +0 0.1205 +0 0.0668 +0 0.0436 +0 0.0843 +0 0.1248 +0 0.0903 +0 0.0703 +0 0.1883 +0 0.1157 +0 0.1028 +0 0.0721 +0 0.0742 +0 0.1030 +0 0.3683 +0 0.1007 +0 0.1114 +0 0.0613 +0 0.1561 +0 0.1159 +0 0.0732 +0 0.1299 +0 0.1312 +0 0.0596 +0 0.2571 +0 0.0327 +0 0.0688 +0 0.1082 +0 0.0551 +0 0.0745 +1 0.2680 +0 0.4124 +0 0.4260 +0 0.3199 +0 0.3593 +0 0.2871 +0 0.0815 +0 0.0772 +0 0.1335 +0 0.0692 +0 0.0711 +0 0.1684 +1 0.7989 +0 0.0441 +0 0.0403 +0 0.1942 +0 0.0929 +0 0.0406 +0 0.0365 +0 0.0869 +0 0.0509 +0 0.1485 +0 0.6873 +0 0.1543 +0 0.1218 +0 0.1751 +0 0.1431 +0 0.0621 +0 0.3592 +0 0.1049 +0 0.0377 +0 0.1077 +0 0.0933 +0 0.0966 +0 0.4351 +0 0.0979 +0 0.2510 +0 0.0833 +0 0.0611 +0 0.1272 +0 0.1616 +0 0.0695 +0 0.1184 +0 0.0361 +0 0.1834 +0 0.4672 +0 0.0543 +0 0.1389 +0 0.1260 +0 0.0713 +0 0.0503 +0 0.1453 +0 0.1284 +0 0.0812 +0 0.1273 +0 0.0579 +0 0.0569 +0 0.0973 +0 0.1137 +0 0.1590 +0 0.4386 +0 0.3159 +0 0.1605 +0 0.0452 +0 0.0707 +0 0.1122 +0 0.0480 +0 0.0833 +0 0.1107 +0 0.0434 +0 0.1298 +0 0.2471 +0 0.1314 +0 0.3580 +0 0.4884 +0 0.0909 +0 0.0598 +0 0.0691 +0 0.1153 +0 0.0761 +0 0.3391 +0 0.0666 +0 0.0722 +0 0.0783 +0 0.1652 +0 0.1602 +0 0.0801 +0 0.2270 +0 0.0321 +0 0.2141 +0 0.0778 +0 0.0511 +0 0.5423 +0 0.1517 +0 0.0657 +0 0.0482 +0 0.1517 +0 0.1227 +0 0.1456 +0 0.0814 +0 0.1324 +0 0.0773 +0 0.0847 +0 0.1409 +0 0.0756 +0 0.3436 +0 0.0683 +0 0.1349 +0 0.1437 +0 0.0715 +0 0.1500 +0 0.0716 +0 0.2204 +0 0.0800 +0 0.4114 +0 0.2093 +0 0.2417 +0 0.1005 +0 0.0827 +0 0.0894 +0 0.0798 +0 0.0433 +0 0.1435 +0 0.0812 +0 0.1423 +0 0.1198 +0 0.0769 +0 0.1235 +0 0.0834 +0 0.2798 +0 0.2203 +0 0.1044 +0 0.7143 +0 0.1365 +0 0.2305 +0 0.1179 +0 0.0585 +0 0.0896 +0 0.0690 +0 0.0804 +0 0.1019 +0 0.0962 +0 0.0508 +0 0.0784 +0 0.2707 +0 0.1797 +0 0.3162 +0 0.2303 +1 0.8265 +0 0.0930 +0 0.3682 +0 0.0942 +0 0.0966 +0 0.1550 +0 0.2261 +0 0.0573 +0 0.3668 +1 0.8242 +0 0.1068 +0 0.1332 +0 0.0835 +0 0.0676 +0 0.2268 +0 0.0666 +0 0.1201 +0 0.1289 +0 0.1946 +0 0.0484 +0 0.0891 +0 0.1037 +0 0.1023 +0 0.1256 +0 0.2401 +0 0.0485 +0 0.4416 +0 0.0974 +0 0.5996 +0 0.0378 +0 0.0607 +0 0.0394 +0 0.1221 +0 0.3707 +0 0.2064 +0 0.0797 +0 0.1726 +0 0.1504 +0 0.0569 +0 0.0761 +0 0.2160 +0 0.1851 +0 0.2091 +0 0.2531 +0 0.3055 +0 0.1148 +0 0.1477 +0 0.1705 +0 0.0418 +0 0.0908 +0 0.0981 +0 0.2999 +0 0.0720 +0 0.2256 +0 0.1368 +0 0.1745 +0 0.5283 +0 0.0381 +0 0.0855 +0 0.0595 +0 0.1076 +0 0.0402 +0 0.0538 +0 0.0544 +0 0.0852 +0 0.0774 +0 0.4815 +0 0.1289 +0 0.1416 +0 0.3721 +1 0.7734 +0 0.2218 +0 0.1098 +0 0.4443 +0 0.0677 +0 0.1881 +0 0.0901 +0 0.0926 +0 0.0414 +0 0.1272 +0 0.0834 +0 0.0610 +0 0.0629 +0 0.1237 +0 0.1710 +0 0.1386 +0 0.0619 +0 0.0367 +0 0.0701 +0 0.0843 +0 0.0762 +0 0.1106 +0 0.0674 +1 0.7830 +0 0.0919 +0 0.3774 +0 0.0708 +0 0.0863 +0 0.0680 +0 0.0588 +0 0.1207 +0 0.0922 +0 0.1147 +0 0.1155 +0 0.2218 +0 0.0960 +0 0.0924 +1 0.7591 +0 0.0388 +0 0.0756 +0 0.1824 +0 0.2336 +0 0.0443 +0 0.2932 +0 0.2742 +0 0.3061 +0 0.2559 +0 0.2153 +0 0.1230 +0 0.0807 +0 0.4161 +0 0.1866 +0 0.2750 +0 0.0552 +0 0.0777 +0 0.1128 +0 0.0608 +0 0.0945 +0 0.1182 +0 0.4125 +0 0.2996 +0 0.3512 +0 0.2876 +0 0.0930 +0 0.0776 +0 0.1047 +1 0.7815 +0 0.1800 +0 0.0564 +0 0.0557 +0 0.1527 +0 0.0718 +0 0.3332 +0 0.1621 +0 0.1970 +0 0.0724 +0 0.2359 +0 0.0835 +0 0.0652 +0 0.1894 +0 0.1357 +0 0.2558 +0 0.1213 +0 0.2001 +0 0.0786 +0 0.0786 +0 0.0727 +0 0.1620 +0 0.0498 +0 0.1633 +0 0.0546 +0 0.6708 +0 0.0418 +0 0.0701 +0 0.1970 +0 0.5224 +0 0.1741 +0 0.0476 +0 0.1219 +0 0.0688 +0 0.1044 +0 0.0695 +0 0.1020 +0 0.1038 +0 0.2975 +0 0.1043 +0 0.0405 +0 0.6674 +0 0.0561 +0 0.2672 +0 0.0693 +0 0.0682 +0 0.0759 +0 0.0988 +0 0.1203 +0 0.0540 +0 0.0666 +0 0.1143 +0 0.0846 +0 0.0940 +0 0.2003 +1 0.7582 +0 0.0793 +0 0.0639 +0 0.4214 +0 0.0810 +0 0.2771 +0 0.2022 +0 0.0761 +0 0.7445 +0 0.0598 +0 0.0821 +0 0.1336 +0 0.7177 +0 0.0746 +0 0.0573 +0 0.0695 +0 0.0626 +0 0.0737 +0 0.1492 +0 0.0947 +0 0.1653 +0 0.0900 +0 0.0796 +0 0.1729 +0 0.1300 +0 0.0785 +0 0.2098 +0 0.1039 +0 0.3244 +0 0.1644 +0 0.1736 +0 0.0399 +0 0.1438 +0 0.1738 +0 0.1008 +0 0.1615 +0 0.1116 +0 0.1316 +0 0.0758 +0 0.0747 +0 0.0984 +0 0.1280 +0 0.0786 +0 0.1037 +0 0.1862 +0 0.0474 +0 0.0796 +0 0.1556 +0 0.3222 +0 0.1063 +0 0.2058 +0 0.0816 +0 0.0527 +0 0.2390 +0 0.1170 +0 0.1264 +0 0.0535 +0 0.0455 +0 0.1511 +0 0.1468 +0 0.0587 +0 0.6949 +0 0.1110 +0 0.0437 +0 0.1027 +0 0.1553 +0 0.0362 +0 0.0639 +0 0.0725 +0 0.1345 +0 0.1957 +0 0.0340 +0 0.1606 +0 0.0711 +0 0.0601 +0 0.0774 +0 0.1134 +0 0.2614 +0 0.0816 +0 0.0843 +0 0.0361 +0 0.1839 +0 0.1450 +0 0.1645 +0 0.0808 +0 0.0800 +0 0.0382 +0 0.2222 +0 0.1765 +0 0.1312 +0 0.1076 +0 0.5861 +1 0.7615 +0 0.1193 +0 0.0494 +0 0.0488 +0 0.0570 +0 0.0568 +0 0.1128 +0 0.1471 +0 0.0422 +0 0.0637 +0 0.2633 +0 0.4073 +0 0.0533 +0 0.2239 +0 0.2124 +0 0.1208 +0 0.2573 +0 0.0664 +0 0.2018 +0 0.1280 +0 0.1057 +0 0.0693 +0 0.1203 +0 0.2576 +0 0.4307 +0 0.0423 +0 0.1078 +0 0.1308 +0 0.1867 +0 0.1798 +0 0.0796 +0 0.0505 +0 0.0463 +0 0.0966 +0 0.0814 +0 0.1701 +0 0.0330 +0 0.1689 +0 0.1601 +0 0.7173 +0 0.0520 +0 0.1963 +0 0.0759 +0 0.1037 +0 0.0550 +0 0.0733 +0 0.0497 +0 0.3908 +0 0.0928 +0 0.0976 +0 0.0822 +0 0.1560 +0 0.1324 +1 0.8161 +0 0.1047 +0 0.1705 +0 0.3588 +0 0.0600 +0 0.0853 +0 0.0884 +0 0.0417 +0 0.2206 +0 0.0961 +0 0.2035 +0 0.1012 +0 0.0944 +0 0.1511 +0 0.0676 +0 0.0797 +0 0.2203 +0 0.1346 +0 0.0943 +0 0.0544 +0 0.1099 +0 0.0393 +0 0.3443 +0 0.2501 +0 0.2474 +0 0.1304 +0 0.1198 +0 0.3205 +0 0.0510 +0 0.0892 +0 0.0483 +0 0.1012 +0 0.1049 +0 0.4913 +0 0.1225 +0 0.0616 +0 0.4967 +0 0.0588 +0 0.0632 +0 0.0768 +0 0.0425 +0 0.0925 +0 0.2379 +0 0.1491 +0 0.2110 +0 0.0725 +0 0.1907 +0 0.0611 +0 0.0482 +0 0.0632 +0 0.3908 +0 0.0390 +0 0.0286 +0 0.3611 +0 0.0970 +0 0.0917 +0 0.7042 +0 0.2218 +0 0.0512 +0 0.1553 +0 0.0909 +0 0.3229 +0 0.4240 +0 0.0753 +0 0.1750 +0 0.0510 +0 0.0401 +0 0.2365 +0 0.1264 +0 0.0986 +0 0.7469 +0 0.0697 +0 0.0800 +0 0.0508 +0 0.0701 +0 0.0595 +0 0.1656 +0 0.0989 +0 0.1702 +0 0.1231 +0 0.1612 +0 0.1059 +0 0.0349 +0 0.0961 +0 0.0960 +0 0.0896 +0 0.2334 +0 0.0946 +1 0.7951 +0 0.0798 +0 0.0667 +0 0.1192 +0 0.0672 +1 0.8781 +0 0.1040 +0 0.0519 +0 0.1082 +0 0.0804 +0 0.0571 +0 0.6834 +0 0.1640 +0 0.0343 +0 0.0789 +0 0.2368 +0 0.1249 +0 0.1073 +0 0.0565 +0 0.1821 +0 0.0924 +0 0.0603 +0 0.1093 +0 0.2466 +0 0.1309 +0 0.1916 +0 0.0684 +0 0.0984 +0 0.1902 +0 0.0413 +0 0.0882 +0 0.0771 +0 0.1705 +0 0.2013 +0 0.0876 +0 0.0313 +0 0.0577 +0 0.0375 +0 0.1658 +0 0.1990 +0 0.1181 +0 0.1125 +0 0.0653 +0 0.1116 +0 0.3154 +0 0.0271 +0 0.4062 +0 0.1055 +0 0.1658 +0 0.0749 +0 0.1701 +0 0.0937 +0 0.0427 +0 0.0609 +0 0.1202 +0 0.1328 +0 0.1283 +0 0.1604 +0 0.1428 +0 0.0819 +0 0.0592 +0 0.0863 +0 0.1500 +0 0.1874 +0 0.0770 +0 0.0841 +0 0.1949 +0 0.2340 +0 0.1517 +0 0.1679 +0 0.0642 +0 0.0764 +0 0.3702 +0 0.0689 +0 0.4857 +0 0.0770 +0 0.0765 +0 0.0828 +0 0.1003 +0 0.0932 +0 0.1184 +0 0.0874 +0 0.1838 +0 0.0636 +0 0.2968 +0 0.1612 +0 0.0551 +0 0.2055 +0 0.0959 +0 0.1751 +0 0.3518 +0 0.0924 +0 0.0698 +0 0.0657 +0 0.1592 +0 0.2307 +0 0.1060 +0 0.0488 +0 0.1244 +0 0.1426 +0 0.1248 +0 0.1255 +0 0.0698 +0 0.7412 +0 0.1516 +0 0.0723 +0 0.0901 +0 0.2545 +0 0.1337 +0 0.0895 +0 0.0787 +0 0.0737 +0 0.0417 +0 0.1278 +0 0.0648 +0 0.0710 +0 0.0489 +0 0.1270 +0 0.0518 +1 0.7684 +0 0.0543 +0 0.1070 +0 0.1020 +0 0.0716 +0 0.0923 +0 0.1447 +0 0.3549 +0 0.0752 +0 0.1430 +0 0.1322 +0 0.0913 +0 0.0378 +0 0.0900 +0 0.0360 +0 0.2565 +0 0.1439 +0 0.3610 +0 0.0617 +0 0.0961 +0 0.1091 +0 0.1406 +0 0.1133 +0 0.1789 +0 0.0490 +0 0.5328 +0 0.0841 +0 0.1089 +0 0.1873 +0 0.2555 +0 0.1568 +0 0.0480 +0 0.0986 +0 0.1027 +0 0.1218 +0 0.1677 +0 0.0583 +0 0.0448 +0 0.1698 +0 0.0815 +0 0.1454 +0 0.1102 +0 0.0748 +0 0.0923 +0 0.2783 +0 0.5391 +0 0.1062 +0 0.1863 +0 0.0378 +0 0.1782 +0 0.0628 +0 0.0592 +0 0.0705 +0 0.1151 +0 0.2339 +0 0.1153 +0 0.0372 +0 0.0681 +0 0.0549 +0 0.1043 +0 0.0882 +0 0.1132 +0 0.0913 +0 0.0586 +0 0.1010 +0 0.0856 +0 0.2022 +0 0.1668 +0 0.1442 +0 0.1326 +0 0.0974 +0 0.2730 +0 0.2478 +0 0.1595 +0 0.0811 +0 0.4380 +0 0.0903 +0 0.0536 +0 0.1063 +0 0.0843 +0 0.1261 +0 0.1185 +0 0.0381 +0 0.3362 +0 0.1209 +0 0.0813 +0 0.0779 +0 0.1304 +0 0.1397 +0 0.0600 +0 0.1326 +0 0.0765 +0 0.1303 +0 0.0888 +0 0.0642 +0 0.0604 +0 0.1021 +0 0.0480 +0 0.0658 +0 0.0460 +0 0.3010 +0 0.0714 +0 0.0429 +0 0.1033 +0 0.1719 +0 0.1517 +0 0.0881 +0 0.0780 +0 0.0779 +0 0.0913 +0 0.0777 +0 0.0719 +0 0.1750 +0 0.1167 +0 0.1285 +0 0.0698 +0 0.1057 +0 0.1067 +0 0.0524 +0 0.1706 +0 0.3194 +0 0.1525 +0 0.1744 +0 0.0849 +0 0.0492 +0 0.0515 +0 0.2017 +0 0.2138 +0 0.0784 +0 0.0382 +0 0.2205 +0 0.1988 +0 0.4677 +0 0.0679 +0 0.1257 +0 0.0828 +0 0.2053 +0 0.0968 +0 0.0715 +0 0.1827 +0 0.4010 +0 0.3066 +0 0.0388 +0 0.1443 +0 0.1183 +0 0.0926 +0 0.0300 +0 0.0505 +0 0.0635 +0 0.1486 +0 0.3235 +0 0.0902 +0 0.2444 +0 0.1032 +0 0.0627 +0 0.0664 +1 0.8756 +0 0.1336 +0 0.0861 +0 0.6858 +0 0.1156 +0 0.1395 +0 0.0525 +0 0.1093 +0 0.0667 +1 0.8311 +0 0.0658 +0 0.0576 +0 0.4441 +0 0.0798 +0 0.1513 +0 0.2606 +0 0.1257 +0 0.0359 +0 0.1550 +0 0.1564 +1 0.7999 +0 0.0611 +0 0.3138 +0 0.0985 +0 0.1952 +0 0.1514 +0 0.1028 +0 0.2478 +0 0.1151 +0 0.1606 +0 0.1354 +0 0.1943 +0 0.2480 +0 0.0685 +0 0.1520 +0 0.1462 +0 0.0846 +0 0.1126 +0 0.2212 +0 0.1215 +0 0.0856 +1 0.7884 +0 0.0606 +0 0.1978 +0 0.0656 +0 0.0515 +0 0.1048 +0 0.1207 +0 0.0802 +0 0.2323 +0 0.0696 +0 0.1123 +0 0.2361 +0 0.4710 +0 0.0791 +0 0.0665 +0 0.0844 +0 0.3451 +0 0.2689 +0 0.0597 +0 0.0825 +0 0.0745 +0 0.2424 +0 0.0682 +0 0.1019 +0 0.3313 +0 0.1386 +0 0.0484 +0 0.0496 +0 0.0773 +0 0.0538 +0 0.2034 +0 0.2818 +0 0.1600 +0 0.5079 +0 0.1278 +0 0.0592 +0 0.1213 +0 0.0607 +0 0.0541 +0 0.0598 +0 0.0745 +0 0.1856 +0 0.1398 +1 0.7795 +0 0.0821 +0 0.0776 +0 0.1285 +0 0.1909 +0 0.1760 +0 0.1815 +0 0.2373 +0 0.0941 +0 0.1783 +0 0.1013 +0 0.1361 +0 0.0488 +1 0.8494 +0 0.0958 +0 0.0821 +0 0.6482 +0 0.1853 +0 0.1247 +0 0.1270 +0 0.1015 +0 0.0735 +0 0.1951 +0 0.0544 +0 0.0494 +0 0.2906 +0 0.3346 +0 0.0662 +0 0.1399 +0 0.1184 +0 0.0348 +0 0.2265 +0 0.2396 +0 0.0717 +0 0.3412 +0 0.1255 +0 0.2550 +0 0.2094 +0 0.0477 +0 0.1970 +0 0.1047 +0 0.1452 +0 0.0821 +0 0.3457 +0 0.1077 +0 0.0781 +0 0.0880 +0 0.1158 +0 0.0543 +0 0.0578 +0 0.1370 +0 0.1364 +0 0.1830 +0 0.0664 +0 0.1999 +0 0.0569 +0 0.0386 +0 0.1102 +0 0.1926 +0 0.2844 +0 0.0396 +0 0.2222 +0 0.2134 +0 0.0579 +0 0.0921 +0 0.0766 +0 0.6795 +0 0.0730 +0 0.0951 +0 0.0440 +0 0.1037 +0 0.3927 +0 0.1844 +0 0.1740 +0 0.2123 +0 0.2023 +0 0.1123 +0 0.1607 +0 0.1562 +0 0.0991 +0 0.0534 +0 0.2783 +0 0.0906 +0 0.0909 +0 0.3874 +0 0.1201 +0 0.1124 +0 0.0628 +0 0.0568 +0 0.1991 +0 0.0737 +0 0.3051 +0 0.1999 +0 0.1537 +0 0.0883 +0 0.2578 +0 0.0854 +0 0.1764 +0 0.0724 +0 0.1290 +0 0.0770 +0 0.0715 +0 0.0581 +0 0.1182 +0 0.0791 +0 0.1937 +0 0.1338 +0 0.0841 +0 0.1273 +0 0.1637 +0 0.0612 +0 0.1159 +0 0.1541 +0 0.2410 +0 0.0680 +0 0.0878 +0 0.5878 +0 0.0678 +0 0.0449 +0 0.0536 +0 0.0850 +0 0.2919 +0 0.1659 +0 0.2219 +0 0.0802 +0 0.2141 +0 0.1402 +0 0.1320 +0 0.1202 +0 0.0952 +0 0.5580 +0 0.1091 +1 0.8048 +0 0.1419 +0 0.1410 +0 0.0546 +0 0.0695 +0 0.1341 +0 0.1262 +0 0.1346 +0 0.1336 +0 0.0616 +0 0.3666 +0 0.0949 +0 0.0467 +0 0.0928 +0 0.0690 +0 0.0605 +0 0.2253 +0 0.4554 +0 0.0981 +0 0.0458 +0 0.0387 +0 0.0682 +0 0.0632 +0 0.0710 +0 0.1308 +0 0.0693 +0 0.1590 +0 0.0655 +0 0.3904 +0 0.2151 +0 0.0798 +0 0.0855 +0 0.1420 +0 0.7276 +0 0.1023 +0 0.1006 +0 0.0844 +0 0.1036 +0 0.1388 +0 0.1116 +0 0.1096 +0 0.0633 +0 0.1318 +0 0.0495 +0 0.0732 +0 0.0773 +0 0.0537 +0 0.1872 +0 0.1183 +0 0.2442 +0 0.0646 +0 0.0577 +0 0.0747 +0 0.1088 +0 0.1834 +0 0.1322 +0 0.2550 +0 0.0588 +0 0.2300 +0 0.3284 +0 0.1340 +0 0.1168 +0 0.2024 +0 0.0984 +0 0.4874 +0 0.0510 +0 0.4573 +0 0.1438 +0 0.5171 +0 0.1187 +0 0.2845 +0 0.1274 +0 0.2760 +0 0.1027 +0 0.1897 +0 0.1838 +0 0.0654 +0 0.1042 +0 0.1569 +0 0.0480 +0 0.4651 +0 0.0627 +0 0.1439 +0 0.0664 +0 0.0729 +0 0.1922 +0 0.1173 +0 0.0873 +1 0.7657 +0 0.1384 +0 0.1402 +0 0.0754 +0 0.1332 +0 0.4219 +0 0.0986 +0 0.0711 +0 0.0666 +0 0.0772 +0 0.0738 +0 0.0616 +0 0.2439 +0 0.0349 +0 0.0597 +0 0.2995 +0 0.0901 +0 0.2402 +0 0.1561 +0 0.0682 +0 0.0854 +0 0.0753 +0 0.0782 +0 0.0916 +0 0.0779 +0 0.0889 +0 0.2015 +0 0.1242 +0 0.0955 +0 0.1873 +0 0.3042 +0 0.0547 +0 0.0755 +0 0.0719 +0 0.1306 +0 0.1571 +0 0.0874 +0 0.2423 +0 0.1637 +0 0.0427 +0 0.4405 +0 0.0607 +0 0.1124 +0 0.4020 +0 0.0537 +0 0.0646 +0 0.0901 +0 0.0731 +0 0.0689 +0 0.0989 +0 0.1429 +0 0.1052 +0 0.1863 +0 0.0528 +0 0.1552 +0 0.1144 +0 0.0511 +0 0.2072 +0 0.1018 +0 0.1674 +0 0.3633 +0 0.0812 +0 0.1321 +0 0.0863 +0 0.1060 +0 0.1153 +0 0.1366 +0 0.0305 +0 0.1392 +0 0.0853 +0 0.0349 +0 0.2577 +0 0.1690 +0 0.0958 +0 0.0461 +0 0.0656 +0 0.0753 +0 0.4895 +0 0.0933 +0 0.0553 +0 0.1011 +0 0.3905 +0 0.1155 +0 0.1104 +0 0.2535 +0 0.0337 +0 0.1684 +0 0.0598 +0 0.1231 +0 0.0586 +0 0.0707 +0 0.1175 +0 0.1211 +0 0.1209 +0 0.0800 +0 0.1737 +0 0.2969 +0 0.1033 +0 0.1680 +0 0.0745 +0 0.0620 +0 0.1872 +0 0.1272 +0 0.0846 +0 0.0461 +0 0.1298 +0 0.0533 +0 0.1488 +0 0.1036 +0 0.0643 +0 0.1747 +0 0.0635 +0 0.1151 +0 0.3229 +0 0.3876 +0 0.1006 +0 0.0761 +0 0.1109 +0 0.0696 +0 0.0624 +0 0.1537 +0 0.1366 +0 0.1696 +0 0.1469 +0 0.1995 +0 0.1847 +0 0.0629 +0 0.1551 +0 0.0789 +0 0.1482 +0 0.1276 +0 0.0753 +0 0.3432 +0 0.0501 +0 0.5191 +0 0.1641 +0 0.0470 +0 0.0891 +0 0.0628 +0 0.0812 +0 0.0789 +0 0.1778 +0 0.0483 +0 0.4085 +0 0.1311 +0 0.0806 +0 0.0828 +0 0.2474 +0 0.1578 +0 0.0965 +0 0.1120 +0 0.0880 +0 0.0504 +0 0.2160 +0 0.1077 +0 0.1565 +0 0.1030 +0 0.2033 +0 0.1357 +0 0.1881 +0 0.0897 +0 0.1324 +0 0.1627 +0 0.1518 +0 0.2554 +0 0.5804 +0 0.1063 +0 0.0959 +0 0.0895 +0 0.0629 +0 0.0658 +0 0.0629 +0 0.1455 +0 0.0302 +0 0.1455 +0 0.1241 +0 0.1106 +0 0.2136 +0 0.0920 +0 0.0470 +0 0.0337 +0 0.0929 +0 0.0628 +0 0.0447 +0 0.0561 +0 0.0787 +1 0.8723 +0 0.0576 +0 0.1010 +0 0.1214 +0 0.2329 +0 0.3968 +0 0.0414 +0 0.1482 +0 0.3103 +0 0.0591 +0 0.0773 +0 0.0928 +0 0.1751 +0 0.1930 +0 0.0551 +0 0.1294 +0 0.1485 +0 0.1890 +0 0.0975 +0 0.1451 +0 0.2035 +0 0.0544 +0 0.1388 +0 0.0969 +0 0.1089 +0 0.0447 +0 0.0848 +0 0.1247 +0 0.0403 +0 0.0530 +0 0.0642 +0 0.1627 +0 0.0792 +0 0.0854 +0 0.0622 +0 0.0869 +0 0.1131 +0 0.0534 +0 0.0394 +0 0.1663 +0 0.0812 +0 0.2038 +0 0.1459 +0 0.0495 +0 0.0805 +0 0.1408 +0 0.2675 +0 0.5033 +0 0.1212 +0 0.0688 +0 0.1199 +0 0.0570 +0 0.0731 +0 0.1158 +0 0.1241 +0 0.1253 +0 0.1201 +0 0.2792 +0 0.1362 +0 0.0448 +0 0.0737 +0 0.0678 +0 0.1161 +0 0.1097 +0 0.2262 +0 0.2638 +0 0.1030 +0 0.0832 +0 0.0754 +0 0.1594 +0 0.1538 +0 0.0428 +0 0.1752 +0 0.0980 +0 0.0545 +0 0.0517 +0 0.1719 +0 0.1555 +0 0.0699 +0 0.1249 +0 0.0480 +0 0.1658 +0 0.0636 +0 0.0570 +0 0.1786 +0 0.0569 +0 0.1570 +0 0.1286 +0 0.0739 +0 0.1259 +0 0.0522 +0 0.2639 +0 0.1233 +1 0.8245 +0 0.0681 +0 0.3598 +0 0.1682 +0 0.0408 +0 0.0804 +0 0.1801 +0 0.0553 +0 0.0634 +0 0.1154 +0 0.1304 +0 0.1551 +0 0.0379 +0 0.5311 +0 0.0687 +0 0.2624 +0 0.1273 +0 0.1107 +0 0.0962 +0 0.0369 +0 0.2258 +0 0.1920 +0 0.0846 +0 0.0764 +0 0.2568 +0 0.1119 +0 0.1043 +0 0.1085 +0 0.0283 +0 0.1310 +0 0.1825 +0 0.0619 +0 0.1876 +0 0.1042 +0 0.0458 +0 0.1139 +1 0.8016 +0 0.2897 +0 0.1203 +0 0.1283 +0 0.0715 +0 0.0746 +0 0.0561 +0 0.0854 +0 0.0913 +0 0.1527 +0 0.1267 +0 0.1131 +0 0.0995 +0 0.0942 +0 0.0439 +0 0.0937 +0 0.1576 +0 0.1158 +0 0.1021 +0 0.0814 +0 0.0894 +0 0.4802 +0 0.0612 +0 0.1738 +0 0.1072 +0 0.2667 +0 0.1924 +0 0.0659 +0 0.0986 +0 0.0768 +0 0.0719 +0 0.2047 +0 0.1229 +0 0.1125 +0 0.0847 +0 0.1016 +0 0.0901 +0 0.0558 +0 0.1200 +0 0.1881 +0 0.0884 +0 0.1677 +0 0.1375 +0 0.0602 +0 0.0581 +0 0.0804 +0 0.0509 +0 0.7392 +0 0.0606 +0 0.0535 +0 0.2023 +0 0.1551 +0 0.0725 +0 0.0658 +0 0.0503 +0 0.0743 +0 0.0654 +0 0.1201 +0 0.0545 +0 0.1915 +0 0.0927 +0 0.3020 +0 0.0650 +0 0.5003 +0 0.0899 +0 0.1354 +0 0.1426 +0 0.4529 +0 0.1183 +0 0.0438 +0 0.0686 +0 0.0662 +0 0.1821 +0 0.0400 +0 0.0923 +0 0.0749 +0 0.0699 +0 0.0550 +0 0.4752 +0 0.0999 +0 0.1619 +0 0.2837 +0 0.2831 +0 0.0437 +0 0.1165 +0 0.0695 +0 0.2209 +0 0.1070 +0 0.1205 +0 0.2075 +0 0.1456 +0 0.0819 +0 0.0755 +0 0.3075 +0 0.0844 +0 0.0674 +0 0.5804 +0 0.2752 +0 0.1485 +0 0.0695 +0 0.1744 +0 0.0845 +0 0.1048 +0 0.0636 +0 0.0751 +0 0.1294 +0 0.0753 +0 0.1387 +0 0.3162 +0 0.0925 +0 0.1960 +0 0.1058 +0 0.1559 +0 0.1382 +0 0.0452 +0 0.2800 +0 0.0446 +0 0.0921 +0 0.1060 +0 0.1781 +0 0.1091 +0 0.3085 +0 0.0540 +0 0.1073 +0 0.0915 +0 0.0505 +0 0.0894 +0 0.1052 +0 0.3329 +0 0.1337 +0 0.1039 +0 0.0802 +0 0.2098 +0 0.0783 +0 0.0725 +0 0.1297 +0 0.4130 +0 0.2329 +0 0.0655 +0 0.0833 +0 0.1297 +0 0.1563 +0 0.0393 +0 0.1473 +0 0.2244 +0 0.1566 +0 0.1750 +0 0.2334 +0 0.1187 +0 0.0587 +0 0.1083 +0 0.0375 +0 0.1652 +0 0.0689 +0 0.0955 +0 0.1131 +0 0.2436 +0 0.1134 +1 0.8038 +0 0.0857 +0 0.1151 +0 0.0604 +0 0.0629 +0 0.0795 +0 0.0825 +0 0.1593 +0 0.0882 +0 0.1149 +0 0.1304 +0 0.2603 +0 0.1122 +0 0.2356 +0 0.1599 +0 0.1242 +0 0.1574 +0 0.1107 +0 0.1081 +0 0.1064 +0 0.1302 +1 0.8881 +0 0.2850 +0 0.3268 +0 0.2088 +0 0.1642 +0 0.1076 +0 0.2065 +0 0.1556 +0 0.1664 +0 0.1215 +0 0.1145 +0 0.0664 +0 0.0727 +0 0.1440 +0 0.0734 +0 0.0722 +0 0.1066 +0 0.0974 +0 0.0614 +0 0.0346 +0 0.0824 +0 0.0684 +0 0.1581 +0 0.0721 +0 0.1180 +1 0.8194 +0 0.0835 +0 0.1119 +0 0.2114 +0 0.6156 +0 0.0550 +0 0.0573 +0 0.1505 +0 0.0894 +0 0.0956 +0 0.2015 +0 0.5907 +0 0.3426 +0 0.2335 +0 0.1056 +1 0.8789 +0 0.0616 +0 0.2316 +0 0.0609 +0 0.0877 +0 0.1541 +0 0.0701 +0 0.0857 +1 0.7541 +0 0.1282 +0 0.1684 +0 0.2142 +0 0.0843 +0 0.0646 +0 0.0477 +0 0.1713 +0 0.0937 +0 0.0576 +0 0.1480 +0 0.1771 +0 0.2969 +0 0.0848 +0 0.1762 +0 0.1468 +0 0.1139 +0 0.1166 +0 0.1034 +0 0.0545 +0 0.1210 +0 0.2473 +0 0.0613 +0 0.0773 +0 0.1639 +0 0.2001 +0 0.0743 +0 0.1795 +0 0.0534 +0 0.0810 +0 0.0973 +0 0.1015 +0 0.2584 +0 0.2541 +0 0.1169 +0 0.0682 +0 0.1148 +0 0.1110 +0 0.2337 +0 0.0404 +0 0.1649 +0 0.2734 +0 0.0507 +0 0.0516 +0 0.1950 +0 0.0798 +0 0.0510 +0 0.0846 +0 0.2687 +0 0.1415 +0 0.3580 +0 0.0512 +0 0.2851 +0 0.0500 +0 0.1033 +0 0.4897 +0 0.0610 +0 0.1827 +0 0.0998 +0 0.2655 +0 0.0366 +0 0.1013 +0 0.0558 +0 0.0472 +0 0.0897 +0 0.0992 +0 0.1292 +0 0.0897 +0 0.1620 +0 0.1194 +0 0.1092 +0 0.0615 +0 0.1384 +0 0.1045 +0 0.1023 +0 0.0913 +0 0.2163 +0 0.1220 +0 0.0718 +0 0.0664 +0 0.0940 +0 0.1294 +0 0.1604 +0 0.2625 +0 0.1266 +0 0.0750 +0 0.3692 +0 0.1200 +0 0.6008 +0 0.3283 +0 0.2606 +0 0.1177 +0 0.1035 +0 0.1034 +0 0.0325 +0 0.0814 +0 0.2804 +0 0.0931 +0 0.1785 +0 0.1714 +0 0.1081 +0 0.1570 +0 0.3202 +1 0.7625 +0 0.1095 +0 0.0595 +0 0.1228 +0 0.0941 +0 0.0990 +0 0.1514 +0 0.0634 +0 0.0812 +0 0.1272 +0 0.0400 +0 0.2635 +0 0.0917 +0 0.1362 +0 0.1096 +0 0.1611 +0 0.0763 +0 0.0806 +0 0.0810 +0 0.1053 +0 0.2480 +0 0.1873 +0 0.2992 +0 0.0492 +0 0.1337 +0 0.3352 +0 0.0799 +0 0.1898 +0 0.1134 +0 0.1067 +0 0.0912 +0 0.0697 +0 0.1428 +0 0.4287 +0 0.3636 +0 0.2987 +0 0.4548 +0 0.0642 +0 0.1007 +0 0.0752 +0 0.0978 +0 0.0991 +0 0.0590 +0 0.1116 +0 0.0684 +0 0.1111 +0 0.2125 +0 0.0592 +0 0.1036 +0 0.0992 +0 0.1167 +0 0.0759 +0 0.1592 +0 0.2681 +0 0.2906 +0 0.2784 +0 0.1017 +0 0.1419 +0 0.0804 +0 0.1014 +0 0.1292 +0 0.0955 +0 0.1207 +0 0.1597 +0 0.2279 +0 0.1082 +0 0.0434 +0 0.1799 +0 0.2077 +0 0.0647 +0 0.0723 +0 0.0844 +0 0.0534 +0 0.1042 +0 0.0737 +0 0.0750 +0 0.2373 +0 0.0726 +1 0.8264 +0 0.1806 +0 0.1835 +0 0.2378 +0 0.0767 +0 0.2114 +0 0.0435 +0 0.0766 +0 0.0737 +0 0.0600 +0 0.0755 +0 0.1331 +0 0.0372 +0 0.1140 +0 0.0959 +0 0.0863 +0 0.0450 +0 0.1589 +0 0.0895 +0 0.0439 +0 0.1112 +1 0.7731 +0 0.0836 +0 0.0714 +0 0.0550 +0 0.0734 +0 0.1506 +0 0.0466 +0 0.0451 +0 0.1256 +0 0.2776 +0 0.1494 +0 0.2162 +0 0.6358 +0 0.1919 +0 0.2554 +0 0.0670 +0 0.0692 +0 0.1409 +0 0.0900 +0 0.0822 +0 0.1069 +0 0.2323 +0 0.0776 +0 0.0611 +0 0.0727 +0 0.1404 +0 0.0458 +0 0.0648 +0 0.1121 +0 0.1696 +0 0.0674 +0 0.1739 +0 0.0824 +0 0.2050 +0 0.2814 +0 0.1301 +0 0.1207 +0 0.0470 +0 0.0678 +0 0.7237 +0 0.1236 +0 0.1151 +0 0.0526 +0 0.0359 +0 0.0599 +0 0.2514 +0 0.1158 +0 0.1313 +0 0.1237 +0 0.1552 +0 0.0621 +0 0.2503 +0 0.2295 +0 0.0672 +0 0.0719 +0 0.5371 +0 0.1572 +0 0.1252 +0 0.1260 +0 0.0519 +0 0.1245 +0 0.4602 +0 0.1284 +0 0.1052 +1 0.7676 +0 0.0976 +0 0.1199 +0 0.0568 +0 0.0369 +0 0.1273 +0 0.1123 +0 0.0651 +0 0.1853 +0 0.1642 +0 0.4114 +1 0.7752 +0 0.0899 +0 0.1065 +0 0.0932 +0 0.1313 +0 0.0928 +0 0.1001 +0 0.1517 +0 0.1092 +0 0.2202 +0 0.0732 +0 0.1356 +0 0.0843 +0 0.0866 +0 0.0422 +0 0.5455 +0 0.2347 +0 0.1179 +0 0.1923 +0 0.0678 +0 0.2045 +0 0.0877 +0 0.0958 +0 0.0876 +0 0.0859 +0 0.1554 +0 0.1424 +0 0.1185 +0 0.1384 +0 0.1838 +0 0.1716 +0 0.0972 +0 0.1082 +0 0.1162 +0 0.0685 +0 0.0711 +0 0.0501 +0 0.1882 +0 0.1285 +0 0.2639 +0 0.1506 +0 0.0962 +0 0.0729 +0 0.0945 +0 0.1570 +0 0.2119 +0 0.1158 +0 0.1363 +0 0.1468 +0 0.2364 +0 0.0639 +0 0.0575 +0 0.1149 +0 0.1044 +0 0.0840 +0 0.2118 +0 0.0949 +1 0.8679 +0 0.0562 +0 0.1447 +0 0.1333 +0 0.1298 +0 0.3143 +0 0.2267 +0 0.2277 +0 0.0937 +0 0.0945 +0 0.3962 +0 0.1238 +0 0.1851 +0 0.1931 +0 0.0723 +0 0.1065 +0 0.1062 +0 0.0760 +0 0.3091 +0 0.1704 +0 0.1708 +0 0.1151 +0 0.2571 +0 0.0641 +0 0.0475 +0 0.1666 +0 0.1134 +0 0.1515 +0 0.0649 +0 0.0921 +0 0.1282 +0 0.0798 +0 0.1066 +0 0.0967 +0 0.0866 +0 0.0449 +0 0.1150 +0 0.1189 +0 0.1132 +0 0.2431 +0 0.0666 +0 0.0558 +0 0.2811 +0 0.1236 +0 0.5130 +0 0.0442 +0 0.1081 +0 0.0792 +1 0.5111 +0 0.1210 +0 0.1041 +0 0.0440 +0 0.3678 +0 0.1875 +0 0.0943 +0 0.2600 +0 0.0728 +0 0.2218 +0 0.0987 +0 0.0769 +0 0.2171 +0 0.2255 +0 0.0759 +0 0.0658 +0 0.1141 +0 0.2872 +0 0.1369 +0 0.3574 +0 0.1808 +0 0.0724 +0 0.1022 +0 0.1441 +0 0.2115 +0 0.1161 +0 0.0667 +0 0.1012 +0 0.1115 +0 0.6239 +0 0.2504 +0 0.6408 +0 0.0665 +0 0.0530 +0 0.0574 +0 0.0619 +0 0.1215 +0 0.1562 +0 0.1289 +0 0.0942 +0 0.0524 +0 0.3103 +0 0.0621 +0 0.1931 +0 0.1043 +0 0.0707 +0 0.2621 +0 0.1079 +0 0.0720 +0 0.1311 +0 0.2199 +0 0.0703 +0 0.0703 +0 0.0949 +0 0.1463 +0 0.0598 +0 0.0940 +0 0.0518 +0 0.2089 +0 0.0770 +0 0.0529 +0 0.0643 +0 0.0745 +0 0.0462 +0 0.2669 +0 0.3506 +0 0.2064 +0 0.6147 +0 0.0564 +0 0.0709 +0 0.1259 +0 0.1178 +0 0.1929 +0 0.1529 +0 0.0687 +0 0.0774 +0 0.0418 +0 0.2530 +0 0.2071 +1 0.7820 +0 0.2335 +0 0.0707 +0 0.0615 +0 0.0371 +0 0.0534 +0 0.0410 +0 0.0583 +0 0.0748 +1 0.8562 +0 0.0465 +0 0.1059 +0 0.0746 +0 0.0642 +0 0.1533 +0 0.4362 +0 0.0296 +0 0.0651 +0 0.0960 +0 0.1207 +0 0.0542 +0 0.1197 +1 0.8434 +0 0.1173 +0 0.0853 +0 0.0809 +0 0.1352 +0 0.1838 +0 0.1198 +0 0.0476 +0 0.4629 +0 0.1874 +0 0.1538 +1 0.8434 +0 0.0529 +0 0.0942 +0 0.1745 +0 0.0779 +0 0.1550 +0 0.0835 +0 0.1048 +0 0.0575 +0 0.1859 +0 0.0810 +0 0.2862 +0 0.0346 +0 0.1389 +0 0.2071 +0 0.0479 +0 0.0911 +0 0.3142 +0 0.0674 +0 0.1218 +0 0.0939 +0 0.0861 +0 0.0571 +0 0.1095 +0 0.0949 +0 0.0600 +0 0.0535 +0 0.0541 +0 0.0824 +0 0.3248 +0 0.0901 +0 0.2408 +0 0.2408 +0 0.0792 +0 0.1743 +0 0.1856 +0 0.1133 +0 0.0498 +0 0.0420 +0 0.1669 +0 0.0692 +0 0.2261 +0 0.0782 +0 0.2336 +0 0.1298 +0 0.1853 +0 0.0894 +0 0.1501 +0 0.2521 +0 0.2642 +0 0.0651 +0 0.1526 +0 0.2323 +0 0.1188 +0 0.1229 +0 0.2572 +0 0.5695 +0 0.0692 +0 0.1237 +0 0.0408 +0 0.0484 +0 0.1315 +0 0.1526 +0 0.1630 +0 0.0710 +0 0.1641 +0 0.0985 +0 0.0710 +0 0.6759 +0 0.1177 +0 0.1580 +0 0.3765 +0 0.0783 +0 0.1054 +0 0.4898 +0 0.0531 +0 0.1033 +0 0.1439 +0 0.1870 +0 0.1165 +0 0.0719 +0 0.1290 +0 0.0689 +0 0.0341 +0 0.0996 +0 0.0613 +0 0.0667 +0 0.0504 +0 0.3444 +0 0.2149 +0 0.1149 +0 0.0447 +0 0.1368 +0 0.1781 +0 0.2215 +0 0.0663 +0 0.0754 +0 0.2364 +0 0.2367 +0 0.1506 +0 0.3461 +0 0.0860 +0 0.0591 +0 0.1408 +0 0.0750 +0 0.0896 +0 0.3777 +0 0.1830 +0 0.0781 +0 0.0943 +0 0.2818 +0 0.1018 +0 0.0636 +0 0.6506 +0 0.3237 +0 0.1002 +0 0.2355 +0 0.0402 +0 0.0803 +0 0.0984 +0 0.0616 +0 0.1554 +0 0.3904 +0 0.1260 +1 0.8045 +0 0.0708 +0 0.1661 +0 0.1837 +0 0.4959 +0 0.0803 +0 0.0630 +0 0.1190 +0 0.0805 +0 0.7355 +0 0.1048 +0 0.1105 +0 0.0819 +0 0.1206 +0 0.1141 +0 0.0717 +0 0.1540 +0 0.2967 +0 0.0599 +0 0.2045 +0 0.1037 +0 0.0545 +0 0.0796 +0 0.0738 +0 0.0875 +0 0.0433 +0 0.3175 +0 0.0443 +0 0.4045 +0 0.3566 +0 0.1112 +0 0.0520 +0 0.1059 +0 0.0966 +0 0.0659 +0 0.1062 +0 0.1098 +0 0.1366 +0 0.3176 +0 0.0998 +0 0.0769 +0 0.2436 +0 0.2227 +0 0.0810 +0 0.0777 +0 0.0399 +0 0.0739 +0 0.0570 +0 0.5490 +0 0.0430 +0 0.0998 +0 0.1403 +0 0.1744 +0 0.0596 +0 0.1068 +0 0.1513 +0 0.5789 +0 0.1254 +0 0.0656 +0 0.1547 +0 0.0367 +0 0.1396 +0 0.1015 +0 0.0618 +0 0.0657 +1 0.7996 +0 0.1287 +0 0.0798 +0 0.0721 +0 0.2622 +0 0.2738 +0 0.1031 +0 0.3106 +0 0.0648 +0 0.0451 +0 0.0700 +0 0.0909 +0 0.0480 +0 0.0643 +0 0.1537 +0 0.1941 +0 0.0842 +0 0.1011 +0 0.1495 +0 0.1548 +0 0.0520 +0 0.0336 +0 0.0615 +0 0.1455 +0 0.0500 +0 0.1077 +0 0.0841 +0 0.1300 +0 0.1522 +0 0.2380 +0 0.0973 +0 0.1233 +0 0.0849 +0 0.1862 +0 0.0426 +0 0.2822 +0 0.0758 +0 0.2527 +0 0.0583 +0 0.5947 +0 0.2918 +0 0.0938 +0 0.6937 +0 0.0926 +0 0.2333 +0 0.0393 +0 0.0528 +0 0.1302 +0 0.2718 +0 0.0685 +0 0.5538 +0 0.0969 +0 0.0784 +0 0.0855 +0 0.1272 +0 0.0742 +0 0.2462 +0 0.1972 +0 0.0517 +0 0.0350 +0 0.2945 +0 0.1938 +0 0.0590 +0 0.6206 +0 0.0947 +0 0.0878 +0 0.0501 +0 0.3067 +0 0.2176 +0 0.5061 +0 0.1233 +0 0.2254 +0 0.1092 +0 0.1115 +1 0.8301 +0 0.1622 +0 0.0417 +0 0.0581 +0 0.2257 +0 0.1223 +0 0.1184 +0 0.1400 +0 0.0999 +0 0.0489 +0 0.1561 +0 0.2365 +0 0.0888 +0 0.1111 +0 0.2799 +0 0.3914 +0 0.2044 +0 0.0517 +0 0.1140 +0 0.1296 +0 0.0789 +0 0.0758 +0 0.0439 +0 0.1194 +0 0.1035 +0 0.0654 +0 0.0692 +0 0.0492 +0 0.0881 +0 0.0922 +0 0.0584 +0 0.3912 +0 0.0625 +0 0.0681 +0 0.0872 +0 0.1364 +1 0.7624 +0 0.0611 +0 0.0745 +0 0.3420 +0 0.2094 +0 0.1938 +0 0.0626 +0 0.5623 +0 0.1207 +0 0.0804 +0 0.0968 +0 0.0977 +0 0.0806 +0 0.2335 +0 0.0638 +0 0.1425 +0 0.1326 +0 0.5275 +0 0.5399 +0 0.2349 +0 0.5164 +0 0.1835 +0 0.1372 +0 0.0514 +0 0.1401 +0 0.3110 +0 0.1571 +0 0.0686 +0 0.0925 +0 0.1489 +0 0.0432 +0 0.1459 +0 0.0495 +0 0.1449 +0 0.0701 +0 0.1696 +1 0.7602 +0 0.0638 +0 0.2719 +0 0.0859 +0 0.0788 +0 0.0550 +0 0.0572 +0 0.0736 +0 0.2326 +0 0.1029 +0 0.2002 +0 0.1370 +0 0.0519 +0 0.1215 +0 0.0824 +0 0.1563 +0 0.1129 +0 0.4373 +0 0.2719 +0 0.0983 +0 0.0877 +0 0.1801 +0 0.2257 +0 0.6828 +0 0.0723 +0 0.1526 +0 0.2763 +0 0.0368 +0 0.0611 +0 0.3472 +0 0.0297 +0 0.0638 +0 0.0696 +0 0.4629 +0 0.1827 +0 0.2515 +0 0.1837 +0 0.0945 +0 0.0709 +0 0.1463 +0 0.1107 +0 0.2626 +0 0.1291 +1 0.7884 +1 0.8428 +0 0.0906 +0 0.0805 +0 0.0928 +0 0.0812 +0 0.1327 +0 0.0792 +0 0.1379 +0 0.1303 +0 0.3438 +0 0.0367 +0 0.0541 +0 0.1531 +0 0.2933 +0 0.0549 +0 0.1201 +1 0.7863 +0 0.1278 +0 0.0760 +0 0.1171 +0 0.2693 +0 0.0940 +0 0.1132 +0 0.1292 +0 0.0954 +0 0.1213 +0 0.1216 +0 0.0570 +0 0.0610 +0 0.1111 +0 0.1257 +0 0.0953 +0 0.1928 +0 0.1093 +0 0.1986 +0 0.0908 +0 0.0728 +0 0.1049 +0 0.0737 +0 0.1595 +0 0.1323 +0 0.1191 +0 0.2231 +0 0.1311 +0 0.1259 +1 0.7720 +0 0.0349 +0 0.0680 +0 0.2293 +0 0.1490 +0 0.0364 +0 0.1066 +0 0.3404 +0 0.1732 +0 0.4191 +0 0.0908 +0 0.0978 +0 0.0535 +0 0.0558 +0 0.3134 +0 0.1293 +0 0.0968 +0 0.1156 +0 0.1509 +0 0.1051 +0 0.1415 +0 0.0618 +0 0.0685 +0 0.0913 +0 0.0389 +0 0.1982 +0 0.1799 +0 0.3001 +0 0.0961 +0 0.0667 +0 0.0655 +0 0.0582 +0 0.1360 +0 0.0713 +0 0.2083 +0 0.0473 +0 0.1177 +0 0.1394 +0 0.1461 +0 0.0808 +0 0.0646 +0 0.0539 +0 0.1282 +0 0.1307 +0 0.0770 +0 0.2178 +0 0.1209 +0 0.1378 +0 0.1007 +0 0.1260 +0 0.0804 +0 0.0955 +0 0.4373 +0 0.1984 +0 0.1568 +0 0.1449 +0 0.0785 +0 0.0840 +0 0.0717 +0 0.4907 +1 0.8302 +0 0.1456 +0 0.0966 +0 0.1251 +0 0.0407 +0 0.2962 +0 0.1949 +0 0.0471 +0 0.0755 +0 0.1428 +0 0.0978 +0 0.1426 +0 0.0686 +0 0.0515 +0 0.0984 +0 0.2025 +0 0.0898 +0 0.0536 +0 0.1534 +0 0.1011 +0 0.2100 +0 0.0359 +0 0.1028 +0 0.0608 +0 0.0535 +0 0.0952 +0 0.5183 +0 0.3048 +0 0.0875 +0 0.0828 +0 0.1410 +0 0.2403 +0 0.1379 +0 0.2951 +1 0.7862 +0 0.0969 +0 0.0550 +0 0.1499 +0 0.0604 +0 0.2378 +0 0.1532 +0 0.2364 +0 0.0687 +0 0.0547 +0 0.1798 +0 0.1240 +0 0.0445 +0 0.1169 +0 0.0811 +0 0.0534 +0 0.4299 +0 0.2004 +0 0.1981 +0 0.1578 +0 0.0933 +0 0.0354 +0 0.0789 +0 0.5926 +0 0.1369 +0 0.0478 +0 0.1120 +0 0.0975 +0 0.0615 +0 0.0485 +0 0.2074 +0 0.1094 +0 0.1569 +1 0.8512 +0 0.1203 +0 0.0443 +0 0.0523 +0 0.1973 +0 0.1858 +0 0.2306 +0 0.2459 +0 0.0874 +0 0.1380 +0 0.0645 +0 0.2574 +0 0.1098 +0 0.1436 +0 0.4718 +0 0.1604 +0 0.1699 +0 0.0868 +0 0.2255 +0 0.5167 +0 0.1754 +0 0.1194 +0 0.1958 +0 0.0990 +0 0.1148 +0 0.1428 +0 0.0971 +0 0.1217 +0 0.2847 +0 0.1053 +0 0.0548 +0 0.2434 +0 0.5185 +0 0.0581 +0 0.1405 +0 0.0693 +0 0.1055 +0 0.1341 +0 0.0962 +0 0.3337 +0 0.0607 +0 0.1098 +0 0.1508 +0 0.0971 +0 0.0923 +0 0.2775 +0 0.0505 +0 0.1021 +0 0.1497 +0 0.1215 +0 0.1454 +0 0.1152 +0 0.0842 +0 0.0889 +0 0.1714 +0 0.0805 +0 0.3183 +0 0.0556 +0 0.0819 +0 0.1151 +0 0.1676 +0 0.1727 +0 0.1018 +0 0.1193 +0 0.2353 +0 0.3208 +0 0.2181 +0 0.6812 +0 0.1042 +0 0.3663 +0 0.1387 +0 0.1039 +0 0.0885 +0 0.1068 +0 0.0612 +0 0.3380 +0 0.0716 +0 0.1264 +0 0.1249 +0 0.0437 +0 0.0813 +0 0.1362 +0 0.0785 +0 0.1210 +0 0.1050 +0 0.0894 +0 0.2640 +0 0.0594 +0 0.0976 +0 0.0495 +0 0.0787 +0 0.1586 +0 0.0574 +0 0.0598 +0 0.0487 +0 0.1085 +0 0.1102 +0 0.1202 +1 0.8043 +0 0.1533 +0 0.2003 +0 0.1177 +0 0.0972 +0 0.1568 +0 0.0739 +0 0.0785 +0 0.1279 +0 0.0739 +0 0.1579 +0 0.2052 +0 0.0839 +0 0.1371 +0 0.0705 +0 0.0685 +0 0.0588 +0 0.1343 +0 0.1197 +0 0.0773 +0 0.1003 +0 0.0352 +0 0.0521 +0 0.0887 +0 0.0755 +0 0.0657 +0 0.1964 +0 0.1465 +0 0.0790 +0 0.3938 +0 0.0865 +0 0.0687 +0 0.3214 +0 0.1260 +0 0.0710 +0 0.0848 +0 0.0468 +0 0.2450 +0 0.0790 +0 0.1662 +0 0.0974 +0 0.1528 +0 0.1336 +0 0.1225 +0 0.0978 +0 0.1505 +0 0.1439 +0 0.0664 +0 0.0530 +0 0.4216 +0 0.0805 +0 0.0474 +0 0.0768 +0 0.0943 +0 0.0622 +0 0.2936 +0 0.1892 +0 0.0910 +0 0.0850 +0 0.1087 +0 0.0834 +0 0.0844 +0 0.0865 +0 0.0467 +0 0.1233 +0 0.2741 +0 0.0719 +0 0.2815 +0 0.2936 +1 0.7524 +0 0.2169 +0 0.1361 +0 0.1415 +0 0.0499 +0 0.4522 +0 0.0814 +0 0.1618 +0 0.0851 +0 0.0306 +0 0.1193 +0 0.1521 +0 0.0685 +0 0.1134 +0 0.1597 +0 0.0972 +0 0.7102 +0 0.0570 +1 0.8449 +0 0.1146 +0 0.0584 +0 0.0927 +0 0.3292 +0 0.0617 +0 0.0885 +0 0.1170 +0 0.0855 +0 0.0784 +0 0.1044 +0 0.0735 +0 0.3829 +0 0.0908 +0 0.1072 +0 0.3151 +0 0.0641 +0 0.1015 +0 0.2464 +0 0.2959 +0 0.0770 +0 0.6565 +0 0.2011 +0 0.0551 +0 0.3074 +0 0.1031 +0 0.1881 +0 0.0994 +0 0.0543 +0 0.2666 +1 0.7930 +0 0.0993 +0 0.0932 +0 0.0753 +0 0.1513 +0 0.1330 +0 0.1663 +0 0.2740 +1 0.7538 +0 0.0840 +0 0.0490 +0 0.0896 +0 0.0855 +0 0.1350 +0 0.0707 +0 0.0741 +0 0.2715 +0 0.1067 +0 0.2952 +0 0.0445 +0 0.0821 +0 0.0383 +0 0.1029 +0 0.1383 +0 0.0573 +0 0.2186 +0 0.0877 +0 0.0870 +0 0.0893 +0 0.1267 +0 0.0586 +0 0.1462 +0 0.0596 +0 0.0554 +0 0.1044 +0 0.0682 +0 0.1344 +0 0.0690 +0 0.1018 +0 0.0820 +1 0.7701 +0 0.1161 +0 0.2131 +0 0.1168 +0 0.1107 +0 0.0498 +0 0.0800 +0 0.0660 +0 0.0833 +0 0.0776 +0 0.2305 +0 0.0805 +0 0.1982 +0 0.2913 +0 0.1644 +0 0.0939 +0 0.0749 +0 0.0664 +0 0.2215 +0 0.0485 +0 0.0665 +0 0.1079 +0 0.0935 +0 0.0385 +0 0.1328 +0 0.1793 +0 0.0475 +0 0.0604 +0 0.2184 +0 0.0458 +0 0.1416 +0 0.1216 +0 0.0451 +0 0.4860 +0 0.0560 +0 0.0654 +0 0.0646 +0 0.0848 +0 0.1167 +0 0.0807 +0 0.1601 +0 0.1219 +0 0.1256 +0 0.0691 +0 0.0615 +0 0.1109 +0 0.0697 +0 0.0902 +0 0.0770 +0 0.0883 +0 0.0726 +0 0.0840 +0 0.0749 +0 0.1674 +0 0.1073 +0 0.0723 +0 0.0912 +0 0.0992 +0 0.0925 +0 0.2593 +0 0.1661 +0 0.1237 +0 0.1406 +0 0.0934 +0 0.0861 +0 0.1530 +0 0.3437 +0 0.1679 +0 0.0571 +1 0.8321 +0 0.1392 +0 0.0544 +0 0.0933 +0 0.0561 +0 0.0752 +0 0.2513 +0 0.2040 +0 0.0997 +0 0.0956 +0 0.1446 +0 0.0923 +0 0.0467 +1 0.8592 +0 0.1725 +0 0.1757 +0 0.0470 +0 0.3906 +0 0.0478 +0 0.0629 +0 0.1395 +0 0.0526 +0 0.1872 +0 0.0805 +0 0.2300 +0 0.2802 +0 0.0915 +0 0.0747 +0 0.0713 +0 0.0850 +0 0.1595 +0 0.0943 +0 0.1418 +0 0.1342 +0 0.1006 +0 0.1152 +0 0.0714 +0 0.0642 +0 0.2334 +0 0.3484 +0 0.1970 +0 0.1823 +0 0.0688 +0 0.1144 +0 0.1440 +0 0.1040 +0 0.0471 +0 0.0494 +0 0.1041 +0 0.0449 +0 0.1514 +0 0.0908 +0 0.1154 +0 0.1241 +0 0.0942 +0 0.1780 +0 0.1154 +0 0.0835 +0 0.2380 +1 0.7848 +0 0.1184 +0 0.0900 +0 0.1860 +0 0.0653 +0 0.0847 +0 0.2527 +0 0.0641 +0 0.0623 +0 0.1547 +0 0.2186 +0 0.1022 +0 0.1160 +0 0.0584 +0 0.0550 +0 0.0614 +0 0.2199 +0 0.0950 +0 0.1278 +0 0.0441 +0 0.1302 +0 0.0757 +0 0.0536 +0 0.0713 +0 0.1064 +0 0.0693 +0 0.0671 +0 0.0481 +0 0.1047 +0 0.0826 +0 0.2121 +0 0.1195 +0 0.1243 +0 0.0802 +0 0.1849 +0 0.0981 +0 0.1566 +0 0.1473 +0 0.2902 +0 0.0864 +0 0.0470 +0 0.1313 +0 0.1445 +0 0.0808 +0 0.0966 +0 0.0669 +0 0.1374 +0 0.0782 +0 0.2192 +0 0.0504 +0 0.0750 +0 0.2341 +0 0.0596 +0 0.2153 +0 0.1010 +0 0.0522 +0 0.0603 +0 0.1099 +0 0.2318 +0 0.1077 +1 0.7840 +0 0.1320 +0 0.0832 +0 0.3351 +0 0.0473 +0 0.0482 +0 0.1288 +0 0.0687 +0 0.2595 +0 0.1608 +0 0.0868 +0 0.0702 +0 0.0718 +0 0.0817 +0 0.2979 +0 0.0479 +0 0.1050 +0 0.7043 +0 0.0899 +0 0.1828 +0 0.2375 +0 0.0656 +0 0.2003 +0 0.0447 +0 0.1863 +1 0.7842 +0 0.3523 +0 0.0718 +0 0.0653 +0 0.1017 +0 0.0795 +0 0.0898 +0 0.0729 +0 0.1445 +0 0.0936 +0 0.0844 +0 0.1171 +0 0.2145 +0 0.2139 +0 0.1475 +0 0.1075 +0 0.0389 +0 0.1774 +0 0.0492 +0 0.1676 +0 0.0912 +0 0.0715 +0 0.0766 +0 0.1762 +0 0.0679 +0 0.0548 +0 0.0609 +0 0.1052 +0 0.0840 +0 0.1592 +0 0.0718 +0 0.1358 +0 0.1376 +0 0.1291 +0 0.1484 +0 0.2312 +0 0.1905 +0 0.2039 +1 0.8536 +0 0.0984 +0 0.0916 +0 0.2498 +0 0.1775 +0 0.0481 +0 0.0699 +0 0.0617 +0 0.0997 +0 0.0991 +0 0.1901 +0 0.1014 +0 0.0750 +0 0.1154 +0 0.2510 +0 0.0880 +0 0.1726 +0 0.0931 +0 0.0446 +0 0.1962 +0 0.4607 +0 0.1553 +0 0.0512 +0 0.1588 +0 0.4429 +0 0.1928 +0 0.0865 +0 0.2005 +0 0.1037 +0 0.1689 +0 0.1511 +0 0.2381 +0 0.1827 +0 0.0534 +0 0.0593 +0 0.0601 +0 0.0662 +0 0.0623 +0 0.0937 +0 0.1425 +0 0.0959 +0 0.1214 +0 0.1665 +0 0.3763 +0 0.0733 +0 0.0925 +0 0.0900 +0 0.1760 +0 0.1512 +0 0.1353 +0 0.0640 +0 0.1129 +0 0.1325 +0 0.0648 +0 0.1100 +0 0.0587 +0 0.1037 +0 0.0554 +0 0.5201 +0 0.1889 +0 0.0562 +0 0.1287 +0 0.0628 +0 0.1276 +0 0.1132 +0 0.1179 +0 0.0947 +0 0.2303 +0 0.0772 +0 0.2365 +0 0.1255 +0 0.1103 +0 0.0315 +0 0.1356 +0 0.6588 +0 0.1312 +0 0.1000 +0 0.0524 +0 0.0918 +0 0.1857 +0 0.1665 +0 0.0816 +0 0.1180 +0 0.0432 +0 0.1546 +0 0.1296 +0 0.0736 +0 0.0375 +0 0.0344 +0 0.1220 +0 0.0362 +0 0.1201 +0 0.1230 +0 0.0656 +0 0.1796 +0 0.0639 +0 0.1007 +0 0.0781 +0 0.1671 +0 0.0540 +0 0.0889 +0 0.1231 +0 0.0753 +0 0.2845 +0 0.1620 +0 0.3489 +0 0.0444 +0 0.0421 +0 0.1263 +0 0.0479 +0 0.1250 +0 0.1113 +0 0.0399 +0 0.0708 +0 0.1030 +0 0.1023 +0 0.0446 +0 0.0929 +0 0.0617 +0 0.0671 +0 0.2272 +0 0.0388 +0 0.0830 +0 0.2192 +0 0.3660 +0 0.1972 +0 0.7194 +0 0.1136 +0 0.2527 +0 0.0467 +0 0.0552 +0 0.0582 +0 0.3222 +0 0.1114 +0 0.1066 +0 0.1364 +0 0.0975 +0 0.0866 +1 0.8528 +0 0.0992 +0 0.0729 +0 0.0942 +0 0.0627 +0 0.1958 +0 0.0981 +0 0.0572 +0 0.2342 +0 0.1051 +0 0.0820 +0 0.0820 +0 0.2006 +0 0.0940 +0 0.4320 +0 0.0892 +0 0.0958 +0 0.1240 +0 0.1682 +0 0.1091 +0 0.1118 +0 0.1020 +0 0.0811 +0 0.1120 +0 0.0651 +0 0.0725 +0 0.2522 +0 0.4360 +0 0.1552 +0 0.1433 +0 0.0509 +0 0.2584 +0 0.2255 +0 0.0631 +0 0.2040 +0 0.1861 +0 0.0620 +0 0.1080 +0 0.0860 +0 0.0850 +0 0.1503 +0 0.1507 +0 0.1295 +0 0.0588 +0 0.2376 +0 0.0684 +0 0.1458 +0 0.0660 +0 0.0746 +0 0.0672 +0 0.0564 +0 0.2209 +0 0.1210 +0 0.2242 +0 0.2050 +0 0.1546 +0 0.0584 +0 0.0760 +0 0.0637 +0 0.0881 +0 0.3068 +0 0.1017 +0 0.1095 +0 0.1954 +0 0.1740 +0 0.0706 +0 0.1507 +0 0.0618 +0 0.1029 +0 0.1599 +0 0.0295 +0 0.0863 +0 0.2980 +0 0.0372 +0 0.1636 +0 0.0603 +0 0.1538 +0 0.0887 +0 0.0464 +0 0.1603 +0 0.1519 +0 0.2508 +0 0.0622 +0 0.1469 +0 0.0996 +0 0.1036 +0 0.2283 +0 0.1769 +0 0.1417 +0 0.0495 +1 0.7513 +0 0.0708 +0 0.0954 +0 0.1124 +0 0.1337 +0 0.1372 +0 0.1538 +0 0.0484 +0 0.0949 +0 0.0764 +0 0.2519 +0 0.1028 +0 0.0611 +0 0.0289 +0 0.1353 +0 0.2198 +0 0.0467 +0 0.0886 +0 0.0682 +0 0.1670 +0 0.0802 +0 0.0837 +1 0.8344 +0 0.0738 +0 0.2603 +0 0.0734 +0 0.0715 +0 0.1055 +0 0.0473 +0 0.0598 +0 0.0494 +0 0.0895 +0 0.0887 +0 0.0438 +0 0.1003 +0 0.1787 +0 0.0856 +0 0.0659 +0 0.1016 +0 0.0678 +1 0.8416 +0 0.0770 +0 0.2628 +0 0.1100 +1 0.7810 +0 0.1142 +0 0.0987 +0 0.1161 +0 0.1269 +0 0.0446 +0 0.0935 +0 0.0489 +0 0.1171 +0 0.1657 +0 0.0645 +0 0.0725 +0 0.1276 +0 0.2238 +0 0.0742 +0 0.1870 +0 0.0768 +0 0.0947 +0 0.0996 +0 0.2904 +0 0.0945 +0 0.1274 +0 0.1101 +0 0.0744 +0 0.0809 +0 0.3104 +0 0.0605 +0 0.0416 +0 0.1025 +0 0.1336 +0 0.2552 +0 0.1285 +0 0.1399 +0 0.0539 +0 0.0606 +0 0.0863 +0 0.1594 +0 0.1048 +0 0.6966 +0 0.2496 +0 0.0813 +0 0.1801 +0 0.1531 +0 0.1585 +0 0.1863 +0 0.0947 +0 0.2408 +0 0.2047 +0 0.1029 +0 0.1269 +0 0.1164 +0 0.0864 +0 0.1319 +0 0.1229 +0 0.1799 +0 0.2824 +0 0.3238 +0 0.3183 +0 0.0648 +0 0.1238 +0 0.0546 +0 0.1731 +0 0.1962 +0 0.3289 +0 0.1185 +1 0.8317 +0 0.0342 +0 0.0658 +1 0.8469 +0 0.1081 +0 0.0471 +0 0.0819 +0 0.1293 +0 0.3666 +0 0.4369 +0 0.0736 +0 0.0345 +0 0.0780 +0 0.1728 +0 0.1751 +0 0.0969 +0 0.1655 +0 0.2180 +0 0.1263 +0 0.0780 +1 0.8092 +0 0.4346 +0 0.1233 +0 0.0912 +0 0.0810 +0 0.1130 +0 0.1832 +0 0.0783 +0 0.1931 +0 0.5524 +0 0.1145 +0 0.0771 +0 0.0863 +0 0.1035 +0 0.3347 +0 0.1727 +0 0.0391 +0 0.2340 +0 0.1518 +0 0.2100 +0 0.0995 +0 0.0872 +0 0.0849 +0 0.0977 +0 0.1020 +0 0.1056 +0 0.1256 +0 0.0761 +1 0.7654 +0 0.3664 +0 0.1058 +0 0.1073 +0 0.3831 +0 0.1281 +0 0.1374 +0 0.0572 +0 0.1391 +0 0.1010 +0 0.1176 +0 0.2836 +0 0.1676 +0 0.0987 +0 0.1041 +0 0.1225 +0 0.0705 +0 0.0828 +0 0.1640 +0 0.0516 +0 0.0765 +0 0.1041 +0 0.2305 +0 0.2942 +0 0.2296 +0 0.0795 +0 0.0725 +0 0.0697 +0 0.0844 +0 0.1101 +0 0.0685 +0 0.3852 +0 0.3658 +0 0.0451 +0 0.0811 +0 0.0420 +0 0.2136 +0 0.2520 +0 0.2670 +0 0.1482 +0 0.0399 +0 0.0829 +0 0.0616 +0 0.1311 +0 0.1081 +0 0.0935 +0 0.1719 +0 0.1313 +0 0.1099 +0 0.1051 +0 0.0807 +0 0.4182 +0 0.0822 +0 0.0595 +0 0.1548 +0 0.0887 +0 0.0691 +0 0.1138 +0 0.1966 +0 0.2233 +0 0.0834 +0 0.2077 +0 0.1119 +0 0.0670 +0 0.1783 +0 0.1235 +0 0.1941 +0 0.3302 +0 0.0793 +0 0.0656 +0 0.1672 +0 0.1153 +0 0.0771 +0 0.1167 +0 0.1381 +0 0.0872 +0 0.2384 +0 0.1177 +0 0.0832 +0 0.0846 +1 0.8292 +0 0.0843 +0 0.1052 +0 0.0512 +0 0.0456 +0 0.1930 +0 0.0584 +0 0.2339 +0 0.0625 +0 0.2897 +0 0.0612 +0 0.1403 +0 0.1262 +0 0.0525 +0 0.0861 +0 0.1106 +0 0.5988 +0 0.3588 +0 0.0830 +0 0.2468 +0 0.2049 +0 0.0682 +0 0.0866 +0 0.0415 +0 0.0573 +1 0.8430 +0 0.1287 +0 0.2648 +0 0.0801 +0 0.0704 +0 0.0724 +0 0.0860 +0 0.0580 +0 0.0757 +0 0.1221 +0 0.1678 +0 0.1231 +0 0.1856 +0 0.0631 +0 0.0562 +0 0.3240 +0 0.1311 +0 0.0615 +0 0.1409 +0 0.0596 +0 0.0984 +0 0.0730 +0 0.1014 +0 0.1243 +0 0.0686 +1 0.7974 +0 0.0543 +0 0.0812 +0 0.1739 +0 0.1314 +0 0.0948 +0 0.0383 +0 0.0735 +0 0.0846 +0 0.6664 +0 0.5185 +0 0.0572 +0 0.1251 +0 0.1781 +0 0.1018 +0 0.1157 +0 0.0861 +0 0.0729 +0 0.0677 +0 0.0606 +0 0.0795 +0 0.1281 +0 0.5379 +0 0.1632 +0 0.0607 +0 0.0423 +0 0.1494 +0 0.0924 +0 0.1305 +0 0.0696 +0 0.1433 +0 0.0558 +0 0.2257 +0 0.3315 +0 0.6090 +0 0.0397 +0 0.0903 +0 0.2223 +0 0.1220 +0 0.0716 +0 0.1314 +0 0.0643 +0 0.0956 +0 0.1436 +0 0.1549 +0 0.1509 +0 0.1136 +0 0.1728 +0 0.1801 +0 0.2016 +0 0.0852 +0 0.1017 +0 0.0960 +0 0.3800 +0 0.2253 +0 0.4243 +0 0.1239 +0 0.0797 +1 0.8023 +0 0.1860 +1 0.8531 +0 0.2358 +0 0.0738 +0 0.2301 +0 0.7385 +0 0.2240 +0 0.2859 +0 0.1109 +0 0.0409 +0 0.1831 +0 0.1472 +1 0.8206 +0 0.1969 +0 0.1987 +0 0.1092 +0 0.1496 +0 0.0826 +0 0.1429 +0 0.0719 +0 0.1848 +0 0.1912 +0 0.0981 +0 0.1079 +0 0.3114 +0 0.1339 +0 0.0607 +0 0.2021 +0 0.2023 +0 0.0743 +0 0.1132 +0 0.1898 +0 0.0934 +0 0.0641 +0 0.3028 +0 0.0750 +0 0.1709 +0 0.0821 +0 0.2283 +0 0.1999 +0 0.1500 +0 0.0840 +0 0.1415 +0 0.6409 +0 0.2099 +0 0.0904 +0 0.2816 +0 0.0938 +0 0.4461 +0 0.2001 +0 0.1037 +0 0.1964 +0 0.0644 +0 0.0665 +0 0.0371 +0 0.0729 +0 0.0807 +0 0.1039 +0 0.0894 +0 0.0681 +0 0.1263 +0 0.0596 +0 0.1149 +0 0.1053 +0 0.0729 +0 0.1106 +0 0.1391 +0 0.3740 +0 0.0792 +0 0.1196 +0 0.0774 +0 0.0843 +0 0.1887 +0 0.0591 +0 0.1227 +0 0.6202 +0 0.1502 +0 0.1134 +0 0.1166 +0 0.0769 +0 0.0854 +0 0.0984 +0 0.0706 +0 0.6934 +0 0.1779 +0 0.1585 +0 0.0692 +0 0.1001 +0 0.0590 +0 0.2416 +0 0.1206 +0 0.0629 +0 0.1143 +0 0.0484 +0 0.0845 +0 0.0528 +0 0.0829 +0 0.2327 +0 0.1890 +0 0.0925 +0 0.1217 +0 0.0920 +0 0.0837 +0 0.0675 +0 0.0451 +0 0.1167 +0 0.0878 +0 0.0574 +0 0.0682 +0 0.0803 +0 0.0907 +0 0.0900 +0 0.2119 +0 0.0725 +0 0.1223 +0 0.0861 +0 0.0854 +0 0.0867 +0 0.1530 +0 0.4345 +0 0.1535 +0 0.0896 +0 0.0895 +0 0.1202 +0 0.0789 +0 0.3115 +0 0.3218 +0 0.0655 +0 0.0386 +0 0.0671 +0 0.1536 +0 0.0949 +0 0.1362 +0 0.1159 +0 0.0370 +0 0.1661 +1 0.8643 +0 0.0785 +0 0.0365 +0 0.2384 +0 0.0678 +0 0.1552 +0 0.0879 +1 0.8021 +0 0.0472 +0 0.0831 +0 0.0686 +0 0.1062 +0 0.1180 +0 0.1302 +0 0.0573 +0 0.0707 +0 0.1295 +0 0.6637 +0 0.1985 +0 0.0754 +0 0.0981 +0 0.0934 +0 0.0716 +0 0.0528 +0 0.0687 +0 0.0858 +0 0.0356 +0 0.0533 +0 0.0783 +0 0.0784 +0 0.1097 +0 0.0920 +0 0.0617 +0 0.1023 +0 0.1519 +0 0.2238 +1 0.7672 +0 0.1027 +0 0.5728 +0 0.0661 +0 0.2221 +0 0.0376 +0 0.1081 +0 0.1969 +0 0.1446 +0 0.1851 +0 0.0807 +0 0.0503 +0 0.0647 +0 0.2228 +0 0.1368 +0 0.3136 +1 0.8239 +0 0.1302 +0 0.4206 +0 0.1442 +0 0.1003 +0 0.0551 +0 0.0851 +0 0.0540 +0 0.2361 +0 0.0670 +0 0.3070 +0 0.0856 +0 0.0914 +0 0.4441 +0 0.5316 +0 0.0719 +0 0.6428 +0 0.2399 +0 0.1373 +0 0.0810 +0 0.1027 +0 0.0447 +0 0.1129 +0 0.1057 +0 0.1672 +0 0.0852 +0 0.1234 +0 0.3132 +0 0.1448 +0 0.0526 +0 0.2360 +0 0.0940 +0 0.4674 +0 0.0584 +0 0.1457 +0 0.1600 +0 0.2952 +0 0.1851 +0 0.0864 +0 0.1541 +0 0.2129 +0 0.0568 +0 0.2239 +0 0.2833 +0 0.1572 +0 0.4114 +0 0.1096 +0 0.2071 +0 0.0988 +0 0.1551 +0 0.0794 +0 0.1896 +0 0.1463 +0 0.0937 +0 0.1632 +0 0.1019 +0 0.2855 +0 0.0996 +0 0.1108 +0 0.0721 +0 0.0822 +0 0.0909 +0 0.0805 +0 0.2658 +0 0.1133 +0 0.1226 +0 0.1561 +0 0.0345 +0 0.0989 +0 0.2458 +0 0.1464 +0 0.1052 +0 0.0961 +0 0.0988 +0 0.2148 +0 0.1646 +0 0.1249 +0 0.0510 +0 0.1499 +0 0.0633 +0 0.1089 +0 0.3322 +0 0.0913 +0 0.0965 +0 0.0457 +0 0.0889 +0 0.1262 +0 0.0385 +0 0.0575 +0 0.0543 +0 0.1615 +0 0.0550 +0 0.3010 +0 0.1419 +0 0.1435 +0 0.0501 +0 0.2251 +0 0.4562 +0 0.0668 +0 0.2822 +0 0.1231 +1 0.7994 +0 0.0928 +0 0.0776 +0 0.1047 +0 0.1242 +0 0.5987 +0 0.0759 +0 0.1115 +0 0.0787 +0 0.2382 +0 0.0555 +0 0.1216 +1 0.8152 +0 0.1229 +0 0.0725 +0 0.1132 +0 0.1103 +0 0.1500 +0 0.1207 +0 0.2114 +0 0.1018 +0 0.1080 +0 0.2153 +0 0.0339 +0 0.1946 +0 0.0627 +0 0.0731 +0 0.2009 +0 0.1035 +0 0.1459 +0 0.3173 +0 0.0450 +0 0.1013 +0 0.0432 +0 0.2444 +0 0.0866 +0 0.0692 +0 0.0850 +0 0.0493 +0 0.0581 +0 0.0783 +0 0.1901 +0 0.0829 +1 0.8391 +0 0.0912 +0 0.0992 +0 0.1770 +0 0.1495 +0 0.0866 +0 0.0353 +0 0.1517 +0 0.0980 +0 0.0881 +0 0.0791 +0 0.0598 +0 0.1061 +0 0.0614 +0 0.0701 +0 0.0997 +0 0.0453 +0 0.1185 +0 0.1264 +0 0.1225 +0 0.3694 +0 0.1436 +0 0.1475 +0 0.4441 +0 0.0840 +0 0.1857 +0 0.1869 +0 0.1299 +0 0.1012 +0 0.0425 +0 0.1546 +0 0.2065 +0 0.1070 +0 0.0717 +0 0.1252 +0 0.1579 +0 0.1778 +0 0.2708 +0 0.1167 +0 0.0456 +0 0.0812 +0 0.2295 +0 0.0670 +0 0.0814 +0 0.1059 +0 0.3413 +0 0.0939 +0 0.0849 +0 0.4391 +0 0.0342 +0 0.1506 +0 0.1103 +0 0.0903 +0 0.1570 +1 0.8174 +0 0.0714 +0 0.1101 +0 0.0678 +0 0.2053 +0 0.0661 +0 0.0759 +0 0.0637 +0 0.0503 +0 0.0564 +0 0.0680 +0 0.3250 +0 0.0970 +0 0.0804 +0 0.0892 +0 0.0772 +0 0.6882 +0 0.0786 +0 0.0576 +0 0.0928 +0 0.0784 +0 0.0271 +0 0.0524 +0 0.0394 +0 0.1461 +0 0.1155 +0 0.0335 +0 0.0588 +0 0.0948 +0 0.2443 +0 0.0454 +0 0.0701 +0 0.1307 +0 0.0495 +0 0.1342 +0 0.0753 +0 0.0815 +0 0.0733 +0 0.0887 +0 0.0854 +0 0.0389 +0 0.0655 +0 0.2345 +0 0.1281 +0 0.0578 +0 0.0666 +0 0.4516 +0 0.0940 +0 0.0818 +0 0.1925 +0 0.1282 +0 0.0448 +0 0.1574 +0 0.1109 +0 0.1069 +0 0.2245 +0 0.7369 +0 0.0512 +0 0.0551 +0 0.3060 +0 0.2591 +0 0.1521 +0 0.0843 +0 0.0791 +0 0.1576 +0 0.1424 +0 0.0904 +0 0.7212 +0 0.0461 +0 0.1158 +0 0.5126 +0 0.0683 +0 0.0844 +0 0.1664 +0 0.0567 +0 0.0527 +0 0.0958 +0 0.0946 +0 0.0422 +0 0.1502 +0 0.0875 +0 0.0812 +0 0.2272 +0 0.2371 +0 0.1439 +0 0.0842 +0 0.1248 +0 0.0817 +0 0.2123 +0 0.0977 +0 0.0799 +0 0.0551 +0 0.2939 +0 0.1136 +0 0.2444 +0 0.1155 +0 0.1960 +0 0.0701 +0 0.1560 +1 0.8164 +0 0.0636 +0 0.0891 +0 0.0725 +0 0.0726 +0 0.0634 +0 0.0465 +0 0.0666 +0 0.1567 +0 0.0967 +0 0.1008 +0 0.0771 +0 0.0651 +0 0.1920 +0 0.1523 +0 0.3264 +0 0.0862 +0 0.4547 +0 0.0967 +0 0.0952 +0 0.1860 +0 0.1564 +0 0.0707 +0 0.2919 +0 0.1455 +0 0.1923 +0 0.0706 +0 0.0843 +0 0.0455 +0 0.1297 +0 0.1051 +0 0.4100 +0 0.1214 +0 0.7427 +0 0.1272 +0 0.1072 +0 0.0497 +0 0.0908 +0 0.1466 +0 0.0863 +0 0.0497 +0 0.2045 +0 0.2024 +0 0.0489 +0 0.1200 +0 0.0669 +0 0.0761 +0 0.0761 +0 0.1180 +0 0.0647 +0 0.0565 +0 0.0927 +0 0.0613 +0 0.0891 +0 0.0827 +0 0.1090 +0 0.1444 +0 0.1377 +0 0.1600 +0 0.0760 +0 0.0868 +0 0.0434 +0 0.0824 +0 0.0446 +0 0.0797 +0 0.0830 +0 0.1447 +0 0.2525 +0 0.0432 +0 0.0746 +0 0.2642 +0 0.0401 +0 0.0497 +0 0.1283 +0 0.0626 +0 0.1704 +0 0.1771 +0 0.1467 +0 0.0822 +0 0.2143 +0 0.0807 +0 0.0917 +0 0.1159 +0 0.0846 +1 0.7881 +0 0.1050 +0 0.1076 +0 0.2177 +0 0.0900 +0 0.0743 +0 0.6995 +0 0.1241 +0 0.1980 +0 0.3677 +0 0.2699 +0 0.0537 +0 0.0593 +0 0.0948 +0 0.1149 +0 0.3181 +0 0.1805 +0 0.1084 +0 0.0860 +0 0.1553 +0 0.0931 +0 0.0570 +0 0.2457 +0 0.1863 +0 0.0587 +1 0.7902 +0 0.0673 +0 0.1930 +0 0.3525 +0 0.0659 +0 0.1621 +0 0.4436 +0 0.1144 +0 0.0741 +0 0.0598 +0 0.0901 +0 0.1386 +0 0.1194 +0 0.1416 +0 0.1313 +0 0.1245 +0 0.0792 +0 0.2371 +0 0.2118 +0 0.0443 +0 0.2358 +0 0.0607 +0 0.0357 +0 0.0815 +0 0.1806 +1 0.8288 +0 0.1155 +0 0.0417 +0 0.0701 +0 0.0990 +0 0.7341 +0 0.1093 +0 0.1487 +0 0.1182 +0 0.1349 +0 0.2144 +0 0.1391 +0 0.3136 +0 0.0393 +0 0.0827 +0 0.1631 +0 0.1952 +0 0.0479 +0 0.1724 +1 0.8621 +0 0.0989 +1 0.8274 +0 0.1453 +0 0.1535 +0 0.0772 +0 0.0728 +0 0.5186 +0 0.2110 +0 0.0372 +0 0.0835 +0 0.6803 +0 0.5886 +0 0.2539 +0 0.1898 +0 0.0719 +0 0.1039 +0 0.1232 +0 0.1510 +0 0.1078 +0 0.2719 +0 0.4126 +0 0.0874 +0 0.0832 +0 0.0938 +0 0.1754 +0 0.0828 +0 0.0763 +0 0.2028 +0 0.1290 +0 0.1069 +0 0.4095 +0 0.0775 +0 0.0401 +0 0.0922 +0 0.0724 +0 0.0894 +0 0.1247 +0 0.6449 +0 0.0530 +0 0.1154 +0 0.0665 +0 0.0430 +0 0.2027 +0 0.0644 +0 0.0547 +0 0.0720 +0 0.0946 +0 0.2468 +0 0.2077 +0 0.0722 +0 0.1367 +0 0.0323 +0 0.0841 +0 0.0877 +0 0.0547 +0 0.2625 +0 0.1219 +0 0.0901 +0 0.0829 +0 0.1001 +0 0.0910 +1 0.7690 +0 0.0654 +0 0.2377 +0 0.7054 +0 0.3073 +0 0.2177 +0 0.1251 +0 0.0457 +0 0.1588 +0 0.2379 +0 0.1995 +0 0.0668 +0 0.0939 +0 0.1312 +0 0.1159 +0 0.0917 +0 0.0809 +0 0.0912 +0 0.1084 +0 0.1275 +0 0.0996 +0 0.1025 +0 0.1046 +0 0.1815 +0 0.1050 +0 0.0562 +0 0.6729 +0 0.1438 +0 0.0285 +0 0.0823 +0 0.1120 +0 0.0826 +0 0.1870 +0 0.0773 +0 0.0498 +0 0.1720 +0 0.0804 +0 0.0929 +0 0.5866 +0 0.0947 +0 0.0662 +0 0.0721 +0 0.1560 +0 0.4254 +0 0.0516 +0 0.0988 +0 0.0903 +0 0.5033 +0 0.0976 +0 0.2385 +0 0.4056 +0 0.0656 +0 0.2095 +0 0.1200 +0 0.0509 +0 0.0851 +0 0.4648 +0 0.1373 +0 0.1845 +0 0.0576 +0 0.1455 +0 0.6227 +0 0.3169 +0 0.0544 +0 0.1430 +0 0.2559 +0 0.1043 +0 0.0710 +0 0.1225 +0 0.1972 +0 0.0860 +0 0.0734 +0 0.0715 +0 0.0834 +0 0.0520 +0 0.0661 +0 0.0875 +0 0.0370 +0 0.3708 +0 0.3074 +0 0.7028 +0 0.1613 +0 0.0803 +0 0.0760 +0 0.1602 +0 0.0992 +0 0.1189 +0 0.1341 +0 0.1413 +0 0.0346 +0 0.1514 +0 0.0886 +0 0.0681 +0 0.0679 +0 0.1175 +0 0.2638 +0 0.1250 +0 0.1474 +0 0.1169 +0 0.0840 +0 0.0689 +0 0.0692 +0 0.1425 +0 0.0591 +0 0.1866 +0 0.0924 +0 0.1055 +0 0.0462 +0 0.0797 +0 0.1169 +0 0.1311 +0 0.2858 +0 0.1830 +0 0.2558 +0 0.1052 +0 0.0543 +0 0.1862 +0 0.0811 +0 0.0773 +0 0.1699 +0 0.0782 +0 0.0622 +0 0.0777 +0 0.1569 +0 0.1955 +0 0.0596 +0 0.2251 +0 0.0676 +0 0.0873 +0 0.0491 +0 0.0602 +0 0.0319 +0 0.1202 +0 0.0655 +0 0.0392 +0 0.0937 +0 0.1789 +0 0.0529 +0 0.2775 +0 0.1706 +0 0.0627 +0 0.2393 +0 0.0782 +0 0.0463 +0 0.1504 +0 0.2613 +0 0.0712 +0 0.0901 +0 0.1913 +0 0.1300 +0 0.1648 +0 0.0772 +0 0.1003 +0 0.1160 +0 0.2488 +0 0.1045 +0 0.1769 +0 0.0829 +0 0.0324 +0 0.1400 +0 0.3258 +0 0.1021 +0 0.2415 +0 0.1481 +0 0.1297 +0 0.0604 +0 0.1000 +0 0.1263 +0 0.2684 +0 0.0574 +0 0.1996 +0 0.0533 +0 0.0520 +0 0.0923 +0 0.0717 +0 0.1655 +0 0.0884 +0 0.1713 +0 0.1890 +0 0.1633 +0 0.5146 +0 0.2921 +0 0.1359 +0 0.0949 +0 0.0633 +0 0.1868 +0 0.0658 +0 0.1188 +0 0.2583 +0 0.1160 +0 0.1133 +0 0.0392 +0 0.0982 +0 0.1097 +0 0.2733 +0 0.1461 +0 0.0722 +0 0.4868 +0 0.0687 +0 0.0835 +0 0.0658 +0 0.0993 +0 0.1495 +0 0.0986 +0 0.0892 +0 0.0630 +0 0.1527 +0 0.0819 +0 0.1043 +0 0.1214 +0 0.0704 +0 0.1059 +0 0.1263 +0 0.1784 +0 0.0434 +0 0.0548 +0 0.2701 +0 0.0606 +0 0.1385 +0 0.1518 +0 0.1046 +0 0.0827 +0 0.0838 +0 0.1417 +0 0.1032 +0 0.0932 +0 0.1697 +0 0.0714 +0 0.0713 +0 0.1627 +0 0.1764 +0 0.1729 +0 0.0684 +0 0.3626 +0 0.0852 +0 0.1350 +0 0.1475 +0 0.1388 +0 0.0553 +0 0.0569 +0 0.1546 +0 0.1866 +0 0.0773 +0 0.2110 +0 0.0644 +0 0.1697 +0 0.0867 +0 0.1273 +0 0.0797 +0 0.0763 +0 0.1458 +0 0.6203 +0 0.0822 +0 0.0653 +0 0.0594 +0 0.0502 +0 0.5567 +0 0.0747 +0 0.0833 +0 0.3774 +0 0.1864 +0 0.0607 +0 0.0777 +0 0.0445 +0 0.1331 +0 0.0702 +0 0.0594 +0 0.1246 +0 0.0712 +0 0.0706 +0 0.0381 +0 0.0621 +0 0.0648 +0 0.3140 +0 0.1965 +0 0.0891 +0 0.0679 +0 0.0673 +0 0.1571 +0 0.1277 +0 0.1264 +1 0.7880 +0 0.0703 +0 0.0614 +0 0.0316 +0 0.0933 +0 0.1375 +0 0.1445 +0 0.0734 +0 0.0840 +0 0.2978 +1 0.3312 +0 0.0422 +0 0.1139 +0 0.2368 +0 0.2781 +0 0.4048 +0 0.2022 +0 0.4501 +0 0.1917 +0 0.1050 +0 0.0702 +0 0.1430 +0 0.0489 +0 0.3246 +0 0.1077 +0 0.3108 +0 0.0459 +0 0.1828 +0 0.7342 +0 0.5623 +1 0.8676 +0 0.0744 +0 0.1395 +0 0.0387 +0 0.1465 +0 0.2223 +0 0.0583 +0 0.0828 +0 0.0295 +0 0.0908 +0 0.0427 +0 0.1992 +0 0.0715 +0 0.0748 +0 0.1935 +0 0.0889 +0 0.0480 +0 0.0721 +0 0.0623 +0 0.0424 +0 0.1811 +0 0.1028 +0 0.0906 +0 0.1139 +0 0.0591 +0 0.1846 +0 0.0752 +0 0.1183 +0 0.1065 +0 0.0928 +0 0.2030 +0 0.1286 +0 0.1300 +1 0.8500 +0 0.1074 +0 0.2007 +1 0.7766 +0 0.0941 +0 0.2326 +0 0.0667 +0 0.2847 +0 0.0865 +0 0.0561 +0 0.1400 +0 0.0833 +0 0.1266 +0 0.0364 +0 0.1103 +0 0.2890 +0 0.1905 +0 0.2201 +0 0.1519 +0 0.2302 +0 0.1451 +0 0.1448 +0 0.0755 +0 0.0831 +0 0.2549 +0 0.3013 +0 0.0700 +0 0.0341 +0 0.0865 +0 0.1226 +0 0.1008 +0 0.0528 +0 0.1491 +0 0.0524 +0 0.0493 +0 0.0752 +0 0.0496 +0 0.2073 +0 0.1424 +0 0.4288 +0 0.0625 +0 0.1329 +0 0.2128 +0 0.2001 +0 0.0556 +0 0.0970 +0 0.0729 +0 0.1289 +0 0.0735 +0 0.0626 +0 0.0713 +0 0.1062 +0 0.1346 +0 0.0772 +0 0.1844 +0 0.1335 +0 0.1194 +0 0.0847 +0 0.1330 +0 0.0543 +0 0.0615 +0 0.2758 +0 0.1283 +0 0.2796 +0 0.2093 +0 0.1805 +0 0.0983 +0 0.0674 +1 0.8013 +0 0.1646 +0 0.1114 +0 0.2531 +0 0.0732 +0 0.0783 +1 0.8405 +0 0.0581 +0 0.3654 +0 0.3384 +0 0.4442 +0 0.4711 +0 0.1593 +0 0.0912 +0 0.0589 +0 0.1504 +0 0.0630 +0 0.1079 +0 0.0898 +0 0.0810 +0 0.0917 +0 0.1379 +0 0.1262 +0 0.1691 +0 0.1232 +0 0.0797 +0 0.0551 +0 0.0893 +0 0.0885 +0 0.0546 +0 0.0913 +0 0.1907 +0 0.2501 +0 0.1690 +0 0.0849 +0 0.1552 +0 0.6302 +0 0.0854 +0 0.0705 +0 0.1269 +0 0.2456 +0 0.2319 +0 0.0623 +0 0.2297 +0 0.0890 +1 0.7585 +0 0.1498 +0 0.0852 +0 0.2053 +0 0.0981 +0 0.0971 +0 0.0599 +0 0.1102 +0 0.0642 +0 0.1523 +0 0.0351 +0 0.0876 +0 0.0691 +0 0.3052 +0 0.0584 +0 0.1474 +0 0.1156 +0 0.0942 +0 0.2725 +0 0.0648 +0 0.1148 +0 0.0918 +0 0.1588 +0 0.2603 +0 0.1247 +0 0.1969 +0 0.1275 +0 0.2056 +0 0.0563 +0 0.0815 +0 0.1617 +0 0.2805 +0 0.0512 +0 0.1179 +0 0.1851 +0 0.1041 +0 0.2544 +1 0.8749 +0 0.0593 +0 0.2384 +0 0.1468 +0 0.0884 +0 0.0736 +0 0.1184 +0 0.0813 +0 0.1622 +0 0.0500 +0 0.2666 +0 0.1010 +0 0.1791 +0 0.0754 +0 0.2083 +0 0.0581 +0 0.2088 +0 0.1019 +0 0.0899 +0 0.1257 +0 0.0869 +0 0.2012 +0 0.1223 +0 0.1562 +0 0.0819 +0 0.0796 +0 0.2335 +0 0.0991 +0 0.1039 +0 0.2704 +0 0.1247 +0 0.1543 +0 0.0934 +0 0.0801 +0 0.0612 +0 0.1137 +0 0.1076 +0 0.1979 +0 0.0577 +0 0.1362 +0 0.1130 +0 0.3477 +0 0.0894 +0 0.2022 +0 0.0627 +0 0.0740 +0 0.1659 +0 0.4143 +0 0.0506 +0 0.0742 +0 0.1773 +0 0.1322 +0 0.0677 +1 0.7595 +0 0.0906 +0 0.6735 +0 0.0815 +0 0.1933 +0 0.1568 +0 0.1146 +0 0.1705 +0 0.1115 +0 0.0823 +0 0.0735 +0 0.1148 +0 0.1842 +0 0.0424 +0 0.1010 +0 0.1895 +0 0.0866 +0 0.1670 +0 0.2243 +0 0.1541 +0 0.0642 +0 0.1780 +0 0.1210 +0 0.1071 +0 0.3181 +0 0.1665 +0 0.0456 +0 0.0962 +0 0.1599 +0 0.0588 +0 0.4388 +0 0.1837 +0 0.0949 +0 0.0750 +0 0.1151 +0 0.1019 +0 0.0894 +0 0.1730 +0 0.0763 +0 0.1751 +0 0.0695 +0 0.0588 +0 0.1495 +0 0.0606 +0 0.0992 +0 0.1659 +0 0.2306 +0 0.1877 +0 0.1875 +0 0.2021 +0 0.0506 +0 0.3034 +0 0.2453 +0 0.0370 +0 0.0551 +0 0.1414 +0 0.2937 +0 0.0718 +0 0.1872 +0 0.1621 +0 0.2091 +0 0.2556 +0 0.0696 +0 0.1034 +0 0.1024 +0 0.1191 +0 0.0407 +0 0.1957 +0 0.1734 +0 0.1905 +0 0.0836 +0 0.0876 +0 0.3856 +0 0.0502 +0 0.1815 +0 0.1288 +0 0.2817 +0 0.0897 +0 0.0711 +0 0.0806 +0 0.1430 +1 0.8632 +0 0.0618 +0 0.1278 +0 0.1608 +0 0.0903 +0 0.1478 +0 0.0811 +0 0.1065 +0 0.1220 +1 0.7607 +0 0.5277 +0 0.1795 +0 0.0837 +0 0.1034 +0 0.1949 +0 0.0941 +0 0.0918 +0 0.0960 +0 0.0515 +0 0.1727 +0 0.2228 +0 0.2717 +0 0.0427 +0 0.0808 +0 0.1137 +0 0.0629 +0 0.0817 +0 0.2573 +0 0.0409 +0 0.0873 +0 0.0681 +0 0.1151 +0 0.1291 +0 0.1530 +0 0.2041 +0 0.0773 +0 0.1012 +0 0.0837 +0 0.2053 +0 0.0637 +0 0.2843 +0 0.0899 +0 0.0898 +0 0.0485 +0 0.0767 +0 0.2049 +0 0.7287 +0 0.0897 +0 0.1878 +0 0.0972 +0 0.1537 +0 0.0967 +0 0.0524 +0 0.0618 +1 0.7804 +0 0.1481 +0 0.1525 +0 0.0963 +0 0.2074 +0 0.0505 +0 0.1012 +0 0.1484 +0 0.0914 +0 0.3424 +0 0.0638 +0 0.2303 +0 0.0890 +0 0.1488 +0 0.1191 +0 0.0894 +0 0.0599 +0 0.1199 +0 0.2533 +0 0.0790 +0 0.1425 +0 0.0569 +0 0.1359 +0 0.1811 +0 0.0814 +0 0.0691 +0 0.2260 +0 0.0627 +0 0.0428 +0 0.2784 +0 0.0921 +0 0.0956 +0 0.0472 +0 0.0980 +0 0.0379 +0 0.0753 +0 0.0890 +0 0.0485 +0 0.1969 +0 0.0860 +0 0.0842 +0 0.0577 +0 0.0970 +0 0.0501 +0 0.1519 +0 0.1117 +0 0.1496 +0 0.1137 +0 0.2768 +0 0.0899 +0 0.1199 +0 0.0498 +0 0.3330 +0 0.2744 +0 0.1187 +0 0.0602 +0 0.3371 +0 0.0591 +0 0.1346 +1 0.7605 +0 0.1460 +0 0.1401 +0 0.0910 +0 0.1259 +0 0.1640 +0 0.0336 +0 0.0900 +0 0.1235 +0 0.1491 +0 0.1144 +0 0.0632 +0 0.0394 +0 0.0498 +0 0.2272 +0 0.1446 +0 0.0607 +0 0.0411 +0 0.1747 +0 0.1211 +0 0.2028 +0 0.1565 +0 0.1886 +0 0.0634 +1 0.8026 +0 0.0708 +0 0.0858 +0 0.2264 +0 0.0763 +0 0.0483 +0 0.0769 +0 0.1099 +0 0.0648 +0 0.0847 +0 0.1318 +0 0.0793 +0 0.1141 +0 0.1423 +0 0.1484 +0 0.1262 +0 0.0598 +0 0.2040 +0 0.3804 +0 0.1147 +0 0.2067 +0 0.1410 +0 0.0609 +0 0.0928 +0 0.0691 +0 0.0566 +0 0.1502 +0 0.0855 +0 0.0682 +0 0.0805 +0 0.1192 +0 0.2489 +0 0.0938 +0 0.0721 +0 0.1028 +0 0.0849 +0 0.0580 +0 0.0760 +0 0.0609 +0 0.1326 +0 0.1175 +0 0.1840 +0 0.0630 +0 0.0979 +0 0.1095 +0 0.1541 +0 0.3459 +0 0.0495 +0 0.1000 +0 0.0461 +0 0.4489 +0 0.5562 +1 0.8388 +0 0.4682 +0 0.1018 +0 0.0891 +0 0.0569 +0 0.0878 +0 0.5805 +0 0.0817 +1 0.7647 +0 0.0988 +0 0.0493 +0 0.1952 +0 0.0357 +0 0.0624 +0 0.0754 +0 0.0670 +0 0.1184 +0 0.1511 +0 0.1620 +0 0.1055 +0 0.0993 +0 0.1106 +0 0.2451 +0 0.3796 +0 0.1339 +0 0.0952 +0 0.0687 +0 0.0578 +0 0.3349 +0 0.0559 +0 0.1374 +0 0.1064 +0 0.1882 +0 0.0459 +0 0.0992 +1 0.8558 +0 0.0733 +0 0.0462 +0 0.1435 +0 0.0827 +0 0.0809 +0 0.0872 +0 0.0740 +0 0.1038 +0 0.0970 +0 0.1405 +0 0.4624 +0 0.1485 +0 0.1203 +0 0.1363 +0 0.1687 +1 0.8008 +0 0.2471 +0 0.0775 +0 0.0613 +0 0.0476 +0 0.2341 +0 0.1389 +0 0.0782 +0 0.0547 +0 0.1147 +0 0.3854 +0 0.2152 +0 0.3810 +0 0.0816 +0 0.5235 +0 0.0687 +0 0.0362 +0 0.0457 +0 0.0764 +0 0.1633 +0 0.0636 +0 0.3875 +0 0.0461 +0 0.1330 +0 0.1407 +0 0.1486 +0 0.0728 +0 0.1273 +0 0.0895 +0 0.0976 +0 0.0518 +0 0.0622 +0 0.0560 +0 0.0861 +0 0.0485 +0 0.0967 +0 0.4989 +0 0.1213 +1 0.8468 +0 0.0597 +0 0.0709 +0 0.6507 +0 0.1660 +0 0.1255 +1 0.8698 +0 0.0677 +0 0.0686 +0 0.1703 +0 0.0532 +0 0.1267 +0 0.1379 +0 0.0911 +0 0.1862 +0 0.0527 +0 0.0521 +0 0.5176 +0 0.0897 +0 0.1131 +0 0.3686 +0 0.2653 +0 0.1741 +0 0.0779 +0 0.0747 +0 0.0590 +0 0.2077 +0 0.1020 +0 0.0483 +0 0.3992 +0 0.0432 +0 0.0830 +0 0.2561 +0 0.1251 +0 0.2291 +0 0.2470 +0 0.0998 +0 0.0715 +0 0.0653 +1 0.7854 +0 0.1868 +0 0.2530 +0 0.1719 +0 0.1140 +0 0.1149 +0 0.0636 +0 0.0755 +0 0.2106 +0 0.0830 +0 0.0676 +0 0.0569 +0 0.0840 +0 0.2769 +0 0.0643 +0 0.1656 +0 0.1252 +0 0.0405 +0 0.0578 +0 0.0997 +0 0.0496 +0 0.0486 +0 0.1226 +0 0.0627 +0 0.0996 +0 0.1906 +0 0.1590 +0 0.0684 +0 0.0823 +0 0.0742 +0 0.1970 +0 0.2981 +0 0.1308 +0 0.0517 +0 0.1400 +0 0.0396 +0 0.0706 +0 0.0780 +0 0.1131 +0 0.0793 +0 0.1370 +0 0.0505 +0 0.0922 +0 0.0802 +0 0.1733 +0 0.0681 +0 0.0861 +0 0.1011 +0 0.0957 +0 0.1258 +0 0.1158 +0 0.0757 +0 0.0884 +0 0.0508 +0 0.0786 +0 0.1488 +0 0.0796 +0 0.1385 +0 0.0591 +0 0.1044 +1 0.8288 +0 0.0778 +0 0.0824 +0 0.0845 +0 0.2160 +0 0.0726 +0 0.0836 +0 0.1083 +0 0.2161 +0 0.2248 +0 0.1511 +0 0.1093 +0 0.0440 +0 0.0770 +0 0.2259 +0 0.0974 +0 0.0426 +0 0.2015 +0 0.1919 +0 0.0909 +0 0.5916 +0 0.1100 +0 0.3733 +0 0.0533 +0 0.2138 +0 0.1531 +0 0.1379 +0 0.1173 +0 0.3361 +0 0.1251 +0 0.1110 +0 0.0578 +0 0.0583 +0 0.0421 +0 0.1413 +0 0.1268 +0 0.0604 +0 0.1078 +0 0.0980 +0 0.0457 +0 0.1026 +0 0.0578 +0 0.1116 +0 0.0935 +0 0.6765 +0 0.0856 +0 0.1934 +0 0.0773 +0 0.0786 +0 0.0935 +0 0.1601 +0 0.1022 +0 0.0532 +0 0.0746 +0 0.0487 +0 0.0746 +0 0.1518 +0 0.0713 +0 0.0415 +0 0.1192 +0 0.1123 +0 0.1612 +0 0.1426 +0 0.1708 +0 0.2190 +0 0.1870 +0 0.2045 +0 0.1088 +0 0.1328 +0 0.0436 +0 0.0632 +0 0.0593 +0 0.0759 +0 0.0991 +0 0.1741 +0 0.1256 +0 0.2167 +0 0.0770 +0 0.1336 +0 0.0806 +0 0.0654 +0 0.1750 +0 0.1758 +0 0.0839 +0 0.1704 +0 0.3035 +0 0.2029 +0 0.3182 +0 0.1587 +0 0.0631 +0 0.2767 +0 0.0401 +0 0.0726 +0 0.0781 +0 0.0714 +0 0.2777 +0 0.1108 +0 0.0939 +0 0.0630 +0 0.0466 +0 0.2017 +0 0.0878 +0 0.0467 +0 0.2605 +0 0.0435 +0 0.1064 +0 0.0606 +0 0.2308 +0 0.1051 +0 0.1203 +0 0.0573 +0 0.4869 +0 0.0599 +0 0.2692 +0 0.0502 +0 0.3093 +0 0.0618 +0 0.2018 +0 0.0735 +0 0.1683 +0 0.0573 +0 0.0665 +0 0.0647 +0 0.2390 +0 0.0468 +0 0.0700 +0 0.1094 +0 0.0631 +0 0.1666 +0 0.1240 +0 0.1460 +0 0.0979 +0 0.0945 +0 0.1670 +0 0.1088 +0 0.0768 +0 0.0791 +0 0.0703 +0 0.0668 +0 0.0974 +0 0.0520 +0 0.1042 +0 0.1062 +0 0.0797 +0 0.7114 +0 0.0810 +0 0.0451 +0 0.1523 +0 0.0887 +0 0.0530 +0 0.5552 +0 0.3713 +0 0.0733 +0 0.0902 +0 0.2362 +0 0.1090 +0 0.0677 +0 0.0332 +0 0.0400 +0 0.0659 +0 0.0573 +0 0.1428 +1 0.8343 +0 0.1367 +0 0.1639 +0 0.0278 +0 0.0461 +0 0.0760 +0 0.0814 +0 0.0689 +0 0.2367 +0 0.0663 +0 0.0845 +0 0.0495 +0 0.0674 +0 0.1072 +0 0.0616 +0 0.0631 +0 0.1207 +0 0.0692 +0 0.6833 +0 0.1643 +0 0.0797 +0 0.2194 +0 0.0957 +0 0.0978 +0 0.0980 +0 0.0728 +0 0.2590 +0 0.1327 +0 0.1898 +0 0.1657 +0 0.1994 +0 0.1176 +0 0.4167 +0 0.0468 +0 0.0933 +0 0.0631 +0 0.2110 +0 0.1449 +0 0.1302 +0 0.1228 +0 0.1196 +0 0.1419 +0 0.0573 +0 0.2171 +0 0.0686 +0 0.0991 +1 0.8311 +0 0.0436 +0 0.0822 +0 0.0638 +0 0.0701 +0 0.0356 +0 0.3840 +0 0.1838 +0 0.0659 +0 0.2698 +0 0.0710 +0 0.0700 +0 0.1520 +0 0.2501 +0 0.0881 +0 0.0726 +0 0.2113 +0 0.1489 +0 0.0610 +0 0.1062 +0 0.1551 +0 0.0912 +0 0.0527 +0 0.2114 +0 0.0432 +0 0.0580 +0 0.0747 +0 0.1110 +0 0.2596 +0 0.1015 +0 0.0967 +0 0.0373 +0 0.0894 +0 0.0933 +0 0.0883 +0 0.0605 +0 0.1260 +0 0.1833 +0 0.1384 +0 0.0489 +0 0.2031 +0 0.0730 +0 0.1266 +0 0.0488 +0 0.1940 +0 0.1125 +0 0.0786 +0 0.1132 +0 0.0945 +0 0.0884 +0 0.0435 +1 0.8403 +0 0.0535 +0 0.4216 +0 0.0640 +0 0.4734 +0 0.7022 +0 0.2348 +0 0.1210 +0 0.3153 +0 0.1106 +0 0.0714 +0 0.0876 +0 0.0753 +0 0.1101 +0 0.0605 +0 0.1170 +0 0.1263 +0 0.1302 +0 0.2656 +0 0.1370 +0 0.1047 +0 0.2041 +0 0.1676 +0 0.1010 +0 0.0744 +0 0.1290 +0 0.2152 +0 0.1545 +0 0.0763 +0 0.1989 +0 0.0368 +0 0.1061 +0 0.0602 +0 0.0585 +0 0.0770 +0 0.1242 +0 0.1089 +0 0.0581 +0 0.1181 +0 0.0715 +0 0.1149 +0 0.1540 +0 0.0998 +0 0.0779 +0 0.0845 +0 0.5003 +0 0.0955 +0 0.0818 +0 0.0445 +0 0.1627 +0 0.0646 +0 0.0467 +0 0.0895 +0 0.1110 +0 0.0832 +0 0.1638 +0 0.1935 +0 0.1214 +0 0.1696 +0 0.1650 +0 0.2199 +0 0.0809 +0 0.1048 +0 0.2053 +0 0.0938 +0 0.1474 +0 0.0672 +0 0.1175 +0 0.0834 +0 0.1397 +0 0.2082 +0 0.0939 +0 0.1216 +0 0.1661 +0 0.0525 +0 0.0473 +0 0.1276 +0 0.1365 +0 0.0435 +0 0.1079 +0 0.0952 +0 0.1223 +0 0.1070 +0 0.1726 +0 0.4428 +0 0.0970 +0 0.1111 +0 0.0446 +0 0.1406 +0 0.0558 +0 0.1258 +0 0.0864 +0 0.1073 +0 0.6386 +0 0.2605 +1 0.7968 +0 0.1471 +0 0.2200 +0 0.0574 +0 0.1042 +0 0.3847 +0 0.2012 +0 0.0711 +0 0.0526 +0 0.1198 +0 0.2704 +0 0.0714 +0 0.0532 +0 0.0874 +0 0.1408 +1 0.8470 +0 0.1058 +0 0.1500 +0 0.2609 +0 0.0587 +0 0.1526 +0 0.0964 +0 0.0614 +0 0.0416 +0 0.1595 +0 0.1916 +0 0.1507 +0 0.1769 +0 0.0639 +0 0.0942 +0 0.2241 +0 0.0669 +0 0.1362 +0 0.1084 +0 0.0720 +0 0.1065 +0 0.2293 +0 0.2091 +0 0.4648 +0 0.1241 +0 0.1632 +0 0.0980 +0 0.3534 +0 0.0917 +0 0.1009 +0 0.1082 +0 0.0974 +0 0.0578 +0 0.1759 +0 0.1956 +0 0.2983 +0 0.1539 +0 0.0795 +0 0.1295 +0 0.1230 +0 0.2869 +0 0.0674 +0 0.2932 +0 0.2180 +0 0.2110 +0 0.1543 +0 0.1026 +0 0.0864 +1 0.8107 +0 0.0447 +0 0.0905 +0 0.0489 +0 0.1517 +0 0.1198 +0 0.0633 +0 0.1848 +0 0.0462 +0 0.0851 +1 0.8343 +0 0.2637 +0 0.0616 +0 0.1315 +0 0.1490 +0 0.0714 +0 0.0953 +0 0.0778 +0 0.0679 +0 0.1702 +0 0.1300 +0 0.2454 +0 0.0871 +0 0.1951 +0 0.0843 +0 0.0456 +0 0.0814 +0 0.6138 +0 0.1245 +0 0.1299 +0 0.1537 +0 0.0934 +0 0.2196 +0 0.2107 +0 0.0507 +0 0.0906 +0 0.7208 +0 0.0477 +0 0.1021 +0 0.0553 +0 0.0505 +0 0.1771 +0 0.1145 +0 0.4527 +0 0.0728 +0 0.1109 +0 0.1057 +0 0.1255 +0 0.3095 +0 0.1822 +0 0.0495 +0 0.2001 +0 0.0397 +0 0.1486 +0 0.0790 +0 0.0633 +0 0.2130 +0 0.0633 +0 0.1127 +0 0.0898 +0 0.0811 +0 0.2394 +0 0.0561 +0 0.0546 +0 0.0563 +0 0.0805 +0 0.1948 +0 0.0917 +0 0.2570 +0 0.0874 +0 0.1523 +0 0.0568 +0 0.0974 +0 0.1749 +0 0.0725 +0 0.0490 +0 0.0562 +0 0.0476 +0 0.1980 +0 0.1408 +0 0.1876 +0 0.0529 +0 0.1056 +0 0.4757 +0 0.1345 +0 0.0904 +0 0.0899 +0 0.2927 +0 0.1122 +0 0.1775 +0 0.1373 +0 0.0815 +1 0.7760 +0 0.2247 +0 0.1422 +0 0.1129 +0 0.3554 +0 0.1462 +0 0.0631 +0 0.0607 +0 0.0684 +0 0.1206 +0 0.0619 +0 0.0799 +0 0.0961 +0 0.1088 +0 0.1888 +0 0.0923 +0 0.1060 +0 0.0718 +0 0.0743 +0 0.0816 +0 0.0976 +0 0.1856 +0 0.2573 +0 0.0929 +0 0.1661 +0 0.1538 +0 0.2136 +0 0.0764 +0 0.1077 +0 0.0618 +0 0.6991 +0 0.2745 +0 0.1690 +0 0.0635 +0 0.1089 +0 0.2047 +0 0.1538 +0 0.0816 +0 0.0813 +0 0.1355 +0 0.2915 +0 0.1148 +0 0.0637 +0 0.0581 +0 0.0490 +0 0.1438 +0 0.0686 +0 0.0667 +0 0.1083 +0 0.0763 +0 0.1460 +0 0.1094 +0 0.0643 +0 0.1413 +0 0.0643 +0 0.2049 +0 0.0914 +0 0.1335 +0 0.1023 +0 0.6988 +0 0.0596 +0 0.7144 +0 0.0529 +0 0.0986 +0 0.0877 +0 0.1606 +0 0.1250 +0 0.0415 +0 0.0557 +0 0.1016 +0 0.0736 +1 0.8558 +0 0.0522 +0 0.3282 +0 0.0614 +0 0.0646 +0 0.0718 +0 0.1022 +0 0.1262 +0 0.0938 +0 0.0708 +0 0.1222 +0 0.2293 +0 0.3114 +0 0.0342 +0 0.1540 +0 0.0515 +0 0.1455 +0 0.0941 +0 0.1263 +0 0.0574 +0 0.1242 +0 0.0954 +0 0.2029 +0 0.0989 +0 0.2148 +0 0.0845 +0 0.0827 +0 0.1186 +1 0.8339 +0 0.1425 +0 0.2296 +0 0.1508 +0 0.0532 +0 0.0589 +0 0.1426 +0 0.1243 +0 0.0814 +0 0.1324 +0 0.1159 +0 0.0994 +0 0.0684 +0 0.0919 +0 0.0926 +0 0.0810 +0 0.0492 +0 0.0421 +0 0.0543 +0 0.2581 +0 0.1776 +0 0.2075 +0 0.1214 +0 0.1457 +0 0.0705 +0 0.1450 +0 0.1336 +0 0.1761 +0 0.0533 +0 0.1014 +0 0.0327 +0 0.0534 +0 0.2263 +0 0.1345 +0 0.1593 +0 0.0735 +0 0.2443 +0 0.0537 +0 0.1580 +0 0.1666 +0 0.0591 +0 0.2331 +0 0.2410 +0 0.0487 +0 0.0609 +0 0.4910 +0 0.1584 +0 0.1867 +0 0.1185 +0 0.1058 +0 0.1293 +0 0.0727 +0 0.1036 +0 0.0794 +0 0.3963 +0 0.0656 +0 0.1026 +0 0.1156 +0 0.1143 +0 0.3147 +0 0.6245 +0 0.1057 +0 0.0570 +0 0.1237 +0 0.1612 +0 0.0610 +0 0.0836 +0 0.1502 +0 0.1173 +0 0.1142 +0 0.2981 +0 0.0831 +0 0.0794 +0 0.0780 +0 0.0693 +0 0.0680 +0 0.1322 +0 0.0349 +0 0.0590 +0 0.1116 +0 0.0490 +0 0.1494 +0 0.1397 +0 0.2600 +1 0.8615 +0 0.4552 +0 0.0531 +0 0.1588 +0 0.0677 +0 0.1146 +0 0.1520 +0 0.1088 +0 0.0508 +0 0.1843 +0 0.0644 +0 0.0993 +0 0.0340 +0 0.0452 +1 0.8655 +0 0.1787 +0 0.1607 +0 0.1308 +0 0.0903 +0 0.3288 +0 0.1266 +0 0.0692 +0 0.1468 +0 0.1623 +0 0.2902 +0 0.0535 +0 0.0459 +0 0.3477 +0 0.1491 +0 0.0862 +0 0.0694 +0 0.1258 +0 0.1140 +0 0.0576 +0 0.1165 +0 0.0815 +0 0.2396 +0 0.0638 +0 0.0609 +0 0.0865 +0 0.1791 +0 0.0902 +0 0.0517 +0 0.2878 +0 0.0318 +0 0.0715 +0 0.5404 +0 0.1686 +0 0.5939 +0 0.4062 +0 0.4884 +0 0.0455 +0 0.0981 +0 0.0661 +0 0.0592 +0 0.6214 +0 0.2928 +0 0.0944 +0 0.1362 +0 0.1769 +0 0.1141 +0 0.4029 +0 0.2897 +0 0.1015 +0 0.0622 +0 0.1047 +0 0.1327 +0 0.1162 +0 0.0839 +0 0.0971 +0 0.0675 +0 0.0648 +0 0.0726 +0 0.0525 +0 0.1666 +0 0.1317 +0 0.3136 +0 0.1047 +0 0.0986 +0 0.1897 +1 0.8060 +0 0.1655 +0 0.1241 +1 0.7727 +0 0.3805 +0 0.0825 +0 0.1516 +0 0.1336 +0 0.1218 +0 0.0929 +0 0.0450 +0 0.0844 +0 0.0952 +0 0.2049 +0 0.0531 +0 0.0829 +0 0.1515 +0 0.1045 +0 0.0928 +0 0.0640 +0 0.0461 +0 0.2108 +0 0.1729 +0 0.1012 +0 0.1819 +0 0.1675 +0 0.2378 +0 0.1046 +0 0.0757 +0 0.1043 +0 0.0464 +0 0.3124 +0 0.3380 +0 0.4000 +0 0.1533 +0 0.0422 +0 0.1088 +0 0.0610 +0 0.1386 +0 0.1185 +0 0.1274 +0 0.1789 +0 0.0813 +0 0.0572 +0 0.6866 +0 0.0803 +0 0.0923 +0 0.0950 +0 0.1473 +0 0.1073 +0 0.0968 +0 0.2262 +0 0.0356 +0 0.1020 +0 0.0795 +0 0.1174 +0 0.0576 +0 0.1219 +0 0.0712 +0 0.0920 +0 0.1293 +0 0.1423 +0 0.0492 +0 0.1808 +0 0.0689 +0 0.1183 +0 0.5551 +0 0.2679 +0 0.0368 +0 0.1507 +0 0.0492 +0 0.3320 +0 0.0395 +0 0.0754 +0 0.1100 +0 0.0496 +0 0.1657 +0 0.1042 +0 0.0730 +0 0.1478 +0 0.1003 +0 0.1091 +0 0.6875 +0 0.0624 +0 0.0907 +0 0.2507 +0 0.1010 +0 0.1883 +0 0.0570 +0 0.0872 +0 0.0488 +0 0.0714 +0 0.2382 +0 0.1108 +0 0.0654 +0 0.0470 +0 0.1940 +0 0.0509 +0 0.0553 +0 0.1393 +0 0.0695 +0 0.2023 +0 0.0916 +0 0.2540 +0 0.1942 +0 0.3929 +0 0.0575 +0 0.0685 +0 0.6480 +0 0.0854 +0 0.1115 +0 0.1159 +0 0.0554 +0 0.1086 +0 0.0584 +0 0.0714 +0 0.0528 +0 0.0928 +0 0.0783 +0 0.7059 +0 0.0461 +0 0.0971 +0 0.0383 +0 0.0797 +0 0.0738 +0 0.2383 +0 0.4295 +1 0.7864 +0 0.1153 +0 0.1849 +0 0.2959 +0 0.1121 +0 0.1096 +0 0.0796 +0 0.0670 +0 0.4166 +0 0.1148 +0 0.1064 +0 0.2319 +0 0.2738 +0 0.0418 +0 0.1492 +0 0.1614 +0 0.1018 +0 0.0912 +0 0.0817 +0 0.1118 +0 0.0505 +0 0.1074 +0 0.1076 +0 0.1452 +0 0.1115 +0 0.0852 +0 0.2978 +0 0.0805 +0 0.1458 +0 0.1402 +0 0.0507 +0 0.0796 +0 0.0940 +0 0.0801 +0 0.1019 +0 0.0552 +0 0.0850 +0 0.1254 +0 0.0781 +0 0.1561 +0 0.1078 +0 0.0885 +0 0.0623 +0 0.0726 +0 0.0661 +0 0.1488 +0 0.0450 +0 0.0838 +1 0.8418 +0 0.0652 +0 0.0694 +0 0.0499 +0 0.1285 +0 0.1252 +0 0.1260 +0 0.2119 +0 0.0479 +0 0.0678 +0 0.0946 +0 0.0798 +0 0.1327 +0 0.0857 +0 0.0829 +0 0.1328 +0 0.2059 +0 0.2434 +0 0.0777 +0 0.0625 +0 0.2974 +0 0.6969 +0 0.0547 +0 0.1010 +0 0.0826 +0 0.0487 +0 0.0750 +0 0.1304 +0 0.0834 +0 0.0852 +0 0.1802 +0 0.0536 +0 0.0499 +1 0.8050 +0 0.1126 +0 0.0653 +0 0.1930 +0 0.1297 +0 0.1484 +0 0.1067 +0 0.0347 +0 0.0582 +0 0.2005 +0 0.2647 +0 0.1210 +0 0.1339 +0 0.0730 +0 0.0807 +0 0.1564 +0 0.0494 +0 0.0542 +0 0.1261 +0 0.0445 +0 0.1911 +0 0.0578 +0 0.4574 +0 0.0525 +0 0.3272 +0 0.7052 +0 0.0814 +0 0.0666 +0 0.0713 +0 0.1351 +0 0.3494 +0 0.1065 +0 0.0728 +0 0.1231 +0 0.0696 +0 0.0741 +0 0.1381 +0 0.0692 +0 0.2406 +0 0.1716 +0 0.0782 +0 0.2064 +0 0.1094 +0 0.1322 +0 0.0961 +0 0.0724 +0 0.1249 +0 0.0476 +0 0.0833 +0 0.2845 +0 0.6433 +0 0.3103 +1 0.8217 +0 0.0779 +0 0.0946 +0 0.2002 +0 0.0486 +0 0.0558 +0 0.0738 +0 0.1350 +0 0.1019 +0 0.5729 +0 0.1296 +0 0.0831 +0 0.0925 +0 0.1341 +0 0.1329 +0 0.1163 +0 0.2386 +0 0.0654 +0 0.1780 +0 0.1758 +0 0.0603 +1 0.8507 +0 0.4697 +0 0.1305 +0 0.0770 +0 0.2066 +0 0.1484 +0 0.0614 +0 0.3081 +0 0.0537 +0 0.2335 +0 0.0592 +0 0.1200 +0 0.1723 +0 0.2036 +0 0.0449 +0 0.0931 +0 0.1063 +0 0.1782 +0 0.0419 +0 0.3355 +0 0.1556 +0 0.0799 +0 0.0625 +0 0.1504 +0 0.1086 +0 0.3013 +0 0.0625 +0 0.1013 +0 0.2693 +0 0.0975 +0 0.0596 +0 0.0389 +0 0.4987 +0 0.2670 +0 0.2234 +0 0.1971 +0 0.1941 +0 0.0486 +0 0.0560 +0 0.0546 +0 0.0629 +0 0.4402 +0 0.0618 +0 0.1759 +0 0.0769 +0 0.0680 +0 0.1152 +0 0.1234 +0 0.0806 +0 0.0485 +0 0.0878 +0 0.0705 +0 0.0591 +0 0.1034 +0 0.4022 +0 0.0451 +0 0.1290 +0 0.0922 +0 0.0469 +0 0.2116 +0 0.1777 +0 0.7477 +0 0.5886 +0 0.1161 +0 0.1570 +0 0.0777 +0 0.1016 +0 0.6827 +0 0.1246 +1 0.8636 +0 0.1952 +0 0.1099 +0 0.0607 +0 0.3378 +0 0.1179 +0 0.4139 +0 0.0420 +0 0.0625 +0 0.1286 +0 0.0971 +0 0.1098 +0 0.0769 +0 0.3678 +0 0.0664 +0 0.1110 +0 0.1561 +0 0.6130 +0 0.1052 +0 0.0635 +0 0.0959 +0 0.2723 +0 0.1236 +0 0.1531 +0 0.1034 +0 0.0419 +0 0.3250 +1 0.7730 +0 0.0629 +0 0.2212 +0 0.0739 +0 0.0607 +0 0.0759 +0 0.0664 +0 0.0909 +0 0.1458 +0 0.1017 +0 0.1392 +0 0.0575 +0 0.3531 +0 0.2971 +0 0.0541 +0 0.0559 +0 0.1253 +0 0.6721 +0 0.1155 +0 0.0724 +0 0.1093 +0 0.6570 +0 0.3199 +0 0.1821 +0 0.1714 +0 0.2611 +0 0.2401 +0 0.0382 +0 0.0730 +0 0.0782 +0 0.0880 +0 0.1189 +0 0.1187 +0 0.1155 +0 0.1117 +0 0.1365 +0 0.1717 +0 0.0638 +0 0.4916 +0 0.1457 +0 0.0726 +0 0.0551 +0 0.0819 +0 0.0900 +0 0.5198 +0 0.0629 +0 0.1749 +0 0.0918 +0 0.1130 +0 0.0956 +0 0.0588 +0 0.3684 +0 0.1456 +0 0.1075 +1 0.8024 +0 0.1701 +0 0.1184 +0 0.0466 +0 0.4750 +0 0.1619 +0 0.2738 +0 0.0916 +0 0.0666 +0 0.0961 +0 0.0903 +0 0.0796 +0 0.0742 +0 0.0729 +0 0.1323 +0 0.0751 +0 0.4100 +0 0.0297 +0 0.1414 +0 0.0664 +0 0.0757 +0 0.1213 +0 0.1007 +0 0.1540 +0 0.0915 +0 0.1876 +0 0.0588 +0 0.1362 +0 0.0718 +0 0.3032 +0 0.0472 +0 0.0631 +0 0.0654 +0 0.1804 +0 0.0795 +0 0.1437 +0 0.0972 +0 0.2676 +0 0.1445 +0 0.0537 +0 0.0908 +0 0.0957 +0 0.0966 +0 0.0971 +0 0.2205 +0 0.1384 +0 0.0517 +0 0.3046 +0 0.5743 +0 0.1642 +0 0.1503 +0 0.2256 +0 0.0427 +0 0.0939 +0 0.4623 +0 0.5190 +0 0.0988 +0 0.0671 +0 0.0827 +0 0.2080 +0 0.0894 +0 0.1399 +0 0.1199 +0 0.1649 +0 0.0694 +0 0.0787 +0 0.0919 +0 0.0882 +0 0.4138 +0 0.1988 +0 0.0717 +0 0.0690 +0 0.1328 +0 0.0575 +0 0.1399 +0 0.2085 +0 0.1343 +0 0.3100 +0 0.0990 +0 0.1943 +0 0.2206 +0 0.2067 +0 0.0862 +0 0.0415 +0 0.2291 +0 0.0995 +0 0.1222 +0 0.0936 +0 0.0724 +0 0.1786 +0 0.2796 +0 0.0999 +0 0.0433 +0 0.1259 +0 0.3066 +0 0.1648 +0 0.1650 +0 0.0610 +1 0.7992 +0 0.1573 +0 0.1797 +0 0.4377 +0 0.1265 +0 0.1330 +0 0.0384 +0 0.2018 +0 0.2212 +0 0.0469 +0 0.0579 +0 0.2038 +0 0.1093 +0 0.0761 +0 0.1823 +0 0.1434 +0 0.0658 +0 0.0623 +0 0.1335 +0 0.2247 +0 0.1593 +0 0.2564 +0 0.0762 +0 0.1269 +0 0.0424 +0 0.0471 +0 0.0785 +0 0.1012 +0 0.1421 +0 0.0713 +0 0.0733 +0 0.3266 +0 0.0654 +0 0.0898 +0 0.1098 +0 0.0620 +0 0.2102 +0 0.1572 +0 0.1148 +0 0.1323 +0 0.1723 +0 0.0853 +0 0.0972 +0 0.1300 +0 0.2091 +0 0.0807 +0 0.0643 +0 0.0994 +0 0.0678 +0 0.1057 +0 0.1144 +0 0.1353 +0 0.3859 +0 0.0397 +0 0.1090 +0 0.0629 +0 0.2124 +0 0.1534 +0 0.0786 +0 0.1267 +0 0.1687 +0 0.5501 +0 0.1780 +0 0.1108 +0 0.1150 +0 0.0507 +0 0.1586 +0 0.0783 +0 0.0721 +0 0.0691 +0 0.1037 +0 0.0567 +0 0.0942 +0 0.1008 +0 0.2254 +0 0.0947 +0 0.5936 +0 0.1511 +0 0.2202 +0 0.7427 +0 0.1051 +0 0.0621 +0 0.1053 +0 0.1363 +0 0.2035 +0 0.1113 +0 0.6650 +0 0.2554 +0 0.3958 +0 0.4007 +0 0.2380 +0 0.0631 +0 0.0684 +0 0.1386 +0 0.4174 +0 0.0530 +0 0.1156 +0 0.2483 +0 0.0725 +0 0.0629 +0 0.0621 +0 0.1579 +0 0.0911 +0 0.0807 +0 0.0395 +0 0.1437 +0 0.0846 +0 0.1805 +0 0.0783 +0 0.0957 +0 0.1280 +0 0.1097 +0 0.1035 +0 0.0915 +0 0.0650 +0 0.0549 +0 0.2745 +0 0.0632 +0 0.0598 +0 0.0714 +0 0.0627 +0 0.2065 +0 0.0616 +0 0.2027 +0 0.0769 +0 0.0724 +0 0.0582 +0 0.1433 +0 0.1304 +0 0.0554 +0 0.1724 +0 0.0754 +0 0.1308 +0 0.2156 +0 0.0916 +0 0.1297 +0 0.0928 +0 0.2260 +0 0.0688 +0 0.1305 +0 0.1343 +0 0.0716 +0 0.0600 +0 0.0271 +0 0.2052 +0 0.1059 +0 0.1024 +0 0.2609 +0 0.0500 +0 0.1634 +0 0.2037 +0 0.1028 +0 0.0663 +0 0.1162 +0 0.1396 +0 0.6368 +0 0.0814 +0 0.4438 +0 0.2690 +0 0.0922 +0 0.0866 +0 0.1505 +0 0.0720 +0 0.0732 +0 0.0631 +0 0.1424 +0 0.0344 +0 0.2302 +0 0.0659 +0 0.1027 +0 0.0496 +0 0.1228 +0 0.0657 +0 0.0755 +0 0.0542 +0 0.0479 +0 0.0605 +0 0.1737 +0 0.1233 +0 0.0870 +0 0.0544 +0 0.0791 +0 0.1939 +0 0.0550 +0 0.0902 +0 0.0821 +0 0.1227 +0 0.0793 +0 0.0744 +0 0.1312 +0 0.1043 +0 0.1073 +0 0.0470 +0 0.2017 +1 0.8050 +0 0.0739 +0 0.3267 +0 0.1274 +0 0.1600 +0 0.1248 +0 0.1045 +0 0.2277 +0 0.0916 +0 0.2310 +0 0.1238 +0 0.1758 +0 0.0536 +0 0.1186 +0 0.0642 +0 0.4135 +0 0.0786 +0 0.0919 +0 0.0929 +0 0.0773 +0 0.2982 +0 0.0733 +0 0.0941 +0 0.0784 +0 0.0739 +0 0.2676 +0 0.0569 +0 0.0517 +0 0.0819 +0 0.1166 +0 0.0873 +0 0.4823 +0 0.1469 +0 0.1844 +0 0.0768 +0 0.1813 +0 0.2171 +0 0.0731 +0 0.1955 +0 0.1320 +0 0.0637 +0 0.0938 +0 0.4396 +0 0.0996 +0 0.3091 +0 0.0490 +0 0.0959 +0 0.0423 +0 0.0737 +0 0.1129 +0 0.2659 +0 0.0408 +0 0.1217 +0 0.1191 +0 0.0544 +0 0.1221 +0 0.0656 +0 0.2033 +0 0.0921 +0 0.0559 +0 0.1253 +0 0.1177 +0 0.2053 +0 0.1223 +0 0.1263 +0 0.1366 +0 0.2452 +0 0.2429 +0 0.1245 +0 0.1531 +0 0.1010 +0 0.2190 +0 0.0794 +1 0.2228 +0 0.0786 +0 0.2939 +0 0.4523 +0 0.3322 +0 0.1214 +0 0.0561 +0 0.2315 +0 0.1077 +0 0.3310 +0 0.0879 +0 0.1556 +0 0.1426 +0 0.0752 +0 0.0562 +0 0.1709 +0 0.2496 +0 0.0923 +0 0.0348 +0 0.1119 +0 0.0553 +0 0.0618 +0 0.0512 +0 0.0599 +0 0.2043 +0 0.0627 +0 0.0476 +0 0.0486 +0 0.4208 +0 0.1374 +0 0.3084 +0 0.0986 +0 0.1813 +0 0.0732 +0 0.0673 +0 0.1853 +0 0.0399 +0 0.1462 +0 0.1520 +0 0.1022 +0 0.0792 +0 0.0780 +0 0.0642 +0 0.0871 +0 0.0483 +0 0.0678 +0 0.3406 +0 0.2774 +0 0.1713 +0 0.1912 +0 0.1318 +0 0.0663 +0 0.0618 +0 0.0853 +0 0.2372 +0 0.2529 +0 0.1353 +0 0.0884 +0 0.2892 +0 0.1481 +0 0.0795 +0 0.0525 +0 0.0545 +0 0.0851 +0 0.0869 +0 0.0951 +0 0.1091 +1 0.7586 +0 0.1318 +0 0.6963 +0 0.1207 +1 0.8113 +0 0.0996 +0 0.1294 +0 0.0614 +0 0.0985 +0 0.0625 +0 0.0901 +0 0.1628 +0 0.1153 +0 0.0679 +0 0.1040 +0 0.7041 +0 0.1516 +0 0.0365 +0 0.0833 +0 0.1993 +0 0.0828 +0 0.0644 +0 0.0545 +0 0.1667 +0 0.1743 +0 0.0605 +0 0.3310 +0 0.2209 +0 0.0651 +0 0.0445 +0 0.1795 +0 0.0958 +0 0.1370 +0 0.2941 +0 0.0809 +0 0.1265 +0 0.0998 +0 0.1940 +0 0.2213 +0 0.1225 +0 0.0886 +0 0.1670 +0 0.1018 +0 0.0612 +0 0.2447 +0 0.0692 +0 0.0437 +0 0.0597 +0 0.3065 +0 0.4484 +0 0.0911 +0 0.1720 +0 0.0882 +0 0.0610 +0 0.3333 +0 0.1474 +0 0.0715 +0 0.1055 +0 0.0473 +0 0.2899 +0 0.0314 +0 0.1351 +0 0.1014 +0 0.0992 +0 0.0864 +0 0.0667 +0 0.1708 +0 0.5665 +0 0.0955 +0 0.3316 +0 0.0560 +0 0.2394 +0 0.0867 +0 0.2837 +0 0.1420 +0 0.2880 +0 0.2891 +0 0.0597 +0 0.0957 +0 0.0685 +0 0.4785 +0 0.2380 +0 0.0826 +0 0.1976 +0 0.0488 +0 0.7037 +0 0.2742 +0 0.0780 +0 0.6798 +0 0.1148 +0 0.2015 +0 0.1621 +0 0.0454 +0 0.1112 +0 0.0465 +1 0.9080 +0 0.0493 +0 0.1220 +0 0.1914 +0 0.0667 +0 0.0844 +0 0.0719 +0 0.0461 +0 0.0956 +0 0.0970 +0 0.1981 +0 0.0681 +0 0.0637 +0 0.0750 +0 0.0546 +0 0.0373 +0 0.3051 +0 0.2377 +0 0.0810 +0 0.0783 +0 0.3156 +0 0.7225 +0 0.0845 +0 0.1094 +0 0.0521 +0 0.0826 +0 0.0458 +0 0.0507 +0 0.0492 +0 0.1401 +0 0.0476 +0 0.0672 +0 0.1635 +0 0.1259 +0 0.0730 +0 0.0867 +0 0.2276 +0 0.0728 +1 0.8418 +0 0.0799 +0 0.0877 +0 0.0813 +0 0.0670 +0 0.0535 +0 0.0566 +0 0.1685 +0 0.0451 +0 0.2221 +0 0.0970 +0 0.3922 +0 0.0950 +0 0.0780 +1 0.7852 +0 0.0797 +0 0.1061 +0 0.2866 +0 0.0802 +0 0.0446 +0 0.1984 +0 0.2604 +0 0.1611 +0 0.0734 +0 0.1084 +0 0.0708 +0 0.0491 +0 0.3525 +0 0.1241 +0 0.0514 +0 0.2117 +0 0.1630 +0 0.0699 +0 0.0680 +0 0.1307 +0 0.0764 +0 0.1459 +0 0.1002 +0 0.0750 +0 0.1061 +0 0.0474 +0 0.0703 +0 0.0623 +0 0.1107 +0 0.0540 +0 0.0768 +0 0.0719 +0 0.0980 +0 0.1917 +0 0.1023 +0 0.0669 +0 0.1631 +0 0.1142 +0 0.2607 +0 0.1764 +0 0.0866 +0 0.0774 +0 0.0510 +0 0.1386 +0 0.1140 +0 0.1127 +0 0.0481 +0 0.2958 +0 0.2025 +0 0.0830 +0 0.1318 +0 0.0569 +0 0.0557 +0 0.2009 +0 0.1291 +0 0.0940 +0 0.1067 +0 0.0585 +0 0.3097 +0 0.1375 +0 0.0968 +0 0.6851 +0 0.1564 +0 0.0638 +0 0.1351 +0 0.0933 +0 0.0701 +0 0.1987 +0 0.1011 +0 0.0998 +0 0.1142 +0 0.0806 +0 0.1001 +0 0.0846 +0 0.2510 +0 0.1738 +0 0.1191 +0 0.0704 +0 0.1304 +0 0.0904 +0 0.0922 +0 0.1825 +0 0.2872 +0 0.1161 +0 0.2135 +0 0.5904 +0 0.0595 +0 0.0946 +0 0.4058 +0 0.0884 +0 0.0961 +0 0.0313 +0 0.1729 +0 0.1336 +0 0.0788 +0 0.1010 +0 0.0789 +0 0.0959 +0 0.1336 +0 0.0984 +0 0.0720 +0 0.0618 +0 0.1437 +0 0.0755 +0 0.1882 +0 0.6985 +0 0.1588 +0 0.0963 +0 0.0399 +0 0.0855 +0 0.3108 +0 0.1326 +0 0.2900 +0 0.1287 +0 0.0784 +0 0.0970 +0 0.0948 +0 0.1957 +0 0.0902 +0 0.2151 +0 0.1481 +0 0.0841 +0 0.0900 +0 0.1741 +0 0.1552 +0 0.1467 +0 0.0838 +0 0.3517 +0 0.0901 +0 0.1838 +0 0.0610 +0 0.1204 +0 0.0805 +0 0.2160 +0 0.1319 +0 0.0940 +0 0.0751 +0 0.1325 +0 0.2080 +0 0.0623 +0 0.0611 +0 0.0364 +0 0.0565 +0 0.1355 +0 0.0559 +0 0.1626 +0 0.1343 +0 0.1494 +0 0.1230 +0 0.1597 +0 0.1575 +0 0.1015 +0 0.0956 +0 0.0633 +0 0.1206 +0 0.0755 +0 0.1138 +0 0.1016 +0 0.0995 +0 0.0735 +0 0.0549 +0 0.1059 +0 0.5990 +0 0.0809 +0 0.1063 +0 0.1281 +0 0.3923 +0 0.1344 +0 0.1431 +0 0.0874 +0 0.0295 +0 0.1663 +0 0.1506 +0 0.0770 +0 0.0603 +0 0.0550 +0 0.1163 +0 0.1402 +0 0.3077 +0 0.0886 +0 0.0828 +0 0.1115 +0 0.4547 +0 0.0765 +0 0.0266 +0 0.0922 +0 0.1182 +0 0.0830 +0 0.0576 +0 0.1025 +0 0.1002 +0 0.2626 +0 0.0775 +0 0.1033 +0 0.2507 +0 0.0858 +0 0.1312 +0 0.0896 +0 0.1091 +0 0.0456 +0 0.0668 +0 0.3495 +0 0.1129 +0 0.0738 +0 0.2341 +0 0.0745 +0 0.0364 +0 0.1126 +0 0.1074 +0 0.0903 +1 0.8435 +0 0.1919 +0 0.0874 +0 0.0908 +0 0.0535 +0 0.0526 +0 0.0603 +0 0.0900 +0 0.2038 +0 0.0990 +0 0.0759 +0 0.3833 +0 0.3168 +0 0.0911 +0 0.1404 +0 0.1933 +0 0.0956 +0 0.0628 +0 0.1272 +0 0.2301 +0 0.0571 +0 0.0457 +0 0.1074 +0 0.0729 +0 0.0804 +0 0.0344 +0 0.0625 +0 0.0776 +0 0.0609 +0 0.5809 +0 0.1078 +0 0.0497 +0 0.1233 +0 0.0584 +0 0.4419 +0 0.1236 +0 0.1492 +0 0.1445 +0 0.1213 +0 0.0951 +0 0.1128 +0 0.0825 +0 0.4417 +0 0.0991 +0 0.1065 +0 0.0998 +0 0.1499 +0 0.0876 +0 0.1402 +0 0.0789 +0 0.2499 +0 0.7215 +0 0.0871 +0 0.0851 +0 0.4304 +0 0.1201 +0 0.1610 +0 0.1671 +0 0.0880 +0 0.1413 +0 0.0382 +0 0.0916 +0 0.0909 +1 0.8285 +0 0.0985 +0 0.1196 +0 0.3015 +0 0.2715 +0 0.1083 +0 0.1572 +0 0.0905 +0 0.1216 +0 0.0468 +0 0.2073 +0 0.1648 +0 0.0863 +0 0.1196 +0 0.0581 +0 0.0853 +0 0.2005 +0 0.2137 +0 0.2474 +0 0.7441 +0 0.0586 +0 0.0899 +0 0.0770 +0 0.1791 +0 0.2881 +0 0.0583 +0 0.0668 +0 0.1227 +0 0.1147 +0 0.0623 +0 0.1826 +0 0.0634 +0 0.0346 +0 0.3132 +0 0.1813 +0 0.1143 +0 0.2204 +0 0.0661 +0 0.4549 +0 0.1437 +0 0.1804 +0 0.1809 +0 0.0677 +0 0.0898 +0 0.3864 +0 0.1168 +0 0.1320 +0 0.7036 +0 0.0593 +0 0.1478 +0 0.1043 +0 0.1001 +0 0.0557 +0 0.1135 +0 0.0963 +0 0.1428 +0 0.0538 +0 0.0662 +0 0.1829 +0 0.0878 +0 0.0333 +0 0.0988 +0 0.1181 +0 0.0517 +0 0.3931 +0 0.1232 +0 0.1360 +0 0.1440 +0 0.0935 +0 0.0766 +0 0.0338 +0 0.1078 +0 0.1215 +0 0.1257 +0 0.1418 +0 0.0818 +0 0.1181 +0 0.0754 +0 0.0534 +0 0.2621 +0 0.0586 +0 0.2320 +0 0.1380 +0 0.0918 +0 0.2150 +0 0.0926 +0 0.1556 +0 0.4459 +0 0.2227 +0 0.0654 +0 0.1270 +0 0.7463 +0 0.5336 +0 0.2703 +0 0.0496 +0 0.1982 +0 0.0660 +0 0.0442 +0 0.1475 +0 0.0743 +0 0.0657 +0 0.0802 +0 0.2394 +0 0.1330 +0 0.1333 +0 0.0902 +0 0.2573 +0 0.0341 +0 0.3118 +0 0.2476 +0 0.1475 +0 0.0777 +0 0.1504 +0 0.1917 +0 0.1196 +0 0.0501 +0 0.0848 +0 0.2739 +0 0.0526 +0 0.0894 +0 0.0922 +0 0.0916 +0 0.1061 +0 0.1047 +0 0.1453 +0 0.0911 +0 0.1235 +1 0.7692 +0 0.0970 +0 0.1244 +0 0.2094 +0 0.1626 +0 0.0633 +0 0.0705 +0 0.1045 +0 0.1417 +0 0.1679 +0 0.1142 +0 0.1171 +0 0.0581 +0 0.3495 +0 0.3641 +0 0.0752 +0 0.0693 +0 0.1503 +0 0.1007 +0 0.0698 +0 0.0687 +0 0.0875 +0 0.2039 +0 0.2508 +0 0.2188 +0 0.2105 +0 0.0743 +0 0.1198 +0 0.0568 +1 0.8072 +0 0.3396 +0 0.1729 +0 0.0713 +0 0.0845 +0 0.1504 +0 0.1420 +0 0.2163 +0 0.0525 +0 0.0762 +0 0.2490 +0 0.0992 +0 0.0560 +0 0.0766 +0 0.0865 +0 0.1166 +0 0.1505 +0 0.1769 +0 0.1147 +0 0.2019 +0 0.0834 +0 0.2228 +0 0.1003 +0 0.0681 +0 0.2264 +0 0.1597 +0 0.0642 +0 0.6505 +0 0.0912 +0 0.1386 +0 0.0963 +0 0.3392 +0 0.2578 +0 0.2923 +0 0.0624 +0 0.1177 +0 0.0914 +0 0.0823 +0 0.1634 +0 0.0740 +0 0.0798 +0 0.2096 +0 0.2739 +0 0.1964 +0 0.2071 +0 0.1869 +0 0.1818 +0 0.2108 +0 0.1407 +0 0.2176 +0 0.2587 +0 0.2122 +0 0.1050 +0 0.0713 +0 0.0832 +0 0.0544 +1 0.7584 +0 0.0771 +0 0.0908 +0 0.1027 +0 0.1155 +0 0.1964 +0 0.1701 +0 0.1881 +0 0.1309 +0 0.0765 +0 0.1581 +0 0.3075 +0 0.0935 +0 0.4311 +0 0.0672 +0 0.2719 +0 0.1116 +0 0.1087 +0 0.1450 +0 0.0724 +0 0.2742 +0 0.0652 +0 0.1429 +0 0.1464 +0 0.0930 +0 0.0461 +0 0.1948 +0 0.1281 +0 0.1922 +0 0.2936 +0 0.0584 +0 0.0523 +0 0.0556 +0 0.1935 +0 0.4377 +0 0.1860 +0 0.2222 +0 0.0761 +0 0.0847 +0 0.1196 +0 0.2194 +0 0.0628 +0 0.4510 +0 0.1037 +0 0.2143 +0 0.0582 +0 0.1085 +0 0.1368 +0 0.3124 +1 0.7703 +0 0.0953 +0 0.1819 +0 0.1223 +0 0.2279 +0 0.4060 +0 0.0680 +0 0.0745 +0 0.0749 +0 0.0808 +0 0.0517 +0 0.2056 +0 0.3435 +0 0.1512 +0 0.2677 +0 0.0555 +0 0.2788 +0 0.2463 +0 0.0699 +0 0.1248 +0 0.0863 +0 0.0703 +0 0.1097 +0 0.1512 +0 0.1020 +0 0.1031 +0 0.1693 +0 0.1669 +0 0.1648 +0 0.3347 +0 0.0644 +0 0.1141 +0 0.0672 +0 0.1179 +0 0.3822 +0 0.1453 +0 0.2693 +0 0.1588 +0 0.0795 +0 0.2871 +1 0.7698 +0 0.0809 +0 0.3245 +0 0.0939 +0 0.0898 +0 0.0722 +0 0.0657 +0 0.0611 +0 0.1630 +0 0.0559 +1 0.8736 +0 0.0320 +0 0.0557 +0 0.1859 +1 0.7756 +0 0.1426 +0 0.2767 +0 0.2547 +0 0.0462 +0 0.1226 +0 0.1194 +0 0.3860 +0 0.3520 +0 0.0599 +0 0.0754 +0 0.0678 +0 0.1700 +0 0.0763 +0 0.0440 +0 0.1493 +0 0.0296 +0 0.0811 +0 0.1259 +0 0.1062 +1 0.7870 +0 0.0709 +0 0.0883 +0 0.1305 +0 0.1272 +0 0.1677 +0 0.0704 +0 0.0819 +1 0.7719 +0 0.1247 +0 0.0573 +0 0.0396 +0 0.0995 +0 0.0463 +0 0.0765 +0 0.0615 +0 0.0698 +0 0.1736 +0 0.0823 +0 0.0929 +0 0.0892 +0 0.0866 +0 0.2131 +0 0.0392 +0 0.0403 +0 0.2973 +0 0.0836 +0 0.1914 +0 0.0574 +0 0.0885 +0 0.2957 +0 0.2258 +0 0.1030 +0 0.1310 +0 0.3966 +0 0.0905 +0 0.0488 +0 0.2382 +0 0.2198 +0 0.0554 +0 0.7207 +0 0.0413 +0 0.5310 +0 0.1482 +0 0.3276 +0 0.1404 +0 0.0656 +0 0.0873 +0 0.0425 +0 0.1060 +0 0.0825 +0 0.2369 +0 0.1260 +0 0.4732 +0 0.6690 +0 0.0511 +0 0.0887 +0 0.1603 +0 0.5925 +0 0.0656 +0 0.0803 +0 0.0499 +0 0.0899 +0 0.1701 +0 0.1356 +0 0.0661 +0 0.0343 +0 0.1397 +0 0.1062 +0 0.0585 +0 0.1707 +0 0.0984 +0 0.2120 +0 0.1371 +0 0.0814 +0 0.3759 +0 0.0585 +0 0.1713 +0 0.0948 +0 0.0850 +0 0.1589 +0 0.2879 +0 0.0658 +0 0.1638 +0 0.0577 +0 0.0874 +0 0.1042 +0 0.0600 +0 0.1454 +0 0.0800 +0 0.0617 +0 0.1558 +0 0.1123 +0 0.1540 +0 0.0838 +0 0.1354 +0 0.1724 +0 0.1606 +0 0.1333 +0 0.3053 +0 0.0713 +0 0.1369 +0 0.4559 +0 0.0487 +0 0.0740 +0 0.0946 +0 0.2788 +0 0.0495 +0 0.1578 +0 0.2259 +0 0.1047 +0 0.1021 +0 0.2174 +0 0.2522 +0 0.0895 +0 0.0598 +0 0.0397 +0 0.1455 +0 0.1890 +0 0.0391 +0 0.1883 +0 0.1099 +0 0.2318 +0 0.1919 +0 0.0840 +0 0.0696 +0 0.0702 +0 0.1143 +0 0.0468 +0 0.1789 +0 0.0560 +0 0.1905 +0 0.2409 +0 0.1646 +0 0.1075 +0 0.0857 +0 0.2059 +0 0.1165 +0 0.1124 +0 0.0691 +0 0.0741 +0 0.1188 +0 0.0706 +0 0.1899 +0 0.1418 +0 0.0852 +0 0.1119 +0 0.1550 +0 0.1240 +0 0.3534 +0 0.1582 +0 0.0866 +0 0.0622 +0 0.0778 +0 0.4343 +0 0.1255 +0 0.0384 +0 0.0876 +0 0.3659 +0 0.0318 +0 0.1468 +0 0.0646 +0 0.0779 +0 0.1396 +0 0.3095 +0 0.0798 +0 0.0692 +0 0.1764 +0 0.2921 +0 0.1443 +0 0.2420 +0 0.1076 +0 0.2230 +0 0.1347 +0 0.1277 +0 0.1072 +0 0.0912 +0 0.0709 +0 0.1723 +0 0.0809 +0 0.0947 +0 0.1700 +0 0.2668 +0 0.3447 +0 0.1491 +0 0.1592 +0 0.0577 +0 0.3460 +0 0.0526 +0 0.0374 +0 0.0967 +0 0.1319 +0 0.1484 +0 0.1451 +0 0.1959 +0 0.2879 +0 0.0892 +0 0.0744 +0 0.2235 +0 0.3132 +0 0.0523 +0 0.0561 +0 0.0644 +0 0.1042 +0 0.1362 +0 0.1813 +0 0.0588 +0 0.1279 +0 0.1369 +0 0.1689 +0 0.3131 +0 0.0970 +0 0.0812 +0 0.1657 +0 0.3163 +0 0.0513 +0 0.0718 +0 0.1084 +0 0.0824 +0 0.1087 +0 0.0635 +0 0.2228 +0 0.0813 +0 0.0516 +0 0.0655 +0 0.1591 +0 0.3488 +0 0.1274 +0 0.2202 +0 0.2050 +0 0.2194 +0 0.0570 +0 0.1527 +0 0.1969 +0 0.0894 +0 0.1140 +0 0.0845 +0 0.1882 +0 0.0677 +0 0.0858 +0 0.0543 +0 0.0621 +0 0.1331 +0 0.2014 +0 0.0740 +0 0.0470 +0 0.1111 +0 0.1092 +0 0.0903 +0 0.1579 +0 0.4228 +0 0.2042 +0 0.0905 +0 0.1811 +0 0.4484 +0 0.1746 +0 0.0441 +0 0.0596 +0 0.1525 +0 0.3905 +0 0.3460 +0 0.1664 +0 0.1511 +0 0.1049 +0 0.0796 +0 0.0994 +0 0.0843 +0 0.1136 +0 0.0794 +0 0.1412 +0 0.1023 +0 0.1133 +0 0.1472 +0 0.0854 +0 0.2264 +0 0.0812 +0 0.2060 +0 0.0822 +1 0.8397 +0 0.0752 +0 0.0438 +0 0.1856 +0 0.1624 +0 0.0710 +0 0.0483 +0 0.0481 +0 0.0921 +0 0.0724 +0 0.1019 +0 0.0701 +0 0.0783 +0 0.2963 +0 0.0766 +0 0.0921 +0 0.0974 +0 0.2482 +0 0.0776 +0 0.0556 +0 0.4699 +0 0.0786 +0 0.0386 +0 0.0387 +0 0.1368 +0 0.1291 +0 0.0524 +0 0.0469 +0 0.1270 +0 0.1428 +0 0.1077 +0 0.2609 +0 0.0803 +0 0.0618 +0 0.0512 +0 0.6252 +0 0.1547 +0 0.1640 +0 0.0980 +0 0.7390 +0 0.0598 +0 0.1727 +0 0.0805 +0 0.0705 +0 0.0733 +0 0.2883 +0 0.1340 +0 0.0979 +0 0.0522 +0 0.1964 +0 0.0396 +0 0.1003 +0 0.0417 +0 0.0759 +0 0.1861 +0 0.1016 +0 0.1056 +0 0.1174 +0 0.0874 +0 0.1480 +0 0.1024 +0 0.1032 +0 0.0766 +0 0.4477 +0 0.0852 +0 0.1941 +0 0.1725 +0 0.0617 +0 0.0704 +0 0.1009 +0 0.0819 +0 0.1193 +0 0.0607 +0 0.0855 +0 0.0754 +0 0.2266 +0 0.0507 +0 0.0855 +0 0.1386 +0 0.1372 +0 0.3237 +0 0.0810 +0 0.6454 +0 0.0859 +0 0.0400 +1 0.8214 +0 0.0571 +0 0.2089 +0 0.0464 +0 0.1616 +0 0.1134 +0 0.0686 +0 0.0856 +0 0.0991 +0 0.0933 +0 0.0865 +0 0.0872 +0 0.0540 +0 0.0912 +0 0.1820 +0 0.1711 +0 0.0991 +0 0.0345 +0 0.0852 +0 0.1409 +0 0.1251 +0 0.1482 +0 0.0820 +0 0.0463 +0 0.0830 +0 0.0552 +0 0.2036 +0 0.0836 +1 0.8726 +0 0.1054 +0 0.0691 +0 0.2117 +0 0.0634 +0 0.4329 +0 0.0784 +0 0.0552 +0 0.0686 +0 0.1201 +0 0.0644 +0 0.0858 +0 0.0869 +0 0.0754 +0 0.4064 +0 0.1677 +0 0.1585 +0 0.0330 +0 0.0398 +0 0.2354 +0 0.0879 +0 0.0434 +0 0.1248 +0 0.1368 +0 0.1463 +1 0.8666 +0 0.5975 +0 0.0594 +0 0.1048 +0 0.1160 +0 0.3780 +0 0.1361 +1 0.8343 +0 0.1499 +0 0.4159 +0 0.1292 +0 0.1237 +0 0.2847 +0 0.4373 +0 0.1209 +0 0.1801 +0 0.0671 +0 0.1252 +0 0.1425 +0 0.0968 +0 0.1705 +0 0.1148 +0 0.1276 +0 0.1043 +0 0.1112 +0 0.2217 +0 0.1116 +1 0.8627 +0 0.0865 +0 0.1027 +0 0.0885 +0 0.0807 +0 0.1041 +0 0.0472 +0 0.0546 +0 0.2232 +0 0.0941 +0 0.1532 +0 0.1185 +0 0.0744 +0 0.0737 +0 0.0478 +0 0.1337 +0 0.0772 +0 0.0891 +0 0.1121 +0 0.1175 +0 0.1278 +0 0.1141 +0 0.0788 +0 0.1071 +0 0.1052 +0 0.0709 +0 0.0921 +0 0.0786 +0 0.0555 +0 0.1413 +0 0.0661 +0 0.5175 +0 0.0965 +0 0.1355 +0 0.1338 +0 0.6046 +0 0.0642 +0 0.1158 +0 0.3328 +0 0.1268 +0 0.1154 +0 0.7165 +0 0.0762 +0 0.1770 +0 0.1622 +0 0.0636 +0 0.0747 +0 0.1970 +0 0.1535 +0 0.3327 +0 0.3109 +0 0.0805 +0 0.1876 +0 0.1955 +0 0.0688 +0 0.0559 +0 0.1032 +0 0.1424 +0 0.1327 +0 0.1746 +0 0.1149 +0 0.0530 +0 0.5120 +0 0.2080 +0 0.3462 +0 0.4259 +0 0.0695 +0 0.2644 +0 0.1254 +0 0.0806 +0 0.0774 +0 0.0492 +0 0.1089 +0 0.0750 +0 0.1264 +0 0.1646 +0 0.0454 +0 0.2414 +0 0.0547 +0 0.2308 +0 0.0570 +0 0.1494 +0 0.0761 +0 0.2141 +0 0.4533 +0 0.0866 +0 0.1029 +0 0.1679 +1 0.7847 +0 0.1307 +0 0.0934 +0 0.0783 +0 0.0671 +0 0.0790 +0 0.2065 +0 0.3920 +0 0.0867 +0 0.0595 +0 0.0840 +0 0.1165 +0 0.0517 +0 0.0477 +0 0.2205 +0 0.5431 +0 0.0796 +0 0.0903 +0 0.0985 +0 0.1166 +0 0.0959 +0 0.0769 +0 0.0614 +0 0.2497 +0 0.0902 +0 0.0707 +0 0.1740 +0 0.1938 +0 0.1244 +0 0.1030 +0 0.0581 +0 0.0427 +0 0.5152 +0 0.0680 +0 0.2675 +0 0.0856 +0 0.0961 +0 0.1684 +0 0.0506 +0 0.0438 +0 0.0704 +0 0.0540 +0 0.1538 +0 0.1056 +0 0.1115 +0 0.0904 +0 0.0814 +0 0.1358 +0 0.0997 +0 0.1683 +0 0.1828 +0 0.1278 +0 0.1000 +0 0.0626 +0 0.1216 +0 0.0602 +0 0.2301 +0 0.0668 +0 0.1504 +0 0.1887 +0 0.0831 +0 0.1946 +0 0.0915 +0 0.0806 +0 0.1474 +0 0.0567 +0 0.0584 +0 0.1562 +0 0.0713 +0 0.1962 +0 0.2603 +0 0.1839 +0 0.1240 +0 0.0679 +0 0.1513 +0 0.0572 +0 0.2326 +0 0.1334 +0 0.0861 +0 0.1057 +0 0.2347 +0 0.4794 +0 0.7369 +0 0.1317 +0 0.1686 +0 0.1081 +0 0.0603 +0 0.0654 +0 0.1684 +0 0.0783 +0 0.3886 +0 0.2857 +0 0.1235 +0 0.1448 +0 0.0737 +0 0.0557 +0 0.3634 +0 0.1447 +0 0.1266 +0 0.0434 +0 0.1152 +0 0.6969 +0 0.0647 +0 0.0563 +0 0.1971 +0 0.1633 +0 0.1672 +0 0.0513 +0 0.0726 +0 0.0857 +0 0.0517 +0 0.1532 +0 0.0828 +0 0.0918 +0 0.1657 +0 0.0714 +0 0.0723 +0 0.1516 +0 0.0656 +0 0.0786 +0 0.4206 +0 0.1578 +0 0.0602 +0 0.2092 +0 0.1114 +0 0.2274 +0 0.2402 +0 0.5048 +0 0.1221 +0 0.1288 +0 0.0725 +0 0.6929 +0 0.1001 +0 0.1054 +0 0.0981 +0 0.6516 +0 0.0698 +0 0.0850 +0 0.2309 +0 0.0919 +0 0.0979 +0 0.2117 +0 0.0734 +0 0.0581 +0 0.2235 +0 0.0839 +0 0.1050 +0 0.0538 +0 0.1554 +0 0.0949 +0 0.6413 +0 0.7110 +0 0.1735 +0 0.1127 +0 0.1503 +0 0.0999 +0 0.0562 +0 0.1237 +0 0.1701 +0 0.0967 +0 0.1393 +0 0.1542 +0 0.6425 +0 0.0427 +0 0.1856 +0 0.0830 +0 0.1648 +0 0.1284 +0 0.5151 +0 0.0688 +0 0.0959 +0 0.1168 +0 0.0483 +0 0.0740 +0 0.0774 +0 0.0649 +0 0.1405 +0 0.1132 +0 0.1984 +0 0.0796 +0 0.1454 +0 0.0431 +0 0.2274 +0 0.1133 +0 0.0529 +0 0.1057 +0 0.1393 +0 0.1744 +0 0.0410 +0 0.1368 +0 0.1516 +0 0.1224 +0 0.0683 +0 0.0587 +0 0.0738 +0 0.1567 +0 0.0606 +0 0.0562 +0 0.0654 +0 0.1293 +0 0.0406 +0 0.0558 +0 0.1352 +0 0.0726 +0 0.1570 +0 0.1030 +0 0.1923 +0 0.4129 +0 0.2301 +0 0.0921 +0 0.1083 +0 0.1545 +0 0.2295 +0 0.3577 +0 0.0982 +0 0.1469 +0 0.1072 +0 0.0799 +0 0.0588 +0 0.1208 +0 0.0831 +0 0.0698 +0 0.0317 +0 0.1206 +0 0.0729 +0 0.1348 +0 0.0672 +0 0.2200 +0 0.0624 +0 0.3441 +0 0.1332 +0 0.1078 +0 0.0592 +0 0.0659 +0 0.6782 +0 0.1286 +0 0.0825 +0 0.2119 +0 0.1110 +0 0.1161 +0 0.1907 +0 0.0752 +0 0.1010 +0 0.0491 +0 0.1451 +0 0.1011 +0 0.1117 +0 0.2355 +0 0.6216 +0 0.1896 +0 0.0694 +0 0.0454 +0 0.0635 +0 0.1252 +0 0.2241 +0 0.0679 +0 0.0778 +0 0.1081 +0 0.1131 +0 0.0765 +0 0.0928 +0 0.2053 +0 0.0472 +0 0.1626 +0 0.0419 +0 0.0434 +0 0.0982 +0 0.0601 +0 0.0945 +0 0.1456 +0 0.0865 +0 0.0750 +0 0.0579 +0 0.0523 +0 0.0600 +0 0.0708 +0 0.1267 +0 0.3536 +0 0.0910 +0 0.2218 +0 0.0464 +0 0.0872 +0 0.1809 +0 0.0507 +0 0.0616 +0 0.1608 +0 0.1450 +0 0.1345 +0 0.0937 +0 0.0815 +0 0.2421 +0 0.1656 +0 0.0372 +0 0.1110 +0 0.1519 +0 0.1408 +0 0.2205 +0 0.0828 +0 0.1107 +0 0.0844 +0 0.2190 +0 0.0572 +0 0.0401 +0 0.1256 +0 0.1198 +0 0.0724 +0 0.6644 +0 0.1529 +0 0.3676 +0 0.0896 +0 0.0993 +0 0.2185 +0 0.1305 +0 0.0848 +0 0.0949 +0 0.1425 +0 0.0654 +0 0.0729 +0 0.1212 +0 0.0997 +0 0.1055 +0 0.1332 +0 0.1042 +0 0.4213 +0 0.7488 +0 0.3332 +0 0.2785 +0 0.1092 +0 0.1692 +0 0.0564 +0 0.1386 +0 0.1414 +0 0.1099 +0 0.0768 +0 0.1201 +0 0.0428 +0 0.0871 +0 0.1439 +0 0.1515 +0 0.1164 +0 0.1037 +0 0.0766 +0 0.0614 +0 0.0967 +0 0.0606 +0 0.0691 +0 0.2283 +0 0.1290 +0 0.0913 +0 0.1118 +0 0.0783 +0 0.0787 +0 0.2155 +0 0.0722 +0 0.0920 +0 0.2225 +0 0.0403 +0 0.0844 +0 0.0958 +0 0.1549 +0 0.1842 +0 0.0324 +0 0.1074 +0 0.0771 +1 0.8755 +0 0.4994 +0 0.2746 +0 0.1056 +0 0.3874 +0 0.0647 +0 0.0962 +0 0.3504 +0 0.3488 +0 0.0715 +0 0.0408 +0 0.2116 +0 0.1045 +0 0.0866 +0 0.1463 +0 0.0781 +0 0.0945 +0 0.0666 +0 0.1848 +0 0.0438 +0 0.1004 +0 0.5996 +0 0.0680 +0 0.1184 +1 0.7748 +0 0.7426 +0 0.0783 +0 0.1453 +0 0.0555 +0 0.0845 +0 0.3594 +0 0.0562 +0 0.1685 +0 0.0890 +0 0.0674 +0 0.0453 +0 0.3208 +0 0.1576 +0 0.1079 +0 0.1665 +0 0.1991 +0 0.1148 +0 0.1353 +0 0.1317 +0 0.2785 +0 0.0546 +0 0.2001 +0 0.1962 +0 0.1409 +0 0.0864 +0 0.0457 +0 0.0582 +0 0.0865 +0 0.1141 +0 0.0883 +0 0.1905 +0 0.1316 +0 0.0883 +0 0.2402 +0 0.0845 +0 0.0677 +0 0.0728 +0 0.0991 +0 0.0799 +0 0.0744 +0 0.0536 +0 0.3500 +0 0.3072 +0 0.1096 +0 0.0673 +0 0.0621 +0 0.1236 +0 0.1982 +0 0.0807 +0 0.1028 +0 0.0889 +0 0.1684 +0 0.0708 +0 0.0874 +0 0.0396 +0 0.0878 +0 0.1194 +0 0.0441 +0 0.0830 +0 0.0534 +0 0.0431 +0 0.1394 +0 0.0892 +0 0.0921 +0 0.1105 +0 0.1203 +0 0.0371 +0 0.1329 +0 0.0754 +0 0.1073 +0 0.0824 +0 0.0696 +0 0.1056 +0 0.0619 +0 0.0529 +0 0.1723 +1 0.8493 +0 0.1605 +0 0.0779 +0 0.2827 +0 0.2792 +0 0.1706 +0 0.1149 +0 0.0861 +0 0.0840 +0 0.0629 +0 0.1395 +0 0.1085 +0 0.2276 +0 0.1303 +0 0.0610 +0 0.1049 +0 0.1385 +0 0.0547 +0 0.1055 +0 0.1495 +0 0.2724 +0 0.0601 +0 0.0892 +0 0.2456 +0 0.0597 +0 0.1622 +0 0.0666 +0 0.2671 +0 0.1938 +0 0.4335 +0 0.1708 +0 0.1469 +0 0.0866 +0 0.1684 +0 0.2665 +0 0.0827 +0 0.1200 +0 0.6585 +0 0.0840 +0 0.1616 +0 0.0685 +0 0.0969 +0 0.0589 +0 0.0469 +0 0.1055 +0 0.0771 +0 0.0326 +0 0.0657 +0 0.5215 +0 0.0525 +0 0.2420 +0 0.0910 +0 0.1057 +0 0.1489 +0 0.0619 +0 0.1332 +0 0.1097 +0 0.0993 +0 0.0604 +0 0.1265 +0 0.1551 +0 0.0988 +0 0.0609 +0 0.1859 +0 0.0387 +0 0.1371 +0 0.1145 +0 0.0844 +0 0.1275 +0 0.5413 +0 0.1036 +0 0.1411 +0 0.0577 +0 0.1838 +0 0.1333 +0 0.1040 +0 0.0512 +0 0.0647 +0 0.0535 +0 0.0636 +0 0.0546 +0 0.2218 +0 0.1050 +0 0.1593 +0 0.1547 +0 0.0723 +0 0.0697 +0 0.0661 +0 0.0748 +0 0.2193 +0 0.1349 +0 0.1408 +0 0.0779 +0 0.0967 +0 0.0861 +0 0.1415 +0 0.1051 +1 0.8049 +0 0.1187 +0 0.1123 +0 0.2223 +0 0.2494 +0 0.0690 +0 0.1361 +0 0.1263 +0 0.1919 +0 0.1417 +0 0.0675 +0 0.0854 +0 0.1059 +0 0.1219 +0 0.0471 +0 0.0666 +0 0.0393 +0 0.0672 +0 0.0966 +0 0.0739 +0 0.1044 +0 0.1187 +0 0.5078 +0 0.0506 +0 0.0513 +0 0.4182 +0 0.1317 +0 0.0896 +0 0.0923 +0 0.0581 +0 0.0873 +0 0.1966 +0 0.2593 +0 0.0631 +0 0.0604 +0 0.1327 +0 0.1233 +0 0.0759 +0 0.3061 +0 0.1353 +0 0.0695 +0 0.0703 +0 0.0920 +0 0.2143 +0 0.2129 +0 0.1820 +0 0.0639 +0 0.1698 +0 0.1101 +0 0.0529 +0 0.0592 +0 0.0545 +0 0.0672 +0 0.0612 +0 0.0671 +0 0.1796 +0 0.0376 +0 0.2241 +0 0.0882 +0 0.2432 +0 0.0393 +0 0.0619 +0 0.0524 +0 0.1543 +0 0.0597 +0 0.0969 +0 0.2872 +0 0.0580 +0 0.0965 +0 0.0906 +0 0.1162 +0 0.1376 +0 0.0370 +0 0.0866 +0 0.0783 +0 0.1701 +0 0.1027 +0 0.2255 +0 0.1874 +0 0.1708 +0 0.0782 +0 0.2030 +0 0.3980 +0 0.4179 +0 0.1892 +0 0.1006 +0 0.0894 +0 0.0918 +0 0.0550 +0 0.1361 +0 0.0734 +0 0.0976 +0 0.0513 +0 0.4887 +0 0.1658 +0 0.0629 +0 0.0940 +0 0.0950 +0 0.2206 +0 0.2085 +0 0.0846 +0 0.1608 +0 0.3658 +0 0.2403 +0 0.0525 +0 0.1984 +0 0.1548 +0 0.1344 +0 0.3977 +0 0.0567 +0 0.1694 +0 0.1251 +0 0.2829 +0 0.1953 +0 0.0637 +0 0.1157 +0 0.2330 +0 0.0735 +0 0.1889 +0 0.1696 +0 0.1025 +0 0.1117 +0 0.0948 +0 0.0520 +0 0.1197 +0 0.2130 +0 0.0865 +0 0.0638 +0 0.2280 +0 0.1662 +0 0.0475 +0 0.0934 +0 0.0679 +0 0.1510 +0 0.5975 +0 0.2882 +0 0.0780 +0 0.1708 +0 0.0786 +0 0.0418 +0 0.3458 +0 0.0452 +0 0.2743 +0 0.0538 +0 0.1326 +0 0.0602 +0 0.1249 +0 0.2732 +0 0.0422 +0 0.1153 +0 0.1342 +0 0.1520 +0 0.0617 +0 0.0693 +0 0.0982 +0 0.3151 +0 0.1360 +0 0.1479 +0 0.1213 +0 0.3935 +0 0.1592 +0 0.0853 +0 0.1243 +0 0.1756 +0 0.6191 +0 0.1014 +0 0.1279 +0 0.6950 +0 0.0670 +0 0.1108 +0 0.1007 +0 0.1020 +0 0.0966 +0 0.0999 +0 0.3315 +0 0.0625 +0 0.0956 +0 0.0648 +0 0.0709 +0 0.2418 +0 0.1342 +0 0.1132 +0 0.1771 +0 0.0797 +0 0.1998 +0 0.0780 +0 0.1282 +0 0.0546 +0 0.0430 +0 0.1663 +0 0.0395 +0 0.1558 +0 0.0916 +0 0.0815 +0 0.0656 +0 0.1443 +0 0.1569 +0 0.0509 +0 0.2031 +0 0.2808 +0 0.1006 +0 0.6456 +0 0.2617 +0 0.1425 +0 0.0956 +0 0.2768 +0 0.0412 +0 0.1690 +0 0.1382 +0 0.4089 +0 0.1328 +0 0.1957 +1 0.8375 +0 0.1729 +0 0.0544 +0 0.0611 +0 0.7148 +0 0.1278 +0 0.5822 +0 0.1295 +0 0.1458 +0 0.0956 +0 0.0472 +0 0.0351 +0 0.3096 +0 0.0753 +0 0.1377 +0 0.2681 +0 0.1789 +0 0.2378 +0 0.0852 +0 0.0507 +0 0.1756 +0 0.0833 +0 0.0911 +0 0.0490 +0 0.1253 +0 0.2841 +0 0.0937 +0 0.2339 +0 0.0276 +0 0.0657 +0 0.0957 +0 0.0655 +0 0.1151 +0 0.1226 +0 0.1076 +0 0.0651 +0 0.0912 +0 0.0782 +0 0.1514 +0 0.0653 +0 0.2626 +0 0.1274 +0 0.1810 +0 0.7161 +0 0.0623 +0 0.0620 +0 0.4179 +0 0.1001 +0 0.0753 +0 0.0727 +0 0.1631 +0 0.1816 +0 0.1775 +0 0.0859 +0 0.1734 +0 0.1593 +0 0.1637 +0 0.1438 +0 0.1874 +0 0.2364 +0 0.0658 +0 0.0731 +0 0.0561 +0 0.2405 +0 0.1051 +0 0.0821 +0 0.3107 +0 0.3243 +0 0.1034 +0 0.2671 +0 0.1066 +0 0.1361 +0 0.2060 +0 0.1846 +0 0.1352 +0 0.0396 +0 0.0494 +0 0.2292 +1 0.7935 +0 0.0396 +0 0.2737 +0 0.0589 +0 0.1248 +0 0.0955 +0 0.0941 +0 0.0761 +0 0.0950 +0 0.1140 +0 0.0513 +0 0.1405 +0 0.0929 +0 0.0492 +0 0.0689 +0 0.1328 +0 0.1484 +0 0.1401 +0 0.0986 +0 0.1619 +0 0.1502 +0 0.2179 +0 0.1789 +0 0.0728 +0 0.1873 +0 0.3488 +0 0.0377 +0 0.3571 +0 0.1295 +0 0.0637 +0 0.1243 +0 0.2147 +0 0.4138 +0 0.0774 +1 0.8026 +0 0.0550 +0 0.1091 +0 0.1230 +0 0.2861 +0 0.1818 +0 0.0486 +0 0.0793 +0 0.0581 +0 0.0641 +0 0.0932 +0 0.2289 +0 0.1794 +0 0.1492 +0 0.1583 +0 0.0601 +0 0.0647 +0 0.0632 +0 0.3102 +0 0.1015 +0 0.0992 +0 0.1614 +0 0.0871 +0 0.0839 +0 0.0558 +0 0.0475 +0 0.2201 +0 0.0550 +0 0.1099 +0 0.2287 +0 0.0793 +0 0.0531 +0 0.0763 +0 0.1319 +0 0.1050 +0 0.1178 +0 0.0400 +0 0.0643 +0 0.1510 +0 0.1388 +0 0.1494 +0 0.0882 +0 0.0440 +0 0.1402 +0 0.1049 +0 0.0890 +0 0.0781 +0 0.0987 +0 0.1727 +0 0.1290 +0 0.0455 +0 0.2560 +0 0.2151 +0 0.0749 +0 0.0560 +0 0.1231 +0 0.1510 +0 0.0830 +0 0.2027 +0 0.1224 +0 0.0581 +0 0.1909 +0 0.0929 +0 0.2233 +0 0.0608 +0 0.1569 +0 0.0547 +0 0.1713 +0 0.7452 +0 0.2669 +0 0.1679 +0 0.0480 +0 0.0296 +0 0.0834 +0 0.1621 +0 0.1055 +0 0.4242 +0 0.0408 +0 0.1230 +0 0.0935 +0 0.0834 +0 0.2488 +0 0.0782 +0 0.0490 +0 0.0794 +0 0.1444 +0 0.0666 +0 0.1565 +0 0.0807 +0 0.0456 +0 0.0575 +0 0.1640 +0 0.1919 +0 0.1540 +0 0.1108 +0 0.3147 +0 0.1139 +0 0.0521 +0 0.1385 +0 0.0602 +0 0.0443 +0 0.0561 +0 0.0988 +0 0.5917 +0 0.1037 +0 0.1518 +0 0.0704 +0 0.2302 +0 0.2298 +0 0.0445 +0 0.0667 +0 0.2490 +0 0.0484 +0 0.0718 +0 0.6584 +0 0.0745 +0 0.2744 +0 0.2206 +0 0.0784 +0 0.0487 +0 0.3213 +0 0.1365 +0 0.0405 +0 0.1200 +0 0.2100 +0 0.0426 +0 0.0587 +0 0.0671 +0 0.1246 +0 0.6979 +0 0.1428 +0 0.1003 +0 0.1507 +0 0.2795 +0 0.4931 +0 0.0477 +0 0.2049 +0 0.0714 +0 0.1454 +0 0.0873 +0 0.1251 +0 0.0396 +0 0.1319 +0 0.1398 +0 0.0692 +0 0.7049 +0 0.1656 +0 0.0512 +0 0.1616 +0 0.3986 +0 0.0474 +0 0.1303 +0 0.1677 +0 0.0958 +0 0.1816 +0 0.1532 +0 0.4121 +0 0.0545 +0 0.0832 +0 0.2064 +0 0.0917 +0 0.0565 +0 0.1094 +0 0.0701 +0 0.0956 +0 0.0790 +0 0.0814 +0 0.7100 +0 0.0824 +0 0.0743 +0 0.1197 +0 0.0470 +0 0.0930 +0 0.2476 +0 0.0980 +0 0.0515 +0 0.2950 +0 0.0668 +0 0.4357 +0 0.0936 +0 0.1824 +0 0.0890 +0 0.1067 +0 0.1884 +0 0.0894 +0 0.2563 +0 0.3624 +0 0.3534 +0 0.1479 +0 0.1210 +0 0.0795 +0 0.0694 +0 0.0707 +0 0.0774 +0 0.1755 +0 0.1400 +0 0.4711 +0 0.0751 +0 0.1010 +0 0.1413 +0 0.0286 +0 0.6669 +0 0.1055 +0 0.0638 +0 0.0655 +1 0.8338 +0 0.3576 +0 0.1368 +0 0.1430 +0 0.1092 +0 0.1804 +0 0.3813 +0 0.0876 +0 0.0484 +0 0.1121 +0 0.1227 +0 0.0585 +0 0.2176 +0 0.0484 +0 0.2738 +0 0.1158 +0 0.1751 +0 0.1032 +0 0.0834 +0 0.1179 +0 0.0698 +0 0.2141 +0 0.4420 +0 0.3294 +0 0.0961 +0 0.2130 +0 0.0989 +0 0.1273 +0 0.6187 +0 0.1020 +0 0.0690 +0 0.1066 +0 0.0504 +0 0.1382 +0 0.0784 +0 0.0580 +0 0.0800 +0 0.0698 +0 0.0420 +0 0.1709 +0 0.3810 +0 0.0859 +0 0.1272 +0 0.0790 +0 0.2044 +0 0.1840 +0 0.0871 +0 0.0632 +1 0.8256 +0 0.1393 +0 0.1637 +0 0.0485 +0 0.6697 +0 0.1157 +0 0.0792 +0 0.1817 +0 0.6868 +0 0.0403 +0 0.1597 +0 0.0556 +0 0.0851 +0 0.2531 +0 0.3527 +0 0.0697 +0 0.1718 +0 0.2422 +0 0.0663 +0 0.0648 +0 0.1064 +0 0.1563 +0 0.0549 +0 0.1406 +0 0.0729 +0 0.0858 +0 0.1940 +0 0.1421 +0 0.0519 +0 0.1053 +0 0.1003 +0 0.0633 +0 0.3500 +0 0.1278 +0 0.1234 +0 0.0804 +0 0.1115 +0 0.2419 +0 0.0878 +0 0.0810 +0 0.0809 +0 0.0771 +0 0.1293 +0 0.0578 +0 0.0583 +0 0.0603 +0 0.1131 +0 0.1492 +0 0.0831 +0 0.1414 +0 0.2822 +0 0.4074 +0 0.3530 +0 0.1070 +0 0.1637 +0 0.2477 +0 0.1149 +0 0.0686 +0 0.0881 +0 0.2261 +0 0.0640 +0 0.0697 +0 0.2313 +1 0.7996 +0 0.3401 +0 0.2472 +0 0.0999 +0 0.0675 +0 0.0808 +0 0.1655 +0 0.1946 +0 0.1678 +1 0.7813 +0 0.0907 +0 0.1423 +0 0.1304 +0 0.0947 +0 0.6213 +0 0.0809 +0 0.2703 +0 0.1848 +0 0.1053 +0 0.1455 +0 0.0756 +0 0.0813 +0 0.1505 +0 0.0702 +0 0.2817 +0 0.1281 +0 0.1198 +0 0.1215 +0 0.1074 +0 0.1233 +0 0.1001 +0 0.1182 +0 0.1621 +0 0.2585 +0 0.1021 +0 0.0980 +0 0.0911 +0 0.0402 +0 0.1349 +0 0.0711 +0 0.5967 +0 0.2745 +0 0.1107 +0 0.2363 +0 0.1789 +0 0.0826 +0 0.0730 +0 0.1278 +0 0.0480 +0 0.0466 +0 0.3722 +0 0.0439 +0 0.1281 +0 0.2422 +0 0.1007 +0 0.0988 +0 0.0616 +0 0.1441 +0 0.1059 +0 0.3051 +1 0.8440 +0 0.0740 +0 0.0849 +0 0.1674 +0 0.0828 +0 0.1358 +0 0.1409 +0 0.2852 +0 0.0644 +0 0.1885 +0 0.0401 +0 0.1092 +0 0.0869 +0 0.2168 +0 0.0599 +0 0.1219 +0 0.0528 +0 0.0914 +0 0.0731 +0 0.0853 +0 0.1047 +0 0.0789 +0 0.3333 +0 0.1039 +0 0.1152 +0 0.1317 +1 0.7610 +0 0.6981 +0 0.0758 +0 0.3677 +0 0.0849 +0 0.1658 +0 0.1755 +0 0.1023 +0 0.0770 +0 0.1904 +0 0.1622 +0 0.0343 +0 0.0540 +0 0.0871 +0 0.0690 +0 0.2348 +0 0.1004 +0 0.0692 +0 0.2250 +0 0.2066 +0 0.0975 +0 0.0840 +0 0.0629 +0 0.1702 +0 0.0536 +0 0.1051 +0 0.0698 +0 0.3091 +0 0.1236 +0 0.1204 +0 0.0926 +0 0.0476 +0 0.0759 +0 0.1525 +0 0.0550 +0 0.1049 +0 0.0728 +0 0.0823 +0 0.1581 +0 0.1263 +0 0.0678 +0 0.0751 +0 0.1787 +0 0.4123 +0 0.0799 +0 0.0989 +0 0.0566 +0 0.0839 +0 0.3954 +0 0.1132 +0 0.0423 +0 0.0707 +0 0.1356 +0 0.0504 +0 0.2387 +0 0.1914 +0 0.1029 +0 0.0439 +0 0.1194 +0 0.1038 +0 0.0950 +0 0.1592 +0 0.1067 +0 0.3464 +0 0.1030 +0 0.0947 +0 0.0365 +0 0.2279 +0 0.2106 +0 0.1106 +0 0.0787 +0 0.0522 +0 0.0960 +0 0.1037 +0 0.2169 +0 0.3472 +0 0.0651 +0 0.1617 +0 0.0517 +0 0.0661 +0 0.1097 +0 0.0629 +0 0.1818 +1 0.7819 +0 0.5628 +0 0.1250 +0 0.0632 +0 0.1185 +0 0.0668 +0 0.1686 +0 0.2736 +0 0.5685 +0 0.1593 +0 0.1810 +0 0.1515 +0 0.1162 +0 0.0643 +0 0.0568 +0 0.0882 +0 0.1045 +0 0.0705 +0 0.1106 +0 0.3836 +0 0.0710 +0 0.0785 +0 0.0489 +0 0.7233 +0 0.0687 +0 0.1977 +0 0.0527 +0 0.1417 +0 0.1917 +0 0.0564 +1 0.7722 +0 0.0784 +0 0.0882 +0 0.1361 +0 0.1143 +0 0.0785 +0 0.0735 +0 0.0773 +0 0.1191 +0 0.1271 +0 0.1372 +0 0.1578 +0 0.0958 +0 0.0495 +0 0.0765 +0 0.0998 +0 0.2887 +0 0.0960 +0 0.1175 +0 0.0533 +0 0.0770 +0 0.1730 +0 0.1118 +0 0.2911 +0 0.0736 +0 0.0951 +0 0.1231 +0 0.1959 +0 0.1073 +0 0.1179 +0 0.1301 +0 0.0462 +0 0.1745 +0 0.0388 +0 0.1092 +0 0.5296 +0 0.0976 +0 0.1899 +0 0.0750 +0 0.0795 +0 0.1832 +0 0.1254 +0 0.2638 +0 0.0736 +0 0.0465 +0 0.1925 +0 0.2717 +0 0.1107 +0 0.2008 +0 0.0886 +0 0.0553 +0 0.1669 +0 0.1381 +0 0.1565 +0 0.3670 +0 0.0994 +0 0.0805 +0 0.0701 +0 0.0920 +0 0.0352 +0 0.1490 +0 0.0923 +0 0.0512 +0 0.1263 +0 0.1799 +0 0.0592 +0 0.2276 +0 0.1134 +0 0.0838 +0 0.1061 +0 0.0383 +0 0.0954 +0 0.1406 +0 0.0425 +0 0.6622 +0 0.0972 +0 0.1843 +0 0.0767 +0 0.2123 +0 0.0805 +0 0.1306 +0 0.5027 +0 0.2550 +0 0.0953 +0 0.4567 +0 0.0910 +0 0.2087 +0 0.0756 +0 0.5502 +0 0.1432 +0 0.1651 +0 0.0931 +0 0.0383 +0 0.1181 +0 0.1125 +0 0.4145 +0 0.1378 +0 0.1143 +0 0.3756 +0 0.1180 +0 0.0809 +0 0.0465 +0 0.0634 +0 0.0915 +0 0.1461 +0 0.4790 +0 0.1960 +0 0.0528 +0 0.0609 +0 0.2573 +0 0.7495 +0 0.2184 +0 0.2014 +0 0.0994 +0 0.0680 +0 0.2169 +0 0.1270 +0 0.3724 +0 0.0859 +0 0.0619 +0 0.0533 +0 0.0483 +0 0.1017 +0 0.1271 +0 0.0572 +0 0.0805 +0 0.0835 +0 0.1050 +0 0.0755 +0 0.6864 +0 0.0449 +0 0.1533 +0 0.2693 +0 0.2711 +0 0.0898 +0 0.0543 +0 0.0883 +0 0.0551 +0 0.2742 +0 0.0588 +0 0.0791 +0 0.1329 +0 0.1332 +0 0.1065 +0 0.0770 +0 0.0777 +0 0.1265 +0 0.0969 +0 0.1269 +0 0.0659 +0 0.1135 +0 0.0922 +0 0.1217 +0 0.1564 +0 0.0957 +0 0.1631 +0 0.1616 +0 0.0494 +0 0.1104 +0 0.1484 +0 0.1279 +0 0.1175 +0 0.0968 +0 0.0638 +0 0.5465 +0 0.0828 +0 0.0878 +0 0.0906 +0 0.0892 +0 0.1033 +0 0.1770 +0 0.0514 +0 0.0742 +0 0.1007 +0 0.0764 +0 0.0876 +0 0.1817 +0 0.1542 +0 0.0600 +0 0.0631 +0 0.0660 +0 0.0814 +0 0.2586 +0 0.0629 +0 0.1708 +0 0.1032 +0 0.0431 +0 0.0649 +0 0.1144 +0 0.3101 +0 0.0931 +0 0.0570 +0 0.1486 +0 0.0451 +0 0.2760 +0 0.1091 +0 0.1915 +0 0.1645 +0 0.1076 +0 0.1855 +0 0.0467 +0 0.0991 +1 0.7668 +0 0.1368 +0 0.2956 +0 0.1659 +0 0.0992 +0 0.1208 +0 0.1861 +0 0.1016 +0 0.1112 +0 0.0875 +0 0.0889 +0 0.1039 +0 0.0596 +0 0.1025 +0 0.0371 +0 0.0598 +0 0.1201 +0 0.0494 +0 0.0909 +0 0.0981 +0 0.0903 +0 0.0797 +0 0.0677 +0 0.0469 +0 0.1073 +0 0.0889 +0 0.1228 +0 0.3695 +0 0.1868 +0 0.1572 +0 0.2977 +0 0.0906 +0 0.0782 +0 0.1065 +0 0.0369 +0 0.1321 +0 0.0839 +0 0.1199 +0 0.0603 +0 0.0961 +1 0.8602 +0 0.1333 +0 0.0489 +0 0.0641 +0 0.0554 +0 0.0872 +0 0.0959 +0 0.0909 +0 0.2228 +0 0.1401 +0 0.0829 +0 0.0627 +0 0.0750 +0 0.1419 +0 0.2949 +0 0.0398 +0 0.3139 +0 0.0971 +0 0.0619 +0 0.0923 +0 0.2701 +0 0.0384 +0 0.2438 +0 0.2124 +0 0.0751 +0 0.2555 +0 0.0925 +0 0.1057 +0 0.1636 +0 0.2169 +0 0.1252 +0 0.0724 +0 0.1738 +0 0.1551 +0 0.2644 +0 0.1258 +0 0.0956 +0 0.1985 +0 0.1118 +0 0.1572 +0 0.0806 +0 0.1352 +0 0.1528 +0 0.0895 +0 0.0913 +0 0.1389 +0 0.1746 +0 0.5951 +0 0.0440 +0 0.1956 +0 0.1398 +0 0.0718 +0 0.0835 +0 0.0548 +0 0.1104 +0 0.1446 +0 0.1648 +0 0.1078 +0 0.0548 +0 0.1093 +0 0.0698 +0 0.0775 +0 0.1158 +0 0.0549 +0 0.0619 +0 0.3296 +0 0.1228 +0 0.2334 +0 0.1910 +0 0.0656 +0 0.3172 +0 0.0691 +0 0.1078 +0 0.2405 +0 0.0984 +0 0.0815 +0 0.0558 +1 0.8659 +0 0.0740 +0 0.0761 +0 0.0802 +0 0.1577 +0 0.1754 +0 0.0658 +0 0.0800 +0 0.1089 +0 0.1723 +0 0.1282 +0 0.2702 +0 0.0459 +0 0.1449 +0 0.0554 +0 0.0823 +0 0.1245 +0 0.0916 +0 0.3195 +0 0.1287 +0 0.0614 +0 0.0719 +0 0.2478 +0 0.1467 +0 0.2412 +0 0.0446 +0 0.0604 +0 0.0956 +0 0.1379 +0 0.3113 +0 0.3050 +0 0.1403 +0 0.2193 +0 0.0625 +0 0.5127 +0 0.1716 +0 0.0869 +0 0.0613 +0 0.5054 +0 0.3174 +0 0.0897 +0 0.3192 +0 0.1297 +0 0.3739 +0 0.0976 +0 0.0458 +0 0.2266 +0 0.1907 +0 0.0943 +0 0.0404 +0 0.1093 +0 0.0663 +0 0.1301 +0 0.1470 +0 0.5867 +0 0.0631 +0 0.6836 +0 0.0734 +0 0.3853 +0 0.1466 +0 0.0645 +0 0.3164 +0 0.0865 +0 0.1057 +0 0.5467 +0 0.0585 +0 0.1044 +0 0.0988 +0 0.0664 +0 0.0442 +0 0.3020 +0 0.1994 +0 0.1497 +0 0.3608 +0 0.1526 +0 0.1617 +0 0.0685 +0 0.0543 +0 0.0514 +0 0.1084 +0 0.1987 +0 0.0573 +0 0.2530 +0 0.0599 +1 0.8113 +0 0.0534 +0 0.0937 +0 0.0659 +0 0.0919 +0 0.0496 +0 0.1992 +0 0.0881 +0 0.2670 +0 0.0496 +0 0.1035 +0 0.0455 +0 0.1559 +0 0.2384 +0 0.0691 +0 0.1532 +0 0.1138 +0 0.1088 +0 0.0590 +0 0.2961 +0 0.0683 +0 0.1123 +0 0.0881 +0 0.2146 +0 0.1152 +0 0.1024 +0 0.1509 +0 0.0927 +0 0.0811 +0 0.0782 +0 0.0887 +0 0.0949 +1 0.7212 +0 0.0600 +0 0.1505 +0 0.0578 +0 0.2241 +0 0.0576 +0 0.2583 +0 0.3186 +0 0.2542 +0 0.1081 +0 0.2806 +0 0.1886 +0 0.0969 +0 0.6398 +0 0.1423 +0 0.0609 +0 0.0757 +0 0.0897 +0 0.2008 +0 0.0936 +0 0.1820 +0 0.2360 +0 0.1071 +0 0.0863 +0 0.0890 +0 0.0674 +0 0.2062 +0 0.0756 +0 0.0837 +0 0.1599 +0 0.7067 +0 0.3528 +0 0.1026 +0 0.0807 +0 0.1761 +0 0.0611 +0 0.0969 +0 0.1687 +0 0.0710 +0 0.2732 +0 0.0659 +0 0.0715 +0 0.0587 +0 0.2188 +0 0.1777 +0 0.0996 +0 0.0686 +0 0.1639 +0 0.1367 +0 0.0395 +0 0.0846 +0 0.0958 +0 0.1268 +0 0.2167 +0 0.1191 +0 0.1289 +0 0.0459 +0 0.1103 +0 0.0590 +0 0.3003 +0 0.1461 +0 0.1695 +0 0.0597 +0 0.0447 +0 0.0929 +0 0.1588 +0 0.0957 +0 0.2659 +0 0.1449 +0 0.5196 +0 0.1809 +0 0.0661 +0 0.0697 +0 0.0840 +0 0.1905 +0 0.1398 +0 0.1194 +0 0.0809 +0 0.0719 +0 0.0733 +0 0.1065 +0 0.0907 +0 0.1621 +0 0.1780 +0 0.7081 +0 0.1338 +0 0.0514 +0 0.1354 +0 0.0903 +0 0.0962 +0 0.1889 +0 0.0719 +0 0.0961 +0 0.0509 +0 0.0826 +0 0.0646 +0 0.0717 +0 0.0525 +0 0.1167 +0 0.1105 +0 0.0811 +0 0.1137 +0 0.0378 +0 0.1514 +0 0.0652 +0 0.1626 +0 0.0355 +0 0.2227 +0 0.0703 +0 0.0848 +0 0.1309 +0 0.0618 +0 0.0805 +0 0.0855 +0 0.0976 +0 0.1631 +0 0.1785 +0 0.1257 +0 0.1427 +0 0.0802 +0 0.1725 +0 0.1320 +0 0.1090 +0 0.2149 +0 0.0560 +0 0.1133 +0 0.0900 +0 0.0495 +0 0.0843 +0 0.2214 +0 0.0470 +0 0.1267 +0 0.2138 +0 0.0439 +0 0.0559 +0 0.1513 +0 0.1315 +0 0.1413 +0 0.1074 +0 0.1035 +0 0.1000 +0 0.1649 +0 0.1464 +0 0.1297 +0 0.1527 +0 0.1511 +0 0.1150 +0 0.0520 +0 0.0922 +0 0.0603 +0 0.0869 +0 0.1865 +0 0.2540 +0 0.1604 +0 0.0798 +0 0.0465 +0 0.1047 +0 0.1063 +0 0.1090 +0 0.1117 +0 0.1508 +0 0.0874 +0 0.0573 +0 0.1685 +0 0.0384 +0 0.0882 +0 0.1142 +0 0.1721 +0 0.0380 +0 0.2048 +0 0.0686 +0 0.0685 +0 0.0414 +0 0.1376 +0 0.4972 +0 0.0879 +0 0.2651 +0 0.0749 +0 0.1410 +0 0.1489 +0 0.0496 +0 0.2479 +0 0.3195 +0 0.2227 +0 0.1812 +0 0.0870 +0 0.0597 +0 0.1189 +0 0.2381 +0 0.0554 +0 0.0566 +0 0.0786 +0 0.0485 +0 0.2411 +0 0.0643 +0 0.1001 +0 0.0327 +0 0.0607 +0 0.0669 +0 0.0582 +0 0.0872 +0 0.1578 +0 0.2027 +0 0.0965 +0 0.0963 +0 0.2345 +0 0.0850 +0 0.1657 +0 0.1199 +0 0.0947 +0 0.1895 +0 0.3589 +0 0.2220 +0 0.1190 +0 0.2682 +0 0.1771 +0 0.1638 +0 0.1531 +0 0.2166 +0 0.0989 +0 0.1134 +0 0.0716 +0 0.0597 +0 0.1888 +0 0.2514 +0 0.0719 +0 0.1411 +0 0.1607 +0 0.0623 +0 0.1204 +0 0.1055 +0 0.0710 +0 0.1584 +0 0.0604 +0 0.1626 +0 0.1567 +0 0.0992 +0 0.1250 +0 0.1256 +0 0.1946 +0 0.0521 +1 0.8604 +0 0.2946 +0 0.1347 +0 0.0776 +1 0.8357 +0 0.1642 +0 0.2276 +0 0.0481 +0 0.0362 +0 0.3028 +0 0.0881 +0 0.0848 +0 0.0736 +0 0.5326 +0 0.1325 +0 0.0965 +0 0.0528 +0 0.0938 +0 0.2874 +0 0.0815 +0 0.0989 +0 0.1236 +0 0.0971 +0 0.2415 +0 0.3499 +0 0.1215 +0 0.0867 +0 0.0828 +0 0.1493 +0 0.1056 +0 0.1203 +0 0.1024 +0 0.3050 +0 0.0906 +0 0.2103 +0 0.0841 +0 0.0550 +0 0.2747 +0 0.0930 +0 0.1428 +0 0.1200 +0 0.0935 +0 0.0543 +0 0.0969 +0 0.0458 +0 0.0667 +0 0.1766 +0 0.0756 +0 0.1772 +0 0.2031 +0 0.0702 +0 0.1782 +0 0.1934 +0 0.1901 +0 0.0854 +0 0.3467 +0 0.1887 +0 0.0566 +0 0.1060 +0 0.0760 +0 0.1013 +0 0.1375 +0 0.1320 +0 0.1563 +0 0.0814 +0 0.1991 +0 0.0694 +0 0.1004 +0 0.1211 +0 0.2280 +0 0.1210 +0 0.1046 +0 0.1368 +0 0.1459 +0 0.1314 +0 0.1055 +0 0.0831 +0 0.1332 +0 0.1893 +0 0.2247 +0 0.1239 +0 0.1744 +0 0.0811 +0 0.0756 +0 0.1414 +0 0.2683 +0 0.0663 +0 0.2190 +0 0.0747 +0 0.0588 +0 0.0753 +0 0.0781 +0 0.2200 +0 0.0916 +0 0.0713 +0 0.1930 +0 0.0500 +0 0.0838 +0 0.0918 +0 0.1637 +0 0.1080 +0 0.2868 +0 0.2039 +0 0.1021 +0 0.1650 +0 0.0620 +0 0.0994 +0 0.1535 +0 0.0766 +0 0.0948 +0 0.1394 +0 0.2684 +0 0.0714 +0 0.1557 +0 0.2934 +0 0.1650 +0 0.1635 +0 0.0442 +0 0.2107 +0 0.0682 +0 0.1345 +0 0.1051 +0 0.0956 +0 0.0928 +0 0.0735 +0 0.1066 +0 0.0953 +0 0.0549 +0 0.0661 +0 0.1232 +0 0.1912 +0 0.0726 +0 0.2653 +0 0.5253 +0 0.0501 +0 0.1009 +0 0.1497 +0 0.1981 +0 0.1203 +0 0.0793 +0 0.1860 +0 0.0748 +0 0.0461 +0 0.0863 +0 0.1031 +0 0.1598 +0 0.1054 +0 0.0631 +0 0.0741 +0 0.0931 +0 0.0629 +0 0.4162 +0 0.1207 +0 0.0553 +0 0.1878 +0 0.0913 +0 0.3431 +0 0.1891 +0 0.0946 +0 0.6314 +0 0.1679 +0 0.6276 +0 0.1631 +0 0.1977 +0 0.0929 +1 0.7813 +0 0.0339 +0 0.1680 +0 0.1281 +0 0.2229 +0 0.1265 +0 0.2077 +0 0.1175 +0 0.0812 +0 0.3519 +0 0.1898 +0 0.0708 +0 0.1863 +0 0.3130 +0 0.0558 +0 0.1780 +0 0.1837 +0 0.1931 +0 0.0964 +0 0.2007 +0 0.0827 +0 0.2685 +0 0.1358 +0 0.0413 +0 0.1104 +0 0.0822 +0 0.1965 +0 0.6986 +0 0.0592 +0 0.1418 +0 0.0749 +0 0.2612 +0 0.1216 +0 0.6287 +0 0.1726 +0 0.0550 +0 0.1337 +0 0.0741 +0 0.2041 +0 0.4207 +0 0.4613 +0 0.1246 +0 0.6861 +0 0.2279 +0 0.0963 +0 0.3927 +0 0.0890 +0 0.0698 +0 0.0644 +0 0.0753 +0 0.1082 +0 0.1230 +0 0.1193 +0 0.0731 +0 0.1978 +0 0.0472 +0 0.4823 +0 0.4302 +0 0.2604 +0 0.0801 +0 0.1258 +0 0.0602 +0 0.1645 +0 0.0382 +0 0.1055 +0 0.2108 +0 0.5310 +0 0.1074 +0 0.1193 +0 0.1002 +0 0.2567 +0 0.1598 +0 0.2079 +0 0.1638 +0 0.0652 +0 0.2105 +0 0.7438 +0 0.1280 +0 0.1175 +0 0.0787 +0 0.1024 +0 0.6307 +0 0.2673 +0 0.1235 +0 0.0813 +0 0.0746 +0 0.3659 +0 0.0832 +0 0.1526 +0 0.0402 +0 0.1234 +0 0.2445 +0 0.0955 +0 0.1288 +0 0.0800 +0 0.0902 +0 0.0608 +0 0.0449 +0 0.0519 +0 0.6129 +0 0.1162 +0 0.0612 +0 0.1766 +0 0.0681 +0 0.2231 +0 0.0665 +0 0.1084 +0 0.1239 +0 0.1408 +0 0.1496 +0 0.1468 +0 0.1040 +0 0.0708 +0 0.1137 +0 0.0731 +0 0.0681 +0 0.1042 +0 0.2220 +0 0.0580 +0 0.1122 +0 0.1328 +0 0.1796 +0 0.1757 +0 0.0819 +0 0.0365 +0 0.0733 +0 0.4377 +0 0.1500 +0 0.0647 +0 0.1571 +0 0.0719 +0 0.0669 +0 0.2009 +0 0.1037 +0 0.0542 +0 0.0649 +0 0.1490 +0 0.3696 +0 0.1071 +0 0.1541 +0 0.0675 +0 0.1117 +0 0.1021 +0 0.5371 +0 0.0565 +0 0.1681 +0 0.2877 +0 0.1418 +0 0.0878 +0 0.0913 +0 0.0557 +0 0.0751 +0 0.0562 +0 0.0485 +0 0.0584 +0 0.7019 +0 0.0815 +0 0.1041 +0 0.1626 +0 0.1683 +0 0.0716 +0 0.2653 +0 0.2450 +0 0.0586 +0 0.1880 +0 0.2210 +0 0.0495 +0 0.2444 +0 0.1744 +0 0.1431 +0 0.1974 +0 0.0652 +0 0.0818 +0 0.2199 +0 0.0833 +0 0.1013 +0 0.0711 +0 0.2108 +0 0.0939 +0 0.2164 +0 0.1379 +0 0.0883 +1 0.7628 +0 0.2095 +0 0.2031 +0 0.0613 +0 0.0572 +0 0.0718 +0 0.0455 +0 0.3116 +0 0.1497 +0 0.0853 +0 0.2137 +0 0.1467 +0 0.1523 +0 0.3034 +0 0.1087 +0 0.0963 +0 0.0982 +0 0.0949 +0 0.1352 +0 0.1102 +0 0.2477 +0 0.0927 +0 0.1790 +0 0.0371 +0 0.0969 +0 0.1464 +0 0.2155 +0 0.0858 +0 0.4670 +0 0.1482 +0 0.1771 +0 0.4551 +0 0.3012 +0 0.1787 +0 0.0787 +0 0.0526 +0 0.0702 +0 0.0602 +0 0.0946 +0 0.0381 +0 0.1209 +0 0.1102 +0 0.1176 +0 0.2039 +0 0.0669 +0 0.0551 +0 0.0369 +0 0.2060 +0 0.1210 +0 0.1401 +0 0.1217 +0 0.0462 +0 0.1015 +0 0.0759 +0 0.0675 +0 0.1601 +0 0.0676 +0 0.1571 +0 0.1001 +0 0.0523 +0 0.0699 +0 0.0707 +0 0.0599 +0 0.0392 +1 0.8099 +0 0.1671 +0 0.1452 +0 0.0969 +0 0.1521 +0 0.0868 +0 0.0922 +0 0.2577 +0 0.0859 +0 0.2538 +0 0.0682 +0 0.1149 +0 0.3168 +0 0.0907 +0 0.0604 +0 0.0554 +0 0.1531 +0 0.0821 +0 0.0421 +0 0.1572 +0 0.1349 +0 0.1356 +0 0.1402 +0 0.1740 +0 0.1855 +0 0.1344 +0 0.0933 +0 0.0896 +0 0.2874 +0 0.0404 +0 0.3699 +0 0.0427 +0 0.0709 +0 0.1206 +0 0.1597 +0 0.7069 +0 0.0792 +0 0.1464 +0 0.0356 +0 0.1840 +0 0.0635 +0 0.1270 +0 0.0509 +0 0.1337 +0 0.1534 +0 0.0496 +0 0.1375 +0 0.1447 +0 0.3934 +0 0.3948 +0 0.2064 +0 0.2299 +0 0.0930 +0 0.2672 +0 0.2415 +0 0.0358 +0 0.0756 +0 0.0615 +0 0.0627 +0 0.2445 +0 0.0325 +0 0.1478 +0 0.1558 +0 0.1280 +0 0.1450 +0 0.0408 +0 0.1277 +0 0.1063 +0 0.0906 +0 0.4006 +0 0.0426 +0 0.2745 +0 0.1186 +0 0.0448 +0 0.0910 +0 0.0729 +0 0.2361 +0 0.1352 +0 0.0777 +0 0.0903 +0 0.3013 +0 0.0474 +0 0.1443 +0 0.7146 +0 0.0894 +0 0.3626 +0 0.0373 +0 0.0597 +0 0.0516 +0 0.0435 +0 0.1096 +0 0.0903 +0 0.0383 +0 0.2928 +0 0.1417 +0 0.0810 +0 0.2269 +0 0.1164 +0 0.1948 +0 0.0962 +0 0.2385 +0 0.2740 +0 0.1962 +0 0.4021 +0 0.0508 +0 0.0727 +0 0.0563 +0 0.0641 +0 0.1017 +0 0.0845 +0 0.1999 +0 0.0432 +0 0.0648 +0 0.1006 +0 0.1662 +0 0.1166 +0 0.0550 +0 0.1808 +0 0.0927 +0 0.1329 +0 0.3632 +0 0.1173 +0 0.0971 +0 0.4127 +0 0.0831 +0 0.1077 +0 0.0651 +0 0.5060 +0 0.3049 +0 0.0652 +0 0.0914 +0 0.0859 +0 0.1379 +0 0.0633 +0 0.1278 +0 0.3471 +0 0.5291 +0 0.1851 +0 0.0987 +0 0.0904 +0 0.2514 +0 0.0783 +0 0.1521 +0 0.4122 +0 0.1022 +0 0.4724 +0 0.0678 +0 0.0478 +0 0.0712 +0 0.0897 +0 0.3625 +0 0.1137 +1 0.7873 +0 0.1347 +0 0.0968 +0 0.2205 +0 0.1105 +0 0.1966 +0 0.1026 +0 0.1855 +0 0.0970 +0 0.1189 +0 0.0479 +0 0.0395 +0 0.0486 +0 0.1073 +0 0.0634 +0 0.1276 +0 0.1904 +0 0.0869 +0 0.1729 +0 0.0480 +0 0.0722 +0 0.1003 +0 0.0284 +0 0.0668 +0 0.1007 +0 0.1812 +0 0.0913 +0 0.0912 +0 0.0954 +0 0.0315 +0 0.0452 +0 0.0931 +0 0.1689 +0 0.0763 +0 0.1234 +0 0.1418 +0 0.7403 +0 0.4160 +0 0.0689 +0 0.0848 +0 0.3056 +0 0.6060 +0 0.0534 +0 0.4996 +0 0.1035 +0 0.1933 +0 0.0466 +0 0.0749 +0 0.1957 +0 0.0622 +0 0.1682 +0 0.1042 +0 0.0977 +0 0.1144 +0 0.1076 +0 0.0472 +0 0.1701 +0 0.3363 +0 0.0489 +0 0.1429 +0 0.1461 +0 0.1359 +0 0.3197 +0 0.1301 +0 0.0742 +0 0.1044 +0 0.1620 +0 0.4007 +0 0.4179 +0 0.0553 +0 0.1457 +0 0.1763 +0 0.0977 +0 0.2102 +0 0.1642 +0 0.5173 +0 0.5101 +0 0.2630 +0 0.0686 +0 0.0343 +0 0.0523 +0 0.0715 +0 0.0978 +0 0.1954 +0 0.2689 +0 0.1444 +0 0.1089 +0 0.1556 +0 0.0679 +0 0.2525 +0 0.1117 +0 0.0476 +0 0.0626 +0 0.0568 +0 0.0607 +1 0.7697 +0 0.1185 +0 0.0756 +0 0.0541 +0 0.1215 +0 0.0517 +0 0.1810 +0 0.1436 +0 0.0572 +0 0.1658 +0 0.1281 +0 0.3561 +0 0.1328 +0 0.0812 +0 0.1089 +0 0.0746 +0 0.1569 +0 0.0601 +0 0.1612 +0 0.2597 +0 0.0625 +0 0.1694 +0 0.1311 +0 0.1701 +0 0.1542 +0 0.1274 +0 0.0732 +0 0.0600 +0 0.4281 +0 0.1628 +0 0.0394 +0 0.1213 +0 0.0754 +0 0.0876 +0 0.0374 +0 0.0273 +0 0.0354 +0 0.0431 +0 0.1603 +0 0.1023 +0 0.2118 +0 0.0870 +0 0.0607 +0 0.0954 +0 0.0955 +0 0.1447 +0 0.0391 +0 0.1465 +0 0.1577 +0 0.0667 +0 0.1172 +0 0.1144 +0 0.1129 +0 0.0810 +0 0.1888 +0 0.0833 +0 0.0963 +0 0.0694 +0 0.4124 +0 0.0959 +0 0.2068 +0 0.3444 +0 0.0855 +0 0.0805 +0 0.0558 +0 0.1507 +0 0.0495 +0 0.1845 +0 0.2769 +0 0.1369 +0 0.0493 +0 0.0903 +0 0.1274 +0 0.0879 +0 0.1284 +0 0.1044 +0 0.1193 +0 0.1011 +0 0.0862 +0 0.0948 +0 0.3228 +0 0.2963 +0 0.1035 +0 0.0841 +0 0.0584 +0 0.0555 +0 0.0642 +1 0.7761 +0 0.1079 +0 0.1440 +0 0.0338 +0 0.0542 +0 0.0993 +0 0.0571 +0 0.2618 +0 0.1550 +0 0.0692 +0 0.1107 +0 0.0866 +0 0.2350 +0 0.1411 +0 0.1313 +0 0.1197 +0 0.1011 +0 0.0846 +0 0.2326 +0 0.1245 +0 0.0532 +0 0.1973 +0 0.1205 +0 0.0791 +0 0.0823 +0 0.1532 +0 0.0577 +0 0.0592 +0 0.0857 +0 0.0512 +0 0.0654 +0 0.1484 +0 0.0878 +0 0.4507 +0 0.1265 +0 0.1285 +0 0.2463 +1 0.8826 +0 0.1390 +0 0.1419 +0 0.6428 +0 0.1416 +0 0.0864 +0 0.0819 +0 0.1509 +0 0.0836 +0 0.0473 +0 0.1395 +0 0.0837 +0 0.0742 +0 0.1353 +0 0.2872 +0 0.2510 +0 0.0952 +0 0.2203 +0 0.1619 +0 0.0641 +0 0.0685 +0 0.2773 +0 0.0823 +0 0.0610 +0 0.0688 +0 0.0440 +0 0.3986 +0 0.0492 +0 0.0514 +0 0.0712 +0 0.1065 +0 0.2769 +0 0.2392 +0 0.1344 +0 0.0595 +0 0.0975 +0 0.0444 +0 0.0691 +0 0.1414 +0 0.0789 +0 0.0569 +0 0.0783 +0 0.1152 +0 0.3803 +0 0.0699 +0 0.2504 +0 0.1185 +0 0.0709 +0 0.0850 +0 0.2569 +0 0.1157 +0 0.7363 +0 0.0704 +0 0.2514 +0 0.6262 +0 0.0473 +0 0.0757 +0 0.1089 +0 0.1226 +0 0.2702 +0 0.0947 +0 0.2579 +0 0.0572 +0 0.0841 +0 0.1149 +0 0.0662 +0 0.4699 +0 0.0357 +0 0.0637 +0 0.0503 +0 0.0843 +0 0.0730 +0 0.2338 +0 0.1119 +0 0.7433 +1 0.8539 +0 0.2060 +0 0.1167 +0 0.1360 +0 0.1006 +0 0.1225 +0 0.1608 +0 0.1501 +0 0.4720 +0 0.0893 +0 0.2110 +0 0.0843 +0 0.0420 +0 0.1012 +0 0.0697 +0 0.1247 +1 0.7875 +0 0.0714 +0 0.1578 +1 0.8687 +0 0.0546 +0 0.1547 +0 0.0407 +0 0.0724 +0 0.1047 +0 0.0808 +0 0.3533 +0 0.3538 +0 0.1915 +0 0.1548 +0 0.1612 +0 0.0752 +0 0.1388 +0 0.0343 +0 0.0594 +0 0.0599 +0 0.1724 +0 0.0482 +0 0.1317 +0 0.1088 +0 0.1164 +0 0.0627 +1 0.7548 +0 0.1467 +0 0.1426 +0 0.1307 +0 0.0789 +0 0.1769 +0 0.1098 +0 0.0960 +0 0.1028 +0 0.1040 +0 0.1304 +0 0.4172 +0 0.0980 +0 0.0652 +0 0.0495 +0 0.3511 +1 0.8212 +0 0.1087 +0 0.5494 +0 0.1076 +0 0.0790 +0 0.4443 +0 0.1190 +0 0.0809 +0 0.0910 +0 0.0800 +0 0.1387 +0 0.2859 +0 0.0936 +0 0.2716 +0 0.0567 +0 0.0786 +0 0.0485 +0 0.0712 +0 0.1460 +0 0.1135 +0 0.0830 +0 0.1049 +0 0.0560 +0 0.0983 +0 0.1744 +0 0.0510 +0 0.1262 +0 0.0994 +0 0.0700 +0 0.0834 +0 0.3278 +0 0.0778 +0 0.0936 +0 0.2800 +0 0.1002 +0 0.0723 +0 0.1004 +0 0.0902 +0 0.0676 +0 0.1727 +0 0.0684 +0 0.0851 +0 0.0515 +0 0.2471 +0 0.4361 +0 0.1227 +0 0.1140 +0 0.0420 +0 0.0394 +0 0.0991 +0 0.1739 +0 0.1287 +0 0.2353 +0 0.1986 +0 0.1117 +0 0.1195 +0 0.1649 +0 0.3267 +0 0.3401 +0 0.0689 +0 0.2588 +0 0.0775 +0 0.1515 +0 0.1167 +0 0.0495 +0 0.0405 +0 0.3160 +0 0.0596 +0 0.0850 +0 0.1169 +0 0.1057 +0 0.1400 +0 0.1066 +0 0.1804 +0 0.1176 +0 0.0719 +0 0.0582 +0 0.2744 +0 0.0889 +0 0.0506 +0 0.1028 +0 0.1545 +0 0.1384 +0 0.1216 +0 0.0444 +0 0.1837 +0 0.4815 +0 0.0500 +0 0.1599 +0 0.0543 +0 0.0643 +0 0.1050 +0 0.1230 +0 0.1456 +0 0.0761 +0 0.1592 +0 0.0551 +0 0.0821 +0 0.1256 +0 0.1821 +0 0.0899 +0 0.1073 +0 0.1650 +0 0.1829 +0 0.0523 +0 0.1352 +0 0.1146 +0 0.1050 +0 0.0951 +0 0.0714 +0 0.0401 +0 0.0754 +0 0.0734 +0 0.6083 +1 0.8236 +0 0.0880 +0 0.1307 +0 0.1044 +0 0.1501 +0 0.0781 +0 0.6125 +0 0.0632 +0 0.1135 +0 0.0667 +0 0.0671 +0 0.1295 +0 0.1498 +0 0.2031 +0 0.0889 +0 0.3433 +1 0.8143 +0 0.1787 +0 0.1985 +0 0.0840 +0 0.0531 +0 0.0681 +0 0.2651 +0 0.1280 +0 0.0421 +0 0.1144 +0 0.0854 +0 0.0752 +0 0.0745 +0 0.0598 +0 0.0822 +0 0.0729 +0 0.0387 +0 0.1266 +0 0.0687 +0 0.0774 +0 0.0752 +0 0.0690 +0 0.1989 +0 0.0628 +0 0.0708 +0 0.1642 +0 0.0487 +0 0.1405 +0 0.1387 +0 0.2536 +0 0.0832 +0 0.3764 +0 0.0989 +1 0.7919 +0 0.1275 +0 0.0436 +0 0.0553 +0 0.0763 +0 0.0388 +0 0.1842 +0 0.1641 +0 0.1317 +0 0.2388 +0 0.1506 +0 0.1907 +0 0.1624 +0 0.1196 +0 0.1438 +0 0.1134 +0 0.0829 +0 0.0706 +0 0.2142 +0 0.1507 +0 0.2635 +0 0.0820 +0 0.2104 +0 0.1701 +0 0.0686 +0 0.0643 +0 0.1882 +0 0.1283 +0 0.7436 +0 0.0654 +0 0.0894 +0 0.2587 +0 0.0660 +0 0.0617 +0 0.0385 +0 0.2061 +1 0.8448 +0 0.2003 +0 0.1026 +0 0.2884 +0 0.0558 +0 0.0504 +0 0.1196 +0 0.1104 +0 0.0834 +0 0.0957 +0 0.1344 +0 0.1084 +0 0.2196 +0 0.0714 +0 0.1401 +0 0.0537 +0 0.1209 +0 0.2342 +0 0.1279 +0 0.1363 +0 0.0635 +0 0.0814 +0 0.0504 +0 0.4269 +0 0.1254 +0 0.0584 +0 0.0722 +0 0.1790 +0 0.0510 +0 0.1213 +0 0.2543 +0 0.0365 +0 0.1139 +0 0.0504 +0 0.6973 +0 0.1523 +0 0.3391 +0 0.0761 +0 0.2098 +0 0.0553 +0 0.0459 +0 0.2349 +0 0.0480 +0 0.1094 +0 0.1324 +0 0.0988 +0 0.0948 +0 0.3591 +0 0.1439 +0 0.0645 +0 0.0710 +0 0.1652 +0 0.0548 +0 0.0982 +0 0.0884 +0 0.1257 +0 0.0986 +0 0.0726 +0 0.0423 +0 0.1420 +0 0.0562 +0 0.1042 +0 0.0931 +0 0.0694 +0 0.1489 +0 0.2206 +0 0.2086 +0 0.0650 +0 0.0667 +0 0.1323 +0 0.1007 +0 0.0846 +0 0.1100 +0 0.3066 +0 0.0555 +0 0.0654 +0 0.0757 +0 0.2331 +0 0.0906 +0 0.1547 +0 0.0792 +0 0.4126 +0 0.2834 +0 0.0841 +0 0.0631 +0 0.1201 +0 0.2151 +0 0.1132 +0 0.0670 +0 0.7299 +0 0.2669 +0 0.0711 +0 0.1283 +0 0.0747 +0 0.1143 +1 0.8294 +0 0.0729 +0 0.0613 +0 0.1008 +0 0.0725 +0 0.1125 +0 0.1350 +0 0.6805 +0 0.1378 +0 0.0756 +0 0.0746 +0 0.0630 +0 0.0703 +0 0.0610 +0 0.2635 +0 0.1542 +0 0.1217 +0 0.0695 +0 0.0289 +0 0.0765 +0 0.1205 +0 0.0563 +0 0.2362 +0 0.1084 +0 0.2486 +0 0.2770 +0 0.2425 +0 0.1281 +0 0.1314 +0 0.1082 +0 0.2867 +0 0.0807 +0 0.1043 +0 0.0969 +0 0.0570 +0 0.1945 +0 0.0710 +0 0.0807 +0 0.3013 +0 0.1345 +0 0.0551 +0 0.0694 +0 0.5771 +0 0.3492 +0 0.0809 +0 0.1193 +0 0.0916 +0 0.0880 +0 0.0575 +0 0.0688 +0 0.0477 +0 0.2362 +0 0.0424 +0 0.0981 +0 0.1176 +0 0.1150 +0 0.1057 +0 0.1536 +0 0.0678 +0 0.0682 +0 0.1332 +0 0.0523 +0 0.0732 +0 0.0615 +0 0.0571 +0 0.1326 +0 0.0626 +0 0.1295 +0 0.0823 +0 0.0582 +0 0.0573 +0 0.1335 +0 0.1917 +0 0.3230 +0 0.0411 +0 0.1580 +0 0.0310 +0 0.1044 +0 0.1091 +0 0.0531 +0 0.1333 +0 0.1166 +0 0.1502 +0 0.1828 +0 0.1767 +0 0.2706 +0 0.0977 +0 0.1240 +0 0.2214 +0 0.3745 +0 0.2171 +0 0.0710 +0 0.0391 +0 0.0863 +0 0.0664 +0 0.1243 +0 0.2845 +0 0.0605 +0 0.1409 +0 0.1834 +0 0.1773 +0 0.1142 +0 0.2119 +0 0.0608 +0 0.2746 +0 0.2257 +0 0.3106 +0 0.1680 +0 0.1464 +0 0.1061 +0 0.0384 +0 0.2024 +0 0.1049 +0 0.0328 +0 0.1227 +0 0.0717 +0 0.1614 +0 0.0721 +0 0.2490 +0 0.0404 +0 0.0968 +0 0.0999 +0 0.1246 +0 0.0674 +0 0.0550 +0 0.5260 +0 0.0724 +0 0.1009 +0 0.0717 +0 0.0936 +0 0.1217 +0 0.0731 +0 0.0495 +0 0.0524 +0 0.0752 +0 0.1560 +0 0.2030 +0 0.0824 +0 0.0655 +0 0.0498 +0 0.1011 +0 0.1209 +0 0.0850 +0 0.0695 +0 0.0680 +0 0.1146 +0 0.1530 +0 0.2042 +0 0.0879 +0 0.0468 +0 0.1255 +0 0.0770 +0 0.2226 +0 0.2563 +0 0.2585 +0 0.0871 +0 0.0735 +0 0.0777 +0 0.0668 +0 0.0723 +0 0.0740 +0 0.1096 +0 0.1569 +0 0.2000 +1 0.7865 +0 0.1368 +0 0.2049 +0 0.2619 +0 0.0476 +0 0.4407 +0 0.0365 +0 0.0744 +1 0.8043 +0 0.0751 +0 0.0796 +0 0.0945 +0 0.1367 +0 0.1415 +0 0.1170 +0 0.1863 +0 0.2962 +0 0.3012 +0 0.2669 +0 0.0797 +0 0.0681 +0 0.0385 +0 0.1649 +0 0.4375 +0 0.4241 +0 0.0946 +0 0.1220 +0 0.0674 +0 0.1466 +0 0.0607 +0 0.0591 +0 0.0658 +0 0.0960 +0 0.1832 +0 0.1207 +0 0.1116 +0 0.0676 +0 0.0534 +0 0.0802 +0 0.0497 +0 0.1605 +0 0.0851 +0 0.2584 +0 0.0382 +0 0.0971 +1 0.7826 +0 0.1918 +0 0.5062 +0 0.1497 +0 0.0701 +0 0.0894 +0 0.2854 +0 0.1753 +0 0.1351 +0 0.1401 +0 0.1600 +0 0.1624 +0 0.2792 +0 0.0406 +0 0.0844 +0 0.1271 +0 0.1082 +0 0.0737 +0 0.2009 +0 0.1432 +0 0.0997 +0 0.0472 +0 0.2299 +0 0.1940 +0 0.1913 +0 0.0621 +0 0.2801 +0 0.2754 +0 0.1053 +0 0.3808 +0 0.2119 +0 0.1255 +0 0.0629 +0 0.0602 +0 0.1059 +0 0.1286 +0 0.0599 +0 0.1499 +0 0.0565 +0 0.2809 +0 0.1084 +0 0.1158 +0 0.1334 +0 0.1173 +0 0.1871 +0 0.1509 +0 0.0892 +0 0.1224 +1 0.7917 +0 0.1869 +0 0.3807 +0 0.1339 +0 0.5775 +0 0.0822 +0 0.0999 +0 0.1040 +0 0.1235 +0 0.0511 +0 0.0647 +0 0.4399 +0 0.0847 +0 0.1547 +0 0.0794 +0 0.2396 +0 0.1333 +0 0.1465 +0 0.2211 +0 0.0817 +0 0.6925 +0 0.2248 +0 0.0801 +0 0.0699 +0 0.1800 +0 0.2501 +0 0.1777 +0 0.2084 +1 0.8010 +0 0.1793 +0 0.1984 +0 0.2853 +0 0.1039 +0 0.0504 +0 0.4400 +0 0.7128 +0 0.0740 +0 0.1047 +0 0.1548 +0 0.1685 +0 0.1623 +0 0.0626 +0 0.2550 +0 0.0797 +0 0.1284 +0 0.1387 +0 0.0391 +0 0.1547 +0 0.1906 +0 0.2812 +0 0.0422 +0 0.1456 +0 0.0493 +0 0.1476 +0 0.2506 +0 0.0467 +0 0.1177 +0 0.3639 +0 0.3070 +0 0.0990 +0 0.0891 +0 0.0755 +0 0.2159 +0 0.1055 +0 0.1509 +0 0.1019 +0 0.2049 +0 0.2133 +0 0.0921 +0 0.1950 +0 0.2433 +0 0.1473 +0 0.0419 +0 0.1021 +0 0.4428 +0 0.1567 +0 0.0329 +0 0.0892 +0 0.0594 +0 0.0613 +0 0.1596 +0 0.1867 +0 0.1198 +0 0.1194 +0 0.1858 +0 0.1222 +0 0.1251 +0 0.1558 +0 0.0932 +0 0.1378 +0 0.1241 +0 0.1169 +0 0.0967 +0 0.0576 +0 0.2161 +0 0.0720 +0 0.1763 +0 0.1837 +0 0.1639 +0 0.2796 +0 0.0666 +0 0.0850 +0 0.0653 +0 0.0633 +0 0.2152 +0 0.0637 +0 0.0778 +0 0.2000 +0 0.1526 +0 0.2093 +0 0.1370 +0 0.0761 +0 0.2274 +0 0.0765 +0 0.0696 +0 0.2697 +0 0.0504 +0 0.0490 +0 0.0662 +0 0.0620 +0 0.0340 +0 0.1249 +0 0.3955 +0 0.0847 +0 0.0567 +0 0.4871 +0 0.0764 +0 0.0516 +0 0.0481 +0 0.0993 +0 0.1779 +0 0.5194 +0 0.2684 +0 0.1331 +0 0.1776 +0 0.0498 +0 0.2295 +0 0.0513 +0 0.1138 +0 0.1081 +0 0.1304 +0 0.0510 +0 0.0810 +0 0.0541 +0 0.1151 +0 0.0935 +0 0.0554 +0 0.1578 +0 0.1233 +0 0.0523 +0 0.1222 +0 0.0532 +0 0.1147 +0 0.2041 +0 0.7315 +0 0.2344 +0 0.1482 +0 0.0818 +0 0.1673 +0 0.0588 +0 0.1787 +0 0.0711 +0 0.0854 +0 0.1587 +0 0.1047 +0 0.1419 +0 0.1221 +1 0.7910 +0 0.1074 +0 0.0988 +0 0.0585 +0 0.1058 +0 0.0619 +0 0.0890 +0 0.1079 +0 0.2005 +0 0.2199 +0 0.0384 +0 0.0620 +0 0.3172 +0 0.0863 +0 0.0891 +0 0.2188 +0 0.0872 +1 0.8709 +0 0.0762 +0 0.2235 +0 0.1096 +0 0.0747 +0 0.0413 +0 0.3117 +0 0.0594 +0 0.2170 +0 0.1389 +0 0.0988 +0 0.1513 +0 0.0803 +0 0.0495 +0 0.0591 +0 0.0479 +0 0.7500 +0 0.0340 +0 0.4713 +0 0.1825 +0 0.0503 +0 0.0643 +0 0.2802 +0 0.0451 +0 0.0894 +0 0.1513 +0 0.1586 +0 0.6922 +0 0.1120 +0 0.0487 +0 0.0773 +0 0.1319 +0 0.0822 +0 0.0709 +0 0.1215 +0 0.2051 +0 0.0697 +1 0.7759 +0 0.0686 +0 0.1291 +0 0.0779 +0 0.1370 +0 0.0835 +0 0.0820 +0 0.0331 +0 0.2070 +0 0.5436 +0 0.2494 +0 0.1496 +0 0.0990 +0 0.1362 +0 0.1079 +0 0.0821 +0 0.1030 +0 0.0445 +0 0.1499 +0 0.0845 +0 0.2653 +0 0.0809 +0 0.0674 +0 0.2001 +0 0.3124 +0 0.0643 +0 0.1186 +0 0.0972 +0 0.1771 +0 0.1234 +0 0.4561 +0 0.1076 +0 0.3564 +0 0.2067 +0 0.1872 +0 0.1334 +0 0.1363 +0 0.1549 +0 0.1144 +0 0.0589 +0 0.1010 +0 0.1428 +0 0.1190 +0 0.2011 +0 0.1016 +1 0.8295 +0 0.1776 +0 0.1420 +0 0.0730 +0 0.0909 +0 0.1196 +0 0.0455 +0 0.7086 +0 0.4115 +0 0.0609 +0 0.1319 +0 0.2504 +0 0.0627 +0 0.0664 +0 0.1296 +0 0.1122 +0 0.3658 +0 0.0432 +0 0.2358 +0 0.1084 +0 0.7013 +0 0.2235 +0 0.1093 +0 0.1309 +0 0.0774 +0 0.1323 +0 0.0503 +0 0.3293 +0 0.2914 +0 0.1482 +0 0.0871 +0 0.1250 +0 0.1611 +0 0.1210 +0 0.0640 +0 0.0557 +0 0.1725 +0 0.0987 +0 0.0807 +0 0.0925 +0 0.3512 +0 0.0569 +0 0.0522 +0 0.0884 +0 0.3511 +0 0.1036 +0 0.0882 +0 0.1783 +0 0.0449 +0 0.0423 +0 0.3142 +0 0.0871 +0 0.0738 +0 0.2074 +0 0.1985 +0 0.2014 +0 0.2658 +0 0.0883 +0 0.2736 +0 0.0677 +0 0.0820 +0 0.0497 +0 0.1361 +0 0.1066 +0 0.2747 +0 0.1056 +0 0.1283 +0 0.0747 +0 0.5815 +0 0.0547 +0 0.0493 +0 0.0374 +0 0.0844 +0 0.1191 +0 0.0776 +0 0.0725 +0 0.2761 +0 0.1248 +0 0.1727 +0 0.0598 +0 0.2512 +0 0.1022 +0 0.1389 +0 0.0630 +0 0.4583 +0 0.2322 +0 0.1734 +0 0.1284 +0 0.1178 +0 0.1267 +0 0.0975 +0 0.0870 +0 0.7128 +0 0.0587 +0 0.1004 +0 0.4603 +0 0.2238 +0 0.0647 +0 0.0814 +0 0.0589 +0 0.1143 +0 0.2260 +0 0.0979 +0 0.2911 +0 0.0678 +0 0.2292 +0 0.0727 +0 0.1138 +0 0.1608 +0 0.2555 +0 0.1002 +0 0.0449 +0 0.1963 +0 0.0864 +0 0.4424 +0 0.1278 +0 0.1288 +0 0.1033 +0 0.0566 +0 0.1249 +0 0.1279 +0 0.0508 +0 0.1023 +0 0.1547 +0 0.2157 +0 0.1365 +0 0.0607 +0 0.0882 +0 0.0582 +0 0.1664 +0 0.1170 +0 0.1053 +0 0.0901 +0 0.1302 +0 0.1270 +0 0.1340 +0 0.0907 +0 0.1296 +0 0.1181 +0 0.0650 +0 0.0885 +0 0.2315 +0 0.1120 +0 0.0973 +0 0.1189 +0 0.2969 +0 0.2315 +0 0.2455 +0 0.2713 +0 0.5894 +0 0.0747 +0 0.0285 +0 0.0951 +0 0.4780 +0 0.0878 +0 0.1346 +0 0.2842 +0 0.2080 +0 0.1217 +0 0.0520 +0 0.0588 +0 0.0474 +0 0.1872 +0 0.1196 +0 0.1410 +0 0.1744 +0 0.0891 +0 0.0733 +0 0.1109 +0 0.0745 +0 0.0621 +0 0.2308 +0 0.1539 +0 0.4283 +0 0.0885 +0 0.0761 +0 0.1317 +0 0.1332 +0 0.1308 +0 0.0793 +0 0.0555 +0 0.0323 +0 0.0791 +0 0.1052 +0 0.1237 +0 0.0580 +0 0.1646 +0 0.7015 +0 0.2891 +0 0.1004 +0 0.1048 +0 0.1621 +0 0.2859 +0 0.5418 +0 0.1048 +0 0.0820 +0 0.7201 +0 0.1505 +0 0.0997 +0 0.3073 +0 0.0430 +0 0.1725 +0 0.0611 +0 0.1100 +0 0.2189 +0 0.0761 +0 0.0817 +0 0.0781 +0 0.1294 +0 0.0943 +0 0.0761 +0 0.3082 +0 0.4168 +0 0.3209 +0 0.0731 +0 0.1623 +0 0.0782 +0 0.0694 +0 0.0864 +0 0.1606 +0 0.1699 +0 0.1107 +0 0.0669 +0 0.3240 +0 0.0761 +0 0.1982 +0 0.2169 +0 0.0771 +0 0.1092 +0 0.0793 +0 0.0793 +0 0.0459 +0 0.0470 +0 0.1305 +0 0.0941 +0 0.0599 +0 0.1275 +0 0.1152 +0 0.0824 +0 0.1446 +0 0.0767 +0 0.0757 +0 0.0918 +0 0.1553 +0 0.0870 +0 0.1116 +0 0.1082 +0 0.1109 +0 0.1390 +0 0.0461 +0 0.0879 +0 0.0642 +0 0.4094 +0 0.0945 +0 0.0756 +0 0.1367 +0 0.1013 +0 0.1090 +0 0.1491 +0 0.1751 +0 0.1801 +0 0.0910 +0 0.0689 +0 0.0878 +0 0.1010 +0 0.0846 +1 0.7786 +0 0.3080 +0 0.0378 +0 0.0948 +0 0.2218 +0 0.1804 +0 0.1241 +0 0.0874 +0 0.1244 +0 0.0982 +0 0.1017 +1 0.8347 +0 0.0622 +0 0.1108 +0 0.0686 +0 0.0630 +0 0.0415 +0 0.1073 +0 0.1440 +0 0.0596 +0 0.2334 +0 0.0890 +0 0.0791 +0 0.0657 +0 0.0555 +0 0.0511 +0 0.0562 +0 0.0798 +0 0.1500 +0 0.1123 +0 0.2026 +0 0.3613 +0 0.0948 +0 0.1035 +0 0.6990 +0 0.0905 +0 0.2037 +0 0.0689 +0 0.0493 +0 0.1232 +0 0.0786 +0 0.5788 +0 0.1121 +0 0.0462 +0 0.0995 +0 0.1532 +0 0.0679 +0 0.0829 +0 0.1876 +0 0.1000 +0 0.0865 +0 0.1667 +0 0.0769 +0 0.1090 +0 0.0597 +0 0.0720 +0 0.0699 +0 0.0935 +0 0.1388 +0 0.0724 +0 0.3023 +1 0.8020 +0 0.3547 +0 0.0742 +0 0.0531 +0 0.1451 +0 0.1197 +0 0.1894 +0 0.3185 +0 0.1760 +0 0.1011 +0 0.4691 +0 0.0810 +0 0.1112 +0 0.1082 +0 0.0627 +0 0.0606 +0 0.0887 +0 0.0989 +0 0.3762 +0 0.0901 +0 0.1492 +0 0.1630 +0 0.0873 +0 0.5669 +0 0.1644 +0 0.1349 +0 0.0702 +0 0.1188 +0 0.1101 +0 0.0956 +0 0.1111 +0 0.3183 +0 0.0676 +0 0.1149 +0 0.0671 +0 0.0661 +0 0.1008 +0 0.1777 +0 0.1249 +0 0.0795 +0 0.0539 +0 0.0883 +0 0.1393 +0 0.2505 +0 0.0425 +0 0.0505 +0 0.0338 +0 0.0961 +0 0.0780 +0 0.2332 +0 0.0734 +0 0.0705 +0 0.1394 +0 0.1033 +0 0.0895 +0 0.0986 +0 0.0977 +0 0.1865 +0 0.0922 +0 0.1023 +0 0.0777 +0 0.0800 +0 0.1192 +0 0.1275 +0 0.0802 +0 0.1357 +0 0.3202 +0 0.2116 +0 0.0501 +0 0.0789 +0 0.1505 +0 0.0564 +0 0.1492 +0 0.0906 +0 0.1032 +0 0.1870 +0 0.1015 +0 0.2023 +0 0.0874 +0 0.0564 +0 0.0667 +0 0.1326 +0 0.1970 +0 0.2977 +0 0.0494 +0 0.1164 +0 0.1255 +0 0.1584 +0 0.0526 +0 0.6111 +0 0.0978 +0 0.1156 +0 0.1306 +0 0.0535 +0 0.0894 +0 0.1970 +0 0.0628 +0 0.1388 +0 0.1102 +0 0.3042 +0 0.2165 +0 0.0559 +0 0.0753 +0 0.0514 +0 0.2968 +0 0.5233 +0 0.7470 +0 0.2219 +0 0.0673 +0 0.0590 +0 0.0994 +0 0.0895 +0 0.0665 +0 0.1002 +0 0.0348 +0 0.0675 +0 0.0747 +0 0.0603 +0 0.2191 +0 0.2608 +0 0.0909 +0 0.0559 +0 0.1999 +1 0.8074 +0 0.0638 +0 0.0453 +0 0.0896 +0 0.2759 +0 0.0641 +0 0.6842 +0 0.3564 +0 0.0848 +0 0.1185 +0 0.0903 +0 0.0949 +0 0.1258 +0 0.0453 +0 0.0798 +0 0.1124 +0 0.7386 +0 0.0503 +0 0.0646 +0 0.1445 +0 0.1340 +0 0.1463 +0 0.1094 +0 0.0622 +0 0.1869 +0 0.4811 +0 0.2361 +0 0.0508 +0 0.1405 +0 0.2504 +0 0.1572 +0 0.0985 +0 0.0777 +0 0.0764 +0 0.1004 +0 0.0531 +0 0.0934 +0 0.0875 +0 0.0591 +0 0.6688 +0 0.2646 +0 0.6763 +0 0.1356 +0 0.2378 +0 0.2054 +0 0.1294 +0 0.1080 +0 0.0865 +0 0.0706 +0 0.0924 +0 0.0592 +0 0.0921 +0 0.1104 +0 0.3009 +0 0.2288 +0 0.1225 +0 0.0590 +0 0.0992 +0 0.0613 +0 0.1548 +0 0.1060 +0 0.0539 +0 0.0615 +0 0.0956 +0 0.1341 +0 0.1418 +0 0.0659 +0 0.3738 +0 0.1273 +0 0.1086 +0 0.2804 +0 0.1257 +0 0.0897 +0 0.0480 +0 0.0340 +0 0.5428 +0 0.1649 +0 0.1508 +0 0.0973 +0 0.0392 +0 0.0910 +0 0.0959 +0 0.1440 +0 0.0883 +0 0.1192 +0 0.1610 +0 0.1491 +0 0.1429 +0 0.3685 +0 0.1007 +0 0.1510 +0 0.1111 +0 0.0656 +0 0.0620 +0 0.1757 +0 0.1801 +0 0.2848 +0 0.1694 +0 0.1160 +0 0.1039 +0 0.1049 +0 0.1543 +0 0.1179 +0 0.1994 +0 0.1396 +0 0.0709 +0 0.1352 +0 0.0755 +0 0.0781 +0 0.0675 +0 0.1220 +0 0.1165 +0 0.0458 +0 0.2001 +0 0.1078 +0 0.0606 +0 0.1608 +0 0.3070 +0 0.1649 +0 0.1195 +0 0.7432 +0 0.0629 +0 0.2324 +0 0.0748 +0 0.1461 +0 0.0846 +0 0.0743 +0 0.1083 +0 0.1749 +0 0.0445 +0 0.2145 +0 0.1319 +0 0.1566 +0 0.0532 +0 0.0989 +0 0.0834 +0 0.0676 +0 0.2388 +0 0.0926 +0 0.1801 +0 0.0808 +0 0.1094 +0 0.1813 +0 0.1465 +1 0.8895 +0 0.5219 +0 0.7127 +0 0.2593 +0 0.0625 +0 0.0923 +0 0.1131 +0 0.1902 +0 0.4182 +0 0.2252 +0 0.0500 +0 0.0725 +0 0.0749 +0 0.1182 +0 0.1110 +0 0.2487 +0 0.1490 +0 0.0650 +0 0.1651 +0 0.6343 +0 0.4091 +0 0.0874 +0 0.7100 +0 0.0771 +0 0.0522 +0 0.2941 +0 0.1865 +0 0.0426 +0 0.0642 +0 0.0873 +0 0.0508 +0 0.0753 +0 0.0401 +0 0.1116 +0 0.0665 +0 0.0705 +0 0.0746 +0 0.2356 +0 0.0433 +0 0.0334 +0 0.1345 +0 0.1444 +0 0.0577 +0 0.1159 +0 0.0853 +0 0.5695 +0 0.0744 +0 0.1637 +0 0.4192 +0 0.0711 +0 0.0865 +0 0.1331 +0 0.1739 +0 0.0899 +0 0.5715 +0 0.1184 +0 0.1699 +0 0.0631 +0 0.2263 +0 0.0975 +0 0.0949 +0 0.0852 +0 0.0811 +0 0.1604 +0 0.1232 +0 0.4998 +0 0.0434 +0 0.0711 +0 0.1216 +0 0.0510 +0 0.1890 +0 0.1460 +0 0.0989 +0 0.0843 +0 0.3877 +0 0.1186 +0 0.1044 +0 0.0403 +0 0.0891 +0 0.0796 +0 0.0736 +0 0.5856 +0 0.0669 +1 0.8395 +0 0.3744 +0 0.0650 +0 0.0333 +0 0.0759 +0 0.1112 +0 0.0820 +0 0.1263 +0 0.0908 +0 0.0804 +0 0.1145 +0 0.0673 +0 0.0817 +0 0.0879 +0 0.0839 +0 0.1276 +0 0.7171 +0 0.0786 +0 0.1518 +0 0.0520 +0 0.0792 +0 0.0706 +0 0.0521 +0 0.0786 +0 0.1747 +0 0.0677 +0 0.1592 +0 0.1152 +0 0.2260 +0 0.0957 +0 0.0604 +0 0.1070 +0 0.1182 +0 0.1718 +0 0.2276 +0 0.2159 +0 0.1264 +0 0.1035 +0 0.1114 +0 0.0546 +0 0.0783 +0 0.1640 +0 0.0498 +0 0.0751 +0 0.0583 +0 0.2717 +0 0.1600 +0 0.1097 +0 0.0577 +0 0.1471 +0 0.1650 +0 0.0552 +0 0.0679 +0 0.0688 +0 0.0965 +0 0.1256 +0 0.1168 +0 0.2179 +0 0.1256 +0 0.0916 +0 0.0699 +0 0.2260 +0 0.1226 +0 0.0582 +0 0.1493 +0 0.0821 +0 0.0340 +0 0.5385 +0 0.1213 +0 0.3180 +0 0.1000 +0 0.1352 +0 0.1084 +0 0.2488 +0 0.1485 +0 0.1106 +0 0.1943 +0 0.1400 +0 0.1832 +0 0.1018 +0 0.0834 +0 0.0712 +0 0.0633 +0 0.3275 +0 0.0943 +0 0.0494 +0 0.1417 +0 0.1079 +0 0.0934 +0 0.0858 +0 0.1185 +0 0.1285 +0 0.1211 +0 0.1695 +0 0.0547 +0 0.0665 +0 0.1760 +0 0.1324 +0 0.1537 +0 0.1936 +0 0.0923 +0 0.2309 +0 0.0476 +0 0.0436 +0 0.1822 +0 0.1717 +0 0.0552 +0 0.0835 +0 0.0520 +0 0.0778 +0 0.5342 +0 0.4887 +0 0.0594 +0 0.1511 +0 0.0763 +0 0.0377 +0 0.0560 +0 0.0669 +0 0.1082 +0 0.0566 +0 0.0382 +0 0.2308 +0 0.1070 +0 0.0811 +0 0.0457 +0 0.0999 +0 0.0767 +0 0.1571 +0 0.0890 +0 0.1758 +0 0.1336 +0 0.1371 +0 0.2630 +0 0.1287 +0 0.1096 +0 0.0669 +0 0.1051 +0 0.1959 +0 0.0730 +0 0.1665 +0 0.1111 +0 0.0738 +0 0.2622 +0 0.0757 +0 0.1777 +0 0.2847 +0 0.3449 +0 0.0470 +0 0.1241 +1 0.8667 +0 0.0435 +0 0.1672 +0 0.1055 +0 0.0782 +0 0.1300 +0 0.0899 +0 0.1341 +0 0.0770 +0 0.1148 +0 0.1021 +0 0.2412 +1 0.8127 +0 0.1066 +0 0.2428 +0 0.0713 +0 0.0914 +0 0.0697 +0 0.1127 +0 0.1610 +0 0.0986 +0 0.0562 +0 0.0868 +0 0.1567 +0 0.1163 +0 0.2672 +0 0.0942 +0 0.3333 +0 0.0845 +0 0.1292 +0 0.1655 +0 0.3390 +0 0.0931 +0 0.0940 +0 0.1973 +0 0.1287 +0 0.0727 +0 0.1363 +0 0.0644 +0 0.0433 +1 0.2929 +0 0.3046 +0 0.1625 +0 0.1022 +0 0.1479 +0 0.0607 +0 0.0377 +0 0.0588 +0 0.0943 +0 0.0525 +0 0.1857 +0 0.1420 +0 0.0739 +0 0.0596 +0 0.1331 +0 0.0763 +0 0.0789 +0 0.1712 +0 0.1417 +0 0.0886 +0 0.1147 +0 0.2946 +0 0.1034 +0 0.0879 +1 0.8564 +0 0.0482 +0 0.0864 +0 0.0704 +0 0.0658 +0 0.0608 +0 0.1578 +0 0.0528 +0 0.1767 +0 0.1548 +0 0.0924 +0 0.0608 +1 0.8091 +0 0.2294 +0 0.1676 +0 0.1054 +0 0.2011 +0 0.1113 +0 0.1135 +0 0.0922 +0 0.1783 +0 0.1890 +0 0.2022 +0 0.1010 +0 0.0669 +0 0.0809 +0 0.0534 +0 0.0819 +0 0.1223 +0 0.1474 +0 0.0457 +0 0.1356 +0 0.1209 +0 0.1303 +0 0.0934 +0 0.1247 +0 0.0767 +0 0.2329 +0 0.1092 +0 0.0969 +0 0.0882 +0 0.3516 +0 0.0892 +0 0.0336 +0 0.0893 +0 0.0588 +0 0.0646 +0 0.0325 +0 0.0492 +0 0.1634 +0 0.1067 +0 0.0897 +0 0.0357 +0 0.1973 +0 0.0892 +0 0.0937 +0 0.1077 +0 0.1367 +0 0.1121 +0 0.0622 +0 0.0939 +0 0.0506 +0 0.0753 +0 0.0915 +0 0.0691 +0 0.1793 +0 0.0455 +0 0.1199 +0 0.0895 +0 0.0563 +0 0.1530 +0 0.1173 +0 0.0537 +0 0.0748 +0 0.1005 +0 0.4720 +0 0.0542 +0 0.1193 +0 0.0638 +0 0.1446 +0 0.1586 +0 0.0816 +0 0.1522 +0 0.0989 +0 0.1162 +0 0.1295 +0 0.4420 +0 0.0472 +0 0.0543 +0 0.0742 +0 0.0612 +0 0.0547 +0 0.0519 +0 0.0522 +0 0.3777 +0 0.1016 +0 0.1799 +0 0.1971 +0 0.0752 +0 0.2738 +0 0.0765 +0 0.3066 +0 0.0615 +0 0.1677 +0 0.6301 +0 0.0753 +0 0.1643 +0 0.1780 +0 0.1200 +0 0.0527 +0 0.0782 +0 0.0692 +0 0.0825 +0 0.0720 +0 0.2415 +0 0.0643 +0 0.1918 +0 0.1154 +0 0.0457 +0 0.0648 +0 0.1022 +0 0.0763 +0 0.0468 +0 0.0634 +0 0.3822 +0 0.1578 +0 0.1462 +0 0.1443 +1 0.8033 +0 0.0875 +0 0.1548 +0 0.0522 +0 0.2205 +0 0.2803 +0 0.1662 +0 0.0820 +0 0.1173 +0 0.3435 +0 0.1850 +0 0.1015 +0 0.0653 +0 0.1320 +0 0.2322 +0 0.1711 +0 0.1191 +0 0.5302 +0 0.0640 +0 0.0735 +0 0.1994 +0 0.1985 +0 0.0906 +0 0.0769 +0 0.0354 +0 0.2641 +0 0.1842 +0 0.0876 +0 0.1337 +0 0.0471 +0 0.0917 +0 0.0622 +0 0.1423 +0 0.1215 +0 0.1643 +0 0.1267 +0 0.1678 +0 0.1774 +0 0.2178 +0 0.1265 +0 0.4478 +0 0.5986 +0 0.1150 +0 0.1458 +0 0.0854 +0 0.4206 +0 0.1371 +0 0.0511 +0 0.1935 +0 0.0504 +0 0.0944 +0 0.1629 +0 0.1608 +0 0.0983 +0 0.1537 +0 0.1139 +0 0.4310 +0 0.1163 +0 0.3379 +0 0.0823 +0 0.0700 +0 0.0685 +0 0.0816 +0 0.2426 +0 0.0458 +0 0.3020 +0 0.0809 +0 0.3720 +0 0.0546 +0 0.1620 +0 0.0760 +0 0.0766 +0 0.2374 +0 0.0965 +0 0.0775 +0 0.3642 +0 0.0942 +0 0.3646 +0 0.2252 +0 0.0781 +0 0.1480 +0 0.0843 +0 0.0998 +0 0.0612 +0 0.1067 +0 0.1051 +0 0.1596 +0 0.0504 +0 0.0709 +0 0.0813 +0 0.1748 +0 0.1006 +0 0.1318 +0 0.0743 +0 0.4493 +0 0.1270 +0 0.0487 +0 0.0762 +0 0.0430 +0 0.1194 +0 0.0540 +0 0.0683 +0 0.1710 +0 0.0661 +0 0.0657 +0 0.0945 +0 0.1004 +0 0.0772 +0 0.0855 +0 0.2251 +0 0.0575 +0 0.0714 +0 0.0560 +0 0.1456 +0 0.0808 +0 0.2006 +0 0.6712 +0 0.0968 +0 0.0346 +0 0.1096 +0 0.1827 +0 0.0763 +0 0.1402 +0 0.0658 +0 0.3952 +0 0.1642 +0 0.2379 +0 0.1075 +0 0.0586 +0 0.0621 +0 0.0523 +0 0.1741 +0 0.0975 +0 0.0496 +0 0.3703 +0 0.1043 +0 0.0778 +0 0.0445 +0 0.1039 +0 0.0525 +0 0.0777 +0 0.2307 +0 0.1305 +0 0.2331 +0 0.3010 +0 0.0720 +0 0.1065 +0 0.0716 +0 0.1169 +0 0.1129 +0 0.2627 +0 0.1012 +0 0.1519 +0 0.1382 +0 0.1519 +0 0.1307 +0 0.2182 +0 0.1061 +0 0.2804 +0 0.2096 +0 0.1675 +0 0.1704 +0 0.1531 +0 0.0922 +0 0.2173 +0 0.1030 +0 0.1436 +0 0.1626 +0 0.3439 +0 0.0603 +0 0.1251 +0 0.2037 +0 0.4858 +0 0.0650 +0 0.0572 +0 0.0767 +0 0.1102 +0 0.0811 +0 0.1007 +0 0.1633 +0 0.0487 +0 0.2231 +0 0.0773 +0 0.0593 +0 0.1033 +0 0.0837 +0 0.0846 +0 0.0568 +0 0.0540 +0 0.0744 +0 0.0919 +0 0.0397 +0 0.2432 +0 0.0945 +0 0.0840 +0 0.0716 +0 0.2587 +0 0.1169 +0 0.0587 +0 0.1820 +0 0.4773 +0 0.2431 +0 0.0745 +0 0.0509 +0 0.2692 +0 0.1266 +0 0.0846 +0 0.0441 +0 0.3013 +0 0.5385 +0 0.0792 +0 0.1223 +0 0.0787 +0 0.0478 +0 0.1505 +0 0.3333 +0 0.1129 +0 0.0959 +0 0.2295 +0 0.0676 +0 0.3271 +0 0.0662 +0 0.0717 +0 0.0834 +0 0.0771 +0 0.0714 +0 0.2489 +0 0.0741 +0 0.1557 +0 0.1160 +0 0.0970 +0 0.0751 +0 0.0813 +0 0.1303 +0 0.0274 +0 0.1544 +0 0.1482 +0 0.0751 +0 0.1024 +0 0.2522 +0 0.0649 +0 0.0449 +0 0.4196 +0 0.1032 +0 0.1021 +0 0.1918 +0 0.1606 +0 0.0773 +0 0.0888 +0 0.1049 +0 0.0876 +0 0.1091 +0 0.0610 +0 0.2553 +0 0.1139 +0 0.1299 +0 0.2919 +0 0.0839 +0 0.0711 +1 0.7953 +0 0.0914 +0 0.0795 +1 0.8574 +0 0.3897 +0 0.3289 +0 0.0681 +0 0.1855 +0 0.1663 +0 0.0858 +0 0.1378 +0 0.0516 +0 0.1205 +0 0.0421 +0 0.6104 +0 0.1064 +0 0.0665 +0 0.0720 +0 0.0484 +0 0.0490 +0 0.1141 +0 0.1049 +0 0.1490 +0 0.0676 +0 0.0683 +0 0.0733 +0 0.0419 +0 0.1275 +0 0.0686 +0 0.1082 +0 0.1127 +0 0.0864 +0 0.0709 +0 0.0581 +0 0.1777 +0 0.0824 +0 0.0811 +0 0.0446 +0 0.2182 +0 0.0368 +0 0.0893 +0 0.2135 +0 0.0635 +0 0.0819 +0 0.0823 +0 0.2557 +0 0.0761 +0 0.0635 +0 0.1242 +0 0.1085 +0 0.0633 +0 0.4316 +0 0.7133 +0 0.2231 +1 0.7661 +0 0.2256 +0 0.2580 +0 0.0764 +0 0.1653 +0 0.1382 +0 0.2820 +0 0.0991 +0 0.0419 +0 0.0687 +0 0.3477 +0 0.1990 +0 0.1279 +0 0.1224 +0 0.1390 +0 0.0455 +0 0.2221 +0 0.0817 +0 0.1935 +0 0.0280 +0 0.1425 +0 0.0986 +0 0.0743 +0 0.0357 +0 0.0808 +0 0.1482 +0 0.0974 +0 0.0511 +0 0.0963 +0 0.1018 +0 0.2506 +0 0.6221 +0 0.2215 +0 0.1044 +0 0.2891 +0 0.1133 +0 0.2203 +0 0.2177 +0 0.1263 +0 0.1298 +0 0.0917 +0 0.0527 +0 0.1082 +0 0.0642 +0 0.0702 +0 0.1171 +0 0.0325 +0 0.1725 +0 0.0770 +0 0.0861 +0 0.1009 +0 0.1301 +0 0.1842 +0 0.1433 +0 0.5947 +0 0.0487 +0 0.0541 +0 0.2543 +0 0.1093 +0 0.0757 +0 0.1356 +0 0.0515 +0 0.0770 +0 0.0578 +0 0.4639 +0 0.0607 +0 0.0840 +0 0.2349 +0 0.2528 +0 0.0724 +0 0.0389 +0 0.1522 +0 0.4269 +0 0.1299 +0 0.2189 +0 0.1537 +0 0.1713 +0 0.0748 +0 0.1896 +0 0.1182 +0 0.0880 +0 0.0495 +0 0.1622 +0 0.4880 +0 0.0994 +0 0.1598 +0 0.1415 +0 0.0807 +0 0.0658 +0 0.0992 +0 0.0902 +0 0.0764 +0 0.0892 +0 0.3104 +0 0.2192 +0 0.0999 +0 0.0663 +0 0.0890 +0 0.0926 +0 0.1821 +0 0.0434 +0 0.2000 +0 0.2138 +0 0.0550 +0 0.4283 +0 0.1434 +0 0.0862 +0 0.1493 +0 0.0563 +0 0.1412 +0 0.0606 +0 0.1489 +0 0.1593 +0 0.0689 +0 0.1886 +0 0.0451 +0 0.1288 +0 0.0972 +0 0.0749 +1 0.7980 +0 0.1012 +1 0.7950 +0 0.0532 +0 0.4397 +0 0.0423 +0 0.6073 +0 0.0482 +0 0.0534 +0 0.0707 +0 0.1611 +0 0.0556 +0 0.2559 +0 0.1180 +0 0.0882 +0 0.7311 +0 0.0754 +0 0.1558 +0 0.0567 +0 0.0733 +0 0.0675 +0 0.0922 +0 0.2009 +0 0.1062 +0 0.1142 +0 0.0942 +0 0.6680 +0 0.0874 +0 0.1690 +0 0.1337 +0 0.0652 +0 0.1603 +0 0.3424 +0 0.1133 +0 0.0599 +0 0.2896 +0 0.1348 +0 0.0823 +0 0.0591 +0 0.1775 +0 0.1650 +0 0.5655 +0 0.0754 +0 0.0940 +0 0.0967 +0 0.0497 +0 0.0767 +0 0.0624 +0 0.7483 +0 0.0746 +0 0.0380 +0 0.1186 +0 0.0515 +0 0.6336 +0 0.0384 +0 0.0750 +0 0.0779 +0 0.0657 +0 0.0324 +0 0.0767 +0 0.4810 +0 0.1433 +0 0.1401 +0 0.1246 +0 0.1977 +0 0.0595 +0 0.2874 +0 0.2121 +0 0.0995 +0 0.0982 +0 0.2721 +0 0.0542 +0 0.1680 +0 0.0367 +0 0.0730 +0 0.2171 +0 0.1623 +0 0.0944 +0 0.0588 +0 0.1167 +0 0.0460 +0 0.1293 +0 0.1304 +0 0.1377 +0 0.1114 +0 0.5303 +0 0.0447 +0 0.0774 +0 0.0994 +0 0.0700 +0 0.0573 +0 0.1415 +0 0.1970 +0 0.0636 +0 0.0336 +0 0.0633 +0 0.1218 +0 0.0866 +0 0.2882 +0 0.0645 +0 0.1154 +0 0.0516 +0 0.0562 +0 0.0807 +0 0.6189 +0 0.1240 +0 0.5270 +0 0.0862 +0 0.0830 +0 0.2656 +0 0.1799 +0 0.0611 +0 0.1168 +0 0.0443 +0 0.3328 +0 0.3877 +0 0.0692 +0 0.6023 +0 0.1673 +0 0.0893 +0 0.1487 +1 0.8012 +0 0.0558 +0 0.2721 +0 0.2495 +0 0.0444 +0 0.1253 +0 0.1264 +0 0.0905 +0 0.1513 +0 0.1374 +0 0.0549 +0 0.2270 +0 0.0626 +0 0.0923 +0 0.1332 +0 0.0683 +0 0.2395 +0 0.0530 +0 0.1006 +0 0.2533 +0 0.2888 +0 0.1437 +0 0.1426 +0 0.0598 +0 0.1920 +0 0.2224 +0 0.0764 +0 0.4219 +0 0.0402 +0 0.0669 +0 0.0931 +0 0.0378 +0 0.0853 +0 0.6382 +0 0.1161 +0 0.2594 +0 0.0404 +0 0.1225 +0 0.2387 +0 0.1319 +0 0.0689 +0 0.1472 +0 0.1413 +0 0.0472 +0 0.1289 +0 0.3897 +0 0.0781 +0 0.1564 +0 0.0597 +0 0.1177 +0 0.0823 +0 0.5408 +0 0.3962 +0 0.1323 +0 0.0877 +0 0.1997 +0 0.0950 +0 0.2350 +0 0.4995 +0 0.0929 +0 0.1777 +0 0.0506 +0 0.0816 +0 0.1897 +0 0.1273 +0 0.0911 +0 0.3689 +0 0.1376 +0 0.1152 +0 0.0662 +0 0.3317 +0 0.0523 +0 0.1359 +0 0.0866 +0 0.1506 +0 0.1325 +0 0.6680 +0 0.1553 +0 0.0306 +0 0.1076 +0 0.1173 +0 0.0907 +0 0.0703 +0 0.1286 +0 0.0616 +0 0.1019 +0 0.1641 +0 0.1686 +0 0.1674 +0 0.0731 +0 0.0717 +0 0.1098 +0 0.0552 +0 0.1075 +0 0.0750 +0 0.0726 +0 0.0583 +0 0.0974 +0 0.2429 +0 0.0446 +0 0.1380 +0 0.0994 +0 0.1136 +0 0.1547 +0 0.2273 +0 0.2726 +0 0.1348 +0 0.3580 +0 0.0735 +0 0.1079 +0 0.1025 +0 0.0857 +0 0.0892 +0 0.1472 +0 0.1058 +0 0.0379 +0 0.0900 +0 0.1540 +0 0.2247 +0 0.0493 +0 0.1413 +0 0.0923 +0 0.0973 +0 0.2158 +0 0.0984 +0 0.1331 +0 0.0816 +0 0.0820 +0 0.0516 +0 0.0735 +0 0.0549 +0 0.0601 +0 0.3115 +0 0.0671 +0 0.3031 +0 0.3655 +0 0.0765 +0 0.1719 +0 0.2324 +0 0.1332 +0 0.1648 +0 0.2027 +0 0.0537 +0 0.0566 +0 0.2066 +0 0.0909 +0 0.2636 +0 0.2290 +0 0.2729 +0 0.1627 +0 0.0504 +0 0.0850 +0 0.1103 +0 0.0706 +0 0.1503 +0 0.2341 +0 0.1326 +0 0.1246 +0 0.0670 +0 0.1050 +0 0.0961 +0 0.3590 +0 0.2031 +0 0.0417 +0 0.0697 +0 0.0637 +0 0.1027 +0 0.2578 +0 0.0559 +0 0.2170 +0 0.1708 +0 0.0512 +0 0.3893 +0 0.0965 +0 0.0489 +0 0.0555 +0 0.0532 +0 0.0865 +0 0.0500 +0 0.0888 +0 0.2718 +0 0.0705 +0 0.0817 +0 0.0891 +0 0.0586 +0 0.2513 +0 0.1254 +1 0.8592 +0 0.1990 +0 0.1451 +0 0.1144 +1 0.8808 +0 0.2945 +0 0.1380 +0 0.0793 +0 0.2265 +0 0.0502 +0 0.1030 +0 0.1313 +0 0.2250 +0 0.0716 +0 0.1487 +0 0.1428 +0 0.1237 +0 0.1055 +0 0.1224 +0 0.1534 +0 0.1276 +0 0.1476 +0 0.0605 +0 0.0597 +0 0.1027 +0 0.1533 +0 0.2643 +0 0.2615 +0 0.0861 +0 0.0572 +0 0.1316 +0 0.0806 +0 0.3595 +0 0.0515 +0 0.4995 +0 0.0722 +0 0.1940 +0 0.7052 +0 0.1591 +0 0.1627 +0 0.0593 +0 0.2957 +0 0.0740 +0 0.3822 +1 0.7667 +0 0.1282 +0 0.1450 +0 0.0630 +0 0.1293 +0 0.1351 +0 0.0704 +0 0.1585 +1 0.8811 +0 0.1086 +0 0.0954 +0 0.1429 +0 0.2984 +0 0.0931 +0 0.2089 +0 0.0392 +0 0.0535 +0 0.0781 +0 0.1222 +0 0.0757 +0 0.0666 +0 0.1286 +0 0.0314 +0 0.0924 +0 0.1694 +0 0.1120 +0 0.0591 +0 0.0698 +0 0.2388 +0 0.1356 +0 0.0921 +0 0.0453 +0 0.0634 +0 0.0675 +0 0.1200 +0 0.0901 +0 0.0620 +0 0.0828 +0 0.1734 +0 0.2896 +0 0.0433 +0 0.0906 +0 0.0831 +0 0.1333 +0 0.3498 +0 0.2543 +0 0.1759 +0 0.0511 +0 0.0423 +0 0.1125 +0 0.1295 +0 0.0661 +0 0.0954 +0 0.1399 +0 0.0826 +0 0.1234 +0 0.1549 +0 0.2107 +0 0.1414 +0 0.1064 +0 0.1692 +0 0.0813 +0 0.1981 +0 0.0607 +0 0.0841 +0 0.0735 +0 0.1529 +0 0.0762 +0 0.1355 +0 0.0620 +0 0.1352 +0 0.0968 +0 0.1727 +0 0.2210 +0 0.0624 +0 0.1180 +0 0.1211 +0 0.0590 +0 0.1505 +0 0.1876 +0 0.0747 +0 0.0689 +0 0.4612 +0 0.1612 +0 0.1048 +0 0.0818 +0 0.0806 +0 0.1424 +0 0.0631 +0 0.0408 +0 0.0360 +0 0.1159 +0 0.0410 +0 0.7484 +0 0.2282 +0 0.0488 +0 0.0716 +0 0.0962 +0 0.1431 +0 0.0749 +0 0.0960 +0 0.0781 +0 0.0987 +0 0.0635 +0 0.1306 +0 0.7032 +0 0.1080 +0 0.0840 +0 0.5277 +0 0.1068 +0 0.3197 +0 0.1081 +0 0.0583 +0 0.0540 +0 0.0654 +0 0.0456 +0 0.1393 +0 0.0520 +0 0.1801 +0 0.1218 +0 0.1450 +0 0.1094 +0 0.1618 +0 0.0930 +0 0.0486 +0 0.0706 +0 0.3074 +0 0.0954 +0 0.1161 +0 0.0722 +0 0.0583 +0 0.1184 +0 0.5635 +0 0.6960 +0 0.0517 +0 0.0794 +0 0.0660 +0 0.1721 +0 0.1242 +0 0.0711 +0 0.0902 +0 0.0598 +0 0.1724 +0 0.0727 +0 0.0627 +0 0.0425 +0 0.0848 +0 0.6239 +0 0.0723 +0 0.1014 +0 0.0568 +0 0.0831 +0 0.0470 +0 0.1850 +0 0.1284 +0 0.0488 +0 0.0363 +0 0.0649 +0 0.1511 +0 0.1760 +0 0.0733 +0 0.0659 +0 0.3143 +0 0.0726 +0 0.1305 +0 0.1019 +0 0.0427 +0 0.0692 +0 0.7160 +0 0.1007 +0 0.1005 +0 0.3363 +0 0.0960 +0 0.0799 +0 0.6087 +0 0.1052 +0 0.3026 +0 0.7295 +0 0.0663 +0 0.0655 +1 0.8673 +0 0.0488 +0 0.0500 +0 0.0514 +0 0.0504 +0 0.0576 +0 0.1062 +0 0.1428 +0 0.0488 +0 0.0827 +0 0.0751 +0 0.1478 +0 0.1766 +0 0.1974 +0 0.1199 +0 0.0979 +0 0.0427 +0 0.0761 +0 0.1501 +0 0.0542 +0 0.0800 +0 0.0366 +0 0.3601 +0 0.0945 +0 0.0549 +0 0.1290 +0 0.0581 +0 0.2834 +0 0.1450 +0 0.1831 +0 0.0594 +0 0.2626 +0 0.1254 +0 0.1345 +0 0.0909 +0 0.1072 +0 0.0824 +0 0.2600 +0 0.1483 +0 0.1749 +0 0.1139 +0 0.0846 +0 0.1368 +0 0.0277 +0 0.0976 +0 0.0393 +0 0.1338 +0 0.2047 +0 0.1561 +0 0.0960 +1 0.8039 +0 0.2920 +0 0.0885 +0 0.1546 +0 0.0591 +0 0.6193 +0 0.0460 +0 0.0889 +0 0.3404 +0 0.2746 +0 0.2598 +0 0.0664 +0 0.0730 +0 0.0765 +0 0.0907 +0 0.0823 +0 0.0624 +0 0.0452 +0 0.1859 +0 0.1795 +0 0.0489 +0 0.1209 +0 0.1071 +0 0.0418 +0 0.5987 +0 0.0621 +0 0.0685 +0 0.1967 +0 0.1212 +0 0.0665 +0 0.0923 +0 0.0422 +0 0.0849 +0 0.2018 +0 0.1557 +0 0.2414 +0 0.2174 +0 0.1006 +1 0.0731 +0 0.0990 +0 0.1281 +0 0.6625 +0 0.1916 +1 0.4098 +0 0.0991 +0 0.0477 +0 0.0954 +0 0.7135 +0 0.1003 +0 0.1518 +0 0.1737 +0 0.0798 +0 0.1830 +0 0.1015 +0 0.1400 +0 0.0961 +0 0.0487 +0 0.0800 +0 0.1640 +0 0.1074 +0 0.1032 +0 0.2721 +0 0.0624 +0 0.0547 +0 0.0601 +0 0.0689 +0 0.1287 +0 0.0995 +0 0.0792 +0 0.0760 +0 0.6771 +0 0.0760 +0 0.2181 +0 0.1015 +0 0.1768 +0 0.1038 +0 0.0752 +0 0.0765 +0 0.0909 +0 0.1164 +0 0.0768 +0 0.2167 +0 0.0679 +0 0.2013 +0 0.0961 +0 0.0688 +0 0.1146 +0 0.1598 +0 0.2992 +0 0.1946 +0 0.1164 +0 0.0864 +0 0.1807 +0 0.1386 +0 0.0824 +0 0.0771 +0 0.1254 +0 0.1986 +0 0.2377 +0 0.0847 +0 0.1402 +0 0.1395 +0 0.1355 +0 0.0522 +1 0.8086 +0 0.0884 +0 0.0492 +0 0.2612 +0 0.0869 +0 0.1753 +0 0.3744 +0 0.1086 +0 0.7186 +0 0.2378 +0 0.2276 +0 0.2900 +0 0.3699 +0 0.2374 +0 0.1091 +0 0.1326 +0 0.1041 +0 0.2792 +0 0.0742 +0 0.0595 +0 0.1317 +0 0.0342 +0 0.0536 +0 0.1133 +0 0.1812 +0 0.0425 +0 0.0579 +0 0.0763 +0 0.1394 +0 0.2541 +0 0.1700 +0 0.0544 +0 0.1813 +0 0.0760 +0 0.1598 +0 0.1648 +0 0.1301 +0 0.0465 +0 0.0839 +0 0.1810 +0 0.0671 +0 0.2132 +0 0.1461 +0 0.1165 +0 0.0533 +0 0.0967 +0 0.0709 +0 0.0519 +0 0.2203 +0 0.1461 +0 0.1657 +0 0.1479 +0 0.1510 +0 0.0625 +0 0.0399 +0 0.0825 +0 0.2353 +0 0.1559 +0 0.1011 +0 0.1010 +0 0.1174 +0 0.0956 +0 0.0871 +0 0.0756 +0 0.0868 +0 0.2081 +0 0.0846 +0 0.1115 +0 0.1152 +0 0.1611 +0 0.1015 +0 0.2539 +0 0.1723 +0 0.2082 +0 0.0641 +0 0.0915 +0 0.0500 +0 0.0975 +0 0.2718 +0 0.1885 +0 0.1339 +0 0.1853 +0 0.1144 +0 0.1225 +0 0.0587 +0 0.0655 +0 0.0777 +0 0.1489 +0 0.2150 +0 0.1304 +0 0.1277 +0 0.0794 +0 0.0707 +0 0.1175 +0 0.1555 +0 0.1710 +0 0.0822 +0 0.1734 +0 0.0845 +0 0.1055 +0 0.0611 +0 0.1010 +0 0.2502 +0 0.0515 +0 0.1179 +0 0.0579 +0 0.1454 +0 0.2734 +0 0.0897 +0 0.1634 +0 0.4834 +0 0.5980 +0 0.0686 +0 0.0723 +0 0.0627 +0 0.0543 +0 0.1300 +0 0.1677 +0 0.1706 +1 0.8623 +0 0.0472 +0 0.1293 +0 0.0778 +0 0.0435 +1 0.8202 +0 0.1306 +0 0.1980 +0 0.0476 +0 0.1325 +0 0.0892 +0 0.1137 +0 0.1959 +0 0.1095 +0 0.1772 +0 0.0935 +0 0.1430 +0 0.0915 +0 0.0773 +0 0.2635 +0 0.0546 +0 0.2176 +0 0.1387 +0 0.1270 +0 0.1433 +0 0.2427 +0 0.2499 +0 0.1511 +0 0.0405 +0 0.0988 +0 0.1951 +0 0.0856 +0 0.0409 +0 0.1236 +0 0.0910 +0 0.2263 +0 0.2583 +0 0.1122 +0 0.1634 +0 0.1618 +0 0.1075 +0 0.2167 +0 0.1410 +0 0.1014 +0 0.0588 +0 0.1973 +0 0.0963 +0 0.1038 +0 0.1428 +0 0.0571 +0 0.0727 +0 0.0588 +0 0.0528 +0 0.1895 +0 0.0427 +0 0.5607 +0 0.0732 +0 0.2229 +0 0.1679 +0 0.2497 +0 0.2091 +0 0.1094 +0 0.2073 +0 0.0823 +0 0.1497 +0 0.1433 +0 0.4080 +0 0.0800 +0 0.1425 +0 0.0752 +0 0.0898 +0 0.1415 +0 0.0697 +0 0.0668 +0 0.1077 +0 0.1763 +0 0.1103 +0 0.1525 +0 0.6046 +0 0.0928 +0 0.1494 +0 0.0625 +0 0.0463 +0 0.1129 +0 0.0612 +0 0.1279 +0 0.1083 +0 0.3251 +0 0.1366 +0 0.1330 +0 0.1435 +0 0.2080 +0 0.0524 +0 0.1066 +0 0.2677 +0 0.2212 +0 0.1316 +0 0.0652 +0 0.1074 +0 0.1003 +0 0.2417 +0 0.1265 +0 0.0463 +0 0.2937 +0 0.0906 +0 0.1840 +0 0.0427 +0 0.1020 +0 0.1133 +0 0.1045 +0 0.1818 +0 0.2320 +0 0.1617 +0 0.0628 +0 0.0900 +0 0.0376 +0 0.2084 +0 0.0397 +0 0.1109 +0 0.0495 +0 0.2142 +0 0.0725 +0 0.0550 +0 0.1071 +0 0.0746 +0 0.0811 +0 0.1125 +0 0.1333 +0 0.0782 +0 0.0748 +0 0.0950 +0 0.0702 +0 0.0800 +0 0.0704 +0 0.1772 +0 0.0966 +0 0.1080 +0 0.2888 +0 0.6934 +0 0.2914 +0 0.0839 +0 0.0725 +0 0.1589 +0 0.1016 +0 0.1629 +0 0.0690 +0 0.1489 +0 0.0641 +0 0.0530 +0 0.1868 +0 0.0809 +0 0.1250 +0 0.0610 +0 0.0938 +0 0.2562 +0 0.0405 +0 0.0641 +0 0.1579 +0 0.2756 +0 0.0788 +0 0.2380 +0 0.0722 +0 0.1218 +0 0.1046 +0 0.1007 +0 0.1070 +0 0.0670 +0 0.2404 +0 0.1251 +0 0.0672 +0 0.0763 +0 0.0736 +0 0.1319 +0 0.0561 +0 0.3975 +0 0.0644 +0 0.0962 +1 0.7767 +0 0.1001 +0 0.2855 +0 0.0420 +0 0.0941 +0 0.0916 +0 0.1320 +0 0.1091 +0 0.1577 +0 0.0666 +0 0.0407 +0 0.1055 +0 0.0705 +0 0.1220 +0 0.1212 +0 0.4179 +0 0.1738 +0 0.1616 +0 0.1108 +0 0.0268 +0 0.1197 +0 0.1036 +0 0.2385 +0 0.0880 +0 0.0638 +0 0.0819 +0 0.1752 +0 0.0536 +0 0.0515 +0 0.1735 +0 0.0671 +0 0.0788 +0 0.0359 +0 0.0825 +1 0.7653 +0 0.0986 +0 0.1125 +0 0.0790 +0 0.0819 +0 0.0886 +0 0.1134 +0 0.3342 +0 0.3230 +0 0.1574 +0 0.0714 +0 0.0510 +0 0.0547 +0 0.0675 +0 0.0674 +0 0.2129 +0 0.0505 +0 0.0879 +0 0.0731 +0 0.0579 +1 0.8127 +0 0.0770 +0 0.0584 +0 0.0819 +0 0.3042 +0 0.1001 +0 0.1046 +0 0.1136 +0 0.1258 +0 0.1482 +0 0.1652 +0 0.1228 +0 0.1203 +0 0.2136 +0 0.4089 +0 0.0577 +0 0.0946 +0 0.0725 +0 0.1304 +0 0.1857 +0 0.0671 +0 0.0935 +0 0.1066 +0 0.1731 +0 0.1109 +0 0.0444 +0 0.2684 +0 0.2739 +0 0.0482 +0 0.1753 +0 0.2025 +0 0.0692 +0 0.0405 +0 0.1279 +0 0.0916 +0 0.4673 +0 0.3222 +0 0.0950 +0 0.1287 +0 0.1020 +0 0.0883 +0 0.1339 +0 0.1809 +0 0.1385 +0 0.0561 +0 0.2290 +0 0.1170 +0 0.0589 +0 0.0958 +0 0.0728 +0 0.1307 +0 0.0754 +0 0.0900 +0 0.4203 +0 0.1231 +0 0.0827 +0 0.2079 +0 0.0964 +0 0.0431 +0 0.3652 +0 0.2918 +0 0.0693 +0 0.0468 +0 0.7265 +0 0.0984 +0 0.0939 +0 0.0550 +0 0.1161 +0 0.0974 +0 0.1583 +0 0.1604 +1 0.8287 +0 0.3531 +0 0.1397 +0 0.0689 +0 0.1075 +0 0.1601 +0 0.0598 +0 0.0701 +0 0.0315 +0 0.1262 +0 0.1024 +0 0.1037 +1 0.8772 +0 0.0588 +0 0.0647 +0 0.0696 +0 0.1155 +0 0.1209 +0 0.3352 +0 0.1476 +0 0.2791 +0 0.0881 +0 0.1183 +0 0.0539 +0 0.0778 +0 0.1310 +0 0.0418 +0 0.5290 +0 0.0832 +0 0.3268 +0 0.1321 +0 0.1295 +0 0.0970 +0 0.1198 +0 0.2273 +0 0.1019 +0 0.1056 +0 0.1806 +0 0.1571 +0 0.0970 +0 0.4886 +0 0.1997 +0 0.1831 +0 0.1009 +0 0.6040 +0 0.0953 +0 0.1598 +0 0.0729 +0 0.1281 +0 0.0669 +0 0.0377 +0 0.0641 +0 0.0388 +0 0.3169 +0 0.1404 +0 0.0896 +0 0.0985 +0 0.0545 +1 0.7840 +0 0.0983 +0 0.0379 +1 0.8255 +0 0.0952 +0 0.0656 +0 0.1946 +0 0.0902 +0 0.0706 +0 0.1408 +0 0.0628 +0 0.0598 +0 0.0815 +0 0.2187 +0 0.1364 +0 0.1797 +0 0.0682 +0 0.5151 +0 0.0893 +0 0.1060 +0 0.1151 +0 0.0807 +0 0.0901 +0 0.1688 +0 0.1667 +0 0.7454 +0 0.1517 +0 0.2723 +0 0.3349 +0 0.0659 +0 0.1257 +0 0.0613 +0 0.0896 +0 0.3100 +0 0.0861 +0 0.6292 +0 0.0696 +0 0.0911 +0 0.0877 +0 0.0801 +0 0.1212 +0 0.1137 +0 0.1270 +0 0.5661 +0 0.1871 +0 0.0549 +0 0.0437 +0 0.1045 +0 0.2848 +0 0.1351 +0 0.0309 +0 0.5615 +0 0.0889 +0 0.0935 +0 0.0850 +0 0.1878 +0 0.0795 +0 0.2173 +0 0.0754 +0 0.0573 +0 0.0649 +0 0.2947 +0 0.1161 +0 0.6438 +0 0.4333 +0 0.0754 +0 0.0912 +0 0.0861 +0 0.1060 +0 0.2511 +0 0.0910 +0 0.1271 +0 0.0979 +0 0.3122 +0 0.0533 +0 0.0607 +0 0.1085 +0 0.0629 +0 0.0895 +0 0.1026 +0 0.1052 +0 0.1077 +0 0.0640 +0 0.0495 +0 0.1024 +0 0.1330 +0 0.0777 +0 0.0748 +0 0.2250 +1 0.7985 +0 0.0709 +0 0.0650 +0 0.0595 +0 0.0784 +0 0.0420 +0 0.0513 +0 0.0684 +0 0.4076 +0 0.1343 +0 0.0713 +0 0.0388 +0 0.6763 +0 0.0669 +0 0.0565 +0 0.1080 +0 0.1213 +0 0.1779 +0 0.1558 +0 0.0573 +0 0.0990 +0 0.2339 +0 0.1537 +0 0.0357 +0 0.2219 +0 0.2350 +0 0.2042 +0 0.0896 +0 0.1876 +0 0.0839 +0 0.1105 +0 0.0751 +0 0.0454 +0 0.6603 +0 0.0984 +0 0.1083 +0 0.0875 +0 0.0662 +0 0.0863 +0 0.0611 +0 0.1309 +0 0.0857 +0 0.1612 +0 0.4061 +0 0.1425 +0 0.1228 +0 0.1062 +0 0.2253 +0 0.0860 +0 0.0934 +0 0.0509 +0 0.0554 +0 0.3846 +0 0.1038 +0 0.0792 +0 0.1297 +0 0.0516 +0 0.1030 +0 0.1453 +0 0.1978 +0 0.2196 +0 0.1146 +0 0.1458 +0 0.0914 +0 0.1555 +0 0.0379 +0 0.5823 +0 0.1036 +0 0.2329 +0 0.4943 +0 0.0431 +0 0.1495 +0 0.2189 +0 0.0705 +0 0.1786 +0 0.0891 +0 0.1496 +0 0.0810 +0 0.4147 +0 0.1888 +0 0.3892 +0 0.1166 +0 0.1851 +0 0.2060 +0 0.1284 +0 0.0805 +0 0.1324 +0 0.0944 +0 0.0978 +0 0.0821 +0 0.1192 +0 0.0588 +0 0.3882 +0 0.1000 +0 0.0787 +0 0.0367 +0 0.0427 +0 0.1149 +0 0.0418 +0 0.0770 +0 0.0757 +0 0.0622 +0 0.1210 +0 0.0456 +0 0.0980 +0 0.1370 +0 0.0979 +0 0.1199 +0 0.1754 +0 0.3319 +0 0.0617 +0 0.0904 +1 0.7993 +0 0.2070 +0 0.1970 +0 0.1930 +0 0.0984 +0 0.1655 +0 0.2152 +0 0.0442 +0 0.1581 +0 0.0452 +0 0.1326 +0 0.1467 +0 0.1489 +0 0.1234 +0 0.1390 +0 0.3388 +0 0.0355 +0 0.0623 +0 0.0305 +0 0.1069 +0 0.0599 +0 0.1762 +0 0.2926 +0 0.1320 +0 0.0551 +0 0.1029 +0 0.1507 +0 0.0868 +0 0.1001 +0 0.0576 +0 0.6896 +0 0.1406 +0 0.0697 +0 0.0746 +0 0.6804 +0 0.2607 +0 0.0703 +0 0.1659 +0 0.3567 +0 0.2658 +0 0.2245 +0 0.1183 +0 0.1082 +0 0.2485 +0 0.0727 +0 0.0614 +0 0.0724 +0 0.0628 +0 0.3528 +0 0.2776 +0 0.1084 +0 0.0335 +0 0.0979 +0 0.2069 +0 0.0820 +0 0.1576 +1 0.7871 +0 0.1153 +0 0.0652 +0 0.3897 +0 0.1490 +0 0.2934 +0 0.0562 +0 0.2419 +0 0.1138 +0 0.0402 +0 0.3647 +0 0.0580 +0 0.1414 +0 0.0639 +0 0.1180 +0 0.3508 +0 0.1161 +0 0.1314 +0 0.5423 +0 0.0871 +0 0.0993 +0 0.1822 +0 0.3448 +0 0.0783 +0 0.0603 +0 0.1133 +0 0.6232 +0 0.0888 +0 0.1536 +0 0.1310 +0 0.0824 +0 0.1165 +0 0.0845 +0 0.0747 +0 0.0972 +0 0.1504 +0 0.1709 +0 0.1197 +0 0.1106 +0 0.0652 +0 0.0516 +0 0.0827 +0 0.0641 +0 0.1164 +0 0.2510 +0 0.1555 +0 0.0427 +0 0.0771 +0 0.1181 +0 0.0438 +0 0.0656 +0 0.0858 +0 0.1151 +0 0.2464 +0 0.1651 +0 0.0766 +0 0.2938 +0 0.0612 +0 0.0482 +0 0.0880 +0 0.1583 +0 0.0434 +0 0.2526 +0 0.0896 +0 0.1410 +0 0.1094 +0 0.1262 +0 0.2454 +0 0.2942 +0 0.1235 +0 0.2876 +0 0.1238 +0 0.0851 +0 0.1571 +0 0.0833 +0 0.0789 +0 0.0349 +0 0.0835 +0 0.0919 +0 0.0384 +0 0.1270 +0 0.0900 +0 0.0577 +0 0.0603 +0 0.1830 +0 0.0830 +0 0.2856 +0 0.0830 +0 0.1019 +0 0.2963 +0 0.1280 +0 0.0486 +0 0.0585 +0 0.1157 +0 0.1495 +0 0.0730 +0 0.0613 +0 0.0759 +0 0.0610 +0 0.1887 +0 0.1459 +0 0.0727 +0 0.1076 +0 0.4075 +0 0.0924 +0 0.0966 +0 0.1649 +0 0.1011 +0 0.1039 +0 0.2644 +0 0.0734 +0 0.3659 +0 0.2008 +0 0.1021 +0 0.1009 +0 0.0551 +0 0.1228 +0 0.0788 +0 0.0565 +0 0.2081 +0 0.0396 +0 0.0845 +0 0.0584 +0 0.0512 +0 0.0796 +0 0.1406 +0 0.0705 +0 0.2761 +0 0.1173 +0 0.1338 +0 0.0836 +0 0.0578 +0 0.0753 +0 0.0410 +0 0.1178 +0 0.1426 +0 0.1570 +0 0.1333 +0 0.0791 +1 0.8212 +0 0.0490 +0 0.0800 +0 0.1264 +0 0.0612 +0 0.1121 +0 0.0579 +0 0.0468 +0 0.1139 +0 0.1728 +0 0.0583 +0 0.1135 +0 0.1043 +0 0.0467 +0 0.1961 +0 0.0746 +0 0.1455 +0 0.0588 +0 0.1639 +0 0.0769 +0 0.0859 +0 0.0610 +0 0.0496 +0 0.1450 +0 0.1031 +0 0.0521 +0 0.0405 +0 0.0661 +0 0.0766 +0 0.4650 +0 0.0366 +0 0.1082 +0 0.3105 +0 0.0428 +0 0.1036 +0 0.1986 +0 0.1131 +0 0.2260 +0 0.0460 +0 0.1679 +0 0.2759 +0 0.1889 +0 0.2430 +0 0.1562 +0 0.1158 +0 0.0458 +0 0.1700 +0 0.0498 +0 0.0635 +0 0.0907 +0 0.0855 +0 0.2213 +0 0.0934 +0 0.1105 +0 0.0498 +0 0.1994 +0 0.0821 +0 0.0796 +0 0.6482 +0 0.1018 +0 0.1415 +0 0.0829 +0 0.1057 +0 0.3778 +0 0.4841 +0 0.2145 +0 0.1183 +0 0.3701 +0 0.0879 +0 0.1229 +0 0.2263 +0 0.0942 +0 0.0871 +0 0.1190 +0 0.0787 +0 0.0673 +0 0.6555 +0 0.1594 +0 0.3993 +0 0.4560 +0 0.2450 +0 0.2321 +1 0.7795 +0 0.0419 +0 0.0623 +0 0.2547 +0 0.1113 +0 0.0624 +0 0.2195 +0 0.1932 +0 0.1444 +0 0.1082 +0 0.1124 +0 0.0546 +0 0.2325 +0 0.6923 +0 0.0755 +0 0.0598 +0 0.1421 +0 0.0437 +0 0.0628 +0 0.3559 +0 0.4404 +0 0.1163 +0 0.0696 +0 0.1748 +0 0.1451 +1 0.7644 +0 0.0830 +0 0.0523 +0 0.1218 +0 0.0815 +0 0.0941 +0 0.4542 +0 0.1306 +0 0.1381 +0 0.0859 +0 0.2639 +0 0.0726 +0 0.2165 +0 0.0383 +0 0.1144 +0 0.1545 +0 0.0409 +0 0.2538 +0 0.1959 +0 0.0629 +1 0.7890 +0 0.2554 +0 0.0543 +0 0.0468 +0 0.0323 +0 0.2326 +0 0.0809 +0 0.0488 +0 0.1488 +0 0.2135 +0 0.1741 +0 0.1957 +0 0.0884 +0 0.1845 +0 0.1975 +0 0.3785 +0 0.2528 +0 0.1936 +0 0.0817 +0 0.0856 +0 0.0782 +0 0.0988 +0 0.0640 +0 0.0542 +0 0.0579 +0 0.6568 +0 0.0305 +0 0.3446 +0 0.0948 +0 0.1402 +0 0.1477 +0 0.0512 +0 0.0403 +0 0.1426 +0 0.1043 +0 0.1162 +0 0.1382 +0 0.0626 +0 0.1901 +0 0.0648 +0 0.4677 +0 0.0718 +0 0.2888 +0 0.1118 +0 0.1034 +0 0.2579 +0 0.0938 +0 0.0561 +0 0.1481 +0 0.1977 +0 0.6830 +0 0.1196 +0 0.0739 +0 0.6501 +0 0.2367 +0 0.1602 +0 0.0910 +0 0.1887 +0 0.0906 +0 0.1386 +0 0.0856 +0 0.0943 +0 0.0841 +0 0.1396 +0 0.6634 +0 0.1520 +0 0.1688 +0 0.0844 +0 0.1485 +0 0.0783 +0 0.1833 +0 0.0556 +0 0.1230 +0 0.0880 +0 0.0387 +0 0.0531 +0 0.1194 +0 0.0572 +0 0.7430 +0 0.2515 +0 0.0722 +0 0.1323 +0 0.1803 +0 0.0716 +0 0.1024 +0 0.1114 +0 0.2501 +0 0.0643 +0 0.0441 +0 0.6870 +0 0.0480 +0 0.2446 +0 0.0668 +0 0.2225 +0 0.3089 +0 0.0415 +0 0.0988 +1 0.7637 +0 0.1386 +0 0.0540 +0 0.1128 +0 0.1009 +0 0.0725 +0 0.1159 +1 0.7747 +0 0.0560 +0 0.0682 +0 0.1402 +0 0.2636 +0 0.0566 +0 0.0922 +0 0.0798 +0 0.0556 +0 0.0887 +0 0.1346 +0 0.0401 +0 0.0958 +0 0.1009 +0 0.1249 +0 0.1366 +0 0.0318 +0 0.3330 +0 0.0435 +0 0.1984 +0 0.1338 +0 0.1495 +0 0.1069 +0 0.0784 +0 0.0920 +0 0.1443 +0 0.1119 +0 0.0982 +0 0.0631 +0 0.0385 +1 0.7504 +0 0.0821 +0 0.1285 +0 0.0858 +0 0.1702 +0 0.0934 +0 0.7175 +0 0.2022 +0 0.1210 +0 0.2761 +0 0.0851 +0 0.0490 +0 0.0450 +1 0.8897 +0 0.1062 +0 0.0793 +0 0.0900 +0 0.1794 +0 0.1761 +0 0.0909 +0 0.1342 +0 0.0716 +0 0.0833 +0 0.0587 +0 0.0873 +0 0.0482 +0 0.1768 +0 0.2259 +0 0.1445 +0 0.1459 +0 0.1325 +0 0.1445 +0 0.0847 +0 0.3286 +0 0.0774 +0 0.1109 +0 0.0875 +1 0.8694 +0 0.3701 +0 0.1499 +0 0.0658 +0 0.1125 +0 0.1314 +0 0.2926 +0 0.0548 +0 0.0684 +0 0.2333 +0 0.2726 +0 0.0949 +0 0.1436 +0 0.0840 +0 0.2845 +0 0.1002 +0 0.1484 +0 0.0407 +1 0.8495 +0 0.0785 +0 0.0739 +0 0.1134 +0 0.2501 +0 0.0432 +0 0.0748 +0 0.1689 +0 0.1161 +0 0.4159 +0 0.0728 +0 0.2378 +0 0.1005 +0 0.0723 +0 0.1783 +0 0.1647 +0 0.0702 +0 0.1047 +0 0.0528 +0 0.0550 +0 0.1268 +0 0.0827 +0 0.0826 +0 0.1140 +0 0.1935 +0 0.0761 +0 0.0811 +1 0.7700 +0 0.2306 +0 0.4370 +0 0.0704 +0 0.0754 +0 0.0828 +0 0.1410 +0 0.0820 +0 0.1000 +0 0.1187 +0 0.0931 +0 0.4215 +0 0.0529 +0 0.0692 +0 0.1363 +0 0.0667 +0 0.0930 +1 0.8077 +0 0.0796 +0 0.3982 +0 0.0860 +0 0.1452 +0 0.3013 +0 0.1076 +0 0.2701 +0 0.0787 +0 0.1284 +0 0.0547 +0 0.6372 +0 0.0553 +0 0.1152 +0 0.0446 +0 0.0310 +0 0.0801 +0 0.0558 +0 0.0561 +0 0.1651 +0 0.0585 +0 0.1981 +0 0.0376 +0 0.1091 +0 0.0803 +0 0.0578 +0 0.3737 +0 0.1396 +0 0.1416 +0 0.0666 +0 0.1867 +0 0.2038 +0 0.7323 +0 0.0980 +0 0.0613 +0 0.0937 +0 0.3985 +0 0.0723 +0 0.1945 +0 0.1329 +0 0.0725 +0 0.0692 +0 0.0451 +0 0.1246 +1 0.7856 +0 0.0796 +0 0.0665 +0 0.0451 +0 0.0731 +0 0.0695 +0 0.1058 +0 0.2315 +0 0.0590 +1 0.8221 +0 0.1783 +0 0.1036 +0 0.3008 +0 0.6970 +0 0.3635 +0 0.0484 +0 0.0967 +0 0.0615 +0 0.1170 +0 0.0964 +0 0.1021 +0 0.1979 +0 0.1311 +0 0.0847 +0 0.1479 +0 0.1174 +0 0.0656 +0 0.1057 +0 0.1317 +0 0.2280 +0 0.1357 +0 0.1307 +0 0.0791 +0 0.1227 +0 0.1130 +0 0.2287 +0 0.0825 +0 0.2334 +0 0.1886 +0 0.1300 +0 0.1400 +0 0.1972 +0 0.1233 +0 0.1876 +0 0.0445 +0 0.1662 +0 0.1462 +0 0.1077 +0 0.1008 +1 0.7541 +1 0.7632 +0 0.0437 +0 0.1605 +0 0.1556 +0 0.0770 +0 0.0452 +0 0.2522 +0 0.6922 +0 0.0815 +0 0.0820 +0 0.2530 +0 0.0866 +0 0.1048 +0 0.1364 +0 0.0901 +0 0.1296 +0 0.1010 +0 0.1443 +0 0.0596 +0 0.0899 +0 0.1410 +0 0.0677 +0 0.1683 +0 0.0888 +0 0.2124 +0 0.0864 +0 0.2558 +0 0.1853 +0 0.0993 +0 0.1958 +0 0.1399 +0 0.1148 +0 0.2672 +0 0.1431 +0 0.1978 +0 0.0716 +0 0.0398 +0 0.0799 +0 0.1302 +0 0.1386 +0 0.0999 +0 0.0795 +0 0.0764 +0 0.1121 +0 0.1603 +0 0.3891 +0 0.3295 +0 0.0808 +0 0.0521 +0 0.0974 +0 0.0627 +0 0.2826 +0 0.3146 +0 0.0808 +0 0.1413 +0 0.0669 +0 0.0350 +0 0.0432 +0 0.2049 +0 0.0552 +0 0.0781 +0 0.0593 +0 0.1300 +0 0.6103 +0 0.0779 +0 0.1973 +0 0.0810 +0 0.0375 +0 0.0697 +0 0.0530 +0 0.1974 +0 0.0652 +0 0.0618 +0 0.0654 +0 0.0538 +0 0.1066 +0 0.0549 +0 0.1803 +0 0.0725 +0 0.0743 +0 0.2218 +0 0.2985 +0 0.0323 +0 0.2283 +0 0.0669 +0 0.2794 +0 0.0928 +0 0.0596 +0 0.0592 +0 0.0435 +0 0.2098 +0 0.1408 +0 0.1709 +0 0.2148 +0 0.1070 +0 0.1050 +0 0.1287 +0 0.0569 +0 0.1177 +0 0.0511 +0 0.4192 +0 0.0661 +0 0.2094 +0 0.0745 +0 0.2018 +0 0.0672 +0 0.2002 +0 0.0919 +0 0.0704 +1 0.8177 +0 0.1406 +0 0.1333 +0 0.0764 +0 0.2198 +0 0.0856 +0 0.0933 +0 0.0756 +0 0.0733 +0 0.4034 +0 0.0705 +0 0.0938 +0 0.1734 +1 0.7960 +0 0.0933 +0 0.2012 +0 0.0676 +0 0.0925 +0 0.2695 +0 0.2261 +0 0.2271 +0 0.0889 +0 0.1470 +0 0.0817 +0 0.1338 +0 0.3669 +0 0.1162 +0 0.1641 +0 0.1452 +0 0.0909 +0 0.0913 +0 0.0672 +0 0.0361 +0 0.0528 +0 0.1269 +0 0.1565 +0 0.1220 +0 0.2471 +0 0.0835 +0 0.2362 +0 0.0982 +0 0.0566 +0 0.1813 +0 0.2495 +0 0.0734 +0 0.3340 +0 0.2178 +0 0.1627 +0 0.2086 +0 0.0552 +0 0.3697 +0 0.4485 +0 0.1337 +0 0.2333 +0 0.1486 +0 0.1061 +0 0.0570 +0 0.0610 +0 0.1201 +0 0.0633 +0 0.0572 +0 0.0394 +0 0.2140 +0 0.1619 +0 0.0595 +0 0.1590 +0 0.0894 +0 0.0499 +0 0.0978 +0 0.2839 +0 0.4912 +0 0.0759 +0 0.0456 +0 0.1083 +1 0.8618 +0 0.1016 +0 0.0592 +0 0.0360 +0 0.1800 +0 0.1638 +0 0.0568 +0 0.1016 +0 0.0746 +0 0.1923 +0 0.1586 +0 0.3078 +0 0.1794 +0 0.0895 +0 0.4762 +0 0.0801 +0 0.0605 +0 0.0373 +0 0.3088 +1 0.8762 +0 0.1112 +0 0.1441 +0 0.0581 +0 0.0620 +0 0.0418 +0 0.6215 +0 0.0642 +0 0.1887 +0 0.1886 +0 0.0471 +0 0.0775 +0 0.1007 +0 0.1782 +0 0.1264 +0 0.2046 +0 0.0933 +0 0.1884 +0 0.2047 +0 0.1056 +0 0.1063 +0 0.0664 +0 0.5065 +0 0.0933 +0 0.0776 +0 0.1902 +0 0.1570 +0 0.0576 +0 0.0797 +0 0.3171 +0 0.0736 +0 0.1407 +0 0.1785 +0 0.1134 +0 0.1159 +0 0.0672 +0 0.0807 +0 0.0691 +0 0.2012 +0 0.1786 +0 0.2294 +0 0.6513 +0 0.1291 +0 0.0438 +0 0.0776 +0 0.1421 +0 0.4111 +0 0.0533 +0 0.0989 +0 0.1499 +0 0.1102 +0 0.1394 +0 0.3152 +0 0.0681 +0 0.2567 +0 0.0695 +0 0.2960 +0 0.6768 +0 0.1487 +0 0.0482 +0 0.0705 +0 0.1750 +0 0.1488 +0 0.2245 +0 0.2281 +0 0.0676 +0 0.1152 +0 0.0998 +0 0.0639 +0 0.1266 +0 0.2449 +0 0.0604 +0 0.0842 +0 0.1835 +0 0.0833 +0 0.1078 +0 0.3430 +0 0.0791 +0 0.0470 +0 0.1074 +0 0.1308 +0 0.1655 +0 0.1970 +0 0.1960 +0 0.2793 +0 0.4786 +0 0.1497 +0 0.0962 +0 0.0672 +0 0.0605 +0 0.4586 +0 0.0684 +0 0.1369 +0 0.0694 +0 0.0701 +0 0.0822 +0 0.0783 +0 0.0944 +0 0.3275 +0 0.0791 +0 0.0369 +0 0.1736 +0 0.0832 +0 0.3570 +0 0.0528 +0 0.1527 +0 0.1681 +0 0.0973 +0 0.1019 +1 0.8423 +0 0.1426 +0 0.1917 +0 0.4404 +0 0.1444 +0 0.0776 +0 0.1039 +0 0.6682 +0 0.1493 +0 0.0652 +0 0.1400 +0 0.0610 +0 0.1045 +0 0.0685 +0 0.0812 +0 0.0562 +0 0.1087 +1 0.8378 +0 0.0701 +0 0.4020 +0 0.1979 +0 0.2729 +0 0.2883 +0 0.0907 +0 0.0902 +0 0.1513 +0 0.0440 +0 0.0728 +0 0.0450 +0 0.1195 +0 0.1379 +0 0.0398 +0 0.0391 +0 0.4293 +0 0.1857 +0 0.0773 +0 0.1322 +0 0.1256 +0 0.0825 +0 0.0980 +0 0.0372 +0 0.1756 +0 0.2852 +0 0.1811 +0 0.1740 +0 0.1063 +0 0.1944 +0 0.0694 +0 0.1400 +0 0.0717 +0 0.1719 +0 0.0885 +0 0.0766 +0 0.0914 +0 0.0844 +0 0.0998 +1 0.8082 +0 0.1277 +0 0.2183 +0 0.0778 +0 0.1883 +0 0.1558 +0 0.0565 +0 0.0797 +0 0.0804 +0 0.2158 +0 0.1209 +0 0.3377 +0 0.2333 +0 0.1111 +0 0.1264 +0 0.0906 +0 0.0731 +0 0.0878 +0 0.1039 +0 0.0931 +0 0.1611 +0 0.1938 +0 0.1373 +0 0.1140 +0 0.0413 +0 0.2173 +0 0.0326 +0 0.5129 +0 0.0564 +0 0.1683 +0 0.1060 +0 0.0753 +0 0.0497 +0 0.0818 +0 0.1071 +0 0.5848 +0 0.0904 +0 0.0430 +0 0.1609 +0 0.0656 +0 0.0668 +0 0.1209 +0 0.0814 +0 0.0715 +0 0.1591 +0 0.0685 +0 0.0952 +0 0.0502 +0 0.1512 +0 0.1390 +0 0.0757 +0 0.1061 +0 0.1251 +0 0.0718 +0 0.1348 +0 0.1235 +0 0.3607 +0 0.1018 +0 0.0604 +0 0.0448 +0 0.0760 +0 0.0846 +0 0.2853 +0 0.3885 +0 0.0682 +0 0.1169 +0 0.0578 +0 0.4415 +0 0.3421 +0 0.0616 +0 0.0718 +0 0.2086 +0 0.1048 +0 0.1018 +0 0.2787 +0 0.2646 +0 0.1792 +0 0.1061 +0 0.3602 +0 0.1170 +0 0.2160 +0 0.0660 +0 0.0788 +0 0.1734 +0 0.1044 +0 0.2196 +0 0.0815 +0 0.6355 +0 0.2554 +0 0.4021 +0 0.0862 +0 0.2713 +0 0.0559 +0 0.1758 +0 0.1784 +0 0.0960 +0 0.2095 +0 0.2558 +0 0.2208 +0 0.1270 +1 0.8095 +0 0.0686 +0 0.0964 +0 0.0503 +0 0.1341 +0 0.0634 +0 0.1788 +0 0.3927 +0 0.0982 +0 0.1233 +0 0.1323 +0 0.1054 +0 0.2493 +0 0.1789 +0 0.0480 +0 0.0628 +0 0.0874 +0 0.0752 +0 0.1759 +0 0.0797 +0 0.1404 +0 0.0592 +0 0.1435 +0 0.0747 +0 0.1783 +0 0.2052 +0 0.1017 +0 0.0569 +0 0.0850 +0 0.0737 +0 0.0949 +0 0.1395 +0 0.2297 +0 0.1021 +0 0.0511 +0 0.1318 +0 0.0510 +0 0.1841 +0 0.0889 +0 0.3659 +0 0.1154 +0 0.1069 +0 0.0916 +0 0.0727 +0 0.1397 +0 0.1422 +0 0.2041 +0 0.0992 +1 0.8680 +0 0.0875 +0 0.1944 +0 0.0868 +0 0.0472 +0 0.0890 +0 0.0993 +0 0.0769 +0 0.0501 +0 0.0655 +0 0.1003 +0 0.1362 +0 0.1691 +0 0.0869 +0 0.1016 +0 0.0714 +0 0.0698 +0 0.1532 +0 0.1893 +0 0.1414 +0 0.6721 +0 0.0957 +0 0.0787 +0 0.0755 +0 0.1162 +0 0.2307 +0 0.1046 +0 0.1164 +0 0.2422 +0 0.1278 +0 0.1357 +0 0.0965 +0 0.1600 +0 0.0469 +0 0.0846 +0 0.0794 +0 0.0858 +0 0.1477 +0 0.0878 +0 0.0722 +0 0.0799 +0 0.2240 +0 0.2129 +0 0.0965 +0 0.0721 +0 0.0883 +0 0.0539 +0 0.1682 +0 0.1035 +0 0.1882 +0 0.1389 +1 0.8279 +0 0.1753 +0 0.0414 +0 0.0612 +0 0.1796 +0 0.0883 +0 0.0585 +0 0.2584 +0 0.0938 +0 0.0911 +0 0.0477 +0 0.0997 +0 0.0641 +0 0.0867 +0 0.0907 +0 0.5649 +0 0.1265 +0 0.0573 +0 0.2918 +0 0.1149 +0 0.1358 +0 0.1108 +0 0.1141 +0 0.0933 +0 0.1133 +0 0.0712 +0 0.2028 +0 0.0990 +0 0.0721 +0 0.1808 +0 0.3217 +0 0.0965 +0 0.1325 +0 0.7328 +0 0.0919 +0 0.1189 +0 0.1465 +1 0.7794 +0 0.0622 +0 0.0865 +0 0.1321 +0 0.1202 +0 0.0823 +0 0.0585 +0 0.1273 +0 0.0930 +0 0.3412 +0 0.0606 +0 0.1532 +0 0.0621 +0 0.1539 +0 0.1403 +0 0.1067 +0 0.0880 +0 0.1081 +0 0.0636 +0 0.1150 +0 0.1555 +0 0.1331 +0 0.1195 +0 0.0648 +0 0.2622 +0 0.0508 +0 0.0430 +0 0.1297 +0 0.2110 +0 0.0477 +0 0.0944 +0 0.0870 +0 0.2087 +0 0.0859 +0 0.0470 +0 0.2321 +0 0.0374 +0 0.0501 +0 0.0725 +0 0.0488 +0 0.0472 +0 0.0857 +0 0.0691 +0 0.1125 +0 0.3633 +0 0.1923 +0 0.4258 +0 0.0712 +0 0.0369 +0 0.0840 +0 0.7192 +0 0.0874 +0 0.1513 +0 0.1140 +0 0.3224 +0 0.1844 +0 0.0484 +0 0.1180 +0 0.2430 +0 0.1547 +0 0.0443 +0 0.0955 +0 0.2872 +0 0.1034 +0 0.0960 +0 0.1296 +0 0.0745 +0 0.2655 +0 0.2606 +0 0.2010 +0 0.0931 +0 0.0801 +0 0.0567 +0 0.2697 +0 0.0623 +0 0.2110 +0 0.0644 +0 0.3720 +0 0.0643 +0 0.0916 +0 0.0554 +0 0.0541 +0 0.2713 +0 0.1634 +0 0.1064 +0 0.1492 +0 0.1039 +0 0.0661 +0 0.0580 +0 0.0885 +0 0.0821 +0 0.1642 +0 0.0403 +1 0.8278 +0 0.3419 +0 0.1627 +0 0.0846 +0 0.1690 +0 0.0986 +0 0.0937 +0 0.0625 +0 0.0948 +0 0.0610 +0 0.0846 +0 0.0979 +0 0.1245 +0 0.1858 +0 0.2028 +0 0.0448 +0 0.1081 +0 0.0930 +0 0.0843 +0 0.2873 +0 0.0876 +0 0.0407 +0 0.1098 +0 0.0801 +0 0.1112 +0 0.3788 +0 0.5617 +0 0.0861 +0 0.3200 +0 0.1613 +0 0.1506 +1 0.8626 +0 0.6240 +0 0.0381 +0 0.3683 +0 0.5115 +0 0.2236 +0 0.2923 +0 0.1630 +0 0.0971 +0 0.0447 +0 0.0728 +0 0.4323 +0 0.0521 +0 0.0975 +0 0.0491 +0 0.2596 +0 0.2571 +0 0.2246 +0 0.0738 +0 0.0927 +0 0.2881 +0 0.0730 +0 0.1428 +0 0.2163 +0 0.0788 +0 0.1792 +0 0.2037 +0 0.0568 +0 0.1942 +0 0.1706 +0 0.0873 +1 0.8026 +0 0.0671 +0 0.1400 +0 0.0500 +0 0.0581 +0 0.2021 +0 0.0914 +0 0.0461 +0 0.0587 +0 0.1883 +0 0.0695 +0 0.6320 +0 0.0705 +0 0.0995 +0 0.1176 +0 0.0611 +0 0.2183 +0 0.0561 +0 0.0963 +0 0.1705 +0 0.1685 +0 0.1818 +0 0.0545 +0 0.0558 +0 0.0765 +0 0.1396 +0 0.1492 +0 0.0375 +0 0.0749 +0 0.0830 +0 0.3566 +0 0.4096 +0 0.1186 +0 0.3961 +0 0.0837 +0 0.3255 +0 0.1169 +0 0.2144 +0 0.1944 +0 0.1185 +0 0.0871 +0 0.2529 +0 0.1324 +0 0.0625 +0 0.0697 +0 0.1313 +0 0.0985 +0 0.2191 +0 0.0509 +0 0.0927 +0 0.2273 +0 0.0472 +0 0.1327 +0 0.0687 +0 0.6687 +0 0.1160 +0 0.1249 +0 0.0865 +0 0.7304 +0 0.1349 +0 0.0524 +0 0.0927 +0 0.1734 +0 0.1054 +0 0.0546 +0 0.1231 +0 0.1181 +0 0.1611 +0 0.0894 +0 0.1572 +0 0.2275 +0 0.0806 +0 0.3009 +0 0.0845 +0 0.3274 +0 0.0869 +0 0.1009 +0 0.2178 +0 0.0574 +0 0.1136 +0 0.1749 +0 0.0967 +0 0.0591 +0 0.1896 +0 0.1111 +0 0.0556 +0 0.0569 +0 0.2528 +0 0.0612 +0 0.6177 +0 0.0574 +0 0.1504 +0 0.5851 +0 0.1134 +0 0.1335 +0 0.1173 +0 0.0474 +0 0.0890 +0 0.1187 +0 0.3446 +0 0.2152 +0 0.2197 +0 0.1265 +0 0.1359 +0 0.0418 +0 0.0763 +0 0.1601 +0 0.1161 +0 0.2298 +0 0.2283 +0 0.1065 +0 0.0430 +0 0.1041 +0 0.1026 +0 0.0371 +0 0.0740 +0 0.0605 +0 0.0753 +0 0.1312 +0 0.0912 +0 0.0918 +0 0.1925 +0 0.0425 +0 0.0856 +0 0.3361 +0 0.3748 +0 0.1448 +0 0.1735 +0 0.0545 +0 0.4317 +0 0.0871 +0 0.7377 +0 0.1091 +0 0.5276 +0 0.1131 +0 0.1470 +0 0.0760 +0 0.1168 +0 0.0485 +0 0.0915 +0 0.0879 +0 0.0711 +0 0.1440 +0 0.0327 +0 0.0688 +0 0.0529 +0 0.0577 +0 0.1057 +0 0.0807 +0 0.0496 +0 0.1704 +0 0.1256 +0 0.1229 +0 0.1032 +0 0.1747 +0 0.0981 +1 0.7514 +0 0.0495 +0 0.0683 +0 0.1839 +0 0.0640 +0 0.0458 +0 0.1016 +0 0.1699 +0 0.1328 +0 0.0928 +0 0.2176 +0 0.1406 +0 0.1045 +0 0.3778 +0 0.1990 +0 0.1354 +0 0.0857 +0 0.2294 +0 0.4652 +0 0.1168 +0 0.2123 +0 0.0932 +0 0.1346 +0 0.0574 +0 0.1423 +0 0.1334 +0 0.1565 +0 0.2931 +1 0.7948 +1 0.9042 +0 0.1183 +0 0.0985 +0 0.1026 +0 0.1549 +0 0.1249 +0 0.0318 +0 0.0824 +0 0.0548 +0 0.1131 +0 0.1712 +0 0.0553 +0 0.0758 +0 0.1514 +1 0.8469 +0 0.2701 +0 0.0668 +0 0.0937 +0 0.0807 +0 0.3890 +0 0.1388 +0 0.0469 +0 0.0786 +0 0.0698 +1 0.7556 +0 0.1919 +0 0.0375 +0 0.0732 +0 0.0409 +0 0.0698 +0 0.2205 +0 0.2897 +0 0.0540 +0 0.3520 +0 0.0940 +0 0.0539 +0 0.0328 +0 0.0782 +0 0.2095 +0 0.1250 +0 0.2671 +0 0.0667 +0 0.2318 +0 0.5535 +0 0.0563 +0 0.1268 +0 0.0862 +0 0.1772 +0 0.0984 +0 0.1549 +0 0.1042 +0 0.0592 +0 0.1669 +0 0.0742 +0 0.1140 +0 0.0910 +0 0.0560 +0 0.0959 +0 0.1501 +0 0.0715 +0 0.2388 +0 0.0512 +0 0.3830 +1 0.7882 +0 0.1731 +0 0.0958 +0 0.1101 +0 0.5718 +0 0.1293 +0 0.0744 +0 0.0492 +0 0.0321 +0 0.0679 +0 0.1695 +0 0.1050 +0 0.5007 +0 0.0445 +0 0.2626 +0 0.0803 +0 0.1607 +0 0.0697 +0 0.5470 +0 0.2705 +0 0.0511 +0 0.1513 +0 0.0938 +0 0.3717 +0 0.1019 +0 0.0362 +0 0.0631 +0 0.1864 +0 0.1288 +0 0.1196 +0 0.0813 +0 0.0768 +0 0.0534 +0 0.0894 +0 0.0508 +1 0.8051 +0 0.1271 +0 0.0932 +0 0.1380 +0 0.0844 +0 0.0465 +0 0.0812 +0 0.0701 +0 0.0783 +0 0.2139 +0 0.1413 +0 0.2481 +0 0.1776 +0 0.0472 +0 0.0725 +0 0.1226 +0 0.1635 +0 0.0566 +0 0.0858 +0 0.3184 +0 0.1067 +1 0.7706 +0 0.2141 +0 0.1164 +0 0.1830 +0 0.0979 +0 0.1703 +0 0.0944 +0 0.1913 +0 0.1656 +0 0.1061 +0 0.0797 +0 0.2100 +0 0.0797 +0 0.1521 +0 0.1065 +0 0.0895 +0 0.0951 +0 0.0895 +0 0.0480 +0 0.0427 +0 0.1152 +0 0.0858 +0 0.3455 +0 0.0666 +0 0.0497 +0 0.1379 +0 0.0815 +0 0.1041 +0 0.0792 +1 0.8069 +0 0.3820 +0 0.1632 +0 0.1005 +0 0.0653 +0 0.0959 +0 0.0672 +0 0.3806 +0 0.3333 +0 0.0852 +0 0.0716 +0 0.1811 +0 0.1771 +0 0.0433 +0 0.0884 +0 0.1129 +0 0.0678 +0 0.0536 +0 0.0564 +0 0.2519 +0 0.0704 +0 0.0857 +0 0.2586 +0 0.1464 +0 0.6078 +0 0.0487 +0 0.6382 +0 0.0652 +0 0.5354 +0 0.0717 +0 0.2605 +0 0.0619 +0 0.2470 +0 0.0892 +0 0.0902 +0 0.1458 +0 0.1885 +0 0.0462 +0 0.0955 +0 0.0931 +0 0.0840 +0 0.0953 +0 0.3599 +0 0.2632 +0 0.2278 +0 0.0877 +0 0.0605 +0 0.0517 +0 0.1175 +0 0.0943 +0 0.2008 +0 0.1332 +0 0.0686 +0 0.0876 +0 0.0510 +0 0.0752 +0 0.1730 +0 0.2314 +0 0.1133 +0 0.0841 +0 0.0677 +0 0.1701 +0 0.2663 +0 0.0898 +1 0.8000 +0 0.1323 +0 0.0352 +0 0.1712 +0 0.0765 +0 0.2216 +0 0.1563 +0 0.0698 +0 0.1033 +0 0.0689 +0 0.1004 +0 0.2123 +0 0.1654 +0 0.2851 +0 0.0969 +0 0.1871 +0 0.3469 +0 0.1582 +0 0.0810 +0 0.1323 +0 0.1198 +0 0.0785 +0 0.1928 +0 0.0840 +0 0.6110 +0 0.1079 +0 0.0908 +0 0.1305 +0 0.1004 +0 0.2845 +0 0.1195 +0 0.0622 +0 0.0425 +0 0.1268 +0 0.0898 +0 0.0977 +0 0.5186 +0 0.0797 +0 0.0978 +0 0.1944 +0 0.1591 +0 0.2166 +0 0.3650 +0 0.1014 +0 0.5378 +0 0.0796 +0 0.0857 +0 0.1172 +0 0.0516 +1 0.7934 +0 0.5311 +0 0.0737 +0 0.1529 +0 0.4752 +0 0.0506 +0 0.7169 +0 0.0636 +0 0.1141 +0 0.1217 +0 0.2168 +0 0.1959 +0 0.1258 +0 0.1400 +0 0.0918 +0 0.0553 +0 0.0899 +0 0.0731 +0 0.0506 +0 0.3137 +0 0.2809 +0 0.1013 +0 0.0773 +0 0.1414 +0 0.1404 +0 0.0942 +0 0.0749 +0 0.1118 +0 0.0741 +0 0.1061 +0 0.1672 +0 0.0973 +0 0.2013 +0 0.0437 +0 0.6686 +0 0.0716 +0 0.2109 +0 0.0591 +0 0.4616 +0 0.1447 +0 0.0588 +0 0.0926 +0 0.0329 +0 0.1170 +0 0.0465 +0 0.1373 +0 0.0762 +0 0.0613 +0 0.0397 +0 0.0605 +0 0.1249 +0 0.0842 +0 0.0940 +0 0.2674 +0 0.0375 +0 0.0438 +0 0.0673 +0 0.2895 +0 0.0659 +0 0.0733 +0 0.0836 +0 0.1045 +0 0.0896 +0 0.1019 +0 0.0838 +0 0.2375 +0 0.0613 +0 0.3780 +0 0.0710 +0 0.1563 +0 0.0458 +0 0.1540 +0 0.0901 +0 0.2663 +0 0.1183 +0 0.1120 +0 0.0477 +0 0.3002 +0 0.0652 +0 0.1452 +0 0.0635 +0 0.1942 +0 0.0914 +0 0.3823 +0 0.0409 +0 0.1402 +0 0.2397 +0 0.0903 +0 0.4102 +0 0.0893 +0 0.0875 +0 0.1478 +0 0.1264 +0 0.0610 +0 0.0368 +0 0.0763 +0 0.0505 +0 0.1296 +0 0.0979 +0 0.2127 +0 0.6392 +0 0.0393 +0 0.0985 +0 0.2953 +0 0.2870 +0 0.4840 +0 0.0823 +0 0.0403 +0 0.1701 +0 0.0607 +0 0.0895 +0 0.0729 +0 0.0502 +0 0.1541 +0 0.0568 +0 0.1656 +0 0.1347 +0 0.0558 +0 0.5273 +0 0.0991 +0 0.1532 +0 0.1231 +0 0.0671 +0 0.1990 +0 0.1427 +0 0.1097 +0 0.2168 +0 0.1289 +0 0.1461 +0 0.0871 +0 0.0739 +0 0.0879 +0 0.2243 +0 0.1034 +0 0.1458 +0 0.0786 +0 0.0782 +0 0.2003 +0 0.0624 +0 0.2923 +0 0.0413 +0 0.1231 +0 0.0957 +0 0.1438 +0 0.1238 +0 0.1051 +0 0.0940 +0 0.0338 +0 0.4163 +1 0.8218 +0 0.0542 +0 0.1397 +0 0.0951 +0 0.1971 +0 0.0927 +0 0.0714 +0 0.0823 +0 0.1091 +0 0.0855 +0 0.2396 +0 0.6561 +0 0.2377 +0 0.0318 +0 0.3011 +0 0.0850 +0 0.0698 +0 0.2265 +0 0.1030 +0 0.0491 +0 0.0873 +1 0.8621 +0 0.1541 +0 0.2151 +0 0.0486 +0 0.2185 +0 0.1125 +0 0.2613 +0 0.3050 +0 0.0652 +0 0.0809 +0 0.1313 +0 0.3146 +0 0.1251 +0 0.1244 +0 0.0677 +0 0.0601 +0 0.1197 +0 0.0691 +0 0.3773 +0 0.4198 +0 0.1013 +0 0.1293 +0 0.1553 +0 0.0682 +0 0.0754 +0 0.0604 +0 0.0770 +0 0.1968 +0 0.0383 +0 0.1126 +0 0.4067 +0 0.0678 +0 0.0891 +0 0.0478 +0 0.0344 +0 0.1047 +0 0.0798 +0 0.0661 +0 0.0538 +0 0.0539 +0 0.2735 +0 0.0919 +0 0.1138 +0 0.2118 +0 0.0678 +0 0.1115 +0 0.1602 +0 0.2086 +0 0.1089 +0 0.1902 +1 0.7921 +0 0.0655 +0 0.4741 +0 0.1201 +0 0.0972 +0 0.1632 +0 0.0824 +0 0.1448 +0 0.2259 +0 0.0729 +0 0.1055 +0 0.0487 +0 0.0524 +0 0.3958 +0 0.1168 +0 0.0568 +0 0.6986 +0 0.1258 +0 0.0490 +0 0.0981 +0 0.1207 +0 0.6666 +0 0.0985 +0 0.0830 +0 0.0677 +0 0.0613 +0 0.0741 +0 0.0333 +0 0.1791 +0 0.1246 +0 0.1865 +0 0.0840 +0 0.0700 +0 0.0685 +0 0.0909 +0 0.0560 +0 0.1116 +1 0.7592 +0 0.1550 +0 0.1031 +0 0.2871 +0 0.6661 +0 0.0896 +0 0.0810 +0 0.1938 +0 0.0896 +0 0.2723 +0 0.0603 +0 0.0606 +0 0.1335 +0 0.1692 +0 0.1211 +0 0.2344 +0 0.1475 +0 0.0431 +0 0.1176 +0 0.2026 +0 0.1440 +0 0.1133 +0 0.2187 +0 0.0807 +0 0.1043 +0 0.1464 +0 0.1321 +0 0.0537 +0 0.2029 +0 0.0412 +0 0.1396 +0 0.0761 +0 0.1221 +0 0.0941 +0 0.0933 +0 0.1109 +0 0.0438 +0 0.1238 +0 0.2247 +0 0.1914 +0 0.1259 +0 0.2109 +0 0.0643 +0 0.1082 +0 0.1168 +0 0.1099 +0 0.0807 +0 0.1169 +0 0.1045 +0 0.0797 +0 0.1911 +0 0.1128 +0 0.0512 +0 0.1987 +0 0.1578 +0 0.0688 +0 0.1594 +0 0.4050 +0 0.7478 +0 0.3528 +0 0.1359 +0 0.0730 +0 0.1948 +0 0.2799 +0 0.0859 +0 0.0584 +0 0.0625 +0 0.1503 +0 0.1835 +0 0.0630 +0 0.1158 +0 0.0616 +0 0.2012 +0 0.0521 +0 0.0619 +0 0.1366 +0 0.0915 +0 0.1281 +0 0.0329 +0 0.0645 +0 0.0900 +0 0.0809 +0 0.1819 +0 0.1092 +0 0.5242 +0 0.0974 +0 0.0721 +0 0.1571 +0 0.0379 +0 0.1110 +0 0.0834 +0 0.1195 +0 0.2163 +0 0.1188 +0 0.0732 +0 0.1341 +0 0.7253 +0 0.1203 +0 0.1662 +0 0.1250 +0 0.0747 +0 0.0554 +0 0.0454 +0 0.2499 +0 0.0543 +0 0.0517 +0 0.1976 +0 0.0681 +0 0.1878 +0 0.2749 +0 0.1769 +0 0.0909 +0 0.4443 +0 0.1761 +0 0.1377 +0 0.1351 +0 0.0500 +0 0.2063 +0 0.0912 +0 0.0555 +0 0.1234 +0 0.0875 +0 0.0688 +0 0.0973 +0 0.0920 +0 0.0748 +0 0.0571 +0 0.0914 +0 0.1315 +0 0.0837 +0 0.1015 +0 0.1046 +0 0.1725 +0 0.1382 +0 0.2358 +0 0.1167 +0 0.0999 +0 0.0637 +0 0.0783 +0 0.3623 +0 0.1705 +0 0.2244 +0 0.0509 +0 0.0844 +0 0.0733 +0 0.2616 +0 0.2955 +0 0.2621 +0 0.0649 +0 0.0281 +0 0.0899 +0 0.0795 +0 0.3521 +0 0.1445 +0 0.3870 +0 0.1308 +0 0.1335 +0 0.0738 +0 0.0687 +0 0.1031 +0 0.1865 +0 0.3382 +0 0.0907 +0 0.1806 +0 0.0784 +0 0.0532 +0 0.0761 +0 0.1825 +0 0.0337 +0 0.0915 +0 0.2151 +0 0.0939 +0 0.3255 +0 0.0713 +0 0.0624 +0 0.1757 +0 0.1037 +0 0.0328 +0 0.1366 +0 0.0706 +0 0.1228 +0 0.1739 +0 0.2502 +0 0.0330 +0 0.7056 +0 0.1809 +0 0.1010 +0 0.1020 +0 0.0608 +0 0.0761 +0 0.0867 +0 0.1471 +0 0.4251 +0 0.0767 +0 0.0685 +0 0.0692 +0 0.1968 +0 0.0412 +0 0.1416 +0 0.2401 +0 0.1134 +0 0.0974 +0 0.1655 +0 0.0541 +0 0.0861 +0 0.0410 +0 0.0532 +0 0.0957 +0 0.0837 +0 0.1711 +0 0.0755 +0 0.0929 +0 0.1545 +0 0.6991 +0 0.0974 +0 0.7191 +0 0.4621 +0 0.2292 +0 0.0378 +0 0.1580 +0 0.0374 +0 0.0911 +0 0.0673 +0 0.1071 +0 0.1078 +0 0.2063 +0 0.0943 +0 0.1288 +0 0.2284 +0 0.1089 +0 0.1479 +0 0.2849 +0 0.5411 +0 0.0868 +0 0.1835 +0 0.0645 +0 0.1063 +0 0.1021 +0 0.1921 +0 0.2226 +0 0.0930 +0 0.0436 +0 0.0983 +0 0.1262 +0 0.5246 +0 0.1598 +0 0.2095 +0 0.2371 +0 0.1139 +0 0.0919 +0 0.2320 +0 0.2808 +0 0.1499 +0 0.0528 +0 0.1197 +0 0.1406 +0 0.1570 +0 0.1007 +0 0.0805 +0 0.1709 +0 0.3590 +1 0.8311 +0 0.1407 +0 0.1100 +0 0.0642 +0 0.0721 +0 0.1035 +0 0.0999 +0 0.1372 +0 0.0519 +0 0.1605 +0 0.0455 +0 0.1519 +0 0.1007 +0 0.0896 +0 0.2094 +0 0.0337 +0 0.0764 +0 0.1949 +0 0.1121 +0 0.5867 +0 0.2863 +0 0.0903 +0 0.1375 +0 0.1252 +0 0.0763 +0 0.0955 +0 0.0876 +0 0.0564 +0 0.1734 +0 0.2693 +0 0.1085 +0 0.0786 +0 0.0873 +0 0.1763 +0 0.1026 +0 0.0313 +0 0.2157 +0 0.0714 +0 0.0641 +0 0.0558 +0 0.5235 +0 0.1395 +0 0.0745 +0 0.0856 +0 0.0756 +0 0.4102 +0 0.1089 +0 0.1372 +0 0.1287 +0 0.1430 +0 0.0811 +0 0.0723 +0 0.2168 +0 0.0534 +0 0.1081 +1 0.8146 +0 0.0529 +0 0.0757 +0 0.1575 +0 0.1080 +0 0.1479 +0 0.0622 +0 0.1031 +0 0.1228 +0 0.0707 +0 0.1567 +0 0.1157 +0 0.0722 +0 0.0632 +0 0.1572 +0 0.0613 +0 0.3663 +0 0.1650 +0 0.0729 +0 0.3427 +0 0.0878 +0 0.1079 +0 0.4616 +1 0.8722 +0 0.0296 +0 0.4339 +0 0.1214 +0 0.1498 +0 0.0657 +0 0.0968 +0 0.1090 +0 0.0730 +0 0.0526 +0 0.0813 +0 0.0688 +0 0.1078 +0 0.0877 +0 0.1232 +0 0.1659 +0 0.2412 +0 0.0811 +0 0.1674 +0 0.6777 +0 0.0611 +0 0.0835 +0 0.0496 +0 0.1754 +0 0.0778 +0 0.1141 +0 0.0670 +0 0.0676 +0 0.1959 +0 0.1011 +0 0.0779 +0 0.0733 +0 0.0725 +0 0.1417 +0 0.1018 +0 0.0535 +0 0.1890 +0 0.1223 +0 0.0598 +0 0.0379 +0 0.0717 +0 0.0863 +0 0.1198 +0 0.1381 +0 0.1009 +0 0.1026 +0 0.0996 +0 0.0814 +0 0.6166 +0 0.6653 +0 0.1838 +0 0.1509 +0 0.2120 +0 0.1899 +0 0.1065 +0 0.0911 +0 0.0686 +0 0.1087 +0 0.1365 +0 0.1313 +0 0.0601 +0 0.0565 +0 0.2697 +0 0.0997 +0 0.3336 +0 0.1022 +0 0.1614 +0 0.6069 +0 0.0452 +0 0.0574 +0 0.1229 +0 0.1034 +0 0.3031 +0 0.1192 +0 0.0421 +0 0.0787 +0 0.0778 +0 0.1115 +0 0.2232 +0 0.0635 +0 0.1093 +0 0.2454 +0 0.0988 +0 0.1343 +0 0.1365 +0 0.1226 +0 0.0385 +0 0.1183 +0 0.0570 +0 0.5935 +0 0.0521 +0 0.1007 +0 0.1156 +0 0.1243 +0 0.0981 +0 0.1146 +0 0.0886 +0 0.0685 +0 0.1216 +0 0.0596 +0 0.0667 +0 0.1648 +0 0.0962 +0 0.0664 +0 0.5484 +0 0.0990 +0 0.2016 +0 0.2089 +0 0.0651 +0 0.0673 +0 0.0740 +0 0.1072 +0 0.2125 +0 0.0474 +0 0.2792 +0 0.1721 +0 0.1696 +0 0.3382 +0 0.0874 +0 0.0698 +0 0.1319 +0 0.1949 +0 0.0901 +0 0.2761 +0 0.2488 +0 0.1886 +0 0.1923 +0 0.3177 +0 0.2154 +0 0.1018 +0 0.0555 +0 0.1119 +0 0.0909 +0 0.1838 +1 0.7561 +0 0.0982 +0 0.2883 +0 0.1205 +0 0.2628 +0 0.0702 +0 0.0516 +0 0.1112 +0 0.0628 +0 0.0567 +0 0.0730 +0 0.1772 +0 0.2730 +0 0.6217 +0 0.0974 +0 0.0982 +0 0.1518 +0 0.3020 +0 0.1206 +0 0.0945 +0 0.1707 +0 0.1084 +0 0.0393 +0 0.1051 +0 0.0637 +0 0.0805 +0 0.1293 +0 0.1460 +0 0.2598 +0 0.2423 +0 0.0738 +1 0.8399 +0 0.1028 +0 0.0753 +0 0.1116 +0 0.0867 +0 0.1330 +0 0.0769 +0 0.0962 +0 0.0452 +0 0.0811 +0 0.0409 +0 0.0793 +0 0.0725 +0 0.0691 +0 0.0712 +0 0.1849 +0 0.0443 +0 0.1629 +0 0.0895 +0 0.0558 +0 0.1057 +0 0.0909 +1 0.7821 +0 0.0464 +0 0.1428 +0 0.1155 +0 0.0987 +0 0.1108 +0 0.4381 +0 0.7029 +0 0.0525 +0 0.0479 +0 0.2372 +0 0.1098 +0 0.1879 +0 0.0792 +0 0.0700 +0 0.2000 +0 0.0821 +0 0.1064 +0 0.1068 +0 0.0959 +0 0.0650 +0 0.1122 +0 0.0771 +0 0.0451 +0 0.5953 +0 0.0816 +0 0.1703 +0 0.0573 +0 0.0356 +0 0.0918 +0 0.0736 +0 0.0699 +0 0.2798 +0 0.0727 +0 0.0686 +0 0.1304 +0 0.1755 +0 0.0694 +0 0.3028 +0 0.1118 +0 0.2430 +0 0.1080 +0 0.0743 +0 0.1208 +0 0.2303 +0 0.0761 +0 0.0632 +0 0.1051 +0 0.0565 +0 0.1230 +0 0.0491 +0 0.1554 +0 0.0659 +0 0.1374 +0 0.0569 +0 0.1463 +0 0.2023 +0 0.0579 +0 0.1022 +0 0.1282 +0 0.0393 +0 0.1098 +0 0.2786 +0 0.0710 +0 0.1469 +0 0.0894 +0 0.3648 +0 0.0707 +0 0.2242 +0 0.0598 +0 0.0915 +0 0.0567 +0 0.1346 +0 0.1034 +0 0.0685 +0 0.0464 +0 0.0720 +0 0.0894 +0 0.2840 +0 0.1026 +0 0.0872 +0 0.2112 +0 0.0595 +0 0.2571 +0 0.0712 +0 0.1015 +0 0.0925 +0 0.3406 +0 0.3007 +0 0.0391 +0 0.0770 +0 0.0532 +0 0.0552 +0 0.0851 +0 0.1343 +0 0.1799 +0 0.3598 +0 0.1288 +0 0.2329 +0 0.1362 +0 0.1409 +0 0.1430 +1 0.8081 +0 0.4033 +0 0.0426 +0 0.5964 +0 0.2314 +0 0.1394 +0 0.0770 +0 0.2136 +0 0.0493 +0 0.2726 +0 0.0736 +0 0.0887 +0 0.4179 +0 0.1435 +0 0.0868 +0 0.1265 +0 0.1436 +0 0.1539 +0 0.2675 +0 0.1414 +0 0.0733 +0 0.0482 +0 0.0884 +0 0.0320 +0 0.0787 +0 0.3238 +0 0.2878 +0 0.0688 +0 0.0720 +0 0.1262 +0 0.1127 +0 0.1699 +1 0.8656 +0 0.1418 +0 0.0829 +0 0.1158 +0 0.1179 +0 0.0772 +0 0.2515 +0 0.4400 +0 0.0690 +0 0.0750 +0 0.0914 +0 0.1083 +0 0.0713 +0 0.0801 +0 0.1101 +0 0.0786 +0 0.0684 +0 0.2119 +0 0.2702 +0 0.0543 +0 0.1070 +0 0.0509 +0 0.1685 +0 0.0774 +0 0.0900 +0 0.2700 +1 0.7683 +0 0.2155 +0 0.0362 +0 0.0918 +0 0.0526 +0 0.2955 +0 0.1150 +0 0.2467 +0 0.0476 +0 0.1065 +0 0.1971 +0 0.0720 +0 0.0923 +0 0.0822 +0 0.1091 +0 0.1290 +0 0.0918 +0 0.1169 +0 0.2357 +0 0.0797 +0 0.2235 +0 0.1410 +0 0.0416 +0 0.0733 +0 0.2266 +0 0.1713 +0 0.0936 +0 0.2101 +0 0.1695 +0 0.0901 +0 0.2402 +0 0.3045 +0 0.4460 +0 0.1992 +0 0.0654 +0 0.2042 +0 0.2238 +0 0.0918 +0 0.0729 +0 0.1101 +0 0.1038 +0 0.1000 +0 0.1136 +0 0.0544 +1 0.7576 +0 0.2018 +0 0.0417 +0 0.0980 +0 0.1223 +1 0.7887 +0 0.0823 +0 0.0420 +0 0.3538 +0 0.0609 +0 0.0875 +0 0.3857 +0 0.1644 +1 0.8107 +0 0.0713 +0 0.0600 +0 0.1262 +0 0.2292 +0 0.1321 +0 0.1012 +0 0.1410 +0 0.1224 +0 0.1390 +0 0.0722 +0 0.1258 +0 0.0762 +0 0.0886 +0 0.0728 +0 0.0883 +0 0.1210 +0 0.1092 +0 0.0743 +0 0.0473 +0 0.5468 +0 0.1556 +0 0.0532 +0 0.1544 +0 0.1056 +0 0.0875 +0 0.2117 +0 0.1531 +0 0.1622 +0 0.1333 +0 0.0691 +0 0.1147 +0 0.0878 +0 0.1273 +0 0.0729 +0 0.1138 +0 0.3126 +0 0.1005 +0 0.1491 +0 0.0838 +0 0.1271 +0 0.0940 +0 0.2279 +0 0.0733 +0 0.0995 +0 0.0637 +0 0.0448 +0 0.0460 +0 0.1875 +0 0.1654 +0 0.0706 +0 0.0555 +0 0.0474 +1 0.7792 +0 0.1863 +0 0.0634 +0 0.2301 +0 0.0738 +0 0.2616 +0 0.2266 +0 0.0630 +0 0.0914 +0 0.0582 +0 0.1024 +0 0.1784 +0 0.0452 +0 0.1113 +0 0.0593 +0 0.1426 +0 0.2135 +0 0.0631 +0 0.1616 +0 0.4240 +0 0.0326 +0 0.0709 +0 0.0699 +0 0.0878 +0 0.4178 +0 0.0834 +0 0.1067 +0 0.3064 +0 0.3233 +0 0.0735 +0 0.0781 +0 0.0706 +0 0.1304 +0 0.1014 +0 0.5838 +0 0.2764 +0 0.0684 +0 0.0720 +0 0.0524 +0 0.2141 +0 0.0725 +0 0.4636 +0 0.1935 +0 0.1970 +0 0.1697 +0 0.0651 +0 0.2537 +0 0.1849 +0 0.0869 +0 0.7449 +0 0.1890 +0 0.0520 +0 0.0909 +0 0.1516 +0 0.0711 +0 0.1039 +0 0.0553 +0 0.0930 +0 0.1387 +0 0.1776 +0 0.0957 +0 0.2270 +0 0.0503 +0 0.1060 +0 0.0810 +0 0.0618 +0 0.1486 +0 0.0763 +1 0.7916 +0 0.0790 +0 0.0893 +0 0.0927 +0 0.0422 +0 0.1024 +0 0.2044 +0 0.1689 +0 0.3983 +0 0.0731 +0 0.1350 +0 0.4115 +0 0.1768 +0 0.2493 +0 0.2366 +0 0.0780 +0 0.0431 +0 0.0824 +0 0.1292 +0 0.1149 +0 0.1411 +0 0.0725 +0 0.0554 +0 0.4375 +0 0.0855 +0 0.1294 +0 0.1193 +0 0.0970 +0 0.0612 +0 0.0788 +1 0.8009 +0 0.1745 +0 0.0795 +0 0.1169 +0 0.0443 +0 0.1573 +0 0.5422 +0 0.0821 +0 0.0829 +0 0.0838 +0 0.1168 +0 0.1673 +0 0.0691 +0 0.0745 +0 0.1758 +0 0.0658 +0 0.1540 +0 0.0708 +0 0.0491 +0 0.1445 +0 0.0917 +0 0.1174 +0 0.1135 +0 0.1098 +0 0.0670 +0 0.1110 +0 0.2115 +0 0.0685 +0 0.0541 +0 0.5754 +0 0.1387 +0 0.1211 +0 0.0647 +0 0.0603 +0 0.0610 +0 0.0908 +0 0.0642 +0 0.1122 +0 0.3390 +0 0.0521 +0 0.0602 +0 0.1291 +0 0.2395 +0 0.1173 +0 0.1210 +0 0.1118 +0 0.1513 +0 0.0702 +0 0.1414 +0 0.0530 +0 0.2464 +0 0.1992 +1 0.8031 +0 0.1491 +0 0.2102 +0 0.1828 +0 0.1058 +0 0.0375 +0 0.1760 +0 0.1063 +0 0.1091 +0 0.0801 +0 0.0438 +0 0.1073 +0 0.1441 +0 0.0853 +0 0.1625 +0 0.2795 +0 0.1554 +0 0.1716 +0 0.1451 +0 0.0783 +0 0.1168 +0 0.2782 +0 0.0505 +0 0.0988 +0 0.2594 +0 0.1519 +0 0.2263 +0 0.0765 +0 0.1763 +1 0.7667 +0 0.4726 +0 0.0817 +0 0.1290 +0 0.0404 +0 0.2492 +0 0.0368 +0 0.1985 +0 0.2987 +0 0.1211 +0 0.3193 +0 0.0447 +0 0.0636 +0 0.1126 +0 0.1187 +0 0.0760 +0 0.1482 +0 0.0624 +0 0.0406 +0 0.1049 +0 0.0872 +0 0.0976 +0 0.1178 +0 0.0492 +0 0.0752 +0 0.0622 +0 0.1008 +0 0.1933 +0 0.1226 +0 0.0595 +0 0.0801 +0 0.0922 +0 0.2766 +0 0.1274 +0 0.1005 +0 0.0426 +0 0.2916 +0 0.2721 +0 0.0672 +0 0.0437 +0 0.0632 +0 0.6830 +0 0.0812 +0 0.1102 +0 0.0577 +0 0.0981 +0 0.2291 +0 0.1316 +0 0.2714 +0 0.0728 +0 0.1058 +0 0.0389 +0 0.0844 +0 0.4605 +0 0.1015 +0 0.1008 +0 0.1595 +0 0.3077 +1 0.8124 +0 0.0736 +0 0.0580 +0 0.1276 +0 0.0654 +0 0.3321 +0 0.6651 +0 0.2886 +0 0.0565 +0 0.2542 +0 0.1253 +0 0.0590 +0 0.1139 +0 0.0572 +0 0.1130 +0 0.2614 +0 0.0841 +0 0.1629 +0 0.3588 +0 0.1243 +0 0.0909 +0 0.0695 +0 0.0364 +0 0.1303 +0 0.1022 +0 0.0784 +0 0.1691 +0 0.0304 +0 0.2185 +0 0.0904 +0 0.1481 +0 0.1823 +0 0.2672 +0 0.0713 +0 0.1858 +0 0.1061 +0 0.1661 +0 0.0817 +0 0.1310 +0 0.0592 +0 0.1299 +0 0.0769 +0 0.0761 +0 0.1948 +0 0.0472 +0 0.0915 +0 0.0626 +0 0.1054 +0 0.0883 +0 0.2254 +0 0.0714 +0 0.0790 +0 0.1389 +0 0.0968 +0 0.2121 +0 0.0609 +1 0.8707 +0 0.0968 +0 0.0406 +0 0.1316 +0 0.1550 +0 0.3597 +0 0.3182 +0 0.0615 +0 0.0956 +0 0.1083 +0 0.2244 +0 0.1103 +0 0.0618 +0 0.0427 +0 0.0722 +0 0.0938 +0 0.0728 +0 0.0506 +0 0.0830 +0 0.1133 +0 0.0751 +0 0.0537 +0 0.1033 +0 0.3606 +0 0.0427 +0 0.0967 +0 0.0984 +0 0.3052 +0 0.3178 +0 0.1106 +0 0.0389 +0 0.0576 +0 0.0528 +0 0.1699 +0 0.1117 +0 0.0762 +0 0.1671 +0 0.0755 +0 0.0761 +0 0.0757 +0 0.0923 +0 0.0441 +0 0.0576 +0 0.1612 +0 0.1046 +0 0.1723 +0 0.1603 +0 0.0821 +0 0.0661 +0 0.1076 +0 0.2577 +0 0.4298 +0 0.1143 +0 0.0783 +0 0.0791 +0 0.1402 +0 0.1859 +0 0.0665 +0 0.1205 +0 0.2299 +0 0.0693 +0 0.5087 +0 0.0744 +0 0.2084 +0 0.0594 +0 0.1286 +0 0.0794 +0 0.2166 +0 0.2422 +0 0.1130 +0 0.7173 +0 0.0656 +0 0.0767 +0 0.3054 +0 0.0778 +0 0.0701 +0 0.2303 +0 0.0850 +0 0.1436 +0 0.1067 +0 0.0450 +0 0.1320 +0 0.5664 +0 0.1817 +0 0.0950 +0 0.0891 +0 0.0872 +0 0.0822 +0 0.4184 +0 0.0731 +0 0.1103 +0 0.1632 +0 0.1065 +0 0.1574 +0 0.3408 +0 0.0993 +0 0.0499 +0 0.1641 +0 0.1048 +0 0.0418 +0 0.2376 +0 0.0526 +0 0.0548 +0 0.1799 +0 0.0819 +0 0.0588 +0 0.0770 +0 0.1843 +0 0.0467 +0 0.2187 +0 0.0862 +0 0.1337 +0 0.0446 +0 0.1565 +0 0.0386 +0 0.0688 +0 0.1061 +0 0.0745 +0 0.0629 +0 0.5491 +0 0.2334 +0 0.1263 +0 0.0948 +0 0.2337 +0 0.1322 +0 0.1648 +0 0.2118 +0 0.0966 +0 0.0812 +0 0.0951 +0 0.2534 +0 0.0787 +0 0.0574 +0 0.0556 +0 0.0644 +0 0.1273 +0 0.3199 +0 0.0488 +0 0.1535 +0 0.0902 +0 0.1271 +0 0.0541 +0 0.1765 +0 0.1223 +0 0.2002 +0 0.1738 +0 0.3745 +0 0.1052 +0 0.1170 +0 0.0560 +0 0.0559 +0 0.1825 +0 0.0647 +0 0.1213 +0 0.1289 +0 0.1323 +0 0.0715 +0 0.1671 +0 0.2196 +0 0.0725 +0 0.0759 +0 0.1027 +0 0.0677 +0 0.0844 +1 0.8707 +0 0.3621 +0 0.2444 +0 0.1775 +0 0.0793 +0 0.1416 +0 0.0616 +0 0.0390 +0 0.0653 +0 0.6649 +0 0.1312 +0 0.3914 +0 0.3477 +0 0.0833 +0 0.0530 +0 0.0709 +0 0.1131 +0 0.0782 +0 0.0809 +0 0.2684 +0 0.0588 +0 0.0487 +0 0.1039 +0 0.1503 +0 0.1465 +0 0.1291 +0 0.5710 +0 0.0811 +0 0.0351 +0 0.0369 +0 0.1038 +1 0.7679 +0 0.0493 +0 0.1056 +0 0.2710 +0 0.1575 +0 0.2417 +0 0.0753 +0 0.1633 +0 0.0843 +0 0.1207 +1 0.8401 +0 0.1088 +0 0.1171 +0 0.0640 +0 0.0748 +0 0.0554 +0 0.1126 +0 0.1112 +0 0.0520 +0 0.1018 +0 0.1009 +0 0.1751 +0 0.0566 +0 0.2250 +0 0.2135 +0 0.0571 +0 0.2279 +0 0.0918 +0 0.1164 +0 0.0917 +0 0.0478 +1 0.7762 +0 0.0611 +0 0.0577 +0 0.1531 +0 0.0602 +0 0.0414 +0 0.1000 +0 0.1800 +0 0.1488 +0 0.1027 +0 0.0779 +0 0.2335 +0 0.3269 +0 0.0749 +0 0.0767 +0 0.0875 +0 0.0635 +0 0.0412 +0 0.0760 +0 0.0610 +0 0.1811 +0 0.1041 +0 0.1471 +0 0.1776 +0 0.1384 +0 0.1318 +0 0.0456 +0 0.3512 +0 0.0445 +0 0.1085 +0 0.0607 +0 0.1092 +0 0.0392 +0 0.0903 +0 0.1977 +0 0.0974 +0 0.0611 +0 0.1311 +0 0.0427 +0 0.0820 +0 0.1195 +0 0.1896 +0 0.0900 +0 0.0771 +0 0.2636 +0 0.2044 +0 0.0341 +0 0.1028 +0 0.1241 +0 0.0889 +0 0.0855 +0 0.1500 +0 0.0907 +0 0.0507 +0 0.2164 +0 0.0593 +0 0.5653 +0 0.0741 +0 0.1261 +0 0.6587 +0 0.3395 +0 0.0662 +0 0.0353 +0 0.0996 +0 0.2925 +0 0.3605 +0 0.1122 +0 0.0728 +0 0.0392 +0 0.0689 +0 0.0623 +0 0.0481 +0 0.2293 +0 0.1438 +0 0.0762 +0 0.0984 +0 0.0514 +0 0.0537 +0 0.0663 +0 0.1402 +0 0.1044 +0 0.0360 +0 0.0601 +0 0.1581 +0 0.4071 +0 0.2095 +0 0.2504 +0 0.0308 +0 0.3189 +0 0.0957 +0 0.1602 +0 0.0506 +0 0.1721 +0 0.1390 +0 0.0696 +0 0.0617 +0 0.1867 +0 0.1328 +0 0.0465 +0 0.1505 +0 0.1725 +0 0.0503 +0 0.0639 +0 0.0546 +0 0.0771 +0 0.4704 +0 0.2058 +0 0.0438 +0 0.2692 +0 0.0823 +0 0.0563 +0 0.0747 +0 0.3029 +0 0.1522 +0 0.1373 +0 0.0708 +0 0.1890 +0 0.1424 +0 0.1680 +0 0.1663 +0 0.0800 +0 0.1539 +0 0.2591 +0 0.1034 +0 0.0893 +0 0.1902 +0 0.1075 +0 0.1177 +0 0.1761 +0 0.2113 +0 0.2181 +0 0.0952 +0 0.1543 +0 0.1189 +0 0.3247 +0 0.1360 +0 0.1229 +0 0.0872 +0 0.1600 +0 0.1805 +0 0.6515 +0 0.0883 +0 0.2250 +0 0.0729 +0 0.0714 +0 0.1992 +0 0.0924 +0 0.0527 +0 0.0420 +0 0.1410 +0 0.0593 +0 0.0932 +0 0.2390 +0 0.2608 +0 0.0759 +0 0.3785 +0 0.0854 +0 0.0905 +0 0.1136 +0 0.2288 +0 0.0700 +0 0.0472 +0 0.1590 +0 0.3014 +0 0.2208 +0 0.0855 +0 0.4129 +0 0.0498 +0 0.4326 +0 0.1027 +0 0.0922 +0 0.0773 +0 0.0786 +0 0.0853 +0 0.5186 +1 0.8403 +0 0.1818 +0 0.0867 +0 0.1663 +0 0.1146 +0 0.1241 +0 0.4550 +0 0.1078 +0 0.1327 +0 0.2475 +0 0.1285 +0 0.5998 +0 0.2245 +0 0.3873 +0 0.1479 +0 0.1668 +0 0.1174 +0 0.2392 +0 0.0820 +0 0.1265 +0 0.0869 +0 0.0754 +0 0.1442 +0 0.0998 +0 0.0454 +0 0.0586 +0 0.1546 +0 0.0739 +0 0.0795 +0 0.0445 +0 0.0813 +0 0.1109 +0 0.0636 +0 0.1309 +0 0.2061 +0 0.3135 +0 0.1538 +0 0.2593 +0 0.2494 +0 0.1456 +0 0.0597 +0 0.1165 +0 0.2288 +0 0.0758 +0 0.0691 +0 0.1132 +0 0.1171 +0 0.0742 +0 0.0774 +0 0.0674 +0 0.0868 +0 0.1748 +0 0.1418 +0 0.3463 +0 0.1304 +0 0.0603 +0 0.1108 +0 0.0732 +0 0.2309 +0 0.2061 +0 0.6479 +0 0.0933 +0 0.1565 +0 0.1207 +0 0.1012 +0 0.0712 +0 0.0582 +0 0.0906 +0 0.0784 +0 0.1404 +0 0.1331 +0 0.0300 +0 0.1323 +0 0.0602 +0 0.1444 +0 0.1039 +0 0.0358 +0 0.1942 +0 0.0851 +0 0.2910 +0 0.6895 +0 0.1226 +0 0.1038 +0 0.0598 +0 0.1478 +0 0.1370 +0 0.0921 +0 0.1165 +0 0.0766 +0 0.1097 +0 0.1321 +0 0.0960 +0 0.0485 +0 0.0685 +0 0.0510 +0 0.0512 +0 0.3436 +0 0.6243 +0 0.1002 +0 0.2867 +0 0.0693 +0 0.1327 +0 0.0938 +0 0.0978 +0 0.0926 +0 0.1384 +0 0.1948 +0 0.1727 +0 0.1671 +0 0.0952 +0 0.1027 +0 0.1417 +0 0.0809 +0 0.1021 +0 0.1191 +0 0.1131 +0 0.0539 +0 0.1059 +0 0.0528 +0 0.1954 +0 0.3157 +0 0.0553 +0 0.4168 +0 0.0881 +0 0.0572 +0 0.0780 +0 0.1406 +0 0.5933 +0 0.0650 +0 0.0720 +0 0.7332 +0 0.1089 +0 0.0714 +0 0.0747 +0 0.0534 +0 0.1210 +0 0.0473 +0 0.2519 +0 0.1609 +0 0.2394 +0 0.0550 +0 0.0677 +0 0.0948 +0 0.2111 +0 0.0940 +0 0.2924 +0 0.0447 +0 0.1075 +0 0.0749 +0 0.1548 +0 0.1853 +0 0.1654 +0 0.2402 +0 0.0738 +0 0.1809 +0 0.1058 +0 0.1702 +0 0.0923 +0 0.1224 +0 0.0700 +0 0.1367 +0 0.6672 +0 0.1802 +0 0.0719 +0 0.1054 +0 0.0777 +0 0.0653 +0 0.2324 +0 0.0656 +0 0.2762 +0 0.0686 +0 0.0671 +0 0.1209 +0 0.0923 +0 0.0510 +0 0.0572 +0 0.1486 +0 0.1160 +0 0.1071 +0 0.2166 +0 0.0867 +0 0.0546 +0 0.1129 +0 0.1068 +0 0.0963 +0 0.0659 +0 0.0421 +0 0.0518 +0 0.2023 +0 0.0304 +0 0.0698 +0 0.0984 +0 0.0943 +0 0.2011 +0 0.0420 +0 0.1054 +0 0.0824 +0 0.0897 +0 0.1434 +0 0.0371 +0 0.2228 +0 0.1915 +0 0.0494 +0 0.0527 +0 0.0855 +0 0.0710 +0 0.1004 +0 0.0797 +0 0.2845 +0 0.1212 +0 0.1508 +0 0.1231 +0 0.0411 +0 0.2712 +1 0.7895 +0 0.3649 +0 0.0848 +0 0.1295 +0 0.0338 +0 0.1031 +0 0.1686 +0 0.0815 +0 0.1601 +0 0.0991 +1 0.5129 +0 0.0902 +0 0.1181 +0 0.0447 +0 0.0744 +0 0.2642 +0 0.3997 +0 0.0443 +0 0.3156 +0 0.0434 +0 0.0877 +0 0.1649 +0 0.1075 +0 0.2089 +0 0.1037 +0 0.0875 +0 0.0692 +0 0.0856 +0 0.2379 +0 0.1086 +0 0.1438 +0 0.0594 +0 0.0382 +0 0.1196 +0 0.6319 +0 0.0872 +0 0.0668 +0 0.0394 +0 0.0904 +0 0.0544 +0 0.0442 +0 0.1056 +0 0.0802 +0 0.2565 +0 0.0863 +0 0.1714 +0 0.1226 +0 0.0362 +0 0.0540 +0 0.2404 +0 0.0537 +0 0.0675 +0 0.1179 +0 0.6348 +0 0.1745 +0 0.1106 +0 0.0663 +0 0.1785 +0 0.0490 +0 0.0518 +0 0.0556 +0 0.2398 +0 0.2686 +1 0.8110 +0 0.2105 +0 0.0924 +0 0.1241 +1 0.7970 +0 0.2546 +0 0.3389 +0 0.0519 +1 0.8644 +0 0.1192 +0 0.1877 +0 0.1367 +0 0.2192 +0 0.0719 +1 0.7527 +0 0.1303 +0 0.2860 +0 0.1255 +0 0.0985 +0 0.0647 +0 0.0785 +0 0.0729 +0 0.0366 +0 0.0618 +0 0.0595 +0 0.0572 +0 0.0813 +0 0.1279 +0 0.0519 +0 0.3630 +0 0.0996 +0 0.7448 +0 0.0549 +0 0.1176 +0 0.0490 +0 0.0935 +0 0.0550 +0 0.0490 +0 0.0720 +0 0.0443 +0 0.3195 +0 0.0872 +0 0.0792 +0 0.0557 +0 0.0744 +0 0.0631 +0 0.0769 +0 0.3241 +0 0.3116 +0 0.2389 +0 0.1132 +0 0.0771 +0 0.0955 +0 0.1689 +0 0.0865 +0 0.0678 +1 0.4755 +0 0.2269 +0 0.0364 +0 0.1091 +0 0.0956 +0 0.0448 +0 0.0670 +0 0.3416 +0 0.1372 +0 0.0399 +0 0.0492 +0 0.1480 +0 0.0398 +0 0.0316 +0 0.1323 +0 0.0596 +0 0.2130 +0 0.0769 +0 0.0658 +0 0.1464 +0 0.1424 +0 0.1260 +0 0.0503 +0 0.1308 +0 0.1872 +0 0.0878 +0 0.0992 +1 0.8123 +0 0.0554 +0 0.0751 +0 0.0374 +0 0.0430 +0 0.0589 +0 0.2043 +0 0.0443 +0 0.2078 +0 0.0765 +0 0.1014 +0 0.1998 +0 0.0669 +0 0.1379 +0 0.1312 +0 0.0329 +0 0.0703 +0 0.1561 +0 0.0711 +0 0.0344 +0 0.0985 +0 0.2391 +0 0.0959 +0 0.0858 +0 0.1357 +0 0.0450 +0 0.0610 +0 0.1460 +0 0.0967 +0 0.1178 +0 0.0767 +0 0.1637 +0 0.0807 +0 0.1046 +0 0.1008 +0 0.0811 +0 0.0686 +0 0.0665 +0 0.0975 +0 0.1362 +0 0.1023 +0 0.1464 +0 0.1614 +0 0.2295 +0 0.1774 +0 0.0648 +0 0.1448 +0 0.0644 +0 0.0844 +0 0.1347 +0 0.0883 +0 0.0727 +0 0.1525 +0 0.1602 +0 0.3405 +0 0.1207 +0 0.1338 +0 0.0637 +0 0.0314 +0 0.0594 +0 0.1965 +0 0.0977 +0 0.1217 +0 0.0449 +0 0.1024 +0 0.0769 +0 0.0871 +0 0.0676 +0 0.1016 +0 0.1672 +0 0.2014 +0 0.1109 +0 0.3085 +0 0.0338 +0 0.0930 +0 0.0759 +0 0.1334 +0 0.1350 +0 0.2272 +0 0.0874 +0 0.0757 +0 0.1877 +0 0.1716 +0 0.3315 +0 0.2309 +0 0.0602 +0 0.0656 +0 0.2302 +0 0.0538 +0 0.1080 +0 0.1728 +0 0.2261 +0 0.0650 +0 0.1491 +0 0.0735 +0 0.4293 +0 0.0346 +0 0.1797 +0 0.4640 +0 0.6941 +0 0.0411 +0 0.4815 +0 0.0764 +0 0.0646 +0 0.0986 +0 0.0642 +0 0.1222 +0 0.0679 +0 0.1157 +0 0.0915 +0 0.2612 +0 0.0695 +0 0.0525 +0 0.0900 +0 0.2648 +0 0.0760 +0 0.2034 +0 0.3506 +0 0.0917 +0 0.1166 +0 0.1362 +0 0.1260 +0 0.1398 +0 0.1310 +0 0.0813 +0 0.0615 +0 0.0732 +0 0.1501 +0 0.3661 +0 0.0974 +0 0.2193 +0 0.1035 +0 0.1043 +0 0.0894 +0 0.1666 +0 0.2836 +0 0.1404 +0 0.1671 +0 0.1020 +0 0.0764 +0 0.1872 +0 0.2467 +0 0.0730 +0 0.1173 +0 0.0366 +0 0.0680 +0 0.1097 +0 0.0666 +0 0.0992 +0 0.0678 +0 0.0867 +0 0.6250 +0 0.1162 +0 0.0930 +0 0.0988 +0 0.0452 +0 0.0930 +0 0.0440 +0 0.1157 +0 0.0761 +0 0.6909 +0 0.0745 +0 0.0611 +0 0.1788 +0 0.0919 +0 0.1725 +0 0.0765 +0 0.0439 +0 0.1919 +0 0.4868 +0 0.0593 +0 0.0504 +0 0.0749 +0 0.1659 +0 0.1150 +0 0.1361 +0 0.1285 +0 0.1736 +0 0.1613 +0 0.2357 +0 0.0835 +0 0.0663 +0 0.1936 +0 0.0680 +0 0.0861 +0 0.1453 +0 0.2240 +0 0.0316 +0 0.6825 +0 0.1135 +0 0.0788 +1 0.8145 +0 0.0998 +0 0.6287 +0 0.2692 +0 0.2822 +0 0.0652 +0 0.0721 +0 0.1288 +0 0.0421 +0 0.3940 +0 0.0949 +0 0.0538 +0 0.2307 +0 0.1797 +0 0.1372 +0 0.3287 +0 0.1881 +0 0.1008 +0 0.1829 +0 0.3645 +0 0.0608 +0 0.0852 +0 0.0828 +0 0.1243 +0 0.0719 +1 0.8039 +0 0.0466 +0 0.2081 +0 0.1326 +0 0.0754 +0 0.0375 +0 0.2501 +0 0.0999 +0 0.1426 +0 0.2146 +0 0.1310 +0 0.1282 +0 0.0531 +0 0.0960 +0 0.0358 +0 0.0449 +0 0.0527 +0 0.1903 +0 0.0453 +0 0.1914 +0 0.1001 +0 0.2010 +0 0.1268 +0 0.0938 +0 0.0717 +0 0.3863 +0 0.0832 +0 0.3520 +0 0.0866 +0 0.0865 +0 0.0766 +0 0.1694 +0 0.0590 +0 0.2022 +0 0.0710 +0 0.0665 +0 0.0746 +0 0.2774 +0 0.0674 +0 0.0424 +0 0.0446 +0 0.2192 +0 0.1092 +0 0.0660 +0 0.1881 +0 0.0856 +0 0.0682 +0 0.0743 +0 0.1413 +0 0.4326 +0 0.0813 +0 0.0755 +0 0.2174 +0 0.1127 +0 0.2110 +0 0.1340 +0 0.3358 +0 0.0727 +0 0.0856 +0 0.0882 +0 0.1271 +0 0.1272 +0 0.0799 +0 0.0456 +0 0.0573 +0 0.0983 +0 0.1091 +0 0.4607 +0 0.1302 +0 0.5559 +0 0.0480 +0 0.1711 +0 0.0829 +0 0.6774 +0 0.0525 +0 0.0610 +0 0.1247 +0 0.0884 +0 0.1082 +1 0.8343 +0 0.1952 +0 0.0701 +0 0.0459 +0 0.1106 +0 0.0924 +1 0.7731 +0 0.4994 +0 0.1230 +0 0.0900 +0 0.2898 +1 0.7701 +0 0.1027 +0 0.0807 +0 0.0791 +0 0.3549 +0 0.1922 +0 0.0723 +0 0.3116 +0 0.1176 +0 0.0985 +0 0.0578 +0 0.0671 +0 0.2127 +0 0.5211 +0 0.1943 +0 0.1419 +0 0.0632 +0 0.5410 +0 0.0717 +0 0.0608 +0 0.0968 +0 0.0823 +0 0.2095 +0 0.1750 +0 0.1036 +0 0.1048 +0 0.6110 +0 0.0673 +1 0.8136 +0 0.1317 +0 0.0757 +0 0.4321 +0 0.0929 +0 0.1901 +0 0.1208 +0 0.0477 +0 0.1589 +0 0.1224 +0 0.1999 +0 0.0911 +0 0.1514 +0 0.1095 +0 0.1151 +0 0.1015 +0 0.0537 +0 0.0945 +0 0.1519 +0 0.0764 +0 0.0840 +0 0.1304 +0 0.0512 +0 0.0707 +0 0.0969 +0 0.0545 +0 0.0735 +0 0.1905 +0 0.1792 +0 0.0846 +0 0.1597 +0 0.1030 +0 0.0992 +0 0.1641 +0 0.0735 +0 0.1907 +0 0.0829 +0 0.1009 +0 0.1276 +0 0.0671 +0 0.0600 +0 0.0958 +0 0.0713 +0 0.0444 +0 0.2473 +0 0.0965 +0 0.0995 +0 0.0873 +0 0.1171 +0 0.0824 +0 0.1004 +0 0.0387 +0 0.0617 +0 0.2590 +0 0.0518 +0 0.1028 +0 0.0841 +0 0.0464 +0 0.1258 +0 0.0684 +0 0.2897 +0 0.0590 +0 0.2251 +0 0.1319 +0 0.0532 +0 0.2180 +0 0.0593 +0 0.0556 +0 0.1129 +0 0.1053 +0 0.0992 +0 0.0582 +0 0.0563 +0 0.1196 +0 0.1880 +0 0.0485 +0 0.1215 +0 0.5440 +0 0.1597 +0 0.1056 +0 0.0649 +0 0.0698 +0 0.0776 +0 0.1657 +0 0.1044 +0 0.3245 +0 0.0778 +0 0.1291 +0 0.0620 +0 0.3648 +0 0.0808 +0 0.0713 +0 0.1031 +0 0.5085 +0 0.4062 +0 0.1750 +0 0.1269 +0 0.0894 +0 0.1037 +0 0.1382 +0 0.2696 +0 0.0982 +0 0.0825 +0 0.0801 +0 0.1360 +0 0.0594 +0 0.1775 +0 0.0743 +0 0.2068 +0 0.1764 +0 0.1331 +0 0.0926 +0 0.2170 +0 0.0421 +0 0.5248 +0 0.1811 +0 0.2357 +0 0.0736 +0 0.2484 +0 0.0660 +0 0.1082 +0 0.0960 +0 0.0766 +0 0.1294 +0 0.0616 +0 0.2962 +0 0.0770 +0 0.1527 +0 0.0496 +0 0.6935 +0 0.0831 +0 0.1500 +0 0.1169 +0 0.1092 +0 0.0860 +0 0.0484 +0 0.2451 +0 0.3690 +0 0.0736 +0 0.6161 +0 0.0361 +0 0.6891 +0 0.1039 +0 0.1465 +0 0.0839 +0 0.0592 +0 0.0424 +0 0.1895 +0 0.0969 +0 0.0910 +0 0.1102 +0 0.1189 +0 0.2219 +0 0.0899 +0 0.1117 +0 0.1544 +0 0.2664 +0 0.1113 +0 0.2597 +0 0.0989 +0 0.0660 +0 0.0680 +0 0.0729 +0 0.0629 +0 0.5185 +0 0.5895 +0 0.0659 +0 0.0415 +0 0.2113 +0 0.1156 +0 0.0957 +0 0.2486 +0 0.0823 +0 0.2274 +0 0.0855 +0 0.2451 +0 0.0817 +0 0.0705 +0 0.3435 +0 0.0737 +0 0.1001 +1 0.8511 +0 0.1563 +0 0.0996 +0 0.1322 +0 0.1975 +0 0.0646 +0 0.1762 +0 0.0697 +0 0.0715 +0 0.0665 +0 0.2835 +0 0.0375 +0 0.1411 +0 0.0999 +0 0.6386 +0 0.2346 +0 0.0991 +0 0.1257 +0 0.1084 +0 0.2596 +0 0.6646 +0 0.5307 +0 0.1113 +0 0.2631 +0 0.0550 +0 0.1723 +0 0.0642 +0 0.0463 +0 0.0466 +0 0.0765 +0 0.0476 +0 0.0778 +0 0.0621 +0 0.6898 +0 0.1668 +0 0.0781 +0 0.0710 +0 0.0472 +0 0.0586 +0 0.0523 +0 0.3913 +0 0.1029 +0 0.0877 +0 0.1333 +0 0.0734 +0 0.0814 +0 0.0467 +0 0.1167 +0 0.1047 +0 0.0496 +0 0.1310 +0 0.2165 +0 0.1159 +0 0.0567 +0 0.1946 +0 0.0546 +0 0.0920 +0 0.0984 +0 0.0821 +1 0.8473 +0 0.0810 +0 0.0788 +0 0.0322 +0 0.1459 +0 0.1036 +0 0.2424 +0 0.0453 +0 0.0765 +0 0.0806 +0 0.1075 +0 0.1282 +0 0.1259 +0 0.5540 +0 0.0884 +0 0.0788 +0 0.0960 +0 0.1154 +0 0.1306 +0 0.1683 +0 0.2594 +0 0.0881 +0 0.1750 +0 0.0630 +0 0.1659 +0 0.0949 +0 0.1509 +0 0.0387 +0 0.0349 +0 0.0678 +0 0.0941 +0 0.0661 +0 0.3131 +0 0.2709 +0 0.0572 +0 0.0452 +0 0.0697 +0 0.0789 +0 0.1318 +0 0.1096 +0 0.0696 +0 0.0363 +0 0.0485 +0 0.2647 +0 0.6288 +0 0.0620 +0 0.1794 +0 0.0607 +0 0.0549 +0 0.4039 +0 0.1974 +0 0.2252 +0 0.0424 +0 0.0807 +0 0.1710 +0 0.4630 +0 0.1976 +0 0.1632 +0 0.1236 +0 0.1199 +0 0.0855 +0 0.1918 +0 0.6737 +0 0.0888 +0 0.1764 +0 0.0603 +0 0.0944 +0 0.1265 +0 0.0851 +0 0.0901 +0 0.0858 +0 0.0496 +0 0.0950 +0 0.0440 +0 0.1021 +0 0.0692 +0 0.2035 +0 0.0891 +0 0.0354 +0 0.1815 +0 0.0544 +0 0.2353 +0 0.1156 +0 0.0864 +0 0.0561 +0 0.0624 +0 0.1526 +0 0.1140 +0 0.1072 +0 0.0641 +0 0.1459 +0 0.0893 +0 0.3734 +0 0.2824 +0 0.0487 +0 0.0402 +0 0.3722 +0 0.4581 +0 0.0444 +0 0.0386 +0 0.0813 +0 0.0611 +0 0.0485 +0 0.0414 +0 0.0786 +0 0.0400 +0 0.2255 +0 0.2510 +0 0.0708 +0 0.0578 +0 0.0762 +0 0.0532 +0 0.2693 +0 0.0901 +0 0.1552 +0 0.2863 +1 0.8160 +0 0.0904 +0 0.0975 +0 0.0793 +0 0.0678 +0 0.0778 +0 0.0711 +0 0.0832 +0 0.0340 +0 0.0494 +0 0.0502 +0 0.1145 +0 0.1844 +0 0.0989 +0 0.1107 +0 0.1133 +0 0.0526 +0 0.4474 +0 0.0432 +0 0.0824 +0 0.0691 +0 0.0662 +0 0.0942 +0 0.1011 +0 0.0674 +0 0.0891 +0 0.1038 +0 0.1373 +0 0.3812 +1 0.7792 +0 0.0788 +0 0.2013 +0 0.1317 +0 0.3636 +0 0.4997 +0 0.1626 +0 0.0593 +0 0.0606 +0 0.1631 +0 0.2114 +0 0.0869 +0 0.3435 +0 0.0353 +0 0.0787 +0 0.1956 +0 0.0433 +0 0.0655 +0 0.2804 +0 0.0832 +0 0.0546 +0 0.0867 +0 0.0784 +0 0.0677 +0 0.0456 +0 0.1262 +0 0.0984 +0 0.0799 +0 0.1243 +0 0.3400 +0 0.0985 +0 0.1427 +0 0.2642 +0 0.1530 +0 0.0966 +0 0.0982 +0 0.1683 +0 0.1714 +0 0.0656 +0 0.1330 +0 0.0669 +0 0.1517 +0 0.1446 +0 0.1429 +0 0.0452 +0 0.1501 +0 0.1099 +0 0.1207 +0 0.7234 +0 0.0577 +0 0.0824 +0 0.1357 +0 0.0409 +0 0.1988 +0 0.0894 +0 0.0785 +0 0.1981 +0 0.1136 +0 0.1830 +0 0.0932 +0 0.2014 +0 0.0981 +0 0.0647 +0 0.1695 +0 0.0799 +0 0.0724 +0 0.2845 +0 0.0680 +0 0.2515 +0 0.0907 +0 0.1322 +0 0.0859 +0 0.3768 +0 0.1982 +0 0.0578 +0 0.1266 +0 0.0697 +0 0.0769 +0 0.0456 +0 0.0885 +0 0.2795 +0 0.0617 +0 0.0883 +0 0.1705 +0 0.0611 +0 0.1065 +0 0.0623 +0 0.1041 +0 0.1213 +0 0.0778 +0 0.0886 +0 0.2920 +0 0.0849 +0 0.2044 +0 0.1310 +0 0.1267 +0 0.1400 +0 0.0819 +0 0.0394 +0 0.0746 +0 0.1044 +0 0.0937 +0 0.0974 +0 0.0322 +0 0.4123 +0 0.1690 +0 0.0467 +0 0.0789 +0 0.1344 +0 0.0985 +0 0.1655 +0 0.4632 +0 0.0483 +0 0.2086 +0 0.0449 +0 0.0532 +0 0.0977 +0 0.0568 +0 0.1177 +0 0.0325 +0 0.0779 +0 0.0549 +0 0.1397 +0 0.1331 +0 0.0979 +0 0.2853 +0 0.1242 +1 0.7616 +0 0.1324 +0 0.2172 +0 0.0808 +0 0.1684 +0 0.2628 +0 0.0918 +0 0.0687 +0 0.1492 +0 0.1743 +0 0.2737 +0 0.0593 +0 0.1043 +0 0.1822 +0 0.2087 +1 0.7930 +0 0.0648 +0 0.2363 +0 0.0816 +0 0.2417 +0 0.5809 +0 0.0663 +0 0.0535 +0 0.0703 +0 0.1183 +0 0.1635 +0 0.1272 +0 0.0537 +0 0.2045 +0 0.0657 +0 0.0686 +0 0.1711 +0 0.0812 +0 0.4865 +0 0.1017 +0 0.1325 +0 0.0701 +0 0.2877 +0 0.1223 +0 0.3468 +0 0.1973 +0 0.2096 +1 0.8709 +0 0.0428 +0 0.0839 +0 0.0848 +0 0.2594 +0 0.0908 +0 0.4692 +0 0.1293 +0 0.0844 +0 0.0762 +0 0.0915 +0 0.1936 +0 0.0828 +0 0.0924 +0 0.5094 +0 0.0544 +0 0.0683 +0 0.2335 +0 0.0771 +0 0.1557 +0 0.0828 +0 0.6403 +0 0.3966 +0 0.0723 +0 0.1531 +0 0.0346 +0 0.1075 +0 0.0488 +1 0.8187 +0 0.2766 +0 0.0996 +0 0.0340 +0 0.0907 +0 0.0746 +0 0.1410 +0 0.2562 +0 0.0621 +0 0.0871 +0 0.0844 +0 0.2130 +0 0.0782 +0 0.0639 +0 0.1511 +0 0.0741 +0 0.2457 +0 0.2530 +0 0.1806 +0 0.0879 +0 0.1218 +0 0.0641 +0 0.0843 +0 0.1052 +0 0.2035 +0 0.0523 +0 0.0719 +0 0.1057 +0 0.0691 +0 0.0374 +0 0.0497 +0 0.0752 +0 0.2268 +0 0.1587 +0 0.1885 +0 0.2950 +0 0.1250 +0 0.1911 +0 0.1369 +0 0.2345 +0 0.1305 +0 0.2088 +0 0.1377 +0 0.1296 +0 0.0481 +0 0.1014 +0 0.0748 +0 0.1138 +0 0.3264 +0 0.0651 +0 0.1162 +0 0.1696 +0 0.1756 +0 0.2164 +0 0.0787 +0 0.3396 +0 0.0577 +0 0.0908 +0 0.0943 +0 0.1095 +0 0.4420 +0 0.3381 +0 0.0856 +0 0.0485 +0 0.1032 +0 0.1128 +0 0.0853 +0 0.0958 +0 0.1609 +0 0.0725 +1 0.8132 +0 0.1150 +0 0.0940 +0 0.0837 +0 0.0753 +0 0.1277 +0 0.4110 +0 0.5124 +0 0.1117 +0 0.0455 +0 0.3521 +0 0.0929 +0 0.0741 +0 0.2038 +0 0.1147 +0 0.2150 +0 0.0399 +0 0.1195 +0 0.1480 +0 0.0402 +0 0.0751 +0 0.1118 +0 0.2181 +0 0.0770 +0 0.0791 +0 0.0618 +0 0.0688 +0 0.1216 +0 0.1668 +0 0.0831 +0 0.1603 +0 0.1279 +0 0.0560 +0 0.0594 +0 0.0643 +0 0.0335 +0 0.0950 +0 0.0685 +0 0.1609 +0 0.0442 +0 0.0589 +0 0.1167 +0 0.1244 +0 0.0817 +0 0.0873 +0 0.0612 +0 0.1180 +0 0.1196 +0 0.1515 +0 0.0801 +0 0.0681 +0 0.1127 +0 0.0975 +0 0.1016 +0 0.1246 +0 0.2147 +0 0.1252 +0 0.0367 +0 0.1079 +0 0.1143 +0 0.0703 +0 0.0390 +0 0.1604 +0 0.0618 +0 0.1641 +0 0.1130 +0 0.0716 +0 0.0671 +0 0.1556 +0 0.0558 +0 0.1940 +0 0.0941 +0 0.0951 +0 0.0982 +0 0.2026 +0 0.1250 +0 0.1810 +0 0.0771 +0 0.6540 +0 0.0591 +0 0.2464 +0 0.1059 +0 0.1712 +0 0.1025 +0 0.1939 +0 0.0432 +0 0.0500 +0 0.1188 +0 0.1054 +0 0.0839 +0 0.6748 +0 0.2029 +0 0.3384 +0 0.2440 +0 0.1089 +0 0.0510 +0 0.1019 +0 0.3024 +0 0.0883 +0 0.0829 +0 0.0853 +0 0.0815 +0 0.0788 +0 0.0966 +0 0.1997 +0 0.0437 +0 0.0955 +0 0.1150 +0 0.1322 +0 0.1528 +0 0.1151 +0 0.1994 +0 0.3008 +0 0.0932 +0 0.0648 +0 0.0389 +0 0.6595 +0 0.0488 +0 0.1343 +0 0.0499 +0 0.2116 +0 0.0703 +0 0.0832 +0 0.0384 +0 0.1823 +0 0.0560 +0 0.1845 +0 0.0353 +0 0.2172 +0 0.1193 +0 0.0494 +0 0.0673 +0 0.0990 +0 0.1407 +0 0.0974 +0 0.1175 +0 0.2190 +0 0.5087 +0 0.1892 +0 0.0652 +0 0.2012 +0 0.1242 +0 0.0703 +0 0.0853 +0 0.0820 +0 0.5355 +0 0.1130 +0 0.0897 +0 0.1010 +0 0.0546 +0 0.0985 +0 0.4117 +0 0.0512 +0 0.1583 +0 0.1812 +0 0.2118 +0 0.1391 +0 0.1054 +0 0.1025 +0 0.1599 +0 0.0714 +0 0.1238 +0 0.1325 +0 0.1812 +0 0.0972 +0 0.1438 +0 0.0433 +0 0.1296 +0 0.1036 +0 0.2489 +0 0.0581 +0 0.1655 +0 0.0524 +0 0.0744 +0 0.6678 +0 0.0541 +0 0.1448 +0 0.2412 +0 0.2401 +0 0.1434 +0 0.1031 +0 0.2259 +0 0.1243 +0 0.0523 +0 0.4841 +0 0.5935 +0 0.0568 +0 0.1189 +0 0.0729 +0 0.0381 +0 0.0809 +0 0.1947 +0 0.0966 +0 0.0683 +0 0.0794 +0 0.2011 +0 0.1395 +0 0.1592 +0 0.6592 +0 0.0468 +0 0.1288 +0 0.1713 +0 0.1315 +0 0.1243 +0 0.2693 +0 0.0526 +0 0.0749 +0 0.0793 +0 0.2355 +0 0.0530 +0 0.6376 +0 0.0825 +0 0.1905 +0 0.1575 +0 0.0565 +0 0.3373 +0 0.1863 +0 0.0857 +0 0.0737 +0 0.7219 +0 0.0533 +0 0.1826 +0 0.2593 +0 0.1496 +0 0.1305 +0 0.2649 +0 0.1013 +0 0.2445 +0 0.1194 +0 0.0625 +0 0.5065 +0 0.0925 +0 0.1404 +0 0.1453 +0 0.1984 +0 0.5595 +0 0.0576 +0 0.0810 +0 0.0708 +0 0.0619 +0 0.1054 +0 0.1269 +0 0.2806 +0 0.4217 +0 0.1553 +0 0.0660 +0 0.0823 +0 0.0572 +0 0.0723 +0 0.0997 +0 0.2060 +0 0.1152 +0 0.1513 +0 0.0585 +0 0.1103 +0 0.1873 +0 0.0645 +0 0.0807 +0 0.1886 +0 0.1562 +0 0.1326 +0 0.0911 +0 0.1185 +0 0.1935 +0 0.1021 +0 0.1696 +0 0.0313 +0 0.1729 +0 0.0424 +0 0.1027 +0 0.0538 +0 0.0604 +0 0.0726 +0 0.1008 +0 0.0502 +0 0.1485 +0 0.1322 +0 0.1271 +0 0.1017 +0 0.0736 +0 0.1023 +0 0.0604 +0 0.1027 +0 0.1339 +0 0.1154 +0 0.1710 +0 0.1902 +0 0.7044 +0 0.1713 +0 0.2385 +0 0.0673 +0 0.1943 +0 0.0708 +1 0.7616 +0 0.0463 +0 0.1214 +0 0.1546 +0 0.0551 +0 0.5159 +0 0.0819 +0 0.1267 +1 0.8243 +0 0.0883 +0 0.1075 +0 0.3320 +0 0.3926 +0 0.1358 +0 0.1657 +0 0.1224 +0 0.0662 +0 0.0573 +0 0.0760 +0 0.0639 +0 0.0337 +0 0.0482 +0 0.1877 +0 0.2292 +0 0.0877 +0 0.2596 +0 0.2190 +0 0.3372 +0 0.0751 +0 0.0933 +0 0.0710 +0 0.0955 +0 0.0504 +0 0.0936 +0 0.0858 +0 0.0792 +0 0.1324 +0 0.6017 +0 0.1097 +0 0.0904 +0 0.0960 +0 0.0751 +0 0.0671 +0 0.0984 +0 0.1144 +0 0.1386 +0 0.1022 +0 0.1597 +0 0.0419 +0 0.1443 +0 0.0697 +0 0.1862 +0 0.0997 +0 0.1427 +0 0.3202 +0 0.0452 +0 0.0749 +0 0.2121 +0 0.0751 +0 0.0637 +0 0.0379 +0 0.2493 +0 0.1236 +0 0.0574 +0 0.1930 +0 0.3664 +0 0.1312 +0 0.1183 +1 0.7715 +0 0.1652 +0 0.1453 +0 0.3389 +0 0.0839 +0 0.1228 +0 0.0774 +0 0.1314 +0 0.1511 +0 0.1434 +0 0.0570 +0 0.0937 +0 0.0787 +0 0.1014 +0 0.0865 +0 0.1405 +0 0.1160 +0 0.1657 +0 0.1046 +0 0.1962 +0 0.0582 +0 0.0647 +0 0.0769 +0 0.4297 +0 0.0576 +0 0.0827 +0 0.1181 +0 0.0927 +0 0.0931 +0 0.0426 +0 0.1468 +0 0.0815 +0 0.0932 +0 0.0889 +0 0.0947 +0 0.1172 +0 0.1191 +0 0.1782 +0 0.0376 +0 0.0546 +0 0.1370 +0 0.1254 +0 0.0809 +0 0.0592 +0 0.1373 +0 0.0350 +0 0.0806 +0 0.2003 +0 0.1328 +0 0.1407 +0 0.1943 +0 0.0980 +0 0.1417 +0 0.2112 +0 0.0591 +0 0.1401 +0 0.1218 +0 0.2102 +0 0.1179 +0 0.1013 +0 0.1863 +0 0.0575 +0 0.2073 +0 0.0941 +0 0.1352 +0 0.0623 +0 0.1972 +0 0.0966 +0 0.0563 +0 0.1049 +0 0.2379 +0 0.0716 +0 0.1084 +0 0.0627 +0 0.1365 +0 0.1161 +0 0.2223 +0 0.0739 +0 0.0444 +0 0.4071 +0 0.1535 +0 0.1442 +0 0.0761 +0 0.0820 +0 0.2147 +0 0.0720 +0 0.0856 +0 0.0799 +0 0.1037 +0 0.0651 +0 0.0858 +0 0.1062 +0 0.2148 +0 0.1113 +0 0.3617 +0 0.0821 +0 0.0597 +0 0.2135 +0 0.0899 +0 0.2331 +0 0.0611 +0 0.0410 +0 0.1152 +0 0.0731 +0 0.2431 +0 0.1998 +0 0.1568 +0 0.1010 +0 0.1167 +0 0.0836 +0 0.0819 +0 0.0855 +0 0.0653 +0 0.0956 +0 0.1689 +0 0.0818 +0 0.1603 +0 0.0717 +0 0.1305 +0 0.2514 +0 0.0460 +0 0.1588 +0 0.0865 +0 0.1002 +0 0.1512 +0 0.0490 +0 0.0890 +0 0.1264 +0 0.3994 +0 0.0557 +0 0.1287 +0 0.0739 +0 0.0889 +0 0.1467 +0 0.0802 +0 0.1577 +0 0.1276 +0 0.1449 +0 0.7438 +0 0.3033 +0 0.3423 +0 0.1211 +0 0.0570 +0 0.1218 +0 0.0630 +0 0.1833 +0 0.1081 +0 0.1892 +0 0.0892 +0 0.0420 +0 0.0660 +0 0.0827 +0 0.1051 +0 0.3309 +0 0.1519 +0 0.2086 +0 0.2096 +0 0.0893 +0 0.0805 +0 0.3810 +0 0.0922 +0 0.2792 +0 0.1923 +0 0.2006 +0 0.1511 +0 0.0630 +0 0.0655 +0 0.1717 +0 0.1559 +0 0.1504 +0 0.0547 +0 0.2771 +0 0.1405 +0 0.0718 +0 0.2732 +0 0.0695 +0 0.1685 +0 0.0971 +0 0.1006 +0 0.1245 +0 0.1444 +0 0.0824 +0 0.0710 +0 0.2308 +0 0.2079 +0 0.1222 +0 0.0639 +0 0.0977 +0 0.1149 +0 0.7444 +0 0.0961 +0 0.4103 +0 0.1440 +0 0.1756 +0 0.1318 +0 0.0806 +0 0.2366 +0 0.0589 +0 0.1418 +0 0.1843 +0 0.0538 +0 0.3565 +0 0.0994 +0 0.1150 +0 0.2692 +0 0.2421 +0 0.0998 +0 0.0838 +0 0.2122 +0 0.0491 +0 0.0716 +0 0.0794 +0 0.0644 +0 0.2401 +0 0.1905 +0 0.0448 +0 0.0627 +0 0.0943 +0 0.0739 +0 0.2190 +0 0.1624 +0 0.0932 +0 0.1114 +0 0.2798 +0 0.1321 +0 0.1568 +0 0.1552 +0 0.2840 +0 0.0603 +0 0.6815 +0 0.1459 +0 0.1577 +0 0.1063 +0 0.0731 +0 0.0954 +0 0.1540 +0 0.0751 +0 0.0357 +0 0.0415 +0 0.1513 +0 0.1517 +0 0.0666 +0 0.1524 +0 0.0624 +0 0.1097 +0 0.2015 +0 0.6294 +0 0.1137 +0 0.3323 +0 0.1035 +0 0.1374 +0 0.2023 +0 0.1675 +0 0.1405 +0 0.1474 +0 0.0875 +0 0.2530 +0 0.1380 +0 0.1217 +0 0.3357 +0 0.1816 +0 0.0912 +0 0.1421 +0 0.0750 +0 0.1066 +0 0.0985 +0 0.0924 +0 0.1025 +0 0.0479 +0 0.1469 +0 0.3264 +0 0.4197 +0 0.0373 +0 0.1081 +0 0.4184 +0 0.1004 +0 0.1487 +0 0.0694 +0 0.0853 +0 0.2974 +0 0.0584 +0 0.0903 +0 0.0877 +0 0.1557 +0 0.0723 +0 0.1028 +0 0.0675 +0 0.4018 +0 0.2500 +0 0.0544 +0 0.2728 +1 0.7576 +0 0.0820 +0 0.0878 +0 0.1770 +0 0.1976 +0 0.2265 +0 0.0980 +0 0.0534 +0 0.2547 +0 0.1225 +0 0.1528 +1 0.7836 +0 0.0577 +1 0.8701 +0 0.0725 +0 0.1901 +0 0.0771 +0 0.0615 +0 0.0468 +0 0.0680 +0 0.0773 +0 0.0637 +0 0.0840 +0 0.0994 +0 0.1218 +0 0.1222 +0 0.1060 +0 0.4018 +0 0.1340 +0 0.1176 +0 0.0407 +0 0.0687 +0 0.1058 +0 0.0539 +0 0.0987 +0 0.1528 +0 0.0653 +0 0.0803 +0 0.1416 +0 0.1900 +0 0.0778 +0 0.0821 +0 0.1668 +0 0.0590 +0 0.0776 +0 0.0546 +0 0.0548 +0 0.1237 +0 0.1013 +0 0.0471 +0 0.0656 +0 0.0804 +0 0.1914 +0 0.0636 +0 0.3208 +0 0.4245 +0 0.1314 +0 0.1156 +0 0.0816 +0 0.6062 +0 0.7353 +0 0.0603 +0 0.2046 +0 0.0743 +0 0.0807 +1 0.8635 +0 0.0460 +0 0.3194 +0 0.0911 +0 0.0712 +0 0.1589 +0 0.1083 +0 0.1032 +0 0.0572 +0 0.3248 +0 0.0726 +0 0.1887 +0 0.0948 +0 0.0666 +0 0.0870 +0 0.2011 +0 0.0534 +0 0.0849 +0 0.0454 +0 0.0776 +0 0.0779 +0 0.0459 +0 0.0908 +0 0.0528 +0 0.0886 +0 0.3632 +0 0.5306 +0 0.1000 +0 0.1267 +0 0.1821 +0 0.1312 +0 0.0432 +0 0.0832 +0 0.0731 +0 0.7002 +0 0.1295 +0 0.0980 +0 0.1544 +0 0.0477 +0 0.1288 +0 0.0946 +0 0.1206 +0 0.1175 +0 0.1059 +0 0.1073 +0 0.1263 +0 0.1762 +0 0.0503 +0 0.1255 +0 0.0681 +0 0.1094 +0 0.0938 +0 0.0628 +0 0.1085 +0 0.1049 +0 0.0751 +0 0.2068 +0 0.0612 +0 0.0940 +0 0.0693 +0 0.0754 +0 0.0948 +0 0.0453 +0 0.0864 +0 0.1774 +0 0.1160 +0 0.0751 +0 0.0921 +0 0.0548 +0 0.1159 +0 0.1074 +0 0.1275 +0 0.0911 +0 0.0642 +0 0.0934 +0 0.1161 +0 0.0954 +0 0.0662 +0 0.1806 +0 0.0918 +0 0.1047 +0 0.1142 +0 0.0551 +0 0.5086 +0 0.0547 +0 0.1193 +0 0.0985 +0 0.1030 +0 0.1344 +0 0.1221 +0 0.2263 +0 0.0991 +0 0.3007 +0 0.1139 +0 0.0640 +0 0.2650 +0 0.1659 +0 0.2706 +0 0.0537 +0 0.1204 +0 0.0571 +0 0.0971 +0 0.0564 +0 0.1726 +0 0.7350 +0 0.0687 +0 0.1081 +0 0.1622 +0 0.1395 +0 0.0901 +0 0.0912 +0 0.2082 +0 0.1327 +0 0.1600 +0 0.1117 +0 0.1719 +0 0.2529 +0 0.1871 +0 0.2331 +0 0.1709 +0 0.1254 +0 0.1448 +0 0.0651 +0 0.1881 +0 0.0642 +0 0.0949 +0 0.0440 +0 0.1750 +0 0.0823 +0 0.0499 +0 0.0584 +0 0.1459 +0 0.0852 +0 0.0686 +0 0.1780 +0 0.0705 +0 0.0930 +0 0.0917 +0 0.0655 +0 0.1647 +0 0.1326 +0 0.1483 +0 0.0628 +0 0.0591 +0 0.0563 +0 0.1431 +0 0.1203 +0 0.0396 +0 0.1146 +0 0.2743 +0 0.1060 +0 0.1367 +0 0.0735 +0 0.0999 +0 0.2490 +0 0.0842 +0 0.0352 +0 0.1068 +0 0.2061 +0 0.2660 +0 0.0936 +0 0.0985 +0 0.0524 +0 0.0800 +0 0.1239 +0 0.0666 +0 0.2829 +0 0.2701 +0 0.1555 +0 0.0674 +0 0.0625 +0 0.1158 +0 0.0806 +0 0.1523 +0 0.1612 +0 0.1413 +0 0.3554 +0 0.0504 +0 0.1842 +0 0.0850 +1 0.8516 +0 0.1507 +0 0.0507 +0 0.1862 +0 0.0944 +0 0.2755 +0 0.0459 +0 0.1042 +0 0.0662 +0 0.1117 +0 0.1428 +0 0.2193 +0 0.0697 +0 0.1312 +0 0.2146 +0 0.1308 +0 0.1589 +0 0.0852 +0 0.1185 +0 0.1107 +0 0.1520 +0 0.0420 +0 0.0735 +0 0.1211 +0 0.0825 +0 0.0901 +0 0.1144 +0 0.0954 +0 0.0993 +0 0.0718 +1 0.7943 +0 0.1986 +0 0.0586 +0 0.1412 +0 0.0717 +0 0.0550 +0 0.2478 +0 0.0957 +0 0.3597 +0 0.0883 +0 0.1019 +0 0.1100 +0 0.0903 +0 0.2156 +0 0.0756 +0 0.0467 +0 0.1111 +0 0.0582 +0 0.0611 +0 0.1366 +0 0.1772 +0 0.0556 +0 0.1406 +0 0.0748 +0 0.1888 +0 0.5707 +0 0.0748 +1 0.8168 +0 0.0415 +0 0.1957 +0 0.1172 +0 0.4007 +0 0.0605 +0 0.1045 +0 0.6038 +0 0.0930 +0 0.1162 +0 0.1571 +0 0.0669 +0 0.1216 +0 0.0422 +0 0.0311 +0 0.0466 +0 0.1047 +0 0.0402 +0 0.0838 +0 0.2135 +0 0.0723 +0 0.1012 +0 0.1322 +0 0.1070 +0 0.1174 +0 0.1422 +0 0.0639 +0 0.1227 +0 0.0658 +0 0.1367 +0 0.1018 +0 0.1087 +0 0.2049 +0 0.1216 +0 0.3390 +0 0.1271 +0 0.1678 +0 0.0602 +0 0.2715 +0 0.1157 +0 0.0939 +0 0.1653 +0 0.0500 +0 0.0873 +0 0.5647 +0 0.0461 +0 0.1308 +0 0.0400 +0 0.0822 +0 0.0967 +0 0.0834 +0 0.0461 +0 0.0651 +0 0.0941 +0 0.0702 +0 0.0896 +0 0.1770 +0 0.0836 +0 0.1066 +0 0.1173 +0 0.0724 +0 0.0642 +0 0.0424 +0 0.2762 +0 0.0731 +0 0.1287 +0 0.1794 +0 0.0518 +0 0.0676 +0 0.0859 +0 0.0566 +0 0.1109 +0 0.1516 +0 0.2580 +0 0.0433 +0 0.0897 +0 0.0873 +0 0.0746 +0 0.2568 +0 0.0923 +0 0.0803 +0 0.0961 +0 0.2165 +0 0.0777 +0 0.1358 +0 0.0600 +0 0.0754 +0 0.0569 +0 0.0952 +0 0.1350 +0 0.1230 +0 0.0600 +0 0.2363 +0 0.5682 +0 0.0816 +0 0.1448 +0 0.1512 +0 0.1888 +0 0.1063 +0 0.1894 +0 0.2062 +0 0.0979 +0 0.0884 +0 0.2556 +0 0.0748 +0 0.0623 +0 0.2466 +0 0.0994 +0 0.1324 +0 0.1173 +0 0.0809 +0 0.1146 +0 0.2680 +0 0.0986 +0 0.1364 +0 0.1210 +0 0.2946 +0 0.1169 +0 0.1615 +0 0.0729 +0 0.0701 +0 0.1372 +0 0.1413 +0 0.1406 +0 0.0594 +0 0.1293 +0 0.0909 +0 0.1773 +0 0.0841 +1 0.7823 +0 0.0839 +0 0.7099 +0 0.1615 +0 0.1263 +0 0.1563 +0 0.2088 +0 0.2206 +0 0.0899 +0 0.0726 +0 0.0789 +0 0.1123 +0 0.2684 +0 0.1500 +0 0.4027 +0 0.0468 +0 0.0987 +0 0.1579 +0 0.1657 +0 0.0860 +0 0.1851 +0 0.4097 +0 0.0823 +1 0.8104 +0 0.1283 +0 0.1398 +0 0.0911 +0 0.2176 +0 0.1033 +0 0.1196 +0 0.0848 +0 0.1723 +0 0.1370 +0 0.1245 +0 0.2063 +0 0.1096 +0 0.1369 +0 0.0707 +0 0.0572 +0 0.1213 +0 0.0617 +0 0.2009 +0 0.1330 +0 0.0769 +0 0.1499 +0 0.0539 +0 0.0990 +0 0.0592 +0 0.0541 +0 0.5473 +0 0.1157 +0 0.1093 +0 0.2196 +0 0.0865 +0 0.1134 +0 0.1548 +0 0.2484 +0 0.2324 +0 0.0626 +0 0.1795 +0 0.1194 +0 0.0321 +0 0.1256 +0 0.1682 +0 0.1208 +0 0.6260 +0 0.0874 +0 0.1122 +0 0.0676 +0 0.1081 +0 0.1287 +0 0.1247 +0 0.0511 +0 0.0368 +0 0.0788 +0 0.0732 +0 0.3262 +0 0.0902 +0 0.0545 +0 0.0615 +0 0.4703 +0 0.2237 +0 0.0746 +0 0.0719 +0 0.0632 +0 0.1282 +0 0.0553 +0 0.1167 +0 0.1371 +0 0.0424 +0 0.0772 +0 0.0807 +0 0.1834 +0 0.1798 +0 0.0826 +0 0.0474 +0 0.2107 +0 0.1003 +0 0.2809 +0 0.1137 +0 0.3116 +0 0.0976 +0 0.1823 +0 0.0824 +0 0.1360 +0 0.3689 +0 0.0479 +0 0.0422 +0 0.0452 +0 0.0874 +0 0.0962 +0 0.1365 +0 0.0716 +0 0.4256 +0 0.3345 +0 0.1309 +0 0.1631 +0 0.1468 +0 0.0877 +0 0.1638 +0 0.0408 +0 0.0705 +0 0.1230 +0 0.0555 +0 0.0912 +0 0.0883 +0 0.1282 +0 0.0902 +0 0.2650 +0 0.2066 +0 0.1502 +0 0.0756 +0 0.1026 +0 0.1051 +0 0.1630 +0 0.0642 +0 0.0757 +0 0.5809 +0 0.0912 +0 0.1267 +0 0.0708 +0 0.0845 +0 0.1718 +0 0.2439 +0 0.1459 +0 0.0925 +0 0.0578 +0 0.0587 +0 0.1850 +0 0.7201 +0 0.0840 +0 0.0855 +0 0.0553 +0 0.0994 +0 0.0874 +0 0.0818 +0 0.1304 +0 0.0518 +0 0.1005 +0 0.1102 +0 0.0510 +0 0.3285 +0 0.1157 +0 0.2304 +0 0.0992 +0 0.1180 +0 0.0466 +0 0.1523 +0 0.1615 +0 0.0456 +0 0.1256 +0 0.0538 +0 0.7489 +0 0.1542 +0 0.1203 +0 0.4700 +0 0.1395 +0 0.1567 +0 0.0372 +0 0.0735 +0 0.0526 +0 0.0336 +0 0.0905 +0 0.1545 +0 0.1398 +0 0.1194 +0 0.0915 +0 0.0620 +0 0.0396 +0 0.0433 +0 0.3756 +0 0.0562 +0 0.0423 +0 0.5405 +0 0.1345 +0 0.1461 +0 0.0417 +0 0.4919 +0 0.1152 +0 0.1572 +0 0.0788 +0 0.1055 +0 0.4097 +0 0.0946 +0 0.0367 +0 0.1225 +0 0.0993 +0 0.0846 +0 0.1180 +0 0.0759 +0 0.0647 +0 0.0802 +0 0.0522 +0 0.0466 +0 0.0899 +0 0.0665 +0 0.0662 +0 0.0530 +0 0.0529 +0 0.2466 +0 0.0661 +0 0.0863 +0 0.2708 +0 0.0932 +0 0.2142 +0 0.0873 +0 0.0630 +0 0.0509 +0 0.3256 +0 0.1090 +0 0.2429 +0 0.1042 +0 0.2320 +0 0.0675 +0 0.0347 +0 0.3312 +0 0.1202 +0 0.0369 +0 0.1336 +0 0.2511 +0 0.1454 +0 0.2269 +0 0.1159 +0 0.0686 +0 0.0552 +0 0.5454 +0 0.0959 +0 0.0586 +0 0.0515 +0 0.2962 +0 0.0883 +0 0.1159 +0 0.0654 +0 0.1668 +1 0.8209 +0 0.0570 +0 0.0778 +0 0.1109 +0 0.1265 +0 0.0746 +0 0.0610 +0 0.3836 +0 0.1183 +0 0.1802 +0 0.6023 +0 0.3100 +0 0.0460 +0 0.0859 +0 0.1099 +0 0.2003 +0 0.0335 +0 0.1208 +0 0.6619 +0 0.0584 +0 0.1213 +0 0.1098 +0 0.0603 +0 0.0838 +0 0.3705 +0 0.0693 +0 0.0890 +0 0.1047 +0 0.0578 +0 0.1959 +0 0.3673 +0 0.1416 +0 0.2520 +0 0.2063 +0 0.0716 +0 0.0437 +0 0.1103 +1 0.7576 +0 0.0914 +0 0.0569 +0 0.1660 +0 0.0432 +0 0.4598 +0 0.1151 +0 0.0725 +0 0.1189 +0 0.1141 +0 0.2860 +0 0.1478 +0 0.1722 +0 0.0972 +0 0.0907 +0 0.1135 +0 0.1893 +0 0.0498 +0 0.0442 +0 0.0683 +0 0.0948 +0 0.0503 +0 0.1359 +0 0.1266 +0 0.1347 +0 0.0775 +0 0.1088 +0 0.0725 +0 0.1268 +0 0.0955 +0 0.0464 +0 0.0697 +0 0.1515 +0 0.7165 +0 0.3580 +0 0.1641 +0 0.1007 +0 0.1152 +0 0.1331 +0 0.1577 +0 0.0883 +0 0.1622 +0 0.1692 +0 0.0506 +0 0.1482 +0 0.1186 +0 0.1557 +0 0.2409 +0 0.0982 +0 0.1368 +0 0.0785 +0 0.0769 +0 0.1083 +0 0.0787 +0 0.0985 +0 0.0535 +0 0.0459 +0 0.0885 +0 0.1013 +1 0.8025 +0 0.0777 +0 0.1188 +0 0.1660 +0 0.0955 +0 0.0439 +0 0.2288 +0 0.1090 +0 0.0441 +0 0.0554 +0 0.1340 +0 0.1003 +0 0.1210 +0 0.3703 +0 0.5051 +0 0.1514 +0 0.1232 +0 0.1662 +0 0.1923 +0 0.0493 +0 0.0651 +0 0.1344 +0 0.0626 +0 0.0774 +0 0.2661 +0 0.1261 +0 0.0734 +0 0.1587 +0 0.2166 +0 0.0767 +0 0.1524 +0 0.2318 +0 0.0528 +0 0.0834 +0 0.1636 +0 0.5842 +0 0.0747 +0 0.0691 +0 0.0557 +0 0.0768 +0 0.4941 +0 0.0975 +0 0.2284 +0 0.1292 +0 0.0650 +0 0.2146 +0 0.3759 +0 0.0405 +0 0.0974 +0 0.0754 +0 0.0568 +0 0.2222 +0 0.0478 +0 0.7146 +0 0.0555 +0 0.1281 +0 0.1252 +0 0.0633 +0 0.1259 +0 0.2831 +0 0.0315 +0 0.0956 +0 0.6002 +0 0.4342 +1 0.8298 +0 0.0455 +0 0.0417 +0 0.0570 +0 0.0785 +0 0.0664 +0 0.1920 +0 0.0890 +0 0.0466 +0 0.2316 +0 0.1292 +0 0.1116 +0 0.0789 +0 0.0875 +1 0.7839 +0 0.1519 +0 0.3215 +0 0.0617 +0 0.1068 +0 0.0651 +0 0.0559 +0 0.1014 +0 0.2435 +0 0.1830 +0 0.1115 +0 0.1905 +0 0.6379 +0 0.0745 +0 0.0865 +0 0.6575 +0 0.1187 +0 0.0698 +0 0.1350 +0 0.2408 +0 0.0970 +0 0.1180 +0 0.7452 +0 0.1895 +0 0.0765 +0 0.6099 +0 0.0693 +0 0.0837 +0 0.1759 +0 0.2407 +0 0.2133 +0 0.1327 +0 0.0819 +0 0.1215 +0 0.1048 +0 0.0593 +0 0.1951 +0 0.0696 +0 0.5968 +0 0.0675 +0 0.0612 +0 0.1122 +0 0.0941 +0 0.1837 +0 0.0633 +0 0.1240 +0 0.1537 +0 0.1142 +0 0.0988 +0 0.0879 +0 0.0345 +0 0.3542 +0 0.1635 +0 0.1370 +0 0.0879 +0 0.0407 +0 0.0565 +0 0.1417 +0 0.1107 +0 0.1487 +0 0.1390 +0 0.0891 +0 0.2288 +0 0.1038 +0 0.1328 +0 0.1102 +0 0.3125 +0 0.1733 +0 0.0940 +0 0.0684 +0 0.0679 +0 0.0710 +0 0.2233 +0 0.1556 +0 0.1317 +0 0.1354 +0 0.1669 +0 0.0906 +0 0.0469 +0 0.1650 +0 0.1126 +0 0.1059 +0 0.1550 +0 0.0459 +0 0.0791 +0 0.2123 +0 0.2928 +0 0.0891 +0 0.0406 +0 0.0815 +0 0.0775 +0 0.0727 +0 0.0465 +1 0.8227 +0 0.2223 +0 0.1084 +0 0.2735 +0 0.0606 +0 0.1665 +0 0.0809 +0 0.0518 +0 0.0810 +0 0.0821 +0 0.2397 +0 0.0789 +0 0.1390 +0 0.0607 +0 0.1166 +0 0.2716 +0 0.1414 +0 0.1515 +0 0.1017 +0 0.1105 +0 0.0659 +0 0.0871 +0 0.0906 +0 0.0634 +0 0.0963 +0 0.1119 +0 0.0537 +0 0.0974 +0 0.0884 +0 0.1379 +0 0.2283 +0 0.1136 +0 0.0955 +0 0.0774 +0 0.1551 +0 0.0988 +0 0.1205 +0 0.1764 +0 0.0675 +0 0.0879 +0 0.1532 +0 0.0918 +0 0.0583 +0 0.1534 +0 0.2705 +0 0.1266 +0 0.2500 +0 0.2711 +1 0.8056 +0 0.1328 +0 0.0650 +0 0.1396 +0 0.1310 +0 0.0845 +0 0.0509 +0 0.0870 +0 0.2742 +0 0.0868 +0 0.1432 +0 0.0925 +1 0.7771 +0 0.0732 +0 0.2747 +0 0.0977 +0 0.0614 +0 0.0436 +0 0.0636 +0 0.0789 +0 0.0695 +0 0.1498 +0 0.0782 +0 0.0899 +0 0.0934 +0 0.1218 +0 0.0910 +0 0.3384 +0 0.0876 +0 0.2078 +0 0.0693 +0 0.1942 +0 0.1214 +0 0.0840 +0 0.0433 +0 0.1588 +0 0.0877 +0 0.2118 +0 0.1594 +0 0.3892 +0 0.1481 +0 0.1043 +0 0.0399 +0 0.1729 +0 0.1228 +0 0.0866 +0 0.1108 +0 0.3889 +0 0.1608 +0 0.0792 +0 0.1116 +0 0.0942 +0 0.0993 +0 0.1934 +0 0.1698 +0 0.1025 +0 0.0473 +0 0.0643 +0 0.1458 +0 0.0530 +0 0.0960 +0 0.0757 +0 0.1050 +0 0.0839 +0 0.1444 +0 0.0691 +0 0.1214 +0 0.1371 +0 0.0972 +0 0.1290 +0 0.0906 +0 0.1312 +0 0.0770 +0 0.0583 +0 0.2248 +0 0.1772 +0 0.0498 +0 0.0457 +0 0.3894 +0 0.0961 +0 0.1111 +0 0.2649 +0 0.0623 +0 0.0744 +0 0.0808 +0 0.1781 +0 0.0962 +0 0.0585 +0 0.0759 +0 0.0647 +0 0.0484 +0 0.0763 +1 0.7945 +0 0.1309 +0 0.2856 +0 0.0445 +0 0.1850 +0 0.1006 +0 0.0727 +0 0.2478 +0 0.0584 +0 0.2896 +0 0.1416 +0 0.1170 +0 0.0438 +0 0.0439 +0 0.2620 +0 0.0833 +0 0.0751 +0 0.1076 +0 0.1222 +0 0.0718 +0 0.0884 +0 0.0901 +0 0.0531 +0 0.1338 +0 0.1099 +0 0.0718 +0 0.1340 +0 0.1281 +0 0.0813 +0 0.1967 +0 0.1645 +0 0.1019 +0 0.6343 +0 0.1204 +0 0.0362 +0 0.1481 +0 0.3411 +0 0.0857 +0 0.1269 +0 0.2647 +0 0.0627 +0 0.0745 +0 0.0821 +0 0.0932 +0 0.2899 +0 0.0602 +0 0.1722 +0 0.0879 +0 0.0672 +0 0.1055 +0 0.2229 +0 0.1473 +0 0.0456 +0 0.1614 +0 0.2454 +0 0.1148 +0 0.0499 +0 0.2330 +0 0.0535 +0 0.0664 +0 0.0852 +0 0.1282 +0 0.1635 +0 0.1394 +0 0.1655 +0 0.1109 +0 0.1846 +0 0.0740 +0 0.1574 +0 0.2329 +0 0.0499 +0 0.0429 +0 0.0721 +0 0.4771 +0 0.0528 +0 0.1060 +0 0.1115 +0 0.0556 +0 0.2370 +0 0.2365 +0 0.0716 +0 0.0792 +0 0.1577 +0 0.1161 +0 0.0625 +0 0.1295 +0 0.0775 +0 0.1396 +0 0.1004 +0 0.0874 +0 0.3869 +0 0.0361 +0 0.4010 +0 0.0819 +0 0.2320 +0 0.1165 +0 0.0795 +0 0.1295 +0 0.2201 +0 0.0781 +0 0.1607 +0 0.1199 +0 0.5241 +0 0.4289 +0 0.0791 +0 0.0562 +0 0.0672 +0 0.0687 +0 0.1292 +0 0.1617 +0 0.0730 +0 0.2044 +0 0.1023 +0 0.4372 +0 0.0718 +0 0.0570 +0 0.0884 +0 0.1281 +0 0.1907 +0 0.1147 +0 0.0498 +0 0.2806 +0 0.0761 +0 0.1586 +0 0.1851 +0 0.2551 +0 0.0741 +1 0.7934 +0 0.0649 +0 0.0304 +0 0.3371 +1 0.9033 +0 0.0622 +0 0.1490 +0 0.2055 +0 0.0414 +0 0.0347 +0 0.2506 +0 0.0774 +0 0.0789 +0 0.0892 +0 0.0436 +0 0.1220 +0 0.1729 +0 0.1250 +0 0.1222 +0 0.1502 +0 0.1357 +0 0.0662 +0 0.0961 +0 0.0934 +0 0.1673 +0 0.1260 +0 0.3502 +0 0.1985 +0 0.1086 +0 0.1055 +0 0.2211 +0 0.2033 +0 0.0688 +0 0.0653 +0 0.0856 +0 0.7415 +0 0.2788 +0 0.0779 +0 0.0758 +0 0.0577 +0 0.0392 +0 0.1559 +0 0.0534 +0 0.1764 +0 0.0714 +0 0.2298 +0 0.4226 +0 0.1387 +0 0.1026 +0 0.0848 +0 0.0971 +0 0.1024 +0 0.0838 +0 0.1498 +0 0.0773 +0 0.1017 +0 0.1111 +0 0.1390 +0 0.1188 +0 0.0739 +0 0.1213 +0 0.0834 +0 0.1028 +0 0.0554 +0 0.1875 +0 0.1067 +1 0.8690 +0 0.1856 +0 0.1003 +0 0.1193 +0 0.0401 +0 0.0593 +0 0.0839 +0 0.2482 +0 0.0864 +0 0.1442 +0 0.1377 +1 0.8285 +0 0.1460 +0 0.2636 +0 0.0632 +0 0.0471 +0 0.1591 +0 0.0728 +0 0.0494 +0 0.0494 +0 0.0888 +0 0.2198 +0 0.6036 +0 0.1033 +0 0.0584 +0 0.1019 +0 0.1579 +0 0.1920 +0 0.0819 +0 0.0530 +0 0.2959 +0 0.0826 +0 0.0785 +0 0.0792 +0 0.1469 +0 0.2731 +0 0.1203 +0 0.1645 +0 0.0835 +0 0.0504 +0 0.0606 +0 0.0752 +0 0.0741 +0 0.0906 +0 0.1580 +0 0.1088 +0 0.0917 +0 0.0764 +0 0.0904 +0 0.0768 +0 0.0962 +0 0.0500 +0 0.1878 +0 0.0702 +0 0.1335 +0 0.1401 +0 0.0981 +0 0.0484 +0 0.1696 +0 0.3963 +0 0.0820 +1 0.8071 +0 0.0763 +0 0.1179 +0 0.4857 +0 0.0991 +0 0.0455 +0 0.3842 +0 0.1126 +0 0.0466 +0 0.1085 +0 0.0923 +0 0.0752 +0 0.3066 +0 0.0444 +0 0.0960 +0 0.1284 +0 0.0521 +0 0.1204 +0 0.0466 +0 0.1487 +0 0.1080 +0 0.0832 +0 0.0886 +0 0.0628 +0 0.2236 +0 0.0635 +0 0.1330 +0 0.0912 +0 0.0852 +0 0.0399 +0 0.2613 +0 0.3071 +0 0.2793 +0 0.1246 +0 0.1021 +0 0.0788 +0 0.0629 +0 0.0741 +0 0.4468 +0 0.0503 +1 0.7700 +0 0.2367 +0 0.0469 +0 0.0393 +0 0.0782 +0 0.5785 +0 0.0654 +0 0.0460 +0 0.0596 +0 0.1392 +0 0.0660 +0 0.0802 +0 0.0865 +0 0.2414 +0 0.0692 +0 0.0721 +0 0.0679 +0 0.1606 +0 0.2076 +0 0.0841 +0 0.3812 +0 0.0705 +0 0.0471 +0 0.1089 +0 0.0993 +0 0.1755 +0 0.2303 +0 0.1825 +0 0.0870 +0 0.0654 +0 0.0799 +0 0.0679 +0 0.2473 +0 0.1249 +0 0.1010 +0 0.0371 +0 0.1646 +0 0.1331 +0 0.0944 +0 0.1513 +0 0.1250 +0 0.0945 +0 0.1371 +0 0.0878 +0 0.0979 +0 0.0477 +0 0.0450 +0 0.2132 +0 0.1259 +0 0.2246 +0 0.0655 +0 0.4562 +0 0.0837 +0 0.0378 +0 0.0545 +0 0.0736 +0 0.1787 +0 0.0801 +0 0.1727 +0 0.2211 +0 0.1470 +0 0.0822 +0 0.0943 +0 0.1871 +0 0.0758 +0 0.0905 +0 0.1548 +0 0.1134 +0 0.2102 +0 0.1865 +0 0.0856 +0 0.1056 +0 0.0929 +0 0.0731 +0 0.2105 +0 0.0600 +1 0.8211 +0 0.0854 +0 0.0786 +1 0.3070 +0 0.1512 +0 0.1019 +0 0.1061 +0 0.0548 +1 0.8642 +0 0.2015 +0 0.3573 +0 0.1120 +0 0.1392 +0 0.0785 +0 0.0577 +0 0.0637 +1 0.8030 +0 0.1108 +0 0.1146 +0 0.0639 +0 0.1151 +0 0.1208 +0 0.0447 +0 0.2723 +0 0.0907 +0 0.0883 +0 0.1248 +0 0.0793 +0 0.0508 +0 0.1082 +0 0.1212 +0 0.2245 +0 0.1492 +0 0.1091 +0 0.0889 +0 0.0564 +0 0.2795 +0 0.1276 +0 0.1991 +0 0.1255 +0 0.2609 +0 0.1697 +0 0.0456 +0 0.0650 +0 0.1117 +0 0.0887 +0 0.0619 +0 0.0646 +0 0.5081 +0 0.3036 +0 0.0900 +0 0.1285 +0 0.0810 +0 0.0917 +1 0.8296 +0 0.2092 +0 0.0402 +0 0.2228 +0 0.1522 +0 0.0942 +0 0.0700 +0 0.1599 +0 0.0992 +0 0.1044 +0 0.1553 +0 0.0560 +0 0.2750 +0 0.0768 +0 0.0572 +0 0.0899 +0 0.2449 +0 0.2435 +0 0.0499 +0 0.0386 +0 0.1978 +0 0.0929 +0 0.0930 +1 0.7589 +0 0.0572 +0 0.0667 +0 0.1051 +0 0.1288 +0 0.0712 +0 0.1536 +0 0.0840 +0 0.0712 +0 0.0646 +0 0.0671 +0 0.1067 +0 0.0941 +0 0.1870 +0 0.1606 +0 0.0831 +0 0.0350 +0 0.1284 +0 0.1005 +0 0.1057 +0 0.1205 +0 0.0666 +0 0.1179 +0 0.0436 +0 0.0826 +0 0.1565 +0 0.0957 +0 0.1258 +0 0.0347 +0 0.0815 +0 0.6620 +0 0.1009 +0 0.0319 +0 0.0958 +0 0.0580 +0 0.1577 +0 0.1176 +0 0.0948 +0 0.0398 +0 0.0517 +0 0.1929 +0 0.0441 +0 0.0953 +0 0.0446 +0 0.0599 +0 0.0632 +0 0.1062 +0 0.1489 +0 0.0947 +0 0.1166 +0 0.1791 +0 0.0585 +0 0.0858 +0 0.1078 +0 0.1523 +0 0.1537 +0 0.1890 +0 0.6137 +0 0.2336 +0 0.1952 +0 0.1040 +0 0.1420 +0 0.1547 +0 0.1870 +0 0.4890 +0 0.1163 +0 0.0836 +0 0.1037 +0 0.0824 +0 0.0420 +0 0.0926 +0 0.1802 +0 0.0488 +0 0.0931 +0 0.0896 +0 0.1855 +0 0.1272 +0 0.0695 +0 0.1191 +0 0.1714 +0 0.0977 +0 0.0413 +0 0.3010 +0 0.6849 +0 0.0709 +0 0.0717 +0 0.2057 +0 0.1033 +0 0.2224 +0 0.0953 +0 0.1911 +0 0.0559 +0 0.3090 +0 0.0592 +0 0.1930 +0 0.0712 +0 0.0543 +0 0.0834 +0 0.0845 +0 0.1470 +0 0.0475 +0 0.0419 +0 0.0964 +0 0.7324 +0 0.1500 +0 0.1252 +0 0.1115 +0 0.0752 +0 0.0833 +0 0.0782 +0 0.0993 +0 0.1072 +0 0.2719 +1 0.8032 +0 0.0967 +0 0.0733 +0 0.1015 +0 0.0879 +0 0.1676 +0 0.1383 +0 0.1973 +0 0.0436 +0 0.0466 +0 0.0715 +0 0.6348 +0 0.2050 +0 0.0559 +1 0.8560 +0 0.0597 +0 0.0593 +0 0.2376 +0 0.2454 +0 0.7095 +0 0.2387 +0 0.0726 +0 0.3854 +0 0.0733 +0 0.0774 +0 0.1370 +0 0.0875 +0 0.3525 +0 0.7020 +0 0.1340 +0 0.0367 +0 0.1789 +0 0.1733 +0 0.1100 +0 0.1337 +0 0.0655 +0 0.3694 +0 0.1538 +0 0.0529 +0 0.0637 +0 0.0770 +0 0.0910 +0 0.0855 +0 0.1104 +0 0.0670 +0 0.0530 +0 0.2517 +0 0.0518 +0 0.0483 +0 0.0778 +0 0.0556 +0 0.0630 +0 0.0975 +0 0.1042 +0 0.1600 +0 0.1954 +0 0.0799 +0 0.1692 +0 0.0814 +0 0.5035 +0 0.1192 +0 0.2301 +0 0.1045 +0 0.0913 +0 0.1197 +0 0.3601 +0 0.1677 +0 0.1795 +0 0.0471 +0 0.2021 +0 0.2153 +0 0.1080 +0 0.1425 +0 0.0760 +0 0.0470 +0 0.1115 +0 0.0825 +0 0.0867 +0 0.0621 +0 0.0668 +0 0.0529 +0 0.1801 +0 0.0599 +0 0.2302 +0 0.1669 +0 0.1638 +0 0.0970 +0 0.0447 +0 0.0952 +0 0.3269 +0 0.0810 +0 0.1204 +0 0.1420 +0 0.0580 +0 0.3489 +0 0.1916 +0 0.0722 +0 0.2026 +0 0.0553 +0 0.0721 +0 0.0917 +0 0.1394 +0 0.0834 +0 0.0760 +0 0.0688 +0 0.1019 +0 0.1478 +0 0.5052 +0 0.3941 +0 0.0833 +0 0.0796 +0 0.1145 +0 0.1182 +0 0.1562 +0 0.0818 +0 0.2248 +0 0.1080 +0 0.1227 +0 0.7368 +0 0.0471 +0 0.0449 +0 0.1933 +1 0.8490 +0 0.0763 +0 0.0437 +0 0.0777 +0 0.1766 +0 0.1725 +0 0.1455 +0 0.0591 +0 0.0460 +0 0.1161 +0 0.0894 +1 0.8055 +0 0.0575 +0 0.1129 +0 0.2594 +0 0.6406 +0 0.0969 +0 0.0882 +0 0.0954 +0 0.1021 +0 0.3446 +0 0.3719 +0 0.1041 +0 0.1243 +0 0.6808 +0 0.0853 +0 0.2036 +0 0.1447 +0 0.0493 +0 0.2385 +0 0.1105 +0 0.2435 +0 0.1208 +0 0.0506 +0 0.1009 +0 0.0692 +0 0.0994 +0 0.1801 +0 0.1901 +0 0.2227 +0 0.0622 +0 0.1259 +0 0.1362 +0 0.0649 +0 0.2179 +0 0.1008 +0 0.0807 +0 0.0499 +0 0.2472 +0 0.0579 +0 0.1389 +0 0.0655 +0 0.0693 +0 0.0581 +0 0.1402 +0 0.1662 +0 0.1791 +0 0.0375 +0 0.0537 +0 0.2628 +0 0.0801 +0 0.1407 +0 0.0922 +0 0.0522 +0 0.1951 +0 0.0454 +0 0.0614 +0 0.2201 +0 0.1182 +0 0.0480 +0 0.0998 +0 0.0755 +0 0.0540 +0 0.1932 +0 0.0636 +0 0.1098 +0 0.1850 +0 0.0825 +0 0.4729 +0 0.0736 +0 0.0996 +0 0.0839 +0 0.6426 +0 0.0659 +0 0.2612 +0 0.1339 +0 0.0464 +0 0.0632 +0 0.1612 +0 0.0790 +0 0.2051 +0 0.1679 +0 0.2303 +0 0.1037 +0 0.2104 +0 0.0594 +0 0.0451 +0 0.0613 +0 0.0314 +0 0.2410 +0 0.0625 +0 0.0680 +0 0.0558 +0 0.1356 +0 0.1818 +0 0.7322 +0 0.0531 +0 0.0866 +0 0.0772 +0 0.3962 +0 0.1212 +0 0.0617 +0 0.1546 +0 0.1486 +0 0.1815 +0 0.0974 +0 0.1124 +0 0.0505 +0 0.1588 +0 0.1435 +0 0.0724 +0 0.0396 +0 0.0674 +0 0.0918 +0 0.0441 +0 0.1179 +0 0.1999 +0 0.0549 +0 0.0628 +0 0.0875 +0 0.0961 +0 0.1204 +0 0.0749 +0 0.1883 +0 0.0667 +0 0.0888 +0 0.6649 +0 0.1617 +0 0.0542 +0 0.1219 +0 0.1012 +0 0.0618 +0 0.1349 +0 0.0874 +0 0.1891 +0 0.1985 +0 0.3575 +0 0.1502 +0 0.0755 +0 0.0937 +0 0.0968 +0 0.2454 +0 0.0850 +0 0.2545 +0 0.0786 +0 0.0806 +0 0.1073 +0 0.1473 +0 0.2502 +0 0.0904 +0 0.0930 +0 0.0668 +0 0.0528 +0 0.0922 +0 0.1150 +0 0.4480 +0 0.1061 +0 0.1168 +0 0.0581 +0 0.1299 +1 0.8160 +0 0.1098 +1 0.7708 +0 0.0989 +0 0.2502 +0 0.1193 +0 0.0653 +0 0.0364 +0 0.1480 +0 0.0587 +0 0.0766 +0 0.0358 +0 0.0498 +0 0.1502 +0 0.1715 +0 0.0677 +0 0.3103 +0 0.1433 +0 0.0949 +0 0.2548 +0 0.1039 +0 0.0957 +0 0.1547 +0 0.0690 +0 0.1494 +0 0.0901 +0 0.0793 +0 0.0973 +0 0.0754 +0 0.2644 +0 0.0991 +0 0.2497 +0 0.1342 +0 0.0656 +0 0.0557 +0 0.0724 +0 0.1699 +0 0.4135 +0 0.0547 +0 0.1980 +0 0.0877 +0 0.0904 +0 0.2177 +0 0.0883 +0 0.0917 +0 0.2087 +0 0.1239 +0 0.1092 +0 0.1284 +0 0.0641 +0 0.0636 +0 0.1725 +0 0.1383 +0 0.0627 +0 0.1145 +0 0.1812 +0 0.0664 +0 0.0608 +0 0.1025 +0 0.0687 +0 0.0859 +0 0.1673 +0 0.0953 +0 0.1159 +1 0.8470 +0 0.1356 +0 0.3799 +0 0.1072 +0 0.0445 +0 0.0817 +0 0.3802 +0 0.0574 +0 0.0510 +0 0.1690 +0 0.1179 +0 0.0675 +0 0.0672 +0 0.0922 +0 0.1407 +0 0.1241 +0 0.2245 +0 0.0814 +0 0.1388 +0 0.0899 +0 0.1349 +0 0.0600 +0 0.0656 +0 0.0679 +0 0.1412 +0 0.0555 +0 0.2363 +0 0.1022 +0 0.0642 +0 0.0781 +0 0.0943 +0 0.1280 +0 0.1037 +0 0.1474 +0 0.0850 +0 0.0574 +1 0.8038 +0 0.1393 +0 0.0941 +0 0.1337 +0 0.2475 +0 0.1747 +0 0.2447 +0 0.0422 +0 0.1605 +0 0.1002 +0 0.2440 +0 0.1060 +0 0.0914 +0 0.5085 +0 0.0901 +0 0.1495 +0 0.1369 +0 0.3544 +0 0.1394 +0 0.0777 +0 0.3060 +0 0.1101 +0 0.1821 +0 0.1176 +0 0.0840 +0 0.4604 +0 0.0976 +0 0.1545 +0 0.0602 +0 0.3258 +0 0.1082 +0 0.3160 +0 0.0678 +0 0.1109 +0 0.0989 +0 0.1599 +0 0.1184 +0 0.1366 +0 0.0544 +0 0.1111 +0 0.0446 +0 0.0926 +0 0.2130 +0 0.1269 +0 0.0920 +0 0.0900 +0 0.0831 +0 0.2420 +0 0.3588 +0 0.0874 +0 0.0588 +0 0.1733 +0 0.0617 +0 0.2594 +0 0.1644 +0 0.3591 +0 0.1355 +0 0.0956 +0 0.0950 +0 0.2213 +0 0.0379 +0 0.0667 +0 0.1048 +0 0.1293 +0 0.0564 +0 0.0805 +0 0.0904 +0 0.0744 +0 0.0401 +0 0.0981 +0 0.1329 +0 0.1128 +0 0.1831 +0 0.0790 +0 0.0694 +0 0.0657 +0 0.2065 +0 0.1102 +0 0.2714 +0 0.5617 +0 0.0626 +0 0.0710 +0 0.2176 +0 0.0582 +0 0.1244 +0 0.1509 +0 0.1025 +1 0.7512 +0 0.1497 +0 0.0789 +0 0.0581 +0 0.0615 +0 0.0332 +0 0.0902 +0 0.3349 +0 0.1791 +0 0.1355 +0 0.0513 +0 0.1874 +1 0.8281 +0 0.1259 +0 0.1343 +0 0.0672 +0 0.0592 +0 0.2739 +0 0.1986 +0 0.0888 +0 0.0552 +0 0.5184 +0 0.0906 +0 0.1692 +0 0.0644 +0 0.2438 +0 0.0430 +0 0.2152 +0 0.3282 +0 0.2829 +0 0.0790 +0 0.1949 +0 0.1645 +0 0.0926 +0 0.0960 +0 0.0877 +0 0.3724 +0 0.0774 +0 0.1671 +0 0.1202 +0 0.2986 +0 0.1690 +0 0.1653 +0 0.1798 +0 0.0778 +0 0.0650 +0 0.2062 +0 0.0985 +0 0.0524 +0 0.1353 +0 0.0870 +0 0.1499 +0 0.0608 +0 0.3639 +0 0.0342 +0 0.1061 +0 0.0659 +0 0.1056 +0 0.0655 +0 0.0611 +0 0.1326 +0 0.0821 +0 0.2990 +0 0.2306 +0 0.0386 +0 0.0611 +0 0.0752 +0 0.0980 +0 0.0803 +0 0.4021 +0 0.2231 +0 0.0962 +0 0.0505 +0 0.1019 +0 0.1317 +0 0.0972 +0 0.0692 +0 0.4228 +0 0.0761 +0 0.1172 +0 0.1072 +0 0.0765 +0 0.1333 +0 0.0541 +0 0.1756 +0 0.0762 +0 0.1070 +0 0.0453 +0 0.2931 +0 0.0784 +0 0.1089 +0 0.1137 +0 0.1056 +0 0.0511 +0 0.0887 +0 0.2424 +0 0.0766 +0 0.0745 +0 0.1062 +0 0.1000 +0 0.2310 +0 0.1292 +0 0.0903 +0 0.0519 +0 0.1042 +0 0.1190 +0 0.1085 +0 0.3054 +0 0.0986 +0 0.3708 +0 0.1693 +0 0.1829 +0 0.1828 +0 0.0677 +0 0.3750 +0 0.4808 +0 0.1314 +0 0.0397 +0 0.0856 +0 0.0638 +0 0.1417 +0 0.0727 +0 0.0927 +0 0.0909 +0 0.2288 +0 0.1158 +0 0.1046 +0 0.1350 +0 0.2087 +0 0.1521 +0 0.0850 +0 0.1450 +0 0.0584 +0 0.0963 +0 0.1100 +0 0.1121 +0 0.1103 +0 0.0629 +0 0.0531 +0 0.2050 +0 0.0579 +0 0.1464 +0 0.0683 +0 0.1794 +0 0.0730 +0 0.1779 +0 0.1470 +0 0.1347 +0 0.1607 +0 0.1198 +0 0.0363 +0 0.2044 +0 0.1564 +0 0.2240 +0 0.0852 +0 0.0511 +0 0.1847 +0 0.0531 +0 0.3730 +0 0.1025 +0 0.0906 +0 0.0941 +0 0.0514 +0 0.1184 +0 0.1198 +0 0.0741 +0 0.0516 +0 0.1348 +0 0.1395 +0 0.0993 +0 0.0670 +0 0.1355 +0 0.3604 +0 0.1586 +0 0.1360 +0 0.0498 +0 0.4523 +0 0.0583 +0 0.0754 +0 0.0832 +0 0.4781 +0 0.1780 +0 0.0543 +0 0.0657 +0 0.2467 +1 0.8300 +0 0.1229 +0 0.1529 +0 0.1085 +0 0.0824 +0 0.1666 +0 0.0778 +0 0.3434 +0 0.1599 +0 0.0919 +0 0.1564 +0 0.0710 +0 0.2861 +1 0.8291 +0 0.0987 +0 0.2429 +0 0.2353 +1 0.7535 +0 0.1101 +0 0.0751 +0 0.1527 +0 0.1285 +0 0.0428 +0 0.0547 +0 0.0823 +0 0.1009 +0 0.0623 +0 0.1966 +0 0.1157 +0 0.0467 +0 0.1540 +0 0.1058 +0 0.3141 +0 0.0484 +0 0.1158 +0 0.1161 +0 0.0384 +0 0.1593 +0 0.0631 +0 0.1823 +0 0.0681 +0 0.2155 +0 0.0733 +0 0.1311 +0 0.1069 +0 0.0895 +0 0.0950 +0 0.6965 +0 0.0362 +0 0.0637 +0 0.3534 +0 0.0403 +0 0.1284 +0 0.0801 +0 0.1069 +0 0.0738 +0 0.2886 +0 0.0959 +0 0.3132 +0 0.2001 +0 0.1171 +0 0.0521 +0 0.3506 +0 0.0951 +0 0.1681 +0 0.0349 +0 0.0829 +0 0.1788 +0 0.1116 +0 0.1981 +0 0.0696 +0 0.0969 +0 0.1710 +0 0.0484 +0 0.1622 +0 0.1089 +0 0.0799 +0 0.1850 +0 0.0832 +0 0.1642 +0 0.1884 +0 0.0652 +0 0.2045 +0 0.2924 +0 0.0779 +0 0.0657 +0 0.1010 +0 0.1058 +0 0.0560 +0 0.0703 +0 0.1203 +0 0.2433 +0 0.2192 +0 0.0926 +0 0.2780 +0 0.1683 +0 0.0367 +0 0.0535 +0 0.2609 +0 0.0867 +0 0.2465 +0 0.5566 +0 0.0696 +0 0.0830 +0 0.0436 +0 0.0888 +0 0.6280 +0 0.3906 +0 0.3337 +0 0.2110 +0 0.1495 +0 0.1088 +0 0.1536 +0 0.0665 +0 0.0988 +0 0.1381 +0 0.2852 +0 0.1214 +0 0.1853 +0 0.0477 +0 0.0811 +0 0.0390 +0 0.0563 +0 0.0747 +0 0.0880 +0 0.0515 +0 0.0681 +0 0.1637 +0 0.0958 +0 0.1439 +1 0.8294 +0 0.0597 +0 0.0850 +0 0.0751 +0 0.0557 +0 0.1398 +0 0.1545 +0 0.1849 +0 0.0785 +0 0.0457 +0 0.0572 +0 0.0721 +0 0.1194 +0 0.2862 +0 0.1041 +0 0.0737 +0 0.3626 +0 0.1398 +0 0.0856 +0 0.0961 +0 0.2741 +0 0.1795 +0 0.0631 +0 0.2356 +0 0.0702 +0 0.0756 +0 0.1154 +0 0.0767 +0 0.1696 +0 0.0376 +0 0.0716 +0 0.1018 +0 0.0713 +0 0.0421 +0 0.1019 +0 0.1159 +0 0.3339 +0 0.1661 +0 0.0669 +0 0.1131 +0 0.0442 +0 0.1553 +0 0.1227 +0 0.0491 +0 0.0733 +0 0.0511 +0 0.0943 +0 0.1173 +0 0.1329 +0 0.0878 +0 0.1105 +0 0.0732 +0 0.0627 +0 0.1390 +0 0.1755 +0 0.0456 +0 0.1009 +0 0.0871 +0 0.1380 +0 0.0656 +0 0.1348 +0 0.0822 +0 0.1239 +0 0.1242 +0 0.0784 +0 0.0546 +0 0.1562 +0 0.1777 +0 0.1501 +0 0.2551 +0 0.1530 +0 0.0957 +0 0.1950 +0 0.0855 +0 0.2028 +0 0.0647 +0 0.1998 +0 0.1826 +0 0.1944 +0 0.0891 +0 0.1196 +0 0.0566 +0 0.1918 +0 0.0505 +0 0.1954 +0 0.5771 +0 0.2639 +0 0.1182 +0 0.1000 +0 0.2790 +0 0.0907 +0 0.1718 +0 0.7297 +0 0.1362 +0 0.0977 +0 0.0702 +0 0.1319 +0 0.1299 +0 0.2597 +0 0.0453 +0 0.1006 +0 0.1277 +0 0.1445 +0 0.1475 +0 0.0428 +0 0.1366 +0 0.0833 +0 0.1946 +0 0.2728 +0 0.1112 +0 0.1257 +0 0.0554 +0 0.0713 +0 0.0823 +0 0.0704 +0 0.0497 +0 0.0454 +0 0.0910 +0 0.0375 +0 0.0650 +0 0.0566 +0 0.7202 +0 0.0496 +0 0.0476 +0 0.3430 +0 0.1064 +0 0.0856 +0 0.0474 +0 0.7273 +0 0.3946 +0 0.1513 +0 0.0949 +0 0.0880 +0 0.0480 +1 0.8254 +0 0.0450 +0 0.4131 +0 0.0541 +0 0.0435 +0 0.1626 +0 0.1485 +0 0.1475 +0 0.1832 +0 0.0425 +0 0.1165 +0 0.1877 +0 0.2791 +0 0.1591 +0 0.1390 +0 0.2475 +0 0.1061 +0 0.1199 +0 0.0480 +0 0.0624 +0 0.0905 +0 0.1060 +0 0.1118 +0 0.1932 +0 0.0903 +0 0.3687 +0 0.0837 +0 0.0918 +0 0.1728 +0 0.2062 +0 0.0924 +0 0.1354 +0 0.0428 +0 0.1262 +0 0.2141 +0 0.6782 +0 0.0835 +0 0.0803 +0 0.1068 +0 0.1292 +0 0.0827 +0 0.2063 +0 0.0789 +0 0.3502 +0 0.6439 +0 0.1604 +0 0.0714 +0 0.2688 +0 0.0947 +0 0.0695 +0 0.1749 +0 0.0646 +0 0.1946 +0 0.1216 +0 0.0529 +0 0.1773 +0 0.2082 +0 0.1080 +0 0.1163 +0 0.2135 +0 0.0744 +0 0.0388 +0 0.1006 +0 0.1063 +0 0.1911 +0 0.0619 +0 0.1503 +1 0.8341 +0 0.0931 +0 0.0389 +0 0.0847 +0 0.0863 +0 0.0970 +0 0.1084 +0 0.5105 +0 0.1265 +0 0.1867 +0 0.1826 +0 0.1586 +0 0.0776 +0 0.0593 +0 0.1495 +0 0.1176 +0 0.4852 +0 0.2621 +0 0.2153 +0 0.2553 +0 0.0702 +0 0.0721 +0 0.2604 +0 0.0714 +0 0.2698 +0 0.1185 +0 0.1022 +0 0.1221 +0 0.0809 +0 0.0707 +0 0.0983 +0 0.5088 +0 0.2215 +0 0.7170 +0 0.4964 +0 0.1030 +0 0.1155 +0 0.1239 +0 0.0744 +0 0.0678 +0 0.2267 +0 0.0641 +0 0.0754 +0 0.0758 +0 0.0850 +0 0.0497 +0 0.2218 +0 0.0966 +0 0.5883 +0 0.0565 +1 0.8147 +0 0.0827 +0 0.1114 +0 0.2102 +0 0.0668 +0 0.0496 +0 0.0940 +0 0.0806 +0 0.0426 +0 0.1118 +0 0.1248 +0 0.1141 +0 0.0662 +0 0.1786 +0 0.2670 +0 0.1559 +0 0.2730 +0 0.1453 +0 0.0943 +0 0.1414 +0 0.0928 +0 0.0953 +0 0.0347 +0 0.0756 +0 0.0760 +0 0.1946 +0 0.2162 +0 0.1554 +0 0.1506 +0 0.1483 +1 0.8057 +0 0.1707 +0 0.5154 +0 0.1263 +0 0.2037 +0 0.1864 +0 0.0582 +0 0.3095 +0 0.3313 +0 0.0954 +0 0.1175 +0 0.1598 +0 0.2066 +0 0.0785 +0 0.0665 +0 0.0620 +0 0.1231 +0 0.0997 +0 0.3683 +0 0.1880 +0 0.3507 +0 0.0998 +0 0.0420 +0 0.0612 +0 0.0522 +0 0.0653 +0 0.2978 +0 0.0760 +0 0.5025 +0 0.0741 +0 0.0839 +0 0.1619 +0 0.5771 +0 0.0869 +0 0.0651 +0 0.2599 +0 0.2289 +0 0.1659 +0 0.1797 +0 0.1433 +0 0.1348 +1 0.8671 +0 0.0760 +0 0.1771 +0 0.0786 +0 0.1302 +0 0.0826 +0 0.0980 +0 0.0874 +0 0.0893 +0 0.1065 +0 0.1200 +0 0.0971 +0 0.0713 +0 0.0539 +0 0.3179 +0 0.1459 +0 0.1375 +1 0.8218 +0 0.5932 +0 0.1940 +0 0.6590 +0 0.0746 +0 0.2565 +0 0.2442 +0 0.1060 +0 0.4320 +0 0.5995 +0 0.1651 +0 0.2033 +0 0.0641 +0 0.1149 +1 0.8032 +0 0.0728 +0 0.2580 +0 0.0985 +0 0.1350 +0 0.0698 +0 0.1000 +0 0.0793 +0 0.2291 +0 0.1647 +0 0.1223 +0 0.1685 +0 0.1322 +0 0.3160 +0 0.1043 +0 0.2030 +0 0.0710 +0 0.0887 +0 0.0731 +0 0.0356 +0 0.0968 +0 0.0480 +0 0.1336 +0 0.1439 +0 0.0618 +0 0.1540 +0 0.1637 +0 0.2066 +0 0.0752 +0 0.1213 +0 0.7482 +0 0.0845 +0 0.2050 +0 0.2129 +0 0.0791 +0 0.0797 +0 0.1090 +0 0.4625 +0 0.0714 +0 0.1065 +0 0.1465 +0 0.2136 +0 0.0687 +0 0.1074 +0 0.1203 +0 0.0582 +0 0.0625 +0 0.0977 +0 0.1205 +0 0.1580 +0 0.0304 +0 0.1561 +0 0.1885 +0 0.1585 +0 0.0766 +0 0.1404 +0 0.1138 +0 0.1416 +0 0.0854 +0 0.0405 +0 0.6863 +0 0.0814 +0 0.1410 +0 0.1694 +0 0.3148 +0 0.0604 +0 0.0882 +0 0.0650 +0 0.0890 +0 0.0648 +0 0.0830 +0 0.0542 +0 0.1503 +0 0.0931 +0 0.2403 +0 0.6962 +0 0.0661 +0 0.0783 +0 0.0613 +0 0.0727 +0 0.0382 +0 0.0689 +0 0.1777 +0 0.1389 +0 0.1816 +0 0.4248 +0 0.0760 +0 0.2353 +0 0.0550 +0 0.0687 +0 0.1547 +0 0.1113 +0 0.1006 +0 0.1912 +0 0.0884 +0 0.1410 +0 0.1008 +0 0.0638 +0 0.0853 +0 0.2390 +0 0.2484 +0 0.1890 +0 0.2394 +0 0.1035 +0 0.0788 +0 0.1169 +0 0.2878 +0 0.1383 +0 0.1199 +0 0.0613 +0 0.0556 +0 0.1350 +0 0.1040 +1 0.8014 +0 0.0334 +0 0.0580 +0 0.1449 +0 0.1363 +0 0.6198 +0 0.1025 +0 0.0895 +0 0.0641 +0 0.1393 +0 0.0943 +0 0.1274 +0 0.0908 +0 0.1000 +0 0.2217 +0 0.1110 +0 0.0904 +0 0.1296 +0 0.0427 +0 0.0474 +0 0.0641 +0 0.1736 +0 0.1672 +0 0.0677 +0 0.7444 +0 0.1588 +0 0.0729 +0 0.1355 +0 0.1625 +0 0.0855 +0 0.0526 +1 0.8661 +0 0.6918 +0 0.0713 +0 0.0567 +0 0.4058 +0 0.2797 +0 0.1818 +0 0.1099 +0 0.1895 +0 0.2622 +0 0.0884 +0 0.0467 +0 0.1757 +0 0.0722 +0 0.0582 +0 0.0956 +0 0.1415 +0 0.0475 +0 0.1338 +0 0.0778 +0 0.0812 +0 0.1048 +0 0.0628 +0 0.1045 +0 0.0427 +0 0.0716 +0 0.0786 +0 0.3251 +0 0.0387 +0 0.1483 +0 0.0967 +0 0.0543 +0 0.1072 +0 0.0835 +0 0.0704 +0 0.0446 +0 0.0565 +0 0.0564 +0 0.2652 +0 0.0514 +0 0.2049 +0 0.0990 +0 0.0832 +0 0.2953 +0 0.0925 +0 0.1017 +0 0.4051 +0 0.1122 +0 0.2596 +0 0.1368 +0 0.1429 +0 0.1182 +0 0.2831 +0 0.0703 +0 0.2607 +0 0.0894 +0 0.0787 +0 0.0496 +0 0.1729 +0 0.0954 +0 0.2023 +0 0.0489 +0 0.2493 +0 0.1770 +0 0.2154 +0 0.1584 +0 0.1519 +1 0.8197 +0 0.0477 +0 0.1063 +0 0.1469 +0 0.1449 +0 0.1618 +0 0.0911 +0 0.0525 +0 0.1824 +0 0.2557 +0 0.1047 +0 0.1013 +0 0.1016 +0 0.1007 +0 0.1448 +0 0.1814 +0 0.0732 +0 0.1469 +0 0.1871 +0 0.0750 +0 0.0669 +0 0.0402 +0 0.0826 +0 0.0872 +0 0.0364 +0 0.2147 +0 0.0509 +0 0.1599 +0 0.0966 +0 0.0487 +0 0.3245 +0 0.1282 +0 0.1106 +0 0.2801 +0 0.0433 +0 0.0576 +0 0.0746 +0 0.1347 +0 0.1137 +0 0.1400 +0 0.0687 +0 0.2325 +0 0.4170 +0 0.0456 +0 0.1317 +0 0.1227 +0 0.0926 +0 0.0824 +0 0.6371 +0 0.0976 +0 0.0692 +0 0.0395 +0 0.0582 +0 0.1024 +0 0.0487 +0 0.4720 +0 0.0674 +0 0.0662 +0 0.0889 +0 0.2019 +0 0.1256 +0 0.1042 +0 0.0834 +0 0.0544 +0 0.0696 +0 0.1095 +0 0.0848 +0 0.0471 +0 0.0757 +0 0.0546 +0 0.1056 +0 0.1110 +0 0.0738 +0 0.1162 +0 0.0568 +0 0.0728 +0 0.2559 +0 0.2439 +0 0.2536 +0 0.1644 +0 0.1421 +0 0.0535 +0 0.1128 +0 0.3086 +1 0.7775 +0 0.0837 +0 0.1328 +0 0.0565 +0 0.1539 +0 0.4869 +0 0.0655 +0 0.1545 +0 0.0622 +0 0.3518 +0 0.1822 +0 0.0827 +0 0.1178 +0 0.2482 +0 0.6477 +0 0.1523 +0 0.0689 +0 0.1875 +0 0.1251 +0 0.0587 +0 0.0609 +0 0.0599 +0 0.0875 +0 0.0466 +0 0.0678 +0 0.1397 +0 0.3854 +0 0.0687 +0 0.1189 +0 0.1135 +0 0.0815 +0 0.1171 +0 0.1391 +0 0.0469 +0 0.1419 +0 0.0875 +0 0.2160 +0 0.0848 +0 0.1166 +0 0.1896 +0 0.1083 +0 0.1522 +0 0.0673 +0 0.1017 +0 0.2853 +0 0.1335 +1 0.8229 +0 0.1329 +0 0.0830 +0 0.0589 +0 0.2917 +0 0.0762 +0 0.1059 +0 0.1304 +0 0.2856 +0 0.1145 +0 0.0683 +0 0.1324 +0 0.0557 +0 0.0410 +0 0.0793 +0 0.1451 +0 0.2863 +0 0.0791 +0 0.0542 +0 0.4053 +0 0.0694 +0 0.0868 +0 0.2246 +0 0.0941 +0 0.0922 +0 0.1360 +0 0.1735 +0 0.2382 +0 0.0638 +0 0.0560 +0 0.1853 +0 0.1122 +0 0.1540 +0 0.0761 +0 0.3523 +0 0.0962 +0 0.1226 +0 0.1510 +0 0.0717 +0 0.1399 +0 0.0516 +0 0.1424 +0 0.1407 +0 0.0658 +0 0.2224 +0 0.0861 +0 0.1372 +0 0.1565 +0 0.1336 +0 0.2450 +0 0.0641 +0 0.2342 +0 0.2034 +0 0.0882 +0 0.1361 +0 0.2558 +0 0.1101 +0 0.1702 +1 0.3655 +0 0.2400 +0 0.0506 +0 0.2118 +0 0.0413 +0 0.1156 +0 0.0822 +0 0.0604 +0 0.0782 +0 0.0842 +1 0.7605 +0 0.0576 +0 0.3535 +0 0.0760 +0 0.1590 +0 0.1183 +0 0.0723 +0 0.2899 +0 0.2480 +0 0.0476 +0 0.1041 +0 0.2723 +0 0.0824 +0 0.0836 +0 0.1367 +0 0.1393 +0 0.0892 +0 0.0722 +0 0.1596 +1 0.7975 +0 0.0511 +0 0.0678 +0 0.2493 +0 0.1172 +0 0.0671 +0 0.0964 +0 0.0488 +0 0.0891 +0 0.0738 +0 0.0889 +0 0.1188 +0 0.0751 +1 0.8124 +0 0.4151 +0 0.1414 +0 0.1261 +0 0.0937 +0 0.2130 +0 0.1192 +0 0.0752 +0 0.1525 +0 0.0363 +0 0.2287 +0 0.2622 +0 0.2483 +0 0.1278 +0 0.0528 +0 0.2079 +0 0.1544 +0 0.1502 +0 0.4154 +0 0.0680 +0 0.2554 +0 0.1313 +0 0.0892 +0 0.2894 +0 0.0964 +0 0.1851 +0 0.0630 +0 0.1241 +0 0.0568 +0 0.1616 +0 0.0561 +0 0.1992 +0 0.2861 +0 0.0756 +0 0.2564 +0 0.1404 +0 0.0749 +0 0.2150 +0 0.1107 +0 0.0752 +0 0.1211 +0 0.5342 +0 0.0544 +0 0.1000 +0 0.0805 +0 0.1374 +0 0.1280 +0 0.0604 +0 0.1277 +0 0.1449 +0 0.0605 +0 0.3026 +0 0.1518 +0 0.0905 +0 0.0699 +0 0.0338 +0 0.1803 +0 0.1086 +0 0.1239 +0 0.1422 +0 0.1080 +0 0.0474 +0 0.0613 +0 0.2016 +0 0.1746 +0 0.1010 +0 0.1485 +0 0.0569 +0 0.0765 +0 0.0872 +0 0.1488 +0 0.2347 +0 0.1038 +0 0.4566 +0 0.0486 +0 0.1755 +0 0.3133 +0 0.3775 +0 0.0953 +0 0.1844 +0 0.6792 +0 0.6825 +0 0.0530 +0 0.1246 +0 0.1028 +0 0.6795 +0 0.1016 +0 0.1295 +1 0.7521 +0 0.2090 +0 0.4117 +0 0.1228 +0 0.0507 +0 0.1621 +0 0.0712 +0 0.1180 +0 0.0852 +0 0.0804 +0 0.0881 +0 0.0949 +0 0.0710 +0 0.0678 +0 0.0644 +0 0.0827 +0 0.0940 +0 0.3922 +0 0.0765 +0 0.1718 +0 0.1195 +0 0.1590 +0 0.2350 +0 0.2482 +0 0.1847 +0 0.1040 +0 0.0381 +0 0.1353 +0 0.1509 +0 0.1329 +0 0.0764 +0 0.0533 +0 0.0892 +0 0.0696 +0 0.5760 +0 0.0385 +0 0.1090 +0 0.1081 +0 0.1787 +0 0.2318 +0 0.0875 +0 0.1605 +0 0.0636 +0 0.0602 +0 0.0649 +0 0.0876 +0 0.1019 +0 0.0426 +0 0.2567 +0 0.1694 +0 0.0572 +0 0.0924 +0 0.0804 +0 0.1883 +0 0.0663 +0 0.2628 +0 0.1046 +1 0.7971 +0 0.0999 +0 0.0797 +0 0.1328 +0 0.0816 +0 0.1890 +0 0.1963 +0 0.0841 +0 0.1557 +0 0.0856 +0 0.1128 +0 0.0456 +0 0.1895 +0 0.2989 +0 0.1051 +0 0.1012 +0 0.1154 +0 0.0721 +0 0.1093 +0 0.1080 +0 0.2815 +0 0.2049 +0 0.1037 +0 0.1245 +0 0.1443 +0 0.1134 +0 0.0612 +0 0.2914 +0 0.0660 +0 0.0665 +0 0.1481 +1 0.8068 +0 0.0660 +0 0.1073 +0 0.1282 +0 0.0486 +0 0.0557 +0 0.0563 +0 0.1699 +0 0.1385 +0 0.1594 +0 0.2284 +0 0.0385 +0 0.1128 +0 0.1802 +0 0.1631 +0 0.1707 +0 0.0661 +0 0.1603 +0 0.1267 +0 0.1846 +0 0.1106 +0 0.1299 +0 0.1317 +0 0.0396 +0 0.0780 +0 0.1238 +0 0.1113 +0 0.1590 +0 0.0436 +0 0.5797 +0 0.0997 +1 0.7852 +0 0.1259 +0 0.0764 +0 0.0451 +0 0.0894 +0 0.1730 +0 0.4494 +0 0.5333 +0 0.0461 +0 0.1576 +0 0.1322 +0 0.0725 +0 0.1763 +0 0.0590 +0 0.1932 +0 0.2441 +0 0.1143 +0 0.1500 +0 0.1063 +0 0.1172 +0 0.1479 +0 0.1406 +0 0.1582 +0 0.0866 +0 0.1889 +0 0.1776 +0 0.0838 +0 0.1160 +0 0.1949 +1 0.8085 +0 0.2168 +0 0.0442 +0 0.1979 +0 0.0586 +0 0.1044 +0 0.2627 +0 0.2631 +0 0.2519 +0 0.0972 +0 0.0933 +0 0.1025 +0 0.1428 +0 0.2408 +0 0.3525 +0 0.0611 +0 0.0900 +0 0.0608 +0 0.0396 +0 0.0984 +0 0.0881 +0 0.1079 +0 0.1720 +0 0.2256 +0 0.0648 +0 0.0372 +0 0.1040 +0 0.2113 +0 0.1658 +0 0.3764 +0 0.1329 +0 0.1040 +0 0.2434 +0 0.0961 +0 0.1830 +0 0.1726 +0 0.1737 +0 0.0725 +0 0.0642 +0 0.0486 +0 0.0431 +0 0.0681 +1 0.8320 +0 0.0785 +0 0.7322 +0 0.0847 +0 0.1232 +0 0.0442 +0 0.1395 +0 0.1876 +0 0.0826 +0 0.0636 +0 0.1252 +0 0.0944 +0 0.1614 +0 0.6058 +0 0.2492 +0 0.0748 +0 0.1189 +0 0.1574 +0 0.1907 +0 0.0687 +1 0.7941 +0 0.2961 +0 0.1221 +0 0.2540 +0 0.1386 +0 0.1021 +0 0.2860 +0 0.0451 +0 0.0628 +0 0.4139 +0 0.1738 +0 0.0715 +0 0.1566 +0 0.0974 +0 0.1249 +0 0.1874 +0 0.0840 +0 0.0988 +0 0.0687 +0 0.1660 +0 0.2170 +0 0.1189 +0 0.0543 +0 0.1415 +0 0.1028 +0 0.0780 +0 0.0741 +0 0.0887 +0 0.3162 +0 0.0868 +0 0.1799 +0 0.2333 +0 0.2614 +0 0.0824 +0 0.1298 +0 0.3312 +0 0.0383 +0 0.0809 +0 0.2583 +0 0.5573 +0 0.7357 +0 0.0998 +0 0.0904 +0 0.0755 +0 0.0810 +0 0.1210 +0 0.0495 +0 0.1095 +0 0.0948 +0 0.0620 +0 0.0818 +0 0.1131 +0 0.4720 +0 0.0997 +0 0.0774 +0 0.0997 +0 0.1716 +0 0.0364 +0 0.0690 +0 0.0573 +0 0.1133 +0 0.0442 +0 0.0753 +0 0.1047 +0 0.0931 +0 0.0916 +0 0.0573 +0 0.1568 +0 0.0841 +0 0.0575 +0 0.3998 +0 0.2934 +0 0.2974 +0 0.1135 +0 0.1029 +0 0.1823 +0 0.0813 +0 0.1661 +0 0.2940 +0 0.0794 +0 0.1108 +0 0.0735 +0 0.1201 +0 0.1000 +0 0.0988 +0 0.0786 +0 0.0491 +0 0.3270 +0 0.0997 +0 0.2169 +0 0.1351 +0 0.1586 +0 0.1076 +0 0.2020 +0 0.2633 +0 0.0398 +0 0.0574 +0 0.1802 +0 0.4785 +0 0.1637 +0 0.0807 +0 0.1681 +0 0.3284 +0 0.1709 +0 0.1790 +0 0.2192 +0 0.0945 +0 0.0806 +0 0.0437 +0 0.0866 +0 0.2383 +0 0.4304 +0 0.1815 +0 0.1921 +0 0.2989 +0 0.0969 +0 0.3055 +0 0.1002 +0 0.2001 +0 0.0706 +0 0.0716 +0 0.1748 +0 0.1585 +0 0.0889 +0 0.1860 +0 0.0468 +0 0.3303 +0 0.0786 +0 0.3805 +0 0.0741 +1 0.8198 +0 0.1677 +0 0.0953 +0 0.1737 +0 0.0812 +0 0.1662 +0 0.0363 +0 0.0561 +0 0.1083 +0 0.0589 +0 0.0846 +0 0.0663 +0 0.1666 +0 0.1090 +0 0.1190 +0 0.0808 +0 0.0618 +0 0.0612 +0 0.1323 +0 0.1272 +0 0.0595 +1 0.8047 +0 0.1176 +0 0.0802 +0 0.2071 +0 0.1231 +0 0.1486 +0 0.0722 +0 0.1642 +0 0.1628 +0 0.1963 +0 0.0882 +0 0.1006 +0 0.1382 +0 0.0652 +0 0.0848 +0 0.2352 +0 0.1598 +0 0.1160 +1 0.7733 +0 0.0657 +0 0.0888 +0 0.1845 +0 0.1511 +0 0.3272 +0 0.2341 +0 0.1771 +0 0.1387 +0 0.0940 +0 0.0510 +0 0.0872 +0 0.1631 +0 0.2638 +0 0.1242 +0 0.2505 +0 0.1163 +0 0.3809 +0 0.0938 +0 0.0437 +0 0.0830 +0 0.0688 +0 0.0905 +0 0.1322 +0 0.0950 +0 0.0645 +0 0.2263 +0 0.1719 +0 0.1177 +0 0.1227 +0 0.0963 +0 0.1031 +0 0.1487 +0 0.2273 +0 0.1526 +0 0.1281 +0 0.1183 +0 0.1835 +0 0.1041 +0 0.3586 +0 0.1148 +0 0.2368 +0 0.1023 +0 0.1584 +0 0.1875 +0 0.1131 +0 0.0605 +0 0.1155 +0 0.0873 +0 0.1050 +1 0.8032 +0 0.0547 +0 0.0969 +0 0.0733 +0 0.0616 +0 0.1031 +0 0.0688 +0 0.1179 +0 0.0794 +0 0.0419 +0 0.1659 +0 0.1085 +0 0.0536 +0 0.2196 +0 0.0581 +0 0.0813 +0 0.0960 +0 0.0952 +0 0.0875 +0 0.2035 +0 0.1163 +0 0.1487 +0 0.0789 +0 0.0683 +0 0.0770 +0 0.1578 +0 0.0639 +0 0.0412 +0 0.1462 +0 0.1094 +0 0.0475 +0 0.0371 +0 0.1490 +0 0.1395 +0 0.0812 +0 0.1057 +0 0.0784 +0 0.0814 +0 0.0563 +0 0.1084 +0 0.0752 +0 0.2153 +0 0.1462 +0 0.1325 +0 0.1764 +0 0.1462 +0 0.0653 +0 0.1696 +0 0.3436 +0 0.0448 +0 0.1077 +0 0.6406 +0 0.1541 +0 0.1402 +0 0.1221 +0 0.0379 +0 0.1822 +0 0.0681 +0 0.2456 +0 0.0714 +0 0.0579 +0 0.0632 +0 0.1275 +0 0.0886 +0 0.0462 +0 0.1964 +0 0.0937 +0 0.0925 +0 0.0819 +0 0.0967 +0 0.1734 +0 0.1768 +0 0.1686 +0 0.0580 +0 0.4170 +0 0.1460 +0 0.1000 +0 0.1393 +0 0.3757 +0 0.6959 +0 0.2397 +0 0.0477 +0 0.0827 +0 0.4906 +0 0.1946 +0 0.0433 +0 0.1285 +0 0.0956 +0 0.2286 +0 0.4271 +0 0.0731 +0 0.2024 +0 0.2419 +0 0.2953 +0 0.2020 +0 0.1187 +0 0.0539 +0 0.1935 +0 0.2439 +0 0.0638 +0 0.0670 +0 0.1283 +0 0.0786 +0 0.0419 +0 0.2660 +0 0.2689 +0 0.1510 +0 0.0439 +0 0.0692 +0 0.0529 +0 0.1035 +0 0.0370 +0 0.0974 +0 0.0932 +0 0.2353 +0 0.1448 +0 0.1645 +0 0.0839 +0 0.2508 +0 0.1261 +0 0.3572 +0 0.0544 +0 0.1777 +0 0.0675 +0 0.1254 +0 0.0788 +0 0.1006 +0 0.3993 +0 0.1848 +0 0.1066 +0 0.0917 +0 0.1378 +0 0.2402 +0 0.3255 +0 0.2800 +0 0.1326 +0 0.1277 +0 0.1518 +0 0.1299 +0 0.1190 +0 0.6573 +0 0.0904 +0 0.0719 +0 0.1079 +0 0.0878 +0 0.1713 +0 0.0704 +0 0.0819 +0 0.0503 +0 0.1108 +0 0.1427 +0 0.0804 +0 0.2556 +0 0.0412 +0 0.0845 +0 0.1846 +0 0.6877 +0 0.0873 +0 0.0332 +0 0.0845 +0 0.2053 +0 0.0622 +0 0.1050 +0 0.1030 +0 0.0964 +0 0.0416 +0 0.1133 +0 0.2210 +0 0.0958 +0 0.1106 +0 0.0818 +0 0.0893 +0 0.0837 +0 0.2612 +0 0.2309 +0 0.2992 +0 0.1982 +0 0.0490 +0 0.0580 +0 0.2671 +0 0.0702 +0 0.1078 +0 0.1513 +0 0.0794 +0 0.0643 +0 0.0985 +0 0.1153 +0 0.1401 +0 0.1592 +0 0.0380 +0 0.0583 +0 0.1199 +0 0.0957 +0 0.1832 +0 0.1421 +0 0.0776 +0 0.1690 +0 0.2065 +0 0.0373 +0 0.2621 +0 0.1387 +0 0.0825 +0 0.1763 +0 0.3556 +0 0.0701 +0 0.1446 +0 0.1725 +0 0.1188 +0 0.0785 +0 0.2132 +0 0.0666 +0 0.0786 +0 0.1014 +0 0.6166 +0 0.0576 +0 0.1300 +0 0.1038 +0 0.1630 +0 0.0933 +0 0.0561 +0 0.1455 +1 0.8653 +0 0.2442 +0 0.0766 +0 0.1493 +0 0.1092 +0 0.0667 +0 0.1634 +0 0.3588 +0 0.0777 +0 0.1217 +0 0.0925 +0 0.0766 +0 0.0854 +0 0.1132 +0 0.1091 +0 0.1706 +0 0.0776 +0 0.0991 +0 0.0820 +0 0.1949 +0 0.1217 +0 0.0498 +0 0.1222 +0 0.0670 +0 0.3191 +0 0.0694 +0 0.1994 +0 0.4035 +0 0.1422 +0 0.1875 +0 0.0710 +0 0.0652 +0 0.1274 +0 0.0862 +0 0.1045 +0 0.0872 +0 0.2182 +0 0.6160 +0 0.1164 +0 0.0534 +0 0.0616 +0 0.0610 +0 0.0716 +0 0.1263 +0 0.0761 +0 0.1027 +0 0.3028 +0 0.2037 +0 0.1564 +0 0.1116 +0 0.0641 +0 0.1774 +0 0.0716 +0 0.1785 +0 0.1307 +0 0.1155 +0 0.0904 +0 0.1006 +0 0.2674 +0 0.1276 +0 0.0768 +0 0.0773 +0 0.1447 +0 0.1896 +0 0.0640 +0 0.1696 +0 0.1392 +0 0.0603 +0 0.1705 +0 0.0848 +0 0.1347 +0 0.1758 +0 0.1906 +0 0.1297 +0 0.1536 +0 0.0622 +0 0.1592 +0 0.0816 +0 0.0989 +0 0.1880 +0 0.1132 +0 0.2369 +0 0.1524 +0 0.1223 +0 0.0671 +0 0.1425 +0 0.1110 +0 0.0889 +0 0.1219 +0 0.0416 +0 0.1492 +0 0.0386 +0 0.2463 +0 0.1245 +0 0.1254 +0 0.2722 +0 0.1462 +0 0.0600 +0 0.2103 +0 0.0371 +0 0.0611 +0 0.1076 +0 0.0874 +0 0.2282 +0 0.1089 +0 0.0659 +0 0.2075 +0 0.0427 +0 0.0579 +0 0.1211 +0 0.0687 +0 0.0737 +0 0.0960 +0 0.1359 +0 0.1284 +0 0.1124 +0 0.0393 +0 0.1551 +0 0.3123 +0 0.2239 +0 0.1514 +0 0.0415 +0 0.1373 +0 0.1826 +0 0.0447 +0 0.3334 +0 0.0826 +0 0.1085 +0 0.1668 +0 0.0584 +0 0.1330 +0 0.2218 +0 0.1400 +0 0.0556 +0 0.4081 +0 0.0581 +0 0.0884 +0 0.1114 +0 0.0923 +0 0.3485 +0 0.0656 +0 0.1713 +0 0.3660 +0 0.1064 +0 0.1661 +0 0.1637 +0 0.0409 +0 0.0745 +0 0.1850 +0 0.6350 +0 0.0555 +0 0.1279 +0 0.0498 +0 0.0924 +0 0.0494 +0 0.1585 +0 0.0790 +0 0.6448 +0 0.0839 +0 0.0807 +0 0.1851 +0 0.2330 +0 0.1042 +0 0.2027 +0 0.0655 +0 0.1887 +0 0.1547 +0 0.2211 +1 0.8281 +0 0.0506 +0 0.1100 +0 0.0861 +0 0.2282 +0 0.0972 +0 0.1122 +0 0.2840 +0 0.0986 +0 0.0808 +0 0.1256 +0 0.0656 +0 0.0819 +0 0.1271 +1 0.8914 +0 0.0477 +0 0.0447 +0 0.1025 +0 0.1457 +0 0.1054 +0 0.2077 +0 0.6297 +0 0.1043 +0 0.1150 +0 0.1892 +0 0.1544 +0 0.2378 +0 0.2387 +0 0.0714 +0 0.0733 +0 0.0504 +0 0.0489 +0 0.1465 +0 0.4543 +0 0.2545 +0 0.0763 +0 0.1182 +0 0.0817 +0 0.1584 +0 0.1110 +0 0.1352 +0 0.2070 +0 0.3335 +0 0.1028 +0 0.2615 +0 0.2122 +0 0.1874 +0 0.0788 +0 0.1184 +0 0.0540 +0 0.1058 +0 0.0484 +0 0.0891 +0 0.0987 +0 0.1095 +0 0.0548 +0 0.0769 +0 0.0496 +1 0.8371 +0 0.0709 +0 0.0994 +0 0.3359 +0 0.3057 +0 0.1363 +0 0.0486 +0 0.0725 +0 0.2900 +0 0.1032 +0 0.1120 +0 0.2166 +0 0.1010 +0 0.0374 +0 0.0446 +0 0.0657 +0 0.2491 +0 0.1635 +0 0.0593 +0 0.0521 +0 0.1550 +0 0.2671 +0 0.0789 +0 0.0691 +0 0.1074 +0 0.1033 +0 0.3061 +0 0.1391 +0 0.1636 +0 0.1251 +0 0.0804 +0 0.1176 +0 0.0703 +0 0.0526 +0 0.1223 +0 0.5360 +0 0.0781 +0 0.1192 +0 0.0947 +0 0.2968 +0 0.1196 +0 0.2912 +0 0.0802 +0 0.3933 +0 0.2028 +0 0.1891 +0 0.0676 +0 0.2612 +0 0.1912 +0 0.1147 +0 0.1395 +0 0.1349 +0 0.0443 +0 0.2201 +0 0.0604 +0 0.0410 +0 0.1042 +0 0.1523 +0 0.0402 +0 0.4686 +0 0.1190 +0 0.0895 +0 0.0551 +0 0.0533 +0 0.1418 +0 0.1634 +0 0.0643 +0 0.1305 +0 0.0763 +0 0.1772 +0 0.2228 +0 0.1108 +0 0.0961 +0 0.0624 +0 0.1709 +0 0.0764 +0 0.0807 +0 0.0903 +0 0.0605 +0 0.1429 +0 0.0380 +0 0.1627 +0 0.0817 +0 0.1028 +0 0.2229 +0 0.0799 +0 0.0805 +0 0.1165 +0 0.2605 +0 0.0702 +0 0.1897 +0 0.0749 +0 0.3693 +0 0.1406 +0 0.1788 +0 0.0508 +0 0.0655 +0 0.1067 +0 0.0780 +0 0.0975 +0 0.2237 +0 0.1872 +0 0.1543 +0 0.2981 +0 0.1070 +0 0.0498 +0 0.4426 +0 0.0492 +0 0.0834 +0 0.3084 +0 0.0874 +0 0.0415 +0 0.0552 +0 0.0840 +0 0.0852 +0 0.1040 +0 0.0479 +0 0.0432 +0 0.0871 +0 0.0606 +0 0.1536 +0 0.0733 +0 0.0779 +0 0.0969 +0 0.0502 +0 0.1654 +0 0.5382 +0 0.1336 +0 0.1302 +0 0.0746 +0 0.0822 +0 0.0810 +0 0.1090 +0 0.1603 +0 0.2381 +0 0.1914 +0 0.0943 +0 0.1145 +0 0.2729 +0 0.0494 +0 0.0496 +0 0.2404 +0 0.0836 +0 0.0778 +0 0.0774 +0 0.0890 +0 0.0917 +0 0.2191 +0 0.1203 +0 0.0706 +0 0.4681 +0 0.0768 +0 0.1703 +0 0.0909 +0 0.1177 +0 0.0920 +0 0.1161 +0 0.0520 +0 0.0687 +0 0.0738 +0 0.1202 +0 0.0674 +0 0.1020 +0 0.2493 +0 0.2383 +0 0.0609 +0 0.0944 +0 0.1302 +0 0.0980 +0 0.1168 +0 0.1502 +0 0.4697 +0 0.0560 +0 0.1280 +0 0.1818 +0 0.0591 +0 0.0637 +0 0.0786 +0 0.1048 +0 0.0597 +0 0.2708 +0 0.2535 +0 0.1007 +0 0.0663 +0 0.0714 +0 0.2269 +0 0.0539 +0 0.0626 +0 0.0578 +0 0.2778 +0 0.1013 +0 0.1031 +0 0.0505 +0 0.1839 +0 0.0688 +0 0.0795 +0 0.0554 +0 0.3692 +0 0.0708 +0 0.0411 +0 0.1065 +0 0.1669 +0 0.1415 +0 0.0538 +0 0.1773 +0 0.2425 +0 0.1327 +0 0.6917 +0 0.0644 +0 0.0993 +0 0.0769 +0 0.2084 +1 0.2642 +0 0.1769 +0 0.2068 +0 0.0529 +0 0.1232 +0 0.4565 +0 0.3243 +0 0.0975 +0 0.0506 +0 0.0526 +0 0.3624 +0 0.3037 +0 0.0713 +0 0.3563 +0 0.0654 +0 0.1317 +0 0.1405 +0 0.0527 +0 0.1366 +0 0.1915 +0 0.6678 +0 0.1071 +0 0.1390 +0 0.0582 +0 0.0558 +0 0.0707 +0 0.0416 +0 0.1478 +0 0.1627 +0 0.0475 +0 0.0448 +0 0.0276 +0 0.0415 +0 0.7192 +0 0.0914 +0 0.2589 +0 0.1471 +0 0.0514 +0 0.0917 +0 0.4484 +0 0.7300 +0 0.1188 +0 0.0460 +0 0.1375 +0 0.1313 +0 0.3115 +0 0.1312 +0 0.0628 +0 0.0983 +0 0.1503 +0 0.1123 +0 0.1706 +0 0.1021 +0 0.1028 +0 0.0489 +0 0.2064 +0 0.1308 +0 0.1775 +0 0.0561 +0 0.0760 +0 0.1830 +0 0.0958 +0 0.0885 +0 0.1243 +0 0.3150 +0 0.2646 +0 0.0712 +0 0.0884 +0 0.1049 +0 0.0355 +0 0.0646 +0 0.0523 +0 0.0973 +0 0.6828 +0 0.0849 +0 0.1041 +0 0.0601 +0 0.0925 +0 0.1238 +0 0.1561 +0 0.1348 +0 0.0878 +0 0.1608 +0 0.1109 +0 0.1165 +0 0.1651 +0 0.1239 +0 0.1210 +0 0.0937 +0 0.1983 +0 0.0544 +0 0.1351 +0 0.1253 +0 0.0809 +0 0.1456 +0 0.5215 +0 0.2993 +0 0.0703 +0 0.1633 +0 0.2200 +0 0.0654 +0 0.2057 +0 0.0894 +0 0.0628 +0 0.1948 +0 0.1310 +0 0.1462 +0 0.0992 +0 0.1233 +0 0.1152 +0 0.0913 +0 0.1122 +0 0.0852 +0 0.0691 +0 0.0962 +0 0.0645 +0 0.1904 +0 0.0454 +0 0.0761 +0 0.0666 +0 0.1542 +0 0.1456 +0 0.6707 +0 0.1055 +0 0.1016 +0 0.0482 +0 0.3491 +0 0.1848 +0 0.1567 +0 0.0981 +0 0.0544 +0 0.0499 +0 0.2441 +0 0.0439 +0 0.2765 +0 0.1880 +0 0.0927 +0 0.0681 +0 0.2796 +0 0.0739 +0 0.3592 +0 0.1129 +0 0.1082 +0 0.0769 +0 0.1475 +0 0.1290 +0 0.0846 +0 0.3078 +0 0.2008 +0 0.0728 +0 0.1628 +0 0.1548 +0 0.0495 +0 0.0787 +0 0.1220 +0 0.1985 +0 0.0578 +0 0.1547 +0 0.0486 +0 0.0691 +0 0.2197 +0 0.0579 +0 0.2793 +0 0.0941 +0 0.0728 +0 0.0547 +0 0.0555 +0 0.4853 +0 0.0617 +0 0.1851 +0 0.0517 +0 0.0454 +0 0.1985 +0 0.0678 +0 0.1519 +0 0.3022 +0 0.0732 +0 0.1241 +0 0.1242 +0 0.0761 +0 0.1471 +0 0.1251 +0 0.0983 +0 0.1032 +0 0.1056 +0 0.1321 +0 0.1836 +0 0.1702 +0 0.1012 +0 0.1803 +0 0.0798 +0 0.1145 +0 0.0663 +0 0.0853 +0 0.1326 +0 0.0636 +0 0.0710 +0 0.1043 +0 0.1836 +0 0.3569 +0 0.0509 +0 0.3019 +0 0.3052 +0 0.1201 +0 0.0706 +0 0.1199 +1 0.8416 +0 0.0687 +0 0.0596 +0 0.0619 +0 0.0867 +0 0.0607 +0 0.0516 +0 0.1329 +0 0.1041 +0 0.1127 +0 0.3264 +0 0.0747 +0 0.0824 +0 0.0875 +0 0.1015 +0 0.0701 +0 0.0686 +0 0.0957 +0 0.1089 +0 0.7288 +0 0.0676 +0 0.0385 +0 0.1731 +0 0.2067 +0 0.0731 +0 0.1066 +0 0.1213 +0 0.1038 +0 0.0834 +0 0.1816 +0 0.1212 +1 0.7994 +0 0.0745 +0 0.1183 +0 0.1134 +0 0.1438 +0 0.0660 +0 0.0636 +0 0.1291 +0 0.6558 +0 0.1760 +0 0.2212 +0 0.3374 +0 0.0976 +0 0.1207 +0 0.0644 +0 0.1856 +0 0.1452 +0 0.0895 +0 0.0545 +0 0.0936 +0 0.0784 +0 0.0655 +0 0.0611 +0 0.1439 +0 0.1537 +0 0.1620 +0 0.1015 +0 0.0631 +0 0.1744 +0 0.1312 +1 0.7566 +0 0.0746 +0 0.1771 +0 0.0620 +0 0.2041 +0 0.0808 +0 0.6766 +0 0.1385 +0 0.0747 +0 0.1416 +0 0.3229 +0 0.1315 +0 0.1252 +0 0.3618 +0 0.0858 +0 0.0670 +0 0.0710 +0 0.0795 +0 0.2347 +0 0.0975 +0 0.0419 +0 0.2199 +0 0.0598 +0 0.0600 +0 0.0666 +0 0.1910 +0 0.0497 +0 0.0943 +0 0.0636 +0 0.3125 +0 0.1024 +0 0.0357 +0 0.1411 +0 0.0838 +0 0.0898 +0 0.2229 +0 0.1702 +0 0.1016 +0 0.1149 +0 0.1605 +0 0.0850 +0 0.0675 +0 0.1884 +0 0.0817 +0 0.1778 +0 0.2663 +0 0.0395 +0 0.1344 +0 0.0566 +0 0.4963 +0 0.2413 +0 0.1133 +0 0.1248 +0 0.0862 +0 0.0765 +0 0.2094 +0 0.1129 +0 0.1193 +0 0.0690 +0 0.1241 +0 0.6450 +0 0.0682 +0 0.2878 +0 0.0746 +0 0.1075 +0 0.0619 +0 0.0710 +0 0.1710 +0 0.1031 +0 0.1759 +0 0.0523 +0 0.0432 +0 0.1408 +0 0.6394 +0 0.0923 +0 0.0837 +0 0.1350 +0 0.2307 +0 0.0768 +0 0.0600 +0 0.2015 +0 0.0941 +0 0.0577 +0 0.0644 +0 0.0400 +0 0.1822 +0 0.1600 +0 0.0568 +0 0.1243 +0 0.1739 +0 0.0877 +0 0.0987 +0 0.1193 +0 0.2009 +0 0.1476 +0 0.1506 +0 0.0662 +0 0.0344 +0 0.1137 +0 0.0558 +0 0.1652 +0 0.1446 +0 0.0716 +0 0.2374 +0 0.1139 +0 0.0902 +0 0.0785 +0 0.1454 +0 0.0798 +0 0.3780 +0 0.1452 +0 0.0508 +0 0.1150 +0 0.0759 +0 0.0510 +0 0.2146 +0 0.1862 +0 0.1162 +0 0.3012 +0 0.5178 +0 0.0577 +0 0.1234 +0 0.1214 +1 0.8417 +0 0.1404 +0 0.0638 +0 0.2186 +0 0.1260 +0 0.0827 +0 0.0900 +0 0.0822 +0 0.1375 +0 0.2727 +0 0.4329 +0 0.1064 +0 0.0878 +0 0.1238 +0 0.3534 +0 0.2239 +0 0.2091 +0 0.1598 +0 0.1362 +0 0.7050 +0 0.1253 +0 0.4194 +0 0.1004 +0 0.1113 +0 0.0865 +0 0.1238 +0 0.0543 +0 0.2580 +0 0.1541 +0 0.1099 +0 0.0687 +0 0.1040 +0 0.0593 +0 0.2380 +0 0.2273 +1 0.8872 +0 0.2027 +0 0.0709 +0 0.0675 +0 0.0562 +0 0.1258 +0 0.6247 +0 0.3919 +0 0.1075 +0 0.0794 +0 0.0860 +0 0.0580 +0 0.1439 +0 0.0821 +0 0.2091 +0 0.1565 +0 0.1023 +0 0.0937 +0 0.2292 +0 0.0978 +0 0.1894 +0 0.0759 +0 0.0766 +0 0.0755 +0 0.0407 +0 0.2734 +0 0.1225 +0 0.1248 +0 0.1139 +0 0.1370 +0 0.1413 +0 0.2823 +0 0.1263 +0 0.0508 +0 0.1590 +0 0.5956 +0 0.1654 +0 0.1602 +0 0.0529 +0 0.1121 +0 0.1098 +0 0.0934 +0 0.0373 +0 0.2610 +0 0.1057 +0 0.1001 +0 0.0811 +0 0.1503 +0 0.0559 +0 0.1318 +0 0.0691 +0 0.1019 +0 0.0492 +0 0.0575 +0 0.1222 +0 0.0675 +0 0.0762 +0 0.1401 +0 0.2101 +0 0.2324 +0 0.0992 +0 0.0942 +0 0.1030 +0 0.1289 +0 0.0482 +0 0.2125 +0 0.1543 +0 0.1614 +0 0.3656 +0 0.2545 +0 0.1589 +0 0.0449 +0 0.0630 +0 0.0667 +0 0.1185 +0 0.7435 +0 0.1208 +1 0.7862 +0 0.0909 +0 0.0922 +0 0.0924 +0 0.0797 +0 0.0699 +0 0.0779 +0 0.1672 +0 0.0505 +0 0.0890 +0 0.0609 +0 0.2437 +0 0.1037 +0 0.0931 +0 0.0653 +1 0.7788 +0 0.0912 +0 0.0683 +0 0.0503 +0 0.0928 +0 0.1455 +0 0.0721 +0 0.0743 +0 0.0699 +0 0.2708 +0 0.0384 +0 0.0397 +0 0.0534 +0 0.6968 +0 0.1430 +0 0.0611 +0 0.0502 +0 0.2420 +0 0.1311 +0 0.2286 +0 0.0798 +0 0.1794 +0 0.0976 +0 0.1036 +0 0.2943 +0 0.1536 +0 0.0374 +0 0.0722 +0 0.0665 +0 0.1017 +0 0.1587 +0 0.1173 +0 0.1035 +0 0.0779 +0 0.0902 +0 0.2438 +0 0.0527 +0 0.2029 +0 0.0893 +0 0.1088 +0 0.0687 +0 0.0592 +0 0.0538 +0 0.2590 +0 0.7025 +0 0.1183 +0 0.0830 +0 0.2264 +0 0.0820 +0 0.0710 +0 0.0834 +0 0.0386 +0 0.1127 +0 0.1897 +0 0.3033 +0 0.0721 +0 0.1838 +0 0.2506 +0 0.3476 +0 0.2391 +0 0.1521 +0 0.1552 +0 0.0489 +0 0.6971 +0 0.0612 +0 0.1274 +0 0.0547 +0 0.2771 +0 0.4510 +0 0.0810 +0 0.0898 +0 0.0789 +0 0.3756 +0 0.1690 +0 0.3359 +0 0.1341 +0 0.1286 +0 0.2074 +0 0.1185 +0 0.1947 +0 0.0831 +0 0.0973 +0 0.1584 +0 0.0797 +0 0.0331 +0 0.0925 +0 0.0590 +0 0.1086 +0 0.0639 +0 0.2523 +0 0.0579 +0 0.0840 +0 0.1093 +0 0.0594 +0 0.0870 +0 0.0558 +0 0.1152 +0 0.0901 +0 0.1471 +0 0.1926 +0 0.0412 +0 0.5034 +0 0.1490 +0 0.1776 +0 0.0481 +0 0.0641 +0 0.1257 +0 0.1002 +0 0.0631 +0 0.2997 +0 0.6984 +0 0.2561 +0 0.1117 +0 0.0423 +0 0.1688 +0 0.0821 +0 0.0824 +0 0.0587 +0 0.0728 +0 0.0907 +0 0.0556 +0 0.1076 +0 0.1550 +0 0.1109 +0 0.1267 +0 0.0568 +0 0.0723 +0 0.0759 +0 0.0636 +0 0.2453 +0 0.0598 +0 0.0824 +0 0.1337 +0 0.0630 +0 0.0609 +0 0.2304 +0 0.0592 +0 0.2499 +0 0.1121 +0 0.1582 +0 0.0820 +0 0.0723 +0 0.7262 +0 0.0698 +0 0.0590 +0 0.6528 +0 0.0988 +0 0.1065 +0 0.0794 +0 0.1282 +0 0.2066 +0 0.0672 +0 0.2216 +0 0.0843 +0 0.0541 +0 0.1476 +0 0.2810 +0 0.0444 +0 0.1173 +0 0.0797 +0 0.2384 +0 0.0879 +0 0.0400 +0 0.1051 +0 0.1586 +0 0.3934 +0 0.0763 +0 0.0855 +0 0.3426 +0 0.1288 +0 0.1057 +0 0.2357 +0 0.0590 +0 0.0651 +0 0.0517 +0 0.1056 +0 0.3730 +0 0.0856 +0 0.1712 +0 0.0401 +0 0.0807 +0 0.1050 +0 0.0790 +0 0.0968 +0 0.1342 +0 0.0533 +0 0.2130 +0 0.0394 +0 0.2152 +0 0.0451 +0 0.3283 +0 0.1402 +0 0.0899 +0 0.1642 +0 0.0891 +0 0.1831 +0 0.0894 +0 0.0624 +0 0.0381 +0 0.0514 +0 0.3108 +0 0.1469 +0 0.1540 +0 0.2015 +0 0.0963 +0 0.7228 +0 0.1407 +0 0.1085 +0 0.2863 +0 0.1073 +0 0.0742 +0 0.0926 +0 0.0582 +0 0.3095 +0 0.0672 +0 0.0274 +0 0.1233 +0 0.0344 +0 0.0431 +0 0.1436 +0 0.1485 +0 0.2611 +0 0.0980 +0 0.2190 +0 0.5005 +0 0.2006 +0 0.0754 +0 0.1985 +0 0.1169 +0 0.0804 +0 0.0644 +0 0.1380 +0 0.0445 +0 0.0857 +1 0.7669 +0 0.1868 +0 0.0496 +0 0.2762 +0 0.0543 +0 0.1634 +0 0.0706 +0 0.0592 +0 0.1880 +0 0.0897 +0 0.0574 +0 0.3354 +0 0.2273 +0 0.1480 +0 0.2056 +0 0.0703 +0 0.1062 +0 0.0785 +0 0.2345 +0 0.1216 +0 0.1196 +0 0.0977 +0 0.0675 +0 0.1824 +0 0.0556 +0 0.0786 +0 0.0798 +0 0.1663 +0 0.0389 +0 0.7442 +0 0.2297 +0 0.2779 +0 0.0635 +0 0.2013 +0 0.1450 +0 0.1023 +0 0.1510 +0 0.1724 +0 0.2457 +0 0.1029 +0 0.1463 +0 0.2684 +0 0.0899 +0 0.0701 +0 0.3023 +0 0.1014 +0 0.0603 +0 0.1070 +0 0.2249 +0 0.2943 +0 0.1350 +0 0.7222 +0 0.0802 +0 0.0892 +0 0.0455 +0 0.1847 +0 0.1324 +0 0.1605 +0 0.4226 +0 0.1086 +0 0.0748 +0 0.1159 +0 0.1148 +0 0.2013 +0 0.0905 +0 0.1886 +0 0.2138 +0 0.1040 +0 0.1361 +0 0.1551 +1 0.7691 +0 0.0970 +0 0.0863 +0 0.3070 +0 0.1016 +0 0.1210 +0 0.0881 +0 0.1004 +0 0.1445 +0 0.1170 +0 0.0867 +0 0.1627 +0 0.1263 +0 0.1565 +0 0.1302 +0 0.1398 +0 0.1034 +0 0.1242 +0 0.0959 +0 0.0534 +0 0.0660 +0 0.5326 +0 0.1289 +0 0.4113 +0 0.1725 +0 0.0510 +0 0.1866 +0 0.0599 +0 0.0850 +0 0.0917 +0 0.2822 +0 0.0746 +0 0.1594 +0 0.2062 +0 0.0459 +0 0.1675 +0 0.0649 +0 0.4690 +0 0.1116 +0 0.0866 +0 0.0906 +0 0.1247 +0 0.1497 +0 0.4412 +0 0.0553 +0 0.0977 +0 0.1352 +0 0.1114 +0 0.1117 +0 0.0673 +0 0.0696 +0 0.2746 +0 0.3047 +0 0.1165 +0 0.0576 +0 0.1015 +0 0.0603 +0 0.0491 +0 0.2011 +0 0.1733 +0 0.0659 +0 0.1056 +0 0.2010 +0 0.0711 +0 0.1518 +0 0.1560 +0 0.0668 +0 0.1964 +0 0.1542 +0 0.0446 +0 0.0824 +0 0.0804 +0 0.1834 +0 0.0671 +0 0.0476 +0 0.0560 +0 0.0489 +0 0.1818 +0 0.1437 +0 0.0852 +0 0.0727 +0 0.0401 +0 0.0626 +0 0.3216 +0 0.1650 +0 0.4741 +0 0.1340 +0 0.1969 +0 0.2015 +0 0.1597 +0 0.1360 +0 0.0662 +0 0.1866 +0 0.2507 +0 0.0902 +0 0.0450 +0 0.1299 +0 0.0615 +0 0.3384 +0 0.2840 +0 0.0726 +0 0.0769 +0 0.1094 +0 0.0711 +0 0.1179 +0 0.1996 +0 0.0816 +0 0.0922 +0 0.1184 +0 0.0561 +0 0.7470 +0 0.0708 +0 0.3867 +0 0.1515 +0 0.1240 +0 0.0585 +0 0.3740 +0 0.0932 +0 0.1425 +0 0.0519 +1 0.8448 +0 0.0485 +0 0.1227 +0 0.1912 +0 0.1851 +0 0.0916 +0 0.1688 +0 0.4486 +0 0.0544 +0 0.0827 +0 0.0964 +0 0.1035 +0 0.3658 +0 0.0980 +0 0.0595 +0 0.1266 +0 0.0962 +0 0.1277 +0 0.1220 +0 0.1119 +0 0.0322 +0 0.1001 +0 0.1460 +0 0.0772 +0 0.0908 +0 0.1579 +0 0.0710 +0 0.0865 +0 0.0418 +0 0.0973 +0 0.0961 +0 0.0607 +0 0.2427 +0 0.6124 +0 0.0562 +0 0.0885 +0 0.1324 +0 0.2322 +0 0.0376 +0 0.4411 +0 0.0784 +0 0.5861 +0 0.0851 +0 0.1972 +0 0.1414 +0 0.0512 +0 0.1118 +0 0.0980 +0 0.1527 +0 0.4291 +0 0.1198 +0 0.3513 +1 0.7715 +0 0.2909 +0 0.1246 +0 0.6748 +0 0.1303 +0 0.1187 +0 0.3048 +0 0.0806 +0 0.1394 +0 0.1297 +0 0.0437 +0 0.0726 +0 0.0419 +0 0.0870 +0 0.0457 +0 0.0847 +0 0.1225 +0 0.0811 +0 0.3798 +0 0.1889 +0 0.1446 +0 0.0591 +0 0.0643 +0 0.0797 +0 0.0615 +0 0.0637 +0 0.2213 +0 0.0851 +0 0.1243 +0 0.1028 +0 0.3785 +0 0.1353 +0 0.0609 +0 0.0529 +0 0.2230 +0 0.0675 +0 0.0729 +0 0.0723 +0 0.0968 +0 0.0610 +0 0.0944 +0 0.0842 +0 0.1119 +0 0.0551 +0 0.0590 +0 0.1029 +0 0.1866 +0 0.1281 +0 0.0730 +0 0.3075 +0 0.0433 +0 0.0613 +0 0.1148 +0 0.4314 +0 0.1007 +0 0.1841 +0 0.1045 +0 0.1031 +0 0.0821 +0 0.2548 +0 0.1979 +0 0.1188 +0 0.1330 +0 0.0816 +0 0.1209 +0 0.0617 +0 0.0831 +0 0.1419 +0 0.4232 +0 0.1589 +0 0.0664 +0 0.1170 +0 0.0769 +0 0.1694 +0 0.1091 +0 0.1054 +0 0.0910 +0 0.1145 +1 0.7645 +0 0.0972 +0 0.0967 +0 0.0680 +0 0.0406 +0 0.1316 +0 0.0627 +0 0.0602 +0 0.1552 +0 0.0754 +0 0.0683 +0 0.1019 +0 0.0768 +0 0.1144 +0 0.0936 +0 0.1875 +0 0.1218 +0 0.0943 +0 0.1189 +0 0.0454 +0 0.0664 +0 0.0846 +0 0.1442 +0 0.2220 +0 0.0511 +0 0.1116 +0 0.1020 +0 0.0988 +0 0.2188 +0 0.1413 +0 0.2224 +0 0.0931 +0 0.0728 +0 0.0922 +0 0.1215 +0 0.0571 +0 0.0678 +1 0.8440 +0 0.0663 +0 0.0730 +0 0.5485 +0 0.1399 +0 0.0594 +0 0.1330 +0 0.1343 +0 0.0535 +0 0.1211 +0 0.0368 +0 0.0835 +0 0.0810 +0 0.0778 +0 0.0695 +0 0.2524 +1 0.8507 +0 0.0653 +0 0.0641 +0 0.1021 +0 0.1346 +0 0.0731 +0 0.0983 +0 0.1228 +0 0.1150 +0 0.4668 +0 0.0662 +0 0.2649 +0 0.1846 +0 0.4564 +0 0.1587 +0 0.3146 +0 0.0889 +0 0.1165 +0 0.0795 +0 0.0973 +0 0.1469 +0 0.1919 +0 0.1116 +0 0.1305 +0 0.1487 +0 0.1109 +0 0.1103 +0 0.1010 +0 0.0617 +0 0.1495 +0 0.1157 +0 0.1141 +0 0.0758 +0 0.1456 +0 0.0568 +0 0.1790 +0 0.2161 +0 0.1163 +0 0.0915 +0 0.0795 +0 0.0569 +0 0.2123 +0 0.1455 +0 0.1152 +0 0.0590 +0 0.1723 +0 0.0741 +0 0.0524 +0 0.0963 +0 0.0768 +0 0.1041 +0 0.0562 +0 0.0759 +0 0.1640 +0 0.0838 +0 0.0696 +0 0.0550 +0 0.0955 +0 0.0568 +0 0.1682 +0 0.1036 +0 0.1238 +0 0.0843 +0 0.0757 +0 0.2662 +0 0.0425 +0 0.0759 +0 0.0779 +0 0.1246 +0 0.1146 +0 0.1099 +0 0.2784 +0 0.0557 +0 0.0713 +0 0.1757 +0 0.1829 +0 0.1453 +0 0.0390 +0 0.0712 +0 0.1201 +0 0.0557 +0 0.0820 +0 0.0976 +0 0.2119 +0 0.0685 +0 0.0614 +0 0.0481 +0 0.1418 +0 0.1247 +0 0.1000 +0 0.2198 +0 0.0982 +0 0.0408 +0 0.1215 +0 0.0674 +0 0.2396 +0 0.2001 +0 0.1344 +0 0.0847 +0 0.1243 +0 0.0993 +0 0.1333 +0 0.0967 +0 0.0864 +0 0.1048 +0 0.0462 +0 0.0780 +0 0.0760 +0 0.0656 +0 0.0517 +0 0.3445 +0 0.1863 +0 0.0485 +0 0.0756 +0 0.6100 +0 0.0776 +0 0.1495 +0 0.0961 +0 0.1039 +0 0.0920 +0 0.0566 +0 0.0774 +0 0.0703 +0 0.1423 +0 0.2340 +0 0.1193 +0 0.0591 +0 0.0482 +0 0.2328 +0 0.2160 +0 0.1166 +0 0.1025 +0 0.1032 +0 0.0908 +0 0.1158 +0 0.7444 +0 0.1309 +0 0.2567 +0 0.0556 +0 0.0715 +0 0.1073 +0 0.2634 +0 0.0774 +0 0.1835 +0 0.1256 +0 0.0719 +0 0.1018 +0 0.4661 +0 0.0995 +0 0.0544 +0 0.0822 +0 0.2566 +0 0.1127 +0 0.0741 +0 0.0811 +0 0.4571 +0 0.1383 +0 0.0933 +0 0.1142 +0 0.1354 +0 0.0576 +0 0.1594 +0 0.0869 +0 0.2124 +0 0.1231 +0 0.0696 +0 0.0636 +0 0.1502 +0 0.0719 +0 0.1557 +0 0.0858 +0 0.0366 +0 0.1138 +0 0.0381 +0 0.0411 +0 0.2193 +0 0.0400 +0 0.1056 +0 0.0954 +0 0.1483 +0 0.1316 +0 0.1207 +0 0.4743 +0 0.1032 +0 0.0458 +0 0.0465 +0 0.0752 +0 0.0804 +0 0.1326 +0 0.0723 +0 0.0842 +0 0.1273 +0 0.0570 +0 0.1097 +0 0.0837 +0 0.1740 +0 0.0926 +0 0.6609 +0 0.0515 +0 0.0677 +0 0.1351 +0 0.1695 +0 0.1957 +0 0.1014 +0 0.1187 +0 0.0693 +0 0.0683 +0 0.3654 +0 0.0540 +0 0.0800 +0 0.2861 +0 0.1069 +0 0.1915 +0 0.0550 +0 0.1887 +0 0.1882 +0 0.2329 +0 0.0750 +0 0.0682 +0 0.2239 +0 0.1322 +0 0.6824 +0 0.1803 +0 0.0965 +0 0.1217 +0 0.0568 +0 0.1506 +0 0.0650 +0 0.0558 +0 0.1636 +0 0.2068 +0 0.0645 +0 0.0283 +0 0.0495 +0 0.1431 +0 0.2313 +0 0.1625 +0 0.2215 +0 0.1007 +0 0.0978 +0 0.0510 +0 0.0485 +0 0.1214 +0 0.0553 +0 0.1183 +0 0.1343 +0 0.2979 +0 0.7305 +0 0.0595 +0 0.0512 +0 0.1779 +0 0.1336 +0 0.1219 +0 0.1464 +0 0.1223 +0 0.0571 +0 0.0943 +0 0.1080 +0 0.1482 +0 0.0877 +0 0.0625 +0 0.7038 +0 0.0801 +0 0.1145 +0 0.1413 +0 0.2911 +0 0.0567 +0 0.0532 +0 0.0387 +0 0.1092 +0 0.1103 +0 0.0810 +0 0.2938 +0 0.0851 +0 0.0407 +0 0.0822 +0 0.1998 +0 0.0701 +0 0.6336 +0 0.3057 +0 0.2827 +0 0.1986 +0 0.0715 +0 0.0498 +0 0.3536 +0 0.0969 +0 0.0733 +0 0.0812 +0 0.0926 +0 0.0628 +0 0.0815 +0 0.2043 +0 0.1298 +0 0.0643 +0 0.0851 +0 0.0676 +0 0.0874 +0 0.0577 +0 0.1438 +0 0.0818 +1 0.8540 +0 0.0389 +0 0.0373 +0 0.2013 +0 0.0718 +0 0.2349 +0 0.0558 +0 0.0914 +0 0.0762 +0 0.0414 +0 0.0742 +0 0.1297 +0 0.1439 +0 0.1069 +0 0.0683 +0 0.0897 +0 0.1013 +0 0.0814 +0 0.0406 +0 0.1099 +0 0.1011 +0 0.1481 +0 0.0741 +0 0.0626 +0 0.0933 +0 0.2247 +0 0.1899 +0 0.0569 +0 0.1657 +0 0.1267 +0 0.0476 +0 0.2193 +0 0.0865 +0 0.1782 +0 0.0451 +0 0.1144 +0 0.1307 +0 0.0428 +0 0.0978 +0 0.1394 +0 0.0782 +0 0.1804 +0 0.2540 +0 0.0776 +0 0.1054 +0 0.1329 +0 0.1710 +0 0.5039 +0 0.0647 +0 0.1148 +0 0.0543 +0 0.0739 +0 0.2343 +0 0.0988 +0 0.1143 +0 0.1218 +0 0.0669 +0 0.1129 +0 0.1034 +0 0.2481 +0 0.0523 +0 0.1946 +0 0.2202 +0 0.0826 +0 0.1057 +0 0.0851 +0 0.0530 +0 0.1525 +0 0.3457 +0 0.3311 +0 0.1438 +0 0.1307 +0 0.0694 +0 0.1171 +1 0.8658 +0 0.4154 +0 0.0632 +0 0.2749 +0 0.5110 +0 0.2933 +0 0.0819 +0 0.3038 +0 0.1193 +0 0.1032 +0 0.2423 +0 0.2918 +0 0.0892 +0 0.0961 +0 0.1896 +0 0.0891 +0 0.1773 +0 0.0644 +0 0.0690 +0 0.0675 +0 0.1422 +0 0.1795 +0 0.0798 +0 0.0532 +0 0.0969 +0 0.7466 +0 0.1343 +0 0.0964 +0 0.0816 +0 0.1027 +0 0.1449 +0 0.0388 +0 0.0464 +0 0.4302 +0 0.1213 +0 0.3865 +0 0.0473 +0 0.1655 +0 0.1256 +0 0.0727 +0 0.0669 +0 0.0810 +0 0.1136 +0 0.0679 +0 0.0856 +0 0.0792 +0 0.1000 +0 0.0516 +0 0.2373 +0 0.1370 +0 0.0633 +0 0.1330 +0 0.1378 +0 0.0912 +0 0.1049 +0 0.0884 +0 0.0906 +0 0.1065 +0 0.0600 +0 0.6295 +0 0.0649 +0 0.0959 +0 0.3356 +0 0.1447 +0 0.1665 +0 0.1369 +0 0.0702 +0 0.1739 +0 0.1492 +0 0.2799 +0 0.1138 +0 0.0689 +0 0.1349 +0 0.0953 +0 0.6353 +0 0.0614 +0 0.0735 +0 0.0880 +0 0.0559 +0 0.0630 +0 0.1251 +0 0.1546 +0 0.0910 +0 0.2135 +0 0.1567 +0 0.1034 +0 0.0498 +0 0.0471 +0 0.3444 +0 0.0658 +0 0.1476 +0 0.0999 +0 0.0905 +0 0.1207 +0 0.1005 +0 0.1097 +0 0.0786 +0 0.0542 +0 0.0763 +0 0.1108 +0 0.0674 +0 0.1480 +0 0.3879 +0 0.0797 +0 0.0456 +0 0.1458 +0 0.0481 +0 0.0721 +0 0.2263 +0 0.1212 +0 0.1805 +0 0.1175 +0 0.2343 +0 0.0672 +0 0.0814 +0 0.0561 +0 0.2679 +0 0.1191 +0 0.1291 +0 0.0813 +0 0.2600 +0 0.4055 +0 0.1781 +0 0.1217 +0 0.0942 +1 0.8010 +0 0.0674 +0 0.1027 +0 0.2496 +0 0.3855 +0 0.0587 +0 0.1022 +0 0.1521 +0 0.1509 +0 0.1496 +0 0.1746 +0 0.0518 +0 0.1066 +0 0.1075 +0 0.0717 +0 0.0746 +0 0.0778 +0 0.2964 +0 0.1040 +0 0.2388 +0 0.0817 +0 0.0834 +0 0.0783 +0 0.0785 +0 0.0566 +0 0.0873 +0 0.0918 +0 0.1387 +0 0.0671 +0 0.1393 +0 0.2557 +0 0.0695 +0 0.1958 +0 0.0885 +0 0.0502 +0 0.1355 +0 0.1250 +0 0.0901 +0 0.2018 +0 0.2303 +0 0.0573 +0 0.1678 +0 0.1365 +0 0.0958 +0 0.2780 +1 0.8193 +0 0.0530 +0 0.0801 +0 0.1366 +0 0.7339 +0 0.0790 +0 0.0610 +0 0.1244 +0 0.0577 +0 0.1008 +0 0.0918 +0 0.0994 +0 0.0600 +0 0.1050 +0 0.3076 +0 0.2230 +0 0.0455 +0 0.0755 +0 0.1411 +0 0.7027 +0 0.1529 +0 0.0503 +0 0.0637 +0 0.0719 +0 0.1237 +0 0.0908 +0 0.1576 +0 0.0491 +0 0.0726 +0 0.0658 +0 0.3356 +0 0.1156 +0 0.0835 +1 0.8376 +0 0.1371 +0 0.0970 +0 0.0746 +0 0.0635 +0 0.0864 +0 0.0664 +0 0.1369 +0 0.0946 +0 0.0630 +0 0.1208 +0 0.2032 +0 0.0824 +0 0.0711 +0 0.0890 +0 0.1029 +0 0.1383 +0 0.1748 +0 0.0703 +0 0.1547 +0 0.3260 +0 0.0534 +0 0.3064 +0 0.0633 +0 0.1110 +0 0.1054 +0 0.0638 +0 0.1330 +0 0.1905 +0 0.1399 +0 0.2089 +0 0.3393 +0 0.0396 +0 0.1835 +0 0.1480 +0 0.1082 +0 0.1485 +0 0.0586 +0 0.0689 +0 0.1252 +0 0.0498 +0 0.1098 +0 0.0702 +0 0.0457 +0 0.2915 +0 0.1793 +0 0.0617 +0 0.0596 +0 0.4497 +1 0.7622 +0 0.1340 +0 0.1215 +0 0.2100 +0 0.0972 +0 0.2363 +0 0.1318 +0 0.0970 +0 0.0604 +0 0.1537 +0 0.0844 +0 0.1162 +1 0.8008 +0 0.1304 +0 0.0979 +0 0.0748 +0 0.1318 +0 0.0638 +0 0.0849 +0 0.0553 +0 0.0521 +0 0.0995 +0 0.2334 +0 0.0477 +0 0.2585 +0 0.0479 +0 0.2356 +0 0.0630 +0 0.0950 +0 0.2080 +0 0.1115 +0 0.1431 +0 0.1161 +0 0.3053 +0 0.0346 +0 0.4573 +0 0.0807 +0 0.1291 +0 0.0753 +0 0.0925 +0 0.1308 +0 0.0548 +0 0.0541 +0 0.0596 +0 0.2377 +0 0.0508 +0 0.4814 +0 0.1527 +0 0.0625 +0 0.1012 +0 0.1137 +0 0.0713 +0 0.0433 +0 0.2441 +0 0.0477 +0 0.2094 +0 0.6342 +0 0.1353 +0 0.1194 +0 0.0621 +0 0.0954 +0 0.1024 +0 0.1375 +0 0.0701 +0 0.1963 +0 0.2370 +0 0.1878 +0 0.3424 +0 0.1143 +0 0.0546 +0 0.2626 +0 0.0524 +0 0.1633 +0 0.1148 +0 0.1177 +0 0.1503 +0 0.0674 +0 0.1490 +0 0.1001 +0 0.0959 +0 0.0696 +0 0.0901 +0 0.2676 +0 0.2057 +0 0.0769 +0 0.6899 +0 0.1023 +0 0.0938 +0 0.0825 +0 0.0801 +0 0.1698 +0 0.0412 +0 0.0897 +0 0.0447 +0 0.2057 +0 0.0589 +0 0.2833 +0 0.0510 +0 0.2388 +0 0.0882 +0 0.0818 +0 0.0694 +0 0.1475 +0 0.2445 +0 0.0942 +0 0.1694 +0 0.1078 +0 0.1617 +0 0.1462 +0 0.1014 +0 0.0511 +0 0.1062 +0 0.2647 +0 0.1887 +0 0.2167 +0 0.1252 +0 0.1096 +0 0.0668 +0 0.5877 +0 0.0667 +0 0.0807 +0 0.0974 +0 0.0478 +0 0.0788 +0 0.2100 +0 0.0917 +0 0.5884 +0 0.0530 +0 0.2277 +0 0.1373 +0 0.1321 +0 0.1383 +0 0.0760 +0 0.1345 +0 0.3141 +0 0.0722 +0 0.1172 +0 0.3138 +0 0.0456 +0 0.1379 +0 0.1169 +0 0.0992 +0 0.1249 +0 0.0761 +0 0.1221 +0 0.2332 +0 0.0854 +0 0.0902 +0 0.1360 +0 0.1796 +0 0.1670 +0 0.0565 +0 0.1374 +0 0.0772 +0 0.1004 +0 0.0655 +0 0.0756 +0 0.1412 +0 0.0953 +0 0.1999 +0 0.1490 +0 0.1129 +0 0.0778 +0 0.3092 +0 0.2082 +0 0.1514 +0 0.1528 +0 0.0580 +0 0.1846 +0 0.1734 +0 0.0542 +0 0.0747 +0 0.0985 +0 0.0844 +0 0.1223 +0 0.1193 +0 0.1299 +0 0.0438 +0 0.0429 +0 0.0676 +0 0.1522 +0 0.0804 +0 0.0878 +0 0.1630 +0 0.0905 +0 0.2577 +0 0.0725 +0 0.0678 +0 0.1105 +0 0.1303 +0 0.1713 +0 0.0580 +0 0.2041 +0 0.4295 +0 0.0889 +0 0.0514 +0 0.0786 +0 0.0711 +0 0.0979 +0 0.1183 +0 0.1414 +0 0.1321 +0 0.2375 +0 0.1297 +0 0.0986 +0 0.2199 +0 0.0793 +0 0.0612 +0 0.0990 +0 0.0646 +0 0.0424 +0 0.2585 +0 0.0887 +0 0.1422 +0 0.0891 +0 0.4251 +0 0.0876 +0 0.1029 +0 0.1490 +0 0.6832 +0 0.0722 +0 0.2221 +0 0.0452 +0 0.0421 +0 0.1657 +0 0.0330 +0 0.0607 +0 0.0746 +0 0.7399 +0 0.1508 +0 0.0513 +0 0.0595 +0 0.1790 +0 0.2078 +0 0.1692 +0 0.1600 +0 0.0634 +0 0.0862 +0 0.4669 +0 0.0774 +0 0.1313 +0 0.0800 +0 0.2045 +0 0.2593 +0 0.0846 +0 0.0525 +0 0.1005 +0 0.2389 +0 0.1348 +0 0.0461 +0 0.0501 +0 0.3103 +0 0.0604 +0 0.3085 +0 0.1082 +0 0.0922 +0 0.1187 +0 0.0730 +0 0.5145 +0 0.1795 +0 0.1240 +0 0.0981 +0 0.1078 +0 0.0981 +0 0.2449 +0 0.0389 +0 0.1015 +0 0.1303 +0 0.0497 +0 0.0504 +0 0.0675 +0 0.2326 +0 0.2007 +0 0.2195 +0 0.3156 +0 0.4121 +0 0.4008 +0 0.0889 +0 0.5710 +0 0.1166 +0 0.0656 +0 0.2312 +0 0.5310 +0 0.1350 +0 0.0393 +0 0.1461 +0 0.0766 +0 0.1963 +0 0.1765 +0 0.2475 +0 0.1154 +0 0.0519 +0 0.1839 +0 0.3672 +0 0.1686 +0 0.0393 +0 0.0453 +0 0.0951 +0 0.0748 +0 0.1240 +0 0.1236 +0 0.0566 +0 0.1086 +0 0.1792 +0 0.0628 +0 0.1421 +0 0.1067 +0 0.0944 +0 0.0697 +0 0.0983 +0 0.1007 +0 0.1340 +0 0.2256 +0 0.0604 +0 0.0903 +0 0.1756 +0 0.0926 +0 0.1222 +0 0.1080 +0 0.1089 +0 0.1455 +0 0.0638 +0 0.1844 +0 0.0484 +0 0.1227 +0 0.1957 +0 0.1243 +0 0.0635 +0 0.1107 +0 0.0399 +0 0.0312 +0 0.0610 +0 0.1534 +0 0.1934 +0 0.1247 +0 0.0822 +0 0.0962 +0 0.1336 +0 0.0942 +0 0.2271 +0 0.0782 +0 0.0483 +0 0.0611 +0 0.0965 +0 0.0828 +0 0.1127 +0 0.0468 +1 0.7743 +0 0.0780 +0 0.1308 +0 0.0631 +0 0.0546 +0 0.2077 +0 0.0269 +0 0.0696 +0 0.1761 +0 0.0777 +0 0.0933 +0 0.1115 +0 0.0673 +0 0.0584 +0 0.1530 +0 0.0678 +0 0.2538 +0 0.0855 +0 0.1478 +0 0.0713 +0 0.0717 +0 0.1339 +0 0.0486 +0 0.0735 +0 0.3000 +0 0.0870 +0 0.0571 +0 0.0916 +0 0.0612 +0 0.1075 +0 0.0890 +0 0.1729 +0 0.0901 +0 0.0780 +0 0.1033 +0 0.0435 +0 0.1703 +0 0.0817 +0 0.0590 +0 0.7194 +0 0.2237 +0 0.0842 +0 0.1965 +0 0.1749 +0 0.2315 +0 0.2126 +0 0.1034 +0 0.1195 +0 0.1598 +0 0.0917 +0 0.2160 +0 0.0468 +0 0.0716 +1 0.8731 +0 0.1533 +0 0.0529 +0 0.2038 +1 0.8216 +0 0.0514 +0 0.0471 +0 0.2024 +0 0.1221 +0 0.0927 +0 0.0852 +0 0.1886 +0 0.1070 +0 0.1054 +0 0.0819 +0 0.0947 +0 0.1962 +0 0.1166 +0 0.0867 +0 0.1661 +0 0.1067 +0 0.0721 +0 0.1972 +0 0.0623 +1 0.7910 +0 0.1374 +0 0.1364 +0 0.0967 +0 0.0884 +0 0.0850 +0 0.0901 +0 0.0583 +0 0.2893 +0 0.1303 +0 0.0974 +0 0.0657 +0 0.0969 +0 0.0698 +0 0.0482 +0 0.0513 +0 0.1048 +0 0.1198 +0 0.2032 +0 0.1278 +0 0.0414 +0 0.0533 +0 0.1318 +0 0.3272 +0 0.1047 +0 0.1431 +0 0.2965 +0 0.0586 +0 0.0896 +0 0.1158 +0 0.0627 +0 0.0804 +0 0.0764 +0 0.2679 +0 0.0568 +0 0.0946 +0 0.1128 +0 0.1170 +0 0.0546 +0 0.0615 +0 0.0576 +0 0.0865 +0 0.0579 +0 0.0632 +0 0.1567 +0 0.0377 +0 0.6018 +0 0.1720 +0 0.1410 +0 0.1252 +0 0.0783 +0 0.0875 +0 0.0585 +0 0.1331 +0 0.2017 +1 0.8349 +0 0.1843 +0 0.1873 +0 0.0957 +0 0.2334 +0 0.1357 +0 0.0353 +0 0.2702 +0 0.0895 +0 0.1108 +0 0.0958 +0 0.0749 +0 0.0680 +0 0.7051 +0 0.4540 +0 0.1173 +0 0.0959 +0 0.0319 +0 0.1625 +0 0.0479 +0 0.0704 +0 0.4714 +0 0.0392 +0 0.0808 +0 0.1361 +0 0.1249 +0 0.0689 +0 0.3471 +0 0.1056 +0 0.1385 +0 0.0498 +0 0.0713 +0 0.0578 +0 0.0754 +0 0.0760 +0 0.1368 +0 0.0839 +0 0.2459 +0 0.1616 +0 0.3782 +0 0.1237 +0 0.1834 +0 0.1127 +0 0.0751 +0 0.0746 +0 0.2399 +0 0.1164 +0 0.1061 +0 0.0957 +0 0.0910 +0 0.0618 +0 0.0807 +0 0.0938 +0 0.0613 +0 0.1821 +0 0.1344 +0 0.0719 +0 0.2592 +0 0.0378 +0 0.0825 +0 0.0793 +0 0.1248 +0 0.2701 +0 0.4142 +0 0.1060 +0 0.2821 +0 0.0433 +0 0.0875 +0 0.0740 +0 0.1073 +0 0.1072 +0 0.1218 +0 0.0724 +0 0.1123 +0 0.1184 +0 0.2032 +0 0.0575 +0 0.1287 +0 0.0683 +0 0.0584 +0 0.1099 +0 0.0480 +0 0.2881 +0 0.0837 +0 0.0933 +0 0.7253 +0 0.1306 +0 0.1164 +0 0.1476 +0 0.2600 +0 0.0763 +0 0.0851 +0 0.0823 +0 0.1136 +0 0.1380 +0 0.2348 +1 0.7994 +0 0.0849 +0 0.0843 +0 0.0520 +0 0.1381 +0 0.0631 +0 0.1033 +0 0.1386 +0 0.0961 +0 0.0998 +0 0.1598 +0 0.1202 +0 0.4344 +0 0.0792 +0 0.0855 +0 0.1236 +0 0.1917 +0 0.0974 +0 0.0801 +0 0.2312 +0 0.0703 +0 0.0467 +0 0.1083 +0 0.0870 +0 0.0774 +0 0.0414 +0 0.1360 +0 0.0389 +0 0.0921 +0 0.0928 +0 0.1955 +0 0.1250 +0 0.1344 +0 0.2172 +0 0.1139 +0 0.0924 +0 0.1056 +0 0.0358 +0 0.0653 +0 0.1144 +0 0.1187 +0 0.0602 +0 0.0925 +0 0.0995 +0 0.2254 +0 0.2870 +0 0.1096 +0 0.2105 +0 0.1386 +0 0.1539 +0 0.3028 +0 0.1769 +0 0.0919 +0 0.1064 +0 0.1259 +0 0.1530 +0 0.0714 +0 0.2761 +0 0.2564 +0 0.1631 +0 0.1504 +0 0.1071 +0 0.0605 +0 0.2911 +0 0.0561 +0 0.0679 +0 0.3238 +0 0.1082 +0 0.0517 +0 0.1428 +0 0.2789 +0 0.0834 +0 0.2073 +0 0.1424 +0 0.0636 +0 0.0397 +0 0.0757 +0 0.1391 +0 0.3732 +0 0.1338 +0 0.4975 +0 0.0472 +0 0.1021 +0 0.2536 +0 0.0860 +0 0.1346 +0 0.1136 +0 0.0854 +0 0.1128 +0 0.0846 +0 0.0441 +0 0.3615 +0 0.0520 +0 0.1018 +0 0.0578 +0 0.0741 +0 0.0706 +0 0.1709 +0 0.0900 +0 0.1725 +0 0.0750 +0 0.0648 +0 0.0607 +0 0.0460 +0 0.1486 +0 0.0732 +0 0.0681 +0 0.1432 +0 0.0475 +0 0.2806 +0 0.2100 +0 0.1474 +0 0.0679 +0 0.0596 +0 0.0533 +0 0.1162 +0 0.0607 +0 0.5715 +0 0.1168 +0 0.0673 +0 0.1048 +0 0.0634 +0 0.2186 +0 0.1756 +0 0.2652 +0 0.0611 +0 0.1247 +0 0.3573 +0 0.0367 +0 0.0971 +0 0.1006 +0 0.0569 +0 0.1642 +0 0.1661 +0 0.1366 +0 0.2572 +0 0.1351 +0 0.0476 +0 0.0983 +0 0.0513 +0 0.3431 +0 0.3143 +0 0.1459 +0 0.0681 +0 0.0528 +0 0.0686 +0 0.1584 +0 0.0632 +0 0.1352 +0 0.0468 +0 0.1668 +0 0.1089 +0 0.0869 +0 0.1552 +0 0.0751 +0 0.1828 +0 0.1437 +0 0.0890 +0 0.1110 +0 0.0592 +0 0.0922 +0 0.1379 +0 0.1702 +0 0.1004 +0 0.0649 +0 0.2468 +0 0.0553 +0 0.7174 +0 0.2775 +0 0.1224 +0 0.0493 +0 0.1576 +0 0.0444 +0 0.0890 +0 0.1795 +0 0.0332 +0 0.0689 +0 0.1498 +0 0.2706 +0 0.0713 +0 0.1005 +0 0.0823 +0 0.1210 +0 0.0445 +0 0.0674 +0 0.0804 +0 0.0712 +0 0.0813 +0 0.1128 +0 0.1255 +0 0.1883 +0 0.0580 +0 0.0580 +0 0.4142 +0 0.0902 +0 0.0551 +0 0.0566 +0 0.0392 +0 0.4330 +1 0.5264 +0 0.4012 +1 0.7555 +0 0.1142 +0 0.0667 +0 0.0703 +0 0.1662 +0 0.0642 +0 0.0754 +0 0.1061 +0 0.0746 +0 0.0749 +0 0.1128 +0 0.0991 +0 0.1671 +0 0.4851 +0 0.3091 +0 0.0570 +0 0.0859 +0 0.4369 +0 0.2058 +0 0.0551 +0 0.2297 +0 0.0497 +0 0.0945 +0 0.3510 +0 0.2973 +0 0.0840 +0 0.1770 +0 0.0407 +0 0.1485 +0 0.1727 +0 0.2662 +0 0.1318 +0 0.1537 +0 0.1412 +0 0.0499 +0 0.1209 +0 0.0592 +0 0.0897 +0 0.2243 +0 0.2343 +0 0.3661 +0 0.1010 +0 0.0788 +0 0.1004 +0 0.1601 +0 0.1742 +0 0.0612 +0 0.1013 +0 0.6307 +0 0.0586 +0 0.2814 +0 0.1187 +0 0.0980 +0 0.1495 +0 0.0704 +0 0.1377 +0 0.0912 +0 0.0664 +0 0.0872 +0 0.1286 +0 0.1231 +0 0.1396 +0 0.1229 +0 0.1531 +0 0.0783 +0 0.1117 +0 0.1224 +0 0.0743 +0 0.2236 +0 0.0545 +0 0.2169 +0 0.0458 +0 0.0600 +0 0.2847 +1 0.8604 +0 0.0964 +0 0.1371 +0 0.0890 +0 0.0828 +0 0.0880 +0 0.0534 +0 0.0944 +0 0.1701 +0 0.0613 +0 0.0821 +0 0.1633 +0 0.0955 +0 0.0431 +0 0.0584 +0 0.0750 +0 0.1439 +0 0.3199 +0 0.0971 +0 0.7384 +0 0.1170 +0 0.2310 +1 0.8431 +0 0.1707 +0 0.0717 +0 0.1337 +0 0.2367 +0 0.1000 +0 0.0406 +0 0.0741 +0 0.0931 +0 0.0723 +0 0.2173 +0 0.0722 +0 0.1122 +0 0.1265 +0 0.2570 +0 0.0852 +0 0.0548 +0 0.0666 +0 0.1413 +0 0.0879 +0 0.0936 +0 0.1076 +0 0.0619 +0 0.1967 +0 0.1364 +0 0.1518 +0 0.1179 +0 0.1153 +0 0.1832 +0 0.0443 +0 0.1243 +0 0.0881 +0 0.1580 +0 0.1340 +0 0.1460 +0 0.1667 +0 0.0803 +0 0.0726 +0 0.2492 +0 0.0668 +0 0.1778 +0 0.1794 +0 0.1571 +0 0.2194 +0 0.0698 +0 0.0746 +1 0.7837 +0 0.0833 +0 0.0752 +0 0.0765 +0 0.1035 +0 0.1189 +0 0.0761 +0 0.2027 +0 0.0864 +0 0.0878 +0 0.0859 +0 0.1574 +0 0.2572 +0 0.3536 +0 0.0934 +0 0.1748 +0 0.2489 +0 0.0596 +0 0.0746 +0 0.1063 +0 0.1410 +0 0.1450 +0 0.0423 +0 0.0959 +0 0.1433 +0 0.1304 +0 0.4270 +0 0.1355 +0 0.4579 +0 0.2187 +0 0.1326 +0 0.0526 +0 0.1182 +0 0.1993 +0 0.0651 +0 0.1519 +0 0.0707 +0 0.0731 +0 0.0866 +0 0.0983 +0 0.1088 +0 0.0675 +0 0.0589 +1 0.8543 +0 0.0885 +0 0.0507 +0 0.2089 +0 0.0520 +0 0.1756 +0 0.2630 +0 0.1891 +0 0.1296 +0 0.1772 +0 0.1337 +0 0.0992 +0 0.0484 +0 0.0541 +0 0.2252 +0 0.5286 +0 0.0746 +0 0.2955 +0 0.1396 +0 0.2068 +0 0.1037 +0 0.1041 +0 0.0894 +0 0.4020 +0 0.0829 +0 0.2173 +0 0.1002 +0 0.0966 +0 0.0890 +0 0.0743 +0 0.1111 +0 0.1046 +0 0.0324 +0 0.1300 +0 0.0961 +0 0.3037 +0 0.1320 +0 0.0791 +0 0.0402 +0 0.0926 +0 0.0537 +0 0.0667 +0 0.1773 +0 0.0891 +0 0.0472 +0 0.0612 +0 0.0741 +0 0.0690 +0 0.0526 +0 0.1241 +0 0.2057 +0 0.1294 +0 0.1507 +0 0.0771 +0 0.0313 +0 0.0964 +0 0.0904 +0 0.0860 +0 0.0675 +0 0.1676 +0 0.1462 +0 0.1361 +0 0.0771 +0 0.1515 +0 0.0635 +0 0.0359 +0 0.1031 +0 0.3113 +0 0.1565 +0 0.0686 +0 0.1255 +0 0.2884 +0 0.0493 +0 0.1324 +0 0.1556 +0 0.1142 +0 0.0876 +0 0.2146 +0 0.3270 +0 0.0757 +0 0.0700 +0 0.1070 +0 0.2241 +0 0.1157 +0 0.0656 +0 0.0337 +0 0.0610 +0 0.0671 +0 0.1626 +0 0.0950 +0 0.0799 +0 0.0701 +0 0.1300 +0 0.1362 +0 0.0595 +0 0.0760 +0 0.0829 +0 0.3978 +0 0.0768 +0 0.1091 +0 0.0956 +0 0.1674 +0 0.1250 +0 0.0589 +0 0.0942 +0 0.0455 +0 0.0465 +0 0.2276 +0 0.1452 +0 0.0883 +0 0.0575 +0 0.1985 +0 0.1109 +0 0.1336 +0 0.0591 +0 0.1187 +0 0.1523 +0 0.0390 +0 0.1017 +0 0.2330 +0 0.0777 +0 0.1590 +0 0.0915 +0 0.1677 +0 0.0559 +0 0.0807 +0 0.2013 +0 0.3173 +0 0.1257 +0 0.0934 +0 0.1130 +0 0.2351 +0 0.0693 +0 0.2183 +0 0.0807 +0 0.0587 +0 0.0805 +0 0.0787 +0 0.0823 +0 0.1407 +0 0.0683 +0 0.1017 +0 0.1319 +0 0.0674 +0 0.1061 +0 0.1256 +0 0.1312 +0 0.0881 +0 0.1408 +0 0.0757 +0 0.0762 +0 0.0871 +0 0.0711 +0 0.0669 +0 0.0911 +0 0.0582 +0 0.0647 +0 0.0569 +0 0.1882 +0 0.0544 +0 0.0810 +0 0.1795 +0 0.1239 +0 0.2549 +0 0.1037 +0 0.0956 +0 0.0897 +0 0.0827 +0 0.4595 +0 0.0727 +0 0.1082 +0 0.0739 +0 0.1228 +0 0.1403 +0 0.0358 +1 0.9068 +0 0.2647 +0 0.1230 +0 0.1043 +0 0.0945 +0 0.0733 +0 0.2963 +0 0.0495 +0 0.0835 +0 0.6918 +0 0.1656 +0 0.0453 +0 0.1104 +0 0.0788 +0 0.0891 +0 0.2068 +0 0.1753 +0 0.1993 +0 0.0907 +0 0.0960 +0 0.1591 +0 0.2065 +0 0.1117 +0 0.1762 +0 0.7134 +0 0.2221 +0 0.3012 +0 0.0599 +0 0.0636 +0 0.4427 +0 0.0922 +0 0.0843 +0 0.0699 +0 0.0653 +1 0.7811 +0 0.1166 +0 0.1721 +0 0.1409 +0 0.0709 +0 0.1405 +0 0.1055 +0 0.0624 +0 0.1202 +0 0.1063 +0 0.0959 +0 0.0540 +0 0.0611 +0 0.0697 +0 0.1738 +0 0.3298 +0 0.1412 +0 0.0532 +0 0.1010 +0 0.0493 +0 0.0637 +0 0.5583 +0 0.0737 +1 0.8168 +0 0.0953 +0 0.1062 +0 0.0405 +0 0.0652 +0 0.0587 +0 0.0886 +0 0.0914 +0 0.1015 +0 0.0955 +0 0.0666 +0 0.0763 +0 0.0598 +0 0.0880 +0 0.0822 +0 0.7434 +0 0.1924 +0 0.2488 +0 0.1289 +0 0.1743 +1 0.8667 +0 0.1951 +0 0.2066 +0 0.0696 +0 0.0819 +0 0.2622 +0 0.1146 +0 0.0402 +0 0.0685 +0 0.1030 +0 0.0923 +0 0.0427 +0 0.1341 +0 0.1426 +0 0.1443 +0 0.0782 +0 0.0718 +0 0.1415 +0 0.6421 +0 0.0633 +0 0.1216 +0 0.1928 +0 0.0727 +0 0.1140 +0 0.0893 +0 0.1477 +0 0.0601 +0 0.1063 +0 0.0841 +0 0.2494 +0 0.2007 +0 0.2594 +0 0.0761 +0 0.0706 +0 0.5734 +0 0.0522 +0 0.1278 +0 0.1491 +0 0.0708 +0 0.0811 +0 0.0930 +0 0.0451 +0 0.1175 +0 0.0799 +0 0.2043 +0 0.0650 +0 0.0784 +0 0.0949 +0 0.0590 +0 0.2023 +0 0.1148 +0 0.1056 +0 0.1334 +0 0.1107 +0 0.0893 +0 0.0477 +0 0.0622 +0 0.0705 +0 0.1103 +0 0.1551 +0 0.1031 +0 0.1612 +0 0.1433 +0 0.0490 +0 0.0906 +0 0.3205 +0 0.0511 +0 0.0702 +0 0.0519 +0 0.1566 +0 0.1880 +0 0.0650 +0 0.0817 +0 0.1037 +0 0.1459 +0 0.1063 +0 0.0866 +0 0.1106 +0 0.0691 +0 0.2114 +1 0.8220 +0 0.0788 +0 0.1415 +0 0.2091 +0 0.1940 +0 0.3236 +0 0.0477 +0 0.0966 +0 0.0428 +0 0.2019 +0 0.3307 +1 0.8268 +0 0.0800 +0 0.0819 +0 0.0571 +0 0.0367 +0 0.1939 +0 0.0881 +0 0.1779 +0 0.1391 +0 0.1043 +0 0.0523 +0 0.0434 +0 0.0794 +0 0.0958 +0 0.2760 +0 0.2060 +0 0.0484 +0 0.1623 +0 0.1115 +0 0.3351 +0 0.1132 +0 0.0923 +0 0.1427 +0 0.0863 +0 0.1330 +0 0.1042 +0 0.1486 +0 0.0570 +0 0.1578 +0 0.1730 +0 0.0370 +0 0.1057 +0 0.0569 +0 0.1246 +0 0.1564 +0 0.0816 +0 0.1012 +0 0.3462 +0 0.1860 +0 0.0476 +0 0.0862 +0 0.1530 +0 0.0827 +0 0.1220 +0 0.1874 +0 0.0898 +0 0.0816 +0 0.0822 +0 0.0637 +0 0.0780 +0 0.0837 +0 0.1735 +0 0.1781 +0 0.2428 +0 0.0545 +0 0.1002 +0 0.0643 +0 0.1384 +0 0.0604 +0 0.0682 +0 0.1071 +0 0.0461 +0 0.2157 +0 0.1529 +0 0.1009 +0 0.3174 +0 0.2455 +0 0.0682 +0 0.0980 +0 0.1616 +0 0.3741 +0 0.1058 +0 0.1817 +0 0.1369 +0 0.5467 +0 0.1061 +0 0.1268 +0 0.0880 +0 0.3654 +0 0.2186 +1 0.8129 +0 0.0707 +0 0.1474 +0 0.1258 +0 0.1133 +0 0.0935 +0 0.0784 +0 0.3581 +0 0.0840 +0 0.1293 +0 0.0578 +0 0.1070 +0 0.1684 +0 0.1276 +0 0.1371 +0 0.1261 +0 0.1265 +0 0.1943 +0 0.2697 +0 0.0753 +0 0.2070 +0 0.2970 +0 0.1061 +0 0.0932 +0 0.1379 +0 0.1007 +0 0.1155 +0 0.1203 +0 0.6139 +0 0.0635 +0 0.0774 +0 0.1444 +0 0.0777 +0 0.0848 +0 0.0663 +0 0.1250 +0 0.0946 +0 0.3478 +0 0.0942 +0 0.1151 +0 0.0522 +0 0.3268 +0 0.1546 +0 0.0469 +0 0.1280 +0 0.0556 +0 0.0756 +0 0.1593 +0 0.0525 +0 0.0617 +0 0.4157 +0 0.1748 +0 0.0666 +0 0.1217 +0 0.1322 +0 0.0621 +0 0.1803 +0 0.1194 +0 0.1622 +0 0.0871 +0 0.1577 +0 0.0962 +0 0.1174 +0 0.1616 +0 0.0661 +0 0.0507 +0 0.0903 +0 0.0578 +0 0.1634 +0 0.3333 +0 0.0446 +0 0.1145 +0 0.1060 +0 0.0844 +0 0.1325 +0 0.0654 +1 0.7722 +0 0.0758 +0 0.2920 +0 0.1290 +0 0.1814 +0 0.0823 +0 0.0803 +0 0.3526 +0 0.1172 +0 0.0663 +0 0.0815 +0 0.2199 +0 0.4478 +0 0.2020 +0 0.1416 +0 0.1064 +0 0.0636 +0 0.0828 +0 0.0927 +0 0.1125 +0 0.0932 +0 0.1213 +0 0.0613 +0 0.1669 +0 0.1091 +0 0.1367 +0 0.1143 +0 0.0857 +0 0.1116 +0 0.2686 +0 0.0667 +0 0.0749 +0 0.1490 +0 0.2896 +0 0.0610 +0 0.0530 +0 0.2537 +0 0.1117 +0 0.1856 +0 0.0701 +0 0.2083 +0 0.0586 +0 0.0961 +0 0.1041 +0 0.0475 +0 0.6586 +0 0.2625 +0 0.0913 +0 0.0778 +0 0.1538 +0 0.1872 +0 0.0941 +0 0.1738 +0 0.0816 +0 0.2658 +0 0.1241 +0 0.2136 +0 0.2853 +0 0.1998 +0 0.1223 +0 0.0451 +0 0.0695 +0 0.1696 +0 0.2452 +0 0.0347 +0 0.0844 +0 0.0744 +0 0.1671 +0 0.1512 +0 0.1192 +0 0.0460 +0 0.0376 +0 0.0888 +0 0.1124 +0 0.1112 +0 0.1569 +0 0.1178 +0 0.0647 +0 0.0783 +0 0.0924 +0 0.2492 +0 0.0963 +0 0.0853 +0 0.0900 +0 0.0514 +0 0.1103 +0 0.0861 +0 0.0431 +0 0.0571 +0 0.0833 +0 0.0619 +0 0.0482 +0 0.1734 +0 0.1039 +0 0.2422 +0 0.0572 +0 0.0473 +0 0.2761 +0 0.0585 +0 0.0647 +0 0.1258 +0 0.0766 +0 0.1597 +0 0.3712 +0 0.0804 +0 0.1446 +0 0.0964 +0 0.0747 +0 0.0706 +0 0.0386 +0 0.2150 +0 0.0758 +0 0.1245 +0 0.1896 +0 0.0569 +0 0.1619 +0 0.1504 +0 0.0450 +0 0.1452 +0 0.0445 +0 0.0890 +0 0.2354 +0 0.0520 +0 0.0818 +1 0.7663 +0 0.0571 +0 0.1209 +0 0.0997 +0 0.1312 +0 0.3644 +0 0.0600 +0 0.1569 +0 0.0722 +0 0.2416 +0 0.3169 +0 0.0727 +0 0.0905 +0 0.3425 +0 0.1098 +0 0.0906 +0 0.0862 +0 0.0655 +0 0.2326 +0 0.0940 +0 0.1156 +0 0.1494 +0 0.0816 +0 0.1263 +0 0.0778 +0 0.0862 +0 0.1531 +0 0.0759 +0 0.0760 +0 0.1723 +0 0.0773 +0 0.0646 +0 0.0723 +0 0.2294 +0 0.0846 +0 0.1621 +0 0.1551 +0 0.1284 +0 0.0707 +0 0.2223 +0 0.0930 +1 0.7750 +0 0.0598 +0 0.0921 +0 0.1564 +0 0.3259 +0 0.0784 +0 0.0747 +0 0.2582 +0 0.1066 +0 0.0717 +0 0.0322 +0 0.4606 +0 0.0900 +0 0.0729 +0 0.1028 +0 0.0861 +0 0.0892 +0 0.0788 +0 0.0944 +0 0.2029 +0 0.1046 +0 0.0443 +0 0.0372 +0 0.1082 +0 0.2222 +0 0.0697 +0 0.3818 +0 0.0629 +0 0.1173 +0 0.1386 +0 0.0834 +0 0.0642 +0 0.1168 +0 0.4927 +0 0.0665 +0 0.1102 +0 0.3037 +0 0.0485 +0 0.1838 +0 0.1058 +0 0.1106 +0 0.2059 +0 0.0542 +0 0.0982 +0 0.1057 +0 0.0861 +0 0.1966 +0 0.5040 +0 0.1231 +0 0.1191 +0 0.0669 +0 0.2899 +0 0.1330 +0 0.2489 +0 0.1615 +0 0.2497 +0 0.0775 +0 0.1758 +0 0.1491 +0 0.2105 +0 0.2412 +0 0.1069 +0 0.0367 +0 0.1417 +0 0.0744 +0 0.1946 +0 0.1215 +0 0.1093 +0 0.1669 +0 0.0657 +0 0.0808 +0 0.0802 +0 0.1437 +0 0.0602 +0 0.0514 +0 0.0498 +0 0.0897 +0 0.0845 +0 0.0602 +0 0.0812 +0 0.0357 +0 0.1192 +0 0.0525 +0 0.1325 +0 0.1825 +0 0.7124 +0 0.1305 +0 0.0575 +0 0.0508 +0 0.1827 +0 0.1347 +0 0.1411 +0 0.1820 +0 0.6329 +0 0.0890 +0 0.0795 +0 0.0872 +0 0.1582 +0 0.1116 +0 0.0645 +0 0.0498 +0 0.1561 +0 0.1983 +0 0.0788 +0 0.0746 +0 0.0882 +0 0.1387 +0 0.6388 +0 0.1073 +0 0.0974 +0 0.0845 +0 0.1156 +0 0.1484 +0 0.0816 +0 0.0797 +0 0.4743 +0 0.1592 +0 0.0576 +0 0.2654 +0 0.2003 +0 0.1902 +0 0.6291 +0 0.0906 +0 0.1189 +0 0.0869 +0 0.4225 +0 0.1197 +0 0.0675 +0 0.1028 +0 0.1706 +0 0.1412 +0 0.1994 +0 0.2519 +0 0.1897 +0 0.1340 +0 0.0555 +0 0.0676 +0 0.0767 +0 0.0454 +0 0.1284 +0 0.1828 +0 0.1468 +0 0.0738 +0 0.3423 +0 0.1061 +0 0.6521 +0 0.1315 +0 0.1936 +0 0.4312 +0 0.3322 +0 0.0869 +0 0.1099 +0 0.2449 +0 0.0854 +0 0.0701 +0 0.1193 +0 0.0872 +0 0.2498 +0 0.1201 +0 0.0879 +0 0.1215 +0 0.0970 +0 0.0925 +0 0.0648 +0 0.0641 +0 0.0491 +0 0.1119 +0 0.1295 +0 0.0533 +0 0.1389 +0 0.1060 +0 0.2509 +0 0.1701 +0 0.0667 +0 0.1917 +0 0.0637 +0 0.0550 +0 0.0892 +0 0.1763 +0 0.0600 +1 0.8100 +0 0.0909 +0 0.1175 +0 0.1132 +1 0.8636 +0 0.0398 +0 0.0939 +0 0.1319 +0 0.0733 +0 0.0962 +0 0.2090 +0 0.1908 +0 0.0651 +0 0.1173 +0 0.1328 +0 0.0680 +0 0.1615 +0 0.0884 +0 0.0524 +0 0.0683 +0 0.0698 +0 0.0939 +0 0.0845 +0 0.0921 +0 0.1107 +0 0.0622 +0 0.1367 +0 0.0706 +0 0.2169 +0 0.1209 +0 0.0446 +0 0.1527 +0 0.3105 +0 0.0818 +0 0.0676 +0 0.0841 +0 0.1471 +0 0.0632 +0 0.2477 +0 0.0669 +0 0.1470 +0 0.2556 +0 0.0710 +0 0.1218 +0 0.1784 +0 0.0689 +0 0.1107 +0 0.0907 +0 0.0738 +0 0.3502 +0 0.1128 +0 0.0938 +0 0.1163 +0 0.0907 +0 0.3536 +0 0.3320 +0 0.0764 +0 0.6849 +0 0.3180 +0 0.0983 +0 0.2478 +0 0.6478 +0 0.1010 +0 0.1843 +0 0.1869 +0 0.0351 +0 0.1632 +0 0.2887 +0 0.1532 +0 0.0645 +0 0.0806 +0 0.4658 +0 0.1464 +0 0.3149 +0 0.0932 +0 0.1451 +0 0.1696 +0 0.1269 +0 0.2227 +0 0.0710 +0 0.1798 +0 0.0623 +0 0.0468 +0 0.0766 +0 0.0908 +0 0.1838 +0 0.1552 +0 0.1169 +0 0.1395 +0 0.1255 +0 0.0320 +0 0.1581 +0 0.1644 +0 0.0548 +0 0.1023 +0 0.5066 +0 0.2827 +0 0.0614 +0 0.2640 +0 0.1311 +0 0.1526 +0 0.0572 +0 0.2319 +0 0.2289 +0 0.1241 +0 0.0343 +0 0.1092 +0 0.1090 +0 0.0778 +0 0.1315 +0 0.1135 +0 0.0791 +0 0.2015 +0 0.3794 +0 0.0772 +0 0.2579 +0 0.1694 +0 0.0936 +0 0.0323 +0 0.0776 +0 0.0874 +0 0.1053 +0 0.0426 +0 0.3086 +0 0.0510 +0 0.0441 +0 0.1331 +0 0.0548 +0 0.1959 +0 0.0853 +0 0.1679 +0 0.1506 +0 0.0610 +0 0.0476 +0 0.1052 +0 0.1791 +0 0.1278 +0 0.3843 +0 0.0720 +0 0.0794 +0 0.0521 +0 0.1077 +0 0.1125 +0 0.1415 +0 0.0884 +0 0.1513 +1 0.7678 +0 0.1383 +0 0.0754 +0 0.4704 +0 0.0787 +0 0.1497 +0 0.1354 +0 0.1718 +0 0.1022 +0 0.1761 +0 0.0533 +1 0.8907 +0 0.0841 +0 0.1633 +0 0.1071 +0 0.1018 +0 0.0396 +0 0.0823 +0 0.1293 +0 0.0539 +0 0.1743 +0 0.0963 +0 0.0995 +0 0.0860 +0 0.0647 +0 0.0714 +0 0.0782 +0 0.2321 +0 0.1321 +0 0.1603 +0 0.0695 +0 0.1160 +0 0.1305 +0 0.0632 +0 0.1308 +0 0.0713 +0 0.3385 +0 0.1513 +0 0.0424 +0 0.1267 +0 0.0760 +0 0.1710 +0 0.3061 +0 0.1531 +0 0.0906 +0 0.1802 +0 0.0393 +0 0.0791 +0 0.0843 +0 0.2362 +0 0.6242 +0 0.1034 +0 0.1737 +1 0.8211 +0 0.0830 +0 0.1218 +1 0.8530 +0 0.0702 +0 0.0519 +0 0.0694 +0 0.1483 +0 0.1278 +0 0.1933 +0 0.2178 +0 0.0674 +0 0.1350 +0 0.6247 +0 0.2818 +0 0.0707 +0 0.0791 +0 0.1244 +0 0.3472 +0 0.1388 +0 0.1271 +0 0.0825 +0 0.1961 +0 0.1186 +0 0.0474 +0 0.2106 +0 0.1344 +0 0.1036 +0 0.0486 +0 0.1028 +0 0.2952 +0 0.0458 +0 0.1322 +0 0.0942 +0 0.0946 +0 0.1239 +0 0.0975 +0 0.0736 +0 0.1104 +0 0.0515 +0 0.2078 +0 0.1519 +0 0.1025 +0 0.2317 +1 0.8367 +0 0.1647 +0 0.0909 +0 0.2087 +0 0.2946 +0 0.1669 +0 0.0497 +0 0.0969 +0 0.0465 +0 0.0712 +0 0.0563 +0 0.0784 +0 0.1935 +0 0.0887 +0 0.0953 +0 0.1873 +0 0.1340 +0 0.0979 +0 0.1103 +0 0.0885 +0 0.0767 +0 0.0635 +0 0.0530 +0 0.0899 +0 0.1498 +0 0.0619 +0 0.0606 +0 0.1687 +0 0.0642 +0 0.1290 +0 0.0781 +0 0.2789 +0 0.0508 +0 0.2337 +0 0.2305 +0 0.0819 +0 0.1967 +0 0.0588 +0 0.1851 +0 0.0885 +0 0.0586 +0 0.1641 +0 0.1241 +0 0.1502 +0 0.0932 +0 0.1525 +0 0.1370 +0 0.0460 +0 0.1032 +0 0.6721 +0 0.0604 +0 0.1777 +0 0.0560 +1 0.7974 +0 0.2230 +0 0.0639 +0 0.1005 +0 0.3625 +0 0.3398 +0 0.0975 +1 0.8156 +0 0.1771 +0 0.0785 +0 0.1064 +0 0.1414 +0 0.0452 +0 0.2109 +0 0.7316 +0 0.0629 +0 0.0604 +0 0.0465 +0 0.0769 +0 0.1032 +0 0.1092 +0 0.0764 +0 0.0933 +0 0.1598 +0 0.0776 +0 0.2959 +0 0.0686 +0 0.3449 +0 0.1445 +0 0.0708 +0 0.1900 +0 0.0895 +0 0.0902 +0 0.0884 +0 0.0805 +0 0.1171 +0 0.1465 +0 0.0819 +0 0.1024 +0 0.1047 +0 0.6446 +0 0.0801 +0 0.1392 +0 0.3371 +0 0.1414 +0 0.0560 +0 0.0350 +0 0.0613 +0 0.0613 +0 0.0721 +0 0.0832 +0 0.0811 +0 0.2878 +0 0.0504 +0 0.0773 +0 0.0438 +1 0.7748 +0 0.2183 +0 0.0892 +0 0.1528 +0 0.4535 +0 0.0916 +0 0.1340 +0 0.0855 +0 0.1553 +0 0.2633 +0 0.2757 +0 0.1246 +0 0.1255 +0 0.1010 +0 0.2879 +0 0.0580 +0 0.1486 +0 0.1034 +0 0.0644 +0 0.1685 +0 0.0523 +0 0.2741 +0 0.1143 +0 0.0946 +0 0.2169 +0 0.0769 +0 0.1111 +0 0.0683 +0 0.1565 +0 0.0990 +0 0.0831 +0 0.1592 +0 0.0829 +0 0.0561 +0 0.0824 +0 0.0748 +0 0.0739 +0 0.1357 +0 0.1014 +0 0.1933 +0 0.5717 +0 0.2328 +0 0.1433 +0 0.3399 +0 0.2048 +0 0.1306 +0 0.0621 +0 0.0895 +0 0.2015 +0 0.3574 +0 0.0995 +0 0.0967 +0 0.0645 +0 0.1245 +0 0.0859 +0 0.6258 +0 0.0552 +0 0.0952 +0 0.0623 +0 0.0798 +0 0.0506 +0 0.0694 +0 0.0705 +0 0.0353 +0 0.0987 +1 0.8215 +0 0.1306 +0 0.1215 +0 0.2680 +0 0.0781 +0 0.0409 +0 0.0753 +0 0.0407 +0 0.0637 +0 0.2451 +0 0.0865 +0 0.0807 +0 0.0731 +0 0.0821 +0 0.1092 +0 0.0649 +0 0.1703 +0 0.1866 +0 0.1984 +0 0.5521 +0 0.0847 +0 0.2212 +0 0.3086 +0 0.0578 +0 0.0940 +0 0.0705 +0 0.0508 +0 0.2044 +0 0.0643 +0 0.0922 +0 0.1093 +0 0.0738 +0 0.1020 +0 0.0909 +0 0.4384 +0 0.0802 +0 0.1083 +0 0.0734 +0 0.0587 +0 0.2476 +0 0.0334 +0 0.0705 +0 0.1008 +0 0.0831 +0 0.0725 +0 0.2482 +0 0.0824 +0 0.0885 +0 0.1827 +0 0.0565 +0 0.0861 +0 0.3226 +0 0.1400 +0 0.1019 +0 0.1128 +0 0.0613 +0 0.0678 +0 0.4634 +0 0.2314 +0 0.1933 +0 0.1959 +0 0.0478 +0 0.0958 +0 0.0727 +0 0.0571 +0 0.3172 +0 0.0975 +0 0.0708 +0 0.0402 +1 0.8494 +0 0.1069 +0 0.0960 +0 0.0637 +0 0.0820 +0 0.0860 +0 0.0400 +0 0.1051 +0 0.0825 +0 0.0770 +0 0.1577 +0 0.2703 +0 0.1732 +0 0.0862 +0 0.1191 +0 0.0595 +0 0.2161 +0 0.3683 +1 0.8381 +0 0.1982 +0 0.1166 +0 0.0591 +0 0.1122 +0 0.4804 +0 0.2758 +0 0.0686 +0 0.1756 +0 0.1235 +0 0.1642 +0 0.0438 +0 0.0695 +0 0.6682 +0 0.1149 +0 0.0873 +0 0.2282 +0 0.0293 +0 0.0515 +0 0.0880 +0 0.0441 +0 0.0963 +0 0.1402 +0 0.2903 +0 0.0855 +0 0.0959 +0 0.1392 +0 0.2119 +0 0.2383 +0 0.0405 +0 0.1324 +0 0.0526 +0 0.0888 +0 0.2100 +0 0.1625 +0 0.1126 +0 0.1125 +0 0.0934 +0 0.1528 +0 0.0655 +0 0.0474 +0 0.1698 +0 0.3203 +0 0.0715 +0 0.0774 +0 0.2288 +0 0.0713 +0 0.0875 +0 0.2240 +0 0.1697 +0 0.1426 +0 0.2484 +0 0.0603 +0 0.0731 +0 0.0500 +0 0.0953 +0 0.1552 +0 0.1318 +0 0.1385 +0 0.1253 +0 0.0604 +0 0.0767 +0 0.2021 +0 0.0597 +0 0.6084 +0 0.3778 +0 0.0611 +0 0.0624 +0 0.1050 +0 0.2286 +0 0.1247 +0 0.1581 +0 0.1074 +0 0.0582 +0 0.1889 +0 0.0569 +0 0.0741 +0 0.1287 +0 0.0643 +0 0.1115 +0 0.0488 +0 0.1033 +0 0.1809 +0 0.0645 +0 0.0480 +0 0.3084 +0 0.0750 +0 0.0541 +0 0.3590 +0 0.3257 +0 0.3264 +0 0.2444 +0 0.0694 +0 0.0907 +0 0.0899 +0 0.0457 +0 0.0327 +0 0.0602 +0 0.0721 +0 0.0822 +0 0.1717 +0 0.2531 +0 0.3719 +0 0.3224 +0 0.1249 +0 0.0437 +0 0.0671 +0 0.3854 +0 0.0683 +0 0.1962 +0 0.1026 +0 0.1770 +0 0.1393 +0 0.1394 +0 0.0730 +0 0.0840 +0 0.0422 +0 0.0637 +0 0.1066 +0 0.0978 +0 0.1251 +0 0.0583 +0 0.1300 +0 0.0791 +0 0.1727 +0 0.2678 +0 0.0897 +0 0.0522 +0 0.1717 +0 0.0632 +0 0.2070 +0 0.1367 +0 0.1390 +0 0.2028 +0 0.0852 +0 0.1236 +0 0.3883 +0 0.0464 +0 0.1231 +0 0.1339 +0 0.0905 +0 0.4822 +0 0.1454 +0 0.4153 +0 0.0973 +0 0.1461 +0 0.1518 +0 0.0745 +0 0.1105 +0 0.0670 +0 0.0722 +0 0.0830 +0 0.1272 +0 0.2182 +0 0.0639 +0 0.1595 +0 0.0565 +0 0.2110 +0 0.0421 +0 0.2748 +0 0.0624 +0 0.2553 +0 0.0708 +0 0.6565 +0 0.5190 +0 0.0801 +0 0.0590 +0 0.1331 +0 0.0723 +0 0.0587 +0 0.1494 +0 0.0824 +0 0.1574 +0 0.1123 +0 0.0796 +0 0.0620 +0 0.3219 +0 0.0869 +0 0.3248 +0 0.1169 +0 0.0843 +0 0.1408 +0 0.0749 +0 0.1132 +0 0.7487 +0 0.1702 +0 0.1086 +0 0.0583 +0 0.0921 +0 0.1190 +0 0.2317 +0 0.0917 +0 0.3006 +0 0.1764 +0 0.3498 +0 0.2159 +0 0.0735 +0 0.6371 +0 0.0547 +0 0.0366 +0 0.1590 +0 0.0819 +0 0.1696 +0 0.0879 +0 0.0909 +0 0.1276 +0 0.0693 +0 0.1647 +0 0.0921 +0 0.0911 +0 0.1709 +0 0.2036 +0 0.0724 +0 0.1142 +0 0.0671 +0 0.0889 +0 0.1455 +0 0.0467 +0 0.1930 +0 0.6594 +0 0.1252 +0 0.2205 +0 0.0719 +0 0.0550 +0 0.0490 +0 0.0421 +0 0.2167 +0 0.0592 +0 0.0809 +0 0.0550 +1 0.8211 +0 0.1386 +0 0.0999 +0 0.6597 +0 0.1198 +0 0.0569 +0 0.1677 +0 0.0650 +0 0.1187 +0 0.3240 +0 0.0611 +0 0.3215 +0 0.1425 +0 0.3282 +0 0.1000 +0 0.3950 +0 0.2642 +0 0.1099 +0 0.3557 +0 0.0515 +0 0.2393 +0 0.0401 +0 0.0849 +0 0.0858 +0 0.0637 +0 0.1005 +0 0.2613 +0 0.1017 +0 0.1375 +0 0.0915 +0 0.1555 +0 0.1977 +0 0.2944 +0 0.0323 +0 0.2096 +0 0.1289 +0 0.1380 +0 0.0743 +0 0.1715 +0 0.0391 +0 0.1393 +0 0.1721 +0 0.0822 +0 0.2449 +0 0.1232 +0 0.4199 +0 0.0704 +0 0.0622 +0 0.1153 +0 0.0667 +0 0.2768 +0 0.1098 +0 0.2703 +0 0.0990 +0 0.0716 +0 0.0853 +0 0.3607 +0 0.0770 +0 0.0602 +0 0.3149 +0 0.1204 +0 0.1256 +0 0.1303 +0 0.0470 +0 0.0580 +0 0.0770 +0 0.0841 +0 0.0686 +0 0.0706 +0 0.0829 +0 0.1343 +0 0.1751 +0 0.5229 +0 0.0810 +0 0.6619 +0 0.1018 +0 0.0833 +0 0.1105 +0 0.0734 +0 0.0820 +0 0.1080 +0 0.2088 +0 0.0733 +0 0.0819 +0 0.2648 +1 0.7666 +0 0.1403 +0 0.0880 +0 0.1115 +0 0.1640 +0 0.7276 +0 0.0591 +0 0.0941 +0 0.0708 +0 0.0930 +0 0.1349 +0 0.2509 +0 0.3517 +0 0.0476 +0 0.0420 +0 0.0911 +0 0.1215 +0 0.1724 +0 0.0706 +0 0.0746 +0 0.1964 +0 0.0491 +0 0.0747 +0 0.0656 +0 0.1731 +0 0.0757 +0 0.0767 +0 0.3516 +0 0.0371 +0 0.0569 +0 0.0762 +0 0.1078 +0 0.0936 +0 0.1023 +0 0.0924 +0 0.1324 +0 0.0578 +0 0.0934 +0 0.1229 +0 0.0670 +0 0.2291 +0 0.1084 +0 0.1918 +0 0.0893 +0 0.1652 +0 0.1969 +0 0.0480 +0 0.0970 +0 0.0615 +0 0.1014 +0 0.1155 +0 0.0856 +0 0.1774 +0 0.0409 +0 0.1717 +0 0.5800 +0 0.0423 +0 0.1841 +0 0.0554 +0 0.0967 +1 0.8283 +0 0.1415 +0 0.0939 +0 0.0731 +0 0.2484 +0 0.6685 +0 0.1075 +0 0.1449 +0 0.1739 +0 0.0513 +0 0.0582 +0 0.2084 +0 0.1125 +0 0.0651 +0 0.0678 +0 0.5916 +0 0.1301 +0 0.2985 +0 0.1044 +0 0.5877 +0 0.1145 +0 0.1509 +0 0.2287 +0 0.1366 +0 0.1175 +0 0.1569 +0 0.0822 +0 0.0993 +0 0.1168 +0 0.3328 +0 0.0910 +0 0.1151 +1 0.8324 +0 0.0662 +0 0.0747 +0 0.0825 +0 0.1642 +0 0.6727 +0 0.1278 +0 0.0531 +0 0.0609 +0 0.0755 +0 0.0956 +0 0.4890 +0 0.0528 +0 0.1787 +0 0.0674 +0 0.0821 +0 0.2683 +0 0.4386 +0 0.1097 +0 0.7194 +0 0.2126 +0 0.0547 +0 0.0914 +0 0.0796 +0 0.1309 +0 0.0753 +0 0.0768 +0 0.1480 +0 0.5744 +0 0.0973 +0 0.1584 +0 0.1260 +0 0.0964 +0 0.1025 +0 0.1882 +0 0.0817 +0 0.0382 +0 0.1414 +0 0.0393 +0 0.1221 +0 0.2854 +0 0.0731 +0 0.0881 +0 0.0777 +0 0.1000 +0 0.1987 +0 0.0923 +0 0.2046 +0 0.1088 +0 0.1022 +0 0.1776 +0 0.0892 +0 0.0803 +0 0.2388 +0 0.1132 +0 0.0960 +0 0.1251 +0 0.2663 +0 0.1323 +0 0.1284 +0 0.1408 +0 0.1029 +0 0.1424 +0 0.1037 +0 0.0359 +0 0.1653 +0 0.2421 +0 0.1099 +0 0.0851 +0 0.0714 +0 0.1083 +0 0.0984 +0 0.0865 +0 0.0518 +0 0.0898 +0 0.1627 +0 0.1571 +0 0.0813 +0 0.0475 +0 0.0926 +0 0.0499 +0 0.1079 +0 0.1093 +0 0.1272 +0 0.1586 +0 0.1198 +0 0.0714 +0 0.1558 +0 0.1199 +0 0.0597 +0 0.0973 +0 0.1282 +0 0.0629 +0 0.0571 +0 0.0273 +0 0.7430 +0 0.1561 +0 0.1835 +0 0.0812 +0 0.1157 +0 0.1322 +0 0.0368 +0 0.2645 +0 0.0798 +0 0.3402 +0 0.1294 +0 0.1061 +0 0.0825 +0 0.1120 +0 0.0775 +0 0.1889 +0 0.0686 +0 0.6033 +0 0.1364 +0 0.0317 +1 0.7809 +0 0.3998 +0 0.1435 +0 0.0946 +0 0.1751 +0 0.0754 +0 0.3537 +0 0.2227 +0 0.1142 +0 0.1347 +0 0.0651 +0 0.1085 +0 0.1189 +0 0.0771 +0 0.1872 +0 0.0875 +0 0.0815 +0 0.0631 +0 0.1170 +0 0.0819 +0 0.0810 +0 0.1058 +0 0.1873 +0 0.0470 +0 0.1036 +0 0.0557 +0 0.0897 +0 0.1872 +0 0.5419 +0 0.1021 +0 0.0914 +0 0.0731 +0 0.7090 +0 0.0993 +0 0.0715 +0 0.1096 +0 0.0644 +0 0.1589 +0 0.0976 +0 0.2296 +0 0.1455 +0 0.1396 +0 0.0865 +0 0.0570 +0 0.1795 +0 0.0599 +0 0.2284 +0 0.0580 +0 0.0451 +0 0.0432 +0 0.2479 +0 0.1593 +0 0.0917 +0 0.1097 +0 0.1255 +0 0.0732 +0 0.2305 +0 0.1321 +0 0.0401 +0 0.3571 +0 0.0853 +0 0.0532 +0 0.0654 +0 0.0887 +0 0.6203 +0 0.0591 +0 0.0613 +0 0.0473 +0 0.0885 +0 0.2577 +0 0.1439 +0 0.1345 +0 0.0826 +1 0.7576 +0 0.1233 +0 0.2387 +0 0.5104 +0 0.2985 +0 0.0538 +0 0.1678 +0 0.1354 +0 0.0551 +0 0.1115 +0 0.1849 +0 0.1800 +0 0.1243 +0 0.0690 +0 0.1553 +0 0.3996 +0 0.0774 +0 0.0680 +0 0.3401 +0 0.0745 +0 0.0493 +0 0.0579 +0 0.1247 +0 0.1261 +0 0.0690 +0 0.0776 +0 0.1705 +0 0.1062 +0 0.2578 +0 0.0886 +0 0.1107 +0 0.2970 +0 0.0595 +0 0.1239 +0 0.1346 +0 0.0636 +0 0.1003 +0 0.1602 +0 0.2350 +0 0.1738 +0 0.1102 +0 0.3637 +0 0.1264 +0 0.0420 +0 0.0419 +0 0.0853 +0 0.5713 +0 0.1152 +0 0.0931 +0 0.0684 +0 0.2492 +0 0.0753 +0 0.2118 +0 0.1002 +0 0.1069 +0 0.1555 +0 0.1689 +0 0.0537 +0 0.1936 +0 0.1006 +0 0.0542 +0 0.3401 +0 0.0643 +0 0.0722 +0 0.0868 +0 0.1856 +0 0.0861 +0 0.1146 +0 0.0508 +0 0.1273 +0 0.1372 +0 0.1454 +0 0.0864 +0 0.4035 +0 0.0518 +0 0.1174 +0 0.3200 +0 0.0631 +0 0.0697 +0 0.1118 +0 0.3929 +0 0.1038 +0 0.0812 +0 0.2560 +0 0.2017 +0 0.3102 +0 0.3959 +0 0.1135 +0 0.0876 +0 0.1023 +0 0.0660 +0 0.0520 +0 0.5971 +0 0.1152 +0 0.0656 +0 0.1416 +0 0.4157 +0 0.2996 +0 0.0755 +0 0.1043 +0 0.0626 +1 0.8213 +0 0.2024 +0 0.0676 +0 0.2303 +0 0.0801 +0 0.3265 +0 0.0495 +0 0.0557 +1 0.7644 +0 0.0405 +0 0.3972 +0 0.0312 +0 0.2116 +0 0.1631 +0 0.1025 +0 0.0736 +0 0.1017 +0 0.0702 +0 0.1279 +0 0.1510 +0 0.1836 +0 0.0865 +0 0.1230 +0 0.0412 +0 0.7383 +0 0.0948 +0 0.1762 +0 0.0878 +0 0.0566 +0 0.1199 +0 0.0861 +0 0.1286 +0 0.1133 +0 0.0842 +0 0.0476 +0 0.0453 +1 0.8237 +0 0.1512 +0 0.0798 +0 0.0481 +0 0.0725 +0 0.2122 +0 0.0704 +0 0.0395 +0 0.6566 +0 0.1408 +0 0.0908 +0 0.1763 +0 0.0846 +0 0.1120 +0 0.0533 +0 0.0991 +0 0.0989 +0 0.1063 +0 0.0460 +0 0.1424 +0 0.0424 +0 0.0956 +0 0.1216 +0 0.0536 +0 0.0471 +0 0.0733 +0 0.1450 +0 0.0674 +0 0.2171 +0 0.0560 +0 0.0607 +0 0.3045 +0 0.1317 +0 0.1436 +0 0.1596 +0 0.0344 +0 0.0468 +0 0.0957 +0 0.0347 +0 0.1009 +0 0.1070 +0 0.6694 +0 0.0729 +0 0.2644 +0 0.1003 +0 0.1246 +0 0.4178 +0 0.0809 +0 0.2119 +0 0.1611 +0 0.0679 +0 0.2976 +0 0.0686 +0 0.1294 +0 0.1447 +0 0.2355 +0 0.1512 +0 0.0587 +0 0.0955 +0 0.1116 +0 0.2189 +0 0.0460 +0 0.1230 +0 0.1475 +0 0.1548 +0 0.0712 +0 0.3447 +0 0.2848 +0 0.1411 +0 0.1762 +0 0.1357 +0 0.0523 +0 0.7385 +0 0.1923 +0 0.1226 +0 0.3375 +0 0.2444 +0 0.0438 +0 0.0602 +0 0.1299 +0 0.3461 +0 0.0806 +0 0.0891 +0 0.0600 +0 0.7231 +0 0.0481 +0 0.1081 +0 0.2568 +0 0.1098 +0 0.3683 +0 0.0646 +0 0.5814 +0 0.0555 +0 0.2212 +0 0.7417 +0 0.2367 +0 0.2584 +0 0.2985 +0 0.2633 +0 0.1185 +0 0.1019 +0 0.3554 +0 0.1314 +0 0.2973 +0 0.1306 +0 0.1111 +0 0.1714 +0 0.0651 +0 0.0484 +0 0.1668 +0 0.1175 +0 0.0677 +0 0.1634 +0 0.0394 +0 0.1103 +0 0.1026 +0 0.2217 +0 0.0977 +0 0.0792 +0 0.0960 +0 0.1225 +0 0.0717 +0 0.1108 +0 0.1748 +0 0.0843 +0 0.1153 +0 0.1348 +0 0.1341 +0 0.0708 +0 0.1549 +0 0.1383 +0 0.0731 +0 0.1326 +0 0.0942 +0 0.0487 +0 0.1334 +0 0.1443 +0 0.0577 +0 0.0705 +0 0.0970 +0 0.1659 +0 0.0529 +0 0.0488 +0 0.0762 +0 0.2495 +0 0.2518 +0 0.1472 +0 0.1392 +0 0.0830 +0 0.0832 +0 0.1197 +0 0.0975 +0 0.4326 +0 0.1104 +0 0.4051 +0 0.0929 +0 0.0919 +0 0.1122 +0 0.0776 +0 0.0495 +0 0.2017 +0 0.0718 +0 0.0793 +0 0.2284 +0 0.1250 +0 0.1146 +0 0.1091 +0 0.3372 +0 0.0823 +0 0.5600 +0 0.0700 +0 0.1321 +0 0.0658 +0 0.0790 +0 0.0911 +0 0.2121 +0 0.1311 +0 0.0840 +0 0.2077 +0 0.1081 +0 0.0854 +0 0.0764 +0 0.1161 +0 0.1075 +0 0.4707 +0 0.0858 +0 0.2228 +0 0.2689 +0 0.4004 +0 0.0857 +0 0.0494 +0 0.1965 +0 0.1400 +0 0.1149 +0 0.0663 +0 0.0875 +0 0.2558 +0 0.0559 +0 0.1095 +0 0.2527 +0 0.1194 +0 0.2743 +0 0.0722 +0 0.0968 +0 0.1837 +0 0.1867 +0 0.1797 +0 0.1399 +0 0.0595 +0 0.1923 +0 0.1005 +0 0.0544 +1 0.7514 +0 0.1399 +0 0.1644 +0 0.1246 +0 0.0726 +0 0.1361 +0 0.1825 +0 0.0561 +0 0.0996 +0 0.0882 +1 0.8487 +0 0.1326 +0 0.1238 +0 0.1038 +0 0.1693 +0 0.0552 +0 0.0392 +0 0.0530 +0 0.1437 +0 0.4359 +0 0.2282 +0 0.1414 +0 0.1474 +0 0.1498 +0 0.1023 +0 0.0831 +0 0.2062 +0 0.5815 +0 0.0755 +0 0.0429 +0 0.0885 +0 0.1605 +0 0.0831 +0 0.0920 +0 0.0794 +0 0.0828 +0 0.0792 +0 0.1964 +0 0.4676 +0 0.1482 +0 0.1541 +0 0.1382 +0 0.0417 +0 0.0934 +0 0.1132 +0 0.0660 +0 0.1160 +0 0.0614 +0 0.0903 +0 0.0950 +0 0.0492 +0 0.0928 +0 0.0647 +0 0.0797 +0 0.0854 +1 0.8212 +0 0.1508 +0 0.0605 +0 0.4231 +0 0.0702 +0 0.2638 +0 0.1273 +0 0.0592 +0 0.1414 +0 0.0626 +0 0.2125 +0 0.0710 +0 0.2210 +0 0.2075 +0 0.6732 +0 0.1155 +0 0.0676 +0 0.0840 +0 0.0572 +0 0.0760 +0 0.0967 +0 0.3236 +0 0.0441 +0 0.1162 +0 0.2378 +0 0.2240 +0 0.4857 +0 0.0912 +0 0.1349 +0 0.0618 +0 0.6410 +0 0.1332 +0 0.1807 +0 0.0715 +0 0.4836 +0 0.1983 +1 0.8082 +0 0.0419 +0 0.2296 +0 0.1003 +0 0.1153 +0 0.1405 +0 0.0937 +0 0.1050 +0 0.0438 +0 0.0419 +0 0.0775 +0 0.0640 +0 0.2910 +0 0.0726 +0 0.2958 +0 0.2569 +0 0.0795 +0 0.2678 +0 0.0713 +0 0.1758 +0 0.0406 +0 0.1276 +0 0.0893 +0 0.0277 +0 0.1144 +0 0.1620 +0 0.1567 +0 0.0445 +0 0.0462 +0 0.1531 +0 0.2067 +0 0.1263 +0 0.0906 +0 0.0512 +0 0.0840 +0 0.0475 +0 0.1130 +0 0.0894 +0 0.1297 +0 0.1494 +0 0.0827 +0 0.1952 +0 0.3123 +0 0.1085 +0 0.0585 +0 0.1312 +0 0.1002 +0 0.2832 +0 0.1053 +0 0.0908 +0 0.7265 +0 0.0592 +1 0.7714 +0 0.1504 +0 0.0592 +0 0.1251 +0 0.1017 +0 0.2307 +0 0.1357 +0 0.0681 +0 0.1167 +0 0.1602 +0 0.0775 +0 0.0740 +0 0.0623 +0 0.4208 +0 0.0778 +0 0.0452 +0 0.0503 +0 0.0594 +0 0.0532 +0 0.0947 +0 0.0714 +0 0.0366 +0 0.3861 +0 0.0779 +0 0.2494 +0 0.0820 +0 0.0619 +0 0.0858 +0 0.2619 +0 0.0403 +0 0.1224 +0 0.0625 +0 0.1171 +0 0.1508 +0 0.1325 +0 0.0643 +0 0.0458 +0 0.0865 +0 0.0354 +0 0.0744 +0 0.1386 +0 0.0890 +1 0.8465 +0 0.1099 +0 0.2271 +0 0.1334 +0 0.2153 +0 0.0748 +0 0.0547 +0 0.1401 +0 0.4069 +0 0.0571 +0 0.0914 +0 0.1006 +0 0.3355 +0 0.0826 +0 0.0688 +0 0.7038 +0 0.0917 +0 0.1997 +0 0.0549 +0 0.2059 +0 0.0756 +0 0.1120 +0 0.0825 +0 0.1400 +0 0.0533 +0 0.0417 +0 0.0674 +0 0.3843 +0 0.0784 +0 0.1025 +0 0.1464 +0 0.0837 +0 0.0488 +0 0.2520 +0 0.1481 +0 0.1065 +0 0.2912 +0 0.2280 +0 0.1735 +0 0.0968 +0 0.1384 +0 0.1745 +0 0.0895 +0 0.1768 +0 0.1577 +0 0.0635 +0 0.1120 +0 0.0870 +0 0.1608 +0 0.0620 +0 0.0662 +0 0.1069 +0 0.0663 +0 0.1471 +0 0.0935 +0 0.0558 +0 0.1915 +0 0.0761 +0 0.2849 +0 0.1119 +0 0.0848 +0 0.0761 +0 0.1091 +0 0.1468 +0 0.0430 +0 0.0535 +0 0.0781 +0 0.2304 +0 0.0813 +0 0.0812 +0 0.2933 +0 0.1243 +0 0.3034 +0 0.2524 +0 0.2870 +0 0.2010 +0 0.1333 +0 0.1168 +0 0.0896 +0 0.4757 +0 0.0722 +0 0.1485 +0 0.0954 +0 0.1045 +0 0.0664 +0 0.0713 +0 0.0786 +0 0.0398 +0 0.1666 +0 0.0913 +0 0.1015 +0 0.1027 +0 0.0450 +0 0.2657 +0 0.0711 +0 0.6860 +0 0.1017 +0 0.0629 +0 0.2679 +0 0.0653 +0 0.5815 +0 0.0674 +0 0.1091 +0 0.0735 +0 0.1412 +0 0.2822 +0 0.0619 +0 0.0855 +0 0.1349 +0 0.2251 +0 0.0709 +0 0.0954 +0 0.2960 +0 0.0476 +1 0.7968 +0 0.1175 +0 0.1113 +0 0.0997 +0 0.0865 +0 0.1697 +0 0.6755 +0 0.0412 +0 0.0854 +0 0.0824 +0 0.0680 +0 0.2407 +0 0.0900 +0 0.4716 +0 0.0510 +1 0.7545 +0 0.0772 +0 0.1188 +0 0.0588 +0 0.0954 +0 0.1328 +0 0.0770 +0 0.1285 +0 0.0660 +0 0.0447 +0 0.3713 +0 0.0571 +0 0.0431 +0 0.0712 +0 0.1105 +0 0.1155 +0 0.0599 +0 0.1403 +0 0.5226 +0 0.0510 +0 0.0506 +0 0.0493 +0 0.1816 +0 0.0897 +0 0.2949 +0 0.1464 +0 0.0526 +0 0.0882 +0 0.1083 +0 0.0634 +0 0.1833 +0 0.0783 +0 0.2063 +0 0.2498 +0 0.0985 +0 0.2342 +0 0.1485 +0 0.1250 +0 0.1258 +0 0.1642 +0 0.1237 +0 0.0884 +0 0.0554 +0 0.1288 +0 0.1078 +0 0.0542 +0 0.2042 +0 0.0535 +0 0.0974 +0 0.0877 +0 0.1581 +0 0.0919 +0 0.1159 +0 0.0536 +0 0.1102 +0 0.2322 +0 0.1074 +0 0.2624 +0 0.1824 +0 0.0617 +0 0.0863 +0 0.0683 +0 0.2047 +0 0.0402 +0 0.0445 +0 0.2155 +0 0.1187 +0 0.4737 +0 0.1736 +0 0.1301 +0 0.1478 +0 0.0388 +0 0.0294 +0 0.0390 +0 0.0525 +0 0.3503 +0 0.1921 +0 0.0750 +0 0.1304 +0 0.2247 +0 0.2633 +0 0.0558 +0 0.0998 +0 0.0929 +0 0.0819 +0 0.0631 +0 0.1133 +0 0.2090 +0 0.0964 +0 0.0997 +0 0.0660 +0 0.0699 +0 0.3076 +0 0.2309 +0 0.0882 +0 0.0751 +0 0.0323 +0 0.3785 +0 0.0583 +0 0.1098 +0 0.0458 +0 0.0584 +0 0.0647 +0 0.1098 +0 0.0599 +0 0.0687 +0 0.2668 +0 0.0497 +0 0.0554 +0 0.1026 +0 0.0819 +0 0.1498 +0 0.0703 +0 0.0583 +0 0.1720 +0 0.0555 +0 0.6299 +0 0.1309 +0 0.3701 +0 0.2249 +0 0.1574 +0 0.1321 +0 0.2743 +0 0.0666 +0 0.0497 +0 0.1752 +0 0.0904 +0 0.1430 +0 0.1165 +0 0.2384 +0 0.1044 +0 0.0800 +0 0.1797 +0 0.1184 +0 0.1855 +0 0.1131 +0 0.1994 +0 0.0678 +0 0.0741 +0 0.2516 +0 0.1104 +0 0.1354 +0 0.1616 +0 0.1862 +0 0.1381 +0 0.0809 +0 0.1044 +0 0.0879 +0 0.1921 +0 0.0911 +0 0.4667 +0 0.1453 +0 0.1062 +0 0.0525 +1 0.7585 +0 0.0814 +0 0.0846 +0 0.1302 +0 0.0642 +0 0.1128 +0 0.2511 +0 0.1274 +0 0.1338 +0 0.1827 +1 0.7857 +0 0.0424 +0 0.1684 +0 0.1085 +0 0.2182 +0 0.1392 +0 0.1188 +0 0.2583 +0 0.2958 +0 0.0635 +0 0.1060 +0 0.2581 +0 0.2264 +0 0.0748 +0 0.1666 +0 0.1412 +0 0.2763 +0 0.0854 +0 0.0849 +0 0.1289 +0 0.0305 +0 0.1282 +0 0.1652 +0 0.0773 +0 0.3958 +0 0.1199 +0 0.0714 +0 0.0801 +0 0.0634 +0 0.0630 +0 0.1271 +0 0.2841 +0 0.1356 +0 0.0906 +0 0.0706 +0 0.0503 +0 0.1645 +0 0.1313 +0 0.1249 +0 0.0987 +0 0.2954 +0 0.0457 +0 0.1476 +0 0.0388 +1 0.7897 +0 0.0905 +0 0.0755 +0 0.4309 +0 0.2915 +0 0.0517 +0 0.1319 +0 0.2672 +0 0.0843 +0 0.0595 +0 0.0920 +0 0.1001 +0 0.1850 +0 0.1593 +0 0.0440 +0 0.0855 +0 0.1512 +0 0.0841 +0 0.2036 +0 0.1118 +0 0.0661 +0 0.1697 +0 0.2472 +0 0.0632 +0 0.0438 +0 0.1471 +0 0.2103 +0 0.2228 +0 0.5540 +0 0.1872 +0 0.0707 +0 0.0835 +0 0.4170 +0 0.1052 +0 0.0526 +0 0.2345 +0 0.0560 +0 0.0661 +0 0.0915 +0 0.3579 +0 0.0691 +0 0.1501 +0 0.1046 +0 0.2111 +0 0.0430 +0 0.1705 +0 0.0363 +0 0.1418 +0 0.0892 +1 0.8548 +0 0.1085 +0 0.0574 +0 0.0840 +0 0.1049 +0 0.0696 +0 0.0481 +0 0.0507 +0 0.7058 +0 0.1631 +0 0.7374 +0 0.0770 +0 0.1268 +0 0.0810 +0 0.1326 +0 0.0712 +0 0.2663 +0 0.0810 +0 0.1733 +0 0.1479 +0 0.1241 +0 0.1637 +0 0.0697 +0 0.0785 +0 0.0623 +0 0.1335 +0 0.1786 +0 0.0848 +1 0.7777 +0 0.1640 +0 0.2113 +0 0.1632 +0 0.1518 +0 0.2779 +0 0.0486 +0 0.0866 +0 0.1912 +0 0.2151 +0 0.2354 +0 0.0710 +1 0.8534 +0 0.1445 +0 0.1130 +1 0.8202 +0 0.0593 +0 0.1737 +0 0.0555 +0 0.0892 +0 0.1658 +0 0.1168 +0 0.1014 +0 0.0919 +0 0.0985 +0 0.0929 +0 0.0826 +0 0.0777 +0 0.1526 +0 0.0779 +0 0.1105 +0 0.0860 +0 0.1349 +0 0.1853 +0 0.0974 +0 0.1428 +0 0.0630 +0 0.1559 +0 0.0884 +0 0.5800 +0 0.1088 +0 0.2139 +0 0.0745 +0 0.0730 +0 0.1789 +0 0.0896 +0 0.1031 +0 0.1593 +0 0.1680 +0 0.0352 +0 0.0714 +0 0.0899 +0 0.3643 +0 0.1128 +0 0.0549 +0 0.1283 +0 0.2343 +0 0.0672 +0 0.1378 +0 0.1183 +0 0.0746 +0 0.0440 +0 0.1218 +0 0.0502 +0 0.0556 +0 0.1769 +0 0.0647 +0 0.1147 +0 0.0705 +0 0.0822 +0 0.1633 +0 0.1051 +0 0.1017 +0 0.0714 +0 0.0755 +0 0.0764 +0 0.0611 +0 0.0779 +0 0.1015 +1 0.7913 +0 0.0446 +0 0.1758 +0 0.1379 +0 0.1470 +0 0.2510 +0 0.1237 +0 0.0497 +0 0.5131 +0 0.0456 +0 0.0560 +0 0.0702 +1 0.1674 +0 0.0695 +0 0.1503 +0 0.0999 +0 0.1181 +0 0.1194 +0 0.0541 +0 0.1075 +0 0.6062 +0 0.2879 +0 0.0723 +0 0.0414 +0 0.0501 +0 0.0393 +0 0.1400 +0 0.1378 +0 0.0870 +0 0.0492 +0 0.1487 +0 0.0568 +0 0.2492 +0 0.1527 +0 0.1910 +0 0.1490 +0 0.1149 +0 0.1190 +0 0.1535 +0 0.0742 +0 0.1455 +0 0.0527 +0 0.1922 +0 0.0479 +0 0.1694 +0 0.0900 +1 0.8300 +0 0.1107 +0 0.0492 +0 0.5104 +0 0.0844 +0 0.2938 +0 0.3856 +0 0.1066 +0 0.0728 +0 0.0859 +0 0.2524 +0 0.1195 +0 0.0771 +0 0.0874 +0 0.0726 +0 0.0803 +0 0.0545 +0 0.1242 +0 0.5744 +0 0.1208 +0 0.0958 +0 0.2078 +0 0.2036 +0 0.1031 +0 0.3293 +0 0.0792 +0 0.1233 +0 0.0850 +0 0.1114 +0 0.0931 +0 0.0609 +0 0.0622 +0 0.0944 +0 0.0556 +0 0.0958 +0 0.0515 +0 0.0557 +0 0.0611 +0 0.0598 +0 0.0773 +0 0.0783 +0 0.0624 +0 0.1006 +0 0.1912 +0 0.1760 +0 0.0940 +0 0.0998 +0 0.1109 +0 0.0655 +0 0.0577 +0 0.4583 +0 0.0995 +0 0.0583 +0 0.1091 +0 0.2179 +0 0.1267 +0 0.1587 +0 0.2373 +0 0.1253 +0 0.1541 +0 0.1319 +0 0.0783 +0 0.2103 +0 0.3374 +0 0.0765 +0 0.1747 +0 0.1434 +0 0.1992 +0 0.0930 +0 0.1072 +0 0.0462 +0 0.0942 +0 0.0924 +0 0.0820 +0 0.1711 +0 0.0680 +0 0.1386 +0 0.1029 +0 0.4033 +0 0.0868 +0 0.1359 +0 0.1280 +0 0.0707 +0 0.0564 +0 0.0664 +0 0.0695 +0 0.0672 +0 0.0514 +0 0.1426 +0 0.0781 +0 0.1620 +0 0.2116 +0 0.2434 +0 0.3865 +0 0.0644 +0 0.2818 +0 0.0792 +0 0.0815 +0 0.1407 +0 0.1669 +0 0.1210 +0 0.2069 +0 0.0712 +0 0.1374 +0 0.1031 +0 0.1059 +0 0.0868 +0 0.0600 +0 0.1008 +0 0.1534 +0 0.0651 +0 0.1443 +0 0.4469 +0 0.2396 +0 0.3373 +0 0.0774 +0 0.1196 +0 0.0790 +0 0.0700 +0 0.1604 +0 0.0507 +0 0.1286 +0 0.0740 +0 0.0875 +0 0.1426 +0 0.0657 +0 0.0729 +0 0.0539 +0 0.0584 +0 0.1009 +0 0.0588 +0 0.1099 +0 0.0880 +0 0.0558 +0 0.0687 +0 0.1578 +0 0.1447 +0 0.0621 +0 0.0536 +0 0.0865 +0 0.0645 +0 0.1215 +0 0.0665 +0 0.4802 +0 0.1777 +0 0.0453 +0 0.2122 +0 0.0777 +0 0.0891 +0 0.7341 +0 0.2490 +0 0.0513 +0 0.3476 +0 0.0574 +1 0.8716 +0 0.1952 +0 0.1443 +0 0.2172 +0 0.0900 +0 0.1104 +0 0.1597 +0 0.2000 +0 0.1269 +0 0.0780 +0 0.1699 +0 0.1142 +0 0.1047 +0 0.2126 +0 0.1775 +0 0.0470 +0 0.1007 +0 0.0371 +0 0.0867 +0 0.1574 +0 0.1078 +0 0.0936 +0 0.3458 +0 0.1037 +0 0.1161 +0 0.1025 +0 0.0940 +0 0.0790 +0 0.0433 +0 0.0841 +0 0.1023 +0 0.0337 +0 0.0597 +0 0.2993 +0 0.1535 +0 0.0598 +0 0.0766 +0 0.3654 +0 0.1077 +0 0.0823 +0 0.1065 +0 0.0461 +0 0.0453 +0 0.1303 +0 0.1109 +0 0.1803 +0 0.3616 +1 0.7783 +0 0.0438 +0 0.1922 +0 0.3226 +0 0.1177 +0 0.0447 +0 0.1149 +0 0.0613 +0 0.1132 +0 0.0564 +0 0.0577 +0 0.1089 +0 0.3994 +0 0.0627 +0 0.0848 +0 0.0634 +0 0.0651 +0 0.1078 +0 0.1180 +0 0.7396 +0 0.1711 +0 0.1122 +0 0.0753 +0 0.1213 +0 0.1049 +0 0.1159 +0 0.0905 +0 0.2069 +0 0.2963 +0 0.1158 +0 0.1945 +0 0.2652 +1 0.8291 +0 0.1072 +0 0.1257 +0 0.0822 +0 0.1156 +0 0.1003 +0 0.0928 +0 0.2306 +0 0.1518 +0 0.2173 +0 0.0816 +0 0.2930 +0 0.1023 +0 0.0677 +0 0.2863 +0 0.1109 +0 0.1762 +0 0.0741 +0 0.0689 +0 0.0659 +0 0.0481 +0 0.1009 +0 0.1532 +0 0.3015 +0 0.1756 +0 0.0946 +0 0.1128 +0 0.0636 +0 0.2844 +0 0.1838 +0 0.1077 +0 0.5200 +0 0.7169 +0 0.0964 +0 0.1505 +0 0.1386 +0 0.0640 +0 0.1210 +0 0.1489 +0 0.0638 +0 0.1531 +0 0.0847 +0 0.0794 +0 0.1249 +0 0.0520 +0 0.1686 +0 0.0451 +0 0.1903 +0 0.1079 +0 0.5769 +0 0.2006 +0 0.0639 +0 0.0975 +0 0.0850 +0 0.0924 +0 0.1726 +0 0.4907 +0 0.2774 +0 0.2249 +0 0.1585 +0 0.0607 +0 0.0577 +0 0.2632 +0 0.0723 +0 0.0410 +0 0.1647 +0 0.1800 +0 0.1581 +0 0.0511 +0 0.0794 +0 0.1052 +0 0.2379 +0 0.0526 +0 0.0503 +0 0.0755 +0 0.1186 +0 0.2708 +0 0.1644 +0 0.2686 +0 0.0439 +0 0.1122 +0 0.0952 +0 0.2144 +0 0.2067 +0 0.0711 +0 0.0874 +0 0.1257 +0 0.2533 +0 0.1067 +0 0.0937 +0 0.0630 +0 0.0541 +0 0.2581 +0 0.0824 +0 0.0879 +0 0.0832 +0 0.0884 +0 0.0557 +0 0.1816 +0 0.0381 +0 0.0898 +0 0.0785 +0 0.0607 +0 0.1089 +0 0.0323 +0 0.0295 +0 0.1024 +0 0.0451 +0 0.3283 +0 0.1038 +0 0.1156 +0 0.1588 +0 0.0535 +0 0.2958 +0 0.1906 +0 0.0503 +0 0.0575 +0 0.0573 +0 0.0532 +0 0.0887 +0 0.0450 +0 0.0501 +0 0.0769 +0 0.1084 +0 0.3000 +0 0.0753 +0 0.1605 +0 0.1999 +0 0.0476 +0 0.0819 +0 0.1166 +0 0.2335 +0 0.0838 +0 0.0823 +0 0.1481 +0 0.2256 +0 0.1270 +0 0.1096 +0 0.0518 +0 0.0644 +1 0.8300 +0 0.0778 +0 0.1343 +0 0.1204 +0 0.1831 +0 0.1568 +0 0.1381 +0 0.3384 +0 0.1988 +0 0.0683 +0 0.1681 +0 0.2059 +0 0.0634 +0 0.1060 +0 0.0755 +0 0.1220 +0 0.2768 +0 0.0516 +0 0.0889 +0 0.0865 +0 0.0748 +0 0.0660 +0 0.0733 +0 0.0419 +0 0.0975 +0 0.0495 +0 0.1163 +0 0.0762 +0 0.0762 +0 0.2575 +0 0.6854 +0 0.1111 +0 0.0705 +0 0.1022 +0 0.0901 +0 0.0954 +0 0.0705 +0 0.1800 +0 0.3479 +0 0.2669 +0 0.1294 +0 0.2348 +0 0.0406 +0 0.2986 +0 0.0928 +0 0.1255 +0 0.2614 +0 0.0514 +0 0.1454 +0 0.0635 +0 0.1599 +0 0.0823 +0 0.0957 +0 0.3763 +0 0.0909 +0 0.4053 +0 0.1300 +0 0.2490 +0 0.0953 +0 0.0506 +0 0.0962 +0 0.0569 +0 0.0501 +0 0.0926 +0 0.0603 +0 0.0968 +0 0.0578 +0 0.3195 +0 0.1210 +0 0.1314 +0 0.0890 +0 0.1660 +0 0.0955 +1 0.7552 +0 0.0553 +0 0.3924 +0 0.1914 +0 0.3983 +0 0.0521 +0 0.0485 +0 0.0896 +0 0.0653 +0 0.0551 +0 0.1140 +0 0.1565 +0 0.1002 +0 0.1554 +0 0.1734 +0 0.2819 +0 0.1690 +0 0.1406 +0 0.1002 +0 0.2300 +0 0.1824 +0 0.2502 +0 0.1696 +0 0.0441 +0 0.0825 +0 0.1810 +0 0.0365 +0 0.1441 +0 0.0794 +0 0.1443 +0 0.1937 +0 0.0673 +0 0.0892 +0 0.0413 +0 0.1266 +0 0.0980 +0 0.1432 +0 0.0814 +0 0.1076 +0 0.1255 +0 0.1813 +0 0.1291 +0 0.2241 +0 0.1945 +0 0.1016 +0 0.1636 +0 0.0739 +0 0.0670 +0 0.1641 +0 0.2156 +0 0.2706 +0 0.0863 +0 0.0636 +0 0.1974 +0 0.0506 +0 0.0891 +0 0.0840 +0 0.1263 +0 0.0568 +0 0.1668 +0 0.0770 +1 0.7818 +0 0.1296 +0 0.0674 +0 0.4121 +0 0.0866 +0 0.1756 +0 0.1182 +0 0.1298 +0 0.0624 +0 0.0965 +0 0.1098 +0 0.5934 +0 0.2037 +0 0.0823 +0 0.4258 +0 0.1207 +0 0.1132 +0 0.0887 +0 0.0649 +0 0.2601 +0 0.0849 +0 0.0653 +0 0.2086 +0 0.0522 +0 0.0551 +0 0.0682 +0 0.1038 +0 0.0619 +0 0.1326 +0 0.3175 +0 0.1386 +0 0.0998 +0 0.1340 +0 0.0523 +0 0.0858 +0 0.0573 +0 0.0826 +0 0.0578 +0 0.0708 +0 0.2183 +0 0.0332 +0 0.1434 +0 0.0550 +0 0.0978 +0 0.0661 +0 0.0676 +1 0.8630 +0 0.1026 +0 0.1038 +0 0.0805 +0 0.0451 +0 0.0645 +0 0.0638 +0 0.1219 +0 0.1387 +0 0.1056 +0 0.0487 +0 0.1089 +0 0.1127 +0 0.5504 +0 0.0476 +0 0.0780 +0 0.1859 +0 0.0337 +0 0.0533 +0 0.0406 +0 0.1394 +0 0.0962 +0 0.0599 +0 0.1448 +0 0.2078 +0 0.0516 +0 0.2088 +0 0.0794 +0 0.1538 +1 0.8229 +0 0.0881 +0 0.0719 +0 0.1754 +0 0.0693 +0 0.1554 +0 0.0826 +0 0.0669 +0 0.0924 +0 0.0807 +0 0.1337 +0 0.0737 +1 0.3063 +0 0.1429 +0 0.0732 +0 0.1961 +0 0.0685 +0 0.1718 +0 0.1363 +0 0.0665 +0 0.3267 +0 0.1016 +0 0.1754 +0 0.0955 +0 0.3313 +0 0.0424 +0 0.0797 +0 0.7049 +0 0.0811 +0 0.2482 +0 0.1013 +0 0.1235 +0 0.1499 +0 0.1512 +0 0.2275 +0 0.2001 +0 0.7166 +0 0.0630 +0 0.0788 +0 0.0400 +0 0.0948 +0 0.0824 +0 0.1375 +0 0.0495 +0 0.1073 +0 0.0628 +0 0.1817 +0 0.1028 +0 0.1062 +0 0.1022 +0 0.0712 +0 0.0801 +0 0.0690 +0 0.1812 +0 0.0530 +0 0.1304 +0 0.0445 +0 0.3519 +0 0.1009 +0 0.1298 +0 0.5153 +0 0.1489 +0 0.1805 +0 0.1098 +0 0.0980 +0 0.1807 +0 0.1073 +0 0.6262 +0 0.0627 +0 0.0711 +0 0.2075 +0 0.1360 +0 0.0544 +0 0.0917 +0 0.1798 +0 0.0762 +0 0.0516 +0 0.1195 +0 0.0558 +0 0.0812 +0 0.0746 +0 0.1230 +0 0.0699 +0 0.3834 +0 0.0367 +0 0.0948 +0 0.0637 +0 0.0645 +0 0.1498 +0 0.1135 +0 0.1477 +0 0.0754 +0 0.0403 +0 0.2845 +0 0.1903 +0 0.2198 +0 0.0811 +0 0.1720 +0 0.2176 +0 0.1740 +0 0.0455 +0 0.0342 +0 0.1544 +0 0.3365 +0 0.1684 +0 0.0839 +0 0.5013 +0 0.0827 +0 0.0786 +0 0.0849 +0 0.0847 +0 0.0985 +0 0.0349 +0 0.0899 +0 0.0553 +0 0.0512 +0 0.1356 +0 0.1636 +0 0.1056 +0 0.2475 +0 0.0510 +0 0.4279 +0 0.0963 +0 0.0555 +0 0.0978 +0 0.7122 +0 0.0472 +0 0.1025 +0 0.2051 +0 0.1038 +0 0.0673 +0 0.2508 +0 0.2917 +0 0.0980 +0 0.0721 +0 0.1589 +0 0.0538 +0 0.1792 +0 0.1636 +0 0.4881 +0 0.1609 +0 0.0437 +0 0.0504 +0 0.0519 +0 0.1537 +0 0.2280 +0 0.1159 +0 0.0787 +0 0.0750 +0 0.0418 +0 0.3002 +0 0.1888 +0 0.1716 +0 0.2325 +0 0.1542 +0 0.2065 +0 0.0625 +0 0.2674 +0 0.0460 +0 0.3473 +0 0.4846 +0 0.2867 +0 0.1004 +0 0.0564 +0 0.2172 +1 0.7820 +0 0.0498 +0 0.0684 +0 0.1394 +0 0.1135 +0 0.0545 +0 0.1065 +0 0.0937 +0 0.0810 +0 0.4378 +0 0.1877 +0 0.0752 +0 0.0935 +0 0.1243 +0 0.1601 +0 0.0968 +0 0.0919 +0 0.3930 +0 0.1107 +0 0.1255 +0 0.0470 +0 0.0749 +0 0.0662 +0 0.0974 +0 0.0746 +0 0.1444 +0 0.6820 +0 0.0739 +0 0.1170 +0 0.1333 +0 0.2773 +0 0.0698 +0 0.0842 +0 0.1229 +0 0.3077 +1 0.8234 +0 0.0956 +0 0.2023 +0 0.0937 +0 0.1134 +0 0.0897 +0 0.1775 +0 0.0632 +0 0.1859 +0 0.0679 +0 0.1060 +0 0.0923 +0 0.0706 +0 0.0815 +0 0.0745 +0 0.2687 +0 0.1264 +0 0.0819 +0 0.2744 +0 0.0747 +0 0.0842 +0 0.0699 +0 0.3584 +0 0.0997 +0 0.0801 +0 0.1185 +0 0.1045 +0 0.0716 +0 0.1330 +0 0.2368 +0 0.0935 +0 0.0825 +0 0.1778 +0 0.1606 +0 0.0375 +0 0.1840 +0 0.0328 +0 0.1710 +1 0.7652 +0 0.1887 +0 0.3146 +0 0.0954 +0 0.1117 +0 0.4037 +0 0.1875 +0 0.2077 +0 0.6600 +0 0.1825 +0 0.0775 +0 0.2180 +0 0.1991 +0 0.2053 +0 0.0527 +0 0.1740 +0 0.2418 +0 0.0509 +0 0.0781 +0 0.1562 +0 0.0446 +0 0.1514 +0 0.0497 +0 0.2645 +0 0.0951 +0 0.0471 +0 0.1338 +0 0.2297 +0 0.1757 +0 0.0818 +0 0.1314 +0 0.1431 +0 0.1197 +0 0.0647 +0 0.2303 +0 0.0629 +0 0.1148 +0 0.0997 +1 0.7646 +0 0.0560 +0 0.1008 +0 0.1419 +0 0.1097 +0 0.0846 +0 0.1634 +0 0.2061 +0 0.0531 +0 0.1177 +0 0.0968 +0 0.1954 +0 0.1737 +0 0.1562 +0 0.1721 +0 0.1183 +0 0.0393 +0 0.4660 +0 0.0932 +0 0.2793 +0 0.0912 +0 0.1020 +0 0.0990 +0 0.0696 +0 0.0441 +0 0.2753 +0 0.1919 +0 0.0453 +0 0.1201 +0 0.2582 +0 0.0763 +0 0.0500 +1 0.7988 +0 0.1031 +0 0.6098 +0 0.0895 +0 0.0932 +0 0.1239 +0 0.1390 +0 0.0807 +0 0.0824 +0 0.3790 +0 0.1064 +0 0.0866 +0 0.0908 +0 0.0852 +0 0.2330 +0 0.1166 +0 0.1500 +0 0.0649 +0 0.1273 +0 0.0786 +0 0.0631 +0 0.1401 +0 0.0496 +0 0.0788 +0 0.1272 +0 0.0934 +0 0.1207 +0 0.2139 +0 0.2586 +0 0.1185 +0 0.1413 +0 0.0355 +0 0.2916 +0 0.0783 +0 0.2093 +0 0.0474 +0 0.1060 +0 0.1982 +0 0.0602 +0 0.0942 +0 0.7303 +0 0.2789 +1 0.8760 +0 0.1025 +0 0.1534 +0 0.0751 +0 0.0777 +0 0.1099 +0 0.1852 +0 0.0769 +0 0.1392 +0 0.2599 +0 0.1586 +0 0.0675 +0 0.1058 +0 0.0693 +0 0.1468 +0 0.0508 +0 0.1510 +0 0.2014 +0 0.0661 +0 0.1329 +0 0.0692 +0 0.0650 +0 0.0451 +0 0.0749 +0 0.3220 +0 0.0608 +0 0.0834 +0 0.4037 +0 0.0931 +0 0.0888 +0 0.0576 +0 0.2064 +0 0.0697 +0 0.0950 +0 0.0361 +0 0.3484 +0 0.0793 +0 0.0897 +0 0.0471 +0 0.0396 +0 0.0880 +0 0.0778 +0 0.1810 +0 0.4164 +0 0.0687 +0 0.1047 +0 0.2280 +0 0.2397 +0 0.1150 +0 0.7422 +0 0.1330 +0 0.1293 +0 0.0736 +0 0.0709 +0 0.2074 +0 0.0742 +0 0.1205 +0 0.1256 +0 0.3344 +0 0.0561 +0 0.0967 +0 0.1357 +0 0.7343 +0 0.1284 +0 0.2069 +0 0.0678 +0 0.1561 +0 0.0794 +0 0.0913 +0 0.2271 +0 0.2426 +0 0.1043 +1 0.7925 +0 0.0732 +0 0.0834 +0 0.1440 +0 0.0501 +0 0.1493 +0 0.0707 +0 0.0544 +0 0.0579 +0 0.0837 +0 0.1623 +0 0.0989 +0 0.1727 +0 0.1966 +0 0.1017 +0 0.0821 +0 0.0857 +0 0.0770 +0 0.4461 +0 0.0942 +0 0.0925 +0 0.0894 +0 0.7193 +0 0.1882 +0 0.0960 +0 0.0571 +0 0.0978 +0 0.0882 +0 0.1339 +0 0.1146 +0 0.1020 +0 0.0454 +0 0.3128 +0 0.1384 +0 0.1983 +0 0.1256 +0 0.1150 +0 0.0988 +0 0.0638 +0 0.1080 +0 0.1972 +0 0.2602 +0 0.2016 +0 0.1775 +0 0.1564 +0 0.2268 +0 0.1038 +0 0.0954 +0 0.0795 +0 0.1868 +0 0.0996 +0 0.0802 +0 0.1843 +0 0.0605 +0 0.4327 +0 0.0729 +0 0.0613 +0 0.1007 +0 0.0724 +0 0.0502 +0 0.0558 +0 0.7208 +0 0.0646 +0 0.1440 +0 0.1460 +0 0.2178 +0 0.1415 +0 0.1181 +0 0.1307 +0 0.2796 +0 0.0338 +0 0.0810 +0 0.1115 +0 0.0634 +0 0.2689 +0 0.0729 +0 0.1686 +0 0.0735 +0 0.2731 +0 0.0646 +0 0.1059 +0 0.3778 +0 0.0667 +0 0.5370 +0 0.1977 +0 0.0679 +0 0.1087 +0 0.0505 +0 0.0576 +0 0.0568 +0 0.1364 +0 0.1559 +0 0.0395 +0 0.0513 +0 0.0958 +0 0.1083 +0 0.0485 +0 0.2028 +0 0.1098 +0 0.1912 +0 0.1010 +0 0.0834 +0 0.1658 +0 0.0629 +0 0.0989 +0 0.1704 +0 0.1486 +0 0.3963 +0 0.0776 +0 0.0879 +0 0.6297 +0 0.0943 +0 0.1048 +0 0.1893 +0 0.2230 +0 0.0997 +0 0.1138 +0 0.0575 +0 0.0871 +0 0.1264 +0 0.1025 +0 0.1751 +0 0.3897 +0 0.1211 +0 0.0646 +0 0.1545 +0 0.2003 +0 0.1545 +0 0.0600 +0 0.0874 +0 0.1307 +0 0.0541 +0 0.2351 +0 0.0830 +0 0.0985 +0 0.2237 +0 0.7080 +0 0.1845 +0 0.0405 +0 0.0886 +0 0.2035 +0 0.0397 +0 0.2990 +0 0.1722 +0 0.1129 +0 0.1535 +0 0.1637 +0 0.1769 +0 0.0980 +0 0.1284 +0 0.0745 +0 0.3164 +0 0.1900 +0 0.0401 +0 0.0582 +0 0.0414 +0 0.0792 +0 0.1407 +0 0.0936 +0 0.0912 +0 0.0461 +0 0.2408 +0 0.1120 +0 0.3040 +0 0.0782 +0 0.2005 +0 0.0907 +0 0.0391 +0 0.0513 +0 0.1417 +0 0.0832 +0 0.3641 +0 0.1127 +0 0.3217 +0 0.1223 +0 0.1085 +0 0.1108 +0 0.1738 +0 0.1086 +0 0.0802 +0 0.0694 +0 0.2120 +0 0.0808 +0 0.0894 +0 0.2040 +0 0.0491 +0 0.1317 +0 0.0946 +0 0.1088 +0 0.0686 +0 0.1077 +0 0.0653 +0 0.0855 +0 0.0370 +0 0.1213 +0 0.2388 +0 0.2387 +0 0.3158 +0 0.0952 +0 0.0611 +0 0.1418 +0 0.0603 +0 0.0650 +0 0.1414 +0 0.1174 +0 0.1638 +0 0.1009 +0 0.0980 +0 0.0335 +0 0.0475 +0 0.0626 +0 0.2001 +0 0.0957 +1 0.7800 +0 0.0598 +0 0.1150 +0 0.1086 +0 0.0730 +0 0.1181 +0 0.0440 +0 0.0422 +0 0.0895 +0 0.0651 +0 0.1877 +0 0.1761 +0 0.0926 +0 0.0839 +0 0.1010 +0 0.1272 +0 0.2751 +0 0.6780 +0 0.1047 +0 0.0516 +0 0.0814 +0 0.1863 +0 0.0940 +0 0.1688 +0 0.0844 +0 0.2024 +0 0.0835 +0 0.1792 +0 0.0866 +0 0.1406 +0 0.0759 +0 0.1212 +0 0.1249 +0 0.1325 +0 0.4399 +0 0.1866 +0 0.1696 +0 0.1332 +0 0.2449 +0 0.1404 +0 0.0833 +0 0.0891 +0 0.0452 +0 0.0570 +0 0.3424 +0 0.6968 +0 0.0809 +0 0.1581 +0 0.2021 +0 0.0791 +0 0.2375 +0 0.1863 +0 0.1147 +0 0.1480 +0 0.0801 +0 0.1269 +0 0.1584 +0 0.5978 +0 0.0799 +0 0.3183 +0 0.2089 +0 0.0443 +0 0.1834 +0 0.0450 +0 0.0978 +0 0.1344 +0 0.0615 +0 0.1680 +0 0.0498 +0 0.4672 +0 0.1374 +0 0.2806 +0 0.0401 +0 0.0747 +0 0.1909 +0 0.0712 +0 0.3799 +0 0.0441 +0 0.0762 +0 0.1715 +0 0.2182 +0 0.0578 +0 0.4186 +0 0.0791 +0 0.1813 +0 0.0818 +0 0.0366 +0 0.1925 +0 0.5534 +0 0.1161 +0 0.1124 +1 0.8424 +0 0.1491 +0 0.1730 +0 0.0860 +0 0.1579 +1 0.7704 +0 0.2125 +0 0.1476 +0 0.0753 +0 0.1745 +0 0.1282 +0 0.1313 +0 0.1598 +0 0.6376 +0 0.0529 +0 0.0844 +0 0.0604 +0 0.4334 +0 0.2071 +0 0.0772 +0 0.0466 +0 0.2276 +0 0.0379 +0 0.1854 +0 0.0785 +0 0.0977 +0 0.2054 +0 0.1639 +0 0.1858 +0 0.3853 +0 0.3278 +0 0.0572 +0 0.1318 +0 0.2684 +0 0.1607 +0 0.1233 +0 0.1428 +0 0.0573 +0 0.1256 +1 0.7798 +0 0.0820 +0 0.3983 +0 0.0735 +0 0.0365 +0 0.0972 +0 0.1132 +0 0.0921 +0 0.1333 +0 0.2157 +0 0.1166 +0 0.0540 +0 0.2041 +0 0.0967 +0 0.1172 +0 0.1538 +0 0.0653 +0 0.2313 +0 0.0983 +0 0.0561 +0 0.0884 +0 0.0695 +0 0.2086 +0 0.1059 +0 0.1226 +0 0.0738 +0 0.0490 +0 0.0517 +0 0.2827 +0 0.1103 +0 0.0487 +0 0.1071 +0 0.1859 +0 0.0467 +0 0.4150 +0 0.0566 +0 0.1897 +0 0.0475 +0 0.1886 +0 0.0974 +0 0.1208 +0 0.1466 +0 0.1325 +0 0.0684 +0 0.0417 +0 0.1268 +0 0.0537 +0 0.0862 +0 0.1851 +0 0.0784 +0 0.0543 +0 0.1801 +0 0.4217 +0 0.0771 +0 0.1922 +0 0.4660 +0 0.1810 +0 0.1390 +0 0.0874 +0 0.2762 +0 0.0696 +0 0.1967 +0 0.0631 +0 0.0525 +0 0.0758 +0 0.0849 +0 0.3171 +0 0.0415 +0 0.0788 +0 0.3182 +0 0.1305 +0 0.1477 +0 0.0707 +0 0.1346 +0 0.0330 +0 0.1315 +0 0.0571 +0 0.1303 +0 0.1235 +0 0.0688 +0 0.0535 +0 0.0971 +0 0.0607 +0 0.1591 +0 0.0524 +0 0.1776 +0 0.5994 +0 0.6880 +0 0.0612 +0 0.0509 +0 0.5025 +0 0.1072 +0 0.1695 +0 0.1072 +0 0.0512 +0 0.1183 +0 0.0903 +0 0.0648 +0 0.1055 +0 0.0347 +0 0.3087 +0 0.0657 +0 0.0437 +0 0.1031 +0 0.3424 +0 0.1830 +0 0.1367 +0 0.0741 +0 0.2324 +0 0.2439 +0 0.1347 +0 0.1231 +0 0.0785 +0 0.4038 +0 0.0589 +0 0.1650 +0 0.1124 +0 0.1637 +0 0.0848 +0 0.0649 +0 0.0723 +0 0.0527 +0 0.0833 +0 0.2531 +0 0.0389 +0 0.0856 +0 0.0982 +0 0.2401 +0 0.0532 +0 0.1122 +0 0.1102 +0 0.0644 +0 0.0669 +0 0.0776 +0 0.0704 +0 0.0887 +0 0.0799 +0 0.1516 +0 0.2725 +0 0.0887 +0 0.0957 +0 0.0546 +0 0.4356 +0 0.5949 +0 0.1585 +0 0.0482 +0 0.2677 +0 0.0735 +0 0.2304 +0 0.0530 +0 0.0476 +0 0.0918 +0 0.0846 +0 0.2610 +0 0.1552 +0 0.2324 +0 0.0478 +0 0.0743 +0 0.1729 +0 0.0840 +0 0.0566 +0 0.1078 +0 0.1247 +0 0.3211 +0 0.0711 +0 0.2142 +0 0.1223 +0 0.1697 +0 0.2412 +0 0.0829 +0 0.0322 +0 0.6801 +0 0.0476 +0 0.0971 +0 0.0514 +0 0.6475 +0 0.1149 +0 0.0799 +0 0.0928 +0 0.0468 +0 0.0611 +0 0.0388 +0 0.1388 +0 0.1710 +0 0.1139 +0 0.0788 +0 0.0830 +0 0.0732 +0 0.0553 +0 0.0732 +0 0.1972 +0 0.3504 +0 0.2757 +0 0.0325 +0 0.2998 +0 0.0577 +0 0.0847 +0 0.1536 +0 0.1565 +0 0.0850 +0 0.0971 +0 0.0338 +0 0.0525 +0 0.1211 +0 0.1155 +0 0.1252 +0 0.0597 +1 0.7942 +0 0.4498 +0 0.1020 +0 0.0770 +0 0.0791 +0 0.0997 +0 0.1436 +0 0.0437 +0 0.1007 +0 0.1270 +0 0.3963 +0 0.5927 +0 0.0777 +0 0.0522 +0 0.1418 +0 0.0574 +0 0.1137 +0 0.0681 +0 0.1273 +0 0.2210 +0 0.0956 +0 0.1181 +0 0.3525 +0 0.4649 +0 0.1133 +0 0.2119 +0 0.1497 +0 0.2743 +0 0.2880 +1 0.7690 +0 0.0697 +0 0.1466 +0 0.0482 +0 0.1127 +0 0.3334 +0 0.0504 +0 0.0807 +0 0.1181 +0 0.0617 +0 0.0461 +0 0.0939 +0 0.2115 +0 0.2004 +0 0.0755 +0 0.0730 +1 0.7651 +0 0.0905 +0 0.1965 +0 0.1320 +0 0.1376 +0 0.0723 +0 0.0744 +0 0.2754 +0 0.3183 +0 0.0528 +0 0.1077 +0 0.0816 +0 0.1371 +0 0.1107 +0 0.0466 +0 0.1904 +0 0.1535 +0 0.2671 +0 0.3109 +0 0.0930 +0 0.0923 +0 0.1608 +0 0.0796 +0 0.1912 +0 0.0586 +0 0.2077 +0 0.1150 +0 0.3233 +0 0.1766 +0 0.0522 +0 0.4897 +0 0.0630 +0 0.0973 +0 0.1754 +0 0.4596 +0 0.0989 +0 0.7179 +0 0.0599 +0 0.0935 +0 0.0544 +0 0.1368 +0 0.1636 +0 0.1550 +0 0.0943 +0 0.0769 +0 0.1750 +1 0.8787 +0 0.0806 +0 0.0811 +0 0.1166 +0 0.0807 +0 0.0853 +0 0.0772 +0 0.2153 +0 0.1873 +0 0.1571 +0 0.1185 +0 0.0993 +0 0.1377 +0 0.1448 +1 0.8258 +0 0.0783 +0 0.2739 +0 0.1064 +0 0.1424 +0 0.1046 +0 0.1864 +0 0.0554 +0 0.0357 +0 0.0819 +0 0.0572 +0 0.0536 +0 0.1116 +0 0.0525 +0 0.1617 +0 0.0978 +0 0.0858 +0 0.1910 +0 0.0713 +0 0.0525 +0 0.1424 +0 0.0598 +0 0.1412 +0 0.1742 +0 0.1151 +0 0.4179 +0 0.6665 +0 0.0832 +0 0.0650 +0 0.1015 +0 0.3804 +0 0.0926 +0 0.0852 +0 0.5550 +0 0.0630 +0 0.1344 +0 0.5531 +0 0.1327 +0 0.2219 +0 0.0772 +0 0.2080 +0 0.3584 +0 0.5255 +0 0.1184 +0 0.1069 +0 0.0888 +0 0.0515 +0 0.1295 +0 0.0931 +0 0.1593 +0 0.0480 +0 0.1606 +0 0.2119 +0 0.0582 +0 0.0655 +0 0.0531 +0 0.0954 +0 0.0458 +0 0.2700 +0 0.1391 +0 0.1205 +0 0.0841 +0 0.2145 +0 0.1098 +0 0.1294 +0 0.0731 +0 0.0780 +0 0.0732 +0 0.0535 +0 0.0907 +0 0.1658 +0 0.1004 +0 0.0739 +0 0.1226 +0 0.1084 +0 0.0591 +0 0.0688 +0 0.1468 +0 0.0448 +0 0.0575 +0 0.4277 +0 0.1186 +0 0.0490 +0 0.2460 +0 0.0471 +0 0.1085 +0 0.0441 +0 0.1544 +0 0.0801 +0 0.1236 +0 0.3805 +0 0.1473 +0 0.1314 +0 0.2043 +0 0.2076 +0 0.0509 +0 0.0923 +0 0.0692 +0 0.1809 +0 0.1662 +0 0.0970 +0 0.0880 +0 0.1188 +0 0.2193 +0 0.4881 +0 0.1552 +0 0.0435 +0 0.5696 +0 0.0514 +0 0.1275 +0 0.4388 +0 0.1324 +0 0.0704 +0 0.0849 +0 0.1444 +0 0.0765 +0 0.0415 +0 0.1072 +0 0.0512 +0 0.1147 +0 0.0720 +0 0.0408 +0 0.1783 +0 0.1252 +0 0.1189 +0 0.0667 +0 0.6131 +0 0.1313 +0 0.0537 +0 0.1204 +0 0.1062 +0 0.2151 +0 0.5155 +0 0.3850 +0 0.1296 +0 0.5426 +0 0.0326 +0 0.0571 +0 0.1583 +0 0.0721 +0 0.2232 +0 0.1054 +0 0.1970 +0 0.6215 +0 0.0440 +0 0.0667 +0 0.2172 +0 0.0879 +0 0.0757 +0 0.2600 +0 0.0593 +0 0.1688 +0 0.1017 +1 0.7602 +0 0.1694 +1 0.7736 +0 0.1194 +0 0.0490 +0 0.5772 +0 0.4262 +0 0.1786 +0 0.1719 +0 0.1526 +0 0.1704 +0 0.2280 +0 0.0831 +0 0.0579 +0 0.2398 +0 0.1439 +1 0.8296 +0 0.2587 +0 0.1322 +0 0.2064 +0 0.0447 +0 0.1429 +0 0.1490 +0 0.1188 +0 0.3357 +0 0.0963 +0 0.0497 +0 0.0826 +0 0.1031 +0 0.1390 +0 0.3858 +0 0.0933 +0 0.1422 +0 0.1553 +0 0.1957 +0 0.1593 +0 0.2563 +0 0.2124 +0 0.4110 +0 0.0535 +0 0.0861 +0 0.1625 +0 0.1182 +0 0.2000 +0 0.0717 +0 0.1385 +0 0.0790 +0 0.0844 +0 0.0545 +0 0.2029 +0 0.1020 +0 0.0743 +0 0.1098 +0 0.0791 +0 0.3506 +0 0.0576 +0 0.2598 +0 0.1748 +0 0.1815 +0 0.0878 +0 0.1168 +0 0.2707 +0 0.3045 +0 0.1323 +0 0.1146 +0 0.0664 +0 0.1200 +0 0.2041 +0 0.2374 +0 0.1014 +0 0.0853 +0 0.1686 +0 0.1131 +0 0.0859 +0 0.1683 +0 0.3369 +0 0.1134 +0 0.0813 +0 0.0688 +0 0.3322 +0 0.0790 +0 0.1309 +0 0.0887 +0 0.2241 +0 0.1129 +1 0.8340 +0 0.0399 +0 0.1312 +0 0.1248 +0 0.0530 +0 0.1673 +0 0.0967 +0 0.0870 +0 0.4749 +0 0.0811 +0 0.1536 +0 0.0699 +0 0.0727 +0 0.0746 +0 0.2014 +0 0.1035 +0 0.0284 +0 0.1497 +0 0.0478 +0 0.0569 +0 0.0538 +0 0.0796 +0 0.0934 +0 0.0799 +0 0.1138 +0 0.0284 +0 0.1023 +0 0.1027 +0 0.1772 +0 0.1335 +0 0.1353 +0 0.1729 +0 0.1689 +0 0.2562 +0 0.0934 +0 0.0937 +0 0.1905 +0 0.1354 +0 0.0569 +0 0.1622 +0 0.0832 +0 0.1345 +0 0.0716 +0 0.1527 +0 0.0922 +0 0.0427 +0 0.0821 +0 0.1989 +0 0.2970 +0 0.0479 +0 0.0634 +0 0.2229 +0 0.0798 +0 0.1448 +0 0.0570 +0 0.1547 +0 0.0899 +0 0.1607 +0 0.0756 +0 0.0800 +0 0.1054 +0 0.0677 +0 0.2190 +0 0.0412 +0 0.4348 +0 0.0704 +0 0.0994 +0 0.0732 +0 0.0440 +0 0.0868 +0 0.4262 +0 0.4202 +0 0.0859 +0 0.0602 +0 0.1660 +0 0.0430 +0 0.1114 +0 0.1064 +0 0.1292 +0 0.0393 +0 0.0874 +0 0.1413 +0 0.0397 +0 0.0978 +0 0.2095 +0 0.1689 +0 0.1236 +0 0.0648 +1 0.7729 +0 0.1484 +0 0.0973 +1 0.8248 +0 0.2054 +0 0.0781 +0 0.0835 +0 0.2377 +0 0.1471 +0 0.2235 +0 0.0660 +0 0.1651 +0 0.0886 +0 0.1810 +0 0.3367 +0 0.1699 +0 0.2153 +0 0.1184 +0 0.0660 +0 0.2345 +0 0.0837 +0 0.0496 +0 0.2832 +0 0.0497 +0 0.2388 +0 0.1510 +0 0.0839 +0 0.1364 +0 0.0483 +0 0.0539 +0 0.0733 +0 0.0961 +0 0.0794 +0 0.2192 +0 0.1664 +0 0.0790 +0 0.0741 +0 0.1073 +0 0.0428 +0 0.3305 +0 0.1071 +0 0.0763 +0 0.0764 +1 0.8027 +0 0.0375 +0 0.0289 +0 0.1081 +0 0.0819 +0 0.0876 +0 0.0507 +0 0.1117 +0 0.0974 +0 0.1026 +0 0.1543 +0 0.0589 +0 0.1341 +0 0.0750 +0 0.2480 +0 0.1999 +0 0.0769 +0 0.0696 +0 0.1694 +0 0.3154 +0 0.4448 +0 0.0999 +0 0.1182 +0 0.1418 +0 0.0819 +0 0.1077 +0 0.1225 +0 0.1037 +0 0.0426 +0 0.2098 +0 0.1294 +0 0.0730 +0 0.6317 +0 0.0898 +0 0.0662 +0 0.0544 +0 0.0997 +0 0.1429 +0 0.0804 +0 0.2480 +0 0.0919 +0 0.0875 +0 0.1579 +0 0.0906 +0 0.1022 +0 0.1001 +0 0.0571 +0 0.0571 +0 0.1847 +0 0.0361 +0 0.0777 +0 0.1447 +0 0.2175 +0 0.0530 +0 0.1171 +0 0.1918 +0 0.1103 +0 0.3865 +0 0.1907 +0 0.1170 +0 0.2219 +0 0.0923 +1 0.7924 +0 0.2082 +0 0.1258 +0 0.0876 +0 0.0787 +0 0.0506 +0 0.0691 +0 0.1145 +0 0.0971 +0 0.0613 +0 0.0814 +0 0.1902 +0 0.0727 +0 0.1333 +0 0.1147 +0 0.1516 +0 0.0664 +0 0.0775 +0 0.1281 +0 0.1191 +0 0.2099 +0 0.0677 +0 0.1056 +0 0.1306 +0 0.1825 +0 0.0743 +0 0.0937 +0 0.0514 +0 0.1200 +0 0.0820 +0 0.0575 +0 0.1399 +0 0.1428 +0 0.1939 +0 0.2284 +0 0.0969 +0 0.1130 +0 0.0632 +0 0.1001 +0 0.0782 +0 0.0688 +0 0.2024 +0 0.0872 +0 0.1252 +0 0.1359 +0 0.0490 +1 0.8140 +0 0.1062 +0 0.0512 +0 0.2907 +0 0.2104 +0 0.0906 +0 0.0446 +0 0.0479 +0 0.2468 +0 0.1615 +0 0.0866 +0 0.1886 +0 0.1273 +0 0.0470 +0 0.1979 +0 0.1063 +0 0.0350 +0 0.2634 +0 0.1175 +0 0.3783 +0 0.0784 +0 0.1153 +0 0.1426 +0 0.0659 +0 0.0942 +0 0.1688 +1 0.7638 +0 0.0650 +0 0.0997 +0 0.1651 +0 0.1017 +0 0.1177 +0 0.0434 +0 0.0869 +0 0.0608 +0 0.0894 +0 0.1519 +0 0.1909 +0 0.0565 +0 0.2167 +0 0.1395 +0 0.0709 +0 0.1139 +0 0.0526 +0 0.1407 +1 0.8485 +0 0.1028 +0 0.1187 +0 0.2953 +0 0.1545 +0 0.0928 +0 0.0406 +0 0.1879 +0 0.0615 +0 0.0820 +0 0.0843 +0 0.1412 +0 0.0523 +0 0.0873 +0 0.0903 +0 0.0711 +0 0.1771 +0 0.0628 +0 0.5880 +0 0.1243 +0 0.1316 +0 0.0646 +0 0.0478 +0 0.0849 +0 0.0790 +0 0.0950 +1 0.7619 +0 0.0926 +0 0.1819 +0 0.2910 +0 0.0379 +0 0.2125 +0 0.1544 +0 0.1236 +0 0.1590 +0 0.0800 +0 0.0535 +0 0.0992 +0 0.0398 +0 0.0672 +0 0.1016 +0 0.2370 +0 0.1221 +0 0.0902 +0 0.0800 +0 0.1786 +0 0.5123 +0 0.7427 +0 0.0639 +0 0.3481 +0 0.1083 +0 0.1902 +0 0.2538 +0 0.2097 +0 0.0980 +0 0.1558 +0 0.1568 +0 0.1731 +0 0.1644 +0 0.1576 +0 0.1008 +0 0.0561 +0 0.1936 +0 0.0785 +0 0.1345 +0 0.0814 +0 0.0332 +0 0.0528 +0 0.0914 +0 0.2426 +0 0.0601 +0 0.0888 +0 0.1545 +0 0.0567 +0 0.0403 +0 0.0813 +0 0.0788 +0 0.1369 +0 0.1658 +0 0.0669 +0 0.0568 +0 0.0871 +0 0.3289 +0 0.0732 +0 0.1057 +0 0.0656 +0 0.3166 +0 0.0621 +0 0.0861 +0 0.1104 +0 0.0832 +0 0.0779 +0 0.2009 +0 0.0406 +0 0.0831 +0 0.0632 +1 0.8122 +0 0.0804 +0 0.1200 +0 0.2078 +0 0.0690 +0 0.3532 +0 0.0708 +0 0.0861 +1 0.8227 +0 0.0531 +0 0.0880 +0 0.1606 +0 0.0606 +0 0.0745 +0 0.0453 +0 0.0808 +0 0.0330 +0 0.0355 +0 0.0749 +0 0.1642 +0 0.3654 +0 0.1389 +0 0.4782 +0 0.3337 +0 0.1389 +0 0.2336 +0 0.0413 +0 0.0787 +0 0.0953 +0 0.1160 +0 0.1166 +0 0.1626 +0 0.0577 +0 0.1311 +0 0.0427 +0 0.1265 +0 0.3268 +0 0.0663 +0 0.0651 +0 0.0835 +0 0.0725 +0 0.1671 +0 0.1683 +1 0.7911 +0 0.4804 +0 0.1868 +0 0.1049 +0 0.2375 +0 0.0952 +0 0.2757 +0 0.0474 +0 0.0886 +0 0.1134 +0 0.0754 +0 0.5257 +0 0.3036 +0 0.0996 +0 0.1530 +0 0.0947 +0 0.0475 +0 0.0422 +0 0.0660 +0 0.0930 +0 0.0384 +0 0.2669 +0 0.0605 +0 0.0881 +0 0.1656 +0 0.0671 +0 0.1005 +1 0.8410 +0 0.2353 +0 0.0997 +0 0.3692 +0 0.1520 +0 0.0668 +0 0.1408 +0 0.0828 +0 0.2428 +0 0.1314 +0 0.0687 +0 0.2454 +0 0.1144 +0 0.1527 +0 0.3349 +0 0.0601 +0 0.0644 +0 0.3978 +0 0.3320 +0 0.0388 +0 0.0500 +0 0.2565 +0 0.1694 +0 0.0547 +0 0.2531 +0 0.1147 +0 0.0860 +0 0.1139 +0 0.2656 +0 0.0669 +0 0.0412 +0 0.0509 +0 0.4404 +0 0.0596 +0 0.1326 +0 0.1085 +0 0.1145 +0 0.1435 +0 0.0888 +0 0.2285 +0 0.0764 +0 0.0681 +0 0.0990 +0 0.0944 +0 0.1813 +0 0.1487 +0 0.0936 +0 0.0479 +0 0.1586 +0 0.1261 +0 0.3828 +0 0.0395 +0 0.1152 +0 0.0943 +0 0.1555 +0 0.0346 +0 0.0433 +0 0.1174 +0 0.0500 +0 0.0953 +0 0.1737 +0 0.0978 +0 0.0902 +0 0.1060 +0 0.0857 +0 0.0882 +0 0.1439 +0 0.4322 +0 0.0610 +0 0.5878 +0 0.0874 +0 0.1619 +0 0.0915 +0 0.1468 +0 0.2122 +0 0.1086 +0 0.0797 +0 0.0774 +0 0.0430 +0 0.0625 +0 0.0527 +0 0.0628 +0 0.1395 +0 0.0825 +0 0.1225 +0 0.5452 +0 0.0313 +0 0.3249 +0 0.0578 +0 0.3701 +0 0.1717 +0 0.1012 +0 0.0838 +0 0.2113 +0 0.0588 +0 0.1374 +0 0.2939 +0 0.1106 +0 0.0404 +0 0.0618 +0 0.0439 +0 0.0734 +0 0.0771 +0 0.1822 +0 0.1958 +0 0.1761 +0 0.0564 +0 0.1491 +0 0.1342 +0 0.0578 +0 0.0572 +0 0.1219 +0 0.5167 +1 0.2559 +0 0.1887 +0 0.1145 +0 0.0851 +0 0.1706 +0 0.0551 +0 0.1675 +0 0.0956 +0 0.0569 +0 0.0842 +0 0.1218 +0 0.0715 +0 0.0720 +0 0.0621 +0 0.4252 +0 0.0679 +0 0.0958 +0 0.1285 +0 0.0881 +0 0.0355 +0 0.1235 +0 0.0691 +0 0.1120 +0 0.1366 +0 0.1140 +0 0.0973 +0 0.0697 +0 0.1276 +0 0.0584 +0 0.1252 +0 0.0519 +0 0.1656 +0 0.0784 +0 0.3652 +0 0.0777 +0 0.2121 +0 0.0590 +0 0.1125 +0 0.2845 +0 0.1632 +0 0.1289 +0 0.1907 +0 0.2069 +0 0.1410 +0 0.1322 +0 0.0480 +0 0.0921 +0 0.0596 +0 0.1626 +0 0.2405 +0 0.1426 +0 0.3097 +0 0.0575 +0 0.1407 +0 0.1401 +0 0.1191 +0 0.2256 +0 0.2198 +0 0.1185 +0 0.0496 +0 0.2343 +0 0.0409 +0 0.1127 +0 0.0676 +0 0.1331 +0 0.1697 +0 0.0382 +0 0.1413 +0 0.0915 +0 0.0332 +0 0.1591 +1 0.8047 +0 0.0618 +0 0.3811 +0 0.4550 +0 0.1249 +0 0.2389 +0 0.2746 +0 0.0979 +0 0.0705 +0 0.2089 +0 0.0877 +0 0.0829 +0 0.1030 +0 0.0535 +0 0.1312 +0 0.0588 +0 0.2164 +0 0.0809 +0 0.0907 +0 0.1094 +0 0.0498 +0 0.1306 +0 0.1533 +0 0.0793 +0 0.1190 +0 0.2018 +0 0.0840 +0 0.0994 +0 0.4607 +0 0.1183 +0 0.0757 +0 0.1042 +0 0.3005 +0 0.0977 +0 0.1525 +0 0.1576 +0 0.0321 +0 0.0477 +0 0.1190 +0 0.0734 +0 0.1191 +0 0.2201 +0 0.1033 +0 0.0855 +0 0.5208 +0 0.5718 +0 0.2144 +0 0.0840 +0 0.2307 +0 0.0587 +0 0.0903 +0 0.1676 +0 0.1293 +0 0.0954 +0 0.1579 +0 0.0690 +0 0.1368 +0 0.1673 +0 0.1017 +0 0.1167 +0 0.1317 +0 0.1908 +0 0.1341 +0 0.0691 +0 0.1333 +0 0.1171 +0 0.0429 +0 0.0763 +0 0.1326 +0 0.0792 +0 0.0990 +0 0.0785 +0 0.0667 +0 0.3214 +0 0.1652 +0 0.1697 +0 0.1278 +0 0.0369 +0 0.0915 +0 0.1258 +0 0.1782 +0 0.1229 +0 0.1111 +0 0.0642 +0 0.0524 +0 0.0742 +0 0.0827 +0 0.0693 +0 0.0726 +0 0.1237 +0 0.1116 +0 0.0430 +0 0.0625 +0 0.2318 +0 0.1252 +0 0.4075 +0 0.0818 +0 0.3045 +0 0.0749 +0 0.0583 +0 0.0596 +0 0.0676 +0 0.0727 +0 0.1160 +0 0.4263 +0 0.2191 +0 0.1198 +0 0.0599 +1 0.7640 +0 0.2006 +0 0.0559 +0 0.0820 +0 0.3277 +0 0.1108 +1 0.8289 +0 0.0581 +0 0.0899 +0 0.6971 +0 0.2163 +0 0.0856 +0 0.0773 +0 0.0801 +0 0.0718 +0 0.1680 +0 0.3071 +0 0.0770 +0 0.0904 +0 0.1084 +0 0.0728 +0 0.0963 +0 0.0468 +0 0.0419 +0 0.1398 +0 0.0836 +0 0.0876 +0 0.2302 +0 0.2939 +0 0.2813 +0 0.2039 +0 0.1082 +0 0.0708 +0 0.0577 +0 0.1373 +0 0.0743 +0 0.3090 +0 0.0860 +0 0.1410 +0 0.2258 +0 0.2782 +0 0.0811 +0 0.0544 +0 0.0594 +0 0.1113 +0 0.1451 +0 0.0976 +0 0.0504 +0 0.0526 +0 0.1890 +0 0.1248 +0 0.0992 +0 0.1775 +0 0.1121 +0 0.3043 +0 0.0480 +0 0.1052 +0 0.1483 +0 0.0809 +0 0.1169 +0 0.0877 +0 0.1160 +0 0.0786 +0 0.1217 +0 0.1675 +0 0.2090 +0 0.5001 +0 0.0960 +0 0.1378 +0 0.1034 +0 0.1877 +0 0.2769 +0 0.1268 +0 0.0972 +0 0.1118 +0 0.1227 +0 0.0674 +0 0.0933 +0 0.1678 +0 0.4430 +0 0.1345 +0 0.0686 +0 0.1889 +0 0.4364 +0 0.0887 +0 0.0774 +0 0.0808 +0 0.1513 +0 0.0429 +0 0.0904 +0 0.0724 +0 0.4545 +0 0.0795 +0 0.0561 +0 0.1415 +0 0.3000 +0 0.0843 +0 0.0545 +0 0.1994 +0 0.1210 +1 0.8260 +0 0.0847 +0 0.0856 +0 0.0663 +0 0.0410 +0 0.1600 +0 0.0918 +0 0.0937 +0 0.0780 +0 0.2556 +0 0.0310 +0 0.2726 +0 0.0782 +0 0.1232 +0 0.0910 +0 0.0702 +0 0.0802 +0 0.0451 +0 0.0749 +0 0.0469 +0 0.1131 +0 0.5301 +0 0.0567 +0 0.0946 +0 0.1069 +0 0.0726 +0 0.1008 +0 0.3861 +0 0.0684 +0 0.2049 +0 0.0481 +0 0.1060 +0 0.0730 +0 0.0768 +0 0.1662 +0 0.0388 +0 0.0664 +0 0.0459 +0 0.1631 +0 0.1721 +0 0.1703 +0 0.1313 +0 0.0793 +0 0.1423 +0 0.0611 +1 0.7654 +0 0.1663 +0 0.0622 +0 0.1521 +0 0.1200 +0 0.4204 +0 0.0894 +0 0.0991 +0 0.4060 +0 0.0660 +0 0.0648 +0 0.0453 +0 0.0717 +0 0.0813 +0 0.2234 +0 0.6359 +0 0.1951 +0 0.1507 +0 0.0684 +0 0.2308 +0 0.0661 +0 0.1708 +0 0.7434 +0 0.1078 +0 0.0786 +0 0.0668 +0 0.0971 +1 0.8533 +0 0.1225 +0 0.0646 +0 0.0667 +0 0.1613 +0 0.4557 +0 0.0921 +0 0.2062 +0 0.1190 +0 0.4033 +0 0.0899 +0 0.1203 +0 0.0434 +0 0.1410 +0 0.1602 +1 0.8320 +0 0.0757 +0 0.0847 +0 0.0526 +0 0.1261 +0 0.1036 +0 0.0698 +0 0.0529 +0 0.0899 +0 0.2120 +0 0.1048 +0 0.0761 +0 0.2886 +0 0.1184 +0 0.0671 +0 0.1687 +0 0.3248 +0 0.0947 +0 0.0561 +0 0.2654 +0 0.2339 +0 0.0982 +0 0.1362 +0 0.0844 +0 0.0536 +0 0.2344 +0 0.0981 +0 0.0500 +0 0.0690 +0 0.1073 +0 0.0921 +0 0.0343 +0 0.1148 +0 0.1303 +0 0.0945 +0 0.1219 +0 0.0883 +0 0.0526 +0 0.1073 +0 0.0722 +0 0.2305 +0 0.2401 +0 0.0997 +0 0.1527 +0 0.0694 +0 0.0673 +0 0.1633 +0 0.0491 +0 0.0942 +0 0.1256 +0 0.1386 +0 0.1316 +0 0.0415 +0 0.1077 +0 0.0615 +0 0.0665 +0 0.1018 +0 0.1638 +0 0.0375 +0 0.1166 +0 0.2390 +0 0.2049 +0 0.0474 +0 0.0422 +0 0.2541 +0 0.0740 +0 0.1869 +0 0.0804 +0 0.0965 +0 0.0775 +0 0.0349 +0 0.2165 +0 0.0764 +0 0.3346 +0 0.1389 +0 0.1554 +0 0.0815 +0 0.0805 +0 0.0457 +0 0.3169 +0 0.0333 +0 0.2607 +0 0.2763 +0 0.0706 +0 0.0845 +0 0.0550 +0 0.2759 +0 0.0415 +0 0.0701 +0 0.1265 +0 0.0555 +0 0.1567 +0 0.1406 +0 0.0856 +1 0.7903 +0 0.1244 +0 0.0603 +0 0.0750 +0 0.0782 +0 0.0890 +0 0.0693 +0 0.0400 +0 0.0755 +0 0.3807 +0 0.0775 +0 0.0640 +0 0.2618 +0 0.0702 +0 0.0963 +0 0.1115 +0 0.0834 +0 0.0978 +0 0.1332 +0 0.0983 +0 0.0847 +0 0.1281 +0 0.0975 +0 0.1681 +0 0.0621 +0 0.1533 +0 0.1066 +0 0.0676 +0 0.0960 +0 0.2532 +0 0.0661 +0 0.1093 +0 0.0496 +0 0.2788 +0 0.0553 +0 0.2396 +0 0.0367 +0 0.1363 +0 0.2714 +0 0.0952 +0 0.0490 +0 0.0568 +0 0.0951 +0 0.1471 +0 0.2020 +0 0.2978 +0 0.1926 +0 0.1236 +0 0.1215 +0 0.0787 +0 0.1217 +0 0.0468 +0 0.0724 +0 0.1320 +0 0.0606 +0 0.1287 +0 0.1410 +0 0.1170 +0 0.1526 +0 0.0689 +0 0.0857 +0 0.2284 +0 0.1506 +0 0.1023 +0 0.1071 +0 0.1537 +0 0.1256 +0 0.0505 +0 0.3303 +0 0.2533 +0 0.2104 +0 0.1034 +0 0.5284 +0 0.1090 +0 0.3504 +0 0.0974 +0 0.0767 +0 0.2642 +0 0.7311 +0 0.3006 +0 0.1748 +0 0.0731 +0 0.0711 +0 0.0814 +0 0.1123 +0 0.2650 +1 0.8222 +1 0.8261 +0 0.1694 +0 0.2397 +0 0.1560 +0 0.0455 +0 0.0947 +0 0.1444 +0 0.1673 +1 0.8037 +0 0.0745 +0 0.0563 +0 0.5166 +0 0.3679 +0 0.1273 +0 0.1335 +0 0.3531 +0 0.0553 +0 0.0449 +0 0.0680 +0 0.0933 +0 0.0495 +1 0.8048 +0 0.1346 +0 0.3385 +0 0.1562 +0 0.0417 +0 0.0849 +0 0.1019 +0 0.0753 +0 0.1755 +0 0.3033 +0 0.0332 +0 0.1136 +0 0.1464 +0 0.2075 +0 0.3068 +0 0.0982 +0 0.1012 +0 0.2380 +0 0.5328 +0 0.1453 +0 0.7462 +0 0.0451 +0 0.0493 +0 0.1423 +0 0.0748 +0 0.0837 +0 0.2837 +0 0.0632 +0 0.0978 +0 0.0548 +0 0.1017 +0 0.1280 +0 0.0502 +0 0.2075 +0 0.0626 +0 0.0977 +0 0.1784 +0 0.0838 +0 0.2742 +0 0.5214 +0 0.1603 +0 0.2651 +0 0.1062 +0 0.3538 +0 0.1963 +0 0.0536 +0 0.1122 +0 0.0973 +0 0.0805 +0 0.1213 +0 0.0653 +1 0.7622 +0 0.2300 +0 0.0519 +0 0.0726 +0 0.1123 +0 0.1600 +0 0.2105 +0 0.0371 +0 0.0701 +0 0.2467 +1 0.7653 +0 0.3089 +0 0.1275 +0 0.0566 +0 0.0489 +0 0.1940 +0 0.0894 +0 0.0919 +0 0.3381 +0 0.0894 +0 0.2881 +0 0.2087 +0 0.1238 +0 0.0478 +0 0.1577 +0 0.1246 +0 0.1973 +0 0.1156 +0 0.1186 +0 0.1006 +0 0.1772 +0 0.1885 +0 0.1781 +0 0.1010 +0 0.0692 +0 0.0624 +0 0.1745 +0 0.1869 +0 0.0996 +0 0.0825 +0 0.0553 +0 0.0463 +0 0.0598 +0 0.1285 +1 0.8583 +0 0.2246 +0 0.0925 +0 0.1231 +0 0.0646 +0 0.0620 +0 0.0356 +0 0.2468 +0 0.0412 +0 0.1149 +0 0.0665 +0 0.0673 +0 0.1195 +0 0.0453 +0 0.0865 +0 0.0942 +0 0.0494 +0 0.0972 +0 0.0880 +0 0.0618 +0 0.0828 +0 0.1017 +0 0.0837 +0 0.0400 +0 0.0547 +0 0.1972 +0 0.0604 +0 0.1003 +0 0.4522 +0 0.2205 +0 0.1282 +0 0.2916 +0 0.1191 +0 0.0488 +0 0.0543 +0 0.0879 +0 0.1949 +0 0.0981 +0 0.0530 +0 0.1017 +0 0.0735 +0 0.2201 +0 0.1927 +0 0.1079 +0 0.0639 +0 0.0970 +0 0.0798 +0 0.1447 +0 0.4377 +0 0.1554 +0 0.0806 +0 0.0812 +0 0.0859 +0 0.2264 +0 0.1437 +0 0.0688 +0 0.1178 +0 0.0582 +0 0.0675 +0 0.1166 +0 0.0861 +0 0.2067 +0 0.0990 +0 0.0543 +0 0.1746 +0 0.1170 +0 0.0719 +0 0.0610 +0 0.0817 +0 0.1231 +0 0.0881 +0 0.0700 +0 0.0605 +0 0.1210 +0 0.1167 +0 0.1431 +0 0.0630 +0 0.1064 +0 0.1863 +0 0.2583 +0 0.1367 +0 0.1339 +0 0.0512 +0 0.0681 +0 0.1760 +0 0.1029 +0 0.0961 +0 0.1234 +0 0.1036 +0 0.1145 +0 0.0940 +0 0.4299 +0 0.4538 +0 0.0810 +0 0.0628 +0 0.1344 +0 0.1372 +0 0.1436 +0 0.2107 +0 0.1016 +0 0.1622 +0 0.1739 +0 0.1430 +0 0.0417 +0 0.3706 +0 0.0824 +0 0.1647 +0 0.1178 +0 0.0595 +0 0.1022 +0 0.0597 +0 0.1580 +0 0.1893 +1 0.7518 +0 0.2522 +0 0.0960 +0 0.0907 +0 0.0752 +0 0.0559 +0 0.0513 +0 0.0858 +0 0.0625 +0 0.0936 +0 0.0899 +0 0.0323 +0 0.1005 +0 0.1767 +0 0.1138 +0 0.1229 +0 0.0423 +0 0.0911 +0 0.3494 +0 0.1128 +0 0.0452 +0 0.0533 +0 0.0385 +0 0.2137 +0 0.1315 +0 0.0663 +0 0.2567 +0 0.1132 +0 0.2594 +0 0.1669 +0 0.0711 +0 0.1034 +0 0.0998 +0 0.0788 +0 0.1106 +0 0.0610 +0 0.1962 +0 0.1314 +0 0.0701 +0 0.1119 +0 0.0484 +0 0.1611 +0 0.2497 +0 0.0512 +0 0.0931 +0 0.0796 +0 0.0659 +0 0.1814 +0 0.0688 +0 0.0510 +0 0.3437 +0 0.2797 +0 0.0344 +0 0.1265 +0 0.2121 +0 0.0627 +0 0.1073 +0 0.7037 +0 0.2040 +0 0.1144 +0 0.0574 +0 0.0927 +0 0.5173 +0 0.1793 +0 0.0976 +0 0.1250 +0 0.1110 +0 0.0985 +0 0.1251 +0 0.1561 +0 0.0820 +0 0.1017 +0 0.0696 +0 0.1488 +0 0.1972 +0 0.1222 +0 0.0890 +0 0.1201 +0 0.0659 +0 0.5876 +0 0.1950 +0 0.1943 +0 0.0749 +0 0.1498 +0 0.0913 +0 0.1806 +0 0.0573 +0 0.0833 +0 0.2387 +0 0.1094 +0 0.1438 +0 0.0663 +0 0.5286 +0 0.0686 +0 0.0967 +0 0.0805 +0 0.1460 +0 0.3024 +0 0.1882 +0 0.2397 +0 0.1801 +0 0.0524 +0 0.3208 +0 0.1247 +0 0.1396 +0 0.0622 +0 0.0370 +0 0.1661 +0 0.1967 +0 0.0716 +0 0.1640 +0 0.0803 +0 0.3212 +0 0.1233 +0 0.0416 +0 0.1115 +0 0.0630 +0 0.1430 +0 0.2350 +0 0.0935 +0 0.1241 +0 0.6836 +0 0.1611 +0 0.2097 +0 0.1057 +0 0.0417 +0 0.1695 +0 0.0877 +0 0.0614 +0 0.1141 +0 0.0510 +0 0.0577 +0 0.0364 +0 0.0970 +0 0.2756 +0 0.2273 +0 0.0685 +0 0.0510 +0 0.0515 +0 0.2455 +0 0.2841 +0 0.1813 +0 0.6703 +0 0.1526 +0 0.3571 +0 0.0409 +0 0.2176 +0 0.1583 +0 0.1777 +0 0.3408 +0 0.0861 +0 0.0504 +0 0.0601 +0 0.7343 +0 0.1234 +0 0.0868 +0 0.0644 +0 0.1754 +0 0.0536 +0 0.1258 +0 0.1034 +0 0.1748 +0 0.1006 +0 0.0795 +0 0.0961 +0 0.0694 +0 0.0764 +0 0.0862 +0 0.6543 +0 0.6105 +0 0.0917 +0 0.0622 +0 0.1496 +0 0.0639 +0 0.1591 +0 0.0671 +0 0.0931 +0 0.1015 +0 0.1055 +0 0.0546 +0 0.1084 +0 0.0505 +0 0.0555 +0 0.1027 +0 0.4341 +0 0.0901 +0 0.1680 +0 0.0949 +0 0.0678 +0 0.0851 +0 0.1790 +0 0.2435 +0 0.3402 +0 0.0578 +0 0.1352 +0 0.0848 +0 0.1181 +0 0.0728 +0 0.0692 +0 0.3942 +0 0.1154 +0 0.0567 +0 0.0688 +1 0.7895 +0 0.0814 +0 0.0666 +0 0.1489 +0 0.0884 +0 0.0826 +0 0.0740 +0 0.0696 +0 0.1308 +0 0.0864 +0 0.0865 +0 0.0885 +0 0.1564 +0 0.0815 +0 0.1867 +0 0.1150 +0 0.7132 +0 0.1894 +0 0.0933 +0 0.0754 +0 0.0686 +0 0.1434 +0 0.0914 +0 0.6517 +0 0.0917 +0 0.1092 +0 0.3355 +0 0.1301 +0 0.0644 +0 0.0780 +0 0.2269 +0 0.1367 +0 0.1150 +0 0.0791 +0 0.0995 +0 0.1865 +0 0.6204 +0 0.1610 +0 0.0461 +0 0.0420 +0 0.2176 +0 0.1115 +0 0.1424 +0 0.1869 +0 0.1746 +0 0.1121 +0 0.0772 +0 0.1046 +0 0.1058 +0 0.0793 +0 0.3698 +0 0.0415 +0 0.0794 +0 0.2247 +0 0.0392 +0 0.0509 +0 0.0819 +0 0.1730 +0 0.1166 +0 0.1065 +0 0.0686 +0 0.0953 +0 0.1483 +0 0.0914 +0 0.0848 +0 0.0912 +0 0.0862 +0 0.2423 +0 0.1240 +0 0.0483 +0 0.3137 +0 0.0550 +0 0.1694 +0 0.3500 +0 0.0921 +0 0.0628 +0 0.0380 +0 0.1030 +0 0.7237 +0 0.0542 +0 0.0788 +0 0.3066 +0 0.1006 +0 0.0513 +0 0.0848 +0 0.0585 +0 0.2799 +0 0.1912 +0 0.1678 +0 0.4298 +0 0.1775 +0 0.1177 +0 0.0753 +0 0.0793 +0 0.0573 +0 0.1526 +0 0.2282 +0 0.0407 +0 0.0925 +0 0.0862 +0 0.0893 +0 0.1742 +0 0.0472 +0 0.2972 +0 0.1051 +0 0.0965 +0 0.2472 +0 0.1018 +0 0.0655 +0 0.0506 +0 0.5580 +0 0.1957 +0 0.1071 +0 0.3787 +0 0.2032 +0 0.0833 +0 0.0868 +0 0.0958 +0 0.1141 +0 0.1109 +0 0.0718 +0 0.1496 +0 0.6936 +0 0.0825 +0 0.0739 +0 0.0657 +0 0.0372 +0 0.0574 +0 0.0793 +0 0.0739 +0 0.1150 +0 0.1184 +0 0.1411 +0 0.0427 +0 0.0704 +0 0.0720 +0 0.0536 +0 0.1932 +0 0.1287 +0 0.2000 +0 0.1096 +0 0.2352 +0 0.0734 +0 0.0724 +0 0.0718 +0 0.3455 +0 0.2047 +0 0.1777 +0 0.2139 +0 0.1483 +0 0.1697 +0 0.2828 +0 0.1232 +0 0.2440 +0 0.0998 +0 0.1188 +0 0.4288 +0 0.0933 +0 0.0771 +0 0.2364 +0 0.1021 +0 0.0662 +0 0.6597 +0 0.0642 +0 0.1207 +0 0.1216 +0 0.0539 +0 0.0910 +0 0.2003 +0 0.0532 +0 0.0503 +0 0.0486 +0 0.0937 +0 0.2741 +0 0.0468 +0 0.1283 +0 0.1394 +0 0.1525 +0 0.1260 +0 0.1755 +0 0.1812 +0 0.0593 +0 0.0375 +0 0.2204 +0 0.1501 +0 0.0766 +0 0.1357 +0 0.0791 +0 0.1231 +0 0.0528 +0 0.1873 +0 0.0474 +0 0.0968 +0 0.0840 +0 0.0954 +0 0.0765 +0 0.0810 +0 0.1695 +0 0.1302 +0 0.0431 +0 0.1002 +0 0.1964 +0 0.0875 +0 0.0619 +1 0.8135 +0 0.1726 +0 0.1855 +0 0.0602 +0 0.1194 +0 0.0988 +0 0.0905 +0 0.0442 +0 0.0762 +0 0.0604 +0 0.0655 +0 0.0679 +0 0.0460 +0 0.0714 +0 0.2266 +0 0.0878 +0 0.1201 +0 0.4335 +0 0.0892 +0 0.0543 +0 0.1758 +0 0.0644 +0 0.0594 +0 0.3377 +1 0.8323 +0 0.2044 +0 0.1458 +0 0.0399 +0 0.0918 +0 0.2377 +0 0.2126 +1 0.7719 +0 0.0883 +0 0.1566 +0 0.0789 +0 0.1213 +0 0.1737 +0 0.0466 +0 0.1012 +0 0.0419 +0 0.0393 +0 0.1015 +0 0.0363 +0 0.0470 +0 0.0843 +0 0.1121 +0 0.0844 +0 0.0320 +0 0.1404 +0 0.0538 +0 0.0541 +0 0.0410 +0 0.0718 +0 0.2146 +0 0.2006 +0 0.2555 +0 0.0738 +0 0.0834 +1 0.8663 +0 0.1647 +0 0.1184 +0 0.1240 +0 0.0614 +0 0.0388 +0 0.0972 +0 0.0777 +0 0.2789 +0 0.1007 +0 0.0746 +0 0.1626 +0 0.0574 +0 0.1927 +0 0.1512 +0 0.0991 +1 0.8256 +0 0.0362 +0 0.0511 +0 0.5996 +0 0.2223 +0 0.1205 +0 0.0390 +0 0.1189 +0 0.1205 +0 0.1845 +0 0.2158 +0 0.3725 +0 0.1193 +0 0.3217 +0 0.1168 +0 0.0789 +0 0.0548 +0 0.0613 +0 0.0704 +0 0.0812 +0 0.0569 +0 0.0718 +0 0.6957 +0 0.0546 +0 0.1844 +0 0.1060 +0 0.1085 +0 0.1180 +0 0.2617 +0 0.1227 +0 0.0501 +0 0.0593 +0 0.3601 +0 0.1071 +0 0.0829 +0 0.0548 +0 0.0778 +0 0.0523 +0 0.2561 +0 0.0870 +0 0.1980 +0 0.3692 +0 0.0845 +0 0.0916 +0 0.1248 +0 0.3202 +0 0.0871 +0 0.2055 +0 0.1177 +0 0.0924 +0 0.1050 +0 0.1694 +0 0.0551 +0 0.1389 +0 0.0914 +0 0.1028 +0 0.0746 +0 0.0843 +0 0.1898 +0 0.1902 +0 0.0577 +1 0.7710 +0 0.0867 +0 0.1019 +0 0.0703 +0 0.1510 +0 0.0763 +0 0.0715 +0 0.0846 +0 0.1180 +0 0.2258 +0 0.0752 +0 0.0777 +0 0.0867 +0 0.0635 +0 0.1503 +0 0.0946 +0 0.2869 +0 0.0313 +0 0.0713 +0 0.1629 +0 0.0497 +0 0.0667 +0 0.0972 +0 0.0856 +0 0.0867 +0 0.1035 +0 0.0764 +0 0.0610 +0 0.1679 +0 0.0873 +0 0.2882 +0 0.1823 +0 0.2110 +0 0.0740 +0 0.1430 +1 0.8004 +0 0.2652 +0 0.1229 +0 0.0942 +0 0.1292 +0 0.0967 +0 0.2725 +0 0.1809 +0 0.1363 +0 0.1605 +0 0.1946 +0 0.0757 +0 0.1131 +0 0.4335 +0 0.1152 +0 0.2516 +0 0.0738 +0 0.0924 +0 0.3783 +0 0.0650 +0 0.3784 +0 0.1688 +0 0.5098 +0 0.0594 +0 0.1215 +0 0.0571 +0 0.0622 +0 0.0980 +0 0.1179 +0 0.1641 +0 0.3284 +0 0.3189 +1 0.8597 +0 0.0515 +0 0.0649 +0 0.1298 +0 0.1868 +0 0.0332 +0 0.0713 +0 0.0423 +0 0.1336 +0 0.1892 +0 0.4790 +1 0.8565 +0 0.7393 +0 0.1881 +0 0.1243 +1 0.7519 +0 0.0756 +0 0.0688 +0 0.1249 +0 0.0969 +0 0.0470 +0 0.0719 +0 0.1739 +0 0.4922 +0 0.1956 +0 0.1048 +0 0.0899 +0 0.0475 +0 0.0518 +1 0.7968 +0 0.0794 +0 0.0690 +0 0.0853 +0 0.0777 +0 0.4899 +0 0.1112 +0 0.0681 +0 0.1108 +0 0.0956 +0 0.5309 +0 0.1345 +0 0.0316 +0 0.1237 +0 0.1074 +0 0.7443 +0 0.0788 +0 0.2041 +0 0.0628 +1 0.8376 +0 0.5288 +0 0.2727 +0 0.1745 +0 0.2833 +0 0.0553 +0 0.1731 +0 0.1536 +0 0.1266 +0 0.1116 +0 0.0687 +0 0.0450 +0 0.0662 +0 0.0541 +0 0.0657 +0 0.1145 +0 0.1434 +0 0.0783 +0 0.1236 +0 0.1106 +0 0.1970 +0 0.0675 +0 0.2747 +0 0.0527 +0 0.0380 +0 0.1285 +0 0.0979 +0 0.4198 +0 0.0379 +0 0.0445 +0 0.1204 +0 0.0372 +0 0.0676 +0 0.0627 +0 0.1058 +0 0.2439 +0 0.0956 +0 0.1494 +0 0.1606 +0 0.0783 +0 0.0686 +0 0.0781 +0 0.0633 +0 0.0463 +0 0.0355 +0 0.1246 +0 0.0897 +0 0.0842 +0 0.0727 +0 0.1339 +0 0.1097 +0 0.2280 +0 0.0944 +0 0.0531 +0 0.0471 +0 0.0619 +0 0.1458 +0 0.1645 +0 0.0900 +0 0.0843 +0 0.1735 +0 0.0970 +0 0.0979 +0 0.1127 +0 0.1719 +0 0.0923 +0 0.3509 +0 0.0669 +0 0.3440 +0 0.4245 +0 0.0446 +0 0.1801 +0 0.5333 +0 0.0682 +0 0.1012 +0 0.0973 +0 0.0886 +0 0.0654 +0 0.2729 +0 0.0682 +0 0.1986 +0 0.2450 +0 0.1021 +0 0.0621 +0 0.0611 +0 0.1649 +0 0.1471 +0 0.1041 +0 0.1055 +0 0.0880 +0 0.0705 +1 0.8054 +1 0.8360 +0 0.1361 +0 0.0859 +0 0.2232 +0 0.3291 +0 0.1319 +0 0.2265 +0 0.0748 +0 0.0697 +0 0.0663 +0 0.2354 +0 0.0563 +0 0.1223 +0 0.0793 +0 0.0356 +0 0.2454 +0 0.1748 +0 0.1038 +0 0.0781 +0 0.0811 +0 0.1231 +0 0.0912 +0 0.1100 +0 0.0643 +0 0.0970 +0 0.1011 +0 0.0661 +0 0.1316 +0 0.1098 +0 0.1531 +0 0.0442 +0 0.2862 +0 0.1887 +0 0.0736 +0 0.0526 +0 0.0558 +0 0.1221 +0 0.2696 +0 0.1391 +0 0.3138 +0 0.1659 +0 0.2608 +0 0.1496 +0 0.0942 +0 0.0645 +0 0.0704 +0 0.0625 +0 0.0921 +0 0.0944 +0 0.1966 +0 0.1340 +0 0.0857 +0 0.1442 +1 0.7505 +0 0.0489 +0 0.0615 +0 0.0709 +0 0.0617 +0 0.1708 +0 0.1181 +0 0.0692 +0 0.0614 +0 0.0356 +0 0.1305 +0 0.0720 +0 0.1632 +0 0.1094 +0 0.0527 +0 0.0464 +0 0.0555 +0 0.1028 +0 0.1066 +0 0.0629 +0 0.3056 +0 0.0941 +0 0.0724 +0 0.1408 +0 0.0887 +0 0.1415 +0 0.0657 +0 0.0771 +0 0.0931 +0 0.1420 +0 0.1395 +0 0.0759 +0 0.0371 +0 0.0852 +0 0.1545 +0 0.1181 +0 0.0476 +0 0.1430 +0 0.0533 +0 0.1694 +0 0.0830 +1 0.8151 +0 0.1005 +0 0.1129 +0 0.1409 +0 0.1420 +0 0.0587 +0 0.3064 +0 0.2282 +1 0.7904 +0 0.1332 +0 0.0480 +0 0.1350 +0 0.0599 +0 0.0526 +0 0.0989 +0 0.1528 +0 0.3282 +0 0.0813 +0 0.2191 +0 0.0438 +0 0.1279 +0 0.0597 +0 0.2054 +0 0.1483 +0 0.0753 +0 0.1324 +0 0.1279 +0 0.0609 +0 0.1231 +0 0.3808 +0 0.1477 +0 0.0831 +0 0.2119 +0 0.0732 +0 0.0796 +0 0.2531 +0 0.1164 +0 0.1011 +0 0.1844 +0 0.0753 +0 0.0622 +0 0.1933 +0 0.0876 +0 0.0551 +0 0.0997 +0 0.0716 +0 0.0991 +0 0.0684 +0 0.1427 +0 0.0806 +0 0.0726 +0 0.0458 +0 0.1821 +0 0.0755 +0 0.0787 +0 0.0587 +0 0.0960 +0 0.0657 +0 0.1082 +0 0.1164 +0 0.0397 +0 0.2073 +0 0.1119 +0 0.1155 +1 0.8458 +0 0.0598 +0 0.0969 +0 0.0962 +0 0.0575 +0 0.0437 +0 0.1344 +0 0.2976 +0 0.0813 +0 0.1586 +0 0.1207 +0 0.0709 +0 0.0930 +0 0.0625 +0 0.0719 +0 0.1243 +0 0.1066 +0 0.1909 +0 0.0381 +0 0.0580 +0 0.0937 +0 0.0615 +0 0.0860 +0 0.0562 +0 0.2582 +0 0.1319 +0 0.0537 +0 0.1004 +0 0.2464 +0 0.5212 +0 0.1025 +0 0.1777 +0 0.0841 +0 0.1762 +0 0.0937 +0 0.2135 +0 0.1904 +0 0.0529 +1 0.7661 +0 0.1587 +0 0.0500 +0 0.0626 +0 0.0404 +0 0.1281 +0 0.2087 +0 0.0584 +0 0.1133 +0 0.0825 +0 0.1120 +0 0.0914 +0 0.1486 +0 0.0322 +0 0.0907 +0 0.1006 +0 0.1263 +0 0.1449 +0 0.0665 +0 0.0808 +0 0.0582 +0 0.1069 +0 0.3335 +0 0.0353 +0 0.0988 +0 0.1119 +0 0.0558 +0 0.0543 +0 0.1223 +0 0.1050 +0 0.0619 +0 0.1357 +0 0.0733 +0 0.1598 +0 0.2059 +0 0.1382 +0 0.1015 +0 0.4630 +0 0.1111 +0 0.0774 +0 0.1507 +0 0.2398 +0 0.1377 +0 0.0568 +0 0.1074 +0 0.0909 +0 0.1142 +0 0.3650 +0 0.2062 +0 0.1061 +0 0.1208 +1 0.7762 +0 0.0972 +0 0.1562 +0 0.1605 +0 0.0846 +0 0.0729 +0 0.4156 +1 0.8033 +0 0.1142 +0 0.1432 +0 0.5008 +0 0.1225 +0 0.0631 +0 0.2716 +0 0.1018 +0 0.0314 +0 0.0898 +0 0.1768 +0 0.0631 +0 0.1363 +0 0.1137 +0 0.1443 +0 0.2470 +0 0.1341 +0 0.1422 +0 0.0701 +0 0.0633 +0 0.1572 +0 0.2197 +0 0.0832 +0 0.0651 +0 0.0545 +0 0.0719 +0 0.0782 +0 0.3969 +0 0.3007 +0 0.2004 +0 0.1011 +0 0.0965 +0 0.0480 +0 0.1038 +0 0.1330 +0 0.0660 +0 0.0679 +0 0.1027 +0 0.1011 +0 0.5850 +0 0.1293 +0 0.0839 +0 0.1279 +0 0.2377 +0 0.1017 +0 0.7159 +0 0.0400 +0 0.0880 +0 0.2186 +0 0.0684 +0 0.0798 +0 0.0827 +0 0.2767 +0 0.1038 +0 0.0577 +0 0.1774 +0 0.3124 +0 0.1527 +0 0.0453 +0 0.4078 +0 0.1059 +0 0.0617 +1 0.8657 +0 0.0416 +0 0.1171 +0 0.1112 +0 0.0278 +0 0.0365 +0 0.1411 +0 0.3279 +0 0.6640 +0 0.0923 +0 0.1139 +0 0.1158 +0 0.4181 +0 0.1048 +0 0.1538 +0 0.4530 +0 0.1345 +0 0.1482 +0 0.1878 +0 0.1202 +0 0.0928 +0 0.0780 +1 0.8499 +0 0.0390 +0 0.1790 +0 0.1076 +0 0.1769 +0 0.0517 +0 0.0835 +0 0.0990 +0 0.0835 +0 0.6460 +0 0.2321 +0 0.4529 +0 0.1675 +0 0.2489 +0 0.0714 +0 0.2052 +0 0.0687 +0 0.1516 +0 0.0703 +0 0.0939 +0 0.1677 +0 0.3827 +0 0.0919 +0 0.1437 +0 0.0900 +1 0.8511 +0 0.1367 +0 0.1552 +0 0.0954 +0 0.2047 +0 0.2001 +1 0.8945 +0 0.1887 +0 0.3517 +0 0.1079 +0 0.0821 +0 0.0718 +0 0.1329 +0 0.1053 +0 0.0456 +0 0.0461 +0 0.2308 +0 0.1198 +0 0.1571 +0 0.0903 +0 0.2841 +0 0.0686 +0 0.0819 +0 0.0911 +0 0.1015 +0 0.0864 +0 0.1049 +0 0.1140 +0 0.1173 +0 0.1389 +0 0.1139 +0 0.0927 +0 0.1911 +0 0.0755 +0 0.0566 +0 0.0626 +0 0.0614 +0 0.0993 +0 0.0574 +0 0.0918 +0 0.0683 +0 0.0496 +0 0.1248 +0 0.1560 +0 0.3406 +0 0.1636 +0 0.2490 +0 0.1309 +0 0.1533 +0 0.6130 +0 0.0748 +0 0.2571 +0 0.1688 +0 0.0656 +0 0.1725 +0 0.0741 +0 0.6636 +0 0.2181 +0 0.0672 +0 0.1912 +0 0.1677 +0 0.1177 +0 0.0716 +0 0.0696 +0 0.0967 +0 0.2499 +0 0.6372 +0 0.0600 +0 0.1323 +0 0.0557 +0 0.0463 +0 0.1106 +0 0.0610 +0 0.0716 +0 0.0506 +0 0.0873 +0 0.0683 +0 0.1768 +0 0.0511 +0 0.0915 +0 0.2510 +0 0.0524 +0 0.0447 +0 0.1156 +0 0.1382 +0 0.1473 +0 0.2465 +0 0.3372 +0 0.0804 +0 0.2306 +0 0.0954 +0 0.0957 +0 0.0949 +0 0.1006 +0 0.0688 +0 0.0603 +0 0.0631 +0 0.1232 +0 0.0734 +0 0.3505 +0 0.1383 +0 0.0659 +0 0.1452 +0 0.0670 +0 0.0942 +0 0.0681 +0 0.1442 +0 0.0861 +0 0.0656 +0 0.1884 +0 0.0583 +0 0.1302 +0 0.0553 +0 0.0560 +0 0.0808 +0 0.1427 +0 0.1141 +0 0.0937 +0 0.1080 +0 0.1339 +0 0.0496 +0 0.0902 +0 0.0806 +0 0.0948 +0 0.0825 +0 0.0880 +0 0.5762 +0 0.2854 +0 0.1956 +0 0.3474 +0 0.5228 +0 0.0581 +0 0.2865 +0 0.1627 +0 0.0671 +0 0.0680 +0 0.0694 +0 0.3133 +0 0.1550 +0 0.0930 +0 0.3084 +0 0.0700 +0 0.0581 +0 0.0334 +0 0.0797 +0 0.2171 +0 0.1045 +0 0.5617 +0 0.2172 +0 0.0882 +0 0.0600 +0 0.0540 +0 0.0799 +0 0.1082 +0 0.1827 +0 0.0576 +0 0.1387 +0 0.1772 +0 0.1618 +0 0.0353 +0 0.1706 +0 0.2755 +0 0.1245 +0 0.0646 +0 0.1572 +0 0.0664 +0 0.3232 +0 0.3807 +0 0.1390 +0 0.0483 +0 0.0749 +0 0.2176 +0 0.4434 +0 0.0925 +0 0.1186 +0 0.0837 +0 0.0964 +0 0.0780 +0 0.0771 +0 0.2315 +0 0.1043 +0 0.2431 +0 0.0950 +0 0.1302 +0 0.1495 +0 0.1210 +0 0.3311 +0 0.1865 +0 0.1109 +0 0.2201 +0 0.0882 +0 0.0622 +0 0.1610 +0 0.1670 +0 0.0521 +0 0.4542 +0 0.1051 +0 0.3202 +0 0.0537 +0 0.2042 +0 0.3112 +0 0.0564 +0 0.6966 +0 0.1676 +0 0.1818 +0 0.0940 +0 0.1187 +0 0.0987 +0 0.0709 +0 0.1428 +0 0.2381 +0 0.0889 +0 0.0740 +0 0.0929 +0 0.0331 +0 0.1418 +0 0.0639 +0 0.1191 +0 0.1686 +0 0.2015 +1 0.7834 +0 0.0452 +0 0.0949 +1 0.7547 +0 0.0742 +0 0.1105 +0 0.1498 +0 0.2409 +0 0.1410 +0 0.0947 +0 0.0921 +0 0.2350 +0 0.1911 +0 0.0940 +0 0.0779 +0 0.4651 +0 0.0684 +0 0.4282 +0 0.1073 +0 0.1726 +0 0.1080 +0 0.0617 +0 0.2407 +0 0.1135 +0 0.0746 +0 0.2897 +0 0.1896 +0 0.1002 +0 0.0527 +0 0.4920 +0 0.1808 +0 0.1005 +0 0.0728 +0 0.1420 +0 0.1569 +0 0.1004 +0 0.0822 +0 0.1109 +0 0.0595 +0 0.1188 +0 0.1027 +0 0.0468 +0 0.1843 +0 0.0525 +0 0.0829 +0 0.1103 +0 0.0999 +0 0.0749 +0 0.3203 +0 0.3832 +0 0.1797 +0 0.0550 +0 0.1524 +0 0.1412 +0 0.0747 +0 0.0530 +0 0.2649 +0 0.2597 +0 0.0974 +0 0.1313 +0 0.0925 +0 0.1214 +0 0.0726 +0 0.1917 +0 0.1011 +0 0.2057 +0 0.2275 +0 0.0601 +0 0.2100 +0 0.0725 +0 0.1278 +0 0.0903 +0 0.0896 +0 0.0933 +0 0.0881 +0 0.1400 +0 0.0958 +0 0.1072 +0 0.0755 +0 0.0602 +0 0.1058 +0 0.0623 +0 0.2718 +0 0.1549 +0 0.2109 +0 0.1217 +0 0.1895 +0 0.1234 +0 0.1640 +0 0.0776 +0 0.2500 +0 0.0817 +0 0.1592 +0 0.0646 +0 0.1179 +0 0.2998 +0 0.1984 +0 0.1911 +0 0.0550 +0 0.0911 +0 0.2925 +0 0.0836 +0 0.0830 +0 0.0574 +0 0.1219 +0 0.4742 +0 0.0551 +0 0.1082 +0 0.1454 +0 0.3104 +0 0.0990 +0 0.1137 +0 0.0802 +0 0.0751 +0 0.1354 +0 0.1151 +0 0.0658 +0 0.0565 +0 0.1709 +0 0.1021 +0 0.2020 +0 0.1196 +0 0.2498 +0 0.1119 +0 0.1167 +0 0.1357 +0 0.1795 +0 0.1186 +0 0.0676 +0 0.1030 +0 0.1173 +0 0.2774 +0 0.1188 +0 0.1621 +0 0.1874 +0 0.0737 +0 0.1280 +0 0.1683 +0 0.0858 +0 0.1456 +0 0.2175 +0 0.0565 +0 0.0834 +0 0.1798 +0 0.1373 +0 0.0920 +0 0.0587 +0 0.2408 +0 0.0561 +0 0.0905 +0 0.1378 +0 0.1144 +0 0.0384 +1 0.8450 +0 0.0798 +0 0.1328 +0 0.1181 +0 0.1812 +0 0.1167 +0 0.0495 +0 0.2000 +0 0.3644 +0 0.0819 +0 0.1151 +0 0.0566 +0 0.2397 +0 0.0388 +0 0.3542 +0 0.0864 +0 0.0786 +0 0.4001 +0 0.0767 +0 0.1160 +0 0.3184 +0 0.0986 +0 0.1003 +0 0.1148 +0 0.0924 +0 0.4407 +0 0.1266 +0 0.0847 +0 0.0984 +0 0.2555 +0 0.1919 +0 0.1077 +0 0.3330 +0 0.3066 +0 0.3764 +0 0.0504 +0 0.1630 +0 0.0920 +0 0.1751 +0 0.1321 +0 0.0829 +0 0.0651 +0 0.1646 +0 0.2496 +0 0.2629 +0 0.0514 +0 0.0736 +0 0.2414 +0 0.0751 +0 0.0739 +0 0.0679 +0 0.0952 +0 0.6802 +0 0.1372 +0 0.0370 +0 0.0392 +0 0.0685 +0 0.2277 +0 0.4883 +0 0.0701 +0 0.0412 +0 0.0479 +0 0.0698 +0 0.0947 +0 0.1470 +0 0.0934 +0 0.0663 +0 0.1094 +0 0.0860 +0 0.0924 +0 0.0671 +0 0.1870 +0 0.0802 +0 0.1188 +0 0.2786 +0 0.1002 +0 0.0776 +0 0.1449 +0 0.0690 +0 0.4058 +0 0.1515 +0 0.0653 +0 0.1093 +0 0.1333 +0 0.1213 +0 0.0872 +1 0.8212 +0 0.4217 +0 0.0845 +0 0.0467 +0 0.3570 +0 0.0666 +0 0.0582 +0 0.1054 +0 0.2890 +0 0.2629 +0 0.1524 +0 0.1827 +1 0.7841 +0 0.1852 +0 0.0442 +0 0.0878 +0 0.0646 +0 0.1892 +0 0.0416 +0 0.0913 +0 0.0561 +0 0.0678 +0 0.1471 +0 0.0625 +0 0.0970 +0 0.3228 +0 0.0710 +0 0.1319 +0 0.1377 +0 0.0621 +0 0.1598 +0 0.1830 +0 0.0993 +1 0.8172 +0 0.1044 +0 0.1081 +0 0.1838 +0 0.1465 +0 0.0835 +0 0.0773 +0 0.1142 +0 0.1899 +0 0.0826 +0 0.0692 +0 0.0509 +0 0.0368 +0 0.1264 +0 0.1263 +0 0.0628 +0 0.1394 +0 0.2643 +0 0.0831 +0 0.1770 +0 0.3265 +0 0.0883 +0 0.2585 +0 0.3327 +0 0.0784 +0 0.0915 +0 0.0566 +0 0.1182 +0 0.1885 +0 0.0880 +0 0.3355 +0 0.1045 +0 0.0621 +0 0.0790 +0 0.0556 +0 0.1277 +0 0.7143 +0 0.1483 +0 0.2765 +0 0.1648 +0 0.1188 +0 0.1562 +0 0.0397 +0 0.0831 +0 0.1562 +0 0.0893 +0 0.0759 +0 0.0795 +0 0.0957 +0 0.0405 +0 0.1890 +0 0.1295 +0 0.0645 +0 0.1953 +0 0.1205 +0 0.2475 +0 0.0405 +1 0.7857 +0 0.2413 +0 0.1055 +0 0.3648 +0 0.1455 +0 0.0622 +0 0.1045 +0 0.0777 +0 0.1521 +0 0.1151 +0 0.0785 +0 0.1151 +0 0.0674 +0 0.0959 +0 0.0604 +0 0.1420 +0 0.2264 +0 0.1848 +0 0.0909 +0 0.0318 +0 0.1093 +0 0.0907 +0 0.2251 +0 0.3619 +0 0.1258 +0 0.0721 +0 0.1103 +0 0.0806 +0 0.1983 +0 0.1090 +0 0.0867 +0 0.1757 +0 0.1502 +0 0.1274 +0 0.0933 +0 0.0552 +0 0.1308 +0 0.2281 +0 0.5593 +0 0.0514 +0 0.2101 +0 0.0738 +0 0.1207 +0 0.0442 +0 0.2014 +0 0.0778 +0 0.0564 +0 0.1004 +0 0.0792 +0 0.0793 +0 0.0584 +0 0.0874 +0 0.2956 +0 0.1357 +0 0.1712 +0 0.0549 +0 0.0961 +0 0.0384 +0 0.0515 +0 0.0780 +0 0.2476 +0 0.0765 +0 0.0404 +0 0.1969 +0 0.2373 +0 0.0741 +0 0.4255 +0 0.1887 +0 0.1680 +0 0.2433 +0 0.0853 +0 0.2533 +0 0.2414 +0 0.0405 +0 0.0734 +0 0.0584 +0 0.0501 +0 0.0804 +0 0.0790 +0 0.2443 +0 0.0592 +0 0.4383 +0 0.1487 +0 0.1642 +0 0.0602 +0 0.0595 +0 0.0981 +0 0.1202 +0 0.1224 +0 0.1569 +0 0.1705 +0 0.1922 +0 0.1970 +0 0.0937 +0 0.4415 +0 0.1227 +0 0.1214 +0 0.0901 +0 0.0904 +0 0.1192 +0 0.1403 +0 0.1244 +0 0.0919 +0 0.1720 +0 0.0909 +0 0.1019 +0 0.0975 +0 0.0416 +0 0.0518 +0 0.1426 +0 0.1836 +0 0.1450 +0 0.1068 +0 0.1980 +0 0.1527 +0 0.0455 +0 0.1081 +0 0.1251 +0 0.1085 +0 0.2119 +0 0.1201 +0 0.2237 +0 0.1248 +0 0.3683 +0 0.1507 +0 0.0900 +0 0.1442 +0 0.1165 +0 0.2523 +0 0.1018 +0 0.0966 +0 0.0609 +0 0.1178 +0 0.0538 +0 0.0866 +0 0.0729 +0 0.2117 +0 0.0816 +0 0.2887 +0 0.0532 +0 0.1369 +1 0.7847 +0 0.2875 +0 0.1586 +0 0.0762 +0 0.0437 +0 0.1508 +0 0.0710 +0 0.0747 +0 0.2051 +0 0.0791 +0 0.3004 +0 0.0924 +0 0.1220 +0 0.0848 +0 0.4322 +0 0.1313 +0 0.1179 +0 0.1015 +0 0.0924 +0 0.0636 +0 0.1740 +0 0.0486 +0 0.6521 +0 0.1108 +0 0.1081 +0 0.2800 +0 0.1117 +0 0.0420 +0 0.0986 +0 0.2358 +0 0.1054 +0 0.0839 +0 0.1225 +0 0.0853 +0 0.0778 +0 0.0834 +0 0.1207 +0 0.0930 +0 0.1471 +0 0.0950 +0 0.2367 +0 0.1256 +0 0.2264 +0 0.1008 +0 0.1461 +1 0.7767 +0 0.0305 +0 0.1809 +0 0.3116 +0 0.1051 +0 0.0755 +0 0.1298 +0 0.3221 +0 0.1433 +0 0.0987 +0 0.0715 +0 0.0608 +0 0.0983 +0 0.0543 +0 0.5109 +0 0.0877 +0 0.0750 +0 0.0860 +0 0.3078 +0 0.0807 +0 0.1345 +0 0.0633 +0 0.1040 +0 0.1704 +0 0.3769 +0 0.1432 +0 0.0899 +0 0.1495 +0 0.1237 +0 0.0559 +0 0.1388 +0 0.1562 +0 0.2710 +0 0.2642 +0 0.0526 +0 0.1621 +0 0.6158 +0 0.1177 +0 0.0692 +0 0.0616 +0 0.0557 +0 0.1819 +0 0.1150 +0 0.1514 +0 0.1607 +0 0.6186 +0 0.1082 +0 0.0754 +0 0.1606 +0 0.1270 +0 0.0594 +0 0.0847 +0 0.1154 +0 0.1636 +0 0.0396 +0 0.1141 +0 0.1300 +0 0.0896 +0 0.1049 +0 0.1584 +0 0.0609 +0 0.1403 +0 0.0894 +0 0.0694 +0 0.1189 +0 0.2055 +0 0.0653 +0 0.0897 +0 0.0621 +0 0.1707 +0 0.0492 +0 0.0642 +0 0.1096 +0 0.1169 +0 0.0897 +0 0.0874 +0 0.1226 +0 0.0558 +0 0.0565 +0 0.1743 +0 0.1125 +0 0.0696 +0 0.1768 +0 0.0871 +0 0.1458 +0 0.1314 +0 0.3720 +0 0.0727 +0 0.1456 +0 0.0768 +0 0.0824 +0 0.0634 +0 0.0673 +0 0.1542 +0 0.0844 +0 0.1935 +0 0.0882 +0 0.0735 +0 0.0789 +0 0.1746 +0 0.1089 +0 0.2274 +0 0.6168 +0 0.1370 +0 0.0573 +0 0.1521 +0 0.3598 +0 0.0733 +0 0.5470 +0 0.0903 +0 0.1720 +0 0.0470 +0 0.1217 +0 0.0698 +0 0.0966 +0 0.0585 +0 0.3334 +0 0.1138 +0 0.0816 +0 0.1074 +0 0.1916 +0 0.1882 +0 0.1054 +0 0.1884 +0 0.2025 +0 0.1942 +0 0.1416 +0 0.1452 +0 0.0861 +0 0.0462 +0 0.0747 +0 0.1328 +0 0.1547 +0 0.1416 +0 0.1743 +0 0.1624 +0 0.1680 +0 0.1527 +0 0.2206 +0 0.1224 +0 0.1161 +0 0.2157 +0 0.1573 +0 0.0971 +0 0.0858 +0 0.0863 +0 0.0561 +0 0.0578 +0 0.1361 +0 0.1083 +0 0.1047 +0 0.0592 +0 0.1327 +0 0.0960 +0 0.1155 +1 0.8616 +0 0.1276 +0 0.2123 +0 0.0641 +0 0.0527 +0 0.0916 +0 0.0621 +0 0.1937 +0 0.0687 +0 0.1322 +0 0.4199 +0 0.1064 +0 0.4411 +0 0.1191 +0 0.0418 +0 0.1178 +0 0.0351 +0 0.0686 +0 0.4871 +0 0.1047 +0 0.0765 +0 0.1828 +0 0.0804 +0 0.0487 +0 0.0486 +0 0.0864 +0 0.1294 +0 0.0954 +0 0.1523 +0 0.1145 +0 0.1937 +0 0.2892 +0 0.1239 +0 0.1138 +0 0.6054 +0 0.2388 +0 0.0706 +0 0.1987 +0 0.1383 +0 0.0834 +0 0.1307 +0 0.0857 +0 0.7019 +0 0.1373 +0 0.1215 +0 0.1705 +0 0.0656 +0 0.2338 +0 0.1290 +0 0.2416 +0 0.1281 +0 0.2351 +0 0.1765 +0 0.1483 +0 0.2131 +0 0.1245 +0 0.0713 +0 0.2242 +0 0.0774 +0 0.1121 +1 0.8003 +0 0.0887 +0 0.1042 +0 0.0913 +0 0.0725 +0 0.1945 +0 0.0346 +0 0.0669 +0 0.0962 +0 0.0587 +0 0.5457 +0 0.0572 +0 0.0685 +0 0.0927 +0 0.1223 +0 0.1364 +0 0.0831 +0 0.0427 +0 0.0592 +0 0.1458 +0 0.2545 +0 0.0726 +0 0.0709 +0 0.1880 +0 0.0625 +0 0.0939 +0 0.1545 +0 0.0783 +0 0.1199 +0 0.1443 +0 0.0725 +0 0.0936 +0 0.1508 +0 0.0580 +1 0.7508 +0 0.0830 +0 0.0507 +0 0.0880 +0 0.1874 +0 0.1095 +0 0.0843 +0 0.0864 +0 0.1964 +0 0.0719 +0 0.0660 +0 0.0734 +0 0.2362 +0 0.0418 +0 0.0760 +0 0.5982 +0 0.0725 +0 0.1771 +0 0.0637 +0 0.2001 +0 0.1008 +0 0.1065 +0 0.2244 +0 0.0499 +0 0.4206 +0 0.2641 +0 0.0977 +0 0.0396 +0 0.0617 +0 0.1222 +0 0.1126 +0 0.1767 +0 0.0899 +0 0.1375 +0 0.2731 +0 0.0853 +1 0.8468 +0 0.0849 +0 0.0568 +0 0.1391 +0 0.1333 +0 0.0362 +0 0.0998 +0 0.2063 +0 0.0401 +0 0.6754 +0 0.2912 +0 0.0831 +0 0.5756 +0 0.0420 +0 0.0995 +0 0.1516 +0 0.0358 +0 0.0510 +0 0.0548 +0 0.1409 +0 0.0892 +0 0.0757 +0 0.2650 +0 0.1409 +0 0.1079 +1 0.8207 +0 0.3034 +0 0.1796 +0 0.2742 +0 0.0575 +1 0.7809 +0 0.1823 +0 0.1656 +0 0.0514 +0 0.0641 +0 0.0827 +1 0.8649 +0 0.1995 +0 0.0953 +0 0.0801 +0 0.1677 +0 0.0742 +0 0.1314 +0 0.0556 +0 0.0487 +0 0.0942 +0 0.1111 +0 0.0988 +0 0.5884 +0 0.0813 +0 0.0976 +0 0.0715 +0 0.3049 +0 0.0549 +0 0.0853 +0 0.1993 +0 0.3911 +1 0.7882 +0 0.3007 +0 0.1695 +0 0.1889 +0 0.0995 +0 0.3847 +0 0.0882 +0 0.1040 +0 0.0789 +0 0.0860 +0 0.0365 +0 0.1328 +0 0.1056 +0 0.2048 +0 0.1297 +0 0.0510 +0 0.1409 +0 0.0725 +0 0.0719 +0 0.0567 +0 0.0844 +0 0.1602 +0 0.0720 +0 0.1018 +0 0.0574 +0 0.0505 +0 0.1106 +0 0.1203 +0 0.0443 +0 0.0923 +0 0.4341 +0 0.2826 +0 0.0669 +0 0.2041 +0 0.1010 +0 0.0498 +0 0.1376 +0 0.0395 +0 0.1284 +0 0.1281 +0 0.1158 +0 0.1641 +0 0.0492 +0 0.3092 +0 0.1249 +0 0.2074 +0 0.1779 +0 0.0745 +0 0.2618 +0 0.0554 +1 0.8615 +0 0.1367 +0 0.3871 +0 0.0571 +0 0.6382 +0 0.0762 +0 0.2118 +0 0.0589 +0 0.0409 +0 0.1118 +0 0.1069 +0 0.2555 +0 0.4948 +0 0.1219 +0 0.0697 +0 0.0654 +0 0.0648 +0 0.1818 +0 0.1251 +0 0.0901 +0 0.1066 +0 0.1164 +0 0.1163 +0 0.0638 +0 0.1425 +0 0.0413 +0 0.1369 +0 0.7335 +0 0.0402 +0 0.5418 +0 0.1138 +0 0.1157 +0 0.1141 +0 0.0850 +0 0.3637 +0 0.2307 +0 0.1313 +0 0.0663 +0 0.0868 +0 0.0906 +0 0.0938 +0 0.1522 +0 0.1126 +0 0.1697 +0 0.1803 +0 0.0661 +0 0.0487 +0 0.1413 +0 0.1009 +0 0.1657 +0 0.0981 +0 0.0786 +0 0.1114 +0 0.1164 +0 0.1451 +0 0.1021 +0 0.3535 +0 0.0646 +0 0.0835 +0 0.0630 +0 0.2428 +0 0.0569 +0 0.1354 +0 0.1419 +0 0.0804 +0 0.5065 +0 0.1183 +0 0.3581 +0 0.0816 +0 0.1184 +0 0.0738 +0 0.1654 +0 0.1534 +0 0.2511 +0 0.0703 +1 0.8136 +0 0.0575 +0 0.1368 +0 0.0875 +0 0.1192 +1 0.7818 +0 0.3212 +0 0.1582 +0 0.1597 +0 0.4436 +0 0.1357 +0 0.0719 +0 0.0918 +0 0.0453 +0 0.1251 +0 0.0558 +0 0.1648 +0 0.3364 +0 0.1028 +0 0.0750 +0 0.1712 +0 0.2394 +0 0.0746 +0 0.3394 +0 0.1524 +0 0.0942 +0 0.1510 +0 0.0808 +0 0.1243 +0 0.1002 +0 0.0454 +0 0.0663 +0 0.0370 +0 0.0984 +0 0.0810 +0 0.1335 +0 0.0632 +0 0.3027 +0 0.0847 +0 0.0979 +0 0.0970 +0 0.0867 +0 0.0678 +0 0.0780 +0 0.4642 +0 0.0894 +0 0.0847 +0 0.0889 +0 0.1205 +0 0.0855 +0 0.1110 +0 0.1574 +0 0.0925 +0 0.1466 +0 0.1386 +0 0.0622 +0 0.0474 +0 0.0966 +0 0.1080 +0 0.0996 +0 0.0767 +0 0.0657 +0 0.1429 +0 0.1606 +0 0.0970 +0 0.0641 +0 0.1583 +0 0.2044 +1 0.7768 +0 0.1892 +0 0.0527 +0 0.0634 +0 0.0772 +0 0.0719 +0 0.1085 +0 0.0748 +0 0.0714 +0 0.1607 +0 0.2108 +0 0.1743 +0 0.0964 +0 0.0442 +0 0.2540 +0 0.1770 +0 0.3084 +0 0.1046 +0 0.1877 +0 0.0985 +0 0.1925 +0 0.0500 +0 0.1179 +0 0.0362 +0 0.2758 +0 0.1283 +0 0.2858 +0 0.0659 +0 0.0589 +0 0.1893 +0 0.1662 +0 0.3197 +0 0.1016 +0 0.0362 +0 0.0644 +0 0.0784 +0 0.1191 +0 0.1382 +0 0.1118 +0 0.1738 +0 0.1382 +0 0.1752 +1 0.8756 +0 0.1542 +0 0.0874 +0 0.1474 +0 0.1190 +0 0.0505 +0 0.0408 +0 0.1040 +0 0.1994 +0 0.2537 +0 0.0770 +0 0.1805 +0 0.0446 +0 0.0757 +0 0.1028 +0 0.1260 +0 0.1124 +0 0.1113 +0 0.1607 +0 0.1693 +0 0.2803 +0 0.0663 +0 0.1164 +0 0.0637 +0 0.0909 +0 0.0433 +0 0.2341 +0 0.1568 +0 0.1114 +0 0.1388 +0 0.0673 +0 0.0787 +0 0.2502 +0 0.0931 +0 0.1679 +0 0.2957 +0 0.1123 +0 0.0745 +0 0.1788 +0 0.4018 +0 0.0672 +0 0.1437 +0 0.2531 +0 0.1139 +0 0.1352 +0 0.0631 +0 0.0942 +0 0.1678 +0 0.0447 +0 0.1595 +0 0.1458 +0 0.1577 +0 0.2343 +0 0.1128 +0 0.0973 +0 0.0668 +0 0.0693 +0 0.0944 +0 0.1187 +0 0.2031 +0 0.0355 +0 0.0475 +0 0.2214 +0 0.0923 +0 0.5076 +0 0.2794 +0 0.1454 +0 0.0723 +0 0.1576 +0 0.0727 +0 0.1800 +0 0.1032 +0 0.0655 +0 0.1296 +0 0.1091 +0 0.3443 +0 0.1999 +0 0.0698 +0 0.0847 +0 0.1825 +0 0.0920 +1 0.7798 +0 0.0491 +0 0.1785 +0 0.0978 +0 0.0647 +0 0.0809 +0 0.0566 +0 0.1272 +0 0.2047 +0 0.1605 +0 0.1018 +0 0.5826 +1 0.8112 +0 0.0926 +0 0.0796 +0 0.0558 +0 0.0868 +0 0.0617 +0 0.0974 +0 0.2673 +0 0.0478 +0 0.0793 +0 0.1515 +0 0.0619 +0 0.1219 +0 0.1785 +0 0.1225 +0 0.1700 +0 0.2458 +0 0.1895 +0 0.1727 +0 0.0482 +0 0.1460 +0 0.0890 +0 0.1253 +1 0.8471 +0 0.0901 +0 0.0695 +0 0.1325 +0 0.0445 +0 0.0610 +0 0.1123 +0 0.0839 +0 0.0862 +0 0.0823 +0 0.1072 +0 0.0582 +0 0.1867 +0 0.2469 +0 0.1850 +0 0.0903 +0 0.0557 +0 0.1216 +0 0.0886 +0 0.0802 +0 0.0706 +0 0.1456 +0 0.0760 +0 0.1190 +0 0.1295 +1 0.7750 +0 0.1604 +0 0.1296 +0 0.1154 +0 0.2069 +0 0.0792 +0 0.1667 +0 0.0782 +0 0.1453 +0 0.0860 +0 0.2470 +0 0.1720 +0 0.0758 +0 0.0581 +0 0.1158 +0 0.0885 +0 0.1399 +0 0.2734 +0 0.3436 +0 0.0418 +0 0.0622 +0 0.1224 +0 0.0873 +0 0.0629 +0 0.0383 +0 0.0532 +0 0.1261 +0 0.1075 +0 0.1104 +0 0.0367 +0 0.1565 +0 0.1948 +0 0.1572 +0 0.2223 +0 0.1347 +0 0.0596 +0 0.0779 +0 0.0726 +0 0.0824 +0 0.0799 +0 0.1499 +0 0.2141 +0 0.0542 +0 0.1536 +0 0.1260 +0 0.0921 +0 0.0755 +0 0.0434 +0 0.0956 +0 0.0779 +0 0.1168 +0 0.7266 +0 0.0917 +0 0.0617 +0 0.1431 +0 0.2299 +0 0.1540 +0 0.1125 +0 0.1261 +0 0.0983 +0 0.2343 +0 0.0849 +0 0.2392 +0 0.1401 +0 0.0848 +0 0.0877 +0 0.1956 +0 0.2986 +0 0.0496 +0 0.0819 +0 0.0916 +0 0.1246 +0 0.1983 +0 0.1472 +0 0.1443 +0 0.2554 +0 0.1051 +0 0.1940 +0 0.0748 +0 0.2220 +0 0.0598 +0 0.0959 +0 0.2044 +0 0.0591 +0 0.3415 +0 0.3499 +0 0.0953 +0 0.5488 +0 0.0530 +0 0.1024 +0 0.0825 +0 0.0718 +0 0.4217 +0 0.3024 +0 0.0968 +0 0.1197 +0 0.4836 +0 0.1826 +0 0.0777 +0 0.0889 +0 0.1589 +0 0.1705 +0 0.1750 +0 0.1783 +0 0.2543 +0 0.0493 +0 0.0808 +0 0.0500 +0 0.0672 +0 0.0864 +0 0.1440 +0 0.0746 +0 0.1215 +0 0.1164 +0 0.2671 +0 0.1198 +0 0.0659 +0 0.1195 +0 0.0641 +0 0.0694 +0 0.0566 +0 0.0867 +0 0.0905 +0 0.0996 +0 0.1569 +0 0.1067 +0 0.0760 +0 0.2214 +0 0.1949 +0 0.0721 +0 0.1685 +0 0.3350 +0 0.0589 +0 0.1601 +0 0.3208 +0 0.0793 +0 0.3788 +0 0.0510 +0 0.0929 +0 0.1401 +0 0.0493 +0 0.1026 +0 0.5037 +0 0.1071 +0 0.2099 +0 0.0688 +0 0.0653 +0 0.3021 +0 0.0602 +0 0.0961 +0 0.3182 +0 0.2177 +0 0.1174 +0 0.3615 +0 0.1384 +0 0.1132 +0 0.1077 +0 0.1138 +0 0.1614 +0 0.0519 +0 0.0743 +0 0.1332 +0 0.2392 +0 0.2080 +0 0.2035 +0 0.3325 +0 0.1079 +0 0.0986 +0 0.2624 +0 0.0656 +0 0.1431 +0 0.2248 +0 0.0897 +0 0.2269 +0 0.0959 +0 0.0598 +0 0.0760 +0 0.0756 +0 0.2004 +0 0.3379 +0 0.0625 +0 0.0615 +0 0.1166 +0 0.2039 +0 0.0974 +0 0.3108 +0 0.0668 +0 0.0918 +0 0.2874 +0 0.0745 +1 0.8201 +0 0.1204 +0 0.0813 +0 0.0810 +0 0.1982 +0 0.1640 +0 0.1459 +0 0.0854 +0 0.3300 +0 0.1283 +0 0.1190 +0 0.0610 +0 0.0490 +0 0.0348 +0 0.4426 +0 0.3021 +0 0.0421 +0 0.0617 +0 0.1326 +0 0.3454 +0 0.1112 +0 0.1006 +0 0.0454 +0 0.1461 +0 0.1060 +0 0.1113 +0 0.1291 +0 0.0640 +0 0.2287 +0 0.0732 +0 0.0923 +0 0.0563 +0 0.1761 +0 0.0874 +0 0.0484 +0 0.0419 +1 0.7821 +0 0.0927 +0 0.1147 +0 0.0481 +0 0.0907 +0 0.0690 +0 0.0636 +0 0.0788 +0 0.1418 +0 0.1460 +0 0.0691 +0 0.1184 +0 0.4057 +0 0.0596 +0 0.2190 +0 0.0563 +0 0.3314 +0 0.1804 +0 0.0874 +0 0.6062 +0 0.1276 +1 0.8490 +0 0.0850 +0 0.0968 +0 0.0585 +0 0.1912 +0 0.0873 +0 0.4154 +0 0.3077 +0 0.1474 +0 0.2306 +0 0.1916 +0 0.0789 +0 0.2040 +0 0.0417 +0 0.0974 +0 0.2464 +0 0.1306 +0 0.1219 +0 0.0670 +0 0.1173 +0 0.0645 +0 0.0681 +0 0.0781 +0 0.0930 +0 0.0677 +0 0.0846 +0 0.1316 +0 0.1719 +0 0.2163 +0 0.0903 +0 0.2538 +0 0.1564 +0 0.1712 +0 0.0641 +0 0.0777 +0 0.1029 +0 0.1042 +0 0.0895 +0 0.0830 +0 0.1040 +0 0.0618 +0 0.2508 +0 0.0578 +0 0.0647 +0 0.1122 +0 0.2207 +0 0.1076 +0 0.0442 +0 0.3199 +0 0.0562 +0 0.1178 +0 0.0700 +0 0.0761 +0 0.2251 +0 0.0599 +0 0.1968 +1 0.8069 +0 0.0761 +0 0.1035 +0 0.1412 +0 0.1773 +0 0.1747 +0 0.0701 +0 0.0418 +0 0.7446 +0 0.3043 +0 0.0629 +0 0.6846 +0 0.1377 +0 0.0942 +0 0.1324 +0 0.1187 +0 0.1161 +0 0.0472 +0 0.1074 +0 0.0594 +0 0.2092 +0 0.0975 +0 0.3254 +0 0.1850 +0 0.0978 +0 0.1374 +0 0.0671 +0 0.0606 +0 0.2792 +0 0.1233 +0 0.0665 +0 0.1741 +0 0.1795 +0 0.4100 +0 0.0606 +0 0.0826 +0 0.1944 +0 0.1344 +0 0.1073 +0 0.1419 +0 0.0694 +0 0.1511 +0 0.0606 +0 0.1148 +0 0.2931 +0 0.0885 +0 0.0621 +0 0.0355 +0 0.0595 +0 0.0931 +0 0.1283 +0 0.2734 +0 0.0965 +0 0.1239 +0 0.0486 +0 0.1847 +0 0.1904 +0 0.1580 +0 0.1411 +0 0.1238 +0 0.0913 +0 0.1832 +0 0.0715 +0 0.0772 +0 0.1738 +0 0.0892 +0 0.0804 +0 0.2274 +0 0.0870 +0 0.1209 +0 0.0535 +0 0.0801 +0 0.0843 +0 0.0762 +0 0.0806 +0 0.0485 +0 0.1035 +0 0.1051 +0 0.1200 +0 0.7027 +0 0.2379 +0 0.4309 +0 0.0561 +0 0.6129 +0 0.2182 +0 0.0492 +0 0.1578 +0 0.1444 +0 0.5520 +0 0.1662 +0 0.1760 +0 0.0856 +0 0.1336 +0 0.1480 +0 0.2763 +0 0.2416 +0 0.1497 +0 0.0785 +0 0.2660 +0 0.2102 +0 0.1279 +0 0.1075 +0 0.1498 +0 0.1476 +0 0.1016 +0 0.1724 +0 0.1186 +0 0.1076 +0 0.0525 +0 0.5315 +0 0.0526 +0 0.0437 +0 0.1107 +0 0.1417 +0 0.0938 +0 0.1788 +0 0.2200 +1 0.8066 +0 0.3877 +0 0.1151 +0 0.1885 +0 0.0686 +0 0.1077 +0 0.0925 +0 0.0653 +0 0.1370 +0 0.0517 +0 0.0551 +0 0.0682 +0 0.6584 +0 0.0789 +0 0.2037 +0 0.0686 +0 0.0740 +0 0.0570 +0 0.5221 +0 0.2907 +0 0.0873 +0 0.0537 +0 0.0607 +0 0.2795 +0 0.2933 +0 0.1125 +0 0.0624 +0 0.1355 +1 0.8314 +0 0.1630 +0 0.2815 +0 0.1723 +0 0.0524 +0 0.2518 +0 0.4191 +0 0.1085 +0 0.1183 +0 0.0919 +0 0.6826 +0 0.1284 +0 0.0927 +0 0.1039 +0 0.1028 +0 0.1044 +1 0.8308 +0 0.0763 +0 0.0995 +0 0.0611 +0 0.2067 +0 0.0630 +0 0.1157 +0 0.1013 +1 0.8568 +0 0.0499 +0 0.0456 +0 0.0433 +0 0.2325 +0 0.6737 +0 0.0483 +0 0.1140 +0 0.0645 +0 0.0477 +0 0.1511 +0 0.1596 +0 0.2657 +0 0.0963 +0 0.3451 +0 0.1025 +0 0.0728 +0 0.1197 +0 0.2122 +1 0.8247 +0 0.1125 +0 0.0924 +0 0.1366 +0 0.1297 +0 0.1843 +0 0.1569 +0 0.0532 +0 0.0792 +0 0.1550 +0 0.0963 +0 0.0612 +0 0.1966 +0 0.1203 +0 0.0779 +0 0.2417 +0 0.0612 +0 0.1129 +0 0.1277 +0 0.0632 +0 0.1291 +0 0.0761 +0 0.0421 +0 0.2615 +0 0.1326 +0 0.0618 +0 0.2480 +0 0.1023 +0 0.1689 +1 0.7724 +0 0.0442 +0 0.0575 +0 0.1116 +0 0.7240 +0 0.0986 +0 0.1748 +0 0.7169 +0 0.1620 +0 0.0649 +1 0.8192 +0 0.0787 +0 0.0860 +0 0.0585 +0 0.0847 +0 0.5896 +0 0.1170 +0 0.2509 +0 0.0681 +0 0.1011 +0 0.1097 +0 0.0693 +0 0.1327 +1 0.8295 +0 0.0656 +0 0.1091 +0 0.3971 +0 0.0716 +0 0.1280 +0 0.1761 +0 0.0762 +0 0.1004 +0 0.0549 +0 0.0802 +0 0.2950 +0 0.3189 +0 0.0821 +0 0.6940 +0 0.1905 +0 0.1026 +0 0.0651 +0 0.0845 +0 0.3505 +0 0.1479 +0 0.0385 +0 0.0500 +1 0.7539 +0 0.3456 +0 0.0896 +0 0.0658 +0 0.1325 +0 0.1136 +0 0.1386 +0 0.0955 +0 0.0681 +0 0.0669 +0 0.1025 +0 0.2001 +0 0.1360 +0 0.1383 +0 0.1185 +0 0.1349 +0 0.0805 +0 0.1867 +0 0.0803 +0 0.0428 +0 0.1041 +0 0.0638 +0 0.1299 +0 0.0501 +0 0.0460 +0 0.0632 +0 0.0620 +0 0.1111 +0 0.1817 +0 0.1123 +0 0.0501 +0 0.0730 +0 0.0671 +0 0.0875 +0 0.0710 +0 0.0729 +0 0.1962 +0 0.2466 +0 0.0751 +0 0.4283 +0 0.1297 +0 0.5905 +0 0.0723 +0 0.0642 +0 0.1735 +0 0.2103 +0 0.1884 +0 0.1078 +0 0.1298 +0 0.1887 +0 0.0574 +0 0.0817 +0 0.1698 +0 0.0959 +0 0.1499 +0 0.0478 +0 0.1038 +0 0.4666 +0 0.3051 +0 0.2228 +0 0.1491 +0 0.1582 +0 0.0774 +0 0.0936 +0 0.1546 +0 0.1362 +0 0.0880 +0 0.1094 +0 0.1968 +0 0.1042 +0 0.4070 +0 0.0440 +0 0.0879 +0 0.1984 +0 0.0672 +0 0.0538 +0 0.2503 +0 0.0783 +0 0.1497 +0 0.0696 +0 0.0462 +0 0.0779 +0 0.0440 +0 0.2235 +0 0.1108 +0 0.1067 +0 0.0832 +0 0.0742 +0 0.0423 +0 0.0872 +0 0.1582 +0 0.0465 +0 0.1785 +0 0.0410 +0 0.0628 +0 0.0766 +0 0.0747 +0 0.1097 +0 0.1639 +0 0.1793 +0 0.0427 +0 0.0856 +0 0.6715 +0 0.1403 +0 0.0946 +0 0.0675 +0 0.1094 +0 0.1404 +0 0.1139 +0 0.1382 +1 0.8424 +0 0.0868 +0 0.1155 +0 0.0947 +0 0.0439 +0 0.1295 +0 0.0457 +0 0.0931 +0 0.0954 +0 0.1997 +0 0.5839 +0 0.1247 +0 0.0839 +0 0.1593 +0 0.0887 +0 0.1055 +0 0.6010 +0 0.1065 +0 0.0851 +0 0.1713 +0 0.0933 +0 0.0469 +0 0.0722 +0 0.1434 +0 0.1000 +0 0.1082 +0 0.1041 +0 0.0467 +0 0.1268 +0 0.0965 +0 0.0516 +0 0.0640 +0 0.0554 +0 0.1617 +0 0.0890 +0 0.1192 +0 0.0661 +0 0.0722 +0 0.1577 +0 0.1159 +0 0.5631 +0 0.1250 +0 0.0699 +0 0.0454 +0 0.0493 +0 0.0828 +0 0.1302 +0 0.7361 +0 0.1444 +0 0.0695 +0 0.2029 +0 0.0534 +0 0.0716 +0 0.2938 +0 0.0698 +0 0.1108 +0 0.1855 +0 0.1550 +0 0.1080 +0 0.0427 +0 0.0562 +0 0.0893 +0 0.0934 +0 0.0590 +0 0.0511 +0 0.1243 +0 0.1582 +0 0.0403 +0 0.1033 +0 0.1813 +0 0.1028 +0 0.2327 +0 0.4113 +0 0.0945 +0 0.3635 +0 0.3140 +0 0.0981 +0 0.0655 +0 0.0409 +0 0.1205 +0 0.0866 +0 0.0407 +0 0.1311 +0 0.1400 +0 0.3211 +0 0.0955 +0 0.7364 +0 0.0794 +0 0.1540 +0 0.6952 +0 0.0831 +0 0.0739 +0 0.1478 +0 0.1424 +0 0.0689 +0 0.0805 +0 0.0767 +0 0.1180 +0 0.0841 +0 0.0944 +0 0.0932 +0 0.2809 +1 0.4863 +0 0.1914 +1 0.7935 +0 0.2566 +0 0.1075 +0 0.2927 +0 0.0753 +0 0.0805 +0 0.2431 +0 0.1308 +0 0.0530 +0 0.2490 +0 0.1466 +0 0.1184 +0 0.0561 +0 0.1093 +0 0.1157 +0 0.0900 +0 0.0618 +0 0.5432 +1 0.8214 +0 0.0716 +0 0.2342 +0 0.1278 +0 0.0831 +0 0.0388 +0 0.0817 +0 0.0622 +0 0.5481 +0 0.2029 +0 0.0407 +0 0.1037 +0 0.3184 +0 0.1119 +0 0.0841 +0 0.4482 +0 0.1521 +0 0.0835 +0 0.0833 +0 0.1027 +0 0.0805 +0 0.1096 +0 0.1483 +0 0.0607 +0 0.1500 +0 0.3639 +0 0.1497 +0 0.2826 +0 0.1094 +0 0.1533 +0 0.0706 +0 0.0959 +0 0.0537 +0 0.0769 +0 0.0391 +0 0.1099 +1 0.7819 +0 0.0740 +0 0.0418 +0 0.1046 +0 0.0841 +0 0.2037 +0 0.0392 +0 0.0911 +0 0.0834 +0 0.2485 +0 0.1362 +0 0.0522 +0 0.0364 +0 0.1367 +0 0.1323 +0 0.2085 +0 0.1317 +0 0.2269 +0 0.1240 +0 0.0440 +0 0.1458 +0 0.0535 +0 0.0397 +0 0.0464 +0 0.0919 +0 0.1625 +0 0.1704 +0 0.0905 +0 0.3022 +0 0.2472 +0 0.2290 +0 0.1469 +0 0.1626 +0 0.0786 +0 0.0485 +0 0.3905 +0 0.1024 +0 0.4111 +0 0.1848 +0 0.5325 +0 0.1183 +0 0.0979 +0 0.0757 +0 0.2937 +0 0.0419 +0 0.1412 +0 0.0702 +0 0.1167 +0 0.0870 +0 0.0827 +0 0.1265 +0 0.0577 +0 0.1517 +0 0.0624 +0 0.0990 +0 0.0713 +0 0.1962 +0 0.2419 +0 0.1153 +0 0.3183 +0 0.0804 +0 0.0723 +0 0.0421 +0 0.1096 +0 0.0639 +0 0.2276 +0 0.0817 +0 0.0421 +0 0.2052 +0 0.2269 +0 0.1614 +0 0.0584 +0 0.1200 +0 0.0856 +0 0.3090 +0 0.1102 +0 0.0748 +0 0.1728 +0 0.2758 +0 0.0923 +0 0.2076 +0 0.0789 +0 0.2867 +0 0.0464 +0 0.0615 +0 0.0523 +0 0.1429 +0 0.1499 +0 0.0470 +0 0.1817 +0 0.1583 +0 0.0991 +1 0.7635 +0 0.0932 +0 0.1437 +0 0.1149 +0 0.2342 +0 0.4914 +0 0.3385 +0 0.6797 +0 0.1619 +0 0.1256 +0 0.1908 +0 0.0510 +0 0.0762 +0 0.0972 +0 0.2432 +0 0.0759 +0 0.4859 +0 0.1131 +0 0.1615 +0 0.1360 +0 0.2064 +0 0.1329 +0 0.0537 +0 0.0465 +1 0.8647 +0 0.0668 +0 0.0474 +1 0.7699 +0 0.1355 +0 0.0554 +0 0.0645 +0 0.1333 +0 0.0543 +0 0.2350 +0 0.0556 +0 0.0479 +0 0.0566 +0 0.5196 +0 0.0461 +0 0.1033 +0 0.0961 +0 0.1449 +0 0.1339 +0 0.0391 +0 0.0950 +0 0.0789 +0 0.3624 +0 0.0735 +0 0.0561 +0 0.0720 +0 0.0729 +0 0.0450 +0 0.0492 +0 0.1089 +0 0.0753 +0 0.0856 +0 0.0840 +0 0.1218 +1 0.8086 +0 0.0559 +0 0.2101 +0 0.0753 +0 0.0985 +0 0.0542 +0 0.1433 +0 0.1135 +0 0.0619 +0 0.1217 +0 0.2441 +0 0.0827 +0 0.1196 +0 0.2616 +0 0.0669 +0 0.3160 +1 0.9076 +0 0.0524 +0 0.1333 +0 0.0896 +0 0.6661 +0 0.1563 +0 0.0696 +0 0.1453 +0 0.2409 +0 0.0659 +0 0.1397 +0 0.0630 +0 0.2354 +0 0.0546 +0 0.1829 +0 0.1119 +0 0.0711 +0 0.1547 +0 0.0850 +0 0.0990 +0 0.3552 +0 0.1031 +0 0.5337 +0 0.1357 +0 0.0404 +0 0.0872 +0 0.0948 +0 0.0560 +0 0.1661 +0 0.0605 +0 0.0681 +0 0.2307 +0 0.0990 +0 0.1276 +0 0.0370 +0 0.1038 +0 0.2733 +0 0.0532 +0 0.0533 +0 0.0615 +0 0.2914 +0 0.1588 +0 0.1812 +0 0.2518 +0 0.1278 +0 0.1103 +0 0.3564 +0 0.4996 +0 0.0389 +0 0.0742 +0 0.2311 +0 0.0374 +0 0.1476 +0 0.0754 +0 0.2187 +0 0.0877 +0 0.4668 +0 0.1566 +0 0.0895 +0 0.0419 +0 0.0649 +0 0.1976 +0 0.0467 +1 0.7802 +0 0.2299 +0 0.0834 +0 0.0707 +0 0.0901 +0 0.0552 +1 0.8328 +0 0.0802 +0 0.1036 +0 0.1358 +0 0.1406 +0 0.3979 +0 0.1590 +0 0.1581 +0 0.0871 +0 0.1004 +0 0.5791 +0 0.1244 +0 0.0878 +0 0.1211 +0 0.2078 +0 0.1333 +0 0.0446 +0 0.0494 +0 0.1331 +0 0.1476 +0 0.3331 +0 0.0328 +0 0.0610 +0 0.0875 +0 0.1026 +0 0.0483 +0 0.0758 +0 0.0883 +0 0.1392 +0 0.0840 +0 0.1009 +0 0.2139 +0 0.1394 +0 0.0726 +0 0.2958 +0 0.0993 +0 0.0827 +0 0.1380 +0 0.0616 +0 0.2237 +1 0.7605 +0 0.1178 +0 0.1290 +0 0.2190 +0 0.2000 +0 0.0801 +0 0.6807 +0 0.0628 +0 0.1168 +0 0.0408 +0 0.1964 +0 0.1263 +1 0.8667 +0 0.0680 +0 0.1696 +0 0.3497 +0 0.0607 +0 0.0526 +0 0.2468 +0 0.1479 +0 0.0391 +0 0.0603 +0 0.2737 +0 0.1365 +0 0.0666 +0 0.1740 +1 0.7518 +0 0.1173 +0 0.0531 +0 0.1148 +0 0.0959 +0 0.1521 +0 0.2583 +0 0.0632 +0 0.0784 +0 0.0685 +0 0.1722 +0 0.0743 +0 0.0551 +0 0.4376 +0 0.0964 +0 0.1502 +0 0.1895 +0 0.2126 +0 0.1015 +0 0.2389 +0 0.0746 +0 0.1212 +0 0.0618 +0 0.1510 +0 0.0627 +0 0.1577 +0 0.1202 +0 0.2854 +0 0.1312 +0 0.2037 +0 0.0342 +0 0.1392 +0 0.0660 +0 0.1957 +0 0.0522 +0 0.0578 +0 0.2437 +0 0.0455 +0 0.0621 +0 0.1294 +0 0.0672 +0 0.0881 +1 0.8416 +0 0.1450 +0 0.6896 +0 0.0460 +0 0.0965 +0 0.1176 +0 0.0670 +0 0.1135 +0 0.0550 +0 0.0717 +0 0.0363 +0 0.7185 +0 0.1501 +0 0.2102 +0 0.4829 +0 0.1538 +0 0.1582 +0 0.0833 +0 0.3113 +0 0.0997 +0 0.1339 +0 0.1019 +0 0.1879 +0 0.0434 +0 0.0581 +0 0.0605 +0 0.0864 +0 0.0598 +0 0.0796 +0 0.0911 +0 0.0681 +0 0.0709 +0 0.1927 +0 0.3194 +0 0.1127 +0 0.2434 +0 0.5212 +0 0.0378 +0 0.0314 +0 0.1572 +0 0.1578 +0 0.1038 +0 0.2408 +0 0.0690 +0 0.0690 +0 0.1975 +0 0.0787 +0 0.1000 +0 0.1130 +0 0.0718 +0 0.0474 +0 0.0391 +0 0.0959 +0 0.1742 +0 0.1150 +0 0.1141 +0 0.1545 +0 0.1577 +0 0.1519 +0 0.0577 +0 0.0988 +0 0.0554 +0 0.1090 +0 0.5281 +0 0.0645 +0 0.1101 +0 0.0951 +0 0.0587 +0 0.0758 +0 0.0883 +0 0.0701 +0 0.0464 +0 0.0865 +0 0.0749 +0 0.0664 +0 0.2954 +0 0.0992 +0 0.3429 +0 0.1330 +0 0.0840 +0 0.1206 +0 0.1584 +0 0.1291 +0 0.0722 +0 0.1501 +0 0.1124 +0 0.0479 +0 0.0669 +0 0.0481 +0 0.4023 +0 0.1698 +0 0.0874 +0 0.0898 +0 0.0947 +0 0.0953 +0 0.1539 +0 0.3509 +0 0.1400 +0 0.0580 +0 0.5372 +0 0.0826 +0 0.1428 +0 0.0570 +0 0.1331 +0 0.1281 +0 0.0512 +0 0.4137 +0 0.0656 +0 0.0763 +0 0.0934 +0 0.1159 +0 0.0836 +0 0.2076 +0 0.0984 +0 0.0967 +0 0.1138 +0 0.6866 +0 0.6796 +0 0.1745 +0 0.0668 +0 0.1857 +0 0.0836 +0 0.0698 +0 0.0416 +0 0.0920 +0 0.0529 +0 0.1671 +0 0.0450 +0 0.2716 +0 0.3021 +0 0.0987 +0 0.0527 +0 0.0921 +0 0.0822 +0 0.3049 +0 0.0949 +0 0.1808 +0 0.0652 +0 0.0696 +0 0.1034 +0 0.0828 +0 0.2247 +0 0.0911 +0 0.0904 +0 0.2553 +0 0.2890 +0 0.5086 +0 0.0857 +0 0.1062 +0 0.0582 +0 0.4943 +0 0.0958 +0 0.1630 +0 0.6230 +0 0.0871 +0 0.1724 +0 0.0866 +0 0.3833 +0 0.1051 +0 0.2013 +0 0.0869 +0 0.1087 +0 0.0869 +0 0.0599 +0 0.1359 +0 0.0418 +0 0.2374 +0 0.3971 +0 0.0998 +0 0.1549 +0 0.1416 +0 0.1328 +0 0.0621 +0 0.0285 +0 0.0605 +0 0.0743 +0 0.3480 +0 0.1041 +0 0.2754 +0 0.1689 +0 0.0635 +0 0.0883 +0 0.1477 +0 0.1610 +0 0.0775 +0 0.2377 +0 0.0509 +0 0.1497 +0 0.0855 +0 0.0876 +0 0.1389 +0 0.4153 +0 0.0697 +0 0.0583 +0 0.1313 +0 0.1973 +0 0.0563 +0 0.1379 +0 0.1712 +0 0.1513 +0 0.2176 +0 0.1171 +0 0.1830 +0 0.0986 +0 0.2674 +0 0.0887 +0 0.5767 +0 0.1686 +0 0.2025 +0 0.1781 +0 0.0904 +0 0.3444 +0 0.1778 +1 0.7975 +0 0.1358 +0 0.1058 +0 0.0763 +0 0.3398 +0 0.2286 +0 0.1078 +0 0.1789 +0 0.0879 +0 0.0948 +1 0.8126 +0 0.1754 +0 0.2589 +0 0.0424 +0 0.1586 +0 0.0523 +0 0.0826 +0 0.0698 +0 0.3796 +0 0.0927 +0 0.1077 +0 0.1124 +0 0.0447 +0 0.2217 +0 0.1212 +0 0.0836 +0 0.2416 +0 0.0936 +0 0.0693 +0 0.6842 +0 0.1627 +0 0.1024 +0 0.5554 +0 0.0951 +0 0.1445 +0 0.0819 +0 0.2537 +0 0.0906 +0 0.7078 +0 0.2466 +0 0.0629 +0 0.0494 +0 0.0818 +0 0.1531 +0 0.0875 +0 0.0951 +1 0.7652 +0 0.2240 +0 0.3057 +0 0.3544 +0 0.0827 +0 0.1283 +0 0.0569 +0 0.0939 +0 0.0484 +0 0.1894 +0 0.1508 +0 0.7474 +0 0.1183 +0 0.1593 +0 0.0651 +0 0.0757 +0 0.1492 +0 0.0777 +0 0.0936 +0 0.0981 +0 0.1404 +0 0.1315 +0 0.1830 +0 0.1602 +0 0.0664 +0 0.0835 +0 0.2906 +0 0.1115 +0 0.0573 +0 0.0826 +0 0.0520 +0 0.0591 +0 0.1656 +0 0.2293 +0 0.0481 +0 0.0731 +0 0.0702 +0 0.0912 +0 0.0925 +0 0.1098 +0 0.1146 +0 0.1358 +0 0.0991 +0 0.1275 +0 0.7326 +0 0.1115 +0 0.1354 +0 0.3333 +0 0.2640 +0 0.3946 +0 0.1063 +0 0.1420 +0 0.0713 +0 0.0326 +0 0.1258 +0 0.1206 +0 0.1168 +0 0.1110 +0 0.1244 +0 0.0737 +0 0.0925 +0 0.2598 +0 0.0483 +0 0.7401 +0 0.0396 +0 0.0744 +0 0.1983 +0 0.2732 +0 0.1344 +0 0.1358 +0 0.0889 +0 0.0381 +0 0.1297 +0 0.0919 +0 0.4134 +0 0.1116 +0 0.0353 +0 0.1646 +0 0.0999 +0 0.0382 +0 0.1243 +0 0.1295 +0 0.1831 +0 0.0951 +0 0.1996 +0 0.1180 +0 0.1578 +0 0.0878 +0 0.0787 +0 0.0947 +0 0.0391 +0 0.0473 +0 0.0447 +0 0.0389 +0 0.1554 +0 0.2079 +0 0.1357 +0 0.1706 +0 0.1175 +0 0.1635 +0 0.2522 +0 0.0542 +0 0.1879 +0 0.0851 +0 0.2592 +0 0.0365 +0 0.0708 +0 0.0667 +0 0.2317 +0 0.0457 +0 0.1300 +1 0.8390 +0 0.0742 +0 0.0848 +0 0.2728 +0 0.2609 +0 0.0908 +0 0.0711 +1 0.7738 +0 0.1402 +0 0.1246 +0 0.0883 +0 0.0662 +0 0.1190 +0 0.3822 +0 0.2253 +0 0.1162 +0 0.0650 +0 0.2245 +0 0.1140 +0 0.1828 +0 0.1710 +0 0.1141 +0 0.0567 +0 0.6565 +0 0.1813 +0 0.2058 +0 0.1236 +0 0.0997 +0 0.0799 +0 0.2221 +0 0.0587 +0 0.1053 +0 0.0758 +0 0.4280 +0 0.1260 +0 0.1348 +0 0.0949 +0 0.1972 +0 0.2157 +0 0.0544 +0 0.1887 +0 0.0485 +0 0.0579 +0 0.0969 +0 0.0719 +0 0.0948 +0 0.0779 +0 0.0454 +0 0.1084 +0 0.1672 +0 0.0699 +0 0.2378 +0 0.1485 +0 0.2003 +0 0.0796 +0 0.0992 +0 0.2072 +0 0.1682 +0 0.0594 +0 0.0903 +0 0.0854 +0 0.1219 +0 0.3134 +0 0.0927 +0 0.1781 +0 0.1340 +0 0.6372 +0 0.0972 +0 0.1132 +0 0.0386 +0 0.0671 +0 0.0541 +0 0.1716 +0 0.0654 +0 0.1400 +0 0.1167 +0 0.1830 +0 0.0672 +0 0.1542 +0 0.0424 +0 0.1667 +0 0.0842 +0 0.0757 +1 0.8132 +0 0.3870 +0 0.0498 +0 0.1039 +0 0.0747 +0 0.0393 +0 0.0484 +1 0.8021 +0 0.1952 +0 0.0801 +0 0.3932 +0 0.0469 +0 0.1068 +0 0.0563 +0 0.2603 +0 0.0772 +0 0.2567 +0 0.4752 +0 0.1909 +0 0.5325 +0 0.2246 +0 0.0542 +0 0.2095 +0 0.1127 +0 0.0853 +0 0.4255 +0 0.0701 +0 0.0854 +0 0.1056 +0 0.0906 +0 0.3019 +0 0.4257 +0 0.2867 +0 0.0757 +0 0.2884 +0 0.0903 +0 0.1425 +0 0.2134 +0 0.0457 +1 0.8489 +0 0.1037 +0 0.0813 +0 0.0822 +0 0.1055 +0 0.0754 +0 0.0813 +0 0.2165 +0 0.0454 +0 0.0952 +0 0.0740 +0 0.2159 +0 0.0810 +0 0.0549 +0 0.1920 +0 0.0861 +0 0.2514 +0 0.1531 +0 0.0929 +0 0.0472 +0 0.0507 +0 0.2370 +0 0.1055 +0 0.1190 +0 0.1188 +0 0.0601 +0 0.2739 +0 0.1955 +0 0.0728 +0 0.5939 +0 0.0881 +0 0.1802 +0 0.0562 +0 0.0695 +0 0.0569 +0 0.0906 +0 0.0989 +0 0.1361 +0 0.2008 +0 0.1698 +0 0.2608 +0 0.1430 +0 0.0552 +0 0.0608 +0 0.0610 +0 0.2010 +0 0.0435 +0 0.0669 +0 0.5912 +0 0.1669 +0 0.1798 +0 0.1722 +0 0.2564 +0 0.1332 +0 0.4653 +0 0.0686 +0 0.4021 +0 0.2238 +0 0.1865 +0 0.0780 +0 0.0387 +0 0.0794 +0 0.0285 +0 0.1279 +0 0.0505 +0 0.0661 +0 0.2224 +0 0.0950 +0 0.0687 +0 0.1625 +0 0.0567 +0 0.1005 +0 0.1944 +0 0.0557 +0 0.0945 +0 0.3265 +0 0.0683 +0 0.1164 +0 0.1482 +0 0.0739 +0 0.1319 +0 0.0383 +0 0.5617 +0 0.0943 +0 0.0484 +0 0.1241 +0 0.0809 +0 0.3350 +0 0.0795 +0 0.2402 +0 0.0707 +0 0.2569 +0 0.0582 +0 0.0813 +0 0.1863 +0 0.0640 +0 0.1165 +0 0.2284 +0 0.1561 +0 0.7200 +0 0.1700 +0 0.2055 +0 0.1710 +0 0.0783 +0 0.1909 +0 0.2052 +0 0.0878 +0 0.0567 +0 0.1909 +0 0.0499 +0 0.0916 +0 0.1116 +0 0.0427 +0 0.0956 +0 0.2532 +0 0.0838 +0 0.1109 +0 0.0579 +0 0.2285 +0 0.6118 +0 0.1632 +0 0.0585 +0 0.0776 +0 0.2549 +0 0.0788 +0 0.1017 +0 0.0640 +0 0.1467 +0 0.0447 +0 0.1502 +0 0.0697 +0 0.1392 +0 0.1318 +0 0.1778 +0 0.1336 +0 0.0414 +0 0.0899 +0 0.1827 +0 0.1975 +0 0.0404 +0 0.0698 +0 0.0974 +0 0.0663 +0 0.0577 +0 0.1426 +0 0.0812 +0 0.3010 +0 0.2029 +0 0.1110 +0 0.1066 +0 0.0856 +0 0.0773 +0 0.1821 +0 0.1621 +0 0.0876 +0 0.1618 +0 0.0711 +0 0.0896 +0 0.1326 +0 0.0949 +0 0.1827 +0 0.0340 +0 0.0876 +0 0.1004 +0 0.0352 +0 0.0957 +0 0.1013 +0 0.1001 +0 0.0564 +0 0.2992 +0 0.0817 +0 0.2559 +0 0.0527 +0 0.0742 +0 0.0981 +0 0.0919 +0 0.0488 +0 0.0473 +0 0.0545 +0 0.1393 +0 0.1704 +0 0.0549 +0 0.1457 +0 0.3833 +0 0.0551 +0 0.1959 +0 0.1324 +0 0.2530 +0 0.1409 +0 0.4953 +0 0.4752 +0 0.0781 +0 0.1468 +0 0.0403 +0 0.0673 +0 0.0645 +0 0.1418 +0 0.1507 +0 0.2143 +0 0.0735 +0 0.1032 +1 0.8654 +0 0.0645 +0 0.0618 +0 0.1150 +0 0.0923 +0 0.0346 +0 0.2016 +0 0.1336 +0 0.0337 +1 0.8569 +0 0.0787 +0 0.2934 +0 0.1510 +0 0.0380 +0 0.0548 +0 0.1587 +0 0.0808 +0 0.0746 +0 0.1069 +0 0.0504 +0 0.0481 +0 0.1411 +0 0.1344 +0 0.1330 +0 0.0998 +0 0.0522 +0 0.7362 +0 0.1369 +0 0.2304 +0 0.4241 +0 0.1478 +0 0.1402 +0 0.1708 +0 0.0639 +0 0.1408 +0 0.0780 +0 0.3197 +0 0.2323 +0 0.0924 +0 0.1727 +0 0.0379 +0 0.0521 +0 0.0688 +0 0.1104 +0 0.0857 +0 0.1984 +0 0.4709 +0 0.5519 +0 0.0708 +0 0.0614 +0 0.1863 +0 0.0765 +0 0.1220 +1 0.8456 +0 0.1133 +0 0.4771 +0 0.0836 +0 0.0662 +0 0.1176 +0 0.1027 +0 0.0901 +0 0.0762 +0 0.2348 +1 0.7991 +0 0.0738 +0 0.0713 +0 0.0902 +0 0.0470 +0 0.0470 +0 0.2306 +0 0.0860 +0 0.1306 +0 0.0633 +0 0.1506 +0 0.0657 +1 0.8312 +0 0.0563 +0 0.1257 +0 0.1235 +0 0.0804 +0 0.0686 +0 0.2763 +0 0.0605 +0 0.2078 +0 0.1166 +0 0.0890 +0 0.1284 +0 0.2814 +0 0.0698 +0 0.3484 +0 0.2661 +0 0.1816 +0 0.0573 +0 0.1350 +0 0.0510 +0 0.0664 +0 0.1000 +0 0.0921 +1 0.7828 +0 0.1259 +0 0.0570 +0 0.1717 +0 0.0835 +0 0.0688 +0 0.1061 +0 0.2316 +0 0.1911 +0 0.1720 +0 0.1023 +0 0.1274 +0 0.1263 +0 0.1002 +0 0.1172 +0 0.0893 +0 0.1675 +0 0.0854 +0 0.0902 +0 0.1615 +0 0.1811 +0 0.2978 +0 0.7388 +0 0.0887 +0 0.1226 +0 0.1255 +0 0.0405 +0 0.0705 +0 0.0721 +0 0.0469 +0 0.0876 +0 0.0733 +0 0.1184 +0 0.2274 +0 0.0391 +0 0.0776 +0 0.1255 +0 0.2294 +0 0.2412 +0 0.0935 +0 0.1229 +0 0.1095 +0 0.0420 +0 0.0770 +0 0.1711 +0 0.1018 +0 0.2452 +0 0.2257 +0 0.0495 +0 0.0784 +0 0.2446 +1 0.8640 +0 0.0503 +0 0.0798 +0 0.0520 +0 0.2484 +0 0.1081 +0 0.1353 +0 0.0978 +0 0.1703 +0 0.0448 +0 0.0795 +0 0.1031 +0 0.1011 +0 0.4546 +0 0.0479 +0 0.0677 +0 0.0619 +0 0.0600 +0 0.0937 +0 0.1264 +0 0.2255 +0 0.1195 +0 0.5092 +0 0.3088 +0 0.1132 +0 0.0883 +0 0.0822 +0 0.0813 +0 0.0428 +0 0.1201 +0 0.2551 +0 0.1195 +0 0.1188 +0 0.0814 +0 0.1022 +0 0.0871 +0 0.1676 +0 0.0941 +0 0.2131 +0 0.1245 +0 0.1506 +0 0.0593 +0 0.2098 +0 0.0823 +0 0.0640 +0 0.0901 +0 0.4317 +0 0.1098 +0 0.2681 +1 0.8819 +0 0.0926 +0 0.1305 +0 0.0579 +0 0.1339 +0 0.0951 +0 0.1203 +0 0.1023 +0 0.2450 +0 0.2923 +0 0.2283 +0 0.0416 +1 0.8362 +0 0.1419 +0 0.1434 +0 0.0909 +0 0.0676 +0 0.1782 +0 0.0432 +0 0.1173 +0 0.1276 +0 0.1430 +0 0.0862 +0 0.4393 +0 0.0374 +0 0.1742 +0 0.2542 +0 0.1270 +0 0.0533 +0 0.1989 +0 0.0744 +0 0.0877 +0 0.1118 +0 0.1650 +0 0.0717 +0 0.0483 +0 0.1365 +0 0.0908 +0 0.5662 +0 0.1203 +0 0.1245 +0 0.2130 +0 0.1067 +0 0.1940 +0 0.0464 +0 0.1001 +0 0.7184 +0 0.7147 +0 0.1038 +0 0.2114 +0 0.1834 +0 0.1070 +0 0.1269 +0 0.1506 +0 0.1256 +0 0.1310 +0 0.2365 +0 0.0401 +0 0.0867 +0 0.0760 +0 0.0699 +0 0.2323 +0 0.3516 +0 0.0494 +0 0.1414 +0 0.0945 +0 0.0486 +0 0.1167 +0 0.0897 +0 0.0665 +0 0.0362 +0 0.0588 +0 0.0790 +0 0.0410 +0 0.0578 +0 0.2833 +0 0.0558 +1 0.8333 +0 0.2422 +0 0.2015 +0 0.3210 +0 0.1139 +0 0.0729 +0 0.0536 +0 0.3512 +0 0.2671 +0 0.0738 +0 0.1492 +0 0.7161 +0 0.0432 +0 0.0953 +1 0.8257 +0 0.1032 +0 0.1996 +0 0.0607 +0 0.1096 +0 0.2803 +0 0.1174 +0 0.0809 +0 0.1284 +0 0.2910 +0 0.0534 +0 0.1098 +0 0.1451 +0 0.0880 +0 0.2458 +0 0.0363 +0 0.2344 +0 0.4371 +0 0.1127 +0 0.0845 +0 0.1210 +0 0.0866 +0 0.1067 +0 0.1088 +0 0.2131 +0 0.1238 +0 0.1928 +0 0.1434 +0 0.0428 +0 0.1582 +0 0.2643 +0 0.2347 +0 0.2038 +0 0.1598 +0 0.1485 +0 0.0751 +0 0.1101 +0 0.0763 +0 0.1004 +0 0.1317 +0 0.1308 +0 0.2492 +0 0.1508 +0 0.0514 +0 0.0585 +0 0.2007 +0 0.0898 +0 0.0740 +0 0.1059 +0 0.0651 +0 0.0706 +0 0.2582 +0 0.1312 +0 0.1118 +0 0.1009 +0 0.0711 +0 0.1125 +0 0.0977 +0 0.1718 +0 0.5724 +0 0.0751 +0 0.1009 +0 0.0860 +0 0.0729 +0 0.2812 +0 0.0407 +0 0.0931 +0 0.2036 +0 0.0952 +0 0.0908 +0 0.0543 +0 0.1733 +0 0.0705 +0 0.0655 +0 0.0771 +0 0.1266 +0 0.0424 +0 0.1443 +0 0.0877 +0 0.0855 +0 0.1875 +0 0.0650 +0 0.0973 +0 0.1714 +0 0.2012 +0 0.0865 +0 0.0810 +0 0.1151 +0 0.0924 +0 0.0618 +0 0.2506 +0 0.0794 +0 0.0975 +0 0.0562 +0 0.1573 +0 0.1641 +0 0.1476 +1 0.7950 +0 0.2004 +0 0.0536 +0 0.1447 +0 0.0808 +0 0.1186 +0 0.1073 +0 0.2034 +0 0.1044 +0 0.1415 +0 0.7186 +0 0.0571 +0 0.1732 +0 0.7330 +0 0.1553 +0 0.0952 +0 0.1094 +0 0.1306 +0 0.1264 +0 0.0925 +0 0.0596 +0 0.0639 +0 0.0732 +0 0.0533 +0 0.2089 +0 0.0311 +0 0.2037 +0 0.0834 +0 0.2614 +0 0.0598 +0 0.0620 +0 0.1182 +0 0.1169 +0 0.0633 +0 0.1514 +0 0.0613 +0 0.4801 +0 0.0856 +0 0.0515 +0 0.2171 +0 0.0799 +0 0.1795 +0 0.1853 +0 0.0729 +0 0.1341 +0 0.1919 +0 0.1100 +0 0.0864 +0 0.0679 +0 0.1457 +0 0.1459 +0 0.1038 +0 0.1828 +0 0.0928 +0 0.0685 +0 0.0390 +0 0.1106 +0 0.0593 +0 0.0553 +0 0.1054 +0 0.0599 +0 0.0518 +0 0.0721 +0 0.1958 +0 0.1564 +0 0.1706 +0 0.0446 +0 0.1343 +0 0.0612 +0 0.1715 +0 0.0675 +0 0.0727 +0 0.1630 +0 0.7001 +0 0.3321 +0 0.2131 +0 0.1178 +0 0.0762 +0 0.0973 +0 0.2461 +0 0.0770 +0 0.0790 +0 0.0649 +0 0.0534 +0 0.2168 +0 0.0451 +0 0.1500 +0 0.2848 +0 0.1018 +0 0.1068 +0 0.0692 +0 0.0897 +0 0.0964 +0 0.2820 +0 0.0899 +0 0.1391 +0 0.2174 +0 0.0897 +0 0.1310 +0 0.0769 +0 0.0805 +0 0.1275 +0 0.2024 +0 0.0720 +0 0.1055 +0 0.0657 +0 0.1703 +0 0.0913 +0 0.0366 +0 0.1303 +0 0.0757 +0 0.0778 +0 0.1639 +0 0.1069 +1 0.7964 +0 0.0745 +0 0.1373 +0 0.0544 +0 0.0728 +0 0.0386 +0 0.1262 +0 0.0933 +1 0.8777 +0 0.0609 +0 0.0875 +0 0.0980 +0 0.1874 +0 0.1972 +0 0.0758 +0 0.0783 +0 0.6429 +0 0.0514 +0 0.1561 +0 0.1586 +0 0.1610 +0 0.1501 +0 0.0623 +0 0.1329 +0 0.0790 +0 0.1198 +0 0.1395 +0 0.0799 +0 0.0715 +0 0.0675 +0 0.0457 +0 0.0541 +0 0.4186 +0 0.2624 +0 0.2191 +0 0.2102 +0 0.1154 +0 0.0592 +0 0.1838 +0 0.1003 +0 0.4810 +0 0.1772 +0 0.1438 +0 0.2066 +0 0.1003 +0 0.1349 +0 0.0490 +0 0.0812 +0 0.3587 +0 0.0712 +0 0.1366 +0 0.1843 +0 0.2475 +0 0.2820 +0 0.1219 +0 0.0971 +0 0.1455 +0 0.1003 +0 0.0745 +0 0.4887 +0 0.1060 +0 0.3350 +0 0.2081 +0 0.0692 +0 0.1590 +0 0.2419 +0 0.0999 +0 0.1169 +0 0.1039 +0 0.0846 +0 0.0706 +0 0.0977 +0 0.5601 +0 0.1159 +0 0.3337 +0 0.0602 +0 0.2232 +0 0.0724 +0 0.0833 +0 0.0871 +0 0.1171 +0 0.0816 +0 0.0552 +0 0.0876 +0 0.1574 +0 0.1494 +0 0.0400 +0 0.0902 +1 0.7649 +0 0.1823 +0 0.0526 +0 0.2479 +0 0.0707 +0 0.0967 +0 0.1388 +0 0.0548 +0 0.1056 +0 0.1961 +0 0.2019 +0 0.2277 +0 0.0846 +0 0.4855 +0 0.0963 +0 0.0812 +0 0.1045 +0 0.0815 +0 0.0460 +0 0.1946 +0 0.1238 +0 0.2459 +0 0.0677 +0 0.1573 +0 0.5718 +0 0.0846 +0 0.1389 +0 0.3184 +0 0.0469 +0 0.0681 +0 0.1040 +0 0.0450 +0 0.1002 +0 0.0827 +0 0.0540 +0 0.0887 +0 0.1691 +1 0.7642 +0 0.1095 +0 0.0886 +0 0.0639 +0 0.1227 +0 0.6472 +0 0.1128 +0 0.1771 +0 0.0572 +0 0.5313 +0 0.1681 +0 0.0548 +0 0.0830 +0 0.1090 +0 0.4497 +0 0.1297 +1 0.8107 +0 0.5251 +0 0.0763 +0 0.1176 +0 0.1748 +0 0.0656 +0 0.1337 +0 0.0594 +0 0.4673 +0 0.3111 +0 0.1267 +0 0.0549 +0 0.2118 +0 0.0688 +0 0.0891 +0 0.1068 +0 0.0812 +0 0.1047 +0 0.3477 +0 0.0609 +0 0.0498 +1 0.8039 +0 0.0936 +0 0.0586 +0 0.6254 +1 0.8771 +0 0.0502 +0 0.0776 +0 0.1382 +0 0.0958 +0 0.1298 +0 0.1051 +0 0.1993 +0 0.0909 +0 0.0486 +0 0.1875 +0 0.0436 +0 0.0374 +0 0.2258 +0 0.2331 +0 0.1102 +0 0.0764 +0 0.1563 +0 0.5238 +0 0.3717 +0 0.1057 +0 0.0370 +0 0.4335 +0 0.1371 +0 0.1150 +0 0.0521 +0 0.1460 +0 0.4654 +0 0.0599 +0 0.0537 +0 0.1977 +0 0.0665 +0 0.1549 +0 0.0785 +1 0.8361 +0 0.5480 +0 0.1826 +0 0.2045 +0 0.0712 +0 0.0757 +0 0.1268 +0 0.2130 +0 0.0589 +0 0.1304 +0 0.1014 +0 0.0431 +0 0.1043 +0 0.0464 +0 0.4111 +0 0.1659 +0 0.0531 +0 0.1899 +0 0.0448 +0 0.2188 +0 0.1516 +0 0.1728 +0 0.1048 +0 0.1598 +0 0.2327 +0 0.0870 +0 0.0988 +0 0.0836 +0 0.1092 +0 0.0568 +0 0.1203 +0 0.0953 +0 0.1259 +0 0.1159 +0 0.1476 +0 0.0619 +0 0.1134 +0 0.1121 +0 0.1623 +1 0.8378 +0 0.3090 +0 0.2669 +0 0.0760 +0 0.1170 +0 0.1073 +0 0.2345 +0 0.1460 +0 0.0488 +0 0.1052 +0 0.1026 +0 0.1338 +0 0.1296 +0 0.2730 +0 0.1816 +0 0.0607 +0 0.0934 +0 0.1821 +0 0.1310 +0 0.5377 +0 0.0841 +0 0.2377 +0 0.0337 +0 0.1100 +0 0.2432 +0 0.1419 +0 0.0853 +0 0.0680 +0 0.1126 +0 0.0630 +0 0.1139 +0 0.1003 +0 0.1314 +0 0.1421 +0 0.1366 +0 0.1682 +0 0.0799 +0 0.0999 +0 0.0716 +0 0.0817 +0 0.0834 +0 0.0885 +0 0.0413 +0 0.0591 +0 0.1028 +0 0.1283 +0 0.0738 +0 0.2617 +0 0.3208 +0 0.1112 +0 0.0514 +0 0.2127 +0 0.1343 +0 0.1956 +0 0.1746 +0 0.1693 +0 0.0716 +0 0.0906 +0 0.1341 +0 0.0814 +0 0.1323 +0 0.1736 +1 0.7623 +0 0.1695 +0 0.1051 +0 0.1501 +0 0.0901 +0 0.0910 +0 0.0649 +0 0.0775 +0 0.1812 +0 0.0693 +0 0.0903 +0 0.1595 +0 0.0714 +0 0.1551 +1 0.8757 +0 0.2415 +0 0.1031 +0 0.1150 +0 0.1084 +0 0.0734 +0 0.2805 +0 0.1183 +0 0.5836 +0 0.1086 +0 0.1485 +0 0.1395 +0 0.0862 +0 0.1958 +0 0.0842 +0 0.1988 +0 0.1044 +0 0.1294 +0 0.0572 +0 0.0889 +0 0.1887 +0 0.1044 +0 0.2380 +0 0.0911 +0 0.0537 +0 0.1152 +0 0.2354 +0 0.0917 +0 0.2003 +0 0.0729 +0 0.2205 +0 0.1524 +0 0.1936 +0 0.1324 +0 0.1555 +0 0.4510 +0 0.0577 +0 0.0485 +0 0.0730 +0 0.0829 +0 0.2497 +0 0.0487 +0 0.0845 +0 0.1707 +0 0.0826 +0 0.0581 +0 0.1612 +0 0.0824 +0 0.5627 +0 0.0951 +0 0.2563 +0 0.6179 +0 0.0787 +0 0.1385 +0 0.0496 +0 0.1014 +0 0.0508 +0 0.1249 +0 0.1687 +0 0.0540 +0 0.1371 +0 0.7154 +0 0.3502 +0 0.1134 +0 0.1163 +0 0.0950 +0 0.0631 +0 0.1276 +0 0.0447 +0 0.1349 +0 0.1101 +0 0.1606 +0 0.0372 +0 0.0814 +0 0.2000 +0 0.0914 +0 0.0435 +0 0.1147 +0 0.0957 +0 0.2233 +1 0.7837 +0 0.3241 +0 0.0482 +0 0.1528 +0 0.1020 +0 0.0738 +0 0.0721 +0 0.1053 +0 0.0990 +0 0.7065 +0 0.1773 +0 0.0564 +0 0.0983 +0 0.0963 +0 0.1237 +0 0.1352 +0 0.0963 +0 0.0470 +0 0.2504 +0 0.0552 +0 0.6957 +0 0.1860 +0 0.1112 +0 0.1126 +0 0.0647 +0 0.0692 +0 0.1627 +0 0.0738 +0 0.1738 +0 0.0596 +0 0.1110 +0 0.1047 +0 0.2806 +0 0.0779 +0 0.0653 +0 0.6097 +0 0.0334 +0 0.0708 +0 0.1324 +0 0.2501 +0 0.0637 +0 0.1241 +0 0.1002 +0 0.0750 +0 0.0718 +0 0.1296 +0 0.1592 +0 0.1304 +0 0.0673 +0 0.0407 +0 0.0528 +0 0.5996 +0 0.1559 +0 0.0380 +0 0.0514 +0 0.3283 +0 0.3833 +0 0.2219 +0 0.0497 +0 0.0390 +0 0.1387 +0 0.1098 +0 0.3124 +0 0.3052 +0 0.0857 +0 0.4103 +0 0.0771 +0 0.1226 +0 0.5338 +0 0.1092 +0 0.2457 +0 0.0759 +0 0.0486 +0 0.0623 +0 0.0896 +0 0.1112 +0 0.1775 +0 0.1238 +0 0.0627 +0 0.0960 +0 0.0926 +0 0.0857 +0 0.0758 +0 0.0582 +0 0.0602 +0 0.1478 +0 0.0678 +0 0.0896 +0 0.2235 +0 0.0850 +0 0.0508 +0 0.1298 +0 0.0752 +0 0.0777 +0 0.1010 +0 0.1410 +0 0.1323 +0 0.0911 +0 0.1661 +1 0.7894 +0 0.1911 +0 0.0678 +0 0.1969 +0 0.0821 +0 0.0456 +0 0.0775 +0 0.1016 +0 0.2013 +0 0.1109 +0 0.0896 +0 0.0576 +0 0.3162 +0 0.3697 +0 0.1897 +0 0.0687 +0 0.2247 +0 0.0961 +0 0.0929 +0 0.0828 +0 0.0457 +0 0.0749 +0 0.1001 +0 0.0271 +0 0.0367 +0 0.6190 +0 0.1693 +0 0.0578 +0 0.1395 +0 0.0371 +0 0.0981 +0 0.0626 +0 0.1576 +0 0.1798 +0 0.0709 +0 0.1334 +0 0.0777 +0 0.0692 +0 0.0940 +0 0.1005 +0 0.3596 +0 0.1445 +0 0.0807 +0 0.1331 +0 0.0362 +0 0.1006 +0 0.2931 +0 0.1346 +0 0.1768 +0 0.0528 +0 0.1207 +0 0.1093 +0 0.0406 +0 0.0422 +0 0.1159 +0 0.1503 +0 0.0671 +0 0.1471 +0 0.0446 +0 0.2859 +0 0.0697 +1 0.8704 +0 0.0825 +0 0.1268 +0 0.3801 +0 0.0809 +0 0.0544 +0 0.1343 +0 0.1755 +0 0.2552 +0 0.1500 +0 0.1479 +0 0.1508 +0 0.3263 +0 0.0705 +0 0.1066 +0 0.1127 +0 0.0886 +0 0.1385 +0 0.0591 +0 0.0512 +0 0.3200 +0 0.6655 +0 0.0985 +0 0.1437 +0 0.1979 +0 0.0885 +0 0.0648 +0 0.2155 +0 0.4541 +0 0.0911 +0 0.0790 +0 0.0605 +0 0.0636 +0 0.0935 +1 0.8662 +0 0.1193 +0 0.1506 +0 0.1131 +0 0.0801 +0 0.0968 +0 0.2355 +0 0.2134 +0 0.1629 +0 0.1437 +0 0.1161 +0 0.1001 +0 0.6280 +0 0.4958 +0 0.1124 +0 0.1580 +0 0.1123 +0 0.2119 +0 0.0982 +0 0.0993 +0 0.4860 +0 0.0625 +0 0.0902 +0 0.1236 +0 0.1651 +0 0.0392 +0 0.0650 +0 0.1369 +0 0.3013 +0 0.2052 +0 0.0828 +0 0.1647 +0 0.0767 +0 0.0959 +0 0.0883 +0 0.1906 +0 0.4286 +0 0.1063 +0 0.1255 +0 0.0665 +0 0.0470 +0 0.2227 +0 0.2801 +1 0.8213 +0 0.0381 +0 0.0981 +0 0.3657 +0 0.1366 +0 0.0695 +0 0.0791 +0 0.0359 +0 0.0812 +0 0.1236 +0 0.0782 +0 0.0825 +0 0.0835 +0 0.0793 +0 0.1956 +0 0.0800 +0 0.2217 +0 0.1340 +0 0.0661 +0 0.1197 +0 0.0659 +0 0.1698 +0 0.0684 +0 0.3014 +0 0.0617 +0 0.1012 +0 0.6956 +0 0.0952 +0 0.0488 +0 0.1657 +0 0.0823 +0 0.0821 +0 0.0854 +0 0.0329 +0 0.1068 +0 0.1677 +0 0.0577 +0 0.0971 +0 0.0886 +0 0.1485 +0 0.0758 +0 0.0949 +0 0.0676 +0 0.2042 +0 0.0699 +0 0.0741 +0 0.2079 +0 0.0936 +0 0.0732 +0 0.1612 +0 0.1293 +0 0.3312 +0 0.0990 +0 0.1818 +0 0.1905 +0 0.1940 +0 0.1174 +0 0.1044 +0 0.1234 +0 0.1888 +0 0.0863 +0 0.1743 +0 0.1024 +0 0.0816 +0 0.3536 +0 0.0997 +0 0.0967 +0 0.1935 +0 0.1172 +0 0.0607 +0 0.0811 +0 0.1591 +0 0.1258 +0 0.0699 +0 0.2876 +0 0.0659 +0 0.0784 +0 0.1787 +0 0.2446 +0 0.1149 +0 0.0629 +0 0.5134 +0 0.3092 +0 0.0599 +0 0.0430 +0 0.1860 +0 0.1017 +0 0.0683 +0 0.1439 +0 0.1089 +0 0.1371 +0 0.2267 +1 0.8226 +0 0.1093 +0 0.0949 +0 0.1264 +0 0.0823 +0 0.0451 +0 0.0805 +1 0.8000 +0 0.0925 +0 0.0966 +0 0.1055 +0 0.1282 +0 0.0388 +0 0.1458 +0 0.0975 +0 0.1280 +0 0.6188 +0 0.1897 +0 0.2707 +0 0.0688 +0 0.1387 +0 0.0803 +0 0.2582 +0 0.1495 +0 0.1085 +0 0.0681 +0 0.1049 +0 0.1341 +0 0.0896 +0 0.2489 +0 0.0613 +0 0.3196 +0 0.0872 +0 0.1490 +0 0.1756 +0 0.1357 +0 0.1963 +0 0.1107 +0 0.0539 +0 0.0811 +0 0.0500 +0 0.0938 +0 0.1656 +0 0.0772 +0 0.0701 +0 0.0513 +0 0.1546 +1 0.8100 +0 0.1277 +0 0.2062 +0 0.0679 +0 0.2006 +0 0.1348 +0 0.0616 +0 0.0665 +0 0.1790 +0 0.1025 +0 0.1129 +0 0.1714 +0 0.0961 +0 0.0672 +0 0.0868 +0 0.0913 +0 0.0904 +0 0.1104 +0 0.1123 +0 0.0894 +0 0.0947 +0 0.0932 +0 0.1033 +0 0.0783 +0 0.0854 +0 0.1060 +0 0.3868 +0 0.0820 +0 0.1872 +0 0.0856 +0 0.0498 +0 0.0759 +0 0.1312 +0 0.0972 +0 0.1066 +0 0.0550 +0 0.0952 +0 0.0926 +0 0.0531 +0 0.3428 +0 0.0774 +0 0.0645 +0 0.1235 +0 0.4534 +0 0.1258 +0 0.1460 +0 0.0624 +0 0.0503 +0 0.0841 +0 0.2006 +0 0.0857 +0 0.1850 +0 0.0588 +0 0.0951 +0 0.1020 +0 0.1855 +0 0.1618 +0 0.0494 +0 0.1185 +0 0.0900 +0 0.0928 +0 0.3192 +0 0.1224 +0 0.0807 +0 0.2396 +0 0.0790 +0 0.0688 +0 0.1852 +0 0.1467 +0 0.0770 +0 0.3093 +0 0.0440 +0 0.0951 +0 0.0564 +0 0.0751 +0 0.1392 +0 0.2223 +0 0.2284 +0 0.3732 +0 0.0740 +0 0.0558 +0 0.1971 +0 0.1146 +0 0.0671 +0 0.0624 +0 0.0428 +0 0.1392 +0 0.1033 +0 0.1388 +0 0.3417 +0 0.1338 +0 0.0724 +0 0.1581 +0 0.2326 +0 0.1533 +0 0.0878 +0 0.0732 +0 0.2069 +0 0.4895 +0 0.1662 +0 0.1767 +0 0.0794 +0 0.1436 +0 0.5425 +0 0.3361 +0 0.1736 +0 0.6279 +0 0.0686 +0 0.1754 +0 0.1526 +0 0.0902 +0 0.0508 +0 0.7063 +0 0.2137 +0 0.1195 +0 0.0856 +0 0.0560 +0 0.0722 +0 0.1267 +0 0.0782 +0 0.1112 +0 0.1219 +0 0.1038 +0 0.0492 +0 0.0949 +0 0.0730 +0 0.3796 +0 0.0819 +0 0.0922 +0 0.1565 +0 0.5726 +0 0.0764 +0 0.0712 +0 0.3693 +0 0.0907 +0 0.0315 +0 0.0956 +0 0.0805 +0 0.1240 +0 0.6521 +0 0.1016 +0 0.1191 +0 0.0525 +0 0.0411 +0 0.1128 +0 0.0675 +0 0.1269 +0 0.0702 +0 0.7290 +0 0.1308 +0 0.0397 +0 0.1754 +0 0.0424 +0 0.1021 +0 0.1516 +0 0.1150 +0 0.1728 +0 0.6729 +0 0.1578 +0 0.2643 +0 0.1122 +0 0.0696 +0 0.0473 +0 0.0376 +0 0.0629 +0 0.0418 +0 0.0477 +0 0.1507 +0 0.0409 +0 0.0488 +0 0.1678 +0 0.0657 +0 0.1677 +0 0.0706 +0 0.0615 +0 0.0582 +0 0.0481 +0 0.2396 +0 0.0683 +0 0.0540 +0 0.0662 +0 0.6289 +0 0.0968 +0 0.1573 +0 0.0493 +0 0.1699 +0 0.0528 +0 0.1776 +0 0.1065 +0 0.1608 +0 0.0558 +0 0.1096 +0 0.0607 +0 0.1186 +0 0.0953 +0 0.4898 +0 0.5513 +0 0.6360 +0 0.0965 +0 0.0869 +0 0.0519 +0 0.1304 +0 0.1160 +0 0.0766 +0 0.3217 +0 0.0638 +0 0.0660 +0 0.0643 +0 0.0645 +0 0.0955 +0 0.0847 +0 0.0848 +0 0.2514 +0 0.1131 +0 0.0785 +0 0.1849 +0 0.0565 +0 0.1238 +0 0.0872 +0 0.1280 +0 0.5206 +0 0.1513 +0 0.0857 +0 0.0656 +0 0.0561 +0 0.1136 +0 0.1721 +0 0.0733 +0 0.3076 +0 0.1409 +0 0.1504 +0 0.5407 +0 0.1004 +0 0.1206 +0 0.0992 +0 0.0784 +0 0.5374 +0 0.4537 +0 0.2945 +0 0.1757 +0 0.0448 +0 0.1607 +0 0.0672 +0 0.0820 +0 0.0882 +0 0.0701 +0 0.2971 +0 0.4158 +0 0.2426 +0 0.1705 +0 0.0645 +0 0.0855 +0 0.0470 +0 0.0802 +0 0.0929 +0 0.2365 +0 0.2162 +0 0.2676 +0 0.0976 +0 0.4513 +0 0.1466 +0 0.0759 +0 0.0961 +0 0.1643 +0 0.0598 +0 0.0507 +0 0.2311 +0 0.1528 +0 0.0908 +0 0.3265 +0 0.2068 +0 0.0569 +0 0.0687 +0 0.0561 +0 0.6224 +0 0.2571 +0 0.0421 +0 0.0872 +0 0.2625 +0 0.0792 +0 0.0814 +0 0.1937 +0 0.1836 +0 0.2082 +0 0.0513 +0 0.4725 +0 0.0692 +0 0.2019 +0 0.0966 +1 0.7945 +0 0.2499 +0 0.0732 +0 0.0631 +0 0.1381 +0 0.1281 +0 0.0566 +0 0.0880 +0 0.0779 +0 0.3825 +0 0.1897 +0 0.1514 +0 0.1566 +0 0.0796 +0 0.2971 +1 0.8765 +0 0.2435 +0 0.0428 +0 0.0606 +0 0.0810 +0 0.1675 +0 0.0426 +0 0.1362 +0 0.1286 +0 0.1084 +0 0.1497 +0 0.1057 +0 0.4087 +0 0.1654 +0 0.0681 +0 0.1007 +0 0.0846 +0 0.0919 +0 0.0632 +0 0.1350 +0 0.1073 +1 0.7791 +0 0.0982 +0 0.0800 +0 0.1451 +0 0.0387 +0 0.0706 +0 0.0716 +0 0.1350 +0 0.0561 +0 0.1335 +0 0.4844 +0 0.1655 +0 0.1978 +0 0.0533 +0 0.3391 +0 0.0953 +0 0.0684 +0 0.5367 +0 0.0691 +0 0.2590 +0 0.1326 +0 0.1569 +0 0.0781 +0 0.1155 +0 0.1575 +0 0.0693 +0 0.0552 +0 0.1067 +0 0.1513 +0 0.1264 +0 0.0982 +0 0.0859 +0 0.0529 +0 0.3664 +0 0.0529 +0 0.1060 +0 0.0890 +0 0.0926 +0 0.0956 +0 0.2733 +0 0.0711 +0 0.0750 +0 0.0966 +0 0.1894 +0 0.7296 +0 0.1345 +0 0.2330 +0 0.2037 +0 0.0751 +0 0.4693 +0 0.6087 +0 0.2901 +0 0.2416 +0 0.0641 +0 0.1071 +0 0.0421 +0 0.7266 +0 0.1138 +0 0.0391 +0 0.1934 +0 0.1081 +0 0.1065 +0 0.1505 +0 0.1178 +1 0.7895 +0 0.0468 +0 0.1929 +0 0.2150 +0 0.1265 +0 0.2132 +0 0.0673 +0 0.0557 +0 0.1040 +0 0.0982 +0 0.0728 +0 0.1593 +0 0.0858 +0 0.1892 +0 0.0827 +0 0.0595 +0 0.1290 +0 0.0573 +0 0.1081 +0 0.0488 +0 0.0858 +0 0.0851 +0 0.0730 +0 0.1652 +0 0.0397 +0 0.3559 +0 0.1733 +0 0.2595 +0 0.4198 +0 0.1300 +0 0.0579 +0 0.0423 +0 0.2157 +0 0.0585 +0 0.0768 +0 0.1458 +0 0.1027 +0 0.2285 +0 0.3207 +0 0.0796 +1 0.8537 +0 0.0630 +0 0.2769 +0 0.2303 +0 0.0745 +0 0.1063 +0 0.1012 +0 0.1922 +0 0.1818 +0 0.0860 +0 0.1563 +0 0.1531 +0 0.0946 +0 0.0852 +0 0.1302 +0 0.2021 +0 0.0940 +0 0.2496 +0 0.0572 +0 0.2758 +0 0.1668 +0 0.1264 +0 0.1425 +0 0.0473 +0 0.1930 +0 0.0627 +0 0.1408 +0 0.1492 +0 0.1465 +0 0.0612 +0 0.0912 +0 0.1752 +0 0.1099 +0 0.0793 +0 0.1333 +0 0.2162 +0 0.4257 +0 0.0721 +0 0.0891 +0 0.0606 +0 0.3192 +0 0.0928 +0 0.1205 +0 0.1057 +0 0.2891 +0 0.0876 +0 0.3036 +0 0.1124 +0 0.0567 +0 0.0872 +0 0.0511 +0 0.2092 +0 0.1000 +0 0.1260 +0 0.0818 +0 0.3559 +0 0.1048 +0 0.0641 +0 0.1899 +0 0.0600 +0 0.1376 +0 0.0572 +0 0.1682 +0 0.1301 +0 0.0853 +0 0.1252 +0 0.0535 +0 0.0813 +0 0.0433 +0 0.0996 +0 0.1353 +0 0.2414 +0 0.1577 +0 0.0387 +0 0.0933 +0 0.0948 +0 0.0617 +0 0.1153 +0 0.1142 +0 0.1128 +0 0.0860 +0 0.0780 +0 0.0394 +0 0.0903 +0 0.0451 +0 0.0794 +0 0.1067 +0 0.0537 +0 0.2504 +0 0.0602 +0 0.2335 +0 0.0916 +0 0.0557 +0 0.0909 +0 0.1616 +0 0.1507 +0 0.1213 +0 0.1141 +0 0.0538 +0 0.1359 +0 0.0948 +0 0.2107 +0 0.0388 +0 0.0906 +0 0.0507 +0 0.1073 +0 0.5804 +0 0.1285 +0 0.2495 +0 0.3934 +0 0.2164 +0 0.1929 +0 0.0538 +0 0.1267 +0 0.2775 +0 0.0812 +0 0.1976 +0 0.0596 +0 0.0845 +0 0.0576 +0 0.0930 +0 0.1162 +0 0.2131 +0 0.0881 +0 0.0686 +0 0.0800 +0 0.0977 +0 0.2071 +0 0.1608 +0 0.0555 +0 0.1356 +0 0.0935 +0 0.7242 +0 0.0833 +0 0.2053 +0 0.0520 +0 0.2739 +0 0.1325 +0 0.0545 +0 0.1215 +0 0.3026 +0 0.0524 +0 0.0825 +0 0.1198 +0 0.0844 +0 0.3015 +0 0.1003 +0 0.1734 +0 0.4476 +0 0.0572 +0 0.0978 +0 0.0984 +0 0.1110 +0 0.0881 +0 0.1642 +0 0.1754 +0 0.1303 +1 0.7957 +0 0.1940 +0 0.0646 +0 0.1183 +0 0.1178 +0 0.0931 +0 0.3442 +0 0.0647 +0 0.0650 +0 0.1397 +0 0.4054 +0 0.1944 +0 0.0373 +0 0.1182 +0 0.0885 +0 0.0966 +0 0.1832 +0 0.0759 +0 0.1448 +0 0.0741 +0 0.4109 +0 0.1464 +0 0.1831 +0 0.1656 +0 0.0813 +0 0.0575 +0 0.1842 +0 0.0803 +0 0.0760 +0 0.0753 +0 0.1386 +0 0.0872 +0 0.6442 +0 0.0713 +0 0.2290 +0 0.1344 +0 0.1666 +0 0.0753 +0 0.1766 +0 0.1116 +0 0.0755 +0 0.0568 +0 0.1458 +0 0.0720 +0 0.0760 +0 0.0876 +1 0.8630 +0 0.0544 +0 0.1392 +0 0.0966 +0 0.0836 +0 0.1218 +0 0.0556 +0 0.0619 +0 0.0542 +0 0.1845 +0 0.3682 +0 0.1324 +0 0.0863 +0 0.0813 +0 0.0571 +0 0.0514 +0 0.1221 +0 0.0644 +0 0.1014 +0 0.1521 +0 0.1404 +0 0.2019 +0 0.0926 +0 0.0651 +0 0.1214 +0 0.1367 +0 0.0626 +0 0.1168 +0 0.0362 +0 0.1038 +0 0.0623 +0 0.1507 +0 0.0532 +0 0.3570 +0 0.4750 +0 0.7490 +0 0.1737 +0 0.1248 +0 0.0995 +0 0.1333 +0 0.1267 +0 0.3178 +0 0.0529 +0 0.2341 +0 0.1168 +0 0.1426 +0 0.1204 +0 0.3696 +0 0.0390 +1 0.7791 +0 0.0770 +0 0.1506 +0 0.1563 +0 0.0327 +0 0.0665 +0 0.1577 +0 0.0837 +0 0.6768 +0 0.0650 +0 0.0909 +0 0.7056 +0 0.0399 +0 0.0816 +0 0.1284 +0 0.1979 +0 0.2177 +0 0.0519 +0 0.1245 +0 0.0984 +0 0.3398 +0 0.7439 +0 0.0956 +0 0.0934 +0 0.0440 +0 0.1409 +0 0.0528 +0 0.2164 +0 0.0369 +0 0.1523 +0 0.4517 +0 0.0557 +0 0.1529 +0 0.0714 +0 0.1157 +0 0.1402 +0 0.1419 +0 0.2182 +0 0.1574 +0 0.1009 +0 0.1248 +0 0.1075 +1 0.8550 +0 0.0515 +0 0.1131 +0 0.0446 +0 0.1243 +0 0.1032 +0 0.1566 +0 0.0318 +0 0.1168 +0 0.0967 +0 0.1550 +0 0.2108 +0 0.0388 +0 0.0641 +0 0.1109 +0 0.1621 +0 0.1737 +0 0.0581 +0 0.1059 +0 0.0833 +0 0.2172 +0 0.0452 +0 0.0382 +0 0.0569 +0 0.2016 +0 0.0534 +0 0.1428 +0 0.0602 +0 0.0884 +1 0.8343 +0 0.0518 +0 0.1058 +0 0.4084 +0 0.0658 +0 0.1682 +0 0.0682 +0 0.1229 +0 0.0623 +0 0.5531 +0 0.0537 +0 0.0584 +0 0.0822 +0 0.0639 +0 0.0797 +0 0.0934 +0 0.1025 +0 0.1505 +0 0.0938 +0 0.1766 +0 0.0886 +0 0.0541 +0 0.0503 +0 0.1158 +0 0.0573 +0 0.0531 +0 0.2108 +0 0.1057 +0 0.1243 +0 0.0818 +0 0.1158 +0 0.0470 +0 0.1228 +0 0.2413 +0 0.1045 +0 0.1140 +0 0.1309 +0 0.4269 +0 0.1294 +0 0.0613 +0 0.0713 +0 0.1984 +0 0.0619 +0 0.0934 +0 0.1242 +0 0.1067 +0 0.0547 +0 0.0455 +0 0.1875 +0 0.1752 +0 0.0838 +0 0.1081 +0 0.0594 +0 0.0593 +0 0.0764 +0 0.0545 +0 0.2770 +0 0.0704 +0 0.0824 +0 0.0813 +0 0.0601 +0 0.1023 +0 0.0450 +0 0.1109 +0 0.0906 +0 0.0590 +0 0.0927 +0 0.1031 +0 0.0359 +0 0.0664 +0 0.0528 +0 0.1912 +0 0.0638 +0 0.1725 +0 0.0538 +0 0.0622 +0 0.0756 +0 0.0338 +0 0.0892 +0 0.0816 +0 0.1067 +0 0.0568 +0 0.0684 +0 0.5498 +0 0.1392 +0 0.1392 +0 0.0585 +0 0.1671 +0 0.0611 +0 0.2761 +0 0.2814 +0 0.1096 +0 0.6809 +0 0.3407 +0 0.0340 +0 0.0630 +0 0.1186 +0 0.1680 +0 0.1692 +0 0.0429 +0 0.2011 +0 0.0662 +0 0.1253 +0 0.1291 +0 0.1164 +0 0.1213 +0 0.1021 +0 0.1470 +0 0.1035 +0 0.1994 +0 0.1846 +0 0.1577 +0 0.1074 +0 0.0406 +0 0.0510 +0 0.1012 +0 0.0576 +0 0.0768 +0 0.0679 +0 0.2404 +0 0.0845 +0 0.0744 +0 0.0680 +0 0.0991 +0 0.0559 +0 0.0448 +0 0.0986 +0 0.0419 +0 0.0714 +0 0.1095 +0 0.1069 +0 0.0972 +0 0.1029 +0 0.1762 +0 0.0680 +0 0.0509 +0 0.1739 +0 0.6724 +0 0.1760 +0 0.1418 +0 0.1151 +0 0.1399 +0 0.1804 +0 0.0992 +0 0.1273 +0 0.2322 +0 0.2020 +0 0.0696 +0 0.1238 +0 0.0319 +0 0.0743 +0 0.1053 +0 0.5034 +0 0.2734 +0 0.2269 +0 0.1509 +0 0.6547 +0 0.2460 +0 0.0765 +0 0.1118 +0 0.1668 +0 0.1133 +0 0.0506 +0 0.0787 +0 0.0929 +0 0.2428 +0 0.0863 +0 0.0733 +0 0.1213 +0 0.0732 +0 0.0795 +0 0.0694 +0 0.1306 +0 0.1012 +0 0.2212 +0 0.1035 +0 0.0673 +0 0.2928 +0 0.2848 +0 0.0711 +0 0.1745 +0 0.1382 +0 0.1129 +0 0.4920 +0 0.2825 +0 0.1007 +0 0.2329 +0 0.0956 +0 0.3027 +0 0.1940 +0 0.1526 +0 0.0872 +0 0.4561 +0 0.1730 +0 0.1704 +0 0.0643 +0 0.1965 +0 0.0939 +1 0.3180 +0 0.1430 +0 0.2473 +0 0.2012 +0 0.0660 +0 0.0857 +0 0.0913 +0 0.3232 +0 0.2370 +0 0.0405 +0 0.2108 +0 0.1411 +0 0.1031 +0 0.0628 +0 0.0750 +0 0.1022 +0 0.1034 +0 0.1028 +0 0.0421 +0 0.0747 +0 0.0575 +0 0.0859 +0 0.0847 +0 0.0496 +0 0.2160 +0 0.2222 +0 0.5292 +0 0.1247 +0 0.1688 +0 0.1320 +0 0.1361 +0 0.1363 +0 0.1363 +0 0.0610 +0 0.0575 +0 0.1056 +0 0.0977 +0 0.0526 +0 0.0721 +0 0.2180 +0 0.1505 +0 0.0362 +0 0.1790 +0 0.2000 +0 0.0475 +0 0.1731 +0 0.0696 +0 0.0868 +0 0.1435 +0 0.1148 +0 0.1851 +0 0.2040 +0 0.0781 +0 0.1855 +0 0.0910 +0 0.2379 +0 0.1287 +0 0.1239 +0 0.1987 +0 0.1563 +0 0.1083 +0 0.3497 +0 0.1159 +0 0.0993 +0 0.2470 +0 0.0721 +0 0.0913 +0 0.2750 +0 0.1243 +0 0.0722 +0 0.0430 +0 0.0746 +0 0.0821 +0 0.0709 +0 0.1208 +0 0.3436 +0 0.2509 +0 0.0639 +0 0.0611 +0 0.0727 +0 0.1318 +0 0.0562 +0 0.0512 +0 0.1323 +0 0.1061 +0 0.1927 +0 0.1744 +0 0.0818 +0 0.1279 +0 0.0992 +0 0.0890 +0 0.1710 +0 0.1350 +0 0.0644 +0 0.0588 +0 0.1537 +0 0.1677 +0 0.2704 +0 0.2570 +0 0.0998 +0 0.4790 +0 0.2140 +0 0.1293 +0 0.0712 +0 0.1222 +0 0.0813 +0 0.3134 +0 0.1249 +0 0.0449 +0 0.2891 +0 0.1416 +0 0.0382 +0 0.2635 +0 0.0832 +0 0.0818 +0 0.1165 +0 0.0905 +0 0.0831 +0 0.1086 +0 0.2649 +0 0.1953 +0 0.2311 +0 0.1045 +0 0.1856 +0 0.1937 +0 0.1884 +0 0.0440 +0 0.1249 +0 0.0456 +0 0.1112 +0 0.1443 +0 0.1681 +0 0.0586 +0 0.0694 +0 0.0862 +0 0.1256 +0 0.2442 +0 0.1029 +0 0.0867 +0 0.0820 +0 0.1839 +0 0.1887 +0 0.1806 +0 0.0444 +0 0.1042 +0 0.1170 +0 0.0478 +0 0.1836 +0 0.4315 +0 0.0944 +0 0.0844 +0 0.0809 +0 0.0381 +0 0.0716 +0 0.0448 +0 0.0981 +0 0.0378 +0 0.0871 +0 0.1721 +0 0.1286 +0 0.0429 +0 0.0628 +0 0.0722 +0 0.2252 +0 0.0461 +0 0.1727 +0 0.1812 +0 0.0885 +0 0.1178 +0 0.2834 +0 0.4135 +0 0.0911 +0 0.1261 +0 0.0939 +0 0.0656 +0 0.1339 +0 0.1014 +0 0.1501 +0 0.2020 +0 0.0592 +0 0.0896 +0 0.2277 +0 0.2130 +0 0.1922 +0 0.0774 +0 0.0693 +0 0.0583 +0 0.1532 +0 0.0807 +0 0.1259 +0 0.1483 +0 0.0881 +0 0.1247 +0 0.1766 +0 0.0888 +0 0.1437 +1 0.8591 +0 0.0575 +0 0.1529 +0 0.2484 +0 0.0576 +0 0.1011 +0 0.1162 +0 0.0819 +0 0.1081 +0 0.1550 +0 0.2569 +0 0.0895 +0 0.0404 +0 0.0897 +0 0.2056 +0 0.1997 +0 0.1222 +0 0.6412 +0 0.0597 +0 0.1714 +0 0.3765 +0 0.2354 +0 0.1860 +0 0.2006 +0 0.1011 +0 0.0993 +0 0.0748 +0 0.1269 +0 0.3307 +0 0.1013 +0 0.0296 +0 0.0715 +0 0.1696 +0 0.0984 +0 0.1187 +0 0.0942 +0 0.0676 +0 0.0352 +0 0.1521 +0 0.0614 +0 0.0282 +0 0.1223 +0 0.0526 +0 0.1529 +0 0.4840 +0 0.0919 +0 0.1160 +0 0.3688 +0 0.1675 +0 0.1434 +0 0.0864 +0 0.1966 +0 0.0541 +0 0.3381 +0 0.0592 +0 0.1805 +0 0.1056 +0 0.1011 +0 0.0893 +0 0.0312 +0 0.3005 +0 0.1619 +0 0.0291 +0 0.1156 +0 0.2391 +0 0.1034 +0 0.7216 +0 0.2323 +0 0.1813 +1 0.8671 +0 0.0666 +0 0.1088 +0 0.1267 +0 0.1398 +0 0.0493 +0 0.0878 +0 0.4065 +0 0.2216 +0 0.1507 +0 0.0793 +0 0.1146 +0 0.0580 +0 0.0568 +0 0.0463 +0 0.1733 +0 0.0706 +0 0.1328 +0 0.1307 +0 0.0942 +0 0.0471 +0 0.0469 +1 0.7984 +0 0.1110 +0 0.0781 +0 0.1291 +0 0.0616 +0 0.1136 +0 0.0985 +0 0.1777 +0 0.0995 +0 0.1157 +0 0.1098 +0 0.1024 +0 0.0405 +0 0.0707 +0 0.1318 +0 0.0981 +0 0.2178 +0 0.1216 +0 0.0635 +0 0.0445 +0 0.1037 +0 0.0641 +0 0.1043 +0 0.0566 +0 0.3340 +0 0.2069 +0 0.0734 +0 0.7312 +0 0.0662 +0 0.1631 +0 0.1045 +0 0.1117 +0 0.0996 +0 0.1010 +0 0.1055 +0 0.0626 +0 0.0588 +0 0.1513 +0 0.0396 +0 0.5552 +0 0.1760 +0 0.3292 +0 0.0393 +0 0.2113 +0 0.0358 +0 0.1455 +0 0.3614 +0 0.2059 +0 0.0828 +0 0.1153 +0 0.0892 +0 0.0727 +0 0.0775 +0 0.0713 +0 0.0750 +1 0.8204 +0 0.1166 +0 0.2443 +0 0.0461 +0 0.1501 +0 0.1366 +0 0.1401 +0 0.0441 +0 0.1169 +1 0.7868 +0 0.2109 +0 0.1615 +0 0.2061 +0 0.1815 +0 0.0642 +0 0.7258 +0 0.0437 +0 0.0422 +0 0.0600 +0 0.1037 +0 0.1194 +0 0.1221 +0 0.0904 +0 0.2228 +0 0.1101 +0 0.0839 +0 0.0796 +0 0.5756 +0 0.1358 +0 0.0621 +0 0.0890 +0 0.0912 +0 0.0662 +0 0.1253 +0 0.2308 +0 0.1153 +0 0.0595 +0 0.0685 +0 0.0862 +0 0.2560 +0 0.0989 +0 0.0657 +0 0.0843 +0 0.1233 +0 0.0549 +0 0.0844 +0 0.0509 +0 0.0455 +0 0.0395 +0 0.0943 +0 0.1020 +0 0.1004 +0 0.2709 +0 0.2928 +0 0.1351 +0 0.0551 +0 0.1149 +0 0.1180 +0 0.2462 +0 0.1046 +0 0.1161 +0 0.1879 +0 0.0708 +0 0.2098 +0 0.2181 +0 0.1566 +0 0.1059 +0 0.0592 +0 0.0315 +0 0.1119 +0 0.1365 +0 0.0672 +0 0.1034 +0 0.0892 +0 0.2651 +0 0.0747 +0 0.1192 +0 0.2579 +0 0.4394 +0 0.0926 +0 0.2166 +0 0.4215 +0 0.1036 +1 0.7798 +0 0.0931 +0 0.0703 +0 0.1456 +0 0.0766 +0 0.0905 +0 0.2353 +0 0.0951 +0 0.0575 +0 0.0340 +0 0.7331 +0 0.1229 +0 0.1302 +0 0.0749 +0 0.3155 +0 0.1565 +0 0.3653 +0 0.1380 +0 0.0377 +0 0.1267 +0 0.0652 +0 0.2882 +0 0.0468 +0 0.1409 +0 0.0383 +0 0.0586 +0 0.1337 +0 0.0498 +0 0.0993 +0 0.2976 +0 0.1421 +0 0.0905 +0 0.0710 +0 0.1422 +0 0.0665 +0 0.0845 +0 0.2112 +0 0.1480 +0 0.0871 +0 0.1308 +0 0.0742 +0 0.1148 +0 0.1081 +0 0.1643 +0 0.0912 +0 0.1785 +0 0.0513 +0 0.1537 +0 0.1996 +0 0.0641 +0 0.1475 +0 0.0569 +0 0.1076 +0 0.0621 +0 0.0829 +0 0.1547 +0 0.0811 +0 0.1198 +0 0.1176 +0 0.0755 +0 0.0582 +0 0.0789 +0 0.1429 +0 0.1281 +0 0.0519 +0 0.1069 +0 0.1898 +0 0.4890 +0 0.4748 +0 0.1042 +0 0.0934 +0 0.1330 +0 0.0817 +0 0.1946 +0 0.1157 +0 0.1336 +0 0.1192 +0 0.1494 +0 0.1247 +0 0.0739 +0 0.1726 +0 0.0317 +0 0.2531 +0 0.0894 +0 0.0747 +0 0.4036 +0 0.0778 +0 0.2527 +0 0.1191 +0 0.0860 +0 0.1194 +0 0.0518 +0 0.2705 +0 0.1848 +0 0.1589 +0 0.0930 +0 0.0594 +0 0.0764 +0 0.3272 +0 0.1046 +0 0.0899 +0 0.4690 +0 0.1916 +0 0.1050 +0 0.1461 +0 0.0855 +0 0.0571 +0 0.0437 +0 0.4278 +0 0.0859 +0 0.1587 +0 0.0519 +0 0.0756 +0 0.1007 +0 0.2079 +0 0.1456 +0 0.1318 +0 0.1638 +1 0.8186 +0 0.0642 +0 0.0674 +0 0.1209 +0 0.1045 +0 0.0459 +0 0.1126 +0 0.1045 +0 0.0950 +0 0.1441 +1 0.8558 +0 0.1017 +0 0.0955 +0 0.0427 +0 0.0850 +0 0.0719 +0 0.0719 +0 0.1804 +0 0.1364 +0 0.1091 +0 0.0763 +0 0.0874 +0 0.0557 +0 0.5871 +1 0.8260 +0 0.0778 +0 0.1468 +0 0.2383 +0 0.1055 +0 0.2043 +0 0.1425 +0 0.1188 +0 0.1076 +0 0.1252 +0 0.1624 +0 0.0742 +0 0.0948 +0 0.7437 +0 0.2739 +0 0.1752 +0 0.0693 +0 0.1076 +0 0.1555 +0 0.3075 +0 0.1251 +0 0.2213 +0 0.0900 +0 0.2111 +0 0.0801 +0 0.0579 +0 0.1627 +0 0.0730 +0 0.1166 +0 0.0712 +1 0.3902 +0 0.0359 +0 0.0869 +0 0.1249 +0 0.1424 +0 0.0628 +0 0.1475 +0 0.0657 +0 0.6024 +0 0.1151 +0 0.0990 +0 0.0453 +0 0.0798 +0 0.0804 +0 0.0898 +0 0.1715 +0 0.1526 +0 0.0426 +1 0.7501 +0 0.1806 +0 0.0514 +0 0.0966 +0 0.0499 +0 0.0564 +0 0.1126 +0 0.1277 +0 0.0910 +0 0.0666 +0 0.2480 +0 0.0548 +0 0.1250 +0 0.6565 +0 0.2290 +0 0.1618 +0 0.0879 +0 0.1384 +0 0.0599 +0 0.0745 +0 0.1490 +0 0.0728 +0 0.0744 +0 0.1434 +0 0.0935 +0 0.7262 +0 0.1855 +0 0.0573 +0 0.1918 +0 0.3080 +0 0.2131 +0 0.1044 +0 0.0700 +0 0.0802 +0 0.2093 +0 0.0482 +0 0.0682 +0 0.0924 +0 0.0574 +0 0.0835 +0 0.1308 +0 0.1893 +0 0.3214 +0 0.1845 +0 0.2555 +0 0.0875 +0 0.3306 +0 0.2832 +0 0.0755 +0 0.0800 +0 0.1413 +0 0.0389 +0 0.6379 +0 0.1470 +0 0.0471 +0 0.0981 +0 0.0681 +0 0.4138 +0 0.0645 +0 0.0887 +0 0.1023 +0 0.1298 +0 0.1160 +0 0.0643 +0 0.3781 +0 0.2229 +0 0.0519 +0 0.0895 +0 0.0764 +0 0.1332 +0 0.2503 +0 0.0847 +0 0.0824 +0 0.1536 +0 0.1040 +0 0.0800 +0 0.2246 +0 0.0712 +0 0.0556 +0 0.0914 +0 0.0644 +0 0.0766 +0 0.1507 +0 0.2291 +0 0.2612 +0 0.6683 +0 0.0735 +0 0.1242 +0 0.3060 +0 0.1280 +0 0.1952 +0 0.1335 +0 0.1316 +0 0.1568 +0 0.3612 +0 0.0624 +1 0.8664 +0 0.0807 +0 0.0665 +0 0.0792 +0 0.1339 +0 0.1889 +0 0.0943 +0 0.1099 +0 0.1795 +0 0.7148 +0 0.0629 +0 0.0943 +0 0.0505 +0 0.2595 +0 0.0490 +0 0.2120 +0 0.1491 +0 0.1600 +0 0.2056 +0 0.0638 +0 0.2427 +0 0.7477 +0 0.1375 +0 0.0976 +0 0.0707 +0 0.0461 +0 0.1424 +0 0.1228 +0 0.2690 +0 0.0858 +0 0.1391 +0 0.2183 +0 0.0733 +0 0.1080 +0 0.2180 +0 0.0743 +0 0.0858 +0 0.5222 +0 0.1435 +0 0.0355 +0 0.0527 +0 0.0423 +0 0.2158 +0 0.2474 +0 0.0889 +0 0.0896 +0 0.1289 +0 0.0748 +0 0.0893 +0 0.1079 +0 0.2184 +0 0.0483 +0 0.1867 +0 0.2286 +0 0.1293 +0 0.0421 +0 0.1041 +0 0.0481 +0 0.0847 +0 0.1100 +0 0.0859 +0 0.2991 +0 0.3028 +0 0.0844 +0 0.0922 +0 0.0870 +0 0.0379 +0 0.1311 +0 0.1030 +0 0.1034 +0 0.0825 +0 0.1975 +0 0.0839 +0 0.1150 +0 0.1162 +0 0.0520 +0 0.6161 +0 0.0660 +0 0.0731 +0 0.1402 +0 0.0725 +0 0.0418 +0 0.2596 +0 0.0707 +0 0.1033 +0 0.1693 +0 0.0739 +0 0.1080 +0 0.1077 +0 0.0646 +0 0.0712 +0 0.2611 +0 0.2357 +0 0.1065 +0 0.0961 +0 0.1242 +0 0.0668 +0 0.1836 +0 0.0512 +0 0.1215 +0 0.1210 +0 0.1237 +0 0.2002 +0 0.0581 +1 0.7971 +0 0.1543 +0 0.0341 +0 0.0758 +0 0.2984 +0 0.0553 +0 0.0860 +0 0.0928 +0 0.0452 +0 0.1795 +0 0.1199 +0 0.0705 +0 0.0968 +1 0.8483 +0 0.1594 +0 0.0596 +0 0.2419 +0 0.1167 +0 0.0841 +0 0.2370 +0 0.0980 +0 0.3710 +0 0.0864 +0 0.0693 +0 0.3930 +0 0.1466 +0 0.1009 +0 0.0796 +0 0.0362 +0 0.1124 +0 0.0542 +0 0.0366 +0 0.0413 +0 0.0927 +0 0.2236 +0 0.1631 +0 0.1607 +0 0.2160 +0 0.1630 +0 0.1971 +0 0.0326 +0 0.0454 +0 0.1141 +0 0.2572 +0 0.0617 +0 0.0927 +0 0.0694 +1 0.8160 +0 0.4414 +0 0.4021 +0 0.2046 +0 0.1404 +0 0.0701 +0 0.0697 +0 0.2158 +0 0.0961 +0 0.1900 +0 0.0550 +0 0.1020 +0 0.0786 +0 0.1018 +0 0.3023 +0 0.2031 +0 0.1377 +0 0.0806 +0 0.0878 +0 0.0735 +0 0.2821 +0 0.1378 +0 0.0655 +0 0.0570 +0 0.1409 +0 0.0627 +0 0.1039 +0 0.1213 +0 0.0418 +0 0.5871 +0 0.0936 +0 0.0983 +0 0.0547 +0 0.1066 +0 0.0623 +0 0.0457 +0 0.0761 +0 0.1599 +0 0.2414 +0 0.0986 +0 0.2891 +0 0.0602 +0 0.0609 +0 0.0706 +1 0.8236 +0 0.0794 +0 0.1589 +0 0.0726 +0 0.1088 +0 0.1888 +0 0.0406 +0 0.6607 +0 0.0542 +0 0.0975 +0 0.1463 +0 0.0632 +0 0.0620 +0 0.1849 +0 0.1754 +0 0.0755 +0 0.1154 +0 0.0911 +0 0.1513 +0 0.0814 +0 0.0991 +0 0.1028 +0 0.0826 +0 0.0787 +0 0.0618 +0 0.2290 +0 0.1837 +0 0.0790 +0 0.0870 +0 0.0839 +0 0.0394 +0 0.0910 +0 0.1048 +0 0.0829 +0 0.0720 +0 0.0479 +0 0.1019 +0 0.1409 +0 0.3228 +0 0.0669 +0 0.2082 +0 0.1393 +0 0.1009 +0 0.0587 +1 0.7871 +0 0.2288 +0 0.0749 +0 0.2998 +0 0.0890 +0 0.0601 +0 0.1983 +0 0.2772 +0 0.1475 +0 0.2090 +0 0.1125 +0 0.1599 +0 0.1068 +0 0.0738 +0 0.1665 +0 0.0685 +0 0.3229 +0 0.0758 +0 0.1826 +0 0.0969 +0 0.2357 +0 0.0437 +0 0.1178 +0 0.1146 +0 0.0626 +0 0.0388 +0 0.1737 +0 0.0708 +0 0.1153 +0 0.1695 +0 0.1744 +0 0.3096 +0 0.1555 +0 0.1652 +0 0.0896 +0 0.1453 +0 0.0782 +0 0.0773 +0 0.1322 +0 0.1379 +0 0.1759 +0 0.0604 +0 0.0636 +0 0.0532 +0 0.0854 +0 0.0890 +0 0.1933 +0 0.6842 +0 0.2646 +0 0.5745 +0 0.0801 +0 0.2113 +0 0.1090 +0 0.0852 +0 0.1933 +0 0.0736 +0 0.1131 +0 0.1169 +0 0.2227 +0 0.0964 +0 0.0381 +0 0.0735 +0 0.0560 +0 0.1181 +0 0.2386 +0 0.0536 +0 0.0637 +0 0.0608 +0 0.0485 +0 0.1025 +0 0.1253 +0 0.0710 +0 0.0737 +0 0.3184 +0 0.0654 +0 0.3339 +0 0.0641 +0 0.0694 +0 0.1400 +0 0.1653 +0 0.0828 +0 0.2098 +0 0.0428 +0 0.0299 +0 0.1034 +0 0.1556 +0 0.1454 +0 0.3581 +0 0.1249 +0 0.3120 +0 0.0717 +1 0.7659 +0 0.1451 +0 0.5337 +0 0.1052 +0 0.0373 +0 0.1726 +0 0.1952 +0 0.0617 +0 0.2279 +0 0.0847 +0 0.0593 +0 0.0994 +0 0.1413 +0 0.0712 +0 0.0905 +0 0.0321 +0 0.0501 +0 0.0962 +0 0.0540 +0 0.1125 +0 0.1702 +0 0.2080 +0 0.1303 +0 0.0984 +0 0.1830 +0 0.1487 +0 0.0771 +0 0.1473 +0 0.0556 +0 0.0778 +0 0.6784 +1 0.2023 +0 0.0697 +0 0.0896 +0 0.2490 +0 0.0553 +0 0.1113 +0 0.1131 +0 0.0504 +0 0.6919 +0 0.4053 +0 0.0870 +0 0.0790 +0 0.1091 +0 0.0761 +0 0.0666 +0 0.0580 +0 0.0833 +0 0.2884 +0 0.1075 +0 0.1113 +0 0.1609 +0 0.0547 +0 0.1720 +0 0.0513 +0 0.0960 +0 0.2523 +0 0.0816 +0 0.0612 +0 0.0929 +0 0.0752 +0 0.1417 +0 0.0778 +0 0.0739 +0 0.1203 +0 0.1140 +0 0.0920 +0 0.2106 +0 0.2691 +0 0.4746 +0 0.2004 +0 0.1776 +0 0.0737 +0 0.0550 +0 0.1114 +0 0.0500 +0 0.0569 +0 0.3818 +0 0.1169 +0 0.1832 +0 0.2099 +0 0.0961 +0 0.0880 +0 0.1785 +0 0.0945 +0 0.1197 +0 0.1545 +0 0.1111 +0 0.1884 +0 0.1523 +0 0.2055 +0 0.1291 +0 0.3048 +0 0.0589 +0 0.3049 +0 0.0498 +0 0.1578 +0 0.1660 +0 0.0709 +0 0.1569 +0 0.1017 +0 0.7053 +1 0.8406 +0 0.0857 +0 0.1005 +0 0.7474 +0 0.0904 +0 0.1770 +0 0.0657 +0 0.1068 +0 0.0880 +0 0.1069 +0 0.0661 +0 0.0741 +0 0.1071 +0 0.0860 +0 0.0853 +0 0.1072 +0 0.0477 +0 0.0322 +0 0.1228 +0 0.0764 +0 0.3134 +0 0.0762 +0 0.0561 +0 0.0804 +0 0.0517 +0 0.1222 +0 0.0635 +0 0.0786 +0 0.2035 +0 0.0363 +0 0.0686 +0 0.1187 +0 0.2102 +0 0.2013 +0 0.1131 +0 0.0650 +0 0.1592 +0 0.0845 +0 0.0694 +0 0.1016 +0 0.0800 +0 0.1417 +0 0.0560 +0 0.0685 +1 0.7521 +0 0.0727 +0 0.0445 +0 0.1294 +1 0.7603 +0 0.0678 +0 0.1577 +0 0.1593 +0 0.1459 +0 0.1872 +0 0.0761 +0 0.1654 +0 0.1395 +0 0.1758 +0 0.0482 +0 0.0821 +0 0.3450 +0 0.0630 +0 0.0522 +0 0.0916 +0 0.0635 +0 0.0900 +0 0.1590 +0 0.2917 +0 0.2234 +0 0.0830 +0 0.0854 +0 0.1552 +0 0.1077 +0 0.4563 +0 0.1524 +0 0.1031 +0 0.1193 +0 0.1431 +0 0.0807 +0 0.0820 +0 0.1090 +0 0.0463 +0 0.1238 +0 0.1195 +0 0.1005 +0 0.0680 +0 0.1324 +0 0.5044 +0 0.2654 +0 0.0873 +0 0.0760 +0 0.0961 +0 0.1612 +0 0.1000 +0 0.0728 +0 0.0753 +0 0.0508 +0 0.0435 +0 0.0754 +0 0.1350 +0 0.0684 +0 0.1222 +0 0.1253 +0 0.0611 +0 0.0767 +0 0.0620 +0 0.1824 +0 0.1658 +0 0.0916 +0 0.0789 +0 0.2336 +0 0.0975 +0 0.2289 +0 0.1908 +0 0.1013 +0 0.0858 +0 0.1117 +0 0.1809 +0 0.0874 +0 0.1624 +0 0.5240 +0 0.1391 +0 0.0625 +0 0.1178 +0 0.0659 +0 0.0989 +0 0.0439 +0 0.1859 +0 0.2751 +0 0.1084 +0 0.0811 +0 0.0779 +0 0.1084 +0 0.0589 +0 0.2413 +0 0.1384 +0 0.1000 +0 0.0788 +0 0.0538 +0 0.1675 +0 0.1697 +0 0.1803 +0 0.1757 +0 0.2306 +0 0.2367 +0 0.0665 +0 0.6665 +0 0.1116 +0 0.1139 +0 0.2301 +0 0.1808 +0 0.0807 +0 0.1669 +0 0.1357 +0 0.1202 +0 0.0493 +0 0.1249 +0 0.0736 +0 0.2452 +1 0.8195 +0 0.1113 +0 0.0771 +0 0.0647 +0 0.0950 +0 0.1755 +0 0.0725 +0 0.1212 +0 0.1799 +0 0.0715 +0 0.0479 +0 0.2216 +0 0.0530 +0 0.2794 +0 0.2082 +0 0.0716 +0 0.1727 +0 0.1177 +0 0.1483 +0 0.1202 +0 0.2673 +0 0.2354 +0 0.1193 +1 0.7936 +0 0.0474 +0 0.0727 +0 0.0685 +0 0.0860 +0 0.0723 +0 0.1638 +0 0.0705 +0 0.1923 +0 0.0660 +0 0.1029 +0 0.0983 +0 0.0414 +0 0.3187 +0 0.0513 +0 0.4112 +0 0.0779 +0 0.1911 +0 0.0780 +0 0.2623 +0 0.0732 +0 0.0714 +0 0.1708 +0 0.0903 +0 0.1021 +0 0.2089 +0 0.0325 +0 0.1019 +0 0.2180 +0 0.1163 +0 0.0732 +0 0.1081 +0 0.0767 +0 0.1413 +0 0.1097 +0 0.0891 +0 0.0782 +0 0.1378 +0 0.0943 +0 0.0803 +0 0.2357 +0 0.1103 +0 0.0524 +0 0.1670 +0 0.1166 +0 0.3253 +0 0.1905 +0 0.0759 +0 0.0605 +0 0.0417 +0 0.0497 +0 0.1388 +0 0.0936 +0 0.0660 +0 0.2873 +0 0.0810 +0 0.1244 +0 0.0376 +0 0.0670 +0 0.0813 +0 0.1426 +0 0.1719 +0 0.1456 +0 0.4833 +0 0.2169 +0 0.0718 +0 0.1112 +0 0.0621 +0 0.1014 +0 0.5635 +0 0.0749 +0 0.1307 +0 0.1182 +0 0.2633 +0 0.1242 +0 0.0859 +0 0.0476 +1 0.8180 +0 0.1177 +0 0.0918 +0 0.0540 +0 0.3559 +0 0.2535 +0 0.4213 +0 0.1209 +0 0.0521 +0 0.0687 +0 0.1247 +0 0.0553 +0 0.0681 +0 0.0804 +0 0.1108 +0 0.0590 +0 0.2268 +0 0.1657 +0 0.0898 +0 0.0954 +0 0.1478 +0 0.0333 +0 0.0715 +0 0.0393 +0 0.0870 +0 0.1652 +0 0.1035 +0 0.0760 +0 0.0859 +0 0.0680 +0 0.1494 +0 0.0669 +0 0.1888 +0 0.0864 +0 0.1670 +0 0.0679 +0 0.1174 +0 0.3200 +0 0.1076 +0 0.0618 +0 0.2785 +0 0.0740 +0 0.0343 +0 0.1849 +0 0.1154 +0 0.0543 +0 0.0809 +0 0.3833 +0 0.0949 +0 0.0947 +0 0.0734 +0 0.2031 +0 0.1419 +0 0.1788 +0 0.1438 +0 0.0368 +0 0.0399 +0 0.1120 +0 0.2509 +0 0.1845 +1 0.8406 +0 0.3391 +0 0.1058 +0 0.1921 +0 0.0804 +0 0.1887 +0 0.1282 +0 0.0567 +0 0.0989 +0 0.1046 +0 0.1238 +0 0.1513 +0 0.0447 +0 0.4417 +0 0.2345 +0 0.1325 +0 0.0614 +0 0.1396 +0 0.2314 +0 0.1486 +0 0.2142 +0 0.3598 +0 0.0994 +0 0.0952 +0 0.0974 +0 0.1547 +0 0.0723 +0 0.0783 +0 0.0996 +0 0.1531 +0 0.1163 +0 0.0917 +0 0.2036 +0 0.0645 +0 0.0917 +0 0.0394 +0 0.0896 +0 0.2885 +0 0.0880 +0 0.0492 +0 0.2857 +0 0.1838 +0 0.1015 +0 0.1464 +0 0.0397 +0 0.0804 +0 0.0982 +0 0.1481 +0 0.0939 +0 0.0509 +0 0.0797 +0 0.0763 +0 0.0544 +0 0.0876 +0 0.1954 +0 0.1010 +0 0.0982 +0 0.2976 +0 0.1732 +0 0.0593 +0 0.1648 +0 0.0866 +0 0.0627 +0 0.0851 +0 0.0884 +0 0.1059 +0 0.0356 +0 0.0561 +0 0.3160 +0 0.1232 +0 0.3828 +0 0.0935 +0 0.1092 +0 0.0881 +0 0.0753 +0 0.0722 +0 0.1596 +0 0.0839 +0 0.1299 +0 0.0803 +1 0.8795 +0 0.0620 +0 0.1851 +0 0.0757 +0 0.0554 +0 0.0458 +0 0.1111 +0 0.0587 +0 0.0829 +0 0.0511 +0 0.0773 +1 0.7786 +0 0.0957 +0 0.0596 +0 0.1907 +0 0.0688 +0 0.0671 +0 0.1692 +0 0.0461 +0 0.0872 +0 0.0752 +0 0.0813 +0 0.0319 +0 0.2876 +0 0.1854 +0 0.0890 +0 0.0963 +0 0.1074 +0 0.0683 +0 0.1236 +0 0.0629 +0 0.2259 +0 0.1294 +0 0.1902 +0 0.1992 +0 0.0788 +0 0.0931 +0 0.0606 +0 0.0728 +0 0.0597 +0 0.0720 +0 0.1867 +0 0.2259 +0 0.1446 +0 0.1295 +0 0.0701 +0 0.5177 +0 0.2743 +0 0.0734 +0 0.1287 +0 0.1037 +0 0.0528 +0 0.0779 +0 0.0569 +0 0.0632 +0 0.0613 +0 0.1892 +0 0.1111 +0 0.1517 +0 0.0707 +0 0.0877 +0 0.1350 +0 0.2170 +0 0.0838 +1 0.7524 +0 0.1856 +0 0.0869 +0 0.0301 +0 0.1024 +0 0.0604 +0 0.1543 +0 0.1297 +0 0.1348 +0 0.0393 +0 0.0864 +0 0.1069 +0 0.4428 +0 0.1490 +0 0.0894 +0 0.0578 +0 0.2958 +0 0.1482 +0 0.1820 +0 0.4750 +0 0.0685 +0 0.1204 +1 0.8254 +0 0.1354 +0 0.0695 +0 0.0622 +0 0.0540 +0 0.1339 +0 0.0779 +0 0.1052 +0 0.0415 +0 0.1291 +0 0.0960 +0 0.1518 +0 0.1246 +0 0.0705 +0 0.0966 +0 0.1595 +0 0.1044 +0 0.0649 +0 0.1127 +0 0.0507 +0 0.0478 +0 0.0473 +0 0.0986 +0 0.0764 +0 0.2416 +1 0.7603 +0 0.0892 +0 0.1676 +0 0.0948 +0 0.1376 +0 0.0475 +0 0.0860 +0 0.1230 +0 0.0864 +0 0.2766 +0 0.0623 +0 0.0505 +0 0.0547 +0 0.1657 +0 0.0682 +0 0.0589 +0 0.0915 +0 0.0760 +0 0.0816 +0 0.0488 +0 0.5817 +0 0.1142 +0 0.0701 +1 0.8361 +0 0.0509 +0 0.0839 +0 0.0682 +0 0.0854 +0 0.1385 +0 0.0813 +0 0.0862 +0 0.3330 +0 0.4095 +0 0.0886 +0 0.1748 +0 0.0429 +0 0.1555 +0 0.0777 +0 0.1853 +0 0.0504 +0 0.1869 +0 0.0456 +0 0.2362 +0 0.4789 +0 0.0761 +0 0.1338 +0 0.1411 +1 0.8343 +0 0.1006 +0 0.2860 +0 0.0869 +0 0.0564 +0 0.0982 +0 0.0473 +0 0.0765 +0 0.1739 +0 0.0616 +0 0.1116 +0 0.2535 +0 0.1247 +0 0.1708 +0 0.1717 +0 0.3170 +0 0.0547 +0 0.0844 +0 0.1104 +0 0.1153 +0 0.1008 +0 0.0901 +0 0.1307 +0 0.0519 +0 0.0604 +0 0.1727 +0 0.2132 +0 0.1471 +0 0.0776 +0 0.0568 +0 0.0692 +0 0.0933 +0 0.1432 +0 0.0786 +0 0.0972 +0 0.1954 +0 0.1228 +0 0.0692 +0 0.1042 +0 0.2073 +0 0.0390 +0 0.0799 +0 0.0539 +0 0.0967 +0 0.0554 +0 0.1170 +0 0.1874 +0 0.1393 +0 0.0992 +0 0.0364 +0 0.0399 +1 0.8319 +0 0.2728 +0 0.0766 +0 0.2281 +0 0.2720 +0 0.0730 +0 0.0997 +0 0.1029 +0 0.1420 +0 0.1337 +0 0.0481 +0 0.0799 +0 0.0584 +0 0.0564 +0 0.0733 +0 0.1629 +0 0.2022 +0 0.1227 +0 0.1657 +0 0.1007 +0 0.0784 +0 0.0669 +0 0.0636 +0 0.0892 +0 0.1150 +0 0.3677 +0 0.1733 +0 0.0929 +0 0.6650 +0 0.1551 +0 0.1718 +0 0.1192 +0 0.0887 +0 0.0457 +0 0.0670 +0 0.1622 +0 0.0736 +0 0.1328 +0 0.0493 +0 0.1160 +0 0.0835 +0 0.2277 +0 0.1307 +0 0.3149 +0 0.0864 +0 0.3355 +0 0.1689 +0 0.1109 +0 0.1904 +0 0.1298 +0 0.1074 +0 0.1355 +0 0.1568 +0 0.0974 +0 0.0871 +0 0.1051 +0 0.1255 +0 0.1897 +0 0.0946 +0 0.0816 +0 0.1897 +0 0.1817 +0 0.0633 +0 0.1344 +0 0.1414 +0 0.1101 +0 0.0635 +0 0.1284 +0 0.3053 +0 0.1727 +0 0.0629 +0 0.0863 +0 0.0671 +0 0.1044 +0 0.1955 +0 0.1484 +0 0.1030 +0 0.1274 +0 0.1145 +0 0.0964 +0 0.0864 +0 0.1118 +0 0.1272 +0 0.0574 +0 0.0938 +0 0.1986 +0 0.4378 +0 0.0598 +0 0.0985 +0 0.1778 +1 0.7598 +0 0.2969 +0 0.2644 +0 0.1201 +0 0.1756 +0 0.0703 +0 0.6759 +0 0.0953 +0 0.0779 +0 0.1322 +0 0.1407 +0 0.0907 +0 0.0986 +0 0.1437 +0 0.0934 +0 0.3221 +0 0.0499 +0 0.1703 +0 0.1509 +0 0.1401 +0 0.0844 +0 0.0442 +0 0.0610 +0 0.2972 +0 0.0562 +0 0.1480 +0 0.1941 +0 0.0923 +0 0.1182 +0 0.2487 +0 0.0725 +0 0.1218 +0 0.0888 +0 0.0932 +0 0.0624 +0 0.0858 +0 0.1324 +0 0.3070 +0 0.6367 +1 0.7594 +0 0.4595 +0 0.1796 +0 0.7391 +0 0.0658 +0 0.1204 +0 0.0687 +0 0.1079 +0 0.0836 +0 0.0451 +0 0.1855 +0 0.1300 +0 0.0549 +0 0.1937 +0 0.1215 +0 0.2022 +0 0.1585 +0 0.0564 +0 0.0598 +0 0.0754 +0 0.1728 +0 0.0429 +0 0.0562 +0 0.7455 +0 0.1224 +0 0.1927 +0 0.1139 +0 0.1068 +0 0.0653 +0 0.0962 +0 0.2155 +0 0.0487 +0 0.5056 +0 0.6279 +0 0.1222 +0 0.0543 +0 0.1181 +0 0.0638 +0 0.0584 +0 0.0307 +1 0.8499 +0 0.0354 +0 0.2355 +0 0.2066 +0 0.0776 +0 0.1234 +0 0.2150 +0 0.0395 +0 0.2371 +0 0.1305 +1 0.8241 +0 0.1084 +0 0.0861 +0 0.4231 +0 0.0916 +0 0.1204 +0 0.0876 +0 0.0685 +0 0.1584 +1 0.7845 +0 0.0594 +0 0.1922 +0 0.0695 +0 0.1289 +0 0.2119 +0 0.2594 +0 0.1043 +0 0.0674 +0 0.0984 +0 0.0797 +0 0.0390 +0 0.0736 +0 0.1668 +0 0.0683 +0 0.1831 +0 0.0469 +0 0.0979 +0 0.1552 +0 0.3817 +0 0.2353 +0 0.0781 +0 0.0539 +0 0.0533 +0 0.0453 +0 0.1933 +0 0.0955 +0 0.0816 +0 0.0821 +0 0.1612 +0 0.0979 +1 0.7934 +0 0.0904 +0 0.1730 +0 0.3530 +0 0.1214 +0 0.2042 +1 0.8439 +0 0.7385 +0 0.2197 +0 0.0900 +0 0.1168 +0 0.0750 +0 0.0518 +0 0.0873 +0 0.0841 +0 0.0903 +0 0.1741 +0 0.1637 +0 0.0906 +0 0.0766 +0 0.0598 +0 0.0635 +0 0.0887 +0 0.0919 +0 0.1073 +0 0.2684 +0 0.0478 +0 0.1146 +0 0.0969 +0 0.0593 +0 0.5615 +0 0.1847 +0 0.0950 +0 0.1796 +0 0.0348 +0 0.4451 +0 0.0643 +0 0.1586 +0 0.0689 +0 0.0549 +0 0.0848 +0 0.0369 +0 0.2381 +0 0.1286 +0 0.0621 +0 0.0965 +0 0.1501 +0 0.1325 +0 0.2568 +0 0.1667 +0 0.2617 +0 0.0579 +0 0.1382 +0 0.0836 +0 0.1104 +0 0.2470 +0 0.1879 +0 0.0907 +0 0.7256 +0 0.5456 +0 0.0691 +0 0.1732 +0 0.4499 +0 0.0946 +0 0.2162 +0 0.0624 +0 0.2322 +0 0.3681 +0 0.2664 +0 0.0757 +0 0.0913 +0 0.0368 +0 0.0634 +0 0.0413 +0 0.1015 +0 0.1059 +0 0.0780 +0 0.0414 +0 0.0673 +0 0.0678 +0 0.0684 +0 0.0724 +0 0.3875 +0 0.0647 +0 0.0655 +0 0.3785 +0 0.2754 +0 0.2382 +0 0.1174 +0 0.0640 +0 0.1907 +0 0.1714 +0 0.1442 +0 0.1707 +0 0.0809 +0 0.0945 +0 0.2473 +0 0.0555 +0 0.3453 +0 0.2441 +0 0.0712 +0 0.2590 +0 0.0341 +0 0.0911 +0 0.1275 +0 0.0501 +0 0.1055 +0 0.0933 +0 0.1927 +0 0.2278 +0 0.1214 +0 0.1563 +0 0.0890 +0 0.1247 +0 0.1011 +1 0.8442 +0 0.0360 +0 0.0747 +0 0.3684 +0 0.1278 +0 0.0653 +0 0.1508 +0 0.1016 +0 0.1128 +0 0.0280 +0 0.1019 +0 0.0912 +0 0.1202 +0 0.7324 +0 0.1184 +1 0.7988 +0 0.1360 +0 0.1444 +0 0.1232 +0 0.1011 +0 0.0636 +0 0.0658 +0 0.0600 +0 0.1413 +0 0.0512 +0 0.1102 +0 0.0898 +1 0.8296 +0 0.0995 +0 0.0935 +0 0.1964 +0 0.0877 +0 0.0961 +0 0.1700 +0 0.0841 +0 0.1765 +0 0.0474 +0 0.0864 +0 0.0542 +0 0.1715 +0 0.0859 +0 0.0810 +0 0.1813 +0 0.0608 +0 0.1648 +0 0.0946 +0 0.0751 +0 0.0386 +0 0.0834 +1 0.8048 +0 0.0787 +0 0.4695 +0 0.1640 +0 0.0820 +0 0.0734 +0 0.0663 +0 0.5670 +0 0.1485 +0 0.1095 +0 0.0974 +0 0.2393 +0 0.0623 +0 0.0532 +0 0.0950 +0 0.0600 +0 0.4254 +0 0.0706 +0 0.0474 +0 0.0743 +0 0.0724 +0 0.0897 +0 0.0569 +0 0.0628 +0 0.0842 +0 0.0793 +0 0.2307 +0 0.1106 +0 0.0681 +0 0.1337 +0 0.1225 +0 0.0428 +0 0.2407 +0 0.1594 +0 0.0884 +0 0.0608 +0 0.1657 +0 0.0694 +0 0.2217 +0 0.1351 +0 0.1220 +0 0.0815 +0 0.1390 +0 0.1703 +0 0.0996 +0 0.0674 +0 0.0787 +0 0.1903 +0 0.0344 +0 0.1298 +0 0.1312 +0 0.0975 +0 0.0724 +0 0.0715 +0 0.0824 +0 0.0690 +0 0.1033 +0 0.0580 +0 0.1223 +0 0.0838 +0 0.0907 +0 0.2024 +0 0.3567 +0 0.0618 +0 0.0951 +0 0.1069 +0 0.0951 +0 0.0903 +0 0.1024 +0 0.1027 +0 0.1957 +0 0.1248 +0 0.3074 +0 0.0862 +0 0.1801 +0 0.0661 +0 0.0423 +0 0.0421 +0 0.0452 +0 0.2611 +0 0.0762 +0 0.1047 +0 0.0837 +0 0.0666 +0 0.0737 +0 0.0956 +0 0.2047 +0 0.0622 +0 0.0728 +0 0.3523 +0 0.0334 +0 0.1682 +0 0.2972 +0 0.0352 +0 0.2112 +0 0.0510 +0 0.0881 +0 0.0468 +0 0.0740 +0 0.2266 +0 0.1814 +1 0.8800 +0 0.0854 +0 0.0932 +0 0.0591 +0 0.0863 +0 0.1063 +0 0.1152 +0 0.1465 +0 0.5813 +0 0.1050 +0 0.0526 +0 0.0536 +0 0.2644 +0 0.0918 +0 0.2358 +0 0.0577 +0 0.1596 +0 0.0441 +0 0.0480 +0 0.2604 +0 0.1225 +0 0.0634 +0 0.3415 +0 0.0467 +0 0.2330 +0 0.0848 +0 0.1688 +0 0.1256 +0 0.1139 +0 0.0696 +0 0.3713 +0 0.0757 +0 0.0853 +0 0.1765 +0 0.0909 +0 0.0997 +0 0.1076 +0 0.2415 +0 0.1348 +0 0.0949 +0 0.1015 +0 0.0448 +0 0.1205 +0 0.5833 +0 0.2535 +0 0.1563 +0 0.1716 +0 0.1150 +0 0.0903 +0 0.3064 +0 0.1378 +0 0.0977 +0 0.0727 +0 0.0721 +0 0.0971 +0 0.0367 +0 0.0639 +0 0.1456 +0 0.0725 +0 0.2639 +0 0.3359 +0 0.1882 +0 0.0748 +0 0.0767 +0 0.0523 +0 0.0988 +0 0.0764 +0 0.1069 +0 0.0636 +0 0.1790 +0 0.0833 +0 0.1047 +0 0.1907 +0 0.2361 +0 0.0978 +0 0.1468 +0 0.1067 +0 0.0417 +0 0.0501 +0 0.0455 +0 0.0773 +0 0.1813 +0 0.1423 +0 0.0777 +0 0.0927 +0 0.1268 +0 0.0873 +0 0.1179 +0 0.0741 +0 0.2333 +0 0.0879 +0 0.0639 +0 0.1139 +0 0.0737 +0 0.1597 +0 0.0565 +0 0.1105 +0 0.1166 +0 0.0680 +0 0.1069 +0 0.1680 +0 0.6865 +0 0.0799 +0 0.0522 +0 0.0913 +0 0.0822 +0 0.1659 +0 0.2664 +0 0.0458 +0 0.0854 +0 0.0413 +0 0.1138 +1 0.8044 +0 0.1340 +0 0.1006 +0 0.2236 +0 0.0888 +0 0.1559 +0 0.1047 +0 0.6531 +0 0.1268 +0 0.1086 +0 0.0365 +0 0.4224 +0 0.1761 +0 0.1796 +0 0.3028 +0 0.1155 +0 0.0650 +0 0.0874 +0 0.1423 +0 0.1262 +0 0.5044 +0 0.0820 +0 0.1922 +0 0.2901 +0 0.4942 +0 0.0681 +0 0.0461 +0 0.0723 +0 0.2194 +0 0.1069 +0 0.1901 +0 0.1203 +0 0.1524 +0 0.1088 +0 0.0498 +0 0.0956 +0 0.2133 +0 0.0802 +0 0.1525 +0 0.0506 +0 0.1620 +0 0.0638 +0 0.1164 +0 0.1205 +1 0.7900 +0 0.0501 +0 0.0822 +0 0.0725 +0 0.1467 +0 0.0914 +0 0.1512 +0 0.1432 +0 0.0727 +0 0.1421 +0 0.1085 +0 0.0833 +0 0.2506 +0 0.3032 +0 0.0820 +0 0.0445 +0 0.3134 +0 0.3840 +0 0.0852 +0 0.1131 +0 0.1508 +0 0.0716 +0 0.0495 +0 0.0501 +1 0.8844 +0 0.1100 +0 0.4376 +0 0.0839 +0 0.1495 +0 0.0521 +0 0.0969 +0 0.0852 +0 0.2157 +0 0.1215 +0 0.0653 +0 0.0442 +0 0.0814 +0 0.0970 +1 0.8432 +0 0.0665 +0 0.0500 +0 0.2364 +0 0.1217 +0 0.0755 +0 0.0353 +0 0.3569 +0 0.2332 +0 0.1478 +0 0.0834 +0 0.1224 +0 0.3343 +0 0.0697 +0 0.3455 +0 0.0673 +0 0.1406 +0 0.0705 +0 0.1133 +0 0.1973 +0 0.5050 +0 0.1197 +0 0.2034 +0 0.0713 +0 0.2800 +0 0.0679 +0 0.1780 +0 0.0637 +0 0.0811 +0 0.0780 +0 0.0753 +0 0.2267 +0 0.0835 +0 0.0292 +0 0.0890 +0 0.1632 +0 0.4181 +0 0.2031 +0 0.1749 +0 0.0694 +0 0.2360 +0 0.1508 +0 0.0777 +0 0.0845 +0 0.1366 +0 0.2128 +0 0.0793 +0 0.1315 +0 0.0580 +0 0.2054 +0 0.1234 +0 0.0677 +0 0.0574 +0 0.1899 +0 0.1847 +0 0.1964 +0 0.1207 +0 0.0892 +0 0.1338 +0 0.0402 +0 0.4121 +0 0.0838 +0 0.1430 +0 0.1397 +0 0.1022 +0 0.1129 +0 0.4533 +0 0.4283 +0 0.1446 +0 0.7190 +0 0.0744 +0 0.2138 +0 0.0945 +0 0.0702 +0 0.0851 +0 0.1544 +0 0.0461 +0 0.1145 +0 0.1376 +0 0.1179 +0 0.2326 +0 0.6622 +0 0.2332 +0 0.0643 +0 0.0927 +0 0.1549 +0 0.1182 +0 0.1265 +0 0.0663 +0 0.3171 +0 0.0790 +0 0.0994 +0 0.1134 +0 0.0932 +0 0.0828 +0 0.1139 +0 0.0622 +0 0.1618 +0 0.1063 +0 0.1037 +0 0.0347 +0 0.0538 +1 0.8003 +0 0.1027 +0 0.0581 +0 0.4059 +0 0.0610 +0 0.1693 +0 0.2469 +0 0.0662 +0 0.1813 +0 0.0898 +0 0.2043 +0 0.0400 +0 0.1096 +0 0.0653 +0 0.1503 +0 0.1490 +0 0.0676 +0 0.1234 +0 0.1209 +0 0.5323 +0 0.4605 +0 0.1360 +0 0.0547 +0 0.0998 +1 0.8236 +0 0.2691 +0 0.0657 +0 0.0647 +0 0.1816 +0 0.0874 +0 0.7492 +0 0.1096 +0 0.0966 +0 0.0348 +0 0.2327 +0 0.1046 +0 0.2706 +0 0.0624 +0 0.1078 +0 0.0691 +0 0.4269 +0 0.0506 +0 0.0542 +0 0.1111 +1 0.8482 +0 0.2288 +0 0.0753 +0 0.0791 +0 0.2189 +0 0.2561 +0 0.1499 +0 0.0982 +0 0.0541 +0 0.0751 +0 0.4488 +0 0.1417 +0 0.1193 +0 0.1158 +0 0.1322 +0 0.0734 +0 0.0646 +1 0.8841 +0 0.2008 +0 0.0356 +0 0.1823 +0 0.1921 +0 0.1350 +0 0.1062 +0 0.1468 +0 0.0665 +0 0.1470 +0 0.1652 +0 0.1042 +0 0.0414 +0 0.0503 +0 0.0688 +0 0.1334 +0 0.1327 +0 0.1059 +0 0.1101 +0 0.3333 +0 0.1063 +0 0.0780 +0 0.2268 +0 0.1172 +0 0.2672 +0 0.1038 +0 0.0738 +0 0.6060 +0 0.0636 +0 0.1631 +0 0.0865 +0 0.2860 +0 0.0750 +0 0.0383 +0 0.1057 +0 0.0911 +0 0.0967 +0 0.0506 +0 0.0329 +0 0.0524 +0 0.3447 +0 0.0763 +0 0.3215 +0 0.1012 +1 0.7689 +0 0.0773 +0 0.1010 +0 0.2317 +0 0.1920 +0 0.1338 +0 0.1580 +0 0.0606 +0 0.1423 +0 0.1250 +0 0.0814 +0 0.0575 +0 0.0600 +0 0.0626 +0 0.0702 +0 0.2138 +0 0.0513 +0 0.1050 +0 0.0393 +0 0.0919 +1 0.7513 +0 0.0857 +0 0.0779 +0 0.0441 +0 0.2340 +0 0.2853 +0 0.0790 +0 0.1041 +0 0.1608 +0 0.1445 +0 0.0623 +0 0.2196 +0 0.0701 +0 0.1037 +0 0.0554 +0 0.1282 +0 0.2491 +0 0.0449 +0 0.7492 +0 0.1748 +0 0.0781 +1 0.7752 +0 0.0570 +0 0.0842 +0 0.0673 +0 0.2380 +0 0.1226 +0 0.2490 +0 0.0614 +0 0.2410 +0 0.0560 +0 0.3635 +0 0.0754 +0 0.0803 +0 0.0821 +0 0.0745 +0 0.1167 +0 0.0791 +0 0.1311 +0 0.0382 +0 0.1620 +0 0.0776 +0 0.1237 +0 0.1402 +0 0.1237 +0 0.0594 +0 0.0656 +0 0.0926 +0 0.1528 +0 0.2959 +0 0.1517 +0 0.0751 +0 0.0730 +0 0.2172 +0 0.1392 +0 0.0956 +0 0.2064 +0 0.1494 +0 0.0787 +0 0.0894 +0 0.0706 +0 0.0600 +0 0.0964 +0 0.1297 +0 0.1130 +0 0.3573 +0 0.0859 +0 0.2053 +0 0.0790 +0 0.0575 +0 0.0730 +0 0.0734 +0 0.1258 +0 0.0862 +0 0.6972 +0 0.0330 +0 0.0394 +0 0.1879 +0 0.0622 +0 0.0925 +0 0.2388 +0 0.0695 +0 0.1495 +0 0.6957 +0 0.2413 +0 0.0604 +0 0.1533 +0 0.0534 +0 0.1304 +0 0.1065 +0 0.1876 +0 0.1148 +0 0.0375 +0 0.1287 +0 0.0591 +0 0.1267 +0 0.1993 +0 0.1788 +0 0.0910 +0 0.0490 +0 0.2072 +0 0.0831 +0 0.0962 +0 0.2591 +0 0.0805 +0 0.3129 +0 0.0895 +0 0.1115 +0 0.0562 +0 0.0849 +0 0.1651 +0 0.1959 +0 0.2419 +0 0.1751 +0 0.1156 +0 0.1054 +0 0.0978 +0 0.0378 +0 0.1575 +0 0.2678 +0 0.0425 +0 0.1124 +0 0.1283 +0 0.0617 +0 0.0815 +0 0.1148 +0 0.1168 +0 0.0722 +0 0.0811 +0 0.0374 +0 0.6974 +1 0.8468 +0 0.0864 +0 0.0930 +0 0.0907 +0 0.0948 +0 0.1174 +0 0.0512 +0 0.0787 +0 0.4062 +0 0.0602 +0 0.1185 +0 0.1731 +0 0.1036 +0 0.0565 +0 0.1114 +0 0.1439 +0 0.1301 +0 0.0921 +0 0.3975 +0 0.5193 +0 0.6961 +0 0.0709 +0 0.0697 +0 0.0865 +0 0.1223 +0 0.2620 +0 0.2153 +0 0.0419 +0 0.0366 +0 0.1251 +0 0.2716 +0 0.1674 +0 0.0474 +0 0.1213 +0 0.0596 +0 0.0677 +0 0.0636 +0 0.2430 +0 0.3021 +0 0.1283 +0 0.2678 +0 0.0780 +0 0.0602 +0 0.1396 +0 0.1005 +0 0.1249 +0 0.0892 +1 0.7532 +0 0.6031 +0 0.1165 +0 0.0728 +0 0.0934 +0 0.1232 +0 0.1086 +0 0.2433 +0 0.1732 +0 0.0408 +0 0.0595 +0 0.0509 +0 0.1405 +0 0.1159 +0 0.0824 +0 0.2987 +0 0.0734 +0 0.0591 +0 0.0390 +0 0.1855 +0 0.1285 +0 0.0684 +0 0.0448 +0 0.0632 +0 0.0413 +0 0.4583 +0 0.0453 +0 0.0831 +0 0.0472 +0 0.0573 +0 0.2138 +0 0.0531 +0 0.0825 +0 0.1678 +0 0.0398 +0 0.0860 +0 0.1020 +0 0.2029 +0 0.0641 +0 0.0721 +0 0.1074 +0 0.1006 +0 0.0566 +0 0.1013 +0 0.0350 +0 0.1639 +0 0.3125 +0 0.1089 +0 0.0511 +0 0.0766 +0 0.0440 +0 0.4824 +0 0.1111 +0 0.1080 +0 0.3098 +0 0.1174 +0 0.2017 +0 0.1002 +0 0.1233 +0 0.0453 +1 0.7818 +0 0.6031 +0 0.0960 +0 0.2215 +0 0.0879 +0 0.0878 +0 0.0330 +1 0.7665 +0 0.2516 +0 0.2431 +0 0.0575 +0 0.2589 +0 0.1268 +0 0.2617 +0 0.0564 +0 0.1427 +0 0.1792 +0 0.0522 +0 0.0624 +0 0.0693 +0 0.0533 +0 0.0638 +0 0.1170 +0 0.0812 +0 0.1098 +0 0.1019 +0 0.1440 +0 0.2916 +0 0.0339 +0 0.1124 +0 0.0645 +0 0.1328 +0 0.1777 +0 0.0651 +0 0.0767 +0 0.1742 +0 0.1841 +0 0.0604 +0 0.1050 +0 0.0611 +0 0.2719 +0 0.0718 +0 0.1850 +0 0.0486 +0 0.1945 +0 0.6341 +0 0.1054 +0 0.0734 +0 0.0643 +0 0.2727 +0 0.2226 +0 0.2309 +0 0.0585 +0 0.1379 +0 0.1396 +0 0.0533 +0 0.2188 +0 0.1064 +0 0.1222 +0 0.1898 +0 0.2021 +0 0.0982 +0 0.0571 +0 0.0408 +0 0.1363 +0 0.0586 +0 0.1243 +0 0.0803 +0 0.1437 +0 0.0668 +0 0.0462 +0 0.0512 +0 0.3226 +0 0.0828 +0 0.3534 +0 0.0327 +0 0.0750 +0 0.1169 +0 0.1283 +0 0.1511 +1 0.8118 +0 0.1739 +0 0.2232 +0 0.0981 +0 0.1360 +0 0.0609 +0 0.0719 +0 0.0783 +0 0.1354 +0 0.1930 +0 0.1333 +0 0.2241 +0 0.0620 +0 0.0856 +0 0.1046 +0 0.0777 +0 0.0704 +0 0.0666 +0 0.0997 +0 0.2100 +0 0.1158 +0 0.0682 +0 0.0855 +0 0.0923 +0 0.3608 +0 0.1278 +0 0.1738 +0 0.0632 +0 0.1185 +0 0.1240 +0 0.1736 +0 0.5200 +0 0.0522 +0 0.1056 +0 0.0758 +0 0.1453 +0 0.1762 +0 0.0546 +0 0.2118 +0 0.0624 +0 0.1248 +0 0.2691 +0 0.0651 +0 0.1887 +0 0.0915 +0 0.2724 +0 0.0677 +0 0.0824 +0 0.1203 +0 0.0792 +0 0.1490 +0 0.0478 +0 0.0840 +0 0.0909 +0 0.0801 +0 0.2281 +0 0.0591 +0 0.0701 +0 0.2138 +0 0.1323 +0 0.0923 +0 0.0454 +0 0.4165 +0 0.0477 +0 0.0442 +0 0.1557 +0 0.2396 +0 0.1689 +0 0.1217 +0 0.0870 +0 0.1328 +0 0.1685 +0 0.1801 +0 0.1348 +0 0.1474 +0 0.1318 +0 0.2372 +0 0.3498 +0 0.1111 +0 0.1011 +0 0.0856 +0 0.1889 +0 0.1079 +0 0.0577 +0 0.0671 +0 0.1029 +0 0.1327 +0 0.0360 +0 0.0517 +0 0.1136 +0 0.0706 +0 0.4637 +0 0.2028 +0 0.1164 +0 0.0443 +0 0.1160 +0 0.0762 +1 0.7643 +0 0.1187 +0 0.3026 +0 0.1566 +0 0.1427 +0 0.0940 +0 0.0551 +0 0.0666 +0 0.0868 +0 0.3997 +0 0.1424 +0 0.0743 +0 0.3252 +0 0.1515 +0 0.0552 +0 0.0733 +1 0.7713 +0 0.0760 +0 0.1276 +0 0.2145 +0 0.0747 +0 0.0521 +0 0.1894 +0 0.0622 +0 0.0407 +0 0.0533 +0 0.0683 +0 0.0925 +0 0.1003 +0 0.0717 +0 0.0888 +0 0.0523 +0 0.0837 +0 0.0833 +0 0.1555 +0 0.3740 +0 0.0869 +0 0.0743 +0 0.1441 +0 0.2631 +0 0.1795 +0 0.0896 +0 0.0948 +0 0.3133 +0 0.6948 +0 0.6589 +0 0.1080 +0 0.0681 +0 0.0811 +0 0.1210 +0 0.0655 +0 0.0539 +0 0.2367 +0 0.0805 +0 0.0708 +1 0.7588 +1 0.8514 +0 0.0658 +0 0.1163 +0 0.1334 +0 0.0951 +0 0.0933 +0 0.0619 +0 0.4637 +0 0.0891 +0 0.0867 +0 0.2168 +0 0.0472 +0 0.0479 +0 0.1392 +0 0.0750 +0 0.2378 +0 0.0634 +0 0.2812 +0 0.2956 +0 0.0738 +0 0.1147 +0 0.0975 +0 0.2258 +0 0.1593 +0 0.1154 +0 0.0418 +0 0.0939 +0 0.1532 +0 0.2453 +0 0.0750 +0 0.1639 +0 0.1599 +0 0.1325 +0 0.2197 +0 0.0495 +0 0.0582 +0 0.2558 +0 0.0965 +0 0.1121 +0 0.1426 +0 0.0551 +0 0.0952 +0 0.0337 +0 0.0985 +0 0.1105 +1 0.7856 +0 0.5790 +0 0.1134 +0 0.7116 +0 0.0876 +0 0.0673 +0 0.0892 +0 0.0546 +0 0.1527 +0 0.2374 +0 0.5159 +0 0.0472 +0 0.0594 +0 0.0708 +0 0.0825 +0 0.0928 +0 0.0773 +0 0.1027 +0 0.0715 +0 0.1299 +0 0.0958 +0 0.1536 +0 0.0777 +0 0.1696 +0 0.0733 +0 0.0563 +0 0.1672 +0 0.1871 +0 0.1811 +0 0.1036 +0 0.2359 +0 0.2949 +0 0.1515 +0 0.0700 +0 0.0506 +0 0.0729 +0 0.0954 +0 0.5776 +0 0.1735 +0 0.4271 +0 0.0981 +0 0.5013 +0 0.0884 +0 0.7108 +0 0.0541 +0 0.1981 +0 0.0799 +0 0.0996 +0 0.0337 +0 0.1260 +0 0.0505 +0 0.4748 +0 0.1515 +0 0.0952 +0 0.4461 +0 0.1313 +0 0.0624 +0 0.0727 +0 0.1763 +0 0.0970 +0 0.1200 +0 0.0501 +0 0.1293 +0 0.0696 +0 0.3488 +0 0.0967 +0 0.2142 +0 0.0572 +0 0.0633 +0 0.2492 +0 0.0709 +0 0.2459 +0 0.0798 +0 0.2861 +0 0.0586 +0 0.4791 +0 0.0549 +0 0.0416 +0 0.1245 +0 0.1111 +0 0.0784 +1 0.8367 +0 0.0824 +0 0.0735 +0 0.2335 +0 0.0967 +0 0.0961 +0 0.1192 +0 0.3205 +0 0.2556 +0 0.0755 +0 0.0862 +0 0.0841 +0 0.0728 +0 0.2621 +0 0.1165 +0 0.0912 +0 0.0755 +0 0.0656 +0 0.1806 +0 0.2182 +0 0.1727 +0 0.3174 +0 0.1587 +0 0.0900 +0 0.0743 +0 0.1021 +0 0.0539 +0 0.1054 +0 0.2393 +0 0.0456 +0 0.6017 +0 0.0535 +0 0.0912 +0 0.7045 +0 0.1137 +0 0.1037 +0 0.2683 +0 0.0525 +0 0.1896 +0 0.1722 +0 0.3570 +0 0.0996 +0 0.1587 +0 0.0507 +0 0.0642 +0 0.1547 +0 0.1596 +0 0.0785 +0 0.0481 +0 0.1023 +0 0.1662 +0 0.0823 +0 0.1879 +0 0.0791 +0 0.0596 +0 0.1607 +0 0.0587 +0 0.0449 +0 0.1932 +0 0.1863 +0 0.2638 +0 0.1261 +0 0.0726 +0 0.0441 +0 0.3279 +0 0.0720 +0 0.1002 +0 0.1020 +0 0.0758 +0 0.3939 +0 0.0742 +0 0.1491 +0 0.0871 +0 0.0382 +0 0.0546 +0 0.0604 +0 0.0815 +0 0.2924 +0 0.3607 +0 0.0855 +0 0.1140 +0 0.2166 +0 0.6786 +0 0.0913 +0 0.2149 +0 0.2490 +0 0.0991 +0 0.2529 +0 0.1698 +0 0.1714 +0 0.1614 +1 0.8018 +0 0.0987 +0 0.1008 +1 0.8046 +0 0.1392 +0 0.3126 +0 0.1384 +0 0.1526 +0 0.0445 +0 0.0968 +0 0.3597 +0 0.0522 +0 0.1083 +0 0.0883 +0 0.0579 +0 0.0646 +0 0.0697 +0 0.1148 +0 0.1693 +0 0.1375 +0 0.1050 +0 0.0720 +0 0.0576 +0 0.0982 +0 0.1431 +0 0.2267 +0 0.0870 +0 0.1807 +0 0.3996 +0 0.2479 +0 0.1389 +0 0.0555 +0 0.3351 +0 0.1347 +0 0.0337 +0 0.3739 +0 0.0638 +0 0.1800 +0 0.0921 +0 0.0603 +0 0.1726 +0 0.1160 +0 0.0813 +0 0.4976 +0 0.3038 +0 0.1892 +0 0.0774 +0 0.1972 +0 0.2987 +0 0.1603 +1 0.2294 +0 0.0937 +0 0.0519 +0 0.0511 +0 0.1228 +0 0.0579 +0 0.0913 +0 0.0885 +0 0.0705 +0 0.2018 +0 0.1538 +1 0.8275 +0 0.0758 +0 0.2078 +0 0.1842 +0 0.0649 +0 0.0610 +0 0.0629 +0 0.1124 +0 0.0918 +0 0.5456 +0 0.2036 +0 0.2068 +0 0.2791 +0 0.1129 +0 0.6377 +0 0.2218 +0 0.2558 +0 0.0406 +0 0.1977 +0 0.1069 +0 0.0961 +0 0.0682 +0 0.0855 +0 0.0799 +0 0.0966 +0 0.0465 +0 0.1609 +0 0.1406 +0 0.3003 +0 0.0492 +0 0.0505 +0 0.0907 +0 0.0505 +0 0.0430 +0 0.1523 +0 0.2809 +0 0.0781 +0 0.1307 +0 0.1271 +0 0.0594 +0 0.0898 +0 0.1231 +0 0.0976 +0 0.1979 +0 0.0851 +0 0.2362 +0 0.0648 +0 0.1066 +0 0.1504 +0 0.1187 +0 0.0355 +0 0.2597 +0 0.2365 +0 0.0602 +0 0.2433 +0 0.1807 +0 0.0835 +0 0.0718 +0 0.0841 +0 0.1518 +0 0.2066 +0 0.1510 +0 0.5000 +0 0.2383 +0 0.0796 +0 0.0547 +0 0.1806 +0 0.4023 +0 0.0806 +0 0.0719 +0 0.3898 +1 0.7564 +0 0.0955 +0 0.0669 +0 0.5984 +0 0.0997 +0 0.0654 +0 0.1447 +0 0.1056 +0 0.0986 +0 0.0555 +0 0.2001 +0 0.1537 +0 0.1124 +0 0.0860 +0 0.0676 +0 0.2234 +0 0.1375 +0 0.2424 +0 0.0589 +0 0.0743 +0 0.2242 +0 0.3326 +0 0.0551 +0 0.1213 +0 0.6547 +0 0.1909 +0 0.0730 +0 0.0670 +0 0.0518 +0 0.0913 +0 0.1646 +0 0.1624 +0 0.3942 +0 0.0770 +0 0.1448 +0 0.0806 +0 0.1883 +0 0.1381 +0 0.0394 +0 0.2071 +0 0.1033 +0 0.1414 +0 0.0569 +0 0.0868 +0 0.2777 +0 0.1868 +1 0.7530 +0 0.0609 +0 0.0893 +0 0.4801 +0 0.2085 +0 0.1855 +0 0.2240 +0 0.2104 +0 0.3657 +0 0.0875 +0 0.0445 +0 0.1048 +0 0.1083 +0 0.2642 +0 0.0495 +0 0.0462 +0 0.0820 +0 0.0477 +0 0.1304 +0 0.0652 +0 0.0630 +0 0.0751 +0 0.1179 +0 0.0999 +0 0.0808 +0 0.0614 +0 0.1060 +0 0.1488 +0 0.0721 +0 0.7396 +0 0.0905 +0 0.1501 +0 0.4675 +0 0.1229 +0 0.1300 +0 0.1349 +0 0.0617 +0 0.0512 +0 0.1328 +0 0.2717 +0 0.1071 +0 0.0935 +0 0.1502 +0 0.1135 +0 0.0743 +0 0.3721 +0 0.0967 +0 0.0765 +0 0.0620 +0 0.1741 +0 0.0729 +0 0.1185 +0 0.1291 +0 0.0665 +0 0.1148 +0 0.0772 +0 0.0954 +0 0.0854 +0 0.0721 +0 0.0729 +0 0.0620 +0 0.0995 +0 0.0576 +0 0.0601 +0 0.0839 +0 0.1813 +0 0.1352 +0 0.2447 +0 0.0784 +0 0.0933 +0 0.1038 +0 0.0711 +0 0.1662 +0 0.2239 +0 0.0417 +0 0.0582 +0 0.2758 +0 0.0533 +0 0.1165 +0 0.1101 +0 0.0526 +0 0.1662 +0 0.0787 +0 0.0765 +0 0.1020 +0 0.0781 +0 0.0916 +0 0.0474 +0 0.0616 +0 0.0508 +0 0.7396 +0 0.0674 +0 0.1331 +0 0.5479 +0 0.1363 +0 0.0523 +0 0.1519 +0 0.1525 +0 0.4233 +0 0.1867 +0 0.1972 +0 0.0467 +0 0.1066 +0 0.1663 +0 0.0725 +0 0.3100 +0 0.0394 +0 0.0988 +0 0.1716 +0 0.0922 +0 0.0673 +0 0.0677 +0 0.0681 +0 0.0541 +0 0.1241 +0 0.1372 +0 0.0753 +0 0.0739 +0 0.0869 +0 0.1782 +0 0.0965 +0 0.1025 +0 0.1747 +0 0.0895 +0 0.7241 +0 0.0789 +0 0.1037 +0 0.2034 +0 0.0479 +0 0.0904 +0 0.2534 +0 0.0807 +0 0.0981 +0 0.1565 +0 0.0373 +0 0.1153 +0 0.0571 +0 0.1002 +0 0.0426 +0 0.0539 +0 0.1197 +0 0.0507 +0 0.2030 +0 0.0908 +0 0.1799 +0 0.0628 +1 0.8333 +0 0.0731 +0 0.0689 +0 0.3273 +0 0.6178 +0 0.1845 +0 0.5015 +1 0.7541 +0 0.2811 +0 0.0405 +0 0.1375 +0 0.7049 +0 0.1489 +0 0.0478 +0 0.0734 +0 0.0878 +0 0.0618 +0 0.1533 +0 0.4042 +0 0.0410 +0 0.0773 +0 0.0922 +0 0.2027 +0 0.0808 +0 0.0758 +0 0.7116 +0 0.0920 +0 0.0706 +0 0.0385 +0 0.2223 +0 0.0586 +1 0.8690 +0 0.0765 +0 0.1173 +0 0.2908 +0 0.0990 +0 0.0660 +0 0.0799 +0 0.1062 +0 0.3233 +0 0.0920 +0 0.0850 +0 0.1053 +0 0.1845 +0 0.1118 +0 0.1142 +0 0.2958 +0 0.0900 +0 0.0461 +0 0.1323 +0 0.1387 +0 0.0624 +1 0.7842 +0 0.1116 +0 0.1042 +0 0.0285 +0 0.0555 +0 0.2263 +0 0.0894 +0 0.1343 +0 0.2207 +0 0.0798 +0 0.0956 +0 0.2200 +0 0.0828 +0 0.0720 +0 0.0710 +0 0.2129 +0 0.0399 +0 0.0399 +0 0.2657 +0 0.0865 +0 0.1961 +0 0.0597 +0 0.0601 +0 0.2358 +0 0.1069 +0 0.2876 +0 0.0971 +0 0.0698 +0 0.1207 +0 0.1158 +0 0.1026 +0 0.0840 +0 0.1532 +0 0.2954 +0 0.1132 +0 0.0814 +0 0.0599 +0 0.0646 +0 0.1126 +0 0.2301 +0 0.1903 +0 0.0838 +0 0.1402 +0 0.1845 +0 0.1540 +0 0.0802 +0 0.0808 +0 0.0811 +0 0.1463 +0 0.2084 +0 0.0954 +0 0.0775 +0 0.1733 +0 0.1040 +0 0.2551 +0 0.5694 +0 0.0807 +0 0.1002 +0 0.1208 +0 0.1787 +0 0.1124 +0 0.3418 +0 0.4525 +0 0.1089 +0 0.2029 +0 0.0340 +0 0.2692 +0 0.1525 +0 0.1736 +0 0.0523 +0 0.0921 +0 0.0839 +0 0.1211 +0 0.1204 +0 0.1203 +0 0.1318 +0 0.1422 +0 0.0684 +0 0.1056 +1 0.8593 +0 0.1142 +0 0.1526 +0 0.0563 +0 0.0607 +0 0.0659 +0 0.2163 +0 0.0944 +0 0.0374 +0 0.3691 +0 0.3673 +0 0.2995 +0 0.0733 +0 0.1294 +0 0.3243 +0 0.0809 +0 0.1888 +0 0.2052 +0 0.1073 +0 0.1308 +0 0.0990 +1 0.8477 +0 0.1223 +0 0.0431 +0 0.1404 +0 0.1526 +0 0.2052 +0 0.0588 +0 0.1232 +1 0.8257 +0 0.1748 +0 0.0977 +0 0.1497 +0 0.1760 +0 0.1054 +0 0.0352 +0 0.0531 +0 0.1226 +0 0.0481 +0 0.7208 +0 0.0785 +0 0.1207 +0 0.1844 +0 0.1081 +0 0.1557 +0 0.0766 +0 0.1995 +0 0.2535 +0 0.0417 +0 0.1659 +0 0.0627 +0 0.0945 +0 0.0887 +0 0.3656 +0 0.0838 +0 0.0686 +0 0.1572 +0 0.1196 +0 0.1714 +0 0.3621 +0 0.1802 +0 0.2331 +0 0.1498 +0 0.1205 +0 0.1248 +0 0.0588 +1 0.7782 +0 0.5938 +0 0.0546 +0 0.2381 +0 0.0904 +0 0.1590 +0 0.2212 +0 0.2349 +0 0.0515 +0 0.0921 +0 0.1810 +0 0.0460 +0 0.1108 +0 0.1047 +0 0.0618 +0 0.0371 +0 0.3092 +0 0.1218 +0 0.0597 +0 0.1324 +0 0.0954 +0 0.0648 +0 0.1006 +0 0.2062 +0 0.1083 +0 0.2935 +0 0.0621 +0 0.2218 +0 0.2711 +0 0.0836 +0 0.1314 +0 0.0653 +0 0.0872 +0 0.0446 +0 0.0683 +0 0.0480 +0 0.1181 +0 0.1095 +0 0.1853 +0 0.1328 +0 0.1346 +0 0.4518 +0 0.1619 +0 0.1207 +0 0.0788 +0 0.0929 +0 0.0353 +0 0.1002 +0 0.0683 +0 0.1287 +0 0.0948 +0 0.0949 +0 0.2208 +0 0.1328 +0 0.0879 +0 0.4962 +0 0.0945 +0 0.0924 +0 0.1287 +0 0.0836 +0 0.6031 +0 0.1047 +0 0.2676 +0 0.1870 +0 0.1757 +0 0.0948 +0 0.2122 +0 0.4812 +0 0.1002 +0 0.0536 +0 0.6559 +0 0.1230 +0 0.1164 +0 0.0849 +0 0.1570 +0 0.1354 +0 0.1183 +0 0.2185 +0 0.0755 +0 0.1223 +0 0.1417 +0 0.0645 +0 0.2045 +0 0.1437 +0 0.1958 +0 0.0880 +0 0.1444 +0 0.0723 +0 0.1977 +0 0.0713 +0 0.1265 +0 0.1590 +0 0.0759 +0 0.3042 +0 0.0460 +0 0.1240 +0 0.0821 +0 0.0722 +0 0.0881 +0 0.0897 +0 0.0933 +0 0.1103 +0 0.0953 +0 0.0720 +0 0.0645 +0 0.1177 +0 0.2819 +0 0.0904 +0 0.0853 +0 0.0458 +0 0.0642 +0 0.0746 +0 0.0742 +0 0.2065 +0 0.0624 +0 0.1677 +0 0.1307 +0 0.1525 +0 0.1048 +0 0.2704 +0 0.0723 +0 0.1145 +0 0.1805 +0 0.1543 +0 0.2679 +0 0.0417 +0 0.0292 +0 0.0751 +0 0.0849 +0 0.0485 +0 0.0854 +0 0.0767 +0 0.2102 +0 0.1682 +0 0.1205 +0 0.0796 +1 0.7726 +0 0.0468 +0 0.1436 +0 0.0858 +0 0.1288 +0 0.0626 +0 0.0951 +0 0.3912 +0 0.0943 +0 0.0839 +0 0.1673 +0 0.1554 +0 0.0893 +0 0.1221 +0 0.1122 +0 0.0903 +0 0.0891 +0 0.1044 +0 0.0859 +0 0.0891 +0 0.1085 +0 0.0607 +0 0.0792 +0 0.1378 +0 0.2509 +0 0.0457 +0 0.2361 +0 0.6195 +0 0.1213 +0 0.1384 +0 0.0398 +0 0.1673 +0 0.0695 +0 0.0613 +0 0.0460 +0 0.0887 +0 0.1082 +0 0.2201 +0 0.1238 +0 0.1908 +0 0.5752 +0 0.0577 +0 0.0846 +0 0.0372 +0 0.3457 +0 0.2027 +0 0.0950 +0 0.0700 +0 0.1013 +0 0.2245 +0 0.0784 +0 0.1579 +0 0.4835 +0 0.5994 +0 0.2154 +0 0.0815 +0 0.1066 +1 0.8495 +0 0.0986 +1 0.8475 +0 0.0781 +0 0.0816 +0 0.0692 +0 0.1203 +0 0.0976 +0 0.2309 +0 0.0835 +0 0.2722 +0 0.2274 +0 0.1210 +0 0.1891 +0 0.0527 +0 0.0620 +0 0.0849 +0 0.0777 +0 0.0654 +0 0.0815 +0 0.3519 +1 0.8814 +0 0.1782 +0 0.1083 +0 0.0424 +0 0.0793 +0 0.1002 +0 0.0420 +0 0.1143 +0 0.3228 +0 0.0939 +0 0.0861 +0 0.0967 +0 0.0810 +0 0.1733 +0 0.0988 +0 0.1086 +0 0.0982 +0 0.2950 +0 0.1353 +0 0.0455 +0 0.1457 +0 0.0780 +0 0.0810 +0 0.6257 +0 0.0894 +0 0.1853 +0 0.0705 +0 0.0443 +0 0.0882 +0 0.1329 +0 0.7112 +0 0.0551 +0 0.1382 +0 0.0601 +0 0.0755 +1 0.7868 +0 0.0580 +0 0.2748 +0 0.1616 +1 0.8078 +0 0.0853 +0 0.1124 +0 0.1991 +0 0.2539 +0 0.0831 +0 0.0472 +1 0.7510 +0 0.0960 +1 0.8526 +0 0.0607 +0 0.0732 +0 0.0703 +0 0.1240 +0 0.0551 +0 0.1968 +0 0.1634 +0 0.0502 +0 0.1078 +0 0.0781 +0 0.1428 +0 0.0492 +0 0.3271 +0 0.0884 +0 0.1603 +0 0.0733 +0 0.1150 +0 0.1195 +0 0.1845 +0 0.4615 +0 0.0980 +0 0.2822 +0 0.0570 +0 0.0393 +0 0.0392 +0 0.0664 +0 0.2396 +0 0.2089 +0 0.1135 +0 0.0815 +1 0.7695 +0 0.1229 +0 0.1548 +0 0.1634 +0 0.1300 +0 0.0885 +0 0.0953 +0 0.1087 +0 0.1707 +0 0.0885 +0 0.2148 +0 0.0580 +0 0.1119 +0 0.1821 +0 0.0772 +0 0.0876 +0 0.0756 +0 0.1289 +0 0.1803 +0 0.4978 +0 0.0344 +0 0.0715 +0 0.0592 +0 0.1299 +0 0.1479 +0 0.0870 +0 0.1877 +0 0.1444 +0 0.0768 +0 0.0946 +0 0.1092 +0 0.2351 +0 0.0914 +0 0.1238 +0 0.0661 +0 0.0522 +0 0.0610 +0 0.1842 +0 0.1457 +0 0.1660 +0 0.0677 +0 0.0385 +0 0.1324 +0 0.0995 +0 0.1081 +0 0.2335 +0 0.1386 +0 0.0874 +0 0.0574 +0 0.1394 +0 0.1298 +0 0.2951 +0 0.1011 +0 0.0384 +0 0.1201 +0 0.0609 +0 0.0489 +0 0.1386 +0 0.1022 +0 0.0806 +0 0.1065 +0 0.5655 +0 0.0726 +0 0.0488 +0 0.3710 +0 0.3297 +0 0.0605 +0 0.0534 +0 0.2087 +0 0.1671 +0 0.1100 +0 0.0419 +0 0.1099 +0 0.2893 +0 0.2311 +0 0.1235 +0 0.1643 +0 0.0961 +0 0.0594 +0 0.0986 +0 0.0387 +0 0.2024 +0 0.1034 +0 0.1972 +0 0.0822 +0 0.0533 +0 0.4616 +0 0.0623 +0 0.1571 +0 0.2175 +0 0.1307 +0 0.3404 +0 0.1443 +0 0.1214 +0 0.0717 +0 0.0712 +0 0.5770 +0 0.0604 +0 0.1166 +0 0.0418 +0 0.0987 +0 0.0939 +1 0.8758 +0 0.0878 +0 0.1672 +0 0.0704 +0 0.2752 +0 0.0410 +0 0.2168 +0 0.1084 +0 0.1461 +0 0.0811 +0 0.3486 +0 0.0979 +0 0.1003 +0 0.2090 +0 0.1026 +0 0.0790 +0 0.1542 +0 0.3329 +0 0.2577 +0 0.0389 +0 0.0632 +0 0.1743 +0 0.1487 +0 0.1233 +0 0.1633 +0 0.0637 +0 0.3346 +0 0.0717 +0 0.2069 +0 0.0843 +0 0.0693 +0 0.0794 +0 0.0555 +0 0.1133 +0 0.1370 +0 0.0777 +0 0.3058 +0 0.0863 +0 0.2911 +0 0.0606 +0 0.0543 +0 0.0279 +0 0.0743 +0 0.0696 +0 0.0930 +0 0.1448 +0 0.1768 +0 0.5961 +0 0.0624 +0 0.1603 +0 0.2304 +0 0.1037 +0 0.3442 +0 0.0860 +0 0.1295 +0 0.0451 +0 0.1129 +0 0.1521 +0 0.0785 +0 0.4115 +0 0.0937 +0 0.1731 +0 0.2475 +0 0.0368 +0 0.2612 +0 0.1167 +0 0.1001 +0 0.1547 +0 0.0664 +0 0.0549 +1 0.7655 +0 0.1194 +0 0.0467 +0 0.0951 +0 0.2563 +0 0.3510 +0 0.0587 +0 0.2595 +0 0.1678 +0 0.1561 +0 0.4798 +0 0.2066 +0 0.0972 +0 0.0565 +0 0.0730 +0 0.1783 +0 0.1155 +0 0.3350 +1 0.7688 +0 0.1372 +0 0.2934 +0 0.0639 +0 0.2078 +0 0.0737 +0 0.1475 +0 0.1299 +0 0.1475 +0 0.1610 +0 0.2235 +0 0.0408 +0 0.0790 +0 0.3326 +0 0.0625 +0 0.1419 +0 0.1428 +0 0.0925 +0 0.0775 +0 0.0987 +0 0.1201 +0 0.2661 +0 0.1252 +0 0.5400 +0 0.0741 +0 0.1622 +0 0.0642 +0 0.0407 +0 0.0554 +0 0.0819 +0 0.1436 +0 0.0647 +0 0.2486 +0 0.1206 +0 0.0868 +0 0.0988 +0 0.1157 +0 0.0560 +0 0.1071 +0 0.0547 +0 0.2232 +0 0.0937 +0 0.0697 +0 0.1452 +0 0.1395 +0 0.1681 +0 0.0935 +0 0.0414 +0 0.1601 +0 0.1052 +0 0.1975 +0 0.1421 +0 0.1564 +0 0.1040 +0 0.0568 +0 0.0491 +0 0.1714 +0 0.0407 +0 0.1186 +0 0.1051 +0 0.0433 +0 0.0754 +0 0.4838 +0 0.0701 +0 0.2801 +0 0.2955 +0 0.2979 +0 0.0364 +0 0.0350 +0 0.0834 +0 0.1357 +0 0.1922 +0 0.1281 +0 0.0577 +0 0.1285 +0 0.0805 +0 0.2221 +0 0.0937 +0 0.1280 +0 0.2022 +0 0.0721 +0 0.1291 +0 0.6395 +0 0.0766 +0 0.2655 +0 0.1686 +0 0.0893 +0 0.4093 +0 0.2355 +0 0.0883 +0 0.0907 +0 0.1801 +0 0.1969 +0 0.0878 +0 0.0598 +0 0.0651 +0 0.1614 +0 0.1268 +0 0.1368 +0 0.2015 +0 0.3519 +0 0.1103 +0 0.1230 +0 0.1606 +0 0.0774 +0 0.0743 +0 0.5297 +0 0.4388 +0 0.0406 +0 0.1241 +0 0.0598 +0 0.0621 +0 0.1213 +0 0.1269 +0 0.1424 +0 0.1184 +0 0.0550 +0 0.1259 +0 0.1176 +0 0.1757 +0 0.1099 +0 0.1133 +0 0.2614 +0 0.1400 +0 0.0698 +0 0.2354 +0 0.0954 +0 0.0514 +0 0.5127 +0 0.0627 +0 0.0642 +0 0.0621 +0 0.0630 +0 0.0649 +0 0.0654 +0 0.0844 +0 0.1841 +0 0.0822 +0 0.1602 +0 0.0538 +0 0.1483 +0 0.2422 +0 0.2630 +0 0.0669 +0 0.1099 +0 0.0832 +0 0.3649 +0 0.1687 +0 0.1130 +0 0.0805 +0 0.0567 +0 0.0554 +0 0.0658 +0 0.0645 +0 0.1667 +0 0.1052 +0 0.0950 +0 0.1141 +0 0.1085 +0 0.0913 +0 0.0912 +0 0.0858 +0 0.2816 +0 0.1114 +0 0.1174 +0 0.1177 +1 0.7829 +0 0.2141 +0 0.0417 +0 0.0541 +0 0.1074 +0 0.0574 +0 0.3936 +0 0.1907 +0 0.1680 +0 0.0493 +0 0.1009 +0 0.1028 +0 0.1194 +0 0.0712 +0 0.1801 +0 0.1004 +0 0.2085 +0 0.2696 +0 0.2251 +0 0.1216 +0 0.1456 +0 0.0827 +0 0.0780 +0 0.0407 +0 0.2128 +0 0.1051 +1 0.7711 +0 0.0906 +0 0.2210 +0 0.0625 +0 0.0836 +0 0.0801 +0 0.0764 +0 0.0428 +0 0.1097 +0 0.0410 +0 0.0786 +0 0.0793 +0 0.0468 +0 0.0979 +0 0.0372 +0 0.0921 +0 0.1245 +0 0.1260 +0 0.0367 +0 0.0719 +0 0.1834 +0 0.1976 +0 0.1327 +0 0.3445 +0 0.1081 +0 0.0908 +0 0.1353 +0 0.2223 +0 0.1903 +0 0.0438 +0 0.0516 +0 0.0513 +0 0.1221 +0 0.1293 +0 0.0923 +0 0.1817 +0 0.0750 +0 0.1118 +0 0.1876 +0 0.2119 +0 0.0997 +0 0.1503 +0 0.2355 +1 0.2833 +0 0.1420 +0 0.0740 +0 0.1446 +0 0.0473 +0 0.1041 +0 0.0690 +0 0.0680 +0 0.0591 +0 0.0895 +0 0.1289 +0 0.1313 +0 0.0767 +0 0.0436 +0 0.1561 +0 0.0542 +0 0.1144 +0 0.1911 +0 0.1614 +0 0.0501 +0 0.0742 +0 0.0726 +0 0.0729 +0 0.0435 +0 0.0353 +0 0.1841 +0 0.1056 +0 0.1345 +0 0.1938 +0 0.0388 +0 0.1934 +0 0.0681 +0 0.1172 +0 0.1682 +0 0.1691 +0 0.4636 +0 0.1187 +0 0.1787 +0 0.2819 +0 0.2027 +0 0.0556 +0 0.0284 +0 0.0517 +0 0.1170 +0 0.0646 +0 0.0774 +0 0.1835 +1 0.8259 +0 0.0554 +0 0.0838 +0 0.1546 +0 0.1343 +0 0.0509 +0 0.1299 +0 0.1403 +0 0.1368 +0 0.0462 +0 0.1048 +0 0.0478 +0 0.0852 +0 0.1212 +0 0.1977 +0 0.2505 +0 0.0833 +0 0.1678 +0 0.2038 +0 0.0818 +0 0.1355 +0 0.1010 +0 0.0597 +0 0.1282 +0 0.1034 +0 0.0696 +0 0.7500 +0 0.3151 +0 0.0657 +0 0.6949 +0 0.0522 +0 0.0621 +0 0.1597 +0 0.0770 +0 0.1082 +0 0.1620 +0 0.0871 +0 0.0795 +0 0.0511 +0 0.1814 +0 0.1220 +0 0.0518 +0 0.0987 +0 0.0679 +0 0.0647 +0 0.1001 +0 0.2271 +0 0.0403 +0 0.0610 +0 0.1489 +0 0.1160 +0 0.0966 +0 0.2601 +0 0.0586 +0 0.0497 +0 0.0671 +0 0.7238 +0 0.7127 +0 0.1077 +0 0.0863 +0 0.0411 +0 0.0522 +0 0.1334 +0 0.0886 +0 0.4634 +0 0.4107 +0 0.0336 +0 0.1177 +0 0.3008 +0 0.0841 +0 0.0817 +0 0.4434 +0 0.0874 +0 0.0522 +0 0.2845 +0 0.0733 +0 0.1203 +0 0.0589 +0 0.0897 +0 0.0618 +0 0.0384 +0 0.0827 +0 0.0326 +0 0.0583 +0 0.0884 +0 0.3157 +0 0.0971 +0 0.0836 +0 0.1778 +0 0.1449 +0 0.1597 +0 0.0561 +0 0.6371 +0 0.0984 +1 0.8273 +0 0.0803 +0 0.0724 +0 0.2512 +0 0.0836 +0 0.0464 +0 0.1916 +0 0.1421 +0 0.1030 +0 0.2227 +0 0.0463 +0 0.0727 +0 0.1307 +0 0.1427 +0 0.0912 +0 0.0828 +0 0.0646 +0 0.0788 +0 0.0528 +0 0.0455 +0 0.0933 +0 0.1345 +0 0.2015 +0 0.4441 +0 0.1236 +0 0.1664 +0 0.0601 +0 0.0820 +0 0.1232 +0 0.0838 +0 0.1205 +0 0.1217 +0 0.0674 +0 0.0441 +0 0.0678 +0 0.2788 +0 0.0520 +0 0.1448 +0 0.0535 +0 0.0669 +0 0.0635 +0 0.5675 +0 0.2975 +0 0.0563 +0 0.0765 +0 0.1148 +0 0.0616 +0 0.0974 +0 0.1213 +0 0.1252 +0 0.0811 +0 0.0881 +0 0.1394 +0 0.0460 +0 0.0647 +0 0.1605 +0 0.2066 +0 0.4658 +0 0.0557 +0 0.1767 +0 0.1264 +0 0.1326 +0 0.0753 +0 0.0887 +0 0.1166 +0 0.0766 +0 0.0867 +0 0.1422 +0 0.1890 +0 0.0464 +0 0.2048 +0 0.1106 +0 0.0373 +0 0.1553 +0 0.1406 +0 0.0782 +0 0.1396 +0 0.4241 +0 0.0423 +0 0.0886 +0 0.0686 +0 0.6459 +0 0.5371 +0 0.0656 +0 0.0798 +0 0.3642 +0 0.0401 +0 0.1530 +0 0.1767 +0 0.0490 +0 0.0563 +0 0.0763 +0 0.1508 +0 0.0591 +0 0.0857 +0 0.2918 +0 0.1158 +0 0.1478 +0 0.5211 +0 0.0410 +0 0.1790 +0 0.0716 +0 0.1045 +0 0.0615 +0 0.1385 +0 0.0801 +0 0.1719 +0 0.2096 +0 0.0972 +0 0.6097 +0 0.0897 +0 0.0625 +0 0.0940 +1 0.7731 +0 0.1206 +0 0.1184 +0 0.2713 +0 0.1312 +0 0.2257 +0 0.1135 +0 0.1012 +0 0.0872 +0 0.1343 +0 0.1163 +0 0.0627 +0 0.0729 +0 0.3064 +0 0.3471 +0 0.0677 +0 0.1063 +0 0.0887 +0 0.0381 +0 0.1158 +0 0.0503 +0 0.0418 +0 0.0916 +0 0.0946 +0 0.0367 +0 0.1481 +0 0.1421 +0 0.0920 +0 0.0683 +0 0.0736 +0 0.1013 +0 0.0746 +0 0.0608 +0 0.0432 +0 0.1162 +0 0.1760 +0 0.0470 +0 0.1141 +0 0.0723 +0 0.0358 +0 0.0914 +0 0.7374 +0 0.0683 +0 0.1254 +0 0.0605 +0 0.2564 +0 0.1893 +0 0.0386 +0 0.0538 +0 0.0698 +0 0.1321 +0 0.0416 +0 0.1170 +0 0.0583 +0 0.2024 +0 0.1322 +0 0.1061 +0 0.1290 +0 0.1275 +0 0.0895 +0 0.2835 +0 0.0858 +0 0.2291 +0 0.0537 +0 0.1895 +0 0.0834 +0 0.1436 +0 0.0585 +0 0.2482 +0 0.0543 +0 0.3085 +0 0.1182 +0 0.0566 +0 0.0913 +0 0.1823 +0 0.2426 +0 0.0579 +0 0.0723 +0 0.0553 +0 0.0688 +0 0.0996 +0 0.1485 +0 0.0386 +0 0.3351 +0 0.7291 +0 0.6187 +0 0.2662 +0 0.1255 +0 0.0997 +0 0.2018 +0 0.0395 +0 0.2933 +0 0.0762 +0 0.0930 +0 0.1118 +0 0.0966 +0 0.4348 +0 0.0433 +0 0.1662 +0 0.2382 +0 0.0633 +0 0.1416 +0 0.3055 +0 0.1442 +0 0.0931 +0 0.2690 +0 0.1207 +0 0.0985 +0 0.0706 +0 0.1382 +0 0.2695 +0 0.0836 +0 0.0738 +0 0.1354 +0 0.1349 +0 0.1174 +0 0.0971 +0 0.1149 +0 0.1666 +0 0.1461 +0 0.0799 +0 0.1085 +0 0.0886 +0 0.1435 +0 0.1017 +0 0.1078 +0 0.0718 +0 0.2140 +0 0.1343 +0 0.0668 +0 0.1238 +0 0.0522 +0 0.0951 +0 0.0678 +0 0.1121 +0 0.0710 +0 0.2128 +0 0.0793 +0 0.1653 +0 0.1366 +0 0.0349 +0 0.1380 +0 0.0648 +0 0.0710 +0 0.0888 +0 0.0898 +0 0.1476 +0 0.0827 +0 0.6236 +0 0.1207 +0 0.2924 +0 0.2593 +0 0.0563 +0 0.0473 +0 0.1005 +0 0.1149 +0 0.2956 +0 0.1679 +0 0.0452 +0 0.0565 +1 0.8574 +0 0.1801 +0 0.0573 +0 0.3418 +0 0.1810 +1 0.7804 +0 0.0579 +0 0.1267 +0 0.0760 +0 0.0590 +0 0.0830 +0 0.1407 +0 0.0508 +0 0.0998 +0 0.1207 +0 0.6059 +0 0.1218 +0 0.1116 +0 0.0413 +0 0.1232 +0 0.1616 +0 0.0743 +0 0.0984 +0 0.0879 +0 0.6970 +0 0.1472 +0 0.1019 +0 0.1447 +0 0.1265 +0 0.0722 +0 0.0886 +0 0.0609 +0 0.2453 +0 0.0725 +0 0.1718 +0 0.0931 +0 0.1072 +0 0.1549 +0 0.1251 +0 0.1631 +0 0.0895 +0 0.0729 +0 0.0587 +0 0.1946 +0 0.1430 +0 0.1831 +0 0.2810 +0 0.1243 +0 0.0920 +0 0.1262 +0 0.0706 +0 0.0506 +0 0.3921 +0 0.2291 +0 0.1752 +0 0.1203 +0 0.2328 +0 0.2704 +0 0.2980 +0 0.0696 +0 0.0615 +0 0.0711 +0 0.0728 +0 0.1630 +0 0.1834 +0 0.0954 +0 0.0829 +0 0.1368 +1 0.7812 +0 0.0614 +0 0.2144 +0 0.1378 +0 0.2354 +0 0.0927 +0 0.2125 +0 0.4036 +0 0.0564 +0 0.5474 +0 0.1106 +0 0.0565 +0 0.0544 +0 0.0879 +0 0.0451 +0 0.1801 +0 0.0914 +0 0.0865 +0 0.1412 +0 0.0900 +0 0.1487 +0 0.1963 +0 0.1318 +0 0.0754 +0 0.1796 +0 0.2750 +0 0.6153 +0 0.2215 +0 0.0581 +0 0.0921 +0 0.0883 +0 0.2871 +0 0.0433 +0 0.1159 +0 0.1830 +0 0.0519 +0 0.0511 +0 0.0425 +0 0.1204 +0 0.1062 +0 0.1076 +0 0.0379 +0 0.0461 +0 0.0999 +0 0.1511 +0 0.0584 +0 0.1066 +0 0.0461 +0 0.3992 +0 0.1154 +0 0.0544 +0 0.1504 +0 0.3857 +0 0.0893 +0 0.0548 +0 0.1413 +0 0.2821 +0 0.0961 +0 0.3584 +0 0.1100 +0 0.0719 +0 0.1856 +0 0.2647 +0 0.2061 +0 0.0891 +0 0.1168 +0 0.2409 +0 0.1638 +0 0.0594 +0 0.1461 +0 0.0719 +0 0.1444 +0 0.0914 +0 0.2051 +0 0.1020 +0 0.0839 +0 0.0653 +0 0.0813 +0 0.0737 +0 0.1760 +0 0.6301 +0 0.1442 +0 0.1100 +0 0.7452 +0 0.0934 +0 0.6700 +0 0.0753 +0 0.1781 +0 0.1350 +0 0.1186 +0 0.1038 +0 0.1110 +0 0.1319 +0 0.0701 +0 0.0716 +0 0.0787 +0 0.1492 +0 0.1203 +0 0.0866 +0 0.0758 +0 0.1995 +0 0.0779 +0 0.1683 +0 0.1899 +0 0.0621 +0 0.2767 +0 0.1006 +0 0.0753 +0 0.1048 +0 0.1822 +0 0.1052 +0 0.0461 +0 0.1612 +0 0.4086 +0 0.2582 +0 0.0888 +0 0.0922 +0 0.1148 +0 0.0827 +0 0.1765 +0 0.1093 +0 0.2929 +0 0.1219 +0 0.0535 +0 0.1080 +0 0.0709 +0 0.0505 +0 0.2675 +0 0.0959 +0 0.1785 +0 0.0484 +0 0.1082 +0 0.1326 +0 0.1501 +0 0.0982 +0 0.1244 +0 0.1296 +0 0.0620 +0 0.1133 +0 0.0766 +0 0.2968 +0 0.0634 +0 0.1302 +0 0.1008 +0 0.2614 +0 0.2104 +0 0.0763 +0 0.0736 +0 0.0739 +0 0.0531 +0 0.1633 +0 0.0888 +0 0.0849 +0 0.1513 +0 0.1722 +0 0.2656 +0 0.1084 +0 0.0810 +0 0.0497 +0 0.1104 +0 0.1089 +0 0.0471 +0 0.1252 +0 0.0957 +0 0.0487 +0 0.0995 +0 0.2391 +0 0.2264 +0 0.0756 +0 0.1006 +0 0.0985 +0 0.0515 +0 0.1335 +0 0.0787 +0 0.0934 +0 0.5295 +0 0.1119 +0 0.0783 +0 0.4492 +0 0.1245 +0 0.1262 +0 0.0788 +0 0.1142 +0 0.1560 +0 0.0626 +0 0.1063 +0 0.1167 +0 0.2374 +0 0.0708 +0 0.1064 +0 0.1625 +0 0.4826 +0 0.0462 +0 0.2185 +0 0.1544 +0 0.0814 +0 0.1666 +0 0.3989 +0 0.2129 +0 0.0297 +0 0.0840 +0 0.0428 +0 0.1450 +0 0.0928 +0 0.1327 +0 0.0752 +0 0.1288 +0 0.0974 +0 0.0776 +0 0.0544 +0 0.1560 +0 0.0838 +0 0.2536 +0 0.0819 +0 0.1468 +0 0.0812 +0 0.1135 +0 0.1695 +0 0.4213 +0 0.0859 +0 0.1093 +0 0.0671 +0 0.1331 +0 0.0791 +1 0.7989 +0 0.0629 +0 0.1846 +0 0.1663 +0 0.1135 +0 0.1328 +0 0.0800 +0 0.0773 +0 0.5833 +0 0.0771 +0 0.1499 +0 0.0437 +0 0.0508 +0 0.0602 +0 0.1008 +0 0.0805 +0 0.1194 +0 0.0692 +0 0.1267 +0 0.0481 +0 0.1574 +0 0.1181 +0 0.1501 +0 0.1751 +0 0.0696 +0 0.0746 +0 0.0479 +0 0.1317 +0 0.0422 +0 0.0616 +0 0.2527 +0 0.0945 +0 0.7332 +0 0.1200 +0 0.0466 +0 0.1867 +0 0.1518 +0 0.1307 +0 0.1180 +0 0.0993 +0 0.0971 +0 0.2610 +0 0.1697 +0 0.1216 +0 0.1024 +0 0.0893 +0 0.0504 +0 0.2149 +0 0.0672 +0 0.0932 +0 0.1326 +0 0.0521 +0 0.2226 +0 0.0680 +0 0.0886 +0 0.1845 +0 0.1809 +0 0.0527 +0 0.1050 +0 0.0485 +0 0.0873 +1 0.8385 +0 0.0837 +0 0.0623 +0 0.1018 +0 0.1791 +0 0.0431 +0 0.0786 +0 0.0741 +0 0.1378 +0 0.1068 +0 0.0292 +0 0.0800 +0 0.2469 +0 0.2717 +0 0.1788 +0 0.1509 +0 0.0366 +0 0.1654 +0 0.1022 +0 0.2103 +0 0.0981 +0 0.5800 +0 0.0557 +0 0.4302 +0 0.1534 +0 0.0425 +0 0.3489 +0 0.1706 +0 0.2056 +0 0.1764 +0 0.7432 +0 0.1060 +0 0.2837 +0 0.0963 +0 0.0450 +0 0.1480 +0 0.2086 +0 0.3640 +0 0.0721 +0 0.2577 +0 0.0804 +0 0.1628 +0 0.0412 +0 0.0499 +0 0.1177 +0 0.0622 +0 0.1001 +0 0.2225 +0 0.1132 +0 0.0940 +0 0.0651 +0 0.0673 +0 0.0897 +0 0.0619 +0 0.0864 +0 0.0533 +0 0.0589 +0 0.1285 +0 0.1458 +0 0.0545 +0 0.0988 +0 0.1376 +0 0.0833 +0 0.0957 +0 0.1502 +0 0.0898 +0 0.0683 +0 0.0481 +0 0.2978 +0 0.0794 +0 0.7315 +0 0.0543 +0 0.2122 +0 0.1405 +0 0.2037 +1 0.8287 +0 0.1970 +0 0.1599 +0 0.1356 +0 0.0615 +0 0.4395 +0 0.0335 +0 0.3141 +0 0.0529 +0 0.2506 +0 0.0957 +0 0.1236 +0 0.0620 +0 0.0481 +0 0.0288 +0 0.0526 +0 0.2344 +0 0.0809 +0 0.1573 +0 0.1192 +0 0.4534 +0 0.3937 +0 0.1124 +0 0.0656 +0 0.2383 +0 0.0795 +1 0.8006 +0 0.0679 +0 0.2202 +0 0.1232 +0 0.1658 +0 0.2753 +0 0.0855 +0 0.0542 +0 0.0887 +0 0.1100 +0 0.3762 +0 0.1221 +0 0.1218 +0 0.1442 +0 0.0555 +1 0.7608 +0 0.0575 +0 0.3028 +0 0.2294 +0 0.0679 +0 0.0639 +0 0.1598 +0 0.0775 +0 0.1726 +0 0.0585 +0 0.1251 +0 0.0651 +0 0.1107 +0 0.1147 +0 0.1559 +0 0.1967 +0 0.2913 +0 0.1079 +0 0.1705 +0 0.1386 +0 0.1008 +0 0.4346 +0 0.1289 +0 0.0747 +0 0.1430 +0 0.0636 +0 0.0509 +0 0.1206 +0 0.0887 +1 0.8079 +0 0.0823 +0 0.2715 +0 0.0696 +0 0.0492 +0 0.1051 +0 0.1023 +0 0.2355 +0 0.1205 +0 0.1064 +0 0.0650 +0 0.0836 +0 0.1940 +0 0.0506 +0 0.1613 +0 0.1385 +0 0.0949 +0 0.1556 +1 0.7713 +0 0.0876 +0 0.0951 +0 0.1616 +0 0.1695 +0 0.1018 +0 0.0621 +0 0.1766 +0 0.1020 +0 0.0593 +0 0.1042 +0 0.0767 +0 0.0783 +0 0.1068 +0 0.0709 +0 0.1033 +0 0.0626 +0 0.1466 +0 0.0813 +0 0.1530 +0 0.1277 +0 0.2088 +0 0.1098 +0 0.0960 +0 0.0690 +0 0.0388 +0 0.0817 +0 0.1954 +0 0.1099 +0 0.0776 +0 0.2130 +0 0.1003 +0 0.1807 +0 0.1699 +0 0.2530 +0 0.3555 +0 0.1143 +0 0.1251 +0 0.0534 +0 0.1940 +0 0.3136 +0 0.0599 +0 0.0582 +0 0.1526 +0 0.2472 +0 0.0727 +0 0.0803 +0 0.0307 +0 0.1606 +0 0.1216 +0 0.1612 +0 0.2416 +0 0.1323 +0 0.1253 +0 0.2594 +0 0.3610 +0 0.6376 +0 0.1192 +0 0.0644 +0 0.1312 +0 0.2022 +0 0.1077 +0 0.0394 +0 0.0515 +0 0.1814 +0 0.1332 +0 0.1409 +0 0.2726 +0 0.0739 +0 0.0776 +0 0.0449 +0 0.0882 +0 0.6818 +0 0.1033 +0 0.1424 +0 0.0373 +0 0.0952 +0 0.0447 +0 0.0943 +0 0.2162 +0 0.0433 +0 0.3079 +0 0.1263 +0 0.3672 +0 0.1631 +0 0.3200 +0 0.0572 +0 0.3986 +0 0.1037 +0 0.0750 +0 0.0520 +0 0.2662 +0 0.0838 +0 0.1254 +0 0.0458 +0 0.6263 +0 0.0715 +0 0.1226 +0 0.0585 +0 0.0319 +0 0.0618 +0 0.0845 +0 0.1703 +0 0.0750 +0 0.1390 +0 0.0519 +0 0.1476 +0 0.1817 +0 0.0481 +0 0.1473 +0 0.1096 +0 0.0675 +0 0.1044 +0 0.1443 +0 0.0642 +0 0.0785 +0 0.0802 +0 0.0569 +0 0.0398 +0 0.1624 +0 0.1639 +0 0.0996 +0 0.1656 +0 0.1545 +0 0.1183 +0 0.3470 +0 0.0426 +0 0.0456 +0 0.0709 +0 0.5350 +0 0.1929 +0 0.0644 +0 0.1205 +0 0.2100 +0 0.7335 +0 0.3336 +0 0.1271 +0 0.5583 +0 0.1232 +0 0.0870 +0 0.0995 +0 0.0729 +0 0.0655 +0 0.2593 +0 0.0633 +0 0.0880 +0 0.1372 +0 0.0718 +0 0.2732 +0 0.1050 +0 0.0588 +0 0.1406 +0 0.0809 +1 0.8074 +0 0.1259 +0 0.0393 +0 0.0633 +0 0.1435 +0 0.1352 +0 0.1748 +0 0.2240 +0 0.2736 +0 0.0537 +0 0.1438 +0 0.1597 +0 0.2093 +0 0.1157 +0 0.1151 +0 0.1654 +1 0.7851 +0 0.0966 +0 0.0680 +0 0.0694 +0 0.1964 +0 0.1041 +0 0.7073 +0 0.5529 +0 0.0409 +0 0.0476 +0 0.0505 +0 0.0603 +0 0.1252 +0 0.0854 +0 0.1072 +0 0.1169 +0 0.0554 +0 0.3919 +0 0.1086 +0 0.0574 +0 0.2170 +0 0.1602 +0 0.0927 +0 0.0866 +0 0.1786 +0 0.2570 +0 0.0962 +0 0.0717 +0 0.1162 +0 0.0953 +0 0.0941 +0 0.0530 +0 0.1026 +0 0.0567 +0 0.1092 +0 0.0898 +0 0.0942 +0 0.0628 +0 0.1633 +0 0.0634 +0 0.0677 +0 0.0894 +0 0.0578 +0 0.0761 +0 0.1579 +0 0.0997 +0 0.1363 +0 0.0494 +0 0.2441 +0 0.1153 +0 0.0685 +0 0.0466 +0 0.0670 +0 0.1377 +0 0.0974 +0 0.0970 +0 0.0428 +0 0.1102 +0 0.1318 +0 0.0677 +0 0.1272 +0 0.2998 +0 0.0871 +0 0.0997 +0 0.2466 +0 0.0860 +0 0.0803 +0 0.0509 +0 0.2480 +0 0.0899 +0 0.1407 +0 0.1143 +0 0.0732 +0 0.0565 +0 0.2162 +0 0.0686 +0 0.0898 +0 0.0602 +0 0.0423 +0 0.1397 +0 0.1815 +0 0.0794 +0 0.0478 +0 0.0344 +0 0.0866 +0 0.1754 +0 0.2368 +0 0.0678 +0 0.1494 +0 0.1529 +0 0.0923 +0 0.1378 +0 0.1827 +0 0.1713 +0 0.1012 +0 0.1341 +0 0.0487 +0 0.0642 +0 0.1099 +0 0.1659 +0 0.1490 +0 0.0375 +0 0.0828 +0 0.0694 +0 0.0985 +0 0.0551 +0 0.0816 +0 0.6355 +0 0.0692 +0 0.3660 +0 0.6220 +0 0.1049 +0 0.1509 +0 0.0473 +0 0.1039 +0 0.1070 +0 0.2370 +0 0.1091 +0 0.0590 +0 0.1202 +0 0.1841 +0 0.0759 +0 0.1014 +0 0.1106 +0 0.1692 +0 0.0765 +0 0.0809 +0 0.1699 +0 0.1375 +0 0.0348 +0 0.0966 +0 0.1044 +0 0.1436 +0 0.2530 +0 0.0555 +0 0.1028 +0 0.1547 +0 0.1531 +0 0.2777 +0 0.0747 +0 0.0944 +0 0.0992 +0 0.0416 +0 0.1832 +0 0.1165 +0 0.0831 +0 0.0491 +0 0.2158 +0 0.3701 +0 0.1757 +0 0.3018 +0 0.1848 +0 0.1377 +0 0.0954 +0 0.0979 +0 0.0840 +0 0.3610 +0 0.1801 +0 0.1227 +0 0.2801 +0 0.0699 +0 0.1081 +0 0.6622 +0 0.0367 +0 0.0639 +0 0.1457 +0 0.0676 +0 0.0530 +0 0.0571 +0 0.1510 +0 0.1552 +0 0.0724 +0 0.0582 +0 0.0824 +0 0.0799 +0 0.0851 +0 0.0770 +0 0.0760 +0 0.1052 +0 0.6921 +0 0.1485 +0 0.0892 +0 0.2535 +0 0.1533 +0 0.1127 +0 0.2202 +0 0.0772 +0 0.1988 +0 0.0839 +0 0.1001 +0 0.0626 +0 0.1955 +0 0.2929 +0 0.1016 +0 0.0814 +0 0.1524 +0 0.1066 +0 0.1238 +0 0.5498 +0 0.0442 +0 0.0537 +0 0.0395 +0 0.0890 +0 0.0559 +0 0.1023 +0 0.1976 +0 0.0670 +0 0.3724 +0 0.1655 +0 0.0834 +0 0.0815 +0 0.3707 +0 0.0717 +0 0.0686 +0 0.1432 +0 0.2959 +0 0.0918 +0 0.0725 +0 0.0980 +0 0.1773 +0 0.0912 +0 0.0514 +0 0.0467 +0 0.4730 +0 0.1110 +0 0.0772 +0 0.1065 +0 0.3085 +0 0.0746 +0 0.0831 +0 0.1362 +0 0.1462 +0 0.0550 +0 0.1290 +0 0.2993 +0 0.1163 +0 0.0824 +0 0.0546 +0 0.0753 +0 0.1619 +0 0.0775 +0 0.1043 +0 0.0926 +0 0.0921 +0 0.0735 +0 0.3138 +0 0.0676 +0 0.0777 +0 0.0535 +0 0.0533 +0 0.1020 +0 0.0769 +0 0.0626 +0 0.0686 +0 0.1744 +0 0.0734 +0 0.0810 +0 0.0521 +0 0.0930 +0 0.1122 +0 0.0559 +0 0.1865 +0 0.0796 +0 0.0514 +0 0.0717 +0 0.0381 +0 0.2794 +0 0.0554 +0 0.1371 +0 0.0755 +0 0.0970 +0 0.1230 +1 0.8745 +0 0.0856 +0 0.0471 +0 0.0754 +0 0.0446 +0 0.0830 +0 0.2548 +0 0.0714 +0 0.1451 +0 0.0637 +0 0.0705 +0 0.0424 +0 0.0725 +0 0.0357 +0 0.0880 +0 0.2389 +0 0.0832 +0 0.2507 +0 0.3976 +0 0.0456 +0 0.0451 +1 0.7673 +0 0.3272 +0 0.0645 +1 0.8727 +0 0.3212 +0 0.1836 +0 0.1511 +0 0.0973 +0 0.0643 +1 0.8029 +0 0.0730 +0 0.0568 +0 0.1247 +0 0.0815 +0 0.0927 +0 0.1826 +0 0.1000 +0 0.2158 +0 0.0546 +0 0.3258 +0 0.4341 +0 0.0540 +0 0.1009 +0 0.1340 +0 0.0383 +0 0.1613 +0 0.0659 +0 0.1182 +0 0.1547 +0 0.1532 +0 0.2215 +0 0.1518 +0 0.0663 +0 0.0816 +0 0.0954 +0 0.3065 +0 0.0977 +0 0.0919 +0 0.0838 +0 0.2075 +0 0.0810 +0 0.1544 +0 0.0848 +0 0.5913 +0 0.3616 +0 0.0461 +0 0.0797 +0 0.1072 +0 0.2327 +0 0.0672 +0 0.0737 +0 0.1642 +0 0.1427 +0 0.0742 +0 0.0538 +0 0.0711 +0 0.0655 +0 0.0521 +0 0.1358 +0 0.7368 +0 0.0937 +0 0.1096 +0 0.1723 +0 0.0836 +0 0.0632 +0 0.0855 +0 0.3008 +0 0.0900 +0 0.2005 +0 0.0651 +0 0.1383 +0 0.2215 +0 0.4322 +0 0.7210 +0 0.0546 +0 0.1017 +0 0.0983 +0 0.1960 +0 0.1757 +0 0.1450 +0 0.0494 +0 0.1497 +0 0.0993 +0 0.1181 +0 0.3795 +0 0.0437 +0 0.0492 +0 0.0585 +0 0.3748 +0 0.0694 +0 0.0898 +0 0.3275 +0 0.0561 +0 0.1609 +0 0.2288 +0 0.0484 +0 0.2875 +0 0.0715 +0 0.0846 +0 0.3373 +0 0.0610 +0 0.0536 +0 0.0346 +0 0.0905 +0 0.1810 +0 0.1437 +0 0.0911 +0 0.0698 +0 0.0951 +0 0.0784 +0 0.1865 +0 0.0334 +0 0.0367 +0 0.0604 +0 0.0853 +0 0.1651 +0 0.0460 +1 0.7900 +0 0.0476 +0 0.1430 +0 0.0634 +0 0.3098 +0 0.0912 +0 0.0759 +0 0.0809 +0 0.2135 +0 0.2669 +0 0.3041 +0 0.1128 +0 0.0547 +0 0.1590 +0 0.1656 +0 0.2619 +0 0.0417 +0 0.0693 +0 0.1035 +0 0.2025 +0 0.0707 +0 0.0872 +0 0.0588 +0 0.0928 +0 0.1773 +0 0.1557 +0 0.0895 +0 0.1211 +0 0.2229 +0 0.1190 +0 0.2098 +0 0.0641 +0 0.0947 +0 0.4915 +0 0.0884 +0 0.0727 +0 0.0666 +0 0.1401 +0 0.1906 +0 0.1285 +0 0.0545 +0 0.1304 +0 0.1134 +0 0.1629 +0 0.1348 +0 0.1123 +0 0.1726 +0 0.0633 +0 0.1479 +0 0.6657 +0 0.0680 +0 0.2204 +0 0.1310 +0 0.0913 +0 0.0859 +0 0.2094 +0 0.2222 +0 0.0960 +0 0.0996 +0 0.0669 +0 0.5672 +0 0.0677 +0 0.0885 +0 0.1587 +0 0.1067 +0 0.0780 +0 0.1477 +0 0.1068 +0 0.2330 +0 0.0523 +0 0.0479 +0 0.1511 +0 0.1389 +0 0.2310 +0 0.1228 +0 0.0483 +0 0.1580 +0 0.0650 +0 0.0647 +0 0.7480 +0 0.0634 +0 0.1189 +0 0.0575 +0 0.2220 +0 0.0533 +0 0.1060 +0 0.1464 +0 0.0902 +0 0.0593 +0 0.0641 +0 0.2089 +0 0.0484 +0 0.0616 +0 0.0376 +0 0.1046 +0 0.1137 +0 0.1453 +0 0.0763 +0 0.0673 +0 0.0857 +0 0.0636 +0 0.3460 +0 0.1024 +0 0.0912 +0 0.1818 +0 0.1373 +0 0.5613 +0 0.0779 +1 0.8352 +0 0.1711 +0 0.0529 +0 0.0706 +0 0.0517 +0 0.0732 +0 0.1160 +0 0.0553 +0 0.2573 +0 0.3295 +0 0.1006 +0 0.1542 +0 0.1837 +0 0.0897 +0 0.0370 +0 0.1161 +0 0.2048 +0 0.0436 +0 0.0852 +0 0.2221 +0 0.1244 +0 0.0693 +0 0.0652 +0 0.1776 +0 0.2532 +0 0.0795 +0 0.2021 +0 0.0721 +0 0.0815 +0 0.1005 +0 0.0877 +0 0.0504 +0 0.2749 +0 0.1602 +0 0.1623 +1 0.7950 +0 0.2898 +0 0.1424 +0 0.0672 +0 0.1612 +0 0.0508 +0 0.0684 +0 0.3821 +0 0.0727 +0 0.1378 +0 0.1035 +0 0.0872 +0 0.1109 +0 0.0776 +0 0.0862 +0 0.4407 +0 0.0787 +0 0.1112 +0 0.0888 +0 0.0763 +0 0.0501 +0 0.0589 +0 0.0751 +0 0.1720 +0 0.1160 +0 0.1106 +0 0.0987 +0 0.1047 +0 0.1828 +0 0.1344 +0 0.2263 +0 0.1091 +0 0.1181 +0 0.0735 +0 0.6832 +0 0.1248 +0 0.1088 +0 0.0884 +0 0.0481 +0 0.6732 +0 0.3560 +0 0.1937 +0 0.0921 +0 0.0993 +0 0.1090 +0 0.1275 +0 0.0931 +0 0.0523 +0 0.0518 +0 0.0805 +0 0.5315 +0 0.4002 +0 0.1944 +0 0.1012 +0 0.0766 +0 0.2418 +0 0.0666 +0 0.0980 +0 0.0401 +0 0.0344 +0 0.0428 +0 0.0556 +0 0.1130 +0 0.0781 +0 0.0809 +0 0.0412 +0 0.0310 +0 0.1186 +0 0.0414 +0 0.4761 +0 0.1283 +0 0.0738 +0 0.0648 +0 0.1260 +0 0.0481 +0 0.0881 +0 0.0894 +0 0.0609 +0 0.0628 +0 0.0460 +0 0.0630 +0 0.3867 +0 0.0760 +0 0.1320 +0 0.0924 +0 0.2215 +1 0.7671 +0 0.5795 +0 0.1065 +0 0.1292 +0 0.0541 +0 0.1079 +0 0.1029 +0 0.0844 +0 0.1223 +0 0.0580 +0 0.0566 +0 0.0480 +0 0.0983 +0 0.0893 +0 0.0474 +0 0.2429 +0 0.0495 +0 0.0569 +0 0.1964 +0 0.1635 +0 0.0549 +0 0.1376 +1 0.7828 +0 0.0782 +0 0.1305 +0 0.1639 +0 0.0785 +0 0.4620 +0 0.1647 +0 0.0688 +0 0.1044 +0 0.0785 +0 0.0674 +0 0.2845 +0 0.0622 +0 0.2174 +0 0.0744 +0 0.0612 +0 0.1664 +0 0.0887 +0 0.1083 +0 0.1068 +0 0.3062 +0 0.0967 +0 0.1685 +0 0.0775 +0 0.0433 +0 0.1970 +0 0.0828 +0 0.4084 +0 0.1061 +0 0.1022 +0 0.0905 +0 0.0333 +0 0.1042 +0 0.0695 +0 0.0662 +0 0.1054 +0 0.0636 +0 0.0840 +0 0.2799 +0 0.1184 +0 0.4178 +0 0.2202 +0 0.1395 +0 0.0609 +0 0.0841 +0 0.0763 +0 0.0794 +0 0.1928 +0 0.0743 +0 0.0999 +0 0.0870 +0 0.1613 +0 0.1940 +0 0.1626 +1 0.8288 +0 0.1162 +0 0.1264 +0 0.0291 +0 0.1667 +0 0.0833 +0 0.1656 +0 0.1164 +0 0.1383 +0 0.0774 +0 0.0843 +0 0.1753 +0 0.0606 +0 0.0516 +0 0.1811 +0 0.2743 +0 0.3091 +0 0.1070 +0 0.1665 +0 0.0742 +0 0.1855 +0 0.1884 +0 0.1574 +0 0.3724 +0 0.1427 +0 0.0944 +0 0.0815 +0 0.0577 +0 0.0859 +0 0.0881 +0 0.0772 +0 0.2342 +0 0.6543 +0 0.0368 +0 0.2318 +0 0.1302 +0 0.2176 +0 0.1020 +0 0.2713 +0 0.1033 +0 0.4416 +0 0.1577 +0 0.2092 +0 0.1259 +0 0.1459 +0 0.1881 +0 0.0895 +0 0.0600 +0 0.1798 +0 0.0438 +0 0.1897 +0 0.1035 +0 0.3954 +1 0.8451 +0 0.1374 +1 0.8505 +0 0.0904 +0 0.3167 +0 0.1092 +0 0.0476 +0 0.0417 +0 0.2126 +0 0.1661 +0 0.0418 +0 0.0334 +0 0.2189 +0 0.1359 +0 0.1811 +0 0.0974 +0 0.1291 +0 0.1065 +1 0.7914 +0 0.2175 +0 0.1591 +0 0.0639 +0 0.4474 +0 0.2178 +0 0.1104 +0 0.1293 +0 0.1946 +0 0.2166 +0 0.1553 +1 0.7702 +0 0.0632 +0 0.0715 +0 0.0931 +0 0.1132 +0 0.1795 +0 0.1070 +0 0.3150 +0 0.0550 +0 0.1260 +0 0.3860 +0 0.0611 +0 0.0693 +0 0.0898 +0 0.1111 +0 0.1180 +0 0.4697 +0 0.3048 +0 0.2416 +0 0.1715 +0 0.0639 +0 0.1041 +0 0.4113 +0 0.1061 +0 0.0423 +0 0.1864 +0 0.2475 +0 0.1229 +0 0.1292 +0 0.0951 +0 0.1127 +0 0.2995 +0 0.0792 +0 0.0607 +0 0.1958 +0 0.3703 +0 0.2928 +0 0.1343 +0 0.0448 +0 0.1025 +0 0.3150 +0 0.0488 +0 0.2567 +0 0.0996 +0 0.0802 +0 0.1149 +0 0.1813 +0 0.1006 +0 0.1267 +0 0.0435 +0 0.0618 +0 0.0550 +0 0.1083 +0 0.1321 +0 0.1599 +0 0.0724 +0 0.1186 +0 0.1200 +0 0.1076 +0 0.0808 +0 0.2765 +0 0.1370 +0 0.0563 +0 0.0742 +0 0.4617 +0 0.2116 +0 0.2749 +0 0.1510 +0 0.1165 +0 0.3466 +0 0.1039 +0 0.0807 +0 0.2527 +0 0.1185 +0 0.0942 +0 0.1891 +0 0.0788 +0 0.1403 +0 0.1533 +0 0.1060 +0 0.1500 +0 0.1266 +0 0.2276 +0 0.1067 +0 0.1570 +0 0.1275 +0 0.0602 +0 0.5038 +0 0.0591 +0 0.3794 +0 0.2087 +0 0.0604 +0 0.0666 +0 0.0863 +0 0.1627 +0 0.1085 +0 0.0698 +0 0.1617 +0 0.0939 +0 0.1200 +0 0.0991 +0 0.2607 +0 0.1914 +0 0.2795 +0 0.1133 +0 0.1553 +0 0.1267 +0 0.2567 +0 0.1234 +0 0.1115 +0 0.1324 +0 0.0481 +0 0.1886 +0 0.1621 +0 0.1130 +0 0.0848 +0 0.0777 +0 0.0808 +0 0.0448 +0 0.0898 +0 0.0636 +0 0.0904 +0 0.0555 +0 0.1030 +0 0.1488 +0 0.1771 +0 0.0849 +0 0.1410 +0 0.1169 +0 0.0423 +0 0.0392 +0 0.1153 +0 0.0370 +0 0.2250 +0 0.1105 +0 0.0442 +0 0.0529 +0 0.1768 +0 0.1383 +0 0.0674 +0 0.1809 +0 0.0846 +0 0.0986 +0 0.0970 +0 0.0915 +0 0.1167 +0 0.0577 +0 0.1807 +0 0.0894 +0 0.1432 +0 0.0823 +0 0.0618 +0 0.1211 +0 0.0640 +0 0.1122 +0 0.1190 +0 0.0445 +0 0.0491 +0 0.1841 +0 0.1078 +0 0.1679 +0 0.1268 +0 0.2355 +0 0.1978 +0 0.0646 +0 0.1651 +0 0.1035 +0 0.0754 +0 0.0793 +0 0.0554 +0 0.1376 +0 0.1468 +0 0.0658 +0 0.1177 +0 0.0463 +0 0.0933 +0 0.0674 +0 0.0991 +0 0.4879 +0 0.1626 +0 0.2188 +0 0.0428 +0 0.2364 +0 0.3400 +0 0.1284 +0 0.0590 +0 0.1494 +0 0.0976 +0 0.2525 +0 0.1399 +0 0.0441 +0 0.1486 +0 0.2281 +0 0.0896 +0 0.1274 +0 0.0840 +1 0.7920 +0 0.0836 +0 0.3528 +0 0.1718 +0 0.1327 +0 0.0538 +0 0.0791 +0 0.1404 +0 0.1139 +0 0.2696 +0 0.1760 +0 0.4963 +0 0.0824 +0 0.0485 +0 0.2115 +0 0.0800 +0 0.1674 +0 0.1373 +0 0.1002 +0 0.0943 +0 0.1475 +0 0.2326 +0 0.1602 +0 0.1908 +0 0.1153 +0 0.0414 +0 0.0926 +0 0.0580 +0 0.1879 +0 0.2451 +0 0.0990 +0 0.0405 +0 0.2526 +0 0.2191 +0 0.0729 +0 0.0838 +0 0.2070 +0 0.0560 +0 0.1926 +0 0.1041 +0 0.1308 +0 0.1849 +0 0.0581 +0 0.1399 +0 0.1142 +1 0.7540 +0 0.0543 +0 0.0796 +0 0.0986 +0 0.1444 +0 0.0496 +0 0.1055 +0 0.1213 +0 0.0785 +0 0.0766 +0 0.0975 +0 0.3621 +0 0.2368 +0 0.1228 +0 0.4993 +0 0.0737 +0 0.1046 +0 0.1013 +0 0.0662 +0 0.1507 +0 0.0686 +0 0.0748 +0 0.0955 +1 0.8598 +0 0.0892 +0 0.0598 +0 0.0992 +0 0.0953 +0 0.5803 +0 0.1188 +0 0.0983 +0 0.1156 +0 0.1104 +0 0.3206 +0 0.0639 +0 0.0764 +0 0.1341 +0 0.0783 +0 0.0691 +0 0.0661 +0 0.0922 +0 0.0440 +0 0.1351 +0 0.0835 +0 0.1971 +0 0.0760 +0 0.0958 +0 0.0814 +0 0.2203 +0 0.0704 +0 0.0791 +0 0.6190 +0 0.0717 +0 0.1317 +0 0.1282 +0 0.0755 +0 0.0563 +0 0.2903 +0 0.1265 +0 0.0414 +0 0.0734 +0 0.1940 +0 0.1275 +0 0.0770 +0 0.0618 +0 0.0779 +0 0.1937 +0 0.2414 +0 0.1739 +0 0.0773 +0 0.1154 +0 0.0996 +0 0.3990 +0 0.0670 +0 0.0549 +0 0.7389 +0 0.0588 +0 0.0617 +0 0.0592 +0 0.0853 +0 0.1908 +0 0.0334 +0 0.0508 +0 0.2342 +0 0.1559 +0 0.1148 +0 0.1180 +0 0.2380 +0 0.1315 +0 0.1603 +0 0.5654 +0 0.0780 +0 0.1836 +0 0.1011 +0 0.2133 +0 0.0453 +0 0.0645 +0 0.2379 +0 0.1202 +0 0.5169 +0 0.0742 +1 0.8671 +0 0.0687 +0 0.1064 +0 0.0491 +0 0.2507 +0 0.0919 +0 0.0550 +0 0.3297 +0 0.0804 +0 0.2292 +0 0.1602 +0 0.1659 +0 0.1427 +0 0.5302 +0 0.2558 +0 0.0927 +0 0.2301 +0 0.1010 +0 0.2245 +0 0.1238 +0 0.1077 +0 0.0858 +1 0.8676 +0 0.1277 +0 0.1399 +0 0.0560 +1 0.8415 +0 0.2015 +0 0.0804 +0 0.0886 +0 0.3753 +0 0.0418 +0 0.1592 +0 0.0352 +0 0.1375 +0 0.1827 +0 0.0702 +0 0.0508 +0 0.2877 +0 0.0613 +0 0.2365 +0 0.1391 +0 0.0531 +0 0.0839 +0 0.0741 +0 0.0704 +0 0.0851 +0 0.1690 +0 0.2266 +0 0.0868 +0 0.1428 +0 0.1586 +0 0.2197 +0 0.0795 +0 0.0870 +0 0.3089 +0 0.0771 +0 0.0701 +0 0.1375 +0 0.1553 +0 0.1527 +0 0.1450 +0 0.1676 +0 0.0787 +0 0.0721 +0 0.1108 +0 0.3205 +0 0.0661 +0 0.0941 +0 0.0895 +0 0.1463 +0 0.2921 +0 0.0617 +0 0.1911 +0 0.0876 +0 0.3449 +0 0.1206 +0 0.0849 +0 0.1526 +0 0.0452 +0 0.0821 +0 0.1369 +0 0.0884 +0 0.1088 +0 0.1251 +0 0.3363 +0 0.1252 +0 0.2991 +0 0.1119 +0 0.0852 +0 0.0580 +0 0.0893 +0 0.1560 +0 0.0905 +0 0.0943 +0 0.0636 +0 0.0775 +1 0.7638 +0 0.0806 +0 0.3287 +0 0.0624 +0 0.1012 +0 0.1317 +0 0.1673 +0 0.0563 +0 0.0498 +0 0.1436 +0 0.2829 +0 0.0721 +0 0.0567 +0 0.0615 +0 0.1478 +0 0.1113 +0 0.0388 +0 0.0827 +0 0.1759 +0 0.0775 +0 0.0841 +0 0.1385 +0 0.1290 +0 0.0996 +0 0.0820 +0 0.0512 +0 0.0812 +0 0.1399 +0 0.6677 +0 0.0429 +0 0.0861 +0 0.2882 +0 0.6826 +0 0.0714 +0 0.0983 +0 0.0544 +0 0.0867 +0 0.0852 +0 0.1569 +0 0.1276 +0 0.1269 +0 0.7323 +0 0.0693 +0 0.0729 +0 0.1259 +0 0.1020 +0 0.0555 +0 0.1152 +0 0.1513 +0 0.0530 +0 0.0658 +0 0.0780 +0 0.1614 +0 0.0685 +0 0.1078 +0 0.1181 +0 0.0623 +0 0.0903 +0 0.0626 +0 0.0562 +0 0.1289 +0 0.4113 +0 0.1935 +0 0.1482 +0 0.1576 +0 0.1190 +0 0.1666 +0 0.0325 +0 0.1623 +0 0.0573 +0 0.0940 +0 0.2300 +0 0.0576 +0 0.3913 +0 0.1298 +0 0.0569 +0 0.0775 +0 0.0708 +0 0.1154 +0 0.4398 +0 0.1174 +0 0.1164 +0 0.1661 +0 0.0832 +0 0.0713 +0 0.0830 +0 0.0514 +0 0.1807 +0 0.2225 +0 0.0472 +0 0.0903 +0 0.0808 +0 0.0491 +0 0.1012 +0 0.0357 +0 0.0398 +0 0.0566 +0 0.1164 +0 0.0571 +0 0.0751 +0 0.2695 +0 0.1236 +0 0.0764 +0 0.1064 +0 0.1043 +0 0.0420 +0 0.0862 +0 0.0652 +0 0.1285 +0 0.1032 +0 0.0655 +0 0.2050 +0 0.2955 +0 0.1128 +0 0.1734 +0 0.0766 +0 0.1231 +0 0.0889 +0 0.1159 +0 0.0836 +0 0.0923 +0 0.4065 +0 0.0757 +0 0.1247 +0 0.0390 +0 0.1153 +0 0.1770 +0 0.0923 +0 0.1738 +0 0.0934 +0 0.0816 +0 0.1324 +0 0.1430 +0 0.0607 +0 0.1171 +0 0.0756 +0 0.3525 +0 0.1047 +0 0.0502 +0 0.0597 +0 0.0989 +0 0.0448 +0 0.1389 +0 0.1436 +0 0.0722 +0 0.0626 +0 0.1971 +0 0.1836 +0 0.1100 +0 0.1977 +0 0.0898 +0 0.1685 +0 0.0800 +0 0.0769 +0 0.0654 +0 0.2214 +1 0.7702 +0 0.0703 +0 0.0342 +0 0.0743 +0 0.2058 +0 0.0686 +0 0.1549 +0 0.0392 +0 0.0463 +0 0.0954 +0 0.1239 +0 0.4896 +0 0.1793 +0 0.0710 +0 0.2737 +0 0.0467 +0 0.1096 +0 0.1120 +0 0.3210 +0 0.0623 +0 0.0681 +0 0.0964 +0 0.1148 +0 0.0740 +0 0.1450 +0 0.0500 +0 0.1171 +0 0.0632 +0 0.2036 +0 0.6550 +0 0.0875 +0 0.0773 +0 0.0635 +0 0.1129 +0 0.0781 +1 0.8013 +0 0.0796 +0 0.2696 +0 0.1490 +0 0.0689 +0 0.0750 +1 0.7954 +0 0.1077 +0 0.1650 +0 0.0695 +0 0.0380 +0 0.1150 +0 0.0884 +0 0.0545 +0 0.0638 +0 0.2830 +0 0.0479 +0 0.2399 +0 0.0741 +0 0.1693 +0 0.2004 +0 0.4566 +0 0.2349 +0 0.1198 +0 0.0652 +0 0.1001 +0 0.0479 +0 0.1473 +0 0.0873 +0 0.0896 +0 0.0872 +0 0.0828 +0 0.0467 +0 0.0977 +0 0.0903 +0 0.0522 +0 0.1561 +0 0.1416 +0 0.0646 +0 0.3018 +0 0.5828 +0 0.1540 +0 0.2556 +0 0.5494 +0 0.1376 +0 0.1178 +0 0.0821 +0 0.0668 +0 0.1141 +0 0.0967 +0 0.1153 +0 0.0993 +0 0.1690 +0 0.1749 +0 0.2081 +0 0.1137 +0 0.0739 +0 0.1581 +0 0.0788 +0 0.0650 +0 0.0695 +0 0.1270 +0 0.4044 +0 0.1651 +0 0.0587 +0 0.1121 +0 0.1303 +0 0.0691 +0 0.1116 +0 0.0493 +0 0.1045 +0 0.0992 +0 0.1829 +0 0.1577 +0 0.0781 +0 0.0342 +0 0.0785 +0 0.1463 +0 0.1265 +0 0.3530 +0 0.0866 +0 0.2516 +0 0.1122 +0 0.1190 +0 0.0467 +0 0.1268 +0 0.7081 +0 0.0849 +0 0.0581 +0 0.0466 +0 0.2194 +0 0.0587 +0 0.0551 +0 0.1392 +0 0.0704 +0 0.0555 +0 0.0491 +0 0.1234 +0 0.0771 +0 0.1292 +1 0.7691 +0 0.1137 +0 0.0775 +0 0.1459 +0 0.1885 +0 0.0625 +0 0.1132 +0 0.1272 +0 0.3708 +0 0.0681 +0 0.0640 +0 0.1601 +0 0.0658 +0 0.0385 +0 0.0944 +0 0.0550 +0 0.2839 +0 0.0666 +0 0.0526 +0 0.0787 +0 0.0499 +0 0.0718 +0 0.2896 +0 0.1710 +0 0.0837 +0 0.1658 +0 0.1223 +0 0.0850 +0 0.0888 +0 0.0800 +0 0.1233 +0 0.2149 +0 0.1105 +0 0.0617 +0 0.1633 +0 0.0356 +0 0.0402 +0 0.1878 +0 0.0654 +0 0.2931 +0 0.4066 +0 0.0999 +0 0.0404 +0 0.0423 +0 0.1160 +0 0.1743 +0 0.0666 +0 0.0806 +0 0.1227 +0 0.1534 +0 0.3856 +0 0.1219 +0 0.0734 +0 0.3121 +0 0.0460 +0 0.0438 +0 0.0660 +0 0.1537 +0 0.1488 +0 0.3204 +0 0.0601 +0 0.1060 +0 0.0710 +0 0.1456 +0 0.1702 +0 0.1671 +0 0.0649 +0 0.0952 +0 0.1639 +0 0.0400 +0 0.1414 +0 0.1005 +0 0.0680 +0 0.0857 +0 0.0362 +0 0.0949 +0 0.1000 +0 0.2294 +0 0.1954 +0 0.0546 +0 0.0982 +0 0.3259 +0 0.0422 +0 0.3603 +0 0.2035 +0 0.1084 +0 0.1068 +0 0.1002 +0 0.2232 +0 0.2035 +0 0.1530 +0 0.0850 +0 0.0380 +0 0.0572 +0 0.1193 +0 0.0411 +0 0.0337 +0 0.1037 +0 0.1622 +0 0.1521 +0 0.0401 +0 0.0447 +0 0.0760 +0 0.0648 +0 0.0544 +0 0.1228 +0 0.2254 +0 0.1769 +0 0.1273 +0 0.0878 +0 0.1722 +0 0.2142 +0 0.2088 +0 0.7243 +0 0.7319 +0 0.1051 +0 0.1150 +1 0.8081 +0 0.0630 +0 0.2370 +0 0.1208 +0 0.0823 +0 0.2639 +0 0.0454 +0 0.0761 +0 0.2594 +0 0.0535 +0 0.1418 +0 0.1284 +0 0.1449 +0 0.0462 +0 0.2738 +0 0.1012 +0 0.1031 +0 0.0851 +0 0.1127 +0 0.1164 +0 0.1177 +0 0.1049 +0 0.0910 +0 0.2092 +0 0.2332 +0 0.0984 +0 0.0806 +0 0.1963 +0 0.1273 +0 0.1646 +0 0.1228 +0 0.0531 +0 0.0427 +0 0.0940 +0 0.1188 +0 0.0410 +0 0.0517 +0 0.1699 +0 0.0962 +0 0.0701 +0 0.1198 +0 0.1450 +0 0.2087 +0 0.0669 +0 0.0526 +0 0.0365 +0 0.0708 +0 0.1236 +0 0.1071 +0 0.1075 +0 0.1521 +0 0.1021 +0 0.2553 +0 0.1357 +0 0.1236 +0 0.2741 +0 0.0330 +0 0.3150 +0 0.0563 +0 0.0816 +0 0.0687 +0 0.0979 +0 0.1552 +0 0.0369 +0 0.1982 +0 0.0344 +0 0.1037 +0 0.0981 +0 0.1419 +0 0.0856 +0 0.0829 +0 0.0502 +0 0.0797 +0 0.1320 +0 0.0958 +0 0.0855 +0 0.0987 +0 0.0767 +0 0.2101 +0 0.0666 +0 0.0689 +0 0.2734 +0 0.2679 +0 0.1596 +0 0.1806 +0 0.0685 +0 0.2345 +0 0.0755 +0 0.3339 +0 0.1849 +0 0.0937 +0 0.0869 +0 0.0540 +0 0.1519 +0 0.1086 +0 0.0432 +1 0.8393 +0 0.1036 +0 0.0816 +0 0.2752 +0 0.0523 +0 0.1811 +0 0.0611 +0 0.1443 +0 0.1236 +0 0.0568 +0 0.1150 +0 0.0534 +0 0.0746 +0 0.3561 +0 0.1478 +0 0.1571 +1 0.7989 +0 0.0918 +0 0.0937 +0 0.0717 +0 0.2663 +0 0.0720 +0 0.0749 +0 0.0813 +0 0.1154 +0 0.1898 +0 0.0926 +0 0.1002 +0 0.1196 +0 0.1462 +0 0.0938 +0 0.1010 +0 0.1540 +0 0.0510 +0 0.1528 +0 0.0567 +0 0.0808 +0 0.5379 +0 0.1497 +0 0.1160 +0 0.0639 +0 0.1583 +0 0.2506 +0 0.1394 +0 0.1699 +0 0.0491 +0 0.1286 +0 0.2482 +0 0.0734 +0 0.4338 +0 0.1232 +0 0.0522 +0 0.2168 +0 0.0979 +0 0.1156 +0 0.0771 +0 0.1147 +0 0.1664 +0 0.7147 +0 0.0977 +0 0.1433 +0 0.6676 +0 0.1535 +0 0.1336 +0 0.0639 +0 0.1838 +0 0.3334 +0 0.0957 +0 0.1339 +0 0.1939 +0 0.1068 +0 0.0599 +0 0.0622 +0 0.0968 +0 0.0998 +0 0.0490 +0 0.0862 +0 0.0377 +0 0.1704 +0 0.0521 +0 0.0337 +0 0.1258 +0 0.0878 +0 0.1674 +0 0.1800 +0 0.1236 +0 0.0937 +0 0.0643 +0 0.0754 +0 0.0605 +0 0.0513 +0 0.2501 +0 0.0660 +0 0.0997 +0 0.1053 +0 0.1356 +0 0.0560 +0 0.0929 +0 0.1032 +0 0.0502 +0 0.5495 +0 0.1632 +0 0.0896 +0 0.1805 +0 0.0637 +0 0.4292 +0 0.1274 +0 0.3881 +0 0.1101 +0 0.0447 +0 0.0575 +0 0.3233 +0 0.0976 +0 0.3935 +0 0.2139 +0 0.1242 +0 0.1818 +0 0.0447 +0 0.0696 +0 0.1555 +0 0.0660 +0 0.1155 +0 0.0551 +0 0.0905 +0 0.1322 +0 0.1153 +0 0.0448 +0 0.1244 +0 0.0807 +0 0.2272 +0 0.0650 +0 0.5592 +0 0.0419 +0 0.2241 +0 0.2702 +0 0.1116 +0 0.1590 +0 0.1109 +0 0.1041 +0 0.1793 +0 0.5859 +0 0.1160 +0 0.0483 +0 0.0522 +0 0.1451 +0 0.1470 +0 0.1025 +0 0.0681 +0 0.0664 +0 0.1004 +0 0.1281 +0 0.0407 +0 0.2881 +1 0.7829 +0 0.5751 +0 0.2243 +0 0.1331 +0 0.0649 +0 0.0427 +0 0.0706 +0 0.0846 +0 0.0602 +0 0.3410 +0 0.1155 +0 0.0504 +0 0.0795 +0 0.2176 +0 0.0435 +0 0.2743 +0 0.0512 +0 0.0483 +0 0.5675 +0 0.1005 +0 0.0528 +0 0.0918 +0 0.0596 +0 0.0785 +0 0.2024 +0 0.1282 +0 0.0980 +0 0.3443 +0 0.1193 +0 0.0865 +0 0.2905 +0 0.0969 +0 0.7422 +0 0.0409 +0 0.0643 +0 0.1359 +0 0.1745 +0 0.3000 +0 0.0466 +0 0.0500 +0 0.1531 +0 0.1283 +0 0.0866 +0 0.0665 +0 0.0858 +0 0.1691 +0 0.1619 +0 0.0830 +0 0.0851 +0 0.0640 +0 0.7226 +0 0.3210 +0 0.0933 +0 0.0783 +0 0.1869 +0 0.1573 +0 0.7144 +0 0.1134 +0 0.0709 +0 0.1182 +0 0.1247 +0 0.0413 +0 0.0620 +0 0.0518 +1 0.7914 +0 0.1071 +0 0.1926 +0 0.1635 +0 0.0458 +0 0.0689 +0 0.0610 +0 0.2129 +0 0.3015 +0 0.2063 +0 0.1164 +0 0.3275 +0 0.0561 +0 0.1138 +0 0.0526 +0 0.0392 +0 0.0908 +0 0.1221 +0 0.1364 +0 0.1939 +0 0.0964 +0 0.1052 +0 0.0613 +0 0.2051 +0 0.6472 +0 0.3198 +0 0.0571 +0 0.1873 +0 0.4647 +0 0.1520 +0 0.1030 +0 0.1148 +0 0.1081 +0 0.0536 +1 0.8591 +0 0.0638 +0 0.0871 +0 0.1332 +0 0.0557 +0 0.1061 +0 0.1486 +0 0.2400 +0 0.6106 +0 0.1010 +0 0.1518 +0 0.1105 +0 0.4696 +0 0.2299 +0 0.3014 +0 0.7005 +0 0.1026 +0 0.0543 +0 0.0590 +0 0.1667 +0 0.0465 +0 0.0450 +0 0.2683 +0 0.1923 +0 0.0731 +0 0.0594 +0 0.1178 +0 0.4267 +0 0.1844 +0 0.0746 +0 0.0712 +0 0.1927 +0 0.1531 +0 0.1011 +0 0.0822 +0 0.1442 +0 0.1224 +0 0.0464 +0 0.0606 +0 0.1110 +0 0.0915 +0 0.0416 +0 0.0912 +0 0.0999 +0 0.0804 +0 0.1161 +0 0.0636 +0 0.0624 +0 0.1596 +0 0.6577 +0 0.1014 +0 0.0556 +0 0.1151 +0 0.0562 +0 0.3094 +0 0.6826 +0 0.1565 +0 0.1136 +0 0.1230 +0 0.0824 +0 0.0551 +0 0.1607 +0 0.0917 +0 0.2079 +0 0.1999 +0 0.0311 +0 0.1007 +0 0.1161 +0 0.0745 +0 0.2151 +0 0.3452 +0 0.0336 +0 0.1828 +0 0.4066 +0 0.1071 +0 0.1444 +0 0.2720 +0 0.1472 +0 0.1248 +0 0.1097 +0 0.6319 +0 0.0603 +0 0.0870 +0 0.1176 +0 0.1100 +0 0.3605 +0 0.0985 +0 0.0625 +0 0.1568 +0 0.1327 +0 0.1274 +0 0.2434 +0 0.0553 +0 0.0804 +0 0.0618 +0 0.1179 +0 0.5506 +0 0.0500 +0 0.0763 +0 0.0670 +0 0.1126 +0 0.1640 +0 0.1346 +0 0.0597 +0 0.0618 +0 0.1619 +0 0.2646 +0 0.1391 +0 0.0861 +0 0.0727 +0 0.1388 +0 0.1840 +0 0.0623 +0 0.0417 +0 0.1466 +0 0.1355 +0 0.0528 +0 0.1512 +0 0.2906 +0 0.0546 +0 0.0975 +0 0.6451 +0 0.0585 +0 0.2140 +0 0.5252 +0 0.0522 +0 0.2155 +0 0.0514 +0 0.1416 +0 0.0583 +0 0.0733 +0 0.0624 +0 0.1355 +0 0.0559 +0 0.1858 +1 0.8692 +0 0.1899 +0 0.1070 +0 0.1790 +0 0.0742 +0 0.0722 +0 0.0731 +0 0.0822 +0 0.0670 +0 0.0886 +0 0.2469 +0 0.1328 +0 0.5806 +1 0.8622 +0 0.0926 +0 0.0908 +0 0.0814 +0 0.1950 +0 0.1802 +0 0.2683 +0 0.0786 +0 0.0816 +0 0.2526 +0 0.2178 +0 0.1232 +1 0.8231 +0 0.0591 +0 0.0378 +0 0.0455 +0 0.1160 +0 0.0644 +0 0.1244 +0 0.0864 +0 0.5399 +0 0.1428 +0 0.2698 +0 0.1854 +0 0.0874 +0 0.0559 +0 0.5145 +0 0.3096 +0 0.0969 +0 0.0728 +0 0.1069 +0 0.1043 +0 0.2148 +0 0.1855 +0 0.1038 +0 0.1366 +0 0.0925 +0 0.0803 +0 0.1437 +0 0.0952 +0 0.0962 +0 0.1052 +0 0.2210 +0 0.0871 +0 0.0420 +0 0.0832 +0 0.1551 +1 0.7748 +0 0.1738 +0 0.2688 +0 0.1429 +0 0.1025 +0 0.0308 +0 0.0601 +0 0.1101 +0 0.1161 +0 0.1811 +0 0.1657 +0 0.1143 +0 0.1191 +0 0.1107 +0 0.0719 +0 0.1374 +0 0.1000 +0 0.0519 +0 0.0560 +0 0.1187 +0 0.0413 +0 0.1112 +0 0.7422 +0 0.5365 +0 0.2481 +0 0.1229 +0 0.0929 +0 0.0583 +0 0.1585 +0 0.1504 +0 0.2207 +0 0.1058 +0 0.1383 +0 0.1978 +0 0.0823 +0 0.0894 +0 0.1621 +0 0.1701 +0 0.7016 +0 0.2227 +0 0.0860 +0 0.1124 +0 0.0438 +0 0.1304 +0 0.0714 +0 0.1399 +0 0.1883 +0 0.0632 +0 0.1283 +0 0.0926 +0 0.1169 +0 0.1303 +0 0.1188 +0 0.0469 +0 0.0928 +0 0.2353 +0 0.0605 +0 0.1874 +0 0.3612 +0 0.1404 +0 0.5967 +0 0.1162 +0 0.0794 +0 0.0575 +0 0.1461 +0 0.0677 +0 0.1054 +0 0.0586 +0 0.1126 +0 0.0837 +0 0.2044 +0 0.0873 +0 0.0836 +0 0.0705 +0 0.0786 +0 0.0771 +0 0.0811 +0 0.0358 +0 0.0754 +0 0.1783 +0 0.0870 +0 0.1371 +0 0.0390 +0 0.1073 +0 0.0747 +0 0.0826 +0 0.0587 +0 0.1782 +0 0.1742 +0 0.1114 +0 0.0769 +0 0.1696 +0 0.1993 +0 0.0704 +0 0.0597 +0 0.0871 +0 0.1177 +0 0.0644 +0 0.1098 +0 0.2914 +0 0.0857 +0 0.1933 +0 0.4163 +0 0.1067 +0 0.1749 +0 0.0587 +0 0.0660 +0 0.2985 +0 0.1176 +0 0.1795 +0 0.0415 +0 0.0803 +0 0.1137 +0 0.1168 +0 0.1896 +0 0.0621 +0 0.1104 +0 0.0805 +0 0.4634 +0 0.0337 +1 0.8418 +0 0.1323 +0 0.0647 +0 0.0344 +0 0.1457 +0 0.0754 +0 0.2536 +0 0.1169 +0 0.1147 +0 0.0777 +0 0.2210 +0 0.1454 +0 0.6906 +0 0.0540 +0 0.4616 +0 0.0365 +0 0.1180 +0 0.0604 +0 0.1115 +0 0.0464 +0 0.1139 +1 0.7696 +0 0.0918 +0 0.0665 +0 0.0667 +0 0.1184 +0 0.1326 +0 0.0841 +0 0.0600 +0 0.2147 +0 0.0742 +0 0.0971 +0 0.0920 +0 0.0868 +0 0.0708 +0 0.0678 +0 0.0900 +0 0.0805 +0 0.0821 +0 0.1449 +0 0.3741 +0 0.6375 +1 0.7737 +0 0.0938 +0 0.0320 +0 0.2641 +0 0.1010 +0 0.1330 +0 0.1114 +0 0.0841 +0 0.1246 +0 0.1597 +0 0.1373 +0 0.1018 +0 0.1185 +0 0.0831 +0 0.0815 +1 0.7638 +0 0.0573 +0 0.0716 +0 0.1259 +0 0.2055 +0 0.1209 +0 0.1338 +0 0.5177 +0 0.0935 +0 0.1398 +0 0.2577 +0 0.0872 +0 0.0563 +0 0.0637 +0 0.1205 +0 0.1371 +0 0.0737 +0 0.0750 +0 0.1073 +0 0.0989 +0 0.2197 +0 0.0790 +0 0.0842 +0 0.0465 +0 0.1773 +0 0.2705 +0 0.0647 +0 0.1367 +0 0.2766 +0 0.6436 +0 0.1250 +0 0.1042 +0 0.1538 +0 0.0564 +0 0.0654 +0 0.0812 +0 0.0412 +0 0.1024 +0 0.0628 +0 0.0532 +0 0.1697 +0 0.7443 +0 0.0712 +1 0.8593 +0 0.0294 +0 0.3026 +0 0.0450 +0 0.1403 +0 0.0464 +0 0.0711 +0 0.0460 +0 0.1006 +0 0.0847 +0 0.0690 +0 0.1185 +0 0.3964 +0 0.0445 +0 0.0899 +0 0.5832 +0 0.0566 +0 0.1187 +1 0.7701 +0 0.0913 +0 0.0949 +0 0.1671 +0 0.1086 +0 0.0718 +0 0.1112 +0 0.2057 +0 0.0552 +0 0.1633 +0 0.1093 +0 0.0498 +0 0.0992 +0 0.0696 +0 0.1093 +0 0.2095 +0 0.0488 +0 0.1174 +0 0.1224 +0 0.0605 +0 0.0553 +0 0.0608 +0 0.0969 +0 0.0616 +0 0.0708 +0 0.2320 +0 0.2260 +0 0.1115 +0 0.0898 +0 0.3782 +0 0.3291 +0 0.0954 +0 0.0490 +0 0.0937 +0 0.0687 +0 0.0730 +0 0.0642 +0 0.0774 +0 0.0698 +0 0.2966 +0 0.1172 +0 0.0946 +0 0.2413 +0 0.2840 +0 0.2209 +0 0.1599 +0 0.2827 +0 0.2001 +0 0.0329 +0 0.0441 +0 0.0472 +0 0.0829 +0 0.0751 +0 0.0505 +0 0.0888 +0 0.4181 +0 0.1555 +0 0.0789 +0 0.0384 +0 0.4665 +0 0.2224 +0 0.0789 +0 0.0941 +0 0.3858 +0 0.2498 +0 0.1017 +0 0.0706 +0 0.1693 +0 0.1643 +0 0.1741 +0 0.1147 +0 0.1604 +0 0.0990 +0 0.1561 +0 0.0971 +0 0.0469 +0 0.5314 +0 0.0383 +0 0.2641 +0 0.1697 +0 0.0461 +0 0.0578 +0 0.0873 +0 0.1406 +0 0.0537 +0 0.0559 +0 0.1706 +0 0.0346 +0 0.1750 +0 0.0778 +0 0.0862 +0 0.1385 +0 0.2414 +0 0.0782 +0 0.1121 +0 0.1173 +0 0.0628 +0 0.0871 +0 0.2432 +0 0.6563 +0 0.0969 +0 0.1818 +0 0.2293 +0 0.2521 +0 0.2566 +0 0.0918 +0 0.0801 +0 0.0908 +0 0.0965 +1 0.7581 +0 0.0866 +0 0.4908 +0 0.0365 +0 0.2705 +0 0.2689 +0 0.0542 +0 0.0689 +0 0.1135 +0 0.0832 +0 0.0833 +0 0.1026 +0 0.0513 +0 0.3092 +0 0.0648 +0 0.0584 +0 0.1273 +0 0.0957 +0 0.0721 +0 0.2358 +0 0.1185 +0 0.1308 +0 0.1229 +0 0.1763 +0 0.1470 +0 0.0994 +0 0.1243 +0 0.2032 +0 0.3000 +0 0.0999 +0 0.0422 +0 0.3244 +0 0.0835 +0 0.0847 +0 0.1638 +0 0.0802 +0 0.1767 +0 0.2004 +0 0.1909 +0 0.0348 +0 0.1011 +0 0.0388 +0 0.0563 +0 0.1108 +0 0.1102 +0 0.1218 +0 0.1087 +0 0.0930 +0 0.3301 +0 0.0789 +0 0.0866 +0 0.6196 +0 0.1061 +0 0.0775 +0 0.0370 +0 0.1069 +0 0.0540 +0 0.0888 +0 0.0816 +0 0.0704 +0 0.1995 +0 0.0655 +0 0.1107 +0 0.0645 +0 0.2353 +0 0.0724 +0 0.1132 +0 0.1643 +0 0.4454 +0 0.0639 +0 0.1026 +0 0.1214 +0 0.3005 +0 0.0549 +0 0.2550 +0 0.1937 +0 0.0921 +0 0.0980 +0 0.1310 +0 0.0667 +0 0.0689 +0 0.3241 +0 0.1359 +0 0.1314 +0 0.1138 +0 0.0784 +0 0.0804 +0 0.1502 +0 0.1242 +0 0.1152 +0 0.1754 +0 0.3386 +0 0.0865 +0 0.3488 +0 0.0834 +0 0.1154 +0 0.2938 +0 0.1162 +1 0.8382 +0 0.1076 +0 0.0391 +0 0.0837 +0 0.3446 +0 0.1028 +0 0.1982 +0 0.0778 +0 0.1074 +0 0.0989 +0 0.1106 +0 0.0756 +1 0.8338 +0 0.0364 +0 0.2398 +0 0.1261 +0 0.0508 +1 0.8266 +0 0.0698 +0 0.0925 +0 0.2119 +0 0.0741 +0 0.0555 +0 0.0601 +0 0.0778 +0 0.0732 +0 0.0664 +0 0.1109 +0 0.1115 +0 0.1955 +0 0.0824 +0 0.0989 +0 0.0703 +0 0.2365 +0 0.1017 +0 0.1604 +0 0.0999 +0 0.1149 +0 0.1070 +0 0.0621 +0 0.0622 +0 0.1840 +0 0.0758 +0 0.0797 +0 0.0679 +0 0.0396 +0 0.2321 +0 0.0995 +0 0.0394 +0 0.0511 +0 0.1626 +0 0.1470 +0 0.1010 +0 0.0856 +0 0.1849 +0 0.0591 +0 0.0891 +0 0.0409 +1 0.8395 +0 0.3300 +0 0.0330 +0 0.0614 +0 0.0804 +0 0.3554 +0 0.0615 +0 0.0887 +0 0.0666 +0 0.0958 +0 0.0917 +0 0.1061 +0 0.0497 +0 0.1091 +0 0.0641 +0 0.1574 +0 0.1874 +0 0.1087 +0 0.1636 +0 0.3952 +0 0.1042 +0 0.1227 +0 0.1404 +1 0.8461 +0 0.1643 +0 0.2744 +0 0.1841 +0 0.2512 +0 0.1612 +0 0.0929 +0 0.0775 +0 0.1359 +0 0.6862 +0 0.4085 +0 0.1167 +0 0.1974 +0 0.2505 +0 0.1007 +0 0.1166 +0 0.1319 +0 0.2078 +0 0.1065 +0 0.6673 +0 0.2286 +0 0.0532 +0 0.0544 +0 0.6626 +0 0.3192 +0 0.1196 +0 0.1501 +1 0.8488 +0 0.2134 +0 0.1511 +0 0.1968 +0 0.0790 +0 0.1766 +0 0.2595 +0 0.0576 +0 0.0949 +0 0.6592 +0 0.2524 +0 0.1080 +0 0.0991 +0 0.0765 +0 0.0981 +0 0.1078 +0 0.0422 +0 0.1714 +0 0.1229 +0 0.3669 +0 0.2005 +0 0.2246 +0 0.0878 +0 0.1420 +0 0.2499 +0 0.1587 +0 0.0816 +0 0.0768 +0 0.0492 +0 0.0390 +1 0.7595 +0 0.3768 +0 0.1254 +0 0.0916 +0 0.6095 +0 0.1180 +0 0.1193 +0 0.0783 +0 0.6786 +0 0.1116 +0 0.0702 +0 0.1248 +0 0.1744 +0 0.2959 +0 0.1146 +0 0.0895 +0 0.0804 +0 0.0725 +0 0.2428 +0 0.3275 +0 0.1460 +0 0.2447 +0 0.0724 +0 0.3094 +0 0.1563 +0 0.0865 +0 0.1270 +0 0.0617 +0 0.1001 +0 0.0717 +0 0.0529 +0 0.4543 +0 0.1000 +0 0.0781 +0 0.2899 +0 0.0683 +0 0.0432 +0 0.1788 +0 0.1048 +0 0.0617 +0 0.1839 +0 0.1105 +0 0.1554 +0 0.1968 +0 0.1401 +0 0.0777 +0 0.0585 +0 0.0811 +0 0.1931 +0 0.0361 +0 0.1006 +0 0.1350 +0 0.1398 +0 0.1393 +0 0.0872 +0 0.0830 +0 0.2950 +0 0.1229 +0 0.3802 +0 0.1126 +0 0.1397 +0 0.0600 +0 0.1034 +0 0.1139 +0 0.0768 +0 0.1271 +0 0.1917 +0 0.1312 +0 0.1124 +0 0.6049 +0 0.2179 +0 0.2113 +0 0.2647 +0 0.1116 +1 0.7598 +0 0.1305 +0 0.0990 +0 0.2473 +0 0.0717 +0 0.0447 +0 0.1651 +0 0.1316 +0 0.1022 +0 0.0887 +0 0.1454 +0 0.1196 +0 0.4442 +0 0.0356 +0 0.4959 +0 0.3556 +0 0.1210 +0 0.0890 +0 0.3184 +0 0.1799 +0 0.3061 +0 0.0900 +0 0.2006 +0 0.1082 +0 0.1467 +0 0.0548 +0 0.7130 +0 0.6347 +0 0.2370 +0 0.0675 +0 0.1044 +0 0.1030 +0 0.0423 +0 0.1034 +0 0.1550 +0 0.2206 +0 0.0880 +0 0.0651 +0 0.1332 +0 0.3848 +0 0.1456 +0 0.0870 +0 0.1819 +0 0.1050 +0 0.0388 +0 0.1314 +0 0.1591 +0 0.0754 +0 0.1574 +0 0.1453 +0 0.1667 +0 0.3732 +0 0.0545 +0 0.0576 +0 0.0605 +0 0.0555 +0 0.6174 +0 0.0404 +0 0.0728 +0 0.3770 +0 0.1215 +0 0.1333 +0 0.1153 +0 0.0880 +0 0.1530 +0 0.1217 +0 0.0645 +0 0.4094 +0 0.0647 +0 0.4000 +0 0.0915 +0 0.3043 +0 0.2646 +0 0.0408 +0 0.0956 +0 0.0608 +0 0.0570 +0 0.0418 +0 0.0769 +0 0.0920 +0 0.0929 +0 0.1470 +0 0.0587 +0 0.1056 +0 0.1006 +0 0.2237 +0 0.1296 +0 0.0745 +0 0.1312 +0 0.0712 +0 0.0464 +0 0.1386 +0 0.1071 +0 0.1458 +0 0.0848 +0 0.0682 +0 0.0743 +0 0.0487 +0 0.1074 +0 0.0495 +0 0.2580 +0 0.0881 +0 0.2675 +0 0.0888 +0 0.0598 +0 0.2152 +0 0.0642 +0 0.1135 +0 0.3099 +0 0.2353 +0 0.0665 +0 0.2244 +0 0.0669 +0 0.1003 +0 0.0602 +0 0.3850 +0 0.0609 +0 0.1293 +0 0.0668 +0 0.0949 +0 0.0781 +0 0.1067 +0 0.0667 +0 0.3315 +0 0.0816 +0 0.0701 +0 0.0662 +0 0.0533 +0 0.1002 +0 0.0384 +0 0.1297 +0 0.1570 +0 0.1390 +0 0.0736 +0 0.1668 +0 0.1754 +0 0.1812 +0 0.0625 +0 0.1651 +0 0.0363 +1 0.7585 +0 0.0858 +0 0.2152 +0 0.1276 +0 0.1674 +0 0.1492 +0 0.1082 +0 0.0496 +0 0.0680 +0 0.1123 +0 0.0995 +0 0.1137 +1 0.8718 +0 0.0662 +0 0.0928 +0 0.1406 +0 0.0672 +0 0.0770 +0 0.1043 +0 0.0624 +0 0.1421 +0 0.0806 +0 0.1982 +0 0.1067 +0 0.0853 +0 0.2753 +0 0.3637 +0 0.0834 +0 0.1091 +0 0.0648 +0 0.0929 +0 0.0950 +0 0.1429 +0 0.0474 +0 0.1281 +0 0.1450 +0 0.0932 +0 0.1052 +0 0.0592 +0 0.3331 +0 0.5567 +0 0.5810 +0 0.0699 +0 0.1045 +0 0.0538 +0 0.3324 +0 0.0950 +0 0.1878 +0 0.0829 +0 0.1380 +0 0.0654 +0 0.0718 +0 0.1483 +0 0.1144 +0 0.0862 +0 0.0690 +0 0.5876 +0 0.1993 +0 0.0593 +0 0.1913 +0 0.0968 +0 0.0784 +0 0.4116 +0 0.2915 +0 0.0478 +0 0.1461 +0 0.1633 +0 0.0451 +0 0.2541 +0 0.2514 +0 0.0707 +0 0.2335 +0 0.0750 +0 0.0668 +0 0.0727 +1 0.8397 +0 0.1008 +0 0.1706 +0 0.0391 +0 0.0382 +0 0.0846 +0 0.1023 +0 0.1310 +0 0.1924 +0 0.3518 +0 0.2121 +0 0.1084 +0 0.1085 +0 0.1134 +0 0.0787 +0 0.3546 +0 0.1253 +0 0.0552 +0 0.1611 +0 0.1421 +0 0.1126 +0 0.1591 +0 0.0399 +0 0.0647 +0 0.1134 +0 0.1747 +0 0.1161 +0 0.0728 +0 0.0814 +0 0.0775 +0 0.0706 +0 0.0904 +0 0.1831 +0 0.0619 +0 0.0715 +0 0.1150 +0 0.2042 +0 0.1681 +0 0.0597 +0 0.2696 +0 0.0924 +0 0.2036 +0 0.0484 +0 0.1014 +0 0.1233 +0 0.6443 +0 0.1604 +0 0.1538 +0 0.0647 +0 0.1009 +0 0.1014 +0 0.6972 +0 0.1011 +0 0.0272 +0 0.0600 +0 0.1072 +0 0.0447 +0 0.0900 +0 0.1721 +0 0.7251 +0 0.0671 +0 0.0606 +0 0.0468 +0 0.0948 +0 0.0539 +0 0.1079 +0 0.0645 +0 0.1035 +0 0.0798 +0 0.1030 +0 0.0994 +0 0.6689 +0 0.0673 +0 0.2110 +0 0.3202 +0 0.1096 +0 0.0579 +0 0.4882 +0 0.1530 +0 0.0885 +0 0.1504 +0 0.1514 +0 0.1238 +0 0.1669 +0 0.0820 +0 0.1069 +1 0.8024 +0 0.0567 +0 0.1109 +0 0.0887 +0 0.0840 +0 0.1006 +0 0.1313 +0 0.0461 +0 0.0479 +1 0.8764 +0 0.1178 +0 0.1018 +0 0.0594 +0 0.0680 +0 0.1052 +0 0.1819 +0 0.2543 +0 0.2000 +0 0.1847 +0 0.1918 +0 0.1631 +0 0.1468 +0 0.1153 +0 0.1142 +0 0.0949 +0 0.1214 +0 0.1014 +0 0.2134 +0 0.1194 +0 0.1105 +0 0.1078 +0 0.0547 +0 0.1276 +0 0.3140 +0 0.0672 +0 0.1238 +0 0.0713 +0 0.1165 +0 0.0860 +0 0.2029 +0 0.0717 +0 0.0996 +0 0.6007 +0 0.1212 +0 0.1091 +0 0.1951 +0 0.1619 +0 0.3383 +0 0.2149 +0 0.2502 +0 0.0750 +0 0.1622 +1 0.7789 +0 0.0709 +0 0.2239 +0 0.1348 +0 0.0518 +0 0.2103 +0 0.0424 +0 0.3073 +0 0.0604 +0 0.1171 +0 0.0311 +0 0.0560 +0 0.0554 +0 0.0853 +0 0.0620 +1 0.7568 +0 0.2218 +0 0.0959 +0 0.7459 +0 0.0933 +0 0.0277 +0 0.2115 +0 0.0793 +0 0.1465 +0 0.1011 +0 0.0427 +0 0.1218 +0 0.1206 +0 0.1470 +0 0.0775 +0 0.2302 +0 0.3455 +0 0.0783 +0 0.0530 +0 0.1277 +0 0.0976 +0 0.1201 +0 0.0667 +0 0.1972 +0 0.0863 +0 0.7198 +0 0.0770 +0 0.1069 +0 0.1127 +0 0.1030 +0 0.6761 +0 0.4395 +0 0.0716 +0 0.1196 +0 0.1206 +0 0.1227 +0 0.1319 +0 0.1732 +0 0.3123 +0 0.0828 +0 0.0985 +0 0.1925 +0 0.0920 +0 0.0883 +0 0.0847 +0 0.0971 +0 0.0653 +0 0.1430 +0 0.1026 +0 0.2147 +0 0.0914 +0 0.2340 +0 0.0771 +0 0.1524 +0 0.0450 +0 0.1434 +0 0.0362 +0 0.2594 +0 0.0359 +0 0.0941 +0 0.1506 +0 0.0409 +0 0.0642 +0 0.0939 +0 0.1503 +0 0.0552 +0 0.0907 +0 0.1506 +0 0.1252 +0 0.0711 +0 0.2689 +0 0.1185 +0 0.3282 +0 0.1036 +0 0.1182 +0 0.1081 +1 0.8438 +0 0.1557 +0 0.0643 +0 0.0962 +0 0.2105 +0 0.0809 +0 0.0596 +0 0.0382 +0 0.1015 +0 0.1152 +0 0.0965 +0 0.2658 +0 0.0586 +0 0.0475 +0 0.0685 +0 0.1003 +0 0.0681 +0 0.1278 +0 0.0726 +0 0.0383 +0 0.3534 +0 0.6036 +0 0.1374 +0 0.1955 +0 0.0688 +0 0.0725 +0 0.1446 +0 0.1213 +0 0.1187 +0 0.1173 +0 0.2451 +0 0.1180 +0 0.1008 +0 0.0933 +0 0.1048 +0 0.2026 +0 0.2299 +0 0.0462 +0 0.0645 +0 0.1496 +0 0.0675 +0 0.0974 +0 0.0548 +0 0.3712 +0 0.2737 +0 0.0918 +0 0.0828 +0 0.1898 +0 0.1860 +0 0.0506 +0 0.1014 +0 0.1812 +0 0.1548 +0 0.0646 +0 0.1007 +0 0.1050 +0 0.1920 +0 0.0542 +0 0.0551 +0 0.0766 +0 0.0565 +0 0.0962 +0 0.0657 +0 0.1257 +0 0.2163 +0 0.0349 +0 0.0907 +0 0.2323 +0 0.5070 +0 0.1391 +0 0.0414 +0 0.0467 +0 0.0572 +0 0.2145 +0 0.1610 +0 0.0919 +0 0.1778 +0 0.1861 +0 0.1588 +0 0.1879 +0 0.0853 +0 0.0671 +0 0.1512 +0 0.0428 +0 0.1052 +0 0.0783 +0 0.2526 +0 0.0507 +0 0.0735 +0 0.0820 +0 0.1323 +0 0.0554 +0 0.1134 +0 0.1677 +0 0.2505 +0 0.0387 +0 0.1984 +0 0.0722 +0 0.0701 +0 0.1178 +0 0.0714 +0 0.5015 +0 0.0912 +0 0.3991 +0 0.1313 +0 0.1308 +0 0.0803 +0 0.0944 +0 0.0764 +0 0.7433 +0 0.1540 +0 0.1053 +0 0.1149 +0 0.1347 +0 0.0444 +0 0.0557 +0 0.1074 +0 0.1064 +0 0.1240 +0 0.2237 +0 0.0792 +0 0.2162 +0 0.2538 +0 0.0624 +0 0.0618 +0 0.1334 +0 0.1683 +0 0.7438 +0 0.6511 +0 0.1365 +0 0.0887 +0 0.1606 +0 0.1120 +0 0.0759 +0 0.0853 +0 0.0585 +0 0.1009 +0 0.2654 +0 0.1312 +0 0.0806 +0 0.1173 +0 0.1263 +0 0.5047 +0 0.0878 +1 0.7740 +0 0.0685 +0 0.0941 +0 0.1842 +0 0.0811 +0 0.0625 +0 0.0689 +0 0.0992 +0 0.1388 +0 0.0774 +0 0.1920 +0 0.1044 +0 0.1149 +0 0.2388 +0 0.1559 +0 0.0725 +0 0.1840 +0 0.2145 +0 0.0938 +0 0.1246 +0 0.0466 +0 0.0581 +0 0.0453 +0 0.1100 +0 0.1122 +0 0.0444 +0 0.1340 +0 0.2743 +1 0.7848 +0 0.1040 +0 0.0793 +0 0.0498 +0 0.0870 +0 0.0841 +0 0.2167 +0 0.0686 +0 0.1288 +0 0.0391 +0 0.0345 +0 0.0869 +0 0.1019 +0 0.0750 +0 0.0821 +0 0.0989 +0 0.1250 +0 0.0919 +0 0.1187 +0 0.3535 +0 0.1943 +0 0.0843 +0 0.1579 +0 0.1238 +0 0.0592 +0 0.1120 +0 0.0810 +0 0.3221 +0 0.0598 +0 0.0573 +0 0.1906 +0 0.1106 +0 0.1258 +0 0.2241 +0 0.2139 +0 0.1405 +0 0.0626 +0 0.1050 +0 0.1173 +0 0.0715 +0 0.0650 +0 0.1027 +0 0.0896 +0 0.1886 +0 0.1090 +0 0.0542 +0 0.0984 +0 0.2204 +0 0.5977 +0 0.0782 +0 0.0950 +0 0.0824 +0 0.0910 +0 0.6312 +0 0.0934 +0 0.0707 +0 0.4547 +0 0.1069 +0 0.1197 +0 0.0680 +0 0.0566 +0 0.0572 +0 0.1525 +0 0.3923 +0 0.2391 +0 0.2516 +0 0.1229 +0 0.2502 +0 0.1296 +0 0.1032 +0 0.0838 +0 0.2704 +0 0.2318 +0 0.0841 +0 0.0840 +0 0.0839 +0 0.2828 +0 0.1012 +0 0.2442 +0 0.0753 +0 0.0885 +0 0.1413 +0 0.0703 +0 0.2282 +0 0.1138 +0 0.5126 +0 0.1811 +0 0.1254 +0 0.1148 +0 0.2177 +0 0.0633 +0 0.0461 +0 0.0426 +0 0.1830 +0 0.3247 +0 0.1237 +0 0.0515 +0 0.1576 +0 0.3724 +0 0.2570 +0 0.1939 +0 0.0628 +0 0.1210 +0 0.1315 +0 0.2345 +0 0.1027 +0 0.1019 +0 0.0892 +0 0.1023 +0 0.2247 +0 0.0727 +0 0.1651 +0 0.1058 +0 0.0647 +0 0.1222 +0 0.4924 +0 0.0737 +0 0.1241 +0 0.1072 +0 0.1881 +0 0.0434 +0 0.1167 +0 0.1264 +0 0.3892 +0 0.2161 +0 0.1052 +0 0.0582 +0 0.0383 +0 0.0743 +0 0.1276 +0 0.1587 +0 0.1295 +0 0.2833 +0 0.3480 +0 0.0979 +0 0.0508 +0 0.2458 +1 0.8044 +0 0.1401 +0 0.1447 +1 0.8500 +0 0.2584 +0 0.3698 +0 0.1131 +0 0.1421 +0 0.2927 +0 0.1901 +0 0.1610 +0 0.0675 +0 0.0872 +1 0.8103 +0 0.1876 +0 0.2348 +0 0.0328 +0 0.0440 +0 0.0758 +0 0.1128 +1 0.7933 +0 0.1071 +0 0.0818 +0 0.1028 +0 0.1446 +0 0.1275 +0 0.0602 +0 0.0878 +0 0.2224 +0 0.0607 +0 0.2504 +0 0.1364 +0 0.0461 +0 0.2311 +0 0.1396 +0 0.0955 +0 0.0707 +0 0.1853 +0 0.1283 +0 0.0849 +0 0.2603 +1 0.8142 +0 0.1110 +0 0.0411 +0 0.2098 +0 0.0686 +0 0.0645 +0 0.0424 +0 0.0499 +0 0.1908 +0 0.1396 +0 0.6812 +0 0.0547 +0 0.1018 +1 0.8198 +0 0.0699 +0 0.0618 +0 0.1631 +0 0.3715 +0 0.0989 +0 0.0925 +0 0.0501 +0 0.1938 +0 0.0558 +0 0.0720 +0 0.2896 +0 0.1745 +0 0.0543 +0 0.1312 +0 0.1631 +0 0.0731 +0 0.0785 +0 0.1783 +0 0.1984 +0 0.0705 +0 0.0733 +0 0.1647 +0 0.0948 +0 0.0626 +0 0.0520 +0 0.1467 +0 0.0601 +0 0.0992 +0 0.1346 +0 0.0972 +0 0.0685 +0 0.1721 +0 0.2799 +0 0.0614 +0 0.0714 +0 0.0392 +0 0.7494 +0 0.2188 +0 0.0782 +0 0.0632 +0 0.1523 +0 0.0625 +0 0.1284 +0 0.1062 +0 0.0814 +0 0.0948 +0 0.0830 +0 0.2266 +0 0.2417 +0 0.2064 +0 0.1825 +0 0.0925 +0 0.0892 +0 0.1281 +0 0.7313 +0 0.1313 +0 0.0458 +0 0.0761 +0 0.1528 +0 0.0695 +0 0.0749 +0 0.0686 +0 0.0328 +0 0.4607 +0 0.0811 +0 0.2117 +0 0.1474 +0 0.0680 +0 0.1292 +0 0.2561 +0 0.0475 +0 0.1097 +0 0.0571 +0 0.0678 +0 0.0532 +0 0.1304 +0 0.0865 +0 0.5719 +0 0.1347 +0 0.1822 +0 0.0855 +0 0.0594 +0 0.6683 +0 0.1295 +0 0.0518 +0 0.0722 +0 0.1148 +0 0.0872 +0 0.1517 +0 0.1584 +0 0.1455 +0 0.1590 +0 0.0664 +0 0.0735 +0 0.0891 +1 0.8603 +0 0.0459 +0 0.0675 +0 0.1468 +0 0.1566 +0 0.2391 +0 0.1198 +0 0.1196 +0 0.0820 +0 0.1901 +0 0.0510 +0 0.0975 +0 0.0601 +0 0.0976 +0 0.0398 +0 0.0716 +0 0.1037 +0 0.0321 +0 0.1041 +0 0.1209 +0 0.1231 +0 0.0992 +0 0.2526 +0 0.1128 +0 0.1368 +0 0.1994 +0 0.2138 +0 0.0875 +0 0.0676 +0 0.0589 +0 0.2266 +0 0.0913 +0 0.2664 +0 0.0524 +0 0.1303 +0 0.0995 +0 0.1049 +0 0.2285 +0 0.1804 +0 0.1258 +0 0.2085 +0 0.0863 +0 0.1439 +0 0.0430 +0 0.0667 +0 0.0644 +0 0.0553 +0 0.6432 +0 0.0489 +0 0.1160 +0 0.0862 +0 0.1285 +0 0.0352 +0 0.1034 +0 0.0817 +0 0.0493 +0 0.0503 +0 0.0899 +0 0.1051 +0 0.1222 +0 0.0591 +0 0.0508 +0 0.0929 +0 0.1738 +0 0.1048 +0 0.0977 +0 0.5749 +0 0.1492 +0 0.0916 +0 0.1443 +0 0.1637 +0 0.0883 +0 0.0522 +0 0.1190 +0 0.0531 +0 0.0940 +0 0.1223 +0 0.3434 +0 0.0841 +0 0.1137 +0 0.1014 +0 0.0954 +0 0.0975 +0 0.2223 +0 0.2018 +0 0.7081 +0 0.0419 +0 0.3852 +0 0.1076 +0 0.1706 +0 0.1132 +0 0.1061 +0 0.2135 +0 0.0804 +0 0.1652 +0 0.0507 +0 0.0626 +0 0.0505 +0 0.1292 +0 0.0799 +0 0.1132 +0 0.0958 +0 0.1145 +0 0.1154 +0 0.0916 +0 0.1901 +0 0.2663 +0 0.0916 +0 0.0390 +0 0.2625 +0 0.0676 +0 0.0964 +0 0.1390 +0 0.1067 +0 0.1709 +0 0.0721 +0 0.2171 +0 0.2354 +0 0.0875 +0 0.3387 +0 0.0493 +0 0.1448 +0 0.0984 +0 0.5419 +0 0.0832 +0 0.1183 +0 0.0512 +0 0.2961 +0 0.0831 +0 0.0705 +0 0.0711 +0 0.1706 +0 0.1796 +0 0.1963 +0 0.0992 +0 0.1603 +0 0.1089 +0 0.2430 +0 0.0810 +0 0.1449 +0 0.0711 +0 0.1355 +0 0.0770 +0 0.0705 +0 0.1328 +0 0.0507 +0 0.0440 +0 0.0980 +0 0.2119 +0 0.0949 +0 0.1101 +0 0.0431 +0 0.1249 +0 0.0317 +0 0.0634 +0 0.1797 +0 0.1031 +0 0.1142 +0 0.0418 +0 0.0962 +0 0.0860 +0 0.1382 +0 0.6659 +0 0.0453 +0 0.0983 +0 0.2177 +0 0.0575 +0 0.0397 +0 0.1222 +0 0.3346 +0 0.2854 +0 0.1060 +0 0.0739 +0 0.1847 +0 0.1618 +0 0.3221 +0 0.2352 +0 0.1347 +0 0.2109 +0 0.2529 +0 0.0977 +0 0.0768 +0 0.0665 +0 0.0726 +0 0.1106 +0 0.1671 +0 0.0486 +0 0.0872 +0 0.3165 +0 0.1378 +0 0.0885 +0 0.0960 +0 0.1075 +1 0.7803 +0 0.2658 +0 0.1386 +0 0.1705 +0 0.0774 +0 0.1214 +0 0.1339 +0 0.0989 +0 0.1800 +0 0.0855 +0 0.0723 +0 0.0457 +0 0.0964 +0 0.0784 +0 0.0537 +0 0.0533 +0 0.1154 +0 0.0622 +0 0.1804 +0 0.2700 +0 0.0605 +0 0.0446 +0 0.1031 +0 0.1035 +0 0.2060 +0 0.1068 +0 0.0935 +0 0.0549 +0 0.1013 +0 0.0527 +0 0.0654 +0 0.4836 +0 0.0869 +0 0.0916 +0 0.0613 +0 0.0550 +0 0.0645 +0 0.0522 +0 0.0857 +0 0.0671 +0 0.0479 +0 0.0786 +0 0.0491 +0 0.2283 +0 0.1741 +0 0.1131 +0 0.0896 +0 0.1398 +0 0.1163 +0 0.2476 +0 0.0713 +0 0.0959 +0 0.1149 +0 0.2856 +0 0.1486 +0 0.0863 +0 0.6214 +0 0.1762 +0 0.0688 +0 0.0347 +0 0.1028 +0 0.1319 +0 0.0567 +0 0.0484 +0 0.1743 +0 0.2792 +0 0.0443 +0 0.2426 +1 0.7550 +0 0.0414 +0 0.5177 +0 0.1184 +0 0.0938 +0 0.1396 +0 0.0662 +0 0.0616 +0 0.0495 +0 0.0972 +0 0.0738 +0 0.2752 +0 0.2489 +0 0.1904 +0 0.2404 +0 0.3179 +0 0.1337 +0 0.0784 +0 0.1122 +0 0.1355 +0 0.0843 +0 0.0664 +0 0.1746 +0 0.1775 +0 0.4303 +0 0.2276 +0 0.1436 +0 0.5960 +0 0.0826 +0 0.0852 +0 0.0884 +0 0.0436 +0 0.1055 +0 0.0764 +0 0.1104 +0 0.0432 +0 0.0456 +0 0.0843 +0 0.0722 +0 0.1323 +0 0.0787 +0 0.0550 +0 0.1627 +0 0.0679 +0 0.1003 +0 0.1519 +0 0.1547 +0 0.1770 +0 0.0960 +0 0.0662 +0 0.0666 +0 0.0589 +0 0.0768 +0 0.1263 +0 0.2457 +0 0.0915 +0 0.3780 +0 0.1018 +0 0.0685 +0 0.1228 +0 0.0613 +0 0.0975 +0 0.1445 +0 0.1258 +0 0.0893 +0 0.1062 +0 0.0819 +0 0.1127 +0 0.0916 +0 0.1817 +0 0.2296 +0 0.1073 +0 0.0490 +0 0.3320 +0 0.0784 +0 0.0941 +0 0.4051 +0 0.1531 +0 0.0680 +0 0.0568 +0 0.0800 +0 0.1023 +0 0.4661 +0 0.1367 +0 0.0609 +0 0.0471 +0 0.0615 +0 0.0773 +0 0.0365 +0 0.2738 +0 0.0923 +0 0.1127 +0 0.1097 +0 0.0956 +0 0.0957 +0 0.7419 +1 0.8634 +0 0.0895 +0 0.0636 +0 0.0587 +0 0.0392 +0 0.1478 +0 0.1335 +0 0.1160 +0 0.0810 +0 0.0607 +0 0.0829 +0 0.1885 +0 0.5143 +0 0.0554 +0 0.2162 +0 0.0760 +0 0.1369 +0 0.0803 +0 0.0681 +0 0.1724 +0 0.2108 +0 0.0932 +0 0.1185 +0 0.0497 +0 0.1009 +0 0.2390 +0 0.0546 +0 0.1219 +0 0.0808 +0 0.0524 +0 0.0656 +0 0.0735 +0 0.0700 +0 0.0428 +0 0.1797 +0 0.0427 +0 0.3828 +0 0.1382 +0 0.3074 +0 0.0606 +0 0.0933 +0 0.0907 +0 0.5070 +0 0.3469 +0 0.1692 +0 0.1988 +0 0.2367 +0 0.1213 +0 0.0528 +0 0.3088 +0 0.0744 +0 0.0413 +0 0.0906 +0 0.1075 +0 0.0829 +0 0.0611 +0 0.0579 +0 0.0916 +0 0.0432 +0 0.5344 +0 0.0440 +0 0.0576 +0 0.1888 +0 0.1072 +0 0.2215 +0 0.1073 +0 0.0530 +0 0.1326 +0 0.0881 +0 0.1478 +0 0.0757 +0 0.2191 +0 0.0586 +0 0.1238 +0 0.0411 +0 0.1424 +0 0.1130 +1 0.7874 +0 0.1085 +0 0.0727 +0 0.2105 +0 0.0630 +0 0.0900 +0 0.1210 +0 0.0892 +0 0.0862 +0 0.0689 +0 0.1066 +0 0.1548 +0 0.0986 +0 0.1125 +0 0.0555 +0 0.0654 +0 0.1172 +0 0.0530 +0 0.0987 +0 0.0678 +0 0.1282 +0 0.0702 +0 0.7001 +0 0.1369 +0 0.1070 +0 0.1183 +0 0.0703 +0 0.1616 +0 0.0532 +0 0.0522 +0 0.2432 +0 0.0655 +0 0.0802 +0 0.1764 +0 0.0724 +0 0.1991 +0 0.0910 +0 0.1166 +0 0.0737 +0 0.0769 +0 0.1601 +0 0.0405 +0 0.0477 +0 0.0903 +0 0.6615 +0 0.1881 +0 0.0920 +0 0.1537 +0 0.1246 +0 0.0878 +0 0.0808 +0 0.1714 +0 0.1466 +0 0.0603 +0 0.2455 +0 0.1115 +0 0.1666 +0 0.1660 +0 0.0873 +0 0.3060 +0 0.2322 +0 0.0373 +0 0.3019 +0 0.0685 +0 0.0399 +0 0.2069 +1 0.8123 +0 0.2599 +0 0.1939 +0 0.1038 +0 0.0478 +0 0.2539 +0 0.1761 +0 0.0804 +0 0.0855 +0 0.5067 +0 0.0795 +0 0.1451 +0 0.1208 +0 0.0922 +0 0.0844 +0 0.1506 +0 0.1086 +0 0.0826 +0 0.0730 +0 0.1767 +0 0.0392 +0 0.0643 +0 0.7135 +0 0.1522 +0 0.0750 +0 0.2074 +0 0.1348 +0 0.0605 +0 0.7068 +0 0.1105 +0 0.0957 +0 0.1020 +0 0.1553 +0 0.1021 +0 0.1798 +0 0.2663 +0 0.0619 +0 0.0864 +0 0.0279 +0 0.1442 +0 0.0796 +0 0.1166 +0 0.1497 +0 0.0691 +0 0.0835 +0 0.0467 +0 0.0842 +0 0.0399 +1 0.8163 +0 0.0623 +0 0.1685 +0 0.2053 +0 0.0507 +0 0.0702 +0 0.0656 +0 0.1154 +0 0.1946 +0 0.2294 +0 0.0869 +0 0.0855 +0 0.1127 +0 0.0536 +0 0.1428 +0 0.0726 +0 0.0985 +0 0.0394 +1 0.7841 +0 0.0689 +0 0.0758 +0 0.1428 +0 0.4129 +0 0.1103 +0 0.0837 +0 0.0475 +0 0.1394 +0 0.1676 +0 0.0780 +0 0.0614 +0 0.1149 +0 0.1764 +0 0.1939 +0 0.2757 +0 0.1956 +0 0.0436 +0 0.0935 +0 0.0709 +0 0.0527 +0 0.1910 +0 0.0428 +0 0.0606 +0 0.0451 +0 0.1702 +0 0.0888 +0 0.1228 +0 0.0901 +0 0.2908 +0 0.1079 +0 0.0824 +0 0.0826 +0 0.1164 +0 0.0777 +0 0.1205 +0 0.1106 +0 0.0982 +0 0.0673 +0 0.0542 +0 0.0634 +0 0.1753 +0 0.1066 +0 0.1004 +0 0.0860 +0 0.1287 +0 0.0679 +0 0.3612 +0 0.1970 +0 0.1054 +0 0.1038 +0 0.0774 +0 0.1669 +0 0.0418 +0 0.2318 +0 0.1025 +0 0.3995 +0 0.1590 +0 0.2146 +0 0.0510 +0 0.1633 +0 0.1404 +0 0.0363 +0 0.1076 +0 0.1347 +0 0.1447 +0 0.1301 +0 0.1421 +0 0.1614 +0 0.1370 +0 0.0398 +0 0.1918 +0 0.0367 +0 0.1195 +0 0.0663 +0 0.1007 +0 0.1579 +0 0.0735 +0 0.0399 +0 0.1390 +0 0.1009 +1 0.7902 +0 0.0799 +0 0.0719 +0 0.0932 +0 0.1078 +0 0.0762 +0 0.0905 +0 0.0993 +0 0.0784 +0 0.1009 +0 0.1162 +0 0.1548 +0 0.0742 +0 0.0942 +0 0.0687 +0 0.1706 +0 0.0590 +0 0.0925 +0 0.0688 +0 0.2940 +0 0.1947 +0 0.1108 +0 0.2173 +0 0.1703 +0 0.1176 +0 0.0594 +0 0.0626 +0 0.0716 +0 0.1335 +0 0.0744 +0 0.1031 +0 0.1738 +0 0.6930 +0 0.2132 +0 0.1403 +0 0.1474 +0 0.0612 +0 0.1172 +0 0.1734 +0 0.0776 +0 0.1224 +1 0.7636 +0 0.0836 +0 0.0441 +0 0.1457 +0 0.1852 +0 0.2642 +0 0.0770 +0 0.1185 +0 0.0855 +0 0.2548 +0 0.2352 +0 0.0689 +0 0.1386 +0 0.1498 +0 0.3098 +0 0.4831 +0 0.2453 +1 0.8470 +0 0.0822 +0 0.0733 +0 0.0862 +0 0.4048 +0 0.0943 +0 0.0302 +0 0.1048 +0 0.4152 +0 0.1179 +0 0.1053 +0 0.0812 +0 0.1347 +0 0.2528 +0 0.0380 +0 0.1000 +0 0.0684 +0 0.0572 +0 0.0572 +0 0.0671 +0 0.1184 +0 0.5305 +0 0.0899 +0 0.6657 +0 0.0998 +0 0.5378 +0 0.1067 +0 0.1302 +0 0.0476 +0 0.1251 +0 0.1349 +0 0.0879 +0 0.1951 +0 0.0359 +0 0.0713 +0 0.0977 +0 0.0371 +0 0.1155 +0 0.1070 +0 0.0644 +0 0.2183 +0 0.1297 +0 0.1274 +0 0.0416 +0 0.0687 +0 0.1583 +0 0.0769 +0 0.1275 +0 0.0847 +0 0.1106 +0 0.1196 +0 0.0974 +0 0.1323 +0 0.7421 +0 0.1142 +0 0.1597 +0 0.1645 +0 0.0686 +0 0.3972 +0 0.2047 +0 0.0919 +0 0.0480 +0 0.1123 +0 0.0508 +0 0.1398 +0 0.0696 +0 0.4967 +0 0.1846 +0 0.0655 +0 0.0492 +0 0.1101 +0 0.1573 +0 0.0864 +0 0.0460 +0 0.4354 +0 0.0470 +0 0.1126 +0 0.3973 +0 0.0993 +0 0.2471 +0 0.2705 +0 0.1054 +0 0.0625 +0 0.4084 +0 0.1101 +0 0.0774 +0 0.2703 +0 0.0293 +0 0.1449 +0 0.0452 +0 0.0680 +0 0.1577 +0 0.0802 +0 0.0881 +0 0.3089 +0 0.0699 +0 0.1084 +0 0.1359 +0 0.4751 +0 0.1120 +0 0.0528 +0 0.1078 +0 0.0762 +0 0.0682 +0 0.1714 +0 0.1045 +0 0.1251 +0 0.0621 +0 0.0458 +0 0.1691 +0 0.0617 +0 0.1107 +0 0.0873 +0 0.0647 +0 0.0743 +0 0.0979 +0 0.1530 +0 0.0952 +0 0.2674 +0 0.0862 +0 0.1776 +0 0.0790 +0 0.0991 +0 0.3361 +0 0.0642 +0 0.1953 +0 0.2101 +0 0.2029 +0 0.0820 +0 0.1024 +0 0.1160 +0 0.0571 +0 0.0800 +0 0.1317 +0 0.0488 +0 0.0706 +0 0.3205 +0 0.1101 +0 0.2440 +0 0.1042 +0 0.0565 +0 0.2329 +0 0.0661 +0 0.0797 +0 0.3848 +1 0.2302 +0 0.0968 +0 0.3001 +0 0.1042 +1 0.8486 +0 0.0451 +0 0.0627 +0 0.1023 +0 0.0486 +0 0.1095 +0 0.1435 +0 0.1632 +0 0.0862 +0 0.0838 +0 0.0658 +0 0.1573 +0 0.0790 +0 0.1403 +0 0.0924 +0 0.1124 +0 0.0945 +0 0.1779 +0 0.1853 +0 0.1136 +0 0.0426 +0 0.1909 +0 0.0889 +0 0.2997 +0 0.0920 +0 0.1099 +0 0.1089 +0 0.1056 +0 0.1311 +0 0.1634 +0 0.2386 +0 0.1445 +0 0.0626 +0 0.5340 +0 0.0744 +0 0.1291 +0 0.0518 +0 0.2596 +0 0.0729 +0 0.0791 +0 0.0891 +0 0.2815 +0 0.2812 +0 0.0693 +0 0.2089 +0 0.1629 +0 0.1088 +0 0.0865 +0 0.1715 +0 0.0399 +0 0.1775 +0 0.0773 +1 0.8071 +0 0.1794 +0 0.1277 +0 0.0489 +0 0.0814 +0 0.1208 +0 0.0838 +0 0.0568 +0 0.1643 +0 0.0308 +0 0.3056 +0 0.0486 +0 0.0591 +0 0.2977 +0 0.1325 +0 0.0634 +0 0.1229 +0 0.1191 +0 0.0780 +0 0.0877 +0 0.1313 +0 0.0784 +0 0.0630 +0 0.0935 +0 0.0635 +0 0.1289 +0 0.1016 +0 0.1281 +0 0.3911 +0 0.0879 +0 0.0483 +0 0.0756 +0 0.0566 +0 0.0902 +0 0.0484 +0 0.0852 +0 0.0998 +0 0.0626 +0 0.3343 +0 0.2103 +0 0.2263 +0 0.0696 +0 0.0864 +0 0.0653 +0 0.0654 +0 0.0542 +0 0.0618 +0 0.3512 +0 0.0452 +0 0.1803 +0 0.0828 +0 0.1342 +0 0.1453 +0 0.0856 +0 0.4383 +0 0.0888 +0 0.1518 +0 0.0838 +0 0.1097 +0 0.1828 +0 0.0675 +0 0.1366 +0 0.2216 +0 0.0793 +0 0.1075 +0 0.1639 +0 0.0466 +0 0.0965 +0 0.2844 +0 0.1054 +0 0.0570 +0 0.0628 +0 0.0758 +0 0.1618 +0 0.1071 +0 0.0490 +0 0.0419 +0 0.1978 +0 0.0980 +0 0.1304 +0 0.1317 +0 0.1656 +0 0.1595 +0 0.1498 +0 0.1350 +0 0.2499 +0 0.2553 +0 0.0851 +0 0.0910 +0 0.4921 +0 0.3004 +0 0.1439 +0 0.1121 +0 0.0436 +0 0.0823 +0 0.0428 +0 0.0693 +0 0.0715 +0 0.0534 +0 0.4502 +0 0.0988 +0 0.0883 +0 0.0853 +0 0.1219 +0 0.7081 +0 0.1242 +0 0.0904 +0 0.0586 +0 0.0907 +0 0.1432 +0 0.1023 +0 0.2977 +0 0.0931 +0 0.1481 +0 0.0607 +0 0.1123 +0 0.1000 +0 0.0838 +0 0.0977 +0 0.0966 +0 0.1041 +0 0.1442 +0 0.0386 +0 0.6843 +0 0.0618 +0 0.2896 +0 0.0632 +0 0.1050 +0 0.1564 +0 0.2050 +0 0.1261 +0 0.0902 +0 0.1089 +0 0.1479 +0 0.1550 +0 0.0950 +0 0.1466 +0 0.1449 +0 0.1063 +0 0.0833 +0 0.0618 +0 0.1082 +0 0.1128 +0 0.1875 +0 0.0602 +0 0.0985 +0 0.1488 +0 0.0627 +0 0.1429 +0 0.1437 +0 0.1410 +0 0.1289 +0 0.0762 +0 0.4722 +0 0.0786 +0 0.1430 +0 0.0672 +0 0.1507 +0 0.1711 +0 0.1773 +0 0.0723 +1 0.7693 +0 0.2054 +0 0.0530 +0 0.2714 +0 0.2824 +0 0.0645 +0 0.0852 +0 0.1393 +0 0.1830 +0 0.1148 +0 0.0549 +0 0.0688 +0 0.3690 +0 0.3302 +0 0.3062 +0 0.0378 +0 0.1110 +0 0.1448 +0 0.0795 +0 0.0713 +0 0.3312 +0 0.0537 +0 0.0819 +0 0.0964 +0 0.2294 +0 0.1349 +0 0.0895 +0 0.6187 +0 0.0641 +0 0.1222 +0 0.0610 +0 0.0662 +0 0.0603 +0 0.0919 +0 0.1419 +0 0.0695 +0 0.0940 +0 0.1175 +0 0.1593 +0 0.3668 +0 0.2782 +0 0.1418 +0 0.2157 +0 0.0791 +0 0.1096 +0 0.0952 +0 0.0544 +0 0.1068 +0 0.0921 +0 0.0709 +1 0.7659 +0 0.1102 +0 0.1245 +0 0.1490 +0 0.0637 +0 0.0713 +0 0.3365 +0 0.0547 +0 0.0757 +0 0.0548 +0 0.0368 +0 0.1040 +0 0.0666 +0 0.0987 +0 0.0778 +0 0.4109 +0 0.2244 +0 0.1415 +0 0.0864 +0 0.0695 +0 0.5118 +0 0.1047 +1 0.8177 +0 0.0959 +0 0.2262 +0 0.1212 +0 0.2208 +0 0.0844 +0 0.0481 +0 0.1107 +0 0.1320 +0 0.2070 +0 0.1331 +0 0.1032 +0 0.1791 +0 0.1953 +1 0.7933 +0 0.0509 +0 0.0749 +0 0.0861 +0 0.0436 +0 0.0973 +0 0.0707 +0 0.0676 +0 0.0788 +0 0.1790 +0 0.1018 +0 0.2103 +0 0.2643 +0 0.2765 +0 0.1200 +0 0.1211 +0 0.0863 +0 0.1454 +0 0.0861 +0 0.1262 +0 0.2865 +0 0.3074 +0 0.1282 +0 0.1263 +0 0.0706 +0 0.1045 +0 0.0569 +0 0.2167 +0 0.0596 +0 0.0430 +0 0.1073 +0 0.1069 +0 0.1408 +0 0.1009 +0 0.0898 +0 0.0523 +0 0.0936 +0 0.0700 +1 0.8272 +0 0.0908 +0 0.0780 +0 0.1400 +0 0.3026 +0 0.0920 +0 0.0712 +0 0.0668 +0 0.0424 +0 0.1909 +0 0.0872 +0 0.1783 +0 0.0796 +0 0.1129 +0 0.1602 +0 0.0917 +0 0.2303 +0 0.1118 +0 0.1021 +0 0.6358 +0 0.1816 +0 0.0836 +0 0.0508 +0 0.0683 +0 0.1562 +0 0.2194 +0 0.0799 +0 0.2581 +0 0.0942 +0 0.1289 +0 0.0826 +0 0.0935 +0 0.1156 +0 0.0651 +0 0.0613 +0 0.0790 +0 0.3160 +0 0.0748 +0 0.1456 +0 0.1631 +0 0.4743 +0 0.2824 +0 0.1083 +0 0.1315 +0 0.3427 +0 0.1002 +0 0.1062 +0 0.3487 +0 0.0824 +0 0.2673 +0 0.0502 +0 0.1433 +0 0.1766 +0 0.0986 +0 0.2868 +0 0.2143 +0 0.2229 +0 0.0788 +0 0.0621 +0 0.0532 +0 0.2410 +0 0.2879 +0 0.0493 +0 0.2075 +0 0.1057 +0 0.0676 +0 0.2925 +0 0.1290 +0 0.1156 +0 0.0381 +0 0.1354 +0 0.1266 +0 0.0610 +0 0.1991 +0 0.1156 +0 0.0796 +0 0.1097 +0 0.1035 +0 0.1378 +0 0.2363 +0 0.0690 +0 0.1121 +0 0.1378 +0 0.1510 +0 0.1831 +0 0.0494 +0 0.0897 +0 0.1708 +0 0.1160 +0 0.0831 +0 0.0611 +0 0.1083 +0 0.0891 +0 0.0461 +0 0.1490 +0 0.0586 +0 0.1447 +0 0.7036 +0 0.6184 +0 0.0680 +0 0.0885 +0 0.0991 +0 0.2828 +0 0.0831 +0 0.1678 +0 0.1155 +0 0.2191 +0 0.2303 +0 0.0588 +0 0.1042 +0 0.2032 +0 0.1626 +0 0.2006 +0 0.0949 +0 0.0942 +0 0.2421 +0 0.2133 +0 0.0761 +0 0.1195 +0 0.5899 +0 0.2445 +0 0.1790 +0 0.0809 +0 0.0797 +0 0.1484 +0 0.0901 +0 0.0348 +0 0.0690 +0 0.1264 +0 0.0590 +0 0.2809 +0 0.6560 +0 0.0854 +0 0.1360 +0 0.0747 +0 0.0502 +0 0.6723 +0 0.0734 +0 0.0732 +0 0.7334 +0 0.2067 +0 0.2101 +0 0.0705 +0 0.0635 +0 0.0545 +0 0.3587 +1 0.8113 +0 0.1632 +0 0.1420 +0 0.0587 +0 0.2816 +0 0.0483 +0 0.1709 +0 0.1332 +0 0.1167 +0 0.0740 +0 0.0901 +0 0.1529 +0 0.1648 +0 0.0588 +0 0.0475 +0 0.0884 +0 0.1412 +0 0.5488 +0 0.0365 +0 0.1120 +0 0.1047 +0 0.1054 +0 0.1646 +0 0.0612 +0 0.0775 +0 0.0896 +0 0.4689 +0 0.0447 +0 0.0610 +0 0.0522 +0 0.1254 +0 0.0405 +0 0.0736 +0 0.1185 +0 0.0771 +0 0.1375 +0 0.0651 +0 0.0785 +0 0.1327 +0 0.0427 +0 0.1244 +0 0.2770 +0 0.0783 +0 0.1130 +0 0.0670 +0 0.1925 +0 0.1914 +0 0.0686 +0 0.2235 +0 0.1272 +0 0.0930 +0 0.0488 +0 0.1222 +0 0.0815 +0 0.2826 +0 0.0347 +0 0.1863 +0 0.0726 +0 0.0922 +0 0.2056 +0 0.0853 +0 0.0765 +0 0.0739 +0 0.1351 +0 0.0927 +0 0.0930 +0 0.0477 +0 0.1553 +0 0.0490 +0 0.2652 +0 0.0625 +0 0.0503 +0 0.1386 +0 0.1065 +0 0.4739 +0 0.0728 +0 0.2102 +0 0.1646 +0 0.0619 +0 0.0766 +0 0.2861 +0 0.0847 +0 0.0616 +0 0.3317 +0 0.2157 +0 0.0650 +0 0.0622 +0 0.1105 +0 0.0680 +0 0.1072 +0 0.2573 +0 0.0409 +0 0.5765 +0 0.1810 +0 0.1168 +0 0.0973 +0 0.1624 +0 0.0804 +0 0.1088 +0 0.1828 +0 0.0768 +0 0.2470 +0 0.1761 +0 0.0769 +0 0.2052 +0 0.0531 +0 0.5271 +0 0.0946 +0 0.0777 +0 0.0792 +0 0.0730 +0 0.0652 +0 0.0640 +0 0.1197 +0 0.0951 +0 0.1331 +0 0.2038 +0 0.6162 +0 0.3878 +0 0.0867 +0 0.0539 +0 0.1672 +0 0.0503 +0 0.2803 +0 0.0531 +0 0.2113 +0 0.0654 +0 0.1416 +0 0.1075 +0 0.0935 +0 0.0768 +0 0.1324 +0 0.0651 +0 0.1075 +0 0.1747 +0 0.0766 +0 0.2717 +0 0.1094 +0 0.0704 +0 0.0930 +0 0.0966 +0 0.2244 +0 0.0798 +0 0.1175 +0 0.0361 +0 0.1506 +0 0.0780 +0 0.0721 +0 0.0542 +0 0.2317 +0 0.2552 +0 0.0588 +0 0.2040 +0 0.0793 +0 0.0466 +1 0.8364 +0 0.0452 +0 0.1492 +0 0.0950 +0 0.6047 +0 0.1305 +0 0.1067 +0 0.1793 +0 0.3475 +1 0.8489 +0 0.2051 +0 0.0672 +0 0.0713 +0 0.2415 +0 0.1966 +0 0.0680 +0 0.0767 +0 0.1908 +0 0.1104 +0 0.1573 +0 0.1127 +0 0.1071 +0 0.3727 +0 0.0911 +0 0.1215 +0 0.0797 +0 0.0467 +0 0.1335 +0 0.1900 +0 0.0636 +0 0.2626 +0 0.0851 +0 0.2414 +0 0.2288 +0 0.1091 +0 0.1173 +0 0.0898 +0 0.0872 +0 0.0885 +0 0.1848 +0 0.1805 +0 0.1667 +0 0.5461 +0 0.0818 +0 0.1245 +0 0.1901 +0 0.2652 +0 0.1062 +1 0.8723 +1 0.8584 +0 0.1563 +0 0.0740 +0 0.1783 +0 0.0671 +0 0.1373 +0 0.0626 +0 0.1518 +0 0.0697 +0 0.2597 +0 0.2719 +0 0.0564 +0 0.1894 +0 0.0784 +0 0.1385 +0 0.0682 +0 0.1252 +1 0.8093 +0 0.0763 +0 0.1266 +0 0.0480 +0 0.1103 +0 0.2815 +0 0.0497 +0 0.1274 +0 0.1505 +0 0.0916 +0 0.1382 +0 0.1976 +0 0.0366 +0 0.1644 +0 0.2265 +0 0.0977 +0 0.0775 +0 0.1058 +0 0.1131 +0 0.0783 +0 0.0402 +0 0.1962 +0 0.1316 +0 0.1406 +0 0.0499 +0 0.0937 +0 0.1522 +0 0.2267 +0 0.0507 +0 0.1073 +0 0.1948 +0 0.0565 +0 0.4066 +0 0.2088 +0 0.1073 +0 0.0798 +0 0.0490 +0 0.0615 +0 0.2211 +0 0.1427 +0 0.1660 +0 0.1413 +0 0.0960 +0 0.1325 +1 0.7673 +0 0.0862 +0 0.3784 +0 0.0461 +0 0.0805 +0 0.2707 +0 0.0624 +0 0.0544 +0 0.1219 +0 0.0489 +0 0.3280 +0 0.0674 +0 0.0537 +0 0.0891 +0 0.2156 +0 0.1150 +0 0.1283 +0 0.0607 +0 0.0910 +0 0.2422 +1 0.8465 +0 0.4380 +0 0.1328 +0 0.1007 +0 0.0595 +0 0.1226 +0 0.1720 +0 0.2905 +0 0.0926 +0 0.0731 +0 0.2073 +0 0.0738 +0 0.0477 +0 0.0434 +0 0.0520 +0 0.1530 +0 0.0744 +0 0.6915 +0 0.1410 +0 0.1183 +0 0.1544 +0 0.0788 +0 0.5811 +0 0.1012 +0 0.6349 +0 0.3959 +0 0.1765 +0 0.0677 +0 0.2806 +0 0.1441 +0 0.1022 +0 0.1425 +0 0.0802 +0 0.4548 +0 0.1906 +0 0.1365 +0 0.0715 +0 0.1845 +0 0.1067 +0 0.1682 +0 0.0827 +0 0.1209 +0 0.0335 +0 0.2560 +0 0.1579 +0 0.0430 +0 0.2105 +0 0.0602 +0 0.0468 +0 0.2934 +0 0.3101 +0 0.0833 +0 0.0547 +0 0.1514 +0 0.0584 +0 0.0705 +0 0.1638 +0 0.0324 +0 0.1418 +0 0.6116 +0 0.0851 +0 0.0642 +0 0.0620 +0 0.0730 +0 0.2056 +0 0.1070 +0 0.0692 +0 0.1231 +0 0.1397 +0 0.0568 +0 0.1456 +0 0.0976 +0 0.1567 +0 0.1479 +0 0.2113 +0 0.1417 +0 0.1127 +0 0.1828 +0 0.0789 +0 0.1624 +0 0.0797 +0 0.0752 +0 0.0615 +0 0.0980 +0 0.0533 +0 0.1905 +0 0.0848 +1 0.8546 +0 0.6081 +0 0.0832 +0 0.0840 +0 0.4305 +0 0.1751 +0 0.1990 +0 0.1182 +0 0.0764 +0 0.1054 +0 0.1421 +0 0.1107 +0 0.1817 +0 0.0950 +0 0.1157 +0 0.1569 +0 0.1089 +0 0.1306 +0 0.0527 +0 0.0925 +0 0.2421 +0 0.1161 +0 0.2200 +0 0.0679 +0 0.2003 +0 0.0351 +0 0.0918 +0 0.0760 +0 0.0993 +0 0.0541 +0 0.0547 +0 0.0926 +0 0.0434 +0 0.3230 +0 0.1994 +0 0.0959 +0 0.1045 +0 0.0858 +0 0.4149 +0 0.0937 +0 0.1860 +0 0.2251 +0 0.0808 +0 0.0830 +0 0.0454 +0 0.3499 +0 0.0416 +0 0.5105 +0 0.0401 +0 0.2902 +0 0.1612 +0 0.0602 +0 0.0686 +0 0.2062 +0 0.1774 +0 0.2698 +0 0.0718 +0 0.0355 +0 0.2722 +0 0.0574 +0 0.2168 +0 0.0930 +0 0.1107 +0 0.0959 +0 0.1383 +0 0.0729 +0 0.0489 +0 0.1092 +0 0.3520 +0 0.0648 +1 0.7900 +0 0.0931 +0 0.0406 +0 0.4548 +0 0.0532 +0 0.1481 +0 0.0575 +0 0.1530 +0 0.1692 +0 0.1715 +0 0.0794 +0 0.0679 +0 0.0486 +0 0.0628 +1 0.7986 +0 0.0555 +0 0.1042 +0 0.1944 +0 0.0809 +0 0.6103 +0 0.1315 +0 0.2466 +1 0.8068 +0 0.0878 +0 0.0369 +0 0.0583 +0 0.6037 +0 0.0645 +0 0.1802 +0 0.1718 +0 0.0568 +0 0.1140 +0 0.1714 +0 0.1304 +0 0.2417 +0 0.0750 +0 0.1184 +0 0.1039 +0 0.1057 +0 0.2185 +0 0.0969 +0 0.1705 +0 0.1108 +0 0.0909 +0 0.0532 +0 0.0705 +0 0.0898 +0 0.5626 +0 0.1473 +0 0.3153 +0 0.0527 +0 0.2028 +0 0.0865 +0 0.0656 +0 0.1026 +0 0.0499 +0 0.0746 +0 0.0972 +0 0.1657 +0 0.1249 +0 0.1613 +0 0.1085 +0 0.0912 +0 0.3899 +0 0.1028 +0 0.0778 +0 0.3441 +0 0.7199 +0 0.0636 +0 0.1594 +0 0.1193 +0 0.4878 +0 0.1204 +0 0.1796 +0 0.0780 +0 0.0978 +0 0.2884 +0 0.2053 +0 0.0473 +0 0.0863 +0 0.2223 +0 0.1057 +0 0.4194 +0 0.0849 +0 0.1771 +0 0.0607 +0 0.1124 +0 0.2756 +0 0.1781 +0 0.1237 +0 0.1131 +0 0.0867 +0 0.0513 +0 0.0917 +0 0.0481 +1 0.8488 +0 0.1461 +0 0.1167 +0 0.0776 +0 0.0525 +0 0.1805 +0 0.0796 +0 0.0683 +0 0.7114 +0 0.6791 +0 0.1112 +0 0.6494 +0 0.1128 +0 0.0922 +0 0.0711 +0 0.0778 +0 0.2406 +0 0.0322 +0 0.0458 +0 0.0595 +0 0.0965 +0 0.0790 +0 0.0550 +0 0.0831 +0 0.3532 +0 0.1000 +0 0.0702 +0 0.0729 +0 0.2397 +0 0.1023 +0 0.1528 +0 0.0631 +0 0.3385 +0 0.1459 +0 0.0651 +0 0.1678 +1 0.7598 +0 0.0572 +0 0.0850 +0 0.1248 +0 0.1318 +0 0.1046 +0 0.0565 +0 0.1049 +0 0.1773 +0 0.0615 +0 0.0536 +0 0.1149 +0 0.0484 +0 0.0375 +0 0.0559 +0 0.0648 +0 0.1026 +0 0.1745 +0 0.0870 +0 0.1039 +0 0.1060 +0 0.1286 +0 0.0738 +0 0.0338 +0 0.0779 +0 0.1171 +0 0.0778 +0 0.1043 +0 0.0574 +0 0.1585 +0 0.0731 +0 0.0875 +0 0.1616 +0 0.0964 +0 0.1471 +0 0.0788 +0 0.0937 +0 0.0739 +0 0.1287 +0 0.0604 +0 0.1205 +0 0.0372 +0 0.1128 +0 0.0791 +0 0.0798 +0 0.0894 +0 0.0456 +0 0.1253 +0 0.2788 +0 0.1433 +0 0.2178 +0 0.1350 +0 0.6150 +0 0.1072 +0 0.1271 +0 0.2010 +0 0.1032 +0 0.1333 +0 0.0869 +0 0.1468 +0 0.0605 +0 0.1294 +0 0.1755 +0 0.0812 +0 0.0871 +0 0.0344 +0 0.0572 +0 0.6633 +0 0.0878 +0 0.1448 +0 0.1113 +0 0.0975 +0 0.0476 +0 0.3728 +0 0.1190 +0 0.0843 +0 0.0779 +0 0.2687 +0 0.1644 +0 0.1117 +0 0.1305 +0 0.7421 +0 0.1366 +0 0.1444 +0 0.0826 +0 0.0949 +0 0.0300 +0 0.2099 +0 0.3488 +0 0.0555 +0 0.0695 +0 0.0704 +0 0.1170 +0 0.0530 +0 0.0732 +0 0.1072 +0 0.1707 +0 0.1061 +0 0.2170 +0 0.0706 +0 0.0792 +0 0.0683 +0 0.2528 +0 0.0817 +0 0.0921 +0 0.0724 +0 0.0779 +0 0.3730 +0 0.1336 +0 0.1515 +0 0.0995 +0 0.0891 +0 0.0894 +0 0.1072 +0 0.0993 +0 0.1317 +0 0.0758 +0 0.0788 +0 0.0536 +0 0.1398 +0 0.0854 +0 0.0790 +0 0.2168 +0 0.1076 +0 0.0402 +0 0.1328 +0 0.0854 +0 0.3664 +0 0.0525 +0 0.0443 +0 0.1128 +0 0.1279 +0 0.5048 +0 0.1236 +0 0.0781 +0 0.2213 +0 0.1230 +0 0.0325 +0 0.1527 +0 0.2522 +0 0.1189 +0 0.1507 +0 0.2746 +0 0.1593 +0 0.1186 +0 0.1026 +0 0.1811 +0 0.1119 +0 0.0995 +0 0.1556 +0 0.0639 +0 0.0582 +0 0.7344 +0 0.0776 +0 0.1302 +0 0.1288 +0 0.0456 +0 0.2553 +0 0.2339 +0 0.0526 +0 0.0770 +0 0.1130 +0 0.0931 +0 0.1979 +0 0.0951 +0 0.0695 +0 0.0874 +0 0.1393 +0 0.2862 +0 0.5092 +1 0.7534 +0 0.1634 +0 0.1019 +0 0.0904 +0 0.3854 +0 0.0388 +0 0.1865 +0 0.0683 +0 0.0689 +0 0.1346 +0 0.1048 +0 0.0770 +0 0.0539 +0 0.1486 +0 0.1652 +0 0.0372 +0 0.1540 +0 0.2248 +0 0.1490 +0 0.1329 +0 0.0651 +0 0.1526 +0 0.1021 +0 0.0431 +0 0.0555 +0 0.1941 +0 0.0976 +0 0.1264 +0 0.0660 +1 0.4724 +0 0.3185 +0 0.1440 +0 0.0664 +0 0.0516 +0 0.0695 +0 0.0763 +0 0.1005 +0 0.1911 +0 0.0864 +0 0.0967 +0 0.1459 +0 0.0913 +0 0.1920 +0 0.1494 +0 0.1223 +0 0.0625 +0 0.1761 +0 0.0838 +0 0.0488 +0 0.1504 +0 0.0603 +0 0.3870 +0 0.0811 +0 0.0844 +0 0.0914 +0 0.4159 +0 0.1815 +0 0.0870 +0 0.1362 +0 0.1340 +0 0.1936 +0 0.0818 +0 0.1890 +0 0.1268 +0 0.0425 +0 0.0738 +0 0.0713 +0 0.1497 +0 0.1771 +0 0.0950 +0 0.1685 +0 0.1188 +0 0.1291 +0 0.1380 +0 0.1288 +0 0.0446 +0 0.0488 +0 0.0761 +0 0.0919 +0 0.0813 +0 0.1121 +0 0.0878 +0 0.2790 +0 0.0521 +0 0.1442 +0 0.1335 +0 0.1204 +0 0.0933 +0 0.0550 +0 0.0803 +0 0.2973 +0 0.0646 +0 0.0986 +0 0.0560 +0 0.0652 +0 0.0614 +0 0.1025 +0 0.0535 +0 0.2046 +0 0.0462 +0 0.1179 +0 0.1079 +0 0.5553 +0 0.1089 +0 0.2211 +0 0.1888 +0 0.0793 +0 0.0512 +0 0.0541 +0 0.3488 +0 0.2222 +0 0.0614 +0 0.0362 +0 0.3332 +1 0.8632 +0 0.2229 +0 0.1243 +0 0.2046 +0 0.0883 +0 0.0695 +0 0.0781 +0 0.1151 +0 0.1278 +0 0.1684 +0 0.6354 +0 0.1231 +0 0.1148 +0 0.0799 +0 0.2814 +0 0.3419 +0 0.0558 +0 0.0994 +1 0.8438 +0 0.1128 +0 0.1256 +0 0.5578 +0 0.0506 +0 0.0743 +0 0.0546 +0 0.0868 +0 0.0830 +0 0.1956 +0 0.1182 +0 0.0446 +0 0.1788 +0 0.0991 +0 0.0647 +0 0.0853 +0 0.0680 +0 0.1084 +0 0.1234 +0 0.0479 +0 0.1213 +0 0.0433 +0 0.4516 +0 0.1239 +0 0.3857 +0 0.0607 +0 0.1543 +0 0.1138 +0 0.1097 +0 0.0406 +0 0.4316 +0 0.0585 +0 0.0691 +0 0.0586 +0 0.3662 +0 0.0929 +0 0.0840 +0 0.1161 +0 0.0509 +0 0.1805 +0 0.7467 +0 0.1885 +0 0.1420 +0 0.2322 +0 0.0417 +0 0.0898 +0 0.1320 +0 0.0343 +0 0.0822 +0 0.0573 +0 0.5210 +0 0.0494 +0 0.3870 +0 0.1278 +0 0.1113 +0 0.0872 +0 0.1829 +0 0.1200 +0 0.4732 +0 0.3474 +0 0.0373 +0 0.0990 +0 0.6376 +0 0.1681 +0 0.2603 +0 0.2198 +0 0.0823 +0 0.1402 +0 0.3899 +0 0.3970 +0 0.1286 +0 0.1169 +0 0.0426 +0 0.3506 +0 0.0687 +0 0.1077 +0 0.0454 +0 0.1347 +0 0.0547 +0 0.0508 +0 0.0457 +0 0.0615 +0 0.4945 +0 0.0693 +0 0.2302 +0 0.0757 +0 0.1631 +0 0.0719 +0 0.1197 +0 0.2824 +0 0.1844 +0 0.1512 +0 0.0704 +0 0.1164 +0 0.1397 +0 0.1819 +0 0.0877 +0 0.1744 +0 0.0599 +0 0.0779 +0 0.0817 +0 0.0653 +0 0.0625 +0 0.2351 +1 0.7582 +1 0.8272 +0 0.0770 +0 0.2085 +0 0.1061 +0 0.0772 +0 0.1514 +0 0.0736 +0 0.1050 +0 0.1711 +0 0.0525 +0 0.0762 +0 0.0568 +0 0.1000 +0 0.0700 +0 0.1259 +0 0.0601 +0 0.0421 +0 0.1585 +0 0.0661 +0 0.0645 +0 0.1232 +0 0.3622 +0 0.0694 +0 0.3077 +0 0.2298 +0 0.0774 +0 0.0875 +0 0.1289 +0 0.2531 +0 0.1228 +0 0.3114 +0 0.0942 +0 0.0551 +0 0.0702 +0 0.0519 +0 0.0510 +0 0.1346 +0 0.0458 +0 0.1067 +0 0.1407 +0 0.0538 +0 0.2473 +0 0.0950 +0 0.0692 +0 0.3180 +0 0.1309 +0 0.1085 +0 0.4414 +0 0.1826 +0 0.0469 +0 0.0359 +0 0.1917 +0 0.1833 +0 0.0660 +0 0.3144 +0 0.2367 +0 0.0984 +0 0.0633 +0 0.0443 +0 0.1201 +0 0.0818 +0 0.1201 +0 0.3097 +0 0.1456 +0 0.1197 +0 0.3173 +0 0.0475 +0 0.1491 +0 0.1239 +0 0.1897 +0 0.3757 +0 0.0626 +0 0.1216 +0 0.0512 +0 0.0450 +0 0.1228 +0 0.1256 +0 0.1478 +0 0.1098 +0 0.1225 +0 0.0921 +0 0.1495 +0 0.1235 +0 0.5751 +0 0.0931 +0 0.1649 +0 0.1204 +0 0.2840 +0 0.1441 +0 0.4820 +0 0.3141 +0 0.1482 +0 0.0490 +0 0.4979 +0 0.1662 +0 0.0424 +0 0.0609 +0 0.1309 +0 0.1032 +0 0.1591 +0 0.0474 +0 0.0581 +0 0.0983 +0 0.0514 +0 0.1429 +0 0.1744 +0 0.2859 +0 0.0569 +0 0.0413 +0 0.0515 +0 0.3235 +0 0.0608 +0 0.0663 +0 0.0812 +0 0.3439 +0 0.0418 +0 0.3114 +0 0.3785 +0 0.0867 +0 0.0884 +0 0.1318 +0 0.1357 +0 0.0956 +0 0.1226 +0 0.1008 +0 0.1597 +0 0.0644 +0 0.1239 +0 0.0525 +0 0.3852 +0 0.1964 +0 0.0964 +0 0.1804 +0 0.1561 +0 0.1412 +0 0.0513 +0 0.0672 +0 0.0742 +0 0.0529 +0 0.0851 +0 0.0900 +0 0.0779 +0 0.0719 +0 0.1988 +0 0.0762 +0 0.1771 +0 0.0715 +0 0.7266 +0 0.1379 +0 0.0977 +0 0.0856 +0 0.1353 +0 0.0632 +0 0.0392 +0 0.0883 +0 0.1896 +0 0.1368 +0 0.1299 +0 0.3229 +0 0.1493 +0 0.1093 +0 0.1120 +0 0.2050 +0 0.0884 +0 0.0471 +0 0.1100 +0 0.2767 +0 0.1519 +0 0.1031 +0 0.6322 +0 0.0668 +0 0.1261 +0 0.0786 +0 0.3948 +0 0.0460 +0 0.1161 +0 0.1531 +0 0.6601 +0 0.0691 +0 0.1577 +0 0.6865 +0 0.1822 +0 0.0669 +0 0.0801 +0 0.1505 +0 0.0482 +0 0.1245 +0 0.2048 +0 0.2200 +0 0.1379 +0 0.0785 +0 0.0829 +0 0.1588 +0 0.0712 +0 0.1164 +0 0.0991 +0 0.1514 +0 0.0869 +0 0.1661 +0 0.0475 +0 0.2798 +0 0.0610 +0 0.0619 +0 0.0580 +0 0.2186 +0 0.0677 +0 0.0507 +0 0.1488 +0 0.1378 +0 0.0906 +0 0.0445 +0 0.0867 +0 0.0668 +0 0.0625 +0 0.3360 +0 0.0973 +0 0.1569 +0 0.7450 +0 0.2837 +0 0.2550 +0 0.2123 +0 0.1071 +0 0.0818 +0 0.0535 +0 0.1477 +0 0.1595 +0 0.0476 +0 0.0417 +1 0.7728 +0 0.0515 +0 0.2398 +0 0.2916 +0 0.0784 +0 0.2019 +0 0.0809 +0 0.0964 +0 0.0791 +0 0.1261 +0 0.0832 +0 0.2581 +0 0.1959 +0 0.2315 +0 0.0584 +0 0.0765 +0 0.1468 +0 0.0848 +0 0.0963 +0 0.1411 +0 0.1427 +0 0.1156 +0 0.1702 +0 0.0671 +0 0.0927 +0 0.0736 +0 0.0624 +0 0.0723 +0 0.1176 +0 0.4634 +0 0.0331 +0 0.0603 +0 0.1022 +0 0.0406 +0 0.2720 +0 0.0860 +0 0.2453 +0 0.0821 +0 0.0635 +0 0.1844 +0 0.0828 +0 0.1420 +0 0.0796 +0 0.3318 +0 0.0683 +0 0.1053 +0 0.2557 +0 0.0445 +0 0.1180 +0 0.0772 +0 0.3013 +0 0.2505 +0 0.1063 +0 0.1230 +0 0.1048 +0 0.0680 +0 0.0475 +0 0.3529 +0 0.1660 +0 0.0838 +0 0.2214 +0 0.1032 +0 0.1252 +0 0.2444 +0 0.2525 +0 0.0427 +0 0.3686 +0 0.0659 +0 0.1583 +0 0.0666 +0 0.0743 +0 0.1655 +0 0.1294 +0 0.1015 +0 0.0483 +0 0.1642 +0 0.1256 +0 0.1223 +0 0.1848 +0 0.7204 +0 0.0709 +0 0.0823 +0 0.0966 +0 0.0880 +0 0.1187 +1 0.7741 +0 0.2220 +0 0.0794 +0 0.0588 +0 0.1737 +0 0.1540 +0 0.0877 +0 0.1323 +0 0.0389 +0 0.2633 +0 0.0535 +0 0.1349 +0 0.1734 +0 0.0759 +0 0.1115 +0 0.1013 +0 0.0631 +0 0.2477 +0 0.1053 +0 0.1924 +0 0.0568 +0 0.1599 +0 0.1522 +0 0.1469 +0 0.1256 +0 0.1747 +0 0.0522 +0 0.0888 +0 0.0762 +0 0.5998 +0 0.0882 +0 0.0640 +0 0.0948 +0 0.1191 +0 0.0545 +0 0.1994 +0 0.1099 +0 0.0950 +0 0.2422 +0 0.0950 +0 0.1851 +0 0.0903 +0 0.0999 +0 0.1108 +0 0.2220 +0 0.1709 +0 0.2326 +0 0.4558 +0 0.1279 +0 0.0769 +0 0.2797 +0 0.0471 +0 0.0499 +0 0.0969 +0 0.1706 +0 0.2891 +0 0.1156 +0 0.0797 +0 0.0681 +0 0.1054 +0 0.2694 +0 0.0556 +0 0.1130 +0 0.0938 +0 0.4448 +0 0.0350 +0 0.1000 +0 0.0837 +0 0.0397 +0 0.6207 +0 0.1195 +0 0.0868 +0 0.0502 +0 0.3710 +0 0.1355 +0 0.0629 +0 0.1416 +0 0.0556 +0 0.0549 +0 0.0612 +0 0.1145 +0 0.0777 +0 0.0963 +0 0.1392 +0 0.1996 +0 0.0573 +0 0.4537 +0 0.0760 +0 0.0857 +0 0.0685 +0 0.0499 +0 0.1357 +0 0.3067 +0 0.1353 +0 0.1547 +0 0.1813 +0 0.2686 +0 0.0839 +0 0.0584 +0 0.4513 +0 0.0372 +0 0.2530 +0 0.1443 +0 0.0640 +0 0.1270 +0 0.2427 +0 0.0662 +0 0.0907 +0 0.1083 +0 0.1294 +0 0.1243 +0 0.1317 +0 0.1808 +0 0.1929 +0 0.0779 +0 0.0622 +0 0.0597 +0 0.0642 +0 0.0553 +0 0.7150 +0 0.0791 +0 0.2241 +0 0.0757 +0 0.0883 +0 0.0542 +0 0.1713 +0 0.1395 +0 0.0546 +0 0.5482 +0 0.1586 +0 0.0494 +0 0.0425 +0 0.0482 +0 0.1731 +0 0.2001 +0 0.0862 +0 0.0754 +0 0.0852 +0 0.0446 +0 0.1380 +0 0.1104 +0 0.0530 +0 0.0882 +0 0.0429 +0 0.1568 +0 0.1024 +0 0.0704 +0 0.0713 +0 0.0747 +0 0.1250 +0 0.0948 +0 0.1163 +0 0.0924 +0 0.1087 +0 0.1653 +0 0.1111 +0 0.0801 +0 0.0891 +0 0.1953 +0 0.2237 +0 0.0498 +0 0.1854 +0 0.1118 +0 0.1159 +0 0.0390 +0 0.1210 +0 0.0382 +0 0.1840 +0 0.2736 +0 0.0845 +0 0.0639 +0 0.1473 +0 0.0404 +0 0.1115 +0 0.0523 +0 0.1155 +0 0.1854 +0 0.1117 +0 0.1683 +0 0.0686 +0 0.0868 +0 0.0348 +0 0.0622 +0 0.0830 +0 0.1104 +0 0.1249 +0 0.1395 +0 0.0346 +0 0.0688 +0 0.1165 +0 0.1114 +0 0.0902 +0 0.0670 +0 0.0759 +0 0.0797 +0 0.0675 +0 0.1157 +0 0.1649 +0 0.1566 +0 0.1266 +0 0.0665 +0 0.1090 +0 0.2393 +0 0.0990 +0 0.0469 +0 0.0550 +0 0.1111 +0 0.1264 +0 0.1986 +0 0.1210 +0 0.1370 +0 0.0704 +0 0.1322 +0 0.1067 +0 0.1645 +0 0.0605 +0 0.1270 +0 0.0892 +0 0.1165 +0 0.1053 +0 0.0748 +0 0.2755 +0 0.1317 +0 0.1317 +0 0.0574 +0 0.1823 +0 0.1258 +0 0.0405 +0 0.0607 +0 0.0685 +0 0.2026 +0 0.0873 +0 0.1802 +0 0.1074 +0 0.0418 +0 0.0723 +0 0.0884 +0 0.2079 +0 0.2188 +0 0.1426 +0 0.1586 +0 0.1378 +0 0.0889 +0 0.1707 +0 0.2537 +0 0.0580 +0 0.0812 +0 0.3553 +0 0.0531 +0 0.1396 +0 0.1917 +0 0.3421 +0 0.0825 +0 0.1112 +0 0.0467 +0 0.1223 +0 0.2477 +0 0.1626 +0 0.0724 +0 0.0587 +0 0.0962 +0 0.0703 +0 0.0871 +0 0.1121 +0 0.1384 +0 0.0563 +0 0.0510 +0 0.1253 +0 0.1015 +0 0.0438 +0 0.0716 +0 0.1469 +0 0.1654 +0 0.1160 +0 0.6598 +0 0.0571 +0 0.0773 +0 0.1580 +0 0.2277 +0 0.0863 +0 0.0941 +0 0.1521 +0 0.0802 +0 0.0650 +0 0.1601 +0 0.1206 +0 0.1169 +0 0.0395 +0 0.1392 +0 0.2720 +0 0.4921 +0 0.2308 +0 0.1337 +0 0.1345 +0 0.0540 +0 0.1131 +0 0.0402 +0 0.1539 +0 0.1285 +0 0.0647 +0 0.1014 +0 0.1069 +0 0.1079 +0 0.0936 +0 0.0436 +0 0.1165 +0 0.1080 +0 0.0561 +0 0.0625 +0 0.1635 +0 0.0750 +0 0.2029 +0 0.1025 +0 0.0421 +0 0.0576 +0 0.2500 +0 0.0445 +0 0.4135 +0 0.4396 +0 0.0581 +0 0.0532 +0 0.2999 +0 0.5071 +0 0.2039 +0 0.0482 +0 0.3360 +0 0.1467 +0 0.2061 +0 0.0468 +0 0.0959 +0 0.0871 +0 0.2371 +0 0.1434 +0 0.0670 +0 0.3185 +0 0.0671 +0 0.0419 +0 0.1158 +0 0.2250 +0 0.0909 +0 0.0731 +0 0.0502 +0 0.0806 +0 0.0563 +0 0.2262 +0 0.0523 +0 0.2174 +0 0.1107 +0 0.0638 +0 0.1380 +0 0.0382 +0 0.0502 +0 0.1029 +0 0.1393 +0 0.0725 +0 0.1810 +0 0.0710 +0 0.0596 +0 0.0978 +0 0.2177 +0 0.0983 +0 0.0744 +0 0.2128 +0 0.2070 +0 0.3415 +0 0.2140 +0 0.0925 +0 0.0670 +0 0.3296 +0 0.1173 +0 0.0567 +0 0.0718 +0 0.1098 +0 0.1071 +0 0.1626 +0 0.1986 +0 0.0885 +0 0.0454 +0 0.3768 +0 0.1309 +0 0.1870 +0 0.0816 +0 0.1344 +0 0.0711 +0 0.0777 +0 0.0886 +0 0.2149 +0 0.1111 +0 0.1140 +0 0.0975 +0 0.3917 +0 0.1016 +0 0.1771 +0 0.2846 +0 0.1391 +0 0.1691 +0 0.0446 +0 0.0593 +0 0.0636 +0 0.2056 +0 0.1383 +1 0.8661 +0 0.0672 +0 0.1380 +0 0.2175 +1 0.8443 +0 0.0482 +0 0.0513 +0 0.0876 +0 0.0419 +0 0.1582 +0 0.0797 +0 0.1480 +0 0.0616 +0 0.2716 +0 0.1171 +0 0.0887 +0 0.0640 +0 0.0894 +0 0.1827 +0 0.1396 +0 0.0526 +0 0.1443 +0 0.1107 +0 0.1443 +0 0.1279 +1 0.7667 +0 0.0507 +0 0.0915 +0 0.0760 +0 0.1142 +0 0.2182 +0 0.2621 +0 0.2733 +0 0.0633 +1 0.8074 +0 0.1772 +0 0.1293 +0 0.2369 +0 0.1336 +0 0.0932 +0 0.0800 +0 0.2159 +0 0.1467 +0 0.0370 +0 0.0749 +0 0.1151 +0 0.0382 +0 0.0838 +0 0.0653 +0 0.1381 +0 0.2022 +0 0.0651 +0 0.0743 +0 0.0900 +0 0.0450 +0 0.1486 +0 0.0640 +0 0.0722 +1 0.8228 +0 0.1875 +0 0.0690 +0 0.0920 +0 0.0387 +0 0.1781 +0 0.3267 +0 0.2963 +0 0.1602 +0 0.0818 +0 0.2622 +0 0.3512 +0 0.1300 +0 0.0400 +0 0.0866 +0 0.1429 +0 0.0670 +0 0.0577 +0 0.0995 +0 0.0980 +0 0.5330 +0 0.0489 +0 0.0567 +0 0.1474 +1 0.8677 +0 0.0972 +0 0.7226 +0 0.1181 +0 0.0718 +0 0.0735 +0 0.0981 +0 0.0834 +0 0.0960 +0 0.1428 +0 0.0538 +0 0.2490 +0 0.1245 +0 0.0614 +0 0.0724 +0 0.1195 +0 0.2318 +0 0.0978 +0 0.1475 +0 0.0738 +0 0.0966 +0 0.2416 +0 0.0677 +0 0.0581 +0 0.0567 +0 0.0602 +0 0.1704 +0 0.2389 +0 0.0658 +0 0.0767 +0 0.0896 +0 0.1303 +0 0.1077 +0 0.1944 +0 0.1583 +0 0.0516 +0 0.1041 +0 0.1233 +0 0.0593 +0 0.2001 +0 0.0573 +0 0.0750 +0 0.0928 +0 0.2581 +0 0.3512 +0 0.0594 +0 0.0551 +0 0.1373 +0 0.1074 +0 0.0437 +1 0.8448 +0 0.6235 +1 0.8706 +0 0.0582 +0 0.0697 +0 0.0663 +0 0.1780 +0 0.0843 +0 0.0643 +0 0.2119 +0 0.0433 +0 0.4937 +0 0.0403 +0 0.1010 +0 0.1227 +0 0.0611 +0 0.2751 +0 0.0890 +0 0.1170 +0 0.1122 +0 0.6507 +0 0.1551 +0 0.3182 +0 0.0482 +0 0.2351 +0 0.3486 +0 0.0866 +0 0.0763 +0 0.1153 +0 0.6587 +0 0.0737 +0 0.0614 +0 0.1888 +0 0.0828 +0 0.4668 +0 0.1277 +0 0.1322 +0 0.0724 +0 0.0894 +0 0.0725 +0 0.1209 +0 0.2383 +0 0.0801 +0 0.1992 +0 0.4983 +0 0.1457 +0 0.1956 +0 0.2207 +0 0.0344 +0 0.1288 +0 0.0822 +0 0.1409 +0 0.1328 +0 0.0728 +0 0.1412 +0 0.2073 +0 0.1511 +0 0.0746 +0 0.2628 +0 0.0616 +0 0.1384 +0 0.1537 +1 0.8870 +0 0.0438 +0 0.0525 +0 0.1340 +0 0.1273 +0 0.2506 +0 0.0585 +0 0.1113 +0 0.0809 +0 0.1016 +0 0.0961 +0 0.2114 +0 0.0698 +0 0.0888 +0 0.0548 +0 0.1895 +0 0.0418 +0 0.1636 +0 0.0839 +0 0.2611 +0 0.0709 +0 0.1455 +0 0.1086 +0 0.1702 +0 0.1328 +0 0.0476 +0 0.1851 +0 0.0840 +0 0.1725 +0 0.3425 +0 0.0438 +0 0.0672 +0 0.0779 +0 0.6193 +0 0.1450 +0 0.0745 +0 0.0898 +0 0.1152 +0 0.1797 +0 0.0733 +0 0.1715 +0 0.1074 +0 0.1516 +0 0.0604 +0 0.1302 +0 0.1407 +0 0.0989 +0 0.4468 +0 0.0521 +0 0.0381 +0 0.1504 +0 0.1303 +0 0.6981 +0 0.0492 +0 0.0347 +0 0.3612 +0 0.5860 +0 0.3228 +0 0.0694 +0 0.0323 +0 0.2462 +0 0.0564 +0 0.4317 +1 0.8434 +0 0.1135 +0 0.1194 +0 0.0593 +0 0.2156 +0 0.0837 +0 0.0769 +0 0.0570 +0 0.0620 +0 0.1350 +0 0.1242 +0 0.1158 +0 0.0833 +0 0.0960 +0 0.0866 +0 0.1240 +0 0.0710 +0 0.2413 +0 0.7066 +0 0.1540 +0 0.0899 +0 0.1168 +0 0.0709 +0 0.0546 +0 0.5810 +0 0.0662 +0 0.7418 +0 0.2868 +0 0.0759 +0 0.0728 +0 0.0649 +0 0.1082 +0 0.1549 +0 0.0810 +0 0.2184 +0 0.0940 +0 0.0715 +0 0.1385 +0 0.1074 +0 0.0970 +0 0.1380 +0 0.0664 +0 0.7374 +0 0.1059 +0 0.0970 +0 0.3827 +0 0.0611 +0 0.0450 +0 0.1670 +0 0.1037 +0 0.0993 +0 0.0833 +0 0.0814 +0 0.3755 +0 0.0857 +0 0.1294 +0 0.1021 +0 0.0544 +0 0.1919 +0 0.0511 +0 0.1478 +0 0.1385 +0 0.0733 +0 0.1684 +0 0.0912 +0 0.0364 +0 0.2004 +0 0.0933 +0 0.1296 +0 0.1717 +0 0.2046 +0 0.0445 +0 0.0975 +0 0.3305 +0 0.2403 +0 0.0408 +0 0.2349 +0 0.1771 +1 0.8347 +0 0.4442 +0 0.0951 +0 0.1392 +0 0.0731 +0 0.2772 +0 0.2575 +0 0.1903 +0 0.0761 +0 0.0646 +0 0.1056 +0 0.1388 +0 0.2324 +0 0.1424 +0 0.1011 +0 0.1023 +0 0.1026 +0 0.0456 +0 0.1010 +0 0.1191 +0 0.0760 +0 0.0481 +0 0.1337 +0 0.1723 +0 0.1209 +0 0.1158 +0 0.2895 +0 0.0769 +0 0.0634 +0 0.1104 +0 0.1833 +0 0.1596 +0 0.1212 +0 0.1024 +0 0.6886 +0 0.1491 +0 0.0474 +0 0.0991 +0 0.1239 +0 0.1089 +0 0.0587 +0 0.1596 +0 0.1488 +0 0.0709 +0 0.2185 +0 0.1166 +0 0.0480 +0 0.0659 +0 0.0630 +0 0.1312 +0 0.0845 +0 0.0881 +0 0.0510 +0 0.0641 +0 0.1084 +0 0.1288 +0 0.3717 +0 0.0930 +0 0.0685 +0 0.0741 +0 0.0794 +0 0.0467 +0 0.0605 +0 0.0713 +0 0.0597 +0 0.1729 +0 0.1048 +0 0.1167 +0 0.1528 +0 0.1704 +0 0.0868 +0 0.1682 +0 0.1815 +0 0.1169 +0 0.0913 +0 0.0882 +0 0.1068 +0 0.0804 +0 0.0673 +0 0.0359 +0 0.0631 +0 0.0575 +0 0.2104 +0 0.0912 +0 0.6014 +0 0.0666 +0 0.2567 +0 0.0481 +0 0.2215 +0 0.1687 +0 0.1387 +0 0.5154 +0 0.0834 +0 0.0886 +0 0.1332 +0 0.0844 +0 0.1529 +0 0.1478 +0 0.0629 +0 0.0930 +0 0.0542 +0 0.1029 +0 0.0481 +0 0.0854 +0 0.2171 +0 0.0803 +0 0.2983 +0 0.0454 +0 0.2662 +0 0.2438 +0 0.0856 +0 0.0327 +0 0.1157 +0 0.0917 +0 0.0995 +0 0.1095 +0 0.0791 +0 0.0715 +0 0.1475 +0 0.0784 +0 0.0766 +0 0.0984 +0 0.2047 +0 0.6333 +0 0.2331 +0 0.0656 +0 0.0504 +0 0.2032 +0 0.0940 +0 0.1001 +0 0.2720 +0 0.0850 +0 0.1609 +0 0.1706 +0 0.1910 +0 0.1302 +0 0.0847 +0 0.0743 +0 0.2637 +0 0.1190 +0 0.1013 +0 0.1393 +0 0.0942 +0 0.0960 +0 0.1613 +0 0.1974 +0 0.0657 +0 0.2216 +0 0.1980 +0 0.1992 +0 0.0554 +0 0.1466 +0 0.0819 +0 0.1297 +0 0.0690 +1 0.7789 +0 0.4608 +0 0.1418 +0 0.0859 +0 0.0969 +0 0.0946 +0 0.0621 +1 0.8582 +0 0.4959 +0 0.0554 +0 0.0996 +0 0.1111 +0 0.0788 +0 0.0323 +0 0.1869 +0 0.0700 +0 0.2671 +1 0.8258 +0 0.0740 +0 0.1123 +0 0.1239 +0 0.0681 +0 0.0988 +0 0.2536 +0 0.2993 +0 0.7261 +0 0.1652 +0 0.0713 +0 0.0367 +0 0.1386 +0 0.1442 +0 0.1249 +0 0.0645 +0 0.1734 +0 0.1051 +0 0.0803 +0 0.1210 +0 0.0855 +0 0.0861 +0 0.0680 +0 0.0744 +0 0.0896 +0 0.0893 +0 0.1170 +0 0.1474 +0 0.1405 +0 0.0530 +0 0.0944 +0 0.2790 +0 0.2516 +0 0.1091 +0 0.0625 +0 0.0585 +0 0.3519 +0 0.0852 +0 0.0844 +0 0.0402 +0 0.0703 +0 0.0545 +0 0.1362 +0 0.0350 +0 0.3040 +0 0.0706 +0 0.0503 +0 0.4122 +0 0.2827 +0 0.0758 +0 0.0928 +0 0.1758 +0 0.0826 +0 0.1440 +0 0.2082 +0 0.2793 +0 0.0580 +1 0.8146 +0 0.0445 +0 0.1279 +0 0.0661 +0 0.2728 +0 0.0660 +0 0.0904 +0 0.0740 +0 0.0824 +0 0.1662 +0 0.5433 +0 0.0422 +0 0.1918 +0 0.0510 +0 0.1228 +0 0.1238 +0 0.2210 +0 0.2006 +0 0.1175 +0 0.0597 +0 0.0974 +0 0.3365 +0 0.5080 +0 0.3031 +0 0.2267 +0 0.0560 +0 0.0811 +0 0.0921 +0 0.1734 +0 0.0638 +0 0.0632 +0 0.0577 +0 0.0764 +0 0.0780 +0 0.2957 +0 0.0558 +0 0.0477 +0 0.0570 +0 0.4369 +0 0.2887 +0 0.0629 +0 0.0862 +0 0.1842 +0 0.2542 +0 0.7187 +0 0.0625 +0 0.0897 +0 0.2663 +0 0.0471 +0 0.0769 +0 0.1443 +0 0.1421 +0 0.1119 +0 0.0932 +0 0.0562 +0 0.1023 +0 0.0723 +0 0.0873 +0 0.1291 +0 0.1006 +0 0.0583 +0 0.1668 +0 0.1997 +0 0.1333 +0 0.1635 +0 0.1099 +0 0.1139 +0 0.0729 +0 0.0882 +0 0.3513 +0 0.1661 +0 0.1123 +0 0.0834 +0 0.1976 +0 0.1177 +0 0.0440 +0 0.1499 +0 0.0609 +0 0.0517 +0 0.0779 +0 0.1311 +0 0.1661 +0 0.1062 +0 0.1521 +0 0.1470 +0 0.2819 +0 0.2893 +0 0.0559 +0 0.1109 +0 0.0913 +0 0.0674 +0 0.1298 +0 0.0584 +0 0.0875 +0 0.1549 +0 0.1224 +0 0.0802 +0 0.0866 +0 0.0824 +0 0.0757 +0 0.0745 +0 0.1578 +0 0.0729 +0 0.0809 +0 0.1171 +0 0.0691 +0 0.1128 +0 0.1630 +0 0.2228 +0 0.1621 +0 0.0530 +0 0.1296 +0 0.2185 +0 0.0563 +0 0.0940 +0 0.0732 +0 0.1814 +0 0.1328 +0 0.0472 +0 0.1454 +0 0.2625 +0 0.1518 +0 0.1424 +0 0.0310 +0 0.1964 +0 0.2136 +0 0.0469 +0 0.1817 +0 0.2899 +1 0.8172 +0 0.1135 +0 0.5082 +0 0.0961 +0 0.1395 +0 0.2000 +0 0.0650 +0 0.0590 +0 0.0662 +0 0.1061 +0 0.1676 +0 0.3123 +0 0.0757 +0 0.2012 +0 0.0634 +0 0.0641 +0 0.1181 +0 0.2977 +0 0.1017 +0 0.0816 +0 0.1021 +0 0.3251 +0 0.0544 +0 0.0780 +0 0.1671 +0 0.0416 +0 0.0707 +0 0.0994 +0 0.2713 +0 0.0659 +0 0.3453 +0 0.1496 +0 0.0942 +0 0.0991 +0 0.0658 +0 0.0800 +0 0.0333 +0 0.1436 +0 0.0698 +0 0.0475 +0 0.0746 +0 0.0847 +0 0.0658 +0 0.2190 +0 0.6778 +0 0.0592 +0 0.1869 +0 0.0899 +0 0.1319 +0 0.1425 +0 0.1053 +0 0.1011 +0 0.0920 +0 0.1281 +0 0.0525 +0 0.0563 +0 0.1077 +0 0.1176 +0 0.0381 +0 0.0694 +0 0.2723 +0 0.1201 +0 0.0635 +0 0.0526 +0 0.1031 +0 0.0331 +0 0.1005 +0 0.0746 +0 0.2532 +0 0.1571 +0 0.0856 +0 0.0879 +0 0.1372 +0 0.1246 +0 0.0520 +0 0.1466 +0 0.1177 +0 0.0494 +0 0.1112 +0 0.1300 +0 0.1953 +0 0.0582 +1 0.8082 +0 0.3178 +0 0.0694 +0 0.1500 +0 0.1111 +0 0.1638 +0 0.0884 +0 0.2272 +0 0.3037 +0 0.7493 +0 0.0458 +0 0.2867 +0 0.0611 +0 0.1090 +0 0.1251 +0 0.0415 +0 0.0774 +0 0.1274 +0 0.1136 +0 0.0692 +0 0.2341 +0 0.2147 +0 0.0818 +1 0.7974 +0 0.1009 +0 0.0983 +1 0.7886 +0 0.1196 +0 0.0356 +0 0.0504 +0 0.0699 +0 0.2535 +1 0.7513 +0 0.1936 +0 0.0446 +0 0.1068 +0 0.0798 +0 0.1431 +0 0.0908 +0 0.7086 +0 0.0592 +0 0.1136 +0 0.2397 +0 0.0704 +0 0.1484 +0 0.1801 +0 0.3732 +0 0.0629 +0 0.3211 +1 0.7948 +0 0.1049 +0 0.0876 +0 0.0846 +0 0.0380 +0 0.0903 +0 0.1299 +0 0.2292 +0 0.4295 +0 0.0959 +0 0.0891 +0 0.0409 +0 0.0497 +0 0.0875 +0 0.6878 +0 0.0544 +0 0.1045 +0 0.1622 +0 0.1949 +0 0.0934 +0 0.0411 +0 0.0601 +0 0.1749 +0 0.1143 +0 0.5217 +0 0.0372 +0 0.1248 +0 0.0868 +0 0.1019 +0 0.0916 +0 0.0544 +0 0.1003 +0 0.1614 +0 0.0825 +0 0.0607 +0 0.3745 +0 0.0606 +0 0.1057 +0 0.0681 +0 0.0559 +0 0.1757 +0 0.1007 +0 0.0961 +0 0.0326 +0 0.1140 +0 0.1040 +0 0.1100 +0 0.1084 +0 0.1608 +0 0.1581 +0 0.0830 +0 0.2706 +0 0.0920 +0 0.0913 +0 0.1723 +0 0.0385 +0 0.2515 +0 0.1894 +0 0.1013 +0 0.0738 +0 0.0814 +0 0.0951 +0 0.0689 +0 0.0988 +0 0.0953 +0 0.1688 +0 0.1092 +0 0.1258 +0 0.6727 +0 0.1113 +0 0.2119 +0 0.0796 +0 0.1359 +0 0.0533 +0 0.2655 +0 0.0832 +0 0.2885 +0 0.0488 +0 0.0414 +0 0.1114 +0 0.1202 +0 0.3466 +0 0.1074 +0 0.1182 +0 0.0812 +0 0.0679 +0 0.0778 +0 0.1062 +0 0.1208 +0 0.1352 +0 0.0568 +0 0.1733 +0 0.0635 +0 0.0600 +0 0.1214 +0 0.1194 +0 0.2044 +0 0.0529 +0 0.2344 +0 0.0676 +0 0.1704 +0 0.1053 +0 0.0857 +0 0.6464 +0 0.0530 +0 0.0857 +0 0.1776 +0 0.0808 +0 0.1090 +0 0.0756 +0 0.1655 +0 0.0731 +0 0.0751 +0 0.0465 +0 0.4860 +0 0.1571 +0 0.5167 +0 0.1018 +0 0.1554 +1 0.7523 +0 0.1675 +0 0.0350 +0 0.1137 +0 0.0819 +0 0.0482 +0 0.7368 +0 0.0734 +0 0.0592 +0 0.0804 +0 0.0442 +0 0.0869 +0 0.0701 +0 0.4082 +0 0.1504 +0 0.1567 +0 0.3064 +0 0.0544 +0 0.0552 +0 0.0605 +0 0.4488 +0 0.0551 +0 0.2759 +0 0.3922 +0 0.0644 +0 0.4299 +0 0.0639 +0 0.1390 +0 0.1820 +1 0.8555 +1 0.7613 +0 0.0829 +0 0.2063 +0 0.3326 +0 0.0810 +0 0.0737 +0 0.1131 +0 0.0889 +0 0.0717 +0 0.0708 +0 0.1431 +0 0.1237 +0 0.0333 +0 0.0494 +0 0.1194 +0 0.0871 +1 0.7515 +0 0.0959 +0 0.0685 +0 0.3722 +0 0.1093 +0 0.0582 +0 0.0713 +1 0.8402 +0 0.0427 +0 0.3302 +0 0.2240 +0 0.0412 +0 0.0530 +0 0.1369 +0 0.1686 +0 0.1631 +0 0.0546 +0 0.6719 +0 0.0462 +0 0.1276 +0 0.1532 +0 0.3741 +0 0.0854 +0 0.0765 +0 0.1718 +0 0.1310 +0 0.1263 +0 0.0830 +0 0.1196 +0 0.1293 +0 0.1616 +0 0.1223 +0 0.1501 +0 0.0730 +0 0.1030 +0 0.7121 +0 0.2303 +0 0.2612 +1 0.8021 +0 0.0470 +0 0.1138 +0 0.0617 +0 0.2121 +0 0.3587 +0 0.1449 +1 0.7963 +0 0.1627 +0 0.0527 +1 0.7663 +0 0.0450 +0 0.1122 +0 0.0698 +0 0.3709 +0 0.2501 +0 0.1256 +0 0.0598 +0 0.0584 +0 0.4092 +0 0.1686 +0 0.1327 +0 0.1613 +0 0.1176 +0 0.1314 +0 0.1623 +0 0.0856 +0 0.1393 +0 0.0788 +0 0.1566 +0 0.1051 +0 0.0583 +0 0.1535 +0 0.0601 +0 0.2068 +0 0.0684 +0 0.0897 +0 0.0763 +0 0.0671 +0 0.2405 +0 0.0711 +0 0.0996 +0 0.1529 +0 0.1497 +0 0.1107 +0 0.1014 +0 0.0950 +0 0.0935 +0 0.1113 +0 0.1251 +0 0.2773 +0 0.1023 +0 0.4863 +0 0.1462 +0 0.1605 +0 0.0661 +0 0.0943 +0 0.0562 +0 0.0655 +0 0.2938 +0 0.1049 +0 0.0605 +0 0.1981 +0 0.1179 +0 0.6216 +0 0.0900 +0 0.0451 +0 0.1606 +0 0.0410 +0 0.0899 +0 0.1492 +0 0.1488 +0 0.0431 +0 0.4392 +0 0.4581 +0 0.0435 +0 0.0600 +0 0.1134 +0 0.0676 +0 0.1064 +0 0.0378 +0 0.1473 +0 0.0930 +0 0.0727 +0 0.0993 +0 0.2582 +0 0.2811 +0 0.0903 +0 0.0955 +0 0.0872 +0 0.5915 +0 0.0872 +0 0.0818 +0 0.1527 +0 0.0737 +0 0.1301 +0 0.5806 +0 0.1095 +0 0.0603 +0 0.0538 +1 0.3791 +0 0.0695 +0 0.1133 +0 0.0696 +0 0.0967 +1 0.8708 +0 0.0907 +0 0.0719 +0 0.0734 +0 0.0649 +0 0.0816 +0 0.0652 +0 0.1761 +0 0.3374 +0 0.0509 +0 0.0727 +0 0.1236 +0 0.3589 +0 0.6010 +0 0.0606 +0 0.0681 +0 0.3981 +0 0.1939 +0 0.1072 +0 0.0925 +0 0.0899 +0 0.0679 +0 0.0821 +0 0.6691 +0 0.5196 +0 0.0864 +0 0.0736 +0 0.0756 +0 0.2037 +0 0.3171 +0 0.0884 +0 0.1009 +0 0.0939 +0 0.1961 +0 0.3536 +0 0.1392 +0 0.0887 +0 0.1180 +0 0.1907 +0 0.1066 +0 0.0922 +0 0.5145 +0 0.0804 +0 0.1995 +0 0.0516 +0 0.2866 +0 0.0924 +0 0.1403 +0 0.0892 +0 0.1000 +0 0.2088 +0 0.0538 +0 0.1012 +0 0.0696 +0 0.0676 +0 0.1559 +1 0.7701 +0 0.0549 +0 0.0657 +0 0.1597 +0 0.0819 +0 0.0927 +0 0.1746 +1 0.7779 +0 0.0483 +0 0.0870 +0 0.1251 +0 0.0901 +0 0.0498 +0 0.0833 +0 0.1224 +0 0.1211 +0 0.0564 +0 0.0425 +0 0.1722 +0 0.1422 +0 0.1444 +0 0.0994 +0 0.0788 +1 0.8167 +0 0.0753 +0 0.1183 +0 0.0386 +0 0.0905 +0 0.2026 +0 0.5686 +0 0.1148 +0 0.1015 +0 0.0402 +0 0.0830 +0 0.2560 +0 0.1801 +0 0.2742 +0 0.1048 +0 0.0872 +0 0.1330 +0 0.0489 +0 0.1277 +0 0.1188 +0 0.2306 +0 0.1677 +0 0.6444 +0 0.1316 +0 0.1596 +0 0.0981 +0 0.1162 +0 0.1853 +0 0.0738 +0 0.1912 +0 0.0568 +0 0.0987 +0 0.1304 +0 0.0835 +0 0.2154 +0 0.0894 +0 0.1087 +0 0.1197 +0 0.2000 +0 0.1554 +0 0.0536 +0 0.0968 +0 0.2088 +0 0.2585 +0 0.5953 +0 0.0970 +0 0.0618 +0 0.0630 +0 0.1149 +0 0.0549 +0 0.0768 +0 0.1353 +0 0.1147 +0 0.0611 +0 0.1623 +0 0.0990 +0 0.0826 +1 0.8006 +0 0.0925 +0 0.0470 +0 0.3306 +0 0.1359 +0 0.0954 +0 0.0436 +0 0.2015 +0 0.1207 +0 0.0621 +0 0.0964 +0 0.0311 +0 0.0588 +0 0.1860 +0 0.0597 +0 0.1026 +0 0.0798 +0 0.2313 +0 0.1676 +0 0.0969 +0 0.1032 +0 0.1951 +0 0.1609 +0 0.3531 +0 0.3637 +0 0.1113 +0 0.4547 +0 0.4974 +0 0.0923 +0 0.2859 +0 0.0662 +0 0.0846 +0 0.0733 +0 0.1993 +0 0.1037 +0 0.1824 +0 0.0378 +0 0.0793 +0 0.0653 +0 0.1565 +0 0.3723 +0 0.0969 +0 0.0687 +0 0.1073 +0 0.0834 +0 0.0464 +0 0.0908 +0 0.0390 +0 0.1560 +0 0.0565 +0 0.0578 +0 0.1953 +0 0.1427 +0 0.0419 +0 0.1302 +0 0.1075 +0 0.2976 +0 0.0650 +0 0.0982 +0 0.1461 +0 0.0563 +0 0.0932 +0 0.0897 +0 0.5661 +0 0.0596 +0 0.0915 +0 0.3518 +0 0.0883 +0 0.1355 +0 0.0379 +0 0.1014 +0 0.0972 +0 0.1849 +0 0.1241 +0 0.0527 +0 0.0557 +0 0.1174 +0 0.0849 +0 0.0909 +0 0.0703 +0 0.1293 +0 0.0981 +0 0.0885 +0 0.3339 +0 0.1009 +0 0.0889 +0 0.0645 +0 0.0920 +0 0.5153 +0 0.0632 +0 0.1633 +0 0.0772 +0 0.1545 +0 0.0725 +0 0.0996 +0 0.0394 +0 0.0513 +0 0.3221 +0 0.0946 +0 0.1839 +0 0.0690 +0 0.3527 +0 0.1411 +0 0.1093 +0 0.2230 +1 0.7878 +0 0.1028 +0 0.0805 +0 0.0419 +0 0.1501 +0 0.2081 +0 0.0997 +0 0.1668 +0 0.1703 +0 0.1161 +0 0.0810 +0 0.0572 +0 0.3083 +0 0.1276 +0 0.1837 +0 0.0954 +0 0.3988 +0 0.2040 +0 0.0540 +0 0.1234 +0 0.5050 +0 0.1070 +0 0.1170 +0 0.0567 +0 0.0760 +0 0.0716 +0 0.0982 +0 0.1000 +0 0.1036 +0 0.0622 +0 0.2105 +0 0.0322 +0 0.1668 +0 0.0655 +0 0.0979 +0 0.2108 +0 0.2172 +0 0.0623 +0 0.0761 +0 0.1000 +0 0.1045 +0 0.2633 +0 0.0838 +0 0.2923 +0 0.1957 +1 0.7942 +0 0.0756 +0 0.3592 +0 0.0616 +0 0.0580 +0 0.2403 +0 0.1297 +0 0.6924 +0 0.1609 +0 0.1673 +0 0.1293 +0 0.1596 +0 0.0541 +0 0.0877 +0 0.1824 +0 0.0904 +0 0.2110 +0 0.1613 +0 0.1096 +0 0.1631 +0 0.1411 +0 0.0793 +0 0.1127 +0 0.5974 +0 0.2703 +0 0.0933 +0 0.2958 +0 0.0965 +0 0.0939 +0 0.0880 +0 0.1877 +0 0.3552 +0 0.3786 +1 0.7923 +0 0.0906 +0 0.0846 +0 0.1183 +0 0.0804 +0 0.0354 +0 0.0390 +0 0.2612 +0 0.0765 +1 0.7771 +0 0.0579 +0 0.1665 +0 0.1255 +0 0.2503 +0 0.2731 +0 0.0537 +0 0.0959 +0 0.0668 +0 0.0809 +0 0.0733 +0 0.0898 +0 0.1772 +0 0.0684 +0 0.0594 +0 0.0824 +0 0.2261 +0 0.0479 +0 0.0504 +0 0.0616 +0 0.1139 +0 0.1697 +0 0.1628 +0 0.0931 +0 0.0639 +0 0.0471 +0 0.0998 +0 0.0709 +0 0.1022 +0 0.2065 +0 0.1868 +0 0.1075 +0 0.0430 +0 0.1233 +0 0.0547 +0 0.1359 +0 0.1202 +0 0.2140 +0 0.1936 +0 0.0727 +0 0.1566 +0 0.1900 +0 0.2243 +0 0.0921 +0 0.0643 +0 0.0850 +0 0.1302 +0 0.0720 +0 0.0955 +0 0.1248 +0 0.0858 +0 0.1534 +0 0.1601 +0 0.1055 +0 0.0398 +0 0.1513 +0 0.1053 +0 0.0625 +0 0.3566 +0 0.0524 +1 0.8034 +0 0.0918 +0 0.1247 +0 0.3308 +0 0.2063 +0 0.0407 +0 0.0698 +0 0.1324 +0 0.0896 +0 0.2177 +0 0.1424 +0 0.0628 +0 0.0484 +0 0.1438 +0 0.0655 +0 0.0545 +0 0.1229 +0 0.0677 +0 0.1309 +0 0.1124 +0 0.2287 +0 0.1344 +0 0.0677 +0 0.1452 +0 0.0412 +0 0.0549 +0 0.0772 +0 0.1055 +0 0.0975 +0 0.1176 +0 0.0807 +0 0.0604 +0 0.1017 +0 0.1112 +0 0.0817 +0 0.0728 +0 0.0317 +0 0.0777 +0 0.1011 +0 0.0915 +0 0.3323 +0 0.0779 +0 0.2031 +0 0.0552 +0 0.0789 +0 0.0719 +0 0.1083 +0 0.2441 +0 0.2469 +0 0.1741 +0 0.0558 +0 0.0531 +0 0.0613 +0 0.0826 +0 0.1313 +0 0.0394 +0 0.1806 +0 0.1112 +0 0.1882 +0 0.0935 +0 0.0655 +0 0.1704 +0 0.1547 +0 0.4899 +1 0.7790 +0 0.2917 +0 0.1998 +0 0.1207 +0 0.1155 +1 0.7691 +0 0.1162 +0 0.1902 +0 0.0817 +0 0.1235 +0 0.0750 +0 0.0653 +0 0.0810 +0 0.3112 +0 0.0615 +0 0.1171 +0 0.1721 +0 0.0815 +0 0.0974 +0 0.0827 +0 0.1342 +0 0.1056 +0 0.1224 +0 0.2172 +0 0.0367 +0 0.1180 +0 0.1074 +0 0.0743 +0 0.2068 +0 0.1607 +0 0.0697 +0 0.1692 +0 0.7236 +0 0.3049 +0 0.1230 +0 0.1127 +0 0.1574 +0 0.1273 +0 0.0646 +0 0.1021 +0 0.0541 +0 0.1038 +0 0.1154 +0 0.0954 +0 0.0699 +0 0.0748 +0 0.0392 +0 0.0876 +0 0.0658 +0 0.1412 +0 0.0475 +0 0.1368 +0 0.5009 +0 0.3667 +0 0.0784 +0 0.1921 +0 0.0625 +0 0.1270 +0 0.4223 +0 0.0871 +0 0.2374 +0 0.3165 +0 0.0728 +0 0.1615 +0 0.0675 +0 0.1005 +0 0.1089 +0 0.2450 +0 0.4083 +0 0.1493 +0 0.7077 +0 0.1238 +0 0.1383 +0 0.0934 +0 0.1548 +0 0.1903 +0 0.6312 +0 0.1375 +0 0.1278 +0 0.1603 +0 0.1111 +0 0.0655 +0 0.2107 +0 0.0852 +0 0.0722 +0 0.1868 +0 0.2030 +0 0.5534 +0 0.0612 +0 0.0475 +0 0.1055 +0 0.0531 +0 0.0583 +0 0.0765 +1 0.7768 +0 0.0534 +0 0.0592 +0 0.1255 +0 0.4010 +0 0.0997 +0 0.0729 +0 0.0581 +0 0.1781 +0 0.1935 +0 0.0561 +0 0.6892 +0 0.1488 +0 0.1926 +0 0.0901 +0 0.0765 +0 0.0717 +0 0.0774 +0 0.1685 +0 0.1402 +0 0.1982 +0 0.1071 +0 0.1069 +0 0.0867 +0 0.0728 +0 0.0375 +0 0.1082 +0 0.0655 +0 0.2064 +0 0.0519 +0 0.1838 +0 0.2466 +0 0.0693 +0 0.0711 +0 0.0558 +0 0.1604 +0 0.5730 +0 0.1384 +0 0.0694 +0 0.0734 +0 0.0858 +0 0.0415 +0 0.0942 +0 0.0363 +0 0.0907 +0 0.0376 +0 0.0612 +0 0.0510 +0 0.1299 +0 0.7194 +0 0.1473 +0 0.0864 +0 0.0603 +0 0.1702 +0 0.0723 +0 0.0626 +0 0.1735 +0 0.0771 +0 0.1100 +0 0.0839 +0 0.1606 +0 0.0667 +0 0.1181 +0 0.0922 +0 0.2412 +0 0.5255 +0 0.1478 +0 0.1763 +0 0.0886 +0 0.0870 +0 0.1875 +0 0.0526 +0 0.2248 +0 0.2872 +0 0.1446 +0 0.0646 +0 0.1433 +0 0.3230 +0 0.6246 +0 0.1607 +0 0.0695 +0 0.0559 +0 0.1912 +1 0.8136 +0 0.0833 +0 0.0667 +0 0.0790 +0 0.0918 +0 0.1434 +0 0.2527 +0 0.1391 +0 0.3367 +0 0.1575 +0 0.0940 +0 0.1495 +0 0.1180 +0 0.0558 +0 0.2185 +0 0.0902 +0 0.0994 +0 0.7025 +0 0.0769 +0 0.1358 +0 0.1272 +0 0.2065 +0 0.0414 +0 0.1631 +0 0.1195 +0 0.1938 +1 0.8212 +0 0.0626 +0 0.0429 +0 0.0988 +0 0.1384 +0 0.0822 +0 0.0513 +0 0.0985 +0 0.0819 +0 0.0787 +0 0.0915 +0 0.1391 +0 0.0807 +0 0.0914 +0 0.4407 +0 0.1612 +0 0.0535 +0 0.3469 +0 0.0975 +0 0.0694 +0 0.1559 +0 0.4994 +0 0.0727 +1 0.7955 +0 0.1285 +0 0.1743 +0 0.1228 +0 0.0542 +0 0.0993 +0 0.2480 +0 0.0696 +0 0.0730 +0 0.0862 +0 0.0611 +0 0.0791 +0 0.1445 +0 0.1069 +0 0.5297 +0 0.0822 +0 0.0458 +0 0.0826 +0 0.5906 +0 0.0636 +0 0.2013 +0 0.0742 +0 0.0814 +0 0.2216 +0 0.0919 +0 0.1379 +0 0.0740 +0 0.2833 +0 0.2633 +0 0.1381 +0 0.1278 +0 0.1133 +0 0.0567 +0 0.2237 +0 0.0871 +0 0.0776 +0 0.1251 +0 0.1320 +0 0.0806 +0 0.2089 +0 0.3764 +0 0.0584 +0 0.0956 +0 0.2277 +0 0.1315 +0 0.0741 +0 0.1216 +0 0.1070 +0 0.0344 +0 0.1426 +0 0.1106 +0 0.3691 +0 0.0993 +0 0.1811 +0 0.1103 +0 0.0456 +0 0.2509 +0 0.1678 +0 0.1613 +0 0.3514 +0 0.1797 +0 0.0757 +0 0.0865 +0 0.0772 +0 0.0934 +0 0.0842 +0 0.0828 +0 0.1861 +0 0.0772 +0 0.1543 +0 0.2393 +0 0.1545 +0 0.0356 +0 0.0813 +0 0.1695 +0 0.0699 +0 0.1453 +0 0.1928 +0 0.0529 +0 0.0437 +0 0.2677 +0 0.0932 +0 0.0460 +0 0.1659 +0 0.1254 +0 0.0769 +0 0.0401 +0 0.1128 +0 0.1983 +0 0.1099 +0 0.0835 +0 0.1402 +0 0.2056 +0 0.1073 +0 0.0506 +0 0.0532 +0 0.1454 +0 0.1271 +0 0.1579 +0 0.0858 +0 0.1855 +0 0.1305 +0 0.1231 +0 0.0654 +0 0.2654 +1 0.8908 +0 0.0679 +0 0.0838 +0 0.1197 +0 0.2464 +0 0.2734 +0 0.0711 +0 0.0571 +0 0.1067 +0 0.1479 +0 0.0535 +0 0.0372 +0 0.0946 +0 0.2421 +0 0.0914 +0 0.0631 +0 0.0532 +0 0.1520 +0 0.1718 +0 0.1061 +0 0.0918 +0 0.0929 +0 0.1463 +0 0.2634 +0 0.0975 +0 0.1408 +0 0.1571 +0 0.1987 +0 0.0837 +0 0.0800 +0 0.0969 +0 0.1176 +0 0.3672 +0 0.1941 +0 0.1764 +0 0.1093 +0 0.2553 +0 0.1425 +0 0.0630 +0 0.1000 +0 0.4912 +0 0.1117 +0 0.1397 +0 0.4705 +0 0.2001 +0 0.0624 +0 0.2684 +0 0.1393 +0 0.0598 +0 0.1729 +0 0.0687 +0 0.0471 +0 0.0509 +0 0.2090 +0 0.1166 +0 0.1292 +0 0.0632 +0 0.0760 +0 0.0517 +0 0.0968 +0 0.0946 +0 0.1028 +0 0.1748 +0 0.1211 +0 0.0343 +0 0.1962 +0 0.0823 +0 0.1339 +0 0.1590 +0 0.0845 +0 0.1236 +0 0.0836 +0 0.2707 +0 0.1542 +0 0.1244 +0 0.1747 +0 0.1658 +0 0.2011 +0 0.0679 +0 0.0961 +0 0.3121 +0 0.2112 +0 0.0352 +0 0.1334 +0 0.0849 +0 0.0670 +0 0.1089 +0 0.1034 +0 0.1423 +0 0.1090 +0 0.0515 +0 0.1303 +0 0.0766 +0 0.2379 +0 0.0708 +0 0.1980 +0 0.2447 +0 0.0598 +0 0.1187 +0 0.6706 +0 0.2027 +0 0.1864 +0 0.1108 +0 0.1830 +0 0.2916 +0 0.1540 +0 0.1281 +0 0.1953 +0 0.1109 +0 0.0686 +0 0.1015 +0 0.1224 +0 0.0581 +0 0.2572 +0 0.1279 +0 0.0789 +0 0.0988 +0 0.1145 +0 0.0935 +0 0.4727 +0 0.0774 +0 0.2050 +0 0.2337 +0 0.0868 +0 0.0611 +0 0.0721 +0 0.1266 +0 0.1686 +0 0.0483 +0 0.1715 +0 0.3027 +0 0.0469 +0 0.0999 +0 0.0508 +0 0.0594 +0 0.1213 +0 0.1685 +0 0.0742 +0 0.2834 +0 0.1003 +0 0.0528 +0 0.0628 +0 0.5068 +0 0.1288 +0 0.1068 +0 0.1079 +0 0.0682 +0 0.1020 +0 0.0897 +0 0.1230 +0 0.1187 +0 0.1220 +0 0.0421 +0 0.0737 +0 0.1289 +0 0.2870 +0 0.0867 +0 0.0590 +0 0.1117 +0 0.0844 +0 0.2216 +0 0.1344 +0 0.2208 +0 0.0740 +0 0.1243 +0 0.1004 +0 0.1043 +0 0.1447 +0 0.0820 +0 0.1351 +0 0.1391 +0 0.0604 +0 0.0505 +0 0.1051 +0 0.1865 +0 0.3795 +0 0.3734 +0 0.0951 +1 0.7911 +0 0.1327 +0 0.1656 +0 0.0822 +0 0.5496 +0 0.3627 +0 0.0492 +0 0.5977 +0 0.0858 +0 0.1089 +0 0.0873 +0 0.0557 +0 0.1242 +0 0.4673 +0 0.0821 +0 0.1436 +0 0.0571 +0 0.1063 +0 0.0953 +0 0.1472 +0 0.0841 +0 0.7306 +0 0.7299 +0 0.1399 +0 0.0987 +0 0.3721 +0 0.4787 +0 0.0864 +0 0.7374 +0 0.1272 +0 0.3267 +0 0.1727 +0 0.0551 +0 0.0800 +0 0.1226 +0 0.0842 +0 0.1152 +0 0.0346 +0 0.1321 +0 0.0406 +0 0.0710 +0 0.2543 +0 0.1128 +0 0.0662 +0 0.1894 +0 0.5185 +0 0.1265 +0 0.0471 +0 0.0854 +0 0.0598 +0 0.1290 +0 0.0585 +0 0.1557 +0 0.0838 +0 0.4362 +0 0.0766 +0 0.3809 +0 0.1128 +0 0.0944 +0 0.1022 +0 0.1905 +0 0.1097 +0 0.0853 +0 0.1619 +0 0.1512 +0 0.1135 +0 0.1058 +0 0.1780 +0 0.0639 +0 0.0462 +0 0.0883 +0 0.1554 +0 0.0475 +0 0.2986 +0 0.4233 +0 0.0652 +0 0.1142 +0 0.1121 +0 0.3057 +0 0.1058 +0 0.0337 +0 0.1278 +0 0.0679 +0 0.0696 +0 0.0534 +0 0.4142 +0 0.0447 +0 0.0380 +0 0.1290 +0 0.0812 +0 0.0440 +0 0.2093 +0 0.2059 +0 0.1434 +0 0.2415 +0 0.1524 +0 0.2135 +0 0.1325 +0 0.2288 +0 0.2107 +0 0.1285 +0 0.0808 +0 0.1612 +0 0.0399 +0 0.1632 +0 0.1020 +0 0.0918 +0 0.1280 +0 0.0777 +0 0.0755 +0 0.1152 +0 0.1989 +0 0.1264 +0 0.2883 +0 0.2618 +0 0.0794 +0 0.0933 +0 0.0381 +0 0.0824 +0 0.1299 +0 0.2736 +0 0.0987 +0 0.0429 +0 0.2424 +0 0.1487 +0 0.1774 +0 0.0491 +0 0.1015 +0 0.0634 +0 0.0955 +0 0.1202 +0 0.1624 +0 0.0462 +0 0.1445 +0 0.1282 +0 0.1411 +0 0.1260 +0 0.0716 +0 0.0624 +0 0.0762 +0 0.3421 +0 0.1486 +0 0.0984 +0 0.1406 +0 0.0821 +0 0.0985 +0 0.0873 +0 0.1670 +0 0.0893 +0 0.0915 +0 0.0734 +0 0.0509 +0 0.0570 +0 0.4658 +0 0.1696 +0 0.0452 +0 0.0969 +0 0.1642 +0 0.1083 +0 0.0742 +0 0.1090 +0 0.0699 +0 0.0364 +0 0.2582 +0 0.1523 +0 0.0830 +0 0.1089 +0 0.0776 +0 0.6092 +0 0.0619 +0 0.2473 +0 0.1247 +1 0.8369 +0 0.2519 +0 0.0769 +0 0.1185 +0 0.0748 +0 0.1196 +0 0.1423 +0 0.1355 +0 0.0662 +0 0.2426 +0 0.1262 +0 0.0507 +0 0.1506 +0 0.1454 +0 0.0775 +0 0.0981 +0 0.2836 +0 0.2089 +0 0.1432 +0 0.1091 +0 0.0662 +0 0.1383 +0 0.0742 +0 0.0838 +0 0.0500 +0 0.1558 +0 0.2376 +0 0.2304 +0 0.1052 +0 0.1123 +1 0.7702 +0 0.0438 +0 0.1278 +0 0.0852 +0 0.1101 +0 0.1075 +0 0.0409 +0 0.1855 +0 0.1241 +0 0.0890 +0 0.1794 +0 0.0929 +0 0.0908 +0 0.0475 +0 0.2659 +0 0.0757 +0 0.0953 +0 0.0660 +0 0.0740 +0 0.1373 +0 0.0521 +0 0.0325 +0 0.1635 +0 0.1448 +0 0.2666 +0 0.1468 +0 0.1218 +0 0.0995 +0 0.0758 +0 0.0812 +0 0.1081 +0 0.0607 +0 0.0731 +0 0.2102 +0 0.3783 +0 0.0463 +0 0.1498 +0 0.0651 +0 0.3240 +0 0.0494 +0 0.0993 +0 0.3420 +0 0.3138 +0 0.1637 +0 0.2741 +0 0.1104 +0 0.0831 +0 0.0881 +0 0.1534 +0 0.1591 +0 0.0657 +0 0.1065 +0 0.1605 +0 0.1247 +0 0.1775 +0 0.2147 +0 0.1281 +0 0.1501 +0 0.0557 +0 0.0591 +0 0.4586 +0 0.1681 +0 0.0612 +1 0.8481 +0 0.0437 +0 0.0943 +0 0.2900 +0 0.1508 +1 0.7762 +1 0.7775 +0 0.1648 +0 0.2717 +0 0.1169 +0 0.2822 +0 0.0295 +0 0.5337 +0 0.1781 +0 0.1136 +0 0.0618 +0 0.4152 +0 0.1011 +0 0.1545 +0 0.3029 +0 0.0533 +0 0.1387 +0 0.0850 +0 0.0947 +0 0.0680 +0 0.0391 +0 0.0392 +0 0.0887 +0 0.1277 +0 0.0628 +0 0.0433 +0 0.0824 +0 0.1330 +0 0.0898 +0 0.1704 +0 0.0862 +0 0.0921 +0 0.0585 +0 0.0827 +0 0.2986 +0 0.2708 +0 0.0499 +1 0.3348 +0 0.0567 +0 0.1042 +0 0.2400 +0 0.0607 +0 0.2062 +0 0.0520 +0 0.1112 +0 0.1723 +0 0.0374 +0 0.3523 +0 0.1523 +0 0.0614 +0 0.3722 +0 0.1157 +0 0.2750 +0 0.1384 +0 0.1362 +0 0.0836 +0 0.1454 +0 0.1104 +0 0.1742 +0 0.1952 +0 0.0681 +0 0.4032 +1 0.7798 +0 0.0918 +0 0.0543 +0 0.0702 +0 0.0877 +0 0.0580 +0 0.1119 +0 0.0982 +0 0.2157 +0 0.1507 +0 0.1684 +0 0.1796 +0 0.1844 +0 0.0761 +0 0.0520 +0 0.5057 +0 0.0745 +0 0.1820 +0 0.0527 +0 0.2040 +0 0.0608 +0 0.1602 +0 0.2169 +0 0.2529 +0 0.0415 +0 0.1808 +0 0.0680 +0 0.0548 +0 0.2152 +0 0.0817 +0 0.0881 +0 0.0696 +0 0.1459 +0 0.0523 +0 0.0754 +0 0.0855 +0 0.1245 +0 0.1934 +0 0.2242 +0 0.0756 +0 0.0709 +0 0.0848 +0 0.1506 +0 0.2750 +0 0.2447 +0 0.0976 +0 0.2750 +0 0.3498 +0 0.0655 +0 0.1550 +0 0.0900 +0 0.1277 +0 0.0409 +0 0.1003 +0 0.1471 +0 0.1401 +0 0.1445 +0 0.1060 +0 0.0873 +0 0.1777 +0 0.0796 +0 0.0671 +0 0.0803 +0 0.0633 +0 0.7248 +0 0.1380 +0 0.2675 +0 0.0868 +0 0.2739 +0 0.0713 +0 0.6356 +0 0.2577 +0 0.0488 +1 0.7560 +0 0.1343 +0 0.1343 +0 0.0779 +0 0.0858 +0 0.0598 +0 0.0382 +0 0.0581 +0 0.3837 +0 0.0476 +0 0.2158 +0 0.0949 +0 0.0980 +1 0.7862 +0 0.0898 +0 0.0889 +0 0.0706 +0 0.1642 +0 0.0662 +0 0.4339 +0 0.1167 +0 0.0635 +0 0.0686 +0 0.1532 +0 0.1480 +0 0.1404 +0 0.1341 +0 0.0940 +1 0.8833 +0 0.6665 +0 0.0796 +0 0.5899 +0 0.2942 +0 0.1063 +0 0.1013 +0 0.2196 +0 0.1314 +0 0.2114 +0 0.1073 +0 0.0413 +0 0.1446 +0 0.1377 +0 0.0996 +0 0.1182 +0 0.1336 +0 0.1568 +0 0.0291 +0 0.1371 +0 0.0893 +0 0.1840 +0 0.3152 +0 0.0565 +0 0.2734 +0 0.2590 +0 0.0386 +0 0.0734 +0 0.1121 +0 0.0451 +0 0.0654 +0 0.2094 +0 0.1227 +0 0.1269 +0 0.0535 +1 0.8009 +0 0.1206 +0 0.0797 +0 0.1459 +0 0.0856 +0 0.1010 +0 0.1520 +0 0.1226 +0 0.0762 +0 0.0570 +0 0.7279 +0 0.0733 +0 0.3071 +0 0.0873 +0 0.0973 +0 0.1232 +0 0.0858 +0 0.1877 +0 0.1200 +0 0.1119 +0 0.1936 +0 0.1913 +0 0.2665 +0 0.1559 +0 0.0780 +0 0.1564 +0 0.0673 +0 0.2621 +0 0.0768 +0 0.0945 +0 0.5869 +0 0.0782 +0 0.0689 +0 0.0881 +0 0.1119 +0 0.0720 +0 0.0409 +1 0.8091 +0 0.1503 +0 0.0932 +0 0.1243 +0 0.2648 +0 0.2080 +0 0.4453 +0 0.0652 +0 0.0418 +0 0.1357 +0 0.0484 +0 0.1066 +0 0.2126 +0 0.1499 +0 0.1477 +0 0.0474 +0 0.1267 +0 0.3177 +0 0.0322 +0 0.2446 +0 0.1156 +0 0.1338 +0 0.1527 +0 0.1147 +0 0.6211 +0 0.0874 +1 0.5861 +0 0.0909 +0 0.0635 +0 0.1019 +0 0.0926 +0 0.2084 +0 0.2714 +0 0.1030 +0 0.1158 +0 0.1268 +0 0.2099 +0 0.1017 +0 0.2864 +0 0.1305 +0 0.2173 +0 0.0709 +0 0.2494 +0 0.1690 +0 0.0475 +0 0.0944 +0 0.0432 +1 0.8620 +0 0.0536 +0 0.2047 +0 0.0524 +0 0.2285 +0 0.1859 +0 0.2705 +0 0.0598 +0 0.0922 +0 0.0809 +0 0.2222 +0 0.0896 +0 0.1667 +0 0.0834 +0 0.0837 +1 0.8188 +1 0.7971 +0 0.3675 +0 0.0897 +0 0.2691 +0 0.7446 +0 0.0387 +0 0.1254 +0 0.1259 +0 0.0931 +0 0.0961 +0 0.1288 +0 0.0733 +0 0.1282 +0 0.0808 +0 0.2412 +1 0.8269 +0 0.0946 +0 0.0746 +0 0.1885 +0 0.1659 +0 0.2639 +0 0.3625 +0 0.1918 +0 0.2670 +0 0.0331 +0 0.2790 +0 0.0568 +0 0.3087 +0 0.1368 +0 0.1317 +0 0.1606 +0 0.0531 +0 0.0495 +0 0.2314 +0 0.0692 +0 0.0764 +0 0.1776 +0 0.1830 +0 0.0655 +0 0.1104 +0 0.0551 +0 0.1071 +0 0.4855 +0 0.0782 +0 0.0862 +0 0.1284 +0 0.2353 +0 0.1585 +0 0.1552 +0 0.2119 +0 0.3191 +0 0.1881 +0 0.0634 +0 0.0635 +0 0.0622 +0 0.0823 +0 0.1966 +0 0.0446 +0 0.0559 +0 0.0565 +0 0.0868 +0 0.1400 +0 0.0422 +0 0.0667 +0 0.0645 +0 0.0573 +0 0.1897 +0 0.1048 +0 0.0743 +0 0.4864 +0 0.0770 +0 0.0717 +0 0.1430 +0 0.1085 +0 0.0817 +0 0.3147 +0 0.0519 +0 0.1964 +0 0.0451 +0 0.0364 +0 0.1331 +0 0.7120 +0 0.1357 +0 0.0421 +0 0.1002 +0 0.0491 +0 0.1031 +0 0.2727 +0 0.2386 +0 0.1231 +0 0.2973 +0 0.0638 +0 0.3026 +0 0.1326 +0 0.0625 +0 0.0502 +0 0.0616 +0 0.0918 +0 0.0542 +0 0.1934 +0 0.0906 +0 0.0617 +0 0.2464 +0 0.1015 +0 0.1457 +0 0.1250 +0 0.0928 +0 0.1230 +0 0.1683 +0 0.0963 +0 0.0451 +0 0.0438 +0 0.0795 +0 0.0784 +0 0.1235 +0 0.1094 +0 0.1800 +0 0.2098 +0 0.0884 +0 0.1502 +0 0.0350 +0 0.1577 +0 0.0551 +0 0.2271 +0 0.2578 +0 0.2481 +0 0.0608 +0 0.1202 +0 0.1523 +0 0.0990 +0 0.0792 +0 0.2930 +0 0.3288 +0 0.1250 +0 0.0423 +0 0.1794 +0 0.1259 +0 0.1242 +0 0.2184 +0 0.0834 +0 0.0430 +0 0.0961 +0 0.0572 +0 0.3010 +0 0.1057 +0 0.1261 +0 0.1421 +0 0.1550 +0 0.6497 +0 0.1092 +0 0.1593 +0 0.1158 +0 0.0883 +0 0.1279 +0 0.0580 +0 0.0557 +0 0.0893 +0 0.1115 +0 0.0583 +0 0.2095 +0 0.1270 +0 0.0680 +0 0.1432 +0 0.0955 +0 0.1515 +0 0.0535 +0 0.0639 +0 0.0434 +0 0.1605 +0 0.7207 +0 0.0944 +0 0.2044 +0 0.0643 +0 0.2105 +0 0.1083 +0 0.6689 +0 0.1832 +0 0.4781 +0 0.3705 +0 0.2411 +0 0.0589 +0 0.0841 +0 0.7476 +0 0.0761 +0 0.4126 +0 0.0432 +0 0.0850 +0 0.0841 +0 0.1835 +0 0.0846 +0 0.3460 +0 0.0622 +0 0.0364 +0 0.0430 +0 0.0492 +0 0.1136 +0 0.0701 +0 0.0501 +0 0.0839 +0 0.6162 +0 0.1267 +0 0.0507 +0 0.0453 +0 0.0804 +0 0.1116 +0 0.4093 +0 0.2178 +0 0.1444 +0 0.3548 +0 0.1280 +0 0.2144 +0 0.1627 +0 0.0991 +0 0.1059 +0 0.5651 +0 0.0907 +0 0.0573 +0 0.1631 +0 0.0687 +0 0.0447 +0 0.0958 +0 0.0625 +0 0.1169 +0 0.1250 +0 0.0905 +1 0.8717 +0 0.0685 +0 0.1042 +0 0.0826 +0 0.0866 +0 0.0745 +0 0.2190 +0 0.0643 +0 0.0864 +0 0.0558 +0 0.0684 +0 0.0790 +0 0.1173 +0 0.2048 +0 0.1148 +0 0.3019 +0 0.0534 +0 0.0771 +0 0.0960 +0 0.0860 +0 0.1196 +0 0.0754 +0 0.1232 +0 0.0588 +0 0.2449 +0 0.0441 +0 0.0595 +1 0.8288 +0 0.1922 +0 0.1280 +0 0.0990 +0 0.1883 +0 0.0901 +0 0.2663 +0 0.0861 +0 0.0758 +0 0.1702 +0 0.0950 +0 0.2487 +0 0.1400 +0 0.1239 +0 0.0641 +0 0.2141 +0 0.1286 +0 0.1006 +0 0.0955 +0 0.0436 +0 0.0454 +0 0.1330 +0 0.1030 +0 0.0716 +0 0.1227 +0 0.4524 +0 0.0738 +0 0.0578 +0 0.0733 +0 0.2676 +0 0.3348 +0 0.0685 +0 0.4118 +0 0.0685 +0 0.1939 +0 0.1158 +0 0.2736 +0 0.0466 +0 0.0783 +0 0.0775 +0 0.2936 +0 0.0496 +0 0.2675 +0 0.1751 +0 0.0506 +0 0.2400 +0 0.1251 +0 0.0923 +0 0.2842 +0 0.1602 +0 0.2949 +0 0.2080 +0 0.0432 +0 0.0998 +0 0.0581 +0 0.1421 +0 0.0528 +0 0.1977 +0 0.3277 +0 0.0821 +0 0.6979 +0 0.0804 +0 0.1246 +0 0.1661 +0 0.1496 +0 0.1243 +0 0.0787 +0 0.1469 +0 0.0991 +0 0.1514 +0 0.0980 +0 0.0807 +0 0.1372 +0 0.1056 +0 0.1490 +0 0.0736 +0 0.1910 +0 0.0822 +0 0.1564 +0 0.0416 +0 0.1017 +0 0.2236 +0 0.0580 +0 0.2111 +0 0.0765 +0 0.0801 +0 0.0903 +0 0.0578 +0 0.3344 +0 0.6926 +0 0.6315 +0 0.4277 +0 0.0374 +0 0.3059 +0 0.1269 +0 0.1954 +0 0.1678 +0 0.2168 +0 0.1014 +0 0.1362 +0 0.0963 +0 0.1596 +0 0.1290 +0 0.1777 +0 0.4110 +0 0.1706 +0 0.6565 +1 0.7840 +0 0.0730 +0 0.1019 +0 0.1168 +0 0.0976 +1 0.8715 +0 0.0504 +0 0.0853 +0 0.1042 +0 0.4202 +0 0.0731 +0 0.2460 +0 0.0810 +0 0.3932 +0 0.1279 +0 0.1630 +0 0.1436 +0 0.0892 +0 0.0968 +0 0.0755 +0 0.0899 +0 0.1987 +0 0.0468 +0 0.3273 +0 0.1091 +0 0.0718 +0 0.1351 +0 0.0900 +0 0.0961 +0 0.0883 +0 0.0947 +0 0.0481 +0 0.0805 +0 0.1290 +0 0.1727 +0 0.1967 +0 0.4059 +0 0.0798 +0 0.1445 +0 0.1143 +0 0.1085 +0 0.1089 +0 0.1560 +0 0.1910 +0 0.6515 +0 0.1470 +0 0.1671 +0 0.1489 +0 0.1578 +0 0.0841 +0 0.0844 +0 0.1516 +0 0.0385 +0 0.1079 +0 0.0650 +0 0.2251 +0 0.1130 +0 0.0919 +0 0.0494 +0 0.0811 +0 0.1870 +0 0.1113 +0 0.1112 +0 0.1866 +0 0.1209 +0 0.0698 +0 0.0993 +0 0.2437 +0 0.2110 +0 0.1585 +0 0.1061 +0 0.2122 +0 0.0763 +0 0.0956 +0 0.1450 +0 0.0589 +0 0.3763 +0 0.1357 +0 0.1533 +0 0.0628 +0 0.1876 +0 0.0573 +0 0.1167 +0 0.0895 +0 0.1831 +0 0.0630 +0 0.0676 +0 0.1037 +0 0.0767 +0 0.0863 +0 0.4454 +0 0.1317 +0 0.0704 +0 0.0929 +0 0.1140 +0 0.0690 +0 0.2223 +0 0.1723 +0 0.0579 +0 0.1597 +0 0.1125 +0 0.1652 +0 0.1972 +0 0.0980 +0 0.1508 +0 0.1586 +0 0.1126 +0 0.1301 +0 0.2045 +0 0.0997 +0 0.1554 +0 0.1509 +0 0.5640 +0 0.0862 +0 0.0508 +0 0.1936 +0 0.0853 +0 0.0759 +0 0.0889 +0 0.0481 +0 0.1706 +0 0.1603 +0 0.2609 +0 0.0574 +0 0.1991 +0 0.0816 +0 0.2200 +0 0.0951 +0 0.1357 +0 0.0870 +0 0.1484 +0 0.0398 +0 0.0745 +0 0.1391 +0 0.1079 +0 0.1721 +0 0.0990 +0 0.0425 +0 0.0781 +0 0.1226 +0 0.1671 +0 0.0935 +0 0.2852 +0 0.7256 +0 0.0644 +0 0.0473 +0 0.0483 +0 0.2775 +0 0.0450 +0 0.1141 +0 0.3806 +0 0.1840 +0 0.3965 +0 0.1570 +0 0.1056 +0 0.0954 +0 0.1244 +1 0.8791 +0 0.1071 +0 0.1330 +0 0.0728 +0 0.0964 +0 0.0506 +0 0.2159 +0 0.1303 +0 0.1202 +0 0.1735 +0 0.0631 +0 0.1848 +0 0.0920 +0 0.1191 +0 0.0971 +0 0.1509 +0 0.1047 +0 0.4109 +0 0.0446 +0 0.0620 +0 0.0682 +0 0.0820 +0 0.0760 +0 0.0912 +0 0.0676 +0 0.1779 +0 0.0798 +0 0.3060 +0 0.0529 +0 0.0642 +0 0.3988 +0 0.0764 +0 0.2926 +0 0.0861 +0 0.1101 +0 0.0690 +0 0.1289 +0 0.1259 +0 0.2275 +0 0.1441 +0 0.1187 +0 0.1536 +0 0.3674 +0 0.1105 +0 0.0925 +0 0.2782 +0 0.0759 +0 0.0779 +0 0.3253 +0 0.0921 +0 0.0577 +0 0.0783 +0 0.0763 +0 0.0408 +0 0.1448 +0 0.0885 +0 0.0415 +0 0.0650 +0 0.1764 +0 0.2748 +0 0.0813 +0 0.0434 +0 0.1021 +0 0.1805 +0 0.0593 +0 0.0930 +0 0.4344 +0 0.0618 +0 0.2309 +0 0.1690 +0 0.1854 +0 0.0389 +0 0.3241 +0 0.0820 +0 0.1473 +0 0.1882 +0 0.2250 +0 0.0943 +0 0.1083 +0 0.0969 +0 0.4010 +1 0.8676 +0 0.0691 +0 0.1988 +0 0.0785 +0 0.1354 +0 0.6420 +0 0.1316 +0 0.1579 +0 0.1661 +0 0.0880 +0 0.0548 +0 0.2560 +0 0.0929 +0 0.0424 +0 0.0773 +0 0.0975 +0 0.4077 +0 0.0935 +0 0.0644 +0 0.0660 +0 0.0541 +0 0.1319 +0 0.0821 +0 0.0464 +0 0.2350 +0 0.1925 +0 0.7413 +0 0.2343 +0 0.0752 +0 0.0943 +0 0.1213 +0 0.1514 +0 0.1490 +0 0.2858 +0 0.0890 +0 0.0820 +0 0.0815 +0 0.5453 +0 0.1436 +0 0.0795 +0 0.0994 +0 0.1863 +0 0.0624 +0 0.0610 +0 0.1306 +0 0.1923 +0 0.2307 +0 0.0592 +1 0.8402 +0 0.1447 +0 0.1860 +0 0.1552 +0 0.2618 +0 0.0702 +0 0.0890 +0 0.0854 +0 0.0541 +0 0.0816 +0 0.1020 +0 0.0571 +0 0.0593 +0 0.1861 +0 0.0769 +0 0.0817 +0 0.0430 +0 0.0486 +0 0.1401 +0 0.1282 +0 0.0599 +0 0.1569 +0 0.1493 +0 0.0602 +0 0.1141 +0 0.2290 +0 0.1072 +0 0.2430 +0 0.1700 +0 0.0472 +0 0.1211 +0 0.0949 +0 0.1029 +0 0.7043 +0 0.1164 +0 0.1468 +0 0.0480 +0 0.0463 +0 0.0947 +0 0.0347 +0 0.1473 +0 0.0548 +0 0.0613 +0 0.2040 +0 0.6940 +0 0.2581 +0 0.0906 +0 0.0497 +0 0.6778 +0 0.0710 +0 0.0737 +0 0.1593 +0 0.1171 +0 0.1244 +0 0.4171 +0 0.0619 +0 0.2873 +0 0.1614 +0 0.4196 +0 0.3190 +0 0.1331 +0 0.1171 +0 0.1158 +0 0.0657 +0 0.1734 +0 0.0825 +0 0.2991 +1 0.8332 +0 0.0740 +0 0.1333 +0 0.4164 +0 0.1708 +0 0.0654 +0 0.0515 +0 0.0965 +0 0.5396 +0 0.0431 +0 0.0732 +0 0.0809 +0 0.1806 +0 0.0546 +0 0.1434 +0 0.1571 +0 0.0943 +0 0.1348 +0 0.0748 +0 0.0892 +0 0.1163 +0 0.1007 +0 0.1857 +0 0.1340 +0 0.2096 +0 0.1433 +0 0.2152 +0 0.1038 +0 0.0831 +0 0.0727 +0 0.1299 +0 0.0925 +0 0.0497 +0 0.2110 +0 0.0843 +0 0.1294 +0 0.2099 +0 0.0711 +0 0.0776 +0 0.0422 +0 0.0813 +0 0.2267 +0 0.2751 +0 0.2270 +0 0.0678 +0 0.1391 +0 0.0453 +0 0.0524 +0 0.1944 +0 0.1125 +0 0.2619 +0 0.0849 +0 0.1021 +0 0.0533 +0 0.3824 +0 0.1641 +0 0.0681 +0 0.1006 +0 0.0595 +0 0.0916 +0 0.1458 +0 0.1521 +0 0.1231 +0 0.0907 +0 0.4215 +0 0.0870 +0 0.0595 +0 0.2455 +0 0.2671 +0 0.2005 +0 0.2656 +0 0.2177 +0 0.0990 +0 0.1340 +0 0.2700 +0 0.0652 +0 0.0580 +0 0.0384 +0 0.0838 +0 0.1454 +0 0.1063 +0 0.1838 +0 0.1809 +0 0.0644 +0 0.0747 +0 0.0472 +0 0.0872 +0 0.1307 +0 0.1494 +0 0.1537 +0 0.0661 +0 0.2449 +0 0.1363 +0 0.3214 +0 0.0753 +0 0.0978 +0 0.2192 +0 0.2101 +0 0.0527 +0 0.1090 +0 0.0567 +0 0.6486 +0 0.1087 +0 0.0831 +0 0.1199 +0 0.2109 +0 0.0610 +0 0.0966 +0 0.0815 +0 0.1870 +0 0.1406 +0 0.0589 +0 0.0985 +0 0.0628 +0 0.1235 +0 0.1861 +0 0.0667 +0 0.3184 +0 0.0879 +0 0.1115 +0 0.1270 +0 0.1226 +0 0.2103 +0 0.0897 +0 0.1267 +0 0.0851 +0 0.0401 +0 0.0691 +0 0.0552 +0 0.1225 +0 0.0725 +0 0.3489 +0 0.0676 +0 0.0347 +0 0.1261 +0 0.0471 +0 0.0544 +0 0.0610 +0 0.0568 +0 0.0734 +0 0.3600 +0 0.1998 +0 0.0833 +0 0.2995 +0 0.0939 +0 0.1015 +0 0.1194 +0 0.0825 +0 0.4003 +0 0.3519 +0 0.0793 +0 0.1441 +0 0.4532 +0 0.4272 +0 0.5690 +0 0.0713 +0 0.0536 +0 0.0531 +0 0.0470 +0 0.0691 +0 0.0618 +0 0.0503 +0 0.2090 +0 0.0724 +0 0.0742 +0 0.1239 +0 0.1823 +0 0.0524 +0 0.0952 +1 0.7529 +0 0.1097 +0 0.5694 +0 0.0720 +0 0.0852 +0 0.1997 +0 0.1576 +0 0.0405 +0 0.1786 +0 0.1225 +0 0.0819 +0 0.0938 +0 0.0735 +0 0.1764 +0 0.1494 +0 0.0490 +0 0.0628 +0 0.1608 +0 0.3384 +0 0.0446 +0 0.1078 +0 0.0768 +0 0.0853 +0 0.1168 +0 0.5355 +0 0.0289 +0 0.1737 +0 0.0397 +0 0.1846 +0 0.0496 +0 0.0344 +0 0.0363 +0 0.0864 +0 0.7150 +0 0.0922 +0 0.0629 +0 0.0596 +0 0.2136 +0 0.0760 +0 0.0537 +0 0.1234 +0 0.0694 +0 0.0923 +0 0.0313 +0 0.0748 +0 0.1394 +0 0.0780 +0 0.0875 +0 0.1767 +0 0.1217 +0 0.0581 +0 0.0683 +0 0.1807 +0 0.1125 +0 0.0586 +0 0.1527 +0 0.3021 +0 0.1050 +0 0.1155 +0 0.0493 +0 0.1333 +0 0.1189 +0 0.1484 +0 0.0549 +0 0.2739 +0 0.0423 +0 0.0720 +0 0.0946 +0 0.0482 +0 0.0602 +0 0.1033 +0 0.1497 +0 0.0658 +0 0.0875 +0 0.0413 +0 0.0605 +0 0.0723 +0 0.0704 +0 0.0740 +0 0.1794 +0 0.0621 +0 0.1203 +0 0.1104 +0 0.0858 +0 0.1736 +0 0.0767 +0 0.2295 +0 0.1025 +0 0.0742 +0 0.1071 +0 0.1317 +0 0.1209 +0 0.1000 +0 0.0891 +0 0.1232 +0 0.0522 +0 0.0978 +0 0.3981 +0 0.0819 +0 0.0773 +0 0.1980 +0 0.1967 +0 0.0890 +0 0.2457 +0 0.0861 +0 0.0962 +0 0.0950 +0 0.0883 +0 0.1856 +0 0.0462 +0 0.0367 +0 0.0970 +0 0.0702 +0 0.1524 +0 0.0742 +0 0.0726 +0 0.0634 +0 0.0811 +0 0.4218 +0 0.1336 +0 0.1110 +0 0.1308 +0 0.1958 +0 0.0681 +0 0.1618 +0 0.2410 +0 0.1261 +0 0.1241 +0 0.3270 +0 0.0419 +0 0.0606 +0 0.0756 +0 0.1254 +0 0.1294 +0 0.0526 +0 0.1084 +0 0.0984 +0 0.1774 +0 0.1698 +0 0.1051 +0 0.2191 +0 0.4311 +1 0.8009 +0 0.0507 +0 0.0584 +0 0.1624 +0 0.0613 +0 0.0960 +0 0.2886 +0 0.2113 +0 0.0540 +0 0.0325 +0 0.0634 +0 0.1233 +0 0.0460 +0 0.1061 +0 0.2595 +0 0.0974 +0 0.0626 +0 0.1890 +0 0.0547 +0 0.5468 +0 0.0367 +0 0.1229 +0 0.1538 +0 0.0621 +0 0.0926 +0 0.2114 +0 0.0705 +0 0.1795 +0 0.1836 +0 0.2058 +0 0.1195 +0 0.0728 +0 0.0417 +0 0.0676 +0 0.0627 +0 0.1221 +0 0.2121 +0 0.1128 +0 0.0568 +0 0.0542 +0 0.2402 +0 0.1126 +0 0.0847 +0 0.0455 +0 0.0739 +0 0.0865 +0 0.2031 +0 0.0505 +0 0.1612 +0 0.0519 +0 0.1455 +0 0.0603 +0 0.0976 +0 0.1404 +0 0.1888 +0 0.0913 +0 0.2071 +0 0.1556 +0 0.1559 +0 0.5471 +0 0.0818 +0 0.0336 +0 0.0821 +0 0.3843 +0 0.0416 +0 0.1660 +0 0.0770 +0 0.1015 +0 0.1576 +0 0.0897 +0 0.0631 +0 0.0734 +0 0.3526 +0 0.0888 +0 0.1973 +0 0.0399 +0 0.0985 +0 0.2140 +0 0.1696 +0 0.0731 +0 0.0682 +0 0.0481 +1 0.8169 +0 0.1162 +0 0.2648 +0 0.7483 +0 0.0975 +0 0.2567 +0 0.0640 +0 0.0474 +0 0.0592 +0 0.0795 +0 0.1219 +0 0.0725 +0 0.1912 +0 0.1544 +0 0.0626 +0 0.3142 +0 0.2437 +0 0.0614 +0 0.0688 +0 0.0727 +0 0.0962 +0 0.1079 +0 0.0477 +0 0.1344 +0 0.0896 +0 0.1544 +1 0.7903 +0 0.2447 +0 0.0585 +0 0.0721 +0 0.1303 +0 0.5099 +0 0.0982 +0 0.2835 +0 0.0581 +0 0.3636 +0 0.0606 +0 0.0615 +0 0.1613 +0 0.4105 +0 0.1242 +0 0.0834 +0 0.1842 +0 0.0665 +0 0.0638 +0 0.0834 +0 0.0870 +0 0.0667 +0 0.1819 +0 0.2051 +0 0.1429 +0 0.0553 +0 0.0689 +0 0.0621 +0 0.1070 +0 0.0769 +0 0.0829 +0 0.1064 +0 0.0369 +0 0.0955 +0 0.0878 +0 0.0637 +0 0.0664 +0 0.0867 +0 0.1225 +0 0.1444 +0 0.0854 +0 0.1782 +0 0.2138 +0 0.0696 +0 0.2070 +0 0.1218 +0 0.1110 +0 0.1907 +0 0.0946 +0 0.1198 +0 0.1353 +0 0.1582 +0 0.0942 +0 0.1821 +0 0.1780 +0 0.0656 +0 0.0826 +0 0.0919 +0 0.1150 +0 0.0466 +0 0.0766 +0 0.1863 +0 0.4245 +0 0.1011 +0 0.1044 +0 0.0950 +0 0.1564 +0 0.1492 +0 0.0545 +0 0.1110 +0 0.0848 +0 0.1433 +0 0.0570 +0 0.2851 +0 0.2075 +0 0.1155 +0 0.1601 +0 0.1008 +0 0.0471 +0 0.0670 +0 0.1280 +0 0.1675 +0 0.0648 +0 0.1316 +0 0.1022 +1 0.7663 +0 0.0549 +0 0.6325 +0 0.0529 +0 0.1940 +0 0.0692 +0 0.0809 +0 0.0820 +0 0.1807 +0 0.3127 +0 0.0805 +0 0.7031 +0 0.1652 +0 0.0316 +0 0.3394 +0 0.0698 +0 0.1040 +0 0.0632 +0 0.1636 +0 0.0383 +0 0.0676 +0 0.0703 +0 0.1150 +0 0.1097 +0 0.0917 +0 0.0996 +0 0.1095 +0 0.0867 +0 0.0602 +0 0.2011 +0 0.1441 +0 0.0884 +0 0.4874 +0 0.4344 +0 0.1642 +0 0.1374 +0 0.2293 +0 0.1086 +0 0.0764 +0 0.4618 +0 0.0848 +0 0.2107 +0 0.2356 +0 0.0825 +0 0.1016 +0 0.0786 +0 0.1128 +0 0.0623 +0 0.1317 +0 0.4172 +0 0.2968 +0 0.0487 +0 0.1076 +0 0.1058 +0 0.1249 +0 0.1214 +0 0.1305 +0 0.1347 +0 0.0836 +0 0.1388 +0 0.1384 +0 0.0896 +0 0.2599 +0 0.0870 +0 0.1359 +0 0.1112 +0 0.1525 +0 0.1755 +0 0.0719 +0 0.0538 +0 0.0526 +0 0.0781 +0 0.1225 +0 0.1958 +0 0.1108 +0 0.1383 +0 0.0577 +0 0.1085 +0 0.0559 +0 0.0984 +0 0.7378 +0 0.1410 +0 0.1484 +0 0.3347 +0 0.1614 +0 0.0769 +0 0.1535 +0 0.0967 +0 0.0767 +0 0.1930 +0 0.0791 +0 0.0728 +0 0.0538 +0 0.1094 +0 0.1166 +0 0.0964 +0 0.1388 +0 0.0896 +0 0.1079 +0 0.1000 +0 0.0741 +0 0.1011 +0 0.2742 +0 0.0529 +0 0.0330 +0 0.1463 +0 0.1051 +0 0.0674 +0 0.1220 +0 0.0500 +0 0.1550 +0 0.1330 +0 0.1055 +0 0.0867 +0 0.1057 +0 0.1033 +0 0.1238 +0 0.1008 +0 0.0571 +0 0.0321 +0 0.0901 +0 0.0726 +0 0.0972 +0 0.1061 +1 0.8648 +0 0.0815 +1 0.8129 +0 0.0934 +0 0.0582 +0 0.7133 +0 0.0815 +0 0.0593 +0 0.6360 +0 0.0512 +0 0.2297 +0 0.0969 +0 0.0739 +0 0.0889 +0 0.0859 +0 0.3865 +0 0.0624 +0 0.1609 +0 0.0558 +0 0.1603 +0 0.1011 +0 0.1428 +0 0.1564 +0 0.2394 +0 0.1018 +0 0.1289 +0 0.2217 +0 0.0392 +0 0.4321 +0 0.1153 +0 0.0658 +0 0.1492 +0 0.1072 +0 0.2168 +0 0.1224 +0 0.1741 +0 0.0993 +0 0.0778 +0 0.1048 +0 0.1607 +0 0.1275 +0 0.0369 +0 0.0549 +0 0.0764 +0 0.0966 +0 0.0602 +0 0.0760 +0 0.0655 +0 0.5065 +0 0.1667 +0 0.0838 +0 0.1458 +0 0.1865 +0 0.0462 +0 0.0884 +0 0.1145 +0 0.1598 +0 0.0760 +0 0.1432 +0 0.0981 +0 0.2390 +0 0.0653 +0 0.0576 +0 0.0470 +0 0.0980 +0 0.1473 +0 0.0528 +0 0.0807 +0 0.6946 +0 0.4797 +0 0.2539 +0 0.0712 +0 0.1847 +0 0.0892 +0 0.0685 +0 0.0835 +0 0.1763 +0 0.1995 +0 0.1200 +1 0.7610 +0 0.0892 +0 0.0435 +0 0.0458 +0 0.1084 +0 0.1743 +1 0.8630 +0 0.1297 +0 0.0847 +0 0.0725 +0 0.0900 +0 0.2505 +0 0.3867 +0 0.1200 +0 0.0557 +0 0.1077 +0 0.1052 +0 0.0461 +0 0.0770 +0 0.1230 +0 0.1849 +0 0.0727 +0 0.0514 +0 0.2673 +0 0.0973 +0 0.1232 +0 0.1298 +0 0.1089 +0 0.0736 +0 0.1736 +0 0.1808 +0 0.1194 +0 0.2477 +0 0.0895 +0 0.0906 +0 0.0747 +0 0.0909 +0 0.6980 +0 0.0602 +0 0.0987 +0 0.0528 +0 0.0834 +0 0.1267 +0 0.1220 +0 0.1799 +0 0.0475 +0 0.0670 +0 0.0764 +0 0.0504 +0 0.0911 +0 0.1779 +0 0.0753 +0 0.1517 +0 0.1574 +0 0.1169 +0 0.1188 +1 0.7993 +0 0.2317 +0 0.4977 +0 0.1114 +0 0.1606 +0 0.1781 +0 0.4229 +0 0.1126 +0 0.1401 +0 0.0693 +0 0.0831 +0 0.1083 +0 0.1602 +0 0.0781 +0 0.1964 +0 0.0920 +0 0.1244 +0 0.0931 +0 0.0464 +0 0.3419 +0 0.1006 +0 0.0889 +0 0.0399 +0 0.0782 +0 0.0752 +0 0.1303 +0 0.0967 +0 0.0691 +0 0.3084 +0 0.0602 +0 0.0898 +0 0.1586 +0 0.2408 +0 0.0541 +0 0.1448 +0 0.1034 +0 0.1263 +0 0.0581 +0 0.1512 +0 0.2723 +0 0.2392 +0 0.1866 +0 0.0958 +0 0.0919 +0 0.1300 +0 0.0788 +0 0.1635 +0 0.1075 +0 0.1891 +0 0.0421 +0 0.0830 +0 0.0909 +0 0.1016 +0 0.0964 +0 0.2240 +0 0.2435 +0 0.2358 +0 0.2781 +0 0.0469 +0 0.2632 +0 0.1567 +0 0.1257 +0 0.1470 +0 0.3161 +0 0.0588 +0 0.1493 +0 0.0495 +0 0.0941 +0 0.1370 +0 0.0763 +0 0.2318 +0 0.0979 +0 0.0583 +0 0.1081 +0 0.0575 +0 0.0494 +0 0.0725 +0 0.1437 +0 0.1159 +0 0.1658 +0 0.1367 +0 0.0575 +0 0.1532 +0 0.1090 +0 0.1139 +0 0.0631 +0 0.2628 +0 0.4422 +0 0.0985 +0 0.0621 +0 0.1911 +0 0.1300 +0 0.1185 +0 0.1728 +0 0.0889 +0 0.2335 +0 0.0521 +0 0.1513 +0 0.2553 +0 0.1230 +0 0.1069 +0 0.0888 +0 0.1638 +0 0.1577 +0 0.1607 +0 0.0479 +0 0.0643 +0 0.3473 +0 0.1595 +0 0.7010 +0 0.0925 +0 0.3711 +0 0.0816 +0 0.0669 +0 0.1366 +0 0.2372 +0 0.1320 +0 0.2051 +0 0.6700 +0 0.0797 +0 0.0491 +0 0.1837 +0 0.1645 +0 0.0608 +0 0.0496 +0 0.0434 +0 0.1025 +0 0.1829 +0 0.0510 +0 0.1616 +0 0.0929 +0 0.0930 +0 0.0631 +0 0.0849 +0 0.1556 +0 0.2323 +0 0.4666 +0 0.0806 +0 0.0404 +0 0.1412 +0 0.0756 +0 0.1833 +0 0.0837 +0 0.0379 +0 0.2114 +0 0.5437 +0 0.0675 +0 0.2109 +0 0.0783 +0 0.1753 +0 0.0732 +0 0.2202 +0 0.2376 +0 0.0439 +0 0.0609 +0 0.2755 +0 0.0806 +0 0.1106 +0 0.0727 +0 0.1466 +0 0.1664 +0 0.1192 +0 0.1041 +0 0.0779 +0 0.1409 +0 0.1656 +0 0.1993 +0 0.0424 +0 0.0560 +0 0.1489 +0 0.1036 +0 0.0435 +0 0.0910 +0 0.0655 +0 0.0747 +0 0.1834 +0 0.0738 +0 0.1401 +0 0.0978 +0 0.1344 +0 0.0506 +0 0.0551 +0 0.0863 +0 0.1043 +0 0.1028 +0 0.0722 +0 0.1174 +0 0.0727 +0 0.0702 +0 0.0715 +0 0.1244 +0 0.1000 +0 0.1178 +0 0.0996 +0 0.0599 +0 0.2425 +0 0.1141 +0 0.1507 +0 0.0854 +0 0.1448 +0 0.1309 +0 0.0856 +0 0.2019 +0 0.3334 +0 0.1174 +0 0.2046 +0 0.1268 +0 0.2744 +0 0.1126 +0 0.0824 +0 0.2046 +0 0.0484 +0 0.0362 +0 0.0516 +0 0.2079 +0 0.1113 +0 0.0683 +0 0.1703 +0 0.1830 +0 0.1455 +0 0.0399 +0 0.1602 +0 0.0775 +0 0.0800 +0 0.1454 +0 0.0844 +0 0.0380 +0 0.0730 +0 0.1021 +0 0.1723 +0 0.0860 +0 0.0615 +0 0.1197 +0 0.0917 +0 0.1516 +0 0.0388 +0 0.0544 +0 0.0684 +0 0.1807 +0 0.1232 +0 0.1535 +0 0.0662 +0 0.1275 +0 0.1242 +0 0.1412 +0 0.0943 +0 0.0351 +0 0.0966 +0 0.0840 +0 0.1336 +0 0.0371 +0 0.0530 +0 0.2748 +0 0.0921 +0 0.4504 +0 0.1021 +0 0.2511 +0 0.0886 +0 0.0600 +0 0.0850 +0 0.1323 +0 0.2083 +0 0.0552 +0 0.0875 +0 0.1084 +0 0.1145 +0 0.7484 +0 0.0592 +0 0.0590 +0 0.1969 +0 0.1302 +0 0.6915 +0 0.0533 +0 0.0827 +0 0.0685 +0 0.0910 +0 0.0682 +0 0.0356 +0 0.1271 +0 0.1575 +0 0.0770 +0 0.6583 +0 0.1171 +0 0.0731 +0 0.1184 +0 0.4725 +0 0.2856 +0 0.2537 +0 0.0695 +0 0.0801 +0 0.1054 +0 0.0588 +0 0.0807 +0 0.1977 +0 0.4036 +0 0.2018 +0 0.2031 +0 0.0682 +0 0.1874 +0 0.1064 +0 0.0612 +0 0.3379 +0 0.0588 +0 0.1805 +0 0.1767 +0 0.1030 +0 0.1524 +0 0.0767 +0 0.1007 +0 0.1122 +0 0.0875 +0 0.0955 +0 0.1029 +0 0.1104 +0 0.1004 +0 0.1150 +0 0.1013 +0 0.4232 +0 0.0718 +0 0.1242 +0 0.1577 +0 0.1156 +0 0.1191 +0 0.0954 +0 0.1262 +0 0.1202 +0 0.0822 +0 0.1921 +0 0.1974 +1 0.8162 +0 0.1997 +0 0.1051 +0 0.2573 +0 0.0831 +0 0.0893 +0 0.1453 +0 0.1086 +0 0.1025 +0 0.0979 +0 0.1529 +0 0.1559 +0 0.1197 +0 0.1162 +0 0.0347 +0 0.0555 +0 0.5723 +0 0.2618 +0 0.1786 +0 0.1143 +0 0.0976 +0 0.1163 +0 0.0991 +0 0.1338 +0 0.2089 +0 0.0775 +0 0.1512 +0 0.1574 +0 0.1069 +0 0.0970 +0 0.0712 +0 0.0572 +0 0.0786 +0 0.1050 +0 0.0609 +0 0.2587 +0 0.0495 +0 0.1277 +0 0.0843 +0 0.0706 +0 0.0830 +0 0.1258 +0 0.1037 +0 0.2234 +0 0.2417 +0 0.1873 +0 0.1317 +0 0.1460 +0 0.1013 +0 0.1282 +0 0.0623 +0 0.2304 +0 0.0467 +0 0.1300 +0 0.1202 +0 0.1573 +0 0.0981 +0 0.1011 +0 0.1392 +0 0.0960 +0 0.1119 +0 0.1050 +0 0.2658 +0 0.3729 +0 0.0897 +0 0.1000 +0 0.6239 +0 0.1396 +0 0.0590 +0 0.1115 +0 0.0863 +0 0.0753 +0 0.0496 +0 0.1279 +0 0.1180 +0 0.0703 +0 0.1573 +0 0.0631 +0 0.1467 +0 0.0670 +0 0.0629 +0 0.1022 +0 0.0540 +0 0.1063 +0 0.0435 +0 0.0482 +0 0.2353 +0 0.1250 +0 0.0838 +0 0.0729 +0 0.1173 +1 0.7709 +0 0.0726 +0 0.0447 +0 0.0878 +0 0.4709 +0 0.2771 +0 0.0603 +0 0.5011 +0 0.1301 +0 0.3188 +0 0.2258 +0 0.1092 +0 0.0656 +0 0.1390 +0 0.6175 +0 0.0943 +0 0.1090 +0 0.2670 +0 0.2118 +0 0.2255 +0 0.0918 +1 0.8571 +0 0.2955 +0 0.0913 +0 0.1159 +0 0.1230 +0 0.1483 +0 0.1088 +0 0.0570 +0 0.1001 +0 0.0710 +0 0.0750 +0 0.1636 +0 0.0666 +0 0.0399 +0 0.1415 +0 0.0646 +0 0.1293 +0 0.1150 +0 0.1264 +0 0.5257 +0 0.1573 +0 0.1449 +0 0.1120 +0 0.1984 +0 0.0702 +0 0.5416 +0 0.1360 +0 0.0848 +0 0.1372 +0 0.1752 +0 0.2314 +0 0.1221 +0 0.0819 +0 0.1381 +0 0.0714 +0 0.0479 +0 0.0900 +0 0.1011 +0 0.2111 +0 0.0520 +0 0.0775 +0 0.1397 +0 0.0507 +0 0.0502 +0 0.1649 +0 0.0748 +0 0.1557 +0 0.0733 +0 0.0837 +0 0.1897 +0 0.0724 +0 0.0894 +0 0.1290 +0 0.1297 +0 0.1009 +0 0.0857 +0 0.1646 +0 0.0400 +0 0.0631 +0 0.0586 +0 0.1586 +0 0.6046 +0 0.0772 +0 0.0823 +0 0.5095 +0 0.3403 +0 0.0632 +0 0.0621 +0 0.0900 +0 0.1536 +0 0.1543 +0 0.1006 +0 0.0516 +0 0.2243 +0 0.1549 +0 0.1151 +0 0.1347 +0 0.1125 +0 0.4425 +0 0.1161 +0 0.0709 +0 0.0560 +0 0.0669 +0 0.1025 +0 0.6755 +0 0.0514 +0 0.5864 +0 0.0912 +0 0.1191 +0 0.0649 +0 0.0480 +0 0.1070 +0 0.1389 +0 0.2527 +0 0.2602 +0 0.1714 +0 0.3855 +0 0.1277 +0 0.2091 +0 0.1146 +0 0.0903 +0 0.1603 +0 0.1049 +1 0.8151 +0 0.1751 +0 0.6066 +0 0.0829 +0 0.0921 +0 0.5046 +0 0.0934 +0 0.0691 +0 0.1152 +0 0.0605 +0 0.0677 +0 0.1392 +0 0.1112 +0 0.1020 +0 0.0484 +0 0.3964 +0 0.1013 +0 0.1988 +0 0.0948 +0 0.1222 +0 0.6874 +0 0.4833 +0 0.1415 +0 0.4247 +0 0.1596 +0 0.1256 +0 0.2487 +0 0.3910 +0 0.0468 +0 0.0711 +0 0.3981 +0 0.1305 +0 0.1537 +0 0.1653 +0 0.0889 +0 0.1543 +0 0.1527 +0 0.0336 +0 0.2007 +0 0.1158 +0 0.0835 +0 0.0764 +0 0.0958 +0 0.1417 +0 0.1328 +0 0.0545 +0 0.0852 +0 0.0357 +0 0.0435 +0 0.1575 +0 0.2371 +0 0.1458 +0 0.0866 +0 0.1124 +0 0.5149 +0 0.0932 +0 0.1157 +0 0.0646 +0 0.0644 +0 0.0650 +0 0.0517 +0 0.5421 +0 0.0872 +0 0.0485 +0 0.1482 +0 0.0610 +0 0.0743 +0 0.1047 +0 0.0645 +0 0.0386 +0 0.1000 +0 0.0817 +0 0.0884 +0 0.1437 +0 0.0303 +0 0.0959 +0 0.3064 +0 0.1044 +0 0.0430 +0 0.1123 +0 0.1297 +0 0.1061 +0 0.3843 +0 0.0661 +0 0.0919 +0 0.2378 +0 0.5103 +0 0.0472 +0 0.1470 +0 0.1735 +0 0.0511 +0 0.1513 +0 0.0637 +0 0.0940 +0 0.0318 +1 0.7856 +0 0.1716 +0 0.1619 +0 0.2677 +0 0.5193 +0 0.1457 +0 0.1005 +0 0.2226 +0 0.0799 +0 0.1620 +0 0.1379 +0 0.0832 +0 0.0916 +0 0.0598 +0 0.1296 +0 0.0875 +0 0.1324 +0 0.1912 +0 0.3380 +0 0.0607 +0 0.1836 +0 0.1061 +0 0.1772 +0 0.1696 +0 0.0351 +0 0.0849 +0 0.1953 +0 0.0640 +0 0.2135 +0 0.0312 +0 0.2605 +0 0.1229 +0 0.1348 +0 0.0993 +0 0.0954 +0 0.4427 +0 0.0919 +0 0.3939 +0 0.0762 +0 0.1108 +0 0.2424 +0 0.0844 +0 0.0911 +0 0.2097 +0 0.2028 +0 0.1049 +0 0.0940 +0 0.0847 +0 0.0983 +0 0.0506 +0 0.1984 +0 0.0996 +0 0.1239 +0 0.0746 +0 0.0879 +0 0.0514 +0 0.6905 +0 0.1381 +0 0.0634 +0 0.1580 +0 0.1075 +0 0.3018 +0 0.0929 +0 0.0743 +0 0.0531 +0 0.0815 +0 0.2216 +0 0.1370 +0 0.1281 +0 0.0839 +0 0.3706 +0 0.0402 +0 0.1873 +0 0.0484 +0 0.1228 +0 0.1518 +0 0.0394 +0 0.0779 +0 0.1483 +0 0.1326 +0 0.0722 +0 0.2013 +0 0.0622 +0 0.1374 +0 0.2466 +0 0.1301 +0 0.1931 +0 0.0552 +0 0.2694 +0 0.0733 +0 0.0955 +0 0.0430 +0 0.1208 +0 0.1331 +0 0.1403 +0 0.1996 +0 0.0773 +0 0.0940 +0 0.0775 +0 0.0565 +0 0.1061 +0 0.2340 +0 0.2973 +0 0.2260 +0 0.3593 +0 0.0763 +0 0.1323 +0 0.0388 +0 0.2572 +0 0.1875 +0 0.0670 +0 0.3031 +0 0.2131 +0 0.1921 +0 0.0382 +0 0.2910 +0 0.1608 +0 0.0815 +0 0.0711 +0 0.5219 +0 0.1685 +0 0.1610 +0 0.1362 +0 0.1034 +0 0.0471 +0 0.1461 +0 0.1185 +0 0.1688 +0 0.2420 +0 0.0508 +0 0.1308 +0 0.0347 +0 0.0663 +0 0.2235 +0 0.1057 +0 0.6784 +0 0.0725 +0 0.1947 +0 0.0663 +0 0.3049 +0 0.0767 +0 0.0764 +0 0.1653 +0 0.1523 +0 0.2320 +0 0.0344 +0 0.1605 +0 0.1560 +0 0.7486 +0 0.3835 +0 0.0536 +0 0.0919 +0 0.0468 +0 0.0909 +0 0.0501 +0 0.1611 +0 0.0780 +0 0.1888 +0 0.1216 +0 0.0475 +0 0.0478 +0 0.1134 +0 0.1213 +0 0.0703 +0 0.1793 +0 0.0652 +0 0.0800 +0 0.0474 +0 0.0841 +0 0.1142 +0 0.0391 +0 0.2155 +0 0.1028 +0 0.0580 +0 0.1139 +0 0.4106 +0 0.0715 +0 0.1604 +0 0.0886 +0 0.0772 +0 0.2582 +0 0.0686 +0 0.0695 +0 0.0856 +0 0.1191 +0 0.0730 +0 0.0535 +0 0.0491 +1 0.7632 +0 0.0740 +0 0.0709 +0 0.0859 +0 0.0430 +0 0.0522 +0 0.0553 +0 0.0848 +0 0.0633 +0 0.1262 +0 0.1276 +0 0.0476 +0 0.0659 +0 0.1464 +0 0.1129 +0 0.1128 +0 0.1716 +0 0.0734 +0 0.0488 +0 0.0991 +0 0.2184 +0 0.1203 +0 0.1718 +0 0.1167 +0 0.1259 +0 0.0866 +0 0.1208 +0 0.2412 +0 0.1558 +0 0.0393 +0 0.0886 +0 0.0734 +0 0.0383 +0 0.0464 +0 0.0970 +0 0.2680 +0 0.2940 +0 0.0495 +0 0.0749 +0 0.0940 +0 0.0760 +0 0.0660 +0 0.0839 +0 0.0442 +0 0.0950 +0 0.0790 +0 0.0433 +0 0.2183 +0 0.2896 +0 0.0595 +0 0.5898 +0 0.1248 +0 0.2161 +0 0.0417 +0 0.1573 +0 0.4380 +0 0.1021 +0 0.0520 +0 0.2138 +0 0.3301 +0 0.0970 +0 0.0835 +0 0.0657 +0 0.2958 +0 0.4019 +0 0.0812 +0 0.1335 +0 0.2245 +0 0.2043 +0 0.2523 +0 0.0604 +0 0.0630 +0 0.0535 +0 0.0466 +0 0.0578 +0 0.0615 +0 0.0983 +0 0.3673 +0 0.0325 +0 0.0763 +0 0.0520 +0 0.1739 +0 0.0626 +0 0.1399 +0 0.1142 +0 0.1390 +0 0.3743 +0 0.0520 +0 0.1064 +0 0.0744 +0 0.0691 +0 0.0678 +0 0.0730 +0 0.0393 +0 0.2592 +0 0.1743 +0 0.1469 +0 0.2207 +0 0.1161 +0 0.2020 +0 0.1014 +0 0.1386 +0 0.1563 +1 0.8344 +0 0.1665 +0 0.0828 +0 0.1208 +0 0.6079 +0 0.0436 +0 0.0725 +0 0.1939 +0 0.1087 +0 0.3169 +0 0.0762 +1 0.7627 +0 0.0309 +0 0.0889 +0 0.2910 +0 0.0796 +0 0.1259 +0 0.0898 +0 0.1013 +0 0.1355 +0 0.1260 +0 0.3135 +0 0.3509 +0 0.0933 +0 0.0735 +0 0.1454 +0 0.1484 +0 0.0725 +0 0.1295 +0 0.1448 +0 0.0632 +0 0.0413 +0 0.1658 +0 0.0793 +0 0.1171 +0 0.0831 +0 0.0861 +0 0.1053 +0 0.0774 +0 0.2089 +0 0.2189 +0 0.1478 +0 0.6646 +0 0.0797 +0 0.0463 +0 0.0369 +0 0.1567 +0 0.0987 +0 0.1024 +0 0.2375 +0 0.1929 +0 0.0652 +0 0.1007 +0 0.0554 +0 0.1702 +0 0.1186 +0 0.3131 +0 0.0320 +0 0.0686 +0 0.1255 +0 0.0734 +0 0.0747 +0 0.2971 +0 0.5459 +0 0.0764 +0 0.1391 +0 0.1281 +0 0.0805 +0 0.0961 +0 0.3397 +0 0.0672 +0 0.0369 +0 0.2113 +0 0.1265 +0 0.0809 +0 0.1200 +0 0.1477 +0 0.0657 +0 0.1528 +0 0.1290 +0 0.1769 +0 0.3319 +0 0.2791 +0 0.0860 +0 0.1525 +0 0.0647 +0 0.2162 +0 0.0823 +0 0.4754 +0 0.0452 +0 0.0787 +0 0.0925 +0 0.2568 +0 0.0540 +0 0.0718 +0 0.0977 +0 0.2427 +0 0.2094 +0 0.0368 +0 0.0867 +0 0.1564 +0 0.1236 +0 0.1309 +0 0.0832 +0 0.0787 +0 0.0641 +0 0.0644 +0 0.3296 +0 0.0626 +0 0.1821 +0 0.1411 +0 0.0663 +0 0.1047 +0 0.0954 +0 0.0478 +0 0.0503 +0 0.1125 +0 0.1432 +0 0.1036 +0 0.0740 +0 0.2768 +0 0.1932 +0 0.0662 +0 0.1730 +0 0.0990 +0 0.0653 +0 0.4680 +0 0.3762 +0 0.1879 +0 0.1190 +0 0.0927 +0 0.7223 +0 0.1311 +0 0.1323 +0 0.0332 +0 0.0544 +0 0.1814 +0 0.0657 +0 0.0527 +0 0.0630 +0 0.1322 +0 0.1329 +0 0.0526 +0 0.5962 +0 0.1105 +0 0.0557 +0 0.0757 +0 0.1198 +0 0.0933 +0 0.2073 +0 0.0761 +0 0.1251 +0 0.2901 +0 0.1083 +0 0.4643 +0 0.0579 +0 0.0985 +0 0.2523 +0 0.1693 +0 0.1124 +0 0.1643 +0 0.2480 +0 0.0332 +0 0.0836 +0 0.6743 +0 0.0804 +0 0.0803 +0 0.1260 +0 0.1481 +0 0.0301 +0 0.1217 +0 0.2551 +0 0.3334 +0 0.0753 +0 0.0657 +0 0.0630 +0 0.2006 +0 0.2133 +0 0.0713 +0 0.1146 +0 0.2116 +0 0.0613 +0 0.0484 +0 0.0991 +0 0.0700 +0 0.0439 +0 0.1585 +0 0.1064 +0 0.1544 +0 0.1600 +0 0.1788 +0 0.0444 +0 0.6707 +0 0.1196 +0 0.0923 +1 0.8095 +0 0.1224 +0 0.0814 +0 0.0699 +0 0.0468 +0 0.2186 +0 0.1161 +0 0.1575 +0 0.3694 +0 0.0540 +0 0.1393 +0 0.0369 +0 0.0940 +0 0.0601 +0 0.0795 +0 0.0881 +0 0.3140 +0 0.2543 +0 0.1953 +0 0.1216 +0 0.0456 +0 0.1092 +0 0.0964 +0 0.1207 +0 0.0486 +1 0.7748 +0 0.2259 +0 0.1017 +0 0.0920 +0 0.0847 +0 0.0787 +0 0.1810 +0 0.0779 +0 0.5685 +0 0.0731 +0 0.1818 +0 0.1359 +0 0.0367 +0 0.0806 +0 0.1098 +0 0.1049 +0 0.0866 +0 0.0867 +0 0.1009 +0 0.2804 +0 0.1150 +0 0.1311 +0 0.0947 +0 0.0832 +0 0.0460 +0 0.3102 +0 0.0562 +0 0.0889 +0 0.5387 +0 0.0618 +0 0.0523 +0 0.0854 +0 0.6079 +0 0.2057 +1 0.7786 +0 0.5457 +0 0.0451 +0 0.0362 +0 0.1263 +0 0.1227 +0 0.1236 +0 0.1273 +0 0.6669 +0 0.1135 +0 0.1081 +0 0.0772 +0 0.6262 +0 0.2316 +0 0.0930 +0 0.0658 +0 0.0391 +0 0.2232 +0 0.1516 +0 0.1418 +0 0.1777 +0 0.0736 +0 0.1294 +0 0.1071 +0 0.4365 +0 0.0592 +0 0.0677 +0 0.0674 +0 0.1216 +0 0.0840 +0 0.2040 +0 0.0863 +0 0.1703 +0 0.0504 +0 0.0949 +0 0.0619 +0 0.4625 +0 0.3002 +0 0.0466 +0 0.1987 +0 0.0801 +0 0.2604 +0 0.0727 +0 0.4916 +0 0.2167 +0 0.0997 +0 0.0467 +0 0.1475 +0 0.0909 +0 0.0492 +0 0.1080 +0 0.1252 +0 0.0727 +0 0.0685 +0 0.1551 +0 0.1068 +0 0.0693 +0 0.1218 +0 0.0611 +0 0.1668 +0 0.0800 +0 0.0739 +0 0.0695 +0 0.1106 +0 0.3330 +0 0.1044 +0 0.0668 +0 0.0413 +0 0.0847 +0 0.0927 +0 0.0994 +0 0.0727 +0 0.0749 +0 0.1609 +0 0.0396 +0 0.0752 +0 0.0772 +0 0.1303 +0 0.1676 +0 0.1080 +0 0.0422 +0 0.0396 +0 0.1307 +0 0.0717 +0 0.0421 +0 0.1511 +0 0.3384 +0 0.0700 +0 0.0721 +0 0.0527 +0 0.2341 +0 0.0907 +0 0.1750 +0 0.0436 +0 0.0928 +0 0.0651 +0 0.2006 +0 0.1687 +0 0.0708 +0 0.0927 +0 0.1432 +0 0.2214 +0 0.4293 +0 0.1043 +0 0.0856 +0 0.1429 +0 0.1880 +0 0.0494 +0 0.0835 +0 0.1134 +0 0.0610 +0 0.0917 +0 0.1003 +0 0.0629 +1 0.7761 +0 0.1799 +0 0.1084 +0 0.1005 +0 0.0822 +0 0.1773 +0 0.0844 +0 0.0528 +0 0.1581 +0 0.0887 +0 0.7081 +0 0.2869 +0 0.0460 +0 0.0839 +0 0.1854 +0 0.1176 +0 0.1068 +0 0.0978 +0 0.0848 +0 0.1026 +0 0.7295 +0 0.0615 +0 0.1720 +0 0.1129 +0 0.6781 +0 0.1874 +0 0.2126 +0 0.0823 +0 0.1090 +0 0.1093 +1 0.8772 +0 0.0905 +0 0.0778 +0 0.3533 +0 0.0784 +0 0.1415 +0 0.1875 +0 0.2909 +0 0.0573 +0 0.1434 +0 0.1229 +0 0.0539 +0 0.3748 +0 0.0439 +0 0.0889 +0 0.1215 +0 0.0778 +0 0.0783 +0 0.1180 +0 0.0593 +0 0.1235 +0 0.1157 +0 0.1709 +0 0.1121 +0 0.0763 +0 0.0499 +0 0.0521 +0 0.0827 +0 0.1206 +0 0.1464 +0 0.1183 +0 0.0906 +0 0.2335 +0 0.0723 +0 0.1378 +0 0.1495 +0 0.0969 +1 0.8302 +0 0.0672 +0 0.1225 +0 0.0440 +0 0.1287 +0 0.1307 +0 0.1140 +0 0.0965 +0 0.0401 +0 0.0565 +0 0.0503 +0 0.1063 +0 0.1340 +0 0.0532 +0 0.0559 +0 0.0897 +0 0.1174 +0 0.0921 +0 0.0762 +0 0.3758 +0 0.2489 +0 0.0772 +0 0.0880 +0 0.1839 +0 0.0851 +0 0.1404 +0 0.1198 +0 0.1054 +0 0.1543 +0 0.3894 +0 0.1109 +0 0.1330 +0 0.0942 +0 0.1627 +0 0.0477 +0 0.1955 +0 0.1811 +0 0.1348 +0 0.2643 +0 0.0743 +0 0.5843 +0 0.0774 +0 0.0508 +0 0.0935 +1 0.8205 +0 0.3357 +0 0.2707 +0 0.0618 +0 0.1633 +0 0.1164 +0 0.1002 +0 0.1007 +1 0.8111 +0 0.1005 +0 0.1301 +0 0.0490 +0 0.3633 +0 0.1404 +0 0.5797 +0 0.0491 +0 0.0732 +0 0.1130 +0 0.0510 +0 0.0567 +0 0.2028 +0 0.1922 +0 0.3521 +0 0.3724 +0 0.2651 +0 0.1103 +0 0.0735 +0 0.1009 +0 0.3364 +0 0.3750 +0 0.6919 +0 0.1214 +0 0.1554 +0 0.1928 +0 0.0663 +0 0.0783 +0 0.1021 +0 0.2187 +0 0.0761 +0 0.0651 +0 0.6610 +0 0.0473 +0 0.1977 +0 0.0617 +0 0.0949 +0 0.0709 +0 0.1664 +0 0.5388 +0 0.1872 +0 0.1276 +0 0.6960 +0 0.0731 +0 0.1772 +0 0.1417 +0 0.0937 +0 0.1979 +0 0.1003 +0 0.1448 +0 0.1394 +0 0.1145 +0 0.1340 +0 0.1161 +0 0.3975 +0 0.1120 +0 0.1604 +0 0.0799 +0 0.0499 +0 0.0729 +0 0.0561 +0 0.0768 +0 0.3601 +0 0.0464 +0 0.7428 +0 0.0789 +0 0.0986 +0 0.0438 +0 0.1412 +0 0.0667 +0 0.0722 +0 0.0919 +0 0.1074 +0 0.0768 +0 0.1477 +0 0.0576 +0 0.0394 +0 0.0964 +0 0.1315 +0 0.1346 +0 0.1934 +0 0.0780 +0 0.0337 +0 0.0499 +0 0.1585 +0 0.0474 +0 0.0617 +0 0.1175 +0 0.1000 +0 0.0635 +0 0.1107 +0 0.2077 +0 0.1079 +0 0.0874 +0 0.2734 +0 0.0411 +0 0.5695 +0 0.0838 +0 0.1177 +0 0.0889 +0 0.0961 +0 0.0454 +0 0.3330 +0 0.1110 +1 0.8158 +0 0.0656 +0 0.1256 +0 0.1665 +0 0.0869 +0 0.0796 +0 0.1478 +0 0.0494 +0 0.1528 +0 0.2539 +0 0.1529 +0 0.1709 +0 0.1315 +0 0.0891 +0 0.0907 +0 0.1229 +0 0.2275 +0 0.0520 +0 0.7314 +0 0.2546 +0 0.4259 +0 0.1701 +0 0.1064 +0 0.1024 +0 0.0420 +0 0.1037 +0 0.0701 +0 0.1022 +0 0.1120 +0 0.1265 +0 0.1072 +0 0.1373 +0 0.1136 +0 0.0538 +0 0.1540 +0 0.1739 +0 0.1886 +0 0.0903 +0 0.0996 +0 0.1404 +0 0.1720 +0 0.1256 +0 0.0786 +0 0.0943 +0 0.1188 +0 0.6973 +0 0.0726 +0 0.1309 +0 0.3933 +0 0.0498 +0 0.1150 +0 0.1855 +0 0.0518 +0 0.0591 +0 0.1322 +0 0.1036 +0 0.2456 +0 0.2242 +0 0.1759 +0 0.1857 +0 0.1426 +0 0.1398 +0 0.1386 +0 0.0494 +0 0.2546 +0 0.0452 +0 0.1093 +0 0.6503 +0 0.5539 +0 0.0946 +0 0.0796 +0 0.1142 +0 0.1190 +0 0.1190 +0 0.4319 +0 0.2005 +0 0.0718 +0 0.1380 +0 0.0968 +0 0.1144 +0 0.2753 +0 0.7069 +0 0.1023 +0 0.0657 +0 0.1724 +0 0.1496 +0 0.1062 +0 0.0921 +0 0.0831 +0 0.0817 +0 0.0668 +0 0.0908 +0 0.1637 +0 0.0895 +0 0.0569 +0 0.3541 +0 0.0444 +0 0.1351 +0 0.1855 +0 0.1108 +0 0.1734 +0 0.0804 +0 0.0694 +0 0.1320 +0 0.0573 +0 0.1680 +0 0.1215 +0 0.2730 +0 0.0714 +0 0.2546 +0 0.1051 +0 0.1837 +0 0.0491 +0 0.1585 +0 0.2135 +0 0.1700 +0 0.0736 +0 0.0699 +0 0.1508 +0 0.0656 +0 0.1562 +0 0.1997 +0 0.0622 +0 0.0727 +0 0.0454 +0 0.3552 +0 0.1029 +0 0.4156 +0 0.2792 +0 0.0411 +0 0.0720 +0 0.0604 +0 0.1426 +0 0.2211 +0 0.0821 +0 0.1855 +0 0.0457 +0 0.1786 +0 0.1166 +0 0.2407 +0 0.1267 +0 0.0641 +0 0.0745 +0 0.1118 +0 0.2459 +0 0.1383 +0 0.0947 +0 0.0644 +0 0.3096 +0 0.1034 +0 0.0596 +0 0.0689 +0 0.0978 +0 0.0734 +0 0.7480 +0 0.0938 +0 0.3293 +0 0.0351 +0 0.0759 +0 0.0465 +0 0.0424 +0 0.0804 +0 0.1407 +0 0.0860 +0 0.0793 +0 0.0979 +0 0.0787 +0 0.3029 +0 0.0556 +0 0.0682 +0 0.1817 +0 0.1555 +0 0.1290 +0 0.2887 +0 0.0947 +0 0.0957 +0 0.2059 +0 0.0971 +0 0.0942 +1 0.7544 +0 0.0388 +0 0.2104 +0 0.1729 +0 0.3869 +0 0.0555 +0 0.0604 +0 0.0710 +0 0.1580 +0 0.0904 +0 0.0694 +0 0.1490 +0 0.1815 +0 0.0905 +0 0.0351 +0 0.5113 +0 0.1008 +0 0.2406 +0 0.0650 +0 0.0731 +0 0.2658 +0 0.1272 +0 0.0747 +0 0.0506 +0 0.0563 +0 0.0875 +0 0.3113 +0 0.2189 +0 0.0629 +0 0.0340 +0 0.1913 +0 0.0796 +0 0.1339 +0 0.3033 +0 0.0837 +0 0.0729 +0 0.1503 +0 0.1421 +0 0.1196 +0 0.1032 +0 0.0586 +0 0.3241 +0 0.0668 +0 0.1484 +0 0.0631 +0 0.1218 +0 0.3228 +0 0.2397 +0 0.0907 +0 0.0972 +0 0.1017 +0 0.1039 +0 0.0500 +0 0.1416 +0 0.7291 +0 0.1404 +0 0.1515 +0 0.1156 +0 0.1019 +0 0.0818 +0 0.1534 +0 0.0526 +0 0.0639 +0 0.0540 +0 0.1181 +0 0.2535 +0 0.0575 +1 0.7832 +0 0.0764 +0 0.1593 +0 0.1546 +0 0.4122 +0 0.1647 +0 0.1278 +0 0.1535 +0 0.0784 +0 0.1755 +0 0.0500 +0 0.4065 +0 0.0478 +0 0.1647 +0 0.0531 +0 0.0574 +0 0.0860 +0 0.3479 +0 0.1411 +0 0.0889 +0 0.0718 +0 0.1642 +0 0.1781 +0 0.0911 +0 0.2649 +0 0.0862 +0 0.1073 +0 0.0423 +0 0.1571 +0 0.3429 +0 0.3319 +0 0.2782 +1 0.8143 +0 0.0614 +0 0.1272 +0 0.2943 +0 0.1435 +0 0.0515 +0 0.0798 +0 0.1203 +0 0.0355 +0 0.0662 +0 0.1167 +0 0.2450 +0 0.0496 +0 0.0805 +0 0.1962 +0 0.1643 +1 0.7667 +0 0.0867 +0 0.1465 +0 0.1257 +0 0.1374 +0 0.1079 +0 0.0513 +0 0.0431 +0 0.1294 +0 0.0622 +0 0.0955 +0 0.1113 +0 0.0567 +0 0.3399 +0 0.0708 +0 0.1696 +0 0.1511 +0 0.0295 +0 0.1075 +0 0.4860 +0 0.0400 +0 0.0793 +0 0.3600 +0 0.1095 +0 0.0999 +0 0.3010 +0 0.1249 +1 0.7792 +0 0.0880 +0 0.3092 +0 0.0951 +0 0.0654 +0 0.2181 +0 0.0808 +0 0.0835 +0 0.0616 +0 0.0709 +0 0.0714 +0 0.0837 +0 0.0666 +1 0.7588 +0 0.1492 +0 0.0588 +0 0.1064 +0 0.1303 +0 0.0747 +0 0.0637 +0 0.6338 +0 0.0628 +0 0.0620 +0 0.2459 +0 0.1026 +0 0.0932 +0 0.1165 +0 0.1325 +0 0.0761 +0 0.0563 +0 0.1686 +0 0.2373 +0 0.2264 +0 0.1320 +0 0.2133 +0 0.0905 +0 0.0775 +0 0.0635 +0 0.0391 +0 0.1738 +0 0.1690 +0 0.4161 +0 0.1359 +0 0.0711 +0 0.0684 +0 0.1031 +0 0.2998 +0 0.1862 +0 0.1244 +0 0.1681 +0 0.0466 +0 0.1808 +0 0.1137 +0 0.0883 +0 0.4599 +0 0.0949 +0 0.0720 +0 0.7227 +0 0.0582 +0 0.3310 +0 0.0866 +0 0.1023 +0 0.0857 +0 0.2449 +0 0.1435 +0 0.0728 +0 0.1238 +0 0.1165 +0 0.0539 +0 0.0626 +0 0.0625 +0 0.0808 +0 0.2769 +0 0.0759 +0 0.0936 +0 0.1013 +0 0.0929 +0 0.0936 +0 0.1035 +0 0.0477 +0 0.0781 +0 0.5383 +0 0.1392 +0 0.1013 +0 0.0454 +0 0.0699 +0 0.0480 +0 0.2183 +0 0.1332 +0 0.1156 +1 0.7900 +0 0.0611 +0 0.0775 +0 0.2857 +0 0.0978 +0 0.0710 +0 0.0744 +0 0.1106 +0 0.1546 +0 0.1552 +0 0.1329 +0 0.1025 +0 0.0822 +0 0.0545 +0 0.4174 +0 0.0544 +0 0.0696 +0 0.1219 +0 0.0456 +0 0.0870 +0 0.1570 +0 0.0448 +0 0.1198 +0 0.0755 +0 0.1126 +0 0.0677 +0 0.2402 +0 0.0847 +0 0.0784 +0 0.0417 +0 0.1888 +0 0.1126 +0 0.0519 +0 0.0504 +0 0.2625 +0 0.6595 +0 0.2033 +0 0.0577 +0 0.1638 +0 0.0849 +0 0.2029 +0 0.0968 +0 0.0974 +0 0.0944 +0 0.0601 +0 0.0982 +0 0.1149 +0 0.1141 +0 0.0724 +0 0.3261 +0 0.1034 +0 0.2724 +0 0.4382 +0 0.1359 +0 0.0824 +0 0.0402 +0 0.2942 +0 0.0922 +0 0.1102 +0 0.1656 +0 0.2642 +0 0.0599 +0 0.7212 +0 0.0702 +0 0.3358 +0 0.1553 +0 0.1117 +0 0.0719 +0 0.1487 +0 0.1359 +0 0.1857 +0 0.1680 +0 0.0500 +0 0.1647 +0 0.1363 +0 0.0837 +0 0.0393 +0 0.0722 +0 0.0776 +0 0.3019 +0 0.1015 +0 0.0541 +0 0.2436 +0 0.1109 +0 0.0947 +0 0.4131 +1 0.8204 +0 0.0631 +0 0.2104 +0 0.0722 +0 0.0926 +0 0.0583 +0 0.1550 +0 0.0463 +1 0.8625 +0 0.1225 +0 0.0862 +0 0.2460 +0 0.0904 +0 0.2918 +0 0.1052 +0 0.1071 +0 0.0700 +0 0.3992 +0 0.1065 +0 0.1001 +0 0.1139 +0 0.1562 +0 0.1051 +0 0.0563 +0 0.0534 +0 0.1243 +0 0.2192 +0 0.0650 +0 0.1546 +0 0.0686 +0 0.0404 +0 0.1936 +0 0.1337 +0 0.0598 +0 0.1538 +0 0.0396 +0 0.0633 +0 0.0397 +0 0.1246 +0 0.0444 +0 0.0975 +0 0.0787 +0 0.3671 +0 0.0482 +0 0.1336 +0 0.1324 +0 0.2394 +0 0.1118 +0 0.0861 +0 0.0723 +0 0.0722 +0 0.0743 +0 0.0353 +0 0.4408 +0 0.2134 +0 0.0941 +0 0.1097 +0 0.2590 +0 0.1116 +0 0.1352 +0 0.3719 +0 0.6874 +0 0.0604 +0 0.2780 +0 0.0702 +0 0.1309 +0 0.4042 +0 0.0858 +0 0.0758 +0 0.1282 +0 0.1653 +0 0.0558 +0 0.2457 +0 0.2433 +0 0.1505 +0 0.0411 +0 0.1562 +0 0.0679 +0 0.1037 +0 0.5955 +0 0.0763 +0 0.1107 +0 0.1327 +0 0.2106 +0 0.0461 +0 0.2232 +0 0.1244 +0 0.5769 +0 0.5689 +0 0.2683 +0 0.1150 +0 0.1117 +0 0.1726 +1 0.8381 +0 0.3434 +0 0.0582 +0 0.0791 +0 0.0664 +0 0.7430 +0 0.1519 +0 0.1414 +0 0.0658 +0 0.0723 +0 0.1788 +0 0.1483 +0 0.0715 +0 0.0756 +0 0.1716 +0 0.1100 +0 0.1280 +0 0.0542 +0 0.1473 +0 0.1095 +0 0.2288 +0 0.0992 +0 0.1985 +0 0.6897 +0 0.1870 +0 0.1606 +0 0.0634 +0 0.0682 +0 0.1471 +0 0.0598 +0 0.1083 +0 0.2549 +0 0.0865 +0 0.1689 +0 0.1525 +0 0.0954 +0 0.1646 +0 0.2885 +0 0.2007 +0 0.1199 +0 0.1387 +0 0.0816 +0 0.0696 +0 0.1226 +0 0.0720 +0 0.1112 +0 0.0765 +0 0.0951 +0 0.0884 +0 0.1619 +0 0.0485 +0 0.0598 +0 0.0531 +0 0.0577 +0 0.0822 +0 0.1057 +0 0.0486 +0 0.0656 +0 0.0496 +0 0.0642 +0 0.0844 +0 0.0772 +0 0.3276 +0 0.1873 +0 0.1034 +0 0.2362 +0 0.4891 +0 0.0656 +0 0.1073 +0 0.0791 +0 0.0457 +0 0.0778 +0 0.1244 +0 0.0557 +0 0.5263 +0 0.0692 +0 0.0830 +0 0.1501 +0 0.4186 +0 0.1248 +0 0.2070 +0 0.1003 +0 0.1258 +0 0.5105 +0 0.0495 +0 0.0929 +0 0.1184 +0 0.0410 +0 0.0767 +0 0.1066 +0 0.1312 +0 0.1272 +0 0.0493 +0 0.1723 +0 0.1762 +0 0.5439 +0 0.0673 +0 0.0660 +0 0.1122 +0 0.0573 +0 0.0755 +0 0.0775 +0 0.0569 +0 0.1728 +0 0.0333 +0 0.1835 +0 0.0656 +0 0.1434 +0 0.0899 +0 0.3124 +0 0.0746 +0 0.0659 +0 0.0776 +0 0.1096 +0 0.0492 +0 0.1342 +0 0.1189 +0 0.1109 +0 0.0893 +0 0.1489 +0 0.1425 +0 0.1199 +0 0.2080 +0 0.0893 +0 0.0859 +0 0.1038 +0 0.0942 +0 0.0768 +0 0.0594 +0 0.1425 +0 0.2051 +0 0.1721 +0 0.1156 +0 0.2099 +0 0.0961 +0 0.0600 +0 0.0673 +0 0.0922 +0 0.0994 +0 0.4035 +0 0.1883 +0 0.0649 +0 0.1033 +0 0.0874 +0 0.0827 +0 0.1716 +0 0.0690 +0 0.1382 +0 0.1154 +0 0.1415 +0 0.2146 +0 0.1979 +0 0.0984 +0 0.0724 +0 0.0884 +0 0.1722 +0 0.0774 +0 0.0469 +0 0.0680 +0 0.1225 +0 0.0970 +0 0.1471 +0 0.0456 +1 0.7863 +0 0.1494 +0 0.0460 +0 0.0521 +0 0.1892 +0 0.2376 +0 0.0666 +0 0.0643 +0 0.0468 +0 0.1291 +0 0.1466 +0 0.0467 +0 0.0938 +0 0.1028 +0 0.1243 +0 0.1312 +0 0.0897 +0 0.2127 +0 0.1389 +0 0.2845 +0 0.2514 +0 0.0751 +0 0.0596 +0 0.2505 +0 0.0496 +0 0.0961 +0 0.1300 +0 0.0657 +0 0.2699 +0 0.0791 +0 0.0784 +0 0.3845 +0 0.1328 +0 0.1177 +0 0.2521 +0 0.0708 +0 0.0477 +0 0.0902 +0 0.0569 +0 0.0840 +0 0.0952 +0 0.3364 +0 0.1482 +0 0.0806 +0 0.2015 +0 0.0797 +0 0.0997 +0 0.0866 +0 0.0411 +0 0.1224 +1 0.7522 +0 0.1684 +1 0.8222 +1 0.7946 +0 0.0375 +0 0.1048 +0 0.1576 +0 0.1502 +0 0.0663 +0 0.0607 +0 0.0801 +0 0.1103 +0 0.3373 +0 0.1857 +0 0.1311 +0 0.0892 +0 0.1408 +0 0.0822 +0 0.3036 +0 0.0905 +0 0.1175 +0 0.0590 +0 0.0503 +0 0.1025 +0 0.1878 +0 0.1388 +0 0.1780 +0 0.0646 +0 0.0803 +0 0.2239 +0 0.0837 +0 0.0995 +0 0.0872 +0 0.0470 +0 0.0895 +0 0.1726 +0 0.4850 +0 0.0833 +0 0.1176 +0 0.1051 +0 0.1222 +0 0.0983 +0 0.0893 +0 0.0769 +0 0.3230 +0 0.1106 +0 0.0542 +0 0.1024 +0 0.5909 +0 0.2309 +0 0.0489 +0 0.1429 +0 0.1293 +0 0.2043 +0 0.1319 +0 0.0414 +0 0.0694 +0 0.0603 +0 0.1818 +0 0.1179 +0 0.1793 +0 0.0463 +0 0.1196 +0 0.1375 +0 0.0935 +0 0.0865 +0 0.1618 +0 0.1594 +0 0.0858 +0 0.1036 +0 0.0516 +0 0.0780 +0 0.0871 +0 0.0778 +0 0.0688 +0 0.1272 +0 0.0720 +0 0.0852 +0 0.5952 +0 0.3416 +0 0.7369 +0 0.0376 +0 0.0868 +0 0.0726 +0 0.1595 +0 0.1533 +0 0.0804 +0 0.6148 +0 0.1591 +0 0.0872 +1 0.8449 +0 0.0771 +0 0.1091 +0 0.2998 +0 0.5086 +0 0.1445 +0 0.1079 +0 0.0674 +0 0.7253 +0 0.1780 +0 0.0936 +0 0.2204 +0 0.0665 +0 0.1168 +0 0.0619 +0 0.1144 +0 0.0862 +0 0.1478 +1 0.8739 +0 0.1929 +0 0.2303 +0 0.1168 +0 0.0695 +0 0.1339 +0 0.3874 +0 0.0697 +0 0.1050 +0 0.1361 +0 0.0743 +0 0.0440 +0 0.0880 +0 0.0721 +0 0.1877 +0 0.0686 +0 0.0963 +0 0.0400 +0 0.1145 +0 0.0908 +0 0.1265 +0 0.0915 +0 0.4091 +0 0.2055 +0 0.0777 +0 0.0795 +0 0.0467 +0 0.3294 +0 0.1430 +0 0.1122 +0 0.0751 +0 0.0477 +0 0.4192 +0 0.0918 +0 0.0636 +0 0.3435 +0 0.2094 +0 0.1020 +0 0.1035 +0 0.0561 +0 0.1299 +0 0.0749 +0 0.1921 +0 0.0721 +0 0.0989 +0 0.0757 +0 0.0956 +0 0.0579 +0 0.1906 +0 0.0627 +0 0.1033 +0 0.0808 +1 0.7856 +0 0.1122 +0 0.1549 +0 0.0973 +0 0.0394 +0 0.0707 +0 0.0938 +0 0.0983 +0 0.0792 +0 0.0421 +0 0.0724 +0 0.0832 +0 0.1570 +0 0.1519 +0 0.0774 +0 0.0853 +0 0.3173 +0 0.1259 +0 0.1015 +0 0.2437 +0 0.1415 +0 0.1000 +0 0.1016 +0 0.0941 +0 0.0742 +0 0.1185 +0 0.1722 +0 0.1480 +0 0.3065 +0 0.1942 +0 0.1209 +0 0.0983 +1 0.8570 +0 0.1519 +0 0.1749 +0 0.0881 +0 0.0650 +0 0.0745 +0 0.0532 +0 0.0461 +0 0.0712 +0 0.0709 +0 0.1666 +0 0.0498 +0 0.0512 +0 0.1384 +0 0.0980 +0 0.0876 +0 0.1080 +0 0.0776 +0 0.0759 +0 0.4208 +0 0.1103 +0 0.3078 +0 0.0973 +1 0.8182 +0 0.2329 +0 0.3936 +1 0.8383 +0 0.4828 +0 0.0869 +0 0.1450 +0 0.6547 +0 0.0974 +0 0.0792 +0 0.0755 +0 0.0806 +0 0.0954 +0 0.1448 +0 0.1820 +0 0.0839 +0 0.1161 +0 0.0893 +0 0.1921 +0 0.0754 +0 0.0662 +0 0.0594 +0 0.0885 +0 0.0420 +0 0.0410 +0 0.1002 +0 0.0698 +0 0.0778 +0 0.1240 +0 0.1061 +0 0.2092 +0 0.2235 +0 0.1270 +0 0.1979 +0 0.0737 +0 0.0917 +0 0.1652 +0 0.2676 +0 0.0463 +0 0.1086 +0 0.0463 +0 0.1767 +0 0.0783 +0 0.2913 +0 0.3942 +0 0.0559 +0 0.0682 +0 0.2202 +0 0.0835 +0 0.1162 +0 0.0551 +0 0.0744 +0 0.0576 +0 0.0948 +0 0.0743 +0 0.1153 +0 0.2390 +0 0.2924 +0 0.0432 +0 0.0346 +0 0.1056 +0 0.2400 +0 0.0791 +0 0.0974 +0 0.0936 +0 0.0393 +0 0.0905 +1 0.7945 +0 0.0447 +0 0.0593 +0 0.0589 +0 0.1541 +0 0.2630 +0 0.0734 +0 0.1164 +0 0.0639 +0 0.0644 +0 0.0590 +0 0.2327 +0 0.2209 +0 0.1140 +0 0.0958 +0 0.0460 +0 0.2442 +0 0.1432 +0 0.0713 +0 0.0412 +0 0.0754 +0 0.1515 +0 0.0687 +0 0.0518 +0 0.1222 +0 0.1250 +0 0.0997 +0 0.0448 +0 0.2553 +0 0.0660 +0 0.0637 +0 0.1504 +0 0.1019 +0 0.0812 +0 0.1381 +0 0.2042 +0 0.0386 +0 0.1501 +0 0.0943 +0 0.1278 +0 0.0922 +0 0.0580 +0 0.2648 +0 0.0664 +0 0.0861 +0 0.2014 +0 0.0607 +0 0.1079 +0 0.0966 +0 0.2060 +0 0.0419 +0 0.1119 +0 0.1344 +0 0.0721 +0 0.0916 +0 0.1034 +0 0.1691 +0 0.0660 +0 0.0712 +0 0.0517 +0 0.1036 +0 0.1436 +0 0.0942 +0 0.2668 +0 0.1276 +0 0.1822 +0 0.0559 +0 0.1257 +0 0.1059 +0 0.1683 +0 0.0649 +0 0.1247 +0 0.1067 +0 0.1235 +0 0.1871 +0 0.1276 +0 0.3022 +0 0.0478 +0 0.0976 +0 0.0594 +0 0.1854 +0 0.3031 +0 0.1782 +0 0.1833 +0 0.0879 +0 0.1400 +0 0.4055 +0 0.2089 +0 0.2255 +0 0.0582 +0 0.2048 +0 0.0929 +0 0.0896 +0 0.1346 +0 0.0502 +0 0.1489 +0 0.0739 +0 0.1929 +1 0.8192 +0 0.1490 +0 0.0491 +1 0.2869 +0 0.0886 +0 0.1660 +0 0.1264 +0 0.1903 +0 0.3428 +0 0.0599 +0 0.0768 +0 0.1225 +0 0.2158 +0 0.0842 +0 0.0644 +0 0.2788 +0 0.0698 +0 0.1014 +0 0.1046 +0 0.0558 +0 0.0951 +0 0.1161 +0 0.1073 +0 0.1213 +0 0.1014 +0 0.1498 +0 0.1204 +0 0.1054 +0 0.0872 +0 0.2322 +0 0.0480 +0 0.1220 +0 0.1574 +0 0.0645 +0 0.0848 +0 0.0558 +0 0.2607 +0 0.1795 +0 0.1699 +0 0.1610 +0 0.1491 +0 0.1225 +0 0.1242 +0 0.1195 +0 0.2866 +0 0.0763 +0 0.0793 +0 0.0682 +0 0.0663 +0 0.0790 +0 0.0852 +0 0.0723 +0 0.1301 +0 0.2408 +0 0.2738 +0 0.0925 +0 0.0411 +0 0.0463 +0 0.1076 +0 0.0759 +0 0.0413 +0 0.1506 +0 0.0977 +0 0.0718 +0 0.0333 +0 0.3120 +0 0.4143 +0 0.0614 +0 0.0859 +0 0.0436 +0 0.0790 +0 0.0597 +0 0.0623 +0 0.1175 +0 0.1647 +0 0.2041 +0 0.0934 +0 0.0904 +0 0.3645 +0 0.0955 +0 0.0794 +0 0.3455 +0 0.1415 +0 0.0581 +0 0.1126 +0 0.2069 +0 0.1410 +0 0.1098 +0 0.2365 +0 0.0439 +0 0.0951 +0 0.1383 +0 0.0986 +0 0.1795 +0 0.0542 +0 0.1655 +0 0.0869 +0 0.1126 +0 0.1864 +0 0.0530 +0 0.0536 +0 0.1515 +0 0.0729 +0 0.7166 +0 0.1131 +0 0.0866 +0 0.0888 +0 0.3376 +0 0.0404 +0 0.1258 +0 0.1309 +0 0.3055 +0 0.0851 +0 0.1804 +0 0.0590 +0 0.0773 +0 0.1203 +0 0.0734 +0 0.0788 +0 0.0853 +0 0.1283 +0 0.2231 +0 0.1434 +0 0.0541 +0 0.2050 +0 0.0382 +0 0.1449 +0 0.1732 +0 0.1544 +0 0.1459 +0 0.2391 +0 0.0737 +0 0.1014 +0 0.0721 +0 0.0731 +0 0.0826 +0 0.1278 +0 0.2735 +0 0.1044 +0 0.0548 +0 0.0664 +0 0.4717 +0 0.0695 +0 0.0682 +0 0.1768 +0 0.1046 +0 0.0830 +0 0.0791 +0 0.1010 +0 0.1135 +0 0.0745 +1 0.7717 +0 0.1032 +0 0.0571 +0 0.0415 +0 0.2000 +0 0.6416 +0 0.1122 +0 0.0873 +0 0.0748 +0 0.0614 +0 0.2375 +1 0.8065 +0 0.1812 +0 0.2998 +0 0.1441 +0 0.0958 +0 0.0866 +0 0.1080 +0 0.1454 +0 0.1408 +0 0.2567 +0 0.1262 +0 0.0288 +0 0.0818 +0 0.0719 +0 0.0781 +0 0.0759 +0 0.1743 +0 0.0429 +0 0.1140 +0 0.1058 +0 0.1095 +0 0.0659 +0 0.4856 +0 0.0629 +0 0.0576 +0 0.1967 +0 0.0915 +0 0.1467 +0 0.2093 +0 0.0338 +0 0.1294 +0 0.0871 +0 0.2255 +0 0.1583 +0 0.0681 +0 0.3612 +0 0.0901 +0 0.0438 +0 0.1291 +0 0.3902 +0 0.1221 +0 0.0453 +0 0.1712 +0 0.1572 +0 0.1191 +0 0.0573 +0 0.0812 +0 0.1643 +0 0.1222 +0 0.1185 +0 0.1758 +0 0.2605 +0 0.1207 +0 0.0951 +0 0.0672 +0 0.0593 +0 0.1525 +0 0.7061 +0 0.1977 +0 0.0825 +0 0.0917 +0 0.1065 +0 0.1241 +0 0.1342 +0 0.0300 +0 0.0555 +0 0.3081 +0 0.2336 +0 0.0934 +0 0.1506 +0 0.1143 +0 0.1087 +0 0.0971 +0 0.0656 +0 0.1403 +0 0.1168 +0 0.0811 +0 0.2465 +0 0.0590 +0 0.0774 +0 0.0806 +0 0.0496 +0 0.0797 +0 0.1526 +0 0.1816 +0 0.0658 +0 0.2265 +0 0.2829 +0 0.1566 +0 0.0964 +0 0.1283 +0 0.1054 +0 0.0856 +0 0.1993 +0 0.0717 +0 0.0766 +0 0.1359 +0 0.0889 +0 0.1166 +0 0.0453 +0 0.0533 +0 0.0269 +0 0.1578 +0 0.1867 +0 0.0623 +0 0.1363 +0 0.0837 +0 0.0999 +0 0.1151 +0 0.2774 +0 0.0996 +0 0.0564 +0 0.1775 +0 0.1252 +0 0.1506 +0 0.1035 +0 0.1051 +0 0.0683 +0 0.0739 +0 0.1549 +0 0.5345 +0 0.0593 +0 0.0777 +0 0.1173 +0 0.1923 +0 0.0743 +0 0.1202 +0 0.1526 +0 0.0643 +0 0.1199 +0 0.1993 +0 0.0368 +1 0.8244 +0 0.0694 +0 0.0787 +0 0.0331 +0 0.1140 +0 0.3130 +0 0.0478 +0 0.1795 +0 0.1183 +0 0.1140 +0 0.1077 +0 0.0677 +0 0.0646 +0 0.0909 +0 0.1218 +0 0.0975 +0 0.1496 +0 0.1591 +0 0.0850 +0 0.0878 +0 0.0384 +0 0.1049 +0 0.0505 +0 0.2005 +0 0.2515 +0 0.0755 +0 0.0378 +0 0.1028 +0 0.1918 +0 0.0995 +0 0.2898 +0 0.0410 +0 0.2105 +0 0.1528 +0 0.0798 +0 0.0595 +0 0.2126 +0 0.3089 +0 0.1064 +0 0.2100 +0 0.2463 +1 0.8719 +0 0.0593 +0 0.1046 +0 0.1140 +0 0.0701 +0 0.1230 +0 0.0754 +0 0.0980 +0 0.3485 +0 0.0605 +0 0.0657 +0 0.1679 +0 0.3094 +1 0.7573 +0 0.0898 +0 0.0740 +0 0.2193 +0 0.1817 +0 0.0916 +0 0.1756 +0 0.1319 +0 0.1163 +0 0.0408 +0 0.0788 +0 0.0876 +0 0.1084 +0 0.1366 +0 0.0603 +0 0.5021 +0 0.1623 +0 0.1972 +0 0.1234 +0 0.1382 +0 0.1239 +0 0.1219 +0 0.0820 +0 0.1090 +0 0.0689 +0 0.1255 +0 0.0456 +0 0.1778 +0 0.2839 +0 0.1312 +0 0.4019 +0 0.0686 +0 0.0647 +0 0.1636 +0 0.1463 +0 0.0799 +0 0.0853 +0 0.4998 +0 0.0961 +0 0.0704 +0 0.0386 +0 0.0439 +0 0.1214 +0 0.1663 +0 0.0935 +0 0.4714 +0 0.1160 +0 0.0591 +0 0.5854 +0 0.1202 +0 0.0542 +0 0.0822 +0 0.0831 +0 0.2109 +0 0.1009 +0 0.0895 +0 0.0623 +0 0.2293 +0 0.2438 +0 0.0893 +0 0.1258 +0 0.6760 +0 0.2005 +0 0.0719 +0 0.1330 +0 0.0700 +0 0.0749 +0 0.0910 +0 0.0682 +0 0.0774 +0 0.0961 +0 0.0713 +0 0.1104 +0 0.0911 +0 0.0875 +0 0.2481 +0 0.1103 +0 0.0619 +0 0.1754 +0 0.0412 +0 0.0644 +0 0.0537 +0 0.0536 +0 0.1688 +0 0.2397 +0 0.1547 +0 0.1238 +0 0.2936 +0 0.1586 +0 0.2753 +0 0.0706 +0 0.1355 +0 0.0663 +0 0.1212 +0 0.1264 +0 0.3928 +0 0.0497 +0 0.1345 +0 0.1259 +0 0.2381 +0 0.0927 +0 0.0921 +0 0.1685 +0 0.1805 +0 0.0883 +0 0.1888 +0 0.0576 +0 0.0887 +0 0.0723 +0 0.1188 +0 0.0614 +0 0.0700 +0 0.0472 +0 0.1428 +0 0.2357 +0 0.2124 +0 0.0588 +0 0.0696 +0 0.1978 +0 0.1940 +0 0.1268 +0 0.1137 +0 0.0872 +0 0.0982 +0 0.0457 +0 0.1018 +0 0.0652 +0 0.0941 +0 0.0636 +0 0.2141 +0 0.1793 +0 0.3498 +0 0.2041 +0 0.2042 +0 0.0599 +0 0.1150 +0 0.0764 +0 0.1273 +0 0.0693 +0 0.0857 +1 0.8461 +0 0.1199 +0 0.3782 +0 0.0940 +0 0.0822 +0 0.0426 +0 0.0506 +0 0.0979 +0 0.2677 +0 0.0568 +0 0.0930 +0 0.1301 +0 0.1379 +0 0.0404 +0 0.4623 +0 0.0557 +0 0.0711 +0 0.0898 +0 0.0686 +0 0.1189 +0 0.0742 +0 0.7391 +0 0.0884 +0 0.0687 +0 0.1495 +0 0.4061 +0 0.2710 +0 0.1603 +0 0.0648 +0 0.2768 +0 0.0746 +0 0.0503 +0 0.1730 +0 0.1378 +0 0.1213 +0 0.0547 +0 0.1071 +0 0.1340 +0 0.6609 +0 0.2193 +0 0.0654 +0 0.1048 +0 0.1153 +0 0.2106 +0 0.1095 +0 0.2503 +0 0.1028 +0 0.0884 +0 0.0552 +0 0.1309 +0 0.0572 +0 0.0701 +0 0.0546 +0 0.2155 +0 0.2041 +0 0.0639 +0 0.0559 +0 0.0866 +0 0.1021 +0 0.1202 +0 0.0835 +0 0.0770 +0 0.0299 +0 0.0558 +0 0.0985 +0 0.1806 +0 0.2904 +0 0.3513 +0 0.2087 +0 0.2040 +0 0.1710 +0 0.0923 +1 0.8065 +0 0.3245 +0 0.1291 +0 0.1602 +0 0.1090 +0 0.1502 +0 0.1202 +0 0.1338 +0 0.0843 +0 0.1181 +0 0.0680 +0 0.2782 +0 0.2471 +0 0.3258 +0 0.1642 +0 0.2434 +0 0.1305 +0 0.0919 +0 0.0881 +0 0.1109 +0 0.0717 +0 0.0768 +0 0.0594 +0 0.0621 +0 0.3400 +0 0.0682 +0 0.1534 +0 0.3603 +0 0.1433 +0 0.0995 +0 0.0644 +0 0.1031 +0 0.0510 +0 0.0359 +0 0.0779 +0 0.0907 +0 0.1612 +0 0.0429 +0 0.1864 +0 0.0754 +0 0.1866 +0 0.1608 +0 0.1349 +0 0.4747 +0 0.1103 +0 0.1313 +0 0.0735 +0 0.1052 +0 0.0436 +0 0.0807 +0 0.0371 +0 0.0818 +0 0.0857 +0 0.0722 +0 0.0564 +0 0.1094 +0 0.1406 +0 0.0406 +0 0.0869 +0 0.0712 +0 0.3424 +0 0.1493 +0 0.0410 +0 0.1141 +0 0.1401 +0 0.1315 +0 0.2728 +0 0.0675 +0 0.1252 +0 0.1219 +0 0.2514 +0 0.0797 +0 0.1049 +0 0.1922 +0 0.1125 +0 0.0624 +0 0.0635 +0 0.1694 +0 0.0841 +0 0.2124 +0 0.1719 +0 0.1535 +0 0.1449 +0 0.0950 +0 0.0960 +0 0.0763 +0 0.2276 +0 0.1683 +0 0.2596 +0 0.0488 +0 0.0570 +0 0.0774 +0 0.2311 +0 0.2059 +0 0.0579 +0 0.0659 +0 0.2594 +0 0.1438 +0 0.0549 +0 0.1514 +0 0.2402 +0 0.0825 +0 0.1122 +0 0.1933 +0 0.0696 +0 0.0927 +0 0.2630 +0 0.6411 +0 0.3334 +0 0.1029 +0 0.3022 +0 0.1091 +0 0.0623 +0 0.0616 +0 0.1239 +0 0.1127 +0 0.1896 +0 0.2515 +0 0.0287 +0 0.0651 +0 0.0966 +0 0.0789 +0 0.0508 +0 0.1206 +0 0.0939 +0 0.1626 +0 0.1288 +0 0.1294 +0 0.6978 +1 0.8172 +0 0.0604 +0 0.7375 +0 0.0582 +0 0.1186 +0 0.0772 +0 0.1321 +0 0.4994 +0 0.0430 +0 0.0419 +0 0.0716 +0 0.0411 +0 0.0648 +0 0.1082 +0 0.1339 +0 0.1293 +0 0.0997 +0 0.1380 +0 0.1401 +0 0.0976 +0 0.0891 +0 0.3390 +0 0.7052 +0 0.1142 +0 0.0611 +0 0.0619 +0 0.0349 +0 0.0686 +0 0.0927 +0 0.6270 +0 0.1746 +0 0.1614 +0 0.1852 +0 0.0655 +0 0.0740 +0 0.2862 +0 0.1615 +0 0.1034 +0 0.0760 +0 0.0596 +0 0.1303 +0 0.1988 +0 0.1030 +0 0.0947 +0 0.0601 +0 0.0803 +0 0.0722 +0 0.1001 +0 0.0519 +0 0.0705 +0 0.0565 +0 0.2841 +0 0.0909 +0 0.3822 +0 0.1001 +0 0.2421 +0 0.1380 +0 0.0418 +0 0.1364 +0 0.1585 +0 0.1217 +0 0.2542 +0 0.1520 +0 0.1937 +0 0.1775 +0 0.0446 +0 0.1109 +0 0.1298 +0 0.6808 +0 0.1168 +0 0.1081 +0 0.0889 +0 0.0413 +0 0.0943 +0 0.7151 +0 0.0994 +0 0.0657 +0 0.0612 +0 0.1910 +0 0.4724 +0 0.2184 +0 0.0782 +1 0.7670 +0 0.1177 +0 0.0881 +0 0.1166 +0 0.1247 +0 0.0621 +0 0.0630 +0 0.2879 +0 0.1329 +0 0.2425 +0 0.2054 +0 0.3243 +0 0.0735 +0 0.0706 +0 0.0904 +0 0.0641 +0 0.3610 +0 0.0547 +0 0.0621 +0 0.0876 +0 0.3724 +0 0.1210 +0 0.1597 +0 0.0739 +0 0.1575 +0 0.0550 +0 0.1350 +0 0.1525 +0 0.1134 +0 0.2672 +0 0.0381 +0 0.0754 +0 0.6582 +0 0.0519 +0 0.1551 +0 0.0637 +0 0.1148 +0 0.1237 +0 0.1206 +0 0.2761 +0 0.0663 +0 0.2585 +0 0.0876 +0 0.0807 +0 0.4141 +0 0.1197 +0 0.0442 +0 0.0916 +0 0.1669 +0 0.0544 +0 0.0679 +0 0.2717 +0 0.2752 +0 0.2901 +0 0.0904 +0 0.0664 +0 0.1138 +0 0.0914 +0 0.0621 +0 0.0506 +0 0.0472 +0 0.3493 +0 0.0471 +0 0.1311 +0 0.0446 +0 0.0685 +0 0.0606 +0 0.3615 +0 0.3166 +0 0.1588 +0 0.0933 +0 0.0818 +0 0.0980 +0 0.1584 +0 0.0863 +0 0.2584 +0 0.1313 +0 0.1402 +0 0.0962 +0 0.0966 +0 0.0962 +0 0.0634 +0 0.2294 +0 0.0606 +0 0.2110 +0 0.3738 +0 0.1943 +0 0.4136 +0 0.1156 +0 0.0592 +0 0.1010 +0 0.1156 +0 0.1262 +0 0.1621 +0 0.0792 +0 0.0456 +0 0.6429 +0 0.0884 +0 0.0779 +0 0.1454 +0 0.2526 +0 0.1000 +1 0.7505 +0 0.2056 +0 0.1748 +0 0.4464 +0 0.0399 +0 0.1058 +0 0.0508 +0 0.1554 +0 0.2470 +0 0.0782 +0 0.0979 +0 0.1989 +0 0.0582 +0 0.1060 +0 0.1375 +0 0.0777 +0 0.0665 +0 0.2870 +0 0.1238 +0 0.3799 +0 0.1458 +0 0.3026 +0 0.1288 +0 0.0632 +0 0.1561 +0 0.0962 +0 0.0636 +0 0.0774 +0 0.1924 +0 0.0838 +0 0.2505 +0 0.1401 +0 0.1175 +0 0.3128 +0 0.0495 +0 0.0939 +0 0.1075 +0 0.1888 +0 0.0927 +0 0.0581 +0 0.1343 +0 0.1007 +0 0.1347 +0 0.0888 +0 0.1716 +0 0.0797 +0 0.0823 +0 0.1597 +0 0.0777 +0 0.0363 +0 0.1182 +0 0.0999 +0 0.2985 +0 0.0832 +0 0.1166 +0 0.0662 +0 0.0817 +0 0.0597 +0 0.0516 +0 0.0796 +0 0.1092 +0 0.1221 +0 0.1022 +0 0.6167 +0 0.0919 +0 0.1687 +0 0.0969 +0 0.0652 +0 0.0417 +0 0.0856 +0 0.1224 +0 0.0615 +0 0.0817 +0 0.0752 +0 0.1670 +0 0.5803 +0 0.2519 +0 0.1290 +0 0.1352 +0 0.1208 +0 0.1384 +1 0.8237 +0 0.0452 +0 0.0332 +0 0.2375 +0 0.4702 +0 0.0387 +0 0.1059 +0 0.0565 +0 0.1033 +0 0.1145 +0 0.1010 +0 0.1237 +0 0.1620 +0 0.0547 +0 0.0773 +0 0.2099 +0 0.2569 +0 0.0674 +0 0.0642 +0 0.3147 +0 0.0849 +0 0.1712 +0 0.0381 +0 0.1121 +0 0.4609 +0 0.1189 +0 0.5674 +0 0.0640 +0 0.1101 +0 0.2367 +0 0.0535 +0 0.2074 +0 0.1081 +0 0.0792 +0 0.1073 +0 0.0890 +0 0.1918 +0 0.0698 +0 0.0838 +0 0.0911 +0 0.0786 +0 0.1460 +0 0.0695 +0 0.0994 +0 0.1082 +0 0.1823 +0 0.2314 +0 0.1135 +0 0.1067 +0 0.0566 +0 0.3999 +0 0.2436 +0 0.1197 +0 0.1637 +0 0.1852 +0 0.0542 +0 0.0528 +0 0.1233 +0 0.1772 +0 0.0777 +0 0.0657 +0 0.0942 +0 0.2255 +0 0.1752 +0 0.1058 +0 0.0474 +0 0.1510 +0 0.1121 +0 0.0816 +0 0.0966 +0 0.1588 +0 0.1767 +0 0.0580 +0 0.1463 +0 0.0467 +0 0.0964 +0 0.0923 +0 0.1262 +0 0.3196 +0 0.0748 +0 0.1329 +0 0.0638 +0 0.1380 +0 0.0651 +0 0.1650 +0 0.0961 +0 0.0661 +0 0.0570 +0 0.1160 +0 0.0973 +0 0.0816 +0 0.1905 +0 0.0760 +0 0.0860 +0 0.1862 +0 0.0669 +0 0.2194 +0 0.1229 +0 0.0530 +0 0.0520 +0 0.0832 +0 0.1339 +0 0.1248 +0 0.1112 +0 0.1459 +0 0.2620 +0 0.3837 +0 0.0693 +0 0.3295 +0 0.0638 +0 0.1284 +0 0.3350 +0 0.0897 +0 0.1258 +0 0.0372 +0 0.1991 +0 0.1037 +0 0.0553 +0 0.0429 +0 0.1516 +0 0.0605 +0 0.0873 +0 0.0761 +0 0.1347 +0 0.3964 +0 0.0685 +0 0.1460 +0 0.0463 +0 0.3314 +0 0.0792 +0 0.2434 +0 0.1337 +0 0.1010 +0 0.2483 +0 0.5513 +0 0.1589 +0 0.0901 +0 0.1054 +0 0.0947 +0 0.0821 +0 0.1600 +0 0.0657 +0 0.0348 +0 0.0682 +0 0.3134 +0 0.0687 +0 0.1022 +0 0.0933 +0 0.0652 +0 0.1547 +0 0.0480 +0 0.0551 +0 0.1586 +0 0.5859 +0 0.1554 +0 0.0548 +0 0.2729 +0 0.2051 +0 0.0800 +0 0.5905 +0 0.0690 +0 0.0647 +0 0.2297 +0 0.0677 +0 0.0881 +0 0.4219 +0 0.2973 +0 0.1600 +0 0.1052 +0 0.2018 +0 0.0644 +0 0.1442 +0 0.0727 +0 0.1054 +0 0.1183 +0 0.0764 +0 0.1409 +0 0.0744 +0 0.0574 +0 0.2325 +0 0.1003 +0 0.0995 +0 0.0758 +0 0.1885 +0 0.1719 +0 0.0893 +0 0.0691 +0 0.1218 +0 0.0971 +0 0.1560 +0 0.0761 +0 0.0810 +0 0.0577 +0 0.1032 +0 0.5312 +0 0.0451 +0 0.0870 +0 0.1380 +1 0.7666 +0 0.7370 +0 0.0984 +0 0.0422 +0 0.2084 +0 0.1395 +0 0.4974 +0 0.0671 +0 0.0670 +0 0.0820 +0 0.2886 +0 0.0726 +1 0.8273 +0 0.1989 +0 0.0862 +0 0.1248 +0 0.1473 +0 0.0922 +0 0.1553 +0 0.0678 +0 0.1545 +0 0.0820 +0 0.1150 +1 0.8065 +0 0.0988 +0 0.0860 +0 0.0508 +0 0.5196 +0 0.0859 +0 0.0904 +0 0.0362 +0 0.0485 +0 0.0496 +0 0.2052 +0 0.0707 +0 0.0626 +0 0.1201 +0 0.2994 +0 0.1281 +0 0.1416 +0 0.1823 +0 0.0413 +0 0.0572 +0 0.0524 +0 0.0612 +0 0.0672 +0 0.0379 +0 0.0814 +0 0.1017 +0 0.1771 +0 0.2489 +0 0.1189 +0 0.1099 +0 0.0962 +0 0.1335 +0 0.0986 +0 0.0711 +0 0.2131 +0 0.1175 +0 0.1039 +0 0.0829 +0 0.1166 +0 0.1711 +0 0.0918 +0 0.1093 +0 0.1676 +0 0.1969 +0 0.1548 +0 0.0720 +0 0.0631 +0 0.1036 +0 0.1394 +0 0.1566 +0 0.1015 +0 0.2011 +0 0.0727 +0 0.1651 +0 0.1136 +0 0.0956 +0 0.2108 +0 0.0885 +0 0.0773 +0 0.1404 +0 0.1551 +0 0.0395 +0 0.1076 +0 0.0602 +0 0.1014 +0 0.0733 +0 0.0897 +0 0.0886 +0 0.0828 +0 0.0493 +0 0.0685 +0 0.2405 +0 0.1748 +0 0.0634 +0 0.1452 +0 0.0986 +0 0.2144 +0 0.1743 +0 0.0678 +0 0.0566 +0 0.2005 +1 0.8241 +0 0.1364 +0 0.0957 +0 0.2406 +0 0.0545 +0 0.3428 +0 0.1789 +0 0.0504 +0 0.0419 +0 0.2801 +0 0.1846 +0 0.1532 +0 0.0445 +0 0.0762 +0 0.2115 +0 0.1022 +0 0.1659 +0 0.0541 +0 0.0918 +0 0.1789 +0 0.0555 +0 0.1534 +0 0.1168 +0 0.0714 +0 0.0703 +0 0.2890 +0 0.0537 +0 0.1820 +0 0.0627 +0 0.0678 +0 0.1535 +0 0.2189 +0 0.2005 +0 0.2123 +0 0.1681 +0 0.6372 +0 0.1289 +0 0.0458 +0 0.2190 +0 0.0600 +0 0.5134 +0 0.0720 +0 0.1142 +0 0.0760 +0 0.1678 +0 0.0558 +0 0.0355 +0 0.1974 +0 0.6831 +0 0.0473 +0 0.3045 +0 0.2007 +0 0.1056 +0 0.5646 +0 0.3422 +0 0.0677 +1 0.8997 +0 0.0886 +0 0.1687 +0 0.1842 +0 0.0837 +0 0.0502 +0 0.0572 +0 0.0858 +0 0.0417 +0 0.0714 +0 0.0871 +0 0.7230 +0 0.0929 +0 0.1447 +0 0.0695 +0 0.7289 +0 0.0524 +0 0.0724 +0 0.0870 +0 0.0576 +0 0.1332 +0 0.0580 +1 0.7985 +0 0.1022 +0 0.1793 +0 0.2335 +0 0.0679 +0 0.1490 +0 0.0925 +0 0.1098 +0 0.1323 +1 0.8675 +0 0.0598 +0 0.1658 +0 0.0655 +0 0.0832 +0 0.0672 +0 0.1747 +0 0.0635 +0 0.1405 +0 0.1970 +0 0.0670 +0 0.4022 +0 0.0921 +0 0.1021 +0 0.1928 +0 0.1026 +0 0.0960 +1 0.8087 +0 0.0672 +0 0.1000 +0 0.0300 +0 0.1142 +0 0.0763 +0 0.1101 +0 0.0412 +0 0.0826 +0 0.0484 +0 0.3961 +0 0.0521 +0 0.0478 +0 0.1164 +0 0.2466 +0 0.3436 +0 0.1070 +0 0.0609 +0 0.0773 +0 0.2495 +0 0.4053 +0 0.1369 +0 0.0520 +0 0.0895 +0 0.0773 +0 0.1014 +0 0.0612 +0 0.1710 +0 0.0933 +0 0.0982 +0 0.1048 +0 0.0711 +0 0.0684 +0 0.1607 +0 0.1188 +0 0.7257 +0 0.3172 +0 0.0698 +0 0.0910 +0 0.3405 +0 0.1566 +0 0.0527 +0 0.0981 +0 0.0923 +0 0.0675 +0 0.0595 +0 0.0430 +0 0.0649 +0 0.1856 +0 0.0566 +0 0.1194 +0 0.0495 +0 0.2993 +0 0.1223 +0 0.3352 +0 0.0366 +0 0.0656 +0 0.1294 +0 0.4898 +0 0.0596 +0 0.2356 +0 0.1079 +0 0.1182 +0 0.0685 +0 0.0534 +0 0.0784 +0 0.0716 +0 0.1438 +0 0.1519 +0 0.0608 +0 0.2051 +0 0.0665 +0 0.0601 +0 0.3156 +0 0.1532 +0 0.0778 +0 0.0276 +0 0.0945 +0 0.1092 +0 0.2028 +0 0.4310 +0 0.0507 +0 0.1183 +0 0.1207 +0 0.0683 +0 0.0390 +0 0.1354 +0 0.2064 +0 0.1245 +0 0.2844 +1 0.7956 +0 0.0659 +0 0.0694 +0 0.0476 +0 0.1179 +0 0.1393 +0 0.1244 +0 0.0408 +0 0.1645 +0 0.1121 +0 0.1005 +0 0.1206 +0 0.0745 +0 0.0405 +0 0.0481 +0 0.1123 +0 0.1134 +0 0.1099 +0 0.0841 +0 0.0526 +0 0.0865 +0 0.0950 +0 0.1569 +0 0.0864 +0 0.1647 +0 0.0811 +0 0.0733 +0 0.2623 +0 0.0807 +1 0.8851 +0 0.0760 +0 0.0382 +0 0.1376 +0 0.0840 +0 0.0546 +0 0.3350 +0 0.1941 +0 0.0941 +0 0.1892 +0 0.1159 +0 0.0853 +0 0.0803 +0 0.1987 +0 0.1514 +0 0.0779 +0 0.0450 +0 0.7469 +0 0.1065 +0 0.0676 +1 0.8399 +0 0.1441 +0 0.6223 +0 0.1492 +0 0.0762 +0 0.1653 +0 0.0556 +0 0.1011 +0 0.1021 +0 0.1949 +0 0.1081 +0 0.0433 +0 0.1021 +0 0.0835 +0 0.2265 +0 0.0540 +0 0.0803 +0 0.2126 +0 0.3909 +0 0.0928 +0 0.2733 +0 0.0526 +0 0.1648 +0 0.1703 +0 0.1305 +0 0.0682 +0 0.1106 +0 0.0675 +0 0.0863 +0 0.0925 +0 0.0693 +0 0.1297 +0 0.1624 +0 0.0856 +0 0.1512 +0 0.0636 +0 0.0874 +0 0.3693 +0 0.0674 +0 0.7106 +0 0.0589 +0 0.0745 +0 0.1055 +0 0.1396 +0 0.0812 +0 0.1400 +0 0.0764 +0 0.0778 +0 0.0614 +0 0.0651 +0 0.2613 +0 0.1219 +0 0.0872 +0 0.1963 +0 0.2492 +0 0.2401 +0 0.1630 +0 0.0840 +0 0.1520 +0 0.0496 +0 0.0865 +0 0.1964 +0 0.0827 +0 0.0536 +0 0.0739 +0 0.1378 +0 0.0382 +0 0.1279 +0 0.1879 +0 0.0788 +0 0.0460 +0 0.1087 +0 0.2617 +0 0.1250 +0 0.0622 +0 0.0568 +0 0.0940 +0 0.2132 +0 0.2757 +0 0.0670 +0 0.0990 +0 0.0638 +0 0.0914 +0 0.0355 +0 0.1291 +0 0.1822 +0 0.2518 +0 0.0777 +0 0.0679 +0 0.1156 +0 0.0916 +0 0.0879 +0 0.2244 +0 0.1793 +0 0.1641 +0 0.1390 +0 0.1004 +0 0.0420 +0 0.0611 +0 0.1162 +0 0.1628 +0 0.0689 +0 0.0440 +0 0.0363 +0 0.0624 +0 0.1155 +0 0.0735 +0 0.0797 +0 0.1611 +0 0.5087 +0 0.1147 +0 0.1039 +0 0.3341 +0 0.0643 +0 0.3362 +0 0.1158 +0 0.1585 +0 0.1566 +0 0.0709 +0 0.0998 +0 0.1452 +0 0.1500 +0 0.0986 +0 0.6398 +0 0.2759 +0 0.0966 +0 0.0482 +0 0.1522 +1 0.8576 +0 0.1433 +0 0.1366 +0 0.1464 +0 0.1830 +0 0.0582 +0 0.0617 +0 0.2140 +1 0.8438 +0 0.1909 +0 0.0438 +0 0.0492 +0 0.0986 +0 0.0740 +0 0.1110 +0 0.0478 +0 0.0642 +0 0.0460 +0 0.1978 +0 0.1566 +0 0.0880 +0 0.0857 +0 0.1174 +0 0.0769 +0 0.0939 +0 0.1682 +0 0.0962 +0 0.0994 +0 0.1214 +0 0.1728 +0 0.3750 +0 0.2232 +0 0.1033 +0 0.1319 +0 0.4864 +0 0.1436 +0 0.1438 +0 0.1219 +0 0.0973 +0 0.1076 +0 0.1963 +0 0.2033 +0 0.0430 +0 0.0621 +0 0.0559 +0 0.3094 +0 0.1951 +0 0.1320 +0 0.0716 +0 0.0414 +0 0.0545 +0 0.1708 +0 0.2869 +0 0.0841 +0 0.4070 +0 0.1184 +0 0.1529 +0 0.2307 +0 0.1283 +0 0.5636 +0 0.2868 +0 0.0666 +0 0.2034 +0 0.0721 +0 0.5116 +0 0.0722 +0 0.0790 +0 0.0987 +0 0.1592 +0 0.0785 +0 0.1578 +0 0.1315 +0 0.0825 +0 0.0793 +0 0.1952 +0 0.4333 +0 0.1171 +0 0.1010 +0 0.0743 +0 0.5207 +0 0.1693 +0 0.2049 +0 0.1781 +0 0.0949 +0 0.1014 +0 0.0831 +0 0.0588 +0 0.0748 +0 0.0500 +0 0.1236 +0 0.1630 +0 0.1223 +0 0.0927 +0 0.3693 +0 0.0792 +0 0.1019 +0 0.0552 +0 0.2966 +0 0.1232 +0 0.0616 +0 0.2207 +0 0.1143 +0 0.0760 +0 0.0519 +1 0.8901 +0 0.0683 +0 0.5999 +0 0.0733 +0 0.1674 +0 0.0365 +0 0.0851 +0 0.1291 +0 0.0653 +0 0.0667 +0 0.1178 +0 0.0392 +0 0.1079 +0 0.0779 +0 0.0755 +0 0.0539 +0 0.1135 +0 0.0654 +0 0.0891 +0 0.3050 +0 0.0775 +0 0.0416 +0 0.0898 +0 0.1755 +0 0.0993 +0 0.1093 +0 0.0997 +0 0.0943 +0 0.0687 +1 0.8154 +0 0.1264 +0 0.1379 +0 0.1372 +0 0.0463 +0 0.1319 +0 0.1093 +0 0.0996 +0 0.0812 +0 0.0773 +0 0.1540 +0 0.1578 +0 0.0882 +0 0.6647 +0 0.1889 +0 0.1441 +0 0.3562 +0 0.1219 +0 0.6236 +0 0.0938 +0 0.1347 +0 0.0929 +1 0.8756 +0 0.1749 +0 0.0961 +0 0.1390 +0 0.0585 +0 0.1036 +0 0.5849 +0 0.1118 +0 0.2531 +0 0.0732 +0 0.0787 +0 0.1318 +0 0.0721 +0 0.2733 +0 0.1912 +0 0.3186 +0 0.1040 +0 0.1111 +0 0.0745 +0 0.1476 +0 0.1556 +0 0.1114 +0 0.0475 +0 0.1097 +0 0.0795 +0 0.1916 +0 0.0438 +0 0.2777 +0 0.3498 +0 0.1346 +0 0.0504 +0 0.0660 +0 0.0906 +0 0.1704 +0 0.0820 +0 0.1111 +0 0.6492 +0 0.0648 +0 0.1366 +0 0.0876 +0 0.0853 +0 0.1219 +0 0.0520 +0 0.2658 +0 0.1780 +0 0.0455 +0 0.0606 +0 0.0971 +0 0.0846 +0 0.7321 +0 0.0633 +0 0.1499 +0 0.1042 +0 0.0544 +0 0.1033 +0 0.0461 +0 0.0840 +0 0.0706 +0 0.1642 +0 0.3713 +0 0.1206 +0 0.1038 +0 0.0918 +0 0.0874 +0 0.0973 +0 0.0563 +0 0.1276 +0 0.1369 +0 0.3371 +0 0.6372 +0 0.1133 +0 0.0934 +0 0.4216 +0 0.0794 +0 0.0362 +0 0.1253 +0 0.2569 +0 0.2525 +0 0.0361 +0 0.1065 +0 0.0886 +0 0.1425 +0 0.0625 +0 0.1370 +0 0.2842 +0 0.1589 +0 0.1117 +0 0.2297 +0 0.2795 +0 0.4214 +0 0.2071 +0 0.1790 +0 0.1238 +0 0.5835 +0 0.1060 +0 0.0775 +0 0.0842 +0 0.0796 +0 0.0817 +0 0.0334 +0 0.0576 +0 0.0736 +0 0.1774 +0 0.0521 +0 0.0807 +0 0.2197 +0 0.2557 +0 0.1068 +0 0.1138 +0 0.0946 +0 0.0511 +0 0.7211 +0 0.0556 +0 0.1362 +0 0.0620 +0 0.1494 +0 0.0902 +0 0.2414 +0 0.1143 +0 0.0705 +0 0.0573 +0 0.1345 +0 0.0729 +0 0.0568 +0 0.1422 +0 0.2621 +0 0.1262 +0 0.1211 +0 0.0412 +0 0.0799 +0 0.1637 +0 0.1097 +0 0.0843 +0 0.0728 +0 0.0471 +0 0.0491 +0 0.0806 +0 0.1140 +0 0.0662 +0 0.3652 +0 0.3328 +0 0.0838 +0 0.0371 +0 0.1049 +0 0.1080 +1 0.8246 +0 0.1565 +0 0.0380 +0 0.3652 +0 0.0912 +0 0.0394 +0 0.0388 +0 0.1068 +0 0.2075 +0 0.0693 +0 0.0955 +0 0.0538 +0 0.1243 +0 0.0794 +0 0.0442 +0 0.0827 +0 0.1629 +0 0.1403 +0 0.0825 +0 0.0530 +0 0.1586 +0 0.0759 +0 0.0630 +0 0.1288 +0 0.0598 +0 0.1243 +0 0.1283 +0 0.0608 +0 0.0525 +0 0.3281 +0 0.0581 +0 0.0534 +0 0.0492 +0 0.0880 +0 0.3601 +0 0.0415 +0 0.5614 +0 0.0610 +0 0.1063 +0 0.2604 +0 0.1451 +0 0.1195 +0 0.0935 +0 0.0589 +0 0.0461 +0 0.1177 +0 0.1062 +0 0.2474 +0 0.3275 +0 0.0612 +0 0.1838 +0 0.1598 +0 0.1941 +0 0.0788 +0 0.0930 +0 0.1079 +0 0.0508 +0 0.0702 +0 0.0870 +0 0.0703 +0 0.1040 +0 0.1504 +0 0.2715 +0 0.3226 +0 0.2266 +0 0.3268 +0 0.0889 +0 0.1099 +0 0.7482 +0 0.0537 +0 0.1829 +0 0.1851 +0 0.2363 +0 0.3335 +0 0.1088 +0 0.3423 +0 0.1575 +0 0.0430 +0 0.1404 +0 0.2268 +0 0.1731 +0 0.2591 +0 0.0756 +0 0.2026 +0 0.1310 +1 0.8171 +0 0.0608 +0 0.0871 +0 0.0722 +0 0.1025 +0 0.0711 +0 0.0929 +0 0.1126 +0 0.0448 +0 0.0850 +0 0.0517 +0 0.1664 +0 0.1362 +0 0.2215 +0 0.0885 +0 0.2920 +0 0.0673 +0 0.0609 +0 0.1226 +0 0.0970 +0 0.1535 +0 0.0677 +0 0.1636 +0 0.0815 +0 0.1092 +0 0.1172 +0 0.4122 +0 0.3194 +0 0.2929 +0 0.0722 +0 0.1014 +0 0.0776 +0 0.0861 +0 0.0921 +0 0.0599 +0 0.0613 +0 0.0759 +0 0.1875 +0 0.0600 +0 0.0968 +0 0.0474 +0 0.1199 +0 0.0667 +0 0.4652 +0 0.1021 +0 0.2478 +0 0.1681 +0 0.2817 +0 0.0886 +0 0.0855 +0 0.1666 +0 0.1738 +0 0.0608 +0 0.2246 +0 0.2177 +0 0.1077 +0 0.0886 +0 0.0459 +0 0.0705 +0 0.1703 +0 0.1537 +0 0.0545 +0 0.0671 +0 0.0670 +0 0.0340 +0 0.1999 +0 0.1618 +0 0.0522 +0 0.0993 +0 0.1320 +0 0.0492 +0 0.0620 +0 0.2140 +0 0.0536 +0 0.0643 +0 0.3900 +0 0.2087 +0 0.1909 +0 0.1614 +0 0.1111 +0 0.0453 +0 0.0628 +0 0.1503 +0 0.1695 +0 0.1397 +0 0.0554 +0 0.1174 +0 0.1103 +0 0.1154 +0 0.1542 +0 0.1489 +0 0.0956 +0 0.2133 +0 0.1955 +0 0.1575 +0 0.0643 +0 0.6377 +0 0.0769 +0 0.0904 +0 0.0872 +0 0.1521 +0 0.2389 +0 0.1103 +0 0.0817 +0 0.3689 +0 0.0485 +0 0.2014 +0 0.7387 +0 0.0821 +0 0.1031 +0 0.1078 +0 0.1886 +0 0.0503 +0 0.0511 +0 0.0355 +0 0.0463 +0 0.1299 +0 0.2735 +0 0.0612 +0 0.0435 +0 0.1302 +0 0.1343 +0 0.6608 +0 0.0591 +0 0.2885 +0 0.0466 +0 0.2500 +0 0.0550 +0 0.1252 +0 0.2390 +0 0.0636 +0 0.1866 +0 0.2200 +0 0.1125 +0 0.1753 +0 0.1428 +0 0.0422 +0 0.0435 +0 0.3002 +0 0.5126 +0 0.0935 +0 0.0741 +0 0.1882 +0 0.1833 +0 0.1001 +0 0.1605 +0 0.0762 +0 0.1839 +0 0.1141 +0 0.0448 +0 0.2765 +0 0.0545 +0 0.0569 +0 0.1028 +0 0.1784 +0 0.1654 +0 0.4533 +0 0.1454 +0 0.1057 +0 0.1720 +0 0.0841 +0 0.1033 +0 0.0883 +0 0.1305 +0 0.0948 +0 0.2180 +0 0.2023 +0 0.0898 +0 0.0717 +0 0.0951 +0 0.0970 +0 0.1172 +0 0.0631 +1 0.8007 +0 0.1200 +0 0.3993 +0 0.0803 +0 0.0990 +0 0.2549 +0 0.2282 +0 0.0922 +0 0.0712 +0 0.2187 +0 0.0804 +0 0.0818 +0 0.1361 +0 0.0699 +0 0.1799 +0 0.0898 +0 0.1599 +0 0.0796 +0 0.1121 +0 0.2897 +0 0.1050 +0 0.0855 +0 0.0971 +0 0.0421 +1 0.7725 +0 0.0431 +0 0.0532 +0 0.1400 +0 0.2567 +0 0.0992 +0 0.1767 +0 0.0711 +0 0.1064 +0 0.1532 +0 0.1266 +0 0.1379 +1 0.8371 +0 0.2571 +0 0.0450 +0 0.1056 +0 0.0909 +0 0.5089 +0 0.0761 +0 0.0739 +0 0.0938 +0 0.2220 +0 0.1332 +0 0.0421 +0 0.0623 +0 0.2517 +0 0.1216 +0 0.3609 +0 0.5780 +0 0.1012 +0 0.4164 +0 0.0710 +0 0.0360 +0 0.1242 +0 0.5032 +0 0.1329 +0 0.3399 +0 0.1125 +0 0.0980 +0 0.2443 +0 0.0564 +0 0.0605 +0 0.1242 +0 0.2483 +0 0.2808 +0 0.1127 +0 0.0848 +1 0.7618 +0 0.1120 +0 0.0611 +0 0.0871 +0 0.0481 +0 0.0623 +0 0.1137 +0 0.1538 +0 0.1652 +0 0.2107 +0 0.1351 +0 0.1568 +0 0.0615 +0 0.1900 +0 0.0839 +0 0.1260 +0 0.0893 +0 0.0955 +0 0.1884 +0 0.0517 +0 0.0665 +0 0.0801 +0 0.0627 +0 0.0812 +0 0.0536 +0 0.0735 +0 0.1048 +0 0.0353 +0 0.1351 +0 0.1154 +0 0.1368 +0 0.0783 +0 0.1295 +0 0.1754 +0 0.1744 +0 0.1354 +0 0.0852 +0 0.1388 +0 0.1279 +0 0.0828 +0 0.0705 +0 0.0942 +0 0.6660 +0 0.1118 +0 0.3208 +0 0.0893 +0 0.1866 +0 0.4233 +0 0.1395 +0 0.1494 +0 0.1278 +0 0.0509 +0 0.0965 +0 0.1553 +0 0.1197 +0 0.2621 +0 0.0565 +0 0.2417 +0 0.1513 +0 0.0802 +0 0.1411 +0 0.0934 +0 0.0860 +0 0.1304 +0 0.1368 +0 0.2283 +0 0.1324 +0 0.3999 +0 0.3030 +0 0.1036 +0 0.2181 +0 0.4037 +0 0.1247 +0 0.0667 +0 0.0559 +0 0.0729 +0 0.1759 +0 0.0949 +0 0.0700 +0 0.1835 +0 0.0688 +0 0.1434 +0 0.1187 +0 0.0726 +0 0.0760 +0 0.1064 +0 0.0874 +0 0.1413 +0 0.0904 +0 0.0893 +0 0.0876 +0 0.2201 +0 0.4490 +0 0.1347 +0 0.0857 +0 0.3528 +0 0.1500 +0 0.0370 +0 0.2065 +0 0.1429 +0 0.1033 +0 0.1184 +0 0.0746 +0 0.0893 +0 0.3230 +0 0.1907 +0 0.0445 +0 0.0524 +0 0.1175 +0 0.0690 +0 0.0893 +0 0.1823 +0 0.1256 +0 0.2260 +0 0.0986 +0 0.2101 +0 0.0630 +0 0.0897 +0 0.0935 +0 0.0611 +0 0.1509 +0 0.1608 +0 0.0604 +0 0.0734 +0 0.0702 +0 0.0901 +0 0.3207 +0 0.0423 +0 0.0952 +0 0.0923 +1 0.8477 +0 0.0685 +0 0.0500 +0 0.1119 +0 0.1515 +0 0.3096 +0 0.5431 +0 0.1373 +0 0.0510 +0 0.0952 +0 0.0599 +0 0.1168 +0 0.0730 +0 0.1587 +0 0.1362 +0 0.0980 +0 0.0744 +0 0.0916 +0 0.1273 +0 0.1023 +0 0.1212 +0 0.1325 +0 0.0939 +0 0.0757 +0 0.1865 +0 0.0569 +0 0.0289 +0 0.0547 +0 0.0831 +0 0.2167 +0 0.0822 +0 0.0782 +0 0.1717 +0 0.0439 +0 0.1619 +0 0.7334 +0 0.0412 +0 0.1392 +0 0.0480 +0 0.0776 +0 0.4587 +0 0.1312 +0 0.0937 +0 0.1578 +0 0.1230 +0 0.0843 +1 0.8045 +0 0.4131 +0 0.0636 +0 0.0938 +0 0.1646 +0 0.0673 +0 0.0597 +0 0.0670 +0 0.1315 +0 0.0866 +0 0.0931 +0 0.0718 +0 0.0406 +0 0.4363 +0 0.0450 +0 0.1214 +0 0.0840 +0 0.1373 +0 0.0357 +0 0.0642 +0 0.1011 +0 0.0741 +0 0.1409 +0 0.1253 +0 0.1156 +0 0.1537 +0 0.1196 +0 0.1273 +0 0.1560 +0 0.1042 +0 0.0537 +0 0.0428 +0 0.0818 +0 0.1796 +0 0.2814 +0 0.0616 +0 0.0463 +0 0.0697 +0 0.1254 +0 0.1259 +0 0.0962 +0 0.1046 +0 0.3543 +0 0.1580 +0 0.2407 +0 0.2643 +0 0.0604 +1 0.7586 +0 0.1013 +0 0.0481 +0 0.1756 +0 0.1572 +0 0.0635 +0 0.1362 +0 0.1386 +0 0.2284 +0 0.1250 +0 0.0759 +0 0.6208 +0 0.0560 +0 0.1753 +0 0.1149 +0 0.0697 +0 0.4257 +0 0.0644 +0 0.1142 +0 0.1364 +0 0.0675 +0 0.1375 +0 0.0896 +0 0.1333 +0 0.0640 +0 0.1124 +0 0.1418 +0 0.1847 +0 0.0848 +0 0.0739 +0 0.1375 +0 0.0740 +0 0.0784 +0 0.2221 +0 0.1891 +0 0.1603 +0 0.0663 +0 0.0831 +0 0.3184 +0 0.0804 +0 0.0793 +0 0.0631 +0 0.0911 +0 0.0507 +0 0.1252 +0 0.0860 +0 0.1109 +0 0.2456 +0 0.0898 +0 0.0882 +0 0.2456 +0 0.0518 +1 0.8513 +0 0.0620 +0 0.1078 +0 0.1443 +0 0.6634 +0 0.0753 +0 0.0536 +0 0.1867 +0 0.2970 +0 0.1091 +0 0.1615 +0 0.0707 +0 0.0520 +0 0.4065 +0 0.0652 +0 0.1062 +0 0.0492 +0 0.0273 +0 0.0436 +0 0.2714 +0 0.0962 +0 0.1935 +0 0.0594 +0 0.2852 +0 0.1751 +0 0.2616 +0 0.1029 +0 0.3292 +0 0.1362 +0 0.1256 +0 0.0485 +0 0.0794 +0 0.0351 +0 0.3725 +0 0.1302 +0 0.0974 +0 0.3723 +0 0.1724 +0 0.1827 +0 0.0971 +0 0.0680 +0 0.0639 +0 0.1804 +0 0.0467 +0 0.0717 +0 0.1069 +0 0.2401 +0 0.0676 +0 0.1529 +0 0.0913 +0 0.1019 +0 0.1382 +0 0.0689 +0 0.0949 +0 0.2577 +0 0.1007 +0 0.7457 +0 0.1471 +0 0.1115 +0 0.3457 +0 0.0551 +0 0.1161 +0 0.1503 +0 0.1443 +0 0.1693 +0 0.1103 +0 0.0955 +0 0.1137 +0 0.0759 +0 0.0893 +0 0.1342 +0 0.1339 +0 0.2118 +0 0.0705 +0 0.0840 +0 0.0607 +0 0.2714 +0 0.0420 +1 0.7570 +0 0.1778 +0 0.1293 +0 0.1547 +0 0.3312 +0 0.2006 +0 0.0462 +0 0.0495 +0 0.0779 +0 0.0998 +0 0.1689 +0 0.2408 +0 0.1214 +0 0.0489 +0 0.1008 +0 0.0482 +0 0.2639 +0 0.1279 +0 0.1672 +0 0.1093 +0 0.1171 +0 0.0959 +0 0.0756 +0 0.1013 +0 0.0715 +0 0.0607 +0 0.1747 +0 0.2006 +0 0.4510 +0 0.1829 +0 0.0916 +0 0.1509 +0 0.1110 +0 0.0793 +0 0.1378 +0 0.4737 +0 0.0714 +0 0.0508 +0 0.2086 +0 0.1411 +0 0.1960 +0 0.0528 +0 0.0606 +0 0.1373 +0 0.0797 +0 0.0960 +0 0.0797 +0 0.0601 +0 0.0548 +0 0.1323 +0 0.1016 +0 0.1368 +0 0.1209 +0 0.5950 +0 0.1298 +0 0.0978 +0 0.4752 +0 0.0452 +0 0.0431 +0 0.0851 +0 0.0905 +0 0.1248 +0 0.1318 +0 0.0982 +0 0.1336 +0 0.1148 +0 0.0654 +0 0.0831 +0 0.1451 +0 0.0723 +0 0.0615 +0 0.1800 +0 0.3967 +0 0.0898 +0 0.1195 +0 0.1308 +0 0.0558 +0 0.0751 +0 0.0657 +0 0.1178 +0 0.1367 +0 0.7265 +0 0.1806 +0 0.0808 +1 0.2165 +0 0.1079 +0 0.0450 +0 0.1519 +0 0.0862 +0 0.0702 +0 0.1536 +0 0.0540 +0 0.0476 +0 0.1628 +0 0.0436 +0 0.2612 +0 0.1508 +0 0.1166 +0 0.1315 +0 0.1032 +0 0.0677 +1 0.7749 +0 0.2034 +0 0.3223 +0 0.1492 +0 0.0815 +0 0.1815 +0 0.1166 +0 0.1498 +0 0.1071 +0 0.0741 +0 0.0658 +0 0.0766 +0 0.0705 +0 0.1029 +0 0.1032 +0 0.0724 +0 0.0892 +0 0.0497 +0 0.0755 +0 0.0872 +0 0.0975 +0 0.2354 +0 0.0331 +0 0.1175 +0 0.0694 +0 0.1050 +0 0.2288 +0 0.2697 +1 0.7950 +0 0.2167 +0 0.0954 +0 0.1487 +0 0.0922 +0 0.1443 +0 0.0629 +0 0.0961 +0 0.0622 +0 0.1272 +0 0.1143 +0 0.0577 +0 0.2784 +0 0.2629 +0 0.0552 +0 0.1027 +0 0.1795 +0 0.0793 +0 0.0566 +0 0.2337 +0 0.1207 +0 0.1184 +0 0.1221 +0 0.0847 +0 0.2239 +0 0.0566 +0 0.1511 +0 0.4049 +0 0.1000 +0 0.1111 +0 0.0909 +0 0.0886 +0 0.0732 +0 0.1111 +0 0.1462 +0 0.0837 +0 0.0668 +0 0.1171 +0 0.1902 +0 0.2666 +0 0.0496 +0 0.1309 +0 0.1125 +0 0.1767 +0 0.0622 +0 0.0860 +0 0.0776 +0 0.0811 +0 0.0608 +0 0.0857 +0 0.0672 +0 0.0772 +0 0.2186 +0 0.0851 +0 0.0784 +0 0.2677 +0 0.0585 +0 0.0838 +0 0.1091 +0 0.0553 +0 0.0828 +0 0.1726 +0 0.1126 +0 0.0631 +0 0.1827 +0 0.1224 +0 0.1904 +0 0.2156 +0 0.0551 +0 0.1179 +0 0.1198 +0 0.0675 +0 0.1567 +0 0.1064 +0 0.0714 +0 0.1770 +0 0.2672 +0 0.0458 +0 0.0623 +0 0.1588 +0 0.0420 +0 0.0843 +0 0.0794 +0 0.0603 +0 0.0357 +0 0.0932 +0 0.0688 +0 0.0493 +0 0.0791 +0 0.1075 +0 0.0923 +0 0.1047 +0 0.1668 +0 0.0468 +0 0.1122 +0 0.3951 +0 0.1221 +0 0.0731 +0 0.1139 +0 0.1927 +0 0.1363 +0 0.1822 +0 0.3231 +0 0.2310 +0 0.0630 +0 0.1896 +0 0.0467 +0 0.0432 +0 0.1633 +0 0.1276 +0 0.0774 +0 0.2150 +0 0.0294 +0 0.1704 +0 0.0858 +0 0.3114 +0 0.1310 +0 0.1155 +0 0.1520 +0 0.2866 +0 0.0902 +0 0.0317 +0 0.0726 +0 0.1328 +0 0.0744 +0 0.1143 +0 0.0578 +0 0.1784 +0 0.2162 +0 0.0426 +0 0.0689 +0 0.0651 +0 0.1330 +0 0.2965 +0 0.1045 +0 0.1066 +0 0.1379 +0 0.1198 +0 0.4282 +0 0.0908 +0 0.0897 +0 0.1213 +0 0.0785 +0 0.1180 +0 0.4196 +0 0.1606 +0 0.1512 +0 0.0465 +0 0.0550 +0 0.2050 +0 0.0573 +0 0.1677 +0 0.0759 +0 0.0523 +0 0.1150 +0 0.1308 +0 0.0618 +0 0.0651 +0 0.0779 +0 0.1130 +0 0.0854 +0 0.1426 +0 0.0497 +0 0.0870 +0 0.0917 +0 0.1004 +0 0.1530 +0 0.1267 +0 0.0889 +0 0.1115 +0 0.1794 +0 0.1272 +0 0.0389 +0 0.1290 +0 0.1309 +0 0.1528 +0 0.1974 +0 0.0772 +0 0.0495 +0 0.1979 +0 0.0599 +0 0.0475 +0 0.2451 +0 0.1387 +0 0.1081 +1 0.8582 +0 0.0805 +0 0.1174 +0 0.0679 +0 0.0601 +0 0.0773 +0 0.0843 +0 0.2047 +0 0.0825 +0 0.0684 +0 0.5357 +0 0.1171 +0 0.3884 +0 0.0505 +0 0.0869 +0 0.0678 +0 0.1221 +0 0.0627 +0 0.1077 +0 0.0781 +0 0.0492 +0 0.0466 +0 0.1451 +0 0.0774 +0 0.1223 +0 0.3412 +0 0.0957 +0 0.4341 +0 0.0876 +0 0.0512 +0 0.0427 +0 0.0969 +0 0.0835 +0 0.0632 +0 0.0486 +0 0.0402 +0 0.0543 +0 0.1070 +0 0.2359 +0 0.1369 +0 0.1033 +0 0.3653 +0 0.1027 +0 0.0992 +0 0.1118 +0 0.0536 +0 0.0812 +0 0.2565 +0 0.1193 +0 0.0940 +0 0.1281 +0 0.1314 +0 0.1026 +0 0.0810 +0 0.0797 +0 0.0496 +0 0.3987 +0 0.1344 +0 0.2167 +0 0.1630 +0 0.3772 +0 0.0693 +0 0.2101 +0 0.0838 +0 0.0680 +0 0.0488 +0 0.1208 +0 0.6807 +0 0.0674 +0 0.0622 +0 0.1604 +0 0.0700 +0 0.1245 +0 0.1216 +0 0.0612 +0 0.4155 +0 0.0397 +0 0.0559 +0 0.1288 +0 0.0809 +0 0.0764 +0 0.1134 +0 0.0724 +0 0.1714 +0 0.0906 +0 0.0331 +0 0.1451 +0 0.0829 +0 0.1342 +0 0.0747 +0 0.0368 +0 0.1469 +0 0.0635 +0 0.1726 +0 0.0975 +0 0.2154 +0 0.0403 +0 0.0889 +0 0.1604 +0 0.0555 +0 0.0394 +0 0.0737 +0 0.0951 +0 0.3329 +0 0.0388 +0 0.0754 +0 0.1189 +0 0.2222 +0 0.0779 +0 0.0927 +0 0.1643 +0 0.0761 +0 0.2698 +0 0.1918 +0 0.1005 +0 0.0663 +0 0.1811 +0 0.0860 +0 0.4232 +0 0.1096 +0 0.0325 +0 0.1758 +0 0.0679 +0 0.1161 +0 0.2520 +0 0.1336 +0 0.1627 +0 0.1229 +0 0.0759 +0 0.2794 +0 0.1411 +0 0.3765 +0 0.0959 +0 0.2460 +0 0.0768 +0 0.4370 +0 0.0785 +0 0.1879 +0 0.1081 +0 0.0676 +0 0.1695 +0 0.2537 +0 0.0785 +0 0.0991 +0 0.0782 +0 0.0709 +0 0.0975 +0 0.1011 +0 0.1880 +0 0.1997 +0 0.1001 +0 0.1142 +0 0.0448 +0 0.0894 +0 0.0540 +0 0.1603 +0 0.0734 +0 0.0376 +0 0.1446 +0 0.0515 +0 0.0892 +1 0.8055 +0 0.0423 +0 0.0996 +0 0.1367 +0 0.2946 +0 0.0750 +0 0.0829 +0 0.0785 +0 0.2523 +0 0.0823 +0 0.0893 +0 0.0985 +0 0.2996 +0 0.1320 +0 0.0738 +0 0.0704 +0 0.0581 +0 0.0726 +0 0.0891 +0 0.0841 +0 0.0942 +0 0.0982 +0 0.0947 +0 0.1422 +0 0.1164 +0 0.0511 +0 0.3601 +0 0.1062 +0 0.0895 +0 0.3219 +0 0.1465 +0 0.4992 +0 0.1135 +0 0.2440 +0 0.0768 +0 0.1975 +0 0.0783 +0 0.0755 +0 0.1285 +0 0.0991 +0 0.0750 +0 0.1543 +0 0.0586 +0 0.2000 +0 0.0746 +0 0.0877 +0 0.2986 +0 0.1731 +0 0.1095 +0 0.0626 +0 0.2082 +0 0.1558 +0 0.2545 +0 0.0884 +0 0.4161 +0 0.0551 +0 0.3269 +0 0.0871 +0 0.0835 +0 0.2938 +0 0.0639 +0 0.0565 +0 0.1327 +0 0.1102 +0 0.1899 +0 0.0876 +0 0.1650 +0 0.0846 +0 0.1715 +0 0.0963 +0 0.1505 +0 0.1348 +0 0.0941 +0 0.0503 +0 0.1424 +1 0.8027 +0 0.0994 +0 0.1801 +0 0.0723 +0 0.1713 +0 0.0929 +0 0.1419 +0 0.1206 +0 0.1582 +0 0.5466 +0 0.0558 +0 0.1084 +1 0.7972 +0 0.0920 +0 0.0959 +0 0.5399 +0 0.0413 +0 0.0576 +0 0.3063 +0 0.6253 +0 0.5300 +0 0.1197 +0 0.0956 +0 0.2407 +0 0.1729 +0 0.2972 +0 0.0659 +0 0.1197 +0 0.1373 +0 0.2452 +0 0.0822 +0 0.1154 +0 0.2160 +0 0.1106 +0 0.0459 +0 0.0666 +0 0.1040 +0 0.1017 +0 0.1730 +0 0.0595 +0 0.1250 +0 0.0404 +1 0.8216 +0 0.0434 +0 0.0426 +0 0.1498 +0 0.1053 +0 0.2353 +0 0.2032 +0 0.0553 +0 0.2087 +0 0.1844 +0 0.0546 +0 0.0756 +0 0.0583 +0 0.1180 +0 0.0873 +0 0.0760 +0 0.0921 +0 0.0735 +0 0.1946 +0 0.1791 +0 0.0740 +0 0.1261 +0 0.0786 +0 0.2127 +0 0.0611 +0 0.0725 +1 0.8936 +0 0.3931 +0 0.0608 +0 0.0476 +0 0.1025 +0 0.1377 +0 0.0742 +0 0.0613 +0 0.0549 +0 0.0381 +0 0.0519 +0 0.0428 +0 0.1753 +0 0.1103 +0 0.1280 +0 0.0850 +0 0.0442 +0 0.0946 +0 0.0664 +0 0.0830 +0 0.0707 +0 0.0894 +0 0.0899 +0 0.2032 +0 0.1461 +0 0.0959 +0 0.1130 +0 0.1532 +0 0.1255 +0 0.0770 +0 0.2114 +0 0.0937 +0 0.2949 +0 0.3670 +0 0.1463 +0 0.1280 +0 0.0727 +0 0.0406 +0 0.1126 +0 0.0686 +0 0.1600 +0 0.1918 +0 0.1793 +0 0.2725 +0 0.5255 +0 0.1551 +0 0.0793 +0 0.1966 +0 0.0800 +0 0.0719 +0 0.2832 +0 0.0982 +0 0.1115 +0 0.2140 +0 0.1441 +0 0.1173 +0 0.0537 +0 0.0571 +0 0.0627 +0 0.0699 +0 0.1195 +0 0.1436 +0 0.0902 +0 0.0853 +0 0.0648 +0 0.1468 +0 0.1766 +0 0.2387 +0 0.0859 +0 0.0993 +0 0.0787 +0 0.1000 +0 0.0557 +0 0.6288 +0 0.0878 +0 0.0386 +0 0.1417 +0 0.0548 +0 0.0913 +0 0.1418 +0 0.0564 +0 0.3845 +0 0.1208 +0 0.2403 +0 0.0595 +0 0.0924 +0 0.0889 +0 0.0925 +0 0.0724 +0 0.0689 +0 0.0868 +0 0.2596 +0 0.0847 +0 0.0718 +0 0.1430 +0 0.3213 +0 0.3753 +1 0.8131 +0 0.0662 +0 0.1426 +0 0.4881 +0 0.1387 +0 0.0684 +0 0.3509 +0 0.0845 +0 0.4183 +0 0.1026 +0 0.1319 +0 0.2084 +0 0.1413 +1 0.7542 +0 0.0995 +0 0.0761 +0 0.0851 +0 0.3253 +0 0.1346 +0 0.0324 +0 0.0787 +0 0.0677 +0 0.0946 +0 0.0420 +0 0.0419 +0 0.1557 +0 0.0867 +0 0.0527 +0 0.0842 +0 0.0659 +0 0.0749 +0 0.1788 +0 0.1138 +0 0.7063 +0 0.0834 +0 0.1075 +0 0.1398 +0 0.1313 +0 0.3877 +0 0.0425 +0 0.0937 +0 0.1252 +0 0.0634 +0 0.0990 +0 0.1546 +0 0.0640 +0 0.2045 +0 0.0554 +0 0.0527 +0 0.0900 +0 0.0965 +0 0.0343 +0 0.1023 +0 0.0899 +0 0.0875 +0 0.0684 +0 0.1084 +0 0.2158 +0 0.0555 +0 0.1707 +0 0.1114 +0 0.0861 +0 0.3264 +0 0.0751 +0 0.1178 +0 0.2541 +0 0.0383 +0 0.1136 +0 0.0482 +0 0.2012 +0 0.0730 +0 0.1290 +0 0.0665 +0 0.0748 +0 0.0609 +0 0.0591 +0 0.0446 +0 0.1440 +0 0.2369 +0 0.5370 +0 0.0838 +0 0.1314 +0 0.0428 +0 0.1737 +0 0.1510 +0 0.0600 +0 0.0574 +0 0.1699 +0 0.1315 +0 0.0628 +0 0.0878 +0 0.0901 +0 0.1407 +0 0.0719 +0 0.0370 +0 0.2258 +0 0.1173 +0 0.1728 +0 0.0469 +0 0.0918 +0 0.2524 +0 0.0922 +0 0.0526 +0 0.0636 +0 0.1155 +1 0.8027 +0 0.0731 +0 0.0972 +0 0.1211 +0 0.1041 +0 0.1164 +1 0.8165 +0 0.1574 +0 0.0857 +0 0.1240 +0 0.1473 +0 0.2434 +0 0.1027 +0 0.1767 +0 0.1117 +0 0.0965 +0 0.1209 +0 0.1072 +0 0.0865 +0 0.0871 +0 0.1144 +0 0.1292 +0 0.1171 +0 0.1329 +1 0.8818 +1 0.7993 +0 0.1277 +0 0.1031 +0 0.1646 +0 0.1126 +0 0.0488 +0 0.1011 +0 0.0999 +0 0.1677 +0 0.1465 +0 0.0926 +0 0.2203 +0 0.1011 +0 0.0764 +0 0.2357 +0 0.0783 +0 0.4381 +0 0.1827 +0 0.1147 +0 0.0925 +1 0.7512 +0 0.0956 +0 0.1547 +0 0.1388 +0 0.2313 +0 0.0631 +0 0.1685 +0 0.1081 +0 0.1238 +0 0.1249 +0 0.0951 +0 0.2482 +0 0.0507 +0 0.2034 +0 0.7158 +0 0.0914 +0 0.1527 +0 0.6359 +0 0.1244 +0 0.1096 +0 0.2064 +0 0.0745 +0 0.1544 +0 0.0935 +0 0.1230 +0 0.1264 +0 0.1121 +0 0.1830 +0 0.1075 +0 0.0381 +1 0.8166 +0 0.2461 +0 0.0782 +0 0.5766 +0 0.2759 +0 0.1254 +0 0.0387 +0 0.0629 +0 0.0875 +0 0.0913 +0 0.1478 +1 0.7601 +0 0.0713 +0 0.2764 +0 0.1566 +0 0.0993 +0 0.1834 +0 0.0930 +0 0.0749 +0 0.1870 +0 0.2172 +0 0.1278 +0 0.0853 +0 0.1031 +0 0.0642 +0 0.0745 +0 0.1915 +0 0.0532 +0 0.0893 +0 0.0979 +0 0.3206 +0 0.0365 +0 0.0840 +0 0.1067 +0 0.1353 +0 0.0651 +0 0.1130 +0 0.0491 +0 0.1000 +0 0.4252 +0 0.2118 +0 0.4395 +0 0.1060 +0 0.0378 +0 0.0714 +0 0.2688 +0 0.1091 +0 0.2471 +0 0.1492 +0 0.0476 +0 0.1052 +1 0.8163 +0 0.1126 +0 0.0630 +0 0.0484 +0 0.1226 +0 0.0970 +0 0.2728 +0 0.1978 +0 0.1623 +0 0.2482 +0 0.1293 +0 0.1212 +0 0.0928 +0 0.1030 +0 0.1424 +0 0.0328 +0 0.0984 +0 0.6397 +0 0.0700 +0 0.2259 +0 0.2296 +0 0.1289 +0 0.1005 +0 0.0373 +0 0.0689 +0 0.2163 +0 0.0592 +0 0.1139 +0 0.0644 +0 0.1393 +0 0.1639 +0 0.2752 +0 0.1042 +0 0.1175 +0 0.2262 +0 0.1591 +0 0.3111 +0 0.0483 +0 0.4819 +0 0.0499 +0 0.1049 +0 0.1039 +0 0.1088 +0 0.2062 +0 0.0827 +0 0.0369 +0 0.0763 +0 0.0787 +0 0.1284 +0 0.1108 +0 0.2823 +0 0.1155 +0 0.0999 +0 0.1129 +0 0.1431 +0 0.6746 +0 0.2507 +0 0.1092 +0 0.1490 +0 0.2128 +0 0.0596 +0 0.1583 +0 0.0628 +1 0.8262 +0 0.1199 +0 0.0879 +0 0.0844 +0 0.1276 +0 0.1157 +0 0.1086 +0 0.0834 +0 0.0790 +0 0.2356 +0 0.3219 +0 0.0631 +0 0.1094 +0 0.1184 +0 0.0972 +0 0.3105 +0 0.0726 +0 0.1083 +1 0.7536 +0 0.1293 +0 0.0458 +0 0.1628 +0 0.1181 +0 0.1502 +0 0.1053 +0 0.1038 +0 0.0871 +0 0.0977 +0 0.0970 +0 0.0747 +0 0.0793 +0 0.0850 +0 0.0949 +0 0.1567 +0 0.0719 +0 0.1834 +0 0.0775 +0 0.1640 +0 0.0990 +0 0.0668 +0 0.1079 +0 0.2764 +0 0.1193 +0 0.1573 +0 0.4026 +0 0.4069 +0 0.1328 +0 0.0641 +0 0.1160 +0 0.2071 +0 0.1607 +0 0.1306 +0 0.1202 +0 0.1474 +0 0.1099 +0 0.7468 +0 0.1700 +0 0.0945 +0 0.0589 +0 0.0792 +0 0.0865 +0 0.3341 +0 0.1208 +0 0.1192 +0 0.1840 +0 0.1082 +0 0.1359 +0 0.2129 +0 0.0525 +0 0.1128 +0 0.0757 +0 0.1080 +0 0.0623 +0 0.1652 +0 0.1160 +0 0.0930 +0 0.1595 +0 0.0673 +0 0.2592 +0 0.0763 +0 0.2010 +0 0.0519 +0 0.0552 +0 0.1404 +0 0.1181 +0 0.1901 +0 0.1809 +0 0.1383 +0 0.1129 +0 0.0589 +0 0.0914 +0 0.0966 +0 0.1316 +0 0.1277 +0 0.0489 +0 0.1083 +0 0.1106 +0 0.1131 +0 0.2975 +0 0.2330 +0 0.2029 +0 0.0734 +0 0.1922 +0 0.0847 +0 0.0638 +0 0.0647 +0 0.0758 +0 0.1992 +0 0.0519 +1 0.8461 +0 0.1444 +0 0.3599 +0 0.0682 +0 0.1138 +0 0.0951 +0 0.3374 +0 0.2418 +0 0.0403 +0 0.1377 +0 0.0575 +0 0.1534 +0 0.0695 +0 0.0802 +0 0.0302 +0 0.0687 +0 0.0696 +0 0.0533 +0 0.1730 +0 0.3428 +0 0.0772 +0 0.0696 +0 0.2037 +0 0.0808 +0 0.0992 +0 0.0961 +0 0.2485 +0 0.0444 +0 0.7490 +0 0.0744 +0 0.0798 +0 0.0569 +0 0.0895 +0 0.1809 +0 0.3141 +0 0.1525 +0 0.1588 +0 0.2354 +0 0.1123 +0 0.1394 +0 0.0887 +0 0.3087 +0 0.0516 +0 0.1006 +0 0.1486 +0 0.1393 +0 0.1137 +0 0.0544 +0 0.0678 +0 0.4062 +0 0.0915 +0 0.0570 +0 0.0288 +0 0.0960 +0 0.1434 +0 0.1075 +0 0.6842 +0 0.1791 +0 0.0926 +0 0.0525 +0 0.4190 +0 0.2528 +0 0.1227 +0 0.1479 +0 0.0436 +0 0.0341 +0 0.0981 +0 0.1278 +0 0.1336 +0 0.0948 +0 0.0472 +0 0.0652 +0 0.0713 +0 0.1204 +0 0.3263 +0 0.1017 +0 0.0325 +0 0.4706 +0 0.0488 +0 0.0981 +0 0.2051 +0 0.5760 +0 0.0697 +0 0.0832 +1 0.8682 +0 0.0999 +0 0.1100 +0 0.0877 +0 0.1517 +0 0.1222 +0 0.3822 +0 0.0596 +0 0.1917 +0 0.0656 +0 0.2653 +0 0.0777 +0 0.3745 +0 0.1436 +0 0.1211 +0 0.0369 +0 0.1874 +0 0.0584 +0 0.0820 +0 0.0610 +0 0.0679 +0 0.0739 +0 0.0910 +0 0.1748 +0 0.1370 +0 0.0715 +0 0.0775 +0 0.0755 +0 0.6558 +0 0.0861 +0 0.1213 +0 0.1463 +0 0.1140 +0 0.0901 +0 0.0782 +0 0.0534 +0 0.0851 +0 0.0819 +0 0.0576 +0 0.0549 +0 0.0678 +0 0.0814 +0 0.1137 +0 0.7137 +0 0.0959 +0 0.2720 +0 0.1025 +0 0.0774 +0 0.6762 +0 0.1615 +0 0.1177 +0 0.1118 +0 0.0652 +0 0.0989 +0 0.1900 +0 0.1723 +0 0.0884 +0 0.0691 +0 0.0856 +0 0.1092 +0 0.3132 +0 0.0362 +0 0.0645 +0 0.0622 +0 0.2858 +0 0.6189 +1 0.8036 +0 0.1369 +0 0.0504 +0 0.1090 +0 0.0642 +0 0.2244 +0 0.1401 +0 0.0735 +0 0.0841 +0 0.2793 +0 0.0868 +0 0.1106 +0 0.1989 +0 0.0534 +0 0.0750 +0 0.0953 +0 0.0640 +0 0.0989 +0 0.1250 +0 0.0627 +0 0.1744 +0 0.0943 +0 0.0868 +0 0.0773 +0 0.1290 +0 0.0862 +0 0.0454 +0 0.1380 +0 0.1116 +0 0.0529 +0 0.6150 +0 0.0687 +0 0.0878 +0 0.3329 +0 0.0950 +0 0.0446 +0 0.0539 +0 0.1693 +0 0.2176 +0 0.0679 +0 0.5488 +0 0.1859 +0 0.0936 +0 0.5685 +0 0.0536 +0 0.0614 +0 0.0589 +0 0.0589 +0 0.0739 +0 0.2363 +0 0.3348 +0 0.1547 +0 0.1214 +0 0.0883 +0 0.5224 +0 0.6921 +0 0.0882 +0 0.5767 +0 0.0903 +0 0.1677 +0 0.1893 +0 0.0670 +0 0.0892 +0 0.1247 +0 0.2502 +0 0.1254 +0 0.1739 +0 0.0723 +0 0.1923 +0 0.0676 +0 0.0800 +0 0.3665 +0 0.1066 +0 0.0798 +0 0.6842 +0 0.1900 +0 0.0362 +0 0.1958 +0 0.0835 +0 0.6864 +0 0.0494 +0 0.0688 +1 0.8222 +0 0.1550 +0 0.0392 +0 0.3621 +0 0.0540 +0 0.0833 +0 0.0757 +0 0.0573 +0 0.0714 +0 0.1369 +0 0.1736 +0 0.1941 +0 0.0470 +0 0.3032 +0 0.1154 +0 0.1232 +0 0.0647 +0 0.6622 +0 0.0833 +0 0.0623 +0 0.2084 +0 0.1522 +0 0.1357 +0 0.0970 +0 0.0761 +0 0.1504 +0 0.2458 +0 0.0931 +0 0.0786 +0 0.0722 +0 0.1091 +0 0.0938 +0 0.0545 +0 0.1237 +0 0.0826 +0 0.1784 +0 0.1862 +0 0.1166 +0 0.0809 +0 0.0787 +0 0.0723 +0 0.1474 +0 0.2090 +0 0.0849 +0 0.1317 +0 0.1004 +0 0.2110 +0 0.1484 +0 0.1005 +0 0.4914 +0 0.1009 +0 0.1523 +0 0.0671 +0 0.0580 +0 0.4085 +0 0.1004 +0 0.1315 +0 0.0991 +0 0.7169 +0 0.0649 +0 0.0712 +0 0.1411 +0 0.1165 +0 0.1522 +0 0.0829 +0 0.3764 +0 0.0871 +0 0.0649 +0 0.1624 +0 0.1945 +0 0.6350 +0 0.2114 +0 0.1192 +0 0.0609 +0 0.1167 +0 0.0823 +0 0.4702 +0 0.0902 +0 0.1288 +0 0.1771 +0 0.1289 +0 0.0790 +0 0.6566 +0 0.1068 +0 0.0510 +0 0.1671 +0 0.1439 +0 0.0790 +0 0.1092 +0 0.2537 +0 0.0882 +0 0.3107 +0 0.0700 +0 0.0955 +0 0.3411 +0 0.0825 +0 0.2120 +0 0.0524 +0 0.0792 +0 0.3383 +0 0.1679 +0 0.0418 +0 0.1829 +1 0.8009 +0 0.0512 +0 0.0647 +0 0.6024 +0 0.1333 +0 0.0656 +0 0.1189 +0 0.1274 +0 0.1386 +0 0.0963 +0 0.1175 +0 0.1755 +0 0.0750 +0 0.1278 +0 0.1022 +0 0.0372 +0 0.0732 +0 0.2906 +0 0.0624 +0 0.0891 +0 0.1976 +0 0.0923 +0 0.0746 +0 0.2605 +0 0.1439 +0 0.0919 +0 0.3021 +0 0.1257 +0 0.7046 +0 0.1501 +0 0.1614 +0 0.0878 +0 0.1743 +0 0.1548 +0 0.2758 +0 0.0802 +0 0.1591 +0 0.1197 +1 0.7963 +0 0.2540 +0 0.1240 +0 0.0680 +0 0.0901 +0 0.1709 +0 0.6693 +0 0.0603 +1 0.7937 +0 0.1700 +0 0.1267 +0 0.1072 +0 0.1051 +0 0.0596 +0 0.0767 +0 0.2009 +0 0.1078 +0 0.0525 +0 0.1344 +0 0.0694 +0 0.3010 +0 0.1166 +0 0.0624 +0 0.0699 +0 0.1055 +0 0.2016 +1 0.8374 +0 0.1944 +0 0.1598 +0 0.0359 +0 0.1627 +0 0.1438 +0 0.2294 +0 0.0858 +0 0.1581 +0 0.2099 +0 0.5328 +0 0.0726 +0 0.0719 +0 0.0761 +0 0.1133 +0 0.1369 +0 0.0494 +0 0.1042 +0 0.1081 +0 0.2125 +0 0.4562 +0 0.3163 +0 0.1034 +0 0.1007 +0 0.7418 +0 0.1235 +0 0.1509 +0 0.1199 +0 0.2812 +1 0.7703 +0 0.1974 +0 0.1276 +0 0.1026 +0 0.0713 +0 0.1369 +0 0.1484 +0 0.1010 +0 0.0682 +0 0.0669 +0 0.0735 +0 0.0627 +0 0.1124 +0 0.2510 +0 0.3398 +0 0.0706 +0 0.0887 +0 0.3730 +0 0.1040 +0 0.0553 +0 0.0918 +0 0.0615 +0 0.1420 +0 0.0662 +0 0.1298 +0 0.2961 +0 0.1844 +0 0.0684 +0 0.1602 +0 0.1115 +0 0.1186 +0 0.3113 +0 0.1603 +0 0.2673 +0 0.1307 +0 0.0789 +0 0.1300 +0 0.1116 +0 0.0394 +0 0.0746 +0 0.0669 +0 0.0637 +0 0.1353 +0 0.3453 +0 0.0535 +0 0.1124 +0 0.1055 +0 0.1679 +0 0.0844 +0 0.1140 +0 0.0830 +0 0.1731 +0 0.0842 +0 0.1659 +0 0.1253 +0 0.1846 +0 0.0773 +0 0.0887 +0 0.1418 +0 0.1047 +0 0.2779 +0 0.1122 +0 0.1890 +0 0.0360 +0 0.1374 +0 0.0819 +0 0.0733 +0 0.0404 +0 0.2335 +0 0.0456 +0 0.0671 +0 0.0829 +1 0.8231 +0 0.1176 +0 0.4239 +0 0.0714 +0 0.0726 +0 0.1229 +0 0.0571 +0 0.6083 +0 0.1330 +0 0.2501 +0 0.0958 +0 0.2009 +0 0.1483 +0 0.0921 +0 0.0367 +0 0.5204 +0 0.0422 +0 0.1998 +0 0.0427 +0 0.0515 +0 0.1170 +0 0.0754 +0 0.0530 +0 0.0542 +0 0.1055 +0 0.1061 +0 0.3848 +0 0.1390 +0 0.0584 +0 0.1825 +0 0.1715 +0 0.0587 +0 0.2656 +0 0.6988 +0 0.0853 +1 0.8225 +0 0.0854 +0 0.0934 +0 0.0799 +0 0.2592 +0 0.1480 +0 0.0992 +0 0.1008 +0 0.1801 +0 0.0524 +0 0.0523 +0 0.0808 +0 0.1087 +0 0.3484 +0 0.1504 +0 0.0770 +0 0.0759 +0 0.1244 +0 0.2373 +0 0.0668 +0 0.0400 +0 0.1852 +0 0.1017 +0 0.1001 +0 0.0760 +0 0.1588 +0 0.0761 +0 0.1514 +0 0.2154 +0 0.1476 +0 0.1212 +0 0.0877 +0 0.0912 +0 0.1014 +0 0.1580 +0 0.1993 +0 0.1083 +0 0.0577 +0 0.1411 +0 0.1113 +0 0.1321 +0 0.0687 +0 0.0988 +0 0.1237 +0 0.3232 +0 0.1921 +0 0.0810 +0 0.1135 +0 0.0887 +0 0.1386 +0 0.0703 +0 0.0953 +0 0.0348 +0 0.0813 +0 0.1375 +0 0.1042 +0 0.0915 +0 0.0855 +0 0.0828 +0 0.1023 +0 0.0945 +0 0.0370 +0 0.5705 +0 0.0763 +0 0.0637 +0 0.0989 +0 0.2733 +0 0.1269 +0 0.0428 +0 0.1175 +0 0.1073 +0 0.1466 +0 0.0932 +0 0.1263 +0 0.2000 +0 0.1444 +0 0.0867 +0 0.1668 +0 0.0631 +0 0.0462 +0 0.1157 +0 0.0509 +0 0.2437 +0 0.0530 +0 0.1566 +0 0.0969 +0 0.0690 +0 0.4597 +0 0.1242 +0 0.1201 +0 0.1145 +0 0.1662 +0 0.1917 +0 0.1877 +0 0.0572 +0 0.2570 +0 0.0401 +0 0.2343 +0 0.0891 +0 0.0772 +0 0.1553 +0 0.0622 +0 0.0889 +0 0.1613 +0 0.2818 +0 0.0679 +0 0.2097 +0 0.1106 +0 0.4772 +0 0.1105 +0 0.1086 +0 0.0541 +0 0.1010 +0 0.0369 +0 0.2742 +0 0.0794 +0 0.1453 +0 0.1091 +0 0.1929 +0 0.0912 +0 0.0583 +0 0.1208 +0 0.2056 +0 0.1250 +0 0.0882 +0 0.2451 +0 0.1305 +0 0.0477 +0 0.5083 +0 0.3168 +0 0.0893 +0 0.1695 +0 0.0871 +0 0.1035 +0 0.1058 +0 0.1125 +0 0.1575 +0 0.0489 +0 0.0975 +0 0.5697 +0 0.0365 +0 0.0596 +0 0.1855 +0 0.0584 +0 0.1177 +0 0.1037 +0 0.1141 +0 0.2784 +0 0.0660 +0 0.0641 +0 0.1651 +0 0.0821 +0 0.1145 +0 0.0531 +0 0.0901 +0 0.4970 +0 0.0519 +0 0.3029 +0 0.1652 +0 0.0700 +0 0.3109 +0 0.1991 +0 0.0850 +0 0.1088 +0 0.2332 +0 0.1477 +0 0.0511 +0 0.1006 +0 0.1297 +0 0.1692 +0 0.0522 +0 0.1338 +0 0.0488 +0 0.1487 +1 0.7761 +0 0.0579 +0 0.1635 +0 0.0889 +0 0.0929 +0 0.0558 +0 0.2625 +0 0.0939 +0 0.0798 +0 0.1116 +0 0.0436 +0 0.5724 +0 0.1822 +0 0.0545 +0 0.1333 +0 0.0841 +0 0.0541 +0 0.1857 +0 0.0841 +0 0.1007 +0 0.0919 +0 0.0978 +0 0.0830 +0 0.0979 +0 0.0588 +0 0.0459 +0 0.1281 +0 0.2703 +0 0.1032 +0 0.0644 +0 0.0781 +0 0.0999 +0 0.1209 +0 0.1589 +0 0.0820 +0 0.3391 +0 0.0427 +0 0.1261 +0 0.1627 +0 0.1113 +0 0.0858 +0 0.0612 +0 0.0742 +0 0.1059 +0 0.0986 +0 0.0771 +0 0.1046 +0 0.1898 +0 0.0750 +0 0.0870 +0 0.1461 +0 0.1182 +0 0.1110 +0 0.1151 +0 0.0530 +0 0.1300 +0 0.1796 +0 0.1324 +0 0.0612 +0 0.1138 +0 0.0524 +0 0.1609 +0 0.1442 +0 0.0654 +0 0.0920 +0 0.0665 +0 0.0767 +0 0.1232 +0 0.2485 +0 0.0788 +0 0.4373 +0 0.0657 +0 0.0832 +0 0.1473 +0 0.0326 +0 0.1816 +1 0.8221 +0 0.0840 +0 0.0536 +0 0.1398 +0 0.1259 +0 0.1688 +0 0.3222 +0 0.0900 +0 0.0714 +0 0.0660 +0 0.0569 +0 0.1363 +0 0.1901 +0 0.1542 +0 0.1127 +0 0.2244 +0 0.1148 +0 0.7464 +0 0.2517 +0 0.1649 +0 0.2415 +0 0.1343 +0 0.0339 +0 0.1553 +0 0.0317 +0 0.2620 +0 0.5264 +0 0.0717 +0 0.1053 +0 0.0569 +0 0.5151 +0 0.1297 +0 0.0937 +0 0.0921 +0 0.1609 +0 0.0605 +0 0.1050 +0 0.2795 +0 0.1016 +0 0.5883 +0 0.1204 +0 0.1689 +0 0.0718 +0 0.0838 +0 0.2331 +0 0.2098 +0 0.0448 +0 0.0933 +0 0.0823 +0 0.1090 +0 0.1189 +0 0.1951 +0 0.0333 +0 0.2805 +0 0.0782 +0 0.6703 +0 0.2033 +1 0.7919 +0 0.1627 +0 0.6540 +0 0.0994 +0 0.1517 +0 0.1072 +0 0.1211 +0 0.6683 +0 0.0560 +0 0.0968 +0 0.1256 +0 0.0588 +0 0.2177 +0 0.0877 +0 0.6531 +0 0.0417 +0 0.1414 +0 0.0520 +0 0.4013 +0 0.0772 +0 0.0893 +0 0.1081 +0 0.0347 +0 0.0743 +0 0.0697 +0 0.0879 +0 0.1272 +0 0.2589 +0 0.0525 +0 0.0642 +0 0.1544 +0 0.1317 +1 0.8819 +0 0.1522 +0 0.1518 +0 0.2220 +0 0.1469 +1 0.7990 +0 0.0868 +0 0.2496 +0 0.2493 +0 0.0763 +0 0.1282 +1 0.8643 +0 0.0685 +0 0.1518 +0 0.1148 +0 0.0705 +0 0.0624 +0 0.0616 +0 0.1009 +0 0.0809 +0 0.0814 +0 0.0930 +0 0.0829 +0 0.1397 +0 0.0566 +0 0.1732 +0 0.1313 +0 0.0662 +0 0.0730 +0 0.2070 +0 0.1569 +0 0.3711 +0 0.0643 +0 0.0738 +0 0.0582 +0 0.0985 +0 0.1866 +0 0.0940 +1 0.7842 +0 0.0986 +0 0.1236 +0 0.1855 +0 0.0915 +0 0.0520 +0 0.1556 +0 0.1221 +0 0.1285 +0 0.0476 +0 0.1112 +0 0.0589 +0 0.0611 +0 0.5414 +0 0.1011 +0 0.6258 +0 0.0404 +0 0.0730 +0 0.0581 +0 0.1635 +0 0.1949 +0 0.3637 +0 0.1232 +0 0.1334 +0 0.2334 +0 0.0467 +0 0.1763 +0 0.2055 +0 0.0752 +0 0.1201 +0 0.0780 +0 0.2683 +0 0.0623 +0 0.0648 +0 0.3249 +0 0.1583 +0 0.0824 +0 0.0882 +0 0.1823 +0 0.0421 +0 0.2036 +0 0.0833 +0 0.1225 +0 0.0672 +0 0.3083 +0 0.2867 +0 0.1197 +0 0.1104 +0 0.0543 +0 0.0502 +0 0.2032 +0 0.1040 +0 0.0831 +0 0.1675 +0 0.6743 +0 0.2044 +0 0.0588 +0 0.3700 +0 0.0482 +0 0.1506 +0 0.1064 +0 0.5311 +0 0.2097 +0 0.0453 +0 0.0831 +0 0.0775 +0 0.1568 +0 0.4217 +0 0.0867 +0 0.1254 +0 0.0565 +0 0.0599 +0 0.2769 +0 0.0947 +0 0.0814 +0 0.0976 +0 0.0825 +0 0.0798 +0 0.2024 +0 0.0889 +0 0.1025 +0 0.1660 +0 0.0377 +0 0.0582 +0 0.7093 +0 0.1283 +0 0.1989 +0 0.0561 +0 0.0706 +0 0.1136 +0 0.0916 +0 0.1375 +0 0.0354 +0 0.1652 +0 0.1379 +0 0.0698 +0 0.0626 +0 0.1055 +0 0.1520 +0 0.0839 +0 0.1396 +0 0.1561 +0 0.1555 +0 0.0783 +0 0.0735 +0 0.0948 +1 0.8162 +0 0.2588 +0 0.0608 +0 0.1563 +0 0.0942 +0 0.0492 +0 0.3544 +0 0.2010 +0 0.1883 +0 0.0340 +0 0.2635 +0 0.0731 +0 0.2009 +0 0.2717 +0 0.1070 +0 0.1066 +0 0.1890 +0 0.7456 +0 0.1012 +0 0.1235 +0 0.1320 +0 0.1011 +0 0.0706 +0 0.0740 +0 0.1336 +0 0.1602 +0 0.0623 +0 0.0430 +0 0.1884 +0 0.1026 +0 0.1806 +0 0.1233 +0 0.2037 +0 0.1114 +0 0.0938 +0 0.2052 +0 0.0808 +0 0.1672 +1 0.8770 +0 0.1336 +0 0.0414 +0 0.0463 +0 0.0340 +0 0.1025 +0 0.0925 +0 0.5801 +0 0.0950 +0 0.3015 +0 0.0661 +0 0.0508 +0 0.1407 +0 0.0557 +0 0.0558 +0 0.2668 +0 0.0414 +0 0.0316 +0 0.0959 +0 0.0608 +0 0.1675 +0 0.0786 +0 0.0581 +1 0.8279 +0 0.1788 +0 0.0591 +0 0.4215 +0 0.0657 +0 0.1053 +0 0.2578 +0 0.0456 +0 0.1046 +0 0.0686 +0 0.6490 +0 0.0986 +0 0.0739 +0 0.0727 +0 0.0929 +0 0.0439 +0 0.0404 +0 0.1352 +1 0.8708 +0 0.0646 +0 0.2199 +0 0.0503 +0 0.0781 +0 0.0404 +0 0.1832 +0 0.0835 +0 0.0732 +0 0.1418 +0 0.0689 +0 0.0769 +0 0.0778 +0 0.1022 +0 0.0475 +0 0.4984 +0 0.0923 +0 0.1127 +0 0.2846 +0 0.1529 +0 0.0458 +0 0.0809 +0 0.1112 +0 0.1326 +0 0.1661 +0 0.0389 +0 0.1073 +0 0.0838 +0 0.1275 +0 0.1259 +0 0.1151 +0 0.1455 +0 0.0761 +0 0.0630 +0 0.3416 +0 0.7282 +0 0.0759 +0 0.1287 +0 0.1386 +0 0.0718 +0 0.1241 +0 0.1126 +0 0.4042 +0 0.0896 +0 0.0790 +0 0.0775 +0 0.1860 +0 0.0499 +0 0.0903 +0 0.1115 +0 0.0648 +0 0.3404 +0 0.0403 +0 0.1149 +0 0.1008 +0 0.0705 +0 0.0669 +0 0.0952 +0 0.1653 +0 0.0446 +0 0.1107 +0 0.1115 +0 0.2649 +0 0.0668 +0 0.0815 +0 0.0350 +0 0.1067 +0 0.1251 +0 0.0950 +0 0.0618 +0 0.1031 +0 0.0671 +0 0.0794 +0 0.1331 +0 0.0494 +0 0.0677 +0 0.1449 +0 0.0844 +0 0.1209 +0 0.0898 +0 0.2955 +0 0.1771 +0 0.1387 +0 0.0676 +0 0.1654 +0 0.0903 +0 0.5856 +0 0.1239 +0 0.2857 +0 0.0758 +1 0.8124 +0 0.1238 +0 0.0588 +0 0.2902 +0 0.2836 +0 0.0446 +0 0.0635 +0 0.2925 +0 0.0760 +0 0.2889 +0 0.0969 +0 0.1494 +0 0.1149 +0 0.0734 +0 0.6121 +0 0.1519 +1 0.8373 +0 0.0990 +0 0.0400 +0 0.1815 +0 0.0541 +0 0.0450 +0 0.2095 +0 0.1238 +0 0.1898 +0 0.1955 +0 0.0478 +0 0.1672 +0 0.0931 +0 0.1647 +1 0.8375 +0 0.1839 +0 0.0415 +0 0.0844 +0 0.0519 +0 0.0545 +0 0.0842 +0 0.0770 +0 0.0646 +0 0.0704 +0 0.1024 +0 0.1368 +0 0.0600 +0 0.1827 +0 0.0550 +0 0.2737 +0 0.0792 +0 0.3261 +0 0.1082 +0 0.0518 +0 0.1669 +0 0.6773 +0 0.0763 +0 0.0578 +0 0.0677 +0 0.1766 +0 0.0615 +0 0.1360 +0 0.0647 +0 0.1080 +0 0.1015 +0 0.1154 +0 0.0331 +0 0.1693 +0 0.1483 +0 0.1107 +0 0.0599 +0 0.1132 +0 0.0416 +0 0.1485 +0 0.2841 +0 0.1891 +0 0.1198 +0 0.1696 +0 0.1195 +0 0.0730 +0 0.0714 +0 0.0581 +0 0.1383 +0 0.1478 +0 0.0655 +0 0.0680 +0 0.1005 +0 0.0493 +0 0.0805 +0 0.0645 +0 0.1972 +0 0.1547 +0 0.0729 +0 0.1147 +0 0.0839 +0 0.0868 +0 0.0887 +0 0.0529 +0 0.0598 +0 0.0759 +0 0.0459 +0 0.1653 +0 0.0853 +0 0.5772 +0 0.0384 +0 0.3807 +0 0.0864 +0 0.0928 +0 0.0783 +0 0.0396 +0 0.0753 +0 0.1105 +0 0.0736 +0 0.0749 +0 0.0581 +0 0.0683 +0 0.1126 +0 0.1381 +0 0.0997 +0 0.1462 +0 0.0720 +0 0.0821 +0 0.0462 +0 0.2260 +0 0.1590 +0 0.0558 +0 0.1914 +0 0.2131 +0 0.1391 +0 0.2876 +0 0.1043 +0 0.0998 +0 0.3911 +0 0.0948 +0 0.2313 +0 0.0478 +0 0.1452 +0 0.0468 +0 0.0708 +0 0.1073 +0 0.2756 +0 0.1405 +0 0.5679 +0 0.1679 +0 0.1324 +0 0.1226 +0 0.0779 +0 0.2385 +0 0.1124 +0 0.0973 +0 0.6031 +0 0.0732 +0 0.1467 +0 0.1300 +0 0.0986 +0 0.0613 +0 0.2550 +0 0.0783 +0 0.1369 +0 0.6129 +0 0.1258 +0 0.0937 +0 0.1067 +0 0.1848 +0 0.0805 +0 0.1842 +0 0.0903 +0 0.0633 +0 0.1100 +0 0.0572 +0 0.1232 +0 0.1048 +0 0.1417 +0 0.0970 +1 0.8462 +0 0.3188 +0 0.2131 +0 0.1128 +0 0.0719 +0 0.0744 +0 0.1123 +0 0.0865 +0 0.5460 +0 0.0993 +0 0.0728 +0 0.1110 +0 0.1987 +0 0.0829 +0 0.2706 +0 0.2386 +0 0.1760 +0 0.0907 +0 0.0956 +0 0.0961 +0 0.0938 +0 0.1818 +0 0.0767 +0 0.1352 +0 0.2211 +0 0.1034 +0 0.0977 +0 0.4664 +0 0.3531 +0 0.3448 +0 0.1056 +0 0.1604 +0 0.0726 +0 0.1057 +0 0.1977 +0 0.0850 +0 0.1522 +0 0.0962 +1 0.8481 +0 0.1090 +0 0.1349 +0 0.2884 +0 0.0485 +0 0.3291 +0 0.2270 +0 0.0660 +1 0.8414 +0 0.2517 +0 0.0726 +0 0.0562 +0 0.1231 +0 0.1929 +0 0.0873 +0 0.0836 +0 0.2494 +0 0.0933 +0 0.1165 +0 0.0630 +0 0.1270 +0 0.0652 +0 0.0852 +0 0.2781 +0 0.0677 +0 0.1564 +0 0.0919 +0 0.3775 +0 0.0880 +0 0.1640 +0 0.1548 +0 0.1696 +0 0.1055 +0 0.0516 +0 0.1983 +0 0.1208 +0 0.2949 +0 0.0859 +0 0.0797 +0 0.1317 +0 0.0937 +0 0.3316 +0 0.4575 +0 0.0527 +0 0.1915 +0 0.2004 +0 0.3620 +0 0.1028 +0 0.0793 +0 0.1446 +0 0.0690 +0 0.1187 +0 0.3696 +0 0.1407 +0 0.0647 +0 0.0793 +0 0.2897 +0 0.1361 +0 0.0606 +0 0.3606 +0 0.0673 +0 0.0964 +0 0.1138 +0 0.3780 +0 0.1387 +0 0.0729 +0 0.0925 +0 0.0654 +0 0.0858 +0 0.0930 +0 0.1313 +0 0.0556 +0 0.1230 +0 0.4923 +1 0.7992 +0 0.0439 +0 0.2062 +0 0.1733 +0 0.0757 +0 0.0384 +0 0.1946 +0 0.1229 +0 0.0523 +0 0.0766 +0 0.1738 +0 0.0319 +0 0.0592 +0 0.1469 +0 0.3492 +0 0.0676 +1 0.7697 +0 0.1789 +0 0.1217 +0 0.0635 +0 0.0576 +0 0.0673 +1 0.7940 +0 0.1797 +0 0.1756 +0 0.0968 +0 0.0929 +0 0.0947 +0 0.0556 +0 0.2191 +0 0.1436 +0 0.0926 +0 0.1513 +0 0.3725 +0 0.0857 +0 0.0942 +0 0.0803 +0 0.0872 +0 0.1178 +0 0.4266 +0 0.0851 +0 0.1058 +0 0.1528 +0 0.0697 +0 0.1287 +0 0.1016 +0 0.1140 +0 0.0885 +0 0.0775 +0 0.0559 +0 0.0568 +0 0.4803 +0 0.2630 +0 0.0809 +0 0.0968 +0 0.0518 +0 0.3725 +0 0.0650 +0 0.1407 +0 0.1213 +0 0.1018 +0 0.2826 +0 0.4429 +0 0.0547 +0 0.4595 +0 0.0531 +0 0.1541 +0 0.1260 +0 0.1383 +0 0.0500 +0 0.0295 +0 0.0822 +0 0.1422 +0 0.0478 +0 0.0493 +0 0.1669 +0 0.1369 +1 0.8747 +0 0.1233 +0 0.1004 +0 0.1250 +0 0.1166 +0 0.2219 +0 0.0909 +0 0.1648 +0 0.0387 +0 0.1279 +0 0.1855 +0 0.5471 +0 0.0820 +0 0.3272 +0 0.0404 +0 0.1483 +0 0.1164 +0 0.2404 +0 0.0498 +0 0.0741 +0 0.0545 +0 0.0513 +0 0.2077 +0 0.0612 +0 0.1364 +0 0.5928 +0 0.4186 +0 0.0567 +0 0.0706 +0 0.0392 +0 0.2487 +0 0.0650 +0 0.1013 +0 0.0450 +0 0.1457 +0 0.0577 +0 0.0741 +0 0.0531 +0 0.2867 +0 0.0665 +0 0.3305 +0 0.0546 +0 0.0703 +0 0.0865 +0 0.6964 +0 0.1670 +0 0.1520 +0 0.0510 +0 0.1264 +0 0.2093 +0 0.5252 +0 0.0602 +0 0.0824 +0 0.2238 +0 0.1977 +0 0.0487 +0 0.1738 +0 0.0716 +0 0.0546 +0 0.1845 +0 0.1630 +0 0.3164 +0 0.1645 +0 0.1054 +0 0.1095 +0 0.5702 +0 0.2013 +0 0.1382 +0 0.1401 +0 0.1900 +0 0.1037 +0 0.2698 +0 0.0902 +0 0.0598 +0 0.0565 +0 0.0674 +0 0.1483 +0 0.0806 +0 0.0804 +0 0.0945 +0 0.4112 +0 0.1020 +0 0.2843 +0 0.0754 +0 0.0634 +0 0.1310 +0 0.1358 +0 0.0452 +0 0.3211 +0 0.0953 +0 0.0495 +0 0.0624 +0 0.1670 +0 0.0711 +0 0.1564 +0 0.0327 +0 0.1957 +0 0.0979 +0 0.1524 +0 0.1520 +0 0.0636 +0 0.0717 +0 0.1120 +0 0.1314 +0 0.1277 +0 0.0485 +0 0.0855 +0 0.1480 +0 0.1530 +0 0.2178 +0 0.1859 +0 0.1945 +0 0.0753 +0 0.1500 +0 0.1543 +0 0.1089 +0 0.0419 +0 0.2252 +0 0.1634 +0 0.2304 +0 0.1154 +0 0.1309 +0 0.1684 +0 0.0888 +0 0.1825 +0 0.0421 +0 0.2435 +0 0.0536 +0 0.0674 +0 0.1025 +0 0.0516 +0 0.0725 +0 0.1457 +0 0.1046 +0 0.1540 +0 0.1063 +0 0.0560 +0 0.1431 +0 0.2789 +0 0.1749 +0 0.0567 +1 0.8563 +0 0.1374 +0 0.0583 +0 0.2836 +0 0.1408 +0 0.1962 +0 0.0533 +0 0.0937 +0 0.2031 +0 0.1268 +0 0.0874 +0 0.0617 +1 0.8740 +0 0.1086 +0 0.0492 +0 0.5661 +0 0.1655 +0 0.1988 +0 0.1347 +0 0.1182 +0 0.1642 +0 0.1544 +0 0.1168 +0 0.0411 +0 0.1789 +0 0.0578 +0 0.1956 +0 0.0932 +0 0.1232 +0 0.2661 +0 0.1498 +0 0.0985 +0 0.2535 +0 0.1242 +0 0.0720 +0 0.0524 +0 0.0635 +0 0.0800 +0 0.1007 +0 0.0653 +0 0.1070 +0 0.0933 +0 0.2274 +0 0.0670 +0 0.2092 +0 0.0685 +0 0.1105 +0 0.1643 +0 0.0810 +0 0.1035 +0 0.2706 +0 0.1206 +0 0.1291 +0 0.0794 +0 0.2149 +0 0.0893 +0 0.1452 +0 0.1819 +0 0.1302 +0 0.0934 +0 0.1312 +0 0.0724 +0 0.2200 +0 0.0980 +0 0.0429 +0 0.0526 +0 0.5017 +0 0.1070 +0 0.0763 +0 0.1072 +0 0.3500 +0 0.0419 +0 0.1756 +0 0.1262 +0 0.0964 +0 0.0996 +0 0.1290 +0 0.0764 +0 0.0403 +0 0.1113 +0 0.0827 +0 0.1391 +0 0.0840 +0 0.1146 +0 0.0479 +0 0.7253 +0 0.2709 +0 0.0768 +0 0.0507 +0 0.0695 +0 0.1349 +0 0.0701 +0 0.0306 +0 0.1234 +0 0.1825 +0 0.0952 +0 0.0657 +0 0.1606 +0 0.1810 +0 0.1477 +0 0.0629 +0 0.0587 +0 0.2001 +0 0.1047 +0 0.0452 +0 0.1246 +0 0.0890 +0 0.1218 +0 0.1163 +0 0.0415 +0 0.6294 +0 0.3361 +0 0.1701 +0 0.1047 +0 0.0659 +0 0.0550 +0 0.1762 +0 0.2117 +0 0.6639 +0 0.1711 +0 0.4872 +0 0.1064 +0 0.1533 +0 0.3412 +0 0.0721 +0 0.0831 +0 0.0846 +0 0.2080 +1 0.7842 +0 0.2404 +0 0.1498 +0 0.6532 +0 0.1664 +0 0.0996 +0 0.0878 +0 0.1075 +0 0.0499 +0 0.0305 +0 0.0873 +0 0.1920 +0 0.0872 +0 0.1068 +0 0.1002 +0 0.0874 +0 0.0365 +0 0.0718 +0 0.1190 +0 0.0572 +0 0.2604 +0 0.2134 +0 0.0689 +0 0.0586 +0 0.0582 +0 0.0541 +0 0.0803 +0 0.1639 +0 0.2320 +0 0.0677 +0 0.0582 +0 0.1316 +0 0.4085 +0 0.2954 +0 0.1284 +0 0.2939 +0 0.1028 +0 0.0825 +0 0.1044 +0 0.1868 +0 0.1426 +0 0.0990 +0 0.0766 +0 0.0604 +0 0.1226 +0 0.1026 +0 0.1162 +0 0.0871 +0 0.1071 +0 0.1351 +0 0.0683 +0 0.1399 +0 0.1142 +0 0.0695 +0 0.0416 +0 0.2225 +0 0.1854 +0 0.0750 +0 0.0638 +0 0.1373 +0 0.0927 +0 0.0905 +0 0.1396 +0 0.1080 +0 0.3073 +0 0.1608 +0 0.0982 +0 0.1019 +0 0.0531 +0 0.1153 +0 0.0350 +0 0.2185 +0 0.0540 +0 0.2744 +0 0.2327 +0 0.1032 +0 0.2241 +0 0.2451 +0 0.0960 +0 0.3162 +0 0.1696 +0 0.0852 +0 0.0920 +0 0.0387 +1 0.8180 +0 0.2928 +0 0.0483 +0 0.0653 +0 0.2328 +0 0.1356 +0 0.1022 +0 0.1967 +0 0.1214 +0 0.0960 +0 0.0660 +0 0.0759 +0 0.1718 +0 0.1452 +0 0.1070 +0 0.1473 +0 0.1972 +0 0.0572 +0 0.1394 +0 0.1327 +0 0.1084 +0 0.1213 +0 0.0733 +0 0.2843 +0 0.0713 +0 0.0862 +1 0.8024 +0 0.5175 +0 0.1932 +0 0.1781 +0 0.0432 +0 0.1227 +0 0.0471 +0 0.1068 +0 0.0642 +0 0.2296 +0 0.1769 +0 0.1148 +0 0.2791 +0 0.0641 +0 0.2300 +0 0.0510 +0 0.0786 +0 0.3633 +0 0.4886 +0 0.0775 +0 0.0959 +0 0.1815 +0 0.1091 +0 0.1123 +0 0.0905 +0 0.0738 +0 0.1470 +0 0.2348 +0 0.4745 +0 0.1224 +0 0.1455 +0 0.0579 +0 0.0869 +0 0.0702 +0 0.0530 +0 0.0517 +0 0.1148 +0 0.2628 +0 0.0607 +0 0.1411 +0 0.0745 +0 0.0801 +0 0.1734 +0 0.1688 +0 0.0718 +0 0.1100 +0 0.1190 +0 0.2592 +0 0.1135 +0 0.0744 +0 0.0712 +0 0.0966 +0 0.0506 +0 0.0747 +0 0.1036 +0 0.0690 +0 0.2262 +0 0.5194 +0 0.0760 +0 0.2611 +0 0.1703 +0 0.0965 +0 0.3746 +0 0.1463 +0 0.2533 +0 0.0947 +0 0.4064 +0 0.0990 +0 0.1654 +0 0.0716 +0 0.1701 +0 0.1048 +0 0.2957 +0 0.0860 +0 0.0499 +0 0.1266 +0 0.2611 +0 0.0905 +0 0.1523 +0 0.1226 +0 0.0481 +0 0.1136 +0 0.0669 +0 0.1152 +0 0.4179 +0 0.0741 +0 0.3704 +0 0.2806 +0 0.0811 +0 0.1820 +0 0.4234 +0 0.1050 +0 0.1225 +0 0.1330 +0 0.0865 +0 0.0897 +0 0.2151 +0 0.0743 +0 0.1468 +0 0.0715 +0 0.7148 +0 0.5848 +0 0.1239 +0 0.4852 +0 0.0679 +0 0.2798 +0 0.6423 +0 0.1828 +0 0.0411 +0 0.0898 +0 0.1037 +0 0.0913 +0 0.2437 +0 0.1110 +0 0.0814 +0 0.0710 +1 0.7615 +0 0.0633 +0 0.0713 +0 0.0698 +0 0.0551 +0 0.1059 +0 0.3111 +0 0.0643 +0 0.0859 +0 0.0589 +0 0.1737 +0 0.1798 +0 0.1060 +0 0.0718 +0 0.2055 +0 0.1248 +0 0.0622 +0 0.1071 +0 0.5504 +0 0.3390 +0 0.0931 +0 0.1698 +0 0.0983 +0 0.1601 +0 0.2135 +0 0.1038 +0 0.0703 +0 0.1371 +0 0.0614 +0 0.0684 +0 0.1236 +0 0.1156 +0 0.0902 +0 0.0896 +0 0.1200 +0 0.0534 +0 0.3072 +0 0.4607 +0 0.7328 +0 0.1111 +0 0.0889 +0 0.0654 +0 0.0879 +0 0.1556 +0 0.0645 +0 0.0746 +0 0.2581 +0 0.0449 +0 0.1640 +0 0.0736 +0 0.0304 +0 0.1069 +0 0.1219 +0 0.2855 +0 0.3648 +0 0.0855 +0 0.3325 +0 0.1774 +0 0.1496 +0 0.0880 +0 0.1139 +0 0.0839 +0 0.0725 +0 0.4111 +0 0.0432 +0 0.1099 +0 0.0550 +0 0.0917 +0 0.0610 +0 0.0754 +0 0.2933 +0 0.1961 +0 0.0462 +0 0.0504 +0 0.0378 +0 0.0632 +0 0.1352 +0 0.0489 +0 0.1002 +0 0.1174 +0 0.0580 +0 0.1822 +0 0.0600 +0 0.0794 +0 0.0948 +0 0.0455 +0 0.1802 +0 0.0772 +0 0.0621 +0 0.0526 +0 0.6648 +0 0.0757 +0 0.1222 +0 0.1284 +0 0.2994 +0 0.1279 +0 0.2994 +0 0.1865 +0 0.0912 +0 0.2954 +0 0.0891 +0 0.1294 +0 0.1237 +0 0.2459 +0 0.0685 +0 0.1057 +0 0.1525 +0 0.0719 +0 0.0948 +0 0.0675 +0 0.1431 +0 0.0711 +0 0.0671 +0 0.2560 +0 0.0741 +0 0.0338 +0 0.6830 +0 0.1510 +0 0.0520 +0 0.2097 +0 0.0587 +0 0.0895 +0 0.2598 +0 0.0988 +0 0.0432 +0 0.2408 +0 0.1344 +0 0.1432 +0 0.2038 +0 0.1283 +0 0.0822 +0 0.0684 +0 0.1905 +0 0.0403 +0 0.0654 +0 0.2350 +0 0.0786 +0 0.2484 +0 0.0771 +0 0.1066 +0 0.0621 +0 0.1635 +0 0.3304 +0 0.0768 +0 0.0584 +0 0.0908 +0 0.1353 +0 0.1511 +0 0.1217 +0 0.1116 +0 0.0733 +0 0.6361 +0 0.1177 +0 0.2120 +0 0.0596 +0 0.0732 +0 0.6850 +0 0.1217 +0 0.6301 +0 0.0872 +0 0.1270 +0 0.0885 +0 0.1871 +0 0.0534 +0 0.6069 +0 0.0733 +0 0.0895 +0 0.1883 +0 0.2799 +0 0.1790 +0 0.1074 +0 0.0842 +0 0.0758 +0 0.1361 +0 0.0847 +0 0.1506 +0 0.0584 +0 0.0426 +0 0.1689 +0 0.0560 +0 0.0681 +0 0.0909 +0 0.0919 +0 0.0741 +0 0.2879 +0 0.1431 +0 0.0872 +0 0.1391 +0 0.1290 +0 0.1580 +0 0.0901 +0 0.4052 +0 0.0589 +0 0.1202 +0 0.5504 +1 0.7634 +0 0.0710 +0 0.0566 +0 0.0581 +0 0.0643 +0 0.0800 +0 0.0921 +0 0.1582 +0 0.2983 +0 0.5189 +0 0.0825 +0 0.5689 +0 0.3863 +0 0.1006 +0 0.1550 +0 0.0760 +1 0.0996 +0 0.0655 +0 0.0707 +0 0.1095 +0 0.1997 +0 0.1157 +0 0.1957 +0 0.2419 +0 0.1021 +0 0.1784 +0 0.1395 +0 0.1101 +0 0.0581 +0 0.1078 +0 0.1330 +0 0.1696 +0 0.1517 +0 0.1454 +0 0.1670 +0 0.0461 +0 0.0942 +0 0.0564 +0 0.1156 +0 0.1919 +1 0.8192 +0 0.0700 +0 0.1445 +0 0.0791 +0 0.0431 +0 0.0778 +0 0.1717 +0 0.1325 +0 0.0825 +0 0.1481 +0 0.2215 +0 0.0801 +0 0.1595 +0 0.1218 +0 0.2632 +0 0.0732 +0 0.1854 +0 0.0837 +0 0.3242 +0 0.0388 +0 0.1579 +0 0.1269 +0 0.1005 +0 0.0509 +0 0.1828 +0 0.0660 +0 0.1198 +0 0.0456 +0 0.1395 +0 0.0933 +0 0.1016 +0 0.1678 +0 0.0683 +0 0.0965 +0 0.2026 +0 0.0671 +0 0.1602 +0 0.0611 +0 0.0767 +0 0.0528 +0 0.1569 +0 0.4997 +0 0.1231 +0 0.0475 +0 0.0679 +0 0.0523 +0 0.1258 +0 0.1920 +0 0.0796 +0 0.0693 +0 0.1641 +0 0.1320 +0 0.0610 +0 0.2671 +0 0.0535 +0 0.1430 +0 0.0856 +0 0.0961 +0 0.2907 +0 0.2157 +0 0.0714 +0 0.0848 +0 0.1148 +0 0.2510 +0 0.0510 +0 0.0472 +0 0.0377 +0 0.1086 +0 0.0473 +0 0.1388 +0 0.0840 +0 0.1095 +0 0.0516 +0 0.1693 +0 0.1587 +0 0.1894 +0 0.0865 +0 0.0636 +0 0.0650 +0 0.1548 +0 0.0381 +0 0.4024 +0 0.0983 +0 0.2329 +0 0.1350 +0 0.1888 +0 0.4346 +0 0.0681 +0 0.1561 +0 0.2978 +0 0.0771 +0 0.6706 +0 0.1160 +0 0.2768 +0 0.1561 +0 0.1763 +0 0.1180 +0 0.0830 +0 0.2007 +0 0.1156 +0 0.0706 +0 0.1487 +0 0.1262 +0 0.0713 +0 0.3264 +0 0.0680 +0 0.2214 +0 0.0604 +0 0.0938 +0 0.2607 +0 0.0780 +0 0.1086 +0 0.0821 +0 0.0829 +0 0.1067 +0 0.0954 +0 0.0677 +0 0.0467 +0 0.0987 +0 0.1899 +0 0.1512 +0 0.1143 +0 0.0681 +0 0.0563 +0 0.1537 +0 0.0681 +0 0.2965 +0 0.0894 +1 0.7695 +1 0.8638 +0 0.4179 +0 0.0500 +0 0.0637 +0 0.1272 +0 0.2056 +0 0.0613 +0 0.0372 +0 0.1129 +0 0.1733 +0 0.0772 +0 0.0912 +0 0.1220 +0 0.7403 +0 0.0802 +0 0.1992 +0 0.2448 +0 0.1387 +0 0.0701 +0 0.1014 +0 0.0524 +0 0.0676 +0 0.3145 +0 0.1585 +0 0.0445 +0 0.1107 +0 0.1144 +0 0.0473 +0 0.1927 +0 0.0486 +0 0.0853 +0 0.0789 +0 0.2941 +0 0.2567 +0 0.0742 +0 0.1389 +0 0.1161 +0 0.0859 +0 0.1095 +0 0.1285 +0 0.0795 +0 0.1294 +0 0.1408 +0 0.3316 +0 0.1350 +0 0.1497 +0 0.0639 +0 0.1599 +0 0.1806 +0 0.1461 +0 0.1345 +0 0.0633 +0 0.0671 +0 0.2024 +0 0.0617 +0 0.1731 +0 0.1094 +0 0.2313 +0 0.0769 +0 0.0668 +0 0.0726 +0 0.0573 +0 0.1095 +0 0.1001 +0 0.0650 +0 0.1727 +0 0.2008 +0 0.1192 +0 0.0648 +0 0.1133 +0 0.0984 +0 0.3391 +0 0.1298 +0 0.2962 +0 0.2416 +0 0.2196 +0 0.0359 +0 0.1818 +0 0.0672 +0 0.1294 +0 0.0740 +0 0.1251 +0 0.1358 +0 0.0487 +0 0.0593 +0 0.2195 +0 0.0767 +0 0.1069 +0 0.0805 +0 0.1057 +0 0.0469 +0 0.6106 +0 0.4830 +0 0.0555 +0 0.0492 +0 0.0731 +0 0.2335 +1 0.8310 +0 0.0635 +0 0.3216 +0 0.1675 +0 0.1553 +0 0.0842 +0 0.0664 +0 0.0867 +0 0.0483 +0 0.1091 +0 0.2015 +0 0.1397 +0 0.1305 +0 0.1584 +0 0.3169 +0 0.0706 +0 0.2218 +0 0.0659 +0 0.0832 +0 0.1617 +0 0.1565 +0 0.1908 +0 0.1054 +0 0.0933 +0 0.2815 +0 0.0436 +0 0.0311 +0 0.0930 +0 0.1214 +0 0.2084 +0 0.0711 +0 0.2003 +1 0.7838 +0 0.0478 +0 0.0958 +0 0.2080 +0 0.0419 +0 0.0861 +0 0.0636 +0 0.2724 +0 0.0379 +0 0.0795 +0 0.1080 +0 0.0672 +0 0.0491 +0 0.1923 +0 0.3965 +0 0.0677 +0 0.0382 +0 0.1119 +0 0.0925 +0 0.1246 +0 0.1195 +0 0.0795 +0 0.1137 +0 0.0902 +0 0.0474 +0 0.0840 +0 0.0769 +0 0.0502 +0 0.0721 +0 0.1778 +0 0.0951 +0 0.0388 +0 0.1476 +0 0.1651 +0 0.1208 +0 0.0839 +0 0.1530 +0 0.2202 +0 0.1844 +0 0.0761 +0 0.0794 +0 0.0601 +0 0.0686 +0 0.0755 +0 0.1544 +0 0.1607 +0 0.0949 +0 0.2101 +0 0.0821 +0 0.0749 +0 0.1085 +0 0.2485 +0 0.0993 +0 0.0930 +0 0.1006 +0 0.1118 +0 0.1260 +0 0.0894 +0 0.0630 +0 0.1539 +0 0.0762 +0 0.1076 +0 0.0545 +0 0.1296 +0 0.1253 +0 0.0392 +1 0.7934 +0 0.0462 +0 0.0650 +0 0.0637 +0 0.0726 +0 0.1474 +0 0.0982 +0 0.0824 +0 0.3767 +0 0.1432 +0 0.1341 +0 0.1427 +0 0.1934 +0 0.0845 +0 0.0731 +0 0.0354 +0 0.1031 +0 0.1078 +0 0.1033 +0 0.1009 +0 0.1066 +0 0.1445 +0 0.2029 +0 0.0601 +0 0.0444 +0 0.1304 +0 0.0598 +0 0.1377 +0 0.1316 +0 0.1225 +0 0.0871 +0 0.1712 +0 0.2811 +0 0.0401 +1 0.7896 +0 0.0469 +0 0.1238 +0 0.3923 +0 0.0892 +0 0.0864 +0 0.1447 +0 0.2376 +0 0.1832 +0 0.1219 +0 0.0670 +0 0.1658 +0 0.2604 +0 0.1167 +0 0.0412 +0 0.0329 +0 0.5914 +0 0.0923 +0 0.1621 +0 0.6274 +0 0.0313 +0 0.2845 +0 0.0973 +0 0.0499 +0 0.0585 +0 0.5731 +0 0.0726 +0 0.2284 +0 0.1370 +0 0.3692 +0 0.2514 +0 0.1226 +0 0.1168 +0 0.1656 +0 0.3547 +0 0.0601 +0 0.0927 +0 0.1623 +0 0.0979 +0 0.0741 +0 0.0621 +0 0.1042 +0 0.0440 +0 0.0892 +0 0.0577 +0 0.0441 +0 0.0869 +0 0.0975 +0 0.1932 +0 0.0330 +0 0.1073 +0 0.2534 +0 0.0404 +0 0.1720 +0 0.3084 +0 0.0904 +0 0.1225 +0 0.0561 +0 0.1248 +0 0.0456 +0 0.2443 +0 0.0857 +0 0.0298 +0 0.0671 +0 0.1628 +0 0.2271 +0 0.0831 +0 0.7230 +0 0.0932 +0 0.0927 +0 0.1217 +0 0.1741 +0 0.2684 +0 0.1500 +0 0.1066 +0 0.2364 +0 0.0899 +0 0.1230 +0 0.1233 +0 0.0616 +0 0.1865 +0 0.0954 +0 0.4281 +0 0.1023 +0 0.0900 +0 0.2306 +0 0.0450 +0 0.2189 +0 0.1082 +0 0.0738 +0 0.3347 +0 0.1431 +0 0.1243 +0 0.1575 +0 0.0754 +0 0.0597 +0 0.0678 +0 0.1051 +0 0.0880 +0 0.1449 +0 0.0587 +0 0.1043 +0 0.1810 +0 0.2813 +0 0.0831 +0 0.0511 +0 0.0955 +0 0.0728 +0 0.0614 +0 0.1991 +0 0.1767 +0 0.0410 +0 0.0370 +0 0.1039 +0 0.0773 +0 0.0744 +0 0.0284 +0 0.1378 +0 0.0345 +0 0.2413 +0 0.1547 +0 0.1408 +0 0.2018 +0 0.1310 +0 0.0916 +0 0.0681 +0 0.0821 +0 0.1235 +0 0.6374 +0 0.0560 +0 0.1741 +0 0.0660 +0 0.2106 +0 0.6366 +0 0.1336 +0 0.0672 +0 0.1006 +0 0.3899 +0 0.0606 +0 0.1290 +0 0.0536 +0 0.0806 +0 0.1020 +0 0.0534 +0 0.2452 +0 0.0973 +0 0.0835 +0 0.0820 +0 0.1074 +0 0.1316 +0 0.1461 +0 0.0996 +0 0.1059 +0 0.0846 +0 0.2142 +0 0.1922 +0 0.1157 +0 0.1537 +0 0.0734 +0 0.0522 +0 0.0617 +0 0.0773 +0 0.2798 +0 0.0725 +0 0.2286 +0 0.0741 +0 0.6762 +0 0.0768 +0 0.1763 +0 0.0765 +0 0.2771 +0 0.0994 +0 0.1090 +0 0.1500 +0 0.3117 +0 0.1308 +0 0.0366 +0 0.0482 +0 0.1899 +0 0.0655 +0 0.1039 +0 0.0828 +0 0.0572 +0 0.2595 +0 0.1007 +0 0.0538 +0 0.1139 +0 0.0618 +0 0.0465 +0 0.0860 +0 0.0746 +0 0.2450 +0 0.0994 +0 0.1803 +0 0.0553 +0 0.0702 +0 0.3033 +0 0.6932 +0 0.1860 +0 0.0944 +0 0.0715 +0 0.0846 +0 0.2545 +0 0.4088 +0 0.0928 +0 0.1725 +0 0.0878 +0 0.2880 +0 0.1038 +0 0.0440 +0 0.0412 +0 0.6302 +0 0.2305 +0 0.1139 +0 0.1103 +0 0.1405 +0 0.0821 +0 0.0300 +0 0.1411 +0 0.1135 +0 0.0833 +0 0.0656 +0 0.0778 +0 0.0937 +0 0.1911 +0 0.1234 +0 0.1117 +0 0.0718 +0 0.0494 +0 0.0633 +0 0.1619 +0 0.0945 +0 0.1608 +0 0.1517 +0 0.1159 +0 0.0975 +0 0.0998 +0 0.1363 +0 0.1681 +0 0.1497 +0 0.1025 +0 0.1058 +0 0.3167 +1 0.7779 +0 0.1961 +0 0.0935 +0 0.2222 +0 0.0774 +0 0.0846 +0 0.0736 +0 0.0905 +0 0.0430 +0 0.0780 +0 0.3730 +0 0.0559 +0 0.1009 +0 0.0808 +0 0.0371 +0 0.2504 +0 0.1818 +0 0.1313 +0 0.3290 +0 0.0299 +0 0.0586 +0 0.1346 +0 0.0841 +0 0.1128 +0 0.1141 +0 0.1274 +0 0.1158 +0 0.0596 +0 0.0741 +0 0.0548 +0 0.3520 +1 0.8496 +0 0.1422 +0 0.3076 +0 0.0795 +0 0.0920 +0 0.0642 +0 0.1094 +0 0.0416 +0 0.1181 +0 0.0926 +0 0.1191 +0 0.0830 +0 0.1762 +0 0.1008 +0 0.0855 +0 0.0753 +0 0.0786 +0 0.1242 +0 0.2002 +0 0.0738 +0 0.1402 +0 0.1741 +0 0.0736 +0 0.0764 +0 0.0461 +0 0.0833 +0 0.1308 +1 0.7890 +0 0.1586 +0 0.3574 +0 0.1722 +0 0.0973 +0 0.1439 +0 0.1122 +0 0.1876 +0 0.0853 +0 0.1528 +1 0.8210 +0 0.0718 +0 0.0880 +0 0.3128 +0 0.1601 +0 0.0759 +0 0.0731 +0 0.1089 +0 0.0547 +0 0.1918 +0 0.1044 +0 0.0465 +0 0.0908 +0 0.0494 +0 0.1473 +0 0.1220 +0 0.0850 +0 0.0860 +0 0.1212 +0 0.1379 +0 0.0820 +0 0.1002 +0 0.0681 +0 0.1101 +0 0.2803 +0 0.0782 +0 0.0938 +0 0.1168 +0 0.0620 +0 0.0771 +0 0.0903 +0 0.0638 +1 0.7723 +0 0.0685 +0 0.0700 +0 0.0785 +0 0.1177 +0 0.0852 +0 0.6682 +0 0.2231 +0 0.1414 +0 0.0917 +0 0.1332 +0 0.0851 +0 0.2700 +0 0.5160 +0 0.1275 +0 0.1148 +0 0.1230 +0 0.1030 +0 0.1582 +0 0.1764 +0 0.1232 +0 0.0849 +0 0.0563 +0 0.4477 +0 0.0898 +0 0.3579 +0 0.1036 +0 0.3012 +0 0.1461 +0 0.1440 +0 0.0638 +0 0.0791 +0 0.1102 +0 0.5233 +0 0.1330 +0 0.6964 +0 0.1121 +0 0.2034 +0 0.0564 +0 0.0879 +0 0.0546 +0 0.0898 +0 0.0562 +0 0.0723 +0 0.1324 +0 0.0650 +0 0.0633 +0 0.0957 +0 0.0583 +0 0.0877 +0 0.2454 +0 0.0647 +0 0.2332 +0 0.4414 +0 0.1089 +0 0.0538 +0 0.0901 +0 0.5556 +0 0.1521 +0 0.1023 +0 0.0834 +0 0.0547 +0 0.1474 +0 0.0601 +0 0.7056 +0 0.1024 +0 0.2211 +0 0.2346 +0 0.2637 +0 0.1345 +0 0.0983 +0 0.1047 +0 0.1646 +0 0.0692 +0 0.1525 +0 0.1978 +0 0.0676 +0 0.1128 +0 0.0388 +0 0.1393 +0 0.4756 +0 0.1121 +0 0.1100 +0 0.1841 +0 0.1600 +0 0.0825 +0 0.0415 +0 0.0839 +0 0.1779 +0 0.0973 +0 0.3667 +0 0.0885 +0 0.1690 +0 0.1460 +0 0.0946 +0 0.0722 +0 0.0956 +0 0.5350 +0 0.1781 +0 0.0766 +0 0.0805 +0 0.2587 +0 0.2009 +0 0.1160 +0 0.0623 +0 0.0574 +0 0.1187 +0 0.0839 +0 0.0891 +0 0.0763 +0 0.1987 +0 0.1702 +0 0.0787 +0 0.7266 +0 0.0556 +0 0.4101 +0 0.0773 +0 0.1712 +0 0.1233 +0 0.0445 +0 0.2034 +0 0.0888 +0 0.1382 +0 0.1106 +0 0.1293 +0 0.0757 +1 0.7526 +0 0.1084 +0 0.1330 +0 0.1010 +0 0.2087 +0 0.0370 +0 0.0786 +0 0.1159 +0 0.2066 +0 0.0873 +1 0.7933 +0 0.0847 +0 0.1091 +0 0.1071 +0 0.0323 +0 0.0684 +0 0.1839 +0 0.0727 +0 0.0644 +0 0.1415 +0 0.0678 +0 0.0408 +0 0.2011 +0 0.1395 +0 0.0514 +0 0.1300 +0 0.0664 +0 0.0644 +0 0.1407 +0 0.0963 +0 0.0803 +0 0.0753 +0 0.7181 +0 0.0431 +0 0.0594 +0 0.1110 +0 0.1174 +0 0.7156 +0 0.0783 +0 0.0800 +0 0.0712 +0 0.5719 +0 0.1073 +0 0.0624 +0 0.6501 +0 0.0650 +0 0.0786 +0 0.1536 +0 0.0629 +0 0.0524 +0 0.1299 +0 0.0847 +0 0.3525 +0 0.1586 +0 0.7276 +0 0.1728 +0 0.1103 +0 0.1661 +0 0.1590 +0 0.0930 +0 0.2956 +0 0.2439 +0 0.0667 +0 0.0340 +0 0.1820 +0 0.1912 +1 0.7820 +0 0.0916 +0 0.1393 +0 0.7252 +0 0.1384 +0 0.1384 +0 0.1189 +0 0.1343 +0 0.0883 +0 0.1717 +0 0.1210 +0 0.0607 +0 0.0626 +0 0.2218 +0 0.0513 +0 0.0999 +1 0.7869 +0 0.0383 +0 0.0815 +0 0.0680 +0 0.0310 +0 0.7035 +0 0.0448 +0 0.1428 +0 0.0470 +0 0.1460 +0 0.1031 +0 0.0722 +0 0.0696 +0 0.0893 +0 0.0527 +0 0.0822 +0 0.1805 +0 0.0750 +0 0.0653 +1 0.7066 +1 0.2539 +0 0.0976 +0 0.1450 +0 0.0857 +0 0.1052 +0 0.0747 +0 0.1875 +0 0.0702 +0 0.0492 +0 0.0904 +0 0.0720 +0 0.3071 +0 0.1625 +0 0.3231 +0 0.1159 +0 0.1463 +0 0.0756 +0 0.1362 +0 0.1328 +0 0.0441 +0 0.0852 +0 0.0698 +0 0.2167 +0 0.0878 +0 0.0496 +0 0.0562 +0 0.0752 +0 0.1810 +0 0.7325 +0 0.0893 +0 0.1083 +0 0.1617 +0 0.0646 +0 0.0709 +0 0.0701 +0 0.0649 +0 0.3966 +0 0.1136 +0 0.1110 +0 0.1427 +0 0.2129 +0 0.1468 +0 0.1014 +0 0.0934 +0 0.2961 +0 0.2375 +0 0.1138 +0 0.1421 +0 0.0451 +0 0.5712 +0 0.4258 +0 0.1627 +0 0.0876 +0 0.2500 +0 0.0535 +0 0.7433 +0 0.0872 +0 0.2059 +0 0.1255 +0 0.0552 +0 0.0883 +0 0.1405 +0 0.0514 +0 0.1337 +0 0.1299 +0 0.0789 +0 0.1363 +0 0.2114 +0 0.0784 +0 0.1219 +0 0.0732 +0 0.1763 +0 0.1047 +0 0.0802 +0 0.1604 +0 0.0678 +0 0.0586 +0 0.1348 +0 0.1563 +0 0.2001 +0 0.0695 +0 0.1855 +0 0.1607 +0 0.1937 +0 0.0640 +0 0.1084 +0 0.1338 +0 0.0920 +0 0.0849 +0 0.0440 +0 0.2925 +0 0.1358 +0 0.1619 +0 0.1371 +0 0.2270 +0 0.1348 +0 0.1218 +0 0.0844 +0 0.7112 +0 0.0468 +0 0.2165 +0 0.0663 +0 0.0752 +0 0.0406 +1 0.7899 +0 0.0765 +0 0.0312 +0 0.1712 +0 0.3835 +0 0.2661 +0 0.1880 +0 0.1475 +0 0.0551 +0 0.0845 +0 0.1883 +0 0.0690 +0 0.1627 +0 0.1541 +0 0.1306 +0 0.0549 +1 0.7674 +0 0.0660 +0 0.1556 +0 0.0839 +0 0.1014 +0 0.1336 +0 0.0762 +0 0.1628 +0 0.1110 +0 0.2625 +0 0.0940 +0 0.0930 +0 0.1243 +0 0.0626 +0 0.2153 +0 0.2240 +0 0.2013 +0 0.1428 +0 0.0405 +0 0.1343 +0 0.1623 +1 0.8175 +0 0.0751 +0 0.1729 +0 0.2332 +0 0.0794 +0 0.0541 +0 0.1818 +0 0.0326 +0 0.1065 +0 0.2480 +0 0.1865 +0 0.2676 +0 0.0863 +1 0.8829 +0 0.1291 +0 0.0642 +0 0.0549 +0 0.0742 +0 0.0617 +0 0.0725 +0 0.2584 +0 0.2377 +0 0.0918 +0 0.4987 +0 0.1308 +0 0.0635 +0 0.1998 +0 0.1251 +0 0.0966 +0 0.0592 +0 0.6395 +0 0.0815 +0 0.0704 +0 0.0437 +0 0.1485 +0 0.0937 +0 0.0983 +0 0.2595 +0 0.0800 +0 0.1183 +0 0.1176 +0 0.0463 +0 0.0427 +0 0.1262 +0 0.1745 +0 0.0804 +0 0.2234 +0 0.0572 +0 0.1636 +0 0.1175 +0 0.2455 +0 0.1425 +0 0.1973 +0 0.3142 +0 0.0664 +0 0.2552 +0 0.2114 +0 0.0724 +0 0.0520 +0 0.1746 +0 0.0832 +0 0.1258 +0 0.0902 +0 0.0462 +0 0.1186 +0 0.0904 +0 0.1193 +0 0.1108 +0 0.0352 +0 0.1277 +0 0.0790 +0 0.1835 +0 0.1486 +0 0.1807 +0 0.1363 +0 0.1581 +0 0.0912 +0 0.0502 +1 0.7672 +0 0.1146 +0 0.7209 +0 0.1217 +0 0.1231 +0 0.0427 +0 0.0962 +0 0.0987 +0 0.1395 +0 0.0434 +0 0.1521 +0 0.7441 +0 0.0854 +0 0.0368 +0 0.3603 +1 0.8721 +0 0.0835 +0 0.1449 +0 0.0978 +0 0.0707 +0 0.2033 +0 0.0765 +0 0.1221 +0 0.0528 +0 0.1046 +0 0.1396 +0 0.1516 +0 0.3169 +0 0.1226 +0 0.0865 +0 0.0597 +0 0.6924 +0 0.0491 +0 0.1880 +0 0.2254 +0 0.0524 +0 0.0611 +0 0.3264 +0 0.0426 +0 0.0861 +0 0.0679 +0 0.3797 +0 0.1509 +0 0.0962 +0 0.1153 +0 0.1040 +0 0.0516 +0 0.0508 +0 0.5028 +0 0.1677 +0 0.4837 +0 0.1188 +0 0.0837 +0 0.1569 +0 0.1242 +0 0.1049 +0 0.2672 +0 0.1201 +0 0.0577 +0 0.5435 +0 0.0617 +0 0.2180 +0 0.1954 +0 0.1691 +1 0.8253 +0 0.0996 +0 0.0990 +0 0.0710 +0 0.0452 +0 0.1129 +0 0.1569 +0 0.1136 +0 0.1187 +0 0.2764 +0 0.0745 +0 0.1206 +0 0.0659 +0 0.0537 +0 0.2050 +0 0.2720 +0 0.1227 +0 0.1126 +0 0.0745 +0 0.1034 +0 0.1046 +0 0.1258 +0 0.0887 +0 0.1374 +0 0.1347 +0 0.0526 +0 0.0833 +0 0.1071 +0 0.0963 +0 0.1057 +0 0.0688 +0 0.2379 +0 0.1159 +0 0.2635 +0 0.1520 +0 0.0827 +0 0.1010 +0 0.1054 +0 0.1249 +0 0.3640 +0 0.0865 +1 0.8684 +0 0.1325 +0 0.3368 +0 0.1262 +0 0.0586 +0 0.0571 +0 0.0520 +0 0.1764 +0 0.1652 +0 0.1225 +0 0.0621 +0 0.0884 +0 0.0646 +0 0.1865 +0 0.1254 +0 0.1455 +0 0.0672 +0 0.0929 +0 0.1636 +0 0.0869 +0 0.0778 +0 0.1369 +0 0.0737 +0 0.3231 +0 0.1185 +0 0.1617 +0 0.1583 +0 0.3662 +0 0.1421 +0 0.0630 +0 0.0403 +0 0.2611 +0 0.1034 +0 0.0507 +0 0.2538 +1 0.7935 +0 0.1676 +0 0.1042 +0 0.1360 +0 0.3948 +0 0.1131 +0 0.0925 +0 0.1143 +0 0.1146 +0 0.0874 +0 0.0776 +0 0.1696 +0 0.0896 +0 0.1234 +0 0.1776 +0 0.1438 +0 0.1175 +0 0.0753 +0 0.0869 +0 0.0845 +0 0.1164 +0 0.0520 +0 0.6931 +0 0.0813 +0 0.0555 +0 0.2090 +0 0.1083 +0 0.1508 +0 0.0799 +0 0.0731 +0 0.1960 +0 0.0561 +0 0.0551 +0 0.0517 +0 0.3804 +0 0.1193 +0 0.0466 +0 0.0776 +0 0.0423 +0 0.6362 +0 0.0877 +0 0.6712 +0 0.0318 +0 0.0851 +0 0.0796 +0 0.1146 +0 0.2016 +0 0.0913 +0 0.0660 +0 0.0729 +0 0.0497 +0 0.1006 +0 0.1507 +0 0.1614 +0 0.5236 +0 0.4763 +0 0.0918 +0 0.5888 +0 0.1423 +1 0.8328 +0 0.1164 +0 0.4129 +0 0.2073 +0 0.0892 +0 0.0858 +0 0.0953 +1 0.7667 +0 0.0774 +0 0.1774 +0 0.0550 +0 0.1231 +0 0.1334 +0 0.1647 +0 0.5635 +0 0.1163 +0 0.3771 +0 0.0831 +0 0.1976 +0 0.2449 +0 0.2169 +0 0.0666 +0 0.1430 +0 0.0820 +0 0.0546 +0 0.1869 +0 0.1531 +0 0.0851 +0 0.4772 +0 0.1287 +0 0.0926 +0 0.0478 +0 0.1320 +0 0.0578 +0 0.2069 +0 0.1200 +0 0.1149 +0 0.0471 +0 0.0501 +0 0.1610 +0 0.6805 +0 0.0760 +0 0.1771 +0 0.2207 +0 0.1335 +0 0.1194 +0 0.0863 +0 0.0407 +0 0.0890 +0 0.1297 +0 0.0802 +0 0.1384 +0 0.1200 +0 0.1651 +0 0.0725 +0 0.0648 +0 0.0689 +0 0.0847 +0 0.4072 +0 0.0875 +0 0.2407 +0 0.0930 +0 0.1129 +0 0.0844 +0 0.0739 +0 0.0886 +0 0.0586 +0 0.0664 +0 0.0766 +0 0.0746 +0 0.1221 +0 0.1240 +0 0.1302 +0 0.2178 +0 0.1498 +0 0.0966 +0 0.0831 +0 0.1126 +0 0.0588 +0 0.1127 +0 0.2161 +0 0.3421 +0 0.1745 +0 0.1168 +0 0.0555 +0 0.2217 +0 0.1304 +0 0.0563 +0 0.7152 +0 0.1845 +0 0.1821 +0 0.0697 +0 0.1261 +0 0.2300 +1 0.2250 +0 0.0793 +0 0.0721 +0 0.0676 +0 0.2048 +0 0.0427 +0 0.1081 +0 0.2406 +0 0.1283 +0 0.1165 +0 0.0715 +0 0.0563 +1 0.7859 +0 0.1939 +0 0.5338 +0 0.0828 +0 0.2518 +0 0.0586 +0 0.1075 +0 0.0935 +0 0.0573 +0 0.2771 +0 0.0696 +0 0.3277 +0 0.2121 +0 0.0858 +0 0.1007 +0 0.0368 +0 0.2795 +0 0.1386 +0 0.0599 +0 0.1985 +0 0.1087 +0 0.2783 +0 0.1688 +0 0.1102 +0 0.1167 +0 0.0459 +0 0.0933 +0 0.0928 +0 0.2940 +0 0.1724 +1 0.8886 +0 0.0902 +0 0.1044 +0 0.0583 +0 0.1948 +0 0.2130 +0 0.0658 +0 0.2583 +0 0.5992 +0 0.0389 +0 0.1343 +0 0.1144 +0 0.2770 +0 0.0678 +0 0.0717 +0 0.1493 +0 0.1716 +0 0.1599 +0 0.1695 +0 0.0839 +0 0.0430 +0 0.0683 +0 0.0434 +1 0.8680 +0 0.0395 +0 0.0687 +0 0.0597 +0 0.1149 +0 0.0694 +0 0.1732 +0 0.2224 +0 0.0961 +0 0.0870 +0 0.0892 +0 0.0759 +0 0.1677 +0 0.1017 +0 0.0508 +0 0.1014 +0 0.0609 +0 0.0449 +0 0.0378 +0 0.1378 +0 0.0561 +0 0.0696 +0 0.1157 +0 0.1111 +0 0.0905 +0 0.0589 +0 0.1490 +0 0.1236 +0 0.5603 +0 0.2041 +0 0.2816 +1 0.7999 +0 0.1288 +0 0.0842 +0 0.0950 +0 0.1298 +0 0.0450 +0 0.1211 +0 0.2256 +0 0.2960 +0 0.0708 +0 0.1134 +0 0.0801 +0 0.0576 +0 0.1635 +0 0.0511 +0 0.1655 +0 0.1054 +0 0.1311 +0 0.1138 +0 0.1191 +0 0.1457 +0 0.0437 +0 0.1281 +0 0.0828 +0 0.1039 +0 0.0680 +0 0.6909 +0 0.1066 +0 0.1187 +0 0.1155 +0 0.1221 +0 0.0482 +0 0.2510 +0 0.0976 +0 0.1966 +0 0.0507 +0 0.1444 +0 0.1304 +0 0.2197 +0 0.1734 +0 0.1365 +0 0.0523 +0 0.1357 +0 0.0642 +0 0.0682 +0 0.1929 +0 0.0974 +0 0.0356 +0 0.1074 +0 0.1444 +0 0.0861 +0 0.4425 +0 0.1035 +0 0.2523 +0 0.4037 +0 0.1268 +0 0.1236 +0 0.3182 +0 0.0733 +0 0.4089 +0 0.0748 +0 0.6730 +0 0.1409 +0 0.1314 +1 0.7869 +0 0.0772 +0 0.0957 +0 0.1434 +0 0.0905 +0 0.0751 +0 0.0614 +0 0.1916 +0 0.2293 +0 0.1603 +0 0.0740 +0 0.0640 +0 0.0870 +0 0.1318 +0 0.2242 +0 0.3262 +0 0.1191 +0 0.1828 +0 0.1265 +0 0.0724 +0 0.2354 +0 0.2699 +0 0.1443 +0 0.1619 +0 0.0771 +0 0.0476 +0 0.1620 +0 0.1311 +0 0.0359 +0 0.0434 +0 0.0928 +0 0.1700 +0 0.0359 +0 0.1773 +0 0.0484 +0 0.1604 +0 0.0783 +0 0.1135 +0 0.1011 +0 0.0790 +0 0.0765 +0 0.1003 +0 0.0843 +0 0.0764 +0 0.1179 +0 0.0784 +0 0.0712 +0 0.0482 +0 0.1665 +0 0.0619 +0 0.2396 +0 0.7190 +0 0.1203 +0 0.0494 +0 0.1672 +0 0.0566 +0 0.1551 +0 0.2358 +0 0.0517 +0 0.1153 +0 0.1736 +0 0.1574 +0 0.1269 +0 0.1254 +0 0.0551 +0 0.1364 +0 0.0659 +0 0.0540 +0 0.1372 +0 0.1118 +0 0.1932 +0 0.0665 +0 0.6865 +0 0.0529 +0 0.6866 +0 0.0759 +0 0.1729 +0 0.0513 +0 0.0774 +0 0.0521 +0 0.1416 +0 0.1178 +0 0.0631 +0 0.0708 +0 0.0752 +0 0.0597 +0 0.0945 +0 0.0682 +0 0.1283 +0 0.1799 +0 0.1302 +0 0.1358 +0 0.0702 +0 0.2738 +0 0.1165 +0 0.2847 +0 0.0540 +0 0.1727 +0 0.1259 +0 0.0477 +0 0.0502 +0 0.0624 +0 0.1440 +0 0.1034 +0 0.0514 +0 0.0700 +0 0.0837 +0 0.0840 +0 0.1044 +1 0.7917 +0 0.2333 +0 0.0922 +0 0.2202 +0 0.0719 +0 0.1768 +0 0.0389 +0 0.0430 +0 0.2925 +0 0.0946 +0 0.1536 +0 0.0796 +1 0.7781 +0 0.0492 +0 0.1163 +0 0.0459 +0 0.0504 +0 0.3769 +0 0.1205 +0 0.0700 +0 0.1073 +0 0.0779 +0 0.0718 +0 0.0512 +0 0.0618 +0 0.1388 +0 0.1637 +0 0.1362 +0 0.0598 +0 0.0492 +0 0.0625 +0 0.0922 +0 0.1556 +0 0.1517 +0 0.0697 +0 0.1100 +0 0.0513 +0 0.1110 +0 0.1084 +0 0.0540 +0 0.0693 +0 0.0706 +0 0.1490 +0 0.1438 +0 0.0305 +0 0.0707 +0 0.0610 +0 0.0693 +0 0.0814 +0 0.3827 +0 0.0518 +0 0.1566 +0 0.3544 +0 0.1111 +0 0.1539 +0 0.0866 +0 0.0737 +0 0.5297 +0 0.0836 +0 0.1701 +0 0.4124 +0 0.1997 +0 0.2039 +0 0.0934 +0 0.1876 +0 0.1765 +0 0.5702 +0 0.1128 +0 0.1615 +0 0.4186 +0 0.1967 +0 0.2346 +0 0.0721 +0 0.0753 +0 0.2104 +0 0.2215 +0 0.1016 +0 0.1036 +0 0.1748 +0 0.1070 +0 0.6618 +0 0.1412 +0 0.7155 +0 0.0669 +0 0.3646 +0 0.2467 +0 0.0995 +0 0.0470 +0 0.1215 +0 0.0460 +0 0.2779 +0 0.1441 +0 0.0961 +0 0.1490 +0 0.1981 +0 0.1268 +0 0.3286 +0 0.0780 +0 0.0562 +0 0.1229 +0 0.2100 +0 0.1396 +0 0.0582 +0 0.0462 +0 0.1935 +0 0.2046 +0 0.0576 +0 0.0581 +0 0.1477 +0 0.6252 +0 0.5558 +0 0.1796 +0 0.1402 +0 0.1552 +0 0.0648 +0 0.0573 +0 0.1006 +0 0.0918 +0 0.0413 +0 0.0870 +0 0.0664 +0 0.1589 +0 0.1343 +0 0.1134 +0 0.0533 +0 0.1423 +0 0.1573 +0 0.1524 +0 0.0564 +0 0.1405 +0 0.0913 +0 0.1973 +0 0.0967 +0 0.0950 +0 0.4156 +0 0.0524 +0 0.2117 +0 0.1371 +0 0.1582 +0 0.1372 +0 0.0751 +0 0.3751 +0 0.1466 +0 0.1415 +0 0.2465 +0 0.0740 +0 0.0780 +0 0.0807 +0 0.0954 +0 0.1496 +0 0.2802 +0 0.0858 +0 0.0532 +0 0.2158 +0 0.1346 +0 0.0599 +0 0.0767 +0 0.1352 +0 0.1324 +0 0.1299 +0 0.2257 +0 0.1338 +0 0.1674 +0 0.6714 +0 0.0675 +0 0.1131 +0 0.0472 +0 0.1288 +0 0.0513 +0 0.1073 +0 0.1363 +0 0.0710 +0 0.1397 +0 0.0998 +0 0.0830 +0 0.1534 +0 0.0729 +0 0.0738 +0 0.0419 +0 0.0623 +0 0.1078 +0 0.4737 +0 0.1621 +0 0.0687 +0 0.0930 +0 0.0536 +0 0.1155 +0 0.1514 +0 0.0622 +0 0.3601 +0 0.2733 +0 0.0909 +0 0.3405 +0 0.1430 +0 0.0709 +0 0.1299 +0 0.0783 +0 0.2114 +0 0.0979 +0 0.3372 +0 0.1646 +0 0.1430 +0 0.1305 +0 0.1707 +0 0.0475 +0 0.2225 +1 0.8024 +0 0.0664 +0 0.1264 +0 0.2242 +0 0.2314 +0 0.3489 +0 0.1353 +0 0.0687 +0 0.0959 +0 0.0951 +0 0.2192 +0 0.0722 +0 0.1027 +0 0.0593 +0 0.0851 +0 0.0789 +0 0.0563 +0 0.0966 +0 0.1805 +0 0.0883 +0 0.1399 +0 0.2694 +0 0.1182 +0 0.4950 +0 0.0982 +0 0.2291 +0 0.0871 +1 0.8556 +0 0.1125 +0 0.0851 +0 0.1649 +0 0.0917 +0 0.3136 +0 0.2257 +0 0.1987 +0 0.3207 +0 0.0646 +0 0.0967 +0 0.1358 +0 0.0553 +0 0.0814 +0 0.1460 +0 0.1166 +0 0.0947 +0 0.0693 +0 0.1129 +0 0.0644 +1 0.7569 +0 0.1497 +0 0.0902 +0 0.0374 +0 0.5420 +0 0.4033 +0 0.1271 +0 0.1144 +0 0.0813 +0 0.0765 +0 0.0922 +0 0.7085 +0 0.0701 +0 0.0948 +0 0.0740 +0 0.1632 +0 0.0516 +0 0.0985 +0 0.2047 +0 0.1817 +0 0.1070 +0 0.1643 +0 0.1983 +0 0.1650 +0 0.0951 +0 0.1164 +0 0.1023 +0 0.1082 +0 0.0810 +0 0.1400 +0 0.0616 +0 0.0394 +0 0.2066 +0 0.1389 +0 0.7369 +0 0.0897 +0 0.1255 +0 0.2310 +0 0.1570 +0 0.1433 +0 0.2427 +0 0.0669 +0 0.1043 +0 0.0804 +0 0.0784 +0 0.1338 +0 0.0504 +0 0.1567 +0 0.0636 +0 0.0794 +0 0.3236 +0 0.1246 +0 0.2260 +0 0.0936 +0 0.0473 +0 0.2509 +0 0.0420 +0 0.0766 +0 0.0653 +0 0.1442 +0 0.1576 +0 0.1286 +1 0.7808 +0 0.0855 +0 0.1669 +0 0.1862 +0 0.1397 +0 0.0903 +0 0.3221 +0 0.3125 +0 0.1203 +0 0.0850 +0 0.1496 +0 0.2442 +0 0.0744 +0 0.1002 +0 0.1626 +0 0.0682 +0 0.1229 +0 0.1226 +0 0.1536 +0 0.1943 +0 0.0566 +0 0.1339 +0 0.1395 +0 0.0752 +0 0.0780 +0 0.0824 +0 0.1759 +0 0.3062 +0 0.2963 +0 0.1876 +0 0.0406 +0 0.1176 +0 0.0651 +0 0.0596 +0 0.2757 +0 0.2104 +0 0.2786 +0 0.0842 +0 0.0560 +0 0.0546 +0 0.0593 +0 0.1114 +0 0.1226 +0 0.2726 +0 0.0771 +0 0.0513 +0 0.1047 +0 0.0892 +0 0.0591 +0 0.0483 +0 0.1438 +0 0.1151 +0 0.0386 +0 0.0545 +0 0.1038 +0 0.0548 +0 0.0973 +0 0.1247 +0 0.0774 +0 0.1400 +0 0.0910 +0 0.0858 +0 0.2438 +0 0.3921 +0 0.3347 +0 0.0715 +0 0.0566 +0 0.0721 +0 0.1104 +0 0.3657 +0 0.0685 +0 0.1927 +0 0.1022 +0 0.0423 +0 0.1412 +0 0.2005 +0 0.6916 +0 0.0955 +0 0.1223 +0 0.2336 +0 0.1028 +0 0.4818 +0 0.1798 +0 0.1212 +0 0.5983 +0 0.0959 +0 0.0425 +0 0.0649 +0 0.0646 +0 0.0622 +0 0.0689 +0 0.1667 +0 0.1263 +0 0.0634 +0 0.0975 +0 0.2526 +0 0.1875 +0 0.1574 +0 0.0504 +0 0.2522 +0 0.0990 +0 0.5860 +0 0.1042 +0 0.4228 +0 0.0618 +0 0.0747 +0 0.4740 +0 0.1274 +0 0.0942 +0 0.2948 +0 0.2375 +0 0.2178 +0 0.1288 +0 0.1767 +0 0.1164 +0 0.0970 +0 0.4233 +0 0.0559 +0 0.0602 +0 0.0736 +0 0.2605 +0 0.0878 +0 0.1512 +0 0.1822 +0 0.1498 +0 0.1084 +0 0.0754 +0 0.0842 +0 0.4012 +0 0.0854 +0 0.0785 +0 0.0693 +0 0.1251 +0 0.5934 +0 0.1892 +0 0.0954 +0 0.1249 +0 0.0742 +0 0.0676 +1 0.8319 +0 0.2103 +0 0.0749 +1 0.8761 +0 0.0706 +0 0.1893 +0 0.0683 +0 0.1624 +0 0.1651 +0 0.2112 +0 0.1651 +0 0.1472 +0 0.1467 +0 0.1045 +0 0.0337 +0 0.3996 +0 0.5975 +0 0.3084 +0 0.0828 +0 0.1078 +0 0.1663 +0 0.1151 +0 0.1940 +0 0.1040 +0 0.0919 +0 0.1483 +0 0.2593 +0 0.0739 +0 0.0660 +0 0.0623 +0 0.1229 +0 0.0546 +0 0.1567 +0 0.0589 +0 0.1891 +0 0.0670 +0 0.1982 +0 0.0747 +0 0.0748 +0 0.0541 +0 0.0343 +0 0.0496 +0 0.3292 +0 0.1166 +0 0.1644 +0 0.0800 +0 0.0744 +1 0.8439 +0 0.0899 +0 0.2934 +0 0.3282 +0 0.1257 +0 0.1004 +0 0.1047 +1 0.8096 +0 0.0786 +0 0.0731 +0 0.1922 +0 0.3019 +0 0.0466 +0 0.5433 +0 0.0448 +0 0.0732 +0 0.1306 +0 0.0342 +0 0.0946 +0 0.1377 +0 0.2363 +0 0.0613 +0 0.0804 +0 0.1017 +0 0.1322 +0 0.6996 +0 0.0436 +0 0.0744 +0 0.0847 +0 0.3780 +0 0.1245 +0 0.0366 +0 0.1588 +0 0.2032 +0 0.0549 +0 0.1339 +0 0.0424 +0 0.7383 +0 0.0567 +0 0.0428 +0 0.1494 +0 0.0449 +0 0.1770 +0 0.1378 +0 0.0576 +0 0.0318 +0 0.1215 +0 0.1382 +0 0.2661 +0 0.1622 +0 0.2020 +0 0.4853 +0 0.1148 +0 0.1935 +0 0.1672 +0 0.2519 +0 0.1586 +0 0.0808 +0 0.1606 +0 0.1533 +0 0.0598 +0 0.3016 +0 0.0843 +0 0.1021 +0 0.1110 +0 0.0834 +0 0.0505 +0 0.0772 +0 0.0980 +0 0.1086 +0 0.1018 +0 0.0725 +0 0.2335 +0 0.1414 +0 0.0617 +0 0.0731 +0 0.0915 +0 0.0913 +0 0.0869 +0 0.1577 +0 0.0817 +0 0.0487 +0 0.1336 +0 0.1562 +0 0.0584 +0 0.0874 +0 0.2953 +0 0.1967 +0 0.0338 +0 0.2014 +0 0.0867 +0 0.4619 +0 0.2245 +0 0.0999 +0 0.1389 +0 0.0659 +0 0.1027 +0 0.1094 +0 0.1766 +0 0.0570 +0 0.1170 +0 0.3311 +0 0.0635 +0 0.1344 +0 0.2012 +0 0.0898 +0 0.1049 +0 0.2150 +0 0.0576 +0 0.1940 +0 0.2949 +0 0.0855 +0 0.0828 +0 0.0786 +0 0.0624 +0 0.0699 +0 0.4354 +0 0.0889 +0 0.1715 +0 0.0549 +0 0.0410 +0 0.1942 +0 0.2221 +0 0.1419 +0 0.0993 +0 0.0920 +0 0.0779 +0 0.1508 +0 0.1873 +0 0.1198 +0 0.3075 +0 0.1427 +0 0.1104 +0 0.1253 +0 0.1706 +0 0.0492 +0 0.4572 +0 0.1028 +0 0.3483 +0 0.0826 +0 0.0672 +0 0.0608 +0 0.1635 +0 0.1404 +0 0.1644 +0 0.1295 +0 0.2818 +0 0.0690 +0 0.1633 +0 0.0610 +0 0.0853 +0 0.2264 +0 0.1832 +0 0.0498 +0 0.1008 +0 0.1094 +0 0.1008 +0 0.0676 +0 0.1342 +0 0.0927 +0 0.2328 +0 0.1251 +0 0.1886 +0 0.0597 +0 0.0825 +0 0.2921 +0 0.0516 +0 0.0672 +0 0.0627 +0 0.1973 +0 0.2369 +0 0.1361 +0 0.2794 +0 0.1126 +0 0.1156 +0 0.0528 +0 0.1035 +0 0.0866 +0 0.1099 +0 0.1475 +0 0.3008 +0 0.1643 +0 0.6694 +0 0.0989 +0 0.2176 +0 0.1867 +0 0.1306 +0 0.1349 +0 0.0492 +0 0.1022 +0 0.0520 +0 0.1498 +0 0.6737 +0 0.1111 +0 0.5645 +0 0.3304 +0 0.0726 +0 0.2298 +0 0.2662 +0 0.1333 +0 0.1048 +0 0.0834 +0 0.1154 +0 0.1377 +0 0.0671 +0 0.1295 +0 0.1164 +0 0.0956 +0 0.0920 +0 0.1371 +0 0.1705 +0 0.1487 +0 0.0694 +0 0.1827 +0 0.0708 +0 0.1322 +0 0.0621 +0 0.1336 +0 0.1243 +0 0.2098 +0 0.0510 +0 0.0834 +0 0.1622 +0 0.0792 +0 0.0563 +0 0.1945 +0 0.0707 +0 0.0933 +0 0.2399 +0 0.2724 +0 0.1647 +0 0.2725 +0 0.0893 +0 0.0310 +0 0.1566 +0 0.1656 +0 0.1262 +0 0.1121 +0 0.1255 +0 0.1137 +0 0.0926 +0 0.0709 +0 0.2560 +0 0.1942 +0 0.1135 +0 0.2424 +0 0.2716 +0 0.0685 +0 0.1254 +0 0.0878 +0 0.0850 +0 0.7039 +0 0.0645 +0 0.1006 +0 0.1047 +0 0.1624 +1 0.8488 +0 0.2542 +0 0.0558 +0 0.1048 +0 0.1146 +0 0.1453 +0 0.0686 +0 0.2356 +0 0.1268 +0 0.0640 +0 0.1202 +0 0.0605 +0 0.0333 +0 0.0426 +0 0.1032 +0 0.0981 +0 0.0821 +0 0.1772 +0 0.1143 +0 0.0348 +0 0.0461 +1 0.7622 +0 0.1233 +0 0.1382 +0 0.0351 +0 0.0413 +0 0.1883 +0 0.4798 +0 0.1260 +0 0.2178 +1 0.7695 +0 0.0553 +0 0.1057 +0 0.0613 +0 0.1400 +0 0.0711 +0 0.1106 +0 0.1361 +0 0.6215 +0 0.0970 +0 0.0816 +0 0.1658 +0 0.4805 +0 0.1033 +0 0.2090 +1 0.7851 +0 0.0697 +0 0.0975 +0 0.1094 +0 0.0551 +0 0.6745 +0 0.1063 +0 0.3099 +0 0.0980 +0 0.1388 +0 0.1004 +0 0.1237 +0 0.4199 +0 0.1351 +0 0.1312 +0 0.0801 +0 0.2751 +0 0.2037 +0 0.2680 +0 0.0579 +0 0.0989 +0 0.0518 +0 0.0815 +0 0.1446 +0 0.1105 +0 0.1243 +0 0.0562 +0 0.0921 +0 0.0944 +0 0.1006 +0 0.0805 +0 0.1065 +0 0.0761 +0 0.0975 +0 0.1714 +0 0.0760 +0 0.1660 +0 0.1456 +0 0.1478 +0 0.0783 +0 0.1086 +0 0.2456 +0 0.0813 +0 0.1783 +0 0.0628 +0 0.1517 +0 0.1636 +0 0.1376 +0 0.1067 +0 0.1934 +0 0.1237 +0 0.1915 +0 0.0789 +0 0.0597 +0 0.1365 +0 0.1067 +0 0.0932 +0 0.0944 +0 0.1663 +0 0.0790 +0 0.0673 +0 0.1134 +0 0.0535 +0 0.1307 +0 0.2430 +0 0.0635 +0 0.1771 +0 0.0723 +1 0.8374 +0 0.0985 +0 0.1494 +0 0.0883 +0 0.1251 +0 0.3817 +0 0.1214 +0 0.0815 +0 0.0800 +0 0.0825 +0 0.2041 +0 0.1427 +0 0.1044 +0 0.1946 +0 0.1318 +0 0.2804 +0 0.1242 +0 0.7109 +0 0.0990 +0 0.5193 +0 0.0893 +0 0.0936 +0 0.0749 +0 0.1863 +0 0.0763 +0 0.0500 +0 0.0941 +0 0.0995 +0 0.1113 +0 0.3685 +0 0.0457 +0 0.0437 +0 0.0750 +0 0.0995 +0 0.0799 +0 0.1999 +0 0.0647 +0 0.0979 +0 0.0628 +0 0.0654 +0 0.1128 +0 0.0794 +0 0.1230 +0 0.1100 +0 0.0600 +0 0.0644 +0 0.1136 +0 0.1716 +0 0.1004 +0 0.0919 +0 0.1379 +0 0.4378 +0 0.0558 +0 0.1386 +0 0.0576 +0 0.0433 +0 0.1768 +0 0.0974 +0 0.1899 +0 0.0908 +0 0.3440 +0 0.1453 +0 0.0375 +0 0.1568 +0 0.1061 +0 0.0859 +0 0.6745 +0 0.1599 +0 0.0521 +0 0.1000 +0 0.2655 +0 0.1130 +0 0.0609 +0 0.0499 +0 0.1047 +0 0.1079 +0 0.0612 +0 0.1330 +0 0.1828 +0 0.1059 +0 0.0942 +0 0.1351 +0 0.2965 +0 0.0830 +0 0.2728 +1 0.8544 +0 0.1520 +0 0.0527 +0 0.0505 +0 0.0683 +0 0.1565 +0 0.5864 +0 0.6701 +0 0.1447 +0 0.1020 +0 0.0876 +0 0.0899 +0 0.0898 +0 0.0609 +0 0.1318 +0 0.0783 +0 0.0777 +0 0.1368 +0 0.1296 +0 0.1009 +0 0.1565 +0 0.3254 +0 0.1667 +0 0.0452 +0 0.1028 +0 0.0873 +0 0.0704 +0 0.1443 +0 0.2412 +0 0.3759 +0 0.0405 +0 0.0698 +0 0.0967 +0 0.0807 +0 0.1597 +0 0.0884 +0 0.4093 +0 0.1482 +0 0.3640 +0 0.0779 +0 0.0712 +0 0.6572 +0 0.2529 +0 0.1294 +0 0.0657 +0 0.1288 +0 0.0400 +0 0.0857 +0 0.2776 +0 0.1751 +0 0.1294 +0 0.1184 +0 0.0422 +0 0.0821 +0 0.2070 +0 0.1371 +0 0.0726 +0 0.1748 +0 0.1304 +0 0.1220 +0 0.0505 +0 0.1408 +0 0.1075 +0 0.1059 +0 0.1151 +0 0.1170 +0 0.0975 +0 0.0734 +0 0.0564 +0 0.0747 +0 0.1157 +0 0.3574 +0 0.1143 +0 0.1173 +0 0.0879 +0 0.0822 +0 0.0950 +0 0.0721 +0 0.0785 +0 0.1256 +0 0.1873 +0 0.0643 +0 0.0911 +0 0.0946 +0 0.0393 +0 0.1467 +0 0.0963 +0 0.1187 +0 0.1324 +0 0.1576 +0 0.5617 +0 0.2657 +0 0.1660 +0 0.1379 +0 0.0892 +0 0.3002 +0 0.0640 +0 0.0934 +0 0.2718 +0 0.0604 +0 0.0692 +1 0.8344 +0 0.2795 +0 0.0531 +0 0.1428 +0 0.0471 +0 0.2044 +0 0.0931 +0 0.0675 +0 0.0708 +0 0.5272 +0 0.5013 +0 0.0622 +0 0.0813 +0 0.1215 +0 0.0453 +0 0.1752 +0 0.1622 +0 0.0481 +0 0.0656 +0 0.0725 +0 0.0681 +0 0.0622 +0 0.6203 +0 0.0735 +0 0.1414 +0 0.1045 +0 0.0958 +0 0.0440 +0 0.1221 +1 0.8226 +0 0.0687 +0 0.1208 +0 0.1590 +0 0.1928 +0 0.1380 +0 0.0455 +0 0.0663 +0 0.1627 +0 0.1319 +0 0.0953 +0 0.0982 +0 0.1067 +0 0.1209 +0 0.0552 +0 0.1430 +1 0.8685 +0 0.2028 +0 0.7367 +1 0.7522 +0 0.1805 +0 0.2331 +0 0.1332 +0 0.5999 +0 0.1278 +0 0.3750 +0 0.1034 +0 0.4609 +0 0.1554 +0 0.0953 +0 0.1766 +0 0.1082 +0 0.1204 +0 0.0881 +0 0.0529 +0 0.3569 +0 0.1333 +0 0.1292 +0 0.0590 +0 0.1687 +0 0.1177 +0 0.0954 +0 0.0862 +0 0.0649 +0 0.0630 +0 0.0796 +1 0.8308 +0 0.1596 +0 0.0928 +0 0.1084 +0 0.0820 +0 0.1223 +0 0.0823 +0 0.6491 +0 0.0487 +0 0.1029 +0 0.0526 +0 0.0892 +0 0.0832 +0 0.0579 +0 0.6698 +0 0.0979 +0 0.1534 +0 0.0980 +0 0.2139 +0 0.1974 +0 0.0985 +0 0.0444 +0 0.2210 +0 0.1669 +0 0.0517 +0 0.0484 +0 0.7186 +1 0.7844 +0 0.2012 +0 0.0815 +0 0.2393 +0 0.0957 +0 0.0959 +0 0.0928 +1 0.7692 +0 0.1754 +0 0.1411 +0 0.0834 +0 0.0762 +0 0.0985 +0 0.1076 +0 0.0873 +0 0.0330 +0 0.1956 +0 0.0829 +1 0.8429 +0 0.1088 +0 0.2045 +0 0.6450 +0 0.1896 +0 0.0580 +0 0.0375 +0 0.0559 +0 0.0377 +0 0.0725 +0 0.3188 +0 0.0745 +0 0.2932 +0 0.0502 +0 0.0538 +0 0.1821 +0 0.1261 +0 0.0920 +0 0.1500 +0 0.2162 +0 0.6863 +0 0.0702 +0 0.0625 +0 0.0706 +0 0.0368 +0 0.1759 +0 0.0456 +0 0.0716 +0 0.0515 +0 0.0816 +0 0.1113 +0 0.4023 +0 0.0754 +0 0.0629 +0 0.1463 +0 0.1182 +0 0.2241 +0 0.0813 +0 0.1842 +0 0.1385 +0 0.1506 +0 0.0621 +0 0.2532 +0 0.0587 +0 0.1081 +0 0.0572 +0 0.0992 +0 0.0821 +0 0.0747 +0 0.0821 +0 0.1689 +0 0.1062 +0 0.0452 +0 0.1904 +0 0.5669 +0 0.0682 +0 0.0900 +0 0.1945 +0 0.0744 +0 0.0777 +0 0.1852 +0 0.1334 +0 0.0845 +0 0.5546 +1 0.7542 +0 0.3557 +0 0.0787 +0 0.0945 +0 0.1165 +0 0.1002 +0 0.0565 +0 0.0739 +0 0.0681 +0 0.1601 +0 0.1263 +0 0.1157 +0 0.1431 +0 0.0945 +0 0.1060 +0 0.0882 +0 0.0883 +0 0.0722 +0 0.5324 +0 0.2564 +0 0.0589 +0 0.0853 +0 0.1951 +0 0.2012 +0 0.0670 +0 0.1081 +0 0.2434 +0 0.6503 +0 0.3555 +0 0.0947 +0 0.1428 +0 0.1062 +0 0.0820 +0 0.0728 +0 0.1267 +0 0.3472 +0 0.1375 +0 0.0736 +0 0.0600 +0 0.0795 +0 0.2722 +0 0.1635 +0 0.0497 +0 0.2805 +0 0.2772 +0 0.0855 +0 0.0467 +0 0.0765 +0 0.5501 +0 0.1205 +0 0.1585 +0 0.0652 +0 0.0919 +0 0.1240 +0 0.0901 +0 0.0332 +0 0.2204 +0 0.1358 +0 0.1127 +0 0.1016 +0 0.0506 +0 0.0873 +0 0.0619 +0 0.0958 +0 0.2843 +0 0.0852 +0 0.2721 +0 0.1996 +0 0.0848 +0 0.1386 +0 0.1469 +0 0.2485 +0 0.1183 +0 0.1379 +0 0.1297 +0 0.0973 +0 0.1019 +0 0.0510 +0 0.2143 +0 0.1954 +0 0.2782 +0 0.0588 +0 0.1281 +0 0.0691 +0 0.1249 +0 0.2242 +1 0.7639 +0 0.2497 +0 0.1382 +0 0.4443 +0 0.2020 +0 0.0431 +0 0.2252 +0 0.0659 +0 0.2921 +0 0.2856 +0 0.0591 +0 0.0643 +0 0.0862 +0 0.0754 +0 0.0922 +0 0.4367 +0 0.0863 +0 0.1130 +0 0.0573 +0 0.4736 +0 0.1479 +0 0.0879 +0 0.7130 +0 0.0516 +0 0.1477 +0 0.1770 +0 0.1128 +0 0.2144 +0 0.0790 +0 0.0391 +0 0.3907 +0 0.1118 +0 0.1030 +0 0.1196 +0 0.0575 +0 0.1699 +0 0.0833 +0 0.1719 +0 0.1920 +0 0.1167 +0 0.1408 +0 0.0476 +0 0.1964 +0 0.0848 +0 0.1264 +0 0.1749 +0 0.0396 +0 0.0778 +0 0.1198 +0 0.0794 +0 0.1045 +0 0.0556 +0 0.3233 +0 0.1448 +0 0.0806 +0 0.1124 +0 0.0769 +0 0.0687 +0 0.0649 +0 0.2683 +0 0.1554 +0 0.1040 +0 0.1342 +0 0.1020 +0 0.0996 +0 0.0784 +0 0.0555 +0 0.0535 +0 0.0648 +0 0.0545 +0 0.1934 +0 0.0815 +0 0.0824 +0 0.1144 +0 0.1064 +0 0.1611 +0 0.6988 +0 0.0519 +0 0.0870 +0 0.3145 +0 0.1701 +0 0.0917 +0 0.1368 +0 0.2631 +0 0.0687 +0 0.1764 +0 0.0919 +0 0.1705 +0 0.1210 +0 0.1105 +0 0.0856 +0 0.0698 +0 0.1091 +0 0.0509 +0 0.1268 +0 0.3009 +0 0.0687 +0 0.2770 +0 0.0709 +0 0.0650 +0 0.0929 +0 0.0978 +0 0.0512 +0 0.0507 +0 0.0943 +0 0.1455 +0 0.0736 +0 0.0979 +0 0.0743 +0 0.1148 +0 0.1029 +0 0.1029 +0 0.1069 +0 0.7328 +0 0.2816 +0 0.2990 +0 0.1199 +0 0.0890 +0 0.0793 +0 0.1794 +0 0.0516 +0 0.1345 +0 0.1119 +0 0.0891 +0 0.0504 +0 0.1248 +0 0.6999 +0 0.3631 +0 0.1004 +0 0.0658 +0 0.1600 +0 0.0415 +0 0.2638 +0 0.0919 +0 0.0834 +0 0.0924 +0 0.1064 +0 0.1246 +0 0.0602 +0 0.1076 +0 0.2338 +0 0.0511 +0 0.0903 +0 0.1182 +0 0.0853 +0 0.1312 +0 0.0658 +0 0.2219 +0 0.0754 +0 0.0895 +0 0.1019 +0 0.0669 +0 0.1198 +0 0.0994 +0 0.1150 +0 0.0665 +0 0.1919 +0 0.1190 +0 0.3864 +0 0.1159 +0 0.0890 +0 0.1046 +0 0.0654 +0 0.2162 +0 0.1938 +0 0.1004 +0 0.1048 +0 0.1625 +0 0.0548 +1 0.7954 +0 0.0498 +0 0.0566 +0 0.1612 +0 0.1516 +0 0.2099 +0 0.1096 +0 0.0648 +0 0.0916 +0 0.3615 +0 0.0896 +0 0.1216 +0 0.1152 +0 0.2325 +0 0.1051 +0 0.0421 +0 0.0925 +0 0.3250 +0 0.1048 +0 0.1205 +0 0.1112 +0 0.0722 +0 0.1157 +0 0.0703 +0 0.1025 +0 0.1436 +0 0.0653 +0 0.0664 +0 0.0707 +0 0.1056 +0 0.0450 +0 0.0741 +0 0.1134 +0 0.0499 +0 0.1555 +0 0.0494 +0 0.4012 +0 0.0394 +0 0.1393 +0 0.2445 +0 0.0765 +0 0.0642 +0 0.1684 +0 0.5968 +0 0.1073 +0 0.0452 +0 0.0542 +0 0.1004 +0 0.1445 +0 0.1426 +0 0.0407 +0 0.2629 +0 0.0915 +0 0.0383 +0 0.0651 +0 0.1762 +0 0.0419 +0 0.0807 +0 0.0845 +0 0.0679 +0 0.1709 +0 0.0677 +0 0.0815 +0 0.1004 +1 0.8580 +0 0.0793 +0 0.1186 +0 0.1170 +0 0.0620 +0 0.1727 +0 0.1769 +0 0.2003 +0 0.0558 +0 0.0462 +0 0.1312 +0 0.6102 +0 0.0566 +0 0.0594 +0 0.0563 +0 0.0667 +1 0.8582 +0 0.0610 +0 0.2333 +0 0.0963 +0 0.2125 +0 0.0623 +0 0.0488 +0 0.1134 +0 0.5508 +0 0.1159 +0 0.0906 +0 0.1433 +0 0.1805 +0 0.0788 +0 0.0367 +0 0.1050 +0 0.1483 +0 0.1520 +0 0.1032 +0 0.1621 +0 0.3367 +0 0.0549 +0 0.0720 +0 0.2098 +0 0.2231 +0 0.0636 +0 0.0864 +0 0.0998 +0 0.0604 +0 0.1069 +0 0.0728 +0 0.0456 +0 0.3092 +0 0.0842 +0 0.0521 +0 0.5474 +0 0.4068 +0 0.0979 +0 0.0896 +0 0.5384 +0 0.0985 +0 0.1497 +0 0.1849 +0 0.4001 +0 0.0870 +0 0.0644 +0 0.0742 +0 0.4772 +0 0.0748 +0 0.1041 +0 0.0862 +0 0.2004 +0 0.2477 +0 0.0594 +0 0.3705 +0 0.1107 +0 0.1045 +0 0.1060 +0 0.0623 +0 0.1772 +0 0.1082 +0 0.1008 +0 0.2000 +0 0.0830 +0 0.0666 +0 0.1660 +0 0.1623 +0 0.1173 +0 0.1841 +0 0.1056 +0 0.0802 +0 0.2115 +0 0.1761 +0 0.1078 +0 0.1697 +0 0.6130 +0 0.0918 +0 0.2680 +0 0.2909 +0 0.1131 +0 0.0417 +0 0.2455 +0 0.2282 +0 0.1163 +0 0.1991 +0 0.1652 +0 0.0663 +0 0.0732 +0 0.0797 +1 0.8583 +0 0.2968 +0 0.2167 +0 0.1956 +0 0.0658 +0 0.1049 +0 0.1654 +0 0.2246 +0 0.0458 +0 0.0491 +0 0.1653 +0 0.2222 +0 0.0952 +0 0.0645 +0 0.0520 +0 0.0572 +0 0.4420 +0 0.0518 +0 0.1762 +0 0.0817 +0 0.0740 +0 0.0717 +0 0.0982 +0 0.0520 +1 0.8865 +0 0.1786 +0 0.1278 +0 0.2308 +0 0.1125 +0 0.0938 +0 0.1309 +0 0.1021 +0 0.1552 +0 0.1935 +0 0.1105 +0 0.0913 +0 0.2079 +0 0.0473 +0 0.2151 +0 0.6258 +0 0.1620 +0 0.1474 +0 0.0767 +0 0.1098 +0 0.3974 +0 0.1033 +0 0.0561 +0 0.2120 +0 0.1102 +0 0.1300 +0 0.0407 +0 0.1949 +1 0.8283 +0 0.0611 +0 0.0685 +0 0.6343 +0 0.1289 +0 0.1249 +0 0.1612 +0 0.1080 +0 0.0580 +0 0.1026 +0 0.1270 +0 0.2187 +0 0.0488 +0 0.2647 +0 0.0516 +0 0.0713 +0 0.1534 +0 0.0618 +0 0.0920 +0 0.5286 +0 0.0866 +0 0.0811 +0 0.0365 +0 0.1379 +0 0.1713 +0 0.0510 +0 0.7494 +0 0.0428 +0 0.0383 +0 0.2645 +0 0.0914 +0 0.0567 +0 0.1363 +0 0.5479 +0 0.1601 +0 0.2690 +0 0.1254 +0 0.0893 +0 0.0609 +0 0.1350 +0 0.1467 +0 0.2071 +0 0.1765 +0 0.0364 +0 0.1181 +0 0.0703 +0 0.1265 +0 0.0686 +0 0.0605 +0 0.0607 +0 0.1646 +0 0.0526 +0 0.1383 +0 0.5574 +0 0.0699 +0 0.0594 +0 0.0875 +0 0.0912 +0 0.1256 +0 0.0390 +0 0.1119 +0 0.0617 +1 0.7724 +0 0.1407 +0 0.1077 +0 0.1899 +0 0.2161 +0 0.1605 +0 0.0564 +0 0.1562 +0 0.0849 +0 0.1022 +0 0.0940 +0 0.0912 +0 0.0763 +0 0.1471 +0 0.0647 +0 0.0681 +0 0.0391 +0 0.0602 +0 0.1739 +0 0.2226 +0 0.0858 +0 0.1223 +0 0.0421 +0 0.0961 +0 0.0816 +0 0.3829 +0 0.3229 +0 0.1629 +0 0.1485 +0 0.0520 +1 0.8745 +0 0.0863 +0 0.0526 +0 0.0709 +0 0.0869 +0 0.0832 +0 0.2608 +1 0.8905 +0 0.1191 +0 0.1414 +0 0.1873 +0 0.1989 +0 0.0669 +0 0.0705 +0 0.1114 +0 0.0873 +0 0.0438 +0 0.2069 +0 0.0669 +1 0.8135 +0 0.3741 +0 0.5309 +0 0.1646 +0 0.2408 +0 0.0711 +1 0.8138 +0 0.1411 +0 0.0382 +0 0.2146 +0 0.1466 +0 0.0882 +0 0.1439 +0 0.2592 +0 0.0600 +0 0.0615 +0 0.1966 +0 0.1843 +0 0.2624 +0 0.3666 +0 0.0558 +0 0.4303 +0 0.2032 +0 0.0474 +0 0.0898 +0 0.0948 +0 0.0352 +0 0.1808 +0 0.0535 +0 0.0422 +0 0.3936 +0 0.0611 +0 0.2350 +0 0.3734 +0 0.2163 +0 0.0906 +0 0.0429 +0 0.1248 +0 0.1089 +0 0.0934 +0 0.2634 +0 0.0928 +0 0.0750 +0 0.1233 +1 0.8311 +0 0.0830 +0 0.0893 +0 0.0534 +0 0.0996 +0 0.1622 +0 0.2438 +0 0.4014 +0 0.0486 +0 0.2134 +0 0.2606 +0 0.1286 +0 0.1401 +0 0.2220 +0 0.1109 +0 0.0974 +0 0.0981 +0 0.3115 +0 0.0626 +0 0.0983 +0 0.1154 +0 0.0497 +0 0.1115 +0 0.0756 +0 0.0889 +0 0.1569 +0 0.1178 +0 0.1754 +0 0.0705 +0 0.3172 +0 0.0800 +0 0.1638 +0 0.0567 +0 0.0521 +0 0.1157 +0 0.0769 +0 0.0739 +0 0.0824 +0 0.1025 +1 0.7663 +0 0.0870 +0 0.2336 +0 0.2500 +0 0.0613 +0 0.0387 +0 0.1078 +0 0.4287 +0 0.4975 +0 0.1100 +0 0.0853 +0 0.0587 +0 0.0642 +0 0.0917 +0 0.0339 +0 0.1574 +0 0.0281 +0 0.1027 +0 0.1458 +0 0.3512 +0 0.1669 +0 0.0838 +0 0.1252 +0 0.0901 +0 0.0951 +0 0.1346 +0 0.0895 +1 0.7694 +0 0.1307 +0 0.1935 +0 0.0813 +0 0.0922 +0 0.0484 +0 0.1357 +0 0.1457 +0 0.1243 +0 0.4894 +0 0.0884 +0 0.0461 +0 0.2013 +0 0.0678 +0 0.0781 +0 0.0355 +0 0.0537 +1 0.8783 +0 0.0687 +0 0.4986 +0 0.5693 +0 0.1903 +0 0.1472 +0 0.2569 +0 0.1424 +0 0.0558 +0 0.0615 +0 0.0960 +0 0.0366 +0 0.0805 +0 0.1343 +0 0.1216 +0 0.0928 +0 0.5786 +0 0.0607 +0 0.2035 +0 0.0485 +0 0.0537 +0 0.0592 +0 0.0891 +0 0.0709 +0 0.2219 +0 0.0977 +0 0.0668 +0 0.1415 +0 0.2291 +0 0.1297 +0 0.0760 +0 0.0556 +0 0.1150 +0 0.0655 +0 0.1792 +0 0.0572 +0 0.2149 +0 0.1857 +0 0.5716 +0 0.0835 +0 0.1183 +0 0.1097 +1 0.8866 +0 0.1398 +0 0.1385 +0 0.0685 +0 0.0660 +0 0.1163 +0 0.1107 +0 0.0440 +0 0.0478 +0 0.0782 +0 0.1612 +0 0.0790 +0 0.0406 +0 0.0756 +0 0.1801 +0 0.1737 +0 0.1114 +0 0.2028 +0 0.3506 +0 0.0586 +0 0.0607 +0 0.0452 +0 0.1980 +0 0.1038 +0 0.2837 +0 0.0999 +0 0.2956 +0 0.1290 +0 0.5395 +0 0.0835 +0 0.1419 +0 0.1168 +0 0.0801 +0 0.0461 +0 0.1554 +0 0.0538 +0 0.4631 +0 0.0527 +0 0.0864 +0 0.1145 +0 0.1026 +0 0.0345 +0 0.1366 +0 0.0760 +0 0.1642 +0 0.1120 +0 0.0524 +0 0.0739 +0 0.1519 +0 0.2222 +0 0.0963 +0 0.1622 +0 0.1144 +0 0.0764 +0 0.2885 +0 0.0574 +0 0.0594 +0 0.2102 +0 0.0982 +0 0.2615 +0 0.0791 +0 0.0688 +0 0.0799 +0 0.0687 +0 0.0651 +0 0.7163 +0 0.1510 +0 0.2779 +0 0.1350 +0 0.0492 +0 0.1690 +0 0.1053 +0 0.1018 +0 0.0773 +0 0.2196 +0 0.0889 +0 0.0434 +0 0.3043 +0 0.1320 +0 0.1093 +0 0.1092 +0 0.0977 +0 0.1627 +0 0.2652 +0 0.1992 +0 0.2581 +0 0.1720 +0 0.1624 +0 0.0788 +0 0.2100 +0 0.0640 +0 0.0997 +0 0.1529 +0 0.3637 +0 0.2399 +0 0.1965 +0 0.1947 +0 0.0568 +0 0.1980 +0 0.1210 +0 0.0847 +0 0.1134 +0 0.1291 +0 0.0580 +0 0.0768 +0 0.0541 +0 0.1122 +0 0.1688 +0 0.0955 +0 0.1001 +0 0.1519 +0 0.2346 +0 0.3496 +0 0.1197 +0 0.0888 +0 0.0524 +0 0.3235 +0 0.0440 +0 0.1577 +0 0.0864 +0 0.1685 +0 0.1164 +0 0.0453 +0 0.0687 +0 0.0680 +0 0.1626 +0 0.5627 +0 0.0867 +0 0.0455 +0 0.0881 +0 0.0704 +0 0.1021 +0 0.4391 +0 0.1326 +0 0.2672 +0 0.1022 +1 0.8606 +0 0.2253 +0 0.0982 +0 0.6215 +0 0.0683 +0 0.0852 +0 0.2525 +0 0.0816 +0 0.1828 +0 0.6529 +0 0.1199 +0 0.6761 +0 0.1602 +0 0.0620 +0 0.2230 +1 0.8014 +0 0.1535 +0 0.2926 +0 0.0927 +0 0.0863 +0 0.0927 +0 0.1029 +0 0.1185 +0 0.2609 +0 0.0845 +0 0.1058 +0 0.1118 +0 0.0982 +0 0.0521 +0 0.1924 +0 0.0683 +0 0.4098 +0 0.0920 +0 0.1065 +0 0.0561 +0 0.0962 +0 0.0712 +0 0.1946 +0 0.0599 +0 0.0894 +1 0.8964 +0 0.0835 +0 0.1014 +0 0.0429 +0 0.0667 +0 0.0604 +0 0.0955 +0 0.0550 +0 0.0627 +0 0.0817 +1 0.7788 +0 0.1766 +0 0.1246 +0 0.0561 +0 0.0970 +0 0.0564 +0 0.0816 +0 0.0967 +0 0.1048 +0 0.2681 +0 0.0940 +0 0.0439 +0 0.1864 +0 0.1304 +0 0.1136 +0 0.2108 +0 0.0592 +0 0.3359 +0 0.6058 +1 0.8284 +0 0.0927 +0 0.1520 +0 0.1355 +0 0.2597 +0 0.1047 +0 0.3478 +0 0.0708 +0 0.0641 +0 0.0928 +0 0.1661 +0 0.0758 +0 0.0895 +0 0.0556 +0 0.2597 +0 0.0571 +0 0.1555 +0 0.5595 +0 0.2990 +0 0.0952 +0 0.1529 +0 0.1405 +0 0.1089 +0 0.0850 +0 0.1123 +0 0.0834 +1 0.8118 +0 0.1580 +0 0.0829 +0 0.0778 +0 0.0502 +0 0.1129 +0 0.1872 +0 0.0864 +0 0.3139 +0 0.0472 +0 0.2562 +0 0.0861 +0 0.2171 +0 0.0975 +0 0.5407 +0 0.0829 +0 0.2510 +0 0.0606 +0 0.0817 +0 0.0759 +0 0.1203 +0 0.1179 +0 0.1096 +0 0.1899 +0 0.0723 +0 0.0652 +0 0.0757 +0 0.2426 +0 0.0588 +0 0.0456 +0 0.1258 +0 0.1026 +0 0.1225 +0 0.1103 +0 0.1868 +0 0.0642 +0 0.0725 +0 0.1422 +0 0.1700 +0 0.4536 +0 0.1037 +0 0.2369 +0 0.0863 +0 0.1369 +0 0.0532 +0 0.1253 +0 0.2115 +0 0.0774 +0 0.1639 +0 0.0512 +0 0.1416 +0 0.1199 +0 0.1679 +0 0.1528 +0 0.1118 +0 0.2441 +0 0.0907 +0 0.0937 +0 0.0770 +0 0.0585 +0 0.0907 +0 0.0773 +0 0.1057 +0 0.0464 +0 0.1025 +0 0.4854 +0 0.1564 +0 0.1956 +0 0.2066 +0 0.0967 +0 0.0873 +0 0.1012 +0 0.3451 +0 0.0508 +0 0.1672 +0 0.0607 +0 0.1257 +0 0.0749 +0 0.0445 +0 0.1413 +0 0.1569 +0 0.2104 +0 0.1804 +0 0.0586 +0 0.1085 +0 0.1102 +0 0.1848 +0 0.1573 +0 0.1451 +0 0.0607 +0 0.2415 +0 0.1323 +0 0.1585 +0 0.0589 +0 0.1122 +0 0.1987 +0 0.1136 +0 0.0842 +0 0.1043 +0 0.5593 +0 0.1641 +0 0.2722 +0 0.1421 +0 0.0661 +0 0.1027 +0 0.0626 +0 0.3034 +0 0.0732 +0 0.0437 +0 0.7355 +0 0.0673 +0 0.1098 +0 0.0908 +0 0.2003 +0 0.1175 +0 0.1346 +0 0.2876 +0 0.1005 +0 0.2140 +0 0.2186 +0 0.0695 +0 0.1099 +0 0.1715 +0 0.1685 +0 0.0617 +0 0.1224 +0 0.0478 +0 0.1630 +0 0.1230 +0 0.0861 +0 0.0704 +0 0.1223 +0 0.1108 +0 0.1162 +0 0.1298 +0 0.2026 +0 0.1713 +0 0.0659 +0 0.2533 +0 0.1391 +0 0.1613 +0 0.3156 +0 0.0547 +0 0.0984 +0 0.3703 +0 0.0655 +0 0.0693 +0 0.2567 +0 0.0967 +0 0.0637 +0 0.1759 +0 0.0859 +0 0.0531 +0 0.0462 +0 0.0409 +0 0.0912 +0 0.2120 +0 0.1009 +0 0.0462 +0 0.0761 +0 0.1955 +0 0.1786 +0 0.0423 +0 0.1472 +0 0.3720 +0 0.0479 +0 0.1758 +0 0.2658 +0 0.0703 +0 0.0469 +0 0.0696 +0 0.1305 +0 0.1510 +0 0.0952 +0 0.0954 +0 0.0642 +0 0.1149 +0 0.1166 +0 0.0648 +0 0.0532 +0 0.3132 +0 0.1599 +0 0.0926 +0 0.3305 +0 0.1889 +1 0.8310 +0 0.0725 +0 0.0641 +0 0.3705 +0 0.3079 +0 0.1991 +0 0.2778 +0 0.1234 +0 0.0780 +0 0.3000 +0 0.1154 +0 0.1160 +0 0.0868 +0 0.1014 +0 0.0702 +0 0.0562 +0 0.1360 +0 0.1123 +0 0.0764 +0 0.0969 +0 0.5451 +0 0.0830 +0 0.1111 +0 0.1497 +0 0.1347 +0 0.0713 +0 0.0562 +0 0.2875 +0 0.0680 +0 0.1956 +0 0.1487 +0 0.1701 +0 0.0684 +0 0.0482 +0 0.1480 +0 0.0469 +0 0.1347 +0 0.2912 +0 0.2585 +0 0.0833 +0 0.2487 +0 0.1503 +0 0.1058 +0 0.2137 +0 0.0673 +0 0.1316 +0 0.1651 +0 0.1047 +0 0.0410 +0 0.2178 +0 0.0861 +0 0.0665 +0 0.0756 +0 0.0792 +0 0.2494 +0 0.2241 +0 0.1018 +0 0.0661 +0 0.0979 +0 0.1618 +0 0.1051 +0 0.1617 +0 0.1004 +0 0.0551 +0 0.1234 +0 0.0998 +1 0.8137 +0 0.1415 +0 0.1141 +0 0.1004 +0 0.0626 +0 0.1014 +0 0.1369 +0 0.0818 +0 0.1788 +0 0.1965 +0 0.1667 +0 0.1248 +0 0.1371 +0 0.5769 +0 0.5606 +0 0.0895 +0 0.1021 +0 0.1851 +0 0.1195 +0 0.1229 +0 0.0958 +0 0.0657 +0 0.4225 +0 0.0889 +0 0.1096 +0 0.0553 +0 0.1037 +0 0.0658 +0 0.1570 +0 0.1379 +0 0.1832 +0 0.1634 +0 0.1285 +0 0.0827 +0 0.4023 +0 0.4385 +0 0.0740 +0 0.0909 +0 0.1000 +0 0.1776 +0 0.1841 +0 0.3687 +0 0.1279 +0 0.0604 +0 0.2052 +0 0.0410 +0 0.0896 +0 0.0364 +0 0.1799 +0 0.1479 +0 0.1316 +0 0.1098 +0 0.0648 +0 0.0842 +0 0.2208 +0 0.2917 +0 0.0617 +0 0.1435 +0 0.0724 +0 0.0997 +0 0.1822 +0 0.2338 +0 0.2927 +0 0.2879 +0 0.0523 +0 0.3312 +0 0.0839 +0 0.1203 +0 0.0612 +0 0.0907 +0 0.2495 +0 0.0640 +0 0.1250 +0 0.0612 +0 0.1222 +0 0.2393 +0 0.1743 +0 0.3436 +0 0.0815 +0 0.0431 +0 0.0785 +0 0.0707 +0 0.2183 +0 0.1262 +0 0.0571 +0 0.0807 +0 0.2303 +0 0.2012 +1 0.8819 +0 0.0649 +0 0.0605 +0 0.1394 +0 0.1142 +0 0.1244 +0 0.1232 +0 0.3191 +1 0.8661 +0 0.1402 +0 0.0965 +0 0.2041 +0 0.1549 +0 0.1225 +0 0.0332 +0 0.1574 +0 0.1750 +0 0.0961 +0 0.0767 +0 0.4133 +0 0.0915 +0 0.2606 +0 0.3685 +0 0.0572 +0 0.0704 +0 0.3270 +0 0.1017 +0 0.1560 +0 0.1528 +0 0.2341 +0 0.2047 +0 0.0792 +0 0.0741 +0 0.2005 +0 0.1745 +0 0.3069 +0 0.2075 +0 0.3045 +0 0.0655 +0 0.1601 +0 0.1030 +0 0.0392 +0 0.0641 +0 0.0943 +0 0.1236 +0 0.0910 +0 0.1439 +0 0.1156 +0 0.1449 +0 0.2787 +0 0.0717 +0 0.1348 +0 0.0636 +0 0.0803 +0 0.6953 +0 0.1197 +0 0.0690 +0 0.1296 +0 0.0699 +0 0.0967 +0 0.0502 +0 0.1549 +0 0.0844 +0 0.0808 +0 0.1480 +0 0.1097 +0 0.1239 +0 0.3591 +0 0.0369 +0 0.0832 +0 0.3808 +0 0.0688 +0 0.0927 +0 0.1126 +0 0.1238 +0 0.1352 +0 0.0974 +0 0.1151 +0 0.1751 +0 0.0489 +0 0.0731 +0 0.0883 +0 0.1069 +0 0.1627 +0 0.1905 +0 0.3277 +0 0.0959 +0 0.6953 +0 0.0652 +0 0.0622 +0 0.0498 +0 0.1413 +0 0.0776 +0 0.0567 +0 0.1432 +0 0.0727 +0 0.1290 +0 0.0435 +0 0.2156 +0 0.2505 +0 0.2505 +0 0.0483 +0 0.3001 +0 0.1400 +0 0.1138 +0 0.0499 +0 0.0464 +0 0.1658 +0 0.1222 +0 0.0726 +0 0.2587 +0 0.1364 +0 0.0705 +0 0.0601 +0 0.0486 +0 0.1262 +0 0.0982 +0 0.1281 +0 0.0779 +0 0.1163 +0 0.1848 +0 0.0542 +0 0.0797 +0 0.0712 +0 0.1709 +0 0.0645 +0 0.1306 +0 0.0493 +0 0.1211 +0 0.1374 +0 0.0671 +0 0.1191 +0 0.0724 +0 0.1080 +0 0.0421 +0 0.2166 +0 0.0699 +0 0.2060 +0 0.0742 +0 0.0847 +1 0.8766 +0 0.0792 +0 0.0671 +0 0.1720 +0 0.1184 +0 0.0848 +0 0.0663 +0 0.1375 +0 0.0761 +0 0.1202 +0 0.1645 +0 0.0630 +0 0.2331 +0 0.0876 +0 0.1127 +0 0.1299 +0 0.1191 +0 0.0675 +0 0.0833 +0 0.0641 +0 0.0473 +0 0.1758 +0 0.6847 +0 0.2246 +0 0.0349 +0 0.0439 +0 0.6832 +0 0.1032 +0 0.1329 +0 0.1329 +0 0.1765 +0 0.0913 +0 0.1299 +0 0.0997 +0 0.0659 +0 0.4017 +0 0.2774 +0 0.2425 +0 0.0452 +0 0.3615 +1 0.4121 +0 0.0987 +0 0.1164 +0 0.0765 +0 0.0811 +0 0.0965 +0 0.0746 +0 0.0837 +0 0.1312 +0 0.0647 +1 0.8038 +0 0.0638 +0 0.0728 +0 0.0833 +0 0.0916 +0 0.0640 +0 0.5060 +0 0.1178 +0 0.1107 +0 0.0691 +0 0.1455 +0 0.0538 +0 0.0794 +0 0.0992 +0 0.1725 +0 0.3167 +0 0.0773 +0 0.0878 +0 0.0847 +0 0.1144 +0 0.0857 +0 0.0626 +0 0.0853 +0 0.3038 +0 0.0636 +0 0.1529 +0 0.0867 +0 0.0832 +0 0.0485 +0 0.0879 +0 0.1430 +0 0.0514 +0 0.0759 +0 0.5292 +0 0.0844 +0 0.1818 +0 0.0665 +0 0.1167 +0 0.1571 +0 0.6371 +0 0.0520 +0 0.0894 +0 0.1120 +0 0.0759 +0 0.0441 +0 0.0571 +0 0.2174 +0 0.0483 +0 0.1543 +0 0.2193 +0 0.2207 +0 0.1179 +0 0.0478 +0 0.0932 +0 0.0892 +0 0.1203 +0 0.1044 +0 0.1071 +0 0.0665 +0 0.0808 +0 0.0714 +0 0.1919 +0 0.0847 +0 0.0898 +0 0.1585 +0 0.1262 +0 0.1328 +0 0.1463 +0 0.0893 +0 0.0694 +0 0.1199 +0 0.0575 +0 0.0839 +0 0.1067 +0 0.2065 +0 0.0683 +0 0.1963 +0 0.1252 +0 0.1883 +0 0.1100 +0 0.0806 +0 0.1338 +0 0.3598 +0 0.0559 +0 0.1503 +0 0.4406 +0 0.1259 +0 0.0356 +0 0.1156 +0 0.3326 +0 0.1616 +0 0.1067 +0 0.0953 +0 0.1162 +0 0.0662 +0 0.0830 +0 0.2432 +0 0.4894 +0 0.2207 +0 0.1880 +0 0.0965 +0 0.0560 +0 0.1149 +0 0.0525 +0 0.3107 +0 0.0558 +0 0.1116 +0 0.2239 +0 0.1519 +0 0.0786 +0 0.0924 +0 0.0751 +0 0.1942 +0 0.0751 +0 0.0579 +0 0.0871 +0 0.0940 +0 0.2320 +0 0.0856 +0 0.0679 +0 0.1256 +0 0.1045 +0 0.2240 +0 0.0440 +0 0.0896 +0 0.1074 +0 0.1568 +0 0.0913 +0 0.1428 +0 0.1401 +0 0.1370 +0 0.0672 +0 0.0876 +0 0.0369 +0 0.1096 +0 0.1997 +0 0.1013 +0 0.1755 +0 0.1179 +0 0.6320 +0 0.3652 +0 0.1350 +0 0.0972 +0 0.1605 +0 0.0564 +0 0.0592 +0 0.2727 +0 0.6457 +0 0.1525 +0 0.1157 +0 0.0648 +0 0.1999 +0 0.0671 +0 0.0981 +0 0.1648 +0 0.1020 +0 0.0570 +0 0.1018 +0 0.1976 +0 0.0840 +0 0.3059 +0 0.0439 +0 0.1793 +0 0.1490 +0 0.1728 +0 0.1478 +0 0.1787 +0 0.1019 +0 0.0649 +0 0.1712 +0 0.2347 +0 0.1714 +0 0.1787 +0 0.1205 +0 0.0859 +1 0.8150 +0 0.2234 +0 0.1925 +0 0.2323 +0 0.2848 +0 0.1038 +0 0.0734 +0 0.0355 +0 0.1504 +0 0.0845 +0 0.0725 +0 0.1131 +0 0.1013 +0 0.1750 +0 0.0720 +0 0.2075 +0 0.7128 +0 0.0398 +0 0.0982 +0 0.0729 +0 0.3311 +0 0.1193 +0 0.0722 +0 0.3673 +0 0.0627 +0 0.0974 +0 0.1549 +0 0.1027 +0 0.2821 +0 0.1982 +0 0.1875 +0 0.1089 +0 0.1819 +0 0.4876 +0 0.0922 +0 0.0708 +0 0.0490 +0 0.0710 +0 0.4187 +0 0.1159 +0 0.1042 +0 0.1035 +0 0.2433 +0 0.0914 +0 0.0768 +0 0.1178 +0 0.0630 +0 0.0503 +0 0.1647 +0 0.3282 +0 0.0409 +0 0.0570 +0 0.5180 +0 0.1608 +0 0.1285 +0 0.1345 +0 0.2545 +0 0.1603 +0 0.1503 +0 0.0945 +0 0.1254 +0 0.1209 +0 0.2371 +0 0.0800 +0 0.2075 +0 0.1587 +0 0.1074 +0 0.0752 +0 0.0576 +0 0.0804 +0 0.0845 +0 0.0863 +0 0.0817 +0 0.1488 +0 0.3382 +0 0.0770 +0 0.0795 +0 0.1567 +0 0.1566 +0 0.0869 +0 0.4925 +0 0.0536 +0 0.0706 +0 0.0813 +0 0.2827 +0 0.1146 +0 0.5705 +0 0.6037 +0 0.6190 +0 0.1164 +0 0.1186 +0 0.6118 +0 0.5271 +0 0.1471 +0 0.0923 +0 0.0440 +0 0.1148 +0 0.0754 +0 0.3944 +0 0.1142 +0 0.0352 +0 0.2191 +0 0.0935 +0 0.4858 +0 0.0585 +0 0.1291 +0 0.1117 +0 0.7227 +0 0.0760 +0 0.0711 +0 0.0797 +0 0.3383 +0 0.1062 +0 0.1296 +0 0.2076 +0 0.0566 +0 0.0594 +0 0.0751 +0 0.0664 +0 0.0882 +0 0.0489 +0 0.2105 +0 0.0897 +0 0.0989 +0 0.0558 +0 0.6943 +0 0.1964 +0 0.1043 +0 0.0897 +0 0.0834 +0 0.0757 +0 0.1267 +0 0.1892 +0 0.3128 +0 0.0494 +0 0.1268 +0 0.1182 +0 0.0510 +0 0.1245 +0 0.1326 +0 0.1862 +0 0.2221 +0 0.0768 +0 0.1361 +0 0.1206 +0 0.0947 +0 0.0882 +0 0.1109 +0 0.0930 +0 0.3381 +0 0.6087 +0 0.0430 +0 0.0600 +0 0.2436 +0 0.2200 +0 0.5861 +0 0.0877 +0 0.0850 +0 0.1392 +0 0.1981 +0 0.1371 +0 0.0773 +0 0.1954 +0 0.0823 +0 0.0444 +0 0.0509 +0 0.0626 +0 0.0773 +0 0.0802 +0 0.2015 +0 0.0836 +0 0.0776 +0 0.3658 +0 0.0803 +0 0.0479 +0 0.0693 +0 0.2651 +0 0.2149 +0 0.1438 +0 0.0689 +0 0.0723 +0 0.1334 +0 0.1127 +0 0.1704 +0 0.2853 +0 0.2468 +0 0.1300 +0 0.1436 +0 0.1445 +0 0.0829 +0 0.0769 +0 0.6640 +0 0.1005 +0 0.2257 +0 0.1576 +0 0.1051 +0 0.1164 +0 0.6242 +0 0.0932 +0 0.0860 +0 0.1742 +0 0.2552 +0 0.6427 +0 0.6445 +0 0.0328 +0 0.1191 +0 0.0563 +0 0.3731 +0 0.1327 +0 0.0684 +0 0.1042 +0 0.1100 +0 0.0501 +1 0.7578 +0 0.0844 +0 0.2174 +0 0.2533 +0 0.0804 +0 0.0956 +0 0.0750 +0 0.0600 +0 0.1054 +0 0.0468 +0 0.1135 +0 0.2838 +0 0.0816 +0 0.2098 +0 0.0644 +0 0.1733 +0 0.2335 +0 0.0876 +0 0.1428 +0 0.0575 +0 0.0799 +0 0.2291 +0 0.0717 +0 0.0318 +0 0.1266 +0 0.1156 +0 0.0779 +0 0.2332 +0 0.0823 +0 0.0831 +0 0.1377 +0 0.1783 +0 0.0515 +0 0.0734 +0 0.0905 +0 0.0889 +0 0.1686 +0 0.2202 +0 0.1194 +0 0.1052 +0 0.0441 +0 0.0627 +0 0.2461 +0 0.0696 +0 0.2080 +0 0.1412 +0 0.0800 +0 0.4137 +0 0.0813 +0 0.0687 +0 0.1485 +0 0.0462 +0 0.0801 +0 0.1480 +0 0.1745 +0 0.0680 +0 0.2041 +0 0.0786 +0 0.1240 +0 0.2212 +0 0.2696 +0 0.0605 +0 0.1296 +0 0.1017 +0 0.1087 +0 0.1201 +0 0.2630 +0 0.0672 +0 0.1297 +0 0.1101 +0 0.1036 +0 0.2715 +0 0.1159 +0 0.5933 +0 0.0815 +0 0.0724 +0 0.2719 +0 0.1022 +0 0.1618 +0 0.0545 +0 0.2622 +0 0.0909 +0 0.1399 +0 0.1486 +0 0.0582 +0 0.1718 +0 0.1864 +0 0.2520 +0 0.1079 +0 0.0682 +0 0.2794 +0 0.0564 +0 0.1852 +0 0.3084 +0 0.0563 +0 0.0493 +0 0.1596 +0 0.0713 +0 0.1093 +0 0.2219 +0 0.6461 +0 0.0983 +0 0.1321 +0 0.2111 +0 0.0429 +0 0.0583 +0 0.1147 +0 0.0911 +0 0.0703 +0 0.1533 +0 0.1099 +0 0.0643 +0 0.1919 +0 0.1217 +0 0.2445 +0 0.1092 +1 0.7782 +0 0.1011 +0 0.1009 +0 0.0856 +0 0.1316 +0 0.0784 +0 0.0491 +0 0.0691 +0 0.0686 +0 0.0554 +0 0.1137 +0 0.0843 +0 0.0932 +0 0.0806 +0 0.1832 +0 0.1274 +0 0.1241 +0 0.3966 +0 0.0868 +0 0.1149 +1 0.8123 +0 0.5142 +0 0.0980 +0 0.0461 +0 0.2488 +0 0.3854 +0 0.0597 +0 0.0664 +0 0.3159 +0 0.1621 +0 0.1427 +0 0.0488 +0 0.0733 +0 0.0819 +0 0.1827 +0 0.2125 +0 0.1247 +0 0.0771 +0 0.0770 +0 0.0469 +0 0.3433 +0 0.0970 +0 0.0778 +0 0.1015 +0 0.0466 +0 0.6794 +0 0.6204 +0 0.1008 +0 0.0598 +0 0.3550 +0 0.0828 +0 0.2531 +0 0.0786 +0 0.1735 +0 0.1512 +0 0.1029 +0 0.6583 +0 0.0828 +0 0.1047 +0 0.0756 +0 0.1141 +0 0.0837 +0 0.3030 +0 0.0504 +0 0.1516 +0 0.0393 +0 0.2499 +0 0.0782 +0 0.0944 +0 0.1150 +0 0.0734 +0 0.0866 +0 0.4634 +0 0.0335 +0 0.2907 +0 0.0496 +0 0.0758 +0 0.1692 +0 0.1244 +0 0.2084 +0 0.0502 +0 0.4900 +0 0.1839 +0 0.0778 +0 0.0801 +0 0.1236 +0 0.0999 +0 0.1149 +0 0.0846 +0 0.0664 +0 0.1161 +0 0.0517 +0 0.2437 +0 0.1215 +0 0.2263 +0 0.0961 +0 0.3128 +0 0.0623 +0 0.0760 +0 0.0564 +0 0.1475 +0 0.0868 +0 0.1466 +0 0.1030 +0 0.0949 +0 0.0974 +0 0.0921 +0 0.2119 +0 0.1749 +0 0.1036 +0 0.0632 +0 0.1562 +0 0.0681 +0 0.2810 +0 0.1626 +0 0.1709 +0 0.1004 +0 0.0398 +0 0.1670 +0 0.2025 +0 0.0670 +0 0.0947 +0 0.1143 +0 0.0618 +0 0.1268 +0 0.0616 +0 0.0916 +0 0.2067 +0 0.2627 +0 0.1455 +0 0.1164 +0 0.0291 +0 0.1109 +0 0.0950 +0 0.2234 +0 0.1003 +0 0.1684 +0 0.0910 +0 0.1157 +0 0.0479 +0 0.0903 +0 0.0559 +0 0.1653 +0 0.1469 +0 0.0978 +0 0.0430 +0 0.1607 +0 0.1671 +0 0.1019 +0 0.0716 +0 0.0956 +0 0.0645 +1 0.6121 +0 0.0559 +0 0.0693 +0 0.0833 +0 0.1056 +0 0.0750 +0 0.0797 +0 0.0448 +0 0.2205 +0 0.2868 +0 0.5632 +0 0.4013 +0 0.0539 +0 0.1865 +0 0.1005 +0 0.0691 +0 0.1366 +0 0.0998 +0 0.0754 +0 0.0863 +0 0.0392 +0 0.1158 +0 0.1380 +0 0.0401 +0 0.1114 +0 0.0462 +0 0.0589 +0 0.1831 +0 0.1157 +0 0.0561 +0 0.1714 +0 0.1323 +0 0.0910 +0 0.1642 +0 0.0996 +0 0.0449 +0 0.1855 +0 0.0573 +0 0.0852 +0 0.0682 +0 0.0846 +0 0.0653 +0 0.7447 +0 0.0738 +0 0.1198 +0 0.1206 +0 0.0864 +0 0.1121 +0 0.2585 +0 0.0665 +0 0.0883 +0 0.1799 +0 0.1901 +0 0.2430 +0 0.0557 +0 0.1165 +0 0.1074 +0 0.0671 +0 0.0691 +0 0.0474 +0 0.0759 +0 0.1065 +0 0.0689 +0 0.1182 +0 0.0848 +0 0.0826 +0 0.4204 +0 0.1225 +0 0.0325 +0 0.2427 +0 0.2396 +0 0.1089 +0 0.3358 +0 0.0631 +0 0.1070 +0 0.1593 +0 0.1863 +0 0.0635 +0 0.0520 +0 0.0722 +0 0.1159 +0 0.2404 +0 0.0925 +0 0.1662 +0 0.2678 +0 0.0893 +0 0.0712 +0 0.1114 +0 0.0679 +0 0.1930 +0 0.1313 +0 0.1666 +0 0.1798 +0 0.0633 +0 0.0690 +0 0.3215 +0 0.0506 +0 0.0389 +0 0.2249 +0 0.1267 +0 0.0484 +0 0.0640 +0 0.0622 +0 0.1264 +0 0.0548 +0 0.0700 +0 0.0698 +0 0.1316 +0 0.3135 +0 0.1234 +0 0.6050 +0 0.0922 +0 0.0912 +0 0.1080 +0 0.0729 +0 0.0863 +0 0.0861 +0 0.1981 +0 0.3245 +0 0.1394 +0 0.2587 +0 0.2427 +0 0.0571 +0 0.1024 +0 0.5624 +0 0.1966 +0 0.0528 +0 0.0949 +0 0.1635 +0 0.0617 +0 0.1597 +0 0.1600 +0 0.1987 +0 0.2503 +0 0.1307 +0 0.0407 +0 0.0694 +0 0.0441 +0 0.1034 +0 0.3638 +0 0.4600 +0 0.0414 +0 0.1631 +0 0.1620 +0 0.1798 +0 0.0862 +0 0.0708 +0 0.1142 +0 0.1525 +0 0.1998 +0 0.1010 +0 0.2118 +0 0.0703 +0 0.0380 +0 0.0768 +0 0.3584 +0 0.0935 +0 0.2112 +1 0.7687 +0 0.0808 +0 0.1613 +0 0.0935 +0 0.2552 +0 0.0435 +0 0.1141 +0 0.0461 +0 0.0917 +0 0.2401 +0 0.1547 +0 0.1374 +0 0.2034 +0 0.1258 +0 0.2960 +0 0.0430 +0 0.1249 +0 0.4142 +0 0.2552 +0 0.2445 +0 0.2135 +0 0.0836 +0 0.0558 +0 0.0344 +0 0.2166 +0 0.2719 +0 0.1370 +0 0.0550 +0 0.1277 +0 0.0645 +0 0.0847 +0 0.0883 +0 0.1358 +0 0.0383 +0 0.0781 +0 0.1908 +0 0.0891 +0 0.1247 +0 0.1720 +0 0.1544 +0 0.0554 +0 0.2125 +0 0.0717 +0 0.1094 +0 0.0670 +0 0.0547 +0 0.2155 +0 0.1504 +0 0.1611 +0 0.2057 +0 0.0947 +0 0.0806 +0 0.6345 +0 0.1679 +0 0.2088 +0 0.5529 +0 0.1207 +0 0.2286 +0 0.0872 +0 0.1011 +0 0.1120 +0 0.1584 +0 0.1983 +0 0.0799 +0 0.0588 +0 0.0661 +0 0.7255 +0 0.1414 +0 0.1677 +0 0.2030 +0 0.1203 +0 0.0802 +0 0.0900 +0 0.2339 +0 0.0936 +0 0.0579 +0 0.3071 +0 0.0899 +0 0.0969 +0 0.1215 +0 0.1467 +0 0.1562 +0 0.0666 +0 0.0888 +0 0.2368 +0 0.1673 +0 0.0866 +0 0.0645 +0 0.1560 +0 0.1132 +0 0.1145 +0 0.0890 +0 0.0629 +0 0.0662 +0 0.0868 +0 0.2520 +0 0.1102 +0 0.0759 +0 0.0690 +0 0.0872 +0 0.0541 +0 0.1188 +0 0.0686 +0 0.0467 +0 0.1874 +0 0.1498 +0 0.1312 +0 0.1871 +0 0.0505 +0 0.0478 +0 0.1041 +0 0.1938 +0 0.0836 +0 0.0809 +0 0.2034 +0 0.1210 +0 0.0864 +0 0.1156 +0 0.1294 +0 0.1102 +0 0.0810 +0 0.7268 +0 0.1531 +0 0.1388 +0 0.0998 +0 0.1157 +0 0.4532 +0 0.1586 +0 0.2057 +0 0.0538 +0 0.0652 +0 0.0929 +0 0.2538 +0 0.0696 +0 0.1954 +0 0.1002 +0 0.0829 +0 0.0886 +0 0.0534 +0 0.0674 +0 0.4096 +0 0.0930 +0 0.7065 +0 0.0798 +0 0.5301 +0 0.1012 +0 0.2834 +0 0.1337 +0 0.3122 +0 0.1787 +0 0.1885 +0 0.1093 +0 0.1013 +0 0.1251 +0 0.0770 +0 0.1799 +0 0.4789 +0 0.2318 +0 0.0358 +0 0.0767 +0 0.0434 +0 0.1005 +0 0.0575 +0 0.0978 +0 0.1474 +0 0.0788 +0 0.0426 +0 0.1262 +0 0.0433 +0 0.0534 +0 0.1396 +1 0.8039 +0 0.0761 +0 0.1097 +0 0.0762 +0 0.0995 +0 0.1123 +0 0.0847 +0 0.1010 +0 0.1622 +0 0.1212 +0 0.1702 +0 0.1372 +0 0.0522 +0 0.0726 +0 0.0907 +0 0.0759 +0 0.1029 +0 0.0515 +0 0.0739 +0 0.1438 +0 0.0985 +0 0.2963 +0 0.0904 +0 0.1365 +0 0.2040 +0 0.1309 +0 0.0768 +0 0.0899 +0 0.1281 +1 0.8296 +0 0.0964 +0 0.0512 +0 0.1250 +0 0.5724 +0 0.0841 +0 0.0642 +0 0.0572 +0 0.0555 +0 0.1442 +0 0.0896 +0 0.1411 +0 0.2456 +0 0.3562 +0 0.0872 +0 0.0488 +0 0.2667 +0 0.0553 +0 0.1600 +0 0.1085 +0 0.1295 +0 0.2041 +0 0.0607 +0 0.1675 +0 0.0914 +0 0.0763 +0 0.1043 +0 0.0633 +0 0.0929 +0 0.0537 +0 0.1061 +0 0.1091 +0 0.0934 +0 0.4760 +0 0.0939 +0 0.0554 +0 0.0894 +0 0.0463 +0 0.2662 +0 0.0946 +0 0.2455 +0 0.0678 +0 0.0609 +0 0.0814 +0 0.0538 +0 0.1751 +0 0.2309 +0 0.1452 +0 0.1563 +0 0.0467 +0 0.1717 +0 0.3672 +0 0.3937 +0 0.2139 +0 0.3178 +0 0.0746 +0 0.0800 +0 0.1594 +0 0.1349 +0 0.0780 +0 0.0727 +0 0.1033 +0 0.0676 +0 0.1675 +0 0.1071 +1 0.8394 +0 0.1315 +0 0.0920 +0 0.2436 +0 0.0903 +0 0.0582 +0 0.1045 +0 0.0733 +0 0.3246 +0 0.2903 +0 0.0983 +0 0.0901 +0 0.1377 +0 0.1533 +0 0.0921 +0 0.0471 +0 0.0643 +0 0.2368 +0 0.1121 +0 0.1205 +0 0.1350 +0 0.1687 +0 0.0586 +0 0.3711 +0 0.0549 +0 0.0374 +0 0.2529 +0 0.0838 +0 0.3126 +0 0.1384 +0 0.0588 +0 0.0988 +0 0.2860 +0 0.0745 +0 0.1003 +0 0.1374 +0 0.5807 +0 0.0685 +0 0.0702 +0 0.2386 +0 0.0664 +0 0.1471 +0 0.1140 +0 0.0662 +0 0.0719 +0 0.2457 +0 0.1619 +0 0.1677 +0 0.0682 +0 0.4585 +0 0.0622 +0 0.1432 +0 0.0352 +0 0.2560 +0 0.0946 +0 0.0708 +0 0.1455 +0 0.1024 +0 0.1422 +0 0.0605 +0 0.1086 +0 0.1952 +0 0.7100 +0 0.1522 +0 0.0939 +0 0.0514 +0 0.0991 +0 0.0577 +0 0.1789 +0 0.0735 +0 0.0519 +0 0.0761 +0 0.2522 +0 0.2248 +0 0.1517 +0 0.0624 +0 0.0790 +0 0.2800 +0 0.0934 +0 0.2578 +0 0.0565 +0 0.4889 +0 0.1205 +0 0.0763 +0 0.0399 +0 0.1380 +0 0.1337 +0 0.1038 +0 0.0401 +0 0.1418 +0 0.0643 +0 0.1553 +0 0.1308 +0 0.1087 +0 0.0267 +0 0.4192 +0 0.0401 +0 0.1628 +0 0.0533 +0 0.0943 +0 0.1552 +1 0.8638 +0 0.2066 +0 0.1353 +0 0.0718 +0 0.0442 +0 0.0527 +0 0.0706 +0 0.0866 +0 0.1239 +0 0.0931 +0 0.0530 +0 0.1103 +0 0.2720 +0 0.3119 +0 0.2619 +0 0.1263 +0 0.0757 +0 0.3086 +0 0.0601 +0 0.3118 +0 0.0782 +0 0.1612 +0 0.1336 +0 0.0988 +0 0.1332 +0 0.1204 +0 0.0591 +0 0.1596 +0 0.0466 +0 0.0853 +0 0.1038 +0 0.2783 +0 0.0533 +0 0.0353 +0 0.1811 +0 0.1300 +0 0.1012 +0 0.3661 +0 0.0894 +0 0.1780 +0 0.1434 +0 0.0378 +0 0.0529 +0 0.0949 +0 0.0485 +0 0.1861 +0 0.1321 +0 0.0791 +0 0.1585 +0 0.0700 +0 0.1177 +0 0.0638 +0 0.1028 +0 0.4615 +0 0.0870 +0 0.2843 +0 0.0484 +0 0.1025 +0 0.7229 +0 0.0512 +0 0.0674 +0 0.0983 +0 0.0549 +0 0.3430 +0 0.0568 +0 0.0597 +0 0.0998 +0 0.0700 +0 0.0861 +0 0.0779 +0 0.0475 +0 0.1519 +0 0.0989 +0 0.0388 +0 0.0500 +0 0.0666 +0 0.0678 +0 0.2244 +0 0.0829 +0 0.1766 +0 0.1620 +0 0.6806 +0 0.1941 +0 0.0501 +0 0.1616 +0 0.1601 +0 0.0649 +0 0.0692 +0 0.0639 +0 0.3335 +0 0.0641 +0 0.0880 +0 0.1184 +0 0.0833 +0 0.1255 +0 0.0575 +0 0.0919 +0 0.3616 +0 0.0668 +0 0.0418 +0 0.1011 +0 0.1215 +0 0.2739 +0 0.0440 +0 0.0567 +0 0.0735 +0 0.1237 +0 0.1392 +0 0.1874 +0 0.1679 +0 0.1298 +0 0.0628 +0 0.1066 +0 0.2412 +0 0.1235 +0 0.0494 +0 0.1577 +0 0.0386 +0 0.0735 +0 0.1494 +0 0.0781 +0 0.1229 +0 0.0450 +0 0.0691 +0 0.1257 +0 0.1244 +0 0.1128 +0 0.7348 +0 0.0481 +0 0.1174 +0 0.2737 +0 0.1491 +0 0.0622 +0 0.0386 +0 0.0838 +0 0.3216 +0 0.0605 +0 0.0946 +0 0.5889 +0 0.0743 +0 0.0768 +0 0.2236 +0 0.2713 +0 0.2438 +0 0.1166 +0 0.0964 +0 0.1497 +0 0.0862 +0 0.0327 +0 0.2902 +0 0.2106 +0 0.0683 +1 0.8034 +0 0.0753 +0 0.0761 +0 0.0368 +0 0.1650 +0 0.1999 +0 0.1630 +0 0.0607 +0 0.4408 +0 0.1001 +0 0.0821 +0 0.1111 +0 0.0416 +0 0.1135 +0 0.1245 +0 0.0374 +0 0.0512 +0 0.0674 +0 0.1004 +0 0.1146 +0 0.1213 +0 0.1262 +0 0.1296 +0 0.4180 +0 0.0992 +0 0.0612 +0 0.0804 +0 0.0792 +0 0.0629 +0 0.0706 +0 0.1174 +0 0.0595 +0 0.1804 +0 0.0717 +0 0.0505 +0 0.0849 +0 0.1265 +0 0.0993 +0 0.0661 +0 0.1426 +0 0.5066 +0 0.1074 +0 0.1208 +0 0.1005 +0 0.0763 +0 0.0892 +0 0.2069 +0 0.1236 +0 0.6460 +0 0.2275 +0 0.4318 +0 0.0807 +0 0.0731 +0 0.2175 +0 0.1398 +0 0.1648 +0 0.1840 +0 0.0860 +0 0.2131 +0 0.0788 +0 0.1543 +0 0.1294 +0 0.0435 +0 0.3339 +1 0.7508 +0 0.2602 +0 0.0924 +0 0.1296 +0 0.0822 +0 0.0661 +0 0.1170 +0 0.0434 +0 0.1374 +0 0.0734 +0 0.0862 +0 0.0734 +0 0.0550 +0 0.1177 +0 0.1052 +0 0.0596 +0 0.0563 +0 0.3925 +0 0.0915 +0 0.1453 +0 0.0783 +0 0.1211 +0 0.2180 +0 0.1371 +0 0.3501 +0 0.1347 +0 0.1116 +0 0.1249 +0 0.6841 +0 0.0716 +0 0.2696 +0 0.0628 +0 0.1048 +0 0.1094 +0 0.0770 +0 0.1482 +0 0.1425 +0 0.3149 +0 0.2921 +0 0.2393 +0 0.0643 +0 0.5046 +0 0.1294 +0 0.1953 +0 0.0417 +0 0.1739 +1 0.8149 +0 0.0786 +0 0.0981 +0 0.3689 +0 0.0821 +0 0.1206 +0 0.3965 +0 0.1448 +0 0.2896 +0 0.1151 +0 0.1236 +0 0.1013 +0 0.0770 +0 0.1233 +0 0.0437 +0 0.0897 +0 0.1387 +0 0.0575 +0 0.1405 +0 0.1258 +0 0.5111 +0 0.0501 +0 0.2866 +0 0.2321 +0 0.1652 +0 0.0882 +1 0.7818 +0 0.1196 +0 0.3039 +0 0.1174 +0 0.2100 +0 0.1338 +0 0.0526 +0 0.1092 +0 0.2221 +0 0.0386 +0 0.2922 +0 0.0701 +0 0.5035 +0 0.1453 +0 0.0950 +0 0.1082 +0 0.1227 +0 0.1744 +0 0.1271 +0 0.1064 +0 0.1771 +0 0.2090 +0 0.3179 +0 0.1406 +0 0.0848 +0 0.1335 +0 0.1357 +0 0.1259 +0 0.0734 +0 0.0767 +0 0.1726 +0 0.1010 +0 0.0771 +0 0.0702 +0 0.0620 +0 0.0855 +0 0.0424 +0 0.1250 +0 0.0466 +0 0.1026 +0 0.3233 +0 0.1238 +0 0.0402 +0 0.1296 +0 0.0871 +0 0.0683 +0 0.0357 +0 0.3835 +0 0.1247 +0 0.1726 +0 0.0615 +0 0.1049 +0 0.0468 +0 0.2638 +0 0.0729 +0 0.2359 +0 0.3996 +0 0.0634 +0 0.0891 +0 0.0607 +0 0.1629 +0 0.0648 +0 0.3704 +0 0.0577 +0 0.0920 +0 0.2287 +0 0.0926 +0 0.7139 +0 0.1835 +0 0.1768 +0 0.1069 +0 0.0583 +0 0.1072 +0 0.2859 +0 0.0891 +0 0.0615 +0 0.2585 +0 0.0679 +0 0.0751 +0 0.0991 +0 0.0921 +0 0.0375 +0 0.0993 +0 0.5063 +0 0.2393 +0 0.1068 +0 0.2284 +0 0.0416 +0 0.0783 +0 0.2558 +0 0.1133 +1 0.8072 +0 0.0986 +0 0.4023 +0 0.1682 +0 0.1463 +1 0.8216 +0 0.1097 +0 0.1241 +0 0.5262 +0 0.2259 +0 0.0848 +0 0.0648 +0 0.1876 +0 0.5192 +0 0.0964 +0 0.0938 +0 0.1052 +0 0.1468 +0 0.1004 +0 0.1216 +0 0.3134 +0 0.1290 +0 0.0470 +0 0.0777 +0 0.0426 +0 0.1100 +0 0.0438 +0 0.0654 +0 0.1137 +0 0.1672 +0 0.1801 +0 0.2422 +0 0.0638 +0 0.0414 +0 0.2704 +0 0.0817 +0 0.0703 +0 0.0999 +0 0.2200 +1 0.8632 +0 0.1523 +0 0.0488 +0 0.1157 +0 0.0443 +0 0.0784 +0 0.1346 +0 0.1487 +0 0.0735 +0 0.3045 +0 0.0542 +0 0.1617 +0 0.0833 +0 0.0683 +0 0.1687 +0 0.3329 +0 0.0562 +0 0.1441 +0 0.1986 +0 0.0558 +0 0.0605 +0 0.1233 +0 0.5841 +0 0.1692 +0 0.1653 +0 0.1643 +0 0.1544 +0 0.0528 +0 0.1296 +0 0.1679 +0 0.0575 +0 0.1553 +0 0.2353 +0 0.3196 +0 0.0484 +0 0.0517 +0 0.1301 +0 0.5516 +0 0.0768 +0 0.0862 +0 0.5347 +0 0.1085 +0 0.1198 +0 0.1073 +0 0.0925 +0 0.0902 +0 0.0757 +0 0.2793 +0 0.1243 +0 0.1174 +0 0.1504 +0 0.0665 +0 0.5304 +0 0.1256 +0 0.3189 +0 0.0494 +0 0.2254 +0 0.1847 +0 0.1030 +0 0.0988 +0 0.0871 +0 0.0371 +0 0.1322 +0 0.0860 +0 0.2387 +0 0.0929 +0 0.1216 +0 0.1102 +0 0.1034 +0 0.2125 +0 0.0743 +0 0.1566 +0 0.0589 +0 0.1714 +0 0.0984 +0 0.0729 +0 0.0841 +0 0.0910 +0 0.0902 +0 0.0825 +0 0.1330 +0 0.1281 +0 0.3139 +0 0.0848 +0 0.0953 +0 0.1009 +0 0.1609 +0 0.0508 +0 0.1409 +0 0.1203 +0 0.0288 +0 0.1650 +0 0.0466 +0 0.1583 +0 0.0864 +0 0.0410 +0 0.0542 +0 0.0608 +0 0.2345 +0 0.1230 +0 0.1164 +0 0.1592 +0 0.0682 +0 0.1911 +0 0.1908 +0 0.0789 +0 0.0487 +0 0.1898 +0 0.0550 +0 0.0818 +0 0.0968 +0 0.2091 +0 0.3469 +0 0.1159 +0 0.0539 +0 0.0813 +0 0.0599 +0 0.0737 +0 0.0870 +0 0.0935 +0 0.2106 +0 0.1122 +0 0.0667 +0 0.1607 +0 0.6847 +0 0.0600 +0 0.2878 +0 0.0488 +0 0.0721 +0 0.0900 +0 0.0480 +0 0.0833 +0 0.1256 +0 0.0969 +0 0.5003 +0 0.3285 +0 0.1520 +0 0.1203 +0 0.0897 +1 0.8064 +0 0.1043 +0 0.4703 +0 0.0385 +0 0.1331 +0 0.2363 +0 0.0378 +0 0.0811 +0 0.0839 +0 0.0629 +0 0.0905 +0 0.0751 +0 0.1087 +0 0.0586 +0 0.1105 +0 0.5259 +0 0.0796 +1 0.7944 +0 0.1589 +0 0.0694 +0 0.2031 +0 0.0649 +0 0.0875 +0 0.1212 +0 0.0741 +0 0.0947 +0 0.1440 +0 0.0605 +0 0.1318 +0 0.1495 +0 0.0530 +0 0.0955 +0 0.1419 +0 0.1159 +0 0.0796 +0 0.1133 +0 0.0939 +0 0.0926 +0 0.3557 +0 0.0894 +0 0.6235 +0 0.0621 +0 0.0939 +0 0.0669 +0 0.2196 +0 0.0899 +0 0.0606 +0 0.0694 +0 0.0679 +0 0.3698 +0 0.6799 +0 0.1004 +0 0.0871 +0 0.0793 +0 0.2459 +0 0.1392 +0 0.0447 +0 0.0919 +0 0.1048 +0 0.0439 +0 0.1883 +0 0.0774 +0 0.1832 +0 0.0870 +0 0.1051 +0 0.0538 +0 0.0727 +0 0.2000 +0 0.0694 +0 0.0739 +0 0.3527 +0 0.2132 +0 0.6127 +0 0.1629 +0 0.0379 +0 0.0930 +0 0.2098 +0 0.1256 +0 0.0928 +0 0.1438 +0 0.1478 +0 0.0558 +0 0.3422 +0 0.1957 +1 0.8011 +1 0.8907 +0 0.1362 +0 0.1247 +0 0.2450 +0 0.0481 +0 0.0864 +0 0.1010 +0 0.0511 +0 0.0780 +0 0.0788 +0 0.0847 +0 0.0853 +0 0.0803 +0 0.1588 +0 0.2347 +0 0.2940 +0 0.0808 +0 0.1300 +0 0.1912 +0 0.0456 +0 0.1116 +0 0.2669 +1 0.8074 +0 0.1250 +0 0.0767 +0 0.4251 +0 0.0738 +0 0.5451 +0 0.1983 +0 0.1370 +0 0.3287 +0 0.0741 +0 0.1884 +0 0.4407 +0 0.4858 +0 0.3296 +1 0.8136 +0 0.1338 +0 0.0599 +0 0.0976 +0 0.1852 +0 0.0934 +0 0.0970 +0 0.0744 +0 0.1043 +0 0.2497 +1 0.7595 +0 0.2148 +0 0.1370 +0 0.0428 +0 0.1637 +0 0.1142 +0 0.0726 +0 0.1471 +0 0.2154 +0 0.2283 +0 0.2588 +0 0.0599 +0 0.1679 +0 0.0467 +0 0.0815 +0 0.1455 +0 0.3139 +0 0.1595 +0 0.0696 +0 0.0909 +0 0.0704 +0 0.1372 +0 0.1349 +0 0.1475 +0 0.0943 +0 0.0657 +0 0.0958 +0 0.0581 +0 0.0891 +0 0.0553 +0 0.3661 +0 0.0740 +0 0.0853 +0 0.0737 +0 0.1891 +0 0.1110 +0 0.1117 +0 0.0801 +0 0.1114 +0 0.0882 +0 0.0712 +0 0.1662 +0 0.0481 +0 0.1271 +0 0.1026 +0 0.1051 +0 0.0799 +0 0.2765 +0 0.4491 +0 0.3832 +0 0.0769 +0 0.1063 +0 0.0638 +0 0.2180 +0 0.0505 +0 0.1858 +0 0.0948 +0 0.1049 +0 0.0522 +1 0.7882 +0 0.2030 +0 0.0852 +0 0.1625 +0 0.1324 +0 0.0858 +0 0.2382 +0 0.2423 +0 0.1436 +0 0.1242 +0 0.0916 +0 0.0877 +0 0.0751 +0 0.0484 +0 0.1952 +0 0.0665 +0 0.0622 +0 0.4980 +0 0.1142 +0 0.1999 +0 0.1378 +0 0.1122 +0 0.1050 +0 0.1141 +0 0.2594 +0 0.0815 +0 0.0745 +0 0.0737 +0 0.1037 +0 0.1160 +0 0.3942 +0 0.0541 +0 0.1274 +0 0.0850 +0 0.0961 +0 0.0672 +0 0.0845 +0 0.2986 +0 0.0671 +0 0.1242 +0 0.1620 +0 0.0847 +0 0.2299 +0 0.0937 +0 0.0511 +0 0.0745 +0 0.1017 +0 0.0588 +0 0.0527 +0 0.7054 +0 0.0961 +0 0.1050 +0 0.0391 +0 0.0574 +0 0.1608 +0 0.0975 +0 0.1539 +0 0.1744 +0 0.0643 +0 0.0690 +0 0.1343 +0 0.2338 +0 0.0809 +0 0.1008 +0 0.0524 +0 0.0901 +0 0.1998 +0 0.0558 +0 0.1530 +0 0.0872 +0 0.1441 +0 0.1684 +0 0.1264 +0 0.0395 +0 0.0688 +0 0.1818 +0 0.1626 +0 0.1177 +0 0.3611 +0 0.0514 +0 0.1152 +0 0.0646 +0 0.0977 +0 0.1993 +0 0.1266 +0 0.0661 +0 0.0635 +0 0.1994 +0 0.2871 +0 0.1777 +0 0.1190 +0 0.2005 +0 0.1373 +0 0.0960 +0 0.3022 +0 0.5996 +0 0.1763 +0 0.0830 +0 0.2385 +0 0.2104 +0 0.0356 +1 0.7963 +0 0.4534 +0 0.1815 +0 0.0816 +0 0.1091 +0 0.0638 +0 0.0830 +0 0.1111 +0 0.0863 +0 0.1364 +0 0.0691 +0 0.0684 +0 0.0642 +0 0.0369 +0 0.0408 +0 0.0944 +0 0.0934 +0 0.1985 +0 0.1013 +0 0.3183 +0 0.0930 +0 0.0661 +0 0.1583 +0 0.1497 +0 0.0813 +1 0.8638 +0 0.1625 +0 0.0553 +0 0.0932 +0 0.0465 +0 0.3460 +0 0.1310 +0 0.0734 +0 0.0807 +0 0.1604 +0 0.1331 +0 0.0462 +0 0.0766 +0 0.1101 +1 0.7708 +0 0.0830 +0 0.0753 +0 0.0664 +0 0.0548 +0 0.0816 +0 0.0585 +0 0.2609 +0 0.0586 +0 0.1195 +0 0.1770 +0 0.0501 +0 0.1374 +0 0.1521 +0 0.2727 +0 0.0709 +0 0.1318 +0 0.1113 +0 0.0706 +0 0.1055 +0 0.0620 +0 0.2619 +0 0.1500 +0 0.0750 +0 0.4984 +0 0.0313 +0 0.0786 +0 0.1766 +0 0.1357 +0 0.2297 +0 0.0359 +0 0.0721 +0 0.0725 +0 0.0677 +0 0.0505 +0 0.1181 +0 0.0323 +0 0.0806 +0 0.0571 +0 0.1197 +0 0.1674 +0 0.0506 +0 0.1173 +0 0.0553 +0 0.1013 +0 0.0944 +0 0.1100 +0 0.2608 +0 0.0976 +0 0.0736 +0 0.0388 +0 0.1056 +0 0.0352 +0 0.2077 +1 0.7858 +0 0.1000 +0 0.2012 +0 0.1256 +0 0.2032 +0 0.1349 +0 0.0535 +0 0.0626 +0 0.1098 +0 0.2470 +0 0.1471 +0 0.5311 +0 0.1035 +0 0.4062 +0 0.0921 +0 0.3115 +0 0.0749 +0 0.1684 +0 0.5292 +0 0.1519 +0 0.0957 +0 0.1889 +0 0.0909 +0 0.3717 +0 0.0916 +0 0.0607 +0 0.3100 +0 0.6885 +0 0.3745 +0 0.0597 +0 0.1929 +0 0.0623 +0 0.0787 +0 0.0372 +0 0.0854 +0 0.1285 +0 0.0786 +0 0.0798 +0 0.1140 +0 0.0899 +0 0.3036 +0 0.0989 +0 0.1042 +0 0.3004 +0 0.1007 +0 0.1025 +0 0.1543 +0 0.0684 +0 0.0323 +0 0.0632 +0 0.1334 +0 0.3475 +0 0.4386 +0 0.0945 +0 0.1308 +0 0.0665 +0 0.1122 +0 0.1886 +0 0.1005 +0 0.1011 +0 0.1060 +0 0.1062 +1 0.8131 +0 0.4276 +0 0.1118 +0 0.1314 +0 0.1037 +0 0.0998 +0 0.1058 +0 0.3477 +0 0.0758 +0 0.0867 +0 0.0623 +0 0.2705 +0 0.2007 +0 0.0830 +0 0.0708 +0 0.1912 +0 0.0896 +0 0.0643 +0 0.0670 +0 0.4301 +0 0.0636 +0 0.3553 +0 0.2028 +0 0.1685 +0 0.0849 +0 0.2634 +0 0.0963 +0 0.0667 +0 0.1731 +0 0.1386 +0 0.1027 +0 0.0747 +0 0.6636 +0 0.0793 +0 0.1533 +0 0.1385 +0 0.0985 +0 0.0714 +0 0.0770 +0 0.1403 +0 0.0488 +0 0.1093 +0 0.1192 +0 0.1055 +0 0.5304 +0 0.0909 +0 0.1166 +0 0.1445 +0 0.2324 +0 0.0469 +0 0.1727 +0 0.0426 +0 0.0453 +0 0.0911 +0 0.1545 +0 0.1174 +0 0.2995 +0 0.0699 +0 0.0596 +0 0.0667 +0 0.0876 +0 0.0915 +0 0.0987 +0 0.1777 +0 0.1348 +0 0.0997 +0 0.2382 +0 0.1288 +0 0.0605 +0 0.1159 +0 0.1419 +0 0.1650 +0 0.1792 +0 0.1323 +0 0.1599 +0 0.0546 +0 0.2138 +0 0.0457 +0 0.0901 +0 0.0962 +0 0.0514 +0 0.1123 +0 0.0588 +0 0.1350 +0 0.1457 +0 0.0835 +0 0.1463 +0 0.1765 +0 0.1893 +0 0.2347 +0 0.0722 +0 0.0729 +0 0.1015 +0 0.1335 +0 0.0995 +0 0.1451 +0 0.2267 +0 0.0977 +0 0.1808 +0 0.0535 +0 0.1028 +0 0.2145 +0 0.0738 +0 0.0534 +0 0.0951 +0 0.0812 +0 0.0431 +0 0.1663 +0 0.1023 +1 0.7975 +0 0.2455 +0 0.1031 +0 0.0678 +0 0.1318 +0 0.1378 +0 0.0737 +0 0.0837 +0 0.0674 +0 0.0364 +0 0.0479 +0 0.1408 +0 0.2363 +0 0.0764 +0 0.1006 +0 0.2287 +1 0.8116 +0 0.0878 +0 0.1492 +0 0.2538 +0 0.0860 +0 0.2425 +0 0.1972 +0 0.1299 +0 0.0861 +0 0.0921 +0 0.1143 +0 0.1253 +0 0.0624 +0 0.1240 +0 0.2809 +0 0.1183 +0 0.0683 +1 0.8068 +0 0.0718 +0 0.4722 +0 0.0797 +0 0.2270 +0 0.2368 +0 0.5581 +0 0.1124 +0 0.0672 +0 0.1825 +0 0.0666 +0 0.1487 +0 0.4167 +0 0.1538 +0 0.0961 +0 0.0410 +0 0.1433 +0 0.0968 +0 0.0794 +0 0.1495 +0 0.6916 +0 0.0640 +0 0.0618 +0 0.1061 +0 0.1902 +0 0.1513 +0 0.1504 +0 0.0620 +0 0.0556 +0 0.1140 +0 0.0761 +0 0.0654 +0 0.1447 +0 0.0888 +0 0.2091 +0 0.0989 +0 0.0532 +0 0.1339 +0 0.1562 +0 0.2743 +0 0.1751 +0 0.1286 +0 0.6163 +0 0.0589 +0 0.2502 +0 0.0702 +0 0.0553 +0 0.1442 +0 0.2907 +0 0.2168 +0 0.0712 +0 0.0605 +0 0.4409 +0 0.0982 +0 0.0341 +0 0.1781 +0 0.0992 +0 0.0663 +0 0.0940 +0 0.2010 +0 0.0823 +0 0.1826 +0 0.1058 +0 0.0788 +1 0.8001 +0 0.1259 +0 0.1255 +0 0.1199 +0 0.0840 +0 0.1277 +0 0.1399 +0 0.2054 +0 0.0648 +0 0.1762 +0 0.1133 +0 0.1274 +0 0.1231 +0 0.0492 +0 0.1180 +0 0.1024 +0 0.2480 +0 0.1069 +0 0.1811 +0 0.0343 +0 0.0351 +0 0.0831 +0 0.0666 +0 0.0426 +0 0.1426 +0 0.1893 +0 0.1080 +0 0.1070 +0 0.0325 +0 0.2609 +0 0.3126 +0 0.0877 +0 0.1255 +0 0.2613 +0 0.1011 +0 0.0839 +0 0.0669 +0 0.0824 +0 0.0884 +0 0.1842 +0 0.1080 +0 0.1711 +0 0.0755 +0 0.2320 +0 0.4218 +0 0.1800 +0 0.0807 +0 0.1151 +0 0.0812 +0 0.1617 +1 0.9039 +0 0.0975 +0 0.0990 +0 0.0774 +0 0.0826 +0 0.1125 +0 0.0737 +0 0.2485 +0 0.1135 +0 0.0611 +1 0.8711 +0 0.0813 +0 0.0850 +0 0.1271 +0 0.0674 +0 0.0818 +0 0.0770 +0 0.6504 +0 0.1139 +0 0.3072 +0 0.0473 +0 0.1107 +0 0.0446 +0 0.1801 +0 0.0663 +0 0.1668 +0 0.1101 +0 0.0410 +0 0.5947 +0 0.1043 +0 0.1349 +0 0.1545 +0 0.1511 +0 0.0387 +0 0.0917 +0 0.1539 +0 0.0397 +0 0.1595 +0 0.2051 +0 0.0663 +0 0.2638 +0 0.0536 +0 0.0757 +0 0.0666 +0 0.1030 +0 0.2328 +0 0.1941 +0 0.0751 +0 0.0791 +0 0.0524 +0 0.0782 +0 0.2201 +0 0.0977 +0 0.5934 +0 0.0624 +0 0.0779 +0 0.1223 +0 0.1409 +0 0.0794 +0 0.0672 +0 0.0812 +0 0.0722 +0 0.1469 +0 0.1402 +0 0.1647 +0 0.1017 +0 0.0793 +0 0.1112 +0 0.1015 +0 0.6925 +0 0.1155 +0 0.0426 +0 0.0857 +0 0.2575 +0 0.0888 +0 0.3323 +0 0.2058 +0 0.0987 +0 0.0463 +0 0.2394 +0 0.1699 +0 0.0768 +0 0.0422 +0 0.0398 +0 0.2252 +0 0.1606 +0 0.0915 +0 0.0494 +0 0.1263 +0 0.0370 +0 0.2029 +0 0.0950 +0 0.0512 +0 0.3717 +0 0.0842 +0 0.1074 +0 0.1821 +0 0.1303 +0 0.1441 +0 0.0486 +0 0.2328 +0 0.0656 +0 0.0707 +0 0.2025 +0 0.1036 +0 0.0977 +0 0.2868 +0 0.1827 +0 0.1088 +0 0.3004 +0 0.0572 +0 0.0862 +0 0.0839 +0 0.1936 +0 0.0610 +0 0.0987 +0 0.0670 +0 0.2152 +0 0.0596 +0 0.1975 +0 0.2258 +0 0.1213 +0 0.1031 +0 0.0945 +0 0.6592 +0 0.0376 +0 0.1874 +0 0.0942 +0 0.0742 +0 0.1607 +1 0.8143 +0 0.0407 +0 0.3541 +0 0.0678 +0 0.1068 +0 0.2290 +0 0.0735 +0 0.1172 +0 0.1452 +0 0.2185 +0 0.0693 +0 0.2500 +0 0.0901 +0 0.1788 +0 0.1034 +0 0.2049 +0 0.1799 +0 0.0861 +0 0.1514 +0 0.0637 +1 0.7986 +0 0.2487 +1 0.8252 +0 0.0616 +0 0.1035 +0 0.1348 +0 0.2031 +0 0.6710 +0 0.0706 +0 0.0778 +0 0.2452 +0 0.0987 +0 0.1445 +0 0.0616 +0 0.1077 +0 0.0781 +0 0.2015 +0 0.0385 +0 0.0851 +1 0.7511 +0 0.0858 +0 0.0555 +1 0.8832 +0 0.1373 +0 0.1385 +0 0.1906 +0 0.0804 +0 0.2185 +1 0.8036 +0 0.1132 +0 0.2685 +0 0.3930 +0 0.0785 +0 0.1071 +0 0.0666 +0 0.1221 +0 0.6182 +0 0.2258 +0 0.1071 +0 0.0618 +0 0.0775 +0 0.0847 +0 0.0991 +0 0.3519 +0 0.1038 +0 0.3074 +0 0.1044 +0 0.0872 +0 0.0685 +0 0.0905 +0 0.0567 +0 0.1427 +0 0.2949 +0 0.1607 +0 0.2510 +0 0.2478 +0 0.1817 +0 0.0611 +0 0.0730 +0 0.1976 +0 0.1122 +0 0.5643 +0 0.0685 +0 0.1002 +0 0.1440 +0 0.1336 +0 0.1227 +0 0.0823 +0 0.0603 +0 0.1261 +0 0.2835 +0 0.1022 +0 0.0687 +0 0.0601 +0 0.0786 +0 0.1311 +0 0.0599 +0 0.1362 +0 0.4999 +0 0.1095 +0 0.0481 +0 0.0388 +0 0.1826 +0 0.3933 +0 0.0798 +0 0.1792 +0 0.0736 +0 0.1559 +0 0.1040 +0 0.2360 +0 0.1057 +0 0.1170 +0 0.1725 +0 0.0821 +0 0.0609 +0 0.1892 +0 0.1519 +0 0.3616 +0 0.1040 +1 0.8099 +0 0.2905 +0 0.2721 +0 0.2140 +0 0.1026 +0 0.2498 +0 0.0705 +0 0.1219 +1 0.7993 +0 0.0809 +0 0.0814 +0 0.1077 +0 0.0980 +0 0.1375 +0 0.6153 +0 0.2343 +0 0.1055 +0 0.1097 +0 0.0536 +0 0.1225 +0 0.2261 +0 0.0783 +0 0.1485 +0 0.1492 +0 0.1079 +0 0.0787 +0 0.4381 +0 0.2778 +0 0.0916 +0 0.4009 +0 0.1542 +0 0.0900 +0 0.0579 +0 0.0893 +1 0.8648 +0 0.3772 +0 0.0535 +0 0.1877 +0 0.0896 +0 0.0918 +0 0.1140 +0 0.0755 +0 0.0849 +0 0.0955 +0 0.1369 +0 0.1847 +0 0.0706 +0 0.4605 +0 0.3197 +0 0.1381 +0 0.1350 +0 0.1124 +0 0.0870 +0 0.1757 +0 0.1462 +0 0.0765 +0 0.0693 +0 0.2398 +0 0.2170 +0 0.1433 +0 0.0586 +0 0.0669 +0 0.0529 +0 0.1278 +0 0.0746 +0 0.1358 +0 0.2303 +0 0.0542 +0 0.3042 +0 0.0943 +0 0.1008 +0 0.0541 +0 0.0566 +0 0.1085 +0 0.0905 +0 0.0693 +0 0.5412 +0 0.1069 +0 0.1154 +0 0.1853 +0 0.0701 +0 0.1566 +0 0.1826 +0 0.0691 +0 0.0641 +0 0.2420 +0 0.0533 +0 0.3750 +0 0.1228 +0 0.1068 +0 0.0637 +0 0.0638 +0 0.0667 +0 0.2046 +0 0.0376 +0 0.2149 +0 0.1041 +0 0.0899 +0 0.1108 +0 0.0875 +0 0.1163 +0 0.0430 +0 0.1048 +0 0.1426 +0 0.4128 +0 0.0647 +0 0.0709 +0 0.0727 +0 0.0855 +0 0.0653 +0 0.0885 +0 0.0804 +0 0.1018 +0 0.3460 +0 0.1719 +0 0.4030 +0 0.0811 +0 0.6908 +0 0.0781 +0 0.1352 +0 0.0921 +0 0.1607 +0 0.0827 +0 0.0582 +0 0.0693 +0 0.0487 +0 0.1168 +0 0.0414 +0 0.2233 +0 0.6391 +0 0.0715 +0 0.0970 +0 0.0541 +0 0.0888 +0 0.2525 +0 0.6813 +0 0.2691 +0 0.2615 +0 0.0808 +0 0.1801 +0 0.1421 +0 0.3569 +0 0.0460 +0 0.1103 +0 0.0555 +0 0.1062 +0 0.3013 +0 0.0355 +0 0.1008 +0 0.0973 +0 0.0916 +0 0.0897 +0 0.1599 +0 0.0770 +0 0.1285 +0 0.1165 +0 0.0872 +0 0.1049 +0 0.1985 +0 0.1885 +0 0.1023 +0 0.2356 +0 0.0432 +0 0.0658 +0 0.2153 +0 0.1379 +0 0.1179 +0 0.1419 +0 0.1182 +0 0.0617 +0 0.0580 +0 0.0505 +0 0.0997 +0 0.2771 +0 0.0913 +0 0.1132 +0 0.0801 +0 0.3597 +0 0.0740 +0 0.0400 +0 0.0871 +0 0.2920 +0 0.2322 +0 0.0658 +0 0.3799 +1 0.8324 +0 0.0703 +0 0.3791 +0 0.0653 +1 0.8735 +0 0.1061 +0 0.1658 +0 0.0843 +0 0.1651 +0 0.1046 +0 0.5490 +0 0.0654 +0 0.2894 +0 0.0707 +0 0.4440 +0 0.0850 +0 0.0663 +0 0.1083 +1 0.8710 +0 0.0940 +0 0.0688 +0 0.0350 +0 0.0779 +0 0.6353 +0 0.1570 +0 0.0477 +0 0.1653 +0 0.0748 +0 0.0467 +0 0.0598 +0 0.1423 +0 0.1278 +0 0.0850 +0 0.1044 +0 0.2210 +0 0.0616 +0 0.1030 +0 0.1024 +0 0.1977 +0 0.0951 +0 0.0711 +0 0.0456 +0 0.1782 +0 0.1691 +0 0.0353 +0 0.3049 +0 0.0530 +0 0.1863 +0 0.3149 +0 0.5285 +0 0.3836 +0 0.1130 +0 0.0935 +0 0.1098 +0 0.0587 +0 0.2051 +0 0.1693 +0 0.0792 +0 0.1124 +1 0.7587 +0 0.1645 +0 0.1724 +0 0.5133 +0 0.1548 +0 0.0511 +0 0.1077 +0 0.6416 +0 0.0916 +0 0.1392 +0 0.2880 +0 0.2008 +0 0.0837 +0 0.0630 +0 0.1259 +0 0.2006 +0 0.0996 +0 0.1005 +0 0.0844 +0 0.0382 +0 0.0935 +0 0.1470 +0 0.1460 +0 0.0442 +0 0.0437 +0 0.1104 +0 0.2658 +0 0.1081 +0 0.0843 +0 0.0795 +0 0.1096 +0 0.1553 +0 0.1359 +0 0.0658 +0 0.0910 +0 0.1224 +0 0.0684 +0 0.0930 +0 0.0537 +0 0.0384 +0 0.0522 +0 0.1688 +0 0.0819 +0 0.1368 +0 0.1521 +0 0.0549 +0 0.0837 +0 0.1334 +0 0.0740 +0 0.0638 +0 0.1057 +0 0.2581 +0 0.1847 +0 0.2900 +0 0.1306 +0 0.0936 +0 0.0760 +0 0.1558 +0 0.0756 +0 0.3691 +0 0.1710 +0 0.2957 +0 0.2130 +0 0.1480 +0 0.0999 +0 0.0809 +0 0.1164 +0 0.1159 +0 0.1147 +0 0.0838 +0 0.2848 +0 0.1386 +0 0.0687 +0 0.4378 +0 0.1926 +0 0.2808 +0 0.0508 +0 0.1728 +0 0.0962 +0 0.0565 +0 0.1792 +0 0.3368 +0 0.0874 +0 0.0584 +0 0.0623 +0 0.0958 +0 0.2793 +0 0.0504 +0 0.0867 +0 0.1154 +0 0.0790 +0 0.1021 +0 0.1144 +0 0.0856 +0 0.0669 +0 0.0698 +1 0.8384 +0 0.1002 +0 0.0524 +0 0.1128 +0 0.0857 +0 0.1326 +0 0.0929 +0 0.2648 +0 0.0968 +0 0.0972 +0 0.1852 +0 0.0839 +0 0.1654 +0 0.1085 +0 0.1148 +0 0.1167 +0 0.1097 +0 0.0840 +0 0.0765 +0 0.0866 +0 0.1476 +0 0.0380 +0 0.0499 +0 0.3490 +0 0.1491 +0 0.1975 +0 0.0773 +0 0.0695 +0 0.0399 +0 0.0542 +0 0.0924 +0 0.1365 +0 0.0923 +1 0.7928 +0 0.2592 +1 0.7681 +0 0.0938 +0 0.1609 +0 0.1297 +0 0.1024 +0 0.0895 +0 0.0729 +0 0.6958 +0 0.0796 +0 0.1434 +0 0.1048 +0 0.0673 +0 0.3908 +0 0.0590 +0 0.2186 +0 0.0697 +0 0.1392 +0 0.0728 +0 0.0575 +0 0.1261 +1 0.7555 +0 0.1462 +0 0.2259 +0 0.1006 +0 0.2994 +0 0.5183 +0 0.1459 +0 0.3634 +0 0.1662 +0 0.0935 +0 0.0398 +0 0.1177 +0 0.0784 +0 0.0667 +0 0.1058 +0 0.1104 +0 0.1014 +0 0.0835 +0 0.1477 +0 0.0749 +0 0.0530 +1 0.8073 +0 0.0416 +0 0.1965 +0 0.0956 +0 0.0394 +0 0.1192 +0 0.1394 +0 0.6737 +0 0.1122 +1 0.8290 +0 0.1081 +0 0.0451 +0 0.0601 +0 0.1040 +0 0.1134 +0 0.0515 +0 0.3016 +0 0.0766 +0 0.1127 +0 0.2322 +0 0.1042 +0 0.0754 +0 0.1292 +0 0.2032 +0 0.0940 +0 0.1880 +0 0.2103 +0 0.1168 +0 0.1449 +0 0.5841 +0 0.0719 +0 0.0752 +0 0.0897 +0 0.1221 +0 0.1163 +0 0.1125 +0 0.0840 +0 0.3253 +0 0.1241 +0 0.1177 +0 0.1267 +0 0.0502 +0 0.1046 +0 0.0813 +0 0.0709 +0 0.1567 +0 0.0855 +0 0.0723 +0 0.0672 +0 0.1245 +0 0.0728 +0 0.0730 +0 0.1604 +0 0.0754 +1 0.8367 +0 0.0454 +0 0.2779 +0 0.0973 +0 0.3044 +0 0.0499 +0 0.1178 +0 0.1058 +0 0.1172 +0 0.6340 +1 0.8238 +0 0.4984 +0 0.1211 +0 0.2054 +0 0.1042 +0 0.1414 +0 0.3266 +0 0.1484 +0 0.0767 +0 0.0848 +0 0.0702 +0 0.0838 +0 0.0672 +0 0.0672 +0 0.1745 +0 0.1174 +0 0.0713 +0 0.0878 +0 0.1035 +0 0.1355 +0 0.0897 +0 0.3159 +0 0.0751 +0 0.0455 +0 0.0857 +0 0.0681 +0 0.1486 +0 0.2477 +0 0.0496 +0 0.0687 +0 0.0488 +1 0.8033 +0 0.0986 +0 0.0747 +1 0.7872 +0 0.2603 +0 0.1193 +0 0.0593 +0 0.0562 +0 0.1297 +0 0.2141 +0 0.1144 +0 0.5147 +0 0.0625 +0 0.0895 +0 0.0577 +0 0.2046 +0 0.1033 +0 0.2077 +0 0.1911 +1 0.7779 +0 0.0695 +0 0.1694 +0 0.0891 +0 0.1502 +0 0.0841 +0 0.0686 +0 0.0799 +0 0.1281 +0 0.0723 +0 0.1395 +0 0.1957 +0 0.3401 +0 0.1183 +0 0.1809 +0 0.1092 +0 0.0721 +0 0.2522 +0 0.2016 +0 0.0564 +0 0.2164 +0 0.3578 +0 0.2142 +0 0.1582 +0 0.0512 +0 0.0594 +0 0.5281 +0 0.0501 +0 0.0727 +0 0.0387 +0 0.1277 +0 0.1041 +1 0.7571 +0 0.1043 +0 0.1492 +0 0.0771 +0 0.4039 +0 0.2101 +0 0.1012 +0 0.2638 +0 0.0775 +0 0.4112 +0 0.1933 +0 0.1007 +0 0.1172 +0 0.1364 +0 0.1989 +0 0.0632 +0 0.1367 +0 0.4111 +0 0.1275 +0 0.0927 +0 0.1216 +0 0.1197 +0 0.1597 +0 0.1825 +0 0.1268 +0 0.0561 +0 0.0356 +0 0.0767 +0 0.1473 +0 0.1495 +0 0.0727 +0 0.1411 +0 0.1291 +0 0.2857 +0 0.0458 +0 0.1402 +0 0.1227 +0 0.0538 +0 0.0359 +0 0.0385 +0 0.0983 +0 0.3449 +0 0.0846 +0 0.0921 +0 0.2478 +0 0.0922 +0 0.1167 +0 0.1115 +0 0.2409 +0 0.0506 +0 0.0709 +0 0.1042 +0 0.0932 +0 0.0896 +0 0.2737 +0 0.0548 +0 0.0576 +0 0.0986 +0 0.0819 +0 0.2079 +0 0.1193 +0 0.2420 +0 0.0573 +0 0.0586 +0 0.0488 +0 0.0700 +0 0.1213 +0 0.0889 +0 0.0764 +0 0.0583 +0 0.0280 +0 0.0761 +0 0.0597 +0 0.0537 +1 0.7655 +0 0.0733 +1 0.8001 +0 0.1906 +0 0.1131 +0 0.3442 +0 0.1763 +0 0.1728 +0 0.3528 +0 0.1824 +0 0.0587 +0 0.1760 +0 0.0633 +0 0.0885 +0 0.0643 +0 0.4966 +0 0.0945 +0 0.0632 +0 0.0546 +0 0.0700 +0 0.0658 +0 0.4671 +0 0.1252 +0 0.0930 +0 0.0887 +0 0.1599 +0 0.2091 +0 0.2500 +0 0.1280 +0 0.1900 +0 0.0644 +0 0.0849 +0 0.0599 +0 0.1028 +0 0.1076 +0 0.0851 +0 0.1084 +0 0.1108 +0 0.0879 +0 0.1172 +0 0.0599 +0 0.0509 +0 0.1560 +0 0.1932 +0 0.3152 +0 0.0522 +0 0.0718 +0 0.0626 +0 0.1643 +0 0.1595 +0 0.3157 +0 0.0882 +0 0.1634 +0 0.0773 +0 0.1503 +0 0.0671 +0 0.1323 +0 0.1069 +0 0.1361 +0 0.0263 +0 0.0810 +0 0.0499 +0 0.0858 +0 0.0667 +0 0.0543 +0 0.0409 +0 0.0998 +0 0.1247 +0 0.0818 +0 0.2338 +0 0.0759 +0 0.0849 +0 0.1244 +0 0.0429 +0 0.1526 +0 0.0804 +0 0.6559 +0 0.1065 +0 0.3753 +0 0.0898 +0 0.0671 +0 0.0448 +0 0.0722 +0 0.0708 +0 0.5244 +0 0.2167 +0 0.0383 +0 0.1009 +0 0.1303 +0 0.3002 +0 0.1136 +0 0.0558 +0 0.0677 +0 0.0601 +0 0.1989 +0 0.0479 +0 0.2716 +0 0.0634 +0 0.0578 +0 0.0526 +0 0.1887 +0 0.1308 +0 0.0762 +0 0.1929 +0 0.3524 +0 0.0952 +0 0.0520 +0 0.1299 +0 0.0478 +0 0.0902 +0 0.0921 +0 0.0900 +0 0.0765 +0 0.0470 +1 0.7783 +0 0.2102 +0 0.0507 +0 0.3304 +0 0.1943 +0 0.2429 +0 0.1050 +0 0.3899 +0 0.0643 +0 0.1545 +0 0.1556 +0 0.0685 +0 0.1643 +0 0.0770 +0 0.1029 +0 0.0627 +0 0.1391 +0 0.0722 +0 0.0858 +0 0.0686 +0 0.7211 +0 0.3233 +0 0.1460 +0 0.0891 +0 0.1488 +0 0.0659 +0 0.2654 +0 0.1189 +0 0.7176 +0 0.0934 +0 0.1715 +0 0.2198 +0 0.2202 +0 0.0834 +0 0.0705 +0 0.4219 +0 0.0402 +0 0.1470 +0 0.3343 +0 0.1777 +0 0.0719 +0 0.0504 +0 0.0677 +1 0.7635 +0 0.1000 +0 0.0957 +0 0.0497 +0 0.0898 +0 0.1900 +0 0.1914 +0 0.0696 +0 0.0699 +0 0.0579 +0 0.0768 +0 0.0924 +0 0.1347 +0 0.2314 +0 0.0742 +0 0.0942 +0 0.1352 +0 0.0970 +0 0.3825 +0 0.0578 +0 0.3023 +0 0.1747 +0 0.1145 +0 0.1309 +0 0.5417 +0 0.1289 +0 0.0773 +0 0.0701 +0 0.1069 +0 0.5091 +0 0.1171 +0 0.0898 +0 0.1016 +0 0.3689 +0 0.0686 +0 0.0854 +0 0.1465 +0 0.0656 +0 0.1228 +0 0.1546 +0 0.0653 +0 0.0841 +0 0.2125 +0 0.0766 +0 0.6378 +0 0.0892 +0 0.7338 +0 0.1366 +0 0.1470 +0 0.0531 +0 0.1958 +0 0.0882 +0 0.1375 +0 0.0652 +0 0.1404 +0 0.1044 +0 0.0539 +0 0.1017 +0 0.1021 +0 0.1323 +0 0.1490 +0 0.1263 +0 0.0439 +0 0.0550 +0 0.0940 +0 0.0890 +0 0.0893 +0 0.1055 +0 0.1117 +0 0.1100 +0 0.1011 +0 0.1050 +1 0.8719 +0 0.0798 +0 0.6113 +0 0.1255 +0 0.1503 +0 0.1161 +0 0.0403 +0 0.1041 +0 0.1618 +0 0.0983 +1 0.7510 +0 0.0786 +0 0.0886 +0 0.0841 +0 0.0498 +0 0.1791 +0 0.0841 +0 0.1544 +0 0.1058 +0 0.1389 +0 0.0570 +0 0.0452 +0 0.0919 +0 0.3020 +0 0.1261 +0 0.0450 +0 0.2261 +0 0.1135 +0 0.0654 +0 0.1774 +0 0.4144 +0 0.1533 +0 0.1143 +0 0.1133 +0 0.0401 +0 0.0644 +0 0.1029 +0 0.1094 +0 0.1164 +0 0.0951 +0 0.0664 +0 0.0658 +0 0.3032 +0 0.0446 +0 0.0794 +0 0.2106 +0 0.1551 +0 0.1096 +0 0.0595 +0 0.1191 +0 0.0746 +0 0.2405 +0 0.2008 +0 0.0568 +0 0.0403 +0 0.0469 +0 0.1035 +0 0.1594 +0 0.0818 +0 0.1001 +0 0.6363 +0 0.0493 +0 0.1159 +0 0.1452 +0 0.1458 +0 0.0573 +0 0.1416 +0 0.2099 +0 0.1181 +0 0.1868 +0 0.0690 +0 0.2286 +0 0.0448 +0 0.0594 +0 0.0927 +0 0.1392 +0 0.0530 +0 0.2850 +0 0.1191 +0 0.0594 +0 0.0942 +0 0.2618 +0 0.0811 +0 0.0665 +0 0.0774 +0 0.0675 +0 0.1556 +0 0.0610 +0 0.1073 +0 0.1657 +0 0.0729 +0 0.0977 +0 0.1657 +0 0.1196 +0 0.0971 +0 0.2605 +0 0.1348 +0 0.1211 +0 0.0816 +0 0.1283 +0 0.1318 +0 0.1223 +0 0.1851 +0 0.1764 +0 0.1680 +0 0.1633 +0 0.3566 +0 0.0439 +0 0.0647 +0 0.0547 +0 0.1471 +0 0.1207 +0 0.0517 +0 0.3057 +0 0.0444 +0 0.0842 +0 0.0786 +0 0.1010 +0 0.0885 +0 0.1044 +0 0.1352 +0 0.0744 +0 0.0842 +0 0.2835 +0 0.0563 +0 0.0689 +0 0.2021 +0 0.2688 +0 0.1252 +0 0.4020 +0 0.0629 +0 0.1550 +0 0.0979 +0 0.2431 +0 0.1139 +0 0.1188 +0 0.0802 +0 0.1110 +0 0.0627 +0 0.1877 +0 0.4479 +0 0.1332 +0 0.1079 +0 0.0597 +0 0.0525 +0 0.0935 +0 0.1084 +0 0.0646 +0 0.0905 +0 0.0569 +0 0.0936 +0 0.0807 +0 0.1047 +0 0.0673 +0 0.2415 +0 0.3909 +0 0.2174 +0 0.0809 +0 0.0806 +0 0.0358 +0 0.1626 +0 0.1020 +0 0.0350 +0 0.2477 +0 0.1924 +0 0.1213 +0 0.0849 +0 0.1046 +0 0.2584 +0 0.1857 +0 0.1237 +0 0.0684 +0 0.2319 +0 0.0503 +0 0.1090 +0 0.1273 +0 0.0937 +0 0.1258 +0 0.0720 +0 0.5137 +0 0.0641 +0 0.0836 +0 0.0522 +0 0.3037 +0 0.3181 +0 0.0372 +0 0.1192 +0 0.1123 +0 0.0734 +0 0.0908 +0 0.0884 +0 0.1226 +0 0.0599 +1 0.7671 +0 0.1593 +0 0.0724 +0 0.0478 +0 0.1899 +0 0.0679 +0 0.1354 +0 0.0556 +0 0.0703 +0 0.1593 +0 0.0628 +0 0.7180 +0 0.2554 +0 0.2722 +0 0.0863 +0 0.0745 +0 0.1988 +0 0.0832 +0 0.0754 +0 0.1193 +0 0.0360 +0 0.0671 +0 0.1420 +0 0.1981 +0 0.1225 +0 0.1763 +0 0.0595 +0 0.4701 +0 0.1157 +0 0.0407 +0 0.1480 +0 0.0878 +0 0.4389 +0 0.0606 +0 0.0876 +0 0.2127 +0 0.0868 +0 0.1250 +0 0.1725 +0 0.0778 +0 0.0804 +0 0.2764 +0 0.0961 +0 0.0475 +0 0.0919 +0 0.0498 +1 0.8439 +0 0.1597 +0 0.3415 +0 0.1236 +0 0.7070 +0 0.2237 +0 0.2577 +0 0.0676 +0 0.0715 +0 0.1812 +0 0.1272 +0 0.1406 +0 0.3042 +0 0.0986 +0 0.1073 +0 0.1195 +0 0.1227 +0 0.1074 +0 0.0680 +0 0.4364 +0 0.2007 +0 0.3376 +0 0.1787 +0 0.0789 +0 0.4175 +0 0.2815 +0 0.0719 +0 0.0940 +0 0.0746 +0 0.0309 +0 0.1011 +0 0.0958 +0 0.1648 +0 0.0631 +0 0.1713 +0 0.2935 +0 0.0654 +0 0.0622 +0 0.0925 +0 0.2071 +0 0.0665 +0 0.0735 +0 0.0489 +0 0.0329 +0 0.7491 +0 0.0487 +0 0.0687 +0 0.3410 +0 0.0740 +0 0.1009 +0 0.2068 +0 0.2107 +0 0.0820 +0 0.1152 +0 0.0895 +0 0.1236 +0 0.0899 +0 0.2852 +0 0.1493 +0 0.0801 +0 0.0888 +0 0.0638 +0 0.0624 +0 0.0346 +0 0.0486 +0 0.0551 +0 0.0589 +0 0.0276 +0 0.0921 +0 0.5787 +0 0.0529 +0 0.1248 +0 0.2283 +0 0.0930 +0 0.2077 +0 0.0675 +0 0.4129 +0 0.0554 +0 0.0477 +0 0.0370 +0 0.3295 +0 0.3171 +0 0.0484 +0 0.1090 +0 0.0846 +0 0.2667 +0 0.1245 +0 0.0315 +0 0.1174 +0 0.2215 +0 0.0533 +0 0.0701 +0 0.0668 +0 0.1029 +0 0.1382 +0 0.2125 +0 0.0550 +0 0.0463 +0 0.0751 +0 0.1003 +0 0.0663 +0 0.1124 +0 0.1745 +0 0.1114 +0 0.0689 +0 0.0313 +0 0.1308 +0 0.2380 +0 0.1624 +0 0.1117 +0 0.0815 +0 0.1393 +0 0.0537 +0 0.2117 +0 0.1646 +0 0.0885 +0 0.1956 +0 0.3519 +0 0.2402 +0 0.1075 +0 0.0947 +0 0.1343 +0 0.3006 +0 0.2061 +0 0.0435 +1 0.8680 +0 0.0907 +0 0.0706 +0 0.3847 +0 0.0351 +0 0.1608 +0 0.1009 +0 0.5306 +0 0.1768 +0 0.0901 +0 0.0679 +0 0.0955 +0 0.0731 +0 0.0785 +0 0.0912 +0 0.1994 +0 0.1048 +0 0.1473 +0 0.1193 +0 0.2293 +0 0.1320 +0 0.0299 +0 0.0982 +0 0.1025 +0 0.0893 +0 0.2788 +0 0.1535 +0 0.1703 +0 0.0543 +0 0.1285 +0 0.0869 +0 0.0891 +1 0.7945 +0 0.0605 +0 0.0349 +0 0.1294 +0 0.0613 +0 0.1401 +0 0.6589 +0 0.3926 +0 0.0830 +0 0.0872 +0 0.0786 +0 0.0608 +0 0.2075 +0 0.1436 +0 0.6361 +0 0.3066 +0 0.0556 +0 0.0553 +0 0.0515 +0 0.0799 +0 0.0709 +0 0.0993 +0 0.0703 +0 0.0898 +0 0.0753 +0 0.3626 +0 0.1660 +0 0.0780 +1 0.7514 +0 0.1050 +0 0.2317 +0 0.1319 +0 0.1017 +0 0.1030 +0 0.2119 +0 0.0978 +0 0.0924 +0 0.0794 +0 0.1475 +0 0.0843 +0 0.0945 +0 0.1005 +0 0.1641 +0 0.4198 +0 0.0634 +0 0.1422 +0 0.1099 +0 0.0686 +0 0.4011 +0 0.4197 +0 0.2093 +0 0.0448 +0 0.0783 +0 0.0503 +0 0.1321 +0 0.0530 +0 0.0645 +0 0.0734 +0 0.0875 +0 0.1269 +0 0.0679 +0 0.0701 +0 0.0765 +0 0.0699 +0 0.2271 +0 0.0582 +0 0.0557 +0 0.1735 +0 0.0792 +0 0.0619 +0 0.1071 +0 0.0499 +0 0.0446 +0 0.1801 +0 0.0774 +0 0.1512 +0 0.1380 +0 0.0643 +0 0.1673 +0 0.1933 +0 0.1349 +0 0.1172 +0 0.1962 +0 0.0917 +0 0.0609 +0 0.0869 +0 0.1612 +0 0.1763 +0 0.0865 +0 0.0630 +0 0.1092 +0 0.0978 +0 0.1118 +0 0.1115 +0 0.2068 +0 0.1736 +0 0.2634 +0 0.1301 +0 0.1083 +0 0.0564 +0 0.0920 +0 0.1231 +0 0.1024 +0 0.2099 +0 0.1168 +0 0.0884 +0 0.1680 +0 0.1066 +0 0.0938 +0 0.1099 +0 0.2105 +0 0.1229 +0 0.0905 +0 0.0960 +0 0.1643 +0 0.1581 +0 0.0344 +0 0.0589 +0 0.0759 +0 0.5453 +0 0.0623 +0 0.0794 +0 0.0643 +0 0.0815 +0 0.0503 +0 0.1133 +0 0.0631 +0 0.0617 +0 0.0934 +0 0.1464 +0 0.0603 +0 0.0738 +0 0.1220 +0 0.0943 +0 0.1504 +0 0.0669 +0 0.1107 +0 0.1880 +0 0.0968 +0 0.0680 +0 0.1457 +0 0.1379 +0 0.0821 +0 0.0849 +0 0.0567 +0 0.0734 +0 0.0764 +0 0.0798 +0 0.1182 +0 0.0401 +0 0.0670 +0 0.0559 +0 0.2292 +0 0.1534 +0 0.3162 +0 0.0586 +0 0.2117 +0 0.1494 +0 0.2861 +0 0.0423 +0 0.0531 +0 0.0699 +0 0.2969 +0 0.1309 +0 0.0548 +0 0.0701 +0 0.2493 +0 0.2417 +0 0.0910 +1 0.8321 +1 0.8341 +0 0.0746 +1 0.7838 +0 0.1140 +0 0.1079 +0 0.0692 +0 0.0792 +0 0.0816 +0 0.0776 +0 0.2070 +0 0.1020 +0 0.0972 +0 0.0960 +0 0.2343 +0 0.0795 +0 0.0834 +0 0.0860 +0 0.0377 +0 0.1065 +0 0.1888 +0 0.1457 +0 0.0969 +0 0.2499 +0 0.0740 +0 0.0864 +0 0.1874 +0 0.1178 +0 0.0871 +0 0.0720 +0 0.2002 +0 0.1758 +0 0.1264 +0 0.0620 +0 0.2366 +1 0.8840 +0 0.0626 +0 0.1081 +0 0.1585 +0 0.1090 +0 0.1613 +0 0.0417 +0 0.0425 +0 0.1146 +0 0.0460 +0 0.1694 +0 0.0992 +0 0.1214 +0 0.1334 +0 0.1182 +0 0.0521 +0 0.0961 +0 0.0669 +0 0.4167 +0 0.0918 +0 0.0840 +0 0.3236 +0 0.0867 +0 0.1197 +0 0.1704 +0 0.4843 +0 0.0758 +0 0.0513 +0 0.1192 +0 0.1216 +0 0.0890 +0 0.1871 +0 0.1628 +0 0.2545 +0 0.3529 +0 0.0584 +0 0.0962 +0 0.0823 +0 0.2676 +0 0.1153 +0 0.0834 +0 0.4420 +0 0.0583 +0 0.1804 +0 0.0466 +0 0.0679 +0 0.1077 +0 0.2181 +0 0.1632 +0 0.1416 +0 0.1319 +0 0.0409 +0 0.0991 +0 0.0640 +0 0.1166 +0 0.1002 +0 0.0867 +0 0.0807 +0 0.2000 +0 0.1617 +0 0.1296 +0 0.2829 +0 0.3130 +0 0.0413 +1 0.8919 +0 0.1216 +0 0.1680 +0 0.0610 +0 0.0558 +0 0.0720 +0 0.0666 +0 0.1373 +0 0.1371 +0 0.0919 +0 0.2997 +0 0.1554 +0 0.0635 +0 0.2758 +0 0.1753 +0 0.1123 +0 0.1135 +0 0.0878 +0 0.1541 +0 0.1026 +0 0.2473 +0 0.2248 +0 0.3949 +0 0.0443 +0 0.0635 +0 0.1657 +0 0.1247 +0 0.0619 +0 0.0560 +0 0.1934 +0 0.0538 +0 0.0502 +0 0.1349 +0 0.0889 +0 0.0410 +0 0.0441 +0 0.0527 +0 0.0607 +0 0.1306 +0 0.1043 +0 0.0462 +0 0.0361 +0 0.1086 +0 0.1133 +0 0.0754 +0 0.0471 +0 0.0734 +0 0.2152 +0 0.1201 +0 0.3650 +0 0.0799 +0 0.0850 +0 0.1646 +0 0.0687 +0 0.1713 +0 0.1036 +0 0.2830 +0 0.1412 +0 0.0560 +0 0.0870 +0 0.3418 +0 0.3256 +0 0.1030 +0 0.2798 +0 0.2227 +0 0.1051 +0 0.0665 +0 0.0843 +0 0.0964 +0 0.0469 +0 0.0904 +0 0.0706 +0 0.0400 +0 0.1876 +0 0.0360 +0 0.2399 +0 0.1200 +1 0.8167 +0 0.1031 +0 0.1534 +0 0.0947 +0 0.1736 +0 0.1504 +0 0.0968 +0 0.1268 +0 0.1678 +0 0.0543 +0 0.0940 +0 0.1124 +0 0.1084 +0 0.1752 +0 0.2107 +0 0.0392 +0 0.0743 +0 0.0815 +0 0.1125 +0 0.0424 +0 0.1668 +0 0.0613 +0 0.1294 +0 0.3324 +0 0.1120 +0 0.1515 +0 0.1106 +0 0.1808 +0 0.0912 +0 0.0467 +0 0.0909 +0 0.0592 +0 0.0774 +0 0.0782 +0 0.0664 +0 0.2280 +0 0.1030 +0 0.0946 +0 0.1322 +0 0.3355 +0 0.2147 +0 0.0411 +0 0.0984 +0 0.1041 +0 0.0448 +0 0.1194 +0 0.2168 +0 0.2348 +0 0.0398 +0 0.0477 +0 0.0731 +0 0.1069 +0 0.1119 +0 0.0539 +0 0.0825 +0 0.0935 +0 0.1224 +0 0.0541 +0 0.1219 +0 0.1633 +0 0.1642 +0 0.1730 +0 0.0809 +0 0.1034 +0 0.1238 +0 0.0557 +0 0.0587 +0 0.3402 +0 0.1287 +0 0.4738 +0 0.1250 +0 0.0421 +0 0.3289 +1 0.7834 +0 0.0318 +0 0.1161 +0 0.0844 +0 0.0904 +0 0.2471 +0 0.0827 +0 0.2522 +0 0.1028 +0 0.0712 +0 0.3350 +0 0.1294 +0 0.0834 +0 0.0578 +0 0.1133 +0 0.0832 +0 0.0841 +0 0.1279 +0 0.0907 +0 0.2870 +0 0.1686 +0 0.0750 +0 0.0913 +0 0.1885 +0 0.1633 +0 0.2523 +0 0.0921 +0 0.1327 +0 0.0627 +0 0.3529 +0 0.0838 +0 0.0592 +0 0.1962 +0 0.1674 +0 0.2812 +0 0.0510 +0 0.0957 +0 0.2725 +0 0.0491 +0 0.1137 +0 0.2344 +0 0.0739 +0 0.1629 +0 0.1184 +0 0.1159 +0 0.2163 +0 0.2129 +0 0.0827 +0 0.2451 +0 0.1617 +0 0.1657 +0 0.2178 +0 0.0470 +0 0.1522 +0 0.1014 +0 0.1361 +0 0.0981 +0 0.1716 +0 0.1715 +0 0.0373 +0 0.0652 +0 0.1383 +0 0.0519 +0 0.1105 +0 0.1411 +0 0.0337 +0 0.1493 +0 0.0470 +0 0.0946 +0 0.0740 +0 0.2121 +0 0.2840 +0 0.0764 +0 0.1046 +0 0.2415 +0 0.1252 +0 0.2767 +0 0.0442 +0 0.1168 +0 0.4148 +0 0.1705 +0 0.0371 +0 0.2757 +0 0.0834 +0 0.0623 +0 0.1666 +0 0.1634 +0 0.0631 +0 0.0577 +0 0.0472 +0 0.1320 +0 0.0912 +0 0.1187 +0 0.0619 +0 0.0664 +0 0.0548 +0 0.0531 +0 0.0953 +0 0.1278 +0 0.0838 +0 0.1321 +0 0.1692 +0 0.0793 +0 0.0478 +0 0.0716 +0 0.2980 +0 0.0579 +0 0.0465 +0 0.1432 +0 0.0744 +0 0.0965 +0 0.0972 +0 0.0480 +0 0.6702 +0 0.0587 +0 0.0777 +0 0.0969 +0 0.2109 +0 0.1167 +0 0.0840 +0 0.1070 +0 0.2696 +0 0.3033 +0 0.0789 +0 0.1324 +0 0.5957 +0 0.1782 +0 0.0646 +0 0.2917 +0 0.0910 +0 0.0805 +0 0.1260 +0 0.3013 +0 0.1942 +0 0.0310 +0 0.0715 +0 0.1182 +0 0.3321 +0 0.0471 +0 0.2299 +0 0.0664 +0 0.0553 +0 0.0887 +0 0.1120 +0 0.0934 +0 0.0410 +0 0.0512 +0 0.0469 +0 0.0658 +0 0.0582 +0 0.0882 +0 0.0379 +0 0.1155 +0 0.0376 +0 0.3022 +0 0.0917 +0 0.1977 +0 0.2176 +0 0.1499 +0 0.1915 +0 0.1357 +0 0.0626 +0 0.0841 +0 0.1250 +0 0.0905 +0 0.0630 +0 0.1943 +0 0.1468 +0 0.0888 +0 0.2252 +0 0.0808 +0 0.0609 +0 0.0804 +0 0.2602 +0 0.0863 +0 0.0693 +0 0.1507 +0 0.0764 +0 0.0596 +0 0.1107 +0 0.2158 +0 0.0895 +0 0.1672 +0 0.0501 +0 0.1551 +0 0.0821 +0 0.1221 +0 0.1765 +0 0.1166 +0 0.1158 +0 0.1019 +0 0.3361 +0 0.0638 +1 0.8537 +0 0.0309 +1 0.7916 +0 0.0939 +0 0.3362 +0 0.0681 +0 0.1141 +0 0.1933 +0 0.0512 +0 0.2182 +0 0.1768 +0 0.0659 +0 0.1086 +0 0.1628 +0 0.1548 +0 0.3192 +0 0.0908 +0 0.0995 +0 0.1245 +0 0.1458 +0 0.1021 +0 0.0684 +0 0.1652 +0 0.2098 +0 0.2132 +0 0.1223 +0 0.0505 +0 0.0808 +0 0.0697 +0 0.1381 +0 0.2021 +0 0.3055 +0 0.2606 +0 0.0615 +0 0.0541 +0 0.0555 +0 0.1266 +0 0.1087 +0 0.1326 +0 0.1349 +0 0.1145 +0 0.1362 +0 0.3062 +0 0.1599 +0 0.1071 +0 0.1244 +0 0.1705 +0 0.0700 +0 0.7062 +0 0.0742 +0 0.1525 +0 0.0916 +0 0.1897 +0 0.1920 +0 0.0641 +0 0.2013 +0 0.0755 +0 0.1968 +0 0.0463 +0 0.1370 +0 0.0888 +0 0.1321 +0 0.1724 +0 0.0457 +0 0.0410 +0 0.2059 +0 0.0704 +0 0.0912 +0 0.1794 +0 0.0408 +0 0.1253 +0 0.0482 +0 0.1046 +0 0.0899 +0 0.3356 +0 0.1723 +0 0.0917 +0 0.2066 +0 0.1240 +0 0.4442 +0 0.0641 +0 0.1300 +0 0.1550 +0 0.1709 +0 0.0692 +0 0.1007 +0 0.0653 +0 0.1432 +0 0.0403 +0 0.1311 +0 0.0399 +0 0.2167 +0 0.0396 +0 0.1377 +0 0.1898 +0 0.0798 +0 0.1659 +0 0.0417 +0 0.1637 +0 0.0778 +0 0.6255 +0 0.1106 +0 0.0712 +0 0.4970 +0 0.1625 +0 0.0714 +0 0.2578 +0 0.0872 +0 0.4125 +0 0.0820 +0 0.1114 +0 0.1025 +0 0.0912 +0 0.1012 +0 0.0746 +0 0.1655 +0 0.1914 +0 0.1985 +0 0.1535 +0 0.4374 +0 0.1511 +0 0.0766 +0 0.0491 +0 0.2175 +0 0.0733 +0 0.2532 +0 0.4280 +0 0.0367 +0 0.1432 +0 0.0811 +0 0.1965 +0 0.1393 +0 0.0463 +0 0.2717 +0 0.3344 +0 0.0931 +0 0.1344 +0 0.0377 +0 0.0626 +0 0.1504 +0 0.6822 +0 0.0587 +0 0.0575 +0 0.0690 +0 0.2022 +0 0.0979 +0 0.1209 +0 0.0383 +0 0.0498 +0 0.6702 +0 0.1190 +0 0.0910 +0 0.1329 +0 0.0687 +0 0.3598 +0 0.1043 +0 0.0417 +0 0.1221 +0 0.0911 +0 0.0942 +0 0.0416 +0 0.0926 +0 0.1471 +0 0.0511 +0 0.1441 +0 0.1513 +0 0.1177 +0 0.1369 +0 0.1495 +0 0.1389 +0 0.0629 +0 0.0711 +0 0.0510 +0 0.0580 +0 0.0757 +0 0.0753 +0 0.1198 +0 0.1532 +0 0.2712 +0 0.1005 +0 0.1105 +0 0.1872 +0 0.0715 +0 0.0497 +0 0.0501 +1 0.7826 +0 0.1150 +0 0.1411 +0 0.0581 +0 0.1044 +0 0.1669 +0 0.0344 +0 0.1398 +0 0.3787 +0 0.1358 +0 0.1265 +0 0.0651 +0 0.0901 +0 0.4573 +0 0.1110 +0 0.7373 +0 0.0813 +0 0.0789 +0 0.0973 +0 0.1298 +0 0.1865 +0 0.0828 +0 0.1076 +0 0.0374 +0 0.0822 +0 0.0766 +0 0.0319 +0 0.6356 +0 0.4041 +0 0.2787 +0 0.0790 +0 0.0944 +0 0.1601 +0 0.2888 +0 0.0831 +0 0.0859 +0 0.0958 +0 0.0373 +0 0.1644 +0 0.0479 +0 0.0640 +0 0.0545 +0 0.3840 +0 0.0901 +0 0.0789 +0 0.1909 +0 0.1619 +0 0.1508 +0 0.0555 +0 0.0861 +0 0.0850 +0 0.1170 +0 0.3898 +0 0.1673 +0 0.1178 +0 0.0706 +0 0.0455 +0 0.1769 +0 0.2485 +0 0.1381 +0 0.0726 +0 0.1591 +0 0.1799 +0 0.0707 +0 0.0732 +0 0.1211 +0 0.0517 +0 0.1207 +0 0.0498 +0 0.1631 +0 0.1555 +0 0.2062 +0 0.1986 +0 0.0673 +0 0.0955 +0 0.0570 +0 0.0412 +0 0.1719 +0 0.1995 +0 0.1900 +0 0.0563 +0 0.2308 +0 0.1563 +0 0.0852 +0 0.1171 +0 0.1778 +0 0.1389 +0 0.1303 +0 0.0657 +0 0.1055 +0 0.0526 +0 0.1434 +0 0.1754 +0 0.0912 +0 0.3178 +0 0.2308 +0 0.1631 +0 0.0847 +1 0.8981 +0 0.2291 +0 0.2487 +0 0.1512 +0 0.1565 +0 0.2756 +0 0.2199 +0 0.0391 +0 0.1018 +0 0.0613 +0 0.0886 +0 0.0990 +0 0.0402 +0 0.1409 +1 0.8261 +0 0.1545 +1 0.8159 +0 0.0970 +0 0.2025 +0 0.0847 +0 0.0396 +0 0.0449 +0 0.1395 +0 0.6919 +0 0.2656 +0 0.1955 +0 0.0845 +0 0.1032 +0 0.1268 +0 0.0863 +0 0.2971 +0 0.1402 +0 0.0510 +0 0.1682 +0 0.3838 +0 0.0617 +0 0.0529 +0 0.1065 +0 0.0850 +0 0.7143 +0 0.0675 +0 0.0820 +0 0.0532 +0 0.0822 +0 0.1179 +0 0.2636 +0 0.4391 +0 0.0690 +0 0.0725 +0 0.0715 +0 0.0439 +0 0.0607 +1 0.7815 +0 0.2898 +0 0.0860 +0 0.1744 +0 0.0799 +0 0.1103 +0 0.2278 +0 0.0638 +0 0.1645 +0 0.4570 +0 0.0597 +0 0.1908 +0 0.0870 +0 0.2186 +0 0.1664 +0 0.1031 +0 0.2038 +0 0.0556 +0 0.1218 +0 0.0805 +0 0.2271 +0 0.0724 +0 0.1660 +0 0.1381 +0 0.5406 +0 0.0924 +0 0.0782 +0 0.0642 +0 0.1353 +0 0.1068 +0 0.1292 +0 0.0749 +0 0.0743 +0 0.0363 +0 0.0875 +0 0.6108 +0 0.1715 +0 0.0826 +0 0.1283 +0 0.0916 +0 0.1382 +0 0.4364 +0 0.1146 +0 0.0818 +0 0.0899 +0 0.1099 +0 0.0609 +0 0.0465 +0 0.0681 +0 0.1840 +0 0.3116 +0 0.0419 +0 0.0499 +0 0.0754 +0 0.0773 +0 0.0488 +0 0.1639 +0 0.1289 +0 0.0665 +0 0.0604 +0 0.0885 +0 0.3277 +0 0.1132 +0 0.1784 +0 0.1070 +0 0.0656 +0 0.1863 +0 0.0488 +0 0.0481 +0 0.0946 +0 0.1130 +0 0.2165 +0 0.0676 +0 0.0413 +0 0.3678 +0 0.2492 +0 0.2002 +0 0.0703 +0 0.3942 +0 0.1275 +0 0.0739 +0 0.0644 +0 0.1785 +0 0.2681 +0 0.0466 +0 0.0819 +0 0.2418 +0 0.4488 +0 0.6854 +0 0.1579 +0 0.1802 +0 0.0557 +0 0.0537 +0 0.2020 +0 0.3644 +0 0.0930 +0 0.1204 +0 0.0730 +0 0.0372 +0 0.2477 +0 0.0691 +0 0.1274 +0 0.1712 +0 0.1113 +0 0.0847 +0 0.1239 +0 0.1646 +0 0.0861 +0 0.1425 +0 0.0795 +0 0.0858 +0 0.0621 +0 0.0844 +0 0.2167 +0 0.0578 +1 0.7926 +0 0.0962 +0 0.1824 +0 0.1138 +0 0.0845 +0 0.0690 +0 0.1510 +0 0.0834 +0 0.1467 +0 0.0835 +0 0.0827 +0 0.1112 +0 0.0459 +0 0.0814 +0 0.0937 +0 0.1208 +0 0.1596 +0 0.3924 +0 0.1642 +0 0.0786 +0 0.0623 +0 0.0493 +1 0.8441 +0 0.2528 +0 0.1650 +0 0.2708 +0 0.2229 +0 0.1335 +0 0.0842 +0 0.0662 +0 0.3228 +0 0.1423 +0 0.1471 +0 0.1405 +0 0.2507 +0 0.0607 +0 0.0589 +0 0.1626 +0 0.1078 +0 0.0523 +0 0.1194 +0 0.1153 +0 0.0497 +0 0.0794 +0 0.0756 +0 0.0757 +0 0.0614 +0 0.0560 +0 0.0552 +0 0.1841 +0 0.0984 +0 0.1578 +0 0.2410 +0 0.0521 +0 0.3832 +0 0.1816 +0 0.0935 +0 0.0875 +0 0.1705 +0 0.1547 +0 0.1449 +0 0.1703 +0 0.1344 +0 0.3580 +0 0.0429 +0 0.1009 +0 0.0892 +0 0.0890 +0 0.4272 +0 0.2390 +0 0.0778 +0 0.1172 +0 0.2165 +0 0.1192 +0 0.0587 +0 0.4136 +0 0.0659 +0 0.5643 +0 0.0923 +0 0.0510 +0 0.2145 +0 0.4143 +0 0.0379 +0 0.0511 +0 0.2168 +0 0.0722 +0 0.1985 +0 0.0931 +0 0.2596 +0 0.1761 +0 0.0689 +0 0.0633 +0 0.7139 +0 0.0815 +0 0.2471 +0 0.0820 +0 0.0783 +0 0.0472 +0 0.0674 +0 0.2774 +0 0.0492 +0 0.0678 +0 0.0994 +0 0.1743 +0 0.0844 +0 0.1022 +0 0.1296 +0 0.2150 +0 0.0826 +0 0.0796 +0 0.0945 +0 0.0437 +0 0.0653 +0 0.0506 +0 0.0429 +0 0.0618 +0 0.1349 +0 0.1358 +0 0.7092 +0 0.0407 +0 0.0836 +0 0.1628 +0 0.0600 +0 0.0776 +0 0.7261 +0 0.2799 +0 0.1375 +0 0.0958 +0 0.0448 +0 0.1013 +0 0.0972 +0 0.5174 +0 0.0458 +0 0.0880 +0 0.0671 +0 0.0919 +0 0.0828 +0 0.0532 +0 0.2508 +0 0.0469 +0 0.2470 +0 0.2526 +0 0.0897 +0 0.0920 +0 0.0795 +0 0.0746 +0 0.1042 +0 0.2108 +0 0.2069 +0 0.1787 +0 0.0433 +0 0.0769 +0 0.3205 +0 0.3763 +0 0.0701 +0 0.2070 +0 0.0933 +0 0.0902 +0 0.1224 +0 0.5579 +0 0.1484 +0 0.0843 +0 0.0649 +0 0.1366 +0 0.1036 +0 0.0644 +0 0.0508 +0 0.0977 +0 0.0726 +0 0.1211 +0 0.1903 +0 0.0505 +1 0.7508 +0 0.0311 +0 0.1370 +0 0.1510 +1 0.8637 +0 0.5094 +0 0.0950 +0 0.0622 +0 0.0955 +0 0.0460 +0 0.0549 +0 0.0807 +0 0.0833 +0 0.0869 +0 0.0877 +0 0.0707 +0 0.0663 +0 0.2092 +0 0.4675 +0 0.1280 +0 0.0747 +0 0.1896 +0 0.1339 +0 0.0717 +0 0.0358 +0 0.2051 +0 0.0783 +0 0.0957 +0 0.0993 +0 0.1014 +0 0.0460 +0 0.1132 +0 0.0881 +0 0.0829 +0 0.1273 +0 0.1839 +0 0.1035 +0 0.0619 +0 0.1164 +0 0.0956 +0 0.5558 +0 0.0796 +0 0.1676 +0 0.1299 +0 0.0925 +0 0.0967 +0 0.1285 +0 0.1055 +0 0.1576 +0 0.0482 +0 0.2221 +0 0.0531 +0 0.0736 +0 0.0809 +0 0.0721 +0 0.1295 +0 0.1662 +0 0.0539 +0 0.1592 +0 0.1928 +0 0.0855 +0 0.2286 +0 0.1376 +0 0.1085 +0 0.0526 +0 0.3402 +0 0.2226 +0 0.0897 +0 0.1372 +0 0.1333 +0 0.0628 +0 0.1012 +0 0.1445 +0 0.0274 +0 0.0607 +0 0.0840 +0 0.1858 +0 0.3047 +0 0.2172 +0 0.1679 +0 0.0785 +0 0.0417 +0 0.0711 +0 0.0713 +0 0.1862 +0 0.0456 +0 0.5941 +0 0.0796 +0 0.1029 +0 0.0386 +0 0.5736 +0 0.1089 +0 0.1784 +0 0.1737 +0 0.1004 +0 0.1079 +0 0.1521 +0 0.0796 +0 0.0901 +0 0.1495 +0 0.1587 +0 0.0840 +0 0.0699 +0 0.0311 +0 0.0591 +0 0.1103 +0 0.1210 +0 0.0615 +0 0.1422 +0 0.0791 +0 0.1244 +0 0.1021 +0 0.1793 +0 0.0791 +0 0.2061 +0 0.2274 +0 0.1126 +0 0.1629 +0 0.0425 +0 0.2544 +0 0.1510 +0 0.0819 +0 0.0883 +0 0.0618 +0 0.1353 +0 0.1127 +0 0.0769 +0 0.1223 +0 0.2446 +1 0.8470 +1 0.7532 +0 0.2219 +0 0.0874 +0 0.1254 +0 0.0790 +0 0.0867 +0 0.2062 +0 0.7060 +0 0.0495 +0 0.0965 +0 0.0807 +0 0.5019 +0 0.0887 +0 0.2501 +0 0.0602 +0 0.0752 +0 0.0487 +0 0.1041 +0 0.0338 +0 0.0759 +0 0.0765 +0 0.2133 +0 0.3026 +0 0.0482 +0 0.1540 +0 0.0810 +0 0.1037 +0 0.0869 +0 0.1625 +0 0.0627 +0 0.0554 +0 0.0396 +0 0.1174 +0 0.1085 +0 0.0444 +0 0.0476 +0 0.1164 +0 0.0784 +0 0.0827 +0 0.0707 +0 0.0410 +0 0.0637 +0 0.0470 +0 0.0385 +0 0.0500 +0 0.1155 +0 0.4378 +0 0.2202 +0 0.2128 +0 0.1181 +0 0.1335 +0 0.0391 +0 0.1058 +0 0.2026 +0 0.0717 +0 0.0980 +0 0.0628 +0 0.1131 +0 0.1860 +0 0.0739 +0 0.0755 +0 0.4247 +0 0.1161 +0 0.0853 +0 0.1262 +0 0.0444 +0 0.1743 +0 0.1018 +0 0.1206 +0 0.1370 +0 0.0650 +0 0.0667 +0 0.0397 +0 0.0565 +0 0.1754 +0 0.0848 +0 0.0634 +0 0.1910 +0 0.0553 +0 0.0540 +0 0.1508 +0 0.1027 +0 0.1799 +1 0.7700 +0 0.0328 +1 0.8730 +0 0.2369 +0 0.1880 +0 0.1060 +0 0.0801 +0 0.1432 +0 0.0574 +0 0.1114 +0 0.3847 +0 0.0733 +0 0.1224 +0 0.1252 +0 0.1735 +0 0.0998 +0 0.0908 +1 0.8677 +0 0.0748 +0 0.0481 +0 0.0848 +0 0.2345 +0 0.1037 +0 0.1352 +0 0.1825 +0 0.0600 +0 0.0904 +0 0.2635 +0 0.1036 +0 0.0420 +0 0.0553 +0 0.0439 +0 0.1794 +0 0.1882 +0 0.1476 +0 0.0491 +0 0.0383 +0 0.1252 +0 0.0599 +0 0.0849 +0 0.0945 +0 0.1397 +0 0.1021 +0 0.0779 +0 0.0982 +0 0.0651 +0 0.2168 +0 0.0757 +0 0.1411 +0 0.4321 +0 0.2202 +0 0.0971 +0 0.1591 +0 0.0677 +0 0.2666 +0 0.0975 +0 0.1196 +0 0.1504 +0 0.1393 +0 0.1637 +0 0.2297 +0 0.0960 +0 0.0527 +0 0.1947 +0 0.1138 +0 0.4344 +0 0.1139 +0 0.1446 +0 0.1542 +0 0.1910 +0 0.1108 +0 0.1264 +0 0.1364 +0 0.2521 +0 0.1405 +0 0.0599 +0 0.1070 +0 0.0900 +0 0.0832 +0 0.1815 +0 0.1617 +0 0.1087 +0 0.0453 +0 0.1729 +0 0.0467 +0 0.0896 +0 0.1284 +0 0.2052 +0 0.0758 +0 0.1055 +0 0.0765 +0 0.1161 +0 0.2221 +0 0.2926 +1 0.7929 +0 0.1218 +0 0.0389 +0 0.1136 +0 0.1489 +0 0.1126 +0 0.1615 +0 0.1601 +0 0.0945 +0 0.0833 +0 0.1018 +0 0.1754 +0 0.0371 +0 0.4172 +0 0.1698 +0 0.2237 +0 0.4210 +0 0.1194 +0 0.0806 +0 0.0524 +0 0.1546 +0 0.0777 +0 0.0740 +0 0.1946 +0 0.0690 +1 0.7970 +0 0.1610 +0 0.0689 +0 0.2855 +0 0.0839 +0 0.1694 +0 0.0519 +0 0.2597 +0 0.1754 +0 0.1504 +0 0.0785 +0 0.1113 +0 0.2852 +0 0.1664 +0 0.3267 +0 0.0534 +0 0.1900 +0 0.1820 +0 0.5893 +0 0.0885 +0 0.0564 +0 0.1184 +0 0.1191 +0 0.2684 +0 0.1460 +0 0.6152 +0 0.1137 +0 0.1148 +0 0.1001 +1 0.7971 +0 0.1537 +0 0.0620 +0 0.2176 +0 0.0628 +0 0.6161 +0 0.1360 +0 0.1035 +0 0.0927 +0 0.4603 +0 0.2870 +0 0.1249 +0 0.1091 +0 0.0383 +0 0.1460 +0 0.2067 +0 0.0493 +1 0.8431 +0 0.0808 +0 0.0462 +0 0.0677 +0 0.0767 +0 0.1314 +0 0.0525 +0 0.4217 +0 0.3927 +0 0.0743 +0 0.0848 +0 0.0883 +0 0.0894 +0 0.0681 +0 0.0589 +0 0.0647 +0 0.1087 +0 0.0729 +0 0.0504 +0 0.1142 +0 0.6110 +0 0.0753 +0 0.1208 +0 0.6367 +0 0.6981 +0 0.0878 +0 0.0902 +0 0.1453 +0 0.0564 +0 0.1940 +0 0.0764 +0 0.0914 +0 0.0976 +0 0.0863 +0 0.3663 +0 0.0838 +0 0.0496 +0 0.2285 +0 0.1399 +0 0.3628 +0 0.0654 +0 0.1869 +0 0.2141 +0 0.0759 +0 0.0438 +1 0.7776 +0 0.0905 +0 0.1513 +0 0.0758 +0 0.0653 +0 0.1075 +0 0.1423 +0 0.0821 +0 0.4742 +0 0.0916 +0 0.1030 +0 0.1074 +0 0.1234 +0 0.1117 +0 0.2813 +0 0.0565 +0 0.0942 +0 0.6922 +0 0.1522 +0 0.0656 +0 0.0858 +0 0.0427 +0 0.1109 +0 0.0525 +0 0.1826 +0 0.2833 +0 0.1413 +0 0.1125 +0 0.0973 +0 0.0912 +0 0.0507 +0 0.0562 +0 0.1087 +0 0.1126 +0 0.0690 +0 0.1248 +0 0.1585 +0 0.1029 +0 0.0907 +0 0.1505 +0 0.0920 +1 0.8274 +0 0.0877 +0 0.0613 +0 0.1411 +0 0.1116 +0 0.0732 +0 0.0360 +0 0.0507 +0 0.0941 +0 0.2799 +0 0.1516 +0 0.0839 +0 0.2178 +0 0.1383 +0 0.1440 +0 0.0635 +0 0.0451 +0 0.1207 +0 0.2030 +0 0.1900 +0 0.1007 +0 0.4143 +0 0.0537 +0 0.1640 +0 0.1016 +0 0.1570 +0 0.0863 +0 0.1240 +0 0.1721 +0 0.0758 +0 0.1039 +0 0.0857 +0 0.1096 +0 0.1546 +0 0.0948 +0 0.2468 +0 0.1519 +0 0.0985 +0 0.0995 +0 0.0457 +0 0.0851 +0 0.0611 +0 0.0416 +0 0.1142 +0 0.0756 +0 0.0702 +0 0.0978 +0 0.1005 +0 0.2258 +0 0.3107 +0 0.0753 +0 0.2261 +0 0.1111 +0 0.1394 +0 0.2006 +0 0.0698 +0 0.0495 +0 0.0624 +0 0.0412 +0 0.2872 +0 0.0966 +0 0.0518 +0 0.0749 +0 0.1688 +0 0.0552 +0 0.0580 +0 0.0626 +0 0.5423 +0 0.2164 +0 0.1394 +0 0.0571 +0 0.1108 +0 0.1147 +0 0.1204 +1 0.7597 +0 0.1382 +0 0.0964 +0 0.1058 +0 0.1844 +0 0.2008 +0 0.2611 +0 0.1403 +0 0.2604 +0 0.3663 +0 0.1184 +0 0.0943 +0 0.1214 +0 0.0711 +0 0.0989 +0 0.0752 +0 0.0606 +0 0.1375 +0 0.2515 +0 0.1073 +0 0.0452 +0 0.2000 +0 0.2389 +1 0.2566 +0 0.0739 +0 0.2363 +0 0.0721 +0 0.0499 +0 0.2139 +0 0.0880 +0 0.0934 +0 0.5710 +0 0.0606 +0 0.1447 +0 0.1315 +0 0.0512 +0 0.0980 +0 0.0872 +0 0.0733 +0 0.0991 +0 0.0602 +0 0.0963 +0 0.0463 +0 0.1131 +0 0.1563 +0 0.1731 +0 0.0476 +0 0.1160 +0 0.0736 +0 0.3631 +0 0.1026 +0 0.0754 +0 0.0623 +0 0.0768 +0 0.0961 +0 0.1023 +0 0.0564 +0 0.0943 +0 0.0920 +0 0.1973 +0 0.1690 +0 0.0986 +0 0.0490 +0 0.2461 +0 0.0524 +0 0.1162 +0 0.0478 +0 0.0558 +0 0.0472 +0 0.0937 +0 0.1286 +1 0.8538 +0 0.7035 +0 0.1004 +0 0.1504 +0 0.0598 +0 0.0454 +0 0.0564 +0 0.0879 +0 0.1258 +0 0.0934 +0 0.1779 +0 0.0933 +0 0.1110 +0 0.1268 +0 0.2448 +0 0.0759 +0 0.1515 +0 0.0602 +0 0.1006 +0 0.2177 +0 0.1190 +0 0.1095 +0 0.0853 +0 0.1763 +0 0.1314 +0 0.1524 +0 0.0974 +0 0.0799 +0 0.0889 +0 0.0787 +0 0.3173 +0 0.4227 +0 0.1627 +0 0.1318 +0 0.1295 +0 0.1284 +0 0.1379 +0 0.1132 +0 0.1862 +0 0.0546 +0 0.1828 +0 0.1213 +0 0.2717 +0 0.1185 +0 0.0955 +0 0.2107 +0 0.3425 +0 0.1964 +0 0.1426 +0 0.0720 +0 0.1284 +0 0.1824 +0 0.1743 +0 0.0804 +0 0.0648 +0 0.0662 +0 0.0506 +0 0.1106 +0 0.3467 +0 0.5703 +0 0.1453 +0 0.1428 +0 0.2462 +0 0.0969 +1 0.7855 +0 0.1189 +0 0.1055 +0 0.0749 +0 0.5677 +0 0.1170 +0 0.0543 +0 0.0992 +0 0.0520 +0 0.1525 +0 0.0517 +0 0.1199 +0 0.1554 +0 0.2083 +0 0.0998 +0 0.6071 +0 0.0839 +0 0.1032 +0 0.1884 +0 0.0667 +0 0.0444 +0 0.7320 +0 0.1010 +0 0.0828 +0 0.2027 +0 0.0803 +0 0.2784 +0 0.1768 +0 0.1292 +0 0.0517 +0 0.0868 +0 0.3260 +0 0.1317 +0 0.0439 +0 0.3464 +0 0.0814 +0 0.0705 +0 0.0487 +0 0.0631 +0 0.0789 +0 0.0453 +0 0.1096 +0 0.0591 +0 0.0324 +0 0.0811 +0 0.1973 +0 0.0378 +0 0.1215 +0 0.1564 +0 0.1886 +0 0.0942 +0 0.2132 +0 0.5062 +0 0.2160 +0 0.3485 +0 0.2977 +0 0.1491 +0 0.0681 +0 0.0913 +0 0.1700 +0 0.1599 +0 0.0938 +0 0.3253 +0 0.0366 +0 0.5347 +0 0.0411 +0 0.3897 +0 0.0878 +0 0.1479 +0 0.3368 +0 0.1544 +0 0.1142 +0 0.1782 +0 0.0583 +0 0.0662 +0 0.0744 +0 0.1153 +0 0.1797 +0 0.1375 +0 0.0709 +0 0.0426 +0 0.1061 +0 0.0745 +0 0.0510 +0 0.0701 +0 0.0996 +0 0.0797 +0 0.1294 +0 0.0692 +0 0.0922 +0 0.0481 +0 0.1379 +0 0.0791 +0 0.0832 +0 0.0783 +0 0.2293 +0 0.2126 +0 0.0753 +0 0.6155 +0 0.1620 +0 0.0594 +0 0.1150 +0 0.2321 +0 0.1190 +0 0.0990 +0 0.1599 +0 0.0963 +0 0.1486 +0 0.0434 +0 0.1076 +0 0.1206 +0 0.1806 +0 0.0916 +0 0.0806 +0 0.1248 +0 0.0996 +0 0.1785 +0 0.1078 +0 0.0964 +0 0.0851 +0 0.1046 +0 0.0553 +0 0.2223 +0 0.3069 +0 0.0947 +0 0.0626 +0 0.1038 +0 0.0800 +0 0.1969 +0 0.0848 +0 0.1358 +0 0.1092 +0 0.0852 +0 0.2334 +0 0.0789 +0 0.1124 +0 0.1031 +0 0.0778 +0 0.0867 +0 0.1277 +0 0.0971 +0 0.0836 +0 0.0590 +0 0.0770 +0 0.0835 +0 0.1114 +0 0.0780 +0 0.0679 +0 0.1415 +0 0.0773 +0 0.1990 +0 0.0902 +0 0.1137 +0 0.1246 +0 0.0521 +0 0.0590 +0 0.0415 +0 0.0580 +0 0.1319 +0 0.0438 +0 0.1049 +0 0.0488 +0 0.1076 +0 0.1589 +0 0.1021 +0 0.1162 +0 0.0951 +0 0.1738 +0 0.0553 +0 0.0821 +0 0.0861 +0 0.0865 +0 0.0692 +0 0.1135 +0 0.1533 +0 0.0603 +0 0.1534 +0 0.2521 +0 0.1623 +0 0.0617 +0 0.2072 +0 0.1274 +0 0.2835 +0 0.0695 +0 0.1003 +0 0.1066 +0 0.0579 +0 0.0853 +0 0.1433 +0 0.0990 +0 0.0653 +0 0.0493 +0 0.1206 +0 0.1359 +0 0.0972 +0 0.1309 +0 0.0717 +0 0.0651 +0 0.1601 +0 0.2104 +0 0.0771 +0 0.3047 +0 0.0684 +0 0.1376 +0 0.1041 +0 0.0678 +0 0.5232 +0 0.0881 +0 0.1215 +0 0.0538 +0 0.0653 +0 0.1701 +0 0.1484 +0 0.0948 +0 0.0786 +0 0.1543 +0 0.2680 +0 0.0716 +0 0.1106 +0 0.1500 +0 0.2941 +0 0.3453 +0 0.1172 +0 0.3567 +0 0.1814 +0 0.1710 +0 0.0582 +0 0.1625 +0 0.6743 +0 0.1503 +0 0.0728 +0 0.0518 +0 0.0976 +0 0.4121 +0 0.1659 +0 0.2443 +0 0.1740 +0 0.2095 +0 0.1705 +0 0.2560 +0 0.1656 +0 0.0496 +0 0.2578 +0 0.0832 +0 0.3225 +1 0.8406 +0 0.6529 +0 0.0462 +0 0.1267 +0 0.0422 +0 0.3642 +0 0.0956 +0 0.0687 +0 0.0588 +0 0.0999 +0 0.2266 +0 0.0333 +0 0.0929 +0 0.1286 +0 0.1240 +0 0.0406 +0 0.0458 +0 0.0716 +0 0.0690 +0 0.3848 +0 0.1172 +0 0.1760 +0 0.2168 +1 0.7844 +0 0.1629 +0 0.1029 +0 0.0627 +0 0.0781 +0 0.1535 +0 0.2521 +0 0.1019 +0 0.1153 +0 0.0674 +0 0.4527 +0 0.1645 +0 0.1122 +0 0.0894 +0 0.0614 +0 0.2809 +0 0.0581 +0 0.5021 +0 0.1699 +0 0.0854 +0 0.2458 +0 0.1099 +0 0.1422 +0 0.1692 +0 0.1555 +0 0.0976 +0 0.3756 +0 0.1275 +0 0.3063 +0 0.1228 +0 0.0298 +0 0.0957 +0 0.1098 +0 0.2418 +0 0.0718 +0 0.0745 +0 0.0674 +0 0.0445 +0 0.4579 +0 0.0806 +0 0.2168 +0 0.1152 +0 0.0376 +0 0.1166 +0 0.0606 +0 0.0703 +0 0.2107 +0 0.0826 +0 0.0996 +0 0.0781 +0 0.1106 +0 0.0929 +0 0.1687 +0 0.1012 +0 0.1678 +0 0.0772 +0 0.0581 +0 0.2359 +0 0.1839 +0 0.0425 +0 0.2610 +0 0.0817 +0 0.0776 +0 0.0403 +0 0.2836 +0 0.1223 +0 0.1012 +0 0.1187 +0 0.2015 +0 0.0399 +0 0.4392 +0 0.1706 +0 0.0839 +0 0.0612 +0 0.1052 +0 0.1275 +0 0.1644 +0 0.0857 +0 0.0652 +0 0.1887 +0 0.0879 +0 0.0621 +0 0.2128 +0 0.1546 +0 0.2303 +0 0.0948 +0 0.1874 +0 0.0952 +0 0.1191 +0 0.2508 +0 0.0968 +0 0.0652 +0 0.1820 +0 0.0379 +0 0.0480 +0 0.2628 +0 0.0915 +0 0.0868 +0 0.1774 +0 0.1476 +0 0.0871 +0 0.0672 +0 0.0736 +0 0.0614 +0 0.1958 +0 0.1956 +0 0.0499 +0 0.0373 +0 0.0805 +0 0.0517 +0 0.1402 +0 0.0601 +0 0.1051 +0 0.0657 +0 0.0868 +0 0.1181 +0 0.1162 +0 0.4241 +0 0.1095 +0 0.0657 +0 0.0793 +0 0.2078 +0 0.0727 +0 0.0614 +0 0.0649 +0 0.2972 +0 0.0637 +0 0.0375 +0 0.2224 +0 0.1734 +0 0.1350 +0 0.0940 +0 0.1330 +0 0.1134 +0 0.2828 +0 0.0910 +0 0.3370 +0 0.0692 +0 0.0564 +0 0.0772 +0 0.0427 +0 0.1656 +0 0.2085 +0 0.0658 +0 0.2126 +0 0.0631 +0 0.1877 +0 0.1614 +0 0.0868 +0 0.1003 +0 0.0795 +0 0.1403 +0 0.1980 +0 0.5043 +0 0.0437 +0 0.1729 +0 0.1462 +0 0.1886 +0 0.0676 +0 0.0689 +0 0.1010 +0 0.0782 +0 0.0762 +0 0.2848 +0 0.0553 +0 0.0955 +0 0.2726 +0 0.0922 +0 0.2951 +0 0.1310 +0 0.1084 +0 0.0875 +0 0.0910 +0 0.0650 +1 0.8082 +0 0.0941 +0 0.0937 +0 0.0863 +0 0.6782 +0 0.0887 +0 0.1269 +0 0.0694 +0 0.1405 +0 0.0821 +0 0.1816 +0 0.1518 +0 0.1151 +0 0.0960 +0 0.0784 +0 0.0520 +0 0.2332 +0 0.2265 +0 0.1024 +0 0.1325 +0 0.2702 +0 0.1639 +0 0.1410 +0 0.2258 +0 0.0572 +0 0.0544 +0 0.0523 +0 0.1589 +0 0.1055 +0 0.2007 +0 0.2701 +0 0.0752 +0 0.0568 +0 0.0884 +0 0.1378 +0 0.0959 +0 0.6495 +0 0.2504 +0 0.2086 +0 0.1235 +0 0.1097 +0 0.1312 +0 0.0457 +0 0.0793 +0 0.0635 +0 0.0823 +0 0.1531 +0 0.0978 +0 0.2362 +0 0.2941 +0 0.0730 +0 0.1542 +0 0.1377 +0 0.0854 +0 0.1568 +0 0.0644 +0 0.0482 +0 0.0476 +0 0.1067 +0 0.1232 +0 0.1141 +0 0.1205 +0 0.0457 +0 0.2767 +0 0.1396 +0 0.1686 +0 0.0895 +0 0.1194 +0 0.0888 +1 0.7770 +0 0.1983 +0 0.0717 +0 0.3590 +0 0.2003 +0 0.3193 +0 0.1859 +0 0.0565 +0 0.0804 +0 0.1041 +0 0.1070 +0 0.0881 +0 0.0544 +0 0.1980 +0 0.1422 +0 0.0528 +0 0.0987 +0 0.2074 +0 0.1383 +0 0.0758 +0 0.1495 +0 0.0934 +0 0.0817 +0 0.0818 +0 0.0523 +0 0.0866 +0 0.1240 +0 0.6225 +0 0.0939 +0 0.1943 +0 0.2275 +0 0.2855 +0 0.1017 +0 0.0816 +0 0.1036 +0 0.1162 +0 0.1317 +0 0.2758 +0 0.3267 +0 0.0718 +0 0.0402 +0 0.5437 +0 0.1766 +1 0.8696 +0 0.1198 +0 0.2005 +0 0.0582 +0 0.3411 +0 0.1881 +0 0.3089 +0 0.1008 +0 0.1003 +0 0.0952 +0 0.0845 +0 0.0601 +0 0.0770 +0 0.1114 +0 0.4258 +0 0.1819 +0 0.1620 +0 0.3627 +0 0.2496 +0 0.1406 +0 0.1445 +0 0.0832 +0 0.1568 +0 0.0830 +0 0.0928 +0 0.0689 +0 0.1119 +0 0.2142 +0 0.0958 +0 0.0688 +0 0.0632 +0 0.2013 +0 0.0873 +0 0.0747 +0 0.1010 +0 0.2440 +1 0.8003 +0 0.0618 +0 0.0855 +0 0.1453 +0 0.0770 +0 0.0727 +0 0.1182 +0 0.0792 +0 0.0735 +0 0.1819 +0 0.2877 +0 0.3194 +0 0.1563 +0 0.3265 +0 0.1365 +0 0.0761 +0 0.0556 +0 0.1526 +0 0.0618 +0 0.1385 +0 0.1714 +0 0.1225 +0 0.1099 +1 0.7719 +0 0.1177 +0 0.1570 +0 0.0819 +0 0.0483 +0 0.0374 +0 0.2083 +0 0.0959 +0 0.2371 +0 0.6457 +0 0.1395 +0 0.0826 +0 0.0910 +0 0.0523 +0 0.0581 +0 0.1754 +0 0.0610 +0 0.1043 +1 0.7638 +0 0.1525 +0 0.2161 +0 0.0985 +0 0.1730 +0 0.1528 +0 0.0898 +0 0.2065 +0 0.0570 +0 0.0593 +0 0.1311 +0 0.0558 +0 0.1348 +0 0.0635 +0 0.0658 +0 0.0571 +0 0.2160 +0 0.0677 +0 0.1043 +0 0.5034 +0 0.0801 +0 0.0590 +0 0.0879 +0 0.0836 +0 0.0404 +0 0.3849 +0 0.1712 +0 0.0844 +0 0.2795 +0 0.0670 +0 0.2251 +0 0.1174 +0 0.2007 +0 0.1293 +0 0.0496 +0 0.0828 +0 0.0846 +0 0.0940 +1 0.8402 +0 0.1467 +0 0.1311 +0 0.4598 +0 0.2140 +0 0.0694 +0 0.1416 +0 0.5748 +0 0.0921 +0 0.4618 +0 0.1682 +0 0.0991 +0 0.0868 +0 0.0851 +0 0.1104 +0 0.1562 +0 0.0861 +0 0.0630 +0 0.1122 +0 0.3146 +0 0.2106 +0 0.3596 +0 0.1028 +0 0.0786 +0 0.1458 +0 0.0389 +0 0.0419 +0 0.7335 +0 0.1264 +0 0.1714 +0 0.1559 +0 0.1132 +1 0.7707 +0 0.2930 +0 0.0460 +0 0.1761 +0 0.2236 +0 0.2639 +0 0.1105 +0 0.1831 +0 0.0734 +0 0.1128 +0 0.1044 +0 0.1270 +0 0.0762 +0 0.5540 +0 0.1095 +0 0.2034 +0 0.0869 +0 0.1921 +0 0.0991 +0 0.1143 +0 0.2620 +0 0.0919 +0 0.0475 +0 0.5822 +0 0.2282 +0 0.0629 +0 0.0957 +0 0.1494 +0 0.0421 +0 0.0790 +0 0.0902 +0 0.0568 +0 0.0511 +0 0.3286 +0 0.0421 +0 0.3266 +0 0.0986 +0 0.0796 +0 0.1119 +0 0.0701 +0 0.1611 +0 0.1139 +0 0.0634 +0 0.2211 +0 0.2286 +0 0.0612 +0 0.1130 +0 0.1201 +0 0.1299 +0 0.1197 +0 0.2264 +0 0.0581 +0 0.2253 +0 0.0708 +0 0.0845 +0 0.1140 +0 0.0942 +0 0.0328 +0 0.0763 +0 0.2124 +0 0.1026 +0 0.1829 +0 0.0465 +0 0.1750 +0 0.0910 +0 0.1628 +0 0.0414 +0 0.0782 +0 0.1734 +0 0.0924 +0 0.0616 +0 0.0604 +0 0.1209 +0 0.0873 +0 0.1239 +0 0.7333 +0 0.2315 +0 0.0759 +0 0.2004 +0 0.0935 +0 0.0484 +0 0.0721 +0 0.2523 +0 0.0520 +0 0.0908 +0 0.0576 +0 0.1605 +0 0.1251 +0 0.1288 +0 0.0864 +0 0.1547 +0 0.0704 +0 0.1454 +0 0.0929 +0 0.0717 +0 0.0671 +0 0.0808 +0 0.1533 +0 0.0497 +0 0.0579 +0 0.0548 +0 0.1619 +0 0.0472 +0 0.0622 +0 0.1056 +0 0.0864 +0 0.0724 +0 0.0842 +0 0.2837 +0 0.1194 +0 0.0860 +0 0.3300 +0 0.0624 +0 0.1309 +0 0.0718 +0 0.0900 +0 0.1624 +0 0.1391 +0 0.5097 +0 0.0598 +0 0.1455 +0 0.2882 +1 0.8281 +0 0.2106 +0 0.2833 +0 0.0914 +0 0.1988 +0 0.0991 +0 0.0568 +0 0.3095 +0 0.2063 +0 0.0844 +0 0.0735 +0 0.1172 +0 0.0620 +1 0.7828 +0 0.1084 +0 0.2100 +1 0.7557 +0 0.0697 +0 0.0980 +0 0.0612 +0 0.0421 +0 0.2172 +0 0.0773 +0 0.0648 +0 0.0739 +0 0.1634 +0 0.1373 +0 0.0518 +0 0.1089 +0 0.2071 +0 0.1521 +0 0.1191 +0 0.1224 +0 0.1972 +0 0.1243 +0 0.0805 +0 0.0697 +0 0.0917 +0 0.0840 +0 0.2290 +0 0.2263 +0 0.4112 +0 0.0438 +0 0.2323 +0 0.0990 +0 0.0463 +0 0.0694 +0 0.0342 +0 0.1091 +0 0.3133 +0 0.0431 +0 0.0536 +0 0.0839 +0 0.4012 +0 0.0535 +0 0.0772 +0 0.7157 +0 0.1039 +0 0.0464 +0 0.2380 +0 0.1314 +0 0.1120 +0 0.1069 +0 0.0566 +0 0.1251 +0 0.1188 +0 0.0712 +0 0.0989 +0 0.0641 +0 0.1344 +0 0.1320 +0 0.1026 +0 0.1008 +0 0.0647 +0 0.0998 +0 0.2809 +0 0.0553 +0 0.0765 +0 0.1151 +0 0.0835 +0 0.0633 +0 0.1404 +0 0.0787 +0 0.0977 +0 0.1406 +0 0.0863 +0 0.1452 +0 0.1635 +0 0.0591 +0 0.0752 +0 0.2012 +0 0.2295 +0 0.0567 +0 0.0618 +0 0.0925 +0 0.1312 +0 0.0897 +0 0.1679 +0 0.1673 +0 0.0780 +0 0.3589 +0 0.1307 +0 0.1553 +0 0.1733 +0 0.0791 +0 0.2277 +0 0.1241 +0 0.3074 +0 0.0785 +0 0.1297 +0 0.1048 +0 0.1329 +0 0.0590 +0 0.2104 +0 0.3113 +0 0.0473 +0 0.0983 +0 0.0671 +0 0.1397 +0 0.0667 +1 0.8200 +0 0.0443 +0 0.1308 +0 0.1675 +0 0.0903 +0 0.0695 +0 0.2784 +0 0.1444 +0 0.3897 +0 0.1596 +0 0.0668 +0 0.2933 +0 0.0882 +0 0.0577 +0 0.1159 +0 0.6112 +0 0.0560 +0 0.1132 +0 0.1407 +0 0.1438 +0 0.1241 +0 0.2637 +0 0.0552 +0 0.0555 +0 0.0427 +0 0.2891 +0 0.0965 +0 0.0634 +0 0.0378 +0 0.1792 +0 0.1889 +0 0.0653 +0 0.0614 +0 0.1005 +0 0.0631 +0 0.0582 +0 0.0500 +0 0.0488 +0 0.0417 +0 0.3333 +0 0.1080 +0 0.0831 +0 0.0836 +0 0.0637 +0 0.1263 +0 0.1079 +0 0.2481 +0 0.0610 +0 0.1824 +0 0.1144 +0 0.0422 +0 0.2321 +0 0.0844 +0 0.0778 +0 0.0430 +0 0.0579 +0 0.0770 +0 0.4942 +0 0.0716 +0 0.2047 +0 0.2766 +0 0.1216 +0 0.1488 +0 0.2194 +0 0.0886 +0 0.0763 +0 0.0567 +0 0.0427 +0 0.1748 +0 0.3395 +0 0.0978 +0 0.1409 +0 0.1629 +0 0.1311 +0 0.0841 +0 0.1340 +0 0.0859 +0 0.1433 +0 0.1052 +0 0.1032 +0 0.1895 +0 0.3976 +0 0.1541 +0 0.0891 +0 0.1884 +0 0.1044 +0 0.1742 +0 0.0941 +0 0.1472 +0 0.1329 +0 0.1142 +0 0.0583 +0 0.0892 +0 0.1077 +0 0.0888 +0 0.0988 +0 0.1096 +0 0.0598 +0 0.0575 +0 0.0708 +0 0.0969 +0 0.1659 +0 0.0485 +0 0.1395 +0 0.1878 +0 0.1840 +0 0.0936 +0 0.0755 +0 0.1288 +0 0.1288 +0 0.0811 +0 0.0478 +0 0.1124 +0 0.1484 +0 0.0811 +0 0.1090 +0 0.1471 +0 0.0887 +0 0.6759 +0 0.0801 +0 0.2935 +0 0.1388 +0 0.1457 +0 0.6178 +0 0.0488 +0 0.1922 +0 0.2060 +0 0.4763 +0 0.0775 +0 0.0842 +0 0.0484 +0 0.3933 +0 0.1156 +0 0.2032 +0 0.0580 +0 0.5912 +0 0.0678 +0 0.1490 +0 0.0796 +0 0.0899 +0 0.0796 +0 0.3072 +0 0.0959 +0 0.1019 +0 0.0728 +0 0.0944 +0 0.1315 +0 0.0846 +0 0.0892 +0 0.1506 +0 0.2187 +0 0.0830 +0 0.1541 +0 0.1641 +0 0.2548 +1 0.8210 +0 0.1252 +0 0.0647 +0 0.0456 +0 0.0921 +0 0.1766 +1 0.8366 +0 0.1617 +0 0.2018 +0 0.1012 +0 0.1090 +0 0.0583 +0 0.1940 +0 0.2859 +0 0.1997 +0 0.1259 +0 0.0670 +0 0.1129 +0 0.0553 +0 0.1073 +0 0.1394 +0 0.0503 +0 0.1332 +0 0.0696 +0 0.0778 +0 0.1186 +0 0.2050 +0 0.0700 +0 0.0615 +0 0.1455 +0 0.0499 +0 0.1210 +0 0.1686 +0 0.6710 +0 0.2071 +0 0.1375 +0 0.1465 +0 0.1256 +0 0.1456 +0 0.1193 +0 0.1145 +0 0.5140 +0 0.1761 +0 0.0746 +0 0.1082 +0 0.1245 +0 0.0356 +0 0.1455 +0 0.0658 +0 0.2023 +0 0.0467 +0 0.2246 +0 0.1712 +0 0.1628 +0 0.0489 +0 0.1429 +0 0.5570 +0 0.1828 +0 0.0487 +0 0.2108 +0 0.0775 +0 0.1005 +0 0.0575 +0 0.0732 +0 0.0433 +0 0.1565 +1 0.7626 +0 0.2671 +0 0.1045 +0 0.3387 +0 0.0793 +0 0.0497 +0 0.2201 +0 0.1824 +0 0.0992 +0 0.1103 +0 0.0779 +0 0.0960 +0 0.0932 +0 0.0598 +1 0.8770 +0 0.2700 +0 0.0947 +0 0.2535 +0 0.0506 +0 0.1068 +0 0.1207 +0 0.0829 +0 0.0986 +0 0.2079 +0 0.1886 +0 0.2878 +0 0.1845 +0 0.1513 +0 0.1256 +0 0.0971 +0 0.1982 +0 0.0782 +0 0.0986 +0 0.0798 +0 0.1167 +0 0.0845 +0 0.0700 +0 0.0955 +0 0.0445 +0 0.5781 +0 0.3183 +0 0.1021 +0 0.0958 +0 0.0703 +0 0.1916 +0 0.1863 +0 0.0712 +0 0.1793 +0 0.0594 +0 0.0939 +0 0.0609 +0 0.1146 +0 0.0747 +0 0.1373 +0 0.0882 +0 0.6090 +0 0.1106 +0 0.0587 +0 0.0787 +0 0.1505 +0 0.0789 +0 0.2765 +0 0.1109 +0 0.0538 +0 0.0283 +0 0.1081 +0 0.2891 +0 0.0698 +1 0.8134 +0 0.0361 +0 0.0752 +0 0.3702 +0 0.1153 +0 0.1719 +0 0.1320 +0 0.0531 +0 0.1148 +0 0.0751 +0 0.1447 +0 0.1066 +0 0.0901 +0 0.0853 +0 0.1756 +0 0.0823 +0 0.0657 +0 0.0900 +0 0.3311 +0 0.1095 +0 0.0863 +0 0.0721 +0 0.2252 +0 0.0886 +0 0.3828 +0 0.0701 +0 0.0343 +0 0.0799 +0 0.1412 +0 0.0859 +0 0.0828 +0 0.1926 +0 0.0897 +0 0.0459 +1 0.8132 +0 0.1802 +1 0.8676 +0 0.0577 +0 0.1278 +0 0.0388 +0 0.0599 +0 0.0542 +0 0.0653 +0 0.0860 +0 0.1351 +0 0.1334 +0 0.1857 +0 0.1960 +0 0.1200 +0 0.1643 +0 0.1227 +0 0.0965 +0 0.0809 +0 0.1961 +0 0.2092 +0 0.0442 +0 0.1157 +0 0.0873 +0 0.2071 +0 0.0834 +0 0.1439 +0 0.0679 +0 0.3645 +0 0.0716 +0 0.5806 +0 0.0759 +0 0.1127 +0 0.1042 +0 0.1091 +0 0.1009 +0 0.0453 +0 0.0478 +0 0.0858 +0 0.3266 +0 0.1762 +0 0.1309 +0 0.1101 +0 0.1305 +0 0.0487 +0 0.0535 +0 0.1269 +0 0.2154 +0 0.0494 +0 0.0631 +0 0.1102 +0 0.1120 +0 0.1717 +0 0.0622 +0 0.3555 +0 0.2674 +0 0.0995 +0 0.6123 +0 0.1573 +0 0.5314 +0 0.1466 +0 0.0560 +0 0.1202 +0 0.1354 +0 0.0723 +0 0.0647 +0 0.0655 +0 0.0587 +0 0.0497 +0 0.0509 +0 0.0356 +0 0.0956 +0 0.0765 +0 0.0776 +0 0.0882 +0 0.1885 +0 0.0873 +0 0.0615 +0 0.0930 +0 0.0480 +0 0.0682 +0 0.4111 +0 0.1824 +0 0.0996 +0 0.3475 +0 0.0992 +0 0.4263 +0 0.0855 +0 0.0931 +0 0.1205 +0 0.2291 +0 0.0560 +0 0.0971 +0 0.2655 +0 0.0827 +0 0.6510 +0 0.1262 +0 0.0902 +0 0.1286 +0 0.0826 +0 0.0733 +0 0.5870 +0 0.0636 +0 0.0591 +0 0.0776 +0 0.1867 +0 0.1163 +0 0.1833 +0 0.0877 +0 0.0433 +0 0.0869 +0 0.1653 +0 0.0955 +0 0.1861 +0 0.1475 +0 0.0896 +0 0.0684 +0 0.6221 +0 0.0979 +0 0.4439 +0 0.0836 +0 0.3276 +0 0.1136 +0 0.1373 +0 0.0658 +0 0.1617 +0 0.1176 +0 0.1851 +0 0.1164 +0 0.0460 +0 0.1411 +0 0.0556 +0 0.3189 +0 0.1211 +0 0.1070 +0 0.0871 +0 0.3792 +0 0.0624 +0 0.1184 +0 0.1618 +0 0.1740 +0 0.2907 +0 0.2479 +0 0.1577 +0 0.0850 +0 0.0498 +0 0.0965 +0 0.1591 +0 0.0688 +0 0.5152 +0 0.0743 +0 0.1011 +0 0.0550 +0 0.2397 +0 0.0481 +0 0.5372 +0 0.0696 +0 0.0564 +0 0.1029 +0 0.2995 +0 0.0930 +0 0.1877 +0 0.1205 +0 0.1476 +0 0.0467 +0 0.1157 +0 0.1582 +0 0.0772 +0 0.1026 +0 0.3976 +0 0.1076 +0 0.0641 +0 0.1740 +1 0.7763 +0 0.1662 +1 0.3205 +0 0.1791 +0 0.0781 +0 0.0350 +0 0.1042 +0 0.0684 +0 0.0965 +0 0.0731 +0 0.3637 +0 0.0359 +0 0.0486 +0 0.2072 +0 0.2030 +0 0.0692 +0 0.0483 +0 0.0974 +0 0.1589 +0 0.0445 +0 0.1235 +0 0.1492 +0 0.0616 +0 0.1635 +0 0.0552 +0 0.1136 +0 0.6160 +0 0.1415 +0 0.0901 +0 0.0941 +0 0.0961 +0 0.1254 +0 0.1677 +0 0.1217 +0 0.1347 +0 0.1232 +0 0.2670 +0 0.1093 +0 0.0903 +0 0.0473 +0 0.1990 +0 0.0996 +0 0.0908 +0 0.2513 +0 0.2815 +0 0.1903 +0 0.0703 +0 0.0737 +0 0.2213 +0 0.2440 +0 0.1682 +0 0.0858 +0 0.2376 +0 0.0391 +0 0.0940 +0 0.1008 +0 0.1770 +0 0.0512 +0 0.1239 +0 0.1348 +0 0.0499 +0 0.1041 +0 0.1897 +0 0.0349 +0 0.0865 +0 0.0829 +0 0.1762 +0 0.0884 +0 0.0572 +0 0.2181 +0 0.1712 +0 0.4034 +0 0.0601 +0 0.1314 +0 0.0462 +0 0.1308 +0 0.0587 +0 0.1501 +0 0.2026 +0 0.1462 +0 0.2186 +0 0.1773 +0 0.1498 +1 0.7554 +0 0.6461 +0 0.0811 +1 0.8732 +0 0.1294 +0 0.0494 +0 0.2176 +0 0.0987 +0 0.0641 +0 0.1733 +0 0.1107 +0 0.1259 +0 0.0786 +0 0.0698 +0 0.0693 +0 0.0466 +0 0.0824 +0 0.0280 +0 0.1138 +0 0.3215 +0 0.0871 +0 0.1107 +0 0.1399 +0 0.0881 +0 0.0330 +0 0.2420 +0 0.3606 +0 0.0734 +0 0.1188 +0 0.0834 +0 0.0992 +0 0.1661 +0 0.1120 +0 0.0982 +0 0.0746 +0 0.0474 +0 0.1958 +0 0.0545 +0 0.0648 +0 0.2261 +0 0.0562 +0 0.1391 +0 0.1001 +0 0.1375 +0 0.1219 +0 0.0970 +0 0.3340 +0 0.0417 +1 0.7889 +0 0.4697 +0 0.2394 +0 0.1833 +0 0.0633 +0 0.0474 +0 0.0811 +0 0.0723 +0 0.0893 +0 0.0616 +0 0.0863 +0 0.0472 +0 0.2748 +0 0.0701 +0 0.1154 +0 0.1787 +0 0.1073 +0 0.0898 +0 0.1029 +0 0.0824 +0 0.0470 +0 0.2027 +0 0.2894 +0 0.2033 +0 0.0734 +0 0.1051 +0 0.0588 +0 0.0625 +0 0.1129 +0 0.0374 +0 0.1172 +0 0.0944 +0 0.0701 +0 0.0436 +0 0.7494 +0 0.0784 +0 0.0964 +0 0.0991 +0 0.1058 +0 0.0720 +0 0.0524 +0 0.0766 +0 0.1258 +0 0.1151 +0 0.5097 +0 0.1432 +0 0.0964 +0 0.0986 +0 0.2466 +0 0.1282 +0 0.1020 +0 0.2842 +0 0.0922 +0 0.0679 +0 0.0953 +0 0.1382 +0 0.1097 +1 0.7680 +0 0.0871 +0 0.0945 +0 0.0475 +0 0.2137 +0 0.2197 +0 0.0845 +0 0.0446 +0 0.0441 +0 0.0483 +0 0.1017 +0 0.0381 +0 0.1151 +0 0.0980 +0 0.0814 +0 0.0512 +0 0.1728 +0 0.1328 +0 0.0451 +0 0.1401 +0 0.0756 +0 0.1819 +0 0.2311 +0 0.0963 +0 0.0790 +0 0.0561 +0 0.0438 +0 0.1110 +0 0.0635 +0 0.0991 +0 0.0710 +0 0.1833 +0 0.0716 +0 0.0785 +0 0.0787 +0 0.0814 +0 0.0565 +1 0.7778 +0 0.0858 +0 0.0848 +0 0.1211 +0 0.0401 +0 0.0510 +0 0.0755 +0 0.0832 +0 0.0463 +0 0.0870 +0 0.0647 +0 0.4264 +0 0.1518 +0 0.0567 +0 0.1430 +0 0.2212 +0 0.5837 +0 0.1246 +0 0.0540 +0 0.0977 +0 0.1586 +0 0.1445 +0 0.0577 +0 0.0436 +0 0.0854 +0 0.1760 +0 0.0536 +0 0.1491 +0 0.1612 +0 0.1523 +0 0.1482 +0 0.1047 +0 0.0514 +0 0.1041 +0 0.0977 +0 0.0569 +0 0.0285 +0 0.0380 +0 0.0495 +0 0.1164 +0 0.3206 +0 0.0287 +0 0.1010 +0 0.0377 +0 0.0741 +0 0.1396 +0 0.0527 +0 0.1071 +0 0.0901 +0 0.0656 +0 0.0858 +0 0.1452 +0 0.1728 +0 0.2450 +0 0.2065 +0 0.1099 +0 0.0457 +0 0.1695 +0 0.0953 +0 0.2617 +0 0.0691 +0 0.1540 +0 0.0558 +0 0.0863 +0 0.0750 +0 0.1365 +0 0.7485 +0 0.1941 +0 0.1017 +0 0.1102 +0 0.0655 +0 0.1020 +0 0.1160 +0 0.1236 +0 0.0999 +0 0.3946 +0 0.0940 +0 0.0651 +0 0.0664 +0 0.1914 +0 0.1355 +0 0.0388 +0 0.0663 +0 0.2078 +0 0.1134 +0 0.0913 +0 0.6490 +0 0.1415 +0 0.1860 +0 0.2083 +0 0.1145 +0 0.2280 +0 0.3076 +0 0.1585 +0 0.0893 +0 0.1029 +0 0.2231 +0 0.1111 +0 0.1183 +0 0.0772 +0 0.0856 +0 0.0375 +0 0.0606 +0 0.1063 +0 0.1584 +0 0.0659 +0 0.0548 +0 0.2022 +0 0.1114 +1 0.7933 +0 0.0491 +0 0.0907 +0 0.1250 +0 0.0707 +0 0.1051 +0 0.0764 +0 0.5002 +0 0.0556 +0 0.0677 +0 0.0929 +0 0.1547 +0 0.1957 +0 0.0824 +0 0.2220 +0 0.0872 +0 0.2697 +0 0.1848 +1 0.7988 +0 0.1368 +0 0.3364 +0 0.1258 +0 0.1391 +0 0.0454 +0 0.0653 +0 0.1530 +0 0.0722 +0 0.1347 +0 0.1238 +0 0.3112 +0 0.0957 +0 0.0950 +0 0.1441 +0 0.0902 +0 0.1420 +0 0.0719 +0 0.0904 +0 0.1088 +0 0.0793 +0 0.2102 +0 0.0819 +0 0.1302 +0 0.0837 +0 0.1252 +0 0.1525 +0 0.1112 +0 0.0808 +0 0.1235 +0 0.0793 +0 0.1055 +0 0.1182 +0 0.0617 +0 0.2229 +0 0.0988 +0 0.0675 +0 0.2959 +0 0.0977 +0 0.1038 +0 0.1065 +0 0.1469 +0 0.0572 +0 0.1376 +0 0.1158 +0 0.1326 +0 0.0603 +0 0.0970 +0 0.0882 +0 0.1201 +0 0.0833 +0 0.3615 +0 0.0909 +0 0.6757 +0 0.1485 +0 0.0874 +0 0.0573 +0 0.2019 +0 0.1641 +0 0.0763 +0 0.3532 +0 0.0690 +0 0.0924 +0 0.1416 +0 0.1934 +0 0.0581 +0 0.1750 +0 0.3606 +0 0.3351 +0 0.1458 +0 0.0584 +0 0.1384 +0 0.0888 +0 0.1311 +0 0.1299 +0 0.1988 +0 0.2244 +0 0.0832 +0 0.1181 +0 0.1157 +0 0.0868 +0 0.0767 +0 0.0453 +0 0.1579 +0 0.0790 +0 0.1844 +0 0.0788 +0 0.0725 +0 0.1791 +0 0.0680 +0 0.1077 +0 0.0991 +0 0.0483 +0 0.0948 +0 0.1009 +0 0.0346 +0 0.2212 +0 0.0979 +0 0.1589 +0 0.1179 +0 0.0844 +0 0.0606 +0 0.1179 +0 0.0485 +0 0.1025 +0 0.1547 +0 0.2644 +1 0.8772 +0 0.1966 +0 0.1299 +0 0.0903 +0 0.0959 +0 0.4317 +0 0.1550 +0 0.7482 +0 0.0626 +0 0.1381 +0 0.0647 +0 0.0711 +0 0.1016 +0 0.0892 +0 0.1387 +0 0.0465 +0 0.2335 +0 0.0901 +0 0.1733 +0 0.1306 +0 0.0533 +0 0.0674 +0 0.0828 +0 0.1207 +0 0.1978 +0 0.1056 +0 0.3496 +0 0.0972 +0 0.0487 +0 0.0518 +0 0.0726 +0 0.2056 +0 0.0638 +0 0.1209 +0 0.1643 +0 0.5150 +0 0.2811 +0 0.0514 +0 0.0751 +0 0.0444 +0 0.0876 +0 0.0891 +0 0.0979 +0 0.1064 +0 0.1643 +0 0.1515 +0 0.1001 +0 0.0634 +0 0.0494 +0 0.0580 +0 0.0827 +0 0.1977 +0 0.0941 +0 0.1091 +0 0.2746 +0 0.0460 +0 0.1204 +0 0.0492 +0 0.3186 +0 0.0634 +0 0.0846 +0 0.1309 +0 0.0939 +0 0.1431 +0 0.1003 +0 0.0701 +0 0.1089 +0 0.0883 +0 0.0721 +1 0.4757 +0 0.0488 +0 0.0762 +0 0.1774 +0 0.0581 +0 0.1661 +0 0.1846 +0 0.0814 +0 0.1570 +0 0.1794 +0 0.0836 +0 0.0729 +0 0.1445 +0 0.0812 +0 0.1186 +0 0.6934 +0 0.3822 +0 0.1513 +0 0.0511 +0 0.3947 +0 0.0507 +0 0.1645 +0 0.1447 +0 0.2198 +0 0.3417 +0 0.0955 +0 0.1026 +0 0.0561 +0 0.1302 +0 0.1045 +0 0.1291 +0 0.1208 +0 0.0610 +0 0.1329 +0 0.1566 +0 0.2137 +0 0.0490 +0 0.0774 +0 0.0388 +0 0.1014 +0 0.1201 +0 0.1231 +0 0.0728 +0 0.0704 +0 0.0902 +0 0.1453 +0 0.1295 +0 0.0937 +0 0.2622 +0 0.0811 +0 0.1295 +0 0.2504 +0 0.2425 +0 0.1329 +0 0.0851 +0 0.1970 +0 0.0391 +0 0.0802 +0 0.1519 +0 0.1255 +0 0.5595 +0 0.0973 +0 0.1396 +0 0.0604 +0 0.1359 +0 0.0988 +0 0.0650 +0 0.0975 +0 0.2725 +0 0.1706 +0 0.0620 +0 0.0996 +0 0.0883 +0 0.1231 +0 0.0528 +0 0.1159 +0 0.1972 +0 0.2004 +0 0.1563 +0 0.1668 +0 0.0970 +0 0.0853 +0 0.7345 +0 0.0995 +0 0.0706 +0 0.0654 +0 0.3012 +0 0.3281 +0 0.0364 +0 0.0789 +0 0.1118 +0 0.1204 +0 0.1542 +0 0.0664 +0 0.0872 +0 0.1140 +0 0.0935 +0 0.4452 +0 0.1559 +0 0.0510 +0 0.2839 +0 0.0613 +0 0.3288 +0 0.0770 +0 0.4670 +0 0.1932 +0 0.1564 +0 0.0608 +0 0.0524 +0 0.1860 +0 0.2373 +0 0.0590 +0 0.0969 +0 0.0623 +0 0.0969 +0 0.0617 +0 0.2969 +0 0.0907 +0 0.2353 +0 0.1263 +0 0.0555 +0 0.0370 +0 0.1654 +0 0.1341 +0 0.0567 +0 0.0407 +0 0.0774 +0 0.0570 +0 0.0827 +0 0.1183 +0 0.0850 +0 0.0801 +0 0.0988 +0 0.0595 +0 0.0345 +0 0.0369 +0 0.0418 +0 0.6793 +0 0.0655 +0 0.1462 +0 0.1198 +0 0.0911 +0 0.1102 +1 0.8717 +0 0.1047 +0 0.0907 +0 0.2595 +0 0.1239 +0 0.0640 +0 0.1455 +0 0.0550 +0 0.0943 +0 0.1118 +0 0.0749 +0 0.0905 +0 0.0505 +0 0.3603 +0 0.0396 +0 0.0852 +0 0.1525 +0 0.1717 +0 0.1158 +0 0.1629 +0 0.1140 +1 0.8754 +0 0.0648 +0 0.0854 +0 0.1319 +0 0.0909 +0 0.0789 +0 0.0843 +0 0.0600 +0 0.1229 +0 0.1312 +0 0.0949 +0 0.0633 +0 0.1110 +0 0.6367 +0 0.0973 +0 0.1672 +0 0.0596 +0 0.0482 +0 0.2663 +0 0.1036 +0 0.0649 +0 0.1883 +0 0.1615 +0 0.0977 +0 0.1761 +0 0.1788 +0 0.4112 +0 0.1754 +0 0.0807 +0 0.1017 +0 0.1118 +1 0.7862 +0 0.1944 +0 0.2108 +0 0.1838 +0 0.4051 +0 0.0600 +0 0.0492 +0 0.4066 +0 0.0768 +0 0.1664 +0 0.1044 +0 0.1066 +0 0.1647 +0 0.2716 +0 0.0713 +0 0.0843 +0 0.0651 +0 0.0578 +0 0.0519 +0 0.5943 +0 0.1720 +0 0.0915 +0 0.1005 +0 0.0977 +0 0.0611 +0 0.1597 +0 0.0950 +0 0.0362 +0 0.2480 +0 0.1326 +0 0.5055 +0 0.0878 +0 0.0455 +1 0.8011 +0 0.0752 +0 0.4303 +0 0.2170 +0 0.1159 +0 0.2539 +0 0.0396 +0 0.1668 +0 0.0726 +0 0.2334 +0 0.1480 +0 0.1295 +0 0.0796 +0 0.4081 +0 0.0871 +0 0.0724 +0 0.0683 +0 0.1623 +0 0.0493 +0 0.0832 +0 0.0535 +0 0.0421 +0 0.2657 +0 0.1151 +0 0.0621 +0 0.3337 +0 0.0449 +0 0.7129 +0 0.2178 +0 0.0797 +0 0.0432 +0 0.0796 +0 0.0928 +0 0.0570 +0 0.1807 +0 0.1432 +0 0.0762 +0 0.1730 +0 0.1343 +0 0.1595 +0 0.1406 +0 0.1702 +0 0.0355 +0 0.2230 +0 0.1942 +0 0.0743 +0 0.1086 +0 0.0636 +0 0.1527 +1 0.8558 +0 0.2696 +0 0.0694 +0 0.2045 +0 0.1019 +0 0.0795 +0 0.1468 +0 0.5074 +0 0.0830 +1 0.8358 +0 0.0845 +0 0.1978 +0 0.7207 +0 0.2457 +0 0.0587 +0 0.6784 +0 0.0886 +0 0.0668 +0 0.2397 +0 0.4954 +0 0.1540 +0 0.1136 +0 0.0929 +0 0.1215 +0 0.1706 +0 0.1310 +0 0.0561 +0 0.0903 +0 0.0784 +0 0.0907 +0 0.0901 +0 0.0713 +0 0.1200 +0 0.0599 +0 0.1027 +0 0.0700 +0 0.0613 +0 0.0943 +0 0.1925 +0 0.0406 +0 0.0573 +0 0.1033 +0 0.1784 +0 0.0694 +0 0.0381 +0 0.0695 +0 0.0473 +0 0.0981 +0 0.0404 +0 0.1970 +0 0.1134 +0 0.0824 +0 0.1060 +0 0.0726 +0 0.2207 +0 0.0673 +0 0.2918 +0 0.0724 +0 0.3307 +0 0.1560 +0 0.0719 +0 0.0951 +0 0.0783 +0 0.0626 +0 0.0408 +0 0.0702 +0 0.1489 +0 0.2248 +0 0.0905 +0 0.1177 +0 0.2165 +0 0.2749 +0 0.0717 +0 0.1054 +0 0.4261 +0 0.1150 +0 0.0911 +0 0.0783 +0 0.5596 +0 0.7303 +0 0.1376 +0 0.0798 +0 0.0836 +0 0.1797 +0 0.1269 +0 0.0866 +0 0.1206 +0 0.1763 +0 0.1477 +0 0.1151 +0 0.0742 +0 0.1189 +0 0.1703 +0 0.4311 +0 0.2769 +0 0.1568 +0 0.1682 +0 0.0470 +0 0.6917 +0 0.2229 +0 0.0562 +0 0.0807 +0 0.1680 +0 0.1184 +0 0.6712 +0 0.0705 +0 0.1124 +0 0.0424 +0 0.0762 +0 0.0546 +0 0.4506 +0 0.1411 +0 0.1403 +0 0.1568 +0 0.0999 +0 0.2687 +0 0.0835 +0 0.0468 +0 0.0832 +0 0.0994 +0 0.1085 +0 0.1044 +0 0.0872 +0 0.0770 +0 0.1031 +0 0.0943 +0 0.1151 +0 0.0672 +0 0.0770 +0 0.1382 +0 0.0836 +0 0.1486 +0 0.1172 +0 0.0850 +0 0.0798 +0 0.4617 +0 0.1317 +1 0.8376 +0 0.1031 +0 0.0591 +0 0.2887 +0 0.0941 +0 0.0457 +0 0.1499 +0 0.1227 +0 0.1552 +0 0.5765 +0 0.2783 +0 0.0437 +0 0.3213 +0 0.1368 +0 0.0748 +0 0.0351 +0 0.2752 +0 0.0386 +0 0.2294 +0 0.0716 +0 0.1811 +0 0.0907 +0 0.1486 +0 0.0809 +0 0.2364 +0 0.1020 +0 0.1801 +0 0.0752 +0 0.1293 +0 0.2219 +0 0.1784 +0 0.0508 +0 0.0742 +0 0.0454 +0 0.1196 +0 0.1142 +0 0.0783 +0 0.5291 +0 0.1050 +0 0.0867 +0 0.1543 +0 0.0612 +0 0.0840 +0 0.1490 +0 0.1826 +0 0.1891 +0 0.5679 +0 0.0630 +0 0.1625 +0 0.0513 +0 0.6900 +0 0.0691 +0 0.1118 +0 0.0685 +0 0.0975 +0 0.0970 +0 0.0693 +0 0.0523 +0 0.2493 +0 0.2752 +0 0.0844 +0 0.1303 +0 0.1773 +0 0.1120 +0 0.1710 +1 0.7861 +0 0.2111 +0 0.0425 +0 0.0539 +0 0.1281 +0 0.0838 +0 0.0995 +0 0.0835 +0 0.0943 +0 0.2153 +0 0.0813 +0 0.0505 +0 0.1049 +0 0.0908 +0 0.0740 +0 0.1639 +0 0.0963 +0 0.0951 +0 0.2346 +0 0.1049 +0 0.0733 +0 0.1678 +0 0.1097 +0 0.0644 +0 0.0655 +0 0.0976 +0 0.0939 +0 0.0794 +0 0.0451 +0 0.1222 +0 0.4299 +0 0.1266 +0 0.1471 +0 0.0800 +1 0.8426 +0 0.0813 +0 0.1726 +0 0.0686 +0 0.0629 +0 0.1000 +0 0.0610 +0 0.2387 +0 0.2782 +0 0.1181 +1 0.8323 +0 0.0939 +0 0.1647 +0 0.2421 +0 0.0635 +0 0.0336 +0 0.0452 +0 0.1542 +0 0.2863 +0 0.2947 +0 0.0848 +0 0.0528 +0 0.1246 +0 0.0431 +0 0.2247 +0 0.0527 +0 0.2289 +0 0.0721 +0 0.0823 +0 0.1498 +0 0.1558 +0 0.0608 +0 0.1196 +0 0.1123 +0 0.1571 +0 0.5341 +0 0.0678 +0 0.3794 +0 0.2472 +0 0.2653 +0 0.0873 +0 0.6163 +0 0.0803 +0 0.1865 +0 0.1552 +0 0.0487 +0 0.1283 +0 0.1131 +0 0.0363 +0 0.0449 +0 0.0820 +0 0.1115 +0 0.0615 +0 0.0907 +0 0.0554 +0 0.1487 +0 0.1814 +0 0.0557 +0 0.1200 +0 0.3305 +0 0.1717 +0 0.0796 +0 0.0468 +0 0.0565 +0 0.0803 +0 0.1127 +0 0.0793 +0 0.2776 +0 0.1906 +0 0.1116 +0 0.1142 +0 0.0680 +0 0.2805 +0 0.1249 +0 0.3154 +0 0.1249 +0 0.1284 +0 0.1704 +0 0.0576 +0 0.0920 +0 0.1278 +0 0.1040 +0 0.0899 +0 0.0914 +0 0.0580 +0 0.1094 +0 0.1113 +0 0.0939 +0 0.2683 +0 0.0816 +0 0.0755 +0 0.0877 +0 0.0371 +0 0.1454 +0 0.0760 +0 0.0942 +0 0.0732 +0 0.6517 +0 0.1665 +0 0.1798 +0 0.2033 +0 0.0966 +0 0.1626 +0 0.1076 +0 0.5846 +0 0.0671 +0 0.0426 +0 0.0852 +0 0.1027 +0 0.0866 +0 0.0626 +0 0.0576 +1 0.7657 +0 0.0601 +0 0.0739 +0 0.1565 +0 0.0400 +0 0.0793 +0 0.1928 +0 0.2129 +0 0.1206 +0 0.6777 +0 0.1096 +1 0.8415 +0 0.0545 +0 0.1489 +0 0.1423 +0 0.2495 +0 0.1736 +0 0.1027 +0 0.0881 +0 0.1702 +0 0.3264 +0 0.0584 +0 0.0504 +0 0.0480 +0 0.1633 +0 0.1261 +0 0.0771 +0 0.1003 +0 0.0521 +0 0.0433 +0 0.0821 +0 0.1187 +0 0.1279 +0 0.0974 +0 0.2327 +0 0.1945 +0 0.0738 +0 0.0988 +0 0.1538 +0 0.0660 +0 0.0560 +0 0.0939 +0 0.0844 +0 0.4124 +0 0.0469 +0 0.2318 +0 0.1598 +0 0.0918 +0 0.1957 +0 0.0822 +0 0.0929 +0 0.0940 +1 0.8256 +0 0.0570 +0 0.1151 +0 0.4107 +0 0.1074 +0 0.0736 +0 0.1332 +1 0.8441 +0 0.2178 +0 0.1840 +0 0.0978 +0 0.0645 +0 0.1248 +0 0.0829 +0 0.1035 +0 0.0853 +0 0.0793 +0 0.1394 +0 0.1936 +1 0.8292 +0 0.2438 +0 0.1095 +0 0.1013 +0 0.2465 +0 0.1153 +0 0.0798 +0 0.1156 +0 0.0587 +0 0.0415 +1 0.7568 +0 0.0680 +0 0.0311 +0 0.0505 +0 0.0711 +0 0.1033 +0 0.0403 +0 0.0529 +1 0.8391 +1 0.7935 +0 0.1171 +0 0.3226 +0 0.0836 +0 0.0976 +0 0.0516 +0 0.1155 +0 0.1187 +0 0.1187 +0 0.1963 +0 0.0509 +0 0.1180 +0 0.0857 +0 0.0935 +0 0.0917 +0 0.0994 +0 0.1105 +0 0.1867 +0 0.6936 +0 0.0611 +0 0.0599 +0 0.1417 +0 0.2070 +0 0.0414 +0 0.0843 +0 0.2015 +0 0.4702 +0 0.1178 +0 0.1838 +0 0.0540 +0 0.0556 +0 0.0870 +0 0.2395 +0 0.2403 +0 0.1732 +0 0.1641 +0 0.1214 +0 0.1081 +0 0.2592 +0 0.0736 +0 0.1207 +0 0.7206 +0 0.2711 +0 0.0925 +1 0.8444 +0 0.0506 +0 0.0637 +0 0.1027 +0 0.0899 +0 0.1472 +0 0.1014 +0 0.3455 +0 0.6143 +0 0.0578 +0 0.0468 +0 0.0854 +0 0.1146 +0 0.0787 +0 0.1288 +0 0.0742 +0 0.1152 +0 0.1276 +0 0.1789 +0 0.1908 +0 0.0527 +0 0.2159 +0 0.0388 +0 0.2345 +1 0.8029 +0 0.7317 +0 0.6430 +0 0.1076 +0 0.1378 +0 0.1526 +0 0.1003 +0 0.0851 +0 0.1750 +0 0.0634 +0 0.1106 +0 0.0457 +0 0.2450 +0 0.1034 +0 0.1934 +0 0.0958 +0 0.0669 +0 0.0464 +0 0.2337 +0 0.1692 +0 0.0628 +0 0.2168 +0 0.0608 +0 0.1305 +0 0.1155 +0 0.2727 +0 0.0777 +0 0.1481 +0 0.1081 +0 0.0845 +0 0.1623 +0 0.0715 +0 0.0557 +0 0.0617 +0 0.1642 +0 0.0682 +0 0.1676 +1 0.7831 +0 0.1423 +0 0.0491 +1 0.7941 +0 0.1025 +0 0.0712 +0 0.2314 +0 0.1428 +0 0.0958 +0 0.0901 +0 0.0573 +0 0.1486 +0 0.0738 +0 0.0863 +0 0.0855 +0 0.0645 +0 0.0714 +0 0.1292 +0 0.0481 +0 0.1106 +0 0.2775 +0 0.4718 +0 0.0436 +0 0.0340 +0 0.0630 +0 0.1310 +0 0.2374 +0 0.0675 +0 0.0876 +0 0.2448 +0 0.1646 +0 0.0969 +0 0.0639 +1 0.8397 +0 0.5967 +0 0.1467 +0 0.1167 +0 0.0715 +0 0.3201 +0 0.0669 +0 0.0392 +0 0.6321 +0 0.1657 +0 0.1316 +0 0.1525 +0 0.0414 +0 0.0784 +0 0.1496 +0 0.0773 +0 0.1151 +0 0.6472 +0 0.0937 +0 0.0605 +0 0.2131 +0 0.0966 +0 0.0495 +0 0.0366 +0 0.3213 +0 0.1250 +0 0.0966 +0 0.0613 +0 0.0920 +0 0.1210 +0 0.0890 +0 0.1559 +1 0.8642 +0 0.1426 +0 0.2073 +0 0.0342 +0 0.5091 +0 0.0450 +0 0.1174 +0 0.0775 +0 0.0683 +0 0.3106 +0 0.1633 +0 0.0753 +0 0.0724 +0 0.4896 +0 0.0667 +0 0.1054 +0 0.0887 +0 0.1017 +0 0.0788 +0 0.1309 +0 0.0577 +0 0.7370 +0 0.0845 +0 0.0555 +0 0.1772 +0 0.1324 +0 0.2798 +0 0.0747 +0 0.0900 +0 0.0727 +1 0.7975 +0 0.1194 +0 0.0647 +0 0.0993 +0 0.0499 +0 0.2908 +0 0.0516 +0 0.0836 +1 0.7742 +0 0.0681 +0 0.1345 +0 0.0532 +0 0.0372 +0 0.1316 +0 0.0713 +0 0.1778 +0 0.0471 +0 0.0670 +0 0.4252 +0 0.1502 +0 0.1409 +0 0.1025 +0 0.2482 +0 0.0601 +0 0.1846 +0 0.1614 +0 0.5613 +0 0.0672 +0 0.6324 +0 0.4491 +0 0.0737 +0 0.0829 +0 0.0725 +0 0.0661 +0 0.0861 +0 0.0840 +0 0.1861 +0 0.0347 +0 0.0658 +0 0.1782 +0 0.1027 +0 0.0841 +0 0.0425 +0 0.0853 +0 0.0938 +0 0.1361 +0 0.5900 +0 0.1403 +0 0.1011 +0 0.1682 +0 0.0502 +0 0.2692 +0 0.2820 +0 0.1183 +0 0.0596 +0 0.1855 +0 0.1118 +0 0.1373 +0 0.1153 +1 0.8679 +0 0.0351 +0 0.0955 +0 0.0674 +0 0.5302 +0 0.1376 +0 0.0643 +1 0.7868 +0 0.0661 +0 0.0941 +0 0.4184 +0 0.1095 +0 0.2743 +0 0.2828 +0 0.0786 +0 0.0795 +0 0.1094 +0 0.0823 +0 0.0546 +0 0.1872 +0 0.0731 +0 0.3725 +0 0.3200 +0 0.0567 +0 0.0898 +0 0.5076 +0 0.2969 +0 0.0793 +0 0.0969 +0 0.4158 +0 0.1156 +0 0.0444 +0 0.0514 +0 0.1112 +0 0.0675 +0 0.1598 +0 0.1220 +0 0.0782 +0 0.0983 +0 0.1019 +0 0.1090 +0 0.1236 +0 0.1968 +0 0.1246 +0 0.3468 +0 0.0491 +0 0.1064 +0 0.0851 +0 0.0794 +0 0.1000 +0 0.2045 +0 0.0470 +0 0.0802 +0 0.1823 +0 0.0642 +0 0.1389 +0 0.0409 +0 0.1018 +0 0.1697 +0 0.0532 +0 0.3172 +0 0.1132 +0 0.1015 +0 0.1078 +0 0.1709 +0 0.6047 +0 0.1566 +0 0.0955 +0 0.1928 +0 0.1816 +0 0.0743 +0 0.0741 +0 0.2077 +0 0.1421 +0 0.2571 +0 0.5535 +0 0.1239 +0 0.1505 +0 0.0894 +0 0.0767 +0 0.2096 +0 0.0968 +0 0.1040 +0 0.0995 +0 0.1380 +0 0.1061 +0 0.6514 +1 0.8258 +0 0.0807 +0 0.2448 +0 0.1303 +0 0.2073 +0 0.0426 +0 0.0528 +0 0.0558 +0 0.0929 +0 0.5833 +0 0.1399 +0 0.0713 +0 0.0837 +0 0.0698 +0 0.2375 +0 0.0491 +0 0.2615 +0 0.4055 +0 0.0895 +0 0.1577 +0 0.1669 +0 0.0955 +0 0.2116 +0 0.1326 +0 0.0464 +0 0.0972 +0 0.0694 +0 0.1875 +0 0.1161 +0 0.1014 +0 0.1556 +0 0.0380 +1 0.7524 +0 0.0444 +0 0.1195 +0 0.1250 +0 0.0736 +0 0.1793 +0 0.0841 +0 0.2032 +0 0.0356 +0 0.0472 +0 0.2116 +0 0.0434 +0 0.0686 +0 0.1093 +1 0.8321 +0 0.1567 +0 0.1289 +0 0.0557 +0 0.0885 +0 0.0696 +0 0.4948 +0 0.2299 +0 0.0729 +0 0.0560 +0 0.0584 +0 0.1603 +0 0.0735 +0 0.0774 +0 0.0403 +0 0.2665 +0 0.1959 +0 0.3786 +0 0.0634 +0 0.1928 +0 0.4107 +0 0.1179 +0 0.1594 +0 0.0996 +0 0.0891 +0 0.1443 +0 0.0744 +1 0.8147 +0 0.0795 +0 0.0796 +0 0.1336 +0 0.0999 +0 0.0611 +0 0.0832 +0 0.2949 +0 0.1372 +0 0.0839 +0 0.0846 +0 0.0821 +0 0.0772 +0 0.0361 +0 0.0531 +0 0.0896 +0 0.4757 +0 0.0603 +0 0.0364 +0 0.0828 +0 0.0559 +0 0.1489 +0 0.0982 +0 0.0810 +0 0.0525 +0 0.3377 +0 0.0636 +0 0.0609 +0 0.1069 +0 0.1961 +0 0.1265 +0 0.2747 +0 0.0720 +0 0.0839 +0 0.0577 +0 0.2382 +0 0.0741 +0 0.0712 +0 0.0407 +0 0.0758 +0 0.1943 +0 0.0708 +0 0.0343 +0 0.1299 +0 0.1775 +0 0.1568 +0 0.1122 +0 0.1274 +0 0.1936 +0 0.2170 +0 0.1121 +0 0.0797 +0 0.3000 +0 0.1166 +0 0.0674 +0 0.1580 +0 0.1616 +0 0.0612 +0 0.0765 +0 0.0692 +0 0.4068 +0 0.0649 +0 0.2135 +0 0.1181 +0 0.0645 +0 0.0964 +0 0.1162 +0 0.1889 +0 0.1617 +0 0.1263 +0 0.0664 +0 0.1372 +0 0.0772 +0 0.0674 +0 0.1193 +0 0.1183 +0 0.0980 +0 0.2609 +0 0.7399 +0 0.4261 +0 0.0956 +0 0.0986 +0 0.0860 +0 0.0489 +0 0.2391 +0 0.0935 +0 0.0887 +0 0.1644 +0 0.2841 +0 0.2277 +0 0.0928 +0 0.0522 +0 0.0962 +0 0.2293 +0 0.0784 +0 0.1823 +0 0.1218 +0 0.1497 +0 0.3662 +0 0.1135 +0 0.0765 +0 0.0802 +0 0.1678 +0 0.1236 +0 0.0946 +0 0.0976 +0 0.2291 +0 0.0867 +0 0.1363 +0 0.1718 +0 0.1066 +0 0.2214 +0 0.0648 +0 0.1298 +0 0.1906 +0 0.1108 +0 0.1749 +0 0.1316 +0 0.2780 +0 0.1204 +0 0.1064 +0 0.0468 +0 0.0692 +0 0.0755 +0 0.1768 +0 0.0833 +0 0.0435 +0 0.1353 +0 0.1177 +0 0.0754 +0 0.0697 +0 0.1315 +0 0.1510 +0 0.1694 +0 0.0438 +0 0.1026 +0 0.1116 +0 0.4042 +0 0.0732 +0 0.1028 +0 0.0595 +0 0.0969 +0 0.0718 +0 0.1271 +0 0.1346 +0 0.2255 +0 0.0982 +0 0.0688 +0 0.3483 +0 0.2072 +0 0.0681 +0 0.0735 +0 0.0620 +0 0.1117 +0 0.0835 +0 0.1613 +0 0.1374 +0 0.0726 +1 0.7853 +0 0.1258 +0 0.3350 +0 0.1793 +0 0.0787 +0 0.1015 +1 0.7947 +0 0.1284 +0 0.1163 +0 0.1019 +0 0.0896 +0 0.3116 +0 0.1221 +0 0.1006 +0 0.0996 +0 0.1051 +1 0.8501 +0 0.0817 +0 0.1227 +0 0.0979 +0 0.0621 +0 0.2504 +0 0.3931 +0 0.1241 +0 0.0574 +0 0.0533 +0 0.0666 +0 0.1265 +0 0.1119 +0 0.0614 +0 0.0843 +0 0.0627 +0 0.0724 +0 0.6895 +0 0.0622 +0 0.1270 +0 0.1043 +0 0.1017 +0 0.4055 +0 0.0760 +0 0.0745 +0 0.0828 +0 0.0870 +0 0.2163 +0 0.0836 +0 0.1807 +0 0.0954 +0 0.1359 +0 0.6342 +0 0.1910 +0 0.0661 +0 0.1974 +0 0.0956 +0 0.1052 +0 0.0538 +0 0.0586 +0 0.2842 +0 0.1856 +0 0.1499 +0 0.0568 +0 0.0419 +0 0.1349 +0 0.0633 +0 0.2293 +0 0.0554 +0 0.0752 +0 0.1856 +0 0.0869 +0 0.1192 +0 0.1139 +0 0.0489 +0 0.0717 +0 0.0571 +0 0.0786 +0 0.1892 +0 0.0521 +0 0.1136 +0 0.0374 +0 0.0410 +0 0.1499 +0 0.2617 +0 0.0975 +0 0.1489 +0 0.0425 +0 0.0549 +0 0.1264 +0 0.0617 +0 0.0523 +0 0.3161 +0 0.1139 +0 0.1910 +0 0.0776 +0 0.4336 +0 0.1096 +1 0.8208 +0 0.0739 +0 0.0891 +0 0.1432 +0 0.1387 +0 0.0878 +0 0.1243 +0 0.1252 +0 0.1132 +0 0.1697 +0 0.2555 +0 0.3139 +0 0.0713 +0 0.0757 +0 0.1156 +0 0.1335 +0 0.1468 +0 0.1833 +0 0.0825 +1 0.8254 +0 0.2867 +0 0.1412 +0 0.2135 +0 0.0891 +0 0.0786 +0 0.1186 +0 0.0825 +0 0.0658 +0 0.1295 +0 0.1052 +0 0.0787 +0 0.0991 +0 0.1829 +0 0.1173 +0 0.3118 +0 0.0718 +1 0.7703 +0 0.0568 +0 0.1727 +0 0.0852 +0 0.0725 +0 0.0689 +0 0.2036 +0 0.0496 +0 0.1153 +0 0.1986 +0 0.3150 +0 0.5861 +0 0.1361 +0 0.4242 +0 0.0533 +0 0.1378 +0 0.0705 +0 0.1128 +0 0.1095 +0 0.0762 +0 0.2155 +0 0.0766 +0 0.0358 +0 0.0729 +0 0.0529 +0 0.0840 +0 0.2306 +0 0.1296 +0 0.1520 +0 0.1342 +1 0.8381 +0 0.1437 +0 0.0976 +0 0.1926 +0 0.0649 +0 0.0534 +1 0.8356 +0 0.1506 +0 0.1069 +0 0.1049 +0 0.1560 +0 0.0934 +0 0.0964 +0 0.0754 +0 0.0763 +0 0.1614 +0 0.1953 +0 0.0273 +0 0.6766 +0 0.2487 +0 0.3178 +0 0.1371 +0 0.0538 +0 0.0453 +0 0.0722 +0 0.1831 +0 0.0479 +0 0.0839 +0 0.2699 +0 0.0503 +0 0.1845 +0 0.0678 +0 0.0752 +0 0.0924 +0 0.1007 +0 0.0705 +0 0.1344 +0 0.2103 +0 0.1490 +0 0.0822 +0 0.1475 +0 0.0569 +0 0.0775 +0 0.0850 +0 0.1451 +0 0.2086 +0 0.1665 +0 0.0845 +0 0.0643 +0 0.0855 +0 0.1938 +0 0.0814 +0 0.0553 +0 0.0822 +0 0.1924 +0 0.2543 +0 0.0521 +0 0.1478 +0 0.1544 +0 0.0377 +0 0.1113 +0 0.0622 +0 0.0341 +0 0.2700 +0 0.0444 +0 0.0792 +0 0.1851 +0 0.1591 +0 0.0921 +0 0.5259 +0 0.1050 +0 0.1385 +1 0.8129 +0 0.1202 +0 0.0903 +0 0.1915 +0 0.1193 +0 0.0894 +0 0.0856 +0 0.0852 +0 0.0939 +0 0.0345 +0 0.0342 +0 0.1321 +0 0.0822 +0 0.1702 +0 0.7088 +0 0.0781 +0 0.0993 +0 0.1781 +0 0.0337 +0 0.1517 +0 0.0916 +0 0.1984 +0 0.1028 +0 0.1969 +0 0.3927 +0 0.0731 +0 0.0478 +0 0.6226 +0 0.0858 +0 0.0364 +1 0.7654 +0 0.0406 +0 0.0873 +0 0.0538 +0 0.5155 +0 0.0735 +0 0.0925 +0 0.2592 +0 0.2152 +0 0.1859 +0 0.0499 +0 0.1607 +0 0.0387 +0 0.0828 +0 0.4408 +0 0.1204 +0 0.1735 +0 0.0763 +0 0.2004 +0 0.0796 +0 0.0550 +0 0.0684 +1 0.7728 +0 0.1023 +0 0.1045 +0 0.1197 +0 0.0541 +0 0.3164 +0 0.0939 +0 0.0862 +0 0.1516 +0 0.0397 +0 0.2114 +0 0.0437 +0 0.3213 +0 0.2151 +0 0.0622 +0 0.0391 +0 0.0638 +0 0.1135 +0 0.3658 +0 0.3268 +0 0.0673 +0 0.1609 +0 0.0836 +0 0.0949 +0 0.0698 +0 0.0494 +0 0.1704 +0 0.0513 +0 0.1681 +0 0.0490 +0 0.1385 +0 0.1029 +0 0.0826 +0 0.0918 +0 0.0462 +0 0.0793 +0 0.1608 +0 0.0672 +0 0.0896 +0 0.2473 +0 0.1459 +0 0.0375 +0 0.0830 +0 0.0593 +0 0.1143 +0 0.0795 +0 0.1459 +0 0.1959 +0 0.0582 +0 0.2554 +0 0.0584 +0 0.1629 +0 0.0883 +0 0.0597 +0 0.1891 +0 0.0971 +0 0.1026 +0 0.3804 +0 0.0765 +0 0.1614 +0 0.1580 +0 0.0824 +0 0.0437 +0 0.0764 +0 0.1718 +0 0.1130 +0 0.1630 +0 0.0744 +0 0.0488 +0 0.1477 +0 0.0735 +0 0.0620 +0 0.1182 +0 0.0729 +0 0.1255 +0 0.1768 +0 0.3433 +0 0.4249 +0 0.1570 +0 0.0681 +0 0.0557 +0 0.2594 +0 0.1166 +0 0.1489 +0 0.1289 +0 0.0569 +0 0.1191 +0 0.3802 +0 0.0865 +0 0.0307 +0 0.1201 +0 0.0869 +0 0.0747 +0 0.0553 +0 0.0668 +0 0.1296 +0 0.0914 +0 0.0832 +0 0.0639 +0 0.0697 +0 0.0370 +0 0.1665 +0 0.1441 +0 0.1008 +1 0.8100 +0 0.0648 +0 0.0690 +0 0.1171 +0 0.0718 +0 0.0573 +0 0.1440 +0 0.0760 +0 0.1358 +0 0.0945 +0 0.6765 +0 0.0357 +0 0.1505 +0 0.0733 +0 0.1451 +0 0.1095 +0 0.0502 +0 0.0346 +0 0.0900 +0 0.3012 +0 0.1496 +0 0.0443 +1 0.8112 +0 0.1908 +0 0.0688 +0 0.2200 +0 0.0982 +0 0.1413 +0 0.0466 +0 0.0383 +0 0.1345 +0 0.1794 +0 0.1400 +0 0.0780 +0 0.1208 +0 0.0401 +0 0.6474 +0 0.0662 +0 0.2488 +0 0.1732 +0 0.0902 +0 0.2347 +0 0.0364 +0 0.1999 +0 0.0472 +0 0.0880 +0 0.0964 +0 0.0588 +1 0.7812 +0 0.0978 +0 0.0735 +0 0.1297 +0 0.1108 +0 0.0323 +0 0.0899 +0 0.0749 +0 0.1580 +0 0.2727 +0 0.0705 +0 0.0867 +0 0.0906 +0 0.0990 +0 0.4405 +0 0.1021 +0 0.0547 +0 0.1154 +0 0.2331 +0 0.1017 +0 0.0666 +0 0.1220 +0 0.1785 +0 0.0947 +0 0.0527 +0 0.0354 +0 0.1400 +0 0.1466 +0 0.1698 +0 0.0511 +0 0.0769 +0 0.1388 +0 0.1565 +0 0.3066 +0 0.1303 +0 0.0588 +0 0.0707 +0 0.2385 +0 0.0825 +0 0.1633 +0 0.3155 +0 0.1540 +0 0.1044 +0 0.0583 +0 0.0442 +0 0.1335 +0 0.0496 +0 0.0428 +0 0.0914 +0 0.0941 +0 0.1859 +0 0.5310 +0 0.0932 +0 0.0439 +0 0.1825 +0 0.0916 +0 0.0782 +0 0.1398 +0 0.0420 +0 0.0911 +0 0.0481 +0 0.2479 +0 0.0876 +0 0.0882 +0 0.0853 +0 0.0676 +0 0.0517 +0 0.0547 +0 0.1104 +0 0.0735 +0 0.2414 +0 0.0970 +0 0.0756 +0 0.1245 +0 0.0945 +0 0.1052 +0 0.1396 +0 0.0752 +0 0.1131 +0 0.0850 +0 0.0527 +0 0.1670 +0 0.0897 +0 0.2840 +0 0.0466 +0 0.1173 +0 0.1060 +0 0.3330 +0 0.1635 +0 0.1987 +0 0.0316 +0 0.1428 +0 0.5294 +0 0.0864 +0 0.1401 +0 0.1266 +0 0.1581 +0 0.1073 +0 0.1617 +0 0.0761 +0 0.0481 +0 0.1127 +0 0.1993 +0 0.1519 +0 0.0345 +0 0.3630 +0 0.1200 +0 0.0444 +0 0.0872 +0 0.5308 +0 0.0752 +0 0.1177 +0 0.0720 +0 0.0574 +0 0.2282 +0 0.1026 +0 0.0703 +0 0.6090 +0 0.1181 +0 0.2133 +0 0.0732 +0 0.0752 +0 0.3494 +0 0.0770 +0 0.1828 +0 0.1057 +0 0.0502 +0 0.0959 +0 0.1922 +0 0.2177 +0 0.0776 +0 0.2643 +0 0.0575 +1 0.7503 +0 0.0701 +1 0.8740 +0 0.1637 +0 0.0757 +0 0.0734 +0 0.3015 +0 0.0354 +0 0.1385 +0 0.0922 +0 0.0747 +0 0.1561 +0 0.3023 +0 0.0719 +0 0.1752 +0 0.0955 +0 0.1454 +0 0.1746 +0 0.0892 +0 0.0402 +0 0.0845 +0 0.0494 +0 0.1580 +0 0.2320 +0 0.3933 +0 0.1598 +0 0.0918 +0 0.0396 +0 0.0996 +0 0.0925 +0 0.0590 +0 0.1026 +0 0.0357 +0 0.2050 +0 0.3876 +0 0.0552 +0 0.1141 +0 0.0691 +0 0.1995 +0 0.0685 +0 0.0808 +0 0.0479 +0 0.0948 +0 0.1162 +0 0.0729 +0 0.1354 +0 0.6927 +0 0.1465 +1 0.8713 +0 0.1614 +0 0.0917 +0 0.1859 +0 0.0786 +0 0.1020 +0 0.1174 +0 0.1145 +0 0.0914 +0 0.1483 +0 0.0762 +0 0.2078 +0 0.1000 +0 0.1076 +0 0.1373 +0 0.0721 +0 0.0516 +0 0.1111 +0 0.6206 +0 0.1224 +0 0.5809 +0 0.1324 +0 0.1108 +0 0.1223 +0 0.0480 +0 0.0751 +0 0.0770 +0 0.0684 +0 0.0733 +0 0.0582 +0 0.1048 +0 0.0866 +0 0.0601 +0 0.1834 +0 0.1707 +0 0.0509 +0 0.0392 +1 0.8340 +0 0.0873 +0 0.0858 +0 0.1437 +0 0.2520 +0 0.1769 +0 0.1937 +0 0.1256 +0 0.1144 +0 0.2043 +0 0.1022 +0 0.2189 +0 0.0334 +0 0.1878 +0 0.0811 +0 0.1243 +0 0.1736 +0 0.0479 +0 0.1131 +0 0.0661 +0 0.0750 +0 0.0959 +0 0.1200 +0 0.0915 +0 0.0432 +0 0.1128 +0 0.0675 +0 0.0372 +0 0.2153 +0 0.1231 +0 0.0386 +0 0.0519 +0 0.0560 +0 0.6148 +0 0.0881 +0 0.2971 +0 0.0860 +0 0.0879 +1 0.7815 +0 0.0496 +0 0.0663 +0 0.2098 +0 0.3394 +0 0.2171 +0 0.0778 +0 0.0818 +0 0.2116 +0 0.0630 +0 0.0800 +0 0.1814 +0 0.0960 +0 0.1670 +0 0.0857 +0 0.0816 +0 0.1118 +0 0.0742 +0 0.2751 +0 0.2429 +0 0.1338 +0 0.2953 +0 0.1408 +0 0.0482 +0 0.0796 +0 0.7483 +0 0.2539 +0 0.0785 +0 0.1734 +0 0.1681 +0 0.4988 +0 0.1917 +0 0.0916 +0 0.0976 +0 0.1528 +0 0.6954 +0 0.0698 +0 0.0578 +0 0.0994 +0 0.0915 +0 0.1149 +0 0.2505 +0 0.1429 +0 0.5998 +0 0.1160 +1 0.7991 +0 0.0985 +0 0.1767 +0 0.0804 +0 0.1153 +0 0.0799 +0 0.0779 +0 0.0432 +0 0.0926 +0 0.0486 +0 0.0992 +0 0.3270 +0 0.1710 +0 0.0633 +0 0.0820 +0 0.1026 +0 0.0689 +0 0.4246 +0 0.0691 +0 0.1386 +0 0.3704 +0 0.4244 +0 0.0836 +0 0.0652 +0 0.1720 +0 0.0534 +0 0.0980 +0 0.0565 +0 0.1583 +0 0.0774 +0 0.2799 +0 0.1249 +0 0.0691 +0 0.4585 +0 0.0761 +0 0.0649 +0 0.0939 +0 0.1667 +0 0.0530 +0 0.2100 +0 0.0525 +0 0.1265 +0 0.2945 +0 0.1274 +0 0.1873 +0 0.0529 +0 0.1215 +0 0.3209 +0 0.1411 +0 0.0522 +0 0.0667 +0 0.1773 +0 0.0798 +0 0.1042 +0 0.0682 +0 0.0535 +0 0.0562 +0 0.1190 +0 0.1751 +0 0.1407 +0 0.0849 +0 0.0768 +0 0.1783 +0 0.0598 +0 0.6792 +0 0.1729 +0 0.0994 +0 0.0499 +0 0.1420 +0 0.1234 +0 0.2379 +0 0.1391 +0 0.2050 +0 0.2117 +0 0.0833 +0 0.1768 +0 0.0956 +0 0.0858 +0 0.2544 +0 0.0845 +0 0.1345 +0 0.2386 +0 0.1448 +0 0.2457 +0 0.0902 +0 0.0523 +0 0.0492 +0 0.1332 +0 0.0419 +0 0.1098 +0 0.0920 +0 0.0696 +0 0.1953 +0 0.0730 +0 0.0803 +0 0.1198 +0 0.0677 +0 0.0988 +0 0.5661 +0 0.0542 +0 0.3358 +0 0.0923 +0 0.0610 +0 0.1148 +0 0.1751 +1 0.7606 +0 0.0616 +0 0.0466 +0 0.1849 +0 0.0960 +0 0.2016 +0 0.1928 +0 0.0787 +0 0.0371 +0 0.0460 +0 0.0661 +0 0.0458 +1 0.7826 +0 0.2424 +0 0.4940 +0 0.2536 +1 0.7818 +0 0.2301 +0 0.2726 +0 0.0823 +0 0.0687 +0 0.0686 +0 0.0446 +0 0.0585 +0 0.0635 +0 0.2289 +0 0.0785 +0 0.0674 +0 0.0745 +0 0.0707 +0 0.2358 +0 0.7068 +0 0.0338 +0 0.2800 +0 0.0771 +0 0.0792 +0 0.1730 +0 0.0861 +0 0.1794 +0 0.0856 +0 0.0512 +0 0.0862 +0 0.1695 +0 0.0569 +0 0.1693 +0 0.6876 +0 0.1772 +0 0.2760 +0 0.0418 +0 0.1259 +0 0.1998 +0 0.5038 +0 0.0450 +0 0.0885 +0 0.0743 +0 0.1066 +0 0.0398 +0 0.0888 +0 0.2338 +0 0.7262 +0 0.0669 +0 0.0821 +0 0.1958 +1 0.7861 +0 0.2093 +0 0.1662 +1 0.7547 +0 0.1821 +0 0.2999 +0 0.0879 +0 0.0792 +0 0.0425 +0 0.0667 +0 0.0413 +0 0.1713 +0 0.0537 +0 0.5828 +0 0.1962 +0 0.1833 +0 0.0907 +0 0.0347 +0 0.1592 +0 0.1040 +0 0.0895 +0 0.1030 +0 0.0813 +0 0.0885 +0 0.5811 +0 0.1697 +0 0.0461 +0 0.0433 +0 0.1876 +0 0.1108 +0 0.0712 +0 0.0697 +0 0.1134 +0 0.0669 +0 0.0577 +0 0.1074 +0 0.0665 +0 0.1337 +0 0.0639 +0 0.1652 +1 0.7509 +0 0.1018 +0 0.1064 +0 0.0850 +0 0.1129 +0 0.1413 +0 0.0850 +0 0.2669 +0 0.0422 +0 0.0621 +0 0.0425 +0 0.0786 +0 0.1396 +0 0.1147 +0 0.1550 +0 0.0790 +0 0.0624 +0 0.0832 +0 0.0496 +0 0.0709 +0 0.0843 +0 0.0795 +0 0.2177 +0 0.0911 +0 0.0506 +0 0.0790 +0 0.0641 +0 0.1594 +0 0.0524 +0 0.0719 +1 0.7829 +0 0.1971 +0 0.1829 +0 0.0926 +0 0.0923 +0 0.1258 +0 0.1291 +0 0.1383 +0 0.0624 +0 0.1004 +0 0.0966 +0 0.0657 +0 0.1916 +0 0.1743 +0 0.0834 +0 0.1152 +0 0.0755 +0 0.1021 +0 0.0908 +0 0.1312 +0 0.1664 +0 0.0730 +0 0.6233 +0 0.1593 +0 0.0533 +0 0.0456 +0 0.1158 +0 0.0895 +0 0.1110 +0 0.3281 +0 0.0764 +0 0.0862 +0 0.2146 +0 0.6784 +0 0.0711 +0 0.1668 +0 0.1302 +0 0.1433 +0 0.0796 +0 0.0779 +0 0.0986 +0 0.1969 +0 0.1464 +0 0.1134 +0 0.0688 +0 0.1595 +0 0.1519 +0 0.0827 +0 0.1007 +0 0.0434 +0 0.0682 +0 0.0620 +0 0.1192 +0 0.3298 +0 0.1200 +0 0.0874 +0 0.0525 +1 0.7844 +0 0.5731 +0 0.0613 +0 0.0542 +0 0.1033 +0 0.0731 +0 0.0969 +0 0.0893 +0 0.0796 +0 0.1110 +0 0.0710 +0 0.2883 +0 0.0698 +1 0.8206 +0 0.2628 +0 0.0739 +0 0.1060 +0 0.1843 +0 0.2510 +0 0.3684 +0 0.0954 +0 0.1168 +0 0.1288 +0 0.1251 +0 0.1052 +0 0.0859 +0 0.0432 +0 0.0904 +0 0.1045 +0 0.1080 +0 0.3889 +0 0.2541 +0 0.0471 +0 0.0580 +0 0.1791 +0 0.1040 +0 0.1445 +0 0.1059 +0 0.1262 +0 0.0784 +0 0.0973 +0 0.0607 +0 0.0778 +0 0.1394 +0 0.1224 +0 0.6217 +0 0.1090 +0 0.1147 +0 0.0453 +0 0.0874 +0 0.2156 +0 0.0772 +0 0.0630 +0 0.1059 +0 0.1982 +0 0.1693 +0 0.1010 +0 0.1173 +0 0.1259 +0 0.7370 +0 0.0653 +0 0.0593 +0 0.1885 +0 0.0907 +0 0.3859 +0 0.1148 +0 0.0873 +0 0.1943 +0 0.3300 +0 0.1341 +0 0.0880 +0 0.2360 +0 0.6840 +0 0.0834 +0 0.1702 +0 0.0613 +0 0.0761 +0 0.1203 +0 0.0565 +0 0.3714 +0 0.0632 +0 0.0723 +0 0.0808 +0 0.1422 +0 0.0882 +0 0.1007 +0 0.0651 +0 0.7392 +0 0.1697 +0 0.3055 +0 0.2364 +0 0.1368 +0 0.1439 +0 0.1962 +1 0.8349 +0 0.1764 +0 0.1766 +0 0.0681 +0 0.2504 +0 0.0680 +0 0.1417 +0 0.0770 +0 0.3882 +0 0.1967 +0 0.1356 +0 0.6785 +0 0.0529 +0 0.5687 +0 0.0648 +0 0.2699 +0 0.1105 +0 0.0695 +0 0.1024 +0 0.2156 +0 0.2652 +0 0.1003 +0 0.1587 +0 0.0952 +1 0.8328 +0 0.1422 +0 0.1511 +0 0.0320 +0 0.3033 +0 0.0593 +0 0.1060 +0 0.1257 +0 0.6461 +1 0.8244 +0 0.0763 +0 0.0922 +0 0.0724 +0 0.0833 +0 0.1312 +0 0.3121 +0 0.1466 +0 0.0898 +0 0.0469 +0 0.0816 +0 0.7426 +0 0.0637 +0 0.2071 +0 0.0652 +0 0.0873 +0 0.1586 +0 0.1212 +0 0.2652 +0 0.2013 +0 0.0788 +0 0.0610 +0 0.0442 +0 0.1171 +0 0.2108 +0 0.1391 +0 0.1347 +0 0.1078 +0 0.0858 +0 0.2164 +0 0.0649 +0 0.0774 +0 0.2268 +0 0.0365 +0 0.1581 +0 0.1257 +0 0.1150 +0 0.1098 +0 0.1825 +0 0.3491 +0 0.0865 +0 0.0620 +0 0.0668 +0 0.0698 +1 0.7755 +0 0.0892 +0 0.0974 +0 0.3988 +0 0.0552 +0 0.0601 +0 0.1073 +0 0.0798 +0 0.0881 +0 0.1740 +0 0.0726 +0 0.0688 +0 0.1388 +0 0.1068 +0 0.0830 +0 0.0651 +0 0.0781 +0 0.1081 +0 0.5941 +0 0.1158 +0 0.0587 +0 0.0589 +0 0.1823 +0 0.0470 +0 0.5429 +1 0.8660 +0 0.1248 +0 0.2093 +0 0.1202 +0 0.0768 +0 0.0422 +0 0.3722 +0 0.0802 +0 0.0836 +0 0.1048 +0 0.1171 +0 0.2329 +0 0.1261 +0 0.1534 +0 0.1430 +0 0.1745 +0 0.1365 +0 0.0551 +0 0.1423 +0 0.0809 +1 0.8330 +0 0.1003 +0 0.0705 +0 0.0442 +0 0.0730 +0 0.0833 +0 0.0624 +0 0.0424 +0 0.1386 +0 0.0717 +0 0.0909 +0 0.1655 +0 0.0433 +0 0.0633 +0 0.1868 +0 0.1858 +0 0.1146 +0 0.0728 +0 0.1150 +0 0.1289 +0 0.2084 +0 0.6960 +0 0.1686 +0 0.2274 +0 0.1217 +0 0.0790 +0 0.0803 +0 0.3335 +0 0.1198 +0 0.1304 +0 0.0587 +0 0.2032 +0 0.4539 +0 0.1295 +0 0.0653 +0 0.1381 +0 0.1251 +0 0.1215 +0 0.1406 +0 0.0781 +0 0.0366 +0 0.3506 +0 0.0748 +0 0.0834 +0 0.0503 +0 0.2694 +0 0.1484 +0 0.1972 +0 0.1172 +0 0.1401 +0 0.0804 +0 0.1043 +0 0.1619 +0 0.1281 +0 0.0947 +0 0.0499 +0 0.0933 +0 0.1850 +0 0.1345 +0 0.1152 +0 0.0480 +0 0.1419 +0 0.0456 +0 0.1740 +0 0.0546 +0 0.3520 +0 0.1951 +0 0.0385 +0 0.0552 +0 0.1438 +0 0.0563 +0 0.0616 +0 0.0602 +0 0.0611 +0 0.1365 +0 0.5080 +0 0.0545 +0 0.1445 +0 0.2293 +0 0.0353 +0 0.0736 +0 0.2094 +0 0.0797 +0 0.1359 +0 0.1367 +0 0.0884 +0 0.0996 +0 0.0669 +0 0.5653 +0 0.3966 +0 0.0833 +0 0.0596 +0 0.7296 +0 0.1768 +0 0.1526 +0 0.0520 +0 0.0774 +0 0.6489 +0 0.0536 +0 0.0822 +0 0.1136 +0 0.0851 +0 0.1319 +0 0.1178 +0 0.0777 +0 0.1778 +0 0.6745 +0 0.1776 +0 0.1078 +0 0.0758 +0 0.0849 +0 0.0442 +0 0.0987 +0 0.1102 +1 0.8200 +0 0.0937 +0 0.1118 +0 0.4789 +0 0.2808 +0 0.0698 +1 0.7524 +0 0.1283 +0 0.1095 +0 0.0872 +0 0.0652 +0 0.1072 +0 0.0542 +0 0.0753 +0 0.0372 +0 0.1113 +0 0.1304 +0 0.2069 +0 0.0773 +0 0.0659 +0 0.1919 +0 0.0437 +0 0.0801 +0 0.1602 +0 0.0413 +0 0.2595 +0 0.0714 +0 0.2078 +0 0.0726 +0 0.0782 +1 0.8357 +0 0.0834 +0 0.1010 +0 0.0766 +0 0.1164 +0 0.1508 +0 0.0419 +0 0.6796 +0 0.0502 +0 0.0785 +0 0.4189 +0 0.0383 +0 0.0617 +0 0.1265 +0 0.1234 +0 0.0610 +0 0.0948 +0 0.1461 +0 0.0896 +0 0.0901 +0 0.2401 +0 0.1158 +0 0.1502 +0 0.1003 +0 0.7235 +0 0.1310 +0 0.1363 +0 0.1169 +0 0.0597 +0 0.4899 +0 0.2756 +0 0.2245 +0 0.0575 +0 0.0532 +0 0.0807 +0 0.2766 +0 0.1047 +0 0.3696 +0 0.0987 +0 0.0567 +0 0.0719 +0 0.4050 +0 0.1107 +0 0.2821 +0 0.1279 +0 0.7427 +0 0.1074 +0 0.1408 +0 0.0919 +1 0.7848 +0 0.1556 +0 0.1141 +0 0.0508 +0 0.1757 +0 0.0784 +0 0.0744 +0 0.0963 +0 0.1492 +0 0.1255 +0 0.0692 +0 0.1826 +0 0.2931 +0 0.2490 +0 0.1134 +0 0.0995 +0 0.1821 +0 0.2233 +0 0.2304 +0 0.5175 +0 0.1631 +0 0.0904 +0 0.2358 +0 0.2438 +0 0.0525 +0 0.0886 +0 0.0509 +0 0.0996 +0 0.0659 +0 0.1005 +0 0.0332 +0 0.1127 +0 0.2165 +0 0.1926 +0 0.0921 +0 0.0692 +0 0.2623 +0 0.1052 +0 0.0719 +0 0.1097 +0 0.0648 +0 0.1776 +0 0.1089 +0 0.2211 +0 0.0876 +0 0.0596 +0 0.1306 +0 0.0698 +0 0.0312 +0 0.0967 +0 0.3708 +0 0.1076 +0 0.0822 +1 0.7717 +0 0.1721 +0 0.0798 +0 0.1786 +0 0.0529 +0 0.1374 +0 0.1049 +0 0.1484 +0 0.1400 +0 0.1380 +0 0.0854 +0 0.1275 +0 0.1151 +0 0.1441 +0 0.0905 +0 0.0818 +0 0.1823 +0 0.0843 +0 0.1715 +0 0.0878 +0 0.2356 +0 0.0770 +0 0.0634 +0 0.2563 +0 0.1934 +0 0.2396 +0 0.2929 +0 0.1131 +0 0.1902 +0 0.2483 +0 0.1228 +0 0.1005 +0 0.1016 +0 0.0523 +0 0.0453 +0 0.0964 +0 0.2443 +0 0.1338 +0 0.1473 +0 0.0442 +0 0.3233 +0 0.0822 +0 0.1090 +0 0.0961 +0 0.1892 +0 0.0969 +0 0.1042 +0 0.0524 +0 0.2939 +0 0.1077 +0 0.1132 +0 0.4871 +1 0.8721 +0 0.2270 +0 0.1247 +0 0.1133 +0 0.0494 +0 0.1055 +0 0.0795 +0 0.0782 +0 0.0738 +0 0.1314 +0 0.0794 +0 0.1983 +0 0.1771 +0 0.0944 +0 0.0515 +0 0.1174 +0 0.0394 +0 0.0415 +0 0.1100 +0 0.4926 +0 0.0681 +0 0.0721 +0 0.0850 +0 0.0909 +0 0.0770 +0 0.0461 +0 0.1233 +0 0.1694 +0 0.0763 +0 0.2221 +0 0.0642 +0 0.3525 +0 0.0778 +0 0.1147 +0 0.2004 +0 0.1368 +0 0.0607 +0 0.1146 +0 0.0843 +0 0.0853 +0 0.1069 +0 0.6527 +0 0.0736 +0 0.3103 +0 0.0922 +0 0.6453 +0 0.0793 +0 0.1972 +0 0.1450 +0 0.1557 +0 0.0402 +0 0.7485 +0 0.2126 +0 0.0806 +0 0.0541 +0 0.1936 +0 0.1509 +0 0.1264 +0 0.0977 +0 0.0574 +0 0.2327 +0 0.1166 +0 0.0907 +0 0.5552 +0 0.0780 +0 0.0632 +0 0.6542 +0 0.0473 +0 0.1329 +0 0.1209 +0 0.0653 +0 0.1136 +0 0.0796 +0 0.1164 +0 0.3291 +0 0.1319 +0 0.0804 +0 0.1244 +0 0.1580 +0 0.1277 +0 0.1103 +0 0.0858 +0 0.0725 +0 0.0873 +0 0.0711 +0 0.1881 +0 0.1502 +0 0.1125 +0 0.0672 +0 0.2137 +0 0.0671 +0 0.4166 +0 0.1336 +0 0.0647 +0 0.1185 +0 0.0766 +0 0.2836 +0 0.0835 +0 0.1530 +0 0.0936 +0 0.1382 +0 0.0943 +0 0.0916 +0 0.1612 +0 0.4759 +0 0.0985 +0 0.1288 +0 0.0785 +1 0.7793 +0 0.1106 +0 0.0586 +0 0.1138 +0 0.0685 +0 0.1107 +0 0.0891 +0 0.0661 +0 0.0647 +0 0.1420 +0 0.1077 +0 0.0612 +0 0.3907 +0 0.0983 +0 0.1079 +0 0.1895 +0 0.1737 +0 0.2841 +0 0.0466 +0 0.3864 +0 0.0689 +0 0.2312 +1 0.8075 +0 0.0521 +0 0.5424 +0 0.2132 +0 0.1153 +0 0.1088 +0 0.1002 +0 0.2267 +0 0.1606 +0 0.0624 +0 0.1519 +0 0.0837 +0 0.0448 +0 0.1139 +0 0.0908 +0 0.0530 +0 0.0986 +0 0.0720 +0 0.3067 +0 0.0987 +0 0.1073 +0 0.0416 +0 0.1803 +1 0.8684 +0 0.0685 +0 0.0576 +0 0.0817 +0 0.1225 +0 0.2216 +0 0.0815 +0 0.0628 +0 0.5893 +0 0.0834 +0 0.4705 +0 0.1132 +0 0.0981 +0 0.0875 +0 0.1094 +0 0.0687 +0 0.1617 +0 0.0791 +0 0.0670 +0 0.5102 +0 0.1215 +0 0.0884 +0 0.2193 +0 0.0922 +0 0.1160 +0 0.0709 +0 0.1060 +0 0.5486 +0 0.2187 +0 0.1098 +0 0.1099 +0 0.3844 +0 0.1570 +0 0.0496 +0 0.0978 +0 0.0731 +0 0.0963 +0 0.0344 +0 0.0952 +0 0.0672 +0 0.0984 +0 0.0863 +0 0.2055 +0 0.1759 +0 0.0643 +0 0.3768 +0 0.0491 +0 0.0395 +0 0.1417 +0 0.0786 +0 0.6458 +0 0.1103 +0 0.0465 +0 0.2496 +0 0.5929 +0 0.0468 +0 0.0578 +0 0.1156 +0 0.0533 +0 0.0983 +0 0.7171 +0 0.1029 +0 0.0534 +0 0.0559 +0 0.0920 +0 0.1040 +0 0.0450 +0 0.0393 +0 0.1736 +0 0.0924 +0 0.0563 +0 0.1097 +0 0.1007 +0 0.2403 +0 0.0811 +0 0.0939 +0 0.0532 +0 0.1055 +0 0.0869 +0 0.0524 +0 0.0744 +0 0.1793 +0 0.1045 +0 0.1875 +0 0.1742 +0 0.1123 +0 0.0850 +0 0.0708 +0 0.1201 +0 0.0556 +0 0.0985 +0 0.1724 +0 0.1805 +0 0.0489 +0 0.1654 +0 0.2828 +0 0.1109 +0 0.0902 +0 0.1684 +0 0.2437 +0 0.6019 +0 0.1286 +0 0.1893 +0 0.2228 +0 0.1767 +0 0.1298 +0 0.0932 +0 0.2667 +0 0.0971 +0 0.0970 +0 0.1090 +0 0.2892 +0 0.2583 +0 0.0775 +0 0.4090 +0 0.0731 +0 0.0833 +0 0.0528 +0 0.0623 +0 0.0632 +0 0.0638 +0 0.0728 +0 0.0682 +0 0.1297 +0 0.1666 +0 0.6145 +0 0.0983 +0 0.0619 +0 0.0978 +0 0.0792 +0 0.0921 +0 0.0434 +0 0.2146 +0 0.0577 +0 0.0623 +0 0.0832 +0 0.1515 +0 0.3055 +0 0.0827 +0 0.0902 +0 0.0418 +0 0.0679 +0 0.5437 +0 0.0643 +0 0.1623 +0 0.1471 +0 0.0821 +0 0.1811 +0 0.1064 +0 0.0758 +0 0.0675 +0 0.1386 +0 0.0988 +0 0.0948 +0 0.0915 +0 0.1505 +0 0.3446 +0 0.1643 +0 0.1055 +0 0.0791 +0 0.0888 +0 0.1736 +0 0.1257 +0 0.0606 +0 0.1262 +0 0.1253 +0 0.0466 +0 0.1342 +0 0.0722 +0 0.0834 +0 0.0755 +0 0.1499 +0 0.1920 +0 0.0477 +0 0.1665 +0 0.0656 +0 0.1533 +0 0.1243 +0 0.1196 +0 0.0782 +0 0.1041 +0 0.0867 +0 0.1062 +0 0.0799 +0 0.0984 +0 0.2473 +0 0.5071 +0 0.0880 +0 0.7495 +0 0.0983 +0 0.2102 +0 0.0787 +0 0.0971 +0 0.0716 +0 0.0624 +0 0.1017 +0 0.2496 +0 0.1980 +0 0.0364 +0 0.0780 +0 0.0756 +0 0.0927 +0 0.1795 +0 0.0513 +0 0.0558 +0 0.3414 +0 0.0518 +0 0.0638 +0 0.0737 +0 0.2957 +0 0.1026 +0 0.4017 +0 0.0773 +0 0.1376 +0 0.1302 +0 0.1085 +0 0.0621 +0 0.0350 +0 0.1460 +0 0.3623 +0 0.1041 +0 0.5290 +0 0.0538 +0 0.3778 +0 0.1696 +0 0.1365 +0 0.0618 +0 0.1268 +0 0.1740 +0 0.0881 +0 0.1237 +0 0.2176 +0 0.1397 +0 0.1001 +0 0.1230 +0 0.0335 +0 0.0974 +0 0.1865 +0 0.0984 +0 0.0693 +0 0.0620 +0 0.1184 +0 0.1916 +0 0.0688 +0 0.1613 +0 0.0552 +0 0.3623 +0 0.1788 +0 0.1978 +0 0.0800 +0 0.2759 +0 0.1158 +0 0.1058 +0 0.1277 +0 0.1782 +0 0.1836 +0 0.2636 +0 0.1325 +0 0.1616 +0 0.1025 +0 0.0476 +0 0.1352 +0 0.0772 +0 0.3307 +0 0.0366 +0 0.1143 +0 0.0508 +0 0.0962 +0 0.3900 +0 0.3491 +0 0.3224 +0 0.2874 +0 0.0751 +0 0.1729 +0 0.4403 +0 0.0817 +0 0.3110 +0 0.0659 +0 0.0845 +0 0.1282 +0 0.1633 +0 0.1926 +0 0.0699 +0 0.0426 +0 0.0728 +0 0.1284 +0 0.1960 +0 0.0869 +0 0.0656 +0 0.0518 +0 0.0726 +0 0.6819 +0 0.4088 +0 0.0537 +0 0.0841 +0 0.1443 +0 0.1811 +0 0.0602 +0 0.0512 +0 0.0908 +0 0.0992 +0 0.0969 +0 0.0561 +0 0.2096 +0 0.2206 +0 0.1393 +0 0.1009 +0 0.0661 +0 0.2276 +0 0.0717 +0 0.0393 +0 0.1792 +0 0.1765 +0 0.0572 +0 0.1152 +0 0.3447 +0 0.1424 +0 0.0717 +0 0.0761 +0 0.1655 +0 0.0885 +0 0.0955 +0 0.0852 +0 0.0379 +0 0.1637 +0 0.1283 +0 0.0765 +0 0.1109 +0 0.1210 +0 0.0728 +0 0.1130 +0 0.1870 +0 0.2874 +0 0.1390 +0 0.0950 +0 0.0922 +0 0.1231 +0 0.1661 +0 0.2129 +0 0.0488 +0 0.2039 +0 0.0598 +0 0.1368 +0 0.1426 +0 0.0588 +0 0.0518 +0 0.0674 +0 0.1033 +0 0.0836 +0 0.0903 +0 0.1902 +0 0.1524 +0 0.0512 +0 0.0724 +0 0.1254 +0 0.2742 +0 0.1192 +0 0.0417 +0 0.0962 +0 0.1883 +0 0.0610 +0 0.4797 +0 0.2425 +0 0.1022 +0 0.0568 +0 0.0695 +0 0.1596 +0 0.0456 +0 0.0944 +0 0.3084 +0 0.0816 +0 0.0553 +0 0.0674 +1 0.7600 +0 0.1308 +0 0.1197 +0 0.1350 +0 0.2278 +0 0.0589 +0 0.1021 +0 0.0576 +0 0.0605 +0 0.0947 +1 0.8555 +0 0.3105 +0 0.1228 +0 0.3940 +0 0.0577 +0 0.0550 +0 0.0759 +0 0.2637 +0 0.0420 +0 0.1442 +0 0.1535 +0 0.0306 +0 0.4093 +0 0.2277 +0 0.0482 +0 0.1990 +0 0.0874 +0 0.1836 +0 0.0579 +0 0.0969 +0 0.0949 +0 0.0444 +0 0.1321 +0 0.1754 +0 0.1004 +0 0.1908 +0 0.0562 +0 0.1688 +0 0.4048 +0 0.0872 +0 0.0526 +0 0.1657 +0 0.1465 +0 0.0858 +0 0.3054 +0 0.0920 +0 0.2608 +1 0.8019 +0 0.0824 +0 0.1151 +0 0.0769 +0 0.0843 +0 0.0644 +0 0.6300 +0 0.1971 +0 0.1322 +0 0.1246 +0 0.0976 +0 0.0606 +0 0.0928 +0 0.0697 +0 0.0603 +0 0.1657 +0 0.0756 +0 0.0774 +0 0.0877 +0 0.0426 +1 0.7999 +0 0.2309 +0 0.1544 +0 0.1494 +0 0.0889 +0 0.0593 +0 0.1240 +0 0.0547 +0 0.0730 +0 0.4388 +1 0.7681 +0 0.1907 +0 0.0926 +0 0.0590 +0 0.1558 +0 0.0847 +0 0.1419 +0 0.1214 +0 0.1474 +0 0.0363 +0 0.3096 +0 0.1562 +0 0.0846 +0 0.1025 +1 0.8294 +0 0.0918 +1 0.8207 +0 0.0674 +0 0.1726 +0 0.4949 +0 0.0994 +0 0.3220 +0 0.6755 +0 0.1674 +0 0.2489 +0 0.1124 +0 0.1219 +0 0.0862 +0 0.0676 +0 0.0616 +0 0.1335 +0 0.1024 +0 0.2665 +0 0.2079 +0 0.0659 +0 0.0452 +0 0.1006 +0 0.1477 +0 0.1341 +0 0.1361 +0 0.0759 +0 0.1297 +0 0.1326 +0 0.0482 +0 0.0678 +0 0.2123 +0 0.0930 +0 0.0487 +0 0.1018 +0 0.0787 +0 0.1059 +0 0.0658 +0 0.0932 +0 0.0577 +0 0.1129 +0 0.1335 +0 0.2470 +0 0.0605 +0 0.1299 +0 0.0926 +0 0.1194 +0 0.0829 +0 0.1986 +0 0.1726 +0 0.1195 +0 0.0702 +0 0.1040 +0 0.0784 +0 0.1536 +0 0.0992 +0 0.0896 +0 0.1154 +0 0.0814 +0 0.1763 +0 0.1553 +0 0.1832 +0 0.1004 +0 0.0653 +0 0.2141 +0 0.0671 +0 0.1882 +0 0.1201 +0 0.1067 +0 0.0824 +0 0.4719 +0 0.0466 +0 0.2271 +0 0.0873 +0 0.1988 +0 0.1019 +0 0.0607 +0 0.0652 +0 0.0777 +0 0.0932 +0 0.0910 +0 0.0887 +0 0.6218 +0 0.0792 +0 0.0750 +0 0.1082 +0 0.1475 +0 0.0804 +0 0.1460 +0 0.1365 +0 0.0978 +0 0.2626 +0 0.0652 +0 0.1083 +0 0.2317 +0 0.1091 +0 0.1139 +0 0.0601 +0 0.0766 +0 0.1340 +0 0.0779 +0 0.1524 +0 0.1451 +0 0.2323 +0 0.1249 +0 0.0718 +0 0.0678 +0 0.1333 +0 0.0943 +0 0.1900 +0 0.0951 +0 0.1824 +0 0.0534 +0 0.0939 +0 0.0936 +0 0.1483 +0 0.0622 +0 0.0760 +0 0.1756 +0 0.1513 +0 0.0831 +0 0.2093 +0 0.1005 +0 0.2976 +0 0.0744 +0 0.1500 +0 0.1045 +0 0.2093 +0 0.0549 +0 0.2133 +0 0.0418 +1 0.8712 +0 0.0955 +0 0.2014 +0 0.1306 +0 0.2225 +0 0.0459 +0 0.0684 +0 0.0453 +0 0.1032 +0 0.0814 +0 0.0529 +0 0.4100 +0 0.0944 +0 0.1499 +0 0.2714 +0 0.0649 +0 0.1171 +0 0.1607 +0 0.1673 +0 0.2382 +0 0.2295 +0 0.2108 +0 0.1252 +0 0.0751 +0 0.1051 +0 0.1040 +0 0.0973 +0 0.0793 +0 0.0401 +0 0.1444 +0 0.0475 +0 0.0368 +0 0.1325 +0 0.1103 +0 0.0863 +0 0.0904 +0 0.3063 +0 0.0759 +0 0.0738 +0 0.2251 +0 0.2673 +0 0.1339 +0 0.2672 +0 0.2041 +0 0.0772 +0 0.0509 +0 0.1482 +0 0.0323 +0 0.0637 +0 0.2254 +0 0.1379 +0 0.1422 +0 0.2965 +0 0.1113 +0 0.0818 +0 0.1809 +0 0.1711 +0 0.1498 +0 0.1065 +0 0.1540 +0 0.0853 +0 0.1204 +0 0.2218 +0 0.2555 +0 0.0855 +0 0.1302 +0 0.0984 +0 0.0693 +0 0.1688 +0 0.1123 +0 0.0796 +0 0.1042 +0 0.1397 +0 0.0841 +0 0.1184 +0 0.1485 +0 0.1515 +0 0.0784 +0 0.0515 +0 0.0944 +0 0.0906 +0 0.0506 +0 0.1022 +0 0.0847 +0 0.0483 +0 0.0922 +0 0.0898 +0 0.1036 +0 0.1014 +0 0.1369 +0 0.2392 +0 0.0621 +0 0.2315 +0 0.1179 +0 0.0786 +0 0.0390 +0 0.1194 +0 0.2302 +0 0.3230 +0 0.1246 +0 0.0944 +0 0.2173 +0 0.2496 +0 0.1853 +0 0.0694 +0 0.0708 +0 0.2009 +0 0.1386 +0 0.1112 +0 0.0773 +0 0.1726 +0 0.0971 +0 0.0995 +0 0.0495 +0 0.1336 +0 0.2382 +0 0.1661 +0 0.2081 +0 0.5063 +0 0.1262 +0 0.2803 +0 0.2690 +0 0.1337 +0 0.2175 +0 0.0862 +0 0.1070 +0 0.0664 +0 0.0732 +0 0.2405 +0 0.0378 +0 0.0511 +0 0.0945 +0 0.1232 +0 0.1914 +0 0.0770 +0 0.1100 +0 0.4730 +0 0.2455 +0 0.0476 +0 0.2294 +0 0.0964 +0 0.1515 +0 0.1447 +0 0.3387 +0 0.1261 +0 0.0668 +0 0.5656 +0 0.0683 +0 0.1106 +0 0.0876 +0 0.0531 +0 0.1549 +0 0.1308 +0 0.0526 +0 0.0568 +0 0.2194 +0 0.0735 +0 0.1350 +0 0.0374 +0 0.0323 +0 0.0866 +0 0.0404 +0 0.0436 +0 0.0639 +0 0.0680 +0 0.2505 +0 0.3755 +0 0.0620 +0 0.0524 +0 0.0944 +0 0.0732 +0 0.0383 +0 0.2186 +0 0.1708 +0 0.0491 +0 0.1226 +0 0.0545 +0 0.0711 +0 0.0837 +0 0.0361 +0 0.2042 +0 0.0645 +0 0.0825 +0 0.0687 +0 0.0524 +0 0.0889 +0 0.1690 +0 0.0775 +0 0.0873 +0 0.2240 +0 0.0997 +0 0.0846 +0 0.0423 +0 0.3324 +0 0.1077 +0 0.0885 +0 0.0928 +0 0.1345 +0 0.1685 +0 0.0743 +0 0.2965 +0 0.1460 +0 0.0867 +0 0.0654 +0 0.1064 +0 0.3840 +0 0.0850 +0 0.1287 +0 0.0753 +0 0.0486 +0 0.1464 +0 0.0707 +0 0.1288 +0 0.0749 +0 0.0795 +0 0.6084 +0 0.1288 +0 0.2294 +0 0.3288 +0 0.0818 +0 0.0751 +0 0.1762 +0 0.0510 +0 0.0896 +0 0.0470 +0 0.1387 +0 0.1999 +0 0.0827 +0 0.1261 +0 0.2555 +0 0.0906 +0 0.2720 +0 0.0816 +0 0.0692 +0 0.1521 +0 0.0968 +0 0.1530 +0 0.1837 +0 0.1303 +0 0.0711 +0 0.0809 +0 0.1549 +0 0.0976 +0 0.0556 +1 0.8381 +0 0.0967 +0 0.3444 +0 0.0972 +0 0.1023 +0 0.1134 +0 0.0433 +0 0.1389 +0 0.0956 +0 0.1168 +0 0.2205 +0 0.0874 +0 0.0718 +0 0.1288 +0 0.0386 +0 0.1553 +0 0.0464 +0 0.0715 +0 0.1201 +0 0.0725 +0 0.0800 +0 0.1232 +0 0.1815 +0 0.1652 +0 0.1786 +0 0.2389 +0 0.0805 +0 0.2160 +0 0.0622 +0 0.1332 +0 0.2204 +0 0.1203 +0 0.2947 +0 0.3924 +0 0.0373 +0 0.1753 +0 0.2182 +0 0.0812 +0 0.0672 +0 0.1308 +0 0.0933 +0 0.1223 +0 0.7472 +0 0.1578 +0 0.1094 +0 0.0762 +0 0.0882 +0 0.1159 +0 0.0957 +0 0.0705 +0 0.2648 +0 0.0749 +0 0.0713 +0 0.0412 +0 0.1114 +0 0.1045 +0 0.1363 +0 0.7432 +0 0.0937 +0 0.2029 +0 0.0970 +0 0.2158 +0 0.7326 +0 0.0716 +0 0.4442 +0 0.4061 +0 0.1683 +0 0.2727 +0 0.0874 +0 0.1070 +0 0.1421 +0 0.0936 +0 0.0541 +0 0.0506 +0 0.1470 +0 0.1475 +0 0.0664 +0 0.0712 +0 0.1431 +0 0.1521 +0 0.1051 +0 0.2870 +0 0.1431 +0 0.0727 +0 0.1065 +0 0.1013 +0 0.3788 +0 0.1569 +0 0.0803 +0 0.1026 +0 0.1257 +0 0.2389 +0 0.0878 +0 0.2529 +0 0.1058 +0 0.1025 +0 0.0599 +0 0.2422 +0 0.0885 +0 0.3204 +0 0.0737 +0 0.1206 +0 0.2229 +0 0.1635 +0 0.1997 +0 0.1324 +0 0.0612 +0 0.0462 +0 0.1336 +0 0.0595 +0 0.1425 +0 0.0733 +0 0.0720 +0 0.1264 +0 0.1146 +0 0.0725 +0 0.0965 +0 0.1028 +0 0.2097 +0 0.2130 +0 0.1474 +0 0.2724 +0 0.1507 +0 0.0848 +0 0.1332 +0 0.0869 +0 0.1397 +0 0.0679 +0 0.0970 +0 0.0875 +0 0.1951 +1 0.7543 +0 0.1416 +0 0.2206 +0 0.0466 +0 0.4596 +0 0.1129 +0 0.0424 +0 0.0805 +0 0.0926 +0 0.1594 +0 0.0813 +0 0.0984 +0 0.0984 +0 0.2106 +0 0.1130 +0 0.0641 +0 0.2365 +0 0.0790 +0 0.0800 +0 0.1292 +0 0.0654 +0 0.0523 +0 0.1906 +0 0.1531 +0 0.1138 +0 0.0306 +0 0.0756 +0 0.0835 +0 0.0532 +0 0.0781 +0 0.2289 +0 0.0739 +1 0.7829 +0 0.0544 +0 0.1788 +0 0.1582 +0 0.1160 +0 0.2405 +0 0.0899 +0 0.1600 +0 0.1775 +0 0.1049 +0 0.0807 +0 0.1040 +0 0.0379 +0 0.2394 +0 0.1480 +0 0.0784 +0 0.2868 +0 0.0406 +0 0.0493 +0 0.1250 +0 0.1773 +0 0.1017 +0 0.1168 +0 0.4595 +0 0.0927 +0 0.0783 +0 0.0552 +1 0.7503 +0 0.1555 +0 0.1295 +1 0.8201 +0 0.5433 +0 0.1815 +0 0.2217 +0 0.2363 +0 0.7382 +0 0.1155 +0 0.0506 +0 0.1136 +0 0.0724 +0 0.1277 +0 0.0371 +0 0.1396 +0 0.2422 +0 0.0820 +1 0.8241 +0 0.0845 +0 0.5892 +0 0.0765 +0 0.0525 +0 0.3105 +0 0.0862 +0 0.0499 +0 0.0423 +0 0.0803 +0 0.0418 +0 0.1357 +0 0.0820 +0 0.0479 +0 0.1039 +0 0.1091 +0 0.0417 +0 0.1386 +0 0.0656 +0 0.0872 +0 0.0798 +0 0.1024 +0 0.0500 +0 0.1279 +0 0.0891 +0 0.0626 +0 0.0752 +0 0.1913 +0 0.1308 +0 0.0889 +0 0.1177 +0 0.0785 +0 0.1632 +0 0.0893 +0 0.2025 +0 0.0786 +0 0.2437 +0 0.0908 +0 0.0507 +0 0.1697 +0 0.0506 +0 0.1171 +0 0.2284 +0 0.1134 +0 0.1220 +0 0.0888 +0 0.0994 +0 0.2151 +0 0.0638 +0 0.1548 +0 0.0490 +0 0.0751 +0 0.0845 +0 0.2197 +0 0.1135 +0 0.0579 +0 0.1018 +1 0.8207 +0 0.0827 +0 0.1035 +0 0.3657 +0 0.1162 +0 0.6704 +0 0.1141 +0 0.0936 +0 0.1211 +0 0.5476 +0 0.2208 +0 0.1584 +0 0.1033 +0 0.0593 +0 0.1300 +0 0.1492 +0 0.2019 +0 0.3175 +0 0.0914 +0 0.4749 +0 0.1517 +0 0.0547 +0 0.0576 +0 0.1264 +0 0.2153 +0 0.4569 +0 0.0704 +0 0.2808 +0 0.1135 +0 0.0714 +0 0.1365 +0 0.0926 +0 0.0846 +0 0.0661 +0 0.0595 +0 0.0975 +0 0.0727 +0 0.0568 +0 0.1127 +0 0.3361 +0 0.0736 +0 0.0919 +0 0.1237 +0 0.0787 +0 0.1407 +0 0.0424 +0 0.2212 +0 0.1258 +0 0.1349 +0 0.3541 +0 0.3793 +0 0.0892 +0 0.1021 +0 0.0624 +0 0.1176 +0 0.0470 +0 0.6249 +0 0.1124 +0 0.2503 +0 0.0495 +0 0.0548 +0 0.7178 +0 0.0676 +0 0.0472 +0 0.3992 +0 0.1320 +0 0.1226 +0 0.0439 +0 0.2170 +0 0.1051 +0 0.2065 +0 0.0553 +0 0.0600 +0 0.0787 +0 0.1667 +0 0.0746 +0 0.1460 +0 0.1416 +0 0.1154 +0 0.5798 +0 0.1644 +0 0.0690 +0 0.0571 +0 0.0539 +0 0.0789 +0 0.6793 +0 0.0847 +0 0.0905 +0 0.0423 +0 0.1077 +0 0.0929 +0 0.1137 +0 0.1714 +0 0.0967 +0 0.0798 +0 0.0721 +0 0.0422 +0 0.5600 +0 0.1318 +0 0.2461 +0 0.0938 +0 0.0777 +1 0.8050 +0 0.1304 +0 0.0967 +0 0.1910 +0 0.1902 +0 0.0509 +0 0.2267 +0 0.2360 +0 0.1002 +0 0.0875 +0 0.1120 +0 0.1116 +0 0.2321 +0 0.0865 +0 0.0609 +0 0.3464 +0 0.1695 +0 0.0564 +0 0.0387 +0 0.0603 +1 0.8012 +0 0.3941 +0 0.1860 +0 0.0940 +0 0.1166 +0 0.0472 +0 0.0744 +0 0.0972 +0 0.1296 +0 0.1629 +0 0.0975 +0 0.3202 +0 0.4236 +0 0.0284 +0 0.0782 +0 0.0863 +0 0.1721 +0 0.1640 +0 0.0536 +0 0.0985 +0 0.1636 +0 0.0645 +0 0.0771 +0 0.0877 +0 0.0454 +0 0.1114 +0 0.3247 +0 0.0606 +0 0.1083 +0 0.3440 +0 0.3777 +0 0.0988 +0 0.0714 +0 0.0512 +0 0.7070 +0 0.1197 +0 0.0721 +0 0.1620 +0 0.1035 +0 0.0512 +0 0.0449 +0 0.0631 +0 0.2535 +0 0.0725 +0 0.1579 +0 0.1758 +0 0.1008 +0 0.1670 +0 0.0745 +0 0.1596 +0 0.4173 +0 0.1468 +0 0.0517 +1 0.8170 +0 0.6242 +0 0.1261 +0 0.1384 +0 0.0867 +0 0.0910 +0 0.1529 +0 0.1655 +0 0.0852 +0 0.2156 +0 0.1529 +0 0.1715 +0 0.2486 +0 0.1350 +0 0.0926 +0 0.0573 +0 0.0666 +0 0.0917 +0 0.1983 +0 0.0590 +0 0.0943 +0 0.0961 +0 0.1151 +0 0.0804 +0 0.0714 +0 0.0621 +0 0.0346 +0 0.1670 +0 0.4186 +0 0.0702 +0 0.0980 +0 0.4663 +0 0.0394 +0 0.1064 +0 0.1604 +0 0.0521 +0 0.1173 +0 0.1518 +0 0.1882 +0 0.1713 +0 0.0436 +0 0.2227 +0 0.1167 +0 0.0745 +0 0.0642 +0 0.0883 +0 0.2082 +0 0.3343 +0 0.1410 +0 0.1955 +0 0.2305 +0 0.0697 +0 0.2242 +0 0.0738 +0 0.0877 +0 0.1720 +0 0.0923 +0 0.5210 +0 0.0528 +0 0.1263 +0 0.0681 +0 0.0572 +0 0.5204 +0 0.1743 +0 0.2573 +0 0.1185 +0 0.0984 +0 0.0933 +0 0.1128 +0 0.1073 +0 0.2621 +0 0.0649 +0 0.0983 +0 0.0575 +0 0.0349 +0 0.1025 +0 0.1472 +0 0.0855 +0 0.3234 +0 0.1830 +0 0.1570 +0 0.5874 +0 0.2335 +0 0.1863 +1 0.8267 +0 0.2169 +0 0.0967 +0 0.3086 +0 0.1323 +0 0.1219 +0 0.1126 +0 0.1130 +0 0.1673 +0 0.1234 +0 0.1013 +0 0.1932 +0 0.2656 +0 0.1212 +0 0.1684 +0 0.6956 +0 0.1525 +0 0.0692 +0 0.3224 +0 0.0816 +0 0.2820 +0 0.1277 +0 0.1276 +0 0.0702 +1 0.7676 +1 0.9042 +0 0.2053 +0 0.1147 +0 0.2387 +0 0.0826 +0 0.3555 +0 0.0599 +0 0.3053 +0 0.0490 +0 0.1278 +0 0.1696 +0 0.0545 +0 0.0546 +0 0.1751 +0 0.1607 +0 0.1581 +0 0.1504 +0 0.0681 +0 0.0848 +0 0.1546 +0 0.1757 +0 0.2575 +0 0.0491 +0 0.0655 +0 0.0557 +0 0.1419 +0 0.1214 +0 0.2351 +0 0.0629 +0 0.4153 +0 0.0779 +0 0.0926 +0 0.2747 +0 0.1297 +0 0.0876 +0 0.0689 +0 0.0486 +0 0.5825 +0 0.0845 +0 0.0781 +0 0.0490 +0 0.0954 +0 0.0615 +0 0.0535 +0 0.0758 +0 0.2296 +0 0.0520 +0 0.0934 +0 0.0863 +0 0.1322 +0 0.1552 +0 0.0866 +0 0.0508 +0 0.4687 +0 0.5685 +0 0.2246 +0 0.0387 +0 0.0491 +0 0.5417 +0 0.1072 +0 0.1186 +0 0.0841 +0 0.1100 +0 0.1451 +0 0.1181 +0 0.1571 +0 0.0814 +0 0.4021 +0 0.1542 +0 0.0849 +0 0.1204 +0 0.0993 +0 0.1848 +0 0.1646 +0 0.1268 +0 0.1140 +1 0.8497 +0 0.0676 +0 0.0832 +0 0.1931 +1 0.2033 +0 0.1256 +0 0.3655 +0 0.1620 +0 0.1208 +0 0.1169 +0 0.0381 +0 0.0733 +0 0.0746 +0 0.1239 +0 0.1231 +0 0.2192 +0 0.0644 +0 0.1747 +0 0.1814 +0 0.2279 +0 0.0688 +0 0.2462 +0 0.0923 +0 0.1002 +0 0.0319 +0 0.2286 +0 0.1567 +0 0.0729 +0 0.0882 +0 0.2279 +0 0.1237 +0 0.0757 +0 0.6488 +0 0.0430 +0 0.1960 +0 0.2061 +0 0.1993 +0 0.0773 +0 0.1104 +0 0.0474 +0 0.1958 +0 0.0770 +0 0.0776 +0 0.0849 +0 0.2287 +0 0.1126 +0 0.3877 +0 0.0722 +0 0.1129 +0 0.0422 +0 0.3166 +0 0.1464 +0 0.2601 +0 0.0531 +0 0.0870 +0 0.0994 +0 0.0816 +0 0.1393 +0 0.1673 +0 0.1268 +0 0.1017 +0 0.0861 +0 0.0882 +0 0.1683 +0 0.1001 +0 0.1246 +0 0.0538 +0 0.2427 +0 0.0746 +0 0.0746 +0 0.0796 +0 0.1042 +0 0.1822 +0 0.0410 +0 0.1149 +0 0.1475 +0 0.1739 +0 0.0595 +0 0.4209 +0 0.0834 +0 0.0446 +0 0.0704 +0 0.0509 +0 0.0908 +0 0.0688 +0 0.0916 +0 0.1022 +0 0.1144 +0 0.1072 +0 0.0852 +0 0.1403 +0 0.1476 +0 0.0773 +0 0.3013 +0 0.0596 +0 0.1030 +0 0.1591 +0 0.1467 +0 0.0689 +0 0.1417 +0 0.0726 +0 0.0721 +0 0.1012 +0 0.1140 +0 0.0733 +0 0.6397 +0 0.0431 +0 0.0424 +0 0.0432 +0 0.3859 +0 0.0517 +0 0.1136 +0 0.0586 +0 0.0584 +0 0.0671 +0 0.0913 +0 0.0996 +0 0.5485 +0 0.1462 +0 0.0442 +0 0.1769 +0 0.0449 +0 0.0680 +0 0.0835 +0 0.0821 +0 0.0764 +0 0.0576 +0 0.5566 +0 0.1901 +0 0.0963 +0 0.6946 +0 0.2283 +0 0.1656 +0 0.0755 +0 0.1110 +0 0.0792 +0 0.0629 +0 0.0506 +0 0.1572 +0 0.0691 +0 0.0515 +0 0.1363 +0 0.0858 +0 0.0706 +0 0.0650 +0 0.1255 +0 0.1989 +0 0.1795 +0 0.1133 +0 0.0672 +0 0.1322 +0 0.0598 +0 0.3032 +0 0.0747 +0 0.3273 +0 0.1911 +0 0.2430 +0 0.1187 +0 0.1554 +0 0.0970 +0 0.1178 +0 0.1315 +0 0.0875 +0 0.0575 +0 0.1155 +0 0.1584 +0 0.0910 +0 0.0731 +0 0.1169 +0 0.1006 +0 0.0897 +0 0.1323 +0 0.0961 +0 0.2158 +0 0.0572 +0 0.1606 +0 0.0869 +0 0.1316 +0 0.2940 +0 0.0997 +0 0.1349 +0 0.2018 +0 0.0742 +0 0.1452 +0 0.0794 +0 0.0490 +0 0.0621 +0 0.1758 +0 0.0953 +0 0.0780 +0 0.0939 +0 0.0602 +0 0.3397 +0 0.0727 +0 0.1953 +0 0.1046 +0 0.1097 +0 0.0486 +0 0.1126 +1 0.8143 +0 0.0426 +0 0.0898 +0 0.0878 +0 0.1140 +0 0.1118 +0 0.1150 +0 0.0801 +0 0.1232 +0 0.2106 +0 0.0733 +0 0.0845 +0 0.0838 +0 0.0791 +0 0.0883 +0 0.1000 +0 0.1676 +0 0.1065 +0 0.0498 +0 0.0606 +0 0.6298 +0 0.2099 +0 0.1956 +0 0.0816 +0 0.0893 +0 0.0771 +0 0.1167 +0 0.0763 +0 0.2597 +0 0.2157 +0 0.2706 +0 0.0384 +0 0.0334 +0 0.0546 +0 0.0808 +0 0.1146 +0 0.0869 +0 0.2063 +0 0.1789 +0 0.1033 +0 0.0992 +0 0.1283 +0 0.0360 +0 0.0346 +0 0.0442 +0 0.1034 +0 0.0653 +0 0.0711 +0 0.1089 +0 0.0543 +0 0.1636 +0 0.1478 +0 0.0918 +0 0.2335 +0 0.1065 +0 0.7451 +0 0.7061 +0 0.0866 +0 0.1786 +0 0.0415 +0 0.0788 +0 0.0898 +0 0.5254 +0 0.0739 +0 0.3792 +0 0.1111 +0 0.0554 +0 0.2033 +0 0.0731 +0 0.0414 +0 0.1494 +0 0.1452 +0 0.1033 +0 0.0885 +0 0.0380 +0 0.2268 +0 0.0938 +0 0.0743 +0 0.0786 +0 0.1139 +0 0.0926 +0 0.0501 +0 0.1911 +0 0.1346 +0 0.1340 +0 0.1150 +0 0.0665 +0 0.1404 +0 0.1383 +0 0.0356 +0 0.0556 +0 0.1622 +0 0.0744 +0 0.4262 +0 0.0944 +0 0.0611 +0 0.0532 +0 0.1168 +0 0.0891 +0 0.0677 +0 0.0357 +0 0.0677 +0 0.1082 +0 0.1295 +0 0.2104 +0 0.0685 +0 0.1884 +0 0.2573 +0 0.2282 +0 0.2291 +0 0.0496 +0 0.0612 +0 0.0795 +0 0.1870 +0 0.5211 +0 0.0927 +0 0.0592 +0 0.0993 +0 0.1165 +0 0.0837 +0 0.0599 +0 0.0809 +0 0.0517 +0 0.0941 +0 0.0804 +0 0.0670 +0 0.1165 +0 0.0375 +0 0.1263 +0 0.3952 +0 0.2960 +0 0.0383 +0 0.1428 +0 0.0613 +0 0.2520 +0 0.0558 +0 0.0709 +0 0.0844 +0 0.1779 +0 0.0429 +0 0.0358 +0 0.1643 +0 0.1030 +0 0.1664 +0 0.0919 +0 0.0750 +0 0.1674 +0 0.0511 +0 0.0784 +0 0.0799 +0 0.0960 +0 0.1084 +0 0.1864 +0 0.0859 +0 0.0817 +1 0.3436 +0 0.2272 +0 0.2304 +0 0.4675 +0 0.1284 +0 0.0870 +1 0.7672 +0 0.0653 +0 0.0663 +0 0.0738 +0 0.1786 +0 0.1922 +0 0.1826 +0 0.4515 +0 0.1443 +0 0.1163 +0 0.0425 +0 0.1271 +0 0.0899 +0 0.1798 +0 0.0533 +0 0.0938 +0 0.0545 +0 0.0698 +0 0.0707 +0 0.0910 +0 0.1892 +0 0.0331 +0 0.1531 +0 0.1378 +0 0.1131 +0 0.3369 +0 0.1439 +0 0.2503 +0 0.0785 +0 0.0693 +0 0.0912 +0 0.1232 +0 0.2430 +0 0.1048 +0 0.1754 +0 0.1537 +0 0.1805 +0 0.0496 +0 0.0964 +0 0.0642 +0 0.0670 +0 0.0751 +0 0.2007 +0 0.2641 +0 0.5215 +0 0.3046 +0 0.1463 +0 0.0742 +0 0.2016 +0 0.0569 +0 0.0614 +0 0.2365 +0 0.0598 +0 0.1053 +0 0.3106 +0 0.0819 +0 0.2024 +0 0.0383 +0 0.2884 +0 0.1515 +0 0.1113 +0 0.0994 +0 0.3205 +0 0.0798 +0 0.0950 +0 0.0625 +0 0.1357 +0 0.0599 +0 0.0880 +0 0.0779 +0 0.0790 +0 0.0985 +0 0.1026 +0 0.0440 +0 0.0639 +0 0.0698 +0 0.0381 +0 0.2950 +0 0.2815 +0 0.2673 +0 0.0677 +0 0.1327 +0 0.0892 +0 0.0755 +0 0.1227 +0 0.1497 +0 0.4772 +0 0.1807 +0 0.1114 +0 0.0798 +0 0.0839 +0 0.2283 +0 0.0697 +0 0.1364 +0 0.1746 +0 0.0464 +1 0.8644 +0 0.1289 +0 0.3136 +0 0.0958 +0 0.0492 +0 0.2166 +0 0.0512 +0 0.1103 +0 0.0868 +0 0.0864 +0 0.3652 +0 0.1575 +0 0.1353 +0 0.0715 +0 0.1199 +0 0.1577 +0 0.0874 +0 0.1977 +0 0.0634 +0 0.0632 +0 0.0703 +0 0.4097 +0 0.0767 +0 0.1569 +0 0.1797 +0 0.0520 +0 0.1977 +0 0.1718 +0 0.0990 +0 0.1572 +0 0.0708 +0 0.1169 +0 0.0954 +0 0.0661 +0 0.1049 +0 0.1021 +0 0.0369 +0 0.0361 +0 0.0995 +0 0.0679 +0 0.1128 +0 0.0657 +0 0.2073 +0 0.0812 +0 0.1394 +0 0.1642 +0 0.0943 +0 0.1204 +0 0.1338 +0 0.1150 +0 0.1066 +0 0.0820 +0 0.0831 +0 0.0781 +0 0.1132 +0 0.0500 +0 0.0609 +0 0.2016 +0 0.1688 +0 0.1485 +0 0.0477 +0 0.0623 +0 0.1054 +0 0.5016 +0 0.1186 +0 0.0706 +0 0.0642 +0 0.0380 +0 0.0678 +0 0.0437 +0 0.1286 +0 0.0728 +0 0.1667 +0 0.0770 +0 0.1711 +0 0.3353 +0 0.0412 +0 0.1213 +0 0.1010 +0 0.1938 +0 0.0743 +0 0.1322 +1 0.7626 +0 0.0969 +0 0.0855 +0 0.0953 +0 0.1319 +0 0.0778 +0 0.1287 +0 0.1181 +0 0.0919 +0 0.5773 +0 0.0499 +0 0.1175 +0 0.0685 +0 0.0655 +0 0.0972 +0 0.1871 +0 0.0564 +0 0.0933 +0 0.0915 +0 0.1551 +0 0.1104 +0 0.3419 +0 0.1846 +0 0.0553 +0 0.1348 +0 0.1252 +0 0.0580 +0 0.0621 +0 0.0695 +0 0.2939 +0 0.6122 +0 0.2931 +1 0.8112 +0 0.1267 +0 0.2591 +0 0.0458 +0 0.1101 +0 0.0759 +0 0.0790 +0 0.0668 +0 0.0468 +0 0.3184 +1 0.7545 +0 0.2648 +0 0.0638 +0 0.0373 +0 0.1621 +0 0.3227 +0 0.1045 +0 0.1071 +0 0.0965 +0 0.0988 +0 0.0469 +0 0.2223 +0 0.0726 +0 0.1649 +0 0.0536 +0 0.1013 +0 0.0944 +0 0.1042 +0 0.1448 +0 0.0787 +0 0.0733 +0 0.0554 +0 0.1639 +0 0.1028 +0 0.2720 +0 0.0867 +0 0.0648 +0 0.1464 +0 0.1022 +0 0.1511 +0 0.0886 +1 0.8701 +0 0.1094 +0 0.0609 +0 0.0799 +0 0.1639 +0 0.0839 +0 0.0980 +0 0.1044 +0 0.1451 +0 0.1290 +0 0.1462 +0 0.0935 +0 0.4785 +0 0.3829 +0 0.0422 +0 0.1115 +0 0.0738 +0 0.1136 +0 0.0725 +0 0.0654 +0 0.1827 +0 0.2286 +0 0.0715 +0 0.1581 +0 0.0518 +0 0.0960 +0 0.1339 +1 0.7989 +0 0.1094 +0 0.0785 +0 0.4728 +0 0.2746 +0 0.1522 +0 0.1044 +0 0.0550 +0 0.0547 +0 0.1434 +0 0.1027 +0 0.1754 +0 0.0440 +0 0.0796 +0 0.2786 +0 0.1844 +0 0.0898 +0 0.1168 +0 0.0906 +0 0.1345 +0 0.4867 +1 0.2497 +0 0.1264 +0 0.1057 +0 0.0614 +0 0.0562 +0 0.1561 +0 0.0986 +0 0.1672 +0 0.2326 +0 0.0838 +0 0.1261 +0 0.2109 +0 0.0383 +0 0.2400 +1 0.7862 +0 0.0560 +0 0.4349 +1 0.7894 +0 0.2249 +0 0.1274 +0 0.1519 +0 0.1160 +0 0.1042 +0 0.0878 +0 0.1011 +0 0.0824 +0 0.1714 +0 0.5280 +0 0.4016 +0 0.1653 +0 0.0812 +0 0.2039 +0 0.1203 +0 0.0656 +0 0.0560 +0 0.0779 +0 0.0689 +0 0.1515 +0 0.0714 +0 0.0743 +0 0.1248 +0 0.0601 +0 0.1614 +0 0.0671 +0 0.0620 +0 0.2012 +0 0.1642 +0 0.0740 +0 0.0890 +0 0.0558 +0 0.1298 +0 0.0960 +0 0.0663 +0 0.0796 +0 0.1493 +0 0.3750 +0 0.1485 +0 0.4060 +0 0.0671 +0 0.1140 +0 0.0810 +0 0.2303 +0 0.0519 +0 0.1209 +0 0.1020 +0 0.0959 +0 0.2912 +0 0.2183 +0 0.0661 +0 0.1994 +0 0.1361 +0 0.1516 +0 0.1246 +0 0.0827 +0 0.0590 +1 0.8233 +0 0.0967 +0 0.1596 +0 0.2016 +0 0.2016 +0 0.2819 +0 0.0481 +0 0.1115 +0 0.0944 +0 0.5339 +0 0.0918 +0 0.1608 +0 0.2115 +0 0.1158 +0 0.2395 +0 0.0802 +0 0.0774 +0 0.0939 +0 0.0733 +0 0.1494 +0 0.1357 +0 0.5138 +0 0.0945 +0 0.0654 +0 0.0434 +0 0.0364 +0 0.0685 +0 0.1183 +0 0.1940 +0 0.1419 +0 0.2576 +0 0.1913 +0 0.2268 +0 0.1408 +0 0.0587 +0 0.1184 +0 0.0561 +0 0.1043 +0 0.0495 +0 0.0737 +0 0.0778 +0 0.1830 +0 0.1071 +0 0.3981 +0 0.0986 +0 0.0802 +0 0.0849 +0 0.1034 +0 0.0917 +0 0.0718 +0 0.0908 +0 0.0558 +0 0.0640 +0 0.4632 +0 0.0586 +0 0.1304 +0 0.1140 +0 0.0890 +0 0.0768 +0 0.2027 +0 0.1569 +0 0.0876 +0 0.0993 +0 0.0806 +0 0.1048 +0 0.0747 +0 0.1322 +0 0.0486 +0 0.0909 +0 0.2843 +0 0.2895 +0 0.0557 +0 0.1188 +0 0.0672 +0 0.0841 +0 0.0512 +0 0.0452 +0 0.0440 +0 0.1394 +0 0.0693 +1 0.8391 +0 0.0909 +0 0.1642 +1 0.8426 +0 0.0707 +0 0.1453 +0 0.0736 +0 0.0436 +0 0.0660 +0 0.2398 +0 0.2337 +0 0.2559 +0 0.1025 +0 0.1422 +0 0.3376 +0 0.1317 +0 0.0771 +0 0.0802 +0 0.0673 +0 0.2006 +0 0.1001 +0 0.1260 +0 0.0909 +0 0.0653 +0 0.2377 +0 0.2149 +0 0.1021 +0 0.0829 +0 0.6965 +0 0.1133 +0 0.1199 +0 0.1807 +0 0.0898 +0 0.1489 +0 0.1078 +0 0.0627 +0 0.1384 +0 0.3593 +0 0.1112 +0 0.1948 +0 0.0981 +0 0.1060 +0 0.1030 +0 0.0912 +0 0.1014 +0 0.1161 +0 0.1815 +0 0.1422 +0 0.0872 +0 0.1064 +0 0.0714 +0 0.1171 +0 0.0966 +0 0.7045 +0 0.1531 +0 0.1756 +0 0.0741 +0 0.0923 +0 0.0937 +0 0.0465 +0 0.0821 +0 0.2552 +0 0.0486 +0 0.2811 +1 0.7505 +1 0.8753 +0 0.1392 +0 0.1092 +0 0.0640 +0 0.2047 +0 0.2446 +0 0.1833 +0 0.0698 +0 0.5817 +0 0.0379 +0 0.1062 +0 0.0830 +0 0.1529 +0 0.1500 +0 0.0940 +0 0.1161 +0 0.3622 +0 0.1596 +0 0.1457 +0 0.0863 +0 0.1922 +0 0.1260 +0 0.0554 +0 0.0758 +0 0.0588 +0 0.2496 +0 0.2773 +0 0.0492 +0 0.1042 +0 0.2144 +0 0.0723 +0 0.0649 +0 0.1933 +0 0.1295 +0 0.0799 +0 0.0667 +0 0.0788 +1 0.8292 +0 0.1105 +0 0.3806 +0 0.0369 +0 0.0387 +0 0.0805 +0 0.0805 +0 0.1254 +0 0.1436 +0 0.1747 +0 0.2020 +0 0.1031 +0 0.0861 +0 0.0875 +0 0.1275 +0 0.0558 +0 0.0591 +0 0.1706 +0 0.0923 +0 0.0739 +0 0.0768 +0 0.0618 +0 0.0551 +0 0.1525 +0 0.0904 +0 0.0644 +0 0.1786 +0 0.0479 +0 0.1111 +0 0.0629 +0 0.1258 +0 0.1080 +0 0.1025 +0 0.1335 +0 0.0886 +0 0.1137 +0 0.0692 +0 0.2472 +0 0.2430 +0 0.5096 +0 0.0641 +0 0.4479 +0 0.0887 +0 0.1387 +0 0.0900 +0 0.0542 +0 0.0688 +0 0.0753 +0 0.0737 +1 0.7949 +0 0.0780 +0 0.2716 +0 0.4292 +0 0.0919 +0 0.1341 +0 0.0961 +0 0.5615 +0 0.0709 +0 0.0802 +0 0.0803 +0 0.0925 +0 0.1542 +0 0.3575 +0 0.0958 +0 0.1306 +0 0.1171 +0 0.2898 +0 0.1093 +0 0.1096 +0 0.3446 +0 0.5885 +0 0.0707 +0 0.1171 +0 0.3229 +0 0.0715 +0 0.0688 +0 0.1302 +0 0.1829 +0 0.0807 +0 0.0703 +0 0.1144 +0 0.1323 +0 0.3970 +0 0.0942 +0 0.1683 +0 0.3222 +0 0.0844 +0 0.0631 +0 0.0800 +0 0.1689 +0 0.1399 +0 0.0753 +0 0.0806 +0 0.0698 +0 0.0864 +0 0.1130 +0 0.1258 +0 0.0955 +0 0.1274 +0 0.0479 +0 0.0782 +0 0.0683 +0 0.2031 +0 0.1168 +0 0.1168 +0 0.1882 +0 0.1952 +0 0.1132 +0 0.1141 +0 0.2305 +0 0.1089 +0 0.0721 +0 0.1505 +0 0.0582 +0 0.6854 +0 0.1307 +0 0.2583 +0 0.1152 +0 0.0594 +0 0.0929 +0 0.0826 +0 0.1067 +0 0.1651 +0 0.1734 +0 0.0692 +0 0.1804 +0 0.0588 +0 0.1665 +0 0.2938 +0 0.1422 +0 0.1657 +1 0.7794 +0 0.1607 +0 0.2008 +0 0.2463 +0 0.1300 +0 0.2294 +0 0.6414 +0 0.0733 +0 0.1217 +0 0.0429 +0 0.0741 +0 0.1207 +0 0.0887 +0 0.0952 +0 0.1291 +0 0.0670 +0 0.1868 +0 0.1507 +0 0.1534 +0 0.0716 +0 0.1150 +0 0.1377 +0 0.0968 +0 0.0810 +0 0.0924 +0 0.2118 +0 0.0754 +0 0.1699 +0 0.0646 +0 0.0778 +0 0.1512 +0 0.1206 +0 0.1102 +0 0.1704 +0 0.0490 +0 0.0564 +0 0.0912 +0 0.1501 +0 0.0873 +0 0.2253 +0 0.1067 +0 0.1409 +0 0.0962 +0 0.2015 +0 0.3338 +0 0.2121 +0 0.0818 +0 0.1327 +0 0.0467 +0 0.3543 +0 0.1542 +0 0.2205 +0 0.1147 +0 0.0736 +0 0.1004 +0 0.0469 +0 0.1604 +0 0.0832 +0 0.0653 +0 0.2277 +0 0.0865 +0 0.1209 +0 0.0819 +0 0.2217 +0 0.1368 +0 0.1735 +0 0.2029 +0 0.0852 +0 0.0816 +0 0.2117 +0 0.1543 +0 0.5558 +0 0.0747 +0 0.0992 +0 0.1267 +0 0.1502 +0 0.1535 +0 0.1673 +0 0.0520 +0 0.1273 +0 0.1815 +0 0.1193 +0 0.0694 +0 0.1649 +0 0.2531 +0 0.3921 +0 0.0941 +0 0.1306 +0 0.1087 +0 0.1638 +0 0.1532 +0 0.0687 +0 0.1192 +0 0.1868 +0 0.0513 +0 0.0773 +0 0.0807 +0 0.1033 +0 0.0745 +0 0.4702 +0 0.1517 +0 0.1309 +0 0.1205 +0 0.3004 +0 0.0536 +0 0.2964 +0 0.1360 +0 0.1078 +0 0.0802 +0 0.1994 +0 0.0990 +0 0.0972 +0 0.1010 +0 0.0519 +0 0.1644 +0 0.0719 +0 0.0467 +0 0.0368 +0 0.1468 +0 0.3883 +0 0.0726 +0 0.0566 +0 0.1368 +0 0.0828 +0 0.2033 +0 0.2170 +0 0.0417 +0 0.0861 +0 0.0768 +0 0.1138 +0 0.1156 +0 0.0787 +0 0.1207 +0 0.1142 +0 0.0398 +0 0.2467 +0 0.1477 +0 0.1089 +0 0.0442 +0 0.1257 +0 0.2631 +0 0.1709 +0 0.1035 +0 0.1147 +0 0.1082 +0 0.0766 +0 0.1224 +0 0.0363 +1 0.8676 +0 0.0614 +0 0.1873 +0 0.0570 +0 0.5347 +0 0.0924 +0 0.0512 +0 0.1322 +0 0.1606 +0 0.1122 +0 0.1082 +0 0.0434 +0 0.1475 +0 0.0895 +0 0.0666 +0 0.0833 +0 0.1417 +0 0.1097 +0 0.5871 +0 0.0921 +0 0.1302 +0 0.1323 +0 0.1482 +0 0.1690 +0 0.1068 +0 0.0910 +1 0.8109 +0 0.1321 +0 0.0651 +0 0.1105 +0 0.0953 +0 0.1348 +0 0.1110 +0 0.1679 +0 0.0688 +0 0.0871 +0 0.1635 +0 0.3221 +0 0.4060 +0 0.1524 +0 0.1292 +0 0.4802 +0 0.1042 +0 0.0493 +0 0.0800 +0 0.1507 +0 0.0732 +0 0.0619 +0 0.0482 +0 0.0891 +0 0.0725 +0 0.4076 +0 0.1166 +0 0.0734 +0 0.0428 +0 0.2730 +0 0.3248 +0 0.1115 +0 0.1319 +0 0.0505 +0 0.5975 +0 0.0754 +0 0.0978 +0 0.1021 +0 0.2688 +0 0.1331 +1 0.8657 +0 0.2011 +0 0.0619 +0 0.1371 +0 0.1266 +0 0.0913 +0 0.0933 +0 0.1067 +0 0.1054 +0 0.1032 +0 0.0550 +0 0.0380 +0 0.3112 +0 0.1566 +0 0.0700 +0 0.1087 +0 0.0615 +0 0.0638 +0 0.0593 +0 0.0766 +0 0.0998 +0 0.0446 +0 0.0677 +0 0.0402 +0 0.0730 +0 0.0862 +0 0.0986 +0 0.0752 +0 0.1523 +0 0.1396 +1 0.7955 +0 0.2917 +0 0.0631 +0 0.1109 +0 0.0915 +0 0.2364 +0 0.0797 +0 0.2406 +0 0.1066 +0 0.1067 +0 0.1361 +0 0.0793 +0 0.0823 +0 0.1792 +0 0.1379 +0 0.1014 +0 0.2126 +0 0.1139 +0 0.0965 +0 0.0866 +0 0.1609 +0 0.0865 +0 0.0755 +0 0.0860 +1 0.8131 +0 0.1779 +0 0.1989 +0 0.1922 +0 0.1495 +0 0.2706 +0 0.1552 +0 0.5803 +0 0.0920 +0 0.1387 +0 0.1307 +0 0.0697 +0 0.2005 +1 0.8163 +0 0.0947 +0 0.1066 +0 0.3538 +0 0.1888 +0 0.1025 +0 0.5049 +0 0.0727 +0 0.1333 +0 0.0407 +0 0.1693 +0 0.0610 +0 0.2023 +0 0.1088 +0 0.0883 +0 0.0749 +0 0.0461 +0 0.1173 +0 0.0992 +0 0.0662 +0 0.1048 +0 0.1026 +0 0.1938 +0 0.1116 +0 0.0806 +0 0.1518 +0 0.1055 +0 0.0425 +0 0.1728 +0 0.0711 +0 0.0882 +0 0.0962 +0 0.0655 +0 0.1259 +0 0.2568 +0 0.1436 +0 0.0693 +0 0.0444 +0 0.0904 +0 0.1127 +0 0.0776 +0 0.4416 +0 0.1459 +0 0.1023 +0 0.0684 +0 0.0858 +0 0.1609 +0 0.1416 +0 0.0789 +0 0.1167 +1 0.7841 +0 0.0922 +0 0.0852 +0 0.1883 +0 0.0722 +0 0.0813 +0 0.0779 +0 0.0541 +0 0.0727 +0 0.1165 +0 0.0552 +0 0.1744 +0 0.0655 +0 0.0504 +0 0.0606 +0 0.1294 +0 0.0459 +0 0.1861 +0 0.2827 +0 0.0804 +0 0.0506 +0 0.4201 +0 0.0615 +0 0.2228 +0 0.2225 +0 0.0511 +0 0.1261 +0 0.0839 +0 0.2393 +0 0.1599 +0 0.0921 +0 0.0638 +0 0.0595 +0 0.2156 +0 0.0821 +0 0.0864 +0 0.5128 +0 0.1374 +0 0.0546 +0 0.0829 +0 0.2058 +0 0.0617 +0 0.2322 +0 0.0576 +0 0.0451 +0 0.1425 +0 0.1510 +0 0.0775 +0 0.3210 +0 0.0646 +0 0.0399 +0 0.1826 +0 0.1297 +0 0.1064 +0 0.1187 +0 0.1254 +0 0.1388 +0 0.0867 +0 0.0835 +0 0.1281 +0 0.0405 +0 0.0671 +0 0.1400 +0 0.1041 +0 0.0603 +0 0.0429 +0 0.0687 +0 0.0543 +0 0.6029 +0 0.2384 +0 0.0483 +0 0.1362 +0 0.1086 +0 0.0595 +0 0.1944 +0 0.0973 +0 0.2027 +0 0.0454 +0 0.0954 +0 0.3181 +0 0.2546 +0 0.0968 +0 0.1210 +0 0.2131 +0 0.0638 +0 0.0757 +0 0.1513 +0 0.0977 +0 0.1087 +0 0.0976 +0 0.1218 +0 0.0807 +0 0.2769 +0 0.1268 +0 0.1933 +0 0.0839 +0 0.0600 +0 0.0798 +0 0.0867 +0 0.1361 +0 0.0983 +0 0.0964 +0 0.0648 +0 0.1341 +0 0.0746 +0 0.0370 +0 0.6117 +0 0.0328 +0 0.1322 +0 0.1301 +0 0.0893 +0 0.0572 +0 0.0461 +0 0.1354 +0 0.1266 +0 0.1402 +0 0.5429 +0 0.3525 +0 0.1795 +0 0.1041 +0 0.0971 +0 0.0818 +0 0.1381 +0 0.0702 +0 0.6178 +0 0.2062 +0 0.0846 +0 0.2713 +0 0.5215 +0 0.0339 +0 0.0615 +0 0.5288 +0 0.2374 +0 0.0642 +0 0.1598 +0 0.1531 +0 0.1214 +0 0.1260 +0 0.0756 +0 0.1055 +0 0.0634 +0 0.1351 +0 0.0352 +0 0.0639 +0 0.0948 +0 0.1198 +0 0.1073 +0 0.0471 +0 0.0837 +0 0.1331 +0 0.1060 +0 0.1913 +0 0.0961 +0 0.0377 +0 0.0712 +0 0.0278 +0 0.0471 +0 0.3851 +0 0.1774 +0 0.1408 +0 0.0605 +0 0.0613 +0 0.1153 +0 0.0989 +0 0.0627 +0 0.0755 +0 0.1127 +0 0.6823 +0 0.0895 +0 0.0501 +0 0.0498 +0 0.0404 +0 0.0976 +0 0.1181 +0 0.1290 +0 0.1087 +0 0.0969 +0 0.0561 +0 0.0489 +0 0.0618 +0 0.0926 +0 0.1244 +0 0.0986 +0 0.1332 +0 0.1494 +0 0.0780 +0 0.3200 +0 0.0531 +0 0.0965 +0 0.1033 +0 0.2884 +0 0.1364 +0 0.3038 +0 0.0377 +0 0.1211 +0 0.3944 +0 0.2344 +0 0.0832 +0 0.1606 +0 0.1043 +0 0.6139 +0 0.0672 +0 0.0572 +0 0.1170 +0 0.0703 +0 0.0663 +0 0.0736 +0 0.0697 +0 0.2526 +0 0.0708 +0 0.0633 +0 0.0630 +0 0.2443 +0 0.0522 +0 0.0732 +0 0.2732 +0 0.0924 +0 0.0790 +0 0.0845 +0 0.0960 +0 0.7382 +0 0.1090 +0 0.0908 +0 0.0716 +0 0.3417 +0 0.0841 +0 0.1371 +0 0.0759 +0 0.0678 +0 0.0965 +0 0.1335 +0 0.0480 +0 0.2124 +0 0.0867 +0 0.0697 +0 0.0419 +0 0.0639 +0 0.1300 +0 0.1844 +0 0.1953 +0 0.0698 +0 0.1516 +0 0.2945 +0 0.1012 +0 0.0404 +0 0.0930 +0 0.1059 +0 0.0615 +0 0.0486 +0 0.4038 +0 0.2021 +0 0.1118 +0 0.1403 +0 0.2551 +0 0.0602 +0 0.0811 +0 0.0881 +0 0.1063 +0 0.0896 +0 0.0873 +0 0.1190 +0 0.0590 +0 0.1179 +0 0.0857 +0 0.0784 +0 0.4755 +0 0.1336 +0 0.0454 +0 0.0568 +0 0.0916 +0 0.0699 +0 0.0772 +0 0.0877 +0 0.2133 +0 0.0635 +0 0.5986 +0 0.1756 +0 0.0620 +0 0.1185 +0 0.0671 +0 0.0624 +0 0.1651 +0 0.1619 +0 0.1091 +0 0.1082 +0 0.1239 +0 0.0658 +0 0.0998 +0 0.1436 +0 0.1161 +0 0.1175 +0 0.1023 +0 0.3218 +0 0.1654 +0 0.0740 +0 0.2366 +0 0.1216 +0 0.0492 +0 0.1184 +0 0.0644 +0 0.0740 +0 0.0400 +0 0.1772 +0 0.0656 +0 0.0567 +0 0.1230 +0 0.0742 +0 0.0901 +0 0.1445 +0 0.1256 +0 0.0581 +0 0.1841 +0 0.0850 +0 0.2065 +0 0.0910 +0 0.0761 +0 0.0620 +0 0.0633 +0 0.0895 +0 0.1030 +0 0.1060 +0 0.3705 +0 0.0865 +0 0.1056 +0 0.1172 +0 0.1580 +0 0.0804 +0 0.0342 +0 0.1227 +0 0.2325 +0 0.0812 +0 0.1113 +0 0.2075 +0 0.1052 +1 0.3600 +0 0.0697 +0 0.1178 +0 0.2713 +0 0.1381 +0 0.0945 +0 0.1105 +0 0.4414 +0 0.0807 +0 0.0416 +0 0.0631 +0 0.0597 +0 0.6550 +0 0.1442 +0 0.0349 +0 0.0547 +0 0.1085 +0 0.3835 +0 0.1581 +0 0.1611 +0 0.1786 +0 0.2803 +0 0.1117 +0 0.1494 +0 0.2977 +0 0.0552 +0 0.1055 +0 0.0780 +0 0.0814 +0 0.0324 +1 0.7756 +0 0.2100 +0 0.0380 +0 0.0347 +0 0.0497 +0 0.2048 +0 0.2529 +0 0.0551 +0 0.1009 +0 0.1304 +0 0.0669 +0 0.0824 +0 0.0965 +0 0.2579 +0 0.1174 +0 0.3477 +0 0.0563 +0 0.1256 +0 0.0629 +0 0.0501 +0 0.0958 +0 0.1006 +0 0.1155 +0 0.0989 +0 0.0968 +0 0.1535 +0 0.0376 +0 0.0343 +0 0.1178 +0 0.0813 +0 0.0755 +1 0.8273 +0 0.1676 +0 0.4274 +0 0.1095 +0 0.1149 +0 0.0626 +0 0.0808 +0 0.0541 +0 0.0973 +0 0.0759 +0 0.4314 +0 0.1032 +0 0.0607 +1 0.7847 +0 0.1028 +0 0.1149 +0 0.1906 +0 0.0937 +0 0.1200 +0 0.6395 +0 0.0746 +0 0.1799 +0 0.1344 +0 0.5432 +0 0.6561 +0 0.3740 +0 0.1230 +0 0.1650 +0 0.0592 +0 0.0679 +0 0.1322 +0 0.0814 +0 0.1854 +0 0.1308 +0 0.0565 +0 0.2637 +0 0.2190 +0 0.1719 +0 0.2224 +0 0.0394 +0 0.0751 +0 0.0532 +0 0.1076 +0 0.1813 +0 0.1825 +0 0.2637 +0 0.2678 +0 0.4017 +0 0.0592 +0 0.1010 +0 0.0815 +0 0.0678 +0 0.0768 +0 0.4873 +0 0.5278 +0 0.2368 +0 0.0662 +0 0.0979 +0 0.0590 +0 0.3330 +0 0.3457 +0 0.0884 +0 0.1272 +0 0.1025 +0 0.1526 +0 0.5163 +0 0.1095 +0 0.1526 +0 0.2888 +0 0.1580 +0 0.2211 +0 0.0860 +0 0.0720 +0 0.2738 +0 0.1065 +0 0.0986 +0 0.1435 +1 0.8217 +0 0.0724 +0 0.0560 +0 0.0912 +0 0.1603 +0 0.0514 +0 0.1330 +0 0.1784 +0 0.1596 +0 0.6834 +0 0.0561 +0 0.0545 +0 0.1733 +0 0.0700 +0 0.3008 +0 0.1454 +0 0.0966 +0 0.1544 +0 0.0928 +0 0.1802 +0 0.0687 +0 0.1678 +0 0.0392 +0 0.2150 +0 0.0622 +0 0.1284 +0 0.0372 +0 0.0726 +0 0.0346 +0 0.0414 +0 0.0626 +0 0.1701 +0 0.0878 +0 0.2070 +0 0.0357 +0 0.2105 +0 0.1439 +0 0.1138 +1 0.7523 +0 0.2407 +0 0.2310 +0 0.2149 +0 0.2645 +0 0.1273 +1 0.8057 +0 0.1115 +0 0.1392 +0 0.1444 +0 0.0974 +0 0.0706 +0 0.0467 +0 0.0677 +0 0.2307 +0 0.1012 +0 0.1465 +0 0.0917 +0 0.0868 +0 0.1314 +0 0.1104 +0 0.2353 +0 0.0844 +0 0.1136 +0 0.0745 +0 0.0567 +0 0.2267 +0 0.0414 +0 0.1044 +0 0.0792 +0 0.0651 +0 0.1977 +0 0.1102 +0 0.0927 +0 0.2192 +0 0.0648 +0 0.0805 +0 0.1207 +0 0.0455 +0 0.1031 +0 0.0858 +0 0.0957 +0 0.1527 +0 0.1244 +1 0.7895 +0 0.1507 +0 0.1396 +0 0.1189 +0 0.0582 +0 0.0544 +0 0.0573 +0 0.1161 +0 0.1522 +0 0.2954 +0 0.0439 +0 0.1466 +0 0.1210 +0 0.5081 +0 0.0382 +0 0.0618 +0 0.0966 +0 0.1562 +0 0.0653 +0 0.0606 +0 0.0964 +0 0.1645 +0 0.0939 +0 0.0565 +0 0.0653 +0 0.2398 +0 0.1107 +0 0.1077 +0 0.3678 +0 0.0965 +0 0.1901 +0 0.0995 +0 0.0812 +0 0.1289 +0 0.5734 +0 0.1151 +0 0.2864 +0 0.4186 +0 0.1879 +0 0.1466 +0 0.2421 +0 0.3575 +0 0.3209 +0 0.3628 +0 0.0724 +0 0.0672 +0 0.0743 +0 0.0873 +0 0.0885 +0 0.0789 +0 0.0603 +0 0.1577 +0 0.0543 +0 0.0463 +0 0.0700 +0 0.0742 +0 0.1162 +0 0.0868 +0 0.0726 +0 0.1021 +0 0.5818 +1 0.7731 +0 0.1272 +0 0.3505 +0 0.0699 +0 0.0682 +0 0.0480 +0 0.1155 +0 0.0425 +0 0.0631 +0 0.0969 +0 0.1447 +0 0.1237 +0 0.0638 +0 0.1029 +0 0.0627 +0 0.0885 +0 0.1165 +0 0.1479 +0 0.1153 +0 0.1937 +0 0.3733 +1 0.7539 +0 0.1759 +0 0.1642 +0 0.1007 +0 0.1278 +0 0.1339 +0 0.1184 +0 0.2274 +0 0.2907 +0 0.0958 +0 0.1118 +0 0.0695 +0 0.0938 +0 0.1262 +0 0.1329 +1 0.7601 +0 0.0698 +0 0.5237 +0 0.0587 +0 0.1002 +0 0.0637 +0 0.2176 +0 0.1256 +0 0.2777 +0 0.1883 +0 0.2672 +0 0.2508 +0 0.0581 +0 0.1212 +0 0.1859 +0 0.0749 +0 0.0733 +0 0.0753 +0 0.3009 +0 0.2354 +0 0.0651 +0 0.0412 +0 0.0777 +0 0.0347 +0 0.4315 +0 0.1192 +0 0.0781 +0 0.0670 +0 0.0912 +0 0.1082 +0 0.0694 +0 0.2632 +0 0.0382 +0 0.0496 +0 0.0739 +0 0.0758 +0 0.1283 +0 0.0652 +0 0.0977 +0 0.0654 +0 0.0920 +0 0.1919 +0 0.1506 +0 0.1343 +0 0.1770 +0 0.0487 +0 0.1160 +0 0.1223 +0 0.1242 +0 0.1632 +0 0.1045 +0 0.0569 +0 0.0367 +0 0.1134 +0 0.1433 +0 0.2946 +0 0.2105 +0 0.3811 +0 0.1705 +0 0.2123 +0 0.0993 +0 0.1039 +0 0.2056 +0 0.1115 +0 0.1558 +0 0.0635 +0 0.1035 +0 0.1203 +0 0.7075 +0 0.0914 +0 0.0912 +0 0.3004 +0 0.1284 +0 0.1101 +0 0.0959 +0 0.1053 +0 0.1053 +0 0.0989 +0 0.0962 +0 0.0520 +0 0.1998 +0 0.0738 +0 0.0897 +0 0.1001 +0 0.0901 +0 0.0893 +0 0.1018 +0 0.1817 +0 0.1181 +0 0.1273 +0 0.5318 +0 0.1151 +0 0.0991 +0 0.1890 +0 0.1353 +0 0.2789 +0 0.1219 +0 0.1048 +0 0.1067 +0 0.1863 +0 0.1612 +0 0.2335 +0 0.0568 +0 0.0663 +0 0.1698 +0 0.1849 +0 0.1026 +0 0.0592 +0 0.1408 +0 0.1394 +0 0.0803 +0 0.0624 +0 0.1244 +0 0.0707 +0 0.0989 +0 0.1970 +0 0.1185 +0 0.0781 +0 0.0667 +0 0.0886 +0 0.0589 +0 0.0725 +0 0.2247 +0 0.1626 +0 0.2263 +0 0.0426 +0 0.0503 +0 0.0815 +0 0.0617 +0 0.1943 +0 0.1523 +0 0.1441 +0 0.0760 +0 0.1972 +0 0.6032 +0 0.0945 +0 0.1712 +0 0.0636 +0 0.4616 +0 0.0769 +0 0.2347 +0 0.0501 +0 0.2481 +0 0.0656 +0 0.3411 +0 0.1293 +0 0.2556 +0 0.1071 +0 0.1892 +0 0.0924 +0 0.1813 +0 0.2669 +0 0.0845 +0 0.2133 +0 0.3698 +0 0.0406 +0 0.1053 +0 0.0745 +0 0.0767 +0 0.0904 +0 0.0562 +0 0.1178 +0 0.1901 +0 0.0877 +0 0.0394 +0 0.3894 +0 0.1628 +0 0.3208 +0 0.1046 +0 0.1030 +0 0.0908 +0 0.0639 +0 0.1062 +0 0.1358 +0 0.0635 +0 0.0863 +0 0.0759 +0 0.1592 +0 0.2059 +0 0.1102 +0 0.1036 +0 0.4363 +0 0.0374 +0 0.1291 +0 0.0870 +0 0.0729 +0 0.0547 +0 0.5480 +0 0.0753 +0 0.0535 +0 0.1527 +0 0.0927 +0 0.0724 +0 0.0356 +0 0.1359 +0 0.0428 +0 0.0949 +0 0.0913 +0 0.2030 +0 0.5601 +0 0.0511 +0 0.3325 +0 0.0496 +0 0.0433 +0 0.0876 +0 0.0545 +0 0.3386 +0 0.3400 +0 0.1135 +0 0.0977 +0 0.1119 +0 0.2266 +0 0.2220 +0 0.0562 +0 0.0711 +0 0.0454 +0 0.1438 +0 0.1001 +0 0.0715 +0 0.0593 +0 0.0740 +0 0.2790 +0 0.1175 +0 0.1093 +0 0.0548 +0 0.1314 +0 0.1945 +0 0.1426 +0 0.1071 +0 0.0751 +0 0.2329 +0 0.0544 +0 0.0799 +0 0.0834 +0 0.0627 +0 0.0713 +0 0.1133 +0 0.0544 +0 0.0729 +0 0.3504 +0 0.1144 +0 0.0727 +0 0.3359 +0 0.0485 +0 0.0934 +0 0.0531 +0 0.1139 +0 0.5096 +0 0.0420 +0 0.0894 +0 0.0949 +0 0.1580 +0 0.0713 +0 0.0609 +0 0.1446 +0 0.0999 +0 0.0626 +0 0.1026 +0 0.0843 +0 0.2900 +0 0.1003 +0 0.0575 +0 0.1957 +0 0.0822 +0 0.0436 +0 0.1789 +0 0.0947 +0 0.0771 +0 0.1241 +0 0.1014 +0 0.2682 +0 0.1252 +0 0.0687 +0 0.7247 +0 0.1216 +0 0.1089 +0 0.1627 +0 0.1370 +0 0.3745 +0 0.3485 +0 0.1870 +0 0.0654 +0 0.5067 +0 0.2491 +0 0.2520 +0 0.1319 +0 0.0609 +0 0.0974 +0 0.0774 +0 0.1079 +0 0.1050 +0 0.1019 +0 0.2462 +0 0.4553 +0 0.0743 +0 0.0909 +0 0.1114 +0 0.1343 +0 0.0659 +0 0.1117 +0 0.1000 +0 0.0859 +0 0.0739 +0 0.7021 +0 0.0563 +0 0.2053 +0 0.1410 +0 0.0585 +0 0.0821 +0 0.1003 +0 0.0663 +0 0.1089 +0 0.1315 +0 0.0420 +0 0.1078 +0 0.1280 +0 0.0703 +0 0.0770 +0 0.0936 +0 0.1071 +0 0.1038 +0 0.1912 +0 0.5366 +0 0.0725 +0 0.1273 +0 0.0617 +0 0.0703 +0 0.1752 +0 0.0953 +0 0.1352 +0 0.2561 +0 0.3569 +0 0.0551 +0 0.1148 +0 0.0756 +0 0.1063 +0 0.1156 +0 0.1453 +0 0.0828 +0 0.1074 +0 0.0999 +0 0.1916 +0 0.0830 +0 0.0539 +0 0.0487 +0 0.1071 +0 0.0824 +0 0.1035 +0 0.0481 +0 0.0534 +0 0.1424 +0 0.0881 +0 0.0481 +0 0.2519 +0 0.1172 +0 0.1230 +0 0.0531 +0 0.0454 +0 0.0832 +0 0.1673 +0 0.0935 +0 0.1102 +0 0.2157 +0 0.0648 +0 0.1444 +0 0.0466 +0 0.3216 +0 0.0602 +0 0.1729 +0 0.1636 +1 0.8491 +0 0.0329 +0 0.0609 +0 0.0545 +0 0.0920 +0 0.0641 +0 0.1947 +0 0.0806 +0 0.0631 +0 0.0863 +0 0.0846 +0 0.0526 +0 0.1276 +0 0.2300 +0 0.2393 +0 0.1783 +0 0.2246 +0 0.1241 +0 0.1817 +0 0.0428 +0 0.1084 +0 0.1441 +0 0.0393 +0 0.2367 +0 0.0725 +0 0.1714 +0 0.3277 +0 0.0554 +0 0.3045 +0 0.1317 +0 0.2483 +0 0.0789 +0 0.2183 +0 0.1393 +0 0.0827 +0 0.5039 +0 0.2588 +0 0.0856 +0 0.0531 +0 0.0550 +0 0.1032 +0 0.1006 +0 0.1989 +0 0.2360 +0 0.1990 +0 0.0846 +0 0.2677 +0 0.0668 +0 0.1091 +0 0.0645 +0 0.0759 +0 0.1128 +0 0.0938 +0 0.1244 +0 0.0455 +0 0.0948 +0 0.0928 +0 0.0629 +0 0.0996 +0 0.0805 +0 0.0949 +0 0.1009 +0 0.1873 +0 0.1081 +0 0.4894 +0 0.1026 +0 0.0870 +0 0.1459 +0 0.0806 +0 0.0826 +0 0.5658 +0 0.0992 +0 0.1284 +0 0.0726 +0 0.0985 +0 0.6879 +0 0.1469 +0 0.1194 +0 0.0523 +0 0.1797 +0 0.0908 +0 0.0624 +0 0.1771 +0 0.1426 +0 0.2343 +0 0.0685 +0 0.3336 +0 0.0919 +1 0.7822 +0 0.2660 +0 0.0621 +0 0.3918 +0 0.0923 +0 0.0747 +0 0.1291 +0 0.0677 +1 0.8614 +0 0.1719 +0 0.0502 +1 0.8115 +0 0.1365 +0 0.7320 +0 0.1217 +0 0.2346 +0 0.1538 +0 0.0931 +0 0.5511 +0 0.2634 +0 0.0932 +0 0.0718 +0 0.2961 +0 0.0899 +0 0.0558 +0 0.1903 +0 0.1132 +0 0.0911 +0 0.2023 +0 0.0658 +0 0.0670 +0 0.7226 +0 0.0914 +0 0.2457 +0 0.0549 +1 0.8379 +0 0.1638 +0 0.1724 +0 0.0674 +0 0.4908 +0 0.3837 +0 0.0893 +0 0.0564 +0 0.0797 +0 0.1429 +0 0.0501 +0 0.0510 +0 0.1113 +0 0.1511 +0 0.0694 +0 0.1415 +0 0.1834 +0 0.0807 +0 0.0858 +0 0.1319 +0 0.1748 +0 0.2758 +0 0.1326 +0 0.1360 +0 0.0561 +0 0.6480 +0 0.0886 +0 0.0459 +0 0.0577 +0 0.0374 +0 0.1194 +0 0.0578 +0 0.1989 +0 0.1612 +0 0.0412 +0 0.1732 +0 0.7436 +0 0.0880 +0 0.2005 +0 0.0389 +0 0.1590 +0 0.1104 +0 0.0719 +0 0.1632 +0 0.0921 +0 0.2690 +0 0.1537 +0 0.0462 +0 0.1490 +0 0.0900 +0 0.0991 +0 0.0531 +0 0.0704 +0 0.2572 +0 0.1144 +0 0.6838 +0 0.2184 +0 0.2926 +0 0.1166 +0 0.1233 +0 0.0567 +0 0.0492 +1 0.8724 +0 0.0947 +0 0.1493 +0 0.0370 +0 0.1386 +0 0.1057 +0 0.0896 +0 0.0608 +0 0.1206 +0 0.1115 +0 0.0458 +0 0.1187 +0 0.1678 +0 0.0826 +0 0.0579 +0 0.0572 +0 0.0900 +0 0.2039 +0 0.1440 +0 0.0711 +0 0.0817 +0 0.0365 +0 0.1153 +0 0.2146 +0 0.1535 +1 0.7703 +0 0.0474 +0 0.0452 +0 0.6325 +0 0.0607 +0 0.3267 +0 0.0983 +0 0.1522 +0 0.0956 +0 0.0557 +0 0.0603 +0 0.2168 +0 0.0630 +0 0.1274 +0 0.4523 +0 0.1003 +0 0.0399 +0 0.2138 +0 0.3063 +0 0.0946 +0 0.1514 +0 0.4796 +0 0.0693 +1 0.7508 +0 0.2149 +0 0.1240 +0 0.0376 +0 0.0919 +0 0.0637 +0 0.0712 +0 0.1499 +0 0.2065 +0 0.1484 +0 0.1197 +0 0.0759 +0 0.1145 +0 0.1136 +0 0.0448 +0 0.0710 +0 0.0539 +0 0.1628 +0 0.4311 +0 0.0663 +0 0.0513 +0 0.0879 +0 0.1676 +0 0.0804 +0 0.0468 +0 0.0980 +0 0.0640 +0 0.0796 +0 0.1373 +0 0.0754 +0 0.0568 +0 0.2991 +0 0.1335 +0 0.0859 +1 0.8506 +0 0.0447 +0 0.1549 +1 0.8532 +0 0.1240 +0 0.0706 +0 0.1066 +0 0.2133 +0 0.0587 +0 0.1447 +0 0.1320 +0 0.0473 +0 0.1168 +0 0.0956 +0 0.1640 +0 0.0688 +0 0.2962 +0 0.0750 +0 0.0643 +0 0.2416 +0 0.0543 +0 0.2857 +0 0.1057 +0 0.2130 +0 0.1073 +0 0.0523 +0 0.1267 +0 0.1021 +0 0.2347 +0 0.0745 +0 0.1564 +0 0.1113 +0 0.1524 +0 0.0956 +0 0.1188 +0 0.0953 +0 0.0719 +0 0.1287 +0 0.6704 +0 0.2070 +0 0.7390 +0 0.0792 +0 0.0798 +0 0.0666 +0 0.1438 +0 0.1471 +0 0.1194 +0 0.0752 +0 0.1112 +0 0.0709 +0 0.1661 +0 0.0645 +0 0.1296 +0 0.0683 +0 0.3091 +0 0.1273 +0 0.1980 +0 0.2527 +0 0.0813 +0 0.2027 +0 0.1178 +0 0.0633 +0 0.1396 +0 0.1138 +0 0.2600 +0 0.3257 +0 0.0896 +0 0.1922 +0 0.1217 +0 0.0594 +0 0.1015 +0 0.3438 +0 0.0875 +0 0.0579 +0 0.2154 +0 0.2021 +0 0.1316 +0 0.0607 +0 0.3380 +0 0.1015 +0 0.0549 +0 0.2002 +0 0.2207 +0 0.1140 +0 0.0483 +0 0.2467 +0 0.0875 +0 0.0817 +0 0.1241 +0 0.0895 +0 0.1491 +0 0.1320 +0 0.1663 +0 0.1493 +0 0.1578 +0 0.5852 +0 0.0456 +0 0.0856 +0 0.0829 +0 0.1408 +0 0.0932 +0 0.2429 +0 0.0456 +0 0.1241 +0 0.0818 +0 0.2750 +0 0.0990 +0 0.1909 +0 0.0729 +0 0.1051 +0 0.2362 +0 0.7286 +0 0.3972 +0 0.0698 +0 0.1142 +0 0.0745 +0 0.0949 +0 0.0377 +0 0.1875 +0 0.1288 +0 0.0751 +0 0.0606 +0 0.0863 +0 0.1193 +0 0.3385 +0 0.0897 +0 0.6436 +0 0.0878 +1 0.7538 +0 0.1152 +1 0.8459 +0 0.1769 +0 0.1967 +0 0.0598 +0 0.0684 +0 0.1970 +0 0.0680 +0 0.4343 +0 0.1008 +0 0.1995 +0 0.0780 +0 0.0514 +0 0.0924 +0 0.0729 +0 0.1572 +0 0.2014 +0 0.0855 +0 0.1537 +0 0.1466 +0 0.1051 +0 0.2301 +0 0.0672 +0 0.0974 +0 0.1649 +0 0.0702 +0 0.0564 +0 0.0914 +0 0.0856 +0 0.2681 +0 0.0567 +0 0.1107 +0 0.0597 +0 0.1073 +0 0.0824 +0 0.1096 +0 0.2393 +0 0.1178 +0 0.1837 +0 0.1140 +0 0.2135 +0 0.1027 +0 0.0838 +0 0.0836 +0 0.1521 +0 0.1719 +0 0.0865 +0 0.0887 +0 0.1496 +0 0.1448 +0 0.0861 +0 0.1474 +0 0.1295 +0 0.6024 +0 0.6778 +0 0.1682 +0 0.0747 +0 0.0733 +0 0.3856 +0 0.0953 +0 0.1349 +0 0.1908 +0 0.1259 +0 0.1733 +0 0.2070 +0 0.1267 +0 0.1495 +0 0.0556 +0 0.2301 +0 0.1581 +0 0.0393 +0 0.0488 +0 0.1572 +0 0.3198 +0 0.3565 +0 0.2885 +0 0.0769 +0 0.1205 +0 0.2461 +0 0.0399 +0 0.0772 +0 0.5434 +0 0.1508 +0 0.0908 +0 0.4285 +0 0.2733 +0 0.1041 +0 0.1163 +0 0.0880 +0 0.0398 +0 0.1900 +1 0.8827 +0 0.0402 +0 0.7354 +0 0.0786 +0 0.1474 +0 0.2107 +0 0.0686 +0 0.1881 +0 0.1391 +0 0.0848 +0 0.0856 +0 0.4799 +0 0.0820 +0 0.1257 +0 0.6474 +0 0.1307 +0 0.2989 +0 0.2237 +0 0.1767 +0 0.1866 +0 0.4043 +0 0.2982 +0 0.1196 +0 0.1168 +0 0.0841 +0 0.1220 +0 0.0609 +0 0.0991 +0 0.2237 +0 0.1250 +0 0.0765 +0 0.1521 +0 0.1841 +0 0.1200 +0 0.0991 +0 0.0670 +0 0.1179 +0 0.1089 +0 0.1065 +0 0.0658 +0 0.2457 +0 0.0913 +0 0.0617 +0 0.0966 +0 0.1277 +0 0.0720 +0 0.2766 +0 0.3358 +0 0.1187 +0 0.1317 +0 0.2375 +0 0.3549 +0 0.0640 +0 0.1021 +0 0.1104 +0 0.0727 +0 0.2309 +0 0.6827 +0 0.1551 +0 0.0791 +0 0.0703 +0 0.1516 +0 0.1070 +0 0.0565 +0 0.0682 +0 0.2317 +1 0.8566 +0 0.1445 +0 0.0811 +0 0.0910 +0 0.0853 +0 0.2277 +0 0.1428 +0 0.1149 +0 0.0723 +0 0.1683 +0 0.0955 +0 0.1743 +0 0.2329 +0 0.0993 +0 0.2297 +0 0.0709 +0 0.0613 +0 0.3020 +0 0.1451 +0 0.1218 +0 0.2890 +0 0.0967 +0 0.0798 +0 0.1005 +0 0.0976 +0 0.0963 +0 0.1156 +0 0.0537 +0 0.0763 +0 0.3609 +0 0.1061 +0 0.4330 +0 0.0945 +0 0.0994 +0 0.0645 +0 0.0962 +0 0.2081 +0 0.0829 +0 0.1326 +0 0.0934 +0 0.1075 +0 0.0456 +0 0.1344 +0 0.7485 +0 0.0540 +0 0.1417 +0 0.1194 +0 0.0414 +0 0.0567 +0 0.0763 +0 0.0737 +0 0.1110 +0 0.0837 +0 0.1721 +0 0.2812 +0 0.0462 +0 0.5576 +0 0.0995 +0 0.0607 +0 0.1339 +0 0.1027 +0 0.2355 +0 0.0864 +0 0.0986 +0 0.0394 +0 0.0569 +0 0.1230 +0 0.1320 +0 0.0907 +0 0.0930 +0 0.1895 +0 0.0566 +0 0.0967 +0 0.0490 +0 0.0603 +0 0.1906 +0 0.1844 +0 0.0917 +0 0.0494 +0 0.1257 +0 0.0500 +0 0.1124 +0 0.1032 +0 0.0397 +0 0.0528 +0 0.0755 +0 0.2620 +0 0.1138 +0 0.2115 +0 0.1145 +0 0.1053 +0 0.0752 +0 0.0527 +0 0.1096 +0 0.0798 +0 0.0391 +0 0.0806 +0 0.1209 +0 0.0759 +0 0.0653 +0 0.0765 +0 0.0904 +0 0.0739 +0 0.0701 +0 0.1464 +0 0.0634 +0 0.0714 +0 0.2295 +0 0.2251 +0 0.1552 +0 0.1190 +0 0.0803 +0 0.1283 +0 0.2286 +0 0.0491 +0 0.0707 +0 0.0484 +0 0.1175 +0 0.0743 +0 0.1039 +0 0.1029 +0 0.0822 +0 0.1401 +0 0.1878 +0 0.1427 +0 0.1048 +0 0.0959 +0 0.2036 +0 0.0834 +0 0.1060 +0 0.0759 +0 0.1194 +0 0.0910 +0 0.6150 +0 0.0858 +0 0.0716 +1 0.7874 +0 0.0966 +0 0.0488 +0 0.1676 +0 0.1510 +0 0.1382 +0 0.0960 +0 0.0803 +0 0.0758 +0 0.2423 +0 0.0718 +0 0.0684 +0 0.0688 +0 0.1304 +0 0.0787 +0 0.0799 +0 0.0446 +0 0.2524 +0 0.1811 +0 0.1186 +0 0.0805 +0 0.1790 +0 0.1496 +0 0.3438 +0 0.0455 +0 0.1454 +0 0.0667 +0 0.0620 +0 0.0669 +0 0.0490 +0 0.5144 +0 0.0857 +0 0.1509 +0 0.0914 +0 0.0548 +0 0.1561 +0 0.0654 +0 0.2245 +0 0.0843 +0 0.0552 +0 0.1669 +0 0.1887 +0 0.1014 +0 0.1069 +0 0.1005 +0 0.0968 +0 0.0421 +0 0.5710 +0 0.1980 +0 0.0669 +0 0.2444 +0 0.1243 +0 0.1248 +0 0.0780 +0 0.1086 +0 0.0518 +0 0.0877 +0 0.0719 +0 0.0468 +0 0.2851 +0 0.1474 +0 0.0747 +0 0.0631 +0 0.1892 +0 0.0841 +0 0.0882 +0 0.1525 +0 0.1691 +0 0.1514 +0 0.0392 +0 0.0375 +0 0.4280 +0 0.1453 +0 0.1113 +0 0.1627 +0 0.0723 +0 0.0567 +0 0.0736 +0 0.0493 +0 0.0920 +0 0.0653 +0 0.0529 +0 0.0913 +0 0.0848 +0 0.3857 +0 0.2107 +0 0.1804 +0 0.1553 +0 0.2084 +0 0.0622 +0 0.1493 +0 0.1711 +0 0.0757 +0 0.0862 +0 0.0705 +0 0.1187 +0 0.1490 +0 0.1565 +0 0.0499 +0 0.1320 +0 0.0736 +0 0.2025 +0 0.1415 +0 0.0790 +0 0.5982 +0 0.0793 +0 0.1072 +0 0.0852 +0 0.1572 +0 0.0801 +0 0.0863 +0 0.0490 +0 0.1213 +0 0.1816 +0 0.5375 +0 0.0718 +0 0.1954 +0 0.0953 +0 0.1506 +0 0.1633 +0 0.2631 +0 0.0466 +0 0.1239 +0 0.1406 +0 0.5299 +0 0.0489 +0 0.1161 +0 0.1491 +0 0.0809 +0 0.1798 +0 0.1789 +0 0.0873 +0 0.2071 +0 0.0809 +0 0.2219 +0 0.0869 +0 0.0866 +0 0.0509 +0 0.0943 +0 0.0877 +0 0.0709 +0 0.4135 +0 0.1000 +0 0.1352 +0 0.0604 +0 0.2903 +0 0.0594 +0 0.1436 +0 0.0490 +0 0.1552 +0 0.2401 +0 0.1107 +0 0.1862 +0 0.1488 +0 0.0529 +0 0.1842 +0 0.1385 +0 0.1102 +0 0.1253 +0 0.0336 +0 0.1294 +0 0.2393 +0 0.0825 +0 0.0809 +0 0.1623 +0 0.7208 +0 0.1216 +0 0.1074 +0 0.0673 +0 0.0754 +0 0.0834 +1 0.8071 +0 0.0827 +0 0.0886 +0 0.0732 +0 0.0610 +0 0.0762 +0 0.7283 +0 0.0503 +0 0.0671 +0 0.0826 +0 0.0735 +0 0.0834 +0 0.0659 +0 0.0972 +0 0.0788 +0 0.0942 +0 0.4898 +0 0.0799 +0 0.1408 +0 0.0959 +0 0.1902 +0 0.0923 +0 0.0998 +0 0.5892 +0 0.0659 +0 0.1226 +0 0.1196 +0 0.1424 +0 0.1741 +0 0.0825 +0 0.0812 +0 0.0622 +0 0.1080 +0 0.6252 +0 0.1661 +0 0.0997 +0 0.1128 +0 0.0692 +0 0.2817 +0 0.1024 +0 0.2115 +0 0.0708 +0 0.0823 +0 0.1128 +0 0.1060 +0 0.0409 +0 0.1447 +0 0.0839 +0 0.3146 +0 0.1772 +0 0.3498 +0 0.0619 +0 0.0653 +0 0.0915 +0 0.0870 +0 0.0914 +0 0.7389 +0 0.5932 +0 0.2769 +0 0.0542 +0 0.0471 +0 0.0518 +0 0.1054 +0 0.1383 +0 0.0764 +0 0.0962 +0 0.0691 +0 0.0849 +0 0.2122 +0 0.0480 +0 0.1395 +0 0.0990 +0 0.1091 +0 0.1858 +0 0.5396 +0 0.0516 +0 0.0435 +0 0.1234 +0 0.0419 +0 0.0578 +0 0.0674 +0 0.0731 +0 0.3640 +0 0.1027 +0 0.4534 +0 0.1499 +0 0.2808 +0 0.0573 +0 0.1221 +0 0.0614 +0 0.0953 +0 0.0609 +0 0.0853 +0 0.0745 +0 0.0783 +0 0.1077 +0 0.1260 +0 0.1675 +0 0.0980 +0 0.1622 +0 0.0897 +1 0.8219 +0 0.0536 +0 0.1682 +0 0.0842 +0 0.0965 +0 0.1214 +0 0.2336 +0 0.6050 +0 0.0862 +0 0.1039 +0 0.7277 +0 0.7018 +0 0.1373 +0 0.1084 +0 0.0868 +0 0.0894 +0 0.0367 +0 0.2066 +0 0.1719 +0 0.0622 +0 0.1098 +0 0.1181 +0 0.1451 +0 0.0797 +0 0.0942 +0 0.2131 +0 0.0804 +0 0.0540 +0 0.1147 +0 0.2023 +0 0.6215 +0 0.1853 +0 0.0530 +0 0.1187 +0 0.1133 +0 0.0706 +0 0.0905 +0 0.1607 +0 0.0636 +0 0.1869 +0 0.1588 +0 0.1330 +0 0.0983 +0 0.0796 +0 0.4585 +0 0.5920 +0 0.2049 +0 0.1988 +0 0.0436 +0 0.0558 +0 0.1006 +0 0.0918 +0 0.0507 +0 0.1087 +0 0.0909 +0 0.0685 +0 0.0954 +0 0.1435 +0 0.0870 +0 0.1595 +0 0.0759 +0 0.1882 +0 0.2666 +0 0.2038 +0 0.0940 +0 0.1763 +0 0.1712 +0 0.0685 +0 0.2257 +0 0.0822 +0 0.0509 +0 0.2690 +0 0.0865 +0 0.1719 +0 0.1297 +0 0.0514 +0 0.0637 +0 0.0721 +0 0.1004 +0 0.1148 +1 0.8462 +0 0.2603 +0 0.0449 +0 0.0542 +0 0.2270 +0 0.1829 +0 0.0511 +0 0.0574 +0 0.1534 +0 0.0457 +0 0.1148 +0 0.0541 +0 0.1275 +0 0.0330 +0 0.1257 +0 0.1562 +0 0.0679 +0 0.1011 +0 0.0595 +0 0.5432 +0 0.0843 +0 0.1194 +0 0.2286 +0 0.0612 +0 0.1204 +0 0.1227 +0 0.1723 +0 0.1692 +0 0.1314 +0 0.0532 +0 0.5031 +0 0.1209 +0 0.1330 +0 0.1376 +0 0.1106 +0 0.0633 +0 0.0553 +0 0.1080 +0 0.1022 +0 0.1126 +0 0.1208 +0 0.1027 +0 0.0801 +0 0.2187 +0 0.2475 +0 0.0517 +0 0.0878 +0 0.3615 +0 0.0718 +0 0.2936 +0 0.1218 +0 0.0927 +0 0.0771 +0 0.0968 +0 0.0924 +0 0.0962 +0 0.1204 +0 0.0607 +0 0.0504 +0 0.4514 +0 0.0700 +0 0.1376 +0 0.0477 +0 0.0806 +0 0.0612 +0 0.0761 +0 0.0895 +0 0.1194 +0 0.0738 +0 0.1875 +0 0.1889 +0 0.1932 +0 0.0996 +0 0.1356 +0 0.2040 +0 0.1245 +0 0.0639 +0 0.1269 +0 0.6397 +0 0.0610 +0 0.0309 +0 0.0635 +0 0.0670 +0 0.1482 +0 0.1568 +0 0.2453 +0 0.0820 +0 0.0840 +0 0.1608 +0 0.0514 +0 0.0735 +0 0.0601 +0 0.1727 +0 0.0439 +0 0.3019 +0 0.3621 +0 0.2485 +0 0.0906 +0 0.0766 +0 0.0484 +0 0.1459 +0 0.0565 +0 0.1364 +0 0.1026 +0 0.0888 +0 0.0931 +0 0.0705 +0 0.1146 +0 0.2475 +0 0.2211 +0 0.0608 +0 0.1129 +0 0.0564 +0 0.0792 +0 0.0657 +0 0.0890 +0 0.2828 +0 0.1852 +0 0.0620 +0 0.1068 +0 0.0879 +0 0.0459 +0 0.3843 +0 0.0608 +0 0.0392 +0 0.0593 +0 0.0861 +0 0.0783 +0 0.1989 +0 0.1596 +0 0.0715 +0 0.0986 +0 0.0558 +0 0.5913 +0 0.1225 +0 0.1424 +0 0.0933 +0 0.0388 +0 0.3264 +0 0.3571 +0 0.1376 +0 0.0741 +0 0.0953 +0 0.0666 +0 0.2822 +0 0.0631 +0 0.1196 +0 0.1634 +0 0.0853 +0 0.0595 +0 0.1133 +0 0.1186 +0 0.1981 +0 0.0714 +0 0.2581 +0 0.2243 +0 0.0832 +0 0.0567 +0 0.1245 +0 0.1717 +0 0.0876 +0 0.2075 +0 0.0388 +0 0.0802 +0 0.1032 +0 0.0465 +0 0.1316 +0 0.0725 +0 0.1793 +0 0.0828 +0 0.1198 +0 0.3163 +0 0.0769 +0 0.1348 +0 0.3876 +0 0.0723 +0 0.0711 +0 0.1085 +0 0.1665 +0 0.0986 +0 0.0676 +0 0.1389 +0 0.3285 +0 0.2349 +0 0.3054 +0 0.5931 +0 0.1601 +0 0.0901 +0 0.0982 +0 0.0995 +0 0.1026 +0 0.2053 +0 0.4597 +0 0.2146 +0 0.6883 +0 0.1477 +0 0.1293 +0 0.0620 +0 0.1045 +0 0.1640 +0 0.0460 +0 0.1631 +0 0.1970 +0 0.1070 +0 0.1034 +0 0.0815 +0 0.0816 +0 0.1039 +0 0.2788 +0 0.1384 +0 0.0744 +0 0.0347 +0 0.1954 +0 0.0791 +0 0.1846 +0 0.1812 +0 0.1145 +0 0.0709 +0 0.1759 +0 0.1488 +0 0.1964 +0 0.0759 +0 0.1820 +0 0.0399 +0 0.1734 +0 0.1377 +0 0.1460 +0 0.1716 +0 0.1093 +0 0.1748 +0 0.0438 +0 0.0543 +0 0.0911 +0 0.1012 +0 0.2824 +0 0.2121 +0 0.2065 +0 0.0871 +1 0.7954 +0 0.1370 +0 0.1467 +0 0.0459 +0 0.3658 +0 0.0690 +0 0.2234 +0 0.1201 +0 0.2547 +0 0.1142 +0 0.1500 +0 0.2166 +0 0.1295 +0 0.1581 +0 0.0782 +0 0.3923 +0 0.0706 +0 0.1198 +0 0.1413 +0 0.0927 +0 0.1994 +0 0.0786 +0 0.0975 +0 0.0830 +0 0.0988 +0 0.1126 +0 0.0468 +0 0.0803 +0 0.0844 +0 0.4263 +0 0.1682 +0 0.5427 +0 0.1042 +0 0.2329 +0 0.0497 +0 0.1116 +0 0.0871 +0 0.2047 +0 0.0530 +0 0.2745 +0 0.7162 +0 0.1118 +0 0.0515 +0 0.5554 +0 0.0785 +0 0.0565 +0 0.1031 +0 0.6079 +0 0.0348 +1 0.8105 +0 0.1493 +0 0.1504 +0 0.0776 +0 0.0883 +0 0.0735 +0 0.1321 +0 0.0896 +0 0.0744 +0 0.0727 +0 0.1278 +0 0.0496 +0 0.0840 +0 0.0395 +0 0.1708 +0 0.0718 +0 0.1302 +0 0.0685 +0 0.0664 +0 0.3345 +0 0.1162 +0 0.1156 +0 0.0605 +0 0.0477 +0 0.0865 +0 0.1117 +0 0.1225 +0 0.2107 +0 0.1042 +0 0.4556 +0 0.1578 +0 0.1241 +0 0.1447 +0 0.0455 +0 0.0963 +0 0.6685 +0 0.0761 +0 0.0670 +0 0.1231 +0 0.1474 +0 0.0756 +0 0.0851 +0 0.1581 +0 0.0413 +0 0.0834 +0 0.4663 +0 0.1889 +0 0.0649 +0 0.0780 +0 0.0706 +0 0.2690 +0 0.1266 +0 0.0925 +0 0.1059 +0 0.1511 +0 0.0620 +0 0.0754 +0 0.0477 +0 0.0877 +0 0.0683 +0 0.0903 +0 0.0602 +0 0.0878 +0 0.1400 +0 0.0966 +0 0.1182 +0 0.3881 +0 0.0876 +0 0.1562 +0 0.0634 +0 0.1323 +0 0.0767 +0 0.4183 +0 0.1649 +0 0.0777 +1 0.7587 +0 0.1256 +0 0.0489 +0 0.1578 +0 0.1326 +0 0.0311 +0 0.1558 +0 0.0334 +0 0.7231 +0 0.0712 +1 0.8463 +0 0.0659 +0 0.4167 +0 0.0916 +0 0.1275 +0 0.2173 +1 0.7678 +0 0.1828 +0 0.0802 +0 0.1056 +0 0.0523 +0 0.0382 +0 0.0510 +0 0.7220 +0 0.2036 +0 0.0572 +0 0.0423 +1 0.7860 +0 0.0458 +0 0.0771 +0 0.1730 +0 0.2133 +0 0.1646 +0 0.1408 +0 0.0602 +0 0.0599 +0 0.0406 +0 0.0519 +0 0.1651 +0 0.0670 +0 0.0783 +0 0.0622 +0 0.1747 +0 0.0677 +0 0.0597 +0 0.2175 +0 0.0338 +0 0.1398 +0 0.0797 +0 0.0902 +0 0.3261 +0 0.0641 +0 0.3582 +0 0.0841 +0 0.0808 +0 0.0998 +0 0.0745 +0 0.2681 +0 0.0812 +0 0.0696 +0 0.0413 +0 0.3259 +0 0.0373 +0 0.0687 +0 0.1503 +0 0.1335 +0 0.3413 +0 0.0969 +0 0.5367 +0 0.0666 +0 0.1276 +0 0.1162 +0 0.1573 +0 0.3388 +1 0.8227 +0 0.0939 +0 0.6160 +0 0.0719 +0 0.1076 +0 0.1022 +0 0.4653 +0 0.1711 +0 0.0604 +0 0.0841 +0 0.2046 +0 0.0808 +0 0.0974 +0 0.1037 +0 0.6488 +0 0.1072 +0 0.1225 +0 0.0941 +0 0.7189 +0 0.1942 +0 0.0711 +0 0.2361 +0 0.0801 +0 0.3970 +0 0.0464 +0 0.1829 +0 0.1820 +0 0.0797 +0 0.0829 +0 0.1031 +0 0.0800 +0 0.0778 +0 0.0693 +0 0.0678 +0 0.0846 +1 0.7697 +0 0.1596 +0 0.0650 +0 0.0731 +0 0.2641 +0 0.4258 +0 0.0749 +0 0.0795 +0 0.2261 +0 0.1798 +0 0.1129 +0 0.0832 +0 0.1705 +0 0.1287 +0 0.1524 +0 0.1228 +0 0.0853 +0 0.0684 +0 0.1017 +0 0.0706 +0 0.2245 +0 0.1148 +0 0.0426 +0 0.2451 +0 0.0949 +0 0.0713 +0 0.0824 +0 0.0849 +0 0.2762 +0 0.0625 +0 0.0981 +0 0.2778 +0 0.1677 +0 0.0798 +0 0.0651 +0 0.0517 +0 0.0959 +0 0.0835 +0 0.7323 +0 0.1460 +0 0.1140 +0 0.2339 +0 0.1321 +0 0.1674 +0 0.1101 +0 0.0819 +0 0.0844 +0 0.4335 +0 0.0588 +0 0.0884 +1 0.8024 +0 0.1389 +0 0.0998 +0 0.0898 +0 0.0665 +0 0.1799 +0 0.1305 +0 0.0538 +0 0.0456 +0 0.0800 +0 0.0943 +0 0.7089 +1 0.8264 +0 0.3857 +0 0.0617 +0 0.0949 +0 0.4925 +0 0.1342 +0 0.1450 +0 0.1207 +0 0.1110 +0 0.2309 +0 0.0283 +0 0.1118 +0 0.1236 +0 0.2361 +0 0.2261 +0 0.0467 +0 0.0982 +0 0.2507 +0 0.0445 +0 0.1837 +0 0.0432 +0 0.1146 +0 0.0930 +0 0.1467 +0 0.0987 +0 0.0662 +0 0.0957 +0 0.0348 +0 0.0433 +0 0.1659 +0 0.2168 +0 0.1065 +0 0.1246 +0 0.0772 +0 0.1533 +0 0.0539 +0 0.1243 +0 0.1082 +0 0.0680 +0 0.0883 +0 0.0522 +0 0.0755 +0 0.0814 +0 0.1042 +0 0.3384 +0 0.1889 +0 0.1515 +0 0.6591 +0 0.3986 +0 0.1791 +0 0.0453 +0 0.1200 +0 0.1598 +0 0.1400 +0 0.0547 +0 0.0651 +0 0.2413 +0 0.0824 +0 0.1057 +1 0.8218 +0 0.2683 +0 0.0872 +0 0.1107 +0 0.0742 +0 0.2376 +0 0.1352 +0 0.1433 +0 0.2090 +0 0.0565 +0 0.0961 +0 0.1446 +0 0.1800 +0 0.0593 +0 0.1006 +0 0.0710 +0 0.0401 +0 0.0584 +0 0.0671 +0 0.3081 +0 0.1359 +0 0.0393 +0 0.1655 +0 0.0702 +0 0.4153 +0 0.2524 +0 0.2438 +0 0.1383 +0 0.0495 +0 0.0417 +0 0.0519 +0 0.1753 +1 0.8818 +0 0.0774 +0 0.0838 +0 0.0409 +0 0.1953 +0 0.0898 +0 0.0539 +0 0.0662 +0 0.1498 +0 0.0972 +0 0.0410 +0 0.4306 +0 0.0796 +0 0.0696 +0 0.1899 +0 0.2600 +0 0.1715 +0 0.0899 +0 0.0417 +0 0.0832 +0 0.1610 +0 0.0967 +0 0.0440 +0 0.1166 +0 0.1998 +0 0.1250 +0 0.1315 +0 0.1407 +0 0.0335 +0 0.1024 +0 0.3248 +0 0.1081 +0 0.0816 +0 0.0846 +0 0.0545 +0 0.1262 +0 0.0873 +0 0.2096 +0 0.1713 +0 0.7243 +0 0.1734 +0 0.2680 +0 0.4695 +0 0.2906 +1 0.8283 +0 0.0777 +0 0.1419 +0 0.1768 +0 0.6290 +0 0.0595 +0 0.0854 +0 0.1042 +0 0.0792 +0 0.0648 +0 0.0674 +0 0.1041 +0 0.0509 +0 0.0555 +0 0.0969 +0 0.1287 +0 0.0776 +0 0.0644 +0 0.1124 +0 0.0950 +0 0.4410 +0 0.4115 +0 0.1343 +0 0.1594 +0 0.0844 +0 0.1951 +0 0.0979 +0 0.0398 +0 0.0354 +0 0.4024 +0 0.1174 +0 0.0495 +0 0.0843 +0 0.3017 +0 0.0720 +0 0.1329 +0 0.0913 +0 0.0922 +0 0.1020 +0 0.1463 +0 0.0858 +0 0.0920 +0 0.2474 +0 0.0765 +0 0.1210 +0 0.1024 +0 0.3436 +0 0.0846 +0 0.1419 +0 0.0395 +0 0.2833 +0 0.0672 +0 0.1553 +0 0.0484 +0 0.1726 +0 0.0369 +0 0.1176 +0 0.0960 +0 0.1017 +0 0.0750 +0 0.0609 +0 0.0779 +0 0.1559 +0 0.2190 +0 0.2850 +0 0.3085 +0 0.1136 +0 0.1173 +0 0.1481 +0 0.0615 +0 0.1062 +0 0.0527 +0 0.0667 +0 0.2332 +0 0.0769 +0 0.3772 +0 0.0621 +0 0.1096 +0 0.2024 +0 0.3660 +0 0.0827 +1 0.7608 +0 0.1450 +0 0.1259 +0 0.5190 +0 0.2634 +0 0.0597 +0 0.0564 +0 0.0456 +0 0.0901 +0 0.1214 +0 0.0819 +0 0.1053 +0 0.0465 +0 0.0896 +0 0.2485 +0 0.0731 +0 0.0523 +0 0.1438 +0 0.0804 +0 0.0638 +0 0.0517 +0 0.1081 +0 0.0459 +0 0.1610 +0 0.3223 +0 0.0855 +0 0.0835 +0 0.1293 +0 0.0638 +0 0.0906 +0 0.1937 +0 0.0601 +1 0.8170 +0 0.0831 +0 0.1649 +0 0.2965 +0 0.1063 +0 0.0525 +0 0.6615 +0 0.2396 +0 0.0739 +0 0.2263 +1 0.8347 +0 0.1339 +0 0.1296 +0 0.1621 +0 0.0684 +0 0.0802 +0 0.1936 +0 0.0766 +0 0.0417 +0 0.1407 +0 0.3836 +0 0.1014 +0 0.0435 +0 0.1238 +0 0.0713 +0 0.1020 +0 0.1625 +0 0.0613 +0 0.0900 +0 0.4385 +0 0.0689 +0 0.2187 +0 0.1292 +0 0.0470 +0 0.0872 +0 0.1551 +0 0.0996 +0 0.1170 +0 0.1670 +0 0.0651 +0 0.0778 +0 0.0658 +0 0.0723 +0 0.0719 +0 0.3453 +0 0.2257 +0 0.1062 +0 0.0489 +0 0.0709 +0 0.0478 +0 0.0478 +0 0.1312 +0 0.0943 +0 0.2196 +0 0.1004 +0 0.2192 +0 0.1633 +0 0.2012 +0 0.1285 +0 0.1314 +0 0.1545 +1 0.8405 +0 0.1137 +0 0.2270 +0 0.0636 +0 0.0371 +0 0.0597 +0 0.1284 +0 0.0518 +0 0.2553 +0 0.7384 +0 0.1852 +0 0.0732 +0 0.0913 +0 0.1144 +0 0.1030 +0 0.1366 +0 0.0915 +0 0.1634 +0 0.2760 +0 0.0675 +0 0.1448 +0 0.1513 +0 0.0358 +0 0.1533 +0 0.0726 +0 0.0432 +0 0.0548 +0 0.0391 +0 0.0549 +0 0.1578 +0 0.1077 +0 0.0612 +0 0.1149 +0 0.1161 +0 0.1208 +0 0.1051 +0 0.0741 +0 0.0554 +0 0.1931 +0 0.0752 +0 0.0589 +0 0.0971 +0 0.3502 +0 0.1381 +0 0.0560 +0 0.0998 +0 0.0641 +0 0.0952 +0 0.2910 +0 0.2827 +0 0.1499 +0 0.1048 +0 0.0741 +0 0.1681 +0 0.0843 +0 0.0519 +0 0.0526 +0 0.1068 +0 0.2541 +0 0.1034 +0 0.1159 +0 0.1738 +0 0.0542 +0 0.1389 +0 0.1068 +0 0.3800 +0 0.1485 +0 0.1326 +0 0.1940 +0 0.0724 +0 0.0629 +0 0.1133 +0 0.0817 +0 0.1701 +0 0.1303 +0 0.3289 +0 0.1092 +0 0.0784 +0 0.3129 +0 0.1146 +0 0.1156 +0 0.2495 +0 0.1303 +0 0.1405 +0 0.2118 +0 0.1028 +0 0.0832 +0 0.2534 +0 0.1529 +0 0.1131 +0 0.1488 +0 0.3393 +0 0.1335 +0 0.0864 +0 0.0574 +0 0.1301 +0 0.0759 +0 0.1429 +0 0.0538 +0 0.4102 +0 0.1161 +0 0.0665 +0 0.1897 +0 0.1508 +0 0.0546 +0 0.1531 +0 0.1351 +0 0.0518 +1 0.8383 +0 0.1102 +0 0.1174 +0 0.2291 +0 0.0620 +0 0.1463 +0 0.1207 +0 0.2425 +0 0.0743 +0 0.0526 +0 0.1082 +0 0.1460 +0 0.1450 +0 0.1394 +0 0.2003 +0 0.3380 +0 0.0727 +0 0.0764 +0 0.1786 +0 0.1412 +0 0.0506 +0 0.0380 +0 0.0674 +0 0.0952 +0 0.0529 +0 0.0797 +0 0.0733 +0 0.0825 +0 0.1337 +0 0.1105 +1 0.7670 +0 0.5126 +0 0.0488 +0 0.0736 +0 0.1191 +0 0.0928 +0 0.0943 +0 0.1027 +1 0.8482 +0 0.1144 +0 0.2016 +0 0.0415 +0 0.0700 +0 0.0859 +0 0.2002 +0 0.0676 +0 0.0954 +0 0.1254 +0 0.0736 +0 0.3762 +0 0.2025 +0 0.0512 +0 0.1965 +0 0.3321 +0 0.2733 +0 0.0485 +0 0.2030 +0 0.0632 +0 0.3103 +0 0.1831 +0 0.0707 +0 0.0494 +0 0.1354 +0 0.0442 +0 0.0890 +0 0.1416 +0 0.0560 +0 0.0811 +0 0.1083 +0 0.1012 +0 0.1751 +0 0.0478 +0 0.0616 +0 0.6595 +0 0.0720 +0 0.0988 +0 0.0597 +0 0.2388 +0 0.0372 +0 0.0415 +0 0.0695 +0 0.6897 +0 0.1794 +0 0.0367 +0 0.1588 +1 0.8670 +0 0.0773 +0 0.1660 +0 0.0928 +0 0.0870 +0 0.0910 +0 0.1493 +0 0.0852 +0 0.1870 +0 0.0445 +0 0.1752 +0 0.0558 +0 0.2598 +0 0.1160 +0 0.0465 +0 0.1431 +0 0.1491 +0 0.1078 +0 0.1293 +0 0.1102 +0 0.0553 +0 0.1392 +0 0.0601 +0 0.0463 +0 0.2343 +0 0.1746 +0 0.0827 +0 0.1142 +0 0.0742 +0 0.3783 +0 0.1131 +0 0.1861 +0 0.1612 +0 0.0711 +0 0.0860 +0 0.1375 +0 0.1659 +0 0.0507 +0 0.1516 +0 0.0962 +0 0.0564 +0 0.0533 +0 0.1125 +0 0.1251 +0 0.0896 +0 0.0811 +0 0.1050 +0 0.0877 +0 0.1209 +0 0.1341 +0 0.0424 +0 0.1652 +0 0.0810 +0 0.0816 +0 0.1415 +0 0.2169 +0 0.1407 +0 0.1037 +0 0.1129 +0 0.1309 +0 0.4629 +0 0.0840 +0 0.0944 +0 0.1001 +0 0.1987 +0 0.1924 +0 0.0411 +0 0.1394 +0 0.0798 +0 0.0684 +1 0.7917 +0 0.0939 +0 0.1447 +0 0.0955 +0 0.1131 +0 0.1334 +0 0.0599 +0 0.1452 +0 0.0802 +0 0.0602 +0 0.0983 +0 0.5121 +0 0.0621 +0 0.2822 +0 0.0670 +0 0.0638 +0 0.1307 +0 0.0599 +0 0.1140 +1 0.8085 +0 0.1098 +0 0.1101 +0 0.0535 +0 0.1804 +0 0.0726 +0 0.1076 +0 0.0699 +0 0.0785 +0 0.0760 +0 0.0879 +0 0.0700 +0 0.2469 +0 0.0645 +0 0.3283 +0 0.7025 +0 0.0933 +0 0.1402 +0 0.2210 +0 0.1150 +0 0.0787 +0 0.4423 +0 0.0617 +0 0.1359 +0 0.2572 +0 0.0520 +0 0.1140 +0 0.1008 +0 0.0853 +0 0.5872 +0 0.0899 +0 0.0434 +0 0.0749 +0 0.0777 +0 0.0482 +0 0.1599 +0 0.0857 +0 0.0624 +0 0.1747 +0 0.0954 +0 0.1698 +0 0.0806 +0 0.2337 +0 0.0840 +0 0.1158 +0 0.0923 +0 0.1985 +0 0.1696 +0 0.2143 +0 0.1970 +0 0.1333 +0 0.0676 +0 0.0970 +0 0.2263 +0 0.1539 +0 0.0947 +0 0.0590 +0 0.0861 +0 0.1932 +0 0.0839 +0 0.0694 +0 0.7319 +0 0.1146 +0 0.1533 +0 0.1501 +0 0.3113 +0 0.0839 +0 0.0656 +0 0.1060 +0 0.0475 +0 0.0501 +0 0.0533 +0 0.1611 +0 0.0670 +0 0.0863 +0 0.0834 +0 0.1210 +0 0.1999 +0 0.0682 +0 0.0964 +0 0.3593 +0 0.0766 +0 0.0803 +0 0.0769 +0 0.1159 +0 0.1424 +0 0.1364 +1 0.7531 +0 0.0732 +0 0.0556 +0 0.0736 +0 0.6855 +0 0.0777 +0 0.1263 +0 0.1835 +0 0.0987 +0 0.0832 +0 0.1146 +0 0.0787 +0 0.6662 +0 0.1986 +0 0.1371 +0 0.1855 +0 0.0405 +1 0.8441 +0 0.1076 +0 0.0617 +0 0.1096 +0 0.2015 +0 0.1138 +0 0.0690 +0 0.0791 +0 0.1483 +0 0.0869 +0 0.0593 +0 0.1139 +0 0.7247 +0 0.0910 +0 0.0687 +0 0.2070 +0 0.0670 +0 0.1197 +0 0.1041 +0 0.1296 +0 0.0550 +0 0.0797 +0 0.1826 +0 0.1042 +0 0.0499 +0 0.2214 +0 0.0668 +0 0.1271 +0 0.2842 +0 0.6534 +0 0.0902 +0 0.0557 +0 0.0774 +0 0.1568 +0 0.0763 +0 0.2117 +0 0.1620 +0 0.0494 +0 0.2044 +0 0.1554 +0 0.1049 +0 0.0560 +0 0.2479 +0 0.2004 +0 0.1169 +0 0.0718 +0 0.4255 +0 0.0904 +0 0.0865 +0 0.0906 +0 0.0732 +0 0.1029 +0 0.2816 +0 0.0852 +0 0.0903 +0 0.1001 +0 0.0783 +0 0.3245 +0 0.0901 +0 0.0781 +0 0.3535 +0 0.1211 +0 0.0422 +0 0.3524 +0 0.0929 +0 0.1546 +0 0.1062 +0 0.0695 +0 0.0395 +0 0.0392 +0 0.1001 +0 0.1965 +0 0.2064 +0 0.1903 +0 0.1164 +0 0.0483 +0 0.0408 +0 0.0975 +0 0.0645 +0 0.1052 +0 0.0640 +0 0.0797 +0 0.0487 +0 0.1361 +0 0.1329 +0 0.0679 +0 0.1002 +0 0.2586 +0 0.1248 +0 0.1658 +0 0.1361 +0 0.1500 +0 0.0423 +0 0.1043 +0 0.4945 +0 0.0863 +0 0.0799 +0 0.6877 +0 0.1245 +0 0.1232 +0 0.3976 +0 0.0664 +0 0.0631 +0 0.0826 +0 0.1242 +0 0.0792 +0 0.1142 +0 0.2141 +0 0.0715 +0 0.1827 +0 0.1046 +0 0.0614 +0 0.2165 +0 0.2544 +0 0.0998 +0 0.2669 +0 0.2870 +0 0.0633 +0 0.4294 +0 0.0786 +0 0.1832 +0 0.1864 +0 0.1005 +0 0.0818 +0 0.2065 +0 0.0938 +0 0.1444 +0 0.5225 +0 0.1237 +0 0.1463 +0 0.0782 +0 0.0637 +0 0.0552 +0 0.0468 +0 0.0523 +0 0.0515 +0 0.1484 +0 0.1717 +0 0.0970 +0 0.2246 +0 0.2280 +0 0.0598 +0 0.1133 +0 0.1460 +0 0.2402 +0 0.0915 +0 0.0949 +0 0.0871 +0 0.0295 +0 0.1544 +0 0.2035 +1 0.7775 +0 0.1735 +0 0.0482 +0 0.1412 +0 0.1798 +0 0.1402 +0 0.1364 +0 0.0282 +0 0.0759 +0 0.0328 +0 0.0744 +0 0.0689 +0 0.0785 +0 0.0854 +0 0.1418 +0 0.0942 +0 0.1073 +0 0.0975 +0 0.2538 +0 0.0595 +0 0.1031 +0 0.1534 +0 0.1061 +0 0.1768 +0 0.1172 +0 0.1424 +0 0.0814 +0 0.1339 +0 0.0522 +0 0.0752 +0 0.0919 +0 0.1056 +0 0.1141 +0 0.0451 +0 0.1068 +0 0.4547 +0 0.0710 +0 0.0454 +0 0.4062 +0 0.0409 +0 0.0507 +0 0.1535 +0 0.1004 +0 0.2276 +0 0.1139 +0 0.0782 +0 0.0427 +0 0.1024 +0 0.0644 +0 0.0617 +1 0.8009 +0 0.0526 +0 0.0809 +0 0.0553 +0 0.2016 +0 0.5832 +0 0.0684 +0 0.1013 +0 0.1680 +0 0.1911 +0 0.0448 +0 0.1074 +0 0.0628 +0 0.1445 +1 0.8813 +0 0.0957 +0 0.1015 +0 0.4543 +0 0.6794 +0 0.1405 +1 0.7564 +0 0.0842 +0 0.0748 +0 0.7043 +0 0.0776 +0 0.1595 +0 0.1105 +0 0.1136 +0 0.1177 +0 0.1494 +0 0.1046 +0 0.1046 +0 0.0436 +0 0.3283 +0 0.1405 +0 0.1048 +0 0.1125 +0 0.0978 +0 0.0659 +0 0.2553 +0 0.1797 +0 0.0757 +0 0.0875 +0 0.1871 +0 0.0552 +0 0.1423 +0 0.0512 +0 0.5559 +0 0.1173 +0 0.0428 +0 0.0972 +0 0.1277 +0 0.0596 +0 0.0957 +0 0.0707 +0 0.3809 +0 0.1044 +0 0.1565 +0 0.0906 +0 0.1368 +0 0.4384 +0 0.3455 +0 0.1102 +0 0.1272 +0 0.1200 +0 0.0838 +0 0.1431 +0 0.0965 +0 0.3454 +0 0.1102 +0 0.1642 +0 0.0894 +0 0.2329 +0 0.2439 +0 0.1330 +0 0.0680 +0 0.0969 +0 0.2009 +0 0.4343 +0 0.2687 +0 0.0791 +0 0.2477 +0 0.1518 +0 0.1228 +0 0.0867 +0 0.1420 +0 0.0894 +0 0.0605 +0 0.1157 +0 0.0961 +0 0.1006 +0 0.0482 +0 0.0776 +0 0.1305 +0 0.2753 +0 0.1889 +0 0.1608 +0 0.0708 +0 0.2082 +0 0.1585 +0 0.1502 +0 0.1100 +0 0.1804 +0 0.0448 +0 0.1321 +0 0.0668 +0 0.1515 +0 0.1981 +0 0.1895 +0 0.0713 +0 0.0839 +0 0.2629 +0 0.3476 +0 0.0848 +0 0.0612 +0 0.1138 +0 0.3131 +0 0.0951 +0 0.0992 +0 0.1008 +0 0.1176 +0 0.0477 +0 0.1020 +0 0.0636 +0 0.1655 +0 0.0574 +0 0.0666 +0 0.0844 +0 0.0757 +0 0.1375 +0 0.0824 +0 0.1100 +0 0.1321 +0 0.1502 +0 0.2400 +0 0.2530 +0 0.0573 +0 0.1761 +0 0.2788 +0 0.1145 +0 0.0948 +0 0.1182 +0 0.0301 +0 0.0618 +0 0.2269 +0 0.2379 +0 0.0787 +0 0.2418 +0 0.0563 +0 0.7099 +0 0.1520 +0 0.0996 +0 0.1356 +0 0.0548 +0 0.0921 +0 0.4656 +0 0.1285 +0 0.1413 +0 0.0950 +0 0.0675 +0 0.0903 +0 0.0824 +0 0.0422 +0 0.0381 +0 0.0617 +0 0.0587 +0 0.0799 +0 0.1233 +0 0.1368 +0 0.0413 +0 0.2217 +0 0.1090 +0 0.4099 +0 0.2891 +0 0.1585 +0 0.1414 +0 0.2282 +0 0.0986 +0 0.1275 +0 0.0632 +0 0.0526 +0 0.1522 +0 0.0496 +0 0.0763 +0 0.1353 +0 0.4827 +0 0.1005 +0 0.0950 +0 0.1348 +0 0.0390 +0 0.0983 +0 0.0919 +0 0.0992 +0 0.2100 +0 0.1772 +0 0.1009 +0 0.1292 +0 0.2731 +0 0.2162 +0 0.0860 +0 0.0754 +0 0.0964 +0 0.1651 +0 0.1090 +0 0.2051 +0 0.0862 +0 0.0852 +0 0.1378 +1 0.7677 +0 0.0908 +0 0.0654 +0 0.1793 +0 0.1110 +0 0.1645 +0 0.0810 +0 0.0440 +0 0.1034 +0 0.0378 +0 0.0897 +0 0.0397 +0 0.0866 +0 0.0766 +0 0.0944 +0 0.0564 +1 0.7657 +0 0.0957 +0 0.2170 +0 0.1657 +0 0.0834 +0 0.2628 +0 0.0896 +0 0.1475 +0 0.0834 +0 0.3758 +0 0.1137 +0 0.1357 +0 0.1123 +0 0.1007 +0 0.1283 +0 0.1136 +0 0.1284 +0 0.0613 +0 0.1242 +0 0.1603 +0 0.1023 +0 0.1320 +1 0.7867 +0 0.4225 +0 0.1626 +0 0.1863 +0 0.0608 +0 0.1797 +0 0.0670 +0 0.0728 +0 0.1167 +0 0.0449 +0 0.1477 +0 0.0433 +0 0.3180 +0 0.2001 +0 0.0657 +0 0.0866 +0 0.0640 +0 0.0986 +0 0.0845 +0 0.0840 +0 0.0525 +0 0.1727 +0 0.0435 +0 0.1391 +0 0.2652 +0 0.2231 +0 0.1090 +0 0.1090 +0 0.0822 +0 0.0388 +0 0.5030 +0 0.1400 +0 0.0719 +0 0.0868 +0 0.1548 +0 0.0660 +0 0.1678 +0 0.0925 +0 0.0922 +0 0.1117 +0 0.1596 +0 0.0584 +0 0.2554 +0 0.6390 +0 0.0798 +0 0.0458 +0 0.1161 +0 0.1039 +0 0.1043 +0 0.0811 +0 0.2932 +0 0.0468 +0 0.1118 +0 0.0517 +0 0.2069 +0 0.1357 +0 0.1485 +0 0.0352 +0 0.0919 +0 0.0800 +0 0.0902 +0 0.1573 +0 0.0720 +0 0.0890 +0 0.0804 +0 0.0499 +0 0.0870 +0 0.1494 +0 0.1193 +0 0.0638 +0 0.0544 +0 0.1673 +0 0.1308 +0 0.1103 +0 0.0999 +0 0.0540 +0 0.1173 +0 0.1654 +0 0.0999 +0 0.1409 +0 0.1265 +0 0.0865 +0 0.1481 +0 0.1220 +0 0.0537 +0 0.1453 +0 0.0776 +0 0.0919 +0 0.1667 +0 0.0715 +0 0.1154 +0 0.4638 +0 0.1154 +0 0.0680 +0 0.1604 +0 0.0484 +0 0.1049 +0 0.1319 +0 0.0837 +0 0.4133 +0 0.1015 +0 0.0528 +0 0.1244 +0 0.0934 +0 0.6076 +0 0.2844 +0 0.1244 +0 0.0839 +0 0.2067 +0 0.1713 +0 0.0691 +0 0.0530 +0 0.0750 +0 0.3327 +0 0.0788 +0 0.0522 +0 0.1332 +1 0.7803 +0 0.1010 +0 0.0988 +0 0.0439 +0 0.1956 +0 0.0715 +0 0.0954 +0 0.2468 +0 0.1934 +0 0.3078 +0 0.0442 +0 0.1305 +0 0.2715 +0 0.0957 +0 0.0845 +0 0.0576 +0 0.0655 +0 0.0977 +0 0.0419 +0 0.1979 +0 0.0935 +0 0.1283 +0 0.1279 +0 0.1303 +0 0.1269 +0 0.0983 +0 0.1999 +0 0.1597 +0 0.1512 +0 0.1336 +0 0.0409 +0 0.1152 +0 0.1211 +0 0.0601 +0 0.0618 +0 0.1018 +0 0.0804 +0 0.1615 +0 0.0763 +0 0.4808 +0 0.0612 +0 0.0970 +0 0.2634 +0 0.1097 +0 0.0870 +0 0.0654 +0 0.1308 +0 0.0766 +0 0.0841 +0 0.1289 +0 0.0947 +0 0.2577 +0 0.0472 +0 0.0922 +0 0.0523 +0 0.1228 +0 0.1138 +0 0.2422 +0 0.1183 +0 0.0544 +0 0.1047 +0 0.0740 +0 0.0980 +0 0.0978 +0 0.0683 +0 0.2579 +0 0.2130 +0 0.0685 +0 0.1895 +0 0.7314 +0 0.1437 +0 0.1183 +0 0.1534 +0 0.0449 +0 0.0773 +0 0.2714 +0 0.0314 +0 0.0636 +0 0.2135 +0 0.1381 +0 0.1472 +0 0.0490 +0 0.1624 +0 0.1438 +0 0.0739 +0 0.0657 +0 0.2413 +0 0.0901 +0 0.1686 +0 0.0820 +0 0.1773 +0 0.0722 +0 0.1676 +0 0.2088 +0 0.1184 +0 0.2012 +0 0.0756 +0 0.2521 +0 0.1097 +1 0.7915 +0 0.1731 +0 0.0565 +0 0.1683 +0 0.0615 +0 0.2098 +0 0.6629 +0 0.2294 +0 0.0660 +0 0.0849 +0 0.0514 +0 0.1412 +1 0.8134 +0 0.2046 +0 0.0859 +0 0.0302 +0 0.1535 +0 0.1345 +0 0.1055 +0 0.1648 +0 0.1024 +0 0.1690 +0 0.1935 +0 0.1206 +0 0.0587 +0 0.0820 +1 0.7927 +0 0.0789 +0 0.0819 +0 0.0747 +0 0.0923 +0 0.0832 +0 0.1578 +0 0.1140 +0 0.1514 +1 0.8366 +0 0.0325 +0 0.0794 +0 0.1076 +0 0.0505 +0 0.1737 +0 0.3848 +0 0.2789 +0 0.0873 +0 0.0651 +0 0.7284 +0 0.1363 +0 0.0905 +0 0.2774 +0 0.2906 +0 0.0755 +0 0.1249 +0 0.0649 +0 0.1775 +0 0.0961 +0 0.2156 +0 0.0538 +0 0.2060 +0 0.2386 +0 0.0609 +0 0.0581 +0 0.1752 +0 0.0998 +0 0.0558 +0 0.1974 +0 0.1104 +0 0.2003 +0 0.0351 +0 0.0575 +1 0.8372 +0 0.1012 +0 0.1271 +0 0.3848 +0 0.1005 +0 0.1210 +0 0.0840 +0 0.3244 +0 0.1240 +0 0.7307 +0 0.0724 +0 0.0379 +0 0.0325 +0 0.1873 +0 0.0372 +0 0.1406 +0 0.2486 +0 0.1849 +0 0.7100 +0 0.1171 +0 0.1936 +0 0.1008 +0 0.1685 +0 0.1038 +0 0.1612 +0 0.0594 +0 0.0759 +0 0.0449 +0 0.1112 +0 0.1220 +0 0.0876 +0 0.1781 +0 0.0809 +0 0.0842 +0 0.2157 +0 0.0333 +0 0.0672 +0 0.0853 +0 0.4021 +0 0.1064 +0 0.1021 +0 0.6529 +0 0.1072 +0 0.0985 +0 0.0568 +0 0.0500 +0 0.0668 +0 0.0656 +0 0.0862 +0 0.1354 +0 0.0864 +0 0.3521 +0 0.0501 +0 0.6742 +1 0.8477 +1 0.8765 +0 0.0724 +0 0.0999 +0 0.1467 +0 0.0889 +0 0.0984 +0 0.0654 +0 0.0685 +0 0.1010 +0 0.1321 +0 0.0683 +0 0.0850 +0 0.0568 +0 0.0834 +0 0.1150 +0 0.2808 +0 0.0597 +0 0.1452 +0 0.1840 +0 0.0534 +0 0.0866 +0 0.0613 +0 0.0730 +0 0.0434 +0 0.0632 +0 0.0937 +0 0.1429 +0 0.1461 +0 0.1806 +0 0.0675 +0 0.2774 +0 0.0985 +0 0.1600 +0 0.2475 +0 0.0684 +0 0.1354 +0 0.2493 +0 0.0923 +0 0.1792 +0 0.0982 +0 0.2150 +0 0.1213 +0 0.1207 +0 0.1077 +0 0.0496 +0 0.1042 +0 0.1094 +0 0.0607 +0 0.1276 +1 0.7512 +0 0.2501 +0 0.0718 +0 0.1245 +0 0.1185 +0 0.2557 +0 0.1946 +0 0.0381 +0 0.1790 +0 0.1475 +0 0.1812 +0 0.1938 +0 0.0385 +0 0.2017 +0 0.0458 +0 0.0410 +0 0.1116 +0 0.1298 +0 0.1199 +0 0.0731 +0 0.3460 +0 0.1153 +0 0.0824 +0 0.1072 +0 0.0784 +0 0.1291 +0 0.6880 +0 0.0978 +0 0.1280 +0 0.2611 +0 0.0981 +0 0.0970 +0 0.1755 +0 0.0759 +0 0.1526 +0 0.0367 +0 0.3381 +0 0.2478 +0 0.1024 +0 0.0964 +0 0.1347 +0 0.0980 +0 0.1221 +1 0.8253 +0 0.1255 +0 0.1133 +0 0.4804 +0 0.0902 +0 0.1187 +0 0.1366 +0 0.1123 +0 0.0597 +0 0.3986 +0 0.1035 +0 0.0573 +0 0.0602 +0 0.0977 +1 0.8026 +0 0.0602 +0 0.1344 +0 0.0802 +0 0.0930 +0 0.1334 +0 0.0725 +0 0.0876 +0 0.0690 +0 0.0469 +0 0.0475 +0 0.0469 +0 0.1567 +0 0.0735 +0 0.0964 +0 0.0890 +0 0.1313 +0 0.2126 +0 0.1193 +0 0.2054 +1 0.7810 +0 0.1528 +0 0.0701 +0 0.1088 +0 0.0666 +0 0.1689 +0 0.0923 +0 0.0814 +0 0.0821 +0 0.0724 +0 0.2174 +0 0.0418 +0 0.0665 +0 0.1711 +0 0.1501 +0 0.0739 +0 0.1175 +0 0.0935 +0 0.0689 +0 0.0688 +0 0.1107 +0 0.0816 +0 0.0875 +0 0.1529 +0 0.0713 +0 0.0594 +0 0.0495 +0 0.1989 +0 0.0972 +0 0.0862 +0 0.1209 +0 0.1240 +0 0.0355 +0 0.0528 +0 0.0995 +0 0.1170 +0 0.1349 +0 0.2395 +0 0.1593 +0 0.1960 +0 0.0892 +0 0.0663 +0 0.1062 +0 0.3636 +0 0.0384 +0 0.0598 +0 0.0496 +0 0.1771 +0 0.1607 +0 0.2833 +0 0.3132 +0 0.1959 +0 0.0814 +0 0.0711 +0 0.3346 +0 0.0497 +0 0.1419 +0 0.0540 +0 0.1933 +0 0.0705 +0 0.1317 +0 0.0926 +0 0.0789 +0 0.0399 +0 0.0436 +0 0.1336 +0 0.0545 +0 0.1027 +0 0.0727 +0 0.0485 +0 0.1124 +0 0.1181 +0 0.2271 +0 0.2388 +0 0.0956 +0 0.7377 +0 0.0548 +0 0.5609 +0 0.1076 +0 0.1198 +0 0.0550 +0 0.1528 +0 0.0717 +0 0.0509 +0 0.0550 +0 0.2174 +0 0.0687 +0 0.2405 +0 0.0474 +1 0.8423 +0 0.0928 +0 0.0679 +1 0.8150 +0 0.0991 +0 0.1477 +0 0.0903 +0 0.2018 +0 0.1697 +0 0.7380 +0 0.0566 +0 0.1123 +1 0.8220 +0 0.0469 +0 0.1385 +0 0.2344 +0 0.0613 +0 0.0619 +0 0.0715 +0 0.5349 +0 0.0498 +0 0.0854 +0 0.0692 +0 0.0815 +0 0.2546 +0 0.0946 +0 0.5137 +0 0.0468 +0 0.0640 +0 0.1851 +0 0.0863 +0 0.0649 +0 0.1723 +0 0.0832 +0 0.2310 +0 0.6355 +0 0.2149 +0 0.1170 +0 0.2027 +0 0.1239 +0 0.0552 +0 0.1787 +0 0.0751 +0 0.1482 +0 0.1198 +0 0.1252 +1 0.7643 +0 0.0537 +0 0.0787 +0 0.2103 +0 0.1085 +0 0.4265 +0 0.0574 +0 0.0604 +0 0.1026 +0 0.0676 +0 0.1039 +0 0.1213 +0 0.1262 +0 0.0674 +0 0.1008 +0 0.0687 +0 0.0998 +0 0.1173 +0 0.2287 +0 0.1735 +0 0.0865 +0 0.1692 +0 0.2843 +0 0.0700 +0 0.0577 +0 0.0854 +0 0.1015 +0 0.0467 +0 0.0978 +0 0.3789 +0 0.0622 +0 0.1339 +0 0.1035 +0 0.1606 +0 0.1915 +0 0.1193 +0 0.0993 +0 0.0391 +0 0.2636 +0 0.0837 +1 0.7925 +0 0.0478 +0 0.0513 +0 0.0611 +0 0.0600 +0 0.5314 +0 0.2297 +0 0.1235 +0 0.0424 +0 0.2081 +0 0.2036 +0 0.1931 +0 0.0403 +0 0.0569 +0 0.0866 +0 0.1424 +0 0.0500 +0 0.1442 +1 0.8492 +0 0.2681 +0 0.1703 +0 0.1653 +0 0.1510 +0 0.0538 +0 0.0559 +0 0.1309 +0 0.0990 +0 0.0858 +0 0.4272 +0 0.0835 +0 0.1593 +0 0.3035 +0 0.2160 +0 0.2535 +0 0.1722 +0 0.0722 +0 0.0560 +0 0.0373 +0 0.6293 +0 0.1382 +0 0.1292 +0 0.1365 +0 0.1029 +0 0.0800 +0 0.1662 +0 0.1207 +0 0.0917 +0 0.4495 +0 0.1139 +0 0.6279 +0 0.0614 +0 0.2373 +0 0.1393 +0 0.2283 +0 0.1238 +0 0.1128 +0 0.1503 +0 0.1249 +0 0.0793 +0 0.0730 +0 0.0884 +0 0.1156 +0 0.0877 +0 0.0763 +0 0.0610 +0 0.1235 +0 0.0563 +0 0.0715 +0 0.0678 +0 0.3988 +0 0.0835 +0 0.2588 +0 0.1854 +0 0.5017 +0 0.0374 +0 0.1084 +0 0.1381 +0 0.1356 +0 0.1023 +0 0.5502 +0 0.2776 +0 0.0799 +0 0.0947 +0 0.2598 +0 0.2067 +0 0.0526 +0 0.0794 +0 0.0820 +0 0.1288 +1 0.4422 +0 0.1359 +0 0.1919 +0 0.1706 +0 0.0888 +0 0.0724 +0 0.1042 +0 0.3821 +0 0.1213 +0 0.1601 +0 0.1870 +0 0.0890 +0 0.3949 +0 0.1944 +0 0.1154 +0 0.3319 +0 0.0652 +0 0.3868 +0 0.1073 +0 0.0673 +0 0.0877 +0 0.0593 +0 0.1057 +1 0.8180 +0 0.0724 +0 0.0578 +1 0.7838 +0 0.0542 +0 0.0847 +0 0.0775 +0 0.0993 +0 0.1064 +0 0.1285 +0 0.1589 +0 0.0972 +0 0.1245 +0 0.0437 +0 0.0570 +0 0.1034 +0 0.1300 +0 0.1283 +0 0.0651 +0 0.0710 +0 0.1145 +0 0.3015 +0 0.1099 +0 0.1577 +0 0.0837 +0 0.1063 +0 0.0568 +0 0.0758 +0 0.0638 +0 0.0548 +0 0.1666 +0 0.2370 +0 0.1650 +0 0.1578 +0 0.0509 +0 0.1046 +0 0.0601 +0 0.1162 +0 0.0570 +0 0.0419 +0 0.0797 +0 0.0762 +0 0.0947 +0 0.3611 +0 0.0855 +0 0.6429 +0 0.1155 +0 0.0914 +0 0.2026 +0 0.1158 +0 0.0866 +0 0.0623 +0 0.0892 +0 0.5775 +0 0.0814 +0 0.1732 +0 0.0913 +0 0.0658 +0 0.0901 +0 0.1065 +0 0.0942 +0 0.1112 +0 0.0906 +0 0.0581 +0 0.0450 +0 0.1515 +0 0.1543 +0 0.1446 +0 0.0338 +0 0.0470 +0 0.0540 +0 0.0952 +0 0.1105 +0 0.1111 +0 0.0793 +0 0.0439 +0 0.2207 +0 0.0887 +0 0.1506 +0 0.1494 +0 0.1176 +0 0.0554 +0 0.2624 +0 0.0904 +0 0.0800 +0 0.0885 +0 0.1019 +0 0.1514 +0 0.0761 +0 0.0637 +0 0.1631 +0 0.1327 +0 0.1800 +0 0.0895 +0 0.1018 +0 0.0545 +0 0.1309 +0 0.1148 +0 0.0725 +0 0.0403 +0 0.0527 +0 0.0641 +0 0.1534 +0 0.0530 +0 0.1882 +0 0.2820 +0 0.0483 +0 0.0666 +0 0.1422 +0 0.1881 +1 0.7916 +0 0.0674 +0 0.0944 +0 0.0814 +0 0.0705 +0 0.0531 +0 0.1660 +0 0.0994 +0 0.0693 +0 0.1421 +0 0.1298 +0 0.0547 +0 0.1898 +0 0.0463 +0 0.1041 +0 0.5809 +1 0.7835 +0 0.1082 +0 0.1275 +0 0.1001 +0 0.1067 +0 0.0773 +0 0.1228 +0 0.1540 +0 0.1334 +0 0.0779 +0 0.1166 +0 0.1038 +0 0.0563 +0 0.0523 +0 0.0381 +0 0.1606 +0 0.2511 +0 0.2125 +0 0.2334 +1 0.5492 +0 0.1703 +0 0.0779 +0 0.1525 +0 0.2263 +0 0.2136 +0 0.1906 +0 0.1061 +0 0.0771 +0 0.1777 +0 0.0558 +0 0.0887 +0 0.0786 +0 0.1199 +0 0.0915 +0 0.0776 +0 0.0570 +0 0.0712 +0 0.0806 +0 0.0826 +0 0.0746 +0 0.2051 +1 0.8028 +0 0.1041 +0 0.0462 +0 0.0686 +0 0.2785 +0 0.0643 +0 0.0531 +0 0.0925 +0 0.1232 +0 0.1351 +0 0.1576 +0 0.4996 +0 0.0872 +0 0.0752 +0 0.3467 +0 0.1038 +0 0.1363 +0 0.0773 +0 0.0542 +0 0.4637 +0 0.0758 +0 0.2171 +0 0.0552 +0 0.0675 +0 0.1200 +0 0.2011 +1 0.7691 +0 0.0498 +0 0.1235 +0 0.0835 +0 0.0913 +0 0.1065 +0 0.2048 +0 0.0395 +0 0.1308 +0 0.0846 +0 0.0760 +0 0.1771 +0 0.1303 +0 0.0527 +1 0.8127 +0 0.1577 +0 0.1471 +0 0.1192 +0 0.0966 +0 0.1729 +0 0.1727 +0 0.1479 +0 0.0804 +0 0.1674 +0 0.0686 +0 0.1473 +0 0.3189 +0 0.0908 +0 0.1843 +0 0.4487 +0 0.1186 +0 0.2535 +0 0.0817 +0 0.0449 +0 0.0867 +0 0.0892 +0 0.1195 +0 0.0418 +0 0.1433 +1 0.8640 +0 0.2049 +0 0.1014 +0 0.0450 +0 0.0646 +0 0.0744 +0 0.1178 +0 0.1001 +0 0.1097 +0 0.0845 +0 0.0372 +0 0.1553 +0 0.0748 +0 0.1261 +0 0.1054 +0 0.2778 +0 0.1740 +0 0.0471 +0 0.0627 +0 0.0733 +0 0.0533 +0 0.1133 +1 0.8368 +0 0.1171 +0 0.1223 +0 0.0760 +0 0.0442 +0 0.1120 +0 0.0735 +0 0.0675 +0 0.3963 +0 0.0721 +0 0.0717 +0 0.0761 +0 0.0823 +0 0.0590 +0 0.0923 +0 0.1778 +0 0.0919 +0 0.1084 +0 0.1008 +0 0.3421 +0 0.0603 +0 0.0637 +0 0.0399 +0 0.1502 +0 0.2282 +0 0.0783 +0 0.0548 +0 0.6189 +0 0.1395 +0 0.1204 +0 0.0522 +0 0.1861 +0 0.1891 +0 0.2004 +0 0.0704 +0 0.1336 +0 0.0611 +0 0.0967 +0 0.0437 +0 0.0836 +0 0.0612 +0 0.1798 +0 0.1017 +0 0.0614 +0 0.0805 +0 0.0748 +0 0.1345 +0 0.0439 +0 0.0669 +0 0.1343 +0 0.1664 +0 0.0385 +0 0.0478 +0 0.0669 +0 0.0716 +0 0.4141 +0 0.0436 +0 0.0556 +0 0.1458 +0 0.1320 +0 0.3004 +0 0.0972 +0 0.0592 +0 0.0722 +0 0.2517 +0 0.0591 +0 0.0828 +0 0.0531 +0 0.2045 +0 0.0357 +0 0.0503 +0 0.1236 +0 0.1662 +0 0.0504 +0 0.1549 +0 0.3046 +0 0.0981 +0 0.2170 +0 0.1368 +0 0.1592 +0 0.2738 +0 0.0856 +0 0.0990 +0 0.0785 +0 0.1337 +0 0.0993 +0 0.0633 +0 0.1353 +0 0.0538 +0 0.1737 +0 0.1949 +0 0.5210 +0 0.0928 +0 0.1541 +0 0.0589 +0 0.1812 +0 0.1239 +0 0.0882 +0 0.3457 +0 0.2185 +0 0.2287 +0 0.0662 +0 0.0931 +0 0.1431 +0 0.1166 +0 0.0887 +0 0.3874 +0 0.0636 +0 0.0852 +0 0.1774 +0 0.1547 +0 0.0334 +0 0.1539 +0 0.0952 +0 0.1101 +0 0.0785 +0 0.0727 +0 0.0611 +0 0.1850 +1 0.8386 +0 0.0714 +0 0.0333 +0 0.2096 +0 0.0774 +0 0.1112 +0 0.0535 +0 0.6006 +0 0.0355 +0 0.0899 +0 0.2137 +0 0.1207 +0 0.1048 +0 0.3068 +0 0.0504 +0 0.0756 +0 0.1028 +0 0.2741 +0 0.0824 +0 0.1118 +0 0.0995 +0 0.2889 +0 0.0369 +0 0.0353 +0 0.1814 +0 0.0786 +0 0.0607 +0 0.0920 +0 0.0941 +0 0.3660 +0 0.0554 +0 0.1309 +0 0.0596 +0 0.1088 +0 0.0941 +0 0.0879 +0 0.1218 +0 0.1604 +0 0.0996 +0 0.1161 +0 0.1315 +0 0.0880 +0 0.1006 +0 0.0633 +0 0.1256 +0 0.2497 +0 0.0715 +0 0.0844 +0 0.0485 +0 0.4179 +1 0.8459 +0 0.3775 +0 0.0357 +0 0.1617 +0 0.3726 +0 0.0671 +0 0.0940 +0 0.2623 +0 0.0455 +0 0.4447 +0 0.1301 +0 0.0499 +0 0.0706 +0 0.1432 +0 0.1532 +0 0.1112 +0 0.1492 +0 0.0437 +1 0.7794 +0 0.1985 +0 0.0980 +0 0.0548 +0 0.0785 +0 0.2792 +0 0.4553 +0 0.1011 +0 0.0586 +0 0.0496 +0 0.0457 +0 0.3071 +0 0.1060 +0 0.0934 +0 0.5838 +0 0.0836 +0 0.3824 +0 0.2040 +0 0.0742 +0 0.1724 +0 0.1121 +0 0.1680 +0 0.1214 +0 0.2299 +0 0.4469 +0 0.1096 +0 0.0508 +0 0.1171 +0 0.1527 +0 0.1397 +0 0.3368 +0 0.2505 +0 0.0971 +0 0.0524 +0 0.1180 +0 0.0795 +0 0.0936 +0 0.0790 +0 0.1484 +0 0.3217 +0 0.2500 +0 0.1860 +0 0.1315 +0 0.1651 +0 0.1810 +0 0.0963 +0 0.0656 +0 0.0659 +0 0.1017 +0 0.2601 +0 0.1286 +0 0.1022 +0 0.1533 +0 0.0837 +0 0.0760 +0 0.0638 +0 0.2546 +0 0.1745 +0 0.0826 +0 0.6646 +0 0.0750 +0 0.2071 +0 0.3410 +0 0.1994 +0 0.2072 +0 0.3008 +0 0.1928 +0 0.0953 +0 0.0569 +0 0.0557 +0 0.0799 +0 0.0403 +0 0.2893 +0 0.0919 +0 0.2188 +0 0.0681 +0 0.0559 +0 0.1637 +0 0.1473 +0 0.1110 +0 0.0804 +0 0.0888 +0 0.1758 +0 0.0661 +0 0.0642 +0 0.1184 +1 0.8140 +0 0.1276 +0 0.0767 +0 0.0815 +0 0.0951 +0 0.0914 +0 0.0664 +0 0.0655 +0 0.1271 +0 0.0746 +0 0.4000 +0 0.3848 +0 0.0863 +0 0.4711 +0 0.1296 +0 0.0724 +0 0.1440 +0 0.1219 +0 0.5835 +0 0.0738 +0 0.0879 +0 0.0605 +0 0.0858 +0 0.1421 +0 0.1625 +0 0.1692 +0 0.0888 +0 0.7005 +0 0.2221 +0 0.4056 +0 0.1563 +0 0.2959 +0 0.0514 +0 0.1692 +0 0.5003 +0 0.0386 +0 0.1804 +0 0.1335 +0 0.0384 +0 0.0789 +0 0.6764 +0 0.0565 +0 0.1389 +0 0.0492 +0 0.0992 +1 0.7665 +0 0.2296 +0 0.0704 +0 0.0904 +0 0.0981 +0 0.1576 +1 0.7665 +0 0.0810 +0 0.1137 +0 0.1310 +0 0.4059 +0 0.0777 +0 0.1449 +0 0.0900 +0 0.1828 +1 0.8800 +0 0.1360 +0 0.1507 +0 0.0949 +0 0.0664 +0 0.1146 +0 0.1880 +0 0.0537 +0 0.1925 +0 0.1095 +0 0.1058 +0 0.1584 +0 0.1087 +0 0.0995 +0 0.1567 +0 0.0401 +0 0.0869 +0 0.1078 +0 0.0593 +0 0.1769 +0 0.0987 +0 0.4055 +0 0.0525 +0 0.1677 +0 0.1530 +0 0.1348 +0 0.1191 +0 0.1606 +0 0.2350 +0 0.1495 +0 0.0476 +0 0.0874 +0 0.1316 +0 0.1401 +0 0.0877 +0 0.1278 +0 0.2459 +0 0.2427 +0 0.1082 +0 0.2466 +0 0.1079 +0 0.2324 +1 0.8606 +0 0.1102 +0 0.0855 +0 0.2859 +0 0.0610 +0 0.1310 +0 0.0687 +0 0.2419 +0 0.1243 +0 0.0638 +0 0.0961 +0 0.1097 +0 0.0981 +0 0.1114 +0 0.0480 +0 0.2123 +0 0.0592 +0 0.1074 +0 0.2655 +0 0.0878 +0 0.3570 +0 0.1541 +0 0.2604 +0 0.1264 +0 0.2041 +0 0.0699 +0 0.1015 +0 0.0897 +0 0.2871 +0 0.2101 +0 0.0595 +0 0.0633 +0 0.0714 +0 0.3629 +0 0.0745 +0 0.1616 +0 0.1539 +0 0.1023 +0 0.1180 +0 0.0983 +0 0.0699 +0 0.0684 +0 0.1240 +0 0.2033 +0 0.0999 +0 0.1395 +0 0.0584 +0 0.1318 +0 0.3141 +0 0.0535 +0 0.3063 +0 0.1408 +0 0.0783 +0 0.1119 +0 0.1428 +0 0.0906 +0 0.1595 +0 0.1110 +0 0.0784 +0 0.3135 +0 0.0872 +0 0.0280 +0 0.0847 +0 0.2158 +0 0.0874 +0 0.0644 +0 0.1322 +0 0.0931 +0 0.1049 +0 0.1164 +0 0.1688 +0 0.0871 +0 0.0998 +0 0.1346 +0 0.0999 +0 0.2265 +0 0.4613 +0 0.0507 +0 0.1429 +0 0.1570 +0 0.1824 +0 0.4441 +0 0.0804 +0 0.3199 +0 0.0853 +0 0.1476 +0 0.0955 +0 0.1581 +0 0.0481 +0 0.0826 +0 0.1083 +0 0.0858 +0 0.0880 +0 0.0395 +0 0.2073 +0 0.0647 +0 0.0559 +0 0.3821 +0 0.0985 +0 0.7087 +0 0.0895 +0 0.0378 +0 0.0514 +0 0.2846 +0 0.1785 +0 0.0699 +0 0.1504 +0 0.4822 +0 0.1288 +0 0.1217 +0 0.0930 +0 0.1238 +0 0.1720 +0 0.1945 +0 0.1925 +0 0.1475 +0 0.0715 +1 0.7662 +0 0.0670 +0 0.0646 +0 0.0617 +0 0.1206 +0 0.1602 +0 0.0973 +0 0.1200 +0 0.1033 +0 0.0986 +0 0.2026 +0 0.1497 +0 0.1588 +0 0.0701 +1 0.8483 +0 0.0662 +0 0.0663 +0 0.1520 +0 0.0714 +0 0.1855 +0 0.7009 +0 0.0881 +0 0.1092 +0 0.1311 +0 0.1097 +0 0.1544 +0 0.0771 +0 0.4987 +0 0.0429 +0 0.6516 +1 0.7907 +0 0.0852 +0 0.0748 +0 0.2152 +0 0.2291 +0 0.1348 +0 0.0455 +0 0.0849 +0 0.1064 +0 0.0798 +0 0.1203 +0 0.0495 +0 0.0692 +0 0.1264 +0 0.0650 +0 0.0793 +0 0.7478 +0 0.1212 +0 0.0749 +0 0.0789 +0 0.1140 +0 0.0912 +0 0.2725 +0 0.0480 +0 0.2690 +1 0.7820 +0 0.0866 +0 0.0402 +0 0.0657 +0 0.0775 +0 0.0968 +0 0.0625 +0 0.2467 +0 0.1268 +0 0.0468 +0 0.0469 +0 0.0692 +0 0.0479 +0 0.0959 +0 0.0772 +0 0.1456 +0 0.1194 +0 0.2267 +0 0.0952 +0 0.1482 +0 0.0840 +0 0.2305 +0 0.0680 +0 0.0408 +0 0.0983 +0 0.0898 +0 0.0381 +0 0.0568 +0 0.1245 +0 0.0939 +0 0.0574 +0 0.0796 +0 0.0611 +0 0.0845 +0 0.0976 +1 0.8678 +0 0.0574 +0 0.1836 +0 0.4252 +0 0.0679 +0 0.1199 +0 0.2777 +0 0.5452 +0 0.2245 +0 0.1523 +0 0.0776 +0 0.2292 +0 0.0759 +0 0.0514 +0 0.1288 +0 0.1410 +0 0.1095 +0 0.0578 +0 0.1760 +0 0.1428 +0 0.1919 +0 0.0864 +0 0.1609 +0 0.1682 +1 0.8279 +0 0.0693 +0 0.0777 +0 0.6065 +0 0.0910 +0 0.0973 +0 0.0454 +0 0.1177 +0 0.1655 +0 0.1981 +0 0.3335 +0 0.1136 +0 0.0671 +0 0.3161 +0 0.1057 +0 0.2278 +0 0.0629 +0 0.1690 +0 0.1406 +0 0.1236 +0 0.1497 +0 0.0761 +0 0.1203 +0 0.2002 +0 0.5759 +0 0.5655 +0 0.1033 +0 0.0796 +0 0.0776 +0 0.0825 +0 0.5214 +0 0.1266 +0 0.0483 +0 0.2381 +0 0.1110 +0 0.0789 +0 0.0503 +0 0.0817 +0 0.0540 +0 0.1280 +0 0.1040 +0 0.1260 +0 0.0743 +0 0.3331 +0 0.0595 +0 0.1279 +0 0.5933 +0 0.1385 +0 0.2316 +0 0.0772 +0 0.1689 +0 0.1082 +0 0.1878 +0 0.0885 +1 0.7824 +0 0.1403 +0 0.1556 +0 0.0575 +0 0.1428 +0 0.0855 +0 0.0667 +0 0.0661 +0 0.0398 +0 0.1121 +0 0.0430 +0 0.0558 +0 0.0985 +0 0.1686 +0 0.6601 +0 0.0897 +0 0.3074 +0 0.1026 +0 0.0426 +0 0.0749 +0 0.0904 +0 0.6340 +0 0.0585 +0 0.0694 +0 0.1061 +0 0.1460 +0 0.1130 +0 0.0676 +0 0.0589 +0 0.0899 +0 0.1160 +0 0.0708 +0 0.1312 +0 0.0876 +0 0.1056 +0 0.2279 +0 0.0886 +0 0.2564 +0 0.1427 +0 0.1096 +0 0.1345 +0 0.0540 +0 0.1374 +0 0.1635 +0 0.2003 +0 0.1798 +0 0.0692 +0 0.0733 +0 0.0911 +0 0.1882 +0 0.1105 +0 0.1638 +0 0.0917 +0 0.1208 +0 0.0524 +0 0.1562 +0 0.0381 +0 0.2046 +0 0.1073 +0 0.0988 +0 0.1297 +0 0.0881 +0 0.0592 +0 0.1257 +0 0.2267 +0 0.0948 +0 0.1005 +0 0.1946 +0 0.1348 +0 0.0930 +0 0.0709 +0 0.1133 +0 0.2146 +0 0.0931 +0 0.0940 +0 0.1243 +0 0.7394 +0 0.0799 +0 0.1076 +0 0.3327 +0 0.1173 +0 0.0606 +0 0.0821 +0 0.0547 +0 0.1251 +0 0.0697 +0 0.2295 +0 0.1530 +0 0.1336 +0 0.0899 +0 0.1996 +0 0.1076 +0 0.1025 +0 0.0817 +0 0.0663 +0 0.1519 +0 0.0984 +0 0.0928 +0 0.0950 +0 0.0736 +0 0.0600 +0 0.0654 +0 0.0778 +0 0.1351 +0 0.1958 +0 0.0599 +0 0.0735 +0 0.2253 +0 0.0401 +0 0.1110 +0 0.2230 +0 0.1049 +0 0.1055 +0 0.3022 +0 0.1031 +0 0.1304 +0 0.2092 +0 0.1679 +0 0.2940 +0 0.0727 +0 0.1037 +0 0.1165 +0 0.0711 +0 0.0775 +0 0.0646 +0 0.0620 +0 0.3015 +0 0.0534 +0 0.0763 +0 0.1361 +0 0.1867 +0 0.2056 +0 0.0693 +0 0.3756 +0 0.1786 +0 0.1281 +0 0.1006 +0 0.6078 +0 0.0723 +0 0.0865 +0 0.0731 +0 0.1409 +0 0.1386 +0 0.0860 +1 0.7607 +0 0.0599 +0 0.2096 +0 0.0990 +0 0.7374 +0 0.1551 +0 0.2322 +0 0.1181 +0 0.1469 +0 0.0844 +0 0.2203 +0 0.1860 +0 0.0646 +0 0.1058 +0 0.0807 +0 0.0630 +0 0.1193 +0 0.1514 +0 0.0627 +0 0.1058 +0 0.0539 +0 0.0754 +0 0.1810 +0 0.2821 +0 0.1354 +0 0.3397 +0 0.0849 +0 0.0428 +0 0.0518 +0 0.1619 +0 0.1119 +0 0.0847 +0 0.2577 +0 0.2984 +0 0.1140 +0 0.0801 +0 0.1056 +0 0.0741 +0 0.1421 +0 0.0356 +0 0.0839 +0 0.0447 +0 0.0685 +0 0.1433 +0 0.0689 +0 0.1987 +0 0.0716 +0 0.0973 +0 0.2030 +0 0.1175 +0 0.1643 +0 0.0862 +0 0.0904 +0 0.1263 +0 0.0942 +0 0.3090 +0 0.1184 +0 0.0863 +0 0.2698 +0 0.0574 +0 0.0683 +0 0.0887 +0 0.1283 +0 0.0794 +0 0.0949 +0 0.1613 +0 0.1198 +0 0.2354 +0 0.4041 +0 0.0995 +0 0.1603 +0 0.1245 +0 0.1813 +0 0.1639 +0 0.0818 +0 0.2380 +0 0.2713 +0 0.1163 +0 0.0783 +0 0.1122 +0 0.1450 +0 0.1001 +0 0.1067 +0 0.0521 +0 0.3888 +0 0.2177 +0 0.2823 +0 0.1853 +0 0.4727 +0 0.0636 +0 0.0905 +0 0.1524 +0 0.1551 +0 0.2323 +0 0.1225 +0 0.1598 +0 0.0777 +0 0.2779 +0 0.0428 +0 0.2191 +0 0.1287 +0 0.1541 +0 0.0693 +0 0.1044 +0 0.1035 +0 0.3202 +0 0.0377 +0 0.0951 +0 0.1061 +0 0.1992 +0 0.1452 +0 0.0729 +0 0.0914 +0 0.0823 +0 0.0587 +0 0.1095 +0 0.0680 +0 0.1063 +1 0.8139 +0 0.1113 +0 0.1811 +0 0.0889 +0 0.3415 +0 0.0744 +0 0.1291 +0 0.1857 +0 0.0710 +0 0.3148 +0 0.0766 +0 0.1307 +0 0.0549 +0 0.6096 +0 0.1023 +0 0.0514 +0 0.2208 +0 0.0810 +0 0.2579 +0 0.1630 +0 0.0782 +0 0.0792 +0 0.3059 +0 0.3163 +0 0.0597 +0 0.2286 +0 0.3147 +0 0.1153 +0 0.1603 +0 0.0687 +0 0.1248 +0 0.1285 +0 0.0975 +0 0.0798 +0 0.0370 +0 0.1088 +0 0.0845 +0 0.2295 +1 0.7735 +0 0.1253 +0 0.1239 +0 0.0671 +0 0.1466 +0 0.0688 +0 0.1392 +0 0.1782 +0 0.0707 +0 0.1005 +0 0.2380 +0 0.0625 +0 0.0824 +0 0.1077 +0 0.1076 +0 0.0810 +0 0.0718 +0 0.1716 +0 0.0839 +0 0.0682 +0 0.1015 +0 0.1022 +0 0.1822 +0 0.1027 +0 0.1209 +0 0.4300 +0 0.0824 +1 0.8790 +0 0.1401 +0 0.1189 +0 0.1395 +0 0.0550 +0 0.0583 +0 0.2064 +0 0.2198 +0 0.1908 +0 0.0730 +0 0.1326 +0 0.0556 +0 0.0886 +0 0.0628 +0 0.4238 +0 0.2090 +0 0.1283 +0 0.1570 +0 0.1167 +0 0.3948 +0 0.0404 +0 0.0631 +0 0.1030 +0 0.1278 +0 0.0959 +0 0.1037 +0 0.2754 +0 0.0843 +0 0.2025 +0 0.0502 +0 0.2262 +0 0.0586 +0 0.1870 +0 0.2082 +0 0.1170 +0 0.1308 +0 0.0469 +0 0.1970 +0 0.0481 +0 0.0938 +0 0.1467 +0 0.0550 +0 0.5891 +0 0.3996 +0 0.1954 +0 0.2665 +0 0.1041 +0 0.1693 +0 0.1142 +0 0.0319 +0 0.1028 +0 0.0901 +0 0.1105 +0 0.2807 +0 0.0968 +0 0.1246 +0 0.1781 +0 0.6913 +0 0.0957 +0 0.0801 +0 0.1379 +0 0.2105 +0 0.1123 +0 0.0680 +0 0.1539 +0 0.1491 +0 0.0907 +0 0.1041 +0 0.0605 +0 0.0414 +0 0.1595 +0 0.3603 +0 0.1947 +0 0.3342 +0 0.0520 +0 0.3712 +0 0.1176 +0 0.4394 +0 0.0797 +0 0.1100 +0 0.1043 +1 0.8743 +0 0.0440 +0 0.2362 +0 0.1841 +0 0.0714 +0 0.3157 +0 0.0845 +0 0.2024 +0 0.0380 +0 0.3656 +0 0.0592 +0 0.1585 +0 0.1826 +0 0.0376 +0 0.0740 +0 0.0954 +0 0.0973 +0 0.0572 +0 0.1711 +0 0.0991 +0 0.1945 +0 0.1141 +0 0.1035 +0 0.0462 +0 0.1517 +0 0.0928 +0 0.1121 +0 0.1015 +0 0.1591 +0 0.0998 +0 0.1008 +0 0.0705 +0 0.2189 +0 0.0881 +0 0.0672 +0 0.0721 +0 0.0799 +0 0.0909 +0 0.3063 +0 0.2065 +0 0.6415 +0 0.0865 +0 0.3967 +0 0.2270 +0 0.1369 +0 0.0926 +0 0.0972 +0 0.2093 +0 0.0709 +0 0.3313 +0 0.0524 +0 0.0771 +0 0.0839 +0 0.0566 +0 0.0576 +0 0.2154 +0 0.1192 +0 0.0734 +0 0.2642 +0 0.4777 +0 0.7384 +0 0.1703 +0 0.0530 +0 0.0756 +0 0.3618 +0 0.0449 +0 0.0989 +0 0.1287 +0 0.2075 +0 0.1084 +0 0.1135 +0 0.2024 +0 0.1400 +0 0.1097 +0 0.0370 +0 0.2001 +0 0.0765 +0 0.1147 +0 0.0348 +0 0.0386 +0 0.0615 +0 0.1228 +0 0.0860 +0 0.1074 +0 0.1109 +0 0.1883 +0 0.1220 +0 0.0723 +0 0.1161 +0 0.0927 +0 0.1274 +0 0.0583 +0 0.2069 +0 0.1265 +0 0.0540 +0 0.0729 +0 0.0999 +0 0.1510 +0 0.0903 +0 0.2278 +0 0.0728 +0 0.1410 +0 0.3500 +0 0.0851 +0 0.1270 +0 0.0823 +0 0.3271 +0 0.2055 +0 0.0672 +0 0.0876 +0 0.0498 +0 0.1728 +0 0.0383 +0 0.1564 +0 0.1880 +0 0.0448 +0 0.0572 +0 0.0587 +0 0.0711 +0 0.1529 +0 0.5209 +0 0.2052 +0 0.1264 +0 0.2197 +0 0.1110 +0 0.1336 +0 0.0420 +0 0.6147 +0 0.0992 +0 0.6923 +0 0.2049 +0 0.1805 +0 0.1038 +0 0.0664 +0 0.0974 +0 0.0978 +0 0.1068 +0 0.0764 +0 0.0627 +0 0.1418 +0 0.0325 +0 0.0397 +0 0.3393 +0 0.2805 +0 0.0680 +0 0.1130 +0 0.1267 +0 0.6875 +0 0.0887 +0 0.4504 +0 0.2161 +0 0.0487 +0 0.0898 +0 0.1063 +0 0.0533 +0 0.0943 +0 0.3984 +0 0.1285 +0 0.0685 +0 0.0847 +0 0.0991 +1 0.7771 +0 0.1271 +0 0.1365 +0 0.1488 +0 0.0507 +0 0.1141 +0 0.1151 +0 0.1275 +1 0.7924 +0 0.4535 +0 0.3047 +0 0.1545 +0 0.0411 +0 0.1122 +0 0.1081 +0 0.0672 +0 0.0570 +0 0.0625 +0 0.1054 +0 0.0797 +0 0.1387 +0 0.0904 +0 0.1266 +0 0.1060 +0 0.0461 +0 0.0907 +0 0.7151 +0 0.1080 +0 0.0827 +0 0.2822 +0 0.0663 +0 0.1116 +0 0.1359 +0 0.1533 +0 0.1489 +0 0.0797 +0 0.2941 +0 0.0526 +0 0.1016 +0 0.0526 +0 0.1201 +0 0.1756 +0 0.1076 +0 0.1260 +0 0.1224 +0 0.2236 +0 0.0757 +0 0.5150 +0 0.1824 +0 0.1006 +0 0.0666 +0 0.0641 +0 0.0695 +0 0.1995 +0 0.1819 +0 0.0895 +0 0.0448 +0 0.2288 +0 0.1836 +0 0.1114 +0 0.0959 +0 0.0789 +0 0.0442 +0 0.2565 +0 0.0794 +0 0.0777 +0 0.0521 +0 0.1538 +0 0.2274 +0 0.0872 +0 0.1234 +0 0.1334 +0 0.1302 +0 0.0828 +0 0.0895 +0 0.0974 +0 0.3083 +0 0.0605 +0 0.3445 +0 0.2005 +0 0.0447 +0 0.2080 +0 0.2608 +0 0.0953 +0 0.3837 +0 0.2619 +0 0.1184 +0 0.1449 +0 0.3867 +0 0.0507 +0 0.0381 +0 0.2885 +0 0.0508 +0 0.0442 +0 0.1112 +0 0.1251 +0 0.0898 +0 0.0846 +0 0.1732 +0 0.0628 +0 0.1200 +0 0.0664 +0 0.0833 +0 0.1287 +0 0.0602 +0 0.1727 +0 0.0555 +0 0.0820 +0 0.0464 +0 0.0482 +0 0.1434 +0 0.0769 +0 0.0911 +0 0.1170 +0 0.0734 +0 0.0598 +0 0.0847 +0 0.1067 +0 0.4774 +0 0.2347 +0 0.0724 +0 0.0931 +0 0.1704 +0 0.0643 +0 0.0790 +0 0.0820 +0 0.1364 +0 0.0392 +0 0.1438 +0 0.1341 +0 0.0455 +0 0.1195 +0 0.5158 +0 0.0663 +0 0.1100 +0 0.0866 +0 0.2816 +0 0.2316 +0 0.0976 +0 0.0815 +0 0.7294 +0 0.1151 +0 0.0850 +0 0.2692 +0 0.1343 +0 0.3387 +0 0.2186 +0 0.0935 +0 0.0883 +0 0.0599 +0 0.0414 +0 0.1128 +0 0.5252 +0 0.0768 +0 0.2171 +0 0.1492 +0 0.2307 +0 0.0705 +0 0.3502 +0 0.0693 +0 0.0854 +0 0.0551 +0 0.1928 +0 0.0657 +0 0.2786 +0 0.1391 +0 0.0621 +0 0.1492 +0 0.2267 +0 0.1895 +0 0.1358 +0 0.0724 +0 0.1294 +0 0.2331 +0 0.0470 +0 0.1086 +0 0.1471 +0 0.1296 +0 0.0972 +0 0.0825 +0 0.0701 +0 0.1048 +0 0.2411 +0 0.2990 +0 0.4673 +0 0.0630 +0 0.2763 +0 0.2270 +0 0.0608 +0 0.2426 +0 0.2270 +0 0.0626 +0 0.7176 +0 0.0861 +0 0.1496 +0 0.5884 +1 0.8391 +0 0.6792 +0 0.0791 +0 0.2086 +0 0.0526 +0 0.1004 +0 0.0520 +0 0.1664 +0 0.3421 +0 0.0853 +0 0.0824 +0 0.0534 +0 0.1196 +0 0.2021 +0 0.1418 +0 0.0516 +0 0.1585 +0 0.0467 +0 0.1251 +0 0.0479 +0 0.1642 +0 0.1082 +0 0.1119 +0 0.0741 +0 0.1759 +0 0.0484 +0 0.0576 +0 0.0973 +0 0.1762 +0 0.2033 +0 0.1845 +0 0.2028 +0 0.0653 +0 0.0659 +0 0.0549 +0 0.0662 +0 0.0456 +0 0.0771 +0 0.0808 +0 0.0733 +0 0.4315 +0 0.2204 +0 0.2189 +0 0.1042 +0 0.2997 +0 0.1103 +1 0.8279 +0 0.0469 +0 0.1367 +0 0.0873 +0 0.1209 +0 0.0994 +0 0.0920 +0 0.0476 +0 0.0916 +0 0.0926 +0 0.1828 +0 0.2797 +0 0.4303 +0 0.1020 +0 0.0735 +0 0.1315 +0 0.5885 +0 0.0452 +0 0.0673 +0 0.3731 +0 0.0716 +0 0.0612 +0 0.4990 +0 0.0952 +0 0.1006 +0 0.1503 +0 0.1171 +0 0.1470 +0 0.2315 +0 0.2149 +0 0.1435 +0 0.0835 +0 0.1337 +0 0.1305 +0 0.1057 +0 0.0590 +0 0.0562 +0 0.1006 +0 0.0652 +0 0.0481 +0 0.2065 +0 0.2098 +0 0.1254 +0 0.0908 +0 0.0841 +0 0.0784 +0 0.2379 +0 0.1609 +0 0.1935 +0 0.0819 +0 0.0906 +0 0.1546 +0 0.1139 +0 0.0298 +0 0.0900 +0 0.2761 +0 0.1339 +0 0.0889 +0 0.1888 +0 0.2033 +0 0.0726 +0 0.5674 +0 0.0854 +0 0.1669 +0 0.1018 +0 0.0873 +0 0.0801 +0 0.4524 +0 0.1128 +0 0.0885 +0 0.0726 +0 0.1485 +0 0.1433 +0 0.0778 +0 0.2381 +0 0.0989 +0 0.1371 +0 0.1594 +0 0.1119 +0 0.1558 +0 0.0342 +0 0.1018 +0 0.0738 +0 0.1416 +0 0.6175 +0 0.1590 +0 0.0582 +0 0.2243 +0 0.0865 +0 0.1432 +0 0.1498 +0 0.0895 +0 0.0738 +0 0.6247 +0 0.0688 +0 0.0454 +0 0.1372 +0 0.1053 +0 0.1505 +0 0.0781 +0 0.1094 +0 0.0677 +0 0.0449 +0 0.1696 +0 0.1510 +0 0.2223 +0 0.0566 +0 0.0570 +0 0.0369 +0 0.0406 +0 0.0795 +0 0.2281 +0 0.0731 +0 0.0723 +0 0.2983 +0 0.1628 +0 0.0951 +0 0.1720 +0 0.2174 +0 0.0869 +0 0.0787 +0 0.0791 +0 0.1269 +0 0.1427 +0 0.0925 +0 0.3778 +0 0.0824 +0 0.1979 +0 0.1102 +0 0.0730 +0 0.0874 +0 0.0715 +0 0.1572 +0 0.0667 +0 0.0620 +0 0.7392 +0 0.1091 +0 0.1063 +0 0.0566 +0 0.1014 +0 0.0687 +0 0.0744 +0 0.0926 +0 0.1060 +0 0.0766 +0 0.1446 +0 0.1571 +0 0.0622 +0 0.0940 +0 0.2276 +0 0.0952 +0 0.1905 +0 0.0997 +0 0.1640 +0 0.1095 +0 0.7254 +0 0.1638 +0 0.4243 +0 0.1080 +0 0.1387 +0 0.3249 +0 0.7354 +0 0.0770 +0 0.3148 +0 0.1477 +0 0.1398 +0 0.1574 +0 0.0756 +0 0.0633 +0 0.0616 +0 0.0764 +1 0.8018 +0 0.2578 +0 0.0299 +0 0.0916 +0 0.0407 +0 0.0317 +0 0.1658 +0 0.0830 +0 0.1222 +0 0.0958 +0 0.2912 +0 0.1052 +0 0.1674 +0 0.0698 +0 0.0548 +0 0.0843 +0 0.0451 +0 0.1194 +0 0.1140 +0 0.2146 +0 0.1405 +0 0.3017 +0 0.1189 +0 0.0962 +0 0.0571 +0 0.4621 +0 0.0517 +0 0.2094 +0 0.1099 +0 0.4198 +0 0.0692 +0 0.0675 +0 0.5030 +0 0.0820 +0 0.2363 +0 0.0853 +0 0.0452 +0 0.1757 +0 0.0517 +0 0.0621 +0 0.0668 +0 0.0583 +0 0.1313 +0 0.0902 +0 0.0928 +0 0.1081 +0 0.6372 +0 0.6063 +0 0.2550 +0 0.2660 +0 0.0725 +0 0.3814 +0 0.2268 +0 0.0908 +0 0.1072 +0 0.1550 +0 0.2892 +0 0.5525 +0 0.7037 +0 0.0575 +0 0.0414 +0 0.0763 +0 0.1576 +0 0.1098 +0 0.0560 +0 0.0674 +0 0.0382 +0 0.1008 +0 0.1428 +0 0.2120 +0 0.1214 +0 0.2140 +0 0.0661 +0 0.2085 +0 0.1246 +0 0.1574 +0 0.1589 +0 0.0813 +0 0.0390 +0 0.0918 +0 0.0975 +0 0.0440 +0 0.2084 +0 0.0926 +0 0.0786 +0 0.0791 +0 0.0310 +0 0.0589 +0 0.3611 +1 0.7899 +0 0.0580 +0 0.0624 +0 0.0689 +0 0.0802 +0 0.1167 +0 0.0415 +0 0.0780 +0 0.1339 +0 0.0982 +0 0.1076 +0 0.1034 +0 0.1304 +0 0.1146 +0 0.1243 +0 0.1105 +0 0.1344 +0 0.0895 +0 0.0431 +0 0.0762 +0 0.1010 +0 0.2384 +0 0.0839 +0 0.1024 +0 0.0771 +0 0.0874 +0 0.0380 +0 0.1656 +0 0.2036 +0 0.0705 +0 0.0780 +0 0.1921 +0 0.2434 +0 0.7095 +0 0.3378 +0 0.0645 +0 0.0605 +0 0.0616 +0 0.2365 +0 0.0536 +0 0.2195 +0 0.0830 +0 0.0735 +0 0.0775 +0 0.1135 +0 0.1394 +0 0.0644 +0 0.1846 +0 0.1919 +0 0.2977 +0 0.0538 +0 0.0900 +0 0.0780 +0 0.1200 +0 0.2047 +0 0.0612 +0 0.0840 +0 0.1815 +0 0.0533 +0 0.0274 +0 0.0566 +0 0.0323 +0 0.0645 +0 0.0852 +0 0.1264 +0 0.0622 +0 0.1049 +0 0.1296 +0 0.0734 +0 0.0356 +0 0.1812 +0 0.1889 +0 0.0745 +0 0.1928 +0 0.1231 +0 0.7449 +0 0.1382 +0 0.2449 +0 0.0867 +0 0.6184 +0 0.1479 +0 0.7295 +0 0.0720 +0 0.1352 +0 0.0923 +0 0.0759 +0 0.1519 +0 0.2733 +0 0.0657 +0 0.1348 +0 0.1508 +0 0.1185 +0 0.0520 +0 0.1165 +0 0.0354 +0 0.1130 +0 0.0517 +0 0.0719 +0 0.0362 +0 0.1335 +0 0.0987 +0 0.0801 +0 0.0501 +0 0.0831 +0 0.0972 +0 0.3622 +0 0.0951 +0 0.1664 +0 0.0900 +0 0.1751 +0 0.0677 +0 0.1533 +0 0.1072 +0 0.1055 +0 0.1193 +0 0.0677 +0 0.0389 +0 0.0660 +0 0.0546 +0 0.0726 +0 0.2283 +0 0.2544 +0 0.1038 +0 0.1321 +0 0.0639 +0 0.1467 +0 0.1175 +0 0.1670 +0 0.0703 +0 0.1529 +0 0.1066 +0 0.1114 +0 0.0986 +0 0.3774 +0 0.1094 +0 0.1988 +0 0.1076 +0 0.3889 +0 0.0680 +0 0.0884 +0 0.1966 +0 0.0948 +0 0.2765 +0 0.0685 +0 0.1220 +0 0.2505 +0 0.1296 +0 0.0850 +0 0.0957 +0 0.0719 +0 0.0459 +0 0.1497 +0 0.0787 +0 0.0808 +0 0.0976 +0 0.0675 +0 0.2748 +0 0.1500 +0 0.1990 +0 0.0991 +0 0.1653 +0 0.1432 +0 0.5574 +0 0.0998 +0 0.1082 +0 0.0591 +0 0.0568 +0 0.0821 +0 0.0833 +0 0.0922 +0 0.1158 +0 0.0883 +0 0.2957 +0 0.1289 +0 0.0467 +0 0.1918 +0 0.1613 +0 0.1004 +0 0.1057 +0 0.0770 +0 0.2354 +0 0.0468 +0 0.0703 +0 0.2493 +0 0.2336 +0 0.0672 +0 0.0963 +1 0.8143 +0 0.1048 +0 0.0731 +0 0.3495 +0 0.0922 +0 0.0841 +0 0.1068 +0 0.5687 +0 0.1248 +0 0.0924 +0 0.0408 +0 0.1457 +0 0.1333 +0 0.1033 +0 0.0980 +1 0.8485 +0 0.0654 +0 0.0398 +0 0.0828 +0 0.1153 +0 0.1347 +0 0.1145 +0 0.3320 +0 0.0929 +0 0.0613 +0 0.0591 +0 0.0649 +0 0.0964 +0 0.0771 +0 0.0880 +0 0.1279 +0 0.2883 +0 0.0843 +0 0.1636 +0 0.2231 +0 0.1923 +0 0.1548 +0 0.4860 +0 0.0466 +0 0.0726 +0 0.1498 +0 0.1096 +0 0.0915 +0 0.0936 +0 0.1463 +0 0.0767 +0 0.1412 +0 0.0418 +0 0.1021 +0 0.4312 +0 0.0879 +0 0.2168 +0 0.4537 +0 0.0486 +0 0.0823 +0 0.2593 +0 0.2447 +0 0.1246 +0 0.0850 +0 0.1021 +0 0.0953 +0 0.0743 +0 0.0970 +0 0.0961 +0 0.2395 +0 0.1140 +0 0.5786 +0 0.1186 +0 0.2021 +0 0.0478 +1 0.7600 +0 0.1598 +0 0.1390 +0 0.0519 +0 0.1137 +0 0.1760 +0 0.2157 +0 0.1875 +0 0.1023 +0 0.0779 +0 0.0662 +0 0.0734 +0 0.0746 +0 0.0809 +0 0.0912 +0 0.0899 +0 0.1871 +0 0.0844 +0 0.1375 +0 0.1752 +0 0.1997 +0 0.2302 +0 0.0974 +0 0.1151 +0 0.2323 +0 0.2192 +0 0.0723 +0 0.0602 +0 0.0973 +0 0.3111 +0 0.0612 +0 0.2547 +0 0.0732 +0 0.0614 +0 0.0689 +0 0.0906 +0 0.1358 +0 0.1107 +0 0.1280 +0 0.1085 +0 0.0616 +0 0.2479 +0 0.1855 +0 0.0620 +0 0.1668 +0 0.0799 +0 0.4464 +0 0.1146 +0 0.0389 +0 0.0854 +0 0.1881 +0 0.3714 +0 0.0745 +0 0.1398 +0 0.0577 +0 0.1613 +0 0.1410 +0 0.1010 +0 0.1615 +0 0.0775 +0 0.0411 +0 0.0782 +0 0.0428 +0 0.5352 +0 0.0704 +0 0.1972 +0 0.0806 +0 0.1858 +0 0.0481 +0 0.1006 +0 0.1011 +0 0.1228 +0 0.1134 +0 0.0929 +0 0.1552 +0 0.1517 +0 0.1550 +0 0.1550 +0 0.1080 +0 0.7425 +0 0.2578 +0 0.0921 +0 0.0618 +0 0.0432 +0 0.2099 +0 0.1020 +0 0.0820 +0 0.1284 +0 0.0943 +0 0.1183 +0 0.3939 +0 0.1645 +0 0.0535 +0 0.0308 +0 0.1032 +0 0.0943 +0 0.0669 +0 0.1406 +0 0.0936 +0 0.1217 +0 0.0411 +0 0.0775 +0 0.1413 +0 0.1644 +0 0.0391 +0 0.5279 +0 0.0614 +0 0.0796 +0 0.1002 +0 0.0739 +0 0.0797 +0 0.0505 +0 0.1133 +0 0.2174 +0 0.3504 +0 0.2728 +0 0.1051 +0 0.0898 +0 0.3388 +0 0.0510 +0 0.1440 +0 0.1746 +0 0.1238 +0 0.1598 +0 0.0543 +0 0.1866 +0 0.1139 +0 0.0573 +0 0.0838 +0 0.1243 +0 0.0404 +0 0.1018 +0 0.1285 +0 0.0964 +0 0.2650 +0 0.1551 +0 0.0843 +0 0.2280 +0 0.1845 +0 0.4606 +0 0.0712 +0 0.0432 +0 0.0323 +0 0.1085 +0 0.1272 +0 0.6175 +0 0.1110 +0 0.2759 +0 0.1111 +0 0.1080 +0 0.3062 +0 0.5292 +0 0.0917 +0 0.0639 +0 0.1794 +0 0.1196 +0 0.0408 +0 0.0956 +0 0.0463 +0 0.0913 +0 0.1229 +0 0.0672 +0 0.1791 +0 0.0801 +0 0.3075 +0 0.0753 +0 0.0926 +0 0.0748 +0 0.0875 +0 0.0758 +0 0.0556 +0 0.0953 +0 0.6797 +0 0.1274 +0 0.2964 +0 0.1020 +0 0.0959 +0 0.2027 +0 0.0353 +0 0.0817 +0 0.1275 +0 0.1663 +0 0.0891 +0 0.0865 +0 0.0678 +0 0.1661 +0 0.1582 +0 0.4044 +0 0.1438 +0 0.0827 +0 0.0399 +0 0.0738 +0 0.2356 +0 0.1017 +0 0.0552 +0 0.1113 +0 0.1830 +0 0.0802 +0 0.0817 +0 0.1822 +0 0.0343 +0 0.0369 +0 0.4386 +0 0.0651 +0 0.2884 +0 0.3111 +0 0.0861 +0 0.0686 +0 0.3024 +0 0.2261 +0 0.0786 +0 0.1009 +0 0.1310 +0 0.0705 +0 0.0719 +0 0.2203 +0 0.1073 +0 0.0717 +0 0.0731 +0 0.0930 +0 0.0754 +0 0.0848 +0 0.1195 +0 0.0443 +0 0.1110 +0 0.1407 +0 0.1300 +0 0.0825 +0 0.0750 +0 0.1292 +0 0.0774 +0 0.1891 +0 0.0630 +0 0.1103 +0 0.1585 +0 0.1842 +0 0.0385 +0 0.1007 +0 0.1092 +0 0.0463 +0 0.3938 +0 0.2057 +0 0.1715 +0 0.2835 +0 0.0667 +0 0.0844 +0 0.1128 +0 0.0617 +0 0.1054 +0 0.1772 +0 0.0517 +0 0.2433 +0 0.5404 +0 0.0970 +0 0.2150 +0 0.4336 +0 0.0670 +0 0.0452 +0 0.0710 +0 0.0803 +0 0.1528 +0 0.1672 +0 0.1005 +0 0.0704 +0 0.0722 +0 0.0352 +0 0.2798 +0 0.0775 +0 0.3352 +0 0.0357 +0 0.0480 +0 0.5511 +0 0.0582 +0 0.0448 +0 0.1090 +0 0.6677 +0 0.0676 +0 0.2264 +0 0.2440 +0 0.0722 +0 0.1770 +0 0.1339 +0 0.1313 +0 0.1127 +0 0.0787 +0 0.1444 +0 0.1653 +0 0.1998 +0 0.0743 +0 0.0678 +0 0.1474 +0 0.1371 +0 0.0598 +0 0.0784 +0 0.0916 +0 0.2469 +0 0.0875 +0 0.1146 +0 0.1364 +0 0.0531 +0 0.2219 +0 0.0466 +0 0.0655 +0 0.0401 +0 0.0495 +0 0.0850 +0 0.1173 +0 0.1222 +0 0.1508 +0 0.1803 +0 0.1057 +0 0.0969 +1 0.8125 +0 0.1356 +0 0.0524 +0 0.1156 +0 0.1273 +0 0.0921 +0 0.0828 +0 0.0577 +0 0.0492 +0 0.1578 +0 0.2105 +0 0.1264 +0 0.1310 +0 0.1056 +0 0.2058 +0 0.1475 +0 0.1732 +0 0.0875 +0 0.1185 +0 0.1091 +0 0.1570 +0 0.0725 +0 0.0851 +0 0.0704 +0 0.1982 +0 0.1378 +0 0.0751 +0 0.0890 +0 0.1759 +0 0.1105 +0 0.1165 +0 0.0569 +0 0.1137 +0 0.0477 +0 0.1113 +0 0.0395 +0 0.1430 +0 0.1161 +0 0.0730 +0 0.1162 +0 0.1346 +0 0.0794 +0 0.0345 +0 0.1748 +0 0.0634 +0 0.1340 +0 0.0663 +0 0.2773 +0 0.0865 +0 0.1059 +0 0.0890 +0 0.0952 +0 0.1516 +0 0.2323 +0 0.2100 +0 0.0662 +0 0.0659 +0 0.1422 +0 0.1685 +0 0.3078 +0 0.0915 +0 0.0482 +0 0.1463 +0 0.0773 +0 0.1779 +0 0.0631 +0 0.2035 +0 0.0785 +0 0.0675 +1 0.7878 +0 0.2134 +0 0.0606 +0 0.2117 +0 0.0807 +0 0.2782 +0 0.1096 +0 0.1033 +0 0.1110 +0 0.0590 +0 0.0718 +0 0.0307 +0 0.1485 +0 0.2337 +0 0.1112 +0 0.1008 +0 0.1090 +0 0.2614 +0 0.1047 +0 0.0719 +0 0.1280 +0 0.1177 +0 0.0414 +0 0.1926 +0 0.0558 +0 0.1317 +0 0.0357 +0 0.1471 +0 0.0644 +0 0.1688 +0 0.2150 +0 0.4160 +0 0.0471 +0 0.1485 +0 0.0613 +0 0.1183 +0 0.0450 +0 0.0653 +0 0.2797 +0 0.0633 +1 0.8139 +0 0.1015 +0 0.0750 +1 0.9120 +0 0.1322 +0 0.1212 +0 0.0603 +0 0.1287 +0 0.1570 +0 0.2216 +0 0.1099 +0 0.0817 +0 0.0503 +0 0.1775 +0 0.1401 +0 0.0669 +0 0.1361 +0 0.0979 +0 0.0540 +0 0.0828 +0 0.0493 +0 0.1648 +0 0.1798 +0 0.1298 +1 0.7671 +0 0.0967 +0 0.0653 +0 0.1243 +0 0.1131 +0 0.1766 +0 0.1959 +0 0.0617 +0 0.1060 +0 0.0585 +0 0.0823 +0 0.0796 +0 0.1981 +0 0.2978 +0 0.1118 +0 0.1407 +0 0.1151 +0 0.0916 +0 0.1406 +0 0.1269 +0 0.2345 +0 0.0766 +0 0.1242 +0 0.1483 +0 0.0430 +0 0.1270 +0 0.2824 +0 0.0979 +0 0.0622 +0 0.2457 +0 0.1315 +0 0.0664 +0 0.0794 +0 0.1370 +0 0.2028 +0 0.0603 +0 0.1992 +0 0.0810 +0 0.0408 +0 0.0631 +0 0.1550 +0 0.0932 +0 0.3510 +1 0.8265 +0 0.1125 +0 0.5758 +0 0.7031 +0 0.1426 +0 0.1048 +0 0.2311 +0 0.1225 +0 0.0953 +0 0.0604 +0 0.1082 +0 0.1146 +0 0.0493 +0 0.2219 +0 0.1234 +0 0.0924 +0 0.3025 +0 0.1322 +0 0.1628 +0 0.0875 +0 0.0901 +0 0.1308 +0 0.0798 +0 0.0720 +0 0.5856 +0 0.0762 +0 0.0383 +0 0.3978 +0 0.1081 +0 0.0757 +0 0.1072 +0 0.6580 +0 0.1003 +0 0.3120 +0 0.1440 +0 0.0687 +0 0.3580 +0 0.1023 +0 0.1664 +0 0.4102 +0 0.0330 +0 0.0533 +0 0.0778 +0 0.0526 +0 0.1522 +0 0.1245 +0 0.0850 +0 0.0537 +0 0.1274 +0 0.1424 +0 0.3745 +0 0.3464 +0 0.1665 +0 0.2199 +0 0.1658 +0 0.2195 +0 0.0796 +0 0.0987 +0 0.0728 +0 0.0636 +0 0.0588 +0 0.1552 +0 0.1318 +0 0.0524 +0 0.0984 +0 0.0608 +0 0.1572 +0 0.1212 +0 0.1604 +0 0.0822 +0 0.1608 +0 0.1600 +0 0.0607 +0 0.1558 +0 0.0664 +0 0.0533 +0 0.0952 +0 0.0865 +0 0.2296 +0 0.1038 +0 0.1068 +0 0.1460 +0 0.1591 +0 0.1631 +0 0.1819 +0 0.0473 +0 0.1198 +0 0.0523 +0 0.0753 +0 0.2191 +0 0.4372 +0 0.0893 +0 0.1775 +0 0.0405 +0 0.0850 +0 0.1006 +0 0.1049 +0 0.0303 +0 0.1160 +0 0.0769 +0 0.0803 +0 0.1057 +0 0.0989 +0 0.1209 +0 0.1535 +0 0.1921 +0 0.1529 +0 0.0747 +0 0.1130 +0 0.1794 +0 0.0935 +0 0.1197 +0 0.0526 +0 0.0988 +0 0.0603 +0 0.1267 +0 0.0616 +0 0.1779 +0 0.2868 +0 0.1160 +0 0.0835 +0 0.1271 +0 0.0636 +0 0.1338 +0 0.0942 +0 0.0312 +0 0.0785 +0 0.1128 +0 0.1262 +0 0.0993 +0 0.1475 +0 0.1159 +0 0.1552 +0 0.0480 +0 0.3239 +0 0.1534 +0 0.2031 +0 0.0462 +0 0.2057 +0 0.0932 +0 0.1143 +0 0.0809 +0 0.2047 +0 0.2725 +0 0.3380 +0 0.1173 +0 0.0434 +0 0.0912 +0 0.0636 +0 0.0672 +0 0.2077 +0 0.0990 +0 0.1331 +0 0.2223 +0 0.6134 +0 0.2263 +0 0.0926 +0 0.1259 +0 0.1425 +0 0.1343 +0 0.2762 +0 0.0826 +0 0.2074 +0 0.1141 +0 0.0873 +0 0.0846 +0 0.2774 +1 0.8119 +0 0.0768 +0 0.3691 +0 0.0827 +0 0.2499 +0 0.2838 +0 0.1258 +0 0.6373 +0 0.0937 +0 0.0469 +0 0.0566 +0 0.2942 +0 0.2855 +0 0.0955 +0 0.1886 +0 0.0690 +0 0.1795 +0 0.2078 +0 0.0768 +0 0.1587 +0 0.0416 +1 0.8442 +0 0.0679 +0 0.2214 +0 0.1586 +0 0.2063 +0 0.1031 +0 0.2833 +0 0.1447 +0 0.4485 +1 0.8011 +0 0.0936 +0 0.1179 +0 0.1525 +0 0.0977 +0 0.0690 +0 0.3449 +0 0.1118 +0 0.0821 +0 0.0787 +0 0.0850 +0 0.1067 +0 0.2443 +0 0.0826 +0 0.1308 +0 0.1031 +0 0.0931 +1 0.7793 +0 0.0632 +0 0.1152 +0 0.0762 +0 0.0953 +0 0.1176 +0 0.1243 +0 0.1160 +0 0.0788 +0 0.1522 +0 0.6530 +0 0.0604 +0 0.0808 +0 0.0503 +0 0.2490 +0 0.0976 +0 0.0685 +0 0.0647 +0 0.1571 +0 0.2984 +0 0.1133 +0 0.3483 +0 0.0737 +0 0.0858 +0 0.1217 +0 0.3333 +0 0.1219 +0 0.1814 +0 0.1694 +0 0.1954 +0 0.0309 +0 0.0690 +0 0.0925 +0 0.1675 +0 0.1146 +0 0.1005 +0 0.0750 +0 0.0812 +0 0.0437 +0 0.0743 +0 0.0936 +0 0.0496 +0 0.0647 +0 0.0689 +0 0.2044 +0 0.0664 +0 0.3407 +0 0.1760 +0 0.0658 +0 0.0674 +0 0.5945 +0 0.1276 +0 0.1819 +0 0.0468 +0 0.1372 +0 0.1472 +0 0.2410 +0 0.1449 +0 0.0984 +0 0.0466 +0 0.0741 +0 0.0941 +0 0.0557 +0 0.0877 +0 0.3370 +0 0.0407 +0 0.1045 +0 0.0713 +0 0.2857 +0 0.0620 +0 0.0739 +0 0.0650 +0 0.0503 +0 0.0373 +0 0.1112 +0 0.1585 +0 0.0754 +0 0.0555 +0 0.1180 +0 0.1710 +0 0.3427 +0 0.1834 +0 0.1778 +0 0.1749 +0 0.0552 +0 0.0594 +0 0.2109 +0 0.0746 +0 0.0469 +0 0.3514 +0 0.1772 +0 0.1067 +0 0.0458 +0 0.0737 +0 0.1694 +0 0.0974 +0 0.1965 +0 0.0804 +0 0.1257 +0 0.0406 +0 0.1300 +0 0.2815 +0 0.2071 +0 0.1134 +0 0.1593 +0 0.1071 +0 0.1587 +0 0.2980 +0 0.0551 +0 0.0707 +0 0.0917 +0 0.1060 +0 0.0455 +0 0.1362 +0 0.0853 +0 0.0949 +0 0.0807 +0 0.0719 +0 0.1437 +0 0.0802 +0 0.0816 +0 0.0828 +0 0.0739 +0 0.1640 +0 0.1164 +0 0.0729 +0 0.0891 +0 0.0933 +0 0.1056 +0 0.3519 +0 0.1045 +0 0.0554 +0 0.0449 +0 0.0578 +0 0.0522 +0 0.2351 +0 0.0890 +0 0.0676 +0 0.3228 +0 0.2019 +0 0.1272 +0 0.1520 +0 0.0398 +0 0.1343 +0 0.1994 +0 0.1481 +0 0.1647 +0 0.0495 +0 0.0870 +0 0.1287 +0 0.0892 +0 0.0526 +0 0.1269 +0 0.2595 +0 0.0765 +0 0.4402 +0 0.1250 +0 0.1068 +0 0.1104 +0 0.0605 +0 0.3157 +0 0.1733 +0 0.0875 +0 0.1106 +0 0.0600 +0 0.0773 +0 0.7281 +0 0.0441 +0 0.0754 +0 0.4913 +0 0.1536 +0 0.1002 +0 0.0848 +0 0.0887 +0 0.5951 +0 0.2435 +0 0.2501 +0 0.1123 +0 0.0768 +0 0.4264 +0 0.0880 +0 0.0739 +0 0.1676 +0 0.1707 +0 0.0463 +0 0.1450 +0 0.0410 +0 0.1859 +0 0.0957 +0 0.4256 +0 0.0796 +0 0.3594 +0 0.0568 +0 0.0882 +0 0.1200 +0 0.1429 +0 0.0867 +0 0.0452 +0 0.2342 +0 0.0670 +0 0.1063 +0 0.1296 +0 0.0792 +0 0.0486 +0 0.1009 +0 0.7106 +0 0.1572 +0 0.0599 +0 0.0664 +0 0.1125 +0 0.0942 +1 0.7847 +0 0.2468 +0 0.0689 +0 0.0953 +0 0.0427 +0 0.0411 +0 0.1465 +0 0.0895 +0 0.2076 +0 0.1204 +0 0.2387 +0 0.0532 +0 0.3435 +0 0.0866 +0 0.1732 +0 0.1375 +0 0.0853 +0 0.0862 +0 0.0482 +0 0.2217 +0 0.0751 +0 0.0855 +0 0.1485 +0 0.2805 +0 0.0933 +0 0.1631 +0 0.0466 +0 0.1099 +0 0.0917 +0 0.0441 +0 0.0673 +0 0.7350 +0 0.0399 +0 0.1432 +0 0.0711 +0 0.0736 +0 0.1992 +0 0.1412 +0 0.0584 +0 0.2062 +0 0.1599 +0 0.1841 +0 0.0726 +0 0.1038 +0 0.2558 +0 0.4854 +0 0.1742 +0 0.1879 +0 0.0895 +0 0.0873 +0 0.6719 +0 0.1147 +0 0.1385 +0 0.0584 +0 0.1744 +0 0.0843 +0 0.0550 +1 0.7570 +0 0.1286 +0 0.1641 +0 0.1382 +0 0.0547 +0 0.1586 +0 0.2660 +0 0.1844 +0 0.1168 +0 0.0773 +0 0.0346 +0 0.1833 +0 0.2558 +0 0.0903 +0 0.0784 +0 0.0623 +0 0.1611 +0 0.1718 +0 0.0793 +0 0.1463 +0 0.1330 +0 0.1112 +0 0.1150 +0 0.1035 +0 0.6285 +0 0.1385 +0 0.2354 +0 0.0855 +0 0.0959 +0 0.0846 +0 0.1829 +0 0.1106 +0 0.5447 +0 0.0390 +0 0.1524 +0 0.2553 +0 0.1364 +0 0.0614 +0 0.5868 +0 0.0381 +0 0.0875 +0 0.0872 +0 0.1937 +0 0.0556 +0 0.0653 +0 0.0731 +0 0.1401 +0 0.1222 +0 0.1049 +0 0.0807 +1 0.7793 +0 0.1261 +0 0.1435 +0 0.1066 +0 0.1341 +0 0.0705 +0 0.0914 +0 0.0682 +0 0.1585 +0 0.1343 +0 0.0993 +0 0.0550 +0 0.1110 +0 0.1655 +0 0.0820 +0 0.2002 +0 0.1520 +0 0.1459 +0 0.1147 +0 0.0971 +0 0.0972 +0 0.1190 +0 0.1393 +0 0.0767 +0 0.1338 +0 0.1058 +0 0.0519 +0 0.0398 +0 0.0825 +0 0.0959 +0 0.0972 +0 0.1679 +0 0.2623 +0 0.0580 +0 0.0609 +0 0.1642 +0 0.1190 +0 0.1380 +0 0.1806 +0 0.0788 +0 0.0736 +0 0.1052 +0 0.0774 +0 0.0628 +0 0.0826 +0 0.1509 +0 0.4921 +0 0.1803 +0 0.0715 +0 0.1012 +0 0.1781 +0 0.1146 +0 0.0425 +0 0.0443 +0 0.2835 +0 0.1713 +0 0.1821 +0 0.1595 +0 0.1268 +0 0.0608 +0 0.1396 +0 0.0970 +0 0.1244 +0 0.0931 +0 0.0471 +0 0.1987 +0 0.0735 +0 0.0725 +0 0.0650 +0 0.0378 +0 0.0771 +0 0.0939 +0 0.1562 +0 0.0758 +0 0.0768 +0 0.1230 +0 0.0363 +0 0.0669 +0 0.5552 +0 0.1215 +0 0.0996 +0 0.1179 +0 0.0788 +0 0.1368 +0 0.1051 +0 0.0680 +0 0.0982 +0 0.0470 +0 0.1246 +0 0.0934 +0 0.3639 +0 0.2283 +0 0.3227 +0 0.2355 +0 0.0561 +0 0.1041 +0 0.0686 +0 0.1451 +0 0.1065 +0 0.1144 +0 0.4724 +0 0.0911 +0 0.1124 +0 0.2016 +0 0.1196 +0 0.2316 +0 0.0491 +0 0.2237 +0 0.0903 +0 0.0934 +0 0.0808 +0 0.1046 +0 0.0583 +0 0.0520 +0 0.2284 +0 0.0988 +0 0.1038 +0 0.0978 +0 0.0418 +0 0.1163 +0 0.1411 +0 0.0913 +0 0.1214 +0 0.0792 +0 0.1720 +0 0.1247 +0 0.1799 +0 0.1602 +0 0.0725 +0 0.1881 +0 0.0875 +0 0.0748 +0 0.0738 +0 0.2447 +0 0.0662 +0 0.0770 +0 0.0752 +0 0.1830 +0 0.7255 +0 0.1398 +0 0.1411 +0 0.0888 +0 0.1085 +0 0.0462 +0 0.0644 +0 0.0522 +0 0.3795 +0 0.1137 +0 0.0572 +0 0.0947 +0 0.1062 +0 0.0576 +0 0.0381 +0 0.0695 +0 0.1391 +0 0.2254 +0 0.1663 +0 0.0907 +0 0.0685 +0 0.0305 +0 0.1505 +0 0.0718 +0 0.1863 +0 0.1420 +0 0.0613 +0 0.0357 +0 0.0894 +0 0.2799 +0 0.1099 +0 0.0835 +0 0.0540 +0 0.0965 +0 0.0463 +0 0.1831 +0 0.0481 +0 0.1118 +0 0.1582 +0 0.1245 +0 0.1111 +0 0.0469 +0 0.5687 +0 0.0823 +0 0.1210 +0 0.1815 +0 0.1235 +0 0.0541 +0 0.0908 +0 0.0584 +0 0.1712 +0 0.1662 +0 0.1271 +0 0.0590 +0 0.2359 +0 0.5756 +0 0.1645 +0 0.1105 +0 0.0644 +0 0.1665 +0 0.2048 +0 0.0440 +0 0.3015 +0 0.6766 +0 0.0788 +0 0.5650 +0 0.1122 +0 0.4154 +0 0.4906 +0 0.1908 +0 0.1748 +0 0.1001 +0 0.0822 +0 0.1067 +0 0.0689 +0 0.0821 +0 0.4154 +0 0.1179 +0 0.1726 +0 0.1777 +0 0.1107 +0 0.0718 +0 0.2095 +0 0.0857 +0 0.0401 +0 0.0934 +0 0.1769 +0 0.1536 +0 0.1067 +0 0.0984 +0 0.1367 +0 0.0919 +0 0.0910 +0 0.0964 +0 0.0676 +0 0.1195 +0 0.0628 +0 0.1315 +1 0.8295 +0 0.1069 +0 0.4477 +0 0.0787 +0 0.2410 +0 0.0412 +0 0.0728 +0 0.0743 +0 0.1667 +0 0.3862 +0 0.0665 +0 0.0856 +0 0.2046 +0 0.3483 +0 0.0432 +0 0.0880 +0 0.0831 +0 0.0524 +0 0.0867 +0 0.0690 +0 0.0859 +0 0.0674 +0 0.0414 +0 0.1641 +0 0.1178 +0 0.0463 +0 0.0783 +0 0.1616 +0 0.2902 +0 0.0692 +0 0.0491 +0 0.2151 +0 0.1902 +0 0.1203 +0 0.0531 +0 0.1534 +0 0.1104 +0 0.1165 +0 0.0498 +0 0.0482 +0 0.1825 +0 0.1246 +0 0.0950 +0 0.0594 +0 0.1227 +0 0.1071 +0 0.2511 +0 0.2573 +0 0.1613 +0 0.0986 +0 0.1907 +0 0.1445 +0 0.0880 +0 0.1239 +0 0.1236 +0 0.4479 +0 0.0920 +0 0.0637 +0 0.1853 +0 0.1233 +0 0.1519 +0 0.0738 +0 0.0629 +0 0.0925 +0 0.0427 +0 0.1277 +0 0.1163 +0 0.1274 +0 0.1004 +0 0.4834 +0 0.0483 +0 0.2008 +0 0.1442 +0 0.2852 +0 0.0878 +0 0.2370 +0 0.4706 +0 0.0951 +0 0.0663 +0 0.1859 +0 0.0737 +0 0.1209 +0 0.0509 +0 0.1083 +0 0.0636 +0 0.2014 +0 0.1442 +0 0.0320 +0 0.2089 +0 0.3046 +0 0.0927 +0 0.0419 +0 0.1632 +0 0.2484 +0 0.0873 +0 0.0942 +0 0.2469 +0 0.1351 +0 0.0462 +0 0.1211 +0 0.1047 +0 0.0852 +0 0.1883 +0 0.0448 +0 0.1459 +0 0.1652 +0 0.0500 +0 0.0700 +0 0.0803 +0 0.2891 +0 0.1212 +0 0.0701 +0 0.0932 +0 0.1236 +0 0.0305 +0 0.1033 +0 0.2818 +0 0.1733 +0 0.0859 +0 0.2001 +0 0.0922 +0 0.0947 +0 0.1828 +0 0.0819 +0 0.1466 +0 0.1014 +0 0.0423 +0 0.0982 +0 0.0520 +0 0.2605 +0 0.0531 +0 0.2108 +0 0.0797 +0 0.1563 +0 0.1536 +0 0.1186 +0 0.2057 +0 0.0528 +0 0.1245 +0 0.0733 +0 0.0771 +0 0.0892 +0 0.2714 +0 0.0622 +0 0.0838 +0 0.1432 +0 0.0573 +0 0.0557 +0 0.0704 +0 0.0745 +0 0.0789 +0 0.1054 +0 0.0730 +0 0.2429 +0 0.1263 +0 0.1718 +0 0.2643 +0 0.1967 +0 0.0521 +0 0.1359 +0 0.0280 +0 0.0683 +0 0.0607 +0 0.0812 +0 0.3806 +0 0.2316 +0 0.0965 +0 0.1148 +0 0.1419 +0 0.0715 +0 0.0455 +0 0.0842 +0 0.3468 +0 0.0760 +0 0.1001 +0 0.0703 +0 0.1230 +0 0.2201 +0 0.0518 +0 0.0790 +0 0.2287 +0 0.2697 +1 0.7726 +0 0.0662 +0 0.0648 +0 0.0473 +0 0.0407 +0 0.0715 +0 0.1498 +0 0.0910 +0 0.2409 +0 0.1120 +0 0.1509 +0 0.0596 +0 0.0569 +0 0.1072 +0 0.0576 +0 0.0580 +0 0.1023 +0 0.0508 +0 0.1809 +0 0.0635 +0 0.0605 +0 0.0519 +0 0.1226 +0 0.1204 +0 0.0739 +0 0.0951 +0 0.0532 +0 0.1481 +0 0.1020 +0 0.2076 +0 0.0502 +0 0.0547 +0 0.1564 +0 0.2761 +0 0.1072 +0 0.0967 +0 0.1392 +0 0.0945 +0 0.1703 +0 0.1517 +0 0.0951 +0 0.2170 +0 0.2761 +0 0.0597 +0 0.1889 +0 0.2615 +0 0.1722 +0 0.0816 +0 0.2820 +0 0.0683 +0 0.2383 +0 0.0653 +0 0.0593 +0 0.2204 +0 0.5189 +0 0.1085 +0 0.0384 +0 0.1807 +0 0.1341 +0 0.1682 +0 0.0422 +0 0.0469 +0 0.2347 +0 0.0672 +0 0.0937 +0 0.0589 +0 0.4823 +0 0.3936 +0 0.0326 +0 0.0531 +0 0.1446 +0 0.1421 +0 0.0824 +0 0.1602 +0 0.2141 +0 0.1409 +0 0.1034 +0 0.0760 +0 0.2743 +0 0.0647 +0 0.0762 +0 0.2443 +0 0.0834 +0 0.0870 +0 0.4990 +0 0.0323 +0 0.0877 +0 0.3823 +0 0.0978 +0 0.0418 +1 0.8761 +0 0.1058 +0 0.5917 +0 0.1814 +0 0.1628 +1 0.8165 +0 0.0998 +0 0.0644 +0 0.0555 +0 0.1336 +0 0.0888 +0 0.2177 +0 0.3592 +0 0.0467 +0 0.0781 +0 0.2847 +0 0.1148 +0 0.1333 +0 0.0966 +0 0.0870 +0 0.0646 +0 0.2620 +0 0.1032 +0 0.1865 +0 0.5030 +0 0.1082 +0 0.0945 +0 0.1014 +0 0.1749 +0 0.0842 +0 0.3264 +0 0.1592 +0 0.1447 +0 0.1103 +0 0.0872 +0 0.0398 +0 0.0668 +1 0.7655 +0 0.1587 +0 0.0807 +0 0.1754 +0 0.1259 +0 0.1766 +0 0.0355 +0 0.0989 +0 0.1855 +0 0.1400 +0 0.2010 +0 0.0935 +0 0.4812 +0 0.1703 +0 0.0417 +0 0.1214 +0 0.0642 +0 0.0545 +0 0.1195 +0 0.0849 +0 0.1624 +0 0.4844 +0 0.1527 +0 0.1013 +0 0.1349 +0 0.0356 +0 0.0943 +0 0.1622 +0 0.0410 +0 0.1352 +1 0.7537 +0 0.0369 +0 0.2285 +0 0.0839 +0 0.5720 +0 0.0944 +0 0.0562 +0 0.0487 +0 0.1072 +0 0.0576 +0 0.1431 +0 0.0980 +0 0.0815 +0 0.0658 +0 0.1022 +0 0.1081 +0 0.0649 +0 0.2465 +0 0.0351 +0 0.0880 +0 0.0708 +0 0.0739 +0 0.0680 +0 0.1095 +0 0.1130 +0 0.4190 +0 0.1021 +0 0.2489 +0 0.0388 +0 0.1703 +0 0.0478 +0 0.1078 +0 0.0849 +0 0.1086 +0 0.2909 +0 0.0705 +0 0.1339 +0 0.1568 +0 0.1848 +0 0.1036 +0 0.2807 +0 0.1330 +0 0.0654 +0 0.0485 +0 0.2132 +0 0.0709 +0 0.3474 +0 0.7092 +0 0.1551 +0 0.3184 +0 0.3375 +0 0.1278 +0 0.1672 +0 0.0400 +0 0.1427 +0 0.1163 +0 0.0861 +0 0.1028 +0 0.0722 +0 0.1752 +0 0.1304 +0 0.1263 +0 0.2828 +0 0.0734 +0 0.0556 +0 0.0482 +0 0.2433 +0 0.0496 +0 0.1892 +0 0.1889 +0 0.0879 +0 0.0968 +1 0.8326 +0 0.0370 +0 0.1271 +0 0.0610 +0 0.1127 +0 0.1071 +0 0.1138 +0 0.1666 +0 0.0320 +0 0.0819 +0 0.0435 +0 0.1957 +0 0.0547 +1 0.8333 +0 0.4762 +0 0.1369 +0 0.1746 +0 0.1508 +0 0.1215 +0 0.1407 +0 0.0735 +0 0.2017 +0 0.0974 +0 0.1077 +0 0.2189 +0 0.1042 +0 0.0379 +0 0.4731 +0 0.0853 +0 0.0697 +0 0.3189 +0 0.1141 +0 0.0327 +0 0.0911 +0 0.1478 +0 0.1919 +0 0.1389 +0 0.0970 +0 0.5751 +0 0.1632 +0 0.1482 +0 0.1398 +0 0.0893 +0 0.1004 +0 0.2486 +0 0.2554 +0 0.0884 +0 0.0688 +0 0.1447 +0 0.0785 +0 0.0943 +0 0.4710 +0 0.0799 +0 0.1342 +0 0.1097 +0 0.0826 +0 0.0563 +0 0.1387 +0 0.0709 +0 0.0826 +0 0.1389 +0 0.0437 +0 0.1025 +0 0.0706 +0 0.1495 +0 0.3119 +0 0.0514 +0 0.1542 +0 0.0820 +0 0.0606 +0 0.1018 +0 0.0775 +0 0.1993 +0 0.0735 +0 0.0506 +0 0.0670 +1 0.7881 +0 0.1326 +0 0.2508 +0 0.0488 +0 0.0847 +0 0.5482 +0 0.0796 +0 0.1758 +0 0.0975 +0 0.1064 +0 0.2965 +0 0.0743 +0 0.0339 +0 0.0654 +0 0.5523 +0 0.0694 +0 0.0383 +0 0.0940 +1 0.7609 +0 0.1162 +0 0.3273 +0 0.0886 +0 0.2178 +0 0.0529 +0 0.1811 +0 0.1722 +0 0.1485 +0 0.0444 +0 0.4932 +0 0.1002 +0 0.0538 +0 0.0976 +0 0.1236 +0 0.0668 +0 0.0508 +0 0.0972 +0 0.1297 +0 0.1599 +0 0.0285 +0 0.0810 +1 0.8151 +0 0.0725 +0 0.3087 +0 0.0625 +0 0.0488 +0 0.0642 +0 0.0588 +0 0.1045 +0 0.0417 +0 0.1192 +0 0.2235 +0 0.2094 +0 0.0829 +0 0.1148 +0 0.1263 +0 0.0479 +0 0.5272 +0 0.1194 +0 0.3863 +0 0.0746 +0 0.1014 +0 0.0894 +0 0.0690 +1 0.8260 +0 0.1342 +0 0.0679 +0 0.0992 +0 0.1461 +0 0.0556 +0 0.0500 +0 0.0394 +0 0.0806 +0 0.1344 +0 0.0487 +0 0.0771 +0 0.2073 +0 0.0634 +0 0.1101 +0 0.1434 +0 0.0830 +0 0.0427 +0 0.1100 +0 0.0381 +0 0.1153 +0 0.1484 +0 0.0482 +0 0.0964 +0 0.2341 +0 0.1068 +0 0.1582 +0 0.0957 +0 0.0741 +0 0.1072 +0 0.1837 +0 0.1171 +0 0.0482 +0 0.0564 +0 0.1908 +0 0.1118 +0 0.1263 +0 0.0523 +0 0.0862 +0 0.1249 +0 0.0960 +0 0.0593 +0 0.0642 +0 0.1856 +0 0.0598 +0 0.5117 +0 0.1955 +0 0.0734 +0 0.0368 +0 0.2542 +0 0.0594 +0 0.2052 +0 0.1138 +0 0.0736 +0 0.0749 +0 0.0988 +1 0.8494 +0 0.1907 +0 0.1954 +0 0.1132 +0 0.6087 +0 0.0532 +0 0.0554 +0 0.1820 +0 0.2087 +1 0.7660 +0 0.0419 +0 0.1284 +0 0.1530 +0 0.0532 +0 0.0981 +0 0.4229 +0 0.0597 +0 0.6598 +0 0.1398 +0 0.0792 +0 0.0973 +0 0.0856 +0 0.1635 +0 0.1509 +0 0.0849 +0 0.1370 +0 0.0578 +0 0.1861 +0 0.1117 +0 0.0881 +0 0.0888 +0 0.1322 +0 0.0972 +0 0.1022 +0 0.0697 +0 0.2472 +0 0.0681 +0 0.0716 +0 0.2408 +0 0.0945 +0 0.1232 +0 0.1039 +0 0.2271 +0 0.2112 +0 0.0446 +0 0.1437 +0 0.1676 +0 0.0619 +0 0.1665 +0 0.0832 +0 0.0777 +0 0.0876 +0 0.0443 +0 0.0666 +0 0.3228 +0 0.1918 +0 0.1496 +0 0.0570 +0 0.2559 +0 0.0317 +0 0.3299 +0 0.1786 +0 0.7237 +0 0.0910 +0 0.0726 +0 0.0587 +0 0.0946 +0 0.0733 +0 0.0512 +0 0.2536 +0 0.1058 +0 0.2118 +0 0.0781 +0 0.0862 +0 0.0521 +0 0.0642 +0 0.4309 +0 0.1470 +0 0.0814 +0 0.1100 +0 0.3896 +0 0.1393 +0 0.1342 +0 0.0760 +0 0.0511 +0 0.1349 +0 0.0540 +0 0.0693 +0 0.1277 +0 0.2353 +0 0.0974 +0 0.4279 +0 0.2523 +0 0.1949 +0 0.1290 +0 0.1760 +0 0.1908 +0 0.2365 +0 0.1019 +0 0.1516 +0 0.0994 +0 0.1004 +0 0.0655 +0 0.1085 +0 0.2543 +0 0.2201 +0 0.1308 +0 0.0911 +0 0.0548 +0 0.1130 +0 0.0484 +0 0.2662 +0 0.1474 +0 0.1652 +0 0.0621 +0 0.0561 +0 0.0950 +0 0.0494 +1 0.7708 +0 0.5364 +0 0.0536 +0 0.1169 +0 0.1727 +0 0.0512 +0 0.1409 +0 0.0490 +0 0.0493 +0 0.3402 +0 0.0781 +0 0.0376 +0 0.1180 +0 0.3080 +0 0.1538 +0 0.0453 +0 0.1373 +0 0.0436 +0 0.0664 +0 0.1377 +0 0.0913 +0 0.2103 +0 0.0543 +0 0.0852 +0 0.2462 +0 0.1536 +0 0.0934 +0 0.0981 +0 0.0997 +0 0.6509 +0 0.5810 +0 0.0804 +0 0.2573 +0 0.1092 +0 0.0986 +0 0.1543 +0 0.1117 +0 0.3488 +0 0.0361 +0 0.0659 +0 0.1501 +0 0.0474 +0 0.0587 +0 0.6457 +0 0.1230 +0 0.0483 +0 0.1280 +0 0.0705 +0 0.1251 +0 0.0581 +0 0.0708 +0 0.2562 +0 0.1823 +0 0.1049 +0 0.2010 +0 0.0671 +1 0.9016 +0 0.6934 +0 0.1729 +0 0.4598 +0 0.0619 +0 0.1027 +0 0.1286 +0 0.0737 +0 0.0734 +0 0.1807 +0 0.4655 +0 0.0484 +0 0.1874 +0 0.0972 +1 0.8776 +0 0.2299 +0 0.2343 +0 0.0779 +1 0.7735 +0 0.0829 +0 0.1213 +0 0.1934 +0 0.1127 +0 0.0536 +0 0.0639 +0 0.1697 +0 0.0882 +0 0.0875 +0 0.2002 +0 0.0928 +0 0.0987 +0 0.1124 +0 0.1847 +0 0.2175 +1 0.8182 +0 0.4470 +0 0.1016 +0 0.0902 +0 0.0917 +0 0.1636 +0 0.1732 +0 0.0776 +0 0.0596 +0 0.0774 +0 0.1324 +0 0.2743 +0 0.1415 +0 0.2384 +0 0.2021 +0 0.0902 +0 0.0880 +0 0.1106 +0 0.0853 +0 0.1183 +0 0.1047 +0 0.1058 +0 0.5046 +0 0.1047 +0 0.2168 +0 0.1335 +0 0.0821 +0 0.1040 +0 0.0842 +0 0.0989 +0 0.2368 +0 0.0694 +0 0.0916 +0 0.1539 +0 0.1931 +0 0.1068 +0 0.1098 +0 0.1306 +0 0.0641 +0 0.0432 +0 0.0449 +0 0.1098 +0 0.0896 +1 0.7527 +0 0.0351 +0 0.0591 +0 0.1198 +0 0.1048 +0 0.0816 +0 0.1633 +0 0.3782 +0 0.4070 +0 0.0968 +0 0.6176 +0 0.0882 +0 0.0784 +0 0.0723 +0 0.0858 +0 0.0643 +0 0.0418 +0 0.0671 +0 0.0737 +0 0.3168 +0 0.3674 +0 0.0665 +0 0.0822 +0 0.5076 +0 0.0984 +0 0.1437 +0 0.0586 +0 0.0467 +0 0.1696 +0 0.0844 +0 0.0458 +0 0.1293 +0 0.0570 +0 0.0709 +0 0.1736 +0 0.3423 +0 0.2020 +0 0.1072 +0 0.0700 +0 0.1266 +0 0.0612 +0 0.1135 +0 0.1398 +0 0.0901 +0 0.1377 +0 0.0638 +0 0.0539 +0 0.1850 +0 0.0600 +0 0.1208 +0 0.1015 +0 0.0624 +0 0.0877 +0 0.0998 +0 0.1922 +0 0.0734 +0 0.1274 +0 0.0821 +0 0.1464 +0 0.2144 +0 0.3411 +0 0.3149 +0 0.0951 +0 0.0857 +0 0.0525 +0 0.1519 +0 0.1204 +0 0.1108 +0 0.0828 +0 0.1121 +0 0.3554 +0 0.3915 +0 0.1150 +0 0.1538 +0 0.0614 +0 0.0852 +0 0.1206 +0 0.1592 +0 0.0573 +0 0.4284 +0 0.1463 +0 0.0602 +0 0.0299 +0 0.0848 +0 0.0656 +0 0.1998 +0 0.0590 +0 0.0953 +0 0.0856 +0 0.1749 +0 0.0449 +0 0.1789 +0 0.0676 +0 0.1047 +0 0.1457 +0 0.0835 +0 0.0765 +0 0.0741 +0 0.0706 +0 0.3052 +0 0.4817 +0 0.2153 +0 0.5009 +0 0.2882 +0 0.1788 +0 0.0895 +0 0.0997 +0 0.2465 +0 0.1110 +0 0.2526 +0 0.1025 +0 0.1640 +0 0.0974 +0 0.1315 +0 0.1479 +0 0.1967 +0 0.0640 +0 0.1474 +0 0.3418 +0 0.1389 +0 0.0834 +0 0.1132 +1 0.8391 +0 0.2351 +0 0.5487 +0 0.2260 +0 0.0872 +0 0.1679 +0 0.0857 +0 0.0928 +0 0.0554 +0 0.2227 +0 0.1214 +0 0.0552 +0 0.1548 +0 0.1186 +0 0.0738 +0 0.0836 +0 0.1984 +0 0.0976 +0 0.1879 +0 0.2353 +0 0.2968 +1 0.7775 +0 0.2067 +0 0.1000 +0 0.1103 +0 0.0449 +0 0.1540 +0 0.0445 +0 0.1079 +0 0.0682 +0 0.4079 +1 0.2598 +0 0.1274 +0 0.0692 +0 0.1375 +0 0.0710 +0 0.1200 +0 0.1111 +0 0.1082 +0 0.1570 +0 0.1241 +0 0.2573 +0 0.0673 +0 0.2649 +0 0.1112 +0 0.0817 +0 0.1551 +0 0.0691 +0 0.0869 +0 0.4043 +0 0.2874 +0 0.0724 +0 0.1932 +0 0.0450 +0 0.1519 +0 0.1791 +0 0.0657 +0 0.0889 +0 0.0547 +0 0.1232 +0 0.0731 +0 0.0778 +0 0.0359 +0 0.1931 +0 0.1504 +1 0.8628 +0 0.1007 +0 0.0487 +0 0.0644 +0 0.1946 +0 0.0714 +0 0.1491 +1 0.8695 +0 0.0690 +0 0.0747 +0 0.1139 +0 0.4194 +0 0.0799 +0 0.1283 +0 0.2742 +0 0.1240 +0 0.1056 +0 0.1594 +0 0.2503 +0 0.0969 +0 0.0618 +0 0.0805 +0 0.1700 +0 0.0515 +0 0.1409 +0 0.0398 +0 0.1883 +0 0.1336 +0 0.1692 +0 0.2180 +0 0.1836 +0 0.0994 +0 0.1292 +0 0.0833 +1 0.8275 +0 0.3190 +0 0.4290 +0 0.1694 +0 0.1223 +0 0.3542 +0 0.1322 +0 0.1244 +0 0.7062 +0 0.1148 +0 0.0738 +0 0.0543 +0 0.1732 +0 0.1226 +0 0.2204 +0 0.0703 +0 0.0848 +0 0.1415 +0 0.1960 +0 0.0808 +0 0.0827 +0 0.1687 +0 0.2190 +0 0.0582 +0 0.0783 +0 0.6710 +0 0.0839 +0 0.1589 +0 0.1506 +0 0.1788 +0 0.0896 +0 0.1030 +0 0.0654 +0 0.2450 +0 0.0550 +0 0.0586 +0 0.1169 +0 0.0383 +0 0.1286 +0 0.0888 +0 0.0604 +0 0.0723 +0 0.0532 +0 0.6859 +0 0.1760 +0 0.1085 +1 0.8687 +0 0.1427 +0 0.7327 +0 0.1881 +0 0.1070 +0 0.0691 +0 0.0888 +0 0.1012 +0 0.1711 +0 0.0773 +0 0.1600 +0 0.1732 +0 0.0682 +0 0.0506 +0 0.1257 +0 0.1485 +0 0.0760 +0 0.2001 +0 0.0977 +0 0.0521 +0 0.2787 +0 0.0668 +0 0.0638 +0 0.0668 +0 0.1403 +0 0.1685 +0 0.1048 +0 0.0510 +0 0.1004 +0 0.0677 +0 0.0504 +0 0.0811 +0 0.0852 +0 0.1261 +1 0.8002 +0 0.1184 +0 0.1126 +0 0.0354 +0 0.0651 +0 0.1251 +0 0.1892 +0 0.0947 +0 0.0556 +0 0.0644 +0 0.0371 +0 0.1851 +0 0.1175 +0 0.3136 +0 0.1723 +0 0.2267 +0 0.3765 +0 0.2536 +0 0.0586 +0 0.1107 +0 0.1388 +0 0.1087 +0 0.0554 +0 0.1191 +0 0.0473 +0 0.0599 +0 0.1950 +0 0.0531 +0 0.1631 +0 0.1393 +0 0.0405 +0 0.1445 +0 0.5308 +0 0.1173 +0 0.1061 +0 0.1602 +0 0.3771 +0 0.0923 +0 0.0965 +0 0.0959 +0 0.3869 +0 0.1486 +0 0.0954 +0 0.1051 +0 0.1920 +0 0.0765 +0 0.0897 +0 0.0943 +0 0.1209 +0 0.0575 +0 0.0779 +0 0.1414 +0 0.0612 +0 0.1029 +0 0.6204 +0 0.0798 +0 0.0802 +0 0.0871 +0 0.1037 +0 0.1080 +0 0.1037 +0 0.1008 +0 0.2559 +0 0.0861 +0 0.0930 +0 0.5378 +0 0.1145 +0 0.0639 +0 0.0790 +0 0.1158 +0 0.1325 +0 0.0791 +0 0.0801 +0 0.1863 +0 0.1039 +0 0.1077 +0 0.1700 +0 0.0768 +0 0.0307 +0 0.0663 +0 0.0766 +0 0.0397 +0 0.0922 +0 0.0717 +0 0.1633 +0 0.0903 +0 0.0606 +0 0.0767 +0 0.0956 +0 0.1097 +0 0.1790 +0 0.0531 +0 0.1336 +0 0.1463 +0 0.0615 +0 0.2173 +0 0.1421 +0 0.2107 +0 0.1353 +0 0.0621 +0 0.1789 +0 0.1117 +0 0.2236 +0 0.1269 +0 0.1038 +0 0.0780 +0 0.1941 +0 0.1696 +0 0.0764 +0 0.0857 +0 0.0618 +0 0.0569 +0 0.0533 +0 0.1209 +0 0.0618 +0 0.0448 +0 0.0610 +0 0.1356 +0 0.0835 +0 0.0651 +0 0.1457 +0 0.0994 +0 0.0488 +0 0.0807 +0 0.0424 +0 0.1030 +0 0.0590 +0 0.1930 +0 0.0385 +0 0.1099 +0 0.3388 +0 0.2034 +0 0.0882 +0 0.0800 +0 0.1216 +0 0.0648 +1 0.8483 +0 0.0450 +0 0.0532 +0 0.0625 +1 0.8353 +0 0.1130 +0 0.1076 +0 0.0546 +0 0.2213 +0 0.1474 +0 0.0922 +0 0.1904 +0 0.4702 +1 0.8263 +0 0.1590 +1 0.8039 +0 0.0551 +0 0.0813 +0 0.0811 +0 0.1820 +0 0.0547 +0 0.0563 +0 0.1066 +0 0.6825 +0 0.1810 +0 0.0938 +0 0.0973 +0 0.1202 +0 0.0349 +0 0.0600 +0 0.0937 +0 0.1046 +0 0.0904 +0 0.1288 +0 0.0534 +0 0.1286 +0 0.1113 +0 0.0753 +0 0.3677 +0 0.0541 +0 0.1792 +0 0.0446 +0 0.0949 +0 0.0812 +0 0.1492 +0 0.0443 +0 0.1818 +0 0.0880 +0 0.0769 +0 0.0875 +0 0.1911 +0 0.1177 +0 0.1109 +0 0.0403 +0 0.1323 +0 0.1852 +0 0.0537 +0 0.1076 +0 0.0660 +0 0.0705 +1 0.8168 +0 0.0748 +0 0.3091 +0 0.2749 +0 0.1010 +0 0.1401 +0 0.1510 +0 0.0583 +0 0.0535 +0 0.2201 +0 0.1812 +0 0.1352 +0 0.1249 +0 0.0853 +0 0.0728 +0 0.0745 +0 0.0350 +0 0.2207 +0 0.1151 +0 0.0532 +0 0.1367 +0 0.1002 +0 0.1019 +0 0.1068 +0 0.0425 +0 0.6246 +0 0.2095 +0 0.0539 +0 0.0637 +0 0.0680 +0 0.1497 +0 0.0453 +0 0.0888 +0 0.1339 +0 0.2209 +0 0.0367 +0 0.0974 +0 0.0649 +0 0.0843 +0 0.0507 +0 0.0711 +0 0.0933 +0 0.2827 +0 0.1584 +0 0.1279 +0 0.1049 +0 0.1762 +0 0.0941 +0 0.0842 +0 0.0680 +0 0.0908 +0 0.3191 +0 0.1496 +0 0.2263 +0 0.0872 +1 0.8219 +0 0.0436 +0 0.1907 +0 0.1409 +0 0.1051 +0 0.1038 +0 0.0473 +0 0.1217 +0 0.5862 +0 0.0681 +0 0.0961 +0 0.1830 +0 0.1526 +0 0.1108 +0 0.1246 +0 0.3072 +0 0.1011 +0 0.0830 +0 0.1426 +0 0.1640 +0 0.0536 +0 0.1238 +0 0.1696 +0 0.1158 +0 0.4132 +0 0.0558 +0 0.1594 +0 0.0804 +0 0.0646 +0 0.0863 +0 0.1507 +0 0.7271 +0 0.0519 +0 0.1119 +0 0.1845 +0 0.0656 +0 0.1224 +0 0.1457 +0 0.1459 +1 0.8882 +0 0.0913 +0 0.1676 +0 0.0659 +0 0.1834 +0 0.1723 +0 0.3630 +0 0.1132 +0 0.2369 +0 0.1322 +0 0.3065 +0 0.0429 +0 0.1539 +0 0.0555 +0 0.4211 +0 0.0382 +0 0.1016 +0 0.1269 +0 0.1145 +0 0.0948 +0 0.1082 +0 0.0529 +0 0.0535 +0 0.1471 +0 0.0890 +0 0.0699 +0 0.1785 +0 0.0479 +0 0.1658 +0 0.0757 +0 0.0636 +0 0.1178 +0 0.2699 +0 0.0778 +0 0.0598 +0 0.0424 +0 0.0448 +0 0.0979 +0 0.0546 +0 0.1050 +0 0.0726 +0 0.0734 +0 0.0597 +0 0.1373 +0 0.0743 +0 0.1952 +0 0.0417 +0 0.2314 +0 0.2635 +0 0.1001 +0 0.0823 +0 0.0648 +0 0.1300 +1 0.8298 +0 0.0677 +0 0.1215 +0 0.0744 +0 0.0487 +0 0.0829 +0 0.1815 +0 0.6377 +0 0.0538 +0 0.2175 +0 0.1711 +0 0.0545 +0 0.5779 +0 0.0844 +0 0.4088 +0 0.1519 +0 0.1358 +0 0.1631 +0 0.0968 +0 0.0829 +0 0.0496 +0 0.0910 +0 0.1226 +0 0.0988 +0 0.1026 +0 0.2340 +0 0.0794 +0 0.0514 +0 0.2472 +0 0.1002 +0 0.0752 +0 0.0916 +0 0.0698 +0 0.1035 +0 0.0794 +0 0.0758 +0 0.0528 +0 0.0831 +0 0.3460 +0 0.0457 +0 0.1099 +0 0.1541 +0 0.0575 +0 0.1463 +0 0.2572 +0 0.2210 +0 0.0323 +0 0.0872 +0 0.1150 +0 0.0906 +1 0.7857 +0 0.3710 +0 0.0870 +0 0.1085 +0 0.1041 +0 0.0934 +0 0.1564 +0 0.1192 +0 0.0932 +0 0.7228 +0 0.1391 +0 0.0468 +0 0.2380 +0 0.3389 +0 0.1383 +0 0.0674 +0 0.1634 +0 0.0979 +0 0.2415 +0 0.3390 +0 0.6255 +0 0.0649 +0 0.2542 +0 0.0523 +0 0.5718 +0 0.2692 +0 0.1832 +0 0.0848 +0 0.1182 +0 0.1170 +0 0.0619 +0 0.0615 +0 0.0486 +0 0.0959 +0 0.1096 +0 0.3368 +0 0.0458 +0 0.3485 +0 0.3326 +0 0.1513 +0 0.1737 +0 0.1440 +0 0.1599 +0 0.2958 +0 0.0768 +0 0.0424 +0 0.1271 +0 0.0650 +0 0.0792 +0 0.0929 +0 0.0842 +0 0.0503 +0 0.0970 +0 0.3985 +0 0.0777 +0 0.0833 +0 0.1206 +0 0.4166 +0 0.0353 +0 0.0793 +0 0.1802 +0 0.0902 +0 0.2578 +0 0.2239 +0 0.1750 +0 0.4422 +0 0.0858 +0 0.1742 +0 0.1884 +0 0.2091 +0 0.0641 +0 0.1348 +0 0.0985 +0 0.1201 +0 0.0532 +0 0.1665 +0 0.3486 +0 0.0687 +0 0.0845 +0 0.1211 +0 0.1993 +0 0.1062 +0 0.1127 +0 0.2586 +0 0.0455 +0 0.0612 +0 0.1208 +0 0.0629 +0 0.1397 +0 0.4164 +0 0.0745 +0 0.4431 +0 0.0710 +0 0.7017 +0 0.0603 +0 0.1184 +0 0.1709 +0 0.1317 +0 0.3228 +0 0.1301 +0 0.0567 +0 0.2959 +0 0.2046 +0 0.2009 +0 0.0802 +0 0.6564 +0 0.1659 +0 0.0705 +0 0.1031 +0 0.1166 +0 0.0817 +0 0.5732 +0 0.0696 +0 0.0456 +0 0.1752 +0 0.2215 +0 0.2119 +0 0.0708 +0 0.4009 +0 0.1134 +0 0.0488 +1 0.7902 +0 0.1096 +0 0.1661 +0 0.1775 +0 0.2036 +0 0.1111 +0 0.2202 +0 0.1874 +0 0.0640 +0 0.0374 +0 0.0817 +0 0.1691 +0 0.0754 +0 0.1503 +0 0.2508 +0 0.0746 +0 0.0458 +0 0.0986 +0 0.0994 +0 0.1259 +0 0.1532 +0 0.0697 +0 0.2091 +0 0.3944 +0 0.1025 +0 0.0900 +0 0.1603 +0 0.0537 +0 0.6920 +0 0.0781 +0 0.0411 +0 0.1449 +0 0.0972 +0 0.6591 +0 0.1223 +0 0.0926 +0 0.0729 +0 0.0428 +0 0.0456 +0 0.6959 +0 0.0695 +0 0.1596 +0 0.0471 +0 0.1195 +0 0.0685 +0 0.1558 +0 0.1154 +0 0.0575 +0 0.1375 +0 0.1160 +0 0.1482 +0 0.0946 +0 0.0861 +0 0.0827 +0 0.0833 +0 0.1590 +0 0.0452 +0 0.0468 +0 0.0601 +0 0.1224 +0 0.1525 +0 0.1016 +0 0.0832 +0 0.0970 +0 0.0648 +0 0.0941 +0 0.0649 +0 0.0886 +0 0.0831 +0 0.0636 +0 0.2732 +0 0.1081 +0 0.2661 +0 0.2492 +0 0.0303 +0 0.1845 +0 0.1422 +0 0.2557 +0 0.0739 +0 0.2895 +0 0.1192 +0 0.0363 +0 0.0947 +0 0.0748 +0 0.0901 +0 0.0564 +0 0.0655 +0 0.0496 +0 0.0955 +0 0.1128 +0 0.3411 +0 0.0785 +0 0.0945 +0 0.1202 +0 0.1487 +0 0.0642 +0 0.0801 +0 0.1217 +0 0.0796 +0 0.0488 +0 0.0522 +0 0.0994 +0 0.0520 +0 0.1651 +0 0.0747 +0 0.2161 +0 0.1197 +0 0.1865 +0 0.0844 +0 0.0846 +0 0.2836 +0 0.1205 +0 0.1731 +0 0.0380 +0 0.0789 +0 0.0453 +0 0.2093 +0 0.0495 +0 0.0715 +0 0.0796 +0 0.0566 +0 0.1583 +0 0.0986 +0 0.0630 +0 0.1403 +0 0.0680 +0 0.1009 +0 0.0593 +0 0.0804 +0 0.1833 +0 0.0591 +0 0.0358 +0 0.0982 +0 0.3177 +0 0.0708 +0 0.2173 +0 0.0894 +0 0.1187 +0 0.4390 +0 0.1066 +1 0.8526 +1 0.8195 +0 0.0610 +0 0.2830 +0 0.0803 +0 0.0606 +0 0.1814 +0 0.0601 +0 0.3507 +0 0.0731 +0 0.0789 +0 0.0936 +0 0.5902 +0 0.1201 +0 0.0947 +0 0.1608 +0 0.0921 +0 0.0678 +0 0.1322 +0 0.1022 +0 0.1367 +0 0.0798 +0 0.1170 +0 0.1064 +0 0.2507 +0 0.1079 +0 0.2833 +0 0.1288 +0 0.1947 +0 0.0537 +0 0.1904 +0 0.0480 +0 0.0463 +0 0.1118 +0 0.7250 +0 0.1409 +0 0.0563 +0 0.0510 +0 0.1741 +0 0.1443 +0 0.2065 +0 0.0632 +0 0.1154 +0 0.0458 +0 0.0896 +0 0.1189 +0 0.0927 +0 0.0593 +0 0.1376 +0 0.1812 +0 0.0614 +0 0.2168 +0 0.2169 +0 0.0692 +0 0.0922 +0 0.0735 +0 0.0945 +0 0.1069 +0 0.0552 +0 0.0752 +0 0.0543 +0 0.1656 +0 0.1048 +0 0.0823 +0 0.1330 +0 0.1089 +0 0.4510 +0 0.5522 +0 0.2605 +0 0.1311 +0 0.0941 +0 0.1039 +0 0.1526 +0 0.0825 +0 0.0565 +0 0.0707 +0 0.1311 +0 0.0801 +0 0.1545 +0 0.1848 +0 0.0766 +0 0.0855 +0 0.0669 +0 0.0486 +0 0.1624 +0 0.1108 +0 0.0478 +0 0.0685 +0 0.0652 +0 0.2711 +0 0.3502 +0 0.3500 +0 0.0609 +0 0.0582 +0 0.5162 +0 0.2408 +0 0.0718 +0 0.0626 +0 0.0632 +0 0.0367 +0 0.0715 +0 0.2469 +0 0.0524 +0 0.1404 +0 0.0568 +0 0.1038 +0 0.1949 +0 0.1037 +0 0.0962 +0 0.2166 +0 0.3601 +0 0.0597 +0 0.0634 +0 0.2155 +0 0.1201 +0 0.1661 +0 0.0740 +0 0.0832 +0 0.1034 +0 0.1825 +0 0.0720 +0 0.1364 +0 0.0598 +0 0.2259 +0 0.0769 +0 0.4344 +0 0.1068 +0 0.0471 +0 0.1805 +0 0.3598 +0 0.2083 +0 0.2100 +0 0.1553 +0 0.0685 +0 0.1167 +0 0.1016 +0 0.0487 +0 0.6242 +0 0.0475 +0 0.3582 +0 0.1764 +0 0.1250 +0 0.0643 +0 0.0989 +0 0.1702 +0 0.1125 +0 0.1156 +0 0.0602 +0 0.0974 +0 0.0733 +0 0.0622 +0 0.1965 +0 0.0712 +0 0.1315 +0 0.0371 +0 0.1361 +0 0.0458 +0 0.0763 +0 0.1206 +0 0.1222 +0 0.0849 +0 0.0622 +0 0.1107 +0 0.0429 +0 0.1823 +0 0.1040 +0 0.0541 +0 0.0968 +0 0.4547 +0 0.4431 +0 0.0963 +0 0.0538 +0 0.1442 +0 0.0400 +0 0.0745 +0 0.0544 +0 0.0778 +0 0.2138 +0 0.1234 +0 0.2105 +0 0.0855 +0 0.1284 +0 0.1479 +0 0.0673 +0 0.0896 +0 0.0880 +0 0.1360 +0 0.3012 +0 0.0998 +0 0.1201 +0 0.0942 +0 0.1222 +0 0.0369 +0 0.0968 +0 0.0661 +0 0.2873 +0 0.3778 +0 0.1650 +0 0.1240 +0 0.1994 +0 0.0605 +0 0.0501 +0 0.0625 +0 0.0478 +0 0.1687 +0 0.0918 +0 0.0646 +0 0.0979 +0 0.1284 +0 0.3225 +0 0.0765 +0 0.1305 +0 0.0641 +0 0.0518 +0 0.1387 +0 0.0753 +0 0.0498 +0 0.1102 +0 0.0398 +0 0.1175 +0 0.0765 +0 0.0902 +0 0.2696 +0 0.1796 +0 0.0490 +0 0.0955 +0 0.0842 +0 0.1198 +0 0.1781 +0 0.2093 +0 0.0770 +0 0.0862 +0 0.1142 +0 0.2777 +0 0.3562 +0 0.0748 +0 0.0503 +0 0.0990 +0 0.0834 +0 0.2163 +0 0.0466 +0 0.0791 +0 0.0923 +0 0.1667 +0 0.1354 +0 0.1684 +0 0.2661 +0 0.1295 +0 0.2752 +0 0.1142 +0 0.1114 +0 0.1664 +0 0.1300 +0 0.1436 +0 0.7044 +0 0.1017 +0 0.0938 +0 0.1246 +0 0.0847 +0 0.0810 +0 0.1921 +0 0.2583 +0 0.1633 +0 0.6358 +0 0.1305 +0 0.0829 +0 0.1296 +0 0.1249 +0 0.0924 +0 0.0555 +0 0.1090 +0 0.0642 +0 0.0835 +0 0.0931 +0 0.2047 +0 0.0989 +0 0.2186 +0 0.1189 +0 0.0981 +0 0.0876 +0 0.1231 +0 0.1554 +0 0.0419 +0 0.0492 +0 0.2950 +0 0.2163 +0 0.1094 +0 0.1756 +0 0.0719 +0 0.0921 +0 0.0441 +0 0.0995 +0 0.1423 +0 0.4745 +0 0.1481 +0 0.0652 +0 0.2029 +0 0.0658 +0 0.0983 +0 0.1093 +0 0.1252 +0 0.0739 +0 0.1265 +0 0.0524 +0 0.1919 +0 0.0896 +0 0.2655 +0 0.1638 +0 0.2488 +0 0.3097 +0 0.3013 +0 0.0553 +0 0.2765 +0 0.0708 +0 0.0822 +0 0.0803 +0 0.2052 +0 0.3976 +0 0.1089 +0 0.1946 +1 0.8852 +0 0.0864 +0 0.0697 +0 0.1591 +0 0.0632 +0 0.1929 +0 0.1242 +0 0.1482 +0 0.1091 +0 0.0424 +0 0.0592 +0 0.1270 +0 0.5342 +0 0.1287 +0 0.0971 +0 0.0881 +0 0.0728 +0 0.1153 +0 0.1565 +0 0.4361 +0 0.1208 +0 0.1006 +0 0.0833 +0 0.0858 +0 0.1041 +0 0.0689 +0 0.0651 +0 0.1646 +0 0.1620 +0 0.0723 +0 0.1922 +0 0.0829 +0 0.0698 +0 0.0598 +0 0.1594 +0 0.1296 +1 0.7691 +0 0.0751 +0 0.0371 +0 0.0759 +0 0.1044 +0 0.0493 +0 0.0649 +0 0.1185 +0 0.1635 +0 0.0563 +0 0.1185 +0 0.2031 +0 0.0742 +0 0.1111 +0 0.0429 +0 0.2088 +0 0.1806 +0 0.1077 +0 0.0564 +0 0.1659 +0 0.1286 +0 0.1720 +0 0.1126 +0 0.1177 +0 0.1324 +0 0.1451 +0 0.0958 +0 0.5014 +0 0.0573 +0 0.1733 +0 0.0538 +0 0.3079 +0 0.1106 +0 0.0769 +0 0.1708 +0 0.1113 +0 0.0638 +0 0.1567 +0 0.1275 +0 0.1451 +0 0.3109 +0 0.0604 +0 0.0783 +0 0.2438 +0 0.2113 +0 0.1806 +0 0.0635 +0 0.1731 +0 0.4212 +0 0.2001 +0 0.0674 +0 0.0784 +0 0.3120 +0 0.1054 +0 0.1829 +0 0.0754 +0 0.0938 +0 0.0896 +0 0.0808 +0 0.0649 +0 0.0693 +0 0.3512 +0 0.0574 +0 0.0524 +0 0.1757 +0 0.0872 +0 0.1770 +0 0.0660 +0 0.0953 +0 0.0596 +0 0.2842 +0 0.1666 +0 0.0840 +0 0.0745 +0 0.1528 +0 0.1193 +0 0.1122 +0 0.2857 +0 0.1980 +0 0.0887 +0 0.0749 +0 0.0506 +0 0.0714 +0 0.2124 +0 0.2428 +0 0.1196 +0 0.1378 +0 0.1906 +0 0.2681 +0 0.0749 +0 0.0896 +0 0.1338 +0 0.0375 +0 0.0409 +0 0.0796 +0 0.1565 +0 0.0549 +0 0.2508 +0 0.0632 +0 0.0701 +0 0.0661 +0 0.1196 +0 0.1175 +0 0.0533 +0 0.7177 +0 0.1346 +0 0.0998 +0 0.0773 +0 0.1495 +0 0.1161 +0 0.0831 +0 0.1053 +0 0.0715 +0 0.1294 +0 0.1136 +0 0.0610 +0 0.0856 +0 0.0489 +0 0.0883 +0 0.0535 +0 0.0459 +0 0.0795 +0 0.0846 +0 0.2325 +0 0.1921 +0 0.2430 +0 0.1216 +0 0.1595 +0 0.1808 +0 0.0720 +0 0.0578 +0 0.1833 +0 0.0816 +0 0.0581 +0 0.1722 +0 0.1066 +0 0.0764 +0 0.0758 +0 0.1249 +0 0.2057 +0 0.0938 +0 0.1495 +0 0.0646 +0 0.0794 +0 0.0944 +0 0.2497 +0 0.0608 +0 0.1069 +0 0.1110 +0 0.1894 +0 0.1409 +0 0.0530 +0 0.1332 +0 0.0637 +0 0.1202 +0 0.0992 +0 0.1561 +0 0.0575 +0 0.0551 +0 0.0685 +0 0.1444 +0 0.0711 +0 0.0921 +0 0.0764 +0 0.0520 +0 0.1187 +0 0.2311 +0 0.1038 +0 0.1081 +0 0.0822 +0 0.2646 +0 0.0823 +0 0.0451 +0 0.1340 +0 0.0352 +0 0.3282 +0 0.2034 +0 0.7179 +0 0.0785 +0 0.3398 +0 0.0449 +0 0.1087 +0 0.0911 +0 0.0901 +0 0.1553 +0 0.4699 +0 0.2365 +0 0.5587 +0 0.0710 +0 0.0674 +0 0.2348 +0 0.0691 +0 0.0581 +0 0.0576 +0 0.1185 +0 0.3399 +0 0.1391 +0 0.2474 +0 0.0401 +0 0.2734 +0 0.0735 +0 0.0860 +0 0.0494 +0 0.1051 +0 0.0748 +0 0.1484 +0 0.2189 +0 0.1599 +0 0.0740 +0 0.1797 +0 0.1070 +0 0.0981 +0 0.0445 +0 0.6732 +0 0.0583 +0 0.0663 +0 0.0538 +0 0.1416 +0 0.1447 +0 0.1436 +0 0.0806 +0 0.1612 +0 0.0359 +0 0.0622 +1 0.7993 +0 0.7125 +0 0.0617 +0 0.2063 +0 0.0706 +1 0.8536 +0 0.0782 +0 0.1196 +0 0.0946 +0 0.3711 +0 0.1193 +0 0.0666 +0 0.0443 +0 0.1228 +0 0.0426 +0 0.0968 +0 0.0660 +0 0.1525 +0 0.0854 +0 0.0843 +0 0.1690 +0 0.7178 +0 0.1101 +0 0.0675 +0 0.1768 +0 0.0803 +0 0.0744 +0 0.0495 +0 0.1490 +0 0.0548 +0 0.1763 +0 0.1186 +0 0.0789 +0 0.2660 +0 0.0377 +0 0.0723 +0 0.1170 +0 0.0610 +0 0.2436 +0 0.2816 +0 0.2730 +0 0.1732 +0 0.0349 +0 0.0340 +0 0.1614 +0 0.1014 +0 0.1362 +0 0.5422 +0 0.1890 +0 0.0562 +0 0.1917 +0 0.0788 +0 0.2318 +0 0.1759 +0 0.0551 +0 0.0751 +0 0.0943 +0 0.1106 +0 0.2041 +0 0.1390 +0 0.1843 +0 0.2000 +0 0.1369 +0 0.2073 +0 0.0641 +0 0.0657 +0 0.1182 +0 0.1418 +0 0.0550 +0 0.7189 +0 0.3466 +0 0.1009 +0 0.1335 +0 0.0915 +0 0.2523 +0 0.2671 +0 0.0524 +0 0.0635 +0 0.3574 +0 0.0418 +0 0.1276 +0 0.1057 +0 0.0767 +0 0.0890 +0 0.2412 +0 0.0689 +0 0.0728 +0 0.0396 +0 0.1203 +0 0.0892 +0 0.1575 +0 0.0409 +0 0.0678 +0 0.1006 +0 0.6269 +0 0.2072 +0 0.1108 +0 0.0866 +0 0.1445 +0 0.2268 +0 0.1421 +0 0.3733 +1 0.7600 +0 0.0920 +0 0.1673 +0 0.1060 +0 0.1437 +0 0.1620 +0 0.0498 +0 0.2664 +0 0.1071 +0 0.0847 +0 0.0804 +0 0.1804 +0 0.0840 +0 0.2518 +0 0.2310 +0 0.1243 +0 0.1077 +0 0.1491 +0 0.0548 +0 0.0556 +0 0.0502 +0 0.1056 +0 0.0852 +0 0.1307 +0 0.0764 +0 0.1944 +0 0.0747 +0 0.1231 +0 0.2937 +0 0.0752 +0 0.2257 +0 0.2159 +0 0.3120 +0 0.1627 +0 0.1171 +0 0.0687 +0 0.1201 +0 0.1073 +0 0.0539 +0 0.1467 +0 0.0748 +0 0.1527 +0 0.1488 +0 0.0846 +0 0.0959 +0 0.0690 +0 0.0878 +0 0.0795 +0 0.2130 +0 0.2419 +1 0.7683 +0 0.0579 +0 0.1745 +0 0.0369 +0 0.0780 +0 0.3018 +0 0.0951 +0 0.0693 +0 0.0702 +0 0.0972 +0 0.0874 +0 0.1336 +0 0.1095 +0 0.0983 +0 0.0834 +0 0.1222 +0 0.0629 +0 0.5877 +0 0.0694 +0 0.2865 +0 0.1253 +0 0.4273 +0 0.1438 +0 0.0809 +0 0.3268 +0 0.2476 +0 0.1156 +0 0.2077 +0 0.1715 +0 0.1675 +0 0.1252 +0 0.0716 +0 0.1668 +0 0.1650 +1 0.8691 +0 0.0693 +0 0.2363 +0 0.0961 +0 0.6443 +0 0.2189 +0 0.1104 +0 0.0605 +0 0.0558 +0 0.1724 +1 0.8446 +1 0.7888 +0 0.0714 +0 0.3160 +0 0.1240 +0 0.1107 +0 0.4422 +0 0.0634 +0 0.0517 +0 0.0957 +0 0.1788 +0 0.0895 +0 0.0958 +0 0.0693 +0 0.0762 +0 0.2765 +0 0.0903 +0 0.0636 +0 0.1204 +0 0.2120 +0 0.3236 +0 0.2150 +0 0.2427 +0 0.2075 +0 0.0868 +0 0.0338 +0 0.1549 +0 0.1245 +0 0.1258 +0 0.0465 +0 0.1005 +0 0.0732 +0 0.1912 +0 0.0772 +0 0.0787 +0 0.6688 +0 0.4281 +1 0.7865 +0 0.1237 +0 0.1072 +0 0.0950 +0 0.1756 +0 0.1162 +0 0.0768 +0 0.0969 +0 0.0556 +0 0.0913 +0 0.3024 +0 0.1915 +0 0.1540 +0 0.0378 +0 0.0630 +0 0.1392 +0 0.0660 +0 0.0743 +0 0.0856 +0 0.1340 +0 0.0408 +0 0.0762 +0 0.1999 +0 0.1322 +0 0.0674 +0 0.0442 +0 0.2442 +0 0.1104 +0 0.0884 +0 0.1464 +0 0.2400 +0 0.4998 +0 0.0557 +0 0.1825 +0 0.6697 +0 0.1863 +0 0.1679 +0 0.0527 +0 0.0598 +0 0.0407 +0 0.5844 +0 0.0712 +0 0.0698 +0 0.3035 +0 0.0603 +0 0.0454 +0 0.0735 +0 0.0502 +0 0.0831 +0 0.1679 +0 0.3781 +0 0.1194 +0 0.2784 +0 0.0643 +0 0.1576 +0 0.1159 +0 0.1433 +0 0.6411 +0 0.0895 +0 0.0889 +0 0.3809 +0 0.0554 +0 0.2120 +0 0.0781 +0 0.4744 +0 0.2584 +0 0.1454 +0 0.1194 +0 0.2119 +0 0.0636 +0 0.1893 +0 0.2494 +0 0.5686 +0 0.1193 +0 0.0731 +0 0.1725 +0 0.1713 +0 0.0469 +0 0.0634 +0 0.0567 +0 0.0864 +0 0.0971 +0 0.0636 +0 0.1265 +0 0.0559 +0 0.0366 +0 0.0637 +0 0.2795 +0 0.1293 +0 0.0762 +0 0.1732 +0 0.0556 +0 0.1088 +0 0.0393 +0 0.1043 +0 0.1278 +0 0.0659 +0 0.1179 +0 0.0833 +0 0.0925 +0 0.1927 +0 0.0899 +0 0.1699 +0 0.0659 +0 0.1474 +0 0.0692 +0 0.0953 +0 0.0573 +0 0.2046 +0 0.0944 +0 0.1336 +0 0.1041 +0 0.0611 +0 0.1759 +0 0.1617 +0 0.0433 +0 0.1476 +0 0.1133 +0 0.2194 +0 0.0916 +0 0.2935 +0 0.3351 +0 0.1013 +0 0.7063 +0 0.0523 +0 0.2557 +0 0.0375 +0 0.0630 +0 0.0803 +0 0.1021 +0 0.1257 +0 0.0797 +0 0.3504 +0 0.1145 +0 0.1971 +0 0.0762 +0 0.1144 +0 0.0966 +0 0.3280 +0 0.0959 +0 0.0696 +0 0.4143 +0 0.1918 +0 0.0808 +0 0.1391 +0 0.0816 +0 0.0712 +0 0.0611 +0 0.0610 +0 0.2235 +0 0.1365 +0 0.1175 +0 0.1275 +0 0.1431 +0 0.0619 +0 0.0981 +0 0.0588 +0 0.0567 +0 0.0971 +0 0.6109 +0 0.0666 +0 0.1341 +0 0.0645 +0 0.0535 +0 0.0600 +0 0.2128 +0 0.0377 +0 0.0656 +0 0.4959 +0 0.1538 +0 0.0770 +0 0.0847 +0 0.0827 +0 0.1852 +0 0.2333 +0 0.0480 +0 0.1685 +0 0.2684 +0 0.0825 +0 0.0994 +0 0.2762 +0 0.1196 +0 0.0834 +0 0.0959 +0 0.1034 +0 0.7183 +1 0.8416 +0 0.0906 +0 0.1418 +0 0.1034 +0 0.0568 +0 0.1286 +0 0.0782 +0 0.1176 +0 0.2212 +0 0.2560 +0 0.1432 +0 0.3061 +0 0.0723 +0 0.0654 +0 0.0790 +0 0.0646 +0 0.0990 +0 0.1540 +0 0.1275 +0 0.0671 +0 0.0893 +0 0.4174 +0 0.0709 +0 0.3247 +0 0.0608 +0 0.0887 +0 0.1406 +0 0.0773 +0 0.0970 +0 0.1145 +0 0.0700 +0 0.0500 +0 0.0335 +0 0.1168 +0 0.1231 +0 0.0817 +0 0.7133 +0 0.2518 +0 0.0475 +0 0.1039 +0 0.7374 +0 0.1496 +0 0.2122 +0 0.1487 +0 0.2811 +1 0.7710 +0 0.1309 +0 0.0486 +0 0.0819 +0 0.1060 +0 0.1175 +0 0.0443 +0 0.0771 +0 0.0698 +0 0.2766 +0 0.3426 +0 0.0721 +0 0.1572 +0 0.0440 +0 0.0817 +0 0.2799 +0 0.2810 +0 0.0653 +0 0.1218 +0 0.3691 +0 0.3442 +0 0.1508 +0 0.2392 +0 0.1656 +0 0.0667 +0 0.1833 +0 0.0765 +0 0.0636 +0 0.0790 +0 0.4579 +0 0.0966 +0 0.0711 +0 0.1159 +0 0.0569 +0 0.0744 +0 0.2981 +0 0.0587 +0 0.0599 +0 0.1175 +0 0.0581 +0 0.0633 +0 0.0929 +0 0.2376 +0 0.0415 +0 0.1041 +0 0.1278 +0 0.1012 +0 0.2452 +0 0.0499 +0 0.1631 +0 0.1104 +0 0.0435 +0 0.2385 +0 0.2121 +0 0.1297 +0 0.2790 +0 0.0815 +0 0.1563 +0 0.1539 +0 0.1640 +0 0.0520 +0 0.0782 +0 0.0718 +0 0.0571 +0 0.1084 +0 0.0613 +0 0.0433 +0 0.1054 +0 0.1834 +0 0.1373 +0 0.1091 +0 0.5221 +0 0.1124 +0 0.1346 +0 0.0810 +0 0.1027 +0 0.0352 +0 0.4133 +0 0.0422 +0 0.0826 +0 0.2623 +0 0.0840 +1 0.8139 +0 0.5134 +0 0.0928 +0 0.0653 +0 0.2938 +0 0.3417 +0 0.0771 +0 0.1695 +0 0.2544 +0 0.0736 +0 0.1074 +0 0.0708 +0 0.0859 +0 0.1287 +0 0.1888 +0 0.0671 +0 0.0751 +0 0.1009 +0 0.1058 +0 0.1166 +0 0.1196 +0 0.0524 +0 0.0867 +0 0.2589 +0 0.1467 +0 0.1018 +0 0.0417 +0 0.2052 +0 0.0452 +0 0.1567 +0 0.0801 +0 0.1995 +0 0.0752 +0 0.4119 +0 0.0877 +0 0.0520 +0 0.0765 +0 0.1291 +0 0.1953 +0 0.1780 +0 0.3306 +0 0.0731 +0 0.0434 +0 0.0968 +0 0.0951 +0 0.1208 +0 0.0694 +0 0.1111 +0 0.1273 +0 0.3099 +0 0.4845 +0 0.0910 +0 0.3949 +0 0.1382 +0 0.7150 +0 0.5768 +0 0.0765 +0 0.0843 +0 0.3391 +0 0.0994 +0 0.1518 +0 0.3501 +0 0.0884 +0 0.1515 +0 0.1028 +0 0.1245 +0 0.1305 +0 0.0829 +0 0.0954 +0 0.0823 +0 0.0941 +1 0.8659 +0 0.3862 +0 0.0960 +0 0.0684 +0 0.0640 +0 0.0719 +0 0.5969 +0 0.1001 +0 0.5569 +0 0.0604 +0 0.0333 +0 0.0808 +0 0.2156 +0 0.2978 +0 0.0525 +0 0.0518 +0 0.1277 +0 0.0687 +0 0.0470 +0 0.2614 +0 0.0612 +0 0.0363 +0 0.1533 +0 0.0362 +0 0.1360 +0 0.2777 +0 0.0551 +0 0.2032 +0 0.0837 +0 0.6749 +0 0.2686 +0 0.2724 +0 0.1188 +0 0.1067 +0 0.1140 +0 0.0538 +0 0.0698 +0 0.0786 +0 0.0742 +0 0.0699 +0 0.0990 +0 0.0659 +0 0.0869 +1 0.7765 +0 0.1084 +0 0.1164 +0 0.0686 +0 0.0873 +0 0.0585 +0 0.1888 +0 0.2686 +0 0.0729 +0 0.0851 +0 0.0554 +0 0.1211 +0 0.2534 +0 0.1516 +0 0.0614 +0 0.1476 +0 0.0811 +0 0.0972 +0 0.1368 +0 0.1684 +0 0.0916 +0 0.0443 +0 0.1024 +0 0.1377 +0 0.0561 +0 0.1361 +0 0.0560 +0 0.4135 +0 0.7409 +0 0.0700 +0 0.0518 +0 0.0748 +0 0.1108 +0 0.0466 +0 0.0529 +0 0.0541 +0 0.6719 +0 0.0542 +0 0.3200 +0 0.1851 +0 0.1343 +0 0.1958 +0 0.0316 +0 0.0682 +0 0.1074 +0 0.0668 +0 0.1134 +0 0.1446 +0 0.1687 +0 0.0491 +0 0.3488 +0 0.3591 +0 0.1711 +0 0.1847 +0 0.1315 +0 0.0686 +0 0.0934 +0 0.3028 +0 0.1669 +0 0.0608 +0 0.1153 +0 0.1178 +0 0.2405 +0 0.0649 +0 0.0816 +0 0.1683 +0 0.0443 +0 0.1188 +0 0.0391 +0 0.1446 +0 0.0744 +0 0.1564 +0 0.0949 +0 0.2233 +0 0.1061 +0 0.1075 +0 0.1437 +0 0.2449 +0 0.0621 +0 0.1420 +0 0.2948 +0 0.0497 +0 0.0711 +0 0.0568 +0 0.1326 +0 0.0537 +0 0.1020 +0 0.1182 +0 0.2899 +0 0.1165 +1 0.7957 +0 0.4605 +0 0.0965 +0 0.1239 +0 0.0923 +0 0.1203 +0 0.1871 +0 0.1517 +0 0.1362 +0 0.0907 +0 0.4541 +0 0.1977 +0 0.0945 +0 0.0804 +0 0.1223 +0 0.1177 +0 0.2252 +0 0.1312 +0 0.0795 +0 0.0316 +0 0.2421 +0 0.0708 +0 0.1546 +0 0.0640 +0 0.1028 +0 0.1947 +0 0.1815 +0 0.1278 +0 0.1018 +0 0.0651 +0 0.1187 +0 0.0376 +0 0.0956 +0 0.1666 +0 0.1200 +0 0.2854 +0 0.0962 +0 0.4010 +0 0.1845 +0 0.0855 +0 0.1085 +0 0.0790 +1 0.8483 +0 0.1629 +0 0.0998 +0 0.0694 +0 0.1485 +0 0.1962 +0 0.3139 +0 0.0792 +0 0.1306 +0 0.1301 +0 0.2293 +0 0.1824 +0 0.2323 +0 0.0745 +0 0.1893 +0 0.0695 +0 0.0880 +0 0.3319 +0 0.1221 +0 0.1440 +0 0.1559 +0 0.0941 +0 0.1053 +0 0.2377 +0 0.2240 +0 0.0724 +0 0.0985 +0 0.1745 +0 0.1023 +0 0.0652 +0 0.1082 +1 0.7984 +0 0.0617 +0 0.0783 +0 0.1281 +0 0.0941 +0 0.1755 +0 0.0493 +0 0.0315 +0 0.0945 +0 0.2739 +0 0.0635 +0 0.1403 +0 0.0904 +0 0.1157 +0 0.0364 +0 0.0394 +0 0.1216 +0 0.1396 +0 0.1304 +0 0.0619 +0 0.0755 +1 0.8371 +0 0.1345 +0 0.2134 +0 0.0476 +0 0.1190 +0 0.2184 +0 0.1032 +0 0.1931 +0 0.1153 +0 0.0392 +0 0.1574 +0 0.5043 +0 0.0954 +0 0.0555 +0 0.3059 +0 0.0919 +0 0.3373 +0 0.0664 +0 0.0620 +0 0.1236 +0 0.0620 +0 0.0997 +0 0.1272 +0 0.0893 +0 0.0338 +1 0.8770 +0 0.0975 +0 0.1434 +0 0.1127 +0 0.0884 +0 0.0768 +0 0.0888 +0 0.2798 +0 0.1860 +0 0.0971 +0 0.0913 +0 0.0653 +0 0.1199 +0 0.1403 +0 0.1045 +0 0.0798 +0 0.1974 +0 0.1210 +0 0.1023 +0 0.1401 +0 0.0570 +0 0.1057 +0 0.1645 +0 0.0505 +0 0.1527 +0 0.2022 +0 0.0539 +0 0.0829 +0 0.1052 +0 0.1115 +0 0.1104 +0 0.0714 +0 0.1720 +0 0.0999 +0 0.0906 +0 0.1375 +0 0.4115 +0 0.0667 +0 0.2265 +0 0.0787 +0 0.1003 +0 0.1783 +0 0.1235 +0 0.1741 +0 0.1738 +0 0.1804 +0 0.0691 +0 0.0458 +0 0.1083 +0 0.5271 +0 0.1542 +0 0.4530 +0 0.1887 +0 0.0520 +0 0.2479 +0 0.1171 +0 0.1659 +0 0.0749 +0 0.1474 +0 0.1383 +0 0.0901 +0 0.0620 +0 0.3580 +0 0.1565 +0 0.0522 +1 0.7879 +0 0.1428 +0 0.1158 +0 0.6559 +0 0.0613 +0 0.0552 +0 0.2080 +0 0.1349 +0 0.1567 +0 0.2762 +0 0.1329 +0 0.0902 +0 0.1074 +0 0.6299 +0 0.1303 +0 0.0823 +0 0.0941 +0 0.1067 +0 0.1018 +0 0.0962 +0 0.1442 +0 0.3355 +0 0.1109 +0 0.2403 +0 0.1278 +0 0.1467 +0 0.0758 +0 0.0998 +0 0.0493 +0 0.1667 +0 0.0656 +0 0.0913 +0 0.2195 +0 0.0374 +0 0.0763 +0 0.2183 +0 0.0393 +0 0.1386 +0 0.3037 +0 0.2592 +0 0.1025 +0 0.1029 +0 0.0601 +0 0.0548 +0 0.0576 +0 0.0492 +0 0.1624 +0 0.0487 +0 0.0778 +0 0.1230 +0 0.0852 +0 0.1868 +0 0.1070 +0 0.0915 +0 0.0509 +0 0.3268 +0 0.2021 +0 0.1249 +0 0.1052 +0 0.0932 +0 0.0605 +0 0.1212 +0 0.0442 +0 0.1922 +0 0.0755 +0 0.1000 +0 0.1263 +0 0.1062 +1 0.7733 +0 0.0497 +0 0.0781 +0 0.0606 +0 0.0416 +0 0.0504 +0 0.0490 +0 0.2320 +0 0.0496 +0 0.0866 +0 0.2293 +0 0.0763 +0 0.0443 +0 0.0882 +0 0.1210 +0 0.0690 +0 0.6880 +0 0.1588 +0 0.1669 +0 0.0774 +0 0.0895 +0 0.1958 +0 0.0485 +0 0.1578 +0 0.1690 +0 0.0862 +0 0.0769 +0 0.1874 +0 0.0794 +0 0.1354 +0 0.1240 +0 0.1074 +0 0.1872 +0 0.0322 +0 0.0634 +0 0.2426 +0 0.1962 +0 0.1648 +0 0.2813 +0 0.0946 +0 0.4861 +0 0.1838 +0 0.3516 +0 0.0917 +0 0.1474 +0 0.0657 +0 0.3028 +0 0.2076 +0 0.0896 +0 0.1912 +0 0.0805 +0 0.0823 +0 0.2053 +0 0.1750 +0 0.2209 +0 0.0493 +0 0.0756 +0 0.1573 +0 0.1162 +0 0.0629 +0 0.0673 +0 0.1179 +0 0.2578 +0 0.0670 +0 0.1494 +0 0.0889 +0 0.1009 +0 0.1052 +0 0.0649 +0 0.0520 +0 0.1255 +0 0.1402 +0 0.0963 +0 0.1224 +0 0.0958 +0 0.0633 +0 0.0839 +0 0.4598 +0 0.1291 +0 0.0630 +0 0.1018 +0 0.1899 +0 0.1192 +0 0.0657 +0 0.0936 +0 0.1007 +0 0.1313 +0 0.1007 +0 0.1629 +0 0.0904 +0 0.0921 +0 0.1466 +0 0.0426 +0 0.0429 +0 0.3171 +0 0.3048 +0 0.1097 +0 0.0557 +0 0.1252 +0 0.1652 +0 0.1314 +0 0.2660 +0 0.0805 +0 0.0470 +0 0.1094 +0 0.3677 +0 0.0722 +0 0.7116 +0 0.0741 +0 0.1033 +0 0.1905 +0 0.0342 +0 0.0633 +0 0.1326 +0 0.5636 +0 0.1379 +0 0.0610 +0 0.6356 +0 0.0465 +0 0.0323 +0 0.1294 +0 0.3487 +0 0.1287 +0 0.0595 +0 0.0869 +0 0.1373 +0 0.0770 +0 0.1585 +0 0.4835 +0 0.3192 +0 0.1075 +0 0.1016 +0 0.2334 +0 0.0730 +0 0.0497 +0 0.0441 +0 0.3314 +1 0.8762 +0 0.1864 +0 0.0567 +0 0.3756 +0 0.0735 +0 0.2343 +0 0.0902 +0 0.2830 +0 0.2619 +0 0.1551 +0 0.0901 +0 0.0620 +0 0.2372 +0 0.0520 +0 0.1079 +0 0.3169 +0 0.5609 +0 0.0429 +0 0.1354 +0 0.0642 +0 0.1312 +0 0.0977 +0 0.0503 +0 0.0895 +0 0.0698 +0 0.1367 +0 0.0409 +0 0.0615 +0 0.2011 +0 0.0927 +0 0.1064 +0 0.1592 +0 0.1134 +0 0.0653 +0 0.3121 +0 0.0799 +0 0.0435 +0 0.0832 +0 0.0890 +0 0.0393 +0 0.1368 +0 0.0601 +0 0.0937 +0 0.2700 +0 0.0593 +0 0.1262 +0 0.0674 +0 0.2829 +0 0.6616 +0 0.1172 +0 0.1285 +0 0.0332 +0 0.1166 +0 0.1014 +0 0.2634 +0 0.1582 +0 0.0950 +0 0.0779 +0 0.1590 +0 0.0438 +0 0.2209 +0 0.0455 +0 0.2192 +0 0.0641 +0 0.2064 +0 0.0649 +0 0.1119 +0 0.0706 +0 0.1050 +0 0.1732 +0 0.0323 +0 0.1517 +0 0.1085 +0 0.2163 +0 0.0991 +0 0.1032 +0 0.1072 +0 0.0874 +0 0.1000 +0 0.0938 +0 0.0729 +1 0.9052 +0 0.1605 +0 0.1646 +0 0.3612 +0 0.0441 +0 0.1519 +0 0.0884 +0 0.0752 +0 0.0607 +0 0.1132 +0 0.1163 +0 0.1931 +0 0.1364 +0 0.0519 +0 0.1480 +0 0.1312 +0 0.1230 +0 0.1901 +0 0.1470 +0 0.0907 +0 0.1137 +0 0.0606 +0 0.0798 +0 0.0605 +0 0.1272 +0 0.0709 +0 0.1402 +0 0.3096 +0 0.1471 +0 0.3023 +0 0.1909 +0 0.2296 +0 0.0591 +0 0.2613 +0 0.0971 +0 0.1996 +0 0.0805 +0 0.1354 +0 0.1358 +0 0.2660 +0 0.4032 +0 0.3078 +0 0.1791 +0 0.0693 +0 0.2152 +0 0.2534 +0 0.2239 +0 0.0597 +0 0.0737 +0 0.0911 +0 0.1150 +0 0.0791 +0 0.1348 +0 0.1132 +0 0.0932 +0 0.0924 +0 0.0745 +0 0.0820 +0 0.0896 +1 0.8653 +0 0.0526 +0 0.0497 +0 0.1864 +0 0.1427 +0 0.1223 +0 0.1783 +0 0.0960 +0 0.0994 +0 0.0474 +0 0.1247 +0 0.1230 +0 0.0918 +0 0.1346 +0 0.1335 +0 0.0950 +0 0.4576 +0 0.1126 +0 0.5531 +0 0.1819 +0 0.2860 +0 0.4397 +0 0.0796 +0 0.0807 +0 0.0380 +0 0.1184 +0 0.0497 +0 0.1695 +0 0.1131 +0 0.1481 +0 0.1607 +0 0.0898 +0 0.1446 +0 0.0353 +0 0.0401 +0 0.1214 +0 0.1114 +0 0.1619 +0 0.1350 +0 0.0535 +0 0.0452 +0 0.0443 +0 0.0740 +0 0.2651 +0 0.0899 +0 0.0861 +0 0.1227 +0 0.1418 +0 0.1293 +0 0.3656 +0 0.1420 +0 0.0727 +0 0.0908 +1 0.8588 +0 0.1330 +0 0.1775 +0 0.1563 +0 0.2137 +0 0.0932 +0 0.1148 +0 0.1482 +0 0.0460 +0 0.1212 +0 0.0471 +0 0.7004 +0 0.0507 +0 0.0922 +0 0.1927 +0 0.1056 +0 0.0963 +0 0.0449 +0 0.3840 +0 0.7301 +0 0.2204 +0 0.0591 +0 0.0906 +0 0.0429 +0 0.1057 +0 0.0873 +0 0.1087 +0 0.2422 +0 0.0666 +0 0.1039 +0 0.0754 +0 0.1098 +1 0.8365 +0 0.0739 +0 0.3395 +0 0.0850 +0 0.1397 +0 0.1354 +0 0.0798 +0 0.2905 +0 0.1875 +0 0.1909 +0 0.0870 +0 0.0526 +0 0.0643 +0 0.0861 +0 0.1454 +0 0.0739 +0 0.1152 +0 0.0726 +0 0.0350 +0 0.1597 +0 0.0800 +0 0.0440 +0 0.2113 +0 0.0864 +0 0.1328 +0 0.0686 +0 0.2342 +0 0.0773 +0 0.1056 +0 0.1635 +0 0.1161 +0 0.1298 +0 0.2228 +0 0.2416 +0 0.0676 +0 0.1667 +0 0.2005 +0 0.1128 +0 0.2706 +0 0.1034 +0 0.1114 +0 0.1556 +0 0.1323 +0 0.1163 +0 0.2364 +0 0.7377 +0 0.0857 +0 0.0910 +0 0.0833 +0 0.5943 +0 0.0456 +0 0.3221 +0 0.0802 +0 0.1742 +0 0.0569 +0 0.2359 +0 0.0835 +0 0.2133 +0 0.1356 +0 0.1393 +0 0.1755 +0 0.1382 +0 0.0663 +0 0.1078 +0 0.0723 +0 0.3003 +0 0.1047 +0 0.0966 +0 0.0481 +0 0.1044 +0 0.0532 +0 0.0515 +0 0.0734 +0 0.0853 +0 0.1281 +0 0.0717 +0 0.2631 +0 0.0569 +0 0.0657 +0 0.0570 +0 0.1119 +0 0.0790 +0 0.1991 +0 0.0673 +0 0.1439 +0 0.0775 +0 0.1890 +0 0.1037 +0 0.0533 +0 0.3950 +0 0.1526 +0 0.1918 +0 0.1614 +0 0.0807 +0 0.0817 +0 0.0528 +0 0.1078 +0 0.0813 +0 0.0448 +0 0.1175 +0 0.0935 +0 0.1732 +0 0.1184 +0 0.0598 +0 0.1755 +0 0.0843 +0 0.0652 +0 0.0528 +0 0.2277 +1 0.7873 +0 0.0650 +0 0.1916 +0 0.2296 +0 0.1169 +0 0.0661 +0 0.1595 +0 0.5459 +0 0.0837 +0 0.3581 +0 0.1602 +0 0.0358 +0 0.6728 +0 0.0695 +0 0.0716 +0 0.0558 +0 0.1914 +0 0.0578 +0 0.0749 +0 0.3605 +0 0.7144 +0 0.2324 +0 0.2104 +0 0.0727 +0 0.1709 +0 0.0964 +0 0.1051 +0 0.1299 +0 0.1603 +0 0.1103 +0 0.0406 +0 0.0679 +0 0.0710 +0 0.2781 +0 0.7134 +0 0.0380 +0 0.0468 +0 0.1412 +0 0.0997 +0 0.2405 +0 0.0494 +0 0.1874 +0 0.1710 +0 0.1104 +0 0.1336 +0 0.1766 +0 0.1272 +0 0.2484 +0 0.0543 +0 0.0727 +0 0.0550 +0 0.0678 +1 0.8373 +0 0.1041 +0 0.0560 +0 0.0970 +0 0.1278 +0 0.1193 +0 0.2688 +0 0.0674 +0 0.1426 +0 0.1901 +0 0.2191 +0 0.1199 +0 0.0691 +0 0.1336 +0 0.1534 +0 0.2211 +1 0.8441 +0 0.0481 +0 0.1460 +0 0.1015 +0 0.0820 +0 0.0596 +0 0.0768 +0 0.0456 +0 0.2427 +0 0.2123 +0 0.1359 +0 0.2942 +0 0.1252 +0 0.0953 +0 0.1734 +0 0.0557 +0 0.2711 +0 0.0928 +0 0.1426 +0 0.1035 +0 0.0776 +0 0.0838 +0 0.3879 +0 0.1524 +0 0.1418 +0 0.0752 +0 0.1002 +0 0.2402 +0 0.0651 +0 0.1143 +0 0.1540 +0 0.1534 +0 0.0939 +0 0.1381 +0 0.3677 +0 0.0810 +0 0.2147 +0 0.2131 +0 0.0791 +0 0.1053 +0 0.1195 +0 0.0817 +0 0.1426 +0 0.2190 +0 0.1162 +0 0.1450 +0 0.0898 +0 0.0799 +0 0.1175 +0 0.7159 +0 0.1053 +0 0.0614 +0 0.0413 +0 0.1061 +0 0.0647 +0 0.1475 +0 0.0745 +0 0.0848 +0 0.0552 +0 0.0998 +0 0.0554 +0 0.1203 +0 0.1340 +0 0.0945 +1 0.8010 +0 0.1036 +0 0.1947 +0 0.0836 +0 0.1998 +0 0.0828 +0 0.1190 +0 0.1255 +0 0.5409 +0 0.1742 +0 0.0748 +0 0.1699 +0 0.0510 +0 0.0671 +0 0.0477 +0 0.0561 +0 0.0358 +0 0.1059 +0 0.1392 +0 0.1056 +0 0.2022 +0 0.0622 +0 0.0768 +0 0.0905 +0 0.2483 +0 0.1433 +0 0.1402 +0 0.0736 +0 0.1667 +0 0.0934 +0 0.0903 +0 0.0759 +0 0.0552 +0 0.0973 +0 0.1507 +0 0.0776 +0 0.0398 +0 0.0956 +0 0.0354 +0 0.4420 +0 0.0962 +0 0.1335 +0 0.0351 +0 0.3021 +0 0.1213 +0 0.2193 +0 0.0916 +0 0.0873 +1 0.8337 +0 0.1458 +0 0.0470 +0 0.0720 +0 0.1827 +0 0.0827 +0 0.1298 +0 0.0303 +0 0.1040 +0 0.2733 +0 0.1474 +0 0.6189 +0 0.1226 +0 0.1170 +0 0.3569 +0 0.1266 +0 0.5537 +0 0.1471 +0 0.1047 +0 0.0803 +0 0.1443 +0 0.0650 +0 0.0493 +0 0.1837 +0 0.0445 +0 0.0632 +0 0.2030 +0 0.1790 +0 0.1165 +0 0.0743 +0 0.0926 +0 0.2533 +0 0.4072 +0 0.1000 +0 0.1121 +0 0.1840 +0 0.2401 +0 0.0639 +0 0.3957 +0 0.1518 +0 0.3010 +0 0.2389 +1 0.8090 +0 0.1031 +0 0.2246 +0 0.0515 +0 0.0484 +0 0.0551 +0 0.0484 +0 0.0457 +0 0.0441 +0 0.0867 +0 0.0738 +0 0.0748 +0 0.5004 +0 0.0719 +0 0.0769 +0 0.1547 +0 0.1221 +0 0.0509 +0 0.1816 +0 0.1094 +0 0.0499 +0 0.2009 +0 0.5536 +0 0.1163 +0 0.0642 +0 0.0911 +0 0.0919 +0 0.1955 +0 0.0598 +0 0.1219 +0 0.1113 +0 0.1586 +0 0.0936 +0 0.0776 +0 0.1730 +0 0.1908 +0 0.2444 +0 0.0379 +0 0.1617 +0 0.5942 +0 0.3712 +0 0.1044 +0 0.3931 +0 0.1151 +0 0.1134 +0 0.1693 +0 0.0705 +0 0.0814 +0 0.1915 +0 0.1388 +0 0.1493 +0 0.0628 +0 0.1325 +0 0.1204 +0 0.1389 +0 0.0475 +0 0.0579 +0 0.3291 +0 0.0636 +0 0.1512 +0 0.1210 +0 0.0763 +0 0.0973 +0 0.1204 +0 0.0565 +0 0.1365 +0 0.1225 +0 0.0647 +0 0.1808 +0 0.6602 +0 0.0458 +0 0.0627 +0 0.0607 +0 0.0525 +0 0.0951 +0 0.1514 +1 0.7828 +0 0.0941 +0 0.4376 +0 0.1122 +0 0.0443 +0 0.1336 +0 0.0907 +0 0.0382 +0 0.0616 +0 0.1275 +0 0.0779 +0 0.0640 +0 0.2324 +0 0.0929 +0 0.0716 +0 0.0881 +0 0.0792 +0 0.0661 +0 0.0462 +0 0.1403 +0 0.1901 +0 0.2672 +0 0.0822 +0 0.2277 +0 0.1650 +0 0.1078 +0 0.1716 +0 0.0548 +0 0.2320 +0 0.1262 +0 0.0771 +0 0.0981 +0 0.0858 +0 0.1757 +0 0.0799 +0 0.3382 +0 0.0815 +0 0.1111 +0 0.1172 +0 0.1676 +0 0.0665 +0 0.0747 +0 0.0839 +0 0.1631 +0 0.2213 +0 0.1212 +0 0.1003 +0 0.3778 +0 0.1493 +0 0.0586 +0 0.1481 +0 0.3180 +0 0.0989 +1 0.8353 +0 0.1002 +0 0.0870 +0 0.1915 +0 0.0597 +0 0.1492 +0 0.0835 +0 0.0867 +0 0.0604 +0 0.0469 +0 0.0441 +0 0.2939 +0 0.1168 +0 0.0590 +0 0.1814 +0 0.0776 +0 0.1431 +0 0.0849 +0 0.0660 +0 0.0775 +0 0.0600 +0 0.2323 +0 0.1035 +0 0.0547 +0 0.3483 +0 0.2963 +0 0.0969 +0 0.1207 +0 0.4920 +0 0.0853 +0 0.1104 +0 0.0956 +0 0.0878 +0 0.0281 +0 0.0920 +0 0.0909 +0 0.1657 +0 0.1487 +0 0.0545 +0 0.2059 +0 0.0674 +0 0.0931 +0 0.1066 +0 0.0854 +0 0.1328 +0 0.0684 +0 0.1362 +0 0.1271 +0 0.0509 +0 0.2478 +0 0.1921 +0 0.1317 +0 0.2069 +0 0.0437 +0 0.0813 +0 0.2171 +0 0.0699 +0 0.2196 +0 0.5358 +0 0.1013 +0 0.1353 +0 0.1871 +0 0.6967 +0 0.1346 +0 0.0723 +0 0.1404 +0 0.0619 +0 0.0608 +0 0.5650 +0 0.1224 +0 0.1112 +0 0.6504 +0 0.0731 +0 0.1239 +0 0.2729 +0 0.3452 +0 0.4172 +0 0.1422 +0 0.0535 +0 0.0863 +0 0.0924 +0 0.0850 +0 0.1279 +0 0.0775 +0 0.1953 +0 0.1157 +0 0.1016 +0 0.1611 +0 0.0577 +0 0.1094 +0 0.1043 +0 0.1558 +0 0.1016 +0 0.3226 +0 0.2434 +0 0.2419 +0 0.1229 +0 0.1337 +0 0.1363 +0 0.0943 +0 0.1190 +0 0.0681 +0 0.1855 +0 0.1819 +0 0.2340 +0 0.1016 +0 0.1673 +0 0.1405 +0 0.1580 +0 0.0929 +1 0.7900 +0 0.0649 +0 0.3078 +0 0.0785 +0 0.1023 +0 0.2669 +0 0.0963 +0 0.0748 +0 0.0719 +0 0.1309 +0 0.1063 +0 0.1570 +0 0.1189 +0 0.0825 +0 0.0760 +0 0.1000 +0 0.0545 +0 0.2742 +0 0.1131 +0 0.1060 +0 0.2805 +0 0.0767 +0 0.0969 +0 0.0721 +0 0.1243 +0 0.0469 +0 0.1233 +0 0.1115 +0 0.0521 +0 0.5298 +0 0.0758 +0 0.0711 +0 0.0975 +0 0.0777 +0 0.1902 +0 0.0393 +0 0.1447 +0 0.1184 +0 0.1707 +0 0.1116 +0 0.0725 +0 0.1067 +0 0.0635 +0 0.2408 +0 0.1818 +0 0.1426 +0 0.0656 +0 0.1587 +0 0.1004 +0 0.0544 +0 0.0703 +0 0.3393 +0 0.1975 +0 0.1015 +0 0.1778 +0 0.0667 +0 0.0886 +0 0.2703 +0 0.1707 +0 0.1078 +0 0.0485 +0 0.1640 +0 0.1851 +0 0.0509 +0 0.2394 +0 0.0568 +0 0.0535 +0 0.1161 +0 0.1364 +0 0.1858 +0 0.2477 +0 0.1404 +0 0.2810 +0 0.2145 +0 0.0678 +0 0.0652 +0 0.1323 +0 0.0809 +0 0.0878 +0 0.2081 +0 0.1061 +0 0.0824 +0 0.1332 +0 0.0656 +0 0.1986 +0 0.1175 +0 0.2263 +0 0.4140 +0 0.0862 +0 0.1474 +0 0.1026 +0 0.0308 +0 0.7415 +0 0.2597 +0 0.0838 +0 0.2064 +0 0.0670 +0 0.0851 +0 0.0616 +0 0.1648 +0 0.0765 +0 0.1023 +0 0.0567 +0 0.0921 +0 0.0467 +0 0.0616 +0 0.0777 +0 0.0484 +0 0.3036 +0 0.1352 +0 0.0510 +0 0.0705 +0 0.0632 +0 0.1931 +0 0.0729 +0 0.1690 +0 0.0907 +0 0.1136 +0 0.2115 +0 0.2717 +0 0.0439 +0 0.0940 +0 0.1274 +0 0.2163 +0 0.1988 +0 0.0413 +0 0.1571 +0 0.1659 +0 0.2137 +0 0.3428 +0 0.1428 +0 0.0715 +0 0.1136 +0 0.0418 +0 0.6606 +0 0.1007 +0 0.0820 +0 0.1471 +0 0.0670 +0 0.0810 +0 0.1512 +0 0.1806 +0 0.1654 +0 0.0971 +0 0.1391 +0 0.0551 +0 0.1261 +0 0.0689 +0 0.0690 +0 0.1049 +0 0.1775 +0 0.1804 +0 0.1526 +0 0.1185 +0 0.0753 +0 0.7453 +0 0.0927 +0 0.0482 +0 0.0733 +0 0.1488 +0 0.0352 +0 0.1343 +0 0.0385 +0 0.1188 +0 0.0826 +0 0.0663 +0 0.0600 +0 0.1415 +0 0.2062 +0 0.1546 +0 0.0838 +0 0.0943 +0 0.1055 +0 0.0615 +0 0.0997 +0 0.2293 +0 0.0746 +0 0.2243 +0 0.1028 +0 0.0942 +0 0.1061 +0 0.1292 +0 0.1381 +0 0.4709 +0 0.0698 +0 0.6188 +0 0.0456 +0 0.1009 +0 0.0592 +0 0.1406 +0 0.0763 +0 0.2614 +0 0.0908 +0 0.1146 +0 0.0752 +0 0.7465 +0 0.0579 +0 0.1737 +0 0.2497 +0 0.0393 +0 0.0953 +0 0.1300 +0 0.0738 +0 0.0936 +0 0.0641 +0 0.1586 +0 0.0558 +0 0.0473 +0 0.1164 +0 0.1714 +0 0.0720 +0 0.7472 +0 0.0600 +0 0.1727 +0 0.1091 +0 0.1371 +0 0.0713 +0 0.0927 +0 0.0933 +0 0.1658 +0 0.1292 +0 0.1215 +0 0.1028 +0 0.0672 +0 0.0686 +0 0.6402 +0 0.0854 +0 0.1139 +0 0.2560 +0 0.1135 +0 0.1764 +0 0.1017 +0 0.0773 +0 0.2715 +0 0.1943 +0 0.1559 +0 0.0344 +0 0.0909 +0 0.1626 +0 0.0772 +0 0.0980 +0 0.4470 +0 0.0774 +0 0.0835 +0 0.0451 +0 0.0829 +0 0.1152 +0 0.3037 +0 0.0718 +0 0.0643 +0 0.0828 +0 0.2575 +0 0.1115 +0 0.0460 +0 0.0922 +0 0.0699 +0 0.1944 +0 0.2672 +0 0.3734 +0 0.1243 +0 0.1141 +0 0.0790 +0 0.0676 +0 0.0632 +0 0.1348 +0 0.1715 +0 0.1435 +0 0.0798 +0 0.0565 +0 0.1166 +0 0.1085 +0 0.0505 +0 0.0790 +0 0.0586 +0 0.0675 +0 0.0385 +0 0.0961 +0 0.3886 +0 0.1221 +0 0.1272 +0 0.0840 +0 0.0936 +0 0.3698 +0 0.1796 +0 0.0844 +0 0.3970 +0 0.1617 +0 0.0841 +0 0.2123 +0 0.0399 +0 0.0549 +0 0.0724 +0 0.2230 +0 0.0544 +0 0.0664 +0 0.0989 +0 0.0584 +0 0.1803 +0 0.1096 +0 0.1177 +0 0.6835 +0 0.0808 +0 0.0829 +0 0.2632 +0 0.0535 +0 0.1631 +0 0.1718 +0 0.0934 +0 0.2456 +0 0.0653 +0 0.0733 +0 0.1450 +0 0.1421 +0 0.1445 +0 0.2018 +0 0.0859 +0 0.2603 +0 0.1070 +0 0.0443 +0 0.1109 +0 0.1113 +0 0.1378 +0 0.0853 +0 0.0936 +0 0.0634 +0 0.0744 +0 0.1032 +1 0.7737 +0 0.0813 +0 0.1705 +0 0.1055 +0 0.2077 +0 0.0788 +0 0.1729 +0 0.1222 +0 0.4447 +0 0.1746 +0 0.3197 +0 0.1514 +0 0.2524 +0 0.3213 +0 0.2277 +0 0.0984 +0 0.1180 +0 0.1755 +0 0.0711 +0 0.0464 +0 0.0854 +0 0.1013 +0 0.1302 +0 0.2813 +0 0.1094 +0 0.1308 +0 0.0918 +0 0.2171 +0 0.0683 +1 0.7688 +0 0.1506 +0 0.1128 +0 0.2095 +0 0.5052 +0 0.0430 +0 0.1164 +0 0.1099 +0 0.1030 +1 0.8435 +0 0.1199 +0 0.1366 +0 0.0701 +0 0.1199 +0 0.1405 +0 0.1207 +0 0.0820 +0 0.1161 +0 0.1162 +0 0.2074 +0 0.0760 +0 0.1399 +0 0.0396 +0 0.1830 +0 0.0661 +0 0.2283 +0 0.1621 +0 0.2787 +0 0.1081 +0 0.0615 +0 0.0679 +0 0.0737 +0 0.0903 +0 0.2409 +0 0.0427 +0 0.2437 +0 0.1670 +0 0.1468 +0 0.0730 +0 0.1431 +0 0.0824 +0 0.1394 +0 0.2093 +0 0.0843 +0 0.0630 +0 0.0928 +0 0.1159 +1 0.8790 +0 0.2034 +0 0.0529 +0 0.1482 +0 0.2177 +0 0.0825 +0 0.1058 +0 0.1135 +0 0.2405 +0 0.1078 +0 0.1704 +0 0.0692 +0 0.7496 +0 0.0600 +0 0.1829 +0 0.1093 +0 0.3589 +0 0.1112 +0 0.1355 +0 0.0517 +0 0.0437 +0 0.0749 +0 0.0570 +0 0.0512 +0 0.0936 +0 0.1412 +0 0.1045 +0 0.1141 +0 0.0685 +0 0.0756 +0 0.2865 +0 0.1076 +0 0.0840 +0 0.1228 +0 0.0590 +0 0.0957 +0 0.0826 +0 0.0736 +0 0.1575 +0 0.0594 +0 0.0405 +0 0.1080 +0 0.2149 +0 0.2073 +0 0.0834 +0 0.0485 +0 0.1701 +0 0.1240 +0 0.1362 +0 0.2233 +0 0.0740 +0 0.0650 +0 0.1172 +0 0.2492 +0 0.0938 +0 0.0744 +0 0.1499 +0 0.1299 +0 0.0887 +0 0.1659 +0 0.1229 +0 0.0366 +0 0.1005 +0 0.2178 +0 0.1353 +0 0.3603 +0 0.0446 +0 0.0656 +0 0.1657 +0 0.0780 +0 0.1380 +0 0.1136 +0 0.0481 +0 0.1120 +0 0.2827 +0 0.1712 +0 0.0972 +0 0.2235 +0 0.6778 +0 0.0458 +0 0.0667 +0 0.2020 +0 0.0701 +0 0.1655 +0 0.4362 +0 0.0813 +0 0.0807 +0 0.0860 +0 0.1408 +0 0.0801 +0 0.1136 +0 0.2656 +0 0.0732 +0 0.1419 +0 0.0774 +0 0.0460 +0 0.1320 +0 0.6098 +0 0.1235 +0 0.1526 +0 0.0843 +1 0.8218 +0 0.1868 +0 0.0948 +0 0.1350 +0 0.1096 +0 0.1003 +0 0.0944 +0 0.2375 +0 0.2693 +0 0.1605 +0 0.3112 +0 0.2155 +0 0.2133 +0 0.1968 +0 0.1408 +0 0.1100 +0 0.0982 +0 0.1076 +0 0.1096 +0 0.3895 +0 0.0868 +0 0.4353 +0 0.2568 +0 0.1210 +0 0.0569 +0 0.3322 +0 0.0838 +0 0.0464 +0 0.2021 +0 0.1728 +0 0.0875 +0 0.0759 +1 0.8091 +0 0.1277 +0 0.1508 +0 0.4364 +0 0.2071 +0 0.1085 +0 0.0846 +0 0.1221 +0 0.0916 +0 0.1606 +0 0.1166 +0 0.0440 +0 0.1131 +0 0.0827 +0 0.0473 +0 0.0650 +0 0.0430 +0 0.2457 +0 0.1980 +0 0.1951 +0 0.1593 +0 0.1167 +0 0.1454 +0 0.0896 +0 0.0942 +0 0.0888 +0 0.2880 +0 0.0744 +0 0.1176 +0 0.1194 +0 0.0666 +0 0.2945 +0 0.1016 +0 0.0716 +0 0.1306 +0 0.3955 +0 0.0775 +0 0.0702 +0 0.0547 +0 0.2614 +0 0.0821 +1 0.7856 +0 0.1608 +0 0.1206 +0 0.1441 +0 0.1432 +0 0.1573 +0 0.2005 +0 0.0778 +0 0.1395 +0 0.1549 +0 0.2415 +0 0.0548 +0 0.0319 +0 0.0645 +0 0.2194 +0 0.1097 +0 0.1239 +0 0.6820 +0 0.0414 +0 0.1297 +0 0.1030 +0 0.1711 +0 0.1174 +0 0.0798 +1 0.8144 +0 0.1000 +0 0.0368 +0 0.1256 +0 0.0712 +0 0.0391 +0 0.2304 +0 0.0980 +0 0.1871 +0 0.0464 +0 0.1131 +0 0.0704 +0 0.0453 +0 0.6091 +0 0.0872 +0 0.0893 +0 0.1062 +0 0.0866 +0 0.0531 +0 0.1236 +0 0.0711 +0 0.2171 +0 0.1026 +0 0.0952 +0 0.4317 +0 0.3969 +0 0.0382 +0 0.6933 +0 0.0617 +0 0.0696 +0 0.0564 +0 0.0446 +0 0.0761 +0 0.1013 +0 0.5137 +0 0.0688 +0 0.2494 +0 0.0744 +0 0.1146 +0 0.4375 +0 0.0749 +0 0.1094 +0 0.1882 +1 0.7673 +0 0.0565 +0 0.1081 +0 0.2296 +0 0.0583 +0 0.0795 +0 0.1042 +0 0.1190 +0 0.0718 +0 0.1202 +0 0.0593 +0 0.0863 +0 0.1141 +0 0.2065 +0 0.1108 +0 0.1978 +0 0.1493 +0 0.0584 +0 0.0891 +1 0.3184 +0 0.2300 +0 0.2971 +0 0.0994 +0 0.1178 +0 0.0817 +1 0.8396 +0 0.0942 +0 0.0998 +0 0.1296 +0 0.0617 +0 0.1380 +0 0.0547 +0 0.0646 +0 0.1805 +0 0.1676 +0 0.0458 +0 0.2541 +0 0.5852 +0 0.3303 +1 0.3778 +0 0.2710 +0 0.2484 +0 0.1427 +0 0.0537 +0 0.0475 +0 0.6110 +0 0.5368 +0 0.1007 +0 0.1689 +0 0.2541 +0 0.0841 +0 0.0948 +0 0.2564 +0 0.0573 +0 0.0598 +0 0.1301 +0 0.1125 +0 0.0389 +0 0.1059 +0 0.1325 +0 0.1122 +0 0.0344 +0 0.2251 +0 0.0800 +0 0.1118 +0 0.0782 +0 0.0899 +0 0.2106 +0 0.2644 +0 0.1026 +0 0.2655 +0 0.0654 +0 0.1359 +0 0.0627 +0 0.0464 +0 0.0893 +0 0.0880 +0 0.1262 +0 0.0557 +0 0.1046 +0 0.1190 +0 0.0690 +0 0.1970 +0 0.1267 +0 0.0701 +0 0.0667 +0 0.2671 +0 0.0772 +0 0.0463 +0 0.0521 +0 0.1243 +0 0.0899 +0 0.1362 +1 0.8386 +1 0.8743 +0 0.1419 +0 0.0464 +0 0.2147 +0 0.1281 +0 0.1049 +0 0.1131 +0 0.0724 +0 0.1029 +0 0.0598 +0 0.1820 +0 0.1464 +0 0.0783 +0 0.1649 +0 0.1138 +0 0.4264 +0 0.1098 +0 0.0893 +0 0.0882 +0 0.4793 +0 0.0911 +0 0.1108 +0 0.2803 +0 0.2270 +0 0.0992 +0 0.0775 +0 0.1069 +0 0.0513 +0 0.0634 +0 0.0801 +1 0.8418 +0 0.0799 +0 0.0688 +0 0.1316 +1 0.8578 +0 0.0581 +0 0.0747 +0 0.1337 +0 0.2276 +0 0.0470 +0 0.0596 +0 0.2230 +0 0.0389 +0 0.1154 +0 0.4673 +0 0.0669 +0 0.0352 +0 0.1651 +0 0.1552 +0 0.1626 +0 0.0445 +0 0.0789 +0 0.0709 +0 0.1639 +0 0.0951 +0 0.1845 +0 0.0584 +0 0.1152 +0 0.0518 +0 0.1058 +0 0.0862 +0 0.1088 +1 0.7802 +0 0.3131 +0 0.1890 +0 0.0754 +0 0.1138 +0 0.0508 +1 0.7545 +0 0.0498 +0 0.1385 +0 0.0736 +0 0.0924 +0 0.2223 +0 0.2417 +0 0.0458 +0 0.0657 +0 0.1310 +0 0.0551 +0 0.0969 +0 0.0691 +0 0.2035 +0 0.0500 +0 0.1422 +0 0.0678 +0 0.2100 +0 0.0626 +0 0.3824 +0 0.1319 +0 0.0932 +0 0.1089 +0 0.0919 +0 0.0846 +0 0.1343 +0 0.3396 +0 0.0940 +0 0.0953 +0 0.1075 +0 0.0736 +0 0.2222 +0 0.0923 +0 0.0818 +0 0.0902 +0 0.1032 +0 0.0897 +0 0.0558 +0 0.0924 +0 0.3378 +0 0.0976 +0 0.0840 +0 0.0812 +0 0.0751 +0 0.0387 +0 0.0504 +0 0.2975 +0 0.2652 +0 0.0638 +1 0.7866 +0 0.0605 +0 0.0380 +0 0.1241 +0 0.1409 +0 0.0793 +0 0.1400 +0 0.1698 +0 0.1174 +0 0.0685 +0 0.0924 +0 0.1445 +0 0.1143 +0 0.0656 +0 0.0815 +0 0.2551 +0 0.6612 +0 0.0614 +0 0.0768 +0 0.1358 +0 0.0389 +0 0.1654 +0 0.1812 +0 0.1129 +0 0.0432 +0 0.1491 +0 0.0956 +0 0.1731 +0 0.0751 +0 0.1963 +0 0.0946 +0 0.0794 +0 0.0763 +0 0.0733 +0 0.1171 +0 0.0842 +0 0.0963 +0 0.1081 +0 0.0772 +0 0.1309 +0 0.1679 +0 0.1385 +0 0.1017 +0 0.4379 +0 0.1589 +0 0.0908 +0 0.0841 +0 0.0613 +0 0.2420 +0 0.1610 +0 0.2981 +0 0.0891 +0 0.1829 +0 0.2316 +0 0.1059 +0 0.1046 +0 0.0537 +0 0.1670 +0 0.0449 +0 0.0774 +0 0.0490 +0 0.0876 +0 0.0711 +0 0.0908 +0 0.1203 +0 0.0745 +0 0.0489 +0 0.1665 +0 0.0655 +0 0.0916 +0 0.0515 +0 0.0486 +0 0.1224 +0 0.0776 +0 0.6698 +0 0.0788 +0 0.1841 +0 0.0747 +0 0.3042 +0 0.0892 +0 0.0464 +0 0.0884 +0 0.2180 +0 0.0901 +0 0.0594 +0 0.3863 +0 0.0617 +0 0.0978 +0 0.1401 +0 0.0562 +0 0.0822 +0 0.0799 +0 0.0809 +0 0.1358 +0 0.1410 +0 0.1145 +0 0.1179 +0 0.0798 +0 0.1151 +0 0.1256 +0 0.0872 +0 0.0728 +0 0.0544 +0 0.1391 +0 0.1146 +0 0.3732 +0 0.1010 +0 0.1017 +0 0.1117 +0 0.1322 +0 0.0480 +0 0.0866 +0 0.1414 +0 0.2564 +0 0.1796 +0 0.4031 +0 0.0843 +0 0.1846 +0 0.0552 +0 0.2208 +0 0.0563 +0 0.1096 +0 0.2594 +0 0.6191 +0 0.0720 +0 0.1009 +0 0.2774 +0 0.1314 +0 0.2586 +0 0.6817 +0 0.2103 +1 0.8610 +0 0.1067 +1 0.8403 +0 0.1062 +0 0.0922 +0 0.1888 +0 0.2374 +0 0.0667 +0 0.1080 +0 0.0920 +0 0.0935 +0 0.0565 +0 0.0589 +0 0.0453 +0 0.0953 +0 0.1186 +0 0.1033 +0 0.1926 +0 0.0617 +0 0.0639 +0 0.1973 +0 0.3056 +0 0.0775 +0 0.1868 +0 0.0709 +0 0.1453 +0 0.0825 +0 0.2707 +0 0.4553 +0 0.1686 +0 0.0749 +0 0.1199 +0 0.4280 +0 0.0744 +0 0.0497 +0 0.0302 +0 0.1277 +0 0.0955 +0 0.1378 +0 0.1682 +0 0.1159 +0 0.1367 +0 0.0807 +0 0.1279 +0 0.1117 +0 0.0439 +0 0.2495 +0 0.0462 +0 0.0744 +0 0.0779 +0 0.1099 +0 0.0965 +0 0.0590 +0 0.1312 +0 0.1414 +0 0.1044 +0 0.1880 +0 0.2443 +0 0.0787 +0 0.0632 +0 0.5112 +0 0.1497 +0 0.1126 +0 0.1689 +0 0.0435 +0 0.0750 +0 0.0924 +0 0.0450 +0 0.0444 +0 0.1662 +1 0.8391 +0 0.0715 +0 0.0870 +0 0.1540 +0 0.0436 +0 0.2105 +0 0.0336 +0 0.1012 +0 0.1041 +1 0.8435 +0 0.0689 +0 0.1131 +0 0.1815 +0 0.1100 +0 0.0526 +0 0.2050 +0 0.0639 +0 0.0539 +0 0.0763 +0 0.5696 +0 0.1341 +0 0.0724 +0 0.2426 +0 0.1136 +0 0.0467 +0 0.0664 +0 0.1145 +0 0.0664 +1 0.7696 +0 0.0575 +0 0.1530 +0 0.0656 +0 0.0925 +0 0.6944 +0 0.1108 +0 0.0570 +0 0.0898 +0 0.7277 +0 0.6870 +0 0.0593 +0 0.0469 +0 0.1942 +0 0.1816 +0 0.0857 +0 0.0666 +0 0.0909 +0 0.1361 +0 0.1129 +0 0.1173 +0 0.1028 +0 0.1293 +0 0.3027 +0 0.0406 +0 0.1080 +0 0.1417 +0 0.1682 +0 0.0726 +0 0.0635 +0 0.0677 +0 0.1897 +0 0.2975 +0 0.2860 +0 0.0776 +0 0.2880 +0 0.1225 +0 0.1938 +0 0.0725 +0 0.1074 +0 0.0840 +0 0.0666 +0 0.2186 +0 0.4307 +0 0.0833 +0 0.2531 +0 0.0411 +0 0.0775 +0 0.1090 +0 0.0614 +0 0.1538 +0 0.0746 +0 0.1041 +0 0.1306 +0 0.1342 +0 0.0865 +0 0.1643 +0 0.0478 +0 0.0955 +0 0.1417 +0 0.0835 +0 0.0848 +0 0.1369 +0 0.0790 +0 0.3912 +0 0.0902 +0 0.1115 +0 0.1391 +0 0.0893 +0 0.0663 +0 0.0618 +0 0.4323 +0 0.0783 +0 0.3144 +0 0.0610 +0 0.0716 +0 0.0709 +0 0.2426 +0 0.1807 +0 0.2119 +0 0.1291 +0 0.5491 +0 0.2256 +0 0.0979 +0 0.0617 +0 0.0991 +0 0.6494 +0 0.0625 +0 0.0485 +0 0.0750 +1 0.8192 +0 0.0769 +0 0.0879 +0 0.1447 +0 0.0715 +0 0.0438 +0 0.1355 +0 0.0724 +0 0.1430 +0 0.0901 +0 0.0925 +0 0.2360 +0 0.3356 +0 0.0407 +0 0.1832 +0 0.1687 +0 0.1733 +0 0.0606 +0 0.1249 +0 0.1250 +0 0.0591 +0 0.0809 +0 0.0594 +0 0.1122 +0 0.5388 +0 0.0777 +0 0.1855 +0 0.1117 +0 0.1294 +0 0.1455 +0 0.0593 +0 0.1436 +0 0.3858 +0 0.1176 +0 0.6219 +0 0.1001 +0 0.0577 +0 0.0574 +0 0.0617 +0 0.2175 +0 0.1628 +0 0.1093 +0 0.4104 +0 0.1450 +0 0.1414 +0 0.0937 +0 0.0968 +0 0.0879 +0 0.0562 +0 0.2364 +0 0.0488 +0 0.1910 +0 0.3180 +0 0.0654 +0 0.0895 +0 0.0826 +0 0.0768 +0 0.1239 +0 0.1185 +0 0.2010 +0 0.0753 +0 0.1061 +0 0.0975 +0 0.0683 +0 0.1086 +0 0.0626 +0 0.0717 +0 0.0795 +0 0.6460 +0 0.0846 +0 0.1048 +0 0.0968 +0 0.1914 +0 0.0799 +0 0.1082 +0 0.3254 +0 0.1090 +0 0.0626 +0 0.1789 +0 0.1437 +0 0.0719 +0 0.2562 +0 0.2167 +0 0.0722 +0 0.0753 +0 0.0697 +0 0.0515 +0 0.0657 +0 0.1128 +0 0.1434 +0 0.0539 +0 0.1228 +0 0.0908 +0 0.0515 +0 0.0656 +0 0.1202 +0 0.1572 +0 0.0924 +0 0.1331 +0 0.1023 +0 0.0842 +0 0.0676 +0 0.1146 +0 0.1980 +0 0.1473 +0 0.2462 +0 0.0613 +0 0.3978 +0 0.5553 +0 0.0743 +0 0.0996 +0 0.0458 +0 0.0692 +0 0.2119 +0 0.1233 +0 0.2697 +0 0.3190 +0 0.2114 +0 0.1285 +0 0.0917 +0 0.0960 +0 0.1119 +0 0.0828 +0 0.0553 +0 0.1097 +1 0.8298 +0 0.2786 +0 0.0626 +0 0.1051 +0 0.0719 +0 0.0593 +0 0.1099 +0 0.2436 +0 0.2410 +0 0.0811 +0 0.0914 +0 0.0568 +0 0.0631 +0 0.0916 +0 0.0581 +0 0.1526 +0 0.1738 +0 0.0870 +0 0.0547 +0 0.2294 +0 0.0815 +0 0.0932 +0 0.0956 +0 0.1560 +0 0.0957 +0 0.0587 +0 0.2578 +0 0.0794 +0 0.2386 +0 0.1110 +0 0.0551 +0 0.1935 +0 0.0576 +0 0.0650 +0 0.0738 +0 0.1509 +0 0.1443 +0 0.0689 +0 0.1017 +0 0.5359 +0 0.0703 +0 0.1017 +0 0.1526 +0 0.3337 +0 0.1237 +0 0.0529 +0 0.0992 +0 0.1947 +0 0.0432 +0 0.0502 +0 0.0780 +0 0.6895 +0 0.2548 +0 0.0407 +0 0.0895 +0 0.1167 +0 0.0908 +0 0.0620 +0 0.1955 +0 0.2483 +0 0.1434 +0 0.1847 +0 0.1306 +0 0.0723 +0 0.0775 +0 0.1437 +0 0.0519 +0 0.0381 +0 0.0796 +0 0.0511 +0 0.0816 +0 0.0717 +0 0.1280 +0 0.0754 +0 0.0589 +0 0.1396 +0 0.7256 +0 0.1011 +0 0.0879 +0 0.0780 +0 0.0419 +0 0.0772 +0 0.0862 +0 0.1274 +0 0.1750 +0 0.2860 +0 0.1235 +0 0.1869 +0 0.1052 +0 0.0933 +0 0.3699 +0 0.1138 +0 0.0967 +0 0.0680 +0 0.0993 +0 0.0783 +0 0.3024 +0 0.1923 +0 0.1568 +0 0.4693 +0 0.0628 +0 0.0924 +0 0.1836 +0 0.1494 +0 0.1032 +0 0.0697 +0 0.0769 +0 0.1362 +0 0.0638 +0 0.0734 +0 0.2267 +0 0.1065 +0 0.1768 +0 0.1456 +0 0.1095 +0 0.2689 +0 0.0334 +0 0.0597 +0 0.1657 +0 0.1011 +0 0.1383 +0 0.5240 +0 0.1257 +0 0.0757 +0 0.2411 +0 0.0388 +0 0.1954 +0 0.0926 +0 0.1029 +0 0.0590 +0 0.1183 +0 0.1664 +0 0.1095 +0 0.0672 +0 0.0685 +0 0.0650 +0 0.2446 +0 0.0349 +0 0.1743 +0 0.1542 +0 0.1282 +0 0.0563 +0 0.1204 +0 0.0770 +0 0.0982 +0 0.1283 +0 0.7073 +0 0.0825 +0 0.1011 +0 0.1114 +0 0.0885 +0 0.0680 +0 0.1075 +0 0.2438 +0 0.3052 +0 0.1527 +0 0.3445 +0 0.0972 +0 0.1941 +0 0.1863 +0 0.0559 +0 0.0532 +0 0.0615 +0 0.2666 +0 0.1510 +0 0.0816 +0 0.0999 +0 0.0334 +0 0.1730 +0 0.0572 +0 0.0820 +0 0.1846 +0 0.0417 +0 0.0480 +0 0.1022 +0 0.1331 +0 0.0620 +0 0.1013 +0 0.1337 +0 0.0539 +0 0.1009 +0 0.0482 +0 0.0824 +0 0.0570 +0 0.0493 +0 0.0593 +0 0.1298 +0 0.1076 +0 0.1149 +0 0.0545 +0 0.0496 +0 0.0986 +0 0.1604 +0 0.1920 +0 0.3215 +0 0.1117 +0 0.0866 +0 0.0801 +0 0.1195 +0 0.2009 +0 0.0957 +0 0.1082 +0 0.0905 +0 0.0677 +0 0.1169 +0 0.2254 +0 0.3131 +0 0.2360 +0 0.0689 +0 0.0955 +0 0.0597 +0 0.0433 +0 0.0952 +0 0.4072 +0 0.1346 +0 0.0918 +0 0.1441 +0 0.1490 +0 0.0807 +0 0.1357 +0 0.0742 +0 0.1064 +0 0.0782 +0 0.2918 +0 0.2138 +0 0.1500 +0 0.0942 +0 0.0615 +0 0.1086 +0 0.3814 +0 0.2556 +0 0.2544 +0 0.0948 +0 0.1077 +0 0.1697 +0 0.0575 +0 0.1253 +0 0.0546 +0 0.2253 +0 0.1095 +0 0.0342 +0 0.2077 +0 0.1159 +0 0.2630 +0 0.0892 +0 0.1816 +0 0.0507 +0 0.0967 +0 0.0948 +0 0.1019 +0 0.1109 +0 0.2846 +0 0.0504 +0 0.0807 +0 0.2748 +0 0.1329 +0 0.6927 +0 0.0854 +0 0.0609 +0 0.0489 +0 0.1382 +0 0.3064 +0 0.1032 +0 0.0388 +0 0.0943 +0 0.3525 +1 0.8978 +0 0.1839 +0 0.1551 +0 0.0603 +0 0.0554 +0 0.0687 +0 0.0824 +0 0.0547 +0 0.0545 +0 0.1154 +0 0.2337 +0 0.1535 +0 0.0764 +0 0.1508 +0 0.1207 +0 0.0849 +0 0.0801 +0 0.0551 +0 0.0795 +0 0.0835 +0 0.0729 +0 0.1291 +0 0.1733 +0 0.1063 +0 0.0738 +0 0.1114 +0 0.1276 +0 0.0596 +0 0.1425 +0 0.0536 +0 0.0870 +0 0.0655 +0 0.1425 +0 0.4824 +0 0.0978 +0 0.1216 +0 0.1179 +0 0.1432 +0 0.0981 +0 0.0745 +0 0.0633 +0 0.1812 +0 0.0925 +0 0.1471 +0 0.0959 +0 0.1612 +0 0.0614 +0 0.1090 +0 0.1098 +0 0.0664 +0 0.0605 +0 0.1005 +0 0.0789 +0 0.0631 +0 0.0673 +0 0.3563 +0 0.0706 +0 0.0773 +0 0.1182 +0 0.0810 +0 0.0803 +0 0.1277 +0 0.1232 +1 0.8290 +0 0.2155 +0 0.1155 +0 0.1366 +0 0.0846 +0 0.1433 +0 0.2502 +0 0.1066 +0 0.1301 +0 0.1560 +0 0.0756 +0 0.0950 +0 0.1372 +0 0.1489 +0 0.0692 +0 0.0317 +0 0.1143 +0 0.0609 +0 0.6817 +0 0.0413 +0 0.1300 +0 0.1758 +0 0.0995 +0 0.0906 +0 0.0635 +0 0.1353 +0 0.0629 +0 0.0838 +0 0.1178 +0 0.3116 +0 0.0766 +0 0.1020 +0 0.2459 +0 0.1536 +0 0.0858 +0 0.1170 +0 0.0520 +0 0.1312 +0 0.0516 +0 0.1440 +0 0.1388 +0 0.0472 +0 0.1767 +0 0.0643 +0 0.1666 +0 0.1076 +0 0.0514 +0 0.0903 +0 0.0742 +0 0.1498 +0 0.0757 +0 0.2013 +0 0.1871 +0 0.1592 +0 0.1316 +0 0.0443 +0 0.1156 +0 0.1032 +0 0.1269 +0 0.0891 +0 0.0866 +0 0.0630 +0 0.2407 +0 0.1105 +0 0.2363 +0 0.0624 +0 0.1290 +0 0.0447 +0 0.1060 +0 0.0618 +0 0.1199 +0 0.1567 +0 0.0929 +0 0.3233 +0 0.1817 +0 0.0496 +0 0.0834 +0 0.2408 +0 0.0645 +0 0.0874 +0 0.2293 +0 0.5619 +0 0.0623 +0 0.0952 +0 0.0830 +0 0.1334 +0 0.0809 +0 0.0958 +0 0.2377 +0 0.1493 +0 0.1934 +0 0.5502 +0 0.0552 +0 0.1629 +0 0.5383 +0 0.0816 +0 0.0861 +0 0.0992 +0 0.1104 +0 0.3310 +0 0.0562 +0 0.0816 +0 0.1657 +0 0.5859 +0 0.0590 +0 0.0749 +0 0.0620 +0 0.1518 +0 0.1810 +0 0.0863 +0 0.0759 +0 0.1277 +0 0.0691 +0 0.0801 +0 0.0997 +0 0.1325 +0 0.0897 +0 0.1100 +0 0.2159 +0 0.0768 +0 0.1614 +0 0.0641 +0 0.1087 +0 0.0710 +0 0.0777 +0 0.3380 +0 0.4751 +0 0.2540 +0 0.0943 +0 0.1890 +0 0.1678 +0 0.2162 +0 0.0459 +0 0.3715 +0 0.1074 +0 0.2415 +0 0.1738 +0 0.2353 +0 0.0586 +1 0.8052 +0 0.2401 +0 0.0948 +0 0.1100 +0 0.0842 +0 0.2248 +1 0.8313 +0 0.1249 +0 0.2207 +0 0.0482 +0 0.1290 +0 0.2060 +0 0.0360 +0 0.2433 +0 0.0756 +0 0.1434 +0 0.0618 +0 0.0575 +0 0.0878 +0 0.1501 +0 0.0974 +0 0.0386 +0 0.3072 +0 0.0593 +0 0.1800 +0 0.1339 +0 0.0935 +0 0.1886 +0 0.1396 +0 0.0815 +0 0.1224 +0 0.1527 +0 0.0899 +0 0.2495 +0 0.1613 +0 0.1629 +0 0.2841 +0 0.0641 +0 0.0628 +0 0.4209 +0 0.0793 +0 0.0353 +0 0.1177 +0 0.1601 +0 0.1839 +0 0.0804 +0 0.2527 +0 0.1005 +0 0.6580 +0 0.0857 +0 0.0675 +0 0.0388 +0 0.0545 +0 0.1949 +0 0.0606 +0 0.1165 +0 0.2053 +0 0.1115 +0 0.0774 +0 0.0885 +0 0.1426 +0 0.1599 +0 0.1341 +0 0.0577 +0 0.0975 +0 0.1397 +0 0.0866 +0 0.1068 +0 0.0944 +0 0.1066 +0 0.4498 +0 0.3591 +0 0.1042 +0 0.0851 +0 0.3090 +0 0.0654 +0 0.0711 +0 0.4145 +0 0.1198 +0 0.1587 +0 0.1163 +0 0.0653 +0 0.1791 +0 0.1591 +0 0.0940 +0 0.1785 +0 0.0685 +0 0.0502 +0 0.1331 +0 0.0506 +0 0.2223 +0 0.0531 +0 0.0949 +0 0.3093 +0 0.1043 +0 0.1089 +0 0.0991 +0 0.5589 +0 0.3654 +0 0.0906 +0 0.0684 +0 0.1853 +0 0.0605 +0 0.0436 +0 0.1526 +0 0.1400 +0 0.0788 +0 0.2245 +0 0.2373 +0 0.0463 +0 0.1116 +0 0.1825 +0 0.1322 +0 0.0867 +0 0.2876 +0 0.1622 +0 0.5585 +0 0.0609 +0 0.0488 +0 0.0703 +0 0.1185 +0 0.0863 +0 0.0995 +0 0.2367 +0 0.1155 +0 0.0446 +0 0.1329 +0 0.3015 +0 0.1234 +0 0.1143 +0 0.3273 +1 0.7878 +0 0.4326 +0 0.1197 +0 0.1050 +0 0.1905 +0 0.1012 +0 0.1242 +0 0.0597 +0 0.0557 +0 0.1104 +0 0.2984 +0 0.0602 +0 0.0512 +0 0.1141 +0 0.2282 +0 0.0817 +0 0.1732 +0 0.1519 +0 0.0863 +0 0.0880 +0 0.0639 +0 0.0828 +0 0.1149 +0 0.6727 +0 0.0775 +0 0.0545 +0 0.0541 +0 0.0510 +0 0.1064 +0 0.0733 +0 0.0522 +0 0.0877 +0 0.1212 +0 0.1091 +0 0.1305 +0 0.3547 +0 0.1222 +0 0.1043 +0 0.0671 +0 0.0617 +0 0.0686 +0 0.0885 +0 0.0951 +0 0.2494 +0 0.2120 +0 0.1092 +0 0.0549 +0 0.1240 +0 0.1690 +0 0.1989 +0 0.0890 +0 0.0388 +0 0.1051 +0 0.0774 +0 0.1933 +0 0.0839 +0 0.2206 +0 0.0550 +0 0.1059 +0 0.1903 +0 0.3818 +0 0.2365 +0 0.2364 +0 0.0527 +0 0.0509 +1 0.8080 +0 0.1020 +0 0.0524 +1 0.8405 +0 0.0889 +0 0.1131 +0 0.0974 +0 0.1508 +0 0.1852 +0 0.0621 +0 0.0594 +1 0.8625 +0 0.2454 +0 0.0680 +0 0.0845 +0 0.1987 +0 0.0915 +0 0.1032 +0 0.0738 +0 0.0574 +0 0.0510 +0 0.2912 +0 0.1388 +0 0.2400 +0 0.2172 +0 0.0769 +0 0.1729 +0 0.1645 +0 0.1349 +0 0.1634 +0 0.0630 +0 0.1552 +0 0.7027 +0 0.0974 +0 0.1454 +0 0.1825 +0 0.1031 +0 0.0804 +0 0.2057 +0 0.2591 +0 0.2313 +0 0.1239 +0 0.0952 +0 0.0869 +0 0.0552 +0 0.0730 +1 0.8792 +0 0.1011 +0 0.0453 +0 0.0321 +0 0.0566 +0 0.1580 +0 0.1126 +0 0.0525 +0 0.1572 +0 0.0753 +0 0.0642 +0 0.2705 +0 0.0736 +0 0.0486 +0 0.1044 +0 0.1191 +0 0.0713 +0 0.1126 +0 0.1434 +0 0.1008 +0 0.1501 +0 0.2205 +0 0.0407 +0 0.2170 +0 0.0889 +0 0.1656 +0 0.0744 +0 0.1863 +0 0.1432 +0 0.1544 +0 0.1053 +0 0.0544 +0 0.3838 +0 0.0957 +1 0.7663 +0 0.1424 +0 0.1243 +0 0.1000 +0 0.0553 +0 0.0629 +0 0.0559 +0 0.1026 +0 0.0623 +0 0.4238 +0 0.1886 +0 0.1013 +0 0.1009 +0 0.1396 +0 0.0422 +0 0.1037 +0 0.0618 +0 0.0567 +0 0.2047 +0 0.1604 +0 0.1192 +0 0.0802 +0 0.0713 +0 0.1091 +0 0.1305 +0 0.1888 +0 0.0675 +0 0.1044 +0 0.0689 +0 0.1051 +0 0.1101 +0 0.2047 +0 0.4779 +0 0.0597 +0 0.0740 +0 0.0906 +0 0.2231 +0 0.0810 +0 0.2562 +0 0.6598 +0 0.0396 +0 0.5531 +0 0.0678 +0 0.0805 +0 0.1994 +0 0.0600 +0 0.0520 +0 0.0742 +0 0.1049 +0 0.0843 +0 0.0671 +0 0.1656 +0 0.1173 +0 0.0623 +0 0.0690 +0 0.1785 +0 0.1133 +0 0.0703 +0 0.1238 +0 0.0897 +0 0.1462 +0 0.0821 +0 0.0773 +0 0.0749 +0 0.1361 +0 0.7241 +0 0.0814 +0 0.1053 +0 0.0723 +0 0.0866 +0 0.5231 +0 0.1699 +0 0.2612 +0 0.0793 +0 0.0956 +0 0.1315 +0 0.2853 +0 0.0650 +0 0.6386 +0 0.2200 +0 0.0837 +0 0.1893 +0 0.1579 +0 0.2917 +0 0.0937 +0 0.0576 +0 0.0960 +0 0.0875 +0 0.1639 +0 0.0567 +0 0.0829 +0 0.0535 +0 0.0845 +0 0.0579 +0 0.0491 +0 0.2892 +0 0.0898 +0 0.1279 +0 0.0733 +0 0.1908 +0 0.0661 +0 0.0813 +0 0.4317 +0 0.1075 +0 0.1306 +0 0.2341 +0 0.0482 +0 0.1518 +0 0.0497 +0 0.1002 +0 0.1878 +0 0.0688 +0 0.0639 +0 0.0642 +0 0.0736 +0 0.1069 +0 0.0672 +0 0.0571 +0 0.1109 +0 0.1117 +0 0.2263 +0 0.0848 +0 0.1088 +0 0.2977 +0 0.1746 +0 0.2692 +0 0.0772 +0 0.2454 +0 0.0461 +0 0.1556 +1 0.8435 +0 0.1011 +0 0.0790 +0 0.1182 +0 0.7195 +0 0.1290 +0 0.0553 +0 0.6090 +0 0.0401 +0 0.0606 +0 0.4378 +0 0.1315 +0 0.0425 +0 0.1198 +0 0.1583 +0 0.1954 +0 0.7195 +0 0.1265 +0 0.0826 +0 0.1213 +0 0.1524 +0 0.0921 +0 0.0704 +0 0.1078 +0 0.4141 +0 0.0646 +0 0.2016 +0 0.0612 +0 0.0684 +0 0.1099 +0 0.1006 +0 0.3783 +0 0.1022 +1 0.8627 +0 0.1260 +0 0.4918 +0 0.0975 +0 0.0836 +0 0.1006 +0 0.1146 +0 0.0664 +0 0.1347 +0 0.1280 +0 0.1063 +0 0.2112 +0 0.1990 +0 0.2188 +0 0.0454 +0 0.1017 +0 0.0578 +0 0.0916 +0 0.0579 +0 0.0905 +0 0.0351 +0 0.0817 +0 0.1318 +0 0.0346 +0 0.1550 +0 0.0786 +0 0.1153 +0 0.2399 +0 0.1211 +0 0.1219 +0 0.0992 +0 0.0739 +0 0.0774 +0 0.0503 +0 0.3245 +0 0.0539 +0 0.0313 +0 0.0758 +0 0.1935 +0 0.2871 +0 0.1544 +0 0.0644 +0 0.0924 +0 0.0538 +1 0.7560 +0 0.0983 +0 0.1186 +0 0.0650 +0 0.0735 +0 0.2698 +0 0.1254 +0 0.1185 +0 0.1105 +0 0.1163 +0 0.0752 +0 0.1139 +0 0.0797 +0 0.1762 +0 0.1337 +0 0.1211 +0 0.1584 +0 0.2006 +0 0.1469 +0 0.1436 +0 0.1685 +0 0.0869 +0 0.1732 +0 0.0649 +0 0.5694 +0 0.1102 +1 0.8518 +0 0.0888 +0 0.0729 +0 0.0752 +0 0.3328 +0 0.0461 +0 0.1253 +0 0.0643 +0 0.0765 +0 0.0401 +0 0.1361 +0 0.0920 +0 0.0812 +0 0.3663 +0 0.1437 +0 0.1151 +0 0.0652 +0 0.1731 +0 0.1218 +0 0.0729 +0 0.0913 +0 0.4182 +0 0.1593 +1 0.7610 +0 0.0838 +0 0.0674 +0 0.0711 +0 0.0526 +0 0.1695 +0 0.0616 +0 0.2338 +0 0.1491 +0 0.1138 +0 0.0979 +0 0.1017 +0 0.2027 +0 0.0824 +0 0.3094 +0 0.1133 +0 0.2347 +0 0.1791 +0 0.1428 +0 0.1179 +0 0.0340 +0 0.2721 +0 0.0875 +0 0.0609 +0 0.1592 +0 0.0934 +0 0.1250 +0 0.1403 +0 0.3110 +0 0.0916 +0 0.0755 +0 0.2149 +0 0.1353 +0 0.2300 +0 0.1374 +0 0.1651 +0 0.1399 +0 0.0581 +0 0.0881 +0 0.1228 +0 0.1970 +0 0.1266 +0 0.0796 +0 0.0797 +0 0.0816 +0 0.0672 +0 0.2625 +0 0.1143 +0 0.1112 +0 0.1530 +0 0.0703 +0 0.1512 +0 0.0531 +0 0.0827 +0 0.0326 +0 0.2026 +0 0.2658 +0 0.2159 +0 0.0438 +0 0.2056 +0 0.0674 +0 0.0554 +0 0.0615 +0 0.1184 +0 0.2295 +0 0.1066 +0 0.0598 +0 0.0829 +0 0.0361 +0 0.1158 +0 0.0776 +1 0.7841 +0 0.1803 +0 0.1374 +0 0.0787 +0 0.7348 +0 0.0774 +0 0.2583 +0 0.1477 +0 0.1245 +0 0.1399 +0 0.1766 +0 0.0876 +0 0.1460 +0 0.1076 +0 0.0921 +0 0.2108 +0 0.0413 +0 0.1407 +0 0.0635 +0 0.1118 +0 0.1679 +0 0.0628 +0 0.5313 +0 0.0868 +0 0.2814 +0 0.0602 +0 0.0888 +0 0.1235 +0 0.0406 +0 0.1906 +0 0.1540 +0 0.0787 +0 0.1389 +0 0.1416 +0 0.0865 +0 0.1394 +0 0.2516 +0 0.0961 +0 0.3461 +0 0.1083 +0 0.0917 +0 0.1430 +0 0.3334 +0 0.0519 +0 0.0735 +0 0.0532 +0 0.0572 +0 0.0509 +0 0.2155 +0 0.1025 +0 0.1049 +0 0.0890 +0 0.0722 +0 0.0760 +0 0.1105 +0 0.2621 +0 0.2970 +0 0.4063 +0 0.1978 +0 0.1046 +0 0.0625 +0 0.1334 +0 0.1827 +0 0.1226 +0 0.0890 +0 0.0615 +0 0.0735 +0 0.0515 +0 0.0558 +0 0.1454 +0 0.1357 +0 0.0684 +0 0.1058 +0 0.0293 +0 0.2304 +0 0.1549 +0 0.1201 +1 0.7562 +0 0.1789 +0 0.0513 +0 0.1973 +0 0.0977 +0 0.5713 +0 0.1182 +0 0.0713 +0 0.0597 +0 0.1936 +0 0.0749 +0 0.0789 +0 0.1433 +0 0.1462 +0 0.0439 +0 0.1571 +0 0.0764 +0 0.1259 +0 0.1555 +0 0.0713 +0 0.1015 +0 0.1360 +0 0.1768 +0 0.0640 +0 0.1113 +0 0.0642 +0 0.0942 +0 0.0469 +0 0.2281 +1 0.7929 +0 0.1129 +0 0.0861 +0 0.0921 +0 0.3137 +0 0.0836 +0 0.0560 +0 0.0831 +0 0.0317 +0 0.0504 +0 0.0996 +0 0.1325 +0 0.0667 +0 0.0824 +0 0.2680 +0 0.0918 +0 0.0858 +0 0.3092 +0 0.1196 +0 0.2012 +0 0.4518 +0 0.0920 +0 0.6354 +0 0.0947 +0 0.0412 +0 0.0626 +0 0.1443 +0 0.6914 +0 0.0359 +0 0.0837 +0 0.1298 +0 0.0829 +0 0.0867 +0 0.0634 +0 0.0577 +0 0.0809 +0 0.1776 +0 0.1013 +0 0.2469 +0 0.0534 +0 0.1465 +0 0.1885 +0 0.0912 +0 0.1376 +0 0.1305 +0 0.0806 +0 0.1599 +0 0.3550 +0 0.0493 +0 0.1751 +0 0.0785 +0 0.0976 +0 0.2730 +0 0.1176 +0 0.1873 +0 0.0528 +0 0.0537 +0 0.0807 +0 0.1617 +0 0.1737 +0 0.1388 +0 0.1415 +0 0.0358 +0 0.0395 +0 0.0844 +0 0.1170 +0 0.1851 +0 0.0523 +0 0.1876 +0 0.1107 +0 0.0941 +0 0.2416 +0 0.3970 +0 0.1117 +0 0.4734 +0 0.4252 +0 0.0953 +0 0.0764 +0 0.0907 +0 0.0659 +0 0.0995 +0 0.1175 +0 0.0445 +0 0.1721 +0 0.0678 +0 0.0455 +0 0.2236 +0 0.0316 +0 0.0830 +0 0.1052 +0 0.3188 +0 0.5804 +0 0.0649 +0 0.2300 +0 0.3313 +0 0.2260 +0 0.0814 +0 0.1966 +0 0.0644 +0 0.1014 +0 0.1101 +0 0.0851 +0 0.0556 +0 0.1506 +0 0.1307 +0 0.1022 +0 0.1274 +0 0.1201 +0 0.1345 +0 0.0517 +0 0.1264 +0 0.1501 +1 0.7625 +1 0.8183 +0 0.2526 +0 0.0965 +0 0.1693 +0 0.2695 +0 0.1774 +0 0.0412 +0 0.1488 +0 0.1882 +0 0.0763 +0 0.0872 +0 0.2410 +0 0.1056 +0 0.7304 +0 0.0762 +0 0.0526 +0 0.0557 +0 0.1297 +0 0.0982 +0 0.0387 +0 0.0608 +0 0.1554 +0 0.2460 +0 0.0767 +0 0.1313 +0 0.0887 +0 0.1999 +0 0.1303 +0 0.0784 +0 0.0758 +0 0.1470 +0 0.2327 +0 0.0374 +0 0.0702 +0 0.2912 +0 0.1069 +0 0.1446 +0 0.1462 +0 0.0791 +0 0.1521 +0 0.1788 +0 0.1682 +0 0.0772 +0 0.0863 +0 0.3311 +0 0.1063 +0 0.2130 +0 0.2755 +0 0.0747 +0 0.1199 +0 0.2090 +0 0.1834 +0 0.0966 +0 0.1327 +0 0.1512 +0 0.1584 +0 0.1801 +0 0.0608 +0 0.1504 +0 0.1398 +0 0.0904 +0 0.0518 +0 0.0609 +0 0.2065 +0 0.0592 +0 0.2525 +0 0.0825 +0 0.1081 +0 0.0918 +0 0.1403 +0 0.2408 +0 0.3184 +0 0.0937 +0 0.1024 +0 0.1061 +0 0.0629 +0 0.1081 +0 0.1821 +0 0.1497 +0 0.1010 +0 0.7108 +0 0.1300 +0 0.0631 +0 0.0312 +0 0.2300 +0 0.0927 +0 0.1480 +0 0.1850 +0 0.0610 +0 0.6903 +0 0.1073 +0 0.1040 +0 0.1358 +0 0.1158 +0 0.1284 +0 0.7329 +0 0.0810 +0 0.0569 +0 0.0855 +0 0.1864 +0 0.0852 +0 0.1657 +0 0.1611 +0 0.1078 +0 0.2077 +1 0.7781 +0 0.1465 +0 0.0729 +0 0.1599 +0 0.0773 +0 0.0771 +1 0.7579 +0 0.1355 +0 0.1049 +0 0.0557 +0 0.1596 +0 0.0779 +0 0.1780 +0 0.1038 +0 0.3942 +0 0.1114 +0 0.1729 +0 0.0838 +1 0.8029 +0 0.3352 +0 0.1105 +0 0.3170 +0 0.1409 +0 0.0900 +0 0.1782 +0 0.0619 +0 0.2189 +0 0.0513 +0 0.1006 +0 0.0585 +0 0.2128 +0 0.0781 +1 0.8521 +0 0.0601 +0 0.2018 +0 0.3377 +0 0.1434 +0 0.7312 +0 0.1941 +0 0.2409 +0 0.0475 +0 0.0647 +0 0.0878 +0 0.0788 +0 0.4035 +0 0.0845 +0 0.1331 +0 0.0980 +0 0.0895 +0 0.0426 +0 0.0990 +0 0.0611 +0 0.0671 +0 0.0948 +0 0.0941 +0 0.0835 +0 0.0588 +0 0.0673 +0 0.1032 +0 0.0824 +0 0.1743 +0 0.0554 +0 0.0938 +0 0.0596 +0 0.1094 +0 0.1486 +0 0.2599 +0 0.0938 +0 0.1547 +0 0.1214 +0 0.0577 +0 0.0617 +0 0.0615 +0 0.0775 +0 0.1024 +0 0.2183 +0 0.1637 +0 0.1321 +0 0.1513 +0 0.0720 +0 0.0403 +0 0.0555 +0 0.0662 +0 0.1012 +0 0.6020 +0 0.0729 +0 0.0875 +1 0.8546 +0 0.1240 +0 0.0591 +0 0.1212 +0 0.1634 +0 0.0998 +0 0.0972 +0 0.1761 +0 0.0860 +0 0.3517 +0 0.2439 +0 0.0440 +0 0.0699 +0 0.1236 +0 0.0609 +0 0.0446 +0 0.0584 +0 0.0685 +1 0.7770 +0 0.1174 +0 0.2732 +0 0.0764 +0 0.1300 +0 0.1900 +0 0.1444 +0 0.3395 +0 0.0836 +0 0.0521 +0 0.6286 +0 0.0560 +0 0.0839 +0 0.0668 +0 0.0692 +0 0.0896 +0 0.0892 +0 0.1019 +0 0.1357 +0 0.1966 +0 0.3699 +0 0.0693 +0 0.1550 +1 0.7735 +0 0.3556 +0 0.0752 +0 0.0564 +0 0.3394 +0 0.0731 +0 0.1950 +1 0.8506 +0 0.0535 +0 0.2039 +0 0.0828 +0 0.0741 +0 0.0366 +0 0.2285 +0 0.1056 +0 0.0808 +0 0.0541 +0 0.0709 +0 0.0717 +0 0.1402 +0 0.2131 +0 0.0443 +0 0.0970 +0 0.0760 +0 0.2559 +0 0.1911 +0 0.1329 +0 0.0975 +0 0.1553 +0 0.1159 +0 0.1934 +0 0.1325 +0 0.0847 +0 0.1717 +0 0.1575 +0 0.0974 +0 0.0944 +0 0.1125 +0 0.0475 +0 0.0727 +0 0.0967 +0 0.0677 +0 0.3332 +0 0.1087 +0 0.0818 +0 0.1148 +0 0.0511 +0 0.2351 +0 0.0976 +0 0.0325 +1 0.8148 +0 0.1716 +0 0.0500 +0 0.0849 +0 0.1497 +0 0.1049 +0 0.1105 +0 0.3310 +0 0.2426 +0 0.5123 +0 0.2202 +0 0.1297 +0 0.0853 +0 0.0406 +0 0.0953 +0 0.0908 +0 0.1998 +0 0.0686 +0 0.1419 +0 0.1571 +0 0.6256 +0 0.0616 +0 0.1006 +0 0.0654 +0 0.0819 +0 0.0559 +0 0.0796 +0 0.1066 +0 0.1525 +0 0.0646 +0 0.0565 +0 0.4537 +0 0.0894 +0 0.1232 +0 0.0632 +0 0.2371 +0 0.1190 +0 0.2462 +1 0.7898 +0 0.1415 +0 0.0685 +0 0.0560 +0 0.1658 +0 0.1501 +0 0.1067 +0 0.0358 +0 0.0997 +0 0.2015 +0 0.0318 +0 0.0828 +0 0.1306 +0 0.1088 +0 0.0948 +0 0.1187 +0 0.1485 +0 0.0626 +0 0.0501 +0 0.3094 +0 0.0530 +0 0.0530 +0 0.1253 +0 0.2037 +0 0.1088 +0 0.1859 +0 0.0524 +0 0.3576 +0 0.0992 +0 0.1111 +0 0.0432 +0 0.0804 +0 0.1484 +0 0.1073 +0 0.2566 +0 0.1376 +0 0.1628 +0 0.1072 +0 0.2003 +0 0.1888 +0 0.2316 +0 0.1431 +0 0.6375 +0 0.0862 +0 0.2393 +0 0.1964 +0 0.1381 +0 0.0718 +0 0.1902 +0 0.2265 +0 0.0866 +0 0.1692 +0 0.0444 +1 0.7700 +0 0.0659 +0 0.0958 +0 0.0371 +0 0.3394 +0 0.1424 +0 0.1098 +0 0.0859 +0 0.0823 +0 0.5491 +0 0.0865 +0 0.0937 +0 0.1653 +0 0.0599 +0 0.0493 +0 0.0581 +0 0.2727 +0 0.1176 +0 0.1103 +0 0.0519 +0 0.0396 +1 0.7725 +1 0.8076 +0 0.6141 +0 0.1114 +0 0.0713 +0 0.1398 +0 0.0405 +0 0.1448 +0 0.0864 +0 0.1492 +0 0.1135 +0 0.0567 +0 0.0828 +0 0.0884 +0 0.2095 +0 0.4538 +0 0.2092 +0 0.1912 +0 0.1349 +0 0.2869 +0 0.1144 +0 0.0566 +0 0.0571 +0 0.0933 +0 0.0512 +0 0.0717 +0 0.2695 +0 0.0541 +0 0.0545 +0 0.4542 +0 0.0711 +0 0.0876 +0 0.1906 +0 0.1200 +1 0.8215 +0 0.0961 +0 0.0867 +0 0.0422 +0 0.0717 +0 0.0932 +0 0.0890 +0 0.1297 +0 0.0827 +0 0.0563 +0 0.0967 +0 0.0996 +0 0.1682 +0 0.2284 +0 0.1901 +0 0.3506 +0 0.1028 +0 0.0391 +0 0.0341 +0 0.1412 +0 0.2546 +0 0.6831 +0 0.1129 +0 0.2172 +0 0.1100 +0 0.1081 +0 0.1154 +0 0.1488 +0 0.0717 +0 0.0657 +0 0.2018 +1 0.8615 +0 0.0975 +0 0.0779 +0 0.1612 +0 0.2059 +0 0.3136 +0 0.1151 +0 0.1509 +0 0.1730 +0 0.0420 +0 0.1041 +0 0.0799 +0 0.2442 +0 0.0915 +0 0.6653 +0 0.0570 +0 0.0619 +0 0.2615 +0 0.0452 +0 0.1027 +0 0.0552 +0 0.1663 +0 0.0966 +0 0.1008 +0 0.0595 +0 0.2166 +0 0.1490 +0 0.1447 +0 0.1500 +0 0.0636 +0 0.1011 +0 0.1883 +0 0.0546 +0 0.0647 +0 0.1647 +0 0.1081 +0 0.0844 +0 0.0817 +0 0.6849 +0 0.1511 +0 0.2035 +0 0.0563 +0 0.0562 +0 0.0735 +0 0.2955 +0 0.0385 +1 0.8657 +0 0.0570 +0 0.0728 +0 0.0638 +0 0.1751 +0 0.2235 +0 0.0947 +1 0.7735 +0 0.0639 +0 0.1192 +0 0.1167 +0 0.0645 +0 0.0909 +0 0.0439 +0 0.0543 +0 0.1051 +0 0.2297 +0 0.0593 +0 0.0779 +0 0.2134 +0 0.0457 +0 0.1197 +0 0.0448 +0 0.0912 +0 0.0825 +0 0.1295 +0 0.1107 +0 0.1166 +0 0.0909 +0 0.1659 +0 0.1310 +0 0.0895 +0 0.1741 +0 0.3984 +0 0.0832 +0 0.1019 +0 0.0852 +0 0.0856 +0 0.1883 +0 0.0524 +0 0.2645 +0 0.0890 +0 0.0354 +0 0.0904 +0 0.0769 +0 0.0453 +0 0.0913 +0 0.0661 +0 0.2600 +0 0.1520 +0 0.0623 +0 0.0974 +0 0.1175 +0 0.0742 +0 0.1430 +0 0.0661 +0 0.1565 +0 0.1006 +0 0.0910 +0 0.1123 +0 0.0840 +0 0.1226 +0 0.1566 +0 0.5955 +0 0.0872 +0 0.0475 +0 0.0657 +0 0.1406 +1 0.8828 +0 0.0928 +0 0.0640 +0 0.0709 +0 0.0591 +0 0.0554 +0 0.1796 +0 0.0598 +0 0.0962 +0 0.1616 +0 0.0414 +0 0.1382 +0 0.6502 +0 0.2735 +0 0.2037 +0 0.1400 +0 0.1363 +0 0.0391 +0 0.0643 +0 0.1275 +0 0.3491 +0 0.0648 +0 0.2847 +0 0.0653 +0 0.1575 +0 0.3114 +0 0.1267 +0 0.0852 +0 0.1278 +0 0.0453 +0 0.1299 +0 0.0455 +0 0.2999 +0 0.0552 +0 0.1590 +0 0.0712 +0 0.1290 +0 0.0665 +0 0.6965 +0 0.1541 +0 0.1634 +0 0.3152 +0 0.1412 +0 0.1539 +0 0.0456 +0 0.0897 +0 0.0921 +0 0.1003 +0 0.1300 +0 0.1107 +0 0.1246 +0 0.1058 +0 0.0744 +0 0.0340 +0 0.1152 +0 0.1008 +0 0.0797 +0 0.0786 +0 0.0519 +0 0.2380 +0 0.2478 +0 0.1424 +0 0.1817 +0 0.0389 +0 0.0777 +0 0.1467 +0 0.0996 +0 0.1404 +0 0.1723 +0 0.3221 +0 0.2721 +0 0.0472 +0 0.1132 +0 0.0845 +0 0.3074 +0 0.0730 +0 0.0827 +0 0.1314 +0 0.0951 +0 0.1580 +0 0.2592 +0 0.2250 +0 0.1608 +0 0.2440 +0 0.1438 +0 0.0496 +0 0.0958 +0 0.1541 +0 0.2170 +0 0.0728 +0 0.0563 +1 0.7528 +0 0.3420 +0 0.0917 +0 0.0818 +0 0.2080 +0 0.0995 +0 0.3041 +0 0.0908 +0 0.0687 +1 0.7914 +0 0.0987 +0 0.0505 +0 0.1193 +0 0.1089 +0 0.0933 +0 0.1055 +0 0.2779 +0 0.1281 +0 0.0640 +0 0.0907 +0 0.6177 +0 0.2248 +0 0.0830 +0 0.0942 +0 0.0968 +0 0.0765 +0 0.0932 +0 0.1728 +0 0.1258 +0 0.0471 +0 0.1132 +0 0.0809 +0 0.0982 +0 0.1112 +0 0.4082 +0 0.2848 +0 0.0803 +0 0.0703 +0 0.0799 +1 0.7624 +0 0.0817 +0 0.0578 +1 0.8273 +0 0.1261 +0 0.0626 +0 0.0875 +0 0.1495 +0 0.6375 +0 0.1772 +0 0.1848 +0 0.0560 +0 0.1307 +0 0.1338 +0 0.0935 +0 0.2411 +0 0.0644 +0 0.2122 +0 0.0754 +0 0.0540 +0 0.2197 +0 0.4415 +0 0.1077 +0 0.0633 +0 0.1705 +0 0.0549 +0 0.0394 +0 0.1071 +0 0.1074 +0 0.1063 +0 0.1728 +0 0.1690 +0 0.1928 +0 0.0843 +0 0.0958 +0 0.0654 +0 0.0554 +0 0.1043 +0 0.2295 +0 0.1240 +0 0.1028 +0 0.1296 +0 0.0859 +0 0.2339 +0 0.1353 +0 0.0854 +0 0.1096 +0 0.0901 +0 0.0692 +0 0.0826 +0 0.1318 +0 0.0607 +0 0.0687 +0 0.0888 +0 0.0424 +0 0.0552 +0 0.1353 +0 0.0843 +0 0.0559 +0 0.1668 +0 0.1497 +0 0.1332 +0 0.3053 +0 0.0964 +0 0.0534 +0 0.0878 +0 0.1110 +0 0.1765 +0 0.0436 +0 0.1840 +0 0.2964 +0 0.0470 +0 0.0997 +0 0.1259 +0 0.0567 +0 0.1712 +0 0.5858 +0 0.1989 +0 0.1374 +0 0.1767 +0 0.0486 +0 0.0967 +0 0.0651 +0 0.0934 +0 0.0576 +0 0.0704 +0 0.0339 +0 0.1501 +0 0.0828 +0 0.0940 +0 0.0439 +0 0.1422 +1 0.7633 +0 0.1246 +0 0.1466 +0 0.0621 +0 0.0938 +0 0.4176 +0 0.1128 +0 0.0697 +0 0.0406 +0 0.0458 +0 0.0970 +0 0.0726 +0 0.1057 +0 0.1642 +0 0.0705 +0 0.1655 +0 0.0649 +0 0.1199 +0 0.0900 +0 0.2331 +0 0.1486 +1 0.8245 +0 0.0746 +0 0.1483 +0 0.0923 +0 0.0809 +0 0.2964 +0 0.0774 +0 0.0735 +0 0.6849 +0 0.1731 +0 0.1046 +0 0.0787 +0 0.1828 +0 0.0828 +0 0.1883 +0 0.0922 +0 0.4367 +0 0.1059 +1 0.8751 +0 0.1587 +0 0.0420 +0 0.0937 +0 0.2966 +0 0.3268 +0 0.1088 +0 0.1172 +0 0.2005 +0 0.0742 +0 0.6653 +1 0.8267 +0 0.0715 +0 0.0625 +0 0.0976 +0 0.0763 +0 0.1567 +0 0.1786 +0 0.1370 +0 0.0653 +0 0.0476 +1 0.8541 +0 0.0573 +0 0.1967 +0 0.0574 +0 0.1238 +0 0.0577 +0 0.6996 +0 0.0424 +0 0.4600 +0 0.0825 +0 0.0802 +0 0.0601 +0 0.0606 +0 0.1072 +0 0.0505 +0 0.0530 +0 0.0747 +0 0.0529 +0 0.0412 +0 0.1029 +0 0.1601 +0 0.4361 +0 0.0963 +0 0.3532 +0 0.1476 +0 0.0457 +0 0.1369 +0 0.1689 +0 0.4018 +0 0.4228 +0 0.0499 +0 0.0732 +0 0.2456 +0 0.2553 +0 0.1316 +0 0.1224 +0 0.1258 +0 0.0685 +0 0.1984 +0 0.1315 +0 0.5557 +0 0.2130 +0 0.1363 +0 0.0585 +0 0.0490 +0 0.0627 +0 0.0868 +0 0.1008 +0 0.1877 +0 0.1269 +0 0.7262 +0 0.1264 +0 0.1802 +0 0.0688 +0 0.0828 +0 0.2206 +0 0.0755 +0 0.0677 +0 0.0899 +0 0.1039 +0 0.0668 +0 0.2527 +0 0.0919 +0 0.2067 +0 0.1273 +0 0.1155 +0 0.0803 +0 0.1240 +0 0.0713 +0 0.0854 +0 0.1957 +0 0.0961 +0 0.4364 +0 0.0671 +0 0.0474 +0 0.0411 +0 0.1620 +0 0.3777 +0 0.1398 +0 0.0979 +0 0.2413 +0 0.1002 +0 0.0710 +0 0.1000 +0 0.0900 +1 0.7835 +0 0.0765 +0 0.1398 +0 0.3869 +0 0.1776 +0 0.0690 +0 0.0989 +0 0.2136 +0 0.0582 +0 0.1193 +0 0.0669 +0 0.0919 +0 0.0764 +0 0.1028 +0 0.0865 +0 0.1802 +0 0.1315 +0 0.0381 +0 0.0795 +0 0.5346 +0 0.1250 +0 0.1587 +0 0.0849 +0 0.1662 +0 0.1936 +0 0.0792 +0 0.0898 +0 0.2907 +0 0.4478 +0 0.1953 +0 0.0828 +0 0.0779 +0 0.1623 +0 0.0647 +0 0.1129 +0 0.0551 +0 0.0970 +0 0.0957 +0 0.7444 +0 0.0729 +0 0.1346 +0 0.0967 +0 0.3213 +0 0.0517 +0 0.0528 +0 0.3476 +0 0.0608 +0 0.2963 +0 0.0938 +0 0.1906 +0 0.0837 +0 0.6121 +0 0.0573 +0 0.3173 +0 0.0823 +0 0.0506 +0 0.1161 +0 0.1457 +0 0.1369 +0 0.0581 +0 0.2361 +0 0.4462 +0 0.1186 +0 0.2011 +0 0.0930 +0 0.0850 +0 0.1044 +0 0.0740 +0 0.1858 +0 0.1087 +0 0.0424 +0 0.1784 +0 0.1333 +0 0.0407 +0 0.3040 +0 0.0733 +0 0.0701 +0 0.2733 +0 0.0947 +0 0.0578 +0 0.1610 +0 0.5389 +0 0.0525 +0 0.0863 +0 0.0729 +0 0.0625 +0 0.1004 +0 0.7306 +0 0.0619 +0 0.0679 +0 0.0704 +0 0.3266 +0 0.2160 +0 0.0592 +0 0.0471 +0 0.1316 +0 0.0699 +0 0.1548 +0 0.0844 +0 0.0638 +0 0.1790 +0 0.0659 +0 0.0769 +0 0.0938 +0 0.0814 +0 0.1254 +0 0.1439 +0 0.2491 +0 0.1667 +0 0.0962 +0 0.0458 +0 0.1117 +0 0.0540 +0 0.1291 +0 0.1233 +0 0.0758 +0 0.0856 +0 0.2270 +0 0.0411 +0 0.2961 +0 0.3464 +0 0.1522 +0 0.1523 +0 0.4536 +0 0.0948 +0 0.0928 +0 0.0838 +0 0.1154 +0 0.2679 +0 0.0938 +0 0.0691 +0 0.0909 +0 0.1199 +0 0.1019 +0 0.0519 +0 0.1310 +0 0.0876 +0 0.1243 +0 0.0454 +0 0.0799 +0 0.0379 +0 0.0561 +0 0.0972 +0 0.1846 +0 0.5677 +0 0.2025 +0 0.1278 +0 0.6716 +0 0.1118 +0 0.3493 +0 0.0312 +0 0.1277 +0 0.0943 +0 0.0981 +0 0.0457 +0 0.0831 +0 0.0919 +0 0.1304 +0 0.0766 +0 0.1010 +0 0.0629 +0 0.2125 +0 0.3522 +0 0.2526 +0 0.3479 +0 0.5481 +0 0.0934 +0 0.0493 +0 0.0817 +0 0.1150 +0 0.1158 +0 0.0608 +0 0.0898 +0 0.1126 +0 0.0456 +0 0.1639 +0 0.3011 +0 0.3521 +0 0.0934 +1 0.7934 +0 0.1147 +0 0.0822 +0 0.0598 +0 0.3262 +0 0.0619 +1 0.8510 +0 0.7206 +0 0.0996 +0 0.1108 +0 0.0735 +0 0.0845 +0 0.0844 +0 0.2087 +0 0.1789 +0 0.0947 +0 0.0636 +0 0.6791 +0 0.0505 +0 0.1079 +0 0.1005 +0 0.0571 +0 0.0672 +0 0.1519 +0 0.0372 +0 0.0930 +0 0.1741 +0 0.1302 +0 0.1011 +0 0.1238 +0 0.0917 +0 0.1649 +0 0.0800 +0 0.1174 +0 0.1674 +0 0.0731 +0 0.1321 +0 0.1202 +0 0.1801 +0 0.0847 +0 0.0837 +0 0.0851 +0 0.1490 +0 0.0851 +0 0.0539 +0 0.0665 +0 0.2183 +0 0.1380 +0 0.0655 +0 0.1819 +0 0.0814 +0 0.0725 +0 0.0497 +0 0.1279 +0 0.1268 +0 0.1529 +0 0.0326 +0 0.0742 +0 0.1111 +0 0.1016 +0 0.1553 +0 0.0820 +0 0.0621 +0 0.1028 +0 0.0934 +0 0.1335 +0 0.0669 +0 0.1441 +0 0.1336 +0 0.3438 +0 0.1376 +0 0.1222 +0 0.1460 +0 0.0923 +0 0.0923 +0 0.5281 +0 0.2193 +0 0.0587 +0 0.0734 +0 0.1133 +0 0.1122 +0 0.0778 +0 0.0951 +0 0.1175 +0 0.1189 +0 0.1082 +0 0.0445 +0 0.2003 +0 0.1266 +0 0.0501 +0 0.0558 +0 0.1176 +0 0.0571 +0 0.1299 +0 0.1277 +0 0.1776 +0 0.3993 +0 0.0811 +0 0.2380 +0 0.1495 +0 0.1177 +0 0.2547 +0 0.3572 +0 0.0782 +0 0.0635 +0 0.0501 +0 0.0872 +0 0.1221 +0 0.1719 +0 0.0705 +0 0.1220 +0 0.0343 +1 0.8127 +0 0.0839 +0 0.0822 +0 0.2585 +0 0.1280 +0 0.0642 +0 0.7472 +0 0.0440 +0 0.1015 +0 0.1067 +0 0.1286 +0 0.0766 +0 0.2743 +0 0.1280 +0 0.1616 +0 0.1021 +0 0.1901 +0 0.2404 +0 0.6639 +0 0.0365 +0 0.0859 +0 0.0876 +1 0.8048 +0 0.3049 +0 0.1605 +0 0.1555 +0 0.1510 +0 0.1396 +0 0.1433 +0 0.2721 +0 0.7324 +0 0.2091 +1 0.7773 +0 0.1026 +0 0.1592 +0 0.5942 +0 0.1362 +0 0.1197 +0 0.0869 +0 0.1454 +0 0.1034 +0 0.0593 +0 0.0788 +0 0.1260 +0 0.0863 +0 0.1019 +0 0.1745 +0 0.0773 +0 0.0884 +0 0.1209 +0 0.0761 +0 0.0750 +0 0.3998 +0 0.0695 +0 0.1703 +0 0.0987 +0 0.0766 +0 0.0840 +0 0.0621 +0 0.2053 +0 0.3555 +0 0.0659 +0 0.1773 +0 0.0745 +0 0.0634 +0 0.0912 +0 0.1123 +0 0.2944 +0 0.0548 +0 0.1349 +0 0.0741 +0 0.1057 +0 0.0777 +0 0.1271 +0 0.1126 +0 0.1381 +0 0.2421 +0 0.1313 +0 0.0473 +0 0.0499 +0 0.0527 +0 0.0866 +0 0.0888 +0 0.1106 +0 0.1184 +0 0.1621 +0 0.3509 +0 0.0621 +0 0.0873 +0 0.1138 +0 0.0930 +1 0.8885 +0 0.1879 +0 0.0588 +0 0.1069 +0 0.1141 +0 0.1232 +0 0.1308 +0 0.0973 +0 0.7285 +0 0.0681 +0 0.0775 +0 0.1103 +0 0.1640 +0 0.0785 +0 0.0900 +0 0.0324 +0 0.0889 +0 0.1700 +0 0.1201 +0 0.1734 +0 0.0999 +0 0.1819 +0 0.0573 +0 0.0948 +0 0.1288 +0 0.0630 +0 0.1150 +0 0.0896 +0 0.0726 +0 0.1174 +0 0.1869 +0 0.0425 +0 0.0916 +0 0.1180 +0 0.0809 +0 0.4287 +0 0.1070 +0 0.1050 +0 0.0695 +0 0.2391 +0 0.0348 +0 0.0441 +0 0.0696 +0 0.1202 +0 0.0780 +0 0.2062 +0 0.1041 +0 0.0516 +0 0.0557 +0 0.1035 +0 0.0921 +0 0.2664 +0 0.0684 +0 0.1464 +0 0.1515 +0 0.0627 +0 0.1609 +0 0.0488 +0 0.2268 +0 0.3439 +0 0.1471 +0 0.1256 +1 0.7714 +0 0.0927 +0 0.0596 +0 0.0574 +0 0.0858 +0 0.1305 +0 0.0739 +0 0.1375 +0 0.1108 +0 0.1161 +0 0.5758 +1 0.7653 +0 0.1486 +0 0.1531 +0 0.1559 +0 0.0475 +0 0.0876 +0 0.1282 +0 0.0457 +0 0.1300 +0 0.0913 +0 0.0684 +0 0.0639 +0 0.1498 +0 0.1615 +0 0.0993 +0 0.0685 +0 0.1476 +0 0.1207 +0 0.1040 +0 0.1554 +0 0.1323 +0 0.2407 +0 0.1219 +0 0.1534 +0 0.3864 +0 0.2143 +0 0.0833 +0 0.0774 +0 0.0803 +0 0.1705 +0 0.1441 +0 0.1485 +0 0.1572 +0 0.1156 +0 0.0667 +0 0.0401 +0 0.1247 +0 0.1286 +0 0.0917 +0 0.0660 +0 0.0484 +0 0.0820 +0 0.0798 +0 0.0593 +0 0.0886 +0 0.0788 +0 0.0836 +0 0.0750 +0 0.0519 +0 0.5325 +0 0.4282 +0 0.0863 +0 0.1000 +0 0.0806 +0 0.0753 +0 0.3195 +0 0.1805 +0 0.0581 +0 0.0945 +0 0.1357 +0 0.1601 +0 0.0690 +0 0.1774 +0 0.0979 +0 0.7297 +0 0.7184 +0 0.0608 +0 0.3131 +0 0.1447 +0 0.0927 +0 0.2118 +0 0.1070 +0 0.0504 +0 0.0951 +0 0.2844 +0 0.0800 +0 0.0839 +0 0.1047 +0 0.6852 +0 0.2865 +0 0.2586 +0 0.1036 +0 0.3180 +0 0.2111 +0 0.0525 +0 0.3445 +0 0.0593 +0 0.0741 +0 0.1252 +0 0.0665 +0 0.2961 +0 0.0595 +0 0.3957 +0 0.0917 +0 0.0864 +0 0.0667 +0 0.1170 +0 0.1630 +0 0.2039 +0 0.1101 +0 0.1758 +0 0.1259 +0 0.0554 +0 0.0520 +0 0.1086 +0 0.1766 +0 0.0914 +0 0.0526 +0 0.0535 +0 0.1037 +0 0.0673 +0 0.1050 +0 0.0767 +0 0.0745 +0 0.0868 +0 0.2563 +0 0.0619 +0 0.0535 +0 0.2054 +0 0.2886 +0 0.4599 +0 0.0625 +0 0.0600 +0 0.0757 +0 0.1448 +0 0.1427 +0 0.1655 +0 0.0425 +0 0.0912 +0 0.1353 +0 0.1075 +0 0.1242 +0 0.1183 +0 0.2000 +0 0.0885 +0 0.0707 +0 0.1085 +0 0.0510 +0 0.1508 +0 0.2173 +0 0.0670 +0 0.0906 +0 0.0893 +0 0.0935 +0 0.1998 +0 0.1378 +0 0.0673 +0 0.1666 +0 0.0940 +0 0.0831 +0 0.0737 +0 0.1179 +0 0.0357 +0 0.1665 +0 0.1432 +0 0.1576 +0 0.1055 +0 0.0653 +0 0.0696 +0 0.1365 +0 0.1512 +0 0.1602 +0 0.3175 +0 0.0448 +0 0.1146 +0 0.0511 +0 0.0986 +0 0.0603 +0 0.1119 +0 0.0970 +0 0.1524 +0 0.1967 +0 0.1348 +0 0.0761 +0 0.1291 +0 0.0625 +0 0.0538 +0 0.1033 +0 0.1205 +0 0.1497 +0 0.0516 +0 0.1423 +0 0.0943 +0 0.1021 +0 0.0666 +0 0.1687 +0 0.2527 +0 0.2410 +0 0.0851 +0 0.2163 +0 0.0496 +0 0.1273 +0 0.4221 +0 0.0818 +0 0.1783 +0 0.0498 +0 0.0782 +0 0.0612 +1 0.8648 +0 0.1059 +0 0.1929 +0 0.3126 +0 0.0379 +0 0.1498 +0 0.2869 +0 0.0721 +0 0.1548 +0 0.0680 +0 0.1275 +0 0.0344 +0 0.0935 +0 0.1965 +0 0.1501 +0 0.1228 +0 0.0887 +0 0.2015 +0 0.0608 +0 0.0981 +0 0.0721 +0 0.0446 +0 0.1371 +0 0.1289 +0 0.0683 +0 0.0583 +0 0.0468 +0 0.3058 +0 0.0710 +0 0.0725 +0 0.0588 +0 0.1016 +0 0.1353 +0 0.1166 +0 0.0509 +0 0.0845 +0 0.0614 +0 0.1157 +0 0.1243 +0 0.0489 +0 0.1475 +0 0.0881 +0 0.0472 +0 0.0796 +0 0.0349 +0 0.1415 +0 0.0370 +0 0.0591 +0 0.1350 +0 0.0837 +0 0.2005 +0 0.0833 +0 0.0669 +0 0.1302 +0 0.1318 +0 0.0927 +0 0.1058 +0 0.0904 +0 0.2160 +0 0.0757 +0 0.0994 +0 0.1189 +0 0.0573 +0 0.1713 +0 0.1903 +0 0.1030 +0 0.0621 +0 0.1657 +0 0.1628 +0 0.1199 +0 0.0947 +0 0.2512 +0 0.1343 +0 0.0644 +0 0.0924 +0 0.0287 +0 0.0936 +0 0.1811 +0 0.3735 +0 0.0808 +0 0.0601 +0 0.0924 +0 0.0697 +0 0.1455 +0 0.1526 +0 0.1348 +0 0.0988 +0 0.0428 +0 0.0830 +0 0.1191 +0 0.1087 +0 0.0949 +0 0.1006 +0 0.1661 +0 0.1453 +0 0.0616 +0 0.0578 +0 0.0690 +0 0.0514 +0 0.2351 +0 0.1031 +0 0.1683 +0 0.0508 +0 0.0700 +0 0.0740 +0 0.0985 +0 0.0375 +0 0.0987 +0 0.0462 +0 0.1059 +0 0.0450 +0 0.0487 +0 0.2607 +0 0.1410 +0 0.1267 +0 0.0964 +0 0.5685 +0 0.1171 +0 0.5761 +0 0.3649 +0 0.1186 +0 0.0360 +0 0.0895 +0 0.0393 +0 0.0683 +0 0.0871 +0 0.0622 +0 0.0896 +0 0.0868 +0 0.1023 +0 0.0650 +0 0.0488 +0 0.1260 +0 0.0595 +0 0.7277 +0 0.6110 +0 0.0700 +0 0.6536 +0 0.2565 +1 0.7561 +0 0.4304 +0 0.1681 +0 0.1713 +0 0.0940 +0 0.1039 +0 0.1129 +0 0.1136 +0 0.2592 +1 0.7675 +0 0.2789 +1 0.8371 +0 0.0611 +0 0.1299 +0 0.2002 +0 0.0704 +0 0.0822 +0 0.4197 +0 0.2594 +0 0.0435 +0 0.1214 +0 0.0740 +0 0.1042 +0 0.0695 +0 0.0558 +0 0.2242 +0 0.2284 +0 0.0911 +1 0.7551 +0 0.1223 +0 0.1257 +0 0.0622 +0 0.1247 +0 0.0753 +0 0.1781 +0 0.0889 +0 0.0649 +0 0.4235 +0 0.0574 +0 0.0912 +0 0.0708 +0 0.1859 +0 0.0632 +0 0.0781 +0 0.2829 +0 0.0747 +0 0.0920 +0 0.1051 +0 0.2075 +0 0.7119 +0 0.1073 +0 0.1293 +0 0.0651 +0 0.2069 +0 0.1696 +0 0.1076 +0 0.1626 +0 0.1353 +0 0.1048 +0 0.0407 +0 0.4915 +0 0.0499 +0 0.0721 +0 0.0705 +0 0.0553 +0 0.0567 +0 0.1643 +0 0.1104 +0 0.1429 +0 0.3337 +0 0.6281 +0 0.0971 +0 0.0776 +1 0.7601 +0 0.0677 +0 0.1914 +0 0.1207 +0 0.0953 +0 0.0674 +0 0.0438 +0 0.0618 +0 0.1686 +0 0.1149 +0 0.1027 +0 0.0906 +0 0.2654 +0 0.1747 +0 0.0560 +0 0.1762 +0 0.0725 +0 0.0687 +0 0.0825 +0 0.1520 +0 0.1403 +0 0.1175 +0 0.1323 +0 0.0484 +0 0.0933 +0 0.1402 +0 0.0705 +0 0.3441 +0 0.1331 +0 0.0905 +0 0.1025 +0 0.0591 +0 0.3108 +0 0.0485 +0 0.1326 +0 0.1048 +0 0.1521 +0 0.0381 +0 0.4881 +1 0.7712 +0 0.1724 +0 0.0720 +0 0.0667 +0 0.2567 +0 0.0445 +0 0.0935 +0 0.0750 +0 0.0463 +0 0.1262 +0 0.1523 +0 0.1497 +0 0.0934 +0 0.1276 +0 0.0751 +0 0.0731 +0 0.1210 +0 0.2087 +0 0.0352 +0 0.1000 +0 0.0663 +1 0.7977 +0 0.0497 +0 0.0833 +0 0.1014 +0 0.0408 +0 0.0560 +0 0.0753 +0 0.1934 +0 0.0526 +0 0.1856 +0 0.3430 +0 0.0944 +0 0.1780 +0 0.1277 +0 0.0698 +0 0.2332 +0 0.0577 +0 0.7471 +0 0.1225 +0 0.2068 +0 0.1124 +0 0.1589 +0 0.1457 +0 0.0737 +0 0.3045 +1 0.8233 +0 0.0745 +0 0.0681 +0 0.0542 +0 0.1074 +0 0.0706 +0 0.0822 +0 0.1478 +0 0.1945 +0 0.2175 +0 0.0499 +0 0.0765 +0 0.1932 +0 0.1547 +0 0.1018 +0 0.0843 +0 0.0532 +0 0.0508 +0 0.1053 +0 0.0900 +0 0.0691 +0 0.0478 +0 0.1649 +0 0.3206 +0 0.1343 +0 0.0676 +0 0.4000 +0 0.2260 +0 0.1948 +0 0.0596 +0 0.1034 +0 0.2084 +0 0.1116 +0 0.1325 +0 0.1158 +0 0.1009 +0 0.0788 +0 0.2072 +0 0.0449 +0 0.1009 +0 0.0780 +0 0.1543 +0 0.1936 +0 0.0491 +0 0.1119 +0 0.5555 +0 0.3139 +0 0.0776 +0 0.0867 +0 0.1303 +0 0.0584 +0 0.1377 +0 0.0426 +0 0.0607 +0 0.0383 +0 0.0561 +0 0.1727 +0 0.1730 +0 0.2546 +0 0.0803 +0 0.0541 +0 0.1111 +0 0.2048 +0 0.0526 +0 0.0509 +0 0.2017 +0 0.5295 +0 0.0969 +0 0.0913 +0 0.1134 +0 0.0430 +0 0.0772 +0 0.2480 +0 0.5499 +0 0.1417 +0 0.1675 +0 0.1539 +0 0.1315 +0 0.1027 +0 0.1086 +0 0.1192 +0 0.1189 +0 0.1671 +0 0.0558 +0 0.1313 +0 0.2781 +0 0.0741 +0 0.2489 +0 0.1778 +0 0.1267 +0 0.0801 +0 0.0565 +0 0.0712 +0 0.0617 +0 0.0955 +0 0.1128 +0 0.6663 +0 0.1356 +0 0.2109 +1 0.7740 +0 0.0554 +0 0.0868 +0 0.0889 +0 0.0755 +0 0.0492 +0 0.0763 +0 0.0454 +0 0.0860 +0 0.2117 +0 0.3526 +0 0.2463 +0 0.1640 +0 0.1038 +0 0.0949 +0 0.0892 +0 0.1237 +0 0.0870 +0 0.0631 +0 0.1215 +0 0.0561 +0 0.0552 +0 0.2947 +0 0.1234 +0 0.3381 +0 0.1691 +0 0.1686 +1 0.7913 +0 0.2511 +0 0.1267 +0 0.1269 +0 0.0646 +0 0.0863 +0 0.0758 +0 0.0849 +0 0.0975 +0 0.1909 +0 0.0513 +0 0.2998 +0 0.1137 +0 0.0819 +0 0.1144 +0 0.0910 +0 0.0580 +0 0.0917 +0 0.0728 +0 0.1832 +0 0.0872 +0 0.0680 +0 0.1295 +0 0.2510 +0 0.0503 +0 0.0988 +0 0.1869 +0 0.0609 +0 0.1218 +0 0.0430 +0 0.1514 +0 0.0435 +0 0.3311 +0 0.1054 +0 0.0311 +0 0.1204 +0 0.1471 +0 0.0722 +0 0.2458 +0 0.0960 +0 0.0712 +0 0.2518 +0 0.0585 +0 0.0715 +0 0.0969 +0 0.1879 +0 0.2246 +0 0.1544 +0 0.2405 +0 0.1249 +0 0.2661 +0 0.0678 +0 0.1481 +0 0.0446 +0 0.0978 +0 0.1630 +0 0.0934 +0 0.2210 +0 0.1094 +0 0.1430 +0 0.0629 +0 0.0490 +0 0.1298 +0 0.0794 +0 0.1002 +0 0.0287 +0 0.0659 +0 0.0356 +0 0.4507 +0 0.3105 +0 0.3814 +0 0.1056 +0 0.0442 +0 0.1293 +0 0.1629 +0 0.0908 +0 0.1448 +0 0.1837 +0 0.0813 +0 0.0558 +0 0.0604 +0 0.0748 +0 0.2298 +0 0.0783 +0 0.1504 +0 0.0607 +0 0.1233 +0 0.1128 +0 0.1192 +0 0.0431 +0 0.1830 +0 0.0994 +0 0.1566 +0 0.2056 +0 0.2106 +0 0.0701 +0 0.0809 +0 0.0871 +0 0.1262 +0 0.1420 +0 0.0844 +0 0.0825 +0 0.0731 +0 0.1071 +0 0.1400 +0 0.0950 +0 0.1078 +0 0.0513 +0 0.2800 +0 0.4696 +0 0.2459 +0 0.2754 +0 0.0523 +0 0.0917 +0 0.1114 +0 0.0826 +0 0.1077 +0 0.0787 +0 0.0432 +0 0.0647 +0 0.0657 +0 0.1394 +0 0.2021 +0 0.2560 +0 0.1174 +0 0.0696 +0 0.1464 +0 0.2198 +0 0.0428 +0 0.0879 +0 0.1311 +0 0.0724 +0 0.1562 +0 0.0892 +0 0.0976 +0 0.0679 +0 0.0667 +0 0.0689 +0 0.0651 +0 0.0844 +0 0.0628 +0 0.0804 +0 0.1264 +0 0.1365 +0 0.0953 +0 0.3109 +0 0.2943 +0 0.0768 +0 0.0955 +0 0.1367 +0 0.1206 +0 0.2293 +0 0.1264 +0 0.0541 +0 0.0420 +0 0.0942 +0 0.1809 +0 0.1441 +0 0.1866 +0 0.1344 +0 0.1304 +0 0.0768 +0 0.1110 +0 0.3104 +0 0.0683 +0 0.0690 +0 0.0968 +0 0.1418 +0 0.0770 +0 0.0948 +0 0.0692 +0 0.1041 +0 0.0710 +0 0.4634 +0 0.1859 +0 0.0915 +1 0.8275 +0 0.0587 +0 0.0783 +0 0.2079 +0 0.0991 +0 0.0589 +0 0.0780 +0 0.0831 +0 0.0484 +0 0.0913 +0 0.1941 +0 0.0932 +0 0.0432 +0 0.2376 +0 0.1673 +0 0.0737 +0 0.0434 +0 0.1267 +0 0.0541 +0 0.6944 +0 0.0785 +0 0.1303 +0 0.0887 +0 0.0371 +0 0.1108 +0 0.0720 +0 0.0772 +0 0.1065 +0 0.1002 +0 0.1115 +0 0.1440 +0 0.1897 +0 0.4137 +0 0.1228 +0 0.0436 +0 0.1524 +0 0.0696 +1 0.8573 +0 0.1619 +0 0.2058 +0 0.1269 +0 0.2948 +0 0.0835 +0 0.0728 +1 0.8256 +0 0.0742 +0 0.0505 +0 0.5739 +0 0.2819 +0 0.0948 +0 0.1825 +0 0.1234 +0 0.1277 +0 0.0815 +0 0.0873 +0 0.1419 +0 0.0543 +0 0.1170 +0 0.2423 +0 0.1117 +0 0.0711 +0 0.0718 +0 0.0833 +0 0.0412 +0 0.2048 +0 0.1770 +0 0.0662 +0 0.0899 +0 0.1479 +0 0.4118 +0 0.6883 +0 0.0577 +0 0.0907 +0 0.0472 +0 0.0882 +0 0.0569 +1 0.7891 +0 0.0657 +0 0.0566 +0 0.1768 +0 0.1518 +0 0.0413 +0 0.1185 +0 0.0539 +0 0.0593 +0 0.7105 +0 0.1148 +0 0.6869 +0 0.0488 +0 0.2650 +0 0.2130 +0 0.0877 +0 0.2019 +0 0.1576 +0 0.1360 +0 0.1261 +0 0.0695 +0 0.0484 +0 0.0375 +0 0.0574 +0 0.1080 +0 0.1375 +0 0.3137 +0 0.0689 +0 0.1260 +0 0.0816 +0 0.3731 +0 0.1024 +0 0.0416 +0 0.2308 +0 0.1425 +0 0.1240 +0 0.1539 +0 0.1024 +0 0.2214 +0 0.0986 +0 0.1731 +0 0.0976 +0 0.1679 +0 0.0806 +0 0.0676 +0 0.0698 +0 0.2857 +0 0.0847 +0 0.0566 +0 0.2165 +0 0.0812 +0 0.1813 +0 0.0876 +0 0.0956 +0 0.1093 +0 0.0863 +0 0.1775 +0 0.1701 +0 0.1698 +0 0.1790 +0 0.0886 +0 0.0414 +0 0.3050 +0 0.3834 +0 0.1748 +0 0.1326 +0 0.3885 +0 0.0896 +0 0.2357 +0 0.1373 +0 0.1477 +0 0.1183 +0 0.1525 +1 0.8037 +0 0.1314 +0 0.1296 +0 0.1113 +0 0.2117 +0 0.0792 +0 0.2197 +0 0.3849 +0 0.2222 +0 0.2664 +0 0.1262 +0 0.0752 +0 0.2053 +0 0.1084 +0 0.0926 +0 0.1206 +0 0.2448 +0 0.0772 +0 0.1472 +0 0.1548 +0 0.0744 +0 0.0605 +0 0.0916 +0 0.2104 +0 0.1202 +0 0.0643 +0 0.0992 +0 0.1282 +0 0.0458 +0 0.1702 +0 0.0725 +0 0.0941 +0 0.2374 +0 0.2460 +0 0.0558 +0 0.5394 +0 0.4050 +0 0.1331 +1 0.8667 +0 0.1185 +0 0.1250 +0 0.0515 +0 0.0393 +0 0.2495 +0 0.1645 +0 0.3037 +0 0.0877 +0 0.1177 +0 0.1316 +0 0.0734 +0 0.0883 +0 0.0803 +0 0.0559 +0 0.2551 +0 0.0408 +0 0.0669 +0 0.1082 +0 0.0943 +0 0.0850 +0 0.1624 +0 0.3999 +0 0.5821 +1 0.7943 +0 0.1265 +0 0.0378 +0 0.1336 +0 0.1339 +0 0.0787 +0 0.0581 +0 0.1617 +0 0.0436 +0 0.0758 +0 0.0828 +0 0.0843 +0 0.1684 +0 0.0499 +0 0.1461 +0 0.2747 +0 0.0571 +0 0.3527 +0 0.1120 +0 0.0608 +0 0.1169 +0 0.1227 +0 0.1632 +0 0.3953 +0 0.2185 +0 0.2527 +0 0.1087 +0 0.0962 +0 0.2080 +0 0.0921 +0 0.0753 +0 0.1541 +0 0.0912 +0 0.0643 +0 0.1838 +0 0.0954 +0 0.1227 +0 0.2498 +0 0.0377 +0 0.7003 +0 0.0871 +0 0.0826 +0 0.0677 +0 0.0553 +0 0.2691 +0 0.0403 +0 0.0932 +0 0.0816 +0 0.1003 +0 0.0545 +0 0.0776 +0 0.0800 +0 0.1556 +0 0.0290 +0 0.1221 +0 0.0362 +0 0.3080 +0 0.1272 +0 0.0794 +0 0.1213 +0 0.1556 +0 0.0611 +0 0.0767 +0 0.1550 +0 0.0753 +0 0.0981 +0 0.0425 +0 0.0707 +0 0.1372 +0 0.3229 +0 0.0604 +0 0.1615 +0 0.0647 +0 0.1158 +1 0.8157 +0 0.1148 +0 0.2586 +0 0.1720 +0 0.1876 +0 0.1724 +0 0.1407 +0 0.1187 +0 0.0662 +0 0.0454 +0 0.0494 +0 0.0836 +0 0.0435 +0 0.0466 +0 0.1625 +0 0.1370 +0 0.0689 +0 0.0875 +0 0.0460 +0 0.0998 +0 0.1361 +0 0.2527 +0 0.0586 +0 0.1126 +0 0.5905 +0 0.1655 +0 0.0525 +0 0.0523 +0 0.0435 +0 0.3966 +0 0.0530 +0 0.1176 +0 0.0674 +0 0.1020 +1 0.8203 +0 0.0621 +0 0.0947 +0 0.2267 +0 0.0637 +0 0.3925 +0 0.4290 +0 0.1045 +0 0.0504 +0 0.0550 +0 0.0901 +0 0.0379 +0 0.0797 +0 0.0591 +0 0.3310 +0 0.1193 +0 0.1343 +0 0.0688 +0 0.1091 +0 0.0486 +0 0.0535 +0 0.2214 +0 0.1104 +0 0.1376 +0 0.2634 +0 0.0941 +0 0.1050 +0 0.0673 +0 0.1181 +0 0.1038 +0 0.5140 +0 0.1188 +0 0.1212 +0 0.0845 +0 0.1843 +0 0.0828 +0 0.4435 +0 0.0635 +0 0.1295 +0 0.0836 +0 0.0619 +0 0.1204 +0 0.0584 +0 0.0944 +0 0.0771 +0 0.1175 +0 0.1512 +0 0.2573 +0 0.0494 +0 0.2497 +0 0.0878 +0 0.1679 +0 0.1386 +0 0.1283 +0 0.0466 +0 0.0576 +0 0.2898 +0 0.1498 +0 0.1124 +0 0.0766 +0 0.0893 +0 0.1048 +0 0.1116 +0 0.0960 +0 0.1281 +0 0.1770 +0 0.0942 +0 0.1203 +0 0.1008 +0 0.0521 +0 0.0970 +0 0.2275 +0 0.1184 +0 0.1065 +0 0.1835 +0 0.2189 +0 0.2100 +0 0.1501 +0 0.3905 +0 0.1707 +0 0.0954 +0 0.1267 +0 0.0630 +0 0.1275 +0 0.0646 +0 0.1550 +0 0.0710 +0 0.1289 +0 0.0656 +0 0.1188 +0 0.1600 +0 0.0805 +0 0.5170 +0 0.1333 +0 0.1117 +0 0.0759 +0 0.0755 +0 0.0599 +0 0.0811 +0 0.0522 +0 0.2063 +0 0.1508 +0 0.1329 +0 0.1444 +0 0.2033 +0 0.2906 +0 0.2379 +0 0.0488 +0 0.0990 +0 0.0791 +0 0.1389 +0 0.6091 +0 0.1215 +0 0.1020 +0 0.0626 +0 0.2891 +0 0.1380 +0 0.2356 +0 0.0591 +0 0.1190 +0 0.0961 +0 0.1854 +0 0.1568 +0 0.0747 +0 0.2254 +0 0.1576 +0 0.0819 +0 0.0523 +0 0.2065 +0 0.0918 +0 0.1134 +0 0.1342 +0 0.0522 +0 0.1512 +0 0.7348 +0 0.1601 +0 0.0895 +0 0.3065 +0 0.0814 +0 0.0755 +0 0.0509 +0 0.0897 +0 0.0961 +0 0.0462 +0 0.7345 +0 0.0801 +0 0.1996 +0 0.1331 +0 0.2579 +0 0.3656 +0 0.0756 +0 0.6239 +0 0.0442 +0 0.1085 +0 0.0724 +0 0.0684 +0 0.0572 +0 0.1455 +0 0.0603 +0 0.1133 +0 0.1238 +0 0.0529 +0 0.0511 +0 0.1790 +0 0.0682 +0 0.0744 +0 0.1768 +0 0.0463 +0 0.0917 +0 0.0341 +0 0.1102 +0 0.2100 +0 0.0441 +0 0.2979 +0 0.2137 +0 0.6437 +0 0.1830 +0 0.0814 +0 0.0971 +0 0.0935 +0 0.2250 +0 0.1938 +0 0.1432 +0 0.1245 +0 0.0398 +0 0.1143 +0 0.0703 +0 0.2688 +0 0.1009 +0 0.0469 +0 0.0987 +0 0.2474 +0 0.7473 +0 0.2937 +0 0.0812 +0 0.0465 +0 0.1147 +0 0.1528 +0 0.0494 +0 0.0561 +0 0.0522 +0 0.0701 +0 0.0870 +0 0.1584 +0 0.0351 +0 0.1122 +0 0.0468 +0 0.1179 +0 0.3141 +0 0.0747 +0 0.0671 +0 0.4555 +0 0.0926 +0 0.2537 +1 0.7529 +0 0.1544 +0 0.0305 +0 0.0906 +0 0.1014 +0 0.0696 +1 0.7831 +0 0.0489 +0 0.1240 +0 0.0669 +0 0.1007 +0 0.0903 +1 0.7974 +0 0.0772 +0 0.0449 +0 0.0852 +0 0.1933 +0 0.1600 +0 0.1815 +0 0.1357 +0 0.0948 +0 0.4358 +0 0.0641 +0 0.1296 +0 0.0861 +0 0.1546 +0 0.2544 +0 0.0743 +0 0.1845 +0 0.0505 +0 0.0521 +0 0.0682 +0 0.0673 +0 0.0764 +0 0.1733 +0 0.0602 +0 0.0713 +0 0.1596 +0 0.0794 +0 0.2029 +0 0.1037 +0 0.0844 +0 0.1090 +0 0.0994 +0 0.1257 +0 0.3011 +0 0.0766 +0 0.5455 +0 0.0292 +0 0.1349 +0 0.7329 +0 0.0690 +0 0.0717 +0 0.1808 +0 0.0508 +0 0.4057 +0 0.0559 +0 0.1681 +0 0.1299 +0 0.1249 +0 0.3996 +0 0.1440 +0 0.0932 +0 0.0667 +0 0.2620 +0 0.0596 +0 0.1298 +0 0.0864 +0 0.2777 +0 0.1287 +0 0.2044 +0 0.0416 +0 0.2214 +0 0.0789 +0 0.2107 +0 0.1204 +0 0.0489 +0 0.0752 +0 0.0717 +0 0.0893 +0 0.0589 +0 0.1117 +0 0.1022 +0 0.1038 +0 0.1025 +0 0.0754 +0 0.0611 +0 0.0929 +0 0.1187 +0 0.0976 +0 0.1654 +0 0.1872 +0 0.0976 +0 0.1274 +0 0.1098 +0 0.6464 +0 0.0612 +0 0.0936 +0 0.1130 +0 0.1160 +0 0.1997 +0 0.0509 +0 0.0577 +0 0.1022 +0 0.0575 +0 0.1814 +0 0.0645 +0 0.0748 +0 0.1311 +0 0.1019 +0 0.0598 +0 0.0654 +0 0.2199 +0 0.1970 +0 0.0864 +0 0.1237 +0 0.2373 +0 0.0774 +0 0.0766 +0 0.0893 +0 0.0839 +0 0.0391 +0 0.1097 +0 0.2168 +0 0.0671 +0 0.0674 +0 0.1580 +0 0.0444 +0 0.1583 +0 0.1126 +0 0.0534 +0 0.0953 +0 0.1080 +0 0.1096 +0 0.1088 +0 0.0694 +0 0.0787 +0 0.0424 +0 0.1837 +0 0.3102 +0 0.2426 +0 0.0591 +0 0.0750 +0 0.1189 +0 0.1487 +0 0.1792 +0 0.1174 +0 0.3401 +0 0.1510 +0 0.1355 +0 0.5970 +0 0.1749 +0 0.1057 +0 0.1911 +0 0.1284 +0 0.0574 +0 0.1317 +0 0.0715 +0 0.3077 +0 0.3649 +0 0.0536 +0 0.0544 +0 0.2390 +0 0.1056 +0 0.7328 +0 0.1179 +0 0.0763 +0 0.1089 +0 0.2367 +0 0.0498 +0 0.2634 +0 0.0607 +0 0.1570 +0 0.2208 +0 0.3015 +0 0.0904 +0 0.0834 +0 0.0447 +0 0.0475 +0 0.1942 +0 0.1067 +0 0.0571 +0 0.2116 +0 0.1078 +0 0.0970 +0 0.1067 +0 0.1323 +0 0.1098 +0 0.1758 +0 0.0669 +0 0.2431 +0 0.0783 +0 0.0773 +0 0.0783 +0 0.4479 +0 0.6299 +0 0.0823 +0 0.0761 +0 0.0654 +0 0.0659 +1 0.8149 +0 0.3069 +0 0.0475 +0 0.1802 +0 0.1897 +0 0.0787 +0 0.0905 +0 0.1839 +0 0.1036 +0 0.0781 +0 0.2571 +0 0.1292 +0 0.3931 +0 0.6920 +1 0.7846 +0 0.0429 +0 0.1522 +1 0.8763 +0 0.2102 +0 0.1146 +0 0.0910 +0 0.1407 +0 0.1747 +0 0.0903 +0 0.2101 +0 0.1223 +0 0.1194 +0 0.0279 +0 0.1195 +0 0.3326 +0 0.1165 +0 0.2534 +0 0.0657 +0 0.1142 +0 0.2986 +0 0.2763 +0 0.3871 +0 0.1219 +0 0.1093 +0 0.2064 +0 0.1108 +0 0.0833 +0 0.1673 +0 0.1410 +0 0.1375 +0 0.1638 +0 0.0725 +0 0.1050 +0 0.0779 +0 0.0813 +0 0.1177 +0 0.0549 +0 0.1879 +0 0.0810 +0 0.1232 +0 0.0775 +0 0.1275 +0 0.1104 +0 0.1718 +0 0.4063 +0 0.0660 +0 0.1072 +0 0.2244 +0 0.0694 +0 0.2808 +0 0.1443 +0 0.0986 +0 0.0751 +0 0.2304 +0 0.1287 +0 0.1468 +0 0.0494 +0 0.4727 +0 0.0749 +0 0.1445 +0 0.0875 +0 0.0940 +0 0.1207 +0 0.1332 +0 0.0978 +0 0.1192 +0 0.0962 +0 0.1692 +0 0.3275 +0 0.0828 +0 0.1011 +0 0.0985 +0 0.1235 +0 0.1432 +0 0.0671 +0 0.1112 +0 0.1273 +0 0.3954 +0 0.1532 +0 0.1374 +0 0.0609 +0 0.0790 +0 0.1320 +0 0.0767 +0 0.0648 +0 0.2491 +0 0.0324 +0 0.0745 +0 0.0824 +0 0.2849 +0 0.1121 +0 0.0966 +0 0.2406 +0 0.2027 +0 0.0764 +0 0.6156 +0 0.0731 +0 0.1403 +0 0.6717 +0 0.0319 +0 0.1288 +0 0.4239 +0 0.1633 +0 0.0652 +0 0.0812 +0 0.1650 +0 0.6413 +0 0.0731 +0 0.0830 +0 0.0895 +0 0.1531 +0 0.3051 +0 0.1005 +0 0.1471 +0 0.0674 +0 0.0629 +0 0.0426 +0 0.1802 +0 0.1159 +0 0.0604 +0 0.1130 +0 0.0623 +0 0.2067 +0 0.1010 +0 0.1686 +0 0.0677 +0 0.0671 +0 0.2766 +0 0.1304 +0 0.1006 +0 0.1684 +0 0.1807 +0 0.2322 +0 0.0669 +0 0.1195 +0 0.0566 +0 0.0706 +0 0.1543 +0 0.0976 +0 0.2606 +0 0.0984 +0 0.0793 +0 0.0686 +0 0.4983 +0 0.1379 +0 0.5539 +0 0.1475 +0 0.1183 +1 0.7797 +0 0.0505 +0 0.1587 +0 0.2802 +0 0.3157 +0 0.1515 +0 0.0826 +0 0.1007 +0 0.0810 +0 0.1021 +0 0.1424 +0 0.3963 +0 0.0640 +0 0.1516 +0 0.1090 +0 0.4053 +0 0.1359 +0 0.1009 +0 0.1260 +0 0.1122 +0 0.0728 +0 0.1114 +0 0.1175 +0 0.1154 +0 0.0623 +0 0.1170 +0 0.0526 +0 0.1665 +0 0.3463 +0 0.1081 +0 0.0388 +0 0.0353 +0 0.0821 +0 0.0580 +0 0.2374 +0 0.0917 +0 0.0579 +0 0.0554 +0 0.1155 +0 0.0574 +0 0.0509 +0 0.1789 +0 0.1578 +0 0.0956 +0 0.1812 +0 0.1470 +0 0.2355 +0 0.1184 +0 0.1611 +0 0.0625 +0 0.0599 +0 0.3635 +0 0.1370 +0 0.1238 +0 0.1141 +0 0.1105 +0 0.1972 +0 0.0754 +0 0.1137 +0 0.0818 +0 0.0676 +0 0.1170 +0 0.2805 +0 0.0503 +0 0.1226 +0 0.1086 +0 0.2541 +0 0.1585 +0 0.0601 +0 0.1549 +0 0.0980 +0 0.1610 +0 0.1448 +0 0.1718 +0 0.2629 +0 0.0576 +0 0.1149 +1 0.8222 +0 0.0956 +0 0.1032 +0 0.2088 +0 0.0484 +0 0.0481 +0 0.0406 +0 0.0732 +0 0.1147 +0 0.2847 +0 0.1165 +0 0.1395 +0 0.1600 +0 0.0685 +0 0.0401 +0 0.1262 +0 0.0709 +1 0.8715 +0 0.0761 +0 0.0397 +0 0.1685 +0 0.0542 +0 0.0735 +0 0.0965 +0 0.0544 +0 0.0751 +0 0.0652 +0 0.1954 +0 0.2452 +0 0.1439 +0 0.2537 +0 0.0977 +0 0.2184 +0 0.0470 +0 0.0657 +0 0.0904 +0 0.3250 +0 0.2200 +0 0.0889 +0 0.1826 +0 0.5467 +0 0.2100 +0 0.1360 +0 0.0709 +0 0.2853 +0 0.0717 +0 0.1539 +0 0.0399 +0 0.2369 +0 0.0637 +0 0.0598 +0 0.0926 +0 0.1214 +0 0.1943 +0 0.2735 +0 0.1675 +0 0.0993 +0 0.0679 +0 0.0695 +0 0.1387 +0 0.1083 +0 0.2049 +0 0.2036 +0 0.0514 +0 0.2041 +0 0.0714 +0 0.1125 +0 0.0470 +0 0.0887 +0 0.2724 +0 0.0747 +0 0.1271 +0 0.1052 +0 0.2394 +0 0.1281 +0 0.0564 +0 0.0685 +0 0.0723 +0 0.0832 +0 0.0564 +0 0.0947 +0 0.1059 +0 0.0374 +0 0.0796 +0 0.0873 +0 0.0783 +0 0.3696 +0 0.1208 +0 0.0520 +0 0.2167 +0 0.1835 +0 0.1146 +0 0.0973 +0 0.0781 +0 0.1496 +0 0.2054 +0 0.2018 +0 0.1412 +0 0.1088 +0 0.0472 +0 0.3299 +0 0.0979 +0 0.0711 +0 0.0701 +1 0.8378 +0 0.1520 +0 0.1175 +0 0.0741 +0 0.0604 +1 0.8544 +0 0.1194 +0 0.1603 +0 0.1255 +0 0.0761 +0 0.1856 +0 0.1169 +0 0.6277 +0 0.0780 +0 0.3058 +0 0.1237 +0 0.0660 +0 0.0802 +0 0.1338 +0 0.1752 +0 0.1007 +0 0.4993 +0 0.1316 +0 0.1544 +0 0.3645 +0 0.1284 +0 0.0773 +0 0.0894 +0 0.1060 +0 0.1750 +0 0.2671 +0 0.1001 +0 0.0629 +0 0.0549 +0 0.0449 +0 0.0673 +0 0.4441 +0 0.1489 +0 0.0569 +0 0.0574 +0 0.1383 +0 0.3563 +0 0.1470 +0 0.0883 +0 0.0665 +0 0.1491 +1 0.8085 +0 0.0763 +0 0.1012 +0 0.1363 +0 0.1138 +0 0.1218 +0 0.0712 +0 0.0974 +0 0.2834 +0 0.1007 +0 0.0751 +0 0.0332 +0 0.1647 +0 0.1147 +0 0.0395 +0 0.1289 +0 0.0973 +0 0.0494 +0 0.0776 +0 0.1358 +0 0.0878 +0 0.2372 +0 0.3587 +0 0.1389 +0 0.1065 +0 0.0810 +0 0.0562 +0 0.0738 +0 0.0757 +0 0.0704 +0 0.0829 +0 0.1555 +0 0.1342 +0 0.0540 +0 0.1706 +0 0.0679 +0 0.0702 +0 0.1157 +0 0.0455 +0 0.0777 +0 0.1754 +0 0.3326 +0 0.0559 +0 0.2081 +0 0.2937 +0 0.0915 +0 0.1592 +0 0.1348 +0 0.1340 +0 0.1113 +0 0.1301 +0 0.0809 +0 0.2259 +0 0.1184 +0 0.0459 +0 0.1311 +0 0.0682 +0 0.3776 +0 0.0455 +0 0.6135 +0 0.0793 +0 0.1001 +0 0.1687 +0 0.2133 +0 0.1089 +0 0.2150 +0 0.0655 +0 0.2506 +0 0.2872 +0 0.1469 +0 0.0782 +0 0.0843 +0 0.4355 +0 0.0642 +0 0.0668 +0 0.0842 +0 0.0707 +0 0.0910 +0 0.0553 +0 0.1201 +0 0.0451 +0 0.3674 +0 0.1201 +0 0.0466 +0 0.0597 +0 0.1411 +0 0.0789 +0 0.1396 +0 0.1488 +0 0.0714 +0 0.0828 +0 0.0752 +0 0.2174 +0 0.1856 +0 0.1229 +0 0.1441 +0 0.0640 +0 0.0529 +0 0.1139 +0 0.1173 +0 0.1604 +0 0.1198 +0 0.2247 +0 0.0447 +0 0.0830 +0 0.1167 +0 0.1332 +0 0.1982 +0 0.0798 +0 0.2166 +0 0.0847 +0 0.1488 +0 0.1796 +1 0.7792 +0 0.1950 +0 0.0680 +0 0.0591 +0 0.2333 +0 0.1378 +0 0.1393 +0 0.1951 +0 0.1330 +0 0.2040 +0 0.0916 +0 0.1080 +0 0.5231 +0 0.2472 +0 0.0752 +0 0.0696 +0 0.0660 +0 0.2068 +0 0.1219 +1 0.8448 +0 0.3179 +0 0.1541 +0 0.2420 +0 0.1273 +0 0.0835 +0 0.2322 +0 0.0833 +0 0.0836 +0 0.1388 +0 0.0398 +0 0.1642 +0 0.1749 +0 0.1540 +0 0.0585 +0 0.1068 +0 0.1559 +0 0.0986 +0 0.1158 +0 0.0639 +0 0.0867 +1 0.7904 +0 0.1323 +0 0.0712 +0 0.0813 +0 0.0869 +0 0.0621 +0 0.1722 +0 0.0981 +0 0.0643 +0 0.4721 +0 0.1839 +0 0.1724 +0 0.0805 +0 0.0783 +0 0.0561 +0 0.2070 +0 0.1584 +0 0.2286 +0 0.2192 +0 0.7225 +0 0.1171 +0 0.4346 +0 0.2220 +0 0.1259 +0 0.1119 +0 0.0658 +0 0.0941 +0 0.2239 +0 0.1028 +0 0.0640 +0 0.1347 +0 0.0420 +0 0.0665 +0 0.2399 +0 0.0570 +0 0.0887 +0 0.1157 +0 0.0588 +0 0.0862 +0 0.0616 +0 0.0588 +0 0.0702 +0 0.0684 +0 0.0744 +0 0.1563 +0 0.4496 +0 0.1170 +0 0.0473 +0 0.0929 +0 0.0646 +0 0.0788 +0 0.2465 +0 0.2989 +0 0.0364 +0 0.1019 +0 0.0695 +0 0.0689 +0 0.0981 +0 0.0741 +0 0.1990 +0 0.1880 +0 0.3177 +0 0.0724 +0 0.0564 +0 0.0796 +0 0.0721 +0 0.1402 +0 0.1929 +0 0.1724 +0 0.2213 +0 0.0937 +0 0.1401 +0 0.0297 +0 0.0847 +0 0.0614 +0 0.3148 +0 0.0437 +0 0.0544 +0 0.0873 +0 0.1494 +0 0.4996 +0 0.0949 +0 0.0420 +0 0.1531 +0 0.1225 +0 0.1356 +0 0.3133 +0 0.1537 +0 0.1258 +0 0.1599 +0 0.0742 +0 0.0898 +0 0.0849 +0 0.0710 +0 0.3200 +0 0.0848 +0 0.1024 +0 0.0810 +0 0.0758 +0 0.3963 +0 0.1549 +0 0.0868 +0 0.0712 +0 0.0647 +0 0.0955 +0 0.1380 +0 0.2657 +0 0.0846 +0 0.0416 +0 0.1900 +0 0.1651 +0 0.0844 +0 0.0429 +0 0.0937 +0 0.1658 +0 0.1249 +1 0.8132 +0 0.1313 +0 0.2421 +0 0.0928 +0 0.2484 +0 0.5783 +1 0.7760 +0 0.0606 +0 0.0795 +0 0.0822 +0 0.0452 +0 0.1816 +0 0.1846 +0 0.0437 +0 0.2732 +0 0.1440 +0 0.0848 +0 0.1350 +0 0.1981 +0 0.0341 +0 0.0966 +0 0.0762 +0 0.0636 +0 0.0967 +0 0.0884 +0 0.0622 +1 0.8358 +0 0.1981 +1 0.8526 +0 0.0475 +1 0.8047 +0 0.1317 +0 0.1639 +0 0.1062 +0 0.0711 +0 0.0664 +0 0.1852 +0 0.1224 +0 0.0803 +0 0.1600 +0 0.0668 +0 0.2564 +0 0.2273 +0 0.0754 +0 0.0321 +1 0.7726 +0 0.0667 +0 0.1694 +0 0.1336 +0 0.1512 +0 0.1663 +0 0.0737 +0 0.1557 +0 0.1249 +0 0.0723 +0 0.0803 +0 0.1211 +0 0.0724 +0 0.1099 +0 0.1182 +0 0.1233 +0 0.2734 +0 0.0906 +0 0.0700 +0 0.0790 +0 0.2403 +0 0.0923 +0 0.1867 +0 0.1357 +0 0.0886 +0 0.1028 +0 0.2849 +0 0.0586 +0 0.5128 +0 0.0738 +0 0.1895 +0 0.0548 +0 0.0453 +0 0.0903 +0 0.2349 +0 0.4226 +0 0.0887 +0 0.2587 +0 0.0425 +0 0.1583 +0 0.1153 +0 0.4895 +0 0.1869 +0 0.0778 +0 0.0697 +0 0.2497 +0 0.2317 +0 0.1393 +0 0.0706 +0 0.1176 +0 0.0866 +0 0.0570 +0 0.1259 +0 0.0885 +0 0.0978 +0 0.0814 +0 0.1980 +0 0.2273 +0 0.0494 +0 0.3150 +0 0.1455 +0 0.1169 +0 0.1358 +0 0.5242 +0 0.0526 +0 0.1340 +0 0.2064 +0 0.0634 +0 0.3337 +0 0.1035 +0 0.0404 +0 0.1423 +0 0.0296 +0 0.2459 +0 0.1169 +0 0.4698 +0 0.3707 +0 0.1056 +0 0.2119 +0 0.1949 +1 0.8468 +0 0.2064 +0 0.1359 +0 0.1237 +0 0.1372 +0 0.0493 +0 0.1135 +0 0.0802 +0 0.0787 +0 0.1370 +0 0.2200 +0 0.1579 +0 0.1671 +0 0.1886 +0 0.1059 +0 0.0740 +0 0.0858 +0 0.3337 +0 0.1759 +0 0.0628 +0 0.0819 +0 0.0696 +0 0.1037 +0 0.0513 +0 0.0808 +0 0.0900 +0 0.0568 +0 0.1880 +0 0.1464 +0 0.0534 +0 0.0932 +1 0.8499 +0 0.0537 +0 0.0952 +0 0.2020 +0 0.2457 +0 0.1500 +0 0.2345 +0 0.2027 +0 0.6834 +0 0.1168 +0 0.0867 +0 0.0613 +0 0.0689 +0 0.3467 +0 0.0760 +0 0.0778 +0 0.1275 +0 0.1906 +0 0.0702 +0 0.2183 +0 0.1487 +0 0.1304 +0 0.0753 +0 0.0622 +0 0.3626 +0 0.0887 +0 0.0787 +0 0.1189 +0 0.1735 +0 0.3112 +0 0.0855 +0 0.1596 +0 0.1309 +0 0.1037 +0 0.0439 +0 0.0596 +0 0.0972 +0 0.0933 +0 0.1658 +0 0.0742 +0 0.0897 +0 0.0822 +0 0.1455 +0 0.0596 +0 0.0576 +0 0.1837 +0 0.0575 +0 0.0781 +0 0.1008 +0 0.1301 +0 0.0659 +0 0.1590 +0 0.1707 +0 0.1509 +0 0.1904 +0 0.1138 +0 0.1191 +0 0.0981 +0 0.1253 +0 0.0893 +0 0.0916 +0 0.1280 +0 0.1788 +0 0.1640 +0 0.1602 +0 0.0639 +0 0.1425 +0 0.1173 +0 0.0633 +0 0.4578 +0 0.0714 +0 0.0391 +0 0.1429 +0 0.0692 +0 0.1240 +0 0.3075 +0 0.1800 +0 0.1883 +0 0.1480 +0 0.0704 +0 0.1305 +0 0.0895 +0 0.0760 +0 0.0748 +0 0.0964 +0 0.1206 +1 0.8889 +0 0.0740 +0 0.1594 +0 0.0772 +0 0.1639 +0 0.0987 +0 0.0973 +0 0.1882 +0 0.0609 +0 0.0552 +0 0.0738 +0 0.2443 +0 0.0677 +0 0.6928 +0 0.0722 +0 0.3128 +0 0.1867 +0 0.0467 +0 0.1770 +0 0.0555 +0 0.1037 +0 0.0721 +0 0.1257 +0 0.0680 +0 0.1534 +0 0.1912 +0 0.1138 +0 0.1184 +0 0.0585 +0 0.2377 +0 0.2663 +0 0.5511 +0 0.0696 +0 0.2745 +0 0.1893 +0 0.0701 +0 0.1055 +0 0.2798 +0 0.0666 +0 0.1744 +0 0.0566 +0 0.0602 +0 0.4888 +0 0.0513 +0 0.0835 +0 0.0633 +0 0.0569 +0 0.1368 +0 0.1877 +0 0.1347 +0 0.1133 +0 0.1785 +0 0.1402 +0 0.5563 +0 0.0919 +0 0.0902 +0 0.0968 +0 0.1006 +0 0.0751 +0 0.0786 +0 0.0895 +0 0.0971 +0 0.0315 +0 0.1496 +0 0.0626 +0 0.1531 +0 0.0864 +0 0.1598 +0 0.1351 +0 0.1974 +0 0.0294 +0 0.1681 +0 0.1116 +0 0.1117 +0 0.1375 +0 0.0818 +0 0.6332 +0 0.1026 +0 0.1140 +0 0.0457 +0 0.2055 +0 0.1176 +0 0.0769 +0 0.0345 +0 0.0774 +0 0.0547 +0 0.0827 +0 0.0712 +0 0.0701 +0 0.0670 +0 0.0697 +0 0.3922 +0 0.2262 +0 0.0577 +0 0.0989 +0 0.2159 +0 0.1484 +0 0.3424 +0 0.0638 +1 0.8619 +0 0.0715 +0 0.0934 +0 0.1312 +0 0.1091 +0 0.0563 +0 0.1183 +0 0.0653 +0 0.1146 +0 0.2983 +0 0.0901 +0 0.0841 +0 0.0374 +0 0.0560 +0 0.1148 +0 0.0659 +0 0.0392 +0 0.0674 +0 0.0847 +0 0.0760 +0 0.3899 +0 0.5902 +0 0.1679 +0 0.1051 +0 0.0652 +0 0.0424 +0 0.1161 +0 0.0376 +0 0.1228 +0 0.0830 +0 0.0860 +0 0.0679 +0 0.5783 +0 0.1319 +0 0.1811 +0 0.1100 +0 0.0687 +0 0.1356 +0 0.0356 +0 0.0962 +0 0.1259 +0 0.0566 +0 0.1846 +0 0.2294 +0 0.2142 +0 0.0510 +0 0.1809 +0 0.1148 +0 0.0944 +0 0.1139 +0 0.4827 +0 0.2046 +0 0.2034 +0 0.0799 +0 0.1509 +0 0.0633 +0 0.0583 +0 0.2488 +0 0.1219 +0 0.0872 +0 0.0732 +0 0.2702 +0 0.0488 +0 0.1794 +0 0.0439 +0 0.0638 +0 0.3502 +0 0.4225 +0 0.1186 +0 0.0655 +0 0.2152 +0 0.1236 +0 0.1719 +0 0.0550 +0 0.2278 +0 0.0926 +0 0.1088 +0 0.0830 +0 0.2665 +0 0.2989 +0 0.4923 +0 0.1991 +0 0.1135 +0 0.0593 +0 0.0976 +0 0.2355 +0 0.1442 +0 0.0658 +0 0.0402 +0 0.1093 +0 0.0774 +0 0.0717 +0 0.1203 +0 0.1639 +0 0.1272 +0 0.1115 +0 0.0995 +0 0.0527 +0 0.0637 +0 0.1268 +0 0.1160 +0 0.3663 +0 0.0798 +0 0.0872 +0 0.5838 +0 0.0561 +0 0.2117 +0 0.5681 +0 0.1796 +0 0.0947 +0 0.0797 +0 0.1343 +0 0.0785 +0 0.0752 +0 0.1074 +0 0.2185 +0 0.3878 +0 0.2603 +0 0.1266 +0 0.0832 +0 0.0886 +0 0.3014 +0 0.1092 +0 0.0752 +0 0.0735 +0 0.1605 +0 0.0340 +0 0.0481 +0 0.0467 +0 0.2029 +0 0.0607 +0 0.1288 +0 0.0829 +0 0.1044 +0 0.0821 +0 0.1531 +0 0.0859 +0 0.0464 +0 0.0544 +0 0.1860 +0 0.2441 +0 0.1294 +0 0.0941 +0 0.1212 +0 0.1709 +0 0.1008 +0 0.1249 +0 0.2765 +0 0.1075 +0 0.0535 +0 0.1025 +0 0.2378 +0 0.2628 +0 0.0979 +0 0.1461 +0 0.0809 +0 0.0479 +0 0.0625 +0 0.0874 +0 0.0517 +0 0.2949 +0 0.1508 +0 0.3970 +0 0.1390 +1 0.8013 +0 0.1285 +0 0.0770 +0 0.0716 +1 0.8790 +0 0.0725 +0 0.0897 +0 0.0602 +1 0.7550 +0 0.0647 +0 0.0796 +0 0.4106 +0 0.2277 +0 0.1318 +0 0.0298 +0 0.1278 +0 0.1640 +0 0.0604 +0 0.1277 +0 0.0647 +0 0.0904 +0 0.2447 +0 0.0509 +0 0.1250 +0 0.0669 +0 0.1729 +0 0.2622 +0 0.1674 +0 0.2037 +0 0.1134 +0 0.1754 +0 0.0769 +0 0.1069 +0 0.1130 +0 0.0923 +0 0.0948 +0 0.0632 +0 0.0416 +0 0.2125 +0 0.1434 +0 0.1300 +0 0.0747 +0 0.2697 +0 0.1207 +0 0.0669 +0 0.1226 +0 0.1316 +0 0.3208 +0 0.1381 +0 0.1752 +0 0.0834 +0 0.1003 +0 0.0407 +0 0.0508 +0 0.0358 +0 0.0858 +0 0.0706 +0 0.3369 +0 0.0819 +0 0.0805 +0 0.0717 +0 0.0722 +0 0.2330 +0 0.1151 +0 0.7477 +0 0.0734 +0 0.5101 +0 0.0901 +0 0.0553 +0 0.1165 +0 0.1163 +0 0.1208 +0 0.2292 +0 0.2079 +0 0.0690 +0 0.0479 +0 0.0983 +0 0.0858 +0 0.2255 +0 0.2558 +0 0.0945 +0 0.1256 +0 0.0693 +0 0.0494 +0 0.1307 +0 0.0797 +0 0.0433 +0 0.1460 +0 0.0781 +0 0.0479 +0 0.1244 +0 0.0630 +0 0.1114 +1 0.8352 +0 0.0972 +0 0.1267 +0 0.1005 +0 0.0606 +0 0.2519 +0 0.0568 +0 0.0833 +0 0.0760 +0 0.1230 +0 0.1514 +0 0.1006 +0 0.1249 +0 0.0573 +0 0.0744 +0 0.4967 +0 0.2430 +0 0.0702 +0 0.0938 +0 0.2319 +0 0.1302 +0 0.0876 +0 0.2756 +0 0.1834 +0 0.0454 +0 0.1220 +0 0.0585 +0 0.0422 +0 0.0549 +0 0.1666 +0 0.7132 +0 0.0778 +0 0.1459 +0 0.1355 +0 0.0961 +0 0.0845 +0 0.0829 +0 0.2307 +0 0.0771 +0 0.3082 +0 0.0706 +0 0.1182 +0 0.1803 +0 0.1809 +0 0.1460 +0 0.0896 +0 0.1054 +0 0.2332 +0 0.0750 +0 0.1428 +0 0.0926 +0 0.5331 +0 0.1753 +0 0.0936 +0 0.1862 +0 0.0722 +0 0.4029 +0 0.0711 +0 0.2282 +0 0.0981 +0 0.1484 +0 0.0876 +0 0.1022 +0 0.0947 +0 0.2837 +0 0.2373 +0 0.0596 +0 0.1327 +0 0.1116 +0 0.1228 +0 0.1055 +0 0.0858 +0 0.0554 +0 0.1128 +0 0.1165 +0 0.0471 +0 0.0814 +0 0.0572 +0 0.0625 +0 0.1337 +0 0.2567 +0 0.0750 +0 0.0562 +0 0.2513 +0 0.1212 +0 0.0716 +0 0.0587 +0 0.1571 +0 0.0888 +0 0.0693 +0 0.2194 +0 0.0433 +0 0.1394 +0 0.1083 +0 0.1291 +0 0.1452 +0 0.0735 +0 0.1095 +0 0.1832 +0 0.1523 +0 0.0452 +0 0.1137 +0 0.1387 +0 0.1648 +0 0.0368 +0 0.1341 +0 0.1333 +0 0.1499 +0 0.1231 +0 0.1144 +0 0.0531 +0 0.1614 +0 0.2021 +0 0.2106 +0 0.1206 +0 0.1301 +0 0.0741 +0 0.0731 +0 0.1493 +0 0.0865 +0 0.0541 +0 0.0837 +0 0.0499 +0 0.1853 +0 0.1243 +0 0.0410 +0 0.0671 +0 0.1654 +0 0.3802 +0 0.1708 +0 0.0828 +0 0.0458 +1 0.8172 +0 0.0604 +0 0.1616 +0 0.3028 +0 0.1088 +0 0.0696 +0 0.0529 +0 0.0422 +0 0.2993 +0 0.1057 +0 0.1004 +0 0.1133 +0 0.3677 +0 0.0612 +0 0.0975 +0 0.0367 +0 0.0834 +0 0.0731 +0 0.1539 +0 0.7370 +0 0.1314 +0 0.2434 +0 0.1001 +0 0.3229 +0 0.2858 +0 0.2898 +0 0.1200 +0 0.3535 +0 0.0801 +0 0.0655 +0 0.1358 +0 0.0525 +0 0.0493 +0 0.1166 +0 0.1626 +0 0.1010 +0 0.0560 +0 0.0824 +0 0.1208 +0 0.0623 +0 0.2672 +0 0.2907 +0 0.0900 +0 0.0909 +0 0.4725 +0 0.4149 +0 0.1026 +0 0.0690 +0 0.0437 +1 0.8793 +0 0.0515 +0 0.0958 +0 0.1376 +0 0.1797 +0 0.1947 +0 0.2495 +0 0.0489 +0 0.1058 +0 0.1086 +0 0.4940 +0 0.1499 +0 0.0774 +0 0.0467 +0 0.0423 +0 0.1397 +1 0.8040 +0 0.1131 +0 0.5215 +0 0.1115 +0 0.1178 +0 0.5085 +0 0.0829 +0 0.1770 +0 0.6905 +0 0.3841 +0 0.1616 +0 0.1326 +0 0.0520 +0 0.0493 +0 0.1243 +0 0.0826 +0 0.6802 +0 0.2461 +0 0.0463 +0 0.1106 +0 0.1598 +0 0.0709 +0 0.1001 +0 0.0611 +0 0.1423 +0 0.2467 +0 0.0779 +0 0.6437 +0 0.0439 +0 0.1540 +0 0.5880 +0 0.2181 +0 0.0513 +0 0.0972 +0 0.0681 +0 0.1881 +0 0.0936 +0 0.1599 +0 0.2673 +0 0.5687 +0 0.5882 +0 0.0843 +0 0.0634 +0 0.3446 +0 0.0737 +0 0.0322 +0 0.0926 +0 0.1964 +0 0.0512 +0 0.0710 +0 0.0448 +0 0.1053 +0 0.2005 +0 0.1280 +0 0.0899 +0 0.0539 +0 0.0746 +0 0.0442 +0 0.1018 +0 0.1256 +0 0.2666 +0 0.0527 +0 0.1346 +0 0.3270 +0 0.0721 +0 0.1063 +0 0.3511 +0 0.1394 +1 0.8667 +0 0.1259 +0 0.1368 +0 0.1992 +0 0.1191 +0 0.1449 +0 0.4202 +0 0.0924 +0 0.3014 +0 0.0566 +0 0.0970 +0 0.0875 +0 0.1135 +0 0.0929 +0 0.0468 +1 0.8553 +0 0.1263 +0 0.1512 +0 0.0822 +0 0.1553 +0 0.1240 +0 0.0613 +0 0.0742 +0 0.0666 +0 0.1150 +0 0.2290 +0 0.0683 +0 0.1382 +0 0.2109 +0 0.1627 +1 0.7547 +0 0.1391 +0 0.1413 +0 0.1196 +0 0.0673 +0 0.1403 +0 0.0641 +0 0.0950 +0 0.2295 +0 0.0535 +0 0.2027 +0 0.2192 +0 0.1123 +0 0.1228 +0 0.1118 +0 0.1454 +0 0.0805 +0 0.1817 +0 0.1822 +0 0.1732 +0 0.0648 +0 0.1073 +0 0.1618 +0 0.1138 +0 0.2619 +0 0.0999 +0 0.0807 +0 0.0842 +0 0.0655 +0 0.1166 +0 0.2338 +0 0.0493 +0 0.0654 +0 0.1394 +0 0.0865 +0 0.1221 +0 0.3305 +0 0.1898 +0 0.0825 +0 0.2300 +0 0.6822 +0 0.0832 +0 0.1404 +0 0.0647 +0 0.0538 +0 0.6632 +0 0.0931 +0 0.0854 +0 0.1342 +0 0.1095 +0 0.1126 +0 0.1093 +0 0.1147 +0 0.1026 +0 0.2166 +0 0.0866 +0 0.0540 +0 0.1423 +0 0.3593 +0 0.2359 +0 0.1137 +0 0.0761 +0 0.1796 +0 0.0762 +0 0.1509 +0 0.0584 +0 0.2647 +0 0.0572 +0 0.0744 +0 0.4341 +0 0.1198 +0 0.1332 +0 0.2002 +0 0.1145 +0 0.1810 +0 0.2284 +0 0.0484 +0 0.1390 +0 0.0631 +0 0.0508 +0 0.0703 +0 0.0473 +0 0.2547 +0 0.2486 +0 0.0726 +0 0.0435 +0 0.1504 +0 0.1932 +0 0.0689 +0 0.1340 +0 0.1020 +0 0.1313 +0 0.0550 +0 0.1857 +0 0.0345 +0 0.2681 +0 0.2976 +0 0.0490 +0 0.0835 +0 0.1165 +0 0.1608 +0 0.0779 +0 0.0442 +0 0.0379 +0 0.0430 +0 0.0744 +0 0.4200 +0 0.1975 +0 0.2097 +0 0.0474 +0 0.0579 +0 0.0643 +0 0.1374 +0 0.0714 +0 0.1656 +0 0.1859 +0 0.0980 +0 0.0986 +0 0.0732 +0 0.0843 +0 0.1358 +0 0.0469 +0 0.2939 +0 0.1100 +0 0.1089 +0 0.0430 +0 0.0557 +0 0.0637 +0 0.0511 +0 0.1361 +0 0.1786 +0 0.3256 +0 0.2606 +0 0.1063 +0 0.2594 +0 0.0934 +0 0.0503 +0 0.0871 +0 0.0798 +0 0.1097 +0 0.4267 +0 0.1628 +0 0.2194 +0 0.0483 +0 0.0901 +0 0.1081 +0 0.1357 +0 0.1486 +0 0.1057 +0 0.1127 +0 0.1128 +0 0.1348 +0 0.0482 +0 0.0375 +0 0.1479 +0 0.1040 +0 0.1629 +0 0.0513 +0 0.1005 +0 0.0680 +0 0.0825 +0 0.1221 +0 0.1326 +0 0.0645 +0 0.0644 +0 0.1511 +0 0.0470 +0 0.0993 +0 0.1042 +0 0.0412 +0 0.0533 +0 0.0436 +0 0.1423 +0 0.0860 +0 0.1425 +0 0.1468 +0 0.0999 +0 0.0672 +0 0.0691 +0 0.3295 +0 0.0368 +0 0.1314 +0 0.1043 +0 0.0368 +0 0.2876 +0 0.0968 +0 0.0758 +0 0.6348 +0 0.1091 +0 0.0848 +0 0.0627 +0 0.2783 +0 0.1689 +0 0.1335 +0 0.1785 +0 0.0449 +0 0.0701 +0 0.1278 +0 0.1279 +0 0.1774 +0 0.1400 +0 0.0864 +0 0.1095 +0 0.0390 +0 0.1065 +0 0.0882 +0 0.0478 +0 0.0759 +0 0.1032 +0 0.2244 +0 0.5800 +0 0.1164 +0 0.1102 +0 0.2305 +0 0.0770 +0 0.1468 +0 0.0706 +0 0.2891 +0 0.0591 +0 0.1736 +0 0.1524 +0 0.1710 +0 0.2800 +0 0.0738 +0 0.2050 +0 0.1416 +0 0.1111 +0 0.1346 +0 0.0778 +0 0.0940 +0 0.0641 +0 0.0671 +0 0.1549 +0 0.1397 +0 0.1586 +0 0.5738 +0 0.2020 +0 0.0870 +0 0.0669 +0 0.5986 +0 0.1238 +0 0.0445 +0 0.0799 +0 0.0654 +0 0.0527 +0 0.1726 +1 0.8042 +0 0.0799 +0 0.0990 +0 0.6117 +0 0.1193 +0 0.2175 +0 0.1149 +0 0.0600 +0 0.1048 +0 0.0773 +0 0.0746 +0 0.3316 +0 0.2747 +0 0.2720 +0 0.0868 +0 0.2397 +0 0.0419 +0 0.3016 +0 0.2335 +0 0.1035 +0 0.0612 +0 0.0682 +0 0.0969 +0 0.0943 +0 0.0873 +0 0.1964 +0 0.0674 +0 0.0451 +0 0.0976 +0 0.3280 +0 0.3008 +0 0.1434 +0 0.0925 +0 0.0945 +0 0.1420 +0 0.1037 +0 0.1218 +0 0.0984 +0 0.0835 +0 0.0653 +0 0.2002 +0 0.0800 +0 0.1230 +0 0.1543 +0 0.1215 +0 0.0753 +0 0.2626 +0 0.0634 +0 0.0835 +0 0.2175 +0 0.0908 +0 0.0675 +0 0.0728 +0 0.1033 +0 0.0972 +0 0.1912 +0 0.1815 +0 0.1169 +0 0.0919 +0 0.0876 +0 0.0743 +0 0.1401 +0 0.0823 +0 0.0985 +0 0.0621 +0 0.3794 +0 0.0562 +0 0.1742 +0 0.0738 +0 0.0860 +0 0.1213 +1 0.8295 +0 0.1254 +0 0.1444 +0 0.1225 +0 0.1702 +0 0.0650 +0 0.0923 +0 0.0537 +0 0.0321 +0 0.0792 +0 0.2655 +0 0.1422 +0 0.1124 +0 0.3357 +0 0.0896 +0 0.1338 +0 0.1290 +0 0.0995 +0 0.3054 +0 0.1726 +0 0.3069 +0 0.1150 +0 0.2182 +0 0.0456 +0 0.0816 +0 0.1017 +0 0.2041 +0 0.0455 +0 0.1514 +0 0.0592 +0 0.0743 +0 0.4673 +0 0.0827 +0 0.0769 +0 0.0587 +0 0.1258 +0 0.0954 +0 0.2263 +0 0.0563 +0 0.2653 +0 0.0455 +0 0.1582 +0 0.0902 +0 0.0659 +0 0.0486 +1 0.8739 +0 0.1820 +0 0.3911 +0 0.1201 +0 0.1808 +0 0.3240 +0 0.1054 +0 0.1124 +0 0.1024 +0 0.1529 +0 0.0756 +0 0.0453 +0 0.1113 +0 0.2730 +0 0.1591 +0 0.2353 +0 0.1323 +0 0.1049 +0 0.2356 +0 0.4401 +0 0.1037 +0 0.1648 +0 0.0559 +0 0.1453 +0 0.1236 +0 0.1231 +0 0.0852 +0 0.0470 +0 0.6930 +0 0.2330 +0 0.0847 +0 0.0816 +0 0.1070 +0 0.0656 +0 0.1047 +0 0.0733 +0 0.0477 +0 0.0988 +0 0.1581 +0 0.0717 +0 0.1151 +1 0.8417 +0 0.0848 +0 0.1209 +0 0.1092 +0 0.1535 +0 0.0854 +0 0.1329 +0 0.0710 +0 0.1282 +0 0.1151 +0 0.0760 +0 0.2516 +0 0.0576 +0 0.2538 +0 0.1361 +0 0.0755 +0 0.1014 +0 0.0735 +0 0.0853 +0 0.0516 +0 0.0543 +0 0.1113 +0 0.6482 +0 0.1313 +0 0.0902 +0 0.0533 +0 0.0628 +0 0.0442 +0 0.0774 +0 0.0597 +0 0.2362 +0 0.1201 +0 0.0512 +0 0.0771 +0 0.1907 +0 0.1436 +0 0.0950 +0 0.1596 +0 0.0548 +0 0.6347 +0 0.0921 +0 0.2062 +0 0.3263 +0 0.1179 +0 0.0987 +0 0.0507 +0 0.1829 +0 0.0846 +0 0.0488 +0 0.0435 +0 0.0679 +0 0.0626 +0 0.0860 +0 0.1455 +0 0.0558 +0 0.2018 +0 0.2279 +0 0.0889 +0 0.0412 +0 0.2032 +0 0.6272 +0 0.1617 +0 0.0611 +0 0.1367 +0 0.1625 +0 0.0441 +0 0.1122 +0 0.0832 +0 0.2190 +0 0.1854 +0 0.2884 +0 0.0663 +0 0.1347 +0 0.0739 +0 0.1635 +1 0.8255 +0 0.2311 +0 0.0354 +0 0.1839 +0 0.0971 +0 0.1943 +0 0.0649 +0 0.0648 +0 0.1335 +0 0.0730 +0 0.0655 +0 0.0884 +0 0.0516 +0 0.1007 +0 0.0811 +0 0.1289 +0 0.0603 +1 0.8074 +0 0.0533 +0 0.0670 +0 0.0792 +0 0.1025 +0 0.1254 +0 0.7384 +0 0.1546 +0 0.1229 +0 0.2797 +0 0.0602 +0 0.0736 +0 0.0901 +0 0.1166 +0 0.0692 +0 0.2076 +0 0.6854 +0 0.1946 +0 0.1732 +0 0.3691 +0 0.0934 +0 0.1296 +0 0.1250 +0 0.0533 +0 0.1252 +0 0.1002 +0 0.0947 +0 0.1307 +0 0.2746 +0 0.0849 +0 0.1193 +0 0.0564 +0 0.2167 +0 0.0507 +0 0.2220 +0 0.0475 +0 0.0674 +0 0.1386 +0 0.1923 +0 0.0520 +0 0.5615 +0 0.1151 +0 0.2106 +0 0.1569 +0 0.4947 +0 0.1600 +0 0.0388 +0 0.2714 +0 0.1031 +0 0.1797 +0 0.0754 +0 0.1427 +0 0.2148 +0 0.0770 +0 0.1649 +0 0.1285 +0 0.6707 +0 0.0674 +0 0.1046 +0 0.0678 +0 0.0339 +0 0.0663 +1 0.8269 +0 0.0762 +0 0.2630 +0 0.1095 +0 0.0855 +0 0.1145 +0 0.2668 +0 0.2125 +0 0.1458 +0 0.1393 +0 0.1043 +0 0.0914 +0 0.1482 +0 0.3571 +0 0.3889 +0 0.2499 +0 0.0475 +0 0.0740 +0 0.2195 +0 0.0754 +0 0.1155 +0 0.0986 +0 0.1628 +0 0.2147 +0 0.1191 +0 0.2861 +0 0.1055 +0 0.0620 +0 0.0924 +0 0.1444 +0 0.0953 +0 0.1432 +0 0.1229 +0 0.1793 +0 0.1869 +0 0.0807 +0 0.1046 +0 0.0838 +0 0.2737 +0 0.0762 +0 0.0771 +0 0.1012 +0 0.0896 +0 0.1053 +0 0.0367 +0 0.0760 +0 0.0922 +0 0.1391 +0 0.0848 +0 0.0530 +0 0.0786 +0 0.1005 +0 0.1953 +0 0.0468 +0 0.1663 +0 0.1609 +0 0.2004 +0 0.0811 +0 0.0969 +0 0.0570 +0 0.0933 +0 0.1775 +0 0.0717 +0 0.2846 +0 0.1811 +0 0.0580 +0 0.0476 +0 0.0605 +0 0.0756 +0 0.0699 +0 0.0561 +0 0.1272 +0 0.0900 +0 0.1062 +0 0.2150 +0 0.2646 +0 0.1105 +0 0.0382 +0 0.1064 +0 0.0923 +0 0.1308 +0 0.0689 +0 0.1257 +0 0.0623 +0 0.0713 +0 0.0761 +0 0.1454 +0 0.0468 +0 0.1120 +0 0.1061 +0 0.1165 +0 0.1086 +0 0.0831 +0 0.0557 +0 0.1036 +0 0.3089 +0 0.1255 +0 0.0767 +0 0.1125 +0 0.1164 +0 0.0775 +0 0.1121 +0 0.5897 +0 0.0799 +0 0.3005 +0 0.1189 +0 0.0431 +0 0.0447 +0 0.0651 +0 0.1779 +0 0.0390 +0 0.2820 +0 0.0428 +0 0.1139 +0 0.0463 +0 0.2850 +0 0.1778 +0 0.0904 +0 0.1237 +0 0.1093 +0 0.1475 +0 0.1232 +0 0.0903 +0 0.2811 +0 0.1962 +1 0.8423 +0 0.1341 +0 0.1024 +0 0.0702 +0 0.5118 +0 0.0338 +0 0.3793 +0 0.1041 +0 0.1977 +0 0.1544 +0 0.1348 +0 0.0369 +0 0.3163 +0 0.1525 +0 0.0467 +0 0.0506 +0 0.6525 +0 0.1374 +0 0.0667 +0 0.2290 +0 0.0619 +0 0.0887 +0 0.2392 +0 0.0487 +0 0.1606 +0 0.1721 +0 0.0978 +0 0.0636 +0 0.1679 +0 0.0938 +0 0.1996 +0 0.0631 +0 0.1546 +0 0.0943 +0 0.2664 +0 0.3359 +0 0.3578 +0 0.0822 +0 0.0589 +0 0.1301 +0 0.0788 +0 0.0571 +0 0.2093 +0 0.0528 +0 0.1685 +0 0.0704 +0 0.2246 +0 0.0805 +0 0.0480 +0 0.0991 +0 0.0942 +0 0.0533 +0 0.0871 +0 0.0422 +0 0.2765 +0 0.2126 +0 0.0890 +0 0.2100 +0 0.5412 +0 0.5062 +0 0.0662 +0 0.1135 +0 0.1001 +0 0.3057 +0 0.0928 +0 0.3375 +0 0.0731 +0 0.1821 +0 0.0644 +0 0.1000 +0 0.1050 +0 0.2019 +0 0.0430 +0 0.0722 +0 0.0685 +0 0.0470 +0 0.0788 +0 0.1350 +0 0.0881 +0 0.0853 +0 0.2203 +0 0.0726 +0 0.1443 +0 0.0569 +0 0.1195 +0 0.0660 +0 0.1667 +0 0.3151 +0 0.0691 +0 0.0783 +0 0.0797 +0 0.0725 +0 0.1502 +0 0.0514 +0 0.4570 +0 0.0770 +0 0.0424 +0 0.6853 +0 0.0609 +0 0.1340 +1 0.8764 +0 0.0932 +0 0.0426 +0 0.1212 +0 0.0600 +0 0.1290 +0 0.0789 +0 0.2276 +0 0.3208 +0 0.0767 +0 0.0754 +0 0.5774 +0 0.1966 +0 0.0405 +0 0.1830 +0 0.3672 +0 0.0600 +0 0.1080 +0 0.0787 +0 0.0981 +0 0.0705 +0 0.3477 +0 0.0833 +0 0.0680 +0 0.0773 +0 0.0963 +0 0.1770 +0 0.3589 +0 0.0699 +0 0.3647 +0 0.2187 +0 0.1439 +0 0.1196 +0 0.3577 +0 0.1308 +0 0.0636 +0 0.0536 +0 0.1689 +0 0.0616 +0 0.0701 +0 0.2797 +0 0.1657 +0 0.0709 +0 0.1149 +0 0.0714 +0 0.2579 +0 0.1262 +0 0.0357 +0 0.0852 +0 0.1524 +0 0.0637 +0 0.0554 +0 0.0408 +0 0.6485 +0 0.1331 +0 0.0824 +0 0.0914 +0 0.0548 +0 0.0681 +0 0.3062 +0 0.0544 +0 0.1047 +0 0.0995 +0 0.1238 +0 0.1161 +0 0.1042 +0 0.0678 +0 0.0511 +0 0.0617 +0 0.0857 +0 0.0834 +0 0.0745 +0 0.1815 +0 0.0525 +0 0.1440 +0 0.0742 +0 0.1094 +0 0.0482 +0 0.0828 +0 0.0978 +0 0.0515 +0 0.0954 +0 0.1097 +0 0.2276 +0 0.1129 +0 0.1108 +0 0.0445 +0 0.1962 +0 0.1105 +0 0.0601 +0 0.2211 +0 0.0632 +0 0.1045 +0 0.1166 +0 0.1134 +0 0.4418 +0 0.0833 +0 0.0614 +0 0.1019 +0 0.7087 +0 0.1585 +0 0.1580 +0 0.0804 +0 0.0760 +0 0.1141 +0 0.2379 +1 0.8247 +0 0.0610 +0 0.0876 +0 0.1611 +0 0.0694 +0 0.0524 +0 0.0896 +0 0.1711 +0 0.1664 +0 0.1191 +0 0.1973 +0 0.0768 +0 0.1342 +0 0.0885 +0 0.0557 +0 0.1009 +0 0.5286 +0 0.1600 +0 0.1296 +0 0.0416 +0 0.1096 +0 0.0388 +0 0.0644 +0 0.1870 +0 0.1074 +0 0.0696 +0 0.3320 +0 0.1639 +0 0.1386 +0 0.0931 +0 0.0524 +0 0.0475 +0 0.0974 +0 0.0865 +0 0.1443 +0 0.0571 +0 0.0671 +0 0.0982 +1 0.6321 +0 0.0827 +0 0.0808 +0 0.3055 +0 0.0807 +0 0.1259 +0 0.0851 +0 0.0691 +0 0.0409 +0 0.1963 +0 0.0849 +0 0.3141 +0 0.2611 +0 0.2790 +0 0.2145 +0 0.0478 +0 0.0567 +0 0.0838 +0 0.0505 +0 0.0441 +0 0.0748 +0 0.1606 +0 0.0929 +0 0.1620 +0 0.0925 +0 0.1196 +0 0.0420 +0 0.0655 +0 0.0955 +0 0.1885 +0 0.0996 +0 0.0531 +0 0.2118 +0 0.1371 +0 0.0776 +0 0.1785 +0 0.1017 +0 0.1243 +0 0.0844 +0 0.0574 +0 0.0858 +0 0.2128 +0 0.2097 +0 0.0703 +0 0.1360 +0 0.0623 +0 0.3028 +0 0.0711 +0 0.1106 +0 0.1825 +0 0.0862 +0 0.0754 +0 0.3480 +0 0.1503 +0 0.1038 +0 0.1672 +0 0.0590 +0 0.1003 +0 0.1061 +0 0.1297 +0 0.0886 +0 0.1280 +0 0.2241 +0 0.1094 +0 0.4759 +0 0.3034 +0 0.2647 +0 0.0998 +1 0.8431 +0 0.1205 +0 0.0759 +0 0.1294 +0 0.0658 +0 0.0916 +0 0.3061 +0 0.2352 +0 0.0809 +0 0.1110 +0 0.0841 +0 0.2387 +0 0.3782 +0 0.0578 +0 0.3754 +0 0.0886 +0 0.1106 +0 0.6270 +0 0.6709 +0 0.1597 +0 0.2847 +0 0.1381 +0 0.0727 +0 0.1536 +0 0.2094 +0 0.1615 +0 0.1384 +0 0.1085 +0 0.1245 +0 0.2528 +0 0.3034 +0 0.1767 +0 0.2893 +0 0.0767 +0 0.0851 +0 0.4343 +0 0.1171 +0 0.0791 +0 0.0777 +0 0.0849 +0 0.0515 +0 0.0866 +0 0.1558 +0 0.1019 +0 0.1730 +0 0.0774 +0 0.1019 +0 0.0563 +0 0.0967 +0 0.0540 +1 0.7558 +0 0.1898 +0 0.1394 +0 0.1178 +0 0.1021 +0 0.1280 +0 0.0469 +0 0.0718 +0 0.1364 +0 0.1486 +0 0.1038 +0 0.1899 +0 0.0722 +0 0.2333 +0 0.0515 +0 0.0493 +0 0.0585 +0 0.1719 +0 0.1534 +0 0.1344 +0 0.1401 +0 0.0923 +0 0.0619 +0 0.1339 +0 0.0931 +0 0.0283 +0 0.5046 +0 0.0852 +0 0.2791 +0 0.1317 +0 0.0844 +0 0.0520 +0 0.0724 +0 0.3169 +0 0.1137 +0 0.0827 +0 0.1292 +0 0.2207 +0 0.2291 +0 0.0608 +0 0.0600 +0 0.0685 +0 0.0400 +0 0.3177 +0 0.1190 +0 0.2660 +0 0.1099 +0 0.0323 +0 0.0561 +0 0.1858 +0 0.1575 +0 0.2373 +0 0.1754 +1 0.7635 +0 0.1605 +0 0.1536 +0 0.1499 +0 0.0755 +0 0.0692 +0 0.1202 +0 0.1744 +0 0.2285 +0 0.1400 +0 0.0585 +0 0.0684 +0 0.1571 +0 0.1087 +0 0.0310 +0 0.1554 +0 0.0796 +0 0.0818 +0 0.1225 +0 0.0912 +0 0.0549 +0 0.2552 +0 0.3821 +0 0.0989 +0 0.1379 +0 0.0522 +0 0.2461 +0 0.0993 +0 0.0846 +0 0.1594 +0 0.1061 +0 0.0869 +0 0.0594 +0 0.0879 +0 0.0434 +0 0.0645 +0 0.4033 +0 0.1468 +0 0.0877 +0 0.1162 +0 0.1607 +0 0.3415 +0 0.1087 +0 0.1037 +0 0.1153 +0 0.0781 +0 0.0642 +0 0.0663 +0 0.7189 +0 0.0471 +0 0.0531 +0 0.1793 +0 0.0842 +0 0.1654 +0 0.2826 +0 0.1744 +0 0.1644 +0 0.1004 +0 0.7298 +0 0.1496 +0 0.0417 +0 0.1404 +0 0.0783 +0 0.0638 +1 0.8722 +0 0.0580 +0 0.3685 +0 0.0891 +0 0.0998 +0 0.0605 +0 0.1049 +0 0.0916 +0 0.1686 +0 0.1689 +0 0.0403 +0 0.2196 +0 0.0538 +0 0.0820 +0 0.0734 +0 0.1255 +0 0.1638 +0 0.2040 +0 0.2888 +0 0.0403 +0 0.1969 +0 0.1314 +0 0.1463 +0 0.1638 +0 0.1528 +0 0.0811 +0 0.0762 +0 0.1898 +0 0.2072 +0 0.0823 +0 0.0861 +0 0.1897 +0 0.0905 +0 0.2313 +0 0.1303 +0 0.0341 +0 0.1822 +0 0.1022 +0 0.0593 +0 0.0920 +0 0.1212 +0 0.0958 +0 0.3446 +0 0.1302 +0 0.1233 +0 0.4770 +0 0.3633 +0 0.0734 +0 0.0851 +0 0.2870 +0 0.1299 +0 0.0869 +0 0.3814 +0 0.1344 +0 0.1405 +0 0.1825 +0 0.1119 +0 0.1635 +0 0.0817 +0 0.0536 +0 0.1578 +0 0.1015 +0 0.0453 +0 0.1085 +0 0.1533 +0 0.2565 +0 0.1153 +0 0.0660 +0 0.0974 +0 0.0485 +0 0.4148 +0 0.0612 +0 0.1329 +0 0.0857 +0 0.1295 +0 0.1378 +0 0.1076 +0 0.3423 +0 0.0667 +0 0.0558 +0 0.2242 +0 0.0919 +0 0.0514 +0 0.1933 +0 0.4931 +0 0.0645 +0 0.1858 +0 0.0737 +0 0.1321 +0 0.1984 +0 0.1078 +0 0.0842 +0 0.1003 +0 0.1315 +0 0.0905 +0 0.1444 +0 0.1624 +0 0.0587 +0 0.2696 +0 0.0881 +0 0.1712 +0 0.5262 +0 0.0936 +0 0.6038 +0 0.0533 +0 0.1493 +0 0.1485 +0 0.1714 +0 0.0430 +0 0.0646 +0 0.0700 +0 0.1604 +0 0.1617 +0 0.4655 +0 0.0493 +0 0.1828 +0 0.0805 +0 0.3020 +0 0.0967 +0 0.1916 +0 0.5254 +0 0.1249 +0 0.2455 +0 0.0768 +0 0.1989 +0 0.0459 +0 0.1113 +0 0.0422 +0 0.1125 +0 0.1046 +0 0.0743 +0 0.0603 +0 0.1045 +0 0.0464 +0 0.0934 +0 0.1809 +0 0.6501 +0 0.1351 +0 0.2377 +0 0.0930 +0 0.1142 +0 0.0494 +0 0.0624 +0 0.5125 +0 0.0863 +0 0.0583 +0 0.2244 +0 0.3171 +0 0.2248 +0 0.1585 +0 0.1764 +0 0.0538 +0 0.1800 +1 0.8736 +0 0.4979 +0 0.2194 +0 0.0886 +0 0.1115 +0 0.0740 +0 0.0931 +0 0.1447 +0 0.0429 +0 0.0515 +0 0.1780 +0 0.2439 +0 0.0812 +0 0.1432 +0 0.2053 +0 0.0450 +0 0.3002 +0 0.0766 +0 0.1480 +1 0.8736 +0 0.1284 +0 0.1422 +0 0.2403 +0 0.0593 +0 0.1344 +0 0.2009 +0 0.0598 +0 0.1219 +0 0.1621 +0 0.1648 +0 0.1700 +0 0.2714 +1 0.8625 +0 0.0668 +0 0.2582 +0 0.0783 +1 0.7855 +0 0.1374 +0 0.0733 +0 0.1951 +0 0.1910 +0 0.0935 +0 0.0630 +0 0.1987 +0 0.1429 +0 0.0538 +0 0.1026 +0 0.1110 +0 0.0871 +0 0.0809 +0 0.3090 +0 0.1622 +0 0.1276 +0 0.0751 +0 0.0554 +0 0.1349 +0 0.0696 +0 0.0995 +0 0.0909 +0 0.0597 +0 0.2520 +0 0.0801 +0 0.2749 +0 0.4861 +0 0.1084 +0 0.0559 +0 0.1655 +0 0.1712 +0 0.0902 +0 0.0885 +0 0.1174 +0 0.0765 +0 0.0986 +0 0.1567 +0 0.1867 +0 0.2214 +0 0.1618 +0 0.1695 +0 0.0480 +0 0.0511 +0 0.5277 +0 0.1353 +0 0.1216 +0 0.1377 +0 0.1564 +0 0.0487 +0 0.1011 +0 0.0682 +0 0.1363 +0 0.1480 +0 0.0826 +0 0.0676 +0 0.1276 +0 0.5571 +0 0.0993 +0 0.0596 +0 0.1050 +0 0.1036 +0 0.1090 +0 0.3063 +0 0.0584 +0 0.0737 +0 0.0549 +0 0.1269 +0 0.3778 +0 0.1047 +0 0.0736 +0 0.2945 +0 0.0972 +0 0.0649 +0 0.5089 +0 0.1505 +0 0.1397 +0 0.0544 +0 0.0575 +0 0.0783 +0 0.0611 +0 0.1362 +0 0.1119 +0 0.0658 +0 0.2437 +0 0.2507 +0 0.1938 +0 0.1425 +0 0.1214 +0 0.0757 +0 0.0693 +0 0.1264 +0 0.1088 +0 0.1371 +0 0.1494 +0 0.0694 +0 0.1612 +0 0.3258 +0 0.1607 +0 0.2155 +0 0.2714 +0 0.0627 +0 0.2643 +0 0.1735 +0 0.1646 +0 0.0692 +0 0.1376 +0 0.1087 +0 0.0993 +0 0.0993 +0 0.1269 +0 0.3305 +0 0.1164 +0 0.1004 +0 0.2026 +0 0.1381 +0 0.2877 +0 0.0830 +0 0.5745 +0 0.1708 +0 0.2708 +0 0.2110 +0 0.1394 +0 0.0507 +0 0.1027 +0 0.0901 +0 0.1072 +0 0.0722 +0 0.1763 +0 0.2227 +0 0.1205 +0 0.1667 +0 0.0609 +0 0.1153 +0 0.5758 +0 0.0863 +0 0.1411 +0 0.4044 +0 0.0478 +0 0.2089 +0 0.0849 +0 0.0501 +0 0.1567 +0 0.0494 +0 0.7310 +0 0.1283 +0 0.0495 +0 0.2341 +0 0.1584 +0 0.3139 +0 0.0553 +0 0.1078 +0 0.0892 +0 0.0688 +0 0.1085 +0 0.0874 +0 0.1171 +0 0.1972 +0 0.0433 +0 0.4976 +0 0.1329 +0 0.0644 +0 0.0886 +0 0.1155 +0 0.1026 +0 0.1467 +0 0.0815 +0 0.0812 +0 0.0384 +0 0.0846 +0 0.1562 +0 0.1152 +0 0.0509 +0 0.0755 +0 0.4864 +0 0.0590 +0 0.1066 +0 0.0725 +0 0.0825 +0 0.1459 +0 0.1598 +0 0.0749 +0 0.2318 +0 0.1594 +0 0.1308 +0 0.2671 +0 0.2760 +0 0.1711 +0 0.1898 +0 0.0891 +0 0.1822 +0 0.0418 +0 0.1517 +0 0.1673 +0 0.0617 +0 0.1243 +0 0.0909 +1 0.7946 +0 0.1334 +0 0.1180 +0 0.0994 +0 0.0953 +0 0.2664 +0 0.1743 +0 0.0654 +0 0.2032 +0 0.0623 +0 0.6262 +0 0.1520 +0 0.0717 +0 0.0867 +0 0.1515 +0 0.1800 +0 0.1101 +0 0.0742 +0 0.0616 +0 0.0371 +0 0.2267 +0 0.0967 +0 0.1251 +0 0.0700 +0 0.0758 +0 0.1075 +0 0.1182 +0 0.0751 +0 0.1949 +0 0.1770 +0 0.2181 +0 0.1255 +0 0.2047 +0 0.1733 +0 0.3319 +0 0.0477 +0 0.2173 +0 0.0811 +0 0.2314 +0 0.3429 +0 0.2916 +0 0.0791 +0 0.2938 +0 0.1007 +0 0.7029 +0 0.3683 +0 0.0899 +0 0.0425 +0 0.1526 +0 0.0732 +0 0.0765 +0 0.1429 +1 0.8337 +0 0.1349 +0 0.4237 +0 0.2175 +0 0.0759 +0 0.2077 +0 0.1994 +0 0.1074 +0 0.1557 +0 0.2024 +0 0.0667 +0 0.1258 +0 0.1507 +0 0.1036 +0 0.2127 +0 0.6160 +0 0.1349 +0 0.0651 +0 0.0957 +0 0.2450 +0 0.1168 +0 0.2715 +0 0.2815 +0 0.1021 +0 0.2026 +0 0.1257 +0 0.1529 +0 0.1566 +0 0.1044 +0 0.2512 +0 0.1144 +0 0.1328 +0 0.2633 +0 0.0729 +0 0.1016 +0 0.0754 +0 0.2610 +0 0.1063 +0 0.1046 +0 0.1248 +0 0.1022 +0 0.0638 +0 0.1001 +0 0.2364 +0 0.0654 +0 0.1500 +0 0.1028 +0 0.1704 +0 0.1841 +0 0.0348 +0 0.1303 +0 0.1017 +0 0.0488 +0 0.0740 +0 0.0311 +0 0.0904 +0 0.1271 +0 0.1471 +0 0.1183 +0 0.0629 +0 0.2218 +0 0.3367 +0 0.0474 +0 0.4721 +0 0.1060 +0 0.1828 +0 0.2025 +0 0.0717 +0 0.1089 +0 0.1309 +0 0.1768 +0 0.0423 +0 0.2701 +0 0.0573 +0 0.1239 +0 0.1256 +0 0.0871 +0 0.0565 +0 0.1999 +0 0.0538 +0 0.3563 +0 0.4624 +0 0.0821 +0 0.1076 +0 0.1915 +0 0.1679 +0 0.6565 +0 0.1577 +0 0.1162 +0 0.1269 +0 0.0725 +0 0.0973 +0 0.1480 +0 0.1748 +0 0.0749 +0 0.0979 +0 0.0986 +0 0.1364 +0 0.0816 +0 0.1717 +0 0.1740 +0 0.1460 +0 0.0958 +0 0.0740 +0 0.0531 +0 0.1761 +0 0.0475 +0 0.1940 +0 0.0562 +0 0.2944 +0 0.0677 +0 0.0709 +0 0.1219 +0 0.1946 +0 0.2660 +1 0.7908 +0 0.2428 +0 0.0690 +0 0.1595 +0 0.1579 +0 0.0557 +0 0.0499 +0 0.2001 +0 0.0904 +0 0.0705 +0 0.1302 +0 0.1556 +0 0.1236 +0 0.1269 +0 0.2342 +0 0.2092 +0 0.0664 +0 0.1116 +0 0.0931 +0 0.0664 +0 0.0725 +0 0.1687 +0 0.2165 +0 0.0509 +0 0.0541 +0 0.4148 +0 0.1070 +0 0.0774 +0 0.1582 +0 0.4715 +0 0.3639 +0 0.0567 +0 0.1089 +0 0.0651 +0 0.3363 +0 0.1106 +0 0.1219 +0 0.1045 +0 0.1250 +0 0.1635 +0 0.0705 +0 0.0877 +0 0.0448 +0 0.2799 +0 0.0880 +0 0.0631 +0 0.0500 +0 0.0526 +0 0.1299 +0 0.2891 +0 0.0838 +0 0.0889 +1 0.7680 +0 0.0973 +0 0.1262 +0 0.0752 +0 0.1148 +0 0.1014 +0 0.0606 +0 0.2514 +0 0.2078 +0 0.1120 +0 0.1952 +0 0.0585 +0 0.0938 +0 0.3834 +0 0.0808 +0 0.1014 +0 0.1096 +0 0.1184 +0 0.0893 +0 0.0629 +0 0.2165 +0 0.0614 +0 0.0795 +0 0.1295 +0 0.1267 +0 0.0769 +0 0.0644 +0 0.0658 +0 0.0602 +0 0.2026 +0 0.0734 +0 0.0358 +0 0.4483 +0 0.0891 +0 0.0878 +0 0.0620 +0 0.1348 +0 0.1195 +0 0.0460 +0 0.1849 +0 0.1135 +0 0.1047 +0 0.1280 +0 0.0552 +0 0.3459 +0 0.0768 +0 0.0870 +0 0.4788 +0 0.0647 +0 0.1561 +0 0.1072 +0 0.0414 +0 0.1820 +0 0.1011 +0 0.1517 +0 0.1352 +0 0.0737 +0 0.1271 +0 0.0827 +0 0.0576 +0 0.1428 +0 0.0399 +0 0.0870 +0 0.1486 +0 0.0591 +0 0.0981 +0 0.0419 +0 0.6657 +0 0.5012 +0 0.5546 +0 0.1942 +0 0.1295 +0 0.2295 +0 0.1475 +0 0.0745 +0 0.1328 +0 0.0622 +0 0.0738 +0 0.0925 +0 0.3239 +0 0.1394 +0 0.2438 +0 0.0900 +0 0.0498 +0 0.1541 +0 0.1207 +0 0.1374 +0 0.0635 +0 0.0590 +0 0.1260 +0 0.0853 +0 0.2945 +0 0.0862 +0 0.1272 +0 0.0622 +0 0.0812 +0 0.0295 +0 0.1034 +0 0.1560 +0 0.0659 +0 0.0628 +0 0.1237 +0 0.1822 +0 0.1112 +0 0.0481 +0 0.0876 +0 0.0598 +0 0.1454 +0 0.0908 +0 0.0886 +0 0.1579 +0 0.1037 +0 0.1679 +0 0.0505 +0 0.1467 +0 0.1048 +1 0.8803 +0 0.0969 +0 0.2105 +0 0.1707 +0 0.5322 +0 0.0524 +0 0.2753 +0 0.0616 +0 0.1802 +0 0.5533 +0 0.0776 +0 0.2068 +0 0.2454 +0 0.1169 +1 0.8720 +0 0.1169 +0 0.1413 +0 0.6446 +0 0.1254 +0 0.1674 +0 0.1431 +0 0.1307 +0 0.0812 +0 0.2738 +0 0.2764 +0 0.0610 +0 0.0960 +0 0.0426 +0 0.0475 +0 0.1021 +0 0.4546 +0 0.0563 +0 0.0803 +0 0.0888 +0 0.0916 +0 0.0734 +0 0.5172 +0 0.0468 +0 0.1398 +0 0.3300 +0 0.1112 +0 0.1139 +0 0.3025 +0 0.0667 +0 0.1750 +0 0.1086 +0 0.1301 +0 0.4709 +0 0.1077 +0 0.2559 +0 0.0895 +0 0.0831 +0 0.1322 +1 0.7660 +0 0.3070 +0 0.0920 +0 0.2458 +0 0.0640 +0 0.2014 +0 0.1606 +0 0.0905 +0 0.1255 +0 0.1215 +0 0.0594 +0 0.1025 +0 0.1483 +0 0.1026 +0 0.0595 +0 0.3758 +0 0.0516 +0 0.0780 +0 0.0403 +0 0.1097 +0 0.1309 +0 0.1227 +0 0.0391 +0 0.0361 +0 0.3603 +0 0.0599 +0 0.1405 +0 0.0489 +0 0.1190 +0 0.0784 +0 0.1679 +0 0.0978 +0 0.0654 +0 0.0756 +0 0.0673 +0 0.2472 +0 0.0808 +0 0.0881 +0 0.1247 +0 0.2380 +0 0.1603 +0 0.0582 +0 0.1212 +0 0.0598 +0 0.4983 +0 0.0851 +0 0.1095 +0 0.1043 +0 0.1288 +0 0.0947 +0 0.1895 +0 0.0739 +0 0.0928 +0 0.0889 +0 0.7106 +0 0.1856 +0 0.0916 +0 0.0718 +0 0.2584 +0 0.1339 +0 0.1776 +0 0.0741 +0 0.0631 +0 0.1175 +0 0.0929 +0 0.0532 +0 0.0837 +0 0.1890 +0 0.0473 +0 0.1202 +0 0.1469 +0 0.1215 +0 0.0625 +0 0.0954 +0 0.1777 +0 0.3179 +0 0.2456 +0 0.0485 +0 0.0648 +0 0.1193 +0 0.1793 +0 0.2353 +0 0.1358 +0 0.6409 +0 0.1307 +0 0.0762 +0 0.0932 +0 0.0605 +0 0.0592 +0 0.0987 +0 0.1069 +0 0.0395 +0 0.0678 +0 0.0672 +0 0.1312 +0 0.1149 +0 0.1027 +0 0.4241 +0 0.4389 +0 0.1697 +0 0.0383 +0 0.0992 +0 0.0703 +0 0.1543 +0 0.0530 +0 0.0654 +0 0.1907 +0 0.1772 +0 0.0531 +0 0.0615 +0 0.0489 +0 0.2224 +0 0.0882 +0 0.0755 +0 0.1171 +0 0.1516 +0 0.0332 +0 0.1244 +0 0.0886 +0 0.0922 +0 0.1466 +0 0.0522 +0 0.1918 +0 0.0922 +0 0.0514 +0 0.0568 +0 0.0954 +0 0.0757 +0 0.0703 +0 0.0863 +0 0.2474 +0 0.1588 +0 0.1812 +0 0.1771 +0 0.1376 +0 0.1433 +0 0.3517 +0 0.1774 +1 0.8141 +0 0.0817 +0 0.0758 +0 0.0738 +0 0.1738 +0 0.0470 +0 0.1285 +0 0.1725 +0 0.0720 +0 0.0641 +1 0.8074 +0 0.0761 +0 0.1207 +0 0.3655 +0 0.5577 +0 0.0976 +0 0.1149 +0 0.1169 +0 0.1763 +0 0.0837 +0 0.1226 +0 0.1346 +0 0.0725 +0 0.3040 +0 0.2210 +0 0.0790 +0 0.0839 +0 0.1253 +0 0.0623 +0 0.0442 +0 0.2963 +0 0.1180 +0 0.0689 +0 0.2505 +0 0.1099 +0 0.0603 +0 0.3204 +0 0.0917 +0 0.0575 +0 0.0749 +0 0.0715 +0 0.1054 +0 0.1047 +0 0.0907 +0 0.1337 +0 0.1348 +0 0.1064 +0 0.1333 +0 0.1105 +0 0.4035 +0 0.0791 +0 0.0637 +0 0.2185 +0 0.0862 +0 0.1700 +0 0.0598 +0 0.1386 +0 0.0981 +0 0.1022 +0 0.0915 +0 0.0930 +0 0.0724 +0 0.0757 +0 0.7022 +0 0.0883 +0 0.5678 +0 0.1988 +0 0.2531 +0 0.0827 +0 0.2131 +0 0.0627 +0 0.0897 +0 0.1217 +0 0.6333 +0 0.0609 +0 0.0646 +0 0.0818 +0 0.1146 +0 0.0918 +1 0.8355 +0 0.0722 +0 0.0843 +0 0.2619 +0 0.0834 +0 0.0604 +0 0.0485 +0 0.0860 +0 0.1016 +0 0.2100 +0 0.0750 +0 0.0839 +0 0.0501 +0 0.1040 +0 0.0572 +0 0.1257 +0 0.0823 +0 0.0445 +0 0.1305 +0 0.2468 +0 0.1102 +0 0.0508 +0 0.0731 +0 0.1017 +0 0.0911 +0 0.0680 +0 0.1642 +0 0.1167 +0 0.0787 +0 0.1116 +0 0.0557 +0 0.0872 +0 0.0587 +0 0.0427 +0 0.1073 +0 0.1446 +0 0.1811 +0 0.0906 +0 0.1767 +0 0.1227 +0 0.0702 +0 0.1942 +0 0.1572 +0 0.0427 +0 0.0848 +0 0.1447 +0 0.0753 +0 0.0873 +0 0.1687 +0 0.0667 +0 0.1146 +0 0.2038 +0 0.0705 +0 0.4953 +0 0.0763 +0 0.0964 +0 0.1242 +0 0.0729 +0 0.2175 +0 0.0759 +0 0.2322 +0 0.1991 +0 0.0489 +0 0.0678 +0 0.1861 +0 0.0543 +0 0.1466 +0 0.0690 +0 0.1377 +0 0.4362 +0 0.0512 +0 0.1308 +0 0.1601 +0 0.2336 +0 0.1004 +0 0.1291 +0 0.1015 +0 0.0439 +0 0.1717 +0 0.3007 +0 0.3335 +0 0.1044 +0 0.0585 +0 0.1819 +0 0.0663 +0 0.0887 +0 0.1690 +0 0.1692 +0 0.1531 +0 0.2701 +0 0.0723 +0 0.0998 +0 0.0632 +0 0.4657 +0 0.0734 +0 0.1276 +0 0.1008 +0 0.0602 +0 0.2917 +0 0.1032 +0 0.0785 +0 0.2167 +0 0.1272 +0 0.0434 +0 0.1453 +0 0.1545 +0 0.0670 +0 0.1074 +0 0.2467 +0 0.1331 +0 0.1168 +0 0.0551 +1 0.8468 +0 0.0743 +0 0.1111 +0 0.0772 +0 0.1027 +0 0.1723 +0 0.0766 +0 0.2121 +0 0.2127 +0 0.1074 +0 0.1114 +0 0.0405 +0 0.0674 +0 0.1119 +0 0.2833 +0 0.1089 +0 0.1511 +0 0.1432 +0 0.1874 +0 0.0986 +0 0.1619 +0 0.1220 +0 0.2916 +0 0.3870 +0 0.2106 +0 0.1763 +0 0.1695 +0 0.1321 +0 0.1228 +0 0.1176 +0 0.1343 +0 0.1947 +0 0.2305 +0 0.0691 +0 0.0878 +0 0.2612 +0 0.0870 +0 0.1306 +0 0.0910 +0 0.1109 +0 0.0882 +0 0.1039 +0 0.1013 +0 0.0466 +0 0.0669 +0 0.1355 +0 0.1581 +0 0.1246 +0 0.1218 +0 0.3165 +0 0.1314 +0 0.1017 +0 0.0947 +0 0.0637 +0 0.0367 +0 0.1017 +0 0.1244 +0 0.2569 +0 0.0517 +0 0.1247 +0 0.6665 +0 0.0945 +0 0.3153 +0 0.1041 +0 0.0309 +0 0.4649 +0 0.0667 +1 0.8045 +0 0.0903 +0 0.1932 +0 0.0892 +0 0.0844 +0 0.1422 +0 0.0943 +0 0.1175 +0 0.0349 +1 0.8499 +0 0.6010 +0 0.0810 +0 0.1105 +0 0.1167 +0 0.2288 +0 0.4277 +0 0.6980 +0 0.6344 +0 0.7075 +0 0.1075 +0 0.2011 +0 0.0972 +0 0.0359 +0 0.0959 +0 0.0887 +0 0.0950 +0 0.0806 +0 0.2217 +0 0.2285 +0 0.1163 +0 0.0448 +0 0.0551 +0 0.0963 +0 0.1216 +0 0.1636 +0 0.2669 +0 0.3155 +0 0.0725 +0 0.0512 +0 0.1850 +0 0.1756 +0 0.0652 +0 0.0649 +0 0.2737 +0 0.0937 +0 0.0636 +0 0.1047 +0 0.0951 +0 0.0376 +0 0.0554 +0 0.0611 +0 0.1877 +0 0.0405 +0 0.0988 +0 0.3291 +0 0.0929 +0 0.1705 +0 0.0864 +0 0.0901 +0 0.0873 +1 0.7870 +0 0.3058 +0 0.0669 +0 0.0485 +0 0.0521 +0 0.0552 +0 0.1097 +0 0.0580 +0 0.0977 +0 0.1052 +0 0.1450 +0 0.3595 +0 0.0733 +0 0.1470 +1 0.7754 +0 0.0942 +0 0.0999 +0 0.0773 +0 0.0744 +0 0.2893 +0 0.5711 +0 0.1751 +0 0.1263 +0 0.1304 +0 0.0973 +0 0.1142 +0 0.0938 +0 0.1804 +0 0.1774 +0 0.0382 +0 0.0711 +0 0.1715 +0 0.0586 +0 0.0953 +0 0.1587 +0 0.1412 +0 0.0565 +0 0.0909 +0 0.1007 +0 0.1058 +0 0.0975 +0 0.1368 +0 0.4380 +0 0.1285 +0 0.1466 +0 0.2994 +0 0.1226 +0 0.4530 +1 0.8711 +0 0.1587 +0 0.0615 +0 0.0637 +0 0.0776 +1 0.8794 +0 0.0638 +0 0.0446 +0 0.0543 +0 0.1127 +0 0.1002 +0 0.0768 +0 0.2272 +0 0.0509 +0 0.0656 +0 0.0715 +0 0.1085 +0 0.0969 +0 0.1539 +0 0.0875 +0 0.0619 +0 0.0410 +0 0.1198 +0 0.0892 +0 0.1250 +0 0.3415 +0 0.0883 +0 0.0864 +0 0.0915 +0 0.0510 +0 0.1786 +0 0.1063 +0 0.0616 +0 0.1001 +0 0.2222 +0 0.0949 +0 0.1104 +0 0.0675 +0 0.1468 +0 0.0350 +0 0.0743 +0 0.0661 +0 0.0765 +0 0.2722 +0 0.0535 +0 0.0685 +0 0.0577 +0 0.0547 +0 0.0484 +0 0.3366 +0 0.3095 +0 0.0819 +0 0.1344 +0 0.0908 +0 0.0726 +0 0.0773 +0 0.0643 +0 0.1402 +0 0.0671 +0 0.1648 +0 0.0868 +0 0.0960 +0 0.1063 +0 0.6319 +0 0.0491 +0 0.1466 +0 0.0519 +0 0.0932 +0 0.2043 +0 0.1460 +0 0.1860 +0 0.1610 +0 0.2040 +0 0.0985 +0 0.3338 +0 0.4476 +0 0.0782 +0 0.1576 +0 0.1289 +0 0.0359 +0 0.0653 +0 0.1350 +0 0.0624 +0 0.0513 +0 0.0653 +0 0.1731 +0 0.1194 +0 0.5946 +0 0.0629 +0 0.3336 +0 0.0760 +0 0.4499 +0 0.1467 +0 0.2690 +0 0.0846 +0 0.0690 +0 0.2518 +0 0.1041 +0 0.1869 +0 0.0852 +0 0.0597 +0 0.0552 +0 0.1374 +0 0.1085 +0 0.1058 +0 0.0933 +1 0.8216 +0 0.1069 +0 0.1637 +0 0.3718 +0 0.6544 +0 0.0835 +0 0.1731 +0 0.1206 +0 0.1372 +0 0.2112 +0 0.0554 +0 0.0371 +0 0.0764 +0 0.0615 +0 0.1100 +0 0.3362 +0 0.0609 +0 0.0866 +1 0.7829 +0 0.1350 +0 0.0588 +0 0.1431 +0 0.1478 +0 0.1005 +0 0.1415 +0 0.2420 +0 0.2597 +0 0.0902 +0 0.1379 +0 0.0673 +0 0.1060 +0 0.0901 +0 0.5765 +0 0.0929 +0 0.0680 +0 0.1654 +0 0.1117 +0 0.1341 +0 0.0636 +0 0.1635 +0 0.0644 +0 0.0810 +0 0.3391 +0 0.1689 +0 0.1681 +0 0.3880 +0 0.1769 +0 0.2423 +0 0.0888 +0 0.0533 +0 0.1473 +0 0.1239 +0 0.0494 +0 0.1156 +0 0.0789 +0 0.0495 +0 0.0511 +0 0.0824 +0 0.1077 +0 0.2269 +0 0.0730 +0 0.0805 +0 0.1529 +0 0.1250 +0 0.0498 +0 0.0613 +0 0.0480 +0 0.1205 +0 0.0448 +0 0.1145 +0 0.1021 +0 0.2005 +0 0.0977 +0 0.1649 +0 0.1178 +0 0.1423 +0 0.1022 +0 0.0813 +0 0.0690 +0 0.6759 +0 0.0871 +0 0.3944 +0 0.1312 +0 0.1053 +0 0.4062 +0 0.0672 +0 0.1156 +0 0.1379 +0 0.1540 +0 0.0933 +0 0.0786 +0 0.0811 +0 0.0518 +0 0.1095 +0 0.1679 +0 0.1128 +0 0.5322 +0 0.1531 +0 0.1176 +0 0.0996 +0 0.2640 +0 0.0431 +0 0.0716 +0 0.0729 +0 0.1060 +0 0.1907 +0 0.0953 +0 0.2028 +0 0.2324 +0 0.4312 +0 0.1085 +0 0.0698 +0 0.1061 +0 0.1289 +0 0.2098 +0 0.0312 +0 0.2306 +0 0.0450 +0 0.0412 +0 0.1238 +0 0.1364 +0 0.0759 +0 0.0495 +0 0.2363 +0 0.1452 +0 0.0965 +0 0.0523 +0 0.0758 +0 0.0920 +0 0.1128 +0 0.0785 +0 0.1145 +0 0.1106 +0 0.6931 +0 0.1198 +0 0.1789 +1 0.8279 +0 0.6654 +0 0.2831 +0 0.0609 +0 0.0851 +0 0.0552 +1 0.7545 +0 0.1556 +0 0.0456 +0 0.0829 +0 0.2042 +0 0.1787 +0 0.0759 +0 0.1965 +0 0.2657 +0 0.1026 +0 0.0741 +0 0.0543 +0 0.0785 +0 0.1571 +0 0.4647 +0 0.2019 +0 0.0497 +0 0.0744 +0 0.3714 +0 0.2059 +0 0.0863 +0 0.0384 +0 0.0706 +0 0.0399 +0 0.1503 +0 0.2357 +0 0.1376 +0 0.0578 +0 0.0966 +0 0.1242 +0 0.1332 +0 0.1385 +0 0.1544 +0 0.1253 +0 0.1783 +0 0.0896 +0 0.2176 +0 0.1534 +0 0.0377 +0 0.0938 +0 0.1689 +0 0.0950 +0 0.1051 +1 0.7599 +0 0.3090 +0 0.0759 +0 0.0673 +0 0.1349 +0 0.1052 +0 0.0819 +0 0.0754 +0 0.1201 +0 0.2288 +0 0.0606 +0 0.1287 +0 0.0840 +0 0.0628 +0 0.5564 +0 0.3129 +0 0.1546 +0 0.1028 +0 0.0922 +0 0.1063 +0 0.3405 +0 0.0887 +0 0.1378 +0 0.1139 +0 0.1107 +0 0.0781 +0 0.1867 +0 0.1098 +0 0.2671 +0 0.0542 +1 0.8091 +0 0.0681 +0 0.1416 +0 0.2456 +0 0.2940 +1 0.8521 +0 0.0901 +0 0.2073 +0 0.1074 +0 0.1666 +0 0.0832 +0 0.1669 +0 0.0658 +0 0.1925 +0 0.1527 +0 0.1393 +0 0.1353 +0 0.2057 +0 0.1069 +0 0.1119 +0 0.1362 +0 0.1006 +0 0.0843 +0 0.0684 +0 0.2442 +0 0.7366 +0 0.1108 +0 0.0695 +0 0.0918 +0 0.0937 +0 0.0734 +0 0.0621 +0 0.1154 +0 0.0440 +0 0.2391 +0 0.0398 +1 0.8576 +0 0.0673 +0 0.0839 +0 0.0577 +0 0.3355 +0 0.0673 +0 0.1050 +0 0.2356 +0 0.1125 +0 0.1049 +0 0.0876 +0 0.0632 +0 0.1879 +0 0.1274 +0 0.0723 +0 0.0619 +0 0.1153 +0 0.1172 +0 0.2139 +0 0.1385 +0 0.0904 +0 0.0910 +0 0.0675 +0 0.0507 +0 0.0639 +0 0.0862 +0 0.1210 +0 0.0800 +0 0.1065 +0 0.1071 +0 0.0429 +0 0.1425 +0 0.0841 +0 0.1056 +0 0.0644 +1 0.8423 +0 0.1934 +0 0.1288 +0 0.0709 +0 0.2089 +0 0.1300 +0 0.1728 +0 0.1550 +0 0.0735 +0 0.0999 +0 0.2241 +0 0.0673 +0 0.0922 +0 0.4882 +0 0.0680 +0 0.2265 +0 0.1030 +0 0.3136 +0 0.0723 +0 0.1135 +0 0.0943 +0 0.1422 +0 0.1248 +1 0.8414 +1 0.8304 +0 0.0951 +0 0.1404 +0 0.1445 +0 0.0998 +0 0.0751 +0 0.0888 +0 0.1243 +0 0.0635 +0 0.0999 +0 0.1487 +0 0.0514 +0 0.0501 +0 0.0496 +0 0.0621 +0 0.1739 +0 0.0726 +0 0.0498 +0 0.3637 +0 0.2468 +0 0.1296 +0 0.0864 +0 0.0427 +0 0.0872 +0 0.0416 +0 0.1417 +0 0.0740 +0 0.0924 +0 0.0951 +0 0.1208 +0 0.1943 +0 0.0814 +1 0.8720 +0 0.1830 +0 0.0830 +0 0.1670 +0 0.0861 +0 0.2158 +0 0.1186 +0 0.0872 +0 0.0962 +0 0.0511 +0 0.1413 +0 0.1482 +0 0.1660 +0 0.2319 +0 0.1125 +0 0.1650 +0 0.1092 +0 0.1345 +0 0.0591 +0 0.5118 +0 0.1594 +0 0.0946 +0 0.1816 +0 0.3848 +0 0.2785 +0 0.1527 +0 0.3863 +0 0.3382 +0 0.0983 +0 0.1840 +0 0.1114 +0 0.0404 +0 0.1335 +0 0.1441 +0 0.1108 +0 0.0906 +0 0.2630 +0 0.2120 +0 0.0538 +0 0.1306 +0 0.2131 +0 0.1165 +0 0.0852 +0 0.1384 +0 0.1755 +0 0.1221 +0 0.0841 +0 0.0842 +0 0.0853 +0 0.1652 +0 0.1545 +0 0.1175 +0 0.1128 +0 0.0803 +0 0.1040 +0 0.0539 +0 0.0441 +0 0.0951 +0 0.0872 +0 0.0699 +0 0.2448 +0 0.0899 +0 0.1378 +0 0.0649 +0 0.0763 +0 0.0665 +0 0.0531 +0 0.0604 +0 0.0425 +0 0.0623 +0 0.0958 +0 0.0785 +0 0.1317 +0 0.0331 +0 0.1425 +0 0.0814 +0 0.1839 +0 0.2024 +0 0.1918 +0 0.0518 +0 0.1141 +0 0.1730 +0 0.4543 +0 0.0708 +0 0.1090 +0 0.0742 +0 0.1481 +0 0.1357 +0 0.1032 +0 0.2396 +0 0.0947 +0 0.0702 +0 0.0767 +0 0.0663 +0 0.0698 +0 0.0797 +0 0.1637 +0 0.2682 +0 0.0551 +0 0.0464 +0 0.3666 +0 0.0823 +0 0.1942 +0 0.0579 +0 0.6932 +0 0.1495 +0 0.1314 +0 0.1204 +0 0.1948 +0 0.0450 +0 0.1303 +0 0.2224 +0 0.0481 +0 0.0627 +0 0.0554 +0 0.0984 +0 0.1851 +0 0.0839 +0 0.2277 +0 0.2498 +0 0.0522 +0 0.1029 +0 0.1489 +0 0.0425 +0 0.0554 +0 0.5674 +0 0.1334 +0 0.0488 +0 0.4268 +1 0.8614 +0 0.0876 +0 0.0478 +0 0.0670 +0 0.0953 +0 0.5478 +0 0.0500 +0 0.1631 +0 0.0486 +0 0.0923 +0 0.0731 +0 0.3989 +1 0.8041 +0 0.2190 +0 0.1102 +0 0.0572 +0 0.2866 +0 0.0884 +0 0.0943 +0 0.0796 +0 0.2939 +0 0.1253 +0 0.0946 +0 0.0791 +0 0.2029 +0 0.1016 +0 0.2045 +0 0.3162 +0 0.0710 +0 0.0858 +0 0.4465 +0 0.0646 +0 0.0694 +0 0.1262 +0 0.6255 +0 0.0793 +0 0.2371 +0 0.1270 +0 0.1047 +0 0.3964 +0 0.0550 +0 0.2164 +0 0.1511 +0 0.0706 +0 0.0622 +0 0.1231 +0 0.4400 +0 0.1054 +0 0.1002 +0 0.1312 +0 0.1227 +0 0.1001 +0 0.2300 +0 0.4594 +0 0.1478 +0 0.3103 +0 0.1036 +0 0.0550 +0 0.0586 +0 0.0618 +1 0.8029 +0 0.1797 +0 0.1048 +0 0.0634 +0 0.2316 +0 0.1361 +0 0.1338 +0 0.0372 +0 0.0887 +0 0.2035 +0 0.1088 +0 0.1775 +0 0.0860 +0 0.1105 +0 0.1198 +0 0.0932 +0 0.1458 +0 0.0853 +0 0.2013 +0 0.1707 +0 0.2875 +0 0.0818 +0 0.0689 +0 0.1210 +0 0.2550 +0 0.0702 +0 0.0560 +0 0.0774 +0 0.0647 +0 0.0753 +0 0.2591 +0 0.3455 +0 0.3495 +0 0.3669 +0 0.1142 +0 0.0524 +0 0.1225 +0 0.2011 +0 0.1295 +0 0.1363 +0 0.1157 +0 0.1176 +0 0.0950 +0 0.1390 +0 0.2941 +0 0.2269 +0 0.0991 +0 0.0723 +0 0.0712 +0 0.1582 +0 0.2063 +0 0.0746 +0 0.0901 +0 0.0675 +0 0.2864 +0 0.3352 +0 0.0634 +0 0.0926 +0 0.0917 +0 0.0591 +0 0.0958 +0 0.1008 +0 0.0789 +0 0.0877 +0 0.1442 +0 0.0807 +0 0.1151 +0 0.1262 +0 0.0873 +0 0.0950 +0 0.1383 +0 0.0498 +0 0.3754 +0 0.1146 +0 0.0432 +0 0.0533 +0 0.0916 +0 0.1224 +0 0.2678 +0 0.0548 +0 0.0901 +0 0.0688 +0 0.0866 +0 0.1441 +0 0.0692 +0 0.0488 +0 0.0902 +0 0.0983 +0 0.1230 +0 0.1617 +0 0.1217 +0 0.3050 +0 0.1727 +0 0.0449 +0 0.1095 +0 0.1435 +0 0.1033 +0 0.1389 +0 0.3527 +0 0.1677 +0 0.0471 +0 0.1096 +0 0.1221 +0 0.1346 +0 0.0444 +0 0.0469 +0 0.0747 +0 0.2201 +0 0.2238 +1 0.7521 +0 0.0658 +0 0.2023 +0 0.1082 +0 0.0719 +0 0.6958 +0 0.0630 +0 0.0449 +1 0.8396 +0 0.2810 +0 0.0966 +0 0.0686 +0 0.0861 +0 0.0774 +0 0.3244 +0 0.0585 +0 0.0659 +0 0.2233 +0 0.1154 +0 0.2045 +0 0.2702 +0 0.1115 +0 0.0993 +0 0.0687 +0 0.2273 +0 0.0985 +0 0.0632 +0 0.1277 +0 0.1558 +0 0.3072 +0 0.0961 +0 0.3953 +0 0.1265 +0 0.2523 +0 0.0857 +0 0.2038 +0 0.2377 +0 0.3212 +0 0.0735 +0 0.0690 +0 0.0858 +0 0.1001 +0 0.2344 +0 0.1036 +0 0.2215 +0 0.1918 +0 0.1737 +0 0.1104 +0 0.1641 +0 0.0445 +0 0.0812 +0 0.1734 +0 0.7438 +0 0.4870 +0 0.1200 +0 0.1464 +0 0.0460 +0 0.1224 +0 0.0771 +0 0.0727 +0 0.1511 +0 0.1318 +0 0.1650 +0 0.0519 +0 0.0633 +0 0.0995 +0 0.0627 +0 0.3186 +0 0.4975 +0 0.0880 +0 0.1504 +0 0.1963 +0 0.1166 +0 0.5740 +0 0.2369 +0 0.0443 +0 0.1259 +0 0.0574 +0 0.0881 +0 0.1144 +0 0.1689 +0 0.0790 +0 0.3083 +0 0.0972 +0 0.2801 +0 0.0696 +0 0.1769 +0 0.0916 +0 0.3468 +0 0.0771 +0 0.0858 +0 0.2072 +0 0.0617 +0 0.2162 +0 0.1879 +0 0.0599 +0 0.1337 +0 0.3417 +0 0.0678 +0 0.1493 +0 0.1157 +0 0.2692 +0 0.3054 +0 0.2378 +0 0.7401 +0 0.1313 +0 0.0775 +0 0.0771 +0 0.1035 +0 0.0893 +0 0.0648 +0 0.0346 +0 0.1420 +0 0.1072 +0 0.1099 +0 0.0920 +0 0.0607 +0 0.1045 +0 0.1410 +0 0.0770 +0 0.0656 +0 0.1048 +0 0.1505 +0 0.0977 +0 0.0508 +0 0.0609 +0 0.0760 +0 0.1026 +1 0.8020 +0 0.0575 +0 0.1090 +0 0.0688 +0 0.0944 +0 0.0777 +0 0.0708 +0 0.1998 +1 0.8258 +0 0.5981 +0 0.0911 +0 0.0570 +0 0.0954 +0 0.0624 +0 0.0724 +0 0.0353 +0 0.4242 +0 0.1027 +0 0.1140 +0 0.0464 +0 0.0593 +0 0.0495 +0 0.1098 +0 0.2000 +0 0.0811 +0 0.1528 +0 0.0403 +0 0.0470 +0 0.6115 +0 0.0561 +0 0.0726 +0 0.0581 +0 0.0973 +0 0.0654 +0 0.1899 +0 0.0440 +0 0.0583 +0 0.0752 +0 0.1094 +0 0.0731 +0 0.1100 +0 0.0847 +0 0.2828 +0 0.0554 +0 0.0634 +0 0.0660 +0 0.1003 +0 0.0583 +0 0.1407 +0 0.2466 +0 0.7425 +0 0.1399 +0 0.0616 +0 0.0507 +0 0.0743 +0 0.1189 +0 0.0542 +0 0.0617 +0 0.0847 +0 0.2226 +0 0.0657 +0 0.0922 +0 0.0615 +0 0.1372 +0 0.1358 +0 0.1414 +0 0.1596 +0 0.3043 +0 0.1350 +0 0.1075 +0 0.6623 +0 0.0341 +0 0.4186 +0 0.1831 +0 0.0966 +0 0.0613 +0 0.0945 +0 0.0362 +0 0.1798 +0 0.0583 +0 0.1176 +0 0.0713 +0 0.0495 +0 0.2139 +0 0.1693 +0 0.0539 +0 0.0826 +0 0.0530 +0 0.2067 +0 0.1493 +0 0.0942 +0 0.0876 +0 0.0681 +0 0.0507 +0 0.0939 +0 0.1564 +0 0.0897 +0 0.0721 +0 0.1882 +0 0.0988 +0 0.1704 +0 0.1767 +0 0.1925 +0 0.0502 +0 0.2363 +0 0.1000 +0 0.1931 +0 0.0706 +0 0.1594 +0 0.0638 +0 0.0629 +0 0.2346 +0 0.0591 +0 0.0947 +0 0.4340 +0 0.1133 +0 0.1013 +0 0.1148 +0 0.1068 +0 0.0471 +0 0.0834 +0 0.1458 +0 0.0738 +0 0.0734 +0 0.2234 +0 0.2079 +0 0.1510 +0 0.0672 +0 0.1697 +0 0.1102 +0 0.3792 +0 0.0725 +0 0.0688 +0 0.0603 +0 0.1356 +0 0.0314 +0 0.0444 +0 0.0904 +0 0.0823 +0 0.1502 +0 0.0515 +0 0.3935 +0 0.1263 +0 0.1206 +0 0.1419 +0 0.1046 +0 0.1334 +0 0.0704 +0 0.1570 +0 0.0592 +0 0.0405 +0 0.0871 +0 0.0288 +0 0.3642 +0 0.0658 +0 0.0557 +0 0.5078 +0 0.1672 +0 0.1473 +0 0.0691 +0 0.1018 +0 0.1234 +0 0.0497 +0 0.0946 +0 0.1419 +0 0.3231 +0 0.4445 +0 0.0476 +0 0.2107 +0 0.0831 +0 0.0725 +0 0.1289 +0 0.1337 +0 0.1587 +0 0.2845 +0 0.0747 +0 0.0918 +0 0.7334 +0 0.1934 +0 0.1220 +0 0.3629 +0 0.0719 +0 0.1587 +0 0.2282 +0 0.0453 +0 0.0825 +0 0.0921 +0 0.3311 +0 0.1006 +0 0.1172 +0 0.1193 +0 0.1181 +0 0.2204 +0 0.0551 +0 0.0745 +0 0.0965 +0 0.0743 +0 0.2313 +0 0.1004 +0 0.0861 +0 0.3272 +0 0.1945 +0 0.0775 +0 0.1616 +0 0.1400 +0 0.0645 +0 0.1277 +0 0.1287 +0 0.2544 +0 0.1682 +0 0.2680 +0 0.2311 +0 0.0843 +0 0.0411 +0 0.1122 +0 0.1323 +1 0.8418 +0 0.0431 +0 0.0877 +0 0.1079 +0 0.0694 +0 0.1634 +0 0.0871 +0 0.1891 +0 0.3413 +0 0.0808 +0 0.1243 +0 0.1991 +0 0.1013 +0 0.2428 +0 0.0438 +0 0.1180 +0 0.1597 +0 0.1935 +0 0.2805 +0 0.0505 +0 0.1052 +0 0.0970 +0 0.0557 +0 0.1866 +0 0.3397 +0 0.0704 +1 0.7846 +0 0.0544 +0 0.2234 +0 0.0658 +0 0.5936 +0 0.2977 +0 0.6846 +0 0.0471 +0 0.0436 +0 0.2492 +0 0.1031 +0 0.1840 +0 0.1341 +0 0.0863 +0 0.1542 +0 0.1057 +0 0.0785 +0 0.3186 +0 0.1330 +0 0.0904 +0 0.0620 +0 0.1558 +0 0.1795 +0 0.1534 +0 0.0923 +0 0.0489 +0 0.1538 +0 0.2347 +0 0.0623 +0 0.0649 +0 0.0418 +0 0.1711 +0 0.0652 +0 0.1035 +0 0.0670 +0 0.1237 +0 0.0746 +0 0.1023 +0 0.2351 +0 0.0822 +0 0.6527 +0 0.0935 +0 0.0924 +0 0.7216 +0 0.1017 +0 0.0551 +0 0.2616 +0 0.1236 +0 0.1321 +0 0.1014 +0 0.1020 +0 0.1578 +0 0.1548 +0 0.0609 +0 0.0747 +0 0.1125 +0 0.1340 +0 0.2276 +0 0.0706 +0 0.1070 +0 0.0904 +0 0.0427 +0 0.1085 +0 0.1324 +0 0.0963 +0 0.0672 +0 0.1295 +0 0.1148 +0 0.0447 +0 0.1406 +0 0.0630 +0 0.1109 +0 0.0627 +0 0.2762 +0 0.0397 +0 0.0983 +0 0.0702 +0 0.0634 +0 0.1335 +0 0.5783 +0 0.0861 +0 0.1302 +0 0.1371 +0 0.3586 +0 0.2357 +0 0.1931 +0 0.0763 +0 0.2400 +0 0.0613 +0 0.2043 +0 0.4876 +0 0.3311 +0 0.0837 +0 0.1126 +0 0.0812 +0 0.1790 +0 0.2146 +0 0.0893 +0 0.0915 +0 0.1185 +0 0.5980 +0 0.0594 +0 0.1009 +0 0.1245 +0 0.1021 +0 0.0540 +0 0.1060 +0 0.2867 +0 0.1137 +0 0.1715 +0 0.0812 +0 0.0933 +0 0.1207 +0 0.0497 +0 0.0636 +0 0.0620 +0 0.2375 +0 0.1073 +0 0.0791 +0 0.0591 +0 0.0663 +0 0.1816 +0 0.2296 +0 0.0702 +0 0.1541 +0 0.3172 +0 0.2233 +0 0.1285 +0 0.1309 +0 0.0811 +0 0.0584 +0 0.0564 +0 0.0879 +0 0.1606 +0 0.0553 +0 0.0686 +0 0.1184 +0 0.0786 +0 0.0816 +0 0.1312 +0 0.1340 +0 0.0669 +0 0.0361 +0 0.1433 +0 0.4117 +0 0.1136 +0 0.5351 +0 0.0735 +0 0.0407 +0 0.0711 +0 0.0648 +0 0.2589 +0 0.1722 +0 0.1348 +0 0.0739 +0 0.2323 +0 0.1404 +0 0.0870 +0 0.1423 +0 0.0643 +0 0.1070 +0 0.1022 +0 0.0723 +0 0.1030 +0 0.1439 +0 0.0713 +1 0.7833 +0 0.1265 +0 0.1389 +0 0.1105 +0 0.7368 +0 0.1057 +0 0.3268 +0 0.1516 +0 0.0529 +0 0.0947 +0 0.0572 +0 0.0788 +0 0.1744 +0 0.1879 +0 0.6469 +0 0.1545 +0 0.1546 +0 0.1156 +1 0.7842 +0 0.0950 +0 0.0819 +0 0.1208 +0 0.1345 +0 0.1568 +0 0.1811 +0 0.1581 +1 0.8178 +0 0.1344 +0 0.1515 +0 0.0576 +0 0.0926 +0 0.5220 +0 0.1171 +0 0.1276 +0 0.1255 +0 0.0778 +0 0.2276 +0 0.0470 +0 0.1027 +0 0.1734 +0 0.0436 +0 0.4991 +0 0.2845 +0 0.1332 +0 0.1395 +0 0.0975 +0 0.0923 +0 0.1876 +0 0.1065 +0 0.0424 +0 0.1039 +1 0.7772 +0 0.0651 +0 0.0447 +0 0.1094 +0 0.0489 +0 0.0584 +0 0.0632 +0 0.1498 +0 0.0874 +0 0.1809 +0 0.1080 +0 0.0743 +0 0.1187 +0 0.1488 +0 0.2392 +0 0.1773 +0 0.1625 +0 0.0603 +0 0.1696 +0 0.3319 +0 0.0803 +0 0.1667 +0 0.0956 +0 0.0709 +0 0.0728 +0 0.1607 +0 0.1076 +0 0.1211 +0 0.0413 +0 0.1417 +0 0.0508 +0 0.1110 +0 0.2947 +0 0.0879 +0 0.2519 +1 0.8291 +0 0.1036 +0 0.1270 +0 0.1431 +0 0.1199 +0 0.0747 +0 0.0421 +0 0.5321 +0 0.0885 +0 0.1062 +0 0.0517 +0 0.4235 +0 0.1306 +0 0.7068 +0 0.0718 +0 0.1979 +0 0.2042 +0 0.0444 +0 0.1190 +1 0.7902 +0 0.0743 +0 0.3106 +0 0.1012 +0 0.0432 +0 0.0816 +0 0.1771 +0 0.0679 +0 0.1005 +0 0.1376 +0 0.0765 +0 0.0720 +0 0.0364 +0 0.0535 +0 0.1084 +0 0.0706 +0 0.0855 +0 0.0792 +0 0.2065 +0 0.0627 +0 0.0858 +0 0.1365 +0 0.2451 +0 0.0752 +0 0.2811 +0 0.0405 +0 0.1423 +0 0.0437 +0 0.0486 +0 0.2636 +0 0.0357 +0 0.1203 +0 0.0548 +0 0.0953 +0 0.2236 +0 0.0571 +0 0.1177 +0 0.1015 +0 0.0553 +0 0.2703 +0 0.1653 +0 0.0655 +0 0.4786 +0 0.0689 +0 0.2330 +0 0.0879 +0 0.0805 +0 0.0572 +0 0.1214 +0 0.1378 +0 0.0413 +0 0.0544 +0 0.0540 +0 0.1701 +0 0.0762 +0 0.0743 +0 0.0776 +0 0.2795 +0 0.1249 +0 0.6152 +0 0.1570 +1 0.8421 +0 0.2526 +0 0.1055 +0 0.1516 +0 0.0784 +0 0.2947 +0 0.0890 +0 0.0733 +0 0.1208 +1 0.8572 +0 0.1096 +0 0.1354 +0 0.0717 +0 0.1199 +0 0.0675 +0 0.3203 +0 0.0281 +0 0.0590 +0 0.0731 +0 0.1779 +1 0.8563 +0 0.1114 +0 0.0766 +0 0.0812 +0 0.1010 +0 0.0995 +0 0.2751 +0 0.1111 +0 0.0894 +0 0.0512 +0 0.1367 +0 0.1467 +0 0.1331 +0 0.1293 +0 0.0774 +0 0.1568 +0 0.1172 +0 0.1376 +0 0.3942 +0 0.1107 +0 0.2677 +0 0.0577 +0 0.0692 +0 0.1096 +0 0.3055 +0 0.0944 +0 0.1613 +1 0.7501 +0 0.6722 +0 0.3454 +0 0.0573 +0 0.0837 +0 0.3102 +0 0.2308 +0 0.1688 +0 0.7429 +0 0.1603 +0 0.0821 +0 0.1334 +0 0.1833 +0 0.0834 +0 0.0746 +0 0.0742 +0 0.0817 +0 0.0658 +0 0.0867 +0 0.0815 +0 0.1480 +0 0.0683 +0 0.0811 +1 0.7746 +0 0.0897 +0 0.0552 +0 0.1727 +0 0.0833 +0 0.0897 +0 0.4993 +0 0.2080 +0 0.1931 +0 0.0609 +0 0.0946 +0 0.0740 +0 0.1827 +0 0.1144 +0 0.1449 +0 0.0814 +0 0.0771 +0 0.1029 +0 0.2220 +0 0.1514 +0 0.0811 +0 0.0709 +0 0.1922 +1 0.7655 +0 0.0954 +0 0.0931 +0 0.0752 +0 0.0616 +0 0.3006 +0 0.0682 +0 0.0762 +0 0.0664 +0 0.1121 +0 0.1620 +0 0.0506 +0 0.1334 +0 0.0570 +0 0.0337 +0 0.7180 +0 0.0720 +0 0.2000 +0 0.0653 +0 0.0701 +0 0.1073 +0 0.1275 +0 0.0840 +0 0.1305 +0 0.1134 +0 0.0430 +0 0.0932 +0 0.1032 +0 0.0981 +0 0.0906 +0 0.0667 +1 0.8885 +0 0.1495 +0 0.2022 +0 0.1270 +0 0.0845 +0 0.1566 +0 0.0946 +0 0.1110 +0 0.0692 +0 0.0954 +0 0.2285 +0 0.0802 +1 0.8119 +1 0.7672 +0 0.1036 +0 0.1176 +0 0.0775 +0 0.1566 +0 0.0820 +0 0.0772 +1 0.7512 +0 0.0935 +0 0.1304 +0 0.0366 +0 0.1093 +0 0.0890 +0 0.1178 +0 0.0666 +0 0.1658 +0 0.2429 +0 0.2030 +0 0.0787 +0 0.0996 +0 0.3054 +0 0.1117 +0 0.0990 +0 0.1507 +0 0.0876 +0 0.0819 +0 0.1567 +0 0.3953 +0 0.1512 +0 0.0971 +0 0.0724 +0 0.2346 +0 0.1215 +0 0.0694 +0 0.0615 +0 0.1094 +0 0.1133 +0 0.0743 +0 0.3112 +0 0.1500 +0 0.0702 +0 0.0718 +0 0.2086 +0 0.1495 +0 0.1033 +0 0.6161 +0 0.0865 +0 0.0563 +0 0.0509 +0 0.0891 +0 0.0622 +0 0.1187 +0 0.1209 +0 0.1377 +0 0.0693 +0 0.0915 +0 0.0506 +0 0.0825 +0 0.1293 +0 0.0758 +0 0.2994 +0 0.1213 +0 0.0912 +0 0.2723 +0 0.1762 +0 0.0803 +0 0.0862 +0 0.4534 +0 0.1169 +0 0.2072 +0 0.0935 +0 0.1016 +0 0.0363 +0 0.0504 +0 0.0457 +0 0.0953 +0 0.0863 +0 0.1375 +0 0.0826 +0 0.0634 +0 0.1214 +0 0.0585 +0 0.1056 +0 0.0872 +0 0.1359 +0 0.0505 +0 0.0904 +0 0.0561 +0 0.0536 +0 0.1157 +0 0.0980 +0 0.0684 +0 0.1023 +0 0.0412 +0 0.1045 +0 0.0930 +0 0.0823 +0 0.1723 +0 0.4268 +0 0.1259 +0 0.7340 +0 0.0610 +0 0.0408 +0 0.0862 +1 0.8086 +0 0.1180 +0 0.1608 +0 0.2235 +0 0.0633 +0 0.2120 +0 0.0987 +0 0.2049 +0 0.6676 +0 0.2833 +0 0.5458 +0 0.2987 +0 0.1644 +0 0.1896 +0 0.0583 +0 0.0821 +0 0.0713 +0 0.0627 +0 0.1394 +0 0.2456 +0 0.1513 +0 0.0996 +0 0.0773 +0 0.1772 +0 0.1487 +0 0.2215 +0 0.2273 +0 0.3237 +0 0.1981 +0 0.0773 +0 0.1212 +0 0.0637 +0 0.4749 +0 0.0686 +0 0.0650 +0 0.2192 +0 0.2101 +0 0.1645 +0 0.0949 +0 0.0726 +0 0.2122 +1 0.7593 +0 0.1021 +0 0.2260 +0 0.1022 +0 0.1009 +0 0.0595 +0 0.1224 +0 0.1122 +0 0.0633 +0 0.2075 +0 0.1103 +0 0.1068 +0 0.0380 +0 0.2241 +0 0.1370 +0 0.0739 +0 0.1110 +0 0.0537 +0 0.2150 +0 0.2031 +0 0.0655 +0 0.3406 +0 0.1788 +0 0.3540 +0 0.0934 +0 0.1113 +0 0.2010 +0 0.0671 +0 0.0862 +0 0.3613 +0 0.0418 +0 0.1821 +0 0.0861 +0 0.5675 +0 0.2026 +0 0.0524 +0 0.0336 +0 0.1890 +0 0.1378 +0 0.1458 +0 0.0448 +0 0.1021 +0 0.0707 +0 0.0722 +0 0.0846 +0 0.1008 +0 0.1200 +0 0.1005 +0 0.1004 +0 0.2541 +0 0.1081 +0 0.0975 +0 0.6631 +0 0.1807 +0 0.0514 +0 0.1182 +0 0.0823 +0 0.0585 +0 0.1155 +0 0.0766 +0 0.0446 +0 0.1148 +0 0.1045 +0 0.0661 +0 0.1261 +0 0.0865 +0 0.1283 +0 0.0846 +0 0.1185 +0 0.4982 +0 0.2262 +0 0.0375 +0 0.1622 +0 0.2058 +0 0.0682 +0 0.2698 +0 0.0430 +0 0.0971 +0 0.0492 +0 0.0495 +0 0.0914 +0 0.1545 +0 0.0419 +0 0.0991 +0 0.1819 +0 0.0849 +0 0.0866 +0 0.3991 +0 0.2254 +0 0.1788 +0 0.0609 +0 0.1467 +0 0.2237 +0 0.0777 +0 0.0388 +0 0.1587 +0 0.1985 +0 0.0720 +0 0.1574 +0 0.0753 +0 0.1015 +0 0.1081 +0 0.1235 +0 0.1077 +0 0.1707 +0 0.0933 +0 0.1603 +0 0.0965 +0 0.0891 +0 0.1216 +0 0.3056 +0 0.1517 +0 0.1828 +0 0.1697 +0 0.1703 +0 0.1069 +0 0.0424 +1 0.7638 +0 0.1460 +0 0.0930 +0 0.1880 +0 0.0670 +0 0.1232 +0 0.0916 +0 0.1633 +0 0.0414 +0 0.1695 +0 0.0601 +0 0.0824 +0 0.1152 +0 0.1862 +0 0.0684 +0 0.3283 +0 0.1337 +0 0.7095 +0 0.0731 +0 0.2538 +0 0.2205 +0 0.1182 +0 0.0932 +0 0.2931 +0 0.1121 +0 0.1638 +0 0.0636 +0 0.0944 +0 0.0792 +0 0.0777 +0 0.3575 +0 0.0579 +0 0.3623 +0 0.1318 +0 0.0855 +0 0.0871 +0 0.0834 +0 0.0501 +0 0.2062 +0 0.1860 +0 0.0900 +0 0.1126 +0 0.0617 +0 0.1066 +0 0.1298 +0 0.0777 +0 0.0842 +0 0.0917 +0 0.0657 +0 0.0733 +0 0.1365 +0 0.3451 +0 0.1548 +0 0.0868 +0 0.1988 +0 0.0452 +0 0.1028 +0 0.0676 +0 0.0372 +0 0.1499 +0 0.7364 +0 0.0907 +0 0.0593 +0 0.1327 +0 0.0928 +0 0.0604 +0 0.1165 +0 0.0731 +0 0.0954 +0 0.1135 +0 0.0973 +0 0.0578 +0 0.2401 +0 0.0701 +0 0.0942 +0 0.0446 +0 0.0849 +0 0.0626 +0 0.1833 +0 0.0658 +0 0.0486 +0 0.0917 +0 0.0644 +0 0.1000 +0 0.0787 +0 0.0773 +0 0.0733 +0 0.1746 +0 0.1814 +0 0.0681 +0 0.1166 +0 0.2630 +0 0.3787 +0 0.1133 +0 0.2029 +0 0.0569 +0 0.0964 +0 0.3220 +0 0.0873 +0 0.0965 +0 0.0734 +0 0.1201 +0 0.0481 +0 0.1163 +0 0.1026 +0 0.0623 +0 0.1028 +0 0.6410 +0 0.0610 +0 0.1802 +0 0.0761 +0 0.1098 +0 0.0736 +0 0.7142 +0 0.0964 +0 0.0997 +0 0.1270 +0 0.1058 +0 0.0943 +0 0.0646 +0 0.0790 +0 0.0857 +0 0.1901 +0 0.1113 +0 0.3054 +0 0.1294 +0 0.1915 +0 0.1015 +0 0.3562 +0 0.0444 +0 0.2693 +1 0.7549 +0 0.0555 +0 0.0714 +0 0.0923 +0 0.0818 +0 0.0508 +0 0.1961 +0 0.0964 +0 0.1118 +0 0.0564 +0 0.0782 +0 0.0840 +0 0.1021 +0 0.0636 +0 0.0895 +0 0.2783 +0 0.3285 +0 0.0851 +0 0.1207 +0 0.1543 +0 0.4157 +0 0.1075 +0 0.0626 +0 0.1101 +0 0.0603 +0 0.0712 +0 0.0324 +0 0.0603 +0 0.1111 +0 0.0896 +0 0.0598 +0 0.1466 +0 0.6002 +0 0.0895 +0 0.2725 +0 0.0721 +0 0.1028 +0 0.2157 +0 0.2446 +0 0.0968 +0 0.0644 +0 0.1054 +0 0.1368 +0 0.0592 +0 0.1162 +0 0.2568 +0 0.3876 +0 0.3406 +0 0.1159 +0 0.0679 +0 0.0685 +0 0.1275 +0 0.1305 +0 0.0642 +0 0.0938 +0 0.0992 +0 0.4537 +0 0.0964 +0 0.1922 +0 0.0946 +0 0.0661 +0 0.0687 +0 0.1085 +0 0.0632 +0 0.0834 +0 0.0912 +0 0.2763 +0 0.0701 +0 0.1235 +0 0.1698 +0 0.2810 +0 0.0911 +0 0.0838 +1 0.8039 +0 0.0824 +0 0.1938 +0 0.1027 +0 0.2358 +0 0.2209 +0 0.0594 +0 0.0861 +0 0.0935 +0 0.0748 +0 0.2924 +0 0.1655 +0 0.1170 +0 0.0778 +0 0.0744 +0 0.1500 +0 0.1084 +0 0.0622 +0 0.0459 +0 0.0967 +0 0.1915 +0 0.0998 +0 0.1074 +0 0.0957 +0 0.0580 +0 0.0824 +0 0.2567 +0 0.1148 +0 0.1827 +0 0.0921 +0 0.1625 +0 0.0437 +1 0.7993 +0 0.0904 +0 0.0398 +0 0.0492 +0 0.0760 +0 0.1209 +0 0.1079 +0 0.0820 +0 0.1366 +0 0.3072 +0 0.0665 +0 0.1615 +0 0.0634 +0 0.2325 +0 0.0883 +0 0.0664 +0 0.0349 +0 0.1724 +0 0.1849 +0 0.4789 +0 0.1577 +0 0.1200 +0 0.1343 +0 0.2014 +0 0.0880 +1 0.8026 +0 0.2576 +0 0.0768 +0 0.0699 +0 0.2134 +0 0.0838 +0 0.5881 +0 0.1337 +0 0.0579 +0 0.0709 +0 0.1386 +0 0.1885 +0 0.5390 +0 0.0488 +0 0.1090 +0 0.0442 +0 0.1558 +0 0.1367 +0 0.2545 +0 0.0609 +0 0.1501 +0 0.0743 +0 0.2170 +0 0.0795 +0 0.1083 +0 0.0363 +0 0.0517 +0 0.2709 +0 0.1086 +0 0.7261 +0 0.1005 +0 0.2341 +0 0.3001 +0 0.0947 +0 0.0345 +0 0.1251 +0 0.0678 +0 0.1028 +0 0.0665 +0 0.1916 +0 0.0701 +0 0.1306 +0 0.5102 +0 0.1364 +0 0.0553 +0 0.0702 +0 0.2368 +0 0.0375 +0 0.1624 +0 0.0839 +1 0.2280 +0 0.1684 +0 0.0810 +0 0.0448 +0 0.1598 +0 0.1210 +0 0.3001 +0 0.0653 +0 0.1417 +0 0.0655 +0 0.0945 +0 0.4844 +0 0.0390 +0 0.2806 +0 0.0627 +0 0.2098 +0 0.1599 +0 0.0804 +0 0.2059 +0 0.2385 +0 0.1293 +0 0.1249 +0 0.2619 +0 0.0605 +0 0.1132 +0 0.2351 +0 0.4588 +0 0.6735 +0 0.0962 +0 0.0942 +0 0.1878 +0 0.0683 +0 0.0583 +0 0.0368 +0 0.1925 +0 0.1393 +0 0.0737 +0 0.0629 +0 0.2242 +0 0.1204 +0 0.1298 +0 0.1297 +0 0.0481 +0 0.0947 +0 0.0504 +0 0.1579 +0 0.4013 +0 0.1100 +0 0.1671 +0 0.0721 +0 0.0546 +0 0.0826 +0 0.1785 +0 0.0556 +0 0.0584 +0 0.0630 +0 0.0926 +0 0.7250 +0 0.0740 +1 0.8256 +0 0.0408 +0 0.0514 +0 0.1056 +0 0.0346 +0 0.1485 +0 0.0529 +0 0.3526 +0 0.1566 +0 0.1481 +0 0.4991 +0 0.0764 +0 0.1419 +0 0.2042 +0 0.0790 +0 0.0387 +0 0.1102 +0 0.1100 +0 0.1875 +0 0.0865 +0 0.6660 +0 0.0858 +0 0.0341 +0 0.0694 +0 0.0576 +0 0.1715 +0 0.1237 +0 0.1525 +0 0.0684 +0 0.0942 +0 0.0415 +0 0.0799 +0 0.1322 +0 0.1501 +0 0.0432 +0 0.0902 +0 0.3364 +0 0.0552 +0 0.3839 +0 0.1013 +0 0.0541 +0 0.0934 +0 0.0868 +0 0.0541 +0 0.1211 +0 0.0706 +0 0.0647 +0 0.1516 +0 0.0582 +0 0.1171 +0 0.0593 +0 0.1572 +0 0.0756 +0 0.1285 +0 0.3104 +0 0.1089 +0 0.1797 +0 0.0836 +0 0.1415 +0 0.1209 +0 0.1106 +0 0.0496 +0 0.0820 +0 0.1191 +0 0.0709 +0 0.1862 +1 0.8277 +0 0.1275 +0 0.0953 +0 0.3041 +0 0.1703 +0 0.2105 +0 0.0746 +0 0.6218 +0 0.1252 +0 0.3181 +0 0.1290 +0 0.1441 +0 0.0947 +0 0.1073 +0 0.0611 +0 0.0948 +0 0.0681 +0 0.1427 +0 0.1471 +0 0.1327 +0 0.1079 +0 0.0804 +0 0.0594 +0 0.1240 +0 0.0876 +0 0.1085 +0 0.0878 +0 0.0368 +0 0.2074 +0 0.0624 +0 0.2160 +0 0.0688 +0 0.1059 +0 0.7341 +0 0.1262 +0 0.1799 +0 0.0722 +0 0.0743 +0 0.4062 +0 0.0278 +0 0.1104 +0 0.1367 +0 0.2343 +0 0.1395 +0 0.0933 +0 0.3248 +0 0.2334 +0 0.0962 +0 0.1116 +0 0.1743 +0 0.0850 +0 0.0327 +0 0.0794 +0 0.1951 +0 0.1372 +0 0.1369 +0 0.0670 +0 0.0982 +0 0.0720 +0 0.3098 +0 0.0502 +0 0.0551 +0 0.4634 +0 0.0814 +0 0.3073 +0 0.0703 +0 0.0748 +0 0.1691 +0 0.0765 +0 0.1200 +1 0.7828 +0 0.2224 +0 0.0601 +0 0.1036 +0 0.0669 +0 0.5139 +0 0.0941 +0 0.1306 +0 0.0523 +0 0.2397 +0 0.1342 +0 0.0438 +0 0.0634 +0 0.0470 +0 0.2398 +0 0.0612 +0 0.1912 +0 0.1132 +0 0.1301 +0 0.0878 +0 0.1467 +0 0.1483 +0 0.0651 +0 0.0507 +0 0.2421 +0 0.1538 +0 0.0887 +0 0.0385 +0 0.1361 +0 0.2400 +0 0.2085 +0 0.1275 +0 0.1036 +0 0.0900 +0 0.1164 +0 0.0377 +0 0.0515 +0 0.2396 +0 0.2069 +0 0.3735 +0 0.0501 +0 0.2741 +0 0.1412 +0 0.0750 +0 0.0888 +0 0.2488 +0 0.0694 +0 0.3672 +0 0.0761 +0 0.3674 +0 0.1090 +0 0.0483 +0 0.0924 +0 0.0791 +0 0.1637 +0 0.2538 +0 0.0903 +0 0.1485 +0 0.0442 +0 0.6239 +0 0.0595 +0 0.1823 +0 0.1580 +0 0.0687 +0 0.0423 +0 0.2097 +0 0.0652 +0 0.0438 +0 0.0804 +0 0.1613 +0 0.1055 +0 0.1725 +0 0.0982 +0 0.0840 +0 0.0991 +0 0.0954 +0 0.1964 +0 0.0727 +0 0.1003 +0 0.0946 +0 0.0672 +0 0.0747 +0 0.4882 +0 0.1805 +0 0.1337 +0 0.1639 +0 0.0553 +0 0.2144 +0 0.0948 +0 0.0678 +0 0.1318 +0 0.0618 +0 0.0917 +0 0.1642 +0 0.1192 +0 0.2568 +0 0.1512 +0 0.0703 +0 0.1007 +0 0.0593 +0 0.4465 +0 0.0410 +0 0.0448 +0 0.1472 +0 0.0928 +0 0.0999 +0 0.1452 +0 0.2167 +0 0.1349 +0 0.1727 +0 0.1095 +0 0.1715 +0 0.1408 +0 0.1319 +0 0.0898 +0 0.0836 +0 0.1046 +0 0.0866 +0 0.1264 +0 0.1932 +0 0.2836 +0 0.1861 +0 0.2450 +0 0.1882 +0 0.2666 +1 0.7962 +0 0.2096 +0 0.2593 +0 0.0783 +0 0.0406 +0 0.0675 +0 0.0498 +0 0.0921 +0 0.1884 +0 0.0700 +0 0.1159 +0 0.1496 +1 0.8844 +0 0.0887 +0 0.3126 +0 0.0810 +0 0.1206 +0 0.0603 +0 0.0988 +0 0.0520 +0 0.0452 +0 0.0583 +0 0.4471 +0 0.0572 +0 0.0673 +0 0.0825 +0 0.0807 +0 0.1732 +0 0.1157 +0 0.0852 +0 0.0650 +0 0.0555 +0 0.5208 +0 0.0579 +0 0.0746 +0 0.2944 +0 0.0512 +0 0.3992 +0 0.1193 +0 0.1648 +0 0.0694 +0 0.1388 +0 0.0554 +0 0.1314 +0 0.2641 +0 0.0775 +0 0.0598 +0 0.0718 +0 0.2805 +0 0.1597 +0 0.0722 +0 0.0796 +0 0.1532 +0 0.1204 +0 0.1340 +0 0.0984 +0 0.1358 +0 0.1098 +0 0.0973 +0 0.1476 +0 0.0741 +0 0.1392 +0 0.0846 +0 0.0936 +0 0.1093 +0 0.0721 +0 0.0788 +0 0.0600 +0 0.0457 +0 0.2640 +0 0.4686 +0 0.6791 +0 0.0990 +0 0.0559 +0 0.0621 +0 0.2277 +0 0.1072 +0 0.2377 +0 0.1556 +0 0.1405 +0 0.0467 +0 0.2391 +0 0.2208 +0 0.0490 +0 0.2911 +0 0.0725 +0 0.0855 +0 0.0766 +0 0.0971 +0 0.1313 +0 0.0917 +0 0.3801 +0 0.1472 +0 0.0788 +0 0.0702 +0 0.0856 +0 0.0726 +0 0.0701 +0 0.1351 +0 0.1926 +0 0.0826 +0 0.0556 +0 0.0688 +0 0.0920 +0 0.0893 +0 0.1079 +0 0.0944 +0 0.0974 +0 0.1753 +0 0.0935 +1 0.8452 +0 0.5815 +0 0.0815 +0 0.0722 +0 0.1493 +0 0.0913 +0 0.1519 +0 0.0640 +0 0.0601 +0 0.0526 +0 0.0563 +0 0.7442 +0 0.1586 +0 0.2215 +0 0.1658 +1 0.8436 +0 0.0795 +0 0.0428 +0 0.1507 +0 0.3530 +1 0.8620 +0 0.0936 +0 0.1348 +0 0.1351 +0 0.2487 +0 0.0743 +0 0.2881 +0 0.0520 +0 0.0427 +0 0.1160 +0 0.0622 +0 0.1401 +0 0.1515 +0 0.1678 +0 0.1024 +0 0.0784 +0 0.0439 +0 0.0442 +0 0.0555 +0 0.0796 +0 0.0622 +0 0.1603 +0 0.1317 +0 0.0877 +0 0.0658 +0 0.2476 +0 0.1405 +0 0.1013 +0 0.1775 +0 0.0383 +0 0.0589 +0 0.0540 +0 0.0515 +0 0.2802 +0 0.0388 +0 0.0351 +0 0.1157 +0 0.6460 +0 0.0946 +0 0.1354 +0 0.1669 +0 0.0963 +0 0.0624 +0 0.1659 +0 0.0758 +0 0.0694 +0 0.7181 +0 0.2134 +0 0.2739 +0 0.0379 +0 0.0688 +0 0.1396 +0 0.0958 +0 0.1430 +0 0.0637 +0 0.0818 +0 0.0742 +0 0.0922 +0 0.0537 +0 0.1049 +0 0.2021 +0 0.0889 +0 0.0689 +0 0.2280 +0 0.0815 +0 0.0383 +0 0.0342 +0 0.0678 +0 0.0686 +0 0.0939 +0 0.0936 +0 0.0596 +0 0.3124 +0 0.1595 +0 0.0659 +0 0.0607 +0 0.1550 +0 0.1023 +0 0.0421 +0 0.1793 +0 0.1317 +0 0.1043 +0 0.6970 +0 0.0892 +0 0.1015 +0 0.0615 +0 0.0671 +0 0.1077 +0 0.2182 +0 0.0656 +0 0.1025 +0 0.0895 +0 0.0958 +0 0.1547 +0 0.1069 +0 0.2238 +0 0.2169 +0 0.1187 +0 0.1456 +0 0.0908 +0 0.6709 +0 0.0837 +0 0.0606 +0 0.0975 +0 0.0543 +0 0.0723 +0 0.0805 +0 0.1241 +0 0.4150 +0 0.1714 +0 0.0928 +0 0.1520 +0 0.5182 +0 0.2091 +0 0.1342 +0 0.5214 +0 0.3375 +0 0.1157 +0 0.0661 +0 0.1960 +0 0.0378 +0 0.0941 +1 0.7731 +0 0.1592 +0 0.0736 +0 0.1588 +0 0.2479 +0 0.0825 +0 0.1886 +0 0.0660 +0 0.0526 +0 0.1153 +0 0.1826 +0 0.2253 +0 0.0502 +0 0.0973 +0 0.1623 +0 0.0411 +0 0.0858 +0 0.1980 +0 0.0696 +0 0.0765 +0 0.1945 +0 0.0821 +0 0.0915 +0 0.2394 +0 0.0959 +0 0.1571 +0 0.0823 +0 0.0738 +0 0.0877 +0 0.1602 +0 0.1859 +0 0.0677 +0 0.2322 +0 0.2297 +0 0.0537 +0 0.0636 +0 0.0923 +0 0.0688 +0 0.1369 +0 0.2905 +0 0.0700 +0 0.0504 +0 0.2435 +0 0.0629 +0 0.0488 +0 0.1169 +0 0.2260 +0 0.0827 +0 0.1233 +0 0.0836 +0 0.1760 +0 0.0400 +0 0.0698 +0 0.1922 +0 0.1856 +0 0.2071 +0 0.0680 +0 0.1094 +0 0.1821 +0 0.1832 +0 0.1574 +0 0.1459 +0 0.1261 +0 0.0879 +0 0.1258 +0 0.0575 +0 0.0717 +0 0.0572 +0 0.1215 +0 0.3484 +0 0.0594 +0 0.0656 +0 0.0361 +0 0.3553 +0 0.2825 +0 0.0581 +0 0.0983 +0 0.1013 +0 0.1271 +0 0.1503 +0 0.0975 +0 0.1063 +0 0.2024 +0 0.0823 +0 0.0556 +0 0.0956 +0 0.0886 +0 0.1561 +0 0.1544 +0 0.1111 +0 0.1035 +0 0.1826 +0 0.0692 +0 0.1104 +0 0.2333 +0 0.1116 +0 0.0542 +0 0.0922 +0 0.1270 +0 0.1487 +0 0.2566 +0 0.1078 +0 0.0783 +0 0.1687 +0 0.2310 +1 0.8295 +0 0.0719 +0 0.0753 +0 0.0652 +0 0.0666 +1 0.7977 +0 0.0748 +0 0.0504 +0 0.2040 +0 0.0528 +0 0.0920 +0 0.1977 +0 0.0599 +0 0.2324 +0 0.0385 +0 0.0877 +0 0.1348 +0 0.0793 +0 0.0629 +0 0.0532 +0 0.1537 +0 0.1056 +0 0.0527 +0 0.0406 +0 0.1272 +0 0.0875 +0 0.1376 +0 0.3701 +0 0.1382 +0 0.2125 +0 0.1101 +0 0.0657 +0 0.1585 +0 0.1215 +0 0.0535 +0 0.2181 +0 0.0642 +0 0.1325 +0 0.0883 +0 0.1765 +0 0.1341 +0 0.0767 +0 0.1657 +0 0.2509 +0 0.0466 +0 0.0785 +0 0.1573 +0 0.1389 +0 0.1754 +0 0.1823 +0 0.1629 +0 0.1162 +0 0.2865 +0 0.0611 +0 0.2284 +0 0.0823 +0 0.1087 +0 0.1152 +0 0.1219 +0 0.0596 +0 0.1274 +0 0.0844 +0 0.0644 +0 0.0603 +0 0.0683 +0 0.1782 +0 0.1412 +0 0.0873 +0 0.0770 +0 0.1552 +0 0.1261 +0 0.1355 +0 0.1016 +0 0.0756 +0 0.1740 +0 0.1726 +0 0.2151 +0 0.0448 +0 0.3559 +0 0.0976 +0 0.0968 +0 0.0419 +0 0.1315 +0 0.0750 +0 0.0651 +0 0.1304 +0 0.1071 +0 0.0307 +0 0.1423 +0 0.2015 +0 0.0421 +0 0.1421 +0 0.1392 +0 0.0443 +0 0.0616 +0 0.2703 +0 0.1482 +0 0.1257 +0 0.2163 +0 0.6139 +0 0.1245 +0 0.1072 +0 0.1127 +0 0.0502 +0 0.3573 +0 0.6105 +0 0.1319 +0 0.0443 +0 0.3620 +0 0.1836 +0 0.1316 +0 0.0618 +0 0.1690 +0 0.0423 +0 0.0617 +0 0.0800 +0 0.0446 +0 0.1071 +0 0.1266 +0 0.0344 +0 0.0942 +0 0.1150 +0 0.0776 +0 0.0660 +0 0.0911 +0 0.2125 +0 0.0881 +0 0.0499 +0 0.0865 +0 0.1637 +0 0.0810 +0 0.0449 +0 0.1330 +1 0.8314 +0 0.0990 +0 0.2024 +0 0.3515 +0 0.0490 +0 0.0968 +0 0.0631 +0 0.1751 +0 0.1028 +0 0.0671 +0 0.2681 +0 0.0397 +0 0.0881 +0 0.0916 +0 0.0550 +0 0.1959 +0 0.0395 +0 0.0632 +0 0.0422 +0 0.0843 +0 0.2268 +0 0.0930 +0 0.0607 +0 0.2337 +0 0.1454 +0 0.1361 +0 0.1072 +0 0.3037 +0 0.5232 +0 0.0961 +0 0.0653 +0 0.1710 +0 0.0904 +0 0.0425 +0 0.1087 +0 0.4123 +0 0.2356 +0 0.2037 +0 0.2261 +0 0.0786 +0 0.0364 +0 0.0783 +1 0.8369 +0 0.0404 +0 0.0823 +0 0.2335 +0 0.1160 +0 0.0985 +0 0.0443 +0 0.1066 +0 0.1054 +0 0.2020 +0 0.0463 +0 0.0541 +0 0.1086 +0 0.1239 +0 0.1236 +0 0.1208 +0 0.7444 +0 0.0661 +0 0.0504 +0 0.1564 +0 0.2612 +0 0.0618 +0 0.1711 +0 0.0830 +0 0.0672 +0 0.1534 +0 0.6329 +0 0.2157 +0 0.0931 +1 0.8470 +0 0.1105 +0 0.1464 +0 0.0854 +0 0.4743 +0 0.0812 +0 0.1781 +0 0.0661 +0 0.1725 +0 0.0864 +0 0.5089 +0 0.1040 +0 0.1240 +0 0.0737 +0 0.1370 +0 0.1685 +0 0.1254 +0 0.1531 +0 0.0513 +0 0.2544 +0 0.1580 +0 0.1692 +0 0.1002 +0 0.0350 +0 0.1040 +0 0.1770 +0 0.1623 +0 0.2796 +0 0.1135 +0 0.0480 +0 0.3140 +0 0.0933 +0 0.2821 +0 0.2294 +0 0.1103 +0 0.4926 +0 0.0813 +0 0.0935 +0 0.2491 +0 0.0333 +0 0.0577 +0 0.1724 +0 0.0970 +0 0.0679 +0 0.0741 +0 0.0309 +0 0.0573 +0 0.1677 +0 0.0534 +0 0.2508 +0 0.3104 +0 0.0479 +0 0.0958 +0 0.0816 +0 0.1123 +0 0.0478 +0 0.0598 +0 0.1477 +0 0.0676 +0 0.0543 +0 0.0575 +0 0.1573 +0 0.0994 +0 0.0948 +0 0.0617 +0 0.1036 +0 0.7115 +0 0.0646 +0 0.2328 +0 0.2433 +0 0.1379 +0 0.0581 +0 0.0517 +0 0.0802 +0 0.1350 +0 0.0734 +0 0.0583 +0 0.1047 +0 0.0891 +0 0.2312 +0 0.0950 +0 0.0804 +0 0.0952 +0 0.0908 +0 0.3419 +0 0.0577 +0 0.1372 +0 0.0804 +0 0.0510 +0 0.0938 +0 0.1261 +0 0.0945 +0 0.0624 +0 0.2790 +0 0.6627 +1 0.8154 +0 0.0738 +0 0.1250 +0 0.2366 +0 0.1562 +0 0.0895 +0 0.0543 +0 0.0552 +0 0.0643 +1 0.8279 +0 0.0346 +0 0.3048 +0 0.1109 +0 0.0502 +0 0.1994 +0 0.0770 +0 0.1347 +0 0.0763 +0 0.1178 +0 0.2099 +0 0.0609 +0 0.0707 +0 0.6607 +0 0.0518 +0 0.1153 +0 0.0886 +0 0.4641 +0 0.0762 +0 0.1196 +0 0.0838 +0 0.0538 +0 0.1240 +0 0.1007 +0 0.0529 +0 0.0467 +0 0.2087 +0 0.0474 +0 0.5220 +0 0.1012 +0 0.0441 +0 0.0477 +0 0.1183 +0 0.1332 +1 0.7608 +0 0.1004 +0 0.0821 +0 0.0642 +0 0.0454 +1 0.8116 +0 0.0886 +0 0.0965 +0 0.0546 +0 0.0772 +0 0.5783 +0 0.2420 +0 0.1574 +0 0.0674 +0 0.1082 +0 0.0728 +0 0.0894 +0 0.1009 +0 0.1425 +0 0.1091 +0 0.1071 +0 0.0947 +0 0.0787 +0 0.0913 +0 0.0663 +1 0.7720 +0 0.1173 +0 0.0650 +0 0.1918 +0 0.0949 +0 0.0702 +0 0.6453 +0 0.1804 +0 0.1159 +0 0.1085 +0 0.0922 +0 0.0770 +0 0.0617 +0 0.0763 +0 0.1557 +0 0.1065 +0 0.1217 +0 0.0795 +0 0.1024 +0 0.2982 +0 0.1079 +0 0.0367 +0 0.0661 +0 0.0818 +0 0.0815 +0 0.1020 +0 0.0613 +0 0.0685 +0 0.1421 +0 0.2251 +0 0.0883 +0 0.1422 +0 0.0694 +0 0.0670 +0 0.0629 +0 0.2006 +0 0.0622 +0 0.0726 +0 0.1523 +0 0.1074 +0 0.2311 +0 0.0569 +0 0.0868 +0 0.1849 +0 0.1304 +0 0.0747 +0 0.4855 +0 0.0698 +0 0.0697 +0 0.0629 +0 0.7101 +0 0.0680 +0 0.0815 +0 0.0577 +0 0.1148 +0 0.0804 +0 0.1469 +0 0.0852 +0 0.2966 +0 0.0643 +0 0.0553 +0 0.0476 +0 0.1912 +0 0.0663 +0 0.1535 +0 0.1039 +0 0.2496 +0 0.0833 +0 0.0548 +0 0.1784 +0 0.0592 +0 0.1140 +0 0.0644 +0 0.1097 +0 0.0568 +0 0.1926 +0 0.3561 +0 0.1133 +0 0.2049 +0 0.1068 +0 0.0698 +0 0.3352 +0 0.0647 +0 0.1797 +0 0.0982 +0 0.0730 +0 0.0376 +0 0.1447 +0 0.0424 +0 0.0691 +0 0.0704 +0 0.1336 +0 0.0589 +0 0.1544 +0 0.1566 +0 0.4848 +0 0.0851 +0 0.6915 +0 0.0859 +0 0.0527 +0 0.1496 +0 0.2140 +0 0.0619 +0 0.0781 +0 0.2063 +0 0.0535 +0 0.0874 +0 0.0995 +0 0.0498 +0 0.0521 +0 0.1122 +0 0.0624 +0 0.2241 +0 0.1237 +0 0.0478 +0 0.0777 +0 0.1129 +0 0.4867 +0 0.0629 +0 0.1766 +0 0.0981 +0 0.5322 +0 0.0942 +0 0.0414 +0 0.6480 +0 0.0727 +0 0.1267 +0 0.1364 +0 0.1533 +0 0.0736 +0 0.0607 +0 0.0477 +0 0.3019 +0 0.1378 +0 0.1080 +0 0.0466 +0 0.0859 +0 0.0910 +0 0.1036 +0 0.1183 +0 0.0558 +0 0.0880 +0 0.1135 +0 0.2358 +0 0.1586 +0 0.3767 +0 0.0404 +0 0.0681 +0 0.1727 +0 0.1647 +0 0.1557 +0 0.0847 +0 0.0312 +0 0.1403 +0 0.1069 +0 0.0568 +0 0.0838 +0 0.0822 +0 0.3192 +0 0.0770 +1 0.8728 +0 0.1079 +0 0.1365 +0 0.1016 +0 0.1337 +0 0.0619 +0 0.1740 +0 0.0715 +0 0.1417 +0 0.0892 +0 0.0707 +0 0.0829 +0 0.1946 +0 0.0719 +0 0.2354 +0 0.0658 +0 0.1761 +0 0.5210 +0 0.0931 +0 0.1106 +0 0.0753 +0 0.2534 +0 0.0384 +0 0.1616 +0 0.0417 +0 0.1044 +0 0.0571 +0 0.1272 +0 0.0359 +0 0.2467 +0 0.1096 +0 0.0451 +0 0.1081 +0 0.0862 +0 0.1472 +0 0.0616 +0 0.3622 +0 0.0957 +0 0.1367 +0 0.0853 +0 0.0421 +0 0.1556 +0 0.0638 +1 0.8724 +0 0.1531 +0 0.1415 +0 0.0594 +0 0.1030 +0 0.0470 +0 0.0756 +0 0.1613 +0 0.0791 +0 0.0729 +0 0.3306 +0 0.1164 +0 0.1085 +0 0.1442 +0 0.2527 +0 0.1284 +0 0.1597 +0 0.0490 +0 0.2451 +0 0.1437 +0 0.1238 +0 0.1037 +0 0.0844 +0 0.0640 +0 0.1018 +0 0.1061 +0 0.1553 +0 0.0657 +0 0.0898 +0 0.0777 +0 0.0632 +0 0.4940 +0 0.1329 +0 0.2397 +0 0.0587 +0 0.1383 +0 0.0998 +0 0.1110 +1 0.7781 +0 0.1159 +0 0.1270 +1 0.7838 +0 0.0810 +0 0.2043 +0 0.0476 +0 0.0906 +1 0.7931 +0 0.1066 +0 0.2292 +0 0.0525 +0 0.2656 +0 0.1014 +0 0.1241 +0 0.0579 +0 0.1527 +0 0.0980 +0 0.3222 +0 0.2487 +0 0.1764 +0 0.0915 +0 0.0843 +0 0.5781 +0 0.0390 +0 0.1297 +0 0.0597 +0 0.1651 +0 0.0878 +0 0.0745 +0 0.3057 +0 0.0699 +0 0.0538 +0 0.0900 +0 0.1581 +0 0.2071 +0 0.1417 +0 0.1886 +0 0.0893 +0 0.0871 +0 0.1964 +0 0.0725 +0 0.1036 +0 0.0806 +0 0.1865 +0 0.1003 +0 0.1073 +0 0.1092 +0 0.0652 +0 0.0647 +0 0.2716 +0 0.0696 +0 0.1295 +0 0.3498 +0 0.1074 +0 0.0515 +0 0.0618 +0 0.0827 +0 0.0504 +0 0.1231 +0 0.0526 +0 0.0609 +0 0.0641 +0 0.0677 +0 0.1248 +0 0.1059 +0 0.0891 +0 0.1376 +0 0.0818 +0 0.1857 +0 0.1841 +0 0.0649 +0 0.1749 +0 0.0776 +0 0.1686 +0 0.1301 +0 0.0998 +0 0.1083 +0 0.2166 +0 0.0901 +0 0.1336 +0 0.2159 +0 0.1313 +0 0.1398 +0 0.4088 +0 0.0698 +0 0.0618 +0 0.0510 +0 0.2033 +0 0.0871 +0 0.0802 +0 0.2035 +0 0.0924 +0 0.0646 +0 0.1112 +0 0.0416 +0 0.2264 +0 0.1766 +0 0.1141 +0 0.0628 +0 0.1032 +0 0.3000 +0 0.1136 +0 0.0581 +0 0.1360 +0 0.1551 +0 0.1881 +0 0.0630 +0 0.0665 +0 0.0799 +0 0.1057 +0 0.1978 +0 0.4442 +0 0.1058 +0 0.0830 +0 0.0977 +0 0.0622 +0 0.2494 +0 0.2648 +0 0.1635 +0 0.2840 +0 0.0683 +0 0.1571 +0 0.0749 +0 0.2115 +0 0.1860 +0 0.0888 +0 0.0992 +0 0.0995 +0 0.0650 +0 0.1825 +0 0.0958 +0 0.1095 +0 0.2249 +0 0.0817 +0 0.2083 +0 0.1980 +0 0.0852 +0 0.1319 +0 0.1384 +0 0.1228 +0 0.0779 +0 0.0631 +0 0.0833 +0 0.0490 +0 0.2020 +0 0.1041 +0 0.0535 +0 0.0685 +0 0.1924 +0 0.0615 +0 0.1132 +0 0.2438 +0 0.0733 +0 0.1215 +0 0.0362 +0 0.1125 +0 0.1060 +0 0.3011 +0 0.0613 +0 0.2885 +0 0.0565 +0 0.0666 +0 0.1623 +0 0.1426 +0 0.0841 +0 0.1746 +0 0.0361 +0 0.2077 +0 0.0338 +0 0.0696 +0 0.0368 +0 0.0596 +0 0.0684 +0 0.0705 +0 0.1387 +0 0.0382 +0 0.0523 +0 0.0873 +1 0.8128 +0 0.0893 +0 0.0842 +0 0.1570 +0 0.1093 +0 0.0638 +0 0.1866 +0 0.1250 +0 0.1058 +0 0.1635 +0 0.0529 +0 0.1015 +0 0.1167 +0 0.0822 +0 0.0564 +0 0.0923 +0 0.1733 +0 0.0736 +0 0.0761 +0 0.1309 +0 0.0809 +0 0.0842 +0 0.0999 +0 0.1337 +0 0.0738 +0 0.0460 +0 0.1410 +0 0.0697 +0 0.0351 +0 0.1315 +0 0.0763 +0 0.0418 +0 0.0857 +0 0.7378 +0 0.0565 +0 0.1558 +0 0.0927 +0 0.1536 +0 0.0698 +0 0.2050 +0 0.1826 +0 0.0811 +0 0.0855 +0 0.1241 +0 0.0605 +0 0.0510 +0 0.0998 +0 0.0768 +0 0.1077 +0 0.1868 +0 0.3902 +0 0.1237 +0 0.2914 +0 0.2692 +0 0.1739 +0 0.1650 +0 0.1035 +0 0.1748 +0 0.0613 +0 0.3817 +0 0.0933 +0 0.0460 +0 0.0816 +0 0.2562 +0 0.0713 +0 0.1033 +0 0.1375 +0 0.0429 +0 0.0891 +0 0.1066 +0 0.0713 +0 0.1826 +0 0.6634 +0 0.1088 +0 0.0771 +0 0.1147 +0 0.1629 +0 0.2341 +0 0.1173 +0 0.2104 +0 0.0990 +0 0.1846 +0 0.1238 +0 0.1793 +0 0.1181 +0 0.0923 +0 0.1300 +0 0.0937 +0 0.0717 +0 0.1013 +0 0.1007 +0 0.0380 +0 0.2139 +0 0.0810 +0 0.1967 +0 0.1881 +0 0.0712 +0 0.0505 +0 0.0522 +0 0.0456 +1 0.8410 +0 0.2714 +0 0.1442 +0 0.5449 +0 0.1408 +0 0.0966 +0 0.0436 +0 0.0972 +0 0.0996 +0 0.1068 +0 0.0676 +0 0.0707 +0 0.1116 +0 0.0820 +0 0.0504 +0 0.1436 +0 0.0555 +0 0.1381 +0 0.1056 +0 0.0624 +0 0.1120 +0 0.0920 +0 0.2146 +0 0.1105 +0 0.1119 +0 0.3214 +0 0.0778 +0 0.2340 +0 0.1535 +0 0.2714 +0 0.0806 +0 0.0720 +0 0.4024 +0 0.1312 +0 0.1807 +0 0.1803 +0 0.3018 +0 0.1050 +0 0.1427 +0 0.1577 +0 0.0819 +0 0.0501 +0 0.1242 +0 0.0519 +0 0.0843 +0 0.0537 +0 0.1685 +0 0.1418 +0 0.7133 +0 0.0604 +0 0.3206 +0 0.0899 +0 0.1263 +0 0.7204 +0 0.0435 +0 0.3714 +0 0.1662 +0 0.1114 +0 0.0817 +0 0.0525 +0 0.1073 +0 0.1559 +0 0.3059 +0 0.0370 +0 0.0790 +0 0.0491 +0 0.0717 +0 0.1055 +0 0.0727 +0 0.0657 +0 0.4108 +0 0.0816 +0 0.0641 +0 0.0675 +0 0.0558 +0 0.2524 +0 0.1251 +0 0.1275 +0 0.3406 +0 0.0425 +0 0.1123 +0 0.2935 +0 0.0527 +0 0.0867 +0 0.0669 +0 0.3218 +0 0.0958 +0 0.0440 +0 0.4001 +0 0.2708 +0 0.1243 +0 0.1171 +0 0.0585 +0 0.3262 +0 0.1518 +0 0.2064 +0 0.4095 +0 0.1003 +0 0.1024 +0 0.1028 +0 0.0670 +0 0.3837 +0 0.0990 +0 0.0941 +0 0.2706 +0 0.0736 +0 0.1955 +0 0.0866 +0 0.1265 +0 0.0643 +0 0.0394 +0 0.0988 +0 0.0751 +0 0.0699 +0 0.0325 +0 0.0838 +0 0.1684 +0 0.0536 +0 0.1259 +0 0.5940 +0 0.0687 +0 0.2240 +0 0.3374 +0 0.5462 +0 0.2351 +0 0.1563 +0 0.1266 +0 0.1203 +0 0.0520 +0 0.1012 +0 0.0435 +0 0.3039 +0 0.2316 +0 0.0951 +0 0.1353 +0 0.0690 +0 0.0634 +0 0.1633 +0 0.0860 +0 0.0808 +0 0.0774 +0 0.0472 +0 0.1135 +0 0.0907 +0 0.2469 +0 0.1332 +0 0.1193 +0 0.1180 +0 0.1579 +0 0.0596 +0 0.1228 +0 0.1600 +0 0.1384 +0 0.0526 +0 0.1025 +0 0.1332 +0 0.0690 +0 0.2091 +0 0.2323 +0 0.1753 +0 0.2959 +0 0.1369 +0 0.1763 +0 0.1120 +0 0.2741 +0 0.1315 +0 0.2597 +0 0.2353 +0 0.0562 +0 0.0897 +0 0.4891 +0 0.1241 +0 0.3316 +0 0.6475 +0 0.1366 +0 0.3921 +0 0.7024 +0 0.0388 +0 0.0658 +0 0.1375 +0 0.0716 +0 0.0512 +0 0.1767 +0 0.0786 +0 0.1046 +0 0.0547 +0 0.0869 +0 0.0750 +0 0.0482 +0 0.0532 +0 0.2445 +0 0.3243 +0 0.0668 +0 0.2425 +0 0.0469 +0 0.7204 +0 0.1640 +0 0.0694 +0 0.2148 +0 0.1174 +0 0.0995 +0 0.0676 +0 0.0741 +0 0.0778 +0 0.1385 +0 0.0599 +0 0.3232 +0 0.1702 +0 0.1597 +0 0.0929 +0 0.0553 +0 0.2550 +0 0.0452 +0 0.1316 +0 0.0345 +0 0.4549 +0 0.1746 +0 0.1363 +0 0.0781 +0 0.0516 +1 0.8357 +0 0.1226 +0 0.0866 +0 0.0692 +0 0.4566 +0 0.1810 +0 0.0973 +0 0.1862 +0 0.3470 +0 0.1220 +0 0.0904 +0 0.0887 +0 0.1352 +0 0.1197 +0 0.0694 +0 0.0601 +0 0.0532 +0 0.1080 +0 0.1541 +0 0.1431 +0 0.0609 +0 0.0297 +0 0.0835 +0 0.0398 +0 0.3122 +0 0.0794 +0 0.1802 +0 0.1386 +0 0.0843 +0 0.1510 +0 0.1245 +0 0.1019 +0 0.0482 +0 0.1817 +0 0.6092 +0 0.1483 +0 0.1029 +0 0.2059 +0 0.0772 +0 0.0668 +0 0.0454 +0 0.0713 +0 0.2829 +0 0.1390 +0 0.1365 +0 0.0735 +1 0.7868 +0 0.0755 +0 0.0444 +0 0.1579 +0 0.1311 +0 0.0411 +0 0.0802 +0 0.3159 +0 0.0987 +1 0.8685 +0 0.1669 +0 0.0902 +0 0.1835 +0 0.1635 +0 0.0525 +0 0.0559 +0 0.3931 +0 0.0784 +0 0.0923 +0 0.1609 +0 0.1791 +0 0.1590 +0 0.0737 +0 0.1428 +0 0.0985 +0 0.1081 +0 0.1188 +0 0.1818 +0 0.0683 +0 0.1659 +0 0.0659 +0 0.0768 +0 0.1008 +0 0.1608 +0 0.4704 +0 0.1099 +0 0.2036 +0 0.0779 +0 0.0754 +0 0.1814 +0 0.0610 +0 0.1417 +0 0.0995 +0 0.0950 +0 0.1831 +0 0.1742 +0 0.1076 +0 0.0656 +0 0.0850 +0 0.0383 +0 0.2967 +0 0.1858 +0 0.1323 +0 0.0719 +0 0.0791 +0 0.2079 +0 0.0767 +0 0.1521 +0 0.1073 +0 0.0664 +0 0.0447 +0 0.1859 +0 0.1170 +1 0.2161 +0 0.0642 +0 0.1736 +0 0.0666 +0 0.2687 +0 0.1885 +0 0.0601 +0 0.0663 +0 0.2893 +0 0.1169 +0 0.0819 +0 0.0548 +0 0.0611 +0 0.1071 +0 0.0796 +0 0.1859 +0 0.2116 +0 0.1018 +1 0.8275 +0 0.1408 +0 0.0699 +0 0.1497 +0 0.0885 +0 0.2903 +0 0.1602 +0 0.0927 +0 0.2025 +0 0.0548 +0 0.1949 +0 0.1965 +0 0.0748 +0 0.0927 +0 0.0440 +0 0.0930 +0 0.0962 +0 0.0924 +0 0.1785 +0 0.0779 +0 0.0678 +0 0.2078 +0 0.1049 +0 0.1264 +0 0.0876 +0 0.1803 +0 0.1329 +0 0.1085 +0 0.1054 +0 0.0388 +0 0.1439 +0 0.0686 +0 0.2479 +0 0.0775 +0 0.0789 +0 0.0549 +0 0.1104 +0 0.1373 +0 0.0601 +0 0.2566 +0 0.1118 +0 0.1315 +0 0.1227 +0 0.1528 +0 0.4420 +0 0.3290 +0 0.0566 +0 0.1102 +0 0.1123 +0 0.3605 +0 0.0859 +0 0.1516 +0 0.0796 +0 0.1722 +0 0.2160 +0 0.2884 +0 0.0472 +0 0.0601 +0 0.1477 +0 0.1737 +0 0.0481 +0 0.2802 +0 0.0946 +0 0.1557 +0 0.0868 +0 0.2073 +0 0.2526 +0 0.4015 +1 0.8130 +0 0.0592 +0 0.1537 +0 0.0652 +0 0.0971 +0 0.1122 +0 0.1189 +0 0.1482 +0 0.0972 +0 0.0911 +0 0.0793 +0 0.0487 +0 0.0888 +0 0.0954 +0 0.0953 +0 0.2399 +0 0.0545 +0 0.1013 +0 0.1443 +0 0.2127 +0 0.0658 +0 0.1400 +0 0.1354 +0 0.0664 +0 0.0816 +0 0.1122 +0 0.3843 +0 0.1110 +0 0.6437 +0 0.1881 +0 0.1074 +0 0.1399 +0 0.1194 +0 0.0692 +0 0.0588 +0 0.0897 +0 0.1716 +0 0.1812 +0 0.1066 +0 0.0985 +0 0.0884 +0 0.0624 +0 0.0381 +0 0.1243 +0 0.0297 +0 0.1156 +0 0.0779 +0 0.1229 +0 0.1352 +1 0.7641 +0 0.0904 +0 0.1367 +1 0.8625 +0 0.1717 +0 0.5144 +0 0.1071 +0 0.1361 +0 0.1005 +0 0.0861 +0 0.0577 +0 0.0950 +0 0.2669 +0 0.0838 +0 0.1984 +0 0.2386 +0 0.3088 +0 0.1079 +0 0.1538 +0 0.1114 +0 0.1440 +0 0.1360 +0 0.0359 +0 0.1227 +0 0.2403 +0 0.0566 +0 0.1132 +0 0.3803 +0 0.1681 +0 0.0614 +0 0.0774 +0 0.0514 +0 0.0814 +0 0.1349 +0 0.2095 +0 0.0772 +0 0.2669 +0 0.0652 +0 0.0605 +1 0.8539 +0 0.1003 +0 0.1209 +1 0.2899 +0 0.0914 +0 0.0673 +0 0.5438 +0 0.0736 +0 0.7391 +0 0.1228 +0 0.1198 +0 0.1427 +0 0.2182 +0 0.0750 +0 0.0510 +0 0.0890 +0 0.2323 +0 0.0480 +0 0.0973 +0 0.1603 +0 0.0972 +0 0.1424 +0 0.0810 +0 0.0536 +0 0.0924 +0 0.3141 +0 0.1526 +0 0.3144 +0 0.2012 +0 0.0590 +0 0.1075 +0 0.1213 +0 0.0894 +0 0.1195 +0 0.1248 +0 0.1619 +0 0.0378 +0 0.0427 +0 0.1289 +0 0.2085 +0 0.0935 +0 0.0523 +0 0.0537 +0 0.0760 +0 0.0936 +0 0.1824 +0 0.1456 +0 0.1438 +0 0.0586 +0 0.1090 +0 0.1756 +0 0.0885 +0 0.1769 +0 0.1088 +0 0.1372 +0 0.1327 +0 0.0500 +0 0.0570 +0 0.0671 +0 0.1071 +0 0.0848 +0 0.0484 +0 0.3479 +0 0.1282 +0 0.1581 +0 0.0860 +0 0.1246 +0 0.1458 +0 0.0766 +0 0.0654 +0 0.1302 +0 0.0562 +0 0.0746 +0 0.2115 +0 0.0534 +0 0.2112 +0 0.0682 +0 0.0679 +0 0.0673 +0 0.1471 +0 0.0769 +0 0.0649 +0 0.0809 +0 0.2381 +0 0.0692 +0 0.1868 +0 0.0998 +0 0.1498 +0 0.1566 +0 0.0617 +0 0.0412 +0 0.0660 +0 0.0704 +0 0.1136 +0 0.3580 +0 0.0506 +0 0.0477 +0 0.1691 +0 0.1315 +0 0.1147 +0 0.7432 +0 0.1164 +0 0.0456 +0 0.0997 +0 0.1794 +0 0.1122 +0 0.0843 +0 0.0874 +0 0.0761 +0 0.0815 +0 0.1108 +0 0.1175 +0 0.2100 +0 0.3012 +0 0.0797 +0 0.0850 +0 0.0637 +0 0.2201 +0 0.1453 +0 0.0705 +0 0.0759 +0 0.1195 +0 0.1973 +0 0.0705 +0 0.4911 +0 0.1233 +0 0.0907 +0 0.5575 +0 0.1703 +1 0.2366 +0 0.1397 +0 0.1176 +0 0.5736 +0 0.0949 +0 0.1115 +0 0.1240 +0 0.1679 +0 0.2879 +0 0.0500 +0 0.2422 +0 0.0646 +0 0.0981 +0 0.0501 +0 0.0889 +0 0.1739 +0 0.1025 +0 0.1967 +0 0.0530 +0 0.2819 +0 0.7216 +0 0.0767 +0 0.0921 +0 0.0738 +0 0.0758 +0 0.0496 +0 0.0750 +0 0.0312 +0 0.3095 +0 0.2334 +0 0.1536 +0 0.0731 +0 0.1303 +0 0.1051 +0 0.1395 +0 0.5100 +0 0.1513 +0 0.0939 +0 0.2679 +0 0.1327 +0 0.1830 +0 0.1662 +0 0.0755 +0 0.0704 +0 0.6432 +0 0.1043 +0 0.2693 +0 0.0984 +0 0.0692 +0 0.0648 +0 0.0460 +0 0.0898 +0 0.0718 +0 0.0640 +0 0.1041 +0 0.3674 +0 0.1456 +0 0.2235 +0 0.1260 +0 0.2095 +0 0.3473 +0 0.0704 +0 0.2319 +0 0.0851 +0 0.0680 +0 0.2130 +0 0.1633 +0 0.1680 +0 0.1836 +0 0.0976 +0 0.0559 +0 0.3445 +0 0.1299 +0 0.0531 +0 0.0698 +0 0.1215 +0 0.2327 +0 0.1032 +0 0.1536 +0 0.1451 +0 0.0830 +0 0.1051 +0 0.1650 +0 0.1046 +0 0.0544 +0 0.1493 +0 0.2151 +0 0.0879 +0 0.0937 +0 0.2168 +0 0.0439 +0 0.1899 +0 0.4677 +0 0.1765 +0 0.0714 +0 0.5415 +0 0.1308 +0 0.1017 +0 0.1343 +0 0.1818 +0 0.1349 +0 0.0553 +0 0.1750 +0 0.3006 +0 0.1036 +0 0.2332 +0 0.0878 +0 0.0875 +0 0.0898 +0 0.1422 +0 0.0677 +0 0.0439 +0 0.0912 +0 0.0995 +0 0.0624 +0 0.7002 +1 0.8704 +0 0.1421 +0 0.0339 +0 0.1746 +0 0.0579 +1 0.8319 +0 0.0914 +0 0.0622 +0 0.1214 +0 0.2257 +0 0.0529 +0 0.1591 +0 0.1138 +0 0.2466 +0 0.0376 +0 0.1125 +0 0.0568 +0 0.1234 +1 0.8319 +0 0.1627 +0 0.0544 +0 0.0804 +0 0.0737 +0 0.1208 +0 0.0381 +0 0.0411 +0 0.0806 +0 0.0750 +0 0.1720 +0 0.1029 +0 0.0965 +0 0.0495 +0 0.2772 +0 0.0924 +0 0.0818 +0 0.0844 +0 0.1298 +0 0.0801 +0 0.0530 +0 0.2876 +0 0.1761 +0 0.1783 +0 0.0795 +0 0.1729 +0 0.0745 +0 0.0780 +0 0.0986 +0 0.0893 +0 0.2991 +0 0.0343 +0 0.2855 +0 0.2465 +0 0.0640 +0 0.2839 +0 0.0771 +0 0.0397 +0 0.2861 +0 0.1447 +0 0.1658 +0 0.0788 +0 0.0675 +0 0.2145 +0 0.5305 +0 0.0923 +0 0.1635 +0 0.2376 +0 0.0917 +0 0.0894 +0 0.4866 +0 0.0955 +0 0.3239 +0 0.1338 +0 0.0625 +0 0.0582 +0 0.6797 +0 0.0311 +0 0.0418 +0 0.2062 +0 0.1361 +0 0.0736 +0 0.0574 +0 0.0712 +0 0.2286 +0 0.0999 +0 0.1109 +0 0.1368 +0 0.1135 +0 0.0341 +0 0.2613 +0 0.0736 +0 0.0701 +0 0.3353 +0 0.0434 +0 0.4517 +0 0.4333 +0 0.1213 +0 0.3645 +0 0.0799 +0 0.0839 +0 0.0797 +0 0.1968 +0 0.1735 +0 0.1268 +0 0.2951 +0 0.2164 +0 0.1116 +0 0.0432 +0 0.1248 +0 0.1335 +0 0.0778 +0 0.1207 +0 0.0733 +0 0.0575 +0 0.1137 +0 0.1649 +0 0.0609 +0 0.0723 +1 0.7688 +0 0.1228 +0 0.0978 +0 0.0492 +0 0.1871 +0 0.0580 +0 0.0873 +0 0.0558 +0 0.0963 +0 0.5284 +0 0.0729 +0 0.0890 +0 0.0594 +0 0.1479 +0 0.1307 +0 0.0550 +0 0.0511 +0 0.1143 +0 0.0409 +1 0.7919 +0 0.2193 +0 0.1011 +0 0.7356 +0 0.4307 +0 0.1119 +1 0.7900 +0 0.2684 +0 0.0832 +0 0.0469 +0 0.0895 +1 0.8303 +0 0.0708 +0 0.1294 +0 0.2475 +0 0.2949 +0 0.1129 +1 0.8430 +0 0.0762 +0 0.0912 +0 0.0840 +0 0.2728 +0 0.1022 +0 0.1387 +0 0.0309 +0 0.0749 +0 0.1129 +0 0.2089 +0 0.0967 +0 0.0742 +0 0.0893 +0 0.1229 +0 0.1557 +0 0.0867 +0 0.1785 +0 0.0620 +0 0.0562 +0 0.1148 +0 0.2761 +0 0.1110 +0 0.1085 +0 0.2415 +0 0.1365 +0 0.1283 +0 0.1881 +0 0.0740 +0 0.1363 +0 0.1011 +0 0.5114 +0 0.0772 +0 0.1929 +0 0.1329 +0 0.0615 +0 0.0876 +0 0.1675 +0 0.1285 +0 0.1349 +0 0.2209 +0 0.5860 +0 0.0996 +0 0.2210 +0 0.1237 +0 0.0683 +0 0.2207 +1 0.7769 +0 0.1597 +0 0.1287 +0 0.1119 +0 0.5937 +0 0.0609 +0 0.0498 +0 0.0985 +0 0.0651 +0 0.1407 +0 0.0543 +0 0.4949 +0 0.0982 +0 0.1495 +0 0.0521 +0 0.2836 +0 0.0917 +0 0.1216 +0 0.0579 +0 0.0441 +0 0.2211 +0 0.0981 +0 0.1469 +0 0.0736 +0 0.2541 +0 0.1844 +0 0.1883 +0 0.0969 +0 0.0867 +0 0.1262 +0 0.2411 +0 0.1427 +0 0.0835 +0 0.1856 +0 0.2792 +0 0.0349 +0 0.0952 +0 0.0356 +0 0.0884 +0 0.4114 +0 0.2075 +0 0.0355 +0 0.1321 +0 0.0627 +0 0.2623 +0 0.0417 +0 0.0616 +0 0.1625 +0 0.2113 +0 0.0768 +0 0.1697 +0 0.1190 +0 0.0530 +0 0.1050 +0 0.2633 +0 0.0765 +0 0.3188 +0 0.0949 +0 0.1197 +0 0.1900 +0 0.1756 +0 0.0567 +0 0.2969 +0 0.0610 +0 0.0970 +0 0.0598 +0 0.0944 +0 0.0849 +0 0.0629 +0 0.1050 +0 0.0615 +0 0.0686 +0 0.2588 +0 0.0718 +0 0.1448 +0 0.0766 +1 0.8750 +0 0.0365 +0 0.6873 +0 0.0925 +0 0.0758 +0 0.1657 +0 0.1667 +0 0.0797 +0 0.1763 +0 0.0846 +0 0.0835 +0 0.0705 +1 0.7678 +0 0.1205 +0 0.0763 +0 0.0602 +0 0.0878 +0 0.0622 +0 0.1348 +0 0.0750 +0 0.3153 +0 0.0998 +0 0.0515 +0 0.1926 +0 0.0737 +0 0.0899 +0 0.0894 +0 0.0605 +0 0.0879 +0 0.1221 +0 0.1062 +0 0.0589 +0 0.0362 +1 0.7959 +0 0.0435 +0 0.0885 +0 0.1044 +0 0.0863 +0 0.0747 +0 0.1475 +0 0.0930 +0 0.0598 +0 0.0483 +0 0.0968 +0 0.2389 +0 0.0376 +0 0.1893 +0 0.0630 +0 0.1633 +0 0.0434 +0 0.0776 +0 0.0675 +0 0.2482 +0 0.0670 +0 0.1307 +0 0.5443 +0 0.1168 +0 0.1174 +0 0.0573 +0 0.0520 +0 0.3341 +0 0.0894 +0 0.0589 +0 0.7012 +0 0.0759 +0 0.1848 +0 0.1168 +0 0.0431 +0 0.0688 +0 0.1009 +0 0.1780 +0 0.0858 +0 0.0496 +0 0.1413 +0 0.1131 +0 0.1570 +0 0.0646 +0 0.1013 +0 0.0615 +0 0.0949 +0 0.1751 +0 0.2543 +0 0.0407 +0 0.1220 +0 0.0733 +0 0.1584 +0 0.0591 +0 0.7445 +0 0.1294 +0 0.0751 +0 0.0389 +0 0.3468 +0 0.1332 +0 0.0378 +0 0.1169 +0 0.1502 +0 0.0754 +0 0.1061 +0 0.1333 +0 0.0838 +0 0.2790 +0 0.1704 +0 0.1078 +0 0.0552 +0 0.0521 +0 0.5419 +0 0.0874 +0 0.1565 +0 0.1533 +0 0.0371 +0 0.1421 +0 0.1300 +0 0.3828 +0 0.0641 +0 0.0843 +0 0.0577 +0 0.0754 +0 0.1097 +0 0.1271 +0 0.0337 +0 0.1127 +0 0.1070 +0 0.0733 +0 0.1438 +0 0.1577 +0 0.0836 +0 0.0863 +0 0.6245 +0 0.0681 +1 0.8270 +0 0.1628 +0 0.0767 +0 0.1376 +0 0.1125 +1 0.7851 +0 0.3518 +0 0.0445 +0 0.1572 +0 0.0705 +0 0.0450 +0 0.0429 +0 0.0996 +0 0.1295 +0 0.0790 +0 0.2672 +0 0.1709 +0 0.3287 +0 0.1728 +0 0.1477 +0 0.1275 +0 0.1108 +0 0.0880 +0 0.0588 +0 0.1910 +0 0.1291 +0 0.3471 +0 0.3355 +0 0.1186 +0 0.0912 +0 0.3141 +0 0.1714 +1 0.8519 +0 0.5133 +0 0.1209 +0 0.1566 +0 0.0603 +0 0.0900 +0 0.0658 +0 0.1070 +0 0.1310 +0 0.1287 +0 0.2455 +0 0.1889 +0 0.0961 +0 0.0601 +0 0.0635 +0 0.0728 +0 0.1657 +0 0.0713 +0 0.0651 +0 0.1245 +0 0.1306 +0 0.0922 +0 0.1042 +0 0.6504 +0 0.0536 +0 0.1687 +0 0.0887 +0 0.0992 +0 0.0782 +0 0.2084 +0 0.0481 +0 0.1230 +0 0.2038 +0 0.2503 +0 0.0977 +0 0.0935 +0 0.0807 +0 0.1276 +0 0.0430 +0 0.2315 +0 0.1561 +0 0.2380 +0 0.2781 +0 0.0549 +0 0.1119 +0 0.0661 +0 0.0864 +0 0.2661 +0 0.0620 +0 0.0335 +0 0.0766 +0 0.2355 +0 0.1285 +0 0.0803 +0 0.0964 +0 0.0896 +0 0.0409 +0 0.1907 +0 0.5778 +0 0.0388 +0 0.1748 +0 0.1826 +0 0.1182 +0 0.1221 +0 0.1581 +0 0.3138 +0 0.0727 +0 0.1007 +0 0.0750 +0 0.1776 +0 0.0724 +0 0.2435 +0 0.1898 +0 0.1048 +0 0.1440 +0 0.4084 +0 0.1081 +0 0.0922 +0 0.0707 +0 0.2184 +0 0.3529 +0 0.1107 +0 0.0419 +1 0.7506 +0 0.3241 +0 0.1488 +0 0.1811 +0 0.4137 +0 0.0988 +0 0.2090 +0 0.1146 +0 0.0534 +0 0.1011 +0 0.0442 +0 0.0958 +0 0.0620 +0 0.0987 +0 0.1370 +0 0.1579 +0 0.1049 +0 0.2071 +0 0.2051 +0 0.1495 +0 0.1317 +0 0.3360 +0 0.0537 +1 0.7663 +0 0.0970 +0 0.0405 +0 0.0583 +0 0.0830 +0 0.1582 +0 0.1757 +0 0.1196 +0 0.0712 +0 0.1638 +0 0.1113 +0 0.1076 +0 0.1587 +0 0.0272 +0 0.1476 +0 0.1630 +0 0.1176 +0 0.1050 +0 0.1392 +0 0.2531 +0 0.1426 +0 0.0680 +0 0.2426 +0 0.3870 +0 0.0780 +0 0.1492 +0 0.0644 +0 0.0603 +0 0.2982 +0 0.0400 +0 0.2328 +0 0.0680 +0 0.2538 +0 0.0977 +0 0.1893 +0 0.0407 +0 0.0849 +0 0.0968 +0 0.1178 +0 0.1014 +0 0.2929 +0 0.0823 +0 0.1086 +0 0.4852 +0 0.0748 +0 0.0692 +0 0.0854 +0 0.0668 +0 0.0752 +0 0.0697 +0 0.1785 +0 0.0425 +0 0.1323 +0 0.1019 +0 0.3164 +0 0.0976 +0 0.0455 +0 0.0849 +0 0.1010 +0 0.2143 +0 0.0815 +0 0.1330 +0 0.2121 +0 0.1777 +0 0.0813 +0 0.2972 +0 0.1035 +0 0.1013 +0 0.1406 +0 0.1584 +0 0.0525 +1 0.8501 +0 0.1238 +0 0.1960 +0 0.0691 +0 0.0809 +0 0.6260 +0 0.2247 +0 0.1071 +0 0.1163 +0 0.7254 +0 0.1155 +0 0.1648 +1 0.7512 +0 0.5455 +0 0.1173 +0 0.0706 +0 0.1101 +0 0.1982 +0 0.1717 +0 0.1125 +0 0.0733 +0 0.1036 +0 0.1177 +0 0.1414 +0 0.0953 +0 0.0585 +0 0.0986 +0 0.0775 +0 0.0412 +0 0.0452 +0 0.1042 +0 0.0653 +0 0.1087 +0 0.4329 +0 0.0675 +0 0.0435 +0 0.0985 +0 0.0376 +0 0.1937 +0 0.0853 +0 0.0607 +0 0.0410 +0 0.1843 +0 0.1387 +0 0.1603 +0 0.0570 +0 0.1717 +0 0.2738 +0 0.1305 +0 0.2538 +0 0.0780 +0 0.2070 +0 0.0745 +0 0.1350 +0 0.0917 +0 0.0603 +0 0.1060 +0 0.0514 +0 0.0505 +0 0.1499 +0 0.0644 +0 0.2856 +0 0.0772 +0 0.1510 +0 0.3203 +0 0.1025 +0 0.4044 +0 0.2822 +0 0.0739 +0 0.4405 +0 0.1867 +0 0.0636 +0 0.0452 +0 0.2562 +0 0.0881 +0 0.0495 +0 0.1260 +0 0.1707 +0 0.0477 +0 0.0969 +0 0.1426 +0 0.0458 +0 0.0456 +0 0.0553 +0 0.1864 +0 0.1643 +0 0.2626 +0 0.0895 +0 0.1567 +0 0.0531 +0 0.1185 +0 0.1312 +0 0.0950 +0 0.0381 +0 0.0798 +0 0.0598 +0 0.0917 +0 0.0783 +0 0.3581 +0 0.1055 +1 0.8005 +0 0.0590 +0 0.1161 +0 0.1399 +0 0.0855 +0 0.0846 +0 0.0523 +0 0.0458 +0 0.2701 +0 0.0972 +0 0.0823 +0 0.1669 +0 0.1070 +0 0.0882 +0 0.1298 +0 0.1162 +0 0.2265 +1 0.5531 +0 0.1760 +0 0.0460 +0 0.0799 +0 0.2939 +0 0.2905 +0 0.0942 +0 0.1510 +0 0.0504 +0 0.2202 +0 0.1687 +0 0.0707 +0 0.0553 +0 0.0981 +0 0.0788 +0 0.1169 +0 0.3521 +0 0.0803 +0 0.1367 +0 0.0583 +0 0.0617 +0 0.1739 +0 0.0702 +0 0.4217 +0 0.1339 +0 0.0935 +0 0.1698 +0 0.0835 +0 0.0529 +0 0.2186 +0 0.1058 +0 0.0397 +0 0.1090 +0 0.2180 +0 0.1017 +1 0.8791 +0 0.1467 +0 0.2767 +0 0.0272 +0 0.0856 +0 0.3365 +0 0.0673 +0 0.1904 +0 0.0883 +0 0.0681 +0 0.1277 +0 0.1076 +0 0.2025 +0 0.0457 +0 0.0587 +0 0.4076 +0 0.1042 +0 0.2173 +0 0.0964 +0 0.1099 +1 0.7907 +0 0.3514 +0 0.2661 +0 0.2266 +0 0.0460 +0 0.2009 +0 0.2024 +0 0.1007 +0 0.0752 +0 0.1135 +0 0.2646 +0 0.1333 +0 0.2205 +0 0.0744 +0 0.0550 +0 0.0713 +0 0.2611 +0 0.6727 +0 0.0558 +0 0.7391 +0 0.1462 +0 0.0634 +0 0.1490 +0 0.1052 +0 0.1731 +0 0.0773 +0 0.0915 +1 0.7982 +0 0.0558 +0 0.2050 +0 0.0486 +0 0.0971 +0 0.1323 +0 0.0552 +0 0.0810 +0 0.0965 +0 0.0727 +0 0.2819 +0 0.0562 +0 0.1137 +0 0.0891 +0 0.0717 +0 0.1615 +0 0.1026 +0 0.0891 +0 0.0618 +0 0.0764 +0 0.0669 +0 0.3604 +0 0.0741 +0 0.0936 +1 0.7524 +0 0.1053 +0 0.1553 +0 0.0763 +0 0.1072 +0 0.0682 +0 0.5811 +0 0.0427 +0 0.2381 +0 0.1399 +0 0.0718 +0 0.0614 +0 0.0790 +1 0.7950 +0 0.0821 +0 0.0917 +0 0.1440 +0 0.0803 +0 0.0826 +0 0.2990 +0 0.4259 +0 0.1741 +0 0.1642 +0 0.1035 +0 0.0385 +0 0.0664 +0 0.0539 +0 0.2760 +0 0.0444 +0 0.0835 +0 0.2216 +0 0.1120 +0 0.1522 +0 0.1050 +0 0.2355 +0 0.2489 +0 0.1500 +0 0.1500 +0 0.0777 +0 0.2878 +0 0.2096 +0 0.0779 +0 0.1190 +0 0.0907 +0 0.0464 +0 0.0878 +0 0.2936 +0 0.0551 +0 0.0858 +0 0.2228 +0 0.1676 +0 0.2585 +0 0.0863 +0 0.1266 +0 0.0964 +0 0.1098 +0 0.0550 +0 0.1077 +0 0.1163 +0 0.1334 +0 0.0447 +0 0.1195 +0 0.2334 +0 0.1606 +0 0.1023 +0 0.1006 +0 0.4376 +0 0.6736 +0 0.0941 +0 0.0827 +0 0.0762 +0 0.1232 +0 0.1141 +0 0.0866 +0 0.1724 +0 0.0680 +0 0.0799 +0 0.1583 +0 0.2125 +0 0.1124 +0 0.1054 +0 0.2067 +0 0.0728 +0 0.1960 +0 0.0517 +0 0.0335 +0 0.0982 +0 0.0555 +0 0.0698 +0 0.1946 +0 0.1049 +0 0.1054 +0 0.1403 +0 0.0641 +0 0.1337 +0 0.3811 +0 0.6903 +0 0.1371 +0 0.1444 +0 0.2434 +0 0.2927 +0 0.0488 +0 0.2169 +0 0.1084 +0 0.0673 +0 0.0316 +0 0.0959 +0 0.1151 +0 0.2586 +0 0.0310 +0 0.0500 +0 0.0979 +0 0.1250 +0 0.0957 +0 0.0789 +0 0.0742 +0 0.1444 +0 0.0415 +0 0.2226 +0 0.0722 +0 0.3024 +0 0.0906 +0 0.1476 +0 0.1433 +0 0.1254 +0 0.0738 +0 0.0863 +0 0.1035 +0 0.1792 +0 0.0641 +0 0.0595 +0 0.1245 +0 0.2418 +0 0.1190 +0 0.0382 +0 0.0912 +0 0.1033 +1 0.8608 +0 0.0851 +0 0.2600 +0 0.1534 +0 0.0724 +0 0.3308 +0 0.1037 +0 0.0772 +0 0.1324 +0 0.3362 +0 0.0813 +0 0.0943 +0 0.1515 +0 0.1046 +0 0.0694 +0 0.0588 +0 0.0956 +0 0.1066 +0 0.1313 +0 0.1077 +0 0.0380 +0 0.0998 +0 0.1026 +0 0.0400 +0 0.1368 +0 0.0499 +0 0.0712 +0 0.2489 +0 0.6557 +0 0.0536 +0 0.2433 +0 0.0580 +0 0.0916 +0 0.0897 +0 0.6839 +0 0.0780 +0 0.0744 +0 0.1012 +0 0.1892 +0 0.3107 +0 0.2845 +0 0.0458 +0 0.1881 +1 0.7845 +0 0.4068 +0 0.2438 +0 0.1569 +0 0.1652 +0 0.1238 +0 0.1299 +0 0.1233 +0 0.0883 +0 0.0845 +0 0.1163 +0 0.0569 +0 0.0408 +0 0.0509 +1 0.8243 +0 0.1053 +0 0.0734 +0 0.0455 +0 0.1650 +0 0.0887 +0 0.1319 +0 0.1067 +0 0.1469 +0 0.0699 +0 0.2048 +0 0.0666 +0 0.2766 +0 0.0593 +0 0.0749 +0 0.0647 +0 0.0763 +0 0.3700 +0 0.4407 +0 0.1120 +0 0.0747 +0 0.0784 +0 0.0474 +0 0.0702 +0 0.1005 +0 0.0864 +0 0.1386 +0 0.0807 +0 0.0646 +0 0.0543 +0 0.1772 +0 0.0656 +0 0.2027 +0 0.1898 +0 0.0500 +0 0.2749 +0 0.1131 +0 0.0545 +0 0.1562 +0 0.1349 +0 0.0671 +0 0.0866 +0 0.0717 +0 0.0789 +0 0.1552 +0 0.1309 +1 0.7931 +0 0.1333 +0 0.1308 +0 0.0599 +0 0.2417 +0 0.2761 +0 0.1474 +0 0.1040 +0 0.0341 +0 0.3693 +0 0.4504 +0 0.0617 +0 0.1008 +0 0.1768 +0 0.0662 +0 0.0585 +1 0.7620 +0 0.0630 +0 0.2912 +0 0.2081 +0 0.0783 +0 0.1257 +0 0.6736 +0 0.1068 +0 0.0622 +0 0.1249 +0 0.2139 +0 0.1338 +0 0.1588 +0 0.5531 +0 0.2754 +0 0.1571 +0 0.0953 +0 0.1103 +0 0.1703 +0 0.1873 +0 0.0757 +0 0.1301 +0 0.1282 +0 0.0757 +0 0.2832 +0 0.1095 +0 0.0913 +1 0.7914 +0 0.0467 +0 0.1010 +0 0.0913 +0 0.1218 +0 0.0630 +0 0.1243 +0 0.0697 +0 0.1223 +0 0.0793 +0 0.0499 +0 0.1307 +0 0.1244 +0 0.2112 +0 0.0566 +0 0.0860 +0 0.3136 +0 0.1067 +0 0.0429 +0 0.0852 +0 0.1007 +0 0.7133 +0 0.0435 +0 0.1381 +0 0.0992 +0 0.1424 +0 0.3008 +0 0.1314 +0 0.1169 +0 0.0901 +0 0.0967 +0 0.0814 +0 0.1453 +0 0.0611 +0 0.0562 +0 0.0842 +0 0.0885 +0 0.1659 +0 0.0780 +0 0.1259 +0 0.1257 +0 0.0397 +0 0.1182 +0 0.0629 +0 0.3474 +0 0.2317 +0 0.1632 +0 0.2118 +0 0.1650 +0 0.1985 +0 0.0777 +0 0.0561 +0 0.3474 +0 0.0764 +0 0.5794 +0 0.0840 +0 0.1298 +0 0.0764 +0 0.0779 +0 0.1313 +0 0.1872 +0 0.0576 +0 0.1026 +0 0.0800 +0 0.2450 +0 0.0585 +0 0.2011 +0 0.0469 +0 0.1356 +0 0.0767 +0 0.2018 +0 0.1462 +1 0.7550 +0 0.1132 +0 0.0598 +0 0.0826 +0 0.6201 +0 0.1130 +0 0.0713 +0 0.0821 +0 0.0636 +0 0.1194 +0 0.0434 +0 0.1639 +0 0.1919 +0 0.1105 +0 0.0886 +0 0.0857 +0 0.0894 +0 0.1878 +0 0.0993 +0 0.0661 +0 0.1020 +0 0.2057 +0 0.3492 +0 0.1005 +0 0.0877 +0 0.1317 +0 0.1200 +0 0.1155 +0 0.3649 +0 0.2430 +0 0.4274 +0 0.1284 +0 0.0509 +0 0.4753 +0 0.0806 +0 0.0830 +0 0.0867 +0 0.1139 +0 0.1679 +0 0.1449 +0 0.1255 +0 0.0508 +0 0.0392 +0 0.0515 +0 0.0600 +0 0.1124 +0 0.1336 +0 0.0972 +0 0.0938 +1 0.4499 +0 0.0879 +0 0.1047 +0 0.1438 +0 0.0418 +0 0.1198 +0 0.0862 +0 0.1078 +0 0.0972 +0 0.2370 +0 0.2132 +0 0.1489 +0 0.0615 +0 0.2013 +0 0.0942 +0 0.1299 +0 0.1251 +0 0.1492 +0 0.0592 +0 0.0854 +0 0.2047 +0 0.0875 +0 0.2107 +0 0.1279 +0 0.2780 +0 0.1627 +0 0.1127 +0 0.1157 +0 0.1305 +0 0.1713 +0 0.0535 +0 0.0836 +0 0.2690 +0 0.1250 +0 0.0674 +0 0.0466 +0 0.0605 +0 0.1452 +0 0.0939 +0 0.1638 +0 0.2328 +0 0.1017 +0 0.0578 +0 0.3733 +0 0.0840 +0 0.1251 +0 0.0379 +0 0.0805 +0 0.1215 +0 0.0898 +0 0.0920 +0 0.1113 +0 0.1526 +0 0.0547 +0 0.0522 +0 0.0995 +0 0.0865 +0 0.1945 +0 0.0713 +0 0.0699 +0 0.2053 +0 0.0703 +0 0.3034 +0 0.0401 +0 0.0703 +0 0.0354 +0 0.2988 +0 0.1090 +0 0.0477 +0 0.2953 +0 0.1114 +0 0.1205 +0 0.1058 +0 0.0508 +0 0.1297 +0 0.0708 +0 0.0761 +0 0.1947 +0 0.0530 +0 0.0850 +0 0.0832 +0 0.1018 +0 0.2086 +0 0.1273 +1 0.8185 +0 0.3172 +0 0.1336 +0 0.1073 +0 0.1648 +0 0.0714 +0 0.1420 +0 0.0508 +0 0.0750 +0 0.1458 +0 0.0561 +0 0.0658 +0 0.1014 +0 0.0685 +0 0.0569 +0 0.0644 +0 0.4311 +0 0.3566 +0 0.1904 +0 0.0594 +0 0.0577 +0 0.0576 +0 0.4373 +0 0.1364 +0 0.1941 +0 0.0486 +0 0.0857 +0 0.0564 +0 0.5329 +0 0.0727 +0 0.1907 +1 0.8690 +0 0.0435 +0 0.1124 +0 0.0622 +0 0.0945 +0 0.0881 +0 0.0607 +0 0.0881 +0 0.3561 +0 0.1933 +0 0.0465 +0 0.2568 +0 0.1292 +0 0.1015 +0 0.0837 +0 0.0785 +1 0.8340 +0 0.0416 +0 0.0589 +0 0.1462 +0 0.1685 +0 0.1001 +0 0.2831 +0 0.0653 +0 0.6932 +0 0.1528 +0 0.1630 +0 0.0564 +0 0.0698 +0 0.1761 +0 0.1853 +0 0.2402 +0 0.0511 +0 0.0903 +0 0.1111 +0 0.0664 +0 0.0537 +0 0.2416 +0 0.1591 +0 0.0790 +0 0.0731 +0 0.1023 +0 0.0777 +0 0.1258 +1 0.7951 +0 0.1134 +0 0.0932 +0 0.0405 +0 0.0909 +0 0.1541 +0 0.2600 +0 0.1341 +0 0.0537 +0 0.0518 +0 0.1200 +0 0.1343 +0 0.2267 +0 0.2178 +0 0.0604 +0 0.0904 +0 0.0706 +0 0.2013 +0 0.1790 +0 0.1802 +0 0.1288 +0 0.1757 +0 0.1560 +0 0.5044 +0 0.3445 +0 0.1745 +0 0.0554 +0 0.3705 +0 0.1581 +0 0.0765 +0 0.0808 +0 0.3018 +0 0.2113 +0 0.0545 +0 0.1501 +0 0.0594 +0 0.0321 +0 0.0770 +0 0.0992 +0 0.0641 +0 0.0863 +0 0.5798 +0 0.2485 +0 0.0814 +0 0.0672 +0 0.1131 +0 0.0830 +0 0.0546 +0 0.3188 +0 0.1406 +0 0.0515 +0 0.0862 +0 0.2157 +0 0.1052 +0 0.1423 +0 0.0363 +0 0.1203 +0 0.0639 +0 0.0762 +0 0.0882 +0 0.1551 +0 0.2205 +0 0.0523 +0 0.0924 +0 0.4880 +0 0.0978 +0 0.0595 +0 0.1208 +0 0.5989 +0 0.0843 +0 0.0869 +0 0.2381 +0 0.0652 +0 0.0865 +0 0.1755 +0 0.2658 +0 0.1903 +0 0.0614 +0 0.0536 +0 0.0889 +0 0.1717 +0 0.0642 +0 0.1025 +0 0.0764 +0 0.0435 +0 0.1392 +0 0.1517 +0 0.0687 +0 0.2230 +0 0.0775 +0 0.0746 +0 0.1194 +0 0.0813 +0 0.0360 +0 0.0978 +0 0.0503 +0 0.0478 +0 0.1920 +0 0.0841 +0 0.1011 +0 0.0583 +1 0.7811 +0 0.0637 +0 0.1012 +0 0.1623 +0 0.0905 +0 0.1292 +0 0.2107 +0 0.0522 +0 0.0995 +0 0.3960 +0 0.1478 +0 0.0644 +0 0.0829 +0 0.1071 +0 0.0482 +0 0.3890 +0 0.2186 +0 0.2989 +0 0.0553 +0 0.0988 +0 0.4911 +0 0.0589 +0 0.1715 +1 0.7879 +0 0.0484 +0 0.0843 +0 0.2334 +0 0.3537 +0 0.2300 +0 0.1005 +0 0.0546 +0 0.0676 +0 0.0679 +0 0.0670 +0 0.1805 +0 0.2255 +0 0.1536 +0 0.0364 +0 0.3110 +0 0.0452 +0 0.5087 +0 0.1349 +0 0.1002 +0 0.2004 +0 0.1251 +0 0.0870 +0 0.0803 +0 0.0708 +0 0.4330 +0 0.1445 +0 0.0670 +0 0.0770 +0 0.0708 +0 0.2232 +0 0.1326 +0 0.0797 +0 0.0479 +0 0.0763 +0 0.1049 +0 0.1223 +0 0.1245 +0 0.1126 +0 0.0813 +0 0.0601 +0 0.0570 +0 0.2766 +0 0.1408 +0 0.0652 +0 0.0687 +0 0.0749 +0 0.2153 +0 0.0326 +0 0.0712 +0 0.0816 +0 0.0337 +0 0.0747 +0 0.0800 +0 0.3583 +0 0.2166 +0 0.0654 +0 0.0861 +0 0.0968 +0 0.1872 +0 0.6637 +0 0.0872 +0 0.0668 +0 0.1201 +0 0.1696 +0 0.0988 +0 0.3286 +0 0.1443 +0 0.2561 +0 0.1075 +0 0.1128 +0 0.0695 +0 0.0508 +0 0.2997 +0 0.1170 +0 0.1514 +0 0.7157 +0 0.1008 +0 0.2181 +0 0.1653 +0 0.1820 +0 0.1724 +0 0.1361 +0 0.1352 +0 0.3599 +0 0.0519 +0 0.0475 +0 0.0742 +0 0.4048 +0 0.1099 +0 0.1298 +0 0.1164 +0 0.0831 +0 0.1275 +0 0.1587 +0 0.0715 +0 0.1997 +0 0.0849 +0 0.1491 +0 0.0794 +0 0.0967 +0 0.1222 +0 0.0816 +0 0.0723 +0 0.0762 +0 0.2102 +0 0.0826 +0 0.0752 +0 0.0817 +0 0.1159 +0 0.0963 +0 0.5015 +0 0.2739 +0 0.0495 +0 0.0726 +0 0.0733 +0 0.1187 +0 0.0845 +0 0.2046 +0 0.0332 +0 0.1259 +0 0.1019 +0 0.0433 +0 0.1443 +0 0.0641 +0 0.0458 +0 0.0914 +0 0.0637 +0 0.0840 +0 0.0715 +0 0.2475 +0 0.0732 +0 0.1114 +0 0.1069 +0 0.2000 +0 0.0973 +0 0.0602 +0 0.0513 +0 0.2426 +0 0.0863 +0 0.0704 +0 0.3102 +0 0.0739 +0 0.1363 +0 0.0660 +0 0.0897 +0 0.2293 +0 0.0531 +0 0.1102 +0 0.1823 +0 0.0981 +0 0.0724 +0 0.1089 +0 0.0862 +0 0.0317 +0 0.1831 +0 0.0927 +0 0.0622 +0 0.4983 +0 0.0504 +0 0.0797 +0 0.0546 +0 0.0427 +0 0.0915 +0 0.1063 +0 0.0497 +0 0.1311 +0 0.1680 +0 0.1013 +0 0.0843 +0 0.1728 +0 0.0461 +0 0.1294 +0 0.3069 +0 0.1545 +0 0.7187 +0 0.0386 +0 0.1441 +0 0.1685 +0 0.1951 +0 0.6793 +0 0.1444 +0 0.0665 +0 0.1594 +0 0.0887 +0 0.1508 +0 0.1082 +0 0.0858 +0 0.1606 +0 0.0806 +0 0.0739 +0 0.0640 +0 0.0788 +0 0.1001 +0 0.0561 +0 0.3541 +0 0.0460 +0 0.0610 +0 0.0532 +0 0.1540 +0 0.0763 +1 0.7705 +0 0.1364 +0 0.1070 +0 0.2550 +0 0.1231 +0 0.1109 +0 0.1159 +0 0.2729 +0 0.1572 +0 0.0431 +0 0.0753 +0 0.1802 +0 0.3365 +0 0.0740 +0 0.1341 +0 0.0364 +0 0.0721 +0 0.3068 +0 0.1369 +0 0.0468 +0 0.0819 +0 0.7201 +0 0.0672 +0 0.0822 +0 0.3366 +0 0.1144 +0 0.1102 +0 0.1098 +0 0.0706 +0 0.2408 +0 0.1701 +0 0.1660 +0 0.0914 +0 0.1217 +0 0.0515 +0 0.0621 +0 0.0784 +0 0.1055 +0 0.3838 +0 0.1639 +0 0.0748 +0 0.0299 +0 0.2211 +0 0.1058 +0 0.1134 +0 0.0721 +0 0.1151 +0 0.2142 +0 0.0309 +0 0.1003 +0 0.1560 +0 0.2236 +0 0.1013 +0 0.2340 +0 0.0798 +0 0.2219 +0 0.0771 +0 0.0398 +0 0.1101 +0 0.0533 +0 0.0933 +0 0.3885 +0 0.1551 +0 0.0689 +0 0.0677 +0 0.1768 +0 0.0561 +0 0.1199 +0 0.0416 +0 0.1567 +0 0.0402 +0 0.0752 +0 0.0892 +0 0.0552 +0 0.1274 +0 0.1615 +0 0.0714 +0 0.1293 +0 0.0532 +0 0.7034 +0 0.0578 +0 0.0846 +0 0.2735 +0 0.0687 +0 0.4703 +0 0.0742 +0 0.0485 +1 0.7809 +0 0.0897 +0 0.0872 +0 0.1384 +0 0.1154 +0 0.1141 +0 0.1361 +0 0.1440 +1 0.8461 +0 0.1534 +0 0.0771 +0 0.1342 +0 0.1215 +0 0.1400 +0 0.0819 +0 0.1111 +0 0.1607 +0 0.0523 +0 0.2170 +0 0.1966 +0 0.0931 +0 0.0500 +0 0.1297 +0 0.0714 +0 0.0932 +0 0.0957 +0 0.0460 +0 0.0695 +0 0.0710 +0 0.1004 +0 0.0775 +0 0.0769 +0 0.1260 +0 0.3120 +0 0.0968 +0 0.1228 +0 0.2078 +0 0.0758 +0 0.1118 +0 0.1013 +0 0.2200 +0 0.0881 +0 0.0586 +0 0.3121 +0 0.1683 +0 0.0702 +0 0.0425 +0 0.1360 +0 0.0913 +0 0.1198 +0 0.1855 +0 0.1523 +0 0.1184 +0 0.0553 +0 0.3730 +0 0.2054 +0 0.1182 +0 0.0458 +0 0.0680 +0 0.2405 +0 0.1897 +0 0.1002 +0 0.1142 +0 0.3161 +0 0.0545 +0 0.0964 +0 0.1051 +0 0.2255 +0 0.2150 +0 0.0426 +0 0.0555 +0 0.0756 +0 0.0948 +0 0.1037 +0 0.1928 +1 0.7910 +0 0.0449 +0 0.0626 +0 0.0651 +0 0.1389 +0 0.1813 +0 0.0547 +0 0.2222 +0 0.2140 +0 0.1059 +0 0.2389 +0 0.0555 +0 0.3225 +0 0.0922 +0 0.0650 +0 0.1824 +0 0.3436 +0 0.0739 +0 0.0873 +0 0.3253 +0 0.6687 +0 0.0775 +0 0.0582 +0 0.0719 +0 0.1968 +0 0.1290 +0 0.0499 +0 0.0927 +0 0.0996 +0 0.1476 +0 0.3336 +1 0.8458 +0 0.1076 +0 0.2762 +0 0.0487 +0 0.1484 +0 0.0889 +0 0.0593 +0 0.1331 +0 0.0460 +0 0.1177 +0 0.0780 +0 0.1324 +1 0.8274 +0 0.0750 +0 0.1096 +0 0.0428 +0 0.0585 +0 0.1319 +0 0.2342 +0 0.0556 +0 0.1164 +0 0.0541 +0 0.1436 +0 0.0482 +0 0.1249 +0 0.1798 +0 0.1577 +0 0.1123 +0 0.0538 +0 0.0729 +0 0.1313 +0 0.0774 +0 0.3163 +0 0.1712 +0 0.1803 +0 0.0969 +0 0.0899 +0 0.0778 +0 0.0975 +0 0.1588 +0 0.0933 +0 0.2698 +0 0.5190 +0 0.1648 +0 0.0624 +0 0.0495 +0 0.1010 +0 0.1712 +0 0.1358 +0 0.1101 +0 0.1658 +0 0.0737 +0 0.0587 +0 0.0656 +0 0.2175 +0 0.1416 +0 0.1035 +0 0.3636 +0 0.1672 +0 0.0931 +0 0.4791 +0 0.4546 +0 0.2938 +0 0.4939 +0 0.4359 +0 0.1153 +0 0.1800 +0 0.1668 +0 0.0959 +0 0.1116 +0 0.0552 +0 0.0785 +0 0.2562 +0 0.0455 +0 0.1471 +0 0.0955 +0 0.1302 +0 0.0805 +0 0.2408 +0 0.0391 +0 0.0748 +0 0.0507 +0 0.1529 +0 0.1006 +0 0.1558 +0 0.0534 +0 0.1452 +0 0.1634 +0 0.0690 +0 0.0771 +0 0.0975 +0 0.1056 +0 0.1735 +0 0.1242 +0 0.1085 +0 0.0606 +0 0.2206 +0 0.2208 +0 0.1326 +0 0.1197 +0 0.0686 +0 0.0758 +0 0.2575 +0 0.1276 +0 0.1796 +0 0.0878 +0 0.1627 +0 0.2406 +0 0.0854 +0 0.1066 +0 0.1996 +0 0.1413 +0 0.1516 +0 0.0807 +0 0.1349 +0 0.1937 +0 0.1919 +0 0.1662 +0 0.1626 +0 0.1045 +0 0.1518 +0 0.3307 +0 0.1516 +0 0.1002 +0 0.1952 +0 0.7044 +0 0.0522 +0 0.7401 +0 0.2480 +0 0.0775 +0 0.1641 +0 0.0562 +0 0.0941 +0 0.2391 +0 0.0574 +0 0.1016 +0 0.1127 +0 0.1262 +0 0.1327 +0 0.0773 +0 0.1336 +0 0.0778 +0 0.1007 +0 0.1480 +0 0.0504 +0 0.0791 +0 0.0845 +0 0.1055 +0 0.1272 +0 0.4587 +0 0.4039 +0 0.0838 +0 0.0937 +0 0.0446 +0 0.0440 +0 0.1169 +0 0.1259 +0 0.0632 +0 0.0728 +0 0.1541 +0 0.1361 +0 0.0858 +0 0.0405 +0 0.0686 +0 0.0845 +0 0.0779 +0 0.0684 +0 0.1230 +0 0.0976 +0 0.1073 +0 0.2406 +0 0.0736 +0 0.0591 +0 0.0430 +0 0.3744 +0 0.1020 +0 0.4225 +0 0.1284 +0 0.2171 +0 0.2268 +0 0.1653 +0 0.1489 +0 0.1002 +0 0.0469 +0 0.2419 +0 0.0570 +0 0.1253 +0 0.1308 +0 0.0988 +0 0.7225 +0 0.1396 +0 0.2203 +0 0.0560 +0 0.1034 +0 0.1726 +0 0.0590 +0 0.0656 +0 0.2482 +0 0.0523 +0 0.1389 +0 0.1563 +0 0.1501 +0 0.0888 +0 0.4386 +0 0.1523 +0 0.0908 +0 0.2473 +0 0.1192 +0 0.0505 +0 0.1599 +0 0.1239 +0 0.0863 +0 0.0967 +0 0.0665 +1 0.8225 +0 0.1237 +0 0.1368 +0 0.1535 +0 0.0724 +0 0.1644 +0 0.1951 +0 0.1299 +0 0.0472 +0 0.1624 +0 0.1369 +0 0.0617 +0 0.3541 +0 0.0963 +0 0.1382 +0 0.0563 +0 0.0720 +0 0.0837 +0 0.0522 +0 0.1245 +0 0.0838 +0 0.0864 +0 0.0727 +0 0.1070 +0 0.1997 +0 0.1100 +0 0.0399 +0 0.0604 +0 0.1455 +0 0.0718 +0 0.0730 +0 0.0542 +0 0.2155 +0 0.1098 +0 0.0762 +0 0.0743 +0 0.0541 +0 0.1056 +0 0.0854 +0 0.0679 +0 0.4453 +0 0.0829 +0 0.1778 +0 0.1713 +0 0.0726 +0 0.1724 +0 0.1250 +0 0.2292 +0 0.0808 +0 0.2563 +0 0.1143 +0 0.1295 +0 0.0884 +0 0.0584 +0 0.0350 +0 0.4960 +0 0.1650 +0 0.1081 +0 0.1693 +0 0.0535 +0 0.1455 +0 0.1182 +0 0.1760 +0 0.0631 +0 0.0795 +0 0.0963 +0 0.0755 +0 0.2842 +0 0.1315 +0 0.1664 +0 0.3615 +0 0.1011 +0 0.3274 +0 0.0598 +0 0.0499 +0 0.1376 +0 0.1172 +0 0.0664 +0 0.1013 +0 0.0568 +0 0.1316 +0 0.0989 +0 0.6024 +0 0.0853 +0 0.0592 +0 0.2499 +0 0.0790 +0 0.1215 +0 0.6589 +0 0.0584 +0 0.1099 +1 0.8477 +0 0.1074 +0 0.1478 +0 0.1941 +0 0.1079 +0 0.0547 +0 0.1135 +0 0.0667 +0 0.0809 +0 0.0451 +0 0.1945 +0 0.1132 +0 0.1576 +0 0.2178 +0 0.1055 +0 0.1095 +0 0.0458 +0 0.0765 +0 0.0898 +0 0.0340 +0 0.0488 +0 0.0720 +0 0.0794 +0 0.2411 +0 0.1020 +0 0.1480 +0 0.0314 +0 0.1443 +0 0.1262 +0 0.1803 +0 0.0550 +0 0.2243 +0 0.0494 +0 0.0559 +0 0.1342 +0 0.0522 +0 0.1154 +0 0.0641 +0 0.0811 +0 0.0981 +0 0.1543 +0 0.0782 +0 0.1171 +0 0.1829 +0 0.3262 +0 0.1277 +0 0.0729 +0 0.1645 +0 0.0840 +0 0.0627 +0 0.0358 +0 0.0642 +0 0.1497 +0 0.1023 +0 0.1053 +0 0.1105 +0 0.2506 +0 0.2504 +0 0.0600 +0 0.0435 +0 0.1158 +0 0.0338 +0 0.0476 +0 0.4270 +0 0.2948 +0 0.0477 +0 0.1331 +0 0.1990 +0 0.1471 +0 0.0645 +0 0.0774 +0 0.0706 +0 0.1063 +0 0.1818 +0 0.0709 +0 0.0871 +0 0.2117 +0 0.0562 +0 0.0583 +0 0.2630 +0 0.4074 +0 0.0876 +0 0.0989 +0 0.1391 +0 0.5057 +0 0.1712 +0 0.0885 +0 0.1208 +0 0.0536 +0 0.0474 +0 0.0686 +1 0.8785 +0 0.0884 +0 0.1363 +0 0.0824 +0 0.2116 +0 0.0379 +0 0.1241 +0 0.1027 +0 0.0718 +0 0.0531 +0 0.1982 +0 0.1024 +0 0.0395 +0 0.2675 +0 0.0682 +0 0.1452 +0 0.1088 +0 0.1907 +0 0.1125 +0 0.1921 +0 0.1575 +0 0.1393 +0 0.0883 +0 0.1614 +0 0.1059 +0 0.5636 +0 0.0606 +0 0.1935 +0 0.0466 +0 0.3441 +0 0.1166 +0 0.2760 +0 0.1029 +0 0.0617 +0 0.0867 +0 0.2744 +0 0.5144 +0 0.0691 +0 0.0385 +0 0.1337 +0 0.1619 +0 0.2453 +0 0.0811 +0 0.1011 +0 0.1379 +0 0.1130 +0 0.1351 +0 0.0937 +0 0.0948 +0 0.0803 +0 0.0384 +0 0.0875 +0 0.0787 +0 0.1051 +0 0.1709 +0 0.2670 +0 0.1003 +0 0.0716 +0 0.1627 +0 0.2217 +0 0.3487 +0 0.0482 +0 0.0761 +0 0.0825 +0 0.1228 +0 0.6008 +0 0.1887 +0 0.0976 +0 0.0817 +0 0.1832 +0 0.0948 +0 0.1050 +0 0.0986 +0 0.1184 +0 0.1950 +0 0.2073 +0 0.3942 +0 0.1666 +0 0.3175 +0 0.0665 +0 0.0532 +0 0.0664 +0 0.1285 +0 0.2934 +0 0.2544 +0 0.0475 +0 0.0728 +0 0.0509 +0 0.0852 +0 0.4695 +0 0.0917 +0 0.1035 +0 0.4050 +0 0.0517 +0 0.1718 +0 0.0787 +0 0.3393 +0 0.1993 +0 0.0836 +0 0.0979 +0 0.0755 +0 0.0677 +0 0.0479 +0 0.4255 +0 0.0398 +0 0.0528 +0 0.1614 +0 0.0910 +0 0.0566 +0 0.4041 +0 0.4407 +0 0.2793 +0 0.2150 +0 0.0533 +0 0.0737 +1 0.7517 +0 0.0688 +0 0.0464 +0 0.0447 +0 0.0705 +0 0.0719 +0 0.1208 +0 0.4005 +0 0.1601 +0 0.0805 +0 0.0785 +0 0.0878 +0 0.4095 +0 0.1749 +0 0.1014 +0 0.0629 +0 0.1094 +0 0.0567 +0 0.0573 +0 0.0700 +0 0.0649 +0 0.6031 +1 0.8554 +0 0.0892 +0 0.0494 +0 0.1350 +0 0.1512 +0 0.1456 +0 0.2571 +0 0.1370 +0 0.0542 +0 0.0588 +0 0.1316 +0 0.0800 +0 0.0991 +0 0.0444 +0 0.1027 +0 0.2222 +0 0.2646 +0 0.0840 +0 0.1719 +0 0.0973 +0 0.1060 +0 0.0610 +0 0.0713 +0 0.1815 +0 0.1556 +0 0.2175 +0 0.0675 +0 0.0974 +0 0.0691 +0 0.1031 +0 0.2554 +0 0.0653 +0 0.0445 +0 0.0824 +0 0.0555 +0 0.1062 +0 0.0936 +0 0.0824 +0 0.0979 +0 0.2005 +0 0.1271 +0 0.1646 +0 0.1912 +0 0.0464 +0 0.1215 +0 0.0957 +0 0.1081 +0 0.0373 +0 0.1113 +0 0.1846 +0 0.4598 +0 0.0960 +0 0.0648 +0 0.1084 +0 0.0533 +0 0.3178 +0 0.0518 +0 0.0716 +0 0.5003 +0 0.1771 +0 0.3302 +0 0.0986 +0 0.1291 +0 0.2367 +0 0.1213 +0 0.1950 +0 0.0613 +0 0.0401 +0 0.0506 +0 0.0882 +0 0.3664 +0 0.4111 +0 0.1290 +0 0.0498 +0 0.1076 +0 0.0655 +0 0.1421 +0 0.0833 +0 0.0510 +0 0.0903 +0 0.1070 +0 0.0390 +0 0.3691 +0 0.3935 +0 0.1125 +0 0.1340 +0 0.0376 +0 0.2332 +0 0.0747 +0 0.5837 +0 0.0696 +0 0.0761 +1 0.8573 +0 0.1182 +0 0.1505 +0 0.1097 +0 0.0647 +0 0.0928 +0 0.0914 +0 0.0534 +0 0.1709 +0 0.7486 +0 0.0771 +0 0.3036 +0 0.2001 +0 0.0407 +0 0.0792 +0 0.0703 +0 0.0982 +0 0.0665 +0 0.1559 +0 0.2137 +0 0.0636 +0 0.0416 +0 0.0962 +0 0.0767 +0 0.0454 +0 0.1454 +0 0.0864 +0 0.1384 +0 0.3363 +0 0.0628 +0 0.1086 +0 0.0770 +0 0.2427 +0 0.3604 +0 0.1044 +0 0.1479 +0 0.1427 +0 0.0424 +0 0.1196 +0 0.0517 +0 0.0808 +0 0.0859 +0 0.0431 +0 0.1119 +0 0.0518 +0 0.0386 +0 0.1853 +0 0.1384 +0 0.4460 +0 0.0594 +0 0.1379 +0 0.1478 +0 0.1704 +0 0.2282 +0 0.0689 +0 0.0950 +0 0.1619 +0 0.0730 +0 0.0644 +0 0.0421 +0 0.1919 +0 0.1425 +0 0.6893 +0 0.1783 +0 0.1168 +0 0.1380 +0 0.1146 +0 0.1126 +0 0.0672 +0 0.1376 +0 0.6203 +0 0.0810 +0 0.0865 +0 0.0458 +0 0.1062 +0 0.0944 +0 0.0491 +0 0.1237 +0 0.1485 +0 0.0595 +0 0.0782 +0 0.1245 +0 0.1581 +0 0.0920 +0 0.1645 +0 0.0707 +0 0.1119 +0 0.0907 +0 0.0762 +0 0.0933 +0 0.1251 +0 0.1584 +0 0.6380 +0 0.0865 +0 0.0989 +0 0.0464 +0 0.0419 +0 0.2004 +0 0.0998 +0 0.1397 +0 0.1980 +0 0.0850 +0 0.0463 +0 0.2564 +0 0.0594 +0 0.2630 +0 0.2398 +0 0.1494 +0 0.4007 +0 0.0796 +0 0.2137 +0 0.1613 +0 0.2532 +0 0.0852 +0 0.1752 +0 0.0908 +0 0.0459 +0 0.1137 +0 0.2035 +0 0.0521 +0 0.1278 +0 0.1199 +0 0.0478 +0 0.1976 +0 0.1103 +0 0.1739 +0 0.0848 +0 0.2844 +0 0.0456 +0 0.0728 +0 0.0909 +0 0.0406 +0 0.1720 +0 0.0715 +0 0.0464 +0 0.0686 +0 0.0734 +0 0.1243 +0 0.1229 +0 0.1687 +0 0.0858 +0 0.0852 +0 0.0705 +0 0.0719 +0 0.0957 +0 0.0551 +0 0.3004 +0 0.1009 +0 0.1371 +0 0.0421 +0 0.0511 +0 0.0535 +0 0.5193 +0 0.0464 +0 0.0628 +0 0.1655 +0 0.3552 +0 0.1545 +0 0.1994 +0 0.1072 +0 0.0767 +0 0.0512 +0 0.3132 +0 0.0998 +0 0.1555 +0 0.1067 +0 0.2461 +0 0.1636 +0 0.0851 +0 0.4077 +0 0.1349 +0 0.1856 +0 0.3276 +0 0.0918 +0 0.0747 +0 0.0989 +0 0.0581 +0 0.0483 +0 0.2449 +0 0.0680 +0 0.2090 +0 0.2243 +0 0.5152 +0 0.2041 +0 0.2031 +0 0.0814 +0 0.0813 +0 0.1966 +0 0.1349 +0 0.0548 +0 0.0677 +0 0.0562 +0 0.1205 +0 0.3306 +0 0.0522 +0 0.1028 +0 0.2214 +0 0.0720 +0 0.2403 +0 0.0603 +0 0.0817 +0 0.1494 +0 0.1016 +0 0.0974 +0 0.1844 +0 0.3007 +0 0.0713 +0 0.0937 +0 0.1114 +0 0.7380 +0 0.1490 +0 0.5594 +0 0.0935 +0 0.2124 +0 0.0429 +0 0.1483 +0 0.0948 +0 0.1767 +0 0.1076 +0 0.1989 +0 0.4496 +0 0.2430 +0 0.0721 +0 0.1209 +0 0.0863 +0 0.7191 +0 0.1226 +0 0.0825 +0 0.3193 +0 0.1676 +0 0.2026 +0 0.1108 +0 0.0699 +0 0.0638 +0 0.0701 +0 0.0680 +0 0.0877 +0 0.0790 +0 0.0974 +0 0.1146 +0 0.1106 +0 0.0559 +0 0.2126 +0 0.1649 +0 0.1032 +0 0.0746 +0 0.0833 +1 0.7517 +0 0.1456 +0 0.0487 +0 0.0522 +0 0.5879 +0 0.0718 +0 0.0590 +0 0.0991 +0 0.0679 +0 0.1087 +0 0.1379 +0 0.0417 +0 0.0641 +0 0.2818 +0 0.0440 +0 0.0965 +0 0.0667 +0 0.1050 +0 0.0702 +0 0.1881 +0 0.0409 +0 0.0767 +0 0.0783 +0 0.0636 +0 0.1002 +0 0.0715 +0 0.1304 +0 0.1161 +0 0.0467 +0 0.0996 +0 0.1523 +0 0.0601 +0 0.0543 +0 0.1572 +0 0.1324 +0 0.3419 +0 0.2833 +0 0.2179 +0 0.0689 +0 0.0436 +0 0.1001 +0 0.0638 +0 0.0344 +0 0.0426 +0 0.6914 +0 0.0400 +0 0.0820 +0 0.3211 +0 0.1253 +0 0.0900 +0 0.1444 +0 0.1164 +0 0.0894 +0 0.1100 +0 0.0663 +0 0.2316 +0 0.1246 +0 0.1446 +0 0.0321 +0 0.0718 +0 0.6674 +0 0.1276 +0 0.0544 +0 0.1986 +0 0.0750 +0 0.0514 +0 0.1360 +0 0.1626 +0 0.1068 +0 0.0876 +0 0.1389 +0 0.1303 +0 0.1124 +0 0.2664 +0 0.1719 +0 0.0634 +0 0.1136 +0 0.0434 +0 0.1601 +0 0.0461 +0 0.0575 +0 0.0537 +0 0.2153 +0 0.0763 +0 0.0806 +0 0.1882 +0 0.0892 +0 0.0639 +0 0.1092 +0 0.0673 +0 0.7371 +0 0.0730 +0 0.3392 +0 0.2369 +0 0.0783 +0 0.1141 +0 0.2840 +0 0.0687 +0 0.0895 +0 0.0322 +0 0.1112 +0 0.0996 +0 0.1546 +0 0.0496 +0 0.1565 +0 0.0456 +0 0.4215 +0 0.1294 +0 0.0871 +0 0.0623 +0 0.3325 +0 0.1275 +0 0.0839 +0 0.0732 +0 0.0881 +0 0.0584 +0 0.0836 +0 0.2302 +0 0.2517 +0 0.0819 +0 0.1902 +0 0.1094 +0 0.1021 +0 0.1444 +0 0.1559 +0 0.1612 +0 0.0525 +0 0.1217 +0 0.0720 +0 0.1463 +0 0.1214 +0 0.1237 +0 0.2325 +0 0.0676 +0 0.0479 +0 0.0948 +1 0.8221 +0 0.1101 +0 0.1301 +0 0.0419 +0 0.1502 +0 0.0775 +0 0.2847 +0 0.0657 +0 0.0818 +0 0.0387 +0 0.0717 +0 0.0532 +0 0.3461 +0 0.1896 +0 0.1613 +0 0.0668 +0 0.1543 +0 0.1010 +0 0.0439 +0 0.0720 +0 0.0847 +0 0.2685 +0 0.1230 +0 0.2751 +0 0.3618 +0 0.0652 +0 0.2337 +0 0.0932 +0 0.0565 +0 0.0625 +0 0.0488 +0 0.0923 +0 0.0758 +0 0.1215 +0 0.1245 +0 0.0554 +0 0.0540 +0 0.0368 +0 0.1216 +0 0.0490 +0 0.1049 +0 0.5100 +0 0.2481 +0 0.1109 +0 0.0474 +0 0.4178 +0 0.1127 +0 0.0883 +0 0.0642 +0 0.0814 +0 0.1129 +0 0.4014 +0 0.1521 +0 0.1648 +0 0.0732 +0 0.0540 +0 0.0508 +0 0.0662 +0 0.1110 +0 0.0545 +0 0.0315 +0 0.1474 +0 0.2961 +0 0.0567 +0 0.1057 +0 0.1757 +0 0.0520 +0 0.0686 +0 0.0843 +0 0.0578 +0 0.1748 +0 0.0875 +0 0.0598 +0 0.1712 +0 0.1464 +0 0.2128 +0 0.0952 +0 0.1067 +0 0.0587 +0 0.1827 +0 0.0452 +0 0.1188 +0 0.1610 +0 0.1670 +0 0.3008 +0 0.0684 +0 0.1814 +0 0.1769 +0 0.2115 +0 0.5560 +0 0.2715 +0 0.1918 +0 0.0931 +0 0.1903 +0 0.1957 +1 0.8483 +0 0.1452 +0 0.0817 +0 0.1028 +0 0.0480 +0 0.0309 +0 0.0433 +0 0.1216 +0 0.0429 +0 0.1187 +0 0.0850 +0 0.0904 +0 0.0578 +0 0.0713 +0 0.1584 +0 0.1135 +0 0.7483 +0 0.0919 +0 0.0824 +0 0.1212 +0 0.0971 +1 0.8315 +0 0.0468 +0 0.0729 +0 0.1089 +0 0.2740 +0 0.0628 +0 0.0836 +0 0.1335 +0 0.3010 +0 0.0521 +0 0.2050 +0 0.1185 +0 0.2418 +0 0.0420 +0 0.0452 +0 0.1072 +0 0.1820 +0 0.1278 +0 0.0545 +0 0.1265 +0 0.0691 +0 0.1975 +0 0.0770 +0 0.0910 +0 0.1544 +0 0.0658 +0 0.0962 +0 0.0550 +0 0.2510 +0 0.1375 +0 0.1729 +0 0.0823 +0 0.0817 +0 0.0789 +0 0.1215 +0 0.1172 +0 0.1850 +0 0.1428 +0 0.0528 +0 0.0777 +0 0.2338 +0 0.0556 +0 0.0517 +0 0.0709 +0 0.1446 +1 0.8546 +1 0.7892 +0 0.0513 +0 0.0520 +0 0.0732 +0 0.2039 +0 0.1982 +0 0.3060 +0 0.1068 +0 0.3197 +0 0.0768 +0 0.1091 +1 0.7930 +0 0.4542 +0 0.3675 +0 0.1773 +0 0.0428 +0 0.0925 +0 0.2148 +0 0.1232 +0 0.2603 +0 0.0363 +0 0.1052 +0 0.0424 +0 0.2179 +0 0.2027 +0 0.2633 +0 0.2802 +0 0.0462 +0 0.2661 +0 0.6834 +0 0.1044 +0 0.1662 +0 0.0875 +0 0.1329 +0 0.0891 +0 0.1134 +0 0.1120 +0 0.1246 +0 0.0574 +0 0.1971 +0 0.1621 +0 0.0919 +0 0.0756 +0 0.0672 +0 0.0728 +0 0.1253 +0 0.0969 +0 0.0831 +0 0.0529 +0 0.0731 +0 0.2911 +0 0.1165 +0 0.0511 +0 0.1213 +0 0.1308 +0 0.1052 +0 0.1342 +0 0.0784 +0 0.0429 +0 0.2020 +0 0.0874 +0 0.0641 +0 0.2165 +0 0.2185 +0 0.1882 +1 0.8617 +0 0.2556 +0 0.1623 +0 0.1009 +0 0.0972 +0 0.1459 +0 0.0800 +0 0.2408 +0 0.0680 +0 0.1504 +0 0.2235 +0 0.0445 +0 0.1309 +0 0.0841 +0 0.1246 +0 0.0473 +0 0.1092 +0 0.0734 +0 0.0535 +0 0.1142 +0 0.2228 +0 0.1191 +0 0.0964 +0 0.2585 +0 0.0809 +0 0.2443 +0 0.1393 +0 0.2025 +0 0.0773 +0 0.0603 +0 0.0568 +0 0.1640 +0 0.0834 +0 0.0616 +0 0.0957 +0 0.0438 +0 0.0865 +0 0.0900 +0 0.1490 +0 0.0502 +0 0.0514 +0 0.1192 +0 0.1228 +0 0.2603 +0 0.0586 +0 0.1134 +0 0.1244 +0 0.2804 +0 0.6340 +0 0.1908 +0 0.0780 +0 0.0894 +0 0.0429 +0 0.0581 +0 0.0647 +0 0.1248 +0 0.0769 +0 0.0833 +0 0.0834 +0 0.3703 +0 0.0838 +0 0.1153 +0 0.4833 +0 0.1697 +0 0.0758 +0 0.1070 +0 0.2015 +0 0.1345 +0 0.0697 +0 0.0559 +0 0.3030 +0 0.0633 +0 0.1025 +0 0.1914 +0 0.1771 +0 0.1577 +0 0.1040 +0 0.1390 +0 0.1048 +0 0.1396 +0 0.2335 +0 0.0942 +0 0.1411 +0 0.1113 +0 0.2158 +0 0.0966 +0 0.0665 +0 0.0519 +0 0.0420 +0 0.1125 +0 0.0507 +0 0.0509 +0 0.1173 +0 0.1818 +0 0.0765 +0 0.0584 +0 0.2556 +0 0.0523 +0 0.2725 +0 0.0579 +0 0.1940 +0 0.1123 +0 0.1143 +0 0.0982 +0 0.2770 +0 0.1724 +0 0.1150 +0 0.2171 +0 0.0335 +0 0.0440 +0 0.0913 +0 0.1097 +0 0.0534 +0 0.0634 +0 0.2248 +0 0.4411 +0 0.1805 +0 0.0434 +0 0.2226 +0 0.0769 +0 0.2060 +0 0.1329 +0 0.0621 +0 0.0439 +0 0.0902 +0 0.0693 +0 0.1452 +0 0.1096 +0 0.1318 +0 0.1913 +0 0.1573 +0 0.1917 +0 0.0919 +0 0.0941 +0 0.0898 +0 0.1365 +0 0.3670 +0 0.0688 +0 0.0906 +0 0.1284 +0 0.1436 +0 0.0849 +0 0.0686 +0 0.0474 +0 0.4789 +0 0.1107 +0 0.1166 +0 0.4461 +0 0.3059 +0 0.0678 +0 0.0828 +0 0.0613 +0 0.0946 +0 0.0896 +0 0.0837 +0 0.0822 +0 0.0996 +0 0.0414 +0 0.1248 +0 0.0541 +0 0.1404 +0 0.0378 +0 0.0553 +0 0.1249 +0 0.1505 +0 0.5747 +0 0.0771 +0 0.3511 +0 0.0834 +0 0.0883 +0 0.0920 +0 0.0486 +0 0.0568 +0 0.0749 +0 0.0660 +0 0.0678 +0 0.0732 +0 0.1306 +1 0.7941 +0 0.0735 +0 0.0570 +0 0.1654 +0 0.0495 +0 0.1364 +0 0.1520 +0 0.2903 +0 0.1688 +0 0.0886 +0 0.0520 +0 0.0919 +0 0.1548 +0 0.0675 +0 0.0362 +0 0.1045 +0 0.2769 +0 0.0525 +0 0.0807 +0 0.1069 +0 0.2090 +0 0.1287 +0 0.0482 +0 0.1377 +0 0.1505 +0 0.2075 +0 0.0566 +0 0.2767 +0 0.0622 +0 0.1779 +0 0.0670 +0 0.0544 +0 0.0867 +1 0.8432 +0 0.0894 +0 0.0772 +0 0.1215 +0 0.0743 +0 0.0814 +0 0.0808 +0 0.1219 +0 0.0520 +0 0.1494 +0 0.0474 +0 0.1195 +0 0.0855 +1 0.8533 +0 0.1646 +0 0.2154 +0 0.0581 +0 0.1411 +0 0.3053 +0 0.3413 +0 0.1337 +0 0.0820 +0 0.1079 +0 0.0809 +0 0.1591 +0 0.1788 +0 0.0438 +0 0.0942 +0 0.0712 +0 0.1228 +0 0.1751 +0 0.1057 +0 0.0853 +0 0.0432 +0 0.1711 +0 0.0770 +0 0.0570 +0 0.1093 +0 0.2098 +0 0.0656 +0 0.1239 +0 0.1749 +0 0.1164 +0 0.0653 +0 0.1680 +0 0.0755 +0 0.2248 +0 0.2611 +0 0.0683 +0 0.1044 +0 0.1046 +0 0.2024 +0 0.1864 +0 0.1369 +0 0.0294 +0 0.0520 +0 0.0903 +0 0.1651 +0 0.0926 +0 0.0631 +0 0.0817 +0 0.1302 +0 0.0843 +0 0.5758 +0 0.0712 +0 0.0770 +0 0.0870 +0 0.0687 +0 0.0689 +0 0.1416 +0 0.0975 +0 0.0776 +0 0.1139 +0 0.1302 +0 0.0783 +0 0.3661 +0 0.1250 +0 0.3712 +0 0.0599 +0 0.4102 +0 0.0655 +0 0.5158 +0 0.2358 +0 0.1148 +0 0.6964 +0 0.2380 +0 0.1004 +0 0.0926 +0 0.0947 +0 0.3186 +0 0.7424 +0 0.0922 +0 0.2442 +0 0.2083 +0 0.0703 +0 0.0419 +0 0.0474 +0 0.4204 +0 0.0896 +0 0.1692 +0 0.6272 +0 0.1179 +0 0.2317 +0 0.0988 +0 0.2424 +0 0.0691 +0 0.2997 +0 0.1108 +0 0.0784 +0 0.0862 +0 0.3504 +0 0.0698 +0 0.1647 +0 0.0870 +0 0.0303 +0 0.0697 +0 0.0669 +0 0.1747 +1 0.8319 +0 0.0436 +0 0.1488 +0 0.1522 +0 0.1220 +0 0.0675 +0 0.0830 +0 0.0669 +0 0.0429 +0 0.1670 +0 0.1024 +0 0.0585 +0 0.2372 +0 0.0519 +0 0.2597 +0 0.0523 +0 0.0881 +0 0.0555 +0 0.0832 +0 0.1661 +0 0.1210 +0 0.1419 +0 0.1006 +0 0.0856 +0 0.6853 +0 0.0772 +0 0.1048 +0 0.1267 +0 0.2093 +0 0.1778 +0 0.1865 +0 0.0962 +0 0.2221 +0 0.3696 +0 0.1743 +0 0.0985 +0 0.0901 +0 0.0470 +0 0.1094 +0 0.0676 +0 0.1276 +0 0.7424 +0 0.3522 +0 0.2934 +0 0.4711 +0 0.1081 +0 0.3014 +0 0.0682 +0 0.0824 +0 0.1334 +0 0.1801 +0 0.1302 +0 0.0911 +0 0.1321 +0 0.1055 +0 0.1127 +1 0.7789 +0 0.2296 +0 0.2032 +0 0.0791 +0 0.1488 +0 0.0854 +0 0.0745 +0 0.0904 +0 0.0855 +0 0.1147 +0 0.1503 +0 0.1528 +0 0.1292 +0 0.0991 +0 0.2170 +0 0.0746 +0 0.0654 +0 0.0551 +0 0.0636 +0 0.7342 +0 0.1544 +1 0.7657 +0 0.1902 +0 0.0646 +0 0.1090 +0 0.1139 +0 0.1330 +1 0.7636 +0 0.0698 +0 0.1809 +0 0.0725 +0 0.2395 +0 0.1594 +0 0.0320 +0 0.1042 +0 0.0875 +0 0.1280 +0 0.0536 +0 0.1418 +0 0.0757 +0 0.0473 +0 0.1080 +0 0.0798 +0 0.2510 +0 0.2497 +0 0.1106 +0 0.2240 +0 0.1301 +0 0.1353 +0 0.0596 +0 0.1320 +0 0.0715 +0 0.1627 +0 0.0664 +0 0.1174 +0 0.1230 +0 0.0583 +0 0.3251 +0 0.1313 +0 0.0999 +0 0.1019 +0 0.0961 +0 0.0671 +0 0.0644 +0 0.0603 +0 0.1170 +0 0.2277 +0 0.3560 +0 0.0938 +0 0.0744 +0 0.1706 +0 0.1647 +0 0.0739 +0 0.0674 +0 0.0553 +0 0.1836 +0 0.1273 +0 0.1234 +0 0.0958 +0 0.1600 +0 0.1080 +0 0.0961 +1 0.2797 +0 0.1207 +0 0.3394 +0 0.0814 +0 0.2741 +0 0.1744 +0 0.1712 +0 0.0513 +0 0.0770 +0 0.1298 +0 0.0463 +0 0.1005 +0 0.1154 +0 0.0467 +0 0.0543 +0 0.0939 +0 0.0791 +0 0.2011 +0 0.0922 +0 0.2057 +0 0.0748 +0 0.0619 +0 0.0549 +0 0.0679 +0 0.1233 +0 0.0611 +0 0.0571 +0 0.1533 +0 0.1093 +0 0.1001 +0 0.0637 +0 0.2518 +0 0.1863 +0 0.1846 +0 0.4337 +0 0.2028 +0 0.0854 +0 0.1094 +0 0.1139 +0 0.1625 +0 0.0954 +0 0.0908 +0 0.0529 +0 0.0901 +0 0.1669 +0 0.1585 +0 0.1621 +0 0.0849 +0 0.0545 +0 0.0783 +0 0.2563 +0 0.1283 +0 0.1242 +0 0.0863 +0 0.0523 +0 0.1231 +0 0.2137 +0 0.1584 +0 0.0660 +0 0.2081 +0 0.0696 +0 0.1270 +0 0.0683 +0 0.0942 +0 0.4382 +0 0.1494 +0 0.0951 +0 0.1236 +0 0.0947 +0 0.0789 +0 0.0332 +0 0.1016 +0 0.5400 +0 0.0873 +0 0.0613 +0 0.0676 +0 0.4352 +0 0.0328 +0 0.0627 +0 0.6144 +0 0.1361 +0 0.1597 +0 0.0996 +0 0.0960 +0 0.1590 +0 0.2172 +0 0.1224 +0 0.0475 +0 0.0606 +0 0.1085 +0 0.1217 +0 0.2729 +0 0.4427 +0 0.2433 +0 0.0575 +1 0.7741 +0 0.0698 +0 0.1058 +0 0.1255 +1 0.8151 +0 0.0563 +0 0.1316 +0 0.1535 +0 0.0676 +0 0.1359 +0 0.0848 +0 0.1312 +0 0.0738 +0 0.1214 +0 0.0652 +0 0.0733 +0 0.1405 +0 0.1430 +0 0.1729 +0 0.0757 +0 0.1420 +0 0.0562 +0 0.2011 +0 0.1208 +0 0.0649 +0 0.6842 +0 0.0721 +0 0.7016 +0 0.1133 +0 0.1155 +0 0.0890 +0 0.3375 +0 0.3516 +0 0.0507 +0 0.0546 +0 0.0877 +0 0.1648 +0 0.1246 +0 0.3736 +0 0.0504 +0 0.0661 +0 0.3002 +0 0.0475 +0 0.1354 +0 0.0655 +0 0.0943 +0 0.2736 +0 0.1146 +0 0.1844 +0 0.1373 +0 0.1581 +0 0.1365 +0 0.0786 +0 0.0723 +0 0.0416 +0 0.0637 +0 0.2082 +0 0.2299 +0 0.0705 +0 0.3124 +0 0.0785 +0 0.4476 +0 0.0586 +1 0.8156 +0 0.2373 +0 0.1190 +0 0.3094 +0 0.0991 +0 0.1611 +1 0.7534 +0 0.0421 +0 0.0471 +0 0.0730 +0 0.1841 +0 0.0974 +0 0.0785 +0 0.0915 +0 0.1307 +0 0.0547 +0 0.0572 +0 0.0761 +0 0.0849 +0 0.1793 +0 0.1452 +0 0.1206 +0 0.0610 +0 0.0726 +0 0.0800 +0 0.1792 +0 0.1920 +0 0.1231 +0 0.0288 +0 0.0815 +0 0.1072 +0 0.0513 +0 0.1213 +0 0.0927 +0 0.6545 +0 0.0802 +0 0.0859 +0 0.0846 +0 0.1197 +0 0.7296 +0 0.0581 +0 0.1993 +0 0.1388 +0 0.1301 +0 0.1888 +0 0.1306 +0 0.2662 +0 0.2457 +0 0.0463 +0 0.0617 +0 0.0497 +0 0.2149 +0 0.1715 +0 0.0362 +0 0.0523 +0 0.1742 +0 0.1107 +0 0.0412 +0 0.1106 +0 0.2306 +0 0.1915 +0 0.2159 +0 0.0461 +0 0.1212 +0 0.3327 +0 0.3381 +0 0.1767 +0 0.0950 +0 0.0820 +0 0.3980 +0 0.2869 +0 0.0800 +0 0.1320 +0 0.1661 +0 0.0612 +0 0.0457 +0 0.1514 +0 0.0624 +0 0.1593 +0 0.2153 +0 0.1204 +0 0.0307 +0 0.0535 +0 0.2913 +0 0.0431 +0 0.1915 +0 0.1973 +0 0.0544 +0 0.2991 +0 0.1800 +0 0.1584 +0 0.2116 +0 0.0926 +0 0.0619 +0 0.1292 +0 0.0874 +0 0.1494 +0 0.1904 +0 0.1157 +0 0.5009 +0 0.1012 +0 0.0882 +0 0.2709 +0 0.2172 +0 0.0813 +0 0.0814 +0 0.0427 +0 0.0586 +0 0.0953 +0 0.0756 +0 0.0449 +0 0.6153 +0 0.1247 +0 0.1291 +0 0.5355 +0 0.0763 +0 0.0732 +0 0.1347 +0 0.1058 +0 0.1049 +0 0.2784 +0 0.0363 +0 0.0527 +0 0.1284 +0 0.3380 +0 0.5143 +0 0.1121 +0 0.1698 +0 0.1807 +0 0.1351 +0 0.0740 +0 0.3453 +0 0.0630 +0 0.5259 +0 0.1601 +0 0.1180 +0 0.1041 +0 0.0701 +0 0.0881 +0 0.0896 +0 0.1801 +0 0.1865 +0 0.1301 +0 0.0719 +0 0.0845 +0 0.0999 +0 0.0622 +0 0.2413 +0 0.0968 +0 0.2863 +0 0.1502 +0 0.0617 +0 0.1449 +0 0.0623 +0 0.0349 +0 0.0376 +0 0.2654 +0 0.1000 +0 0.6428 +0 0.0731 +0 0.0925 +0 0.1796 +1 0.8316 +0 0.0425 +0 0.0513 +0 0.1905 +0 0.1324 +0 0.4506 +1 0.8183 +0 0.1228 +0 0.1028 +0 0.1619 +0 0.0470 +0 0.1625 +0 0.1187 +0 0.1235 +0 0.0646 +0 0.1172 +0 0.1444 +0 0.1091 +0 0.2671 +0 0.1169 +0 0.1041 +0 0.0920 +0 0.1164 +0 0.1044 +0 0.1339 +0 0.0448 +0 0.0842 +0 0.1269 +0 0.2028 +0 0.0820 +0 0.0465 +0 0.1121 +0 0.1863 +0 0.0812 +0 0.3008 +0 0.0749 +0 0.1684 +0 0.0378 +0 0.0663 +0 0.2201 +0 0.1074 +0 0.0717 +0 0.0763 +0 0.1106 +0 0.0913 +1 0.7827 +0 0.1372 +0 0.0946 +0 0.0519 +0 0.0784 +0 0.0670 +0 0.0943 +0 0.3384 +0 0.0652 +0 0.4062 +0 0.0923 +0 0.2073 +0 0.1902 +0 0.2463 +0 0.0645 +0 0.0452 +0 0.1403 +0 0.0951 +0 0.0747 +0 0.0887 +0 0.1546 +0 0.2069 +0 0.0652 +0 0.0908 +0 0.2272 +0 0.0671 +0 0.0711 +0 0.1442 +0 0.1221 +0 0.1376 +0 0.1026 +0 0.6474 +0 0.1211 +0 0.0667 +0 0.0695 +0 0.0576 +0 0.5609 +0 0.0764 +0 0.0581 +0 0.0968 +0 0.1793 +0 0.2200 +0 0.0572 +0 0.0846 +0 0.2055 +0 0.1671 +0 0.1016 +0 0.1613 +0 0.0869 +0 0.1066 +0 0.3039 +0 0.1353 +0 0.1493 +0 0.1279 +0 0.1434 +0 0.0729 +0 0.0806 +0 0.0528 +0 0.0497 +0 0.1041 +0 0.2661 +0 0.1674 +0 0.0538 +1 0.7683 +0 0.1191 +0 0.1018 +0 0.1056 +0 0.1170 +0 0.0538 +0 0.1260 +0 0.3090 +0 0.1107 +0 0.0728 +0 0.0438 +0 0.1131 +0 0.0751 +0 0.0396 +0 0.0975 +0 0.1160 +0 0.0765 +0 0.1694 +0 0.6968 +0 0.3407 +0 0.1183 +0 0.0999 +0 0.0739 +0 0.2181 +0 0.1078 +0 0.0885 +0 0.2478 +0 0.1055 +0 0.1199 +0 0.0582 +0 0.2652 +1 0.8447 +0 0.1499 +0 0.1086 +0 0.0442 +0 0.1655 +0 0.0881 +0 0.0869 +0 0.2809 +0 0.1111 +0 0.1488 +0 0.0929 +0 0.0543 +0 0.1337 +0 0.0867 +0 0.1433 +0 0.0863 +0 0.1043 +0 0.2949 +0 0.0983 +0 0.0602 +0 0.1160 +0 0.1341 +0 0.1010 +0 0.1031 +0 0.0642 +0 0.1212 +0 0.0641 +0 0.0880 +0 0.1634 +0 0.1244 +0 0.0391 +0 0.1867 +0 0.0695 +0 0.1051 +0 0.0713 +0 0.0620 +0 0.1489 +0 0.0968 +0 0.1257 +0 0.2590 +0 0.2019 +0 0.5760 +1 0.7913 +0 0.1978 +0 0.1792 +0 0.0417 +0 0.0533 +0 0.1270 +0 0.1725 +0 0.1794 +0 0.0749 +0 0.0342 +0 0.0729 +0 0.0712 +0 0.1166 +0 0.2152 +0 0.1070 +0 0.2365 +0 0.2771 +0 0.1476 +0 0.2182 +0 0.0791 +0 0.6647 +0 0.0638 +0 0.2619 +0 0.0598 +0 0.0727 +0 0.1817 +0 0.1622 +0 0.2121 +0 0.0752 +0 0.0745 +0 0.0624 +0 0.1456 +0 0.0806 +0 0.0850 +0 0.3224 +0 0.2247 +0 0.1608 +0 0.1499 +0 0.1861 +0 0.0378 +0 0.1241 +0 0.2345 +0 0.2540 +0 0.1090 +0 0.4416 +0 0.0822 +0 0.0620 +0 0.0593 +0 0.0750 +0 0.0690 +0 0.0989 +0 0.0533 +0 0.0720 +0 0.2497 +1 0.7683 +0 0.1809 +0 0.1144 +0 0.0775 +0 0.0482 +0 0.0987 +0 0.1758 +0 0.1694 +0 0.0475 +1 0.8020 +0 0.3347 +0 0.1455 +0 0.1105 +0 0.0484 +0 0.0998 +0 0.1076 +0 0.0568 +0 0.1091 +0 0.1405 +0 0.2756 +0 0.1344 +0 0.0690 +0 0.0838 +0 0.1215 +0 0.1810 +0 0.0941 +0 0.0901 +0 0.1530 +0 0.2260 +0 0.4005 +0 0.1196 +0 0.1795 +0 0.0740 +0 0.0800 +0 0.0812 +0 0.0781 +0 0.1216 +0 0.0771 +0 0.0827 +0 0.1113 +0 0.0438 +0 0.1291 +0 0.0848 +0 0.1810 +0 0.3991 +0 0.0702 +0 0.3856 +0 0.0938 +0 0.0388 +0 0.4014 +0 0.1714 +0 0.1659 +0 0.0592 +0 0.2223 +0 0.2824 +0 0.1549 +0 0.0823 +0 0.1072 +0 0.1503 +0 0.0524 +0 0.0645 +0 0.1685 +0 0.2020 +0 0.1107 +0 0.0723 +1 0.8852 +0 0.1057 +0 0.0654 +0 0.4032 +0 0.1289 +0 0.0874 +0 0.3370 +0 0.1581 +0 0.5736 +0 0.0520 +0 0.5317 +0 0.1011 +0 0.1349 +0 0.0913 +0 0.0793 +0 0.0340 +0 0.2623 +0 0.1463 +0 0.1068 +0 0.1900 +0 0.0419 +0 0.1354 +0 0.5555 +0 0.1747 +0 0.1342 +0 0.0869 +0 0.0862 +0 0.0594 +0 0.0986 +0 0.1198 +0 0.0947 +0 0.0969 +0 0.0412 +0 0.1824 +0 0.0539 +0 0.1790 +0 0.0782 +0 0.1168 +0 0.1251 +0 0.1087 +1 0.7980 +0 0.1326 +0 0.0337 +0 0.0787 +0 0.1440 +0 0.0633 +0 0.0665 +0 0.1804 +0 0.0846 +0 0.1493 +0 0.1285 +0 0.1263 +0 0.1304 +0 0.0992 +0 0.0718 +0 0.1440 +0 0.1415 +0 0.1397 +0 0.1573 +0 0.2207 +0 0.2645 +0 0.1377 +0 0.2835 +0 0.0397 +0 0.1312 +0 0.1129 +0 0.1366 +0 0.2090 +0 0.0563 +0 0.1032 +0 0.1050 +0 0.0917 +0 0.0854 +0 0.1608 +0 0.1768 +0 0.0930 +0 0.0808 +0 0.1608 +0 0.1560 +0 0.4069 +0 0.6863 +0 0.0427 +0 0.1630 +0 0.0665 +0 0.3623 +0 0.2867 +0 0.3418 +1 0.7800 +0 0.0620 +0 0.2751 +0 0.0714 +0 0.0676 +0 0.1712 +0 0.1741 +0 0.6537 +0 0.0677 +0 0.1681 +0 0.1087 +0 0.0816 +0 0.0606 +0 0.1043 +0 0.2193 +0 0.1471 +0 0.0683 +0 0.3772 +0 0.1491 +0 0.4778 +0 0.1243 +0 0.0661 +0 0.1192 +0 0.0613 +0 0.0908 +0 0.0633 +0 0.0532 +0 0.1202 +0 0.1799 +0 0.3833 +0 0.1265 +0 0.3454 +0 0.2386 +0 0.2709 +0 0.1794 +0 0.1820 +0 0.1162 +0 0.1064 +0 0.0875 +0 0.0657 +0 0.0710 +0 0.5018 +0 0.0765 +0 0.7479 +0 0.0901 +0 0.1625 +0 0.1306 +0 0.1479 +0 0.2273 +0 0.0408 +0 0.2559 +0 0.1942 +0 0.0884 +0 0.1056 +0 0.0592 +0 0.1735 +0 0.1019 +0 0.0425 +0 0.1723 +0 0.2624 +1 0.7823 +0 0.3392 +0 0.0883 +0 0.1605 +0 0.0725 +0 0.1219 +0 0.3517 +0 0.1200 +0 0.7307 +0 0.0909 +0 0.1041 +0 0.1038 +0 0.3037 +0 0.1074 +0 0.1689 +0 0.1537 +0 0.0684 +0 0.1152 +0 0.1528 +0 0.1040 +0 0.0360 +0 0.0499 +0 0.0979 +0 0.0719 +0 0.0324 +0 0.3689 +0 0.2430 +0 0.6746 +0 0.6727 +0 0.1209 +0 0.0596 +0 0.2072 +0 0.1314 +0 0.1256 +0 0.1705 +0 0.0634 +0 0.0445 +0 0.1224 +0 0.0717 +0 0.0649 +0 0.0760 +0 0.1185 +0 0.1324 +0 0.2940 +0 0.0456 +0 0.1082 +0 0.1073 +0 0.0565 +0 0.1058 +0 0.2425 +0 0.0860 +0 0.1293 +0 0.0756 +0 0.2341 +0 0.1150 +0 0.0558 +0 0.3179 +1 0.7855 +0 0.1137 +0 0.2420 +0 0.1187 +0 0.1507 +0 0.3880 +0 0.0745 +0 0.1252 +0 0.1675 +0 0.1043 +0 0.0592 +0 0.1549 +0 0.3461 +0 0.1728 +0 0.1394 +0 0.0833 +0 0.0834 +0 0.0903 +0 0.1191 +0 0.1000 +0 0.0528 +0 0.1740 +0 0.3235 +0 0.2050 +0 0.0578 +0 0.1665 +0 0.1291 +0 0.6914 +0 0.0814 +0 0.0671 +0 0.3410 +0 0.2252 +1 0.8138 +0 0.0876 +0 0.1870 +0 0.1204 +0 0.1576 +1 0.7662 +0 0.2138 +0 0.0705 +0 0.0854 +0 0.0730 +0 0.0970 +0 0.0707 +0 0.1696 +0 0.0823 +0 0.1221 +0 0.1029 +0 0.0534 +0 0.0826 +0 0.0942 +0 0.0912 +0 0.0602 +0 0.0357 +0 0.1090 +0 0.0668 +0 0.0511 +0 0.0892 +0 0.1037 +0 0.2401 +0 0.2320 +0 0.0915 +0 0.0505 +0 0.0762 +0 0.1637 +0 0.1967 +0 0.0434 +0 0.0729 +0 0.1429 +0 0.0957 +0 0.1068 +0 0.1170 +0 0.1291 +0 0.0847 +0 0.0490 +0 0.1011 +0 0.6360 +0 0.2650 +0 0.1211 +0 0.0596 +0 0.0321 +0 0.0911 +0 0.1325 +0 0.3291 +0 0.1320 +0 0.0810 +0 0.0961 +0 0.0553 +0 0.1226 +0 0.7061 +0 0.2381 +0 0.1362 +0 0.2957 +0 0.1186 +0 0.1002 +0 0.0820 +0 0.0447 +0 0.0619 +0 0.1345 +0 0.0668 +0 0.2335 +0 0.0810 +0 0.1419 +0 0.0422 +0 0.0734 +0 0.0692 +0 0.3286 +0 0.1109 +0 0.2249 +0 0.2888 +0 0.0635 +0 0.1132 +0 0.4885 +0 0.1018 +0 0.0696 +0 0.1125 +0 0.0725 +0 0.0884 +0 0.0451 +0 0.0689 +0 0.0919 +0 0.0848 +0 0.2710 +0 0.0963 +0 0.6292 +0 0.1117 +0 0.0817 +0 0.0604 +0 0.0944 +0 0.0796 +0 0.1918 +0 0.0705 +0 0.1596 +0 0.2769 +0 0.1231 +0 0.1955 +0 0.0906 +0 0.0707 +0 0.1293 +0 0.1326 +0 0.0544 +0 0.6587 +0 0.3368 +0 0.1063 +0 0.0770 +0 0.0492 +0 0.0575 +0 0.4483 +0 0.0536 +0 0.0701 +0 0.1007 +0 0.0729 +0 0.0684 +0 0.1801 +0 0.0801 +0 0.1003 +0 0.1090 +0 0.1126 +0 0.7320 +0 0.0666 +0 0.1186 +0 0.0663 +0 0.0830 +0 0.3283 +0 0.1179 +0 0.0990 +0 0.0347 +0 0.0403 +0 0.0999 +0 0.2566 +0 0.0979 +0 0.1327 +0 0.0690 +0 0.0601 +0 0.1605 +0 0.1865 +0 0.2054 +0 0.2140 +0 0.0454 +0 0.0718 +0 0.0588 +0 0.0593 +0 0.1016 +0 0.3929 +0 0.0462 +0 0.0803 +0 0.1182 +0 0.1158 +0 0.0849 +0 0.1276 +0 0.1044 +0 0.0302 +0 0.0709 +0 0.1514 +0 0.1385 +1 0.7568 +1 0.8430 +0 0.4154 +0 0.1443 +0 0.1455 +0 0.0681 +0 0.0718 +0 0.1963 +0 0.1570 +0 0.1475 +0 0.2340 +0 0.0382 +0 0.1092 +0 0.1155 +0 0.1263 +0 0.1228 +0 0.2249 +0 0.0733 +0 0.1073 +0 0.0364 +0 0.1339 +0 0.3608 +0 0.0614 +0 0.0812 +0 0.1074 +0 0.0810 +0 0.1831 +0 0.2391 +0 0.1071 +0 0.1254 +0 0.2368 +0 0.1032 +0 0.0406 +0 0.1171 +0 0.5360 +0 0.0915 +0 0.0490 +0 0.2637 +0 0.1232 +0 0.0711 +0 0.0752 +0 0.0916 +0 0.0883 +0 0.1510 +0 0.2324 +0 0.1585 +0 0.1066 +0 0.5895 +0 0.0655 +0 0.2094 +0 0.1422 +0 0.0653 +0 0.1024 +0 0.0590 +0 0.1775 +0 0.1309 +0 0.1113 +0 0.1997 +0 0.0877 +1 0.7919 +0 0.3269 +0 0.1008 +0 0.1466 +0 0.1779 +0 0.1198 +0 0.1637 +0 0.0887 +0 0.1355 +0 0.0802 +0 0.2119 +0 0.1046 +0 0.2743 +0 0.0456 +0 0.1835 +0 0.0830 +0 0.2223 +0 0.0496 +0 0.0537 +0 0.3201 +0 0.1708 +0 0.1198 +0 0.1500 +0 0.1548 +0 0.0516 +0 0.1048 +0 0.0971 +0 0.0830 +0 0.1799 +0 0.5739 +0 0.1510 +0 0.1137 +0 0.2610 +0 0.0833 +0 0.2953 +0 0.5017 +0 0.0588 +0 0.0709 +0 0.0828 +0 0.0543 +0 0.1026 +0 0.2361 +0 0.2896 +0 0.2888 +0 0.3321 +0 0.0675 +0 0.1217 +0 0.1557 +0 0.5894 +0 0.3409 +0 0.1460 +0 0.0812 +0 0.1995 +1 0.8120 +0 0.0999 +0 0.4108 +0 0.0809 +0 0.0612 +0 0.0459 +0 0.1610 +0 0.0968 +0 0.0824 +0 0.0774 +0 0.0718 +0 0.1082 +0 0.2639 +0 0.0451 +0 0.2649 +0 0.0860 +0 0.0518 +0 0.0891 +0 0.2660 +0 0.0309 +0 0.0678 +0 0.0694 +0 0.1006 +0 0.1764 +0 0.0882 +0 0.1561 +0 0.0698 +0 0.1019 +0 0.0811 +0 0.0858 +0 0.0983 +0 0.0973 +0 0.1122 +0 0.0606 +0 0.0673 +0 0.0740 +0 0.1505 +0 0.0603 +0 0.0751 +0 0.0614 +0 0.0936 +0 0.2681 +0 0.0394 +0 0.0489 +0 0.0365 +0 0.1142 +0 0.0592 +0 0.1801 +0 0.1230 +0 0.2594 +0 0.6548 +0 0.1258 +0 0.0568 +0 0.1204 +0 0.0415 +0 0.1810 +0 0.1546 +0 0.1082 +0 0.1885 +0 0.0806 +0 0.1547 +0 0.3296 +0 0.0434 +0 0.1466 +0 0.0517 +0 0.0974 +0 0.0787 +0 0.3448 +0 0.2077 +0 0.1057 +0 0.0738 +0 0.0775 +0 0.0871 +0 0.0465 +1 0.8463 +0 0.0708 +0 0.1438 +0 0.1331 +0 0.1696 +0 0.1089 +0 0.0761 +0 0.0596 +0 0.0997 +0 0.2185 +0 0.1412 +0 0.0745 +0 0.1183 +0 0.1578 +0 0.1773 +0 0.1805 +0 0.0995 +0 0.0340 +0 0.0613 +0 0.1239 +0 0.0996 +0 0.1629 +0 0.0472 +0 0.2758 +0 0.1170 +0 0.0686 +0 0.0666 +0 0.6138 +0 0.0640 +0 0.0995 +0 0.1063 +0 0.1447 +0 0.0889 +0 0.0924 +1 0.7598 +0 0.1194 +0 0.1622 +0 0.1139 +0 0.1540 +0 0.2420 +0 0.1616 +0 0.1143 +0 0.0683 +0 0.2475 +0 0.3088 +0 0.1300 +0 0.1823 +0 0.0893 +0 0.1422 +0 0.0940 +0 0.0801 +0 0.2095 +0 0.1116 +0 0.0999 +0 0.2652 +0 0.0961 +0 0.1089 +0 0.1831 +0 0.0744 +0 0.0813 +0 0.2692 +0 0.0718 +0 0.0364 +0 0.0819 +0 0.0579 +1 0.7921 +0 0.1395 +0 0.5967 +0 0.2918 +0 0.0708 +1 0.7942 +0 0.0667 +0 0.2721 +0 0.0953 +0 0.0565 +0 0.1397 +0 0.0623 +0 0.0826 +0 0.1790 +0 0.0435 +0 0.4764 +0 0.0842 +0 0.0914 +0 0.0819 +0 0.0995 +0 0.1479 +0 0.1472 +0 0.1009 +0 0.1284 +0 0.2217 +0 0.2473 +0 0.0731 +0 0.1561 +0 0.2948 +0 0.3147 +0 0.1702 +0 0.0366 +0 0.0424 +0 0.1654 +0 0.0630 +0 0.2056 +0 0.0593 +0 0.1276 +0 0.1714 +0 0.4141 +0 0.1515 +0 0.2816 +0 0.0759 +0 0.0555 +0 0.1296 +0 0.2339 +0 0.0701 +0 0.1236 +0 0.1355 +0 0.0404 +0 0.0797 +0 0.1904 +0 0.3162 +0 0.0999 +0 0.0670 +0 0.1129 +0 0.1539 +0 0.1455 +0 0.1480 +0 0.0482 +0 0.1346 +0 0.1506 +0 0.4470 +0 0.1168 +0 0.0423 +0 0.1971 +0 0.1631 +0 0.5185 +0 0.2204 +0 0.0745 +0 0.0817 +0 0.3949 +0 0.1700 +0 0.1372 +0 0.0769 +0 0.2442 +0 0.1080 +0 0.0634 +0 0.3248 +0 0.2664 +0 0.3765 +0 0.3133 +0 0.0473 +0 0.0536 +0 0.0973 +0 0.1235 +0 0.2054 +0 0.1110 +0 0.1686 +0 0.0653 +0 0.1256 +0 0.2150 +0 0.0339 +0 0.0826 +0 0.6088 +0 0.1695 +0 0.1500 +0 0.3183 +0 0.1853 +0 0.0504 +0 0.0391 +0 0.1070 +0 0.0929 +0 0.0355 +0 0.0968 +0 0.7320 +0 0.1217 +0 0.0835 +0 0.0878 +0 0.1089 +0 0.0471 +0 0.0639 +0 0.2232 +0 0.0537 +0 0.0690 +0 0.0919 +0 0.0528 +0 0.0532 +0 0.1022 +0 0.0872 +0 0.0597 +0 0.0690 +0 0.1745 +0 0.2337 +0 0.1016 +0 0.0707 +0 0.0761 +1 0.8053 +0 0.1314 +0 0.5146 +0 0.0533 +0 0.4129 +0 0.1254 +0 0.0603 +0 0.6775 +0 0.3648 +0 0.0681 +0 0.2783 +0 0.1743 +0 0.0925 +0 0.1918 +0 0.0909 +0 0.0927 +0 0.0771 +0 0.0853 +0 0.2032 +0 0.5437 +0 0.4663 +0 0.1475 +0 0.6807 +0 0.0518 +0 0.1908 +0 0.1051 +0 0.2442 +0 0.1037 +0 0.1148 +0 0.0522 +0 0.0902 +0 0.2375 +0 0.0960 +0 0.2417 +0 0.0752 +0 0.2090 +0 0.1368 +0 0.6135 +0 0.0606 +0 0.0468 +0 0.1634 +0 0.0862 +0 0.5388 +0 0.1983 +0 0.2099 +0 0.1027 +0 0.1604 +0 0.1553 +0 0.1249 +0 0.0610 +0 0.2335 +0 0.3248 +0 0.6377 +0 0.1762 +0 0.1254 +0 0.1074 +0 0.0879 +0 0.0856 +0 0.0529 +0 0.0746 +0 0.2093 +0 0.0754 +0 0.1702 +0 0.1122 +0 0.2635 +0 0.0667 +0 0.0869 +0 0.0531 +0 0.0469 +0 0.1175 +0 0.1588 +0 0.0645 +0 0.1131 +0 0.0899 +0 0.1915 +0 0.0439 +0 0.0875 +0 0.0897 +0 0.1122 +0 0.0520 +0 0.0971 +0 0.0466 +0 0.1537 +0 0.0709 +0 0.0782 +0 0.0723 +0 0.4533 +0 0.0672 +0 0.2887 +0 0.0819 +0 0.0904 +1 0.8389 +0 0.2496 +0 0.0505 +0 0.0750 +0 0.0639 +0 0.3557 +0 0.0617 +0 0.0752 +0 0.0618 +0 0.4337 +0 0.1493 +0 0.3082 +0 0.1350 +0 0.0393 +0 0.0361 +0 0.0650 +0 0.0522 +0 0.0942 +0 0.0627 +0 0.0483 +0 0.0752 +0 0.0854 +0 0.0523 +0 0.2575 +0 0.1476 +0 0.0417 +0 0.2295 +0 0.0933 +0 0.0482 +0 0.0588 +0 0.1583 +0 0.1089 +0 0.0600 +0 0.5650 +0 0.3366 +0 0.0570 +0 0.1009 +0 0.1249 +0 0.0886 +0 0.0555 +0 0.2364 +0 0.1782 +0 0.0732 +0 0.1144 +0 0.0518 +0 0.0434 +0 0.0619 +0 0.1926 +0 0.1296 +0 0.2029 +0 0.0755 +0 0.1576 +0 0.0674 +0 0.1202 +0 0.0452 +0 0.6549 +0 0.1048 +0 0.1304 +0 0.0702 +0 0.1509 +0 0.1058 +0 0.0418 +0 0.0406 +0 0.1302 +0 0.0814 +0 0.1586 +0 0.0352 +0 0.0574 +0 0.1030 +0 0.2410 +0 0.1005 +0 0.0755 +0 0.1178 +0 0.2541 +0 0.0521 +0 0.3427 +0 0.0730 +0 0.1729 +0 0.0871 +0 0.1076 +0 0.1981 +1 0.8303 +0 0.5745 +0 0.1936 +0 0.0977 +0 0.0683 +0 0.1314 +0 0.0847 +0 0.1831 +0 0.0885 +0 0.0662 +0 0.2397 +0 0.1111 +0 0.2039 +0 0.1086 +0 0.2308 +0 0.1701 +0 0.0962 +0 0.1337 +0 0.1585 +0 0.0603 +0 0.2052 +0 0.1765 +0 0.1752 +0 0.0695 +0 0.7044 +0 0.1322 +0 0.0605 +0 0.2276 +0 0.1603 +0 0.1141 +0 0.1126 +0 0.0584 +0 0.0705 +0 0.0808 +0 0.1150 +0 0.1459 +0 0.1492 +0 0.0754 +0 0.0779 +0 0.0896 +0 0.0489 +0 0.0748 +0 0.3145 +0 0.4422 +0 0.1909 +0 0.1222 +0 0.0971 +0 0.0715 +0 0.0563 +0 0.0801 +0 0.0919 +0 0.0587 +0 0.0655 +0 0.0954 +0 0.1141 +0 0.0715 +0 0.0757 +0 0.1599 +0 0.1039 +0 0.4363 +0 0.1494 +0 0.0812 +0 0.4141 +0 0.1213 +0 0.2385 +0 0.0426 +0 0.1481 +0 0.1289 +0 0.0871 +0 0.1239 +0 0.1022 +0 0.0373 +0 0.0596 +0 0.2171 +0 0.0591 +0 0.0911 +0 0.0605 +0 0.0825 +0 0.1226 +0 0.2810 +0 0.1883 +0 0.3286 +0 0.1382 +0 0.0432 +0 0.0884 +0 0.0566 +0 0.1919 +0 0.0855 +0 0.1323 +0 0.3545 +0 0.1016 +0 0.0605 +0 0.1552 +0 0.0976 +0 0.0545 +0 0.1123 +0 0.0682 +0 0.3665 +0 0.3931 +0 0.1047 +0 0.2513 +0 0.1142 +0 0.1142 +0 0.0559 +0 0.2538 +0 0.0602 +0 0.0697 +0 0.0728 +0 0.1085 +0 0.0885 +0 0.0939 +0 0.1773 +0 0.2032 +0 0.0900 +0 0.1362 +0 0.0902 +0 0.0447 +0 0.0881 +0 0.0614 +0 0.0671 +0 0.1182 +0 0.0918 +0 0.0902 +0 0.0669 +0 0.1414 +0 0.0940 +0 0.1202 +0 0.1350 +0 0.0312 +0 0.2488 +0 0.0443 +0 0.5156 +0 0.0630 +0 0.0503 +0 0.1118 +0 0.1237 +0 0.1307 +0 0.0742 +0 0.0844 +0 0.1164 +0 0.1247 +0 0.0563 +0 0.0727 +0 0.0488 +0 0.2472 +0 0.1455 +0 0.1711 +0 0.1010 +0 0.1216 +0 0.0650 +0 0.1908 +1 0.8454 +0 0.1058 +0 0.1213 +0 0.1090 +0 0.1178 +0 0.1261 +0 0.1947 +0 0.0958 +0 0.4481 +0 0.0996 +0 0.2093 +0 0.1015 +0 0.0817 +0 0.0715 +0 0.3058 +0 0.1867 +0 0.0579 +0 0.1447 +0 0.1856 +0 0.1023 +0 0.1012 +0 0.0943 +0 0.7280 +0 0.0881 +0 0.0532 +0 0.0763 +0 0.1203 +0 0.1162 +0 0.0875 +0 0.0924 +0 0.1429 +0 0.1074 +0 0.1277 +0 0.0770 +0 0.0996 +0 0.2099 +0 0.0379 +0 0.0908 +0 0.0387 +0 0.2872 +0 0.0835 +0 0.0745 +0 0.0892 +0 0.0626 +0 0.0440 +0 0.0944 +0 0.1039 +0 0.1011 +0 0.1368 +0 0.0441 +0 0.1795 +0 0.0462 +0 0.2395 +0 0.1104 +0 0.0839 +0 0.1011 +0 0.1036 +0 0.4217 +1 0.8297 +0 0.1876 +1 0.8315 +0 0.1549 +0 0.7022 +0 0.0592 +0 0.0643 +0 0.2252 +0 0.0510 +0 0.0660 +0 0.1129 +0 0.1259 +0 0.1479 +0 0.0838 +0 0.0998 +1 0.8130 +0 0.1097 +0 0.1599 +0 0.1000 +0 0.0778 +0 0.2209 +0 0.1178 +0 0.1370 +0 0.4260 +0 0.0395 +0 0.2291 +0 0.0748 +0 0.1738 +0 0.0408 +0 0.2110 +0 0.1207 +0 0.1101 +0 0.0907 +0 0.0568 +0 0.1547 +0 0.1928 +0 0.0544 +0 0.3315 +0 0.1829 +0 0.3887 +0 0.0725 +0 0.0713 +0 0.1492 +0 0.0577 +0 0.1372 +0 0.1543 +0 0.1234 +1 0.8564 +0 0.0604 +0 0.5653 +0 0.2194 +0 0.7376 +0 0.1159 +0 0.4552 +0 0.1265 +0 0.0766 +0 0.0674 +0 0.0594 +0 0.2240 +0 0.0944 +0 0.1953 +1 0.7615 +0 0.1992 +0 0.0980 +0 0.0864 +0 0.1503 +0 0.1016 +0 0.7394 +0 0.1058 +0 0.0662 +0 0.1924 +0 0.0362 +0 0.0718 +0 0.1976 +0 0.0423 +0 0.2412 +0 0.1420 +0 0.1028 +0 0.0607 +0 0.0541 +0 0.0795 +0 0.3583 +0 0.1489 +0 0.0444 +0 0.1411 +0 0.0640 +0 0.0934 +1 0.8126 +0 0.1266 +0 0.1029 +0 0.1948 +0 0.0936 +0 0.1344 +0 0.1533 +0 0.2041 +0 0.1301 +0 0.2476 +0 0.2167 +0 0.0546 +0 0.0633 +0 0.0605 +0 0.0828 +0 0.0974 +0 0.1189 +0 0.1792 +0 0.2872 +0 0.2471 +0 0.0688 +0 0.1336 +0 0.0380 +0 0.1236 +0 0.2510 +0 0.1263 +0 0.0860 +0 0.1023 +0 0.0620 +0 0.1455 +0 0.1527 +0 0.6614 +0 0.0343 +0 0.0498 +0 0.4071 +0 0.2047 +0 0.1081 +0 0.0929 +0 0.0628 +0 0.1254 +0 0.0761 +0 0.0576 +0 0.0799 +0 0.0620 +0 0.0548 +0 0.0979 +0 0.1862 +0 0.1748 +0 0.0561 +0 0.1412 +0 0.0740 +0 0.0647 +0 0.3357 +0 0.0620 +0 0.1205 +0 0.0760 +0 0.0798 +0 0.2308 +0 0.1957 +0 0.0732 +0 0.0738 +0 0.0846 +0 0.0479 +0 0.0793 +0 0.0521 +0 0.0398 +0 0.0669 +0 0.0968 +0 0.2933 +0 0.0666 +0 0.1324 +0 0.5696 +0 0.0518 +0 0.1340 +0 0.7474 +0 0.3383 +0 0.2953 +0 0.2487 +0 0.0478 +0 0.1317 +0 0.1166 +0 0.1118 +0 0.1845 +0 0.2797 +0 0.0877 +0 0.1224 +0 0.1161 +0 0.6273 +0 0.1646 +0 0.1511 +0 0.1926 +0 0.2118 +0 0.0698 +0 0.1393 +0 0.2964 +0 0.1303 +0 0.0850 +0 0.3523 +0 0.1845 +0 0.0704 +0 0.1197 +0 0.1164 +0 0.0826 +0 0.1632 +0 0.0693 +0 0.0836 +0 0.1081 +0 0.2978 +0 0.0305 +0 0.2499 +0 0.0645 +0 0.1085 +0 0.1649 +0 0.1165 +0 0.1402 +0 0.2966 +0 0.0581 +0 0.1798 +0 0.0640 +0 0.2320 +0 0.0442 +0 0.0793 +0 0.0829 +0 0.0712 +0 0.0335 +0 0.3828 +0 0.0410 +0 0.0862 +0 0.1723 +0 0.2163 +0 0.1208 +0 0.2106 +0 0.0640 +0 0.2065 +0 0.0460 +0 0.1443 +0 0.1387 +0 0.0873 +0 0.1623 +0 0.0667 +0 0.1555 +0 0.0902 +1 0.8244 +0 0.1261 +0 0.0293 +0 0.1292 +0 0.0439 +0 0.0576 +0 0.0840 +0 0.4429 +0 0.1014 +0 0.6760 +0 0.1419 +0 0.0471 +0 0.1317 +0 0.2381 +0 0.0710 +0 0.1127 +0 0.1080 +0 0.1076 +0 0.1272 +0 0.6612 +0 0.0668 +0 0.1198 +0 0.0825 +0 0.1095 +0 0.2673 +0 0.0720 +0 0.1554 +0 0.0517 +0 0.0717 +0 0.0667 +0 0.2380 +0 0.1541 +0 0.2297 +0 0.7159 +0 0.1454 +1 0.8377 +0 0.0557 +0 0.1133 +0 0.1721 +0 0.1114 +0 0.0434 +0 0.0873 +0 0.0754 +0 0.2568 +0 0.0916 +0 0.2563 +0 0.3149 +0 0.0871 +0 0.0803 +0 0.0950 +0 0.0964 +0 0.0461 +0 0.0724 +0 0.1691 +0 0.2466 +0 0.1430 +0 0.1213 +0 0.0914 +0 0.0553 +0 0.0990 +0 0.0294 +0 0.0837 +0 0.2312 +0 0.0585 +0 0.1112 +0 0.3902 +0 0.1531 +0 0.1706 +0 0.1625 +0 0.1837 +0 0.0650 +0 0.0833 +0 0.1127 +0 0.0626 +0 0.1017 +0 0.0590 +0 0.0833 +0 0.0816 +0 0.1874 +0 0.0664 +0 0.0459 +0 0.1756 +0 0.0699 +0 0.0627 +0 0.4320 +0 0.0977 +0 0.0843 +0 0.0887 +0 0.1275 +0 0.1015 +0 0.1014 +1 0.7890 +0 0.0518 +0 0.1093 +0 0.2393 +0 0.2252 +0 0.1589 +0 0.0868 +0 0.1180 +0 0.1231 +0 0.0952 +0 0.0615 +0 0.0449 +0 0.0939 +0 0.0927 +0 0.0604 +0 0.0622 +0 0.0733 +0 0.0879 +0 0.1729 +0 0.1378 +1 0.7579 +0 0.0955 +0 0.1586 +0 0.2817 +0 0.1481 +0 0.0930 +0 0.1711 +0 0.1453 +0 0.0712 +0 0.0933 +0 0.0464 +0 0.0721 +0 0.1967 +0 0.1127 +0 0.2087 +0 0.0645 +0 0.0809 +0 0.2265 +0 0.1105 +0 0.2295 +0 0.1073 +1 0.8858 +0 0.0933 +0 0.1491 +0 0.0984 +0 0.1880 +0 0.2137 +0 0.0660 +0 0.1485 +0 0.2075 +0 0.0522 +0 0.0599 +0 0.1572 +0 0.5376 +0 0.1044 +0 0.0996 +0 0.0934 +0 0.0933 +0 0.2360 +0 0.0816 +0 0.0744 +0 0.0901 +0 0.0485 +0 0.0469 +0 0.0606 +0 0.1642 +0 0.1124 +0 0.0560 +0 0.0647 +0 0.0596 +0 0.1114 +0 0.0410 +0 0.0662 +0 0.3482 +0 0.1219 +0 0.1643 +0 0.1634 +0 0.1369 +0 0.0850 +0 0.0482 +0 0.3237 +0 0.2088 +0 0.0787 +0 0.0443 +0 0.0745 +0 0.0772 +0 0.2216 +0 0.0935 +0 0.0710 +0 0.1979 +0 0.1546 +0 0.0512 +0 0.0832 +0 0.0513 +0 0.0512 +0 0.1185 +0 0.1670 +0 0.0633 +0 0.0787 +0 0.0924 +0 0.1071 +0 0.0607 +0 0.1069 +0 0.0666 +0 0.1196 +0 0.1755 +0 0.0529 +0 0.0820 +0 0.0508 +0 0.0653 +0 0.0700 +0 0.1951 +0 0.0825 +0 0.0611 +0 0.0878 +0 0.0683 +0 0.3080 +0 0.0977 +0 0.1137 +0 0.0545 +0 0.1522 +0 0.1598 +0 0.2098 +0 0.0553 +0 0.1132 +0 0.4157 +0 0.1126 +0 0.1931 +0 0.0407 +0 0.1172 +0 0.0439 +0 0.1037 +0 0.1540 +0 0.2415 +0 0.3183 +0 0.0772 +0 0.1394 +0 0.0567 +0 0.0800 +0 0.0529 +0 0.0507 +0 0.1401 +0 0.1300 +0 0.1438 +0 0.0486 +0 0.0838 +0 0.1121 +0 0.0530 +0 0.0906 +0 0.0705 +0 0.1000 +0 0.2298 +0 0.1905 +0 0.1429 +0 0.1804 +0 0.1002 +0 0.1217 +0 0.6100 +0 0.0989 +0 0.0839 +0 0.4600 +0 0.1831 +0 0.0880 +0 0.1203 +0 0.3925 +0 0.1057 +0 0.0548 +0 0.1154 +0 0.0709 +0 0.0686 +0 0.0445 +0 0.0939 +0 0.0722 +0 0.2846 +0 0.1367 +0 0.0363 +0 0.1301 +0 0.0710 +0 0.0878 +0 0.0854 +0 0.3748 +0 0.0910 +0 0.5376 +0 0.0669 +1 0.7756 +0 0.1042 +0 0.3533 +0 0.0507 +0 0.0740 +0 0.1183 +0 0.1134 +0 0.0835 +0 0.1584 +0 0.1355 +0 0.2119 +0 0.0656 +0 0.0938 +0 0.3038 +0 0.0700 +0 0.1569 +0 0.0703 +0 0.0774 +0 0.4417 +0 0.1682 +0 0.0574 +0 0.1682 +0 0.1110 +0 0.1565 +0 0.0579 +0 0.0649 +0 0.2018 +0 0.0576 +0 0.0485 +0 0.1650 +0 0.2592 +0 0.2074 +0 0.0784 +0 0.0795 +0 0.1222 +0 0.1832 +0 0.0604 +0 0.4226 +0 0.0927 +0 0.2356 +0 0.0590 +0 0.0523 +0 0.3379 +0 0.0927 +0 0.1574 +0 0.1565 +0 0.1000 +0 0.0582 +0 0.1597 +0 0.0749 +0 0.2667 +0 0.1671 +1 0.8055 +0 0.1047 +0 0.0452 +0 0.0783 +0 0.1089 +0 0.2341 +0 0.0946 +0 0.1359 +0 0.1639 +0 0.1287 +0 0.0575 +0 0.0418 +0 0.1095 +0 0.1297 +0 0.1813 +0 0.0876 +0 0.0731 +0 0.0901 +0 0.0973 +0 0.2722 +0 0.1523 +0 0.4564 +0 0.1197 +0 0.2062 +0 0.0796 +0 0.0437 +0 0.2514 +0 0.0768 +0 0.0884 +0 0.4256 +0 0.1738 +0 0.0754 +0 0.1742 +0 0.0554 +0 0.0754 +0 0.1167 +0 0.0891 +0 0.0698 +0 0.1404 +0 0.1574 +0 0.0592 +0 0.1302 +0 0.2409 +0 0.0894 +0 0.1252 +0 0.5465 +0 0.0715 +0 0.0743 +0 0.0643 +0 0.1112 +0 0.1037 +0 0.0915 +0 0.1024 +0 0.1115 +0 0.2329 +0 0.0870 +0 0.1282 +0 0.6796 +0 0.3507 +0 0.1131 +0 0.3490 +0 0.1275 +0 0.1018 +0 0.1045 +0 0.1591 +0 0.1938 +0 0.0813 +0 0.0915 +0 0.0880 +0 0.1689 +0 0.0995 +0 0.0830 +0 0.1873 +1 0.3945 +0 0.0718 +0 0.1187 +0 0.0499 +0 0.1991 +0 0.2568 +0 0.0838 +0 0.2581 +0 0.0355 +0 0.0695 +0 0.0907 +1 0.8185 +0 0.2213 +0 0.1130 +0 0.1650 +0 0.3562 +0 0.1275 +0 0.0511 +0 0.0565 +0 0.0884 +0 0.1035 +0 0.0603 +0 0.0763 +0 0.2366 +0 0.1997 +0 0.1188 +0 0.0551 +0 0.0864 +0 0.0560 +0 0.1421 +0 0.0659 +0 0.0684 +0 0.0625 +0 0.1161 +0 0.1012 +0 0.0558 +0 0.2132 +0 0.0574 +0 0.1081 +0 0.1372 +0 0.1506 +0 0.2270 +0 0.0897 +0 0.0499 +0 0.1024 +0 0.1162 +0 0.0517 +0 0.1518 +0 0.2178 +0 0.0633 +0 0.0698 +0 0.1080 +0 0.0389 +0 0.3972 +0 0.1230 +0 0.0710 +0 0.0976 +0 0.0551 +0 0.0607 +0 0.1002 +0 0.1260 +0 0.1011 +0 0.2000 +0 0.1155 +0 0.0578 +0 0.1489 +0 0.1851 +0 0.0787 +0 0.1834 +0 0.0787 +0 0.0614 +0 0.3203 +0 0.1048 +0 0.0919 +0 0.0991 +0 0.1642 +0 0.0447 +0 0.2148 +0 0.7100 +0 0.1239 +0 0.0762 +0 0.1699 +0 0.0757 +0 0.0516 +0 0.2600 +0 0.0957 +0 0.0497 +0 0.3470 +1 0.8088 +0 0.1404 +0 0.1984 +0 0.1423 +0 0.1096 +0 0.1043 +0 0.0503 +0 0.1003 +0 0.0755 +0 0.1325 +0 0.1357 +0 0.0835 +0 0.5667 +0 0.0759 +0 0.1036 +0 0.0732 +0 0.0989 +0 0.0863 +0 0.4009 +0 0.3977 +0 0.0603 +0 0.1355 +0 0.2011 +0 0.1228 +0 0.1785 +0 0.1548 +0 0.0793 +0 0.0505 +0 0.1549 +0 0.7332 +0 0.0838 +0 0.2672 +0 0.0568 +0 0.2104 +0 0.1369 +0 0.0696 +0 0.0453 +0 0.1030 +0 0.0621 +0 0.0939 +0 0.3129 +0 0.1301 +0 0.1090 +0 0.0864 +0 0.1210 +0 0.0492 +0 0.0865 +0 0.2599 +0 0.1416 +0 0.0885 +0 0.1173 +0 0.0682 +0 0.0922 +0 0.0651 +0 0.0910 +0 0.1232 +1 0.8961 +0 0.3312 +0 0.0886 +0 0.0454 +0 0.0851 +0 0.0514 +0 0.1731 +0 0.1549 +0 0.0468 +0 0.0856 +0 0.2410 +0 0.0794 +0 0.1877 +0 0.1358 +0 0.0887 +0 0.1512 +0 0.0887 +0 0.0999 +0 0.0823 +0 0.0571 +0 0.2069 +0 0.2192 +0 0.0772 +0 0.0351 +0 0.1500 +0 0.0541 +0 0.0972 +0 0.1478 +0 0.0393 +0 0.0548 +0 0.0860 +0 0.0443 +0 0.2313 +0 0.2947 +0 0.1120 +0 0.1016 +0 0.1729 +0 0.0716 +0 0.1663 +0 0.0647 +0 0.2335 +0 0.0684 +0 0.2242 +0 0.1636 +0 0.3244 +0 0.1252 +0 0.0473 +0 0.0659 +0 0.2095 +0 0.1249 +0 0.0512 +0 0.1194 +0 0.3335 +0 0.0664 +0 0.2420 +0 0.0710 +0 0.0977 +0 0.2964 +0 0.0575 +0 0.0813 +0 0.2163 +0 0.2477 +0 0.1486 +0 0.0535 +0 0.0676 +0 0.0875 +0 0.2377 +0 0.0961 +0 0.0945 +0 0.0907 +0 0.0626 +0 0.0757 +0 0.4103 +0 0.1024 +0 0.1102 +0 0.1760 +0 0.0553 +0 0.0691 +0 0.0755 +0 0.1098 +0 0.1539 +0 0.1307 +0 0.0511 +0 0.4145 +0 0.0893 +0 0.1110 +0 0.2107 +0 0.2593 +0 0.0634 +0 0.0361 +0 0.6512 +0 0.0547 +0 0.2839 +0 0.6579 +0 0.0337 +0 0.1971 +0 0.1191 +0 0.2434 +0 0.0841 +0 0.0987 +0 0.0797 +0 0.1954 +0 0.1045 +0 0.0635 +0 0.6005 +0 0.0855 +0 0.0467 +0 0.1309 +0 0.1556 +0 0.0780 +0 0.1149 +0 0.0322 +0 0.1406 +0 0.1330 +0 0.1027 +0 0.2031 +0 0.3554 +0 0.0636 +0 0.0716 +0 0.3429 +0 0.1555 +0 0.0601 +0 0.0575 +0 0.3268 +0 0.2709 +1 0.7552 +0 0.0726 +1 0.7540 +0 0.0786 +0 0.0948 +0 0.1322 +0 0.0455 +0 0.5211 +0 0.1364 +0 0.2559 +0 0.1158 +0 0.0480 +0 0.1175 +0 0.0904 +0 0.0617 +0 0.1143 +0 0.0869 +1 0.8050 +0 0.0828 +0 0.0822 +0 0.0696 +0 0.2753 +0 0.0704 +0 0.1431 +0 0.1246 +0 0.1978 +0 0.2021 +0 0.0318 +0 0.2021 +0 0.1154 +0 0.1711 +0 0.1026 +0 0.2635 +0 0.0990 +0 0.1151 +0 0.1507 +0 0.1914 +0 0.0883 +1 0.3940 +0 0.1475 +0 0.6579 +0 0.0801 +0 0.0686 +0 0.2014 +0 0.5261 +0 0.1976 +0 0.0574 +0 0.1486 +0 0.1436 +0 0.0865 +0 0.1309 +0 0.0402 +0 0.3696 +0 0.3097 +0 0.1843 +0 0.3639 +0 0.2142 +0 0.1427 +0 0.3128 +0 0.0811 +0 0.1855 +0 0.2890 +0 0.0553 +0 0.0868 +0 0.0921 +0 0.0766 +0 0.5763 +0 0.2174 +0 0.0599 +0 0.5562 +0 0.1933 +0 0.1444 +0 0.3931 +0 0.1418 +0 0.0973 +0 0.0500 +0 0.1652 +0 0.0900 +0 0.1343 +0 0.2448 +0 0.2106 +0 0.1040 +0 0.0800 +0 0.0886 +0 0.1519 +0 0.2427 +0 0.0915 +0 0.0722 +0 0.1143 +0 0.4893 +0 0.0473 +0 0.0620 +0 0.0684 +0 0.2165 +0 0.1277 +0 0.1055 +0 0.0503 +0 0.1184 +0 0.0628 +0 0.0762 +0 0.1544 +0 0.1148 +0 0.2967 +0 0.0843 +0 0.1566 +0 0.1357 +0 0.0506 +0 0.0619 +0 0.1756 +0 0.1001 +0 0.0762 +0 0.2063 +0 0.1641 +0 0.1180 +0 0.0729 +0 0.0850 +1 0.8010 +0 0.1406 +0 0.0386 +0 0.1128 +0 0.0445 +0 0.1802 +0 0.0630 +0 0.1626 +0 0.1395 +0 0.0458 +0 0.0986 +0 0.4906 +0 0.1609 +0 0.2376 +0 0.1446 +0 0.1060 +0 0.0575 +0 0.2268 +0 0.1736 +0 0.1889 +0 0.1028 +0 0.0541 +0 0.1534 +0 0.0589 +0 0.2989 +0 0.0821 +0 0.1295 +0 0.0350 +0 0.1784 +0 0.0656 +0 0.1043 +0 0.1206 +0 0.0636 +0 0.0544 +0 0.1176 +0 0.0885 +0 0.1508 +0 0.0939 +0 0.0456 +0 0.0958 +0 0.1277 +0 0.0736 +0 0.2122 +0 0.0892 +0 0.0501 +0 0.1425 +0 0.1441 +0 0.0547 +0 0.0693 +0 0.1108 +0 0.1492 +0 0.0867 +0 0.1409 +0 0.4066 +0 0.0967 +0 0.0875 +0 0.1184 +0 0.0730 +0 0.0486 +0 0.1152 +0 0.0965 +0 0.1003 +0 0.0674 +0 0.1059 +0 0.0780 +0 0.1278 +0 0.3368 +0 0.1307 +0 0.1777 +0 0.0854 +0 0.1448 +0 0.1456 +0 0.1452 +0 0.0564 +0 0.0676 +0 0.1472 +0 0.0953 +0 0.3168 +0 0.1593 +0 0.0515 +0 0.1093 +0 0.1162 +0 0.1762 +0 0.0713 +0 0.0918 +0 0.0941 +0 0.2373 +0 0.1968 +0 0.1329 +0 0.0545 +0 0.3311 +0 0.0492 +0 0.1292 +0 0.1271 +0 0.0863 +0 0.0576 +0 0.0651 +0 0.0637 +0 0.0497 +0 0.0834 +0 0.1363 +0 0.0975 +0 0.0956 +0 0.1072 +0 0.1988 +0 0.2830 +0 0.0620 +0 0.0695 +0 0.5352 +0 0.1326 +0 0.6309 +0 0.2681 +0 0.0857 +0 0.0918 +1 0.7778 +0 0.2652 +0 0.0405 +0 0.0712 +0 0.0863 +0 0.3873 +0 0.1783 +0 0.1387 +0 0.5345 +0 0.1580 +0 0.0412 +0 0.2234 +0 0.2333 +0 0.0573 +0 0.1848 +0 0.1984 +1 0.7747 +0 0.4336 +0 0.0386 +0 0.0818 +0 0.1127 +0 0.0438 +0 0.0551 +0 0.2687 +0 0.1522 +0 0.0690 +0 0.1558 +0 0.1603 +0 0.3778 +0 0.1341 +0 0.0636 +0 0.1293 +0 0.1049 +0 0.1005 +0 0.1031 +0 0.1095 +0 0.0625 +0 0.6413 +0 0.0945 +0 0.0461 +0 0.0883 +0 0.1520 +0 0.1137 +0 0.1110 +0 0.0317 +0 0.0558 +0 0.0484 +1 0.7700 +0 0.0344 +0 0.1434 +0 0.0652 +0 0.1891 +0 0.0418 +0 0.2124 +0 0.1030 +0 0.0757 +0 0.0824 +0 0.0901 +1 0.7504 +0 0.0635 +0 0.2276 +0 0.1062 +0 0.0677 +0 0.0602 +0 0.0958 +0 0.1210 +0 0.7364 +0 0.5401 +0 0.1720 +0 0.1219 +0 0.1554 +0 0.1186 +0 0.1361 +0 0.0719 +0 0.1767 +0 0.1601 +0 0.0650 +0 0.3032 +0 0.0588 +0 0.1122 +0 0.5325 +0 0.1152 +0 0.1178 +0 0.2823 +1 0.8458 +0 0.1240 +0 0.0722 +0 0.0450 +0 0.1092 +0 0.0578 +0 0.0831 +0 0.2198 +0 0.2810 +0 0.0559 +0 0.1937 +0 0.1737 +0 0.1097 +0 0.1770 +0 0.1056 +0 0.0837 +0 0.0625 +0 0.0769 +0 0.0756 +0 0.0548 +0 0.0373 +0 0.1593 +0 0.1020 +0 0.0687 +0 0.0606 +0 0.1804 +0 0.0492 +0 0.0750 +0 0.0671 +0 0.3837 +0 0.0528 +0 0.1083 +0 0.0998 +0 0.1084 +0 0.6086 +0 0.0723 +0 0.3364 +0 0.1108 +0 0.2357 +0 0.1760 +0 0.1010 +0 0.1261 +0 0.1142 +0 0.6755 +0 0.0486 +0 0.1491 +0 0.1328 +0 0.0709 +0 0.0451 +0 0.0937 +0 0.0984 +0 0.2453 +0 0.1368 +0 0.7353 +0 0.0617 +0 0.1317 +0 0.1120 +0 0.1175 +0 0.0355 +0 0.0737 +0 0.1372 +0 0.1747 +0 0.1366 +0 0.0370 +0 0.1052 +0 0.1379 +0 0.0987 +0 0.1592 +1 0.8509 +0 0.1130 +0 0.1700 +0 0.0809 +0 0.2204 +0 0.0577 +0 0.2529 +0 0.0807 +0 0.1503 +0 0.1323 +0 0.2282 +0 0.0588 +0 0.4677 +0 0.1064 +0 0.0889 +0 0.0792 +0 0.0534 +0 0.0923 +0 0.0578 +0 0.1138 +1 0.7522 +0 0.1971 +0 0.0686 +0 0.1608 +0 0.4169 +0 0.1539 +0 0.0945 +0 0.1682 +0 0.1279 +0 0.1016 +0 0.0978 +0 0.3201 +0 0.0613 +0 0.0475 +0 0.4649 +0 0.1486 +0 0.1952 +0 0.6869 +0 0.2549 +0 0.0904 +0 0.1563 +0 0.0883 +0 0.2151 +0 0.2291 +0 0.0530 +0 0.0915 +0 0.0974 +0 0.1559 +0 0.1454 +0 0.1996 +0 0.0998 +0 0.1011 +0 0.1068 +0 0.0787 +0 0.3133 +0 0.0537 +0 0.1988 +0 0.0620 +0 0.1037 +0 0.2145 +0 0.0533 +0 0.0581 +0 0.2053 +0 0.1179 +0 0.1170 +0 0.0800 +0 0.1435 +0 0.3138 +0 0.0782 +0 0.0977 +0 0.1186 +0 0.1959 +0 0.1547 +0 0.0697 +0 0.0956 +0 0.0673 +0 0.1316 +0 0.3130 +0 0.2699 +0 0.1257 +0 0.1548 +0 0.3003 +0 0.1146 +0 0.0851 +0 0.2242 +0 0.3300 +0 0.1633 +0 0.1193 +0 0.1823 +0 0.2564 +0 0.1128 +0 0.0594 +0 0.0744 +0 0.1401 +1 0.8630 +0 0.0964 +0 0.1753 +0 0.0713 +0 0.1614 +0 0.1304 +0 0.3019 +0 0.0900 +0 0.1594 +0 0.1048 +0 0.0826 +0 0.1991 +0 0.0796 +0 0.1182 +0 0.3849 +0 0.0425 +0 0.0946 +0 0.0967 +0 0.4693 +0 0.1456 +0 0.1701 +0 0.2335 +0 0.1158 +0 0.5706 +0 0.1633 +0 0.2739 +0 0.2641 +0 0.1016 +0 0.0945 +0 0.0744 +0 0.1138 +0 0.0877 +0 0.1000 +0 0.0860 +0 0.0738 +0 0.1373 +0 0.1360 +0 0.1050 +0 0.0479 +0 0.0648 +0 0.1084 +0 0.0840 +0 0.1885 +0 0.2765 +0 0.2195 +0 0.1457 +0 0.2874 +0 0.1167 +0 0.1098 +0 0.0554 +0 0.2148 +0 0.1872 +0 0.1353 +0 0.0575 +0 0.1591 +0 0.1255 +0 0.0400 +0 0.2164 +0 0.1141 +0 0.1311 +0 0.6922 +0 0.3702 +0 0.3130 +0 0.1733 +0 0.0797 +0 0.1061 +0 0.2651 +0 0.1290 +0 0.1041 +0 0.0859 +0 0.2381 +0 0.1287 +0 0.1175 +1 0.8375 +0 0.0383 +0 0.0789 +0 0.1715 +0 0.1267 +0 0.2652 +0 0.1578 +0 0.0503 +0 0.0798 +0 0.0691 +0 0.0891 +0 0.0875 +0 0.0401 +0 0.0607 +0 0.1166 +0 0.1132 +0 0.1113 +1 0.7502 +0 0.0967 +0 0.0892 +0 0.2940 +0 0.1340 +0 0.2489 +0 0.1673 +0 0.1179 +0 0.0914 +0 0.0615 +0 0.2657 +0 0.1086 +0 0.4632 +0 0.2190 +0 0.2296 +0 0.1799 +0 0.1398 +0 0.1470 +0 0.1396 +0 0.1253 +0 0.0424 +0 0.1144 +0 0.1948 +0 0.0754 +0 0.0481 +0 0.1686 +0 0.1297 +0 0.0955 +0 0.2314 +0 0.0888 +0 0.1335 +0 0.1736 +0 0.0935 +0 0.1649 +0 0.2968 +0 0.0904 +0 0.1000 +0 0.1754 +0 0.0610 +0 0.6372 +0 0.0621 +0 0.1573 +0 0.1153 +0 0.3052 +0 0.0394 +0 0.1067 +0 0.0520 +0 0.1258 +0 0.0713 +0 0.0850 +0 0.0962 +0 0.2190 +0 0.0845 +0 0.0318 +0 0.4278 +0 0.0798 +0 0.1222 +1 0.8451 +1 0.7505 +0 0.0910 +0 0.0843 +0 0.2032 +0 0.1183 +0 0.1541 +0 0.1445 +0 0.0839 +0 0.1199 +0 0.1811 +0 0.4561 +0 0.0708 +0 0.0725 +0 0.1190 +0 0.0416 +0 0.1768 +0 0.1568 +0 0.2167 +0 0.0785 +0 0.0605 +0 0.1210 +0 0.3481 +0 0.1077 +1 0.7714 +0 0.7051 +0 0.1536 +0 0.0372 +0 0.1603 +0 0.0605 +0 0.0964 +0 0.0585 +1 0.7763 +0 0.0613 +0 0.1072 +0 0.1034 +0 0.1016 +0 0.1611 +0 0.3515 +0 0.1251 +0 0.0357 +0 0.0773 +0 0.1412 +0 0.1241 +0 0.0557 +0 0.1687 +0 0.0885 +0 0.1402 +0 0.0576 +0 0.1993 +1 0.8260 +0 0.1788 +0 0.1410 +0 0.1479 +0 0.0697 +0 0.1027 +0 0.0697 +0 0.0461 +0 0.0728 +0 0.2974 +0 0.2480 +0 0.1776 +0 0.1199 +0 0.4963 +0 0.0394 +0 0.1142 +0 0.0394 +0 0.0546 +0 0.1448 +0 0.0724 +0 0.2121 +0 0.0461 +0 0.0693 +0 0.2094 +0 0.2952 +0 0.1102 +0 0.0890 +0 0.2675 +0 0.0431 +0 0.1599 +0 0.0859 +0 0.1644 +0 0.0962 +0 0.0483 +0 0.0630 +0 0.1195 +0 0.6759 +0 0.1511 +0 0.0562 +0 0.0489 +0 0.0708 +0 0.2077 +0 0.1881 +0 0.0982 +0 0.0936 +0 0.1506 +0 0.0922 +0 0.0422 +0 0.0702 +0 0.1245 +0 0.0876 +0 0.1185 +0 0.1166 +0 0.0794 +0 0.3092 +0 0.1463 +0 0.2476 +0 0.0719 +0 0.3306 +0 0.1229 +0 0.1852 +0 0.2532 +0 0.2661 +0 0.1722 +0 0.4110 +0 0.0690 +0 0.0617 +0 0.0591 +0 0.5882 +0 0.1576 +0 0.2032 +0 0.0714 +0 0.1426 +0 0.2208 +0 0.0570 +0 0.1208 +0 0.1081 +0 0.0704 +0 0.0677 +0 0.0323 +0 0.0871 +0 0.0737 +0 0.0941 +0 0.0986 +0 0.2019 +0 0.0492 +0 0.2486 +0 0.3152 +0 0.1056 +0 0.1753 +0 0.1362 +0 0.1184 +0 0.0620 +0 0.0536 +0 0.0856 +0 0.0625 +0 0.0783 +0 0.0781 +0 0.4186 +0 0.0747 +0 0.2329 +0 0.2445 +0 0.0484 +0 0.1524 +0 0.1066 +0 0.1695 +0 0.1029 +0 0.0786 +0 0.3612 +0 0.0369 +0 0.1794 +0 0.0871 +0 0.2058 +1 0.8571 +0 0.1589 +0 0.2268 +0 0.4180 +0 0.0935 +0 0.0750 +0 0.3697 +0 0.5614 +0 0.1566 +0 0.1073 +0 0.0833 +0 0.0426 +0 0.2917 +0 0.0601 +0 0.4004 +0 0.1512 +0 0.0842 +0 0.0629 +0 0.1763 +1 0.7535 +0 0.1174 +0 0.1558 +0 0.0987 +0 0.4299 +0 0.1072 +0 0.1944 +0 0.0721 +0 0.0506 +0 0.1553 +0 0.0392 +0 0.1654 +0 0.2587 +0 0.2587 +0 0.2306 +0 0.1121 +0 0.0562 +0 0.0301 +0 0.0474 +0 0.1984 +0 0.1323 +0 0.2419 +0 0.0604 +0 0.0345 +0 0.0861 +0 0.1252 +0 0.0905 +0 0.0965 +0 0.0495 +0 0.1502 +0 0.0652 +0 0.1088 +0 0.3767 +0 0.1051 +0 0.2330 +0 0.0710 +0 0.0748 +0 0.1602 +0 0.1207 +0 0.0459 +0 0.0712 +0 0.0568 +0 0.1247 +0 0.1317 +0 0.0589 +0 0.2365 +0 0.0769 +0 0.1917 +0 0.0726 +0 0.2522 +0 0.0716 +0 0.2280 +0 0.0638 +0 0.0998 +0 0.0757 +0 0.2159 +0 0.0634 +0 0.1662 +0 0.0376 +0 0.4195 +0 0.0596 +1 0.8613 +0 0.0422 +0 0.7078 +0 0.0591 +0 0.1771 +0 0.1176 +0 0.1429 +0 0.1971 +0 0.0772 +0 0.1371 +0 0.2171 +0 0.2689 +0 0.0420 +0 0.1029 +0 0.0731 +0 0.1711 +0 0.1132 +0 0.0677 +0 0.0568 +0 0.1545 +0 0.0959 +0 0.0718 +0 0.1323 +0 0.1089 +1 0.8311 +0 0.1653 +0 0.1370 +0 0.0939 +0 0.1557 +0 0.0663 +0 0.1401 +0 0.0366 +0 0.1259 +0 0.1564 +0 0.1272 +0 0.0537 +0 0.1919 +0 0.0771 +0 0.0356 +0 0.2906 +0 0.0793 +0 0.1503 +0 0.2834 +0 0.0890 +0 0.0733 +0 0.1561 +0 0.1143 +0 0.3675 +0 0.0525 +0 0.1378 +0 0.0799 +0 0.1087 +0 0.0892 +0 0.0514 +0 0.0831 +0 0.0657 +0 0.0768 +0 0.1489 +0 0.0545 +0 0.1225 +0 0.0491 +0 0.2154 +0 0.1586 +0 0.0915 +0 0.3426 +0 0.2994 +0 0.0476 +0 0.7387 +0 0.2162 +0 0.0397 +0 0.0678 +0 0.0821 +0 0.0513 +0 0.2207 +0 0.1794 +0 0.1593 +0 0.0965 +0 0.0602 +0 0.1765 +0 0.1290 +0 0.0883 +0 0.1293 +0 0.0391 +0 0.0780 +0 0.0721 +0 0.0898 +0 0.0760 +0 0.0803 +0 0.7094 +0 0.1144 +0 0.0385 +0 0.0818 +0 0.0637 +0 0.1589 +0 0.0727 +0 0.5393 +0 0.0807 +0 0.0439 +0 0.0931 +0 0.1242 +0 0.1450 +0 0.0668 +0 0.0380 +0 0.1190 +0 0.1099 +0 0.0853 +0 0.1529 +0 0.0562 +0 0.5171 +0 0.1287 +0 0.4234 +0 0.0679 +0 0.0885 +0 0.1969 +0 0.1817 +0 0.0378 +0 0.0501 +0 0.1349 +0 0.1730 +0 0.2991 +0 0.1548 +0 0.0897 +0 0.0592 +0 0.0508 +0 0.2414 +0 0.3497 +0 0.0395 +0 0.3474 +0 0.1525 +0 0.0900 +0 0.0738 +0 0.1098 +0 0.1944 +0 0.0520 +0 0.0802 +0 0.0468 +0 0.0781 +0 0.0435 +0 0.0853 +0 0.0805 +0 0.1247 +0 0.1095 +0 0.0807 +0 0.1515 +0 0.0753 +0 0.1062 +0 0.1879 +0 0.2327 +0 0.3166 +0 0.0841 +0 0.2916 +0 0.1757 +0 0.0770 +0 0.0808 +0 0.1931 +0 0.0461 +0 0.0544 +0 0.1546 +1 0.8844 +0 0.1040 +0 0.1445 +0 0.1103 +0 0.2624 +0 0.2803 +0 0.0859 +0 0.0743 +0 0.1008 +0 0.1618 +0 0.4793 +0 0.0604 +0 0.2522 +0 0.0749 +0 0.0306 +0 0.1105 +0 0.2485 +0 0.0909 +0 0.0827 +0 0.0741 +0 0.0828 +0 0.0714 +0 0.0582 +0 0.0548 +0 0.2409 +0 0.0741 +0 0.2958 +0 0.0758 +0 0.0634 +0 0.0685 +0 0.0429 +0 0.3235 +0 0.0839 +0 0.0323 +0 0.2601 +0 0.3214 +0 0.1496 +0 0.0994 +0 0.1054 +0 0.0801 +0 0.1014 +0 0.0850 +0 0.6325 +0 0.0702 +0 0.5615 +0 0.3729 +0 0.0449 +0 0.0731 +0 0.1450 +0 0.0657 +0 0.0577 +0 0.0502 +0 0.3455 +0 0.0662 +0 0.0835 +0 0.0986 +0 0.1512 +0 0.0841 +0 0.1367 +0 0.0569 +0 0.0455 +0 0.1650 +0 0.1287 +0 0.1034 +0 0.0836 +0 0.0757 +0 0.0671 +0 0.0815 +0 0.1375 +0 0.1318 +0 0.0775 +0 0.0677 +0 0.0446 +0 0.4148 +0 0.0789 +0 0.0862 +0 0.5968 +0 0.1875 +0 0.2642 +0 0.1291 +0 0.1454 +0 0.0919 +0 0.1003 +0 0.0637 +0 0.0655 +0 0.2095 +0 0.0607 +0 0.0873 +0 0.0656 +0 0.7125 +0 0.0771 +0 0.0672 +0 0.6030 +0 0.1791 +0 0.1038 +0 0.0491 +0 0.0776 +0 0.1127 +0 0.3263 +0 0.0978 +0 0.1694 +0 0.6301 +0 0.1453 +0 0.0855 +0 0.1176 +0 0.0587 +0 0.1147 +0 0.7292 +0 0.1968 +0 0.1496 +0 0.0449 +0 0.0955 +0 0.1171 +0 0.6380 +0 0.0464 +0 0.1156 +0 0.0288 +0 0.0613 +0 0.2687 +0 0.0763 +0 0.0708 +0 0.3653 +0 0.0412 +0 0.0580 +0 0.6184 +0 0.1541 +0 0.1311 +0 0.0539 +0 0.0716 +0 0.2040 +1 0.8691 +0 0.1683 +0 0.5857 +0 0.1963 +0 0.1161 +0 0.1786 +0 0.2699 +0 0.0958 +0 0.1253 +0 0.1013 +0 0.1677 +0 0.0619 +0 0.4378 +0 0.1541 +0 0.0959 +0 0.0456 +0 0.1142 +0 0.0883 +0 0.0747 +0 0.1293 +0 0.0946 +0 0.0896 +0 0.1801 +0 0.0719 +0 0.0964 +0 0.0750 +0 0.5950 +0 0.3313 +0 0.0893 +0 0.0641 +0 0.1940 +0 0.1020 +0 0.0859 +0 0.0614 +0 0.0616 +0 0.1041 +0 0.0638 +0 0.0905 +0 0.0658 +0 0.1468 +0 0.1741 +0 0.0966 +0 0.0766 +0 0.3918 +0 0.0546 +0 0.0623 +0 0.5262 +0 0.7349 +0 0.4061 +0 0.5949 +0 0.1642 +0 0.0920 +0 0.0997 +0 0.4003 +0 0.0444 +0 0.0411 +0 0.2496 +0 0.7163 +0 0.0955 +0 0.0997 +0 0.0643 +0 0.3645 +0 0.2417 +0 0.2533 +0 0.1248 +0 0.1044 +0 0.0681 +0 0.0951 +0 0.0706 +0 0.1596 +0 0.1484 +0 0.1054 +0 0.0878 +0 0.6926 +0 0.1242 +0 0.0614 +0 0.0668 +0 0.1228 +0 0.1079 +0 0.2502 +0 0.0348 +0 0.1377 +0 0.1323 +0 0.1545 +0 0.1813 +0 0.1545 +0 0.0716 +0 0.1064 +0 0.0904 +0 0.1274 +0 0.1180 +0 0.1712 +0 0.1008 +0 0.2833 +0 0.1239 +0 0.0558 +0 0.1674 +0 0.1612 +0 0.1595 +0 0.2107 +0 0.0792 +0 0.2289 +0 0.0508 +0 0.0500 +0 0.1791 +0 0.1870 +0 0.1561 +0 0.1035 +0 0.0323 +0 0.5667 +0 0.0661 +0 0.0371 +0 0.0617 +0 0.0966 +0 0.0526 +0 0.0441 +0 0.1415 +0 0.0643 +0 0.0730 +0 0.2609 +0 0.0927 +0 0.0522 +0 0.1287 +0 0.1243 +0 0.1431 +0 0.1118 +0 0.0980 +0 0.0587 +0 0.1423 +0 0.0856 +0 0.1020 +0 0.0339 +0 0.5657 +0 0.0906 +0 0.1469 +0 0.0701 +0 0.0579 +0 0.0744 +0 0.0722 +1 0.8339 +0 0.0685 +0 0.0607 +0 0.0875 +0 0.1227 +0 0.0663 +0 0.0988 +0 0.1146 +0 0.0572 +0 0.0766 +0 0.0893 +0 0.1049 +0 0.3211 +0 0.0521 +0 0.2071 +0 0.3195 +0 0.0643 +0 0.1175 +0 0.1214 +0 0.0475 +0 0.0393 +0 0.0754 +0 0.1516 +0 0.0852 +0 0.1146 +0 0.0688 +0 0.0358 +0 0.0618 +0 0.2315 +0 0.1678 +0 0.0584 +0 0.1091 +0 0.2564 +0 0.1464 +0 0.0572 +0 0.0626 +0 0.0857 +0 0.0723 +0 0.1037 +0 0.1312 +0 0.1069 +0 0.0521 +0 0.0751 +0 0.1711 +0 0.0718 +0 0.0972 +0 0.1618 +0 0.1389 +0 0.0464 +0 0.3857 +0 0.1048 +1 0.8479 +0 0.0977 +0 0.1072 +0 0.4642 +0 0.0937 +0 0.0543 +0 0.0986 +0 0.1352 +0 0.0365 +0 0.0396 +0 0.0602 +0 0.2040 +0 0.0723 +0 0.2102 +0 0.0410 +0 0.0888 +0 0.0750 +0 0.0617 +0 0.0648 +0 0.2442 +0 0.1496 +0 0.0982 +0 0.0728 +1 0.8136 +0 0.0544 +0 0.1412 +0 0.0827 +0 0.0790 +0 0.1817 +0 0.0520 +0 0.1073 +1 0.8069 +0 0.5338 +0 0.2550 +0 0.0812 +0 0.1007 +0 0.0704 +0 0.0500 +0 0.3614 +0 0.1599 +0 0.1965 +0 0.1113 +0 0.0940 +0 0.2032 +0 0.1176 +0 0.0766 +0 0.2151 +0 0.0839 +0 0.0471 +0 0.0957 +0 0.1239 +0 0.0988 +0 0.2695 +0 0.0338 +0 0.2557 +0 0.0933 +0 0.0758 +0 0.0549 +0 0.0504 +0 0.0540 +0 0.2071 +0 0.1778 +0 0.1449 +0 0.0790 +0 0.0763 +0 0.0699 +0 0.1367 +0 0.0861 +0 0.0853 +0 0.0440 +0 0.0810 +0 0.2988 +0 0.0411 +0 0.0980 +0 0.1692 +0 0.1201 +0 0.1496 +0 0.1219 +0 0.0633 +0 0.1727 +0 0.2291 +0 0.2684 +0 0.0730 +0 0.0657 +0 0.0532 +0 0.1710 +0 0.1631 +0 0.1303 +0 0.1328 +0 0.0687 +0 0.1057 +0 0.1223 +0 0.1222 +0 0.1225 +0 0.1305 +0 0.0541 +0 0.1459 +0 0.0597 +0 0.0700 +0 0.0776 +0 0.0673 +0 0.0381 +0 0.2653 +0 0.1027 +0 0.1172 +0 0.1070 +0 0.1915 +0 0.0541 +0 0.1028 +0 0.0814 +0 0.2439 +0 0.1495 +0 0.0408 +0 0.0507 +0 0.0363 +0 0.1062 +0 0.4646 +0 0.2652 +0 0.2010 +0 0.0745 +0 0.0567 +0 0.1166 +0 0.0730 +0 0.0776 +0 0.0757 +0 0.1204 +0 0.0635 +1 0.7724 +0 0.4707 +0 0.1576 +0 0.1147 +0 0.2123 +0 0.0952 +0 0.0489 +0 0.1326 +0 0.0786 +0 0.0679 +0 0.1947 +0 0.1394 +0 0.0849 +0 0.1105 +0 0.0554 +0 0.2802 +0 0.1651 +0 0.5090 +0 0.1789 +0 0.2774 +0 0.0930 +0 0.1116 +0 0.1240 +0 0.0823 +0 0.0930 +0 0.0909 +0 0.2505 +1 0.8528 +0 0.3203 +0 0.1483 +0 0.2122 +0 0.1087 +0 0.1169 +0 0.1837 +0 0.0926 +0 0.6689 +0 0.2333 +0 0.0781 +0 0.5218 +0 0.0570 +0 0.1659 +0 0.0663 +0 0.1597 +0 0.1770 +0 0.0693 +0 0.0622 +0 0.0409 +0 0.1714 +0 0.0638 +0 0.0685 +0 0.0652 +0 0.1740 +0 0.0800 +0 0.2455 +0 0.0944 +0 0.1267 +0 0.0808 +0 0.1189 +0 0.0567 +0 0.0588 +0 0.3284 +0 0.0634 +0 0.0901 +0 0.0897 +0 0.1630 +0 0.1468 +0 0.0671 +0 0.2519 +0 0.0863 +0 0.1575 +0 0.1898 +0 0.1324 +0 0.1038 +0 0.0422 +0 0.0411 +0 0.2525 +0 0.3616 +0 0.1660 +0 0.0777 +0 0.1389 +0 0.1011 +0 0.1584 +0 0.0338 +0 0.1489 +0 0.0690 +0 0.2857 +0 0.0606 +0 0.0828 +0 0.0547 +0 0.0645 +0 0.0861 +0 0.0450 +0 0.0698 +0 0.0584 +0 0.2009 +0 0.1604 +0 0.0756 +0 0.0909 +0 0.2538 +0 0.1850 +0 0.2066 +0 0.1042 +0 0.0587 +0 0.1020 +0 0.1118 +0 0.0693 +0 0.2605 +0 0.1797 +0 0.0639 +0 0.1325 +0 0.2468 +0 0.0875 +0 0.2756 +0 0.0680 +0 0.0720 +0 0.1953 +0 0.0866 +0 0.1097 +0 0.1444 +0 0.0433 +0 0.1221 +0 0.0568 +0 0.1561 +0 0.1361 +0 0.1873 +0 0.2346 +0 0.1691 +0 0.2125 +0 0.1311 +0 0.4775 +0 0.0655 +0 0.1796 +0 0.2111 +0 0.1095 +0 0.0400 +0 0.3064 +0 0.0686 +0 0.1036 +0 0.1099 +0 0.0956 +0 0.1888 +0 0.0488 +0 0.1090 +0 0.1493 +0 0.0545 +0 0.2600 +0 0.1601 +0 0.2448 +0 0.1356 +0 0.0552 +0 0.1723 +0 0.3770 +0 0.0665 +0 0.1251 +0 0.1176 +0 0.1533 +0 0.0927 +0 0.0724 +0 0.6027 +0 0.2127 +0 0.5729 +0 0.2618 +0 0.3803 +0 0.1589 +0 0.0927 +0 0.1820 +0 0.0987 +0 0.0993 +0 0.1369 +0 0.0844 +0 0.0982 +0 0.1354 +0 0.0491 +0 0.0371 +0 0.1176 +0 0.1035 +0 0.0478 +0 0.2396 +0 0.0568 +0 0.0463 +0 0.0478 +0 0.0717 +0 0.5941 +0 0.0997 +0 0.0489 +0 0.0810 +0 0.3062 +0 0.1449 +0 0.0782 +0 0.1857 +0 0.1037 +0 0.1886 +0 0.2074 +0 0.1523 +0 0.0708 +0 0.2308 +0 0.6048 +0 0.1200 +0 0.0895 +0 0.0558 +0 0.1582 +0 0.6918 +0 0.2800 +0 0.1886 +0 0.1262 +0 0.0636 +0 0.1504 +0 0.0572 +1 0.7850 +0 0.1224 +0 0.6081 +0 0.0748 +0 0.2526 +0 0.0811 +0 0.2468 +0 0.5584 +0 0.5136 +0 0.1647 +0 0.0839 +0 0.2758 +0 0.0614 +0 0.1321 +0 0.0868 +0 0.3981 +0 0.3170 +0 0.1575 +0 0.0960 +0 0.0656 +0 0.0715 +0 0.1342 +0 0.1121 +0 0.3167 +0 0.1576 +0 0.0449 +0 0.0475 +0 0.2160 +0 0.1335 +0 0.4203 +0 0.7012 +0 0.0609 +0 0.0800 +0 0.1013 +0 0.0377 +0 0.1060 +0 0.1406 +0 0.1710 +0 0.1030 +0 0.0705 +0 0.1147 +0 0.0476 +0 0.1960 +0 0.1133 +0 0.1540 +0 0.1258 +0 0.3721 +0 0.3728 +0 0.1485 +0 0.4927 +0 0.1474 +0 0.1561 +0 0.0780 +0 0.6725 +0 0.3819 +0 0.1434 +0 0.0866 +0 0.0611 +0 0.0503 +0 0.0809 +0 0.0515 +0 0.2510 +0 0.0950 +0 0.1822 +0 0.1447 +0 0.3831 +0 0.0639 +0 0.1311 +0 0.0596 +0 0.1035 +0 0.0830 +0 0.0836 +0 0.1470 +0 0.2880 +0 0.0685 +0 0.1284 +0 0.0440 +0 0.1242 +0 0.1182 +0 0.2812 +0 0.0518 +0 0.0907 +0 0.1928 +0 0.0709 +0 0.1359 +0 0.0899 +0 0.1336 +0 0.0530 +0 0.1634 +0 0.0478 +0 0.0975 +0 0.4181 +0 0.0662 +0 0.1195 +0 0.1035 +0 0.0978 +0 0.3958 +1 0.8356 +0 0.1721 +0 0.1048 +0 0.0603 +0 0.1038 +0 0.0968 +0 0.1000 +0 0.0879 +0 0.0759 +0 0.2164 +0 0.2910 +0 0.0829 +0 0.1129 +0 0.0579 +0 0.0669 +0 0.0503 +0 0.0824 +0 0.0786 +1 0.8218 +0 0.2294 +0 0.3104 +0 0.1391 +0 0.1951 +0 0.1186 +0 0.1247 +0 0.2896 +0 0.1043 +1 0.8361 +0 0.1135 +0 0.0672 +0 0.0490 +0 0.0816 +0 0.0907 +0 0.3250 +0 0.1132 +0 0.2142 +0 0.1108 +0 0.0639 +0 0.2041 +0 0.1099 +0 0.0482 +0 0.0496 +0 0.3706 +0 0.0608 +0 0.0842 +0 0.2155 +0 0.1280 +0 0.7125 +0 0.1231 +0 0.0503 +0 0.0304 +0 0.0851 +0 0.1273 +0 0.0753 +0 0.0746 +0 0.1865 +0 0.0854 +0 0.0533 +0 0.0971 +0 0.1788 +0 0.0456 +0 0.6478 +0 0.1048 +0 0.1047 +0 0.1067 +0 0.1124 +0 0.0699 +0 0.1555 +0 0.1615 +0 0.0716 +0 0.0658 +0 0.1165 +0 0.2062 +0 0.0754 +0 0.2881 +0 0.2086 +0 0.1416 +0 0.1976 +0 0.0766 +0 0.0486 +0 0.1745 +0 0.1122 +0 0.2898 +0 0.0538 +0 0.0940 +0 0.1102 +0 0.0637 +0 0.1514 +0 0.2604 +0 0.0531 +0 0.1361 +0 0.0492 +0 0.0627 +0 0.1035 +0 0.3318 +0 0.0423 +0 0.0564 +0 0.1079 +0 0.1377 +0 0.0760 +0 0.2500 +0 0.0457 +0 0.1060 +0 0.2937 +0 0.0705 +0 0.1204 +0 0.1426 +0 0.1707 +0 0.0578 +0 0.0712 +0 0.1361 +0 0.0759 +0 0.1340 +0 0.0449 +0 0.1386 +0 0.0884 +0 0.0675 +0 0.3320 +0 0.1348 +0 0.0802 +0 0.0502 +0 0.1401 +0 0.1402 +0 0.3174 +0 0.0758 +0 0.2556 +0 0.0490 +0 0.0576 +0 0.6714 +0 0.5654 +0 0.0657 +0 0.0442 +0 0.0557 +0 0.1198 +0 0.0545 +0 0.0761 +0 0.0796 +0 0.0635 +1 0.7929 +0 0.1038 +0 0.3959 +0 0.1154 +0 0.2507 +0 0.0915 +0 0.1405 +0 0.1544 +0 0.0983 +0 0.1872 +0 0.1012 +0 0.2204 +0 0.0990 +0 0.1193 +0 0.7363 +1 0.7976 +0 0.0449 +0 0.0868 +0 0.2291 +0 0.1729 +0 0.0921 +0 0.1339 +0 0.0418 +0 0.0887 +0 0.0421 +0 0.1700 +0 0.0891 +0 0.1253 +0 0.0616 +0 0.0699 +1 0.8268 +0 0.0791 +0 0.1442 +0 0.1137 +0 0.7462 +0 0.1473 +0 0.0785 +0 0.6527 +0 0.2287 +0 0.2175 +0 0.1170 +0 0.0628 +0 0.0682 +0 0.2297 +0 0.1926 +0 0.1525 +0 0.1547 +0 0.2298 +0 0.0483 +0 0.0989 +0 0.2308 +0 0.0633 +0 0.1952 +0 0.0702 +0 0.1192 +0 0.1733 +0 0.1138 +0 0.1036 +0 0.0709 +0 0.0680 +0 0.1131 +0 0.0912 +0 0.0678 +0 0.6574 +0 0.0628 +0 0.0819 +0 0.0446 +0 0.1123 +0 0.1774 +0 0.3991 +0 0.1035 +0 0.0918 +0 0.1343 +0 0.5118 +0 0.1263 +1 0.8306 +0 0.1371 +0 0.1040 +0 0.2161 +0 0.2495 +0 0.1009 +0 0.0623 +0 0.0864 +0 0.1092 +0 0.0459 +0 0.0838 +0 0.0685 +0 0.0739 +0 0.1217 +0 0.0696 +0 0.0566 +0 0.0920 +0 0.1772 +0 0.5879 +0 0.2279 +0 0.1303 +0 0.1018 +0 0.0410 +0 0.0450 +0 0.0852 +0 0.2593 +0 0.0582 +0 0.3822 +0 0.0809 +0 0.1158 +0 0.0698 +0 0.0909 +0 0.1246 +0 0.0821 +0 0.0716 +0 0.0496 +0 0.0819 +0 0.1078 +0 0.0974 +0 0.0528 +0 0.1278 +0 0.3567 +0 0.1658 +0 0.0803 +0 0.3022 +0 0.1954 +0 0.0656 +0 0.0678 +0 0.1342 +0 0.1771 +0 0.0954 +0 0.5335 +0 0.0727 +0 0.0890 +0 0.2010 +0 0.4071 +0 0.4476 +0 0.1360 +0 0.1173 +0 0.1021 +1 0.7773 +0 0.5494 +0 0.1531 +0 0.6811 +0 0.2686 +0 0.2485 +0 0.0409 +0 0.3476 +0 0.1873 +0 0.1854 +0 0.0455 +0 0.0661 +0 0.1175 +0 0.1104 +0 0.0411 +0 0.0423 +0 0.1295 +0 0.0516 +0 0.0574 +0 0.1314 +0 0.1325 +0 0.0453 +0 0.0667 +0 0.2042 +0 0.0789 +0 0.0656 +0 0.1127 +0 0.0378 +0 0.0742 +0 0.2111 +0 0.2666 +0 0.2655 +0 0.0862 +0 0.0508 +0 0.1118 +0 0.1799 +0 0.0621 +0 0.2492 +0 0.0932 +0 0.0746 +0 0.0784 +0 0.1587 +0 0.1109 +0 0.3065 +0 0.1804 +0 0.2201 +0 0.1472 +0 0.0960 +0 0.2346 +1 0.8458 +0 0.0642 +0 0.0764 +0 0.0883 +0 0.1222 +0 0.4043 +0 0.1264 +0 0.1601 +0 0.0377 +0 0.0353 +0 0.0849 +0 0.0579 +0 0.2589 +0 0.1009 +0 0.0810 +0 0.1678 +0 0.1824 +0 0.0486 +0 0.5964 +0 0.0585 +0 0.0993 +0 0.2627 +0 0.0454 +0 0.1989 +0 0.0745 +0 0.1137 +0 0.1904 +0 0.1445 +1 0.7727 +0 0.0787 +0 0.1872 +0 0.1245 +0 0.5123 +0 0.1269 +0 0.1477 +0 0.0970 +1 0.8870 +0 0.0569 +0 0.7485 +0 0.2048 +0 0.0852 +0 0.1756 +0 0.2730 +0 0.1498 +0 0.0839 +0 0.0688 +0 0.0698 +0 0.0544 +0 0.0385 +1 0.8244 +1 0.8190 +0 0.0376 +0 0.1145 +0 0.7379 +0 0.1286 +0 0.0754 +0 0.0817 +0 0.0769 +0 0.2792 +0 0.1359 +0 0.0647 +0 0.1084 +0 0.1228 +0 0.1289 +0 0.0789 +0 0.0438 +0 0.3072 +0 0.1254 +0 0.1409 +0 0.0746 +0 0.1550 +0 0.0398 +0 0.0761 +0 0.1057 +0 0.0730 +0 0.3310 +0 0.5690 +0 0.0817 +0 0.1320 +0 0.0812 +0 0.1853 +0 0.2579 +0 0.1026 +0 0.0816 +0 0.0519 +0 0.0913 +0 0.0547 +0 0.2342 +0 0.1041 +0 0.1332 +0 0.2436 +0 0.1488 +0 0.0422 +0 0.4381 +0 0.0492 +0 0.1132 +0 0.0614 +0 0.0717 +0 0.2868 +0 0.0434 +0 0.1015 +0 0.0912 +0 0.0618 +0 0.1084 +0 0.6488 +0 0.1295 +0 0.1186 +0 0.0883 +0 0.0480 +0 0.0562 +0 0.6729 +0 0.1043 +0 0.0659 +0 0.1560 +0 0.0831 +0 0.1014 +0 0.0740 +0 0.0556 +0 0.1300 +0 0.6048 +0 0.1140 +0 0.1263 +0 0.0949 +0 0.0765 +0 0.1718 +0 0.1982 +0 0.6840 +0 0.0768 +0 0.5784 +0 0.1625 +0 0.0525 +0 0.1107 +0 0.1035 +0 0.7132 +0 0.2235 +0 0.0598 +0 0.0699 +0 0.1996 +0 0.0531 +0 0.1445 +0 0.0486 +0 0.1054 +0 0.0967 +0 0.0579 +0 0.2316 +1 0.8652 +0 0.2565 +0 0.0909 +0 0.0440 +0 0.1287 +0 0.0822 +0 0.0986 +0 0.1211 +0 0.0816 +0 0.1099 +0 0.1422 +0 0.0875 +0 0.0721 +0 0.2145 +0 0.2827 +0 0.0451 +0 0.0507 +0 0.0967 +0 0.1634 +0 0.1728 +0 0.1183 +1 0.8439 +0 0.4098 +0 0.0647 +0 0.0735 +0 0.1015 +0 0.0959 +0 0.0854 +0 0.1374 +0 0.4353 +0 0.1818 +0 0.1758 +0 0.1919 +0 0.1694 +0 0.0824 +0 0.0754 +0 0.3546 +0 0.1301 +0 0.4717 +0 0.0303 +0 0.0611 +0 0.0924 +0 0.1281 +0 0.3173 +0 0.0817 +0 0.1115 +0 0.0599 +0 0.0688 +0 0.1745 +0 0.4558 +0 0.6062 +0 0.1080 +0 0.1117 +0 0.0805 +0 0.6053 +0 0.0462 +0 0.1652 +0 0.0902 +0 0.0754 +0 0.0601 +0 0.0772 +0 0.0638 +0 0.1077 +0 0.1730 +0 0.0865 +0 0.1402 +0 0.3863 +0 0.4249 +0 0.0443 +0 0.1700 +0 0.1215 +0 0.0749 +0 0.0741 +0 0.0545 +0 0.0710 +0 0.3294 +0 0.0564 +1 0.7602 +0 0.2089 +0 0.1221 +0 0.0393 +0 0.1223 +0 0.0845 +0 0.0992 +0 0.1761 +0 0.2328 +0 0.0495 +1 0.8091 +0 0.4364 +0 0.0831 +0 0.0649 +0 0.2401 +0 0.0639 +0 0.0431 +0 0.0575 +0 0.6255 +0 0.0435 +0 0.0776 +0 0.1511 +0 0.1192 +0 0.2403 +0 0.1192 +0 0.0989 +0 0.0699 +0 0.1093 +0 0.2595 +0 0.0721 +0 0.0732 +0 0.2904 +0 0.3474 +0 0.2143 +0 0.1416 +1 0.8433 +0 0.0585 +0 0.1035 +0 0.0586 +0 0.3401 +0 0.0568 +0 0.1318 +0 0.0705 +0 0.0518 +0 0.1432 +0 0.0935 +0 0.2499 +0 0.1425 +0 0.3763 +0 0.2359 +0 0.0749 +0 0.0714 +0 0.1181 +0 0.1000 +0 0.1926 +0 0.1797 +0 0.0941 +0 0.2243 +0 0.0916 +0 0.0650 +1 0.8298 +0 0.1029 +0 0.0617 +0 0.0908 +0 0.0472 +0 0.1315 +0 0.2138 +0 0.1048 +0 0.2474 +0 0.0521 +0 0.2242 +0 0.0570 +0 0.2383 +0 0.0698 +0 0.5881 +0 0.1150 +0 0.0554 +0 0.1400 +0 0.0702 +0 0.0575 +0 0.0785 +0 0.1621 +0 0.7081 +0 0.1593 +0 0.2033 +0 0.1229 +0 0.1322 +0 0.0396 +0 0.0983 +0 0.1266 +0 0.1033 +0 0.1705 +0 0.1619 +0 0.1272 +0 0.1046 +0 0.1169 +0 0.0643 +0 0.0568 +0 0.0872 +0 0.1401 +0 0.3337 +0 0.1120 +0 0.0804 +0 0.2157 +0 0.1327 +0 0.1899 +0 0.1211 +0 0.0998 +0 0.1442 +0 0.0802 +0 0.1629 +1 0.8082 +0 0.0946 +0 0.1276 +0 0.1365 +0 0.0877 +0 0.1010 +0 0.0850 +0 0.0514 +0 0.0565 +0 0.1878 +0 0.1140 +0 0.2205 +0 0.1289 +0 0.1324 +0 0.1934 +0 0.0475 +0 0.0768 +0 0.1554 +0 0.0498 +0 0.0439 +0 0.1737 +0 0.1046 +0 0.1445 +0 0.0449 +0 0.0429 +0 0.5986 +0 0.0630 +1 0.8583 +0 0.1072 +0 0.0724 +0 0.1618 +0 0.0756 +0 0.1101 +0 0.1654 +0 0.1089 +0 0.0384 +0 0.2300 +0 0.2065 +0 0.2120 +0 0.1073 +0 0.0548 +0 0.3513 +0 0.2485 +0 0.0714 +0 0.1310 +0 0.1337 +0 0.1652 +0 0.0514 +0 0.2869 +0 0.1597 +0 0.0699 +0 0.1243 +0 0.1835 +0 0.2099 +0 0.0742 +0 0.1038 +0 0.0697 +0 0.0479 +0 0.0523 +0 0.1097 +0 0.7091 +0 0.0696 +0 0.0968 +1 0.8255 +0 0.0633 +0 0.0586 +0 0.2660 +0 0.0609 +0 0.0563 +0 0.1488 +0 0.0547 +0 0.0955 +0 0.0646 +0 0.0585 +0 0.2010 +0 0.0912 +0 0.2823 +0 0.1703 +0 0.0765 +0 0.2015 +0 0.0613 +0 0.0692 +0 0.2241 +0 0.1942 +0 0.0493 +0 0.0701 +0 0.2294 +0 0.2610 +0 0.4545 +0 0.0829 +0 0.1868 +0 0.6980 +0 0.0451 +0 0.1701 +0 0.0840 +0 0.1198 +0 0.0476 +0 0.1428 +0 0.0629 +0 0.0814 +0 0.1364 +0 0.0677 +0 0.0964 +0 0.1251 +0 0.3970 +0 0.2577 +0 0.1056 +0 0.3293 +0 0.0779 +0 0.0842 +1 0.8220 +0 0.1953 +0 0.1042 +0 0.0771 +0 0.0469 +0 0.0447 +0 0.1640 +0 0.0542 +0 0.2066 +0 0.1291 +0 0.0799 +0 0.1143 +0 0.0965 +0 0.0643 +0 0.0770 +0 0.2000 +0 0.1534 +0 0.0881 +0 0.1036 +0 0.0933 +0 0.2088 +0 0.0501 +0 0.1446 +0 0.0565 +0 0.1975 +0 0.0832 +0 0.0575 +0 0.0813 +0 0.2168 +0 0.0997 +0 0.0499 +0 0.0448 +0 0.1308 +0 0.0635 +0 0.1103 +0 0.0841 +0 0.1155 +0 0.2020 +0 0.1924 +0 0.0572 +0 0.1025 +0 0.4160 +0 0.0729 +0 0.1454 +0 0.1657 +0 0.0699 +0 0.1214 +0 0.1681 +0 0.0911 +0 0.3055 +0 0.1159 +0 0.1211 +0 0.0453 +0 0.1218 +0 0.1797 +0 0.0379 +0 0.1654 +0 0.2120 +0 0.0621 +0 0.0430 +0 0.3135 +0 0.0538 +0 0.3281 +0 0.1033 +0 0.6117 +0 0.1403 +0 0.4486 +0 0.1512 +0 0.0872 +0 0.1975 +0 0.0490 +0 0.4357 +0 0.0637 +0 0.0694 +0 0.3029 +0 0.0800 +0 0.0864 +0 0.1461 +0 0.1880 +0 0.0925 +0 0.1494 +0 0.2203 +0 0.1494 +0 0.1600 +0 0.1410 +0 0.0905 +0 0.3913 +0 0.0644 +0 0.2523 +0 0.2113 +0 0.0498 +0 0.0785 +0 0.1007 +0 0.1140 +0 0.7001 +0 0.7291 +0 0.0996 +0 0.1857 +0 0.0917 +0 0.2184 +0 0.1098 +0 0.1322 +0 0.1296 +0 0.2173 +0 0.0445 +0 0.1237 +0 0.1441 +0 0.1745 +0 0.0881 +0 0.0884 +0 0.1121 +0 0.2263 +0 0.0626 +0 0.1945 +0 0.2548 +0 0.0803 +0 0.1659 +0 0.0439 +0 0.1255 +0 0.2774 +0 0.0951 +0 0.1040 +0 0.1420 +0 0.2044 +0 0.0826 +0 0.0573 +0 0.1612 +0 0.0653 +0 0.0794 +0 0.0385 +0 0.2019 +0 0.0927 +0 0.1880 +0 0.1178 +0 0.2660 +0 0.2465 +0 0.1184 +0 0.0800 +0 0.4064 +0 0.2066 +0 0.0830 +0 0.0584 +0 0.0732 +0 0.4618 +0 0.1244 +0 0.0709 +0 0.0473 +0 0.0974 +0 0.1270 +0 0.0518 +0 0.1634 +0 0.1234 +0 0.0529 +0 0.1316 +0 0.2158 +0 0.0736 +0 0.0497 +0 0.2649 +0 0.0771 +0 0.1467 +0 0.0578 +0 0.1592 +0 0.0651 +0 0.0501 +0 0.6781 +0 0.1213 +0 0.1079 +0 0.1178 +0 0.0699 +0 0.2680 +0 0.3164 +0 0.0652 +0 0.1038 +0 0.0871 +0 0.1168 +0 0.0845 +0 0.0945 +0 0.2206 +0 0.1338 +0 0.0384 +0 0.1024 +0 0.2336 +0 0.2794 +0 0.0698 +0 0.0715 +0 0.0778 +0 0.0725 +0 0.0732 +0 0.0827 +0 0.1377 +0 0.0556 +0 0.0392 +0 0.1246 +0 0.2590 +0 0.1530 +0 0.0856 +0 0.0417 +0 0.0792 +0 0.1534 +0 0.1110 +0 0.1753 +0 0.0648 +0 0.1451 +0 0.1135 +0 0.0829 +0 0.2284 +0 0.1636 +0 0.2015 +0 0.1670 +0 0.0810 +0 0.1796 +0 0.0913 +0 0.2014 +0 0.0857 +0 0.0961 +0 0.3410 +0 0.0547 +0 0.6849 +0 0.2042 +0 0.0691 +0 0.3877 +0 0.0781 +0 0.2071 +0 0.6962 +0 0.0892 +0 0.2454 +0 0.0420 +0 0.0578 +0 0.0735 +0 0.1174 +0 0.0678 +0 0.1109 +0 0.1120 +0 0.0883 +0 0.0878 +0 0.1276 +0 0.4978 +0 0.0644 +0 0.1086 +0 0.0892 +0 0.1029 +0 0.0522 +0 0.0840 +0 0.3553 +0 0.1350 +0 0.1367 +0 0.0980 +0 0.0688 +0 0.1372 +0 0.0918 +0 0.0783 +0 0.6899 +0 0.0549 +0 0.0604 +0 0.0909 +0 0.1549 +0 0.1062 +0 0.1503 +0 0.0836 +0 0.0432 +0 0.0796 +0 0.0864 +0 0.7439 +0 0.0865 +0 0.2660 +0 0.0879 +0 0.0787 +0 0.1036 +0 0.0712 +0 0.0699 +1 0.8769 +0 0.0861 +0 0.7086 +0 0.0774 +0 0.1889 +0 0.2007 +0 0.0592 +0 0.0922 +0 0.0579 +0 0.2072 +0 0.1662 +0 0.0711 +0 0.0601 +0 0.0719 +0 0.3900 +0 0.4755 +0 0.6200 +0 0.0879 +0 0.0746 +0 0.0658 +0 0.0973 +0 0.2259 +0 0.2002 +0 0.1442 +0 0.0746 +0 0.0559 +0 0.0622 +0 0.2069 +0 0.2045 +0 0.4014 +0 0.1524 +0 0.0965 +0 0.1338 +0 0.0877 +0 0.2988 +0 0.0816 +0 0.1916 +0 0.5662 +0 0.0642 +0 0.1162 +0 0.0339 +0 0.1181 +0 0.0571 +0 0.1987 +0 0.0776 +0 0.1405 +0 0.0771 +0 0.1091 +0 0.1677 +0 0.1172 +0 0.1139 +0 0.1245 +0 0.0578 +0 0.1521 +0 0.0882 +0 0.1935 +0 0.1060 +0 0.1004 +0 0.3382 +0 0.0620 +0 0.1216 +0 0.0491 +0 0.1253 +0 0.2173 +0 0.1712 +0 0.1193 +0 0.5373 +0 0.1296 +0 0.0740 +0 0.0450 +0 0.0467 +0 0.0706 +0 0.0734 +0 0.7458 +0 0.0877 +0 0.2557 +0 0.1224 +0 0.0823 +0 0.0988 +0 0.0694 +0 0.0686 +0 0.0673 +0 0.1662 +0 0.0587 +0 0.1167 +0 0.0655 +0 0.0912 +0 0.0635 +0 0.0846 +0 0.0665 +0 0.1733 +0 0.1486 +0 0.0535 +0 0.1707 +0 0.6941 +0 0.0541 +0 0.1506 +0 0.7001 +0 0.4546 +0 0.4514 +0 0.0786 +0 0.0966 +0 0.0422 +0 0.1024 +1 0.7654 +0 0.1527 +0 0.1382 +0 0.1559 +0 0.2235 +0 0.0916 +0 0.0500 +0 0.0366 +0 0.0312 +0 0.0853 +0 0.1453 +0 0.0733 +0 0.0843 +0 0.1874 +0 0.0580 +0 0.3314 +0 0.0509 +0 0.1370 +0 0.0730 +0 0.1939 +0 0.0869 +0 0.1537 +0 0.0397 +0 0.1079 +0 0.1563 +0 0.0454 +0 0.0822 +0 0.1185 +0 0.1856 +0 0.0963 +0 0.0986 +0 0.1182 +0 0.1394 +0 0.3722 +0 0.0765 +0 0.4749 +0 0.2162 +0 0.2047 +0 0.0671 +0 0.1327 +0 0.0687 +0 0.1270 +0 0.0367 +0 0.1187 +0 0.3476 +0 0.2227 +0 0.0798 +0 0.1288 +0 0.1857 +0 0.1469 +0 0.0889 +0 0.3320 +0 0.2132 +0 0.1740 +0 0.1949 +0 0.1693 +0 0.0629 +0 0.1435 +0 0.1134 +0 0.1202 +0 0.1837 +0 0.0804 +0 0.2396 +0 0.1158 +0 0.0415 +0 0.1409 +0 0.0491 +0 0.4918 +0 0.7207 +0 0.0774 +0 0.7443 +0 0.1286 +0 0.1201 +0 0.0510 +0 0.5646 +0 0.1348 +0 0.4337 +0 0.0667 +0 0.1994 +0 0.1612 +0 0.1028 +0 0.2728 +0 0.0630 +0 0.2345 +0 0.1538 +0 0.1513 +0 0.0715 +0 0.0779 +0 0.1230 +0 0.1247 +0 0.0931 +0 0.0785 +0 0.1328 +0 0.3101 +0 0.4109 +0 0.0746 +0 0.2903 +0 0.7143 +0 0.2029 +1 0.8475 +0 0.0925 +0 0.1658 +0 0.2021 +0 0.0743 +0 0.4825 +0 0.0775 +0 0.1129 +1 0.8892 +0 0.0939 +0 0.0845 +0 0.3178 +0 0.0851 +0 0.1271 +0 0.1131 +0 0.1061 +0 0.1189 +0 0.0499 +0 0.1751 +0 0.0639 +0 0.1855 +0 0.0886 +0 0.1078 +0 0.1011 +0 0.3057 +0 0.1216 +0 0.1553 +0 0.1481 +0 0.1771 +0 0.0469 +0 0.1760 +0 0.0797 +1 0.8669 +0 0.0592 +0 0.1016 +0 0.1203 +0 0.1057 +0 0.1017 +0 0.0806 +0 0.0642 +0 0.1794 +1 0.7905 +0 0.0441 +0 0.1731 +0 0.1087 +0 0.1003 +0 0.0881 +0 0.0679 +0 0.0872 +0 0.0845 +0 0.0597 +0 0.0746 +0 0.1614 +0 0.1212 +0 0.0761 +0 0.0754 +0 0.0774 +0 0.0654 +0 0.0408 +0 0.0676 +0 0.1163 +0 0.1546 +0 0.2176 +0 0.0970 +0 0.5382 +0 0.2129 +0 0.0580 +0 0.1523 +0 0.1694 +0 0.0769 +0 0.1396 +0 0.0592 +0 0.2736 +0 0.0869 +0 0.0759 +0 0.1376 +0 0.5575 +0 0.1351 +0 0.0512 +0 0.1378 +0 0.1036 +0 0.1869 +0 0.1038 +0 0.0602 +0 0.2253 +0 0.0526 +0 0.1343 +0 0.1176 +0 0.0997 +0 0.0959 +0 0.0677 +0 0.0430 +0 0.0631 +0 0.0962 +0 0.4777 +0 0.1014 +0 0.0469 +0 0.2775 +0 0.1557 +0 0.2523 +0 0.0630 +0 0.1013 +0 0.1429 +0 0.2406 +0 0.2492 +0 0.0993 +0 0.1187 +0 0.0809 +0 0.0575 +0 0.1989 +0 0.1138 +0 0.1147 +0 0.1580 +0 0.1086 +0 0.1015 +0 0.2219 +0 0.2156 +1 0.7648 +0 0.2695 +0 0.0910 +0 0.1843 +0 0.1711 +0 0.1561 +0 0.0836 +0 0.1425 +1 0.7959 +0 0.2270 +0 0.0830 +0 0.0566 +0 0.1546 +0 0.1157 +0 0.0733 +0 0.0878 +0 0.0638 +1 0.7910 +0 0.1013 +0 0.1038 +0 0.6418 +0 0.0879 +0 0.1108 +0 0.1229 +0 0.0408 +0 0.0534 +0 0.0463 +0 0.1339 +0 0.1118 +0 0.1481 +0 0.0931 +0 0.0857 +0 0.0689 +0 0.0355 +0 0.0678 +0 0.1522 +0 0.0895 +0 0.1908 +0 0.1830 +0 0.1302 +0 0.1207 +0 0.0961 +0 0.3506 +0 0.0887 +0 0.6596 +1 0.8037 +0 0.1583 +0 0.2006 +0 0.0695 +0 0.1946 +0 0.0454 +0 0.0629 +0 0.1083 +0 0.0796 +0 0.0687 +0 0.1048 +0 0.0415 +0 0.0946 +0 0.1207 +0 0.1925 +0 0.0497 +0 0.1447 +0 0.0418 +1 0.7837 +0 0.1902 +0 0.0606 +0 0.0828 +0 0.0867 +0 0.1370 +0 0.0978 +0 0.3310 +0 0.1482 +0 0.0747 +0 0.0747 +0 0.0579 +0 0.0895 +0 0.3515 +0 0.0944 +0 0.0565 +0 0.2379 +0 0.0824 +0 0.1457 +0 0.0598 +0 0.4652 +0 0.1091 +0 0.1765 +0 0.0789 +0 0.1159 +0 0.0755 +0 0.2152 +0 0.2519 +0 0.1037 +0 0.0639 +0 0.1119 +0 0.3156 +0 0.3377 +0 0.1127 +0 0.2364 +0 0.0870 +0 0.1787 +0 0.0949 +0 0.2513 +0 0.1813 +0 0.1194 +0 0.1774 +0 0.1649 +0 0.1027 +0 0.1083 +0 0.0837 +0 0.0364 +0 0.1361 +0 0.0965 +0 0.0404 +0 0.1791 +0 0.0828 +0 0.0520 +0 0.1125 +0 0.0722 +1 0.8818 +0 0.3117 +0 0.0834 +0 0.1819 +0 0.0675 +0 0.2801 +0 0.3244 +0 0.0367 +0 0.3843 +0 0.1080 +0 0.0753 +0 0.1625 +0 0.1345 +0 0.4164 +0 0.0888 +0 0.3653 +0 0.7290 +0 0.0731 +0 0.2211 +0 0.2106 +0 0.0701 +0 0.0391 +0 0.0822 +0 0.0814 +0 0.1542 +0 0.0960 +0 0.0590 +0 0.0890 +0 0.0755 +0 0.1136 +0 0.1159 +0 0.0617 +0 0.1339 +0 0.3233 +0 0.1255 +0 0.0536 +0 0.0288 +0 0.1724 +0 0.1158 +0 0.0715 +0 0.2211 +0 0.5782 +0 0.1014 +0 0.0871 +0 0.1107 +0 0.1025 +0 0.0860 +0 0.1000 +0 0.1051 +0 0.0847 +0 0.1359 +0 0.1534 +0 0.1643 +0 0.0971 +0 0.0694 +0 0.0912 +0 0.1458 +0 0.3190 +0 0.0614 +0 0.4737 +0 0.1174 +0 0.0761 +0 0.0987 +0 0.0998 +0 0.0952 +0 0.1898 +0 0.0513 +0 0.0660 +0 0.1096 +0 0.0634 +0 0.0695 +0 0.0862 +0 0.0951 +0 0.0885 +0 0.0656 +0 0.0875 +0 0.0803 +0 0.1040 +0 0.1386 +0 0.0400 +0 0.1094 +0 0.0611 +0 0.2615 +0 0.0947 +0 0.1157 +0 0.0734 +0 0.1427 +0 0.0472 +0 0.0895 +0 0.1454 +0 0.0934 +0 0.4907 +0 0.0936 +0 0.0858 +0 0.2149 +0 0.0907 +0 0.1506 +0 0.0848 +0 0.0607 +0 0.0713 +0 0.1041 +0 0.1059 +0 0.0387 +0 0.0560 +0 0.1223 +0 0.1146 +0 0.1248 +0 0.0355 +0 0.1313 +0 0.1960 +0 0.1302 +0 0.1159 +0 0.0765 +0 0.0714 +0 0.0407 +0 0.1025 +0 0.2678 +0 0.2777 +0 0.2664 +0 0.1928 +0 0.1453 +0 0.1899 +0 0.0825 +0 0.0518 +0 0.0877 +0 0.0831 +0 0.0923 +0 0.0397 +0 0.0395 +0 0.0703 +0 0.2458 +0 0.0428 +0 0.1706 +0 0.0664 +0 0.0553 +0 0.1384 +0 0.0983 +0 0.1500 +0 0.0571 +0 0.2914 +0 0.0549 +0 0.0724 +0 0.1081 +0 0.0814 +0 0.1790 +0 0.1521 +0 0.1502 +0 0.1427 +0 0.2128 +0 0.0983 +0 0.2773 +0 0.1658 +0 0.1169 +0 0.0747 +0 0.0507 +0 0.0686 +0 0.0854 +0 0.0519 +0 0.4831 +0 0.0753 +0 0.1113 +0 0.1302 +0 0.0791 +0 0.1605 +0 0.1226 +0 0.0712 +0 0.6465 +0 0.0757 +0 0.1358 +0 0.0418 +0 0.1733 +0 0.3688 +0 0.0883 +0 0.1289 +0 0.1226 +0 0.1814 +0 0.0855 +0 0.0558 +1 0.8395 +0 0.0932 +0 0.0770 +0 0.1241 +0 0.0886 +0 0.1305 +0 0.1235 +0 0.1072 +0 0.0704 +0 0.0658 +0 0.0684 +0 0.0552 +0 0.1119 +0 0.4278 +0 0.0968 +0 0.1093 +0 0.1527 +0 0.0739 +0 0.0842 +0 0.1186 +0 0.1029 +0 0.0944 +0 0.2842 +0 0.0416 +0 0.0672 +0 0.0595 +0 0.1752 +0 0.0774 +0 0.0920 +0 0.2795 +0 0.1546 +0 0.0464 +0 0.1191 +0 0.1270 +0 0.1302 +0 0.0603 +0 0.3520 +0 0.3104 +0 0.1185 +0 0.0826 +0 0.0585 +0 0.2027 +0 0.0657 +0 0.0685 +0 0.0917 +0 0.3002 +0 0.2222 +0 0.1177 +0 0.0954 +0 0.2330 +0 0.1346 +0 0.1087 +1 0.8592 +0 0.1204 +0 0.1025 +0 0.1389 +0 0.0379 +0 0.1661 +0 0.0573 +0 0.0362 +0 0.0869 +0 0.6330 +0 0.0614 +0 0.0390 +0 0.0955 +0 0.0361 +0 0.1947 +0 0.0760 +0 0.1501 +0 0.0440 +0 0.0687 +0 0.1175 +0 0.0532 +0 0.1075 +0 0.0619 +1 0.8145 +0 0.0501 +0 0.0650 +0 0.0341 +0 0.0979 +0 0.1092 +0 0.1157 +0 0.0619 +0 0.0704 +0 0.0455 +0 0.5885 +0 0.1362 +0 0.1039 +0 0.0777 +0 0.5411 +0 0.2733 +0 0.0894 +0 0.0457 +0 0.0619 +0 0.0762 +0 0.1756 +0 0.0921 +0 0.0696 +0 0.0463 +0 0.4864 +0 0.1010 +0 0.1211 +0 0.0640 +0 0.5322 +0 0.0600 +0 0.0609 +0 0.2319 +0 0.1090 +0 0.2557 +0 0.0781 +0 0.1935 +0 0.1771 +0 0.0491 +0 0.0375 +0 0.0348 +0 0.1606 +0 0.3210 +0 0.0812 +0 0.1024 +0 0.0943 +0 0.0508 +0 0.3667 +0 0.2232 +0 0.1104 +0 0.0674 +0 0.0985 +0 0.0719 +0 0.1267 +0 0.7094 +0 0.2436 +0 0.0887 +0 0.1852 +0 0.0831 +0 0.1562 +0 0.7188 +0 0.0514 +0 0.1123 +0 0.1666 +0 0.2127 +0 0.3719 +0 0.0822 +0 0.1018 +0 0.3011 +0 0.1232 +0 0.0840 +0 0.0794 +0 0.0559 +0 0.1145 +0 0.0838 +0 0.1165 +0 0.0753 +0 0.0629 +0 0.0930 +0 0.0527 +0 0.0655 +0 0.5150 +0 0.2101 +0 0.1627 +0 0.1577 +0 0.1333 +0 0.1463 +0 0.3171 +0 0.2310 +0 0.1962 +0 0.1306 +0 0.0916 +0 0.3093 +0 0.1109 +0 0.0801 +0 0.0331 +0 0.1512 +0 0.3407 +0 0.2209 +0 0.0859 +0 0.6332 +0 0.1023 +0 0.2774 +0 0.0760 +0 0.0824 +0 0.0695 +0 0.1148 +0 0.1923 +0 0.1126 +0 0.1002 +0 0.0374 +0 0.0713 +0 0.1102 +0 0.1517 +0 0.0421 +0 0.0920 +0 0.1051 +0 0.0656 +0 0.0726 +0 0.1183 +0 0.0924 +0 0.0878 +0 0.1295 +0 0.1534 +0 0.0578 +0 0.1084 +0 0.4036 +1 0.7835 +0 0.3275 +0 0.0960 +0 0.0899 +0 0.0871 +0 0.0868 +0 0.0577 +0 0.1604 +0 0.2265 +0 0.2835 +0 0.0895 +0 0.2315 +0 0.0727 +0 0.2432 +0 0.1282 +0 0.0474 +0 0.0816 +0 0.0715 +0 0.4024 +0 0.1221 +0 0.4240 +0 0.2467 +0 0.1021 +0 0.0478 +0 0.3281 +0 0.1441 +0 0.1435 +0 0.4373 +0 0.1411 +0 0.0363 +0 0.1040 +0 0.0999 +0 0.0653 +0 0.0460 +0 0.1988 +0 0.1704 +0 0.3895 +0 0.3719 +0 0.3092 +0 0.0617 +0 0.0656 +0 0.1030 +0 0.0435 +0 0.2108 +0 0.3200 +0 0.3280 +0 0.0540 +0 0.0814 +0 0.0966 +0 0.1720 +0 0.2469 +0 0.1763 +0 0.2335 +0 0.1009 +0 0.0690 +0 0.0438 +0 0.0714 +0 0.0582 +0 0.0493 +0 0.1273 +0 0.1897 +0 0.0708 +0 0.2996 +0 0.2742 +0 0.1318 +0 0.0766 +0 0.1053 +0 0.2241 +0 0.2029 +0 0.1151 +0 0.0850 +0 0.0615 +0 0.1936 +0 0.1488 +0 0.1499 +0 0.5506 +0 0.0474 +0 0.0641 +0 0.1400 +0 0.0447 +0 0.2291 +0 0.0840 +0 0.2519 +0 0.0784 +0 0.0736 +0 0.2050 +0 0.3196 +0 0.1487 +0 0.1605 +0 0.0673 +0 0.0763 +0 0.1521 +0 0.0547 +0 0.0600 +0 0.0513 +0 0.0507 +0 0.1460 +0 0.7120 +0 0.1255 +0 0.0624 +0 0.1166 +0 0.1267 +0 0.1990 +0 0.0318 +0 0.0992 +0 0.1271 +0 0.1035 +0 0.1165 +0 0.1253 +0 0.1251 +0 0.0975 +0 0.1210 +0 0.0522 +0 0.0620 +0 0.1740 +0 0.0652 +0 0.0787 +0 0.1194 +0 0.1954 +0 0.0719 +0 0.0981 +0 0.0318 +0 0.1849 +0 0.0822 +0 0.0957 +0 0.0692 +0 0.0651 +0 0.0581 +0 0.1022 +0 0.0910 +0 0.0817 +0 0.2140 +0 0.1120 +0 0.0503 +0 0.1046 +0 0.5534 +0 0.0700 +0 0.1129 +0 0.2190 +0 0.0820 +0 0.0457 +0 0.3766 +0 0.0547 +0 0.0638 +0 0.3740 +0 0.4162 +0 0.0450 +0 0.0620 +0 0.0312 +0 0.2055 +0 0.0605 +0 0.1949 +0 0.2706 +0 0.0807 +0 0.0638 +0 0.0746 +0 0.2592 +0 0.1858 +0 0.0559 +0 0.1383 +0 0.0755 +0 0.1977 +0 0.0926 +0 0.1004 +0 0.0973 +0 0.1554 +0 0.0633 +0 0.1037 +0 0.0677 +0 0.0920 +0 0.1484 +0 0.0796 +0 0.1330 +0 0.1333 +0 0.0790 +0 0.0436 +0 0.2220 +0 0.0451 +0 0.0683 +0 0.1376 +0 0.0930 +1 0.7579 +0 0.1461 +0 0.0714 +0 0.0770 +0 0.0512 +0 0.1815 +0 0.1027 +0 0.0363 +0 0.1345 +0 0.1319 +0 0.0438 +0 0.0778 +0 0.1044 +0 0.0744 +0 0.4517 +0 0.0662 +0 0.0787 +0 0.1498 +0 0.2330 +0 0.0879 +0 0.2439 +0 0.0474 +0 0.0666 +0 0.4517 +0 0.1373 +0 0.1317 +0 0.1446 +0 0.0905 +0 0.0718 +0 0.0556 +0 0.0863 +0 0.1215 +0 0.1404 +0 0.1146 +0 0.1715 +0 0.4408 +0 0.0922 +0 0.0445 +0 0.0808 +0 0.0626 +0 0.0587 +0 0.4037 +0 0.1941 +0 0.0819 +0 0.0764 +0 0.0671 +0 0.0949 +0 0.1175 +0 0.1228 +0 0.2952 +0 0.0983 +0 0.1089 +0 0.3207 +0 0.0918 +0 0.0410 +0 0.1675 +0 0.2713 +0 0.1149 +0 0.1316 +0 0.0450 +0 0.1799 +0 0.7318 +1 0.7963 +0 0.1076 +0 0.1095 +0 0.0950 +0 0.1764 +0 0.1082 +0 0.0775 +0 0.0653 +0 0.0687 +0 0.1639 +0 0.3880 +0 0.1084 +0 0.1139 +0 0.5053 +0 0.1940 +0 0.1343 +0 0.1290 +1 0.8361 +0 0.2268 +1 0.8598 +0 0.0960 +0 0.1024 +0 0.1059 +0 0.0730 +0 0.1625 +0 0.2352 +0 0.0476 +0 0.1462 +0 0.1201 +0 0.0979 +0 0.0697 +0 0.3699 +0 0.0459 +0 0.0527 +0 0.2470 +0 0.1395 +0 0.1988 +0 0.2324 +0 0.0866 +0 0.1524 +0 0.1003 +0 0.1892 +0 0.1921 +0 0.1135 +0 0.1736 +0 0.0583 +0 0.1436 +0 0.1143 +0 0.0928 +0 0.1266 +0 0.0955 +0 0.2768 +0 0.2578 +0 0.0458 +1 0.9058 +0 0.0470 +0 0.1737 +0 0.0651 +0 0.1332 +0 0.0643 +0 0.1294 +0 0.1015 +0 0.3619 +1 0.8409 +0 0.0675 +0 0.0960 +0 0.0848 +0 0.1361 +0 0.1083 +0 0.0939 +0 0.1754 +0 0.0549 +0 0.2109 +0 0.1384 +0 0.4033 +0 0.1276 +0 0.1548 +0 0.1230 +0 0.0832 +0 0.0782 +0 0.1217 +0 0.0546 +0 0.0824 +0 0.1746 +0 0.0955 +0 0.1024 +0 0.0776 +0 0.2753 +0 0.1591 +0 0.1665 +0 0.0843 +0 0.0374 +0 0.2744 +0 0.1499 +0 0.0753 +0 0.0860 +0 0.1378 +0 0.1850 +0 0.1285 +0 0.0991 +0 0.2021 +0 0.0859 +0 0.0647 +0 0.3411 +0 0.1330 +0 0.0773 +0 0.3642 +0 0.2031 +0 0.2058 +1 0.8184 +0 0.6330 +0 0.0519 +0 0.0455 +0 0.1540 +0 0.0782 +0 0.2287 +0 0.0797 +0 0.2253 +0 0.2067 +0 0.1149 +0 0.3180 +0 0.0861 +0 0.0601 +0 0.0676 +0 0.0891 +0 0.1594 +0 0.1209 +0 0.0787 +0 0.1723 +0 0.0851 +0 0.2333 +0 0.2189 +0 0.1206 +0 0.0549 +0 0.0669 +0 0.2472 +0 0.1768 +0 0.1992 +0 0.1193 +0 0.1342 +0 0.3012 +0 0.0844 +0 0.0724 +0 0.3745 +0 0.1951 +0 0.0731 +0 0.1472 +0 0.0801 +0 0.0969 +0 0.1166 +0 0.1689 +0 0.1318 +0 0.0807 +0 0.2288 +0 0.0591 +0 0.1013 +0 0.1051 +0 0.0799 +0 0.0870 +0 0.0614 +0 0.0646 +0 0.1841 +0 0.0791 +0 0.1444 +0 0.0739 +0 0.1301 +0 0.0339 +0 0.1282 +0 0.1877 +0 0.1211 +0 0.3896 +0 0.1837 +0 0.1742 +0 0.1248 +0 0.0874 +0 0.0877 +0 0.0691 +0 0.0372 +0 0.0464 +0 0.1251 +0 0.1176 +0 0.4455 +0 0.0740 +0 0.0617 +0 0.1759 +0 0.1083 +0 0.1882 +0 0.1488 +0 0.0455 +1 0.8678 +0 0.1825 +0 0.0761 +0 0.0722 +0 0.0974 +0 0.0834 +0 0.1584 +0 0.1143 +0 0.0589 +0 0.1089 +0 0.1195 +0 0.1522 +0 0.1375 +0 0.0620 +0 0.0437 +0 0.0598 +0 0.1091 +0 0.1890 +0 0.1128 +0 0.1341 +0 0.1372 +0 0.1009 +0 0.4233 +0 0.1972 +0 0.0561 +0 0.0991 +0 0.1919 +0 0.0409 +0 0.2151 +0 0.0680 +0 0.1572 +0 0.1247 +0 0.0330 +0 0.2102 +0 0.1344 +0 0.1387 +0 0.2126 +0 0.4124 +0 0.0870 +0 0.1058 +0 0.4401 +0 0.0787 +0 0.1517 +0 0.0705 +0 0.1097 +0 0.0324 +0 0.3092 +0 0.1437 +0 0.0699 +0 0.1128 +0 0.1904 +0 0.5377 +0 0.1684 +0 0.0741 +0 0.0864 +0 0.0771 +0 0.0582 +0 0.0707 +0 0.2478 +0 0.1090 +0 0.1456 +0 0.1627 +0 0.1986 +0 0.1901 +0 0.1335 +0 0.0884 +0 0.0835 +0 0.2240 +0 0.1988 +0 0.1560 +0 0.1168 +0 0.0761 +0 0.1249 +0 0.0784 +0 0.0717 +0 0.0875 +0 0.0455 +0 0.1087 +0 0.1037 +0 0.0473 +0 0.2518 +0 0.1041 +0 0.1017 +0 0.0674 +0 0.1818 +0 0.1482 +0 0.7077 +0 0.0558 +0 0.1264 +0 0.0887 +0 0.1507 +0 0.0701 +0 0.0512 +0 0.2016 +0 0.4253 +0 0.0632 +0 0.0408 +0 0.4298 +0 0.1043 +0 0.1027 +0 0.1889 +0 0.1434 +0 0.0543 +0 0.1151 +0 0.0700 +1 0.7537 +0 0.1653 +0 0.2061 +0 0.1304 +0 0.2204 +0 0.1328 +0 0.3134 +0 0.0776 +0 0.0927 +0 0.0767 +0 0.1082 +0 0.1392 +0 0.0588 +0 0.4997 +0 0.1262 +0 0.2118 +0 0.1101 +0 0.3455 +0 0.0609 +0 0.0925 +0 0.1283 +0 0.2124 +0 0.0864 +0 0.0642 +0 0.2455 +0 0.0613 +0 0.1476 +0 0.0862 +0 0.0550 +0 0.0819 +0 0.1049 +0 0.1766 +0 0.2647 +0 0.1272 +0 0.0513 +0 0.1038 +0 0.2574 +0 0.0777 +0 0.1121 +0 0.0843 +0 0.1746 +0 0.1684 +0 0.0638 +0 0.0870 +0 0.3365 +0 0.0792 +0 0.0962 +0 0.1863 +0 0.1564 +0 0.2414 +0 0.1700 +0 0.2306 +0 0.0718 +0 0.0701 +0 0.1254 +0 0.1672 +0 0.1093 +0 0.1793 +0 0.1885 +0 0.0857 +0 0.1271 +0 0.0855 +0 0.0695 +0 0.1325 +0 0.1028 +0 0.0360 +0 0.1232 +0 0.0667 +0 0.1248 +0 0.0697 +0 0.1956 +0 0.1623 +0 0.0995 +0 0.0731 +0 0.1100 +0 0.1135 +0 0.0634 +0 0.0890 +0 0.1879 +0 0.1305 +0 0.1625 +0 0.0852 +0 0.2664 +0 0.0778 +0 0.1029 +0 0.1933 +0 0.3229 +0 0.1620 +0 0.1233 +0 0.2421 +0 0.0429 +0 0.0401 +0 0.0787 +0 0.1592 +0 0.0624 +0 0.1343 +0 0.0589 +0 0.0546 +0 0.1161 +0 0.1425 +0 0.1928 +0 0.0584 +0 0.0537 +0 0.1336 +0 0.5869 +0 0.1759 +0 0.1860 +0 0.1778 +0 0.1644 +0 0.2890 +0 0.0836 +0 0.1111 +0 0.1690 +0 0.0907 +0 0.1175 +0 0.1305 +0 0.0817 +0 0.1552 +0 0.1326 +0 0.0635 +0 0.0659 +0 0.1624 +0 0.1076 +0 0.2154 +0 0.2627 +0 0.1772 +0 0.0621 +0 0.0797 +0 0.0718 +0 0.0862 +0 0.1232 +0 0.1117 +0 0.0623 +0 0.2533 +1 0.8424 +0 0.0584 +0 0.0839 +0 0.1242 +1 0.8449 +0 0.0888 +0 0.0672 +0 0.2000 +0 0.0691 +0 0.0777 +0 0.0469 +0 0.0864 +0 0.0373 +0 0.1270 +0 0.0842 +0 0.2202 +0 0.0826 +0 0.1494 +0 0.1248 +0 0.0905 +0 0.0628 +0 0.0787 +1 0.8682 +0 0.0997 +0 0.1516 +0 0.1165 +0 0.1277 +0 0.1112 +0 0.1124 +0 0.2495 +0 0.1816 +0 0.0624 +0 0.0590 +0 0.0732 +0 0.0509 +0 0.1413 +0 0.1601 +0 0.0701 +0 0.0479 +0 0.0398 +0 0.1805 +0 0.0646 +0 0.0765 +0 0.0708 +0 0.2287 +0 0.1046 +0 0.1608 +0 0.1707 +0 0.2981 +0 0.1173 +0 0.7331 +0 0.1848 +0 0.2035 +0 0.1236 +0 0.0531 +0 0.0683 +0 0.5482 +0 0.2377 +0 0.1285 +1 0.8058 +0 0.1057 +0 0.1297 +0 0.0820 +0 0.1035 +0 0.2680 +0 0.1483 +0 0.0623 +0 0.0920 +0 0.0995 +0 0.0908 +0 0.0503 +0 0.0943 +0 0.1454 +0 0.1089 +0 0.0406 +0 0.0560 +0 0.0678 +0 0.0782 +0 0.1353 +0 0.0777 +0 0.0476 +0 0.2159 +0 0.0616 +0 0.0484 +0 0.0663 +0 0.0863 +0 0.1269 +0 0.1316 +0 0.1770 +0 0.2048 +0 0.1073 +0 0.0705 +0 0.0772 +0 0.0965 +0 0.1888 +0 0.1345 +0 0.1059 +0 0.2345 +0 0.1399 +0 0.2325 +0 0.1800 +0 0.3244 +0 0.4215 +0 0.0815 +0 0.1224 +0 0.1273 +0 0.0564 +0 0.2372 +0 0.0609 +0 0.0971 +0 0.1455 +0 0.1081 +0 0.0675 +0 0.0785 +0 0.1698 +0 0.0718 +0 0.0604 +0 0.0616 +0 0.0604 +0 0.0749 +0 0.0708 +0 0.1514 +0 0.6461 +0 0.1182 +0 0.0605 +0 0.0860 +0 0.1463 +0 0.1500 +0 0.0768 +0 0.0863 +0 0.2580 +0 0.1127 +0 0.6761 +0 0.2350 +0 0.2068 +0 0.1091 +0 0.2113 +0 0.0844 +0 0.0373 +0 0.0515 +0 0.0349 +0 0.0913 +0 0.0857 +0 0.5748 +0 0.1354 +0 0.0465 +0 0.1454 +0 0.0863 +0 0.0890 +0 0.1260 +0 0.0995 +0 0.0710 +0 0.1563 +0 0.1106 +0 0.0731 +0 0.6262 +0 0.4482 +0 0.3696 +0 0.0850 +0 0.0951 +0 0.0466 +0 0.1050 +0 0.0589 +0 0.0493 +0 0.0860 +0 0.0870 +0 0.0966 +0 0.0726 +0 0.3303 +0 0.0496 +0 0.2659 +0 0.1268 +0 0.0783 +0 0.0508 +0 0.1062 +0 0.0988 +0 0.0797 +0 0.2749 +0 0.1506 +0 0.1113 +0 0.2336 +0 0.1060 +0 0.0579 +0 0.2153 +0 0.4700 +0 0.0844 +0 0.1242 +0 0.2279 +0 0.1277 +0 0.0827 +0 0.4258 +0 0.0567 +0 0.0315 +0 0.0840 +0 0.0787 +0 0.0959 +0 0.1409 +0 0.1782 +0 0.0465 +0 0.0733 +0 0.0779 +0 0.2669 +0 0.0295 +0 0.0745 +0 0.0641 +0 0.0900 +0 0.1364 +0 0.2717 +0 0.0601 +0 0.2369 +0 0.0670 +0 0.1528 +0 0.0934 +0 0.2022 +0 0.1193 +0 0.1067 +0 0.0750 +0 0.0649 +0 0.1830 +0 0.2093 +0 0.0845 +0 0.0722 +0 0.0431 +0 0.1877 +0 0.0912 +0 0.1749 +0 0.0809 +0 0.0445 +0 0.1318 +0 0.0989 +0 0.3389 +0 0.0783 +0 0.1204 +0 0.1152 +0 0.0558 +0 0.0567 +0 0.0334 +0 0.2371 +0 0.1362 +0 0.1126 +0 0.0838 +0 0.5234 +0 0.0532 +0 0.1226 +0 0.1185 +0 0.0722 +0 0.1240 +0 0.1327 +0 0.1094 +0 0.2672 +0 0.0683 +0 0.6163 +0 0.1177 +0 0.0809 +0 0.1719 +0 0.2777 +0 0.0785 +0 0.1802 +0 0.1126 +0 0.1206 +0 0.3349 +0 0.1260 +0 0.0414 +0 0.1068 +0 0.1818 +0 0.0684 +0 0.1286 +0 0.1770 +0 0.0641 +0 0.1045 +0 0.0532 +0 0.1390 +0 0.1124 +0 0.0931 +0 0.1826 +0 0.0787 +0 0.0820 +0 0.2809 +0 0.0553 +0 0.1003 +0 0.0810 +0 0.0358 +0 0.0688 +0 0.2556 +0 0.1104 +0 0.1379 +0 0.0666 +0 0.0724 +0 0.2101 +0 0.1910 +0 0.1484 +0 0.1389 +0 0.0883 +0 0.1137 +0 0.0549 +0 0.1463 +0 0.0614 +0 0.1324 +0 0.0588 +0 0.0916 +0 0.0840 +0 0.0485 +1 0.7676 +0 0.0557 +0 0.0899 +0 0.1088 +0 0.1655 +0 0.2540 +0 0.1125 +0 0.0702 +0 0.2779 +0 0.1075 +0 0.1084 +0 0.0675 +0 0.0627 +0 0.0723 +0 0.1722 +0 0.2189 +0 0.0839 +0 0.0623 +0 0.1061 +0 0.0818 +0 0.1019 +0 0.1788 +0 0.0848 +0 0.0785 +0 0.0896 +0 0.0983 +0 0.1142 +0 0.1516 +0 0.1586 +0 0.2231 +0 0.0712 +0 0.2724 +0 0.1231 +0 0.3178 +0 0.1845 +0 0.0816 +0 0.0431 +0 0.0615 +0 0.1019 +0 0.0439 +0 0.0604 +0 0.1007 +0 0.1247 +0 0.2183 +0 0.2990 +0 0.2176 +0 0.0727 +0 0.1070 +0 0.1103 +0 0.1264 +0 0.0538 +0 0.2828 +0 0.0726 +0 0.0871 +0 0.1723 +0 0.1252 +0 0.0955 +0 0.0694 +0 0.0840 +0 0.2027 +1 0.7804 +0 0.0877 +0 0.1424 +0 0.1417 +0 0.0966 +0 0.2181 +0 0.0861 +0 0.0963 +0 0.0931 +1 0.8410 +0 0.1403 +0 0.2188 +0 0.1685 +0 0.1351 +0 0.1058 +0 0.0717 +0 0.0479 +0 0.0496 +0 0.0556 +0 0.1365 +0 0.1365 +0 0.1060 +0 0.1594 +0 0.1477 +0 0.0751 +0 0.0564 +0 0.1146 +0 0.1134 +0 0.1297 +0 0.1950 +0 0.1100 +0 0.0868 +0 0.0756 +0 0.0835 +0 0.1258 +0 0.0992 +0 0.0784 +0 0.3258 +0 0.1256 +0 0.2070 +0 0.2924 +0 0.0795 +0 0.0665 +0 0.0430 +0 0.1015 +0 0.2128 +0 0.0674 +0 0.0548 +0 0.1205 +0 0.1724 +0 0.2657 +0 0.0606 +0 0.1021 +0 0.0483 +0 0.0372 +0 0.2434 +0 0.2026 +0 0.0469 +0 0.0877 +0 0.3817 +0 0.0546 +0 0.0824 +0 0.1161 +0 0.1722 +0 0.0867 +0 0.0634 +0 0.0718 +0 0.0761 +0 0.1451 +0 0.1561 +0 0.3977 +0 0.1670 +0 0.0634 +0 0.7431 +0 0.0565 +0 0.1337 +0 0.0871 +0 0.1028 +0 0.0594 +0 0.1266 +0 0.0388 +0 0.0377 +0 0.0712 +0 0.0717 +0 0.0446 +0 0.0774 +0 0.0920 +0 0.2253 +0 0.1066 +0 0.1359 +0 0.0867 +0 0.1338 +0 0.2092 +0 0.0739 +0 0.1136 +0 0.1157 +0 0.3626 +0 0.1106 +0 0.1118 +0 0.1088 +0 0.0527 +0 0.1800 +0 0.7168 +0 0.0825 +0 0.0756 +0 0.1048 +0 0.0508 +0 0.1899 +0 0.0744 +0 0.0829 +0 0.2323 +0 0.0631 +0 0.3433 +0 0.2313 +0 0.2326 +0 0.2070 +0 0.0956 +0 0.1621 +0 0.1314 +0 0.1594 +0 0.0995 +0 0.0653 +0 0.0711 +0 0.1236 +0 0.1176 +0 0.0493 +0 0.0892 +0 0.0734 +0 0.0389 +0 0.0731 +0 0.0533 +0 0.1517 +0 0.1088 +0 0.0774 +0 0.0886 +0 0.0880 +0 0.1370 +0 0.0811 +0 0.1140 +0 0.1291 +0 0.0769 +0 0.0905 +0 0.6651 +0 0.1068 +0 0.0810 +0 0.0981 +0 0.2222 +0 0.2012 +0 0.0938 +0 0.0371 +0 0.1718 +0 0.3266 +0 0.1197 +0 0.0716 +0 0.0553 +0 0.2299 +0 0.0689 +0 0.0695 +0 0.0636 +0 0.0801 +0 0.1038 +0 0.2933 +1 0.8511 +0 0.0658 +0 0.2158 +0 0.0872 +0 0.0886 +0 0.0479 +0 0.2749 +0 0.0583 +0 0.1658 +0 0.1740 +0 0.0848 +0 0.2698 +0 0.0402 +0 0.0845 +0 0.1389 +0 0.1156 +0 0.0830 +0 0.0591 +0 0.2223 +0 0.1845 +0 0.1347 +0 0.2971 +0 0.2614 +0 0.1626 +0 0.1387 +0 0.1691 +0 0.0711 +0 0.0785 +0 0.1568 +0 0.1334 +0 0.1476 +0 0.1539 +0 0.2038 +0 0.0835 +0 0.0827 +0 0.0428 +0 0.0822 +0 0.3523 +0 0.6586 +0 0.0832 +0 0.0717 +0 0.2395 +0 0.1961 +0 0.0890 +0 0.0753 +0 0.1589 +0 0.0668 +0 0.1387 +0 0.1444 +0 0.0751 +0 0.1060 +0 0.2239 +0 0.1549 +0 0.1699 +0 0.2003 +0 0.0889 +0 0.1058 +0 0.3130 +0 0.0298 +0 0.1058 +1 0.7545 +0 0.0923 +0 0.1662 +0 0.2309 +0 0.5335 +0 0.0905 +0 0.0840 +0 0.0759 +0 0.1621 +0 0.2036 +0 0.1198 +0 0.1519 +0 0.0722 +0 0.1013 +0 0.0588 +1 0.8664 +0 0.0598 +0 0.1777 +0 0.2463 +0 0.0629 +0 0.2667 +0 0.0744 +0 0.0412 +0 0.0703 +0 0.0862 +0 0.0720 +0 0.2104 +0 0.0625 +0 0.0928 +0 0.2072 +0 0.3561 +0 0.1421 +0 0.1603 +0 0.0740 +0 0.0549 +0 0.0664 +0 0.4062 +0 0.0749 +0 0.0489 +0 0.1420 +0 0.1228 +0 0.5637 +0 0.0645 +0 0.0370 +0 0.0932 +0 0.2105 +0 0.3811 +0 0.1417 +0 0.0859 +0 0.0871 +0 0.0303 +0 0.2364 +0 0.2041 +0 0.0583 +0 0.1406 +0 0.1661 +0 0.0523 +0 0.1030 +0 0.0407 +0 0.0351 +0 0.0680 +0 0.0836 +0 0.2510 +0 0.0451 +0 0.0746 +0 0.1043 +0 0.1121 +0 0.0534 +0 0.1544 +0 0.1765 +0 0.4351 +0 0.1038 +0 0.1198 +0 0.0429 +0 0.1360 +0 0.0818 +0 0.1122 +0 0.0998 +0 0.1631 +0 0.0657 +0 0.1137 +0 0.0741 +0 0.0945 +0 0.1090 +0 0.1260 +0 0.1099 +0 0.0411 +0 0.0636 +0 0.0429 +0 0.0688 +0 0.0919 +0 0.1123 +0 0.6170 +0 0.0919 +0 0.1331 +0 0.0516 +0 0.0473 +0 0.0862 +0 0.1578 +0 0.1303 +0 0.4839 +0 0.6211 +0 0.0896 +0 0.1399 +0 0.0808 +0 0.3941 +0 0.0753 +0 0.2025 +0 0.0734 +0 0.2758 +0 0.1904 +0 0.1599 +0 0.1876 +0 0.0557 +0 0.7102 +0 0.0987 +0 0.1167 +0 0.1275 +0 0.0754 +0 0.0951 +0 0.0787 +0 0.1722 +0 0.1084 +0 0.1145 +0 0.1064 +0 0.2042 +0 0.0736 +0 0.0393 +0 0.0879 +0 0.1085 +0 0.0844 +0 0.0476 +0 0.1795 +0 0.1549 +0 0.0633 +0 0.1626 +0 0.1127 +0 0.1142 +0 0.0729 +0 0.1860 +0 0.1056 +0 0.2138 +0 0.0841 +0 0.0868 +1 0.8071 +0 0.1327 +0 0.0762 +0 0.1170 +0 0.1880 +0 0.0620 +0 0.1247 +0 0.2001 +0 0.0379 +0 0.1074 +0 0.2008 +0 0.1239 +0 0.1455 +0 0.0888 +0 0.0453 +0 0.1850 +0 0.1360 +0 0.1114 +0 0.1134 +0 0.0877 +0 0.1326 +0 0.0646 +0 0.2036 +0 0.0983 +0 0.0851 +0 0.0958 +1 0.8032 +0 0.3188 +1 0.7516 +0 0.0887 +0 0.1196 +0 0.0726 +0 0.0454 +0 0.1706 +0 0.1078 +0 0.0938 +0 0.1778 +0 0.1068 +0 0.0897 +0 0.0825 +0 0.0489 +0 0.3190 +0 0.1589 +0 0.0390 +0 0.6307 +0 0.0836 +0 0.0625 +0 0.1329 +0 0.0987 +0 0.0959 +0 0.1521 +0 0.1390 +0 0.2485 +0 0.5508 +0 0.0603 +0 0.1072 +0 0.1138 +0 0.0886 +0 0.0721 +0 0.0480 +0 0.2843 +0 0.0829 +0 0.2650 +0 0.0813 +0 0.1105 +0 0.0574 +0 0.0801 +0 0.1328 +0 0.0732 +0 0.2073 +0 0.1140 +0 0.0747 +0 0.0823 +0 0.0870 +0 0.0880 +0 0.1266 +0 0.0812 +0 0.1200 +0 0.1914 +0 0.1263 +0 0.4533 +0 0.0980 +0 0.0796 +0 0.1503 +0 0.0630 +0 0.1046 +0 0.0431 +0 0.1000 +0 0.1112 +0 0.1779 +0 0.0554 +0 0.0498 +0 0.1851 +0 0.1755 +0 0.6124 +0 0.1460 +1 0.8116 +0 0.0467 +0 0.1762 +0 0.6507 +0 0.0572 +0 0.0617 +0 0.6011 +0 0.1761 +0 0.0841 +0 0.5922 +0 0.1593 +0 0.0886 +0 0.1524 +0 0.1247 +0 0.0769 +0 0.1635 +0 0.0958 +0 0.6455 +0 0.1189 +0 0.2422 +0 0.1248 +0 0.0563 +0 0.2006 +0 0.1657 +0 0.0650 +0 0.2329 +0 0.1016 +0 0.1774 +0 0.0652 +0 0.0714 +0 0.1058 +0 0.0439 +0 0.2999 +0 0.0760 +0 0.0931 +0 0.1192 +0 0.1760 +0 0.0658 +0 0.0782 +0 0.2349 +0 0.0338 +0 0.0534 +0 0.1969 +0 0.1606 +0 0.1054 +0 0.0305 +1 0.8181 +0 0.0802 +0 0.0634 +0 0.3165 +0 0.0554 +0 0.0617 +0 0.1464 +1 0.7992 +0 0.3976 +0 0.1105 +0 0.1243 +0 0.2909 +0 0.0633 +0 0.0904 +0 0.6001 +0 0.1031 +0 0.3794 +0 0.0547 +0 0.0487 +0 0.1410 +0 0.0512 +0 0.3383 +0 0.1038 +0 0.0820 +0 0.2213 +0 0.5496 +0 0.0829 +0 0.1385 +0 0.1646 +0 0.1631 +0 0.3281 +0 0.0851 +0 0.0616 +0 0.1081 +0 0.0940 +0 0.1006 +0 0.0606 +0 0.0574 +1 0.7818 +0 0.0971 +0 0.1029 +0 0.1936 +0 0.1305 +0 0.0632 +0 0.1400 +0 0.1004 +0 0.0711 +0 0.0645 +0 0.2529 +0 0.2083 +0 0.1002 +0 0.0711 +0 0.0453 +0 0.1291 +0 0.0766 +0 0.2180 +0 0.0544 +0 0.0660 +0 0.1098 +0 0.0586 +0 0.0712 +0 0.1313 +0 0.0372 +0 0.0885 +0 0.1091 +0 0.0358 +0 0.0771 +1 0.8643 +0 0.2234 +0 0.1179 +0 0.2566 +0 0.5312 +0 0.0930 +0 0.0634 +0 0.0607 +0 0.0610 +0 0.2124 +0 0.0880 +0 0.0922 +0 0.5935 +0 0.0888 +0 0.3233 +0 0.0763 +0 0.0872 +0 0.0770 +0 0.1622 +0 0.0366 +0 0.1035 +0 0.0418 +0 0.2083 +0 0.1592 +0 0.1895 +0 0.1953 +0 0.2180 +0 0.1997 +0 0.2204 +0 0.0730 +0 0.1380 +0 0.0805 +0 0.1928 +0 0.0889 +0 0.2193 +0 0.1264 +0 0.2294 +0 0.3319 +0 0.1138 +0 0.1282 +0 0.1508 +0 0.0704 +0 0.1299 +0 0.0811 +0 0.0824 +0 0.1875 +0 0.5926 +0 0.0718 +0 0.0923 +0 0.2015 +0 0.1128 +0 0.1224 +0 0.1825 +0 0.1157 +0 0.6217 +0 0.2946 +0 0.1689 +0 0.2559 +0 0.0747 +0 0.0561 +0 0.0939 +0 0.1547 +0 0.1546 +0 0.1360 +0 0.0438 +0 0.1329 +0 0.0831 +0 0.0392 +0 0.2780 +0 0.0748 +0 0.0609 +0 0.0548 +0 0.0611 +0 0.1714 +0 0.1784 +0 0.1282 +0 0.2397 +0 0.0727 +0 0.7045 +0 0.2524 +0 0.1473 +0 0.0773 +0 0.1066 +0 0.1150 +0 0.2214 +0 0.0956 +0 0.0936 +0 0.3089 +0 0.0837 +0 0.0719 +0 0.0829 +0 0.0595 +0 0.0603 +0 0.0417 +0 0.2245 +0 0.3947 +0 0.1726 +0 0.1200 +0 0.1047 +0 0.0877 +0 0.1414 +0 0.2222 +0 0.1205 +0 0.0533 +0 0.1471 +0 0.0786 +0 0.0956 +0 0.1001 +0 0.1021 +0 0.0934 +0 0.2393 +0 0.1731 +0 0.0785 +0 0.1277 +0 0.0642 +0 0.1811 +0 0.0892 +0 0.1504 +0 0.1196 +0 0.0976 +0 0.0820 +0 0.1192 +0 0.0571 +0 0.3220 +0 0.1547 +0 0.0614 +0 0.0831 +0 0.1136 +0 0.0958 +0 0.1160 +0 0.1268 +0 0.2040 +0 0.1343 +0 0.1751 +0 0.0521 +0 0.0450 +0 0.2111 +0 0.1027 +0 0.0371 +0 0.2309 +0 0.0914 +0 0.0466 +0 0.1956 +0 0.0483 +0 0.0719 +0 0.0602 +0 0.0702 +0 0.0796 +0 0.0782 +0 0.0314 +0 0.0349 +0 0.1624 +0 0.0814 +1 0.7558 +0 0.1452 +0 0.1591 +0 0.2220 +0 0.0558 +0 0.0660 +0 0.2699 +0 0.0562 +0 0.0894 +0 0.0405 +0 0.0621 +0 0.0747 +0 0.0872 +0 0.1457 +0 0.1052 +0 0.1998 +0 0.0814 +0 0.2418 +0 0.0722 +0 0.1930 +0 0.1695 +0 0.1452 +0 0.2392 +0 0.1250 +0 0.0570 +0 0.0868 +0 0.1198 +0 0.1225 +0 0.3718 +0 0.0688 +0 0.0645 +0 0.1427 +0 0.1520 +0 0.0732 +0 0.1688 +0 0.0645 +0 0.0696 +0 0.0500 +0 0.1184 +0 0.0921 +0 0.1910 +0 0.0777 +0 0.1895 +0 0.2105 +0 0.1775 +0 0.1329 +0 0.1172 +0 0.0710 +0 0.1775 +0 0.2340 +0 0.1512 +0 0.0641 +0 0.2287 +0 0.0458 +0 0.1240 +0 0.0457 +0 0.0881 +0 0.0730 +0 0.1028 +0 0.1902 +0 0.1106 +0 0.3059 +0 0.0553 +0 0.6192 +0 0.0820 +0 0.0612 +0 0.0466 +0 0.1374 +0 0.1233 +0 0.0812 +0 0.1298 +0 0.2099 +0 0.0598 +0 0.0434 +0 0.1011 +0 0.0687 +0 0.0770 +0 0.2124 +0 0.0561 +0 0.1116 +0 0.0764 +0 0.0564 +0 0.0846 +0 0.0790 +0 0.1028 +0 0.1854 +0 0.0850 +0 0.0717 +0 0.0536 +0 0.1463 +0 0.1309 +0 0.0990 +0 0.0451 +0 0.0399 +0 0.0724 +0 0.0877 +0 0.0469 +0 0.0639 +0 0.0396 +0 0.0455 +0 0.1335 +0 0.1838 +0 0.3734 +0 0.1048 +0 0.0779 +0 0.2596 +0 0.0732 +0 0.1286 +0 0.0777 +0 0.1861 +0 0.1687 +0 0.1114 +0 0.0793 +0 0.1193 +0 0.0746 +0 0.1269 +0 0.0666 +0 0.2028 +0 0.0658 +0 0.2147 +0 0.2004 +0 0.0614 +0 0.0380 +0 0.4126 +0 0.0845 +0 0.1397 +0 0.2155 +0 0.0821 +0 0.1561 +0 0.7043 +0 0.0960 +0 0.0655 +0 0.1137 +0 0.1985 +0 0.0798 +0 0.0706 +0 0.1037 +0 0.1359 +0 0.3284 +0 0.2141 +0 0.1239 +0 0.0447 +0 0.0809 +0 0.1503 +0 0.0990 +0 0.0827 +0 0.1745 +0 0.1580 +0 0.2037 +0 0.0864 +0 0.0431 +0 0.0845 +0 0.0395 +0 0.0681 +0 0.0788 +0 0.0981 +0 0.2829 +0 0.0819 +0 0.2108 +0 0.0314 +0 0.0590 +0 0.1599 +0 0.0519 +0 0.0872 +0 0.1288 +0 0.0326 +0 0.3340 +0 0.4083 +0 0.0709 +0 0.0759 +0 0.0445 +0 0.1013 +0 0.0577 +0 0.0555 +0 0.0623 +0 0.0468 +0 0.5072 +0 0.0620 +0 0.1628 +0 0.0869 +0 0.0675 +0 0.0845 +0 0.0586 +0 0.0768 +0 0.0541 +0 0.1007 +0 0.0594 +0 0.0543 +0 0.1584 +0 0.1006 +0 0.0852 +0 0.1268 +0 0.3665 +0 0.1827 +0 0.1380 +0 0.1450 +0 0.0527 +0 0.0730 +0 0.2783 +0 0.1805 +0 0.0841 +0 0.0967 +0 0.0840 +0 0.0737 +0 0.1831 +0 0.0475 +0 0.1163 +0 0.0604 +0 0.0734 +0 0.0508 +0 0.1063 +0 0.0605 +0 0.0528 +0 0.0946 +0 0.1236 +0 0.1332 +0 0.0480 +0 0.2318 +0 0.5554 +0 0.0762 +0 0.1228 +0 0.0696 +0 0.2070 +0 0.0466 +0 0.3381 +0 0.0981 +0 0.7037 +0 0.0320 +0 0.0778 +0 0.2498 +0 0.1229 +0 0.1018 +0 0.7062 +0 0.1462 +0 0.0965 +0 0.3500 +0 0.0956 +0 0.0770 +0 0.1267 +0 0.1092 +0 0.1068 +0 0.0981 +0 0.1262 +0 0.0553 +0 0.2761 +0 0.0823 +0 0.1546 +0 0.0512 +0 0.1321 +0 0.1106 +0 0.0957 +0 0.2393 +0 0.2148 +0 0.1971 +0 0.1023 +0 0.0879 +0 0.2006 +1 0.7999 +1 0.7802 +0 0.0532 +0 0.0464 +0 0.2023 +1 0.8682 +0 0.1786 +0 0.1067 +0 0.0636 +0 0.1332 +0 0.3385 +0 0.0472 +0 0.1277 +0 0.1509 +0 0.0590 +0 0.0683 +0 0.6357 +0 0.0324 +0 0.0459 +0 0.0292 +0 0.0389 +0 0.1135 +0 0.0739 +0 0.2138 +0 0.1082 +0 0.0654 +0 0.2237 +0 0.1555 +0 0.0900 +0 0.0423 +0 0.0895 +0 0.4754 +0 0.0899 +0 0.3613 +0 0.0723 +0 0.1172 +0 0.0692 +0 0.0661 +0 0.0781 +0 0.0629 +0 0.0710 +0 0.0848 +0 0.0655 +0 0.0695 +1 0.7720 +0 0.0826 +0 0.0856 +0 0.4889 +0 0.0676 +0 0.1303 +0 0.0716 +0 0.0948 +0 0.2001 +0 0.0570 +0 0.0547 +0 0.2322 +0 0.1232 +0 0.1307 +0 0.0444 +0 0.0598 +0 0.1554 +0 0.0388 +0 0.0348 +0 0.0812 +0 0.2206 +0 0.0896 +0 0.0810 +0 0.1500 +0 0.1174 +0 0.0922 +0 0.0997 +0 0.0753 +0 0.1616 +0 0.1554 +0 0.1518 +0 0.1079 +0 0.0964 +0 0.5587 +0 0.0486 +0 0.1404 +0 0.1624 +0 0.2521 +0 0.0609 +0 0.0787 +0 0.0505 +0 0.2217 +0 0.0863 +0 0.1188 +0 0.0812 +0 0.0957 +0 0.0687 +0 0.1100 +0 0.4734 +0 0.1508 +0 0.0924 +0 0.1068 +0 0.0370 +0 0.0873 +0 0.1661 +0 0.0617 +0 0.1193 +0 0.4273 +0 0.1140 +0 0.1553 +0 0.0590 +0 0.2624 +0 0.5026 +0 0.0617 +0 0.3866 +0 0.2402 +0 0.1522 +1 0.8667 +0 0.0644 +0 0.1851 +0 0.1415 +0 0.0610 +0 0.0995 +0 0.1641 +0 0.1114 +0 0.0802 +0 0.3354 +0 0.0664 +0 0.1205 +0 0.0623 +0 0.0599 +0 0.1960 +0 0.3882 +0 0.3196 +0 0.0893 +0 0.1402 +0 0.1256 +0 0.1181 +0 0.0812 +0 0.0793 +0 0.0501 +0 0.0578 +0 0.1157 +0 0.1718 +0 0.2083 +0 0.0864 +0 0.1836 +0 0.0410 +0 0.0789 +0 0.0758 +0 0.1662 +0 0.1113 +0 0.0769 +0 0.0850 +0 0.1659 +0 0.1718 +0 0.0715 +0 0.0840 +0 0.1442 +0 0.1565 +0 0.4877 +0 0.6349 +0 0.1282 +0 0.0525 +0 0.0823 +0 0.0631 +0 0.0851 +0 0.0623 +0 0.0684 +0 0.0934 +0 0.0876 +0 0.0515 +0 0.1431 +0 0.0775 +0 0.1705 +0 0.1495 +0 0.0612 +0 0.1554 +0 0.0761 +0 0.0695 +0 0.0624 +0 0.0786 +0 0.3545 +0 0.0469 +0 0.0849 +0 0.0487 +0 0.0782 +0 0.5970 +0 0.0776 +0 0.1058 +0 0.1266 +0 0.1227 +0 0.0344 +0 0.0547 +0 0.1748 +0 0.2562 +0 0.0856 +0 0.0494 +0 0.1459 +0 0.0923 +0 0.1123 +0 0.0831 +0 0.3450 +0 0.0844 +0 0.6863 +0 0.0647 +0 0.0783 +0 0.1803 +0 0.2107 +0 0.0955 +0 0.0931 +0 0.0396 +0 0.0966 +0 0.0725 +0 0.0969 +0 0.0564 +0 0.0584 +0 0.1731 +0 0.1041 +0 0.1862 +0 0.0539 +0 0.1350 +1 0.8675 +0 0.1121 +0 0.0732 +0 0.0405 +0 0.4034 +0 0.1423 +0 0.2122 +0 0.1112 +0 0.0946 +0 0.1350 +0 0.0851 +0 0.1172 +0 0.0824 +0 0.0585 +0 0.0504 +0 0.6148 +0 0.2559 +0 0.1395 +0 0.3451 +0 0.0634 +0 0.0298 +0 0.1781 +0 0.1037 +0 0.2187 +0 0.1857 +0 0.0543 +0 0.1596 +0 0.0521 +0 0.1871 +0 0.6656 +0 0.0701 +0 0.0638 +0 0.2420 +0 0.0949 +0 0.2278 +0 0.0790 +0 0.1664 +0 0.0554 +0 0.0705 +0 0.1383 +0 0.0823 +0 0.0867 +0 0.0595 +0 0.0729 +0 0.1313 +0 0.1592 +0 0.1593 +0 0.5941 +0 0.1318 +0 0.1303 +0 0.0342 +0 0.0342 +0 0.1744 +0 0.1795 +0 0.2888 +0 0.1834 +0 0.1065 +0 0.1277 +0 0.0683 +0 0.0744 +0 0.3282 +0 0.0442 +1 0.7673 +0 0.0857 +0 0.0830 +0 0.1218 +0 0.1928 +0 0.3107 +0 0.1031 +0 0.1181 +0 0.0660 +0 0.0601 +0 0.1974 +0 0.0647 +0 0.1002 +0 0.1186 +0 0.2787 +0 0.2431 +0 0.0504 +0 0.0891 +0 0.1341 +0 0.1069 +0 0.0601 +0 0.1190 +0 0.1037 +0 0.2167 +0 0.3052 +0 0.0612 +0 0.2475 +0 0.0351 +0 0.1367 +0 0.1204 +0 0.1149 +0 0.1199 +0 0.2472 +0 0.0454 +0 0.0360 +0 0.0460 +0 0.0788 +0 0.1564 +0 0.1078 +0 0.0579 +0 0.1326 +0 0.1422 +0 0.0714 +0 0.1457 +0 0.0478 +0 0.3215 +0 0.0352 +0 0.2464 +0 0.0614 +0 0.0881 +0 0.0613 +0 0.0534 +0 0.1129 +0 0.0617 +0 0.0596 +0 0.1260 +0 0.0820 +0 0.1137 +0 0.1607 +0 0.0611 +0 0.2936 +0 0.1116 +0 0.0636 +0 0.1164 +0 0.1196 +0 0.1041 +0 0.0592 +0 0.2149 +0 0.0633 +0 0.0576 +0 0.1367 +0 0.1072 +0 0.0414 +0 0.2280 +0 0.1056 +0 0.0998 +0 0.0631 +0 0.0650 +0 0.3383 +0 0.0963 +1 0.8018 +0 0.0437 +0 0.0518 +0 0.0825 +0 0.1001 +0 0.1690 +0 0.0759 +0 0.1414 +0 0.0513 +0 0.5348 +0 0.0980 +0 0.6314 +0 0.2166 +0 0.0594 +0 0.1319 +0 0.0930 +0 0.0865 +0 0.0395 +0 0.4173 +0 0.1055 +0 0.1253 +0 0.0696 +0 0.1034 +0 0.0549 +0 0.2442 +0 0.0765 +0 0.2328 +0 0.3298 +0 0.0670 +0 0.1102 +0 0.1070 +0 0.0731 +0 0.1014 +0 0.1298 +0 0.0941 +0 0.0493 +0 0.1759 +0 0.0409 +0 0.0552 +0 0.0522 +0 0.5581 +0 0.0669 +0 0.0542 +0 0.1631 +0 0.3121 +0 0.1588 +0 0.1656 +0 0.0929 +0 0.4512 +0 0.1784 +0 0.1349 +0 0.0285 +0 0.2781 +0 0.1406 +0 0.1399 +0 0.0844 +0 0.0722 +0 0.0940 +0 0.1351 +0 0.0652 +0 0.0698 +0 0.1265 +0 0.0769 +0 0.1455 +0 0.0837 +0 0.1877 +1 0.7826 +0 0.4215 +0 0.0683 +0 0.1357 +0 0.0916 +0 0.1155 +0 0.1578 +0 0.1414 +0 0.0798 +0 0.0851 +0 0.0807 +0 0.0893 +0 0.2320 +0 0.0837 +0 0.2310 +0 0.0689 +0 0.1323 +0 0.1084 +0 0.1169 +0 0.5679 +0 0.1071 +0 0.1823 +0 0.4933 +0 0.1020 +0 0.1330 +0 0.2533 +0 0.1476 +0 0.2130 +0 0.0632 +0 0.1014 +0 0.6518 +0 0.4113 +0 0.0434 +0 0.7019 +0 0.0764 +0 0.1093 +0 0.0965 +0 0.0638 +0 0.1022 +0 0.1905 +0 0.0717 +0 0.2406 +0 0.1241 +0 0.0958 +0 0.1256 +0 0.1574 +0 0.0802 +0 0.1008 +0 0.0891 +0 0.1154 +0 0.2229 +0 0.0617 +1 0.4349 +0 0.3665 +1 0.7788 +0 0.0797 +0 0.0554 +0 0.1683 +0 0.1598 +0 0.0534 +0 0.2285 +0 0.1176 +0 0.0917 +0 0.1917 +0 0.1816 +0 0.2371 +0 0.0781 +0 0.1858 +0 0.0433 +0 0.2838 +0 0.1137 +0 0.1922 +0 0.0838 +0 0.4284 +1 0.7914 +0 0.0587 +0 0.0981 +1 0.7645 +0 0.0728 +0 0.0876 +0 0.0360 +0 0.2613 +0 0.0700 +0 0.1935 +0 0.0410 +0 0.1077 +0 0.1174 +0 0.1294 +0 0.1377 +0 0.0460 +0 0.1335 +0 0.1036 +0 0.1383 +0 0.2426 +0 0.1409 +0 0.2393 +0 0.1074 +0 0.2783 +0 0.0591 +0 0.3730 +0 0.0640 +0 0.0743 +0 0.1091 +0 0.0883 +0 0.1384 +0 0.1023 +0 0.1149 +0 0.0452 +0 0.0900 +0 0.0567 +0 0.0771 +0 0.1453 +0 0.0743 +0 0.0788 +0 0.1421 +0 0.0474 +0 0.0975 +0 0.0591 +0 0.0789 +0 0.0853 +0 0.1456 +0 0.0791 +0 0.0536 +0 0.0393 +0 0.1572 +0 0.0622 +0 0.0581 +0 0.0974 +0 0.3613 +0 0.1014 +0 0.0987 +0 0.2282 +0 0.1909 +0 0.0530 +0 0.1152 +0 0.0421 +0 0.1453 +0 0.2140 +0 0.0970 +0 0.0593 +0 0.0983 +0 0.1713 +0 0.2736 +0 0.1090 +0 0.0975 +0 0.0864 +0 0.1138 +0 0.5553 +0 0.1052 +0 0.1954 +0 0.2495 +0 0.0456 +0 0.2200 +0 0.0922 +0 0.1124 +0 0.1784 +0 0.1094 +0 0.1791 +0 0.1120 +0 0.0952 +0 0.0571 +0 0.3589 +0 0.0850 +0 0.1585 +0 0.2299 +0 0.0402 +0 0.0550 +0 0.1322 +0 0.0909 +0 0.3609 +0 0.0943 +0 0.0858 +0 0.1004 +1 0.8555 +0 0.0667 +0 0.1180 +0 0.0680 +0 0.0501 +0 0.2330 +0 0.1342 +0 0.0459 +0 0.1662 +0 0.2721 +0 0.0736 +0 0.0572 +0 0.2963 +0 0.0844 +0 0.0661 +0 0.1234 +0 0.0658 +0 0.0984 +0 0.0725 +0 0.0410 +0 0.1799 +0 0.0671 +0 0.1166 +0 0.2334 +0 0.0841 +0 0.5143 +0 0.1269 +0 0.1741 +0 0.1152 +0 0.1535 +0 0.4137 +0 0.3266 +0 0.1685 +0 0.2873 +0 0.0674 +0 0.1058 +0 0.0770 +0 0.1128 +0 0.0986 +0 0.1240 +0 0.0706 +0 0.1204 +0 0.4808 +0 0.1217 +0 0.0870 +0 0.1525 +0 0.1105 +0 0.1309 +0 0.0881 +0 0.0737 +0 0.2436 +0 0.1509 +0 0.0985 +0 0.2057 +0 0.0882 +0 0.0516 +0 0.0616 +0 0.1119 +0 0.0543 +0 0.1081 +0 0.0583 +0 0.0627 +0 0.0903 +0 0.5268 +0 0.0489 +0 0.1096 +0 0.0514 +0 0.0865 +0 0.4552 +1 0.8098 +0 0.0608 +0 0.1565 +0 0.0514 +0 0.0922 +0 0.0779 +0 0.0783 +0 0.0633 +0 0.1004 +0 0.1053 +0 0.2345 +0 0.1381 +0 0.1477 +0 0.0494 +0 0.0766 +0 0.0413 +0 0.0647 +0 0.1245 +0 0.0996 +0 0.0799 +0 0.1001 +0 0.1095 +0 0.1168 +0 0.0847 +0 0.1221 +0 0.2543 +0 0.0849 +0 0.0793 +0 0.0788 +0 0.1220 +0 0.1154 +0 0.1524 +0 0.1955 +0 0.1397 +0 0.1515 +0 0.0730 +0 0.0810 +0 0.1187 +0 0.1210 +0 0.1824 +0 0.0909 +0 0.1580 +0 0.0937 +0 0.0746 +0 0.0943 +0 0.1021 +0 0.0915 +0 0.1315 +0 0.2638 +0 0.0671 +0 0.1692 +0 0.1822 +0 0.0557 +0 0.0765 +0 0.0422 +0 0.0993 +0 0.1448 +0 0.0609 +0 0.2246 +0 0.0896 +0 0.1029 +0 0.1172 +0 0.0577 +0 0.1238 +0 0.2748 +0 0.2850 +0 0.0558 +0 0.1114 +0 0.0862 +0 0.0438 +0 0.0356 +0 0.0933 +0 0.1121 +0 0.0978 +0 0.2552 +0 0.0511 +0 0.0885 +0 0.6410 +0 0.1097 +0 0.7477 +0 0.1696 +0 0.1262 +0 0.3055 +0 0.1724 +0 0.2491 +0 0.0546 +0 0.1082 +0 0.3757 +0 0.0568 +0 0.1593 +0 0.0911 +0 0.3386 +0 0.0993 +0 0.0604 +0 0.0641 +0 0.0666 +0 0.2608 +0 0.0997 +0 0.0680 +0 0.1154 +0 0.0927 +0 0.1583 +0 0.0706 +0 0.1070 +0 0.1090 +0 0.0853 +0 0.0967 +0 0.1033 +0 0.7271 +0 0.2328 +0 0.2527 +0 0.0942 +0 0.0886 +0 0.0442 +0 0.2041 +0 0.0826 +0 0.0478 +0 0.0731 +0 0.1202 +0 0.0869 +0 0.0714 +0 0.1910 +0 0.2893 +0 0.0538 +0 0.2702 +0 0.1906 +0 0.1129 +0 0.0736 +0 0.1197 +0 0.2518 +0 0.0903 +0 0.1024 +0 0.2138 +0 0.1469 +0 0.1057 +0 0.1238 +0 0.1467 +0 0.0626 +0 0.1042 +0 0.1175 +0 0.1123 +0 0.0734 +0 0.2280 +0 0.0746 +0 0.1596 +0 0.1805 +0 0.5762 +0 0.1009 +0 0.1200 +0 0.0467 +0 0.1496 +0 0.2404 +0 0.0825 +0 0.2511 +0 0.0751 +0 0.2199 +0 0.2023 +0 0.0462 +0 0.0779 +0 0.0442 +0 0.6740 +0 0.1080 +0 0.0380 +0 0.2047 +0 0.1070 +0 0.0580 +0 0.1572 +0 0.0813 +0 0.1277 +0 0.1054 +0 0.1353 +0 0.0826 +0 0.7280 +0 0.1061 +0 0.4172 +0 0.1479 +0 0.3609 +0 0.2405 +0 0.0284 +0 0.1050 +0 0.1267 +0 0.1155 +0 0.1646 +0 0.0567 +0 0.3410 +0 0.0774 +0 0.0959 +0 0.1026 +0 0.1604 +0 0.0560 +0 0.0574 +0 0.0983 +0 0.4759 +0 0.0709 +0 0.1466 +0 0.0615 +0 0.0903 +0 0.1386 +0 0.0977 +0 0.0551 +0 0.0678 +0 0.1098 +0 0.1367 +0 0.0923 +0 0.1104 +0 0.0636 +0 0.1379 +0 0.1888 +0 0.0511 +0 0.3470 +0 0.2045 +0 0.0434 +0 0.1111 +0 0.0714 +0 0.1500 +0 0.0666 +0 0.6498 +0 0.2167 +0 0.0537 +0 0.0662 +0 0.0597 +0 0.4940 +0 0.0994 +0 0.0519 +0 0.0665 +0 0.1091 +0 0.0472 +0 0.0853 +0 0.1538 +0 0.7106 +0 0.0463 +0 0.1140 +0 0.0728 +0 0.1165 +0 0.0936 +0 0.1945 +0 0.0470 +0 0.0798 +0 0.0789 +0 0.1234 +0 0.0583 +0 0.1046 +0 0.1123 +0 0.1851 +0 0.0822 +0 0.0766 +0 0.0552 +0 0.0788 +0 0.1701 +0 0.0791 +0 0.1014 +0 0.1196 +0 0.6602 +0 0.1017 +0 0.1506 +0 0.2366 +0 0.0412 +0 0.0588 +0 0.0604 +0 0.0824 +0 0.3695 +0 0.0555 +0 0.0387 +0 0.6841 +0 0.1244 +0 0.0437 +0 0.3722 +0 0.1283 +0 0.1599 +0 0.0667 +0 0.0806 +0 0.1717 +0 0.0780 +0 0.0510 +0 0.0437 +0 0.1026 +0 0.0693 +0 0.0759 +0 0.1742 +0 0.0356 +0 0.0689 +0 0.0757 +0 0.1767 +0 0.1088 +0 0.6318 +0 0.0613 +0 0.1391 +0 0.3114 +0 0.4805 +0 0.3369 +0 0.1075 +0 0.1091 +0 0.1364 +0 0.0706 +0 0.0641 +0 0.1260 +0 0.0391 +0 0.0492 +0 0.1108 +0 0.2010 +0 0.0563 +0 0.0651 +0 0.1098 +0 0.1257 +0 0.1910 +0 0.1411 +0 0.1393 +0 0.0420 +0 0.3541 +0 0.3348 +0 0.0960 +0 0.3366 +0 0.1820 +0 0.1392 +0 0.3775 +0 0.0669 +0 0.0938 +0 0.0752 +0 0.1724 +0 0.1229 +0 0.1637 +0 0.2671 +0 0.1953 +0 0.1971 +0 0.1724 +0 0.0992 +0 0.1289 +0 0.1148 +0 0.1118 +0 0.2092 +0 0.1738 +1 0.8241 +0 0.0534 +0 0.0607 +0 0.1057 +0 0.1889 +0 0.0661 +0 0.0625 +0 0.0863 +0 0.0535 +0 0.0489 +0 0.3113 +0 0.0917 +0 0.6398 +0 0.0434 +0 0.1479 +0 0.0971 +0 0.1171 +0 0.0860 +0 0.2784 +0 0.1367 +0 0.6917 +0 0.0643 +0 0.0700 +0 0.3473 +0 0.2292 +0 0.0877 +0 0.1714 +0 0.1236 +0 0.0558 +0 0.1914 +0 0.3209 +0 0.2445 +0 0.1171 +0 0.1350 +0 0.1175 +0 0.2386 +0 0.4076 +0 0.1140 +0 0.0742 +0 0.1403 +0 0.0673 +0 0.1089 +0 0.0367 +0 0.0488 +0 0.0379 +0 0.0857 +0 0.0395 +0 0.0885 +0 0.1554 +0 0.1001 +0 0.0639 +0 0.4354 +0 0.0724 +0 0.3234 +0 0.1567 +1 0.8334 +0 0.0450 +0 0.1315 +0 0.3558 +0 0.2406 +0 0.1835 +0 0.0733 +0 0.0489 +0 0.0764 +0 0.0812 +0 0.2338 +0 0.7038 +0 0.0843 +0 0.1350 +0 0.0751 +0 0.0693 +0 0.0639 +0 0.0639 +0 0.0622 +0 0.0344 +0 0.0470 +0 0.1860 +0 0.1158 +0 0.0636 +0 0.0451 +0 0.0326 +0 0.0771 +0 0.2343 +0 0.1765 +0 0.3928 +0 0.0698 +0 0.1642 +0 0.2401 +0 0.1320 +0 0.1452 +0 0.1035 +0 0.1849 +0 0.2428 +0 0.1039 +0 0.1201 +0 0.3524 +0 0.0631 +0 0.1410 +0 0.1043 +0 0.1364 +0 0.1217 +0 0.2000 +0 0.1071 +0 0.0584 +0 0.1426 +0 0.2471 +0 0.0761 +0 0.1784 +0 0.0810 +0 0.2479 +0 0.0440 +0 0.0692 +0 0.1441 +0 0.1885 +0 0.2316 +0 0.1611 +0 0.1097 +0 0.5017 +0 0.0668 +0 0.0955 +0 0.0973 +0 0.2832 +0 0.0636 +0 0.1392 +0 0.0665 +0 0.1001 +0 0.0815 +0 0.2090 +0 0.5817 +0 0.0558 +0 0.0711 +0 0.0655 +0 0.0782 +0 0.0619 +0 0.0460 +0 0.1643 +0 0.3902 +0 0.5917 +0 0.0989 +0 0.0643 +0 0.0535 +0 0.0866 +0 0.0796 +0 0.1949 +0 0.1394 +0 0.0674 +0 0.1644 +0 0.1398 +0 0.1299 +0 0.1405 +0 0.2598 +0 0.0936 +0 0.2470 +0 0.1205 +0 0.0566 +0 0.0457 +1 0.3591 +0 0.0642 +0 0.4619 +0 0.0820 +0 0.1746 +0 0.0766 +0 0.0827 +0 0.0563 +0 0.6420 +0 0.1199 +0 0.1745 +0 0.0996 +0 0.0990 +0 0.1735 +0 0.0687 +0 0.1008 +0 0.2168 +0 0.0692 +0 0.0662 +0 0.0622 +0 0.1150 +0 0.0540 +0 0.1332 +0 0.0948 +0 0.0905 +0 0.1205 +0 0.0893 +0 0.0684 +0 0.0497 +0 0.0635 +0 0.0811 +0 0.1864 +0 0.0545 +0 0.5207 +0 0.0554 +0 0.2413 +0 0.1090 +0 0.1814 +0 0.1261 +0 0.0839 +0 0.0734 +0 0.0792 +0 0.0336 +0 0.1035 +0 0.1222 +0 0.1100 +0 0.0730 +0 0.0336 +0 0.1893 +0 0.0918 +0 0.0785 +0 0.1135 +0 0.1198 +0 0.0886 +0 0.0890 +0 0.0864 +0 0.1818 +0 0.1186 +0 0.0481 +0 0.0457 +0 0.1230 +0 0.0666 +0 0.0951 +0 0.0879 +0 0.0776 +0 0.1382 +0 0.1022 +0 0.1656 +0 0.1177 +0 0.1188 +0 0.3346 +0 0.1258 +0 0.1322 +0 0.0822 +0 0.0737 +0 0.3035 +0 0.1204 +0 0.0796 +0 0.1792 +0 0.3411 +0 0.0696 +0 0.1381 +0 0.0847 +0 0.1329 +0 0.0726 +0 0.1800 +0 0.0921 +0 0.0619 +0 0.0610 +0 0.0723 +0 0.2421 +0 0.0963 +0 0.1143 +0 0.1151 +0 0.4847 +0 0.0683 +0 0.0459 +0 0.2204 +0 0.1114 +0 0.0334 +0 0.1303 +0 0.0534 +0 0.2515 +0 0.1044 +0 0.0711 +0 0.0796 +0 0.0716 +0 0.0578 +0 0.7087 +0 0.0615 +0 0.2989 +0 0.1189 +0 0.1306 +0 0.0582 +0 0.0703 +0 0.2761 +0 0.0803 +0 0.1045 +0 0.1597 +0 0.1481 +0 0.0557 +0 0.2249 +0 0.2005 +0 0.0817 +0 0.0944 +0 0.2309 +0 0.3093 +0 0.1362 +0 0.0911 +0 0.1260 +1 0.8074 +0 0.1068 +0 0.2085 +0 0.3646 +0 0.1368 +0 0.1627 +0 0.1411 +0 0.2132 +0 0.0436 +0 0.0656 +0 0.2040 +0 0.0699 +0 0.1679 +0 0.2262 +0 0.0536 +0 0.1965 +0 0.1396 +0 0.1244 +0 0.0935 +0 0.1014 +0 0.1082 +0 0.0906 +0 0.1093 +0 0.0563 +0 0.0831 +0 0.1995 +0 0.1555 +0 0.0863 +0 0.4129 +0 0.1003 +0 0.4323 +0 0.0691 +0 0.0410 +0 0.1468 +0 0.2466 +0 0.1386 +0 0.0837 +0 0.3516 +0 0.0961 +0 0.0731 +0 0.1584 +0 0.0487 +0 0.0966 +0 0.0645 +0 0.2660 +0 0.0639 +0 0.0997 +0 0.2030 +0 0.1116 +0 0.1055 +1 0.7890 +0 0.0566 +0 0.1485 +0 0.0853 +0 0.1218 +0 0.0517 +0 0.0590 +0 0.5789 +0 0.1102 +0 0.2994 +0 0.1183 +0 0.0637 +0 0.1944 +0 0.0763 +0 0.1598 +0 0.1429 +0 0.1829 +0 0.1054 +0 0.0741 +0 0.0801 +0 0.0871 +0 0.1120 +0 0.0849 +0 0.1303 +0 0.1358 +0 0.4665 +0 0.0588 +0 0.1225 +0 0.2149 +0 0.3156 +0 0.0517 +0 0.0958 +0 0.0961 +0 0.0708 +0 0.0346 +0 0.0289 +0 0.1182 +0 0.0969 +0 0.1928 +0 0.1301 +0 0.0581 +0 0.0553 +0 0.1460 +0 0.0740 +0 0.0553 +0 0.0871 +0 0.1002 +0 0.1087 +0 0.0506 +1 0.7790 +0 0.1898 +0 0.1892 +0 0.0363 +0 0.1825 +0 0.0660 +0 0.1758 +0 0.6818 +0 0.1009 +0 0.0570 +0 0.1104 +0 0.2424 +0 0.1461 +0 0.1225 +0 0.1667 +0 0.0807 +0 0.0682 +0 0.1513 +0 0.1165 +0 0.0974 +0 0.2036 +0 0.0589 +0 0.2406 +0 0.3231 +0 0.1595 +0 0.1614 +0 0.1179 +0 0.7217 +0 0.0812 +0 0.1248 +0 0.0450 +0 0.0716 +0 0.1273 +0 0.0954 +0 0.0460 +0 0.0414 +0 0.3070 +0 0.0484 +0 0.3262 +0 0.0884 +0 0.0721 +0 0.2162 +0 0.0611 +0 0.1227 +0 0.0533 +0 0.1176 +0 0.1164 +0 0.0792 +0 0.0575 +0 0.5406 +0 0.0984 +0 0.1916 +0 0.0370 +0 0.3053 +0 0.3037 +0 0.0977 +0 0.0975 +0 0.1415 +0 0.6211 +0 0.0825 +0 0.1327 +0 0.1111 +0 0.1285 +0 0.0708 +0 0.0862 +0 0.0777 +0 0.1926 +0 0.1601 +0 0.0370 +0 0.1970 +0 0.0731 +0 0.1006 +0 0.2221 +0 0.1666 +0 0.5391 +0 0.0740 +0 0.0661 +1 0.8523 +0 0.1720 +0 0.0504 +0 0.2366 +0 0.1827 +0 0.1208 +0 0.1747 +0 0.2518 +0 0.2119 +0 0.0535 +0 0.1617 +0 0.0929 +0 0.0392 +0 0.0749 +0 0.0992 +0 0.2040 +0 0.4633 +0 0.0763 +0 0.0578 +0 0.1220 +0 0.0621 +0 0.1486 +0 0.0454 +0 0.1861 +0 0.1445 +0 0.0669 +0 0.3635 +0 0.0836 +0 0.1871 +0 0.1919 +0 0.0998 +0 0.1442 +0 0.2007 +0 0.2570 +0 0.2096 +0 0.1695 +0 0.1093 +0 0.1215 +0 0.2509 +0 0.2418 +0 0.0819 +0 0.0620 +0 0.1311 +0 0.2324 +0 0.0437 +0 0.0477 +0 0.1539 +0 0.2633 +0 0.0463 +0 0.0791 +0 0.2345 +0 0.0462 +0 0.0634 +0 0.0685 +0 0.6734 +0 0.1268 +0 0.0424 +0 0.0831 +0 0.1696 +0 0.0854 +0 0.0755 +0 0.3049 +0 0.0573 +0 0.2482 +0 0.3998 +0 0.1509 +0 0.0943 +0 0.1727 +0 0.0952 +0 0.0792 +0 0.0777 +0 0.0482 +0 0.1675 +0 0.1308 +0 0.0881 +0 0.1452 +0 0.0760 +0 0.1600 +0 0.0705 +0 0.1834 +0 0.0691 +0 0.0863 +0 0.1057 +0 0.0603 +0 0.0501 +0 0.1692 +0 0.0976 +0 0.1442 +0 0.0639 +0 0.1670 +0 0.1229 +0 0.4888 +0 0.1134 +0 0.1444 +0 0.0749 +0 0.1315 +0 0.0375 +0 0.0608 +0 0.1238 +0 0.4962 +0 0.0891 +0 0.0805 +0 0.1131 +0 0.0618 +0 0.1133 +0 0.1001 +0 0.1027 +0 0.1040 +0 0.0384 +0 0.0709 +0 0.0499 +0 0.3403 +0 0.2987 +0 0.0675 +0 0.0719 +0 0.0456 +0 0.0664 +0 0.0864 +0 0.0327 +0 0.1029 +0 0.0483 +0 0.0943 +0 0.0296 +0 0.0500 +0 0.0887 +0 0.1770 +0 0.3049 +0 0.0962 +0 0.0502 +0 0.0373 +0 0.0967 +0 0.0619 +0 0.3932 +0 0.1195 +0 0.0737 +0 0.0848 +0 0.1456 +0 0.2527 +0 0.0726 +0 0.0729 +0 0.0723 +0 0.0517 +0 0.0826 +0 0.1263 +0 0.1114 +0 0.1926 +0 0.0863 +0 0.0341 +0 0.1324 +0 0.1192 +0 0.0567 +0 0.0911 +0 0.1334 +0 0.0615 +0 0.0611 +0 0.1557 +0 0.1078 +0 0.4128 +0 0.0864 +0 0.1157 +0 0.0949 +0 0.2518 +0 0.1726 +0 0.1207 +0 0.0581 +0 0.2212 +0 0.0410 +0 0.1277 +0 0.0959 +0 0.4647 +0 0.0323 +0 0.0653 +0 0.0652 +0 0.0890 +0 0.6946 +0 0.1279 +0 0.0916 +0 0.0933 +0 0.1326 +0 0.0635 +0 0.3281 +0 0.6732 +0 0.4129 +0 0.0408 +0 0.1107 +0 0.1782 +0 0.0677 +0 0.1322 +0 0.1023 +0 0.0447 +0 0.1657 +0 0.0324 +0 0.0611 +0 0.1140 +0 0.0440 +0 0.2267 +0 0.0723 +0 0.0760 +0 0.0500 +1 0.7639 +0 0.0555 +0 0.1525 +0 0.0420 +0 0.2161 +0 0.0616 +0 0.0912 +0 0.3128 +0 0.0454 +0 0.0898 +0 0.0922 +0 0.1567 +0 0.1035 +0 0.0595 +0 0.0988 +0 0.0933 +0 0.3344 +0 0.0504 +0 0.5707 +0 0.0997 +0 0.1041 +0 0.1897 +0 0.2633 +0 0.1094 +0 0.1314 +0 0.2035 +0 0.1837 +0 0.1284 +0 0.6197 +0 0.1542 +0 0.0580 +0 0.0303 +0 0.0849 +0 0.1149 +0 0.0686 +0 0.1375 +0 0.1884 +0 0.2624 +0 0.0490 +0 0.0492 +0 0.0456 +0 0.0974 +0 0.0854 +0 0.6234 +0 0.2573 +0 0.0575 +0 0.3977 +0 0.0499 +0 0.1771 +0 0.1538 +0 0.0548 +1 0.8011 +0 0.6106 +0 0.1189 +0 0.1375 +0 0.0382 +0 0.1019 +0 0.0733 +0 0.0661 +0 0.0854 +1 0.7679 +0 0.0761 +0 0.1046 +0 0.0334 +0 0.2188 +0 0.0911 +0 0.0696 +0 0.0817 +0 0.0381 +0 0.1177 +0 0.1083 +0 0.1155 +0 0.0716 +0 0.0397 +0 0.0998 +0 0.1087 +0 0.0873 +0 0.1064 +0 0.1306 +0 0.0977 +0 0.1856 +0 0.0710 +0 0.2955 +0 0.0949 +0 0.0927 +0 0.0651 +0 0.1428 +0 0.1328 +0 0.2128 +0 0.1311 +0 0.0472 +0 0.1221 +0 0.2666 +0 0.0842 +0 0.0827 +0 0.0960 +0 0.0621 +0 0.1452 +0 0.0532 +0 0.0598 +0 0.2489 +0 0.2376 +0 0.4507 +0 0.1785 +0 0.0470 +0 0.0988 +0 0.0869 +0 0.0897 +0 0.2303 +0 0.0858 +0 0.1742 +0 0.0485 +0 0.0985 +0 0.0609 +0 0.1365 +0 0.1036 +0 0.0580 +0 0.1804 +0 0.0692 +0 0.0685 +0 0.0709 +0 0.0719 +0 0.1428 +0 0.1379 +0 0.0778 +0 0.0753 +0 0.0519 +0 0.1400 +0 0.1938 +0 0.1661 +0 0.0505 +0 0.1309 +0 0.1061 +0 0.0553 +0 0.0582 +0 0.0658 +0 0.0978 +0 0.0583 +0 0.0761 +0 0.0895 +0 0.0799 +0 0.0983 +0 0.0606 +0 0.2391 +0 0.0769 +0 0.0654 +0 0.1065 +0 0.1654 +0 0.1350 +0 0.0996 +0 0.0534 +0 0.1139 +0 0.0593 +0 0.0539 +0 0.1226 +0 0.4931 +0 0.0912 +0 0.2640 +0 0.0507 +0 0.0608 +0 0.1842 +0 0.2057 +0 0.0656 +0 0.1849 +0 0.2182 +0 0.2095 +0 0.0594 +0 0.1304 +0 0.0786 +0 0.0496 +0 0.2330 +0 0.0584 +0 0.1749 +0 0.0531 +0 0.1460 +0 0.0709 +0 0.0437 +0 0.0553 +0 0.1846 +0 0.1388 +0 0.4910 +0 0.0603 +0 0.1007 +0 0.0840 +0 0.1026 +0 0.0882 +0 0.0356 +0 0.0735 +0 0.0890 +0 0.3937 +0 0.0796 +0 0.1806 +0 0.0723 +0 0.0506 +0 0.0752 +0 0.0379 +0 0.0879 +0 0.1331 +0 0.0799 +0 0.0908 +0 0.1311 +0 0.1827 +0 0.0550 +0 0.0704 +0 0.0442 +0 0.0603 +0 0.0664 +0 0.0603 +0 0.1997 +0 0.0555 +0 0.0766 +0 0.1600 +0 0.1053 +0 0.0754 +0 0.0405 +0 0.1509 +0 0.2612 +0 0.1179 +0 0.0511 +0 0.1029 +0 0.0619 +0 0.1815 +0 0.1412 +0 0.1315 +0 0.1179 +0 0.4826 +0 0.1724 +0 0.1078 +0 0.0703 +0 0.1731 +0 0.3604 +0 0.1616 +0 0.3014 +0 0.1428 +0 0.5614 +0 0.2905 +0 0.1364 +0 0.0531 +0 0.1280 +0 0.0474 +0 0.1751 +0 0.1518 +0 0.1151 +0 0.1561 +0 0.0866 +0 0.1739 +0 0.1498 +0 0.1505 +0 0.0964 +0 0.5793 +0 0.2438 +0 0.1154 +0 0.0615 +0 0.1056 +0 0.2521 +0 0.1055 +0 0.2995 +0 0.5799 +0 0.5947 +0 0.1415 +0 0.0880 +0 0.1525 +0 0.0918 +0 0.1623 +0 0.0876 +0 0.1600 +0 0.0840 +0 0.0573 +0 0.0938 +0 0.1599 +0 0.0895 +0 0.0569 +0 0.0807 +0 0.1211 +0 0.0418 +0 0.0796 +0 0.0488 +0 0.0896 +0 0.1144 +0 0.1485 +0 0.0683 +0 0.1540 +0 0.4969 +0 0.1057 +0 0.1807 +0 0.1025 +0 0.2285 +0 0.2385 +0 0.5580 +0 0.1001 +0 0.2685 +0 0.0660 +0 0.0696 +0 0.1217 +0 0.1313 +0 0.0670 +0 0.1252 +0 0.2686 +0 0.1061 +0 0.1774 +0 0.0593 +0 0.0920 +0 0.1478 +0 0.1523 +0 0.2205 +0 0.1167 +0 0.1373 +0 0.0745 +0 0.0825 +0 0.0763 +0 0.0476 +0 0.1195 +0 0.1568 +0 0.1708 +0 0.2587 +0 0.0488 +0 0.0960 +0 0.1053 +0 0.1001 +0 0.0952 +0 0.0957 +0 0.2265 +0 0.0830 +0 0.5943 +0 0.0940 +0 0.1929 +0 0.1717 +0 0.2105 +0 0.0872 +0 0.1469 +0 0.0961 +0 0.0916 +0 0.1622 +0 0.1016 +0 0.0799 +0 0.0459 +0 0.1301 +0 0.0715 +0 0.0426 +0 0.2674 +0 0.0495 +0 0.2013 +0 0.1176 +0 0.0710 +0 0.0675 +0 0.1086 +0 0.2513 +0 0.1531 +0 0.1292 +0 0.0949 +0 0.2503 +0 0.0889 +0 0.1431 +0 0.1768 +0 0.1211 +0 0.1240 +0 0.0378 +0 0.1050 +0 0.3851 +0 0.1621 +0 0.0557 +0 0.1575 +0 0.6339 +0 0.1734 +0 0.0600 +0 0.1306 +0 0.1918 +0 0.1148 +0 0.1795 +0 0.0867 +0 0.0639 +0 0.1012 +0 0.1062 +0 0.0612 +0 0.1146 +0 0.0635 +0 0.1214 +0 0.1344 +0 0.3070 +0 0.3080 +0 0.4448 +0 0.1491 +0 0.1215 +0 0.1965 +0 0.1436 +0 0.0761 +0 0.6423 +1 0.7864 +0 0.0576 +0 0.0695 +0 0.1627 +0 0.0601 +0 0.0493 +0 0.0415 +0 0.1175 +0 0.2050 +0 0.1507 +0 0.1412 +0 0.0701 +0 0.0927 +0 0.1314 +0 0.1348 +0 0.0748 +0 0.4962 +0 0.0970 +0 0.1321 +0 0.2105 +0 0.1153 +0 0.0924 +0 0.2777 +0 0.1242 +0 0.0634 +0 0.0486 +0 0.0594 +0 0.1206 +0 0.0952 +0 0.0847 +0 0.0470 +1 0.8341 +0 0.0953 +0 0.1281 +0 0.1017 +0 0.0703 +0 0.1634 +0 0.1163 +0 0.0534 +0 0.2040 +0 0.3613 +0 0.0757 +0 0.0847 +0 0.0660 +0 0.0884 +0 0.2532 +0 0.0699 +0 0.1562 +0 0.0751 +0 0.1060 +0 0.0842 +0 0.0749 +0 0.2253 +0 0.0853 +0 0.1747 +0 0.0536 +0 0.5729 +0 0.3966 +0 0.2252 +0 0.1091 +0 0.0725 +0 0.4965 +0 0.4048 +0 0.1173 +0 0.3655 +0 0.1125 +0 0.0991 +0 0.1613 +0 0.0538 +0 0.1003 +0 0.3771 +0 0.0394 +0 0.0939 +0 0.0664 +0 0.1052 +0 0.0385 +0 0.1124 +0 0.1145 +0 0.0642 +0 0.1946 +0 0.0789 +0 0.1220 +0 0.1618 +0 0.0693 +0 0.0818 +0 0.2215 +0 0.2870 +0 0.0850 +0 0.1142 +0 0.4485 +0 0.1177 +0 0.2450 +0 0.0896 +0 0.2865 +0 0.0613 +0 0.1276 +0 0.0591 +0 0.1143 +0 0.0541 +0 0.2131 +0 0.0466 +0 0.1339 +0 0.1460 +0 0.1502 +0 0.1052 +0 0.0514 +0 0.1115 +0 0.0523 +0 0.0656 +0 0.0655 +0 0.1205 +0 0.1653 +0 0.1270 +0 0.1543 +0 0.1196 +0 0.3139 +0 0.1394 +0 0.3007 +0 0.0537 +0 0.2419 +1 0.8791 +0 0.0923 +0 0.0551 +0 0.0476 +0 0.4275 +0 0.1533 +0 0.1378 +0 0.0693 +0 0.1107 +0 0.0849 +0 0.0995 +0 0.0976 +0 0.0392 +0 0.1867 +0 0.1338 +0 0.0849 +0 0.1115 +0 0.2408 +0 0.0483 +0 0.0827 +0 0.0538 +0 0.1276 +0 0.0657 +0 0.0478 +0 0.1268 +0 0.2799 +0 0.1046 +0 0.0774 +0 0.1893 +0 0.5891 +0 0.0714 +0 0.1205 +0 0.6952 +0 0.1092 +0 0.0503 +0 0.0921 +0 0.0867 +0 0.1016 +0 0.2289 +0 0.1535 +0 0.0413 +0 0.0981 +0 0.0448 +0 0.0863 +0 0.3904 +0 0.1179 +0 0.0897 +0 0.0607 +0 0.6416 +0 0.1023 +0 0.1186 +0 0.0991 +0 0.1127 +0 0.1151 +0 0.0620 +0 0.1003 +0 0.1923 +0 0.1548 +0 0.0538 +0 0.1602 +0 0.0474 +0 0.1487 +0 0.1122 +0 0.1514 +0 0.1647 +0 0.0542 +0 0.0513 +1 0.8020 +0 0.0348 +0 0.1854 +0 0.5264 +0 0.0690 +0 0.1170 +0 0.0514 +0 0.1898 +0 0.0825 +0 0.0714 +0 0.0616 +0 0.1068 +0 0.2251 +0 0.0598 +0 0.1041 +0 0.0604 +0 0.2043 +0 0.0944 +0 0.1012 +0 0.0823 +0 0.0827 +0 0.1049 +0 0.0932 +0 0.0844 +0 0.0967 +0 0.1127 +0 0.0977 +0 0.2313 +0 0.1138 +0 0.0945 +0 0.0651 +0 0.0919 +0 0.1211 +0 0.2712 +0 0.0393 +0 0.0852 +0 0.0658 +0 0.0763 +0 0.0777 +0 0.0482 +0 0.0977 +0 0.1140 +0 0.1068 +0 0.0424 +0 0.1277 +0 0.0697 +0 0.0669 +0 0.1735 +0 0.6566 +0 0.0948 +0 0.1539 +0 0.1461 +0 0.1891 +1 0.8288 +0 0.1803 +0 0.0315 +0 0.7116 +0 0.0754 +0 0.2880 +0 0.1725 +0 0.1284 +0 0.1293 +0 0.1647 +0 0.2376 +0 0.1571 +0 0.1853 +1 0.8586 +0 0.0480 +0 0.0581 +0 0.0617 +0 0.2238 +0 0.3741 +0 0.1483 +0 0.0492 +0 0.4741 +0 0.0659 +0 0.1476 +0 0.0631 +0 0.0802 +0 0.1603 +0 0.1775 +0 0.0504 +0 0.0423 +0 0.0916 +0 0.1216 +0 0.1944 +0 0.0483 +0 0.1687 +0 0.1148 +0 0.5427 +0 0.0950 +0 0.1589 +0 0.1016 +0 0.1303 +0 0.1494 +0 0.1090 +0 0.1671 +0 0.0864 +0 0.1160 +0 0.0883 +0 0.1419 +0 0.2509 +0 0.1850 +0 0.1127 +0 0.0646 +0 0.0860 +0 0.0986 +0 0.1035 +0 0.1001 +0 0.0556 +0 0.1104 +0 0.0667 +0 0.1307 +0 0.0785 +0 0.0868 +0 0.1538 +0 0.0542 +0 0.1104 +0 0.1183 +0 0.0799 +1 0.8111 +0 0.0981 +0 0.0644 +0 0.0767 +1 0.7972 +0 0.0750 +0 0.1016 +0 0.2474 +0 0.1141 +0 0.0570 +0 0.0550 +0 0.3935 +0 0.0507 +0 0.5959 +1 0.8005 +0 0.1854 +0 0.1414 +0 0.7327 +0 0.1367 +0 0.3970 +0 0.0368 +0 0.0612 +0 0.0644 +0 0.3561 +0 0.6794 +0 0.0672 +0 0.1840 +0 0.2221 +0 0.1622 +0 0.1111 +0 0.0665 +0 0.1132 +0 0.1283 +0 0.0864 +1 0.8431 +0 0.0450 +0 0.0630 +0 0.1886 +0 0.2829 +0 0.1043 +0 0.0852 +0 0.0912 +0 0.1135 +0 0.1826 +0 0.1552 +0 0.0920 +0 0.0774 +0 0.1189 +0 0.2104 +0 0.1245 +0 0.0534 +0 0.0708 +0 0.1255 +0 0.6823 +0 0.0892 +0 0.0886 +0 0.1242 +0 0.0690 +0 0.0817 +0 0.3101 +0 0.1949 +0 0.2376 +0 0.0497 +0 0.0562 +0 0.0703 +0 0.0532 +0 0.0746 +0 0.0805 +0 0.0506 +0 0.2766 +0 0.1862 +0 0.1316 +0 0.2152 +0 0.0630 +0 0.0994 +0 0.1058 +0 0.1569 +0 0.1364 +0 0.1225 +0 0.0811 +0 0.1717 +0 0.0613 +0 0.1551 +0 0.1353 +0 0.1175 +0 0.0749 +1 0.8020 +0 0.2070 +0 0.0613 +0 0.2093 +0 0.0676 +0 0.1582 +0 0.1005 +0 0.0529 +0 0.0919 +0 0.0742 +0 0.0962 +0 0.0619 +0 0.0396 +0 0.0859 +0 0.1239 +0 0.0641 +0 0.1440 +0 0.0819 +0 0.1132 +0 0.1432 +0 0.1919 +0 0.2025 +0 0.1404 +0 0.0887 +0 0.1491 +0 0.0817 +0 0.3746 +0 0.1192 +0 0.3049 +0 0.0365 +0 0.0328 +0 0.1165 +0 0.1325 +0 0.1031 +0 0.1883 +0 0.0892 +0 0.4657 +0 0.0756 +0 0.3325 +0 0.0570 +0 0.1808 +0 0.1042 +0 0.2102 +0 0.0904 +0 0.0650 +0 0.0920 +0 0.0704 +0 0.1313 +0 0.3377 +0 0.0945 +0 0.0755 +0 0.4070 +0 0.1313 +0 0.0730 +0 0.1438 +0 0.1753 +0 0.0921 +0 0.1561 +0 0.1059 +0 0.0626 +0 0.2401 +0 0.1034 +0 0.0369 +0 0.0473 +0 0.1292 +0 0.0890 +0 0.1796 +0 0.2992 +0 0.1303 +0 0.3576 +0 0.1293 +0 0.0917 +0 0.0509 +0 0.1712 +0 0.1319 +0 0.0950 +0 0.1048 +0 0.0607 +0 0.0332 +0 0.1259 +0 0.1538 +0 0.2655 +0 0.0721 +0 0.0481 +0 0.3318 +0 0.1159 +0 0.0781 +0 0.1571 +0 0.1556 +0 0.0763 +0 0.1908 +0 0.0494 +0 0.0964 +0 0.0666 +0 0.0834 +0 0.0672 +0 0.0822 +0 0.1481 +0 0.0439 +0 0.0494 +0 0.0961 +0 0.2976 +0 0.0783 +0 0.0831 +0 0.0551 +0 0.0680 +0 0.1723 +0 0.0968 +0 0.0885 +0 0.1335 +0 0.0445 +0 0.1059 +0 0.0764 +0 0.0322 +0 0.0500 +0 0.0623 +0 0.0382 +0 0.2688 +0 0.1903 +0 0.1442 +0 0.1072 +0 0.1051 +0 0.1640 +0 0.1918 +0 0.0930 +0 0.0931 +0 0.1587 +1 0.7552 +0 0.1671 +0 0.1005 +0 0.1994 +0 0.1453 +0 0.1758 +0 0.0539 +0 0.1363 +0 0.3066 +0 0.3990 +0 0.0548 +0 0.0775 +0 0.4219 +0 0.1368 +0 0.1897 +0 0.1888 +0 0.2769 +0 0.1261 +0 0.0807 +0 0.2566 +0 0.4806 +0 0.4362 +1 0.7561 +0 0.1856 +0 0.2039 +0 0.0889 +0 0.1136 +0 0.1414 +0 0.1044 +0 0.0895 +0 0.0863 +0 0.2417 +0 0.1567 +0 0.1697 +0 0.1794 +0 0.2413 +0 0.1189 +0 0.1081 +0 0.0698 +0 0.2480 +0 0.0678 +0 0.0896 +0 0.2005 +0 0.1750 +0 0.1543 +0 0.0474 +0 0.1438 +0 0.0522 +0 0.1943 +0 0.1780 +0 0.1136 +0 0.0459 +0 0.1550 +0 0.0558 +0 0.1446 +0 0.0623 +0 0.0883 +0 0.0536 +0 0.0378 +0 0.1902 +0 0.0651 +0 0.0926 +0 0.1014 +1 0.8101 +0 0.1732 +0 0.0351 +0 0.1745 +0 0.0934 +0 0.0894 +0 0.2734 +0 0.0768 +0 0.1012 +0 0.1162 +0 0.2003 +0 0.0373 +0 0.1258 +0 0.0998 +0 0.1066 +0 0.4354 +0 0.1039 +0 0.1541 +0 0.1380 +0 0.1555 +0 0.0999 +0 0.0677 +0 0.1086 +0 0.6578 +0 0.0718 +0 0.0889 +0 0.1880 +0 0.0984 +0 0.0630 +0 0.5281 +0 0.0889 +0 0.1285 +0 0.0687 +0 0.0418 +0 0.0397 +0 0.2898 +0 0.2799 +0 0.1906 +0 0.2047 +0 0.2578 +0 0.1062 +0 0.1952 +0 0.0417 +0 0.0486 +0 0.0472 +0 0.1713 +0 0.1440 +0 0.2158 +0 0.0535 +0 0.0637 +0 0.0752 +0 0.1157 +0 0.1021 +0 0.1992 +0 0.1049 +0 0.3583 +0 0.1369 +0 0.1103 +0 0.0529 +0 0.1062 +0 0.0857 +0 0.1334 +0 0.1417 +0 0.1085 +0 0.0677 +0 0.0664 +0 0.2313 +0 0.1622 +0 0.0853 +0 0.0654 +0 0.0453 +0 0.2622 +0 0.2112 +0 0.1342 +0 0.0533 +0 0.0836 +0 0.0871 +0 0.0540 +0 0.1213 +0 0.2014 +0 0.1201 +0 0.2541 +0 0.0366 +0 0.0543 +0 0.0721 +0 0.1677 +0 0.0556 +0 0.1812 +0 0.1296 +0 0.0336 +0 0.0467 +0 0.0585 +0 0.1434 +0 0.1607 +0 0.1172 +0 0.0807 +0 0.0517 +0 0.0500 +0 0.1939 +0 0.1178 +0 0.0936 +0 0.2290 +0 0.1295 +0 0.2969 +0 0.1444 +0 0.0693 +0 0.0789 +0 0.0459 +0 0.0831 +0 0.0377 +0 0.0787 +0 0.0558 +0 0.1513 +0 0.2317 +0 0.2074 +0 0.1787 +0 0.2753 +0 0.2241 +0 0.3380 +0 0.1005 +0 0.1018 +0 0.7433 +0 0.1268 +0 0.2813 +0 0.0558 +0 0.0629 +0 0.2153 +0 0.0729 +0 0.2313 +0 0.1987 +0 0.7331 +0 0.3083 +0 0.1130 +0 0.0496 +0 0.2023 +0 0.1789 +0 0.2908 +0 0.0968 +0 0.1667 +0 0.2129 +0 0.1989 +0 0.1284 +0 0.0641 +0 0.0711 +0 0.0514 +0 0.0833 +0 0.2075 +0 0.1565 +0 0.4026 +0 0.2254 +0 0.0935 +0 0.0745 +0 0.1005 +0 0.7382 +0 0.3711 +0 0.1010 +0 0.0968 +0 0.0728 +0 0.0792 +0 0.0664 +0 0.1450 +0 0.1480 +0 0.0756 +0 0.0956 +0 0.1150 +0 0.1428 +0 0.1098 +0 0.0695 +0 0.0462 +0 0.0828 +0 0.1899 +0 0.2414 +0 0.1179 +0 0.1119 +0 0.2599 +0 0.1644 +0 0.0700 +0 0.1143 +0 0.0693 +0 0.6326 +0 0.2375 +0 0.1050 +0 0.0978 +0 0.0924 +0 0.1176 +0 0.0589 +0 0.1093 +0 0.1553 +0 0.5831 +0 0.0808 +0 0.0362 +0 0.1042 +0 0.0981 +0 0.2057 +0 0.0754 +0 0.0900 +0 0.1186 +0 0.0645 +0 0.6184 +0 0.2060 +0 0.1354 +0 0.2040 +0 0.4306 +0 0.1231 +0 0.1406 +0 0.0522 +0 0.0593 +0 0.2607 +0 0.1212 +0 0.2683 +0 0.5218 +0 0.1247 +0 0.2097 +0 0.0327 +0 0.1340 +0 0.0757 +0 0.0366 +1 0.7594 +0 0.1186 +0 0.0504 +0 0.0570 +0 0.0424 +0 0.1408 +0 0.3409 +0 0.2973 +0 0.0492 +0 0.2440 +0 0.0566 +0 0.3385 +0 0.0529 +0 0.1497 +0 0.1474 +0 0.2151 +0 0.0741 +0 0.0443 +0 0.2811 +0 0.0404 +0 0.1681 +0 0.2604 +0 0.7405 +0 0.3521 +0 0.0373 +0 0.1324 +0 0.0887 +0 0.1383 +0 0.0830 +0 0.1248 +0 0.3357 +0 0.0434 +0 0.2500 +0 0.1685 +0 0.0707 +0 0.1373 +0 0.1963 +0 0.1351 +0 0.1953 +0 0.0798 +0 0.1028 +0 0.3534 +0 0.0887 +0 0.1064 +0 0.2405 +0 0.0458 +0 0.0798 +0 0.2183 +0 0.0950 +0 0.0774 +0 0.1907 +0 0.0600 +0 0.4448 +0 0.0950 +0 0.1876 +0 0.1533 +0 0.0973 +0 0.2767 +0 0.0596 +0 0.1895 +0 0.0752 +0 0.1313 +0 0.0570 +0 0.0448 +0 0.0982 +0 0.1751 +0 0.0868 +0 0.1423 +0 0.1200 +0 0.2425 +0 0.1549 +0 0.2953 +0 0.2734 +0 0.0554 +0 0.1124 +0 0.1570 +0 0.0457 +0 0.0887 +0 0.7395 +0 0.2088 +0 0.0478 +0 0.1145 +0 0.0365 +0 0.6167 +0 0.0949 +0 0.5327 +0 0.1395 +0 0.1770 +0 0.0895 +0 0.0807 +0 0.0982 +0 0.2372 +0 0.5885 +0 0.0609 +0 0.0919 +0 0.0639 +0 0.3673 +0 0.1848 +0 0.0790 +0 0.0570 +0 0.2448 +0 0.3557 +0 0.1263 +0 0.0942 +0 0.1201 +0 0.0904 +0 0.0935 +0 0.1493 +0 0.1504 +0 0.2832 +0 0.1291 +0 0.0750 +0 0.5099 +0 0.1788 +0 0.1134 +0 0.1146 +0 0.1934 +0 0.1119 +0 0.1504 +0 0.2192 +0 0.3051 +1 0.7523 +0 0.0419 +0 0.1382 +0 0.2615 +0 0.0796 +0 0.0841 +0 0.1324 +0 0.0685 +0 0.0438 +0 0.2489 +0 0.1784 +0 0.1563 +0 0.1347 +1 0.8341 +0 0.1880 +0 0.2536 +0 0.1882 +0 0.1263 +0 0.0381 +0 0.2090 +0 0.1157 +0 0.0771 +0 0.0610 +0 0.0768 +0 0.4236 +0 0.0646 +0 0.1540 +0 0.0628 +0 0.0922 +0 0.0902 +0 0.1194 +0 0.0528 +0 0.0545 +0 0.0768 +0 0.1258 +0 0.1147 +0 0.1069 +0 0.0680 +0 0.2187 +0 0.0963 +0 0.0703 +0 0.2302 +0 0.3664 +0 0.1275 +0 0.0406 +0 0.0676 +0 0.1354 +0 0.1394 +0 0.0704 +0 0.0638 +0 0.1336 +0 0.0599 +0 0.0996 +0 0.0959 +0 0.1057 +0 0.0838 +0 0.1237 +0 0.0466 +0 0.0858 +0 0.0805 +0 0.0577 +0 0.0935 +0 0.0816 +0 0.5670 +0 0.2233 +0 0.1657 +0 0.0806 +0 0.1832 +0 0.3092 +0 0.1913 +0 0.0443 +0 0.0528 +0 0.0985 +0 0.0566 +0 0.5864 +0 0.1216 +0 0.1128 +0 0.0360 +0 0.1314 +0 0.3726 +0 0.1742 +0 0.2904 +0 0.0464 +0 0.0563 +0 0.0840 +0 0.0993 +0 0.1866 +0 0.0679 +0 0.2199 +0 0.0621 +0 0.1594 +0 0.1207 +0 0.3349 +0 0.1548 +0 0.0638 +1 0.8248 +0 0.1198 +0 0.0736 +0 0.0594 +0 0.2434 +0 0.6498 +0 0.2659 +0 0.1667 +0 0.1907 +0 0.3940 +0 0.1592 +0 0.0458 +0 0.0490 +0 0.3124 +0 0.0722 +0 0.0542 +0 0.0582 +0 0.1057 +0 0.2795 +0 0.0676 +0 0.1339 +0 0.0998 +0 0.1814 +0 0.0976 +0 0.2272 +0 0.0709 +0 0.0667 +0 0.0429 +0 0.0608 +0 0.1011 +0 0.1806 +0 0.1392 +0 0.1354 +0 0.0447 +0 0.0882 +0 0.0498 +0 0.0391 +0 0.1201 +0 0.0546 +0 0.0649 +0 0.0961 +0 0.0785 +0 0.0668 +0 0.5093 +0 0.0931 +0 0.0683 +0 0.1943 +0 0.0512 +0 0.1645 +0 0.0770 +0 0.0741 +0 0.6146 +0 0.1272 +0 0.1210 +0 0.1266 +0 0.0501 +0 0.1653 +0 0.1714 +0 0.2837 +0 0.1092 +0 0.0470 +0 0.0841 +0 0.1051 +0 0.0654 +0 0.0589 +0 0.1032 +0 0.2714 +0 0.0884 +0 0.2174 +0 0.0473 +0 0.0729 +0 0.1549 +0 0.1272 +0 0.2158 +0 0.1029 +0 0.2985 +0 0.0600 +0 0.0601 +0 0.1627 +0 0.1784 +0 0.0775 +0 0.0388 +0 0.0772 +0 0.0620 +0 0.0379 +0 0.1926 +0 0.0604 +0 0.0756 +0 0.0356 +0 0.1649 +0 0.2521 +0 0.0920 +0 0.1464 +0 0.1392 +0 0.0541 +0 0.0969 +0 0.0712 +0 0.0626 +0 0.3714 +0 0.1704 +0 0.1022 +0 0.1269 +0 0.2152 +0 0.1002 +0 0.1439 +0 0.0830 +0 0.0604 +0 0.3503 +0 0.0982 +0 0.1175 +0 0.1356 +0 0.1033 +0 0.1819 +1 0.8571 +0 0.1509 +0 0.0926 +0 0.1094 +0 0.0693 +0 0.0867 +0 0.3041 +0 0.1547 +0 0.0907 +0 0.0589 +0 0.1360 +0 0.0799 +0 0.1077 +0 0.2117 +0 0.0858 +0 0.1570 +0 0.0922 +0 0.1568 +0 0.0783 +0 0.2190 +0 0.0656 +0 0.2657 +0 0.0969 +0 0.2729 +0 0.1784 +0 0.0496 +0 0.1561 +0 0.0361 +0 0.0374 +0 0.2300 +0 0.0602 +0 0.2927 +0 0.2648 +0 0.1488 +0 0.1871 +0 0.0828 +0 0.1020 +0 0.0696 +0 0.0880 +0 0.0934 +0 0.0801 +0 0.0481 +0 0.1217 +0 0.0376 +0 0.1859 +0 0.0860 +0 0.0856 +0 0.1471 +0 0.1357 +0 0.1680 +0 0.4390 +0 0.1503 +0 0.1193 +0 0.0377 +0 0.1214 +0 0.0998 +0 0.1345 +0 0.1313 +0 0.0769 +0 0.1202 +0 0.1233 +0 0.2156 +0 0.0853 +0 0.1334 +0 0.1300 +0 0.0682 +0 0.3836 +0 0.0631 +0 0.1018 +0 0.2352 +0 0.1266 +0 0.0804 +0 0.0873 +0 0.1065 +0 0.1627 +0 0.0604 +0 0.2863 +0 0.0905 +0 0.0887 +0 0.0441 +0 0.0587 +0 0.2300 +0 0.2429 +0 0.2855 +0 0.1219 +0 0.4584 +0 0.0895 +0 0.0682 +0 0.3028 +0 0.6845 +0 0.1184 +0 0.1970 +0 0.1141 +0 0.1038 +0 0.0949 +0 0.1299 +0 0.2421 +0 0.0990 +0 0.0589 +0 0.1008 +0 0.1210 +0 0.4831 +0 0.1568 +0 0.1529 +0 0.1862 +0 0.1077 +0 0.0664 +0 0.0629 +0 0.0698 +0 0.1453 +0 0.0930 +0 0.0683 +0 0.1647 +0 0.1212 +0 0.1664 +0 0.0581 +0 0.0641 +0 0.1069 +0 0.1811 +0 0.0638 +0 0.7365 +0 0.1442 +0 0.0457 +0 0.0547 +0 0.0494 +0 0.1299 +0 0.5597 +0 0.2059 +0 0.0540 +0 0.1128 +0 0.0574 +0 0.1176 +0 0.0621 +0 0.0568 +0 0.0875 +0 0.1063 +0 0.1242 +0 0.4566 +0 0.0886 +0 0.1389 +0 0.1092 +0 0.0506 +0 0.0486 +0 0.1005 +0 0.2014 +0 0.0414 +0 0.2735 +0 0.0691 +0 0.1323 +0 0.0565 +0 0.0791 +0 0.0761 +0 0.0524 +0 0.1227 +0 0.0925 +0 0.1242 +0 0.0890 +0 0.0415 +0 0.1541 +0 0.1567 +0 0.1731 +0 0.0579 +0 0.1290 +0 0.0585 +0 0.1320 +0 0.1019 +0 0.0998 +0 0.0820 +0 0.0725 +0 0.2290 +0 0.2289 +0 0.0919 +0 0.0599 +0 0.1171 +0 0.2064 +0 0.0722 +0 0.1100 +0 0.1380 +0 0.1284 +0 0.1277 +0 0.0611 +0 0.0840 +0 0.4798 +0 0.0799 +0 0.0458 +0 0.0881 +0 0.0842 +0 0.5493 +0 0.1329 +0 0.2804 +0 0.2178 +0 0.0620 +0 0.0546 +0 0.0928 +0 0.0912 +0 0.0678 +0 0.1053 +0 0.5335 +0 0.0665 +0 0.1680 +0 0.3206 +0 0.0952 +0 0.1003 +0 0.0695 +0 0.1090 +0 0.1519 +0 0.2423 +0 0.4469 +0 0.0495 +0 0.0740 +0 0.0925 +0 0.0542 +0 0.0572 +0 0.1387 +0 0.1959 +0 0.0611 +0 0.1279 +0 0.2920 +0 0.1221 +0 0.0574 +0 0.0710 +0 0.0415 +1 0.8540 +0 0.2032 +0 0.0859 +0 0.2851 +0 0.0656 +0 0.3345 +0 0.0632 +0 0.0814 +0 0.2081 +0 0.0748 +0 0.2097 +0 0.1298 +0 0.1638 +0 0.4028 +0 0.2845 +0 0.1373 +0 0.1637 +0 0.1134 +0 0.1149 +0 0.4077 +0 0.0780 +0 0.0519 +0 0.2104 +0 0.1052 +0 0.1056 +0 0.2416 +0 0.2010 +0 0.0395 +0 0.1383 +0 0.1632 +0 0.0566 +0 0.2330 +0 0.4908 +0 0.0917 +0 0.1557 +0 0.1623 +0 0.0699 +0 0.3478 +0 0.4676 +0 0.1109 +0 0.0825 +0 0.1632 +0 0.0863 +0 0.1873 +0 0.0614 +0 0.0764 +0 0.0601 +0 0.0776 +0 0.1908 +1 0.8281 +0 0.0564 +0 0.0837 +0 0.1165 +0 0.2024 +0 0.1436 +0 0.0936 +0 0.0823 +0 0.0510 +1 0.7826 +0 0.1041 +0 0.1380 +0 0.1365 +0 0.1693 +0 0.0785 +0 0.1469 +0 0.1814 +0 0.1088 +0 0.1771 +0 0.1269 +0 0.0610 +0 0.1219 +0 0.0942 +0 0.3970 +1 0.8326 +0 0.0763 +0 0.0824 +0 0.0758 +0 0.0734 +0 0.1146 +0 0.1253 +0 0.0999 +0 0.0845 +0 0.0496 +0 0.1293 +0 0.4216 +0 0.0950 +0 0.3646 +0 0.0711 +0 0.1076 +0 0.0864 +0 0.2179 +0 0.1565 +0 0.0925 +0 0.2133 +0 0.3039 +0 0.2365 +0 0.0673 +0 0.0936 +0 0.0582 +0 0.1979 +0 0.0615 +0 0.0455 +0 0.0517 +0 0.0518 +0 0.0472 +0 0.1870 +0 0.1089 +0 0.0580 +0 0.0345 +0 0.4843 +0 0.1647 +0 0.1102 +0 0.0670 +0 0.0841 +0 0.0815 +0 0.0903 +1 0.8148 +0 0.1173 +0 0.0873 +0 0.1708 +0 0.1002 +0 0.0879 +0 0.5350 +0 0.1237 +0 0.1537 +0 0.2385 +0 0.1198 +0 0.0977 +0 0.0613 +0 0.2015 +0 0.1241 +0 0.0910 +0 0.1357 +0 0.0480 +0 0.1646 +0 0.1089 +0 0.0577 +0 0.1982 +0 0.1755 +0 0.5976 +0 0.0602 +0 0.0722 +0 0.0941 +0 0.1101 +0 0.0511 +0 0.1877 +0 0.0803 +0 0.1520 +0 0.0900 +0 0.0971 +0 0.4993 +0 0.0672 +0 0.0925 +0 0.0365 +0 0.2627 +0 0.0773 +0 0.1073 +0 0.0783 +0 0.2659 +0 0.0942 +0 0.1098 +0 0.4651 +0 0.1118 +0 0.1187 +0 0.7267 +0 0.2233 +0 0.2854 +0 0.1756 +0 0.1166 +0 0.1603 +0 0.3028 +0 0.0811 +0 0.0663 +0 0.0464 +0 0.0681 +0 0.2656 +0 0.0960 +0 0.0924 +0 0.0351 +0 0.0428 +0 0.2275 +0 0.2890 +0 0.0996 +0 0.3170 +0 0.0424 +0 0.2212 +0 0.1238 +0 0.0786 +0 0.2942 +0 0.1016 +0 0.0947 +0 0.0863 +0 0.4232 +0 0.0396 +0 0.6620 +0 0.0801 +0 0.0709 +0 0.2843 +0 0.0928 +0 0.1056 +0 0.0935 +0 0.1280 +0 0.0666 +0 0.0838 +0 0.1530 +0 0.0866 +0 0.1007 +0 0.0727 +0 0.0443 +0 0.0581 +0 0.0793 +0 0.1195 +0 0.1516 +0 0.1185 +0 0.0564 +0 0.0545 +0 0.1150 +0 0.2062 +1 0.8716 +0 0.1849 +0 0.0850 +0 0.0917 +0 0.1547 +0 0.0998 +0 0.0607 +0 0.0655 +0 0.0736 +0 0.1913 +0 0.0903 +0 0.1876 +0 0.0814 +0 0.0445 +0 0.0830 +0 0.1443 +0 0.1039 +0 0.0503 +0 0.0666 +0 0.1906 +0 0.1122 +0 0.1008 +0 0.2869 +0 0.1824 +0 0.0699 +0 0.1448 +0 0.3043 +0 0.1084 +0 0.4977 +0 0.1409 +0 0.1709 +0 0.5293 +0 0.1091 +0 0.1642 +0 0.0683 +0 0.5694 +0 0.1385 +0 0.1802 +0 0.2172 +0 0.0901 +0 0.0829 +0 0.0859 +0 0.0889 +0 0.5223 +0 0.3231 +0 0.1064 +0 0.1245 +0 0.0650 +0 0.0554 +0 0.0674 +0 0.2477 +0 0.0552 +0 0.0335 +0 0.0685 +0 0.1851 +0 0.0964 +0 0.0695 +0 0.1206 +0 0.0569 +0 0.0747 +0 0.1551 +0 0.1717 +0 0.0435 +0 0.0516 +0 0.1060 +0 0.2425 +0 0.1903 +0 0.3607 +0 0.3541 +0 0.1196 +0 0.0705 +0 0.0610 +0 0.2006 +0 0.7191 +0 0.0643 +0 0.0987 +0 0.0808 +0 0.1130 +0 0.0519 +0 0.0838 +0 0.1655 +0 0.0734 +0 0.2097 +0 0.2103 +0 0.4490 +0 0.1594 +0 0.1858 +0 0.1439 +0 0.1312 +0 0.0566 +0 0.0694 +0 0.0934 +0 0.1056 +0 0.1594 +0 0.1042 +0 0.0889 +0 0.1925 +0 0.0709 +0 0.0438 +0 0.2331 +0 0.0863 +0 0.3894 +0 0.2585 +0 0.1396 +0 0.1333 +0 0.2827 +0 0.0532 +0 0.0363 +0 0.0914 +1 0.7980 +1 0.7736 +0 0.1057 +0 0.0783 +0 0.2222 +0 0.1433 +0 0.0975 +0 0.0772 +0 0.0549 +0 0.1084 +0 0.1095 +0 0.1217 +0 0.0885 +0 0.1485 +0 0.2570 +0 0.3049 +0 0.2378 +0 0.0669 +0 0.1295 +0 0.1479 +0 0.3110 +0 0.1354 +0 0.0923 +0 0.0388 +0 0.1748 +0 0.1617 +0 0.0776 +0 0.1367 +0 0.0534 +1 0.8822 +0 0.0691 +0 0.1630 +0 0.0589 +0 0.1063 +1 0.7742 +0 0.1082 +0 0.0731 +0 0.1071 +0 0.0635 +0 0.1193 +0 0.0793 +0 0.1746 +0 0.1965 +0 0.0875 +0 0.1901 +1 0.8677 +0 0.1601 +0 0.0653 +0 0.1050 +0 0.1097 +0 0.1313 +0 0.0895 +0 0.0669 +0 0.0566 +0 0.0326 +0 0.0593 +0 0.0707 +0 0.0936 +0 0.1600 +0 0.0963 +0 0.2113 +0 0.0490 +0 0.0454 +0 0.0491 +0 0.1303 +0 0.0719 +0 0.0650 +0 0.0517 +0 0.1081 +0 0.1526 +0 0.0464 +0 0.0661 +0 0.2035 +0 0.2110 +0 0.2367 +0 0.0749 +0 0.0543 +0 0.0896 +0 0.1462 +0 0.1532 +0 0.1489 +0 0.1219 +0 0.0837 +0 0.5486 +0 0.0576 +0 0.0582 +0 0.1002 +0 0.0810 +0 0.2422 +0 0.0614 +0 0.1016 +0 0.1176 +0 0.0569 +0 0.1103 +0 0.1604 +0 0.0355 +0 0.1116 +0 0.0619 +0 0.1768 +0 0.2097 +0 0.1109 +0 0.1163 +0 0.1087 +0 0.0451 +0 0.0891 +0 0.0905 +0 0.0720 +0 0.5809 +0 0.0771 +0 0.0716 +0 0.1175 +0 0.7051 +0 0.0703 +0 0.0617 +0 0.1238 +0 0.1697 +0 0.0425 +0 0.0551 +0 0.0447 +0 0.0529 +0 0.0730 +1 0.8223 +0 0.1058 +0 0.0899 +0 0.7235 +0 0.1195 +0 0.0385 +0 0.0763 +0 0.0431 +0 0.0684 +0 0.1115 +0 0.1011 +0 0.3792 +0 0.0824 +0 0.1623 +0 0.0610 +0 0.2122 +0 0.3760 +0 0.0896 +0 0.0433 +0 0.0687 +0 0.0696 +0 0.3153 +0 0.3449 +0 0.2412 +0 0.2468 +0 0.0789 +0 0.0886 +0 0.0730 +0 0.1370 +0 0.1642 +0 0.0636 +0 0.1940 +0 0.2619 +0 0.0473 +1 0.8107 +0 0.1647 +0 0.1627 +0 0.2677 +0 0.1240 +0 0.1437 +0 0.0342 +0 0.1084 +0 0.2768 +0 0.2686 +0 0.0617 +0 0.1426 +0 0.2947 +0 0.1085 +0 0.0512 +0 0.1044 +0 0.2002 +0 0.1597 +0 0.0702 +0 0.2435 +0 0.1000 +0 0.1800 +0 0.1889 +0 0.0964 +0 0.1419 +0 0.0975 +0 0.1143 +0 0.0558 +0 0.1268 +0 0.1330 +0 0.0986 +0 0.0941 +0 0.0854 +0 0.3159 +0 0.0787 +0 0.1340 +0 0.0928 +0 0.0879 +0 0.1399 +0 0.1264 +0 0.0335 +0 0.1030 +0 0.0812 +0 0.0479 +1 0.8569 +0 0.1226 +0 0.0581 +0 0.1589 +0 0.1147 +0 0.0475 +0 0.0357 +0 0.1601 +1 0.8115 +0 0.2051 +0 0.1045 +0 0.0872 +0 0.0574 +0 0.1636 +0 0.1193 +0 0.0463 +0 0.0732 +0 0.2587 +0 0.0803 +0 0.2392 +0 0.0971 +0 0.1980 +1 0.8099 +0 0.0630 +0 0.6121 +0 0.7071 +0 0.2472 +0 0.0810 +0 0.0459 +0 0.2964 +0 0.1466 +0 0.1193 +0 0.6367 +0 0.1095 +0 0.1932 +0 0.0401 +0 0.1250 +0 0.0277 +0 0.1134 +0 0.0782 +0 0.1327 +0 0.0649 +0 0.0660 +0 0.1332 +0 0.0578 +0 0.1174 +0 0.0844 +0 0.0465 +0 0.1131 +0 0.1750 +0 0.1252 +0 0.1745 +0 0.1598 +0 0.1467 +0 0.0730 +0 0.3639 +0 0.3581 +0 0.1138 +0 0.2578 +0 0.2126 +0 0.0856 +0 0.1272 +0 0.0899 +0 0.0913 +0 0.0946 +0 0.0933 +0 0.0550 +0 0.1379 +0 0.0761 +0 0.0953 +0 0.6167 +0 0.0983 +0 0.2042 +0 0.0520 +0 0.1845 +0 0.0597 +0 0.0564 +0 0.0697 +0 0.1834 +0 0.0800 +0 0.2416 +0 0.1196 +0 0.0554 +0 0.1417 +0 0.1638 +0 0.0697 +0 0.0456 +0 0.0740 +0 0.1941 +0 0.1696 +0 0.0887 +0 0.0928 +0 0.0735 +0 0.0614 +0 0.0841 +0 0.2241 +0 0.1131 +0 0.1191 +0 0.0748 +0 0.0673 +0 0.1410 +0 0.1518 +0 0.0542 +0 0.1235 +0 0.1460 +0 0.0867 +0 0.1008 +0 0.2128 +0 0.2553 +0 0.0619 +0 0.0803 +0 0.1876 +0 0.0911 +0 0.1045 +0 0.3098 +0 0.1443 +0 0.3728 +0 0.0645 +0 0.0540 +0 0.5816 +0 0.1952 +0 0.0524 +0 0.1163 +0 0.1302 +0 0.0616 +0 0.1210 +0 0.1021 +0 0.1734 +0 0.0753 +0 0.4829 +0 0.2350 +0 0.2825 +0 0.1279 +0 0.1021 +0 0.1056 +0 0.0456 +1 0.7628 +0 0.0467 +0 0.0920 +0 0.0654 +0 0.2720 +0 0.1522 +0 0.1286 +0 0.0820 +0 0.0667 +0 0.0655 +0 0.1098 +0 0.0892 +0 0.0735 +0 0.1311 +0 0.0633 +0 0.2436 +0 0.0989 +0 0.3623 +0 0.0851 +0 0.1373 +0 0.0753 +0 0.0298 +0 0.1475 +0 0.1553 +0 0.0630 +0 0.0942 +0 0.2418 +0 0.0771 +0 0.0911 +0 0.0883 +0 0.6297 +0 0.0614 +0 0.0391 +0 0.0980 +0 0.6339 +0 0.1407 +0 0.0892 +0 0.0870 +0 0.0765 +0 0.2354 +0 0.0528 +0 0.0911 +0 0.1151 +0 0.0934 +0 0.1835 +0 0.0644 +0 0.1583 +0 0.3262 +0 0.1387 +0 0.0581 +0 0.0573 +0 0.7214 +0 0.0757 +0 0.1072 +0 0.1128 +0 0.1472 +0 0.1600 +0 0.1260 +0 0.4788 +0 0.1020 +0 0.7391 +0 0.7174 +0 0.0295 +0 0.0603 +0 0.1491 +0 0.0579 +0 0.0875 +0 0.1290 +0 0.2963 +0 0.0954 +0 0.0522 +0 0.1648 +0 0.0529 +0 0.0770 +0 0.1419 +0 0.0832 +0 0.1236 +0 0.0959 +0 0.5447 +0 0.0807 +0 0.1296 +0 0.1071 +0 0.1729 +0 0.0653 +0 0.3019 +0 0.2205 +0 0.1096 +0 0.2122 +0 0.0976 +0 0.0611 +0 0.0712 +0 0.2218 +0 0.1016 +0 0.0546 +0 0.0507 +1 0.8056 +0 0.1240 +0 0.0754 +0 0.1255 +0 0.0605 +0 0.1607 +0 0.2074 +0 0.0586 +0 0.0940 +0 0.0553 +0 0.1561 +0 0.5649 +0 0.1743 +0 0.0473 +0 0.5043 +0 0.1430 +0 0.1272 +0 0.1022 +0 0.0501 +0 0.0776 +0 0.2169 +0 0.1683 +0 0.1471 +0 0.5600 +0 0.0604 +0 0.0857 +0 0.1769 +0 0.1531 +0 0.0848 +0 0.2466 +0 0.0384 +0 0.0783 +0 0.0846 +0 0.0945 +1 0.4306 +0 0.2431 +0 0.0687 +0 0.0530 +0 0.0878 +0 0.0958 +0 0.0905 +0 0.2068 +0 0.4625 +0 0.0335 +0 0.0713 +0 0.1635 +0 0.0539 +0 0.0344 +0 0.0518 +0 0.1545 +0 0.0888 +0 0.0450 +0 0.1279 +0 0.1742 +0 0.1462 +0 0.1014 +0 0.1678 +0 0.1602 +0 0.0721 +0 0.1013 +0 0.0599 +0 0.1516 +0 0.1366 +0 0.1299 +0 0.0552 +0 0.0608 +0 0.1687 +0 0.0315 +0 0.4492 +0 0.0605 +0 0.2917 +0 0.0735 +0 0.2119 +0 0.1312 +0 0.0605 +0 0.1840 +0 0.1281 +0 0.1106 +0 0.0628 +0 0.0662 +0 0.1170 +0 0.2010 +0 0.0779 +0 0.0425 +0 0.1009 +0 0.1640 +0 0.2416 +0 0.1699 +0 0.0875 +0 0.2054 +0 0.1408 +0 0.3017 +0 0.2193 +0 0.0795 +0 0.0417 +0 0.1020 +0 0.1963 +0 0.2406 +0 0.6671 +0 0.2602 +0 0.1968 +0 0.1010 +0 0.1020 +0 0.0510 +0 0.0642 +0 0.0660 +0 0.0919 +0 0.0499 +0 0.0460 +0 0.1402 +0 0.1126 +0 0.1767 +0 0.0485 +0 0.0943 +0 0.0961 +0 0.1163 +0 0.1107 +0 0.6133 +0 0.1779 +0 0.1124 +0 0.1098 +0 0.0940 +0 0.1035 +0 0.0532 +0 0.1104 +0 0.1057 +0 0.1343 +0 0.0999 +0 0.0865 +0 0.0749 +0 0.1345 +0 0.1574 +0 0.0834 +0 0.0977 +0 0.2479 +0 0.1360 +0 0.0698 +0 0.2198 +0 0.0486 +0 0.0996 +0 0.0843 +0 0.1139 +0 0.0382 +0 0.0826 +0 0.0281 +0 0.0692 +0 0.0397 +0 0.2579 +0 0.2168 +0 0.0628 +0 0.1119 +0 0.3747 +0 0.0958 +0 0.0774 +0 0.1364 +0 0.1038 +0 0.0657 +0 0.1290 +0 0.1035 +0 0.2912 +0 0.0707 +0 0.0538 +0 0.0997 +0 0.0565 +0 0.2095 +0 0.1730 +0 0.1086 +0 0.0667 +0 0.0622 +0 0.0691 +0 0.1427 +0 0.0814 +0 0.0772 +0 0.0951 +0 0.0802 +1 0.7650 +0 0.3732 +0 0.1364 +0 0.1711 +0 0.0635 +0 0.0935 +0 0.0787 +0 0.0476 +0 0.3105 +0 0.0876 +0 0.1737 +0 0.1734 +0 0.0922 +0 0.1227 +0 0.2484 +0 0.0895 +0 0.0464 +0 0.0849 +0 0.0837 +0 0.3950 +0 0.2245 +0 0.0855 +0 0.1670 +0 0.0785 +0 0.2630 +0 0.1265 +0 0.3908 +0 0.0596 +0 0.0526 +0 0.1523 +0 0.1490 +0 0.0691 +0 0.0473 +0 0.0664 +0 0.1222 +0 0.1272 +0 0.0958 +0 0.0540 +0 0.1667 +0 0.1052 +0 0.0791 +0 0.0719 +0 0.0805 +0 0.1110 +0 0.1484 +0 0.1754 +0 0.7213 +0 0.1607 +0 0.1287 +0 0.1820 +0 0.0416 +0 0.1004 +0 0.1629 +0 0.0716 +0 0.1062 +0 0.0606 +0 0.1391 +0 0.1421 +0 0.1166 +0 0.1079 +0 0.2209 +0 0.4533 +0 0.0737 +0 0.1027 +0 0.0899 +0 0.0354 +0 0.1068 +0 0.0960 +0 0.2873 +0 0.0796 +0 0.0347 +0 0.2752 +0 0.0967 +0 0.1579 +0 0.2265 +0 0.2991 +0 0.1420 +0 0.0907 +0 0.1751 +0 0.1229 +0 0.1467 +0 0.0448 +0 0.2062 +0 0.1048 +0 0.2046 +0 0.0974 +0 0.3050 +0 0.1113 +0 0.3321 +0 0.1270 +0 0.1446 +0 0.1225 +0 0.1158 +0 0.0695 +0 0.0672 +0 0.0817 +1 0.8113 +0 0.1254 +1 0.7821 +0 0.1248 +0 0.3428 +0 0.0583 +0 0.0748 +0 0.0508 +0 0.1487 +0 0.1305 +0 0.0894 +0 0.1438 +0 0.1065 +0 0.1145 +0 0.0459 +0 0.7046 +0 0.0838 +1 0.8335 +0 0.1431 +0 0.1699 +0 0.1129 +0 0.0917 +0 0.1899 +0 0.2045 +0 0.0574 +0 0.0748 +0 0.1205 +0 0.3176 +0 0.1758 +0 0.0789 +0 0.0749 +0 0.2124 +0 0.0955 +0 0.1056 +0 0.0364 +0 0.1247 +0 0.0830 +0 0.0806 +0 0.0484 +0 0.2901 +0 0.1053 +0 0.2143 +0 0.0917 +0 0.0532 +0 0.0517 +0 0.0522 +0 0.1663 +0 0.1898 +0 0.0799 +0 0.1379 +0 0.2041 +0 0.1250 +0 0.0879 +0 0.0461 +0 0.1487 +0 0.1508 +0 0.1283 +0 0.1929 +0 0.0762 +0 0.1308 +0 0.1570 +0 0.0746 +0 0.4325 +0 0.1550 +0 0.0660 +0 0.1043 +0 0.0909 +0 0.2388 +0 0.1134 +0 0.0404 +0 0.0815 +0 0.1306 +0 0.0898 +0 0.0923 +0 0.1066 +0 0.0693 +0 0.1719 +0 0.0825 +0 0.1092 +0 0.0386 +0 0.1464 +0 0.0735 +0 0.0815 +0 0.0834 +0 0.0911 +0 0.0778 +0 0.0599 +0 0.0588 +0 0.3351 +0 0.1404 +0 0.0970 +0 0.2134 +0 0.1421 +0 0.0711 +0 0.0425 +0 0.1883 +0 0.0610 +0 0.2344 +0 0.0820 +0 0.1144 +0 0.1287 +0 0.0870 +0 0.1250 +0 0.3215 +0 0.0418 +0 0.0776 +0 0.4160 +0 0.0968 +0 0.2936 +0 0.0437 +0 0.0725 +0 0.3055 +0 0.7289 +0 0.2174 +0 0.0977 +0 0.1652 +0 0.0653 +0 0.1014 +0 0.0507 +0 0.0611 +0 0.1925 +0 0.0450 +0 0.0767 +0 0.0976 +0 0.3788 +0 0.1281 +0 0.0730 +0 0.1003 +0 0.2384 +0 0.4091 +0 0.2479 +0 0.0859 +0 0.1141 +0 0.1035 +0 0.0519 +0 0.1241 +0 0.6238 +0 0.1013 +0 0.1375 +0 0.0735 +0 0.0555 +0 0.0403 +0 0.5080 +0 0.0599 +0 0.0442 +0 0.1156 +0 0.5101 +0 0.1762 +0 0.1854 +0 0.0777 +0 0.1861 +0 0.0414 +0 0.1061 +0 0.0472 +0 0.0558 +0 0.0484 +0 0.1550 +0 0.1440 +0 0.0743 +0 0.0827 +0 0.0588 +0 0.1514 +0 0.0774 +0 0.3152 +0 0.1235 +0 0.1978 +0 0.0583 +0 0.1299 +0 0.0465 +0 0.1279 +0 0.0444 +0 0.0698 +0 0.3303 +0 0.2215 +0 0.4134 +0 0.1705 +0 0.0662 +0 0.0601 +0 0.0370 +0 0.2152 +0 0.1132 +0 0.2095 +0 0.1096 +0 0.1250 +0 0.0833 +0 0.0978 +0 0.3115 +0 0.0634 +0 0.1665 +0 0.0923 +0 0.1328 +0 0.1099 +0 0.0796 +0 0.1472 +0 0.0915 +0 0.0468 +0 0.0526 +0 0.2137 +0 0.1726 +0 0.0901 +0 0.1378 +0 0.0828 +0 0.0646 +0 0.0618 +0 0.1533 +0 0.4277 +0 0.0695 +0 0.1068 +0 0.1481 +0 0.2229 +0 0.0946 +0 0.1009 +0 0.0809 +0 0.1139 +0 0.0733 +0 0.1202 +0 0.0954 +0 0.1167 +0 0.0601 +0 0.0641 +0 0.1203 +0 0.0930 +0 0.5794 +0 0.0858 +0 0.0995 +0 0.4142 +0 0.1670 +0 0.0908 +0 0.0273 +0 0.1918 +0 0.0490 +0 0.2130 +0 0.0565 +0 0.1093 +0 0.0754 +0 0.1083 +0 0.0749 +0 0.0815 +0 0.1776 +0 0.0405 +0 0.0856 +0 0.2236 +0 0.0540 +0 0.7100 +0 0.0931 +0 0.2000 +0 0.0863 +1 0.8391 +0 0.3110 +0 0.2247 +0 0.1024 +0 0.2984 +0 0.0637 +0 0.1295 +0 0.0675 +0 0.0830 +0 0.4726 +0 0.0925 +0 0.1186 +1 0.8229 +0 0.1105 +0 0.0774 +0 0.0914 +0 0.1832 +0 0.1383 +0 0.2463 +0 0.2139 +0 0.2632 +0 0.2809 +0 0.1037 +0 0.0738 +0 0.1958 +0 0.0818 +0 0.0899 +0 0.0996 +0 0.1998 +0 0.0812 +0 0.0975 +0 0.0914 +0 0.0476 +0 0.1680 +0 0.1298 +0 0.0776 +0 0.1608 +0 0.3053 +0 0.2496 +0 0.2464 +0 0.0718 +0 0.1173 +0 0.0623 +0 0.1276 +0 0.5438 +1 0.8068 +0 0.1406 +0 0.0292 +0 0.1158 +0 0.0761 +0 0.0393 +0 0.0648 +0 0.7187 +0 0.0798 +0 0.1462 +0 0.1004 +0 0.0510 +0 0.0692 +1 0.6613 +0 0.0383 +0 0.0473 +0 0.1948 +0 0.1203 +0 0.2652 +0 0.0640 +0 0.0456 +0 0.0453 +0 0.1556 +0 0.2175 +0 0.1942 +0 0.0529 +0 0.0644 +0 0.6061 +0 0.1743 +0 0.0832 +0 0.2157 +1 0.8210 +0 0.0803 +0 0.1060 +0 0.2049 +0 0.1418 +0 0.2103 +0 0.2321 +0 0.0402 +0 0.0787 +0 0.0636 +0 0.2784 +0 0.0575 +0 0.2230 +0 0.0375 +0 0.0926 +0 0.1211 +0 0.2357 +0 0.1278 +0 0.2579 +0 0.1263 +0 0.0847 +0 0.6983 +0 0.0659 +0 0.1491 +0 0.1208 +0 0.1077 +0 0.0493 +0 0.0929 +0 0.5333 +1 0.7883 +0 0.0894 +0 0.0685 +0 0.1575 +0 0.0797 +0 0.0793 +0 0.1916 +0 0.2475 +0 0.4152 +0 0.1386 +0 0.0801 +0 0.1086 +0 0.1239 +0 0.0958 +0 0.0855 +0 0.0461 +0 0.0461 +0 0.0523 +0 0.0842 +0 0.1546 +0 0.1199 +0 0.1861 +0 0.1503 +0 0.2870 +0 0.1542 +0 0.0526 +0 0.0741 +0 0.1223 +0 0.0696 +1 0.7820 +0 0.1511 +0 0.0959 +0 0.1200 +0 0.3179 +0 0.0896 +0 0.1245 +0 0.3557 +1 0.7668 +0 0.0890 +0 0.0934 +0 0.0569 +0 0.1611 +0 0.1842 +0 0.1912 +0 0.3133 +0 0.0607 +0 0.1835 +0 0.0616 +0 0.0761 +0 0.1193 +0 0.0809 +0 0.0540 +0 0.0444 +0 0.1662 +0 0.0917 +0 0.0763 +0 0.0716 +0 0.0840 +0 0.2083 +0 0.0638 +0 0.0878 +0 0.1243 +0 0.0929 +0 0.0516 +0 0.0473 +0 0.0602 +0 0.1196 +0 0.1110 +0 0.0890 +0 0.1059 +0 0.0497 +0 0.0452 +0 0.1440 +0 0.0727 +0 0.1477 +0 0.0709 +0 0.1514 +0 0.1424 +0 0.1506 +0 0.0819 +0 0.1795 +0 0.0677 +0 0.0861 +0 0.0718 +0 0.0804 +0 0.0969 +0 0.0832 +0 0.1374 +0 0.1880 +0 0.0425 +0 0.0617 +0 0.0813 +0 0.0664 +0 0.1211 +0 0.0782 +0 0.0782 +0 0.0979 +0 0.3172 +0 0.3898 +0 0.1579 +0 0.0819 +0 0.1850 +0 0.0681 +0 0.0790 +0 0.1265 +0 0.1006 +0 0.1148 +0 0.0679 +0 0.0406 +0 0.1149 +0 0.1317 +0 0.0404 +0 0.0926 +0 0.0511 +0 0.1049 +0 0.1485 +0 0.2040 +0 0.0699 +0 0.0579 +0 0.0512 +0 0.0447 +0 0.1376 +0 0.0652 +0 0.6088 +0 0.0414 +0 0.0554 +0 0.1199 +0 0.1312 +0 0.1289 +0 0.0824 +0 0.2865 +1 0.8417 +0 0.0787 +0 0.0722 +0 0.0896 +0 0.5980 +0 0.7439 +0 0.1402 +0 0.1040 +0 0.4502 +0 0.0690 +0 0.0813 +0 0.0474 +0 0.1192 +0 0.2877 +0 0.0559 +0 0.2159 +0 0.0609 +0 0.0854 +0 0.0627 +0 0.1345 +0 0.1942 +0 0.1513 +0 0.3250 +0 0.1500 +0 0.0685 +0 0.0870 +0 0.0581 +0 0.1133 +0 0.0933 +0 0.0685 +0 0.1345 +0 0.6708 +0 0.1141 +0 0.0913 +0 0.1124 +0 0.1020 +0 0.2082 +0 0.1328 +0 0.1248 +0 0.3981 +0 0.0490 +0 0.0702 +0 0.0914 +0 0.2018 +0 0.0736 +0 0.2563 +0 0.0856 +0 0.2952 +0 0.1298 +0 0.0826 +0 0.1239 +0 0.0651 +0 0.6225 +0 0.7464 +0 0.0759 +0 0.0666 +0 0.1537 +0 0.0807 +1 0.7739 +0 0.4304 +0 0.2190 +0 0.1241 +0 0.1460 +0 0.4228 +0 0.0596 +0 0.1101 +0 0.0522 +0 0.1414 +0 0.2967 +0 0.1330 +0 0.1436 +0 0.1259 +0 0.1297 +0 0.0795 +0 0.0518 +0 0.0578 +0 0.0904 +0 0.2274 +0 0.0703 +0 0.1198 +1 0.8415 +0 0.2792 +0 0.2518 +0 0.0689 +0 0.1157 +0 0.3721 +0 0.1323 +0 0.0821 +0 0.0892 +0 0.1185 +0 0.1157 +0 0.0417 +0 0.0890 +0 0.1482 +0 0.6560 +0 0.1159 +0 0.1873 +0 0.1045 +0 0.2188 +0 0.1220 +0 0.1940 +0 0.0528 +0 0.0468 +0 0.0583 +0 0.0901 +0 0.1474 +0 0.0556 +0 0.2067 +0 0.7153 +0 0.0812 +0 0.0935 +0 0.1056 +0 0.0731 +0 0.2304 +0 0.1109 +0 0.0730 +0 0.1329 +0 0.0463 +0 0.0552 +0 0.1089 +0 0.0530 +0 0.0488 +0 0.1072 +0 0.1405 +0 0.0847 +0 0.1166 +0 0.0738 +0 0.1027 +0 0.1460 +0 0.1819 +0 0.0881 +0 0.0965 +0 0.1158 +0 0.0475 +0 0.0703 +0 0.0796 +0 0.0506 +0 0.1324 +0 0.0964 +0 0.0828 +0 0.0841 +0 0.2748 +0 0.1412 +0 0.0959 +0 0.1776 +0 0.0689 +0 0.0561 +0 0.0654 +0 0.1754 +0 0.1724 +0 0.0731 +0 0.1249 +0 0.1561 +0 0.0990 +0 0.0618 +0 0.0645 +0 0.2271 +0 0.2398 +0 0.0677 +0 0.1831 +0 0.0918 +0 0.1626 +0 0.0866 +0 0.0931 +0 0.0992 +0 0.1073 +0 0.2821 +0 0.0769 +0 0.0811 +0 0.0742 +0 0.3065 +0 0.0957 +0 0.0840 +0 0.0660 +0 0.0674 +0 0.1444 +0 0.1403 +0 0.0438 +0 0.1043 +0 0.0372 +0 0.0349 +0 0.0535 +0 0.1341 +0 0.1671 +0 0.0696 +0 0.1002 +0 0.1018 +0 0.0628 +0 0.0733 +0 0.0859 +1 0.7934 +0 0.0961 +0 0.3600 +0 0.0643 +0 0.0496 +0 0.0785 +0 0.0658 +0 0.1321 +0 0.0668 +0 0.1226 +0 0.1919 +0 0.0409 +0 0.0753 +0 0.0510 +0 0.0572 +0 0.0910 +0 0.1089 +0 0.0996 +0 0.1783 +0 0.0854 +0 0.0855 +0 0.1045 +0 0.1052 +0 0.1028 +0 0.0826 +0 0.1306 +0 0.1771 +0 0.1276 +0 0.1089 +0 0.1467 +0 0.1849 +0 0.1018 +0 0.1211 +0 0.1844 +0 0.1144 +0 0.2753 +0 0.1008 +0 0.0744 +0 0.1272 +0 0.1310 +0 0.2704 +0 0.0653 +0 0.6531 +0 0.0817 +0 0.1307 +0 0.0678 +0 0.0904 +0 0.0980 +0 0.0815 +0 0.1636 +0 0.0997 +0 0.0727 +0 0.0775 +0 0.0466 +0 0.1056 +0 0.0741 +0 0.4373 +0 0.0783 +0 0.0656 +0 0.2145 +0 0.0661 +0 0.3466 +0 0.5099 +0 0.1470 +0 0.0729 +0 0.0945 +0 0.1330 +0 0.0516 +0 0.1131 +0 0.1112 +0 0.1833 +0 0.2132 +0 0.1559 +1 0.8096 +0 0.2855 +0 0.0512 +0 0.0875 +1 0.8171 +0 0.0892 +0 0.2861 +0 0.1652 +0 0.4580 +0 0.2887 +0 0.5065 +0 0.0859 +0 0.1759 +1 0.8292 +0 0.0785 +0 0.1484 +0 0.1511 +0 0.0431 +0 0.0366 +0 0.0948 +0 0.0569 +0 0.0697 +0 0.2210 +0 0.0800 +0 0.1148 +0 0.1053 +0 0.2577 +0 0.1227 +0 0.5563 +0 0.0685 +0 0.0424 +0 0.0954 +0 0.1350 +0 0.1480 +0 0.1276 +0 0.6909 +0 0.0657 +0 0.1067 +1 0.8073 +0 0.1711 +0 0.0784 +0 0.0659 +0 0.2217 +0 0.0975 +0 0.0885 +0 0.2138 +0 0.1050 +0 0.1910 +0 0.1415 +0 0.0951 +0 0.0960 +0 0.0893 +0 0.1676 +0 0.2361 +0 0.0635 +0 0.2269 +0 0.2956 +0 0.0677 +0 0.1482 +0 0.3900 +0 0.1739 +0 0.0751 +0 0.1265 +0 0.0949 +0 0.1025 +0 0.1237 +0 0.0715 +0 0.1011 +0 0.1854 +0 0.1710 +0 0.2102 +0 0.1291 +0 0.0911 +0 0.3552 +0 0.0665 +0 0.2142 +0 0.1449 +0 0.0890 +0 0.1843 +0 0.1473 +0 0.1804 +0 0.0692 +0 0.0736 +0 0.2377 +0 0.0502 +0 0.1580 +0 0.0934 +0 0.0874 +0 0.0858 +0 0.1895 +0 0.0904 +0 0.1475 +0 0.0834 +0 0.2663 +0 0.0731 +0 0.0703 +0 0.3753 +0 0.0922 +0 0.1636 +0 0.1404 +0 0.1856 +0 0.1099 +0 0.2007 +0 0.1299 +0 0.0909 +0 0.1086 +0 0.3995 +0 0.1878 +0 0.1745 +0 0.2302 +0 0.1501 +0 0.1047 +0 0.0477 +0 0.0390 +0 0.0756 +0 0.1486 +0 0.0650 +0 0.1426 +0 0.4170 +0 0.1864 +0 0.2422 +0 0.3698 +0 0.2279 +0 0.0610 +0 0.1615 +0 0.1054 +0 0.2918 +0 0.1047 +0 0.1682 +0 0.1773 +0 0.0663 +0 0.1086 +0 0.1171 +0 0.2465 +0 0.0512 +0 0.0604 +0 0.1418 +0 0.2156 +0 0.1048 +0 0.1041 +0 0.0607 +0 0.0997 +0 0.1777 +0 0.1198 +0 0.4198 +0 0.2751 +0 0.2091 +0 0.2326 +0 0.0580 +0 0.1025 +0 0.0780 +0 0.0453 +0 0.0452 +0 0.0612 +0 0.0848 +0 0.0677 +0 0.2228 +0 0.0536 +0 0.0562 +0 0.1295 +0 0.1802 +0 0.3183 +0 0.1643 +0 0.3697 +0 0.0737 +0 0.1151 +0 0.0831 +0 0.1601 +0 0.0592 +0 0.0584 +0 0.1131 +0 0.1498 +0 0.1658 +0 0.0646 +0 0.0407 +0 0.0945 +0 0.1795 +0 0.1487 +0 0.2128 +0 0.2719 +0 0.0719 +0 0.0838 +0 0.1051 +0 0.2134 +0 0.0747 +0 0.0621 +0 0.0722 +0 0.1028 +0 0.1250 +0 0.0891 +0 0.1310 +0 0.0892 +0 0.0400 +0 0.1078 +0 0.2360 +0 0.0903 +0 0.1305 +0 0.1007 +0 0.1228 +0 0.0436 +0 0.0566 +0 0.1437 +0 0.0532 +0 0.1136 +0 0.5460 +0 0.2825 +0 0.1297 +0 0.0356 +0 0.1213 +0 0.0666 +0 0.0448 +0 0.2067 +0 0.0762 +0 0.1711 +0 0.0751 +0 0.0985 +0 0.0614 +0 0.0577 +0 0.3963 +0 0.0437 +0 0.1475 +0 0.1616 +0 0.0946 +0 0.1318 +0 0.1332 +0 0.1566 +0 0.0464 +0 0.2682 +0 0.0663 +0 0.1167 +0 0.1383 +0 0.0991 +0 0.1372 +0 0.3835 +0 0.1042 +0 0.1130 +0 0.1743 +0 0.1089 +0 0.3987 +0 0.2361 +0 0.3523 +0 0.0661 +0 0.0572 +0 0.2138 +0 0.1126 +0 0.2615 +0 0.0617 +0 0.1123 +0 0.1240 +0 0.2542 +0 0.0406 +0 0.0363 +0 0.0653 +0 0.1678 +0 0.0691 +0 0.2603 +0 0.0669 +0 0.1284 +0 0.1050 +0 0.1528 +0 0.0858 +0 0.0947 +0 0.1322 +0 0.1353 +0 0.2623 +0 0.0956 +0 0.0685 +0 0.1712 +0 0.0885 +0 0.0695 +0 0.1616 +0 0.2115 +0 0.3178 +0 0.0484 +0 0.3229 +0 0.1483 +0 0.5539 +0 0.0711 +0 0.0880 +0 0.1274 +0 0.1780 +0 0.1021 +0 0.0681 +0 0.0535 +0 0.3134 +0 0.2217 +0 0.0739 +0 0.0301 +0 0.0798 +0 0.0835 +0 0.1139 +0 0.0583 +0 0.0707 +0 0.1168 +0 0.0441 +0 0.1371 +0 0.0490 +0 0.0551 +0 0.4081 +0 0.1378 +0 0.0769 +0 0.4401 +0 0.2394 +0 0.1332 +0 0.0494 +0 0.3147 +0 0.0967 +0 0.0291 +0 0.0440 +0 0.1661 +0 0.1246 +0 0.1096 +0 0.1488 +0 0.1405 +0 0.0475 +0 0.0614 +0 0.0448 +0 0.1229 +0 0.1512 +0 0.1174 +0 0.0537 +0 0.1061 +0 0.0660 +0 0.1935 +0 0.2215 +0 0.1632 +0 0.1278 +0 0.1086 +0 0.0926 +0 0.1542 +0 0.3523 +0 0.0589 +0 0.1056 +0 0.0939 +1 0.8203 +0 0.0381 +0 0.0880 +0 0.1216 +0 0.1458 +0 0.1622 +0 0.1193 +0 0.0411 +0 0.1130 +0 0.4091 +0 0.0445 +0 0.0825 +0 0.0365 +0 0.2094 +0 0.1029 +0 0.0556 +0 0.2281 +0 0.3503 +0 0.0861 +0 0.7100 +0 0.2268 +0 0.0694 +0 0.1262 +0 0.2892 +0 0.0816 +0 0.2699 +0 0.0580 +0 0.1125 +0 0.0352 +0 0.2515 +0 0.0712 +0 0.1035 +0 0.0653 +0 0.3236 +0 0.1519 +0 0.0611 +0 0.0847 +0 0.0921 +0 0.1051 +0 0.2739 +0 0.0658 +0 0.2284 +0 0.1073 +0 0.0723 +0 0.1993 +0 0.0926 +0 0.2489 +1 0.8141 +0 0.0489 +0 0.0744 +0 0.3127 +0 0.3145 +0 0.0532 +0 0.1813 +0 0.1857 +0 0.1391 +0 0.0765 +0 0.0554 +1 0.7657 +0 0.0534 +0 0.1964 +0 0.1613 +0 0.0498 +0 0.0685 +0 0.0983 +0 0.1329 +0 0.1806 +0 0.0974 +0 0.2012 +0 0.0555 +0 0.0849 +0 0.0572 +0 0.1671 +0 0.0615 +0 0.0926 +0 0.0460 +0 0.0768 +0 0.3207 +0 0.1135 +0 0.1626 +0 0.1680 +0 0.3469 +0 0.0693 +0 0.0424 +0 0.0783 +0 0.1243 +0 0.0933 +0 0.0750 +0 0.0745 +0 0.2131 +0 0.1094 +0 0.6139 +0 0.0408 +0 0.0809 +0 0.0565 +0 0.0617 +0 0.0807 +0 0.2015 +0 0.2935 +0 0.0679 +0 0.2085 +0 0.1839 +0 0.1106 +0 0.0754 +0 0.0565 +0 0.0597 +0 0.1044 +0 0.0889 +0 0.1649 +0 0.1494 +0 0.0353 +0 0.0984 +0 0.0694 +0 0.0746 +0 0.0873 +0 0.1031 +0 0.7281 +0 0.0379 +0 0.0340 +0 0.0719 +0 0.1490 +0 0.1624 +0 0.1193 +0 0.1333 +0 0.1514 +0 0.2031 +0 0.2775 +0 0.0870 +0 0.1251 +0 0.1822 +0 0.1091 +0 0.1346 +0 0.0782 +0 0.0963 +0 0.1777 +0 0.0813 +0 0.2081 +0 0.1578 +0 0.0475 +0 0.1298 +0 0.0720 +0 0.0890 +0 0.0873 +0 0.1582 +1 0.8421 +0 0.1202 +0 0.3011 +0 0.0909 +0 0.1211 +0 0.0579 +0 0.0742 +0 0.1900 +0 0.0870 +0 0.1072 +0 0.0552 +0 0.4201 +0 0.0793 +0 0.0549 +0 0.0563 +0 0.2241 +0 0.6248 +0 0.1749 +0 0.0901 +0 0.0717 +0 0.0549 +0 0.1011 +0 0.1326 +0 0.0443 +0 0.0857 +0 0.0862 +0 0.2083 +0 0.1727 +0 0.0398 +0 0.1116 +0 0.6938 +0 0.1875 +0 0.0566 +0 0.0759 +0 0.2505 +0 0.1548 +0 0.1306 +0 0.1167 +0 0.0669 +0 0.0933 +0 0.1027 +0 0.2662 +0 0.2714 +0 0.0708 +0 0.0981 +0 0.1155 +0 0.3198 +0 0.0751 +0 0.1719 +0 0.1187 +0 0.0914 +0 0.1079 +0 0.4133 +0 0.3636 +0 0.3139 +0 0.3137 +0 0.1628 +0 0.0540 +0 0.3154 +0 0.0757 +0 0.1080 +0 0.1288 +0 0.2623 +0 0.1007 +0 0.0797 +0 0.2337 +0 0.2724 +0 0.0880 +0 0.1637 +0 0.0615 +0 0.0455 +0 0.1490 +0 0.0792 +0 0.0499 +0 0.0966 +0 0.1026 +0 0.1122 +0 0.0746 +0 0.2154 +0 0.0744 +0 0.1228 +0 0.0547 +0 0.1874 +0 0.3537 +0 0.0754 +0 0.0742 +0 0.0451 +1 0.8551 +0 0.1186 +0 0.1087 +0 0.0782 +0 0.1369 +0 0.0518 +0 0.0495 +0 0.0669 +0 0.1291 +0 0.1301 +0 0.1192 +0 0.0823 +0 0.7403 +0 0.2661 +0 0.1054 +0 0.1882 +0 0.0494 +1 0.8340 +0 0.1579 +0 0.1244 +0 0.2599 +0 0.0810 +0 0.1654 +0 0.0423 +0 0.1146 +0 0.0787 +0 0.0552 +0 0.0772 +0 0.1917 +0 0.1303 +0 0.0822 +0 0.1067 +0 0.3372 +0 0.0586 +0 0.0953 +0 0.0842 +0 0.1345 +0 0.1006 +0 0.0837 +0 0.0993 +0 0.0791 +0 0.1293 +0 0.1359 +0 0.4264 +0 0.0899 +0 0.0487 +0 0.2686 +0 0.1669 +0 0.1151 +0 0.5221 +0 0.0916 +0 0.0397 +0 0.0583 +0 0.1641 +0 0.1739 +0 0.2307 +0 0.2356 +0 0.1075 +0 0.1717 +0 0.7478 +0 0.1482 +0 0.1380 +0 0.0935 +1 0.2306 +0 0.0672 +0 0.1046 +0 0.0747 +0 0.1820 +0 0.1030 +0 0.1339 +0 0.5828 +0 0.0353 +0 0.2759 +1 0.8650 +0 0.2329 +0 0.0717 +0 0.1899 +0 0.0403 +0 0.0586 +0 0.1232 +0 0.2179 +0 0.3841 +0 0.1881 +1 0.8687 +0 0.0999 +0 0.1081 +0 0.0827 +0 0.1038 +0 0.0788 +1 0.8557 +0 0.0743 +0 0.0652 +0 0.0652 +0 0.0930 +0 0.2273 +0 0.1267 +0 0.0453 +0 0.1954 +0 0.2723 +0 0.1665 +0 0.2203 +0 0.0506 +0 0.0645 +0 0.2354 +0 0.1016 +0 0.1556 +0 0.0552 +0 0.1441 +0 0.1183 +0 0.4893 +0 0.0647 +0 0.0589 +0 0.1455 +0 0.2326 +0 0.0894 +0 0.5026 +0 0.1224 +0 0.0588 +0 0.2127 +0 0.0999 +0 0.5011 +0 0.1627 +0 0.1957 +0 0.0663 +0 0.1595 +0 0.2230 +0 0.1299 +0 0.1025 +0 0.0367 +0 0.1467 +0 0.0392 +0 0.6677 +0 0.2715 +0 0.0780 +0 0.0492 +0 0.0823 +0 0.1518 +0 0.1935 +0 0.0702 +0 0.0743 +0 0.2637 +0 0.1557 +0 0.0383 +0 0.0829 +0 0.3090 +0 0.1149 +0 0.0715 +0 0.1309 +0 0.3498 +0 0.0659 +0 0.1236 +0 0.0809 +0 0.1754 +0 0.1175 +0 0.2270 +0 0.0734 +0 0.1057 +0 0.2415 +0 0.1016 +1 0.8593 +0 0.1206 +0 0.1889 +0 0.1490 +0 0.7156 +0 0.2999 +0 0.0679 +0 0.0762 +0 0.0816 +0 0.0870 +0 0.2414 +0 0.0495 +0 0.0485 +0 0.1234 +0 0.0864 +0 0.1030 +0 0.0967 +0 0.1112 +0 0.1739 +0 0.1265 +0 0.7340 +0 0.1708 +0 0.1362 +0 0.1224 +0 0.0810 +0 0.0972 +0 0.0503 +0 0.1290 +0 0.0712 +0 0.0584 +0 0.0464 +0 0.1793 +0 0.0771 +0 0.1079 +0 0.0962 +0 0.0547 +0 0.0651 +0 0.0758 +0 0.1012 +0 0.1228 +0 0.0602 +0 0.3617 +0 0.0628 +0 0.0796 +0 0.1090 +0 0.1853 +0 0.0689 +0 0.2082 +0 0.1493 +0 0.0574 +0 0.1971 +0 0.0701 +0 0.0444 +0 0.0527 +0 0.0357 +0 0.3416 +0 0.1011 +0 0.0580 +0 0.0481 +0 0.2192 +0 0.1087 +0 0.0619 +0 0.1081 +0 0.0323 +0 0.3223 +0 0.2260 +0 0.0452 +0 0.2635 +0 0.1305 +0 0.0587 +0 0.7265 +0 0.1183 +0 0.0878 +1 0.7573 +0 0.1494 +0 0.1466 +0 0.1660 +0 0.1007 +0 0.1197 +0 0.1850 +0 0.1919 +0 0.0751 +0 0.0687 +0 0.1228 +0 0.3041 +0 0.1316 +0 0.0368 +0 0.0560 +0 0.0610 +0 0.0598 +0 0.0511 +0 0.0601 +0 0.1332 +0 0.0561 +0 0.0867 +0 0.1552 +0 0.0591 +0 0.0877 +0 0.5301 +0 0.0712 +0 0.0669 +0 0.0441 +0 0.1809 +0 0.1482 +0 0.1733 +0 0.0643 +0 0.0948 +0 0.0649 +0 0.0557 +0 0.1479 +0 0.0566 +0 0.2483 +0 0.1467 +0 0.0711 +0 0.0490 +0 0.0884 +0 0.0733 +0 0.6997 +0 0.3202 +0 0.0647 +0 0.3407 +0 0.1510 +0 0.6235 +0 0.5415 +1 0.8152 +0 0.0802 +0 0.3134 +1 0.8696 +0 0.1374 +0 0.1077 +0 0.4484 +0 0.1199 +0 0.7302 +0 0.0536 +0 0.1635 +0 0.0375 +0 0.1216 +0 0.0784 +0 0.0580 +0 0.0498 +0 0.0432 +0 0.1045 +0 0.0804 +0 0.1526 +0 0.6255 +0 0.0815 +0 0.1170 +0 0.0629 +0 0.0936 +0 0.0845 +0 0.1158 +0 0.0964 +0 0.1941 +0 0.2084 +0 0.2341 +0 0.0691 +0 0.1832 +0 0.0921 +0 0.0466 +0 0.0563 +0 0.0914 +0 0.0552 +0 0.0615 +0 0.0953 +0 0.0531 +0 0.1445 +0 0.0549 +0 0.1228 +0 0.0791 +0 0.0581 +0 0.2322 +0 0.1122 +0 0.1952 +0 0.0798 +0 0.1846 +0 0.0636 +0 0.0660 +0 0.0812 +0 0.1258 +0 0.0675 +0 0.1440 +0 0.1086 +0 0.0619 +0 0.1489 +0 0.1188 +0 0.0586 +0 0.1062 +0 0.0763 +0 0.1545 +0 0.1302 +0 0.0661 +0 0.1568 +0 0.1311 +0 0.0424 +0 0.0868 +0 0.1240 +0 0.0910 +0 0.0613 +0 0.3163 +0 0.0383 +1 0.8054 +0 0.0624 +0 0.1165 +0 0.1749 +0 0.0811 +0 0.3037 +0 0.1269 +0 0.1894 +0 0.3723 +0 0.0409 +0 0.1260 +0 0.1068 +0 0.2100 +0 0.1413 +0 0.0713 +0 0.0545 +0 0.0477 +0 0.3172 +0 0.1050 +0 0.1671 +0 0.0694 +0 0.0780 +0 0.1151 +0 0.2855 +0 0.3173 +0 0.1717 +0 0.0619 +0 0.0437 +0 0.1048 +0 0.0691 +0 0.0478 +0 0.0860 +0 0.1068 +0 0.0850 +0 0.1136 +0 0.0593 +0 0.0691 +0 0.1661 +0 0.0861 +0 0.0638 +0 0.6161 +0 0.3292 +0 0.1992 +1 0.8403 +0 0.1218 +0 0.0878 +0 0.1662 +0 0.0508 +0 0.0760 +0 0.0682 +0 0.0707 +0 0.0588 +0 0.1007 +0 0.0887 +0 0.1115 +0 0.0345 +0 0.1639 +0 0.1909 +0 0.0635 +0 0.0667 +0 0.0689 +0 0.0735 +0 0.2714 +0 0.3583 +0 0.0554 +0 0.1080 +0 0.5296 +0 0.2274 +1 0.8435 +0 0.0874 +0 0.1434 +0 0.0721 +0 0.1031 +0 0.0688 +0 0.1678 +0 0.1143 +0 0.0723 +0 0.1453 +0 0.1977 +0 0.0482 +0 0.2045 +0 0.3158 +0 0.0352 +0 0.0503 +0 0.0924 +0 0.1577 +0 0.0628 +0 0.0606 +0 0.2741 +0 0.0845 +0 0.2729 +0 0.2014 +0 0.5511 +0 0.2001 +0 0.2575 +0 0.5013 +0 0.2572 +0 0.0449 +0 0.3981 +0 0.1713 +0 0.2260 +0 0.0965 +0 0.0842 +0 0.0658 +0 0.4034 +0 0.4230 +0 0.0657 +0 0.2291 +0 0.2343 +0 0.3306 +0 0.1110 +0 0.0566 +0 0.0560 +0 0.0766 +0 0.0653 +0 0.2589 +0 0.1568 +0 0.1928 +0 0.0618 +0 0.0827 +0 0.1661 +0 0.4691 +0 0.1066 +0 0.1872 +0 0.0940 +0 0.0704 +0 0.0811 +0 0.1558 +1 0.8016 +0 0.0963 +0 0.1543 +0 0.1567 +0 0.0615 +0 0.1008 +0 0.3439 +0 0.0508 +0 0.1258 +0 0.1072 +0 0.1480 +0 0.1188 +0 0.0894 +0 0.0434 +0 0.0449 +0 0.1189 +0 0.1107 +0 0.1867 +0 0.4207 +0 0.0575 +0 0.0704 +0 0.1260 +0 0.0594 +0 0.0793 +0 0.1052 +0 0.1333 +0 0.0385 +0 0.0820 +0 0.1491 +0 0.0991 +0 0.1421 +0 0.3321 +0 0.0954 +0 0.0679 +0 0.3450 +0 0.0534 +0 0.1478 +0 0.0702 +0 0.0685 +0 0.0799 +0 0.1989 +0 0.1057 +0 0.0605 +0 0.0326 +0 0.0651 +0 0.0761 +0 0.1022 +0 0.4327 +0 0.0814 +0 0.1063 +0 0.0851 +0 0.0654 +0 0.1721 +0 0.1950 +0 0.2472 +0 0.0776 +0 0.0451 +0 0.1705 +0 0.5075 +0 0.0367 +0 0.0635 +0 0.0646 +0 0.0805 +0 0.1698 +0 0.0653 +0 0.1465 +0 0.1102 +0 0.1175 +0 0.1383 +0 0.0772 +0 0.1863 +0 0.5299 +0 0.1479 +0 0.2129 +0 0.2214 +0 0.6764 +0 0.0799 +0 0.4616 +0 0.0777 +0 0.0509 +0 0.0801 +0 0.4363 +0 0.2108 +0 0.1404 +0 0.0884 +0 0.0958 +0 0.0374 +0 0.0801 +0 0.0427 +0 0.1450 +0 0.0614 +0 0.2068 +0 0.0299 +0 0.1028 +0 0.1981 +0 0.7423 +0 0.0632 +0 0.0846 +0 0.2690 +0 0.0671 +0 0.0952 +0 0.0606 +0 0.4215 +0 0.0624 +0 0.1452 +0 0.1184 +0 0.1921 +1 0.7740 +0 0.0725 +0 0.1038 +0 0.0528 +0 0.0888 +0 0.1328 +0 0.1772 +0 0.1404 +0 0.1327 +0 0.0301 +0 0.1387 +0 0.0727 +0 0.0864 +0 0.0638 +0 0.0404 +0 0.1102 +0 0.0923 +0 0.0919 +0 0.1362 +0 0.2401 +0 0.0618 +0 0.6779 +0 0.4898 +1 0.8168 +0 0.1094 +0 0.0905 +0 0.0535 +0 0.0705 +0 0.0925 +0 0.0753 +0 0.1393 +0 0.3069 +0 0.0489 +0 0.1771 +0 0.0792 +0 0.0585 +0 0.0857 +0 0.2932 +0 0.1611 +0 0.0396 +0 0.0322 +0 0.2526 +0 0.0701 +0 0.0853 +0 0.1639 +0 0.1973 +0 0.1828 +0 0.1385 +0 0.0884 +0 0.0390 +0 0.1435 +0 0.1156 +0 0.0903 +0 0.0964 +0 0.1310 +0 0.1108 +1 0.8144 +0 0.0662 +0 0.1336 +0 0.0918 +0 0.0385 +0 0.0872 +0 0.0531 +0 0.0990 +0 0.4676 +0 0.0925 +0 0.1671 +0 0.2578 +0 0.1881 +0 0.1584 +0 0.0975 +0 0.1128 +0 0.1056 +0 0.1600 +0 0.1974 +0 0.6973 +0 0.1270 +0 0.0342 +0 0.1997 +0 0.0738 +0 0.0828 +0 0.2015 +0 0.3304 +0 0.5245 +0 0.1257 +0 0.1643 +0 0.1260 +0 0.7252 +0 0.1160 +0 0.0973 +0 0.0531 +0 0.1626 +0 0.1842 +0 0.4759 +0 0.1108 +0 0.0786 +0 0.0859 +0 0.0368 +0 0.1838 +0 0.1294 +0 0.6949 +0 0.0733 +0 0.1202 +0 0.0697 +0 0.1326 +0 0.0756 +0 0.1597 +0 0.0985 +0 0.1985 +0 0.1010 +0 0.0655 +0 0.0850 +0 0.0465 +0 0.0787 +0 0.2114 +0 0.1180 +0 0.1461 +0 0.2758 +0 0.2761 +0 0.0858 +0 0.0844 +0 0.1010 +0 0.0655 +0 0.0715 +0 0.1309 +0 0.1425 +0 0.1043 +0 0.1522 +0 0.0913 +0 0.1984 +0 0.1476 +0 0.1271 +0 0.1106 +0 0.0594 +0 0.2178 +0 0.0931 +0 0.1455 +0 0.1559 +0 0.1078 +0 0.0630 +0 0.1150 +0 0.0446 +0 0.0574 +0 0.2390 +0 0.0876 +0 0.1862 +0 0.2890 +0 0.1527 +0 0.1392 +0 0.0689 +0 0.0697 +0 0.0984 +0 0.0611 +0 0.1029 +0 0.2556 +0 0.2544 +0 0.2494 +0 0.0390 +0 0.0843 +0 0.0825 +0 0.0636 +0 0.3413 +0 0.0820 +0 0.0331 +0 0.0819 +0 0.0581 +0 0.5717 +0 0.0645 +0 0.1134 +0 0.0810 +0 0.3627 +0 0.0430 +0 0.0594 +0 0.1305 +0 0.0510 +0 0.1830 +0 0.1195 +0 0.7289 +0 0.1374 +0 0.1425 +0 0.3286 +0 0.4689 +0 0.1083 +0 0.1198 +0 0.0682 +0 0.1997 +0 0.0566 +0 0.2765 +0 0.1437 +0 0.2133 +0 0.1784 +0 0.0670 +0 0.1714 +0 0.0433 +0 0.0591 +0 0.0889 +0 0.1297 +0 0.0781 +0 0.0903 +0 0.0651 +0 0.0921 +0 0.3201 +0 0.3777 +0 0.0493 +0 0.1880 +0 0.1285 +0 0.0923 +0 0.0676 +0 0.1246 +0 0.0892 +0 0.2454 +0 0.2394 +0 0.0785 +0 0.0791 +0 0.4209 +0 0.0531 +0 0.3135 +0 0.2122 +0 0.0712 +0 0.7389 +0 0.0391 +0 0.1549 +0 0.1743 +0 0.2480 +0 0.0941 +0 0.1284 +0 0.2155 +0 0.5108 +0 0.1373 +0 0.0842 +0 0.0683 +0 0.1141 +0 0.0597 +0 0.0595 +0 0.0650 +0 0.0533 +0 0.3415 +0 0.2418 +0 0.2156 +0 0.0994 +0 0.1699 +0 0.1082 +0 0.3443 +0 0.0721 +0 0.0741 +0 0.0593 +0 0.1547 +0 0.1021 +0 0.0877 +0 0.0681 +0 0.1442 +0 0.1661 +0 0.2968 +0 0.2357 +0 0.1639 +0 0.0440 +0 0.0862 +0 0.1289 +0 0.0464 +0 0.2470 +0 0.1078 +0 0.0846 +0 0.2313 +0 0.0952 +0 0.0767 +0 0.0958 +0 0.0759 +0 0.1487 +0 0.3458 +0 0.0402 +0 0.0603 +0 0.1086 +0 0.1177 +0 0.0612 +0 0.0584 +0 0.2256 +0 0.1781 +0 0.0868 +0 0.3381 +0 0.1444 +0 0.1046 +0 0.1323 +0 0.1526 +0 0.1157 +0 0.1589 +0 0.1397 +0 0.2400 +0 0.0685 +0 0.2328 +0 0.0606 +0 0.0776 +0 0.1054 +0 0.0613 +0 0.1424 +0 0.0397 +0 0.0885 +0 0.0600 +0 0.0463 +0 0.0965 +0 0.1080 +0 0.1817 +0 0.1411 +0 0.3019 +0 0.0697 +0 0.1065 +0 0.0803 +0 0.0665 +0 0.0827 +0 0.0575 +0 0.1692 +0 0.1462 +0 0.0767 +0 0.0921 +0 0.0720 +0 0.0644 +0 0.1316 +0 0.0923 +0 0.1067 +0 0.1288 +0 0.0779 +0 0.0468 +0 0.0570 +0 0.1746 +0 0.0708 +0 0.1152 +0 0.0714 +0 0.0761 +0 0.0696 +0 0.3527 +0 0.0815 +0 0.2663 +0 0.0405 +0 0.1163 +0 0.3047 +0 0.1232 +0 0.2614 +0 0.2917 +0 0.1441 +0 0.0891 +0 0.3379 +0 0.1611 +0 0.1778 +0 0.0592 +0 0.1257 +0 0.1457 +0 0.7013 +0 0.1589 +0 0.1061 +0 0.1833 +0 0.0765 +0 0.0604 +0 0.2791 +0 0.0412 +0 0.1589 +0 0.0778 +0 0.0932 +0 0.1015 +0 0.0928 +0 0.0423 +0 0.0801 +0 0.0650 +0 0.1256 +0 0.1030 +0 0.1055 +0 0.0549 +0 0.5139 +0 0.0735 +0 0.0805 +0 0.1129 +0 0.4213 +0 0.2209 +0 0.0366 +0 0.0324 +0 0.1013 +0 0.2051 +0 0.1796 +0 0.1752 +0 0.2376 +0 0.1188 +0 0.0706 +0 0.0514 +0 0.0370 +0 0.0768 +0 0.0639 +0 0.0718 +0 0.2595 +0 0.0784 +0 0.2712 +0 0.1264 +0 0.1400 +0 0.1137 +0 0.0595 +0 0.0526 +0 0.2213 +0 0.0908 +0 0.1189 +0 0.0612 +0 0.0344 +0 0.1486 +0 0.0697 +0 0.1475 +0 0.1591 +0 0.0389 +0 0.0553 +0 0.1575 +0 0.6666 +0 0.0965 +0 0.1063 +0 0.0663 +0 0.0944 +0 0.1217 +0 0.0407 +0 0.2141 +0 0.2053 +0 0.1831 +0 0.2192 +0 0.0876 +0 0.1547 +0 0.0681 +0 0.2702 +0 0.0592 +0 0.0673 +0 0.3362 +0 0.0561 +0 0.0572 +0 0.1572 +0 0.1934 +0 0.0697 +0 0.1724 +0 0.2353 +0 0.1325 +0 0.0497 +0 0.1162 +0 0.0808 +0 0.0678 +0 0.1489 +1 0.8089 +0 0.1244 +0 0.0754 +0 0.1440 +0 0.2407 +0 0.1567 +1 0.8074 +0 0.0640 +0 0.2405 +0 0.0804 +0 0.0698 +0 0.0414 +0 0.1819 +0 0.1121 +0 0.2413 +0 0.1099 +0 0.6201 +0 0.0458 +0 0.0831 +0 0.0837 +0 0.0482 +0 0.1730 +0 0.1053 +0 0.0816 +0 0.1428 +0 0.0739 +0 0.1507 +0 0.0651 +0 0.1264 +0 0.1120 +0 0.0915 +0 0.1880 +0 0.0408 +0 0.1376 +0 0.2488 +0 0.0728 +0 0.0492 +0 0.5519 +0 0.2496 +0 0.0736 +0 0.0903 +0 0.1496 +0 0.0819 +0 0.0987 +0 0.1479 +0 0.0922 +0 0.2569 +0 0.1557 +0 0.0683 +0 0.3078 +0 0.0823 +0 0.1725 +0 0.0953 +0 0.0791 +0 0.1659 +0 0.0765 +0 0.1000 +0 0.1466 +0 0.1952 +0 0.2983 +0 0.0644 +0 0.0598 +0 0.0339 +0 0.1350 +0 0.0646 +0 0.5372 +0 0.0731 +0 0.0681 +0 0.0963 +0 0.2280 +0 0.0885 +0 0.1670 +0 0.1495 +0 0.0713 +0 0.0725 +0 0.0896 +1 0.8064 +0 0.1090 +1 0.8426 +0 0.2078 +0 0.4405 +0 0.1848 +0 0.0875 +0 0.0592 +0 0.2231 +0 0.7183 +0 0.2520 +0 0.0712 +0 0.0842 +0 0.1627 +0 0.1273 +0 0.1708 +0 0.2049 +0 0.1042 +0 0.0592 +1 0.8173 +0 0.3220 +0 0.1089 +0 0.0601 +0 0.4529 +0 0.0682 +0 0.1280 +0 0.1591 +0 0.0551 +0 0.2010 +0 0.1802 +0 0.0823 +0 0.0655 +0 0.6306 +0 0.0656 +0 0.1289 +0 0.0869 +0 0.1106 +0 0.0867 +0 0.0702 +0 0.0897 +0 0.6272 +0 0.0970 +0 0.1398 +0 0.0527 +0 0.0764 +0 0.1005 +0 0.0699 +0 0.1228 +0 0.0983 +0 0.0452 +0 0.1009 +0 0.0649 +0 0.1083 +0 0.0884 +0 0.1014 +0 0.1162 +0 0.0653 +0 0.1378 +0 0.1433 +0 0.1367 +1 0.8214 +0 0.0745 +0 0.1019 +0 0.1888 +0 0.0846 +0 0.0576 +0 0.0901 +0 0.0464 +0 0.0554 +0 0.1327 +0 0.1230 +0 0.0913 +0 0.0993 +0 0.0849 +0 0.0980 +0 0.0539 +0 0.0503 +0 0.1562 +0 0.0921 +1 0.8278 +0 0.0745 +0 0.1271 +0 0.0609 +0 0.3610 +1 0.8282 +0 0.1911 +0 0.0753 +0 0.2295 +0 0.1225 +0 0.1442 +0 0.0806 +0 0.0722 +0 0.2077 +0 0.0785 +0 0.1793 +0 0.0780 +0 0.1786 +0 0.0938 +0 0.1980 +0 0.0789 +0 0.0935 +0 0.0595 +0 0.1778 +0 0.1096 +0 0.0879 +0 0.0946 +0 0.1725 +0 0.0760 +0 0.1090 +0 0.0385 +0 0.1436 +0 0.1046 +1 0.1514 +0 0.0707 +0 0.1063 +0 0.0433 +0 0.0496 +0 0.0715 +0 0.0417 +0 0.0858 +0 0.0958 +0 0.2887 +0 0.2400 +0 0.2619 +0 0.1519 +0 0.3264 +0 0.1013 +0 0.1385 +0 0.0491 +0 0.2374 +0 0.1296 +0 0.1331 +0 0.1152 +0 0.1357 +0 0.4511 +0 0.5372 +0 0.1500 +0 0.1903 +1 0.8149 +0 0.1883 +0 0.0767 +0 0.1053 +0 0.0956 +0 0.0957 +0 0.1219 +0 0.1041 +0 0.1293 +0 0.0712 +0 0.3508 +0 0.0781 +0 0.0483 +0 0.1433 +0 0.0564 +0 0.1249 +0 0.2214 +0 0.0784 +0 0.1061 +0 0.0885 +0 0.1115 +0 0.0788 +0 0.1962 +0 0.1188 +0 0.1606 +0 0.0996 +0 0.1056 +0 0.1450 +0 0.0708 +0 0.0413 +0 0.0528 +0 0.0905 +0 0.0973 +0 0.0985 +0 0.1126 +0 0.0851 +0 0.1626 +0 0.0800 +0 0.5711 +0 0.1580 +0 0.1042 +0 0.3477 +0 0.0431 +0 0.0823 +0 0.1375 +0 0.1924 +0 0.1185 +0 0.0850 +0 0.0924 +0 0.1243 +0 0.1015 +1 0.8272 +0 0.4274 +0 0.0623 +0 0.0754 +0 0.0968 +0 0.0885 +0 0.6142 +0 0.0617 +0 0.1343 +0 0.1987 +0 0.2140 +0 0.0947 +0 0.1839 +0 0.0419 +0 0.1160 +0 0.1172 +0 0.0694 +0 0.2510 +0 0.0553 +0 0.1079 +0 0.1128 +0 0.1910 +0 0.0903 +0 0.1327 +0 0.0807 +0 0.3504 +0 0.1846 +0 0.2196 +0 0.2356 +0 0.0528 +0 0.1609 +0 0.1068 +0 0.0882 +0 0.0596 +0 0.2441 +0 0.2062 +0 0.3051 +0 0.0968 +0 0.3063 +0 0.0847 +0 0.3519 +0 0.0722 +0 0.1276 +0 0.1166 +0 0.0914 +0 0.0904 +0 0.0540 +0 0.0408 +0 0.1480 +0 0.0544 +0 0.0532 +1 0.7943 +0 0.1177 +0 0.0642 +0 0.1216 +0 0.0481 +0 0.1373 +0 0.0685 +0 0.0776 +0 0.0406 +0 0.0532 +0 0.1569 +1 0.7785 +0 0.0793 +0 0.1471 +0 0.1309 +0 0.0785 +0 0.2559 +0 0.0581 +0 0.1960 +0 0.0689 +1 0.7648 +1 0.7516 +0 0.1660 +0 0.2699 +0 0.2340 +0 0.0722 +0 0.1485 +0 0.0638 +0 0.1454 +0 0.1051 +0 0.1166 +0 0.0365 +0 0.6167 +0 0.2016 +0 0.3453 +0 0.1247 +0 0.2033 +0 0.1112 +1 0.7585 +0 0.3023 +0 0.1107 +0 0.1129 +0 0.1597 +0 0.7479 +0 0.3146 +0 0.1297 +0 0.1022 +0 0.1358 +0 0.0679 +0 0.0786 +0 0.0735 +0 0.3723 +0 0.0692 +0 0.0551 +0 0.2651 +0 0.0743 +0 0.1351 +0 0.0984 +0 0.1048 +0 0.2781 +0 0.0735 +0 0.0441 +0 0.0744 +0 0.0644 +0 0.0983 +0 0.0905 +0 0.1321 +0 0.1496 +0 0.0986 +0 0.0601 +0 0.1230 +0 0.0443 +0 0.0266 +0 0.0371 +0 0.0674 +0 0.4988 +0 0.0922 +0 0.1792 +0 0.6844 +0 0.2655 +0 0.0568 +0 0.4174 +0 0.1354 +0 0.2155 +0 0.1432 +0 0.0507 +0 0.1048 +0 0.0578 +0 0.0821 +1 0.7950 +0 0.0836 +0 0.0865 +0 0.3836 +0 0.0932 +0 0.0681 +0 0.2379 +0 0.1531 +0 0.1619 +0 0.0691 +0 0.2619 +0 0.2616 +0 0.0939 +0 0.1752 +0 0.0443 +0 0.0867 +0 0.0490 +0 0.0845 +0 0.0926 +0 0.0526 +0 0.0959 +0 0.0935 +0 0.0819 +0 0.0415 +0 0.2522 +0 0.0575 +0 0.2348 +0 0.1607 +0 0.0607 +0 0.2038 +0 0.0624 +0 0.0511 +0 0.0763 +0 0.0725 +0 0.0976 +0 0.7162 +0 0.0879 +0 0.0725 +0 0.1824 +0 0.1110 +0 0.0816 +0 0.0993 +0 0.0965 +0 0.1250 +0 0.0446 +0 0.1607 +0 0.0715 +0 0.1237 +0 0.3098 +0 0.7450 +0 0.0669 +1 0.8197 +0 0.0744 +0 0.0931 +0 0.0903 +0 0.0482 +0 0.1297 +0 0.0938 +0 0.2695 +0 0.2732 +0 0.1179 +0 0.0910 +0 0.1171 +0 0.2705 +0 0.1330 +0 0.0694 +0 0.1016 +0 0.0928 +0 0.0481 +0 0.0579 +1 0.8513 +0 0.0424 +0 0.1300 +0 0.1889 +0 0.1353 +0 0.1428 +0 0.0730 +0 0.1223 +0 0.0735 +0 0.1249 +0 0.0654 +0 0.0786 +0 0.1007 +0 0.2267 +0 0.0455 +0 0.0350 +0 0.0586 +0 0.1071 +0 0.1572 +0 0.1244 +0 0.1628 +0 0.1298 +0 0.2609 +0 0.1676 +0 0.0660 +0 0.0747 +0 0.0392 +0 0.2292 +0 0.1803 +0 0.5881 +0 0.1036 +0 0.0686 +0 0.1627 +0 0.0520 +0 0.0609 +0 0.1163 +0 0.1529 +0 0.1110 +0 0.0945 +0 0.2970 +0 0.1195 +0 0.1198 +0 0.1186 +0 0.0569 +0 0.1383 +0 0.0460 +0 0.3702 +0 0.1146 +0 0.0718 +0 0.4317 +0 0.1437 +1 0.8520 +0 0.0942 +0 0.3293 +0 0.1166 +0 0.1581 +0 0.1644 +0 0.0681 +0 0.2577 +0 0.1455 +0 0.0536 +0 0.1103 +0 0.0611 +0 0.0626 +0 0.0802 +0 0.0359 +0 0.6816 +0 0.0597 +0 0.2268 +0 0.0848 +0 0.6278 +0 0.1030 +1 0.8543 +0 0.1247 +0 0.1450 +0 0.0967 +0 0.0520 +0 0.0792 +0 0.0672 +0 0.1960 +0 0.1312 +0 0.1337 +0 0.0468 +0 0.0760 +0 0.0718 +0 0.2890 +0 0.1983 +0 0.0807 +0 0.0542 +0 0.1620 +0 0.1533 +0 0.1776 +0 0.1566 +0 0.1119 +0 0.0487 +0 0.0428 +0 0.0937 +0 0.1737 +0 0.0665 +0 0.0870 +0 0.2324 +0 0.0542 +0 0.0477 +0 0.0716 +0 0.0872 +0 0.2247 +0 0.1469 +0 0.1494 +0 0.0700 +0 0.1348 +0 0.1214 +0 0.1276 +0 0.0698 +0 0.0795 +0 0.1370 +0 0.3307 +0 0.0643 +0 0.1889 +0 0.1090 +0 0.0534 +0 0.1896 +0 0.0691 +0 0.0836 +0 0.1186 +0 0.0968 +0 0.3345 +0 0.1029 +0 0.0341 +0 0.1277 +0 0.0773 +0 0.0641 +0 0.4411 +0 0.1591 +0 0.1482 +0 0.1529 +0 0.0754 +0 0.2376 +0 0.1103 +0 0.0922 +0 0.5701 +0 0.1383 +0 0.3296 +0 0.0640 +0 0.2253 +0 0.2883 +0 0.1238 +0 0.2194 +0 0.1826 +0 0.1834 +0 0.1117 +0 0.3319 +0 0.1471 +0 0.7434 +0 0.2056 +0 0.0768 +0 0.1203 +0 0.0629 +0 0.1348 +0 0.2885 +0 0.1149 +0 0.4457 +0 0.0569 +0 0.1369 +0 0.3603 +0 0.1229 +0 0.0615 +0 0.1288 +0 0.1048 +0 0.1709 +0 0.0341 +0 0.0790 +0 0.1063 +0 0.1208 +1 0.7967 +0 0.1460 +0 0.0402 +0 0.1771 +0 0.2051 +0 0.0956 +0 0.0458 +0 0.1306 +0 0.0777 +0 0.1344 +0 0.0830 +0 0.1392 +0 0.4512 +0 0.0632 +0 0.1651 +0 0.1432 +0 0.1783 +0 0.1238 +0 0.0727 +0 0.3728 +0 0.0351 +0 0.1954 +0 0.0426 +0 0.0875 +0 0.2069 +0 0.1644 +0 0.1007 +0 0.1371 +0 0.0388 +0 0.3943 +0 0.2195 +0 0.0698 +0 0.0892 +0 0.1133 +0 0.1867 +0 0.1334 +0 0.1031 +0 0.1002 +0 0.1444 +0 0.0512 +0 0.0705 +1 0.8088 +1 0.8025 +0 0.0761 +0 0.2043 +0 0.2269 +0 0.1785 +0 0.3784 +0 0.0919 +0 0.1802 +0 0.1483 +0 0.0431 +0 0.0978 +0 0.2492 +0 0.3482 +0 0.1053 +0 0.0799 +0 0.2719 +0 0.1048 +0 0.1308 +0 0.4662 +0 0.0540 +0 0.2029 +0 0.0429 +0 0.1264 +0 0.2379 +0 0.1082 +0 0.0494 +0 0.1374 +0 0.1022 +1 0.8262 +0 0.0548 +0 0.0487 +0 0.0866 +0 0.2297 +0 0.2266 +0 0.0671 +0 0.0730 +0 0.1284 +0 0.1032 +0 0.1018 +0 0.1835 +0 0.0618 +0 0.2016 +0 0.0826 +0 0.1395 +0 0.0605 +0 0.1092 +0 0.2768 +0 0.0600 +0 0.1197 +0 0.1520 +0 0.0825 +0 0.2505 +0 0.0514 +1 0.8613 +0 0.0886 +0 0.0825 +0 0.0511 +0 0.1491 +0 0.1061 +0 0.1986 +0 0.0539 +0 0.1003 +0 0.1115 +0 0.1419 +0 0.1159 +0 0.0547 +0 0.1316 +0 0.1040 +0 0.0552 +0 0.1440 +0 0.0893 +0 0.0298 +0 0.0995 +0 0.0594 +0 0.2951 +0 0.0419 +0 0.1468 +1 0.9058 +0 0.2293 +0 0.1444 +0 0.2690 +0 0.0748 +0 0.0300 +0 0.1152 +0 0.1246 +0 0.0888 +0 0.0883 +0 0.1492 +0 0.0835 +0 0.3294 +0 0.2027 +0 0.0541 +0 0.1759 +0 0.2288 +0 0.0950 +0 0.1075 +0 0.1356 +0 0.3626 +0 0.1661 +0 0.0531 +0 0.0902 +0 0.0339 +0 0.0920 +1 0.7821 +0 0.1461 +0 0.0799 +0 0.0691 +0 0.1297 +0 0.0802 +0 0.1875 +0 0.0606 +0 0.2603 +0 0.5894 +0 0.2176 +0 0.1921 +0 0.1125 +0 0.1475 +0 0.2433 +0 0.0613 +0 0.1863 +0 0.2072 +0 0.1738 +0 0.0830 +0 0.1207 +0 0.1305 +0 0.0749 +0 0.1478 +0 0.0508 +0 0.1231 +0 0.1075 +0 0.0620 +0 0.0550 +0 0.0783 +0 0.1302 +0 0.1153 +0 0.2300 +0 0.0942 +0 0.1130 +0 0.0762 +0 0.7204 +0 0.0681 +0 0.2317 +0 0.0877 +0 0.1163 +0 0.1273 +0 0.1095 +0 0.1644 +0 0.0819 +0 0.0861 +0 0.0850 +0 0.0823 +0 0.0874 +0 0.0977 +0 0.2048 +0 0.1162 +0 0.1880 +0 0.0809 +0 0.0838 +0 0.0951 +0 0.1167 +0 0.1456 +0 0.3848 +0 0.1689 +0 0.1612 +0 0.1304 +0 0.0531 +0 0.0786 +0 0.0655 +0 0.1026 +0 0.5251 +0 0.4869 +0 0.2983 +0 0.1696 +0 0.1443 +0 0.0442 +1 0.7588 +0 0.0609 +0 0.0700 +0 0.1208 +0 0.0724 +0 0.0706 +0 0.7209 +0 0.1769 +0 0.1663 +0 0.0972 +0 0.0455 +0 0.0695 +0 0.1222 +0 0.1017 +0 0.0783 +0 0.3412 +0 0.1080 +0 0.1108 +0 0.1637 +0 0.1998 +0 0.7442 +0 0.3978 +0 0.1476 +0 0.1137 +0 0.0774 +0 0.1134 +0 0.0732 +0 0.1692 +0 0.0756 +0 0.1208 +0 0.2837 +0 0.0487 +0 0.1865 +0 0.2345 +0 0.1019 +0 0.0797 +0 0.1644 +0 0.2065 +0 0.1143 +0 0.0923 +0 0.1235 +0 0.0726 +0 0.5082 +0 0.0984 +0 0.0609 +0 0.0871 +0 0.0670 +0 0.1513 +0 0.2380 +0 0.0749 +0 0.1866 +0 0.1318 +0 0.0397 +0 0.0746 +0 0.0909 +0 0.0774 +0 0.1507 +0 0.1358 +0 0.0734 +0 0.1147 +0 0.1676 +0 0.0952 +0 0.1776 +0 0.0520 +0 0.0998 +0 0.0775 +0 0.0497 +0 0.1176 +0 0.0910 +0 0.0465 +0 0.0443 +0 0.0915 +0 0.0797 +0 0.2366 +0 0.0990 +0 0.1650 +0 0.2867 +0 0.1100 +0 0.1048 +0 0.3023 +0 0.1551 +0 0.1675 +0 0.0479 +0 0.1600 +0 0.1016 +0 0.2532 +0 0.1424 +0 0.0775 +0 0.3910 +0 0.0637 +0 0.1811 +0 0.0475 +0 0.1147 +0 0.2599 +0 0.0609 +0 0.1177 +0 0.1377 +0 0.0904 +0 0.1695 +0 0.1976 +0 0.0464 +0 0.1071 +0 0.0896 +0 0.1076 +0 0.1409 +0 0.0630 +0 0.2076 +0 0.1208 +0 0.0464 +0 0.0972 +0 0.1753 +0 0.0849 +0 0.0693 +0 0.1574 +0 0.2215 +0 0.0638 +0 0.1204 +0 0.1542 +0 0.2232 +0 0.0901 +0 0.0970 +0 0.0547 +0 0.2208 +0 0.0741 +0 0.1098 +0 0.0830 +0 0.1431 +0 0.0761 +0 0.0805 +0 0.0871 +0 0.2985 +0 0.0690 +0 0.0303 +0 0.1907 +0 0.1205 +0 0.0520 +0 0.0485 +0 0.0787 +0 0.1223 +0 0.0990 +0 0.0492 +0 0.0619 +0 0.1481 +0 0.4645 +0 0.0669 +0 0.1823 +0 0.3149 +0 0.2974 +0 0.0905 +0 0.0981 +0 0.1039 +0 0.1366 +0 0.0915 +0 0.1456 +0 0.0779 +0 0.1531 +0 0.2318 +0 0.1491 +0 0.1009 +0 0.1160 +0 0.1089 +0 0.0748 +0 0.1582 +0 0.1303 +0 0.0720 +0 0.1954 +0 0.2656 +0 0.1642 +0 0.0349 +0 0.1923 +0 0.0919 +0 0.0936 +0 0.0768 +0 0.0645 +0 0.1464 +0 0.0485 +0 0.2052 +0 0.0574 +0 0.0828 +0 0.0619 +0 0.0489 +0 0.1596 +0 0.1114 +0 0.1250 +0 0.0794 +0 0.3787 +0 0.0660 +0 0.0548 +0 0.2598 +0 0.3834 +0 0.0434 +0 0.2599 +0 0.1854 +0 0.1602 +0 0.1645 +0 0.0836 +0 0.0822 +0 0.4140 +0 0.0631 +0 0.3144 +0 0.0954 +0 0.0485 +0 0.1200 +0 0.2596 +0 0.1419 +0 0.1976 +0 0.0482 +0 0.0631 +0 0.0544 +0 0.1019 +0 0.1869 +0 0.1727 +0 0.0823 +0 0.0922 +0 0.1196 +0 0.2023 +0 0.6261 +0 0.0706 +0 0.1596 +0 0.1280 +0 0.0830 +0 0.2306 +0 0.0916 +0 0.1329 +0 0.0617 +0 0.0691 +0 0.7040 +0 0.0983 +0 0.0374 +0 0.2010 +0 0.0962 +0 0.1637 +0 0.0607 +0 0.1544 +0 0.0576 +0 0.5242 +0 0.0865 +0 0.0560 +0 0.0589 +0 0.1184 +0 0.1193 +0 0.1042 +1 0.9080 +0 0.0729 +0 0.1082 +0 0.0564 +0 0.0741 +0 0.1096 +0 0.1862 +0 0.0744 +0 0.0809 +0 0.0627 +0 0.0707 +0 0.2280 +0 0.0980 +0 0.0591 +0 0.1261 +0 0.0867 +0 0.1033 +0 0.0522 +0 0.0557 +0 0.0616 +0 0.1214 +0 0.4691 +0 0.0938 +0 0.1609 +0 0.1681 +0 0.1283 +0 0.1705 +0 0.2258 +0 0.1467 +0 0.0461 +0 0.0900 +0 0.0798 +0 0.1175 +0 0.2300 +0 0.2380 +0 0.2941 +0 0.0844 +0 0.1077 +0 0.1858 +0 0.1151 +0 0.1256 +0 0.0626 +0 0.2870 +0 0.0573 +0 0.1702 +0 0.0846 +0 0.0561 +0 0.1141 +0 0.1135 +0 0.1568 +0 0.0640 +0 0.1640 +0 0.0822 +0 0.0823 +0 0.1113 +0 0.1700 +0 0.1374 +0 0.0850 +0 0.1148 +0 0.0888 +0 0.0405 +0 0.0558 +0 0.1535 +0 0.0920 +0 0.2306 +0 0.2375 +0 0.1005 +0 0.0984 +0 0.2523 +0 0.3902 +0 0.0921 +0 0.3184 +0 0.0555 +0 0.1372 +0 0.3569 +0 0.0783 +0 0.1462 +0 0.0323 +0 0.3512 +0 0.1453 +0 0.0718 +0 0.0815 +0 0.0484 +0 0.0442 +0 0.5624 +0 0.1604 +0 0.0794 +0 0.0491 +0 0.0548 +0 0.1508 +0 0.1894 +0 0.0752 +0 0.1029 +0 0.0865 +0 0.2660 +0 0.2065 +0 0.0744 +0 0.0720 +0 0.1920 +0 0.1222 +0 0.1373 +0 0.1139 +0 0.0490 +0 0.1168 +0 0.1862 +0 0.2209 +0 0.0720 +0 0.0661 +0 0.1498 +0 0.0817 +0 0.0533 +0 0.0752 +0 0.2151 +0 0.0974 +0 0.2531 +0 0.0879 +0 0.1094 +0 0.2549 +0 0.0678 +0 0.0782 +0 0.1240 +0 0.1053 +0 0.1410 +0 0.1969 +0 0.0958 +0 0.0802 +0 0.1869 +0 0.2994 +0 0.2515 +0 0.0877 +0 0.1237 +0 0.0961 +0 0.1180 +0 0.1845 +0 0.0398 +0 0.1308 +0 0.0808 +0 0.1295 +0 0.1537 +0 0.0821 +0 0.1162 +0 0.0555 +0 0.1316 +0 0.0611 +0 0.2740 +0 0.4200 +0 0.1323 +0 0.0767 +0 0.0837 +0 0.0980 +0 0.0352 +0 0.1248 +0 0.0770 +0 0.3886 +0 0.0712 +0 0.0409 +0 0.3032 +0 0.0636 +0 0.0439 +0 0.2250 +0 0.1638 +0 0.0514 +0 0.0603 +0 0.0722 +0 0.2342 +0 0.0505 +0 0.0687 +0 0.0902 +0 0.0669 +0 0.0364 +0 0.5464 +0 0.0885 +0 0.0925 +0 0.1537 +0 0.0782 +0 0.4980 +0 0.1310 +0 0.3287 +0 0.1735 +0 0.0850 +0 0.1652 +0 0.0635 +0 0.1190 +0 0.0849 +0 0.2414 +0 0.0923 +0 0.0797 +0 0.0839 +0 0.0483 +0 0.1009 +0 0.2820 +0 0.1119 +0 0.0600 +0 0.2748 +0 0.0920 +0 0.0471 +0 0.0894 +0 0.2549 +0 0.2603 +0 0.0539 +0 0.0764 +0 0.3698 +0 0.0806 +0 0.0773 +0 0.1265 +0 0.1194 +0 0.0758 +0 0.1212 +0 0.2904 +0 0.0687 +0 0.0739 +0 0.0703 +0 0.0876 +0 0.0868 +0 0.5156 +0 0.1739 +0 0.1704 +0 0.2208 +0 0.0732 +0 0.1378 +0 0.0550 +0 0.1156 +0 0.0520 +0 0.0839 +0 0.0583 +0 0.1834 +0 0.0663 +0 0.1111 +0 0.1540 +0 0.0939 +0 0.2668 +0 0.0523 +0 0.1102 +0 0.2250 +0 0.0526 +0 0.0616 +0 0.1221 +0 0.1521 +0 0.0899 +0 0.1028 +0 0.1361 +0 0.3751 +0 0.1035 +0 0.0666 +0 0.0988 +0 0.3414 +0 0.1012 +0 0.1547 +0 0.1725 +0 0.1318 +0 0.0984 +0 0.0900 +0 0.0968 +0 0.0650 +0 0.0609 +0 0.0613 +0 0.2918 +0 0.1773 +0 0.0563 +0 0.1776 +0 0.1242 +0 0.0742 +0 0.0721 +0 0.3390 +0 0.0730 +0 0.0947 +0 0.1756 +0 0.1416 +0 0.0624 +0 0.1292 +0 0.2023 +0 0.0677 +0 0.1110 +0 0.1010 +0 0.1069 +0 0.0985 +0 0.1226 +0 0.0856 +0 0.0718 +0 0.0726 +0 0.1038 +0 0.1983 +0 0.3577 +0 0.1036 +0 0.2127 +0 0.0738 +0 0.0958 +0 0.0581 +0 0.3028 +0 0.4013 +0 0.1496 +0 0.0846 +0 0.2868 +0 0.1854 +0 0.2189 +0 0.2907 +0 0.1006 +0 0.1290 +0 0.1282 +0 0.0471 +1 0.7703 +0 0.0336 +0 0.1209 +0 0.1072 +0 0.0679 +0 0.2816 +0 0.0845 +0 0.1357 +0 0.1304 +0 0.0584 +0 0.1356 +0 0.0760 +0 0.1213 +0 0.0455 +0 0.1153 +0 0.0383 +0 0.1459 +0 0.0395 +0 0.0692 +0 0.2984 +0 0.1410 +0 0.1076 +0 0.1307 +0 0.1265 +0 0.1712 +0 0.1535 +0 0.1193 +0 0.0689 +0 0.1600 +0 0.0696 +0 0.1826 +0 0.0604 +0 0.2304 +0 0.1747 +0 0.1619 +0 0.0684 +0 0.1000 +0 0.0456 +0 0.1991 +0 0.2731 +0 0.0599 +0 0.3929 +0 0.1218 +0 0.0400 +0 0.0774 +0 0.0821 +0 0.0928 +0 0.0623 +0 0.1185 +1 0.8274 +0 0.1660 +0 0.1920 +0 0.0562 +0 0.0355 +0 0.1881 +0 0.3268 +0 0.1219 +0 0.1434 +0 0.2535 +0 0.0710 +0 0.0528 +0 0.1088 +0 0.2499 +0 0.1048 +0 0.1525 +0 0.1547 +0 0.0663 +0 0.1062 +0 0.0647 +0 0.0385 +0 0.0797 +0 0.1835 +0 0.0879 +0 0.0949 +0 0.6481 +0 0.0691 +0 0.0850 +0 0.0391 +0 0.3336 +0 0.1539 +0 0.0944 +0 0.1175 +0 0.1999 +0 0.0499 +0 0.4244 +0 0.0797 +0 0.0832 +0 0.2071 +0 0.1452 +0 0.2734 +0 0.0686 +0 0.1545 +0 0.1365 +0 0.2141 +0 0.1648 +0 0.0539 +0 0.1576 +0 0.0493 +0 0.3113 +0 0.0594 +0 0.1217 +0 0.1740 +0 0.1105 +0 0.0332 +0 0.0586 +0 0.1954 +0 0.2015 +0 0.0624 +0 0.1611 +0 0.0954 +0 0.0577 +0 0.1630 +0 0.0814 +0 0.0689 +0 0.0989 +0 0.1138 +0 0.0374 +0 0.0876 +0 0.1988 +0 0.0954 +0 0.1222 +0 0.3471 +0 0.1326 +0 0.1362 +0 0.2060 +0 0.1177 +0 0.0612 +0 0.0698 +0 0.0938 +0 0.0862 +0 0.0634 +0 0.2564 +0 0.0805 +0 0.0869 +0 0.0896 +1 0.7517 +0 0.0751 +0 0.1461 +0 0.0788 +0 0.4706 +0 0.4851 +0 0.1077 +0 0.0753 +0 0.1092 +0 0.0645 +0 0.1745 +0 0.1028 +0 0.0465 +0 0.1304 +0 0.1028 +0 0.0464 +0 0.0862 +0 0.0427 +0 0.0681 +0 0.0943 +0 0.4101 +0 0.1927 +0 0.1302 +0 0.1102 +0 0.0940 +0 0.2602 +0 0.1067 +0 0.1965 +0 0.0658 +0 0.1330 +0 0.1265 +0 0.0928 +0 0.3495 +0 0.0726 +0 0.1034 +0 0.0905 +0 0.0742 +0 0.0779 +0 0.0960 +0 0.1253 +0 0.0526 +0 0.2294 +0 0.1806 +0 0.1184 +0 0.0945 +0 0.2744 +0 0.2818 +1 0.8251 +0 0.3470 +0 0.1636 +0 0.0912 +0 0.1098 +0 0.1418 +0 0.0557 +0 0.1038 +0 0.0628 +0 0.0405 +0 0.0908 +0 0.2060 +0 0.1883 +0 0.0706 +0 0.0837 +0 0.0681 +0 0.0987 +0 0.0845 +0 0.1326 +0 0.1165 +0 0.2969 +0 0.0884 +0 0.0676 +0 0.1338 +0 0.0796 +0 0.0489 +0 0.1342 +0 0.1658 +0 0.3157 +0 0.1234 +0 0.0830 +0 0.1089 +0 0.2786 +0 0.1358 +0 0.0738 +0 0.0441 +0 0.1434 +0 0.0785 +0 0.3193 +0 0.2738 +0 0.2028 +0 0.1114 +0 0.0555 +0 0.1416 +0 0.1553 +0 0.0855 +0 0.1138 +0 0.1700 +0 0.1141 +0 0.1643 +0 0.5464 +0 0.0674 +0 0.0471 +0 0.0723 +0 0.1586 +0 0.1327 +0 0.0982 +1 0.8174 +0 0.1169 +0 0.0854 +0 0.1099 +0 0.1015 +0 0.0670 +0 0.0778 +0 0.1495 +0 0.0687 +0 0.1042 +0 0.0699 +0 0.2343 +0 0.1392 +0 0.0761 +0 0.3193 +0 0.0446 +0 0.2216 +0 0.1041 +0 0.2068 +0 0.0834 +0 0.3153 +0 0.1786 +0 0.1167 +0 0.1900 +0 0.1008 +0 0.1156 +0 0.0702 +0 0.1011 +0 0.1239 +0 0.1258 +0 0.1240 +0 0.1759 +0 0.1098 +0 0.0948 +0 0.0610 +0 0.1009 +0 0.1181 +0 0.0537 +0 0.1693 +0 0.0494 +0 0.0624 +0 0.0679 +0 0.6218 +0 0.0888 +0 0.0784 +0 0.0979 +0 0.0922 +0 0.1090 +0 0.2414 +0 0.1209 +0 0.0747 +0 0.0581 +0 0.0410 +0 0.1021 +0 0.0524 +0 0.1621 +0 0.2057 +0 0.3996 +0 0.0631 +0 0.2987 +0 0.0786 +0 0.0476 +0 0.1058 +0 0.0611 +0 0.1243 +0 0.0478 +0 0.1131 +0 0.0768 +0 0.0939 +0 0.0593 +0 0.1576 +0 0.0809 +0 0.1026 +0 0.1148 +0 0.0476 +0 0.0871 +0 0.0459 +0 0.2754 +0 0.0588 +0 0.0667 +0 0.2396 +0 0.0877 +0 0.2035 +0 0.6922 +0 0.0851 +0 0.4433 +0 0.1077 +0 0.1032 +0 0.0606 +0 0.0635 +0 0.0648 +0 0.0757 +0 0.0902 +0 0.0443 +0 0.0514 +0 0.0608 +0 0.1423 +0 0.0756 +0 0.2835 +0 0.0568 +0 0.0934 +0 0.2812 +0 0.0813 +0 0.0806 +0 0.1175 +0 0.0738 +0 0.6104 +0 0.1346 +0 0.0693 +0 0.0360 +0 0.0637 +0 0.0793 +0 0.1280 +0 0.0698 +0 0.1575 +0 0.0780 +0 0.3702 +0 0.0870 +0 0.0990 +0 0.0945 +0 0.0811 +0 0.0974 +0 0.2760 +0 0.2684 +0 0.1622 +0 0.0845 +0 0.0483 +0 0.1001 +0 0.0830 +0 0.0679 +0 0.0606 +0 0.1154 +0 0.0598 +0 0.2240 +0 0.1123 +0 0.3257 +0 0.0548 +0 0.0587 +0 0.0793 +0 0.1933 +0 0.1018 +0 0.2157 +0 0.0754 +0 0.1678 +0 0.1167 +0 0.7028 +0 0.2528 +0 0.2163 +0 0.1646 +0 0.2582 +0 0.0735 +0 0.0636 +0 0.0689 +0 0.0600 +0 0.0358 +0 0.0811 +0 0.1725 +0 0.2092 +0 0.1627 +0 0.1535 +0 0.1273 +0 0.1939 +0 0.1330 +0 0.0472 +0 0.1657 +0 0.1915 +0 0.2509 +1 0.8042 +0 0.1364 +0 0.6444 +0 0.1280 +0 0.1155 +0 0.1043 +0 0.2903 +0 0.1258 +0 0.1459 +0 0.0795 +0 0.1134 +0 0.5528 +0 0.2648 +0 0.4259 +0 0.0968 +0 0.0969 +0 0.0549 +0 0.1531 +0 0.1844 +0 0.6419 +0 0.1036 +0 0.1798 +0 0.2727 +0 0.1914 +0 0.1114 +0 0.0946 +0 0.2793 +0 0.4541 +0 0.2178 +0 0.1072 +0 0.4592 +0 0.0830 +0 0.1040 +0 0.0452 +0 0.0561 +0 0.1179 +0 0.1478 +0 0.0677 +0 0.1888 +0 0.2252 +0 0.0927 +0 0.1108 +0 0.1534 +0 0.0434 +0 0.2114 +0 0.0599 +0 0.0848 +0 0.0991 +0 0.1190 +0 0.3198 +0 0.0366 +0 0.1521 +0 0.1491 +0 0.0718 +0 0.1165 +0 0.2731 +0 0.0623 +0 0.0959 +0 0.1462 +0 0.1089 +0 0.0420 +0 0.1995 +0 0.0546 +0 0.0814 +0 0.0747 +0 0.0364 +0 0.1607 +0 0.2802 +0 0.1397 +0 0.1516 +0 0.0908 +0 0.1873 +0 0.3735 +0 0.1265 +0 0.1602 +0 0.0663 +0 0.5268 +0 0.1475 +0 0.1026 +0 0.1775 +0 0.0714 +0 0.1476 +0 0.0462 +0 0.4928 +0 0.0845 +0 0.0622 +0 0.1473 +0 0.0754 +0 0.0630 +0 0.1316 +0 0.3310 +0 0.0290 +0 0.0634 +0 0.0925 +0 0.1020 +0 0.0467 +0 0.0787 +0 0.0648 +0 0.0680 +0 0.3361 +0 0.5795 +0 0.1254 +0 0.1263 +0 0.0953 +0 0.0680 +0 0.1658 +0 0.1136 +0 0.3317 +0 0.0491 +0 0.1457 +0 0.2088 +0 0.0397 +0 0.0581 +0 0.2503 +0 0.1082 +0 0.1121 +0 0.0781 +0 0.2740 +0 0.0506 +0 0.2077 +0 0.1429 +0 0.1347 +0 0.1607 +0 0.2295 +0 0.2532 +0 0.0467 +0 0.2126 +1 0.8597 +0 0.1221 +0 0.0586 +0 0.1569 +0 0.6852 +0 0.4067 +0 0.1119 +0 0.1148 +0 0.1116 +0 0.2515 +0 0.0919 +0 0.0449 +0 0.2804 +0 0.3269 +0 0.6361 +0 0.0377 +0 0.0522 +0 0.2627 +0 0.2658 +0 0.1489 +0 0.0956 +0 0.0891 +1 0.7822 +0 0.1746 +0 0.0504 +0 0.0556 +0 0.0727 +0 0.0979 +0 0.1975 +0 0.0701 +0 0.0870 +0 0.0353 +0 0.0833 +0 0.1467 +0 0.3751 +0 0.0465 +0 0.1777 +0 0.1979 +0 0.1033 +0 0.0489 +0 0.1385 +0 0.2098 +0 0.0971 +0 0.1049 +0 0.2190 +0 0.0985 +0 0.7314 +0 0.0751 +0 0.0849 +0 0.0844 +0 0.0949 +0 0.0350 +0 0.4976 +0 0.0690 +0 0.0977 +0 0.1267 +0 0.0380 +0 0.2245 +0 0.1179 +0 0.0967 +0 0.1520 +0 0.0882 +0 0.0815 +0 0.1014 +0 0.0651 +0 0.0516 +0 0.0650 +0 0.1367 +0 0.1235 +0 0.1073 +0 0.0472 +0 0.0494 +0 0.1232 +0 0.0767 +0 0.2820 +0 0.1293 +0 0.1133 +0 0.1796 +0 0.1635 +0 0.0545 +0 0.1477 +0 0.0574 +0 0.2067 +0 0.1531 +0 0.1120 +0 0.1414 +0 0.0841 +0 0.1932 +0 0.1371 +0 0.1317 +0 0.1302 +0 0.0913 +0 0.0502 +0 0.0880 +0 0.1508 +0 0.0973 +0 0.1184 +0 0.1422 +0 0.0531 +0 0.0506 +0 0.1355 +0 0.2231 +0 0.1957 +0 0.0889 +0 0.1013 +0 0.1315 +0 0.6575 +0 0.1711 +0 0.1286 +0 0.2395 +0 0.3288 +0 0.0758 +0 0.1898 +0 0.1310 +0 0.0473 +0 0.0770 +0 0.1012 +0 0.0625 +0 0.7052 +0 0.5496 +0 0.0687 +0 0.0907 +0 0.1297 +0 0.1312 +0 0.1482 +0 0.3518 +0 0.2245 +0 0.0876 +0 0.0614 +0 0.1577 +0 0.0670 +0 0.0440 +0 0.6274 +0 0.0526 +0 0.0742 +0 0.4861 +0 0.1192 +0 0.2369 +0 0.0648 +0 0.0769 +0 0.0998 +0 0.1318 +0 0.0609 +0 0.5807 +0 0.1074 +0 0.0822 +0 0.1138 +0 0.0741 +0 0.1052 +0 0.1230 +0 0.1099 +0 0.0750 +0 0.1823 +0 0.0665 +0 0.0519 +0 0.1066 +0 0.1830 +0 0.0581 +0 0.4258 +0 0.3483 +0 0.0745 +0 0.0940 +0 0.1485 +0 0.0855 +0 0.3333 +0 0.1114 +0 0.1063 +0 0.0891 +0 0.1323 +0 0.4001 +0 0.0428 +0 0.0929 +0 0.2259 +0 0.0897 +0 0.1806 +0 0.0881 +0 0.0779 +0 0.2519 +0 0.1086 +0 0.0538 +0 0.0624 +0 0.0825 +0 0.0707 +0 0.0966 +0 0.1250 +0 0.1185 +0 0.1215 +1 0.8914 +0 0.1071 +0 0.6959 +0 0.1712 +0 0.2480 +0 0.0407 +0 0.2411 +0 0.0506 +0 0.1048 +0 0.1463 +0 0.2271 +0 0.1130 +0 0.0925 +0 0.2252 +0 0.1284 +0 0.1644 +0 0.0681 +0 0.3496 +0 0.1357 +0 0.0801 +0 0.2994 +0 0.0783 +0 0.2004 +0 0.1621 +0 0.0753 +0 0.0875 +0 0.1030 +0 0.1376 +0 0.1108 +0 0.0880 +0 0.1485 +0 0.1097 +0 0.0996 +0 0.0403 +0 0.0597 +0 0.0963 +0 0.0981 +0 0.1171 +0 0.0810 +0 0.0474 +0 0.0427 +0 0.0587 +0 0.0603 +0 0.0665 +0 0.3141 +0 0.5816 +0 0.0509 +0 0.2114 +0 0.0810 +0 0.0943 +0 0.0585 +0 0.1023 +0 0.0858 +0 0.1610 +0 0.6294 +0 0.0756 +0 0.1280 +0 0.4352 +0 0.4843 +0 0.7129 +0 0.2255 +0 0.0500 +0 0.0891 +0 0.0565 +0 0.1020 +0 0.1335 +0 0.0739 +0 0.1036 +0 0.3800 +0 0.1278 +0 0.0799 +0 0.0444 +0 0.0577 +0 0.2079 +0 0.0614 +0 0.0686 +0 0.0998 +0 0.0808 +0 0.1368 +0 0.1807 +0 0.0446 +0 0.1629 +0 0.0801 +0 0.0927 +0 0.0912 +0 0.6881 +0 0.0824 +0 0.1607 +0 0.1666 +1 0.7788 +0 0.1147 +0 0.0572 +0 0.1522 +0 0.1896 +0 0.0804 +0 0.0895 +0 0.0808 +0 0.2940 +0 0.2006 +0 0.0755 +0 0.0906 +1 0.7554 +0 0.0680 +0 0.1290 +0 0.1506 +0 0.0420 +0 0.1011 +0 0.0804 +0 0.0679 +0 0.0866 +0 0.2975 +0 0.0639 +0 0.2246 +0 0.0935 +0 0.0875 +0 0.0553 +0 0.0985 +0 0.0799 +0 0.1198 +0 0.0529 +0 0.0942 +0 0.1562 +0 0.0570 +0 0.1114 +0 0.0780 +0 0.0754 +0 0.0745 +0 0.0796 +0 0.0905 +0 0.0565 +0 0.0605 +0 0.1069 +0 0.2674 +0 0.1399 +0 0.0879 +0 0.0737 +0 0.1307 +0 0.1811 +0 0.0781 +0 0.0823 +1 0.8409 +0 0.2774 +0 0.3378 +0 0.1317 +0 0.1336 +0 0.1411 +0 0.1214 +0 0.0973 +0 0.1231 +0 0.1139 +0 0.0542 +0 0.0631 +0 0.1645 +0 0.1952 +0 0.3053 +0 0.0956 +0 0.0803 +0 0.0535 +1 0.8519 +0 0.1148 +0 0.0879 +0 0.0943 +0 0.0674 +0 0.1842 +0 0.0570 +0 0.3941 +0 0.0815 +0 0.1234 +0 0.0797 +0 0.1088 +0 0.0795 +0 0.2229 +0 0.0504 +0 0.1058 +0 0.0679 +0 0.1418 +0 0.0837 +0 0.0742 +0 0.1565 +0 0.0504 +0 0.0541 +0 0.1558 +0 0.0783 +0 0.0748 +0 0.0608 +0 0.1543 +0 0.1957 +0 0.1062 +0 0.0629 +0 0.0981 +0 0.0801 +0 0.2090 +0 0.0810 +0 0.1049 +0 0.1152 +0 0.1177 +0 0.0516 +0 0.0664 +0 0.0756 +0 0.0799 +1 0.7714 +0 0.0724 +0 0.0959 +0 0.1204 +0 0.0879 +0 0.0413 +0 0.0616 +0 0.0897 +0 0.0990 +0 0.1823 +0 0.0452 +0 0.0657 +0 0.0732 +0 0.1306 +0 0.2410 +0 0.0926 +0 0.2469 +0 0.1991 +0 0.1019 +0 0.0824 +0 0.0628 +0 0.0693 +0 0.3389 +0 0.0404 +0 0.0793 +0 0.3465 +0 0.6011 +0 0.1293 +0 0.0985 +0 0.1415 +0 0.1881 +0 0.0882 +0 0.1041 +0 0.0984 +0 0.0481 +0 0.0352 +0 0.1102 +0 0.0311 +0 0.0630 +0 0.0762 +0 0.1932 +0 0.0610 +0 0.0918 +0 0.1752 +0 0.1265 +0 0.1501 +0 0.1186 +0 0.2197 +0 0.1530 +0 0.0550 +0 0.0807 +0 0.0927 +0 0.1558 +0 0.1006 +0 0.0476 +0 0.1074 +0 0.0566 +0 0.3387 +1 0.7747 +1 0.8820 +0 0.0567 +0 0.1496 +0 0.1772 +0 0.5792 +0 0.0763 +0 0.2747 +0 0.1565 +0 0.1458 +0 0.0448 +0 0.0712 +0 0.1906 +0 0.2709 +0 0.1278 +0 0.0661 +0 0.2062 +0 0.0625 +0 0.1948 +0 0.0529 +0 0.3237 +0 0.0763 +0 0.0777 +0 0.1099 +0 0.0570 +0 0.0864 +0 0.2609 +0 0.1671 +0 0.1319 +0 0.2857 +0 0.0681 +0 0.1516 +0 0.1894 +0 0.1628 +0 0.1384 +0 0.0676 +0 0.1506 +0 0.1030 +0 0.1297 +0 0.0641 +0 0.2970 +0 0.3219 +0 0.0844 +0 0.2133 +0 0.0867 +0 0.1006 +0 0.1268 +0 0.7290 +0 0.0762 +0 0.0410 +0 0.0931 +0 0.0421 +0 0.0756 +0 0.1834 +0 0.1331 +0 0.0971 +1 0.8472 +0 0.0420 +0 0.1173 +0 0.1650 +0 0.0814 +0 0.1164 +0 0.2650 +0 0.3052 +0 0.1732 +0 0.1172 +0 0.2172 +0 0.0562 +0 0.1048 +0 0.2045 +0 0.0793 +0 0.0832 +0 0.1052 +0 0.0880 +0 0.0942 +0 0.0577 +0 0.0526 +0 0.0466 +0 0.0847 +0 0.0525 +0 0.0930 +0 0.1261 +0 0.5807 +0 0.1239 +0 0.0585 +0 0.1265 +0 0.0865 +0 0.0910 +0 0.0569 +0 0.1324 +0 0.0628 +0 0.1772 +0 0.1784 +0 0.1001 +0 0.1804 +0 0.1192 +0 0.1745 +0 0.1594 +0 0.6589 +0 0.0339 +0 0.2485 +0 0.1496 +0 0.1068 +0 0.1543 +0 0.1147 +1 0.7562 +0 0.1016 +0 0.2102 +0 0.1389 +0 0.1017 +0 0.0829 +0 0.1229 +0 0.0688 +0 0.0879 +0 0.0751 +0 0.0866 +0 0.0524 +0 0.1261 +0 0.0831 +0 0.1344 +0 0.1796 +0 0.1098 +0 0.2800 +0 0.1076 +0 0.0727 +0 0.3344 +0 0.0732 +0 0.1141 +0 0.1408 +0 0.0890 +0 0.3728 +0 0.1290 +0 0.0738 +0 0.2112 +0 0.1521 +0 0.1136 +0 0.0506 +0 0.0903 +0 0.0872 +0 0.0536 +0 0.3689 +0 0.2824 +0 0.0940 +0 0.0581 +0 0.0821 +0 0.1087 +0 0.1809 +0 0.1743 +0 0.1282 +0 0.6903 +0 0.0764 +0 0.0693 +0 0.0807 +0 0.0632 +0 0.0726 +0 0.0954 +0 0.0773 +0 0.1170 +0 0.1320 +0 0.0410 +0 0.0283 +0 0.0702 +0 0.1260 +0 0.2362 +0 0.3566 +0 0.0476 +0 0.0776 +0 0.1195 +0 0.0490 +0 0.1403 +1 0.8617 +0 0.1683 +0 0.0715 +0 0.1716 +0 0.0700 +0 0.6749 +0 0.0872 +0 0.1098 +0 0.1005 +0 0.0729 +0 0.0633 +0 0.1144 +0 0.0448 +0 0.1937 +0 0.0550 +0 0.1187 +0 0.0953 +0 0.0876 +0 0.1183 +0 0.1367 +0 0.0980 +0 0.0763 +0 0.0607 +0 0.1194 +0 0.3255 +0 0.2317 +0 0.0935 +0 0.0982 +0 0.0354 +0 0.3022 +0 0.1236 +0 0.1185 +0 0.1413 +0 0.0694 +0 0.0848 +0 0.2282 +0 0.1069 +0 0.1162 +0 0.0716 +0 0.1586 +0 0.0534 +0 0.4960 +0 0.1036 +0 0.1013 +0 0.0697 +0 0.1262 +0 0.2031 +0 0.0679 +0 0.0544 +0 0.1209 +0 0.3417 +0 0.0474 +0 0.4185 +0 0.2327 +0 0.2560 +0 0.0568 +0 0.0433 +0 0.1667 +0 0.2103 +0 0.1075 +0 0.1207 +0 0.1166 +0 0.0828 +0 0.0913 +0 0.1993 +0 0.0704 +0 0.1132 +0 0.2035 +0 0.1164 +0 0.0896 +0 0.0793 +0 0.1097 +0 0.1048 +0 0.0647 +0 0.1311 +0 0.1482 +0 0.1130 +0 0.0804 +0 0.1359 +0 0.0800 +0 0.4358 +0 0.2624 +0 0.0959 +0 0.1898 +0 0.4546 +0 0.1619 +0 0.2635 +0 0.1058 +0 0.0976 +0 0.0833 +0 0.0663 +0 0.0551 +0 0.0855 +0 0.2408 +0 0.2465 +0 0.0570 +0 0.1349 +0 0.1405 +0 0.0535 +0 0.2213 +0 0.0810 +0 0.2051 +0 0.1109 +1 0.7597 +0 0.5828 +0 0.1000 +0 0.2313 +0 0.1673 +0 0.0649 +0 0.0423 +0 0.1083 +0 0.6591 +0 0.0821 +0 0.3204 +0 0.1313 +0 0.0880 +0 0.1065 +0 0.3636 +0 0.0967 +0 0.0539 +0 0.0605 +0 0.1916 +0 0.1210 +0 0.1307 +0 0.1818 +0 0.1078 +0 0.0457 +0 0.0903 +0 0.1026 +0 0.1916 +0 0.1729 +0 0.1077 +0 0.0529 +0 0.3674 +0 0.1661 +0 0.1374 +0 0.0879 +0 0.1471 +0 0.3546 +0 0.2997 +0 0.2311 +0 0.7316 +0 0.0914 +0 0.1836 +0 0.0518 +0 0.0924 +0 0.1025 +0 0.0695 +0 0.0710 +0 0.1636 +0 0.0657 +0 0.0658 +0 0.0842 +0 0.0322 +0 0.3233 +0 0.1993 +0 0.0561 +0 0.0813 +0 0.0728 +0 0.1069 +0 0.0535 +0 0.1893 +0 0.0387 +0 0.7292 +0 0.0495 +0 0.1151 +0 0.1273 +0 0.1067 +0 0.0794 +0 0.1135 +0 0.0680 +0 0.1075 +0 0.0637 +0 0.0655 +0 0.1040 +0 0.1701 +0 0.4750 +0 0.0682 +0 0.0640 +0 0.0749 +0 0.1638 +0 0.2486 +0 0.2963 +0 0.0717 +0 0.0804 +0 0.1583 +0 0.1174 +0 0.0593 +0 0.1791 +0 0.1204 +0 0.1074 +0 0.2757 +0 0.0786 +0 0.0470 +0 0.0581 +0 0.0535 +0 0.3455 +0 0.2693 +0 0.5486 +0 0.1352 +0 0.1581 +0 0.0566 +0 0.1712 +0 0.0719 +0 0.2892 +0 0.0456 +0 0.3238 +0 0.1065 +0 0.2521 +0 0.0673 +0 0.0734 +0 0.2091 +0 0.0531 +0 0.0902 +0 0.1854 +0 0.0777 +0 0.0651 +0 0.0827 +0 0.1027 +0 0.1208 +0 0.2267 +0 0.1904 +0 0.3401 +0 0.1594 +0 0.0860 +0 0.1112 +0 0.1018 +0 0.3273 +0 0.1258 +0 0.0718 +0 0.0747 +0 0.1340 +0 0.2537 +0 0.0908 +0 0.0971 +0 0.2983 +0 0.1103 +0 0.0427 +0 0.0783 +0 0.1722 +0 0.0628 +0 0.1383 +0 0.0866 +0 0.2524 +0 0.1139 +0 0.1047 +0 0.2722 +0 0.0916 +0 0.0667 +0 0.0645 +0 0.0695 +0 0.0852 +0 0.0604 +0 0.3983 +0 0.1306 +0 0.1491 +0 0.2189 +0 0.1361 +0 0.1386 +0 0.0632 +0 0.1324 +0 0.2664 +0 0.0933 +0 0.1132 +0 0.0533 +0 0.1099 +0 0.0917 +0 0.0759 +0 0.1100 +0 0.1833 +0 0.3241 +0 0.2339 +0 0.1243 +0 0.0629 +0 0.0560 +0 0.0585 +0 0.1044 +0 0.2813 +0 0.1181 +0 0.1172 +0 0.1212 +0 0.0711 +0 0.0469 +0 0.0931 +0 0.0550 +0 0.3726 +0 0.0804 +0 0.1847 +0 0.1042 +0 0.1071 +0 0.1568 +0 0.0798 +0 0.0437 +0 0.1313 +0 0.4119 +0 0.2367 +0 0.0511 +0 0.0749 +0 0.1312 +0 0.0863 +0 0.0693 +0 0.1185 +0 0.0603 +0 0.1850 +0 0.0628 +0 0.1046 +0 0.0743 +0 0.0830 +0 0.0907 +0 0.6241 +0 0.0344 +0 0.0694 +0 0.1268 +0 0.1033 +0 0.1894 +0 0.0875 +0 0.1045 +0 0.1162 +0 0.0784 +0 0.0998 +0 0.0773 +0 0.0672 +0 0.0606 +0 0.1722 +0 0.4639 +0 0.1226 +0 0.0588 +0 0.5082 +0 0.1615 +0 0.0308 +0 0.0359 +0 0.0644 +0 0.1591 +0 0.0782 +0 0.0772 +0 0.2442 +0 0.0921 +0 0.0704 +0 0.0929 +0 0.0878 +0 0.0775 +0 0.1419 +0 0.1172 +0 0.0573 +0 0.0823 +0 0.1466 +0 0.0788 +0 0.3741 +0 0.1488 +0 0.3378 +0 0.1318 +0 0.1301 +0 0.1180 +0 0.0438 +0 0.1700 +0 0.1023 +0 0.0379 +0 0.1690 +0 0.0621 +0 0.1359 +0 0.2081 +0 0.0843 +0 0.0884 +0 0.1597 +0 0.7275 +0 0.1388 +0 0.0976 +0 0.0886 +0 0.0955 +0 0.0824 +0 0.2183 +0 0.0751 +0 0.4285 +1 0.8158 +0 0.0738 +0 0.0762 +0 0.0702 +0 0.0866 +0 0.0715 +0 0.2123 +0 0.1508 +0 0.2707 +0 0.2396 +0 0.0850 +0 0.0816 +0 0.0726 +0 0.0845 +0 0.0696 +0 0.5717 +0 0.0555 +0 0.0475 +0 0.6941 +0 0.0335 +0 0.0886 +0 0.1190 +0 0.1627 +0 0.0587 +0 0.1972 +0 0.1107 +0 0.1790 +0 0.0369 +0 0.1121 +0 0.1006 +0 0.1054 +1 0.8310 +0 0.1591 +0 0.0755 +0 0.1029 +0 0.6652 +0 0.1402 +0 0.0928 +0 0.0717 +0 0.2099 +1 0.8577 +0 0.0437 +0 0.0696 +0 0.1216 +0 0.0575 +0 0.1002 +0 0.1351 +0 0.0926 +0 0.1376 +0 0.0652 +0 0.1695 +0 0.1547 +0 0.0690 +0 0.0957 +0 0.0618 +0 0.1617 +0 0.1245 +0 0.1029 +0 0.1216 +0 0.3593 +0 0.1608 +0 0.0990 +0 0.0732 +0 0.2821 +0 0.2579 +0 0.1951 +0 0.0938 +0 0.0938 +0 0.2116 +0 0.0876 +0 0.1264 +0 0.2084 +0 0.0577 +0 0.0959 +0 0.0956 +0 0.0493 +0 0.0859 +0 0.0780 +0 0.0656 +0 0.1846 +0 0.1360 +0 0.0764 +0 0.1310 +0 0.0833 +0 0.6757 +0 0.0917 +0 0.1842 +0 0.0670 +0 0.2458 +0 0.0573 +0 0.0634 +0 0.1175 +0 0.1727 +0 0.0443 +0 0.0855 +0 0.2513 +0 0.1744 +0 0.1095 +0 0.0805 +0 0.1842 +0 0.0617 +0 0.0439 +0 0.0437 +1 0.7781 +0 0.0572 +0 0.0428 +0 0.1365 +0 0.1931 +0 0.0565 +0 0.2803 +0 0.2740 +0 0.0627 +0 0.0437 +0 0.1783 +0 0.1210 +0 0.1679 +0 0.1383 +0 0.2300 +0 0.0860 +0 0.2503 +0 0.0470 +0 0.0596 +0 0.1598 +0 0.1915 +0 0.1043 +0 0.0809 +0 0.4665 +0 0.0604 +0 0.0822 +0 0.1306 +0 0.1270 +0 0.0748 +0 0.5383 +0 0.0554 +0 0.0554 +0 0.2241 +0 0.1430 +0 0.1080 +0 0.1631 +0 0.1040 +0 0.6381 +0 0.1925 +0 0.0423 +0 0.1563 +0 0.0959 +0 0.1592 +0 0.0793 +0 0.1234 +0 0.1558 +0 0.2249 +0 0.1922 +0 0.0663 +0 0.0914 +0 0.1326 +0 0.0565 +0 0.0619 +0 0.1292 +0 0.0913 +0 0.0556 +0 0.4502 +0 0.2111 +0 0.0835 +0 0.1525 +0 0.1190 +0 0.0789 +0 0.0590 +0 0.1050 +0 0.1466 +0 0.0766 +0 0.0681 +0 0.0713 +0 0.1189 +0 0.0859 +0 0.1975 +0 0.1907 +0 0.0696 +0 0.2377 +0 0.0856 +0 0.1558 +0 0.0478 +0 0.0865 +0 0.1313 +0 0.1699 +0 0.0804 +0 0.2720 +0 0.0641 +0 0.0534 +0 0.0864 +0 0.0981 +0 0.1639 +0 0.1723 +0 0.0534 +0 0.0606 +0 0.0450 +0 0.1476 +0 0.7130 +0 0.0457 +0 0.1755 +0 0.1023 +0 0.1694 +0 0.0639 +0 0.1272 +0 0.1003 +0 0.2947 +0 0.1589 +0 0.0636 +0 0.5398 +0 0.1823 +1 0.8038 +0 0.3100 +0 0.1546 +0 0.2813 +0 0.0825 +0 0.1566 +0 0.0480 +0 0.2005 +0 0.0580 +0 0.5155 +1 0.8009 +0 0.0501 +0 0.2281 +0 0.0702 +0 0.1140 +0 0.4743 +0 0.1131 +0 0.2012 +0 0.1095 +0 0.0837 +0 0.2899 +0 0.1086 +0 0.1693 +0 0.1052 +0 0.1135 +0 0.0626 +0 0.2012 +0 0.0705 +0 0.2128 +0 0.1220 +0 0.0592 +1 0.7711 +0 0.3238 +0 0.6578 +0 0.0789 +0 0.0839 +0 0.0392 +0 0.0768 +0 0.0955 +0 0.5801 +0 0.0668 +0 0.0663 +0 0.1788 +0 0.0973 +0 0.1348 +0 0.1797 +0 0.1770 +0 0.0508 +0 0.0706 +0 0.0933 +0 0.0537 +0 0.6953 +0 0.1549 +0 0.0650 +0 0.1766 +0 0.0394 +0 0.1285 +0 0.1456 +0 0.0874 +0 0.0967 +0 0.1943 +0 0.1852 +0 0.1401 +0 0.1502 +0 0.0446 +0 0.1218 +0 0.0850 +0 0.0583 +0 0.0784 +0 0.1192 +0 0.1044 +0 0.1525 +0 0.1180 +0 0.3945 +0 0.1843 +0 0.0716 +0 0.1811 +0 0.0526 +0 0.0917 +0 0.1931 +0 0.1140 +0 0.0737 +0 0.1672 +0 0.1224 +0 0.1505 +0 0.0883 +0 0.1174 +0 0.0858 +0 0.1228 +0 0.3687 +0 0.2536 +0 0.0438 +0 0.1943 +0 0.0711 +0 0.0488 +0 0.0923 +0 0.1333 +0 0.1661 +0 0.2852 +0 0.0825 +0 0.0768 +0 0.0494 +0 0.0574 +0 0.1229 +0 0.1245 +0 0.2888 +0 0.0567 +0 0.0612 +1 0.7605 +0 0.1105 +0 0.0911 +0 0.1339 +0 0.1732 +0 0.1270 +0 0.0431 +0 0.0900 +0 0.0844 +0 0.1315 +0 0.0768 +0 0.0570 +0 0.0735 +0 0.1141 +0 0.1515 +0 0.1271 +0 0.3654 +0 0.0845 +0 0.7210 +0 0.2705 +0 0.0393 +0 0.1293 +0 0.0608 +0 0.1411 +0 0.0905 +0 0.0697 +0 0.1876 +0 0.1833 +0 0.1863 +0 0.0826 +0 0.1148 +0 0.1556 +0 0.1637 +0 0.0884 +0 0.3303 +0 0.1430 +0 0.1975 +0 0.0436 +0 0.1058 +0 0.1621 +0 0.0660 +0 0.3030 +0 0.0372 +0 0.1292 +0 0.3954 +0 0.1383 +0 0.0909 +0 0.4604 +0 0.1321 +0 0.1370 +0 0.0880 +0 0.0869 +0 0.1404 +0 0.2991 +0 0.1164 +0 0.0646 +0 0.1448 +0 0.1426 +0 0.1238 +0 0.3396 +0 0.0823 +0 0.0900 +0 0.0902 +0 0.0846 +0 0.0565 +0 0.0604 +0 0.7231 +0 0.1032 +0 0.1170 +0 0.0617 +0 0.0956 +0 0.0658 +0 0.0777 +0 0.1469 +0 0.0942 +0 0.2913 +0 0.1513 +0 0.1157 +0 0.1423 +0 0.1303 +0 0.2776 +0 0.0464 +0 0.2716 +1 0.8402 +0 0.0899 +0 0.1319 +0 0.2319 +1 0.8537 +0 0.1116 +0 0.0529 +0 0.2572 +0 0.0624 +0 0.1899 +0 0.1028 +0 0.0924 +0 0.1366 +0 0.2276 +0 0.1235 +0 0.0507 +0 0.0996 +0 0.1529 +0 0.0424 +0 0.0590 +0 0.0742 +0 0.0592 +0 0.0599 +0 0.0478 +0 0.0545 +0 0.0888 +0 0.0372 +0 0.1101 +0 0.3133 +0 0.0890 +0 0.1120 +0 0.0500 +0 0.0532 +0 0.1274 +0 0.0379 +0 0.0482 +0 0.0920 +0 0.3240 +0 0.1459 +0 0.0558 +1 0.7714 +0 0.0532 +0 0.2382 +0 0.1188 +0 0.0718 +0 0.0651 +0 0.1297 +0 0.0737 +0 0.2398 +0 0.4078 +0 0.0796 +0 0.1117 +0 0.0718 +0 0.0346 +0 0.1555 +0 0.0777 +0 0.1438 +0 0.0720 +0 0.0979 +0 0.0447 +0 0.2619 +0 0.1832 +0 0.1440 +0 0.0552 +1 0.7896 +0 0.0635 +0 0.0364 +0 0.1167 +0 0.0828 +0 0.2235 +1 0.8045 +0 0.2242 +0 0.4954 +0 0.1240 +0 0.5853 +0 0.0784 +0 0.0662 +0 0.0569 +0 0.1091 +0 0.0955 +0 0.1264 +0 0.0871 +0 0.0664 +1 0.8810 +0 0.0529 +0 0.1022 +0 0.1615 +0 0.0589 +0 0.0635 +0 0.0729 +0 0.0700 +0 0.0772 +0 0.0612 +0 0.0738 +0 0.1326 +0 0.0647 +0 0.0860 +0 0.1516 +0 0.0796 +0 0.4089 +0 0.5648 +0 0.1249 +0 0.0838 +0 0.2340 +0 0.0885 +0 0.0940 +0 0.0442 +0 0.2328 +0 0.2082 +0 0.1607 +0 0.0894 +0 0.1248 +0 0.1056 +0 0.4362 +0 0.2318 +0 0.1461 +0 0.2033 +0 0.0772 +0 0.0935 +0 0.1236 +0 0.1106 +0 0.2208 +0 0.1066 +0 0.1822 +0 0.0410 +0 0.0920 +0 0.0475 +0 0.3425 +0 0.0493 +0 0.1376 +0 0.0510 +0 0.0408 +0 0.1108 +0 0.1216 +0 0.1491 +0 0.0477 +0 0.0379 +0 0.0552 +0 0.0457 +0 0.0967 +0 0.0907 +0 0.0583 +0 0.1398 +0 0.1835 +0 0.0936 +0 0.0879 +0 0.0400 +0 0.3258 +0 0.0928 +0 0.1329 +0 0.0698 +0 0.0871 +0 0.0462 +0 0.0623 +0 0.2084 +0 0.2033 +0 0.2344 +0 0.1702 +0 0.1502 +0 0.0651 +0 0.0699 +0 0.0846 +0 0.0780 +0 0.3397 +0 0.0684 +0 0.1143 +0 0.1062 +0 0.0897 +0 0.1392 +0 0.0908 +0 0.0497 +0 0.0810 +0 0.0706 +0 0.1541 +0 0.0834 +0 0.1167 +0 0.0855 +0 0.1644 +0 0.1655 +0 0.1035 +0 0.3974 +0 0.0795 +0 0.1332 +0 0.1708 +0 0.0830 +0 0.3203 +0 0.0412 +0 0.0560 +0 0.0320 +0 0.0931 +0 0.0751 +0 0.7127 +0 0.0577 +0 0.1936 +0 0.1599 +0 0.0721 +0 0.0988 +0 0.2706 +0 0.0490 +0 0.6400 +0 0.1190 +0 0.1138 +0 0.1753 +0 0.1424 +0 0.1839 +0 0.2814 +0 0.1634 +0 0.0391 +0 0.1053 +0 0.0424 +0 0.1068 +0 0.3399 +0 0.2964 +0 0.2006 +0 0.0639 +0 0.1005 +0 0.0559 +0 0.1064 +0 0.2750 +0 0.1942 +0 0.1316 +0 0.0593 +0 0.0571 +0 0.0600 +0 0.1109 +0 0.1106 +0 0.1042 +0 0.6316 +0 0.3142 +0 0.0663 +0 0.1966 +0 0.0868 +0 0.0378 +0 0.1759 +0 0.1603 +0 0.0927 +0 0.2090 +0 0.2435 +0 0.0883 +0 0.1149 +0 0.0594 +0 0.2527 +0 0.2424 +0 0.0698 +0 0.2740 +0 0.1241 +0 0.1318 +0 0.4490 +0 0.1818 +0 0.0712 +0 0.0634 +0 0.1962 +0 0.0905 +0 0.5865 +0 0.1865 +0 0.1638 +0 0.1021 +0 0.4505 +0 0.0716 +0 0.1153 +0 0.0524 +0 0.0770 +0 0.2433 +0 0.0477 +0 0.2500 +0 0.1931 +0 0.0798 +0 0.2442 +0 0.1304 +0 0.0505 +0 0.0682 +0 0.1478 +0 0.1624 +0 0.0645 +0 0.2299 +0 0.1554 +0 0.2183 +0 0.0673 +0 0.0986 +0 0.0762 +0 0.0832 +0 0.3028 +0 0.0730 +0 0.0876 +0 0.0848 +0 0.2975 +0 0.0441 +0 0.0906 +0 0.0841 +0 0.3068 +0 0.0801 +0 0.0567 +0 0.1481 +0 0.0622 +0 0.0858 +0 0.0845 +0 0.0489 +0 0.1970 +0 0.1079 +0 0.1111 +0 0.0583 +0 0.2006 +0 0.0525 +0 0.0493 +0 0.0647 +0 0.0598 +0 0.1778 +0 0.1393 +0 0.1180 +0 0.1164 +0 0.0701 +0 0.1179 +0 0.1648 +0 0.1001 +0 0.1488 +0 0.1157 +0 0.0826 +0 0.1143 +0 0.1706 +0 0.1687 +0 0.0926 +0 0.0984 +0 0.0610 +0 0.0407 +0 0.0983 +0 0.1437 +0 0.1290 +0 0.0608 +0 0.1686 +0 0.1039 +0 0.0918 +0 0.1057 +0 0.0827 +0 0.0873 +0 0.1200 +0 0.1627 +0 0.0776 +0 0.0681 +0 0.0909 +0 0.1319 +0 0.0761 +0 0.0673 +0 0.1344 +1 0.7564 +0 0.1405 +0 0.1451 +0 0.6233 +0 0.2274 +0 0.1349 +0 0.0837 +0 0.0616 +0 0.1710 +0 0.0635 +0 0.0671 +0 0.0746 +0 0.1587 +0 0.6080 +0 0.0932 +0 0.1000 +0 0.1204 +0 0.1004 +0 0.0789 +0 0.1015 +0 0.1808 +0 0.0793 +0 0.2052 +0 0.0957 +0 0.0580 +0 0.4705 +0 0.0896 +0 0.1385 +0 0.0504 +0 0.0785 +0 0.2774 +0 0.3023 +0 0.0563 +0 0.1922 +0 0.1050 +0 0.0666 +0 0.1330 +0 0.2648 +0 0.1381 +0 0.0613 +0 0.1265 +0 0.1335 +0 0.2452 +0 0.0469 +0 0.1394 +0 0.0454 +0 0.1417 +0 0.2835 +0 0.0346 +0 0.2192 +0 0.1563 +0 0.0669 +0 0.0922 +0 0.1322 +0 0.2456 +0 0.0645 +0 0.0500 +0 0.1189 +0 0.1271 +0 0.1233 +0 0.2709 +0 0.2727 +0 0.0400 +0 0.1389 +0 0.1437 +0 0.0434 +0 0.1118 +0 0.0804 +0 0.1537 +0 0.0968 +0 0.2883 +0 0.1220 +0 0.2228 +0 0.0701 +0 0.0654 +0 0.1392 +0 0.0876 +0 0.1299 +0 0.1049 +0 0.2844 +0 0.0842 +1 0.8297 +0 0.0844 +0 0.0693 +0 0.0578 +0 0.0870 +0 0.0522 +0 0.1645 +0 0.2735 +0 0.3518 +0 0.0526 +0 0.6140 +0 0.1534 +0 0.1541 +0 0.0947 +0 0.1949 +0 0.0732 +0 0.2416 +0 0.4177 +0 0.7367 +0 0.0838 +0 0.0913 +0 0.1061 +0 0.5918 +0 0.2477 +0 0.1906 +0 0.1108 +0 0.0845 +0 0.0995 +0 0.0763 +0 0.0654 +0 0.1508 +0 0.1576 +0 0.2955 +0 0.1765 +0 0.7162 +0 0.1391 +0 0.0646 +0 0.1040 +1 0.8751 +0 0.0812 +0 0.1872 +0 0.0382 +0 0.0687 +0 0.1112 +0 0.0568 +0 0.1016 +0 0.4147 +0 0.5374 +0 0.5438 +0 0.0656 +0 0.1467 +0 0.1324 +0 0.1063 +0 0.0956 +0 0.1032 +0 0.1288 +0 0.0531 +0 0.0810 +0 0.2420 +0 0.0488 +0 0.0639 +0 0.2904 +0 0.0958 +0 0.0875 +0 0.0853 +0 0.0555 +0 0.1361 +0 0.0706 +0 0.0948 +0 0.0652 +0 0.1709 +0 0.3255 +0 0.2029 +0 0.0933 +0 0.1221 +0 0.1708 +0 0.0860 +0 0.0420 +0 0.0517 +0 0.1630 +0 0.0671 +0 0.0621 +0 0.1324 +0 0.1234 +0 0.1381 +0 0.0647 +0 0.0748 +0 0.2598 +0 0.1360 +0 0.1292 +0 0.1695 +0 0.0512 +0 0.2883 +0 0.0693 +0 0.1339 +0 0.0771 +0 0.2724 +0 0.0724 +0 0.0754 +0 0.0832 +0 0.0578 +0 0.0649 +0 0.3212 +0 0.2298 +0 0.1378 +0 0.1774 +0 0.0696 +0 0.2131 +0 0.0860 +0 0.0990 +0 0.1124 +0 0.1808 +0 0.0526 +0 0.0448 +0 0.0666 +0 0.1408 +0 0.3349 +0 0.0589 +0 0.0440 +0 0.0609 +0 0.1259 +0 0.2226 +0 0.0989 +0 0.1378 +0 0.1498 +0 0.1609 +0 0.3783 +0 0.0550 +0 0.1196 +0 0.0507 +0 0.1143 +0 0.1917 +0 0.1503 +0 0.1512 +0 0.0670 +0 0.4521 +0 0.1425 +0 0.0842 +0 0.0852 +0 0.0705 +0 0.3305 +0 0.0955 +0 0.0532 +0 0.0324 +0 0.4019 +0 0.0767 +0 0.0731 +0 0.1406 +0 0.1192 +0 0.1309 +0 0.1338 +0 0.0902 +0 0.0882 +0 0.1205 +0 0.0702 +0 0.2031 +0 0.3550 +0 0.1558 +0 0.0453 +0 0.0662 +0 0.0844 +0 0.2007 +0 0.1452 +0 0.2950 +0 0.2090 +0 0.1004 +0 0.1481 +0 0.0489 +0 0.0637 +0 0.1128 +0 0.0699 +0 0.0818 +0 0.0572 +0 0.1412 +0 0.0933 +0 0.1276 +0 0.0910 +0 0.1108 +0 0.3657 +0 0.2265 +0 0.3098 +0 0.1198 +0 0.0629 +0 0.0571 +0 0.0937 +0 0.0954 +0 0.5800 +0 0.3717 +0 0.2655 +0 0.6834 +0 0.0925 +0 0.0933 +0 0.2650 +0 0.1356 +0 0.1185 +0 0.0515 +0 0.1716 +0 0.1292 +0 0.0632 +0 0.1060 +0 0.0474 +0 0.1782 +0 0.0811 +0 0.0775 +0 0.0761 +0 0.0907 +0 0.2934 +0 0.0812 +0 0.0807 +0 0.1889 +0 0.0766 +0 0.1559 +0 0.1288 +0 0.1340 +0 0.1202 +0 0.0751 +0 0.2641 +0 0.3650 +0 0.4392 +0 0.0511 +0 0.0633 +0 0.1025 +0 0.0532 +0 0.0725 +0 0.0624 +0 0.2894 +0 0.0400 +0 0.1155 +0 0.0908 +0 0.0978 +0 0.0813 +0 0.1798 +0 0.1423 +0 0.1619 +0 0.1196 +0 0.0712 +0 0.2107 +0 0.1183 +0 0.2859 +0 0.0730 +0 0.2093 +0 0.1221 +0 0.1623 +0 0.1131 +0 0.0771 +0 0.2018 +0 0.0584 +0 0.1284 +0 0.0918 +0 0.3073 +0 0.0683 +0 0.0547 +0 0.1465 +0 0.2651 +0 0.0805 +0 0.0500 +0 0.1152 +0 0.6160 +0 0.2852 +0 0.0863 +1 0.8559 +0 0.1748 +0 0.1117 +0 0.0630 +0 0.0995 +0 0.1096 +0 0.1255 +0 0.0821 +0 0.1062 +0 0.1264 +0 0.1775 +0 0.0428 +0 0.1101 +0 0.1849 +0 0.0324 +0 0.0783 +0 0.1418 +0 0.1989 +0 0.2567 +0 0.1360 +0 0.1311 +0 0.0588 +1 0.7521 +0 0.0888 +0 0.0803 +0 0.0447 +0 0.1177 +1 0.7688 +0 0.1078 +0 0.0509 +0 0.0829 +0 0.5365 +0 0.0940 +0 0.2228 +0 0.0618 +0 0.0667 +0 0.1632 +0 0.2212 +0 0.0638 +0 0.0297 +0 0.2181 +0 0.1762 +0 0.0822 +0 0.1027 +0 0.1284 +0 0.1022 +0 0.6244 +0 0.0707 +0 0.0919 +0 0.0351 +0 0.0918 +0 0.0905 +0 0.0928 +0 0.5388 +0 0.1390 +0 0.0432 +0 0.0807 +0 0.4284 +0 0.0716 +0 0.4529 +0 0.0731 +0 0.0964 +0 0.1627 +0 0.0438 +0 0.2106 +0 0.0870 +0 0.1956 +0 0.1737 +0 0.1507 +0 0.1113 +0 0.0554 +0 0.1763 +0 0.2591 +0 0.5868 +0 0.1508 +0 0.1177 +0 0.2435 +0 0.7405 +0 0.1174 +0 0.0570 +0 0.1195 +0 0.0715 +0 0.0875 +0 0.1440 +0 0.2199 +0 0.1074 +0 0.0707 +0 0.1023 +0 0.1396 +0 0.1009 +0 0.0743 +0 0.1932 +0 0.1778 +0 0.1541 +0 0.0579 +0 0.0775 +0 0.1158 +0 0.0951 +0 0.0973 +0 0.2910 +0 0.0697 +0 0.1044 +0 0.0761 +0 0.1800 +0 0.1684 +0 0.3636 +0 0.1426 +0 0.0862 +0 0.0581 +0 0.5123 +0 0.0522 +0 0.2054 +0 0.2660 +0 0.1509 +0 0.1417 +0 0.1163 +0 0.2254 +0 0.2665 +0 0.0760 +0 0.7140 +0 0.2110 +0 0.0513 +0 0.2515 +0 0.0548 +0 0.0781 +0 0.0751 +0 0.1059 +0 0.2125 +0 0.1686 +0 0.0507 +0 0.0749 +0 0.0422 +0 0.0432 +0 0.0566 +0 0.0551 +0 0.1944 +0 0.1169 +0 0.1107 +0 0.1324 +0 0.1845 +0 0.0634 +0 0.0576 +0 0.0864 +0 0.1004 +0 0.0968 +0 0.1535 +0 0.1502 +1 0.8068 +0 0.1034 +0 0.0614 +0 0.1077 +0 0.5612 +0 0.0625 +0 0.2193 +0 0.1302 +0 0.0952 +0 0.1967 +0 0.1211 +0 0.0841 +0 0.3002 +0 0.0965 +0 0.0293 +0 0.1081 +0 0.1149 +0 0.2294 +0 0.0829 +0 0.1346 +0 0.0968 +0 0.0958 +0 0.5987 +0 0.0450 +0 0.1467 +0 0.1498 +0 0.0635 +0 0.0436 +0 0.0415 +1 0.8124 +0 0.1060 +0 0.3013 +0 0.3306 +0 0.0859 +0 0.2147 +0 0.1335 +0 0.3592 +0 0.0938 +0 0.1611 +0 0.1540 +0 0.0709 +0 0.1052 +0 0.3397 +0 0.1136 +0 0.2438 +0 0.1526 +0 0.2510 +0 0.2107 +0 0.2159 +0 0.1540 +0 0.1207 +0 0.0821 +0 0.1034 +0 0.2292 +0 0.0572 +0 0.1771 +0 0.0521 +0 0.1560 +0 0.0389 +0 0.1059 +0 0.2805 +0 0.2438 +0 0.0610 +0 0.0956 +0 0.3051 +0 0.0711 +0 0.1177 +0 0.1568 +0 0.1618 +1 0.2953 +0 0.0809 +0 0.6573 +0 0.1893 +0 0.1176 +0 0.1509 +0 0.0895 +0 0.1261 +0 0.0537 +0 0.0981 +0 0.1565 +0 0.0926 +0 0.0936 +0 0.0674 +0 0.1795 +0 0.2813 +0 0.0539 +0 0.1536 +0 0.1116 +0 0.0917 +0 0.1293 +0 0.3412 +0 0.1575 +0 0.0771 +0 0.0486 +0 0.3961 +0 0.3248 +0 0.0566 +0 0.0828 +0 0.0669 +0 0.1461 +0 0.0685 +0 0.1585 +1 0.8074 +0 0.1066 +0 0.0406 +0 0.0438 +0 0.0902 +0 0.0788 +0 0.0740 +0 0.1287 +0 0.1951 +0 0.0461 +0 0.1477 +0 0.1773 +0 0.0786 +0 0.1225 +0 0.1742 +0 0.0444 +0 0.1153 +0 0.1155 +0 0.0789 +0 0.0641 +0 0.1101 +0 0.2766 +0 0.1681 +0 0.0655 +0 0.0880 +0 0.0922 +0 0.0722 +0 0.0791 +0 0.0576 +0 0.1251 +0 0.0940 +0 0.0875 +0 0.0574 +1 0.7680 +0 0.3344 +0 0.1809 +0 0.1902 +0 0.1256 +0 0.2013 +0 0.0467 +0 0.3590 +0 0.1146 +0 0.0996 +0 0.0959 +0 0.1649 +1 0.7811 +0 0.1169 +0 0.0684 +0 0.0859 +0 0.1007 +0 0.2880 +0 0.5101 +0 0.1206 +0 0.1117 +0 0.2828 +0 0.0510 +0 0.1638 +0 0.1440 +0 0.2037 +0 0.1016 +0 0.0656 +0 0.1922 +0 0.1010 +0 0.2928 +0 0.1465 +0 0.3002 +0 0.1316 +0 0.0585 +0 0.2826 +0 0.0839 +0 0.0439 +0 0.1322 +0 0.1195 +0 0.1774 +0 0.2364 +0 0.1044 +0 0.1424 +0 0.0980 +0 0.3472 +0 0.2016 +0 0.1581 +0 0.0564 +0 0.1050 +0 0.0563 +0 0.1199 +0 0.2100 +0 0.1326 +0 0.1095 +0 0.1950 +0 0.2327 +0 0.1489 +0 0.1061 +0 0.2918 +0 0.0717 +1 0.8708 +0 0.0984 +0 0.1474 +0 0.1886 +0 0.0772 +0 0.0933 +0 0.0341 +0 0.1477 +0 0.0742 +1 0.8146 +0 0.1035 +0 0.0745 +0 0.0918 +0 0.1189 +0 0.0429 +0 0.0509 +0 0.1146 +0 0.0982 +0 0.0647 +0 0.0814 +0 0.0600 +0 0.1136 +0 0.1726 +0 0.1473 +0 0.0986 +0 0.0813 +0 0.0905 +0 0.1444 +0 0.1072 +0 0.1065 +0 0.1312 +0 0.1756 +0 0.1970 +0 0.0518 +0 0.0974 +0 0.0651 +0 0.1898 +0 0.0645 +0 0.1413 +0 0.0868 +0 0.0763 +0 0.1676 +0 0.1467 +0 0.0916 +0 0.0355 +0 0.0775 +0 0.0816 +0 0.1200 +0 0.1173 +0 0.1800 +0 0.0883 +0 0.0822 +0 0.0594 +0 0.1198 +0 0.1969 +0 0.1140 +0 0.0565 +0 0.0916 +0 0.1014 +0 0.0742 +0 0.0834 +0 0.0772 +1 0.8426 +0 0.0466 +0 0.1703 +0 0.5817 +0 0.2452 +0 0.0696 +0 0.2062 +0 0.1881 +0 0.0704 +0 0.0971 +0 0.1671 +0 0.0645 +0 0.1185 +0 0.6031 +0 0.4707 +0 0.0749 +0 0.1224 +0 0.1250 +0 0.1273 +0 0.4952 +0 0.0694 +0 0.0934 +0 0.2286 +0 0.0463 +0 0.0799 +0 0.1492 +0 0.0488 +0 0.0617 +0 0.0517 +0 0.0952 +0 0.1200 +0 0.4546 +0 0.0857 +0 0.3791 +0 0.0425 +0 0.1845 +0 0.0686 +0 0.1636 +0 0.1911 +0 0.5909 +0 0.0920 +0 0.2113 +0 0.1673 +0 0.1040 +0 0.0600 +0 0.0829 +0 0.1552 +0 0.2412 +0 0.2134 +0 0.1519 +0 0.1195 +0 0.1365 +0 0.0567 +0 0.0605 +0 0.0712 +0 0.1306 +0 0.2475 +0 0.1564 +0 0.2264 +0 0.0560 +1 0.8311 +0 0.0945 +0 0.1634 +0 0.2623 +0 0.1044 +0 0.0794 +0 0.0684 +0 0.0565 +0 0.1082 +0 0.1389 +0 0.0730 +0 0.0767 +0 0.0611 +0 0.1687 +0 0.0710 +0 0.0496 +0 0.0449 +0 0.0612 +0 0.0510 +0 0.0576 +0 0.0368 +0 0.0505 +0 0.0912 +0 0.1992 +0 0.0693 +0 0.1127 +0 0.1341 +0 0.0926 +0 0.0498 +1 0.8944 +0 0.1076 +0 0.1769 +0 0.0837 +0 0.0475 +0 0.1637 +0 0.0797 +0 0.0560 +0 0.0857 +0 0.5021 +0 0.1085 +0 0.1679 +0 0.2160 +0 0.3387 +0 0.1869 +0 0.0794 +0 0.0330 +0 0.0523 +0 0.0724 +0 0.0403 +0 0.0571 +0 0.1399 +0 0.0934 +0 0.0870 +0 0.1615 +0 0.1608 +0 0.0679 +0 0.0618 +0 0.5250 +0 0.0999 +0 0.2342 +0 0.6305 +0 0.0877 +0 0.1549 +0 0.1627 +0 0.1824 +0 0.0905 +0 0.0878 +0 0.0927 +0 0.2470 +0 0.0506 +0 0.1127 +0 0.0467 +0 0.1426 +0 0.2382 +0 0.1863 +0 0.1626 +0 0.1881 +0 0.1612 +0 0.0539 +0 0.0605 +0 0.0520 +0 0.1230 +0 0.0983 +0 0.0508 +0 0.0517 +0 0.0735 +0 0.0585 +0 0.0926 +0 0.0403 +0 0.0979 +0 0.0640 +0 0.0708 +0 0.0627 +0 0.1753 +0 0.0851 +0 0.1820 +0 0.0776 +0 0.0968 +0 0.0609 +0 0.2279 +0 0.0654 +0 0.0987 +0 0.2623 +0 0.0648 +0 0.1464 +0 0.1289 +0 0.1693 +0 0.1389 +0 0.2773 +0 0.0961 +0 0.0804 +0 0.0668 +0 0.0607 +0 0.0526 +0 0.0716 +0 0.0546 +0 0.2649 +0 0.1796 +0 0.0608 +0 0.1760 +0 0.0627 +0 0.0915 +0 0.1046 +0 0.1015 +0 0.1051 +0 0.1011 +0 0.2110 +0 0.0722 +0 0.0844 +0 0.0906 +0 0.1691 +0 0.1074 +0 0.1459 +0 0.1850 +0 0.0913 +0 0.1395 +0 0.2597 +0 0.0628 +0 0.4158 +0 0.0821 +0 0.1620 +0 0.2364 +0 0.1213 +0 0.1037 +0 0.0860 +0 0.0770 +0 0.1751 +0 0.1534 +0 0.0910 +0 0.2068 +0 0.1357 +0 0.0909 +0 0.1656 +0 0.2875 +0 0.0556 +0 0.0639 +0 0.0692 +0 0.1747 +0 0.0834 +0 0.1145 +0 0.1094 +0 0.0360 +0 0.2069 +0 0.1398 +0 0.0611 +0 0.0973 +0 0.2108 +0 0.7494 +0 0.0883 +0 0.0944 +0 0.1382 +0 0.0919 +0 0.5082 +0 0.1608 +0 0.0507 +0 0.0492 +0 0.0821 +0 0.0853 +0 0.0567 +0 0.0980 +0 0.3275 +0 0.7017 +0 0.0950 +0 0.1317 +0 0.2032 +0 0.2283 +0 0.6661 +0 0.0738 +0 0.0280 +0 0.1204 +0 0.1739 +0 0.2960 +0 0.0833 +0 0.0618 +0 0.0745 +0 0.0695 +0 0.1135 +0 0.2099 +0 0.2823 +0 0.0576 +0 0.0998 +0 0.0502 +0 0.0686 +0 0.1873 +0 0.1179 +0 0.2701 +0 0.1653 +0 0.0608 +0 0.0820 +0 0.0606 +0 0.1548 +0 0.0537 +0 0.0572 +0 0.0492 +0 0.0749 +0 0.2403 +0 0.1653 +0 0.1814 +0 0.2086 +0 0.1597 +0 0.4586 +0 0.0401 +0 0.1398 +0 0.1755 +0 0.1015 +0 0.0907 +0 0.0624 +0 0.3470 +0 0.0851 +0 0.0736 +0 0.1333 +0 0.0592 +0 0.0364 +0 0.1489 +0 0.0801 +0 0.0697 +0 0.1061 +0 0.1114 +0 0.1636 +0 0.0494 +0 0.1048 +0 0.1028 +0 0.7292 +0 0.0693 +0 0.1138 +0 0.0816 +0 0.2445 +0 0.7446 +0 0.0800 +0 0.2153 +0 0.0706 +0 0.0762 +0 0.0448 +0 0.0541 +0 0.0444 +0 0.3699 +0 0.0705 +0 0.0641 +0 0.3141 +0 0.0944 +0 0.0588 +0 0.0637 +0 0.3361 +0 0.1071 +1 0.8034 +0 0.1167 +0 0.0488 +0 0.2079 +0 0.0800 +0 0.1241 +0 0.4806 +0 0.0452 +0 0.0808 +1 0.8017 +0 0.1485 +0 0.0694 +0 0.2027 +0 0.2753 +0 0.1712 +0 0.2240 +0 0.1664 +0 0.0338 +0 0.1173 +0 0.2953 +0 0.0501 +0 0.2107 +0 0.1415 +0 0.1243 +0 0.3606 +0 0.0795 +0 0.0787 +0 0.1229 +0 0.1328 +0 0.0731 +0 0.0971 +0 0.4109 +0 0.2539 +0 0.1035 +0 0.2119 +0 0.2766 +0 0.0924 +1 0.8422 +0 0.4610 +0 0.1273 +0 0.1353 +0 0.0474 +0 0.2622 +0 0.0529 +0 0.0355 +0 0.0992 +0 0.1701 +0 0.1613 +0 0.2156 +0 0.0823 +0 0.1756 +0 0.0717 +0 0.0655 +0 0.1763 +0 0.1164 +0 0.0403 +0 0.0484 +0 0.1351 +0 0.3115 +0 0.1161 +0 0.1089 +0 0.0807 +0 0.0800 +0 0.1083 +0 0.0960 +0 0.2068 +0 0.0734 +0 0.0441 +0 0.2443 +0 0.1835 +0 0.1333 +0 0.1678 +0 0.1085 +0 0.1183 +0 0.1055 +0 0.1207 +0 0.0599 +0 0.0693 +0 0.2326 +0 0.1083 +0 0.0627 +0 0.0658 +0 0.0471 +0 0.0822 +0 0.1527 +0 0.1076 +0 0.0553 +0 0.0473 +0 0.1811 +0 0.1073 +0 0.4136 +0 0.1412 +0 0.1282 +0 0.1138 +0 0.2040 +0 0.3895 +0 0.0625 +0 0.0913 +0 0.0654 +0 0.1225 +0 0.0938 +0 0.0885 +0 0.0427 +0 0.0945 +0 0.1877 +0 0.0444 +0 0.1380 +0 0.1318 +0 0.2277 +0 0.1159 +0 0.0971 +0 0.0733 +0 0.3265 +0 0.7373 +0 0.1129 +0 0.1558 +1 0.7889 +0 0.1268 +0 0.1359 +0 0.1317 +0 0.4015 +0 0.1578 +0 0.2239 +0 0.1189 +0 0.1468 +0 0.3105 +0 0.0992 +0 0.0816 +0 0.0811 +0 0.1242 +0 0.1606 +0 0.2049 +0 0.0987 +0 0.0455 +0 0.1875 +0 0.0768 +0 0.0935 +0 0.0779 +0 0.0874 +0 0.0355 +0 0.2416 +0 0.1004 +0 0.0798 +0 0.0794 +0 0.1668 +0 0.0536 +0 0.0382 +0 0.7127 +0 0.1044 +0 0.1727 +0 0.0662 +0 0.3269 +0 0.1631 +0 0.0393 +0 0.1663 +0 0.0882 +0 0.0638 +0 0.0871 +0 0.1003 +0 0.0758 +0 0.1244 +0 0.1863 +0 0.1821 +0 0.2186 +0 0.0577 +0 0.0765 +0 0.1700 +0 0.1335 +0 0.2468 +0 0.0958 +0 0.4865 +0 0.0936 +0 0.0757 +0 0.0826 +0 0.1107 +0 0.0995 +0 0.1648 +0 0.1351 +0 0.0636 +0 0.3163 +0 0.1897 +0 0.0707 +0 0.1380 +0 0.2331 +0 0.0450 +0 0.0512 +0 0.1018 +0 0.1686 +1 0.8237 +0 0.0541 +0 0.2802 +0 0.0653 +0 0.0730 +0 0.0731 +0 0.0813 +0 0.0460 +0 0.0407 +0 0.1090 +0 0.0718 +0 0.2416 +0 0.3428 +0 0.1209 +0 0.0694 +0 0.0516 +0 0.1346 +0 0.2707 +0 0.1119 +0 0.1528 +0 0.0700 +0 0.1107 +0 0.1379 +0 0.1024 +0 0.3909 +0 0.2313 +1 0.8109 +0 0.1166 +0 0.0671 +0 0.0503 +0 0.2481 +0 0.1814 +0 0.1075 +0 0.1615 +0 0.0432 +0 0.0472 +0 0.1530 +0 0.0811 +0 0.1419 +0 0.1136 +0 0.3426 +0 0.0974 +0 0.1588 +0 0.2093 +0 0.1043 +0 0.0548 +0 0.0413 +0 0.1302 +0 0.1158 +0 0.0966 +0 0.1581 +0 0.1181 +0 0.0929 +0 0.1343 +0 0.0969 +0 0.0701 +0 0.1031 +0 0.1074 +0 0.0752 +0 0.0954 +0 0.1502 +0 0.0934 +0 0.0437 +0 0.1141 +0 0.1105 +0 0.1956 +0 0.1500 +0 0.0756 +0 0.1233 +0 0.1556 +0 0.1855 +0 0.1235 +0 0.2498 +0 0.1118 +0 0.0665 +0 0.1316 +0 0.0339 +0 0.0957 +0 0.0568 +0 0.0826 +0 0.5438 +0 0.2840 +0 0.0573 +0 0.1053 +0 0.2433 +0 0.0546 +0 0.0730 +0 0.2873 +0 0.0570 +0 0.1406 +0 0.6408 +0 0.5977 +0 0.1095 +0 0.0722 +0 0.2589 +0 0.1371 +0 0.1670 +0 0.2320 +0 0.0540 +1 0.8230 +0 0.0826 +0 0.0662 +0 0.0591 +0 0.1056 +0 0.0690 +0 0.2023 +1 0.7509 +0 0.0999 +0 0.0444 +0 0.1801 +0 0.2504 +0 0.5960 +0 0.1288 +0 0.1648 +0 0.1226 +0 0.1501 +0 0.0718 +0 0.2218 +0 0.1453 +0 0.0337 +0 0.3991 +0 0.0526 +0 0.5358 +0 0.2732 +0 0.1287 +1 0.8771 +0 0.1254 +0 0.2011 +0 0.2102 +0 0.1346 +0 0.1285 +0 0.0604 +0 0.0651 +0 0.0387 +0 0.1357 +0 0.0376 +0 0.0512 +0 0.0849 +0 0.1093 +0 0.1592 +0 0.1365 +0 0.1271 +1 0.8772 +0 0.0785 +0 0.1456 +0 0.4574 +0 0.0583 +0 0.1265 +0 0.1105 +0 0.1235 +0 0.2266 +0 0.0922 +0 0.1398 +0 0.0741 +0 0.0618 +0 0.1246 +0 0.0681 +0 0.0482 +0 0.0585 +0 0.1245 +0 0.1014 +0 0.0651 +0 0.0641 +0 0.0886 +0 0.0690 +0 0.2172 +0 0.0796 +0 0.1382 +0 0.0917 +0 0.1495 +0 0.0788 +0 0.3225 +0 0.0807 +0 0.0828 +0 0.0757 +0 0.1429 +0 0.1630 +0 0.0969 +0 0.0854 +0 0.1709 +0 0.0754 +0 0.1073 +0 0.0932 +0 0.0617 +0 0.6945 +0 0.1224 +0 0.0961 +0 0.3485 +0 0.0550 +0 0.1447 +0 0.1157 +0 0.1231 +0 0.0697 +0 0.2605 +0 0.1438 +0 0.3139 +0 0.1229 +0 0.0404 +0 0.1606 +0 0.2260 +0 0.0836 +0 0.1175 +0 0.1382 +0 0.0623 +0 0.0832 +0 0.1015 +0 0.0597 +0 0.0690 +0 0.1930 +0 0.1730 +0 0.2064 +1 0.8259 +0 0.0926 +0 0.0675 +0 0.0892 +0 0.0670 +0 0.0751 +0 0.2201 +0 0.1592 +0 0.1205 +0 0.1545 +0 0.0353 +0 0.0755 +0 0.0922 +0 0.0424 +0 0.0362 +0 0.2035 +0 0.0881 +0 0.0594 +0 0.0642 +0 0.1326 +0 0.1257 +0 0.0930 +0 0.2811 +0 0.0987 +0 0.1271 +0 0.0700 +0 0.0377 +0 0.1217 +0 0.0685 +0 0.1008 +0 0.1940 +0 0.0601 +0 0.1380 +0 0.0772 +1 0.8523 +0 0.0558 +0 0.7443 +1 0.7671 +0 0.0693 +0 0.1960 +0 0.1025 +0 0.1296 +0 0.3161 +0 0.0863 +0 0.2472 +0 0.0899 +0 0.1210 +0 0.2950 +0 0.1554 +0 0.0512 +0 0.0470 +0 0.1346 +0 0.1584 +0 0.0525 +0 0.2206 +0 0.4066 +0 0.1023 +0 0.6466 +0 0.0721 +0 0.0702 +0 0.0424 +0 0.2982 +0 0.2048 +0 0.0781 +0 0.0645 +0 0.2803 +0 0.1477 +0 0.7289 +0 0.1367 +0 0.0696 +0 0.1316 +0 0.1641 +0 0.1728 +0 0.0996 +0 0.1567 +0 0.0809 +0 0.0822 +0 0.0379 +0 0.0896 +0 0.1492 +0 0.0981 +0 0.0443 +0 0.1057 +0 0.2145 +0 0.1059 +0 0.0793 +0 0.0635 +0 0.0662 +0 0.1099 +0 0.7459 +0 0.0694 +0 0.0274 +0 0.3784 +0 0.1203 +0 0.0965 +0 0.0798 +0 0.0903 +0 0.1406 +0 0.0718 +0 0.1355 +0 0.0664 +0 0.0647 +0 0.1353 +0 0.0461 +0 0.0987 +0 0.1308 +0 0.1329 +0 0.0453 +0 0.1208 +0 0.0906 +0 0.0905 +0 0.0699 +0 0.0706 +0 0.0517 +0 0.0882 +0 0.2918 +1 0.7839 +0 0.0674 +0 0.0639 +0 0.1436 +0 0.0515 +0 0.1683 +0 0.1003 +0 0.0593 +0 0.1650 +0 0.1493 +0 0.2297 +0 0.6229 +0 0.0439 +0 0.0987 +0 0.0734 +0 0.1290 +0 0.1458 +0 0.1520 +0 0.0708 +0 0.0978 +0 0.1042 +0 0.1609 +0 0.1490 +0 0.3282 +0 0.0672 +0 0.1079 +0 0.1438 +0 0.0436 +0 0.0545 +0 0.1217 +0 0.1591 +0 0.1015 +0 0.5896 +0 0.1743 +0 0.1072 +0 0.1791 +0 0.0867 +0 0.1042 +0 0.1862 +0 0.0705 +0 0.0492 +0 0.1391 +0 0.2635 +0 0.1177 +0 0.0778 +0 0.0647 +0 0.0791 +0 0.1202 +0 0.1618 +0 0.1242 +0 0.2042 +0 0.0358 +0 0.2056 +0 0.0606 +0 0.1264 +0 0.1716 +0 0.0888 +0 0.1530 +0 0.0985 +0 0.2136 +0 0.1831 +0 0.0548 +1 0.7936 +0 0.2173 +0 0.1775 +0 0.2338 +0 0.1440 +0 0.0964 +0 0.1238 +0 0.5150 +0 0.0892 +0 0.0860 +0 0.2175 +0 0.0683 +0 0.1284 +0 0.1004 +0 0.1174 +0 0.0780 +0 0.2207 +0 0.1186 +0 0.0640 +0 0.0587 +0 0.5947 +0 0.1417 +0 0.1425 +0 0.0996 +0 0.0643 +0 0.6494 +0 0.0891 +0 0.0572 +0 0.0502 +0 0.2981 +0 0.1012 +0 0.1992 +0 0.0607 +0 0.0936 +0 0.0391 +1 0.7912 +0 0.0934 +1 0.8190 +0 0.1463 +0 0.1318 +0 0.1086 +0 0.0456 +0 0.0963 +0 0.2236 +0 0.2277 +0 0.1775 +1 0.7679 +0 0.1433 +0 0.0397 +0 0.1911 +0 0.0587 +0 0.0349 +0 0.0766 +0 0.1238 +0 0.0790 +0 0.0773 +0 0.0987 +0 0.0997 +0 0.0832 +0 0.0987 +0 0.1735 +0 0.1075 +0 0.1137 +0 0.0771 +0 0.3028 +0 0.6522 +0 0.3071 +0 0.0739 +0 0.0717 +0 0.1596 +0 0.0906 +0 0.0385 +0 0.0781 +0 0.4881 +0 0.2970 +0 0.1410 +0 0.0618 +0 0.1205 +0 0.1072 +1 0.7960 +0 0.0608 +0 0.0764 +0 0.1429 +0 0.0502 +0 0.1276 +0 0.0649 +0 0.5326 +0 0.1904 +0 0.1727 +1 0.8712 +0 0.0831 +0 0.0894 +0 0.1406 +0 0.1024 +0 0.0777 +0 0.0592 +0 0.1972 +0 0.1692 +0 0.1094 +0 0.1906 +0 0.0739 +0 0.1219 +0 0.0900 +0 0.0401 +0 0.1097 +0 0.0950 +0 0.0421 +0 0.0815 +0 0.0633 +0 0.4299 +0 0.1010 +0 0.0347 +0 0.0780 +0 0.0704 +0 0.2590 +0 0.0709 +0 0.1174 +0 0.0899 +0 0.1091 +0 0.0646 +0 0.0912 +0 0.0760 +0 0.1101 +0 0.0736 +0 0.1432 +0 0.1129 +0 0.1323 +0 0.1059 +0 0.0717 +0 0.1211 +0 0.0727 +0 0.0952 +0 0.0562 +0 0.0784 +0 0.1443 +0 0.0788 +0 0.0508 +0 0.1349 +0 0.3650 +0 0.0883 +0 0.1065 +0 0.0772 +0 0.2127 +0 0.0706 +0 0.0760 +0 0.0916 +0 0.1177 +0 0.0940 +0 0.0737 +0 0.0554 +0 0.0503 +0 0.0500 +0 0.1762 +0 0.1244 +0 0.0621 +0 0.3281 +0 0.1487 +0 0.0976 +0 0.0637 +0 0.1358 +0 0.1094 +0 0.1191 +0 0.2772 +0 0.1887 +0 0.1756 +0 0.1386 +0 0.0770 +0 0.1234 +0 0.1199 +0 0.0840 +0 0.0652 +0 0.0444 +0 0.0617 +0 0.0653 +0 0.1856 +0 0.0746 +0 0.1307 +0 0.1061 +0 0.1313 +0 0.2459 +0 0.0562 +0 0.1586 +0 0.0458 +0 0.1112 +0 0.1847 +0 0.1292 +0 0.0591 +0 0.2370 +0 0.0773 +0 0.0400 +0 0.1825 +0 0.1368 +0 0.1921 +0 0.6768 +0 0.1468 +0 0.2894 +0 0.0698 +0 0.0671 +0 0.0901 +0 0.2581 +1 0.8922 +0 0.0914 +0 0.5332 +0 0.1519 +0 0.0305 +0 0.2377 +0 0.0767 +0 0.1562 +0 0.7090 +0 0.0811 +0 0.0829 +0 0.1191 +0 0.0868 +0 0.0528 +0 0.1154 +0 0.0805 +0 0.0578 +0 0.1366 +0 0.0558 +0 0.1998 +0 0.1406 +0 0.0979 +0 0.0815 +0 0.0432 +0 0.0745 +0 0.0500 +0 0.0954 +0 0.5937 +0 0.1829 +0 0.1077 +0 0.3007 +0 0.0574 +0 0.1066 +0 0.0719 +0 0.0488 +0 0.0964 +0 0.2149 +0 0.0640 +0 0.1151 +0 0.0667 +0 0.3394 +0 0.2627 +0 0.3130 +0 0.0315 +0 0.1402 +0 0.0552 +0 0.0671 +0 0.0407 +0 0.1254 +0 0.0762 +0 0.1455 +0 0.1736 +0 0.3152 +0 0.0430 +0 0.1544 +0 0.1482 +0 0.0842 +0 0.0765 +0 0.2035 +0 0.0623 +0 0.3311 +0 0.0847 +0 0.1396 +0 0.1966 +0 0.0682 +0 0.1208 +0 0.1318 +0 0.1346 +0 0.1356 +0 0.1909 +0 0.0670 +0 0.0931 +0 0.1147 +0 0.1904 +0 0.0825 +0 0.0992 +0 0.2054 +0 0.1336 +0 0.0672 +0 0.1103 +0 0.0994 +0 0.1175 +0 0.0625 +0 0.0789 +0 0.1283 +0 0.0737 +0 0.5266 +0 0.1785 +0 0.0717 +0 0.1954 +0 0.1735 +1 0.8036 +0 0.2121 +0 0.0588 +0 0.0923 +0 0.1785 +0 0.0553 +0 0.1771 +0 0.1865 +0 0.1784 +0 0.0517 +0 0.0307 +0 0.0786 +0 0.3581 +0 0.1083 +0 0.0403 +0 0.2415 +0 0.2037 +0 0.0802 +0 0.1535 +0 0.0904 +1 0.7800 +0 0.4387 +0 0.1032 +0 0.0752 +0 0.1031 +0 0.0628 +0 0.0605 +0 0.1575 +0 0.2069 +0 0.0721 +0 0.1387 +0 0.0576 +0 0.1125 +0 0.0621 +0 0.1187 +0 0.2012 +0 0.2189 +0 0.0747 +0 0.0652 +0 0.0416 +0 0.1169 +0 0.0679 +0 0.0440 +0 0.0916 +0 0.0859 +0 0.1061 +0 0.1107 +0 0.2034 +0 0.0969 +0 0.1678 +0 0.0846 +0 0.1836 +0 0.0427 +0 0.6170 +0 0.0798 +0 0.0545 +1 0.7976 +0 0.2301 +0 0.1262 +0 0.3951 +0 0.0538 +0 0.2012 +0 0.0905 +0 0.1178 +0 0.0621 +0 0.1224 +0 0.1035 +0 0.0645 +0 0.0339 +0 0.1749 +0 0.0762 +0 0.0755 +0 0.2722 +0 0.0925 +0 0.2127 +0 0.1936 +0 0.0937 +0 0.1098 +0 0.1296 +0 0.0879 +0 0.0804 +0 0.1402 +0 0.4284 +0 0.1115 +0 0.3999 +0 0.1131 +0 0.1187 +0 0.5068 +0 0.1173 +0 0.2017 +0 0.0710 +0 0.0689 +0 0.1347 +0 0.0450 +0 0.0702 +0 0.0515 +0 0.0843 +0 0.0967 +0 0.0993 +0 0.1796 +0 0.0485 +0 0.1835 +0 0.0635 +0 0.1519 +0 0.2646 +0 0.4152 +0 0.2883 +0 0.1233 +0 0.1084 +0 0.0864 +0 0.0349 +0 0.7141 +0 0.1157 +0 0.0858 +0 0.0723 +0 0.1325 +0 0.1303 +0 0.0347 +0 0.0739 +0 0.1563 +0 0.1076 +0 0.0802 +0 0.0911 +0 0.0579 +0 0.0545 +0 0.1334 +0 0.0930 +0 0.1082 +0 0.0940 +0 0.0986 +0 0.1427 +0 0.1031 +0 0.0507 +0 0.0847 +0 0.0442 +0 0.3065 +0 0.0511 +0 0.0585 +0 0.3069 +0 0.1267 +0 0.0854 +0 0.5464 +0 0.0738 +0 0.1259 +0 0.1776 +0 0.1338 +0 0.1463 +0 0.1454 +0 0.0634 +0 0.1169 +0 0.0609 +0 0.5218 +0 0.1156 +0 0.1753 +0 0.1277 +0 0.0683 +0 0.1923 +0 0.0368 +0 0.0599 +0 0.2234 +0 0.2333 +0 0.0693 +0 0.0722 +0 0.1985 +0 0.0851 +0 0.1599 +0 0.0820 +0 0.0877 +0 0.3261 +0 0.0839 +0 0.0747 +0 0.0862 +0 0.0993 +0 0.2201 +0 0.4116 +0 0.0391 +0 0.0737 +0 0.1638 +0 0.0914 +0 0.1294 +0 0.0506 +0 0.1719 +0 0.1830 +0 0.0390 +0 0.0788 +0 0.2010 +0 0.0707 +0 0.0716 +0 0.0766 +0 0.1520 +0 0.2957 +0 0.1611 +0 0.1786 +0 0.0669 +0 0.3128 +0 0.0340 +1 0.7992 +0 0.1101 +0 0.2067 +0 0.1384 +0 0.1459 +0 0.0740 +1 0.8020 +0 0.1117 +0 0.1500 +0 0.0791 +0 0.1637 +0 0.0642 +0 0.0656 +0 0.1306 +0 0.2946 +0 0.1017 +0 0.1328 +0 0.0637 +0 0.3984 +0 0.0642 +0 0.1752 +0 0.0889 +0 0.1420 +0 0.0477 +0 0.1233 +0 0.1125 +0 0.0524 +0 0.1523 +0 0.0479 +0 0.0747 +0 0.0728 +0 0.2292 +0 0.1295 +0 0.0317 +0 0.1343 +0 0.1579 +0 0.2334 +0 0.2927 +0 0.0516 +0 0.0989 +0 0.2606 +0 0.2433 +0 0.0830 +0 0.1867 +0 0.0915 +0 0.0780 +0 0.1534 +0 0.1687 +0 0.1379 +0 0.0480 +0 0.2555 +0 0.1544 +0 0.0749 +0 0.0574 +0 0.1120 +0 0.0851 +0 0.2379 +0 0.1000 +0 0.1090 +0 0.0657 +0 0.1320 +0 0.0979 +0 0.1447 +0 0.2681 +0 0.1358 +0 0.2558 +0 0.0774 +0 0.0787 +0 0.1494 +0 0.1589 +0 0.1676 +0 0.0774 +0 0.2485 +0 0.0499 +0 0.2856 +0 0.0620 +0 0.0781 +0 0.0786 +0 0.0456 +0 0.0693 +0 0.2680 +0 0.1032 +0 0.0977 +0 0.0477 +0 0.1037 +0 0.1069 +0 0.1857 +0 0.1772 +0 0.1625 +0 0.1700 +0 0.0565 +0 0.0772 +0 0.0415 +0 0.1277 +0 0.3819 +0 0.2053 +0 0.0651 +0 0.0486 +0 0.6172 +0 0.2392 +0 0.3632 +0 0.1950 +0 0.0492 +0 0.2051 +0 0.0808 +0 0.0864 +0 0.0821 +0 0.0598 +0 0.1887 +0 0.0696 +0 0.3948 +0 0.0665 +0 0.1127 +0 0.0909 +0 0.0730 +0 0.1233 +0 0.1199 +0 0.1256 +0 0.0827 +0 0.0838 +0 0.0740 +0 0.0768 +0 0.0648 +0 0.0853 +0 0.0437 +0 0.2440 +0 0.1543 +0 0.0668 +0 0.3613 +0 0.5929 +0 0.2666 +0 0.2460 +0 0.1239 +0 0.5464 +0 0.0985 +0 0.0954 +0 0.1225 +0 0.0629 +0 0.0654 +0 0.1003 +0 0.0633 +0 0.0884 +0 0.1108 +0 0.1653 +0 0.1426 +0 0.0831 +0 0.1535 +0 0.1693 +0 0.0842 +0 0.0873 +0 0.1569 +0 0.1520 +0 0.1250 +0 0.2191 +0 0.2373 +0 0.0922 +0 0.1618 +0 0.0587 +0 0.3198 +0 0.0807 +0 0.1133 +0 0.3612 +0 0.5501 +0 0.0718 +0 0.0947 +0 0.1596 +0 0.0336 +0 0.0559 +0 0.0591 +0 0.3017 +0 0.0573 +0 0.0451 +0 0.0746 +0 0.2451 +0 0.0610 +0 0.0655 +0 0.1440 +0 0.1753 +0 0.0609 +0 0.0614 +0 0.0603 +0 0.0845 +0 0.1374 +0 0.1001 +0 0.1658 +0 0.0903 +0 0.1813 +0 0.1273 +0 0.0400 +0 0.1127 +0 0.0949 +0 0.0838 +0 0.0859 +0 0.1567 +0 0.2418 +0 0.0821 +0 0.1637 +0 0.0888 +0 0.0774 +0 0.1915 +0 0.0607 +0 0.0500 +0 0.2017 +0 0.0401 +0 0.1389 +0 0.0665 +0 0.1629 +0 0.0872 +0 0.1120 +0 0.1362 +0 0.4663 +0 0.1262 +0 0.2030 +0 0.2947 +0 0.0875 +0 0.0926 +0 0.0467 +0 0.1248 +0 0.1907 +0 0.0763 +0 0.2468 +0 0.0528 +0 0.0588 +0 0.1369 +0 0.0810 +0 0.2418 +0 0.0656 +0 0.0772 +0 0.6890 +0 0.2377 +0 0.0794 +0 0.1039 +0 0.0952 +0 0.0689 +0 0.2232 +0 0.0369 +0 0.3001 +0 0.1649 +0 0.1149 +0 0.0957 +0 0.1007 +0 0.0990 +0 0.0925 +0 0.0521 +0 0.0726 +0 0.1316 +0 0.0646 +0 0.0627 +0 0.0408 +0 0.2385 +0 0.2390 +0 0.2231 +0 0.0551 +0 0.0964 +0 0.1097 +0 0.3337 +0 0.0682 +0 0.1217 +0 0.0732 +0 0.0673 +0 0.0919 +0 0.2639 +0 0.0979 +0 0.0722 +0 0.0913 +0 0.1207 +0 0.1046 +0 0.2515 +0 0.0376 +0 0.1162 +0 0.1348 +0 0.1471 +0 0.1507 +0 0.6628 +0 0.0446 +0 0.1132 +0 0.4033 +0 0.1462 +0 0.0982 +0 0.0462 +0 0.1496 +0 0.2678 +0 0.0895 +0 0.0738 +0 0.1013 +0 0.1753 +0 0.1938 +0 0.0365 +0 0.0909 +0 0.1198 +0 0.0567 +0 0.3340 +0 0.1022 +0 0.3121 +0 0.1241 +0 0.0652 +0 0.0675 +0 0.0631 +0 0.0567 +0 0.0769 +0 0.2046 +0 0.0920 +0 0.6351 +0 0.0340 +0 0.0595 +0 0.0584 +0 0.0432 +0 0.2606 +0 0.0531 +0 0.2616 +0 0.0528 +0 0.1977 +0 0.2195 +0 0.0594 +0 0.1324 +0 0.2970 +0 0.0744 +1 0.8801 +0 0.2364 +0 0.0386 +0 0.1199 +0 0.1711 +0 0.1947 +0 0.0989 +0 0.2611 +0 0.1608 +0 0.0770 +0 0.1549 +0 0.1305 +0 0.5143 +0 0.6404 +0 0.1767 +0 0.0959 +0 0.1031 +0 0.0835 +0 0.0437 +0 0.1457 +0 0.2731 +0 0.1472 +0 0.1744 +0 0.0638 +0 0.0571 +0 0.1773 +0 0.0855 +0 0.0407 +0 0.2108 +0 0.1549 +0 0.1034 +0 0.1279 +1 0.7992 +0 0.4216 +0 0.0706 +0 0.2426 +0 0.1164 +0 0.0819 +0 0.1514 +0 0.1658 +0 0.1699 +0 0.0865 +0 0.0963 +0 0.5399 +0 0.1069 +0 0.0447 +0 0.0778 +0 0.2102 +0 0.0734 +0 0.0973 +0 0.0986 +0 0.0758 +0 0.0989 +0 0.0900 +0 0.1002 +0 0.0990 +0 0.0971 +0 0.0992 +0 0.1396 +0 0.0397 +0 0.1019 +0 0.1219 +0 0.0582 +0 0.2123 +0 0.0831 +0 0.0703 +0 0.0642 +0 0.0386 +0 0.1970 +0 0.2243 +0 0.0775 +0 0.1053 +0 0.0608 +0 0.1120 +0 0.1129 +0 0.0832 +0 0.0851 +0 0.0574 +0 0.0649 +0 0.1222 +0 0.2166 +0 0.0938 +0 0.0859 +0 0.1067 +0 0.1165 +0 0.0606 +0 0.1607 +0 0.1155 +0 0.1126 +0 0.1147 +0 0.1081 +0 0.1017 +0 0.0715 +0 0.0840 +0 0.0956 +0 0.0553 +0 0.2278 +0 0.2175 +0 0.1114 +0 0.1713 +0 0.0814 +0 0.2503 +0 0.0741 +0 0.0663 +0 0.2155 +0 0.1340 +0 0.0677 +0 0.0694 +0 0.1157 +0 0.0889 +0 0.1894 +0 0.1542 +0 0.5027 +0 0.1359 +0 0.0438 +0 0.1265 +0 0.1206 +0 0.0720 +0 0.1264 +0 0.1551 +0 0.0784 +0 0.0944 +0 0.1410 +0 0.0685 +0 0.1399 +0 0.2289 +0 0.1025 +0 0.0444 +0 0.0854 +0 0.0349 +0 0.0866 +0 0.1189 +0 0.1476 +0 0.1693 +0 0.1207 +0 0.0610 +0 0.0734 +0 0.1373 +0 0.0889 +0 0.1386 +0 0.1207 +0 0.1780 +0 0.0767 +0 0.1088 +0 0.0916 +0 0.0868 +0 0.1180 +0 0.0425 +0 0.1946 +0 0.0717 +0 0.3497 +0 0.2958 +0 0.0513 +0 0.0983 +0 0.3345 +0 0.1891 +0 0.0766 +0 0.2692 +0 0.6689 +0 0.0640 +0 0.0794 +0 0.0592 +0 0.0711 +0 0.0710 +0 0.0811 +0 0.1275 +0 0.0650 +0 0.0525 +0 0.1631 +0 0.1022 +0 0.0628 +0 0.0578 +0 0.1013 +0 0.0335 +0 0.1876 +0 0.1005 +0 0.1580 +0 0.0678 +0 0.0875 +0 0.0729 +0 0.3269 +0 0.0773 +0 0.0799 +0 0.1577 +0 0.0969 +0 0.1286 +0 0.1612 +0 0.1713 +0 0.5204 +0 0.3849 +0 0.1376 +0 0.0618 +0 0.0744 +0 0.1261 +0 0.1137 +0 0.3552 +0 0.0870 +0 0.0605 +0 0.1149 +0 0.1015 +0 0.6357 +0 0.1321 +0 0.3045 +0 0.0978 +0 0.1237 +0 0.0360 +0 0.0415 +0 0.3414 +0 0.1570 +0 0.0879 +0 0.1918 +0 0.0803 +0 0.0731 +0 0.1099 +0 0.1222 +0 0.0993 +0 0.0936 +0 0.1964 +0 0.0877 +0 0.0587 +0 0.0608 +0 0.1636 +0 0.0698 +0 0.2461 +0 0.0627 +0 0.2176 +0 0.0933 +0 0.0902 +0 0.0653 +0 0.2735 +0 0.7330 +0 0.0819 +0 0.1110 +0 0.2629 +0 0.1301 +0 0.0552 +0 0.3197 +0 0.1264 +0 0.2566 +0 0.1039 +0 0.1607 +0 0.2603 +0 0.2009 +0 0.1121 +0 0.1212 +0 0.2273 +0 0.0534 +0 0.5099 +0 0.1679 +0 0.0665 +0 0.1441 +0 0.1217 +0 0.1342 +0 0.1813 +0 0.6856 +0 0.0490 +0 0.1035 +0 0.1112 +0 0.0928 +0 0.2572 +0 0.1392 +0 0.0877 +0 0.1251 +0 0.1587 +0 0.0531 +0 0.2238 +0 0.1000 +0 0.1259 +0 0.1217 +0 0.0622 +0 0.1484 +0 0.2558 +0 0.0559 +0 0.0708 +0 0.0538 +0 0.1010 +0 0.1684 +0 0.1497 +0 0.0752 +0 0.0392 +0 0.2183 +0 0.1055 +0 0.0593 +0 0.1004 +0 0.1868 +0 0.2530 +0 0.0758 +0 0.1424 +0 0.1744 +0 0.2198 +0 0.3574 +0 0.0546 +0 0.0810 +0 0.1903 +0 0.2563 +0 0.1866 +0 0.2482 +0 0.0674 +0 0.0483 +0 0.4243 +0 0.1154 +0 0.1347 +0 0.0748 +0 0.1288 +0 0.3176 +0 0.0909 +0 0.1589 +0 0.0764 +0 0.1072 +0 0.0697 +0 0.1230 +0 0.0555 +0 0.1303 +0 0.5575 +0 0.1264 +0 0.0898 +0 0.0677 +0 0.0384 +0 0.1003 +0 0.1095 +0 0.1016 +0 0.1202 +0 0.2365 +0 0.0500 +0 0.0574 +0 0.0966 +1 0.7612 +0 0.0932 +0 0.1264 +0 0.1390 +0 0.0827 +0 0.6571 +0 0.0784 +0 0.1832 +0 0.0868 +0 0.0917 +0 0.0943 +1 0.7691 +0 0.4957 +0 0.0879 +0 0.1743 +0 0.0800 +0 0.2703 +0 0.0461 +0 0.1699 +0 0.6284 +0 0.0541 +0 0.1297 +0 0.3056 +0 0.2314 +0 0.1776 +0 0.0368 +0 0.0907 +0 0.1553 +0 0.0623 +0 0.0688 +0 0.1219 +0 0.2380 +0 0.1870 +0 0.1320 +0 0.0699 +0 0.0509 +0 0.1137 +0 0.5330 +0 0.1205 +0 0.2658 +0 0.3007 +0 0.1344 +0 0.0696 +0 0.2088 +0 0.2804 +0 0.0474 +0 0.2100 +0 0.0741 +0 0.5604 +0 0.0827 +0 0.1254 +0 0.0682 +0 0.1439 +0 0.1647 +0 0.0769 +0 0.0491 +0 0.3475 +0 0.0501 +0 0.0923 +0 0.3018 +0 0.1735 +0 0.0831 +0 0.1236 +0 0.1097 +0 0.1157 +0 0.0585 +0 0.1101 +0 0.1317 +0 0.1429 +0 0.0435 +0 0.2137 +0 0.0895 +0 0.1511 +0 0.0587 +0 0.0661 +0 0.0401 +0 0.0663 +0 0.1806 +0 0.1116 +0 0.0994 +0 0.0751 +0 0.1616 +0 0.0370 +0 0.0857 +0 0.1935 +0 0.0636 +0 0.0453 +0 0.1025 +0 0.1197 +0 0.3568 +0 0.1886 +0 0.1199 +0 0.0944 +0 0.2791 +0 0.1501 +0 0.0583 +0 0.0542 +0 0.1178 +0 0.0895 +0 0.1481 +0 0.0444 +0 0.2420 +0 0.0811 +0 0.1237 +0 0.0509 +0 0.0940 +0 0.3602 +0 0.1419 +0 0.0878 +0 0.0508 +0 0.0612 +0 0.1311 +0 0.0486 +0 0.1570 +0 0.1210 +0 0.0543 +0 0.1456 +0 0.1986 +0 0.0812 +0 0.0524 +0 0.1165 +0 0.1460 +0 0.1468 +0 0.1804 +0 0.0864 +0 0.2736 +0 0.1298 +0 0.4020 +0 0.0640 +0 0.0533 +0 0.1638 +0 0.1328 +0 0.2050 +0 0.1616 +0 0.2303 +0 0.1647 +0 0.1005 +0 0.0827 +0 0.0993 +0 0.0443 +0 0.0775 +0 0.4182 +0 0.0832 +0 0.1776 +0 0.1302 +0 0.0532 +0 0.1500 +0 0.0877 +0 0.1294 +0 0.1013 +0 0.1070 +1 0.7724 +0 0.1035 +0 0.4022 +0 0.0801 +0 0.1505 +0 0.1147 +0 0.0866 +0 0.1341 +0 0.0929 +0 0.0562 +0 0.1541 +0 0.1152 +0 0.4560 +0 0.1956 +0 0.1082 +0 0.0938 +0 0.1375 +0 0.2000 +0 0.1004 +0 0.0594 +0 0.1111 +0 0.1431 +0 0.1828 +0 0.1413 +0 0.1216 +0 0.3313 +0 0.0886 +0 0.0959 +0 0.1638 +0 0.0696 +0 0.2508 +0 0.0683 +0 0.3109 +0 0.1880 +0 0.2506 +0 0.0905 +0 0.1084 +0 0.3314 +0 0.1820 +0 0.1008 +0 0.0822 +0 0.2378 +0 0.1700 +0 0.2767 +0 0.0590 +0 0.1466 +0 0.1749 +0 0.2358 +0 0.0575 +0 0.2429 +0 0.0509 +0 0.2383 +0 0.1103 +0 0.1777 +0 0.1154 +0 0.3121 +0 0.1715 +0 0.1342 +0 0.0605 +0 0.1742 +0 0.1445 +0 0.0605 +0 0.2948 +0 0.0930 +0 0.0286 +0 0.1150 +1 0.8095 +0 0.0963 +0 0.0671 +0 0.1096 +0 0.0796 +0 0.0575 +0 0.1086 +0 0.1041 +0 0.1739 +0 0.2295 +0 0.1125 +0 0.1450 +0 0.1058 +0 0.1003 +0 0.1408 +0 0.0695 +0 0.1169 +0 0.1033 +0 0.2451 +0 0.0307 +0 0.0469 +0 0.0554 +0 0.1874 +0 0.1156 +0 0.1056 +0 0.1708 +0 0.0659 +0 0.0990 +0 0.0924 +0 0.1056 +0 0.0536 +0 0.0799 +0 0.1033 +0 0.1060 +0 0.0387 +0 0.0966 +0 0.1983 +0 0.1338 +0 0.0661 +0 0.1603 +0 0.4341 +1 0.7853 +0 0.0790 +0 0.0699 +0 0.2359 +0 0.0797 +0 0.0629 +0 0.1160 +0 0.0763 +0 0.1480 +0 0.1328 +0 0.0810 +0 0.0939 +0 0.0510 +0 0.5497 +0 0.0982 +0 0.0478 +0 0.1100 +0 0.0866 +0 0.0592 +0 0.0779 +0 0.0561 +0 0.2608 +0 0.0464 +0 0.1371 +0 0.1096 +0 0.0952 +0 0.0394 +0 0.0528 +0 0.0825 +0 0.1214 +0 0.0565 +0 0.1016 +0 0.0527 +0 0.1097 +0 0.2583 +1 0.8464 +0 0.0603 +0 0.1429 +0 0.0544 +0 0.0829 +0 0.0753 +0 0.0662 +0 0.0584 +1 0.7580 +0 0.0973 +0 0.2288 +0 0.1212 +0 0.1421 +0 0.1604 +0 0.0844 +0 0.0702 +0 0.2095 +0 0.1251 +0 0.0641 +0 0.1394 +0 0.1821 +0 0.1002 +0 0.0753 +0 0.0925 +0 0.0793 +0 0.1726 +0 0.0645 +0 0.1576 +0 0.0752 +0 0.1236 +0 0.0972 +0 0.1197 +0 0.0484 +0 0.0395 +0 0.3717 +0 0.0866 +0 0.1281 +0 0.0742 +0 0.1219 +0 0.1274 +0 0.1375 +0 0.2033 +0 0.0512 +0 0.0473 +0 0.1457 +0 0.1612 +0 0.1942 +0 0.0781 +0 0.0500 +0 0.0963 +0 0.1701 +0 0.1359 +1 0.7501 +0 0.1201 +0 0.2559 +0 0.1500 +0 0.1247 +0 0.1606 +0 0.0632 +0 0.1104 +0 0.2731 +0 0.1007 +0 0.3017 +0 0.0471 +0 0.5916 +0 0.0586 +0 0.0624 +0 0.1170 +0 0.0744 +0 0.0917 +0 0.2361 +0 0.1201 +0 0.0794 +0 0.1476 +0 0.0921 +0 0.0576 +0 0.1549 +0 0.7051 +0 0.0881 +0 0.0721 +0 0.0631 +0 0.0751 +1 0.8334 +0 0.1158 +0 0.0547 +0 0.0664 +0 0.0540 +0 0.1564 +0 0.0631 +0 0.0429 +0 0.2826 +0 0.1577 +0 0.0990 +0 0.1025 +0 0.1520 +1 0.8294 +1 0.8445 +0 0.0471 +0 0.0648 +0 0.2316 +0 0.1130 +0 0.1424 +0 0.0752 +0 0.1861 +0 0.1232 +0 0.0494 +0 0.0508 +0 0.0691 +0 0.1088 +0 0.1451 +0 0.1504 +0 0.5487 +0 0.1879 +0 0.1374 +0 0.1285 +0 0.0855 +0 0.0882 +0 0.0996 +0 0.0443 +0 0.3497 +0 0.0717 +0 0.0544 +0 0.0867 +0 0.0557 +0 0.1661 +0 0.0689 +0 0.1260 +0 0.2284 +0 0.1423 +0 0.1160 +0 0.0684 +0 0.0555 +0 0.0682 +0 0.0608 +0 0.2791 +0 0.1284 +0 0.0816 +0 0.1084 +0 0.1618 +0 0.1592 +0 0.1191 +0 0.1611 +0 0.1350 +0 0.2625 +0 0.3131 +0 0.0562 +0 0.1185 +0 0.0522 +0 0.0856 +0 0.1776 +0 0.0560 +0 0.3386 +0 0.0523 +0 0.0794 +0 0.2135 +0 0.3231 +0 0.0509 +0 0.1165 +0 0.0697 +0 0.1534 +0 0.1797 +0 0.0548 +0 0.0629 +0 0.0604 +0 0.0776 +0 0.0298 +0 0.0389 +0 0.0675 +0 0.1021 +0 0.0719 +0 0.0486 +0 0.1776 +0 0.1111 +0 0.0885 +0 0.7269 +0 0.0988 +0 0.1007 +0 0.2030 +0 0.4429 +0 0.1008 +0 0.0909 +0 0.0834 +0 0.2623 +0 0.1954 +0 0.2024 +0 0.6937 +0 0.0431 +0 0.2065 +0 0.0810 +0 0.0577 +0 0.1020 +0 0.2277 +0 0.0580 +0 0.0586 +0 0.0891 +0 0.0916 +0 0.0470 +0 0.1437 +0 0.1389 +0 0.1396 +0 0.0622 +0 0.1876 +0 0.0529 +0 0.0903 +0 0.1480 +0 0.1894 +0 0.1411 +0 0.1168 +0 0.1839 +0 0.0805 +0 0.1001 +0 0.2141 +0 0.0808 +1 0.7926 +0 0.0922 +0 0.1082 +0 0.4663 +0 0.2709 +0 0.2248 +0 0.2328 +0 0.0913 +0 0.1816 +0 0.2815 +0 0.1612 +0 0.1253 +0 0.1041 +0 0.0477 +0 0.2985 +0 0.0615 +0 0.2613 +0 0.1862 +0 0.1102 +0 0.0623 +0 0.2063 +0 0.1396 +0 0.0596 +0 0.0442 +0 0.0570 +0 0.4419 +0 0.0885 +0 0.1197 +0 0.2098 +0 0.0675 +0 0.1115 +0 0.0896 +0 0.0892 +0 0.1043 +0 0.0554 +0 0.0939 +0 0.1261 +0 0.0383 +0 0.1249 +0 0.0930 +0 0.1175 +0 0.0395 +0 0.1347 +0 0.0667 +0 0.1663 +0 0.1501 +0 0.0561 +1 0.8395 +0 0.0359 +0 0.1631 +0 0.0591 +0 0.1233 +0 0.1287 +1 0.7803 +0 0.0669 +0 0.0591 +0 0.0693 +0 0.3237 +0 0.0653 +0 0.2509 +0 0.1658 +0 0.1152 +0 0.3646 +0 0.0786 +0 0.1009 +0 0.2235 +0 0.1082 +0 0.0684 +0 0.0950 +0 0.0714 +0 0.0760 +0 0.4873 +0 0.0460 +0 0.0759 +0 0.1984 +0 0.0906 +0 0.1956 +0 0.0907 +0 0.3072 +0 0.0494 +0 0.0940 +0 0.0600 +0 0.0619 +0 0.1723 +0 0.0510 +0 0.0674 +0 0.2806 +0 0.4016 +1 0.7543 +0 0.1552 +0 0.0718 +0 0.1058 +0 0.0611 +0 0.1090 +0 0.0531 +0 0.1251 +0 0.3986 +0 0.1083 +0 0.0409 +0 0.0436 +0 0.1647 +0 0.0473 +0 0.1530 +0 0.0516 +0 0.0392 +0 0.0939 +0 0.0683 +0 0.0385 +0 0.0863 +0 0.0593 +0 0.1012 +0 0.1018 +0 0.3034 +0 0.1543 +0 0.0806 +0 0.2163 +0 0.1838 +0 0.0633 +0 0.1656 +0 0.1386 +0 0.0520 +0 0.0348 +0 0.1979 +0 0.3326 +0 0.3789 +0 0.1961 +0 0.1435 +0 0.1616 +0 0.0626 +0 0.1201 +0 0.0483 +0 0.2800 +0 0.1037 +0 0.0327 +0 0.0810 +0 0.1084 +0 0.0766 +0 0.1168 +0 0.0423 +0 0.0464 +0 0.0439 +0 0.1534 +0 0.1687 +0 0.0966 +0 0.0982 +0 0.0988 +0 0.0601 +0 0.1594 +0 0.1004 +0 0.1211 +0 0.2797 +0 0.0947 +0 0.2452 +0 0.0719 +0 0.0743 +0 0.0666 +0 0.1474 +0 0.1231 +0 0.0960 +0 0.1063 +0 0.2167 +0 0.0346 +0 0.1396 +0 0.2340 +0 0.1228 +0 0.1064 +0 0.0500 +0 0.4103 +0 0.2228 +0 0.0888 +0 0.0876 +0 0.1103 +0 0.1417 +0 0.1083 +0 0.0469 +0 0.0705 +0 0.1393 +0 0.1959 +0 0.2194 +0 0.1436 +0 0.3206 +0 0.1710 +0 0.1096 +0 0.1085 +0 0.1955 +0 0.1309 +0 0.0892 +0 0.0933 +0 0.1366 +0 0.0758 +0 0.3791 +0 0.1000 +0 0.1155 +0 0.1030 +0 0.1226 +0 0.1949 +0 0.0887 +0 0.0961 +0 0.1075 +0 0.5504 +0 0.0783 +0 0.0698 +0 0.2841 +0 0.2194 +0 0.0788 +0 0.1242 +0 0.1076 +0 0.1316 +0 0.0539 +0 0.1086 +0 0.0666 +0 0.1176 +0 0.1033 +0 0.3913 +0 0.0702 +0 0.0686 +0 0.0744 +0 0.0898 +0 0.0462 +0 0.0792 +0 0.1648 +0 0.1001 +0 0.0363 +0 0.0595 +0 0.1745 +0 0.1058 +0 0.1642 +0 0.1099 +0 0.0846 +0 0.0865 +0 0.0704 +0 0.0746 +0 0.1403 +0 0.1551 +0 0.0834 +0 0.7317 +0 0.0827 +0 0.0523 +0 0.0669 +0 0.0563 +0 0.0791 +0 0.2111 +0 0.0386 +0 0.0626 +0 0.1719 +0 0.0823 +0 0.1243 +0 0.0881 +0 0.3662 +0 0.0793 +0 0.0511 +0 0.1253 +0 0.1084 +0 0.5644 +0 0.0572 +0 0.0522 +0 0.2547 +0 0.1366 +0 0.1282 +0 0.0770 +0 0.0686 +0 0.0882 +0 0.0913 +0 0.1788 +0 0.4506 +0 0.0880 +0 0.3008 +0 0.1286 +0 0.0337 +0 0.3153 +0 0.1267 +0 0.0845 +0 0.1250 +0 0.1147 +0 0.0714 +0 0.0827 +0 0.4096 +0 0.0655 +0 0.1769 +0 0.1992 +0 0.0752 +0 0.4324 +0 0.0929 +0 0.0945 +0 0.0972 +0 0.1298 +0 0.0516 +0 0.1373 +0 0.0672 +0 0.1545 +0 0.0888 +0 0.0672 +0 0.2910 +0 0.1273 +0 0.1942 +0 0.1830 +0 0.3420 +0 0.0809 +0 0.0951 +0 0.1244 +0 0.1119 +0 0.1485 +0 0.1372 +0 0.1822 +0 0.0628 +0 0.2292 +0 0.1543 +0 0.0829 +0 0.0891 +0 0.0907 +0 0.0997 +0 0.2079 +0 0.5803 +0 0.0638 +0 0.1838 +0 0.1538 +0 0.0838 +0 0.0732 +0 0.1606 +0 0.1026 +0 0.1421 +0 0.1720 +0 0.4243 +0 0.0887 +0 0.1642 +0 0.1679 +0 0.1126 +0 0.0475 +0 0.3195 +0 0.0957 +0 0.1569 +0 0.1719 +0 0.0746 +0 0.2064 +0 0.1754 +0 0.0462 +0 0.0447 +0 0.2770 +0 0.2390 +0 0.0951 +0 0.0992 +0 0.4624 +0 0.0902 +0 0.0964 +0 0.1177 +0 0.1734 +0 0.1047 +0 0.0459 +0 0.6474 +0 0.1062 +0 0.0683 +0 0.2625 +0 0.0893 +0 0.1108 +0 0.0480 +0 0.1473 +0 0.0953 +0 0.1250 +0 0.0653 +0 0.0694 +0 0.1649 +0 0.3393 +0 0.0810 +0 0.1453 +0 0.0944 +0 0.2408 +0 0.0996 +0 0.1512 +0 0.1706 +0 0.0491 +0 0.0947 +0 0.5684 +0 0.0687 +0 0.0328 +0 0.0645 +0 0.1005 +0 0.1192 +0 0.2677 +0 0.1364 +0 0.1055 +0 0.0421 +0 0.1199 +0 0.2071 +0 0.0378 +0 0.0592 +0 0.0852 +0 0.1244 +0 0.1218 +0 0.4350 +0 0.4198 +0 0.2059 +0 0.0286 +0 0.0870 +0 0.0842 +0 0.1954 +0 0.6490 +0 0.1335 +0 0.1262 +0 0.0791 +0 0.0495 +0 0.1649 +0 0.0592 +0 0.3611 +0 0.1088 +0 0.1041 +1 0.7867 +0 0.1304 +0 0.1337 +0 0.1214 +0 0.1363 +0 0.1677 +0 0.1472 +0 0.0751 +0 0.1014 +0 0.0519 +0 0.2787 +0 0.0545 +0 0.0818 +0 0.1480 +0 0.1977 +0 0.1200 +0 0.0530 +0 0.0374 +0 0.0726 +0 0.6190 +0 0.1306 +0 0.0809 +0 0.1356 +0 0.0774 +0 0.1097 +0 0.1023 +0 0.0951 +0 0.1315 +0 0.0669 +0 0.1759 +0 0.0855 +0 0.0773 +0 0.0879 +0 0.1329 +0 0.0571 +0 0.0886 +0 0.0934 +0 0.1737 +0 0.0437 +0 0.0740 +0 0.0640 +0 0.0851 +0 0.0430 +0 0.2461 +0 0.1819 +0 0.0458 +0 0.5149 +0 0.1317 +0 0.1778 +0 0.1955 +0 0.0808 +1 0.8163 +0 0.0683 +0 0.1125 +0 0.0566 +0 0.0748 +0 0.0793 +0 0.1248 +0 0.2216 +0 0.1556 +1 0.7507 +0 0.2291 +0 0.1929 +0 0.1354 +0 0.0839 +0 0.0685 +0 0.0696 +0 0.0533 +0 0.1002 +0 0.0468 +0 0.1158 +0 0.1255 +0 0.2466 +0 0.1695 +0 0.1936 +1 0.3405 +0 0.1887 +0 0.2195 +0 0.1501 +0 0.1549 +0 0.2274 +0 0.2457 +0 0.0866 +0 0.1768 +0 0.1695 +0 0.1624 +0 0.0535 +0 0.3018 +0 0.0827 +0 0.1970 +0 0.3465 +0 0.0591 +0 0.0782 +0 0.0669 +0 0.0445 +0 0.1452 +0 0.2244 +0 0.1008 +0 0.0678 +0 0.1343 +0 0.2652 +0 0.3113 +0 0.0719 +0 0.0961 +0 0.1317 +0 0.1149 +1 0.7928 +0 0.0691 +0 0.0657 +0 0.1080 +0 0.1639 +0 0.0840 +0 0.1590 +0 0.1251 +0 0.0815 +0 0.1479 +0 0.1571 +0 0.1022 +0 0.0930 +0 0.0961 +0 0.0799 +0 0.1533 +0 0.0950 +0 0.1818 +0 0.1940 +0 0.0637 +0 0.0494 +0 0.0357 +0 0.0775 +0 0.2288 +0 0.0534 +0 0.1539 +0 0.0431 +0 0.5380 +0 0.1503 +0 0.1354 +0 0.1173 +0 0.3111 +0 0.2481 +0 0.4934 +0 0.0765 +0 0.1569 +0 0.1135 +0 0.1155 +0 0.0970 +0 0.0869 +0 0.1634 +0 0.0403 +0 0.1875 +0 0.0714 +0 0.0511 +0 0.0863 +0 0.1133 +0 0.0907 +0 0.1802 +0 0.0627 +0 0.1094 +0 0.0907 +0 0.0673 +0 0.0670 +0 0.0725 +0 0.1927 +0 0.0585 +0 0.0897 +0 0.1124 +0 0.0932 +0 0.0726 +0 0.2204 +0 0.2922 +0 0.0821 +0 0.0838 +0 0.0803 +0 0.1134 +0 0.0830 +0 0.1963 +0 0.1349 +0 0.1329 +0 0.0696 +0 0.1777 +0 0.2031 +0 0.0513 +0 0.1074 +0 0.0670 +0 0.0925 +0 0.0630 +0 0.6634 +0 0.1240 +0 0.0719 +0 0.0796 +0 0.0529 +0 0.1745 +0 0.1932 +0 0.0965 +0 0.1342 +1 0.8134 +0 0.2763 +0 0.0809 +0 0.5797 +0 0.0618 +0 0.1061 +0 0.0538 +0 0.2354 +0 0.1540 +0 0.0895 +0 0.4502 +0 0.1289 +0 0.1021 +0 0.4113 +0 0.4388 +0 0.0827 +0 0.1347 +0 0.1158 +0 0.1221 +0 0.1337 +0 0.0887 +0 0.0768 +0 0.1565 +0 0.0861 +0 0.0708 +0 0.2081 +0 0.1838 +0 0.1049 +0 0.1175 +0 0.3143 +0 0.2616 +0 0.0597 +0 0.3233 +0 0.2881 +0 0.1896 +0 0.0931 +0 0.0574 +0 0.1715 +0 0.0789 +0 0.0355 +0 0.1305 +0 0.4193 +0 0.3584 +0 0.3453 +0 0.1955 +0 0.1496 +0 0.2936 +0 0.1135 +0 0.1208 +0 0.0608 +0 0.0540 +0 0.1145 +0 0.1664 +0 0.1087 +0 0.1334 +0 0.1507 +0 0.3501 +0 0.1021 +0 0.0680 +0 0.7324 +0 0.0694 +0 0.0748 +0 0.0943 +0 0.1499 +0 0.0648 +0 0.1078 +0 0.0917 +0 0.0838 +0 0.0721 +0 0.1275 +0 0.0710 +0 0.0700 +0 0.2072 +0 0.0522 +0 0.0977 +0 0.1547 +0 0.1840 +0 0.0813 +0 0.1248 +0 0.0982 +1 0.7629 +0 0.0999 +0 0.0507 +0 0.1124 +0 0.7084 +0 0.1432 +0 0.1156 +0 0.1571 +0 0.1372 +0 0.4410 +0 0.0892 +0 0.2724 +0 0.0778 +0 0.0618 +0 0.2478 +0 0.0806 +0 0.1247 +0 0.1121 +0 0.1015 +0 0.0936 +0 0.1080 +0 0.0372 +0 0.1111 +0 0.1933 +0 0.1291 +0 0.1830 +0 0.0788 +0 0.0997 +0 0.0509 +0 0.0803 +0 0.2986 +0 0.4058 +0 0.2015 +0 0.1295 +0 0.2826 +0 0.1402 +0 0.2382 +0 0.2201 +0 0.4395 +0 0.1164 +0 0.2161 +0 0.0858 +0 0.1186 +0 0.3349 +0 0.0685 +0 0.0557 +0 0.0572 +0 0.6852 +1 0.8240 +0 0.0597 +0 0.0987 +0 0.0848 +1 0.7788 +1 0.7510 +0 0.1672 +0 0.2089 +0 0.0557 +0 0.1160 +0 0.0591 +0 0.0450 +0 0.0942 +0 0.0864 +0 0.1167 +0 0.1498 +0 0.1450 +0 0.0631 +0 0.2340 +0 0.0533 +0 0.1915 +0 0.0695 +0 0.1527 +0 0.1631 +0 0.1142 +0 0.1842 +0 0.0888 +0 0.0669 +0 0.1813 +0 0.2195 +0 0.1571 +0 0.1262 +0 0.0666 +0 0.2335 +0 0.0622 +0 0.0406 +0 0.0551 +0 0.0950 +0 0.0714 +0 0.1832 +0 0.1348 +0 0.1098 +0 0.1678 +0 0.0605 +0 0.0537 +0 0.1019 +0 0.3541 +0 0.1194 +0 0.1044 +0 0.1455 +0 0.1194 +0 0.2815 +0 0.1142 +0 0.1686 +0 0.0696 +0 0.1159 +0 0.0996 +0 0.2359 +0 0.2114 +0 0.0412 +0 0.0889 +0 0.0661 +0 0.0572 +0 0.0584 +0 0.0529 +0 0.0644 +0 0.0761 +0 0.4532 +0 0.0662 +0 0.0834 +0 0.1318 +0 0.3326 +0 0.0904 +0 0.2500 +0 0.1051 +0 0.0617 +0 0.0541 +0 0.0740 +0 0.0757 +0 0.1122 +0 0.0726 +0 0.0756 +0 0.1684 +0 0.0747 +0 0.0381 +0 0.0799 +0 0.1415 +0 0.1004 +0 0.0906 +0 0.1411 +0 0.0321 +0 0.3599 +0 0.1011 +0 0.0971 +0 0.1356 +0 0.0905 +0 0.0551 +0 0.1097 +0 0.1180 +0 0.1343 +0 0.0796 +1 0.7979 +0 0.1239 +0 0.0612 +0 0.1228 +0 0.1960 +0 0.0912 +0 0.1246 +0 0.1202 +0 0.0633 +0 0.0792 +0 0.0847 +0 0.0787 +0 0.0365 +0 0.0688 +0 0.1348 +0 0.0821 +0 0.1273 +0 0.3401 +0 0.0574 +0 0.0892 +0 0.1017 +0 0.2828 +0 0.0618 +0 0.2897 +0 0.0774 +0 0.0938 +0 0.0951 +0 0.0329 +0 0.1237 +0 0.2098 +0 0.1387 +0 0.1587 +0 0.0977 +0 0.0667 +0 0.0990 +0 0.0600 +0 0.1407 +0 0.2798 +0 0.0561 +0 0.0863 +0 0.4786 +0 0.0799 +0 0.1218 +0 0.1378 +0 0.0569 +0 0.2667 +0 0.1149 +0 0.1794 +0 0.0747 +0 0.1554 +0 0.0526 +0 0.0392 +0 0.0509 +0 0.2474 +0 0.0916 +0 0.1263 +0 0.1932 +0 0.5450 +0 0.0723 +0 0.1222 +0 0.1081 +0 0.0709 +0 0.1499 +0 0.0790 +0 0.1227 +0 0.0549 +0 0.0319 +0 0.0687 +0 0.0450 +0 0.0669 +0 0.0348 +0 0.3079 +0 0.2700 +0 0.2411 +0 0.1787 +0 0.0694 +0 0.0780 +0 0.2544 +0 0.5314 +0 0.1231 +0 0.1427 +0 0.0579 +0 0.0659 +0 0.0798 +0 0.2019 +0 0.0788 +0 0.4240 +0 0.1141 +0 0.1260 +0 0.0828 +0 0.0985 +0 0.2114 +0 0.1511 +0 0.0867 +0 0.1169 +0 0.0944 +0 0.0688 +0 0.1740 +0 0.0897 +0 0.0594 +0 0.0597 +0 0.2149 +0 0.1436 +0 0.0665 +0 0.1871 +0 0.0857 +0 0.0660 +0 0.5832 +0 0.1345 +0 0.0489 +0 0.1762 +0 0.2035 +0 0.1485 +0 0.2224 +0 0.1163 +0 0.0781 +0 0.1030 +0 0.1257 +0 0.7256 +0 0.0716 +0 0.1129 +0 0.1933 +0 0.0404 +0 0.1041 +0 0.0963 +0 0.1632 +0 0.1304 +0 0.2583 +0 0.1104 +0 0.0615 +0 0.1610 +0 0.0940 +0 0.0786 +0 0.1035 +0 0.1405 +0 0.0410 +0 0.1710 +0 0.0946 +0 0.2199 +0 0.2300 +0 0.0571 +0 0.1359 +0 0.0518 +0 0.0842 +0 0.1077 +0 0.2217 +0 0.1607 +0 0.0855 +0 0.0549 +0 0.2169 +0 0.1780 +0 0.1097 +0 0.2027 +0 0.1968 +0 0.1780 +0 0.2267 +0 0.2507 +0 0.1037 +0 0.0912 +0 0.1671 +0 0.1744 +0 0.1923 +0 0.0677 +0 0.1484 +0 0.1025 +0 0.0484 +0 0.1253 +0 0.1084 +0 0.4046 +0 0.1250 +0 0.1315 +0 0.1114 +0 0.1673 +0 0.1168 +0 0.1582 +0 0.1066 +0 0.1291 +0 0.0432 +0 0.1610 +0 0.1064 +0 0.1096 +0 0.1434 +0 0.2028 +0 0.0627 +0 0.1424 +0 0.0756 +0 0.1008 +0 0.0987 +0 0.1037 +0 0.0770 +0 0.4704 +0 0.0580 +0 0.1354 +0 0.1037 +0 0.1283 +0 0.1025 +0 0.2041 +0 0.0465 +0 0.0635 +0 0.0915 +0 0.2008 +0 0.0423 +0 0.0444 +0 0.1671 +0 0.2460 +0 0.1099 +0 0.1622 +0 0.1216 +0 0.1636 +0 0.0644 +0 0.1033 +0 0.0485 +0 0.0750 +0 0.0813 +0 0.5510 +0 0.0512 +0 0.0866 +0 0.1620 +0 0.2411 +0 0.1104 +0 0.1200 +0 0.0819 +0 0.0426 +0 0.1576 +0 0.1564 +0 0.2206 +0 0.5718 +0 0.1055 +0 0.0711 +0 0.2537 +0 0.6424 +0 0.3944 +0 0.0456 +0 0.0961 +0 0.0704 +0 0.0864 +0 0.1308 +0 0.6807 +0 0.0591 +0 0.0999 +0 0.0815 +0 0.2116 +0 0.1113 +0 0.0614 +0 0.0844 +1 0.7584 +0 0.0927 +0 0.0350 +0 0.0662 +0 0.1980 +0 0.0372 +0 0.0424 +0 0.0508 +0 0.5808 +0 0.0910 +0 0.0685 +0 0.2087 +0 0.2385 +0 0.4018 +0 0.0980 +0 0.0996 +0 0.0927 +0 0.2444 +0 0.0856 +0 0.2013 +0 0.2215 +0 0.0932 +0 0.0565 +0 0.2401 +0 0.0679 +0 0.1271 +0 0.1863 +0 0.2082 +0 0.2151 +0 0.5837 +0 0.0737 +0 0.1566 +0 0.0583 +0 0.0997 +1 0.7672 +0 0.0915 +0 0.0766 +0 0.3152 +0 0.1742 +0 0.1386 +0 0.3327 +0 0.2946 +0 0.0904 +0 0.0582 +0 0.1168 +0 0.1308 +0 0.5696 +0 0.1144 +0 0.1240 +0 0.0901 +0 0.0533 +0 0.0645 +0 0.0722 +0 0.3834 +0 0.1355 +0 0.7121 +0 0.1507 +0 0.2298 +0 0.1576 +0 0.6204 +0 0.0747 +0 0.1755 +0 0.0644 +0 0.0584 +0 0.0729 +0 0.1211 +0 0.1351 +0 0.1273 +0 0.0992 +0 0.1563 +0 0.1283 +0 0.2417 +0 0.0527 +0 0.0591 +0 0.0722 +0 0.1005 +0 0.1171 +0 0.2594 +0 0.0542 +0 0.0683 +0 0.1127 +0 0.1124 +0 0.0520 +0 0.1269 +0 0.1745 +0 0.2149 +0 0.0470 +1 0.7826 +0 0.0761 +0 0.0683 +0 0.3205 +0 0.2667 +0 0.1135 +0 0.0619 +0 0.1342 +0 0.5387 +0 0.0510 +0 0.0713 +0 0.1176 +0 0.0636 +0 0.0624 +0 0.0856 +0 0.0944 +0 0.2511 +0 0.1025 +0 0.1747 +0 0.0398 +0 0.1866 +0 0.1893 +0 0.1593 +0 0.0609 +0 0.1144 +0 0.0570 +0 0.0523 +0 0.1393 +0 0.0843 +0 0.1528 +0 0.2046 +0 0.0598 +0 0.1104 +0 0.1221 +0 0.0415 +0 0.2755 +0 0.1006 +0 0.1006 +0 0.0899 +0 0.0735 +0 0.1334 +0 0.1776 +0 0.0926 +0 0.2500 +0 0.0793 +0 0.1260 +0 0.1284 +0 0.0655 +0 0.0544 +0 0.0907 +0 0.0650 +0 0.1919 +0 0.1047 +0 0.1411 +0 0.1149 +0 0.0757 +0 0.1101 +0 0.7176 +0 0.1129 +0 0.0736 +0 0.0443 +0 0.0766 +0 0.1783 +0 0.4535 +0 0.0511 +0 0.0435 +0 0.3011 +0 0.1529 +0 0.0540 +0 0.0645 +0 0.1266 +0 0.1145 +1 0.7899 +0 0.0415 +0 0.2519 +0 0.1205 +0 0.0692 +0 0.1944 +0 0.1318 +0 0.0475 +0 0.2255 +0 0.0827 +0 0.0765 +0 0.1934 +0 0.0574 +0 0.1033 +0 0.1820 +0 0.1336 +0 0.1890 +0 0.2361 +0 0.0477 +0 0.0912 +0 0.0566 +0 0.1166 +0 0.0411 +0 0.2126 +0 0.1184 +0 0.0427 +0 0.6988 +0 0.2355 +0 0.0618 +0 0.0669 +0 0.6859 +0 0.0746 +0 0.0602 +0 0.0808 +0 0.2515 +0 0.5356 +0 0.2898 +0 0.1443 +0 0.0506 +0 0.1026 +0 0.0802 +0 0.0612 +0 0.3030 +0 0.2772 +1 0.8136 +0 0.0736 +0 0.0708 +0 0.1459 +0 0.0617 +0 0.1547 +0 0.5152 +0 0.2942 +0 0.1091 +0 0.0807 +0 0.0861 +0 0.2022 +1 0.7574 +0 0.0788 +0 0.2664 +0 0.0718 +0 0.0505 +0 0.3815 +0 0.0827 +0 0.3122 +0 0.0651 +0 0.0504 +0 0.0767 +0 0.1115 +0 0.2970 +0 0.2081 +0 0.1273 +0 0.1136 +0 0.0644 +0 0.1151 +0 0.1395 +0 0.2166 +0 0.1029 +0 0.1521 +0 0.1004 +0 0.3537 +0 0.1091 +0 0.0827 +0 0.1142 +0 0.0789 +0 0.0949 +0 0.2194 +0 0.0463 +0 0.0921 +0 0.0803 +0 0.1220 +0 0.1173 +0 0.1175 +0 0.0664 +0 0.1548 +0 0.0851 +0 0.0617 +0 0.6470 +0 0.1204 +0 0.0307 +0 0.1842 +0 0.1247 +0 0.0796 +0 0.1661 +0 0.1482 +0 0.1545 +0 0.1887 +0 0.1067 +0 0.0773 +0 0.0347 +0 0.0924 +0 0.1817 +0 0.1766 +0 0.0545 +0 0.0859 +0 0.7363 +0 0.1405 +0 0.1008 +0 0.0761 +0 0.1185 +0 0.0679 +0 0.1619 +0 0.1175 +0 0.1353 +0 0.0672 +0 0.0563 +0 0.1424 +0 0.0421 +0 0.3461 +0 0.0478 +0 0.0621 +0 0.0808 +0 0.3219 +0 0.1080 +0 0.2387 +0 0.0555 +0 0.7121 +1 0.8414 +0 0.0584 +0 0.1368 +0 0.0447 +0 0.1723 +0 0.0745 +0 0.1741 +0 0.0736 +0 0.0787 +0 0.0556 +0 0.1336 +0 0.1093 +0 0.1305 +0 0.0519 +0 0.3674 +0 0.0769 +0 0.0748 +0 0.0752 +0 0.2080 +0 0.0878 +0 0.0914 +0 0.3498 +0 0.1159 +0 0.0732 +0 0.1365 +0 0.2173 +0 0.1855 +0 0.0859 +0 0.1202 +0 0.1261 +0 0.2596 +0 0.0568 +0 0.0924 +0 0.1664 +0 0.1197 +0 0.0547 +0 0.0953 +0 0.0776 +0 0.1432 +0 0.1380 +0 0.0765 +0 0.1644 +0 0.0438 +0 0.1350 +0 0.2394 +0 0.1012 +0 0.1413 +0 0.1224 +0 0.2625 +0 0.2431 +0 0.0868 +0 0.1152 +0 0.0529 +0 0.0836 +0 0.1022 +0 0.1189 +0 0.5498 +0 0.1063 +0 0.0744 +0 0.1851 +0 0.1496 +0 0.0610 +0 0.1279 +0 0.1170 +0 0.0719 +0 0.0938 +0 0.1652 +0 0.3189 +0 0.1451 +0 0.2131 +0 0.6020 +0 0.2216 +0 0.0616 +0 0.2302 +0 0.2611 +0 0.1204 +0 0.1805 +0 0.7321 +0 0.0911 +0 0.0815 +0 0.5765 +0 0.3379 +0 0.0426 +1 0.8087 +0 0.1723 +0 0.0817 +0 0.1005 +0 0.1554 +0 0.1519 +0 0.2700 +0 0.1219 +0 0.0845 +0 0.1641 +0 0.2670 +0 0.0484 +0 0.0689 +0 0.0886 +0 0.2335 +0 0.1228 +0 0.0727 +0 0.0809 +0 0.0781 +0 0.0452 +0 0.0648 +0 0.1460 +0 0.7497 +0 0.0860 +0 0.0441 +0 0.2174 +0 0.0387 +0 0.0882 +0 0.0613 +0 0.1002 +0 0.0726 +0 0.4208 +0 0.2675 +0 0.0767 +0 0.1024 +0 0.1222 +0 0.0628 +0 0.0426 +0 0.0573 +0 0.2722 +0 0.0930 +0 0.1636 +0 0.1286 +0 0.2728 +0 0.0892 +0 0.0861 +0 0.1844 +0 0.2251 +0 0.0948 +0 0.0634 +0 0.2579 +0 0.0979 +0 0.0794 +0 0.1003 +0 0.2287 +0 0.2208 +0 0.2223 +0 0.1551 +0 0.4910 +0 0.0602 +0 0.0777 +0 0.0736 +1 0.8452 +0 0.0452 +0 0.2103 +0 0.1651 +0 0.1003 +0 0.0610 +0 0.4397 +0 0.2713 +0 0.1292 +0 0.0730 +0 0.1952 +0 0.1350 +0 0.0559 +0 0.1210 +0 0.1442 +0 0.2377 +0 0.0815 +0 0.0292 +0 0.1704 +0 0.0611 +0 0.2044 +0 0.1009 +0 0.0533 +0 0.1751 +0 0.1565 +0 0.1566 +0 0.4047 +0 0.1506 +0 0.0718 +0 0.0831 +0 0.1088 +0 0.6902 +0 0.0669 +0 0.1808 +0 0.0638 +0 0.2128 +0 0.0950 +0 0.5483 +0 0.0436 +0 0.0955 +0 0.1399 +0 0.0858 +0 0.1859 +0 0.1151 +0 0.1217 +0 0.2929 +0 0.0676 +0 0.2866 +0 0.0858 +0 0.1111 +0 0.0551 +0 0.1065 +0 0.0561 +0 0.0681 +0 0.1178 +0 0.1174 +0 0.1453 +0 0.1009 +0 0.1270 +0 0.1023 +0 0.0805 +0 0.0823 +0 0.1422 +0 0.0337 +0 0.0402 +0 0.2374 +0 0.0908 +0 0.5513 +0 0.0674 +0 0.2713 +0 0.0671 +0 0.1094 +0 0.0409 +0 0.0421 +0 0.0937 +0 0.0793 +0 0.0748 +0 0.0752 +0 0.1182 +0 0.0354 +0 0.0872 +0 0.1641 +0 0.0805 +0 0.0387 +0 0.0789 +0 0.5424 +0 0.5533 +0 0.0860 +0 0.0788 +0 0.1262 +0 0.1016 +0 0.1868 +0 0.4052 +0 0.0954 +0 0.0755 +0 0.1353 +0 0.1231 +0 0.3117 +0 0.0435 +0 0.0542 +0 0.1764 +0 0.0994 +0 0.0763 +0 0.0815 +0 0.1083 +0 0.4960 +0 0.1022 +0 0.1345 +0 0.0593 +0 0.1421 +0 0.1509 +0 0.1082 +0 0.0913 +0 0.1017 +0 0.1352 +0 0.0755 +0 0.0654 +0 0.0864 +0 0.0539 +0 0.1401 +0 0.1361 +0 0.0801 +0 0.1140 +0 0.0869 +0 0.0631 +0 0.2110 +0 0.1958 +0 0.2148 +0 0.0455 +0 0.1192 +0 0.0598 +0 0.1165 +0 0.0667 +0 0.0454 +0 0.0977 +0 0.1891 +0 0.0650 +0 0.1109 +0 0.1609 +0 0.0986 +0 0.1168 +0 0.1265 +0 0.0584 +0 0.3493 +0 0.1336 +0 0.0652 +0 0.1048 +0 0.1695 +0 0.5155 +0 0.0973 +0 0.0544 +0 0.0868 +0 0.1130 +0 0.1821 +0 0.1140 +0 0.0657 +0 0.0770 +0 0.6748 +0 0.0625 +0 0.1130 +0 0.0614 +0 0.2024 +0 0.0934 +0 0.1450 +0 0.1508 +0 0.1599 +0 0.2931 +0 0.0922 +0 0.0961 +0 0.1119 +0 0.0614 +0 0.2825 +0 0.0601 +0 0.1585 +0 0.1216 +0 0.0753 +0 0.0904 +0 0.0718 +0 0.1297 +0 0.0822 +0 0.0889 +0 0.0748 +0 0.2356 +0 0.0992 +0 0.1763 +0 0.0425 +0 0.3081 +0 0.0662 +0 0.1130 +0 0.0850 +0 0.0718 +0 0.1199 +0 0.0691 +0 0.1434 +0 0.3446 +0 0.0609 +0 0.0591 +0 0.0604 +0 0.2028 +0 0.0795 +0 0.0734 +0 0.2554 +0 0.0925 +0 0.1529 +0 0.2659 +0 0.0686 +0 0.1043 +0 0.1052 +0 0.0410 +0 0.0412 +0 0.1108 +0 0.0746 +0 0.1656 +0 0.0490 +0 0.0657 +0 0.1375 +0 0.0910 +0 0.0890 +0 0.3381 +0 0.1299 +0 0.1292 +0 0.2934 +0 0.0580 +0 0.0956 +0 0.0409 +0 0.2544 +0 0.0702 +0 0.1076 +0 0.0735 +0 0.1193 +0 0.1203 +0 0.0579 +0 0.1139 +0 0.5811 +0 0.1964 +0 0.0668 +0 0.1596 +0 0.1170 +0 0.2393 +0 0.0848 +0 0.0929 +0 0.0735 +0 0.0681 +0 0.0957 +0 0.1595 +0 0.0578 +0 0.0551 +0 0.0634 +0 0.3555 +0 0.0438 +0 0.0830 +0 0.1527 +0 0.1782 +0 0.0897 +0 0.5255 +0 0.1185 +0 0.0951 +0 0.0540 +0 0.0704 +0 0.0860 +1 0.8030 +0 0.1491 +0 0.0901 +0 0.0654 +0 0.0774 +0 0.1884 +0 0.1737 +0 0.1858 +0 0.1525 +0 0.2862 +0 0.0776 +0 0.1998 +0 0.0777 +0 0.0368 +0 0.2205 +0 0.0957 +0 0.1171 +1 0.8546 +0 0.0952 +0 0.1978 +0 0.1257 +0 0.0476 +0 0.1122 +0 0.3504 +1 0.8585 +0 0.3691 +0 0.0989 +0 0.0433 +0 0.1462 +0 0.2103 +0 0.0595 +0 0.7487 +0 0.0372 +0 0.1107 +0 0.1222 +0 0.6548 +0 0.1054 +0 0.0679 +0 0.1519 +0 0.0617 +0 0.1359 +0 0.0445 +0 0.0875 +0 0.2325 +0 0.1185 +0 0.0554 +0 0.0661 +0 0.0830 +0 0.0678 +0 0.0561 +0 0.1521 +0 0.0605 +0 0.0427 +0 0.1290 +0 0.3068 +0 0.1753 +0 0.0741 +0 0.3501 +0 0.0860 +0 0.0898 +0 0.1716 +0 0.0537 +0 0.0794 +0 0.3103 +0 0.0588 +0 0.1483 +0 0.1403 +0 0.0474 +1 0.8470 +0 0.0680 +0 0.0936 +0 0.0622 +0 0.2110 +0 0.0556 +0 0.0592 +0 0.2091 +0 0.1011 +0 0.0752 +0 0.0689 +0 0.0871 +0 0.1857 +0 0.1176 +0 0.1129 +0 0.0865 +0 0.0532 +1 0.3060 +0 0.1321 +0 0.0462 +0 0.2632 +0 0.1499 +0 0.0699 +0 0.1291 +0 0.0812 +0 0.1465 +0 0.1379 +0 0.1396 +0 0.0814 +0 0.0591 +0 0.1558 +0 0.6251 +0 0.3211 +0 0.0516 +0 0.2372 +0 0.1069 +1 0.8687 +0 0.0916 +0 0.1298 +0 0.0983 +0 0.1119 +0 0.1062 +0 0.2307 +0 0.0926 +0 0.0940 +0 0.1251 +0 0.1133 +0 0.1005 +0 0.2187 +0 0.0855 +0 0.1367 +0 0.1154 +0 0.0661 +0 0.5234 +0 0.0800 +0 0.1047 +0 0.0530 +0 0.1921 +0 0.0393 +0 0.1551 +0 0.0927 +0 0.0820 +0 0.0757 +0 0.1131 +0 0.0895 +0 0.2991 +0 0.6881 +0 0.1781 +0 0.1020 +0 0.0657 +0 0.1705 +0 0.0862 +0 0.1645 +0 0.1083 +0 0.3165 +0 0.0492 +0 0.0961 +0 0.6250 +0 0.0898 +0 0.0805 +0 0.1441 +0 0.3325 +0 0.0803 +0 0.1377 +0 0.0905 +0 0.1997 +0 0.0726 +0 0.0678 +0 0.1795 +0 0.2561 +0 0.1622 +0 0.2853 +0 0.0712 +0 0.0740 +0 0.1285 +0 0.1013 +0 0.0812 +0 0.1295 +0 0.6508 +0 0.0576 +0 0.1379 +0 0.0644 +0 0.1277 +0 0.0932 +0 0.0683 +0 0.1194 +0 0.1919 +0 0.0847 +0 0.0503 +0 0.1739 +0 0.0457 +0 0.0641 +0 0.3325 +0 0.2132 +0 0.2590 +0 0.0734 +0 0.0928 +0 0.2231 +0 0.0497 +0 0.2770 +0 0.2140 +0 0.1321 +0 0.0438 +0 0.0810 +0 0.1136 +0 0.0943 +0 0.0535 +0 0.0571 +0 0.2459 +0 0.0540 +0 0.1177 +0 0.0679 +0 0.0545 +0 0.0797 +0 0.5229 +0 0.0790 +0 0.0583 +0 0.0553 +0 0.1019 +0 0.2104 +0 0.0598 +0 0.0713 +0 0.0924 +0 0.0618 +0 0.0415 +0 0.0522 +0 0.1208 +0 0.1492 +0 0.1140 +0 0.0820 +0 0.1982 +0 0.1022 +0 0.1173 +0 0.1109 +0 0.1350 +0 0.1199 +0 0.0982 +0 0.1154 +0 0.1172 +0 0.0404 +0 0.0853 +0 0.0578 +1 0.7711 +0 0.0578 +0 0.1417 +0 0.0609 +0 0.3305 +0 0.0674 +0 0.0568 +0 0.0513 +0 0.1106 +0 0.0642 +0 0.1877 +0 0.0955 +0 0.0720 +0 0.1014 +0 0.1393 +0 0.0777 +0 0.1371 +0 0.1072 +0 0.1470 +0 0.0743 +0 0.0726 +0 0.0743 +0 0.1234 +0 0.3493 +0 0.1519 +0 0.1822 +0 0.0656 +0 0.0432 +0 0.1373 +0 0.1339 +0 0.1280 +0 0.3073 +0 0.1481 +0 0.1378 +0 0.1134 +0 0.0876 +0 0.0746 +0 0.1610 +0 0.1588 +0 0.0683 +0 0.1390 +0 0.1113 +0 0.0670 +0 0.0808 +0 0.0982 +0 0.0637 +0 0.0563 +0 0.2180 +0 0.0554 +0 0.1498 +0 0.1922 +0 0.0674 +0 0.0371 +0 0.0330 +0 0.1309 +0 0.0869 +0 0.0687 +0 0.1103 +0 0.1269 +0 0.0604 +0 0.1101 +0 0.0664 +0 0.0716 +0 0.1608 +0 0.6918 +0 0.0892 +0 0.0726 +0 0.0933 +0 0.0476 +0 0.7367 +0 0.0815 +0 0.0664 +0 0.1046 +0 0.0758 +0 0.6856 +0 0.0690 +0 0.1571 +0 0.2665 +0 0.0698 +0 0.2376 +0 0.0974 +0 0.0704 +0 0.0743 +0 0.1107 +0 0.2413 +0 0.3103 +0 0.0775 +0 0.0583 +0 0.1957 +0 0.0532 +0 0.1213 +0 0.0890 +0 0.0910 +1 0.8581 +0 0.0756 +0 0.0826 +0 0.3747 +0 0.1653 +0 0.1916 +0 0.2386 +0 0.2099 +0 0.1133 +0 0.1439 +0 0.1193 +0 0.1318 +0 0.1076 +0 0.1467 +0 0.0682 +0 0.3191 +0 0.1112 +0 0.5487 +0 0.0806 +0 0.0889 +0 0.3657 +0 0.2280 +0 0.0534 +0 0.0906 +0 0.0603 +0 0.0803 +0 0.0514 +0 0.0874 +0 0.1145 +0 0.0636 +0 0.5572 +0 0.0671 +0 0.0595 +1 0.8591 +0 0.0676 +0 0.1003 +0 0.0402 +0 0.4475 +0 0.1191 +0 0.1069 +0 0.0548 +0 0.0967 +0 0.2842 +0 0.1099 +0 0.1535 +0 0.1045 +0 0.1030 +0 0.0805 +0 0.0699 +0 0.1120 +0 0.0635 +0 0.1329 +0 0.0592 +0 0.0968 +0 0.2160 +0 0.1079 +0 0.0470 +0 0.0762 +0 0.0928 +0 0.0589 +0 0.0566 +0 0.0991 +0 0.0543 +0 0.1696 +0 0.2403 +0 0.1329 +0 0.1544 +0 0.0710 +0 0.0441 +0 0.2082 +0 0.1405 +0 0.3412 +0 0.0685 +0 0.0560 +0 0.0968 +0 0.6964 +0 0.1812 +0 0.1500 +0 0.1109 +0 0.1386 +0 0.2304 +0 0.2171 +0 0.0910 +0 0.0883 +0 0.0866 +0 0.1019 +0 0.0825 +0 0.1814 +0 0.0964 +0 0.0881 +0 0.0929 +0 0.0584 +0 0.0772 +0 0.1260 +0 0.1014 +0 0.0357 +0 0.0627 +0 0.1193 +0 0.0876 +0 0.1598 +0 0.0915 +0 0.1816 +0 0.0426 +0 0.5556 +0 0.0699 +0 0.2320 +0 0.0972 +0 0.1547 +0 0.0998 +0 0.0563 +0 0.1259 +1 0.7510 +0 0.3446 +0 0.1088 +0 0.1856 +0 0.0741 +0 0.1259 +0 0.1076 +0 0.0805 +0 0.0479 +0 0.0666 +0 0.1765 +0 0.0799 +0 0.0732 +0 0.0778 +0 0.0750 +0 0.0635 +0 0.0737 +0 0.1014 +0 0.1209 +0 0.1170 +1 0.8230 +0 0.1201 +0 0.2527 +0 0.0637 +0 0.1151 +0 0.2444 +0 0.6828 +0 0.2036 +0 0.2940 +0 0.1089 +0 0.1414 +0 0.0914 +0 0.0941 +0 0.1431 +0 0.0709 +0 0.0831 +0 0.0572 +0 0.1931 +0 0.0846 +0 0.0538 +0 0.3131 +0 0.2012 +0 0.0790 +0 0.0649 +0 0.6748 +0 0.1109 +0 0.0589 +0 0.0937 +0 0.0331 +0 0.0842 +0 0.0784 +1 0.8067 +0 0.2277 +0 0.0828 +0 0.5756 +0 0.2767 +0 0.0490 +0 0.1098 +0 0.0598 +0 0.2010 +0 0.1259 +0 0.1382 +0 0.0464 +0 0.0695 +0 0.2175 +0 0.0691 +0 0.0631 +0 0.1710 +0 0.1741 +0 0.1171 +0 0.0604 +0 0.0557 +0 0.0948 +0 0.1691 +0 0.0481 +0 0.0973 +0 0.0825 +0 0.3242 +0 0.1262 +0 0.1242 +0 0.0756 +0 0.0936 +0 0.2780 +0 0.1489 +0 0.0881 +0 0.0646 +0 0.1380 +0 0.1970 +0 0.1079 +0 0.0878 +0 0.0699 +0 0.1262 +0 0.0479 +0 0.0802 +0 0.0513 +0 0.2306 +0 0.0752 +0 0.1283 +0 0.1217 +0 0.1088 +0 0.0696 +0 0.1155 +0 0.0543 +0 0.2344 +0 0.1265 +0 0.4917 +0 0.0625 +0 0.0777 +0 0.0736 +0 0.0481 +0 0.0628 +0 0.0655 +0 0.0695 +0 0.1420 +0 0.3465 +0 0.0774 +0 0.0722 +0 0.1160 +0 0.3448 +0 0.1495 +0 0.6869 +0 0.1406 +0 0.1498 +0 0.0645 +0 0.0978 +0 0.2972 +0 0.1577 +0 0.0870 +0 0.2162 +0 0.1066 +0 0.0504 +0 0.0891 +0 0.0354 +0 0.0650 +0 0.3891 +0 0.0506 +0 0.0970 +0 0.0836 +0 0.1294 +0 0.0842 +0 0.1142 +0 0.0745 +0 0.0596 +0 0.2136 +0 0.0729 +0 0.0855 +0 0.1463 +0 0.0634 +0 0.0901 +0 0.3619 +0 0.0810 +0 0.0909 +0 0.3866 +0 0.3097 +0 0.1430 +0 0.7487 +0 0.2497 +0 0.1204 +0 0.0874 +0 0.1158 +0 0.0563 +0 0.0503 +0 0.0498 +0 0.0363 +0 0.0606 +0 0.0885 +0 0.2014 +0 0.7367 +0 0.1150 +0 0.1200 +0 0.0920 +0 0.0724 +0 0.2857 +0 0.0570 +0 0.3464 +0 0.0625 +0 0.1401 +0 0.0500 +0 0.1469 +0 0.1086 +0 0.1724 +0 0.0371 +0 0.4306 +0 0.0713 +0 0.3890 +0 0.0692 +0 0.2017 +0 0.1068 +0 0.1148 +0 0.1376 +0 0.0780 +0 0.0499 +0 0.0675 +0 0.0504 +0 0.0949 +0 0.0429 +0 0.1680 +0 0.0972 +0 0.2129 +0 0.1334 +0 0.1354 +0 0.0654 +0 0.0886 +0 0.1295 +0 0.2541 +0 0.0724 +0 0.1657 +0 0.0923 +0 0.1179 +0 0.0505 +0 0.1010 +0 0.2637 +0 0.0928 +0 0.0576 +0 0.1338 +0 0.0847 +0 0.1162 +0 0.2382 +0 0.7067 +0 0.0723 +0 0.0698 +0 0.0746 +0 0.1795 +0 0.3701 +0 0.0503 +0 0.2062 +0 0.0607 +0 0.2836 +0 0.0403 +0 0.1927 +0 0.1036 +0 0.1269 +0 0.3385 +0 0.0470 +0 0.0719 +0 0.0633 +0 0.7402 +0 0.1126 +0 0.2829 +0 0.2545 +0 0.0739 +0 0.7013 +0 0.5159 +0 0.1115 +0 0.6223 +0 0.0632 +0 0.1369 +0 0.1185 +0 0.1354 +0 0.1075 +0 0.0678 +0 0.1255 +0 0.0917 +0 0.0881 +0 0.0921 +0 0.0630 +0 0.1220 +0 0.0752 +0 0.0982 +0 0.1369 +0 0.0750 +0 0.1188 +0 0.3515 +0 0.1605 +0 0.1176 +0 0.0979 +0 0.2549 +0 0.1155 +0 0.1864 +0 0.0666 +0 0.1069 +0 0.1719 +0 0.1132 +0 0.2538 +0 0.0702 +0 0.0595 +0 0.0694 +0 0.1097 +0 0.1284 +0 0.2680 +0 0.0850 +0 0.1077 +0 0.1436 +0 0.1570 +0 0.3408 +0 0.1267 +0 0.0551 +0 0.1616 +0 0.0470 +0 0.0357 +0 0.1572 +0 0.0697 +0 0.1187 +0 0.0609 +0 0.0493 +0 0.2423 +0 0.2421 +0 0.1779 +0 0.0914 +0 0.3006 +0 0.0762 +0 0.1336 +0 0.0744 +0 0.2364 +0 0.1974 +0 0.1833 +0 0.1078 +0 0.6328 +0 0.0907 +0 0.0608 +0 0.1161 +0 0.0558 +0 0.1368 +0 0.0355 +0 0.1724 +0 0.0386 +0 0.1346 +0 0.1887 +0 0.2295 +0 0.0811 +0 0.2485 +0 0.0931 +0 0.2213 +0 0.2575 +0 0.1030 +0 0.1667 +0 0.0734 +0 0.2499 +0 0.0581 +0 0.1580 +0 0.0915 +0 0.0794 +0 0.0910 +0 0.1758 +0 0.1427 +0 0.0455 +0 0.0588 +0 0.0838 +0 0.3832 +0 0.0654 +0 0.0538 +0 0.0570 +0 0.1641 +1 0.8309 +0 0.1633 +0 0.0498 +0 0.0900 +0 0.0711 +0 0.0686 +0 0.0649 +0 0.2080 +0 0.2612 +0 0.1442 +0 0.1407 +0 0.0554 +0 0.0519 +0 0.1062 +0 0.2232 +0 0.0861 +0 0.1631 +0 0.1008 +0 0.5437 +0 0.1730 +0 0.1949 +0 0.1041 +0 0.1209 +0 0.1455 +1 0.8604 +0 0.1089 +0 0.0938 +0 0.1491 +0 0.0612 +0 0.1160 +0 0.1597 +0 0.0701 +0 0.4882 +0 0.0286 +0 0.1243 +0 0.0989 +0 0.0718 +0 0.0922 +0 0.1470 +0 0.0942 +0 0.1416 +0 0.2559 +0 0.0399 +0 0.2559 +0 0.0657 +0 0.0435 +0 0.0463 +0 0.0689 +0 0.2183 +0 0.0779 +0 0.0699 +0 0.1561 +0 0.3269 +1 0.8281 +0 0.0715 +0 0.0615 +0 0.1005 +0 0.2429 +0 0.1177 +0 0.0589 +0 0.0536 +0 0.0903 +0 0.1086 +0 0.1293 +0 0.0974 +0 0.1847 +0 0.1409 +0 0.1108 +0 0.0455 +0 0.5546 +0 0.0751 +0 0.1039 +0 0.1155 +0 0.0734 +0 0.1103 +0 0.0903 +0 0.1073 +0 0.2059 +0 0.1926 +0 0.1116 +0 0.1564 +0 0.0893 +0 0.2509 +0 0.1356 +0 0.4072 +0 0.1387 +0 0.1612 +0 0.1023 +0 0.0797 +0 0.1573 +0 0.0730 +0 0.1337 +0 0.2341 +0 0.1086 +0 0.3703 +0 0.0482 +0 0.0444 +0 0.1202 +0 0.2122 +0 0.1131 +0 0.1260 +0 0.2032 +0 0.1092 +0 0.3545 +0 0.7453 +0 0.2423 +0 0.2328 +0 0.1650 +0 0.1845 +0 0.1737 +0 0.0460 +0 0.1015 +0 0.0539 +0 0.1218 +0 0.1800 +0 0.2088 +0 0.1165 +0 0.1688 +0 0.1164 +0 0.0697 +0 0.0711 +0 0.1188 +0 0.0645 +0 0.1626 +0 0.0704 +0 0.0949 +0 0.1109 +0 0.1665 +0 0.0691 +0 0.0582 +0 0.1020 +0 0.1062 +0 0.1766 +0 0.0526 +0 0.0506 +0 0.0863 +0 0.1637 +0 0.0571 +0 0.0638 +0 0.1234 +0 0.1462 +0 0.0689 +0 0.0598 +0 0.1165 +0 0.2164 +0 0.0404 +0 0.1013 +0 0.0822 +0 0.0465 +0 0.0842 +0 0.1592 +0 0.1053 +0 0.0306 +0 0.0850 +0 0.1764 +0 0.7400 +0 0.1199 +0 0.0940 +0 0.0563 +0 0.0438 +0 0.2090 +0 0.0746 +0 0.1046 +0 0.0849 +0 0.2674 +0 0.0973 +0 0.2532 +0 0.1099 +0 0.0702 +0 0.0778 +0 0.2194 +0 0.0561 +0 0.0765 +0 0.0711 +0 0.1195 +0 0.1539 +0 0.1897 +0 0.0738 +0 0.1211 +0 0.0911 +0 0.0888 +0 0.1920 +0 0.0662 +0 0.0882 +0 0.1720 +0 0.2037 +0 0.0872 +0 0.2011 +0 0.1320 +0 0.0765 +1 0.7687 +0 0.1280 +0 0.1149 +0 0.0878 +0 0.1280 +0 0.5538 +0 0.0646 +0 0.0333 +1 0.7556 +0 0.1948 +0 0.1480 +0 0.0460 +0 0.2219 +0 0.0981 +0 0.3424 +0 0.1713 +0 0.1421 +0 0.1030 +0 0.1417 +0 0.0468 +1 0.7673 +0 0.0858 +0 0.0468 +0 0.3051 +0 0.0868 +0 0.1791 +0 0.4074 +0 0.0552 +0 0.0633 +0 0.0882 +0 0.1946 +0 0.0551 +0 0.3501 +0 0.1774 +0 0.0552 +0 0.1417 +0 0.0383 +0 0.2293 +0 0.6503 +0 0.1533 +0 0.0695 +0 0.5700 +0 0.0766 +0 0.1816 +0 0.0901 +0 0.3295 +0 0.1138 +0 0.2412 +0 0.1247 +0 0.0496 +0 0.0586 +0 0.1463 +0 0.1152 +0 0.0515 +0 0.1702 +0 0.1010 +0 0.1368 +0 0.1136 +0 0.1279 +0 0.1068 +0 0.0747 +0 0.1724 +0 0.0652 +0 0.3457 +0 0.0840 +0 0.2352 +0 0.0630 +0 0.0807 +0 0.2804 +0 0.6953 +0 0.5944 +0 0.1641 +0 0.0881 +0 0.1022 +0 0.1605 +0 0.0973 +0 0.0348 +0 0.0699 +0 0.0536 +0 0.0870 +0 0.3091 +0 0.0870 +0 0.0501 +0 0.1393 +0 0.0977 +0 0.1411 +0 0.1411 +0 0.0655 +0 0.0551 +0 0.0737 +0 0.0725 +0 0.0828 +0 0.1175 +0 0.1777 +0 0.1003 +0 0.0557 +0 0.0998 +0 0.0588 +0 0.0802 +0 0.1464 +0 0.0664 +0 0.1220 +0 0.0492 +0 0.1301 +0 0.1498 +0 0.3320 +0 0.1488 +0 0.4889 +0 0.0613 +0 0.1313 +0 0.4488 +0 0.0873 +0 0.0849 +0 0.0578 +0 0.0550 +0 0.0886 +0 0.2209 +0 0.1051 +0 0.1610 +0 0.3437 +0 0.5302 +0 0.0744 +0 0.1079 +0 0.1399 +0 0.0904 +0 0.2617 +0 0.0303 +0 0.1237 +0 0.1019 +0 0.0819 +0 0.0830 +0 0.0842 +0 0.0725 +0 0.1181 +0 0.1745 +0 0.1500 +0 0.2990 +0 0.0735 +0 0.1575 +0 0.0953 +0 0.0824 +0 0.0774 +0 0.3428 +0 0.0716 +0 0.1883 +1 0.7544 +0 0.1877 +0 0.0771 +0 0.1744 +0 0.0614 +0 0.2080 +0 0.1051 +0 0.1559 +0 0.1338 +0 0.1134 +0 0.1283 +1 0.7605 +0 0.0476 +0 0.0763 +0 0.1113 +1 0.8205 +0 0.1236 +0 0.0829 +0 0.1622 +0 0.2399 +0 0.4172 +0 0.1099 +0 0.0702 +0 0.0317 +0 0.0735 +0 0.0781 +0 0.0801 +0 0.0786 +0 0.0405 +0 0.0714 +0 0.0861 +0 0.3334 +0 0.1654 +0 0.6629 +0 0.0704 +0 0.1888 +0 0.1687 +0 0.1435 +0 0.0439 +0 0.1372 +0 0.1534 +0 0.1091 +0 0.0862 +0 0.0595 +0 0.0601 +0 0.1795 +1 0.8121 +0 0.0918 +0 0.1139 +0 0.0776 +0 0.1416 +0 0.0888 +0 0.2077 +0 0.3213 +0 0.1535 +0 0.0554 +0 0.1353 +0 0.0452 +0 0.0564 +0 0.0614 +0 0.0901 +0 0.1443 +0 0.1234 +0 0.1912 +0 0.1803 +0 0.0831 +0 0.3566 +0 0.3626 +0 0.1926 +0 0.0728 +0 0.3165 +0 0.2760 +0 0.0471 +0 0.4189 +0 0.0685 +0 0.0448 +0 0.1236 +0 0.0956 +0 0.0832 +0 0.1495 +0 0.1492 +0 0.0894 +0 0.1851 +0 0.1034 +0 0.0907 +0 0.0965 +0 0.1523 +0 0.4645 +0 0.0968 +0 0.0485 +0 0.0416 +0 0.1210 +0 0.1576 +0 0.0554 +0 0.1235 +0 0.0414 +0 0.0628 +0 0.0498 +0 0.1830 +0 0.0620 +0 0.4379 +0 0.1102 +0 0.0859 +0 0.2436 +0 0.0431 +0 0.1420 +0 0.0840 +0 0.3619 +0 0.1493 +0 0.1674 +0 0.0463 +0 0.0568 +0 0.1164 +0 0.0411 +0 0.0960 +0 0.0477 +0 0.0840 +0 0.1107 +0 0.1196 +0 0.1172 +0 0.0683 +0 0.0771 +0 0.5264 +0 0.3007 +0 0.0741 +0 0.1225 +0 0.0939 +0 0.0450 +0 0.1650 +0 0.0595 +0 0.4868 +0 0.1328 +0 0.0474 +0 0.1416 +0 0.0724 +0 0.0522 +0 0.1016 +0 0.0598 +0 0.1079 +0 0.0822 +0 0.0726 +0 0.1319 +0 0.1283 +0 0.1543 +0 0.0781 +0 0.0753 +0 0.1794 +0 0.1970 +0 0.4218 +0 0.1304 +0 0.2035 +0 0.1632 +0 0.0678 +0 0.0798 +0 0.0492 +0 0.0800 +0 0.1988 +0 0.1212 +0 0.0844 +0 0.0941 +0 0.0669 +0 0.0772 +0 0.0546 +0 0.3474 +0 0.1484 +0 0.2707 +0 0.2176 +0 0.0698 +0 0.1296 +0 0.2156 +0 0.1308 +0 0.0601 +0 0.0546 +0 0.0896 +0 0.0771 +0 0.1032 +0 0.5228 +0 0.1046 +0 0.0873 +0 0.2383 +0 0.0545 +0 0.0688 +0 0.0711 +0 0.0489 +0 0.2726 +0 0.1124 +0 0.0476 +0 0.0381 +0 0.2173 +0 0.0646 +0 0.1015 +0 0.0838 +0 0.0414 +0 0.0508 +0 0.0471 +0 0.0644 +0 0.0503 +0 0.1305 +0 0.0628 +0 0.4287 +0 0.0631 +0 0.0842 +0 0.1843 +0 0.1020 +0 0.1042 +0 0.2381 +0 0.0751 +0 0.1163 +0 0.0589 +0 0.0817 +0 0.0537 +0 0.0997 +0 0.0535 +0 0.0479 +0 0.1210 +0 0.0580 +0 0.0811 +0 0.2110 +0 0.1034 +0 0.0713 +0 0.5174 +0 0.2540 +0 0.0859 +0 0.0401 +0 0.0875 +0 0.0610 +0 0.0828 +0 0.0597 +0 0.0459 +0 0.0576 +0 0.0612 +0 0.0528 +0 0.2914 +0 0.0723 +0 0.0366 +0 0.0496 +0 0.6370 +0 0.0559 +1 0.8997 +0 0.0784 +0 0.1162 +0 0.1247 +0 0.1012 +0 0.0507 +0 0.1532 +0 0.0953 +0 0.1348 +0 0.1732 +0 0.3096 +0 0.1603 +0 0.0746 +0 0.0500 +0 0.0883 +0 0.1487 +0 0.0373 +0 0.1432 +0 0.1128 +0 0.2180 +0 0.0575 +0 0.1802 +0 0.1086 +0 0.7221 +0 0.0646 +0 0.1048 +0 0.1001 +0 0.1487 +0 0.0811 +0 0.1651 +0 0.1529 +0 0.2564 +0 0.1526 +0 0.5017 +0 0.0356 +0 0.1503 +0 0.0835 +0 0.1907 +0 0.3478 +0 0.1992 +0 0.0893 +0 0.0935 +0 0.4625 +0 0.1701 +0 0.1388 +0 0.2496 +0 0.1128 +1 0.7748 +0 0.0731 +0 0.1987 +0 0.1732 +0 0.0509 +0 0.0811 +0 0.1512 +0 0.1682 +0 0.0780 +0 0.0922 +0 0.3232 +0 0.1259 +0 0.0843 +0 0.0815 +0 0.1664 +0 0.1137 +0 0.1255 +0 0.0904 +0 0.1160 +0 0.0706 +0 0.0575 +0 0.1146 +0 0.0495 +0 0.0404 +0 0.2328 +0 0.0925 +0 0.1078 +0 0.2314 +0 0.0859 +0 0.0937 +0 0.1276 +0 0.0473 +0 0.3790 +0 0.1065 +0 0.2195 +0 0.2832 +0 0.1552 +0 0.2590 +0 0.4028 +0 0.2095 +0 0.0730 +0 0.6852 +0 0.1927 +0 0.4099 +0 0.0652 +0 0.1584 +0 0.1662 +0 0.2557 +0 0.3045 +0 0.3585 +0 0.0726 +0 0.0852 +0 0.0581 +0 0.2359 +0 0.0685 +0 0.3367 +0 0.4486 +0 0.1119 +0 0.1122 +0 0.1168 +0 0.0768 +0 0.0355 +0 0.0898 +0 0.0753 +0 0.0974 +0 0.2309 +0 0.0921 +0 0.5218 +0 0.1787 +0 0.2540 +0 0.1745 +0 0.6532 +0 0.0798 +0 0.0773 +0 0.0867 +0 0.1135 +0 0.3400 +0 0.0602 +0 0.1968 +0 0.2204 +0 0.1949 +0 0.0405 +0 0.0733 +0 0.2566 +0 0.4047 +0 0.7279 +0 0.1051 +0 0.0896 +0 0.0806 +0 0.1107 +0 0.0854 +0 0.1902 +0 0.0674 +0 0.1003 +0 0.1974 +0 0.1116 +1 0.8017 +0 0.1420 +0 0.1093 +0 0.0704 +0 0.0552 +0 0.1090 +0 0.2817 +0 0.0815 +0 0.0728 +0 0.0447 +0 0.0870 +0 0.2203 +0 0.2552 +0 0.0665 +0 0.0947 +0 0.1032 +0 0.0776 +0 0.0548 +0 0.0691 +0 0.1182 +0 0.0690 +0 0.1452 +0 0.0581 +0 0.0747 +0 0.0442 +0 0.0830 +0 0.0821 +0 0.1335 +1 0.8508 +0 0.1670 +0 0.0546 +0 0.1283 +0 0.1253 +0 0.1653 +0 0.1103 +0 0.1294 +0 0.0885 +0 0.1691 +0 0.0975 +0 0.2431 +0 0.0348 +0 0.1770 +0 0.0689 +0 0.1346 +0 0.0758 +0 0.0538 +0 0.0374 +0 0.0405 +0 0.0562 +0 0.0507 +0 0.1450 +0 0.3843 +0 0.1447 +0 0.0900 +0 0.0373 +0 0.0458 +0 0.1047 +0 0.1120 +0 0.1348 +0 0.0388 +0 0.1632 +0 0.0983 +0 0.0750 +0 0.0488 +0 0.4844 +0 0.1753 +0 0.0939 +0 0.0808 +0 0.0634 +0 0.0537 +0 0.1072 +0 0.0995 +0 0.2381 +0 0.1234 +0 0.1715 +0 0.5161 +0 0.0790 +0 0.1972 +0 0.1244 +0 0.1289 +0 0.1304 +0 0.1207 +0 0.0893 +0 0.6428 +0 0.0482 +0 0.0568 +0 0.0886 +0 0.2492 +0 0.0756 +0 0.0397 +0 0.3788 +0 0.1575 +0 0.1192 +0 0.1779 +0 0.1220 +0 0.0749 +0 0.0748 +0 0.1582 +0 0.0643 +0 0.1187 +0 0.3657 +0 0.2069 +0 0.0854 +0 0.1204 +0 0.1255 +0 0.1293 +0 0.0723 +0 0.1268 +0 0.2527 +0 0.1167 +0 0.0741 +0 0.0525 +0 0.5580 +0 0.6250 +0 0.0833 +0 0.1251 +0 0.0817 +0 0.0705 +0 0.0934 +0 0.2541 +0 0.1405 +0 0.7058 +0 0.0673 +0 0.1200 +0 0.0527 +0 0.0903 +0 0.1587 +0 0.3058 +0 0.1371 +0 0.1548 +0 0.0729 +0 0.1727 +0 0.0565 +0 0.1543 +0 0.1315 +0 0.0764 +0 0.1240 +0 0.1126 +0 0.0561 +0 0.0598 +0 0.0410 +0 0.0995 +0 0.0551 +0 0.2501 +0 0.0716 +0 0.1369 +0 0.0476 +0 0.0856 +0 0.4606 +0 0.0568 +0 0.0675 +0 0.1380 +0 0.0644 +0 0.1495 +0 0.4205 +0 0.0752 +0 0.0624 +0 0.1639 +0 0.0854 +0 0.0519 +0 0.0779 +0 0.0968 +0 0.1441 +0 0.2355 +0 0.2513 +0 0.0894 +0 0.0956 +0 0.1329 +0 0.0728 +0 0.1078 +0 0.1173 +0 0.1526 +0 0.1091 +0 0.0557 +0 0.1357 +0 0.2833 +0 0.1028 +0 0.1217 +0 0.0952 +0 0.1070 +0 0.0752 +0 0.3750 +0 0.2524 +0 0.2783 +0 0.7338 +0 0.0410 +0 0.0696 +0 0.2131 +0 0.2583 +0 0.1024 +0 0.0969 +0 0.2146 +0 0.0611 +0 0.1930 +0 0.0465 +0 0.0879 +0 0.1769 +0 0.0858 +0 0.0982 +0 0.1256 +0 0.0986 +0 0.0662 +0 0.0639 +0 0.1112 +0 0.2080 +0 0.0992 +0 0.1407 +1 0.8469 +0 0.0897 +0 0.6785 +0 0.0462 +0 0.1652 +0 0.1400 +0 0.1847 +0 0.1005 +0 0.0971 +1 0.8729 +0 0.1286 +0 0.0457 +0 0.0897 +0 0.1442 +0 0.1010 +0 0.1607 +0 0.0634 +0 0.0486 +0 0.0892 +0 0.3978 +0 0.1112 +0 0.1059 +0 0.0537 +0 0.2718 +0 0.0689 +0 0.0760 +0 0.1411 +0 0.0707 +0 0.1020 +0 0.0732 +0 0.1047 +0 0.1720 +0 0.0902 +0 0.0812 +0 0.1467 +0 0.0711 +0 0.2129 +0 0.1901 +0 0.1781 +0 0.2351 +0 0.1133 +0 0.0850 +0 0.2262 +0 0.1697 +0 0.0439 +1 0.8638 +0 0.1414 +0 0.2566 +0 0.0863 +0 0.1648 +0 0.1634 +0 0.4563 +0 0.0723 +0 0.0387 +0 0.0851 +0 0.0788 +0 0.0479 +0 0.0632 +0 0.1256 +0 0.2463 +0 0.1010 +0 0.1324 +0 0.3212 +0 0.1085 +0 0.0999 +0 0.0563 +0 0.0863 +0 0.1181 +0 0.0964 +0 0.1576 +0 0.0961 +0 0.0651 +0 0.0841 +0 0.2192 +0 0.1194 +0 0.2840 +0 0.1706 +0 0.1086 +0 0.0527 +0 0.1085 +0 0.0813 +0 0.0736 +0 0.0618 +0 0.2356 +0 0.0676 +0 0.1375 +0 0.0814 +0 0.0826 +0 0.1233 +0 0.0435 +0 0.2358 +0 0.0484 +0 0.0983 +0 0.1637 +0 0.0715 +0 0.2179 +0 0.1912 +0 0.2864 +0 0.0872 +1 0.8162 +0 0.1835 +0 0.0979 +0 0.3524 +0 0.1337 +0 0.1405 +0 0.0928 +0 0.3382 +0 0.0858 +0 0.2164 +0 0.1377 +0 0.3169 +0 0.1188 +0 0.1982 +0 0.1809 +0 0.0862 +0 0.0753 +0 0.0695 +0 0.3237 +0 0.0987 +0 0.0748 +0 0.1329 +0 0.1141 +0 0.0953 +0 0.2477 +0 0.1050 +0 0.1482 +0 0.1776 +0 0.0681 +0 0.1993 +0 0.0514 +0 0.1036 +0 0.1047 +0 0.2386 +0 0.0903 +0 0.0617 +0 0.1136 +0 0.1137 +0 0.0458 +0 0.0673 +0 0.4971 +0 0.1017 +0 0.0891 +0 0.0435 +0 0.1694 +0 0.0941 +0 0.0694 +0 0.0897 +0 0.1113 +0 0.3973 +0 0.1314 +0 0.0556 +0 0.1512 +0 0.0772 +0 0.1134 +0 0.3228 +0 0.1947 +0 0.1208 +0 0.2581 +0 0.2779 +1 0.8251 +0 0.1646 +0 0.0498 +0 0.1440 +0 0.0538 +0 0.2334 +0 0.1425 +0 0.0793 +0 0.0342 +0 0.1730 +0 0.0482 +0 0.2825 +0 0.0896 +0 0.1480 +0 0.1429 +0 0.0952 +0 0.2934 +0 0.0590 +0 0.4021 +0 0.2694 +0 0.1091 +0 0.0548 +0 0.0828 +0 0.0746 +0 0.1600 +0 0.1636 +0 0.0734 +0 0.1026 +0 0.1160 +0 0.1207 +0 0.0648 +0 0.1395 +0 0.0873 +0 0.0599 +0 0.1226 +0 0.1172 +0 0.0766 +0 0.0744 +0 0.3686 +0 0.2142 +0 0.0841 +0 0.0776 +0 0.1273 +0 0.0606 +0 0.2795 +0 0.0917 +0 0.1483 +0 0.0998 +0 0.1234 +0 0.1878 +0 0.1888 +0 0.3903 +0 0.6548 +0 0.0518 +0 0.1413 +0 0.1448 +0 0.2495 +0 0.1980 +0 0.0575 +0 0.1294 +0 0.1266 +0 0.1830 +0 0.0482 +0 0.1946 +0 0.1253 +0 0.0646 +0 0.0567 +0 0.0633 +0 0.1090 +0 0.0849 +0 0.1007 +0 0.0533 +0 0.0842 +0 0.1530 +0 0.6542 +0 0.1058 +0 0.1381 +0 0.0936 +0 0.0769 +0 0.0414 +0 0.0776 +0 0.0623 +0 0.1158 +0 0.1683 +0 0.0751 +0 0.0762 +0 0.1667 +0 0.1975 +0 0.1257 +0 0.1457 +0 0.1187 +0 0.1004 +1 0.7801 +0 0.0394 +0 0.0510 +0 0.1621 +0 0.6925 +0 0.4093 +0 0.5584 +0 0.0577 +0 0.1504 +0 0.3527 +0 0.0389 +0 0.1074 +0 0.0461 +0 0.0565 +0 0.0396 +0 0.1410 +0 0.2770 +0 0.3380 +0 0.1666 +0 0.1142 +0 0.1596 +0 0.0479 +0 0.2252 +0 0.1410 +0 0.0959 +0 0.3794 +0 0.0527 +0 0.2000 +0 0.1269 +0 0.1500 +0 0.0843 +0 0.0733 +0 0.0813 +0 0.0916 +0 0.0722 +0 0.2413 +0 0.3804 +0 0.1046 +0 0.1459 +0 0.0596 +0 0.3570 +0 0.0538 +0 0.0501 +0 0.0747 +0 0.2503 +0 0.7213 +0 0.0716 +0 0.0533 +0 0.0644 +0 0.0363 +0 0.2034 +0 0.0746 +0 0.0844 +0 0.5717 +0 0.0692 +0 0.0843 +0 0.1309 +0 0.1223 +0 0.0974 +0 0.2037 +0 0.0892 +0 0.0661 +0 0.0736 +0 0.1514 +0 0.0832 +0 0.0963 +0 0.0623 +0 0.0592 +0 0.1944 +0 0.5424 +0 0.0541 +0 0.1138 +0 0.0438 +0 0.0723 +0 0.0410 +0 0.4785 +0 0.0552 +0 0.1245 +0 0.1663 +0 0.1281 +0 0.1832 +0 0.0885 +0 0.0585 +0 0.2250 +0 0.2424 +0 0.7455 +0 0.0795 +0 0.0695 +0 0.1059 +0 0.0902 +0 0.0576 +0 0.3336 +0 0.0663 +0 0.1651 +0 0.0919 +0 0.0665 +0 0.0584 +0 0.3196 +0 0.1437 +0 0.5399 +0 0.0998 +0 0.1223 +0 0.0757 +1 0.7600 +0 0.1592 +0 0.0654 +0 0.0625 +0 0.1063 +0 0.0522 +0 0.2657 +0 0.4037 +1 0.8142 +0 0.1165 +0 0.1284 +0 0.0644 +0 0.4923 +0 0.0687 +0 0.1058 +0 0.1003 +0 0.0662 +0 0.0892 +0 0.0854 +0 0.2587 +0 0.4103 +0 0.0813 +0 0.1838 +0 0.1485 +0 0.1349 +0 0.1605 +0 0.0598 +0 0.0788 +0 0.0917 +0 0.0435 +0 0.1166 +0 0.0811 +0 0.0784 +0 0.1841 +0 0.1722 +0 0.0800 +0 0.2644 +0 0.0442 +0 0.1129 +0 0.0958 +0 0.1370 +0 0.1499 +0 0.0501 +0 0.1223 +0 0.2547 +0 0.1224 +0 0.3664 +0 0.0477 +0 0.0507 +0 0.2512 +0 0.0938 +0 0.1242 +0 0.1353 +0 0.0682 +0 0.1410 +0 0.0698 +0 0.3995 +0 0.0505 +0 0.0664 +0 0.2292 +0 0.0614 +0 0.0640 +0 0.0840 +0 0.1522 +0 0.1537 +0 0.0734 +0 0.1337 +0 0.0601 +1 0.7930 +0 0.2054 +0 0.1659 +0 0.0979 +0 0.1840 +0 0.2666 +0 0.1322 +0 0.1324 +0 0.1633 +0 0.2573 +0 0.0637 +0 0.0393 +0 0.0703 +0 0.0697 +0 0.1841 +0 0.0673 +0 0.0747 +0 0.2952 +0 0.3131 +0 0.2593 +0 0.0820 +0 0.1340 +0 0.1214 +0 0.0637 +0 0.1033 +0 0.1192 +0 0.0697 +0 0.0965 +0 0.6666 +0 0.2759 +0 0.1016 +0 0.0938 +0 0.3543 +0 0.0934 +0 0.0691 +1 0.7907 +0 0.1142 +0 0.1589 +0 0.0559 +0 0.0527 +0 0.0992 +0 0.0988 +0 0.0677 +0 0.4253 +0 0.1308 +0 0.0824 +0 0.1362 +1 0.7870 +0 0.0423 +0 0.0495 +0 0.1673 +0 0.1196 +0 0.0610 +0 0.0835 +0 0.4183 +0 0.1416 +0 0.2372 +0 0.1783 +0 0.0387 +0 0.1044 +0 0.1657 +0 0.1049 +0 0.0921 +0 0.1365 +0 0.0709 +0 0.0407 +0 0.2047 +0 0.2098 +0 0.0882 +0 0.6801 +0 0.2444 +0 0.1823 +0 0.1007 +0 0.2105 +0 0.0791 +0 0.7156 +0 0.1709 +0 0.0470 +0 0.2155 +0 0.0653 +0 0.1390 +0 0.2435 +0 0.0591 +0 0.1222 +0 0.1733 +0 0.0576 +0 0.7257 +0 0.0765 +0 0.5027 +0 0.0598 +0 0.7165 +1 0.7774 +0 0.1253 +0 0.1000 +0 0.1652 +0 0.1780 +0 0.1079 +0 0.0775 +0 0.1556 +0 0.0675 +0 0.0524 +0 0.0541 +0 0.0978 +0 0.0724 +0 0.2211 +0 0.0978 +0 0.1171 +0 0.0396 +0 0.1017 +0 0.0700 +0 0.0573 +0 0.1725 +0 0.0595 +0 0.1718 +0 0.0757 +0 0.0631 +0 0.0520 +0 0.1342 +0 0.0573 +0 0.2692 +0 0.0791 +0 0.1625 +0 0.0805 +0 0.1206 +0 0.0418 +0 0.1209 +0 0.0425 +0 0.1003 +0 0.0692 +0 0.0835 +0 0.0781 +0 0.0538 +0 0.4698 +0 0.0739 +0 0.0415 +0 0.0991 +0 0.5752 +0 0.0891 +0 0.1000 +0 0.0548 +0 0.0741 +0 0.0926 +0 0.0917 +0 0.0857 +0 0.0869 +0 0.0856 +0 0.5663 +0 0.0458 +0 0.1022 +0 0.1850 +0 0.2655 +0 0.0435 +0 0.1148 +0 0.1218 +0 0.0840 +0 0.1353 +0 0.0567 +0 0.5752 +0 0.2427 +0 0.1284 +0 0.0913 +0 0.0525 +0 0.1535 +0 0.0474 +0 0.0736 +0 0.1031 +0 0.1048 +0 0.0895 +0 0.1088 +0 0.0917 +0 0.0581 +0 0.0390 +0 0.3754 +0 0.2024 +1 0.8144 +0 0.1123 +0 0.1121 +0 0.1087 +0 0.1795 +0 0.0644 +0 0.1848 +0 0.0518 +0 0.3034 +0 0.1328 +0 0.4847 +0 0.0613 +0 0.0931 +0 0.7457 +0 0.3054 +0 0.1649 +0 0.2226 +0 0.1742 +0 0.1944 +0 0.1194 +0 0.2099 +0 0.0488 +0 0.0581 +0 0.2387 +0 0.2367 +0 0.0573 +0 0.0507 +0 0.1563 +0 0.0883 +0 0.1075 +0 0.1057 +0 0.0920 +0 0.0929 +0 0.0375 +0 0.0682 +0 0.6897 +0 0.1389 +0 0.1065 +0 0.0482 +0 0.1399 +0 0.1568 +0 0.1676 +0 0.1669 +0 0.1572 +0 0.1575 +0 0.1370 +0 0.0362 +0 0.0950 +0 0.0958 +0 0.2366 +0 0.1834 +0 0.2007 +0 0.0485 +0 0.1372 +0 0.2049 +0 0.2180 +0 0.0551 +0 0.1302 +0 0.3108 +0 0.1056 +0 0.0855 +0 0.2114 +0 0.0831 +0 0.0764 +0 0.0682 +0 0.0686 +1 0.7684 +0 0.0630 +0 0.2155 +0 0.7443 +0 0.0612 +0 0.7210 +0 0.0695 +0 0.0807 +0 0.1686 +0 0.0468 +0 0.1248 +0 0.0525 +0 0.1425 +0 0.1386 +0 0.0566 +0 0.1731 +0 0.1754 +0 0.1270 +0 0.1065 +0 0.2603 +0 0.0681 +0 0.3428 +0 0.0534 +0 0.5364 +0 0.0612 +0 0.0976 +0 0.6089 +0 0.1119 +0 0.0991 +0 0.2614 +0 0.1847 +0 0.1069 +0 0.0762 +0 0.0316 +0 0.0866 +0 0.1024 +0 0.1372 +0 0.6229 +0 0.1063 +0 0.2102 +0 0.1001 +0 0.0569 +0 0.0673 +0 0.2024 +0 0.0426 +0 0.1658 +0 0.0739 +0 0.1545 +0 0.0787 +0 0.2380 +0 0.3793 +0 0.1008 +0 0.0428 +0 0.1336 +0 0.0533 +0 0.0482 +0 0.0670 +0 0.2330 +0 0.1326 +0 0.2167 +0 0.1253 +0 0.1524 +0 0.1010 +0 0.1582 +0 0.1563 +0 0.1474 +0 0.0972 +0 0.0765 +0 0.0352 +0 0.0871 +0 0.1068 +0 0.1783 +0 0.2675 +0 0.0408 +0 0.0952 +0 0.1240 +0 0.2585 +0 0.0752 +0 0.1751 +0 0.2152 +0 0.0609 +0 0.1209 +0 0.0352 +0 0.1203 +0 0.2872 +0 0.1720 +0 0.1814 +0 0.1117 +0 0.0610 +0 0.1932 +0 0.2862 +0 0.2417 +0 0.1238 +0 0.1028 +0 0.1491 +0 0.2878 +0 0.0382 +0 0.1593 +0 0.3363 +0 0.1460 +0 0.0956 +0 0.0686 +0 0.0390 +0 0.2103 +0 0.0814 +0 0.1210 +0 0.1502 +0 0.0982 +0 0.0447 +0 0.1322 +0 0.1558 +0 0.0764 +0 0.1657 +0 0.0603 +0 0.3183 +0 0.2047 +0 0.1736 +0 0.1274 +0 0.1244 +0 0.1029 +0 0.1058 +0 0.1142 +0 0.1037 +0 0.0550 +0 0.1117 +0 0.0588 +0 0.0578 +0 0.0546 +0 0.1233 +0 0.1858 +0 0.3650 +0 0.3804 +0 0.1248 +0 0.0538 +0 0.0809 +0 0.1787 +0 0.1484 +0 0.1960 +0 0.5157 +0 0.0659 +0 0.0634 +0 0.0691 +0 0.4392 +0 0.0565 +1 0.7927 +0 0.1545 +0 0.1096 +0 0.0739 +0 0.1371 +0 0.0650 +0 0.1344 +0 0.3349 +0 0.1561 +0 0.1273 +0 0.1005 +0 0.1320 +0 0.5051 +0 0.1772 +0 0.1034 +0 0.0951 +0 0.0480 +0 0.0984 +0 0.2415 +0 0.1151 +0 0.0715 +0 0.2171 +0 0.0673 +0 0.2602 +0 0.2665 +0 0.0482 +0 0.1176 +0 0.1357 +0 0.0848 +0 0.1887 +0 0.0529 +0 0.0998 +0 0.0801 +0 0.1446 +0 0.0974 +0 0.1046 +0 0.0598 +0 0.1196 +0 0.1119 +0 0.2602 +0 0.1773 +0 0.0895 +1 0.8094 +0 0.1153 +0 0.3716 +0 0.0724 +0 0.3707 +0 0.0893 +0 0.0515 +0 0.1137 +0 0.2977 +0 0.1049 +0 0.0993 +0 0.4676 +0 0.0455 +0 0.2440 +0 0.1231 +0 0.1171 +0 0.2504 +0 0.0750 +0 0.0674 +0 0.1242 +0 0.0544 +0 0.3518 +0 0.1198 +0 0.2911 +0 0.1256 +0 0.0939 +0 0.1133 +0 0.0765 +0 0.1140 +0 0.0649 +0 0.1009 +0 0.0426 +0 0.2469 +0 0.0609 +0 0.0846 +0 0.2285 +0 0.0603 +0 0.0819 +0 0.1368 +0 0.0398 +0 0.1292 +0 0.0667 +0 0.3871 +0 0.0464 +0 0.1173 +0 0.1211 +0 0.1304 +0 0.1982 +0 0.0590 +0 0.1268 +1 0.7627 +0 0.0339 +0 0.0917 +0 0.0447 +0 0.2411 +0 0.2175 +0 0.1088 +0 0.0748 +0 0.1557 +0 0.0547 +0 0.3330 +0 0.0742 +0 0.1002 +0 0.1788 +0 0.1421 +0 0.0945 +0 0.0521 +0 0.0660 +0 0.0373 +0 0.0516 +0 0.0741 +0 0.3469 +0 0.0810 +0 0.1678 +0 0.4070 +0 0.1287 +0 0.0844 +0 0.2261 +0 0.1427 +0 0.2038 +0 0.0391 +0 0.0750 +0 0.0872 +0 0.1007 +0 0.2262 +0 0.2316 +0 0.0421 +0 0.2632 +0 0.0728 +0 0.0876 +0 0.0944 +0 0.0637 +0 0.0870 +0 0.0396 +0 0.0569 +0 0.0400 +1 0.7505 +0 0.0832 +0 0.0619 +0 0.1355 +0 0.5674 +0 0.0416 +0 0.0402 +0 0.0546 +0 0.1124 +0 0.3006 +0 0.2226 +0 0.1837 +0 0.0489 +0 0.0545 +0 0.0814 +0 0.1041 +0 0.0698 +0 0.0851 +0 0.1281 +0 0.1127 +0 0.0907 +0 0.0925 +0 0.0926 +0 0.1332 +0 0.1459 +0 0.1848 +0 0.0715 +0 0.0709 +0 0.1076 +0 0.1507 +0 0.3327 +0 0.1212 +0 0.0850 +0 0.1506 +0 0.0703 +0 0.0799 +0 0.1257 +0 0.0895 +0 0.0729 +0 0.0831 +0 0.1056 +0 0.1686 +0 0.0397 +0 0.0860 +0 0.1939 +0 0.1707 +0 0.1618 +0 0.3327 +0 0.1595 +0 0.1635 +0 0.2839 +0 0.1413 +0 0.1108 +0 0.0636 +0 0.1705 +0 0.7279 +0 0.0361 +0 0.0824 +0 0.0821 +0 0.1998 +0 0.0896 +0 0.1592 +0 0.1219 +0 0.0790 +0 0.0502 +0 0.0878 +0 0.0691 +0 0.1148 +0 0.6659 +0 0.1174 +0 0.1113 +0 0.1311 +0 0.0592 +0 0.1038 +0 0.0487 +0 0.0436 +0 0.1244 +0 0.0791 +0 0.1542 +0 0.1260 +0 0.2332 +0 0.0861 +0 0.0643 +0 0.0688 +0 0.3536 +0 0.2539 +0 0.0627 +0 0.0685 +0 0.0760 +0 0.0806 +0 0.0743 +0 0.0602 +0 0.0630 +0 0.1823 +0 0.0934 +0 0.0791 +0 0.0763 +0 0.1400 +0 0.0634 +0 0.0521 +0 0.1472 +0 0.1248 +0 0.2979 +0 0.0726 +0 0.0573 +0 0.0975 +0 0.0786 +0 0.0399 +0 0.0553 +0 0.0464 +0 0.1897 +0 0.1018 +0 0.1003 +0 0.0507 +0 0.0915 +0 0.0874 +0 0.0418 +0 0.2076 +0 0.1358 +0 0.0727 +0 0.0846 +0 0.0554 +0 0.2415 +0 0.1045 +0 0.0695 +0 0.0659 +0 0.0895 +0 0.1669 +0 0.0990 +0 0.0444 +0 0.0757 +0 0.0471 +0 0.0764 +0 0.1451 +0 0.0605 +0 0.0700 +0 0.1792 +0 0.0918 +0 0.0597 +0 0.2310 +0 0.0341 +0 0.1032 +0 0.1991 +0 0.2435 +0 0.3260 +0 0.0846 +0 0.0803 +0 0.2348 +0 0.1273 +0 0.3704 +0 0.1408 +0 0.1010 +0 0.1369 +0 0.6584 +0 0.0779 +0 0.0685 +0 0.0971 +0 0.3987 +0 0.1012 +0 0.0960 +0 0.0502 +0 0.0892 +0 0.0689 +0 0.0451 +0 0.0363 +0 0.0781 +0 0.0407 +0 0.1310 +0 0.1088 +0 0.0488 +0 0.0942 +0 0.6858 +0 0.0517 +0 0.0720 +0 0.1532 +0 0.0534 +0 0.1219 +0 0.1598 +0 0.1022 +0 0.2406 +0 0.1515 +0 0.1084 +0 0.1265 +0 0.0975 +0 0.0569 +0 0.0588 +0 0.2012 +0 0.0466 +0 0.0996 +0 0.0610 +0 0.1650 +0 0.0297 +0 0.0431 +0 0.0989 +0 0.1788 +0 0.0884 +0 0.1378 +0 0.1774 +0 0.0616 +0 0.1588 +0 0.1693 +0 0.0378 +0 0.1798 +0 0.0916 +0 0.1375 +0 0.1264 +0 0.1350 +0 0.0656 +0 0.0842 +0 0.0679 +0 0.0800 +0 0.1846 +0 0.1638 +0 0.0630 +0 0.0509 +0 0.1994 +0 0.0634 +0 0.2631 +0 0.1121 +0 0.0539 +0 0.0426 +0 0.1308 +0 0.1692 +0 0.0705 +0 0.0684 +0 0.0895 +0 0.1810 +0 0.3671 +0 0.0863 +0 0.1649 +0 0.0826 +0 0.1993 +0 0.0938 +0 0.0657 +0 0.1642 +0 0.2010 +0 0.1460 +0 0.2074 +0 0.0445 +0 0.0785 +0 0.0530 +0 0.4571 +0 0.2256 +0 0.1063 +0 0.2650 +0 0.1015 +0 0.0669 +0 0.0812 +0 0.1140 +0 0.3850 +0 0.0707 +0 0.0604 +0 0.0380 +0 0.1480 +0 0.0488 +0 0.0367 +0 0.0530 +0 0.0451 +0 0.2201 +0 0.0834 +0 0.3312 +0 0.1201 +0 0.2140 +0 0.0662 +0 0.7427 +0 0.0936 +0 0.0738 +0 0.1363 +0 0.0824 +0 0.0659 +0 0.0737 +0 0.1424 +0 0.0738 +0 0.1012 +0 0.0570 +0 0.1234 +0 0.1944 +0 0.1109 +0 0.0733 +0 0.0604 +0 0.3009 +0 0.0575 +0 0.0822 +0 0.1376 +0 0.0730 +0 0.3880 +0 0.0916 +0 0.0513 +0 0.1077 +0 0.3162 +0 0.0883 +0 0.0602 +0 0.1024 +0 0.2367 +0 0.0556 +0 0.3039 +0 0.0484 +0 0.0475 +0 0.0593 +0 0.1234 +0 0.1103 +0 0.0917 +0 0.0894 +0 0.0964 +0 0.1239 +0 0.3017 +0 0.2827 +0 0.1186 +0 0.1373 +0 0.0867 +0 0.2761 +0 0.2758 +1 0.7751 +0 0.3155 +0 0.0809 +0 0.1120 +0 0.0369 +0 0.4465 +0 0.0864 +0 0.0654 +0 0.1665 +0 0.1350 +0 0.1211 +0 0.0977 +0 0.1702 +0 0.1046 +0 0.1897 +0 0.1424 +0 0.2870 +0 0.2366 +0 0.1463 +0 0.1740 +0 0.3280 +0 0.2756 +0 0.2205 +0 0.2056 +0 0.0795 +0 0.0864 +0 0.1108 +0 0.1108 +0 0.0895 +0 0.0787 +0 0.0398 +0 0.3965 +0 0.1507 +0 0.1142 +0 0.0682 +0 0.0693 +0 0.0590 +0 0.0779 +0 0.1864 +0 0.0730 +0 0.1927 +0 0.0829 +0 0.1612 +0 0.3155 +0 0.1153 +0 0.2107 +0 0.1030 +0 0.0357 +0 0.0950 +0 0.1296 +0 0.1139 +0 0.0681 +0 0.0918 +0 0.2511 +0 0.0840 +0 0.1469 +0 0.2543 +0 0.1602 +0 0.0510 +0 0.1240 +0 0.1678 +0 0.0813 +0 0.1185 +0 0.0540 +0 0.1145 +0 0.1019 +0 0.0626 +0 0.0609 +0 0.0875 +1 0.8127 +0 0.1449 +0 0.1660 +0 0.4270 +0 0.1033 +0 0.0569 +0 0.5472 +0 0.0785 +0 0.0465 +0 0.0800 +0 0.6338 +0 0.0936 +0 0.0781 +0 0.1103 +0 0.0463 +0 0.2517 +0 0.1064 +0 0.0851 +0 0.0393 +0 0.7384 +0 0.0347 +0 0.2255 +0 0.2037 +0 0.0458 +0 0.0439 +0 0.4191 +0 0.0700 +0 0.0425 +0 0.0634 +0 0.1031 +0 0.0554 +0 0.4237 +0 0.0836 +0 0.0623 +0 0.4215 +0 0.0932 +0 0.1654 +0 0.0690 +0 0.1280 +0 0.0966 +0 0.0378 +0 0.3118 +0 0.0546 +0 0.1005 +0 0.2906 +0 0.1895 +0 0.1260 +0 0.1871 +0 0.1119 +0 0.6842 +0 0.0606 +0 0.5535 +0 0.2195 +0 0.0781 +0 0.0470 +0 0.1065 +0 0.0806 +0 0.0871 +0 0.0671 +0 0.0722 +0 0.0768 +0 0.1423 +0 0.4757 +0 0.3518 +0 0.0867 +0 0.1405 +0 0.1187 +0 0.0346 +0 0.0540 +0 0.1205 +0 0.0870 +0 0.0426 +0 0.1481 +0 0.1139 +0 0.1856 +0 0.1381 +0 0.1730 +0 0.1584 +0 0.1741 +0 0.1776 +0 0.1937 +0 0.1486 +0 0.0884 +0 0.0599 +0 0.1318 +0 0.2616 +0 0.3593 +0 0.0541 +0 0.1989 +0 0.1747 +0 0.2944 +0 0.0712 +0 0.0647 +0 0.1309 +0 0.1067 +0 0.1155 +0 0.1203 +0 0.1353 +0 0.1215 +0 0.0408 +0 0.0935 +0 0.0931 +0 0.4178 +0 0.0814 +0 0.2199 +0 0.0673 +0 0.0871 +0 0.1112 +0 0.1102 +0 0.0528 +0 0.0650 +0 0.0594 +0 0.4653 +0 0.1781 +0 0.1526 +0 0.1681 +0 0.0583 +0 0.1050 +0 0.7228 +0 0.1020 +0 0.1728 +0 0.3752 +0 0.0560 +0 0.1549 +0 0.2078 +0 0.1737 +0 0.1477 +0 0.1167 +0 0.1164 +0 0.0681 +0 0.0715 +0 0.0660 +0 0.0454 +0 0.0515 +0 0.0839 +0 0.1783 +0 0.0624 +0 0.0724 +0 0.2280 +0 0.3234 +0 0.1464 +0 0.0853 +0 0.0956 +0 0.0734 +0 0.2430 +0 0.0875 +0 0.2544 +0 0.1821 +1 0.8666 +0 0.0533 +0 0.1193 +0 0.1754 +0 0.0548 +0 0.0383 +0 0.1315 +0 0.0483 +0 0.1235 +0 0.0731 +0 0.0829 +0 0.2663 +0 0.3446 +0 0.1102 +0 0.1101 +0 0.1279 +0 0.1498 +0 0.0670 +0 0.0581 +0 0.1070 +0 0.0645 +0 0.0557 +0 0.3611 +0 0.0500 +0 0.0651 +0 0.0903 +0 0.0770 +0 0.0858 +0 0.1040 +0 0.0509 +0 0.2514 +1 0.7557 +0 0.2213 +0 0.1025 +0 0.1457 +0 0.1115 +0 0.0920 +0 0.0679 +0 0.2823 +0 0.0810 +0 0.0645 +0 0.1119 +0 0.0825 +0 0.1091 +0 0.0437 +0 0.0798 +0 0.1978 +0 0.1097 +0 0.0779 +0 0.0803 +0 0.0925 +0 0.0534 +0 0.1771 +0 0.0725 +0 0.1920 +0 0.0783 +0 0.2729 +0 0.6427 +0 0.1558 +0 0.3141 +0 0.0439 +0 0.1474 +0 0.7472 +0 0.1146 +0 0.0649 +0 0.0563 +0 0.1831 +0 0.1370 +0 0.0915 +0 0.0463 +0 0.1335 +0 0.1538 +0 0.1085 +0 0.4127 +0 0.0896 +0 0.0554 +0 0.1299 +0 0.1771 +0 0.1421 +0 0.0497 +0 0.0488 +0 0.0809 +0 0.1349 +0 0.0593 +0 0.0824 +0 0.0570 +0 0.0730 +0 0.0540 +0 0.1556 +0 0.0611 +0 0.1405 +1 0.7711 +0 0.1255 +0 0.1137 +0 0.1123 +0 0.0864 +0 0.0685 +0 0.1456 +0 0.0883 +0 0.1009 +0 0.4789 +0 0.0787 +0 0.1783 +0 0.0435 +0 0.1203 +0 0.1247 +0 0.0811 +0 0.0850 +0 0.1015 +0 0.0989 +0 0.1220 +0 0.1667 +0 0.3052 +0 0.3090 +0 0.0838 +0 0.1028 +0 0.0931 +0 0.0572 +0 0.1200 +0 0.0448 +0 0.0771 +0 0.1323 +0 0.0405 +0 0.0546 +0 0.1125 +0 0.3499 +0 0.2169 +0 0.4683 +0 0.0524 +0 0.0569 +0 0.2143 +0 0.1994 +0 0.0914 +0 0.1086 +0 0.0737 +0 0.2491 +0 0.1526 +0 0.0802 +0 0.0867 +0 0.0469 +0 0.0554 +0 0.0835 +0 0.0861 +0 0.0390 +0 0.1194 +0 0.1329 +0 0.0708 +0 0.0905 +0 0.3077 +0 0.0356 +0 0.1043 +0 0.1727 +0 0.0969 +0 0.0703 +0 0.1062 +0 0.0490 +0 0.0535 +0 0.1081 +0 0.0999 +0 0.1394 +0 0.0539 +0 0.0922 +0 0.1260 +0 0.1707 +0 0.0861 +0 0.0671 +0 0.1426 +0 0.0835 +0 0.1613 +0 0.1737 +0 0.1531 +0 0.1488 +0 0.0743 +0 0.2178 +0 0.0797 +0 0.1221 +0 0.1210 +0 0.0784 +0 0.5420 +0 0.2080 +0 0.1139 +0 0.1817 +0 0.0832 +0 0.0944 +0 0.0414 +0 0.1201 +0 0.0632 +0 0.2251 +0 0.0621 +0 0.1110 +0 0.1146 +0 0.1173 +0 0.1288 +0 0.0832 +0 0.1514 +0 0.1803 +0 0.0660 +0 0.0900 +0 0.1574 +0 0.1938 +0 0.1901 +0 0.0555 +0 0.0544 +0 0.1773 +0 0.0486 +0 0.2551 +0 0.2248 +0 0.7467 +0 0.4432 +0 0.2128 +0 0.0456 +0 0.1331 +0 0.2344 +0 0.0866 +0 0.0676 +0 0.2627 +0 0.2550 +0 0.1712 +0 0.2487 +0 0.1711 +0 0.1785 +0 0.1334 +0 0.3119 +0 0.2179 +0 0.0995 +0 0.0933 +0 0.0879 +0 0.0738 +0 0.1684 +0 0.1017 +0 0.0575 +0 0.3042 +0 0.0521 +0 0.0519 +0 0.0373 +0 0.1837 +0 0.0715 +0 0.0443 +0 0.1447 +0 0.1054 +0 0.0759 +0 0.1703 +0 0.1620 +0 0.5810 +0 0.2231 +0 0.1000 +1 0.7550 +0 0.0698 +0 0.1585 +1 0.8490 +0 0.1482 +0 0.0360 +0 0.2842 +0 0.0596 +0 0.0911 +0 0.0943 +0 0.0676 +0 0.1590 +0 0.4493 +0 0.0446 +0 0.1638 +0 0.0871 +0 0.1233 +0 0.1016 +0 0.1124 +0 0.1428 +0 0.0746 +0 0.1416 +0 0.1647 +0 0.0808 +0 0.3326 +0 0.0692 +0 0.5265 +0 0.0689 +0 0.0402 +0 0.1068 +1 0.8546 +0 0.1082 +0 0.1482 +0 0.1559 +0 0.0794 +0 0.6165 +0 0.1172 +0 0.5008 +0 0.1040 +0 0.0950 +0 0.0720 +0 0.0717 +0 0.0856 +0 0.0635 +0 0.0856 +0 0.0765 +0 0.2966 +0 0.1003 +0 0.1913 +0 0.3282 +0 0.1204 +0 0.0600 +0 0.0678 +0 0.0407 +0 0.1686 +0 0.0575 +0 0.2936 +0 0.1128 +0 0.1707 +0 0.5474 +0 0.0942 +0 0.0796 +0 0.2191 +1 0.9043 +0 0.0706 +0 0.1472 +0 0.2072 +0 0.2140 +0 0.1940 +0 0.6515 +0 0.1272 +0 0.1257 +0 0.0657 +1 0.7724 +0 0.1066 +0 0.0785 +0 0.0941 +0 0.0677 +0 0.1599 +0 0.0816 +0 0.0807 +0 0.1401 +0 0.0477 +0 0.2671 +0 0.1162 +0 0.0772 +0 0.2851 +0 0.1707 +0 0.0556 +0 0.0574 +0 0.0732 +0 0.0739 +0 0.2257 +0 0.1343 +0 0.0434 +0 0.0721 +0 0.0507 +0 0.0563 +0 0.0617 +0 0.0773 +0 0.0500 +0 0.1273 +0 0.0667 +0 0.3381 +0 0.1540 +0 0.0955 +0 0.1096 +0 0.2292 +0 0.5522 +0 0.0410 +0 0.0783 +0 0.1365 +0 0.2106 +0 0.1486 +0 0.1926 +0 0.1785 +0 0.0859 +0 0.1664 +0 0.0809 +0 0.0664 +0 0.7103 +0 0.0641 +0 0.0772 +0 0.1212 +0 0.1915 +0 0.1387 +0 0.1330 +0 0.0582 +0 0.0666 +0 0.0982 +0 0.0632 +0 0.0708 +0 0.1303 +0 0.3094 +0 0.0610 +0 0.2184 +0 0.0790 +0 0.0792 +1 0.8294 +0 0.0712 +0 0.0813 +0 0.0915 +0 0.0848 +0 0.1355 +0 0.1351 +0 0.0504 +0 0.2173 +0 0.1320 +0 0.0878 +0 0.4248 +0 0.1085 +0 0.0712 +0 0.1080 +0 0.1272 +0 0.0721 +0 0.1158 +0 0.1078 +0 0.1913 +0 0.0897 +0 0.3309 +0 0.0747 +0 0.1125 +0 0.1507 +0 0.1957 +0 0.7358 +0 0.0867 +0 0.3361 +0 0.3100 +0 0.1672 +0 0.1296 +0 0.1395 +0 0.2038 +0 0.0519 +0 0.0825 +0 0.1304 +0 0.1479 +0 0.0912 +1 0.7674 +0 0.2462 +0 0.0754 +0 0.0536 +0 0.3300 +0 0.2860 +0 0.0703 +0 0.0659 +0 0.1070 +0 0.0744 +0 0.0710 +0 0.2311 +0 0.1621 +0 0.3012 +0 0.0517 +0 0.2665 +0 0.2024 +0 0.1256 +0 0.1483 +0 0.2199 +0 0.0557 +0 0.3557 +0 0.0662 +0 0.1936 +0 0.1335 +0 0.0616 +0 0.0339 +0 0.0986 +0 0.2473 +0 0.0963 +0 0.1004 +0 0.0961 +0 0.0705 +0 0.0576 +0 0.0616 +0 0.0568 +0 0.0792 +0 0.0629 +0 0.0669 +0 0.2840 +0 0.1828 +0 0.0922 +0 0.1158 +0 0.2592 +0 0.0459 +0 0.0503 +0 0.2086 +0 0.0468 +0 0.1954 +0 0.1212 +0 0.1193 +0 0.1703 +0 0.3614 +0 0.1546 +0 0.1589 +0 0.0670 +0 0.0941 +0 0.0704 +0 0.1155 +0 0.0626 +0 0.1426 +0 0.6979 +0 0.1103 +0 0.0832 +0 0.1656 +0 0.0402 +0 0.0477 +0 0.0548 +0 0.0368 +0 0.0773 +0 0.0790 +0 0.1615 +0 0.2103 +0 0.1458 +0 0.1677 +0 0.1119 +0 0.2448 +0 0.0943 +0 0.0345 +1 0.8492 +0 0.0528 +0 0.0488 +0 0.1192 +0 0.1949 +0 0.0849 +0 0.1010 +0 0.0890 +0 0.1022 +0 0.0687 +0 0.0883 +0 0.0420 +0 0.4833 +0 0.0760 +0 0.0391 +0 0.2087 +0 0.0698 +0 0.0899 +0 0.0569 +0 0.1169 +0 0.0884 +0 0.1152 +0 0.0803 +0 0.1507 +0 0.1778 +0 0.0850 +0 0.0970 +0 0.0834 +0 0.1130 +0 0.3140 +0 0.3412 +0 0.0782 +0 0.0395 +0 0.0900 +0 0.0546 +0 0.2026 +0 0.3434 +0 0.1297 +0 0.1657 +0 0.1018 +0 0.0803 +0 0.2078 +0 0.0696 +0 0.0545 +0 0.1071 +0 0.1229 +0 0.1964 +0 0.2897 +0 0.1124 +0 0.2456 +0 0.1959 +0 0.0983 +0 0.1199 +0 0.0619 +0 0.0691 +0 0.1419 +0 0.0996 +0 0.1080 +0 0.0767 +0 0.0521 +0 0.0488 +0 0.0558 +0 0.2400 +0 0.0654 +0 0.0934 +0 0.1887 +0 0.1124 +0 0.2078 +0 0.0366 +0 0.0520 +0 0.1394 +0 0.0469 +0 0.3586 +0 0.7275 +0 0.0818 +0 0.0412 +0 0.0676 +0 0.1069 +0 0.1349 +0 0.1984 +0 0.0584 +0 0.1464 +0 0.0530 +0 0.1238 +0 0.1277 +0 0.0676 +0 0.2189 +0 0.2504 +0 0.0620 +0 0.5954 +0 0.1342 +0 0.1303 +0 0.1139 +0 0.2676 +0 0.2012 +0 0.0615 +0 0.0352 +0 0.1114 +0 0.2303 +0 0.1025 +0 0.1839 +0 0.1851 +0 0.1138 +0 0.4387 +0 0.0976 +0 0.0962 +0 0.0541 +0 0.0848 +0 0.0651 +0 0.0749 +0 0.0895 +0 0.0812 +0 0.1403 +0 0.0882 +0 0.1072 +0 0.0745 +0 0.0628 +0 0.1045 +0 0.1469 +0 0.0651 +0 0.6482 +0 0.0668 +0 0.0947 +0 0.1135 +0 0.2364 +0 0.1044 +0 0.5499 +0 0.1338 +0 0.1085 +0 0.0948 +0 0.2367 +0 0.1133 +0 0.1779 +0 0.2718 +0 0.1433 +0 0.1350 +0 0.1131 +0 0.0787 +0 0.3364 +0 0.1556 +0 0.1962 +0 0.2565 +0 0.3434 +0 0.0845 +0 0.1209 +0 0.0410 +0 0.5511 +0 0.2270 +0 0.2668 +0 0.1713 +0 0.0863 +0 0.2188 +0 0.0668 +0 0.0514 +0 0.0677 +0 0.0779 +0 0.2949 +0 0.0971 +0 0.0654 +0 0.0505 +0 0.4103 +0 0.0701 +0 0.0802 +0 0.1884 +0 0.1365 +0 0.1667 +0 0.2265 +0 0.1497 +0 0.0850 +0 0.0820 +0 0.1398 +0 0.1656 +0 0.1275 +0 0.0555 +0 0.0777 +0 0.0563 +0 0.0445 +0 0.3017 +0 0.0765 +1 0.7562 +0 0.1283 +0 0.0995 +0 0.0441 +0 0.0916 +0 0.0610 +0 0.2054 +0 0.0465 +0 0.1288 +0 0.3130 +0 0.1697 +0 0.0846 +0 0.1808 +0 0.0961 +0 0.0937 +0 0.0916 +0 0.0821 +0 0.1002 +0 0.0434 +0 0.0606 +0 0.0866 +0 0.2123 +0 0.0748 +0 0.2322 +0 0.0644 +0 0.0459 +0 0.0289 +0 0.4512 +0 0.1205 +0 0.0904 +0 0.1175 +0 0.0821 +0 0.1347 +0 0.1327 +0 0.0658 +0 0.1733 +0 0.0753 +0 0.0518 +0 0.0559 +0 0.1976 +0 0.0932 +0 0.1080 +0 0.0690 +0 0.0671 +0 0.1071 +0 0.0554 +0 0.0834 +0 0.2250 +0 0.1278 +0 0.1162 +0 0.0496 +0 0.4636 +0 0.1931 +0 0.0720 +0 0.0993 +0 0.2098 +0 0.1053 +0 0.1025 +0 0.1722 +0 0.1530 +0 0.1014 +1 0.7517 +0 0.0475 +0 0.4506 +0 0.4602 +0 0.0975 +0 0.0723 +0 0.1195 +0 0.6601 +0 0.7198 +0 0.1117 +0 0.1284 +0 0.0722 +0 0.1350 +0 0.0912 +0 0.0629 +0 0.1132 +0 0.0614 +0 0.3014 +0 0.1851 +0 0.1545 +0 0.1824 +0 0.1028 +0 0.0999 +0 0.1747 +0 0.0755 +0 0.0692 +0 0.0430 +1 0.7533 +0 0.1577 +0 0.0616 +0 0.0669 +0 0.1450 +0 0.1624 +0 0.0991 +0 0.1052 +0 0.0675 +0 0.1635 +0 0.1869 +0 0.1017 +0 0.0900 +0 0.0665 +0 0.5158 +0 0.1514 +0 0.0556 +0 0.1319 +0 0.0463 +0 0.0705 +0 0.2839 +0 0.1552 +0 0.0806 +0 0.0580 +0 0.0940 +0 0.0781 +0 0.0669 +0 0.1475 +0 0.0570 +0 0.1531 +0 0.0352 +1 0.1946 +0 0.1178 +0 0.1487 +0 0.0526 +0 0.1232 +1 0.8007 +0 0.1370 +0 0.1334 +0 0.0807 +0 0.1591 +0 0.0829 +0 0.1302 +0 0.1737 +0 0.0459 +0 0.0654 +0 0.0874 +0 0.6353 +0 0.0691 +0 0.0686 +0 0.1349 +0 0.0428 +0 0.1259 +0 0.1042 +0 0.0848 +0 0.0768 +0 0.0764 +0 0.0640 +0 0.0591 +0 0.0795 +0 0.0552 +0 0.1024 +0 0.1103 +0 0.0539 +0 0.0567 +0 0.0786 +0 0.1807 +0 0.1302 +0 0.0788 +0 0.1022 +0 0.1207 +0 0.1200 +0 0.0562 +0 0.0503 +0 0.1761 +0 0.1786 +0 0.1139 +0 0.0624 +0 0.1474 +0 0.1232 +0 0.0654 +0 0.2523 +0 0.2151 +0 0.1099 +0 0.0540 +0 0.1010 +0 0.1525 +0 0.0693 +0 0.4473 +0 0.1195 +0 0.3572 +0 0.0411 +0 0.2408 +0 0.2696 +0 0.1018 +0 0.0861 +0 0.1527 +0 0.6795 +0 0.0796 +0 0.0676 +0 0.1382 +0 0.1103 +0 0.0865 +0 0.0742 +0 0.0704 +0 0.0378 +0 0.1059 +0 0.7351 +0 0.0985 +0 0.0407 +0 0.0934 +0 0.1423 +0 0.0504 +0 0.2342 +0 0.1176 +0 0.0780 +0 0.1560 +0 0.3277 +0 0.1008 +0 0.2827 +0 0.1089 +0 0.1385 +0 0.2270 +0 0.0380 +0 0.6361 +0 0.1547 +0 0.1401 +0 0.6449 +0 0.1112 +0 0.0438 +0 0.2249 +0 0.0468 +0 0.0536 +0 0.1265 +0 0.0902 +0 0.2041 +0 0.0675 +0 0.0949 +0 0.0498 +0 0.6555 +0 0.1229 +0 0.0834 +0 0.0900 +0 0.0392 +0 0.0693 +0 0.1878 +0 0.0903 +0 0.0874 +0 0.0679 +0 0.0636 +0 0.1968 +0 0.1143 +0 0.1037 +0 0.0896 +0 0.4127 +0 0.7002 +0 0.3263 +0 0.2025 +0 0.0617 +0 0.0354 +0 0.1671 +0 0.2065 +0 0.1924 +0 0.0893 +0 0.5558 +0 0.6513 +0 0.1071 +0 0.1139 +0 0.0977 +0 0.0763 +0 0.0371 +0 0.1550 +0 0.1177 +0 0.0980 +1 0.7682 +0 0.2047 +0 0.0765 +0 0.0730 +0 0.2904 +0 0.1783 +0 0.0803 +0 0.2866 +0 0.1773 +0 0.0921 +0 0.0665 +0 0.0952 +0 0.1301 +0 0.0542 +0 0.5238 +0 0.1582 +0 0.1336 +0 0.0556 +0 0.2457 +0 0.0974 +0 0.1234 +0 0.1174 +0 0.0736 +0 0.1873 +0 0.0682 +0 0.7439 +0 0.0802 +0 0.0477 +0 0.0529 +0 0.0935 +0 0.6527 +0 0.0532 +0 0.1476 +0 0.0506 +0 0.0666 +0 0.1498 +0 0.1031 +0 0.0823 +0 0.4203 +0 0.1846 +0 0.2171 +1 0.8576 +0 0.2462 +0 0.0940 +0 0.1045 +0 0.1133 +0 0.3599 +0 0.3256 +0 0.0720 +0 0.0883 +0 0.1008 +0 0.0593 +0 0.1125 +0 0.0988 +0 0.0548 +0 0.0312 +0 0.0847 +0 0.0879 +0 0.2009 +0 0.0645 +0 0.1434 +0 0.1185 +0 0.2210 +0 0.0901 +0 0.3129 +0 0.2327 +0 0.1496 +0 0.0326 +0 0.1763 +0 0.0465 +0 0.1990 +0 0.0911 +0 0.1427 +0 0.1019 +0 0.7442 +0 0.1292 +0 0.0785 +0 0.1068 +0 0.2010 +0 0.0649 +0 0.0832 +0 0.0749 +0 0.1154 +0 0.0729 +0 0.3428 +0 0.1910 +0 0.0895 +0 0.2923 +0 0.0676 +0 0.1092 +0 0.0492 +0 0.2147 +0 0.3357 +0 0.2447 +0 0.0567 +0 0.1463 +1 0.8028 +0 0.0587 +0 0.2542 +0 0.4816 +0 0.0718 +0 0.0642 +0 0.1362 +0 0.0903 +0 0.2347 +0 0.0516 +0 0.0833 +0 0.2140 +0 0.2874 +0 0.2331 +0 0.1622 +0 0.1782 +0 0.1049 +0 0.2759 +0 0.1917 +0 0.0779 +0 0.1000 +0 0.3678 +0 0.2051 +0 0.1620 +0 0.0828 +0 0.1020 +0 0.0537 +0 0.0934 +0 0.0994 +0 0.1235 +0 0.0584 +0 0.1251 +0 0.0873 +0 0.0638 +0 0.0795 +0 0.1127 +0 0.1191 +0 0.1218 +0 0.1422 +0 0.0575 +0 0.0678 +0 0.0890 +0 0.0708 +0 0.3642 +0 0.1476 +0 0.1128 +0 0.1281 +0 0.2754 +0 0.1645 +0 0.0303 +0 0.1425 +0 0.4680 +0 0.0961 +0 0.1767 +0 0.1592 +0 0.1004 +0 0.1019 +0 0.0718 +0 0.2093 +0 0.2040 +0 0.7072 +0 0.0690 +0 0.4330 +0 0.1215 +0 0.0860 +0 0.1554 +0 0.3936 +0 0.0845 +0 0.1849 +0 0.0609 +0 0.0585 +0 0.0615 +0 0.2107 +0 0.1295 +0 0.1704 +0 0.1194 +1 0.7656 +0 0.0838 +0 0.0965 +0 0.0795 +0 0.1706 +0 0.3806 +0 0.0808 +0 0.1062 +0 0.4127 +0 0.1176 +0 0.1045 +0 0.1320 +0 0.1323 +0 0.1177 +0 0.2251 +0 0.0642 +0 0.0650 +0 0.0938 +0 0.0658 +0 0.0692 +0 0.1077 +0 0.0832 +0 0.0567 +0 0.2260 +0 0.0681 +0 0.0865 +0 0.1810 +1 0.8299 +0 0.7489 +0 0.3012 +0 0.0556 +0 0.0730 +0 0.1171 +0 0.0666 +0 0.6441 +0 0.0698 +0 0.0568 +0 0.0421 +0 0.1026 +0 0.1155 +0 0.0421 +0 0.1487 +0 0.1153 +0 0.2946 +0 0.1742 +0 0.0940 +0 0.1808 +0 0.2053 +0 0.0662 +0 0.0688 +0 0.1746 +0 0.0893 +0 0.0698 +0 0.2432 +0 0.0376 +0 0.1850 +0 0.1794 +0 0.2495 +0 0.0436 +0 0.0975 +0 0.2596 +0 0.0813 +0 0.1514 +0 0.0995 +0 0.0918 +0 0.2860 +0 0.0624 +0 0.0758 +0 0.0641 +0 0.0442 +0 0.0613 +0 0.0974 +0 0.1749 +0 0.0648 +0 0.0958 +0 0.2497 +0 0.0642 +0 0.1704 +0 0.0564 +0 0.0618 +0 0.0948 +0 0.0671 +0 0.0940 +0 0.0705 +0 0.1497 +0 0.1657 +0 0.3505 +0 0.1177 +0 0.1488 +0 0.0849 +0 0.2248 +0 0.4298 +0 0.4967 +0 0.1628 +0 0.0559 +0 0.0851 +0 0.0760 +0 0.0803 +0 0.3740 +0 0.0838 +0 0.1453 +0 0.2792 +0 0.1089 +0 0.1526 +0 0.1351 +0 0.0972 +0 0.1248 +0 0.0828 +0 0.0743 +0 0.0843 +0 0.1019 +0 0.0601 +0 0.0625 +0 0.6806 +0 0.1120 +0 0.0665 +0 0.2426 +0 0.0587 +0 0.1170 +0 0.0677 +0 0.0666 +0 0.0857 +0 0.1115 +0 0.1219 +0 0.0929 +0 0.1355 +0 0.0419 +0 0.0803 +0 0.1164 +0 0.0541 +0 0.1222 +0 0.0837 +0 0.1091 +0 0.1553 +0 0.3327 +0 0.0605 +1 0.8497 +0 0.7197 +0 0.4023 +0 0.0823 +0 0.0552 +0 0.0990 +0 0.4288 +0 0.0484 +0 0.2628 +0 0.0912 +0 0.0299 +0 0.0604 +0 0.2276 +0 0.2192 +0 0.1310 +0 0.1280 +0 0.0917 +0 0.0680 +0 0.2702 +0 0.0957 +0 0.1382 +0 0.0445 +0 0.0515 +0 0.1860 +0 0.1502 +0 0.0649 +0 0.0642 +0 0.3495 +0 0.1347 +0 0.0710 +0 0.0900 +0 0.0722 +0 0.1636 +0 0.1566 +0 0.1157 +0 0.0399 +0 0.0749 +0 0.1111 +0 0.1419 +0 0.0677 +0 0.0846 +0 0.0483 +0 0.0685 +0 0.2357 +0 0.0509 +0 0.1540 +0 0.1783 +0 0.2106 +0 0.0405 +0 0.1020 +0 0.0917 +0 0.0553 +0 0.1647 +0 0.4915 +0 0.3393 +0 0.0511 +0 0.1398 +0 0.3764 +0 0.1295 +0 0.7424 +0 0.1218 +0 0.0800 +0 0.0306 +0 0.0653 +0 0.0567 +0 0.1084 +0 0.2050 +0 0.1696 +0 0.1279 +0 0.1021 +0 0.1410 +0 0.2660 +0 0.4859 +0 0.0500 +0 0.0678 +0 0.0597 +0 0.1418 +0 0.1254 +0 0.0439 +1 0.7515 +0 0.1773 +0 0.1105 +0 0.0725 +0 0.0872 +1 0.8306 +0 0.1013 +0 0.1025 +0 0.0586 +0 0.2882 +0 0.1007 +0 0.0464 +0 0.0742 +1 0.7882 +0 0.1424 +0 0.1467 +0 0.2483 +0 0.1749 +0 0.4809 +0 0.1579 +0 0.1289 +0 0.1551 +0 0.1136 +0 0.1450 +0 0.0708 +0 0.1038 +0 0.1028 +0 0.0407 +0 0.1331 +0 0.1326 +0 0.0573 +0 0.2703 +0 0.0954 +0 0.0389 +0 0.0886 +0 0.6072 +1 0.8083 +0 0.1221 +0 0.0699 +0 0.1105 +0 0.1703 +0 0.1832 +0 0.2399 +0 0.1147 +0 0.3156 +0 0.1462 +0 0.0904 +0 0.1508 +0 0.0394 +0 0.1329 +0 0.3495 +0 0.0786 +0 0.0902 +0 0.0881 +0 0.0593 +0 0.0854 +0 0.1129 +0 0.1010 +0 0.0737 +0 0.1033 +0 0.3271 +0 0.1610 +1 0.7544 +0 0.1002 +0 0.1147 +0 0.0752 +0 0.1532 +0 0.2490 +0 0.1330 +0 0.1070 +0 0.1283 +0 0.1171 +0 0.1197 +0 0.1582 +0 0.2240 +0 0.0668 +0 0.0682 +0 0.0638 +0 0.1876 +0 0.0885 +0 0.0842 +0 0.1853 +0 0.3760 +0 0.0853 +0 0.0693 +0 0.2353 +0 0.0944 +0 0.0652 +0 0.1434 +0 0.0622 +0 0.0748 +0 0.1480 +0 0.1328 +0 0.1242 +0 0.1017 +0 0.0865 +0 0.2969 +0 0.0734 +0 0.1822 +0 0.0526 +0 0.1365 +0 0.1317 +0 0.2185 +0 0.1145 +0 0.0549 +0 0.0622 +0 0.0608 +0 0.0728 +0 0.1111 +0 0.0734 +0 0.0888 +0 0.0771 +0 0.1690 +0 0.0715 +0 0.0875 +0 0.1660 +0 0.3051 +0 0.1253 +1 0.7533 +0 0.1950 +0 0.1872 +0 0.0870 +0 0.1368 +0 0.4836 +0 0.2086 +0 0.0496 +0 0.1236 +0 0.0708 +0 0.1608 +0 0.1650 +0 0.1343 +0 0.2362 +0 0.0820 +0 0.0767 +0 0.1766 +0 0.0624 +0 0.0843 +0 0.0611 +0 0.0956 +0 0.1646 +0 0.0480 +0 0.1514 +0 0.1257 +0 0.0426 +0 0.1289 +0 0.2302 +0 0.5706 +0 0.2446 +0 0.2918 +0 0.0807 +0 0.1453 +0 0.2445 +0 0.0710 +0 0.0563 +0 0.2048 +0 0.1013 +0 0.0904 +0 0.1226 +0 0.4449 +0 0.4200 +0 0.2459 +0 0.0613 +0 0.0621 +0 0.0582 +0 0.0946 +0 0.1594 +0 0.6507 +0 0.1330 +0 0.4090 +0 0.1591 +0 0.2384 +0 0.1110 +0 0.0452 +0 0.1203 +0 0.0784 +0 0.1359 +0 0.2354 +0 0.1430 +0 0.0757 +0 0.0645 +0 0.1615 +0 0.2439 +0 0.0693 +0 0.1865 +0 0.0640 +0 0.0980 +0 0.0762 +0 0.1716 +0 0.0713 +0 0.0413 +0 0.1314 +0 0.0582 +0 0.0394 +0 0.0998 +0 0.1152 +0 0.1124 +0 0.1479 +0 0.4004 +0 0.0530 +0 0.1128 +0 0.0953 +0 0.0987 +0 0.1210 +0 0.2307 +0 0.1677 +0 0.1271 +0 0.0649 +0 0.3571 +0 0.1135 +0 0.0633 +0 0.1760 +0 0.2698 +0 0.1153 +0 0.1204 +0 0.0834 +0 0.1483 +0 0.2958 +0 0.0575 +0 0.0788 +0 0.1915 +0 0.0822 +0 0.1561 +0 0.0570 +0 0.0495 +0 0.0989 +0 0.0545 +0 0.1313 +0 0.0960 +0 0.0856 +0 0.1564 +0 0.2388 +0 0.1662 +0 0.0598 +0 0.1443 +0 0.0924 +0 0.1107 +0 0.0699 +0 0.0580 +0 0.0423 +0 0.0659 +0 0.0867 +0 0.1879 +0 0.2861 +0 0.0719 +0 0.1751 +0 0.1944 +0 0.0932 +0 0.0772 +0 0.0817 +0 0.1679 +0 0.3593 +0 0.1891 +0 0.1333 +0 0.0439 +0 0.0905 +0 0.2657 +0 0.0938 +0 0.0769 +0 0.1864 +0 0.1959 +0 0.1791 +0 0.0792 +0 0.0760 +0 0.2486 +0 0.0896 +0 0.2220 +0 0.1324 +0 0.0759 +0 0.1465 +0 0.1005 +0 0.2212 +0 0.4851 +0 0.0391 +0 0.0762 +0 0.0525 +0 0.0738 +0 0.2758 +0 0.1485 +0 0.1177 +0 0.2173 +0 0.0690 +0 0.1102 +0 0.1635 +0 0.1388 +0 0.2599 +1 0.8630 +0 0.3239 +0 0.0348 +0 0.0717 +0 0.0716 +0 0.1864 +0 0.0935 +0 0.1024 +0 0.1152 +0 0.1080 +0 0.2523 +0 0.0629 +0 0.1672 +0 0.1015 +0 0.2259 +0 0.0779 +0 0.1494 +0 0.1180 +0 0.1830 +0 0.0760 +0 0.0631 +0 0.0554 +1 0.8126 +0 0.1141 +0 0.0588 +0 0.1053 +0 0.3112 +0 0.1392 +1 0.8063 +0 0.1152 +0 0.7312 +0 0.0487 +0 0.1855 +0 0.0718 +0 0.0712 +0 0.0840 +0 0.1028 +0 0.0363 +0 0.0583 +0 0.0550 +0 0.1001 +0 0.0438 +0 0.1908 +0 0.0784 +0 0.5465 +0 0.1071 +0 0.3743 +0 0.0675 +1 0.8300 +0 0.2654 +0 0.1581 +0 0.0840 +0 0.1219 +0 0.1900 +0 0.4850 +0 0.0661 +0 0.0609 +0 0.4535 +0 0.1606 +0 0.3253 +0 0.1639 +0 0.0559 +0 0.0385 +0 0.2630 +0 0.1637 +0 0.0841 +1 0.8281 +0 0.0892 +0 0.1382 +0 0.0648 +0 0.0905 +0 0.0424 +0 0.4497 +0 0.0668 +0 0.0571 +0 0.1867 +0 0.0849 +0 0.0640 +0 0.3142 +1 0.8004 +0 0.0441 +0 0.0708 +0 0.0945 +1 0.8625 +0 0.0827 +0 0.1014 +0 0.0826 +0 0.1289 +0 0.0688 +0 0.0892 +0 0.1141 +0 0.1991 +0 0.1452 +0 0.0558 +0 0.2376 +0 0.0743 +0 0.1233 +0 0.0720 +0 0.1219 +0 0.1673 +0 0.0798 +0 0.2123 +0 0.2044 +0 0.1274 +0 0.5156 +0 0.1403 +0 0.1110 +0 0.1595 +0 0.0904 +0 0.1175 +0 0.1141 +0 0.1934 +0 0.0361 +0 0.4750 +0 0.2000 +0 0.0966 +0 0.1571 +0 0.2241 +0 0.3966 +0 0.1545 +0 0.0963 +0 0.2227 +0 0.2138 +0 0.1238 +0 0.0780 +0 0.1001 +0 0.0995 +0 0.0632 +1 0.8552 +0 0.1559 +0 0.0911 +0 0.2369 +0 0.0720 +0 0.0872 +0 0.1106 +0 0.0547 +0 0.1192 +0 0.2201 +0 0.0709 +0 0.0830 +0 0.0888 +0 0.1761 +0 0.3549 +0 0.2094 +0 0.1259 +0 0.2798 +0 0.0952 +0 0.2025 +0 0.1390 +1 0.8101 +0 0.1414 +0 0.0658 +0 0.0526 +0 0.3897 +0 0.0476 +0 0.0874 +0 0.1056 +0 0.1753 +0 0.1229 +0 0.0910 +0 0.0646 +0 0.0999 +0 0.1414 +0 0.0721 +0 0.0539 +0 0.1547 +0 0.3458 +0 0.2366 +0 0.0684 +0 0.2610 +0 0.0464 +0 0.1332 +0 0.0987 +0 0.0583 +0 0.1085 +0 0.0683 +0 0.0687 +0 0.0510 +0 0.0952 +0 0.1569 +0 0.1358 +0 0.0669 +0 0.0692 +0 0.1230 +0 0.1662 +0 0.0891 +0 0.0781 +0 0.1980 +1 0.8377 +0 0.1285 +0 0.0719 +0 0.0882 +0 0.0767 +0 0.0861 +0 0.0820 +1 0.8067 +0 0.0902 +0 0.0935 +0 0.0693 +0 0.4317 +0 0.0729 +0 0.0379 +0 0.0556 +0 0.0792 +0 0.0726 +0 0.1653 +0 0.1222 +0 0.0454 +0 0.2479 +0 0.1058 +0 0.0877 +0 0.0628 +0 0.2462 +0 0.3324 +0 0.0798 +0 0.1807 +0 0.0781 +0 0.0736 +0 0.2922 +0 0.1277 +0 0.0997 +0 0.2005 +0 0.0982 +0 0.0394 +0 0.1556 +0 0.0482 +0 0.1928 +0 0.1430 +0 0.1090 +0 0.0614 +0 0.0932 +0 0.0290 +0 0.1744 +0 0.0937 +0 0.1420 +0 0.1222 +0 0.0489 +0 0.2055 +0 0.4055 +0 0.1693 +0 0.1696 +0 0.1496 +0 0.0390 +0 0.0739 +0 0.2085 +0 0.0316 +0 0.1510 +0 0.0997 +0 0.0342 +0 0.1098 +0 0.0909 +0 0.1132 +0 0.0896 +0 0.0431 +1 0.8224 +0 0.1488 +0 0.1141 +0 0.1027 +0 0.1039 +0 0.1561 +0 0.0495 +0 0.0451 +0 0.0508 +0 0.1536 +0 0.2659 +0 0.0721 +0 0.7429 +0 0.1023 +0 0.2225 +1 0.7945 +0 0.1046 +0 0.0585 +0 0.1429 +0 0.0467 +0 0.0983 +0 0.0804 +0 0.0559 +0 0.7374 +0 0.2887 +1 0.8109 +0 0.0943 +0 0.2524 +0 0.1283 +0 0.0954 +0 0.0895 +0 0.1371 +0 0.1212 +0 0.0551 +0 0.0821 +0 0.0864 +0 0.1565 +0 0.4676 +0 0.1575 +0 0.0557 +0 0.0919 +0 0.1278 +0 0.0873 +0 0.3992 +0 0.0863 +0 0.2911 +0 0.0960 +0 0.0517 +0 0.2224 +0 0.1378 +0 0.1003 +0 0.0990 +0 0.0746 +0 0.3978 +0 0.0929 +0 0.0530 +0 0.0559 +0 0.1274 +0 0.3674 +0 0.1084 +0 0.0583 +0 0.1365 +0 0.0705 +1 0.8921 +0 0.1372 +0 0.2056 +0 0.2057 +0 0.0704 +0 0.0910 +1 0.8269 +0 0.0556 +0 0.1286 +0 0.0763 +0 0.0840 +0 0.0822 +0 0.1936 +0 0.0876 +0 0.1787 +0 0.0958 +0 0.0732 +0 0.4586 +0 0.1085 +0 0.7099 +0 0.2026 +0 0.0837 +0 0.0495 +0 0.0670 +0 0.6132 +0 0.0828 +0 0.0826 +0 0.2257 +0 0.0966 +0 0.0525 +0 0.0730 +0 0.1425 +0 0.2774 +0 0.7418 +0 0.0433 +0 0.1008 +0 0.1984 +0 0.1491 +1 0.8525 +0 0.0562 +0 0.0449 +0 0.0344 +0 0.1184 +0 0.5073 +0 0.0788 +0 0.2924 +1 0.7769 +0 0.0704 +0 0.0976 +0 0.1082 +0 0.1316 +0 0.0519 +0 0.1045 +0 0.0786 +0 0.1110 +0 0.0793 +0 0.1607 +0 0.0908 +1 0.8970 +0 0.1247 +0 0.3979 +0 0.0543 +0 0.1198 +0 0.0806 +0 0.0976 +0 0.0503 +0 0.0991 +0 0.1000 +0 0.1898 +0 0.1111 +0 0.2251 +0 0.2045 +0 0.4299 +0 0.0875 +0 0.1637 +0 0.1152 +1 0.8030 +0 0.0502 +0 0.0640 +0 0.1126 +0 0.0624 +0 0.0604 +0 0.0848 +0 0.1337 +0 0.0676 +0 0.2456 +0 0.1567 +0 0.1760 +0 0.0988 +0 0.0839 +0 0.0767 +0 0.1184 +0 0.2157 +0 0.0579 +0 0.0886 +0 0.1494 +0 0.0398 +0 0.0886 +0 0.2364 +0 0.1642 +0 0.0663 +0 0.1465 +0 0.5500 +0 0.1433 +0 0.0448 +0 0.1416 +0 0.1147 +0 0.0798 +0 0.0534 +0 0.0628 +0 0.0647 +0 0.0637 +0 0.0483 +0 0.1081 +0 0.0727 +0 0.0873 +0 0.0909 +0 0.0990 +0 0.0813 +0 0.1597 +0 0.1023 +0 0.0487 +0 0.0734 +0 0.1667 +0 0.0468 +0 0.0776 +0 0.1213 +0 0.0445 +0 0.0956 +0 0.5765 +0 0.0414 +0 0.0956 +0 0.0712 +0 0.1080 +0 0.4250 +0 0.1621 +0 0.0679 +0 0.0589 +0 0.0531 +0 0.1264 +0 0.0646 +0 0.0750 +0 0.0722 +0 0.0388 +0 0.1646 +0 0.2007 +0 0.1023 +0 0.1698 +0 0.5043 +0 0.0485 +0 0.3842 +0 0.2775 +0 0.1261 +0 0.1600 +0 0.3281 +0 0.1404 +0 0.1534 +0 0.0622 +0 0.1180 +0 0.1608 +0 0.1075 +0 0.1923 +0 0.2295 +0 0.2604 +0 0.0774 +0 0.1729 +0 0.0731 +0 0.2792 +0 0.0516 +0 0.0675 +0 0.1680 +0 0.1000 +0 0.1606 +0 0.0770 +0 0.0792 +0 0.1032 +0 0.3176 +0 0.0541 +0 0.0970 +0 0.1022 +0 0.1579 +0 0.0778 +0 0.0681 +0 0.0547 +0 0.0616 +0 0.0912 +0 0.0857 +0 0.0572 +0 0.1534 +0 0.2770 +0 0.1531 +0 0.0532 +0 0.0843 +0 0.0664 +0 0.0886 +0 0.1645 +0 0.0755 +0 0.1515 +0 0.0681 +0 0.1221 +0 0.1859 +0 0.1471 +0 0.0784 +0 0.1427 +0 0.2164 +0 0.2260 +0 0.1613 +0 0.1582 +0 0.1398 +0 0.0616 +0 0.0498 +0 0.0524 +0 0.0955 +0 0.0484 +0 0.1045 +0 0.4144 +0 0.1703 +0 0.0646 +0 0.0737 +0 0.1767 +0 0.1413 +0 0.0501 +0 0.1063 +0 0.0956 +0 0.1912 +0 0.1653 +0 0.0785 +0 0.0685 +0 0.6324 +0 0.1116 +0 0.1114 +0 0.0987 +0 0.0484 +0 0.0746 +0 0.0979 +0 0.1558 +0 0.0728 +0 0.1148 +0 0.1037 +0 0.2739 +0 0.1166 +0 0.1904 +0 0.0757 +0 0.0599 +0 0.2929 +0 0.0728 +0 0.0532 +0 0.0863 +0 0.0872 +0 0.2487 +0 0.0795 +0 0.1646 +0 0.1245 +0 0.1114 +0 0.2223 +0 0.1063 +0 0.0465 +0 0.3914 +0 0.1327 +0 0.2957 +0 0.1065 +0 0.0852 +0 0.1744 +0 0.1413 +0 0.0365 +0 0.0527 +0 0.0431 +0 0.2081 +0 0.0849 +0 0.0627 +0 0.1152 +0 0.0532 +0 0.0375 +0 0.1341 +0 0.0897 +0 0.0721 +0 0.0642 +0 0.0708 +0 0.0851 +0 0.3707 +0 0.0654 +0 0.0659 +0 0.1379 +0 0.1188 +0 0.0476 +0 0.0580 +0 0.5669 +0 0.2075 +0 0.0964 +0 0.1431 +0 0.0481 +0 0.1404 +0 0.2836 +0 0.1807 +0 0.0430 +0 0.0543 +0 0.1199 +0 0.1820 +0 0.0564 +0 0.0595 +0 0.1174 +0 0.0898 +0 0.0507 +0 0.4919 +0 0.2533 +0 0.0656 +0 0.1014 +0 0.1066 +0 0.0799 +0 0.0500 +0 0.0987 +0 0.1012 +0 0.1598 +0 0.2205 +0 0.1470 +0 0.1366 +0 0.1817 +0 0.0663 +0 0.2097 +0 0.0406 +0 0.0814 +0 0.0964 +0 0.1196 +0 0.0978 +0 0.1200 +0 0.0831 +0 0.1577 +0 0.0840 +0 0.1655 +0 0.0939 +0 0.0963 +0 0.0589 +0 0.0783 +0 0.0759 +0 0.1719 +0 0.0577 +0 0.2597 +0 0.0501 +0 0.1130 +0 0.1876 +0 0.0990 +0 0.0475 +0 0.7439 +0 0.0983 +0 0.0927 +0 0.0930 +0 0.1563 +0 0.3210 +0 0.0630 +0 0.0888 +0 0.0687 +0 0.4415 +0 0.2483 +1 0.7584 +0 0.0652 +0 0.1024 +0 0.0922 +0 0.0588 +0 0.1798 +0 0.1104 +0 0.4181 +0 0.1444 +0 0.2284 +0 0.2470 +0 0.0499 +0 0.0752 +0 0.0889 +0 0.2701 +0 0.0721 +0 0.1739 +0 0.0844 +0 0.0579 +0 0.0737 +0 0.4948 +0 0.0972 +0 0.1124 +0 0.0937 +0 0.0425 +0 0.0736 +0 0.1054 +0 0.2605 +0 0.1796 +0 0.0353 +0 0.3011 +0 0.0709 +0 0.1067 +0 0.1691 +0 0.0814 +0 0.0878 +0 0.0492 +0 0.0867 +0 0.0625 +0 0.0945 +0 0.1452 +0 0.0894 +0 0.0440 +0 0.2470 +0 0.1336 +0 0.0706 +0 0.0802 +0 0.0732 +0 0.6859 +0 0.1316 +0 0.0824 +0 0.0339 +0 0.0642 +0 0.0630 +0 0.0753 +0 0.0972 +0 0.1502 +0 0.1160 +0 0.1000 +0 0.3423 +0 0.0647 +0 0.1749 +0 0.0718 +0 0.2125 +0 0.0412 +0 0.0645 +0 0.1842 +0 0.2409 +0 0.0834 +0 0.3875 +0 0.0475 +0 0.1490 +0 0.1327 +0 0.0841 +0 0.0934 +0 0.0718 +0 0.1755 +0 0.1269 +0 0.1116 +0 0.0664 +0 0.0950 +0 0.1288 +0 0.0877 +0 0.5723 +0 0.0662 +0 0.0858 +0 0.0510 +0 0.0473 +0 0.0930 +0 0.0369 +0 0.1292 +0 0.0507 +0 0.0610 +0 0.0413 +0 0.1932 +0 0.1159 +0 0.0813 +0 0.0724 +0 0.1074 +0 0.1068 +0 0.0529 +0 0.1318 +0 0.0849 +0 0.6745 +0 0.0662 +1 0.7713 +0 0.2371 +0 0.1223 +1 0.8610 +0 0.0491 +0 0.0579 +0 0.1305 +0 0.1422 +0 0.1470 +0 0.1062 +0 0.5758 +0 0.0712 +0 0.1795 +0 0.1467 +0 0.1102 +0 0.1015 +0 0.0816 +0 0.1224 +0 0.1925 +0 0.1269 +0 0.0427 +0 0.0917 +0 0.0503 +0 0.1978 +0 0.1429 +0 0.2148 +0 0.2076 +0 0.1619 +0 0.0509 +0 0.0723 +0 0.0466 +0 0.1056 +0 0.1185 +0 0.1356 +1 0.8652 +0 0.3164 +0 0.0644 +0 0.1540 +0 0.1169 +0 0.1804 +0 0.0837 +0 0.2743 +0 0.2244 +0 0.1105 +0 0.0474 +0 0.0739 +0 0.1281 +0 0.0724 +0 0.0488 +0 0.1220 +0 0.0865 +0 0.1722 +0 0.0799 +0 0.2047 +0 0.1158 +0 0.1452 +0 0.1251 +0 0.2281 +0 0.1322 +0 0.1716 +0 0.1822 +0 0.1190 +1 0.8068 +0 0.2478 +0 0.1265 +0 0.0449 +0 0.0770 +0 0.0991 +0 0.0790 +0 0.2335 +0 0.2076 +0 0.1520 +0 0.0947 +0 0.1775 +0 0.2091 +0 0.2586 +0 0.7440 +0 0.2865 +0 0.0710 +0 0.1493 +0 0.1662 +0 0.0699 +0 0.0779 +0 0.2090 +0 0.3037 +0 0.0551 +0 0.3119 +0 0.0805 +0 0.0429 +0 0.1609 +0 0.3445 +0 0.0888 +0 0.6945 +0 0.2252 +0 0.0547 +0 0.2040 +0 0.0744 +0 0.0887 +0 0.3457 +0 0.0707 +0 0.0670 +0 0.2075 +0 0.0892 +0 0.4952 +0 0.1404 +0 0.1209 +0 0.2185 +0 0.0403 +0 0.0614 +0 0.1273 +0 0.0770 +0 0.1067 +0 0.3252 +0 0.0648 +0 0.2353 +1 0.8400 +0 0.0333 +0 0.2686 +0 0.5008 +0 0.0949 +0 0.0605 +0 0.0363 +0 0.1684 +0 0.0750 +0 0.0542 +0 0.0744 +0 0.2258 +0 0.1150 +0 0.1110 +0 0.1040 +0 0.4205 +0 0.1193 +0 0.0334 +0 0.0996 +0 0.1254 +0 0.0738 +0 0.0481 +0 0.0984 +0 0.1466 +0 0.1300 +0 0.1212 +0 0.0836 +0 0.0364 +0 0.5097 +0 0.0632 +0 0.0728 +0 0.1126 +0 0.0681 +0 0.0756 +0 0.0917 +0 0.0460 +0 0.0493 +0 0.1626 +0 0.0636 +0 0.0825 +0 0.0802 +0 0.3109 +0 0.0707 +0 0.1292 +0 0.0535 +0 0.4881 +0 0.1872 +0 0.1204 +0 0.1086 +0 0.2780 +0 0.0977 +0 0.0768 +0 0.1257 +0 0.6581 +0 0.2278 +0 0.0981 +0 0.0639 +0 0.0465 +0 0.0518 +0 0.1258 +0 0.1351 +0 0.0588 +0 0.0844 +0 0.0767 +0 0.4154 +0 0.0828 +0 0.1373 +0 0.0691 +0 0.1054 +0 0.1826 +0 0.3974 +0 0.0997 +0 0.1685 +0 0.1233 +0 0.0572 +0 0.1378 +0 0.1296 +0 0.1103 +0 0.0665 +0 0.0941 +0 0.0854 +0 0.2995 +0 0.1092 +0 0.1227 +0 0.1180 +0 0.1387 +0 0.5695 +0 0.1147 +0 0.1360 +0 0.1195 +0 0.1173 +0 0.0678 +0 0.0732 +0 0.3635 +1 0.8971 +0 0.0944 +0 0.0674 +0 0.0688 +0 0.1155 +0 0.0689 +0 0.1234 +0 0.1454 +0 0.4857 +0 0.2388 +0 0.1765 +0 0.0851 +0 0.0833 +0 0.2245 +0 0.0586 +0 0.2052 +0 0.1660 +0 0.0937 +0 0.1485 +0 0.3049 +0 0.1442 +0 0.0899 +0 0.0950 +0 0.0512 +0 0.1346 +0 0.0583 +0 0.1236 +0 0.1850 +0 0.5396 +0 0.1079 +0 0.0575 +0 0.0702 +0 0.0858 +0 0.1490 +0 0.1824 +0 0.1401 +0 0.1846 +0 0.0872 +0 0.1520 +0 0.0402 +0 0.0686 +0 0.0625 +0 0.1647 +0 0.0421 +0 0.1485 +0 0.1032 +0 0.0453 +0 0.5934 +0 0.0747 +0 0.1179 +0 0.1766 +0 0.1011 +0 0.1324 +0 0.1854 +0 0.1189 +0 0.1090 +0 0.1452 +0 0.0996 +0 0.0794 +0 0.1477 +0 0.1119 +0 0.2261 +0 0.1044 +0 0.0722 +0 0.0443 +0 0.1454 +0 0.0902 +0 0.1487 +0 0.0881 +0 0.1080 +0 0.0486 +0 0.0623 +0 0.0924 +0 0.1540 +0 0.0677 +0 0.0677 +0 0.1330 +0 0.1619 +0 0.1510 +0 0.0667 +0 0.0763 +0 0.1180 +1 0.7985 +0 0.3048 +0 0.1638 +0 0.0499 +0 0.0551 +0 0.3285 +0 0.0609 +0 0.2579 +0 0.0733 +0 0.0548 +0 0.0455 +0 0.0555 +0 0.2137 +0 0.1114 +0 0.1090 +0 0.0944 +0 0.2131 +0 0.0583 +0 0.0452 +0 0.1386 +0 0.0884 +0 0.2069 +0 0.0920 +0 0.0690 +0 0.2214 +0 0.1656 +0 0.0546 +0 0.0479 +0 0.1173 +1 0.7556 +0 0.0567 +0 0.0676 +0 0.0406 +0 0.1781 +0 0.1734 +0 0.1306 +0 0.0879 +0 0.0622 +0 0.0919 +0 0.4559 +0 0.1004 +0 0.4258 +0 0.0403 +0 0.1153 +0 0.1328 +0 0.1924 +0 0.7353 +0 0.1423 +0 0.4142 +0 0.1086 +0 0.0628 +0 0.0796 +0 0.1143 +0 0.1367 +0 0.1203 +0 0.0828 +0 0.2903 +0 0.0663 +0 0.2604 +0 0.1058 +0 0.0816 +0 0.0340 +0 0.0471 +0 0.0796 +1 0.8166 +0 0.1287 +0 0.1966 +0 0.1096 +0 0.1684 +0 0.0967 +0 0.1487 +0 0.3796 +0 0.2306 +0 0.0836 +0 0.0538 +0 0.0892 +0 0.0460 +0 0.1198 +0 0.0580 +0 0.0616 +0 0.1095 +0 0.1012 +0 0.1095 +0 0.1496 +0 0.1304 +0 0.2556 +0 0.6436 +0 0.0389 +0 0.0909 +0 0.0805 +0 0.1750 +0 0.0918 +0 0.7266 +0 0.3134 +0 0.1087 +0 0.1843 +0 0.0833 +0 0.0955 +0 0.0919 +0 0.0617 +0 0.0428 +0 0.1208 +0 0.2142 +0 0.0655 +0 0.0513 +0 0.1195 +0 0.1120 +0 0.0735 +0 0.0535 +0 0.0848 +0 0.0916 +0 0.0834 +0 0.3035 +0 0.1498 +0 0.3078 +0 0.0482 +0 0.1796 +0 0.1238 +0 0.1507 +0 0.1636 +0 0.0573 +0 0.0656 +0 0.1114 +0 0.0780 +0 0.0727 +0 0.0788 +0 0.0850 +0 0.0969 +0 0.1314 +0 0.0413 +0 0.3390 +0 0.3697 +0 0.2107 +0 0.1355 +0 0.2367 +0 0.0526 +0 0.2081 +0 0.0959 +0 0.1233 +0 0.1115 +0 0.0589 +0 0.2422 +0 0.1310 +0 0.0731 +0 0.0613 +0 0.1439 +0 0.0652 +0 0.0790 +0 0.1377 +0 0.0419 +0 0.0722 +0 0.0748 +0 0.0553 +0 0.2649 +0 0.1939 +0 0.0872 +0 0.0901 +0 0.1624 +0 0.0775 +0 0.0655 +0 0.0316 +0 0.1621 +0 0.6571 +0 0.2337 +0 0.0732 +0 0.0782 +0 0.1729 +0 0.1422 +0 0.5994 +0 0.0700 +0 0.0846 +0 0.0632 +0 0.0992 +0 0.2318 +0 0.1149 +0 0.1626 +0 0.0601 +0 0.1620 +0 0.0437 +0 0.0789 +0 0.5432 +0 0.6986 +0 0.1316 +0 0.1995 +0 0.1182 +0 0.1267 +0 0.1472 +0 0.1028 +0 0.5171 +0 0.0682 +0 0.0993 +0 0.2098 +0 0.1012 +0 0.0843 +0 0.3594 +0 0.1145 +0 0.1608 +0 0.0720 +0 0.1058 +0 0.1224 +0 0.0594 +0 0.1177 +0 0.0746 +0 0.1069 +1 0.8284 +0 0.2692 +0 0.0566 +0 0.0435 +0 0.2121 +0 0.1447 +0 0.2507 +0 0.0477 +0 0.0775 +0 0.0990 +0 0.0517 +0 0.0531 +0 0.1201 +0 0.1452 +0 0.1498 +0 0.0655 +0 0.1379 +0 0.0729 +0 0.0494 +0 0.0990 +0 0.0886 +0 0.5289 +0 0.2380 +0 0.2023 +0 0.6459 +0 0.0754 +0 0.3452 +0 0.2135 +0 0.1868 +0 0.1004 +1 0.8414 +0 0.2452 +0 0.1228 +0 0.0988 +0 0.2206 +0 0.0802 +0 0.1062 +0 0.0494 +0 0.2674 +0 0.1031 +0 0.1307 +0 0.1506 +0 0.1603 +0 0.1043 +0 0.1571 +0 0.2002 +0 0.1819 +0 0.2211 +0 0.0779 +0 0.1033 +0 0.0995 +0 0.1950 +0 0.1118 +0 0.0804 +0 0.0585 +0 0.1887 +0 0.0896 +0 0.1076 +0 0.0680 +0 0.0927 +0 0.1199 +0 0.0849 +0 0.0748 +0 0.1758 +0 0.0784 +0 0.1375 +0 0.0744 +0 0.2865 +0 0.0971 +0 0.0622 +0 0.0518 +0 0.0751 +0 0.1192 +0 0.7019 +0 0.5760 +0 0.0893 +0 0.0923 +0 0.0907 +1 0.7739 +0 0.0942 +0 0.1092 +0 0.2661 +0 0.1974 +0 0.1190 +0 0.1096 +0 0.0417 +0 0.3479 +0 0.1736 +0 0.0615 +0 0.0486 +0 0.0936 +0 0.0696 +0 0.1378 +0 0.0983 +0 0.0726 +0 0.5345 +0 0.1611 +0 0.1433 +0 0.0610 +0 0.1032 +0 0.0614 +0 0.0927 +0 0.7151 +1 0.8938 +0 0.1774 +0 0.2975 +0 0.1145 +0 0.3002 +0 0.0902 +0 0.0569 +0 0.0805 +0 0.0637 +0 0.0741 +0 0.1072 +0 0.0828 +0 0.4418 +0 0.0880 +0 0.0969 +0 0.0967 +0 0.3649 +0 0.3373 +0 0.0520 +0 0.2537 +0 0.2289 +0 0.0820 +0 0.1939 +0 0.0690 +0 0.1381 +0 0.1075 +0 0.2195 +0 0.3566 +0 0.0591 +0 0.2764 +0 0.1136 +0 0.1393 +0 0.1700 +0 0.3239 +0 0.0387 +0 0.1909 +0 0.0531 +0 0.1538 +0 0.0480 +0 0.3973 +0 0.0815 +0 0.3938 +0 0.0816 +0 0.0826 +0 0.1342 +0 0.0685 +0 0.0824 +0 0.1214 +0 0.1400 +0 0.2224 +0 0.1821 +0 0.2439 +0 0.5379 +0 0.1173 +1 0.7587 +0 0.0300 +0 0.0655 +0 0.0759 +0 0.1334 +0 0.0444 +0 0.0938 +0 0.2007 +0 0.3507 +0 0.1783 +0 0.1064 +0 0.6556 +0 0.1734 +0 0.0828 +0 0.1256 +0 0.7216 +0 0.0487 +0 0.2410 +0 0.1333 +0 0.1582 +0 0.0839 +0 0.4373 +0 0.0602 +0 0.0831 +0 0.1702 +0 0.2175 +0 0.1522 +0 0.0910 +0 0.0739 +0 0.0464 +0 0.0543 +0 0.0572 +0 0.1208 +0 0.1248 +0 0.1714 +0 0.1184 +0 0.1214 +0 0.0474 +0 0.0435 +0 0.0873 +0 0.1387 +0 0.1521 +0 0.1155 +0 0.1390 +0 0.1144 +0 0.1016 +0 0.1623 +1 0.8268 +0 0.0655 +0 0.1122 +0 0.2111 +0 0.2395 +0 0.1428 +0 0.1361 +0 0.0805 +0 0.0996 +0 0.1780 +0 0.1164 +0 0.5116 +0 0.0849 +0 0.2205 +0 0.1490 +0 0.0678 +0 0.1437 +0 0.1263 +0 0.1630 +0 0.0889 +0 0.1967 +0 0.3308 +0 0.0360 +0 0.0866 +0 0.0939 +0 0.1040 +0 0.0992 +0 0.0941 +0 0.1072 +0 0.0480 +0 0.1124 +0 0.0523 +0 0.2058 +0 0.0723 +0 0.2375 +0 0.0819 +0 0.0809 +0 0.0731 +0 0.0634 +0 0.1966 +0 0.0584 +0 0.1871 +0 0.1293 +0 0.1406 +0 0.0797 +0 0.1074 +0 0.0564 +0 0.0989 +0 0.0558 +0 0.0883 +0 0.2910 +0 0.1032 +0 0.0894 +0 0.1086 +0 0.1851 +0 0.0832 +0 0.1528 +0 0.2479 +0 0.0659 +0 0.0654 +0 0.0678 +0 0.0901 +0 0.0963 +0 0.0777 +0 0.0598 +0 0.1962 +0 0.4599 +0 0.1176 +0 0.0838 +0 0.0668 +0 0.0975 +0 0.1869 +0 0.1056 +1 0.8574 +0 0.1498 +0 0.1174 +0 0.1905 +0 0.0591 +0 0.0529 +0 0.0488 +0 0.5806 +0 0.0489 +0 0.1523 +0 0.1409 +0 0.0970 +0 0.6938 +0 0.2270 +0 0.1851 +0 0.1485 +0 0.0856 +0 0.2100 +0 0.7319 +0 0.0646 +0 0.1595 +0 0.1797 +0 0.6684 +0 0.0511 +0 0.0930 +0 0.0739 +0 0.0650 +0 0.6339 +0 0.1525 +0 0.0575 +0 0.0647 +0 0.0933 +0 0.0433 +0 0.1545 +0 0.0970 +0 0.1135 +0 0.2633 +0 0.1348 +0 0.1467 +0 0.1076 +0 0.0788 +0 0.1377 +0 0.2938 +0 0.1687 +0 0.0513 +0 0.1482 +0 0.0523 +0 0.0382 +0 0.3212 +0 0.0965 +0 0.1152 +0 0.0734 +0 0.1958 +0 0.1256 +0 0.0978 +0 0.0693 +0 0.0415 +0 0.0961 +0 0.1125 +0 0.1584 +0 0.0861 +0 0.0588 +0 0.0785 +0 0.0832 +0 0.2634 +0 0.0979 +0 0.1036 +0 0.0896 +0 0.1369 +0 0.0515 +0 0.1921 +0 0.1436 +0 0.1298 +0 0.1560 +0 0.0947 +0 0.1955 +0 0.0619 +0 0.2055 +0 0.0801 +0 0.1513 +0 0.1067 +0 0.4605 +0 0.1204 +0 0.2542 +0 0.0562 +0 0.1362 +0 0.0490 +0 0.0884 +0 0.1450 +0 0.2488 +0 0.6447 +0 0.2747 +0 0.1980 +0 0.1256 +0 0.7209 +0 0.1786 +0 0.1141 +0 0.1154 +0 0.1344 +0 0.0590 +0 0.0626 +0 0.2532 +0 0.1072 +0 0.0766 +0 0.1308 +0 0.3727 +0 0.0856 +0 0.2264 +0 0.3191 +0 0.1429 +0 0.0842 +0 0.0687 +0 0.1251 +0 0.0719 +0 0.1031 +0 0.0800 +0 0.0834 +0 0.1276 +0 0.0985 +0 0.4942 +0 0.0946 +0 0.0838 +0 0.0772 +0 0.0382 +0 0.0925 +0 0.1622 +0 0.0542 +0 0.0499 +0 0.1008 +0 0.2018 +0 0.1164 +0 0.0630 +0 0.0577 +0 0.1149 +0 0.1132 +0 0.1016 +0 0.2399 +0 0.1074 +0 0.1449 +0 0.0843 +0 0.2703 +0 0.1438 +0 0.0454 +0 0.1231 +0 0.0531 +0 0.0509 +0 0.1107 +0 0.1429 +0 0.5956 +0 0.0626 +0 0.2310 +0 0.1584 +0 0.4580 +0 0.1307 +0 0.0934 +0 0.0797 +0 0.0469 +1 0.8037 +0 0.1451 +0 0.0334 +0 0.0818 +0 0.2216 +0 0.3162 +0 0.1176 +0 0.2028 +0 0.1030 +0 0.0574 +0 0.0983 +0 0.1656 +0 0.1217 +0 0.0700 +0 0.0758 +0 0.0387 +0 0.1033 +0 0.0761 +0 0.2045 +0 0.0640 +0 0.2307 +0 0.1396 +0 0.1854 +0 0.1016 +0 0.0918 +0 0.0332 +0 0.0465 +0 0.1357 +0 0.0678 +0 0.1057 +0 0.3269 +0 0.6410 +0 0.2603 +0 0.1874 +0 0.0618 +0 0.0516 +0 0.0941 +0 0.0751 +0 0.0450 +0 0.1728 +0 0.0755 +0 0.0883 +0 0.2135 +0 0.0430 +0 0.1016 +0 0.0813 +0 0.0966 +0 0.1286 +0 0.3744 +0 0.1524 +0 0.3465 +0 0.1035 +0 0.0851 +0 0.0436 +0 0.0916 +0 0.1039 +0 0.1050 +0 0.0657 +0 0.1142 +0 0.0874 +1 0.8447 +0 0.1299 +0 0.0728 +0 0.0750 +0 0.0699 +0 0.0688 +0 0.0642 +0 0.2793 +0 0.0756 +0 0.0477 +0 0.1151 +0 0.0744 +0 0.1382 +0 0.0586 +0 0.1826 +0 0.0567 +0 0.0561 +0 0.0709 +0 0.0820 +0 0.1103 +0 0.0935 +0 0.2682 +0 0.2023 +0 0.2991 +0 0.1817 +0 0.1858 +0 0.0662 +0 0.1328 +0 0.0548 +0 0.1909 +0 0.1420 +0 0.0761 +0 0.1059 +0 0.0501 +0 0.1072 +0 0.0640 +0 0.0988 +0 0.0881 +0 0.1741 +0 0.0944 +0 0.2397 +0 0.1204 +0 0.0598 +0 0.0681 +0 0.0464 +0 0.0990 +0 0.1035 +0 0.0904 +0 0.2350 +0 0.1562 +0 0.2136 +0 0.6688 +0 0.0925 +0 0.1377 +0 0.0666 +0 0.1093 +0 0.0660 +0 0.0797 +0 0.0909 +1 0.7647 +0 0.1142 +0 0.1977 +0 0.0538 +0 0.5472 +0 0.0498 +0 0.1458 +0 0.0686 +0 0.1411 +0 0.0722 +0 0.0715 +0 0.1571 +0 0.2403 +0 0.0775 +0 0.1104 +0 0.1296 +0 0.1157 +0 0.0774 +0 0.1421 +0 0.0479 +0 0.3596 +0 0.2872 +0 0.0579 +0 0.1054 +0 0.0759 +0 0.4637 +0 0.1018 +0 0.1133 +0 0.1016 +1 0.8134 +0 0.0810 +0 0.1190 +0 0.1741 +0 0.1034 +0 0.0714 +0 0.0845 +0 0.3152 +0 0.2786 +0 0.0597 +0 0.2399 +0 0.1081 +0 0.1724 +0 0.1404 +0 0.0839 +0 0.1598 +0 0.1638 +0 0.1364 +0 0.0784 +0 0.0795 +0 0.0708 +0 0.4295 +0 0.1672 +0 0.0699 +0 0.1270 +0 0.0992 +0 0.1181 +0 0.0962 +0 0.3042 +0 0.0992 +0 0.7113 +0 0.0886 +0 0.1655 +0 0.0703 +0 0.0840 +0 0.0689 +0 0.0723 +0 0.0564 +0 0.7281 +0 0.2292 +0 0.0511 +0 0.1551 +0 0.1244 +0 0.0752 +0 0.1401 +0 0.1149 +0 0.1197 +0 0.1929 +0 0.2236 +0 0.2162 +0 0.3259 +0 0.1471 +0 0.0920 +0 0.0546 +0 0.0875 +0 0.0667 +0 0.1207 +0 0.2671 +0 0.1510 +0 0.1013 +0 0.1277 +0 0.0739 +0 0.1892 +0 0.2715 +0 0.1863 +0 0.1087 +0 0.0943 +0 0.1235 +0 0.0395 +0 0.2230 +0 0.1098 +0 0.2498 +0 0.4050 +0 0.0920 +0 0.1169 +0 0.1266 +0 0.1190 +0 0.2315 +0 0.1157 +0 0.1004 +0 0.0461 +0 0.1000 +0 0.0515 +0 0.1226 +0 0.5347 +0 0.1504 +0 0.1118 +0 0.0415 +0 0.1087 +0 0.0979 +0 0.0731 +0 0.1158 +0 0.2020 +0 0.0646 +0 0.1005 +0 0.0590 +0 0.0732 +0 0.1451 +0 0.3386 +0 0.1209 +0 0.2760 +0 0.4085 +0 0.0778 +0 0.1808 +0 0.0854 +0 0.0792 +0 0.1408 +0 0.0557 +0 0.0633 +0 0.0894 +0 0.3294 +0 0.0973 +0 0.1195 +0 0.2569 +0 0.0354 +0 0.1151 +0 0.0643 +0 0.1865 +0 0.0801 +0 0.0429 +0 0.1719 +0 0.0950 +0 0.0749 +0 0.1293 +0 0.0477 +0 0.1773 +0 0.0869 +0 0.2051 +0 0.0751 +0 0.1293 +0 0.3038 +0 0.1617 +0 0.0935 +0 0.1033 +0 0.3270 +0 0.1043 +0 0.1239 +0 0.1076 +0 0.0623 +0 0.1298 +0 0.1505 +0 0.0655 +0 0.1426 +0 0.0562 +0 0.1597 +0 0.0914 +0 0.1211 +0 0.1288 +0 0.1276 +0 0.1319 +0 0.0433 +0 0.0630 +0 0.0601 +0 0.0938 +0 0.1637 +0 0.0620 +0 0.1105 +0 0.2602 +0 0.0452 +0 0.1117 +1 0.8096 +0 0.0629 +0 0.2302 +0 0.0606 +0 0.1320 +0 0.0870 +0 0.0383 +0 0.0684 +0 0.0604 +0 0.0815 +0 0.1175 +0 0.0834 +0 0.0594 +0 0.1201 +0 0.0805 +0 0.2048 +0 0.1011 +0 0.0799 +0 0.1029 +0 0.2129 +0 0.0523 +0 0.3320 +0 0.2413 +0 0.3251 +0 0.1377 +0 0.1169 +0 0.0640 +0 0.1075 +0 0.1357 +0 0.0518 +1 0.8747 +0 0.1440 +0 0.0773 +0 0.0632 +0 0.2105 +0 0.3237 +0 0.0954 +0 0.6087 +0 0.1833 +0 0.0741 +0 0.2180 +0 0.0384 +0 0.0509 +0 0.1524 +0 0.0531 +1 0.8122 +0 0.0963 +0 0.0994 +1 0.8252 +0 0.2033 +0 0.1525 +0 0.2142 +0 0.0840 +0 0.0656 +0 0.1111 +0 0.0504 +0 0.0904 +0 0.1086 +0 0.0615 +0 0.0979 +0 0.1071 +0 0.1015 +0 0.1096 +0 0.3923 +0 0.0728 +0 0.1086 +0 0.1003 +0 0.1937 +0 0.2339 +0 0.1099 +0 0.0817 +0 0.5229 +0 0.1528 +0 0.0528 +0 0.0388 +0 0.1372 +0 0.0959 +0 0.0722 +0 0.1077 +0 0.2077 +0 0.1627 +0 0.1710 +0 0.0680 +0 0.2050 +1 0.7862 +0 0.1648 +0 0.1631 +0 0.1022 +0 0.2963 +0 0.1314 +0 0.2215 +0 0.1585 +0 0.2449 +0 0.0842 +0 0.2417 +0 0.1812 +0 0.0993 +0 0.3206 +0 0.0860 +0 0.1828 +0 0.1434 +0 0.1331 +0 0.0957 +0 0.1551 +0 0.1527 +0 0.2685 +0 0.4034 +0 0.1436 +0 0.0806 +0 0.0735 +0 0.2990 +0 0.0541 +0 0.1197 +0 0.1335 +0 0.1017 +0 0.0809 +0 0.2753 +0 0.1392 +0 0.0873 +0 0.0560 +0 0.0935 +0 0.1945 +0 0.1300 +0 0.0668 +0 0.0910 +0 0.0780 +0 0.0881 +0 0.0320 +0 0.1082 +0 0.0709 +0 0.1470 +0 0.0895 +0 0.0576 +0 0.0815 +0 0.2929 +0 0.0508 +0 0.1015 +0 0.1162 +0 0.0624 +0 0.0845 +0 0.1529 +0 0.2997 +0 0.0917 +0 0.0811 +0 0.1214 +0 0.0825 +0 0.1071 +0 0.1938 +0 0.0796 +0 0.0384 +0 0.1325 +0 0.1233 +0 0.0835 +0 0.1710 +0 0.0889 +0 0.2254 +0 0.0496 +0 0.0656 +0 0.0523 +0 0.2329 +0 0.0664 +0 0.3821 +0 0.1141 +0 0.0606 +0 0.1157 +0 0.0727 +0 0.1043 +0 0.1226 +0 0.2717 +0 0.4324 +0 0.1137 +0 0.1291 +0 0.0841 +0 0.1445 +0 0.0426 +0 0.1266 +0 0.0400 +0 0.1515 +0 0.1004 +0 0.1240 +0 0.1160 +0 0.3791 +0 0.0696 +0 0.1111 +0 0.1418 +0 0.6367 +0 0.1426 +0 0.0687 +0 0.1584 +0 0.2190 +0 0.1082 +0 0.1023 +0 0.1744 +0 0.0777 +0 0.0743 +0 0.1447 +0 0.2200 +0 0.2417 +0 0.1743 +0 0.1252 +0 0.0656 +0 0.1108 +0 0.1662 +0 0.2154 +0 0.7342 +0 0.1486 +0 0.0729 +0 0.1529 +0 0.1315 +0 0.4326 +0 0.0605 +0 0.0798 +0 0.0819 +0 0.0630 +0 0.1089 +0 0.0644 +0 0.1175 +0 0.0818 +0 0.0502 +0 0.0373 +0 0.0571 +0 0.0996 +0 0.0560 +0 0.0873 +0 0.2076 +0 0.1399 +0 0.2890 +0 0.1489 +0 0.0689 +0 0.0440 +0 0.0466 +0 0.0411 +0 0.0763 +0 0.0774 +0 0.0360 +0 0.0801 +0 0.0845 +0 0.0666 +0 0.0579 +0 0.1227 +0 0.1051 +0 0.0607 +0 0.1658 +0 0.0568 +0 0.2067 +0 0.0799 +0 0.1785 +0 0.5021 +0 0.0975 +0 0.1791 +0 0.0896 +1 0.8575 +0 0.1154 +0 0.0436 +0 0.1084 +0 0.0890 +0 0.2645 +0 0.1958 +0 0.1131 +0 0.1026 +0 0.1014 +0 0.0336 +0 0.0828 +0 0.1840 +0 0.0761 +0 0.0584 +0 0.1067 +0 0.1533 +0 0.2681 +0 0.0906 +0 0.1525 +0 0.1019 +0 0.0968 +0 0.0848 +0 0.1944 +0 0.1074 +0 0.4636 +0 0.4423 +0 0.0376 +0 0.0801 +0 0.0747 +0 0.0751 +0 0.1801 +1 0.8475 +0 0.4327 +0 0.1987 +0 0.0631 +0 0.2665 +0 0.0922 +0 0.1313 +0 0.0672 +0 0.3175 +0 0.2886 +0 0.0612 +0 0.2091 +0 0.1118 +0 0.1007 +0 0.0891 +0 0.2035 +0 0.1471 +0 0.0680 +0 0.0679 +0 0.1790 +0 0.1318 +0 0.1222 +0 0.0606 +0 0.1139 +0 0.2663 +0 0.0690 +0 0.1967 +0 0.2487 +0 0.1623 +0 0.0680 +0 0.1879 +0 0.1240 +0 0.0958 +0 0.0736 +0 0.0614 +0 0.0523 +0 0.0394 +0 0.1366 +0 0.1116 +0 0.0747 +0 0.2146 +0 0.0684 +0 0.0661 +0 0.2615 +0 0.1171 +0 0.1781 +0 0.1038 +0 0.1703 +0 0.1440 +0 0.1807 +0 0.0577 +0 0.0783 +0 0.0623 +0 0.1388 +0 0.1737 +0 0.0484 +0 0.0490 +0 0.1595 +0 0.0717 +0 0.0391 +0 0.1033 +0 0.0865 +0 0.1183 +0 0.0482 +0 0.0724 +0 0.3177 +0 0.0817 +0 0.0415 +0 0.3272 +0 0.1571 +0 0.0553 +0 0.1221 +0 0.2744 +0 0.0837 +0 0.0636 +0 0.1183 +0 0.3331 +0 0.1505 +0 0.0758 +0 0.1501 +0 0.0582 +0 0.1712 +0 0.1536 +0 0.0381 +0 0.1340 +0 0.0733 +0 0.2442 +0 0.1543 +0 0.0914 +0 0.3905 +0 0.1955 +0 0.1546 +0 0.3330 +0 0.0391 +0 0.0947 +0 0.0636 +0 0.1124 +0 0.2573 +0 0.2380 +0 0.1666 +0 0.3205 +0 0.3206 +0 0.3027 +0 0.1230 +0 0.0711 +0 0.4639 +0 0.1127 +0 0.1539 +0 0.1133 +0 0.0495 +0 0.0858 +0 0.0572 +0 0.0466 +0 0.0647 +0 0.2103 +0 0.2999 +0 0.1324 +0 0.0579 +0 0.0655 +0 0.0524 +0 0.2331 +0 0.0837 +0 0.0821 +0 0.0772 +0 0.0989 +0 0.1125 +0 0.0554 +0 0.0586 +0 0.0472 +0 0.1988 +0 0.2560 +0 0.6668 +0 0.1746 +0 0.0584 +0 0.1118 +0 0.1159 +0 0.1108 +0 0.0643 +0 0.0779 +0 0.0796 +0 0.1958 +0 0.6082 +0 0.0727 +0 0.2238 +0 0.2271 +0 0.1164 +0 0.0988 +1 0.7594 +0 0.0610 +0 0.0806 +0 0.1049 +0 0.0807 +0 0.1283 +0 0.2889 +0 0.1017 +0 0.5852 +0 0.1186 +1 0.8073 +0 0.0743 +0 0.0476 +0 0.1101 +0 0.2653 +0 0.1679 +0 0.0551 +0 0.0857 +0 0.0292 +0 0.2514 +0 0.0644 +0 0.1106 +0 0.0958 +0 0.1494 +0 0.0845 +0 0.0656 +0 0.0918 +0 0.0663 +0 0.1901 +0 0.4088 +0 0.1502 +0 0.0899 +0 0.1369 +0 0.2043 +0 0.1217 +0 0.1955 +0 0.0457 +0 0.1271 +0 0.3044 +0 0.1190 +0 0.1499 +0 0.0654 +0 0.1899 +0 0.0590 +0 0.1556 +0 0.7070 +0 0.0739 +0 0.1695 +0 0.0994 +0 0.1663 +0 0.1022 +0 0.0698 +0 0.1025 +0 0.0995 +0 0.1468 +0 0.0437 +0 0.4145 +0 0.0983 +0 0.0701 +0 0.2163 +0 0.0684 +0 0.0695 +0 0.0400 +0 0.0521 +0 0.1074 +0 0.0678 +0 0.1127 +0 0.2433 +0 0.2176 +0 0.0400 +0 0.1091 +0 0.0787 +0 0.0566 +0 0.0850 +0 0.0627 +0 0.1247 +0 0.2475 +0 0.0666 +0 0.1630 +0 0.1571 +0 0.1727 +0 0.0553 +0 0.0717 +0 0.0852 +0 0.1122 +0 0.1140 +0 0.0866 +0 0.0568 +0 0.0525 +0 0.1867 +0 0.0700 +0 0.0720 +0 0.0989 +0 0.2117 +0 0.0714 +0 0.6856 +0 0.0769 +0 0.0583 +0 0.0841 +0 0.0708 +0 0.1284 +0 0.0843 +0 0.0432 +0 0.0711 +0 0.0896 +0 0.1019 +0 0.0446 +0 0.0704 +0 0.0474 +0 0.1573 +0 0.0939 +0 0.0520 +0 0.1138 +0 0.0733 +0 0.1344 +0 0.0757 +0 0.3436 +0 0.0934 +0 0.0568 +0 0.2892 +0 0.0811 +0 0.1171 +0 0.0546 +0 0.1076 +0 0.1995 +0 0.2145 +0 0.3290 +0 0.1911 +0 0.0579 +0 0.0553 +0 0.1197 +0 0.2752 +0 0.3253 +0 0.1280 +0 0.0703 +0 0.1137 +0 0.2363 +0 0.0734 +0 0.0959 +0 0.1241 +0 0.0831 +0 0.2149 +0 0.0824 +0 0.1061 +0 0.0512 +0 0.6611 +0 0.1138 +0 0.0791 +0 0.2285 +0 0.0384 +0 0.0773 +0 0.0838 +0 0.1162 +0 0.0842 +0 0.0740 +0 0.5813 +0 0.1025 +0 0.0433 +0 0.0846 +0 0.2523 +0 0.0499 +0 0.0630 +0 0.1666 +0 0.2416 +0 0.0641 +0 0.0402 +0 0.1786 +0 0.0652 +0 0.1753 +0 0.0483 +0 0.0370 +0 0.0959 +0 0.0990 +0 0.2557 +0 0.1036 +0 0.1035 +0 0.0914 +0 0.0915 +0 0.1998 +0 0.0499 +0 0.0707 +0 0.1107 +0 0.0903 +0 0.1173 +0 0.1228 +0 0.1673 +0 0.1137 +0 0.6930 +0 0.0586 +0 0.1222 +0 0.1252 +0 0.0669 +0 0.2546 +0 0.0842 +0 0.0610 +0 0.0371 +0 0.1319 +0 0.1069 +0 0.0579 +0 0.1048 +0 0.0470 +0 0.1394 +0 0.0903 +0 0.0914 +0 0.1824 +0 0.0485 +0 0.0713 +1 0.7680 +0 0.0916 +0 0.6459 +0 0.1584 +0 0.0945 +0 0.0960 +0 0.0457 +0 0.2155 +0 0.0886 +0 0.1152 +0 0.0727 +0 0.0846 +0 0.1548 +0 0.0435 +0 0.1036 +0 0.0746 +0 0.2470 +0 0.1666 +0 0.0820 +0 0.1858 +0 0.0771 +0 0.1452 +0 0.0710 +0 0.5666 +0 0.0437 +0 0.2082 +0 0.1219 +0 0.1659 +0 0.0426 +0 0.1441 +0 0.0570 +0 0.1171 +0 0.0506 +0 0.3608 +0 0.1377 +0 0.5719 +0 0.1020 +0 0.1352 +0 0.0456 +0 0.2722 +0 0.0762 +0 0.2788 +0 0.2127 +0 0.0619 +0 0.3156 +0 0.0316 +0 0.1193 +0 0.0753 +0 0.0487 +0 0.1054 +0 0.1980 +0 0.0909 +0 0.0346 +0 0.2750 +0 0.1268 +0 0.0942 +0 0.1481 +0 0.0783 +0 0.1421 +0 0.3601 +0 0.1131 +0 0.1652 +0 0.1911 +0 0.3035 +0 0.0916 +0 0.0822 +0 0.0519 +0 0.1718 +0 0.2617 +0 0.1438 +0 0.3279 +0 0.0837 +0 0.0566 +0 0.1744 +0 0.0574 +0 0.1672 +0 0.0747 +0 0.1409 +0 0.0701 +0 0.2575 +1 0.8371 +0 0.3298 +0 0.1631 +0 0.0620 +0 0.0924 +0 0.1767 +0 0.0858 +0 0.0685 +0 0.0571 +0 0.0745 +0 0.1044 +0 0.0900 +0 0.0571 +0 0.1577 +0 0.0405 +0 0.0566 +0 0.0676 +0 0.1837 +0 0.1167 +0 0.0320 +0 0.0832 +0 0.2084 +0 0.0737 +0 0.2204 +0 0.6443 +0 0.1239 +0 0.0997 +0 0.2068 +0 0.0935 +0 0.1447 +0 0.0936 +0 0.1558 +0 0.1184 +1 0.8463 +0 0.7075 +0 0.6832 +0 0.0635 +0 0.1837 +0 0.7045 +0 0.0651 +0 0.1121 +0 0.1660 +0 0.1343 +0 0.0629 +0 0.1310 +0 0.2347 +0 0.0677 +0 0.0800 +0 0.0750 +0 0.1323 +0 0.3444 +0 0.0652 +0 0.0436 +1 0.7602 +0 0.0586 +0 0.0780 +0 0.5036 +0 0.1455 +0 0.1276 +0 0.1498 +0 0.0507 +0 0.0506 +0 0.1029 +0 0.0606 +0 0.0414 +0 0.0806 +0 0.1208 +0 0.0628 +0 0.1009 +0 0.1336 +0 0.6990 +0 0.2017 +0 0.1003 +0 0.0510 +0 0.0623 +0 0.1984 +0 0.2683 +0 0.0716 +0 0.0592 +0 0.0525 +0 0.0640 +0 0.0625 +0 0.0908 +0 0.1600 +0 0.0560 +0 0.2012 +0 0.2418 +0 0.1570 +0 0.1376 +0 0.0908 +0 0.1665 +0 0.1565 +0 0.0594 +0 0.1167 +0 0.3093 +0 0.0887 +0 0.1023 +0 0.3080 +0 0.0757 +0 0.1440 +0 0.0668 +0 0.0603 +0 0.1883 +0 0.2939 +0 0.0724 +0 0.0494 +0 0.2903 +0 0.1571 +0 0.0780 +0 0.2681 +0 0.1118 +0 0.0647 +0 0.1756 +0 0.0726 +0 0.1380 +1 0.8431 +0 0.1241 +0 0.0602 +0 0.1834 +0 0.0647 +0 0.0687 +0 0.1555 +0 0.0659 +0 0.0986 +0 0.2084 +0 0.1673 +0 0.1349 +0 0.2115 +0 0.2577 +0 0.1142 +0 0.1441 +0 0.0744 +0 0.0849 +0 0.1964 +0 0.1093 +0 0.0993 +0 0.0485 +0 0.0573 +0 0.0511 +0 0.0644 +0 0.1432 +0 0.1894 +0 0.1127 +0 0.0666 +0 0.1921 +0 0.0914 +0 0.5382 +0 0.1438 +0 0.0631 +0 0.0991 +0 0.1451 +0 0.0736 +0 0.0516 +0 0.1035 +0 0.4575 +0 0.0970 +0 0.0847 +0 0.0896 +0 0.2945 +0 0.0615 +0 0.0881 +0 0.4414 +0 0.0458 +0 0.1809 +0 0.5149 +0 0.4051 +0 0.1170 +0 0.0636 +0 0.1284 +1 0.7757 +0 0.0841 +0 0.0539 +0 0.0421 +0 0.1427 +0 0.1967 +0 0.1488 +0 0.0621 +0 0.1660 +0 0.0812 +0 0.0923 +0 0.0710 +0 0.2455 +0 0.0573 +0 0.0963 +0 0.1150 +0 0.0915 +0 0.1597 +0 0.2230 +0 0.0997 +0 0.1619 +0 0.1116 +0 0.1543 +0 0.0626 +0 0.0704 +0 0.1500 +0 0.1720 +0 0.2192 +0 0.0917 +0 0.1067 +0 0.1359 +0 0.0662 +0 0.1105 +0 0.2250 +0 0.0937 +0 0.0370 +0 0.1025 +0 0.1227 +0 0.0790 +0 0.2929 +0 0.0943 +0 0.0883 +0 0.2387 +0 0.2355 +0 0.0516 +0 0.0505 +0 0.0868 +0 0.0771 +0 0.0949 +0 0.0969 +0 0.0703 +0 0.0590 +0 0.0958 +0 0.0627 +0 0.0973 +0 0.2328 +0 0.0928 +0 0.1306 +0 0.4314 +0 0.0716 +0 0.0944 +0 0.0505 +0 0.0721 +0 0.0694 +0 0.0841 +0 0.0785 +0 0.0686 +0 0.1004 +0 0.1958 +0 0.1431 +0 0.0452 +0 0.1664 +0 0.0823 +1 0.8679 +0 0.1595 +0 0.0827 +0 0.1120 +0 0.2150 +0 0.0777 +0 0.0786 +0 0.1574 +0 0.0862 +0 0.3185 +0 0.0735 +0 0.0950 +0 0.0711 +0 0.1326 +0 0.0975 +0 0.0502 +0 0.1500 +0 0.1978 +0 0.0645 +0 0.1560 +0 0.1398 +0 0.0305 +0 0.0845 +0 0.0932 +0 0.0620 +0 0.0355 +0 0.6497 +0 0.0985 +0 0.0455 +0 0.0381 +0 0.0412 +0 0.2433 +0 0.1578 +0 0.2559 +0 0.1206 +0 0.0793 +0 0.3728 +0 0.0467 +0 0.0901 +0 0.0946 +0 0.4321 +0 0.0599 +0 0.1500 +0 0.0562 +0 0.0888 +0 0.1060 +0 0.0791 +0 0.0979 +0 0.2205 +0 0.0921 +0 0.2320 +0 0.0434 +0 0.1775 +0 0.1180 +0 0.0945 +0 0.1519 +0 0.1568 +0 0.0567 +0 0.1858 +0 0.6078 +0 0.3428 +0 0.0846 +0 0.0903 +0 0.1057 +0 0.0636 +0 0.0730 +0 0.2110 +0 0.1189 +0 0.1195 +0 0.1131 +0 0.1509 +0 0.0823 +0 0.2213 +0 0.5160 +0 0.1677 +0 0.1804 +0 0.0628 +0 0.1069 +0 0.1529 +0 0.1944 +0 0.0804 +0 0.0710 +0 0.1636 +0 0.3636 +0 0.1108 +0 0.2224 +0 0.1035 +0 0.0602 +0 0.6525 +0 0.0480 +0 0.1622 +0 0.1449 +0 0.0927 +0 0.1103 +0 0.0404 +0 0.0827 +0 0.0458 +0 0.0606 +0 0.2421 +0 0.0531 +0 0.0984 +0 0.6798 +0 0.1106 +0 0.0601 +0 0.0678 +0 0.1621 +0 0.5119 +0 0.1605 +0 0.0946 +0 0.0592 +0 0.1711 +0 0.1379 +0 0.0764 +1 0.8505 +0 0.0794 +0 0.0827 +0 0.0917 +0 0.0600 +0 0.1544 +0 0.0760 +0 0.2438 +0 0.3401 +0 0.1080 +0 0.2053 +0 0.0739 +0 0.2618 +0 0.0954 +0 0.0861 +0 0.0730 +0 0.1632 +0 0.1211 +0 0.0659 +0 0.0437 +0 0.0961 +0 0.4814 +0 0.1034 +0 0.1060 +0 0.1783 +0 0.1928 +0 0.0503 +0 0.0592 +0 0.1179 +0 0.1644 +0 0.0634 +0 0.0628 +0 0.0937 +0 0.1059 +0 0.1914 +0 0.0866 +0 0.0642 +0 0.1019 +0 0.1934 +0 0.1615 +0 0.2199 +0 0.0621 +0 0.0804 +0 0.1116 +0 0.0916 +0 0.1494 +0 0.1286 +0 0.1299 +0 0.0886 +0 0.0762 +0 0.0717 +0 0.0568 +0 0.1405 +0 0.0858 +0 0.2024 +0 0.0960 +0 0.0850 +0 0.1234 +0 0.0890 +0 0.1382 +0 0.1525 +0 0.1622 +0 0.1016 +0 0.0688 +0 0.0526 +0 0.0785 +0 0.0835 +0 0.2018 +0 0.1141 +0 0.0857 +0 0.0603 +1 0.8737 +0 0.0934 +0 0.1917 +0 0.0838 +0 0.0602 +0 0.2082 +0 0.3917 +0 0.0634 +0 0.6377 +0 0.0707 +0 0.1391 +0 0.1658 +0 0.0795 +0 0.0962 +0 0.6696 +0 0.0738 +0 0.1534 +0 0.1177 +0 0.1702 +0 0.6829 +0 0.0805 +0 0.0870 +0 0.1410 +0 0.0941 +0 0.0522 +0 0.2600 +0 0.0398 +0 0.0408 +0 0.1076 +0 0.0458 +0 0.2176 +0 0.1430 +0 0.0462 +0 0.0902 +0 0.2224 +0 0.0745 +0 0.5705 +0 0.3942 +0 0.0425 +0 0.0779 +0 0.0638 +0 0.0753 +0 0.0577 +0 0.0472 +0 0.3020 +0 0.0716 +0 0.1925 +0 0.1009 +0 0.0864 +0 0.1484 +0 0.0625 +0 0.0530 +0 0.2186 +0 0.0887 +0 0.1099 +0 0.1102 +0 0.1603 +0 0.4314 +0 0.2280 +0 0.0885 +0 0.0673 +1 0.8307 +0 0.0885 +0 0.1065 +0 0.0876 +0 0.1169 +0 0.2497 +0 0.0693 +0 0.1204 +0 0.2692 +0 0.1490 +0 0.0494 +0 0.1005 +0 0.0631 +0 0.1465 +0 0.1966 +0 0.1400 +0 0.2124 +0 0.1182 +0 0.1394 +0 0.0848 +0 0.2808 +0 0.0613 +0 0.1427 +0 0.1466 +0 0.0325 +0 0.0926 +0 0.1817 +0 0.0423 +0 0.1482 +0 0.0859 +0 0.2177 +0 0.1965 +0 0.1585 +0 0.1411 +0 0.1590 +0 0.1966 +0 0.0817 +0 0.0313 +0 0.0633 +0 0.1448 +0 0.0506 +0 0.1112 +0 0.1279 +0 0.0463 +0 0.1933 +0 0.0804 +0 0.1230 +0 0.6941 +0 0.0581 +0 0.0798 +0 0.0984 +0 0.1070 +0 0.1215 +0 0.2657 +0 0.0355 +0 0.0627 +0 0.1407 +0 0.2047 +0 0.0570 +0 0.0746 +0 0.0723 +0 0.0850 +0 0.1043 +0 0.1919 +0 0.2133 +0 0.0971 +0 0.2084 +0 0.0787 +0 0.1031 +0 0.1971 +0 0.0837 +0 0.7107 +0 0.0849 +0 0.1437 +0 0.1328 +0 0.1199 +0 0.0881 +0 0.2795 +0 0.0684 +0 0.1626 +0 0.0931 +0 0.1041 +0 0.1191 +0 0.1267 +0 0.0680 +0 0.1149 +0 0.0824 +0 0.0824 +0 0.1299 +0 0.1183 +0 0.0803 +0 0.1270 +0 0.1734 +0 0.1754 +0 0.1641 +0 0.1130 +0 0.1203 +0 0.0998 +0 0.1408 +0 0.0636 +0 0.1358 +0 0.0967 +0 0.0739 +0 0.0864 +0 0.1965 +0 0.0725 +0 0.1005 +0 0.0688 +0 0.0805 +0 0.6916 +0 0.0879 +0 0.0410 +0 0.1351 +0 0.0773 +0 0.0838 +0 0.0602 +0 0.1068 +0 0.2408 +0 0.0650 +0 0.2476 +0 0.2249 +0 0.2427 +0 0.1063 +0 0.2498 +0 0.0613 +0 0.0823 +0 0.4216 +0 0.1183 +0 0.0973 +0 0.0453 +0 0.0875 +0 0.0909 +0 0.1109 +0 0.1884 +0 0.1340 +0 0.1669 +0 0.1186 +0 0.1628 +0 0.1130 +0 0.0861 +0 0.0716 +0 0.0703 +0 0.1686 +0 0.3654 +0 0.0866 +0 0.1585 +0 0.2862 +0 0.0964 +0 0.1293 +0 0.0518 +0 0.0466 +0 0.0971 +0 0.5460 +0 0.1527 +0 0.0684 +0 0.1138 +0 0.0950 +0 0.1054 +0 0.0625 +0 0.3705 +0 0.0626 +0 0.0856 +0 0.0656 +0 0.1475 +0 0.1310 +0 0.0887 +0 0.1397 +0 0.0899 +0 0.1238 +0 0.1566 +0 0.0694 +0 0.3481 +0 0.1083 +0 0.0599 +0 0.1181 +0 0.0440 +0 0.7486 +0 0.0810 +0 0.1259 +0 0.1171 +0 0.1161 +0 0.1287 +0 0.0816 +0 0.0739 +0 0.2814 +0 0.5101 +0 0.0810 +0 0.1621 +0 0.1003 +0 0.0840 +0 0.0345 +0 0.0408 +0 0.0728 +0 0.0880 +0 0.1230 +0 0.1630 +0 0.0755 +0 0.4054 +0 0.0626 +0 0.1067 +0 0.1238 +0 0.0875 +0 0.2314 +0 0.1845 +0 0.0844 +0 0.0813 +0 0.1213 +0 0.0783 +0 0.2220 +0 0.0910 +0 0.0850 +0 0.1526 +0 0.1258 +0 0.0711 +0 0.0787 +0 0.2594 +0 0.0731 +0 0.0616 +0 0.1505 +0 0.0997 +0 0.0557 +0 0.1501 +1 0.8739 +0 0.1110 +0 0.1324 +0 0.3721 +0 0.1146 +0 0.0379 +0 0.1425 +0 0.0615 +0 0.0840 +0 0.0610 +0 0.0889 +0 0.0709 +0 0.1059 +0 0.0874 +0 0.0579 +0 0.0701 +0 0.1451 +0 0.0702 +0 0.0655 +0 0.0528 +0 0.0746 +0 0.0637 +0 0.0380 +0 0.1449 +0 0.1032 +0 0.0953 +0 0.1677 +0 0.0956 +0 0.1180 +0 0.6739 +0 0.2438 +0 0.1282 +0 0.0801 +0 0.0659 +0 0.1617 +0 0.1014 +0 0.1950 +0 0.1624 +0 0.1106 +0 0.1004 +0 0.0832 +0 0.0689 +0 0.0862 +0 0.0602 +0 0.0749 +0 0.2459 +0 0.0465 +0 0.1383 +0 0.2316 +0 0.1411 +0 0.0872 +0 0.2084 +0 0.2160 +0 0.0920 +0 0.0855 +0 0.3749 +0 0.1114 +0 0.0641 +0 0.1544 +0 0.1030 +0 0.0906 +0 0.2248 +1 0.7986 +0 0.1118 +0 0.1868 +0 0.1382 +0 0.3910 +0 0.0989 +0 0.0314 +0 0.0723 +0 0.0814 +0 0.0592 +0 0.0476 +0 0.0626 +0 0.4285 +0 0.1479 +0 0.0710 +0 0.2439 +0 0.3326 +0 0.1193 +0 0.2495 +0 0.0818 +0 0.0583 +0 0.1515 +0 0.1286 +0 0.1002 +0 0.0871 +0 0.1122 +0 0.2351 +0 0.0696 +0 0.2172 +0 0.0570 +0 0.1853 +0 0.0955 +0 0.0562 +0 0.2727 +0 0.2953 +0 0.1344 +0 0.2781 +0 0.2558 +0 0.1327 +0 0.0818 +0 0.1940 +0 0.0614 +0 0.1447 +0 0.0852 +0 0.1069 +0 0.2101 +0 0.0762 +0 0.1512 +0 0.0860 +0 0.1284 +0 0.0526 +0 0.2277 +0 0.1628 +0 0.0312 +0 0.0536 +0 0.1710 +0 0.1296 +0 0.1066 +0 0.1235 +0 0.3711 +0 0.0564 +0 0.3732 +0 0.0721 +0 0.1802 +0 0.2367 +0 0.2710 +0 0.1140 +0 0.0533 +0 0.0877 +0 0.1795 +0 0.1442 +0 0.0423 +0 0.0590 +0 0.2835 +0 0.0888 +0 0.0773 +0 0.1564 +0 0.3683 +0 0.2530 +0 0.1731 +0 0.7024 +0 0.1627 +0 0.0967 +0 0.4406 +0 0.1317 +0 0.1527 +0 0.1186 +1 0.7919 +0 0.0968 +0 0.0518 +0 0.1184 +0 0.0844 +0 0.0800 +0 0.0954 +0 0.2875 +0 0.1594 +0 0.1296 +0 0.0841 +0 0.1157 +0 0.2589 +0 0.1073 +0 0.1076 +0 0.1005 +0 0.0924 +0 0.2501 +0 0.1541 +0 0.2281 +0 0.1379 +0 0.2294 +0 0.0493 +0 0.0707 +0 0.0369 +0 0.0759 +0 0.1037 +0 0.1191 +0 0.2109 +0 0.1027 +0 0.0567 +0 0.0637 +0 0.2487 +0 0.1507 +0 0.0574 +0 0.0830 +0 0.0699 +0 0.3343 +0 0.0781 +0 0.0696 +0 0.0603 +0 0.1052 +0 0.1266 +0 0.5281 +0 0.0644 +0 0.0683 +0 0.6778 +0 0.2111 +0 0.1625 +0 0.0459 +0 0.0865 +0 0.2251 +0 0.0528 +0 0.0486 +0 0.0628 +0 0.1202 +0 0.0828 +0 0.2504 +0 0.1010 +0 0.1405 +0 0.0780 +0 0.1301 +0 0.1409 +0 0.1690 +0 0.0713 +0 0.1598 +0 0.0678 +0 0.1688 +0 0.0737 +0 0.1148 +0 0.0786 +0 0.1196 +0 0.4074 +0 0.3485 +1 0.8051 +0 0.0692 +0 0.0663 +0 0.0767 +0 0.1131 +0 0.1079 +0 0.1064 +0 0.0432 +0 0.0468 +0 0.0666 +0 0.0994 +0 0.1114 +0 0.0942 +0 0.0976 +0 0.1049 +0 0.2286 +0 0.0742 +0 0.0722 +0 0.0658 +0 0.2237 +0 0.0511 +0 0.0779 +0 0.0671 +0 0.0777 +0 0.1097 +0 0.2014 +0 0.0487 +0 0.0583 +0 0.0724 +0 0.0986 +0 0.0629 +0 0.1261 +0 0.0882 +0 0.1548 +0 0.1156 +0 0.0391 +0 0.0672 +0 0.1438 +0 0.0835 +0 0.0424 +0 0.1098 +0 0.1112 +0 0.1178 +0 0.1329 +0 0.1294 +0 0.0841 +0 0.0329 +0 0.0795 +0 0.5859 +0 0.0944 +0 0.0335 +1 0.7686 +0 0.0765 +0 0.7218 +0 0.1203 +0 0.0411 +0 0.0864 +0 0.1032 +0 0.1693 +0 0.0536 +0 0.1252 +0 0.0481 +0 0.0677 +0 0.0668 +0 0.0738 +0 0.1026 +0 0.2927 +0 0.1170 +0 0.0861 +0 0.0856 +0 0.1880 +0 0.1024 +0 0.3117 +0 0.1090 +0 0.0475 +0 0.0756 +0 0.1084 +0 0.0728 +0 0.1756 +0 0.1838 +0 0.1942 +0 0.1726 +0 0.1034 +0 0.0417 +0 0.0842 +0 0.1761 +0 0.0650 +0 0.1663 +0 0.1184 +0 0.1581 +0 0.1576 +0 0.5155 +0 0.0761 +0 0.1125 +0 0.2350 +0 0.0487 +0 0.0706 +0 0.2060 +0 0.0522 +0 0.0605 +0 0.1330 +0 0.1661 +0 0.0990 +0 0.0554 +0 0.0438 +0 0.1051 +0 0.0830 +0 0.1613 +0 0.0753 +0 0.1197 +0 0.0811 +0 0.0528 +0 0.0500 +0 0.0960 +0 0.0485 +0 0.0739 +0 0.0825 +0 0.0473 +0 0.1643 +0 0.0941 +0 0.2129 +0 0.1069 +0 0.1599 +0 0.0718 +0 0.1258 +0 0.0592 +0 0.2294 +0 0.0605 +0 0.0510 +0 0.2053 +0 0.1085 +0 0.4023 +0 0.5346 +1 0.8456 +0 0.0609 +0 0.1514 +0 0.1544 +0 0.1384 +0 0.6975 +0 0.2216 +0 0.3740 +0 0.1455 +0 0.2533 +0 0.3512 +0 0.3748 +0 0.1712 +0 0.0614 +0 0.0767 +0 0.1147 +0 0.3233 +0 0.1862 +0 0.0694 +0 0.1533 +0 0.0581 +0 0.1170 +0 0.1754 +0 0.1688 +0 0.1174 +0 0.1554 +0 0.1982 +0 0.4365 +0 0.2082 +0 0.0910 +0 0.2158 +0 0.1123 +0 0.0956 +0 0.0695 +0 0.0599 +0 0.0749 +0 0.0916 +0 0.0887 +0 0.0763 +0 0.2440 +0 0.1233 +0 0.2152 +0 0.0511 +0 0.0494 +0 0.1048 +0 0.1196 +0 0.4378 +0 0.1237 +0 0.0476 +0 0.1559 +0 0.0603 +0 0.0880 +0 0.0835 +0 0.2891 +0 0.1352 +0 0.1689 +0 0.1007 +0 0.1937 +0 0.1082 +0 0.0904 +0 0.1322 +0 0.0410 +0 0.2658 +0 0.1006 +0 0.0948 +0 0.0704 +0 0.0423 +0 0.1914 +0 0.0490 +0 0.1361 +0 0.0910 +0 0.1992 +0 0.5837 +0 0.0844 +0 0.0388 +0 0.0781 +0 0.0888 +0 0.1600 +0 0.1710 +0 0.0424 +0 0.1547 +0 0.0809 +0 0.0579 +0 0.0461 +0 0.1551 +0 0.0983 +0 0.1801 +0 0.1789 +0 0.1188 +0 0.0758 +0 0.0937 +0 0.1237 +0 0.1058 +0 0.0691 +0 0.1231 +0 0.0698 +0 0.1037 +0 0.0890 +0 0.0861 +0 0.0917 +0 0.0546 +0 0.1186 +0 0.0787 +0 0.0476 +0 0.0617 +0 0.1506 +0 0.0827 +0 0.0881 +0 0.6010 +0 0.5638 +0 0.1478 +0 0.1210 +0 0.0979 +0 0.0914 +0 0.1754 +0 0.0980 +0 0.0533 +0 0.2481 +0 0.0492 +0 0.1475 +0 0.1252 +0 0.0940 +0 0.1421 +0 0.1550 +0 0.1243 +0 0.1160 +0 0.1465 +0 0.2314 +0 0.3052 +0 0.1511 +0 0.7073 +0 0.1769 +0 0.0440 +0 0.0968 +0 0.0606 +0 0.2902 +0 0.2069 +0 0.0401 +0 0.0766 +0 0.3646 +0 0.5113 +0 0.1248 +0 0.1110 +0 0.1896 +0 0.1944 +0 0.1297 +0 0.1708 +0 0.6510 +0 0.0666 +0 0.0795 +0 0.2027 +0 0.2323 +0 0.0626 +0 0.2526 +0 0.0737 +0 0.1286 +0 0.0291 +0 0.2257 +0 0.0482 +1 0.8886 +0 0.0414 +0 0.1570 +0 0.0693 +0 0.0699 +0 0.1414 +0 0.0457 +0 0.1617 +0 0.2609 +0 0.2237 +0 0.1733 +0 0.0930 +0 0.2219 +0 0.2522 +0 0.0601 +0 0.0989 +0 0.5139 +1 0.7709 +0 0.0604 +0 0.0793 +0 0.0750 +0 0.0343 +0 0.1433 +0 0.1702 +0 0.0468 +0 0.1321 +0 0.1718 +0 0.2173 +0 0.1902 +0 0.2241 +0 0.1145 +0 0.4823 +0 0.1207 +0 0.0830 +0 0.0953 +0 0.3796 +0 0.1077 +1 0.8404 +0 0.0975 +0 0.6018 +0 0.1272 +0 0.1116 +0 0.1609 +0 0.1290 +0 0.2164 +0 0.3842 +0 0.2391 +0 0.0752 +0 0.1647 +0 0.2288 +0 0.2350 +0 0.1162 +0 0.0587 +0 0.0980 +0 0.3520 +1 0.8522 +0 0.0616 +0 0.1739 +0 0.1029 +0 0.0409 +0 0.1484 +0 0.1116 +0 0.0509 +0 0.0953 +0 0.0546 +0 0.3042 +0 0.0893 +0 0.0510 +0 0.6287 +0 0.2288 +0 0.0996 +0 0.0500 +0 0.0506 +0 0.4638 +0 0.1106 +0 0.0580 +0 0.1433 +0 0.0495 +0 0.1419 +0 0.1810 +0 0.3748 +0 0.0802 +0 0.1308 +0 0.0714 +0 0.1145 +0 0.0687 +0 0.0443 +0 0.0480 +0 0.0926 +0 0.0558 +0 0.0982 +0 0.0405 +0 0.0812 +0 0.0544 +0 0.4188 +0 0.1583 +0 0.2720 +0 0.1341 +0 0.2117 +0 0.0904 +0 0.0991 +0 0.0680 +0 0.1090 +0 0.1661 +0 0.0648 +0 0.1363 +0 0.0823 +0 0.0618 +0 0.0381 +0 0.0846 +0 0.0691 +0 0.0820 +0 0.1637 +0 0.1156 +0 0.1890 +0 0.1018 +0 0.6750 +0 0.0701 +0 0.1090 +0 0.0811 +0 0.0670 +0 0.3275 +0 0.1837 +0 0.1275 +0 0.1692 +0 0.0752 +0 0.1569 +0 0.1954 +0 0.1400 +0 0.1020 +0 0.1512 +1 0.4968 +0 0.1031 +0 0.3109 +0 0.2238 +0 0.1453 +0 0.1039 +0 0.1751 +0 0.4543 +0 0.1007 +0 0.0871 +0 0.0822 +0 0.0829 +0 0.1096 +0 0.0925 +0 0.1386 +0 0.0753 +0 0.1137 +0 0.1707 +0 0.1246 +0 0.3723 +0 0.0597 +0 0.0982 +0 0.4672 +0 0.1024 +0 0.1146 +0 0.2444 +0 0.1997 +0 0.0848 +0 0.0803 +0 0.2181 +0 0.0480 +0 0.2917 +0 0.0813 +0 0.0598 +0 0.0774 +0 0.4958 +0 0.1556 +0 0.1353 +0 0.1177 +0 0.0647 +0 0.1782 +0 0.0626 +0 0.0683 +0 0.1431 +0 0.2669 +0 0.1250 +0 0.0921 +0 0.0576 +0 0.0668 +0 0.0614 +0 0.0951 +0 0.0547 +0 0.0924 +0 0.1165 +0 0.1554 +0 0.6507 +0 0.3876 +0 0.0699 +0 0.1272 +0 0.1613 +0 0.0500 +0 0.1849 +0 0.0927 +0 0.2008 +0 0.1158 +0 0.1278 +0 0.3312 +0 0.2874 +0 0.1077 +0 0.1281 +0 0.0948 +0 0.1769 +0 0.1124 +0 0.1788 +0 0.0917 +0 0.1679 +0 0.2118 +0 0.1091 +0 0.1146 +0 0.1721 +0 0.0798 +0 0.2911 +0 0.0637 +0 0.1642 +0 0.1134 +0 0.1410 +0 0.0885 +0 0.2415 +0 0.0887 +0 0.2642 +0 0.0951 +0 0.0431 +0 0.0769 +0 0.1321 +0 0.0484 +0 0.1142 +0 0.1123 +0 0.2025 +0 0.1986 +0 0.0629 +0 0.1418 +0 0.0509 +0 0.1655 +0 0.1242 +0 0.0983 +0 0.0718 +0 0.0630 +0 0.1188 +0 0.7192 +0 0.0604 +0 0.1512 +0 0.1166 +0 0.2210 +0 0.6818 +0 0.1056 +0 0.4882 +0 0.1639 +0 0.2192 +0 0.5209 +0 0.0631 +0 0.0450 +1 0.8689 +0 0.0304 +0 0.0644 +0 0.0738 +0 0.1784 +0 0.0667 +0 0.2156 +0 0.1243 +0 0.1079 +0 0.1219 +0 0.0620 +0 0.2307 +0 0.0491 +0 0.0909 +0 0.1154 +0 0.5348 +0 0.2967 +0 0.0662 +0 0.0701 +0 0.6444 +0 0.0611 +0 0.1314 +0 0.2232 +0 0.0809 +0 0.0694 +0 0.1267 +0 0.0603 +0 0.1196 +0 0.0982 +0 0.2296 +0 0.0424 +0 0.0454 +0 0.0711 +0 0.7343 +0 0.0854 +0 0.0302 +0 0.0602 +0 0.0544 +0 0.0630 +0 0.0499 +0 0.1480 +0 0.1044 +0 0.1135 +0 0.0635 +0 0.0553 +0 0.0880 +0 0.0811 +0 0.1374 +0 0.0489 +0 0.0398 +0 0.0761 +0 0.3515 +0 0.0465 +0 0.0626 +0 0.2088 +0 0.0533 +0 0.0984 +0 0.1027 +0 0.0836 +0 0.0998 +0 0.6170 +0 0.0824 +0 0.0589 +0 0.3908 +0 0.0948 +0 0.1433 +0 0.1617 +1 0.8021 +0 0.1065 +0 0.0451 +0 0.0499 +0 0.0927 +0 0.1626 +0 0.0413 +0 0.0798 +0 0.0553 +0 0.1347 +0 0.0492 +0 0.1839 +0 0.0673 +0 0.2358 +0 0.1052 +0 0.0934 +0 0.1515 +0 0.3060 +0 0.0861 +0 0.1106 +0 0.3529 +0 0.1995 +0 0.3331 +0 0.1300 +0 0.1025 +0 0.0335 +0 0.2497 +0 0.0702 +0 0.0981 +0 0.0909 +0 0.1286 +0 0.2198 +0 0.0497 +0 0.0552 +0 0.1155 +0 0.5713 +0 0.0824 +0 0.1008 +0 0.1152 +0 0.0582 +0 0.0819 +0 0.4500 +0 0.0672 +0 0.1270 +0 0.0549 +0 0.3052 +0 0.0850 +0 0.0609 +0 0.0765 +0 0.0703 +0 0.0809 +0 0.1206 +0 0.1014 +0 0.3538 +0 0.1366 +0 0.1668 +0 0.1098 +0 0.1575 +0 0.1562 +0 0.1004 +1 0.8480 +0 0.0833 +0 0.1135 +0 0.1240 +0 0.0652 +0 0.1203 +0 0.2416 +0 0.0685 +0 0.1996 +0 0.1837 +0 0.2383 +0 0.0642 +0 0.1616 +0 0.4134 +0 0.0943 +0 0.0696 +0 0.1019 +0 0.0722 +0 0.0762 +0 0.0587 +0 0.1813 +0 0.0997 +0 0.0725 +0 0.5859 +0 0.0564 +0 0.1554 +0 0.0599 +0 0.1463 +0 0.1005 +0 0.0487 +0 0.1909 +0 0.2165 +0 0.1034 +0 0.0441 +0 0.4629 +0 0.0957 +0 0.1609 +0 0.3184 +0 0.0826 +0 0.1211 +0 0.1174 +0 0.2876 +0 0.0753 +1 0.8490 +0 0.0750 +0 0.0502 +0 0.0485 +0 0.1415 +0 0.0760 +0 0.1541 +0 0.0875 +0 0.0679 +0 0.4197 +0 0.0857 +0 0.0786 +0 0.2982 +0 0.3751 +0 0.1232 +0 0.0878 +0 0.0747 +0 0.1941 +0 0.0629 +0 0.0905 +0 0.1021 +0 0.2347 +0 0.0569 +0 0.2916 +0 0.0635 +0 0.0568 +0 0.1328 +0 0.0376 +0 0.0607 +0 0.0752 +0 0.2190 +0 0.1947 +0 0.0928 +0 0.1897 +0 0.1535 +0 0.1271 +0 0.2260 +0 0.2179 +0 0.1354 +0 0.0535 +0 0.2597 +0 0.0617 +0 0.1424 +0 0.0891 +0 0.0821 +0 0.1460 +0 0.3601 +0 0.1125 +0 0.1480 +0 0.1105 +0 0.0308 +0 0.0674 +0 0.0608 +0 0.3201 +0 0.3757 +0 0.0564 +0 0.0644 +0 0.0933 +0 0.0655 +0 0.0326 +0 0.0437 +0 0.0905 +0 0.0795 +0 0.1895 +0 0.1126 +0 0.0511 +0 0.1062 +0 0.7469 +0 0.1146 +0 0.0774 +0 0.3402 +0 0.2553 +0 0.0644 +0 0.0592 +0 0.0577 +0 0.0993 +0 0.1003 +0 0.2174 +0 0.2980 +0 0.0980 +0 0.1678 +0 0.0873 +0 0.0448 +0 0.0364 +0 0.1030 +0 0.1785 +0 0.1027 +0 0.2743 +0 0.1302 +0 0.0675 +0 0.1013 +0 0.1404 +0 0.2248 +0 0.1125 +0 0.0431 +0 0.0788 +0 0.1710 +0 0.0557 +0 0.0895 +0 0.1920 +0 0.1080 +0 0.1352 +1 0.8047 +0 0.0938 +0 0.1386 +0 0.0786 +0 0.0869 +0 0.1022 +0 0.1382 +0 0.0440 +0 0.1452 +0 0.5724 +0 0.1017 +0 0.0758 +0 0.6777 +0 0.2229 +0 0.2803 +0 0.6774 +0 0.0584 +0 0.0594 +0 0.0555 +0 0.0459 +0 0.1701 +0 0.3690 +0 0.0826 +0 0.0941 +0 0.1382 +0 0.1355 +0 0.0563 +0 0.1238 +0 0.0857 +0 0.0333 +0 0.1388 +0 0.0653 +0 0.1380 +0 0.0385 +0 0.3994 +0 0.0531 +0 0.1706 +0 0.1003 +0 0.0919 +0 0.0714 +0 0.1038 +0 0.2435 +0 0.0957 +0 0.0970 +0 0.0894 +0 0.1148 +0 0.0921 +0 0.1086 +0 0.0794 +0 0.4574 +0 0.1885 +0 0.0650 +0 0.1018 +0 0.0562 +0 0.1133 +0 0.0533 +0 0.1488 +0 0.1337 +0 0.0510 +0 0.1031 +0 0.1064 +1 0.8043 +0 0.1359 +0 0.0554 +0 0.1780 +0 0.0893 +0 0.0818 +0 0.1098 +0 0.4673 +0 0.0553 +0 0.0959 +0 0.0820 +0 0.3657 +0 0.0961 +0 0.1159 +0 0.2093 +0 0.2628 +0 0.1169 +0 0.1079 +0 0.1306 +0 0.1168 +0 0.0952 +0 0.1640 +0 0.0812 +0 0.0992 +0 0.0546 +0 0.1491 +0 0.1712 +0 0.0857 +0 0.0963 +0 0.1582 +0 0.1021 +0 0.1388 +0 0.7030 +0 0.0762 +0 0.3257 +0 0.0749 +0 0.2536 +0 0.0760 +0 0.1251 +0 0.1430 +0 0.0790 +0 0.0850 +0 0.0574 +0 0.2775 +0 0.0800 +0 0.0559 +0 0.0789 +0 0.0950 +0 0.1766 +0 0.5197 +0 0.0742 +0 0.0995 +0 0.1194 +1 0.7761 +0 0.0574 +0 0.1263 +0 0.1640 +0 0.0338 +0 0.0947 +0 0.1072 +0 0.1820 +0 0.1460 +0 0.1082 +0 0.0545 +0 0.0491 +0 0.0854 +0 0.0641 +0 0.0716 +0 0.0994 +0 0.0704 +0 0.1661 +0 0.3055 +0 0.0759 +0 0.2667 +0 0.2110 +0 0.1132 +0 0.2724 +0 0.2029 +0 0.0445 +0 0.2000 +0 0.1579 +0 0.1858 +0 0.2265 +0 0.0804 +0 0.6392 +0 0.0851 +0 0.1071 +0 0.1360 +0 0.0964 +0 0.2482 +0 0.0776 +0 0.2591 +0 0.0957 +0 0.5730 +0 0.1485 +0 0.1282 +0 0.0424 +0 0.0639 +0 0.5293 +0 0.0817 +0 0.1158 +0 0.1462 +0 0.1133 +0 0.0661 +0 0.0951 +0 0.0853 +0 0.0461 +0 0.6422 +0 0.0575 +0 0.1473 +0 0.0786 +0 0.0927 +0 0.1495 +0 0.0989 +0 0.1269 +0 0.0765 +0 0.0470 +0 0.1320 +0 0.1033 +0 0.0552 +0 0.0973 +0 0.0997 +0 0.1693 +0 0.0498 +0 0.2305 +0 0.0709 +0 0.1596 +0 0.0409 +0 0.0577 +0 0.3099 +0 0.0757 +0 0.1139 +0 0.1768 +0 0.0515 +0 0.1278 +0 0.0720 +0 0.2370 +0 0.1640 +0 0.0394 +0 0.0876 +0 0.1811 +0 0.0912 +0 0.0677 +0 0.1184 +0 0.0934 +0 0.2235 +0 0.1011 +0 0.1434 +0 0.0765 +0 0.0859 +0 0.1945 +0 0.1187 +0 0.1075 +0 0.1138 +0 0.1305 +0 0.1765 +0 0.3616 +0 0.1629 +0 0.1685 +0 0.1034 +0 0.3015 +0 0.2902 +0 0.0859 +0 0.0834 +0 0.2140 +0 0.1046 +0 0.3517 +0 0.2859 +0 0.0400 +0 0.3302 +0 0.0494 +0 0.1508 +0 0.0887 +0 0.0866 +0 0.1085 +0 0.1047 +0 0.1083 +0 0.1110 +0 0.0375 +0 0.0691 +0 0.1933 +0 0.4425 +0 0.0625 +0 0.2482 +0 0.0322 +0 0.0426 +0 0.1483 +0 0.0921 +0 0.3124 +0 0.1006 +0 0.1041 +0 0.1089 +0 0.0422 +0 0.0629 +0 0.1675 +0 0.1064 +0 0.2057 +0 0.1596 +0 0.0753 +0 0.0810 +0 0.1190 +0 0.0617 +0 0.3587 +0 0.1026 +0 0.2180 +0 0.0833 +0 0.1150 +0 0.0444 +0 0.1445 +0 0.3888 +0 0.5759 +1 0.8049 +0 0.1501 +0 0.0775 +0 0.2014 +0 0.0823 +0 0.2512 +0 0.0950 +0 0.1554 +0 0.0826 +0 0.0766 +0 0.0859 +0 0.0683 +0 0.0954 +0 0.0789 +0 0.1222 +0 0.1718 +0 0.0935 +0 0.2301 +0 0.0560 +0 0.0628 +0 0.0572 +0 0.0791 +0 0.0570 +0 0.0700 +0 0.1292 +0 0.1147 +0 0.0863 +0 0.0492 +0 0.0807 +0 0.0936 +0 0.2758 +0 0.1019 +0 0.1112 +0 0.1958 +0 0.0704 +0 0.0700 +0 0.1096 +0 0.1531 +0 0.5272 +0 0.2399 +0 0.1340 +0 0.7175 +0 0.2167 +1 0.8546 +0 0.1463 +0 0.0867 +0 0.1513 +0 0.6197 +0 0.2618 +0 0.4681 +0 0.5462 +0 0.0686 +0 0.1206 +0 0.1050 +0 0.0399 +0 0.1412 +0 0.1160 +0 0.0638 +0 0.2454 +0 0.2084 +0 0.2211 +0 0.1427 +0 0.0720 +0 0.1089 +0 0.1714 +0 0.2001 +0 0.1066 +0 0.0514 +0 0.2416 +0 0.0644 +0 0.0955 +0 0.1499 +0 0.0918 +1 0.8131 +0 0.0873 +0 0.1739 +0 0.0835 +0 0.2617 +0 0.0535 +0 0.1427 +0 0.5544 +0 0.1422 +0 0.0793 +0 0.2095 +1 0.7800 +0 0.1758 +0 0.1831 +0 0.0813 +0 0.6423 +0 0.1524 +0 0.2322 +0 0.0717 +0 0.1471 +0 0.0539 +0 0.1112 +0 0.1212 +0 0.1343 +0 0.0874 +0 0.0829 +0 0.1136 +0 0.1476 +0 0.2371 +0 0.0637 +0 0.0949 +0 0.1384 +0 0.1576 +0 0.0785 +0 0.1109 +0 0.6082 +0 0.0968 +0 0.1076 +0 0.0724 +0 0.0570 +0 0.0920 +0 0.0866 +0 0.0587 +0 0.1193 +0 0.0912 +0 0.0712 +0 0.1745 +0 0.0536 +0 0.0679 +0 0.0654 +0 0.1661 +0 0.0734 +0 0.0326 +0 0.1235 +0 0.2301 +0 0.1262 +0 0.1166 +0 0.0483 +0 0.2246 +0 0.0407 +0 0.1290 +0 0.0646 +0 0.1013 +0 0.1120 +0 0.1363 +0 0.0637 +0 0.0718 +0 0.1070 +0 0.1172 +0 0.0827 +0 0.1085 +0 0.0809 +0 0.1352 +0 0.4407 +0 0.0321 +0 0.0479 +0 0.1169 +0 0.0982 +0 0.1477 +0 0.0492 +0 0.0967 +0 0.0849 +0 0.0680 +0 0.0690 +0 0.0548 +0 0.0488 +0 0.1493 +0 0.1315 +0 0.1727 +0 0.2318 +0 0.5439 +0 0.0619 +0 0.2724 +0 0.1286 +0 0.0480 +0 0.0740 +0 0.6606 +0 0.1141 +0 0.0927 +0 0.2017 +0 0.1278 +0 0.1976 +0 0.0674 +0 0.2344 +0 0.1123 +0 0.1125 +1 0.7563 +0 0.0809 +0 0.0735 +0 0.0875 +0 0.1005 +0 0.1371 +0 0.2486 +0 0.1691 +0 0.1743 +0 0.0721 +0 0.0767 +0 0.0985 +1 0.7979 +0 0.1345 +0 0.0651 +0 0.0857 +1 0.8589 +0 0.0865 +0 0.0536 +0 0.0808 +0 0.0522 +0 0.1304 +0 0.0322 +0 0.0933 +0 0.1312 +0 0.0847 +0 0.0535 +0 0.0720 +0 0.1377 +0 0.0793 +0 0.1338 +0 0.0657 +0 0.1297 +0 0.0697 +0 0.1761 +0 0.3540 +0 0.2094 +0 0.0554 +0 0.1010 +0 0.0447 +0 0.1792 +0 0.1888 +0 0.0771 +0 0.0851 +0 0.1784 +0 0.2632 +0 0.0540 +0 0.0713 +0 0.1004 +0 0.4441 +0 0.2692 +0 0.1049 +0 0.0508 +0 0.1075 +0 0.2480 +0 0.1394 +0 0.3079 +0 0.3829 +0 0.1633 +0 0.0625 +0 0.0554 +0 0.1179 +0 0.0689 +0 0.1365 +0 0.0968 +0 0.2220 +0 0.2153 +0 0.1054 +0 0.1153 +0 0.1005 +0 0.0930 +0 0.0658 +0 0.2594 +0 0.0450 +0 0.0438 +0 0.1349 +0 0.1331 +0 0.0526 +0 0.0712 +0 0.0352 +0 0.1648 +0 0.1348 +0 0.1072 +0 0.2185 +0 0.1213 +0 0.0668 +0 0.0729 +0 0.0823 +0 0.0450 +0 0.0410 +0 0.0711 +0 0.0669 +0 0.5127 +0 0.0766 +0 0.3509 +0 0.0508 +0 0.1612 +0 0.0513 +0 0.1682 +0 0.4000 +0 0.2458 +0 0.3274 +0 0.1569 +0 0.3875 +0 0.1454 +0 0.0646 +0 0.2445 +0 0.1859 +0 0.0535 +0 0.1691 +0 0.1485 +0 0.0498 +0 0.3534 +0 0.0792 +0 0.0484 +0 0.1239 +0 0.2374 +0 0.0837 +0 0.0787 +0 0.1401 +0 0.0564 +0 0.0464 +0 0.2383 +0 0.0496 +0 0.0548 +0 0.1214 +0 0.1412 +0 0.2099 +0 0.0563 +0 0.0349 +0 0.0433 +0 0.0539 +0 0.0767 +0 0.0464 +0 0.1199 +0 0.0443 +0 0.0842 +0 0.3144 +0 0.4635 +0 0.0442 +0 0.5211 +0 0.0872 +0 0.1735 +0 0.0908 +0 0.0547 +0 0.0871 +0 0.0481 +0 0.1189 +0 0.0739 +0 0.1498 +0 0.0594 +0 0.0986 +0 0.2192 +0 0.0840 +0 0.0741 +0 0.1384 +0 0.1449 +0 0.0549 +0 0.1028 +0 0.0825 +0 0.1485 +0 0.1103 +0 0.1570 +0 0.1033 +0 0.3829 +0 0.0690 +0 0.1273 +0 0.0870 +0 0.1552 +0 0.4162 +0 0.1440 +0 0.0952 +0 0.0394 +0 0.0680 +0 0.1742 +0 0.0381 +0 0.1197 +0 0.0417 +0 0.2652 +0 0.0521 +0 0.1290 +0 0.1211 +0 0.0721 +0 0.0718 +0 0.0846 +0 0.0846 +0 0.0424 +0 0.1225 +0 0.0734 +0 0.0770 +0 0.0955 +0 0.1974 +0 0.1199 +0 0.0562 +0 0.4370 +0 0.0967 +0 0.1496 +0 0.0676 +0 0.0670 +0 0.0625 +0 0.0642 +0 0.0652 +0 0.0642 +0 0.2589 +0 0.0407 +0 0.1447 +0 0.2126 +0 0.0724 +0 0.1208 +0 0.2283 +0 0.0898 +0 0.0683 +0 0.0730 +0 0.4423 +0 0.0746 +0 0.1514 +0 0.0991 +0 0.2404 +0 0.0747 +0 0.0946 +0 0.0819 +0 0.0420 +0 0.0693 +0 0.0557 +0 0.0863 +0 0.1192 +0 0.2464 +0 0.1463 +0 0.0858 +0 0.0396 +1 0.8110 +0 0.0411 +0 0.3448 +0 0.3512 +0 0.1129 +0 0.0442 +0 0.2848 +0 0.1529 +0 0.0463 +0 0.4354 +0 0.0918 +0 0.1346 +0 0.0369 +0 0.1121 +0 0.1503 +0 0.0808 +0 0.1171 +0 0.0861 +0 0.0758 +0 0.0710 +0 0.1067 +0 0.1210 +0 0.1666 +0 0.0694 +0 0.1848 +0 0.0516 +0 0.0842 +0 0.1119 +0 0.0489 +0 0.1635 +0 0.2083 +0 0.0950 +0 0.0874 +0 0.0740 +0 0.0801 +0 0.2005 +0 0.1129 +0 0.1750 +0 0.1053 +0 0.1403 +0 0.0711 +0 0.0680 +0 0.5537 +0 0.1530 +0 0.2469 +0 0.0579 +0 0.1649 +0 0.6003 +0 0.0801 +0 0.2091 +0 0.0818 +0 0.0361 +0 0.0719 +0 0.0899 +0 0.0678 +0 0.0715 +0 0.0443 +0 0.1564 +0 0.0875 +0 0.5052 +0 0.1065 +0 0.0551 +0 0.3384 +0 0.0703 +0 0.0953 +0 0.1082 +0 0.1537 +0 0.0630 +0 0.2315 +0 0.0667 +0 0.1693 +0 0.0730 +0 0.2700 +0 0.1023 +0 0.1476 +0 0.0730 +0 0.0688 +0 0.1002 +0 0.2494 +0 0.1024 +0 0.0767 +0 0.0764 +0 0.0541 +0 0.1211 +0 0.0721 +0 0.1162 +0 0.1465 +0 0.0764 +0 0.0996 +0 0.1979 +0 0.3856 +0 0.1916 +0 0.0887 +0 0.0863 +0 0.1299 +0 0.1541 +0 0.0593 +0 0.3781 +0 0.2286 +0 0.0900 +0 0.0598 +0 0.0602 +0 0.2603 +0 0.0812 +0 0.1612 +0 0.0724 +0 0.1810 +0 0.0877 +0 0.1656 +0 0.1322 +0 0.0675 +0 0.1050 +0 0.0615 +0 0.1707 +0 0.1713 +0 0.0522 +0 0.1790 +0 0.1437 +0 0.1464 +0 0.1155 +0 0.0641 +0 0.1416 +0 0.2372 +0 0.0812 +0 0.5021 +0 0.2087 +0 0.0763 +0 0.0656 +0 0.4011 +0 0.0477 +0 0.1905 +0 0.0648 +0 0.0873 +0 0.1715 +1 0.8095 +0 0.1586 +0 0.1370 +0 0.0471 +0 0.0597 +0 0.0804 +0 0.3027 +0 0.0929 +0 0.0428 +0 0.0632 +0 0.0639 +0 0.0425 +0 0.1354 +0 0.0527 +0 0.1027 +0 0.0529 +0 0.1176 +0 0.0759 +0 0.0606 +0 0.0697 +0 0.0738 +0 0.0835 +0 0.0796 +0 0.0328 +0 0.2591 +0 0.1809 +0 0.0518 +0 0.1519 +0 0.1603 +0 0.0885 +0 0.0415 +0 0.0702 +0 0.0685 +0 0.1043 +0 0.1471 +0 0.0903 +0 0.2023 +0 0.1931 +0 0.1175 +0 0.0551 +0 0.1032 +0 0.0809 +0 0.0558 +0 0.0649 +0 0.2236 +0 0.0535 +0 0.0496 +0 0.0464 +0 0.2528 +0 0.1100 +0 0.0648 +0 0.1152 +0 0.0690 +0 0.6490 +0 0.0566 +0 0.0926 +0 0.1193 +0 0.1419 +0 0.5838 +0 0.1057 +0 0.1249 +0 0.0608 +0 0.1398 +0 0.2564 +0 0.0978 +0 0.0975 +0 0.5194 +0 0.0855 +0 0.3962 +0 0.1540 +0 0.1494 +0 0.1224 +0 0.1580 +0 0.0505 +0 0.0617 +0 0.1894 +0 0.0537 +0 0.2826 +0 0.2120 +0 0.0758 +0 0.0429 +0 0.0761 +0 0.0795 +0 0.0708 +0 0.0576 +0 0.1425 +0 0.0972 +0 0.1338 +0 0.0783 +0 0.1010 +0 0.0791 +0 0.2713 +0 0.0924 +0 0.0499 +0 0.1086 +0 0.2067 +0 0.0539 +0 0.1250 +0 0.0642 +0 0.1910 +0 0.1254 +0 0.1406 +0 0.1554 +0 0.0587 +0 0.0845 +0 0.0383 +0 0.0847 +0 0.1810 +0 0.1317 +0 0.1677 +0 0.0441 +0 0.1396 +0 0.1463 +1 0.8716 +0 0.1158 +0 0.7400 +0 0.1234 +0 0.0496 +0 0.0487 +0 0.1524 +0 0.1189 +0 0.3790 +0 0.1353 +0 0.1093 +0 0.0611 +0 0.1470 +0 0.1537 +0 0.0862 +0 0.1192 +0 0.0716 +0 0.2063 +0 0.0649 +0 0.1021 +0 0.0584 +0 0.0793 +0 0.1680 +0 0.0741 +0 0.0821 +0 0.0717 +0 0.0969 +0 0.0814 +0 0.2154 +0 0.0584 +0 0.1579 +0 0.0821 +0 0.0922 +0 0.1127 +0 0.1581 +0 0.2540 +0 0.3856 +0 0.1209 +0 0.0567 +0 0.0428 +0 0.0933 +0 0.0605 +0 0.0464 +0 0.0595 +0 0.1289 +0 0.0630 +0 0.1046 +0 0.1743 +0 0.2150 +0 0.0655 +0 0.0690 +0 0.0872 +0 0.1593 +0 0.1220 +0 0.0863 +0 0.0869 +1 0.8471 +0 0.0477 +0 0.0451 +0 0.0804 +0 0.1122 +0 0.1775 +0 0.1229 +0 0.1161 +0 0.3151 +0 0.0664 +0 0.0628 +0 0.1910 +0 0.1312 +0 0.0595 +0 0.3760 +0 0.0452 +0 0.1050 +0 0.1206 +0 0.0920 +0 0.1964 +0 0.1704 +0 0.1988 +0 0.1202 +0 0.1608 +0 0.0881 +1 0.8681 +0 0.2631 +0 0.1279 +0 0.0945 +0 0.0516 +0 0.2718 +0 0.0711 +0 0.1329 +0 0.6637 +0 0.4502 +0 0.0821 +0 0.0806 +0 0.0755 +0 0.1113 +0 0.0434 +0 0.1867 +0 0.1781 +0 0.1666 +0 0.1122 +0 0.0802 +0 0.1060 +0 0.0865 +0 0.4029 +0 0.3264 +0 0.0889 +0 0.1048 +0 0.2216 +0 0.2932 +0 0.0652 +0 0.0891 +0 0.2050 +0 0.0515 +0 0.1157 +0 0.1908 +0 0.1032 +0 0.0414 +0 0.1237 +0 0.0779 +0 0.1586 +0 0.1260 +0 0.4860 +0 0.0807 +0 0.0441 +0 0.0954 +0 0.1801 +0 0.1778 +0 0.1813 +0 0.0730 +0 0.0541 +0 0.0922 +0 0.2061 +0 0.0801 +0 0.5985 +0 0.1049 +1 0.8393 +0 0.1278 +0 0.0504 +0 0.3686 +0 0.0417 +0 0.3927 +0 0.1223 +0 0.0658 +0 0.1696 +0 0.1050 +1 0.7788 +0 0.1244 +0 0.0738 +0 0.1313 +0 0.3286 +0 0.2282 +0 0.1273 +0 0.0423 +0 0.1371 +0 0.1089 +0 0.2132 +0 0.1443 +0 0.1038 +0 0.1037 +0 0.0860 +0 0.0598 +0 0.0410 +0 0.1093 +0 0.0751 +0 0.0773 +0 0.0739 +0 0.0563 +0 0.1291 +0 0.0300 +0 0.0584 +0 0.0861 +0 0.0964 +0 0.1006 +0 0.1155 +0 0.0815 +0 0.2550 +0 0.2534 +0 0.1037 +0 0.1037 +0 0.4984 +0 0.2649 +0 0.1621 +0 0.1491 +0 0.0842 +0 0.2298 +0 0.0524 +0 0.0636 +0 0.0958 +0 0.0741 +0 0.2662 +0 0.0947 +0 0.1970 +0 0.2014 +0 0.0867 +0 0.0417 +0 0.1183 +0 0.2139 +0 0.1924 +0 0.0486 +0 0.0917 +1 0.7538 +0 0.0359 +0 0.6617 +0 0.2179 +0 0.0527 +0 0.0944 +0 0.2324 +0 0.2975 +0 0.1778 +0 0.0599 +0 0.0907 +0 0.0544 +0 0.0894 +0 0.1332 +0 0.0865 +0 0.0646 +0 0.0469 +0 0.0658 +0 0.1232 +0 0.7394 +0 0.2160 +0 0.0734 +0 0.0378 +0 0.1743 +0 0.0778 +0 0.1485 +0 0.1037 +0 0.0554 +0 0.5167 +0 0.1469 +0 0.1225 +0 0.2363 +0 0.2117 +0 0.0490 +0 0.2993 +0 0.0723 +0 0.0863 +0 0.0537 +0 0.0945 +0 0.2751 +0 0.2962 +0 0.0911 +0 0.0942 +0 0.0921 +0 0.0799 +0 0.1048 +0 0.6961 +0 0.0522 +0 0.2428 +0 0.0356 +0 0.1618 +0 0.1420 +0 0.0862 +0 0.1094 +0 0.1988 +0 0.0533 +0 0.0776 +0 0.0780 +0 0.3816 +1 0.8770 +0 0.1335 +0 0.0888 +0 0.1186 +0 0.1160 +0 0.1122 +0 0.0924 +0 0.2052 +0 0.1262 +0 0.0709 +0 0.0776 +0 0.0776 +0 0.1249 +0 0.1284 +0 0.0548 +0 0.0740 +0 0.6109 +0 0.0395 +0 0.3533 +0 0.2752 +0 0.6767 +0 0.0703 +0 0.0795 +0 0.1053 +0 0.0539 +0 0.1347 +0 0.0562 +0 0.3129 +0 0.1601 +0 0.0492 +0 0.0736 +0 0.4573 +0 0.0636 +0 0.0858 +0 0.0633 +0 0.1889 +0 0.3056 +0 0.1291 +0 0.0421 +0 0.2036 +0 0.0757 +0 0.1867 +0 0.0998 +0 0.0509 +0 0.1047 +0 0.0539 +0 0.0992 +0 0.2588 +0 0.3626 +0 0.0698 +0 0.0943 +0 0.4166 +0 0.5889 +0 0.3505 +0 0.0577 +0 0.0656 +0 0.0765 +0 0.0622 +0 0.1126 +0 0.0828 +0 0.1000 +0 0.0953 +0 0.1051 +0 0.6362 +0 0.1434 +0 0.1798 +0 0.0507 +0 0.3175 +0 0.0880 +0 0.0944 +0 0.1608 +0 0.0815 +0 0.1579 +0 0.5260 +0 0.1269 +0 0.1048 +0 0.0799 +0 0.0739 +0 0.1141 +0 0.1814 +0 0.1042 +0 0.1167 +0 0.0877 +0 0.1940 +0 0.3081 +0 0.0779 +0 0.0809 +0 0.0881 +0 0.0599 +0 0.0755 +0 0.0639 +0 0.1257 +0 0.0604 +0 0.0956 +0 0.1732 +0 0.1586 +0 0.1149 +0 0.1738 +0 0.0986 +0 0.0824 +0 0.1913 +0 0.5340 +0 0.1067 +0 0.1462 +0 0.1669 +0 0.6599 +0 0.0534 +0 0.1502 +0 0.0436 +0 0.1209 +1 0.7841 +0 0.0355 +0 0.0836 +1 0.7974 +0 0.0641 +0 0.0675 +0 0.6204 +0 0.1131 +0 0.1120 +0 0.0767 +0 0.1084 +0 0.4124 +0 0.3075 +0 0.0586 +0 0.1816 +0 0.2510 +0 0.5005 +0 0.4828 +0 0.0375 +0 0.1126 +0 0.0996 +0 0.0455 +0 0.3557 +0 0.2464 +0 0.1680 +0 0.0923 +0 0.3371 +0 0.1261 +0 0.0578 +0 0.1146 +0 0.0967 +0 0.1175 +0 0.1463 +0 0.0667 +0 0.0790 +0 0.0770 +0 0.2188 +0 0.0881 +0 0.0706 +0 0.0693 +0 0.1623 +0 0.0907 +0 0.5132 +0 0.0980 +0 0.2939 +0 0.0852 +0 0.0931 +0 0.1540 +0 0.1069 +0 0.0793 +0 0.0726 +0 0.1383 +0 0.1443 +0 0.1461 +0 0.2679 +0 0.0798 +0 0.1213 +0 0.0544 +0 0.1238 +0 0.0776 +0 0.0768 +0 0.2845 +0 0.1699 +0 0.0438 +0 0.0527 +0 0.0838 +0 0.0613 +0 0.1140 +0 0.0996 +0 0.1252 +0 0.2401 +0 0.1327 +0 0.1645 +0 0.1380 +0 0.0846 +0 0.1436 +0 0.0977 +0 0.0865 +0 0.0931 +0 0.1052 +0 0.0696 +0 0.3487 +0 0.1609 +0 0.1144 +0 0.2904 +0 0.0778 +0 0.0986 +0 0.1804 +0 0.0786 +0 0.1201 +0 0.0683 +0 0.0479 +0 0.0834 +0 0.1035 +0 0.1640 +0 0.2602 +0 0.0729 +0 0.1512 +0 0.1556 +0 0.0808 +0 0.0815 +0 0.0643 +0 0.0614 +0 0.2091 +0 0.2870 +0 0.0925 +0 0.0912 +0 0.0832 +0 0.4108 +0 0.1490 +0 0.1034 +0 0.1558 +0 0.2722 +0 0.2072 +0 0.0749 +0 0.0703 +0 0.1759 +0 0.1089 +0 0.1421 +0 0.0950 +0 0.1053 +0 0.1052 +0 0.1505 +0 0.0489 +0 0.0670 +0 0.4877 +0 0.1253 +0 0.0622 +0 0.1721 +0 0.2182 +0 0.2277 +0 0.0361 +0 0.0948 +0 0.1050 +0 0.0380 +0 0.1195 +0 0.1169 +0 0.0724 +0 0.2751 +0 0.0688 +0 0.0760 +0 0.0641 +0 0.0810 +0 0.1150 +0 0.3429 +0 0.2128 +0 0.5978 +0 0.0487 +0 0.1124 +1 0.8292 +0 0.0419 +0 0.0903 +0 0.0706 +0 0.1993 +0 0.0585 +0 0.1171 +0 0.0716 +0 0.1505 +0 0.0628 +0 0.1130 +0 0.2662 +0 0.0609 +0 0.1692 +0 0.0999 +0 0.0456 +0 0.0469 +0 0.1875 +0 0.1229 +0 0.0620 +0 0.0938 +0 0.1005 +0 0.0962 +0 0.2952 +0 0.0571 +0 0.0753 +0 0.2034 +0 0.0671 +0 0.0867 +0 0.1223 +0 0.5126 +0 0.0912 +0 0.1327 +0 0.0752 +0 0.0549 +0 0.0810 +0 0.0855 +0 0.0718 +0 0.1044 +0 0.1339 +0 0.1438 +0 0.0352 +0 0.0984 +0 0.2056 +0 0.1027 +0 0.4778 +0 0.0673 +0 0.2378 +0 0.1675 +0 0.1322 +0 0.1129 +0 0.0574 +0 0.0640 +0 0.1885 +0 0.0739 +0 0.0712 +0 0.1240 +0 0.0461 +0 0.1234 +0 0.2615 +0 0.1219 +0 0.0416 +0 0.1004 +0 0.0480 +0 0.0698 +0 0.0924 +0 0.1194 +0 0.3672 +0 0.6302 +0 0.0650 +0 0.4497 +0 0.1392 +0 0.2291 +0 0.0649 +0 0.2691 +0 0.1088 +0 0.1456 +0 0.0488 +0 0.1443 +0 0.0795 +0 0.0643 +0 0.0885 +0 0.2163 +0 0.1101 +0 0.3136 +0 0.0741 +0 0.0890 +0 0.1512 +0 0.1145 +0 0.1332 +1 0.8740 +0 0.0513 +0 0.0588 +0 0.1128 +0 0.1351 +0 0.1227 +0 0.2464 +0 0.0803 +0 0.7213 +0 0.1205 +0 0.0656 +0 0.1339 +0 0.1581 +1 0.8307 +0 0.2445 +0 0.3995 +0 0.0876 +0 0.0423 +0 0.0900 +0 0.1121 +0 0.0618 +0 0.1164 +0 0.0967 +0 0.1315 +0 0.2897 +0 0.1538 +0 0.2674 +0 0.0790 +0 0.1376 +0 0.0792 +0 0.0400 +0 0.1373 +0 0.1283 +0 0.1048 +0 0.0947 +0 0.1351 +0 0.0747 +0 0.6813 +0 0.1482 +0 0.1797 +0 0.0736 +0 0.2583 +0 0.0855 +0 0.0896 +0 0.0750 +0 0.1321 +0 0.0891 +0 0.0685 +0 0.0413 +0 0.2453 +0 0.0880 +0 0.0775 +0 0.1420 +0 0.1096 +0 0.2986 +0 0.0924 +0 0.2951 +0 0.2264 +0 0.1926 +0 0.1092 +0 0.2223 +0 0.1125 +0 0.0707 +0 0.0595 +0 0.0641 +0 0.0503 +0 0.3076 +0 0.1245 +0 0.0870 +0 0.1575 +0 0.1935 +0 0.1186 +0 0.0731 +0 0.1828 +1 0.8046 +0 0.6428 +0 0.1427 +0 0.1175 +0 0.2017 +0 0.0649 +0 0.3508 +0 0.0761 +0 0.2283 +0 0.4113 +0 0.2881 +0 0.0801 +0 0.0896 +0 0.1777 +0 0.0842 +0 0.1769 +0 0.1346 +0 0.2510 +0 0.2247 +0 0.1898 +0 0.0824 +0 0.0710 +0 0.0692 +0 0.1402 +0 0.2682 +0 0.1688 +0 0.1439 +0 0.1343 +0 0.0919 +0 0.0524 +0 0.0948 +1 0.8358 +0 0.0830 +0 0.1205 +0 0.1868 +0 0.1741 +0 0.1274 +0 0.1218 +0 0.2676 +0 0.0620 +0 0.2164 +0 0.0454 +0 0.1049 +0 0.1444 +0 0.1391 +0 0.1586 +0 0.1595 +0 0.1304 +0 0.1672 +0 0.0719 +0 0.0794 +0 0.0435 +0 0.1658 +0 0.0985 +0 0.0934 +0 0.0880 +0 0.1173 +0 0.0826 +0 0.0589 +0 0.0578 +0 0.0982 +0 0.1426 +0 0.1051 +0 0.1638 +0 0.1357 +0 0.0500 +0 0.1976 +0 0.0848 +0 0.1717 +0 0.0426 +0 0.0947 +0 0.0718 +0 0.0435 +0 0.1003 +0 0.1001 +0 0.0641 +0 0.0698 +0 0.0750 +0 0.1115 +0 0.2945 +0 0.0692 +0 0.0541 +0 0.0931 +0 0.2099 +0 0.2058 +0 0.1295 +0 0.0678 +0 0.1067 +0 0.0528 +0 0.1250 +0 0.0818 +0 0.2555 +0 0.0639 +0 0.0654 +0 0.1059 +0 0.5052 +0 0.1909 +0 0.0766 +0 0.0378 +0 0.0800 +0 0.0674 +0 0.0763 +0 0.0987 +0 0.0440 +0 0.0418 +0 0.1696 +0 0.1050 +0 0.0691 +0 0.1873 +0 0.0880 +0 0.4915 +0 0.2170 +0 0.0683 +0 0.0661 +0 0.1061 +0 0.1655 +0 0.0633 +0 0.1098 +0 0.0833 +0 0.2618 +0 0.0558 +0 0.1084 +0 0.1228 +0 0.0627 +0 0.1409 +0 0.1682 +0 0.1527 +0 0.3616 +0 0.2156 +0 0.0633 +0 0.2004 +0 0.1232 +0 0.1915 +0 0.1684 +0 0.0841 +0 0.1358 +0 0.1780 +0 0.1046 +0 0.0831 +0 0.0707 +0 0.0504 +0 0.0740 +0 0.2245 +0 0.1918 +0 0.1137 +0 0.1612 +0 0.0473 +0 0.0694 +0 0.3066 +0 0.0884 +0 0.1421 +0 0.0954 +0 0.0418 +0 0.1404 +0 0.0696 +0 0.0814 +0 0.5605 +0 0.0737 +0 0.0878 +0 0.4582 +0 0.0765 +0 0.2873 +0 0.0516 +0 0.1306 +0 0.1824 +0 0.0991 +0 0.0896 +0 0.0540 +0 0.1199 +0 0.3719 +0 0.1441 +0 0.4005 +0 0.1122 +0 0.2994 +0 0.0675 +0 0.1799 +0 0.3844 +0 0.1234 +0 0.0930 +0 0.0961 +0 0.0706 +0 0.1395 +0 0.0915 +0 0.1278 +0 0.0809 +0 0.1936 +0 0.4008 +0 0.2166 +0 0.2308 +0 0.0505 +0 0.1955 +0 0.1276 +0 0.0520 +0 0.5424 +0 0.0927 +0 0.1464 +0 0.0704 +0 0.2839 +0 0.0663 +0 0.1362 +0 0.2244 +0 0.1060 +0 0.2147 +0 0.0706 +0 0.2445 +0 0.7081 +0 0.0633 +1 0.8426 +0 0.0864 +0 0.0691 +0 0.2218 +0 0.0385 +0 0.3164 +0 0.0855 +0 0.1082 +0 0.0458 +0 0.1869 +0 0.1258 +0 0.0755 +0 0.1311 +0 0.3605 +0 0.2217 +0 0.2058 +0 0.1242 +0 0.0977 +0 0.0874 +0 0.1778 +0 0.1220 +0 0.0590 +0 0.6711 +0 0.0746 +0 0.1633 +0 0.1186 +0 0.0870 +0 0.1018 +0 0.3242 +0 0.1886 +0 0.0954 +0 0.0299 +0 0.2289 +0 0.1888 +0 0.1206 +0 0.1054 +0 0.0508 +0 0.1862 +0 0.6582 +0 0.2144 +0 0.4915 +0 0.2758 +0 0.1351 +0 0.0517 +0 0.1263 +0 0.0589 +0 0.7260 +0 0.1022 +0 0.1201 +0 0.1721 +0 0.1996 +0 0.0958 +0 0.0793 +0 0.0957 +0 0.1586 +0 0.1203 +0 0.0644 +0 0.1747 +0 0.0920 +0 0.0374 +1 0.9065 +0 0.2373 +0 0.1692 +0 0.2296 +0 0.1270 +0 0.0678 +0 0.1394 +0 0.1025 +0 0.1520 +0 0.0946 +0 0.3106 +0 0.0775 +0 0.1975 +0 0.0674 +0 0.0633 +1 0.8485 +0 0.0775 +0 0.1008 +0 0.0899 +0 0.1687 +0 0.1076 +0 0.1274 +0 0.0575 +0 0.1238 +0 0.0705 +0 0.1097 +0 0.0539 +0 0.2048 +0 0.4780 +0 0.1066 +0 0.1130 +0 0.1063 +0 0.0748 +0 0.1232 +0 0.1611 +0 0.1715 +0 0.0655 +0 0.1309 +0 0.2176 +0 0.0685 +0 0.0774 +0 0.1323 +0 0.4594 +0 0.0715 +0 0.4886 +0 0.1976 +0 0.2006 +0 0.1364 +0 0.3786 +0 0.2187 +0 0.0940 +0 0.1385 +0 0.1986 +0 0.1973 +0 0.0999 +0 0.1316 +0 0.1661 +0 0.1748 +0 0.1594 +0 0.0707 +0 0.0825 +0 0.0632 +0 0.0729 +0 0.0986 +0 0.1928 +0 0.0641 +0 0.0704 +0 0.2229 +0 0.0939 +0 0.0605 +0 0.1610 +0 0.0767 +0 0.0884 +0 0.1993 +0 0.0367 +0 0.1118 +0 0.3314 +0 0.1353 +0 0.6161 +0 0.1910 +0 0.1548 +0 0.0764 +0 0.0782 +0 0.0821 +0 0.0592 +0 0.1174 +0 0.2047 +0 0.0441 +0 0.0553 +0 0.3162 +0 0.2239 +0 0.2426 +0 0.0672 +0 0.0566 +0 0.0976 +0 0.2189 +0 0.0361 +0 0.0957 +0 0.0939 +0 0.0840 +0 0.1100 +0 0.3139 +0 0.0987 +0 0.0774 +0 0.2539 +0 0.0675 +0 0.0777 +0 0.1203 +0 0.1275 +0 0.0962 +0 0.1104 +0 0.1360 +0 0.2100 +0 0.0922 +0 0.0651 +0 0.1205 +0 0.1057 +0 0.0942 +0 0.0858 +0 0.0892 +0 0.0885 +0 0.1941 +0 0.0442 +0 0.0736 +0 0.1623 +0 0.2447 +0 0.0933 +0 0.1139 +0 0.1125 +0 0.1055 +0 0.2337 +0 0.1123 +0 0.1293 +0 0.0936 +0 0.1780 +0 0.2962 +0 0.0657 +0 0.3093 +0 0.3880 +0 0.0492 +0 0.2266 +0 0.1057 +0 0.1780 +0 0.3883 +0 0.0678 +0 0.5318 +0 0.3200 +0 0.1468 +0 0.0989 +0 0.2222 +0 0.0664 +0 0.1695 +0 0.6431 +0 0.1351 +0 0.1312 +0 0.1333 +0 0.0811 +0 0.0739 +0 0.2209 +0 0.2839 +0 0.0801 +0 0.2327 +0 0.2267 +0 0.0665 +0 0.1039 +0 0.0688 +0 0.0799 +0 0.1649 +0 0.0724 +0 0.1563 +0 0.0628 +0 0.2544 +0 0.0438 +1 0.7506 +0 0.0759 +0 0.1210 +0 0.0943 +0 0.1119 +0 0.0795 +0 0.0645 +0 0.0631 +0 0.2332 +0 0.1436 +0 0.2572 +0 0.1313 +0 0.1046 +0 0.2078 +0 0.0696 +0 0.0721 +0 0.1296 +0 0.0752 +0 0.0639 +0 0.2832 +0 0.1391 +0 0.1791 +0 0.1207 +0 0.0361 +0 0.0303 +0 0.0504 +0 0.1518 +0 0.1690 +0 0.0874 +1 0.7965 +0 0.1279 +0 0.1072 +0 0.2911 +0 0.6824 +0 0.0557 +0 0.0806 +0 0.0744 +0 0.0672 +0 0.0743 +0 0.5378 +0 0.0794 +0 0.0960 +0 0.2166 +0 0.1164 +0 0.1681 +0 0.1281 +0 0.0691 +0 0.1501 +0 0.0966 +0 0.1740 +0 0.0804 +0 0.1924 +0 0.0510 +0 0.0843 +0 0.0965 +0 0.1002 +0 0.0777 +0 0.1173 +0 0.2736 +0 0.2804 +0 0.0654 +0 0.1288 +0 0.1425 +0 0.0724 +0 0.0505 +0 0.3494 +0 0.0940 +0 0.0754 +0 0.2857 +0 0.0375 +0 0.1058 +0 0.1545 +0 0.0859 +0 0.0917 +0 0.1175 +0 0.4829 +0 0.1748 +0 0.0574 +0 0.0812 +0 0.5841 +0 0.1948 +0 0.0466 +0 0.1255 +0 0.0643 +0 0.1254 +0 0.0618 +0 0.0885 +0 0.3423 +0 0.0784 +0 0.4645 +0 0.0407 +0 0.1763 +1 0.8574 +0 0.2771 +0 0.0949 +0 0.0732 +0 0.0764 +0 0.0895 +0 0.1322 +0 0.0780 +0 0.0464 +0 0.4137 +0 0.0987 +0 0.0869 +0 0.2989 +0 0.5374 +0 0.0809 +0 0.0755 +0 0.0623 +0 0.1244 +0 0.1076 +0 0.1268 +0 0.1359 +0 0.2228 +0 0.0609 +0 0.2490 +0 0.0466 +0 0.0777 +0 0.0679 +0 0.1023 +0 0.0971 +0 0.5826 +0 0.1696 +0 0.1510 +0 0.1617 +0 0.0777 +0 0.2256 +0 0.1252 +0 0.0771 +0 0.0891 +0 0.0559 +0 0.1299 +0 0.0715 +0 0.2761 +0 0.0610 +0 0.3011 +0 0.0551 +0 0.1547 +0 0.0774 +0 0.0630 +0 0.0804 +0 0.3149 +0 0.1021 +0 0.1407 +0 0.1462 +0 0.1585 +0 0.0354 +0 0.1816 +0 0.1935 +0 0.1097 +0 0.1414 +0 0.0907 +0 0.0364 +0 0.0649 +0 0.4726 +0 0.0583 +0 0.0718 +0 0.1264 +0 0.0560 +0 0.1574 +0 0.0944 +0 0.1222 +0 0.0683 +0 0.0799 +0 0.0779 +0 0.2101 +0 0.2010 +0 0.0636 +0 0.1072 +0 0.5107 +0 0.0793 +0 0.0744 +0 0.0539 +0 0.1042 +0 0.0945 +0 0.2501 +0 0.2703 +0 0.1132 +0 0.2061 +0 0.1468 +0 0.1664 +0 0.1239 +0 0.1976 +0 0.0780 +0 0.0400 +0 0.1522 +0 0.0505 +0 0.3093 +0 0.0961 +0 0.1515 +0 0.0654 +0 0.1375 +0 0.5247 +0 0.0672 +0 0.1151 +0 0.0608 +0 0.1390 +0 0.0615 +0 0.1365 +0 0.0804 +0 0.0825 +0 0.2556 +0 0.0674 +0 0.1469 +0 0.0777 +0 0.0417 +0 0.0784 +0 0.0991 +0 0.0839 +0 0.1032 +0 0.1184 +0 0.1570 +0 0.2050 +0 0.1619 +0 0.0653 +0 0.0700 +0 0.0437 +0 0.0750 +0 0.0839 +0 0.0465 +0 0.1345 +0 0.0425 +0 0.1021 +0 0.1258 +0 0.0671 +0 0.0537 +0 0.0877 +0 0.0994 +0 0.0704 +0 0.1436 +0 0.0550 +0 0.1079 +0 0.0852 +0 0.4961 +0 0.1484 +0 0.1583 +0 0.1014 +0 0.0904 +0 0.0620 +0 0.2025 +0 0.1258 +0 0.0827 +0 0.1178 +0 0.2020 +0 0.1243 +0 0.0712 +0 0.0729 +0 0.1024 +0 0.0800 +0 0.1201 +0 0.1680 +0 0.0666 +0 0.1076 +0 0.7437 +0 0.2017 +0 0.1017 +0 0.1644 +0 0.0727 +0 0.1184 +0 0.1121 +0 0.1064 +0 0.2292 +0 0.0714 +0 0.0413 +0 0.0430 +0 0.0423 +0 0.1103 +0 0.3807 +0 0.0700 +0 0.0665 +0 0.2006 +0 0.1175 +0 0.0560 +0 0.0691 +0 0.0898 +0 0.0933 +0 0.2305 +0 0.0676 +0 0.0683 +0 0.2362 +0 0.0719 +0 0.4359 +0 0.1286 +0 0.0754 +0 0.0637 +0 0.1841 +0 0.0854 +0 0.1522 +0 0.0474 +0 0.1257 +0 0.1462 +0 0.1410 +0 0.1618 +0 0.1090 +0 0.3460 +0 0.0870 +0 0.1668 +0 0.1572 +0 0.2944 +0 0.2186 +0 0.0880 +0 0.0904 +0 0.0781 +0 0.3488 +0 0.0453 +0 0.1085 +0 0.0566 +0 0.1496 +0 0.1753 +0 0.1310 +0 0.1107 +0 0.0574 +0 0.2817 +0 0.1188 +0 0.2190 +0 0.1149 +0 0.0812 +0 0.1951 +0 0.0682 +0 0.0305 +0 0.1166 +0 0.1081 +0 0.2280 +0 0.2382 +0 0.2511 +0 0.0586 +0 0.1342 +0 0.0852 +0 0.2752 +0 0.0985 +0 0.1696 +0 0.1984 +0 0.0525 +0 0.1288 +0 0.0566 +0 0.1491 +0 0.1480 +0 0.1487 +0 0.1505 +0 0.0288 +0 0.3179 +0 0.1362 +0 0.1622 +0 0.3034 +0 0.0764 +0 0.0791 +0 0.0896 +0 0.0735 +0 0.0888 +0 0.0481 +0 0.2140 +0 0.1415 +0 0.0762 +0 0.1239 +0 0.1693 +0 0.0723 +0 0.1742 +0 0.0887 +0 0.0929 +0 0.1791 +0 0.3423 +0 0.1931 +0 0.0473 +0 0.1781 +0 0.1340 +1 0.8507 +0 0.1066 +0 0.6076 +0 0.0498 +0 0.1084 +0 0.1524 +0 0.1478 +0 0.3517 +0 0.0911 +0 0.1372 +0 0.1485 +0 0.0380 +0 0.1069 +0 0.0748 +0 0.1023 +0 0.1001 +0 0.0988 +0 0.2778 +0 0.3361 +0 0.0868 +0 0.3409 +0 0.0643 +0 0.0977 +0 0.0739 +0 0.0668 +0 0.2151 +0 0.1247 +0 0.1261 +0 0.1911 +0 0.5338 +0 0.0781 +0 0.2102 +0 0.0404 +0 0.1702 +0 0.0767 +0 0.1126 +0 0.4320 +0 0.6655 +0 0.2020 +0 0.0622 +0 0.0841 +0 0.4198 +0 0.0826 +0 0.1900 +0 0.1906 +0 0.0800 +0 0.3665 +0 0.1083 +0 0.2349 +0 0.0887 +0 0.1044 +0 0.1194 +0 0.7492 +0 0.0666 +0 0.1007 +0 0.3083 +0 0.0939 +0 0.1425 +0 0.0596 +0 0.0900 +0 0.0524 +0 0.0767 +0 0.0851 +0 0.0508 +0 0.2032 +0 0.0473 +0 0.0597 +0 0.3000 +0 0.0605 +0 0.0696 +0 0.0845 +0 0.3385 +0 0.0847 +0 0.0673 +0 0.1172 +0 0.0379 +0 0.2539 +0 0.0986 +0 0.1799 +0 0.0949 +0 0.0714 +0 0.1189 +0 0.0970 +0 0.1139 +0 0.0967 +0 0.1082 +0 0.0646 +0 0.0493 +0 0.0565 +0 0.1078 +0 0.0448 +0 0.4114 +0 0.0568 +0 0.2817 +0 0.0546 +0 0.1891 +0 0.0514 +0 0.0705 +0 0.2235 +0 0.2966 +0 0.3125 +0 0.0896 +0 0.1026 +0 0.1395 +0 0.1734 +0 0.0971 +0 0.0365 +0 0.0325 +0 0.0350 +0 0.4054 +0 0.0497 +0 0.0948 +0 0.0468 +0 0.2201 +0 0.0600 +1 0.8699 +0 0.1164 +0 0.0551 +0 0.0665 +0 0.0517 +0 0.1482 +0 0.1559 +0 0.0548 +0 0.0590 +0 0.1528 +0 0.0588 +0 0.0914 +0 0.2597 +0 0.1080 +0 0.1111 +0 0.0666 +0 0.1112 +0 0.1400 +0 0.1726 +0 0.2162 +0 0.0392 +0 0.2623 +0 0.0871 +0 0.1153 +0 0.0801 +0 0.3711 +0 0.0588 +0 0.0716 +0 0.0462 +0 0.0682 +0 0.0448 +0 0.0485 +0 0.1155 +0 0.0670 +0 0.0669 +0 0.0661 +0 0.0482 +0 0.1506 +0 0.0963 +1 0.8602 +0 0.0612 +0 0.0958 +0 0.7062 +0 0.1926 +0 0.1001 +0 0.1500 +0 0.1484 +0 0.4628 +0 0.4378 +0 0.0947 +0 0.6487 +0 0.1308 +0 0.1197 +0 0.1292 +0 0.0787 +0 0.2849 +0 0.1212 +0 0.1321 +0 0.0424 +0 0.0831 +0 0.0449 +0 0.1749 +0 0.0478 +0 0.0515 +0 0.0804 +0 0.1468 +0 0.1433 +0 0.2538 +0 0.0693 +0 0.1148 +0 0.1359 +0 0.1510 +0 0.0921 +0 0.1061 +1 0.7912 +0 0.0420 +0 0.1767 +0 0.1822 +0 0.3179 +0 0.1850 +1 0.7705 +0 0.1207 +0 0.0510 +0 0.0852 +0 0.0408 +0 0.0643 +0 0.0485 +0 0.1779 +0 0.1019 +0 0.1527 +0 0.1897 +0 0.6444 +0 0.0557 +0 0.0912 +0 0.1002 +0 0.0803 +0 0.0547 +0 0.2249 +0 0.0804 +0 0.1360 +0 0.1145 +0 0.0563 +0 0.0954 +0 0.1249 +0 0.0671 +0 0.2613 +0 0.1451 +0 0.2353 +0 0.0657 +0 0.1503 +0 0.0862 +0 0.0972 +0 0.2254 +0 0.1467 +0 0.1160 +0 0.0662 +0 0.0506 +0 0.1010 +0 0.0505 +0 0.5559 +0 0.1633 +0 0.0800 +0 0.0743 +0 0.1885 +0 0.7117 +0 0.0953 +0 0.0562 +0 0.1146 +0 0.1819 +0 0.1302 +0 0.0933 +0 0.2564 +0 0.4205 +0 0.0702 +0 0.0986 +0 0.1241 +0 0.3385 +0 0.0525 +0 0.0938 +0 0.2389 +0 0.1876 +0 0.1013 +0 0.0678 +0 0.4256 +0 0.2485 +0 0.1967 +0 0.0610 +0 0.2120 +0 0.1010 +0 0.1147 +0 0.0424 +0 0.1780 +0 0.0362 +0 0.1130 +0 0.0899 +0 0.0573 +0 0.0521 +0 0.1207 +0 0.1181 +0 0.1301 +0 0.0621 +0 0.1341 +0 0.2157 +0 0.0834 +0 0.2417 +0 0.0563 +0 0.0990 +0 0.1064 +0 0.1855 +0 0.0579 +0 0.0374 +0 0.0400 +0 0.0697 +0 0.0803 +0 0.1129 +0 0.1465 +0 0.0823 +0 0.1013 +0 0.0892 +0 0.0586 +0 0.1079 +0 0.0673 +0 0.0553 +0 0.0625 +0 0.1176 +0 0.0536 +0 0.0914 +0 0.1164 +0 0.0661 +0 0.0899 +0 0.1253 +0 0.1919 +0 0.0691 +0 0.4138 +0 0.0590 +0 0.0652 +0 0.1255 +0 0.1171 +0 0.0839 +0 0.1860 +0 0.1676 +0 0.3061 +0 0.0794 +0 0.0644 +0 0.0687 +0 0.0813 +0 0.0999 +0 0.1607 +0 0.1703 +0 0.1194 +0 0.0719 +0 0.0978 +0 0.1073 +0 0.1242 +0 0.6410 +0 0.0714 +0 0.0832 +0 0.1440 +0 0.2576 +0 0.0626 +0 0.2709 +0 0.2072 +0 0.0366 +0 0.0593 +0 0.0612 +0 0.2254 +0 0.1012 +0 0.1393 +0 0.2594 +0 0.2790 +0 0.3914 +0 0.1178 +0 0.1209 +0 0.1693 +0 0.2444 +0 0.2879 +0 0.1843 +0 0.1103 +0 0.1011 +0 0.1173 +0 0.0792 +0 0.0727 +0 0.0633 +0 0.2084 +0 0.0512 +0 0.0598 +0 0.0543 +0 0.4869 +0 0.1382 +0 0.5492 +0 0.0970 +0 0.0625 +0 0.1122 +0 0.0818 +0 0.3167 +0 0.4059 +0 0.1478 +0 0.0881 +0 0.1780 +0 0.4690 +0 0.0609 +0 0.1366 +0 0.0706 +0 0.1428 +0 0.1430 +0 0.0872 +0 0.1033 +0 0.0384 +0 0.0473 +0 0.0549 +0 0.1536 +0 0.0916 +0 0.0996 +0 0.0353 +0 0.1953 +0 0.2076 +0 0.0562 +0 0.1318 +0 0.0746 +0 0.1266 +0 0.0586 +0 0.0449 +0 0.7091 +0 0.0885 +0 0.1367 +0 0.1616 +0 0.0746 +0 0.0971 +0 0.0544 +0 0.0910 +0 0.0519 +0 0.0827 +0 0.1178 +0 0.3091 +0 0.0840 +0 0.0965 +0 0.3747 +0 0.0856 +0 0.0446 +0 0.0699 +0 0.5563 +0 0.1308 +0 0.0808 +0 0.1151 +0 0.2590 +0 0.1462 +0 0.1246 +0 0.1271 +0 0.2516 +0 0.0762 +0 0.0892 +0 0.1581 +0 0.0427 +0 0.0456 +0 0.0601 +0 0.0783 +0 0.1473 +0 0.0821 +0 0.1313 +0 0.2446 +0 0.0919 +0 0.0812 +0 0.1557 +0 0.1544 +0 0.0612 +0 0.1039 +0 0.0744 +1 0.8014 +0 0.0426 +0 0.1441 +0 0.0548 +0 0.1326 +0 0.0415 +0 0.1265 +0 0.3747 +0 0.2202 +0 0.1408 +0 0.0783 +0 0.2415 +0 0.0508 +0 0.0983 +0 0.1158 +0 0.1106 +0 0.2951 +0 0.1032 +0 0.2183 +0 0.2324 +0 0.6877 +0 0.0832 +0 0.0776 +0 0.1660 +0 0.0925 +0 0.0463 +0 0.0444 +0 0.1155 +1 0.8851 +0 0.0328 +0 0.0889 +0 0.1423 +0 0.1399 +0 0.0501 +0 0.0620 +0 0.2933 +0 0.1356 +0 0.1773 +0 0.0694 +0 0.0676 +0 0.0474 +0 0.1205 +0 0.0628 +1 0.7781 +0 0.2970 +0 0.3011 +0 0.0805 +0 0.1127 +0 0.2071 +0 0.1762 +0 0.0622 +1 0.7760 +0 0.1468 +0 0.1716 +0 0.1499 +0 0.0769 +0 0.0563 +0 0.0604 +0 0.0721 +0 0.0820 +0 0.3561 +0 0.2265 +0 0.6716 +0 0.0618 +0 0.1821 +0 0.1728 +0 0.1399 +0 0.1394 +0 0.0595 +0 0.0544 +0 0.0919 +0 0.1346 +0 0.1225 +0 0.1832 +0 0.0632 +0 0.0891 +0 0.0607 +0 0.0663 +0 0.3574 +0 0.0688 +0 0.0580 +0 0.1279 +0 0.1318 +0 0.0793 +0 0.1567 +0 0.0645 +0 0.1080 +0 0.3797 +0 0.1721 +0 0.0953 +0 0.1001 +0 0.0690 +0 0.0677 +0 0.0644 +0 0.1227 +0 0.1115 +0 0.1483 +0 0.1163 +0 0.1418 +0 0.0965 +0 0.0834 +0 0.0950 +0 0.0448 +0 0.1299 +0 0.1051 +0 0.1391 +0 0.2129 +0 0.0915 +0 0.1244 +0 0.1250 +0 0.0685 +0 0.0900 +0 0.1535 +0 0.1660 +0 0.0525 +0 0.1219 +0 0.2073 +0 0.3845 +0 0.0955 +0 0.1278 +0 0.0919 +0 0.0567 +0 0.0537 +0 0.0801 +0 0.0963 +0 0.1883 +0 0.0766 +0 0.1762 +0 0.1532 +0 0.3108 +0 0.0601 +0 0.1740 +0 0.0342 +0 0.6099 +0 0.0481 +0 0.1868 +0 0.2137 +0 0.0850 +0 0.0574 +0 0.1000 +0 0.1886 +0 0.1236 +0 0.0547 +0 0.1414 +0 0.0992 +0 0.0998 +0 0.6667 +0 0.5089 +0 0.2805 +0 0.0520 +0 0.0732 +0 0.0511 +0 0.0819 +0 0.0561 +0 0.1463 +0 0.0734 +0 0.0379 +0 0.1814 +0 0.2009 +0 0.0348 +0 0.5515 +0 0.2638 +0 0.0839 +0 0.0762 +0 0.2195 +0 0.0895 +0 0.2733 +0 0.1534 +0 0.1000 +0 0.0757 +0 0.1413 +0 0.0591 +0 0.1166 +0 0.0603 +0 0.1575 +0 0.0479 +0 0.1052 +0 0.0614 +0 0.0558 +0 0.3098 +0 0.0711 +0 0.1029 +0 0.0591 +0 0.2320 +0 0.1526 +0 0.2576 +0 0.0643 +0 0.3234 +0 0.0411 +0 0.1105 +0 0.0974 +0 0.5825 +0 0.0932 +0 0.0452 +0 0.5807 +1 0.9037 +0 0.2016 +0 0.1095 +0 0.2307 +0 0.0868 +0 0.1023 +0 0.0850 +0 0.1285 +0 0.0996 +0 0.0344 +0 0.1248 +0 0.2755 +0 0.1235 +0 0.0625 +0 0.0640 +0 0.0751 +0 0.1969 +0 0.0896 +0 0.0821 +0 0.1875 +0 0.1647 +0 0.0404 +0 0.1783 +0 0.1348 +0 0.0874 +0 0.1371 +0 0.0833 +0 0.0880 +0 0.0844 +0 0.0736 +0 0.1611 +0 0.0475 +0 0.0943 +0 0.0806 +0 0.1781 +0 0.0668 +0 0.1590 +0 0.1105 +0 0.1200 +0 0.1392 +0 0.0599 +0 0.1538 +0 0.0569 +0 0.2661 +0 0.1393 +0 0.2488 +0 0.2165 +0 0.0978 +0 0.0877 +0 0.1053 +0 0.4719 +0 0.0737 +0 0.0611 +0 0.3774 +0 0.0803 +0 0.0648 +0 0.6969 +1 0.7928 +0 0.1077 +0 0.0945 +0 0.2488 +0 0.1002 +0 0.0808 +0 0.0436 +0 0.0508 +0 0.0885 +0 0.0524 +0 0.1316 +0 0.0886 +0 0.0916 +0 0.1677 +0 0.1011 +0 0.3041 +0 0.0886 +0 0.0979 +0 0.2268 +0 0.0829 +0 0.1268 +0 0.0482 +0 0.0964 +0 0.1510 +0 0.2890 +0 0.1394 +0 0.0725 +0 0.1315 +0 0.0470 +1 0.7645 +0 0.1500 +0 0.1235 +0 0.2597 +0 0.1230 +0 0.1463 +0 0.0664 +0 0.0998 +0 0.0500 +0 0.1237 +0 0.0455 +0 0.0686 +1 0.7799 +0 0.1808 +0 0.0969 +0 0.0927 +0 0.0783 +0 0.1092 +0 0.0555 +0 0.0968 +0 0.0681 +0 0.0631 +0 0.1437 +0 0.1003 +0 0.2644 +0 0.1230 +0 0.0890 +0 0.0619 +0 0.0717 +0 0.1712 +0 0.0688 +0 0.0622 +0 0.2182 +0 0.1599 +0 0.0391 +0 0.0839 +0 0.1422 +0 0.1543 +0 0.1913 +0 0.0794 +0 0.1045 +0 0.1015 +0 0.2643 +0 0.1448 +0 0.2006 +0 0.0883 +0 0.0452 +0 0.0656 +0 0.1363 +0 0.0830 +0 0.1767 +0 0.1791 +0 0.1206 +0 0.1074 +0 0.1721 +0 0.0595 +0 0.2377 +0 0.1110 +0 0.2276 +0 0.0884 +0 0.1312 +0 0.2542 +0 0.0807 +0 0.0919 +0 0.0636 +0 0.0773 +0 0.1405 +0 0.0712 +0 0.2291 +0 0.1355 +0 0.2280 +1 0.8459 +0 0.0704 +0 0.1458 +0 0.2015 +0 0.3408 +0 0.0671 +0 0.1073 +0 0.1096 +0 0.1165 +0 0.0431 +0 0.3334 +0 0.1803 +0 0.1655 +0 0.1892 +0 0.1139 +0 0.1167 +0 0.1864 +0 0.6476 +0 0.0900 +0 0.4213 +0 0.1633 +0 0.1171 +0 0.1338 +0 0.1071 +0 0.1775 +0 0.0530 +0 0.0853 +0 0.0660 +0 0.1008 +0 0.1045 +0 0.0595 +0 0.1202 +0 0.0545 +0 0.1773 +0 0.1195 +0 0.1601 +0 0.0456 +0 0.0653 +0 0.0926 +0 0.3357 +0 0.1499 +0 0.5063 +0 0.0774 +0 0.1636 +0 0.0720 +0 0.0656 +0 0.1189 +0 0.0855 +0 0.1163 +0 0.1478 +0 0.0592 +0 0.0890 +0 0.1585 +0 0.2067 +0 0.1677 +0 0.1117 +0 0.1974 +0 0.1201 +0 0.2674 +0 0.2117 +0 0.1374 +0 0.0820 +0 0.0462 +0 0.1096 +0 0.2425 +0 0.0757 +0 0.0402 +0 0.2358 +0 0.0850 +0 0.0509 +0 0.0789 +0 0.0775 +0 0.1310 +0 0.0926 +0 0.0935 +0 0.0547 +0 0.0489 +0 0.0742 +0 0.0633 +0 0.0569 +1 0.7864 +0 0.2227 +0 0.1319 +0 0.0538 +0 0.0559 +0 0.1228 +0 0.1194 +0 0.1531 +0 0.0531 +0 0.1339 +0 0.2439 +0 0.0632 +0 0.1127 +0 0.1146 +0 0.1315 +0 0.0943 +0 0.1300 +0 0.0465 +0 0.0530 +0 0.1762 +0 0.4742 +0 0.0552 +0 0.0887 +0 0.0800 +0 0.0763 +0 0.0465 +0 0.1819 +0 0.1703 +0 0.1112 +0 0.1031 +0 0.0979 +0 0.0834 +0 0.2095 +0 0.2856 +0 0.0554 +0 0.1485 +0 0.0695 +0 0.3452 +0 0.1860 +0 0.0615 +0 0.0610 +0 0.0787 +0 0.2739 +0 0.1149 +0 0.0950 +0 0.1858 +0 0.0533 +0 0.1751 +0 0.0816 +0 0.2647 +0 0.0885 +0 0.0483 +0 0.0756 +0 0.1285 +0 0.1567 +0 0.1157 +0 0.1421 +0 0.1872 +0 0.0775 +0 0.5295 +0 0.1087 +0 0.0727 +0 0.0623 +0 0.0646 +0 0.1689 +0 0.1321 +0 0.3551 +0 0.7341 +0 0.0975 +0 0.3649 +0 0.0626 +0 0.0792 +0 0.1861 +0 0.1285 +0 0.1143 +0 0.0877 +0 0.0702 +0 0.0517 +0 0.0738 +0 0.0906 +0 0.0544 +0 0.1530 +0 0.1598 +0 0.1139 +0 0.1544 +0 0.1419 +0 0.0894 +0 0.1883 +0 0.2365 +0 0.0730 +0 0.1382 +0 0.1195 +0 0.0671 +0 0.1729 +0 0.0773 +0 0.2041 +0 0.4910 +0 0.0784 +0 0.1856 +0 0.0509 +0 0.2867 +0 0.0852 +0 0.0451 +0 0.1429 +0 0.0982 +1 0.7689 +0 0.0684 +0 0.1875 +0 0.2199 +0 0.1212 +0 0.0707 +0 0.0524 +0 0.0705 +0 0.0830 +0 0.0494 +0 0.0787 +0 0.1994 +0 0.1061 +0 0.0484 +0 0.0767 +0 0.2833 +0 0.0691 +0 0.1537 +0 0.0790 +0 0.2387 +0 0.1608 +0 0.0681 +0 0.2061 +0 0.0886 +0 0.4910 +0 0.0744 +0 0.0493 +0 0.1553 +0 0.0492 +0 0.1501 +0 0.2553 +0 0.0427 +0 0.1264 +0 0.1322 +0 0.6661 +0 0.0997 +0 0.1637 +0 0.1038 +0 0.2266 +0 0.0958 +0 0.1913 +0 0.2128 +0 0.0942 +0 0.1375 +0 0.1750 +0 0.0755 +0 0.0914 +0 0.2014 +1 0.8172 +0 0.0675 +0 0.1513 +0 0.0454 +0 0.1494 +0 0.1004 +0 0.0363 +0 0.0630 +0 0.0525 +0 0.1052 +0 0.2216 +1 0.7916 +0 0.0916 +0 0.0871 +0 0.0994 +0 0.0651 +0 0.0948 +1 0.8377 +0 0.1210 +0 0.1868 +0 0.0930 +0 0.6886 +0 0.2835 +0 0.0516 +0 0.7423 +0 0.6072 +0 0.1563 +0 0.0520 +0 0.1168 +0 0.0835 +0 0.0849 +0 0.0996 +0 0.0991 +0 0.0520 +0 0.0974 +0 0.0456 +0 0.0372 +0 0.7367 +0 0.0498 +0 0.0468 +0 0.0983 +0 0.0647 +0 0.1230 +0 0.0614 +0 0.1732 +0 0.0750 +0 0.1973 +1 0.7506 +0 0.1218 +0 0.1409 +0 0.1262 +1 0.8476 +0 0.0909 +0 0.1244 +0 0.0732 +0 0.0635 +0 0.0741 +0 0.0942 +0 0.1037 +0 0.0549 +0 0.0884 +0 0.0921 +0 0.3874 +0 0.1072 +0 0.0939 +0 0.0985 +0 0.2982 +1 0.8498 +0 0.1547 +0 0.0577 +0 0.0982 +1 0.7631 +0 0.1367 +0 0.0718 +0 0.0575 +0 0.1596 +0 0.2331 +0 0.0672 +0 0.0891 +0 0.1460 +0 0.1027 +0 0.0916 +0 0.0700 +0 0.0677 +0 0.4079 +0 0.1275 +0 0.0580 +0 0.3177 +0 0.2365 +0 0.0912 +0 0.0411 +0 0.1111 +0 0.1646 +0 0.1371 +0 0.1259 +0 0.1392 +0 0.1089 +0 0.1402 +0 0.1270 +0 0.0523 +0 0.0848 +0 0.1197 +0 0.1241 +0 0.1431 +0 0.0608 +0 0.0793 +0 0.1547 +0 0.0464 +0 0.0630 +0 0.1265 +0 0.1058 +0 0.0784 +0 0.0978 +0 0.1069 +0 0.1534 +0 0.1033 +0 0.1169 +0 0.1039 +0 0.0617 +0 0.1709 +0 0.1711 +1 0.7692 +0 0.0945 +0 0.3093 +0 0.0810 +0 0.1196 +0 0.1135 +0 0.1223 +0 0.1738 +0 0.1266 +0 0.0468 +0 0.0692 +0 0.1147 +0 0.1142 +0 0.0917 +0 0.2092 +0 0.1045 +0 0.1592 +0 0.1199 +0 0.0964 +0 0.0991 +0 0.0749 +0 0.0621 +0 0.2855 +0 0.0531 +1 0.8107 +0 0.2398 +0 0.0992 +0 0.1906 +0 0.2595 +0 0.6803 +0 0.2969 +0 0.1773 +0 0.0529 +0 0.5180 +0 0.1267 +0 0.0579 +0 0.1268 +0 0.1578 +0 0.1128 +0 0.0896 +0 0.1789 +0 0.0765 +0 0.0855 +0 0.1030 +0 0.1566 +0 0.0716 +0 0.0462 +0 0.0800 +0 0.2322 +0 0.0683 +0 0.2118 +0 0.1705 +0 0.1685 +0 0.2039 +0 0.1391 +0 0.0295 +0 0.4335 +0 0.1714 +0 0.2265 +0 0.0869 +0 0.1069 +0 0.0907 +0 0.1961 +0 0.0413 +0 0.1808 +0 0.1118 +0 0.1070 +0 0.0364 +0 0.0743 +0 0.0587 +1 0.8445 +0 0.2127 +0 0.1105 +0 0.0492 +0 0.5407 +0 0.0469 +0 0.0870 +0 0.0982 +0 0.5870 +0 0.0652 +0 0.1831 +0 0.1064 +0 0.0884 +0 0.0522 +0 0.2886 +1 0.7552 +0 0.6670 +0 0.0793 +0 0.1024 +0 0.0991 +0 0.0439 +0 0.3669 +0 0.1352 +0 0.0663 +0 0.0617 +0 0.1182 +0 0.0891 +0 0.1193 +0 0.0586 +0 0.2232 +0 0.1190 +0 0.0746 +0 0.0853 +0 0.1579 +0 0.2582 +0 0.0541 +0 0.1693 +0 0.0772 +0 0.2041 +0 0.1254 +0 0.0641 +0 0.3426 +0 0.4426 +0 0.4532 +0 0.0893 +0 0.0711 +0 0.1605 +1 0.7528 +0 0.0381 +0 0.1427 +0 0.3817 +0 0.7387 +0 0.0610 +0 0.0756 +0 0.1253 +0 0.0827 +0 0.1244 +0 0.0441 +0 0.1571 +0 0.0753 +0 0.0847 +0 0.0786 +0 0.1684 +0 0.0764 +0 0.1333 +0 0.1099 +0 0.0676 +0 0.1355 +0 0.0607 +0 0.0749 +0 0.2540 +0 0.0922 +0 0.0987 +0 0.2276 +0 0.1136 +0 0.0953 +0 0.0723 +0 0.0758 +0 0.0613 +0 0.5244 +0 0.1481 +0 0.0410 +0 0.1633 +0 0.0938 +0 0.0580 +0 0.0329 +0 0.1223 +0 0.0623 +0 0.0656 +0 0.0978 +0 0.0808 +0 0.0503 +0 0.2086 +0 0.1414 +0 0.0823 +0 0.1670 +0 0.0877 +0 0.1987 +0 0.0795 +0 0.0975 +0 0.0671 +0 0.1593 +0 0.0661 +0 0.0937 +0 0.1444 +0 0.0949 +0 0.0800 +0 0.3122 +0 0.0774 +0 0.2446 +0 0.0485 +0 0.1269 +0 0.1138 +0 0.3088 +0 0.0931 +0 0.1354 +0 0.0387 +0 0.1058 +0 0.2062 +0 0.0608 +1 0.3634 +0 0.1835 +0 0.0585 +0 0.0666 +0 0.1677 +0 0.0611 +0 0.1879 +0 0.1299 +0 0.6862 +0 0.0534 +0 0.1567 +0 0.4322 +0 0.0918 +0 0.2736 +0 0.0684 +0 0.1903 +0 0.3838 +0 0.2268 +0 0.0400 +0 0.4089 +0 0.0759 +0 0.2657 +1 0.7834 +0 0.0646 +0 0.1699 +0 0.1109 +0 0.1263 +0 0.1651 +0 0.0846 +0 0.0767 +0 0.2055 +0 0.1117 +0 0.0905 +0 0.0693 +0 0.0686 +0 0.1496 +0 0.1039 +0 0.0971 +0 0.0992 +0 0.0639 +0 0.1290 +0 0.0698 +0 0.2744 +0 0.7338 +0 0.1225 +0 0.1364 +0 0.0800 +0 0.0548 +0 0.1687 +0 0.1198 +0 0.1598 +0 0.0560 +0 0.1573 +0 0.0393 +0 0.1401 +0 0.0788 +0 0.0778 +0 0.0976 +0 0.1318 +0 0.0784 +0 0.1023 +0 0.1989 +0 0.2151 +0 0.7445 +0 0.2192 +0 0.1816 +0 0.2258 +0 0.1090 +0 0.0848 +0 0.0390 +0 0.0561 +0 0.1435 +0 0.1153 +0 0.1429 +0 0.1011 +0 0.1403 +0 0.1478 +0 0.2156 +0 0.1986 +0 0.2077 +0 0.0886 +0 0.0885 +0 0.0778 +0 0.0517 +0 0.0609 +0 0.1717 +0 0.1046 +0 0.2088 +0 0.1859 +0 0.1392 +0 0.2294 +0 0.0854 +1 0.8655 +0 0.0960 +0 0.0683 +0 0.0829 +0 0.1627 +0 0.0744 +0 0.1717 +0 0.3792 +0 0.1056 +0 0.0858 +0 0.1631 +0 0.1564 +0 0.1581 +0 0.1585 +0 0.2312 +0 0.0689 +0 0.1163 +0 0.0560 +0 0.1143 +0 0.1864 +0 0.1616 +0 0.2165 +0 0.1087 +0 0.0842 +0 0.1843 +0 0.1371 +0 0.6116 +0 0.0365 +0 0.0510 +0 0.0514 +0 0.0933 +0 0.1218 +0 0.0974 +0 0.1291 +0 0.0636 +0 0.0546 +0 0.3254 +0 0.1401 +0 0.0810 +0 0.1229 +0 0.7305 +0 0.0469 +0 0.0527 +0 0.1229 +0 0.0434 +0 0.1170 +0 0.2164 +0 0.1659 +0 0.1348 +0 0.0758 +0 0.0931 +0 0.1031 +0 0.1485 +0 0.0527 +0 0.0799 +0 0.0788 +0 0.0460 +0 0.0471 +0 0.0564 +0 0.0466 +0 0.0478 +0 0.0675 +0 0.2102 +0 0.1295 +0 0.1473 +0 0.0827 +0 0.0867 +0 0.0707 +0 0.1237 +0 0.1823 +0 0.0783 +0 0.1082 +0 0.0619 +0 0.1067 +0 0.0985 +0 0.1166 +0 0.0826 +0 0.1241 +0 0.0891 +0 0.1127 +0 0.0527 +0 0.2059 +0 0.3598 +0 0.0902 +0 0.1834 +0 0.0777 +0 0.0839 +0 0.4173 +0 0.0817 +0 0.0671 +0 0.0357 +0 0.1384 +0 0.0774 +0 0.0726 +0 0.3356 +0 0.2870 +0 0.0686 +0 0.0661 +0 0.2590 +0 0.0719 +0 0.1106 +0 0.3519 +0 0.0733 +0 0.2415 +0 0.1211 +0 0.0784 +0 0.1532 +0 0.0701 +0 0.0662 +0 0.1135 +0 0.0368 +0 0.0632 +0 0.0414 +0 0.1239 +0 0.1638 +0 0.0892 +0 0.1065 +0 0.1744 +0 0.0856 +0 0.1796 +0 0.0691 +0 0.1365 +0 0.1459 +1 0.8490 +0 0.1370 +0 0.0686 +0 0.1967 +0 0.2164 +0 0.1785 +0 0.0434 +0 0.2056 +0 0.2370 +0 0.1991 +0 0.1145 +0 0.1617 +0 0.3442 +0 0.3581 +0 0.0585 +0 0.1331 +0 0.0592 +0 0.0808 +0 0.1131 +0 0.1641 +0 0.0697 +0 0.1953 +0 0.0706 +0 0.2681 +0 0.1504 +0 0.0494 +0 0.0773 +0 0.0808 +0 0.0693 +0 0.0634 +0 0.5236 +0 0.0570 +0 0.2907 +0 0.1068 +0 0.0969 +0 0.0660 +0 0.0668 +0 0.0932 +0 0.0782 +0 0.1368 +0 0.1390 +0 0.0668 +0 0.1291 +0 0.0810 +0 0.1006 +0 0.1093 +0 0.1278 +0 0.0994 +0 0.2811 +0 0.1087 +0 0.1081 +0 0.2157 +0 0.2782 +0 0.2427 +0 0.0608 +0 0.0863 +0 0.1613 +0 0.1947 +0 0.2256 +0 0.2627 +0 0.1046 +0 0.1340 +0 0.0765 +0 0.1301 +0 0.0808 +0 0.0704 +0 0.1098 +0 0.0807 +0 0.0800 +0 0.2485 +0 0.0905 +0 0.0800 +0 0.0899 +0 0.1616 +0 0.0743 +0 0.0529 +0 0.0874 +0 0.0851 +0 0.0573 +0 0.1020 +0 0.0430 +0 0.1132 +0 0.1127 +0 0.1264 +0 0.0981 +0 0.2745 +0 0.0869 +0 0.0535 +0 0.0333 +0 0.0811 +0 0.7131 +0 0.0666 +0 0.0768 +0 0.1188 +0 0.1298 +0 0.1819 +0 0.0541 +0 0.0570 +0 0.1837 +0 0.1172 +0 0.1435 +0 0.5997 +0 0.2200 +0 0.0655 +0 0.1458 +0 0.1299 +0 0.0549 +0 0.1304 +0 0.0775 +0 0.3867 +0 0.0352 +0 0.0932 +0 0.1277 +0 0.1039 +0 0.4189 +0 0.1584 +0 0.0604 +0 0.0755 +0 0.0757 +0 0.1086 +0 0.1500 +0 0.1416 +0 0.0901 +0 0.1151 +0 0.5090 +0 0.1144 +0 0.1831 +0 0.1482 +0 0.6597 +0 0.0742 +0 0.0503 +0 0.1006 +0 0.1140 +0 0.0909 +0 0.6236 +0 0.4052 +0 0.0826 +0 0.0880 +0 0.3266 +0 0.2186 +0 0.0546 +0 0.1759 +0 0.0447 +0 0.0468 +0 0.0636 +0 0.0721 +0 0.0616 +0 0.0377 +0 0.0561 +0 0.0718 +0 0.1576 +0 0.1093 +0 0.2402 +0 0.0910 +0 0.0539 +0 0.1043 +0 0.1209 +0 0.0869 +0 0.0783 +0 0.0747 +0 0.1011 +0 0.2215 +0 0.3271 +0 0.2389 +0 0.0878 +0 0.1225 +0 0.2155 +0 0.1299 +0 0.6721 +0 0.1025 +0 0.1184 +0 0.2418 +0 0.0395 +0 0.1122 +0 0.2136 +0 0.1127 +0 0.1940 +0 0.1616 +0 0.1737 +0 0.0558 +0 0.0401 +0 0.1200 +0 0.0854 +0 0.1640 +0 0.0530 +0 0.0964 +0 0.1642 +0 0.0652 +0 0.1315 +0 0.1722 +0 0.0464 +0 0.0581 +0 0.1500 +0 0.0759 +0 0.1828 +0 0.0749 +0 0.0366 +0 0.1756 +0 0.0606 +0 0.1015 +0 0.0895 +0 0.1824 +0 0.2005 +0 0.1579 +0 0.0386 +0 0.2292 +0 0.0693 +0 0.3162 +0 0.2925 +0 0.1138 +0 0.3187 +0 0.0538 +0 0.1685 +0 0.0659 +0 0.1533 +0 0.0930 +0 0.0580 +0 0.0643 +0 0.0576 +0 0.0383 +1 0.7619 +0 0.1021 +0 0.0354 +0 0.1381 +0 0.1639 +0 0.0955 +0 0.1739 +0 0.1444 +0 0.1911 +0 0.0986 +0 0.4623 +0 0.0987 +0 0.2816 +0 0.3023 +1 0.8521 +0 0.5968 +0 0.0734 +0 0.0462 +0 0.1565 +0 0.1318 +0 0.5272 +0 0.0650 +0 0.0637 +0 0.1180 +0 0.0642 +0 0.5595 +0 0.1754 +0 0.4685 +0 0.0537 +0 0.1679 +0 0.0507 +0 0.0399 +0 0.1820 +0 0.5082 +0 0.1299 +0 0.4223 +0 0.1723 +0 0.1181 +0 0.1057 +0 0.0703 +0 0.1027 +0 0.1399 +0 0.1931 +0 0.4116 +0 0.1188 +0 0.0898 +0 0.0525 +0 0.1332 +0 0.1419 +0 0.1674 +0 0.1525 +0 0.1148 +0 0.0780 +0 0.1086 +0 0.1052 +0 0.0792 +0 0.1149 +0 0.0634 +0 0.0483 +0 0.1222 +0 0.3153 +0 0.1054 +0 0.0645 +0 0.3145 +0 0.6725 +0 0.0899 +0 0.1147 +0 0.0617 +0 0.0817 +0 0.0723 +0 0.0859 +0 0.0773 +0 0.0876 +0 0.1353 +0 0.1116 +0 0.0675 +0 0.1270 +0 0.1485 +0 0.1131 +0 0.0597 +0 0.2351 +0 0.0444 +0 0.1202 +0 0.1695 +0 0.1396 +0 0.1056 +0 0.0557 +0 0.1060 +0 0.1566 +0 0.6570 +0 0.0375 +0 0.0796 +0 0.0410 +0 0.0674 +0 0.0676 +0 0.1361 +0 0.1582 +0 0.2625 +0 0.1050 +0 0.1396 +0 0.1748 +0 0.1134 +0 0.0907 +0 0.1698 +0 0.1547 +0 0.0848 +0 0.0796 +0 0.0959 +0 0.1496 +0 0.1039 +0 0.0576 +0 0.2304 +0 0.0351 +0 0.1175 +0 0.0675 +0 0.1269 +0 0.1158 +0 0.2202 +0 0.1537 +0 0.0836 +0 0.0805 +0 0.0736 +0 0.1431 +0 0.0988 +0 0.1164 +0 0.1098 +0 0.1130 +0 0.1186 +0 0.1980 +0 0.3568 +0 0.0606 +0 0.1405 +0 0.1458 +0 0.0628 +0 0.0810 +0 0.2582 +0 0.0855 +0 0.0516 +0 0.0968 +0 0.0997 +0 0.1504 +0 0.1864 +0 0.1222 +0 0.0600 +0 0.1080 +0 0.1607 +0 0.7032 +0 0.0975 +0 0.0557 +0 0.1630 +0 0.0817 +0 0.0581 +0 0.1928 +0 0.1672 +0 0.1266 +0 0.2170 +0 0.0887 +0 0.0826 +0 0.6481 +0 0.0587 +0 0.0542 +0 0.1303 +0 0.2118 +0 0.3616 +0 0.1036 +0 0.1298 +0 0.4139 +0 0.0911 +0 0.1564 +0 0.2731 +0 0.1110 +0 0.1102 +0 0.0808 +0 0.2147 +0 0.1294 +0 0.1367 +0 0.0460 +0 0.1234 +0 0.1727 +0 0.1263 +0 0.3020 +0 0.0731 +0 0.0650 +0 0.1137 +0 0.3330 +0 0.0884 +0 0.0527 +0 0.0750 +0 0.1255 +0 0.2645 +0 0.1443 +0 0.0383 +0 0.0532 +0 0.0602 +0 0.1075 +0 0.1084 +0 0.3539 +0 0.1033 +0 0.1297 +0 0.1492 +0 0.0954 +0 0.1760 +0 0.0883 +0 0.0502 +0 0.1132 +0 0.2156 +0 0.1853 +0 0.1125 +0 0.0697 +0 0.0742 +0 0.0779 +0 0.1564 +0 0.0872 +0 0.0482 +0 0.1282 +0 0.1813 +0 0.2020 +0 0.1831 +0 0.0679 +0 0.0481 +0 0.1024 +0 0.0931 +0 0.1253 +0 0.1024 +0 0.3096 +0 0.0702 +0 0.0854 +0 0.0787 +0 0.1185 +0 0.0818 +0 0.0398 +0 0.1436 +0 0.0914 +0 0.0785 +0 0.0579 +0 0.6058 +0 0.0432 +0 0.0698 +0 0.2671 +0 0.1367 +0 0.1007 +0 0.0761 +0 0.0857 +0 0.1603 +0 0.0834 +0 0.0490 +0 0.1318 +0 0.1310 +0 0.0798 +0 0.6907 +0 0.0629 +0 0.1410 +0 0.0773 +0 0.0658 +0 0.4017 +0 0.0447 +0 0.0864 +0 0.0722 +1 0.8288 +0 0.2214 +0 0.0851 +0 0.0985 +0 0.3579 +0 0.1145 +0 0.0603 +0 0.2421 +0 0.0512 +0 0.1338 +0 0.1393 +0 0.4042 +0 0.1073 +0 0.0982 +1 0.7538 +0 0.1330 +0 0.1426 +0 0.1195 +0 0.1052 +0 0.1392 +0 0.0985 +0 0.0807 +0 0.1818 +0 0.0773 +0 0.1582 +0 0.0797 +0 0.0444 +0 0.0815 +0 0.2496 +0 0.1183 +0 0.1002 +0 0.0865 +0 0.0695 +0 0.1494 +0 0.2173 +0 0.1783 +0 0.1032 +0 0.0920 +0 0.0967 +0 0.0735 +0 0.1801 +0 0.0874 +0 0.0920 +0 0.0491 +0 0.2284 +0 0.0404 +0 0.0906 +0 0.2901 +0 0.3159 +0 0.1720 +0 0.1080 +0 0.0709 +0 0.5082 +0 0.1851 +0 0.0630 +0 0.1589 +0 0.1070 +0 0.0683 +0 0.2138 +0 0.0979 +0 0.1258 +0 0.1501 +0 0.1492 +0 0.0961 +0 0.1114 +0 0.1039 +0 0.1712 +0 0.0566 +0 0.2955 +0 0.0645 +0 0.0664 +0 0.2123 +0 0.1334 +0 0.1413 +0 0.1711 +0 0.1576 +0 0.0603 +0 0.1251 +0 0.0821 +0 0.1435 +0 0.1171 +0 0.1371 +0 0.1128 +0 0.0951 +0 0.5167 +0 0.0872 +1 0.8524 +0 0.1470 +0 0.1770 +0 0.0677 +0 0.4558 +0 0.0586 +1 0.7924 +0 0.0713 +0 0.0426 +0 0.1742 +0 0.3469 +0 0.1083 +0 0.0742 +0 0.2673 +0 0.0707 +0 0.0704 +0 0.0712 +0 0.0414 +0 0.5838 +0 0.0548 +0 0.0930 +0 0.2573 +0 0.2865 +0 0.0479 +0 0.0466 +0 0.1101 +0 0.3496 +0 0.1151 +0 0.1501 +0 0.0866 +0 0.2084 +0 0.0657 +0 0.1629 +0 0.1792 +0 0.1493 +0 0.0798 +0 0.0884 +0 0.2584 +0 0.2245 +0 0.0578 +0 0.0605 +0 0.0507 +0 0.0740 +0 0.0824 +0 0.0499 +0 0.0982 +0 0.1466 +0 0.1057 +0 0.0740 +0 0.1267 +0 0.0516 +0 0.3034 +0 0.5807 +0 0.1560 +0 0.0467 +0 0.1480 +0 0.0861 +0 0.1108 +0 0.0649 +0 0.1905 +0 0.0643 +0 0.1733 +0 0.1459 +0 0.1693 +0 0.0891 +0 0.1370 +0 0.0401 +0 0.0368 +0 0.0866 +0 0.0648 +0 0.4657 +0 0.0809 +0 0.1024 +0 0.1050 +0 0.0354 +0 0.1675 +0 0.2038 +0 0.1259 +0 0.0784 +0 0.2874 +0 0.0604 +0 0.1109 +0 0.1168 +0 0.1856 +0 0.0935 +0 0.0308 +0 0.3515 +0 0.1178 +0 0.1933 +0 0.1075 +0 0.0733 +0 0.0615 +0 0.3918 +0 0.0905 +0 0.1744 +0 0.2002 +0 0.0733 +0 0.0295 +0 0.0492 +0 0.0420 +0 0.0955 +0 0.0923 +0 0.0940 +0 0.1406 +0 0.0546 +0 0.2034 +0 0.1201 +0 0.0605 +0 0.0779 +0 0.0670 +0 0.1387 +0 0.1514 +0 0.2411 +0 0.1482 +0 0.1087 +0 0.1147 +0 0.2235 +0 0.1225 +0 0.3493 +0 0.1375 +0 0.1150 +0 0.0377 +0 0.1373 +0 0.2992 +0 0.0908 +0 0.0681 +0 0.0891 +0 0.0925 +0 0.0930 +0 0.0456 +0 0.0580 +0 0.1851 +1 0.7686 +0 0.0809 +0 0.2208 +0 0.1972 +0 0.0914 +0 0.0602 +0 0.0679 +0 0.0997 +0 0.1851 +0 0.0611 +0 0.1162 +0 0.1027 +0 0.1193 +0 0.1042 +0 0.1105 +0 0.0817 +0 0.1320 +0 0.1988 +0 0.2196 +0 0.0752 +0 0.0662 +0 0.2301 +0 0.1462 +0 0.1297 +0 0.1396 +0 0.2560 +0 0.1509 +0 0.0733 +0 0.0813 +0 0.0535 +0 0.0851 +0 0.0741 +0 0.0474 +0 0.1269 +0 0.1014 +0 0.0704 +0 0.1758 +0 0.0962 +0 0.0863 +0 0.6612 +0 0.2230 +0 0.0398 +0 0.5912 +0 0.0687 +0 0.1971 +0 0.0974 +0 0.0638 +0 0.1258 +0 0.1633 +0 0.2212 +0 0.5044 +0 0.1073 +0 0.0879 +0 0.1545 +0 0.0790 +0 0.2021 +0 0.1103 +0 0.0839 +0 0.1366 +0 0.0670 +0 0.2271 +0 0.0757 +0 0.1996 +0 0.0673 +0 0.1164 +0 0.1142 +0 0.0609 +0 0.0920 +0 0.1520 +0 0.0688 +0 0.1812 +0 0.0980 +0 0.0833 +0 0.4952 +0 0.0657 +0 0.3349 +0 0.2613 +0 0.2801 +0 0.0751 +0 0.0723 +0 0.4945 +0 0.1823 +0 0.0740 +0 0.3036 +0 0.2112 +0 0.0747 +0 0.2206 +0 0.0899 +0 0.1233 +0 0.2089 +0 0.1151 +0 0.2498 +0 0.0965 +0 0.1551 +0 0.1342 +0 0.0899 +0 0.1518 +0 0.5078 +0 0.0863 +0 0.0363 +0 0.1767 +0 0.0679 +0 0.0662 +0 0.0731 +0 0.1753 +0 0.0559 +0 0.1194 +0 0.1065 +0 0.1441 +0 0.1474 +0 0.1103 +0 0.1158 +0 0.2378 +0 0.1920 +0 0.1701 +0 0.0767 +0 0.0579 +0 0.1612 +0 0.0348 +0 0.0963 +0 0.1023 +0 0.2399 +0 0.1209 +0 0.3117 +0 0.0864 +0 0.1438 +0 0.1703 +0 0.1861 +0 0.0825 +0 0.0515 +0 0.1525 +0 0.0536 +0 0.0851 +0 0.3175 +0 0.0849 +0 0.1033 +0 0.1938 +0 0.0584 +0 0.1960 +0 0.1416 +0 0.0556 +0 0.2970 +0 0.3987 +0 0.1225 +0 0.0625 +0 0.1349 +0 0.0884 +0 0.0805 +0 0.0990 +0 0.2187 +0 0.1754 +0 0.0350 +0 0.0413 +0 0.0736 +0 0.1962 +0 0.3883 +0 0.0747 +0 0.0926 +0 0.0480 +0 0.1573 +0 0.0558 +0 0.2935 +0 0.1984 +0 0.1475 +0 0.0569 +0 0.0522 +0 0.0675 +0 0.1305 +0 0.0804 +0 0.0800 +0 0.0726 +0 0.0719 +1 0.8211 +0 0.1573 +0 0.1301 +0 0.1851 +0 0.4149 +0 0.7068 +0 0.0876 +0 0.2131 +0 0.0537 +0 0.1032 +0 0.0919 +0 0.0540 +0 0.2691 +0 0.1875 +0 0.0602 +0 0.1044 +0 0.0764 +0 0.0402 +0 0.0400 +0 0.1551 +0 0.0883 +0 0.1580 +0 0.1236 +1 0.8258 +0 0.0853 +0 0.2575 +0 0.1264 +0 0.1878 +0 0.1593 +0 0.0330 +0 0.0663 +0 0.0919 +0 0.0694 +0 0.0450 +0 0.2139 +0 0.1299 +0 0.0710 +0 0.0981 +0 0.0832 +0 0.1047 +0 0.5041 +0 0.0693 +0 0.1046 +0 0.0790 +1 0.7935 +0 0.1176 +0 0.0628 +0 0.0571 +0 0.0639 +1 0.7937 +0 0.0438 +0 0.1878 +0 0.2490 +0 0.0594 +0 0.1361 +0 0.0636 +0 0.2058 +0 0.2219 +0 0.0516 +0 0.0977 +0 0.1229 +0 0.0717 +0 0.0607 +0 0.1037 +0 0.0861 +0 0.1879 +0 0.2252 +0 0.2081 +0 0.2532 +0 0.1014 +0 0.0408 +0 0.0639 +0 0.1578 +0 0.1277 +0 0.1527 +0 0.0379 +0 0.0632 +0 0.0781 +0 0.3487 +0 0.1577 +0 0.0913 +0 0.6488 +0 0.1269 +0 0.5303 +0 0.2104 +0 0.6562 +0 0.0712 +0 0.2400 +0 0.0717 +0 0.2380 +0 0.0926 +0 0.1418 +0 0.1479 +0 0.0686 +0 0.1165 +0 0.1740 +0 0.1970 +0 0.1663 +0 0.1993 +0 0.1061 +0 0.0969 +0 0.0601 +0 0.1111 +0 0.0637 +0 0.1612 +0 0.1401 +0 0.0585 +0 0.2069 +0 0.1667 +0 0.1122 +0 0.1531 +0 0.0821 +0 0.3285 +0 0.0930 +0 0.0991 +0 0.1062 +0 0.7397 +0 0.1553 +0 0.1222 +0 0.0855 +0 0.0611 +0 0.4916 +0 0.1233 +0 0.3348 +0 0.4281 +0 0.2850 +0 0.0635 +0 0.0453 +0 0.1565 +0 0.6644 +0 0.1204 +0 0.0956 +0 0.1717 +0 0.2233 +0 0.1986 +0 0.0507 +0 0.2026 +0 0.1175 +0 0.2700 +0 0.1699 +0 0.1764 +0 0.0691 +0 0.0954 +0 0.0789 +0 0.1061 +0 0.2466 +0 0.0738 +0 0.0876 +0 0.1365 +0 0.0548 +0 0.0645 +0 0.2329 +0 0.2683 +0 0.0823 +0 0.0756 +0 0.1594 +0 0.1176 +0 0.1335 +0 0.0577 +0 0.1943 +0 0.1133 +0 0.0705 +0 0.4841 +0 0.0654 +0 0.1038 +0 0.0494 +0 0.1786 +0 0.1066 +0 0.2112 +0 0.2321 +0 0.0744 +0 0.0565 +0 0.0570 +0 0.1115 +0 0.1064 +0 0.1458 +0 0.2038 +0 0.1655 +0 0.1030 +0 0.1551 +1 0.7824 +0 0.0532 +0 0.0600 +0 0.2901 +0 0.1084 +0 0.0878 +0 0.0562 +0 0.2180 +0 0.1997 +0 0.0973 +0 0.1435 +0 0.0752 +0 0.0953 +0 0.2965 +0 0.0903 +0 0.1082 +0 0.2523 +0 0.0661 +0 0.0513 +0 0.0982 +0 0.2323 +0 0.4831 +0 0.1381 +0 0.0718 +0 0.1844 +0 0.0999 +0 0.2381 +0 0.0365 +0 0.0806 +0 0.3461 +0 0.6729 +0 0.0820 +0 0.2845 +0 0.7061 +0 0.0657 +0 0.0758 +0 0.1020 +0 0.1773 +0 0.0839 +0 0.1236 +0 0.2485 +0 0.3528 +0 0.1851 +0 0.0842 +0 0.0511 +0 0.1854 +0 0.3312 +0 0.0597 +0 0.2856 +0 0.1046 +0 0.1093 +0 0.1141 +0 0.0509 +0 0.2899 +0 0.0637 +0 0.0854 +0 0.1474 +0 0.6439 +0 0.2005 +0 0.0651 +0 0.0957 +0 0.2378 +0 0.1384 +0 0.0828 +0 0.0726 +1 0.8128 +0 0.0515 +0 0.0984 +0 0.2834 +0 0.0820 +0 0.2290 +0 0.0678 +0 0.1304 +0 0.2900 +0 0.0637 +0 0.0504 +0 0.2222 +0 0.0636 +0 0.1117 +0 0.1019 +0 0.1431 +0 0.0595 +0 0.0922 +0 0.0560 +0 0.0690 +0 0.1037 +0 0.0970 +0 0.2098 +0 0.2812 +0 0.0886 +0 0.0587 +0 0.1239 +0 0.0631 +0 0.0518 +0 0.2674 +0 0.1041 +0 0.1175 +0 0.0684 +0 0.0694 +0 0.0655 +0 0.1923 +0 0.0507 +0 0.1713 +0 0.7175 +0 0.1697 +0 0.1248 +1 0.7673 +0 0.0646 +0 0.1574 +0 0.4061 +0 0.1286 +0 0.2030 +0 0.0675 +0 0.0956 +1 0.7777 +0 0.0689 +0 0.1449 +0 0.0849 +0 0.1554 +0 0.0705 +0 0.0818 +0 0.2552 +0 0.0665 +0 0.0750 +0 0.0737 +0 0.1090 +0 0.0910 +0 0.2285 +0 0.0773 +0 0.2410 +0 0.0879 +1 0.8133 +0 0.1642 +0 0.0778 +0 0.0501 +0 0.0419 +0 0.1226 +0 0.1176 +0 0.0774 +0 0.0609 +0 0.1483 +0 0.1047 +0 0.1931 +0 0.1065 +0 0.0503 +0 0.0423 +0 0.1533 +0 0.0674 +0 0.0399 +1 0.7939 +0 0.0760 +0 0.0948 +0 0.2497 +1 0.8640 +0 0.0733 +0 0.0973 +0 0.1351 +0 0.1549 +0 0.0718 +0 0.1174 +0 0.1118 +0 0.2147 +0 0.1168 +0 0.0621 +0 0.1835 +0 0.1757 +0 0.1009 +0 0.1102 +0 0.1088 +0 0.0385 +0 0.0901 +0 0.0894 +0 0.1510 +0 0.1614 +0 0.0660 +0 0.5076 +0 0.0809 +0 0.1141 +0 0.2978 +0 0.0516 +0 0.0732 +0 0.4809 +0 0.1204 +0 0.0999 +0 0.1844 +0 0.0564 +0 0.1341 +0 0.1349 +0 0.2842 +0 0.0745 +0 0.1290 +0 0.1653 +0 0.0624 +0 0.0856 +0 0.0628 +0 0.1585 +0 0.1449 +0 0.1073 +0 0.0409 +0 0.1336 +0 0.0564 +0 0.1159 +0 0.2261 +0 0.2449 +0 0.0756 +0 0.1109 +0 0.1299 +0 0.1575 +0 0.0623 +0 0.2093 +0 0.4778 +0 0.0568 +0 0.4762 +0 0.0929 +0 0.0588 +0 0.0921 +0 0.1732 +0 0.0915 +0 0.0703 +0 0.1283 +0 0.1675 +0 0.3039 +0 0.0549 +0 0.1486 +0 0.2338 +0 0.4532 +0 0.1339 +0 0.0942 +0 0.4022 +0 0.0933 +0 0.1478 +0 0.1618 +0 0.3033 +0 0.0683 +0 0.0898 +0 0.0562 +0 0.1766 +0 0.0493 +0 0.0635 +0 0.0903 +0 0.0777 +0 0.1666 +0 0.0614 +0 0.0778 +0 0.2349 +0 0.0853 +0 0.1746 +0 0.4346 +0 0.0880 +0 0.1545 +0 0.3454 +1 0.8677 +0 0.0863 +0 0.0905 +0 0.1718 +0 0.1176 +0 0.2207 +0 0.1165 +0 0.3229 +0 0.0643 +0 0.0793 +0 0.0571 +0 0.0747 +0 0.0652 +0 0.0873 +0 0.1407 +0 0.0799 +0 0.0871 +0 0.2536 +0 0.1346 +0 0.1129 +0 0.1208 +0 0.0969 +0 0.1038 +0 0.1515 +0 0.1071 +0 0.0877 +0 0.0766 +0 0.0529 +0 0.1261 +0 0.0750 +0 0.0830 +0 0.0652 +0 0.1030 +0 0.1556 +0 0.0516 +0 0.0906 +0 0.0770 +0 0.1854 +0 0.1488 +0 0.0833 +0 0.1137 +0 0.0704 +0 0.0595 +0 0.0767 +0 0.1035 +0 0.0947 +0 0.0531 +0 0.0933 +0 0.2781 +0 0.0965 +0 0.0686 +0 0.1800 +0 0.0524 +0 0.0787 +0 0.2388 +0 0.0574 +0 0.0986 +0 0.0606 +1 0.7582 +0 0.0942 +0 0.0662 +0 0.0719 +0 0.0490 +0 0.0764 +0 0.4199 +0 0.0836 +0 0.0948 +0 0.1334 +0 0.1771 +0 0.1427 +0 0.3683 +0 0.0657 +0 0.0940 +0 0.1223 +0 0.0956 +0 0.0445 +0 0.0732 +0 0.1060 +0 0.1056 +0 0.0741 +0 0.0959 +0 0.0407 +0 0.1952 +0 0.1224 +0 0.0705 +0 0.1057 +0 0.3080 +0 0.0719 +0 0.0762 +0 0.3082 +0 0.0702 +0 0.0968 +0 0.0882 +0 0.1891 +0 0.3342 +0 0.3281 +0 0.0769 +0 0.0497 +0 0.2183 +0 0.1130 +0 0.1052 +0 0.0732 +0 0.4054 +0 0.1230 +0 0.1701 +0 0.1931 +0 0.1021 +0 0.1205 +0 0.1311 +0 0.1130 +0 0.1122 +0 0.1011 +0 0.0740 +0 0.0653 +0 0.0744 +0 0.0838 +0 0.2069 +0 0.0826 +0 0.0826 +0 0.1379 +0 0.1682 +0 0.0525 +0 0.0879 +0 0.1469 +0 0.0711 +0 0.2392 +0 0.0908 +0 0.0545 +0 0.0299 +0 0.1821 +0 0.3688 +0 0.0791 +0 0.0444 +0 0.0459 +0 0.1095 +1 0.8094 +0 0.1902 +0 0.3281 +0 0.1579 +0 0.0473 +0 0.0661 +0 0.0443 +0 0.1033 +0 0.2025 +0 0.0737 +0 0.3178 +0 0.1379 +0 0.2113 +0 0.2068 +0 0.1468 +0 0.1983 +0 0.1034 +0 0.0559 +0 0.3794 +0 0.0438 +0 0.2921 +0 0.1012 +0 0.4342 +0 0.0600 +0 0.2528 +0 0.1371 +0 0.0901 +0 0.1200 +0 0.0721 +0 0.0426 +0 0.0335 +0 0.6010 +0 0.5099 +0 0.1305 +0 0.3422 +0 0.1790 +0 0.1518 +0 0.0365 +0 0.1949 +0 0.5469 +0 0.0539 +0 0.0390 +0 0.1171 +0 0.0943 +0 0.1198 +0 0.0604 +0 0.2428 +0 0.1260 +0 0.2986 +0 0.4729 +0 0.0920 +0 0.0601 +0 0.1214 +0 0.1593 +0 0.2094 +0 0.0921 +0 0.2144 +0 0.0602 +0 0.1664 +0 0.2585 +0 0.0475 +0 0.1946 +0 0.0909 +0 0.0687 +0 0.0637 +0 0.1326 +0 0.0855 +0 0.0505 +0 0.1307 +0 0.0725 +0 0.2314 +0 0.0555 +0 0.0728 +0 0.0727 +0 0.1553 +0 0.0745 +0 0.0736 +0 0.3353 +0 0.2949 +0 0.2136 +0 0.2764 +0 0.0865 +0 0.1565 +0 0.1060 +0 0.1871 +0 0.1574 +0 0.0629 +0 0.1028 +0 0.2090 +0 0.1442 +0 0.1164 +0 0.1344 +0 0.1991 +0 0.2960 +0 0.0710 +0 0.0703 +0 0.0918 +0 0.1241 +0 0.1947 +0 0.0981 +0 0.1431 +0 0.0702 +0 0.1213 +0 0.0694 +0 0.1179 +0 0.1081 +0 0.0326 +0 0.1076 +0 0.1341 +0 0.0425 +0 0.1163 +0 0.1380 +0 0.1346 +0 0.1028 +0 0.2095 +0 0.0694 +0 0.1411 +0 0.2012 +0 0.1267 +0 0.2864 +0 0.1753 +0 0.2750 +0 0.1011 +0 0.1603 +0 0.0759 +0 0.0701 +0 0.1167 +0 0.1648 +0 0.1009 +0 0.0857 +0 0.1438 +0 0.2234 +0 0.1479 +0 0.0638 +0 0.1254 +0 0.3551 +0 0.0714 +0 0.1419 +0 0.0895 +0 0.0866 +0 0.1636 +0 0.1018 +0 0.1070 +0 0.3804 +0 0.0703 +0 0.1002 +0 0.0430 +1 0.7898 +0 0.1242 +1 0.7501 +0 0.0538 +0 0.2200 +0 0.1308 +0 0.6987 +0 0.3075 +0 0.1124 +0 0.1412 +0 0.1858 +0 0.1251 +0 0.0516 +0 0.0662 +0 0.6678 +0 0.5801 +0 0.0660 +0 0.0902 +0 0.0580 +0 0.6948 +0 0.0685 +0 0.1018 +0 0.0453 +0 0.1043 +0 0.0779 +0 0.2253 +0 0.1124 +0 0.1357 +0 0.0445 +0 0.1257 +0 0.1861 +0 0.1052 +0 0.0548 +0 0.1081 +0 0.1159 +0 0.0556 +0 0.2211 +0 0.0710 +0 0.1507 +0 0.0403 +0 0.0492 +0 0.1110 +0 0.2078 +0 0.0985 +0 0.0776 +0 0.1100 +0 0.1445 +0 0.1214 +0 0.3190 +0 0.0509 +0 0.0844 +0 0.0800 +0 0.2212 +0 0.0591 +0 0.6837 +0 0.0615 +0 0.0939 +0 0.0552 +0 0.1091 +0 0.1974 +0 0.1105 +0 0.0933 +0 0.1551 +0 0.1384 +0 0.6272 +0 0.0637 +0 0.0705 +0 0.1082 +0 0.1400 +0 0.1713 +0 0.0865 +0 0.0694 +0 0.0330 +0 0.1379 +0 0.0895 +0 0.0705 +0 0.3302 +0 0.1042 +0 0.0778 +0 0.0457 +0 0.1517 +0 0.1021 +0 0.3433 +0 0.1575 +0 0.0485 +0 0.1625 +0 0.0786 +0 0.3048 +0 0.2367 +0 0.1447 +0 0.2835 +0 0.4237 +0 0.2145 +0 0.0832 +0 0.0632 +0 0.0836 +0 0.0603 +0 0.0640 +0 0.0688 +0 0.2193 +0 0.0842 +0 0.0980 +0 0.0643 +0 0.2377 +0 0.0479 +0 0.0645 +0 0.0814 +0 0.1530 +0 0.6550 +0 0.0831 +0 0.1558 +0 0.1802 +0 0.0622 +0 0.0781 +0 0.0957 +0 0.1340 +0 0.2824 +0 0.0531 +0 0.0841 +0 0.0368 +0 0.0884 +0 0.1266 +0 0.0853 +0 0.0808 +0 0.1355 +0 0.0706 +0 0.1923 +0 0.0355 +0 0.3124 +0 0.0710 +0 0.0471 +0 0.0835 +0 0.0280 +0 0.1344 +0 0.0453 +0 0.0727 +1 0.8456 +0 0.0839 +0 0.0981 +0 0.0930 +0 0.1629 +0 0.1199 +0 0.6800 +0 0.2183 +0 0.0755 +0 0.0748 +0 0.0704 +0 0.0841 +0 0.5973 +0 0.0527 +0 0.1406 +0 0.0764 +0 0.2108 +0 0.1496 +0 0.2571 +0 0.1587 +0 0.1185 +0 0.0423 +0 0.0621 +0 0.1281 +0 0.1578 +0 0.3566 +0 0.2178 +0 0.1262 +0 0.1559 +0 0.1199 +0 0.3409 +0 0.0668 +0 0.1525 +0 0.3691 +0 0.1313 +0 0.2360 +0 0.0392 +0 0.0540 +0 0.1624 +0 0.0351 +0 0.1677 +0 0.0710 +1 0.7919 +0 0.0970 +1 0.8786 +0 0.0934 +0 0.1102 +0 0.1129 +0 0.2157 +0 0.2217 +0 0.6490 +0 0.1013 +0 0.0605 +0 0.0559 +0 0.2413 +0 0.1477 +0 0.0779 +0 0.1010 +0 0.0589 +0 0.0853 +0 0.0816 +0 0.0565 +0 0.1359 +0 0.0576 +0 0.0640 +0 0.2393 +0 0.1646 +0 0.1896 +0 0.2022 +0 0.1230 +0 0.0632 +1 0.7895 +1 0.7518 +0 0.0669 +0 0.1538 +0 0.0481 +0 0.3648 +0 0.1418 +0 0.2870 +0 0.2124 +0 0.0457 +0 0.0705 +0 0.0800 +0 0.1125 +0 0.0447 +0 0.1165 +0 0.0529 +0 0.1047 +0 0.0588 +0 0.0857 +0 0.1254 +0 0.0748 +0 0.1573 +0 0.4830 +0 0.0358 +0 0.1619 +0 0.0776 +0 0.0649 +0 0.1018 +0 0.0815 +0 0.0355 +0 0.1419 +0 0.0871 +0 0.0353 +0 0.0994 +0 0.1060 +0 0.0914 +0 0.3907 +0 0.0897 +0 0.7418 +0 0.0614 +0 0.1006 +0 0.2045 +0 0.1101 +0 0.5775 +0 0.6763 +0 0.1361 +0 0.2406 +0 0.6181 +0 0.1762 +0 0.3144 +0 0.0713 +0 0.1017 +0 0.0586 +0 0.0547 +0 0.3009 +0 0.1032 +0 0.1492 +0 0.0919 +0 0.1558 +0 0.1289 +0 0.1225 +0 0.0591 +0 0.0628 +0 0.2396 +0 0.0646 +0 0.0481 +0 0.0869 +0 0.0536 +0 0.0731 +0 0.1230 +0 0.0879 +0 0.1518 +0 0.0904 +0 0.0802 +0 0.0779 +0 0.4290 +0 0.0563 +0 0.1410 +0 0.0500 +0 0.1265 +0 0.0450 +0 0.0634 +0 0.2326 +0 0.1112 +0 0.0376 +0 0.0346 +0 0.0904 +0 0.3600 +0 0.1072 +0 0.1089 +0 0.2611 +0 0.1661 +0 0.0445 +0 0.0831 +0 0.2653 +0 0.1270 +0 0.0645 +0 0.3187 +0 0.0845 +0 0.0777 +0 0.1117 +0 0.0634 +0 0.0931 +0 0.0475 +0 0.0704 +0 0.1052 +0 0.0897 +0 0.0577 +0 0.0569 +0 0.1422 +0 0.3350 +0 0.4430 +0 0.0666 +0 0.1735 +1 0.8518 +0 0.6693 +0 0.0910 +0 0.0842 +0 0.2123 +0 0.0381 +0 0.1128 +0 0.1529 +0 0.1405 +0 0.0638 +0 0.0935 +0 0.0689 +0 0.0350 +0 0.1208 +0 0.2272 +0 0.1541 +0 0.1248 +0 0.1316 +0 0.4202 +0 0.1426 +0 0.1672 +0 0.1163 +0 0.0466 +0 0.1637 +0 0.0992 +0 0.2557 +0 0.1600 +0 0.2337 +0 0.0809 +0 0.1661 +0 0.3174 +0 0.0457 +0 0.0768 +0 0.1174 +0 0.0820 +0 0.1146 +0 0.2806 +0 0.4547 +0 0.0591 +0 0.1054 +0 0.0915 +0 0.3082 +0 0.1356 +0 0.1849 +0 0.0399 +0 0.0914 +0 0.1255 +0 0.3218 +0 0.0848 +0 0.6462 +0 0.0853 +0 0.1374 +0 0.0769 +0 0.0295 +0 0.1030 +0 0.0746 +0 0.0676 +0 0.2841 +0 0.2131 +0 0.1698 +0 0.1113 +0 0.6120 +0 0.2388 +0 0.2142 +0 0.2016 +0 0.0457 +0 0.1654 +0 0.0916 +0 0.1131 +0 0.1860 +0 0.1525 +0 0.1085 +0 0.1350 +0 0.0849 +0 0.2510 +0 0.1647 +0 0.1037 +0 0.0615 +0 0.0838 +0 0.0654 +0 0.0989 +0 0.1514 +0 0.0633 +0 0.1064 +0 0.0599 +0 0.1167 +0 0.1440 +0 0.1435 +0 0.0724 +0 0.1132 +0 0.1221 +0 0.0639 +0 0.1551 +0 0.0861 +0 0.0919 +0 0.2052 +0 0.1466 +0 0.1589 +0 0.0435 +0 0.0940 +0 0.1747 +0 0.1531 +0 0.0652 +0 0.1551 +0 0.1092 +0 0.1988 +0 0.2806 +0 0.0709 +0 0.1432 +0 0.1432 +0 0.0461 +0 0.1725 +0 0.0518 +0 0.0944 +0 0.0783 +0 0.0873 +0 0.1280 +0 0.1308 +0 0.0612 +0 0.1039 +0 0.1163 +0 0.0767 +0 0.1985 +0 0.0423 +0 0.1237 +0 0.1297 +0 0.1347 +0 0.1353 +0 0.0911 +0 0.1345 +0 0.0667 +0 0.2452 +0 0.0499 +0 0.1048 +0 0.1482 +0 0.0332 +0 0.1918 +0 0.1564 +0 0.1196 +0 0.0676 +0 0.0781 +0 0.0924 +0 0.1074 +0 0.0324 +0 0.4141 +0 0.1103 +0 0.0526 +0 0.0557 +0 0.1311 +1 0.7760 +0 0.0781 +0 0.0449 +0 0.0700 +0 0.0686 +0 0.3925 +0 0.1430 +0 0.0509 +0 0.2956 +0 0.1370 +0 0.1257 +0 0.0714 +0 0.6130 +0 0.1714 +0 0.1064 +0 0.0553 +0 0.0687 +0 0.0471 +0 0.1370 +0 0.0460 +1 0.8582 +0 0.0559 +0 0.1762 +0 0.0917 +0 0.0907 +0 0.1960 +0 0.1904 +0 0.2326 +0 0.0728 +0 0.2553 +0 0.0615 +0 0.0790 +0 0.1547 +0 0.0394 +0 0.0773 +0 0.3039 +0 0.0931 +0 0.0643 +0 0.0505 +0 0.2813 +0 0.6264 +0 0.0574 +0 0.0764 +0 0.2165 +0 0.0681 +0 0.1050 +0 0.2935 +0 0.0659 +0 0.0904 +0 0.0330 +0 0.1089 +0 0.7346 +0 0.1241 +0 0.0456 +0 0.0806 +0 0.3236 +0 0.1616 +0 0.1038 +0 0.0591 +0 0.0949 +0 0.0453 +0 0.0789 +0 0.1734 +0 0.0978 +0 0.1149 +0 0.1409 +0 0.0528 +0 0.1031 +0 0.0822 +0 0.0764 +0 0.0732 +0 0.1425 +0 0.0700 +0 0.1403 +0 0.1707 +0 0.0444 +0 0.1267 +0 0.1083 +0 0.1112 +0 0.1102 +0 0.7160 +0 0.1124 +0 0.1161 +0 0.2289 +0 0.0893 +0 0.0798 +0 0.0566 +0 0.0751 +0 0.1285 +0 0.0952 +0 0.1184 +0 0.0798 +0 0.1987 +0 0.1486 +0 0.1000 +0 0.0947 +0 0.0519 +0 0.0989 +0 0.0760 +0 0.6486 +0 0.0992 +0 0.1213 +0 0.0796 +0 0.0604 +0 0.0801 +0 0.0813 +0 0.0652 +0 0.0781 +0 0.1734 +0 0.0715 +0 0.2389 +0 0.0955 +0 0.0878 +0 0.0805 +0 0.0512 +0 0.0975 +0 0.1172 +0 0.0905 +0 0.0943 +0 0.0945 +0 0.1008 +0 0.1551 +0 0.1621 +0 0.1781 +0 0.0625 +0 0.1608 +0 0.1501 +0 0.0651 +0 0.0863 +0 0.0832 +0 0.1482 +0 0.0985 +0 0.0860 +0 0.0866 +0 0.1930 +0 0.1705 +0 0.4570 +0 0.0343 +0 0.0573 +0 0.1185 +0 0.1142 +0 0.0562 +0 0.1914 +0 0.0702 +0 0.1161 +0 0.1130 +0 0.0790 +0 0.0780 +0 0.1541 +0 0.0626 +0 0.3683 +0 0.0345 +0 0.1475 +0 0.0887 +0 0.1233 +0 0.0591 +0 0.0703 +0 0.0473 +0 0.0563 +0 0.0497 +0 0.0550 +0 0.0492 +0 0.1476 +0 0.0781 +0 0.0691 +0 0.0630 +0 0.0435 +0 0.1651 +0 0.1018 +0 0.0573 +0 0.1018 +0 0.0789 +0 0.2964 +0 0.0757 +0 0.0632 +0 0.1044 +0 0.0742 +0 0.3336 +0 0.3695 +0 0.1108 +0 0.0568 +0 0.0736 +0 0.0814 +0 0.2462 +0 0.0942 +0 0.0948 +0 0.0941 +0 0.1068 +0 0.1973 +0 0.2556 +0 0.0871 +0 0.2253 +0 0.3669 +0 0.4029 +0 0.2254 +0 0.0594 +0 0.1950 +0 0.0919 +0 0.1340 +0 0.2466 +0 0.0383 +0 0.0530 +0 0.1009 +0 0.0949 +0 0.0688 +0 0.2875 +0 0.0908 +1 0.8883 +0 0.1311 +0 0.0658 +0 0.1710 +0 0.0602 +0 0.0700 +0 0.0940 +0 0.1475 +0 0.1453 +0 0.1043 +0 0.0690 +0 0.7369 +1 0.8252 +1 0.8143 +0 0.0816 +0 0.3368 +0 0.0662 +0 0.0667 +0 0.1107 +0 0.0662 +0 0.0848 +0 0.1328 +0 0.1242 +0 0.1013 +0 0.2633 +0 0.0714 +0 0.0779 +0 0.2527 +0 0.0760 +0 0.3631 +0 0.2161 +0 0.0713 +0 0.6588 +0 0.0491 +0 0.1031 +0 0.0703 +0 0.1403 +1 0.8776 +0 0.0490 +0 0.2037 +0 0.0654 +0 0.0671 +0 0.1469 +0 0.0839 +0 0.1253 +0 0.0860 +0 0.1616 +0 0.1044 +0 0.3028 +0 0.1224 +0 0.4112 +0 0.0561 +0 0.1418 +0 0.0877 +0 0.0343 +0 0.0565 +0 0.1128 +0 0.0919 +0 0.1879 +0 0.0743 +0 0.1269 +0 0.0776 +0 0.0730 +0 0.0795 +0 0.0365 +0 0.0688 +0 0.2036 +0 0.1069 +0 0.0545 +0 0.0978 +0 0.0587 +0 0.1282 +0 0.0887 +0 0.1013 +0 0.1354 +0 0.0668 +0 0.3625 +0 0.1829 +0 0.7136 +0 0.0898 +0 0.1119 +0 0.0635 +0 0.2077 +0 0.1575 +0 0.0647 +0 0.2154 +0 0.1972 +0 0.0428 +0 0.0945 +0 0.0922 +0 0.0936 +0 0.0617 +0 0.1796 +0 0.1673 +0 0.0763 +0 0.1227 +0 0.0553 +0 0.1214 +0 0.1917 +0 0.0836 +0 0.0993 +0 0.1105 +0 0.0853 +0 0.0851 +0 0.0819 +0 0.0493 +0 0.0811 +0 0.1302 +0 0.1224 +0 0.1595 +0 0.0439 +0 0.2374 +0 0.0824 +0 0.2244 +0 0.0696 +0 0.0567 +0 0.0624 +0 0.1109 +0 0.0739 +0 0.1621 +0 0.0789 +0 0.2046 +0 0.0687 +0 0.1378 +0 0.1991 +0 0.0722 +0 0.0877 +0 0.0556 +0 0.2043 +0 0.0972 +0 0.1469 +0 0.0713 +0 0.3199 +0 0.1038 +0 0.1588 +0 0.2788 +0 0.0458 +0 0.0450 +0 0.0981 +0 0.1023 +0 0.1083 +0 0.0811 +0 0.0454 +0 0.0640 +0 0.0788 +0 0.1050 +0 0.1208 +0 0.0720 +0 0.0547 +0 0.0595 +0 0.5049 +0 0.1769 +0 0.3543 +0 0.2186 +0 0.0651 +0 0.1473 +0 0.0869 +0 0.0965 +0 0.1914 +0 0.1332 +0 0.0376 +0 0.0580 +0 0.1797 +0 0.0716 +0 0.0809 +0 0.0736 +0 0.1543 +0 0.0576 +0 0.1847 +0 0.2041 +0 0.0796 +0 0.0646 +0 0.1567 +0 0.0727 +0 0.0692 +0 0.1332 +0 0.1635 +0 0.1047 +0 0.0413 +0 0.2001 +0 0.0550 +0 0.1477 +0 0.1374 +0 0.1014 +0 0.0432 +0 0.0828 +0 0.0739 +0 0.0727 +0 0.3239 +0 0.0503 +0 0.1393 +0 0.0659 +0 0.2271 +0 0.1240 +0 0.1182 +0 0.0532 +0 0.0681 +0 0.1762 +0 0.0878 +0 0.0865 +0 0.0587 +0 0.0950 +0 0.1293 +0 0.0928 +0 0.1039 +0 0.1583 +0 0.1276 +0 0.2425 +0 0.2879 +0 0.0974 +0 0.0856 +0 0.1196 +0 0.1783 +0 0.0436 +0 0.1319 +0 0.0821 +0 0.0620 +0 0.2393 +0 0.0611 +0 0.3658 +0 0.1159 +0 0.2478 +0 0.0431 +0 0.0944 +0 0.1389 +0 0.6303 +0 0.0946 +0 0.1985 +0 0.1100 +0 0.2736 +0 0.0771 +0 0.0891 +0 0.0935 +0 0.0406 +0 0.1193 +0 0.0656 +0 0.1581 +0 0.1398 +0 0.3805 +0 0.1186 +0 0.1472 +0 0.1767 +0 0.0965 +0 0.0817 +0 0.0312 +0 0.1205 +0 0.0516 +0 0.2228 +0 0.1008 +0 0.0711 +0 0.0612 +0 0.1942 +0 0.1530 +0 0.0610 +0 0.0594 +0 0.0519 +0 0.0903 +0 0.0722 +0 0.1559 +0 0.6743 +0 0.0416 +0 0.2189 +0 0.0706 +0 0.0902 +0 0.0340 +0 0.0979 +0 0.1673 +0 0.1147 +0 0.1202 +0 0.0569 +0 0.7023 +0 0.1571 +0 0.1182 +0 0.1828 +0 0.1057 +0 0.2300 +0 0.0549 +0 0.2470 +0 0.2433 +0 0.1555 +0 0.0929 +0 0.0888 +0 0.1448 +0 0.0623 +0 0.0687 +0 0.0553 +0 0.0903 +0 0.2563 +0 0.1454 +0 0.0757 +0 0.0543 +0 0.1701 +0 0.3578 +0 0.0642 +0 0.0757 +0 0.1999 +0 0.0885 +0 0.0762 +0 0.0346 +0 0.0987 +0 0.1307 +0 0.3458 +0 0.1036 +0 0.1235 +1 0.8679 +0 0.1917 +0 0.2475 +0 0.1389 +0 0.1908 +0 0.0796 +0 0.1443 +0 0.4132 +0 0.0779 +0 0.1710 +0 0.2129 +0 0.0614 +0 0.0337 +0 0.2080 +0 0.1097 +0 0.0436 +0 0.0633 +0 0.0867 +0 0.0974 +0 0.1103 +0 0.0642 +0 0.1499 +0 0.2252 +0 0.6477 +0 0.1533 +0 0.3277 +0 0.0625 +0 0.0521 +0 0.4900 +0 0.2238 +0 0.0878 +0 0.0746 +0 0.0624 +0 0.1693 +0 0.0888 +0 0.0455 +0 0.0575 +0 0.1656 +0 0.2399 +0 0.6728 +0 0.6627 +0 0.0803 +0 0.1065 +0 0.1697 +0 0.0616 +0 0.7369 +0 0.0822 +0 0.7069 +0 0.0693 +0 0.1719 +0 0.0603 +0 0.0754 +0 0.2712 +0 0.0836 +0 0.2442 +0 0.1191 +0 0.1299 +0 0.2114 +0 0.0434 +0 0.0902 +0 0.1834 +1 0.8287 +0 0.0883 +0 0.0537 +0 0.1330 +0 0.1184 +0 0.1638 +0 0.1491 +0 0.1261 +0 0.1112 +0 0.2304 +0 0.1380 +0 0.0572 +0 0.1048 +0 0.1484 +0 0.0979 +0 0.3054 +0 0.1194 +0 0.0497 +1 0.8402 +0 0.0642 +0 0.0535 +0 0.0711 +0 0.1338 +0 0.1811 +0 0.1141 +0 0.0533 +0 0.0706 +0 0.2867 +0 0.3097 +0 0.1496 +0 0.0680 +0 0.0827 +0 0.0614 +0 0.1536 +0 0.6230 +0 0.2324 +0 0.3083 +0 0.1951 +0 0.1683 +0 0.1242 +0 0.5037 +0 0.0814 +0 0.0371 +0 0.1427 +0 0.1271 +0 0.2120 +0 0.1597 +0 0.1519 +0 0.0786 +0 0.0464 +0 0.0956 +0 0.2411 +0 0.1499 +0 0.0833 +0 0.1416 +0 0.0391 +0 0.0500 +0 0.0487 +0 0.0589 +0 0.2295 +0 0.1906 +0 0.2409 +0 0.1033 +0 0.1521 +0 0.3247 +0 0.0760 +0 0.1002 +0 0.1603 +0 0.1026 +0 0.4829 +0 0.0699 +0 0.1446 +0 0.0921 +0 0.0960 +0 0.1089 +0 0.2132 +0 0.0908 +0 0.3227 +0 0.0926 +0 0.2423 +0 0.1496 +0 0.1788 +0 0.1270 +0 0.0638 +0 0.2632 +0 0.0686 +0 0.5298 +0 0.1066 +0 0.0798 +0 0.1704 +0 0.0713 +0 0.2536 +0 0.1588 +0 0.0514 +0 0.0913 +0 0.0657 +0 0.1609 +0 0.0592 +0 0.0774 +0 0.1436 +0 0.1887 +0 0.2424 +0 0.0624 +0 0.0653 +0 0.3872 +0 0.0807 +0 0.0933 +0 0.1195 +0 0.1647 +0 0.0794 +0 0.1478 +0 0.0758 +0 0.1818 +0 0.1590 +0 0.0595 +0 0.0987 +0 0.0623 +0 0.0887 +0 0.3978 +0 0.1171 +0 0.2106 +0 0.1321 +0 0.0757 +0 0.0486 +0 0.0369 +0 0.1734 +0 0.1404 +0 0.0913 +0 0.0618 +0 0.0806 +0 0.0618 +0 0.1076 +0 0.0828 +0 0.1325 +0 0.0481 +0 0.1084 +0 0.0789 +0 0.1468 +0 0.1255 +0 0.0809 +0 0.1638 +0 0.0607 +1 0.8509 +0 0.0826 +0 0.1112 +0 0.1437 +0 0.1342 +0 0.0801 +0 0.2121 +0 0.1914 +0 0.6169 +0 0.1128 +0 0.1325 +0 0.0376 +0 0.1592 +0 0.1014 +0 0.0636 +0 0.0589 +0 0.0454 +0 0.1238 +0 0.0672 +0 0.1762 +0 0.2065 +0 0.0559 +0 0.0622 +0 0.1443 +0 0.0822 +0 0.2053 +0 0.1237 +0 0.2370 +0 0.2370 +0 0.0839 +0 0.0841 +0 0.0836 +0 0.1713 +0 0.1167 +0 0.0874 +0 0.1343 +0 0.1592 +0 0.5209 +0 0.0432 +0 0.1458 +0 0.2184 +0 0.5334 +0 0.0450 +0 0.1129 +0 0.0652 +0 0.1373 +0 0.2332 +0 0.3440 +0 0.0708 +1 0.7546 +0 0.0868 +0 0.1499 +0 0.4788 +0 0.0977 +0 0.0460 +0 0.0584 +0 0.1541 +0 0.0563 +0 0.0712 +0 0.0986 +0 0.0946 +0 0.1536 +0 0.5609 +0 0.1202 +0 0.0779 +0 0.1036 +0 0.2195 +0 0.0528 +0 0.0738 +0 0.1733 +0 0.2308 +0 0.0415 +0 0.0567 +0 0.0993 +0 0.0576 +0 0.0634 +0 0.0796 +0 0.2068 +0 0.0706 +0 0.0605 +0 0.0578 +0 0.1375 +0 0.0719 +0 0.0839 +0 0.0814 +0 0.1344 +0 0.1331 +0 0.1588 +0 0.3407 +0 0.1955 +0 0.0730 +0 0.2000 +0 0.0616 +0 0.0860 +0 0.0861 +0 0.1514 +0 0.1646 +0 0.1073 +0 0.0691 +0 0.0665 +0 0.0883 +0 0.0706 +0 0.0490 +1 0.8706 +0 0.0352 +0 0.0646 +0 0.1413 +0 0.1756 +0 0.0999 +0 0.0901 +0 0.0754 +0 0.2382 +0 0.0583 +0 0.0828 +0 0.1051 +0 0.0735 +0 0.0803 +0 0.0788 +0 0.2286 +0 0.2454 +0 0.1162 +0 0.0470 +0 0.0573 +0 0.0936 +0 0.0781 +0 0.0811 +0 0.1065 +0 0.1920 +0 0.1890 +0 0.1555 +0 0.0821 +0 0.0860 +0 0.0867 +0 0.2444 +0 0.0364 +0 0.1086 +1 0.8288 +0 0.1425 +0 0.3820 +0 0.0556 +0 0.1371 +0 0.1936 +0 0.1093 +0 0.2507 +0 0.0553 +1 0.8958 +0 0.0485 +0 0.1650 +0 0.0482 +0 0.0855 +0 0.1221 +0 0.0725 +0 0.0433 +0 0.1340 +0 0.0504 +0 0.0614 +0 0.0530 +0 0.1007 +0 0.0906 +0 0.3493 +0 0.1153 +0 0.0976 +0 0.1607 +0 0.1520 +0 0.0562 +0 0.0840 +0 0.1163 +0 0.0810 +0 0.1049 +0 0.0901 +0 0.0337 +0 0.1019 +0 0.0982 +0 0.1350 +0 0.0750 +1 0.8000 +0 0.0629 +0 0.0348 +0 0.1773 +0 0.1008 +0 0.1179 +0 0.0784 +0 0.0769 +0 0.1030 +0 0.0607 +0 0.0949 +0 0.1223 +0 0.2463 +0 0.0368 +0 0.2893 +0 0.0684 +0 0.2052 +0 0.0790 +0 0.1553 +0 0.0682 +0 0.0797 +0 0.0445 +0 0.1210 +0 0.0530 +0 0.1930 +0 0.1869 +0 0.0753 +0 0.0942 +0 0.0880 +0 0.3103 +1 0.7461 +0 0.1243 +0 0.0678 +0 0.1949 +0 0.0775 +0 0.2826 +0 0.1765 +0 0.1595 +0 0.3071 +0 0.1992 +0 0.2371 +0 0.0437 +0 0.0956 +0 0.1389 +0 0.3819 +0 0.1555 +0 0.0526 +0 0.2639 +0 0.1666 +0 0.1491 +0 0.5418 +0 0.1553 +0 0.1822 +0 0.1087 +0 0.0805 +0 0.5239 +0 0.2261 +0 0.0741 +0 0.0582 +0 0.2354 +0 0.1917 +0 0.5969 +0 0.0772 +0 0.2621 +0 0.1041 +0 0.2155 +0 0.0816 +0 0.1044 +0 0.2198 +0 0.1015 +0 0.0341 +0 0.1371 +0 0.1165 +0 0.1220 +0 0.3663 +0 0.0958 +0 0.0411 +0 0.0437 +0 0.1633 +0 0.0802 +0 0.0543 +0 0.0873 +0 0.1753 +0 0.0939 +0 0.1100 +0 0.1403 +0 0.0899 +0 0.0650 +0 0.1412 +0 0.0402 +0 0.2243 +1 0.7939 +0 0.1065 +0 0.1720 +0 0.0805 +0 0.0875 +0 0.0339 +0 0.0874 +0 0.0913 +0 0.0926 +0 0.1125 +0 0.0400 +0 0.0550 +0 0.1472 +0 0.3523 +0 0.0754 +0 0.0560 +0 0.4660 +0 0.0847 +0 0.1468 +0 0.1214 +0 0.1581 +0 0.0701 +0 0.1447 +0 0.1091 +0 0.1504 +0 0.0721 +0 0.0754 +0 0.0734 +0 0.1017 +0 0.2077 +0 0.1117 +0 0.0752 +0 0.1933 +0 0.0687 +0 0.1216 +0 0.0677 +0 0.1334 +0 0.0791 +0 0.1381 +0 0.0677 +0 0.1748 +0 0.0619 +0 0.1237 +0 0.1174 +0 0.0772 +0 0.1373 +0 0.0516 +0 0.0724 +0 0.1967 +0 0.1511 +0 0.0714 +0 0.2239 +0 0.1656 +0 0.3149 +0 0.1756 +0 0.0803 +0 0.1093 +0 0.0793 +0 0.0935 +0 0.0544 +0 0.0755 +0 0.0670 +0 0.0838 +0 0.2156 +0 0.3492 +0 0.1758 +0 0.0459 +0 0.1161 +0 0.7422 +0 0.1480 +0 0.1367 +0 0.1357 +0 0.2954 +0 0.0758 +0 0.1192 +0 0.0392 +0 0.0827 +0 0.0537 +0 0.0355 +0 0.1880 +0 0.1033 +0 0.1400 +0 0.1254 +0 0.1230 +0 0.1991 +0 0.1242 +0 0.0544 +0 0.1476 +0 0.1142 +0 0.0476 +0 0.0351 +0 0.2037 +0 0.1101 +0 0.0669 +0 0.1131 +0 0.0851 +0 0.0885 +0 0.6658 +0 0.1109 +0 0.3054 +0 0.0574 +0 0.2039 +0 0.1174 +0 0.0555 +0 0.0993 +0 0.1726 +0 0.0828 +0 0.0959 +0 0.1886 +0 0.1014 +0 0.1342 +0 0.1203 +0 0.0491 +0 0.1687 +0 0.0920 +0 0.0803 +0 0.1314 +0 0.1019 +0 0.1064 +0 0.0560 +0 0.1941 +0 0.2412 +0 0.0984 +0 0.0661 +0 0.0898 +0 0.0820 +0 0.1184 +0 0.2345 +0 0.0715 +0 0.1566 +0 0.0441 +0 0.1366 +0 0.0668 +0 0.0891 +0 0.0996 +0 0.2043 +0 0.0931 +0 0.0882 +0 0.1796 +0 0.0460 +0 0.1447 +0 0.1245 +0 0.1294 +0 0.1522 +0 0.1441 +0 0.3531 +0 0.0940 +0 0.0958 +0 0.0740 +0 0.0673 +0 0.0848 +0 0.0860 +0 0.3632 +0 0.0735 +0 0.3829 +0 0.1995 +0 0.1088 +0 0.2254 +0 0.0559 +0 0.2326 +0 0.1364 +0 0.1723 +0 0.0859 +0 0.1743 +0 0.1682 +0 0.0707 +0 0.1071 +0 0.0964 +0 0.0589 +0 0.2589 +0 0.0717 +0 0.1201 +0 0.1183 +1 0.8771 +0 0.0533 +0 0.1448 +0 0.0572 +0 0.0642 +0 0.1062 +0 0.3596 +0 0.0599 +0 0.2399 +0 0.3888 +0 0.0883 +0 0.2821 +0 0.7075 +0 0.0371 +0 0.1611 +0 0.1222 +0 0.0337 +0 0.1347 +0 0.0480 +0 0.0607 +0 0.0375 +0 0.0490 +0 0.0491 +0 0.1948 +0 0.0725 +0 0.0368 +0 0.4796 +0 0.0622 +0 0.0505 +0 0.0588 +0 0.1498 +0 0.0447 +0 0.0790 +0 0.2115 +0 0.1823 +0 0.3308 +0 0.0540 +0 0.0891 +0 0.1068 +0 0.1331 +0 0.2171 +0 0.1664 +0 0.0921 +0 0.0628 +0 0.1076 +0 0.1666 +0 0.0641 +0 0.0949 +0 0.0390 +0 0.0557 +0 0.0897 +0 0.0599 +0 0.0410 +0 0.1116 +0 0.0775 +0 0.1659 +0 0.6441 +0 0.0720 +0 0.3125 +0 0.1131 +0 0.0558 +1 0.8840 +0 0.7452 +0 0.0691 +0 0.0739 +0 0.2600 +0 0.0768 +0 0.0381 +0 0.0429 +0 0.1584 +0 0.1065 +0 0.6426 +0 0.0348 +1 0.7776 +0 0.0829 +0 0.1090 +0 0.0949 +0 0.0760 +0 0.0441 +0 0.0980 +0 0.0982 +0 0.1780 +0 0.2568 +0 0.1087 +1 0.7723 +0 0.1031 +0 0.1539 +0 0.0788 +0 0.0904 +0 0.0915 +0 0.1790 +0 0.0735 +0 0.0981 +0 0.1016 +0 0.0695 +0 0.0772 +0 0.4192 +0 0.3427 +0 0.0686 +0 0.0963 +0 0.1160 +0 0.1178 +0 0.0637 +0 0.1156 +0 0.0708 +0 0.1540 +0 0.0443 +0 0.0435 +0 0.1602 +0 0.0949 +0 0.3862 +0 0.2356 +0 0.1418 +0 0.1024 +0 0.1976 +0 0.0898 +0 0.0869 +0 0.1650 +1 0.8461 +0 0.1049 +0 0.1745 +0 0.3112 +0 0.0977 +0 0.0700 +0 0.0866 +0 0.1619 +0 0.2031 +0 0.1698 +0 0.1067 +0 0.0840 +0 0.1637 +0 0.1422 +0 0.0594 +0 0.1142 +0 0.0692 +0 0.0484 +0 0.1726 +0 0.0864 +0 0.0888 +0 0.1517 +0 0.0703 +0 0.0415 +0 0.0815 +0 0.0784 +0 0.0765 +0 0.1017 +0 0.1811 +0 0.1330 +0 0.1369 +0 0.0872 +0 0.0648 +0 0.5314 +0 0.1438 +0 0.2979 +0 0.1717 +0 0.1179 +0 0.0802 +0 0.0857 +0 0.2030 +0 0.1102 +0 0.1777 +0 0.0588 +0 0.1286 +0 0.1691 +0 0.2085 +0 0.0946 +0 0.1380 +0 0.0932 +0 0.0939 +0 0.0640 +0 0.0801 +0 0.0726 +0 0.0985 +0 0.2222 +0 0.0880 +0 0.0693 +0 0.1676 +0 0.1581 +0 0.0791 +0 0.0509 +0 0.4552 +0 0.2655 +0 0.2124 +0 0.1397 +0 0.3073 +0 0.0924 +0 0.1151 +0 0.0914 +0 0.0490 +0 0.3486 +0 0.1187 +0 0.1463 +1 0.8831 +0 0.0513 +0 0.0923 +0 0.1548 +0 0.0627 +0 0.1407 +0 0.0368 +0 0.0776 +0 0.2531 +0 0.0585 +0 0.1020 +0 0.1786 +0 0.1418 +0 0.1849 +0 0.1021 +0 0.1400 +0 0.0315 +0 0.1519 +0 0.1184 +0 0.2346 +0 0.0734 +0 0.2743 +0 0.1293 +0 0.0677 +0 0.0944 +0 0.0488 +0 0.1097 +0 0.3259 +0 0.1650 +0 0.4209 +0 0.0516 +0 0.3769 +0 0.0616 +0 0.0566 +0 0.1352 +0 0.1099 +0 0.1753 +0 0.3564 +0 0.0816 +0 0.0861 +0 0.1280 +0 0.0929 +0 0.2713 +0 0.0469 +0 0.0576 +0 0.1781 +0 0.0886 +0 0.1382 +0 0.1536 +0 0.3812 +0 0.0868 +0 0.1726 +0 0.0419 +0 0.0745 +0 0.1172 +0 0.0980 +0 0.0493 +0 0.1616 +0 0.0616 +0 0.0431 +0 0.0692 +0 0.1803 +0 0.1387 +0 0.3357 +0 0.0845 +0 0.1057 +0 0.0592 +0 0.1262 +0 0.1495 +0 0.3912 +0 0.0426 +0 0.0446 +0 0.0706 +0 0.0720 +0 0.1548 +0 0.1077 +0 0.2783 +0 0.0811 +0 0.0705 +0 0.1441 +0 0.1229 +0 0.0571 +0 0.0824 +0 0.0753 +0 0.0764 +0 0.1499 +0 0.1507 +0 0.1719 +0 0.3781 +0 0.4760 +0 0.0816 +0 0.1682 +0 0.1278 +0 0.2027 +0 0.1569 +0 0.0615 +0 0.1339 +0 0.0509 +0 0.1320 +1 0.8494 +0 0.1132 +0 0.1301 +0 0.1611 +0 0.2726 +0 0.1068 +0 0.0673 +0 0.1474 +0 0.1126 +0 0.1582 +0 0.0953 +0 0.1914 +0 0.0860 +0 0.0998 +0 0.0914 +0 0.0510 +0 0.0807 +0 0.0544 +0 0.0913 +0 0.1533 +0 0.0623 +0 0.0577 +0 0.0888 +0 0.0801 +0 0.6520 +0 0.0969 +0 0.7255 +0 0.0837 +0 0.1524 +0 0.0853 +0 0.1953 +0 0.0921 +0 0.6755 +0 0.0803 +0 0.1181 +0 0.2236 +0 0.2341 +0 0.0974 +0 0.0775 +0 0.1232 +0 0.1010 +0 0.0639 +0 0.0967 +0 0.1450 +0 0.1437 +0 0.4953 +0 0.1264 +0 0.0502 +0 0.2027 +0 0.1288 +0 0.0880 +0 0.5000 +0 0.0662 +0 0.1309 +0 0.0958 +0 0.2321 +0 0.0630 +0 0.1170 +0 0.0522 +0 0.1157 +0 0.0589 +0 0.0566 +0 0.1410 +0 0.1309 +0 0.0609 +0 0.1636 +0 0.0870 +0 0.3234 +0 0.1832 +0 0.0615 +0 0.0986 +0 0.1483 +0 0.0850 +0 0.1088 +0 0.1360 +0 0.0510 +0 0.0699 +0 0.0539 +0 0.4615 +0 0.2120 +0 0.2757 +0 0.0393 +0 0.1197 +0 0.1904 +0 0.1053 +0 0.1106 +0 0.2060 +0 0.0625 +0 0.0914 +0 0.3141 +0 0.2499 +0 0.1294 +0 0.7023 +0 0.0732 +0 0.2524 +0 0.0607 +0 0.1188 +1 0.8257 +0 0.0825 +0 0.0991 +0 0.0889 +0 0.0914 +0 0.1361 +0 0.0733 +0 0.0896 +0 0.0752 +0 0.0938 +0 0.0856 +0 0.1581 +0 0.0801 +0 0.3678 +0 0.1412 +0 0.0534 +0 0.0861 +0 0.1003 +0 0.2585 +0 0.0924 +0 0.1046 +0 0.0645 +0 0.1795 +0 0.2548 +0 0.0383 +0 0.1340 +0 0.0557 +0 0.2063 +0 0.0584 +0 0.6313 +0 0.0686 +0 0.1749 +0 0.0864 +0 0.0542 +0 0.0723 +0 0.0729 +0 0.2636 +0 0.1668 +0 0.0735 +0 0.0988 +0 0.2226 +0 0.1465 +0 0.1456 +0 0.1597 +0 0.2977 +0 0.5083 +0 0.0975 +0 0.0711 +0 0.0359 +0 0.0981 +0 0.0931 +0 0.0531 +0 0.0494 +1 0.7552 +0 0.2499 +0 0.0573 +0 0.0785 +0 0.1858 +0 0.1931 +0 0.1281 +0 0.1760 +0 0.1091 +0 0.0841 +0 0.1269 +0 0.0785 +0 0.0788 +0 0.1499 +0 0.2618 +0 0.1522 +0 0.1212 +0 0.0721 +0 0.0546 +0 0.1130 +0 0.1758 +0 0.2656 +0 0.5649 +0 0.2109 +0 0.0732 +0 0.2141 +0 0.0796 +0 0.0483 +0 0.0737 +0 0.2041 +0 0.0624 +0 0.1004 +0 0.2679 +0 0.1208 +0 0.0868 +1 0.7522 +0 0.0650 +0 0.6321 +0 0.0747 +0 0.0462 +0 0.0758 +0 0.0657 +0 0.0616 +0 0.1786 +0 0.0593 +0 0.1322 +0 0.0740 +0 0.1197 +0 0.0870 +0 0.0441 +0 0.1284 +0 0.2225 +0 0.2850 +0 0.2711 +0 0.1546 +0 0.0816 +0 0.1520 +0 0.0370 +0 0.1114 +0 0.1064 +0 0.0589 +0 0.0484 +0 0.2546 +0 0.2237 +0 0.1680 +0 0.1092 +0 0.0490 +0 0.1986 +0 0.0705 +0 0.1069 +0 0.0889 +0 0.0822 +0 0.1078 +0 0.0652 +0 0.2188 +0 0.0726 +0 0.0762 +0 0.1402 +0 0.1847 +0 0.1099 +0 0.0754 +0 0.0527 +0 0.2266 +0 0.0613 +0 0.0692 +0 0.0868 +0 0.0800 +0 0.0817 +0 0.0394 +0 0.3861 +0 0.0707 +0 0.1019 +0 0.1337 +0 0.0903 +0 0.0683 +0 0.0441 +0 0.0674 +0 0.2466 +0 0.1107 +0 0.0864 +0 0.1723 +0 0.0601 +0 0.1042 +0 0.1372 +0 0.1504 +0 0.0901 +0 0.1454 +0 0.1279 +0 0.1121 +0 0.0811 +0 0.1575 +1 0.8492 +0 0.0555 +0 0.0362 +0 0.0515 +0 0.1118 +1 0.7653 +0 0.2960 +0 0.0703 +0 0.1184 +0 0.1809 +0 0.0711 +0 0.5179 +0 0.3642 +0 0.0850 +0 0.0668 +1 0.7529 +0 0.1221 +0 0.7150 +0 0.1352 +0 0.0914 +0 0.1079 +0 0.0876 +0 0.0683 +0 0.1237 +0 0.1704 +0 0.0650 +0 0.0586 +0 0.0405 +0 0.4141 +0 0.0735 +0 0.0679 +0 0.0806 +0 0.0529 +0 0.0639 +0 0.1159 +0 0.0810 +0 0.0763 +0 0.7079 +0 0.0349 +0 0.0868 +0 0.2769 +0 0.0362 +0 0.1663 +0 0.0717 +0 0.0583 +0 0.4886 +0 0.0656 +0 0.0699 +0 0.0976 +0 0.0628 +0 0.5160 +0 0.0818 +0 0.1022 +0 0.1137 +0 0.0722 +0 0.1190 +0 0.0479 +0 0.0991 +0 0.0468 +0 0.2578 +0 0.1217 +0 0.1386 +0 0.0615 +0 0.1451 +0 0.0691 +0 0.1360 +0 0.0427 +0 0.1091 +0 0.0620 +0 0.1294 +0 0.1875 +0 0.2015 +0 0.3353 +0 0.0386 +0 0.0903 +0 0.1391 +0 0.1181 +0 0.0946 +0 0.0966 +0 0.0443 +0 0.1234 +0 0.0668 +0 0.1009 +0 0.1057 +0 0.1125 +0 0.1198 +0 0.4718 +0 0.0487 +0 0.3772 +0 0.2375 +0 0.1051 +0 0.3323 +0 0.0287 +0 0.0942 +0 0.0443 +0 0.1744 +0 0.1504 +0 0.2900 +0 0.0555 +0 0.2750 +0 0.3274 +0 0.0593 +0 0.0614 +0 0.1214 +0 0.1003 +0 0.0808 +0 0.0720 +0 0.0713 +0 0.0787 +0 0.2730 +0 0.2147 +0 0.0483 +0 0.0586 +0 0.0956 +0 0.0993 +0 0.2120 +0 0.0722 +0 0.1064 +0 0.1210 +0 0.0388 +0 0.1084 +0 0.0971 +0 0.1796 +0 0.2683 +0 0.0887 +0 0.1090 +0 0.0718 +0 0.1496 +0 0.1724 +0 0.0812 +0 0.0448 +0 0.0855 +0 0.0767 +0 0.0742 +0 0.0537 +0 0.1658 +0 0.2442 +0 0.1003 +0 0.1100 +0 0.0968 +0 0.0546 +0 0.1341 +0 0.0872 +0 0.2783 +0 0.0937 +0 0.3256 +0 0.1034 +0 0.1742 +0 0.0467 +0 0.1063 +0 0.0788 +0 0.6016 +0 0.0691 +0 0.0585 +0 0.2815 +0 0.1670 +0 0.0611 +0 0.1314 +0 0.4047 +0 0.0901 +0 0.1319 +0 0.2572 +0 0.0844 +0 0.0523 +0 0.0825 +0 0.0448 +0 0.1751 +0 0.0445 +0 0.0835 +0 0.0681 +0 0.0533 +0 0.0537 +0 0.1174 +0 0.0721 +0 0.3400 +0 0.1307 +0 0.1638 +0 0.0517 +0 0.0779 +0 0.1582 +0 0.0847 +0 0.1094 +0 0.0951 +0 0.0741 +0 0.2139 +0 0.2979 +0 0.0772 +0 0.0970 +0 0.1230 +0 0.1695 +0 0.1077 +0 0.0557 +0 0.1069 +0 0.0408 +0 0.0925 +0 0.0711 +0 0.0995 +0 0.0425 +0 0.0730 +0 0.0534 +0 0.1643 +0 0.0652 +0 0.0868 +0 0.1321 +0 0.2104 +0 0.6623 +0 0.0604 +0 0.0918 +0 0.1808 +0 0.2152 +0 0.0603 +0 0.1463 +0 0.2785 +0 0.1139 +0 0.1175 +0 0.0645 +0 0.1149 +0 0.0479 +0 0.1543 +0 0.1426 +0 0.1224 +0 0.0676 +0 0.0579 +0 0.0595 +0 0.0992 +0 0.0622 +0 0.2150 +1 0.8140 +0 0.0418 +0 0.0838 +0 0.1529 +0 0.0513 +0 0.0813 +0 0.1280 +0 0.0520 +0 0.0461 +0 0.1919 +0 0.2246 +0 0.0665 +0 0.0641 +0 0.0681 +0 0.1276 +0 0.0686 +0 0.0741 +0 0.0651 +0 0.1838 +0 0.0781 +0 0.0908 +0 0.2414 +0 0.1103 +0 0.1483 +0 0.1511 +0 0.0871 +0 0.1301 +0 0.0741 +0 0.1339 +0 0.0656 +0 0.0936 +0 0.1000 +0 0.0483 +0 0.0591 +0 0.1087 +0 0.0499 +0 0.1218 +0 0.0870 +0 0.1437 +0 0.1855 +0 0.1863 +0 0.2164 +0 0.0579 +0 0.0746 +0 0.1130 +0 0.1268 +1 0.8386 +0 0.0603 +0 0.6930 +0 0.1511 +0 0.1046 +0 0.1189 +1 0.7538 +0 0.2508 +0 0.1340 +0 0.0661 +0 0.0690 +0 0.5884 +0 0.0539 +0 0.0488 +0 0.1078 +0 0.0893 +0 0.0783 +0 0.3871 +0 0.0751 +0 0.0867 +0 0.0797 +0 0.0569 +0 0.0817 +0 0.2011 +0 0.0816 +0 0.6878 +0 0.3161 +0 0.5277 +0 0.0548 +0 0.0793 +0 0.0846 +0 0.0995 +0 0.0666 +0 0.0488 +0 0.2182 +0 0.0973 +0 0.1315 +0 0.0808 +0 0.0451 +0 0.1085 +0 0.2473 +0 0.1038 +0 0.0532 +1 0.7866 +0 0.0695 +0 0.1136 +0 0.0632 +0 0.1092 +0 0.1189 +0 0.0970 +0 0.6542 +0 0.1034 +0 0.0398 +0 0.0914 +0 0.0909 +0 0.0484 +0 0.0931 +0 0.2892 +0 0.3296 +0 0.0398 +0 0.1151 +0 0.1221 +0 0.1865 +0 0.0761 +0 0.0999 +0 0.0551 +0 0.0769 +0 0.2196 +0 0.1533 +0 0.1060 +0 0.2644 +0 0.0640 +0 0.0534 +0 0.1058 +0 0.2187 +0 0.1414 +0 0.0784 +0 0.1066 +0 0.0361 +0 0.0767 +0 0.0880 +0 0.0795 +0 0.0584 +0 0.0966 +0 0.3362 +0 0.1513 +0 0.0461 +1 0.8573 +0 0.1581 +0 0.1495 +0 0.2987 +0 0.0599 +0 0.1400 +0 0.0657 +0 0.1130 +0 0.0620 +0 0.1517 +0 0.0743 +0 0.0411 +0 0.0690 +0 0.2096 +0 0.2075 +0 0.1688 +0 0.0817 +0 0.2258 +0 0.2506 +0 0.0721 +0 0.0567 +0 0.1696 +0 0.1657 +0 0.1024 +0 0.3352 +0 0.1855 +0 0.1092 +0 0.2892 +0 0.1150 +0 0.2598 +0 0.1851 +0 0.3047 +0 0.2367 +0 0.0666 +0 0.0634 +0 0.2411 +0 0.0589 +0 0.0572 +0 0.1056 +0 0.3013 +0 0.1674 +0 0.2064 +0 0.0604 +0 0.2232 +0 0.0788 +0 0.0802 +0 0.3796 +0 0.1785 +0 0.1520 +0 0.1475 +0 0.3321 +0 0.1237 +0 0.0638 +0 0.0864 +0 0.0406 +0 0.0884 +0 0.0715 +0 0.0905 +0 0.0670 +0 0.0844 +0 0.0937 +0 0.0722 +0 0.0965 +0 0.1230 +0 0.0737 +0 0.2333 +0 0.0709 +0 0.0641 +0 0.0962 +0 0.0843 +0 0.0629 +0 0.0537 +0 0.2789 +0 0.6079 +0 0.1099 +0 0.0498 +0 0.1889 +0 0.0589 +0 0.0674 +0 0.0408 +0 0.0857 +0 0.0575 +0 0.2043 +0 0.0657 +0 0.1037 +0 0.0815 +0 0.2250 +0 0.2906 +0 0.0423 +0 0.1991 +0 0.0441 +0 0.1245 +0 0.0641 +0 0.1828 +0 0.1443 +0 0.1447 +0 0.1097 +0 0.3076 +0 0.0816 +0 0.1065 +0 0.0596 +0 0.0715 +0 0.1544 +0 0.0523 +0 0.1172 +0 0.0620 +0 0.1050 +0 0.1784 +0 0.0928 +0 0.1104 +0 0.0829 +0 0.2231 +0 0.0654 +0 0.0669 +0 0.0869 +0 0.1058 +0 0.0935 +0 0.1572 +0 0.6242 +0 0.0767 +0 0.0348 +0 0.1975 +0 0.1189 +0 0.0879 +0 0.0988 +0 0.1166 +0 0.0999 +0 0.1269 +0 0.1134 +0 0.0850 +0 0.1916 +0 0.0807 +0 0.2153 +0 0.1477 +0 0.5375 +0 0.0553 +0 0.1749 +0 0.0951 +0 0.0923 +0 0.0681 +0 0.0274 +0 0.1410 +0 0.0805 +0 0.2154 +0 0.1542 +0 0.2193 +0 0.1208 +0 0.0897 +0 0.4093 +0 0.1572 +0 0.0683 +0 0.1323 +0 0.0652 +0 0.0793 +0 0.3414 +0 0.0812 +0 0.0389 +0 0.3207 +0 0.1666 +0 0.0836 +0 0.1170 +0 0.0951 +0 0.1321 +0 0.1586 +0 0.1141 +0 0.0471 +0 0.0585 +0 0.4308 +0 0.0518 +0 0.0422 +0 0.0617 +1 0.8218 +0 0.0699 +0 0.1275 +0 0.1716 +0 0.2858 +0 0.0697 +0 0.1310 +0 0.0719 +0 0.0714 +0 0.1153 +0 0.0868 +0 0.1243 +0 0.0623 +0 0.1897 +0 0.1221 +0 0.0644 +0 0.2048 +0 0.1638 +0 0.3973 +0 0.1761 +0 0.3746 +0 0.0853 +0 0.2013 +0 0.2033 +0 0.0462 +0 0.2034 +0 0.0908 +0 0.1468 +0 0.0922 +0 0.0541 +0 0.1793 +0 0.1331 +0 0.1551 +0 0.0997 +0 0.6503 +0 0.3006 +0 0.2356 +0 0.1132 +0 0.0537 +0 0.2269 +0 0.0910 +0 0.1179 +0 0.0867 +1 0.7762 +0 0.0801 +0 0.1698 +0 0.0646 +0 0.1636 +0 0.1273 +0 0.1701 +0 0.1097 +0 0.1407 +0 0.0567 +0 0.0829 +0 0.1459 +0 0.1616 +0 0.3480 +0 0.2041 +0 0.1170 +0 0.0760 +0 0.1365 +0 0.1211 +0 0.1778 +0 0.1259 +0 0.3372 +0 0.1084 +0 0.0786 +0 0.0795 +0 0.0786 +0 0.1409 +0 0.0736 +0 0.1266 +0 0.0434 +0 0.0848 +0 0.1872 +0 0.0985 +0 0.0863 +0 0.0703 +0 0.2757 +0 0.0782 +0 0.2334 +0 0.0991 +0 0.0625 +0 0.0590 +0 0.2110 +0 0.4942 +0 0.1039 +0 0.0560 +0 0.1611 +0 0.0669 +0 0.0751 +0 0.0939 +0 0.0548 +0 0.1367 +0 0.0962 +0 0.1752 +0 0.1135 +0 0.1158 +0 0.0920 +0 0.2674 +0 0.1937 +0 0.0867 +0 0.0507 +0 0.0433 +0 0.2298 +0 0.0755 +0 0.0372 +0 0.1438 +0 0.0775 +0 0.2005 +0 0.1070 +0 0.1744 +1 0.8670 +0 0.1515 +0 0.2086 +0 0.2158 +0 0.1196 +0 0.1243 +0 0.0584 +0 0.1924 +0 0.0737 +0 0.0517 +0 0.0393 +0 0.1969 +0 0.0475 +0 0.0551 +0 0.1877 +0 0.2077 +0 0.1608 +0 0.0767 +0 0.0845 +0 0.1429 +0 0.0672 +0 0.0624 +0 0.0452 +0 0.0533 +0 0.0651 +0 0.1474 +0 0.1809 +0 0.0838 +0 0.0918 +0 0.0726 +0 0.0617 +0 0.0964 +0 0.0300 +0 0.1884 +0 0.0749 +0 0.2035 +0 0.0794 +0 0.3276 +0 0.0669 +0 0.1677 +0 0.3063 +0 0.0864 +0 0.1022 +0 0.1436 +0 0.1066 +0 0.1069 +0 0.0689 +0 0.1456 +0 0.0526 +0 0.0912 +0 0.1231 +0 0.6633 +0 0.0529 +0 0.0888 +0 0.0631 +0 0.1333 +0 0.2212 +0 0.2780 +0 0.2186 +0 0.0551 +0 0.1085 +0 0.1296 +0 0.1311 +0 0.1698 +0 0.0608 +0 0.0880 +0 0.2858 +0 0.1064 +0 0.1995 +0 0.1912 +0 0.1368 +0 0.0809 +0 0.1035 +0 0.1499 +0 0.1395 +0 0.0677 +0 0.0597 +0 0.0497 +0 0.0609 +0 0.1435 +0 0.0574 +0 0.2563 +0 0.1015 +0 0.1052 +0 0.1779 +0 0.0880 +0 0.1422 +0 0.1238 +0 0.0899 +0 0.2831 +0 0.1216 +0 0.0780 +0 0.1157 +0 0.1509 +0 0.1483 +0 0.0434 +0 0.1469 +0 0.1410 +0 0.0784 +0 0.0583 +0 0.1144 +0 0.1247 +0 0.0825 +0 0.1203 +0 0.2453 +0 0.2523 +0 0.0379 +0 0.1119 +0 0.0464 +0 0.0426 +0 0.0621 +0 0.2712 +0 0.0670 +0 0.0704 +0 0.1803 +0 0.1854 +0 0.1624 +0 0.1744 +0 0.0567 +0 0.1298 +0 0.1202 +0 0.0745 +0 0.1723 +0 0.0876 +0 0.5883 +0 0.0675 +0 0.1817 +0 0.0488 +0 0.1495 +1 0.8450 +0 0.3668 +0 0.3256 +0 0.0980 +0 0.0793 +0 0.4699 +0 0.1215 +0 0.0568 +0 0.0468 +0 0.2215 +0 0.4017 +1 0.8254 +0 0.3019 +0 0.1077 +0 0.0882 +0 0.1151 +0 0.1512 +0 0.1760 +1 0.7718 +0 0.1607 +0 0.1085 +0 0.0626 +0 0.2431 +0 0.1338 +0 0.1072 +0 0.3268 +0 0.0795 +0 0.2222 +0 0.2104 +0 0.1152 +0 0.0482 +0 0.5039 +0 0.1970 +0 0.0679 +0 0.1350 +0 0.1986 +0 0.2088 +0 0.2046 +0 0.0731 +0 0.1081 +0 0.0877 +0 0.2124 +0 0.0542 +0 0.2545 +0 0.4295 +0 0.1205 +0 0.0671 +0 0.0429 +0 0.1336 +0 0.1863 +0 0.0702 +0 0.0663 +0 0.1003 +0 0.1617 +0 0.2000 +0 0.1413 +0 0.1192 +0 0.0507 +0 0.0513 +0 0.1019 +0 0.1704 +0 0.1053 +0 0.1592 +0 0.1469 +0 0.1237 +0 0.0775 +0 0.2462 +0 0.2897 +0 0.7204 +0 0.1884 +0 0.0597 +0 0.2838 +0 0.0643 +0 0.0497 +0 0.1286 +0 0.1205 +0 0.3590 +0 0.0981 +0 0.1590 +0 0.0666 +0 0.0800 +0 0.0990 +0 0.2067 +0 0.0970 +0 0.2749 +0 0.0408 +0 0.2203 +0 0.1192 +0 0.0870 +0 0.0536 +0 0.0893 +0 0.0814 +0 0.5294 +0 0.1476 +0 0.0959 +0 0.1006 +0 0.1429 +0 0.0418 +0 0.1021 +0 0.0724 +0 0.0632 +0 0.1211 +0 0.0763 +0 0.0563 +0 0.1478 +0 0.0851 +0 0.0889 +0 0.2234 +0 0.2912 +0 0.0649 +0 0.0517 +0 0.5239 +0 0.1111 +0 0.0845 +0 0.1018 +0 0.2196 +0 0.2751 +0 0.0830 +0 0.0951 +0 0.1685 +0 0.1068 +0 0.3278 +0 0.1875 +0 0.0755 +0 0.1214 +0 0.1027 +0 0.1105 +0 0.0815 +0 0.0602 +0 0.0599 +0 0.2156 +0 0.1451 +0 0.1105 +0 0.1147 +0 0.0779 +0 0.0791 +0 0.0702 +0 0.1118 +0 0.0719 +0 0.1739 +0 0.1156 +0 0.3012 +0 0.0909 +0 0.0992 +0 0.1354 +0 0.1254 +0 0.1183 +0 0.1944 +0 0.1281 +1 0.8039 +0 0.1980 +0 0.1195 +0 0.1127 +0 0.1184 +0 0.4947 +0 0.0781 +0 0.0614 +0 0.0837 +0 0.0960 +0 0.0895 +0 0.6252 +0 0.0597 +0 0.0801 +0 0.1492 +0 0.2541 +0 0.0604 +0 0.3445 +0 0.1999 +0 0.0435 +1 0.8753 +0 0.0908 +0 0.0577 +0 0.0632 +0 0.2243 +0 0.0645 +0 0.3480 +0 0.1164 +0 0.1468 +0 0.1127 +0 0.6971 +0 0.2630 +0 0.1352 +0 0.0693 +0 0.0845 +0 0.0813 +0 0.1178 +0 0.1553 +0 0.1609 +0 0.1155 +0 0.7336 +0 0.1264 +0 0.0599 +0 0.3271 +0 0.1811 +0 0.0874 +0 0.0598 +0 0.1037 +0 0.1180 +0 0.0643 +0 0.1888 +0 0.1248 +0 0.1539 +0 0.1066 +0 0.0809 +0 0.0644 +0 0.0702 +0 0.1002 +0 0.0997 +0 0.0823 +0 0.1162 +0 0.1697 +0 0.0581 +0 0.0622 +0 0.2455 +0 0.6366 +0 0.1014 +0 0.7077 +0 0.0712 +0 0.1285 +0 0.0915 +0 0.2027 +0 0.1766 +0 0.0329 +0 0.1683 +0 0.0474 +0 0.0561 +0 0.0508 +0 0.0503 +0 0.1158 +0 0.1262 +0 0.1675 +0 0.2028 +0 0.1687 +0 0.1465 +0 0.1731 +0 0.1854 +0 0.0871 +0 0.0876 +0 0.2991 +0 0.0676 +0 0.3077 +0 0.4948 +0 0.0768 +0 0.0426 +0 0.7323 +0 0.1733 +0 0.1025 +0 0.0938 +0 0.0578 +0 0.1273 +0 0.1290 +0 0.1325 +0 0.0658 +0 0.0944 +0 0.0774 +0 0.1476 +0 0.0376 +0 0.1062 +0 0.1334 +0 0.4006 +0 0.0805 +0 0.0994 +1 0.7935 +0 0.1548 +0 0.0571 +0 0.0838 +0 0.1875 +0 0.3132 +0 0.3211 +0 0.0583 +0 0.3097 +0 0.0510 +0 0.0640 +0 0.0918 +0 0.0778 +0 0.0694 +0 0.0524 +0 0.0922 +0 0.1136 +0 0.1813 +0 0.0472 +0 0.1931 +0 0.1976 +0 0.2102 +0 0.0416 +0 0.2179 +0 0.1712 +1 0.8750 +0 0.1084 +0 0.1420 +0 0.2158 +0 0.1764 +0 0.0879 +0 0.1502 +0 0.3406 +0 0.0716 +0 0.0720 +0 0.0583 +0 0.1030 +0 0.1298 +0 0.2810 +0 0.0575 +0 0.0464 +0 0.0992 +0 0.0533 +0 0.1322 +0 0.1741 +0 0.0443 +0 0.0666 +0 0.1051 +0 0.0876 +0 0.2528 +0 0.2233 +0 0.0847 +0 0.1941 +0 0.0610 +0 0.0919 +0 0.1753 +0 0.0868 +0 0.0832 +0 0.0805 +0 0.1346 +0 0.1318 +0 0.1361 +0 0.1258 +0 0.0670 +1 0.7754 +0 0.0868 +0 0.1745 +0 0.1283 +0 0.4998 +0 0.0281 +0 0.0774 +0 0.2905 +0 0.0549 +0 0.2546 +0 0.1747 +0 0.0486 +0 0.1389 +0 0.0715 +0 0.0817 +0 0.1984 +0 0.2295 +0 0.3932 +0 0.2254 +0 0.1114 +0 0.3099 +0 0.1628 +0 0.3750 +0 0.1232 +0 0.1757 +0 0.1126 +0 0.0945 +0 0.5231 +0 0.0506 +0 0.0666 +0 0.0732 +0 0.0453 +0 0.3405 +0 0.1978 +0 0.3785 +0 0.5540 +0 0.0688 +0 0.1307 +0 0.1144 +0 0.0613 +0 0.0590 +0 0.0937 +0 0.1075 +0 0.1017 +0 0.1014 +0 0.1245 +0 0.0432 +0 0.1723 +0 0.1256 +0 0.1370 +0 0.0706 +0 0.1363 +0 0.1226 +0 0.2139 +0 0.0945 +0 0.3494 +0 0.0514 +0 0.0760 +0 0.0490 +0 0.0315 +0 0.0697 +0 0.0650 +0 0.1695 +0 0.1259 +0 0.1257 +0 0.1734 +0 0.4788 +0 0.1722 +0 0.2111 +0 0.0635 +0 0.1140 +0 0.1256 +0 0.0950 +0 0.4626 +0 0.0947 +1 0.8563 +0 0.0814 +0 0.1871 +0 0.0887 +0 0.0793 +0 0.1092 +0 0.0605 +0 0.0508 +0 0.0802 +0 0.2991 +0 0.1181 +0 0.1204 +0 0.0540 +0 0.0734 +0 0.2356 +0 0.1280 +0 0.1929 +0 0.3050 +0 0.0697 +0 0.0813 +0 0.1247 +0 0.0892 +0 0.1036 +0 0.0601 +0 0.1522 +0 0.0912 +0 0.1581 +0 0.4778 +0 0.1695 +0 0.1615 +0 0.0514 +0 0.1013 +0 0.2000 +0 0.0835 +0 0.1539 +0 0.2357 +0 0.1256 +0 0.0492 +0 0.1004 +0 0.0807 +0 0.0353 +0 0.1033 +0 0.0566 +0 0.2433 +0 0.1242 +0 0.1069 +0 0.0626 +0 0.1463 +0 0.0798 +0 0.1061 +0 0.0696 +0 0.0700 +0 0.0828 +0 0.1488 +0 0.0829 +0 0.1348 +0 0.0737 +0 0.0982 +0 0.0414 +0 0.1164 +0 0.2236 +0 0.0779 +0 0.0600 +0 0.1337 +0 0.3501 +0 0.1299 +0 0.0995 +0 0.1183 +0 0.1055 +0 0.0989 +0 0.2400 +0 0.0740 +0 0.1615 +0 0.0446 +0 0.0665 +0 0.1070 +0 0.1213 +1 0.8413 +0 0.0559 +0 0.1125 +0 0.0753 +0 0.0323 +0 0.2133 +0 0.1218 +0 0.0939 +0 0.0640 +0 0.1128 +0 0.1477 +0 0.0492 +0 0.1440 +0 0.2531 +0 0.2721 +0 0.1306 +0 0.3638 +0 0.0527 +0 0.4498 +0 0.1864 +0 0.4554 +0 0.1529 +0 0.0855 +0 0.1370 +0 0.0699 +0 0.0637 +0 0.1603 +0 0.0609 +0 0.1138 +0 0.1479 +0 0.1720 +0 0.0937 +0 0.1272 +0 0.2839 +0 0.2491 +0 0.1448 +0 0.0938 +0 0.0652 +0 0.1022 +0 0.0851 +0 0.1091 +0 0.1290 +0 0.2139 +0 0.1001 +0 0.3444 +0 0.0370 +0 0.1207 +0 0.0867 +0 0.0875 +0 0.0723 +0 0.0624 +0 0.0981 +0 0.0619 +0 0.1281 +0 0.1279 +0 0.0876 +0 0.1599 +0 0.0811 +0 0.1309 +0 0.1366 +0 0.0584 +0 0.1191 +0 0.1654 +0 0.1431 +0 0.3104 +0 0.0601 +0 0.0834 +0 0.1105 +0 0.0923 +0 0.1573 +0 0.1367 +1 0.7638 +0 0.0482 +0 0.1869 +0 0.0922 +0 0.0907 +0 0.2621 +0 0.0786 +0 0.0414 +0 0.1261 +0 0.1098 +0 0.0844 +0 0.1156 +0 0.1771 +0 0.1043 +0 0.0674 +0 0.0701 +0 0.0934 +0 0.1124 +0 0.1072 +0 0.0581 +0 0.0458 +0 0.1826 +0 0.5628 +0 0.0640 +0 0.3166 +1 0.8589 +0 0.1755 +0 0.0748 +0 0.1352 +0 0.1184 +0 0.0644 +0 0.0771 +0 0.2380 +0 0.0824 +0 0.1859 +0 0.0760 +0 0.0645 +0 0.0980 +0 0.0858 +0 0.1012 +0 0.1645 +0 0.1286 +0 0.0485 +1 0.8643 +0 0.1369 +0 0.0561 +0 0.0625 +0 0.0920 +0 0.2388 +0 0.1016 +0 0.3170 +0 0.3145 +0 0.1710 +0 0.0771 +0 0.1009 +0 0.6826 +0 0.1995 +0 0.1331 +0 0.1167 +0 0.0814 +0 0.0514 +0 0.1098 +0 0.2158 +0 0.0829 +0 0.1930 +0 0.1002 +0 0.1270 +0 0.2069 +0 0.1557 +0 0.0622 +0 0.0437 +0 0.1065 +0 0.0391 +0 0.0956 +0 0.1162 +0 0.0723 +0 0.1891 +0 0.0953 +0 0.1773 +0 0.1041 +0 0.3030 +0 0.1932 +0 0.0730 +0 0.1268 +0 0.2766 +0 0.1639 +0 0.0767 +0 0.0898 +0 0.0389 +0 0.0995 +0 0.0514 +0 0.3888 +0 0.1506 +0 0.1828 +0 0.2024 +0 0.0835 +0 0.0636 +0 0.0319 +0 0.1411 +0 0.0753 +0 0.5728 +0 0.1252 +0 0.4633 +0 0.1009 +0 0.1269 +0 0.1598 +0 0.1197 +0 0.0643 +0 0.0458 +0 0.0997 +0 0.0857 +0 0.1569 +0 0.1838 +0 0.1477 +0 0.1491 +0 0.2098 +0 0.0846 +0 0.1692 +0 0.1822 +0 0.0708 +0 0.1049 +0 0.1213 +0 0.0464 +0 0.1488 +0 0.0815 +0 0.0806 +0 0.1166 +0 0.0835 +0 0.2020 +0 0.1039 +0 0.0947 +0 0.1952 +0 0.0695 +0 0.0872 +0 0.0480 +0 0.0882 +0 0.0496 +0 0.1145 +0 0.0817 +0 0.0578 +0 0.0831 +0 0.1133 +0 0.1192 +0 0.2908 +0 0.2049 +0 0.2451 +0 0.1910 +0 0.1645 +0 0.1706 +0 0.0645 +0 0.7129 +0 0.1890 +0 0.1931 +0 0.1058 +0 0.1261 +0 0.1028 +0 0.2039 +0 0.0768 +0 0.0357 +0 0.0459 +0 0.1538 +0 0.0943 +0 0.1426 +0 0.0499 +0 0.2974 +0 0.1534 +0 0.0538 +0 0.1107 +0 0.1267 +1 0.7551 +0 0.0640 +0 0.0931 +0 0.2032 +0 0.1567 +0 0.0849 +1 0.8675 +0 0.0955 +0 0.2043 +0 0.1032 +0 0.2080 +0 0.2145 +0 0.1481 +0 0.0691 +0 0.0673 +0 0.1504 +0 0.0829 +0 0.0933 +0 0.1380 +0 0.0650 +0 0.1211 +0 0.0698 +0 0.6531 +0 0.0396 +0 0.1708 +0 0.0639 +0 0.0705 +0 0.0902 +0 0.1561 +0 0.0843 +0 0.0946 +0 0.0558 +0 0.0595 +0 0.0509 +0 0.1287 +0 0.0645 +0 0.0867 +0 0.1663 +0 0.7320 +0 0.1655 +0 0.2229 +0 0.1856 +0 0.0694 +0 0.1068 +0 0.1353 +1 0.7700 +0 0.3981 +0 0.0779 +0 0.1254 +0 0.2461 +0 0.0940 +0 0.0596 +0 0.0581 +0 0.0704 +0 0.1172 +0 0.3242 +0 0.0828 +0 0.0884 +0 0.0629 +0 0.1004 +0 0.1671 +0 0.0804 +0 0.1580 +0 0.0699 +0 0.1050 +0 0.0839 +0 0.1442 +0 0.2622 +0 0.1303 +0 0.2148 +0 0.7396 +0 0.0759 +0 0.1835 +0 0.1731 +0 0.1655 +0 0.1274 +0 0.1370 +0 0.3261 +0 0.1626 +0 0.0659 +0 0.0813 +0 0.1265 +0 0.1591 +1 0.8146 +0 0.0432 +0 0.1150 +0 0.1525 +0 0.0836 +0 0.3448 +0 0.1667 +0 0.0794 +0 0.3083 +0 0.1042 +0 0.1735 +0 0.1270 +0 0.0541 +0 0.0708 +0 0.2800 +0 0.0574 +0 0.2547 +0 0.1481 +0 0.0739 +0 0.1289 +0 0.1068 +0 0.4541 +0 0.1000 +0 0.0849 +0 0.0634 +0 0.0754 +0 0.2055 +0 0.1291 +0 0.1003 +0 0.2172 +0 0.1148 +0 0.0778 +0 0.2282 +0 0.1169 +0 0.2242 +0 0.0599 +0 0.2742 +0 0.0698 +0 0.0729 +0 0.1671 +0 0.0848 +0 0.2793 +0 0.1201 +0 0.1181 +0 0.1022 +0 0.1849 +0 0.3718 +0 0.2163 +0 0.4563 +0 0.1664 +0 0.0919 +0 0.1583 +0 0.0706 +0 0.0761 +0 0.1832 +0 0.1189 +0 0.0973 +0 0.1854 +0 0.0691 +0 0.1993 +0 0.1228 +0 0.1163 +0 0.0551 +0 0.1500 +0 0.1125 +0 0.1048 +1 0.7785 +0 0.2035 +0 0.2199 +0 0.0890 +0 0.3900 +0 0.0705 +0 0.0865 +0 0.1184 +0 0.3523 +0 0.1762 +0 0.0732 +0 0.0819 +0 0.0713 +0 0.0595 +0 0.0961 +0 0.3535 +0 0.0985 +0 0.1138 +0 0.1457 +0 0.0674 +0 0.0854 +0 0.1331 +0 0.0464 +0 0.0688 +0 0.0457 +0 0.1698 +0 0.5783 +0 0.1622 +0 0.2089 +0 0.0856 +0 0.0486 +1 0.8665 +0 0.1604 +0 0.0308 +0 0.0968 +0 0.1420 +0 0.0908 +0 0.1945 +0 0.0742 +0 0.0509 +0 0.1019 +0 0.1509 +0 0.1932 +0 0.0942 +0 0.1328 +0 0.1657 +0 0.1564 +0 0.1252 +0 0.0407 +0 0.1196 +0 0.2255 +0 0.1190 +0 0.1390 +0 0.0531 +0 0.1104 +1 0.8045 +0 0.1102 +0 0.2506 +0 0.0824 +0 0.1512 +0 0.5470 +0 0.0932 +0 0.2376 +0 0.0919 +0 0.0824 +0 0.1847 +0 0.0624 +0 0.2986 +0 0.0431 +0 0.3172 +0 0.0903 +0 0.0733 +0 0.0664 +0 0.0420 +0 0.0821 +0 0.0937 +0 0.0517 +1 0.8639 +0 0.0908 +0 0.0703 +0 0.0760 +0 0.1235 +0 0.0789 +0 0.1990 +0 0.0507 +0 0.0899 +0 0.4375 +0 0.0552 +0 0.0973 +0 0.1589 +1 0.8456 +0 0.1879 +0 0.1831 +0 0.0892 +0 0.7253 +0 0.1129 +0 0.2094 +0 0.1167 +0 0.3529 +0 0.1069 +0 0.1488 +0 0.0526 +0 0.0924 +0 0.1233 +0 0.2033 +0 0.1067 +0 0.1509 +0 0.1558 +0 0.1775 +0 0.2420 +0 0.0350 +0 0.0819 +0 0.1279 +0 0.0998 +0 0.1546 +0 0.0856 +0 0.0875 +0 0.1552 +0 0.2030 +0 0.0749 +0 0.1338 +0 0.5082 +0 0.0489 +0 0.0862 +0 0.1171 +0 0.1198 +0 0.1386 +0 0.0830 +0 0.0773 +0 0.1254 +0 0.2046 +0 0.0435 +0 0.1281 +0 0.0487 +0 0.0471 +0 0.0741 +0 0.1587 +0 0.0714 +0 0.4489 +0 0.0618 +0 0.1143 +0 0.0774 +0 0.0926 +0 0.0961 +0 0.1584 +0 0.0897 +0 0.1562 +0 0.0527 +0 0.1277 +0 0.0975 +0 0.4128 +0 0.0547 +0 0.5652 +0 0.0962 +0 0.2088 +0 0.1655 +0 0.1067 +0 0.0893 +0 0.1014 +0 0.0600 +0 0.1228 +0 0.1093 +0 0.0883 +0 0.1820 +0 0.1622 +0 0.1096 +0 0.0809 +0 0.1106 +0 0.2966 +0 0.0486 +0 0.1873 +0 0.2015 +0 0.0578 +0 0.1087 +0 0.0945 +0 0.0676 +0 0.7408 +0 0.1736 +0 0.1048 +0 0.3577 +0 0.0827 +0 0.2090 +0 0.1243 +0 0.0924 +0 0.1983 +0 0.1151 +0 0.1212 +0 0.0940 +0 0.0748 +0 0.5889 +0 0.1262 +0 0.1802 +0 0.2176 +0 0.0972 +0 0.1274 +0 0.0625 +0 0.1536 +0 0.1533 +0 0.1675 +0 0.1133 +0 0.1370 +0 0.1218 +0 0.1247 +0 0.1521 +0 0.2191 +0 0.2417 +0 0.1206 +0 0.0600 +0 0.0405 +0 0.0768 +0 0.0783 +0 0.0715 +0 0.1575 +0 0.0378 +0 0.3925 +0 0.1445 +0 0.1133 +0 0.1884 +0 0.1266 +0 0.0424 +0 0.0706 +0 0.1500 +0 0.2523 +0 0.3150 +0 0.0566 +0 0.1349 +0 0.0503 +0 0.1299 +0 0.0921 +0 0.0358 +0 0.1333 +0 0.1188 +0 0.0715 +0 0.0484 +0 0.1035 +0 0.0589 +0 0.0935 +0 0.0718 +0 0.1153 +0 0.0643 +0 0.0726 +0 0.5321 +0 0.1889 +0 0.1030 +0 0.0759 +0 0.1235 +0 0.1575 +0 0.0446 +0 0.1211 +0 0.0616 +0 0.0670 +0 0.1030 +0 0.1184 +0 0.2150 +0 0.4225 +0 0.1375 +0 0.0756 +0 0.0805 +0 0.0599 +0 0.0890 +0 0.1526 +0 0.2753 +0 0.6834 +0 0.1192 +0 0.0495 +0 0.1449 +0 0.0710 +0 0.0554 +0 0.0758 +1 0.7571 +0 0.0936 +0 0.1338 +0 0.0783 +0 0.1459 +0 0.0970 +0 0.3486 +0 0.1436 +0 0.1168 +0 0.1278 +0 0.0699 +0 0.1712 +0 0.1872 +0 0.1239 +0 0.0755 +0 0.4340 +0 0.1140 +0 0.1906 +0 0.2379 +0 0.0580 +0 0.0609 +0 0.1184 +0 0.1615 +0 0.1628 +0 0.1446 +0 0.0456 +0 0.6289 +0 0.0574 +0 0.0692 +0 0.0692 +0 0.2044 +0 0.6578 +0 0.0706 +0 0.1187 +0 0.6639 +0 0.0683 +0 0.1160 +0 0.0937 +0 0.1068 +0 0.2704 +0 0.2359 +0 0.4036 +0 0.1002 +0 0.0909 +0 0.1772 +0 0.1156 +0 0.1042 +0 0.2812 +0 0.0616 +0 0.1249 +0 0.0694 +0 0.0552 +0 0.1919 +0 0.1321 +0 0.1512 +0 0.1040 +0 0.0644 +0 0.1616 +0 0.3556 +0 0.1300 +0 0.6658 +0 0.3357 +0 0.0936 +0 0.0399 +0 0.1485 +0 0.1535 +0 0.0572 +0 0.0357 +0 0.1271 +0 0.1316 +0 0.0658 +0 0.1395 +0 0.0482 +0 0.3039 +0 0.0525 +0 0.1208 +0 0.1108 +0 0.1572 +0 0.2638 +0 0.0666 +0 0.0566 +0 0.2369 +0 0.3514 +0 0.0548 +0 0.1224 +0 0.1129 +0 0.1286 +0 0.1348 +0 0.1193 +0 0.1295 +0 0.0442 +0 0.1363 +0 0.0818 +0 0.0695 +0 0.0584 +0 0.1834 +0 0.2415 +0 0.0354 +0 0.0912 +0 0.0434 +0 0.1645 +0 0.1500 +0 0.3555 +0 0.1043 +0 0.0666 +0 0.0562 +0 0.0485 +0 0.1509 +0 0.1141 +0 0.0949 +0 0.2193 +0 0.2728 +0 0.0781 +0 0.1081 +0 0.1386 +0 0.0905 +0 0.0394 +0 0.1395 +0 0.2444 +0 0.1283 +0 0.0909 +0 0.7341 +0 0.2917 +0 0.0604 +0 0.1202 +0 0.0645 +0 0.0955 +0 0.0693 +0 0.0917 +0 0.1206 +0 0.0905 +0 0.1320 +0 0.0703 +0 0.0882 +0 0.1355 +0 0.1214 +0 0.0848 +0 0.6295 +0 0.0475 +1 0.8161 +0 0.0598 +0 0.0794 +0 0.0780 +0 0.1343 +1 0.8677 +0 0.2144 +0 0.0911 +0 0.2812 +0 0.0574 +0 0.0726 +0 0.0742 +0 0.3550 +0 0.0825 +0 0.1516 +0 0.1161 +0 0.1448 +0 0.1203 +0 0.1169 +0 0.0747 +0 0.2136 +1 0.8185 +0 0.0887 +0 0.0674 +0 0.3860 +0 0.1044 +0 0.0963 +0 0.1181 +0 0.0909 +0 0.1113 +0 0.0592 +0 0.0761 +0 0.0773 +0 0.3556 +0 0.0640 +0 0.5628 +0 0.3080 +0 0.1655 +0 0.2848 +0 0.2084 +0 0.1755 +0 0.7221 +0 0.1127 +0 0.2349 +0 0.0669 +0 0.0817 +0 0.1605 +0 0.0617 +0 0.0394 +0 0.1810 +0 0.0552 +0 0.1273 +0 0.1356 +0 0.0934 +0 0.6529 +0 0.0861 +0 0.2393 +0 0.2089 +0 0.5220 +0 0.1421 +0 0.1203 +0 0.1407 +0 0.0276 +0 0.5857 +0 0.0983 +0 0.1193 +0 0.1528 +0 0.1543 +0 0.1614 +0 0.1988 +0 0.3243 +0 0.0970 +0 0.1138 +0 0.0491 +0 0.1052 +0 0.2336 +0 0.5503 +0 0.1760 +0 0.1026 +0 0.0755 +0 0.1154 +0 0.0680 +0 0.0785 +0 0.0689 +0 0.1198 +0 0.0903 +0 0.0895 +0 0.0566 +0 0.2597 +0 0.1157 +0 0.3230 +0 0.0540 +0 0.1793 +0 0.1129 +0 0.0897 +0 0.6015 +0 0.2157 +0 0.2408 +0 0.5589 +0 0.1797 +0 0.0902 +0 0.6289 +0 0.2090 +0 0.0611 +0 0.2559 +0 0.1605 +0 0.1518 +0 0.0452 +0 0.1416 +0 0.1371 +0 0.2345 +0 0.1149 +0 0.1292 +0 0.2489 +0 0.0658 +0 0.0906 +0 0.0963 +0 0.0637 +0 0.0417 +0 0.0497 +0 0.2137 +0 0.4259 +0 0.1235 +0 0.0679 +0 0.2065 +0 0.1462 +0 0.1454 +0 0.1989 +0 0.1296 +0 0.0375 +0 0.1007 +0 0.1017 +0 0.0490 +0 0.0623 +0 0.1447 +0 0.1671 +0 0.1323 +0 0.0914 +0 0.1570 +0 0.0402 +0 0.2580 +0 0.2695 +0 0.2237 +0 0.0812 +0 0.0540 +0 0.1772 +0 0.2112 +0 0.1228 +0 0.1406 +0 0.1605 +0 0.0603 +0 0.0750 +0 0.0864 +0 0.7336 +0 0.0677 +0 0.0630 +0 0.1456 +0 0.1085 +0 0.1021 +0 0.0986 +0 0.1260 +0 0.0783 +0 0.0420 +0 0.0809 +0 0.2310 +0 0.0740 +0 0.0690 +0 0.6059 +0 0.0860 +0 0.3856 +0 0.0854 +0 0.0444 +0 0.1262 +0 0.0730 +0 0.1566 +0 0.0518 +0 0.1210 +0 0.0621 +0 0.0406 +0 0.0415 +0 0.1010 +0 0.0467 +0 0.0676 +0 0.0339 +0 0.1690 +0 0.0411 +0 0.0682 +0 0.1053 +0 0.1348 +0 0.4986 +0 0.0632 +0 0.0385 +0 0.0945 +0 0.5254 +0 0.1749 +0 0.1556 +0 0.0584 +0 0.1579 +0 0.0726 +0 0.1345 +0 0.0407 +1 0.7567 +0 0.1331 +0 0.1615 +0 0.0717 +0 0.1320 +0 0.0574 +0 0.1650 +0 0.0614 +0 0.0377 +0 0.1088 +0 0.2009 +0 0.1450 +0 0.0577 +0 0.0661 +0 0.0507 +0 0.2968 +0 0.1780 +0 0.0859 +0 0.0577 +0 0.0512 +0 0.2102 +0 0.0983 +0 0.0785 +0 0.2343 +0 0.0469 +0 0.1434 +0 0.0633 +0 0.0723 +0 0.2806 +0 0.2103 +0 0.0839 +0 0.0520 +0 0.1310 +0 0.2621 +0 0.1099 +0 0.1820 +0 0.0539 +0 0.0752 +0 0.1408 +0 0.2977 +0 0.0827 +0 0.0524 +0 0.1394 +0 0.0648 +0 0.2581 +0 0.1529 +0 0.0345 +0 0.0511 +0 0.0612 +0 0.1302 +0 0.1188 +0 0.3472 +0 0.1167 +0 0.1047 +1 0.8113 +0 0.1537 +0 0.0738 +0 0.1563 +0 0.2391 +0 0.0914 +0 0.0733 +0 0.0819 +0 0.0590 +0 0.0825 +0 0.0859 +0 0.0886 +0 0.1447 +0 0.1677 +0 0.0854 +0 0.1188 +0 0.4558 +0 0.0625 +0 0.0986 +0 0.0490 +0 0.4051 +0 0.1104 +0 0.0965 +0 0.1309 +0 0.0804 +0 0.0435 +0 0.0415 +0 0.0776 +0 0.1977 +0 0.0694 +0 0.0795 +0 0.1024 +0 0.1298 +0 0.0354 +0 0.1152 +0 0.0664 +0 0.0329 +0 0.1344 +0 0.1574 +0 0.0995 +0 0.2660 +0 0.2648 +0 0.0643 +0 0.0876 +0 0.0766 +0 0.0877 +0 0.1512 +0 0.2126 +0 0.0969 +0 0.0904 +0 0.1199 +0 0.5996 +0 0.0480 +0 0.0506 +0 0.0913 +0 0.0587 +0 0.1593 +0 0.0762 +0 0.1872 +0 0.0444 +0 0.0698 +0 0.0667 +0 0.0798 +0 0.0803 +0 0.0964 +0 0.1404 +0 0.1533 +0 0.3779 +0 0.2959 +0 0.1083 +0 0.0658 +0 0.0529 +0 0.1166 +0 0.2530 +0 0.0897 +0 0.0548 +0 0.0687 +0 0.2710 +0 0.0741 +0 0.2651 +0 0.1546 +0 0.1111 +0 0.1057 +0 0.1013 +0 0.0445 +0 0.0374 +0 0.7350 +0 0.0919 +0 0.1149 +0 0.1661 +0 0.1742 +0 0.0918 +0 0.0808 +0 0.0717 +0 0.0899 +0 0.1474 +0 0.0853 +0 0.0802 +0 0.0783 +0 0.1168 +0 0.1048 +0 0.2652 +0 0.1161 +0 0.1246 +0 0.0848 +0 0.0922 +0 0.0648 +0 0.1001 +0 0.0547 +0 0.0530 +0 0.0505 +0 0.2260 +0 0.1547 +0 0.0755 +0 0.1087 +0 0.1255 +0 0.0826 +0 0.0603 +0 0.0939 +0 0.0492 +0 0.0502 +0 0.1365 +0 0.0458 +0 0.2092 +0 0.0537 +0 0.0644 +0 0.0733 +0 0.3569 +0 0.1008 +0 0.1067 +0 0.1839 +0 0.1832 +0 0.2642 +0 0.0681 +1 0.8649 +0 0.1639 +0 0.2573 +0 0.1145 +0 0.0775 +0 0.0913 +0 0.2621 +0 0.1495 +0 0.2415 +0 0.1119 +0 0.1238 +0 0.0922 +0 0.0973 +0 0.3240 +0 0.2951 +0 0.2310 +0 0.1472 +0 0.0908 +0 0.0889 +0 0.0705 +0 0.0966 +0 0.0893 +0 0.1038 +0 0.0860 +0 0.0745 +0 0.1690 +0 0.0845 +0 0.1355 +0 0.0997 +0 0.0844 +0 0.0963 +0 0.1341 +0 0.1257 +0 0.0647 +0 0.1351 +0 0.0664 +0 0.1728 +0 0.1394 +0 0.1146 +0 0.0869 +0 0.0566 +0 0.0992 +0 0.0657 +0 0.2004 +0 0.6536 +0 0.0683 +0 0.1204 +0 0.1741 +0 0.1448 +0 0.0687 +0 0.0917 +0 0.1075 +0 0.6500 +0 0.0792 +0 0.1480 +0 0.2035 +0 0.0730 +0 0.2168 +0 0.0693 +0 0.0603 +0 0.3848 +0 0.3123 +0 0.1440 +0 0.1059 +0 0.0571 +0 0.0757 +0 0.0871 +0 0.1010 +0 0.1600 +0 0.0518 +0 0.0843 +0 0.1398 +0 0.0640 +0 0.1389 +0 0.1474 +0 0.0960 +0 0.1410 +0 0.1082 +0 0.0657 +0 0.1937 +0 0.0886 +0 0.1015 +0 0.2546 +0 0.0374 +0 0.1697 +0 0.2295 +0 0.0887 +0 0.1040 +0 0.1584 +0 0.0896 +0 0.0996 +0 0.0561 +0 0.1191 +0 0.2053 +0 0.0910 +0 0.1526 +0 0.1421 +0 0.1468 +0 0.2637 +0 0.0810 +0 0.1174 +0 0.0731 +0 0.0876 +0 0.3573 +0 0.0539 +0 0.0657 +0 0.2566 +0 0.1190 +0 0.1100 +0 0.0989 +0 0.2198 +0 0.1882 +0 0.0912 +0 0.0783 +0 0.0752 +0 0.0841 +0 0.1169 +0 0.1188 +0 0.0899 +0 0.0673 +0 0.0569 +0 0.3860 +0 0.0573 +0 0.2420 +0 0.5412 +0 0.3509 +0 0.1416 +0 0.1487 +0 0.1777 +0 0.2660 +0 0.1098 +0 0.0488 +0 0.0631 +0 0.1096 +0 0.2070 +0 0.2978 +0 0.0772 +0 0.1344 +0 0.0453 +0 0.1897 +0 0.1390 +0 0.1466 +0 0.1215 +0 0.2961 +0 0.0797 +0 0.1093 +0 0.1661 +0 0.0913 +0 0.0387 +0 0.1523 +0 0.2250 +0 0.0982 +0 0.6831 +0 0.2013 +0 0.2913 +0 0.4691 +0 0.4094 +0 0.1168 +0 0.0821 +0 0.0612 +0 0.1063 +0 0.1655 +0 0.0697 +0 0.0955 +1 0.7597 +0 0.0802 +0 0.0847 +0 0.1219 +0 0.0665 +0 0.0877 +0 0.0742 +0 0.0750 +0 0.0734 +0 0.1756 +0 0.0829 +0 0.1602 +0 0.0743 +0 0.0689 +0 0.3281 +0 0.1029 +0 0.1152 +0 0.1925 +0 0.1258 +0 0.0798 +0 0.0486 +0 0.0963 +0 0.1226 +0 0.0561 +0 0.1019 +0 0.1529 +0 0.2133 +0 0.1555 +1 0.8640 +0 0.0786 +0 0.0505 +1 0.9024 +0 0.6748 +0 0.4051 +0 0.1297 +0 0.1247 +0 0.1243 +0 0.0964 +1 0.8306 +0 0.1050 +0 0.0891 +0 0.0367 +0 0.1249 +0 0.1465 +0 0.0651 +0 0.0788 +0 0.1002 +0 0.2103 +0 0.0775 +0 0.0992 +0 0.0386 +0 0.1822 +0 0.0792 +0 0.0615 +0 0.2145 +0 0.1075 +0 0.1670 +0 0.0894 +0 0.1135 +0 0.1969 +0 0.1895 +0 0.1870 +0 0.0942 +0 0.1510 +0 0.1020 +0 0.1042 +0 0.0559 +0 0.1146 +0 0.2192 +0 0.0908 +0 0.2577 +0 0.1213 +0 0.1549 +0 0.0486 +0 0.0963 +0 0.0716 +0 0.1653 +0 0.1218 +0 0.0446 +0 0.1513 +0 0.0696 +0 0.1087 +0 0.1817 +0 0.0553 +0 0.3366 +0 0.1394 +0 0.0630 +0 0.1246 +0 0.0760 +0 0.1131 +0 0.1428 +0 0.1333 +0 0.1927 +0 0.6782 +0 0.1031 +0 0.1908 +0 0.1406 +0 0.0453 +0 0.4324 +0 0.2137 +0 0.1182 +0 0.1313 +0 0.2686 +0 0.1294 +0 0.1212 +0 0.0817 +0 0.0581 +0 0.3282 +0 0.1170 +0 0.0754 +0 0.0970 +0 0.0940 +0 0.1881 +0 0.0924 +0 0.0779 +0 0.1716 +0 0.1032 +0 0.1762 +0 0.2015 +0 0.0973 +0 0.0779 +0 0.0652 +0 0.0622 +1 0.8039 +0 0.1485 +1 0.7691 +0 0.0416 +0 0.3231 +0 0.0650 +0 0.5039 +0 0.0524 +0 0.1529 +1 0.7659 +0 0.1687 +0 0.0901 +0 0.0639 +0 0.0739 +0 0.1431 +0 0.0932 +0 0.0795 +0 0.1613 +0 0.0438 +0 0.2308 +0 0.1958 +0 0.1937 +0 0.0704 +0 0.5882 +0 0.0779 +0 0.0940 +0 0.1088 +0 0.1197 +0 0.3152 +0 0.0428 +1 0.7903 +0 0.0638 +0 0.0687 +0 0.1421 +0 0.3093 +0 0.0985 +0 0.0514 +0 0.2520 +0 0.1489 +0 0.0441 +0 0.1529 +0 0.0638 +0 0.0935 +0 0.0885 +1 0.7727 +0 0.1170 +0 0.3568 +0 0.0982 +0 0.0623 +0 0.1343 +0 0.0556 +0 0.1450 +0 0.4899 +0 0.0431 +0 0.0768 +0 0.2188 +0 0.2812 +0 0.0962 +0 0.1858 +0 0.0892 +0 0.0438 +0 0.1657 +0 0.0410 +0 0.1845 +0 0.1138 +0 0.2166 +0 0.1697 +0 0.0883 +0 0.0705 +0 0.1057 +0 0.0556 +0 0.0534 +0 0.1246 +0 0.1167 +0 0.0739 +0 0.0642 +0 0.4869 +0 0.1167 +0 0.1008 +0 0.1051 +0 0.0741 +0 0.2755 +0 0.0723 +0 0.1824 +1 0.8075 +0 0.0994 +0 0.0530 +0 0.1458 +0 0.0853 +0 0.1606 +0 0.0823 +0 0.1155 +0 0.1066 +0 0.0569 +0 0.1393 +0 0.0563 +0 0.0660 +0 0.0959 +0 0.0744 +0 0.1256 +0 0.1451 +0 0.1043 +0 0.1358 +0 0.0807 +0 0.0465 +0 0.0848 +0 0.1059 +0 0.2914 +0 0.2275 +0 0.2309 +0 0.0570 +0 0.1131 +0 0.0850 +0 0.2118 +0 0.1752 +0 0.1153 +0 0.2194 +0 0.0957 +0 0.0559 +0 0.0453 +0 0.0671 +0 0.1348 +0 0.0635 +0 0.0641 +0 0.2674 +0 0.1197 +0 0.0804 +0 0.0714 +0 0.0555 +0 0.5334 +0 0.0696 +0 0.1144 +0 0.0837 +0 0.0969 +0 0.4449 +0 0.1504 +0 0.1523 +0 0.1075 +0 0.5941 +0 0.2481 +0 0.2196 +0 0.0864 +1 0.8428 +0 0.0782 +0 0.0635 +0 0.0482 +0 0.1278 +0 0.1447 +0 0.1758 +0 0.0884 +0 0.0617 +0 0.0898 +0 0.0638 +0 0.1199 +0 0.1269 +0 0.0437 +0 0.1108 +0 0.1023 +0 0.0891 +0 0.2021 +0 0.0867 +0 0.0403 +0 0.0517 +0 0.0612 +0 0.0577 +0 0.1669 +0 0.0958 +0 0.0638 +0 0.1828 +0 0.1858 +0 0.3194 +0 0.1229 +0 0.0783 +0 0.1801 +0 0.3861 +0 0.1542 +0 0.0869 +0 0.0824 +0 0.0600 +0 0.1096 +0 0.0711 +0 0.1689 +0 0.0821 +0 0.1953 +0 0.1295 +0 0.0451 +0 0.1091 +0 0.1004 +0 0.1599 +0 0.1079 +0 0.0926 +0 0.4091 +0 0.1240 +0 0.0799 +0 0.1574 +0 0.3013 +0 0.0583 +0 0.0783 +0 0.1049 +0 0.1395 +0 0.0840 +0 0.0657 +0 0.2074 +0 0.1648 +0 0.1221 +1 0.8485 +0 0.1266 +0 0.0861 +0 0.1724 +0 0.0767 +0 0.1293 +0 0.0533 +0 0.1489 +0 0.1177 +0 0.1698 +0 0.0364 +0 0.0747 +0 0.0923 +0 0.1286 +0 0.6199 +0 0.0888 +0 0.0841 +0 0.0835 +0 0.1469 +0 0.1048 +0 0.1032 +0 0.1038 +0 0.2665 +0 0.1912 +0 0.0491 +0 0.1470 +0 0.0689 +0 0.0482 +0 0.1595 +0 0.0330 +0 0.0847 +0 0.1104 +0 0.1232 +0 0.0739 +0 0.0688 +0 0.1344 +0 0.0692 +0 0.2911 +0 0.0856 +0 0.2336 +0 0.4512 +0 0.1996 +0 0.0371 +0 0.0731 +0 0.2117 +0 0.0778 +0 0.1019 +0 0.0664 +0 0.0936 +0 0.3623 +0 0.0422 +0 0.2430 +0 0.0688 +0 0.1955 +0 0.0842 +0 0.1026 +0 0.3533 +0 0.0369 +0 0.0974 +0 0.1052 +0 0.0480 +0 0.5704 +0 0.0414 +0 0.1832 +0 0.0745 +0 0.1245 +0 0.0469 +0 0.4534 +0 0.1945 +0 0.1479 +0 0.0727 +0 0.0515 +0 0.1053 +0 0.1241 +0 0.3054 +0 0.0921 +0 0.0639 +0 0.3143 +0 0.1711 +1 0.7658 +0 0.1546 +0 0.0814 +0 0.0396 +0 0.1162 +0 0.0840 +0 0.2905 +0 0.3816 +0 0.0544 +0 0.0636 +0 0.3983 +0 0.1360 +0 0.2197 +0 0.1481 +0 0.0885 +0 0.1372 +0 0.2897 +0 0.3293 +0 0.2057 +0 0.0516 +0 0.0506 +0 0.5108 +0 0.2084 +0 0.0699 +0 0.1967 +0 0.3841 +0 0.4046 +0 0.0686 +0 0.1995 +0 0.0826 +0 0.0595 +0 0.0900 +0 0.1411 +0 0.1826 +0 0.0423 +0 0.0463 +0 0.2873 +0 0.0964 +0 0.1800 +0 0.0416 +0 0.0758 +0 0.3004 +0 0.0618 +0 0.0654 +0 0.1051 +0 0.0655 +0 0.5480 +0 0.0721 +0 0.0590 +0 0.1023 +0 0.1666 +0 0.0402 +0 0.0586 +0 0.1052 +0 0.3862 +0 0.5776 +0 0.5091 +0 0.0591 +0 0.0587 +0 0.0644 +0 0.3906 +0 0.0628 +0 0.2700 +0 0.0498 +0 0.0802 +0 0.0992 +0 0.0724 +1 0.7696 +0 0.1759 +0 0.1034 +0 0.0579 +0 0.1108 +0 0.0721 +0 0.1337 +0 0.0566 +0 0.1029 +0 0.0903 +0 0.1829 +0 0.0587 +0 0.1524 +0 0.0603 +0 0.0336 +0 0.1046 +0 0.1414 +0 0.1009 +0 0.0940 +0 0.0768 +0 0.1184 +0 0.0510 +0 0.1033 +0 0.1000 +0 0.2692 +0 0.0525 +0 0.0430 +0 0.1223 +0 0.0859 +0 0.1472 +0 0.0889 +0 0.1312 +0 0.0581 +0 0.0801 +0 0.4452 +1 0.8590 +0 0.1952 +0 0.1324 +0 0.5254 +0 0.0981 +0 0.1591 +0 0.1179 +0 0.1942 +0 0.1768 +0 0.0992 +0 0.1201 +0 0.0802 +0 0.1477 +0 0.0602 +0 0.1355 +0 0.0577 +0 0.1114 +0 0.2182 +0 0.1106 +0 0.1614 +0 0.1307 +0 0.0655 +0 0.0652 +0 0.1937 +0 0.1077 +0 0.1450 +0 0.0974 +0 0.0826 +0 0.2057 +0 0.1281 +0 0.2345 +0 0.2506 +0 0.1226 +0 0.0763 +0 0.1129 +0 0.0686 +0 0.7315 +0 0.0834 +0 0.0988 +0 0.1454 +0 0.2120 +0 0.0924 +0 0.0883 +0 0.1527 +0 0.0953 +0 0.0534 +0 0.0883 +0 0.0649 +0 0.1144 +0 0.0981 +0 0.0800 +1 0.8832 +0 0.0482 +0 0.0495 +0 0.1124 +0 0.0731 +0 0.0940 +0 0.1367 +0 0.2802 +0 0.0411 +0 0.1271 +0 0.0398 +0 0.1659 +0 0.0809 +0 0.0477 +0 0.0479 +0 0.1037 +0 0.1722 +0 0.0544 +0 0.1689 +0 0.0735 +0 0.0959 +0 0.0832 +0 0.1105 +0 0.1038 +0 0.0829 +0 0.1551 +0 0.0606 +0 0.0296 +0 0.1060 +0 0.0820 +0 0.1004 +0 0.1104 +0 0.1382 +0 0.1614 +0 0.5067 +0 0.0595 +0 0.0577 +0 0.0744 +0 0.1328 +0 0.0898 +0 0.2000 +0 0.0758 +0 0.5495 +0 0.3154 +0 0.0313 +0 0.0563 +0 0.1209 +0 0.0922 +0 0.0714 +0 0.1052 +0 0.1216 +0 0.0756 +0 0.1075 +0 0.0643 +0 0.0478 +0 0.1237 +0 0.2437 +0 0.1143 +0 0.0877 +0 0.0491 +0 0.0399 +0 0.0658 +0 0.0815 +0 0.0503 +0 0.0690 +0 0.0942 +0 0.1296 +0 0.4997 +0 0.2367 +0 0.1929 +0 0.0765 +0 0.6235 +0 0.1144 +0 0.2163 +0 0.1141 +0 0.2337 +0 0.1032 +0 0.0743 +0 0.0525 +0 0.1201 +0 0.1350 +0 0.1174 +0 0.0479 +0 0.2009 +0 0.1631 +0 0.0691 +0 0.1453 +0 0.0653 +0 0.0647 +0 0.0528 +0 0.1025 +0 0.0834 +0 0.0664 +0 0.2463 +0 0.2273 +0 0.0677 +0 0.1002 +0 0.0491 +0 0.1658 +0 0.1169 +0 0.1380 +0 0.0693 +0 0.1590 +0 0.0826 +0 0.0985 +0 0.2065 +0 0.0644 +0 0.1140 +0 0.0676 +0 0.0765 +0 0.0977 +0 0.2454 +0 0.0646 +0 0.1079 +0 0.0619 +0 0.2157 +0 0.0833 +0 0.0618 +0 0.1065 +0 0.0666 +0 0.2783 +0 0.2567 +0 0.0632 +0 0.1350 +0 0.1012 +0 0.0909 +0 0.1526 +0 0.0512 +0 0.0920 +0 0.0579 +0 0.0792 +0 0.2672 +0 0.1011 +0 0.0410 +0 0.1765 +0 0.0913 +0 0.1134 +0 0.0528 +0 0.0789 +0 0.1109 +0 0.1239 +0 0.0916 +0 0.0934 +0 0.0550 +0 0.0544 +0 0.0875 +0 0.1097 +0 0.0885 +0 0.1019 +0 0.1368 +0 0.1554 +0 0.6224 +0 0.0797 +0 0.1580 +0 0.0495 +0 0.1086 +0 0.0910 +0 0.0488 +0 0.0964 +0 0.0702 +0 0.1400 +0 0.0666 +0 0.2655 +0 0.0877 +0 0.0716 +0 0.0453 +0 0.0475 +0 0.4184 +0 0.1056 +0 0.1096 +0 0.2254 +0 0.4773 +0 0.0983 +0 0.0921 +0 0.4536 +0 0.0834 +1 0.7843 +0 0.0676 +0 0.0626 +0 0.3188 +0 0.3266 +0 0.3088 +0 0.0602 +0 0.1565 +0 0.2670 +0 0.1409 +0 0.1586 +0 0.2329 +0 0.0724 +0 0.3805 +0 0.0671 +0 0.0615 +0 0.1805 +0 0.0956 +1 0.7981 +0 0.1635 +0 0.1338 +0 0.1264 +0 0.1198 +0 0.0850 +0 0.1245 +0 0.1089 +0 0.5370 +0 0.1208 +0 0.2097 +0 0.1102 +0 0.1717 +0 0.0759 +0 0.2305 +0 0.0642 +0 0.3842 +0 0.0584 +0 0.0545 +0 0.0905 +0 0.0692 +0 0.1318 +0 0.0545 +0 0.3256 +0 0.0626 +0 0.0724 +0 0.0684 +0 0.0455 +0 0.0948 +0 0.0349 +0 0.4536 +0 0.1287 +0 0.1015 +0 0.1182 +0 0.0587 +0 0.0662 +0 0.3758 +0 0.1073 +0 0.0426 +0 0.0947 +0 0.1059 +0 0.2166 +0 0.1892 +0 0.0703 +0 0.0517 +0 0.5971 +0 0.0667 +0 0.4856 +0 0.1246 +0 0.1308 +0 0.1420 +0 0.0653 +0 0.7067 +0 0.0957 +0 0.2422 +0 0.1213 +0 0.0611 +0 0.0624 +0 0.1456 +0 0.0937 +0 0.1545 +0 0.0421 +0 0.0537 +0 0.1237 +0 0.3506 +0 0.1505 +0 0.1573 +0 0.0716 +0 0.0563 +0 0.0736 +0 0.1020 +0 0.1194 +0 0.0624 +0 0.1639 +0 0.2090 +0 0.1020 +0 0.0856 +0 0.0750 +0 0.0737 +0 0.0390 +0 0.1204 +0 0.0857 +0 0.0581 +0 0.6826 +0 0.1369 +0 0.1325 +0 0.0652 +0 0.0797 +0 0.3142 +0 0.0957 +0 0.1069 +0 0.7382 +0 0.0990 +0 0.0452 +0 0.2905 +0 0.0466 +0 0.1998 +0 0.1157 +0 0.0455 +0 0.1127 +0 0.0998 +0 0.0430 +0 0.0551 +0 0.1898 +0 0.0721 +0 0.1385 +0 0.0673 +1 0.8013 +0 0.0396 +0 0.0471 +0 0.0819 +0 0.0628 +0 0.0582 +0 0.1298 +0 0.2613 +0 0.0629 +0 0.1554 +0 0.1098 +0 0.0593 +0 0.0902 +0 0.0672 +0 0.1117 +0 0.1209 +0 0.1118 +0 0.1861 +0 0.1053 +0 0.0487 +0 0.0875 +0 0.3267 +0 0.1023 +1 0.3628 +0 0.0925 +0 0.0800 +0 0.3297 +0 0.1297 +0 0.0760 +0 0.1302 +0 0.1840 +0 0.0573 +0 0.0933 +0 0.0970 +0 0.3885 +0 0.3007 +0 0.1165 +0 0.1006 +0 0.1298 +0 0.0995 +0 0.0851 +0 0.0693 +0 0.1872 +0 0.1651 +0 0.1020 +0 0.0601 +0 0.6801 +1 0.7855 +0 0.0987 +0 0.0941 +0 0.0978 +0 0.1774 +0 0.0691 +0 0.0600 +0 0.5473 +0 0.0583 +0 0.0686 +0 0.2607 +0 0.2151 +0 0.6615 +0 0.0631 +0 0.1291 +0 0.2368 +0 0.0851 +0 0.0621 +0 0.0645 +0 0.2089 +0 0.0718 +0 0.0534 +0 0.0581 +0 0.0815 +0 0.0816 +0 0.0793 +0 0.0880 +0 0.0514 +0 0.2296 +0 0.2362 +0 0.3667 +0 0.0580 +0 0.1182 +0 0.1402 +0 0.1485 +0 0.2081 +0 0.1142 +0 0.0707 +0 0.1656 +0 0.1185 +0 0.1162 +0 0.1204 +0 0.1160 +0 0.0524 +0 0.0696 +0 0.0540 +0 0.5008 +0 0.0977 +0 0.1525 +0 0.1355 +0 0.0958 +0 0.1217 +0 0.1069 +0 0.1171 +0 0.1077 +0 0.1170 +0 0.0762 +0 0.0598 +0 0.0804 +0 0.1077 +0 0.1299 +0 0.0863 +0 0.0835 +0 0.1834 +0 0.0581 +0 0.0613 +0 0.0554 +0 0.2442 +0 0.1851 +0 0.1146 +0 0.1624 +0 0.5618 +0 0.0950 +0 0.3923 +0 0.0973 +0 0.0863 +0 0.0914 +0 0.0958 +0 0.1464 +0 0.1397 +0 0.0385 +0 0.0549 +0 0.0711 +0 0.3947 +0 0.1313 +0 0.1282 +0 0.1176 +0 0.0660 +0 0.0733 +0 0.1328 +0 0.0891 +0 0.0863 +0 0.1015 +0 0.1916 +0 0.1004 +0 0.1280 +0 0.1252 +0 0.0764 +0 0.3873 +0 0.2533 +0 0.0813 +0 0.0614 +0 0.1662 +0 0.0929 +0 0.0498 +1 0.8192 +0 0.1564 +0 0.0838 +0 0.1522 +0 0.2224 +0 0.0647 +0 0.0642 +0 0.1173 +0 0.1827 +0 0.0536 +0 0.3252 +0 0.2446 +0 0.3449 +0 0.1630 +0 0.1175 +0 0.4671 +0 0.0839 +0 0.1786 +0 0.1426 +0 0.1013 +0 0.0834 +0 0.0590 +0 0.1090 +0 0.0936 +0 0.0672 +0 0.3513 +0 0.1252 +0 0.1284 +0 0.2410 +0 0.2382 +0 0.0710 +0 0.0978 +0 0.0384 +0 0.1959 +0 0.0684 +0 0.1574 +0 0.1144 +0 0.0828 +0 0.0658 +0 0.1905 +0 0.2028 +0 0.1905 +0 0.1861 +0 0.0720 +0 0.0616 +0 0.1934 +0 0.1335 +0 0.1215 +0 0.1172 +0 0.0771 +0 0.2120 +0 0.0599 +0 0.0349 +0 0.1809 +0 0.1124 +0 0.0876 +0 0.0996 +0 0.0455 +0 0.0703 +0 0.0840 +0 0.0559 +0 0.2250 +0 0.1760 +0 0.0648 +0 0.1442 +0 0.0827 +0 0.2451 +0 0.0539 +0 0.1229 +0 0.1233 +0 0.1690 +0 0.2973 +0 0.0975 +0 0.0675 +0 0.1258 +0 0.0739 +0 0.0401 +0 0.1919 +0 0.1080 +0 0.0761 +0 0.2704 +0 0.0560 +0 0.0675 +0 0.2026 +0 0.4020 +0 0.1084 +0 0.0765 +0 0.1176 +0 0.0624 +0 0.1729 +0 0.2391 +0 0.0431 +0 0.0683 +0 0.1734 +0 0.1606 +0 0.1540 +0 0.0441 +0 0.1569 +0 0.0618 +0 0.2141 +0 0.1101 +0 0.1396 +0 0.0720 +0 0.1465 +0 0.1069 +0 0.0427 +0 0.0590 +0 0.1162 +0 0.1100 +0 0.1291 +0 0.1919 +0 0.3572 +0 0.2441 +0 0.1921 +0 0.1307 +0 0.1498 +0 0.2563 +0 0.1393 +0 0.0477 +0 0.0905 +0 0.1421 +0 0.5373 +0 0.0743 +0 0.0754 +0 0.1433 +0 0.1137 +0 0.6387 +0 0.0958 +0 0.1570 +0 0.2145 +0 0.1011 +0 0.0738 +0 0.1262 +0 0.1154 +0 0.0792 +0 0.1013 +0 0.0859 +0 0.0841 +0 0.1114 +0 0.0845 +0 0.0571 +0 0.0496 +0 0.0399 +0 0.0873 +0 0.3145 +0 0.0912 +0 0.1307 +0 0.0918 +0 0.0910 +0 0.0538 +0 0.1179 +0 0.0607 +0 0.2776 +0 0.1237 +0 0.0694 +0 0.1409 +0 0.2098 +0 0.1033 +0 0.0792 +0 0.0635 +0 0.0972 +0 0.0711 +0 0.3493 +0 0.1091 +0 0.1157 +0 0.1829 +0 0.1546 +0 0.0965 +0 0.1219 +0 0.0280 +0 0.0704 +0 0.0710 +0 0.0874 +0 0.1471 +0 0.1680 +0 0.3389 +0 0.1230 +0 0.0857 +0 0.0871 +0 0.5783 +0 0.0826 +0 0.3823 +0 0.0466 +0 0.1091 +0 0.0732 +0 0.1104 +0 0.1191 +0 0.2607 +0 0.1781 +0 0.0589 +0 0.2981 +0 0.2507 +0 0.3786 +0 0.1687 +0 0.1230 +0 0.1438 +0 0.2000 +0 0.0756 +0 0.0548 +0 0.1327 +0 0.6026 +0 0.0791 +0 0.1096 +0 0.0715 +0 0.1600 +0 0.0501 +0 0.1428 +0 0.0591 +0 0.0975 +0 0.1434 +0 0.0870 +0 0.0577 +0 0.0837 +0 0.2034 +0 0.2261 +0 0.1457 +0 0.0465 +0 0.2360 +0 0.1126 +0 0.0561 +0 0.0550 +0 0.1898 +0 0.3634 +0 0.0891 +0 0.2081 +0 0.0927 +0 0.0974 +0 0.0963 +0 0.2558 +0 0.0671 +0 0.4752 +0 0.2079 +0 0.3992 +0 0.0608 +0 0.0623 +0 0.1262 +0 0.0957 +0 0.0902 +0 0.2557 +0 0.1556 +0 0.0994 +0 0.0663 +0 0.1254 +0 0.2571 +0 0.0449 +0 0.1015 +0 0.1138 +0 0.1071 +0 0.0914 +0 0.1399 +0 0.0855 +0 0.1685 +0 0.3183 +0 0.1184 +0 0.0864 +0 0.5427 +0 0.0428 +0 0.2239 +0 0.0640 +0 0.0886 +0 0.0649 +0 0.0812 +0 0.0510 +0 0.2235 +0 0.1216 +0 0.0407 +0 0.0928 +0 0.1212 +0 0.0730 +0 0.1359 +0 0.1948 +0 0.0461 +0 0.2180 +0 0.2889 +0 0.2247 +0 0.0672 +0 0.3210 +0 0.0672 +0 0.5073 +0 0.1590 +0 0.0608 +0 0.0682 +0 0.0928 +1 0.7925 +0 0.0875 +0 0.0663 +0 0.1717 +0 0.0326 +0 0.0570 +0 0.0695 +0 0.0569 +0 0.0502 +0 0.0916 +0 0.0709 +0 0.0898 +0 0.1350 +0 0.3143 +0 0.0470 +0 0.1006 +0 0.0728 +0 0.0685 +0 0.2102 +0 0.0657 +0 0.5879 +0 0.1580 +0 0.0558 +0 0.3805 +0 0.0764 +0 0.1605 +0 0.1120 +0 0.1936 +0 0.1199 +0 0.1123 +0 0.1019 +0 0.1426 +0 0.0424 +0 0.2231 +0 0.1733 +0 0.0340 +0 0.1759 +0 0.0865 +0 0.0956 +0 0.6378 +0 0.0863 +0 0.1775 +0 0.1117 +0 0.1187 +0 0.0610 +1 0.8401 +0 0.1355 +0 0.5334 +0 0.0635 +0 0.1963 +0 0.0615 +0 0.3114 +0 0.0489 +0 0.0842 +0 0.2206 +0 0.0619 +0 0.1353 +0 0.3551 +0 0.3365 +0 0.1964 +0 0.1120 +0 0.1804 +0 0.2579 +0 0.1857 +0 0.1946 +0 0.2191 +0 0.2308 +0 0.1124 +0 0.0711 +0 0.2321 +0 0.1770 +0 0.0634 +0 0.4104 +0 0.5397 +0 0.1603 +0 0.2037 +0 0.6572 +0 0.1091 +0 0.1113 +0 0.0679 +0 0.3983 +1 0.7733 +0 0.2099 +0 0.0902 +0 0.1181 +0 0.0399 +0 0.2105 +0 0.1575 +0 0.0721 +0 0.0873 +0 0.3796 +0 0.0892 +0 0.3260 +0 0.1687 +0 0.0815 +0 0.4195 +0 0.0597 +0 0.1335 +0 0.1149 +0 0.3805 +0 0.0585 +0 0.1315 +0 0.0601 +0 0.2654 +0 0.1399 +0 0.1009 +0 0.4154 +0 0.0673 +0 0.0682 +0 0.0911 +0 0.0883 +0 0.2318 +0 0.1136 +0 0.3802 +0 0.2063 +0 0.0634 +0 0.0430 +0 0.1164 +0 0.1348 +1 0.8517 +0 0.0708 +0 0.0751 +0 0.1333 +0 0.1195 +0 0.0791 +0 0.2654 +0 0.1482 +0 0.0666 +0 0.2491 +0 0.0831 +0 0.0790 +0 0.0403 +0 0.2098 +0 0.0589 +0 0.1477 +0 0.2217 +0 0.7203 +0 0.1404 +0 0.1799 +0 0.0982 +0 0.0785 +0 0.1599 +0 0.1212 +0 0.3276 +1 0.7797 +0 0.2528 +0 0.1240 +0 0.1155 +0 0.0521 +0 0.4538 +0 0.1503 +0 0.0596 +0 0.0797 +0 0.0679 +0 0.3037 +0 0.0625 +0 0.0677 +0 0.3501 +0 0.0492 +0 0.0858 +0 0.2989 +0 0.0455 +0 0.0852 +0 0.1521 +0 0.0807 +0 0.1972 +0 0.1896 +0 0.0563 +0 0.1260 +0 0.1161 +0 0.0836 +0 0.1473 +0 0.0900 +0 0.1323 +0 0.1397 +0 0.1120 +0 0.1591 +0 0.0720 +0 0.0966 +0 0.0695 +1 0.8465 +0 0.1687 +0 0.1087 +0 0.4289 +0 0.0558 +0 0.1719 +0 0.1388 +0 0.0516 +0 0.0683 +0 0.1196 +0 0.0992 +0 0.1751 +0 0.3064 +0 0.1310 +0 0.0460 +0 0.2879 +0 0.1503 +0 0.0771 +0 0.6913 +0 0.1169 +0 0.0546 +0 0.0659 +0 0.3766 +0 0.1291 +0 0.0430 +0 0.0963 +0 0.2895 +0 0.6407 +0 0.1047 +0 0.0913 +0 0.1381 +0 0.2189 +0 0.0655 +0 0.2377 +0 0.1529 +0 0.1087 +0 0.0416 +0 0.1172 +0 0.1069 +0 0.0462 +1 0.8317 +1 0.8585 +0 0.1772 +0 0.1037 +0 0.0655 +0 0.1616 +0 0.4278 +0 0.0931 +0 0.0836 +0 0.1474 +0 0.0733 +0 0.0762 +0 0.1309 +0 0.0918 +0 0.0857 +0 0.0870 +0 0.0636 +0 0.0984 +0 0.1263 +0 0.0665 +0 0.1207 +0 0.0675 +0 0.0817 +0 0.1852 +0 0.1145 +0 0.0850 +0 0.2153 +0 0.0711 +0 0.0920 +0 0.1450 +0 0.0845 +0 0.1221 +0 0.1421 +0 0.1251 +0 0.0869 +0 0.0977 +0 0.2164 +0 0.1429 +0 0.0407 +0 0.0820 +0 0.1939 +0 0.0691 +0 0.1415 +0 0.0749 +0 0.0606 +0 0.3694 +0 0.0424 +0 0.0717 +0 0.2339 +0 0.0802 +0 0.2182 +0 0.6113 +0 0.0544 +0 0.1811 +0 0.0972 +0 0.0727 +0 0.1171 +0 0.0592 +0 0.0984 +0 0.2200 +0 0.0434 +0 0.2154 +0 0.2757 +0 0.1095 +0 0.1338 +0 0.2243 +0 0.1194 +0 0.2266 +0 0.1016 +0 0.1134 +0 0.1250 +0 0.1138 +0 0.0337 +0 0.1384 +0 0.0804 +0 0.1292 +0 0.2007 +0 0.1493 +0 0.0713 +0 0.1687 +0 0.0816 +0 0.0781 +1 0.7761 +0 0.0426 +0 0.1374 +0 0.5911 +0 0.0563 +0 0.1040 +0 0.1643 +0 0.0764 +0 0.0727 +0 0.0459 +0 0.1316 +0 0.0625 +0 0.0428 +0 0.2268 +0 0.0886 +0 0.1785 +0 0.1891 +0 0.1175 +0 0.0626 +0 0.0945 +0 0.1376 +0 0.0424 +0 0.1608 +0 0.0716 +0 0.2499 +0 0.0412 +0 0.1247 +0 0.0760 +0 0.1520 +0 0.0547 +0 0.1266 +0 0.0647 +0 0.2555 +0 0.0801 +0 0.0392 +0 0.0846 +0 0.2986 +0 0.0790 +0 0.0427 +0 0.1213 +0 0.0745 +0 0.1509 +0 0.0625 +0 0.1005 +0 0.0463 +0 0.0771 +0 0.1674 +0 0.1432 +0 0.1373 +0 0.1457 +0 0.0645 +0 0.1438 +0 0.1131 +0 0.1393 +0 0.0829 +0 0.0563 +0 0.1608 +0 0.4771 +0 0.1434 +0 0.0578 +0 0.1065 +0 0.1165 +0 0.0782 +0 0.1264 +0 0.0539 +0 0.0559 +0 0.0737 +0 0.0951 +0 0.1040 +0 0.1108 +0 0.1798 +0 0.0573 +0 0.1373 +0 0.1534 +0 0.0550 +0 0.1053 +0 0.1111 +0 0.0967 +0 0.0526 +0 0.1966 +0 0.1269 +0 0.7087 +0 0.0836 +0 0.0970 +0 0.1819 +0 0.1391 +0 0.0645 +0 0.1012 +0 0.3104 +0 0.0369 +0 0.2021 +0 0.1524 +0 0.1106 +0 0.1534 +0 0.2701 +0 0.0833 +0 0.0631 +0 0.0762 +0 0.1313 +0 0.0432 +1 0.7787 +0 0.1565 +0 0.1465 +0 0.0992 +0 0.1191 +0 0.0687 +0 0.3406 +0 0.1631 +0 0.2107 +0 0.1374 +1 0.1995 +0 0.1063 +0 0.1294 +0 0.0927 +0 0.2056 +0 0.0934 +0 0.0537 +0 0.7244 +0 0.4334 +0 0.0572 +0 0.1045 +0 0.1064 +0 0.0853 +0 0.3412 +0 0.0354 +0 0.0467 +0 0.0971 +0 0.1407 +0 0.1103 +0 0.2639 +0 0.2412 +0 0.0558 +0 0.0500 +0 0.1802 +0 0.1941 +0 0.1203 +0 0.1781 +0 0.2984 +0 0.1315 +0 0.1370 +0 0.0511 +0 0.0344 +0 0.1627 +0 0.2086 +0 0.0373 +0 0.1494 +0 0.0613 +0 0.3853 +0 0.0617 +0 0.1346 +0 0.0745 +0 0.0466 +0 0.0956 +0 0.0919 +0 0.0507 +0 0.0372 +0 0.0773 +0 0.1427 +0 0.1308 +0 0.0799 +0 0.1880 +0 0.0864 +0 0.2791 +0 0.0719 +0 0.2700 +0 0.1443 +0 0.2004 +0 0.0796 +0 0.0629 +0 0.0747 +0 0.3181 +0 0.0337 +0 0.1516 +0 0.0514 +0 0.2652 +0 0.0430 +0 0.0735 +0 0.1136 +0 0.1035 +0 0.2320 +0 0.0791 +0 0.5497 +0 0.2700 +0 0.1796 +0 0.0878 +0 0.2868 +0 0.3487 +0 0.0989 +0 0.0907 +0 0.2872 +0 0.0579 +0 0.1042 +0 0.7247 +0 0.5296 +0 0.1682 +0 0.0457 +0 0.0598 +0 0.2239 +0 0.0603 +0 0.2682 +0 0.0910 +0 0.1104 +0 0.1598 +0 0.0960 +0 0.0777 +0 0.0907 +0 0.0921 +0 0.6517 +0 0.0934 +0 0.0547 +0 0.1459 +0 0.1259 +0 0.0460 +0 0.0623 +0 0.0529 +0 0.3619 +0 0.0490 +0 0.1467 +1 0.7874 +0 0.1390 +0 0.2627 +0 0.0802 +0 0.0902 +0 0.0867 +0 0.1318 +0 0.0773 +0 0.3084 +0 0.1356 +0 0.1386 +0 0.0761 +0 0.0736 +0 0.2757 +0 0.0806 +0 0.1613 +0 0.4212 +0 0.1039 +0 0.1010 +0 0.0956 +0 0.0699 +0 0.2459 +0 0.0757 +0 0.1262 +0 0.0589 +0 0.0973 +0 0.0716 +0 0.0932 +0 0.0834 +0 0.1717 +0 0.0987 +0 0.0508 +0 0.0796 +0 0.0565 +0 0.1288 +0 0.0639 +0 0.1697 +0 0.1110 +0 0.0654 +0 0.1599 +0 0.1853 +0 0.1558 +0 0.0592 +0 0.1084 +0 0.1237 +0 0.0680 +0 0.0865 +0 0.0912 +0 0.1682 +0 0.2452 +0 0.1129 +0 0.1043 +0 0.0893 +0 0.1715 +0 0.1115 +0 0.0741 +0 0.0669 +0 0.0689 +0 0.2545 +0 0.1250 +0 0.1520 +0 0.0750 +1 0.7750 +0 0.0830 +0 0.0583 +0 0.1783 +0 0.2560 +0 0.0360 +0 0.2792 +0 0.1785 +0 0.1106 +0 0.0563 +0 0.1163 +0 0.2357 +0 0.2037 +0 0.0479 +0 0.1081 +0 0.6182 +0 0.0862 +0 0.0991 +0 0.3427 +0 0.0387 +0 0.0806 +0 0.0732 +0 0.2255 +0 0.0808 +0 0.0455 +0 0.2740 +0 0.0621 +0 0.0630 +0 0.6674 +0 0.0532 +0 0.0881 +0 0.1672 +0 0.0435 +0 0.1319 +0 0.1065 +0 0.3164 +0 0.0845 +0 0.0834 +0 0.0441 +0 0.0503 +0 0.0542 +0 0.1584 +0 0.1196 +0 0.2700 +0 0.1378 +0 0.0589 +0 0.0677 +0 0.0614 +0 0.0798 +0 0.0358 +0 0.1482 +0 0.0395 +0 0.1132 +0 0.0686 +0 0.1669 +0 0.1709 +0 0.0907 +0 0.1056 +0 0.5639 +0 0.1348 +0 0.0771 +0 0.0782 +0 0.1928 +0 0.0772 +0 0.3514 +0 0.1040 +0 0.1384 +0 0.1235 +0 0.1475 +0 0.0608 +0 0.7481 +0 0.1224 +0 0.2270 +0 0.0857 +0 0.0325 +0 0.0712 +0 0.1443 +0 0.0948 +0 0.0715 +0 0.0906 +0 0.1023 +0 0.2116 +0 0.0861 +0 0.1820 +0 0.0417 +0 0.0762 +0 0.0464 +0 0.0799 +1 0.7732 +0 0.1029 +0 0.2967 +0 0.1164 +0 0.1973 +0 0.1398 +0 0.0501 +0 0.0879 +0 0.3815 +0 0.0564 +0 0.0444 +0 0.0799 +0 0.1252 +0 0.1617 +0 0.2663 +0 0.0730 +0 0.2756 +0 0.0746 +0 0.0480 +0 0.0593 +0 0.0645 +0 0.0996 +0 0.0483 +0 0.0656 +0 0.0649 +0 0.0932 +0 0.0434 +0 0.1175 +0 0.1717 +0 0.0528 +0 0.1457 +0 0.1053 +0 0.0594 +0 0.7408 +0 0.3319 +0 0.1209 +0 0.0624 +0 0.1523 +0 0.4491 +0 0.1207 +0 0.0507 +0 0.1956 +0 0.2705 +0 0.0506 +0 0.1827 +0 0.0877 +0 0.1596 +0 0.1007 +0 0.1193 +0 0.1253 +0 0.0541 +0 0.0482 +0 0.0608 +0 0.6024 +0 0.0386 +0 0.0941 +0 0.3359 +0 0.1836 +0 0.0933 +0 0.0898 +0 0.0521 +0 0.0815 +0 0.1153 +0 0.0698 +0 0.2504 +0 0.1551 +0 0.1029 +0 0.2352 +0 0.2938 +0 0.0348 +0 0.1157 +0 0.0559 +0 0.0707 +0 0.0739 +0 0.0580 +0 0.2513 +0 0.1440 +0 0.3748 +0 0.0536 +0 0.0902 +0 0.0752 +0 0.0862 +0 0.1428 +1 0.7967 +0 0.0685 +0 0.1010 +0 0.2547 +0 0.0445 +0 0.0694 +0 0.0432 +0 0.0822 +0 0.2039 +0 0.1348 +0 0.1168 +0 0.0841 +0 0.1409 +0 0.4556 +0 0.3435 +0 0.0950 +0 0.1710 +0 0.7357 +0 0.6849 +0 0.1616 +0 0.4593 +0 0.0411 +0 0.1097 +0 0.0452 +0 0.0705 +0 0.0976 +0 0.0832 +0 0.0582 +0 0.1692 +0 0.0576 +0 0.0801 +0 0.2965 +0 0.3094 +0 0.1676 +0 0.3909 +0 0.0330 +0 0.0812 +0 0.1178 +0 0.0727 +0 0.1226 +0 0.1717 +0 0.1835 +0 0.2381 +0 0.3265 +0 0.1782 +0 0.1316 +0 0.1552 +0 0.1117 +0 0.2087 +0 0.1067 +0 0.1358 +0 0.0623 +0 0.0630 +0 0.1217 +0 0.6890 +0 0.0361 +0 0.0699 +0 0.1346 +0 0.0453 +0 0.0683 +0 0.0981 +0 0.0872 +0 0.1442 +0 0.0652 +0 0.1350 +0 0.0886 +0 0.0645 +0 0.2044 +0 0.1471 +0 0.0521 +0 0.2045 +0 0.1862 +0 0.1996 +0 0.0603 +1 0.8095 +0 0.0600 +0 0.0848 +0 0.1423 +0 0.1299 +0 0.0972 +0 0.0979 +0 0.0576 +0 0.0544 +0 0.0537 +0 0.1676 +0 0.2009 +0 0.0777 +0 0.0533 +0 0.4164 +0 0.2311 +0 0.1002 +0 0.2080 +0 0.0757 +0 0.1248 +0 0.1023 +0 0.0570 +0 0.3644 +0 0.1277 +0 0.1699 +0 0.0345 +0 0.0927 +0 0.1059 +1 0.8253 +0 0.0714 +0 0.1264 +0 0.1212 +0 0.0891 +0 0.1809 +0 0.0695 +0 0.0955 +0 0.2799 +0 0.1160 +0 0.5264 +0 0.0959 +0 0.1831 +0 0.1827 +0 0.1446 +0 0.0722 +0 0.1334 +0 0.1440 +0 0.0347 +0 0.0535 +0 0.0974 +0 0.0547 +0 0.0455 +0 0.1109 +0 0.6308 +0 0.0665 +0 0.2173 +0 0.0684 +0 0.2770 +0 0.1391 +0 0.0625 +0 0.0791 +0 0.1217 +0 0.0513 +0 0.0437 +0 0.1522 +0 0.0458 +0 0.2394 +0 0.0374 +0 0.0501 +0 0.1051 +0 0.3217 +0 0.0969 +0 0.1287 +0 0.0983 +0 0.0980 +0 0.1006 +0 0.0767 +0 0.1519 +1 0.3826 +0 0.0480 +0 0.0713 +0 0.0974 +0 0.2416 +0 0.0772 +0 0.1451 +0 0.1026 +0 0.1562 +0 0.1426 +0 0.1250 +0 0.2101 +0 0.0750 +0 0.1077 +0 0.0716 +0 0.0456 +0 0.1465 +0 0.0893 +0 0.1439 +0 0.1784 +0 0.0951 +0 0.0606 +0 0.3880 +0 0.1532 +0 0.0597 +0 0.2155 +0 0.5640 +0 0.2521 +0 0.2001 +0 0.1757 +0 0.1098 +0 0.6287 +0 0.2219 +0 0.0702 +1 0.7823 +0 0.0600 +0 0.0545 +0 0.1052 +0 0.1334 +0 0.3953 +0 0.1150 +0 0.1052 +0 0.0919 +0 0.5102 +0 0.0905 +0 0.0812 +0 0.0731 +0 0.1918 +1 0.7929 +0 0.0434 +0 0.3476 +0 0.4039 +0 0.0600 +0 0.1604 +0 0.0514 +0 0.1491 +0 0.3926 +0 0.0729 +0 0.1285 +0 0.0651 +0 0.5339 +0 0.1727 +0 0.0948 +0 0.0844 +1 0.8646 +0 0.0754 +0 0.0764 +0 0.0599 +0 0.1556 +0 0.0870 +0 0.0386 +0 0.1112 +0 0.2391 +0 0.1171 +0 0.0514 +0 0.0891 +0 0.0752 +0 0.0702 +0 0.0680 +0 0.5694 +0 0.2158 +0 0.1130 +0 0.1610 +0 0.0633 +0 0.0688 +0 0.0754 +0 0.0990 +0 0.0606 +0 0.1288 +0 0.1149 +1 0.8433 +0 0.1193 +0 0.0557 +0 0.1288 +0 0.1513 +0 0.1856 +0 0.1344 +0 0.0741 +0 0.0692 +0 0.1010 +0 0.1174 +0 0.0550 +0 0.0971 +0 0.2750 +0 0.3141 +0 0.0672 +0 0.0497 +0 0.1009 +0 0.1191 +0 0.1457 +0 0.0462 +0 0.1297 +0 0.0527 +0 0.0631 +0 0.0903 +0 0.0807 +0 0.0703 +0 0.4627 +0 0.1823 +0 0.0469 +0 0.0498 +0 0.0800 +0 0.0440 +1 0.7731 +0 0.1320 +0 0.1110 +0 0.0911 +0 0.1563 +0 0.0406 +0 0.0839 +0 0.1138 +0 0.0692 +0 0.1613 +0 0.2507 +0 0.1146 +0 0.1747 +0 0.0717 +0 0.1036 +0 0.3168 +1 0.8152 +0 0.1518 +1 0.8197 +0 0.0693 +0 0.4903 +0 0.1487 +0 0.0492 +0 0.2085 +0 0.0924 +0 0.0676 +0 0.1090 +0 0.6373 +0 0.2524 +0 0.1347 +0 0.1846 +0 0.0952 +0 0.2063 +0 0.1185 +0 0.0624 +0 0.4947 +0 0.0844 +0 0.0311 +0 0.0425 +0 0.0939 +0 0.1835 +0 0.1589 +0 0.0727 +0 0.1196 +0 0.1241 +0 0.0931 +0 0.1233 +0 0.0642 +0 0.0679 +0 0.0646 +0 0.0737 +0 0.1226 +0 0.0893 +0 0.4099 +0 0.1723 +0 0.0624 +0 0.0675 +0 0.0380 +1 0.7812 +0 0.0725 +0 0.1052 +0 0.0642 +0 0.1143 +0 0.0314 +0 0.1547 +0 0.1388 +0 0.0422 +0 0.1327 +0 0.0589 +0 0.5177 +0 0.0648 +0 0.0886 +0 0.5745 +0 0.0898 +0 0.2348 +0 0.0681 +0 0.1743 +0 0.1007 +0 0.0859 +0 0.0820 +0 0.0793 +0 0.0978 +0 0.4732 +0 0.0734 +0 0.1865 +0 0.0835 +0 0.2239 +0 0.1672 +0 0.0706 +0 0.0622 +0 0.2070 +0 0.1630 +0 0.2617 +0 0.0791 +0 0.0459 +0 0.1169 +0 0.0693 +0 0.0773 +1 0.8614 +0 0.1006 +0 0.3810 +0 0.0716 +0 0.1131 +0 0.1353 +0 0.0735 +0 0.1451 +0 0.1656 +0 0.7103 +0 0.1042 +0 0.2652 +0 0.1245 +0 0.1393 +0 0.0502 +0 0.3280 +0 0.0767 +0 0.1033 +1 0.8026 +0 0.0820 +0 0.1842 +0 0.0944 +0 0.2590 +0 0.0666 +0 0.1286 +0 0.0966 +0 0.0443 +0 0.1211 +1 0.8664 +0 0.0453 +0 0.0859 +0 0.1459 +0 0.1993 +0 0.0427 +0 0.2419 +1 0.8537 +0 0.7465 +0 0.0731 +0 0.0535 +0 0.3826 +0 0.5768 +0 0.0564 +0 0.1257 +0 0.0556 +0 0.2338 +0 0.0867 +0 0.0712 +0 0.1949 +0 0.5011 +1 0.8286 +0 0.0605 +0 0.1917 +0 0.1610 +0 0.1114 +0 0.0626 +0 0.0484 +0 0.0854 +0 0.0880 +0 0.0653 +0 0.1007 +0 0.1831 +0 0.5669 +0 0.1400 +0 0.2264 +0 0.0434 +0 0.2635 +0 0.1762 +0 0.0687 +0 0.2187 +0 0.0855 +0 0.0679 +0 0.1553 +0 0.1130 +0 0.1022 +0 0.0822 +0 0.2305 +0 0.0834 +0 0.4937 +0 0.1054 +0 0.0816 +0 0.1278 +0 0.0983 +0 0.1139 +0 0.2219 +0 0.1697 +0 0.2190 +0 0.0897 +0 0.1793 +0 0.0582 +0 0.0785 +0 0.0522 +0 0.2727 +0 0.3085 +0 0.2618 +0 0.1181 +0 0.1010 +0 0.0315 +0 0.2115 +1 0.7728 +0 0.0605 +0 0.0542 +0 0.1422 +0 0.1009 +0 0.1603 +0 0.1928 +0 0.2961 +0 0.0993 +0 0.0726 +0 0.0964 +0 0.1195 +0 0.0779 +0 0.0424 +0 0.0932 +0 0.0877 +0 0.0806 +0 0.0594 +0 0.0684 +0 0.3286 +0 0.2817 +0 0.0605 +1 0.8301 +0 0.1194 +0 0.1254 +0 0.0967 +0 0.1054 +0 0.1506 +0 0.3206 +0 0.1407 +0 0.0639 +0 0.1092 +0 0.2538 +0 0.0790 +0 0.1206 +0 0.1763 +0 0.0486 +0 0.0656 +0 0.1317 +0 0.0534 +0 0.0881 +0 0.0807 +0 0.0872 +0 0.0612 +0 0.0763 +0 0.0544 +0 0.0860 +0 0.2417 +0 0.1368 +0 0.0504 +0 0.0295 +0 0.2156 +0 0.0799 +0 0.0839 +0 0.0606 +0 0.0632 +0 0.0923 +0 0.2264 +0 0.0998 +0 0.0973 +0 0.1703 +0 0.0962 +0 0.3121 +0 0.1099 +0 0.0943 +0 0.2188 +0 0.0720 +0 0.0870 +0 0.0353 +0 0.0942 +0 0.0766 +0 0.1158 +0 0.1607 +1 0.8867 +0 0.1034 +0 0.6239 +0 0.0900 +0 0.1207 +0 0.0990 +0 0.0717 +0 0.2005 +0 0.1088 +0 0.0628 +0 0.0595 +0 0.1209 +0 0.4998 +0 0.0730 +0 0.1309 +0 0.1335 +0 0.1105 +0 0.1143 +0 0.1491 +0 0.1309 +0 0.2097 +0 0.0648 +0 0.1296 +0 0.1550 +0 0.1797 +0 0.1234 +0 0.0534 +0 0.0600 +0 0.2438 +0 0.1550 +0 0.0816 +0 0.0715 +0 0.0863 +0 0.0623 +0 0.0430 +0 0.0821 +0 0.0854 +0 0.0376 +0 0.1294 +0 0.0562 +0 0.4138 +0 0.2282 +0 0.0937 +0 0.0875 +0 0.1090 +0 0.5107 +0 0.3212 +0 0.0592 +0 0.1321 +0 0.1027 +0 0.0616 +0 0.0740 +0 0.1335 +0 0.2661 +0 0.1275 +0 0.1068 +0 0.1320 +0 0.1251 +0 0.1618 +0 0.0969 +0 0.0729 +0 0.1753 +0 0.0551 +0 0.0298 +0 0.0645 +0 0.1748 +0 0.1007 +0 0.1493 +0 0.0686 +0 0.0641 +0 0.6353 +0 0.0896 +0 0.4528 +0 0.1784 +0 0.2102 +0 0.0671 +0 0.0438 +0 0.1078 +0 0.2338 +0 0.1852 +0 0.0478 +0 0.0587 +0 0.6249 +0 0.0926 +0 0.0824 +0 0.1692 +0 0.1336 +0 0.1558 +0 0.0569 +0 0.0512 +0 0.1547 +0 0.0469 +0 0.1016 +1 0.7853 +0 0.0940 +0 0.1034 +0 0.1505 +0 0.1973 +0 0.1075 +0 0.2287 +0 0.0816 +0 0.1186 +0 0.1334 +0 0.2013 +0 0.0848 +0 0.1274 +0 0.0960 +0 0.1208 +0 0.2559 +0 0.1249 +0 0.0725 +0 0.0825 +0 0.0563 +0 0.0677 +0 0.6090 +0 0.1050 +0 0.2440 +0 0.3289 +0 0.1795 +0 0.4596 +0 0.4661 +0 0.0901 +0 0.1037 +0 0.0859 +0 0.2114 +0 0.0666 +0 0.2019 +0 0.1313 +0 0.0548 +0 0.0694 +0 0.1499 +0 0.1002 +0 0.0723 +0 0.1481 +0 0.0424 +0 0.2685 +0 0.0591 +0 0.1213 +0 0.0359 +0 0.0744 +0 0.1661 +0 0.1034 +0 0.1174 +0 0.0515 +0 0.1521 +0 0.1093 +0 0.0834 +0 0.0977 +0 0.0574 +0 0.0609 +0 0.1135 +0 0.1025 +0 0.2991 +0 0.0854 +0 0.1621 +0 0.1292 +0 0.2056 +0 0.3899 +0 0.1532 +0 0.0809 +0 0.0749 +0 0.0739 +0 0.0895 +0 0.1354 +0 0.0874 +0 0.1627 +0 0.0643 +0 0.7006 +0 0.1357 +0 0.4384 +0 0.2575 +0 0.0676 +0 0.1636 +0 0.0855 +0 0.1011 +0 0.0628 +0 0.0956 +0 0.2056 +0 0.3799 +0 0.0633 +0 0.1218 +0 0.1383 +1 0.8363 +0 0.1042 +0 0.0733 +0 0.0970 +0 0.2091 +0 0.0566 +0 0.2016 +0 0.2304 +0 0.1752 +0 0.0800 +0 0.1309 +0 0.5899 +0 0.1035 +0 0.0947 +0 0.0342 +0 0.1487 +0 0.0484 +0 0.1168 +0 0.2850 +0 0.0782 +0 0.2312 +0 0.1764 +0 0.1016 +0 0.0875 +0 0.1358 +0 0.0481 +0 0.0448 +0 0.0470 +0 0.1039 +0 0.1065 +0 0.1539 +0 0.0607 +0 0.0674 +0 0.2191 +0 0.0520 +0 0.1498 +0 0.0921 +0 0.4732 +0 0.1897 +0 0.1062 +0 0.1025 +0 0.1404 +0 0.1192 +0 0.4111 +0 0.0589 +0 0.1624 +0 0.0440 +0 0.1097 +0 0.0284 +0 0.2114 +0 0.1183 +0 0.2762 +0 0.4386 +0 0.0599 +0 0.0640 +0 0.0677 +0 0.2900 +0 0.0484 +0 0.1049 +0 0.1014 +0 0.4169 +0 0.1042 +0 0.0924 +0 0.2255 +0 0.0773 +0 0.0784 +0 0.0989 +0 0.1229 +0 0.0941 +0 0.0908 +0 0.0974 +0 0.1754 +0 0.1536 +0 0.1726 +0 0.1047 +0 0.0881 +0 0.0544 +0 0.2461 +0 0.1840 +0 0.1043 +0 0.0600 +0 0.1365 +0 0.1216 +0 0.4242 +0 0.0684 +0 0.1076 +0 0.1029 +0 0.0983 +0 0.1022 +0 0.1055 +0 0.1324 +0 0.1101 +0 0.0792 +0 0.1379 +0 0.1631 +0 0.6471 +0 0.0843 +0 0.0558 +0 0.1652 +0 0.1423 +1 0.8034 +0 0.3149 +0 0.0683 +0 0.0747 +0 0.0702 +0 0.0962 +0 0.1061 +0 0.0467 +0 0.1563 +0 0.1560 +0 0.0802 +0 0.0862 +0 0.1043 +0 0.7327 +0 0.0645 +0 0.0552 +0 0.1211 +0 0.0627 +0 0.1253 +0 0.1088 +0 0.0677 +0 0.0965 +0 0.1283 +0 0.0739 +0 0.1424 +0 0.0333 +0 0.0887 +0 0.0394 +0 0.2182 +0 0.1378 +0 0.1427 +0 0.0685 +1 0.7829 +0 0.0775 +0 0.0467 +0 0.7114 +0 0.0937 +0 0.1605 +0 0.0787 +0 0.1146 +0 0.0582 +0 0.1616 +0 0.1381 +0 0.0864 +0 0.1097 +0 0.1218 +0 0.2089 +0 0.0914 +0 0.0825 +0 0.0778 +0 0.0262 +0 0.1014 +0 0.0599 +0 0.2769 +0 0.0841 +0 0.1399 +1 0.7854 +0 0.0777 +0 0.0702 +0 0.3612 +0 0.3073 +0 0.0852 +0 0.2359 +0 0.1052 +0 0.0979 +0 0.3688 +0 0.0422 +0 0.1213 +0 0.1194 +0 0.4922 +0 0.1256 +0 0.0606 +0 0.2928 +0 0.2159 +0 0.0969 +0 0.2039 +0 0.0604 +0 0.1680 +0 0.2534 +0 0.1107 +0 0.1277 +0 0.1151 +0 0.0505 +0 0.0910 +0 0.0713 +0 0.1467 +0 0.2001 +0 0.0468 +0 0.2282 +0 0.1150 +0 0.2842 +0 0.0515 +0 0.0549 +0 0.6702 +0 0.0686 +0 0.0394 +0 0.0853 +0 0.1067 +0 0.2475 +0 0.1766 +0 0.0740 +0 0.3648 +0 0.0996 +0 0.0798 +0 0.1491 +0 0.0836 +0 0.3998 +0 0.1055 +0 0.0776 +0 0.2979 +0 0.2343 +0 0.1870 +0 0.1735 +0 0.0978 +0 0.1318 +0 0.0476 +0 0.3396 +0 0.1023 +0 0.2017 +0 0.0777 +0 0.0855 +0 0.0553 +0 0.0620 +0 0.1168 +0 0.0922 +0 0.1231 +0 0.7282 +0 0.0579 +0 0.1950 +0 0.2003 +0 0.0476 +0 0.0808 +0 0.0394 +0 0.3695 +0 0.1313 +0 0.1210 +0 0.1423 +0 0.0291 +0 0.1331 +0 0.5903 +0 0.0915 +0 0.1220 +0 0.1705 +0 0.1330 +0 0.0503 +0 0.1171 +0 0.2352 +0 0.0853 +0 0.1216 +0 0.1797 +0 0.2211 +0 0.0969 +0 0.2387 +0 0.1172 +0 0.0841 +0 0.1594 +0 0.0902 +0 0.1105 +0 0.7194 +0 0.3734 +0 0.0430 +0 0.1350 +0 0.1714 +0 0.0815 +0 0.0834 +0 0.2663 +0 0.0987 +0 0.1843 +0 0.0979 +0 0.0703 +0 0.1012 +0 0.0863 +0 0.1687 +0 0.0343 +0 0.1007 +0 0.1332 +0 0.0520 +0 0.0658 +0 0.0589 +0 0.0881 +0 0.0604 +0 0.1435 +0 0.0996 +0 0.2848 +0 0.0632 +0 0.1829 +0 0.1888 +0 0.2031 +0 0.1407 +0 0.1153 +0 0.0706 +0 0.0373 +0 0.2768 +0 0.0563 +0 0.0380 +0 0.0483 +0 0.1379 +0 0.0395 +0 0.1212 +0 0.2342 +0 0.1213 +0 0.1756 +0 0.0833 +1 0.8657 +0 0.1901 +0 0.1760 +0 0.1399 +0 0.0448 +0 0.1098 +0 0.1655 +0 0.2370 +0 0.1601 +0 0.0778 +0 0.1493 +0 0.0453 +0 0.0559 +0 0.1065 +0 0.0810 +0 0.6890 +0 0.0611 +0 0.0634 +0 0.1149 +0 0.1582 +1 0.8126 +0 0.0871 +0 0.1364 +0 0.3266 +0 0.0518 +0 0.1109 +0 0.6393 +0 0.2520 +0 0.0618 +0 0.1605 +0 0.0685 +0 0.0673 +1 0.7609 +0 0.1111 +0 0.1090 +0 0.2176 +0 0.3103 +0 0.1001 +0 0.3981 +0 0.1988 +0 0.2151 +0 0.1490 +0 0.0577 +1 0.7989 +0 0.2658 +0 0.1674 +0 0.0621 +0 0.0844 +0 0.1050 +0 0.0399 +0 0.0882 +0 0.0975 +0 0.0536 +0 0.0891 +0 0.1531 +0 0.0725 +0 0.1025 +0 0.6893 +0 0.1250 +0 0.0791 +0 0.4158 +0 0.0681 +0 0.1257 +0 0.0622 +0 0.0929 +0 0.1136 +0 0.1147 +0 0.1909 +0 0.0927 +0 0.0698 +0 0.1620 +0 0.1305 +0 0.1459 +0 0.0874 +0 0.1166 +0 0.1382 +0 0.2770 +0 0.0366 +0 0.0502 +0 0.2605 +0 0.0897 +0 0.2711 +0 0.0781 +0 0.2434 +0 0.1685 +0 0.1270 +0 0.1391 +0 0.1321 +0 0.2305 +0 0.0455 +0 0.0566 +0 0.1823 +0 0.1125 +0 0.0651 +0 0.1244 +0 0.0602 +0 0.0533 +0 0.1776 +0 0.0917 +0 0.0545 +0 0.1292 +0 0.1094 +0 0.0935 +0 0.0993 +0 0.1269 +0 0.1407 +0 0.0518 +0 0.0473 +0 0.3523 +0 0.3289 +0 0.0584 +0 0.1880 +0 0.1776 +0 0.1481 +0 0.1678 +0 0.0849 +0 0.2449 +0 0.0796 +0 0.1169 +0 0.1521 +0 0.0468 +0 0.3188 +0 0.2175 +0 0.0767 +0 0.2535 +0 0.1008 +0 0.0962 +0 0.1272 +0 0.0947 +0 0.0970 +0 0.0593 +0 0.0758 +0 0.2084 +0 0.1048 +0 0.0559 +0 0.1242 +0 0.0479 +0 0.1280 +0 0.1355 +0 0.1252 +0 0.1067 +0 0.1363 +0 0.0709 +1 0.7992 +0 0.0358 +0 0.0714 +0 0.0760 +0 0.3549 +0 0.0414 +0 0.0712 +0 0.0681 +0 0.0463 +0 0.1386 +0 0.0952 +0 0.0985 +0 0.0938 +0 0.1059 +0 0.0799 +0 0.0693 +0 0.1183 +0 0.0571 +0 0.1748 +0 0.0612 +0 0.0359 +0 0.0752 +0 0.4192 +0 0.3935 +0 0.0553 +0 0.0835 +0 0.2168 +0 0.2364 +0 0.0589 +0 0.1759 +0 0.0644 +0 0.1671 +0 0.3585 +0 0.1352 +0 0.0551 +0 0.0574 +0 0.0483 +0 0.0878 +0 0.0833 +0 0.3369 +0 0.1185 +0 0.1277 +0 0.0888 +0 0.0813 +0 0.1341 +0 0.1394 +0 0.1223 +1 0.7703 +0 0.0651 +0 0.1515 +0 0.2777 +0 0.5051 +0 0.4109 +1 0.7927 +0 0.0916 +0 0.1221 +0 0.2122 +0 0.1217 +0 0.0913 +0 0.1254 +0 0.0355 +0 0.1209 +0 0.0860 +0 0.0489 +0 0.2124 +1 0.8164 +0 0.0881 +0 0.0918 +0 0.1697 +0 0.1268 +0 0.6348 +0 0.1030 +0 0.0719 +0 0.1751 +0 0.0333 +0 0.5869 +0 0.7090 +0 0.0579 +0 0.2138 +0 0.2232 +0 0.2050 +0 0.0921 +0 0.0930 +0 0.1758 +0 0.0899 +0 0.2061 +0 0.2515 +0 0.3167 +0 0.1135 +0 0.1020 +0 0.1607 +0 0.1043 +0 0.1842 +0 0.0659 +0 0.1854 +0 0.1189 +0 0.3093 +0 0.0426 +0 0.1089 +0 0.1690 +0 0.0936 +0 0.1182 +0 0.4153 +0 0.0668 +0 0.1023 +0 0.0740 +0 0.0712 +0 0.0400 +0 0.0811 +0 0.0914 +0 0.0743 +0 0.1118 +0 0.4634 +0 0.0910 +0 0.0749 +0 0.1275 +0 0.3726 +0 0.1261 +0 0.0595 +0 0.0588 +0 0.0781 +0 0.0869 +0 0.0747 +0 0.1230 +0 0.0944 +0 0.0366 +0 0.0364 +0 0.1831 +0 0.1465 +0 0.0999 +0 0.6311 +0 0.0624 +0 0.0769 +0 0.0537 +0 0.0900 +0 0.0874 +0 0.0686 +0 0.0980 +0 0.0756 +0 0.1842 +0 0.1361 +0 0.7342 +0 0.1109 +0 0.3683 +0 0.0794 +0 0.0541 +0 0.1077 +0 0.0459 +0 0.0521 +0 0.0795 +0 0.1099 +0 0.0867 +0 0.1098 +0 0.1249 +0 0.0802 +0 0.2109 +0 0.0847 +0 0.2119 +0 0.1003 +0 0.1152 +0 0.0980 +0 0.0472 +0 0.1181 +0 0.1055 +0 0.0630 +0 0.2018 +0 0.2306 +0 0.2359 +0 0.0394 +0 0.0876 +0 0.2008 +0 0.1003 +0 0.3901 +0 0.0991 +0 0.1433 +0 0.1336 +0 0.0580 +0 0.2364 +0 0.0941 +1 0.7670 +0 0.1486 +0 0.0503 +0 0.1283 +0 0.1065 +0 0.2500 +0 0.0912 +0 0.0628 +0 0.1827 +0 0.1019 +0 0.1011 +0 0.1806 +0 0.0740 +0 0.0853 +0 0.1839 +0 0.1551 +0 0.1695 +0 0.0744 +0 0.2184 +0 0.0952 +0 0.0833 +1 0.8356 +0 0.1198 +0 0.1019 +0 0.1990 +0 0.1576 +0 0.1356 +0 0.0855 +0 0.2137 +0 0.0659 +0 0.1403 +0 0.1173 +0 0.1258 +0 0.1110 +0 0.1168 +0 0.1071 +0 0.0571 +0 0.0383 +0 0.0919 +0 0.0667 +0 0.2896 +0 0.0871 +0 0.0439 +0 0.0458 +0 0.0951 +0 0.0773 +0 0.1006 +0 0.1862 +0 0.1121 +0 0.1133 +0 0.2986 +0 0.0881 +0 0.0887 +0 0.0463 +0 0.0521 +0 0.1927 +0 0.3785 +1 0.8773 +0 0.0517 +0 0.1040 +0 0.0814 +0 0.1580 +0 0.0413 +0 0.7280 +0 0.1989 +0 0.0911 +0 0.0463 +0 0.0891 +0 0.5387 +0 0.1148 +0 0.1248 +0 0.0360 +0 0.0550 +0 0.1592 +0 0.1165 +0 0.0568 +0 0.1501 +0 0.0535 +0 0.0885 +0 0.1054 +0 0.2222 +0 0.0933 +1 0.7578 +0 0.0977 +0 0.0381 +0 0.3258 +0 0.0681 +0 0.0881 +0 0.1710 +0 0.0892 +0 0.0440 +0 0.0626 +0 0.0894 +0 0.6976 +0 0.0893 +0 0.3820 +0 0.0518 +0 0.2856 +0 0.1684 +0 0.0832 +0 0.3258 +0 0.0550 +0 0.0794 +0 0.0782 +0 0.0646 +0 0.0506 +0 0.2636 +0 0.0589 +0 0.1130 +0 0.2691 +0 0.1545 +0 0.1086 +0 0.1112 +0 0.1659 +0 0.0366 +0 0.2356 +0 0.1849 +0 0.0800 +0 0.0613 +0 0.0825 +0 0.0654 +0 0.6115 +0 0.0740 +0 0.0780 +0 0.1481 +0 0.0627 +0 0.0601 +0 0.1145 +0 0.1297 +0 0.2836 +0 0.3670 +0 0.0539 +0 0.1723 +0 0.2016 +0 0.2133 +0 0.0835 +0 0.0760 +0 0.0656 +0 0.1344 +0 0.1888 +0 0.0537 +0 0.1932 +0 0.0956 +0 0.1320 +0 0.0963 +0 0.1646 +0 0.1928 +0 0.0602 +0 0.1293 +0 0.2057 +0 0.0575 +0 0.1737 +0 0.0523 +0 0.0573 +0 0.0758 +0 0.0853 +0 0.0801 +0 0.1172 +0 0.0736 +0 0.0659 +0 0.6721 +0 0.1705 +0 0.1405 +0 0.0781 +0 0.0628 +0 0.0872 +0 0.0362 +0 0.2758 +0 0.0716 +0 0.1499 +0 0.0880 +0 0.1872 +0 0.1117 +0 0.2200 +0 0.0905 +0 0.3790 +0 0.0431 +0 0.1199 +0 0.1021 +0 0.1371 +0 0.5958 +0 0.1232 +0 0.2054 +0 0.0509 +0 0.0507 +0 0.0654 +0 0.4612 +0 0.0518 +0 0.0765 +0 0.2675 +0 0.5574 +0 0.2049 +0 0.1802 +0 0.2409 +0 0.0928 +0 0.1223 +0 0.0592 +0 0.0769 +0 0.1080 +0 0.5189 +0 0.0532 +0 0.1436 +0 0.0744 +0 0.1004 +0 0.1069 +0 0.0607 +1 0.8734 +0 0.0549 +0 0.0567 +0 0.1192 +0 0.0895 +0 0.1327 +0 0.1123 +0 0.1373 +0 0.1138 +0 0.1313 +0 0.0705 +0 0.0886 +0 0.1190 +0 0.0982 +0 0.2533 +0 0.0900 +0 0.0896 +0 0.1052 +0 0.0750 +0 0.0346 +0 0.0918 +0 0.0569 +0 0.1780 +0 0.0871 +0 0.0478 +0 0.1132 +0 0.1352 +0 0.3118 +0 0.1349 +0 0.0382 +0 0.0705 +0 0.2052 +0 0.1051 +0 0.0984 +0 0.2233 +1 0.7600 +0 0.0810 +0 0.1304 +0 0.1207 +0 0.1477 +0 0.1135 +0 0.0912 +0 0.0672 +0 0.1161 +0 0.0797 +0 0.0482 +0 0.0507 +0 0.3773 +0 0.1667 +0 0.0635 +0 0.0676 +0 0.1174 +0 0.0645 +0 0.1191 +0 0.0652 +0 0.1613 +0 0.0761 +0 0.0827 +0 0.1030 +0 0.0449 +0 0.3883 +0 0.0362 +0 0.1150 +0 0.1634 +0 0.1101 +0 0.1252 +0 0.1077 +0 0.0501 +0 0.1105 +0 0.0818 +0 0.1618 +0 0.0746 +0 0.0660 +0 0.0850 +0 0.0726 +0 0.1356 +0 0.1914 +0 0.0351 +0 0.5662 +0 0.2091 +0 0.3971 +0 0.6536 +0 0.2107 +0 0.0742 +0 0.1835 +0 0.0895 +0 0.1081 +0 0.0977 +0 0.0618 +0 0.2073 +0 0.4887 +0 0.1106 +0 0.0952 +0 0.0501 +0 0.0925 +0 0.1439 +0 0.1135 +0 0.1594 +0 0.2204 +0 0.2122 +0 0.0497 +0 0.6852 +0 0.1874 +0 0.0487 +0 0.0611 +0 0.0613 +0 0.0719 +0 0.0894 +0 0.0628 +0 0.0837 +0 0.0708 +0 0.2183 +0 0.1107 +0 0.1444 +0 0.0984 +0 0.0498 +0 0.1004 +0 0.0811 +0 0.0480 +0 0.0599 +0 0.0585 +0 0.2483 +0 0.1316 +0 0.0619 +0 0.0991 +0 0.1088 +0 0.0902 +0 0.0908 +0 0.1914 +0 0.0757 +0 0.1711 +0 0.0667 +0 0.4045 +0 0.2798 +0 0.1542 +0 0.2444 +0 0.0591 +0 0.1030 +0 0.7052 +0 0.3739 +0 0.0552 +0 0.1194 +0 0.0960 +0 0.0626 +0 0.2925 +0 0.1063 +0 0.1315 +0 0.0588 +0 0.0885 +0 0.0951 +0 0.3976 +0 0.1873 +0 0.1566 +0 0.1469 +0 0.6656 +0 0.0946 +0 0.1120 +0 0.1696 +0 0.0867 +0 0.1284 +0 0.0516 +0 0.0529 +0 0.0583 +0 0.0571 +0 0.1894 +0 0.0522 +0 0.1433 +0 0.1105 +0 0.0942 +0 0.2104 +0 0.0610 +0 0.2014 +0 0.0878 +0 0.0384 +0 0.1961 +0 0.6641 +0 0.0585 +0 0.1051 +0 0.0759 +0 0.0735 +0 0.3294 +0 0.2422 +0 0.1267 +0 0.1625 +0 0.1168 +0 0.0562 +0 0.1993 +0 0.0863 +0 0.2167 +0 0.3102 +0 0.1369 +0 0.0744 +0 0.1444 +0 0.0907 +0 0.0796 +0 0.0422 +0 0.2204 +0 0.2348 +0 0.0336 +0 0.2281 +0 0.1236 +0 0.1215 +0 0.1451 +0 0.3641 +0 0.2235 +0 0.0728 +0 0.0925 +0 0.0995 +0 0.0840 +0 0.1534 +0 0.0769 +0 0.1294 +0 0.1811 +0 0.0611 +0 0.0464 +0 0.2277 +0 0.1100 +0 0.3954 +0 0.1235 +0 0.0772 +0 0.0423 +0 0.3336 +0 0.1572 +0 0.0906 +0 0.0621 +0 0.1214 +0 0.0915 +0 0.1730 +0 0.1036 +0 0.0725 +0 0.0514 +0 0.0870 +0 0.0567 +0 0.2552 +0 0.1766 +0 0.2015 +0 0.1565 +0 0.1166 +0 0.0753 +0 0.1566 +0 0.1211 +0 0.0913 +0 0.1132 +0 0.0853 +0 0.0811 +0 0.0849 +0 0.3759 +0 0.1899 +0 0.0567 +0 0.0865 +0 0.0700 +0 0.1851 +0 0.0759 +0 0.1184 +0 0.1437 +0 0.0660 +0 0.1094 +0 0.1063 +0 0.0532 +0 0.1878 +0 0.0656 +0 0.2239 +0 0.2713 +0 0.1995 +0 0.1653 +0 0.0687 +0 0.0767 +0 0.0923 +0 0.1467 +0 0.2837 +0 0.1323 +0 0.0701 +0 0.2352 +0 0.0979 +0 0.0340 +0 0.0588 +0 0.1047 +0 0.1593 +0 0.1106 +0 0.0371 +0 0.2010 +0 0.7317 +0 0.2261 +0 0.2455 +0 0.3395 +0 0.0385 +0 0.1054 +0 0.1855 +0 0.0586 +0 0.1059 +0 0.2900 +0 0.1466 +0 0.1604 +0 0.0995 +0 0.0942 +0 0.1165 +0 0.1656 +0 0.0728 +0 0.0485 +1 0.8328 +0 0.6703 +0 0.4766 +0 0.0924 +0 0.0816 +0 0.1213 +0 0.0429 +0 0.2197 +0 0.3008 +0 0.1632 +0 0.1827 +0 0.0467 +0 0.1249 +0 0.1107 +1 0.8458 +0 0.0924 +0 0.0689 +0 0.1444 +0 0.0410 +0 0.0406 +0 0.1026 +0 0.0985 +0 0.0676 +0 0.3196 +0 0.0902 +0 0.2406 +0 0.0933 +0 0.1802 +0 0.1754 +0 0.1453 +0 0.1444 +0 0.0983 +0 0.0854 +0 0.0446 +0 0.0777 +0 0.0676 +0 0.0575 +0 0.1224 +0 0.1324 +0 0.0474 +0 0.2318 +0 0.0896 +0 0.2108 +0 0.0771 +0 0.1014 +0 0.0329 +0 0.3982 +0 0.2027 +0 0.0873 +0 0.0956 +0 0.0979 +0 0.1594 +0 0.0518 +0 0.0500 +0 0.0797 +0 0.0777 +0 0.3592 +0 0.1224 +0 0.0709 +0 0.0501 +0 0.2267 +0 0.1025 +0 0.0653 +0 0.1372 +0 0.1744 +0 0.0593 +0 0.0701 +0 0.2635 +0 0.0712 +0 0.2465 +0 0.1635 +0 0.2304 +0 0.2004 +0 0.3067 +0 0.1008 +0 0.0371 +0 0.1148 +0 0.0649 +0 0.1390 +0 0.1071 +0 0.0767 +0 0.0721 +0 0.0408 +0 0.1326 +0 0.0738 +0 0.1016 +0 0.1114 +0 0.1483 +0 0.2208 +0 0.1286 +0 0.0596 +0 0.0864 +0 0.0740 +0 0.1237 +0 0.1986 +0 0.1661 +0 0.0925 +0 0.0786 +0 0.0586 +0 0.1538 +0 0.0866 +0 0.1320 +0 0.1754 +0 0.1163 +0 0.0693 +0 0.0991 +0 0.2007 +0 0.0695 +0 0.1347 +0 0.0616 +0 0.4722 +0 0.0646 +0 0.0482 +0 0.1947 +0 0.0729 +0 0.2860 +0 0.0940 +0 0.1298 +0 0.1045 +0 0.2162 +0 0.1072 +0 0.0641 +0 0.0921 +0 0.1829 +0 0.1817 +0 0.0912 +0 0.1701 +0 0.0638 +0 0.0614 +0 0.0959 +0 0.2403 +0 0.2707 +0 0.1059 +0 0.0532 +0 0.1217 +0 0.1060 +0 0.1124 +0 0.0771 +0 0.4139 +0 0.0596 +0 0.1157 +0 0.1190 +0 0.4574 +0 0.0567 +0 0.1149 +0 0.0618 +0 0.0741 +0 0.1001 +0 0.1877 +0 0.1747 +0 0.1739 +0 0.0896 +0 0.1022 +0 0.3227 +0 0.0522 +0 0.0891 +0 0.1279 +0 0.0697 +0 0.1469 +0 0.0936 +0 0.1219 +0 0.0833 +0 0.0423 +0 0.2637 +0 0.0988 +0 0.0933 +0 0.4415 +0 0.0449 +0 0.1423 +0 0.0417 +0 0.0452 +0 0.1758 +0 0.1038 +0 0.1471 +0 0.3587 +0 0.1884 +1 0.7559 +0 0.1706 +0 0.2502 +0 0.1081 +0 0.1696 +0 0.0756 +0 0.1314 +0 0.0794 +0 0.0849 +0 0.2876 +0 0.1163 +0 0.1528 +0 0.0438 +0 0.1615 +0 0.0707 +0 0.1615 +0 0.1818 +0 0.0582 +0 0.1029 +0 0.1220 +0 0.2187 +0 0.0983 +0 0.0786 +1 0.8925 +0 0.1758 +0 0.2882 +0 0.0578 +0 0.2670 +0 0.0814 +0 0.0914 +0 0.2825 +0 0.3291 +0 0.0454 +0 0.1426 +0 0.0369 +0 0.0751 +0 0.1211 +0 0.0686 +0 0.1490 +0 0.0831 +0 0.1329 +0 0.2027 +0 0.0656 +0 0.0412 +0 0.1076 +0 0.1307 +0 0.0856 +0 0.0603 +0 0.2367 +0 0.2199 +1 0.7657 +0 0.1850 +0 0.0676 +0 0.3610 +0 0.0930 +0 0.0992 +0 0.1636 +0 0.3306 +0 0.1437 +0 0.0702 +0 0.0717 +0 0.3082 +0 0.4317 +0 0.1033 +0 0.1352 +0 0.0605 +0 0.1188 +0 0.2624 +0 0.0677 +0 0.1285 +0 0.0927 +0 0.0847 +0 0.0978 +0 0.0673 +0 0.0560 +0 0.3330 +0 0.1170 +0 0.2049 +0 0.0835 +0 0.2759 +0 0.0915 +0 0.3544 +0 0.0675 +0 0.0777 +0 0.0785 +0 0.1090 +0 0.0799 +0 0.2119 +0 0.2175 +0 0.1011 +0 0.1296 +0 0.2152 +0 0.2320 +0 0.0810 +0 0.0902 +0 0.0994 +0 0.1304 +0 0.1972 +0 0.0624 +0 0.2041 +0 0.0980 +0 0.0438 +0 0.0881 +0 0.1799 +0 0.1017 +0 0.0646 +0 0.2024 +0 0.1442 +0 0.2897 +0 0.1147 +0 0.0493 +0 0.1718 +0 0.1952 +0 0.0373 +0 0.0712 +0 0.0484 +0 0.2961 +0 0.0724 +0 0.0664 +0 0.1401 +0 0.0621 +0 0.1021 +0 0.0950 +0 0.1771 +0 0.0967 +0 0.1112 +0 0.1442 +0 0.0685 +0 0.0900 +0 0.4353 +0 0.0640 +0 0.0600 +0 0.0392 +0 0.2949 +0 0.1337 +0 0.1988 +0 0.1530 +0 0.0624 +0 0.5321 +0 0.0731 +0 0.0863 +0 0.0892 +0 0.0822 +0 0.0891 +0 0.1307 +0 0.3970 +0 0.0850 +0 0.0801 +0 0.1702 +0 0.0778 +0 0.0570 +0 0.1820 +0 0.1750 +0 0.1749 +0 0.0453 +0 0.0971 +0 0.7302 +0 0.0974 +0 0.0824 +0 0.2642 +0 0.1267 +0 0.1372 +0 0.0715 +0 0.2968 +0 0.1173 +0 0.0969 +0 0.1488 +0 0.2403 +0 0.2111 +0 0.1857 +0 0.1751 +0 0.1083 +0 0.0806 +0 0.0758 +0 0.0451 +0 0.1498 +0 0.0764 +0 0.1316 +0 0.2310 +0 0.0677 +0 0.0574 +0 0.0884 +0 0.2131 +0 0.2847 +0 0.1214 +0 0.0896 +0 0.1388 +0 0.3560 +0 0.1045 +0 0.0316 +0 0.0387 +0 0.1159 +0 0.0862 +0 0.1008 +0 0.0991 +0 0.1653 +0 0.0502 +0 0.0522 +0 0.1376 +0 0.1982 +0 0.7162 +0 0.1189 +0 0.0807 +0 0.0842 +0 0.2651 +0 0.2583 +1 0.8098 +0 0.0682 +0 0.0828 +0 0.0840 +0 0.0950 +0 0.0908 +0 0.1186 +0 0.0766 +0 0.0277 +0 0.1292 +0 0.1758 +0 0.0960 +0 0.2177 +0 0.0983 +0 0.1634 +0 0.0446 +0 0.1187 +0 0.0707 +0 0.0496 +0 0.1079 +0 0.1787 +0 0.3000 +0 0.0710 +0 0.0677 +0 0.1336 +0 0.2450 +0 0.0367 +0 0.2010 +0 0.0715 +0 0.1145 +0 0.1317 +0 0.0534 +0 0.0779 +0 0.0566 +0 0.1051 +0 0.2925 +0 0.0664 +0 0.2628 +0 0.2495 +0 0.0760 +0 0.0439 +0 0.2137 +0 0.2197 +0 0.2091 +0 0.1056 +0 0.0417 +0 0.0535 +0 0.1375 +0 0.0654 +0 0.2032 +0 0.1110 +0 0.0365 +0 0.2906 +0 0.0959 +0 0.1076 +0 0.1408 +0 0.0929 +0 0.0674 +0 0.1125 +0 0.0368 +0 0.1738 +0 0.1239 +0 0.0365 +0 0.0534 +0 0.0656 +0 0.0522 +0 0.1756 +0 0.0743 +0 0.0940 +0 0.0787 +0 0.1363 +0 0.5738 +0 0.0721 +0 0.1575 +0 0.2187 +0 0.0960 +0 0.1484 +0 0.1664 +0 0.0430 +0 0.0678 +0 0.1132 +0 0.1015 +0 0.0796 +0 0.3138 +0 0.1087 +0 0.1119 +0 0.0685 +0 0.0847 +0 0.0816 +0 0.0368 +0 0.1483 +0 0.0715 +0 0.2583 +0 0.0517 +0 0.0741 +0 0.0329 +0 0.0648 +0 0.1637 +0 0.1419 +0 0.2734 +0 0.0402 +0 0.1098 +0 0.1534 +0 0.1700 +0 0.1259 +0 0.1501 +0 0.0493 +0 0.1880 +0 0.0744 +0 0.3169 +0 0.1846 +0 0.1156 +0 0.1096 +0 0.3853 +0 0.0747 +0 0.1643 +0 0.0886 +0 0.0801 +0 0.2483 +0 0.0798 +0 0.1161 +0 0.1945 +0 0.1513 +0 0.1496 +0 0.0380 +0 0.0574 +0 0.1593 +0 0.0752 +0 0.3086 +0 0.0846 +0 0.1292 +0 0.1176 +0 0.1440 +0 0.1102 +0 0.1125 +0 0.1267 +0 0.2224 +0 0.0757 +0 0.1902 +0 0.1305 +0 0.1262 +0 0.0884 +0 0.1282 +0 0.0940 +0 0.0671 +0 0.1493 +0 0.1314 +0 0.0630 +0 0.1298 +0 0.0901 +0 0.0737 +0 0.1696 +0 0.1369 +0 0.0434 +0 0.1344 +0 0.0566 +0 0.0479 +0 0.2463 +0 0.1202 +0 0.0885 +0 0.6907 +0 0.1973 +0 0.0735 +0 0.0490 +0 0.0647 +0 0.0936 +0 0.0603 +0 0.0824 +0 0.1441 +0 0.0940 +0 0.2009 +1 0.8274 +0 0.1910 +0 0.0710 +0 0.0625 +0 0.1486 +0 0.1228 +0 0.0838 +0 0.2011 +0 0.1118 +0 0.1309 +0 0.0857 +0 0.0693 +0 0.0484 +0 0.0990 +0 0.2625 +0 0.0953 +0 0.1650 +0 0.1240 +0 0.0612 +0 0.1813 +0 0.0861 +0 0.0995 +0 0.6139 +0 0.0571 +0 0.0711 +0 0.2052 +0 0.1912 +0 0.1388 +0 0.1524 +0 0.0532 +0 0.1053 +0 0.1011 +0 0.0800 +0 0.1886 +0 0.0943 +0 0.1102 +0 0.5354 +0 0.2867 +0 0.0720 +0 0.2158 +0 0.1376 +0 0.1206 +0 0.0536 +0 0.2013 +0 0.0489 +0 0.0800 +0 0.3120 +0 0.0517 +0 0.0852 +0 0.0764 +0 0.1013 +0 0.0728 +0 0.1368 +0 0.1019 +0 0.0822 +0 0.1330 +0 0.1160 +0 0.0612 +0 0.0663 +0 0.0827 +0 0.1088 +0 0.4843 +0 0.0638 +0 0.0965 +0 0.1528 +0 0.1025 +0 0.1021 +0 0.1069 +0 0.0585 +0 0.1390 +0 0.5098 +0 0.0989 +0 0.7434 +0 0.1448 +0 0.2238 +0 0.1271 +0 0.1059 +0 0.0998 +0 0.0344 +0 0.0631 +0 0.0577 +0 0.0759 +0 0.3345 +0 0.0926 +0 0.1758 +0 0.0554 +0 0.0800 +0 0.1597 +0 0.1362 +0 0.1174 +0 0.0670 +0 0.1543 +0 0.1861 +0 0.1212 +0 0.1139 +0 0.1653 +0 0.0924 +0 0.1114 +1 0.7678 +0 0.2858 +0 0.0751 +0 0.0661 +0 0.1215 +0 0.0581 +0 0.1955 +0 0.2100 +0 0.0931 +0 0.1337 +0 0.2304 +0 0.3848 +0 0.0707 +0 0.0950 +0 0.0534 +0 0.0860 +0 0.2189 +0 0.3223 +0 0.0903 +0 0.1420 +0 0.1888 +0 0.0966 +0 0.1323 +0 0.1339 +0 0.0579 +0 0.1060 +0 0.0865 +0 0.0431 +0 0.0341 +0 0.1624 +0 0.0910 +0 0.1299 +0 0.0822 +0 0.1439 +0 0.1161 +0 0.0565 +0 0.1006 +0 0.0449 +0 0.0757 +0 0.5883 +0 0.1600 +0 0.1283 +0 0.1899 +0 0.0983 +0 0.0497 +0 0.0760 +0 0.0848 +0 0.1255 +0 0.3813 +0 0.2327 +0 0.2110 +0 0.0584 +0 0.1188 +0 0.0880 +0 0.1299 +0 0.0309 +0 0.1619 +1 0.8155 +0 0.0915 +0 0.1023 +0 0.0884 +0 0.0352 +0 0.0615 +0 0.0695 +0 0.0808 +0 0.0468 +0 0.0564 +0 0.2412 +0 0.1060 +0 0.3036 +0 0.2091 +0 0.0860 +0 0.1301 +0 0.1636 +0 0.1374 +0 0.0455 +0 0.0568 +0 0.0574 +0 0.0844 +0 0.1897 +0 0.0803 +0 0.0852 +0 0.0808 +0 0.2563 +0 0.1455 +0 0.1720 +0 0.1479 +0 0.2276 +0 0.1581 +0 0.1474 +0 0.1200 +0 0.2348 +0 0.1736 +0 0.3400 +0 0.1191 +0 0.1392 +0 0.2523 +0 0.0562 +0 0.3940 +0 0.1561 +1 0.7844 +0 0.5652 +0 0.0451 +0 0.0982 +0 0.2088 +0 0.2177 +0 0.1333 +0 0.0528 +0 0.0889 +0 0.1757 +0 0.0667 +0 0.1145 +0 0.0552 +0 0.2156 +0 0.3546 +0 0.1866 +0 0.1388 +0 0.0592 +0 0.0516 +0 0.1677 +0 0.1025 +0 0.1866 +0 0.0679 +0 0.3861 +0 0.0686 +0 0.0618 +0 0.0492 +0 0.1439 +0 0.1950 +0 0.0699 +0 0.3867 +0 0.1291 +0 0.0745 +0 0.0797 +0 0.2254 +0 0.0765 +0 0.0809 +0 0.1974 +0 0.1689 +0 0.1038 +0 0.2057 +0 0.0479 +0 0.1499 +0 0.0847 +0 0.0686 +0 0.0913 +0 0.1046 +0 0.0617 +0 0.0460 +0 0.2551 +0 0.1606 +0 0.0774 +0 0.2221 +0 0.0928 +0 0.2465 +0 0.0576 +0 0.5220 +0 0.2932 +0 0.3114 +0 0.0722 +0 0.0642 +0 0.1552 +0 0.0772 +0 0.0581 +0 0.1526 +0 0.0804 +0 0.1382 +0 0.1026 +0 0.1172 +0 0.1695 +0 0.0755 +0 0.1865 +0 0.5168 +0 0.2759 +0 0.5679 +0 0.1172 +0 0.0813 +0 0.1257 +0 0.1044 +0 0.1244 +0 0.0929 +0 0.0642 +0 0.0954 +0 0.1668 +0 0.1791 +0 0.1536 +0 0.1398 +0 0.0349 +0 0.0914 +0 0.1241 +0 0.0621 +0 0.0972 +0 0.0474 +0 0.2757 +0 0.2084 +0 0.0645 +0 0.1802 +0 0.1123 +0 0.0973 +0 0.1181 +0 0.0623 +0 0.1025 +0 0.3984 +0 0.1272 +0 0.2336 +0 0.1054 +0 0.1222 +0 0.1655 +0 0.1098 +0 0.0568 +0 0.0381 +0 0.0603 +0 0.5069 +0 0.0562 +0 0.0723 +0 0.0653 +0 0.0897 +0 0.0825 +0 0.0795 +0 0.1310 +0 0.1464 +0 0.0938 +0 0.2019 +0 0.1925 +0 0.2414 +0 0.0874 +0 0.1074 +0 0.1641 +0 0.1776 +0 0.1799 +0 0.0851 +0 0.1389 +0 0.1667 +0 0.1136 +0 0.1833 +0 0.0637 +0 0.4688 +0 0.2707 +0 0.0935 +0 0.0506 +0 0.2108 +0 0.1320 +0 0.3376 +0 0.1010 +0 0.0968 +0 0.0916 +0 0.0845 +0 0.0832 +0 0.0789 +0 0.0916 +0 0.0552 +0 0.0391 +0 0.0672 +0 0.0523 +0 0.2330 +0 0.0822 +0 0.0817 +0 0.3311 +0 0.2322 +0 0.0332 +0 0.1377 +0 0.0966 +0 0.1329 +0 0.1057 +0 0.0653 +0 0.2204 +0 0.2080 +0 0.1278 +0 0.0541 +0 0.0926 +0 0.0479 +0 0.2020 +0 0.0828 +0 0.0461 +0 0.0881 +0 0.1787 +0 0.2179 +0 0.0969 +0 0.1174 +0 0.1437 +0 0.0868 +0 0.0791 +0 0.0569 +0 0.4889 +0 0.0705 +0 0.1586 +0 0.1734 +0 0.2012 +0 0.4024 +0 0.0464 +0 0.2067 +0 0.0682 +0 0.1572 +1 0.8009 +0 0.0916 +0 0.1226 +0 0.2015 +0 0.1940 +0 0.0796 +0 0.0400 +0 0.0561 +0 0.0581 +0 0.2037 +0 0.0882 +0 0.1017 +0 0.0649 +0 0.1049 +0 0.2102 +1 0.7978 +0 0.0501 +0 0.0944 +0 0.0668 +0 0.0673 +0 0.6910 +0 0.0794 +0 0.1329 +0 0.0675 +0 0.0351 +0 0.0964 +0 0.1456 +0 0.0794 +0 0.2081 +0 0.2661 +0 0.1313 +0 0.0941 +0 0.0748 +0 0.1344 +0 0.2452 +0 0.0624 +0 0.1188 +0 0.0394 +1 0.8621 +0 0.0887 +0 0.0867 +0 0.1468 +0 0.1319 +0 0.1176 +0 0.0826 +0 0.0999 +0 0.0468 +0 0.0750 +0 0.0535 +0 0.0654 +0 0.0929 +0 0.0777 +0 0.1612 +0 0.0510 +0 0.1113 +0 0.0555 +0 0.1169 +0 0.1445 +0 0.1487 +0 0.1975 +0 0.0766 +0 0.1597 +0 0.0621 +0 0.2157 +0 0.0419 +0 0.0536 +0 0.1277 +0 0.1090 +1 0.7971 +0 0.2370 +0 0.2188 +0 0.3067 +0 0.3429 +0 0.1196 +0 0.0540 +0 0.0665 +0 0.4820 +0 0.6529 +0 0.0635 +0 0.0827 +0 0.5993 +0 0.0753 +0 0.0612 +0 0.2060 +0 0.1200 +0 0.0825 +0 0.0494 +0 0.0522 +0 0.0513 +0 0.0792 +0 0.1318 +0 0.0517 +0 0.1015 +0 0.0581 +0 0.1033 +0 0.0686 +0 0.3001 +0 0.0436 +0 0.2372 +0 0.0988 +0 0.0788 +0 0.2391 +0 0.1102 +0 0.1263 +0 0.7127 +0 0.0614 +0 0.1413 +0 0.1088 +0 0.1466 +0 0.2268 +0 0.5037 +0 0.0973 +0 0.0542 +0 0.0667 +0 0.1890 +0 0.0630 +0 0.0727 +0 0.2829 +0 0.2005 +0 0.3920 +0 0.1347 +0 0.2467 +0 0.0904 +0 0.0733 +0 0.1249 +0 0.0584 +0 0.1035 +0 0.0784 +0 0.0679 +0 0.1544 +0 0.0852 +0 0.0565 +0 0.0605 +0 0.1255 +0 0.2935 +0 0.1801 +0 0.0797 +0 0.0715 +0 0.2003 +0 0.0977 +0 0.0465 +0 0.0694 +0 0.0766 +0 0.0806 +0 0.0420 +0 0.1963 +0 0.0550 +0 0.4063 +0 0.2183 +0 0.0716 +0 0.2323 +0 0.1364 +0 0.0556 +0 0.0961 +0 0.2147 +0 0.1035 +0 0.1651 +0 0.0924 +0 0.2171 +0 0.1080 +0 0.0507 +0 0.1060 +0 0.0995 +0 0.1782 +0 0.1293 +0 0.1160 +0 0.0945 +0 0.0882 +0 0.1255 +0 0.0928 +0 0.1637 +0 0.2454 +0 0.0639 +0 0.6236 +0 0.2653 +0 0.0295 +0 0.0665 +0 0.1380 +0 0.1565 +0 0.1163 +0 0.0815 +0 0.3663 +0 0.1988 +0 0.0577 +0 0.1717 +0 0.2485 +1 0.7870 +0 0.2506 +0 0.2885 +0 0.0415 +0 0.0788 +0 0.2767 +0 0.2690 +0 0.0374 +0 0.1749 +0 0.0869 +1 0.7575 +0 0.2402 +0 0.1384 +0 0.1390 +0 0.0585 +0 0.1050 +0 0.0393 +0 0.1842 +0 0.1021 +0 0.1473 +0 0.1309 +0 0.0564 +0 0.1972 +0 0.1266 +0 0.1225 +0 0.0861 +0 0.0867 +0 0.0988 +1 0.7771 +0 0.1428 +1 0.8559 +0 0.1792 +0 0.0497 +0 0.3440 +0 0.1743 +0 0.0543 +0 0.0656 +0 0.1269 +0 0.0823 +0 0.1308 +0 0.1246 +0 0.0944 +0 0.0996 +0 0.0824 +0 0.1469 +0 0.0722 +0 0.0801 +0 0.0508 +0 0.1122 +0 0.1402 +0 0.2836 +0 0.1411 +0 0.1594 +0 0.1111 +0 0.0945 +0 0.1365 +0 0.3547 +0 0.2473 +0 0.1212 +0 0.0918 +0 0.1013 +0 0.6718 +0 0.0757 +0 0.0652 +0 0.0697 +0 0.1669 +0 0.3052 +0 0.1525 +0 0.0425 +0 0.0341 +0 0.0502 +0 0.1783 +0 0.2622 +0 0.1682 +0 0.0549 +0 0.0682 +0 0.3262 +0 0.1029 +0 0.0481 +0 0.0662 +0 0.1287 +0 0.1624 +0 0.2284 +0 0.1101 +0 0.1904 +0 0.1079 +0 0.1263 +0 0.0868 +0 0.2059 +1 0.8315 +0 0.0707 +0 0.1092 +0 0.1165 +0 0.0900 +0 0.1279 +0 0.5528 +0 0.0987 +0 0.1007 +0 0.0443 +0 0.1909 +1 0.8287 +0 0.0753 +0 0.2357 +0 0.1406 +0 0.0893 +0 0.1010 +0 0.1820 +0 0.0621 +0 0.0513 +0 0.0970 +0 0.0783 +0 0.0680 +0 0.1603 +0 0.1419 +0 0.0513 +0 0.2904 +0 0.1352 +0 0.1595 +0 0.1725 +0 0.0767 +0 0.0380 +0 0.0546 +0 0.1309 +0 0.2421 +0 0.1505 +0 0.2706 +0 0.1709 +0 0.0788 +0 0.1251 +0 0.1797 +0 0.0448 +0 0.3587 +0 0.0950 +0 0.0533 +0 0.1075 +0 0.2226 +0 0.0798 +0 0.1195 +0 0.0918 +0 0.2432 +0 0.4277 +0 0.3726 +0 0.0533 +0 0.1166 +0 0.3506 +0 0.1283 +0 0.0875 +0 0.2361 +0 0.0531 +0 0.1114 +0 0.0447 +0 0.5092 +0 0.0858 +0 0.4494 +0 0.0820 +0 0.1273 +0 0.1439 +0 0.2031 +0 0.0673 +0 0.1607 +0 0.3712 +0 0.1160 +0 0.1174 +0 0.0519 +0 0.1437 +0 0.1520 +0 0.1252 +0 0.2320 +0 0.7316 +0 0.1937 +0 0.0711 +0 0.0988 +0 0.2849 +0 0.0961 +0 0.0810 +0 0.0818 +0 0.0693 +0 0.0888 +0 0.0543 +0 0.0900 +0 0.7246 +0 0.0408 +0 0.7430 +0 0.0737 +0 0.0835 +0 0.0626 +0 0.1303 +0 0.0698 +0 0.1527 +0 0.1045 +0 0.1337 +0 0.2550 +0 0.1888 +0 0.0706 +0 0.0502 +0 0.1128 +0 0.6188 +0 0.5096 +0 0.1202 +0 0.1464 +0 0.0723 +0 0.1228 +0 0.0918 +0 0.0527 +0 0.1715 +0 0.0609 +0 0.1251 +0 0.1876 +0 0.3212 +0 0.1816 +0 0.2087 +0 0.0463 +0 0.0756 +0 0.0298 +0 0.3161 +0 0.0875 +0 0.3128 +0 0.4154 +0 0.1204 +0 0.0907 +0 0.2506 +0 0.1127 +0 0.1843 +0 0.0677 +0 0.3706 +0 0.0877 +0 0.1049 +0 0.0453 +0 0.0986 +0 0.0990 +0 0.0472 +0 0.0418 +0 0.0409 +0 0.3187 +0 0.1281 +0 0.1732 +0 0.0799 +0 0.1142 +0 0.0405 +0 0.1453 +0 0.2021 +0 0.0726 +0 0.1447 +0 0.2068 +0 0.0552 +0 0.1403 +0 0.1917 +0 0.0908 +0 0.2757 +0 0.0487 +0 0.2528 +0 0.0509 +0 0.1776 +0 0.1716 +0 0.0982 +0 0.1082 +0 0.2018 +0 0.0936 +0 0.1971 +0 0.0743 +0 0.2871 +0 0.1030 +0 0.1977 +0 0.1775 +1 0.8057 +0 0.0943 +0 0.1938 +0 0.0881 +0 0.1224 +0 0.1677 +0 0.1692 +0 0.1631 +0 0.0748 +0 0.0517 +0 0.2208 +1 0.7605 +0 0.0768 +0 0.0993 +0 0.1718 +0 0.0589 +0 0.0686 +0 0.1251 +0 0.0631 +0 0.0417 +0 0.2187 +0 0.1223 +0 0.1260 +0 0.1174 +0 0.0978 +0 0.1913 +0 0.2429 +0 0.0828 +0 0.3115 +0 0.0624 +0 0.4065 +0 0.0703 +0 0.3214 +0 0.1207 +1 0.8182 +0 0.5893 +0 0.1241 +0 0.0987 +0 0.1296 +0 0.0531 +0 0.3315 +0 0.1037 +0 0.0370 +0 0.0796 +0 0.1336 +0 0.0356 +0 0.0458 +0 0.0914 +0 0.0626 +0 0.1256 +0 0.0489 +0 0.0825 +0 0.1585 +0 0.1076 +0 0.6732 +0 0.0597 +0 0.0635 +0 0.1137 +0 0.1262 +0 0.1742 +0 0.4283 +0 0.6935 +0 0.0668 +0 0.0980 +0 0.0556 +0 0.0878 +0 0.1922 +0 0.1369 +0 0.1067 +0 0.1257 +1 0.8110 +0 0.0837 +0 0.0968 +0 0.0404 +0 0.0896 +0 0.0730 +0 0.1224 +0 0.1199 +0 0.1802 +0 0.3944 +0 0.2219 +0 0.6331 +0 0.0736 +0 0.0620 +0 0.1259 +0 0.0789 +0 0.0986 +0 0.0515 +0 0.0847 +0 0.0682 +0 0.0849 +0 0.4491 +0 0.3747 +0 0.0853 +0 0.1854 +0 0.1185 +0 0.0430 +0 0.0475 +0 0.2037 +0 0.0694 +0 0.0665 +0 0.2522 +0 0.0719 +0 0.2529 +0 0.0811 +0 0.2217 +0 0.1091 +0 0.1211 +0 0.0888 +0 0.1883 +0 0.5873 +0 0.0413 +0 0.0902 +0 0.0818 +0 0.0760 +0 0.0765 +0 0.3339 +0 0.0846 +0 0.1600 +0 0.0663 +0 0.0784 +0 0.1082 +0 0.1273 +0 0.0760 +0 0.0967 +0 0.0667 +0 0.0790 +0 0.2124 +1 0.7971 +0 0.0857 +0 0.0734 +0 0.0514 +0 0.0776 +0 0.1112 +0 0.0570 +0 0.0817 +0 0.1941 +0 0.1996 +0 0.3691 +0 0.0537 +0 0.2654 +0 0.0578 +0 0.2450 +0 0.0449 +0 0.0964 +0 0.1313 +0 0.0530 +0 0.1741 +0 0.1173 +0 0.4613 +0 0.0755 +0 0.1005 +0 0.3727 +0 0.2107 +0 0.1524 +0 0.2267 +0 0.0957 +0 0.3942 +0 0.0732 +0 0.0551 +0 0.0755 +0 0.0660 +0 0.1124 +0 0.3555 +0 0.0423 +0 0.0609 +0 0.1138 +0 0.1747 +0 0.0824 +0 0.1609 +0 0.1149 +0 0.0997 +0 0.0977 +0 0.1257 +0 0.0428 +0 0.0460 +0 0.0583 +0 0.2079 +0 0.1984 +0 0.1617 +0 0.1097 +0 0.5459 +0 0.1381 +0 0.0731 +0 0.1355 +0 0.1021 +0 0.1041 +0 0.0681 +1 0.7528 +0 0.0961 +0 0.0364 +0 0.3031 +0 0.1431 +0 0.1102 +0 0.1055 +0 0.3273 +0 0.1172 +0 0.1011 +0 0.2099 +0 0.1133 +0 0.0697 +0 0.3459 +0 0.2204 +0 0.0857 +0 0.0883 +0 0.0379 +0 0.0448 +0 0.1149 +0 0.0616 +0 0.2044 +0 0.0658 +0 0.1019 +0 0.0869 +0 0.1589 +0 0.0863 +0 0.5546 +0 0.1048 +0 0.1353 +0 0.2155 +0 0.0910 +0 0.0719 +0 0.0704 +0 0.0755 +0 0.3403 +0 0.1855 +0 0.0582 +0 0.0643 +0 0.0595 +0 0.0934 +0 0.0967 +0 0.1632 +0 0.3971 +0 0.1375 +0 0.1214 +0 0.1319 +0 0.0825 +0 0.0994 +0 0.6843 +0 0.1312 +0 0.1757 +0 0.0940 +0 0.0835 +0 0.1158 +0 0.0508 +0 0.1083 +0 0.1497 +0 0.1467 +0 0.1001 +0 0.0574 +0 0.0522 +0 0.1118 +0 0.0671 +0 0.1115 +0 0.1681 +0 0.1389 +0 0.0636 +0 0.0407 +0 0.0641 +0 0.3370 +0 0.1739 +0 0.1595 +0 0.0859 +0 0.0476 +0 0.1069 +0 0.0707 +0 0.2481 +0 0.0439 +0 0.0557 +0 0.0408 +0 0.5781 +0 0.1009 +0 0.0936 +0 0.2084 +1 0.8051 +0 0.0917 +0 0.1112 +0 0.0570 +0 0.0395 +0 0.1251 +0 0.2423 +0 0.0789 +0 0.0851 +0 0.0930 +0 0.0798 +0 0.0771 +0 0.0996 +0 0.0885 +0 0.0924 +0 0.1190 +0 0.0750 +0 0.3369 +0 0.1849 +0 0.0352 diff --git a/zad7.ipynb b/zad7.ipynb new file mode 100644 index 0000000..e23b29f --- /dev/null +++ b/zad7.ipynb @@ -0,0 +1,13640 @@ +{ + "cells": [ + { + "cell_type": "code", + "execution_count": 7, + "metadata": { + "collapsed": true + }, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Defaulting to user installation because normal site-packages is not writeable\n", + "Collecting torchtext\n", + " Downloading torchtext-0.15.2-cp310-cp310-manylinux1_x86_64.whl (2.0 MB)\n", + "\u001b[2K \u001b[38;2;114;156;31m━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━\u001b[0m \u001b[32m2.0/2.0 MB\u001b[0m \u001b[31m1.5 MB/s\u001b[0m eta \u001b[36m0:00:00\u001b[0m[36m0:00:01\u001b[0m[36m0:00:01\u001b[0m:01\u001b[0m\n", + "\u001b[?25hCollecting tqdm\n", + " Using cached tqdm-4.65.0-py3-none-any.whl (77 kB)\n", + "Requirement already satisfied: numpy in /home/gedin/.local/lib/python3.10/site-packages (from torchtext) (1.24.3)\n", + "Collecting torchdata==0.6.1\n", + " Downloading torchdata-0.6.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (4.6 MB)\n", + "\u001b[2K \u001b[38;2;114;156;31m━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━\u001b[0m \u001b[32m4.6/4.6 MB\u001b[0m \u001b[31m1.5 MB/s\u001b[0m eta \u001b[36m0:00:00\u001b[0mm eta \u001b[36m0:00:01\u001b[0m[36m0:00:01\u001b[0m\n", + "\u001b[?25hRequirement already satisfied: requests in /usr/lib/python3/dist-packages (from torchtext) (2.25.1)\n", + "Collecting torch==2.0.1\n", + " Downloading torch-2.0.1-cp310-cp310-manylinux1_x86_64.whl (619.9 MB)\n", + "\u001b[2K \u001b[38;2;114;156;31m━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━\u001b[0m \u001b[32m619.9/619.9 MB\u001b[0m \u001b[31m1.1 MB/s\u001b[0m eta \u001b[36m0:00:00\u001b[0mm eta \u001b[36m0:00:01\u001b[0m[36m0:00:09\u001b[0m\n", + "\u001b[?25hCollecting sympy\n", + " Downloading sympy-1.12-py3-none-any.whl (5.7 MB)\n", + "\u001b[2K \u001b[38;2;114;156;31m━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━\u001b[0m \u001b[32m5.7/5.7 MB\u001b[0m \u001b[31m1.7 MB/s\u001b[0m eta \u001b[36m0:00:00\u001b[0mm eta \u001b[36m0:00:01\u001b[0m[36m0:00:01\u001b[0m\n", + "\u001b[?25hCollecting nvidia-cudnn-cu11==8.5.0.96\n", + " Using cached nvidia_cudnn_cu11-8.5.0.96-2-py3-none-manylinux1_x86_64.whl (557.1 MB)\n", + "Collecting nvidia-cuda-cupti-cu11==11.7.101\n", + " Using cached nvidia_cuda_cupti_cu11-11.7.101-py3-none-manylinux1_x86_64.whl (11.8 MB)\n", + "Collecting nvidia-cusparse-cu11==11.7.4.91\n", + " Using cached nvidia_cusparse_cu11-11.7.4.91-py3-none-manylinux1_x86_64.whl (173.2 MB)\n", + "Collecting networkx\n", + " Using cached networkx-3.1-py3-none-any.whl (2.1 MB)\n", + "Collecting nvidia-cufft-cu11==10.9.0.58\n", + " Using cached nvidia_cufft_cu11-10.9.0.58-py3-none-manylinux1_x86_64.whl (168.4 MB)\n", + "Collecting filelock\n", + " Downloading filelock-3.12.0-py3-none-any.whl (10 kB)\n", + "Collecting nvidia-cuda-runtime-cu11==11.7.99\n", + " Using cached nvidia_cuda_runtime_cu11-11.7.99-py3-none-manylinux1_x86_64.whl (849 kB)\n", + "Collecting triton==2.0.0\n", + " Downloading triton-2.0.0-1-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.whl (63.3 MB)\n", + "\u001b[2K \u001b[38;2;114;156;31m━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━\u001b[0m \u001b[32m63.3/63.3 MB\u001b[0m \u001b[31m1.3 MB/s\u001b[0m eta \u001b[36m0:00:00\u001b[0mm eta \u001b[36m0:00:01\u001b[0m[36m0:00:02\u001b[0m\n", + "\u001b[?25hCollecting nvidia-cusolver-cu11==11.4.0.1\n", + " Using cached nvidia_cusolver_cu11-11.4.0.1-2-py3-none-manylinux1_x86_64.whl (102.6 MB)\n", + "Requirement already satisfied: jinja2 in /home/gedin/.local/lib/python3.10/site-packages (from torch==2.0.1->torchtext) (3.1.2)\n", + "Collecting nvidia-cublas-cu11==11.10.3.66\n", + " Using cached nvidia_cublas_cu11-11.10.3.66-py3-none-manylinux1_x86_64.whl (317.1 MB)\n", + "Collecting typing-extensions\n", + " Downloading typing_extensions-4.6.3-py3-none-any.whl (31 kB)\n", + "Collecting nvidia-nccl-cu11==2.14.3\n", + " Using cached nvidia_nccl_cu11-2.14.3-py3-none-manylinux1_x86_64.whl (177.1 MB)\n", + "Collecting nvidia-cuda-nvrtc-cu11==11.7.99\n", + " Using cached nvidia_cuda_nvrtc_cu11-11.7.99-2-py3-none-manylinux1_x86_64.whl (21.0 MB)\n", + "Collecting nvidia-curand-cu11==10.2.10.91\n", + " Using cached nvidia_curand_cu11-10.2.10.91-py3-none-manylinux1_x86_64.whl (54.6 MB)\n", + "Collecting nvidia-nvtx-cu11==11.7.91\n", + " Using cached nvidia_nvtx_cu11-11.7.91-py3-none-manylinux1_x86_64.whl (98 kB)\n", + "Requirement already satisfied: urllib3>=1.25 in /usr/lib/python3/dist-packages (from torchdata==0.6.1->torchtext) (1.26.5)\n", + "Requirement already satisfied: wheel in /usr/lib/python3/dist-packages (from nvidia-cublas-cu11==11.10.3.66->torch==2.0.1->torchtext) (0.37.1)\n", + "Requirement already satisfied: setuptools in /usr/lib/python3/dist-packages (from nvidia-cublas-cu11==11.10.3.66->torch==2.0.1->torchtext) (59.6.0)\n", + "Collecting lit\n", + " Downloading lit-16.0.5.tar.gz (138 kB)\n", + "\u001b[2K \u001b[38;2;114;156;31m━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━\u001b[0m \u001b[32m138.0/138.0 KB\u001b[0m \u001b[31m1.7 MB/s\u001b[0m eta \u001b[36m0:00:00\u001b[0m[31m1.6 MB/s\u001b[0m eta \u001b[36m0:00:01\u001b[0m\n", + "\u001b[?25h Preparing metadata (setup.py) ... \u001b[?25ldone\n", + "\u001b[?25hCollecting cmake\n", + " Using cached cmake-3.26.3-py2.py3-none-manylinux2014_x86_64.manylinux_2_17_x86_64.whl (24.0 MB)\n", + "Requirement already satisfied: MarkupSafe>=2.0 in /usr/lib/python3/dist-packages (from jinja2->torch==2.0.1->torchtext) (2.0.1)\n", + "Collecting mpmath>=0.19\n", + " Using cached mpmath-1.3.0-py3-none-any.whl (536 kB)\n", + "Building wheels for collected packages: lit\n", + " Building wheel for lit (setup.py) ... \u001b[?25ldone\n", + "\u001b[?25h Created wheel for lit: filename=lit-16.0.5-py3-none-any.whl size=88192 sha256=f6c57a31a147cbfe0af3d6bf4b856390ad14c28a9ddb38c8044ec29331b35c26\n", + " Stored in directory: /home/gedin/.cache/pip/wheels/eb/02/84/d82f0b1a6098209edf7e3607be6cc592ebbc015a8a3127c68d\n", + "Successfully built lit\n", + "Installing collected packages: mpmath, lit, cmake, typing-extensions, tqdm, sympy, nvidia-nvtx-cu11, nvidia-nccl-cu11, nvidia-cusparse-cu11, nvidia-curand-cu11, nvidia-cufft-cu11, nvidia-cuda-runtime-cu11, nvidia-cuda-nvrtc-cu11, nvidia-cuda-cupti-cu11, nvidia-cublas-cu11, networkx, filelock, nvidia-cusolver-cu11, nvidia-cudnn-cu11, triton, torch, torchdata, torchtext\n", + "Successfully installed cmake-3.26.3 filelock-3.12.0 lit-16.0.5 mpmath-1.3.0 networkx-3.1 nvidia-cublas-cu11-11.10.3.66 nvidia-cuda-cupti-cu11-11.7.101 nvidia-cuda-nvrtc-cu11-11.7.99 nvidia-cuda-runtime-cu11-11.7.99 nvidia-cudnn-cu11-8.5.0.96 nvidia-cufft-cu11-10.9.0.58 nvidia-curand-cu11-10.2.10.91 nvidia-cusolver-cu11-11.4.0.1 nvidia-cusparse-cu11-11.7.4.91 nvidia-nccl-cu11-2.14.3 nvidia-nvtx-cu11-11.7.91 sympy-1.12 torch-2.0.1 torchdata-0.6.1 torchtext-0.15.2 tqdm-4.65.0 triton-2.0.0 typing-extensions-4.6.3\n" + ] + } + ], + "source": [ + "!pip install torchtext" + ] + }, + { + "cell_type": "code", + "execution_count": 50, + "metadata": {}, + "outputs": [], + "source": [ + "train_file ='train/in.tsv.xz'\n", + "test_file = 'test-A/in.tsv.xz'\n", + "out_file = 'test-A/out.tsv'" + ] + }, + { + "cell_type": "code", + "execution_count": 10, + "metadata": {}, + "outputs": [], + "source": [ + "from itertools import islice\n", + "import regex as re\n", + "import sys\n", + "from torchtext.vocab import build_vocab_from_iterator\n", + "import lzma\n", + "import pickle\n", + "import re\n", + "import torch\n", + "from torch import nn\n", + "from torch.utils.data import IterableDataset\n", + "import itertools\n", + "from torch.utils.data import DataLoader\n", + "import gc" + ] + }, + { + "cell_type": "code", + "execution_count": 51, + "metadata": {}, + "outputs": [], + "source": [ + "embed_size = 300\n", + "device = 'cuda'\n", + "vocab_size = 25000\n", + "batch_s = 3200\n", + "learning_rate = 0.0001\n", + "epochs = 4\n", + "k = 20 #top k words\n", + "wildcard_minweight = 0.001" + ] + }, + { + "cell_type": "code", + "execution_count": 12, + "metadata": { + "scrolled": true + }, + "outputs": [], + "source": [ + "###preprocessing\n", + "def preprocess(line):\n", + " line = get_rid_of_header(line)\n", + " line = replace_endline(line)\n", + " return line\n", + "\n", + "def get_rid_of_header(line):\n", + " line = line.split('\\t')[6:]\n", + " return \"\".join(line)\n", + " \n", + "def replace_endline(line):\n", + " line = line.replace(\"\\\\n\", \" \")\n", + " return line\n", + "\n", + "\n", + "def get_last_word(text):\n", + " \"\"\"Return the last word of a string.\"\"\"\n", + " last_word = \"\"\n", + " for i in range(len(text)-1, -1, -1):\n", + " if text[i] == ' ':\n", + " return last_word[::-1].rstrip()\n", + " else:\n", + " last_word += text[i]\n", + " return last_word[::-1].rstrip()\n", + "\n", + "def get_first_word(text):\n", + " \"\"\"Return the first word of a string.\"\"\"\n", + " word = \"\"\n", + " for i in range(len(text)-1):\n", + " if text[i] == ' ':\n", + " return word\n", + " else:\n", + " word += text[i]\n", + " return word\n", + "\n", + "\n", + "def get_words_from_line(line):\n", + " line = line.rstrip()\n", + " yield ''\n", + " line = preprocess(line)\n", + " for t in line.split(' '):\n", + " yield t\n", + " yield ''\n", + "\n", + "\n", + "def get_word_lines_from_file(file_name):\n", + " n = 0\n", + " with lzma.open(file_name, 'r') as fh:\n", + " for line in fh:\n", + " n+=1\n", + " if n%1000==0:\n", + " print(n)\n", + " yield get_words_from_line(line.decode('utf-8'))" + ] + }, + { + "cell_type": "code", + "execution_count": 5, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "1000\n", + "2000\n", + "3000\n", + "4000\n", + "5000\n", + "6000\n", + "7000\n", + "8000\n", + "9000\n", + "10000\n", + "11000\n", + "12000\n", + "13000\n", + "14000\n", + "15000\n", + "16000\n", + "17000\n", + "18000\n", + "19000\n", + "20000\n", + "21000\n", + "22000\n", + "23000\n", + "24000\n", + "25000\n", + "26000\n", + "27000\n", + "28000\n", + "29000\n", + "30000\n", + "31000\n", + "32000\n", + "33000\n", + "34000\n", + "35000\n", + "36000\n", + "37000\n", + "38000\n", + "39000\n", + "40000\n", + "41000\n", + "42000\n", + "43000\n", + "44000\n", + "45000\n", + "46000\n", + "47000\n", + "48000\n", + "49000\n", + "50000\n", + "51000\n", + "52000\n", + "53000\n", + "54000\n", + "55000\n", + "56000\n", + "57000\n", + "58000\n", + "59000\n", + "60000\n", + "61000\n", + "62000\n", + "63000\n", + "64000\n", + "65000\n", + "66000\n", + "67000\n", + "68000\n", + "69000\n", + "70000\n", + "71000\n", + "72000\n", + "73000\n", + "74000\n", + "75000\n", + "76000\n", + "77000\n", + "78000\n", + "79000\n", + "80000\n", + "81000\n", + "82000\n", + "83000\n", + "84000\n", + "85000\n", + "86000\n", + "87000\n", + "88000\n", + "89000\n", + "90000\n", + "91000\n", + "92000\n", + "93000\n", + "94000\n", + "95000\n", + "96000\n", + "97000\n", + "98000\n", + "99000\n", + "100000\n", + "101000\n", + "102000\n", + "103000\n", + "104000\n", + "105000\n", + "106000\n", + "107000\n", + "108000\n", + "109000\n", + "110000\n", + "111000\n", + "112000\n", + "113000\n", + "114000\n", + "115000\n", + "116000\n", + "117000\n", + "118000\n", + "119000\n", + "120000\n", + "121000\n", + "122000\n", + "123000\n", + "124000\n", + "125000\n", + "126000\n", + "127000\n", + "128000\n", + "129000\n", + "130000\n", + "131000\n", + "132000\n", + "133000\n", + "134000\n", + "135000\n", + "136000\n", + "137000\n", + "138000\n", + "139000\n", + "140000\n", + "141000\n", + "142000\n", + "143000\n", + "144000\n", + "145000\n", + "146000\n", + "147000\n", + "148000\n", + "149000\n", + "150000\n", + "151000\n", + "152000\n", + "153000\n", + "154000\n", + "155000\n", + "156000\n", + "157000\n", + "158000\n", + "159000\n", + "160000\n", + "161000\n", + "162000\n", + "163000\n", + "164000\n", + "165000\n", + "166000\n", + "167000\n", + "168000\n", + "169000\n", + "170000\n", + "171000\n", + "172000\n", + "173000\n", + "174000\n", + "175000\n", + "176000\n", + "177000\n", + "178000\n", + "179000\n", + "180000\n", + "181000\n", + "182000\n", + "183000\n", + "184000\n", + "185000\n", + "186000\n", + "187000\n", + "188000\n", + "189000\n", + "190000\n", + "191000\n", + "192000\n", + "193000\n", + "194000\n", + "195000\n", + "196000\n", + "197000\n", + "198000\n", + "199000\n", + "200000\n", + "201000\n", + "202000\n", + "203000\n", + "204000\n", + "205000\n", + "206000\n", + "207000\n", + "208000\n", + "209000\n", + "210000\n", + "211000\n", + "212000\n", + "213000\n", + "214000\n", + "215000\n", + "216000\n", + "217000\n", + "218000\n", + "219000\n", + "220000\n", + "221000\n", + "222000\n", + "223000\n", + "224000\n", + "225000\n", + "226000\n", + "227000\n", + "228000\n", + "229000\n", + "230000\n", + "231000\n", + "232000\n", + "233000\n", + "234000\n", + "235000\n", + "236000\n", + "237000\n", + "238000\n", + "239000\n", + "240000\n", + "241000\n", + "242000\n", + "243000\n", + "244000\n", + "245000\n", + "246000\n", + "247000\n", + "248000\n", + "249000\n", + "250000\n", + "251000\n", + "252000\n", + "253000\n", + "254000\n", + "255000\n", + "256000\n", + "257000\n", + "258000\n", + "259000\n", + "260000\n", + "261000\n", + "262000\n", + "263000\n", + "264000\n", + "265000\n", + "266000\n", + "267000\n", + "268000\n", + "269000\n", + "270000\n", + "271000\n", + "272000\n", + "273000\n", + "274000\n", + "275000\n", + "276000\n", + "277000\n", + "278000\n", + "279000\n", + "280000\n", + "281000\n", + "282000\n", + "283000\n", + "284000\n", + "285000\n", + "286000\n", + "287000\n", + "288000\n", + "289000\n", + "290000\n", + "291000\n", + "292000\n", + "293000\n", + "294000\n", + "295000\n", + "296000\n", + "297000\n", + "298000\n", + "299000\n", + "300000\n", + "301000\n", + "302000\n", + "303000\n", + "304000\n", + "305000\n", + "306000\n", + "307000\n", + "308000\n", + "309000\n", + "310000\n", + "311000\n", + "312000\n", + "313000\n", + "314000\n", + "315000\n", + "316000\n", + "317000\n", + "318000\n", + "319000\n", + "320000\n", + "321000\n", + "322000\n", + "323000\n", + "324000\n", + "325000\n", + "326000\n", + "327000\n", + "328000\n", + "329000\n", + "330000\n", + "331000\n", + "332000\n", + "333000\n", + "334000\n", + "335000\n", + "336000\n", + "337000\n", + "338000\n", + "339000\n", + "340000\n", + "341000\n", + "342000\n", + "343000\n", + "344000\n", + "345000\n", + "346000\n", + "347000\n", + "348000\n", + "349000\n", + "350000\n", + "351000\n", + "352000\n", + "353000\n", + "354000\n", + "355000\n", + "356000\n", + "357000\n", + "358000\n", + "359000\n", + "360000\n", + "361000\n", + "362000\n", + "363000\n", + "364000\n", + "365000\n", + "366000\n", + "367000\n", + "368000\n", + "369000\n", + "370000\n", + "371000\n", + "372000\n", + "373000\n", + "374000\n", + "375000\n", + "376000\n", + "377000\n", + "378000\n", + "379000\n", + "380000\n", + "381000\n", + "382000\n", + "383000\n", + "384000\n", + "385000\n", + "386000\n", + "387000\n", + "388000\n", + "389000\n", + "390000\n", + "391000\n", + "392000\n", + "393000\n", + "394000\n", + "395000\n", + "396000\n", + "397000\n", + "398000\n", + "399000\n", + "400000\n", + "401000\n", + "402000\n", + "403000\n", + "404000\n", + "405000\n", + "406000\n", + "407000\n", + "408000\n", + "409000\n", + "410000\n", + "411000\n", + "412000\n", + "413000\n", + "414000\n", + "415000\n", + "416000\n", + "417000\n", + "418000\n", + "419000\n", + "420000\n", + "421000\n", + "422000\n", + "423000\n", + "424000\n", + "425000\n", + "426000\n", + "427000\n", + "428000\n", + "429000\n", + "430000\n", + "431000\n", + "432000\n" + ] + } + ], + "source": [ + "vocab = build_vocab_from_iterator(\n", + " get_word_lines_from_file(train_file),\n", + " max_tokens = vocab_size,\n", + " specials = [''])\n", + "\n", + "with open('filename.pickle', 'wb') as handle:\n", + " pickle.dump(vocab, handle, protocol=pickle.HIGHEST_PROTOCOL)" + ] + }, + { + "cell_type": "code", + "execution_count": 5, + "metadata": {}, + "outputs": [ + { + "ename": "NameError", + "evalue": "name 'vocab' is not defined", + "output_type": "error", + "traceback": [ + "\u001b[0;31m---------------------------------------------------------------------------\u001b[0m", + "\u001b[0;31mNameError\u001b[0m Traceback (most recent call last)", + "\u001b[0;32m/tmp/ipykernel_20466/3224446201.py\u001b[0m in \u001b[0;36m\u001b[0;34m\u001b[0m\n\u001b[0;32m----> 1\u001b[0;31m \u001b[0mvocab\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0mlookup_tokens\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0;34m[\u001b[0m\u001b[0;36m0\u001b[0m\u001b[0;34m,\u001b[0m \u001b[0;36m1\u001b[0m\u001b[0;34m,\u001b[0m \u001b[0;36m2\u001b[0m\u001b[0;34m,\u001b[0m \u001b[0;36m10\u001b[0m\u001b[0;34m,\u001b[0m \u001b[0;36m2000\u001b[0m\u001b[0;34m]\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0m", + "\u001b[0;31mNameError\u001b[0m: name 'vocab' is not defined" + ] + } + ], + "source": [ + "vocab.lookup_tokens([0, 1, 2, 10, 2000])" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "#### Definicja sieci\n", + "\n" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "Naszą prostą sieć neuronową zaimplementujemy używając frameworku PyTorch.\n", + "\n" + ] + }, + { + "cell_type": "code", + "execution_count": 13, + "metadata": {}, + "outputs": [], + "source": [ + "class SimpleBigramNeuralLanguageModel(nn.Module):\n", + " def __init__(self, vocabulary_size, embedding_size):\n", + " super(SimpleBigramNeuralLanguageModel, self).__init__()\n", + " self.model = nn.Sequential(\n", + " nn.Embedding(vocabulary_size, embedding_size),\n", + " nn.Linear(embedding_size, vocabulary_size),\n", + " nn.Softmax()\n", + " )\n", + " \n", + " def forward(self, x):\n", + " return self.model(x)\n", + "\n", + "with open('filename.pickle','rb') as handle:\n", + " vocab = pickle.load(handle)\n", + "\n", + "vocab.set_default_index(vocab[''])" + ] + }, + { + "cell_type": "code", + "execution_count": 6, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Help on Vocab in module torchtext.vocab.vocab object:\n", + "\n", + "class Vocab(torch.nn.modules.module.Module)\n", + " | Vocab(vocab) -> None\n", + " | \n", + " | Base class for all neural network modules.\n", + " | \n", + " | Your models should also subclass this class.\n", + " | \n", + " | Modules can also contain other Modules, allowing to nest them in\n", + " | a tree structure. You can assign the submodules as regular attributes::\n", + " | \n", + " | import torch.nn as nn\n", + " | import torch.nn.functional as F\n", + " | \n", + " | class Model(nn.Module):\n", + " | def __init__(self):\n", + " | super().__init__()\n", + " | self.conv1 = nn.Conv2d(1, 20, 5)\n", + " | self.conv2 = nn.Conv2d(20, 20, 5)\n", + " | \n", + " | def forward(self, x):\n", + " | x = F.relu(self.conv1(x))\n", + " | return F.relu(self.conv2(x))\n", + " | \n", + " | Submodules assigned in this way will be registered, and will have their\n", + " | parameters converted too when you call :meth:`to`, etc.\n", + " | \n", + " | .. note::\n", + " | As per the example above, an ``__init__()`` call to the parent class\n", + " | must be made before assignment on the child.\n", + " | \n", + " | :ivar training: Boolean represents whether this module is in training or\n", + " | evaluation mode.\n", + " | :vartype training: bool\n", + " | \n", + " | Method resolution order:\n", + " | Vocab\n", + " | torch.nn.modules.module.Module\n", + " | builtins.object\n", + " | \n", + " | Methods defined here:\n", + " | \n", + " | __contains__(self, token: str) -> bool\n", + " | Args:\n", + " | token: The token for which to check the membership.\n", + " | \n", + " | Returns:\n", + " | Whether the token is member of vocab or not.\n", + " | \n", + " | __getitem__(self, token: str) -> int\n", + " | Args:\n", + " | token: The token used to lookup the corresponding index.\n", + " | \n", + " | Returns:\n", + " | The index corresponding to the associated token.\n", + " | \n", + " | __init__(self, vocab) -> None\n", + " | Initializes internal Module state, shared by both nn.Module and ScriptModule.\n", + " | \n", + " | __len__(self) -> int\n", + " | Returns:\n", + " | The length of the vocab.\n", + " | \n", + " | __prepare_scriptable__(self)\n", + " | Return a JITable Vocab.\n", + " | \n", + " | append_token(self, token: str) -> None\n", + " | Args:\n", + " | token: The token used to lookup the corresponding index.\n", + " | \n", + " | Raises:\n", + " | RuntimeError: If `token` already exists in the vocab\n", + " | \n", + " | forward(self, tokens: List[str]) -> List[int]\n", + " | Calls the `lookup_indices` method\n", + " | \n", + " | Args:\n", + " | tokens: a list of tokens used to lookup their corresponding `indices`.\n", + " | \n", + " | Returns:\n", + " | The indices associated with a list of `tokens`.\n", + " | \n", + " | get_default_index(self) -> Union[int, NoneType]\n", + " | Returns:\n", + " | Value of default index if it is set.\n", + " | \n", + " | get_itos(self) -> List[str]\n", + " | Returns:\n", + " | List mapping indices to tokens.\n", + " | \n", + " | get_stoi(self) -> Dict[str, int]\n", + " | Returns:\n", + " | Dictionary mapping tokens to indices.\n", + " | \n", + " | insert_token(self, token: str, index: int) -> None\n", + " | Args:\n", + " | token: The token used to lookup the corresponding index.\n", + " | index: The index corresponding to the associated token.\n", + " | Raises:\n", + " | RuntimeError: If `index` is not in range [0, Vocab.size()] or if `token` already exists in the vocab.\n", + " | \n", + " | lookup_indices(self, tokens: List[str]) -> List[int]\n", + " | Args:\n", + " | tokens: the tokens used to lookup their corresponding `indices`.\n", + " | \n", + " | Returns:\n", + " | The 'indices` associated with `tokens`.\n", + " | \n", + " | lookup_token(self, index: int) -> str\n", + " | Args:\n", + " | index: The index corresponding to the associated token.\n", + " | \n", + " | Returns:\n", + " | token: The token used to lookup the corresponding index.\n", + " | \n", + " | Raises:\n", + " | RuntimeError: If `index` not in range [0, itos.size()).\n", + " | \n", + " | lookup_tokens(self, indices: List[int]) -> List[str]\n", + " | Args:\n", + " | indices: The `indices` used to lookup their corresponding`tokens`.\n", + " | \n", + " | Returns:\n", + " | The `tokens` associated with `indices`.\n", + " | \n", + " | Raises:\n", + " | RuntimeError: If an index within `indices` is not int range [0, itos.size()).\n", + " | \n", + " | set_default_index(self, index: Union[int, NoneType]) -> None\n", + " | Args:\n", + " | index: Value of default index. This index will be returned when OOV token is queried.\n", + " | \n", + " | ----------------------------------------------------------------------\n", + " | Readonly properties defined here:\n", + " | \n", + " | is_jitable\n", + " | \n", + " | ----------------------------------------------------------------------\n", + " | Data and other attributes defined here:\n", + " | \n", + " | __jit_unused_properties__ = ['is_jitable']\n", + " | \n", + " | ----------------------------------------------------------------------\n", + " | Methods inherited from torch.nn.modules.module.Module:\n", + " | \n", + " | __call__ = _call_impl(self, *args, **kwargs)\n", + " | \n", + " | __delattr__(self, name)\n", + " | Implement delattr(self, name).\n", + " | \n", + " | __dir__(self)\n", + " | Default dir() implementation.\n", + " | \n", + " | __getattr__(self, name: str) -> Union[torch.Tensor, ForwardRef('Module')]\n", + " | \n", + " | __repr__(self)\n", + " | Return repr(self).\n", + " | \n", + " | __setattr__(self, name: str, value: Union[torch.Tensor, ForwardRef('Module')]) -> None\n", + " | Implement setattr(self, name, value).\n", + " | \n", + " | __setstate__(self, state)\n", + " | \n", + " | add_module(self, name: str, module: Union[ForwardRef('Module'), NoneType]) -> None\n", + " | Adds a child module to the current module.\n", + " | \n", + " | The module can be accessed as an attribute using the given name.\n", + " | \n", + " | Args:\n", + " | name (str): name of the child module. The child module can be\n", + " | accessed from this module using the given name\n", + " | module (Module): child module to be added to the module.\n", + " | \n", + " | apply(self: ~T, fn: Callable[[ForwardRef('Module')], NoneType]) -> ~T\n", + " | Applies ``fn`` recursively to every submodule (as returned by ``.children()``)\n", + " | as well as self. Typical use includes initializing the parameters of a model\n", + " | (see also :ref:`nn-init-doc`).\n", + " | \n", + " | Args:\n", + " | fn (:class:`Module` -> None): function to be applied to each submodule\n", + " | \n", + " | Returns:\n", + " | Module: self\n", + " | \n", + " | Example::\n", + " | \n", + " | >>> @torch.no_grad()\n", + " | >>> def init_weights(m):\n", + " | >>> print(m)\n", + " | >>> if type(m) == nn.Linear:\n", + " | >>> m.weight.fill_(1.0)\n", + " | >>> print(m.weight)\n", + " | >>> net = nn.Sequential(nn.Linear(2, 2), nn.Linear(2, 2))\n", + " | >>> net.apply(init_weights)\n", + " | Linear(in_features=2, out_features=2, bias=True)\n", + " | Parameter containing:\n", + " | tensor([[1., 1.],\n", + " | [1., 1.]], requires_grad=True)\n", + " | Linear(in_features=2, out_features=2, bias=True)\n", + " | Parameter containing:\n", + " | tensor([[1., 1.],\n", + " | [1., 1.]], requires_grad=True)\n", + " | Sequential(\n", + " | (0): Linear(in_features=2, out_features=2, bias=True)\n", + " | (1): Linear(in_features=2, out_features=2, bias=True)\n", + " | )\n", + " | \n", + " | bfloat16(self: ~T) -> ~T\n", + " | Casts all floating point parameters and buffers to ``bfloat16`` datatype.\n", + " | \n", + " | .. note::\n", + " | This method modifies the module in-place.\n", + " | \n", + " | Returns:\n", + " | Module: self\n", + " | \n", + " | buffers(self, recurse: bool = True) -> Iterator[torch.Tensor]\n", + " | Returns an iterator over module buffers.\n", + " | \n", + " | Args:\n", + " | recurse (bool): if True, then yields buffers of this module\n", + " | and all submodules. Otherwise, yields only buffers that\n", + " | are direct members of this module.\n", + " | \n", + " | Yields:\n", + " | torch.Tensor: module buffer\n", + " | \n", + " | Example::\n", + " | \n", + " | >>> # xdoctest: +SKIP(\"undefined vars\")\n", + " | >>> for buf in model.buffers():\n", + " | >>> print(type(buf), buf.size())\n", + " | (20L,)\n", + " | (20L, 1L, 5L, 5L)\n", + " | \n", + " | children(self) -> Iterator[ForwardRef('Module')]\n", + " | Returns an iterator over immediate children modules.\n", + " | \n", + " | Yields:\n", + " | Module: a child module\n", + " | \n", + " | cpu(self: ~T) -> ~T\n", + " | Moves all model parameters and buffers to the CPU.\n", + " | \n", + " | .. note::\n", + " | This method modifies the module in-place.\n", + " | \n", + " | Returns:\n", + " | Module: self\n", + " | \n", + " | cuda(self: ~T, device: Union[int, torch.device, NoneType] = None) -> ~T\n", + " | Moves all model parameters and buffers to the GPU.\n", + " | \n", + " | This also makes associated parameters and buffers different objects. So\n", + " | it should be called before constructing optimizer if the module will\n", + " | live on GPU while being optimized.\n", + " | \n", + " | .. note::\n", + " | This method modifies the module in-place.\n", + " | \n", + " | Args:\n", + " | device (int, optional): if specified, all parameters will be\n", + " | copied to that device\n", + " | \n", + " | Returns:\n", + " | Module: self\n", + " | \n", + " | double(self: ~T) -> ~T\n", + " | Casts all floating point parameters and buffers to ``double`` datatype.\n", + " | \n", + " | .. note::\n", + " | This method modifies the module in-place.\n", + " | \n", + " | Returns:\n", + " | Module: self\n", + " | \n", + " | eval(self: ~T) -> ~T\n", + " | Sets the module in evaluation mode.\n", + " | \n", + " | This has any effect only on certain modules. See documentations of\n", + " | particular modules for details of their behaviors in training/evaluation\n", + " | mode, if they are affected, e.g. :class:`Dropout`, :class:`BatchNorm`,\n", + " | etc.\n", + " | \n", + " | This is equivalent with :meth:`self.train(False) `.\n", + " | \n", + " | See :ref:`locally-disable-grad-doc` for a comparison between\n", + " | `.eval()` and several similar mechanisms that may be confused with it.\n", + " | \n", + " | Returns:\n", + " | Module: self\n", + " | \n", + " | extra_repr(self) -> str\n", + " | Set the extra representation of the module\n", + " | \n", + " | To print customized extra information, you should re-implement\n", + " | this method in your own modules. Both single-line and multi-line\n", + " | strings are acceptable.\n", + " | \n", + " | float(self: ~T) -> ~T\n", + " | Casts all floating point parameters and buffers to ``float`` datatype.\n", + " | \n", + " | .. note::\n", + " | This method modifies the module in-place.\n", + " | \n", + " | Returns:\n", + " | Module: self\n", + " | \n", + " | get_buffer(self, target: str) -> 'Tensor'\n", + " | Returns the buffer given by ``target`` if it exists,\n", + " | otherwise throws an error.\n", + " | \n", + " | See the docstring for ``get_submodule`` for a more detailed\n", + " | explanation of this method's functionality as well as how to\n", + " | correctly specify ``target``.\n", + " | \n", + " | Args:\n", + " | target: The fully-qualified string name of the buffer\n", + " | to look for. (See ``get_submodule`` for how to specify a\n", + " | fully-qualified string.)\n", + " | \n", + " | Returns:\n", + " | torch.Tensor: The buffer referenced by ``target``\n", + " | \n", + " | Raises:\n", + " | AttributeError: If the target string references an invalid\n", + " | path or resolves to something that is not a\n", + " | buffer\n", + " | \n", + " | get_extra_state(self) -> Any\n", + " | Returns any extra state to include in the module's state_dict.\n", + " | Implement this and a corresponding :func:`set_extra_state` for your module\n", + " | if you need to store extra state. This function is called when building the\n", + " | module's `state_dict()`.\n", + " | \n", + " | Note that extra state should be picklable to ensure working serialization\n", + " | of the state_dict. We only provide provide backwards compatibility guarantees\n", + " | for serializing Tensors; other objects may break backwards compatibility if\n", + " | their serialized pickled form changes.\n", + " | \n", + " | Returns:\n", + " | object: Any extra state to store in the module's state_dict\n", + " | \n", + " | get_parameter(self, target: str) -> 'Parameter'\n", + " | Returns the parameter given by ``target`` if it exists,\n", + " | otherwise throws an error.\n", + " | \n", + " | See the docstring for ``get_submodule`` for a more detailed\n", + " | explanation of this method's functionality as well as how to\n", + " | correctly specify ``target``.\n", + " | \n", + " | Args:\n", + " | target: The fully-qualified string name of the Parameter\n", + " | to look for. (See ``get_submodule`` for how to specify a\n", + " | fully-qualified string.)\n", + " | \n", + " | Returns:\n", + " | torch.nn.Parameter: The Parameter referenced by ``target``\n", + " | \n", + " | Raises:\n", + " | AttributeError: If the target string references an invalid\n", + " | path or resolves to something that is not an\n", + " | ``nn.Parameter``\n", + " | \n", + " | get_submodule(self, target: str) -> 'Module'\n", + " | Returns the submodule given by ``target`` if it exists,\n", + " | otherwise throws an error.\n", + " | \n", + " | For example, let's say you have an ``nn.Module`` ``A`` that\n", + " | looks like this:\n", + " | \n", + " | .. code-block:: text\n", + " | \n", + " | A(\n", + " | (net_b): Module(\n", + " | (net_c): Module(\n", + " | (conv): Conv2d(16, 33, kernel_size=(3, 3), stride=(2, 2))\n", + " | )\n", + " | (linear): Linear(in_features=100, out_features=200, bias=True)\n", + " | )\n", + " | )\n", + " | \n", + " | (The diagram shows an ``nn.Module`` ``A``. ``A`` has a nested\n", + " | submodule ``net_b``, which itself has two submodules ``net_c``\n", + " | and ``linear``. ``net_c`` then has a submodule ``conv``.)\n", + " | \n", + " | To check whether or not we have the ``linear`` submodule, we\n", + " | would call ``get_submodule(\"net_b.linear\")``. To check whether\n", + " | we have the ``conv`` submodule, we would call\n", + " | ``get_submodule(\"net_b.net_c.conv\")``.\n", + " | \n", + " | The runtime of ``get_submodule`` is bounded by the degree\n", + " | of module nesting in ``target``. A query against\n", + " | ``named_modules`` achieves the same result, but it is O(N) in\n", + " | the number of transitive modules. So, for a simple check to see\n", + " | if some submodule exists, ``get_submodule`` should always be\n", + " | used.\n", + " | \n", + " | Args:\n", + " | target: The fully-qualified string name of the submodule\n", + " | to look for. (See above example for how to specify a\n", + " | fully-qualified string.)\n", + " | \n", + " | Returns:\n", + " | torch.nn.Module: The submodule referenced by ``target``\n", + " | \n", + " | Raises:\n", + " | AttributeError: If the target string references an invalid\n", + " | path or resolves to something that is not an\n", + " | ``nn.Module``\n", + " | \n", + " | half(self: ~T) -> ~T\n", + " | Casts all floating point parameters and buffers to ``half`` datatype.\n", + " | \n", + " | .. note::\n", + " | This method modifies the module in-place.\n", + " | \n", + " | Returns:\n", + " | Module: self\n", + " | \n", + " | ipu(self: ~T, device: Union[int, torch.device, NoneType] = None) -> ~T\n", + " | Moves all model parameters and buffers to the IPU.\n", + " | \n", + " | This also makes associated parameters and buffers different objects. So\n", + " | it should be called before constructing optimizer if the module will\n", + " | live on IPU while being optimized.\n", + " | \n", + " | .. note::\n", + " | This method modifies the module in-place.\n", + " | \n", + " | Arguments:\n", + " | device (int, optional): if specified, all parameters will be\n", + " | copied to that device\n", + " | \n", + " | Returns:\n", + " | Module: self\n", + " | \n", + " | load_state_dict(self, state_dict: Mapping[str, Any], strict: bool = True)\n", + " | Copies parameters and buffers from :attr:`state_dict` into\n", + " | this module and its descendants. If :attr:`strict` is ``True``, then\n", + " | the keys of :attr:`state_dict` must exactly match the keys returned\n", + " | by this module's :meth:`~torch.nn.Module.state_dict` function.\n", + " | \n", + " | Args:\n", + " | state_dict (dict): a dict containing parameters and\n", + " | persistent buffers.\n", + " | strict (bool, optional): whether to strictly enforce that the keys\n", + " | in :attr:`state_dict` match the keys returned by this module's\n", + " | :meth:`~torch.nn.Module.state_dict` function. Default: ``True``\n", + " | \n", + " | Returns:\n", + " | ``NamedTuple`` with ``missing_keys`` and ``unexpected_keys`` fields:\n", + " | * **missing_keys** is a list of str containing the missing keys\n", + " | * **unexpected_keys** is a list of str containing the unexpected keys\n", + " | \n", + " | Note:\n", + " | If a parameter or buffer is registered as ``None`` and its corresponding key\n", + " | exists in :attr:`state_dict`, :meth:`load_state_dict` will raise a\n", + " | ``RuntimeError``.\n", + " | \n", + " | modules(self) -> Iterator[ForwardRef('Module')]\n", + " | Returns an iterator over all modules in the network.\n", + " | \n", + " | Yields:\n", + " | Module: a module in the network\n", + " | \n", + " | Note:\n", + " | Duplicate modules are returned only once. In the following\n", + " | example, ``l`` will be returned only once.\n", + " | \n", + " | Example::\n", + " | \n", + " | >>> l = nn.Linear(2, 2)\n", + " | >>> net = nn.Sequential(l, l)\n", + " | >>> for idx, m in enumerate(net.modules()):\n", + " | ... print(idx, '->', m)\n", + " | \n", + " | 0 -> Sequential(\n", + " | (0): Linear(in_features=2, out_features=2, bias=True)\n", + " | (1): Linear(in_features=2, out_features=2, bias=True)\n", + " | )\n", + " | 1 -> Linear(in_features=2, out_features=2, bias=True)\n", + " | \n", + " | named_buffers(self, prefix: str = '', recurse: bool = True, remove_duplicate: bool = True) -> Iterator[Tuple[str, torch.Tensor]]\n", + " | Returns an iterator over module buffers, yielding both the\n", + " | name of the buffer as well as the buffer itself.\n", + " | \n", + " | Args:\n", + " | prefix (str): prefix to prepend to all buffer names.\n", + " | recurse (bool, optional): if True, then yields buffers of this module\n", + " | and all submodules. Otherwise, yields only buffers that\n", + " | are direct members of this module. Defaults to True.\n", + " | remove_duplicate (bool, optional): whether to remove the duplicated buffers in the result. Defaults to True.\n", + " | \n", + " | Yields:\n", + " | (str, torch.Tensor): Tuple containing the name and buffer\n", + " | \n", + " | Example::\n", + " | \n", + " | >>> # xdoctest: +SKIP(\"undefined vars\")\n", + " | >>> for name, buf in self.named_buffers():\n", + " | >>> if name in ['running_var']:\n", + " | >>> print(buf.size())\n", + " | \n", + " | named_children(self) -> Iterator[Tuple[str, ForwardRef('Module')]]\n", + " | Returns an iterator over immediate children modules, yielding both\n", + " | the name of the module as well as the module itself.\n", + " | \n", + " | Yields:\n", + " | (str, Module): Tuple containing a name and child module\n", + " | \n", + " | Example::\n", + " | \n", + " | >>> # xdoctest: +SKIP(\"undefined vars\")\n", + " | >>> for name, module in model.named_children():\n", + " | >>> if name in ['conv4', 'conv5']:\n", + " | >>> print(module)\n", + " | \n", + " | named_modules(self, memo: Union[Set[ForwardRef('Module')], NoneType] = None, prefix: str = '', remove_duplicate: bool = True)\n", + " | Returns an iterator over all modules in the network, yielding\n", + " | both the name of the module as well as the module itself.\n", + " | \n", + " | Args:\n", + " | memo: a memo to store the set of modules already added to the result\n", + " | prefix: a prefix that will be added to the name of the module\n", + " | remove_duplicate: whether to remove the duplicated module instances in the result\n", + " | or not\n", + " | \n", + " | Yields:\n", + " | (str, Module): Tuple of name and module\n", + " | \n", + " | Note:\n", + " | Duplicate modules are returned only once. In the following\n", + " | example, ``l`` will be returned only once.\n", + " | \n", + " | Example::\n", + " | \n", + " | >>> l = nn.Linear(2, 2)\n", + " | >>> net = nn.Sequential(l, l)\n", + " | >>> for idx, m in enumerate(net.named_modules()):\n", + " | ... print(idx, '->', m)\n", + " | \n", + " | 0 -> ('', Sequential(\n", + " | (0): Linear(in_features=2, out_features=2, bias=True)\n", + " | (1): Linear(in_features=2, out_features=2, bias=True)\n", + " | ))\n", + " | 1 -> ('0', Linear(in_features=2, out_features=2, bias=True))\n", + " | \n", + " | named_parameters(self, prefix: str = '', recurse: bool = True, remove_duplicate: bool = True) -> Iterator[Tuple[str, torch.nn.parameter.Parameter]]\n", + " | Returns an iterator over module parameters, yielding both the\n", + " | name of the parameter as well as the parameter itself.\n", + " | \n", + " | Args:\n", + " | prefix (str): prefix to prepend to all parameter names.\n", + " | recurse (bool): if True, then yields parameters of this module\n", + " | and all submodules. Otherwise, yields only parameters that\n", + " | are direct members of this module.\n", + " | remove_duplicate (bool, optional): whether to remove the duplicated\n", + " | parameters in the result. Defaults to True.\n", + " | \n", + " | Yields:\n", + " | (str, Parameter): Tuple containing the name and parameter\n", + " | \n", + " | Example::\n", + " | \n", + " | >>> # xdoctest: +SKIP(\"undefined vars\")\n", + " | >>> for name, param in self.named_parameters():\n", + " | >>> if name in ['bias']:\n", + " | >>> print(param.size())\n", + " | \n", + " | parameters(self, recurse: bool = True) -> Iterator[torch.nn.parameter.Parameter]\n", + " | Returns an iterator over module parameters.\n", + " | \n", + " | This is typically passed to an optimizer.\n", + " | \n", + " | Args:\n", + " | recurse (bool): if True, then yields parameters of this module\n", + " | and all submodules. Otherwise, yields only parameters that\n", + " | are direct members of this module.\n", + " | \n", + " | Yields:\n", + " | Parameter: module parameter\n", + " | \n", + " | Example::\n", + " | \n", + " | >>> # xdoctest: +SKIP(\"undefined vars\")\n", + " | >>> for param in model.parameters():\n", + " | >>> print(type(param), param.size())\n", + " | (20L,)\n", + " | (20L, 1L, 5L, 5L)\n", + " | \n", + " | register_backward_hook(self, hook: Callable[[ForwardRef('Module'), Union[Tuple[torch.Tensor, ...], torch.Tensor], Union[Tuple[torch.Tensor, ...], torch.Tensor]], Union[NoneType, Tuple[torch.Tensor, ...], torch.Tensor]]) -> torch.utils.hooks.RemovableHandle\n", + " | Registers a backward hook on the module.\n", + " | \n", + " | This function is deprecated in favor of :meth:`~torch.nn.Module.register_full_backward_hook` and\n", + " | the behavior of this function will change in future versions.\n", + " | \n", + " | Returns:\n", + " | :class:`torch.utils.hooks.RemovableHandle`:\n", + " | a handle that can be used to remove the added hook by calling\n", + " | ``handle.remove()``\n", + " | \n", + " | register_buffer(self, name: str, tensor: Union[torch.Tensor, NoneType], persistent: bool = True) -> None\n", + " | Adds a buffer to the module.\n", + " | \n", + " | This is typically used to register a buffer that should not to be\n", + " | considered a model parameter. For example, BatchNorm's ``running_mean``\n", + " | is not a parameter, but is part of the module's state. Buffers, by\n", + " | default, are persistent and will be saved alongside parameters. This\n", + " | behavior can be changed by setting :attr:`persistent` to ``False``. The\n", + " | only difference between a persistent buffer and a non-persistent buffer\n", + " | is that the latter will not be a part of this module's\n", + " | :attr:`state_dict`.\n", + " | \n", + " | Buffers can be accessed as attributes using given names.\n", + " | \n", + " | Args:\n", + " | name (str): name of the buffer. The buffer can be accessed\n", + " | from this module using the given name\n", + " | tensor (Tensor or None): buffer to be registered. If ``None``, then operations\n", + " | that run on buffers, such as :attr:`cuda`, are ignored. If ``None``,\n", + " | the buffer is **not** included in the module's :attr:`state_dict`.\n", + " | persistent (bool): whether the buffer is part of this module's\n", + " | :attr:`state_dict`.\n", + " | \n", + " | Example::\n", + " | \n", + " | >>> # xdoctest: +SKIP(\"undefined vars\")\n", + " | >>> self.register_buffer('running_mean', torch.zeros(num_features))\n", + " | \n", + " | register_forward_hook(self, hook: Union[Callable[[~T, Tuple[Any, ...], Any], Union[Any, NoneType]], Callable[[~T, Tuple[Any, ...], Dict[str, Any], Any], Union[Any, NoneType]]], *, prepend: bool = False, with_kwargs: bool = False) -> torch.utils.hooks.RemovableHandle\n", + " | Registers a forward hook on the module.\n", + " | \n", + " | The hook will be called every time after :func:`forward` has computed an output.\n", + " | \n", + " | If ``with_kwargs`` is ``False`` or not specified, the input contains only\n", + " | the positional arguments given to the module. Keyword arguments won't be\n", + " | passed to the hooks and only to the ``forward``. The hook can modify the\n", + " | output. It can modify the input inplace but it will not have effect on\n", + " | forward since this is called after :func:`forward` is called. The hook\n", + " | should have the following signature::\n", + " | \n", + " | hook(module, args, output) -> None or modified output\n", + " | \n", + " | If ``with_kwargs`` is ``True``, the forward hook will be passed the\n", + " | ``kwargs`` given to the forward function and be expected to return the\n", + " | output possibly modified. The hook should have the following signature::\n", + " | \n", + " | hook(module, args, kwargs, output) -> None or modified output\n", + " | \n", + " | Args:\n", + " | hook (Callable): The user defined hook to be registered.\n", + " | prepend (bool): If ``True``, the provided ``hook`` will be fired\n", + " | before all existing ``forward`` hooks on this\n", + " | :class:`torch.nn.modules.Module`. Otherwise, the provided\n", + " | ``hook`` will be fired after all existing ``forward`` hooks on\n", + " | this :class:`torch.nn.modules.Module`. Note that global\n", + " | ``forward`` hooks registered with\n", + " | :func:`register_module_forward_hook` will fire before all hooks\n", + " | registered by this method.\n", + " | Default: ``False``\n", + " | with_kwargs (bool): If ``True``, the ``hook`` will be passed the\n", + " | kwargs given to the forward function.\n", + " | Default: ``False``\n", + " | \n", + " | Returns:\n", + " | :class:`torch.utils.hooks.RemovableHandle`:\n", + " | a handle that can be used to remove the added hook by calling\n", + " | ``handle.remove()``\n", + " | \n", + " | register_forward_pre_hook(self, hook: Union[Callable[[~T, Tuple[Any, ...]], Union[Any, NoneType]], Callable[[~T, Tuple[Any, ...], Dict[str, Any]], Union[Tuple[Any, Dict[str, Any]], NoneType]]], *, prepend: bool = False, with_kwargs: bool = False) -> torch.utils.hooks.RemovableHandle\n", + " | Registers a forward pre-hook on the module.\n", + " | \n", + " | The hook will be called every time before :func:`forward` is invoked.\n", + " | \n", + " | \n", + " | If ``with_kwargs`` is false or not specified, the input contains only\n", + " | the positional arguments given to the module. Keyword arguments won't be\n", + " | passed to the hooks and only to the ``forward``. The hook can modify the\n", + " | input. User can either return a tuple or a single modified value in the\n", + " | hook. We will wrap the value into a tuple if a single value is returned\n", + " | (unless that value is already a tuple). The hook should have the\n", + " | following signature::\n", + " | \n", + " | hook(module, args) -> None or modified input\n", + " | \n", + " | If ``with_kwargs`` is true, the forward pre-hook will be passed the\n", + " | kwargs given to the forward function. And if the hook modifies the\n", + " | input, both the args and kwargs should be returned. The hook should have\n", + " | the following signature::\n", + " | \n", + " | hook(module, args, kwargs) -> None or a tuple of modified input and kwargs\n", + " | \n", + " | Args:\n", + " | hook (Callable): The user defined hook to be registered.\n", + " | prepend (bool): If true, the provided ``hook`` will be fired before\n", + " | all existing ``forward_pre`` hooks on this\n", + " | :class:`torch.nn.modules.Module`. Otherwise, the provided\n", + " | ``hook`` will be fired after all existing ``forward_pre`` hooks\n", + " | on this :class:`torch.nn.modules.Module`. Note that global\n", + " | ``forward_pre`` hooks registered with\n", + " | :func:`register_module_forward_pre_hook` will fire before all\n", + " | hooks registered by this method.\n", + " | Default: ``False``\n", + " | with_kwargs (bool): If true, the ``hook`` will be passed the kwargs\n", + " | given to the forward function.\n", + " | Default: ``False``\n", + " | \n", + " | Returns:\n", + " | :class:`torch.utils.hooks.RemovableHandle`:\n", + " | a handle that can be used to remove the added hook by calling\n", + " | ``handle.remove()``\n", + " | \n", + " | register_full_backward_hook(self, hook: Callable[[ForwardRef('Module'), Union[Tuple[torch.Tensor, ...], torch.Tensor], Union[Tuple[torch.Tensor, ...], torch.Tensor]], Union[NoneType, Tuple[torch.Tensor, ...], torch.Tensor]], prepend: bool = False) -> torch.utils.hooks.RemovableHandle\n", + " | Registers a backward hook on the module.\n", + " | \n", + " | The hook will be called every time the gradients with respect to a module\n", + " | are computed, i.e. the hook will execute if and only if the gradients with\n", + " | respect to module outputs are computed. The hook should have the following\n", + " | signature::\n", + " | \n", + " | hook(module, grad_input, grad_output) -> tuple(Tensor) or None\n", + " | \n", + " | The :attr:`grad_input` and :attr:`grad_output` are tuples that contain the gradients\n", + " | with respect to the inputs and outputs respectively. The hook should\n", + " | not modify its arguments, but it can optionally return a new gradient with\n", + " | respect to the input that will be used in place of :attr:`grad_input` in\n", + " | subsequent computations. :attr:`grad_input` will only correspond to the inputs given\n", + " | as positional arguments and all kwarg arguments are ignored. Entries\n", + " | in :attr:`grad_input` and :attr:`grad_output` will be ``None`` for all non-Tensor\n", + " | arguments.\n", + " | \n", + " | For technical reasons, when this hook is applied to a Module, its forward function will\n", + " | receive a view of each Tensor passed to the Module. Similarly the caller will receive a view\n", + " | of each Tensor returned by the Module's forward function.\n", + " | \n", + " | .. warning ::\n", + " | Modifying inputs or outputs inplace is not allowed when using backward hooks and\n", + " | will raise an error.\n", + " | \n", + " | Args:\n", + " | hook (Callable): The user-defined hook to be registered.\n", + " | prepend (bool): If true, the provided ``hook`` will be fired before\n", + " | all existing ``backward`` hooks on this\n", + " | :class:`torch.nn.modules.Module`. Otherwise, the provided\n", + " | ``hook`` will be fired after all existing ``backward`` hooks on\n", + " | this :class:`torch.nn.modules.Module`. Note that global\n", + " | ``backward`` hooks registered with\n", + " | :func:`register_module_full_backward_hook` will fire before\n", + " | all hooks registered by this method.\n", + " | \n", + " | Returns:\n", + " | :class:`torch.utils.hooks.RemovableHandle`:\n", + " | a handle that can be used to remove the added hook by calling\n", + " | ``handle.remove()``\n", + " | \n", + " | register_full_backward_pre_hook(self, hook: Callable[[ForwardRef('Module'), Union[Tuple[torch.Tensor, ...], torch.Tensor]], Union[NoneType, Tuple[torch.Tensor, ...], torch.Tensor]], prepend: bool = False) -> torch.utils.hooks.RemovableHandle\n", + " | Registers a backward pre-hook on the module.\n", + " | \n", + " | The hook will be called every time the gradients for the module are computed.\n", + " | The hook should have the following signature::\n", + " | \n", + " | hook(module, grad_output) -> Tensor or None\n", + " | \n", + " | The :attr:`grad_output` is a tuple. The hook should\n", + " | not modify its arguments, but it can optionally return a new gradient with\n", + " | respect to the output that will be used in place of :attr:`grad_output` in\n", + " | subsequent computations. Entries in :attr:`grad_output` will be ``None`` for\n", + " | all non-Tensor arguments.\n", + " | \n", + " | For technical reasons, when this hook is applied to a Module, its forward function will\n", + " | receive a view of each Tensor passed to the Module. Similarly the caller will receive a view\n", + " | of each Tensor returned by the Module's forward function.\n", + " | \n", + " | .. warning ::\n", + " | Modifying inputs inplace is not allowed when using backward hooks and\n", + " | will raise an error.\n", + " | \n", + " | Args:\n", + " | hook (Callable): The user-defined hook to be registered.\n", + " | prepend (bool): If true, the provided ``hook`` will be fired before\n", + " | all existing ``backward_pre`` hooks on this\n", + " | :class:`torch.nn.modules.Module`. Otherwise, the provided\n", + " | ``hook`` will be fired after all existing ``backward_pre`` hooks\n", + " | on this :class:`torch.nn.modules.Module`. Note that global\n", + " | ``backward_pre`` hooks registered with\n", + " | :func:`register_module_full_backward_pre_hook` will fire before\n", + " | all hooks registered by this method.\n", + " | \n", + " | Returns:\n", + " | :class:`torch.utils.hooks.RemovableHandle`:\n", + " | a handle that can be used to remove the added hook by calling\n", + " | ``handle.remove()``\n", + " | \n", + " | register_load_state_dict_post_hook(self, hook)\n", + " | Registers a post hook to be run after module's ``load_state_dict``\n", + " | is called.\n", + " | \n", + " | It should have the following signature::\n", + " | hook(module, incompatible_keys) -> None\n", + " | \n", + " | The ``module`` argument is the current module that this hook is registered\n", + " | on, and the ``incompatible_keys`` argument is a ``NamedTuple`` consisting\n", + " | of attributes ``missing_keys`` and ``unexpected_keys``. ``missing_keys``\n", + " | is a ``list`` of ``str`` containing the missing keys and\n", + " | ``unexpected_keys`` is a ``list`` of ``str`` containing the unexpected keys.\n", + " | \n", + " | The given incompatible_keys can be modified inplace if needed.\n", + " | \n", + " | Note that the checks performed when calling :func:`load_state_dict` with\n", + " | ``strict=True`` are affected by modifications the hook makes to\n", + " | ``missing_keys`` or ``unexpected_keys``, as expected. Additions to either\n", + " | set of keys will result in an error being thrown when ``strict=True``, and\n", + " | clearing out both missing and unexpected keys will avoid an error.\n", + " | \n", + " | Returns:\n", + " | :class:`torch.utils.hooks.RemovableHandle`:\n", + " | a handle that can be used to remove the added hook by calling\n", + " | ``handle.remove()``\n", + " | \n", + " | register_module(self, name: str, module: Union[ForwardRef('Module'), NoneType]) -> None\n", + " | Alias for :func:`add_module`.\n", + " | \n", + " | register_parameter(self, name: str, param: Union[torch.nn.parameter.Parameter, NoneType]) -> None\n", + " | Adds a parameter to the module.\n", + " | \n", + " | The parameter can be accessed as an attribute using given name.\n", + " | \n", + " | Args:\n", + " | name (str): name of the parameter. The parameter can be accessed\n", + " | from this module using the given name\n", + " | param (Parameter or None): parameter to be added to the module. If\n", + " | ``None``, then operations that run on parameters, such as :attr:`cuda`,\n", + " | are ignored. If ``None``, the parameter is **not** included in the\n", + " | module's :attr:`state_dict`.\n", + " | \n", + " | register_state_dict_pre_hook(self, hook)\n", + " | These hooks will be called with arguments: ``self``, ``prefix``,\n", + " | and ``keep_vars`` before calling ``state_dict`` on ``self``. The registered\n", + " | hooks can be used to perform pre-processing before the ``state_dict``\n", + " | call is made.\n", + " | \n", + " | requires_grad_(self: ~T, requires_grad: bool = True) -> ~T\n", + " | Change if autograd should record operations on parameters in this\n", + " | module.\n", + " | \n", + " | This method sets the parameters' :attr:`requires_grad` attributes\n", + " | in-place.\n", + " | \n", + " | This method is helpful for freezing part of the module for finetuning\n", + " | or training parts of a model individually (e.g., GAN training).\n", + " | \n", + " | See :ref:`locally-disable-grad-doc` for a comparison between\n", + " | `.requires_grad_()` and several similar mechanisms that may be confused with it.\n", + " | \n", + " | Args:\n", + " | requires_grad (bool): whether autograd should record operations on\n", + " | parameters in this module. Default: ``True``.\n", + " | \n", + " | Returns:\n", + " | Module: self\n", + " | \n", + " | set_extra_state(self, state: Any)\n", + " | This function is called from :func:`load_state_dict` to handle any extra state\n", + " | found within the `state_dict`. Implement this function and a corresponding\n", + " | :func:`get_extra_state` for your module if you need to store extra state within its\n", + " | `state_dict`.\n", + " | \n", + " | Args:\n", + " | state (dict): Extra state from the `state_dict`\n", + " | \n", + " | share_memory(self: ~T) -> ~T\n", + " | See :meth:`torch.Tensor.share_memory_`\n", + " | \n", + " | state_dict(self, *args, destination=None, prefix='', keep_vars=False)\n", + " | Returns a dictionary containing references to the whole state of the module.\n", + " | \n", + " | Both parameters and persistent buffers (e.g. running averages) are\n", + " | included. Keys are corresponding parameter and buffer names.\n", + " | Parameters and buffers set to ``None`` are not included.\n", + " | \n", + " | .. note::\n", + " | The returned object is a shallow copy. It contains references\n", + " | to the module's parameters and buffers.\n", + " | \n", + " | .. warning::\n", + " | Currently ``state_dict()`` also accepts positional arguments for\n", + " | ``destination``, ``prefix`` and ``keep_vars`` in order. However,\n", + " | this is being deprecated and keyword arguments will be enforced in\n", + " | future releases.\n", + " | \n", + " | .. warning::\n", + " | Please avoid the use of argument ``destination`` as it is not\n", + " | designed for end-users.\n", + " | \n", + " | Args:\n", + " | destination (dict, optional): If provided, the state of module will\n", + " | be updated into the dict and the same object is returned.\n", + " | Otherwise, an ``OrderedDict`` will be created and returned.\n", + " | Default: ``None``.\n", + " | prefix (str, optional): a prefix added to parameter and buffer\n", + " | names to compose the keys in state_dict. Default: ``''``.\n", + " | keep_vars (bool, optional): by default the :class:`~torch.Tensor` s\n", + " | returned in the state dict are detached from autograd. If it's\n", + " | set to ``True``, detaching will not be performed.\n", + " | Default: ``False``.\n", + " | \n", + " | Returns:\n", + " | dict:\n", + " | a dictionary containing a whole state of the module\n", + " | \n", + " | Example::\n", + " | \n", + " | >>> # xdoctest: +SKIP(\"undefined vars\")\n", + " | >>> module.state_dict().keys()\n", + " | ['bias', 'weight']\n", + " | \n", + " | to(self, *args, **kwargs)\n", + " | Moves and/or casts the parameters and buffers.\n", + " | \n", + " | This can be called as\n", + " | \n", + " | .. function:: to(device=None, dtype=None, non_blocking=False)\n", + " | :noindex:\n", + " | \n", + " | .. function:: to(dtype, non_blocking=False)\n", + " | :noindex:\n", + " | \n", + " | .. function:: to(tensor, non_blocking=False)\n", + " | :noindex:\n", + " | \n", + " | .. function:: to(memory_format=torch.channels_last)\n", + " | :noindex:\n", + " | \n", + " | Its signature is similar to :meth:`torch.Tensor.to`, but only accepts\n", + " | floating point or complex :attr:`dtype`\\ s. In addition, this method will\n", + " | only cast the floating point or complex parameters and buffers to :attr:`dtype`\n", + " | (if given). The integral parameters and buffers will be moved\n", + " | :attr:`device`, if that is given, but with dtypes unchanged. When\n", + " | :attr:`non_blocking` is set, it tries to convert/move asynchronously\n", + " | with respect to the host if possible, e.g., moving CPU Tensors with\n", + " | pinned memory to CUDA devices.\n", + " | \n", + " | See below for examples.\n", + " | \n", + " | .. note::\n", + " | This method modifies the module in-place.\n", + " | \n", + " | Args:\n", + " | device (:class:`torch.device`): the desired device of the parameters\n", + " | and buffers in this module\n", + " | dtype (:class:`torch.dtype`): the desired floating point or complex dtype of\n", + " | the parameters and buffers in this module\n", + " | tensor (torch.Tensor): Tensor whose dtype and device are the desired\n", + " | dtype and device for all parameters and buffers in this module\n", + " | memory_format (:class:`torch.memory_format`): the desired memory\n", + " | format for 4D parameters and buffers in this module (keyword\n", + " | only argument)\n", + " | \n", + " | Returns:\n", + " | Module: self\n", + " | \n", + " | Examples::\n", + " | \n", + " | >>> # xdoctest: +IGNORE_WANT(\"non-deterministic\")\n", + " | >>> linear = nn.Linear(2, 2)\n", + " | >>> linear.weight\n", + " | Parameter containing:\n", + " | tensor([[ 0.1913, -0.3420],\n", + " | [-0.5113, -0.2325]])\n", + " | >>> linear.to(torch.double)\n", + " | Linear(in_features=2, out_features=2, bias=True)\n", + " | >>> linear.weight\n", + " | Parameter containing:\n", + " | tensor([[ 0.1913, -0.3420],\n", + " | [-0.5113, -0.2325]], dtype=torch.float64)\n", + " | >>> # xdoctest: +REQUIRES(env:TORCH_DOCTEST_CUDA1)\n", + " | >>> gpu1 = torch.device(\"cuda:1\")\n", + " | >>> linear.to(gpu1, dtype=torch.half, non_blocking=True)\n", + " | Linear(in_features=2, out_features=2, bias=True)\n", + " | >>> linear.weight\n", + " | Parameter containing:\n", + " | tensor([[ 0.1914, -0.3420],\n", + " | [-0.5112, -0.2324]], dtype=torch.float16, device='cuda:1')\n", + " | >>> cpu = torch.device(\"cpu\")\n", + " | >>> linear.to(cpu)\n", + " | Linear(in_features=2, out_features=2, bias=True)\n", + " | >>> linear.weight\n", + " | Parameter containing:\n", + " | tensor([[ 0.1914, -0.3420],\n", + " | [-0.5112, -0.2324]], dtype=torch.float16)\n", + " | \n", + " | >>> linear = nn.Linear(2, 2, bias=None).to(torch.cdouble)\n", + " | >>> linear.weight\n", + " | Parameter containing:\n", + " | tensor([[ 0.3741+0.j, 0.2382+0.j],\n", + " | [ 0.5593+0.j, -0.4443+0.j]], dtype=torch.complex128)\n", + " | >>> linear(torch.ones(3, 2, dtype=torch.cdouble))\n", + " | tensor([[0.6122+0.j, 0.1150+0.j],\n", + " | [0.6122+0.j, 0.1150+0.j],\n", + " | [0.6122+0.j, 0.1150+0.j]], dtype=torch.complex128)\n", + " | \n", + " | to_empty(self: ~T, *, device: Union[str, torch.device]) -> ~T\n", + " | Moves the parameters and buffers to the specified device without copying storage.\n", + " | \n", + " | Args:\n", + " | device (:class:`torch.device`): The desired device of the parameters\n", + " | and buffers in this module.\n", + " | \n", + " | Returns:\n", + " | Module: self\n", + " | \n", + " | train(self: ~T, mode: bool = True) -> ~T\n", + " | Sets the module in training mode.\n", + " | \n", + " | This has any effect only on certain modules. See documentations of\n", + " | particular modules for details of their behaviors in training/evaluation\n", + " | mode, if they are affected, e.g. :class:`Dropout`, :class:`BatchNorm`,\n", + " | etc.\n", + " | \n", + " | Args:\n", + " | mode (bool): whether to set training mode (``True``) or evaluation\n", + " | mode (``False``). Default: ``True``.\n", + " | \n", + " | Returns:\n", + " | Module: self\n", + " | \n", + " | type(self: ~T, dst_type: Union[torch.dtype, str]) -> ~T\n", + " | Casts all parameters and buffers to :attr:`dst_type`.\n", + " | \n", + " | .. note::\n", + " | This method modifies the module in-place.\n", + " | \n", + " | Args:\n", + " | dst_type (type or string): the desired type\n", + " | \n", + " | Returns:\n", + " | Module: self\n", + " | \n", + " | xpu(self: ~T, device: Union[int, torch.device, NoneType] = None) -> ~T\n", + " | Moves all model parameters and buffers to the XPU.\n", + " | \n", + " | This also makes associated parameters and buffers different objects. So\n", + " | it should be called before constructing optimizer if the module will\n", + " | live on XPU while being optimized.\n", + " | \n", + " | .. note::\n", + " | This method modifies the module in-place.\n", + " | \n", + " | Arguments:\n", + " | device (int, optional): if specified, all parameters will be\n", + " | copied to that device\n", + " | \n", + " | Returns:\n", + " | Module: self\n", + " | \n", + " | zero_grad(self, set_to_none: bool = True) -> None\n", + " | Sets gradients of all model parameters to zero. See similar function\n", + " | under :class:`torch.optim.Optimizer` for more context.\n", + " | \n", + " | Args:\n", + " | set_to_none (bool): instead of setting to zero, set the grads to None.\n", + " | See :meth:`torch.optim.Optimizer.zero_grad` for details.\n", + " | \n", + " | ----------------------------------------------------------------------\n", + " | Data descriptors inherited from torch.nn.modules.module.Module:\n", + " | \n", + " | __dict__\n", + " | dictionary for instance variables (if defined)\n", + " | \n", + " | __weakref__\n", + " | list of weak references to the object (if defined)\n", + " | \n", + " | ----------------------------------------------------------------------\n", + " | Data and other attributes inherited from torch.nn.modules.module.Module:\n", + " | \n", + " | T_destination = ~T_destination\n", + " | \n", + " | __annotations__ = {'__call__': typing.Callable[..., typing.Any], '_bac...\n", + " | \n", + " | call_super_init = False\n", + " | \n", + " | dump_patches = False\n", + "\n" + ] + } + ], + "source": [ + "help(vocab)" + ] + }, + { + "cell_type": "code", + "execution_count": 14, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "1000\n", + "2000\n", + "3000\n", + "4000\n", + "5000\n", + "6000\n", + "7000\n", + "8000\n", + "9000\n", + "10000\n", + "11000\n", + "12000\n", + "13000\n", + "14000\n", + "15000\n", + "16000\n", + "17000\n", + "18000\n", + "19000\n", + "20000\n", + "21000\n", + "22000\n", + "23000\n", + "24000\n", + "25000\n", + "26000\n", + "27000\n", + "28000\n", + "29000\n", + "30000\n", + "31000\n", + "32000\n", + "33000\n", + "34000\n", + "35000\n", + "36000\n", + "37000\n", + "38000\n", + "39000\n", + "40000\n", + "41000\n", + "42000\n", + "43000\n", + "44000\n", + "45000\n", + "46000\n", + "47000\n", + "48000\n", + "49000\n", + "50000\n", + "51000\n", + "52000\n", + "53000\n", + "54000\n", + "55000\n", + "56000\n", + "57000\n", + "58000\n", + "59000\n", + "60000\n", + "61000\n", + "62000\n", + "63000\n", + "64000\n", + "65000\n", + "66000\n", + "67000\n", + "68000\n", + "69000\n", + "70000\n", + "71000\n", + "72000\n", + "73000\n", + "74000\n", + "75000\n", + "76000\n", + "77000\n", + "78000\n", + "79000\n", + "80000\n", + "81000\n", + "82000\n", + "83000\n", + "84000\n", + "85000\n", + "86000\n", + "87000\n", + "88000\n", + "89000\n", + "90000\n", + "91000\n", + "92000\n", + "93000\n", + "94000\n", + "95000\n", + "96000\n", + "97000\n", + "98000\n", + "99000\n", + "100000\n", + "101000\n", + "102000\n", + "103000\n", + "104000\n", + "105000\n", + "106000\n", + "107000\n", + "108000\n", + "109000\n", + "110000\n", + "111000\n", + "112000\n", + "113000\n", + "114000\n", + "115000\n", + "116000\n", + "117000\n", + "118000\n", + "119000\n", + "120000\n", + "121000\n", + "122000\n", + "123000\n", + "124000\n", + "125000\n", + "126000\n", + "127000\n", + "128000\n", + "129000\n", + "130000\n", + "131000\n", + "132000\n", + "133000\n", + "134000\n", + "135000\n", + "136000\n", + "137000\n", + "138000\n", + "139000\n", + "140000\n", + "141000\n", + "142000\n", + "143000\n", + "144000\n", + "145000\n", + "146000\n", + "147000\n", + "148000\n", + "149000\n", + "150000\n", + "151000\n", + "152000\n", + "153000\n", + "154000\n", + "155000\n", + "156000\n", + "157000\n", + "158000\n", + "159000\n", + "160000\n", + "161000\n", + "162000\n", + "163000\n", + "164000\n", + "165000\n", + "166000\n", + "167000\n", + "168000\n", + "169000\n", + "170000\n", + "171000\n", + "172000\n", + "173000\n", + "174000\n", + "175000\n", + "176000\n", + "177000\n", + "178000\n", + "179000\n", + "180000\n", + "181000\n", + "182000\n", + "183000\n", + "184000\n", + "185000\n", + "186000\n", + "187000\n", + "188000\n", + "189000\n", + "190000\n", + "191000\n", + "192000\n", + "193000\n", + "194000\n", + "195000\n", + "196000\n", + "197000\n", + "198000\n", + "199000\n", + "200000\n", + "201000\n", + "202000\n", + "203000\n", + "204000\n", + "205000\n", + "206000\n", + "207000\n", + "208000\n", + "209000\n", + "210000\n", + "211000\n", + "212000\n", + "213000\n", + "214000\n", + "215000\n", + "216000\n", + "217000\n", + "218000\n", + "219000\n", + "220000\n", + "221000\n", + "222000\n", + "223000\n", + "224000\n", + "225000\n", + "226000\n", + "227000\n", + "228000\n", + "229000\n", + "230000\n", + "231000\n", + "232000\n", + "233000\n", + "234000\n", + "235000\n", + "236000\n", + "237000\n", + "238000\n", + "239000\n", + "240000\n", + "241000\n", + "242000\n", + "243000\n", + "244000\n", + "245000\n", + "246000\n", + "247000\n", + "248000\n", + "249000\n", + "250000\n", + "251000\n", + "252000\n", + "253000\n", + "254000\n", + "255000\n", + "256000\n", + "257000\n", + "258000\n", + "259000\n", + "260000\n", + "261000\n", + "262000\n", + "263000\n", + "264000\n", + "265000\n", + "266000\n", + "267000\n", + "268000\n", + "269000\n", + "270000\n", + "271000\n", + "272000\n", + "273000\n", + "274000\n", + "275000\n", + "276000\n", + "277000\n", + "278000\n", + "279000\n", + "280000\n", + "281000\n", + "282000\n", + "283000\n", + "284000\n", + "285000\n", + "286000\n", + "287000\n", + "288000\n", + "289000\n", + "290000\n", + "291000\n", + "292000\n", + "293000\n", + "294000\n", + "295000\n", + "296000\n", + "297000\n", + "298000\n", + "299000\n", + "300000\n", + "301000\n", + "302000\n", + "303000\n", + "304000\n", + "305000\n", + "306000\n", + "307000\n", + "308000\n", + "309000\n", + "310000\n", + "311000\n", + "312000\n", + "313000\n", + "314000\n", + "315000\n", + "316000\n", + "317000\n", + "318000\n", + "319000\n", + "320000\n", + "321000\n", + "322000\n", + "323000\n", + "324000\n", + "325000\n", + "326000\n", + "327000\n", + "328000\n", + "329000\n", + "330000\n", + "331000\n", + "332000\n", + "333000\n", + "334000\n", + "335000\n", + "336000\n", + "337000\n", + "338000\n", + "339000\n", + "340000\n", + "341000\n", + "342000\n", + "343000\n", + "344000\n", + "345000\n", + "346000\n", + "347000\n", + "348000\n", + "349000\n", + "350000\n", + "351000\n", + "352000\n", + "353000\n", + "354000\n", + "355000\n", + "356000\n", + "357000\n", + "358000\n", + "359000\n", + "360000\n", + "361000\n", + "362000\n", + "363000\n", + "364000\n", + "365000\n", + "366000\n", + "367000\n", + "368000\n", + "369000\n", + "370000\n", + "371000\n", + "372000\n", + "373000\n", + "374000\n", + "375000\n", + "376000\n", + "377000\n", + "378000\n", + "379000\n", + "380000\n", + "381000\n", + "382000\n", + "383000\n", + "384000\n", + "385000\n", + "386000\n", + "387000\n", + "388000\n", + "389000\n", + "390000\n", + "391000\n", + "392000\n", + "393000\n", + "394000\n", + "395000\n", + "396000\n", + "397000\n", + "398000\n", + "399000\n", + "400000\n", + "401000\n", + "402000\n", + "403000\n", + "404000\n", + "405000\n", + "406000\n", + "407000\n", + "408000\n", + "409000\n", + "410000\n", + "411000\n", + "412000\n", + "413000\n", + "414000\n", + "415000\n", + "416000\n", + "417000\n", + "418000\n", + "419000\n", + "420000\n", + "421000\n", + "422000\n", + "423000\n", + "424000\n", + "425000\n", + "426000\n", + "427000\n", + "428000\n", + "429000\n", + "430000\n", + "431000\n", + "432000\n" + ] + } + ], + "source": [ + "def look_ahead_iterator(gen):\n", + " prev = None\n", + " for item in gen:\n", + " if prev is not None:\n", + " yield (prev, item)\n", + " prev = item\n", + "\n", + "class Bigrams(IterableDataset):\n", + " def __init__(self, text_file, vocabulary_size):\n", + " self.vocab = build_vocab_from_iterator(\n", + " get_word_lines_from_file(text_file),\n", + " max_tokens = vocabulary_size,\n", + " specials = [''])\n", + " self.vocab.set_default_index(self.vocab[''])\n", + " self.vocabulary_size = vocabulary_size\n", + " self.text_file = text_file\n", + "\n", + " def __iter__(self):\n", + " return look_ahead_iterator(\n", + " (self.vocab[t] for t in itertools.chain.from_iterable(get_word_lines_from_file(self.text_file))))\n", + "\n", + "train_dataset = Bigrams(train_file, vocab_size)" + ] + }, + { + "cell_type": "code", + "execution_count": 15, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "<__main__.Bigrams object at 0x7fdd26d23940>\n" + ] + } + ], + "source": [ + "print(train_dataset)" + ] + }, + { + "cell_type": "code", + "execution_count": 17, + "metadata": { + "collapsed": true + }, + "outputs": [ + { + "data": { + "text/plain": [ + "'|===========================================================================|\\n| PyTorch CUDA memory summary, device ID 0 |\\n|---------------------------------------------------------------------------|\\n| CUDA OOMs: 1 | cudaMalloc retries: 1 |\\n|===========================================================================|\\n| Metric | Cur Usage | Peak Usage | Tot Alloc | Tot Freed |\\n|---------------------------------------------------------------------------|\\n| Allocated memory | 699613 KiB | 1903 MiB | 3735 MiB | 3052 MiB |\\n| from large pool | 699414 KiB | 1903 MiB | 3734 MiB | 3051 MiB |\\n| from small pool | 199 KiB | 1 MiB | 1 MiB | 1 MiB |\\n|---------------------------------------------------------------------------|\\n| Active memory | 699613 KiB | 1903 MiB | 3735 MiB | 3052 MiB |\\n| from large pool | 699414 KiB | 1903 MiB | 3734 MiB | 3051 MiB |\\n| from small pool | 199 KiB | 1 MiB | 1 MiB | 1 MiB |\\n|---------------------------------------------------------------------------|\\n| Requested memory | 699611 KiB | 1903 MiB | 3735 MiB | 3052 MiB |\\n| from large pool | 699413 KiB | 1903 MiB | 3734 MiB | 3051 MiB |\\n| from small pool | 197 KiB | 1 MiB | 1 MiB | 1 MiB |\\n|---------------------------------------------------------------------------|\\n| GPU reserved memory | 710656 KiB | 1918 MiB | 1918 MiB | 1224 MiB |\\n| from large pool | 708608 KiB | 1916 MiB | 1916 MiB | 1224 MiB |\\n| from small pool | 2048 KiB | 2 MiB | 2 MiB | 0 MiB |\\n|---------------------------------------------------------------------------|\\n| Non-releasable memory | 11043 KiB | 19364 KiB | 28939 KiB | 17896 KiB |\\n| from large pool | 9194 KiB | 17514 KiB | 25954 KiB | 16760 KiB |\\n| from small pool | 1849 KiB | 1950 KiB | 2985 KiB | 1136 KiB |\\n|---------------------------------------------------------------------------|\\n| Allocations | 10 | 17 | 38 | 28 |\\n| from large pool | 5 | 7 | 10 | 5 |\\n| from small pool | 5 | 11 | 28 | 23 |\\n|---------------------------------------------------------------------------|\\n| Active allocs | 10 | 17 | 38 | 28 |\\n| from large pool | 5 | 7 | 10 | 5 |\\n| from small pool | 5 | 11 | 28 | 23 |\\n|---------------------------------------------------------------------------|\\n| GPU reserved segments | 5 | 7 | 7 | 2 |\\n| from large pool | 4 | 6 | 6 | 2 |\\n| from small pool | 1 | 1 | 1 | 0 |\\n|---------------------------------------------------------------------------|\\n| Non-releasable allocs | 6 | 8 | 20 | 14 |\\n| from large pool | 4 | 6 | 9 | 5 |\\n| from small pool | 2 | 3 | 11 | 9 |\\n|---------------------------------------------------------------------------|\\n| Oversize allocations | 0 | 0 | 0 | 0 |\\n|---------------------------------------------------------------------------|\\n| Oversize GPU segments | 0 | 0 | 0 | 0 |\\n|===========================================================================|\\n'" + ] + }, + "execution_count": 17, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "torch.cuda.memory_summary(device=None, abbreviated=False)" + ] + }, + { + "cell_type": "code", + "execution_count": 10, + "metadata": {}, + "outputs": [], + "source": [ + "import os\n", + "os.environ[\"PYTORCH_CUDA_ALLOC_CONF\"] = \"max_split_size_mb:256\"" + ] + }, + { + "cell_type": "code", + "execution_count": 12, + "metadata": {}, + "outputs": [], + "source": [ + "device = 'cuda'\n", + "model = SimpleBigramNeuralLanguageModel(vocab_size, embed_size).to(device)" + ] + }, + { + "cell_type": "code", + "execution_count": 13, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "epoch: = 1\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "/home/gedin/.local/lib/python3.8/site-packages/torch/nn/modules/container.py:217: UserWarning: Implicit dimension choice for softmax has been deprecated. Change the call to include dim=X as an argument.\n", + " input = module(input)\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "0 tensor(5.9599, device='cuda:0', grad_fn=)\n", + "1000\n", + "100 tensor(6.1015, device='cuda:0', grad_fn=)\n", + "200 tensor(5.9708, device='cuda:0', grad_fn=)\n", + "2000\n", + "300 tensor(6.2176, device='cuda:0', grad_fn=)\n", + "3000\n", + "400 tensor(5.9401, device='cuda:0', grad_fn=)\n", + "4000\n", + "500 tensor(6.2084, device='cuda:0', grad_fn=)\n", + "5000\n", + "600 tensor(5.9736, device='cuda:0', grad_fn=)\n", + "6000\n", + "700 tensor(6.1423, device='cuda:0', grad_fn=)\n", + "7000\n", + "800 tensor(5.7344, device='cuda:0', grad_fn=)\n", + "8000\n", + "900 tensor(6.0950, device='cuda:0', grad_fn=)\n", + "9000\n", + "1000 tensor(5.8473, device='cuda:0', grad_fn=)\n", + "10000\n", + "1100 tensor(6.0612, device='cuda:0', grad_fn=)\n", + "11000\n", + "1200 tensor(6.1509, device='cuda:0', grad_fn=)\n", + "12000\n", + "1300 tensor(6.0760, device='cuda:0', grad_fn=)\n", + "13000\n", + "1400 tensor(6.2047, device='cuda:0', grad_fn=)\n", + "14000\n", + "1500 tensor(6.1186, device='cuda:0', grad_fn=)\n", + "15000\n", + "1600 tensor(5.8722, device='cuda:0', grad_fn=)\n", + "16000\n", + "1700 tensor(5.8741, device='cuda:0', grad_fn=)\n", + "17000\n", + "1800 tensor(5.8971, device='cuda:0', grad_fn=)\n", + "18000\n", + "1900 tensor(5.8521, device='cuda:0', grad_fn=)\n", + "19000\n", + "2000 tensor(5.9434, device='cuda:0', grad_fn=)\n", + "20000\n", + "2100 tensor(6.0348, device='cuda:0', grad_fn=)\n", + "21000\n", + "2200 tensor(5.8840, device='cuda:0', grad_fn=)\n", + "22000\n", + "2300 tensor(5.8641, device='cuda:0', grad_fn=)\n", + "23000\n", + "2400 tensor(5.9068, device='cuda:0', grad_fn=)\n", + "24000\n", + "2500 tensor(5.9170, device='cuda:0', grad_fn=)\n", + "25000\n", + "2600 tensor(5.9812, device='cuda:0', grad_fn=)\n", + "26000\n", + "2700 tensor(5.8985, device='cuda:0', grad_fn=)\n", + "27000\n", + "2800 tensor(6.0008, device='cuda:0', grad_fn=)\n", + "28000\n", + "2900 tensor(6.1230, device='cuda:0', grad_fn=)\n", + "29000\n", + "3000 tensor(5.8770, device='cuda:0', grad_fn=)\n", + "30000\n", + "3100 tensor(5.9268, device='cuda:0', grad_fn=)\n", + "31000\n", + "3200 tensor(5.8530, device='cuda:0', grad_fn=)\n", + "32000\n", + "3300 tensor(5.8436, device='cuda:0', grad_fn=)\n", + "33000\n", + "3400 tensor(5.7692, device='cuda:0', grad_fn=)\n", + "34000\n", + "3500 tensor(5.8909, device='cuda:0', grad_fn=)\n", + "35000\n", + "3600 tensor(5.8325, device='cuda:0', grad_fn=)\n", + "36000\n", + "3700 tensor(5.8082, device='cuda:0', grad_fn=)\n", + "37000\n", + "3800 tensor(5.8106, device='cuda:0', grad_fn=)\n", + "38000\n", + "3900 tensor(5.6382, device='cuda:0', grad_fn=)\n", + "39000\n", + "4000 tensor(5.6596, device='cuda:0', grad_fn=)\n", + "40000\n", + "4100 tensor(5.9587, device='cuda:0', grad_fn=)\n", + "41000\n", + "4200 tensor(5.8862, device='cuda:0', grad_fn=)\n", + "42000\n", + "4300 tensor(5.9541, device='cuda:0', grad_fn=)\n", + "43000\n", + "4400 tensor(5.8681, device='cuda:0', grad_fn=)\n", + "44000\n", + "4500 tensor(5.6963, device='cuda:0', grad_fn=)\n", + "45000\n", + "4600 tensor(6.0707, device='cuda:0', grad_fn=)\n", + "46000\n", + "4700 tensor(5.7091, device='cuda:0', grad_fn=)\n", + "47000\n", + "4800 tensor(5.8139, device='cuda:0', grad_fn=)\n", + "48000\n", + "4900 tensor(5.8696, device='cuda:0', grad_fn=)\n", + "49000\n", + "5000 tensor(5.8844, device='cuda:0', grad_fn=)\n", + "50000\n", + "5100 tensor(5.9806, device='cuda:0', grad_fn=)\n", + "51000\n", + "5200 tensor(6.0075, device='cuda:0', grad_fn=)\n", + "52000\n", + "5300 tensor(6.0588, device='cuda:0', grad_fn=)\n", + "53000\n", + "5400 tensor(5.8456, device='cuda:0', grad_fn=)\n", + "54000\n", + "5500 tensor(5.9166, device='cuda:0', grad_fn=)\n", + "55000\n", + "5600 tensor(5.6528, device='cuda:0', grad_fn=)\n", + "56000\n", + "5700 tensor(5.8988, device='cuda:0', grad_fn=)\n", + "57000\n", + "5800 tensor(5.9132, device='cuda:0', grad_fn=)\n", + "58000\n", + "5900 tensor(5.9460, device='cuda:0', grad_fn=)\n", + "59000\n", + "6000 tensor(5.7543, device='cuda:0', grad_fn=)\n", + "60000\n", + "6100 tensor(5.8256, device='cuda:0', grad_fn=)\n", + "61000\n", + "6200 tensor(5.9448, device='cuda:0', grad_fn=)\n", + "62000\n", + "6300 tensor(5.7601, device='cuda:0', grad_fn=)\n", + "63000\n", + "6400 tensor(5.7091, device='cuda:0', grad_fn=)\n", + "64000\n", + "6500 tensor(5.5621, device='cuda:0', grad_fn=)\n", + "65000\n", + "6600 tensor(5.7094, device='cuda:0', grad_fn=)\n", + "66000\n", + "6700 tensor(5.6785, device='cuda:0', grad_fn=)\n", + "67000\n", + "6800 tensor(5.9249, device='cuda:0', grad_fn=)\n", + "68000\n", + "6900 tensor(5.8775, device='cuda:0', grad_fn=)\n", + "69000\n", + "7000 tensor(5.8075, device='cuda:0', grad_fn=)\n", + "70000\n", + "7100 tensor(5.5748, device='cuda:0', grad_fn=)\n", + "71000\n", + "7200 tensor(5.7217, device='cuda:0', grad_fn=)\n", + "72000\n", + "7300 tensor(5.9124, device='cuda:0', grad_fn=)\n", + "73000\n", + "7400 tensor(5.7197, device='cuda:0', grad_fn=)\n", + "74000\n", + "7500 tensor(5.6429, device='cuda:0', grad_fn=)\n", + "75000\n", + "7600 tensor(5.6847, device='cuda:0', grad_fn=)\n", + "76000\n", + "7700 tensor(5.7197, device='cuda:0', grad_fn=)\n", + "77000\n", + "7800 tensor(5.8559, device='cuda:0', grad_fn=)\n", + "78000\n", + "7900 tensor(5.5600, device='cuda:0', grad_fn=)\n", + "79000\n", + "8000 tensor(5.6288, device='cuda:0', grad_fn=)\n", + "80000\n", + "8100 tensor(5.7767, device='cuda:0', grad_fn=)\n", + "81000\n", + "8200 tensor(5.8037, device='cuda:0', grad_fn=)\n", + "82000\n", + "8300 tensor(5.7344, device='cuda:0', grad_fn=)\n", + "83000\n", + "8400 tensor(5.8092, device='cuda:0', grad_fn=)\n", + "84000\n", + "8500 tensor(5.8847, device='cuda:0', grad_fn=)\n", + "85000\n", + "8600 tensor(5.8754, device='cuda:0', grad_fn=)\n", + "86000\n", + "8700 tensor(5.9227, device='cuda:0', grad_fn=)\n", + "87000\n", + "8800 tensor(5.8028, device='cuda:0', grad_fn=)\n", + "88000\n", + "8900 tensor(5.6476, device='cuda:0', grad_fn=)\n", + "89000\n", + "9000 tensor(5.7656, device='cuda:0', grad_fn=)\n", + "90000\n", + "9100 tensor(5.7805, device='cuda:0', grad_fn=)\n", + "91000\n", + "9200 tensor(5.6879, device='cuda:0', grad_fn=)\n", + "92000\n", + "9300 tensor(5.7098, device='cuda:0', grad_fn=)\n", + "93000\n", + "9400 tensor(5.5631, device='cuda:0', grad_fn=)\n", + "94000\n", + "9500 tensor(5.6497, device='cuda:0', grad_fn=)\n", + "95000\n", + "9600 tensor(5.7500, device='cuda:0', grad_fn=)\n", + "96000\n", + "9700 tensor(5.6607, device='cuda:0', grad_fn=)\n", + "97000\n", + "9800 tensor(5.7196, device='cuda:0', grad_fn=)\n", + "9900 tensor(5.5987, device='cuda:0', grad_fn=)\n", + "98000\n", + "10000 tensor(5.7795, device='cuda:0', grad_fn=)\n", + "99000\n", + "10100 tensor(5.6980, device='cuda:0', grad_fn=)\n", + "100000\n", + "10200 tensor(5.6093, device='cuda:0', grad_fn=)\n", + "101000\n", + "10300 tensor(5.6792, device='cuda:0', grad_fn=)\n", + "102000\n", + "10400 tensor(5.7035, device='cuda:0', grad_fn=)\n", + "103000\n", + "10500 tensor(5.8282, device='cuda:0', grad_fn=)\n", + "104000\n", + "10600 tensor(5.8605, device='cuda:0', grad_fn=)\n", + "105000\n", + "10700 tensor(5.7354, device='cuda:0', grad_fn=)\n", + "106000\n", + "10800 tensor(5.8034, device='cuda:0', grad_fn=)\n", + "107000\n", + "10900 tensor(5.6194, device='cuda:0', grad_fn=)\n", + "108000\n", + "11000 tensor(5.8502, device='cuda:0', grad_fn=)\n", + "109000\n", + "11100 tensor(5.4406, device='cuda:0', grad_fn=)\n", + "110000\n", + "11200 tensor(5.6379, device='cuda:0', grad_fn=)\n", + "111000\n", + "11300 tensor(5.6668, device='cuda:0', grad_fn=)\n", + "112000\n", + "11400 tensor(5.6140, device='cuda:0', grad_fn=)\n", + "113000\n", + "11500 tensor(5.6565, device='cuda:0', grad_fn=)\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "114000\n", + "11600 tensor(5.6308, device='cuda:0', grad_fn=)\n", + "115000\n", + "11700 tensor(5.5680, device='cuda:0', grad_fn=)\n", + "116000\n", + "11800 tensor(5.7604, device='cuda:0', grad_fn=)\n", + "117000\n", + "11900 tensor(5.5792, device='cuda:0', grad_fn=)\n", + "118000\n", + "12000 tensor(5.7329, device='cuda:0', grad_fn=)\n", + "119000\n", + "12100 tensor(5.7726, device='cuda:0', grad_fn=)\n", + "120000\n", + "12200 tensor(5.7151, device='cuda:0', grad_fn=)\n", + "121000\n", + "12300 tensor(5.8561, device='cuda:0', grad_fn=)\n", + "122000\n", + "12400 tensor(5.6791, device='cuda:0', grad_fn=)\n", + "123000\n", + "12500 tensor(5.5574, device='cuda:0', grad_fn=)\n", + "124000\n", + "12600 tensor(5.6817, device='cuda:0', grad_fn=)\n", + "125000\n", + "12700 tensor(5.5375, device='cuda:0', grad_fn=)\n", + "126000\n", + "12800 tensor(5.7270, device='cuda:0', grad_fn=)\n", + "127000\n", + "12900 tensor(5.6252, device='cuda:0', grad_fn=)\n", + "128000\n", + "13000 tensor(5.4536, device='cuda:0', grad_fn=)\n", + "129000\n", + "13100 tensor(5.6091, device='cuda:0', grad_fn=)\n", + "130000\n", + "13200 tensor(5.7324, device='cuda:0', grad_fn=)\n", + "131000\n", + "13300 tensor(5.5253, device='cuda:0', grad_fn=)\n", + "132000\n", + "13400 tensor(5.6491, device='cuda:0', grad_fn=)\n", + "133000\n", + "13500 tensor(5.5728, device='cuda:0', grad_fn=)\n", + "134000\n", + "13600 tensor(5.6632, device='cuda:0', grad_fn=)\n", + "135000\n", + "13700 tensor(5.6678, device='cuda:0', grad_fn=)\n", + "136000\n", + "13800 tensor(5.6112, device='cuda:0', grad_fn=)\n", + "137000\n", + "13900 tensor(5.4884, device='cuda:0', grad_fn=)\n", + "138000\n", + "14000 tensor(5.7304, device='cuda:0', grad_fn=)\n", + "139000\n", + "14100 tensor(5.4326, device='cuda:0', grad_fn=)\n", + "140000\n", + "14200 tensor(5.7188, device='cuda:0', grad_fn=)\n", + "141000\n", + "14300 tensor(5.6519, device='cuda:0', grad_fn=)\n", + "142000\n", + "14400 tensor(5.5892, device='cuda:0', grad_fn=)\n", + "143000\n", + "14500 tensor(5.7225, device='cuda:0', grad_fn=)\n", + "144000\n", + "14600 tensor(5.7216, device='cuda:0', grad_fn=)\n", + "145000\n", + "14700 tensor(5.5748, device='cuda:0', grad_fn=)\n", + "146000\n", + "14800 tensor(6.0184, device='cuda:0', grad_fn=)\n", + "147000\n", + "14900 tensor(5.6781, device='cuda:0', grad_fn=)\n", + "148000\n", + "15000 tensor(5.6038, device='cuda:0', grad_fn=)\n", + "149000\n", + "15100 tensor(5.7875, device='cuda:0', grad_fn=)\n", + "150000\n", + "15200 tensor(5.6485, device='cuda:0', grad_fn=)\n", + "151000\n", + "15300 tensor(5.5927, device='cuda:0', grad_fn=)\n", + "152000\n", + "15400 tensor(5.5156, device='cuda:0', grad_fn=)\n", + "153000\n", + "15500 tensor(5.6556, device='cuda:0', grad_fn=)\n", + "154000\n", + "15600 tensor(5.6485, device='cuda:0', grad_fn=)\n", + "155000\n", + "15700 tensor(5.5904, device='cuda:0', grad_fn=)\n", + "156000\n", + "15800 tensor(5.4613, device='cuda:0', grad_fn=)\n", + "157000\n", + "15900 tensor(5.6254, device='cuda:0', grad_fn=)\n", + "158000\n", + "16000 tensor(5.4349, device='cuda:0', grad_fn=)\n", + "159000\n", + "16100 tensor(5.5205, device='cuda:0', grad_fn=)\n", + "160000\n", + "16200 tensor(5.8051, device='cuda:0', grad_fn=)\n", + "161000\n", + "16300 tensor(5.6452, device='cuda:0', grad_fn=)\n", + "162000\n", + "16400 tensor(5.6071, device='cuda:0', grad_fn=)\n", + "163000\n", + "16500 tensor(5.7237, device='cuda:0', grad_fn=)\n", + "164000\n", + "16600 tensor(5.5771, device='cuda:0', grad_fn=)\n", + "165000\n", + "16700 tensor(5.5355, device='cuda:0', grad_fn=)\n", + "166000\n", + "16800 tensor(5.6363, device='cuda:0', grad_fn=)\n", + "167000\n", + "16900 tensor(5.3746, device='cuda:0', grad_fn=)\n", + "168000\n", + "17000 tensor(5.6707, device='cuda:0', grad_fn=)\n", + "169000\n", + "17100 tensor(5.5359, device='cuda:0', grad_fn=)\n", + "170000\n", + "17200 tensor(5.6118, device='cuda:0', grad_fn=)\n", + "171000\n", + "17300 tensor(5.6740, device='cuda:0', grad_fn=)\n", + "172000\n", + "17400 tensor(5.4438, device='cuda:0', grad_fn=)\n", + "173000\n", + "17500 tensor(5.5001, device='cuda:0', grad_fn=)\n", + "174000\n", + "17600 tensor(5.4953, device='cuda:0', grad_fn=)\n", + "175000\n", + "17700 tensor(5.5398, device='cuda:0', grad_fn=)\n", + "176000\n", + "17800 tensor(5.6053, device='cuda:0', grad_fn=)\n", + "177000\n", + "17900 tensor(5.4726, device='cuda:0', grad_fn=)\n", + "178000\n", + "18000 tensor(5.6747, device='cuda:0', grad_fn=)\n", + "179000\n", + "18100 tensor(5.6238, device='cuda:0', grad_fn=)\n", + "180000\n", + "18200 tensor(5.5469, device='cuda:0', grad_fn=)\n", + "181000\n", + "18300 tensor(5.5299, device='cuda:0', grad_fn=)\n", + "182000\n", + "18400 tensor(5.6323, device='cuda:0', grad_fn=)\n", + "183000\n", + "18500 tensor(5.5893, device='cuda:0', grad_fn=)\n", + "184000\n", + "18600 tensor(5.7452, device='cuda:0', grad_fn=)\n", + "185000\n", + "18700 tensor(5.5576, device='cuda:0', grad_fn=)\n", + "186000\n", + "18800 tensor(5.7439, device='cuda:0', grad_fn=)\n", + "187000\n", + "18900 tensor(5.6106, device='cuda:0', grad_fn=)\n", + "188000\n", + "19000 tensor(5.6647, device='cuda:0', grad_fn=)\n", + "189000\n", + "19100 tensor(5.7728, device='cuda:0', grad_fn=)\n", + "190000\n", + "19200 tensor(5.6169, device='cuda:0', grad_fn=)\n", + "191000\n", + "19300 tensor(5.7852, device='cuda:0', grad_fn=)\n", + "192000\n", + "19400 tensor(5.5627, device='cuda:0', grad_fn=)\n", + "193000\n", + "19500 tensor(5.5682, device='cuda:0', grad_fn=)\n", + "194000\n", + "19600 tensor(5.5978, device='cuda:0', grad_fn=)\n", + "195000\n", + "19700 tensor(5.6453, device='cuda:0', grad_fn=)\n", + "196000\n", + "19800 tensor(5.4786, device='cuda:0', grad_fn=)\n", + "197000\n", + "19900 tensor(5.4894, device='cuda:0', grad_fn=)\n", + "198000\n", + "20000 tensor(5.4999, device='cuda:0', grad_fn=)\n", + "199000\n", + "20100 tensor(5.4881, device='cuda:0', grad_fn=)\n", + "200000\n", + "20200 tensor(5.3915, device='cuda:0', grad_fn=)\n", + "201000\n", + "20300 tensor(5.5216, device='cuda:0', grad_fn=)\n", + "20400 tensor(5.5761, device='cuda:0', grad_fn=)\n", + "202000\n", + "20500 tensor(5.5586, device='cuda:0', grad_fn=)\n", + "203000\n", + "20600 tensor(5.7870, device='cuda:0', grad_fn=)\n", + "204000\n", + "20700 tensor(5.5776, device='cuda:0', grad_fn=)\n", + "205000\n", + "20800 tensor(5.4417, device='cuda:0', grad_fn=)\n", + "206000\n", + "20900 tensor(5.7186, device='cuda:0', grad_fn=)\n", + "207000\n", + "21000 tensor(5.5415, device='cuda:0', grad_fn=)\n", + "208000\n", + "21100 tensor(5.5141, device='cuda:0', grad_fn=)\n", + "209000\n", + "21200 tensor(5.4401, device='cuda:0', grad_fn=)\n", + "210000\n", + "21300 tensor(5.6511, device='cuda:0', grad_fn=)\n", + "211000\n", + "21400 tensor(5.6474, device='cuda:0', grad_fn=)\n", + "212000\n", + "21500 tensor(5.3946, device='cuda:0', grad_fn=)\n", + "213000\n", + "21600 tensor(5.3958, device='cuda:0', grad_fn=)\n", + "214000\n", + "21700 tensor(5.4040, device='cuda:0', grad_fn=)\n", + "215000\n", + "21800 tensor(5.5745, device='cuda:0', grad_fn=)\n", + "216000\n", + "21900 tensor(5.4996, device='cuda:0', grad_fn=)\n", + "217000\n", + "22000 tensor(5.5234, device='cuda:0', grad_fn=)\n", + "218000\n", + "22100 tensor(5.3870, device='cuda:0', grad_fn=)\n", + "219000\n", + "22200 tensor(5.2661, device='cuda:0', grad_fn=)\n", + "220000\n", + "22300 tensor(5.7031, device='cuda:0', grad_fn=)\n", + "221000\n", + "22400 tensor(5.3633, device='cuda:0', grad_fn=)\n", + "222000\n", + "22500 tensor(5.4404, device='cuda:0', grad_fn=)\n", + "223000\n", + "22600 tensor(5.5951, device='cuda:0', grad_fn=)\n", + "224000\n", + "22700 tensor(5.3901, device='cuda:0', grad_fn=)\n", + "225000\n", + "22800 tensor(5.6404, device='cuda:0', grad_fn=)\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "226000\n", + "22900 tensor(5.6646, device='cuda:0', grad_fn=)\n", + "227000\n", + "23000 tensor(5.5949, device='cuda:0', grad_fn=)\n", + "228000\n", + "23100 tensor(5.5284, device='cuda:0', grad_fn=)\n", + "229000\n", + "23200 tensor(5.5617, device='cuda:0', grad_fn=)\n", + "230000\n", + "23300 tensor(5.6426, device='cuda:0', grad_fn=)\n", + "231000\n", + "23400 tensor(5.7283, device='cuda:0', grad_fn=)\n", + "232000\n", + "23500 tensor(5.4558, device='cuda:0', grad_fn=)\n", + "233000\n", + "23600 tensor(5.4600, device='cuda:0', grad_fn=)\n", + "234000\n", + "23700 tensor(5.4961, device='cuda:0', grad_fn=)\n", + "235000\n", + "23800 tensor(5.3373, device='cuda:0', grad_fn=)\n", + "236000\n", + "23900 tensor(5.4470, device='cuda:0', grad_fn=)\n", + "237000\n", + "24000 tensor(5.4346, device='cuda:0', grad_fn=)\n", + "238000\n", + "24100 tensor(5.5112, device='cuda:0', grad_fn=)\n", + "239000\n", + "24200 tensor(5.6918, device='cuda:0', grad_fn=)\n", + "240000\n", + "24300 tensor(5.6115, device='cuda:0', grad_fn=)\n", + "241000\n", + "24400 tensor(5.7404, device='cuda:0', grad_fn=)\n", + "242000\n", + "24500 tensor(5.4982, device='cuda:0', grad_fn=)\n", + "243000\n", + "24600 tensor(5.6136, device='cuda:0', grad_fn=)\n", + "244000\n", + "24700 tensor(5.5225, device='cuda:0', grad_fn=)\n", + "245000\n", + "24800 tensor(5.5563, device='cuda:0', grad_fn=)\n", + "246000\n", + "24900 tensor(5.6283, device='cuda:0', grad_fn=)\n", + "247000\n", + "25000 tensor(5.6176, device='cuda:0', grad_fn=)\n", + "248000\n", + "25100 tensor(5.5795, device='cuda:0', grad_fn=)\n", + "249000\n", + "25200 tensor(5.5831, device='cuda:0', grad_fn=)\n", + "250000\n", + "25300 tensor(5.5894, device='cuda:0', grad_fn=)\n", + "251000\n", + "25400 tensor(5.5670, device='cuda:0', grad_fn=)\n", + "252000\n", + "25500 tensor(5.5016, device='cuda:0', grad_fn=)\n", + "253000\n", + "25600 tensor(5.7909, device='cuda:0', grad_fn=)\n", + "254000\n", + "25700 tensor(5.5229, device='cuda:0', grad_fn=)\n", + "255000\n", + "25800 tensor(5.6035, device='cuda:0', grad_fn=)\n", + "256000\n", + "25900 tensor(5.5293, device='cuda:0', grad_fn=)\n", + "257000\n", + "26000 tensor(5.5553, device='cuda:0', grad_fn=)\n", + "258000\n", + "26100 tensor(5.4476, device='cuda:0', grad_fn=)\n", + "259000\n", + "26200 tensor(5.3721, device='cuda:0', grad_fn=)\n", + "260000\n", + "26300 tensor(5.6142, device='cuda:0', grad_fn=)\n", + "261000\n", + "26400 tensor(5.6202, device='cuda:0', grad_fn=)\n", + "262000\n", + "26500 tensor(5.3529, device='cuda:0', grad_fn=)\n", + "263000\n", + "26600 tensor(5.7148, device='cuda:0', grad_fn=)\n", + "264000\n", + "26700 tensor(5.5755, device='cuda:0', grad_fn=)\n", + "265000\n", + "26800 tensor(5.7480, device='cuda:0', grad_fn=)\n", + "266000\n", + "26900 tensor(5.5025, device='cuda:0', grad_fn=)\n", + "267000\n", + "27000 tensor(5.4017, device='cuda:0', grad_fn=)\n", + "268000\n", + "27100 tensor(5.3996, device='cuda:0', grad_fn=)\n", + "269000\n", + "27200 tensor(5.4862, device='cuda:0', grad_fn=)\n", + "270000\n", + "27300 tensor(5.6392, device='cuda:0', grad_fn=)\n", + "271000\n", + "27400 tensor(5.5634, device='cuda:0', grad_fn=)\n", + "272000\n", + "27500 tensor(5.4420, device='cuda:0', grad_fn=)\n", + "273000\n", + "27600 tensor(5.7835, device='cuda:0', grad_fn=)\n", + "274000\n", + "27700 tensor(5.5555, device='cuda:0', grad_fn=)\n", + "275000\n", + "27800 tensor(5.5381, device='cuda:0', grad_fn=)\n", + "276000\n", + "27900 tensor(5.6515, device='cuda:0', grad_fn=)\n", + "277000\n", + "28000 tensor(5.5254, device='cuda:0', grad_fn=)\n", + "278000\n", + "28100 tensor(5.4929, device='cuda:0', grad_fn=)\n", + "279000\n", + "28200 tensor(5.6218, device='cuda:0', grad_fn=)\n", + "280000\n", + "28300 tensor(5.2878, device='cuda:0', grad_fn=)\n", + "281000\n", + "28400 tensor(5.7112, device='cuda:0', grad_fn=)\n", + "282000\n", + "28500 tensor(5.5490, device='cuda:0', grad_fn=)\n", + "283000\n", + "28600 tensor(5.4572, device='cuda:0', grad_fn=)\n", + "284000\n", + "28700 tensor(5.6349, device='cuda:0', grad_fn=)\n", + "285000\n", + "28800 tensor(5.6607, device='cuda:0', grad_fn=)\n", + "286000\n", + "28900 tensor(5.5422, device='cuda:0', grad_fn=)\n", + "287000\n", + "29000 tensor(5.4277, device='cuda:0', grad_fn=)\n", + "288000\n", + "29100 tensor(5.1870, device='cuda:0', grad_fn=)\n", + "289000\n", + "29200 tensor(5.3593, device='cuda:0', grad_fn=)\n", + "290000\n", + "29300 tensor(5.6512, device='cuda:0', grad_fn=)\n", + "291000\n", + "29400 tensor(5.8051, device='cuda:0', grad_fn=)\n", + "292000\n", + "29500 tensor(5.5308, device='cuda:0', grad_fn=)\n", + "293000\n", + "29600 tensor(5.3791, device='cuda:0', grad_fn=)\n", + "294000\n", + "29700 tensor(5.6108, device='cuda:0', grad_fn=)\n", + "295000\n", + "29800 tensor(5.4015, device='cuda:0', grad_fn=)\n", + "296000\n", + "29900 tensor(5.6953, device='cuda:0', grad_fn=)\n", + "297000\n", + "30000 tensor(5.3925, device='cuda:0', grad_fn=)\n", + "298000\n", + "30100 tensor(5.4241, device='cuda:0', grad_fn=)\n", + "299000\n", + "30200 tensor(5.4216, device='cuda:0', grad_fn=)\n", + "300000\n", + "30300 tensor(5.5074, device='cuda:0', grad_fn=)\n", + "301000\n", + "30400 tensor(5.3631, device='cuda:0', grad_fn=)\n", + "302000\n", + "30500 tensor(5.5690, device='cuda:0', grad_fn=)\n", + "30600 tensor(5.4734, device='cuda:0', grad_fn=)\n", + "303000\n", + "30700 tensor(5.5061, device='cuda:0', grad_fn=)\n", + "304000\n", + "30800 tensor(5.5709, device='cuda:0', grad_fn=)\n", + "305000\n", + "30900 tensor(5.5478, device='cuda:0', grad_fn=)\n", + "306000\n", + "31000 tensor(5.6687, device='cuda:0', grad_fn=)\n", + "307000\n", + "31100 tensor(5.2899, device='cuda:0', grad_fn=)\n", + "308000\n", + "31200 tensor(5.3663, device='cuda:0', grad_fn=)\n", + "309000\n", + "31300 tensor(5.6274, device='cuda:0', grad_fn=)\n", + "310000\n", + "31400 tensor(5.4358, device='cuda:0', grad_fn=)\n", + "311000\n", + "31500 tensor(5.5738, device='cuda:0', grad_fn=)\n", + "312000\n", + "31600 tensor(5.5612, device='cuda:0', grad_fn=)\n", + "313000\n", + "31700 tensor(5.5104, device='cuda:0', grad_fn=)\n", + "314000\n", + "31800 tensor(5.6343, device='cuda:0', grad_fn=)\n", + "315000\n", + "31900 tensor(5.2243, device='cuda:0', grad_fn=)\n", + "316000\n", + "32000 tensor(5.4320, device='cuda:0', grad_fn=)\n", + "317000\n", + "32100 tensor(5.3344, device='cuda:0', grad_fn=)\n", + "318000\n", + "32200 tensor(5.6543, device='cuda:0', grad_fn=)\n", + "319000\n", + "32300 tensor(5.6512, device='cuda:0', grad_fn=)\n", + "320000\n", + "32400 tensor(5.6237, device='cuda:0', grad_fn=)\n", + "321000\n", + "32500 tensor(5.4246, device='cuda:0', grad_fn=)\n", + "322000\n", + "32600 tensor(5.5469, device='cuda:0', grad_fn=)\n", + "323000\n", + "32700 tensor(5.5338, device='cuda:0', grad_fn=)\n", + "324000\n", + "32800 tensor(5.6954, device='cuda:0', grad_fn=)\n", + "325000\n", + "32900 tensor(5.5754, device='cuda:0', grad_fn=)\n", + "326000\n", + "33000 tensor(5.3334, device='cuda:0', grad_fn=)\n", + "327000\n", + "33100 tensor(5.5284, device='cuda:0', grad_fn=)\n", + "328000\n", + "33200 tensor(5.6350, device='cuda:0', grad_fn=)\n", + "329000\n", + "33300 tensor(5.4312, device='cuda:0', grad_fn=)\n", + "330000\n", + "33400 tensor(5.6854, device='cuda:0', grad_fn=)\n", + "331000\n", + "33500 tensor(5.4921, device='cuda:0', grad_fn=)\n", + "332000\n", + "33600 tensor(5.4345, device='cuda:0', grad_fn=)\n", + "333000\n", + "33700 tensor(5.4950, device='cuda:0', grad_fn=)\n", + "334000\n", + "33800 tensor(5.5757, device='cuda:0', grad_fn=)\n", + "335000\n", + "33900 tensor(5.3466, device='cuda:0', grad_fn=)\n", + "336000\n", + "34000 tensor(5.5373, device='cuda:0', grad_fn=)\n", + "337000\n", + "34100 tensor(5.5144, device='cuda:0', grad_fn=)\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "338000\n", + "34200 tensor(5.5543, device='cuda:0', grad_fn=)\n", + "339000\n", + "34300 tensor(5.3564, device='cuda:0', grad_fn=)\n", + "340000\n", + "34400 tensor(5.8091, device='cuda:0', grad_fn=)\n", + "341000\n", + "34500 tensor(5.6699, device='cuda:0', grad_fn=)\n", + "342000\n", + "34600 tensor(5.5536, device='cuda:0', grad_fn=)\n", + "343000\n", + "34700 tensor(5.6261, device='cuda:0', grad_fn=)\n", + "344000\n", + "34800 tensor(5.6504, device='cuda:0', grad_fn=)\n", + "345000\n", + "34900 tensor(5.7067, device='cuda:0', grad_fn=)\n", + "346000\n", + "35000 tensor(5.7307, device='cuda:0', grad_fn=)\n", + "347000\n", + "35100 tensor(5.4831, device='cuda:0', grad_fn=)\n", + "348000\n", + "35200 tensor(5.4367, device='cuda:0', grad_fn=)\n", + "349000\n", + "35300 tensor(5.6503, device='cuda:0', grad_fn=)\n", + "350000\n", + "35400 tensor(5.2892, device='cuda:0', grad_fn=)\n", + "351000\n", + "35500 tensor(5.4198, device='cuda:0', grad_fn=)\n", + "352000\n", + "35600 tensor(5.4870, device='cuda:0', grad_fn=)\n", + "353000\n", + "35700 tensor(5.4489, device='cuda:0', grad_fn=)\n", + "354000\n", + "35800 tensor(5.5170, device='cuda:0', grad_fn=)\n", + "355000\n", + "35900 tensor(5.4699, device='cuda:0', grad_fn=)\n", + "356000\n", + "36000 tensor(5.2451, device='cuda:0', grad_fn=)\n", + "357000\n", + "36100 tensor(5.6311, device='cuda:0', grad_fn=)\n", + "358000\n", + "36200 tensor(5.5157, device='cuda:0', grad_fn=)\n", + "359000\n", + "36300 tensor(5.7751, device='cuda:0', grad_fn=)\n", + "360000\n", + "36400 tensor(5.4740, device='cuda:0', grad_fn=)\n", + "361000\n", + "36500 tensor(5.4746, device='cuda:0', grad_fn=)\n", + "362000\n", + "36600 tensor(5.5244, device='cuda:0', grad_fn=)\n", + "363000\n", + "36700 tensor(5.3037, device='cuda:0', grad_fn=)\n", + "364000\n", + "36800 tensor(5.4238, device='cuda:0', grad_fn=)\n", + "365000\n", + "36900 tensor(5.5203, device='cuda:0', grad_fn=)\n", + "366000\n", + "37000 tensor(5.4431, device='cuda:0', grad_fn=)\n", + "367000\n", + "37100 tensor(5.4286, device='cuda:0', grad_fn=)\n", + "368000\n", + "37200 tensor(5.5108, device='cuda:0', grad_fn=)\n", + "369000\n", + "37300 tensor(5.4229, device='cuda:0', grad_fn=)\n", + "370000\n", + "37400 tensor(5.8406, device='cuda:0', grad_fn=)\n", + "371000\n", + "37500 tensor(5.4602, device='cuda:0', grad_fn=)\n", + "372000\n", + "37600 tensor(5.4417, device='cuda:0', grad_fn=)\n", + "373000\n", + "37700 tensor(5.6200, device='cuda:0', grad_fn=)\n", + "374000\n", + "37800 tensor(5.4527, device='cuda:0', grad_fn=)\n", + "375000\n", + "37900 tensor(5.4631, device='cuda:0', grad_fn=)\n", + "376000\n", + "38000 tensor(5.5196, device='cuda:0', grad_fn=)\n", + "377000\n", + "38100 tensor(5.5436, device='cuda:0', grad_fn=)\n", + "378000\n", + "38200 tensor(5.5269, device='cuda:0', grad_fn=)\n", + "379000\n", + "38300 tensor(5.4716, device='cuda:0', grad_fn=)\n", + "380000\n", + "38400 tensor(5.5081, device='cuda:0', grad_fn=)\n", + "381000\n", + "38500 tensor(5.5249, device='cuda:0', grad_fn=)\n", + "382000\n", + "38600 tensor(5.5018, device='cuda:0', grad_fn=)\n", + "383000\n", + "38700 tensor(5.4845, device='cuda:0', grad_fn=)\n", + "384000\n", + "38800 tensor(5.5505, device='cuda:0', grad_fn=)\n", + "385000\n", + "38900 tensor(5.6658, device='cuda:0', grad_fn=)\n", + "386000\n", + "39000 tensor(5.3333, device='cuda:0', grad_fn=)\n", + "387000\n", + "39100 tensor(5.5598, device='cuda:0', grad_fn=)\n", + "388000\n", + "39200 tensor(5.6624, device='cuda:0', grad_fn=)\n", + "389000\n", + "39300 tensor(5.4714, device='cuda:0', grad_fn=)\n", + "390000\n", + "39400 tensor(5.5470, device='cuda:0', grad_fn=)\n", + "391000\n", + "39500 tensor(5.6905, device='cuda:0', grad_fn=)\n", + "392000\n", + "39600 tensor(5.3592, device='cuda:0', grad_fn=)\n", + "393000\n", + "39700 tensor(5.3170, device='cuda:0', grad_fn=)\n", + "394000\n", + "39800 tensor(5.4491, device='cuda:0', grad_fn=)\n", + "395000\n", + "39900 tensor(5.2872, device='cuda:0', grad_fn=)\n", + "396000\n", + "40000 tensor(5.3865, device='cuda:0', grad_fn=)\n", + "397000\n", + "40100 tensor(5.4536, device='cuda:0', grad_fn=)\n", + "398000\n", + "40200 tensor(5.4382, device='cuda:0', grad_fn=)\n", + "399000\n", + "40300 tensor(5.4819, device='cuda:0', grad_fn=)\n", + "40400 tensor(5.5250, device='cuda:0', grad_fn=)\n", + "400000\n", + "40500 tensor(5.4396, device='cuda:0', grad_fn=)\n", + "401000\n", + "40600 tensor(5.5062, device='cuda:0', grad_fn=)\n", + "402000\n", + "40700 tensor(5.5362, device='cuda:0', grad_fn=)\n", + "403000\n", + "40800 tensor(5.5015, device='cuda:0', grad_fn=)\n", + "404000\n", + "40900 tensor(5.4610, device='cuda:0', grad_fn=)\n", + "405000\n", + "41000 tensor(5.5083, device='cuda:0', grad_fn=)\n", + "406000\n", + "41100 tensor(5.4346, device='cuda:0', grad_fn=)\n", + "407000\n", + "41200 tensor(5.3340, device='cuda:0', grad_fn=)\n", + "408000\n", + "41300 tensor(5.4608, device='cuda:0', grad_fn=)\n", + "409000\n", + "41400 tensor(5.3758, device='cuda:0', grad_fn=)\n", + "410000\n", + "41500 tensor(5.5160, device='cuda:0', grad_fn=)\n", + "411000\n", + "41600 tensor(5.4290, device='cuda:0', grad_fn=)\n", + "412000\n", + "41700 tensor(5.4426, device='cuda:0', grad_fn=)\n", + "413000\n", + "41800 tensor(5.4764, device='cuda:0', grad_fn=)\n", + "414000\n", + "41900 tensor(5.4730, device='cuda:0', grad_fn=)\n", + "415000\n", + "42000 tensor(5.6150, device='cuda:0', grad_fn=)\n", + "416000\n", + "42100 tensor(5.3622, device='cuda:0', grad_fn=)\n", + "417000\n", + "42200 tensor(5.4380, device='cuda:0', grad_fn=)\n", + "418000\n", + "42300 tensor(5.5031, device='cuda:0', grad_fn=)\n", + "419000\n", + "42400 tensor(5.3124, device='cuda:0', grad_fn=)\n", + "420000\n", + "42500 tensor(5.4812, device='cuda:0', grad_fn=)\n", + "421000\n", + "42600 tensor(5.2723, device='cuda:0', grad_fn=)\n", + "422000\n", + "42700 tensor(5.5998, device='cuda:0', grad_fn=)\n", + "423000\n", + "42800 tensor(5.5254, device='cuda:0', grad_fn=)\n", + "424000\n", + "42900 tensor(5.3716, device='cuda:0', grad_fn=)\n", + "425000\n", + "43000 tensor(5.5020, device='cuda:0', grad_fn=)\n", + "426000\n", + "43100 tensor(5.5091, device='cuda:0', grad_fn=)\n", + "427000\n", + "43200 tensor(5.3182, device='cuda:0', grad_fn=)\n", + "428000\n", + "43300 tensor(5.4001, device='cuda:0', grad_fn=)\n", + "429000\n", + "43400 tensor(5.5150, device='cuda:0', grad_fn=)\n", + "430000\n", + "43500 tensor(5.2440, device='cuda:0', grad_fn=)\n", + "431000\n", + "43600 tensor(5.4439, device='cuda:0', grad_fn=)\n", + "432000\n", + "epoch: = 2\n", + "0 tensor(5.3953, device='cuda:0', grad_fn=)\n", + "1000\n", + "100 tensor(5.4847, device='cuda:0', grad_fn=)\n", + "200 tensor(5.3626, device='cuda:0', grad_fn=)\n", + "2000\n", + "300 tensor(5.4127, device='cuda:0', grad_fn=)\n", + "3000\n", + "400 tensor(5.3734, device='cuda:0', grad_fn=)\n", + "4000\n", + "500 tensor(5.5564, device='cuda:0', grad_fn=)\n", + "5000\n", + "600 tensor(5.3391, device='cuda:0', grad_fn=)\n", + "6000\n", + "700 tensor(5.6198, device='cuda:0', grad_fn=)\n", + "7000\n", + "800 tensor(5.2255, device='cuda:0', grad_fn=)\n", + "8000\n", + "900 tensor(5.5161, device='cuda:0', grad_fn=)\n", + "9000\n", + "1000 tensor(5.3517, device='cuda:0', grad_fn=)\n", + "10000\n", + "1100 tensor(5.5420, device='cuda:0', grad_fn=)\n", + "11000\n", + "1200 tensor(5.6031, device='cuda:0', grad_fn=)\n", + "12000\n", + "1300 tensor(5.5343, device='cuda:0', grad_fn=)\n", + "13000\n", + "1400 tensor(5.5547, device='cuda:0', grad_fn=)\n", + "14000\n", + "1500 tensor(5.6080, device='cuda:0', grad_fn=)\n", + "15000\n", + "1600 tensor(5.2940, device='cuda:0', grad_fn=)\n", + "16000\n", + "1700 tensor(5.3671, device='cuda:0', grad_fn=)\n", + "17000\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "1800 tensor(5.3777, device='cuda:0', grad_fn=)\n", + "18000\n", + "1900 tensor(5.3593, device='cuda:0', grad_fn=)\n", + "19000\n", + "2000 tensor(5.4348, device='cuda:0', grad_fn=)\n", + "20000\n", + "2100 tensor(5.5513, device='cuda:0', grad_fn=)\n", + "21000\n", + "2200 tensor(5.3939, device='cuda:0', grad_fn=)\n", + "22000\n", + "2300 tensor(5.4063, device='cuda:0', grad_fn=)\n", + "23000\n", + "2400 tensor(5.4092, device='cuda:0', grad_fn=)\n", + "24000\n", + "2500 tensor(5.4460, device='cuda:0', grad_fn=)\n", + "25000\n", + "2600 tensor(5.4738, device='cuda:0', grad_fn=)\n", + "26000\n", + "2700 tensor(5.4848, device='cuda:0', grad_fn=)\n", + "27000\n", + "2800 tensor(5.5244, device='cuda:0', grad_fn=)\n", + "28000\n", + "2900 tensor(5.6711, device='cuda:0', grad_fn=)\n", + "29000\n", + "3000 tensor(5.4024, device='cuda:0', grad_fn=)\n", + "30000\n", + "3100 tensor(5.4842, device='cuda:0', grad_fn=)\n", + "31000\n", + "3200 tensor(5.4863, device='cuda:0', grad_fn=)\n", + "32000\n", + "3300 tensor(5.4114, device='cuda:0', grad_fn=)\n", + "33000\n", + "3400 tensor(5.3231, device='cuda:0', grad_fn=)\n", + "34000\n", + "3500 tensor(5.4598, device='cuda:0', grad_fn=)\n", + "35000\n", + "3600 tensor(5.4579, device='cuda:0', grad_fn=)\n", + "36000\n", + "3700 tensor(5.3890, device='cuda:0', grad_fn=)\n", + "37000\n", + "3800 tensor(5.4162, device='cuda:0', grad_fn=)\n", + "38000\n", + "3900 tensor(5.2854, device='cuda:0', grad_fn=)\n", + "39000\n", + "4000 tensor(5.3370, device='cuda:0', grad_fn=)\n", + "40000\n", + "4100 tensor(5.5078, device='cuda:0', grad_fn=)\n", + "41000\n", + "4200 tensor(5.5341, device='cuda:0', grad_fn=)\n", + "42000\n", + "4300 tensor(5.4704, device='cuda:0', grad_fn=)\n", + "43000\n", + "4400 tensor(5.4990, device='cuda:0', grad_fn=)\n", + "44000\n", + "4500 tensor(5.3300, device='cuda:0', grad_fn=)\n", + "45000\n", + "4600 tensor(5.6674, device='cuda:0', grad_fn=)\n", + "46000\n", + "4700 tensor(5.3622, device='cuda:0', grad_fn=)\n", + "47000\n", + "4800 tensor(5.4762, device='cuda:0', grad_fn=)\n", + "48000\n", + "4900 tensor(5.5403, device='cuda:0', grad_fn=)\n", + "49000\n", + "5000 tensor(5.5359, device='cuda:0', grad_fn=)\n", + "50000\n", + "5100 tensor(5.6058, device='cuda:0', grad_fn=)\n", + "51000\n", + "5200 tensor(5.6209, device='cuda:0', grad_fn=)\n", + "52000\n", + "5300 tensor(5.6273, device='cuda:0', grad_fn=)\n", + "53000\n", + "5400 tensor(5.4695, device='cuda:0', grad_fn=)\n", + "54000\n", + "5500 tensor(5.5771, device='cuda:0', grad_fn=)\n", + "55000\n", + "5600 tensor(5.3552, device='cuda:0', grad_fn=)\n", + "56000\n", + "5700 tensor(5.5957, device='cuda:0', grad_fn=)\n", + "57000\n", + "5800 tensor(5.5952, device='cuda:0', grad_fn=)\n", + "58000\n", + "5900 tensor(5.5643, device='cuda:0', grad_fn=)\n", + "59000\n", + "6000 tensor(5.4346, device='cuda:0', grad_fn=)\n", + "60000\n", + "6100 tensor(5.4620, device='cuda:0', grad_fn=)\n", + "61000\n", + "6200 tensor(5.6256, device='cuda:0', grad_fn=)\n", + "62000\n", + "6300 tensor(5.4832, device='cuda:0', grad_fn=)\n", + "63000\n", + "6400 tensor(5.4063, device='cuda:0', grad_fn=)\n", + "64000\n", + "6500 tensor(5.2587, device='cuda:0', grad_fn=)\n", + "65000\n", + "6600 tensor(5.4320, device='cuda:0', grad_fn=)\n", + "66000\n", + "6700 tensor(5.3770, device='cuda:0', grad_fn=)\n", + "67000\n", + "6800 tensor(5.6077, device='cuda:0', grad_fn=)\n", + "68000\n", + "6900 tensor(5.5788, device='cuda:0', grad_fn=)\n", + "69000\n", + "7000 tensor(5.4929, device='cuda:0', grad_fn=)\n", + "70000\n", + "7100 tensor(5.2828, device='cuda:0', grad_fn=)\n", + "71000\n", + "7200 tensor(5.3992, device='cuda:0', grad_fn=)\n", + "72000\n", + "7300 tensor(5.6273, device='cuda:0', grad_fn=)\n", + "73000\n", + "7400 tensor(5.4385, device='cuda:0', grad_fn=)\n", + "74000\n", + "7500 tensor(5.3176, device='cuda:0', grad_fn=)\n", + "75000\n", + "7600 tensor(5.3834, device='cuda:0', grad_fn=)\n", + "76000\n", + "7700 tensor(5.4532, device='cuda:0', grad_fn=)\n", + "77000\n", + "7800 tensor(5.5669, device='cuda:0', grad_fn=)\n", + "78000\n", + "7900 tensor(5.2508, device='cuda:0', grad_fn=)\n", + "79000\n", + "8000 tensor(5.3027, device='cuda:0', grad_fn=)\n", + "80000\n", + "8100 tensor(5.4813, device='cuda:0', grad_fn=)\n", + "81000\n", + "8200 tensor(5.4822, device='cuda:0', grad_fn=)\n", + "82000\n", + "8300 tensor(5.4510, device='cuda:0', grad_fn=)\n", + "83000\n", + "8400 tensor(5.5712, device='cuda:0', grad_fn=)\n", + "84000\n", + "8500 tensor(5.5634, device='cuda:0', grad_fn=)\n", + "85000\n", + "8600 tensor(5.5616, device='cuda:0', grad_fn=)\n", + "86000\n", + "8700 tensor(5.6568, device='cuda:0', grad_fn=)\n", + "87000\n", + "8800 tensor(5.5397, device='cuda:0', grad_fn=)\n", + "88000\n", + "8900 tensor(5.3852, device='cuda:0', grad_fn=)\n", + "89000\n", + "9000 tensor(5.5022, device='cuda:0', grad_fn=)\n", + "90000\n", + "9100 tensor(5.5088, device='cuda:0', grad_fn=)\n", + "91000\n", + "9200 tensor(5.4214, device='cuda:0', grad_fn=)\n", + "92000\n", + "9300 tensor(5.4641, device='cuda:0', grad_fn=)\n", + "93000\n", + "9400 tensor(5.3085, device='cuda:0', grad_fn=)\n", + "94000\n", + "9500 tensor(5.3852, device='cuda:0', grad_fn=)\n", + "95000\n", + "9600 tensor(5.5097, device='cuda:0', grad_fn=)\n", + "96000\n", + "9700 tensor(5.4373, device='cuda:0', grad_fn=)\n", + "97000\n", + "9800 tensor(5.4786, device='cuda:0', grad_fn=)\n", + "9900 tensor(5.3198, device='cuda:0', grad_fn=)\n", + "98000\n", + "10000 tensor(5.5310, device='cuda:0', grad_fn=)\n", + "99000\n", + "10100 tensor(5.4341, device='cuda:0', grad_fn=)\n", + "100000\n", + "10200 tensor(5.3571, device='cuda:0', grad_fn=)\n", + "101000\n", + "10300 tensor(5.4712, device='cuda:0', grad_fn=)\n", + "102000\n", + "10400 tensor(5.4810, device='cuda:0', grad_fn=)\n", + "103000\n", + "10500 tensor(5.5463, device='cuda:0', grad_fn=)\n", + "104000\n", + "10600 tensor(5.6233, device='cuda:0', grad_fn=)\n", + "105000\n", + "10700 tensor(5.4678, device='cuda:0', grad_fn=)\n", + "106000\n", + "10800 tensor(5.5040, device='cuda:0', grad_fn=)\n", + "107000\n", + "10900 tensor(5.3963, device='cuda:0', grad_fn=)\n", + "108000\n", + "11000 tensor(5.6295, device='cuda:0', grad_fn=)\n", + "109000\n", + "11100 tensor(5.2378, device='cuda:0', grad_fn=)\n", + "110000\n", + "11200 tensor(5.4184, device='cuda:0', grad_fn=)\n", + "111000\n", + "11300 tensor(5.4404, device='cuda:0', grad_fn=)\n", + "112000\n", + "11400 tensor(5.3875, device='cuda:0', grad_fn=)\n", + "113000\n", + "11500 tensor(5.4523, device='cuda:0', grad_fn=)\n", + "114000\n", + "11600 tensor(5.4418, device='cuda:0', grad_fn=)\n", + "115000\n", + "11700 tensor(5.3604, device='cuda:0', grad_fn=)\n", + "116000\n", + "11800 tensor(5.5647, device='cuda:0', grad_fn=)\n", + "117000\n", + "11900 tensor(5.3936, device='cuda:0', grad_fn=)\n", + "118000\n", + "12000 tensor(5.4823, device='cuda:0', grad_fn=)\n", + "119000\n", + "12100 tensor(5.5069, device='cuda:0', grad_fn=)\n", + "120000\n", + "12200 tensor(5.4983, device='cuda:0', grad_fn=)\n", + "121000\n", + "12300 tensor(5.6030, device='cuda:0', grad_fn=)\n", + "122000\n", + "12400 tensor(5.4763, device='cuda:0', grad_fn=)\n", + "123000\n", + "12500 tensor(5.3718, device='cuda:0', grad_fn=)\n", + "124000\n", + "12600 tensor(5.4416, device='cuda:0', grad_fn=)\n", + "125000\n", + "12700 tensor(5.3554, device='cuda:0', grad_fn=)\n", + "126000\n", + "12800 tensor(5.5392, device='cuda:0', grad_fn=)\n", + "127000\n", + "12900 tensor(5.4164, device='cuda:0', grad_fn=)\n", + "128000\n", + "13000 tensor(5.2286, device='cuda:0', grad_fn=)\n", + "129000\n", + "13100 tensor(5.4288, device='cuda:0', grad_fn=)\n", + "130000\n", + "13200 tensor(5.4770, device='cuda:0', grad_fn=)\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "131000\n", + "13300 tensor(5.3352, device='cuda:0', grad_fn=)\n", + "132000\n", + "13400 tensor(5.4349, device='cuda:0', grad_fn=)\n", + "133000\n", + "13500 tensor(5.3860, device='cuda:0', grad_fn=)\n", + "134000\n", + "13600 tensor(5.4648, device='cuda:0', grad_fn=)\n", + "135000\n", + "13700 tensor(5.4444, device='cuda:0', grad_fn=)\n", + "136000\n", + "13800 tensor(5.4320, device='cuda:0', grad_fn=)\n", + "137000\n", + "13900 tensor(5.2935, device='cuda:0', grad_fn=)\n", + "138000\n", + "14000 tensor(5.5387, device='cuda:0', grad_fn=)\n", + "139000\n", + "14100 tensor(5.2424, device='cuda:0', grad_fn=)\n", + "140000\n", + "14200 tensor(5.5177, device='cuda:0', grad_fn=)\n", + "141000\n", + "14300 tensor(5.4831, device='cuda:0', grad_fn=)\n", + "142000\n", + "14400 tensor(5.3877, device='cuda:0', grad_fn=)\n", + "143000\n", + "14500 tensor(5.4919, device='cuda:0', grad_fn=)\n", + "144000\n", + "14600 tensor(5.5253, device='cuda:0', grad_fn=)\n", + "145000\n", + "14700 tensor(5.3948, device='cuda:0', grad_fn=)\n", + "146000\n", + "14800 tensor(5.8442, device='cuda:0', grad_fn=)\n", + "147000\n", + "14900 tensor(5.4967, device='cuda:0', grad_fn=)\n", + "148000\n", + "15000 tensor(5.3788, device='cuda:0', grad_fn=)\n", + "149000\n", + "15100 tensor(5.5832, device='cuda:0', grad_fn=)\n", + "150000\n", + "15200 tensor(5.4482, device='cuda:0', grad_fn=)\n", + "151000\n", + "15300 tensor(5.4260, device='cuda:0', grad_fn=)\n", + "152000\n", + "15400 tensor(5.3273, device='cuda:0', grad_fn=)\n", + "153000\n", + "15500 tensor(5.4840, device='cuda:0', grad_fn=)\n", + "154000\n", + "15600 tensor(5.4851, device='cuda:0', grad_fn=)\n", + "155000\n", + "15700 tensor(5.3871, device='cuda:0', grad_fn=)\n", + "156000\n", + "15800 tensor(5.2933, device='cuda:0', grad_fn=)\n", + "157000\n", + "15900 tensor(5.4374, device='cuda:0', grad_fn=)\n", + "158000\n", + "16000 tensor(5.2555, device='cuda:0', grad_fn=)\n", + "159000\n", + "16100 tensor(5.3127, device='cuda:0', grad_fn=)\n", + "160000\n", + "16200 tensor(5.6423, device='cuda:0', grad_fn=)\n", + "161000\n", + "16300 tensor(5.4702, device='cuda:0', grad_fn=)\n", + "162000\n", + "16400 tensor(5.4419, device='cuda:0', grad_fn=)\n", + "163000\n", + "16500 tensor(5.5640, device='cuda:0', grad_fn=)\n", + "164000\n", + "16600 tensor(5.4099, device='cuda:0', grad_fn=)\n", + "165000\n", + "16700 tensor(5.3822, device='cuda:0', grad_fn=)\n", + "166000\n", + "16800 tensor(5.4643, device='cuda:0', grad_fn=)\n", + "167000\n", + "16900 tensor(5.2234, device='cuda:0', grad_fn=)\n", + "168000\n", + "17000 tensor(5.5021, device='cuda:0', grad_fn=)\n", + "169000\n", + "17100 tensor(5.3524, device='cuda:0', grad_fn=)\n", + "170000\n", + "17200 tensor(5.4725, device='cuda:0', grad_fn=)\n", + "171000\n", + "17300 tensor(5.5034, device='cuda:0', grad_fn=)\n", + "172000\n", + "17400 tensor(5.2911, device='cuda:0', grad_fn=)\n", + "173000\n", + "17500 tensor(5.3147, device='cuda:0', grad_fn=)\n", + "174000\n", + "17600 tensor(5.3426, device='cuda:0', grad_fn=)\n", + "175000\n", + "17700 tensor(5.3414, device='cuda:0', grad_fn=)\n", + "176000\n", + "17800 tensor(5.3991, device='cuda:0', grad_fn=)\n", + "177000\n", + "17900 tensor(5.2936, device='cuda:0', grad_fn=)\n", + "178000\n", + "18000 tensor(5.5238, device='cuda:0', grad_fn=)\n", + "179000\n", + "18100 tensor(5.4684, device='cuda:0', grad_fn=)\n", + "180000\n", + "18200 tensor(5.3916, device='cuda:0', grad_fn=)\n", + "181000\n", + "18300 tensor(5.3888, device='cuda:0', grad_fn=)\n", + "182000\n", + "18400 tensor(5.4299, device='cuda:0', grad_fn=)\n", + "183000\n", + "18500 tensor(5.4103, device='cuda:0', grad_fn=)\n", + "184000\n", + "18600 tensor(5.5980, device='cuda:0', grad_fn=)\n", + "185000\n", + "18700 tensor(5.4135, device='cuda:0', grad_fn=)\n", + "186000\n", + "18800 tensor(5.5855, device='cuda:0', grad_fn=)\n", + "187000\n", + "18900 tensor(5.4583, device='cuda:0', grad_fn=)\n", + "188000\n", + "19000 tensor(5.4854, device='cuda:0', grad_fn=)\n", + "189000\n", + "19100 tensor(5.5879, device='cuda:0', grad_fn=)\n", + "190000\n", + "19200 tensor(5.4675, device='cuda:0', grad_fn=)\n", + "191000\n", + "19300 tensor(5.5741, device='cuda:0', grad_fn=)\n", + "192000\n", + "19400 tensor(5.3977, device='cuda:0', grad_fn=)\n", + "193000\n", + "19500 tensor(5.4042, device='cuda:0', grad_fn=)\n", + "194000\n", + "19600 tensor(5.4364, device='cuda:0', grad_fn=)\n", + "195000\n", + "19700 tensor(5.4868, device='cuda:0', grad_fn=)\n", + "196000\n", + "19800 tensor(5.3476, device='cuda:0', grad_fn=)\n", + "197000\n", + "19900 tensor(5.3553, device='cuda:0', grad_fn=)\n", + "198000\n", + "20000 tensor(5.3707, device='cuda:0', grad_fn=)\n", + "199000\n", + "20100 tensor(5.3226, device='cuda:0', grad_fn=)\n", + "200000\n", + "20200 tensor(5.2488, device='cuda:0', grad_fn=)\n", + "201000\n", + "20300 tensor(5.3648, device='cuda:0', grad_fn=)\n", + "20400 tensor(5.4156, device='cuda:0', grad_fn=)\n", + "202000\n", + "20500 tensor(5.4102, device='cuda:0', grad_fn=)\n", + "203000\n", + "20600 tensor(5.6109, device='cuda:0', grad_fn=)\n", + "204000\n", + "20700 tensor(5.4335, device='cuda:0', grad_fn=)\n", + "205000\n", + "20800 tensor(5.2795, device='cuda:0', grad_fn=)\n", + "206000\n", + "20900 tensor(5.5609, device='cuda:0', grad_fn=)\n", + "207000\n", + "21000 tensor(5.3918, device='cuda:0', grad_fn=)\n", + "208000\n", + "21100 tensor(5.3831, device='cuda:0', grad_fn=)\n", + "209000\n", + "21200 tensor(5.2790, device='cuda:0', grad_fn=)\n", + "210000\n", + "21300 tensor(5.4710, device='cuda:0', grad_fn=)\n", + "211000\n", + "21400 tensor(5.5050, device='cuda:0', grad_fn=)\n", + "212000\n", + "21500 tensor(5.2692, device='cuda:0', grad_fn=)\n", + "213000\n", + "21600 tensor(5.2668, device='cuda:0', grad_fn=)\n", + "214000\n", + "21700 tensor(5.2633, device='cuda:0', grad_fn=)\n", + "215000\n", + "21800 tensor(5.4067, device='cuda:0', grad_fn=)\n", + "216000\n", + "21900 tensor(5.3829, device='cuda:0', grad_fn=)\n", + "217000\n", + "22000 tensor(5.3773, device='cuda:0', grad_fn=)\n", + "218000\n", + "22100 tensor(5.2472, device='cuda:0', grad_fn=)\n", + "219000\n", + "22200 tensor(5.1171, device='cuda:0', grad_fn=)\n", + "220000\n", + "22300 tensor(5.5545, device='cuda:0', grad_fn=)\n", + "221000\n", + "22400 tensor(5.2499, device='cuda:0', grad_fn=)\n", + "222000\n", + "22500 tensor(5.2943, device='cuda:0', grad_fn=)\n", + "223000\n", + "22600 tensor(5.4748, device='cuda:0', grad_fn=)\n", + "224000\n", + "22700 tensor(5.2436, device='cuda:0', grad_fn=)\n", + "225000\n", + "22800 tensor(5.5053, device='cuda:0', grad_fn=)\n", + "226000\n", + "22900 tensor(5.5519, device='cuda:0', grad_fn=)\n", + "227000\n", + "23000 tensor(5.4541, device='cuda:0', grad_fn=)\n", + "228000\n", + "23100 tensor(5.4279, device='cuda:0', grad_fn=)\n", + "229000\n", + "23200 tensor(5.4286, device='cuda:0', grad_fn=)\n", + "230000\n", + "23300 tensor(5.5179, device='cuda:0', grad_fn=)\n", + "231000\n", + "23400 tensor(5.5355, device='cuda:0', grad_fn=)\n", + "232000\n", + "23500 tensor(5.3505, device='cuda:0', grad_fn=)\n", + "233000\n", + "23600 tensor(5.3313, device='cuda:0', grad_fn=)\n", + "234000\n", + "23700 tensor(5.3509, device='cuda:0', grad_fn=)\n", + "235000\n", + "23800 tensor(5.2170, device='cuda:0', grad_fn=)\n", + "236000\n", + "23900 tensor(5.3101, device='cuda:0', grad_fn=)\n", + "237000\n", + "24000 tensor(5.2962, device='cuda:0', grad_fn=)\n", + "238000\n", + "24100 tensor(5.3882, device='cuda:0', grad_fn=)\n", + "239000\n", + "24200 tensor(5.5633, device='cuda:0', grad_fn=)\n", + "240000\n", + "24300 tensor(5.4595, device='cuda:0', grad_fn=)\n", + "241000\n", + "24400 tensor(5.5932, device='cuda:0', grad_fn=)\n", + "242000\n", + "24500 tensor(5.3717, device='cuda:0', grad_fn=)\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "243000\n", + "24600 tensor(5.4943, device='cuda:0', grad_fn=)\n", + "244000\n", + "24700 tensor(5.3985, device='cuda:0', grad_fn=)\n", + "245000\n", + "24800 tensor(5.4347, device='cuda:0', grad_fn=)\n", + "246000\n", + "24900 tensor(5.5008, device='cuda:0', grad_fn=)\n", + "247000\n", + "25000 tensor(5.5100, device='cuda:0', grad_fn=)\n", + "248000\n", + "25100 tensor(5.4427, device='cuda:0', grad_fn=)\n", + "249000\n", + "25200 tensor(5.4508, device='cuda:0', grad_fn=)\n", + "250000\n", + "25300 tensor(5.4724, device='cuda:0', grad_fn=)\n", + "251000\n", + "25400 tensor(5.4525, device='cuda:0', grad_fn=)\n", + "252000\n", + "25500 tensor(5.3620, device='cuda:0', grad_fn=)\n", + "253000\n", + "25600 tensor(5.6446, device='cuda:0', grad_fn=)\n", + "254000\n", + "25700 tensor(5.3966, device='cuda:0', grad_fn=)\n", + "255000\n", + "25800 tensor(5.4889, device='cuda:0', grad_fn=)\n", + "256000\n", + "25900 tensor(5.4251, device='cuda:0', grad_fn=)\n", + "257000\n", + "26000 tensor(5.4346, device='cuda:0', grad_fn=)\n", + "258000\n", + "26100 tensor(5.3395, device='cuda:0', grad_fn=)\n", + "259000\n", + "26200 tensor(5.2695, device='cuda:0', grad_fn=)\n", + "260000\n", + "26300 tensor(5.4767, device='cuda:0', grad_fn=)\n", + "261000\n", + "26400 tensor(5.5083, device='cuda:0', grad_fn=)\n", + "262000\n", + "26500 tensor(5.2347, device='cuda:0', grad_fn=)\n", + "263000\n", + "26600 tensor(5.5761, device='cuda:0', grad_fn=)\n", + "264000\n", + "26700 tensor(5.4402, device='cuda:0', grad_fn=)\n", + "265000\n", + "26800 tensor(5.6173, device='cuda:0', grad_fn=)\n", + "266000\n", + "26900 tensor(5.3775, device='cuda:0', grad_fn=)\n", + "267000\n", + "27000 tensor(5.2863, device='cuda:0', grad_fn=)\n", + "268000\n", + "27100 tensor(5.3007, device='cuda:0', grad_fn=)\n", + "269000\n", + "27200 tensor(5.3551, device='cuda:0', grad_fn=)\n", + "270000\n", + "27300 tensor(5.5439, device='cuda:0', grad_fn=)\n", + "271000\n", + "27400 tensor(5.4334, device='cuda:0', grad_fn=)\n", + "272000\n", + "27500 tensor(5.3266, device='cuda:0', grad_fn=)\n", + "273000\n", + "27600 tensor(5.6412, device='cuda:0', grad_fn=)\n", + "274000\n", + "27700 tensor(5.4420, device='cuda:0', grad_fn=)\n", + "275000\n", + "27800 tensor(5.4381, device='cuda:0', grad_fn=)\n", + "276000\n", + "27900 tensor(5.5550, device='cuda:0', grad_fn=)\n", + "277000\n", + "28000 tensor(5.4154, device='cuda:0', grad_fn=)\n", + "278000\n", + "28100 tensor(5.3823, device='cuda:0', grad_fn=)\n", + "279000\n", + "28200 tensor(5.5344, device='cuda:0', grad_fn=)\n", + "280000\n", + "28300 tensor(5.1615, device='cuda:0', grad_fn=)\n", + "281000\n", + "28400 tensor(5.6069, device='cuda:0', grad_fn=)\n", + "282000\n", + "28500 tensor(5.4426, device='cuda:0', grad_fn=)\n", + "283000\n", + "28600 tensor(5.3672, device='cuda:0', grad_fn=)\n", + "284000\n", + "28700 tensor(5.5133, device='cuda:0', grad_fn=)\n", + "285000\n", + "28800 tensor(5.5556, device='cuda:0', grad_fn=)\n", + "286000\n", + "28900 tensor(5.4294, device='cuda:0', grad_fn=)\n", + "287000\n", + "29000 tensor(5.3359, device='cuda:0', grad_fn=)\n", + "288000\n", + "29100 tensor(5.0951, device='cuda:0', grad_fn=)\n", + "289000\n", + "29200 tensor(5.2511, device='cuda:0', grad_fn=)\n", + "290000\n", + "29300 tensor(5.5364, device='cuda:0', grad_fn=)\n", + "291000\n", + "29400 tensor(5.6708, device='cuda:0', grad_fn=)\n", + "292000\n", + "29500 tensor(5.4371, device='cuda:0', grad_fn=)\n", + "293000\n", + "29600 tensor(5.2942, device='cuda:0', grad_fn=)\n", + "294000\n", + "29700 tensor(5.4637, device='cuda:0', grad_fn=)\n", + "295000\n", + "29800 tensor(5.2914, device='cuda:0', grad_fn=)\n", + "296000\n", + "29900 tensor(5.5562, device='cuda:0', grad_fn=)\n", + "297000\n", + "30000 tensor(5.2833, device='cuda:0', grad_fn=)\n", + "298000\n", + "30100 tensor(5.3481, device='cuda:0', grad_fn=)\n", + "299000\n", + "30200 tensor(5.3122, device='cuda:0', grad_fn=)\n", + "300000\n", + "30300 tensor(5.4103, device='cuda:0', grad_fn=)\n", + "301000\n", + "30400 tensor(5.2480, device='cuda:0', grad_fn=)\n", + "302000\n", + "30500 tensor(5.4258, device='cuda:0', grad_fn=)\n", + "30600 tensor(5.3835, device='cuda:0', grad_fn=)\n", + "303000\n", + "30700 tensor(5.4193, device='cuda:0', grad_fn=)\n", + "304000\n", + "30800 tensor(5.4438, device='cuda:0', grad_fn=)\n", + "305000\n", + "30900 tensor(5.4518, device='cuda:0', grad_fn=)\n", + "306000\n", + "31000 tensor(5.5607, device='cuda:0', grad_fn=)\n", + "307000\n", + "31100 tensor(5.2059, device='cuda:0', grad_fn=)\n", + "308000\n", + "31200 tensor(5.2571, device='cuda:0', grad_fn=)\n", + "309000\n", + "31300 tensor(5.5208, device='cuda:0', grad_fn=)\n", + "310000\n", + "31400 tensor(5.3061, device='cuda:0', grad_fn=)\n", + "311000\n", + "31500 tensor(5.4834, device='cuda:0', grad_fn=)\n", + "312000\n", + "31600 tensor(5.4653, device='cuda:0', grad_fn=)\n", + "313000\n", + "31700 tensor(5.4308, device='cuda:0', grad_fn=)\n", + "314000\n", + "31800 tensor(5.5400, device='cuda:0', grad_fn=)\n", + "315000\n", + "31900 tensor(5.1536, device='cuda:0', grad_fn=)\n", + "316000\n", + "32000 tensor(5.3460, device='cuda:0', grad_fn=)\n", + "317000\n", + "32100 tensor(5.2300, device='cuda:0', grad_fn=)\n", + "318000\n", + "32200 tensor(5.5511, device='cuda:0', grad_fn=)\n", + "319000\n", + "32300 tensor(5.5391, device='cuda:0', grad_fn=)\n", + "320000\n", + "32400 tensor(5.5157, device='cuda:0', grad_fn=)\n", + "321000\n", + "32500 tensor(5.3336, device='cuda:0', grad_fn=)\n", + "322000\n", + "32600 tensor(5.4475, device='cuda:0', grad_fn=)\n", + "323000\n", + "32700 tensor(5.3894, device='cuda:0', grad_fn=)\n", + "324000\n", + "32800 tensor(5.6022, device='cuda:0', grad_fn=)\n", + "325000\n", + "32900 tensor(5.4663, device='cuda:0', grad_fn=)\n", + "326000\n", + "33000 tensor(5.2387, device='cuda:0', grad_fn=)\n", + "327000\n", + "33100 tensor(5.4446, device='cuda:0', grad_fn=)\n", + "328000\n", + "33200 tensor(5.5450, device='cuda:0', grad_fn=)\n", + "329000\n", + "33300 tensor(5.3179, device='cuda:0', grad_fn=)\n", + "330000\n", + "33400 tensor(5.5905, device='cuda:0', grad_fn=)\n", + "331000\n", + "33500 tensor(5.4066, device='cuda:0', grad_fn=)\n", + "332000\n", + "33600 tensor(5.3542, device='cuda:0', grad_fn=)\n", + "333000\n", + "33700 tensor(5.4097, device='cuda:0', grad_fn=)\n", + "334000\n", + "33800 tensor(5.4912, device='cuda:0', grad_fn=)\n", + "335000\n", + "33900 tensor(5.2358, device='cuda:0', grad_fn=)\n", + "336000\n", + "34000 tensor(5.4470, device='cuda:0', grad_fn=)\n", + "337000\n", + "34100 tensor(5.4207, device='cuda:0', grad_fn=)\n", + "338000\n", + "34200 tensor(5.4651, device='cuda:0', grad_fn=)\n", + "339000\n", + "34300 tensor(5.2545, device='cuda:0', grad_fn=)\n", + "340000\n", + "34400 tensor(5.7106, device='cuda:0', grad_fn=)\n", + "341000\n", + "34500 tensor(5.5699, device='cuda:0', grad_fn=)\n", + "342000\n", + "34600 tensor(5.4638, device='cuda:0', grad_fn=)\n", + "343000\n", + "34700 tensor(5.5382, device='cuda:0', grad_fn=)\n", + "344000\n", + "34800 tensor(5.5603, device='cuda:0', grad_fn=)\n", + "345000\n", + "34900 tensor(5.6072, device='cuda:0', grad_fn=)\n", + "346000\n", + "35000 tensor(5.6037, device='cuda:0', grad_fn=)\n", + "347000\n", + "35100 tensor(5.4069, device='cuda:0', grad_fn=)\n", + "348000\n", + "35200 tensor(5.3398, device='cuda:0', grad_fn=)\n", + "349000\n", + "35300 tensor(5.5607, device='cuda:0', grad_fn=)\n", + "350000\n", + "35400 tensor(5.2068, device='cuda:0', grad_fn=)\n", + "351000\n", + "35500 tensor(5.3112, device='cuda:0', grad_fn=)\n", + "352000\n", + "35600 tensor(5.4126, device='cuda:0', grad_fn=)\n", + "353000\n", + "35700 tensor(5.3091, device='cuda:0', grad_fn=)\n", + "354000\n", + "35800 tensor(5.4252, device='cuda:0', grad_fn=)\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "355000\n", + "35900 tensor(5.3956, device='cuda:0', grad_fn=)\n", + "356000\n", + "36000 tensor(5.1705, device='cuda:0', grad_fn=)\n", + "357000\n", + "36100 tensor(5.5497, device='cuda:0', grad_fn=)\n", + "358000\n", + "36200 tensor(5.4066, device='cuda:0', grad_fn=)\n", + "359000\n", + "36300 tensor(5.6858, device='cuda:0', grad_fn=)\n", + "360000\n", + "36400 tensor(5.3812, device='cuda:0', grad_fn=)\n", + "361000\n", + "36500 tensor(5.3990, device='cuda:0', grad_fn=)\n", + "362000\n", + "36600 tensor(5.4302, device='cuda:0', grad_fn=)\n", + "363000\n", + "36700 tensor(5.2253, device='cuda:0', grad_fn=)\n", + "364000\n", + "36800 tensor(5.3347, device='cuda:0', grad_fn=)\n", + "365000\n", + "36900 tensor(5.4426, device='cuda:0', grad_fn=)\n", + "366000\n", + "37000 tensor(5.3419, device='cuda:0', grad_fn=)\n", + "367000\n", + "37100 tensor(5.3579, device='cuda:0', grad_fn=)\n", + "368000\n", + "37200 tensor(5.4332, device='cuda:0', grad_fn=)\n", + "369000\n", + "37300 tensor(5.3362, device='cuda:0', grad_fn=)\n", + "370000\n", + "37400 tensor(5.7100, device='cuda:0', grad_fn=)\n", + "371000\n", + "37500 tensor(5.3742, device='cuda:0', grad_fn=)\n", + "372000\n", + "37600 tensor(5.3615, device='cuda:0', grad_fn=)\n", + "373000\n", + "37700 tensor(5.5402, device='cuda:0', grad_fn=)\n", + "374000\n", + "37800 tensor(5.3734, device='cuda:0', grad_fn=)\n", + "375000\n", + "37900 tensor(5.3621, device='cuda:0', grad_fn=)\n", + "376000\n", + "38000 tensor(5.4380, device='cuda:0', grad_fn=)\n", + "377000\n", + "38100 tensor(5.4513, device='cuda:0', grad_fn=)\n", + "378000\n", + "38200 tensor(5.4554, device='cuda:0', grad_fn=)\n", + "379000\n", + "38300 tensor(5.3735, device='cuda:0', grad_fn=)\n", + "380000\n", + "38400 tensor(5.4297, device='cuda:0', grad_fn=)\n", + "381000\n", + "38500 tensor(5.4561, device='cuda:0', grad_fn=)\n", + "382000\n", + "38600 tensor(5.4118, device='cuda:0', grad_fn=)\n", + "383000\n", + "38700 tensor(5.3996, device='cuda:0', grad_fn=)\n", + "384000\n", + "38800 tensor(5.4825, device='cuda:0', grad_fn=)\n", + "385000\n", + "38900 tensor(5.5692, device='cuda:0', grad_fn=)\n", + "386000\n", + "39000 tensor(5.2573, device='cuda:0', grad_fn=)\n", + "387000\n", + "39100 tensor(5.4847, device='cuda:0', grad_fn=)\n", + "388000\n", + "39200 tensor(5.5802, device='cuda:0', grad_fn=)\n", + "389000\n", + "39300 tensor(5.3968, device='cuda:0', grad_fn=)\n", + "390000\n", + "39400 tensor(5.4666, device='cuda:0', grad_fn=)\n", + "391000\n", + "39500 tensor(5.5847, device='cuda:0', grad_fn=)\n", + "392000\n", + "39600 tensor(5.2648, device='cuda:0', grad_fn=)\n", + "393000\n", + "39700 tensor(5.2423, device='cuda:0', grad_fn=)\n", + "394000\n", + "39800 tensor(5.3731, device='cuda:0', grad_fn=)\n", + "395000\n", + "39900 tensor(5.2014, device='cuda:0', grad_fn=)\n", + "396000\n", + "40000 tensor(5.2903, device='cuda:0', grad_fn=)\n", + "397000\n", + "40100 tensor(5.3712, device='cuda:0', grad_fn=)\n", + "398000\n", + "40200 tensor(5.3557, device='cuda:0', grad_fn=)\n", + "399000\n", + "40300 tensor(5.4151, device='cuda:0', grad_fn=)\n", + "40400 tensor(5.4358, device='cuda:0', grad_fn=)\n", + "400000\n", + "40500 tensor(5.3498, device='cuda:0', grad_fn=)\n", + "401000\n", + "40600 tensor(5.4152, device='cuda:0', grad_fn=)\n", + "402000\n", + "40700 tensor(5.4551, device='cuda:0', grad_fn=)\n", + "403000\n", + "40800 tensor(5.4138, device='cuda:0', grad_fn=)\n", + "404000\n", + "40900 tensor(5.3628, device='cuda:0', grad_fn=)\n", + "405000\n", + "41000 tensor(5.4124, device='cuda:0', grad_fn=)\n", + "406000\n", + "41100 tensor(5.3750, device='cuda:0', grad_fn=)\n", + "407000\n", + "41200 tensor(5.2687, device='cuda:0', grad_fn=)\n", + "408000\n", + "41300 tensor(5.3987, device='cuda:0', grad_fn=)\n", + "409000\n", + "41400 tensor(5.2976, device='cuda:0', grad_fn=)\n", + "410000\n", + "41500 tensor(5.4418, device='cuda:0', grad_fn=)\n", + "411000\n", + "41600 tensor(5.3558, device='cuda:0', grad_fn=)\n", + "412000\n", + "41700 tensor(5.3767, device='cuda:0', grad_fn=)\n", + "413000\n", + "41800 tensor(5.3836, device='cuda:0', grad_fn=)\n", + "414000\n", + "41900 tensor(5.3904, device='cuda:0', grad_fn=)\n", + "415000\n", + "42000 tensor(5.5445, device='cuda:0', grad_fn=)\n", + "416000\n", + "42100 tensor(5.2890, device='cuda:0', grad_fn=)\n", + "417000\n", + "42200 tensor(5.3691, device='cuda:0', grad_fn=)\n", + "418000\n", + "42300 tensor(5.4364, device='cuda:0', grad_fn=)\n", + "419000\n", + "42400 tensor(5.2507, device='cuda:0', grad_fn=)\n", + "420000\n", + "42500 tensor(5.4215, device='cuda:0', grad_fn=)\n", + "421000\n", + "42600 tensor(5.2136, device='cuda:0', grad_fn=)\n", + "422000\n", + "42700 tensor(5.5296, device='cuda:0', grad_fn=)\n", + "423000\n", + "42800 tensor(5.4544, device='cuda:0', grad_fn=)\n", + "424000\n", + "42900 tensor(5.3009, device='cuda:0', grad_fn=)\n", + "425000\n", + "43000 tensor(5.4403, device='cuda:0', grad_fn=)\n", + "426000\n", + "43100 tensor(5.4384, device='cuda:0', grad_fn=)\n", + "427000\n", + "43200 tensor(5.2520, device='cuda:0', grad_fn=)\n", + "428000\n", + "43300 tensor(5.2945, device='cuda:0', grad_fn=)\n", + "429000\n", + "43400 tensor(5.4455, device='cuda:0', grad_fn=)\n", + "430000\n", + "43500 tensor(5.1633, device='cuda:0', grad_fn=)\n", + "431000\n", + "43600 tensor(5.3649, device='cuda:0', grad_fn=)\n", + "432000\n", + "epoch: = 3\n", + "0 tensor(5.3427, device='cuda:0', grad_fn=)\n", + "1000\n", + "100 tensor(5.4180, device='cuda:0', grad_fn=)\n", + "200 tensor(5.2939, device='cuda:0', grad_fn=)\n", + "2000\n", + "300 tensor(5.3083, device='cuda:0', grad_fn=)\n", + "3000\n", + "400 tensor(5.3086, device='cuda:0', grad_fn=)\n", + "4000\n", + "500 tensor(5.4733, device='cuda:0', grad_fn=)\n", + "5000\n", + "600 tensor(5.2627, device='cuda:0', grad_fn=)\n", + "6000\n", + "700 tensor(5.5664, device='cuda:0', grad_fn=)\n", + "7000\n", + "800 tensor(5.1641, device='cuda:0', grad_fn=)\n", + "8000\n", + "900 tensor(5.4272, device='cuda:0', grad_fn=)\n", + "9000\n", + "1000 tensor(5.2926, device='cuda:0', grad_fn=)\n", + "10000\n", + "1100 tensor(5.4848, device='cuda:0', grad_fn=)\n", + "11000\n", + "1200 tensor(5.5283, device='cuda:0', grad_fn=)\n", + "12000\n", + "1300 tensor(5.4635, device='cuda:0', grad_fn=)\n", + "13000\n", + "1400 tensor(5.4590, device='cuda:0', grad_fn=)\n", + "14000\n", + "1500 tensor(5.5386, device='cuda:0', grad_fn=)\n", + "15000\n", + "1600 tensor(5.2150, device='cuda:0', grad_fn=)\n", + "16000\n", + "1700 tensor(5.3116, device='cuda:0', grad_fn=)\n", + "17000\n", + "1800 tensor(5.3130, device='cuda:0', grad_fn=)\n", + "18000\n", + "1900 tensor(5.2889, device='cuda:0', grad_fn=)\n", + "19000\n", + "2000 tensor(5.3574, device='cuda:0', grad_fn=)\n", + "20000\n", + "2100 tensor(5.4860, device='cuda:0', grad_fn=)\n", + "21000\n", + "2200 tensor(5.3206, device='cuda:0', grad_fn=)\n", + "22000\n", + "2300 tensor(5.3447, device='cuda:0', grad_fn=)\n", + "23000\n", + "2400 tensor(5.3333, device='cuda:0', grad_fn=)\n", + "24000\n", + "2500 tensor(5.3822, device='cuda:0', grad_fn=)\n", + "25000\n", + "2600 tensor(5.4039, device='cuda:0', grad_fn=)\n", + "26000\n", + "2700 tensor(5.4280, device='cuda:0', grad_fn=)\n", + "27000\n", + "2800 tensor(5.4575, device='cuda:0', grad_fn=)\n", + "28000\n", + "2900 tensor(5.5878, device='cuda:0', grad_fn=)\n", + "29000\n", + "3000 tensor(5.3311, device='cuda:0', grad_fn=)\n", + "30000\n", + "3100 tensor(5.4103, device='cuda:0', grad_fn=)\n", + "31000\n", + "3200 tensor(5.4323, device='cuda:0', grad_fn=)\n", + "32000\n", + "3300 tensor(5.3521, device='cuda:0', grad_fn=)\n", + "33000\n", + "3400 tensor(5.2512, device='cuda:0', grad_fn=)\n", + "34000\n", + "3500 tensor(5.3813, device='cuda:0', grad_fn=)\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "35000\n", + "3600 tensor(5.4000, device='cuda:0', grad_fn=)\n", + "36000\n", + "3700 tensor(5.3312, device='cuda:0', grad_fn=)\n", + "37000\n", + "3800 tensor(5.3553, device='cuda:0', grad_fn=)\n", + "38000\n", + "3900 tensor(5.2275, device='cuda:0', grad_fn=)\n", + "39000\n", + "4000 tensor(5.2883, device='cuda:0', grad_fn=)\n", + "40000\n", + "4100 tensor(5.4294, device='cuda:0', grad_fn=)\n", + "41000\n", + "4200 tensor(5.4801, device='cuda:0', grad_fn=)\n", + "42000\n", + "4300 tensor(5.3863, device='cuda:0', grad_fn=)\n", + "43000\n", + "4400 tensor(5.4470, device='cuda:0', grad_fn=)\n", + "44000\n", + "4500 tensor(5.2610, device='cuda:0', grad_fn=)\n", + "45000\n", + "4600 tensor(5.5962, device='cuda:0', grad_fn=)\n", + "46000\n", + "4700 tensor(5.3029, device='cuda:0', grad_fn=)\n", + "47000\n", + "4800 tensor(5.4265, device='cuda:0', grad_fn=)\n", + "48000\n", + "4900 tensor(5.4823, device='cuda:0', grad_fn=)\n", + "49000\n", + "5000 tensor(5.4749, device='cuda:0', grad_fn=)\n", + "50000\n", + "5100 tensor(5.5356, device='cuda:0', grad_fn=)\n", + "51000\n", + "5200 tensor(5.5513, device='cuda:0', grad_fn=)\n", + "52000\n", + "5300 tensor(5.5476, device='cuda:0', grad_fn=)\n", + "53000\n", + "5400 tensor(5.4039, device='cuda:0', grad_fn=)\n", + "54000\n", + "5500 tensor(5.5156, device='cuda:0', grad_fn=)\n", + "55000\n", + "5600 tensor(5.2975, device='cuda:0', grad_fn=)\n", + "56000\n", + "5700 tensor(5.5492, device='cuda:0', grad_fn=)\n", + "57000\n", + "5800 tensor(5.5379, device='cuda:0', grad_fn=)\n", + "58000\n", + "5900 tensor(5.4874, device='cuda:0', grad_fn=)\n", + "59000\n", + "6000 tensor(5.3808, device='cuda:0', grad_fn=)\n", + "60000\n", + "6100 tensor(5.3932, device='cuda:0', grad_fn=)\n", + "61000\n", + "6200 tensor(5.5657, device='cuda:0', grad_fn=)\n", + "62000\n", + "6300 tensor(5.4233, device='cuda:0', grad_fn=)\n", + "63000\n", + "6400 tensor(5.3438, device='cuda:0', grad_fn=)\n", + "64000\n", + "6500 tensor(5.2002, device='cuda:0', grad_fn=)\n", + "65000\n", + "6600 tensor(5.3774, device='cuda:0', grad_fn=)\n", + "66000\n", + "6700 tensor(5.3193, device='cuda:0', grad_fn=)\n", + "67000\n", + "6800 tensor(5.5394, device='cuda:0', grad_fn=)\n", + "68000\n", + "6900 tensor(5.5196, device='cuda:0', grad_fn=)\n", + "69000\n", + "7000 tensor(5.4282, device='cuda:0', grad_fn=)\n", + "70000\n", + "7100 tensor(5.2296, device='cuda:0', grad_fn=)\n", + "71000\n", + "7200 tensor(5.3175, device='cuda:0', grad_fn=)\n", + "72000\n", + "7300 tensor(5.5642, device='cuda:0', grad_fn=)\n", + "73000\n", + "7400 tensor(5.3784, device='cuda:0', grad_fn=)\n", + "74000\n", + "7500 tensor(5.2475, device='cuda:0', grad_fn=)\n", + "75000\n", + "7600 tensor(5.3194, device='cuda:0', grad_fn=)\n", + "76000\n", + "7700 tensor(5.3934, device='cuda:0', grad_fn=)\n", + "77000\n", + "7800 tensor(5.5041, device='cuda:0', grad_fn=)\n", + "78000\n", + "7900 tensor(5.1814, device='cuda:0', grad_fn=)\n", + "79000\n", + "8000 tensor(5.2426, device='cuda:0', grad_fn=)\n", + "80000\n", + "8100 tensor(5.4104, device='cuda:0', grad_fn=)\n", + "81000\n", + "8200 tensor(5.4198, device='cuda:0', grad_fn=)\n", + "82000\n", + "8300 tensor(5.3854, device='cuda:0', grad_fn=)\n", + "83000\n", + "8400 tensor(5.5128, device='cuda:0', grad_fn=)\n", + "84000\n", + "8500 tensor(5.4898, device='cuda:0', grad_fn=)\n", + "85000\n", + "8600 tensor(5.4943, device='cuda:0', grad_fn=)\n", + "86000\n", + "8700 tensor(5.6012, device='cuda:0', grad_fn=)\n", + "87000\n", + "8800 tensor(5.4790, device='cuda:0', grad_fn=)\n", + "88000\n", + "8900 tensor(5.3312, device='cuda:0', grad_fn=)\n", + "89000\n", + "9000 tensor(5.4456, device='cuda:0', grad_fn=)\n", + "90000\n", + "9100 tensor(5.4537, device='cuda:0', grad_fn=)\n", + "91000\n", + "9200 tensor(5.3643, device='cuda:0', grad_fn=)\n", + "92000\n", + "9300 tensor(5.4085, device='cuda:0', grad_fn=)\n", + "93000\n", + "9400 tensor(5.2527, device='cuda:0', grad_fn=)\n", + "94000\n", + "9500 tensor(5.3289, device='cuda:0', grad_fn=)\n", + "95000\n", + "9600 tensor(5.4516, device='cuda:0', grad_fn=)\n", + "96000\n", + "9700 tensor(5.3881, device='cuda:0', grad_fn=)\n", + "97000\n", + "9800 tensor(5.4321, device='cuda:0', grad_fn=)\n", + "9900 tensor(5.2532, device='cuda:0', grad_fn=)\n", + "98000\n", + "10000 tensor(5.4727, device='cuda:0', grad_fn=)\n", + "99000\n", + "10100 tensor(5.3607, device='cuda:0', grad_fn=)\n", + "100000\n", + "10200 tensor(5.2989, device='cuda:0', grad_fn=)\n", + "101000\n", + "10300 tensor(5.4168, device='cuda:0', grad_fn=)\n", + "102000\n", + "10400 tensor(5.4272, device='cuda:0', grad_fn=)\n", + "103000\n", + "10500 tensor(5.4838, device='cuda:0', grad_fn=)\n", + "104000\n", + "10600 tensor(5.5675, device='cuda:0', grad_fn=)\n", + "105000\n", + "10700 tensor(5.4027, device='cuda:0', grad_fn=)\n", + "106000\n", + "10800 tensor(5.4252, device='cuda:0', grad_fn=)\n", + "107000\n", + "10900 tensor(5.3408, device='cuda:0', grad_fn=)\n", + "108000\n", + "11000 tensor(5.5754, device='cuda:0', grad_fn=)\n", + "109000\n", + "11100 tensor(5.1920, device='cuda:0', grad_fn=)\n", + "110000\n", + "11200 tensor(5.3604, device='cuda:0', grad_fn=)\n", + "111000\n", + "11300 tensor(5.3836, device='cuda:0', grad_fn=)\n", + "112000\n", + "11400 tensor(5.3330, device='cuda:0', grad_fn=)\n", + "113000\n", + "11500 tensor(5.4023, device='cuda:0', grad_fn=)\n", + "114000\n", + "11600 tensor(5.3923, device='cuda:0', grad_fn=)\n", + "115000\n", + "11700 tensor(5.3145, device='cuda:0', grad_fn=)\n", + "116000\n", + "11800 tensor(5.5174, device='cuda:0', grad_fn=)\n", + "117000\n", + "11900 tensor(5.3522, device='cuda:0', grad_fn=)\n", + "118000\n", + "12000 tensor(5.4232, device='cuda:0', grad_fn=)\n", + "119000\n", + "12100 tensor(5.4382, device='cuda:0', grad_fn=)\n", + "120000\n", + "12200 tensor(5.4488, device='cuda:0', grad_fn=)\n", + "121000\n", + "12300 tensor(5.5409, device='cuda:0', grad_fn=)\n", + "122000\n", + "12400 tensor(5.4200, device='cuda:0', grad_fn=)\n", + "123000\n", + "12500 tensor(5.3292, device='cuda:0', grad_fn=)\n", + "124000\n", + "12600 tensor(5.3788, device='cuda:0', grad_fn=)\n", + "125000\n", + "12700 tensor(5.3116, device='cuda:0', grad_fn=)\n", + "126000\n", + "12800 tensor(5.4948, device='cuda:0', grad_fn=)\n", + "127000\n", + "12900 tensor(5.3557, device='cuda:0', grad_fn=)\n", + "128000\n", + "13000 tensor(5.1732, device='cuda:0', grad_fn=)\n", + "129000\n", + "13100 tensor(5.3782, device='cuda:0', grad_fn=)\n", + "130000\n", + "13200 tensor(5.4178, device='cuda:0', grad_fn=)\n", + "131000\n", + "13300 tensor(5.2929, device='cuda:0', grad_fn=)\n", + "132000\n", + "13400 tensor(5.3806, device='cuda:0', grad_fn=)\n", + "133000\n", + "13500 tensor(5.3394, device='cuda:0', grad_fn=)\n", + "134000\n", + "13600 tensor(5.4191, device='cuda:0', grad_fn=)\n", + "135000\n", + "13700 tensor(5.3856, device='cuda:0', grad_fn=)\n", + "136000\n", + "13800 tensor(5.3839, device='cuda:0', grad_fn=)\n", + "137000\n", + "13900 tensor(5.2391, device='cuda:0', grad_fn=)\n", + "138000\n", + "14000 tensor(5.4865, device='cuda:0', grad_fn=)\n", + "139000\n", + "14100 tensor(5.1952, device='cuda:0', grad_fn=)\n", + "140000\n", + "14200 tensor(5.4670, device='cuda:0', grad_fn=)\n", + "141000\n", + "14300 tensor(5.4385, device='cuda:0', grad_fn=)\n", + "142000\n", + "14400 tensor(5.3347, device='cuda:0', grad_fn=)\n", + "143000\n", + "14500 tensor(5.4370, device='cuda:0', grad_fn=)\n", + "144000\n", + "14600 tensor(5.4695, device='cuda:0', grad_fn=)\n", + "145000\n", + "14700 tensor(5.3453, device='cuda:0', grad_fn=)\n", + "146000\n", + "14800 tensor(5.7928, device='cuda:0', grad_fn=)\n", + "147000\n", + "14900 tensor(5.4451, device='cuda:0', grad_fn=)\n", + "148000\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "15000 tensor(5.3087, device='cuda:0', grad_fn=)\n", + "149000\n", + "15100 tensor(5.5241, device='cuda:0', grad_fn=)\n", + "150000\n", + "15200 tensor(5.3894, device='cuda:0', grad_fn=)\n", + "151000\n", + "15300 tensor(5.3809, device='cuda:0', grad_fn=)\n", + "152000\n", + "15400 tensor(5.2696, device='cuda:0', grad_fn=)\n", + "153000\n", + "15500 tensor(5.4343, device='cuda:0', grad_fn=)\n", + "154000\n", + "15600 tensor(5.4322, device='cuda:0', grad_fn=)\n", + "155000\n", + "15700 tensor(5.3296, device='cuda:0', grad_fn=)\n", + "156000\n", + "15800 tensor(5.2456, device='cuda:0', grad_fn=)\n", + "157000\n", + "15900 tensor(5.3806, device='cuda:0', grad_fn=)\n", + "158000\n", + "16000 tensor(5.2008, device='cuda:0', grad_fn=)\n", + "159000\n", + "16100 tensor(5.2489, device='cuda:0', grad_fn=)\n", + "160000\n", + "16200 tensor(5.5902, device='cuda:0', grad_fn=)\n", + "161000\n", + "16300 tensor(5.4159, device='cuda:0', grad_fn=)\n", + "162000\n", + "16400 tensor(5.3966, device='cuda:0', grad_fn=)\n", + "163000\n", + "16500 tensor(5.5113, device='cuda:0', grad_fn=)\n", + "164000\n", + "16600 tensor(5.3599, device='cuda:0', grad_fn=)\n", + "165000\n", + "16700 tensor(5.3372, device='cuda:0', grad_fn=)\n", + "166000\n", + "16800 tensor(5.4158, device='cuda:0', grad_fn=)\n", + "167000\n", + "16900 tensor(5.1788, device='cuda:0', grad_fn=)\n", + "168000\n", + "17000 tensor(5.4497, device='cuda:0', grad_fn=)\n", + "169000\n", + "17100 tensor(5.2981, device='cuda:0', grad_fn=)\n", + "170000\n", + "17200 tensor(5.4330, device='cuda:0', grad_fn=)\n", + "171000\n", + "17300 tensor(5.4495, device='cuda:0', grad_fn=)\n", + "172000\n", + "17400 tensor(5.2431, device='cuda:0', grad_fn=)\n", + "173000\n", + "17500 tensor(5.2652, device='cuda:0', grad_fn=)\n", + "174000\n", + "17600 tensor(5.3007, device='cuda:0', grad_fn=)\n", + "175000\n", + "17700 tensor(5.2852, device='cuda:0', grad_fn=)\n", + "176000\n", + "17800 tensor(5.3431, device='cuda:0', grad_fn=)\n", + "177000\n", + "17900 tensor(5.2395, device='cuda:0', grad_fn=)\n", + "178000\n", + "18000 tensor(5.4841, device='cuda:0', grad_fn=)\n", + "179000\n", + "18100 tensor(5.4218, device='cuda:0', grad_fn=)\n", + "180000\n", + "18200 tensor(5.3397, device='cuda:0', grad_fn=)\n", + "181000\n", + "18300 tensor(5.3426, device='cuda:0', grad_fn=)\n", + "182000\n", + "18400 tensor(5.3654, device='cuda:0', grad_fn=)\n", + "183000\n", + "18500 tensor(5.3484, device='cuda:0', grad_fn=)\n", + "184000\n", + "18600 tensor(5.5509, device='cuda:0', grad_fn=)\n", + "185000\n", + "18700 tensor(5.3702, device='cuda:0', grad_fn=)\n", + "186000\n", + "18800 tensor(5.5361, device='cuda:0', grad_fn=)\n", + "187000\n", + "18900 tensor(5.4132, device='cuda:0', grad_fn=)\n", + "188000\n", + "19000 tensor(5.4235, device='cuda:0', grad_fn=)\n", + "189000\n", + "19100 tensor(5.5318, device='cuda:0', grad_fn=)\n", + "190000\n", + "19200 tensor(5.4136, device='cuda:0', grad_fn=)\n", + "191000\n", + "19300 tensor(5.5053, device='cuda:0', grad_fn=)\n", + "192000\n", + "19400 tensor(5.3472, device='cuda:0', grad_fn=)\n", + "193000\n", + "19500 tensor(5.3511, device='cuda:0', grad_fn=)\n", + "194000\n", + "19600 tensor(5.3861, device='cuda:0', grad_fn=)\n", + "195000\n", + "19700 tensor(5.4345, device='cuda:0', grad_fn=)\n", + "196000\n", + "19800 tensor(5.3067, device='cuda:0', grad_fn=)\n", + "197000\n", + "19900 tensor(5.3079, device='cuda:0', grad_fn=)\n", + "198000\n", + "20000 tensor(5.3268, device='cuda:0', grad_fn=)\n", + "199000\n", + "20100 tensor(5.2668, device='cuda:0', grad_fn=)\n", + "200000\n", + "20200 tensor(5.1998, device='cuda:0', grad_fn=)\n", + "201000\n", + "20300 tensor(5.3105, device='cuda:0', grad_fn=)\n", + "20400 tensor(5.3584, device='cuda:0', grad_fn=)\n", + "202000\n", + "20500 tensor(5.3580, device='cuda:0', grad_fn=)\n", + "203000\n", + "20600 tensor(5.5528, device='cuda:0', grad_fn=)\n", + "204000\n", + "20700 tensor(5.3871, device='cuda:0', grad_fn=)\n", + "205000\n", + "20800 tensor(5.2208, device='cuda:0', grad_fn=)\n", + "206000\n", + "20900 tensor(5.5007, device='cuda:0', grad_fn=)\n", + "207000\n", + "21000 tensor(5.3396, device='cuda:0', grad_fn=)\n", + "208000\n", + "21100 tensor(5.3407, device='cuda:0', grad_fn=)\n", + "209000\n", + "21200 tensor(5.2243, device='cuda:0', grad_fn=)\n", + "210000\n", + "21300 tensor(5.4206, device='cuda:0', grad_fn=)\n", + "211000\n", + "21400 tensor(5.4574, device='cuda:0', grad_fn=)\n", + "212000\n", + "21500 tensor(5.2328, device='cuda:0', grad_fn=)\n", + "213000\n", + "21600 tensor(5.2233, device='cuda:0', grad_fn=)\n", + "214000\n", + "21700 tensor(5.2152, device='cuda:0', grad_fn=)\n", + "215000\n", + "21800 tensor(5.3497, device='cuda:0', grad_fn=)\n", + "216000\n", + "21900 tensor(5.3425, device='cuda:0', grad_fn=)\n", + "217000\n", + "22000 tensor(5.3277, device='cuda:0', grad_fn=)\n", + "218000\n", + "22100 tensor(5.2012, device='cuda:0', grad_fn=)\n", + "219000\n", + "22200 tensor(5.0736, device='cuda:0', grad_fn=)\n", + "220000\n", + "22300 tensor(5.5070, device='cuda:0', grad_fn=)\n", + "221000\n", + "22400 tensor(5.2190, device='cuda:0', grad_fn=)\n", + "222000\n", + "22500 tensor(5.2434, device='cuda:0', grad_fn=)\n", + "223000\n", + "22600 tensor(5.4325, device='cuda:0', grad_fn=)\n", + "224000\n", + "22700 tensor(5.1909, device='cuda:0', grad_fn=)\n", + "225000\n", + "22800 tensor(5.4576, device='cuda:0', grad_fn=)\n", + "226000\n", + "22900 tensor(5.5069, device='cuda:0', grad_fn=)\n", + "227000\n", + "23000 tensor(5.4041, device='cuda:0', grad_fn=)\n", + "228000\n", + "23100 tensor(5.3908, device='cuda:0', grad_fn=)\n", + "229000\n", + "23200 tensor(5.3866, device='cuda:0', grad_fn=)\n", + "230000\n", + "23300 tensor(5.4714, device='cuda:0', grad_fn=)\n", + "231000\n", + "23400 tensor(5.4781, device='cuda:0', grad_fn=)\n", + "232000\n", + "23500 tensor(5.3154, device='cuda:0', grad_fn=)\n", + "233000\n", + "23600 tensor(5.2854, device='cuda:0', grad_fn=)\n", + "234000\n", + "23700 tensor(5.3050, device='cuda:0', grad_fn=)\n", + "235000\n", + "23800 tensor(5.1721, device='cuda:0', grad_fn=)\n", + "236000\n", + "23900 tensor(5.2637, device='cuda:0', grad_fn=)\n", + "237000\n", + "24000 tensor(5.2519, device='cuda:0', grad_fn=)\n", + "238000\n", + "24100 tensor(5.3407, device='cuda:0', grad_fn=)\n", + "239000\n", + "24200 tensor(5.5137, device='cuda:0', grad_fn=)\n", + "240000\n", + "24300 tensor(5.4080, device='cuda:0', grad_fn=)\n", + "241000\n", + "24400 tensor(5.5379, device='cuda:0', grad_fn=)\n", + "242000\n", + "24500 tensor(5.3255, device='cuda:0', grad_fn=)\n", + "243000\n", + "24600 tensor(5.4515, device='cuda:0', grad_fn=)\n", + "244000\n", + "24700 tensor(5.3535, device='cuda:0', grad_fn=)\n", + "245000\n", + "24800 tensor(5.3935, device='cuda:0', grad_fn=)\n", + "246000\n", + "24900 tensor(5.4553, device='cuda:0', grad_fn=)\n", + "247000\n", + "25000 tensor(5.4708, device='cuda:0', grad_fn=)\n", + "248000\n", + "25100 tensor(5.3920, device='cuda:0', grad_fn=)\n", + "249000\n", + "25200 tensor(5.4083, device='cuda:0', grad_fn=)\n", + "250000\n", + "25300 tensor(5.4332, device='cuda:0', grad_fn=)\n", + "251000\n", + "25400 tensor(5.4136, device='cuda:0', grad_fn=)\n", + "252000\n", + "25500 tensor(5.3147, device='cuda:0', grad_fn=)\n", + "253000\n", + "25600 tensor(5.5860, device='cuda:0', grad_fn=)\n", + "254000\n", + "25700 tensor(5.3490, device='cuda:0', grad_fn=)\n", + "255000\n", + "25800 tensor(5.4464, device='cuda:0', grad_fn=)\n", + "256000\n", + "25900 tensor(5.3857, device='cuda:0', grad_fn=)\n", + "257000\n", + "26000 tensor(5.3893, device='cuda:0', grad_fn=)\n", + "258000\n", + "26100 tensor(5.3041, device='cuda:0', grad_fn=)\n", + "259000\n", + "26200 tensor(5.2321, device='cuda:0', grad_fn=)\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "260000\n", + "26300 tensor(5.4289, device='cuda:0', grad_fn=)\n", + "261000\n", + "26400 tensor(5.4663, device='cuda:0', grad_fn=)\n", + "262000\n", + "26500 tensor(5.1922, device='cuda:0', grad_fn=)\n", + "263000\n", + "26600 tensor(5.5283, device='cuda:0', grad_fn=)\n", + "264000\n", + "26700 tensor(5.3933, device='cuda:0', grad_fn=)\n", + "265000\n", + "26800 tensor(5.5680, device='cuda:0', grad_fn=)\n", + "266000\n", + "26900 tensor(5.3281, device='cuda:0', grad_fn=)\n", + "267000\n", + "27000 tensor(5.2408, device='cuda:0', grad_fn=)\n", + "268000\n", + "27100 tensor(5.2671, device='cuda:0', grad_fn=)\n", + "269000\n", + "27200 tensor(5.3099, device='cuda:0', grad_fn=)\n", + "270000\n", + "27300 tensor(5.5049, device='cuda:0', grad_fn=)\n", + "271000\n", + "27400 tensor(5.3850, device='cuda:0', grad_fn=)\n", + "272000\n", + "27500 tensor(5.2843, device='cuda:0', grad_fn=)\n", + "273000\n", + "27600 tensor(5.5777, device='cuda:0', grad_fn=)\n", + "274000\n", + "27700 tensor(5.4017, device='cuda:0', grad_fn=)\n", + "275000\n", + "27800 tensor(5.3994, device='cuda:0', grad_fn=)\n", + "276000\n", + "27900 tensor(5.5128, device='cuda:0', grad_fn=)\n", + "277000\n", + "28000 tensor(5.3708, device='cuda:0', grad_fn=)\n", + "278000\n", + "28100 tensor(5.3382, device='cuda:0', grad_fn=)\n", + "279000\n", + "28200 tensor(5.4996, device='cuda:0', grad_fn=)\n", + "280000\n", + "28300 tensor(5.1214, device='cuda:0', grad_fn=)\n", + "281000\n", + "28400 tensor(5.5647, device='cuda:0', grad_fn=)\n", + "282000\n", + "28500 tensor(5.3959, device='cuda:0', grad_fn=)\n", + "283000\n", + "28600 tensor(5.3312, device='cuda:0', grad_fn=)\n", + "284000\n", + "28700 tensor(5.4663, device='cuda:0', grad_fn=)\n", + "285000\n", + "28800 tensor(5.5155, device='cuda:0', grad_fn=)\n", + "286000\n", + "28900 tensor(5.3872, device='cuda:0', grad_fn=)\n", + "287000\n", + "29000 tensor(5.3017, device='cuda:0', grad_fn=)\n", + "288000\n", + "29100 tensor(5.0583, device='cuda:0', grad_fn=)\n", + "289000\n", + "29200 tensor(5.2099, device='cuda:0', grad_fn=)\n", + "290000\n", + "29300 tensor(5.4934, device='cuda:0', grad_fn=)\n", + "291000\n", + "29400 tensor(5.6202, device='cuda:0', grad_fn=)\n", + "292000\n", + "29500 tensor(5.4016, device='cuda:0', grad_fn=)\n", + "293000\n", + "29600 tensor(5.2601, device='cuda:0', grad_fn=)\n", + "294000\n", + "29700 tensor(5.4038, device='cuda:0', grad_fn=)\n", + "295000\n", + "29800 tensor(5.2475, device='cuda:0', grad_fn=)\n", + "296000\n", + "29900 tensor(5.4960, device='cuda:0', grad_fn=)\n", + "297000\n", + "30000 tensor(5.2438, device='cuda:0', grad_fn=)\n", + "298000\n", + "30100 tensor(5.3221, device='cuda:0', grad_fn=)\n", + "299000\n", + "30200 tensor(5.2686, device='cuda:0', grad_fn=)\n", + "300000\n", + "30300 tensor(5.3735, device='cuda:0', grad_fn=)\n", + "301000\n", + "30400 tensor(5.2057, device='cuda:0', grad_fn=)\n", + "302000\n", + "30500 tensor(5.3767, device='cuda:0', grad_fn=)\n", + "30600 tensor(5.3515, device='cuda:0', grad_fn=)\n", + "303000\n", + "30700 tensor(5.3841, device='cuda:0', grad_fn=)\n", + "304000\n", + "30800 tensor(5.3889, device='cuda:0', grad_fn=)\n", + "305000\n", + "30900 tensor(5.4117, device='cuda:0', grad_fn=)\n", + "306000\n", + "31000 tensor(5.5205, device='cuda:0', grad_fn=)\n", + "307000\n", + "31100 tensor(5.1742, device='cuda:0', grad_fn=)\n", + "308000\n", + "31200 tensor(5.2173, device='cuda:0', grad_fn=)\n", + "309000\n", + "31300 tensor(5.4785, device='cuda:0', grad_fn=)\n", + "310000\n", + "31400 tensor(5.2577, device='cuda:0', grad_fn=)\n", + "311000\n", + "31500 tensor(5.4429, device='cuda:0', grad_fn=)\n", + "312000\n", + "31600 tensor(5.4289, device='cuda:0', grad_fn=)\n", + "313000\n", + "31700 tensor(5.3961, device='cuda:0', grad_fn=)\n", + "314000\n", + "31800 tensor(5.4999, device='cuda:0', grad_fn=)\n", + "315000\n", + "31900 tensor(5.1248, device='cuda:0', grad_fn=)\n", + "316000\n", + "32000 tensor(5.3122, device='cuda:0', grad_fn=)\n", + "317000\n", + "32100 tensor(5.1931, device='cuda:0', grad_fn=)\n", + "318000\n", + "32200 tensor(5.5096, device='cuda:0', grad_fn=)\n", + "319000\n", + "32300 tensor(5.4973, device='cuda:0', grad_fn=)\n", + "320000\n", + "32400 tensor(5.4742, device='cuda:0', grad_fn=)\n", + "321000\n", + "32500 tensor(5.2964, device='cuda:0', grad_fn=)\n", + "322000\n", + "32600 tensor(5.4063, device='cuda:0', grad_fn=)\n", + "323000\n", + "32700 tensor(5.3369, device='cuda:0', grad_fn=)\n", + "324000\n", + "32800 tensor(5.5636, device='cuda:0', grad_fn=)\n", + "325000\n", + "32900 tensor(5.4245, device='cuda:0', grad_fn=)\n", + "326000\n", + "33000 tensor(5.2032, device='cuda:0', grad_fn=)\n", + "327000\n", + "33100 tensor(5.4095, device='cuda:0', grad_fn=)\n", + "328000\n", + "33200 tensor(5.5071, device='cuda:0', grad_fn=)\n", + "329000\n", + "33300 tensor(5.2729, device='cuda:0', grad_fn=)\n", + "330000\n", + "33400 tensor(5.5492, device='cuda:0', grad_fn=)\n", + "331000\n", + "33500 tensor(5.3701, device='cuda:0', grad_fn=)\n", + "332000\n", + "33600 tensor(5.3223, device='cuda:0', grad_fn=)\n", + "333000\n", + "33700 tensor(5.3725, device='cuda:0', grad_fn=)\n", + "334000\n", + "33800 tensor(5.4572, device='cuda:0', grad_fn=)\n", + "335000\n", + "33900 tensor(5.1889, device='cuda:0', grad_fn=)\n", + "336000\n", + "34000 tensor(5.4090, device='cuda:0', grad_fn=)\n", + "337000\n", + "34100 tensor(5.3798, device='cuda:0', grad_fn=)\n", + "338000\n", + "34200 tensor(5.4259, device='cuda:0', grad_fn=)\n", + "339000\n", + "34300 tensor(5.2132, device='cuda:0', grad_fn=)\n", + "340000\n", + "34400 tensor(5.6692, device='cuda:0', grad_fn=)\n", + "341000\n", + "34500 tensor(5.5324, device='cuda:0', grad_fn=)\n", + "342000\n", + "34600 tensor(5.4271, device='cuda:0', grad_fn=)\n", + "343000\n", + "34700 tensor(5.4978, device='cuda:0', grad_fn=)\n", + "344000\n", + "34800 tensor(5.5230, device='cuda:0', grad_fn=)\n", + "345000\n", + "34900 tensor(5.5652, device='cuda:0', grad_fn=)\n", + "346000\n", + "35000 tensor(5.5478, device='cuda:0', grad_fn=)\n", + "347000\n", + "35100 tensor(5.3700, device='cuda:0', grad_fn=)\n", + "348000\n", + "35200 tensor(5.2958, device='cuda:0', grad_fn=)\n", + "349000\n", + "35300 tensor(5.5219, device='cuda:0', grad_fn=)\n", + "350000\n", + "35400 tensor(5.1702, device='cuda:0', grad_fn=)\n", + "351000\n", + "35500 tensor(5.2604, device='cuda:0', grad_fn=)\n", + "352000\n", + "35600 tensor(5.3821, device='cuda:0', grad_fn=)\n", + "353000\n", + "35700 tensor(5.2551, device='cuda:0', grad_fn=)\n", + "354000\n", + "35800 tensor(5.3840, device='cuda:0', grad_fn=)\n", + "355000\n", + "35900 tensor(5.3635, device='cuda:0', grad_fn=)\n", + "356000\n", + "36000 tensor(5.1400, device='cuda:0', grad_fn=)\n", + "357000\n", + "36100 tensor(5.5134, device='cuda:0', grad_fn=)\n", + "358000\n", + "36200 tensor(5.3632, device='cuda:0', grad_fn=)\n", + "359000\n", + "36300 tensor(5.6461, device='cuda:0', grad_fn=)\n", + "360000\n", + "36400 tensor(5.3415, device='cuda:0', grad_fn=)\n", + "361000\n", + "36500 tensor(5.3659, device='cuda:0', grad_fn=)\n", + "362000\n", + "36600 tensor(5.3874, device='cuda:0', grad_fn=)\n", + "363000\n", + "36700 tensor(5.1886, device='cuda:0', grad_fn=)\n", + "364000\n", + "36800 tensor(5.2958, device='cuda:0', grad_fn=)\n", + "365000\n", + "36900 tensor(5.4094, device='cuda:0', grad_fn=)\n", + "366000\n", + "37000 tensor(5.3023, device='cuda:0', grad_fn=)\n", + "367000\n", + "37100 tensor(5.3287, device='cuda:0', grad_fn=)\n", + "368000\n", + "37200 tensor(5.3996, device='cuda:0', grad_fn=)\n", + "369000\n", + "37300 tensor(5.3001, device='cuda:0', grad_fn=)\n", + "370000\n", + "37400 tensor(5.6516, device='cuda:0', grad_fn=)\n", + "371000\n", + "37500 tensor(5.3366, device='cuda:0', grad_fn=)\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "372000\n", + "37600 tensor(5.3282, device='cuda:0', grad_fn=)\n", + "373000\n", + "37700 tensor(5.5061, device='cuda:0', grad_fn=)\n", + "374000\n", + "37800 tensor(5.3408, device='cuda:0', grad_fn=)\n", + "375000\n", + "37900 tensor(5.3203, device='cuda:0', grad_fn=)\n", + "376000\n", + "38000 tensor(5.3996, device='cuda:0', grad_fn=)\n", + "377000\n", + "38100 tensor(5.4133, device='cuda:0', grad_fn=)\n", + "378000\n", + "38200 tensor(5.4262, device='cuda:0', grad_fn=)\n", + "379000\n", + "38300 tensor(5.3305, device='cuda:0', grad_fn=)\n", + "380000\n", + "38400 tensor(5.3983, device='cuda:0', grad_fn=)\n", + "381000\n", + "38500 tensor(5.4246, device='cuda:0', grad_fn=)\n", + "382000\n", + "38600 tensor(5.3713, device='cuda:0', grad_fn=)\n", + "383000\n", + "38700 tensor(5.3634, device='cuda:0', grad_fn=)\n", + "384000\n", + "38800 tensor(5.4504, device='cuda:0', grad_fn=)\n", + "385000\n", + "38900 tensor(5.5273, device='cuda:0', grad_fn=)\n", + "386000\n", + "39000 tensor(5.2229, device='cuda:0', grad_fn=)\n", + "387000\n", + "39100 tensor(5.4503, device='cuda:0', grad_fn=)\n", + "388000\n", + "39200 tensor(5.5406, device='cuda:0', grad_fn=)\n", + "389000\n", + "39300 tensor(5.3640, device='cuda:0', grad_fn=)\n", + "390000\n", + "39400 tensor(5.4311, device='cuda:0', grad_fn=)\n", + "391000\n", + "39500 tensor(5.5292, device='cuda:0', grad_fn=)\n", + "392000\n", + "39600 tensor(5.2217, device='cuda:0', grad_fn=)\n", + "393000\n", + "39700 tensor(5.2121, device='cuda:0', grad_fn=)\n", + "394000\n", + "39800 tensor(5.3415, device='cuda:0', grad_fn=)\n", + "395000\n", + "39900 tensor(5.1605, device='cuda:0', grad_fn=)\n", + "396000\n", + "40000 tensor(5.2472, device='cuda:0', grad_fn=)\n", + "397000\n", + "40100 tensor(5.3351, device='cuda:0', grad_fn=)\n", + "398000\n", + "40200 tensor(5.3198, device='cuda:0', grad_fn=)\n", + "399000\n", + "40300 tensor(5.3862, device='cuda:0', grad_fn=)\n", + "40400 tensor(5.3946, device='cuda:0', grad_fn=)\n", + "400000\n", + "40500 tensor(5.3120, device='cuda:0', grad_fn=)\n", + "401000\n", + "40600 tensor(5.3741, device='cuda:0', grad_fn=)\n", + "402000\n", + "40700 tensor(5.4199, device='cuda:0', grad_fn=)\n", + "403000\n", + "40800 tensor(5.3702, device='cuda:0', grad_fn=)\n", + "404000\n", + "40900 tensor(5.3212, device='cuda:0', grad_fn=)\n", + "405000\n", + "41000 tensor(5.3683, device='cuda:0', grad_fn=)\n", + "406000\n", + "41100 tensor(5.3491, device='cuda:0', grad_fn=)\n", + "407000\n", + "41200 tensor(5.2400, device='cuda:0', grad_fn=)\n", + "408000\n", + "41300 tensor(5.3728, device='cuda:0', grad_fn=)\n", + "409000\n", + "41400 tensor(5.2643, device='cuda:0', grad_fn=)\n", + "410000\n", + "41500 tensor(5.4064, device='cuda:0', grad_fn=)\n", + "411000\n", + "41600 tensor(5.3238, device='cuda:0', grad_fn=)\n", + "412000\n", + "41700 tensor(5.3469, device='cuda:0', grad_fn=)\n", + "413000\n", + "41800 tensor(5.3432, device='cuda:0', grad_fn=)\n", + "414000\n", + "41900 tensor(5.3521, device='cuda:0', grad_fn=)\n", + "415000\n", + "42000 tensor(5.5087, device='cuda:0', grad_fn=)\n", + "416000\n", + "42100 tensor(5.2556, device='cuda:0', grad_fn=)\n", + "417000\n", + "42200 tensor(5.3407, device='cuda:0', grad_fn=)\n", + "418000\n", + "42300 tensor(5.4058, device='cuda:0', grad_fn=)\n", + "419000\n", + "42400 tensor(5.2231, device='cuda:0', grad_fn=)\n", + "420000\n", + "42500 tensor(5.3912, device='cuda:0', grad_fn=)\n", + "421000\n", + "42600 tensor(5.1878, device='cuda:0', grad_fn=)\n", + "422000\n", + "42700 tensor(5.4955, device='cuda:0', grad_fn=)\n", + "423000\n", + "42800 tensor(5.4193, device='cuda:0', grad_fn=)\n", + "424000\n", + "42900 tensor(5.2662, device='cuda:0', grad_fn=)\n", + "425000\n", + "43000 tensor(5.4093, device='cuda:0', grad_fn=)\n", + "426000\n", + "43100 tensor(5.4089, device='cuda:0', grad_fn=)\n", + "427000\n", + "43200 tensor(5.2223, device='cuda:0', grad_fn=)\n", + "428000\n", + "43300 tensor(5.2456, device='cuda:0', grad_fn=)\n", + "429000\n", + "43400 tensor(5.4129, device='cuda:0', grad_fn=)\n", + "430000\n", + "43500 tensor(5.1283, device='cuda:0', grad_fn=)\n", + "431000\n", + "43600 tensor(5.3275, device='cuda:0', grad_fn=)\n", + "432000\n", + "epoch: = 4\n", + "0 tensor(5.3172, device='cuda:0', grad_fn=)\n", + "1000\n", + "100 tensor(5.3864, device='cuda:0', grad_fn=)\n", + "200 tensor(5.2618, device='cuda:0', grad_fn=)\n", + "2000\n", + "300 tensor(5.2652, device='cuda:0', grad_fn=)\n", + "3000\n", + "400 tensor(5.2749, device='cuda:0', grad_fn=)\n", + "4000\n", + "500 tensor(5.4347, device='cuda:0', grad_fn=)\n", + "5000\n", + "600 tensor(5.2271, device='cuda:0', grad_fn=)\n", + "6000\n", + "700 tensor(5.5396, device='cuda:0', grad_fn=)\n", + "7000\n", + "800 tensor(5.1379, device='cuda:0', grad_fn=)\n", + "8000\n", + "900 tensor(5.3861, device='cuda:0', grad_fn=)\n", + "9000\n", + "1000 tensor(5.2629, device='cuda:0', grad_fn=)\n", + "10000\n", + "1100 tensor(5.4575, device='cuda:0', grad_fn=)\n", + "11000\n", + "1200 tensor(5.4936, device='cuda:0', grad_fn=)\n", + "12000\n", + "1300 tensor(5.4281, device='cuda:0', grad_fn=)\n", + "13000\n", + "1400 tensor(5.4186, device='cuda:0', grad_fn=)\n", + "14000\n", + "1500 tensor(5.5070, device='cuda:0', grad_fn=)\n", + "15000\n", + "1600 tensor(5.1769, device='cuda:0', grad_fn=)\n", + "16000\n", + "1700 tensor(5.2856, device='cuda:0', grad_fn=)\n", + "17000\n", + "1800 tensor(5.2827, device='cuda:0', grad_fn=)\n", + "18000\n", + "1900 tensor(5.2544, device='cuda:0', grad_fn=)\n", + "19000\n", + "2000 tensor(5.3218, device='cuda:0', grad_fn=)\n", + "20000\n", + "2100 tensor(5.4549, device='cuda:0', grad_fn=)\n", + "21000\n", + "2200 tensor(5.2864, device='cuda:0', grad_fn=)\n", + "22000\n", + "2300 tensor(5.3145, device='cuda:0', grad_fn=)\n", + "23000\n", + "2400 tensor(5.2987, device='cuda:0', grad_fn=)\n", + "24000\n", + "2500 tensor(5.3498, device='cuda:0', grad_fn=)\n", + "25000\n", + "2600 tensor(5.3730, device='cuda:0', grad_fn=)\n", + "26000\n", + "2700 tensor(5.4017, device='cuda:0', grad_fn=)\n", + "27000\n", + "2800 tensor(5.4255, device='cuda:0', grad_fn=)\n", + "28000\n", + "2900 tensor(5.5475, device='cuda:0', grad_fn=)\n", + "29000\n", + "3000 tensor(5.2988, device='cuda:0', grad_fn=)\n", + "30000\n", + "3100 tensor(5.3753, device='cuda:0', grad_fn=)\n", + "31000\n", + "3200 tensor(5.4049, device='cuda:0', grad_fn=)\n", + "32000\n", + "3300 tensor(5.3206, device='cuda:0', grad_fn=)\n", + "33000\n", + "3400 tensor(5.2159, device='cuda:0', grad_fn=)\n", + "34000\n", + "3500 tensor(5.3423, device='cuda:0', grad_fn=)\n", + "35000\n", + "3600 tensor(5.3717, device='cuda:0', grad_fn=)\n", + "36000\n", + "3700 tensor(5.3042, device='cuda:0', grad_fn=)\n", + "37000\n", + "3800 tensor(5.3258, device='cuda:0', grad_fn=)\n", + "38000\n", + "3900 tensor(5.1989, device='cuda:0', grad_fn=)\n", + "39000\n", + "4000 tensor(5.2650, device='cuda:0', grad_fn=)\n", + "40000\n", + "4100 tensor(5.3953, device='cuda:0', grad_fn=)\n", + "41000\n", + "4200 tensor(5.4542, device='cuda:0', grad_fn=)\n", + "42000\n", + "4300 tensor(5.3466, device='cuda:0', grad_fn=)\n", + "43000\n", + "4400 tensor(5.4222, device='cuda:0', grad_fn=)\n", + "44000\n", + "4500 tensor(5.2254, device='cuda:0', grad_fn=)\n", + "45000\n", + "4600 tensor(5.5610, device='cuda:0', grad_fn=)\n", + "46000\n", + "4700 tensor(5.2753, device='cuda:0', grad_fn=)\n", + "47000\n", + "4800 tensor(5.4028, device='cuda:0', grad_fn=)\n", + "48000\n", + "4900 tensor(5.4516, device='cuda:0', grad_fn=)\n", + "49000\n", + "5000 tensor(5.4464, device='cuda:0', grad_fn=)\n", + "50000\n", + "5100 tensor(5.5018, device='cuda:0', grad_fn=)\n", + "51000\n", + "5200 tensor(5.5194, device='cuda:0', grad_fn=)\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "52000\n", + "5300 tensor(5.5077, device='cuda:0', grad_fn=)\n", + "53000\n", + "5400 tensor(5.3746, device='cuda:0', grad_fn=)\n", + "54000\n", + "5500 tensor(5.4847, device='cuda:0', grad_fn=)\n", + "55000\n", + "5600 tensor(5.2664, device='cuda:0', grad_fn=)\n", + "56000\n", + "5700 tensor(5.5265, device='cuda:0', grad_fn=)\n", + "57000\n", + "5800 tensor(5.5101, device='cuda:0', grad_fn=)\n", + "58000\n", + "5900 tensor(5.4513, device='cuda:0', grad_fn=)\n", + "59000\n", + "6000 tensor(5.3554, device='cuda:0', grad_fn=)\n", + "60000\n", + "6100 tensor(5.3616, device='cuda:0', grad_fn=)\n", + "61000\n", + "6200 tensor(5.5360, device='cuda:0', grad_fn=)\n", + "62000\n", + "6300 tensor(5.3952, device='cuda:0', grad_fn=)\n", + "63000\n", + "6400 tensor(5.3132, device='cuda:0', grad_fn=)\n", + "64000\n", + "6500 tensor(5.1732, device='cuda:0', grad_fn=)\n", + "65000\n", + "6600 tensor(5.3505, device='cuda:0', grad_fn=)\n", + "66000\n", + "6700 tensor(5.2919, device='cuda:0', grad_fn=)\n", + "67000\n", + "6800 tensor(5.5064, device='cuda:0', grad_fn=)\n", + "68000\n", + "6900 tensor(5.4881, device='cuda:0', grad_fn=)\n", + "69000\n", + "7000 tensor(5.3978, device='cuda:0', grad_fn=)\n", + "70000\n", + "7100 tensor(5.2030, device='cuda:0', grad_fn=)\n", + "71000\n", + "7200 tensor(5.2738, device='cuda:0', grad_fn=)\n", + "72000\n", + "7300 tensor(5.5317, device='cuda:0', grad_fn=)\n", + "73000\n", + "7400 tensor(5.3487, device='cuda:0', grad_fn=)\n", + "74000\n", + "7500 tensor(5.2133, device='cuda:0', grad_fn=)\n", + "75000\n", + "7600 tensor(5.2878, device='cuda:0', grad_fn=)\n", + "76000\n", + "7700 tensor(5.3644, device='cuda:0', grad_fn=)\n", + "77000\n", + "7800 tensor(5.4711, device='cuda:0', grad_fn=)\n", + "78000\n", + "7900 tensor(5.1445, device='cuda:0', grad_fn=)\n", + "79000\n", + "8000 tensor(5.2138, device='cuda:0', grad_fn=)\n", + "80000\n", + "8100 tensor(5.3741, device='cuda:0', grad_fn=)\n", + "81000\n", + "8200 tensor(5.3893, device='cuda:0', grad_fn=)\n", + "82000\n", + "8300 tensor(5.3492, device='cuda:0', grad_fn=)\n", + "83000\n", + "8400 tensor(5.4797, device='cuda:0', grad_fn=)\n", + "84000\n", + "8500 tensor(5.4501, device='cuda:0', grad_fn=)\n", + "85000\n", + "8600 tensor(5.4600, device='cuda:0', grad_fn=)\n", + "86000\n", + "8700 tensor(5.5758, device='cuda:0', grad_fn=)\n", + "87000\n", + "8800 tensor(5.4493, device='cuda:0', grad_fn=)\n", + "88000\n", + "8900 tensor(5.3035, device='cuda:0', grad_fn=)\n", + "89000\n", + "9000 tensor(5.4164, device='cuda:0', grad_fn=)\n", + "90000\n", + "9100 tensor(5.4273, device='cuda:0', grad_fn=)\n", + "91000\n", + "9200 tensor(5.3343, device='cuda:0', grad_fn=)\n", + "92000\n", + "9300 tensor(5.3797, device='cuda:0', grad_fn=)\n", + "93000\n", + "9400 tensor(5.2260, device='cuda:0', grad_fn=)\n", + "94000\n", + "9500 tensor(5.3006, device='cuda:0', grad_fn=)\n", + "95000\n", + "9600 tensor(5.4211, device='cuda:0', grad_fn=)\n", + "96000\n", + "9700 tensor(5.3615, device='cuda:0', grad_fn=)\n", + "97000\n", + "9800 tensor(5.4089, device='cuda:0', grad_fn=)\n", + "9900 tensor(5.2200, device='cuda:0', grad_fn=)\n", + "98000\n", + "10000 tensor(5.4428, device='cuda:0', grad_fn=)\n", + "99000\n", + "10100 tensor(5.3219, device='cuda:0', grad_fn=)\n", + "100000\n", + "10200 tensor(5.2692, device='cuda:0', grad_fn=)\n", + "101000\n", + "10300 tensor(5.3854, device='cuda:0', grad_fn=)\n", + "102000\n", + "10400 tensor(5.3984, device='cuda:0', grad_fn=)\n", + "103000\n", + "10500 tensor(5.4516, device='cuda:0', grad_fn=)\n", + "104000\n", + "10600 tensor(5.5380, device='cuda:0', grad_fn=)\n", + "105000\n", + "10700 tensor(5.3724, device='cuda:0', grad_fn=)\n", + "106000\n", + "10800 tensor(5.3862, device='cuda:0', grad_fn=)\n", + "107000\n", + "10900 tensor(5.3102, device='cuda:0', grad_fn=)\n", + "108000\n", + "11000 tensor(5.5487, device='cuda:0', grad_fn=)\n", + "109000\n", + "11100 tensor(5.1684, device='cuda:0', grad_fn=)\n", + "110000\n", + "11200 tensor(5.3303, device='cuda:0', grad_fn=)\n", + "111000\n", + "11300 tensor(5.3537, device='cuda:0', grad_fn=)\n", + "112000\n", + "11400 tensor(5.3064, device='cuda:0', grad_fn=)\n", + "113000\n", + "11500 tensor(5.3775, device='cuda:0', grad_fn=)\n", + "114000\n", + "11600 tensor(5.3649, device='cuda:0', grad_fn=)\n", + "115000\n", + "11700 tensor(5.2920, device='cuda:0', grad_fn=)\n", + "116000\n", + "11800 tensor(5.4908, device='cuda:0', grad_fn=)\n", + "117000\n", + "11900 tensor(5.3293, device='cuda:0', grad_fn=)\n", + "118000\n", + "12000 tensor(5.3926, device='cuda:0', grad_fn=)\n", + "119000\n", + "12100 tensor(5.4045, device='cuda:0', grad_fn=)\n", + "120000\n", + "12200 tensor(5.4246, device='cuda:0', grad_fn=)\n", + "121000\n", + "12300 tensor(5.5096, device='cuda:0', grad_fn=)\n", + "122000\n", + "12400 tensor(5.3884, device='cuda:0', grad_fn=)\n", + "123000\n", + "12500 tensor(5.3057, device='cuda:0', grad_fn=)\n", + "124000\n", + "12600 tensor(5.3466, device='cuda:0', grad_fn=)\n", + "125000\n", + "12700 tensor(5.2898, device='cuda:0', grad_fn=)\n", + "126000\n", + "12800 tensor(5.4714, device='cuda:0', grad_fn=)\n", + "127000\n", + "12900 tensor(5.3255, device='cuda:0', grad_fn=)\n", + "128000\n", + "13000 tensor(5.1438, device='cuda:0', grad_fn=)\n", + "129000\n", + "13100 tensor(5.3498, device='cuda:0', grad_fn=)\n", + "130000\n", + "13200 tensor(5.3890, device='cuda:0', grad_fn=)\n", + "131000\n", + "13300 tensor(5.2710, device='cuda:0', grad_fn=)\n", + "132000\n", + "13400 tensor(5.3541, device='cuda:0', grad_fn=)\n", + "133000\n", + "13500 tensor(5.3156, device='cuda:0', grad_fn=)\n", + "134000\n", + "13600 tensor(5.3957, device='cuda:0', grad_fn=)\n", + "135000\n", + "13700 tensor(5.3548, device='cuda:0', grad_fn=)\n", + "136000\n", + "13800 tensor(5.3577, device='cuda:0', grad_fn=)\n", + "137000\n", + "13900 tensor(5.2122, device='cuda:0', grad_fn=)\n", + "138000\n", + "14000 tensor(5.4587, device='cuda:0', grad_fn=)\n", + "139000\n", + "14100 tensor(5.1704, device='cuda:0', grad_fn=)\n", + "140000\n", + "14200 tensor(5.4419, device='cuda:0', grad_fn=)\n", + "141000\n", + "14300 tensor(5.4142, device='cuda:0', grad_fn=)\n", + "142000\n", + "14400 tensor(5.3058, device='cuda:0', grad_fn=)\n", + "143000\n", + "14500 tensor(5.4082, device='cuda:0', grad_fn=)\n", + "144000\n", + "14600 tensor(5.4414, device='cuda:0', grad_fn=)\n", + "145000\n", + "14700 tensor(5.3177, device='cuda:0', grad_fn=)\n", + "146000\n", + "14800 tensor(5.7665, device='cuda:0', grad_fn=)\n", + "147000\n", + "14900 tensor(5.4171, device='cuda:0', grad_fn=)\n", + "148000\n", + "15000 tensor(5.2698, device='cuda:0', grad_fn=)\n", + "149000\n", + "15100 tensor(5.4915, device='cuda:0', grad_fn=)\n", + "150000\n", + "15200 tensor(5.3576, device='cuda:0', grad_fn=)\n", + "151000\n", + "15300 tensor(5.3567, device='cuda:0', grad_fn=)\n", + "152000\n", + "15400 tensor(5.2379, device='cuda:0', grad_fn=)\n", + "153000\n", + "15500 tensor(5.4092, device='cuda:0', grad_fn=)\n", + "154000\n", + "15600 tensor(5.4042, device='cuda:0', grad_fn=)\n", + "155000\n", + "15700 tensor(5.3017, device='cuda:0', grad_fn=)\n", + "156000\n", + "15800 tensor(5.2188, device='cuda:0', grad_fn=)\n", + "157000\n", + "15900 tensor(5.3497, device='cuda:0', grad_fn=)\n", + "158000\n", + "16000 tensor(5.1718, device='cuda:0', grad_fn=)\n", + "159000\n", + "16100 tensor(5.2145, device='cuda:0', grad_fn=)\n", + "160000\n", + "16200 tensor(5.5591, device='cuda:0', grad_fn=)\n", + "161000\n", + "16300 tensor(5.3864, device='cuda:0', grad_fn=)\n", + "162000\n", + "16400 tensor(5.3719, device='cuda:0', grad_fn=)\n", + "163000\n", + "16500 tensor(5.4842, device='cuda:0', grad_fn=)\n", + "164000\n", + "16600 tensor(5.3329, device='cuda:0', grad_fn=)\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "165000\n", + "16700 tensor(5.3130, device='cuda:0', grad_fn=)\n", + "166000\n", + "16800 tensor(5.3903, device='cuda:0', grad_fn=)\n", + "167000\n", + "16900 tensor(5.1551, device='cuda:0', grad_fn=)\n", + "168000\n", + "17000 tensor(5.4229, device='cuda:0', grad_fn=)\n", + "169000\n", + "17100 tensor(5.2686, device='cuda:0', grad_fn=)\n", + "170000\n", + "17200 tensor(5.4099, device='cuda:0', grad_fn=)\n", + "171000\n", + "17300 tensor(5.4198, device='cuda:0', grad_fn=)\n", + "172000\n", + "17400 tensor(5.2162, device='cuda:0', grad_fn=)\n", + "173000\n", + "17500 tensor(5.2385, device='cuda:0', grad_fn=)\n", + "174000\n", + "17600 tensor(5.2786, device='cuda:0', grad_fn=)\n", + "175000\n", + "17700 tensor(5.2576, device='cuda:0', grad_fn=)\n", + "176000\n", + "17800 tensor(5.3158, device='cuda:0', grad_fn=)\n", + "177000\n", + "17900 tensor(5.2105, device='cuda:0', grad_fn=)\n", + "178000\n", + "18000 tensor(5.4627, device='cuda:0', grad_fn=)\n", + "179000\n", + "18100 tensor(5.3966, device='cuda:0', grad_fn=)\n", + "180000\n", + "18200 tensor(5.3108, device='cuda:0', grad_fn=)\n", + "181000\n", + "18300 tensor(5.3148, device='cuda:0', grad_fn=)\n", + "182000\n", + "18400 tensor(5.3321, device='cuda:0', grad_fn=)\n", + "183000\n", + "18500 tensor(5.3171, device='cuda:0', grad_fn=)\n", + "184000\n", + "18600 tensor(5.5247, device='cuda:0', grad_fn=)\n", + "185000\n", + "18700 tensor(5.3469, device='cuda:0', grad_fn=)\n", + "186000\n", + "18800 tensor(5.5092, device='cuda:0', grad_fn=)\n", + "187000\n", + "18900 tensor(5.3902, device='cuda:0', grad_fn=)\n", + "188000\n", + "19000 tensor(5.3904, device='cuda:0', grad_fn=)\n", + "189000\n", + "19100 tensor(5.5019, device='cuda:0', grad_fn=)\n", + "190000\n", + "19200 tensor(5.3838, device='cuda:0', grad_fn=)\n", + "191000\n", + "19300 tensor(5.4674, device='cuda:0', grad_fn=)\n", + "192000\n", + "19400 tensor(5.3223, device='cuda:0', grad_fn=)\n", + "193000\n", + "19500 tensor(5.3235, device='cuda:0', grad_fn=)\n", + "194000\n", + "19600 tensor(5.3589, device='cuda:0', grad_fn=)\n", + "195000\n", + "19700 tensor(5.4063, device='cuda:0', grad_fn=)\n", + "196000\n", + "19800 tensor(5.2838, device='cuda:0', grad_fn=)\n", + "197000\n", + "19900 tensor(5.2807, device='cuda:0', grad_fn=)\n", + "198000\n", + "20000 tensor(5.3038, device='cuda:0', grad_fn=)\n", + "199000\n", + "20100 tensor(5.2397, device='cuda:0', grad_fn=)\n", + "200000\n", + "20200 tensor(5.1723, device='cuda:0', grad_fn=)\n", + "201000\n", + "20300 tensor(5.2827, device='cuda:0', grad_fn=)\n", + "20400 tensor(5.3245, device='cuda:0', grad_fn=)\n", + "202000\n", + "20500 tensor(5.3303, device='cuda:0', grad_fn=)\n", + "203000\n", + "20600 tensor(5.5211, device='cuda:0', grad_fn=)\n", + "204000\n", + "20700 tensor(5.3629, device='cuda:0', grad_fn=)\n", + "205000\n", + "20800 tensor(5.1882, device='cuda:0', grad_fn=)\n", + "206000\n", + "20900 tensor(5.4671, device='cuda:0', grad_fn=)\n", + "207000\n", + "21000 tensor(5.3110, device='cuda:0', grad_fn=)\n", + "208000\n", + "21100 tensor(5.3181, device='cuda:0', grad_fn=)\n", + "209000\n", + "21200 tensor(5.1968, device='cuda:0', grad_fn=)\n", + "210000\n", + "21300 tensor(5.3940, device='cuda:0', grad_fn=)\n", + "211000\n", + "21400 tensor(5.4308, device='cuda:0', grad_fn=)\n", + "212000\n", + "21500 tensor(5.2127, device='cuda:0', grad_fn=)\n", + "213000\n", + "21600 tensor(5.2003, device='cuda:0', grad_fn=)\n", + "214000\n", + "21700 tensor(5.1881, device='cuda:0', grad_fn=)\n", + "215000\n", + "21800 tensor(5.3180, device='cuda:0', grad_fn=)\n", + "216000\n", + "21900 tensor(5.3197, device='cuda:0', grad_fn=)\n", + "217000\n", + "22000 tensor(5.3005, device='cuda:0', grad_fn=)\n", + "218000\n", + "22100 tensor(5.1776, device='cuda:0', grad_fn=)\n", + "219000\n", + "22200 tensor(5.0509, device='cuda:0', grad_fn=)\n", + "220000\n", + "22300 tensor(5.4807, device='cuda:0', grad_fn=)\n", + "221000\n", + "22400 tensor(5.2040, device='cuda:0', grad_fn=)\n", + "222000\n", + "22500 tensor(5.2161, device='cuda:0', grad_fn=)\n", + "223000\n", + "22600 tensor(5.4083, device='cuda:0', grad_fn=)\n", + "224000\n", + "22700 tensor(5.1619, device='cuda:0', grad_fn=)\n", + "225000\n", + "22800 tensor(5.4301, device='cuda:0', grad_fn=)\n", + "226000\n", + "22900 tensor(5.4791, device='cuda:0', grad_fn=)\n", + "227000\n", + "23000 tensor(5.3785, device='cuda:0', grad_fn=)\n", + "228000\n", + "23100 tensor(5.3705, device='cuda:0', grad_fn=)\n", + "229000\n", + "23200 tensor(5.3633, device='cuda:0', grad_fn=)\n", + "230000\n", + "23300 tensor(5.4443, device='cuda:0', grad_fn=)\n", + "231000\n", + "23400 tensor(5.4496, device='cuda:0', grad_fn=)\n", + "232000\n", + "23500 tensor(5.2961, device='cuda:0', grad_fn=)\n", + "233000\n", + "23600 tensor(5.2603, device='cuda:0', grad_fn=)\n", + "234000\n", + "23700 tensor(5.2793, device='cuda:0', grad_fn=)\n", + "235000\n", + "23800 tensor(5.1461, device='cuda:0', grad_fn=)\n", + "236000\n", + "23900 tensor(5.2376, device='cuda:0', grad_fn=)\n", + "237000\n", + "24000 tensor(5.2269, device='cuda:0', grad_fn=)\n", + "238000\n", + "24100 tensor(5.3154, device='cuda:0', grad_fn=)\n", + "239000\n", + "24200 tensor(5.4852, device='cuda:0', grad_fn=)\n", + "240000\n", + "24300 tensor(5.3785, device='cuda:0', grad_fn=)\n", + "241000\n", + "24400 tensor(5.5053, device='cuda:0', grad_fn=)\n", + "242000\n", + "24500 tensor(5.2987, device='cuda:0', grad_fn=)\n", + "243000\n", + "24600 tensor(5.4275, device='cuda:0', grad_fn=)\n", + "244000\n", + "24700 tensor(5.3283, device='cuda:0', grad_fn=)\n", + "245000\n", + "24800 tensor(5.3707, device='cuda:0', grad_fn=)\n", + "246000\n", + "24900 tensor(5.4294, device='cuda:0', grad_fn=)\n", + "247000\n", + "25000 tensor(5.4479, device='cuda:0', grad_fn=)\n", + "248000\n", + "25100 tensor(5.3629, device='cuda:0', grad_fn=)\n", + "249000\n", + "25200 tensor(5.3849, device='cuda:0', grad_fn=)\n", + "250000\n", + "25300 tensor(5.4124, device='cuda:0', grad_fn=)\n", + "251000\n", + "25400 tensor(5.3932, device='cuda:0', grad_fn=)\n", + "252000\n", + "25500 tensor(5.2893, device='cuda:0', grad_fn=)\n", + "253000\n", + "25600 tensor(5.5512, device='cuda:0', grad_fn=)\n", + "254000\n", + "25700 tensor(5.3227, device='cuda:0', grad_fn=)\n", + "255000\n", + "25800 tensor(5.4217, device='cuda:0', grad_fn=)\n", + "256000\n", + "25900 tensor(5.3637, device='cuda:0', grad_fn=)\n", + "257000\n", + "26000 tensor(5.3632, device='cuda:0', grad_fn=)\n", + "258000\n", + "26100 tensor(5.2841, device='cuda:0', grad_fn=)\n", + "259000\n", + "26200 tensor(5.2107, device='cuda:0', grad_fn=)\n", + "260000\n", + "26300 tensor(5.4024, device='cuda:0', grad_fn=)\n", + "261000\n", + "26400 tensor(5.4410, device='cuda:0', grad_fn=)\n", + "262000\n", + "26500 tensor(5.1685, device='cuda:0', grad_fn=)\n", + "263000\n", + "26600 tensor(5.5023, device='cuda:0', grad_fn=)\n", + "264000\n", + "26700 tensor(5.3654, device='cuda:0', grad_fn=)\n", + "265000\n", + "26800 tensor(5.5407, device='cuda:0', grad_fn=)\n", + "266000\n", + "26900 tensor(5.3000, device='cuda:0', grad_fn=)\n", + "267000\n", + "27000 tensor(5.2141, device='cuda:0', grad_fn=)\n", + "268000\n", + "27100 tensor(5.2490, device='cuda:0', grad_fn=)\n", + "269000\n", + "27200 tensor(5.2850, device='cuda:0', grad_fn=)\n", + "270000\n", + "27300 tensor(5.4811, device='cuda:0', grad_fn=)\n", + "271000\n", + "27400 tensor(5.3561, device='cuda:0', grad_fn=)\n", + "272000\n", + "27500 tensor(5.2602, device='cuda:0', grad_fn=)\n", + "273000\n", + "27600 tensor(5.5429, device='cuda:0', grad_fn=)\n", + "274000\n", + "27700 tensor(5.3794, device='cuda:0', grad_fn=)\n", + "275000\n", + "27800 tensor(5.3792, device='cuda:0', grad_fn=)\n", + "276000\n", + "27900 tensor(5.4873, device='cuda:0', grad_fn=)\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "277000\n", + "28000 tensor(5.3454, device='cuda:0', grad_fn=)\n", + "278000\n", + "28100 tensor(5.3113, device='cuda:0', grad_fn=)\n", + "279000\n", + "28200 tensor(5.4785, device='cuda:0', grad_fn=)\n", + "280000\n", + "28300 tensor(5.1013, device='cuda:0', grad_fn=)\n", + "281000\n", + "28400 tensor(5.5403, device='cuda:0', grad_fn=)\n", + "282000\n", + "28500 tensor(5.3676, device='cuda:0', grad_fn=)\n", + "283000\n", + "28600 tensor(5.3108, device='cuda:0', grad_fn=)\n", + "284000\n", + "28700 tensor(5.4403, device='cuda:0', grad_fn=)\n", + "285000\n", + "28800 tensor(5.4926, device='cuda:0', grad_fn=)\n", + "286000\n", + "28900 tensor(5.3638, device='cuda:0', grad_fn=)\n", + "287000\n", + "29000 tensor(5.2819, device='cuda:0', grad_fn=)\n", + "288000\n", + "29100 tensor(5.0362, device='cuda:0', grad_fn=)\n", + "289000\n", + "29200 tensor(5.1871, device='cuda:0', grad_fn=)\n", + "290000\n", + "29300 tensor(5.4697, device='cuda:0', grad_fn=)\n", + "291000\n", + "29400 tensor(5.5909, device='cuda:0', grad_fn=)\n", + "292000\n", + "29500 tensor(5.3807, device='cuda:0', grad_fn=)\n", + "293000\n", + "29600 tensor(5.2398, device='cuda:0', grad_fn=)\n", + "294000\n", + "29700 tensor(5.3690, device='cuda:0', grad_fn=)\n", + "295000\n", + "29800 tensor(5.2220, device='cuda:0', grad_fn=)\n", + "296000\n", + "29900 tensor(5.4597, device='cuda:0', grad_fn=)\n", + "297000\n", + "30000 tensor(5.2205, device='cuda:0', grad_fn=)\n", + "298000\n", + "30100 tensor(5.3061, device='cuda:0', grad_fn=)\n", + "299000\n", + "30200 tensor(5.2432, device='cuda:0', grad_fn=)\n", + "300000\n", + "30300 tensor(5.3527, device='cuda:0', grad_fn=)\n", + "301000\n", + "30400 tensor(5.1823, device='cuda:0', grad_fn=)\n", + "302000\n", + "30500 tensor(5.3526, device='cuda:0', grad_fn=)\n", + "30600 tensor(5.3318, device='cuda:0', grad_fn=)\n", + "303000\n", + "30700 tensor(5.3634, device='cuda:0', grad_fn=)\n", + "304000\n", + "30800 tensor(5.3571, device='cuda:0', grad_fn=)\n", + "305000\n", + "30900 tensor(5.3875, device='cuda:0', grad_fn=)\n", + "306000\n", + "31000 tensor(5.4983, device='cuda:0', grad_fn=)\n", + "307000\n", + "31100 tensor(5.1554, device='cuda:0', grad_fn=)\n", + "308000\n", + "31200 tensor(5.1952, device='cuda:0', grad_fn=)\n", + "309000\n", + "31300 tensor(5.4546, device='cuda:0', grad_fn=)\n", + "310000\n", + "31400 tensor(5.2307, device='cuda:0', grad_fn=)\n", + "311000\n", + "31500 tensor(5.4188, device='cuda:0', grad_fn=)\n", + "312000\n", + "31600 tensor(5.4085, device='cuda:0', grad_fn=)\n", + "313000\n", + "31700 tensor(5.3744, device='cuda:0', grad_fn=)\n", + "314000\n", + "31800 tensor(5.4766, device='cuda:0', grad_fn=)\n", + "315000\n", + "31900 tensor(5.1062, device='cuda:0', grad_fn=)\n", + "316000\n", + "32000 tensor(5.2924, device='cuda:0', grad_fn=)\n", + "317000\n", + "32100 tensor(5.1728, device='cuda:0', grad_fn=)\n", + "318000\n", + "32200 tensor(5.4863, device='cuda:0', grad_fn=)\n", + "319000\n", + "32300 tensor(5.4748, device='cuda:0', grad_fn=)\n", + "320000\n", + "32400 tensor(5.4518, device='cuda:0', grad_fn=)\n", + "321000\n", + "32500 tensor(5.2752, device='cuda:0', grad_fn=)\n", + "322000\n", + "32600 tensor(5.3822, device='cuda:0', grad_fn=)\n", + "323000\n", + "32700 tensor(5.3088, device='cuda:0', grad_fn=)\n", + "324000\n", + "32800 tensor(5.5403, device='cuda:0', grad_fn=)\n", + "325000\n", + "32900 tensor(5.4000, device='cuda:0', grad_fn=)\n", + "326000\n", + "33000 tensor(5.1837, device='cuda:0', grad_fn=)\n", + "327000\n", + "33100 tensor(5.3888, device='cuda:0', grad_fn=)\n", + "328000\n", + "33200 tensor(5.4849, device='cuda:0', grad_fn=)\n", + "329000\n", + "33300 tensor(5.2471, device='cuda:0', grad_fn=)\n", + "330000\n", + "33400 tensor(5.5246, device='cuda:0', grad_fn=)\n", + "331000\n", + "33500 tensor(5.3479, device='cuda:0', grad_fn=)\n", + "332000\n", + "33600 tensor(5.3043, device='cuda:0', grad_fn=)\n", + "333000\n", + "33700 tensor(5.3487, device='cuda:0', grad_fn=)\n", + "334000\n", + "33800 tensor(5.4368, device='cuda:0', grad_fn=)\n", + "335000\n", + "33900 tensor(5.1620, device='cuda:0', grad_fn=)\n", + "336000\n", + "34000 tensor(5.3873, device='cuda:0', grad_fn=)\n", + "337000\n", + "34100 tensor(5.3545, device='cuda:0', grad_fn=)\n", + "338000\n", + "34200 tensor(5.4001, device='cuda:0', grad_fn=)\n", + "339000\n", + "34300 tensor(5.1902, device='cuda:0', grad_fn=)\n", + "340000\n", + "34400 tensor(5.6453, device='cuda:0', grad_fn=)\n", + "341000\n", + "34500 tensor(5.5124, device='cuda:0', grad_fn=)\n", + "342000\n", + "34600 tensor(5.4069, device='cuda:0', grad_fn=)\n", + "343000\n", + "34700 tensor(5.4734, device='cuda:0', grad_fn=)\n", + "344000\n", + "34800 tensor(5.5014, device='cuda:0', grad_fn=)\n", + "345000\n", + "34900 tensor(5.5412, device='cuda:0', grad_fn=)\n", + "346000\n", + "35000 tensor(5.5132, device='cuda:0', grad_fn=)\n", + "347000\n", + "35100 tensor(5.3455, device='cuda:0', grad_fn=)\n", + "348000\n", + "35200 tensor(5.2694, device='cuda:0', grad_fn=)\n", + "349000\n", + "35300 tensor(5.4988, device='cuda:0', grad_fn=)\n", + "350000\n", + "35400 tensor(5.1485, device='cuda:0', grad_fn=)\n", + "351000\n", + "35500 tensor(5.2299, device='cuda:0', grad_fn=)\n", + "352000\n", + "35600 tensor(5.3643, device='cuda:0', grad_fn=)\n", + "353000\n", + "35700 tensor(5.2247, device='cuda:0', grad_fn=)\n", + "354000\n", + "35800 tensor(5.3615, device='cuda:0', grad_fn=)\n", + "355000\n", + "35900 tensor(5.3453, device='cuda:0', grad_fn=)\n", + "356000\n", + "36000 tensor(5.1217, device='cuda:0', grad_fn=)\n", + "357000\n", + "36100 tensor(5.4909, device='cuda:0', grad_fn=)\n", + "358000\n", + "36200 tensor(5.3382, device='cuda:0', grad_fn=)\n", + "359000\n", + "36300 tensor(5.6225, device='cuda:0', grad_fn=)\n", + "360000\n", + "36400 tensor(5.3167, device='cuda:0', grad_fn=)\n", + "361000\n", + "36500 tensor(5.3458, device='cuda:0', grad_fn=)\n", + "362000\n", + "36600 tensor(5.3608, device='cuda:0', grad_fn=)\n", + "363000\n", + "36700 tensor(5.1660, device='cuda:0', grad_fn=)\n", + "364000\n", + "36800 tensor(5.2737, device='cuda:0', grad_fn=)\n", + "365000\n", + "36900 tensor(5.3883, device='cuda:0', grad_fn=)\n", + "366000\n", + "37000 tensor(5.2783, device='cuda:0', grad_fn=)\n", + "367000\n", + "37100 tensor(5.3110, device='cuda:0', grad_fn=)\n", + "368000\n", + "37200 tensor(5.3794, device='cuda:0', grad_fn=)\n", + "369000\n", + "37300 tensor(5.2802, device='cuda:0', grad_fn=)\n", + "370000\n", + "37400 tensor(5.6133, device='cuda:0', grad_fn=)\n", + "371000\n", + "37500 tensor(5.3138, device='cuda:0', grad_fn=)\n", + "372000\n", + "37600 tensor(5.3083, device='cuda:0', grad_fn=)\n", + "373000\n", + "37700 tensor(5.4860, device='cuda:0', grad_fn=)\n", + "374000\n", + "37800 tensor(5.3216, device='cuda:0', grad_fn=)\n", + "375000\n", + "37900 tensor(5.2969, device='cuda:0', grad_fn=)\n", + "376000\n", + "38000 tensor(5.3759, device='cuda:0', grad_fn=)\n", + "377000\n", + "38100 tensor(5.3914, device='cuda:0', grad_fn=)\n", + "378000\n", + "38200 tensor(5.4089, device='cuda:0', grad_fn=)\n", + "379000\n", + "38300 tensor(5.3068, device='cuda:0', grad_fn=)\n", + "380000\n", + "38400 tensor(5.3798, device='cuda:0', grad_fn=)\n", + "381000\n", + "38500 tensor(5.4051, device='cuda:0', grad_fn=)\n", + "382000\n", + "38600 tensor(5.3471, device='cuda:0', grad_fn=)\n", + "383000\n", + "38700 tensor(5.3415, device='cuda:0', grad_fn=)\n", + "384000\n", + "38800 tensor(5.4310, device='cuda:0', grad_fn=)\n", + "385000\n", + "38900 tensor(5.5029, device='cuda:0', grad_fn=)\n", + "386000\n", + "39000 tensor(5.2021, device='cuda:0', grad_fn=)\n", + "387000\n", + "39100 tensor(5.4283, device='cuda:0', grad_fn=)\n", + "388000\n", + "39200 tensor(5.5158, device='cuda:0', grad_fn=)\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "389000\n", + "39300 tensor(5.3452, device='cuda:0', grad_fn=)\n", + "390000\n", + "39400 tensor(5.4111, device='cuda:0', grad_fn=)\n", + "391000\n", + "39500 tensor(5.4969, device='cuda:0', grad_fn=)\n", + "392000\n", + "39600 tensor(5.1952, device='cuda:0', grad_fn=)\n", + "393000\n", + "39700 tensor(5.1946, device='cuda:0', grad_fn=)\n", + "394000\n", + "39800 tensor(5.3234, device='cuda:0', grad_fn=)\n", + "395000\n", + "39900 tensor(5.1354, device='cuda:0', grad_fn=)\n", + "396000\n", + "40000 tensor(5.2210, device='cuda:0', grad_fn=)\n", + "397000\n", + "40100 tensor(5.3133, device='cuda:0', grad_fn=)\n", + "398000\n", + "40200 tensor(5.2990, device='cuda:0', grad_fn=)\n", + "399000\n", + "40300 tensor(5.3684, device='cuda:0', grad_fn=)\n", + "40400 tensor(5.3700, device='cuda:0', grad_fn=)\n", + "400000\n", + "40500 tensor(5.2911, device='cuda:0', grad_fn=)\n", + "401000\n", + "40600 tensor(5.3497, device='cuda:0', grad_fn=)\n", + "402000\n", + "40700 tensor(5.3981, device='cuda:0', grad_fn=)\n", + "403000\n", + "40800 tensor(5.3436, device='cuda:0', grad_fn=)\n", + "404000\n", + "40900 tensor(5.2978, device='cuda:0', grad_fn=)\n", + "405000\n", + "41000 tensor(5.3420, device='cuda:0', grad_fn=)\n", + "406000\n", + "41100 tensor(5.3342, device='cuda:0', grad_fn=)\n", + "407000\n", + "41200 tensor(5.2226, device='cuda:0', grad_fn=)\n", + "408000\n", + "41300 tensor(5.3573, device='cuda:0', grad_fn=)\n", + "409000\n", + "41400 tensor(5.2448, device='cuda:0', grad_fn=)\n", + "410000\n", + "41500 tensor(5.3863, device='cuda:0', grad_fn=)\n", + "411000\n", + "41600 tensor(5.3051, device='cuda:0', grad_fn=)\n", + "412000\n", + "41700 tensor(5.3294, device='cuda:0', grad_fn=)\n", + "413000\n", + "41800 tensor(5.3191, device='cuda:0', grad_fn=)\n", + "414000\n", + "41900 tensor(5.3289, device='cuda:0', grad_fn=)\n", + "415000\n", + "42000 tensor(5.4860, device='cuda:0', grad_fn=)\n", + "416000\n", + "42100 tensor(5.2358, device='cuda:0', grad_fn=)\n", + "417000\n", + "42200 tensor(5.3253, device='cuda:0', grad_fn=)\n", + "418000\n", + "42300 tensor(5.3869, device='cuda:0', grad_fn=)\n", + "419000\n", + "42400 tensor(5.2062, device='cuda:0', grad_fn=)\n", + "420000\n", + "42500 tensor(5.3712, device='cuda:0', grad_fn=)\n", + "421000\n", + "42600 tensor(5.1718, device='cuda:0', grad_fn=)\n", + "422000\n", + "42700 tensor(5.4735, device='cuda:0', grad_fn=)\n", + "423000\n", + "42800 tensor(5.3973, device='cuda:0', grad_fn=)\n", + "424000\n", + "42900 tensor(5.2447, device='cuda:0', grad_fn=)\n", + "425000\n", + "43000 tensor(5.3896, device='cuda:0', grad_fn=)\n", + "426000\n", + "43100 tensor(5.3916, device='cuda:0', grad_fn=)\n", + "427000\n", + "43200 tensor(5.2044, device='cuda:0', grad_fn=)\n", + "428000\n", + "43300 tensor(5.2167, device='cuda:0', grad_fn=)\n", + "429000\n", + "43400 tensor(5.3933, device='cuda:0', grad_fn=)\n", + "430000\n", + "43500 tensor(5.1078, device='cuda:0', grad_fn=)\n", + "431000\n", + "43600 tensor(5.3045, device='cuda:0', grad_fn=)\n", + "432000\n" + ] + } + ], + "source": [ + "data = DataLoader(train_dataset, batch_size=batch_s)\n", + "optimizer = torch.optim.Adam(model.parameters(), lr=learning_rate)\n", + "criterion = torch.nn.NLLLoss()\n", + "torch.cuda.empty_cache()\n", + "gc.collect()\n", + "\n", + "model.load_state_dict(torch.load('model-bigram_final.bin'))\n", + "for i in range(1, epochs+1):\n", + " print('epoch: =', i)\n", + " model.train()\n", + " step = 0\n", + " for x, y in data: # prev, predicting, following words\n", + " x = x.to(device)\n", + " y = y.to(device)\n", + " optimizer.zero_grad()\n", + " ypredicted = model(x) #previous, following word\n", + " loss = criterion(torch.log(ypredicted), y)\n", + " if step % 100 == 0:\n", + " print(step, loss)\n", + " step += 1\n", + " loss.backward()\n", + " optimizer.step()\n", + " torch.save(model.state_dict(), f'model-bigram_2nd-run{i}.bin') \n", + "torch.save(model.state_dict(), f'model-bigram_final.bin') " + ] + }, + { + "cell_type": "code", + "execution_count": 17, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "[('be', 11, 0.2570849657058716),\n", + " ('', 0, 0.07411641627550125),\n", + " ('not', 22, 0.05940083786845207),\n", + " ('have', 28, 0.02751326560974121),\n", + " ('bo', 167, 0.014936885796487331),\n", + " ('make', 116, 0.013943656347692013),\n", + " ('give', 193, 0.011286991648375988),\n", + " ('take', 153, 0.011171611957252026),\n", + " ('do', 86, 0.010088067501783371),\n", + " ('he', 20, 0.009703895077109337)]" + ] + }, + "execution_count": 17, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "device = 'cuda'\n", + "torch.cuda.empty_cache()\n", + "model = SimpleBigramNeuralLanguageModel(vocab_size, embed_size).to(device)\n", + "model.load_state_dict(torch.load(f'model-bigram_final.bin'))\n", + "model.eval()\n", + "\n", + "ixs = torch.tensor(vocab.forward(['will'])).to(device)\n", + "\n", + "out = model(ixs)\n", + "top = torch.topk(out[0], 10)\n", + "top_indices = top.indices.tolist()\n", + "top_probs = top.values.tolist()\n", + "top_words = vocab.lookup_tokens(top_indices)\n", + "list(zip(top_words, top_indices, top_probs))" + ] + }, + { + "cell_type": "code", + "execution_count": 34, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "[('', 0, 0.19996878504753113),\n", + " ('and', 3, 0.05288130044937134),\n", + " ('of', 2, 0.042051784694194794),\n", + " ('the', 1, 0.026572922244668007),\n", + " ('to', 4, 0.022689413279294968),\n", + " ('in', 6, 0.015904497355222702),\n", + " ('The', 17, 0.012827681377530098),\n", + " ('a', 5, 0.00961760152131319),\n", + " ('for', 8, 0.008938422426581383),\n", + " ('', 32, 0.00840282253921032)]" + ] + }, + "execution_count": 34, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "vocab = train_dataset.vocab\n", + "ixs = torch.tensor(vocab.forward(['cerned.'])).to(device)\n", + "\n", + "out = model(ixs)\n", + "top = torch.topk(out[0], 10)\n", + "top_indices = top.indices.tolist()\n", + "top_probs = top.values.tolist()\n", + "top_words = vocab.lookup_tokens(top_indices)\n", + "list(zip(top_words, top_indices, top_probs))" + ] + }, + { + "cell_type": "code", + "execution_count": 33, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "[('', 0, 1.0),\n", + " ('particular,', 14538, 0.24527804553508759),\n", + " ('revolution.', 20446, 0.23776617646217346),\n", + " ('Territory.', 14189, 0.23417341709136963),\n", + " ('or-', 2261, 0.22888363897800446),\n", + " ('3', 479, 0.2288265973329544),\n", + " ('speak.', 13722, 0.2252315878868103),\n", + " ('attend.', 19397, 0.22110989689826965),\n", + " ('say,', 1455, 0.22106117010116577),\n", + " ('Lee.', 15326, 0.21764159202575684)]" + ] + }, + "execution_count": 33, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "cos = nn.CosineSimilarity(dim=1, eps=1e-6)\n", + "\n", + "embeddings = model.model[0].weight\n", + "\n", + "vec = embeddings[vocab['cerned.']]\n", + "\n", + "similarities = cos(vec, embeddings)\n", + "\n", + "top = torch.topk(similarities, 10)\n", + "\n", + "top_indices = top.indices.tolist()\n", + "top_probs = top.values.tolist()\n", + "top_words = vocab.lookup_tokens(top_indices)\n", + "list(zip(top_words, top_indices, top_probs))" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": { + "scrolled": true + }, + "outputs": [], + "source": [ + "\n", + "vocab = train_dataset.vocab\n", + "# ixs = torch.tensor(vocab.forward(['a'])).to(device)\n", + "ixs = torch.tensor(vocab.forward(['of'])).to(device)\n", + "# ixs = torch.tensor(vocab.forward(['that'])).to(device)\n", + "# ixs = torch.tensor(vocab.forward(['church'])).to(device)\n", + "# ixs = torch.tensor(vocab.forward(['wait'])).to(device)\n", + "\n", + "out = model(ixs)\n", + "top = torch.topk(out[0], 10)\n", + "top_indices = top.indices.tolist()\n", + "top_probs = top.values.tolist()\n", + "top_words = vocab.lookup_tokens(top_indices)\n", + "list(zip(top_words, top_indices, top_probs))" + ] + }, + { + "cell_type": "code", + "execution_count": 52, + "metadata": {}, + "outputs": [], + "source": [ + "def get_values_from_model(presc_word, model, vocab, k):\n", + " ixs = torch.tensor(vocab.forward([presc_word])).to(device)\n", + " out = model(ixs)\n", + " top = torch.topk(out[0], k)\n", + " top_indices = top.indices.tolist()\n", + " top_probs = top.values.tolist()\n", + " top_words = vocab.lookup_tokens(top_indices)\n", + " return list(zip(top_words, top_probs))\n", + "\n", + "def gonito_format(dic):\n", + " tab = summarize_probs_unk(dic)\n", + " result = ''\n", + " for element in tab[:-1]:\n", + " result+=str(element[0])+':'+str(element[1])+'\\t'\n", + " result+=':'+ str(tab[-1][1])+'\\n'\n", + " return result\n", + "\n", + "def summarize_probs_unk(dic):\n", + " if '' in dic.keys():\n", + " del dic['']\n", + " probsum = sum(float(val) for key, val in dic.items())\n", + "# if \"\" in dic.keys():\n", + "# for key in dic:\n", + "# dic[key] = dic[key]/probsum #normalize to 1\n", + "# wildcard = dic[''] \n", + "# else: #no unk in first 10 entries\n", + " for key in dic:\n", + " dic[key] = dic[key]/probsum*(1-wildcard_minweight) ###leave some space for wildcard\n", + " wildcard = wildcard_minweight\n", + " tab = [(key, val) for key, val in dic.items()]\n", + " tab.append(('', wildcard))\n", + " return tab\n", + "\n" + ] + }, + { + "cell_type": "code", + "execution_count": 54, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Present,\n", + "maintenance.\n", + "-\n", + "on\n", + "after.\n", + "included.\n", + "Delaware.\n", + "body.\n", + "route.\n", + "under\n", + "bership.\n", + "call*\n", + "waterscape.\n", + "?\n", + "soles.\n", + "simple.\"\n", + "public.\n", + "them.-\n", + "months.\n", + "icy.\"\n", + "E\n", + "level.\n", + "4t—36\n", + "financial\n", + "steady.\n", + "mlnicars.\n", + "his\n", + "circumstances.\n", + "corner.\n", + "science.\n", + "insurance.\"\n", + "fair.\n", + "scalded.\n", + "ria.\n", + "it,\n", + "mlngtonlan.\n", + "possession.\n", + "of\n", + "pray!”\n", + "occurred.\n", + "euro,\n", + "way.\n", + "185.\n", + "destruction.\n", + "conditions.\n", + "Hood.\n", + "s.\n", + "case.\n", + "Roy\n", + "country.\n", + "ccjulinalf\n", + "side.\n", + "against\n", + "servation.\n", + "Detroit.\n", + "North\n", + "country.\n", + "\"\n", + "bones.\n", + "sold.\n", + "Brown\n", + "bill.\n", + "Springer,\n", + "gaged.\n", + "their\n", + "character.\n", + "cu\n", + "former\n", + "cities.\n", + "accumulated\n", + "corporal.\n", + "^\n", + "-\n", + "o\n", + ".(.\n", + "descendants\n", + "notes.\n", + "Courier.\n", + "town\n", + "E\n", + "awake,\n", + "d\n", + "circumstances.\n", + "board.\n", + "-\n", + "union.\n", + "the\n", + "en-\n", + "children\n", + "Tre--\n", + "date.\n", + "Monday.\n", + "been\n", + "now\n", + "slaughter.”\n", + "art.\n", + "shape.\n", + "ai\n", + "Magazine.\n", + "License.\n", + "K\n", + "P.iU--\n", + "failures\n", + "v\n", + "cause.\n", + "Russian\n", + "prayed.\n", + "tariff.\n", + "action.\n", + "direction.\n", + "Tacomans\n", + "to-\n", + "cellence.\n", + "power\n", + "25\n", + "alty.\n", + "July.\"\n", + "crime.\n", + "of\n", + "conviction.\n", + "been\n", + "d\n", + "unnatural\n", + "s,\n", + "-\n", + "scccdo.\n", + "e-\n", + "Harrisburg.\n", + "cash.\n", + "Peter\n", + "OTTirn\n", + "lor\n", + "MacAuley.\n", + "O\n", + "style.\n", + "road.\n", + "YOU.\n", + "nations.\"\n", + "r.o\n", + "made.\n", + "Democratic.\n", + "......\n", + "Ocean.\n", + "r\n", + "and\n", + "bless\n", + "jaSl\n", + "Krapt.\n", + "states.\n", + "It.\n", + "river.\n", + "fag-\n", + "ShorteU.\n", + "fabric.\"\n", + "returned.\n", + "tra.\n", + "member.\n", + "both.\n", + "I\n", + "place.\"\n", + "our\n", + ".»\n", + "17\n", + "1911.\n", + "an\n", + "Age.\n", + "It\n", + "Gland--\n", + "tl\n", + "-\n", + "be-\n", + "air.\n", + "crude.\n", + "remedy.\n", + ":\n", + "Uny\n", + "tunnel.\n", + "n\n", + "Gulf.”\n", + "war.\n", + "...\n", + "contest\n", + "History.\n", + "aear.\n", + "tees.\n", + "residence.\n", + "friend,\n", + "h\n", + "\"\n", + "him.\n", + "government.\n", + "facilities.\"\n", + "remedy.\n", + "r\n", + "eent\n", + "law.\n", + "the\n", + "Representative\n", + "w\n", + "n\n", + "1S44.\n", + "adopted.\n", + "favor.\n", + "Sciurier.\n", + "bein\n", + "market.\n", + ".1\n", + "marshes.\n", + "Newark.\n", + "years\n", + "Preeton.\"\n", + "lti-\n", + "Trumpet\n", + "said.\n", + "appoint\n", + "oi\n", + "tbe\n", + "Federahi,\n", + "1858.\n", + "hereof.\n", + "treatment.\n", + "dawdling\n", + "dence.\n", + "L\n", + "requirements.\n", + "in\n", + "e\n", + "projects?\n", + "goes:\n", + "W\n", + "w\n", + "thereof.\n", + "It\n", + "injury.\"\n", + "water.\"\n", + "played\n", + "famoti'\n", + "nnd\n", + "there.'\n", + "win.\"\n", + "used.\n", + ".by\n", + "'\n", + "Woman.\n", + "viz:\n", + "causing\n", + "quarter.\n", + "i.\n", + "police.\n", + "run.\n", + "children.'\n", + "debate.\n", + "Blannerhasset\n", + "pa-\n", + "with\n", + "elbow.\n", + "J\n", + "aid.\n", + "States.\n", + "graii\n", + "terday.\n", + "was\n", + "mlngo\n", + "night.\n", + "reason.\n", + "Thlinget.\n", + "111.\n", + "'\n", + "anarled.\n", + "personally.\n", + "man.\n", + "nonresidents\n", + "man.\n", + "sently.\n", + "st\n", + "time.\n", + "shrine.\n", + "communicable\n", + "anf\n", + "Th.-\n", + "lose\n", + "thereon.\n", + "application.\n", + "disappear.\n", + "forfeited.\n", + "collis-\n", + "sirl\n", + "(\n", + "reconstructed.\n", + "(ban.)\n", + "the\n", + "tion.\n", + "afte\n", + "co-urts.\"\n", + "18W2.\n", + "attuck.\n", + "too\n", + "void.\n", + "presented,\n", + "shallton.\n", + "pnst\n", + "here.\n", + "mentioned.\n", + "session.\n", + "b\n", + "s\n", + "river.\n", + "capac\n", + "firm.\n", + "bombardment,\n", + "other.\n", + "worship.\n", + "The\n", + "liberties.\n", + "respousihiliiics,\n", + "Times.\n", + "other.\n", + "following:\n", + "consid­\n", + "arroya.\n", + "owno-\n", + "is\n", + "14.\n", + "name.\n", + "night\n", + "adjourned.\n", + "morning.^\n", + "paint.\n", + "post-nat-\n", + "union.\n", + "or-\n", + "Jiuili\n", + "said.\n", + "splurge.\n", + "him.\n", + "work.\"\n", + "-te-\n", + "tfo\n", + "there\n", + ".\n", + "rising.\n", + "Gen.\n", + "11\n", + "yours,\n", + "Farmer.\n", + "acquaintanceship,\n", + "hand.\n", + "high-cla-\n", + "nights.\n", + "AfcC-i-\n", + "elections.\n", + "way.\"\n", + "once.\n", + ".\n", + "comfortable.\n", + "rality.\n", + ".be-\n", + "approval,\n", + "sto-\n", + "cure.\n", + "27,000.\n", + "spoils.”\n", + "deeds.\n", + "now\n", + "1.\n", + "da\n", + "...11.11-\n", + "d\n", + "berry.\n", + "congratulations.\n", + "coast\n", + "Wednesday\n", + "ferences.\n", + "point.\"\n", + "preservation.\n", + "gowns.\n", + "curanhalted.\n", + "JBarmsT.\n", + "surroundings.\n", + "treat\n", + "ted.\n", + "tfrith\n", + "blossoms.\n", + "here.\"\n", + "Minnesota.\n", + "rope.\n", + "—\n", + "him:\n", + "*\n", + "is”\n", + "feet\n", + "music-\n", + "Newark.\n", + "given\n", + "country\n", + "sick.\n", + "black.\n", + "so.\n", + "archdiocese.\n", + "form.\"\n", + "k\n", + "propose.\n", + "ed.\n", + ".\n", + "healthy.\n", + "cannons.\n", + "auxiliaries\n", + "by\n", + "to\n", + "shoute,\n", + "thel.-\n", + "\"Short\n", + "side.\n", + "Koine.\n", + "thanks.\n", + "le.\n", + "communicable.\n", + "[Sigued]\n", + "ion.\n", + "remedy.\n", + "Monthly.\n", + "enterprises.\"\n", + "nlieht**.i\n", + "harmed.\"\n", + "retreat.\n", + "what\n", + "d\n", + "over\n", + "wounded.\n", + "-\n", + ".\n", + "mobiles.\"\n", + "mill.\n", + "college.\n", + "B.\n", + "Manassas.\n", + "fea-\n", + "fatigue.\n", + "\"Quartermaster\n", + "Williams.'\n", + "visible.\n", + "Cox,\n", + "bo\n", + "stitution.\n", + "said\n", + "c-\n", + "be\n", + "hat.\n", + "Sing.\n", + "penalty.\n", + "at\n", + "prison!\n", + "salt.\n", + "consider.\"\n", + "mo\n", + "TWENTY-EIGHT-\n", + "Hazen's\n", + "F\n", + "Pennsylvania\n", + "mand.\n", + "Class.”\n", + "years.\n", + "shore.\n", + "posterity.\n", + "1000.\n", + "tern-\n", + "meeting.\n", + "logical.\n", + "said:\n", + "stamps.\n", + "trol.\"\n", + "misdeeds.\n", + "Middletown.\n", + "nnd\n", + "law.\n", + "sure\n", + "recover.\n", + "e\n", + "move.\n", + "remedy.\n", + "days.\n", + "efficiency.\n", + "provement.\n", + "be\n", + "i\n", + "fall.\n", + "East\n", + "really\n", + "-\n", + "uever\n", + "leg-\n", + "deny\n", + "reason\n", + "ous\n", + "of\n", + "agencies.\n", + "eloped.\"\n", + "scale.\n", + "Colonel\n", + "company.\n", + "watera\n", + "|\n", + "enterprises,\n", + "to-day.\n", + "In\n", + "enuffforme.\n", + "justly\n", + "finitum.\"\n", + "negan.\n", + "OTTO\n", + "interests.\n", + "mo-\n", + "determined.\n", + "iasu\n", + "void.\n", + "nights\n", + "come.\"\n", + ".\n", + "pild.\n", + "(\n", + "her\n", + "from\n", + "Russians.\n", + "things.\n", + "talk.\n", + "constituted,\n", + "lows:\n", + "dustry.\n", + "state.\n", + "sections.\n", + "cent..\n", + "cm'\n", + "mile*.\n", + "liberty,\n", + "judgment.\n", + "a-t\n", + "illusion.\n", + "With\n", + "States.\n", + "and\n", + "kind.\n", + "preference\n", + "lunch.\n", + "tary.\n", + "”\n", + "the\n", + "Democratic\n", + "»ball\n", + "ribbon.\n", + "and\n", + "of\n", + ".\n", + "route.\n", + "prayed.\n", + "The\n", + "live.\n", + "train.\n", + "holi-\n", + "follow.\n", + "a\n", + "quail.”\n", + "uuu\n", + "oath.\n", + "Cohce.\n", + "',\n", + "record.\n", + "it.'\n", + "the\n", + "have\n", + "Kinley.\n", + "purchase.\n", + "violcuce.\n", + "gates-wor-e\n", + "placed\n", + "taste.\n", + "at-\n", + "servation.\n", + "\"\n", + "views.\n", + "one.\n", + "description.\n", + "lized\n", + "egress.\n", + "flames.\n", + "e\n", + "704c.\n", + "height.\n", + "office.\n", + "Pa.,\n", + "preserves\n", + "voice.\n", + "Ledger.\n", + "later.\n", + "eminent\n", + "powerfully.\"\n", + "d\n", + "g\n", + "Iremain\n", + "mi-\n", + "Constitu-\n", + "charges.\n", + "llnllrond\n", + "llWi\n", + "n,\n", + "wel-\n", + "eternity.\n", + "of\n", + "it.\n", + "on-\n", + "n-\n", + "sure.\"\n", + "n-\n", + "feform.\n", + "it.\n", + "man.\n", + "popularity.\n", + "PUGH.\n", + "dollars.\n", + "w-elfare.\n", + "motionless.\n", + "ago\n", + "call.\n", + "emergencies.\n", + "45.\n", + "again.\n", + "to\n", + "Smith,\n", + "a\n", + "h\n", + "Client\n", + "for.\n", + "gone.\n", + "thereof.\n", + "per-\n", + "herlivin?.\n", + "d\n", + "Th-\n", + "them,\n", + "nbllWiM\n", + "Measures,\n", + "dreary,\n", + "crime.\"\n", + "^ffsouJ.\n", + "obser-\n", + "home.\n", + "him.\n", + "bcr.\n", + "C.\n", + "were\n", + "purchaser.\n", + "the\n", + "tu-\n", + "policy.\n", + "Dalty!\"\n", + "enl-\n", + "win.\"\n", + "dissolution.\n", + "health.\n", + "exception.\n", + "16'h.\n", + "1859.\n", + "boat.\n", + "'\n", + "home.\n", + "eausees.\n", + "Congress.\"\n", + "few.\n", + "’'\n", + "cost:\n", + "demand.\n", + "them.\n", + "Vlr\n", + "at\n", + "Saint\n", + "which\n", + "all.\n", + "consider.\n", + "list.\n", + "on\n", + "menu.\n", + "V.rk.\n", + "onstrate.\n", + "nor\n", + "as\n", + "county.\"\n", + "Iowu,\n", + "grade.\n", + "organization.\n", + "Wyman.\n", + "Unsportsmanlike\n", + "pioneers.\n", + "spring.\n", + "appertaining.\n", + "porch.\n", + "James\n", + "we\n", + "\"\n", + "it.\n", + "hand.\"\n", + "farew-ell.\"\n", + "advantages.\n", + "all\n", + "-\n", + "secured\n", + "attention\n", + "water\n", + "igoV\n", + "State.\n", + "cattle\n", + "othor.\n", + ".more.\n", + "-\n", + ".\n", + ",\n", + "rest.\n", + "been,-\n", + "a»\n", + "rei\n", + "cases.\n", + "is.\n", + "d\n", + "aforesaid.\n", + "determine.\n", + "him.\n", + "comic,\n", + "Inquiry.\n", + "girls,\n", + "rations.\n", + "living.\n", + "delinquents.\n", + "performed.\n", + "or\n", + "Mr,\n", + "plaint.\n", + "ters\n", + "e\n", + "constructed\n", + "slaughterinj\n", + "cent.\n", + "Commerce.\n", + "trated.\n", + "Tfrnoney.\n", + "factions.\n", + "rejected.\n", + "s\n", + "brave.\"\n", + "statute.\n", + "flight\n", + "kbrsf\n", + "future.\n", + ":\n", + "oflloe.\n", + "’08.\"\n", + "dustries?\"\n", + "at\n", + "parly.\n", + "insured.\n", + "tluics.\n", + "court.\n", + "lows.”\n", + "woman.\n", + "7\n", + "complaint.\n", + "expected.\n", + "anthem\n", + "the\n", + "sundown.\n", + "same.\n", + ".\n", + "yen.\"\n", + "copy.\n", + "strong.\n", + "Government,\n", + "nlng.\n", + "prloes,\n", + "Astoria.\n", + "?\n", + "They\n", + "Figaro.\n", + "buy-\n", + "it.\n", + "plane.\n", + "Nelson,\n", + "decision.\n", + "injunction,\n", + "peace.\n", + "wid\n", + "give\n", + "departments.\"\n", + "costs.\n", + "sufficient\n", + "DOCK\n", + "incurred.\n", + "out\n", + "j\n", + "g\n", + "his\n", + "tho-\n", + "mnlns.\n", + "rder.\n", + "trade.\n", + "-\n", + "Regis.\n", + "ages.\n", + "them.\n", + "Mcllvalne.\n", + "newspaper.\n", + "matter.\n", + "er\n", + "improved\n", + "be\n", + "pastures.\n", + "himself.\n", + ".\n", + "shapes.\n", + "adopted,\n", + "and\n", + ":\n", + "Robert\n", + "the\n", + "sheep.\n", + "lasttwelrty8®*'\n", + "Miss\n", + "~\n", + "Down\n", + "Clerk\n", + "circumstances.\n", + "tomorrow's\n", + "ncr*\n", + "would.\n", + "Union.\n", + "street.\n", + "tru.--\n", + "n\n", + "little\n", + "the\n", + "speed.\n", + "be\n", + "husband.,\n", + "obtained.\n", + "able.\n", + "ards.\"\n", + "situation.\n", + "accussed\n", + "sleep.\n", + "«1-\n", + "support.\n", + "home.\n", + "else.\n", + "spread\n", + "ploying.\n", + "and\n", + "the\n", + "Coun-\n", + "shot-makin-\n", + "guarded.\n", + "an\n", + "Hoursfrom9a.M..to5e.m.\n", + "Lake\n", + "1\n", + "rip-rapping.\n", + "publication.\n", + "Stanton's\n", + "Invigorated.\n", + "rendered.\n", + "strike,\n", + "cnn-\n", + "instruction.\n", + "territory.\n", + "ly.\n", + "the\n", + "ascertained.\n", + "service.\n", + "unrelenting.\n", + "York.\n", + "to-\n", + "pursuits.\n", + "for­\n", + "ever\n", + "plates.\n", + "Meade.\n", + "superior\n", + "Dusinesa.\n", + "ho-\n", + "locomotives.\n", + "derson.\n", + "like\n", + "Flag.\n", + "night.\n", + "hla\n", + "May.\n", + "r\n", + "Health.\n", + "*\n", + "term\n", + "provinces.\n", + "off.\n", + "transao-\n", + "ferine.\n", + "the\n", + "preserves\n", + "father\n", + "them.\n", + "hopeful.\n", + "\"\n", + "it.\n", + "jfciow.\n", + "stopped.\n", + "other,\n", + "sentiments.\n", + "action,\"\n", + "harlequinade.\n", + "water.\n", + "\"detective.\"\n", + "tutlon.\n", + "institutions.(12)\n", + "dreary.\n", + "was\n", + "say\n", + "maker.\n", + "nies.\n", + "vagabond.\n", + "here.\n", + "fault.\n", + "and\n", + "EU.\n", + ";\n", + "fur.\n", + "agreement.\n", + "11,012\n", + "provide.\n", + "Sovereign.\n", + "life.\n", + "law.\n", + "immeiatly\n", + "ity.\n", + "law.\n", + "I\n", + "faction.\n", + "nificance.\n", + "mac\n", + "7p.m.\n", + "James\n", + "individuals.\n", + "sure.\n", + ">n»v.\n", + "city.\n", + "brane.\n", + "relations.\n", + "if\n", + "Moka\n", + "Press.\n", + "during\n", + "relatives\n", + "colors.\n", + "n-\n", + "Arm.\n", + "it-\n", + "from\n", + "J'e\n", + "un-\n", + "er\n", + "2\"\n", + "vote?\n", + "disease.\n", + "feetlothepUceof\n", + "postponed.\n", + "and\n", + "JyTs\n", + "Vlmndcaler.\n", + "supervision.\n", + "PANY,\n", + "-\n", + "ceptance:\n", + "constituents.\n", + "e,\n", + "interest.\n", + "ult.\n", + "the\n", + "attention.\n", + "cans\n", + ".\n", + "s\n", + "pt\n", + "day.\n", + "p,\n", + "reply.\n", + "war.\n", + "purpose\n", + "ann,\n", + "Mass.\n", + ";\n", + "form­\n", + "o\n", + "d\n", + "t:\n", + "ou\n", + "basis.”\n", + "comforter.\n", + "of.\"\n", + "State.\n", + "search.\n", + "us.\n", + "cir-\n", + "Itnddmus,\n", + "was\n", + "invited.\n", + "damageB.\n", + "study.\n", + "cussion.\n", + "Afpeal-\n", + "orders.\n", + "the\n", + "organ-laa-\n", + "1\n", + "service.\n", + "damage.\n", + "zens.\n", + "Science.\n", + "superior.\n", + "directions.\n", + "known\n", + "unsuccessful.\n", + "'\n", + "village.\n", + "Uw\n", + "pay.\n", + "In\n", + "o’clock.\n", + "ruin.\n", + "mil.\n", + "sale\n", + "o\n", + "simply\n", + "the\n", + "Sun.\n", + "—,\n", + "statute.\n", + "each.\n", + "viciously.\n", + "Small's\n", + "Galveston\n", + "Gazelle\n", + "two\n", + "passed.\n", + "cent.\n", + "death.\n", + "ex-\n", + "proof\n", + "low-c-\n", + "arbitration.\n", + "times.\n", + "deans.\n", + "directed.\n", + "saloon.\n", + "The-\n", + "me.\n", + "home.\n", + "men.\n", + "Rogers.\n", + "oootomj\n", + "x.\n", + "from\n", + "fire.\n", + "plies.\n", + "I,.\n", + "ones.\n", + "location.\n", + "e.\n", + "an\n", + "sake.\n", + "s\n", + "shall\n", + "fire.\n", + "Herald,\n", + "soldbv\n", + "citizen.\n", + "ordinance.\n", + "1902,\n", + "whose\n", + "dry\"\n", + "election.\n", + "pack.\"\n", + "side.\n", + "course\n", + "and\n", + "the\n", + "b-\n", + "day,\n", + "e-\n", + "outlaws.\n", + "roots.\n", + "work.\n", + "physicians.\n", + "however.\n", + "Kulp,\n", + "teachings\n", + "!)ile,\n", + "10%<\n", + "cemetery.\n", + "name?’\n", + "course.\n", + "oiu.\n", + "clergy.\n", + "peace\n", + "to\n", + "saved.\n", + "government.\n", + "commonplaces.\"\n", + "week\n", + "meet.\n", + "1858.\n", + "Air«.\n", + "Mass.,\n", + "county.\n", + "associations.\n", + "up.\n", + "eouth.\n", + "a-\n", + "de-\n", + "Oroville.\n", + "o\n", + "tc\n", + "evening.\n", + "state.\n", + "oDservor.\n", + "witdom\n", + "circumstances.\n", + "snags\n", + "shown,\n", + "farm¬\n", + "way\n", + "hat\n", + "plause.)\n", + "on\n", + "Grahamhes.\n", + "opponent's\n", + "the\n", + "fying.\n", + "contractor.\n", + ".iV\"\n", + "and\n", + "his\n", + "1\n", + "brother-in-la-\n", + "engaged.\n", + "inspection.\n", + "Cemetery.\n", + "country\n", + "tale.\n", + "stops.\"\n", + "rocks.\n", + "medicine.\"\n", + "men.\n", + "Zipf.\n", + "Socle'y.\n", + "erased\n", + "Mountains.-\n", + "30.\n", + "aeiil\n", + "no\n", + "Opinion.\n", + "it.\n", + "have\n", + "Robbery.—\n", + "Brnc#.\n", + "discussions.\n", + "day?\n", + "not\n", + "ewYork.\n", + "measure.\n", + "and\n", + ".M\n", + "president.\n", + "prim\n", + "drops.\n", + "hell.\n", + "can.\n", + "de=\n", + "hum.\n", + "im-a-\n", + "aucceesluily\n", + "Milton\n", + "Southwestern.\n", + "dollars.\n", + "poles.\n", + "by\n", + "Mr.\n", + "babl\n", + "1862.\n", + "action.\n", + "order.\n", + "once.\n", + "yield.\n", + "in.\n", + "l'.\n", + "God.\n", + "capital.\n", + "missionaries\n", + "plastered.\n", + "caution.”\n", + "No.\n", + "matter.\n", + "licked.\")\n", + "body.\n", + "votes.\n", + "relation.\n", + "I\n", + "them.\n", + ".'s.\"\n", + "joint.\n", + "suffrage.\n", + "list.\n", + "i\n", + "i\n", + "strengtn.\n", + "slain.\n", + "•l\n", + "plaint.\n", + "School,.\n", + "thir\n", + "Uepubllcnn-stcel-\n", + "ablte.\n", + "amendment.\n", + "water.\n", + "climb.\n", + "do.\n", + "coffee.\n", + "impossible.\n", + "feats.\n", + "rights,\n", + "detectives.\n", + "two\n", + "nalinns.\n", + "home.\n", + "le-intlon.\n", + "It.\n", + "weeks.\n", + "sncrarT\n", + "it.\n", + "reads.\n", + "at\n", + "r;\n", + "d\n", + "hcriffs\n", + "New\n", + "levied.\n", + "S.\n", + "consideration.\n", + "of.\n", + "old\n", + "inquiry.\n", + "clerk9.\n", + "both.\n", + "inn-ha-\n", + "earth.-\n", + "of\n", + "ace.\n", + "Astor.\n", + "dertaking.\n", + "Canada.\n", + "trim.\n", + "qualiiica-\n", + "case.\n", + "If\n", + "m\n", + "throats.\n", + "hero.\n", + "infidels.\n", + "was:\n", + "section.\n", + "preserves.\n", + "mine.\n", + "road.\n", + "-\n", + "*s7.\n", + "combination.\n", + "loco-\n", + "elae.'\n", + "Stat*.\n", + "follows:\n", + "windpipe.\n", + "e-\n", + "Church.\n", + "November,\n", + "shall\n", + "streets.\n", + "dlea\n", + "d\n", + "5:18).\n", + "Journal.\n", + "usual.\n", + "remedy.\n", + "guilt.\n", + "the\n", + "Jr.,\n", + "of\n", + "for.\n", + "information.\n", + "experiences.\n", + "cerned.\n", + "certain-.\n", + "10,0(58.'\n", + "Republic.\n", + "hundred\n", + "and\n", + "citizens.\"\n", + "weaken.\"\n", + "tion.\n", + "facte\n", + "y,\n", + "zation.\"\n", + "us.\n", + "will-trem-ble\n", + "e\n", + "York.\n", + "copy.\n", + "Jer-\n", + "the\n", + "Mrs.\n", + "White.\n", + "feet\n", + "If\n", + "charges.\n", + "country.\"\n", + "suffer.\n", + "existence.\n", + "flag.\n", + "two.\n", + "at\n", + "act.\n", + "city.\n", + "rita'es,\n", + "A\n", + "answer.\n", + "ner.\n", + "camp.\n", + "remedy.\n", + "(13)\n", + "trouble\n", + "pastures.\n", + "and\n", + "street.\n", + "Jersey.\n", + "honor.\"\n", + "decision?\n", + "hours.\n", + "bunker.\n", + "neighbors.\n", + "more.\n", + "“\n", + "It\n", + "Polynesian.\n", + "\"\n", + "the\n", + "around.\n", + "uithsea.\n", + "forovor.\"\n", + "the\n", + "home.\n", + "Page's\n", + "Jr.\n", + "situate--\n", + ":\n", + "of\n", + "llnotoTur\n", + "are\n", + "t.\n", + "thus:\n", + "breath:\n", + "18W-\n", + "Madeline\n", + "States.\n", + "davs.\n", + "donations.\n", + "Curtis-Wright.\n", + "time!\"\n", + "armies.\n", + "hot\n", + "terday:\n", + "never\n", + "treasury.\n", + "health.\n", + "^\n", + "sanitariums.\n", + "it.\"\n", + "house.\n", + "s\n", + "old.\n", + "life.\n", + "arrest..\n", + ".\n", + "Co.,\n", + "of\n", + "iuet\n", + "coirered.\"\n", + "the\n", + "friends\n", + "order.\n", + "t\n", + "district,\n", + "protection.\n", + "pulpit\n", + "lost.\n", + "grown.\n", + "of\n", + ",k.\n", + "Judges.\n", + "recorder.\n", + "Mr.\n", + "gunpowder.\n", + "I'arlors.\n", + "d\n", + "system.\n", + "a\n", + "horizon.\n", + "now.\n", + "dear.\"\n", + "day.\n", + "winners\n", + "Herald.\n", + "washes!\n", + "full.\n", + "blood.\n", + "there\n", + "leaaantly,\n", + "plating.\n", + "wholesale.\n", + "wti-x\n", + "c\n", + "to\n", + "and\n", + "boost.\n", + "wire.\n", + "morality.\n", + "beginning.\n", + "cneap.\n", + "Leroux,\n", + "propriations.\n", + "union.’’\n", + "Dlspatcl.\n", + "Conference.\n", + "Sart\n", + ",\n", + "tured.\n", + "o\n", + "d\n", + "-\n", + "or\n", + "pitable.\n", + "uay.\n", + "bales.\n", + "Emanuel.\n", + "change,\n", + "happiness.\n", + "e\n", + "Pott.\n", + "a\n", + "male.\n", + "see\n", + "cf\n", + "*1.392,180,294.\n", + "expenses.\n", + "h\n", + "al\n", + "be\n", + "out.\n", + "hear\n", + "publics.\n", + "1909.\n", + "dusi-\n", + "wrought.\"\n", + "862,000.\n", + "him.\n", + "o\n", + "multitude.'\n", + "South.\n", + "d-\n", + "pany.\n", + "Raleiffh\n", + "$1t)0.\n", + "girl.'\n", + "days;\n", + "feet.\n", + "ago:\n", + "proof.\n", + "Union.\n", + "of\n", + "tests.\n", + "injuries.\n", + "determined.\n", + "the\n", + "-\n", + "1916.\n", + "Dr.\n", + ",\n", + "persons.\n", + "each.\n", + "bu-\n", + "gerous?\n", + "yesterday.\n", + "winter.\n", + "22\n", + "tion,\n", + "increases.\n", + "fash-\n", + "contemplate.\n", + "needless.\n", + ".\n", + "J\n", + "Preference.\n", + "adjourned.\n", + "per.\n", + "by\n", + "planets.\n", + "turn.\n", + "way,\n", + "rd\n", + "women\n", + "the\n", + "the\n", + "with\n", + "ishnient.\n", + "it\n", + "e\n", + "state.\n", + "year.\n", + "donor.\n", + "r\n", + "executed.\n", + "Judge.\n", + "effected.\n", + "cruisers.\n", + "Bhreveport.\n", + "4c.”\n", + "to-da-\n", + "bosom\n", + "hers.\n", + "us.\n", + "renown.\n", + "Island.\n", + "d\n", + "Jlouse.\n", + "Ineversawaman\n", + "could\n", + "wet.\n", + "everything's\n", + "Louis.\n", + "present\n", + "returns.\n", + ".OOO\n", + "nil\n", + "!...<>\n", + "it.\n", + "prisoner,\n", + "1903.\n", + "Class.”\n", + "...\n", + "Weekly.\n", + "made\n", + "other\n", + "outstretched\n", + "$43,000\n", + "case.\n", + ":\n", + "rice.\"\n", + "ob|ec?.CS.,°\n", + "American.\n", + "(4)\n", + "dinner.\n", + "place.\n", + "tive.\n", + "ud-\n", + "months.\n", + "days.\n", + "place.\n", + "accession\n", + "to\n", + "boUhcvism\n", + "friend.\n", + "re-union.\n", + "ter\n", + "street.\n", + "1938.\n", + "hits.\n", + "29.\n", + "comparison.\n", + "is.\n", + "[\n", + "“\n", + "demonstrate.\n", + "thereto.\n", + "offspring.\n", + "the-\n", + "1\n", + "most\n", + "said\n", + "colonics.\n", + "lives.\n", + "tively.\n", + "sure.\n", + "sonslderatlon\n", + "committed.\n", + "witli\n", + "transport.\n", + "(Nev.)Enterprise.\n", + "BARNABE.\n", + "discharged.\n", + "to\n", + "e,\n", + "nearly\n", + "t\n", + "for.\n", + "cash.\n", + "nr-iK-\n", + "giave.\n", + "wifcrpoi\n", + "*eBult.\n", + "pose.\n", + "sun.\n", + "spakc:\n", + "remain\n", + "rights.\n", + "if\n", + "comment.\n", + "attention.\n", + "enormou\n", + "2.'\n", + "woodman\n", + "servation.\n", + "Matter.\n", + "Md.\n", + "hand.\n", + "cago,\n", + "desired.\n", + "so\n", + "County\n", + "best\n", + ".\n", + "'\n", + "affair.\n", + "confidence.\n", + "accepted.\n", + "sight.\n", + "settled.\n", + "way.\n", + "Missouri.\n", + "r,\n", + "ordinances\n", + "1\n", + "avenue.\n", + "isalts.\n", + ".\n", + "direction.\n", + "trucks.\n", + "»*>\n", + "In\n", + "John.\n", + "Department.\n", + "oyes.\n", + "?,.\n", + "as\n", + "l.s\n", + "-I\n", + "worth\n", + "promised.\n", + "hum-dru-\n", + "man.\n", + "endorsed\n", + "J.,\n", + "b\n", + "Mich.\n", + "eater.\n", + "welfare.\n", + "misery\n", + "i«*\n", + "game.\n", + "reduced.\n", + "Moses.\n", + "future.\n", + "advance?\n", + "service,\n", + "crops:\n", + "t\n", + "procured.\n", + "pendent.\n", + "making.\n", + "unknown.\n", + "market.\n", + "Theatre.\n", + "d\n", + "M.\n", + "settlement:\n", + "Press.\n", + "IMS.\n", + "mass\n", + "'localV*\n", + "mentioned.\n", + "73%c.\n", + "those.\n", + "today.\n", + "school\n", + "agriculture,\n", + "unwise.\n", + "one.'\n", + "millions.\n", + "made.\n", + "decisively.\n", + "earth.\n", + "thereor,\n", + "Atkin«m\n", + "precisely\n", + ".\n", + "inspection.\n", + "Pl'tff\n", + "people.\n", + "death.\n", + "States.\n", + "law;'\n", + "Herald:\n", + "respect.\n", + ".\n", + "Italian.\n", + "lot*.\n", + "coal\n", + "of\n", + "attendant.\n", + "rule.\n", + "\"nam?.\"\n", + "basket.\"\n", + "program.\n", + "said:\n", + "acquired\n", + "Journal.\n", + "M\n", + "dead.\n", + "$2;\n", + "done.\n", + "company.\n", + "ment,\n", + "WITH\n", + "ased\n", + "through\n", + "clubs.\n", + "wave\n", + "18\n", + "for\n", + "point.\n", + "S5.ni;:.\n", + "views.\n", + "bill.\n", + "evi-\n", + "again.\n", + "s-\n", + "work.\n", + "I'm\"\n", + "Congress.\n", + "^\n", + "ity.\"\n", + "ginner.\"\n", + "r\n", + "place.\n", + "witnesses,\n", + "church-\n", + "ers.\n", + "head.\n", + "J.,\n", + ".,\n", + "-\n", + "men.\n", + "thoughtful*\n", + "UM,Ul«a>\n", + "deficit.\n", + "amount\n", + "parade.\n", + "move.\"\n", + "Democrat.\n", + "and\n", + "ion.\n", + "surgery.\n", + "crows.\n", + "to.\n", + "in\n", + "Kansas.\n", + "Roy\n", + "remedy.\n", + "act.\n", + "shall\n", + "strikes.\n", + "continued.\n", + "table.\n", + "be.\"\n", + "navy.\n", + "a\n", + "ieed\n", + "tlierefbro,\n", + "of\n", + "to.\n", + "system.\n", + "ernoon.\n", + "Interests.\n", + "basis.\n", + "d\n", + "there.\n", + "tion.\n", + "another.\n", + "Advt.\n", + "trains.\n", + "a!\n", + "passenger.\n", + "Commlaaloner*.\n", + "lor-.\n", + "concolved.\n", + "shirt\n", + "uncover\n", + "district\n", + "energy,\n", + "perience\n", + "Shortell.\n", + "prospect.\"\n", + "Monday.\n", + "once.\n", + "forcements.\n", + "Allegheny.\n", + "$5.\n", + "1919.\n", + "-rupte-\n", + "«.\n", + "Illinois.\n", + "notea,\n", + "quarrels\n", + "Wade.\n", + "subject\n", + "Mrs\n", + "Acosta\n", + "spoliation.\n", + "ble.\n", + "g\n", + "~\n", + "-\n", + "yours.\n", + "niece.\n", + "umbrella.\n", + "dians.\n", + "return.\n", + "camps.\n", + "ownercl\n", + "dCalh*\n", + "scheme.\n", + "stadium.\n", + "Congress.\n", + "fwi«i.\n", + "travelingaisen-al-\n", + "W.\n", + "survives.\n", + "dur\n", + "u\n", + "story.\n", + "tent\n", + "would\n", + "duPont.\n", + "trouble.\n", + "stealing.\n", + "ago.\n", + "days.\n", + "regiment.\n", + ".'i?\n", + "others.\n", + "taw.\n", + "us.\n", + "'\n", + "right.\n", + "oramanheIs.\n", + "fatal.\n", + "military.\n", + "which\n", + "hymyownhand.\n", + "debt.\n", + "right.\n", + "kbUL\n", + "absurdity.\n", + ".\"\n", + "him.\n", + "Central.\n", + "soil.\n", + "ended.\n", + "passatrc.\n", + ".\n", + "done.\n", + "d\n", + "price,\n", + "urgent.\n", + "then\n", + "town!\n", + "S3.1\n", + "water.\n", + "reality.\n", + "-\n", + "country.\n", + "n-\n", + "Saulnier,\n", + ".\n", + "descending.\n", + "rtcnoaswd.\n", + "select.\n", + "praise.\n", + "expccta-\n", + "and.\n", + "proceed\n", + "s\n", + "extension.\n", + "jubilee.\n", + "lilteen.\n", + "counter.\n", + "one.\n", + "importance.\n", + ".\n", + "street.\n", + "years.\n", + "Hospital.\n", + "public,\n", + "Atlantic.\n", + "year*.\n", + "master:\n", + "ll'lSe.\n", + "UUO.UUU.\n", + "*9.\n", + "Mink.\n", + "\"\n", + "s\n", + "escaped.\n", + "PhoA\n", + "you.\"\n", + "covers.\n", + "flowers.\n", + "facilities.\"\n", + "rule.\"\n", + "facts.\n", + "tho\n", + "1891,\n", + "anxiety.\n", + "to\n", + "com\n", + ".\n", + "tbe\n", + "appeal.\n", + "the\n", + "Me.\"\n", + "rnther\n", + "livelihood.\n", + "?\"\n", + "floors.\n", + "IL\n", + "instances.\n", + "Moor.”\n", + "Detroit.\n", + "on.\n", + "uri\n", + "hi\n", + "colored\n", + "S.\n", + "pavement.\n", + "cneap.\n", + "work.\n", + "river.\n", + "confusion.\n", + "buildings.\n", + "Angnstly-beautiful-\n", + "cants.\n", + "d\n", + "iibtrology.\n", + "viz.:\n", + "distribution\n", + "wherein\n", + "June]!).\n", + "y\n", + "missioner.\n", + "command.\n", + "greet-\n", + "’’\n", + "-\n", + "Auditorium.\n", + "on\n", + "bler.\n", + "Cultivator.\n", + "they\n", + "letter\n", + "northwest.\n", + "ment.\n", + "-\n", + "quie\n", + "him.\n", + "them.\n", + "raised.\n", + "shaft.\n", + "it\n", + "therein.\n", + "can\n", + "Agent,\n", + "denizen.\n", + "tablished.\n", + "v\n", + "purchased,\n", + "him.\n", + "course.\"\n", + "war\n", + "kissed.\n", + "ing:\n", + "may\n", + "this\n", + "effort.\n", + "capstone.\n", + "minister.\n", + "laud.\n", + "future.\n", + "doomed.\n", + "philosopher.\n", + "roads.\n", + "people.\n", + "debt.\"\n", + "although\n", + "demanded\n", + "hands.\n", + "over,\n", + "r\n", + "quired,-'\n", + "Fitzsimmons-Pritchar-\n", + "i?j,d.\n", + "remedy.\n", + ".\n", + "growth.\n", + "as\n", + "Sr.u.\n", + ".\n", + "(lellglilcd\n", + ".\n", + "triple.\n", + "Sangston.\n", + "per-\n", + "it\n", + "g\n", + "driven\n", + "seen.\n", + "diaries.\n", + "corporations.\n", + "them.\n", + "ments.\n", + "postpaid.\n", + "tions.\n", + "extermination.\n", + "drowned.\n", + "t\n", + "gallows.\n", + "to\n", + "pan.\n", + "financed.\n", + "Century.\n", + "I\n", + "themeans\n", + "-\n", + "m.\n", + "o'clock.\n", + "1802.\n", + "inaugural.\n", + "utlons.\n", + "be\n", + "y.\n", + "effect\n", + "•v;.\n", + "o\n", + "Church.\n", + "Smith.\n", + "belt.\n", + "sailor.,\n", + "Medlfer-\n", + "again.\n", + "both.\n", + "cemetery.\n", + "time.\n", + "tbe\n", + "rules.\n", + "them.\n", + "groceries.\n", + "c\n", + "me.\n", + "umphantly.\n", + "sunbeam.\n", + "DallaaCo.,\n", + "officers\n", + "covered.\n", + "laws.\n", + "risen.\n", + "within.\n", + "rnment.\n", + "best.\n", + "MARTYR\n", + "which\n", + "supply.\n", + "road.\n", + "vain.”\n", + "good.\n", + "Nar-I\n", + "Sts.\n", + "was\n", + "second.\n", + "available.\n", + "evening.\n", + "uway.\"\n", + "Kitty!\n", + "one.\n", + "55\n", + "Incumbents.\n", + "of\n", + "girl.\n", + "fertilizer.\n", + "people\n", + "interior.\n", + "95.\n", + "pair,\n", + "sons\n", + "sweat,\n", + "e\n", + "lf\n", + "therein.\n", + "it\n", + "to\n", + "gentleman\n", + "it.\n", + "bottle.\n", + "officials.\n", + "question.\n", + "waters.\n", + "State.\n", + "laws.\n", + "Herald\n", + "had\n", + "West.\n", + "work\n", + "Vermonler.\n", + "resolution:\n", + "desirable.\n", + "21st.\n", + "Lincoln\n", + "Store.\n", + "months.\n", + "ordinance.\n", + "school.\n", + "It\n", + "state\n", + "Wilmington.\n", + "cnmpcm-ntioi-\n", + "possoselon.\n", + "11\n", + "l'\n", + "classes.\n", + "41\n", + "occurrence.\n", + "breeze.\n", + "war.\n", + "purposes.\n", + "aim.\n", + "ness.\n", + "{140,000,000\n", + "reply.\n", + "birth.\n", + "par\n", + "enduring.'\"\n", + "out\n", + "finished.\n", + "but\n", + "which\n", + "barrel.\n", + "teams.\n", + "s.nVI\n", + "the\n", + "complaint.\n", + "sorrow\n", + "Hoffecker.\n", + "lit.\n", + "by\n", + "was\n", + "possible.\n", + "safe-\n", + "instructions.\n", + "afterward.\n", + "seemed\n", + "about.\n", + "serious.\n", + "fighting.\n", + "deemed,\n", + "ages.\n", + "rule.\n", + "1860.\n", + "Jdn.\n", + "the\n", + "Hadlej.\n", + "ng\n", + "idea.\n", + "interest.\n", + "beginning.\n", + "remain.\n", + "vices.\n", + "perhaps,\n", + "bankers.\n", + "1)\n", + "extension.\n", + "tight.\"\n", + "only.\n", + "“\n", + "didate.\n", + "th\n", + "son*.\n", + "paper.\n", + "his\n", + "music.\n", + "disin-teime-\n", + "his\n", + "re\n", + "England.\n", + "route.\n", + "[Alta.\n", + "ordinance.\n", + "grade.\n", + "t\n", + "round.\n", + "Leonardt.\n", + "mischief,\n", + "grave.\n", + "$24.\n", + "merchandise.\n", + "action.\n", + "aforesaid.\n", + "Century.\n", + "did\n", + "Impies-slvo-\n", + "yet.\n", + "faith.\n", + "ton.\"\n", + "October\n", + "digestion.\n", + "death.\n", + "method.\n", + "waitress.\n", + "offences.\n", + "the\n", + "nour.\"\n", + "Rapublicaoa\n", + ":\n", + "Navy.\n", + "appear\n", + "vantages\n", + "them.\n", + "for\n", + "policy.\n", + "contract.”\n", + "adjourn.\n", + "crime.\n", + "a\n", + "speculators.\n", + "Cooper.\n", + "work.\n", + "shrine.\n", + "1877.\n", + "construction,\n", + "represent.\n", + "night.\n", + "damaged.\n", + "Christ.\"\n", + "chairman\n", + "stolen\n", + "~a.\n", + "past\n", + "delivery.\n", + "wound.\n", + "otherwise.\n", + "prosper\n", + "examination.\n", + "Hitters.\n", + "instruction.\n", + "fsalad-\n", + "remedy.\n", + "friends\n", + "World,\n", + "nutritious\n", + "Chapter,\n", + "war.\"\n", + "o\n", + "t'\n", + "certlflcales.\n", + "a\n", + "issued\n", + "wildcats.\n", + "advertising\n", + "century\n", + "school.\n", + "er.\n", + "an\n", + "Court.\n", + "thither.\n", + "that\n", + "politicians\n", + "understood.\n", + "Brigham,\n", + "^ashiiiKtou.\n", + "(SEAL)\n", + "raa-\n", + "fort.\n", + "things.\"\n", + "old.\n", + "rates.\n", + "line.\"\n", + "dcMdtw\n", + "rule.\n", + "stories.\n", + "Issue.\n", + "I\n", + "barbarism.\"\n", + "Montgomery\n", + "...\n", + ".\n", + "Home.\n", + "Congress,\n", + "esteem,\n", + "amirnach.\n", + "help.\n", + "nature\n", + "seems\n", + "cause.\n", + "Barker\n", + "i\n", + "the\n", + "occasion,\n", + "g\n", + "street;\n", + "ment:\n", + "death.\n", + "ladies!\n", + "men.\n", + "it\n", + "above.\n", + "is\n", + "so.\n", + "twlE.\n", + "brances.\n", + "Advocate.\n", + "simulation.\n", + "\"\n", + "e\n", + "?\n", + "I\n", + "canal.\n", + "blis\n", + "here.\n", + "Tuesday.\n", + "tory.\n", + "be\n", + "appoint­\n", + "has-\n", + "curds.”\n", + "author­\n", + "tim.\n", + "(¦mis\n", + "financially.\n", + "bard.,\n", + "order,\n", + "days.\n", + "\"\n", + "cor-\n", + "n\n", + "fo\n", + "tooth\n", + "common\n", + "edy.\"\n", + "r\n", + "exit.\n", + "be\n", + "Senate.\n", + ".\n", + "2\n", + "pose.\n", + "out.'\n", + "Congress.\n", + "Glory.\"\n", + "Chronicle\n", + "It\n", + "to\n", + "Sev-\n", + "them.\n", + "wrench.\n", + "leisure.\n", + "be.\n", + "evidences.\n", + "navy.\n", + "to-day.\n", + "gTMtlT.\n", + "dissipation.\n", + "date\n", + "m.\n", + "cirtificates\n", + "weal\n", + "west.\n", + "Appomattox.\n", + "miles.\n", + "utility.\n", + "up.\n", + "j\n", + "canyon.\n", + "error.\n", + "left.\n", + "Bolshevik\n", + "Transportation,\n", + "tho\n", + "living.\n", + "trial.\n", + "k-.\n", + "go\n", + "bounded.\n", + "churches.\n", + "o’clock.\n", + "resolvents.\n", + "the\n", + "Fislihigcrock..-\n", + "L\n", + "ISIMI\n", + "labor.\n", + "said:\n", + "aid.\n", + "order.\n", + "enormously.\n", + "reason.\n", + "year.\n", + "pos-\n", + "\\\\\n", + "mnn.\n", + "tinues.\n", + "board\n", + "mili\n", + "ones.\"\n", + "acquaintance\n", + "promised.\n", + "parts.\n", + "Tnecranwra\n", + "bidder.\n", + "vigor.\n", + "write.\n", + "property.\n", + "action.\n", + "suit.\n", + "gentlemen,\n", + "by.”\n", + "the\n", + "was,-\n", + "of\n", + "Agnes,\n", + "Racine.\n", + "Mamer.\n", + "heavy,\n", + "eto.\n", + "storv.\n", + "b\n", + "fitness.\n", + "College,\n", + "Intellectuals\n", + "maximum\n", + "man.\n", + "lasts.\n", + "the\n", + "from.\"\n", + "*\n", + "program.\n", + "cause.\n", + "fering.\n", + "Sun.\n", + "two\n", + "that\n", + "givci\n", + "carried\n", + "Adams\n", + "-\n", + "faces,\n", + "meeting.\n", + "boats.\n", + "installments\n", + "vantage.\"\n", + "tance.\n", + "her.\n", + "this\n", + "here.\n", + "in*.\"\n", + "Gazette.\n", + "s\n", + "it\n", + "meeting.\n", + "rooster\n", + "brick.\"\n", + "Agent,\n", + "World.\n", + "the\n", + "flesh.\"\n", + "Mifflin.\n", + "con-\n", + "speedily.\n", + "also.\n", + "etubjrrae\n", + "months.\n", + "1912,\n", + "groups.\n", + "them.\n", + "were\n", + "gov-\n", + "dent.\n", + "charges.\n", + "like.\n", + "bo-\n", + "acre.\n", + "1866.\n", + "painful.\n", + "domination.\n", + "county.\n", + "this\n", + "admirably.\n", + "work\n", + "Graphic.\n", + "tion.\n", + "cure.\n", + "be\n", + "ner.\n", + "y-tw-\n", + "employed.\n", + "here.\"\n", + "God.\n", + "»\n", + "means.\n", + "testation.\n", + "that?\n", + "noon.\n", + "games.\n", + "years.\n", + "(14)\n", + "crat.\n", + "jail.\n", + "both.\n", + "o\n", + "re—\n", + "were\n", + "!?\".\n", + "therefor.\n", + "fruitfulness.\n", + "nitnii,\n", + "shrritf.\n", + "Addlcks.\n", + "dol­\n", + "DEPARTMENT.\n", + "Job,\n", + "December,\n", + "a\n", + "despots,\n", + "Times.\n", + "time.\n", + "iMimiitfli\n", + "country,\n", + "museum.\n", + "reform.\n", + "t:\n", + "brother.\n", + "ence.\n", + "come.\n", + "(hem.\n", + "of\n", + "tervenes.\n", + "bins.\n", + "by\n", + "employed\n", + "laborer\n", + "January\n", + "north.\n", + "ored.\n", + "ores.\n", + "church.\n", + "bht\n", + "Palmer.\n", + "which\n", + "Sn\n", + "that\n", + "tales.\n", + "facilities.\"\n", + "times\n", + "environment.\n", + "tiser.\n", + "earth.\n", + "wl»?l«\n", + "emoluments.\n", + "which\n", + "sluice-\n", + "will\n", + "l\n", + "cop).\n", + "attendance.\"\n", + "fruits.\n", + "by\n", + "Conkllng.\n", + "noise.\n", + "croam.\n", + "political\n", + "de\n", + "sttat-\n", + "restaurant\n", + "which\n", + "him.\n", + "clear.\n", + "them.\n", + "test.\n", + "the\n", + "Kihn.\"\n", + "o\n", + "overwhelming.\n", + "streets.\n", + "Brown.\n", + "for\n", + ".\n", + "1917.\n", + "r\n", + "matter.\n", + "school.\n", + "now\n", + "'\n", + "merit.;\n", + "bettor.\n", + "hid.\n", + "officers\n", + "tomorrow\n", + "the\n", + "the\n", + "country.\n", + "demand.-\n", + "States.\n", + ";\n", + "structure.\n", + "p.\n", + "bliss.\n", + "ately.\n", + "de\n", + ",\n", + "the\n", + "camp.\n", + "$3,000,000.\n", + "business\n", + "Tribune:\n", + "cp.\n", + "city.\n", + "cure.\n", + "Jury.\n", + "roundings.\n", + "me.\n", + "duty.\n", + "politics.\"\n", + "putation\n", + "Max.\"\n", + "this.\n", + "interest\n", + "-\n", + "'\n", + "cattle.\n", + "all.\n", + "canal.\n", + "public\n", + "T.\n", + "*«\n", + "time.\n", + "in\n", + "aver\n", + "ruin.\n", + "I\n", + "and\n", + "them.\n", + "?\n", + "subject.\n", + "of\n", + "In.”\n", + "ramble.\"\n", + "d\n", + "mended,\n", + "explained.\n", + "husking.\n", + "rA\n", + "much.\n", + "destroyed.\n", + "the\n", + "-\n", + "many.\n", + "trw-Dr-\n", + "tnauuer.\n", + ".A»i,n\n", + "M.\n", + "delightful.\n", + "in\n", + "their-merr-\n", + "July,\n", + "-\n", + "them.\"\n", + "Mas­\n", + "tonishing.\n", + "uratiou.\"\n", + "erally.\n", + "values.\n", + "theoountry.\n", + "right.\n", + "thereof.\n", + "dollars.\n", + "house.\n", + "Josefa.\n", + "adopted.\n", + "elimination\n", + "Makpm,\n", + "b\n", + "morning\n", + "enter?\n", + "s\n", + "which\n", + "Philadelphia.\n", + "prosperity.\n", + "carried.out.\n", + "waru.\n", + "there.\n", + "1891,\n", + "4.\n", + "Congress\n", + "throughout\n", + "whisper.\n", + "developments\n", + "country.\n", + "con-\n", + "cc\n", + "into\n", + "consumption.\n", + "you.\n", + "time.\n", + "said\n", + "pound.\n", + "disorganized\n", + "o'clock.\n", + "taxed.\n", + "companions\n", + "success\n", + "means.\n", + "so\n", + "abadauLt.\n", + "State.\n", + "excursions.\n", + "All\n", + "band.\n", + "reside.\n", + "doctors.\"\n", + "management.\n", + "and\n", + "health.\"\n", + "haven.\n", + "d\n", + "operation.\n", + "suit.\n", + "with\n", + "and\n", + "system,\n", + "skill*.\n", + "office.\n", + "law.\n", + "A\n", + "rope.\n", + "Leady.\n", + "spent.\n", + "compared\n", + "a\n", + "most\n", + "--\n", + "surface.\n", + "-\n", + "'wife.\n", + "assumption.\n", + "instances.”\n", + "ight.\"\n", + "favor.\n", + "advance.\n", + "t\n", + "fering.\n", + "exercises.\n", + "detstood.\n", + "hand.\n", + "Britain\n", + "tai\n", + "cneap.\n", + "grain.\n", + "nt\n", + "»\n", + "iine.\n", + "rest.\n", + "J24-3t\n", + "permit.\n", + "avenue:\n", + "Hon.\n", + "inink\n", + "fast.\n", + "tor.”\n", + "was\n", + "action.\n", + "Ion.\n", + "follows:\n", + "infamy.\n", + "exceptions,\n", + "board.\n", + "Ac,\n", + "fession\n", + "Fairmont.\n", + "hearings.\n", + "speculation.\n", + "Lords.\n", + "bridge.\n", + "manner.'\n", + "signature.\n", + "by\n", + "will.\n", + "W\n", + "Borough.\n", + "re-\n", + "en\n", + "prepared\n", + "Europe\n", + "Commonwealth.\n", + "examina-\n", + "Shafer.\n", + "hungry.\n", + "UIUU\n", + "1\n", + "con-\n", + "pleased.\n", + "bad.\n", + "affair.\"\n", + "destroyed.”\n", + "dealings.\n", + "cess.\n", + "bouse.\n", + "Garrett,\n", + "«1.782\n", + "imported.\n", + "f-\n", + "sending-\n", + ",\n", + "granted.\n", + "society.\n", + "applause.]\n", + "river.\n", + "assignable.\n", + "Advocate.\n", + "field.”\n", + "Hamburg.\n", + "classified.\n", + "advantage.\n", + "the\n", + "Union.\n", + ".\"\n", + "witness-\n", + "session.\n", + "sleep.\n", + "prelcrred,\n", + "brain.\n", + "list.\n", + "army.\n", + "map.\n", + "them.\"\n", + "details.\n", + "htar-in-\n", + "town.\n", + "hue.\"\n", + "was\n", + "doubt.\n", + "painter.\n", + "6.\n", + "said,\n", + "Basin.\n", + "G:iz'tle\n", + "tho\n", + "appears-\n", + "1*.M*\n", + "later.\n", + "aim.\n", + "safe.\"\n", + "Weekly.\n", + "sense.\n", + "N.,\n", + "work.\n", + "circuinstan\n", + "Ridge,\n", + "few.\n", + "100,000.\n", + "they\n", + "substitute.\n", + "divorce.\n", + "Paper.\n", + "Piepenbrtng,\n", + "lorever.\n", + "needy.\n", + "Russia.\n", + "\"Five-Twenty-\n", + "•\n", + "music.\n", + "Ataine.)\n", + "possible.\n", + "hint.\n", + "work.\n", + "column.\n", + "S.\n", + "accounts,\n", + "tho\n", + "of\n", + "penalty.\n", + "old\n", + "two-thir-\n", + "to-day.\n", + "shrine.\n", + "believing.\n", + "rapidly.\n", + "eternity\n", + "Breckinridge.\n", + "wide.\n", + "papers\n", + "representative.\n", + "[Oheera.]\n", + "young.\"\n", + "C\n", + "documents.\n", + "meet-\n", + "s.\n", + "k\n", + "co.,\n", + "If\n", + "r\n", + "action.\n", + "veranda.\n", + "—\n", + "well.\n", + "power.\n", + "teresting.\n", + "nights.\n", + "1930.\n", + "fair-mind-\n", + "about\n", + "\"\n", + "lUtnamlnl,\n", + "to.\n", + "hai\n", + "on.\n", + "14%.:\n", + "atockhold\n", + "lives.\n", + "Inailments\n", + "so\n", + "consumption.\n", + "said\n", + "Services.\"\n", + "Polk!\n", + "a\n", + "appearance.\n", + "scene.\"\n", + "-,\n", + "llelknap.\n", + "1\n", + "cash.\n", + "prosperous.\n", + "g\n", + "superintendent's\n", + "stars.\n", + "county.\n", + "the\n", + "Ami\n", + "ven\n", + "Htraid.\n", + "time.\"\n", + "Unite\n", + "so.\n", + "\"\n", + "hibited.\n", + "\"\"\n", + "M.\n", + "\"\n", + "bosses.\n", + "that\n", + "d\n", + "settees,\n", + "American.\n", + "given.\n", + "sight.\n", + "the\n", + "hearing.\n", + "Skc.\n", + "w?»t-\n", + "Coinylaiut.\n", + "government.\n", + "great\n", + "triumphani.\n", + "friends.\n", + "minutes.\n", + "notes.\n", + "pelerfcy.\n", + "rearino-\n", + "me:\n", + "hv\n", + "1012\n", + "fall.\n", + "arooad\n", + "work\n", + "Bradley.\n", + "wel\n", + "fire.\n", + "people.\n", + "finely.\n", + "-\n", + "follows:\n", + "vandal.\n", + "time.\n", + "place.\"\n", + "knowledge.\n", + "woman\n", + "thence\n", + "t\n", + "it\n", + "seven.\n", + "prices.\n", + "prevail.\n", + "a\n", + "toilow.\n", + "wine.\n", + "thorn.\n", + "the\n", + "whereabouts.\n", + "pasted\n", + "2S°-.,\n", + "impregnable.\n", + "then.\n", + "-\n", + "widt\n", + "d\n", + "creditable\n", + "agent.\n", + "deavor.\n", + "collected.\n", + "severely.\n", + "forthcoming.\n", + "appear.\n", + "a\n", + "practice.\n", + "you.\n", + "brances.\n", + "Kenuett\n", + "1912.\n", + "Union.\"\n", + "possible.\n", + "ComImloner*.\n", + "«fcc.\n", + "was\n", + "advertisement\n", + "pig-\n", + "light.\n", + "M.\n", + "work.\n", + "stone.\n", + "bjdrug-\n", + "Clerk\n", + "Eagle,\n", + "Messrs.\n", + "000.\n", + "largest\n", + "night.\n", + "-\n", + "passed.\n", + "eagerly\n", + "e\n", + "required.\n", + "k\n", + "Castle.\n", + "$3.25?\n", + "such\n", + "possibilities,\n", + "Journal.\n", + "elevation.\n", + "renovate,\n", + "the\n", + "Tho\n", + ".\n", + "the\n", + "cemetery\n", + "n-\n", + "the\n", + "ard.\"\n", + "beyond?\n", + ".\n", + ".\n", + "thm\n", + "most\n", + "feet.\n", + "cheek.\n", + "known.\n", + "n\n", + "useless,\n", + "Marr\n", + ",7\n", + "Tribune\n", + "over.\n", + "slightly\n", + "Saturday\n", + "execution.\n", + "burn-\n", + "N.\n", + "autmal\n", + "holes.\n", + "acted,\n", + "Oregon.\n", + "servation.\n", + "be-\n", + "prevent\n", + "sort.\n", + "Mary\n", + "offer.\n", + "feet.\n", + ".\n", + "bushel.\"\n", + "for\n", + "Montgomery\n", + "pered:\n", + "he\n", + "Wheeling,\n", + "co-owner\n", + ":\n", + "railway.\n", + "es\n", + "gage.\n", + "il\n", + "(father-in-la-\n", + "Gundelflnger.\n", + "III.\n", + "ng\n", + "our\n", + "Jlotmil.\n", + "admiration.\n", + "him.”\n", + "thorn\n", + "professions.\n", + "felt.\n", + "¬\n", + "ih»\n", + "out-\n", + "her,\n", + "jecture.\n", + "service.\n", + "wood.\"\n", + "resort.\n", + "Butt**\n", + "shrine.\n", + "Instruction,\n", + "f\n", + "non.\n", + "up.”\n", + "WTIC,\n", + "sec.”\n", + "rt\n", + "flora.\"\n", + "business.\n", + "s\n", + "for\n", + "Hour*-\n", + "proteet\n", + "little\n", + "cheated\n", + "Result\n", + "»ked.\n", + "Telegram.\n", + "should\n", + "it\n", + "to8p.m.\n", + "v\n", + "wrong.\n", + "continent.\n", + "j\n", + "fire.\n", + "Cradock.\n", + "beer-garde-\n", + "automobile.\n", + "provid\n", + "tired.\n", + "readmittei\n", + "applause.\n", + "removed.\n", + "owners.\n", + "tl\n", + "their\n", + "have.\n", + "Pleas.\n", + "tions.\n", + "is\n", + "while,\n", + "Dawson.\"\n", + "Marne'.\n", + "call.\n", + "weeks.\n", + "M.\n", + "at\n", + "-\n", + "respect.\n", + "court.\"\n", + "Gazette.\n", + "wall.\n", + "water.\n", + "i,\n", + "1902.\n", + "employed.\n", + "excitement.\n", + "declined.\n", + "paid.\n", + "freedom.\n", + "toguardthr\n", + "as\n", + "position.\n", + "boxes.\n", + ".struggle.\n", + "Constitution.\n", + "lUalUc.\n", + "as\n", + "breakfast.\n", + "r-\n", + "lows:\n", + "slave-trade-\n", + "tenni.\n", + "to\n", + "more.\n", + ".\n", + "deserved.\n", + "reference.\n", + "world.\n", + "States\n", + "stantia-\n", + "expedient.\n", + "welcome.\n", + "bright\n", + "and\n", + "fice.\n", + "s\n", + "toe,\n", + "started.\n", + "Cuba.\n", + "taken.\n", + "Union.\n", + "that.\"\n", + "Nicaragua.\n", + "dition.\n", + "Newark.\n", + "andItoldhimsoandhesaidhe\n", + "d-\n", + "Ac.,\n", + "obligation.\n", + "Rivers.\n", + "happened.\n", + "possible.\n", + "loyally.\n", + "Union.\n", + "vessel.\"\n", + "me.\n", + "saries.\n", + "tliu\n", + "-\n", + "n\n", + "at\n", + "people.\n", + "brother,\n", + "civilization.\n", + "would\n", + "distress.\n", + "simplicity.\n", + "gentle\n", + "week.\n", + "state.\"\n", + "exactly.\n", + "Island\n", + "he\n", + "Ward.\n", + "our\n", + "-\n", + "cents!\n", + "cused.\n", + "s\n", + "s,\n", + "security.\n", + "school.\n", + "broad\n", + "to\n", + "Nov\n", + "Delaware,\n", + "Bonds.\n", + "o.\n", + "reality.\n", + "sound;\n", + "written.\n", + "5005peg\n", + "himself.\n", + "peace,\n", + "bereavement.\n", + "iiresular,\n", + "be\n", + "promises.\n", + "home.\n", + "over.\n", + "itself.\n", + "I).,\n", + "unfortunate\n", + "gogue.\n", + "the\n", + "contract\n", + "lrienu,\n", + "reported.\n", + "price.\n", + "enterprise.\n", + "of\n", + "game.\n", + "baud*,\n", + "American\n", + "this\n", + "want.\n", + "Jcpson\n", + "attempts.\n", + "however.\n", + "problem.\n", + "ilianki.\"\n", + "73\n", + "ago.\n", + "noon.\n", + "with\n", + "privilege.\n", + "railroads.\n", + "a\n", + "!\n", + "law.\n", + "muon.\n", + "place.\n", + "season.\n", + "grind.\n", + "ever\n", + "ground\n", + "Esq.\n", + "a\n", + "California.\n", + "of.\n", + "public.\n", + "weather.\n", + "vestigation.\n", + "summary:\n", + "feet.\"\n", + "heads.\n", + "'\n", + "nhaae.\n", + "ruWKiM\n", + "■,,'\n", + "for\n", + "by.\n", + "Calvin\n", + "charge.\n", + "mountains.\n", + "arc\n", + "of\n", + "larger,\n", + "debater.”\n", + "war.\n", + "said:\n", + "1370,\n", + "Chesapeake.\n", + ".\n", + "fort.\n", + "by\n", + "e\n", + "Is.\n", + "1903.\n", + "high.\n", + "UK,\n", + "majority.\n", + "and\n", + "result.\n", + "er\n", + "?\"\n", + "Lancaster,\n", + "slam.\"\n", + "(Signed)\n", + "Weekly.\n", + "'\n", + "tables.\"\n", + "Moines.\n", + "ObBorver,\n", + "one.\n", + "thought.\n", + "forfeited.\n", + "to\n", + "It\n", + "is\n", + "Chronicle.\n", + "it.\n", + "World.\n", + "d\n", + "way\n", + "night.\n", + "\"Congress.\"\n", + "hkeecape.\n", + "Calhoun',\n", + ".\n", + "should\n", + "the\n", + "and\n", + "1\n", + "elsewhere.\n", + "ion.\n", + "vonom\n", + "climate.\n", + "both.\n", + "Lawrence.\n", + "iionne-\n", + "co!\n", + "expedition.\n", + "contains.\n", + "and\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Burgess)\n", + "cheap.\n", + "ENOUGH\n", + ",\n", + "lor\n", + "by\n", + "over.\n", + "JAA41»\n", + "tory\n", + "belonging,\n", + "on\n", + "style:\n", + "L'XJK'IulitUrfH.\n", + "bill!\n", + "subscription\n", + "in-\n", + "crats.\n", + "them.\n", + "tho\n", + "velt\n", + "furnished.\n", + "acts.\n", + "ers.\n", + "wasted\n", + "Nevada,\n", + "harbor.\n", + "surrendered\n", + "see\n", + "knives.\n", + "evei\n", + "world:\n", + ".\n", + "Promotions.\n", + "\"\n", + "ways.\n", + "buried\n", + "extra.\n", + "J.\n", + "promote.\n", + "nay.\n", + "dr.\n", + "less.\n", + "'coop.'\n", + "Country.\n", + "wife.\n", + "rot.\"\n", + "calculated.\n", + "education.\n", + "person,\n", + "»\n", + "children.\n", + "ILLY,\n", + "Bear.\n", + "ways.\n", + "!«-\n", + "and\n", + "management.\n", + "ants.\n", + "commodity.\n", + "scenes\n", + "tribune.\n", + "wide-sprea-\n", + "costs.\n", + "success.\"\n", + "ter\n", + "indopen-deuce-\n", + "a\n", + "La'jle.\n", + "after\n", + "pose.\n", + "lauding.\n", + "llowers,\n", + "Hoursfrom9a.m..todr.m.\n", + "year.\n", + "Keswick's\n", + "forever\n", + "us,\n", + "witness\n", + "Spetoh\n", + "living-situation.\n", + "e\n", + ".\n", + "other.\n", + "helpful.\n", + "another.\n", + "exhib.:\n", + "best\n", + "so\n", + "animated.\n", + "says\n", + "arrests.\n", + "abiding\n", + "America.\n", + "¬\n", + "t\n", + "says:\n", + "efface.\n", + "hereafter.\n", + "fit.”\n", + "Iwentv-tdne\n", + "eorners\n", + "I.\n", + "the\n", + "night.\n", + "immediately.\n", + "law.\n", + "club.'\n", + "editors.\n", + "McDonough\n", + "Stomp,\"\n", + "?\n", + "as\n", + "erty.\"\n", + "evening,\n", + "manafar-\n", + "C.\n", + "distress.\n", + "(SKAL.I\n", + "States.\n", + "without.\n", + "e\n", + "school.\n", + "dealers.\n", + "gs\n", + "thing.\n", + "names.\n", + "fo\n", + "opposed.\n", + "parent\n", + "greatly\n", + "ber\n", + "lce.\n", + "their\n", + "privilege.\n", + "Cost*.\n", + "Wlikes-Barr-\n", + "Sentinel.\n", + "13.\n", + "Patriot.\n", + "night.\n", + "under\n", + "war.\n", + "com-\n", + "tion.\n", + "y\n", + ".\n", + "victim\n", + "sharks.\n", + "by\n", + "day.\n", + "graved.\n", + "other\n", + "one\n", + "Department.\n", + "the\n", + "Trado\n", + "monuments\n", + "accident.\n", + "port.\n", + "anticipated.\n", + "through\n", + "society.\n", + "soon.\n", + "llechuanas.\n", + "holidays\n", + "rr\n", + "insisted\n", + "snry,\n", + "Tribune.\n", + "can\n", + "father-in-la-\n", + "hoards.\n", + "Assembly.\n", + "e\n", + "fortunate.\n", + "East.\n", + "Gregory,\n", + "floners\n", + "more\n", + "These\n", + "stove.\n", + "overabundance\n", + "a\n", + "your-icou-\n", + "period.\n", + "ago.\n", + "them.\n", + "tug.\n", + "them.\n", + "work.\n", + "tbo\n", + "s\n", + "here.\n", + "semi-annuall-\n", + "tion.\n", + "desirable.\n", + "country.\n", + "board\n", + "cincts.\n", + "President.\n", + "lf\n", + "period.\n", + "pit.\n", + "sleep.\n", + "here.\"\n", + "do,\n", + "a\n", + "cousin\n", + "lookout.\n", + "days.\n", + "wages?\"'\n", + "DosAngcs,\n", + "t\n", + "female,\n", + "him.\n", + "Secretary\n", + "Sampson.\n", + "A\n", + "time.\n", + "President?\n", + "lost.”\n", + "mistross.\n", + "vote.\n", + "tearful.\n", + "Juneau.\n", + "you?\n", + "concerned.\n", + "perseverence.\n", + "a\n", + "Amrrian.\n", + "flattery.\"\n", + "market.\n", + "love.\n", + "years.\n", + "battle:\n", + "oi\n", + "without\n", + "-\n", + "papers\n", + "wealthy.\n", + "Newt.\n", + "tin.\n", + "Interest\n", + "fashion\n", + "togetner,\n", + "lution^\n", + "shore.\n", + "re-\n", + ".\n", + "lectators.\n", + "death.\n", + "such\n", + "betteer.\n", + "control.\n", + "thereof.\n", + "standing\n", + "nt\n", + "crystal.\n", + "payroll.\n", + "opinion.\n", + "is\n", + "’\n", + "membership.\n", + "Keehn.\n", + "premises.\n", + "people,\n", + "suspended\n", + "name.\n", + "deserted,Ibrlio\n", + "consumption.\n", + "not\n", + "accruing\n", + "Hepnblio,\n", + "iury.\n", + "as\n", + "shrine.\n", + "H\n", + "world/'\n", + "revoked,\n", + "points.\n", + "hand.\n", + "Porcupine\n", + "ago.\n", + "reasonable.\n", + "were\n", + "geese.\n", + "there,\n", + "geography.\n", + "fering.\n", + "etc.,\n", + "-w-\n", + "\"cause.\"\n", + "ble\n", + "in\n", + "Observer.\n", + "15,1888.\n", + "fire.\n", + "standpoint.\n", + "and\n", + "iut-.\n", + "accident\n", + "contented.\n", + "she\n", + "s\n", + "Dukes.\n", + "fur.\n", + "s,\n", + "rifle.\n", + "some\n", + "panies\n", + "drive.\n", + "i\n", + "roads.\n", + "the\n", + "it.\n", + "Science.\n", + "lion.\n", + "f,\n", + "to\n", + "be-\n", + "ty\n", + "u-\n", + "In.\"\n", + "-\n", + "to\n", + "reach\n", + "provided-\n", + "convention.\n", + "line.\n", + "4th\n", + "achieve¬\n", + "Gazette.\n", + "*50.000.\n", + "methods.\n", + "nodded.\n", + "two\n", + "vassals\n", + "origin.\n", + "sword.\n", + "Loos.\n", + "Paris\n", + "6\n", + "Record.\n", + "'2o.\n", + "<\n", + "ear.\"\n", + "stated.\n", + "people\".\n", + "investigation,\n", + "attraction.\n", + "highways.\n", + "court.\n", + "senseless!\n", + "Magazine.\n", + "ashes.\n", + "once\n", + "quences.\n", + "corners.\n", + "are\n", + "city.\n", + "school\n", + "dis-\n", + "leader.\n", + "Slates\n", + "spring.\n", + "potior.\n", + "the\n", + "beginning.\n", + "ford*.\n", + "14.\n", + "us.\n", + "disgust.\n", + "fork\n", + "launched.\n", + "cc\n", + "market.\n", + ".\n", + "fee\n", + "etc.\n", + "now.\"\n", + "rate\n", + "it.\n", + "4.\n", + "oliM-rvi-\n", + "notwithstanding.\"\n", + "High.\n", + "back.\n", + "habit.\n", + "taller.\n", + "candidate.\n", + "doctors.\"\n", + "just.\n", + "work.\n", + "hi-\n", + ".\n", + "We\n", + "fair\n", + "cards.\n", + "banks\n", + "X.\n", + "terrible.\n", + "-\n", + "tlon.\n", + "ago,\n", + "city.\n", + "water.\n", + "when\n", + "anybody.\n", + "cease.\n", + "telescopes\n", + "said\n", + "circumstance,\n", + "coun­\n", + "s\n", + "Iceland\n", + "advancing.\n", + "Prineviile.\n", + "remedy.\n", + "say.\n", + "on-\n", + "Mr.\n", + "carried.\n", + "paid,\n", + "future.\"\n", + "graced.\n", + "truth.\n", + "yeat--\n", + "?”\n", + "preserves\n", + "such\n", + "home.\n", + "d\n", + "waa\n", + "phy.\"\n", + "Times:\n", + "in-\n", + "footprints\n", + "funeral.\n", + "present.\n", + "crossing\n", + "robber,\n", + "diamonds\n", + "sort.\n", + "friends\n", + ":\n", + "Times.\n", + "Post.\n", + "societies.\n", + "hunger,\n", + "avarice.\n", + "it.\n", + "right*\n", + "e\n", + "taken.\n", + "\"liome-tralner-\n", + "again.\n", + "conception.\n", + "good.\n", + "Science.\n", + "feeling.\n", + "remarked,\n", + "Smith.\n", + "present.\n", + "ingredients.\n", + "pre-\n", + "ju\n", + "sold:\n", + "580pm.\n", + "ten-\n", + "somo-\n", + "lf\n", + "shall\n", + "Mexican\n", + "life.\n", + "cure.\n", + "married\n", + "high-cla-\n", + "day.\n", + "a\n", + ",\n", + "me.\n", + "lino\n", + "spot.\n", + "at-\n", + "by\n", + "aeason.\n", + "accepted.\n", + "justice.\n", + "The\n", + "nations.\n", + "away.\n", + "to.\n", + "Cal.,\n", + "country.\n", + "confessed.,\n", + "issue.\n", + "end.\n", + "al\n", + "Christ.\n", + "Auguit\n", + "nations.\n", + "c\n", + "trackage.\n", + "mine-\n", + "desperado.\n", + "won.\n", + "thereby.\n", + "ravenous.\n", + "shot.\n", + "newspapers\n", + "b62.\n", + "suf-\n", + "are\n", + "friends\n", + "defrauded.\n", + "contracted.\n", + "lesson.\n", + "remunerative\n", + "Kempls:\n", + "institutions.\n", + "icate.\n", + "y\n", + "pleasant.'\n", + "continuously.\n", + "tell.\n", + "goest.\n", + "producer.\n", + "thank\n", + "•\n", + "States.\n", + "cured.\"\n", + "Navy\n", + "M.\n", + "asser\n", + "Judgment\n", + "course.\n", + "1862.\n", + "township\n", + "case.\n", + ".\n", + "y\n", + "a\n", + "made.\n", + "made.\n", + "n\n", + "acres,\"\n", + "them.\n", + "wonderlngs.\n", + "mind\n", + "collts-tlv-\n", + "ter.\n", + "nature.\n", + "tion.\n", + "improved.\n", + "the\n", + "\"\n", + "to-w-\n", + "Paper,\n", + "broidery.\n", + "the\n", + "X'llt.\n", + "an\n", + "often.\n", + "that\n", + "of\n", + "cemetery.\n", + "depression\n", + "\"\n", + "it.\n", + "hotel.\n", + "IS\n", + "a\n", + "m.\n", + "render.\n", + "back-\n", + "themselves.\n", + "c-\n", + "a\n", + "*ore’\n", + "companies.\n", + "the\n", + "”\n", + "manner.\n", + "tha\n", + "Granger.\n", + "difficol'7>\n", + "Lake\n", + "placed\n", + "lf\n", + "for\n", + "lllll\n", + ".\n", + "learn.\n", + "so.\n", + "the\n", + "-\n", + "again.\n", + "sec-\n", + "tlmo.\n", + "isfied.”\n", + "'\n", + "GrIL\n", + "government.\n", + "democrats,\n", + "pit.\n", + "even.\n", + "McCausland.\n", + "consideration.\n", + "fragments.\n", + "the-\n", + "Colombia\n", + "defendant.\n", + "like\n", + "outrage-\n", + "yours.\n", + "Adjourned.\n", + "1\n", + "church.\"\n", + ",\n", + "People.\n", + "STORY\n", + "revolver\n", + "contract\n", + "-\n", + "nttii-\n", + "Adjourned.\n", + "him.\"\n", + "dee.\"\n", + "mous.\n", + "bars\n", + "24:10.\n", + "inde-\n", + "road.\"\n", + "is.\n", + "a.\n", + "-\n", + "remedy.\n", + "in\n", + "s\n", + "match.”\n", + "Laughter.\n", + "that\n", + "aforeiaii’,\n", + "accident.\n", + "—Exchange.\n", + "and\n", + "whiter.\n", + "frc--\n", + "week.\n", + "party.\n", + "Collins\n", + "st\n", + "•\n", + ".\n", + "departure.\n", + ";\n", + "stock-raisin-\n", + "of\n", + "large.\n", + "completed\n", + "wrong.\n", + "mines.\n", + "outside.\n", + "lower\n", + "avoided.\n", + "me\n", + "means.\n", + "Hcdjuz,\n", + "tier?\n", + "towns—wht'je\n", + "quality.\n", + "cure.\n", + "which,\n", + "ever.\n", + "of\n", + "shall\n", + "\"\n", + "—Am,\n", + "bellovo\n", + "14.\n", + "im-\n", + "expenses.\n", + "called\n", + "43,4■\n", + "Herald.\n", + "rain,\n", + "mo-\n", + "money-mak-\n", + "celebration.\n", + "es\n", + "-\n", + "miles.\n", + "friends.\n", + "m.\n", + "their\n", + "dustry,\n", + "opposition.-\n", + "damage.\n", + "atten-\n", + "ance\n", + "bargain,?\n", + "17.\n", + "yourself.\n", + "no\n", + "M\n", + "allirmod.\n", + "yours,\n", + "the-\n", + "enjoyed.\n", + "Taj.\n", + "largely.\"\n", + "d\n", + "pl-\n", + "vore.\n", + "march.\n", + "houses.\n", + "onth■\n", + "nfitasfwl\n", + "1876.\n", + "44.\n", + "tense\n", + "times.\n", + "or\n", + "1878.\n", + "23\n", + "accommodations.\n", + "Tops-ha-\n", + "such\n", + "hats.\n", + "doc-\n", + "plant.\"\n", + "e\n", + "he\n", + "truth.\n", + "him\n", + "PUUH,\n", + "SOUTH\n", + "it.\"\n", + "-ce\n", + "at\n", + "are\n", + "granjes.\n", + "co-couuaei.\n", + "former.\n", + "of\n", + "it\n", + "prayed.\n", + "mentioned,\n", + "them.\n", + "1890.\n", + "m,\n", + "ery.\n", + "full.\n", + "votes.\n", + ">\n", + "flna\n", + "Inent.\n", + "revc-\n", + "75\n", + "lefL\n", + "repealed.\n", + "toQO.\n", + "camps.\n", + "herder.\n", + "Centre.\n", + "error.\n", + "mommy\n", + "School.\n", + "Week.\n", + "sea.\n", + "night.\n", + "troops.\n", + "work,and\n", + "serv't\n", + "production.\"\n", + "clBe.\n", + "majority.\n", + "holidays.\n", + "year.\n", + "d\n", + "cients.\n", + "&c.,\n", + "1893.\"\n", + "chargo\n", + "cattle.\"\n", + "Now\n", + ".\n", + "on.\"\n", + "executive\n", + "goods.\n", + "Asam.\n", + "property.\n", + "p\n", + "have\n", + "analgin*.\n", + "the\n", + "kc.\n", + "$700,000,000.\n", + "taklrg\n", + "it,\n", + "wan\n", + "ioint.\n", + "cause.\n", + ".!\n", + "f<\n", + "h\n", + "quantities.\n", + "services\n", + "when.\n", + "*t\n", + "tea,\n", + "ments.\n", + "ngovern-\n", + "state.\n", + "Post.\n", + "city.\n", + "In-\n", + "charges.\"\n", + "trip.\n", + "2.\n", + "a\n", + "tho\n", + "yet.\n", + "race.\n", + ",\n", + "postage.\n", + "thanksgiving\n", + "that;,\n", + "was\n", + "190D.\n", + "York.\n", + "abdomen,\n", + "conventions\n", + "back.\n", + "Affiux.\n", + "baken,\n", + ":\n", + "sites.\n", + "wa-\n", + "io-\n", + "msgizines.\n", + "time.\n", + "alone,\n", + "craiy.\"\n", + "drugs.\n", + "liking.\n", + "season.\"\n", + "tower.\n", + ".\n", + "silenced.\n", + "from.\n", + "court;\n", + "Alaska.\"\n", + "effective.\n", + "neck.\n", + "not\n", + "paid.\n", + "short\n", + "Esq.\n", + "herein.\n", + "thorti.\n", + "l\n", + "void.\n", + "over.\n", + "difficulty.\n", + "it.\n", + "cities.\n", + "Investigate\n", + "confusion.\n", + "insurance\n", + "otm.\n", + "t\n", + "since.\n", + ".\n", + "away.\n", + "bers.\n", + "Harding,\n", + "fear.”\n", + "persevering,\n", + "Philippines.\n", + "alley,\n", + "house.\n", + "ores.\n", + ".\n", + "easier\n", + "Wot\n", + "him.\n", + "treatment\n", + "tbe\n", + "flub;\n", + "patriotism.\n", + "cheap.\n", + "boa\n", + "....\n", + "for\n", + "cordingly.\n", + "1\n", + "lAdtfree..\n", + "land.\n", + "a,\n", + "glory.\n", + "ao\n", + "aloe\n", + "grain.\n", + "him.\n", + "demanded.\n", + "John\n", + "cash.\n", + ".\n", + "Bussians.\n", + "expenditures.\n", + "forenoon.\n", + "weak.\n", + "sarcastically.\n", + "state.\n", + "of\n", + "N.Y.\n", + "Ms.\n", + "s\n", + "on\n", + "him\n", + "lake.\n", + "per-\n", + "cial.\n", + "Lorraine.\n", + "th\n", + "husband\n", + "\"Deaconesses.\"\n", + "—I'hicai/o\n", + "$75.\n", + "o\n", + "it.\n", + "!\n", + "them.\n", + "satisfied.\n", + "rifle.\n", + "trfct.\n", + "liberal\n", + "rules!\n", + "printer.\n", + "spring.\n", + "four\n", + "are\n", + "that\n", + "fair.\n", + "governor-elect.\n", + "advantages.\n", + "specifications\n", + "localities.\n", + "midnight.\n", + "explanatory\n", + "1852.\n", + "ino.\n", + "presents.\n", + "wharfage.\n", + "rs\n", + "cu\n", + "of\n", + "15\n", + "paper.\n", + "it.\n", + "experience.\n", + "vacation.\n", + "are.\"\n", + "goods.\n", + "home\n", + "bear-tra-\n", + "themselves,\n", + "besides.\n", + "Labor..\n", + "I\n", + "hits.\n", + "admitted\n", + "full\n", + "trT\"\"\n", + "to\n", + ">\n", + "rough.\"\n", + "verse\n", + "approve.\n", + "intheh11.\n", + "Pickett.\n", + "on\n", + "doubtful\n", + "revive^ller,\n", + "pan\n", + "busi¬\n", + "remarks:\n", + "fail\n", + "hand.\n", + "thcui.\n", + "ago.\n", + "g\n", + "defeated.\n", + "Wo\n", + "-\n", + "investigating\n", + "pounds.\n", + "!\n", + "commissioners.\n", + "inten-\n", + "Rankin\n", + "single-dro-\n", + "Shorten.\n", + "five\n", + "seven\n", + "schools.\n", + "stored.\n", + "conveyed.\n", + "to\n", + "mission\n", + "up.\"\n", + "timbers.\n", + "remedy.\n", + "a\n", + "copy.\n", + "followsi\n", + "Home.\n", + "beginning.\n", + "\"Darling,\n", + "Comuion-\n", + "above.\n", + "Taxes\n", + "gloom\n", + "In.\n", + "writing.\"\n", + "day.\n", + "corrected.\"\n", + "Gregg,\n", + "tho\n", + "vested.\n", + "him.\n", + "havo\n", + "again.\n", + "$1,155,000.\n", + "Newark.\n", + "profess.\n", + "follows:\n", + "having.\n", + "members?\n", + "of\n", + "It\n", + "Men.\"\n", + "copy.\n", + "truly,\n", + "integrity.\n", + "system.\n", + "follows:\n", + "now\n", + "army.\n", + ")\n", + "went.\n", + "expected.\n", + "2\n", + "center.\n", + "llrvi\n", + "Secretary.\n", + "tho\n", + "virtues.\n", + "1840.\n", + "God-Saviour.\n", + "God.\n", + "eat.\n", + "Oroville,\n", + "county.\n", + "live.\n", + "party,\n", + "globe\n", + "ar*\n", + "congregation.\n", + "bearing\n", + "!».\n", + "above\n", + "ideas\n", + "prayed.\n", + "Bluffs.\n", + "investigation.\n", + "traveler.\n", + "oil\n", + "fines.\n", + "oiteus.\n", + "disposal.\n", + "fol-\n", + ";\n", + "w&y\n", + "blood\n", + "dance\n", + "protection.\n", + "Californian.\n", + "almost\n", + "them.\n", + "rot-\n", + ".Mr.\n", + "pag.--\n", + "purchaser.\n", + "each\n", + "penalties.\n", + "dismissed.\n", + "denoted\n", + "excuse.\n", + "o\n", + "Herald.\n", + "Gentleman.\n", + "success.\n", + "it.\n", + "methods.\n", + "factory.\n", + "St.\n", + "tion.,\n", + "an\n", + "P.\n", + "cause.\n", + "Septembers.\n", + "log.\n", + "the\n", + "70^\n", + "them.\n", + "ninth.\n", + "ation.\n", + "beat.\n", + "situations.\n", + "for\n", + "oi\n", + "Ghost.\"\n", + "with\n", + "Cross.\n", + "troops.\n", + "avoided.\n", + ",\n", + "sacrifice\n", + "former.\n", + "\"Othello\"\n", + "Philadelphia.\n", + "power.\n", + "would\n", + "gb\n", + "y\n", + ".\n", + "chief.\n", + "Nicholaieviteh.\n", + "tho\n", + "tiling.\n", + "brnshlng.\n", + "city.\"\n", + "consum\n", + "reform.\n", + "inteuiioti.\n", + "bricklaying.\n", + "forfeited.\n", + "mate.\n", + "them.\n", + "elected\n", + "Oroville,\n", + "terms.\n", + "e\n", + "order.\n", + "old\n", + "favor.\n", + "them.\n", + "out.\n", + "consumption.\n", + "a.\n", + "e\n", + "°r\n", + "trade.\"\n", + "$1.\n", + "just.\n", + "two\n", + "charge.\n", + "adopted.\n", + "nation.\n", + "tion.”\n", + "lew\n", + "beginning.\n", + "worth.\n", + "Wood.\n", + "business.\n", + "IbOo.\n", + "l.\n", + "Iowa..\n", + "destruction\n", + "to\n", + "Interment\n", + "a\n", + "Country,\n", + "says.\n", + "these\n", + "field.\n", + "on.\n", + ",\n", + "water.\n", + "gether.\n", + "Trustees.\n", + "office.\n", + "said:\n", + "arrived.-\n", + "wares?\"\n", + "operations.\n", + "going.\n", + "a\n", + "thl\n", + "consideration.\n", + "r.\n", + "are!\n", + "done.\n", + "rules.\n", + "specimen,\"\n", + "altetnoon.\n", + "\"\n", + "aud\n", + "mentioned.\n", + "How?\n", + "cured.\"\n", + "mention.\n", + "Tur\n", + "shrieking,\n", + "And\n", + "city.\n", + "to-day.\n", + "politics,\n", + "an\n", + "Newark.\n", + "ordeal.\n", + "primary.\n", + "men,\"\n", + "d\n", + "them.\n", + "...\n", + "wit:\n", + "?\n", + "mind\n", + "plasters.\n", + "there.\n", + "resource*.\n", + "Yours,\n", + "him.\n", + "district\n", + "ican.\n", + "west.'''\n", + "opportunities\n", + "infinitum.\n", + "by.”\n", + "devices.\n", + "health.\n", + "course,\n", + "voters.\n", + "nlfi'clnd.\n", + "a\n", + "of\n", + "ss\n", + "Passaic\n", + "Express.\n", + "he\n", + "wh\n", + "prisonment.\n", + "Trustees.\n", + "j,\n", + "appurtenances.\n", + "p-\n", + "color.\n", + "tentiary.\n", + "commerce.\n", + "named.\n", + "occurred.\n", + "behalf.\n", + "Science.\n", + ".\n", + "branch\n", + "as\n", + "attended.\n", + "legislation.\n", + "\"effective.\"\n", + "sil\n", + "I\n", + "nt,\n", + "luth.\n", + "friends\n", + "Hannah.\n", + "Department.\n", + "banks.\n", + ",0c\n", + "him*\n", + "Edith,\n", + "law.\n", + "the\n", + "their\n", + "y,\n", + "harm.\n", + "ins.'\n", + "nominated.\n", + "answer.\n", + "degree.\n", + "drifted.\n", + "Ostf-ta-\n", + "nationalities.\n", + "n.e\n", + "n»A>..J!.\n", + "sides.\n", + "$2,250,000.\n", + "lodge.\n", + "described:\n", + "Fos\n", + "M.\n", + "state\n", + "e\n", + "the\n", + "or\n", + "--\n", + "da\n", + "indigestion.\n", + "continued:\n", + "K\"venuuonl.\n", + "court.\n", + "tion.\n", + "Kllevlts\n", + "man.\n", + "told.\n", + "numb'--\n", + "were\n", + "carpet-baggers.-\n", + "quality.\n", + "on\n", + "events\n", + "more.\n", + "'twos.\"\n", + "Idler.\n", + "roots.\n", + "ginning.\n", + "world\n", + "in\n", + "remedv.\n", + ">.\n", + "Bi.ll.\n", + "Presldeot-\n", + "died?\"\n", + "supervisors.\n", + "Cascades.\n", + "twelve\n", + "Atlantic.\n", + "Glentworth.\n", + "nationality.\n", + "up?\n", + "r(\n", + "one.\n", + "to-morrow.\n", + "News.\n", + "vance.\n", + "e\n", + "tustc.\n", + "Herald.\n", + "show.\n", + "the\n", + "de-\n", + "Bottomley.\n", + "estate.\n", + "bargain.\n", + "He\n", + "list.\n", + "strikes,\n", + "No.\"\n", + "beginning.\n", + "mio-\n", + "did.\n", + "the\n", + "1860.\n", + "right.\n", + "renown.\n", + "co.,\n", + "relense.\n", + "Micbigau.\n", + "5\n", + "country.\n", + "tor\n", + "house.\"\n", + "avenue.\n", + "conference.\n", + "o\n", + "undischarged.\n", + "gamuts.\n", + "time.\n", + "supporters.\n", + "copy.\n", + "conipauies.\n", + "minutet.\"\n", + "Number.\n", + "the\n", + "again,\n", + "lea.\n", + "1:474.\n", + "regretted\n", + "thence\n", + "district.\n", + "cation.\n", + "d\n", + "statements.\n", + "Lyra,\n", + "short-live-\n", + "f\n", + "s-.\n", + "a-\n", + "cats.\n", + "d,\n", + "product,\n", + "work.\n", + "absurdity\n", + "SOft.\n", + "city.\n", + "Times.\n", + "the\n", + "hut.\n", + "Veterans.\n", + "income!\n", + "y\n", + "year.\n", + "minister.\n", + "filing.\n", + "Press.\n", + "them.\n", + "sad\n", + "S.\n", + "to!d\n", + "known.\n", + "to.\"\n", + "often\n", + "tbe\n", + "dealers.\n", + "Jcnn\n", + "less.\n", + "pression.\n", + "expected.\n", + "members\n", + "sustain\n", + "r-\n", + "claimants.\n", + "P.\n", + "order.\n", + "had\n", + "'\n", + "seventies.\n", + "authorizing\n", + "notice.\n", + "self-government.\n", + "Street.\n", + "redressed.\n", + ",\n", + "Appleby\n", + "seed.\n", + "places.\n", + "wisdom.\n", + "removed.\n", + "kinds\n", + "Virginia.\n", + "7a9%c.\n", + "away.\n", + "tin\n", + "Center.\n", + "clerk.\n", + "loving,\n", + "y\n", + "now.\n", + "it\n", + "continued.\n", + "tli\n", + "vision,\n", + "Int.\n", + "Investigations,\n", + "the\n", + "nillllu.\"\n", + "b-\n", + "pioneer.\n", + "ed.\n", + "Tobeauroliolathoh\n", + "pjndlcutc.\n", + "others.\n", + "cusable.\n", + "other\n", + "con*\n", + "stomachs.\"\n", + "borer.\n", + "ships.\n", + "are\n", + "youngsters.\n", + "the-\n", + "Record.\n", + "Tiki\n", + "on.—Southron\n", + "complaint.\n", + "\\\\\n", + "her.\n", + "remedy.\n", + "neighbors.\n", + "own\n", + "children.\"\n", + "Tobolsk.\n", + "our\n", + "U.I\n", + "from.\n", + "centuries.\n", + "pigeons.\n", + "Brown's.\n", + "emetic.\n", + "plays.\n", + "disclosed.\n", + "itr\n", + "money.\n", + "ways.\n", + "discovered,\n", + "man\n", + "Iniallmetita\n", + "calls.\n", + "election.\n", + "exclaiming.\n", + "BarrlngtonBrown\n", + "said,\n", + "was\n", + "nityasafeme’\n", + "\"Gee,\n", + "lazy.\n", + "story.\n", + "era.\"\n", + "again,\n", + "Harrl-\n", + "Sim.\n", + "walls.\n", + "Jr.,\n", + "scandal.\n", + "ers\n", + "ringing.\n", + "police.\n", + "ones.\n", + "the\n", + "er\n", + "nence.\n", + "them.\n", + "tr\n", + "trap.\n", + "people.\n", + ".\n", + "hlr\n", + "ployment.\n", + "hills.\n", + "•\n", + "aforesaid\n", + "E.VzS.E.\n", + "1917.\n", + "it.\n", + "Thurmont\n", + "harm.\n", + "afford.\n", + "life.\n", + "moments.\n", + "home!”\n", + "purpose.\"\n", + "earth.\n", + "purpose.\n", + "In.\n", + "While\n", + "perlenced.\n", + "salo.\n", + "of.\n", + "it.\n", + "on\n", + "minimum.\"\n", + "Burgess)\n", + "Territory.\n", + "Lothian\n", + "hand.\n", + "life.\n", + "yachtsmen\n", + "taken.\n", + "person.\n", + "M.\n", + "motions.\n", + "rivalry\n", + ",\n", + "other.\n", + "ous\n", + "prosjierity.\n", + "Abbott.\n", + "gone.\n", + "claims.\n", + "morality.\n", + "de\n", + "Co.\n", + "foothills.\n", + "ult.\n", + "Proctor.\n", + "ii.\n", + "End.\n", + "heed.\n", + "T\n", + "Commissioner\n", + ".\n", + "others.\n", + "able-bodi-\n", + "lOWL.\n", + "filing.\n", + "transfer.\n", + "pig.\n", + "life\n", + "1,000.\n", + "g\n", + "crime.\n", + "brothers.\n", + "atTVVc\n", + "the\n", + "little.\n", + "dc-\n", + "s\n", + "he\n", + "cure.\n", + "fund.\n", + "of\n", + "manner\n", + "7\n", + "Post.\n", + "avoided.\n", + "it.\n", + "over.\n", + "Advocate\n", + "population.”\n", + "box.\n", + "Patriot.\n", + "in\n", + "failure.\n", + "backers.\n", + "affection.\n", + "Office.\n", + "have.\n", + "--\n", + "setting.\n", + "ailment.\n", + "long.\n", + "ta\n", + "justified.\n", + "Con\n", + "In\n", + "taW\n", + "yet.\n", + "fruit.\n", + "diseases.\n", + "exposed.\n", + "them.\n", + "servant,\n", + "geiu'ratlou.\n", + "Justice.\n", + "spotless,\n", + "air.\n", + "this.\"\n", + "silver\n", + "L................................\n", + "needed.\n", + "rate.\n", + "Intelligencer.\n", + "have\n", + "aostroyed.\n", + "the\n", + "ten\n", + "meanness.”\n", + "at\n", + "figures.\n", + "strawberries,\n", + "follow\n", + "system\n", + "remain\n", + "man.\n", + "prosecutions\n", + "registry-\n", + ".\"\n", + "Hevlew.\n", + "is\n", + "of\n", + "ge-\n", + "alone.\n", + "uaryL\n", + "the\n", + "him.\n", + "n\n", + "like\n", + "artists.\n", + "Americans.”\n", + "interest:\n", + "Delaware.\n", + "loa's.\n", + "fering.\n", + "winner.\"\n", + "look.\n", + "up.\n", + "California.\n", + ".\n", + "the\n", + "respect.\n", + "fed.\n", + "Lyman.\n", + "quiredi\n", + "-\n", + "tobacco\n", + "height\n", + "dinner.\"\n", + "tors.\n", + "basin.\n", + "$400.-\n", + "ad-\n", + "Chronicle.\n", + "practices.\n", + "rality.\n", + "-\n", + "people.\n", + "believe\n", + ".\n", + "decline.\n", + "Liverpool,\n", + "onlj\n", + "sort.\n", + "course.\n", + "Vou\n", + "In\n", + "why.\n", + "since.\n", + "plication.\n", + "Tesreau.\n", + "association.\n", + "-\n", + "parlors.\n", + "across\n", + "tippurunning.\n", + "the\n", + "Post.\n", + "1880.\n", + "lows:\n", + "party.\n", + "bejth.\n", + "now.\n", + "10CO\n", + "fulminations.\n", + "says:\n", + "ago.\n", + "employ.\n", + ".\n", + "haste.\n", + "dispensation.\n", + "might\n", + "the\n", + "seat\n", + "erful\n", + "convenience\n", + "tion.\n", + "possessed.\n", + "write.\n", + "lata.\n", + "was-no-\n", + "miner.\n", + "g\n", + "replied.\n", + "handsome.\n", + "th\"ir\n", + "enter.\n", + "i\n", + "that?\n", + "r.\n", + "both.\n", + "inherited\n", + "place.\n", + "g\n", + "ccptance.\n", + "hue.\n", + "nope\n", + "my\n", + "heaven.\n", + "feet.\n", + "Egj-pt-\n", + "from\n", + "another.\n", + "baggers.\n", + "75(380c.\n", + "to\n", + "Causey,\n", + "^\n", + "13.\n", + "most\n", + "destiny-\n", + "week\n", + "the\n", + "?\n", + "principal.\n", + "drugs.\n", + "14-th.\n", + "do.\n", + "tii\n", + "service.\n", + "tives.\n", + "follows\n", + "Darien.\n", + "Ui\n", + "y\n", + "Benwood.\n", + "greenbacks.\n", + "artillery.\n", + "died.\n", + "R«ncy.\n", + "tube.\n", + "once.'\n", + "high.\"\n", + "house.\"\n", + "pcuuiles\n", + "explorer.\n", + "Appeal.\n", + "development.\n", + "game?’’\n", + "Journal.\n", + "him.”\n", + "^y\n", + "the\n", + "Amerlrnn.\n", + "lands.\n", + "jl\n", + "HI\"\n", + "came\n", + "customers.\n", + "aforesaid.\n", + "them.\n", + "them.\n", + "Matthews.\n", + "Babbitt.\"\n", + "officers.\n", + "show.\n", + "pursuit.\n", + "there\n", + "it.\n", + "ever.\n", + "opin-\n", + "fnrnishlnj-\n", + "haud.\n", + "Solnt.\n", + "iu\n", + "payments.\n", + "wage*.\n", + "lawlessness.\n", + "removed.\n", + "census-taker-s\n", + "worst--\n", + "today',\n", + "captivity.\n", + "Ot.\n", + "sum.\n", + "is.\"\n", + "therefore,\n", + "up\n", + "dimensions.\n", + "spot.\n", + "of\n", + "Celluloid.\n", + "tion,\n", + "fools.\n", + "Saturdays.\n", + "attention.\n", + "something\n", + "forks.\n", + "amy.\n", + "?\n", + "har­\n", + "Medical\n", + "living\n", + "perienced.\n", + "er\n", + "hut\n", + "istrar*.\n", + "of\n", + "expo-\n", + "t\n", + "New-Cen-\n", + "nnuoyc-d-\n", + "dry\n", + "scandal.\"\n", + "pass.\n", + "A\n", + "make\n", + "President.\n", + "team.\n", + "ts\n", + "s\n", + "discussion.\n", + "MiningCompan-,\n", + "M»5.\n", + "‘ltion\n", + "be-\n", + "Asia\n", + "Thejr\n", + "him.\n", + "and\n", + "fine-looki-\n", + "Involved.\n", + "land.\n", + "weeks.\n", + "State.\n", + "missionary\n", + "heart.\n", + "yours,\n", + "liberty.\n", + "g\"\n", + "life-an-\n", + "anew.\n", + "line.!\n", + "ninjf.\n", + "day.\n", + "that\n", + "my\n", + "logs.'\n", + "Tress.\n", + "matter.\n", + "they\n", + "a\n", + "wires\n", + "months.\n", + "¬\n", + "SECRETS,\n", + "recover.\n", + "ifian.\n", + "admin-\n", + "isa\n", + "consequence.\n", + "50.\n", + ",\n", + "for\n", + "pray.\n", + "banner.\n", + "those\n", + "Beecher,\n", + "“\n", + "oi\n", + "ph.\"\n", + "says:\n", + ".\n", + "commissioners.\n", + "repair.\n", + "conjecture.\n", + "-\n", + "ley.\n", + "Duffy,\n", + "time.\n", + "evenings.\n", + "shot\n", + "boor.\n", + "operate\n", + "\"gibbet,\"\n", + "ing.\n", + "murdoror.\n", + "theud-\n", + "°l\n", + "nomination.\n", + "unflinchingly.\n", + "suddenness.\n", + "aimnch\n", + "cup.\n", + "bnJge.\n", + "road.\n", + "clients.\n", + "division.\n", + "hat\n", + "-\n", + "tirm.\n", + "Age,\n", + "tunate,\n", + "ju-Jifice.\n", + "be\n", + "particular.\n", + "enterprise.\n", + "tl..-\n", + "Bhortatl.\n", + "influence.\n", + "preserves.\n", + "-\n", + "vlllago\n", + "respon-dbl-\n", + "survivors.\n", + "8,000.\n", + "position.\n", + "Railroad-:\n", + "Khln.\n", + "printed.\n", + "State,\n", + "eat.\n", + "appertaining.\n", + "match.\n", + "Ii\n", + "mines.\n", + "or\n", + "them.”\n", + "afternoons.\n", + "directed\n", + "claims.\n", + "d,\n", + "D.\n", + "with\n", + "demanded.\n", + "Brown,\n", + "for\n", + "iron.\n", + "law.\n", + "out\n", + "interest.\n", + "44\n", + ".1\n", + "Donehoo.\n", + "onto-\n", + "health.\n", + "labor.'\n", + "o:\n", + "vehicles.\n", + "II...\n", + "solid.\n", + "term.\n", + "Germany.\n", + "telling\n", + "church.\n", + "inoffeusive.\n", + "performed,\n", + "folly.\n", + "outing.\n", + "gency.\n", + "within.\n", + "of\n", + "Hanker.\n", + "leaders.\n", + "be,\n", + "car.\n", + "then\n", + "made.\n", + "enco.\n", + "sunshine.\n", + "Hamilton.\n", + "Prospect\n", + "lay.\n", + "aueatinn\n", + "cneap.\n", + "member­\n", + "Catholio-ity-\n", + "peace.\n", + "air.\n", + "its\n", + "preachers.\"\n", + "license.\n", + "wick,\"\n", + "blight.\n", + "of\n", + "Duncan,\n", + "provisions.\"\n", + "in\n", + "on.\n", + "reclamation\n", + "Jnly,\n", + "made.\n", + "joke?\n", + "Agency.\n", + "clut-\n", + "-poli-\n", + "passage.\n", + "system.\n", + "|kj1.uo\n", + "troops.”\n", + "work.\n", + "estab­\n", + "disease.\n", + "y\n", + "vots.\n", + "yet.\n", + "regular\n", + "Ptttl\n", + "murder.\n", + "lap.\n", + "Science.\n", + "gentleman.\n", + "tions.\n", + "anywhere.\n", + "therf-\n", + "Congress.\n", + "reduction\n", + "of\n", + "Senators.\n", + "C;\n", + "garchy.\n", + "lunatics.\n", + "sale.\n", + "work.\n", + "1860.\n", + "Toledo.\n", + "-I\n", + "her.\n", + "Magazine.\n", + "mind.\n", + "State.\n", + "McClurc.\n", + "view.\n", + "It.\n", + "laid\n", + "to-day.\n", + "coals.\"\n", + "health.”\n", + "forfeited.\n", + "people.\n", + "sioner.\n", + "tion.\n", + "Tehtiacan.\n", + "jear.\n", + "provisions.\n", + "prostration.\n", + "mented\n", + "neau.\n", + "rates.\n", + "TTVe-\n", + "properties.”\n", + "is\n", + "favo.-\n", + "Philadelphia.\n", + "ing\n", + "prices.\n", + "accident.\n", + "send\n", + "music.\n", + "$1200.\n", + "him.\n", + "appetites\n", + "shoes.\n", + "existence.\n", + "beginning.\n", + "fact.\n", + "food.\n", + "transportation.\n", + "forever!\n", + "otTer.\n", + "Plalnville-Farmingto-\n", + "3--\n", + "collision.\n", + "sentiment,\n", + "At^et\n", + "anoth\n", + "direction.\n", + "reduction,\n", + "service.\n", + "America,-\n", + "health.\n", + "sums.\n", + "good.\"\n", + "Plant\n", + "thing.\n", + "News.\n", + "no\n", + "Washington.\n", + "Times.\n", + "Democratic\n", + "prevailed.\n", + "agreement.\n", + "specially\n", + "allowed.\n", + "we\n", + "treated.\n", + "d«ir\n", + "connection.\n", + "irvnn.\n", + "offer.\n", + "ways.\n", + "st\n", + "summit.\n", + "men.\n", + "trade.\n", + "injured.\n", + "branch\n", + "case.\n", + "night.\n", + "ibute.\n", + "e\n", + "lf\n", + "power.\n", + "simple\n", + "ths\n", + "world.''\n", + "ini-\n", + "with\n", + ".\n", + "surface.\"\n", + "men.\"\n", + "Nome.\n", + "things.\"\n", + "Hie\n", + "Mountain.\n", + "1858.\n", + "wishes\n", + "damages.\n", + "settlement.\"\n", + "________\n", + "Y.\n", + "sermons.\n", + "costs.\n", + "contain.\n", + "uncertain.\n", + "delay.\n", + "cheese\n", + "we\n", + "A\n", + "homes.\n", + "-\n", + "button.\n", + "fate.\n", + "n\n", + "district.\n", + "up.\n", + "said:\n", + "other.\n", + "latter.\n", + "lat*\n", + "de-\n", + "c\n", + "off.\"\n", + "1874.\"\n", + "t.\n", + "on\n", + "the-\n", + "proposed.\n", + "#\n", + "distance.\n", + "will.\n", + "rooms.\n", + "paid\n", + "suggest-th-\n", + "oligarchy.\n", + "sea.\n", + "rt\n", + "eleven\n", + "tion.\n", + "recent\n", + "information.\n", + "otllcliils.\n", + "shock.\n", + "home.\n", + "Kensington.\n", + "heart.\n", + "by\n", + "place.\n", + "Equalization.\n", + "Parker.\n", + "come.\n", + "upon.\n", + "yours,\n", + "placed\n", + "and\n", + "elections.\n", + "tices.\n", + "Louis,\n", + "supply.\n", + "Taft.\n", + "days.\n", + "Tuttle\n", + "common\n", + "voices\n", + ".\n", + "avail.\n", + "siasm.\n", + "<\n", + "sup*\n", + "navies\n", + "things.\"\n", + "safety.\n", + "my-\n", + "-\n", + "follows:\n", + "rub.\n", + "effected.\n", + "nation.”\n", + "her.\n", + "street,\n", + "ena-\n", + "date.\n", + "nnd\n", + "Informants.\n", + "Porter,\n", + "mad.\n", + "vengeance.\n", + "l._\n", + "you.\n", + "railroad\n", + "iuy\n", + "considered.\n", + "storm.\n", + "qualities.\n", + "Monday.\n", + "let-\n", + "and\n", + "Newark.\n", + "at-\n", + "vote.\n", + "all.\n", + "industries.\n", + "ama.\n", + "nations,\n", + "e\n", + "city.\n", + "the.GMeeï\n", + "don't\n", + "w\n", + "started\n", + "effected.\n", + "Ohio.\n", + "systun.\n", + "i\n", + "armies\n", + "and\n", + "family.\n", + "Is\n", + "sleep.\n", + "Bazar.\n", + "the\n", + "Lodge,\n", + "consumption.\n", + "no\n", + "St\n", + "puzzler.\n", + "repaired.\n", + "\"\n", + "organs\n", + "long\n", + "time.\n", + "important.\n", + "terms.\n", + "n-\n", + "can\n", + "\\\\\n", + "his\n", + "som--\n", + "street.\n", + "a\n", + "law.\n", + ";\n", + "pa;\n", + "\"setback.\"\n", + "waters.\n", + "naked\n", + "unskilled\n", + "generally.\n", + "bier.\"\n", + "Us.”\n", + "land\n", + "rroiirl«torofferi«.\n", + "values.\n", + "left.\n", + "3\n", + "file.\n", + "observed.''\n", + "ring.\n", + "president.\n", + "i3.\n", + "them.\n", + "wbicn\n", + "year.\n", + "us.\n", + "phalanx\n", + "bow.\n", + "j\n", + "afterward.\"\n", + "Liens.\n", + "Congress.\n", + "yore.\n", + ":\n", + "HUH.\n", + "ger.\n", + "intellectual\n", + "onions.\n", + "possible.'\n", + "be.\n", + "»SS».\n", + "\"\n", + "Titus.\n", + "conspirators.\n", + "toys,\n", + "de-\n", + "7414\n" + ] + } + ], + "source": [ + "\n", + "with lzma.open(test_file, 'rt') as file:\n", + " predict_words = []\n", + " results = []\n", + " for line in file:\n", + "# print(line)\n", + " line = preprocess(line) #get only relevant\n", + " split = line.split('\\t')\n", + " print(get_last_word(split[0]))\n", + " predict_words.append(get_last_word(split[0])) #get_first_word(split[1])\n", + " print(len(predict_words))\n", + " vocab = train_dataset.vocab\n", + " for presc_word in predict_words:\n", + " results.append(dict(get_values_from_model(presc_word, model, vocab, k=k)))\n", + " \n", + " \n", + " with open(out_file, 'w') as outfile:\n", + " for elem in results:\n", + " \n", + " outfile.write(gonito_format(elem))\n", + "\n" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [] + } + ], + "metadata": { + "kernelspec": { + "display_name": "Python 3 (ipykernel)", + "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.6" + }, + "org": null + }, + "nbformat": 4, + "nbformat_minor": 1 +}